diff --git a/README.md b/README.md index 8362223..63d38af 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Vous avez besoin de données selon une année? Voici un tableau récapitulatif p ## Sources * [Code Officiel Géographique](https://insee.fr/fr/information/2560452) de l'INSEE -* [Liste des EPCI à fiscalité propre](https://www.collectivites-locales.gouv.fr/institutions/liste-et-composition-des-epci-fiscalite-propre) de la DGCL ([url exacte](https://www.collectivites-locales.gouv.fr/files/Accueil/DESL/2022/epcicom2022.xlsx)) +* [Liste des EPCI à fiscalité propre](https://www.collectivites-locales.gouv.fr/institutions/liste-et-composition-des-epci-fiscalite-propre) de la DGCL ([url exacte](https://www.collectivites-locales.gouv.fr/files/Accueil/DESL/2023/epcicom2023.xlsx)) * [Population légale](https://www.insee.fr/fr/statistiques/6683035?sommaire=6683037) de l'INSEE + [population Mayotte INSEE 2017](https://www.insee.fr/fr/statistiques/3291775?sommaire=2120838) + [population COM](https://www.insee.fr/fr/statistiques/6683025?sommaire=6683037) * [Liste des codes postaux](https://www.data.gouv.fr/fr/datasets/base-officielle-des-codes-postaux/) issue des données La Poste. Antérieurement, sous licence ODBL, maintenant en LO * [Correspondances communes code SIREN et code INSEE](https://www.banatic.interieur.gouv.fr/V5/fichiers-en-telechargement/fichiers-telech.php) Menu gauche "Table de correspondance code SIREN / Code Insee des communes" ([url exacte](https://www.banatic.interieur.gouv.fr/V5/ressources/documents/document_reference/TableCorrespondanceSirenInsee.zip)) diff --git a/build/cog.js b/build/cog.js index 1bbdc63..97c26d1 100644 --- a/build/cog.js +++ b/build/cog.js @@ -133,6 +133,16 @@ async function extractCommunes(communesPath, mouvementsCommunesPath, arrondissem const chefsLieuxArrondissement = arrondissements.map(r => r.chefLieu) const mouvementsRows = await readCsvFile(mouvementsCommunesPath) + // Fix issue with wrong length (data with missing leading 0) + mouvementsRows.forEach(mvt => { + if (mvt.COM_AV.length === 4) { + mvt.COM_AV = '0' + mvt.COM_AV + } + + if (mvt.COM_AP.length === 4) { + mvt.COM_AP = '0' + mvt.COM_AP + } + }) const anciensCodesIndex = computeAnciensCodesCommunes(communesRows, mouvementsRows) const communes = communesRows.map(row => { diff --git a/download-codes-postaux-la-poste.sh b/download-codes-postaux-la-poste.sh index 58ef8cf..facbeb5 100755 --- a/download-codes-postaux-la-poste.sh +++ b/download-codes-postaux-la-poste.sh @@ -16,4 +16,4 @@ # Useful only if live curl "https://datanova.legroupe.laposte.fr/explore/dataset/laposte_hexasmal/download/?format=json&timezone=Europe/Berlin&lang=fr" \ | jq '[.[].fields | {"codePostal": .code_postal, "codeCommune": .code_commune_insee, "libelleAcheminement": .libelle_d_acheminement, "nomCommune": .nom_de_la_commune}]' >| sources/codes-postaux.json -cp sources/codes-postaux.json sources/codes-postaux-with-fix.json +jq -c '.[]' sources/codes-postaux.json sources/codes-postaux-missing.json | jq --slurp '.' >| sources/codes-postaux-with-fix.json diff --git a/sources/arrondissements.csv b/sources/arrondissements.csv index ae4f06e..66b3073 100644 --- a/sources/arrondissements.csv +++ b/sources/arrondissements.csv @@ -177,7 +177,7 @@ ARR,DEP,REG,CHEFLIEU,TNCC,NCC,NCCENR,LIBELLE 531,53,52,53062,0,CHATEAU GONTIER,Château-Gontier,Château-Gontier 532,53,52,53130,0,LAVAL,Laval,Laval 533,53,52,53147,0,MAYENNE,Mayenne,Mayenne -541,54,44,54099,0,BRIEY,Briey,Briey +541,54,44,54099,0,VAL DE BRIEY,Val de Briey,Val de Briey 542,54,44,54329,0,LUNEVILLE,Lunéville,Lunéville 543,54,44,54395,0,NANCY,Nancy,Nancy 544,54,44,54528,0,TOUL,Toul,Toul @@ -327,6 +327,7 @@ ARR,DEP,REG,CHEFLIEU,TNCC,NCC,NCCENR,LIBELLE 9724,972,02,97225,0,SAINT PIERRE,Saint-Pierre,Saint-Pierre 9731,973,03,97302,0,CAYENNE,Cayenne,Cayenne 9732,973,03,97311,0,SAINT LAURENT DU MARONI,Saint-Laurent-du-Maroni,Saint-Laurent-du-Maroni +9733,973,03,97308,0,SAINT GEORGES,Saint-Georges,Saint-Georges 9741,974,04,97411,0,SAINT DENIS,Saint-Denis,Saint-Denis 9742,974,04,97416,0,SAINT PIERRE,Saint-Pierre,Saint-Pierre 9743,974,04,97410,0,SAINT BENOIT,Saint-Benoît,Saint-Benoît diff --git a/sources/banatic_siren_insee.xlsx b/sources/banatic_siren_insee.xlsx index 59f1a36..23cd3ec 100644 Binary files a/sources/banatic_siren_insee.xlsx and b/sources/banatic_siren_insee.xlsx differ diff --git a/sources/codes-postaux-missing.json b/sources/codes-postaux-missing.json index b35dade..12d00de 100644 --- a/sources/codes-postaux-missing.json +++ b/sources/codes-postaux-missing.json @@ -1,13 +1,13 @@ [ { "codePostal": "27940", - "codeCommune": "27058", + "codeCommune": "27676", "libelleAcheminement": "LES TROIS LACS", "nomCommune": "LES TROIS LACS" }, { "codePostal": "27700", - "codeCommune": "27058", + "codeCommune": "27676", "libelleAcheminement": "LES TROIS LACS", "nomCommune": "LES TROIS LACS" } diff --git a/sources/codes-postaux-with-fix.json b/sources/codes-postaux-with-fix.json index 86f7b15..8d493b1 100644 --- a/sources/codes-postaux-with-fix.json +++ b/sources/codes-postaux-with-fix.json @@ -1,12099 +1,12123 @@ [ { - "codePostal": "01300", - "codeCommune": "01009", - "libelleAcheminement": "ANDERT ET CONDON", - "nomCommune": "ANDERT ET CONDON" + "codePostal": "25650", + "codeCommune": "25620", + "libelleAcheminement": "VILLE DU PONT", + "nomCommune": "VILLE DU PONT" }, { - "codePostal": "01110", - "codeCommune": "01012", - "libelleAcheminement": "ARANC", - "nomCommune": "ARANC" + "codePostal": "25640", + "codeCommune": "25624", + "libelleAcheminement": "VILLERS GRELOT", + "nomCommune": "VILLERS GRELOT" }, { - "codePostal": "01570", - "codeCommune": "01023", - "libelleAcheminement": "ASNIERES SUR SAONE", - "nomCommune": "ASNIERES SUR SAONE" + "codePostal": "26150", + "codeCommune": "26001", + "libelleAcheminement": "SOLAURE EN DIOIS", + "nomCommune": "SOLAURE EN DIOIS" }, { - "codePostal": "01270", - "codeCommune": "01029", - "libelleAcheminement": "BEAUPONT", - "nomCommune": "BEAUPONT" + "codePostal": "26770", + "codeCommune": "26003", + "libelleAcheminement": "ALEYRAC", + "nomCommune": "ALEYRAC" }, { - "codePostal": "01360", - "codeCommune": "01032", - "libelleAcheminement": "BELIGNEUX", - "nomCommune": "BELIGNEUX" + "codePostal": "26140", + "codeCommune": "26009", + "libelleAcheminement": "ANDANCETTE", + "nomCommune": "ANDANCETTE" }, { - "codePostal": "01200", - "codeCommune": "01033", - "libelleAcheminement": "VALSERHONE", - "nomCommune": "VALSERHONE" + "codePostal": "26400", + "codeCommune": "26011", + "libelleAcheminement": "AOUSTE SUR SYE", + "nomCommune": "AOUSTE SUR SYE" }, { - "codePostal": "01260", - "codeCommune": "01036", - "libelleAcheminement": "VALROMEY SUR SERAN", - "nomCommune": "VALROMEY SUR SERAN" + "codePostal": "26110", + "codeCommune": "26013", + "libelleAcheminement": "ARPAVON", + "nomCommune": "ARPAVON" }, { - "codePostal": "01260", - "codeCommune": "01036", - "libelleAcheminement": "VALROMEY SUR SERAN", - "nomCommune": "VALROMEY SUR SERAN" + "codePostal": "26400", + "codeCommune": "26021", + "libelleAcheminement": "AUTICHAMP", + "nomCommune": "AUTICHAMP" }, { - "codePostal": "01260", - "codeCommune": "01036", - "libelleAcheminement": "VALROMEY SUR SERAN", - "nomCommune": "VALROMEY SUR SERAN" + "codePostal": "26120", + "codeCommune": "26024", + "libelleAcheminement": "BARCELONNE", + "nomCommune": "BARCELONNE" }, { - "codePostal": "01260", - "codeCommune": "01036", - "libelleAcheminement": "VALROMEY SUR SERAN", - "nomCommune": "VALROMEY SUR SERAN" + "codePostal": "26570", + "codeCommune": "26026", + "libelleAcheminement": "BARRET DE LIOURE", + "nomCommune": "BARRET DE LIOURE" }, { - "codePostal": "01330", - "codeCommune": "01045", - "libelleAcheminement": "BIRIEUX", - "nomCommune": "BIRIEUX" + "codePostal": "26150", + "codeCommune": "26027", + "libelleAcheminement": "BARSAC", + "nomCommune": "BARSAC" }, { - "codePostal": "01120", - "codeCommune": "01049", - "libelleAcheminement": "LA BOISSE", - "nomCommune": "LA BOISSE" + "codePostal": "26260", + "codeCommune": "26028", + "libelleAcheminement": "BATHERNAY", + "nomCommune": "BATHERNAY" }, { - "codePostal": "01190", - "codeCommune": "01050", - "libelleAcheminement": "BOISSEY", - "nomCommune": "BOISSEY" + "codePostal": "26790", + "codeCommune": "26033", + "libelleAcheminement": "LA BAUME DE TRANSIT", + "nomCommune": "LA BAUME DE TRANSIT" }, { - "codePostal": "01800", - "codeCommune": "01054", - "libelleAcheminement": "BOURG ST CHRISTOPHE", - "nomCommune": "BOURG ST CHRISTOPHE" + "codePostal": "26600", + "codeCommune": "26038", + "libelleAcheminement": "BEAUMONT MONTEUX", + "nomCommune": "BEAUMONT MONTEUX" }, { - "codePostal": "01510", - "codeCommune": "01066", - "libelleAcheminement": "LA BURBANCHE", - "nomCommune": "LA BURBANCHE" + "codePostal": "26310", + "codeCommune": "26040", + "libelleAcheminement": "BEAURIERES", + "nomCommune": "BEAURIERES" }, { - "codePostal": "01630", - "codeCommune": "01078", - "libelleAcheminement": "CHALLEX", - "nomCommune": "CHALLEX" + "codePostal": "26460", + "codeCommune": "26051", + "libelleAcheminement": "BEZAUDUN SUR BINE", + "nomCommune": "BEZAUDUN SUR BINE" }, { - "codePostal": "01260", - "codeCommune": "01079", - "libelleAcheminement": "CHAMPAGNE EN VALROMEY", - "nomCommune": "CHAMPAGNE EN VALROMEY" + "codePostal": "26460", + "codeCommune": "26056", + "libelleAcheminement": "BOURDEAUX", + "nomCommune": "BOURDEAUX" }, { - "codePostal": "01260", - "codeCommune": "01079", - "libelleAcheminement": "CHAMPAGNE EN VALROMEY", - "nomCommune": "CHAMPAGNE EN VALROMEY" + "codePostal": "26460", + "codeCommune": "26060", + "libelleAcheminement": "BOUVIERES", + "nomCommune": "BOUVIERES" }, { - "codePostal": "01240", - "codeCommune": "01085", - "libelleAcheminement": "LA CHAPELLE DU CHATELARD", - "nomCommune": "LA CHAPELLE DU CHATELARD" + "codePostal": "26120", + "codeCommune": "26064", + "libelleAcheminement": "CHABEUIL", + "nomCommune": "CHABEUIL" }, { - "codePostal": "01430", - "codeCommune": "01101", - "libelleAcheminement": "CHEVILLARD", - "nomCommune": "CHEVILLARD" + "codePostal": "26470", + "codeCommune": "26067", + "libelleAcheminement": "CHALANCON", + "nomCommune": "CHALANCON" }, { - "codePostal": "01390", - "codeCommune": "01105", - "libelleAcheminement": "CIVRIEUX", - "nomCommune": "CIVRIEUX" + "codePostal": "26310", + "codeCommune": "26076", + "libelleAcheminement": "CHARENS", + "nomCommune": "CHARENS" }, { - "codePostal": "01310", - "codeCommune": "01115", - "libelleAcheminement": "CONFRANCON", - "nomCommune": "CONFRANCON" + "codePostal": "26110", + "codeCommune": "26082", + "libelleAcheminement": "CHATEAUNEUF DE BORDETTE", + "nomCommune": "CHATEAUNEUF DE BORDETTE" }, { - "codePostal": "01250", - "codeCommune": "01125", - "libelleAcheminement": "CORVEISSIAT", - "nomCommune": "CORVEISSIAT" + "codePostal": "26330", + "codeCommune": "26083", + "libelleAcheminement": "CHATEAUNEUF DE GALAURE", + "nomCommune": "CHATEAUNEUF DE GALAURE" }, { - "codePostal": "01370", - "codeCommune": "01127", - "libelleAcheminement": "COURMANGOUX", - "nomCommune": "COURMANGOUX" + "codePostal": "26410", + "codeCommune": "26086", + "libelleAcheminement": "CHATILLON EN DIOIS", + "nomCommune": "CHATILLON EN DIOIS" }, { - "codePostal": "01320", - "codeCommune": "01129", - "libelleAcheminement": "CRANS", - "nomCommune": "CRANS" + "codePostal": "26340", + "codeCommune": "26090", + "libelleAcheminement": "LA CHAUDIERE", + "nomCommune": "LA CHAUDIERE" }, { - "codePostal": "01340", - "codeCommune": "01130", - "libelleAcheminement": "BRESSE VALLONS", - "nomCommune": "BRESSE VALLONS" + "codePostal": "26130", + "codeCommune": "26093", + "libelleAcheminement": "CLANSAYES", + "nomCommune": "CLANSAYES" }, { - "codePostal": "01300", - "codeCommune": "01141", - "libelleAcheminement": "CUZIEU", - "nomCommune": "CUZIEU" + "codePostal": "26270", + "codeCommune": "26097", + "libelleAcheminement": "CLIOUSCLAT", + "nomCommune": "CLIOUSCLAT" }, { - "codePostal": "01240", - "codeCommune": "01145", - "libelleAcheminement": "DOMPIERRE SUR VEYLE", - "nomCommune": "DOMPIERRE SUR VEYLE" + "codePostal": "26230", + "codeCommune": "26099", + "libelleAcheminement": "COLONZELLE", + "nomCommune": "COLONZELLE" }, { - "codePostal": "01500", - "codeCommune": "01149", - "libelleAcheminement": "DOUVRES", - "nomCommune": "DOUVRES" + "codePostal": "26400", + "codeCommune": "26108", + "libelleAcheminement": "CREST", + "nomCommune": "CREST" }, { - "codePostal": "01160", - "codeCommune": "01151", - "libelleAcheminement": "DRUILLAT", - "nomCommune": "DRUILLAT" + "codePostal": "26110", + "codeCommune": "26112", + "libelleAcheminement": "CURNIER", + "nomCommune": "CURNIER" }, { - "codePostal": "01230", - "codeCommune": "01155", - "libelleAcheminement": "EVOSGES", - "nomCommune": "EVOSGES" + "codePostal": "26150", + "codeCommune": "26113", + "libelleAcheminement": "DIE", + "nomCommune": "DIE" }, { - "codePostal": "01210", - "codeCommune": "01160", - "libelleAcheminement": "FERNEY VOLTAIRE", - "nomCommune": "FERNEY VOLTAIRE" + "codePostal": "26600", + "codeCommune": "26119", + "libelleAcheminement": "EROME", + "nomCommune": "EROME" }, { - "codePostal": "01350", - "codeCommune": "01162", - "libelleAcheminement": "FLAXIEU", - "nomCommune": "FLAXIEU" + "codePostal": "26340", + "codeCommune": "26122", + "libelleAcheminement": "ESPENEL", + "nomCommune": "ESPENEL" }, { - "codePostal": "01090", - "codeCommune": "01169", - "libelleAcheminement": "GENOUILLEUX", - "nomCommune": "GENOUILLEUX" + "codePostal": "26400", + "codeCommune": "26125", + "libelleAcheminement": "EURRE", + "nomCommune": "EURRE" }, { - "codePostal": "01460", - "codeCommune": "01170", - "libelleAcheminement": "BEARD GEOVREISSIAT", - "nomCommune": "BEARD GEOVREISSIAT" + "codePostal": "26400", + "codeCommune": "26128", + "libelleAcheminement": "EYGLUY ESCOULIN", + "nomCommune": "EYGLUY ESCOULIN" }, { - "codePostal": "01130", - "codeCommune": "01174", - "libelleAcheminement": "GIRON", - "nomCommune": "GIRON" + "codePostal": "26110", + "codeCommune": "26130", + "libelleAcheminement": "EYROLES", + "nomCommune": "EYROLES" }, { - "codePostal": "01250", - "codeCommune": "01184", - "libelleAcheminement": "HAUTECOURT ROMANECHE", - "nomCommune": "HAUTECOURT ROMANECHE" + "codePostal": "26310", + "codeCommune": "26136", + "libelleAcheminement": "VAL MARAVEL", + "nomCommune": "VAL MARAVEL" }, { - "codePostal": "01250", - "codeCommune": "01184", - "libelleAcheminement": "HAUTECOURT ROMANECHE", - "nomCommune": "HAUTECOURT ROMANECHE" + "codePostal": "26290", + "codeCommune": "26145", + "libelleAcheminement": "LES GRANGES GONTARDES", + "nomCommune": "LES GRANGES GONTARDES" }, { - "codePostal": "01140", - "codeCommune": "01188", - "libelleAcheminement": "ILLIAT", - "nomCommune": "ILLIAT" + "codePostal": "26230", + "codeCommune": "26146", + "libelleAcheminement": "GRIGNAN", + "nomCommune": "GRIGNAN" }, { - "codePostal": "01480", - "codeCommune": "01194", - "libelleAcheminement": "JASSANS RIOTTIER", - "nomCommune": "JASSANS RIOTTIER" + "codePostal": "26210", + "codeCommune": "26155", + "libelleAcheminement": "LAPEYROUSE MORNAY", + "nomCommune": "LAPEYROUSE MORNAY" }, { - "codePostal": "01250", - "codeCommune": "01195", - "libelleAcheminement": "JASSERON", - "nomCommune": "JASSERON" + "codePostal": "26600", + "codeCommune": "26156", + "libelleAcheminement": "LARNAGE", + "nomCommune": "LARNAGE" }, { - "codePostal": "01430", - "codeCommune": "01206", - "libelleAcheminement": "LANTENAY", - "nomCommune": "LANTENAY" + "codePostal": "26160", + "codeCommune": "26171", + "libelleAcheminement": "MANAS", + "nomCommune": "MANAS" }, { - "codePostal": "01200", - "codeCommune": "01209", - "libelleAcheminement": "LEAZ", - "nomCommune": "LEAZ" + "codePostal": "26740", + "codeCommune": "26176", + "libelleAcheminement": "MARSANNE", + "nomCommune": "MARSANNE" }, { - "codePostal": "01090", - "codeCommune": "01225", - "libelleAcheminement": "LURCY", - "nomCommune": "LURCY" + "codePostal": "26400", + "codeCommune": "26195", + "libelleAcheminement": "MONTCLAR SUR GERVANNE", + "nomCommune": "MONTCLAR SUR GERVANNE" }, { - "codePostal": "01340", - "codeCommune": "01229", - "libelleAcheminement": "MALAFRETAZ", - "nomCommune": "MALAFRETAZ" + "codePostal": "26200", + "codeCommune": "26198", + "libelleAcheminement": "MONTELIMAR", + "nomCommune": "MONTELIMAR" }, { - "codePostal": "01560", - "codeCommune": "01230", - "libelleAcheminement": "MANTENAY MONTLIN", - "nomCommune": "MANTENAY MONTLIN" + "codePostal": "26170", + "codeCommune": "26201", + "libelleAcheminement": "MONTGUERS", + "nomCommune": "MONTGUERS" }, { - "codePostal": "01340", - "codeCommune": "01236", - "libelleAcheminement": "MARSONNAS", - "nomCommune": "MARSONNAS" + "codePostal": "26230", + "codeCommune": "26203", + "libelleAcheminement": "MONTJOYER", + "nomCommune": "MONTJOYER" }, { - "codePostal": "01100", - "codeCommune": "01237", - "libelleAcheminement": "MARTIGNAT", - "nomCommune": "MARTIGNAT" + "codePostal": "26350", + "codeCommune": "26210", + "libelleAcheminement": "VALHERBASSE", + "nomCommune": "VALHERBASSE" }, { - "codePostal": "01450", - "codeCommune": "01242", - "libelleAcheminement": "MERIGNAT", - "nomCommune": "MERIGNAT" + "codePostal": "26350", + "codeCommune": "26210", + "libelleAcheminement": "VALHERBASSE", + "nomCommune": "VALHERBASSE" }, { - "codePostal": "01480", - "codeCommune": "01243", - "libelleAcheminement": "MESSIMY SUR SAONE", - "nomCommune": "MESSIMY SUR SAONE" + "codePostal": "26190", + "codeCommune": "26223", + "libelleAcheminement": "ORIOL EN ROYANS", + "nomCommune": "ORIOL EN ROYANS" }, { - "codePostal": "01800", - "codeCommune": "01244", - "libelleAcheminement": "MEXIMIEUX", - "nomCommune": "MEXIMIEUX" + "codePostal": "26750", + "codeCommune": "26225", + "libelleAcheminement": "PARNANS", + "nomCommune": "PARNANS" }, { - "codePostal": "01250", - "codeCommune": "01245", - "libelleAcheminement": "BOHAS MEYRIAT RIGNAT", - "nomCommune": "BOHAS MEYRIAT RIGNAT" + "codePostal": "26770", + "codeCommune": "26226", + "libelleAcheminement": "LE PEGUE", + "nomCommune": "LE PEGUE" }, { - "codePostal": "01390", - "codeCommune": "01248", - "libelleAcheminement": "MIONNAY", - "nomCommune": "MIONNAY" + "codePostal": "26700", + "codeCommune": "26235", + "libelleAcheminement": "PIERRELATTE", + "nomCommune": "PIERRELATTE" }, { - "codePostal": "01700", - "codeCommune": "01249", - "libelleAcheminement": "MIRIBEL", - "nomCommune": "MIRIBEL" + "codePostal": "26460", + "codeCommune": "26241", + "libelleAcheminement": "LE POET CELARD", + "nomCommune": "LE POET CELARD" }, { - "codePostal": "01700", - "codeCommune": "01249", - "libelleAcheminement": "MIRIBEL", - "nomCommune": "MIRIBEL" + "codePostal": "26150", + "codeCommune": "26246", + "libelleAcheminement": "PONET ET ST AUBAN", + "nomCommune": "PONET ET ST AUBAN" }, { - "codePostal": "01090", - "codeCommune": "01258", - "libelleAcheminement": "MONTCEAUX", - "nomCommune": "MONTCEAUX" + "codePostal": "26160", + "codeCommune": "26251", + "libelleAcheminement": "PORTES EN VALDAINE", + "nomCommune": "PORTES EN VALDAINE" }, { - "codePostal": "01090", - "codeCommune": "01263", - "libelleAcheminement": "MONTMERLE SUR SAONE", - "nomCommune": "MONTMERLE SUR SAONE" + "codePostal": "26800", + "codeCommune": "26252", + "libelleAcheminement": "PORTES LES VALENCE", + "nomCommune": "PORTES LES VALENCE" }, { - "codePostal": "01130", - "codeCommune": "01269", - "libelleAcheminement": "NANTUA", - "nomCommune": "NANTUA" + "codePostal": "26160", + "codeCommune": "26257", + "libelleAcheminement": "PUYGIRON", + "nomCommune": "PUYGIRON" }, { - "codePostal": "01160", - "codeCommune": "01273", - "libelleAcheminement": "NEUVILLE SUR AIN", - "nomCommune": "NEUVILLE SUR AIN" + "codePostal": "26330", + "codeCommune": "26259", + "libelleAcheminement": "RATIERES", + "nomCommune": "RATIERES" }, { - "codePostal": "01130", - "codeCommune": "01274", - "libelleAcheminement": "LES NEYROLLES", - "nomCommune": "LES NEYROLLES" + "codePostal": "26190", + "codeCommune": "26270", + "libelleAcheminement": "ROCHECHINARD", + "nomCommune": "ROCHECHINARD" }, { - "codePostal": "01230", - "codeCommune": "01277", - "libelleAcheminement": "NIVOLLET MONTGRIFFON", - "nomCommune": "NIVOLLET MONTGRIFFON" + "codePostal": "26400", + "codeCommune": "26277", + "libelleAcheminement": "LA ROCHE SUR GRANE", + "nomCommune": "LA ROCHE SUR GRANE" }, { - "codePostal": "01510", - "codeCommune": "01280", - "libelleAcheminement": "ORDONNAZ", - "nomCommune": "ORDONNAZ" + "codePostal": "26170", + "codeCommune": "26279", + "libelleAcheminement": "LA ROCHETTE DU BUIS", + "nomCommune": "LA ROCHETTE DU BUIS" }, { - "codePostal": "01100", - "codeCommune": "01283", - "libelleAcheminement": "OYONNAX", - "nomCommune": "OYONNAX" + "codePostal": "26450", + "codeCommune": "26287", + "libelleAcheminement": "ROYNAC", + "nomCommune": "ROYNAC" }, { - "codePostal": "01190", - "codeCommune": "01284", - "libelleAcheminement": "OZAN", - "nomCommune": "OZAN" + "codePostal": "26510", + "codeCommune": "26288", + "libelleAcheminement": "SAHUNE", + "nomCommune": "SAHUNE" }, { - "codePostal": "01800", - "codeCommune": "01290", - "libelleAcheminement": "PEROUGES", - "nomCommune": "PEROUGES" + "codePostal": "26190", + "codeCommune": "26311", + "libelleAcheminement": "ST LAURENT EN ROYANS", + "nomCommune": "ST LAURENT EN ROYANS" }, { - "codePostal": "01160", - "codeCommune": "01304", - "libelleAcheminement": "PONT D AIN", - "nomCommune": "PONT D AIN" + "codePostal": "26320", + "codeCommune": "26313", + "libelleAcheminement": "ST MARCEL LES VALENCE", + "nomCommune": "ST MARCEL LES VALENCE" }, { - "codePostal": "01460", - "codeCommune": "01307", - "libelleAcheminement": "PORT", - "nomCommune": "PORT" + "codePostal": "26750", + "codeCommune": "26319", + "libelleAcheminement": "ST MICHEL SUR SAVASSE", + "nomCommune": "ST MICHEL SUR SAVASSE" }, { - "codePostal": "01550", - "codeCommune": "01308", - "libelleAcheminement": "POUGNY", - "nomCommune": "POUGNY" + "codePostal": "26750", + "codeCommune": "26323", + "libelleAcheminement": "ST PAUL LES ROMANS", + "nomCommune": "ST PAUL LES ROMANS" }, { - "codePostal": "01300", - "codeCommune": "01310", - "libelleAcheminement": "PREMEYZEL", - "nomCommune": "PREMEYZEL" + "codePostal": "26130", + "codeCommune": "26324", + "libelleAcheminement": "ST PAUL TROIS CHATEAUX", + "nomCommune": "ST PAUL TROIS CHATEAUX" }, { - "codePostal": "01280", - "codeCommune": "01313", - "libelleAcheminement": "PREVESSIN MOENS", - "nomCommune": "PREVESSIN MOENS" + "codePostal": "26740", + "codeCommune": "26339", + "libelleAcheminement": "SAVASSE", + "nomCommune": "SAVASSE" }, { - "codePostal": "01280", - "codeCommune": "01313", - "libelleAcheminement": "PREVESSIN MOENS", - "nomCommune": "PREVESSIN MOENS" + "codePostal": "26600", + "codeCommune": "26341", + "libelleAcheminement": "SERVES SUR RHONE", + "nomCommune": "SERVES SUR RHONE" }, { - "codePostal": "01250", - "codeCommune": "01317", - "libelleAcheminement": "RAMASSE", - "nomCommune": "RAMASSE" + "codePostal": "26390", + "codeCommune": "26349", + "libelleAcheminement": "TERSANNE", + "nomCommune": "TERSANNE" }, { - "codePostal": "01750", - "codeCommune": "01320", - "libelleAcheminement": "REPLONGES", - "nomCommune": "REPLONGES" + "codePostal": "26160", + "codeCommune": "26352", + "libelleAcheminement": "LA TOUCHE", + "nomCommune": "LA TOUCHE" }, { - "codePostal": "01000", - "codeCommune": "01344", - "libelleAcheminement": "ST DENIS LES BOURG", - "nomCommune": "ST DENIS LES BOURG" + "codePostal": "26150", + "codeCommune": "26359", + "libelleAcheminement": "VACHERES EN QUINT", + "nomCommune": "VACHERES EN QUINT" }, { - "codePostal": "01800", - "codeCommune": "01349", - "libelleAcheminement": "ST ELOI", - "nomCommune": "ST ELOI" + "codePostal": "26230", + "codeCommune": "26360", + "libelleAcheminement": "VALAURIE", + "nomCommune": "VALAURIE" }, { - "codePostal": "01600", - "codeCommune": "01353", - "libelleAcheminement": "STE EUPHEMIE", - "nomCommune": "STE EUPHEMIE" + "codePostal": "26340", + "codeCommune": "26368", + "libelleAcheminement": "VERCHENY", + "nomCommune": "VERCHENY" }, { - "codePostal": "01630", - "codeCommune": "01354", - "libelleAcheminement": "ST GENIS POUILLY", - "nomCommune": "ST GENIS POUILLY" + "codePostal": "05700", + "codeCommune": "26374", + "libelleAcheminement": "VILLEBOIS LES PINS", + "nomCommune": "VILLEBOIS LES PINS" }, { - "codePostal": "01630", - "codeCommune": "01360", - "libelleAcheminement": "ST JEAN DE GONVILLE", - "nomCommune": "ST JEAN DE GONVILLE" + "codePostal": "27400", + "codeCommune": "27014", + "libelleAcheminement": "AMFREVILLE SUR ITON", + "nomCommune": "AMFREVILLE SUR ITON" }, { - "codePostal": "01150", - "codeCommune": "01366", - "libelleAcheminement": "STE JULIE", - "nomCommune": "STE JULIE" + "codePostal": "27240", + "codeCommune": "27032", + "libelleAcheminement": "CHAMBOIS", + "nomCommune": "CHAMBOIS" }, { - "codePostal": "01540", - "codeCommune": "01368", - "libelleAcheminement": "ST JULIEN SUR VEYLE", - "nomCommune": "ST JULIEN SUR VEYLE" + "codePostal": "27160", + "codeCommune": "27043", + "libelleAcheminement": "LES BAUX DE BRETEUIL", + "nomCommune": "LES BAUX DE BRETEUIL" }, { - "codePostal": "01390", - "codeCommune": "01371", - "libelleAcheminement": "ST MARCEL", - "nomCommune": "ST MARCEL" + "codePostal": "27140", + "codeCommune": "27045", + "libelleAcheminement": "BAZINCOURT SUR EPTE", + "nomCommune": "BAZINCOURT SUR EPTE" }, { - "codePostal": "01430", - "codeCommune": "01373", - "libelleAcheminement": "ST MARTIN DU FRENE", - "nomCommune": "ST MARTIN DU FRENE" + "codePostal": "27190", + "codeCommune": "27047", + "libelleAcheminement": "BEAUBRAY", + "nomCommune": "BEAUBRAY" }, { - "codePostal": "01160", - "codeCommune": "01374", - "libelleAcheminement": "ST MARTIN DU MONT", - "nomCommune": "ST MARTIN DU MONT" + "codePostal": "27480", + "codeCommune": "27048", + "libelleAcheminement": "BEAUFICEL EN LYONS", + "nomCommune": "BEAUFICEL EN LYONS" }, { - "codePostal": "01310", - "codeCommune": "01375", - "libelleAcheminement": "ST MARTIN LE CHATEL", - "nomCommune": "ST MARTIN LE CHATEL" + "codePostal": "27330", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "01700", - "codeCommune": "01376", - "libelleAcheminement": "ST MAURICE DE BEYNOST", - "nomCommune": "ST MAURICE DE BEYNOST" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "01310", - "codeCommune": "01385", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "01150", - "codeCommune": "01390", - "libelleAcheminement": "ST VULBAS", - "nomCommune": "ST VULBAS" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "01580", - "codeCommune": "01392", - "libelleAcheminement": "SAMOGNAT", - "nomCommune": "SAMOGNAT" + "codePostal": "27170", + "codeCommune": "27050", + "libelleAcheminement": "BEAUMONTEL", + "nomCommune": "BEAUMONTEL" }, { - "codePostal": "01150", - "codeCommune": "01396", - "libelleAcheminement": "SAULT BRENAZ", - "nomCommune": "SAULT BRENAZ" + "codePostal": "27800", + "codeCommune": "27052", + "libelleAcheminement": "LE BEC HELLOUIN", + "nomCommune": "LE BEC HELLOUIN" }, { - "codePostal": "01630", - "codeCommune": "01401", - "libelleAcheminement": "SERGY", - "nomCommune": "SERGY" + "codePostal": "27110", + "codeCommune": "27055", + "libelleAcheminement": "BERENGEVILLE LA CAMPAGNE", + "nomCommune": "BERENGEVILLE LA CAMPAGNE" }, { - "codePostal": "01470", - "codeCommune": "01403", - "libelleAcheminement": "SERRIERES DE BRIORD", - "nomCommune": "SERRIERES DE BRIORD" + "codePostal": "27480", + "codeCommune": "27066", + "libelleAcheminement": "BEZU LA FORET", + "nomCommune": "BEZU LA FORET" }, { - "codePostal": "01960", - "codeCommune": "01405", - "libelleAcheminement": "SERVAS", - "nomCommune": "SERVAS" + "codePostal": "27260", + "codeCommune": "27071", + "libelleAcheminement": "LE BOIS HELLAIN", + "nomCommune": "LE BOIS HELLAIN" }, { - "codePostal": "01580", - "codeCommune": "01410", - "libelleAcheminement": "SONTHONNAX LA MONTAGNE", - "nomCommune": "SONTHONNAX LA MONTAGNE" + "codePostal": "27620", + "codeCommune": "27072", + "libelleAcheminement": "BOIS JEROME ST OUEN", + "nomCommune": "BOIS JEROME ST OUEN" }, { - "codePostal": "01150", - "codeCommune": "01411", - "libelleAcheminement": "SOUCLIN", - "nomCommune": "SOUCLIN" + "codePostal": "27220", + "codeCommune": "27078", + "libelleAcheminement": "LA BOISSIERE", + "nomCommune": "LA BOISSIERE" }, { - "codePostal": "01210", - "codeCommune": "01435", - "libelleAcheminement": "VERSONNEX", - "nomCommune": "VERSONNEX" + "codePostal": "27120", + "codeCommune": "27081", + "libelleAcheminement": "BONCOURT", + "nomCommune": "BONCOURT" }, { - "codePostal": "01150", - "codeCommune": "01444", - "libelleAcheminement": "VILLEBOIS", - "nomCommune": "VILLEBOIS" + "codePostal": "27190", + "codeCommune": "27082", + "libelleAcheminement": "LA BONNEVILLE SUR ITON", + "nomCommune": "LA BONNEVILLE SUR ITON" }, { - "codePostal": "01480", - "codeCommune": "01446", - "libelleAcheminement": "VILLENEUVE", - "nomCommune": "VILLENEUVE" + "codePostal": "27290", + "codeCommune": "27089", + "libelleAcheminement": "THENOUVILLE", + "nomCommune": "THENOUVILLE" }, { - "codePostal": "01320", - "codeCommune": "01449", - "libelleAcheminement": "VILLETTE SUR AIN", - "nomCommune": "VILLETTE SUR AIN" + "codePostal": "27520", + "codeCommune": "27089", + "libelleAcheminement": "THENOUVILLE", + "nomCommune": "THENOUVILLE" }, { - "codePostal": "01800", - "codeCommune": "01450", - "libelleAcheminement": "VILLIEU LOYES MOLLON", - "nomCommune": "VILLIEU LOYES MOLLON" + "codePostal": "27480", + "codeCommune": "27094", + "libelleAcheminement": "BOSQUENTIN", + "nomCommune": "BOSQUENTIN" }, { - "codePostal": "01260", - "codeCommune": "01453", - "libelleAcheminement": "ARVIERE EN VALROMEY", - "nomCommune": "ARVIERE EN VALROMEY" + "codePostal": "27800", + "codeCommune": "27095", + "libelleAcheminement": "BOSROBERT", + "nomCommune": "BOSROBERT" }, { - "codePostal": "01260", - "codeCommune": "01453", - "libelleAcheminement": "ARVIERE EN VALROMEY", - "nomCommune": "ARVIERE EN VALROMEY" + "codePostal": "27250", + "codeCommune": "27096", + "libelleAcheminement": "LES BOTTEREAUX", + "nomCommune": "LES BOTTEREAUX" }, { - "codePostal": "01540", - "codeCommune": "01457", - "libelleAcheminement": "VONNAS", - "nomCommune": "VONNAS" + "codePostal": "27250", + "codeCommune": "27096", + "libelleAcheminement": "LES BOTTEREAUX", + "nomCommune": "LES BOTTEREAUX" }, { - "codePostal": "02110", - "codeCommune": "02006", - "libelleAcheminement": "AISONVILLE ET BERNOVILLE", - "nomCommune": "AISONVILLE ET BERNOVILLE" + "codePostal": "27930", + "codeCommune": "27099", + "libelleAcheminement": "LE BOULAY MORIN", + "nomCommune": "LE BOULAY MORIN" }, { - "codePostal": "02370", - "codeCommune": "02008", - "libelleAcheminement": "AIZY JOUY", - "nomCommune": "AIZY JOUY" + "codePostal": "27210", + "codeCommune": "27100", + "libelleAcheminement": "BOULLEVILLE", + "nomCommune": "BOULLEVILLE" }, { - "codePostal": "02800", - "codeCommune": "02017", - "libelleAcheminement": "ANGUILCOURT LE SART", - "nomCommune": "ANGUILCOURT LE SART" + "codePostal": "27310", + "codeCommune": "27102", + "libelleAcheminement": "BOUQUETOT", + "nomCommune": "BOUQUETOT" }, { - "codePostal": "02480", - "codeCommune": "02019", - "libelleAcheminement": "ANNOIS", - "nomCommune": "ANNOIS" + "codePostal": "27520", + "codeCommune": "27105", + "libelleAcheminement": "GRAND BOURGTHEROULDE", + "nomCommune": "GRAND BOURGTHEROULDE" }, { - "codePostal": "02360", - "codeCommune": "02021", - "libelleAcheminement": "ARCHON", - "nomCommune": "ARCHON" + "codePostal": "27230", + "codeCommune": "27106", + "libelleAcheminement": "BOURNAINVILLE FAVEROLLES", + "nomCommune": "BOURNAINVILLE FAVEROLLES" }, { - "codePostal": "02210", - "codeCommune": "02023", - "libelleAcheminement": "ARMENTIERES SUR OURCQ", - "nomCommune": "ARMENTIERES SUR OURCQ" + "codePostal": "27230", + "codeCommune": "27106", + "libelleAcheminement": "BOURNAINVILLE FAVEROLLES", + "nomCommune": "BOURNAINVILLE FAVEROLLES" }, { - "codePostal": "02860", - "codeCommune": "02024", - "libelleAcheminement": "ARRANCY", - "nomCommune": "ARRANCY" + "codePostal": "27230", + "codeCommune": "27106", + "libelleAcheminement": "BOURNAINVILLE FAVEROLLES", + "nomCommune": "BOURNAINVILLE FAVEROLLES" }, { - "codePostal": "02500", - "codeCommune": "02031", - "libelleAcheminement": "AUBENTON", - "nomCommune": "AUBENTON" + "codePostal": "27500", + "codeCommune": "27107", + "libelleAcheminement": "BOURNEVILLE STE CROIX", + "nomCommune": "BOURNEVILLE STE CROIX" }, { - "codePostal": "02250", - "codeCommune": "02039", - "libelleAcheminement": "AUTREMENCOURT", - "nomCommune": "AUTREMENCOURT" + "codePostal": "27580", + "codeCommune": "27108", + "libelleAcheminement": "BOURTH", + "nomCommune": "BOURTH" }, { - "codePostal": "02580", - "codeCommune": "02040", - "libelleAcheminement": "AUTREPPES", - "nomCommune": "AUTREPPES" + "codePostal": "27170", + "codeCommune": "27109", + "libelleAcheminement": "BRAY", + "nomCommune": "BRAY" }, { - "codePostal": "02220", - "codeCommune": "02054", - "libelleAcheminement": "BAZOCHES SUR VESLES", - "nomCommune": "BAZOCHES SUR VESLES" + "codePostal": "27160", + "codeCommune": "27112", + "libelleAcheminement": "BRETEUIL", + "nomCommune": "BRETEUIL" }, { - "codePostal": "02800", - "codeCommune": "02059", - "libelleAcheminement": "BEAUTOR", - "nomCommune": "BEAUTOR" + "codePostal": "27570", + "codeCommune": "27115", + "libelleAcheminement": "BREUX SUR AVRE", + "nomCommune": "BREUX SUR AVRE" }, { - "codePostal": "02450", - "codeCommune": "02067", - "libelleAcheminement": "BERGUES SUR SAMBRE", - "nomCommune": "BERGUES SUR SAMBRE" + "codePostal": "27310", + "codeCommune": "27133", + "libelleAcheminement": "CAUMONT", + "nomCommune": "CAUMONT" }, { - "codePostal": "02190", - "codeCommune": "02076", - "libelleAcheminement": "BERTRICOURT", - "nomCommune": "BERTRICOURT" + "codePostal": "27350", + "codeCommune": "27134", + "libelleAcheminement": "CAUVERVILLE EN ROUMOIS", + "nomCommune": "CAUVERVILLE EN ROUMOIS" }, { - "codePostal": "02500", - "codeCommune": "02079", - "libelleAcheminement": "BESMONT", - "nomCommune": "BESMONT" + "codePostal": "27270", + "codeCommune": "27138", + "libelleAcheminement": "CHAMBLAC", + "nomCommune": "CHAMBLAC" }, { - "codePostal": "02400", - "codeCommune": "02094", - "libelleAcheminement": "BLESMES", - "nomCommune": "BLESMES" + "codePostal": "27250", + "codeCommune": "27139", + "libelleAcheminement": "CHAMBORD", + "nomCommune": "CHAMBORD" }, { - "codePostal": "02350", - "codeCommune": "02097", - "libelleAcheminement": "BONCOURT", - "nomCommune": "BONCOURT" + "codePostal": "27930", + "codeCommune": "27147", + "libelleAcheminement": "LA CHAPELLE DU BOIS DES FAULX", + "nomCommune": "LA CHAPELLE DU BOIS DES FAULX" }, { - "codePostal": "02160", - "codeCommune": "02104", - "libelleAcheminement": "BOUFFIGNEREUX", - "nomCommune": "BOUFFIGNEREUX" + "codePostal": "27150", + "codeCommune": "27153", + "libelleAcheminement": "CHAUVINCOURT PROVEMONT", + "nomCommune": "CHAUVINCOURT PROVEMONT" }, { - "codePostal": "02000", - "codeCommune": "02108", - "libelleAcheminement": "BOURGUIGNON SOUS MONTBAVIN", - "nomCommune": "BOURGUIGNON SOUS MONTBAVIN" + "codePostal": "27930", + "codeCommune": "27158", + "libelleAcheminement": "CIERREY", + "nomCommune": "CIERREY" }, { - "codePostal": "02320", - "codeCommune": "02111", - "libelleAcheminement": "BRANCOURT EN LAONNOIS", - "nomCommune": "BRANCOURT EN LAONNOIS" + "codePostal": "27190", + "codeCommune": "27162", + "libelleAcheminement": "COLLANDRES QUINCARNON", + "nomCommune": "COLLANDRES QUINCARNON" }, { - "codePostal": "02210", - "codeCommune": "02121", - "libelleAcheminement": "BRENY", - "nomCommune": "BRENY" + "codePostal": "27190", + "codeCommune": "27165", + "libelleAcheminement": "CONCHES EN OUCHE", + "nomCommune": "CONCHES EN OUCHE" }, { - "codePostal": "02130", - "codeCommune": "02127", - "libelleAcheminement": "BRUYERES SUR FERE", - "nomCommune": "BRUYERES SUR FERE" + "codePostal": "27290", + "codeCommune": "27167", + "libelleAcheminement": "CONDE SUR RISLE", + "nomCommune": "CONDE SUR RISLE" }, { - "codePostal": "02500", - "codeCommune": "02130", - "libelleAcheminement": "BUCILLY", - "nomCommune": "BUCILLY" + "codePostal": "27430", + "codeCommune": "27168", + "libelleAcheminement": "CONNELLES", + "nomCommune": "CONNELLES" }, { - "codePostal": "02620", - "codeCommune": "02135", - "libelleAcheminement": "BUIRONFOSSE", - "nomCommune": "BUIRONFOSSE" + "codePostal": "27220", + "codeCommune": "27177", + "libelleAcheminement": "COUDRES", + "nomCommune": "COUDRES" }, { - "codePostal": "02300", - "codeCommune": "02139", - "libelleAcheminement": "CAILLOUEL CREPIGNY", - "nomCommune": "CAILLOUEL CREPIGNY" + "codePostal": "27190", + "codeCommune": "27189", + "libelleAcheminement": "LA CROISILLE", + "nomCommune": "LA CROISILLE" }, { - "codePostal": "02300", - "codeCommune": "02140", - "libelleAcheminement": "CAMELIN", - "nomCommune": "CAMELIN" + "codePostal": "27110", + "codeCommune": "27192", + "libelleAcheminement": "CROSVILLE LA VIEILLE", + "nomCommune": "CROSVILLE LA VIEILLE" }, { - "codePostal": "02330", - "codeCommune": "02146", - "libelleAcheminement": "CELLES LES CONDE", - "nomCommune": "CELLES LES CONDE" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "02870", - "codeCommune": "02151", - "libelleAcheminement": "CERNY LES BUCY", - "nomCommune": "CERNY LES BUCY" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "02000", - "codeCommune": "02155", - "libelleAcheminement": "CHAILLEVOIS", - "nomCommune": "CHAILLEVOIS" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "02670", - "codeCommune": "02159", - "libelleAcheminement": "CHAMPS", - "nomCommune": "CHAMPS" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "02310", - "codeCommune": "02163", - "libelleAcheminement": "CHARLY SUR MARNE", - "nomCommune": "CHARLY SUR MARNE" + "codePostal": "27430", + "codeCommune": "27202", + "libelleAcheminement": "DAUBEUF PRES VATTEVILLE", + "nomCommune": "DAUBEUF PRES VATTEVILLE" }, { - "codePostal": "02200", - "codeCommune": "02172", - "libelleAcheminement": "CHAUDUN", - "nomCommune": "CHAUDUN" + "codePostal": "27510", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "02370", - "codeCommune": "02176", - "libelleAcheminement": "CHAVONNE", - "nomCommune": "CHAVONNE" + "codePostal": "27510", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "02860", - "codeCommune": "02178", - "libelleAcheminement": "CHERMIZY AILLES", - "nomCommune": "CHERMIZY AILLES" + "codePostal": "27630", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "02000", - "codeCommune": "02180", - "libelleAcheminement": "CHERY LES POUILLY", - "nomCommune": "CHERY LES POUILLY" + "codePostal": "27000", + "codeCommune": "27229", + "libelleAcheminement": "EVREUX", + "nomCommune": "EVREUX" }, { - "codePostal": "02250", - "codeCommune": "02182", - "libelleAcheminement": "CHEVENNES", - "nomCommune": "CHEVENNES" + "codePostal": "27000", + "codeCommune": "27229", + "libelleAcheminement": "EVREUX", + "nomCommune": "EVREUX" }, { - "codePostal": "02400", - "codeCommune": "02187", - "libelleAcheminement": "CHIERRY", - "nomCommune": "CHIERRY" + "codePostal": "27120", + "codeCommune": "27231", + "libelleAcheminement": "FAINS", + "nomCommune": "FAINS" }, { - "codePostal": "02000", - "codeCommune": "02191", - "libelleAcheminement": "CHIVY LES ETOUVELLES", - "nomCommune": "CHIVY LES ETOUVELLES" + "codePostal": "27210", + "codeCommune": "27233", + "libelleAcheminement": "FATOUVILLE GRESTAIN", + "nomCommune": "FATOUVILLE GRESTAIN" }, { - "codePostal": "02210", - "codeCommune": "02192", - "libelleAcheminement": "CHOUY", - "nomCommune": "CHOUY" + "codePostal": "27230", + "codeCommune": "27237", + "libelleAcheminement": "LE FAVRIL", + "nomCommune": "LE FAVRIL" }, { - "codePostal": "02250", - "codeCommune": "02194", - "libelleAcheminement": "CILLY", - "nomCommune": "CILLY" + "codePostal": "27210", + "codeCommune": "27243", + "libelleAcheminement": "FIQUEFLEUR EQUAINVILLE", + "nomCommune": "FIQUEFLEUR EQUAINVILLE" }, { - "codePostal": "02000", - "codeCommune": "02196", - "libelleAcheminement": "CLACY ET THIERRET", - "nomCommune": "CLACY ET THIERRET" + "codePostal": "27380", + "codeCommune": "27246", + "libelleAcheminement": "FLEURY SUR ANDELLE", + "nomCommune": "FLEURY SUR ANDELLE" }, { - "codePostal": "02360", - "codeCommune": "02204", - "libelleAcheminement": "COINGT", - "nomCommune": "COINGT" + "codePostal": "27210", + "codeCommune": "27258", + "libelleAcheminement": "FORT MOVILLE", + "nomCommune": "FORT MOVILLE" }, { - "codePostal": "02120", - "codeCommune": "02206", - "libelleAcheminement": "COLONFAY", - "nomCommune": "COLONFAY" + "codePostal": "27150", + "codeCommune": "27276", + "libelleAcheminement": "GAMACHES EN VEXIN", + "nomCommune": "GAMACHES EN VEXIN" }, { - "codePostal": "02820", - "codeCommune": "02215", - "libelleAcheminement": "CORBENY", - "nomCommune": "CORBENY" + "codePostal": "27220", + "codeCommune": "27277", + "libelleAcheminement": "LA BARONNIE", + "nomCommune": "LA BARONNIE" }, { - "codePostal": "02380", - "codeCommune": "02217", - "libelleAcheminement": "COUCY LE CHATEAU AUFFRIQUE", - "nomCommune": "COUCY LE CHATEAU AUFFRIQUE" + "codePostal": "27440", + "codeCommune": "27294", + "libelleAcheminement": "VAL D ORGER", + "nomCommune": "VAL D ORGER" }, { - "codePostal": "02380", - "codeCommune": "02219", - "libelleAcheminement": "COUCY LA VILLE", - "nomCommune": "COUCY LA VILLE" + "codePostal": "27370", + "codeCommune": "27302", + "libelleAcheminement": "LE BOSC DU THEIL", + "nomCommune": "LE BOSC DU THEIL" }, { - "codePostal": "02270", - "codeCommune": "02231", - "libelleAcheminement": "COUVRON ET AUMENCOURT", - "nomCommune": "COUVRON ET AUMENCOURT" + "codePostal": "27120", + "codeCommune": "27312", + "libelleAcheminement": "HARDENCOURT COCHEREL", + "nomCommune": "HARDENCOURT COCHEREL" }, { - "codePostal": "02600", - "codeCommune": "02232", - "libelleAcheminement": "COYOLLES", - "nomCommune": "COYOLLES" + "codePostal": "27350", + "codeCommune": "27316", + "libelleAcheminement": "HAUVILLE", + "nomCommune": "HAUVILLE" }, { - "codePostal": "02880", - "codeCommune": "02243", - "libelleAcheminement": "CROUY", - "nomCommune": "CROUY" + "codePostal": "27350", + "codeCommune": "27319", + "libelleAcheminement": "LA HAYE DE ROUTOT", + "nomCommune": "LA HAYE DE ROUTOT" }, { - "codePostal": "02880", - "codeCommune": "02245", - "libelleAcheminement": "CUFFIES", - "nomCommune": "CUFFIES" + "codePostal": "27400", + "codeCommune": "27322", + "libelleAcheminement": "LA HAYE MALHERBE", + "nomCommune": "LA HAYE MALHERBE" }, { - "codePostal": "02480", - "codeCommune": "02246", - "libelleAcheminement": "CUGNY", - "nomCommune": "CUGNY" + "codePostal": "27330", + "codeCommune": "27323", + "libelleAcheminement": "LA HAYE ST SYLVESTRE", + "nomCommune": "LA HAYE ST SYLVESTRE" }, { - "codePostal": "02160", - "codeCommune": "02250", - "libelleAcheminement": "CUIRY LES CHAUDARDES", - "nomCommune": "CUIRY LES CHAUDARDES" + "codePostal": "27120", + "codeCommune": "27326", + "libelleAcheminement": "HECOURT", + "nomCommune": "HECOURT" }, { - "codePostal": "02360", - "codeCommune": "02251", - "libelleAcheminement": "CUIRY LES IVIERS", - "nomCommune": "CUIRY LES IVIERS" + "codePostal": "27630", + "codeCommune": "27331", + "libelleAcheminement": "HEUBECOURT HARICOURT", + "nomCommune": "HEUBECOURT HARICOURT" }, { - "codePostal": "02680", - "codeCommune": "02257", - "libelleAcheminement": "DALLON", - "nomCommune": "DALLON" + "codePostal": "27910", + "codeCommune": "27338", + "libelleAcheminement": "LES HOGUES", + "nomCommune": "LES HOGUES" }, { - "codePostal": "02600", - "codeCommune": "02259", - "libelleAcheminement": "DAMPLEUX", - "nomCommune": "DAMPLEUX" + "codePostal": "27410", + "codeCommune": "27345", + "libelleAcheminement": "LA HOUSSAYE", + "nomCommune": "LA HOUSSAYE" }, { - "codePostal": "02340", - "codeCommune": "02264", - "libelleAcheminement": "DIZY LE GROS", - "nomCommune": "DIZY LE GROS" + "codePostal": "27770", + "codeCommune": "27350", + "libelleAcheminement": "ILLIERS L EVEQUE", + "nomCommune": "ILLIERS L EVEQUE" }, { - "codePostal": "02360", - "codeCommune": "02266", - "libelleAcheminement": "DOLIGNON", - "nomCommune": "DOLIGNON" + "codePostal": "27930", + "codeCommune": "27353", + "libelleAcheminement": "IRREVILLE", + "nomCommune": "IRREVILLE" }, { - "codePostal": "02600", - "codeCommune": "02267", - "libelleAcheminement": "DOMMIERS", - "nomCommune": "DOMMIERS" + "codePostal": "27910", + "codeCommune": "27366", + "libelleAcheminement": "LETTEGUIVES", + "nomCommune": "LETTEGUIVES" }, { - "codePostal": "02450", - "codeCommune": "02269", - "libelleAcheminement": "DORENGT", - "nomCommune": "DORENGT" + "codePostal": "27440", + "codeCommune": "27370", + "libelleAcheminement": "LISORS", + "nomCommune": "LISORS" }, { - "codePostal": "02500", - "codeCommune": "02275", - "libelleAcheminement": "EFFRY", - "nomCommune": "EFFRY" + "codePostal": "27800", + "codeCommune": "27371", + "libelleAcheminement": "LIVET SUR AUTHOU", + "nomCommune": "LIVET SUR AUTHOU" }, { - "codePostal": "02540", - "codeCommune": "02281", - "libelleAcheminement": "L EPINE AUX BOIS", - "nomCommune": "L EPINE AUX BOIS" + "codePostal": "27480", + "codeCommune": "27373", + "libelleAcheminement": "LORLEAU", + "nomCommune": "LORLEAU" }, { - "codePostal": "02250", - "codeCommune": "02283", - "libelleAcheminement": "ERLON", - "nomCommune": "ERLON" + "codePostal": "27800", + "codeCommune": "27380", + "libelleAcheminement": "MALLEVILLE SUR LE BEC", + "nomCommune": "MALLEVILLE SUR LE BEC" }, { - "codePostal": "02400", - "codeCommune": "02290", - "libelleAcheminement": "ESSOMES SUR MARNE", - "nomCommune": "ESSOMES SUR MARNE" + "codePostal": "27320", + "codeCommune": "27390", + "libelleAcheminement": "MARCILLY LA CAMPAGNE", + "nomCommune": "MARCILLY LA CAMPAGNE" }, { - "codePostal": "02510", - "codeCommune": "02298", - "libelleAcheminement": "ETREUX", - "nomCommune": "ETREUX" + "codePostal": "27810", + "codeCommune": "27391", + "libelleAcheminement": "MARCILLY SUR EURE", + "nomCommune": "MARCILLY SUR EURE" }, { - "codePostal": "02800", - "codeCommune": "02304", - "libelleAcheminement": "LA FERE", - "nomCommune": "LA FERE" + "codePostal": "27150", + "codeCommune": "27392", + "libelleAcheminement": "MARTAGNY", + "nomCommune": "MARTAGNY" }, { - "codePostal": "02840", - "codeCommune": "02309", - "libelleAcheminement": "FESTIEUX", - "nomCommune": "FESTIEUX" + "codePostal": "27300", + "codeCommune": "27398", + "libelleAcheminement": "MENNEVAL", + "nomCommune": "MENNEVAL" }, { - "codePostal": "02120", - "codeCommune": "02313", - "libelleAcheminement": "FLAVIGNY LE GRAND ET BEAURAIN", - "nomCommune": "FLAVIGNY LE GRAND ET BEAURAIN" + "codePostal": "27950", + "codeCommune": "27399", + "libelleAcheminement": "MERCEY", + "nomCommune": "MERCEY" }, { - "codePostal": "02680", - "codeCommune": "02320", - "libelleAcheminement": "FONTAINE LES CLERCS", - "nomCommune": "FONTAINE LES CLERCS" + "codePostal": "27320", + "codeCommune": "27411", + "libelleAcheminement": "MOISVILLE", + "nomCommune": "MOISVILLE" }, { - "codePostal": "02110", - "codeCommune": "02322", - "libelleAcheminement": "FONTAINE NOTRE DAME", - "nomCommune": "FONTAINE NOTRE DAME" + "codePostal": "27400", + "codeCommune": "27412", + "libelleAcheminement": "TERRES DE BORD", + "nomCommune": "TERRES DE BORD" }, { - "codePostal": "02590", - "codeCommune": "02327", - "libelleAcheminement": "FORESTE", - "nomCommune": "FORESTE" + "codePostal": "27260", + "codeCommune": "27415", + "libelleAcheminement": "MORAINVILLE JOUVEAUX", + "nomCommune": "MORAINVILLE JOUVEAUX" }, { - "codePostal": "02650", - "codeCommune": "02328", - "libelleAcheminement": "FOSSOY", - "nomCommune": "FOSSOY" + "codePostal": "27220", + "codeCommune": "27419", + "libelleAcheminement": "MOUETTES", + "nomCommune": "MOUETTES" }, { - "codePostal": "02140", - "codeCommune": "02331", - "libelleAcheminement": "FRANQUEVILLE", - "nomCommune": "FRANQUEVILLE" + "codePostal": "27560", + "codeCommune": "27434", + "libelleAcheminement": "NOARDS", + "nomCommune": "NOARDS" }, { - "codePostal": "02260", - "codeCommune": "02337", - "libelleAcheminement": "FROIDESTREES", - "nomCommune": "FROIDESTREES" + "codePostal": "27320", + "codeCommune": "27438", + "libelleAcheminement": "NONANCOURT", + "nomCommune": "NONANCOURT" }, { - "codePostal": "02270", - "codeCommune": "02338", - "libelleAcheminement": "FROIDMONT COHARTILLE", - "nomCommune": "FROIDMONT COHARTILLE" + "codePostal": "27800", + "codeCommune": "27441", + "libelleAcheminement": "NOTRE DAME D EPINE", + "nomCommune": "NOTRE DAME D EPINE" }, { - "codePostal": "02140", - "codeCommune": "02341", - "libelleAcheminement": "GERCY", - "nomCommune": "GERCY" + "codePostal": "27410", + "codeCommune": "27444", + "libelleAcheminement": "LE NOYER EN OUCHE", + "nomCommune": "LE NOYER EN OUCHE" }, { - "codePostal": "02420", - "codeCommune": "02352", - "libelleAcheminement": "GOUY", - "nomCommune": "GOUY" + "codePostal": "27190", + "codeCommune": "27447", + "libelleAcheminement": "LE VAL DORE", + "nomCommune": "LE VAL DORE" }, { - "codePostal": "02140", - "codeCommune": "02357", - "libelleAcheminement": "GRONARD", - "nomCommune": "GRONARD" + "codePostal": "27590", + "codeCommune": "27458", + "libelleAcheminement": "PITRES", + "nomCommune": "PITRES" }, { - "codePostal": "02110", - "codeCommune": "02358", - "libelleAcheminement": "GROUGIS", - "nomCommune": "GROUGIS" + "codePostal": "27300", + "codeCommune": "27463", + "libelleAcheminement": "PLASNES", + "nomCommune": "PLASNES" }, { - "codePostal": "02680", - "codeCommune": "02359", - "libelleAcheminement": "GRUGIES", - "nomCommune": "GRUGIES" + "codePostal": "27110", + "codeCommune": "27486", + "libelleAcheminement": "QUITTEBEUF", + "nomCommune": "QUITTEBEUF" }, { - "codePostal": "02100", - "codeCommune": "02371", - "libelleAcheminement": "HARLY", - "nomCommune": "HARLY" + "codePostal": "27380", + "codeCommune": "27487", + "libelleAcheminement": "RADEPONT", + "nomCommune": "RADEPONT" }, { - "codePostal": "02720", - "codeCommune": "02383", - "libelleAcheminement": "HOMBLIERES", - "nomCommune": "HOMBLIERES" + "codePostal": "27910", + "codeCommune": "27488", + "libelleAcheminement": "RENNEVILLE", + "nomCommune": "RENNEVILLE" }, { - "codePostal": "02140", - "codeCommune": "02384", - "libelleAcheminement": "HOURY", - "nomCommune": "HOURY" + "codePostal": "27700", + "codeCommune": "27495", + "libelleAcheminement": "LA ROQUETTE", + "nomCommune": "LA ROQUETTE" }, { - "codePostal": "02510", - "codeCommune": "02386", - "libelleAcheminement": "IRON", - "nomCommune": "IRON" + "codePostal": "27250", + "codeCommune": "27502", + "libelleAcheminement": "RUGLES", + "nomCommune": "RUGLES" }, { - "codePostal": "02240", - "codeCommune": "02387", - "libelleAcheminement": "ITANCOURT", - "nomCommune": "ITANCOURT" + "codePostal": "27220", + "codeCommune": "27507", + "libelleAcheminement": "ST ANDRE DE L EURE", + "nomCommune": "ST ANDRE DE L EURE" }, { - "codePostal": "02360", - "codeCommune": "02388", - "libelleAcheminement": "IVIERS", - "nomCommune": "IVIERS" + "codePostal": "27300", + "codeCommune": "27516", + "libelleAcheminement": "TREIS SANTS EN OUCHE", + "nomCommune": "TREIS SANTS EN OUCHE" }, { - "codePostal": "02850", - "codeCommune": "02389", - "libelleAcheminement": "JAULGONNE", - "nomCommune": "JAULGONNE" + "codePostal": "27680", + "codeCommune": "27518", + "libelleAcheminement": "ST AUBIN SUR QUILLEBEUF", + "nomCommune": "ST AUBIN SUR QUILLEBEUF" }, { - "codePostal": "02140", - "codeCommune": "02401", - "libelleAcheminement": "LAIGNY", - "nomCommune": "LAIGNY" + "codePostal": "27370", + "codeCommune": "27529", + "libelleAcheminement": "ST CYR LA CAMPAGNE", + "nomCommune": "ST CYR LA CAMPAGNE" }, { - "codePostal": "02120", - "codeCommune": "02403", - "libelleAcheminement": "LANDIFAY ET BERTAIGNEMONT", - "nomCommune": "LANDIFAY ET BERTAIGNEMONT" + "codePostal": "27390", + "codeCommune": "27530", + "libelleAcheminement": "ST DENIS D AUGERONS", + "nomCommune": "ST DENIS D AUGERONS" }, { - "codePostal": "02140", - "codeCommune": "02405", - "libelleAcheminement": "LANDOUZY LA VILLE", - "nomCommune": "LANDOUZY LA VILLE" + "codePostal": "27140", + "codeCommune": "27533", + "libelleAcheminement": "ST DENIS LE FERMENT", + "nomCommune": "ST DENIS LE FERMENT" }, { - "codePostal": "02600", - "codeCommune": "02415", - "libelleAcheminement": "LAVERSINE", - "nomCommune": "LAVERSINE" + "codePostal": "27430", + "codeCommune": "27537", + "libelleAcheminement": "ST ETIENNE DU VAUVRAY", + "nomCommune": "ST ETIENNE DU VAUVRAY" }, { - "codePostal": "02880", - "codeCommune": "02424", - "libelleAcheminement": "LEURY", - "nomCommune": "LEURY" + "codePostal": "27600", + "codeCommune": "27553", + "libelleAcheminement": "ST JULIEN DE LA LIEGUE", + "nomCommune": "ST JULIEN DE LA LIEGUE" }, { - "codePostal": "02500", - "codeCommune": "02425", - "libelleAcheminement": "LEUZE", - "nomCommune": "LEUZE" + "codePostal": "27950", + "codeCommune": "27562", + "libelleAcheminement": "ST MARCEL", + "nomCommune": "ST MARCEL" }, { - "codePostal": "02420", - "codeCommune": "02426", - "libelleAcheminement": "LEVERGIES", - "nomCommune": "LEVERGIES" + "codePostal": "27160", + "codeCommune": "27565", + "libelleAcheminement": "LE LESME", + "nomCommune": "LE LESME" }, { - "codePostal": "02220", - "codeCommune": "02427", - "libelleAcheminement": "LHUYS", - "nomCommune": "LHUYS" + "codePostal": "27160", + "codeCommune": "27565", + "libelleAcheminement": "LE LESME", + "nomCommune": "LE LESME" }, { - "codePostal": "02810", - "codeCommune": "02428", - "libelleAcheminement": "LICY CLIGNON", - "nomCommune": "LICY CLIGNON" + "codePostal": "27370", + "codeCommune": "27572", + "libelleAcheminement": "ST MESLIN DU BOSC", + "nomCommune": "ST MESLIN DU BOSC" }, { - "codePostal": "02860", - "codeCommune": "02429", - "libelleAcheminement": "LIERVAL", - "nomCommune": "LIERVAL" + "codePostal": "27670", + "codeCommune": "27582", + "libelleAcheminement": "ST OUEN DU TILLEUL", + "nomCommune": "ST OUEN DU TILLEUL" }, { - "codePostal": "02700", - "codeCommune": "02431", - "libelleAcheminement": "LIEZ", - "nomCommune": "LIEZ" + "codePostal": "27390", + "codeCommune": "27590", + "libelleAcheminement": "ST PIERRE DE CERNIERES", + "nomCommune": "ST PIERRE DE CERNIERES" }, { - "codePostal": "02400", - "codeCommune": "02443", - "libelleAcheminement": "LUCY LE BOCAGE", - "nomCommune": "LUCY LE BOCAGE" + "codePostal": "27210", + "codeCommune": "27597", + "libelleAcheminement": "ST PIERRE DU VAL", + "nomCommune": "ST PIERRE DU VAL" }, { - "codePostal": "02500", - "codeCommune": "02445", - "libelleAcheminement": "LUZOIR", - "nomCommune": "LUZOIR" + "codePostal": "27430", + "codeCommune": "27598", + "libelleAcheminement": "ST PIERRE DU VAUVRAY", + "nomCommune": "ST PIERRE DU VAUVRAY" }, { - "codePostal": "02540", - "codeCommune": "02458", - "libelleAcheminement": "DHUYS ET MORIN EN BRIE", - "nomCommune": "DHUYS ET MORIN EN BRIE" + "codePostal": "27500", + "codeCommune": "27606", + "libelleAcheminement": "ST SYMPHORIEN", + "nomCommune": "ST SYMPHORIEN" }, { - "codePostal": "02880", - "codeCommune": "02464", - "libelleAcheminement": "MARGIVAL", - "nomCommune": "MARGIVAL" + "codePostal": "27230", + "codeCommune": "27613", + "libelleAcheminement": "ST VINCENT DU BOULAY", + "nomCommune": "ST VINCENT DU BOULAY" }, { - "codePostal": "02820", - "codeCommune": "02472", - "libelleAcheminement": "MAUREGNY EN HAYE", - "nomCommune": "MAUREGNY EN HAYE" + "codePostal": "27930", + "codeCommune": "27615", + "libelleAcheminement": "SASSEY", + "nomCommune": "SASSEY" }, { - "codePostal": "02000", - "codeCommune": "02478", - "libelleAcheminement": "MERLIEUX ET FOUQUEROLLES", - "nomCommune": "MERLIEUX ET FOUQUEROLLES" + "codePostal": "27420", + "codeCommune": "27625", + "libelleAcheminement": "SUZAY", + "nomCommune": "SUZAY" }, { - "codePostal": "02160", - "codeCommune": "02482", - "libelleAcheminement": "MEURIVAL", - "nomCommune": "MEURIVAL" + "codePostal": "27230", + "codeCommune": "27627", + "libelleAcheminement": "LE THEIL NOLENT", + "nomCommune": "LE THEIL NOLENT" }, { - "codePostal": "02000", - "codeCommune": "02490", - "libelleAcheminement": "MONAMPTEUIL", - "nomCommune": "MONAMPTEUIL" + "codePostal": "27150", + "codeCommune": "27632", + "libelleAcheminement": "LE THIL EN VEXIN", + "nomCommune": "LE THIL" }, { - "codePostal": "02820", - "codeCommune": "02498", - "libelleAcheminement": "MONTAIGU", - "nomCommune": "MONTAIGU" + "codePostal": "27170", + "codeCommune": "27640", + "libelleAcheminement": "TILLEUL DAME AGNES", + "nomCommune": "TILLEUL DAME AGNES" }, { - "codePostal": "02390", - "codeCommune": "02503", - "libelleAcheminement": "MONT D ORIGNY", - "nomCommune": "MONT D ORIGNY" + "codePostal": "27110", + "codeCommune": "27641", + "libelleAcheminement": "LE TILLEUL LAMBERT", + "nomCommune": "LE TILLEUL LAMBERT" }, { - "codePostal": "02250", - "codeCommune": "02516", - "libelleAcheminement": "MONTIGNY SOUS MARLE", - "nomCommune": "MONTIGNY SOUS MARLE" + "codePostal": "27310", + "codeCommune": "27661", + "libelleAcheminement": "LA TRINITE DE THOUBERVILLE", + "nomCommune": "LA TRINITE DE THOUBERVILLE" }, { - "codePostal": "02220", - "codeCommune": "02520", - "libelleAcheminement": "MONT NOTRE DAME", - "nomCommune": "MONT NOTRE DAME" + "codePostal": "27500", + "codeCommune": "27662", + "libelleAcheminement": "TRIQUEVILLE", + "nomCommune": "TRIQUEVILLE" }, { - "codePostal": "02220", - "codeCommune": "02523", - "libelleAcheminement": "MONT ST MARTIN", - "nomCommune": "MONT ST MARTIN" + "codePostal": "27400", + "codeCommune": "27666", + "libelleAcheminement": "LA VACHERIE", + "nomCommune": "LA VACHERIE" }, { - "codePostal": "02400", - "codeCommune": "02524", - "libelleAcheminement": "MONT ST PERE", - "nomCommune": "MONT ST PERE" + "codePostal": "27380", + "codeCommune": "27670", + "libelleAcheminement": "VANDRIMARE", + "nomCommune": "VANDRIMARE" }, { - "codePostal": "02360", - "codeCommune": "02526", - "libelleAcheminement": "MORGNY EN THIERACHE", - "nomCommune": "MORGNY EN THIERACHE" + "codePostal": "27210", + "codeCommune": "27671", + "libelleAcheminement": "VANNECROCQ", + "nomCommune": "VANNECROCQ" }, { - "codePostal": "02610", - "codeCommune": "02532", - "libelleAcheminement": "MOY DE L AISNE", - "nomCommune": "MOY DE L AISNE" + "codePostal": "27120", + "codeCommune": "27674", + "libelleAcheminement": "VAUX SUR EURE", + "nomCommune": "VAUX SUR EURE" }, { - "codePostal": "02160", - "codeCommune": "02534", - "libelleAcheminement": "MUSCOURT", - "nomCommune": "MUSCOURT" + "codePostal": "27160", + "codeCommune": "27679", + "libelleAcheminement": "VERNEUIL D AVRE ET D ITON", + "nomCommune": "VERNEUIL D AVRE ET D ITON" }, { - "codePostal": "02420", - "codeCommune": "02539", - "libelleAcheminement": "NAUROY", - "nomCommune": "NAUROY" + "codePostal": "27200", + "codeCommune": "27681", + "libelleAcheminement": "VERNON", + "nomCommune": "VERNON" }, { - "codePostal": "02470", - "codeCommune": "02543", - "libelleAcheminement": "NEUILLY ST FRONT", - "nomCommune": "NEUILLY ST FRONT" + "codePostal": "27870", + "codeCommune": "27682", + "libelleAcheminement": "VESLY", + "nomCommune": "VESLY" }, { - "codePostal": "02500", - "codeCommune": "02544", - "libelleAcheminement": "NEUVE MAISON", - "nomCommune": "NEUVE MAISON" + "codePostal": "27700", + "codeCommune": "27683", + "libelleAcheminement": "VEZILLON", + "nomCommune": "VEZILLON" }, { - "codePostal": "02300", - "codeCommune": "02546", - "libelleAcheminement": "LA NEUVILLE EN BEINE", - "nomCommune": "LA NEUVILLE EN BEINE" + "codePostal": "27330", + "codeCommune": "27685", + "libelleAcheminement": "LA VIEILLE LYRE", + "nomCommune": "LA VIEILLE LYRE" }, { - "codePostal": "02150", - "codeCommune": "02553", - "libelleAcheminement": "NIZY LE COMTE", - "nomCommune": "NIZY LE COMTE" + "codePostal": "27640", + "codeCommune": "27696", + "libelleAcheminement": "VILLIERS EN DESOEUVRE", + "nomCommune": "VILLIERS EN DESOEUVRE" }, { - "codePostal": "02600", - "codeCommune": "02557", - "libelleAcheminement": "NOROY SUR OURCQ", - "nomCommune": "NOROY SUR OURCQ" + "codePostal": "28150", + "codeCommune": "28004", + "libelleAcheminement": "ALLONNES", + "nomCommune": "ALLONNES" }, { - "codePostal": "02300", - "codeCommune": "02566", - "libelleAcheminement": "OGNES", - "nomCommune": "OGNES" + "codePostal": "28290", + "codeCommune": "28012", + "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", + "nomCommune": "COMMUNE NOUVELLE D ARROU" }, { - "codePostal": "02600", - "codeCommune": "02568", - "libelleAcheminement": "OIGNY EN VALOIS", - "nomCommune": "OIGNY EN VALOIS" + "codePostal": "28700", + "codeCommune": "28015", + "libelleAcheminement": "AUNEAU BLEURY ST SYMPHORIEN", + "nomCommune": "AUNEAU BLEURY ST SYMPHORIEN" }, { - "codePostal": "02190", - "codeCommune": "02572", - "libelleAcheminement": "ORAINVILLE", - "nomCommune": "ORAINVILLE" + "codePostal": "28320", + "codeCommune": "28023", + "libelleAcheminement": "BAILLEAU ARMENONVILLE", + "nomCommune": "BAILLEAU ARMENONVILLE" }, { - "codePostal": "02210", - "codeCommune": "02580", - "libelleAcheminement": "OULCHY LE CHATEAU", - "nomCommune": "OULCHY LE CHATEAU" + "codePostal": "28330", + "codeCommune": "28027", + "libelleAcheminement": "LA BAZOCHE GOUET", + "nomCommune": "LA BAZOCHE GOUET" }, { - "codePostal": "02220", - "codeCommune": "02581", - "libelleAcheminement": "PAARS", - "nomCommune": "PAARS" + "codePostal": "28300", + "codeCommune": "28034", + "libelleAcheminement": "BERCHERES ST GERMAIN", + "nomCommune": "BERCHERES ST GERMAIN" }, { - "codePostal": "02860", - "codeCommune": "02583", - "libelleAcheminement": "PANCY COURTECON", - "nomCommune": "PANCY COURTECON" + "codePostal": "28630", + "codeCommune": "28035", + "libelleAcheminement": "BERCHERES LES PIERRES", + "nomCommune": "BERCHERES LES PIERRES" }, { - "codePostal": "02360", - "codeCommune": "02586", - "libelleAcheminement": "PARFONDEVAL", - "nomCommune": "PARFONDEVAL" + "codePostal": "28260", + "codeCommune": "28036", + "libelleAcheminement": "BERCHERES SUR VESGRE", + "nomCommune": "BERCHERES SUR VESGRE" }, { - "codePostal": "02470", - "codeCommune": "02594", - "libelleAcheminement": "PASSY EN VALOIS", - "nomCommune": "PASSY EN VALOIS" + "codePostal": "28190", + "codeCommune": "28040", + "libelleAcheminement": "BILLANCELLES", + "nomCommune": "BILLANCELLES" }, { - "codePostal": "02850", - "codeCommune": "02595", - "libelleAcheminement": "PASSY SUR MARNE", - "nomCommune": "PASSY SUR MARNE" + "codePostal": "28500", + "codeCommune": "28045", + "libelleAcheminement": "BOISSY EN DROUAIS", + "nomCommune": "BOISSY EN DROUAIS" }, { - "codePostal": "02310", - "codeCommune": "02596", - "libelleAcheminement": "PAVANT", - "nomCommune": "PAVANT" + "codePostal": "28150", + "codeCommune": "28047", + "libelleAcheminement": "BOISVILLE LA ST PERE", + "nomCommune": "BOISVILLE LA ST PERE" }, { - "codePostal": "02190", - "codeCommune": "02601", - "libelleAcheminement": "PIGNICOURT", - "nomCommune": "PIGNICOURT" + "codePostal": "28360", + "codeCommune": "28048", + "libelleAcheminement": "LA BOURDINIERE ST LOUP", + "nomCommune": "LA BOURDINIERE ST LOUP" }, { - "codePostal": "02210", - "codeCommune": "02606", - "libelleAcheminement": "LE PLESSIER HULEU", - "nomCommune": "LE PLESSIER HULEU" + "codePostal": "28260", + "codeCommune": "28050", + "libelleAcheminement": "BONCOURT", + "nomCommune": "BONCOURT" }, { - "codePostal": "02160", - "codeCommune": "02613", - "libelleAcheminement": "PONTAVERT", - "nomCommune": "PONTAVERT" + "codePostal": "28800", + "codeCommune": "28051", + "libelleAcheminement": "BONNEVAL", + "nomCommune": "BONNEVAL" }, { - "codePostal": "02380", - "codeCommune": "02616", - "libelleAcheminement": "PONT ST MARD", - "nomCommune": "PONT ST MARD" + "codePostal": "28410", + "codeCommune": "28062", + "libelleAcheminement": "BROUE", + "nomCommune": "BROUE" }, { - "codePostal": "02600", - "codeCommune": "02628", - "libelleAcheminement": "PUISEUX EN RETZ", - "nomCommune": "PUISEUX EN RETZ" + "codePostal": "28330", + "codeCommune": "28078", + "libelleAcheminement": "CHAPELLE GUILLAUME", + "nomCommune": "CHAPELLE GUILLAUME" }, { - "codePostal": "02220", - "codeCommune": "02633", - "libelleAcheminement": "QUINCY SOUS LE MONT", - "nomCommune": "QUINCY SOUS LE MONT" + "codePostal": "28480", + "codeCommune": "28086", + "libelleAcheminement": "CHASSANT", + "nomCommune": "CHASSANT" }, { - "codePostal": "02240", - "codeCommune": "02640", - "libelleAcheminement": "RENANSART", - "nomCommune": "RENANSART" + "codePostal": "28170", + "codeCommune": "28089", + "libelleAcheminement": "CHATEAUNEUF EN THYMERAIS", + "nomCommune": "CHATEAUNEUF EN THYMERAIS" }, { - "codePostal": "02360", - "codeCommune": "02642", - "libelleAcheminement": "RESIGNY", - "nomCommune": "RESIGNY" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "02600", - "codeCommune": "02644", - "libelleAcheminement": "RETHEUIL", - "nomCommune": "RETHEUIL" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "02260", - "codeCommune": "02650", - "libelleAcheminement": "ROCQUIGNY", - "nomCommune": "ROCQUIGNY" + "codePostal": "28630", + "codeCommune": "28107", + "libelleAcheminement": "CORANCEZ", + "nomCommune": "CORANCEZ" }, { - "codePostal": "02160", - "codeCommune": "02656", - "libelleAcheminement": "ROUCY", - "nomCommune": "ROUCY" + "codePostal": "28210", + "codeCommune": "28113", + "libelleAcheminement": "COULOMBS", + "nomCommune": "COULOMBS" }, { - "codePostal": "02100", - "codeCommune": "02659", - "libelleAcheminement": "ROUVROY", - "nomCommune": "ROUVROY" + "codePostal": "28270", + "codeCommune": "28120", + "libelleAcheminement": "CRUCEY VILLAGES", + "nomCommune": "CRUCEY VILLAGES" }, { - "codePostal": "02360", - "codeCommune": "02660", - "libelleAcheminement": "ROUVROY SUR SERRE", - "nomCommune": "ROUVROY SUR SERRE" + "codePostal": "28190", + "codeCommune": "28128", + "libelleAcheminement": "DANGERS", + "nomCommune": "DANGERS" }, { - "codePostal": "02210", - "codeCommune": "02662", - "libelleAcheminement": "ROZET ST ALBIN", - "nomCommune": "ROZET ST ALBIN" + "codePostal": "28320", + "codeCommune": "28137", + "libelleAcheminement": "ECROSNES", + "nomCommune": "ECROSNES" }, { - "codePostal": "02540", - "codeCommune": "02664", - "libelleAcheminement": "ROZOY BELLEVALLE", - "nomCommune": "ROZOY BELLEVALLE" + "codePostal": "28120", + "codeCommune": "28139", + "libelleAcheminement": "EPEAUTROLLES", + "nomCommune": "EPEAUTROLLES" }, { - "codePostal": "02300", - "codeCommune": "02671", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "28120", + "codeCommune": "28141", + "libelleAcheminement": "ERMENONVILLE LA GRANDE", + "nomCommune": "ERMENONVILLE LA GRANDE" }, { - "codePostal": "02810", - "codeCommune": "02679", - "libelleAcheminement": "ST GENGOULPH", - "nomCommune": "ST GENGOULPH" + "codePostal": "28240", + "codeCommune": "28156", + "libelleAcheminement": "FONTAINE SIMON", + "nomCommune": "FONTAINE SIMON" }, { - "codePostal": "02830", - "codeCommune": "02684", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "28630", + "codeCommune": "28158", + "libelleAcheminement": "FONTENAY SUR EURE", + "nomCommune": "FONTENAY SUR EURE" }, { - "codePostal": "02250", - "codeCommune": "02689", - "libelleAcheminement": "ST PIERREMONT", - "nomCommune": "ST PIERREMONT" + "codePostal": "28160", + "codeCommune": "28161", + "libelleAcheminement": "FRAZE", + "nomCommune": "FRAZE" }, { - "codePostal": "02820", - "codeCommune": "02696", - "libelleAcheminement": "ST THOMAS", - "nomCommune": "ST THOMAS" + "codePostal": "28320", + "codeCommune": "28168", + "libelleAcheminement": "GALLARDON", + "nomCommune": "GALLARDON" }, { - "codePostal": "02840", - "codeCommune": "02697", - "libelleAcheminement": "SAMOUSSY", - "nomCommune": "SAMOUSSY" + "codePostal": "28500", + "codeCommune": "28170", + "libelleAcheminement": "GARANCIERES EN DROUAIS", + "nomCommune": "GARANCIERES EN DROUAIS" }, { - "codePostal": "02590", - "codeCommune": "02702", - "libelleAcheminement": "SAVY", - "nomCommune": "SAVY" + "codePostal": "28310", + "codeCommune": "28184", + "libelleAcheminement": "GOUILLONS", + "nomCommune": "GOUILLONS" }, { - "codePostal": "02200", - "codeCommune": "02706", - "libelleAcheminement": "SEPTMONTS", - "nomCommune": "SEPTMONTS" + "codePostal": "28410", + "codeCommune": "28185", + "libelleAcheminement": "GOUSSAINVILLE", + "nomCommune": "GOUSSAINVILLE" }, { - "codePostal": "02410", - "codeCommune": "02707", - "libelleAcheminement": "SEPTVAUX", - "nomCommune": "SEPTVAUX" + "codePostal": "28310", + "codeCommune": "28197", + "libelleAcheminement": "INTREVILLE", + "nomCommune": "INTREVILLE" }, { - "codePostal": "02420", - "codeCommune": "02708", - "libelleAcheminement": "SEQUEHART", - "nomCommune": "SEQUEHART" + "codePostal": "28310", + "codeCommune": "28199", + "libelleAcheminement": "JANVILLE EN BEAUCE", + "nomCommune": "JANVILLE EN BEAUCE" }, { - "codePostal": "02130", - "codeCommune": "02712", - "libelleAcheminement": "SERGY", - "nomCommune": "SERGY" + "codePostal": "28600", + "codeCommune": "28220", + "libelleAcheminement": "LUISANT", + "nomCommune": "LUISANT" }, { - "codePostal": "02600", - "codeCommune": "02729", - "libelleAcheminement": "SOUCY", - "nomCommune": "SOUCY" + "codePostal": "28120", + "codeCommune": "28225", + "libelleAcheminement": "MAGNY", + "nomCommune": "MAGNY" }, { - "codePostal": "02700", - "codeCommune": "02738", - "libelleAcheminement": "TERGNIER", - "nomCommune": "TERGNIER" + "codePostal": "28170", + "codeCommune": "28226", + "libelleAcheminement": "MAILLEBOIS", + "nomCommune": "MAILLEBOIS" }, { - "codePostal": "02140", - "codeCommune": "02740", - "libelleAcheminement": "THENAILLES", - "nomCommune": "THENAILLES" + "codePostal": "28700", + "codeCommune": "28230", + "libelleAcheminement": "MAISONS", + "nomCommune": "MAISONS" }, { - "codePostal": "02250", - "codeCommune": "02742", - "libelleAcheminement": "THIERNU", - "nomCommune": "THIERNU" + "codePostal": "28120", + "codeCommune": "28242", + "libelleAcheminement": "MEREGLISE", + "nomCommune": "MEREGLISE" }, { - "codePostal": "02250", - "codeCommune": "02745", - "libelleAcheminement": "TOULIS ET ATTENCOURT", - "nomCommune": "TOULIS ET ATTENCOURT" + "codePostal": "28200", + "codeCommune": "28256", + "libelleAcheminement": "MOLEANS", + "nomCommune": "MOLEANS" }, { - "codePostal": "02690", - "codeCommune": "02756", - "libelleAcheminement": "URVILLERS", - "nomCommune": "URVILLERS" + "codePostal": "28800", + "codeCommune": "28259", + "libelleAcheminement": "MONTBOISSIER", + "nomCommune": "MONTBOISSIER" }, { - "codePostal": "02200", - "codeCommune": "02767", - "libelleAcheminement": "VAUXREZIS", - "nomCommune": "VAUXREZIS" + "codePostal": "28210", + "codeCommune": "28275", + "libelleAcheminement": "NERON", + "nomCommune": "NERON" }, { - "codePostal": "02110", - "codeCommune": "02769", - "libelleAcheminement": "VAUX ANDIGNY", - "nomCommune": "VAUX ANDIGNY" + "codePostal": "28130", + "codeCommune": "28298", + "libelleAcheminement": "PIERRES", + "nomCommune": "PIERRES" }, { - "codePostal": "02200", - "codeCommune": "02770", - "libelleAcheminement": "VAUXBUIN", - "nomCommune": "VAUXBUIN" + "codePostal": "28800", + "codeCommune": "28305", + "libelleAcheminement": "PRE ST EVROULT", + "nomCommune": "PRE ST EVROULT" }, { - "codePostal": "02490", - "codeCommune": "02774", - "libelleAcheminement": "VENDELLES", - "nomCommune": "VENDELLES" + "codePostal": "28170", + "codeCommune": "28312", + "libelleAcheminement": "PUISEUX", + "nomCommune": "PUISEUX" }, { - "codePostal": "02420", - "codeCommune": "02776", - "libelleAcheminement": "VENDHUILE", - "nomCommune": "VENDHUILE" + "codePostal": "28310", + "codeCommune": "28319", + "libelleAcheminement": "ROUVRAY ST DENIS", + "nomCommune": "ROUVRAY ST DENIS" }, { - "codePostal": "02160", - "codeCommune": "02778", - "libelleAcheminement": "VENDRESSE BEAULNE", - "nomCommune": "VENDRESSE BEAULNE" + "codePostal": "28260", + "codeCommune": "28321", + "libelleAcheminement": "ROUVRES", + "nomCommune": "ROUVRES" }, { - "codePostal": "02140", - "codeCommune": "02789", - "libelleAcheminement": "VERVINS", - "nomCommune": "VERVINS" + "codePostal": "28200", + "codeCommune": "28330", + "libelleAcheminement": "VILLEMAURY", + "nomCommune": "VILLEMAURY" }, { - "codePostal": "02840", - "codeCommune": "02791", - "libelleAcheminement": "VESLUD", - "nomCommune": "VESLUD" + "codePostal": "28480", + "codeCommune": "28331", + "libelleAcheminement": "SAINTIGNY", + "nomCommune": "SAINTIGNY" }, { - "codePostal": "02290", - "codeCommune": "02793", - "libelleAcheminement": "VEZAPONIN", - "nomCommune": "VEZAPONIN" + "codePostal": "28200", + "codeCommune": "28334", + "libelleAcheminement": "ST DENIS LANNERAY", + "nomCommune": "ST DENIS LANNERAY" }, { - "codePostal": "02540", - "codeCommune": "02798", - "libelleAcheminement": "VIELS MAISONS", - "nomCommune": "VIELS MAISONS" + "codePostal": "28200", + "codeCommune": "28334", + "libelleAcheminement": "ST DENIS LANNERAY", + "nomCommune": "ST DENIS LANNERAY" }, { - "codePostal": "02130", - "codeCommune": "02816", - "libelleAcheminement": "VILLERS SUR FERE", - "nomCommune": "VILLERS SUR FERE" + "codePostal": "28300", + "codeCommune": "28358", + "libelleAcheminement": "ST PREST", + "nomCommune": "ST PREST" }, { - "codePostal": "02220", - "codeCommune": "02817", - "libelleAcheminement": "VILLE SAVOYE", - "nomCommune": "VILLE SAVOYE" + "codePostal": "28170", + "codeCommune": "28360", + "libelleAcheminement": "ST SAUVEUR MARVILLE", + "nomCommune": "ST SAUVEUR MARVILLE" }, { - "codePostal": "02860", - "codeCommune": "02824", - "libelleAcheminement": "VORGES", - "nomCommune": "VORGES" + "codePostal": "28700", + "codeCommune": "28363", + "libelleAcheminement": "SAINVILLE", + "nomCommune": "SAINVILLE" }, { - "codePostal": "02630", - "codeCommune": "02830", - "libelleAcheminement": "WASSIGNY", - "nomCommune": "WASSIGNY" + "codePostal": "28210", + "codeCommune": "28372", + "libelleAcheminement": "SENANTES", + "nomCommune": "SENANTES" }, { - "codePostal": "02120", - "codeCommune": "02832", - "libelleAcheminement": "WIEGE FATY", - "nomCommune": "WIEGE FATY" + "codePostal": "28150", + "codeCommune": "28383", + "libelleAcheminement": "THEUVILLE", + "nomCommune": "THEUVILLE" }, { - "codePostal": "03200", - "codeCommune": "03001", - "libelleAcheminement": "ABREST", - "nomCommune": "ABREST" + "codePostal": "28310", + "codeCommune": "28391", + "libelleAcheminement": "TOURY", + "nomCommune": "TOURY" }, { - "codePostal": "03210", - "codeCommune": "03002", - "libelleAcheminement": "AGONGES", - "nomCommune": "AGONGES" + "codePostal": "28170", + "codeCommune": "28393", + "libelleAcheminement": "TREMBLAY LES VILLAGES", + "nomCommune": "TREMBLAY LES VILLAGES" }, { - "codePostal": "03120", - "codeCommune": "03004", - "libelleAcheminement": "ANDELAROCHE", - "nomCommune": "ANDELAROCHE" + "codePostal": "28170", + "codeCommune": "28393", + "libelleAcheminement": "TREMBLAY LES VILLAGES", + "nomCommune": "TREMBLAY LES VILLAGES" }, { - "codePostal": "03460", - "codeCommune": "03009", - "libelleAcheminement": "AUBIGNY", - "nomCommune": "AUBIGNY" + "codePostal": "28160", + "codeCommune": "28398", + "libelleAcheminement": "UNVERRE", + "nomCommune": "UNVERRE" }, { - "codePostal": "03460", - "codeCommune": "03011", - "libelleAcheminement": "AUROUER", - "nomCommune": "AUROUER" + "codePostal": "28140", + "codeCommune": "28406", + "libelleAcheminement": "EOLE EN BEAUCE", + "nomCommune": "EOLE EN BEAUCE" }, { - "codePostal": "03000", - "codeCommune": "03013", - "libelleAcheminement": "AVERMES", - "nomCommune": "AVERMES" + "codePostal": "28200", + "codeCommune": "28410", + "libelleAcheminement": "VILLAMPUY", + "nomCommune": "VILLAMPUY" }, { - "codePostal": "03800", - "codeCommune": "03021", - "libelleAcheminement": "BEGUES", - "nomCommune": "BEGUES" + "codePostal": "28190", + "codeCommune": "28414", + "libelleAcheminement": "VILLEBON", + "nomCommune": "VILLEBON" }, { - "codePostal": "03330", - "codeCommune": "03022", - "libelleAcheminement": "BELLENAVES", - "nomCommune": "BELLENAVES" + "codePostal": "28150", + "codeCommune": "28426", + "libelleAcheminement": "YMONVILLE", + "nomCommune": "YMONVILLE" }, { - "codePostal": "03700", - "codeCommune": "03023", - "libelleAcheminement": "BELLERIVE SUR ALLIER", - "nomCommune": "BELLERIVE SUR ALLIER" + "codePostal": "29300", + "codeCommune": "29005", + "libelleAcheminement": "BAYE", + "nomCommune": "BAYE" }, { - "codePostal": "03340", - "codeCommune": "03025", - "libelleAcheminement": "BESSAY SUR ALLIER", - "nomCommune": "BESSAY SUR ALLIER" + "codePostal": "29400", + "codeCommune": "29010", + "libelleAcheminement": "BODILIS", + "nomCommune": "BODILIS" }, { - "codePostal": "03210", - "codeCommune": "03026", - "libelleAcheminement": "BESSON", - "nomCommune": "BESSON" + "codePostal": "29690", + "codeCommune": "29018", + "libelleAcheminement": "BRENNILIS", + "nomCommune": "BRENNILIS" }, { - "codePostal": "03390", - "codeCommune": "03032", - "libelleAcheminement": "BLOMARD", - "nomCommune": "BLOMARD" + "codePostal": "29570", + "codeCommune": "29022", + "libelleAcheminement": "CAMARET SUR MER", + "nomCommune": "CAMARET SUR MER" }, { - "codePostal": "03130", - "codeCommune": "03035", - "libelleAcheminement": "LE BOUCHAUD", - "nomCommune": "LE BOUCHAUD" + "codePostal": "29520", + "codeCommune": "29027", + "libelleAcheminement": "CHATEAUNEUF DU FAOU", + "nomCommune": "CHATEAUNEUF DU FAOU" }, { - "codePostal": "03160", - "codeCommune": "03036", - "libelleAcheminement": "BOURBON L ARCHAMBAULT", - "nomCommune": "BOURBON L ARCHAMBAULT" + "codePostal": "29270", + "codeCommune": "29029", + "libelleAcheminement": "CLEDEN POHER", + "nomCommune": "CLEDEN POHER" }, { - "codePostal": "03270", - "codeCommune": "03045", - "libelleAcheminement": "BUSSET", - "nomCommune": "BUSSET" + "codePostal": "29410", + "codeCommune": "29034", + "libelleAcheminement": "LE CLOITRE ST THEGONNEC", + "nomCommune": "LE CLOITRE ST THEGONNEC" }, { - "codePostal": "03600", - "codeCommune": "03047", - "libelleAcheminement": "LA CELLE", - "nomCommune": "LA CELLE" + "codePostal": "29217", + "codeCommune": "29040", + "libelleAcheminement": "LE CONQUET", + "nomCommune": "LE CONQUET" }, { - "codePostal": "03140", - "codeCommune": "03059", - "libelleAcheminement": "CHAREIL CINTRAT", - "nomCommune": "CHAREIL CINTRAT" + "codePostal": "29370", + "codeCommune": "29041", + "libelleAcheminement": "CORAY", + "nomCommune": "CORAY" }, { - "codePostal": "03500", - "codeCommune": "03065", - "libelleAcheminement": "CHATEL DE NEUVRE", - "nomCommune": "CHATEL DE NEUVRE" + "codePostal": "29510", + "codeCommune": "29048", + "libelleAcheminement": "EDERN", + "nomCommune": "EDERN" }, { - "codePostal": "03220", - "codeCommune": "03071", - "libelleAcheminement": "CHAVROCHES", - "nomCommune": "CHAVROCHES" + "codePostal": "29170", + "codeCommune": "29058", + "libelleAcheminement": "FOUESNANT", + "nomCommune": "FOUESNANT" }, { - "codePostal": "03370", - "codeCommune": "03072", - "libelleAcheminement": "CHAZEMAIS", - "nomCommune": "CHAZEMAIS" + "codePostal": "29610", + "codeCommune": "29059", + "libelleAcheminement": "GARLAN", + "nomCommune": "GARLAN" }, { - "codePostal": "03210", - "codeCommune": "03073", - "libelleAcheminement": "CHEMILLY", - "nomCommune": "CHEMILLY" + "codePostal": "29950", + "codeCommune": "29060", + "libelleAcheminement": "GOUESNACH", + "nomCommune": "GOUESNACH" }, { - "codePostal": "03140", - "codeCommune": "03075", - "libelleAcheminement": "CHEZELLE", - "nomCommune": "CHEZELLE" + "codePostal": "29850", + "codeCommune": "29061", + "libelleAcheminement": "GOUESNOU", + "nomCommune": "GOUESNOU" }, { - "codePostal": "03450", - "codeCommune": "03078", - "libelleAcheminement": "CHOUVIGNY", - "nomCommune": "CHOUVIGNY" + "codePostal": "29890", + "codeCommune": "29064", + "libelleAcheminement": "GOULVEN", + "nomCommune": "GOULVEN" }, { - "codePostal": "03110", - "codeCommune": "03080", - "libelleAcheminement": "COGNAT LYONNE", - "nomCommune": "COGNAT LYONNE" + "codePostal": "29410", + "codeCommune": "29068", + "libelleAcheminement": "GUICLAN", + "nomCommune": "GUICLAN" }, { - "codePostal": "03430", - "codeCommune": "03084", - "libelleAcheminement": "COSNE D ALLIER", - "nomCommune": "COSNE D ALLIER" + "codePostal": "29400", + "codeCommune": "29074", + "libelleAcheminement": "GUIMILIAU", + "nomCommune": "GUIMILIAU" }, { - "codePostal": "03370", - "codeCommune": "03088", - "libelleAcheminement": "COURCAIS", - "nomCommune": "COURCAIS" + "codePostal": "29290", + "codeCommune": "29076", + "libelleAcheminement": "MILIZAC GUIPRONVEL", + "nomCommune": "MILIZAC GUIPRONVEL" }, { - "codePostal": "03330", - "codeCommune": "03089", - "libelleAcheminement": "COUTANSOUZE", - "nomCommune": "COUTANSOUZE" + "codePostal": "29460", + "codeCommune": "29080", + "libelleAcheminement": "L HOPITAL CAMFROUT", + "nomCommune": "HOPITAL CAMFROUT" }, { - "codePostal": "03300", - "codeCommune": "03093", - "libelleAcheminement": "CREUZIER LE NEUF", - "nomCommune": "CREUZIER LE NEUF" + "codePostal": "29690", + "codeCommune": "29081", + "libelleAcheminement": "HUELGOAT", + "nomCommune": "HUELGOAT" }, { - "codePostal": "03630", - "codeCommune": "03098", - "libelleAcheminement": "DESERTINES", - "nomCommune": "DESERTINES" + "codePostal": "29259", + "codeCommune": "29084", + "libelleAcheminement": "ILE MOLENE", + "nomCommune": "ILE MOLENE" }, { - "codePostal": "03290", - "codeCommune": "03102", - "libelleAcheminement": "DOMPIERRE SUR BESBRE", - "nomCommune": "DOMPIERRE SUR BESBRE" + "codePostal": "29270", + "codeCommune": "29089", + "libelleAcheminement": "KERGLOFF", + "nomCommune": "KERGLOFF" }, { - "codePostal": "03130", - "codeCommune": "03103", - "libelleAcheminement": "LE DONJON", - "nomCommune": "LE DONJON" + "codePostal": "29260", + "codeCommune": "29093", + "libelleAcheminement": "KERNILIS", + "nomCommune": "KERNILIS" }, { - "codePostal": "03120", - "codeCommune": "03105", - "libelleAcheminement": "DROITURIER", - "nomCommune": "DROITURIER" + "codePostal": "29510", + "codeCommune": "29110", + "libelleAcheminement": "LANGOLEN", + "nomCommune": "LANGOLEN" }, { - "codePostal": "03140", - "codeCommune": "03112", - "libelleAcheminement": "ETROUSSAT", - "nomCommune": "ETROUSSAT" + "codePostal": "29840", + "codeCommune": "29112", + "libelleAcheminement": "LANILDUT", + "nomCommune": "LANILDUT" }, { - "codePostal": "03190", - "codeCommune": "03127", - "libelleAcheminement": "HERISSON", - "nomCommune": "HERISSON" + "codePostal": "29400", + "codeCommune": "29116", + "libelleAcheminement": "LANNEUFFRET", + "nomCommune": "LANNEUFFRET" }, { - "codePostal": "03600", - "codeCommune": "03129", - "libelleAcheminement": "HYDS", - "nomCommune": "HYDS" + "codePostal": "29870", + "codeCommune": "29117", + "libelleAcheminement": "LANNILIS", + "nomCommune": "LANNILIS" }, { - "codePostal": "03120", - "codeCommune": "03138", - "libelleAcheminement": "LAPALISSE", - "nomCommune": "LAPALISSE" + "codePostal": "29290", + "codeCommune": "29119", + "libelleAcheminement": "LANRIVOARE", + "nomCommune": "LANRIVOARE" }, { - "codePostal": "03130", - "codeCommune": "03147", - "libelleAcheminement": "LODDES", - "nomCommune": "LODDES" + "codePostal": "29260", + "codeCommune": "29126", + "libelleAcheminement": "LOC BREVALAIRE", + "nomCommune": "LOC BREVALAIRE" }, { - "codePostal": "03270", - "codeCommune": "03163", - "libelleAcheminement": "MARIOL", - "nomCommune": "MARIOL" + "codePostal": "29400", + "codeCommune": "29128", + "libelleAcheminement": "LOC EGUINER", + "nomCommune": "LOC EGUINER" }, { - "codePostal": "03800", - "codeCommune": "03164", - "libelleAcheminement": "LE MAYET D ECOLE", - "nomCommune": "LE MAYET D ECOLE" + "codePostal": "29180", + "codeCommune": "29134", + "libelleAcheminement": "LOCRONAN", + "nomCommune": "LOCRONAN" }, { - "codePostal": "03500", - "codeCommune": "03169", - "libelleAcheminement": "MEILLARD", - "nomCommune": "MEILLARD" + "codePostal": "29790", + "codeCommune": "29145", + "libelleAcheminement": "CONFORT MEILARS", + "nomCommune": "CONFORT MEILARS" }, { - "codePostal": "03340", - "codeCommune": "03171", - "libelleAcheminement": "MERCY", - "nomCommune": "MERCY" + "codePostal": "29170", + "codeCommune": "29161", + "libelleAcheminement": "PLEUVEN", + "nomCommune": "PLEUVEN" }, { - "codePostal": "03370", - "codeCommune": "03172", - "libelleAcheminement": "MESPLES", - "nomCommune": "MESPLES" + "codePostal": "29710", + "codeCommune": "29167", + "libelleAcheminement": "PLOGASTEL ST GERMAIN", + "nomCommune": "PLOGASTEL ST GERMAIN" }, { - "codePostal": "03140", - "codeCommune": "03175", - "libelleAcheminement": "MONESTIER", - "nomCommune": "MONESTIER" + "codePostal": "29180", + "codeCommune": "29169", + "libelleAcheminement": "PLOGONNEC", + "nomCommune": "PLOGONNEC" }, { - "codePostal": "03340", - "codeCommune": "03180", - "libelleAcheminement": "MONTBEUGNY", - "nomCommune": "MONTBEUGNY" + "codePostal": "29550", + "codeCommune": "29172", + "libelleAcheminement": "PLOMODIERN", + "nomCommune": "PLOMODIERN" }, { - "codePostal": "03150", - "codeCommune": "03215", - "libelleAcheminement": "RONGERES", - "nomCommune": "RONGERES" + "codePostal": "29830", + "codeCommune": "29178", + "libelleAcheminement": "PLOUDALMEZEAU", + "nomCommune": "PLOUDALMEZEAU" }, { - "codePostal": "03120", - "codeCommune": "03223", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "29630", + "codeCommune": "29188", + "libelleAcheminement": "PLOUGASNOU", + "nomCommune": "PLOUGASNOU" }, { - "codePostal": "03370", - "codeCommune": "03225", - "libelleAcheminement": "ST DESIRE", - "nomCommune": "ST DESIRE" + "codePostal": "29830", + "codeCommune": "29196", + "libelleAcheminement": "PLOUGUIN", + "nomCommune": "PLOUGUIN" }, { - "codePostal": "03370", - "codeCommune": "03228", - "libelleAcheminement": "ST ELOY D ALLIER", - "nomCommune": "ST ELOY D ALLIER" + "codePostal": "29430", + "codeCommune": "29206", + "libelleAcheminement": "PLOUNEVEZ LOCHRIST", + "nomCommune": "PLOUNEVEZ LOCHRIST" }, { - "codePostal": "03340", - "codeCommune": "03234", - "libelleAcheminement": "ST GERAND DE VAUX", - "nomCommune": "ST GERAND DE VAUX" + "codePostal": "29600", + "codeCommune": "29207", + "libelleAcheminement": "PLOURIN LES MORLAIX", + "nomCommune": "PLOURIN LES MORLAIX" }, { - "codePostal": "03440", - "codeCommune": "03238", - "libelleAcheminement": "ST HILAIRE", - "nomCommune": "ST HILAIRE" + "codePostal": "29710", + "codeCommune": "29215", + "libelleAcheminement": "PLOZEVET", + "nomCommune": "PLOZEVET" }, { - "codePostal": "03160", - "codeCommune": "03241", - "libelleAcheminement": "ST LEOPARDIN D AUGY", - "nomCommune": "ST LEOPARDIN D AUGY" + "codePostal": "29930", + "codeCommune": "29217", + "libelleAcheminement": "PONT AVEN", + "nomCommune": "PONT AVEN" }, { - "codePostal": "03230", - "codeCommune": "03245", - "libelleAcheminement": "ST MARTIN DES LAIS", - "nomCommune": "ST MARTIN DES LAIS" + "codePostal": "29150", + "codeCommune": "29222", + "libelleAcheminement": "PORT LAUNAY", + "nomCommune": "PORT LAUNAY" }, { - "codePostal": "03150", - "codeCommune": "03266", - "libelleAcheminement": "SANSSAT", - "nomCommune": "SANSSAT" + "codePostal": "29100", + "codeCommune": "29226", + "libelleAcheminement": "POULLAN SUR MER", + "nomCommune": "POULLAN SUR MER" }, { - "codePostal": "03500", - "codeCommune": "03267", - "libelleAcheminement": "SAULCET", - "nomCommune": "SAULCET" + "codePostal": "29480", + "codeCommune": "29235", + "libelleAcheminement": "LE RELECQ KERHUON", + "nomCommune": "LE RELECQ KERHUON" }, { - "codePostal": "03390", - "codeCommune": "03270", - "libelleAcheminement": "SAZERET", - "nomCommune": "SAZERET" + "codePostal": "29680", + "codeCommune": "29239", + "libelleAcheminement": "ROSCOFF", + "nomCommune": "ROSCOFF" }, { - "codePostal": "03700", - "codeCommune": "03271", - "libelleAcheminement": "SERBANNES", - "nomCommune": "SERBANNES" + "codePostal": "29140", + "codeCommune": "29241", + "libelleAcheminement": "ROSPORDEN", + "nomCommune": "ROSPORDEN" }, { - "codePostal": "03120", - "codeCommune": "03272", - "libelleAcheminement": "SERVILLY", - "nomCommune": "SERVILLY" + "codePostal": "29140", + "codeCommune": "29241", + "libelleAcheminement": "ROSPORDEN", + "nomCommune": "ROSPORDEN" }, { - "codePostal": "03220", - "codeCommune": "03274", - "libelleAcheminement": "SORBIER", - "nomCommune": "SORBIER" + "codePostal": "29440", + "codeCommune": "29244", + "libelleAcheminement": "ST DERRIEN", + "nomCommune": "ST DERRIEN" }, { - "codePostal": "03210", - "codeCommune": "03275", - "libelleAcheminement": "SOUVIGNY", - "nomCommune": "SOUVIGNY" + "codePostal": "29800", + "codeCommune": "29245", + "libelleAcheminement": "ST DIVY", + "nomCommune": "ST DIVY" }, { - "codePostal": "03450", - "codeCommune": "03276", - "libelleAcheminement": "SUSSAT", - "nomCommune": "SUSSAT" + "codePostal": "29460", + "codeCommune": "29246", + "libelleAcheminement": "ST ELOY", + "nomCommune": "ST ELOY" }, { - "codePostal": "03240", - "codeCommune": "03287", - "libelleAcheminement": "TREBAN", - "nomCommune": "TREBAN" + "codePostal": "29520", + "codeCommune": "29249", + "libelleAcheminement": "ST GOAZEC", + "nomCommune": "ST GOAZEC" }, { - "codePostal": "03360", - "codeCommune": "03293", - "libelleAcheminement": "URCAY", - "nomCommune": "URCAY" + "codePostal": "29250", + "codeCommune": "29259", + "libelleAcheminement": "ST POL DE LEON", + "nomCommune": "ST POL DE LEON" }, { - "codePostal": "03390", - "codeCommune": "03308", - "libelleAcheminement": "VERNUSSE", - "nomCommune": "VERNUSSE" + "codePostal": "29400", + "codeCommune": "29264", + "libelleAcheminement": "ST SERVAIS", + "nomCommune": "ST SERVAIS" }, { - "codePostal": "03320", - "codeCommune": "03309", - "libelleAcheminement": "LE VEURDRE", - "nomCommune": "LE VEURDRE" + "codePostal": "29450", + "codeCommune": "29277", + "libelleAcheminement": "SIZUN", + "nomCommune": "SIZUN" }, { - "codePostal": "03310", - "codeCommune": "03314", - "libelleAcheminement": "VILLEBRET", - "nomCommune": "VILLEBRET" + "codePostal": "29540", + "codeCommune": "29278", + "libelleAcheminement": "SPEZET", + "nomCommune": "SPEZET" }, { - "codePostal": "03460", - "codeCommune": "03316", - "libelleAcheminement": "VILLENEUVE SUR ALLIER", - "nomCommune": "VILLENEUVE SUR ALLIER" + "codePostal": "29217", + "codeCommune": "29282", + "libelleAcheminement": "TREBABU", + "nomCommune": "TREBABU" }, { - "codePostal": "03400", - "codeCommune": "03321", - "libelleAcheminement": "YZEURE", - "nomCommune": "YZEURE" + "codePostal": "29730", + "codeCommune": "29284", + "libelleAcheminement": "TREFFIAGAT", + "nomCommune": "TREFFIAGAT" }, { - "codePostal": "04170", - "codeCommune": "04007", - "libelleAcheminement": "ANGLES", - "nomCommune": "ANGLES" + "codePostal": "29430", + "codeCommune": "29287", + "libelleAcheminement": "TREFLEZ", + "nomCommune": "TREFLEZ" }, { - "codePostal": "04140", - "codeCommune": "04017", - "libelleAcheminement": "AUZET", - "nomCommune": "AUZET" + "codePostal": "29120", + "codeCommune": "29296", + "libelleAcheminement": "TREMEOC", + "nomCommune": "TREMEOC" }, { - "codePostal": "04150", - "codeCommune": "04018", - "libelleAcheminement": "BANON", - "nomCommune": "BANON" + "codePostal": "29440", + "codeCommune": "29301", + "libelleAcheminement": "TREZILIDE", + "nomCommune": "TREZILIDE" }, { - "codePostal": "04330", - "codeCommune": "04022", - "libelleAcheminement": "BARREME", - "nomCommune": "BARREME" + "codePostal": "29590", + "codeCommune": "29302", + "libelleAcheminement": "PONT DE BUIS LES QUIMERCH", + "nomCommune": "PONT DE BUIS LES QUIMERCH" }, { - "codePostal": "04250", - "codeCommune": "04023", - "libelleAcheminement": "BAYONS", - "nomCommune": "BAYONS" + "codePostal": "29590", + "codeCommune": "29302", + "libelleAcheminement": "PONT DE BUIS LES QUIMERCH", + "nomCommune": "PONT DE BUIS LES QUIMERCH" }, { - "codePostal": "04250", - "codeCommune": "04026", - "libelleAcheminement": "BELLAFFAIRE", - "nomCommune": "BELLAFFAIRE" + "codePostal": "20167", + "codeCommune": "2A017", + "libelleAcheminement": "APPIETTO", + "nomCommune": "APPIETTO" }, { - "codePostal": "04340", - "codeCommune": "04033", - "libelleAcheminement": "UBAYE SERRE PONCON", - "nomCommune": "UBAYE SERRE PONCON" + "codePostal": "20110", + "codeCommune": "2A018", + "libelleAcheminement": "ARBELLARA", + "nomCommune": "ARBELLARA" }, { - "codePostal": "04120", - "codeCommune": "04039", - "libelleAcheminement": "CASTELLANE", - "nomCommune": "CASTELLANE" + "codePostal": "20190", + "codeCommune": "2A026", + "libelleAcheminement": "AZILONE AMPAZA", + "nomCommune": "AZILONE AMPAZA" }, { - "codePostal": "04700", - "codeCommune": "04041", - "libelleAcheminement": "LE CASTELLET", - "nomCommune": "LE CASTELLET" + "codePostal": "20119", + "codeCommune": "2A031", + "libelleAcheminement": "BASTELICA", + "nomCommune": "BASTELICA" }, { - "codePostal": "04330", - "codeCommune": "04059", - "libelleAcheminement": "CLUMANC", - "nomCommune": "CLUMANC" + "codePostal": "20133", + "codeCommune": "2A062", + "libelleAcheminement": "CARBUCCIA", + "nomCommune": "CARBUCCIA" }, { - "codePostal": "04220", - "codeCommune": "04063", - "libelleAcheminement": "CORBIERES EN PROVENCE", - "nomCommune": "CORBIERES EN PROVENCE" + "codePostal": "20134", + "codeCommune": "2A089", + "libelleAcheminement": "CIAMANNACCE", + "nomCommune": "CIAMANNACCE" }, { - "codePostal": "04270", - "codeCommune": "04084", - "libelleAcheminement": "ESTOUBLON", - "nomCommune": "ESTOUBLON" + "codePostal": "20166", + "codeCommune": "2A091", + "libelleAcheminement": "COGNOCOLI MONTICCHI", + "nomCommune": "COGNOCOLI MONTICCHI" }, { - "codePostal": "04120", - "codeCommune": "04092", - "libelleAcheminement": "LA GARDE", - "nomCommune": "LA GARDE" + "codePostal": "20143", + "codeCommune": "2A118", + "libelleAcheminement": "FOZZANO", + "nomCommune": "FOZZANO" }, { - "codePostal": "04230", - "codeCommune": "04101", - "libelleAcheminement": "LARDIERS", - "nomCommune": "LARDIERS" + "codePostal": "20157", + "codeCommune": "2A119", + "libelleAcheminement": "FRASSETO", + "nomCommune": "FRASSETO" }, { - "codePostal": "04270", - "codeCommune": "04107", - "libelleAcheminement": "MAJASTRES", - "nomCommune": "MAJASTRES" + "codePostal": "20100", + "codeCommune": "2A129", + "libelleAcheminement": "GROSSA", + "nomCommune": "GROSSA" }, { - "codePostal": "04350", - "codeCommune": "04108", - "libelleAcheminement": "MALIJAI", - "nomCommune": "MALIJAI" + "codePostal": "20137", + "codeCommune": "2A139", + "libelleAcheminement": "LECCI", + "nomCommune": "LECCI" }, { - "codePostal": "04510", - "codeCommune": "04110", - "libelleAcheminement": "MALLEMOISSON", - "nomCommune": "MALLEMOISSON" + "codePostal": "20140", + "codeCommune": "2A186", + "libelleAcheminement": "OLIVESE", + "nomCommune": "OLIVESE" }, { - "codePostal": "04530", - "codeCommune": "04120", - "libelleAcheminement": "VAL D ORONAYE", - "nomCommune": "VAL D ORONAYE" + "codePostal": "20115", + "codeCommune": "2A212", + "libelleAcheminement": "PIANA", + "nomCommune": "PIANA" }, { - "codePostal": "04500", - "codeCommune": "04124", - "libelleAcheminement": "MONTAGNAC MONTPEZAT", - "nomCommune": "MONTAGNAC MONTPEZAT" + "codePostal": "20160", + "codeCommune": "2A240", + "libelleAcheminement": "POGGIOLO", + "nomCommune": "POGGIOLO" }, { - "codePostal": "04500", - "codeCommune": "04124", - "libelleAcheminement": "MONTAGNAC MONTPEZAT", - "nomCommune": "MONTAGNAC MONTPEZAT" + "codePostal": "20122", + "codeCommune": "2A254", + "libelleAcheminement": "QUENZA", + "nomCommune": "QUENZA" }, { - "codePostal": "04600", - "codeCommune": "04127", - "libelleAcheminement": "MONTFORT", - "nomCommune": "MONTFORT" + "codePostal": "20160", + "codeCommune": "2A258", + "libelleAcheminement": "RENNO", + "nomCommune": "RENNO" }, { - "codePostal": "04230", - "codeCommune": "04130", - "libelleAcheminement": "MONTLAUX", - "nomCommune": "MONTLAUX" + "codePostal": "20151", + "codeCommune": "2A295", + "libelleAcheminement": "SANT ANDREA D ORCINO", + "nomCommune": "SANT ANDREA D ORCINO" }, { - "codePostal": "04170", - "codeCommune": "04136", - "libelleAcheminement": "LA MURE ARGENS", - "nomCommune": "LA MURE ARGENS" + "codePostal": "20137", + "codeCommune": "2A300", + "libelleAcheminement": "SAN GAVINO DI CARBINI", + "nomCommune": "SAN GAVINO DI CARBINI" }, { - "codePostal": "04120", - "codeCommune": "04144", - "libelleAcheminement": "LA PALUD SUR VERDON", - "nomCommune": "LA PALUD SUR VERDON" + "codePostal": "20170", + "codeCommune": "2A300", + "libelleAcheminement": "SAN GAVINO DI CARBINI", + "nomCommune": "SAN GAVINO DI CARBINI" }, { - "codePostal": "04120", - "codeCommune": "04148", - "libelleAcheminement": "PEYROULES", - "nomCommune": "PEYROULES" + "codePostal": "20190", + "codeCommune": "2A312", + "libelleAcheminement": "SANTA MARIA SICHE", + "nomCommune": "SANTA MARIA SICHE" }, { - "codePostal": "05160", - "codeCommune": "04154", - "libelleAcheminement": "PONTIS", - "nomCommune": "PONTIS" + "codePostal": "20117", + "codeCommune": "2A326", + "libelleAcheminement": "TOLLA", + "nomCommune": "TOLLA" }, { - "codePostal": "04340", - "codeCommune": "04161", - "libelleAcheminement": "MEOLANS REVEL", - "nomCommune": "MEOLANS REVEL" + "codePostal": "20133", + "codeCommune": "2A330", + "libelleAcheminement": "UCCIANI", + "nomCommune": "UCCIANI" }, { - "codePostal": "04150", - "codeCommune": "04163", - "libelleAcheminement": "REVEST DU BION", - "nomCommune": "REVEST DU BION" + "codePostal": "20172", + "codeCommune": "2A345", + "libelleAcheminement": "VERO", + "nomCommune": "VERO" }, { - "codePostal": "04230", - "codeCommune": "04164", - "libelleAcheminement": "REVEST ST MARTIN", - "nomCommune": "REVEST ST MARTIN" + "codePostal": "20160", + "codeCommune": "2A348", + "libelleAcheminement": "VICO", + "nomCommune": "VICO" }, { - "codePostal": "06260", - "codeCommune": "04170", - "libelleAcheminement": "LA ROCHETTE", - "nomCommune": "LA ROCHETTE" + "codePostal": "20173", + "codeCommune": "2A358", + "libelleAcheminement": "ZEVACO", + "nomCommune": "ZEVACO" }, { - "codePostal": "04110", - "codeCommune": "04175", - "libelleAcheminement": "STE CROIX A LAUZE", - "nomCommune": "STE CROIX A LAUZE" + "codePostal": "20251", + "codeCommune": "2B012", + "libelleAcheminement": "ALTIANI", + "nomCommune": "ALTIANI" }, { - "codePostal": "04380", - "codeCommune": "04177", - "libelleAcheminement": "HAUTES DUYES", - "nomCommune": "HAUTES DUYES" + "codePostal": "20272", + "codeCommune": "2B015", + "libelleAcheminement": "AMPRIANI", + "nomCommune": "AMPRIANI" }, { - "codePostal": "04230", - "codeCommune": "04178", - "libelleAcheminement": "ST ETIENNE LES ORGUES", - "nomCommune": "ST ETIENNE LES ORGUES" + "codePostal": "20290", + "codeCommune": "2B042", + "libelleAcheminement": "BORGO", + "nomCommune": "BORGO" }, { - "codePostal": "04170", - "codeCommune": "04183", - "libelleAcheminement": "ST JULIEN DU VERDON", - "nomCommune": "ST JULIEN DU VERDON" + "codePostal": "20228", + "codeCommune": "2B046", + "libelleAcheminement": "CAGNANO", + "nomCommune": "CAGNANO" }, { - "codePostal": "04290", - "codeCommune": "04200", - "libelleAcheminement": "SALIGNAC", - "nomCommune": "SALIGNAC" + "codePostal": "20224", + "codeCommune": "2B047", + "libelleAcheminement": "CALACUCCIA", + "nomCommune": "CALACUCCIA" }, { - "codePostal": "04320", - "codeCommune": "04202", - "libelleAcheminement": "SAUSSES", - "nomCommune": "SAUSSES" + "codePostal": "20260", + "codeCommune": "2B050", + "libelleAcheminement": "CALVI", + "nomCommune": "CALVI" }, { - "codePostal": "04140", - "codeCommune": "04203", - "libelleAcheminement": "SELONNET", - "nomCommune": "SELONNET" + "codePostal": "20235", + "codeCommune": "2B059", + "libelleAcheminement": "CANAVAGGIA", + "nomCommune": "CANAVAGGIA" }, { - "codePostal": "04330", - "codeCommune": "04204", - "libelleAcheminement": "SENEZ", - "nomCommune": "SENEZ" + "codePostal": "20212", + "codeCommune": "2B078", + "libelleAcheminement": "CASTELLARE DI MERCURIO", + "nomCommune": "CASTELLARE DI MERCURIO" }, { - "codePostal": "04140", - "codeCommune": "04205", - "libelleAcheminement": "SEYNE LES ALPES", - "nomCommune": "SEYNE" + "codePostal": "20235", + "codeCommune": "2B079", + "libelleAcheminement": "CASTELLO DI ROSTINO", + "nomCommune": "CASTELLO DI ROSTINO" }, { - "codePostal": "04150", - "codeCommune": "04208", - "libelleAcheminement": "SIMIANE LA ROTONDE", - "nomCommune": "SIMIANE LA ROTONDE" + "codePostal": "20218", + "codeCommune": "2B080", + "libelleAcheminement": "CASTIFAO", + "nomCommune": "CASTIFAO" }, { - "codePostal": "04290", - "codeCommune": "04211", - "libelleAcheminement": "SOURRIBES", - "nomCommune": "SOURRIBES" + "codePostal": "20238", + "codeCommune": "2B086", + "libelleAcheminement": "CENTURI", + "nomCommune": "CENTURI" }, { - "codePostal": "04380", - "codeCommune": "04217", - "libelleAcheminement": "THOARD", - "nomCommune": "THOARD" + "codePostal": "20221", + "codeCommune": "2B087", + "libelleAcheminement": "CERVIONE", + "nomCommune": "CERVIONE" }, { - "codePostal": "04170", - "codeCommune": "04219", - "libelleAcheminement": "THORAME HAUTE", - "nomCommune": "THORAME HAUTE" + "codePostal": "20220", + "codeCommune": "2B093", + "libelleAcheminement": "CORBARA", + "nomCommune": "CORBARA" }, { - "codePostal": "04170", - "codeCommune": "04219", - "libelleAcheminement": "THORAME HAUTE", - "nomCommune": "THORAME HAUTE" + "codePostal": "20256", + "codeCommune": "2B093", + "libelleAcheminement": "CORBARA", + "nomCommune": "CORBARA" }, { - "codePostal": "04240", - "codeCommune": "04224", - "libelleAcheminement": "UBRAYE", - "nomCommune": "UBRAYE" + "codePostal": "20226", + "codeCommune": "2B097", + "libelleAcheminement": "COSTA", + "nomCommune": "COSTA" }, { - "codePostal": "04400", - "codeCommune": "04226", - "libelleAcheminement": "UVERNET FOURS", - "nomCommune": "UVERNET FOURS" + "codePostal": "20275", + "codeCommune": "2B107", + "libelleAcheminement": "ERSA", + "nomCommune": "ERSA" }, { - "codePostal": "04200", - "codeCommune": "04231", - "libelleAcheminement": "VALERNES", - "nomCommune": "VALERNES" + "codePostal": "20253", + "codeCommune": "2B109", + "libelleAcheminement": "FARINOLE", + "nomCommune": "FARINOLE" }, { - "codePostal": "05350", - "codeCommune": "05007", - "libelleAcheminement": "ARVIEUX", - "nomCommune": "ARVIEUX" + "codePostal": "20240", + "codeCommune": "2B123", + "libelleAcheminement": "GHISONACCIA", + "nomCommune": "GHISONACCIA" }, { - "codePostal": "05100", - "codeCommune": "05023", - "libelleAcheminement": "BRIANCON", - "nomCommune": "BRIANCON" + "codePostal": "20240", + "codeCommune": "2B123", + "libelleAcheminement": "GHISONACCIA", + "nomCommune": "GHISONACCIA" }, { - "codePostal": "05500", - "codeCommune": "05025", - "libelleAcheminement": "BUISSARD", - "nomCommune": "BUISSARD" + "codePostal": "20227", + "codeCommune": "2B124", + "libelleAcheminement": "GHISONI", + "nomCommune": "GHISONI" }, { - "codePostal": "05100", - "codeCommune": "05027", - "libelleAcheminement": "CERVIERES", - "nomCommune": "CERVIERES" + "codePostal": "20251", + "codeCommune": "2B126", + "libelleAcheminement": "GIUNCAGGIO", + "nomCommune": "GIUNCAGGIO" }, { - "codePostal": "05260", - "codeCommune": "05032", - "libelleAcheminement": "CHAMPOLEON", - "nomCommune": "CHAMPOLEON" + "codePostal": "20243", + "codeCommune": "2B135", + "libelleAcheminement": "ISOLACCIO DI FIUMORBO", + "nomCommune": "ISOLACCIO DI FIUMORBO" }, { - "codePostal": "05700", - "codeCommune": "05033", - "libelleAcheminement": "CHANOUSSE", - "nomCommune": "CHANOUSSE" + "codePostal": "20218", + "codeCommune": "2B136", + "libelleAcheminement": "LAMA", + "nomCommune": "LAMA" }, { - "codePostal": "05380", - "codeCommune": "05036", - "libelleAcheminement": "CHATEAUROUX LES ALPES", - "nomCommune": "CHATEAUROUX LES ALPES" + "codePostal": "20290", + "codeCommune": "2B148", + "libelleAcheminement": "LUCCIANA", + "nomCommune": "LUCCIANA" }, { - "codePostal": "05500", - "codeCommune": "05039", - "libelleAcheminement": "AUBESSAGNE", - "nomCommune": "AUBESSAGNE" + "codePostal": "20229", + "codeCommune": "2B164", + "libelleAcheminement": "MONACIA D OREZZA", + "nomCommune": "MONACIA D OREZZA" }, { - "codePostal": "05500", - "codeCommune": "05039", - "libelleAcheminement": "AUBESSAGNE", - "nomCommune": "AUBESSAGNE" + "codePostal": "20290", + "codeCommune": "2B166", + "libelleAcheminement": "MONTE", + "nomCommune": "MONTE" }, { - "codePostal": "05230", - "codeCommune": "05040", - "libelleAcheminement": "CHORGES", - "nomCommune": "CHORGES" + "codePostal": "20214", + "codeCommune": "2B167", + "libelleAcheminement": "MONTEGROSSO", + "nomCommune": "MONTEGROSSO" }, { - "codePostal": "05200", - "codeCommune": "05045", - "libelleAcheminement": "CROTS", - "nomCommune": "CROTS" + "codePostal": "20229", + "codeCommune": "2B176", + "libelleAcheminement": "NOCARIO", + "nomCommune": "NOCARIO" }, { - "codePostal": "05200", - "codeCommune": "05046", - "libelleAcheminement": "EMBRUN", - "nomCommune": "EMBRUN" + "codePostal": "20217", + "codeCommune": "2B178", + "libelleAcheminement": "NONZA", + "nomCommune": "NONZA" }, { - "codePostal": "05300", - "codeCommune": "05053", - "libelleAcheminement": "GARDE COLOMBE", - "nomCommune": "GARDE COLOMBE" + "codePostal": "20217", + "codeCommune": "2B183", + "libelleAcheminement": "OGLIASTRO", + "nomCommune": "OGLIASTRO" }, { - "codePostal": "05500", - "codeCommune": "05054", - "libelleAcheminement": "LA FARE EN CHAMPSAUR", - "nomCommune": "LA FARE EN CHAMPSAUR" + "codePostal": "20259", + "codeCommune": "2B190", + "libelleAcheminement": "OLMI CAPPELLA", + "nomCommune": "OLMI CAPPELLA" }, { - "codePostal": "05310", - "codeCommune": "05058", - "libelleAcheminement": "FREISSINIERES", - "nomCommune": "FREISSINIERES" + "codePostal": "20234", + "codeCommune": "2B194", + "libelleAcheminement": "ORTALE", + "nomCommune": "ORTALE" }, { - "codePostal": "05400", - "codeCommune": "05060", - "libelleAcheminement": "FURMEYER", - "nomCommune": "FURMEYER" + "codePostal": "20290", + "codeCommune": "2B195", + "libelleAcheminement": "ORTIPORIO", + "nomCommune": "ORTIPORIO" }, { - "codePostal": "05800", - "codeCommune": "05062", - "libelleAcheminement": "LE GLAIZIL", - "nomCommune": "LE GLAIZIL" + "codePostal": "20226", + "codeCommune": "2B199", + "libelleAcheminement": "PALASCA", + "nomCommune": "PALASCA" }, { - "codePostal": "05140", - "codeCommune": "05066", - "libelleAcheminement": "LA HAUTE BEAUME", - "nomCommune": "LA HAUTE BEAUME" + "codePostal": "20213", + "codeCommune": "2B207", + "libelleAcheminement": "PENTA DI CASINCA", + "nomCommune": "PENTA DI CASINCA" }, { - "codePostal": "05110", - "codeCommune": "05078", - "libelleAcheminement": "MONETIER ALLEMONT", - "nomCommune": "MONETIER ALLEMONT" + "codePostal": "20229", + "codeCommune": "2B217", + "libelleAcheminement": "PIAZZOLE", + "nomCommune": "PIAZZOLE" }, { - "codePostal": "05140", - "codeCommune": "05080", - "libelleAcheminement": "MONTBRAND", - "nomCommune": "MONTBRAND" + "codePostal": "20229", + "codeCommune": "2B222", + "libelleAcheminement": "PIE D OREZZA", + "nomCommune": "PIE D OREZZA" }, { - "codePostal": "05600", - "codeCommune": "05082", - "libelleAcheminement": "MONT DAUPHIN", - "nomCommune": "MONT DAUPHIN" + "codePostal": "20218", + "codeCommune": "2B223", + "libelleAcheminement": "PIETRALBA", + "nomCommune": "PIETRALBA" }, { - "codePostal": "05150", - "codeCommune": "05086", - "libelleAcheminement": "MONTJAY", - "nomCommune": "MONTJAY" + "codePostal": "20234", + "codeCommune": "2B227", + "libelleAcheminement": "PIETRICAGGIO", + "nomCommune": "PIETRICAGGIO" }, { - "codePostal": "05400", - "codeCommune": "05087", - "libelleAcheminement": "MONTMAUR", - "nomCommune": "MONTMAUR" + "codePostal": "20242", + "codeCommune": "2B229", + "libelleAcheminement": "PIETROSO", + "nomCommune": "PIETROSO" }, { - "codePostal": "05150", - "codeCommune": "05091", - "libelleAcheminement": "MOYDANS", - "nomCommune": "MOYDANS" + "codePostal": "20220", + "codeCommune": "2B231", + "libelleAcheminement": "PIGNA", + "nomCommune": "PIGNA" }, { - "codePostal": "05000", - "codeCommune": "05092", - "libelleAcheminement": "NEFFES", - "nomCommune": "NEFFES" + "codePostal": "20234", + "codeCommune": "2B234", + "libelleAcheminement": "PIOBETTA", + "nomCommune": "PIOBETTA" }, { - "codePostal": "05100", - "codeCommune": "05093", - "libelleAcheminement": "NEVACHE", - "nomCommune": "NEVACHE" + "codePostal": "20215", + "codeCommune": "2B245", + "libelleAcheminement": "PORRI", + "nomCommune": "PORRI" }, { - "codePostal": "05200", - "codeCommune": "05098", - "libelleAcheminement": "LES ORRES", - "nomCommune": "LES ORRES" + "codePostal": "20290", + "codeCommune": "2B250", + "libelleAcheminement": "PRUNELLI DI CASACCONI", + "nomCommune": "PRUNELLI DI CASACCONI" }, { - "codePostal": "05400", - "codeCommune": "05112", - "libelleAcheminement": "RABOU", - "nomCommune": "RABOU" + "codePostal": "20248", + "codeCommune": "2B261", + "libelleAcheminement": "ROGLIANO", + "nomCommune": "ROGLIANO" }, { - "codePostal": "05400", - "codeCommune": "05131", - "libelleAcheminement": "ST AUBAN D OZE", - "nomCommune": "ST AUBAN D OZE" + "codePostal": "20242", + "codeCommune": "2B263", + "libelleAcheminement": "ROSPIGLIANI", + "nomCommune": "ROSPIGLIANI" }, { - "codePostal": "05330", - "codeCommune": "05133", - "libelleAcheminement": "ST CHAFFREY", - "nomCommune": "ST CHAFFREY" + "codePostal": "20218", + "codeCommune": "2B267", + "libelleAcheminement": "SALICETO", + "nomCommune": "SALICETO" }, { - "codePostal": "05600", - "codeCommune": "05134", - "libelleAcheminement": "ST CLEMENT SUR DURANCE", - "nomCommune": "ST CLEMENT SUR DURANCE" + "codePostal": "20213", + "codeCommune": "2B273", + "libelleAcheminement": "SCATA", + "nomCommune": "SCATA" }, { - "codePostal": "05140", - "codeCommune": "05154", - "libelleAcheminement": "ST PIERRE D ARGENCON", - "nomCommune": "ST PIERRE D ARGENCON" + "codePostal": "20213", + "codeCommune": "2B286", + "libelleAcheminement": "SORBO OCAGNANO", + "nomCommune": "SORBO OCAGNANO" }, { - "codePostal": "05350", - "codeCommune": "05157", - "libelleAcheminement": "ST VERAN", - "nomCommune": "ST VERAN" + "codePostal": "20217", + "codeCommune": "2B298", + "libelleAcheminement": "ST FLORENT", + "nomCommune": "ST FLORENT" }, { - "codePostal": "05240", - "codeCommune": "05161", - "libelleAcheminement": "LA SALLE LES ALPES", - "nomCommune": "LA SALLE LES ALPES" + "codePostal": "20246", + "codeCommune": "2B301", + "libelleAcheminement": "SAN GAVINO DI TENDA", + "nomCommune": "SAN GAVINO DI TENDA" }, { - "codePostal": "05160", - "codeCommune": "05163", - "libelleAcheminement": "LE SAUZE DU LAC", - "nomCommune": "LE SAUZE DU LAC" + "codePostal": "20230", + "codeCommune": "2B303", + "libelleAcheminement": "SAN GIULIANO", + "nomCommune": "SAN GIULIANO" }, { - "codePostal": "05160", - "codeCommune": "05164", - "libelleAcheminement": "SAVINES LE LAC", - "nomCommune": "SAVINES LE LAC" + "codePostal": "20200", + "codeCommune": "2B305", + "libelleAcheminement": "SAN MARTINO DI LOTA", + "nomCommune": "SAN MARTINO DI LOTA" }, { - "codePostal": "05700", - "codeCommune": "05165", - "libelleAcheminement": "SAVOURNON", - "nomCommune": "SAVOURNON" + "codePostal": "20246", + "codeCommune": "2B314", + "libelleAcheminement": "SANTO PIETRO DI TENDA", + "nomCommune": "SANTO PIETRO DI TENDA" }, { - "codePostal": "05700", - "codeCommune": "05167", - "libelleAcheminement": "SIGOTTIER", - "nomCommune": "SIGOTTIER" + "codePostal": "20230", + "codeCommune": "2B317", + "libelleAcheminement": "SANTA REPARATA DI MORIANI", + "nomCommune": "SANTA REPARATA DI MORIANI" }, { - "codePostal": "05700", - "codeCommune": "05172", - "libelleAcheminement": "TRESCLEOUX", - "nomCommune": "TRESCLEOUX" + "codePostal": "20230", + "codeCommune": "2B318", + "libelleAcheminement": "TAGLIO ISOLACCIO", + "nomCommune": "TAGLIO ISOLACCIO" }, { - "codePostal": "05300", - "codeCommune": "05178", - "libelleAcheminement": "VENTAVON", - "nomCommune": "VENTAVON" + "codePostal": "20219", + "codeCommune": "2B354", + "libelleAcheminement": "VIVARIO", + "nomCommune": "VIVARIO" }, { - "codePostal": "05120", - "codeCommune": "05180", - "libelleAcheminement": "LES VIGNEAUX", - "nomCommune": "LES VIGNEAUX" + "codePostal": "20219", + "codeCommune": "2B354", + "libelleAcheminement": "VIVARIO", + "nomCommune": "VIVARIO" }, { - "codePostal": "06390", - "codeCommune": "06014", - "libelleAcheminement": "BENDEJUN", - "nomCommune": "BENDEJUN" + "codePostal": "20272", + "codeCommune": "2B356", + "libelleAcheminement": "ZALANA", + "nomCommune": "ZALANA" }, { - "codePostal": "06470", - "codeCommune": "06016", - "libelleAcheminement": "BEUIL", - "nomCommune": "BEUIL" + "codePostal": "20272", + "codeCommune": "2B364", + "libelleAcheminement": "ZUANI", + "nomCommune": "ZUANI" }, { - "codePostal": "06410", - "codeCommune": "06018", - "libelleAcheminement": "BIOT", - "nomCommune": "BIOT" + "codePostal": "30670", + "codeCommune": "30004", + "libelleAcheminement": "AIGUES VIVES", + "nomCommune": "AIGUES VIVES" }, { - "codePostal": "06440", - "codeCommune": "06019", - "libelleAcheminement": "BLAUSASC", - "nomCommune": "BLAUSASC" + "codePostal": "30140", + "codeCommune": "30010", + "libelleAcheminement": "ANDUZE", + "nomCommune": "ANDUZE" }, { - "codePostal": "06510", - "codeCommune": "06022", - "libelleAcheminement": "BOUYON", - "nomCommune": "BOUYON" + "codePostal": "30120", + "codeCommune": "30016", + "libelleAcheminement": "ARRE", + "nomCommune": "ARRE" }, { - "codePostal": "06400", - "codeCommune": "06029", - "libelleAcheminement": "CANNES", - "nomCommune": "CANNES" + "codePostal": "30250", + "codeCommune": "30019", + "libelleAcheminement": "AUBAIS", + "nomCommune": "AUBAIS" }, { - "codePostal": "06110", - "codeCommune": "06030", - "libelleAcheminement": "LE CANNET", - "nomCommune": "LE CANNET" + "codePostal": "30430", + "codeCommune": "30029", + "libelleAcheminement": "BARJAC", + "nomCommune": "BARJAC" }, { - "codePostal": "06110", - "codeCommune": "06030", - "libelleAcheminement": "LE CANNET", - "nomCommune": "LE CANNET" + "codePostal": "30330", + "codeCommune": "30031", + "libelleAcheminement": "LA BASTIDE D ENGRAS", + "nomCommune": "LA BASTIDE D ENGRAS" }, { - "codePostal": "06670", - "codeCommune": "06034", - "libelleAcheminement": "CASTAGNIERS", - "nomCommune": "CASTAGNIERS" + "codePostal": "30640", + "codeCommune": "30033", + "libelleAcheminement": "BEAUVOISIN", + "nomCommune": "BEAUVOISIN" }, { - "codePostal": "06620", - "codeCommune": "06041", - "libelleAcheminement": "CIPIERES", - "nomCommune": "CIPIERES" + "codePostal": "30120", + "codeCommune": "30038", + "libelleAcheminement": "BEZ ET ESPARON", + "nomCommune": "BEZ ET ESPARON" }, { - "codePostal": "06670", - "codeCommune": "06046", - "libelleAcheminement": "COLOMARS", - "nomCommune": "COLOMARS" + "codePostal": "30450", + "codeCommune": "30044", + "libelleAcheminement": "BONNEVAUX", + "nomCommune": "BONNEVAUX" }, { - "codePostal": "06510", - "codeCommune": "06047", - "libelleAcheminement": "CONSEGUDES", - "nomCommune": "CONSEGUDES" + "codePostal": "30190", + "codeCommune": "30046", + "libelleAcheminement": "BOUCOIRAN ET NOZIERES", + "nomCommune": "BOUCOIRAN ET NOZIERES" }, { - "codePostal": "06360", - "codeCommune": "06059", - "libelleAcheminement": "EZE", - "nomCommune": "EZE" + "codePostal": "30580", + "codeCommune": "30056", + "libelleAcheminement": "LA BRUGUIERE", + "nomCommune": "LA BRUGUIERE" }, { - "codePostal": "06260", - "codeCommune": "06076", - "libelleAcheminement": "LIEUCHE", - "nomCommune": "LIEUCHE" + "codePostal": "30190", + "codeCommune": "30061", + "libelleAcheminement": "LA CALMETTE", + "nomCommune": "LA CALMETTE" }, { - "codePostal": "06440", - "codeCommune": "06077", - "libelleAcheminement": "LUCERAM", - "nomCommune": "LUCERAM" + "codePostal": "30420", + "codeCommune": "30062", + "libelleAcheminement": "CALVISSON", + "nomCommune": "CALVISSON" }, { - "codePostal": "06210", - "codeCommune": "06079", - "libelleAcheminement": "MANDELIEU LA NAPOULE", - "nomCommune": "MANDELIEU LA NAPOULE" + "codePostal": "30350", + "codeCommune": "30071", + "libelleAcheminement": "CASSAGNOLES", + "nomCommune": "CASSAGNOLES" }, { - "codePostal": "06910", - "codeCommune": "06081", - "libelleAcheminement": "LE MAS", - "nomCommune": "LE MAS" + "codePostal": "30210", + "codeCommune": "30073", + "libelleAcheminement": "CASTILLON DU GARD", + "nomCommune": "CASTILLON DU GARD" }, { - "codePostal": "06710", - "codeCommune": "06082", - "libelleAcheminement": "MASSOINS", - "nomCommune": "MASSOINS" + "codePostal": "30200", + "codeCommune": "30084", + "libelleAcheminement": "CODOLET", + "nomCommune": "CODOLET" }, { - "codePostal": "06200", - "codeCommune": "06088", - "libelleAcheminement": "NICE", - "nomCommune": "NICE" + "codePostal": "30460", + "codeCommune": "30087", + "libelleAcheminement": "COLOGNAC", + "nomCommune": "COLOGNAC" }, { - "codePostal": "06440", - "codeCommune": "06091", - "libelleAcheminement": "PEILLE", - "nomCommune": "PEILLE" + "codePostal": "30300", + "codeCommune": "30089", + "libelleAcheminement": "COMPS", + "nomCommune": "COMPS" }, { - "codePostal": "06260", - "codeCommune": "06098", - "libelleAcheminement": "PUGET ROSTANG", - "nomCommune": "PUGET ROSTANG" + "codePostal": "30140", + "codeCommune": "30094", + "libelleAcheminement": "CORBES", + "nomCommune": "CORBES" }, { - "codePostal": "06260", - "codeCommune": "06101", - "libelleAcheminement": "RIGAUD", - "nomCommune": "RIGAUD" + "codePostal": "30260", + "codeCommune": "30098", + "libelleAcheminement": "CRESPIAN", + "nomCommune": "CRESPIAN" }, { - "codePostal": "06190", - "codeCommune": "06104", - "libelleAcheminement": "ROQUEBRUNE CAP MARTIN", - "nomCommune": "ROQUEBRUNE CAP MARTIN" + "codePostal": "30190", + "codeCommune": "30102", + "libelleAcheminement": "DIONS", + "nomCommune": "DIONS" }, { - "codePostal": "06190", - "codeCommune": "06104", - "libelleAcheminement": "ROQUEBRUNE CAP MARTIN", - "nomCommune": "ROQUEBRUNE CAP MARTIN" + "codePostal": "30390", + "codeCommune": "30103", + "libelleAcheminement": "DOMAZAN", + "nomCommune": "DOMAZAN" }, { - "codePostal": "06910", - "codeCommune": "06106", - "libelleAcheminement": "ROQUESTERON", - "nomCommune": "ROQUESTERON" + "codePostal": "30350", + "codeCommune": "30104", + "libelleAcheminement": "DOMESSARGUES", + "nomCommune": "DOMESSARGUES" }, { - "codePostal": "06260", - "codeCommune": "06115", - "libelleAcheminement": "ST ANTONIN", - "nomCommune": "ST ANTONIN" + "codePostal": "30170", + "codeCommune": "30106", + "libelleAcheminement": "DURFORT ET ST MARTIN DE SOSSENAC", + "nomCommune": "DURFORT ET ST MARTIN DE SOSSENAC" }, { - "codePostal": "06670", - "codeCommune": "06117", - "libelleAcheminement": "ST BLAISE", - "nomCommune": "ST BLAISE" + "codePostal": "30360", + "codeCommune": "30109", + "libelleAcheminement": "EUZET", + "nomCommune": "EUZET" }, { - "codePostal": "06660", - "codeCommune": "06120", - "libelleAcheminement": "ST ETIENNE DE TINEE", - "nomCommune": "ST ETIENNE DE TINEE" + "codePostal": "30700", + "codeCommune": "30110", + "libelleAcheminement": "FLAUX", + "nomCommune": "FLAUX" }, { - "codePostal": "06230", - "codeCommune": "06121", - "libelleAcheminement": "ST JEAN CAP FERRAT", - "nomCommune": "ST JEAN CAP FERRAT" + "codePostal": "30700", + "codeCommune": "30111", + "libelleAcheminement": "FOISSAC", + "nomCommune": "FOISSAC" }, { - "codePostal": "06670", - "codeCommune": "06126", - "libelleAcheminement": "ST MARTIN DU VAR", - "nomCommune": "ST MARTIN DU VAR" + "codePostal": "30580", + "codeCommune": "30113", + "libelleAcheminement": "FONS SUR LUSSAN", + "nomCommune": "FONS SUR LUSSAN" }, { - "codePostal": "06450", - "codeCommune": "06127", - "libelleAcheminement": "ST MARTIN VESUBIE", - "nomCommune": "ST MARTIN VESUBIE" + "codePostal": "30128", + "codeCommune": "30125", + "libelleAcheminement": "GARONS", + "nomCommune": "GARONS" }, { - "codePostal": "06420", - "codeCommune": "06129", - "libelleAcheminement": "ST SAUVEUR SUR TINEE", - "nomCommune": "ST SAUVEUR SUR TINEE" + "codePostal": "30980", + "codeCommune": "30138", + "libelleAcheminement": "LANGLADE", + "nomCommune": "LANGLADE" }, { - "codePostal": "06910", - "codeCommune": "06131", - "libelleAcheminement": "SALLAGRIFFON", - "nomCommune": "SALLAGRIFFON" + "codePostal": "30210", + "codeCommune": "30145", + "libelleAcheminement": "LEDENON", + "nomCommune": "LEDENON" }, { - "codePostal": "06590", - "codeCommune": "06138", - "libelleAcheminement": "THEOULE SUR MER", - "nomCommune": "THEOULE SUR MER" + "codePostal": "30140", + "codeCommune": "30162", + "libelleAcheminement": "MASSILLARGUES ATTUECH", + "nomCommune": "MASSILLARGUES ATTUECH" }, { - "codePostal": "06710", - "codeCommune": "06143", - "libelleAcheminement": "TOUET SUR VAR", - "nomCommune": "TOUET SUR VAR" + "codePostal": "30430", + "codeCommune": "30164", + "libelleAcheminement": "MEJANNES LE CLAP", + "nomCommune": "MEJANNES LE CLAP" }, { - "codePostal": "06420", - "codeCommune": "06146", - "libelleAcheminement": "TOURNEFORT", - "nomCommune": "TOURNEFORT" + "codePostal": "30630", + "codeCommune": "30175", + "libelleAcheminement": "MONTCLUS", + "nomCommune": "MONTCLUS" }, { - "codePostal": "06140", - "codeCommune": "06148", - "libelleAcheminement": "TOURRETTES SUR LOUP", - "nomCommune": "TOURRETTES SUR LOUP" + "codePostal": "30190", + "codeCommune": "30180", + "libelleAcheminement": "MONTIGNARGUES", + "nomCommune": "MONTIGNARGUES" }, { - "codePostal": "06220", - "codeCommune": "06155", - "libelleAcheminement": "VALLAURIS", - "nomCommune": "VALLAURIS" + "codePostal": "30000", + "codeCommune": "30189", + "libelleAcheminement": "NIMES", + "nomCommune": "NIMES" }, { - "codePostal": "06470", - "codeCommune": "06160", - "libelleAcheminement": "VILLENEUVE D ENTRAUNES", - "nomCommune": "VILLENEUVE D ENTRAUNES" + "codePostal": "30260", + "codeCommune": "30192", + "libelleAcheminement": "ORTHOUX SERIGNAC QUILHAN", + "nomCommune": "ORTHOUX SERIGNAC QUILHAN" }, { - "codePostal": "07200", - "codeCommune": "07002", - "libelleAcheminement": "AILHON", - "nomCommune": "AILHON" + "codePostal": "30330", + "codeCommune": "30196", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "07100", - "codeCommune": "07010", - "libelleAcheminement": "ANNONAY", - "nomCommune": "ANNONAY" + "codePostal": "30750", + "codeCommune": "30213", + "libelleAcheminement": "REVENS", + "nomCommune": "REVENS" }, { - "codePostal": "07410", - "codeCommune": "07014", - "libelleAcheminement": "ARLEBOSC", - "nomCommune": "ARLEBOSC" + "codePostal": "30160", + "codeCommune": "30216", + "libelleAcheminement": "ROBIAC ROCHESSADOULE", + "nomCommune": "ROBIAC ROCHESSADOULE" }, { - "codePostal": "07110", - "codeCommune": "07029", - "libelleAcheminement": "BEAUMONT", - "nomCommune": "BEAUMONT" + "codePostal": "30120", + "codeCommune": "30219", + "libelleAcheminement": "ROGUES", + "nomCommune": "ROGUES" }, { - "codePostal": "07340", - "codeCommune": "07036", - "libelleAcheminement": "BOGY", - "nomCommune": "BOGY" + "codePostal": "30200", + "codeCommune": "30225", + "libelleAcheminement": "SABRAN", + "nomCommune": "SABRAN" }, { - "codePostal": "07410", - "codeCommune": "07039", - "libelleAcheminement": "BOZAS", - "nomCommune": "BOZAS" + "codePostal": "30630", + "codeCommune": "30230", + "libelleAcheminement": "ST ANDRE DE ROQUEPERTUIS", + "nomCommune": "ST ANDRE DE ROQUEPERTUIS" }, { - "codePostal": "07340", - "codeCommune": "07044", - "libelleAcheminement": "BROSSAINC", - "nomCommune": "BROSSAINC" + "codePostal": "30350", + "codeCommune": "30234", + "libelleAcheminement": "ST BENEZET", + "nomCommune": "ST BENEZET" }, { - "codePostal": "07140", - "codeCommune": "07050", - "libelleAcheminement": "CHAMBONAS", - "nomCommune": "CHAMBONAS" + "codePostal": "30440", + "codeCommune": "30238", + "libelleAcheminement": "ST BRESSON", + "nomCommune": "ST BRESSON" }, { - "codePostal": "07340", - "codeCommune": "07051", - "libelleAcheminement": "CHAMPAGNE", - "nomCommune": "CHAMPAGNE" + "codePostal": "30110", + "codeCommune": "30239", + "libelleAcheminement": "STE CECILE D ANDORGE", + "nomCommune": "STE CECILE D ANDORGE" }, { - "codePostal": "07230", - "codeCommune": "07053", - "libelleAcheminement": "CHANDOLAS", - "nomCommune": "CHANDOLAS" + "codePostal": "30200", + "codeCommune": "30251", + "libelleAcheminement": "ST ETIENNE DES SORTS", + "nomCommune": "ST ETIENNE DES SORTS" }, { - "codePostal": "07800", - "codeCommune": "07055", - "libelleAcheminement": "CHARMES SUR RHONE", - "nomCommune": "CHARMES SUR RHONE" + "codePostal": "30360", + "codeCommune": "30261", + "libelleAcheminement": "ST HIPPOLYTE DE CATON", + "nomCommune": "ST HIPPOLYTE DE CATON" }, { - "codePostal": "07110", - "codeCommune": "07058", - "libelleAcheminement": "CHASSIERS", - "nomCommune": "CHASSIERS" + "codePostal": "30330", + "codeCommune": "30279", + "libelleAcheminement": "ST LAURENT LA VERNEDE", + "nomCommune": "ST LAURENT LA VERNEDE" }, { - "codePostal": "07130", - "codeCommune": "07059", - "libelleAcheminement": "CHATEAUBOURG", - "nomCommune": "CHATEAUBOURG" + "codePostal": "30730", + "codeCommune": "30281", + "libelleAcheminement": "ST MAMERT DU GARD", + "nomCommune": "ST MAMERT DU GARD" }, { - "codePostal": "07110", - "codeCommune": "07062", - "libelleAcheminement": "CHAZEAUX", - "nomCommune": "CHAZEAUX" + "codePostal": "30520", + "codeCommune": "30284", + "libelleAcheminement": "ST MARTIN DE VALGALGUES", + "nomCommune": "ST MARTIN DE VALGALGUES" }, { - "codePostal": "07300", - "codeCommune": "07063", - "libelleAcheminement": "CHEMINAS", - "nomCommune": "CHEMINAS" + "codePostal": "30130", + "codeCommune": "30290", + "libelleAcheminement": "ST PAULET DE CAISSON", + "nomCommune": "ST PAULET DE CAISSON" }, { - "codePostal": "07210", - "codeCommune": "07066", - "libelleAcheminement": "CHOMERAC", - "nomCommune": "CHOMERAC" + "codePostal": "30140", + "codeCommune": "30298", + "libelleAcheminement": "ST SEBASTIEN D AIGREFEUILLE", + "nomCommune": "ST SEBASTIEN D AIGREFEUILLE" }, { - "codePostal": "07410", - "codeCommune": "07069", - "libelleAcheminement": "COLOMBIER LE VIEUX", - "nomCommune": "COLOMBIER LE VIEUX" + "codePostal": "30290", + "codeCommune": "30302", + "libelleAcheminement": "ST VICTOR LA COSTE", + "nomCommune": "ST VICTOR LA COSTE" }, { - "codePostal": "07270", - "codeCommune": "07073", - "libelleAcheminement": "LE CRESTET", - "nomCommune": "LE CRESTET" + "codePostal": "30760", + "codeCommune": "30304", + "libelleAcheminement": "SALAZAC", + "nomCommune": "SALAZAC" }, { - "codePostal": "07350", - "codeCommune": "07076", - "libelleAcheminement": "CRUAS", - "nomCommune": "CRUAS" + "codePostal": "30440", + "codeCommune": "30325", + "libelleAcheminement": "SUMENE", + "nomCommune": "SUMENE" }, { - "codePostal": "07260", - "codeCommune": "07081", - "libelleAcheminement": "DOMPNAC", - "nomCommune": "DOMPNAC" + "codePostal": "30140", + "codeCommune": "30330", + "libelleAcheminement": "TORNAC", + "nomCommune": "TORNAC" }, { - "codePostal": "07360", - "codeCommune": "07083", - "libelleAcheminement": "DUNIERE SUR EYRIEUX", - "nomCommune": "DUNIERE SUR EYRIEUX" + "codePostal": "30700", + "codeCommune": "30337", + "libelleAcheminement": "VALLABRIX", + "nomCommune": "VALLABRIX" }, { - "codePostal": "07270", - "codeCommune": "07085", - "libelleAcheminement": "EMPURANY", - "nomCommune": "EMPURANY" + "codePostal": "30570", + "codeCommune": "30339", + "libelleAcheminement": "VAL D AIGOUAL", + "nomCommune": "VAL D AIGOUAL" }, { - "codePostal": "07000", - "codeCommune": "07090", - "libelleAcheminement": "FLAVIAC", - "nomCommune": "FLAVIAC" + "codePostal": "30600", + "codeCommune": "30341", + "libelleAcheminement": "VAUVERT", + "nomCommune": "VAUVERT" }, { - "codePostal": "07200", - "codeCommune": "07091", - "libelleAcheminement": "FONS", - "nomCommune": "FONS" + "codePostal": "30330", + "codeCommune": "30355", + "libelleAcheminement": "ST PAUL LES FONTS", + "nomCommune": "ST PAUL LES FONTS" }, { - "codePostal": "07120", - "codeCommune": "07115", - "libelleAcheminement": "LABEAUME", - "nomCommune": "LABEAUME" + "codePostal": "31230", + "codeCommune": "31008", + "libelleAcheminement": "ANAN", + "nomCommune": "ANAN" }, { - "codePostal": "07530", - "codeCommune": "07120", - "libelleAcheminement": "LACHAMP RAPHAEL", - "nomCommune": "LACHAMP RAPHAEL" + "codePostal": "31510", + "codeCommune": "31009", + "libelleAcheminement": "ANTICHAN DE FRONTIGNES", + "nomCommune": "ANTICHAN DE FRONTIGNES" }, { - "codePostal": "07270", - "codeCommune": "07129", - "libelleAcheminement": "LAMASTRE", - "nomCommune": "LAMASTRE" + "codePostal": "31110", + "codeCommune": "31010", + "libelleAcheminement": "ANTIGNAC", + "nomCommune": "ANTIGNAC" }, { - "codePostal": "07140", - "codeCommune": "07147", - "libelleAcheminement": "MALARCE SUR LA THINES", - "nomCommune": "MALARCE SUR LA THINES" + "codePostal": "31160", + "codeCommune": "31020", + "libelleAcheminement": "ASPET", + "nomCommune": "ASPET" }, { - "codePostal": "07140", - "codeCommune": "07147", - "libelleAcheminement": "MALARCE SUR LA THINES", - "nomCommune": "MALARCE SUR LA THINES" + "codePostal": "31140", + "codeCommune": "31022", + "libelleAcheminement": "AUCAMVILLE", + "nomCommune": "AUCAMVILLE" }, { - "codePostal": "07140", - "codeCommune": "07148", - "libelleAcheminement": "MALBOSC", - "nomCommune": "MALBOSC" + "codePostal": "31260", + "codeCommune": "31030", + "libelleAcheminement": "AUSSEING", + "nomCommune": "AUSSEING" }, { - "codePostal": "07200", - "codeCommune": "07155", - "libelleAcheminement": "MERCUER", - "nomCommune": "MERCUER" + "codePostal": "31210", + "codeCommune": "31031", + "libelleAcheminement": "AUSSON", + "nomCommune": "AUSSON" }, { - "codePostal": "07110", - "codeCommune": "07162", - "libelleAcheminement": "MONTREAL", - "nomCommune": "MONTREAL" + "codePostal": "31380", + "codeCommune": "31038", + "libelleAcheminement": "AZAS", + "nomCommune": "AZAS" }, { - "codePostal": "07360", - "codeCommune": "07167", - "libelleAcheminement": "LES OLLIERES SUR EYRIEUX", - "nomCommune": "LES OLLIERES SUR EYRIEUX" + "codePostal": "31110", + "codeCommune": "31042", + "libelleAcheminement": "BAGNERES DE LUCHON", + "nomCommune": "BAGNERES DE LUCHON" }, { - "codePostal": "07370", - "codeCommune": "07169", - "libelleAcheminement": "OZON", - "nomCommune": "OZON" + "codePostal": "31440", + "codeCommune": "31046", + "libelleAcheminement": "BAREN", + "nomCommune": "BAREN" }, { - "codePostal": "07300", - "codeCommune": "07177", - "libelleAcheminement": "PLATS", - "nomCommune": "PLATS" + "codePostal": "31700", + "codeCommune": "31056", + "libelleAcheminement": "BEAUZELLE", + "nomCommune": "BEAUZELLE" }, { - "codePostal": "07250", - "codeCommune": "07198", - "libelleAcheminement": "ROMPON", - "nomCommune": "ROMPON" + "codePostal": "31530", + "codeCommune": "31061", + "libelleAcheminement": "BELLEGARDE STE MARIE", + "nomCommune": "BELLEGARDE STE MARIE" }, { - "codePostal": "07790", - "codeCommune": "07205", - "libelleAcheminement": "ST ALBAN D AY", - "nomCommune": "ST ALBAN D AY" + "codePostal": "31390", + "codeCommune": "31071", + "libelleAcheminement": "BOIS DE LA PIERRE", + "nomCommune": "BOIS DE LA PIERRE" }, { - "codePostal": "07590", - "codeCommune": "07206", - "libelleAcheminement": "ST ALBAN EN MONTAGNE", - "nomCommune": "ST ALBAN EN MONTAGNE" + "codePostal": "31230", + "codeCommune": "31072", + "libelleAcheminement": "BOISSEDE", + "nomCommune": "BOISSEDE" }, { - "codePostal": "07120", - "codeCommune": "07207", - "libelleAcheminement": "ST ALBAN AURIOLLES", - "nomCommune": "ST ALBAN AURIOLLES" + "codePostal": "31440", + "codeCommune": "31085", + "libelleAcheminement": "BOUTX", + "nomCommune": "BOUTX" }, { - "codePostal": "07170", - "codeCommune": "07208", - "libelleAcheminement": "ST ANDEOL DE BERG", - "nomCommune": "ST ANDEOL DE BERG" + "codePostal": "31480", + "codeCommune": "31090", + "libelleAcheminement": "BRIGNEMONT", + "nomCommune": "BRIGNEMONT" }, { - "codePostal": "07460", - "codeCommune": "07211", - "libelleAcheminement": "ST ANDRE DE CRUZIERES", - "nomCommune": "ST ANDRE DE CRUZIERES" + "codePostal": "31150", + "codeCommune": "31091", + "libelleAcheminement": "BRUGUIERES", + "nomCommune": "BRUGUIERES" }, { - "codePostal": "07240", - "codeCommune": "07214", - "libelleAcheminement": "ST APOLLINAIRE DE RIAS", - "nomCommune": "ST APOLLINAIRE DE RIAS" + "codePostal": "31440", + "codeCommune": "31092", + "libelleAcheminement": "BURGALAYS", + "nomCommune": "BURGALAYS" }, { - "codePostal": "07160", - "codeCommune": "07222", - "libelleAcheminement": "ST CIERGE SOUS LE CHEYLARD", - "nomCommune": "ST CIERGE SOUS LE CHEYLARD" + "codePostal": "31560", + "codeCommune": "31099", + "libelleAcheminement": "CAIGNAC", + "nomCommune": "CAIGNAC" }, { - "codePostal": "07430", - "codeCommune": "07227", - "libelleAcheminement": "ST CYR", - "nomCommune": "ST CYR" + "codePostal": "31470", + "codeCommune": "31101", + "libelleAcheminement": "CAMBERNARD", + "nomCommune": "CAMBERNARD" }, { - "codePostal": "07580", - "codeCommune": "07242", - "libelleAcheminement": "ST GINEYS EN COIRON", - "nomCommune": "ST GINEYS EN COIRON" + "codePostal": "31460", + "codeCommune": "31105", + "libelleAcheminement": "CARAGOUDES", + "nomCommune": "CARAGOUDES" }, { - "codePostal": "07320", - "codeCommune": "07249", - "libelleAcheminement": "ST JEURE D ANDAURE", - "nomCommune": "ST JEURE D ANDAURE" + "codePostal": "31310", + "codeCommune": "31111", + "libelleAcheminement": "CASTAGNAC", + "nomCommune": "CASTAGNAC" }, { - "codePostal": "07240", - "codeCommune": "07257", - "libelleAcheminement": "ST JULIEN LE ROUX", - "nomCommune": "ST JULIEN LE ROUX" + "codePostal": "31260", + "codeCommune": "31112", + "libelleAcheminement": "CASTAGNEDE", + "nomCommune": "CASTAGNEDE" }, { - "codePostal": "07690", - "codeCommune": "07258", - "libelleAcheminement": "ST JULIEN VOCANCE", - "nomCommune": "ST JULIEN VOCANCE" + "codePostal": "31180", + "codeCommune": "31117", + "libelleAcheminement": "CASTELMAUROU", + "nomCommune": "CASTELMAUROU" }, { - "codePostal": "07590", - "codeCommune": "07262", - "libelleAcheminement": "ST LAURENT BAINS LAVAL D AURELLE", - "nomCommune": "ST LAURENT BAINS LAVAL D AURELLE" + "codePostal": "31110", + "codeCommune": "31123", + "libelleAcheminement": "CASTILLON DE LARBOUST", + "nomCommune": "CASTILLON DE LARBOUST" }, { - "codePostal": "07100", - "codeCommune": "07265", - "libelleAcheminement": "ST MARCEL LES ANNONAY", - "nomCommune": "ST MARCEL LES ANNONAY" + "codePostal": "31110", + "codeCommune": "31125", + "libelleAcheminement": "CATHERVIELLE", + "nomCommune": "CATHERVIELLE" }, { - "codePostal": "07140", - "codeCommune": "07266", - "libelleAcheminement": "STE MARGUERITE LAFIGERE", - "nomCommune": "STE MARGUERITE LAFIGERE" + "codePostal": "31440", + "codeCommune": "31139", + "libelleAcheminement": "CHAUM", + "nomCommune": "CHAUM" }, { - "codePostal": "07400", - "codeCommune": "07270", - "libelleAcheminement": "ST MARTIN SUR LAVEZON", - "nomCommune": "ST MARTIN SUR LAVEZON" + "codePostal": "31550", + "codeCommune": "31145", + "libelleAcheminement": "CINTEGABELLE", + "nomCommune": "CINTEGABELLE" }, { - "codePostal": "07400", - "codeCommune": "07270", - "libelleAcheminement": "ST MARTIN SUR LAVEZON", - "nomCommune": "ST MARTIN SUR LAVEZON" + "codePostal": "31110", + "codeCommune": "31146", + "libelleAcheminement": "CIRES", + "nomCommune": "CIRES" }, { - "codePostal": "07460", - "codeCommune": "07280", - "libelleAcheminement": "ST PAUL LE JEUNE", - "nomCommune": "ST PAUL LE JEUNE" + "codePostal": "31210", + "codeCommune": "31158", + "libelleAcheminement": "CUGURON", + "nomCommune": "CUGURON" }, { - "codePostal": "07130", - "codeCommune": "07281", - "libelleAcheminement": "ST PERAY", - "nomCommune": "ST PERAY" + "codePostal": "31280", + "codeCommune": "31163", + "libelleAcheminement": "DREMIL LAFAGE", + "nomCommune": "DREMIL LAFAGE" }, { - "codePostal": "07140", - "codeCommune": "07284", - "libelleAcheminement": "ST PIERRE ST JEAN", - "nomCommune": "ST PIERRE ST JEAN" + "codePostal": "31470", + "codeCommune": "31166", + "libelleAcheminement": "EMPEAUX", + "nomCommune": "EMPEAUX" }, { - "codePostal": "07580", - "codeCommune": "07287", - "libelleAcheminement": "ST PONS", - "nomCommune": "ST PONS" + "codePostal": "31420", + "codeCommune": "31168", + "libelleAcheminement": "EOUX", + "nomCommune": "EOUX" }, { - "codePostal": "07200", - "codeCommune": "07289", - "libelleAcheminement": "ST PRIVAT", - "nomCommune": "ST PRIVAT" + "codePostal": "31350", + "codeCommune": "31170", + "libelleAcheminement": "ESCANECRABE", + "nomCommune": "ESCANECRABE" }, { - "codePostal": "07270", - "codeCommune": "07290", - "libelleAcheminement": "ST PRIX", - "nomCommune": "ST PRIX" + "codePostal": "31420", + "codeCommune": "31172", + "libelleAcheminement": "ESPARRON", + "nomCommune": "ESPARRON" }, { - "codePostal": "07290", - "codeCommune": "07299", - "libelleAcheminement": "ST SYMPHORIEN DE MAHUN", - "nomCommune": "ST SYMPHORIEN DE MAHUN" + "codePostal": "31190", + "codeCommune": "31173", + "libelleAcheminement": "ESPERCE", + "nomCommune": "ESPERCE" }, { - "codePostal": "07130", - "codeCommune": "07316", - "libelleAcheminement": "SOYONS", - "nomCommune": "SOYONS" + "codePostal": "31460", + "codeCommune": "31179", + "libelleAcheminement": "LE FAGET", + "nomCommune": "LE FAGET" }, { - "codePostal": "07110", - "codeCommune": "07318", - "libelleAcheminement": "TAURIERS", - "nomCommune": "TAURIERS" + "codePostal": "31410", + "codeCommune": "31181", + "libelleAcheminement": "LE FAUGA", + "nomCommune": "LE FAUGA" }, { - "codePostal": "07400", - "codeCommune": "07319", - "libelleAcheminement": "LE TEIL", - "nomCommune": "LE TEIL" + "codePostal": "31150", + "codeCommune": "31182", + "libelleAcheminement": "FENOUILLET", + "nomCommune": "FENOUILLET" }, { - "codePostal": "07130", - "codeCommune": "07323", - "libelleAcheminement": "TOULAUD", - "nomCommune": "TOULAUD" + "codePostal": "31130", + "codeCommune": "31184", + "libelleAcheminement": "FLOURENS", + "nomCommune": "FLOURENS" }, { - "codePostal": "07110", - "codeCommune": "07327", - "libelleAcheminement": "UZER", - "nomCommune": "UZER" + "codePostal": "31450", + "codeCommune": "31192", + "libelleAcheminement": "FOURQUEVAUX", + "nomCommune": "FOURQUEVAUX" }, { - "codePostal": "07110", - "codeCommune": "07329", - "libelleAcheminement": "VALGORGE", - "nomCommune": "VALGORGE" + "codePostal": "31360", + "codeCommune": "31198", + "libelleAcheminement": "LE FRECHET", + "nomCommune": "LE FRECHET" }, { - "codePostal": "07140", - "codeCommune": "07334", - "libelleAcheminement": "LES VANS", - "nomCommune": "LES VANS" + "codePostal": "31480", + "codeCommune": "31209", + "libelleAcheminement": "GARAC", + "nomCommune": "GARAC" }, { - "codePostal": "07200", - "codeCommune": "07339", - "libelleAcheminement": "VESSEAUX", - "nomCommune": "VESSEAUX" + "codePostal": "31620", + "codeCommune": "31211", + "libelleAcheminement": "GARGAS", + "nomCommune": "GARGAS" }, { - "codePostal": "07690", - "codeCommune": "07347", - "libelleAcheminement": "VOCANCE", - "nomCommune": "VOCANCE" + "codePostal": "31590", + "codeCommune": "31215", + "libelleAcheminement": "GAURE", + "nomCommune": "GAURE" }, { - "codePostal": "07200", - "codeCommune": "07348", - "libelleAcheminement": "VOGUE", - "nomCommune": "VOGUE" + "codePostal": "31380", + "codeCommune": "31216", + "libelleAcheminement": "GEMIL", + "nomCommune": "GEMIL" }, { - "codePostal": "08130", - "codeCommune": "08006", - "libelleAcheminement": "ALLAND HUY ET SAUSSEUIL", - "nomCommune": "ALLAND HUY ET SAUSSEUIL" + "codePostal": "31110", + "codeCommune": "31221", + "libelleAcheminement": "GOUAUX DE LARBOUST", + "nomCommune": "GOUAUX DE LARBOUST" }, { - "codePostal": "08260", - "codeCommune": "08015", - "libelleAcheminement": "ANTHENY", - "nomCommune": "ANTHENY" + "codePostal": "31310", + "codeCommune": "31226", + "libelleAcheminement": "GOUZENS", + "nomCommune": "GOUZENS" }, { - "codePostal": "08250", - "codeCommune": "08017", - "libelleAcheminement": "APREMONT", - "nomCommune": "APREMONT" + "codePostal": "31430", + "codeCommune": "31229", + "libelleAcheminement": "GRATENS", + "nomCommune": "GRATENS" }, { - "codePostal": "08390", - "codeCommune": "08019", - "libelleAcheminement": "LES GRANDES ARMOISES", - "nomCommune": "LES GRANDES ARMOISES" + "codePostal": "31800", + "codeCommune": "31247", + "libelleAcheminement": "LABARTHE RIVIERE", + "nomCommune": "LABARTHE RIVIERE" }, { - "codePostal": "08390", - "codeCommune": "08020", - "libelleAcheminement": "LES PETITES ARMOISES", - "nomCommune": "LES PETITES ARMOISES" + "codePostal": "31860", + "codeCommune": "31248", + "libelleAcheminement": "LABARTHE SUR LEZE", + "nomCommune": "LABARTHE SUR LEZE" }, { - "codePostal": "08090", - "codeCommune": "08022", - "libelleAcheminement": "ARREUX", - "nomCommune": "ARREUX" + "codePostal": "31600", + "codeCommune": "31253", + "libelleAcheminement": "LABASTIDETTE", + "nomCommune": "LABASTIDETTE" }, { - "codePostal": "08270", - "codeCommune": "08027", - "libelleAcheminement": "AUBONCOURT VAUZELLES", - "nomCommune": "AUBONCOURT VAUZELLES" + "codePostal": "31670", + "codeCommune": "31254", + "libelleAcheminement": "LABEGE", + "nomCommune": "LABEGE" }, { - "codePostal": "08260", - "codeCommune": "08037", - "libelleAcheminement": "AUVILLERS LES FORGES", - "nomCommune": "AUVILLERS LES FORGES" + "codePostal": "31510", + "codeCommune": "31255", + "libelleAcheminement": "LABROQUERE", + "nomCommune": "LABROQUERE" }, { - "codePostal": "08300", - "codeCommune": "08038", - "libelleAcheminement": "AVANCON", - "nomCommune": "AVANCON" + "codePostal": "31390", + "codeCommune": "31258", + "libelleAcheminement": "LACAUGNE", + "nomCommune": "LACAUGNE" }, { - "codePostal": "08430", - "codeCommune": "08041", - "libelleAcheminement": "BAALONS", - "nomCommune": "BAALONS" + "codePostal": "31120", + "codeCommune": "31259", + "libelleAcheminement": "LACROIX FALGARDE", + "nomCommune": "LACROIX FALGARDE" }, { - "codePostal": "08290", - "codeCommune": "08069", - "libelleAcheminement": "BLANCHEFOSSE ET BAY", - "nomCommune": "BLANCHEFOSSE ET BAY" + "codePostal": "31360", + "codeCommune": "31260", + "libelleAcheminement": "LAFFITE TOUPIERE", + "nomCommune": "LAFFITE TOUPIERE" }, { - "codePostal": "08240", - "codeCommune": "08075", - "libelleAcheminement": "BOULT AUX BOIS", - "nomCommune": "BOULT AUX BOIS" + "codePostal": "31290", + "codeCommune": "31262", + "libelleAcheminement": "LAGARDE", + "nomCommune": "LAGARDE" }, { - "codePostal": "08410", - "codeCommune": "08076", - "libelleAcheminement": "BOULZICOURT", - "nomCommune": "BOULZICOURT" + "codePostal": "31370", + "codeCommune": "31266", + "libelleAcheminement": "LAHAGE", + "nomCommune": "LAHAGE" }, { - "codePostal": "08140", - "codeCommune": "08083", - "libelleAcheminement": "BREVILLY", - "nomCommune": "BREVILLY" + "codePostal": "31310", + "codeCommune": "31272", + "libelleAcheminement": "LAPEYRERE", + "nomCommune": "LAPEYRERE" }, { - "codePostal": "08240", - "codeCommune": "08086", - "libelleAcheminement": "BRIQUENAY", - "nomCommune": "BRIQUENAY" + "codePostal": "31140", + "codeCommune": "31282", + "libelleAcheminement": "LAUNAGUET", + "nomCommune": "LAUNAGUET" }, { - "codePostal": "08260", - "codeCommune": "08094", - "libelleAcheminement": "CERNION", - "nomCommune": "CERNION" + "codePostal": "31580", + "codeCommune": "31289", + "libelleAcheminement": "LECUSSAN", + "nomCommune": "LECUSSAN" }, { - "codePostal": "08430", - "codeCommune": "08095", - "libelleAcheminement": "CHAGNY", - "nomCommune": "CHAGNY" + "codePostal": "31150", + "codeCommune": "31293", + "libelleAcheminement": "LESPINASSE", + "nomCommune": "LESPINASSE" }, { - "codePostal": "08600", - "codeCommune": "08106", - "libelleAcheminement": "CHARNOIS", - "nomCommune": "CHARNOIS" + "codePostal": "31350", + "codeCommune": "31295", + "libelleAcheminement": "LESPUGUE", + "nomCommune": "LESPUGUE" }, { - "codePostal": "08360", - "codeCommune": "08107", - "libelleAcheminement": "CHATEAU PORCIEN", - "nomCommune": "CHATEAU PORCIEN" + "codePostal": "31600", + "codeCommune": "31299", + "libelleAcheminement": "LHERM", + "nomCommune": "LHERM" }, { - "codePostal": "08270", - "codeCommune": "08117", - "libelleAcheminement": "CHESNOIS AUBONCOURT", - "nomCommune": "CHESNOIS AUBONCOURT" + "codePostal": "31340", + "codeCommune": "31311", + "libelleAcheminement": "LA MAGDELAINE SUR TARN", + "nomCommune": "LA MAGDELAINE SUR TARN" }, { - "codePostal": "08260", - "codeCommune": "08121", - "libelleAcheminement": "CHILLY", - "nomCommune": "CHILLY" + "codePostal": "31540", + "codeCommune": "31329", + "libelleAcheminement": "MAURENS", + "nomCommune": "MAURENS" }, { - "codePostal": "08090", - "codeCommune": "08137", - "libelleAcheminement": "DAMOUZY", - "nomCommune": "DAMOUZY" + "codePostal": "31190", + "codeCommune": "31330", + "libelleAcheminement": "MAURESSAC", + "nomCommune": "MAURESSAC" }, { - "codePostal": "08140", - "codeCommune": "08145", - "libelleAcheminement": "DOUZY", - "nomCommune": "DOUZY" + "codePostal": "31410", + "codeCommune": "31334", + "libelleAcheminement": "MAUZAC", + "nomCommune": "MAUZAC" }, { - "codePostal": "08140", - "codeCommune": "08145", - "libelleAcheminement": "DOUZY", - "nomCommune": "DOUZY" + "codePostal": "31260", + "codeCommune": "31336", + "libelleAcheminement": "MAZERES SUR SALAT", + "nomCommune": "MAZERES SUR SALAT" }, { - "codePostal": "08150", - "codeCommune": "08149", - "libelleAcheminement": "L ECHELLE", - "nomCommune": "L ECHELLE" + "codePostal": "31440", + "codeCommune": "31337", + "libelleAcheminement": "MELLES", + "nomCommune": "MELLES" }, { - "codePostal": "08160", - "codeCommune": "08173", - "libelleAcheminement": "FLIZE", - "nomCommune": "FLIZE" + "codePostal": "31530", + "codeCommune": "31338", + "libelleAcheminement": "MENVILLE", + "nomCommune": "MENVILLE" }, { - "codePostal": "08240", - "codeCommune": "08176", - "libelleAcheminement": "FOSSE", - "nomCommune": "FOSSE" + "codePostal": "31530", + "codeCommune": "31339", + "libelleAcheminement": "MERENVIELLE", + "nomCommune": "MERENVIELLE" }, { - "codePostal": "08220", - "codeCommune": "08178", - "libelleAcheminement": "FRAILLICOURT", - "nomCommune": "FRAILLICOURT" + "codePostal": "31330", + "codeCommune": "31341", + "libelleAcheminement": "MERVILLE", + "nomCommune": "MERVILLE" }, { - "codePostal": "08600", - "codeCommune": "08183", - "libelleAcheminement": "FROMELENNES", - "nomCommune": "FROMELENNES" + "codePostal": "31190", + "codeCommune": "31345", + "libelleAcheminement": "MIREMONT", + "nomCommune": "MIREMONT" }, { - "codePostal": "08600", - "codeCommune": "08183", - "libelleAcheminement": "FROMELENNES", - "nomCommune": "FROMELENNES" + "codePostal": "31340", + "codeCommune": "31346", + "libelleAcheminement": "MIREPOIX SUR TARN", + "nomCommune": "MIREPOIX SUR TARN" }, { - "codePostal": "08260", - "codeCommune": "08189", - "libelleAcheminement": "GIRONDELLE", - "nomCommune": "GIRONDELLE" + "codePostal": "31530", + "codeCommune": "31356", + "libelleAcheminement": "MONTAIGUT SUR SAVE", + "nomCommune": "MONTAIGUT SUR SAVE" }, { - "codePostal": "08600", - "codeCommune": "08190", - "libelleAcheminement": "GIVET", - "nomCommune": "GIVET" + "codePostal": "31410", + "codeCommune": "31361", + "libelleAcheminement": "MONTAUT", + "nomCommune": "MONTAUT" }, { - "codePostal": "08190", - "codeCommune": "08195", - "libelleAcheminement": "GOMONT", - "nomCommune": "GOMONT" + "codePostal": "31430", + "codeCommune": "31370", + "libelleAcheminement": "MONTEGUT BOURJAC", + "nomCommune": "MONTEGUT BOURJAC" }, { - "codePostal": "08400", - "codeCommune": "08200", - "libelleAcheminement": "GRIVY LOISY", - "nomCommune": "GRIVY LOISY" + "codePostal": "31260", + "codeCommune": "31372", + "libelleAcheminement": "MONTESPAN", + "nomCommune": "MONTESPAN" }, { - "codePostal": "08090", - "codeCommune": "08206", - "libelleAcheminement": "HAM LES MOINES", - "nomCommune": "HAM LES MOINES" + "codePostal": "31290", + "codeCommune": "31377", + "libelleAcheminement": "MONTGAILLARD LAURAGAIS", + "nomCommune": "MONTGAILLARD LAURAGAIS" }, { - "codePostal": "08450", - "codeCommune": "08211", - "libelleAcheminement": "HARAUCOURT", - "nomCommune": "HARAUCOURT" + "codePostal": "31380", + "codeCommune": "31383", + "libelleAcheminement": "MONTJOIRE", + "nomCommune": "MONTJOIRE" }, { - "codePostal": "08240", - "codeCommune": "08215", - "libelleAcheminement": "HARRICOURT", - "nomCommune": "HARRICOURT" + "codePostal": "31380", + "codeCommune": "31388", + "libelleAcheminement": "MONTPITOL", + "nomCommune": "MONTPITOL" }, { - "codePostal": "08090", - "codeCommune": "08216", - "libelleAcheminement": "HAUDRECY", - "nomCommune": "HAUDRECY" + "codePostal": "31110", + "codeCommune": "31404", + "libelleAcheminement": "OO", + "nomCommune": "OO" }, { - "codePostal": "08800", - "codeCommune": "08218", - "libelleAcheminement": "LES HAUTES RIVIERES", - "nomCommune": "LES HAUTES RIVIERES" + "codePostal": "31380", + "codeCommune": "31407", + "libelleAcheminement": "PAULHAC", + "nomCommune": "PAULHAC" }, { - "codePostal": "08800", - "codeCommune": "08218", - "libelleAcheminement": "LES HAUTES RIVIERES", - "nomCommune": "LES HAUTES RIVIERES" + "codePostal": "31510", + "codeCommune": "31408", + "libelleAcheminement": "PAYSSOUS", + "nomCommune": "PAYSSOUS" }, { - "codePostal": "08430", - "codeCommune": "08228", - "libelleAcheminement": "LA HORGNE", - "nomCommune": "LA HORGNE" + "codePostal": "31350", + "codeCommune": "31412", + "libelleAcheminement": "PEGUILHAN", + "nomCommune": "PEGUILHAN" }, { - "codePostal": "08440", - "codeCommune": "08235", - "libelleAcheminement": "ISSANCOURT ET RUMEL", - "nomCommune": "ISSANCOURT ET RUMEL" + "codePostal": "31420", + "codeCommune": "31415", + "libelleAcheminement": "PEYROUZET", + "nomCommune": "PEYROUZET" }, { - "codePostal": "08430", - "codeCommune": "08236", - "libelleAcheminement": "JANDUN", - "nomCommune": "JANDUN" + "codePostal": "31210", + "codeCommune": "31426", + "libelleAcheminement": "POINTIS DE RIVIERE", + "nomCommune": "POINTIS DE RIVIERE" }, { - "codePostal": "08700", - "codeCommune": "08237", - "libelleAcheminement": "JOIGNY SUR MEUSE", - "nomCommune": "JOIGNY SUR MEUSE" + "codePostal": "31110", + "codeCommune": "31434", + "libelleAcheminement": "POUBEAU", + "nomCommune": "POUBEAU" }, { - "codePostal": "08460", - "codeCommune": "08243", - "libelleAcheminement": "LALOBBE", - "nomCommune": "LALOBBE" + "codePostal": "31370", + "codeCommune": "31435", + "libelleAcheminement": "POUCHARRAMET", + "nomCommune": "POUCHARRAMET" }, { - "codePostal": "08250", - "codeCommune": "08245", - "libelleAcheminement": "LANCON", - "nomCommune": "LANCON" + "codePostal": "31360", + "codeCommune": "31440", + "libelleAcheminement": "PROUPIARY", + "nomCommune": "PROUPIARY" }, { - "codePostal": "08430", - "codeCommune": "08248", - "libelleAcheminement": "LAUNOIS SUR VENCE", - "nomCommune": "LAUNOIS SUR VENCE" + "codePostal": "31290", + "codeCommune": "31453", + "libelleAcheminement": "RIEUMAJOU", + "nomCommune": "RIEUMAJOU" }, { - "codePostal": "08210", - "codeCommune": "08252", - "libelleAcheminement": "LETANNE", - "nomCommune": "LETANNE" + "codePostal": "31370", + "codeCommune": "31454", + "libelleAcheminement": "RIEUMES", + "nomCommune": "RIEUMES" }, { - "codePostal": "08150", - "codeCommune": "08257", - "libelleAcheminement": "LOGNY BOGNY", - "nomCommune": "LOGNY BOGNY" + "codePostal": "31160", + "codeCommune": "31461", + "libelleAcheminement": "ROUEDE", + "nomCommune": "ROUEDE" }, { - "codePostal": "08400", - "codeCommune": "08259", - "libelleAcheminement": "LONGWE", - "nomCommune": "LONGWE" + "codePostal": "31140", + "codeCommune": "31467", + "libelleAcheminement": "ST ALBAN", + "nomCommune": "ST ALBAN" }, { - "codePostal": "08150", - "codeCommune": "08260", - "libelleAcheminement": "LONNY", - "nomCommune": "LONNY" + "codePostal": "31430", + "codeCommune": "31469", + "libelleAcheminement": "ST ARAILLE", + "nomCommune": "ST ARAILLE" }, { - "codePostal": "08450", - "codeCommune": "08268", - "libelleAcheminement": "MAISONCELLE ET VILLERS", - "nomCommune": "MAISONCELLE ET VILLERS" + "codePostal": "31510", + "codeCommune": "31472", + "libelleAcheminement": "ST BERTRAND DE COMMINGES", + "nomCommune": "ST BERTRAND DE COMMINGES" }, { - "codePostal": "08370", - "codeCommune": "08276", - "libelleAcheminement": "MARGUT", - "nomCommune": "MARGUT" + "codePostal": "31600", + "codeCommune": "31475", + "libelleAcheminement": "ST CLAR DE RIVIERE", + "nomCommune": "ST CLAR DE RIVIERE" }, { - "codePostal": "08290", - "codeCommune": "08277", - "libelleAcheminement": "MARLEMONT", - "nomCommune": "MARLEMONT" + "codePostal": "31230", + "codeCommune": "31482", + "libelleAcheminement": "ST FRAJOU", + "nomCommune": "ST FRAJOU" }, { - "codePostal": "08110", - "codeCommune": "08291", - "libelleAcheminement": "MOGUES", - "nomCommune": "MOGUES" + "codePostal": "31410", + "codeCommune": "31486", + "libelleAcheminement": "ST HILAIRE", + "nomCommune": "ST HILAIRE" }, { - "codePostal": "08140", - "codeCommune": "08294", - "libelleAcheminement": "LA MONCELLE", - "nomCommune": "LA MONCELLE" + "codePostal": "31540", + "codeCommune": "31491", + "libelleAcheminement": "ST JULIA", + "nomCommune": "ST JULIA" }, { - "codePostal": "08220", - "codeCommune": "08307", - "libelleAcheminement": "MONTMEILLANT", - "nomCommune": "MONTMEILLANT" + "codePostal": "31350", + "codeCommune": "31493", + "libelleAcheminement": "ST LARY BOUJEAN", + "nomCommune": "ST LARY BOUJEAN" }, { - "codePostal": "08700", - "codeCommune": "08316", - "libelleAcheminement": "NEUFMANIL", - "nomCommune": "NEUFMANIL" + "codePostal": "31800", + "codeCommune": "31502", + "libelleAcheminement": "ST MARCET", + "nomCommune": "ST MARCET" }, { - "codePostal": "08450", - "codeCommune": "08317", - "libelleAcheminement": "LA NEUVILLE A MAIRE", - "nomCommune": "LA NEUVILLE A MAIRE" + "codePostal": "31350", + "codeCommune": "31510", + "libelleAcheminement": "ST PE DELBOSC", + "nomCommune": "ST PE DELBOSC" }, { - "codePostal": "08380", - "codeCommune": "08319", - "libelleAcheminement": "NEUVILLE LEZ BEAULIEU", - "nomCommune": "NEUVILLE LEZ BEAULIEU" + "codePostal": "31790", + "codeCommune": "31516", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "08310", - "codeCommune": "08320", - "libelleAcheminement": "NEUVILLE EN TOURNE A FUY", - "nomCommune": "LA NEUVILLE EN TOURNE A FUY" + "codePostal": "31410", + "codeCommune": "31517", + "libelleAcheminement": "ST SULPICE SUR LEZE", + "nomCommune": "ST SULPICE SUR LEZE" }, { - "codePostal": "08270", - "codeCommune": "08323", - "libelleAcheminement": "LA NEUVILLE LES WASIGNY", - "nomCommune": "LA NEUVILLE LES WASIGNY" + "codePostal": "31290", + "codeCommune": "31519", + "libelleAcheminement": "ST VINCENT", + "nomCommune": "ST VINCENT" }, { - "codePostal": "08400", - "codeCommune": "08325", - "libelleAcheminement": "NOIRVAL", - "nomCommune": "NOIRVAL" + "codePostal": "31370", + "codeCommune": "31520", + "libelleAcheminement": "SAJAS", + "nomCommune": "SAJAS" }, { - "codePostal": "08270", - "codeCommune": "08329", - "libelleAcheminement": "NOVION PORCIEN", - "nomCommune": "NOVION PORCIEN" + "codePostal": "31880", + "codeCommune": "31526", + "libelleAcheminement": "LA SALVETAT ST GILLES", + "nomCommune": "LA SALVETAT ST GILLES" }, { - "codePostal": "08350", - "codeCommune": "08331", - "libelleAcheminement": "NOYERS PONT MAUGIS", - "nomCommune": "NOYERS PONT MAUGIS" + "codePostal": "31460", + "codeCommune": "31527", + "libelleAcheminement": "LA SALVETAT LAURAGAIS", + "nomCommune": "LA SALVETAT LAURAGAIS" }, { - "codePostal": "08000", - "codeCommune": "08346", - "libelleAcheminement": "PRIX LES MEZIERES", - "nomCommune": "PRIX LES MEZIERES" + "codePostal": "31350", + "codeCommune": "31531", + "libelleAcheminement": "SARRECAVE", + "nomCommune": "SARRECAVE" }, { - "codePostal": "08600", - "codeCommune": "08353", - "libelleAcheminement": "RANCENNES", - "nomCommune": "RANCENNES" + "codePostal": "31510", + "codeCommune": "31542", + "libelleAcheminement": "SEILHAN", + "nomCommune": "SEILHAN" }, { - "codePostal": "08450", - "codeCommune": "08354", - "libelleAcheminement": "RAUCOURT ET FLABA", - "nomCommune": "RAUCOURT ET FLABA" + "codePostal": "31360", + "codeCommune": "31545", + "libelleAcheminement": "SEPX", + "nomCommune": "SEPX" }, { - "codePostal": "08220", - "codeCommune": "08366", - "libelleAcheminement": "ROCQUIGNY", - "nomCommune": "ROCQUIGNY" + "codePostal": "31600", + "codeCommune": "31547", + "libelleAcheminement": "SEYSSES", + "nomCommune": "SEYSSES" }, { - "codePostal": "08220", - "codeCommune": "08366", - "libelleAcheminement": "ROCQUIGNY", - "nomCommune": "ROCQUIGNY" + "codePostal": "31530", + "codeCommune": "31553", + "libelleAcheminement": "THIL", + "nomCommune": "THIL" }, { - "codePostal": "08220", - "codeCommune": "08366", - "libelleAcheminement": "ROCQUIGNY", - "nomCommune": "ROCQUIGNY" + "codePostal": "31100", + "codeCommune": "31555", + "libelleAcheminement": "TOULOUSE", + "nomCommune": "TOULOUSE" }, { - "codePostal": "08230", - "codeCommune": "08367", - "libelleAcheminement": "ROCROI", - "nomCommune": "ROCROI" + "codePostal": "31300", + "codeCommune": "31555", + "libelleAcheminement": "TOULOUSE", + "nomCommune": "TOULOUSE" }, { - "codePostal": "08220", - "codeCommune": "08372", - "libelleAcheminement": "RUBIGNY", - "nomCommune": "RUBIGNY" + "codePostal": "31110", + "codeCommune": "31559", + "libelleAcheminement": "TREBONS DE LUCHON", + "nomCommune": "TREBONS DE LUCHON" }, { - "codePostal": "08110", - "codeCommune": "08375", - "libelleAcheminement": "SACHY", - "nomCommune": "SACHY" + "codePostal": "31290", + "codeCommune": "31560", + "libelleAcheminement": "TREBONS SUR LA GRASSE", + "nomCommune": "TREBONS SUR LA GRASSE" }, { - "codePostal": "08310", - "codeCommune": "08378", - "libelleAcheminement": "ST CLEMENT A ARNES", - "nomCommune": "ST CLEMENT A ARNES" + "codePostal": "31800", + "codeCommune": "31565", + "libelleAcheminement": "VALENTINE", + "nomCommune": "VALENTINE" }, { - "codePostal": "08220", - "codeCommune": "08382", - "libelleAcheminement": "ST JEAN AUX BOIS", - "nomCommune": "ST JEAN AUX BOIS" + "codePostal": "31570", + "codeCommune": "31567", + "libelleAcheminement": "VALLESVILLES", + "nomCommune": "VALLESVILLES" }, { - "codePostal": "08130", - "codeCommune": "08387", - "libelleAcheminement": "ST LOUP TERRIER", - "nomCommune": "ST LOUP TERRIER" + "codePostal": "31250", + "codeCommune": "31569", + "libelleAcheminement": "VAUDREUILLE", + "nomCommune": "VAUDREUILLE" }, { - "codePostal": "08460", - "codeCommune": "08389", - "libelleAcheminement": "ST MARCEL", - "nomCommune": "ST MARCEL" + "codePostal": "31590", + "codeCommune": "31573", + "libelleAcheminement": "VERFEIL", + "nomCommune": "VERFEIL" }, { - "codePostal": "08430", - "codeCommune": "08395", - "libelleAcheminement": "ST PIERRE SUR VENCE", - "nomCommune": "ST PIERRE SUR VENCE" + "codePostal": "31810", + "codeCommune": "31574", + "libelleAcheminement": "VERNET", + "nomCommune": "VERNET" }, { - "codePostal": "08220", - "codeCommune": "08396", - "libelleAcheminement": "ST QUENTIN LE PETIT", - "nomCommune": "ST QUENTIN LE PETIT" + "codePostal": "31290", + "codeCommune": "31582", + "libelleAcheminement": "VILLEFRANCHE DE LAURAGAIS", + "nomCommune": "VILLEFRANCHE DE LAURAGAIS" }, { - "codePostal": "08160", - "codeCommune": "08400", - "libelleAcheminement": "SAPOGNE ET FEUCHERES", - "nomCommune": "SAPOGNE ET FEUCHERES" + "codePostal": "31330", + "codeCommune": "31592", + "libelleAcheminement": "LARRA", + "nomCommune": "LARRA" }, { - "codePostal": "08300", - "codeCommune": "08403", - "libelleAcheminement": "SAULT LES RETHEL", - "nomCommune": "SAULT LES RETHEL" + "codePostal": "32290", + "codeCommune": "32001", + "libelleAcheminement": "AIGNAN", + "nomCommune": "AIGNAN" }, { - "codePostal": "08150", - "codeCommune": "08408", - "libelleAcheminement": "SECHEVAL", - "nomCommune": "SECHEVAL" + "codePostal": "32270", + "codeCommune": "32012", + "libelleAcheminement": "AUBIET", + "nomCommune": "AUBIET" }, { - "codePostal": "08200", - "codeCommune": "08409", - "libelleAcheminement": "SEDAN", - "nomCommune": "SEDAN" + "codePostal": "32120", + "codeCommune": "32014", + "libelleAcheminement": "AUGNAX", + "nomCommune": "AUGNAX" }, { - "codePostal": "08220", - "codeCommune": "08418", - "libelleAcheminement": "SEVIGNY WALEPPE", - "nomCommune": "SEVIGNY WALEPPE" + "codePostal": "32400", + "codeCommune": "32017", + "libelleAcheminement": "AURENSAN", + "nomCommune": "AURENSAN" }, { - "codePostal": "08460", - "codeCommune": "08419", - "libelleAcheminement": "SIGNY L ABBAYE", - "nomCommune": "SIGNY L ABBAYE" + "codePostal": "32550", + "codeCommune": "32019", + "libelleAcheminement": "AUTERIVE", + "nomCommune": "AUTERIVE" }, { - "codePostal": "08430", - "codeCommune": "08422", - "libelleAcheminement": "SINGLY", - "nomCommune": "SINGLY" + "codePostal": "32290", + "codeCommune": "32022", + "libelleAcheminement": "AVERON BERGELLE", + "nomCommune": "AVERON BERGELLE" }, { - "codePostal": "08090", - "codeCommune": "08432", - "libelleAcheminement": "SURY", - "nomCommune": "SURY" + "codePostal": "32170", + "codeCommune": "32028", + "libelleAcheminement": "BARCUGNAN", + "nomCommune": "BARCUGNAN" }, { - "codePostal": "08240", - "codeCommune": "08437", - "libelleAcheminement": "TAILLY", - "nomCommune": "TAILLY" + "codePostal": "32170", + "codeCommune": "32034", + "libelleAcheminement": "BAZUGUES", + "nomCommune": "BAZUGUES" }, { - "codePostal": "08390", - "codeCommune": "08439", - "libelleAcheminement": "TANNAY", - "nomCommune": "TANNAY" + "codePostal": "32600", + "codeCommune": "32038", + "libelleAcheminement": "BEAUPUY", + "nomCommune": "BEAUPUY" }, { - "codePostal": "08190", - "codeCommune": "08451", - "libelleAcheminement": "LE THOUR", - "nomCommune": "LE THOUR" + "codePostal": "32730", + "codeCommune": "32039", + "libelleAcheminement": "BECCAS", + "nomCommune": "BECCAS" }, { - "codePostal": "08400", - "codeCommune": "08455", - "libelleAcheminement": "TOURCELLES CHAUMONT", - "nomCommune": "TOURCELLES CHAUMONT" + "codePostal": "32450", + "codeCommune": "32040", + "libelleAcheminement": "BEDECHAN", + "nomCommune": "BEDECHAN" }, { - "codePostal": "08250", - "codeCommune": "08464", - "libelleAcheminement": "VAUX LES MOURON", - "nomCommune": "VAUX LES MOURON" + "codePostal": "32300", + "codeCommune": "32042", + "libelleAcheminement": "BELLOC ST CLAMENS", + "nomCommune": "BELLOC ST CLAMENS" }, { - "codePostal": "08210", - "codeCommune": "08477", - "libelleAcheminement": "VILLERS DEVANT MOUZON", - "nomCommune": "VILLERS DEVANT MOUZON" + "codePostal": "32190", + "codeCommune": "32043", + "libelleAcheminement": "BELMONT", + "nomCommune": "BELMONT" }, { - "codePostal": "08430", - "codeCommune": "08482", - "libelleAcheminement": "VILLERS SUR LE MONT", - "nomCommune": "VILLERS SUR LE MONT" + "codePostal": "32730", + "codeCommune": "32050", + "libelleAcheminement": "BETPLAN", + "nomCommune": "BETPLAN" }, { - "codePostal": "08320", - "codeCommune": "08487", - "libelleAcheminement": "VIREUX WALLERAND", - "nomCommune": "VIREUX WALLERAND" + "codePostal": "32270", + "codeCommune": "32056", + "libelleAcheminement": "BLANQUEFORT", + "nomCommune": "BLANQUEFORT" }, { - "codePostal": "08400", - "codeCommune": "08489", - "libelleAcheminement": "VONCQ", - "nomCommune": "VONCQ" + "codePostal": "32410", + "codeCommune": "32059", + "libelleAcheminement": "BONAS", + "nomCommune": "BONAS" }, { - "codePostal": "08400", - "codeCommune": "08490", - "libelleAcheminement": "VOUZIERS", - "nomCommune": "VOUZIERS" + "codePostal": "32220", + "codeCommune": "32069", + "libelleAcheminement": "CADEILLAN", + "nomCommune": "CADEILLAN" }, { - "codePostal": "08350", - "codeCommune": "08491", - "libelleAcheminement": "VRIGNE AUX BOIS", - "nomCommune": "VRIGNE AUX BOIS" + "codePostal": "32190", + "codeCommune": "32072", + "libelleAcheminement": "CALLIAN", + "nomCommune": "CALLIAN" }, { - "codePostal": "08350", - "codeCommune": "08492", - "libelleAcheminement": "VRIGNE MEUSE", - "nomCommune": "VRIGNE MEUSE" + "codePostal": "32100", + "codeCommune": "32075", + "libelleAcheminement": "CASSAIGNE", + "nomCommune": "CASSAIGNE" }, { - "codePostal": "08270", - "codeCommune": "08499", - "libelleAcheminement": "WASIGNY", - "nomCommune": "WASIGNY" + "codePostal": "32450", + "codeCommune": "32076", + "libelleAcheminement": "CASTELNAU BARBARENS", + "nomCommune": "CASTELNAU BARBARENS" }, { - "codePostal": "08210", - "codeCommune": "08502", - "libelleAcheminement": "YONCQ", - "nomCommune": "YONCQ" + "codePostal": "32250", + "codeCommune": "32079", + "libelleAcheminement": "CASTELNAU D AUZAN LABARRERE", + "nomCommune": "CASTELNAU D AUZAN LABARRERE" }, { - "codePostal": "09200", - "codeCommune": "09008", - "libelleAcheminement": "ALOS", - "nomCommune": "ALOS" + "codePostal": "32380", + "codeCommune": "32084", + "libelleAcheminement": "CASTERON", + "nomCommune": "CASTERON" }, { - "codePostal": "09800", - "codeCommune": "09011", - "libelleAcheminement": "ANTRAS", - "nomCommune": "ANTRAS" + "codePostal": "32200", + "codeCommune": "32092", + "libelleAcheminement": "CATONVIELLE", + "nomCommune": "CATONVIELLE" }, { - "codePostal": "09400", - "codeCommune": "09015", - "libelleAcheminement": "ARIGNAC", - "nomCommune": "ARIGNAC" + "codePostal": "32150", + "codeCommune": "32096", + "libelleAcheminement": "CAZAUBON", + "nomCommune": "CAZAUBON" }, { - "codePostal": "09400", - "codeCommune": "09016", - "libelleAcheminement": "ARNAVE", - "nomCommune": "ARNAVE" + "codePostal": "32230", + "codeCommune": "32099", + "libelleAcheminement": "CAZAUX VILLECOMTAL", + "nomCommune": "CAZAUX VILLECOMTAL" }, { - "codePostal": "09120", - "codeCommune": "09021", - "libelleAcheminement": "ARTIX", - "nomCommune": "ARTIX" + "codePostal": "32600", + "codeCommune": "32105", + "libelleAcheminement": "CLERMONT SAVES", + "nomCommune": "CLERMONT SAVES" }, { - "codePostal": "09140", - "codeCommune": "09029", - "libelleAcheminement": "AULUS LES BAINS", - "nomCommune": "AULUS LES BAINS" + "codePostal": "32270", + "codeCommune": "32112", + "libelleAcheminement": "CRASTES", + "nomCommune": "CRASTES" }, { - "codePostal": "09700", - "codeCommune": "09040", - "libelleAcheminement": "LA BASTIDE DE LORDAT", - "nomCommune": "LA BASTIDE DE LORDAT" + "codePostal": "32300", + "codeCommune": "32114", + "libelleAcheminement": "CUELAS", + "nomCommune": "CUELAS" }, { - "codePostal": "09230", - "codeCommune": "09046", - "libelleAcheminement": "BEDEILLE", - "nomCommune": "BEDEILLE" + "codePostal": "32600", + "codeCommune": "32121", + "libelleAcheminement": "ENDOUFIELLE", + "nomCommune": "ENDOUFIELLE" }, { - "codePostal": "09100", - "codeCommune": "09056", - "libelleAcheminement": "BEZAC", - "nomCommune": "BEZAC" + "codePostal": "32380", + "codeCommune": "32129", + "libelleAcheminement": "ESTRAMIAC", + "nomCommune": "ESTRAMIAC" }, { - "codePostal": "09800", - "codeCommune": "09059", - "libelleAcheminement": "BONAC IRAZEIN", - "nomCommune": "BONAC IRAZEIN" + "codePostal": "32450", + "codeCommune": "32130", + "libelleAcheminement": "FAGET ABBATIAL", + "nomCommune": "FAGET ABBATIAL" }, { - "codePostal": "09350", - "codeCommune": "09061", - "libelleAcheminement": "LES BORDES SUR ARIZE", - "nomCommune": "LES BORDES SUR ARIZE" + "codePostal": "32340", + "codeCommune": "32131", + "libelleAcheminement": "FLAMARENS", + "nomCommune": "FLAMARENS" }, { - "codePostal": "09800", - "codeCommune": "09062", - "libelleAcheminement": "BORDES UCHENTEIN", - "nomCommune": "BORDES UCHENTEIN" + "codePostal": "32500", + "codeCommune": "32132", + "libelleAcheminement": "FLEURANCE", + "nomCommune": "FLEURANCE" }, { - "codePostal": "09310", - "codeCommune": "09064", - "libelleAcheminement": "BOUAN", - "nomCommune": "BOUAN" + "codePostal": "32160", + "codeCommune": "32136", + "libelleAcheminement": "GALIAX", + "nomCommune": "GALIAX" }, { - "codePostal": "09000", - "codeCommune": "09068", - "libelleAcheminement": "BURRET", - "nomCommune": "BURRET" + "codePostal": "32330", + "codeCommune": "32149", + "libelleAcheminement": "GONDRIN", + "nomCommune": "GONDRIN" }, { - "codePostal": "09400", - "codeCommune": "09077", - "libelleAcheminement": "CAPOULET ET JUNAC", - "nomCommune": "CAPOULET ET JUNAC" + "codePostal": "32270", + "codeCommune": "32157", + "libelleAcheminement": "L ISLE ARNE", + "nomCommune": "L ISLE ARNE" }, { - "codePostal": "09460", - "codeCommune": "09078", - "libelleAcheminement": "CARCANIERES", - "nomCommune": "CARCANIERES" + "codePostal": "32300", + "codeCommune": "32159", + "libelleAcheminement": "L ISLE DE NOE", + "nomCommune": "L ISLE DE NOE" }, { - "codePostal": "09130", - "codeCommune": "09079", - "libelleAcheminement": "CARLA BAYLE", - "nomCommune": "CARLA BAYLE" + "codePostal": "32230", + "codeCommune": "32164", + "libelleAcheminement": "JUILLAC", + "nomCommune": "JUILLAC" }, { - "codePostal": "09130", - "codeCommune": "09083", - "libelleAcheminement": "CASTERAS", - "nomCommune": "CASTERAS" + "codePostal": "32170", + "codeCommune": "32167", + "libelleAcheminement": "LAAS", + "nomCommune": "LAAS" }, { - "codePostal": "09400", - "codeCommune": "09092", - "libelleAcheminement": "CAZENAVE SERRES ET ALLENS", - "nomCommune": "CAZENAVE SERRES ET ALLENS" + "codePostal": "32300", + "codeCommune": "32172", + "libelleAcheminement": "LABEJAN", + "nomCommune": "LABEJAN" }, { - "codePostal": "09310", - "codeCommune": "09096", - "libelleAcheminement": "CHATEAU VERDUN", - "nomCommune": "CHATEAU VERDUN" + "codePostal": "32120", + "codeCommune": "32173", + "libelleAcheminement": "LABRIHE", + "nomCommune": "LABRIHE" }, { - "codePostal": "09230", - "codeCommune": "09098", - "libelleAcheminement": "CONTRAZY", - "nomCommune": "CONTRAZY" + "codePostal": "32230", + "codeCommune": "32174", + "libelleAcheminement": "LADEVEZE RIVIERE", + "nomCommune": "LADEVEZE RIVIERE" }, { - "codePostal": "09140", - "codeCommune": "09100", - "libelleAcheminement": "COUFLENS", - "nomCommune": "COUFLENS" + "codePostal": "32230", + "codeCommune": "32175", + "libelleAcheminement": "LADEVEZE VILLE", + "nomCommune": "LADEVEZE VILLE" }, { - "codePostal": "09140", - "codeCommune": "09100", - "libelleAcheminement": "COUFLENS", - "nomCommune": "COUFLENS" + "codePostal": "32130", + "codeCommune": "32182", + "libelleAcheminement": "LAHAS", + "nomCommune": "LAHAS" }, { - "codePostal": "09600", - "codeCommune": "09107", - "libelleAcheminement": "DUN", - "nomCommune": "DUN" + "codePostal": "32260", + "codeCommune": "32186", + "libelleAcheminement": "LAMAGUERE", + "nomCommune": "LAMAGUERE" }, { - "codePostal": "09800", - "codeCommune": "09111", - "libelleAcheminement": "ENGOMER", - "nomCommune": "ENGOMER" + "codePostal": "32500", + "codeCommune": "32188", + "libelleAcheminement": "LAMOTHE GOAS", + "nomCommune": "LAMOTHE GOAS" }, { - "codePostal": "09100", - "codeCommune": "09116", - "libelleAcheminement": "ESCOSSE", - "nomCommune": "ESCOSSE" + "codePostal": "32150", + "codeCommune": "32193", + "libelleAcheminement": "LAREE", + "nomCommune": "LAREE" }, { - "codePostal": "09420", - "codeCommune": "09118", - "libelleAcheminement": "ESPLAS DE SEROU", - "nomCommune": "ESPLAS DE SEROU" + "codePostal": "32160", + "codeCommune": "32199", + "libelleAcheminement": "LASSERRADE", + "nomCommune": "LASSERRADE" }, { - "codePostal": "09000", - "codeCommune": "09121", - "libelleAcheminement": "FERRIERES SUR ARIEGE", - "nomCommune": "FERRIERES SUR ARIEGE" + "codePostal": "32550", + "codeCommune": "32200", + "libelleAcheminement": "LASSERAN", + "nomCommune": "LASSERAN" }, { - "codePostal": "09000", - "codeCommune": "09122", - "libelleAcheminement": "FOIX", - "nomCommune": "FOIX" + "codePostal": "32810", + "codeCommune": "32207", + "libelleAcheminement": "LEBOULIN", + "nomCommune": "LEBOULIN" }, { - "codePostal": "09300", - "codeCommune": "09126", - "libelleAcheminement": "FREYCHENET", - "nomCommune": "FREYCHENET" + "codePostal": "32110", + "codeCommune": "32214", + "libelleAcheminement": "LOUBEDAT", + "nomCommune": "LOUBEDAT" }, { - "codePostal": "09290", - "codeCommune": "09127", - "libelleAcheminement": "GABRE", - "nomCommune": "GABRE" + "codePostal": "32310", + "codeCommune": "32230", + "libelleAcheminement": "MANSENCOME", + "nomCommune": "MANSENCOME" }, { - "codePostal": "09700", - "codeCommune": "09132", - "libelleAcheminement": "GAUDIES", - "nomCommune": "GAUDIES" + "codePostal": "32490", + "codeCommune": "32234", + "libelleAcheminement": "MARESTAING", + "nomCommune": "MARESTAING" }, { - "codePostal": "09400", - "codeCommune": "09133", - "libelleAcheminement": "GENAT", - "nomCommune": "GENAT" + "codePostal": "32700", + "codeCommune": "32241", + "libelleAcheminement": "MAS D AUVIGNON", + "nomCommune": "MAS D AUVIGNON" }, { - "codePostal": "09220", - "codeCommune": "09134", - "libelleAcheminement": "GESTIES", - "nomCommune": "GESTIES" + "codePostal": "32240", + "codeCommune": "32243", + "libelleAcheminement": "MAULEON D ARMAGNAC", + "nomCommune": "MAULEON D ARMAGNAC" }, { - "codePostal": "09120", - "codeCommune": "09137", - "libelleAcheminement": "GUDAS", - "nomCommune": "GUDAS" + "codePostal": "32380", + "codeCommune": "32248", + "libelleAcheminement": "MAUROUX", + "nomCommune": "MAUROUX" }, { - "codePostal": "09000", - "codeCommune": "09138", - "libelleAcheminement": "L HERM", - "nomCommune": "L HERM" + "codePostal": "32260", + "codeCommune": "32266", + "libelleAcheminement": "MONCORNEIL GRAZAN", + "nomCommune": "MONCORNEIL GRAZAN" }, { - "codePostal": "09700", - "codeCommune": "09146", - "libelleAcheminement": "JUSTINIAC", - "nomCommune": "JUSTINIAC" + "codePostal": "32120", + "codeCommune": "32269", + "libelleAcheminement": "MONFORT", + "nomCommune": "MONFORT" }, { - "codePostal": "09160", - "codeCommune": "09148", - "libelleAcheminement": "LACAVE", - "nomCommune": "LACAVE" + "codePostal": "32220", + "codeCommune": "32270", + "libelleAcheminement": "MONGAUSY", + "nomCommune": "MONGAUSY" }, { - "codePostal": "09400", - "codeCommune": "09152", - "libelleAcheminement": "LAPEGE", - "nomCommune": "LAPEGE" + "codePostal": "32140", + "codeCommune": "32280", + "libelleAcheminement": "MONT D ASTARAC", + "nomCommune": "MONT D ASTARAC" }, { - "codePostal": "09500", - "codeCommune": "09153", - "libelleAcheminement": "LAPENNE", - "nomCommune": "LAPENNE" + "codePostal": "32420", + "codeCommune": "32287", + "libelleAcheminement": "MONTIES", + "nomCommune": "MONTIES" }, { - "codePostal": "09600", - "codeCommune": "09157", - "libelleAcheminement": "LAROQUE D OLMES", - "nomCommune": "LAROQUE D OLMES" + "codePostal": "32270", + "codeCommune": "32298", + "libelleAcheminement": "NOUGAROULET", + "nomCommune": "NOUGAROULET" }, { - "codePostal": "09300", - "codeCommune": "09160", - "libelleAcheminement": "LAVELANET", - "nomCommune": "LAVELANET" + "codePostal": "32350", + "codeCommune": "32301", + "libelleAcheminement": "ORDAN LARROQUE", + "nomCommune": "ORDAN LARROQUE" }, { - "codePostal": "09700", - "codeCommune": "09170", - "libelleAcheminement": "LISSAC", - "nomCommune": "LISSAC" + "codePostal": "32230", + "codeCommune": "32303", + "libelleAcheminement": "PALLANNE", + "nomCommune": "PALLANNE" }, { - "codePostal": "09500", - "codeCommune": "09180", - "libelleAcheminement": "MANSES", - "nomCommune": "MANSES" + "codePostal": "32700", + "codeCommune": "32311", + "libelleAcheminement": "PERGAIN TAILLAC", + "nomCommune": "PERGAIN TAILLAC" }, { - "codePostal": "09270", - "codeCommune": "09185", - "libelleAcheminement": "MAZERES", - "nomCommune": "MAZERES" + "codePostal": "32340", + "codeCommune": "32314", + "libelleAcheminement": "PEYRECAVE", + "nomCommune": "PEYRECAVE" }, { - "codePostal": "09160", - "codeCommune": "09187", - "libelleAcheminement": "MERCENAC", - "nomCommune": "MERCENAC" + "codePostal": "32340", + "codeCommune": "32320", + "libelleAcheminement": "PLIEUX", + "nomCommune": "PLIEUX" }, { - "codePostal": "09400", - "codeCommune": "09188", - "libelleAcheminement": "MERCUS GARRABET", - "nomCommune": "MERCUS GARRABET" + "codePostal": "32290", + "codeCommune": "32325", + "libelleAcheminement": "POUYDRAGUIN", + "nomCommune": "POUYDRAGUIN" }, { - "codePostal": "09110", - "codeCommune": "09197", - "libelleAcheminement": "MONTAILLOU", - "nomCommune": "MONTAILLOU" + "codePostal": "32160", + "codeCommune": "32330", + "libelleAcheminement": "PRECHAC SUR ADOUR", + "nomCommune": "PRECHAC SUR ADOUR" }, { - "codePostal": "09200", - "codeCommune": "09201", - "libelleAcheminement": "MONTEGUT EN COUSERANS", - "nomCommune": "MONTEGUT EN COUSERANS" + "codePostal": "32220", + "codeCommune": "32336", + "libelleAcheminement": "PUYLAUSIC", + "nomCommune": "PUYLAUSIC" }, { - "codePostal": "09160", - "codeCommune": "09208", - "libelleAcheminement": "MONTGAUCH", - "nomCommune": "MONTGAUCH" + "codePostal": "32600", + "codeCommune": "32339", + "libelleAcheminement": "RAZENGUES", + "nomCommune": "RAZENGUES" }, { - "codePostal": "09000", - "codeCommune": "09210", - "libelleAcheminement": "MONTOULIEU", - "nomCommune": "MONTOULIEU" + "codePostal": "32320", + "codeCommune": "32343", + "libelleAcheminement": "RIGUEPEU", + "nomCommune": "RIGUEPEU" }, { - "codePostal": "09300", - "codeCommune": "09215", - "libelleAcheminement": "NALZEN", - "nomCommune": "NALZEN" + "codePostal": "32480", + "codeCommune": "32345", + "libelleAcheminement": "LA ROMIEU", + "nomCommune": "LA ROMIEU" }, { - "codePostal": "09400", - "codeCommune": "09221", - "libelleAcheminement": "ORNOLAC USSAT LES BAINS", - "nomCommune": "ORNOLAC USSAT LES BAINS" + "codePostal": "32190", + "codeCommune": "32352", + "libelleAcheminement": "ROZES", + "nomCommune": "ROZES" }, { - "codePostal": "09220", - "codeCommune": "09222", - "libelleAcheminement": "ORUS", - "nomCommune": "ORUS" + "codePostal": "32420", + "codeCommune": "32353", + "libelleAcheminement": "SABAILLAN", + "nomCommune": "SABAILLAN" }, { - "codePostal": "09460", - "codeCommune": "09230", - "libelleAcheminement": "LE PLA", - "nomCommune": "LE PLA" + "codePostal": "32290", + "codeCommune": "32354", + "libelleAcheminement": "SABAZAN", + "nomCommune": "SABAZAN" }, { - "codePostal": "09320", - "codeCommune": "09231", - "libelleAcheminement": "LE PORT", - "nomCommune": "LE PORT" + "codePostal": "32350", + "codeCommune": "32360", + "libelleAcheminement": "ST ARAILLES", + "nomCommune": "ST ARAILLES" }, { - "codePostal": "09600", - "codeCommune": "09233", - "libelleAcheminement": "PRADETTES", - "nomCommune": "PRADETTES" + "codePostal": "32200", + "codeCommune": "32379", + "libelleAcheminement": "ST GERMIER", + "nomCommune": "ST GERMIER" }, { - "codePostal": "09000", - "codeCommune": "09236", - "libelleAcheminement": "PRAYOLS", - "nomCommune": "PRAYOLS" + "codePostal": "32110", + "codeCommune": "32380", + "libelleAcheminement": "ST GRIEDE", + "nomCommune": "ST GRIEDE" }, { - "codePostal": "09300", - "codeCommune": "09242", - "libelleAcheminement": "RAISSAC", - "nomCommune": "RAISSAC" + "codePostal": "32190", + "codeCommune": "32382", + "libelleAcheminement": "ST JEAN POUTGE", + "nomCommune": "ST JEAN POUTGE" }, { - "codePostal": "09300", - "codeCommune": "09250", - "libelleAcheminement": "ROQUEFORT LES CASCADES", - "nomCommune": "ROQUEFORT LES CASCADES" + "codePostal": "32200", + "codeCommune": "32388", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "09460", - "codeCommune": "09252", - "libelleAcheminement": "ROUZE", - "nomCommune": "ROUZE" + "codePostal": "32300", + "codeCommune": "32389", + "libelleAcheminement": "ST MARTIN", + "nomCommune": "ST MARTIN" }, { - "codePostal": "09230", - "codeCommune": "09257", - "libelleAcheminement": "STE CROIX VOLVESTRE", - "nomCommune": "STE CROIX VOLVESTRE" + "codePostal": "32110", + "codeCommune": "32390", + "libelleAcheminement": "ST MARTIN D ARMAGNAC", + "nomCommune": "ST MARTIN D ARMAGNAC" }, { - "codePostal": "09500", - "codeCommune": "09259", - "libelleAcheminement": "ST FELIX DE TOURNEGAT", - "nomCommune": "ST FELIX DE TOURNEGAT" + "codePostal": "32300", + "codeCommune": "32394", + "libelleAcheminement": "ST MEDARD", + "nomCommune": "ST MEDARD" }, { - "codePostal": "09000", - "codeCommune": "09264", - "libelleAcheminement": "ST JEAN DE VERGES", - "nomCommune": "ST JEAN DE VERGES" + "codePostal": "32300", + "codeCommune": "32397", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "09700", - "codeCommune": "09275", - "libelleAcheminement": "ST QUIRC", - "nomCommune": "ST QUIRC" + "codePostal": "32120", + "codeCommune": "32399", + "libelleAcheminement": "ST ORENS", + "nomCommune": "ST ORENS" }, { - "codePostal": "09100", - "codeCommune": "09276", - "libelleAcheminement": "ST VICTOR ROUZAUD", - "nomCommune": "ST VICTOR ROUZAUD" + "codePostal": "32290", + "codeCommune": "32403", + "libelleAcheminement": "ST PIERRE D AUBEZIES", + "nomCommune": "ST PIERRE D AUBEZIES" }, { - "codePostal": "09140", - "codeCommune": "09285", - "libelleAcheminement": "SEIX", - "nomCommune": "SEIX" + "codePostal": "32310", + "codeCommune": "32404", + "libelleAcheminement": "ST PUY", + "nomCommune": "ST PUY" }, { - "codePostal": "09250", - "codeCommune": "09287", - "libelleAcheminement": "SENCONAC", - "nomCommune": "SENCONAC" + "codePostal": "32270", + "codeCommune": "32406", + "libelleAcheminement": "ST SAUVY", + "nomCommune": "ST SAUVY" }, { - "codePostal": "09190", - "codeCommune": "09289", - "libelleAcheminement": "LORP SENTARAILLE", - "nomCommune": "LORP SENTARAILLE" + "codePostal": "32170", + "codeCommune": "32415", + "libelleAcheminement": "SARRAGUZAN", + "nomCommune": "SARRAGUZAN" }, { - "codePostal": "09220", - "codeCommune": "09295", - "libelleAcheminement": "SIGUER", - "nomCommune": "SIGUER" + "codePostal": "32190", + "codeCommune": "32423", + "libelleAcheminement": "SEAILLES", + "nomCommune": "SEAILLES" }, { - "codePostal": "09700", - "codeCommune": "09315", - "libelleAcheminement": "TREMOULET", - "nomCommune": "TREMOULET" + "codePostal": "32400", + "codeCommune": "32424", + "libelleAcheminement": "SEGOS", + "nomCommune": "SEGOS" }, { - "codePostal": "09250", - "codeCommune": "09318", - "libelleAcheminement": "UNAC", - "nomCommune": "UNAC" + "codePostal": "32140", + "codeCommune": "32430", + "libelleAcheminement": "SERE", + "nomCommune": "SERE" }, { - "codePostal": "09100", - "codeCommune": "09319", - "libelleAcheminement": "UNZENT", - "nomCommune": "UNZENT" + "codePostal": "32110", + "codeCommune": "32434", + "libelleAcheminement": "SION", + "nomCommune": "SION" }, { - "codePostal": "09140", - "codeCommune": "09322", - "libelleAcheminement": "USTOU", - "nomCommune": "USTOU" + "codePostal": "32160", + "codeCommune": "32445", + "libelleAcheminement": "TIESTE URAGNOUX", + "nomCommune": "TIESTE URAGNOUX" }, { - "codePostal": "09120", - "codeCommune": "09324", - "libelleAcheminement": "VARILHES", - "nomCommune": "VARILHES" + "codePostal": "32240", + "codeCommune": "32449", + "libelleAcheminement": "TOUJOUSE", + "nomCommune": "TOUJOUSE" }, { - "codePostal": "09250", - "codeCommune": "09330", - "libelleAcheminement": "VERNAUX", - "nomCommune": "VERNAUX" + "codePostal": "32390", + "codeCommune": "32453", + "libelleAcheminement": "TOURRENQUETS", + "nomCommune": "TOURRENQUETS" }, { - "codePostal": "10200", - "codeCommune": "10002", - "libelleAcheminement": "AILLEVILLE", - "nomCommune": "AILLEVILLE" + "codePostal": "32450", + "codeCommune": "32454", + "libelleAcheminement": "TRAVERSERES", + "nomCommune": "TRAVERSERES" }, { - "codePostal": "10160", - "codeCommune": "10003", - "libelleAcheminement": "AIX VILLEMAUR PALIS", - "nomCommune": "AIX VILLEMAUR PALIS" + "codePostal": "32310", + "codeCommune": "32459", + "libelleAcheminement": "VALENCE SUR BAISE", + "nomCommune": "VALENCE SUR BAISE" }, { - "codePostal": "10190", - "codeCommune": "10003", - "libelleAcheminement": "AIX VILLEMAUR PALIS", - "nomCommune": "AIX VILLEMAUR PALIS" + "codePostal": "33460", + "codeCommune": "33012", + "libelleAcheminement": "ARSAC", + "nomCommune": "ARSAC" }, { - "codePostal": "10330", - "codeCommune": "10010", - "libelleAcheminement": "ARREMBECOURT", - "nomCommune": "ARREMBECOURT" + "codePostal": "33570", + "codeCommune": "33014", + "libelleAcheminement": "LES ARTIGUES DE LUSSAC", + "nomCommune": "LES ARTIGUES DE LUSSAC" }, { - "codePostal": "10400", - "codeCommune": "10020", - "libelleAcheminement": "AVANT LES MARCILLY", - "nomCommune": "AVANT LES MARCILLY" + "codePostal": "33240", + "codeCommune": "33016", + "libelleAcheminement": "ASQUES", + "nomCommune": "ASQUES" }, { - "codePostal": "10240", - "codeCommune": "10021", - "libelleAcheminement": "AVANT LES RAMERUPT", - "nomCommune": "AVANT LES RAMERUPT" + "codePostal": "33240", + "codeCommune": "33018", + "libelleAcheminement": "VAL DE VIRVEE", + "nomCommune": "VAL DE VIRVEE" }, { - "codePostal": "10330", - "codeCommune": "10026", - "libelleAcheminement": "BAILLY LE FRANC", - "nomCommune": "BAILLY LE FRANC" + "codePostal": "33760", + "codeCommune": "33025", + "libelleAcheminement": "BAIGNEAUX", + "nomCommune": "BAIGNEAUX" }, { - "codePostal": "10200", - "codeCommune": "10033", - "libelleAcheminement": "BAR SUR AUBE", - "nomCommune": "BAR SUR AUBE" + "codePostal": "33530", + "codeCommune": "33032", + "libelleAcheminement": "BASSENS", + "nomCommune": "BASSENS" }, { - "codePostal": "10310", - "codeCommune": "10035", - "libelleAcheminement": "BAYEL", - "nomCommune": "BAYEL" + "codePostal": "33710", + "codeCommune": "33035", + "libelleAcheminement": "BAYON SUR GIRONDE", + "nomCommune": "BAYON SUR GIRONDE" }, { - "codePostal": "10190", - "codeCommune": "10037", - "libelleAcheminement": "BERCENAY EN OTHE", - "nomCommune": "BERCENAY EN OTHE" + "codePostal": "33830", + "codeCommune": "33042", + "libelleAcheminement": "BELIN BELIET", + "nomCommune": "BELIN BELIET" }, { - "codePostal": "10500", - "codeCommune": "10047", - "libelleAcheminement": "BLIGNICOURT", - "nomCommune": "BLIGNICOURT" + "codePostal": "33760", + "codeCommune": "33043", + "libelleAcheminement": "BELLEBAT", + "nomCommune": "BELLEBAT" }, { - "codePostal": "10290", - "codeCommune": "10054", - "libelleAcheminement": "BOURDENAY", - "nomCommune": "BOURDENAY" + "codePostal": "33210", + "codeCommune": "33050", + "libelleAcheminement": "BIEUJAC", + "nomCommune": "BIEUJAC" }, { - "codePostal": "10500", - "codeCommune": "10059", - "libelleAcheminement": "BRAUX", - "nomCommune": "BRAUX" + "codePostal": "33380", + "codeCommune": "33051", + "libelleAcheminement": "BIGANOS", + "nomCommune": "BIGANOS" }, { - "codePostal": "10500", - "codeCommune": "10063", - "libelleAcheminement": "BRIENNE LA VIEILLE", - "nomCommune": "BRIENNE LA VIEILLE" + "codePostal": "33390", + "codeCommune": "33058", + "libelleAcheminement": "BLAYE", + "nomCommune": "BLAYE" }, { - "codePostal": "10190", - "codeCommune": "10066", - "libelleAcheminement": "BUCEY EN OTHE", - "nomCommune": "BUCEY EN OTHE" + "codePostal": "33800", + "codeCommune": "33063", + "libelleAcheminement": "BORDEAUX", + "nomCommune": "BORDEAUX" }, { - "codePostal": "10800", - "codeCommune": "10067", - "libelleAcheminement": "BUCHERES", - "nomCommune": "BUCHERES" + "codePostal": "33110", + "codeCommune": "33069", + "libelleAcheminement": "LE BOUSCAT", + "nomCommune": "LE BOUSCAT" }, { - "codePostal": "10700", - "codeCommune": "10077", - "libelleAcheminement": "CHAMPIGNY SUR AUBE", - "nomCommune": "CHAMPIGNY SUR AUBE" + "codePostal": "33520", + "codeCommune": "33075", + "libelleAcheminement": "BRUGES", + "nomCommune": "BRUGES" }, { - "codePostal": "10140", - "codeCommune": "10078", - "libelleAcheminement": "CHAMP SUR BARSE", - "nomCommune": "CHAMP SUR BARSE" + "codePostal": "33650", + "codeCommune": "33077", + "libelleAcheminement": "CABANAC ET VILLAGRAINS", + "nomCommune": "CABANAC ET VILLAGRAINS" }, { - "codePostal": "10510", - "codeCommune": "10089", - "libelleAcheminement": "CHATRES", - "nomCommune": "CHATRES" + "codePostal": "33420", + "codeCommune": "33078", + "libelleAcheminement": "CABARA", + "nomCommune": "CABARA" }, { - "codePostal": "10500", - "codeCommune": "10093", - "libelleAcheminement": "CHAUMESNIL", - "nomCommune": "CHAUMESNIL" + "codePostal": "33140", + "codeCommune": "33080", + "libelleAcheminement": "CADAUJAC", + "nomCommune": "CADAUJAC" }, { - "codePostal": "10210", - "codeCommune": "10098", - "libelleAcheminement": "CHESLEY", - "nomCommune": "CHESLEY" + "codePostal": "33880", + "codeCommune": "33084", + "libelleAcheminement": "CAMBES", + "nomCommune": "CAMBES" }, { - "codePostal": "10390", - "codeCommune": "10100", - "libelleAcheminement": "CLEREY", - "nomCommune": "CLEREY" + "codePostal": "33390", + "codeCommune": "33089", + "libelleAcheminement": "CAMPUGNAN", + "nomCommune": "CAMPUGNAN" }, { - "codePostal": "10210", - "codeCommune": "10112", - "libelleAcheminement": "COUSSEGREY", - "nomCommune": "COUSSEGREY" + "codePostal": "33560", + "codeCommune": "33096", + "libelleAcheminement": "CARBON BLANC", + "nomCommune": "CARBON BLANC" }, { - "codePostal": "10190", - "codeCommune": "10124", - "libelleAcheminement": "DIERREY ST JULIEN", - "nomCommune": "DIERREY ST JULIEN" + "codePostal": "33210", + "codeCommune": "33106", + "libelleAcheminement": "CASTETS ET CASTILLON", + "nomCommune": "CASTETS ET CASTILLON" }, { - "codePostal": "10240", - "codeCommune": "10127", - "libelleAcheminement": "DOMMARTIN LE COQ", - "nomCommune": "DOMMARTIN LE COQ" + "codePostal": "33350", + "codeCommune": "33108", + "libelleAcheminement": "CASTILLON LA BATAILLE", + "nomCommune": "CASTILLON LA BATAILLE" }, { - "codePostal": "10130", - "codeCommune": "10133", - "libelleAcheminement": "EAUX PUISEAUX", - "nomCommune": "EAUX PUISEAUX" + "codePostal": "33710", + "codeCommune": "33132", + "libelleAcheminement": "COMPS", + "nomCommune": "COMPS" }, { - "codePostal": "10350", - "codeCommune": "10134", - "libelleAcheminement": "ECHEMINES", - "nomCommune": "ECHEMINES" + "codePostal": "33890", + "codeCommune": "33133", + "libelleAcheminement": "COUBEYRAC", + "nomCommune": "COUBEYRAC" }, { - "codePostal": "10200", - "codeCommune": "10135", - "libelleAcheminement": "ECLANCE", - "nomCommune": "ECLANCE" + "codePostal": "33760", + "codeCommune": "33135", + "libelleAcheminement": "COURPIAC", + "nomCommune": "COURPIAC" }, { - "codePostal": "10500", - "codeCommune": "10138", - "libelleAcheminement": "EPAGNE", - "nomCommune": "EPAGNE" + "codePostal": "33690", + "codeCommune": "33137", + "libelleAcheminement": "COURS LES BAINS", + "nomCommune": "COURS LES BAINS" }, { - "codePostal": "10210", - "codeCommune": "10143", - "libelleAcheminement": "ETOURVY", - "nomCommune": "ETOURVY" + "codePostal": "33670", + "codeCommune": "33140", + "libelleAcheminement": "CREON", + "nomCommune": "CREON" }, { - "codePostal": "10290", - "codeCommune": "10146", - "libelleAcheminement": "FAY LES MARCILLY", - "nomCommune": "FAY LES MARCILLY" + "codePostal": "33620", + "codeCommune": "33142", + "libelleAcheminement": "CUBNEZAIS", + "nomCommune": "CUBNEZAIS" }, { - "codePostal": "10320", - "codeCommune": "10147", - "libelleAcheminement": "FAYS LA CHAPELLE", - "nomCommune": "FAYS LA CHAPELLE" + "codePostal": "33350", + "codeCommune": "33153", + "libelleAcheminement": "DOULEZON", + "nomCommune": "DOULEZON" }, { - "codePostal": "10400", - "codeCommune": "10148", - "libelleAcheminement": "FERREUX QUINCEY", - "nomCommune": "FERREUX QUINCEY" + "codePostal": "33190", + "codeCommune": "33158", + "libelleAcheminement": "LES ESSEINTES", + "nomCommune": "LES ESSEINTES" }, { - "codePostal": "10200", - "codeCommune": "10150", - "libelleAcheminement": "FONTAINE", - "nomCommune": "FONTAINE" + "codePostal": "33320", + "codeCommune": "33162", + "libelleAcheminement": "EYSINES", + "nomCommune": "EYSINES" }, { - "codePostal": "10280", - "codeCommune": "10151", - "libelleAcheminement": "FONTAINE LES GRES", - "nomCommune": "FONTAINE LES GRES" + "codePostal": "33370", + "codeCommune": "33165", + "libelleAcheminement": "FARGUES ST HILAIRE", + "nomCommune": "FARGUES ST HILAIRE" }, { - "codePostal": "10100", - "codeCommune": "10157", - "libelleAcheminement": "LA FOSSE CORDUAN", - "nomCommune": "LA FOSSE CORDUAN" + "codePostal": "33230", + "codeCommune": "33166", + "libelleAcheminement": "LE FIEU", + "nomCommune": "LE FIEU" }, { - "codePostal": "10260", - "codeCommune": "10158", - "libelleAcheminement": "FOUCHERES", - "nomCommune": "FOUCHERES" + "codePostal": "33190", + "codeCommune": "33171", + "libelleAcheminement": "FOSSES ET BALEYSSAC", + "nomCommune": "FOSSES ET BALEYSSAC" }, { - "codePostal": "10200", - "codeCommune": "10161", - "libelleAcheminement": "FRESNAY", - "nomCommune": "FRESNAY" + "codePostal": "33390", + "codeCommune": "33172", + "libelleAcheminement": "FOURS", + "nomCommune": "FOURS" }, { - "codePostal": "10120", - "codeCommune": "10186", - "libelleAcheminement": "LAINES AUX BOIS", - "nomCommune": "LAINES AUX BOIS" + "codePostal": "33420", + "codeCommune": "33185", + "libelleAcheminement": "GENISSAC", + "nomCommune": "GENISSAC" }, { - "codePostal": "10110", - "codeCommune": "10187", - "libelleAcheminement": "LANDREVILLE", - "nomCommune": "LANDREVILLE" + "codePostal": "33890", + "codeCommune": "33186", + "libelleAcheminement": "GENSAC", + "nomCommune": "GENSAC" }, { - "codePostal": "10270", - "codeCommune": "10190", - "libelleAcheminement": "LAUBRESSEL", - "nomCommune": "LAUBRESSEL" + "codePostal": "33540", + "codeCommune": "33189", + "libelleAcheminement": "GORNAC", + "nomCommune": "GORNAC" }, { - "codePostal": "10150", - "codeCommune": "10191", - "libelleAcheminement": "LAVAU", - "nomCommune": "LAVAU" + "codePostal": "33470", + "codeCommune": "33199", + "libelleAcheminement": "GUJAN MESTRAS", + "nomCommune": "GUJAN MESTRAS" }, { - "codePostal": "10310", - "codeCommune": "10203", - "libelleAcheminement": "LONGCHAMP SUR AUJON", - "nomCommune": "LONGCHAMP SUR AUJON" + "codePostal": "33890", + "codeCommune": "33210", + "libelleAcheminement": "JUILLAC", + "nomCommune": "JUILLAC" }, { - "codePostal": "10210", - "codeCommune": "10218", - "libelleAcheminement": "MAISONS LES CHAOURCE", - "nomCommune": "MAISONS LES CHAOURCE" + "codePostal": "33650", + "codeCommune": "33213", + "libelleAcheminement": "LA BREDE", + "nomCommune": "LA BREDE" }, { - "codePostal": "10510", - "codeCommune": "10220", - "libelleAcheminement": "MAIZIERES LA GRANDE PAROISSE", - "nomCommune": "MAIZIERES LA GRANDE PAROISSE" + "codePostal": "33680", + "codeCommune": "33214", + "libelleAcheminement": "LACANAU", + "nomCommune": "LACANAU" }, { - "codePostal": "10510", - "codeCommune": "10220", - "libelleAcheminement": "MAIZIERES LA GRANDE PAROISSE", - "nomCommune": "MAIZIERES LA GRANDE PAROISSE" + "codePostal": "33680", + "codeCommune": "33214", + "libelleAcheminement": "LACANAU", + "nomCommune": "LACANAU" }, { - "codePostal": "10160", - "codeCommune": "10222", - "libelleAcheminement": "MARAYE EN OTHE", - "nomCommune": "MARAYE EN OTHE" + "codePostal": "33190", + "codeCommune": "33221", + "libelleAcheminement": "LAMOTHE LANDERRON", + "nomCommune": "LAMOTHE LANDERRON" }, { - "codePostal": "10400", - "codeCommune": "10225", - "libelleAcheminement": "MARNAY SUR SEINE", - "nomCommune": "MARNAY SUR SEINE" + "codePostal": "33620", + "codeCommune": "33230", + "libelleAcheminement": "LAPOUYADE", + "nomCommune": "LAPOUYADE" }, { - "codePostal": "10110", - "codeCommune": "10226", - "libelleAcheminement": "MAROLLES LES BAILLY", - "nomCommune": "MAROLLES LES BAILLY" + "codePostal": "33360", + "codeCommune": "33234", + "libelleAcheminement": "LATRESNE", + "nomCommune": "LATRESNE" }, { - "codePostal": "10320", - "codeCommune": "10229", - "libelleAcheminement": "MAUPAS", - "nomCommune": "MAUPAS" + "codePostal": "33970", + "codeCommune": "33236", + "libelleAcheminement": "LEGE CAP FERRET", + "nomCommune": "LEGE CAP FERRET" }, { - "codePostal": "10200", - "codeCommune": "10242", - "libelleAcheminement": "MEURVILLE", - "nomCommune": "MEURVILLE" + "codePostal": "33970", + "codeCommune": "33236", + "libelleAcheminement": "LEGE CAP FERRET", + "nomCommune": "LEGE CAP FERRET" }, { - "codePostal": "10130", - "codeCommune": "10247", - "libelleAcheminement": "MONTFEY", - "nomCommune": "MONTFEY" + "codePostal": "33850", + "codeCommune": "33238", + "libelleAcheminement": "LEOGNAN", + "nomCommune": "LEOGNAN" }, { - "codePostal": "10300", - "codeCommune": "10248", - "libelleAcheminement": "MONTGUEUX", - "nomCommune": "MONTGUEUX" + "codePostal": "33500", + "codeCommune": "33243", + "libelleAcheminement": "LIBOURNE", + "nomCommune": "LIBOURNE" }, { - "codePostal": "10400", - "codeCommune": "10254", - "libelleAcheminement": "MONTPOTHIER", - "nomCommune": "MONTPOTHIER" + "codePostal": "33310", + "codeCommune": "33249", + "libelleAcheminement": "LORMONT", + "nomCommune": "LORMONT" }, { - "codePostal": "10500", - "codeCommune": "10258", - "libelleAcheminement": "MORVILLIERS", - "nomCommune": "MORVILLIERS" + "codePostal": "33570", + "codeCommune": "33261", + "libelleAcheminement": "LUSSAC", + "nomCommune": "LUSSAC" }, { - "codePostal": "10800", - "codeCommune": "10260", - "libelleAcheminement": "MOUSSEY", - "nomCommune": "MOUSSEY" + "codePostal": "33460", + "codeCommune": "33262", + "libelleAcheminement": "MACAU", + "nomCommune": "MACAU" }, { - "codePostal": "10190", - "codeCommune": "10263", - "libelleAcheminement": "NEUVILLE SUR VANNE", - "nomCommune": "NEUVILLE SUR VANNE" + "codePostal": "33127", + "codeCommune": "33273", + "libelleAcheminement": "MARTIGNAS SUR JALLE", + "nomCommune": "MARTIGNAS SUR JALLE" }, { - "codePostal": "10220", - "codeCommune": "10287", - "libelleAcheminement": "PINEY", - "nomCommune": "PINEY" + "codePostal": "33760", + "codeCommune": "33275", + "libelleAcheminement": "MARTRES", + "nomCommune": "MARTRES" }, { - "codePostal": "10150", - "codeCommune": "10297", - "libelleAcheminement": "PONT STE MARIE", - "nomCommune": "PONT STE MARIE" + "codePostal": "33690", + "codeCommune": "33276", + "libelleAcheminement": "MASSEILLES", + "nomCommune": "MASSEILLES" }, { - "codePostal": "10140", - "codeCommune": "10310", - "libelleAcheminement": "PUITS ET NUISEMENT", - "nomCommune": "PUITS ET NUISEMENT" + "codePostal": "33570", + "codeCommune": "33290", + "libelleAcheminement": "MONTAGNE", + "nomCommune": "MONTAGNE" }, { - "codePostal": "10240", - "codeCommune": "10314", - "libelleAcheminement": "RAMERUPT", - "nomCommune": "RAMERUPT" + "codePostal": "33570", + "codeCommune": "33290", + "libelleAcheminement": "MONTAGNE", + "nomCommune": "MONTAGNE" }, { - "codePostal": "10240", - "codeCommune": "10314", - "libelleAcheminement": "RAMERUPT", - "nomCommune": "RAMERUPT" + "codePostal": "33190", + "codeCommune": "33291", + "libelleAcheminement": "MONTAGOUDIN", + "nomCommune": "MONTAGOUDIN" }, { - "codePostal": "10440", - "codeCommune": "10321", - "libelleAcheminement": "LA RIVIERE DE CORPS", - "nomCommune": "LA RIVIERE DE CORPS" + "codePostal": "33760", + "codeCommune": "33292", + "libelleAcheminement": "MONTIGNAC", + "nomCommune": "MONTIGNAC" }, { - "codePostal": "10400", - "codeCommune": "10334", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "33190", + "codeCommune": "33306", + "libelleAcheminement": "NOAILLAC", + "nomCommune": "NOAILLAC" }, { - "codePostal": "10500", - "codeCommune": "10337", - "libelleAcheminement": "ST CHRISTOPHE DODINICOURT", - "nomCommune": "ST CHRISTOPHE DODINICOURT" + "codePostal": "33410", + "codeCommune": "33308", + "libelleAcheminement": "OMET", + "nomCommune": "OMET" }, { - "codePostal": "10180", - "codeCommune": "10349", - "libelleAcheminement": "ST LYE", - "nomCommune": "ST LYE" + "codePostal": "33230", + "codeCommune": "33315", + "libelleAcheminement": "LES PEINTURES", + "nomCommune": "LES PEINTURES" }, { - "codePostal": "10100", - "codeCommune": "10351", - "libelleAcheminement": "ST MARTIN DE BOSSENAY", - "nomCommune": "ST MARTIN DE BOSSENAY" + "codePostal": "33490", + "codeCommune": "33323", + "libelleAcheminement": "LE PIAN SUR GARONNE", + "nomCommune": "LE PIAN SUR GARONNE" }, { - "codePostal": "10700", - "codeCommune": "10354", - "libelleAcheminement": "ST NABORD SUR AUBE", - "nomCommune": "ST NABORD SUR AUBE" + "codePostal": "33220", + "codeCommune": "33324", + "libelleAcheminement": "PINEUILH", + "nomCommune": "PINEUILH" }, { - "codePostal": "10400", - "codeCommune": "10355", - "libelleAcheminement": "ST NICOLAS LA CHAPELLE", - "nomCommune": "ST NICOLAS LA CHAPELLE" + "codePostal": "33820", + "codeCommune": "33326", + "libelleAcheminement": "PLEINE SELVE", + "nomCommune": "PLEINE SELVE" }, { - "codePostal": "10300", - "codeCommune": "10362", - "libelleAcheminement": "STE SAVINE", - "nomCommune": "STE SAVINE" + "codePostal": "33190", + "codeCommune": "33331", + "libelleAcheminement": "PONDAURAT", + "nomCommune": "PONDAURAT" }, { - "codePostal": "10700", - "codeCommune": "10365", - "libelleAcheminement": "SALON", - "nomCommune": "SALON" + "codePostal": "33210", + "codeCommune": "33337", + "libelleAcheminement": "PREIGNAC", + "nomCommune": "PREIGNAC" }, { - "codePostal": "10200", - "codeCommune": "10372", - "libelleAcheminement": "SOULAINES DHUYS", - "nomCommune": "SOULAINES DHUYS" + "codePostal": "33570", + "codeCommune": "33342", + "libelleAcheminement": "PUISSEGUIN", + "nomCommune": "PUISSEGUIN" }, { - "codePostal": "10200", - "codeCommune": "10374", - "libelleAcheminement": "SPOY", - "nomCommune": "SPOY" + "codePostal": "33210", + "codeCommune": "33343", + "libelleAcheminement": "PUJOLS SUR CIRON", + "nomCommune": "PUJOLS SUR CIRON" }, { - "codePostal": "10410", - "codeCommune": "10375", - "libelleAcheminement": "THENNELIERES", - "nomCommune": "THENNELIERES" + "codePostal": "33580", + "codeCommune": "33345", + "libelleAcheminement": "LE PUY", + "nomCommune": "LE PUY" }, { - "codePostal": "10200", - "codeCommune": "10378", - "libelleAcheminement": "THORS", - "nomCommune": "THORS" + "codePostal": "33210", + "codeCommune": "33357", + "libelleAcheminement": "ROAILLAN", + "nomCommune": "ROAILLAN" }, { - "codePostal": "10700", - "codeCommune": "10386", - "libelleAcheminement": "TROUANS", - "nomCommune": "TROUANS" + "codePostal": "33350", + "codeCommune": "33361", + "libelleAcheminement": "RUCH", + "nomCommune": "RUCH" }, { - "codePostal": "10000", - "codeCommune": "10387", - "libelleAcheminement": "TROYES", - "nomCommune": "TROYES" + "codePostal": "33240", + "codeCommune": "33366", + "libelleAcheminement": "ST ANDRE DE CUBZAC", + "nomCommune": "ST ANDRE DE CUBZAC" }, { - "codePostal": "10210", - "codeCommune": "10395", - "libelleAcheminement": "VANLAY", - "nomCommune": "VANLAY" + "codePostal": "33220", + "codeCommune": "33369", + "libelleAcheminement": "ST ANDRE ET APPELLES", + "nomCommune": "ST ANDRE ET APPELLES" }, { - "codePostal": "10380", - "codeCommune": "10408", - "libelleAcheminement": "VIAPRES LE PETIT", - "nomCommune": "VIAPRES LE PETIT" + "codePostal": "33220", + "codeCommune": "33378", + "libelleAcheminement": "ST AVIT ST NAZAIRE", + "nomCommune": "ST AVIT ST NAZAIRE" }, { - "codePostal": "10350", - "codeCommune": "10414", - "libelleAcheminement": "VILLELOUP", - "nomCommune": "VILLELOUP" + "codePostal": "33820", + "codeCommune": "33380", + "libelleAcheminement": "VAL DE LIVENNE", + "nomCommune": "VAL DE LIVENNE" }, { - "codePostal": "10130", - "codeCommune": "10422", - "libelleAcheminement": "VILLENEUVE AU CHEMIN", - "nomCommune": "VILLENEUVE AU CHEMIN" + "codePostal": "33880", + "codeCommune": "33381", + "libelleAcheminement": "ST CAPRAIS DE BORDEAUX", + "nomCommune": "ST CAPRAIS DE BORDEAUX" }, { - "codePostal": "10800", - "codeCommune": "10434", - "libelleAcheminement": "VILLY LE BOIS", - "nomCommune": "VILLY LE BOIS" + "codePostal": "33330", + "codeCommune": "33384", + "libelleAcheminement": "ST CHRISTOPHE DES BARDES", + "nomCommune": "ST CHRISTOPHE DES BARDES" }, { - "codePostal": "10260", - "codeCommune": "10437", - "libelleAcheminement": "VIREY SOUS BAR", - "nomCommune": "VIREY SOUS BAR" + "codePostal": "33910", + "codeCommune": "33387", + "libelleAcheminement": "ST CIERS D ABZAC", + "nomCommune": "ST CIERS D ABZAC" }, { - "codePostal": "10200", - "codeCommune": "10440", - "libelleAcheminement": "VOIGNY", - "nomCommune": "VOIGNY" + "codePostal": "33820", + "codeCommune": "33389", + "libelleAcheminement": "ST CIERS SUR GIRONDE", + "nomCommune": "ST CIERS SUR GIRONDE" }, { - "codePostal": "10130", - "codeCommune": "10441", - "libelleAcheminement": "VOSNON", - "nomCommune": "VOSNON" + "codePostal": "33330", + "codeCommune": "33396", + "libelleAcheminement": "ST ETIENNE DE LISSE", + "nomCommune": "ST ETIENNE DE LISSE" }, { - "codePostal": "10500", - "codeCommune": "10445", - "libelleAcheminement": "YEVRES LE PETIT", - "nomCommune": "YEVRES LE PETIT" + "codePostal": "33240", + "codeCommune": "33407", + "libelleAcheminement": "ST GENES DE FRONSAC", + "nomCommune": "ST GENES DE FRONSAC" }, { - "codePostal": "11580", - "codeCommune": "11008", - "libelleAcheminement": "ALET LES BAINS", - "nomCommune": "ALET LES BAINS" + "codePostal": "33750", + "codeCommune": "33413", + "libelleAcheminement": "ST GERMAIN DU PUCH", + "nomCommune": "ST GERMAIN DU PUCH" }, { - "codePostal": "11600", - "codeCommune": "11011", - "libelleAcheminement": "ARAGON", - "nomCommune": "ARAGON" + "codePostal": "33240", + "codeCommune": "33415", + "libelleAcheminement": "ST GERVAIS", + "nomCommune": "ST GERVAIS" }, { - "codePostal": "11140", - "codeCommune": "11021", - "libelleAcheminement": "AXAT", - "nomCommune": "AXAT" + "codePostal": "33190", + "codeCommune": "33418", + "libelleAcheminement": "ST HILAIRE DE LA NOAILLE", + "nomCommune": "ST HILAIRE DE LA NOAILLE" }, { - "codePostal": "11140", - "codeCommune": "11038", - "libelleAcheminement": "BESSEDE DE SAULT", - "nomCommune": "BESSEDE DE SAULT" + "codePostal": "33330", + "codeCommune": "33420", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "11330", - "codeCommune": "11044", - "libelleAcheminement": "BOUISSE", - "nomCommune": "BOUISSE" + "codePostal": "33420", + "codeCommune": "33421", + "libelleAcheminement": "ST JEAN DE BLAIGNAC", + "nomCommune": "ST JEAN DE BLAIGNAC" }, { - "codePostal": "11200", - "codeCommune": "11048", - "libelleAcheminement": "BOUTENAC", - "nomCommune": "BOUTENAC" + "codePostal": "33250", + "codeCommune": "33423", + "libelleAcheminement": "ST JULIEN BEYCHEVELLE", + "nomCommune": "ST JULIEN BEYCHEVELLE" }, { - "codePostal": "11150", - "codeCommune": "11049", - "libelleAcheminement": "BRAM", - "nomCommune": "BRAM" + "codePostal": "33330", + "codeCommune": "33426", + "libelleAcheminement": "ST LAURENT DES COMBES", + "nomCommune": "ST LAURENT DES COMBES" }, { - "codePostal": "11390", - "codeCommune": "11052", - "libelleAcheminement": "BROUSSES ET VILLARET", - "nomCommune": "BROUSSES ET VILLARET" + "codePostal": "33210", + "codeCommune": "33432", + "libelleAcheminement": "ST LOUBERT", + "nomCommune": "ST LOUBERT" }, { - "codePostal": "11300", - "codeCommune": "11053", - "libelleAcheminement": "BRUGAIROLLES", - "nomCommune": "BRUGAIROLLES" + "codePostal": "33350", + "codeCommune": "33437", + "libelleAcheminement": "ST MAGNE DE CASTILLON", + "nomCommune": "ST MAGNE DE CASTILLON" }, { - "codePostal": "11190", - "codeCommune": "11055", - "libelleAcheminement": "BUGARACH", - "nomCommune": "BUGARACH" + "codePostal": "33540", + "codeCommune": "33446", + "libelleAcheminement": "ST MARTIN DU PUY", + "nomCommune": "ST MARTIN DU PUY" }, { - "codePostal": "11140", - "codeCommune": "11062", - "libelleAcheminement": "CAMPAGNA DE SAULT", - "nomCommune": "CAMPAGNA DE SAULT" + "codePostal": "33230", + "codeCommune": "33447", + "libelleAcheminement": "ST MEDARD DE GUIZIERES", + "nomCommune": "ST MEDARD DE GUIZIERES" }, { - "codePostal": "11260", - "codeCommune": "11063", - "libelleAcheminement": "CAMPAGNE SUR AUDE", - "nomCommune": "CAMPAGNE SUR AUDE" + "codePostal": "33126", + "codeCommune": "33451", + "libelleAcheminement": "ST MICHEL DE FRONSAC", + "nomCommune": "ST MICHEL DE FRONSAC" }, { - "codePostal": "11000", - "codeCommune": "11069", - "libelleAcheminement": "CARCASSONNE", - "nomCommune": "CARCASSONNE" + "codePostal": "33720", + "codeCommune": "33452", + "libelleAcheminement": "ST MICHEL DE RIEUFRET", + "nomCommune": "ST MICHEL DE RIEUFRET" }, { - "codePostal": "11170", - "codeCommune": "11070", - "libelleAcheminement": "CARLIPA", - "nomCommune": "CARLIPA" + "codePostal": "33190", + "codeCommune": "33453", + "libelleAcheminement": "ST MICHEL DE LAPUJADE", + "nomCommune": "ST MICHEL DE LAPUJADE" }, { - "codePostal": "11570", - "codeCommune": "11085", - "libelleAcheminement": "CAVANAC", - "nomCommune": "CAVANAC" + "codePostal": "33210", + "codeCommune": "33465", + "libelleAcheminement": "ST PIERRE DE MONS", + "nomCommune": "ST PIERRE DE MONS" }, { - "codePostal": "11510", - "codeCommune": "11086", - "libelleAcheminement": "CAVES", - "nomCommune": "CAVES" + "codePostal": "33350", + "codeCommune": "33468", + "libelleAcheminement": "STE RADEGONDE", + "nomCommune": "STE RADEGONDE" }, { - "codePostal": "11240", - "codeCommune": "11108", - "libelleAcheminement": "LA COURTETE", - "nomCommune": "LA COURTETE" + "codePostal": "33920", + "codeCommune": "33473", + "libelleAcheminement": "ST SAVIN", + "nomCommune": "ST SAVIN" }, { - "codePostal": "11200", - "codeCommune": "11111", - "libelleAcheminement": "CRUSCADES", - "nomCommune": "CRUSCADES" + "codePostal": "33180", + "codeCommune": "33476", + "libelleAcheminement": "ST SEURIN DE CADOURNE", + "nomCommune": "ST SEURIN DE CADOURNE" }, { - "codePostal": "11330", - "codeCommune": "11117", - "libelleAcheminement": "DAVEJEAN", - "nomCommune": "DAVEJEAN" + "codePostal": "33660", + "codeCommune": "33478", + "libelleAcheminement": "ST SEURIN SUR L ISLE", + "nomCommune": "ST SEURIN SUR L ISLE" }, { - "codePostal": "11330", - "codeCommune": "11118", - "libelleAcheminement": "DERNACUEILLETTE", - "nomCommune": "DERNACUEILLETTE" + "codePostal": "33190", + "codeCommune": "33479", + "libelleAcheminement": "ST SEVE", + "nomCommune": "ST SEVE" }, { - "codePostal": "11140", - "codeCommune": "11127", - "libelleAcheminement": "ESCOULOUBRE", - "nomCommune": "ESCOULOUBRE" + "codePostal": "33580", + "codeCommune": "33481", + "libelleAcheminement": "ST SULPICE DE GUILLERAGUES", + "nomCommune": "ST SULPICE DE GUILLERAGUES" }, { - "codePostal": "11260", - "codeCommune": "11129", - "libelleAcheminement": "ESPERAZA", - "nomCommune": "ESPERAZA" + "codePostal": "33350", + "codeCommune": "33485", + "libelleAcheminement": "STE TERRE", + "nomCommune": "STE TERRE" }, { - "codePostal": "11260", - "codeCommune": "11131", - "libelleAcheminement": "VAL DU FABY", - "nomCommune": "VAL DU FABY" + "codePostal": "33590", + "codeCommune": "33490", + "libelleAcheminement": "ST VIVIEN DE MEDOC", + "nomCommune": "ST VIVIEN DE MEDOC" }, { - "codePostal": "11220", - "codeCommune": "11133", - "libelleAcheminement": "FAJAC EN VAL", - "nomCommune": "FAJAC EN VAL" + "codePostal": "33350", + "codeCommune": "33499", + "libelleAcheminement": "LES SALLES DE CASTILLON", + "nomCommune": "LES SALLES DE CASTILLON" }, { - "codePostal": "11200", - "codeCommune": "11140", - "libelleAcheminement": "FERRALS LES CORBIERES", - "nomCommune": "FERRALS LES CORBIERES" + "codePostal": "33710", + "codeCommune": "33500", + "libelleAcheminement": "SAMONAC", + "nomCommune": "SAMONAC" }, { - "codePostal": "11560", - "codeCommune": "11145", - "libelleAcheminement": "FLEURY D AUDE", - "nomCommune": "FLEURY" + "codePostal": "33680", + "codeCommune": "33503", + "libelleAcheminement": "SAUMOS", + "nomCommune": "SAUMOS" }, { - "codePostal": "11560", - "codeCommune": "11145", - "libelleAcheminement": "FLEURY D AUDE", - "nomCommune": "FLEURY" + "codePostal": "33670", + "codeCommune": "33505", + "libelleAcheminement": "LA SAUVE", + "nomCommune": "LA SAUVE" }, { - "codePostal": "11270", - "codeCommune": "11153", - "libelleAcheminement": "LA FORCE", - "nomCommune": "LA FORCE" + "codePostal": "33124", + "codeCommune": "33508", + "libelleAcheminement": "SAVIGNAC", + "nomCommune": "SAVIGNAC" }, { - "codePostal": "11140", - "codeCommune": "11160", - "libelleAcheminement": "GALINAGUES", - "nomCommune": "GALINAGUES" + "codePostal": "33690", + "codeCommune": "33511", + "libelleAcheminement": "SENDETS", + "nomCommune": "SENDETS" }, { - "codePostal": "11120", - "codeCommune": "11164", - "libelleAcheminement": "GINESTAS", - "nomCommune": "GINESTAS" + "codePostal": "33400", + "codeCommune": "33522", + "libelleAcheminement": "TALENCE", + "nomCommune": "TALENCE" }, { - "codePostal": "11240", - "codeCommune": "11167", - "libelleAcheminement": "GRAMAZIE", - "nomCommune": "GRAMAZIE" + "codePostal": "33570", + "codeCommune": "33526", + "libelleAcheminement": "TAYAC", + "nomCommune": "TAYAC" }, { - "codePostal": "11380", - "codeCommune": "11174", - "libelleAcheminement": "LES ILHES", - "nomCommune": "LES ILHES" + "codePostal": "33680", + "codeCommune": "33528", + "libelleAcheminement": "LE TEMPLE", + "nomCommune": "LE TEMPLE" }, { - "codePostal": "11400", - "codeCommune": "11175", - "libelleAcheminement": "ISSEL", - "nomCommune": "ISSEL" + "codePostal": "33115", + "codeCommune": "33529", + "libelleAcheminement": "LA TESTE DE BUCH", + "nomCommune": "LA TESTE DE BUCH" }, { - "codePostal": "11220", - "codeCommune": "11176", - "libelleAcheminement": "JONQUIERES", - "nomCommune": "JONQUIERES" + "codePostal": "33115", + "codeCommune": "33529", + "libelleAcheminement": "LA TESTE DE BUCH", + "nomCommune": "LA TESTE DE BUCH" }, { - "codePostal": "11140", - "codeCommune": "11177", - "libelleAcheminement": "JOUCOU", - "nomCommune": "JOUCOU" + "codePostal": "33260", + "codeCommune": "33529", + "libelleAcheminement": "LA TESTE DE BUCH", + "nomCommune": "LA TESTE DE BUCH" }, { - "codePostal": "11320", - "codeCommune": "11178", - "libelleAcheminement": "LABASTIDE D ANJOU", - "nomCommune": "LABASTIDE D ANJOU" + "codePostal": "33620", + "codeCommune": "33532", + "libelleAcheminement": "TIZAC DE LAPOUYADE", + "nomCommune": "TIZAC DE LAPOUYADE" }, { - "codePostal": "11330", - "codeCommune": "11187", - "libelleAcheminement": "LANET", - "nomCommune": "LANET" + "codePostal": "33340", + "codeCommune": "33538", + "libelleAcheminement": "VALEYRAC", + "nomCommune": "VALEYRAC" }, { - "codePostal": "11700", - "codeCommune": "11190", - "libelleAcheminement": "LA REDORTE", - "nomCommune": "LA REDORTE" + "codePostal": "33870", + "codeCommune": "33539", + "libelleAcheminement": "VAYRES", + "nomCommune": "VAYRES" }, { - "codePostal": "11330", - "codeCommune": "11191", - "libelleAcheminement": "LAROQUE DE FA", - "nomCommune": "LAROQUE DE FA" + "codePostal": "33590", + "codeCommune": "33541", + "libelleAcheminement": "VENSAC", + "nomCommune": "VENSAC" }, { - "codePostal": "11270", - "codeCommune": "11196", - "libelleAcheminement": "LAURAC", - "nomCommune": "LAURAC" + "codePostal": "33550", + "codeCommune": "33549", + "libelleAcheminement": "VILLENAVE DE RIONS", + "nomCommune": "VILLENAVE DE RIONS" }, { - "codePostal": "11800", - "codeCommune": "11198", - "libelleAcheminement": "LAURE MINERVOIS", - "nomCommune": "LAURE MINERVOIS" + "codePostal": "33140", + "codeCommune": "33550", + "libelleAcheminement": "VILLENAVE D ORNON", + "nomCommune": "VILLENAVE D ORNON" }, { - "codePostal": "11370", - "codeCommune": "11202", - "libelleAcheminement": "LEUCATE", - "nomCommune": "LEUCATE" + "codePostal": "33710", + "codeCommune": "33551", + "libelleAcheminement": "VILLENEUVE", + "nomCommune": "VILLENEUVE" }, { - "codePostal": "11300", - "codeCommune": "11207", - "libelleAcheminement": "LOUPIA", - "nomCommune": "LOUPIA" + "codePostal": "34380", + "codeCommune": "34012", + "libelleAcheminement": "ARGELLIERS", + "nomCommune": "ARGELLIERS" }, { - "codePostal": "11190", - "codeCommune": "11209", - "libelleAcheminement": "LUC SUR AUDE", - "nomCommune": "LUC SUR AUDE" + "codePostal": "34210", + "codeCommune": "34020", + "libelleAcheminement": "AZILLANET", + "nomCommune": "AZILLANET" }, { - "codePostal": "11300", - "codeCommune": "11211", - "libelleAcheminement": "MAGRIE", - "nomCommune": "MAGRIE" + "codePostal": "34670", + "codeCommune": "34022", + "libelleAcheminement": "BAILLARGUES", + "nomCommune": "BAILLARGUES" }, { - "codePostal": "11330", - "codeCommune": "11213", - "libelleAcheminement": "MAISONS", - "nomCommune": "MAISONS" + "codePostal": "34540", + "codeCommune": "34023", + "libelleAcheminement": "BALARUC LES BAINS", + "nomCommune": "BALARUC LES BAINS" }, { - "codePostal": "11600", - "codeCommune": "11215", - "libelleAcheminement": "MALVES EN MINERVOIS", - "nomCommune": "MALVES EN MINERVOIS" + "codePostal": "34160", + "codeCommune": "34027", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "11570", - "codeCommune": "11223", - "libelleAcheminement": "MAS DES COURS", - "nomCommune": "MAS DES COURS" + "codePostal": "34260", + "codeCommune": "34038", + "libelleAcheminement": "LE BOUSQUET D ORB", + "nomCommune": "LE BOUSQUET D ORB" }, { - "codePostal": "11240", - "codeCommune": "11228", - "libelleAcheminement": "MAZEROLLES DU RAZES", - "nomCommune": "MAZEROLLES DU RAZES" + "codePostal": "34480", + "codeCommune": "34044", + "libelleAcheminement": "CABREROLLES", + "nomCommune": "CABREROLLES" }, { - "codePostal": "11140", - "codeCommune": "11230", - "libelleAcheminement": "MERIAL", - "nomCommune": "MERIAL" + "codePostal": "34160", + "codeCommune": "34048", + "libelleAcheminement": "CAMPAGNE", + "nomCommune": "CAMPAGNE" }, { - "codePostal": "11380", - "codeCommune": "11232", - "libelleAcheminement": "MIRAVAL CABARDES", - "nomCommune": "MIRAVAL CABARDES" + "codePostal": "34130", + "codeCommune": "34050", + "libelleAcheminement": "CANDILLARGUES", + "nomCommune": "CANDILLARGUES" }, { - "codePostal": "11410", - "codeCommune": "11238", - "libelleAcheminement": "MOLLEVILLE", - "nomCommune": "MOLLEVILLE" + "codePostal": "34800", + "codeCommune": "34051", + "libelleAcheminement": "CANET", + "nomCommune": "CANET" }, { - "codePostal": "11410", - "codeCommune": "11239", - "libelleAcheminement": "MONTAURIOL", - "nomCommune": "MONTAURIOL" + "codePostal": "34120", + "codeCommune": "34056", + "libelleAcheminement": "CASTELNAU DE GUERS", + "nomCommune": "CASTELNAU DE GUERS" }, { - "codePostal": "11190", - "codeCommune": "11240", - "libelleAcheminement": "MONTAZELS", - "nomCommune": "MONTAZELS" + "codePostal": "34210", + "codeCommune": "34059", + "libelleAcheminement": "LA CAUNETTE", + "nomCommune": "LA CAUNETTE" }, { - "codePostal": "11700", - "codeCommune": "11241", - "libelleAcheminement": "MONTBRUN DES CORBIERES", - "nomCommune": "MONTBRUN DES CORBIERES" + "codePostal": "34460", + "codeCommune": "34065", + "libelleAcheminement": "CAZEDARNES", + "nomCommune": "CAZEDARNES" }, { - "codePostal": "11240", - "codeCommune": "11247", - "libelleAcheminement": "MONTHAUT", - "nomCommune": "MONTHAUT" + "codePostal": "34260", + "codeCommune": "34071", + "libelleAcheminement": "CEILHES ET ROCOZELS", + "nomCommune": "CEILHES ET ROCOZELS" }, { - "codePostal": "11170", - "codeCommune": "11259", - "libelleAcheminement": "MOUSSOULENS", - "nomCommune": "MOUSSOULENS" + "codePostal": "34800", + "codeCommune": "34076", + "libelleAcheminement": "CEYRAS", + "nomCommune": "CEYRAS" }, { - "codePostal": "11200", - "codeCommune": "11264", - "libelleAcheminement": "NEVIAN", - "nomCommune": "NEVIAN" + "codePostal": "34240", + "codeCommune": "34083", + "libelleAcheminement": "COMBES", + "nomCommune": "COMBES" }, { - "codePostal": "11210", - "codeCommune": "11266", - "libelleAcheminement": "PORT LA NOUVELLE", - "nomCommune": "PORT LA NOUVELLE" + "codePostal": "34290", + "codeCommune": "34085", + "libelleAcheminement": "COULOBRES", + "nomCommune": "COULOBRES" }, { - "codePostal": "11700", - "codeCommune": "11280", - "libelleAcheminement": "PEPIEUX", - "nomCommune": "PEPIEUX" + "codePostal": "34220", + "codeCommune": "34086", + "libelleAcheminement": "COURNIOU", + "nomCommune": "COURNIOU" }, { - "codePostal": "11230", - "codeCommune": "11282", - "libelleAcheminement": "PEYREFITTE DU RAZES", - "nomCommune": "PEYREFITTE DU RAZES" + "codePostal": "34660", + "codeCommune": "34087", + "libelleAcheminement": "COURNONSEC", + "nomCommune": "COURNONSEC" }, { - "codePostal": "11420", - "codeCommune": "11283", - "libelleAcheminement": "PEYREFITTE SUR L HERS", - "nomCommune": "PEYREFITTE SUR L HERS" + "codePostal": "34520", + "codeCommune": "34091", + "libelleAcheminement": "LE CROS", + "nomCommune": "LE CROS" }, { - "codePostal": "11190", - "codeCommune": "11287", - "libelleAcheminement": "PEYROLLES", - "nomCommune": "PEYROLLES" + "codePostal": "34310", + "codeCommune": "34092", + "libelleAcheminement": "CRUZY", + "nomCommune": "CRUZY" }, { - "codePostal": "11300", - "codeCommune": "11289", - "libelleAcheminement": "PIEUSSE", - "nomCommune": "PIEUSSE" + "codePostal": "34290", + "codeCommune": "34094", + "libelleAcheminement": "ESPONDEILHAN", + "nomCommune": "ESPONDEILHAN" }, { - "codePostal": "11400", - "codeCommune": "11292", - "libelleAcheminement": "LA POMAREDE", - "nomCommune": "LA POMAREDE" + "codePostal": "34690", + "codeCommune": "34095", + "libelleAcheminement": "FABREGUES", + "nomCommune": "FABREGUES" }, { - "codePostal": "11160", - "codeCommune": "11315", - "libelleAcheminement": "RIEUX MINERVOIS", - "nomCommune": "RIEUX MINERVOIS" + "codePostal": "34600", + "codeCommune": "34096", + "libelleAcheminement": "FAUGERES", + "nomCommune": "FAUGERES" }, { - "codePostal": "11230", - "codeCommune": "11316", - "libelleAcheminement": "RIVEL", - "nomCommune": "RIVEL" + "codePostal": "34770", + "codeCommune": "34113", + "libelleAcheminement": "GIGEAN", + "nomCommune": "GIGEAN" }, { - "codePostal": "11700", - "codeCommune": "11318", - "libelleAcheminement": "ROQUECOURBE MINERVOIS", - "nomCommune": "ROQUECOURBE MINERVOIS" + "codePostal": "34150", + "codeCommune": "34114", + "libelleAcheminement": "GIGNAC", + "nomCommune": "GIGNAC" }, { - "codePostal": "11200", - "codeCommune": "11324", - "libelleAcheminement": "ROUBIA", - "nomCommune": "ROUBIA" + "codePostal": "34800", + "codeCommune": "34124", + "libelleAcheminement": "LACOSTE", + "nomCommune": "LACOSTE" }, { - "codePostal": "11250", - "codeCommune": "11325", - "libelleAcheminement": "ROUFFIAC D AUDE", - "nomCommune": "ROUFFIAC D AUDE" + "codePostal": "34970", + "codeCommune": "34129", + "libelleAcheminement": "LATTES", + "nomCommune": "LATTES" }, { - "codePostal": "11350", - "codeCommune": "11326", - "libelleAcheminement": "ROUFFIAC DES CORBIERES", - "nomCommune": "ROUFFIAC DES CORBIERES" + "codePostal": "34000", + "codeCommune": "34172", + "libelleAcheminement": "MONTPELLIER", + "nomCommune": "MONTPELLIER" }, { - "codePostal": "11240", - "codeCommune": "11328", - "libelleAcheminement": "ROUTIER", - "nomCommune": "ROUTIER" + "codePostal": "34070", + "codeCommune": "34172", + "libelleAcheminement": "MONTPELLIER", + "nomCommune": "MONTPELLIER" }, { - "codePostal": "11500", - "codeCommune": "11341", - "libelleAcheminement": "ST FERRIOL", - "nomCommune": "ST FERRIOL" + "codePostal": "34190", + "codeCommune": "34174", + "libelleAcheminement": "MOULES ET BAUCELS", + "nomCommune": "MOULES ET BAUCELS" }, { - "codePostal": "11500", - "codeCommune": "11347", - "libelleAcheminement": "ST JULIA DE BEC", - "nomCommune": "ST JULIA DE BEC" + "codePostal": "34130", + "codeCommune": "34176", + "libelleAcheminement": "MUDAISON", + "nomCommune": "MUDAISON" }, { - "codePostal": "11270", - "codeCommune": "11348", - "libelleAcheminement": "ST JULIEN DE BRIOLA", - "nomCommune": "ST JULIEN DE BRIOLA" + "codePostal": "34120", + "codeCommune": "34182", + "libelleAcheminement": "NEZIGNAN L EVEQUE", + "nomCommune": "NEZIGNAN L EVEQUE" }, { - "codePostal": "11300", - "codeCommune": "11364", - "libelleAcheminement": "ST POLYCARPE", - "nomCommune": "ST POLYCARPE" + "codePostal": "34700", + "codeCommune": "34196", + "libelleAcheminement": "PEGAIROLLES DE L ESCALETTE", + "nomCommune": "PEGAIROLLES DE L ESCALETTE" }, { - "codePostal": "11120", - "codeCommune": "11366", - "libelleAcheminement": "STE VALIERE", - "nomCommune": "STE VALIERE" + "codePostal": "34360", + "codeCommune": "34201", + "libelleAcheminement": "PIERRERUE", + "nomCommune": "PIERRERUE" }, { - "codePostal": "11230", - "codeCommune": "11380", - "libelleAcheminement": "SONNAC SUR L HERS", - "nomCommune": "SONNAC SUR L HERS" + "codePostal": "34600", + "codeCommune": "34211", + "libelleAcheminement": "LE POUJOL SUR ORB", + "nomCommune": "LE POUJOL SUR ORB" }, { - "codePostal": "11190", - "codeCommune": "11381", - "libelleAcheminement": "SOUGRAIGNE", - "nomCommune": "SOUGRAIGNE" + "codePostal": "34360", + "codeCommune": "34218", + "libelleAcheminement": "PRADES SUR VERNAZOBRE", + "nomCommune": "PRADES SUR VERNAZOBRE" }, { - "codePostal": "11330", - "codeCommune": "11384", - "libelleAcheminement": "SOULATGE", - "nomCommune": "SOULATGE" + "codePostal": "34700", + "codeCommune": "34220", + "libelleAcheminement": "LE PUECH", + "nomCommune": "LE PUECH" }, { - "codePostal": "11220", - "codeCommune": "11386", - "libelleAcheminement": "TALAIRAN", - "nomCommune": "TALAIRAN" + "codePostal": "34480", + "codeCommune": "34224", + "libelleAcheminement": "PUISSALICON", + "nomCommune": "PUISSALICON" }, { - "codePostal": "11300", - "codeCommune": "11394", - "libelleAcheminement": "TOURREILLES", - "nomCommune": "TOURREILLES" + "codePostal": "34620", + "codeCommune": "34225", + "libelleAcheminement": "PUISSERGUIER", + "nomCommune": "PUISSERGUIER" }, { - "codePostal": "11160", - "codeCommune": "11395", - "libelleAcheminement": "TRASSANEL", - "nomCommune": "TRASSANEL" + "codePostal": "34520", + "codeCommune": "34230", + "libelleAcheminement": "LES RIVES", + "nomCommune": "LES RIVES" }, { - "codePostal": "11160", - "codeCommune": "11396", - "libelleAcheminement": "TRAUSSE", - "nomCommune": "TRAUSSE" + "codePostal": "34610", + "codeCommune": "34235", + "libelleAcheminement": "ROSIS", + "nomCommune": "ROSIS" }, { - "codePostal": "11250", - "codeCommune": "11415", - "libelleAcheminement": "VILLAR ST ANSELME", - "nomCommune": "VILLAR ST ANSELME" + "codePostal": "34130", + "codeCommune": "34240", + "libelleAcheminement": "ST AUNES", + "nomCommune": "ST AUNES" }, { - "codePostal": "11150", - "codeCommune": "11418", - "libelleAcheminement": "VILLASAVARY", - "nomCommune": "VILLASAVARY" + "codePostal": "34190", + "codeCommune": "34243", + "libelleAcheminement": "ST BAUZILLE DE PUTOIS", + "nomCommune": "ST BAUZILLE DE PUTOIS" }, { - "codePostal": "11420", - "codeCommune": "11419", - "libelleAcheminement": "VILLAUTOU", - "nomCommune": "VILLAUTOU" + "codePostal": "34700", + "codeCommune": "34251", + "libelleAcheminement": "ST ETIENNE DE GOURGAS", + "nomCommune": "ST ETIENNE DE GOURGAS" }, { - "codePostal": "11250", - "codeCommune": "11420", - "libelleAcheminement": "VILLEBAZY", - "nomCommune": "VILLEBAZY" + "codePostal": "34520", + "codeCommune": "34253", + "libelleAcheminement": "ST FELIX DE L HERAS", + "nomCommune": "ST FELIX DE L HERAS" }, { - "codePostal": "11160", - "codeCommune": "11433", - "libelleAcheminement": "VILLENEUVE MINERVOIS", - "nomCommune": "VILLENEUVE MINERVOIS" + "codePostal": "34610", + "codeCommune": "34257", + "libelleAcheminement": "ST GENIES DE VARENSAL", + "nomCommune": "ST GENIES DE VARENSAL" }, { - "codePostal": "11330", - "codeCommune": "11435", - "libelleAcheminement": "VILLEROUGE TERMENES", - "nomCommune": "VILLEROUGE TERMENES" + "codePostal": "34160", + "codeCommune": "34263", + "libelleAcheminement": "ST HILAIRE DE BEAUVOIR", + "nomCommune": "ST HILAIRE DE BEAUVOIR" }, { - "codePostal": "11110", - "codeCommune": "11441", - "libelleAcheminement": "VINASSAN", - "nomCommune": "VINASSAN" + "codePostal": "34270", + "codeCommune": "34266", + "libelleAcheminement": "ST JEAN DE CUCULLES", + "nomCommune": "ST JEAN DE CUCULLES" }, { - "codePostal": "12390", - "codeCommune": "12008", - "libelleAcheminement": "ANGLARS ST FELIX", - "nomCommune": "ANGLARS ST FELIX" + "codePostal": "34700", + "codeCommune": "34268", + "libelleAcheminement": "ST JEAN DE LA BLAQUIERE", + "nomCommune": "ST JEAN DE LA BLAQUIERE" }, { - "codePostal": "12290", - "codeCommune": "12010", - "libelleAcheminement": "ARQUES", - "nomCommune": "ARQUES" + "codePostal": "34390", + "codeCommune": "34271", + "libelleAcheminement": "ST JULIEN", + "nomCommune": "ST JULIEN" }, { - "codePostal": "12110", - "codeCommune": "12013", - "libelleAcheminement": "AUBIN", - "nomCommune": "AUBIN" + "codePostal": "34400", + "codeCommune": "34272", + "libelleAcheminement": "ST JUST", + "nomCommune": "ST JUST" }, { - "codePostal": "12200", - "codeCommune": "12021", - "libelleAcheminement": "LE BAS SEGALA", - "nomCommune": "LE BAS SEGALA" + "codePostal": "34190", + "codeCommune": "34277", + "libelleAcheminement": "ST MAURICE NAVACELLES", + "nomCommune": "ST MAURICE NAVACELLES" }, { - "codePostal": "12550", - "codeCommune": "12023", - "libelleAcheminement": "LA BASTIDE SOLAGES", - "nomCommune": "LA BASTIDE SOLAGES" + "codePostal": "34520", + "codeCommune": "34277", + "libelleAcheminement": "ST MAURICE NAVACELLES", + "nomCommune": "ST MAURICE NAVACELLES" }, { - "codePostal": "12390", - "codeCommune": "12024", - "libelleAcheminement": "BELCASTEL", - "nomCommune": "BELCASTEL" + "codePostal": "34160", + "codeCommune": "34296", + "libelleAcheminement": "SAUSSINES", + "nomCommune": "SAUSSINES" }, { - "codePostal": "12300", - "codeCommune": "12028", - "libelleAcheminement": "BOISSE PENCHOT", - "nomCommune": "BOISSE PENCHOT" + "codePostal": "34210", + "codeCommune": "34302", + "libelleAcheminement": "SIRAN", + "nomCommune": "SIRAN" }, { - "codePostal": "12300", - "codeCommune": "12030", - "libelleAcheminement": "BOUILLAC", - "nomCommune": "BOUILLAC" + "codePostal": "34520", + "codeCommune": "34303", + "libelleAcheminement": "SORBS", + "nomCommune": "SORBS" }, { - "codePostal": "12600", - "codeCommune": "12036", - "libelleAcheminement": "BROMMAT", - "nomCommune": "BROMMAT" + "codePostal": "34230", + "codeCommune": "34315", + "libelleAcheminement": "USCLAS D HERAULT", + "nomCommune": "USCLAS D HERAULT" }, { - "codePostal": "12480", - "codeCommune": "12038", - "libelleAcheminement": "BROUSSE LE CHATEAU", - "nomCommune": "BROUSSE LE CHATEAU" + "codePostal": "34740", + "codeCommune": "34327", + "libelleAcheminement": "VENDARGUES", + "nomCommune": "VENDARGUES" }, { - "codePostal": "12450", - "codeCommune": "12043", - "libelleAcheminement": "CALMONT", - "nomCommune": "CALMONT" + "codePostal": "34450", + "codeCommune": "34332", + "libelleAcheminement": "VIAS", + "nomCommune": "VIAS" }, { - "codePostal": "12360", - "codeCommune": "12044", - "libelleAcheminement": "CAMARES", - "nomCommune": "CAMARES" + "codePostal": "34390", + "codeCommune": "34334", + "libelleAcheminement": "VIEUSSAN", + "nomCommune": "VIEUSSAN" }, { - "codePostal": "12580", - "codeCommune": "12049", - "libelleAcheminement": "CAMPUAC", - "nomCommune": "CAMPUAC" + "codePostal": "34600", + "codeCommune": "34335", + "libelleAcheminement": "VILLEMAGNE L ARGENTIERE", + "nomCommune": "VILLEMAGNE L ARGENTIERE" }, { - "codePostal": "12520", - "codeCommune": "12070", - "libelleAcheminement": "COMPEYRE", - "nomCommune": "COMPEYRE" + "codePostal": "34420", + "codeCommune": "34336", + "libelleAcheminement": "VILLENEUVE LES BEZIERS", + "nomCommune": "VILLENEUVE LES BEZIERS" }, { - "codePostal": "12120", - "codeCommune": "12073", - "libelleAcheminement": "COMPS LA GRAND VILLE", - "nomCommune": "COMPS LA GRAND VILLE" + "codePostal": "35690", + "codeCommune": "35001", + "libelleAcheminement": "ACIGNE", + "nomCommune": "ACIGNE" }, { - "codePostal": "12320", - "codeCommune": "12076", - "libelleAcheminement": "CONQUES EN ROUERGUE", - "nomCommune": "CONQUES EN ROUERGUE" + "codePostal": "35560", + "codeCommune": "35004", + "libelleAcheminement": "VAL COUESNON", + "nomCommune": "VAL COUESNON" }, { - "codePostal": "12320", - "codeCommune": "12076", - "libelleAcheminement": "CONQUES EN ROUERGUE", - "nomCommune": "CONQUES EN ROUERGUE" + "codePostal": "35120", + "codeCommune": "35010", + "libelleAcheminement": "BAGUER PICAN", + "nomCommune": "BAGUER PICAN" }, { - "codePostal": "12190", - "codeCommune": "12079", - "libelleAcheminement": "COUBISOU", - "nomCommune": "COUBISOU" + "codePostal": "35580", + "codeCommune": "35016", + "libelleAcheminement": "BAULON", + "nomCommune": "BAULON" }, { - "codePostal": "12100", - "codeCommune": "12084", - "libelleAcheminement": "CREISSELS", - "nomCommune": "CREISSELS" + "codePostal": "35190", + "codeCommune": "35017", + "libelleAcheminement": "LA BAUSSAINE", + "nomCommune": "LA BAUSSAINE" }, { - "codePostal": "12800", - "codeCommune": "12085", - "libelleAcheminement": "CRESPIN", - "nomCommune": "CRESPIN" + "codePostal": "35133", + "codeCommune": "35021", + "libelleAcheminement": "BEAUCE", + "nomCommune": "BEAUCE" }, { - "codePostal": "12170", - "codeCommune": "12092", - "libelleAcheminement": "DURENQUE", - "nomCommune": "DURENQUE" + "codePostal": "35133", + "codeCommune": "35025", + "libelleAcheminement": "BILLE", + "nomCommune": "BILLE" }, { - "codePostal": "12260", - "codeCommune": "12104", - "libelleAcheminement": "FOISSAC", - "nomCommune": "FOISSAC" + "codePostal": "35120", + "codeCommune": "35044", + "libelleAcheminement": "BROUALAN", + "nomCommune": "BROUALAN" }, { - "codePostal": "12270", - "codeCommune": "12105", - "libelleAcheminement": "LA FOUILLADE", - "nomCommune": "LA FOUILLADE" + "codePostal": "35550", + "codeCommune": "35045", + "libelleAcheminement": "BRUC SUR AFF", + "nomCommune": "BRUC SUR AFF" }, { - "codePostal": "12160", - "codeCommune": "12113", - "libelleAcheminement": "GRAMOND", - "nomCommune": "GRAMOND" + "codePostal": "35170", + "codeCommune": "35047", + "libelleAcheminement": "BRUZ", + "nomCommune": "BRUZ" }, { - "codePostal": "12460", - "codeCommune": "12116", - "libelleAcheminement": "HUPARLAC", - "nomCommune": "HUPARLAC" + "codePostal": "35510", + "codeCommune": "35051", + "libelleAcheminement": "CESSON SEVIGNE", + "nomCommune": "CESSON SEVIGNE" }, { - "codePostal": "12500", - "codeCommune": "12124", - "libelleAcheminement": "LASSOUTS", - "nomCommune": "LASSOUTS" + "codePostal": "35190", + "codeCommune": "35056", + "libelleAcheminement": "LA CHAPELLE AUX FILTZMEENS", + "nomCommune": "LA CHAPELLE AUX FILTZMEENS" }, { - "codePostal": "12430", - "codeCommune": "12129", - "libelleAcheminement": "LESTRADE ET THOUELS", - "nomCommune": "LESTRADE ET THOUELS" + "codePostal": "35630", + "codeCommune": "35058", + "libelleAcheminement": "LA CHAPELLE CHAUSSEE", + "nomCommune": "LA CHAPELLE CHAUSSEE" }, { - "codePostal": "12450", - "codeCommune": "12133", - "libelleAcheminement": "LUC LA PRIMAUBE", - "nomCommune": "LUC LA PRIMAUBE" + "codePostal": "35360", + "codeCommune": "35060", + "libelleAcheminement": "LA CHAPELLE DU LOU DU LAC", + "nomCommune": "LA CHAPELLE DU LOU DU LAC" }, { - "codePostal": "12350", - "codeCommune": "12136", - "libelleAcheminement": "MALEVILLE", - "nomCommune": "MALEVILLE" + "codePostal": "35140", + "codeCommune": "35063", + "libelleAcheminement": "LA CHAPELLE ST AUBERT", + "nomCommune": "LA CHAPELLE ST AUBERT" }, { - "codePostal": "12490", - "codeCommune": "12153", - "libelleAcheminement": "MONTJAUX", - "nomCommune": "MONTJAUX" + "codePostal": "35131", + "codeCommune": "35066", + "libelleAcheminement": "CHARTRES DE BRETAGNE", + "nomCommune": "CHARTRES DE BRETAGNE" }, { - "codePostal": "12400", - "codeCommune": "12154", - "libelleAcheminement": "MONTLAUR", - "nomCommune": "MONTLAUR" + "codePostal": "35220", + "codeCommune": "35068", + "libelleAcheminement": "CHATEAUBOURG", + "nomCommune": "CHATEAUBOURG" }, { - "codePostal": "12600", - "codeCommune": "12166", - "libelleAcheminement": "MUROLS", - "nomCommune": "MUROLS" + "codePostal": "35210", + "codeCommune": "35072", + "libelleAcheminement": "CHATILLON EN VENDELAIS", + "nomCommune": "CHATILLON EN VENDELAIS" }, { - "codePostal": "12230", - "codeCommune": "12168", - "libelleAcheminement": "NANT", - "nomCommune": "NANT" + "codePostal": "35310", + "codeCommune": "35076", + "libelleAcheminement": "CHAVAGNE", + "nomCommune": "CHAVAGNE" }, { - "codePostal": "12800", - "codeCommune": "12169", - "libelleAcheminement": "NAUCELLE", - "nomCommune": "NAUCELLE" + "codePostal": "35290", + "codeCommune": "35091", + "libelleAcheminement": "LE CROUAIS", + "nomCommune": "LE CROUAIS" }, { - "codePostal": "12310", - "codeCommune": "12177", - "libelleAcheminement": "PALMAS D AVEYRON", - "nomCommune": "PALMAS D AVEYRON" + "codePostal": "35800", + "codeCommune": "35093", + "libelleAcheminement": "DINARD", + "nomCommune": "DINARD" }, { - "codePostal": "12310", - "codeCommune": "12177", - "libelleAcheminement": "PALMAS D AVEYRON", - "nomCommune": "PALMAS D AVEYRON" + "codePostal": "35680", + "codeCommune": "35097", + "libelleAcheminement": "DOMALAIN", + "nomCommune": "DOMALAIN" }, { - "codePostal": "12720", - "codeCommune": "12180", - "libelleAcheminement": "PEYRELEAU", - "nomCommune": "PEYRELEAU" + "codePostal": "35410", + "codeCommune": "35099", + "libelleAcheminement": "DOMLOUP", + "nomCommune": "DOMLOUP" }, { - "codePostal": "12220", - "codeCommune": "12181", - "libelleAcheminement": "PEYRUSSE LE ROC", - "nomCommune": "PEYRUSSE LE ROC" + "codePostal": "35340", + "codeCommune": "35107", + "libelleAcheminement": "ERCE PRES LIFFRE", + "nomCommune": "ERCE PRES LIFFRE" }, { - "codePostal": "12130", - "codeCommune": "12184", - "libelleAcheminement": "POMAYROLS", - "nomCommune": "POMAYROLS" + "codePostal": "35640", + "codeCommune": "35114", + "libelleAcheminement": "FORGES LA FORET", + "nomCommune": "FORGES LA FORET" }, { - "codePostal": "12800", - "codeCommune": "12194", - "libelleAcheminement": "QUINS", - "nomCommune": "QUINS" + "codePostal": "35290", + "codeCommune": "35117", + "libelleAcheminement": "GAEL", + "nomCommune": "GAEL" }, { - "codePostal": "12400", - "codeCommune": "12195", - "libelleAcheminement": "REBOURGUIL", - "nomCommune": "REBOURGUIL" + "codePostal": "35370", + "codeCommune": "35119", + "libelleAcheminement": "GENNES SUR SEICHE", + "nomCommune": "GENNES SUR SEICHE" }, { - "codePostal": "12170", - "codeCommune": "12197", - "libelleAcheminement": "REQUISTA", - "nomCommune": "REQUISTA" + "codePostal": "35120", + "codeCommune": "35132", + "libelleAcheminement": "HIREL", + "nomCommune": "HIREL" }, { - "codePostal": "12100", - "codeCommune": "12204", - "libelleAcheminement": "LA ROQUE STE MARGUERITE", - "nomCommune": "LA ROQUE STE MARGUERITE" + "codePostal": "35120", + "codeCommune": "35132", + "libelleAcheminement": "HIREL", + "nomCommune": "HIREL" }, { - "codePostal": "12200", - "codeCommune": "12205", - "libelleAcheminement": "LA ROUQUETTE", - "nomCommune": "LA ROUQUETTE" + "codePostal": "35133", + "codeCommune": "35138", + "libelleAcheminement": "LAIGNELET", + "nomCommune": "LAIGNELET" }, { - "codePostal": "12120", - "codeCommune": "12207", - "libelleAcheminement": "RULLAC ST CIRQ", - "nomCommune": "RULLAC ST CIRQ" + "codePostal": "35320", + "codeCommune": "35140", + "libelleAcheminement": "LALLEU", + "nomCommune": "LALLEU" }, { - "codePostal": "12400", - "codeCommune": "12208", - "libelleAcheminement": "ST AFFRIQUE", - "nomCommune": "ST AFFRIQUE" + "codePostal": "35270", + "codeCommune": "35148", + "libelleAcheminement": "LANRIGAN", + "nomCommune": "LANRIGAN" }, { - "codePostal": "12330", - "codeCommune": "12215", - "libelleAcheminement": "ST CHRISTOPHE VALLON", - "nomCommune": "ST CHRISTOPHE VALLON" + "codePostal": "35550", + "codeCommune": "35155", + "libelleAcheminement": "LOHEAC", + "nomCommune": "LOHEAC" }, { - "codePostal": "12500", - "codeCommune": "12216", - "libelleAcheminement": "ST COME D OLT", - "nomCommune": "ST COME D OLT" + "codePostal": "35133", + "codeCommune": "35157", + "libelleAcheminement": "LE LOROUX", + "nomCommune": "LE LOROUX" }, { - "codePostal": "12420", - "codeCommune": "12223", - "libelleAcheminement": "ARGENCES EN AUBRAC", - "nomCommune": "ARGENCES EN AUBRAC" + "codePostal": "35330", + "codeCommune": "35160", + "libelleAcheminement": "LOUTEHEL", + "nomCommune": "LOUTEHEL" }, { - "codePostal": "12130", - "codeCommune": "12224", - "libelleAcheminement": "ST GENIEZ D OLT ET D AUBRAC", - "nomCommune": "ST GENIEZ D OLT ET D AUBRAC" + "codePostal": "35380", + "codeCommune": "35169", + "libelleAcheminement": "MAXENT", + "nomCommune": "MAXENT" }, { - "codePostal": "12100", - "codeCommune": "12225", - "libelleAcheminement": "ST GEORGES DE LUZENCON", - "nomCommune": "ST GEORGES DE LUZENCON" + "codePostal": "35210", + "codeCommune": "35185", + "libelleAcheminement": "MONTAUTOUR", + "nomCommune": "MONTAUTOUR" }, { - "codePostal": "12800", - "codeCommune": "12235", - "libelleAcheminement": "ST JUST SUR VIAUR", - "nomCommune": "ST JUST SUR VIAUR" + "codePostal": "35160", + "codeCommune": "35188", + "libelleAcheminement": "MONTFORT SUR MEU", + "nomCommune": "MONTFORT SUR MEU" }, { - "codePostal": "12560", - "codeCommune": "12237", - "libelleAcheminement": "ST LAURENT D OLT", - "nomCommune": "ST LAURENT D OLT" + "codePostal": "35420", + "codeCommune": "35190", + "libelleAcheminement": "MONTHAULT", + "nomCommune": "MONTHAULT" }, { - "codePostal": "12200", - "codeCommune": "12242", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "35130", + "codeCommune": "35200", + "libelleAcheminement": "MOUTIERS", + "nomCommune": "MOUTIERS" }, { - "codePostal": "12560", - "codeCommune": "12247", - "libelleAcheminement": "ST SATURNIN DE LENNE", - "nomCommune": "ST SATURNIN DE LENNE" + "codePostal": "35470", + "codeCommune": "35202", + "libelleAcheminement": "LA NOE BLANCHE", + "nomCommune": "LA NOE BLANCHE" }, { - "codePostal": "12380", - "codeCommune": "12248", - "libelleAcheminement": "ST SERNIN SUR RANCE", - "nomCommune": "ST SERNIN SUR RANCE" + "codePostal": "35137", + "codeCommune": "35203", + "libelleAcheminement": "LA NOUAYE", + "nomCommune": "LA NOUAYE" }, { - "codePostal": "12400", - "codeCommune": "12251", - "libelleAcheminement": "ST VICTOR ET MELVIEU", - "nomCommune": "ST VICTOR ET MELVIEU" + "codePostal": "35850", + "codeCommune": "35216", + "libelleAcheminement": "PARTHENAY DE BRETAGNE", + "nomCommune": "PARTHENAY DE BRETAGNE" }, { - "codePostal": "12260", - "codeCommune": "12256", - "libelleAcheminement": "SALVAGNAC CAJARC", - "nomCommune": "SALVAGNAC CAJARC" + "codePostal": "35720", + "codeCommune": "35225", + "libelleAcheminement": "PLESDER", + "nomCommune": "PLESDER" }, { - "codePostal": "12230", - "codeCommune": "12260", - "libelleAcheminement": "SAUCLIERES", - "nomCommune": "SAUCLIERES" + "codePostal": "35720", + "codeCommune": "35226", + "libelleAcheminement": "PLEUGUENEUC", + "nomCommune": "PLEUGUENEUC" }, { - "codePostal": "12380", - "codeCommune": "12269", - "libelleAcheminement": "LA SERRE", - "nomCommune": "LA SERRE" + "codePostal": "35420", + "codeCommune": "35230", + "libelleAcheminement": "POILLEY", + "nomCommune": "POILLEY" }, { - "codePostal": "12360", - "codeCommune": "12274", - "libelleAcheminement": "SYLVANES", - "nomCommune": "SYLVANES" + "codePostal": "35210", + "codeCommune": "35232", + "libelleAcheminement": "PRINCE", + "nomCommune": "PRINCE" }, { - "codePostal": "12600", - "codeCommune": "12277", - "libelleAcheminement": "TAUSSAC", - "nomCommune": "TAUSSAC" + "codePostal": "35130", + "codeCommune": "35235", + "libelleAcheminement": "RANNEE", + "nomCommune": "RANNEE" }, { - "codePostal": "12330", - "codeCommune": "12288", - "libelleAcheminement": "VALADY", - "nomCommune": "VALADY" + "codePostal": "35600", + "codeCommune": "35236", + "libelleAcheminement": "REDON", + "nomCommune": "REDON" }, { - "codePostal": "12220", - "codeCommune": "12289", - "libelleAcheminement": "VALZERGUES", - "nomCommune": "VALZERGUES" + "codePostal": "35660", + "codeCommune": "35237", + "libelleAcheminement": "RENAC", + "nomCommune": "RENAC" }, { - "codePostal": "12220", - "codeCommune": "12290", - "libelleAcheminement": "VAUREILLES", - "nomCommune": "VAUREILLES" + "codePostal": "35133", + "codeCommune": "35243", + "libelleAcheminement": "ROMAGNE", + "nomCommune": "ROMAGNE" }, { - "codePostal": "12520", - "codeCommune": "12291", - "libelleAcheminement": "VERRIERES", - "nomCommune": "VERRIERES" + "codePostal": "35114", + "codeCommune": "35255", + "libelleAcheminement": "ST BENOIT DES ONDES", + "nomCommune": "ST BENOIT DES ONDES" }, { - "codePostal": "12780", - "codeCommune": "12294", - "libelleAcheminement": "VEZINS DE LEVEZOU", - "nomCommune": "VEZINS DE LEVEZOU" + "codePostal": "35460", + "codeCommune": "35257", + "libelleAcheminement": "MAEN ROCH", + "nomCommune": "MAEN ROCH" }, { - "codePostal": "12250", - "codeCommune": "12295", - "libelleAcheminement": "VIALA DU PAS DE JAUX", - "nomCommune": "VIALA DU PAS DE JAUX" + "codePostal": "35220", + "codeCommune": "35264", + "libelleAcheminement": "ST DIDIER", + "nomCommune": "ST DIDIER" }, { - "codePostal": "12260", - "codeCommune": "12301", - "libelleAcheminement": "VILLENEUVE", - "nomCommune": "VILLENEUVE" + "codePostal": "35550", + "codeCommune": "35268", + "libelleAcheminement": "ST GANTON", + "nomCommune": "ST GANTON" }, { - "codePostal": "13090", - "codeCommune": "13001", - "libelleAcheminement": "AIX EN PROVENCE", - "nomCommune": "AIX EN PROVENCE" + "codePostal": "35250", + "codeCommune": "35274", + "libelleAcheminement": "ST GERMAIN SUR ILLE", + "nomCommune": "ST GERMAIN SUR ILLE" }, { - "codePostal": "13100", - "codeCommune": "13001", - "libelleAcheminement": "AIX EN PROVENCE", - "nomCommune": "AIX EN PROVENCE" + "codePostal": "35760", + "codeCommune": "35278", + "libelleAcheminement": "ST GREGOIRE", + "nomCommune": "ST GREGOIRE" }, { - "codePostal": "13280", - "codeCommune": "13004", - "libelleAcheminement": "ARLES", - "nomCommune": "ARLES" + "codePostal": "35140", + "codeCommune": "35280", + "libelleAcheminement": "ST HILAIRE DES LANDES", + "nomCommune": "ST HILAIRE DES LANDES" }, { - "codePostal": "13570", - "codeCommune": "13010", - "libelleAcheminement": "BARBENTANE", - "nomCommune": "BARBENTANE" + "codePostal": "35136", + "codeCommune": "35281", + "libelleAcheminement": "ST JACQUES DE LA LANDE", + "nomCommune": "ST JACQUES DE LA LANDE" }, { - "codePostal": "13720", - "codeCommune": "13013", - "libelleAcheminement": "BELCODENE", - "nomCommune": "BELCODENE" + "codePostal": "35140", + "codeCommune": "35282", + "libelleAcheminement": "RIVES DU COUESNON", + "nomCommune": "RIVES DU COUESNON" }, { - "codePostal": "13130", - "codeCommune": "13014", - "libelleAcheminement": "BERRE L ETANG", - "nomCommune": "BERRE L ETANG" + "codePostal": "35550", + "codeCommune": "35285", + "libelleAcheminement": "ST JUST", + "nomCommune": "ST JUST" }, { - "codePostal": "13720", - "codeCommune": "13016", - "libelleAcheminement": "LA BOUILLADISSE", - "nomCommune": "LA BOUILLADISSE" + "codePostal": "35400", + "codeCommune": "35288", + "libelleAcheminement": "ST MALO", + "nomCommune": "ST MALO" }, { - "codePostal": "13440", - "codeCommune": "13018", - "libelleAcheminement": "CABANNES", - "nomCommune": "CABANNES" + "codePostal": "35400", + "codeCommune": "35288", + "libelleAcheminement": "ST MALO", + "nomCommune": "ST MALO" }, { - "codePostal": "13480", - "codeCommune": "13019", - "libelleAcheminement": "CABRIES", - "nomCommune": "CABRIES" + "codePostal": "35400", + "codeCommune": "35288", + "libelleAcheminement": "ST MALO", + "nomCommune": "ST MALO" }, { - "codePostal": "13480", - "codeCommune": "13019", - "libelleAcheminement": "CABRIES", - "nomCommune": "CABRIES" + "codePostal": "35120", + "codeCommune": "35291", + "libelleAcheminement": "ST MARCAN", + "nomCommune": "ST MARCAN" }, { - "codePostal": "13950", - "codeCommune": "13020", - "libelleAcheminement": "CADOLIVE", - "nomCommune": "CADOLIVE" + "codePostal": "35600", + "codeCommune": "35294", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "13350", - "codeCommune": "13024", - "libelleAcheminement": "CHARLEVAL", - "nomCommune": "CHARLEVAL" + "codePostal": "35250", + "codeCommune": "35296", + "libelleAcheminement": "ST MEDARD SUR ILLE", + "nomCommune": "ST MEDARD SUR ILLE" }, { - "codePostal": "13220", - "codeCommune": "13026", - "libelleAcheminement": "CHATEAUNEUF LES MARTIGUES", - "nomCommune": "CHATEAUNEUF LES MARTIGUES" + "codePostal": "35290", + "codeCommune": "35297", + "libelleAcheminement": "ST MEEN LE GRAND", + "nomCommune": "ST MEEN LE GRAND" }, { - "codePostal": "13780", - "codeCommune": "13030", - "libelleAcheminement": "CUGES LES PINS", - "nomCommune": "CUGES LES PINS" + "codePostal": "35380", + "codeCommune": "35305", + "libelleAcheminement": "ST PERAN", + "nomCommune": "ST PERAN" }, { - "codePostal": "13810", - "codeCommune": "13034", - "libelleAcheminement": "EYGALIERES", - "nomCommune": "EYGALIERES" + "codePostal": "35430", + "codeCommune": "35306", + "libelleAcheminement": "ST PERE MARC EN POULET", + "nomCommune": "ST PERE MARC EN POULET" }, { - "codePostal": "13430", - "codeCommune": "13035", - "libelleAcheminement": "EYGUIERES", - "nomCommune": "EYGUIERES" + "codePostal": "35720", + "codeCommune": "35308", + "libelleAcheminement": "MESNIL ROC H", + "nomCommune": "MESNIL ROC H" }, { - "codePostal": "13580", - "codeCommune": "13037", - "libelleAcheminement": "LA FARE LES OLIVIERS", - "nomCommune": "LA FARE LES OLIVIERS" + "codePostal": "35720", + "codeCommune": "35308", + "libelleAcheminement": "MESNIL ROC H", + "nomCommune": "MESNIL ROC H" }, { - "codePostal": "13270", - "codeCommune": "13039", - "libelleAcheminement": "FOS SUR MER", - "nomCommune": "FOS SUR MER" + "codePostal": "35250", + "codeCommune": "35315", + "libelleAcheminement": "ST SULPICE LA FORET", + "nomCommune": "ST SULPICE LA FORET" }, { - "codePostal": "13120", - "codeCommune": "13041", - "libelleAcheminement": "GARDANNE", - "nomCommune": "GARDANNE" + "codePostal": "35390", + "codeCommune": "35316", + "libelleAcheminement": "ST SULPICE DES LANDES", + "nomCommune": "ST SULPICE DES LANDES" }, { - "codePostal": "13420", - "codeCommune": "13042", - "libelleAcheminement": "GEMENOS", - "nomCommune": "GEMENOS" + "codePostal": "35360", + "codeCommune": "35320", + "libelleAcheminement": "ST UNIAC", + "nomCommune": "ST UNIAC" }, { - "codePostal": "13113", - "codeCommune": "13049", - "libelleAcheminement": "LAMANON", - "nomCommune": "LAMANON" + "codePostal": "35490", + "codeCommune": "35326", + "libelleAcheminement": "SENS DE BRETAGNE", + "nomCommune": "SENS DE BRETAGNE" }, { - "codePostal": "13700", - "codeCommune": "13054", - "libelleAcheminement": "MARIGNANE", - "nomCommune": "MARIGNANE" + "codePostal": "35134", + "codeCommune": "35335", + "libelleAcheminement": "THOURIE", + "nomCommune": "THOURIE" }, { - "codePostal": "13117", - "codeCommune": "13056", - "libelleAcheminement": "MARTIGUES", - "nomCommune": "MARTIGUES" + "codePostal": "35190", + "codeCommune": "35346", + "libelleAcheminement": "TRIMER", + "nomCommune": "TRIMER" }, { - "codePostal": "13940", - "codeCommune": "13064", - "libelleAcheminement": "MOLLEGES", - "nomCommune": "MOLLEGES" + "codePostal": "36140", + "codeCommune": "36001", + "libelleAcheminement": "AIGURANDE", + "nomCommune": "AIGURANDE" }, { - "codePostal": "13660", - "codeCommune": "13067", - "libelleAcheminement": "ORGON", - "nomCommune": "ORGON" + "codePostal": "36120", + "codeCommune": "36005", + "libelleAcheminement": "ARDENTES", + "nomCommune": "ARDENTES" }, { - "codePostal": "13821", - "codeCommune": "13070", - "libelleAcheminement": "LA PENNE SUR HUVEAUNE", - "nomCommune": "LA PENNE SUR HUVEAUNE" + "codePostal": "36200", + "codeCommune": "36006", + "libelleAcheminement": "ARGENTON SUR CREUSE", + "nomCommune": "ARGENTON SUR CREUSE" }, { - "codePostal": "13790", - "codeCommune": "13072", - "libelleAcheminement": "PEYNIER", - "nomCommune": "PEYNIER" + "codePostal": "36700", + "codeCommune": "36008", + "libelleAcheminement": "ARPHEUILLES", + "nomCommune": "ARPHEUILLES" }, { - "codePostal": "13360", - "codeCommune": "13086", - "libelleAcheminement": "ROQUEVAIRE", - "nomCommune": "ROQUEVAIRE" + "codePostal": "36290", + "codeCommune": "36010", + "libelleAcheminement": "AZAY LE FERRON", + "nomCommune": "AZAY LE FERRON" }, { - "codePostal": "13360", - "codeCommune": "13086", - "libelleAcheminement": "ROQUEVAIRE", - "nomCommune": "ROQUEVAIRE" + "codePostal": "36270", + "codeCommune": "36014", + "libelleAcheminement": "BAZAIGES", + "nomCommune": "BAZAIGES" }, { - "codePostal": "13740", - "codeCommune": "13088", - "libelleAcheminement": "LE ROVE", - "nomCommune": "LE ROVE" + "codePostal": "36370", + "codeCommune": "36016", + "libelleAcheminement": "BELABRE", + "nomCommune": "BELABRE" }, { - "codePostal": "13103", - "codeCommune": "13094", - "libelleAcheminement": "ST ETIENNE DU GRES", - "nomCommune": "ST ETIENNE DU GRES" + "codePostal": "36400", + "codeCommune": "36017", + "libelleAcheminement": "LA BERTHENOUX", + "nomCommune": "LA BERTHENOUX" }, { - "codePostal": "13100", - "codeCommune": "13095", - "libelleAcheminement": "ST MARC JAUMEGARDE", - "nomCommune": "ST MARC JAUMEGARDE" + "codePostal": "36300", + "codeCommune": "36018", + "libelleAcheminement": "LE BLANC", + "nomCommune": "LE BLANC" }, { - "codePostal": "13115", - "codeCommune": "13099", - "libelleAcheminement": "ST PAUL LES DURANCE", - "nomCommune": "ST PAUL LES DURANCE" + "codePostal": "36310", + "codeCommune": "36020", + "libelleAcheminement": "BONNEUIL", + "nomCommune": "BONNEUIL" }, { - "codePostal": "13960", - "codeCommune": "13104", - "libelleAcheminement": "SAUSSET LES PINS", - "nomCommune": "SAUSSET LES PINS" + "codePostal": "36200", + "codeCommune": "36022", + "libelleAcheminement": "BOUESSE", + "nomCommune": "BOUESSE" }, { - "codePostal": "13240", - "codeCommune": "13106", - "libelleAcheminement": "SEPTEMES LES VALLONS", - "nomCommune": "SEPTEMES LES VALLONS" + "codePostal": "36110", + "codeCommune": "36026", + "libelleAcheminement": "BRION", + "nomCommune": "BRION" }, { - "codePostal": "13150", - "codeCommune": "13108", - "libelleAcheminement": "TARASCON", - "nomCommune": "TARASCON" + "codePostal": "36500", + "codeCommune": "36040", + "libelleAcheminement": "LA CHAPELLE ORTHEMALE", + "nomCommune": "LA CHAPELLE ORTHEMALE" }, { - "codePostal": "13530", - "codeCommune": "13110", - "libelleAcheminement": "TRETS", - "nomCommune": "TRETS" + "codePostal": "36500", + "codeCommune": "36050", + "libelleAcheminement": "CHEZELLES", + "nomCommune": "CHEZELLES" }, { - "codePostal": "13126", - "codeCommune": "13111", - "libelleAcheminement": "VAUVENARGUES", - "nomCommune": "VAUVENARGUES" + "codePostal": "36700", + "codeCommune": "36054", + "libelleAcheminement": "CLERE DU BOIS", + "nomCommune": "CLERE DU BOIS" }, { - "codePostal": "13770", - "codeCommune": "13113", - "libelleAcheminement": "VENELLES", - "nomCommune": "VENELLES" + "codePostal": "36700", + "codeCommune": "36055", + "libelleAcheminement": "CLION", + "nomCommune": "CLION" }, { - "codePostal": "13007", - "codeCommune": "13207", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 07" + "codePostal": "36140", + "codeCommune": "36060", + "libelleAcheminement": "CREVANT", + "nomCommune": "CREVANT" }, { - "codePostal": "13009", - "codeCommune": "13209", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 09" + "codePostal": "36140", + "codeCommune": "36061", + "libelleAcheminement": "CROZON SUR VAUVRE", + "nomCommune": "CROZON SUR VAUVRE" }, { - "codePostal": "13012", - "codeCommune": "13212", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 12" + "codePostal": "36190", + "codeCommune": "36062", + "libelleAcheminement": "CUZION", + "nomCommune": "CUZION" }, { - "codePostal": "14190", - "codeCommune": "14005", - "libelleAcheminement": "VALAMBRAY", - "nomCommune": "VALAMBRAY" + "codePostal": "36130", + "codeCommune": "36064", + "libelleAcheminement": "DIORS", + "nomCommune": "DIORS" }, { - "codePostal": "14310", - "codeCommune": "14007", - "libelleAcheminement": "AMAYE SUR SEULLES", - "nomCommune": "AMAYE SUR SEULLES" + "codePostal": "36270", + "codeCommune": "36070", + "libelleAcheminement": "EGUZON CHANTOME", + "nomCommune": "EGUZON CHANTOME" }, { - "codePostal": "14240", - "codeCommune": "14011", - "libelleAcheminement": "AURSEULLES", - "nomCommune": "AURSEULLES" + "codePostal": "36600", + "codeCommune": "36077", + "libelleAcheminement": "FONTGUENAND", + "nomCommune": "FONTGUENAND" }, { - "codePostal": "14240", - "codeCommune": "14011", - "libelleAcheminement": "AURSEULLES", - "nomCommune": "AURSEULLES" + "codePostal": "36230", + "codeCommune": "36078", + "libelleAcheminement": "FOUGEROLLES", + "nomCommune": "FOUGEROLLES" }, { - "codePostal": "14610", - "codeCommune": "14014", - "libelleAcheminement": "COLOMBY ANGUERNY", - "nomCommune": "COLOMBY ANGUERNY" + "codePostal": "36110", + "codeCommune": "36079", + "libelleAcheminement": "FRANCILLON", + "nomCommune": "FRANCILLON" }, { - "codePostal": "14430", - "codeCommune": "14016", - "libelleAcheminement": "ANNEBAULT", - "nomCommune": "ANNEBAULT" + "codePostal": "36190", + "codeCommune": "36081", + "libelleAcheminement": "GARGILESSE DAMPIERRE", + "nomCommune": "GARGILESSE DAMPIERRE" }, { - "codePostal": "14400", - "codeCommune": "14019", - "libelleAcheminement": "ARGANCHY", - "nomCommune": "ARGANCHY" + "codePostal": "36100", + "codeCommune": "36088", + "libelleAcheminement": "ISSOUDUN", + "nomCommune": "ISSOUDUN" }, { - "codePostal": "14960", - "codeCommune": "14022", - "libelleAcheminement": "ASNELLES", - "nomCommune": "ASNELLES" + "codePostal": "36120", + "codeCommune": "36089", + "libelleAcheminement": "JEU LES BOIS", + "nomCommune": "JEU LES BOIS" }, { - "codePostal": "14250", - "codeCommune": "14026", - "libelleAcheminement": "AUDRIEU", - "nomCommune": "AUDRIEU" + "codePostal": "36400", + "codeCommune": "36091", + "libelleAcheminement": "LACS", + "nomCommune": "LACS" }, { - "codePostal": "14260", - "codeCommune": "14027", - "libelleAcheminement": "LES MONTS D AUNAY", - "nomCommune": "LES MONTS D AUNAY" + "codePostal": "36110", + "codeCommune": "36093", + "libelleAcheminement": "LEVROUX", + "nomCommune": "LEVROUX" }, { - "codePostal": "14480", - "codeCommune": "14049", - "libelleAcheminement": "BAZENVILLE", - "nomCommune": "BAZENVILLE" + "codePostal": "36360", + "codeCommune": "36103", + "libelleAcheminement": "LUCAY LE MALE", + "nomCommune": "LUCAY LE MALE" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "36340", + "codeCommune": "36111", + "libelleAcheminement": "MALICORNAY", + "nomCommune": "MALICORNAY" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "36220", + "codeCommune": "36113", + "libelleAcheminement": "MARTIZAY", + "nomCommune": "MARTIZAY" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "36210", + "codeCommune": "36115", + "libelleAcheminement": "MENETOU SUR NAHON", + "nomCommune": "MENETOU SUR NAHON" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "36220", + "codeCommune": "36119", + "libelleAcheminement": "MERIGNY", + "nomCommune": "MERIGNY" }, { - "codePostal": "14430", - "codeCommune": "14070", - "libelleAcheminement": "BEUVRON EN AUGE", - "nomCommune": "BEUVRON EN AUGE" + "codePostal": "36230", + "codeCommune": "36120", + "libelleAcheminement": "MERS SUR INDRE", + "nomCommune": "MERS SUR INDRE" }, { - "codePostal": "14340", - "codeCommune": "14082", - "libelleAcheminement": "LA BOISSIERE", - "nomCommune": "LA BOISSIERE" + "codePostal": "36260", + "codeCommune": "36125", + "libelleAcheminement": "MIGNY", + "nomCommune": "MIGNY" }, { - "codePostal": "14210", - "codeCommune": "14089", - "libelleAcheminement": "BOUGY", - "nomCommune": "BOUGY" + "codePostal": "36230", + "codeCommune": "36129", + "libelleAcheminement": "MONTIPOURET", + "nomCommune": "MONTIPOURET" }, { - "codePostal": "14740", - "codeCommune": "14098", - "libelleAcheminement": "THUE ET MUE", - "nomCommune": "THUE ET MUE" + "codePostal": "36200", + "codeCommune": "36131", + "libelleAcheminement": "MOSNAY", + "nomCommune": "MOSNAY" }, { - "codePostal": "14740", - "codeCommune": "14098", - "libelleAcheminement": "THUE ET MUE", - "nomCommune": "THUE ET MUE" + "codePostal": "36220", + "codeCommune": "36137", + "libelleAcheminement": "NEONS SUR CREUSE", + "nomCommune": "NEONS SUR CREUSE" }, { - "codePostal": "14740", - "codeCommune": "14098", - "libelleAcheminement": "THUE ET MUE", - "nomCommune": "THUE ET MUE" + "codePostal": "36400", + "codeCommune": "36143", + "libelleAcheminement": "NOHANT VIC", + "nomCommune": "NOHANT VIC" }, { - "codePostal": "14710", - "codeCommune": "14107", - "libelleAcheminement": "BRICQUEVILLE", - "nomCommune": "BRICQUEVILLE" + "codePostal": "36190", + "codeCommune": "36146", + "libelleAcheminement": "ORSENNES", + "nomCommune": "ORSENNES" }, { - "codePostal": "14610", - "codeCommune": "14123", - "libelleAcheminement": "CAIRON", - "nomCommune": "CAIRON" + "codePostal": "36170", + "codeCommune": "36150", + "libelleAcheminement": "PARNAC", + "nomCommune": "PARNAC" }, { - "codePostal": "14340", - "codeCommune": "14126", - "libelleAcheminement": "CAMBREMER", - "nomCommune": "CAMBREMER" + "codePostal": "36180", + "codeCommune": "36155", + "libelleAcheminement": "PELLEVOISIN", + "nomCommune": "PELLEVOISIN" }, { - "codePostal": "14340", - "codeCommune": "14126", - "libelleAcheminement": "CAMBREMER", - "nomCommune": "CAMBREMER" + "codePostal": "36160", + "codeCommune": "36156", + "libelleAcheminement": "PERASSAY", + "nomCommune": "PERASSAY" }, { - "codePostal": "14500", - "codeCommune": "14127", - "libelleAcheminement": "CAMPAGNOLLES", - "nomCommune": "CAMPAGNOLLES" + "codePostal": "36330", + "codeCommune": "36159", + "libelleAcheminement": "LE POINCONNET", + "nomCommune": "LE POINCONNET" }, { - "codePostal": "14370", - "codeCommune": "14134", - "libelleAcheminement": "CANTELOUP", - "nomCommune": "CANTELOUP" + "codePostal": "36190", + "codeCommune": "36160", + "libelleAcheminement": "POMMIERS", + "nomCommune": "POMMIERS" }, { - "codePostal": "14230", - "codeCommune": "14136", - "libelleAcheminement": "CARDONVILLE", - "nomCommune": "CARDONVILLE" + "codePostal": "36160", + "codeCommune": "36164", + "libelleAcheminement": "POULIGNY ST MARTIN", + "nomCommune": "POULIGNY ST MARTIN" }, { - "codePostal": "14650", - "codeCommune": "14137", - "libelleAcheminement": "CARPIQUET", - "nomCommune": "CARPIQUET" + "codePostal": "36220", + "codeCommune": "36167", + "libelleAcheminement": "PREUILLY LA VILLE", + "nomCommune": "PREUILLY LA VILLE" }, { - "codePostal": "14330", - "codeCommune": "14138", - "libelleAcheminement": "CARTIGNY L EPINAY", - "nomCommune": "CARTIGNY L EPINAY" + "codePostal": "36150", + "codeCommune": "36170", + "libelleAcheminement": "REBOURSIN", + "nomCommune": "REBOURSIN" }, { - "codePostal": "14240", - "codeCommune": "14143", - "libelleAcheminement": "CAUMONT SUR AURE", - "nomCommune": "CAUMONT SUR AURE" + "codePostal": "36230", + "codeCommune": "36189", + "libelleAcheminement": "ST DENIS DE JOUHET", + "nomCommune": "ST DENIS DE JOUHET" }, { - "codePostal": "14240", - "codeCommune": "14143", - "libelleAcheminement": "CAUMONT SUR AURE", - "nomCommune": "CAUMONT SUR AURE" + "codePostal": "36150", + "codeCommune": "36191", + "libelleAcheminement": "ST FLORENTIN", + "nomCommune": "ST FLORENTIN" }, { - "codePostal": "14770", - "codeCommune": "14146", - "libelleAcheminement": "CAUVILLE", - "nomCommune": "CAUVILLE" + "codePostal": "36100", + "codeCommune": "36195", + "libelleAcheminement": "ST GEORGES SUR ARNON", + "nomCommune": "ST GEORGES SUR ARNON" }, { - "codePostal": "14250", - "codeCommune": "14159", - "libelleAcheminement": "CHOUAIN", - "nomCommune": "CHOUAIN" + "codePostal": "36200", + "codeCommune": "36200", + "libelleAcheminement": "ST MARCEL", + "nomCommune": "ST MARCEL" }, { - "codePostal": "14680", - "codeCommune": "14160", - "libelleAcheminement": "CINTHEAUX", - "nomCommune": "CINTHEAUX" + "codePostal": "36190", + "codeCommune": "36207", + "libelleAcheminement": "ST PLANTAIRE", + "nomCommune": "ST PLANTAIRE" }, { - "codePostal": "14570", - "codeCommune": "14162", - "libelleAcheminement": "CLECY", - "nomCommune": "CLECY" + "codePostal": "36230", + "codeCommune": "36210", + "libelleAcheminement": "SARZAY", + "nomCommune": "SARZAY" }, { - "codePostal": "14710", - "codeCommune": "14165", - "libelleAcheminement": "COLLEVILLE SUR MER", - "nomCommune": "COLLEVILLE SUR MER" + "codePostal": "36200", + "codeCommune": "36219", + "libelleAcheminement": "TENDU", + "nomCommune": "TENDU" }, { - "codePostal": "14880", - "codeCommune": "14166", - "libelleAcheminement": "COLLEVILLE MONTGOMERY", - "nomCommune": "COLLEVILLE MONTGOMERY" + "codePostal": "36500", + "codeCommune": "36232", + "libelleAcheminement": "VENDOEUVRES", + "nomCommune": "VENDOEUVRES" }, { - "codePostal": "14110", - "codeCommune": "14174", - "libelleAcheminement": "CONDE EN NORMANDIE", - "nomCommune": "CONDE EN NORMANDIE" + "codePostal": "36110", + "codeCommune": "36242", + "libelleAcheminement": "VILLEGONGIS", + "nomCommune": "VILLEGONGIS" }, { - "codePostal": "14130", - "codeCommune": "14177", - "libelleAcheminement": "COQUAINVILLIERS", - "nomCommune": "COQUAINVILLIERS" + "codePostal": "36290", + "codeCommune": "36246", + "libelleAcheminement": "VILLIERS", + "nomCommune": "VILLIERS" }, { - "codePostal": "14700", - "codeCommune": "14180", - "libelleAcheminement": "CORDEY", - "nomCommune": "CORDEY" + "codePostal": "37800", + "codeCommune": "37005", + "libelleAcheminement": "ANTOGNY LE TILLAC", + "nomCommune": "ANTOGNY LE TILLAC" }, { - "codePostal": "14470", - "codeCommune": "14191", - "libelleAcheminement": "COURSEULLES SUR MER", - "nomCommune": "COURSEULLES SUR MER" + "codePostal": "37110", + "codeCommune": "37009", + "libelleAcheminement": "AUTRECHE", + "nomCommune": "AUTRECHE" }, { - "codePostal": "14480", - "codeCommune": "14200", - "libelleAcheminement": "CREULLY SUR SEULLES", - "nomCommune": "CREULLY SUR SEULLES" + "codePostal": "37220", + "codeCommune": "37012", + "libelleAcheminement": "AVON LES ROCHES", + "nomCommune": "AVON LES ROCHES" }, { - "codePostal": "14620", - "codeCommune": "14206", - "libelleAcheminement": "CROCY", - "nomCommune": "CROCY" + "codePostal": "37360", + "codeCommune": "37021", + "libelleAcheminement": "BEAUMONT LOUESTAULT", + "nomCommune": "BEAUMONT LOUESTAULT" }, { - "codePostal": "14220", - "codeCommune": "14211", - "libelleAcheminement": "CULEY LE PATRY", - "nomCommune": "CULEY LE PATRY" + "codePostal": "37150", + "codeCommune": "37027", + "libelleAcheminement": "BLERE", + "nomCommune": "BLERE" }, { - "codePostal": "14800", - "codeCommune": "14220", - "libelleAcheminement": "DEAUVILLE", - "nomCommune": "DEAUVILLE" + "codePostal": "37290", + "codeCommune": "37028", + "libelleAcheminement": "BOSSAY SUR CLAISE", + "nomCommune": "BOSSAY SUR CLAISE" }, { - "codePostal": "14160", - "codeCommune": "14225", - "libelleAcheminement": "DIVES SUR MER", - "nomCommune": "DIVES SUR MER" + "codePostal": "37370", + "codeCommune": "37041", + "libelleAcheminement": "BUEIL EN TOURAINE", + "nomCommune": "BUEIL EN TOURAINE" }, { - "codePostal": "14440", - "codeCommune": "14228", - "libelleAcheminement": "DOUVRES LA DELIVRANDE", - "nomCommune": "DOUVRES LA DELIVRANDE" + "codePostal": "37530", + "codeCommune": "37043", + "libelleAcheminement": "CANGEY", + "nomCommune": "CANGEY" }, { - "codePostal": "14440", - "codeCommune": "14228", - "libelleAcheminement": "DOUVRES LA DELIVRANDE", - "nomCommune": "DOUVRES LA DELIVRANDE" + "codePostal": "37390", + "codeCommune": "37054", + "libelleAcheminement": "CHANCEAUX SUR CHOISILLE", + "nomCommune": "CHANCEAUX SUR CHOISILLE" }, { - "codePostal": "14430", - "codeCommune": "14229", - "libelleAcheminement": "DOZULE", - "nomCommune": "DOZULE" + "codePostal": "37330", + "codeCommune": "37055", + "libelleAcheminement": "CHANNAY SUR LATHAN", + "nomCommune": "CHANNAY SUR LATHAN" }, { - "codePostal": "14130", - "codeCommune": "14230", - "libelleAcheminement": "DRUBEC", - "nomCommune": "DRUBEC" + "codePostal": "37390", + "codeCommune": "37059", + "libelleAcheminement": "CHARENTILLY", + "nomCommune": "CHARENTILLY" }, { - "codePostal": "14340", - "codeCommune": "14231", - "libelleAcheminement": "BEAUFOUR DRUVAL", - "nomCommune": "BEAUFOUR DRUVAL" + "codePostal": "37350", + "codeCommune": "37064", + "libelleAcheminement": "CHAUMUSSAY", + "nomCommune": "CHAUMUSSAY" }, { - "codePostal": "14400", - "codeCommune": "14250", - "libelleAcheminement": "ESQUAY SUR SEULLES", - "nomCommune": "ESQUAY SUR SEULLES" + "codePostal": "37310", + "codeCommune": "37066", + "libelleAcheminement": "CHEDIGNY", + "nomCommune": "CHEDIGNY" }, { - "codePostal": "14130", - "codeCommune": "14261", - "libelleAcheminement": "LE FAULQ", - "nomCommune": "LE FAULQ" + "codePostal": "37150", + "codeCommune": "37070", + "libelleAcheminement": "CHENONCEAUX", + "nomCommune": "CHENONCEAUX" }, { - "codePostal": "14710", - "codeCommune": "14272", - "libelleAcheminement": "LA FOLIE", - "nomCommune": "LA FOLIE" + "codePostal": "37150", + "codeCommune": "37079", + "libelleAcheminement": "CIVRAY DE TOURAINE", + "nomCommune": "CIVRAY DE TOURAINE" }, { - "codePostal": "14340", - "codeCommune": "14285", - "libelleAcheminement": "LE FOURNET", - "nomCommune": "LE FOURNET" + "codePostal": "37340", + "codeCommune": "37081", + "libelleAcheminement": "CLERE LES PINS", + "nomCommune": "CLERE LES PINS" }, { - "codePostal": "14430", - "codeCommune": "14308", - "libelleAcheminement": "GOUSTRANVILLE", - "nomCommune": "GOUSTRANVILLE" + "codePostal": "37320", + "codeCommune": "37083", + "libelleAcheminement": "CORMERY", + "nomCommune": "CORMERY" }, { - "codePostal": "14190", - "codeCommune": "14310", - "libelleAcheminement": "GRAINVILLE LANGANNERIE", - "nomCommune": "GRAINVILLE LANGANNERIE" + "codePostal": "37330", + "codeCommune": "37086", + "libelleAcheminement": "COURCELLES DE TOURAINE", + "nomCommune": "COURCELLES DE TOURAINE" }, { - "codePostal": "14210", - "codeCommune": "14311", - "libelleAcheminement": "GRAINVILLE SUR ODON", - "nomCommune": "GRAINVILLE SUR ODON" + "codePostal": "37120", + "codeCommune": "37087", + "libelleAcheminement": "COURCOUE", + "nomCommune": "COURCOUE" }, { - "codePostal": "14450", - "codeCommune": "14312", - "libelleAcheminement": "GRANDCAMP MAISY", - "nomCommune": "GRANDCAMP MAISY" + "codePostal": "37150", + "codeCommune": "37091", + "libelleAcheminement": "LA CROIX EN TOURAINE", + "nomCommune": "LA CROIX EN TOURAINE" }, { - "codePostal": "14470", - "codeCommune": "14318", - "libelleAcheminement": "GRAYE SUR MER", - "nomCommune": "GRAYE SUR MER" + "codePostal": "37800", + "codeCommune": "37098", + "libelleAcheminement": "DRACHE", + "nomCommune": "DRACHE" }, { - "codePostal": "14600", - "codeCommune": "14333", - "libelleAcheminement": "HONFLEUR", - "nomCommune": "HONFLEUR" + "codePostal": "37320", + "codeCommune": "37104", + "libelleAcheminement": "ESVRES", + "nomCommune": "ESVRES" }, { - "codePostal": "14100", - "codeCommune": "14334", - "libelleAcheminement": "L HOTELLERIE", - "nomCommune": "L HOTELLERIE" + "codePostal": "37600", + "codeCommune": "37108", + "libelleAcheminement": "FERRIERE SUR BEAULIEU", + "nomCommune": "FERRIERE SUR BEAULIEU" }, { - "codePostal": "14330", - "codeCommune": "14342", - "libelleAcheminement": "ISIGNY SUR MER", - "nomCommune": "ISIGNY SUR MER" + "codePostal": "37460", + "codeCommune": "37111", + "libelleAcheminement": "GENILLE", + "nomCommune": "GENILLE" }, { - "codePostal": "14690", - "codeCommune": "14343", - "libelleAcheminement": "LES ISLES BARDEL", - "nomCommune": "LES ISLES BARDEL" + "codePostal": "37130", + "codeCommune": "37123", + "libelleAcheminement": "LANGEAIS", + "nomCommune": "LANGEAIS" }, { - "codePostal": "14670", - "codeCommune": "14344", - "libelleAcheminement": "JANVILLE", - "nomCommune": "JANVILLE" + "codePostal": "37460", + "codeCommune": "37133", + "libelleAcheminement": "LOCHE SUR INDROIS", + "nomCommune": "LOCHE SUR INDROIS" }, { - "codePostal": "14260", - "codeCommune": "14347", - "libelleAcheminement": "DIALAN SUR CHAINE", - "nomCommune": "DIALAN SUR CHAINE" + "codePostal": "37120", + "codeCommune": "37140", + "libelleAcheminement": "LUZE", + "nomCommune": "LUZE" }, { - "codePostal": "14320", - "codeCommune": "14349", - "libelleAcheminement": "LAIZE CLINCHAMPS", - "nomCommune": "LAIZE CLINCHAMPS" + "codePostal": "37800", + "codeCommune": "37147", + "libelleAcheminement": "MARCILLY SUR VIENNE", + "nomCommune": "MARCILLY SUR VIENNE" }, { - "codePostal": "14480", - "codeCommune": "14355", - "libelleAcheminement": "PONTS SUR SEULLES", - "nomCommune": "PONTS SUR SEULLES" + "codePostal": "37130", + "codeCommune": "37150", + "libelleAcheminement": "MAZIERES DE TOURAINE", + "nomCommune": "MAZIERES DE TOURAINE" }, { - "codePostal": "14480", - "codeCommune": "14355", - "libelleAcheminement": "PONTS SUR SEULLES", - "nomCommune": "PONTS SUR SEULLES" + "codePostal": "37390", + "codeCommune": "37151", + "libelleAcheminement": "LA MEMBROLLE SUR CHOISILLE", + "nomCommune": "LA MEMBROLLE SUR CHOISILLE" }, { - "codePostal": "14770", - "codeCommune": "14357", - "libelleAcheminement": "TERRES DE DRUANCE", - "nomCommune": "TERRES DE DRUANCE" + "codePostal": "37110", + "codeCommune": "37155", + "libelleAcheminement": "MONTHODON", + "nomCommune": "MONTHODON" }, { - "codePostal": "14140", - "codeCommune": "14368", - "libelleAcheminement": "LISORES", - "nomCommune": "LISORES" + "codePostal": "37270", + "codeCommune": "37156", + "libelleAcheminement": "MONTLOUIS SUR LOIRE", + "nomCommune": "MONTLOUIS SUR LOIRE" }, { - "codePostal": "14490", - "codeCommune": "14369", - "libelleAcheminement": "LITTEAU", - "nomCommune": "LITTEAU" + "codePostal": "37530", + "codeCommune": "37161", + "libelleAcheminement": "MOSNES", + "nomCommune": "MOSNES" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "37600", + "codeCommune": "37162", + "libelleAcheminement": "MOUZAY", + "nomCommune": "MOUZAY" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "37390", + "codeCommune": "37172", + "libelleAcheminement": "NOTRE DAME D OE", + "nomCommune": "NOTRE DAME D OE" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "37380", + "codeCommune": "37175", + "libelleAcheminement": "NOUZILLY", + "nomCommune": "NOUZILLY" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "37800", + "codeCommune": "37176", + "libelleAcheminement": "NOYANT DE TOURAINE", + "nomCommune": "NOYANT DE TOURAINE" }, { - "codePostal": "14290", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "37210", + "codeCommune": "37179", + "libelleAcheminement": "PARCAY MESLAY", + "nomCommune": "PARCAY MESLAY" }, { - "codePostal": "14290", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "37220", + "codeCommune": "37180", + "libelleAcheminement": "PARCAY SUR VIENNE", + "nomCommune": "PARCAY SUR VIENNE" }, { - "codePostal": "14310", - "codeCommune": "14379", - "libelleAcheminement": "LONGVILLERS", - "nomCommune": "LONGVILLERS" + "codePostal": "37350", + "codeCommune": "37181", + "libelleAcheminement": "PAULMY", + "nomCommune": "PAULMY" }, { - "codePostal": "14100", - "codeCommune": "14403", - "libelleAcheminement": "MAROLLES", - "nomCommune": "MAROLLES" + "codePostal": "37350", + "codeCommune": "37184", + "libelleAcheminement": "LE PETIT PRESSIGNY", + "nomCommune": "LE PETIT PRESSIGNY" }, { - "codePostal": "14740", - "codeCommune": "14406", - "libelleAcheminement": "MOULINS EN BESSIN", - "nomCommune": "MOULINS EN BESSIN" + "codePostal": "37800", + "codeCommune": "37188", + "libelleAcheminement": "POUZAY", + "nomCommune": "POUZAY" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "37290", + "codeCommune": "37189", + "libelleAcheminement": "PREUILLY SUR CLAISE", + "nomCommune": "PREUILLY SUR CLAISE" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "37310", + "codeCommune": "37192", + "libelleAcheminement": "REIGNAC SUR INDRE", + "nomCommune": "REIGNAC SUR INDRE" }, { - "codePostal": "14370", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "37210", + "codeCommune": "37203", + "libelleAcheminement": "ROCHECORBON", + "nomCommune": "ROCHECORBON" }, { - "codePostal": "14490", - "codeCommune": "14445", - "libelleAcheminement": "MONTFIQUET", - "nomCommune": "MONTFIQUET" + "codePostal": "37320", + "codeCommune": "37211", + "libelleAcheminement": "ST BRANCHS", + "nomCommune": "ST BRANCHS" }, { - "codePostal": "14210", - "codeCommune": "14446", - "libelleAcheminement": "MONTIGNY", - "nomCommune": "MONTIGNY" + "codePostal": "37600", + "codeCommune": "37221", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "14590", - "codeCommune": "14460", - "libelleAcheminement": "MOYAUX", - "nomCommune": "MOYAUX" + "codePostal": "37530", + "codeCommune": "37236", + "libelleAcheminement": "ST REGLE", + "nomCommune": "ST REGLE" }, { - "codePostal": "14220", - "codeCommune": "14461", - "libelleAcheminement": "MUTRECY", - "nomCommune": "MUTRECY" + "codePostal": "37250", + "codeCommune": "37250", + "libelleAcheminement": "SORIGNY", + "nomCommune": "SORIGNY" }, { - "codePostal": "14490", - "codeCommune": "14468", - "libelleAcheminement": "NORON LA POTERIE", - "nomCommune": "NORON LA POTERIE" + "codePostal": "37310", + "codeCommune": "37254", + "libelleAcheminement": "TAUXIGNY ST BAULD", + "nomCommune": "TAUXIGNY ST BAULD" }, { - "codePostal": "14230", - "codeCommune": "14480", - "libelleAcheminement": "OSMANVILLE", - "nomCommune": "OSMANVILLE" + "codePostal": "37260", + "codeCommune": "37257", + "libelleAcheminement": "THILOUZE", + "nomCommune": "THILOUZE" }, { - "codePostal": "14220", - "codeCommune": "14483", - "libelleAcheminement": "OUFFIERES", - "nomCommune": "OUFFIERES" + "codePostal": "37500", + "codeCommune": "37258", + "libelleAcheminement": "THIZAY", + "nomCommune": "THIZAY" }, { - "codePostal": "14600", - "codeCommune": "14492", - "libelleAcheminement": "PENNEDEPIE", - "nomCommune": "PENNEDEPIE" + "codePostal": "37290", + "codeCommune": "37259", + "libelleAcheminement": "TOURNON ST PIERRE", + "nomCommune": "TOURNON ST PIERRE" }, { - "codePostal": "14112", - "codeCommune": "14495", - "libelleAcheminement": "PERIERS SUR LE DAN", - "nomCommune": "PERIERS SUR LE DAN" + "codePostal": "37100", + "codeCommune": "37261", + "libelleAcheminement": "TOURS", + "nomCommune": "TOURS" }, { - "codePostal": "14770", - "codeCommune": "14496", - "libelleAcheminement": "PERIGNY", - "nomCommune": "PERIGNY" + "codePostal": "37220", + "codeCommune": "37262", + "libelleAcheminement": "TROGUES", + "nomCommune": "TROGUES" }, { - "codePostal": "14690", - "codeCommune": "14501", - "libelleAcheminement": "PIERREFITTE EN CINGLAIS", - "nomCommune": "PIERREFITTE EN CINGLAIS" + "codePostal": "37320", + "codeCommune": "37263", + "libelleAcheminement": "TRUYES", + "nomCommune": "TRUYES" }, { - "codePostal": "14380", - "codeCommune": "14511", - "libelleAcheminement": "PONT BELLANGER", - "nomCommune": "PONT BELLANGER" + "codePostal": "37250", + "codeCommune": "37266", + "libelleAcheminement": "VEIGNE", + "nomCommune": "VEIGNE" }, { - "codePostal": "14520", - "codeCommune": "14515", - "libelleAcheminement": "PORT EN BESSIN HUPPAIN", - "nomCommune": "PORT EN BESSIN HUPPAIN" + "codePostal": "37240", + "codeCommune": "37280", + "libelleAcheminement": "VOU", + "nomCommune": "VOU" }, { - "codePostal": "14420", - "codeCommune": "14516", - "libelleAcheminement": "POTIGNY", - "nomCommune": "POTIGNY" + "codePostal": "38490", + "codeCommune": "38001", + "libelleAcheminement": "LES ABRETS EN DAUPHINE", + "nomCommune": "LES ABRETS EN DAUPHINE" }, { - "codePostal": "14140", - "codeCommune": "14522", - "libelleAcheminement": "PRETREVILLE", - "nomCommune": "PRETREVILLE" + "codePostal": "38150", + "codeCommune": "38003", + "libelleAcheminement": "AGNIN", + "nomCommune": "AGNIN" }, { - "codePostal": "14740", - "codeCommune": "14543", - "libelleAcheminement": "ROTS", - "nomCommune": "ROTS" + "codePostal": "38580", + "codeCommune": "38006", + "libelleAcheminement": "ALLEVARD", + "nomCommune": "ALLEVARD" }, { - "codePostal": "14190", - "codeCommune": "14546", - "libelleAcheminement": "ROUVRES", - "nomCommune": "ROUVRES" + "codePostal": "38970", + "codeCommune": "38008", + "libelleAcheminement": "AMBEL", + "nomCommune": "AMBEL" }, { - "codePostal": "14800", - "codeCommune": "14557", - "libelleAcheminement": "ST ARNOULT", - "nomCommune": "ST ARNOULT" + "codePostal": "38150", + "codeCommune": "38017", + "libelleAcheminement": "ASSIEU", + "nomCommune": "ASSIEU" }, { - "codePostal": "14380", - "codeCommune": "14559", - "libelleAcheminement": "ST AUBIN DES BOIS", - "nomCommune": "ST AUBIN DES BOIS" + "codePostal": "38650", + "codeCommune": "38023", + "libelleAcheminement": "AVIGNONET", + "nomCommune": "AVIGNONET" }, { - "codePostal": "14280", - "codeCommune": "14566", - "libelleAcheminement": "ST CONTEST", - "nomCommune": "ST CONTEST" + "codePostal": "38110", + "codeCommune": "38029", + "libelleAcheminement": "LA BATIE MONTGASCON", + "nomCommune": "LA BATIE MONTGASCON" }, { - "codePostal": "14950", - "codeCommune": "14575", - "libelleAcheminement": "ST ETIENNE LA THILLAYE", - "nomCommune": "ST ETIENNE LA THILLAYE" + "codePostal": "38970", + "codeCommune": "38031", + "libelleAcheminement": "BEAUFIN", + "nomCommune": "BEAUFIN" }, { - "codePostal": "14260", - "codeCommune": "14579", - "libelleAcheminement": "SEULLINE", - "nomCommune": "SEULLINE" + "codePostal": "38270", + "codeCommune": "38032", + "libelleAcheminement": "BEAUFORT", + "nomCommune": "BEAUFORT" }, { - "codePostal": "14310", - "codeCommune": "14579", - "libelleAcheminement": "SEULLINE", - "nomCommune": "SEULLINE" + "codePostal": "38160", + "codeCommune": "38041", + "libelleAcheminement": "BESSINS", + "nomCommune": "BESSINS" }, { - "codePostal": "14100", - "codeCommune": "14582", - "libelleAcheminement": "ST GERMAIN DE LIVET", - "nomCommune": "ST GERMAIN DE LIVET" + "codePostal": "38850", + "codeCommune": "38043", + "libelleAcheminement": "BILIEU", + "nomCommune": "BILIEU" }, { - "codePostal": "14700", - "codeCommune": "14588", - "libelleAcheminement": "ST GERMAIN LANGOT", - "nomCommune": "ST GERMAIN LANGOT" + "codePostal": "38690", + "codeCommune": "38044", + "libelleAcheminement": "BIOL", + "nomCommune": "BIOL" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "38390", + "codeCommune": "38054", + "libelleAcheminement": "BOUVESSE QUIRIEU", + "nomCommune": "BOUVESSE QUIRIEU" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "38690", + "codeCommune": "38065", + "libelleAcheminement": "CHABONS", + "nomCommune": "CHABONS" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "38260", + "codeCommune": "38069", + "libelleAcheminement": "CHAMPIER", + "nomCommune": "CHAMPIER" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "38730", + "codeCommune": "38089", + "libelleAcheminement": "CHASSIGNIEU", + "nomCommune": "CHASSIGNIEU" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "38650", + "codeCommune": "38090", + "libelleAcheminement": "CHATEAU BERNARD", + "nomCommune": "CHATEAU BERNARD" }, { - "codePostal": "14350", - "codeCommune": "14672", - "libelleAcheminement": "VAL DE DROME", - "nomCommune": "VAL DE DROME" + "codePostal": "38300", + "codeCommune": "38091", + "libelleAcheminement": "CHATEAUVILAIN", + "nomCommune": "CHATEAUVILAIN" }, { - "codePostal": "14420", - "codeCommune": "14678", - "libelleAcheminement": "SOUMONT ST QUENTIN", - "nomCommune": "SOUMONT ST QUENTIN" + "codePostal": "38160", + "codeCommune": "38095", + "libelleAcheminement": "CHATTE", + "nomCommune": "CHATTE" }, { - "codePostal": "14400", - "codeCommune": "14680", - "libelleAcheminement": "SULLY", - "nomCommune": "SULLY" + "codePostal": "38570", + "codeCommune": "38100", + "libelleAcheminement": "LE CHEYLAS", + "nomCommune": "LE CHEYLAS" }, { - "codePostal": "14250", - "codeCommune": "14684", - "libelleAcheminement": "TESSEL", - "nomCommune": "TESSEL" + "codePostal": "38850", + "codeCommune": "38105", + "libelleAcheminement": "CHIRENS", + "nomCommune": "CHIRENS" }, { - "codePostal": "14690", - "codeCommune": "14710", - "libelleAcheminement": "TREPREL", - "nomCommune": "TREPREL" + "codePostal": "38220", + "codeCommune": "38106", + "libelleAcheminement": "CHOLONGE", + "nomCommune": "CHOLONGE" }, { - "codePostal": "14490", - "codeCommune": "14714", - "libelleAcheminement": "LE TRONQUAY", - "nomCommune": "LE TRONQUAY" + "codePostal": "38122", + "codeCommune": "38134", + "libelleAcheminement": "COUR ET BUIS", + "nomCommune": "COUR ET BUIS" }, { - "codePostal": "14350", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "38510", + "codeCommune": "38135", + "libelleAcheminement": "COURTENAY", + "nomCommune": "COURTENAY" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "38730", + "codeCommune": "38147", + "libelleAcheminement": "DOISSIN", + "nomCommune": "DOISSIN" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "38300", + "codeCommune": "38152", + "libelleAcheminement": "ECLOSE BADINIERES", + "nomCommune": "ECLOSE BADINIERES" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "38580", + "codeCommune": "38163", + "libelleAcheminement": "LE HAUT BREDA", + "nomCommune": "LE HAUT BREDA" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "38580", + "codeCommune": "38163", + "libelleAcheminement": "LE HAUT BREDA", + "nomCommune": "LE HAUT BREDA" }, { - "codePostal": "14700", - "codeCommune": "14737", - "libelleAcheminement": "VERSAINVILLE", - "nomCommune": "VERSAINVILLE" + "codePostal": "38142", + "codeCommune": "38173", + "libelleAcheminement": "LE FRENEY D OISANS", + "nomCommune": "LE FRENEY D OISANS" }, { - "codePostal": "14114", - "codeCommune": "14739", - "libelleAcheminement": "VER SUR MER", - "nomCommune": "VER SUR MER" + "codePostal": "38690", + "codeCommune": "38182", + "libelleAcheminement": "LE GRAND LEMPS", + "nomCommune": "LE GRAND LEMPS" }, { - "codePostal": "14290", - "codeCommune": "14740", - "libelleAcheminement": "LA VESPIERE FRIARDEL", - "nomCommune": "LA VESPIERE FRIARDEL" + "codePostal": "38490", + "codeCommune": "38183", + "libelleAcheminement": "GRANIEU", + "nomCommune": "GRANIEU" }, { - "codePostal": "14170", - "codeCommune": "14742", - "libelleAcheminement": "VICQUES", - "nomCommune": "VICQUES" + "codePostal": "38450", + "codeCommune": "38187", + "libelleAcheminement": "LE GUA", + "nomCommune": "LE GUA" }, { - "codePostal": "14640", - "codeCommune": "14754", - "libelleAcheminement": "VILLERS SUR MER", - "nomCommune": "VILLERS SUR MER" + "codePostal": "38140", + "codeCommune": "38194", + "libelleAcheminement": "IZEAUX", + "nomCommune": "IZEAUX" }, { - "codePostal": "14113", - "codeCommune": "14755", - "libelleAcheminement": "VILLERVILLE", - "nomCommune": "VILLERVILLE" + "codePostal": "38560", + "codeCommune": "38200", + "libelleAcheminement": "JARRIE", + "nomCommune": "JARRIE" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "38220", + "codeCommune": "38203", + "libelleAcheminement": "LAFFREY", + "nomCommune": "LAFFREY" }, { - "codePostal": "15130", - "codeCommune": "15012", - "libelleAcheminement": "ARPAJON SUR CERE", - "nomCommune": "ARPAJON SUR CERE" + "codePostal": "38930", + "codeCommune": "38204", + "libelleAcheminement": "LALLEY", + "nomCommune": "LALLEY" }, { - "codePostal": "15240", - "codeCommune": "15015", - "libelleAcheminement": "AUZERS", - "nomCommune": "AUZERS" + "codePostal": "38250", + "codeCommune": "38205", + "libelleAcheminement": "LANS EN VERCORS", + "nomCommune": "LANS EN VERCORS" }, { - "codePostal": "15270", - "codeCommune": "15020", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "38270", + "codeCommune": "38209", + "libelleAcheminement": "LENTIOL", + "nomCommune": "LENTIOL" }, { - "codePostal": "15600", - "codeCommune": "15021", - "libelleAcheminement": "BOISSET", - "nomCommune": "BOISSET" + "codePostal": "38220", + "codeCommune": "38212", + "libelleAcheminement": "LIVET ET GAVET", + "nomCommune": "LIVET ET GAVET" }, { - "codePostal": "15700", - "codeCommune": "15024", - "libelleAcheminement": "BRAGEAC", - "nomCommune": "BRAGEAC" + "codePostal": "38710", + "codeCommune": "38226", + "libelleAcheminement": "MENS", + "nomCommune": "MENS" }, { - "codePostal": "15340", - "codeCommune": "15029", - "libelleAcheminement": "CASSANIOUZE", - "nomCommune": "CASSANIOUZE" + "codePostal": "38650", + "codeCommune": "38242", + "libelleAcheminement": "MONESTIER DE CLERMONT", + "nomCommune": "MONESTIER DE CLERMONT" }, { - "codePostal": "15290", - "codeCommune": "15030", - "libelleAcheminement": "CAYROLS", - "nomCommune": "CAYROLS" + "codePostal": "38122", + "codeCommune": "38244", + "libelleAcheminement": "MONSTEROUX MILIEU", + "nomCommune": "MONSTEROUX MILIEU" }, { - "codePostal": "15270", - "codeCommune": "15038", - "libelleAcheminement": "CHAMPS SUR TARENTAINE MARCHAL", - "nomCommune": "CHAMPS SUR TARENTAINE MARCHAL" + "codePostal": "38860", + "codeCommune": "38253", + "libelleAcheminement": "LES DEUX ALPES", + "nomCommune": "LES DEUX ALPES" }, { - "codePostal": "15500", - "codeCommune": "15042", - "libelleAcheminement": "LA CHAPELLE LAURENT", - "nomCommune": "LA CHAPELLE LAURENT" + "codePostal": "38860", + "codeCommune": "38253", + "libelleAcheminement": "LES DEUX ALPES", + "nomCommune": "LES DEUX ALPES" }, { - "codePostal": "15400", - "codeCommune": "15052", - "libelleAcheminement": "COLLANDRES", - "nomCommune": "COLLANDRES" + "codePostal": "38120", + "codeCommune": "38258", + "libelleAcheminement": "MONT ST MARTIN", + "nomCommune": "MONT ST MARTIN" }, { - "codePostal": "15170", - "codeCommune": "15053", - "libelleAcheminement": "COLTINES", - "nomCommune": "COLTINES" + "codePostal": "38260", + "codeCommune": "38267", + "libelleAcheminement": "LE MOTTIER", + "nomCommune": "MOTTIER" }, { - "codePostal": "15430", - "codeCommune": "15059", - "libelleAcheminement": "CUSSAC", - "nomCommune": "CUSSAC" + "codePostal": "38350", + "codeCommune": "38269", + "libelleAcheminement": "LA MURE D ISERE", + "nomCommune": "LA MURE" }, { - "codePostal": "15110", - "codeCommune": "15060", - "libelleAcheminement": "DEUX VERGES", - "nomCommune": "DEUX VERGES" + "codePostal": "38470", + "codeCommune": "38278", + "libelleAcheminement": "NOTRE DAME DE L OSIER", + "nomCommune": "NOTRE DAME DE L OSIER" }, { - "codePostal": "15140", - "codeCommune": "15063", - "libelleAcheminement": "DRUGEAC", - "nomCommune": "DRUGEAC" + "codePostal": "38260", + "codeCommune": "38284", + "libelleAcheminement": "ORNACIEUX BALBINS", + "nomCommune": "ORNACIEUX BALBINS" }, { - "codePostal": "15170", - "codeCommune": "15069", - "libelleAcheminement": "FERRIERES ST MARY", - "nomCommune": "FERRIERES ST MARY" + "codePostal": "38690", + "codeCommune": "38287", + "libelleAcheminement": "OYEU", + "nomCommune": "OYEU" }, { - "codePostal": "15150", - "codeCommune": "15076", - "libelleAcheminement": "GLENAT", - "nomCommune": "GLENAT" + "codePostal": "38850", + "codeCommune": "38292", + "libelleAcheminement": "VILLAGES DU LAC DE PALADRU", + "nomCommune": "VILLAGES DU LAC DE PALADRU" }, { - "codePostal": "15120", - "codeCommune": "15084", - "libelleAcheminement": "LABESSERETTE", - "nomCommune": "LABESSERETTE" + "codePostal": "38510", + "codeCommune": "38297", + "libelleAcheminement": "ARANDON PASSINS", + "nomCommune": "ARANDON PASSINS" }, { - "codePostal": "15500", - "codeCommune": "15098", - "libelleAcheminement": "LAURIE", - "nomCommune": "LAURIE" + "codePostal": "38510", + "codeCommune": "38297", + "libelleAcheminement": "ARANDON PASSINS", + "nomCommune": "ARANDON PASSINS" }, { - "codePostal": "15300", - "codeCommune": "15101", - "libelleAcheminement": "LAVEISSIERE", - "nomCommune": "LAVEISSIERE" + "codePostal": "38570", + "codeCommune": "38303", + "libelleAcheminement": "LA PIERRE", + "nomCommune": "LA PIERRE" }, { - "codePostal": "15110", - "codeCommune": "15106", - "libelleAcheminement": "LIEUTADES", - "nomCommune": "LIEUTADES" + "codePostal": "38480", + "codeCommune": "38315", + "libelleAcheminement": "LE PONT DE BEAUVOISIN", + "nomCommune": "LE PONT DE BEAUVOISIN" }, { - "codePostal": "15320", - "codeCommune": "15107", - "libelleAcheminement": "LORCIERES", - "nomCommune": "LORCIERES" + "codePostal": "38780", + "codeCommune": "38318", + "libelleAcheminement": "PONT EVEQUE", + "nomCommune": "PONT EVEQUE" }, { - "codePostal": "15320", - "codeCommune": "15108", - "libelleAcheminement": "VAL D ARCOMIE", - "nomCommune": "VAL D ARCOMIE" + "codePostal": "38480", + "codeCommune": "38323", + "libelleAcheminement": "PRESSINS", + "nomCommune": "PRESSINS" }, { - "codePostal": "15320", - "codeCommune": "15108", - "libelleAcheminement": "VAL D ARCOMIE", - "nomCommune": "VAL D ARCOMIE" + "codePostal": "38110", + "codeCommune": "38341", + "libelleAcheminement": "ROCHETOIRIN", + "nomCommune": "ROCHETOIRIN" }, { - "codePostal": "15230", - "codeCommune": "15112", - "libelleAcheminement": "MALBO", - "nomCommune": "MALBO" + "codePostal": "38650", + "codeCommune": "38342", + "libelleAcheminement": "ROISSARD", + "nomCommune": "ROISSARD" }, { - "codePostal": "15400", - "codeCommune": "15116", - "libelleAcheminement": "MARCHASTEL", - "nomCommune": "MARCHASTEL" + "codePostal": "38550", + "codeCommune": "38349", + "libelleAcheminement": "SABLONS", + "nomCommune": "SABLONS" }, { - "codePostal": "15500", - "codeCommune": "15119", - "libelleAcheminement": "MASSIAC", - "nomCommune": "MASSIAC" + "codePostal": "38480", + "codeCommune": "38354", + "libelleAcheminement": "ST ALBIN DE VAULSERRE", + "nomCommune": "ST ALBIN DE VAULSERRE" }, { - "codePostal": "15120", - "codeCommune": "15134", - "libelleAcheminement": "MONTSALVY", - "nomCommune": "MONTSALVY" + "codePostal": "38160", + "codeCommune": "38360", + "libelleAcheminement": "ST APPOLINARD", + "nomCommune": "ST APPOLINARD" }, { - "codePostal": "15300", - "codeCommune": "15138", - "libelleAcheminement": "MURAT", - "nomCommune": "MURAT" + "codePostal": "38960", + "codeCommune": "38362", + "libelleAcheminement": "ST AUPRE", + "nomCommune": "ST AUPRE" }, { - "codePostal": "15170", - "codeCommune": "15141", - "libelleAcheminement": "NEUSSARGUES EN PINATELLE", - "nomCommune": "NEUSSARGUES EN PINATELLE" + "codePostal": "38110", + "codeCommune": "38369", + "libelleAcheminement": "STE BLANDINE", + "nomCommune": "STE BLANDINE" }, { - "codePostal": "15170", - "codeCommune": "15141", - "libelleAcheminement": "NEUSSARGUES EN PINATELLE", - "nomCommune": "NEUSSARGUES EN PINATELLE" + "codePostal": "38500", + "codeCommune": "38373", + "libelleAcheminement": "ST CASSIEN", + "nomCommune": "ST CASSIEN" }, { - "codePostal": "15300", - "codeCommune": "15141", - "libelleAcheminement": "NEUSSARGUES EN PINATELLE", - "nomCommune": "NEUSSARGUES EN PINATELLE" + "codePostal": "38890", + "codeCommune": "38374", + "libelleAcheminement": "ST CHEF", + "nomCommune": "ST CHEF" }, { - "codePostal": "15430", - "codeCommune": "15148", - "libelleAcheminement": "PAULHAC", - "nomCommune": "PAULHAC" + "codePostal": "38370", + "codeCommune": "38378", + "libelleAcheminement": "ST CLAIR DU RHONE", + "nomCommune": "ST CLAIR DU RHONE" }, { - "codePostal": "15170", - "codeCommune": "15151", - "libelleAcheminement": "PEYRUSSE", - "nomCommune": "PEYRUSSE" + "codePostal": "38120", + "codeCommune": "38382", + "libelleAcheminement": "ST EGREVE", + "nomCommune": "ST EGREVE" }, { - "codePostal": "15500", - "codeCommune": "15158", - "libelleAcheminement": "RAGEADE", - "nomCommune": "RAGEADE" + "codePostal": "38460", + "codeCommune": "38392", + "libelleAcheminement": "ST HILAIRE DE BRENS", + "nomCommune": "ST HILAIRE DE BRENS" }, { - "codePostal": "15220", - "codeCommune": "15163", - "libelleAcheminement": "ROANNES ST MARY", - "nomCommune": "ROANNES ST MARY" + "codePostal": "38480", + "codeCommune": "38398", + "libelleAcheminement": "ST JEAN D AVELANNE", + "nomCommune": "ST JEAN D AVELANNE" }, { - "codePostal": "15150", - "codeCommune": "15165", - "libelleAcheminement": "ROUFFIAC", - "nomCommune": "ROUFFIAC" + "codePostal": "38220", + "codeCommune": "38402", + "libelleAcheminement": "ST JEAN DE VAULX", + "nomCommune": "ST JEAN DE VAULX" }, { - "codePostal": "15600", - "codeCommune": "15181", - "libelleAcheminement": "ST CONSTANT FOURNOULES", - "nomCommune": "ST CONSTANT FOURNOULES" + "codePostal": "38380", + "codeCommune": "38412", + "libelleAcheminement": "ST LAURENT DU PONT", + "nomCommune": "ST LAURENT DU PONT" }, { - "codePostal": "15600", - "codeCommune": "15181", - "libelleAcheminement": "ST CONSTANT FOURNOULES", - "nomCommune": "ST CONSTANT FOURNOULES" + "codePostal": "38350", + "codeCommune": "38413", + "libelleAcheminement": "ST LAURENT EN BEAUMONT", + "nomCommune": "ST LAURENT EN BEAUMONT" }, { - "codePostal": "15600", - "codeCommune": "15194", - "libelleAcheminement": "ST JULIEN DE TOURSAC", - "nomCommune": "ST JULIEN DE TOURSAC" + "codePostal": "38660", + "codeCommune": "38417", + "libelleAcheminement": "STE MARIE D ALLOIX", + "nomCommune": "STE MARIE D ALLOIX" }, { - "codePostal": "15140", - "codeCommune": "15202", - "libelleAcheminement": "ST MARTIN VALMEROUX", - "nomCommune": "ST MARTIN VALMEROUX" + "codePostal": "38480", + "codeCommune": "38420", + "libelleAcheminement": "ST MARTIN DE VAULSERRE", + "nomCommune": "ST MARTIN DE VAULSERRE" }, { - "codePostal": "15150", - "codeCommune": "15217", - "libelleAcheminement": "ST VICTOR", - "nomCommune": "ST VICTOR" + "codePostal": "38400", + "codeCommune": "38421", + "libelleAcheminement": "ST MARTIN D HERES", + "nomCommune": "ST MARTIN D HERES" }, { - "codePostal": "15150", - "codeCommune": "15228", - "libelleAcheminement": "SIRAN", - "nomCommune": "SIRAN" + "codePostal": "38530", + "codeCommune": "38426", + "libelleAcheminement": "ST MAXIMIN", + "nomCommune": "ST MAXIMIN" }, { - "codePostal": "15600", - "codeCommune": "15242", - "libelleAcheminement": "LE TRIOULOU", - "nomCommune": "LE TRIOULOU" + "codePostal": "38350", + "codeCommune": "38428", + "libelleAcheminement": "ST MICHEL EN BEAUMONT", + "nomCommune": "ST MICHEL EN BEAUMONT" }, { - "codePostal": "15300", - "codeCommune": "15244", - "libelleAcheminement": "USSEL", - "nomCommune": "USSEL" + "codePostal": "38650", + "codeCommune": "38438", + "libelleAcheminement": "ST PAUL LES MONESTIER", + "nomCommune": "ST PAUL LES MONESTIER" }, { - "codePostal": "15170", - "codeCommune": "15247", - "libelleAcheminement": "VALJOUZE", - "nomCommune": "VALJOUZE" + "codePostal": "38830", + "codeCommune": "38439", + "libelleAcheminement": "CRETS EN BELLEDONNE", + "nomCommune": "CRETS EN BELLEDONNE" }, { - "codePostal": "15380", - "codeCommune": "15249", - "libelleAcheminement": "LE VAULMIER", - "nomCommune": "LE VAULMIER" + "codePostal": "38710", + "codeCommune": "38456", + "libelleAcheminement": "CHATEL EN TRIEVES", + "nomCommune": "CHATEL EN TRIEVES" }, { - "codePostal": "15350", - "codeCommune": "15254", - "libelleAcheminement": "VEYRIERES", - "nomCommune": "VEYRIERES" + "codePostal": "38150", + "codeCommune": "38468", + "libelleAcheminement": "SALAISE SUR SANNE", + "nomCommune": "SALAISE SUR SANNE" }, { - "codePostal": "15500", - "codeCommune": "15259", - "libelleAcheminement": "VIEILLESPESSE", - "nomCommune": "VIEILLESPESSE" + "codePostal": "38350", + "codeCommune": "38470", + "libelleAcheminement": "LA SALLE EN BEAUMONT", + "nomCommune": "LA SALLE EN BEAUMONT" }, { - "codePostal": "15200", - "codeCommune": "15261", - "libelleAcheminement": "LE VIGEAN", - "nomCommune": "LE VIGEAN" + "codePostal": "38700", + "codeCommune": "38472", + "libelleAcheminement": "SARCENAS", + "nomCommune": "SARCENAS" }, { - "codePostal": "15220", - "codeCommune": "15264", - "libelleAcheminement": "VITRAC", - "nomCommune": "VITRAC" + "codePostal": "38360", + "codeCommune": "38474", + "libelleAcheminement": "SASSENAGE", + "nomCommune": "SASSENAGE" }, { - "codePostal": "15130", - "codeCommune": "15267", - "libelleAcheminement": "YTRAC", - "nomCommune": "YTRAC" + "codePostal": "38290", + "codeCommune": "38475", + "libelleAcheminement": "SATOLAS ET BONCE", + "nomCommune": "SATOLAS ET BONCE" }, { - "codePostal": "16500", - "codeCommune": "16001", - "libelleAcheminement": "ABZAC", - "nomCommune": "ABZAC" + "codePostal": "38220", + "codeCommune": "38478", + "libelleAcheminement": "SECHILIENNE", + "nomCommune": "SECHILIENNE" }, { - "codePostal": "16140", - "codeCommune": "16005", - "libelleAcheminement": "AIGRE", - "nomCommune": "AIGRE" + "codePostal": "38260", + "codeCommune": "38479", + "libelleAcheminement": "PORTE DES BONNEVAUX", + "nomCommune": "PORTE DES BONNEVAUX" }, { - "codePostal": "16560", - "codeCommune": "16011", - "libelleAcheminement": "ANAIS", - "nomCommune": "ANAIS" + "codePostal": "38170", + "codeCommune": "38485", + "libelleAcheminement": "SEYSSINET PARISET", + "nomCommune": "SEYSSINET PARISET" }, { - "codePostal": "16130", - "codeCommune": "16012", - "libelleAcheminement": "ANGEAC CHAMPAGNE", - "nomCommune": "ANGEAC CHAMPAGNE" + "codePostal": "38840", + "codeCommune": "38495", + "libelleAcheminement": "LA SONE", + "nomCommune": "LA SONE" }, { - "codePostal": "16290", - "codeCommune": "16019", - "libelleAcheminement": "ASNIERES SUR NOUERE", - "nomCommune": "ASNIERES SUR NOUERE" + "codePostal": "38150", + "codeCommune": "38496", + "libelleAcheminement": "SONNAY", + "nomCommune": "SONNAY" }, { - "codePostal": "16140", - "codeCommune": "16027", - "libelleAcheminement": "BARBEZIERES", - "nomCommune": "BARBEZIERES" + "codePostal": "38350", + "codeCommune": "38497", + "libelleAcheminement": "SOUSVILLE", + "nomCommune": "SOUSVILLE" }, { - "codePostal": "16300", - "codeCommune": "16030", - "libelleAcheminement": "BARRET", - "nomCommune": "BARRET" + "codePostal": "38470", + "codeCommune": "38500", + "libelleAcheminement": "TECHE", + "nomCommune": "TECHE" }, { - "codePostal": "16250", - "codeCommune": "16036", - "libelleAcheminement": "BECHERESSE", - "nomCommune": "BECHERESSE" + "codePostal": "38650", + "codeCommune": "38513", + "libelleAcheminement": "TREFFORT", + "nomCommune": "TREFFORT" }, { - "codePostal": "16250", - "codeCommune": "16041", - "libelleAcheminement": "BESSAC", - "nomCommune": "BESSAC" + "codePostal": "38540", + "codeCommune": "38519", + "libelleAcheminement": "VALENCIN", + "nomCommune": "VALENCIN" }, { - "codePostal": "16120", - "codeCommune": "16045", - "libelleAcheminement": "BIRAC", - "nomCommune": "BIRAC" + "codePostal": "38760", + "codeCommune": "38524", + "libelleAcheminement": "VARCES ALLIERES ET RISSET", + "nomCommune": "VARCES ALLIERES ET RISSET" }, { - "codePostal": "16250", - "codeCommune": "16046", - "libelleAcheminement": "COTEAUX DU BLANZACAIS", - "nomCommune": "COTEAUX DU BLANZACAIS" + "codePostal": "38410", + "codeCommune": "38529", + "libelleAcheminement": "VAULNAVEYS LE HAUT", + "nomCommune": "VAULNAVEYS LE HAUT" }, { - "codePostal": "16590", - "codeCommune": "16061", - "libelleAcheminement": "BRIE", - "nomCommune": "BRIE" + "codePostal": "38090", + "codeCommune": "38530", + "libelleAcheminement": "VAULX MILIEU", + "nomCommune": "VAULX MILIEU" }, { - "codePostal": "16210", - "codeCommune": "16063", - "libelleAcheminement": "BRIE SOUS CHALAIS", - "nomCommune": "BRIE SOUS CHALAIS" + "codePostal": "38200", + "codeCommune": "38544", + "libelleAcheminement": "VIENNE", + "nomCommune": "VIENNE" }, { - "codePostal": "16250", - "codeCommune": "16072", - "libelleAcheminement": "CHADURIE", - "nomCommune": "CHADURIE" + "codePostal": "38980", + "codeCommune": "38561", + "libelleAcheminement": "VIRIVILLE", + "nomCommune": "VIRIVILLE" }, { - "codePostal": "16380", - "codeCommune": "16084", - "libelleAcheminement": "CHARRAS", - "nomCommune": "CHARRAS" + "codePostal": "38220", + "codeCommune": "38562", + "libelleAcheminement": "VIZILLE", + "nomCommune": "VIZILLE" }, { - "codePostal": "16150", - "codeCommune": "16086", - "libelleAcheminement": "CHASSENON", - "nomCommune": "CHASSENON" + "codePostal": "38620", + "codeCommune": "38564", + "libelleAcheminement": "VOISSANT", + "nomCommune": "VOISSANT" }, { - "codePostal": "16460", - "codeCommune": "16095", - "libelleAcheminement": "CHENON", - "nomCommune": "CHENON" + "codePostal": "39270", + "codeCommune": "39007", + "libelleAcheminement": "ALIEZE", + "nomCommune": "ALIEZE" }, { - "codePostal": "16480", - "codeCommune": "16099", - "libelleAcheminement": "CHILLAC", - "nomCommune": "CHILLAC" + "codePostal": "39240", + "codeCommune": "39016", + "libelleAcheminement": "ARINTHOD", + "nomCommune": "ARINTHOD" }, { - "codePostal": "16320", - "codeCommune": "16103", - "libelleAcheminement": "COMBIERS", - "nomCommune": "COMBIERS" + "codePostal": "39210", + "codeCommune": "39017", + "libelleAcheminement": "ARLAY", + "nomCommune": "ARLAY" }, { - "codePostal": "16200", - "codeCommune": "16109", - "libelleAcheminement": "COURBILLAC", - "nomCommune": "COURBILLAC" + "codePostal": "39270", + "codeCommune": "39021", + "libelleAcheminement": "LA CHAILLEUSE", + "nomCommune": "LA CHAILLEUSE" }, { - "codePostal": "16210", - "codeCommune": "16112", - "libelleAcheminement": "COURLAC", - "nomCommune": "COURLAC" + "codePostal": "39800", + "codeCommune": "39028", + "libelleAcheminement": "AUMONT", + "nomCommune": "AUMONT" }, { - "codePostal": "16410", - "codeCommune": "16120", - "libelleAcheminement": "DIRAC", - "nomCommune": "DIRAC" + "codePostal": "39700", + "codeCommune": "39031", + "libelleAcheminement": "AUXANGE", + "nomCommune": "AUXANGE" }, { - "codePostal": "16240", - "codeCommune": "16127", - "libelleAcheminement": "EMPURE", - "nomCommune": "EMPURE" + "codePostal": "39200", + "codeCommune": "39032", + "libelleAcheminement": "AVIGNON LES ST CLAUDE", + "nomCommune": "AVIGNON LES ST CLAUDE" }, { - "codePostal": "16150", - "codeCommune": "16134", - "libelleAcheminement": "EXIDEUIL SUR VIENNE", - "nomCommune": "EXIDEUIL SUR VIENNE" + "codePostal": "39380", + "codeCommune": "39037", + "libelleAcheminement": "BANS", + "nomCommune": "BANS" }, { - "codePostal": "16230", - "codeCommune": "16141", - "libelleAcheminement": "FONTENILLE", - "nomCommune": "FONTENILLE" + "codePostal": "39100", + "codeCommune": "39042", + "libelleAcheminement": "BAVERANS", + "nomCommune": "BAVERANS" }, { - "codePostal": "16240", - "codeCommune": "16142", - "libelleAcheminement": "LA FORET DE TESSE", - "nomCommune": "LA FORET DE TESSE" + "codePostal": "39190", + "codeCommune": "39043", + "libelleAcheminement": "BEAUFORT ORBAGNA", + "nomCommune": "BEAUFORT ORBAGNA" }, { - "codePostal": "16250", - "codeCommune": "16175", - "libelleAcheminement": "VAL DES VIGNES", - "nomCommune": "VAL DES VIGNES" + "codePostal": "39400", + "codeCommune": "39047", + "libelleAcheminement": "BELLEFONTAINE", + "nomCommune": "BELLEFONTAINE" }, { - "codePostal": "16300", - "codeCommune": "16178", - "libelleAcheminement": "LAGARDE SUR LE NE", - "nomCommune": "LAGARDE SUR LE NE" + "codePostal": "39380", + "codeCommune": "39048", + "libelleAcheminement": "BELMONT", + "nomCommune": "BELMONT" }, { - "codePostal": "16140", - "codeCommune": "16185", - "libelleAcheminement": "LIGNE", - "nomCommune": "LIGNE" + "codePostal": "39800", + "codeCommune": "39049", + "libelleAcheminement": "BERSAILLIN", + "nomCommune": "BERSAILLIN" }, { - "codePostal": "16270", - "codeCommune": "16192", - "libelleAcheminement": "TERRES DE HAUTE CHARENTE", - "nomCommune": "TERRES DE HAUTE CHARENTE" + "codePostal": "39110", + "codeCommune": "39072", + "libelleAcheminement": "BRACON", + "nomCommune": "BRACON" }, { - "codePostal": "16320", - "codeCommune": "16198", - "libelleAcheminement": "MAGNAC LAVALETTE VILLARS", - "nomCommune": "MAGNAC LAVALETTE VILLARS" + "codePostal": "39800", + "codeCommune": "39081", + "libelleAcheminement": "BUVILLY", + "nomCommune": "BUVILLY" }, { - "codePostal": "16600", - "codeCommune": "16199", - "libelleAcheminement": "MAGNAC SUR TOUVRE", - "nomCommune": "MAGNAC SUR TOUVRE" + "codePostal": "39240", + "codeCommune": "39086", + "libelleAcheminement": "CERNON", + "nomCommune": "CERNON" }, { - "codePostal": "16120", - "codeCommune": "16204", - "libelleAcheminement": "BELLEVIGNE", - "nomCommune": "BELLEVIGNE" + "codePostal": "39150", + "codeCommune": "39091", + "libelleAcheminement": "LES CHALESMES", + "nomCommune": "LES CHALESMES" }, { - "codePostal": "16380", - "codeCommune": "16211", - "libelleAcheminement": "MARTHON", - "nomCommune": "MARTHON" + "codePostal": "39250", + "codeCommune": "39108", + "libelleAcheminement": "CHARENCY", + "nomCommune": "CHARENCY" }, { - "codePostal": "16420", - "codeCommune": "16231", - "libelleAcheminement": "MONTROLLET", - "nomCommune": "MONTROLLET" + "codePostal": "39130", + "codeCommune": "39109", + "libelleAcheminement": "CHAREZIER", + "nomCommune": "CHAREZIER" }, { - "codePostal": "16390", - "codeCommune": "16240", - "libelleAcheminement": "NABINAUD", - "nomCommune": "NABINAUD" + "codePostal": "39210", + "codeCommune": "39114", + "libelleAcheminement": "CHATEAU CHALON", + "nomCommune": "CHATEAU CHALON" }, { - "codePostal": "16700", - "codeCommune": "16242", - "libelleAcheminement": "NANTEUIL EN VALLEE", - "nomCommune": "NANTEUIL EN VALLEE" + "codePostal": "39230", + "codeCommune": "39119", + "libelleAcheminement": "LE CHATELEY", + "nomCommune": "LE CHATELEY" }, { - "codePostal": "16200", - "codeCommune": "16243", - "libelleAcheminement": "NERCILLAC", - "nomCommune": "NERCILLAC" + "codePostal": "39130", + "codeCommune": "39122", + "libelleAcheminement": "CHATILLON", + "nomCommune": "CHATILLON" }, { - "codePostal": "16270", - "codeCommune": "16245", - "libelleAcheminement": "NIEUIL", - "nomCommune": "NIEUIL" + "codePostal": "39200", + "codeCommune": "39130", + "libelleAcheminement": "NANCHEZ", + "nomCommune": "NANCHEZ" }, { - "codePostal": "16500", - "codeCommune": "16249", - "libelleAcheminement": "ORADOUR FANAIS", - "nomCommune": "ORADOUR FANAIS" + "codePostal": "39110", + "codeCommune": "39133", + "libelleAcheminement": "CHAUX CHAMPAGNY", + "nomCommune": "CHAUX CHAMPAGNY" }, { - "codePostal": "16250", - "codeCommune": "16258", - "libelleAcheminement": "PERIGNAC", - "nomCommune": "PERIGNAC" + "codePostal": "39570", + "codeCommune": "39145", + "libelleAcheminement": "CHILLE", + "nomCommune": "CHILLE" }, { - "codePostal": "16490", - "codeCommune": "16264", - "libelleAcheminement": "PLEUVILLE", - "nomCommune": "PLEUVILLE" + "codePostal": "39110", + "codeCommune": "39147", + "libelleAcheminement": "CHILLY SUR SALINS", + "nomCommune": "CHILLY SUR SALINS" }, { - "codePostal": "16230", - "codeCommune": "16272", - "libelleAcheminement": "PUYREAUX", - "nomCommune": "PUYREAUX" + "codePostal": "39380", + "codeCommune": "39149", + "libelleAcheminement": "CHISSEY SUR LOUE", + "nomCommune": "CHISSEY SUR LOUE" }, { - "codePostal": "16210", - "codeCommune": "16279", - "libelleAcheminement": "RIOUX MARTIN", - "nomCommune": "RIOUX MARTIN" + "codePostal": "39140", + "codeCommune": "39160", + "libelleAcheminement": "COMMENAILLES", + "nomCommune": "COMMENAILLES" }, { - "codePostal": "16110", - "codeCommune": "16281", - "libelleAcheminement": "LA ROCHEFOUCAULD EN ANGOUMOIS", - "nomCommune": "LA ROCHEFOUCAULD EN ANGOUMOIS" + "codePostal": "39570", + "codeCommune": "39170", + "libelleAcheminement": "COURLANS", + "nomCommune": "COURLANS" }, { - "codePostal": "16110", - "codeCommune": "16282", - "libelleAcheminement": "LA ROCHETTE", - "nomCommune": "LA ROCHETTE" + "codePostal": "39570", + "codeCommune": "39171", + "libelleAcheminement": "COURLAOUX", + "nomCommune": "COURLAOUX" }, { - "codePostal": "16170", - "codeCommune": "16286", - "libelleAcheminement": "ROUILLAC", - "nomCommune": "ROUILLAC" + "codePostal": "39700", + "codeCommune": "39172", + "libelleAcheminement": "COURTEFONTAINE", + "nomCommune": "COURTEFONTAINE" }, { - "codePostal": "16170", - "codeCommune": "16286", - "libelleAcheminement": "ROUILLAC", - "nomCommune": "ROUILLAC" + "codePostal": "39260", + "codeCommune": "39175", + "libelleAcheminement": "COYRON", + "nomCommune": "COYRON" }, { - "codePostal": "16330", - "codeCommune": "16295", - "libelleAcheminement": "ST AMANT DE BOIXE", - "nomCommune": "ST AMANT DE BOIXE" + "codePostal": "39210", + "codeCommune": "39177", + "libelleAcheminement": "HAUTEROCHE", + "nomCommune": "HAUTEROCHE" }, { - "codePostal": "16120", - "codeCommune": "16297", - "libelleAcheminement": "GRAVES ST AMANT", - "nomCommune": "GRAVES ST AMANT" + "codePostal": "39260", + "codeCommune": "39179", + "libelleAcheminement": "CRENANS", + "nomCommune": "CRENANS" }, { - "codePostal": "16170", - "codeCommune": "16298", - "libelleAcheminement": "ST AMANT DE NOUERE", - "nomCommune": "ST AMANT DE NOUERE" + "codePostal": "39100", + "codeCommune": "39182", + "libelleAcheminement": "CRISSEY", + "nomCommune": "CRISSEY" }, { - "codePostal": "16210", - "codeCommune": "16302", - "libelleAcheminement": "ST AVIT", - "nomCommune": "ST AVIT" + "codePostal": "39700", + "codeCommune": "39190", + "libelleAcheminement": "DAMPIERRE", + "nomCommune": "DAMPIERRE" }, { - "codePostal": "16420", - "codeCommune": "16306", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "39130", + "codeCommune": "39192", + "libelleAcheminement": "DENEZIERES", + "nomCommune": "DENEZIERES" }, { - "codePostal": "16140", - "codeCommune": "16317", - "libelleAcheminement": "ST FRAIGNE", - "nomCommune": "ST FRAIGNE" + "codePostal": "39120", + "codeCommune": "39193", + "libelleAcheminement": "LE DESCHAUX", + "nomCommune": "LE DESCHAUX" }, { - "codePostal": "16700", - "codeCommune": "16321", - "libelleAcheminement": "ST GEORGES", - "nomCommune": "ST GEORGES" + "codePostal": "39230", + "codeCommune": "39196", + "libelleAcheminement": "LES DEUX FAYS", + "nomCommune": "LES DEUX FAYS" }, { - "codePostal": "16230", - "codeCommune": "16326", - "libelleAcheminement": "ST GROUX", - "nomCommune": "ST GROUX" + "codePostal": "39190", + "codeCommune": "39197", + "libelleAcheminement": "DIGNA", + "nomCommune": "DIGNA" }, { - "codePostal": "16260", - "codeCommune": "16336", - "libelleAcheminement": "ST MARY", - "nomCommune": "ST MARY" + "codePostal": "39100", + "codeCommune": "39198", + "libelleAcheminement": "DOLE", + "nomCommune": "DOLE" }, { - "codePostal": "16170", - "codeCommune": "16339", - "libelleAcheminement": "VAL D AUGE", - "nomCommune": "VAL D AUGE" + "codePostal": "39270", + "codeCommune": "39200", + "libelleAcheminement": "DOMPIERRE SUR MONT", + "nomCommune": "DOMPIERRE SUR MONT" }, { - "codePostal": "16130", - "codeCommune": "16343", - "libelleAcheminement": "ST PREUIL", - "nomCommune": "ST PREUIL" + "codePostal": "39240", + "codeCommune": "39204", + "libelleAcheminement": "DRAMELAY", + "nomCommune": "DRAMELAY" }, { - "codePostal": "16200", - "codeCommune": "16349", - "libelleAcheminement": "STE SEVERE", - "nomCommune": "STE SEVERE" + "codePostal": "39160", + "codeCommune": "39209", + "libelleAcheminement": "VAL D EPY", + "nomCommune": "VAL D EPY" }, { - "codePostal": "16120", - "codeCommune": "16352", - "libelleAcheminement": "ST SIMON", - "nomCommune": "ST SIMON" + "codePostal": "39320", + "codeCommune": "39209", + "libelleAcheminement": "VAL D EPY", + "nomCommune": "VAL D EPY" }, { - "codePostal": "16460", - "codeCommune": "16356", - "libelleAcheminement": "ST SULPICE DE RUFFEC", - "nomCommune": "ST SULPICE DE RUFFEC" + "codePostal": "39300", + "codeCommune": "39210", + "libelleAcheminement": "EQUEVILLON", + "nomCommune": "EQUEVILLON" }, { - "codePostal": "16480", - "codeCommune": "16357", - "libelleAcheminement": "ST VALLIER", - "nomCommune": "ST VALLIER" + "codePostal": "39130", + "codeCommune": "39216", + "libelleAcheminement": "ETIVAL", + "nomCommune": "ETIVAL" }, { - "codePostal": "16130", - "codeCommune": "16359", - "libelleAcheminement": "SALLES D ANGLES", - "nomCommune": "SALLES D ANGLES" + "codePostal": "39230", + "codeCommune": "39236", + "libelleAcheminement": "FRANCHEVILLE", + "nomCommune": "FRANCHEVILLE" }, { - "codePostal": "16300", - "codeCommune": "16360", - "libelleAcheminement": "SALLES DE BARBEZIEUX", - "nomCommune": "SALLES DE BARBEZIEUX" + "codePostal": "39130", + "codeCommune": "39240", + "libelleAcheminement": "LE FRASNOIS", + "nomCommune": "LE FRASNOIS" }, { - "codePostal": "16700", - "codeCommune": "16361", - "libelleAcheminement": "SALLES DE VILLEFAGNAN", - "nomCommune": "SALLES DE VILLEFAGNAN" + "codePostal": "39110", + "codeCommune": "39248", + "libelleAcheminement": "GERAISE", + "nomCommune": "GERAISE" }, { - "codePostal": "16700", - "codeCommune": "16378", - "libelleAcheminement": "TAIZE AIZIE", - "nomCommune": "TAIZE AIZIE" + "codePostal": "39380", + "codeCommune": "39249", + "libelleAcheminement": "GERMIGNEY", + "nomCommune": "GERMIGNEY" }, { - "codePostal": "16110", - "codeCommune": "16379", - "libelleAcheminement": "TAPONNAT FLEURIGNAC", - "nomCommune": "TAPONNAT FLEURIGNAC" + "codePostal": "39570", + "codeCommune": "39251", + "libelleAcheminement": "GEVINGEY", + "nomCommune": "GEVINGEY" }, { - "codePostal": "16360", - "codeCommune": "16384", - "libelleAcheminement": "TOUVERAC", - "nomCommune": "TOUVERAC" + "codePostal": "39150", + "codeCommune": "39258", + "libelleAcheminement": "GRANDE RIVIERE CHATEAU", + "nomCommune": "GRANDE RIVIERE CHATEAU" }, { - "codePostal": "16600", - "codeCommune": "16385", - "libelleAcheminement": "TOUVRE", - "nomCommune": "TOUVRE" + "codePostal": "39320", + "codeCommune": "39261", + "libelleAcheminement": "GRAYE ET CHARNAY", + "nomCommune": "GRAYE ET CHARNAY" }, { - "codePostal": "16200", - "codeCommune": "16387", - "libelleAcheminement": "TRIAC LAUTRAIT", - "nomCommune": "TRIAC LAUTRAIT" + "codePostal": "39110", + "codeCommune": "39268", + "libelleAcheminement": "IVREY", + "nomCommune": "IVREY" }, { - "codePostal": "16120", - "codeCommune": "16402", - "libelleAcheminement": "VIBRAC", - "nomCommune": "VIBRAC" + "codePostal": "39210", + "codeCommune": "39272", + "libelleAcheminement": "LADOYE SUR SEILLE", + "nomCommune": "LADOYE SUR SEILLE" }, { - "codePostal": "16220", - "codeCommune": "16406", - "libelleAcheminement": "MOULINS SUR TARDOIRE", - "nomCommune": "MOULINS SUR TARDOIRE" + "codePostal": "01410", + "codeCommune": "39274", + "libelleAcheminement": "LAJOUX", + "nomCommune": "LAJOUX" }, { - "codePostal": "17123", - "codeCommune": "17004", - "libelleAcheminement": "ILE D AIX", - "nomCommune": "ILE D AIX" + "codePostal": "39140", + "codeCommune": "39279", + "libelleAcheminement": "LARNAUD", + "nomCommune": "LARNAUD" }, { - "codePostal": "17770", - "codeCommune": "17023", - "libelleAcheminement": "AUJAC", - "nomCommune": "AUJAC" + "codePostal": "39250", + "codeCommune": "39282", + "libelleAcheminement": "LA LATETTE", + "nomCommune": "LA LATETTE" }, { - "codePostal": "17470", - "codeCommune": "17024", - "libelleAcheminement": "AULNAY", - "nomCommune": "AULNAY" + "codePostal": "39170", + "codeCommune": "39286", + "libelleAcheminement": "LAVANS LES ST CLAUDE", + "nomCommune": "LAVANS LES ST CLAUDE" }, { - "codePostal": "17440", - "codeCommune": "17028", - "libelleAcheminement": "AYTRE", - "nomCommune": "AYTRE" + "codePostal": "39170", + "codeCommune": "39286", + "libelleAcheminement": "LAVANS LES ST CLAUDE", + "nomCommune": "LAVANS LES ST CLAUDE" }, { - "codePostal": "17160", - "codeCommune": "17031", - "libelleAcheminement": "BALLANS", - "nomCommune": "BALLANS" + "codePostal": "39170", + "codeCommune": "39286", + "libelleAcheminement": "LAVANS LES ST CLAUDE", + "nomCommune": "LAVANS LES ST CLAUDE" }, { - "codePostal": "17620", - "codeCommune": "17036", - "libelleAcheminement": "BEAUGEAY", - "nomCommune": "BEAUGEAY" + "codePostal": "39210", + "codeCommune": "39288", + "libelleAcheminement": "LAVIGNY", + "nomCommune": "LAVIGNY" }, { - "codePostal": "17170", - "codeCommune": "17041", - "libelleAcheminement": "BENON", - "nomCommune": "BENON" + "codePostal": "39210", + "codeCommune": "39288", + "libelleAcheminement": "LAVIGNY", + "nomCommune": "LAVIGNY" }, { - "codePostal": "17800", - "codeCommune": "17047", - "libelleAcheminement": "BIRON", - "nomCommune": "BIRON" + "codePostal": "39260", + "codeCommune": "39289", + "libelleAcheminement": "LECT", + "nomCommune": "LECT" }, { - "codePostal": "17580", - "codeCommune": "17051", - "libelleAcheminement": "LE BOIS PLAGE EN RE", - "nomCommune": "LE BOIS PLAGE EN RE" + "codePostal": "39110", + "codeCommune": "39291", + "libelleAcheminement": "LEMUY", + "nomCommune": "LEMUY" }, { - "codePostal": "17430", - "codeCommune": "17053", - "libelleAcheminement": "BORDS", - "nomCommune": "BORDS" + "codePostal": "39300", + "codeCommune": "39292", + "libelleAcheminement": "LENT", + "nomCommune": "LENT" }, { - "codePostal": "17220", - "codeCommune": "17059", - "libelleAcheminement": "BOURGNEUF", - "nomCommune": "BOURGNEUF" + "codePostal": "39250", + "codeCommune": "39298", + "libelleAcheminement": "LONGCOCHON", + "nomCommune": "LONGCOCHON" }, { - "codePostal": "17120", - "codeCommune": "17060", - "libelleAcheminement": "BOUTENAC TOUVENT", - "nomCommune": "BOUTENAC TOUVENT" + "codePostal": "39380", + "codeCommune": "39305", + "libelleAcheminement": "LA LOYE", + "nomCommune": "LA LOYE" }, { - "codePostal": "17210", - "codeCommune": "17061", - "libelleAcheminement": "BRAN", - "nomCommune": "BRAN" + "codePostal": "39270", + "codeCommune": "39314", + "libelleAcheminement": "MARNEZIA", + "nomCommune": "MARNEZIA" }, { - "codePostal": "17800", - "codeCommune": "17078", - "libelleAcheminement": "CHADENAC", - "nomCommune": "CHADENAC" + "codePostal": "39600", + "codeCommune": "39325", + "libelleAcheminement": "MESNAY", + "nomCommune": "MESNAY" }, { - "codePostal": "17890", - "codeCommune": "17079", - "libelleAcheminement": "CHAILLEVETTE", - "nomCommune": "CHAILLEVETTE" + "codePostal": "39250", + "codeCommune": "39331", + "libelleAcheminement": "MIGNOVILLARD", + "nomCommune": "MIGNOVILLARD" }, { - "codePostal": "17620", - "codeCommune": "17083", - "libelleAcheminement": "CHAMPAGNE", - "nomCommune": "CHAMPAGNE" + "codePostal": "39250", + "codeCommune": "39331", + "libelleAcheminement": "MIGNOVILLARD", + "nomCommune": "MIGNOVILLARD" }, { - "codePostal": "17480", - "codeCommune": "17093", - "libelleAcheminement": "LE CHATEAU D OLERON", - "nomCommune": "LE CHATEAU D OLERON" + "codePostal": "39800", + "codeCommune": "39336", + "libelleAcheminement": "MOLAIN", + "nomCommune": "MOLAIN" }, { - "codePostal": "17460", - "codeCommune": "17102", - "libelleAcheminement": "CHERMIGNAC", - "nomCommune": "CHERMIGNAC" + "codePostal": "39500", + "codeCommune": "39338", + "libelleAcheminement": "MOLAY", + "nomCommune": "MOLAY" }, { - "codePostal": "17360", - "codeCommune": "17113", - "libelleAcheminement": "LA CLOTTE", - "nomCommune": "LA CLOTTE" + "codePostal": "39230", + "codeCommune": "39342", + "libelleAcheminement": "MONAY", + "nomCommune": "MONAY" }, { - "codePostal": "17460", - "codeCommune": "17115", - "libelleAcheminement": "COLOMBIERS", - "nomCommune": "COLOMBIERS" + "codePostal": "39100", + "codeCommune": "39345", + "libelleAcheminement": "MONNIERES", + "nomCommune": "MONNIERES" }, { - "codePostal": "17170", - "codeCommune": "17132", - "libelleAcheminement": "CRAMCHABAN", - "nomCommune": "CRAMCHABAN" + "codePostal": "39800", + "codeCommune": "39354", + "libelleAcheminement": "MONTHOLIER", + "nomCommune": "MONTHOLIER" }, { - "codePostal": "17160", - "codeCommune": "17135", - "libelleAcheminement": "CRESSE", - "nomCommune": "CRESSE" + "codePostal": "39600", + "codeCommune": "39355", + "libelleAcheminement": "MONTIGNY LES ARSURES", + "nomCommune": "MONTIGNY LES ARSURES" }, { - "codePostal": "17330", - "codeCommune": "17137", - "libelleAcheminement": "LA CROIX COMTESSE", - "nomCommune": "LA CROIX COMTESSE" + "codePostal": "39300", + "codeCommune": "39356", + "libelleAcheminement": "MONTIGNY SUR L AIN", + "nomCommune": "MONTIGNY SUR L AIN" }, { - "codePostal": "17620", - "codeCommune": "17146", - "libelleAcheminement": "ECHILLAIS", - "nomCommune": "ECHILLAIS" + "codePostal": "39290", + "codeCommune": "39360", + "libelleAcheminement": "MONTMIREY LA VILLE", + "nomCommune": "MONTMIREY LA VILLE" }, { - "codePostal": "17510", - "codeCommune": "17149", - "libelleAcheminement": "LES EDUTS", - "nomCommune": "LES EDUTS" + "codePostal": "39290", + "codeCommune": "39361", + "libelleAcheminement": "MONTMIREY LE CHATEAU", + "nomCommune": "MONTMIREY LE CHATEAU" }, { - "codePostal": "17130", - "codeCommune": "17156", - "libelleAcheminement": "EXPIREMONT", - "nomCommune": "EXPIREMONT" + "codePostal": "39300", + "codeCommune": "39364", + "libelleAcheminement": "MONTROND", + "nomCommune": "MONTROND" }, { - "codePostal": "17350", - "codeCommune": "17157", - "libelleAcheminement": "FENIOUX", - "nomCommune": "FENIOUX" + "codePostal": "39400", + "codeCommune": "39367", + "libelleAcheminement": "MORBIER", + "nomCommune": "MORBIER" }, { - "codePostal": "17170", - "codeCommune": "17158", - "libelleAcheminement": "FERRIERES", - "nomCommune": "FERRIERES" + "codePostal": "39250", + "codeCommune": "39372", + "libelleAcheminement": "MOURNANS CHARBONNY", + "nomCommune": "MOURNANS CHARBONNY" }, { - "codePostal": "17800", - "codeCommune": "17159", - "libelleAcheminement": "FLEAC SUR SEUGNE", - "nomCommune": "FLEAC SUR SEUGNE" + "codePostal": "39310", + "codeCommune": "39373", + "libelleAcheminement": "LES MOUSSIERES", + "nomCommune": "LES MOUSSIERES" }, { - "codePostal": "17100", - "codeCommune": "17164", - "libelleAcheminement": "FONTCOUVERTE", - "nomCommune": "FONTCOUVERTE" + "codePostal": "39300", + "codeCommune": "39376", + "libelleAcheminement": "MOUTOUX", + "nomCommune": "MOUTOUX" }, { - "codePostal": "17400", - "codeCommune": "17165", - "libelleAcheminement": "FONTENET", - "nomCommune": "FONTENET" + "codePostal": "39160", + "codeCommune": "39378", + "libelleAcheminement": "LES TROIS CHATEAUX", + "nomCommune": "LES TROIS CHATEAUX" }, { - "codePostal": "17290", - "codeCommune": "17166", - "libelleAcheminement": "FORGES", - "nomCommune": "FORGES" + "codePostal": "39270", + "codeCommune": "39380", + "libelleAcheminement": "NANCUISE", + "nomCommune": "NANCUISE" }, { - "codePostal": "17250", - "codeCommune": "17171", - "libelleAcheminement": "GEAY", - "nomCommune": "GEAY" + "codePostal": "39300", + "codeCommune": "39381", + "libelleAcheminement": "LES NANS", + "nomCommune": "LES NANS" }, { - "codePostal": "17520", - "codeCommune": "17175", - "libelleAcheminement": "GERMIGNAC", - "nomCommune": "GERMIGNAC" + "codePostal": "39380", + "codeCommune": "39387", + "libelleAcheminement": "NEVY LES DOLE", + "nomCommune": "NEVY LES DOLE" }, { - "codePostal": "17170", - "codeCommune": "17182", - "libelleAcheminement": "LA GREVE SUR MIGNON", - "nomCommune": "LA GREVE SUR MIGNON" + "codePostal": "39210", + "codeCommune": "39388", + "libelleAcheminement": "NEVY SUR SEILLE", + "nomCommune": "NEVY SUR SEILLE" }, { - "codePostal": "17620", - "codeCommune": "17184", - "libelleAcheminement": "LA GRIPPERIE ST SYMPHORIEN", - "nomCommune": "LA GRIPPERIE ST SYMPHORIEN" + "codePostal": "39290", + "codeCommune": "39392", + "libelleAcheminement": "OFFLANGES", + "nomCommune": "OFFLANGES" }, { - "codePostal": "17260", - "codeCommune": "17196", - "libelleAcheminement": "JAZENNES", - "nomCommune": "JAZENNES" + "codePostal": "39270", + "codeCommune": "39394", + "libelleAcheminement": "ONOZ", + "nomCommune": "ONOZ" }, { - "codePostal": "17130", - "codeCommune": "17199", - "libelleAcheminement": "JUSSAS", - "nomCommune": "JUSSAS" + "codePostal": "39270", + "codeCommune": "39397", + "libelleAcheminement": "ORGELET", + "nomCommune": "ORGELET" }, { - "codePostal": "17470", - "codeCommune": "17206", - "libelleAcheminement": "LOIRE SUR NIE", - "nomCommune": "LOIRE SUR NIE" + "codePostal": "39350", + "codeCommune": "39402", + "libelleAcheminement": "PAGNEY", + "nomCommune": "PAGNEY" }, { - "codePostal": "17320", - "codeCommune": "17219", - "libelleAcheminement": "MARENNES HIERS BROUAGE", - "nomCommune": "MARENNES HIERS BROUAGE" + "codePostal": "39230", + "codeCommune": "39407", + "libelleAcheminement": "PASSENANS", + "nomCommune": "PASSENANS" }, { - "codePostal": "17320", - "codeCommune": "17219", - "libelleAcheminement": "MARENNES HIERS BROUAGE", - "nomCommune": "MARENNES HIERS BROUAGE" + "codePostal": "39120", + "codeCommune": "39412", + "libelleAcheminement": "PESEUX", + "nomCommune": "PESEUX" }, { - "codePostal": "17700", - "codeCommune": "17221", - "libelleAcheminement": "MARSAIS", - "nomCommune": "MARSAIS" + "codePostal": "39800", + "codeCommune": "39418", + "libelleAcheminement": "PICARREAU", + "nomCommune": "PICARREAU" }, { - "codePostal": "17490", - "codeCommune": "17223", - "libelleAcheminement": "MASSAC", - "nomCommune": "MASSAC" + "codePostal": "39800", + "codeCommune": "39426", + "libelleAcheminement": "PLASNE", + "nomCommune": "PLASNE" }, { - "codePostal": "17570", - "codeCommune": "17225", - "libelleAcheminement": "LES MATHES", - "nomCommune": "LES MATHES" + "codePostal": "39570", + "codeCommune": "39431", + "libelleAcheminement": "POIDS DE FIOLE", + "nomCommune": "POIDS DE FIOLE" }, { - "codePostal": "17600", - "codeCommune": "17228", - "libelleAcheminement": "MEDIS", - "nomCommune": "MEDIS" + "codePostal": "39800", + "codeCommune": "39434", + "libelleAcheminement": "POLIGNY", + "nomCommune": "POLIGNY" }, { - "codePostal": "17210", - "codeCommune": "17229", - "libelleAcheminement": "MERIGNAC", - "nomCommune": "MERIGNAC" + "codePostal": "39300", + "codeCommune": "39437", + "libelleAcheminement": "PONT DU NAVOY", + "nomCommune": "PONT DU NAVOY" }, { - "codePostal": "17330", - "codeCommune": "17234", - "libelleAcheminement": "MIGRE", - "nomCommune": "MIGRE" + "codePostal": "39120", + "codeCommune": "39448", + "libelleAcheminement": "RAHON", + "nomCommune": "RAHON" }, { - "codePostal": "17770", - "codeCommune": "17235", - "libelleAcheminement": "MIGRON", - "nomCommune": "MIGRON" + "codePostal": "39190", + "codeCommune": "39467", + "libelleAcheminement": "ROTALIER", + "nomCommune": "ROTALIER" }, { - "codePostal": "17270", - "codeCommune": "17241", - "libelleAcheminement": "MONTGUYON", - "nomCommune": "MONTGUYON" + "codePostal": "39270", + "codeCommune": "39468", + "libelleAcheminement": "ROTHONAY", + "nomCommune": "ROTHONAY" }, { - "codePostal": "17220", - "codeCommune": "17245", - "libelleAcheminement": "MONTROY", - "nomCommune": "MONTROY" + "codePostal": "39350", + "codeCommune": "39469", + "libelleAcheminement": "ROUFFANGE", + "nomCommune": "ROUFFANGE" }, { - "codePostal": "17500", - "codeCommune": "17249", - "libelleAcheminement": "MORTIERS", - "nomCommune": "MORTIERS" + "codePostal": "39220", + "codeCommune": "39470", + "libelleAcheminement": "LES ROUSSES", + "nomCommune": "LES ROUSSES" }, { - "codePostal": "17510", - "codeCommune": "17257", - "libelleAcheminement": "NERE", - "nomCommune": "NERE" + "codePostal": "39400", + "codeCommune": "39470", + "libelleAcheminement": "LES ROUSSES", + "nomCommune": "LES ROUSSES" }, { - "codePostal": "17270", - "codeCommune": "17260", - "libelleAcheminement": "NEUVICQ", - "nomCommune": "NEUVICQ" + "codePostal": "39190", + "codeCommune": "39474", + "libelleAcheminement": "STE AGNES", + "nomCommune": "STE AGNES" }, { - "codePostal": "17380", - "codeCommune": "17266", - "libelleAcheminement": "LES NOUILLERS", - "nomCommune": "LES NOUILLERS" + "codePostal": "39200", + "codeCommune": "39478", + "libelleAcheminement": "ST CLAUDE", + "nomCommune": "ST CLAUDE" }, { - "codePostal": "17210", - "codeCommune": "17269", - "libelleAcheminement": "ORIGNOLLES", - "nomCommune": "ORIGNOLLES" + "codePostal": "39600", + "codeCommune": "39479", + "libelleAcheminement": "ST CYR MONTMALIN", + "nomCommune": "ST CYR MONTMALIN" }, { - "codePostal": "17810", - "codeCommune": "17275", - "libelleAcheminement": "PESSINES", - "nomCommune": "PESSINES" + "codePostal": "39570", + "codeCommune": "39480", + "libelleAcheminement": "ST DIDIER", + "nomCommune": "ST DIDIER" }, { - "codePostal": "17210", - "codeCommune": "17276", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "39320", + "codeCommune": "39485", + "libelleAcheminement": "VAL SURAN", + "nomCommune": "VAL SURAN" }, { - "codePostal": "17400", - "codeCommune": "17277", - "libelleAcheminement": "ESSOUVERT", - "nomCommune": "ESSOUVERT" + "codePostal": "39320", + "codeCommune": "39485", + "libelleAcheminement": "VAL SURAN", + "nomCommune": "VAL SURAN" }, { - "codePostal": "17350", - "codeCommune": "17285", - "libelleAcheminement": "PORT D ENVAUX", - "nomCommune": "PORT D ENVAUX" + "codePostal": "39170", + "codeCommune": "39491", + "libelleAcheminement": "COTEAUX DU LIZON", + "nomCommune": "COTEAUX DU LIZON" }, { - "codePostal": "17210", - "codeCommune": "17287", - "libelleAcheminement": "POUILLAC", - "nomCommune": "POUILLAC" + "codePostal": "39570", + "codeCommune": "39492", + "libelleAcheminement": "ST MAUR", + "nomCommune": "ST MAUR" }, { - "codePostal": "17380", - "codeCommune": "17292", - "libelleAcheminement": "PUY DU LAC", - "nomCommune": "PUY DU LAC" + "codePostal": "39130", + "codeCommune": "39493", + "libelleAcheminement": "ST MAURICE CRILLAT", + "nomCommune": "ST MAURICE CRILLAT" }, { - "codePostal": "17500", - "codeCommune": "17295", - "libelleAcheminement": "REAUX SUR TREFLE", - "nomCommune": "REAUX SUR TREFLE" + "codePostal": "39700", + "codeCommune": "39498", + "libelleAcheminement": "SALANS", + "nomCommune": "SALANS" }, { - "codePostal": "17000", - "codeCommune": "17300", - "libelleAcheminement": "LA ROCHELLE", - "nomCommune": "LA ROCHELLE" + "codePostal": "39380", + "codeCommune": "39502", + "libelleAcheminement": "SANTANS", + "nomCommune": "SANTANS" }, { - "codePostal": "17600", - "codeCommune": "17307", - "libelleAcheminement": "SABLONCEAUX", - "nomCommune": "SABLONCEAUX" + "codePostal": "39270", + "codeCommune": "39504", + "libelleAcheminement": "SARROGNA", + "nomCommune": "SARROGNA" }, { - "codePostal": "17150", - "codeCommune": "17312", - "libelleAcheminement": "ST BONNET SUR GIRONDE", - "nomCommune": "ST BONNET SUR GIRONDE" + "codePostal": "39130", + "codeCommune": "39518", + "libelleAcheminement": "SONGESON", + "nomCommune": "SONGESON" }, { - "codePostal": "17770", - "codeCommune": "17313", - "libelleAcheminement": "ST BRIS DES BOIS", - "nomCommune": "ST BRIS DES BOIS" + "codePostal": "39130", + "codeCommune": "39519", + "libelleAcheminement": "SOUCIA", + "nomCommune": "SOUCIA" }, { - "codePostal": "17150", - "codeCommune": "17324", - "libelleAcheminement": "ST DIZANT DU BOIS", - "nomCommune": "ST DIZANT DU BOIS" + "codePostal": "39380", + "codeCommune": "39520", + "libelleAcheminement": "SOUVANS", + "nomCommune": "SOUVANS" }, { - "codePostal": "17520", - "codeCommune": "17326", - "libelleAcheminement": "ST EUGENE", - "nomCommune": "ST EUGENE" + "codePostal": "39120", + "codeCommune": "39525", + "libelleAcheminement": "TASSENIERES", + "nomCommune": "TASSENIERES" }, { - "codePostal": "17240", - "codeCommune": "17332", - "libelleAcheminement": "ST GEORGES ANTIGNAC", - "nomCommune": "ST GEORGES ANTIGNAC" + "codePostal": "39270", + "codeCommune": "39534", + "libelleAcheminement": "LA TOUR DU MEIX", + "nomCommune": "LA TOUR DU MEIX" }, { - "codePostal": "17810", - "codeCommune": "17336", - "libelleAcheminement": "ST GEORGES DES COTEAUX", - "nomCommune": "ST GEORGES DES COTEAUX" + "codePostal": "39570", + "codeCommune": "39537", + "libelleAcheminement": "TRENAL", + "nomCommune": "TRENAL" }, { - "codePostal": "17190", - "codeCommune": "17337", - "libelleAcheminement": "ST GEORGES D OLERON", - "nomCommune": "ST GEORGES D OLERON" + "codePostal": "39570", + "codeCommune": "39550", + "libelleAcheminement": "VERGES", + "nomCommune": "VERGES" }, { - "codePostal": "17190", - "codeCommune": "17337", - "libelleAcheminement": "ST GEORGES D OLERON", - "nomCommune": "ST GEORGES D OLERON" + "codePostal": "39800", + "codeCommune": "39568", + "libelleAcheminement": "VILLERSERINE", + "nomCommune": "VILLERSERINE" }, { - "codePostal": "17190", - "codeCommune": "17337", - "libelleAcheminement": "ST GEORGES D OLERON", - "nomCommune": "ST GEORGES D OLERON" + "codePostal": "39600", + "codeCommune": "39572", + "libelleAcheminement": "VILLETTE LES ARBOIS", + "nomCommune": "VILLETTE LES ARBOIS" }, { - "codePostal": "17190", - "codeCommune": "17337", - "libelleAcheminement": "ST GEORGES D OLERON", - "nomCommune": "ST GEORGES D OLERON" + "codePostal": "39230", + "codeCommune": "39575", + "libelleAcheminement": "LE VILLEY", + "nomCommune": "LE VILLEY" }, { - "codePostal": "17770", - "codeCommune": "17344", - "libelleAcheminement": "ST HILAIRE DE VILLEFRANCHE", - "nomCommune": "ST HILAIRE DE VILLEFRANCHE" + "codePostal": "39190", + "codeCommune": "39576", + "libelleAcheminement": "VAL SONNETTE", + "nomCommune": "VAL SONNETTE" }, { - "codePostal": "17770", - "codeCommune": "17344", - "libelleAcheminement": "ST HILAIRE DE VILLEFRANCHE", - "nomCommune": "ST HILAIRE DE VILLEFRANCHE" + "codePostal": "39190", + "codeCommune": "39576", + "libelleAcheminement": "VAL SONNETTE", + "nomCommune": "VAL SONNETTE" }, { - "codePostal": "17400", - "codeCommune": "17350", - "libelleAcheminement": "ST JULIEN DE L ESCAP", - "nomCommune": "ST JULIEN DE L ESCAP" + "codePostal": "39230", + "codeCommune": "39577", + "libelleAcheminement": "VINCENT FROIDEVILLE", + "nomCommune": "VINCENT FROIDEVILLE" }, { - "codePostal": "17150", - "codeCommune": "17362", - "libelleAcheminement": "ST MARTIAL DE MIRAMBEAU", - "nomCommune": "ST MARTIAL DE MIRAMBEAU" + "codePostal": "39240", + "codeCommune": "39583", + "libelleAcheminement": "VOSBLES VALFIN", + "nomCommune": "VOSBLES VALFIN" }, { - "codePostal": "17220", - "codeCommune": "17373", - "libelleAcheminement": "ST MEDARD D AUNIS", - "nomCommune": "ST MEDARD D AUNIS" + "codePostal": "40150", + "codeCommune": "40004", + "libelleAcheminement": "ANGRESSE", + "nomCommune": "ANGRESSE" }, { - "codePostal": "17210", - "codeCommune": "17378", - "libelleAcheminement": "ST PALAIS DE NEGRIGNAC", - "nomCommune": "ST PALAIS DE NEGRIGNAC" + "codePostal": "40320", + "codeCommune": "40005", + "libelleAcheminement": "ARBOUCAVE", + "nomCommune": "ARBOUCAVE" }, { - "codePostal": "17250", - "codeCommune": "17387", - "libelleAcheminement": "ST PORCHAIRE", - "nomCommune": "ST PORCHAIRE" + "codePostal": "40310", + "codeCommune": "40015", + "libelleAcheminement": "ARX", + "nomCommune": "ARX" }, { - "codePostal": "17220", - "codeCommune": "17391", - "libelleAcheminement": "ST ROGATIEN", - "nomCommune": "ST ROGATIEN" + "codePostal": "40500", + "codeCommune": "40017", + "libelleAcheminement": "AUDIGNON", + "nomCommune": "AUDIGNON" }, { - "codePostal": "17350", - "codeCommune": "17397", - "libelleAcheminement": "ST SAVINIEN", - "nomCommune": "ST SAVINIEN" + "codePostal": "40200", + "codeCommune": "40019", + "libelleAcheminement": "AUREILHAN", + "nomCommune": "AUREILHAN" }, { - "codePostal": "17800", - "codeCommune": "17400", - "libelleAcheminement": "ST SEVER DE SAINTONGE", - "nomCommune": "ST SEVER DE SAINTONGE" + "codePostal": "40310", + "codeCommune": "40030", + "libelleAcheminement": "BAUDIGNAN", + "nomCommune": "BAUDIGNAN" }, { - "codePostal": "17700", - "codeCommune": "17434", - "libelleAcheminement": "SURGERES", - "nomCommune": "SURGERES" + "codePostal": "40120", + "codeCommune": "40033", + "libelleAcheminement": "BELIS", + "nomCommune": "BELIS" }, { - "codePostal": "17170", - "codeCommune": "17439", - "libelleAcheminement": "TAUGON", - "nomCommune": "TAUGON" + "codePostal": "40180", + "codeCommune": "40035", + "libelleAcheminement": "BENESSE LES DAX", + "nomCommune": "BENESSE LES DAX" }, { - "codePostal": "17400", - "codeCommune": "17440", - "libelleAcheminement": "TERNANT", - "nomCommune": "TERNANT" + "codePostal": "40250", + "codeCommune": "40038", + "libelleAcheminement": "BERGOUEY", + "nomCommune": "BERGOUEY" }, { - "codePostal": "17120", - "codeCommune": "17442", - "libelleAcheminement": "THAIMS", - "nomCommune": "THAIMS" + "codePostal": "40700", + "codeCommune": "40041", + "libelleAcheminement": "BEYRIES", + "nomCommune": "BEYRIES" }, { - "codePostal": "17250", - "codeCommune": "17453", - "libelleAcheminement": "TRIZAY", - "nomCommune": "TRIZAY" + "codePostal": "40420", + "codeCommune": "40056", + "libelleAcheminement": "BROCAS", + "nomCommune": "BROCAS" }, { - "codePostal": "17460", - "codeCommune": "17460", - "libelleAcheminement": "VARZAY", - "nomCommune": "VARZAY" + "codePostal": "40300", + "codeCommune": "40059", + "libelleAcheminement": "CAGNOTTE", + "nomCommune": "CAGNOTTE" }, { - "codePostal": "17260", - "codeCommune": "17469", - "libelleAcheminement": "VILLARS EN PONS", - "nomCommune": "VILLARS EN PONS" + "codePostal": "40430", + "codeCommune": "40060", + "libelleAcheminement": "CALLEN", + "nomCommune": "CALLEN" }, { - "codePostal": "17340", - "codeCommune": "17483", - "libelleAcheminement": "YVES", - "nomCommune": "YVES" + "codePostal": "40090", + "codeCommune": "40062", + "libelleAcheminement": "CAMPET ET LAMOLERE", + "nomCommune": "CAMPET ET LAMOLERE" }, { - "codePostal": "17340", - "codeCommune": "17483", - "libelleAcheminement": "YVES", - "nomCommune": "YVES" + "codePostal": "40130", + "codeCommune": "40065", + "libelleAcheminement": "CAPBRETON", + "nomCommune": "CAPBRETON" }, { - "codePostal": "18250", - "codeCommune": "18001", - "libelleAcheminement": "ACHERES", - "nomCommune": "ACHERES" + "codePostal": "40400", + "codeCommune": "40066", + "libelleAcheminement": "CARCARES STE CROIX", + "nomCommune": "CARCARES STE CROIX" }, { - "codePostal": "18110", - "codeCommune": "18004", - "libelleAcheminement": "ALLOGNY", - "nomCommune": "ALLOGNY" + "codePostal": "40700", + "codeCommune": "40069", + "libelleAcheminement": "CASTAIGNOS SOUSLENS", + "nomCommune": "CASTAIGNOS SOUSLENS" }, { - "codePostal": "18150", - "codeCommune": "18007", - "libelleAcheminement": "APREMONT SUR ALLIER", - "nomCommune": "APREMONT SUR ALLIER" + "codePostal": "40270", + "codeCommune": "40070", + "libelleAcheminement": "CASTANDET", + "nomCommune": "CASTANDET" }, { - "codePostal": "18200", - "codeCommune": "18009", - "libelleAcheminement": "ARCOMPS", - "nomCommune": "ARCOMPS" + "codePostal": "40320", + "codeCommune": "40072", + "libelleAcheminement": "CASTELNAU TURSAN", + "nomCommune": "CASTELNAU TURSAN" }, { - "codePostal": "18170", - "codeCommune": "18010", - "libelleAcheminement": "ARDENAIS", - "nomCommune": "ARDENAIS" + "codePostal": "40500", + "codeCommune": "40076", + "libelleAcheminement": "CAUNA", + "nomCommune": "CAUNA" }, { - "codePostal": "18140", - "codeCommune": "18012", - "libelleAcheminement": "ARGENVIERES", - "nomCommune": "ARGENVIERES" + "codePostal": "40700", + "codeCommune": "40079", + "libelleAcheminement": "CAZALIS", + "nomCommune": "CAZALIS" }, { - "codePostal": "18600", - "codeCommune": "18017", - "libelleAcheminement": "AUGY SUR AUBOIS", - "nomCommune": "AUGY SUR AUBOIS" + "codePostal": "40270", + "codeCommune": "40080", + "libelleAcheminement": "CAZERES SUR L ADOUR", + "nomCommune": "CAZERES SUR L ADOUR" }, { - "codePostal": "18520", - "codeCommune": "18027", - "libelleAcheminement": "BENGY SUR CRAON", - "nomCommune": "BENGY SUR CRAON" + "codePostal": "40240", + "codeCommune": "40087", + "libelleAcheminement": "CREON D ARMAGNAC", + "nomCommune": "CREON D ARMAGNAC" }, { - "codePostal": "18500", - "codeCommune": "18028", - "libelleAcheminement": "BERRY BOUY", - "nomCommune": "BERRY BOUY" + "codePostal": "40360", + "codeCommune": "40090", + "libelleAcheminement": "DONZACQ", + "nomCommune": "DONZACQ" }, { - "codePostal": "18410", - "codeCommune": "18030", - "libelleAcheminement": "BLANCAFORT", - "nomCommune": "BLANCAFORT" + "codePostal": "40500", + "codeCommune": "40098", + "libelleAcheminement": "EYRES MONCUBE", + "nomCommune": "EYRES MONCUBE" }, { - "codePostal": "18200", - "codeCommune": "18034", - "libelleAcheminement": "BOUZAIS", - "nomCommune": "BOUZAIS" + "codePostal": "40160", + "codeCommune": "40108", + "libelleAcheminement": "GASTES", + "nomCommune": "GASTES" }, { - "codePostal": "18410", - "codeCommune": "18037", - "libelleAcheminement": "BRINON SUR SAULDRE", - "nomCommune": "BRINON SUR SAULDRE" + "codePostal": "40320", + "codeCommune": "40110", + "libelleAcheminement": "GEAUNE", + "nomCommune": "GEAUNE" }, { - "codePostal": "18130", - "codeCommune": "18040", - "libelleAcheminement": "BUSSY", - "nomCommune": "BUSSY" + "codePostal": "40180", + "codeCommune": "40113", + "libelleAcheminement": "GOOS", + "nomCommune": "GOOS" }, { - "codePostal": "18160", - "codeCommune": "18043", - "libelleAcheminement": "LA CELLE CONDE", - "nomCommune": "LA CELLE CONDE" + "codePostal": "40700", + "codeCommune": "40119", + "libelleAcheminement": "HAGETMAU", + "nomCommune": "HAGETMAU" }, { - "codePostal": "18140", - "codeCommune": "18049", - "libelleAcheminement": "LA CHAPELLE MONTLINARD", - "nomCommune": "LA CHAPELLE MONTLINARD" + "codePostal": "40990", + "codeCommune": "40123", + "libelleAcheminement": "HERM", + "nomCommune": "HERM" }, { - "codePostal": "18140", - "codeCommune": "18053", - "libelleAcheminement": "CHARENTONNAY", - "nomCommune": "CHARENTONNAY" + "codePostal": "40420", + "codeCommune": "40135", + "libelleAcheminement": "LABRIT", + "nomCommune": "LABRIT" }, { - "codePostal": "18800", - "codeCommune": "18056", - "libelleAcheminement": "CHASSY", - "nomCommune": "CHASSY" + "codePostal": "40320", + "codeCommune": "40136", + "libelleAcheminement": "LACAJUNTE", + "nomCommune": "LACAJUNTE" }, { - "codePostal": "18370", - "codeCommune": "18057", - "libelleAcheminement": "CHATEAUMEILLANT", - "nomCommune": "CHATEAUMEILLANT" + "codePostal": "40800", + "codeCommune": "40146", + "libelleAcheminement": "LATRILLE", + "nomCommune": "LATRILLE" }, { - "codePostal": "18190", - "codeCommune": "18058", - "libelleAcheminement": "CHATEAUNEUF SUR CHER", - "nomCommune": "CHATEAUNEUF SUR CHER" + "codePostal": "40210", + "codeCommune": "40163", + "libelleAcheminement": "LUE", + "nomCommune": "LUE" }, { - "codePostal": "18190", - "codeCommune": "18063", - "libelleAcheminement": "CHAVANNES", - "nomCommune": "CHAVANNES" + "codePostal": "40410", + "codeCommune": "40171", + "libelleAcheminement": "MANO", + "nomCommune": "MANO" }, { - "codePostal": "18120", - "codeCommune": "18064", - "libelleAcheminement": "CHERY", - "nomCommune": "CHERY" + "codePostal": "40330", + "codeCommune": "40173", + "libelleAcheminement": "MARPAPS", + "nomCommune": "MARPAPS" }, { - "codePostal": "18410", - "codeCommune": "18067", - "libelleAcheminement": "CLEMONT", - "nomCommune": "CLEMONT" + "codePostal": "40990", + "codeCommune": "40179", + "libelleAcheminement": "MEES", + "nomCommune": "MEES" }, { - "codePostal": "18260", - "codeCommune": "18070", - "libelleAcheminement": "CONCRESSAULT", - "nomCommune": "CONCRESSAULT" + "codePostal": "40170", + "codeCommune": "40182", + "libelleAcheminement": "MEZOS", + "nomCommune": "MEZOS" }, { - "codePostal": "18130", - "codeCommune": "18071", - "libelleAcheminement": "CONTRES", - "nomCommune": "CONTRES" + "codePostal": "40000", + "codeCommune": "40192", + "libelleAcheminement": "MONT DE MARSAN", + "nomCommune": "MONT DE MARSAN" }, { - "codePostal": "18210", - "codeCommune": "18076", - "libelleAcheminement": "COUST", - "nomCommune": "COUST" + "codePostal": "40500", + "codeCommune": "40195", + "libelleAcheminement": "MONTGAILLARD", + "nomCommune": "MONTGAILLARD" }, { - "codePostal": "18340", - "codeCommune": "18081", - "libelleAcheminement": "CROSSES", - "nomCommune": "CROSSES" + "codePostal": "40290", + "codeCommune": "40199", + "libelleAcheminement": "MOUSCARDES", + "nomCommune": "MOUSCARDES" }, { - "codePostal": "18260", - "codeCommune": "18084", - "libelleAcheminement": "DAMPIERRE EN CROT", - "nomCommune": "DAMPIERRE EN CROT" + "codePostal": "40250", + "codeCommune": "40201", + "libelleAcheminement": "MUGRON", + "nomCommune": "MUGRON" }, { - "codePostal": "18310", - "codeCommune": "18085", - "libelleAcheminement": "DAMPIERRE EN GRACAY", - "nomCommune": "DAMPIERRE EN GRACAY" + "codePostal": "40330", + "codeCommune": "40203", + "libelleAcheminement": "NASSIET", + "nomCommune": "NASSIET" }, { - "codePostal": "18200", - "codeCommune": "18091", - "libelleAcheminement": "FARGES ALLICHAMPS", - "nomCommune": "FARGES ALLICHAMPS" + "codePostal": "40180", + "codeCommune": "40207", + "libelleAcheminement": "OEYRELUY", + "nomCommune": "OEYRELUY" }, { - "codePostal": "18360", - "codeCommune": "18093", - "libelleAcheminement": "FAVERDINES", - "nomCommune": "FAVERDINES" + "codePostal": "40230", + "codeCommune": "40213", + "libelleAcheminement": "ORX", + "nomCommune": "ORX" }, { - "codePostal": "18110", - "codeCommune": "18097", - "libelleAcheminement": "FUSSY", - "nomCommune": "FUSSY" + "codePostal": "40320", + "codeCommune": "40219", + "libelleAcheminement": "PAYROS CAZAUTETS", + "nomCommune": "PAYROS CAZAUTETS" }, { - "codePostal": "18140", - "codeCommune": "18099", - "libelleAcheminement": "GARIGNY", - "nomCommune": "GARIGNY" + "codePostal": "40320", + "codeCommune": "40220", + "libelleAcheminement": "PECORADE", + "nomCommune": "PECORADE" }, { - "codePostal": "18200", - "codeCommune": "18107", - "libelleAcheminement": "LA GROUTTE", - "nomCommune": "LA GROUTTE" + "codePostal": "40320", + "codeCommune": "40225", + "libelleAcheminement": "PHILONDENX", + "nomCommune": "PHILONDENX" }, { - "codePostal": "18250", - "codeCommune": "18109", - "libelleAcheminement": "HENRICHEMONT", - "nomCommune": "HENRICHEMONT" + "codePostal": "40300", + "codeCommune": "40231", + "libelleAcheminement": "PORT DE LANNE", + "nomCommune": "PORT DE LANNE" }, { - "codePostal": "18380", - "codeCommune": "18115", - "libelleAcheminement": "IVOY LE PRE", - "nomCommune": "IVOY LE PRE" + "codePostal": "40350", + "codeCommune": "40233", + "libelleAcheminement": "POUILLON", + "nomCommune": "POUILLON" }, { - "codePostal": "18300", - "codeCommune": "18116", - "libelleAcheminement": "JALOGNES", - "nomCommune": "JALOGNES" + "codePostal": "40310", + "codeCommune": "40242", + "libelleAcheminement": "RIMBEZ ET BAUDIETS", + "nomCommune": "RIMBEZ ET BAUDIETS" }, { - "codePostal": "18320", - "codeCommune": "18118", - "libelleAcheminement": "JOUET SUR L AUBOIS", - "nomCommune": "JOUET SUR L AUBOIS" + "codePostal": "40250", + "codeCommune": "40249", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "18350", - "codeCommune": "18131", - "libelleAcheminement": "LUGNY BOURBONNAIS", - "nomCommune": "LUGNY BOURBONNAIS" + "codePostal": "40700", + "codeCommune": "40252", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "18400", - "codeCommune": "18133", - "libelleAcheminement": "LUNERY", - "nomCommune": "LUNERY" + "codePostal": "40390", + "codeCommune": "40268", + "libelleAcheminement": "ST LAURENT DE GOSSE", + "nomCommune": "ST LAURENT DE GOSSE" }, { - "codePostal": "18170", - "codeCommune": "18135", - "libelleAcheminement": "MAISONNAIS", - "nomCommune": "MAISONNAIS" + "codePostal": "40090", + "codeCommune": "40274", + "libelleAcheminement": "ST MARTIN D ONEY", + "nomCommune": "ST MARTIN D ONEY" }, { - "codePostal": "18500", - "codeCommune": "18138", - "libelleAcheminement": "MARMAGNE", - "nomCommune": "MARMAGNE" + "codePostal": "40090", + "codeCommune": "40280", + "libelleAcheminement": "ST PERDON", + "nomCommune": "ST PERDON" }, { - "codePostal": "18120", - "codeCommune": "18140", - "libelleAcheminement": "MASSAY", - "nomCommune": "MASSAY" + "codePostal": "40460", + "codeCommune": "40287", + "libelleAcheminement": "SANGUINET", + "nomCommune": "SANGUINET" }, { - "codePostal": "18500", - "codeCommune": "18141", - "libelleAcheminement": "MEHUN SUR YEVRE", - "nomCommune": "MEHUN SUR YEVRE" + "codePostal": "40230", + "codeCommune": "40292", + "libelleAcheminement": "SAUBRIGUES", + "nomCommune": "SAUBRIGUES" }, { - "codePostal": "18200", - "codeCommune": "18142", - "libelleAcheminement": "MEILLANT", - "nomCommune": "MEILLANT" + "codePostal": "40180", + "codeCommune": "40293", + "libelleAcheminement": "SAUBUSSE", + "nomCommune": "SAUBUSSE" }, { - "codePostal": "18160", - "codeCommune": "18152", - "libelleAcheminement": "MONTLOUIS", - "nomCommune": "MONTLOUIS" + "codePostal": "40700", + "codeCommune": "40299", + "libelleAcheminement": "SERRESLOUS ET ARRIBANS", + "nomCommune": "SERRESLOUS ET ARRIBANS" }, { - "codePostal": "18250", - "codeCommune": "18163", - "libelleAcheminement": "NEUVY DEUX CLOCHERS", - "nomCommune": "NEUVY DEUX CLOCHERS" + "codePostal": "40180", + "codeCommune": "40300", + "libelleAcheminement": "SEYRESSE", + "nomCommune": "SEYRESSE" }, { - "codePostal": "18390", - "codeCommune": "18166", - "libelleAcheminement": "NOHANT EN GOUT", - "nomCommune": "NOHANT EN GOUT" + "codePostal": "40180", + "codeCommune": "40301", + "libelleAcheminement": "SIEST", + "nomCommune": "SIEST" }, { - "codePostal": "18700", - "codeCommune": "18170", - "libelleAcheminement": "OIZON", - "nomCommune": "OIZON" + "codePostal": "40210", + "codeCommune": "40303", + "libelleAcheminement": "SOLFERINO", + "nomCommune": "SOLFERINO" }, { - "codePostal": "18220", - "codeCommune": "18176", - "libelleAcheminement": "PARASSY", - "nomCommune": "PARASSY" + "codePostal": "40170", + "codeCommune": "40322", + "libelleAcheminement": "UZA", + "nomCommune": "UZA" }, { - "codePostal": "18130", - "codeCommune": "18177", - "libelleAcheminement": "PARNAY", - "nomCommune": "PARNAY" + "codePostal": "40560", + "codeCommune": "40326", + "libelleAcheminement": "VIELLE ST GIRONS", + "nomCommune": "VIELLE ST GIRONS" }, { - "codePostal": "18140", - "codeCommune": "18184", - "libelleAcheminement": "PRECY", - "nomCommune": "PRECY" + "codePostal": "41310", + "codeCommune": "41001", + "libelleAcheminement": "AMBLOY", + "nomCommune": "AMBLOY" }, { - "codePostal": "18110", - "codeCommune": "18189", - "libelleAcheminement": "QUANTILLY", - "nomCommune": "QUANTILLY" + "codePostal": "41400", + "codeCommune": "41002", + "libelleAcheminement": "ANGE", + "nomCommune": "ANGE" }, { - "codePostal": "18120", - "codeCommune": "18190", - "libelleAcheminement": "QUINCY", - "nomCommune": "QUINCY" + "codePostal": "41500", + "codeCommune": "41008", + "libelleAcheminement": "AVARAY", + "nomCommune": "AVARAY" }, { - "codePostal": "18270", - "codeCommune": "18192", - "libelleAcheminement": "REIGNY", - "nomCommune": "REIGNY" + "codePostal": "41100", + "codeCommune": "41010", + "libelleAcheminement": "AZE", + "nomCommune": "AZE" }, { - "codePostal": "18220", - "codeCommune": "18194", - "libelleAcheminement": "RIANS", - "nomCommune": "RIANS" + "codePostal": "41170", + "codeCommune": "41012", + "libelleAcheminement": "BAILLOU", + "nomCommune": "BAILLOU" }, { - "codePostal": "18200", - "codeCommune": "18197", - "libelleAcheminement": "ST AMAND MONTROND", - "nomCommune": "ST AMAND MONTROND" + "codePostal": "41240", + "codeCommune": "41017", + "libelleAcheminement": "BINAS", + "nomCommune": "BINAS" }, { - "codePostal": "18160", - "codeCommune": "18199", - "libelleAcheminement": "ST BAUDEL", - "nomCommune": "ST BAUDEL" + "codePostal": "41370", + "codeCommune": "41027", + "libelleAcheminement": "BRIOU", + "nomCommune": "BRIOU" }, { - "codePostal": "18230", - "codeCommune": "18205", - "libelleAcheminement": "ST DOULCHARD", - "nomCommune": "ST DOULCHARD" + "codePostal": "41120", + "codeCommune": "41029", + "libelleAcheminement": "CANDE SUR BEUVRON", + "nomCommune": "CANDE SUR BEUVRON" }, { - "codePostal": "18240", - "codeCommune": "18208", - "libelleAcheminement": "STE GEMME EN SANCERROIS", - "nomCommune": "STE GEMME EN SANCERROIS" + "codePostal": "41330", + "codeCommune": "41035", + "libelleAcheminement": "CHAMPIGNY EN BEAUCE", + "nomCommune": "CHAMPIGNY EN BEAUCE" }, { - "codePostal": "18190", - "codeCommune": "18221", - "libelleAcheminement": "ST LOUP DES CHAUMES", - "nomCommune": "ST LOUP DES CHAUMES" + "codePostal": "41290", + "codeCommune": "41037", + "libelleAcheminement": "LA CHAPELLE ENCHERIE", + "nomCommune": "LA CHAPELLE ENCHERIE" }, { - "codePostal": "18310", - "codeCommune": "18228", - "libelleAcheminement": "ST OUTRILLE", - "nomCommune": "ST OUTRILLE" + "codePostal": "41270", + "codeCommune": "41048", + "libelleAcheminement": "CHAUVIGNY DU PERCHE", + "nomCommune": "CHAUVIGNY DU PERCHE" }, { - "codePostal": "18500", - "codeCommune": "18237", - "libelleAcheminement": "STE THORETTE", - "nomCommune": "STE THORETTE" + "codePostal": "41150", + "codeCommune": "41055", + "libelleAcheminement": "VALLOIRE SUR CISSE", + "nomCommune": "VALLOIRE SUR CISSE" }, { - "codePostal": "18240", - "codeCommune": "18243", - "libelleAcheminement": "SANTRANGES", - "nomCommune": "SANTRANGES" + "codePostal": "41400", + "codeCommune": "41059", + "libelleAcheminement": "LE CONTROIS EN SOLOGNE", + "nomCommune": "LE CONTROIS EN SOLOGNE" }, { - "codePostal": "18240", - "codeCommune": "18246", - "libelleAcheminement": "SAVIGNY EN SANCERRE", - "nomCommune": "SAVIGNY EN SANCERRE" + "codePostal": "41290", + "codeCommune": "41077", + "libelleAcheminement": "EPIAIS", + "nomCommune": "EPIAIS" }, { - "codePostal": "18390", - "codeCommune": "18247", - "libelleAcheminement": "SAVIGNY EN SEPTAINE", - "nomCommune": "SAVIGNY EN SEPTAINE" + "codePostal": "41400", + "codeCommune": "41080", + "libelleAcheminement": "FAVEROLLES SUR CHER", + "nomCommune": "FAVEROLLES SUR CHER" }, { - "codePostal": "18340", - "codeCommune": "18254", - "libelleAcheminement": "SOYE EN SEPTAINE", - "nomCommune": "SOYE EN SEPTAINE" + "codePostal": "41210", + "codeCommune": "41083", + "libelleAcheminement": "LA FERTE BEAUHARNAIS", + "nomCommune": "LA FERTE BEAUHARNAIS" }, { - "codePostal": "18260", - "codeCommune": "18259", - "libelleAcheminement": "SURY ES BOIS", - "nomCommune": "SURY ES BOIS" + "codePostal": "41270", + "codeCommune": "41089", + "libelleAcheminement": "LA FONTENELLE", + "nomCommune": "LA FONTENELLE" }, { - "codePostal": "18350", - "codeCommune": "18260", - "libelleAcheminement": "TENDRON", - "nomCommune": "TENDRON" + "codePostal": "41330", + "codeCommune": "41091", + "libelleAcheminement": "FOSSE", + "nomCommune": "FOSSE" }, { - "codePostal": "18190", - "codeCommune": "18273", - "libelleAcheminement": "VENESMES", - "nomCommune": "VENESMES" + "codePostal": "41190", + "codeCommune": "41101", + "libelleAcheminement": "HERBAULT", + "nomCommune": "HERBAULT" }, { - "codePostal": "18210", - "codeCommune": "18276", - "libelleAcheminement": "VERNAIS", - "nomCommune": "VERNAIS" + "codePostal": "41800", + "codeCommune": "41102", + "libelleAcheminement": "HOUSSAY", + "nomCommune": "HOUSSAY" }, { - "codePostal": "18210", - "codeCommune": "18277", - "libelleAcheminement": "VERNEUIL", - "nomCommune": "VERNEUIL" + "codePostal": "41320", + "codeCommune": "41122", + "libelleAcheminement": "MARAY", + "nomCommune": "MARAY" }, { - "codePostal": "18160", - "codeCommune": "18283", - "libelleAcheminement": "VILLECELIN", - "nomCommune": "VILLECELIN" + "codePostal": "41100", + "codeCommune": "41131", + "libelleAcheminement": "MAZANGE", + "nomCommune": "MAZANGE" }, { - "codePostal": "18400", - "codeCommune": "18285", - "libelleAcheminement": "VILLENEUVE SUR CHER", - "nomCommune": "VILLENEUVE SUR CHER" + "codePostal": "41140", + "codeCommune": "41132", + "libelleAcheminement": "MEHERS", + "nomCommune": "MEHERS" }, { - "codePostal": "18300", - "codeCommune": "18287", - "libelleAcheminement": "VINON", - "nomCommune": "VINON" + "codePostal": "41150", + "codeCommune": "41137", + "libelleAcheminement": "MESLAND", + "nomCommune": "MESLAND" }, { - "codePostal": "18340", - "codeCommune": "18288", - "libelleAcheminement": "VORLY", - "nomCommune": "VORLY" + "codePostal": "41130", + "codeCommune": "41139", + "libelleAcheminement": "MEUSNES", + "nomCommune": "MEUSNES" }, { - "codePostal": "19240", - "codeCommune": "19005", - "libelleAcheminement": "ALLASSAC", - "nomCommune": "ALLASSAC" + "codePostal": "41190", + "codeCommune": "41142", + "libelleAcheminement": "VALENCISSE", + "nomCommune": "VALENCISSE" }, { - "codePostal": "19200", - "codeCommune": "19006", - "libelleAcheminement": "ALLEYRAT", - "nomCommune": "ALLEYRAT" + "codePostal": "41120", + "codeCommune": "41147", + "libelleAcheminement": "LES MONTILS", + "nomCommune": "LES MONTILS" }, { - "codePostal": "19190", - "codeCommune": "19013", - "libelleAcheminement": "AUBAZINES", - "nomCommune": "AUBAZINES" + "codePostal": "41800", + "codeCommune": "41149", + "libelleAcheminement": "MONTOIRE SUR LE LOIR", + "nomCommune": "MONTOIRE SUR LE LOIR" }, { - "codePostal": "19800", - "codeCommune": "19016", - "libelleAcheminement": "BAR", - "nomCommune": "BAR" + "codePostal": "41400", + "codeCommune": "41151", + "libelleAcheminement": "MONTRICHARD VAL DE CHER", + "nomCommune": "MONTRICHARD VAL DE CHER" }, { - "codePostal": "19310", - "codeCommune": "19030", - "libelleAcheminement": "BRIGNAC LA PLAINE", - "nomCommune": "BRIGNAC LA PLAINE" + "codePostal": "41210", + "codeCommune": "41152", + "libelleAcheminement": "MONTRIEUX EN SOLOGNE", + "nomCommune": "MONTRIEUX EN SOLOGNE" }, { - "codePostal": "19450", - "codeCommune": "19037", - "libelleAcheminement": "CHAMBOULIVE", - "nomCommune": "CHAMBOULIVE" + "codePostal": "41160", + "codeCommune": "41154", + "libelleAcheminement": "MOREE", + "nomCommune": "MOREE" }, { - "codePostal": "19330", - "codeCommune": "19038", - "libelleAcheminement": "CHAMEYRAT", - "nomCommune": "CHAMEYRAT" + "codePostal": "41310", + "codeCommune": "41163", + "libelleAcheminement": "NOURRAY", + "nomCommune": "NOURRAY" }, { - "codePostal": "19120", - "codeCommune": "19044", - "libelleAcheminement": "LA CHAPELLE AUX SAINTS", - "nomCommune": "LA CHAPELLE AUX SAINTS" + "codePostal": "41290", + "codeCommune": "41171", + "libelleAcheminement": "OUCQUES LA NOUVELLE", + "nomCommune": "OUCQUES LA NOUVELLE" }, { - "codePostal": "19600", - "codeCommune": "19049", - "libelleAcheminement": "CHASTEAUX", - "nomCommune": "CHASTEAUX" + "codePostal": "41160", + "codeCommune": "41172", + "libelleAcheminement": "OUZOUER LE DOYEN", + "nomCommune": "OUZOUER LE DOYEN" }, { - "codePostal": "19150", - "codeCommune": "19061", - "libelleAcheminement": "CORNIL", - "nomCommune": "CORNIL" + "codePostal": "41160", + "codeCommune": "41173", + "libelleAcheminement": "BEAUCE LA ROMAINE", + "nomCommune": "BEAUCE LA ROMAINE" }, { - "codePostal": "19360", - "codeCommune": "19063", - "libelleAcheminement": "COSNAC", - "nomCommune": "COSNAC" + "codePostal": "41160", + "codeCommune": "41173", + "libelleAcheminement": "BEAUCE LA ROMAINE", + "nomCommune": "BEAUCE LA ROMAINE" }, { - "codePostal": "19360", - "codeCommune": "19068", - "libelleAcheminement": "DAMPNIAT", - "nomCommune": "DAMPNIAT" + "codePostal": "41240", + "codeCommune": "41173", + "libelleAcheminement": "BEAUCE LA ROMAINE", + "nomCommune": "BEAUCE LA ROMAINE" }, { - "codePostal": "19250", - "codeCommune": "19071", - "libelleAcheminement": "DAVIGNAC", - "nomCommune": "DAVIGNAC" + "codePostal": "41160", + "codeCommune": "41186", + "libelleAcheminement": "RAHART", + "nomCommune": "RAHART" }, { - "codePostal": "19150", - "codeCommune": "19075", - "libelleAcheminement": "ESPAGNAC", - "nomCommune": "ESPAGNAC" + "codePostal": "41150", + "codeCommune": "41189", + "libelleAcheminement": "RILLY SUR LOIRE", + "nomCommune": "RILLY SUR LOIRE" }, { - "codePostal": "19340", - "codeCommune": "19083", - "libelleAcheminement": "FEYT", - "nomCommune": "FEYT" + "codePostal": "41100", + "codeCommune": "41190", + "libelleAcheminement": "ROCE", + "nomCommune": "ROCE" }, { - "codePostal": "19300", - "codeCommune": "19088", - "libelleAcheminement": "GRANDSAIGNE", - "nomCommune": "GRANDSAIGNE" + "codePostal": "41370", + "codeCommune": "41191", + "libelleAcheminement": "ROCHES", + "nomCommune": "ROCHES" }, { - "codePostal": "19320", - "codeCommune": "19089", - "libelleAcheminement": "GROS CHASTANG", - "nomCommune": "GROS CHASTANG" + "codePostal": "41800", + "codeCommune": "41192", + "libelleAcheminement": "LES ROCHES L EVEQUE", + "nomCommune": "LES ROCHES L EVEQUE" }, { - "codePostal": "19320", - "codeCommune": "19090", - "libelleAcheminement": "GUMOND", - "nomCommune": "GUMOND" + "codePostal": "41230", + "codeCommune": "41195", + "libelleAcheminement": "ROUGEOU", + "nomCommune": "ROUGEOU" }, { - "codePostal": "19190", - "codeCommune": "19105", - "libelleAcheminement": "LANTEUIL", - "nomCommune": "LANTEUIL" + "codePostal": "41110", + "codeCommune": "41198", + "libelleAcheminement": "ST AIGNAN", + "nomCommune": "ST AIGNAN" }, { - "codePostal": "19550", - "codeCommune": "19106", - "libelleAcheminement": "LAPLEAU", - "nomCommune": "LAPLEAU" + "codePostal": "41190", + "codeCommune": "41205", + "libelleAcheminement": "ST CYR DU GAULT", + "nomCommune": "ST CYR DU GAULT" }, { - "codePostal": "19600", - "codeCommune": "19107", - "libelleAcheminement": "LARCHE", - "nomCommune": "LARCHE" + "codePostal": "41400", + "codeCommune": "41211", + "libelleAcheminement": "ST GEORGES SUR CHER", + "nomCommune": "ST GEORGES SUR CHER" }, { - "codePostal": "19340", - "codeCommune": "19108", - "libelleAcheminement": "LAROCHE PRES FEYT", - "nomCommune": "LAROCHE PRES FEYT" + "codePostal": "41350", + "codeCommune": "41212", + "libelleAcheminement": "ST GERVAIS LA FORET", + "nomCommune": "ST GERVAIS LA FORET" }, { - "codePostal": "19160", - "codeCommune": "19110", - "libelleAcheminement": "LATRONCHE", - "nomCommune": "LATRONCHE" + "codePostal": "41310", + "codeCommune": "41213", + "libelleAcheminement": "ST GOURGON", + "nomCommune": "ST GOURGON" }, { - "codePostal": "19550", - "codeCommune": "19111", - "libelleAcheminement": "LAVAL SUR LUZEGE", - "nomCommune": "LAVAL SUR LUZEGE" + "codePostal": "41400", + "codeCommune": "41217", + "libelleAcheminement": "ST JULIEN DE CHEDON", + "nomCommune": "ST JULIEN DE CHEDON" }, { - "codePostal": "19170", - "codeCommune": "19112", - "libelleAcheminement": "LESTARDS", - "nomCommune": "LESTARDS" + "codePostal": "41240", + "codeCommune": "41219", + "libelleAcheminement": "ST LAURENT DES BOIS", + "nomCommune": "ST LAURENT DES BOIS" }, { - "codePostal": "19200", - "codeCommune": "19114", - "libelleAcheminement": "LIGNAREIX", - "nomCommune": "LIGNAREIX" + "codePostal": "41190", + "codeCommune": "41223", + "libelleAcheminement": "ST LUBIN EN VERGONNOIS", + "nomCommune": "ST LUBIN EN VERGONNOIS" }, { - "codePostal": "19470", - "codeCommune": "19118", - "libelleAcheminement": "LE LONZAC", - "nomCommune": "LE LONZAC" + "codePostal": "41300", + "codeCommune": "41241", + "libelleAcheminement": "SELLES ST DENIS", + "nomCommune": "SELLES ST DENIS" }, { - "codePostal": "19310", - "codeCommune": "19120", - "libelleAcheminement": "LOUIGNAC", - "nomCommune": "LOUIGNAC" + "codePostal": "41100", + "codeCommune": "41243", + "libelleAcheminement": "SELOMMES", + "nomCommune": "SELOMMES" }, { - "codePostal": "19360", - "codeCommune": "19123", - "libelleAcheminement": "MALEMORT", - "nomCommune": "MALEMORT" + "codePostal": "41170", + "codeCommune": "41248", + "libelleAcheminement": "COUETRON AU PERCHE", + "nomCommune": "COUETRON AU PERCHE" }, { - "codePostal": "19520", - "codeCommune": "19124", - "libelleAcheminement": "MANSAC", - "nomCommune": "MANSAC" + "codePostal": "41500", + "codeCommune": "41252", + "libelleAcheminement": "SUEVRES", + "nomCommune": "SUEVRES" }, { - "codePostal": "19250", - "codeCommune": "19130", - "libelleAcheminement": "MAUSSAC", - "nomCommune": "MAUSSAC" + "codePostal": "41120", + "codeCommune": "41266", + "libelleAcheminement": "VALAIRE", + "nomCommune": "VALAIRE" }, { - "codePostal": "19400", - "codeCommune": "19140", - "libelleAcheminement": "MONCEAUX SUR DORDOGNE", - "nomCommune": "MONCEAUX SUR DORDOGNE" + "codePostal": "41230", + "codeCommune": "41271", + "libelleAcheminement": "VERNOU EN SOLOGNE", + "nomCommune": "VERNOU EN SOLOGNE" }, { - "codePostal": "19110", - "codeCommune": "19142", - "libelleAcheminement": "MONESTIER PORT DIEU", - "nomCommune": "MONESTIER PORT DIEU" + "codePostal": "41290", + "codeCommune": "41284", + "libelleAcheminement": "VILLENEUVE FROUVILLE", + "nomCommune": "VILLENEUVE FROUVILLE" }, { - "codePostal": "19600", - "codeCommune": "19147", - "libelleAcheminement": "NESPOULS", - "nomCommune": "NESPOULS" + "codePostal": "41240", + "codeCommune": "41289", + "libelleAcheminement": "VILLERMAIN", + "nomCommune": "VILLERMAIN" }, { - "codePostal": "19380", - "codeCommune": "19149", - "libelleAcheminement": "NEUVILLE", - "nomCommune": "NEUVILLE" + "codePostal": "42660", + "codeCommune": "42017", + "libelleAcheminement": "LE BESSAT", + "nomCommune": "LE BESSAT" }, { - "codePostal": "19120", - "codeCommune": "19152", - "libelleAcheminement": "NONARDS", - "nomCommune": "NONARDS" + "codePostal": "42160", + "codeCommune": "42022", + "libelleAcheminement": "BONSON", + "nomCommune": "BONSON" }, { - "codePostal": "19130", - "codeCommune": "19153", - "libelleAcheminement": "OBJAT", - "nomCommune": "OBJAT" + "codePostal": "42260", + "codeCommune": "42030", + "libelleAcheminement": "BUSSY ALBIEUX", + "nomCommune": "BUSSY ALBIEUX" }, { - "codePostal": "19160", - "codeCommune": "19157", - "libelleAcheminement": "PALISSE", - "nomCommune": "PALISSE" + "codePostal": "42320", + "codeCommune": "42032", + "libelleAcheminement": "CELLIEU", + "nomCommune": "CELLIEU" }, { - "codePostal": "19150", - "codeCommune": "19158", - "libelleAcheminement": "PANDRIGNES", - "nomCommune": "PANDRIGNES" + "codePostal": "42170", + "codeCommune": "42042", + "libelleAcheminement": "CHAMBLES", + "nomCommune": "CHAMBLES" }, { - "codePostal": "19410", - "codeCommune": "19162", - "libelleAcheminement": "PERPEZAC LE NOIR", - "nomCommune": "PERPEZAC LE NOIR" + "codePostal": "42330", + "codeCommune": "42043", + "libelleAcheminement": "CHAMBOEUF", + "nomCommune": "CHAMBOEUF" }, { - "codePostal": "19290", - "codeCommune": "19164", - "libelleAcheminement": "PEYRELEVADE", - "nomCommune": "PEYRELEVADE" + "codePostal": "42440", + "codeCommune": "42045", + "libelleAcheminement": "LA CHAMBONIE", + "nomCommune": "LA CHAMBONIE" }, { - "codePostal": "19450", - "codeCommune": "19166", - "libelleAcheminement": "PIERREFITTE", - "nomCommune": "PIERREFITTE" + "codePostal": "42430", + "codeCommune": "42047", + "libelleAcheminement": "CHAMPOLY", + "nomCommune": "CHAMPOLY" }, { - "codePostal": "19170", - "codeCommune": "19168", - "libelleAcheminement": "PRADINES", - "nomCommune": "PRADINES" + "codePostal": "42190", + "codeCommune": "42048", + "libelleAcheminement": "CHANDON", + "nomCommune": "CHANDON" }, { - "codePostal": "19320", - "codeCommune": "19174", - "libelleAcheminement": "LA ROCHE CANILLAC", - "nomCommune": "LA ROCHE CANILLAC" + "codePostal": "42800", + "codeCommune": "42053", + "libelleAcheminement": "CHATEAUNEUF", + "nomCommune": "CHATEAUNEUF" }, { - "codePostal": "19270", - "codeCommune": "19178", - "libelleAcheminement": "SADROC", - "nomCommune": "SADROC" + "codePostal": "42560", + "codeCommune": "42060", + "libelleAcheminement": "CHENEREILLES", + "nomCommune": "CHENEREILLES" }, { - "codePostal": "19130", - "codeCommune": "19187", - "libelleAcheminement": "ST BONNET LA RIVIERE", - "nomCommune": "ST BONNET LA RIVIERE" + "codePostal": "42430", + "codeCommune": "42061", + "libelleAcheminement": "CHERIER", + "nomCommune": "CHERIER" }, { - "codePostal": "19290", - "codeCommune": "19206", - "libelleAcheminement": "ST GERMAIN LAVOLPS", - "nomCommune": "ST GERMAIN LAVOLPS" + "codePostal": "42840", + "codeCommune": "42068", + "libelleAcheminement": "COMBRE", + "nomCommune": "COMBRE" }, { - "codePostal": "19330", - "codeCommune": "19207", - "libelleAcheminement": "ST GERMAIN LES VERGNES", - "nomCommune": "ST GERMAIN LES VERGNES" + "codePostal": "42260", + "codeCommune": "42076", + "libelleAcheminement": "CREMEAUX", + "nomCommune": "CREMEAUX" }, { - "codePostal": "19500", - "codeCommune": "19217", - "libelleAcheminement": "ST JULIEN MAUMONT", - "nomCommune": "ST JULIEN MAUMONT" + "codePostal": "42310", + "codeCommune": "42078", + "libelleAcheminement": "LE CROZET", + "nomCommune": "LE CROZET" }, { - "codePostal": "19320", - "codeCommune": "19222", - "libelleAcheminement": "ST MARTIN LA MEANNE", - "nomCommune": "ST MARTIN LA MEANNE" + "codePostal": "42740", + "codeCommune": "42085", + "libelleAcheminement": "DOIZIEUX", + "nomCommune": "DOIZIEUX" }, { - "codePostal": "19170", - "codeCommune": "19226", - "libelleAcheminement": "ST MERD LES OUSSINES", - "nomCommune": "ST MERD LES OUSSINES" + "codePostal": "42360", + "codeCommune": "42090", + "libelleAcheminement": "ESSERTINES EN DONZY", + "nomCommune": "ESSERTINES EN DONZY" }, { - "codePostal": "19330", - "codeCommune": "19227", - "libelleAcheminement": "ST MEXANT", - "nomCommune": "ST MEXANT" + "codePostal": "42380", + "codeCommune": "42091", + "libelleAcheminement": "ESTIVAREILLES", + "nomCommune": "ESTIVAREILLES" }, { - "codePostal": "19160", - "codeCommune": "19228", - "libelleAcheminement": "ST PANTALEON DE LAPLEAU", - "nomCommune": "ST PANTALEON DE LAPLEAU" + "codePostal": "42580", + "codeCommune": "42092", + "libelleAcheminement": "L ETRAT", + "nomCommune": "L ETRAT" }, { - "codePostal": "19200", - "codeCommune": "19232", - "libelleAcheminement": "ST PARDOUX LE NEUF", - "nomCommune": "ST PARDOUX LE NEUF" + "codePostal": "42140", + "codeCommune": "42100", + "libelleAcheminement": "LA GIMOND", + "nomCommune": "LA GIMOND" }, { - "codePostal": "19700", - "codeCommune": "19240", - "libelleAcheminement": "ST SALVADOUR", - "nomCommune": "ST SALVADOUR" + "codePostal": "42320", + "codeCommune": "42103", + "libelleAcheminement": "LA GRAND CROIX", + "nomCommune": "LA GRAND CROIX" }, { - "codePostal": "19290", - "codeCommune": "19241", - "libelleAcheminement": "ST SETIERS", - "nomCommune": "ST SETIERS" + "codePostal": "42152", + "codeCommune": "42110", + "libelleAcheminement": "L HORME", + "nomCommune": "L HORME" }, { - "codePostal": "19200", - "codeCommune": "19247", - "libelleAcheminement": "ST VICTOUR", - "nomCommune": "ST VICTOUR" + "codePostal": "42660", + "codeCommune": "42115", + "libelleAcheminement": "JONZIEUX", + "nomCommune": "JONZIEUX" }, { - "codePostal": "19300", - "codeCommune": "19249", - "libelleAcheminement": "ST YRIEIX LE DEJALAT", - "nomCommune": "ST YRIEIX LE DEJALAT" + "codePostal": "42600", + "codeCommune": "42121", + "libelleAcheminement": "LERIGNEUX", + "nomCommune": "LERIGNEUX" }, { - "codePostal": "19800", - "codeCommune": "19251", - "libelleAcheminement": "SARRAN", - "nomCommune": "SARRAN" + "codePostal": "42260", + "codeCommune": "42125", + "libelleAcheminement": "LURE", + "nomCommune": "LURE" }, { - "codePostal": "19110", - "codeCommune": "19252", - "libelleAcheminement": "SARROUX ST JULIEN", - "nomCommune": "SARROUX ST JULIEN" + "codePostal": "42380", + "codeCommune": "42126", + "libelleAcheminement": "LURIECQ", + "nomCommune": "LURIECQ" }, { - "codePostal": "19230", - "codeCommune": "19254", - "libelleAcheminement": "SEGUR LE CHATEAU", - "nomCommune": "SEGUR LE CHATEAU" + "codePostal": "42130", + "codeCommune": "42136", + "libelleAcheminement": "MARCOUX", + "nomCommune": "MARCOUX" }, { - "codePostal": "19300", - "codeCommune": "19263", - "libelleAcheminement": "SOUDEILLES", - "nomCommune": "SOUDEILLES" + "codePostal": "42750", + "codeCommune": "42141", + "libelleAcheminement": "MARS", + "nomCommune": "MARS" }, { - "codePostal": "19170", - "codeCommune": "19268", - "libelleAcheminement": "TOY VIAM", - "nomCommune": "TOY VIAM" + "codePostal": "42600", + "codeCommune": "42147", + "libelleAcheminement": "MONTBRISON", + "nomCommune": "MONTBRISON" }, { - "codePostal": "19200", - "codeCommune": "19275", - "libelleAcheminement": "USSEL", - "nomCommune": "USSEL" + "codePostal": "42210", + "codeCommune": "42149", + "libelleAcheminement": "MONTROND LES BAINS", + "nomCommune": "MONTROND LES BAINS" }, { - "codePostal": "19170", - "codeCommune": "19284", - "libelleAcheminement": "VIAM", - "nomCommune": "VIAM" + "codePostal": "42510", + "codeCommune": "42154", + "libelleAcheminement": "NERONDE", + "nomCommune": "NERONDE" }, { - "codePostal": "21410", - "codeCommune": "21002", - "libelleAcheminement": "AGEY", - "nomCommune": "AGEY" + "codePostal": "42370", + "codeCommune": "42158", + "libelleAcheminement": "LES NOES", + "nomCommune": "LES NOES" }, { - "codePostal": "21510", - "codeCommune": "21004", - "libelleAcheminement": "AIGNAY LE DUC", - "nomCommune": "AIGNAY LE DUC" + "codePostal": "42410", + "codeCommune": "42168", + "libelleAcheminement": "PELUSSIN", + "nomCommune": "PELUSSIN" }, { - "codePostal": "21230", - "codeCommune": "21009", - "libelleAcheminement": "ALLEREY", - "nomCommune": "ALLEREY" + "codePostal": "42110", + "codeCommune": "42174", + "libelleAcheminement": "PONCINS", + "nomCommune": "PONCINS" }, { - "codePostal": "21500", - "codeCommune": "21025", - "libelleAcheminement": "ARRANS", - "nomCommune": "ARRANS" + "codePostal": "42630", + "codeCommune": "42181", + "libelleAcheminement": "REGNY", + "nomCommune": "REGNY" }, { - "codePostal": "21360", - "codeCommune": "21036", - "libelleAcheminement": "AUXANT", - "nomCommune": "AUXANT" + "codePostal": "42300", + "codeCommune": "42187", + "libelleAcheminement": "ROANNE", + "nomCommune": "ROANNE" }, { - "codePostal": "21410", - "codeCommune": "21045", - "libelleAcheminement": "BARBIREY SUR OUCHE", - "nomCommune": "BARBIREY SUR OUCHE" + "codePostal": "42520", + "codeCommune": "42201", + "libelleAcheminement": "ST APPOLINARD", + "nomCommune": "ST APPOLINARD" }, { - "codePostal": "21430", - "codeCommune": "21046", - "libelleAcheminement": "BARD LE REGULIER", - "nomCommune": "BARD LE REGULIER" + "codePostal": "42940", + "codeCommune": "42205", + "libelleAcheminement": "ST BONNET LE COURREAU", + "nomCommune": "ST BONNET LE COURREAU" }, { - "codePostal": "21200", - "codeCommune": "21054", - "libelleAcheminement": "BEAUNE", - "nomCommune": "BEAUNE" + "codePostal": "42400", + "codeCommune": "42207", + "libelleAcheminement": "ST CHAMOND", + "nomCommune": "ST CHAMOND" }, { - "codePostal": "21310", - "codeCommune": "21060", - "libelleAcheminement": "BELLENEUVE", - "nomCommune": "BELLENEUVE" + "codePostal": "42540", + "codeCommune": "42209", + "libelleAcheminement": "STE COLOMBE SUR GAND", + "nomCommune": "STE COLOMBE SUR GAND" }, { - "codePostal": "21320", - "codeCommune": "21062", - "libelleAcheminement": "BELLENOT SOUS POUILLY", - "nomCommune": "BELLENOT SOUS POUILLY" + "codePostal": "42210", + "codeCommune": "42214", + "libelleAcheminement": "ST CYR LES VIGNES", + "nomCommune": "ST CYR LES VIGNES" }, { - "codePostal": "21500", - "codeCommune": "21064", - "libelleAcheminement": "BENOISEY", - "nomCommune": "BENOISEY" + "codePostal": "42750", + "codeCommune": "42215", + "libelleAcheminement": "ST DENIS DE CABANNE", + "nomCommune": "ST DENIS DE CABANNE" }, { - "codePostal": "21350", - "codeCommune": "21069", - "libelleAcheminement": "BEURIZOT", - "nomCommune": "BEURIZOT" + "codePostal": "42230", + "codeCommune": "42218", + "libelleAcheminement": "ST ETIENNE", + "nomCommune": "ST ETIENNE" }, { - "codePostal": "21310", - "codeCommune": "21072", - "libelleAcheminement": "BEZOUOTTE", - "nomCommune": "BEZOUOTTE" + "codePostal": "42130", + "codeCommune": "42219", + "libelleAcheminement": "ST ETIENNE LE MOLARD", + "nomCommune": "ST ETIENNE LE MOLARD" }, { - "codePostal": "21520", - "codeCommune": "21077", - "libelleAcheminement": "BISSEY LA COTE", - "nomCommune": "BISSEY LA COTE" + "codePostal": "42330", + "codeCommune": "42222", + "libelleAcheminement": "ST GALMIER", + "nomCommune": "ST GALMIER" }, { - "codePostal": "21200", - "codeCommune": "21086", - "libelleAcheminement": "BLIGNY LES BEAUNE", - "nomCommune": "BLIGNY LES BEAUNE" + "codePostal": "42530", + "codeCommune": "42223", + "libelleAcheminement": "ST GENEST LERPT", + "nomCommune": "ST GENEST LERPT" }, { - "codePostal": "21350", - "codeCommune": "21100", - "libelleAcheminement": "BRAIN", - "nomCommune": "BRAIN" + "codePostal": "42660", + "codeCommune": "42224", + "libelleAcheminement": "ST GENEST MALIFAUX", + "nomCommune": "ST GENEST MALIFAUX" }, { - "codePostal": "21470", - "codeCommune": "21103", - "libelleAcheminement": "BRAZEY EN PLAINE", - "nomCommune": "BRAZEY EN PLAINE" + "codePostal": "42670", + "codeCommune": "42229", + "libelleAcheminement": "ST GERMAIN LA MONTAGNE", + "nomCommune": "ST GERMAIN LA MONTAGNE" }, { - "codePostal": "21400", - "codeCommune": "21104", - "libelleAcheminement": "BREMUR ET VAUROIS", - "nomCommune": "BREMUR ET VAUROIS" + "codePostal": "42370", + "codeCommune": "42233", + "libelleAcheminement": "ST HAON LE VIEUX", + "nomCommune": "ST HAON LE VIEUX" }, { - "codePostal": "21110", - "codeCommune": "21106", - "libelleAcheminement": "BRETENIERE", - "nomCommune": "BRETENIERE" + "codePostal": "42190", + "codeCommune": "42236", + "libelleAcheminement": "ST HILAIRE SOUS CHARLIEU", + "nomCommune": "ST HILAIRE SOUS CHARLIEU" }, { - "codePostal": "21580", - "codeCommune": "21119", - "libelleAcheminement": "BUSSIERES", - "nomCommune": "BUSSIERES" + "codePostal": "42800", + "codeCommune": "42242", + "libelleAcheminement": "ST JOSEPH", + "nomCommune": "ST JOSEPH" }, { - "codePostal": "21330", - "codeCommune": "21125", - "libelleAcheminement": "CERILLY", - "nomCommune": "CERILLY" + "codePostal": "42260", + "codeCommune": "42243", + "libelleAcheminement": "ST JULIEN D ODDES", + "nomCommune": "ST JULIEN D ODDES" }, { - "codePostal": "21320", - "codeCommune": "21128", - "libelleAcheminement": "CHAILLY SUR ARMANCON", - "nomCommune": "CHAILLY SUR ARMANCON" + "codePostal": "42130", + "codeCommune": "42252", + "libelleAcheminement": "ST LAURENT ROCHEFORT", + "nomCommune": "ST LAURENT ROCHEFORT" }, { - "codePostal": "21220", - "codeCommune": "21132", - "libelleAcheminement": "CHAMBOEUF", - "nomCommune": "CHAMBOEUF" + "codePostal": "42155", + "codeCommune": "42253", + "libelleAcheminement": "ST LEGER SUR ROANNE", + "nomCommune": "ST LEGER SUR ROANNE" }, { - "codePostal": "21210", - "codeCommune": "21139", - "libelleAcheminement": "CHAMPEAU EN MORVAN", - "nomCommune": "CHAMPEAU EN MORVAN" + "codePostal": "42122", + "codeCommune": "42254", + "libelleAcheminement": "ST MARCEL DE FELINES", + "nomCommune": "ST MARCEL DE FELINES" }, { - "codePostal": "21440", - "codeCommune": "21142", - "libelleAcheminement": "CHANCEAUX", - "nomCommune": "CHANCEAUX" + "codePostal": "42430", + "codeCommune": "42255", + "libelleAcheminement": "ST MARCEL D URFE", + "nomCommune": "ST MARCEL D URFE" }, { - "codePostal": "21330", - "codeCommune": "21143", - "libelleAcheminement": "CHANNAY", - "nomCommune": "CHANNAY" + "codePostal": "42260", + "codeCommune": "42260", + "libelleAcheminement": "ST MARTIN LA SAUVETE", + "nomCommune": "ST MARTIN LA SAUVETE" }, { - "codePostal": "21360", - "codeCommune": "21155", - "libelleAcheminement": "CHAUDENAY LA VILLE", - "nomCommune": "CHAUDENAY LA VILLE" + "codePostal": "42110", + "codeCommune": "42261", + "libelleAcheminement": "ST MARTIN LESTRA", + "nomCommune": "ST MARTIN LESTRA" }, { - "codePostal": "21400", - "codeCommune": "21161", - "libelleAcheminement": "CHAUMONT LE BOIS", - "nomCommune": "CHAUMONT LE BOIS" + "codePostal": "42240", + "codeCommune": "42262", + "libelleAcheminement": "ST MAURICE EN GOURGOIS", + "nomCommune": "ST MAURICE EN GOURGOIS" }, { - "codePostal": "21310", - "codeCommune": "21167", - "libelleAcheminement": "CHEUGE", - "nomCommune": "CHEUGE" + "codePostal": "42380", + "codeCommune": "42266", + "libelleAcheminement": "ST NIZIER DE FORNAS", + "nomCommune": "ST NIZIER DE FORNAS" }, { - "codePostal": "21540", - "codeCommune": "21168", - "libelleAcheminement": "CHEVANNAY", - "nomCommune": "CHEVANNAY" + "codePostal": "42190", + "codeCommune": "42267", + "libelleAcheminement": "ST NIZIER SOUS CHARLIEU", + "nomCommune": "ST NIZIER SOUS CHARLIEU" }, { - "codePostal": "21220", - "codeCommune": "21169", - "libelleAcheminement": "CHEVANNES", - "nomCommune": "CHEVANNES" + "codePostal": "42590", + "codeCommune": "42268", + "libelleAcheminement": "VEZELIN SUR LOIRE", + "nomCommune": "VEZELIN SUR LOIRE" }, { - "codePostal": "21320", - "codeCommune": "21176", - "libelleAcheminement": "CIVRY EN MONTAGNE", - "nomCommune": "CIVRY EN MONTAGNE" + "codePostal": "42600", + "codeCommune": "42269", + "libelleAcheminement": "ST PAUL D UZORE", + "nomCommune": "ST PAUL D UZORE" }, { - "codePostal": "21390", - "codeCommune": "21177", - "libelleAcheminement": "CLAMEREY", - "nomCommune": "CLAMEREY" + "codePostal": "42170", + "codeCommune": "42279", + "libelleAcheminement": "ST JUST ST RAMBERT", + "nomCommune": "ST JUST ST RAMBERT" }, { - "codePostal": "21270", - "codeCommune": "21180", - "libelleAcheminement": "CLERY", - "nomCommune": "CLERY" + "codePostal": "42220", + "codeCommune": "42287", + "libelleAcheminement": "ST SAUVEUR EN RUE", + "nomCommune": "ST SAUVEUR EN RUE" }, { - "codePostal": "21220", - "codeCommune": "21182", - "libelleAcheminement": "COLLONGES LES BEVY", - "nomCommune": "COLLONGES LES BEVY" + "codePostal": "42130", + "codeCommune": "42288", + "libelleAcheminement": "ST SIXTE", + "nomCommune": "ST SIXTE" }, { - "codePostal": "21340", - "codeCommune": "21195", - "libelleAcheminement": "CORMOT VAUCHIGNON", - "nomCommune": "CORMOT VAUCHIGNON" + "codePostal": "42630", + "codeCommune": "42293", + "libelleAcheminement": "ST VICTOR SUR RHINS", + "nomCommune": "ST VICTOR SUR RHINS" }, { - "codePostal": "21500", - "codeCommune": "21204", - "libelleAcheminement": "COURCELLES LES MONTBARD", - "nomCommune": "COURCELLES LES MONTBARD" + "codePostal": "42120", + "codeCommune": "42294", + "libelleAcheminement": "ST VINCENT DE BOISSET", + "nomCommune": "ST VINCENT DE BOISSET" }, { - "codePostal": "21140", - "codeCommune": "21205", - "libelleAcheminement": "COURCELLES LES SEMUR", - "nomCommune": "COURCELLES LES SEMUR" + "codePostal": "42560", + "codeCommune": "42301", + "libelleAcheminement": "SOLEYMIEUX", + "nomCommune": "SOLEYMIEUX" }, { - "codePostal": "21320", - "codeCommune": "21210", - "libelleAcheminement": "CREANCEY", - "nomCommune": "CREANCEY" + "codePostal": "42350", + "codeCommune": "42305", + "libelleAcheminement": "LA TALAUDIERE", + "nomCommune": "LA TALAUDIERE" }, { - "codePostal": "21310", - "codeCommune": "21215", - "libelleAcheminement": "CUISEREY", - "nomCommune": "CUISEREY" + "codePostal": "42550", + "codeCommune": "42318", + "libelleAcheminement": "USSON EN FOREZ", + "nomCommune": "USSON EN FOREZ" }, { - "codePostal": "21580", - "codeCommune": "21220", - "libelleAcheminement": "CUSSEY LES FORGES", - "nomCommune": "CUSSEY LES FORGES" + "codePostal": "42110", + "codeCommune": "42319", + "libelleAcheminement": "VALEILLE", + "nomCommune": "VALEILLE" }, { - "codePostal": "21270", - "codeCommune": "21233", - "libelleAcheminement": "DRAMBON", - "nomCommune": "DRAMBON" + "codePostal": "42340", + "codeCommune": "42323", + "libelleAcheminement": "VEAUCHE", + "nomCommune": "VEAUCHE" }, { - "codePostal": "21190", - "codeCommune": "21236", - "libelleAcheminement": "EBATY", - "nomCommune": "EBATY" + "codePostal": "42460", + "codeCommune": "42333", + "libelleAcheminement": "VILLERS", + "nomCommune": "VILLERS" }, { - "codePostal": "21460", - "codeCommune": "21247", - "libelleAcheminement": "EPOISSES", - "nomCommune": "EPOISSES" + "codePostal": "42310", + "codeCommune": "42337", + "libelleAcheminement": "VIVANS", + "nomCommune": "VIVANS" }, { - "codePostal": "21170", - "codeCommune": "21249", - "libelleAcheminement": "ESBARRES", - "nomCommune": "ESBARRES" + "codePostal": "43270", + "codeCommune": "43003", + "libelleAcheminement": "ALLEGRE", + "nomCommune": "ALLEGRE" }, { - "codePostal": "21320", - "codeCommune": "21251", - "libelleAcheminement": "ESSEY", - "nomCommune": "ESSEY" + "codePostal": "43150", + "codeCommune": "43004", + "libelleAcheminement": "ALLEYRAC", + "nomCommune": "ALLEYRAC" }, { - "codePostal": "21220", - "codeCommune": "21254", - "libelleAcheminement": "L ETANG VERGY", - "nomCommune": "L ETANG VERGY" + "codePostal": "43200", + "codeCommune": "43007", + "libelleAcheminement": "ARAULES", + "nomCommune": "ARAULES" }, { - "codePostal": "21121", - "codeCommune": "21255", - "libelleAcheminement": "ETAULES", - "nomCommune": "ETAULES" + "codePostal": "43380", + "codeCommune": "43009", + "libelleAcheminement": "ARLET", + "nomCommune": "ARLET" }, { - "codePostal": "21500", - "codeCommune": "21260", - "libelleAcheminement": "FAIN LES MOUTIERS", - "nomCommune": "FAIN LES MOUTIERS" + "codePostal": "43300", + "codeCommune": "43015", + "libelleAcheminement": "AUVERS", + "nomCommune": "AUVERS" }, { - "codePostal": "21110", - "codeCommune": "21261", - "libelleAcheminement": "FAUVERNEY", - "nomCommune": "FAUVERNEY" + "codePostal": "43390", + "codeCommune": "43016", + "libelleAcheminement": "AUZON", + "nomCommune": "AUZON" }, { - "codePostal": "21640", - "codeCommune": "21267", - "libelleAcheminement": "FLAGEY ECHEZEAUX", - "nomCommune": "FLAGEY ECHEZEAUX" + "codePostal": "43370", + "codeCommune": "43018", + "libelleAcheminement": "BAINS", + "nomCommune": "BAINS" }, { - "codePostal": "21160", - "codeCommune": "21270", - "libelleAcheminement": "FLAVIGNEROT", - "nomCommune": "FLAVIGNEROT" + "codePostal": "43800", + "codeCommune": "43021", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "21230", - "codeCommune": "21274", - "libelleAcheminement": "FOISSY", - "nomCommune": "FOISSY" + "codePostal": "43200", + "codeCommune": "43024", + "libelleAcheminement": "BEAUX", + "nomCommune": "BEAUX" }, { - "codePostal": "21460", - "codeCommune": "21282", - "libelleAcheminement": "FORLEANS", - "nomCommune": "FORLEANS" + "codePostal": "43160", + "codeCommune": "43035", + "libelleAcheminement": "BONNEVAL", + "nomCommune": "BONNEVAL" }, { - "codePostal": "21150", - "codeCommune": "21288", - "libelleAcheminement": "FROLOIS", - "nomCommune": "FROLOIS" + "codePostal": "43360", + "codeCommune": "43038", + "libelleAcheminement": "BOURNONCLE ST PIERRE", + "nomCommune": "BOURNONCLE ST PIERRE" }, { - "codePostal": "21120", - "codeCommune": "21290", - "libelleAcheminement": "GEMEAUX", - "nomCommune": "GEMEAUX" + "codePostal": "43770", + "codeCommune": "43046", + "libelleAcheminement": "CHADRAC", + "nomCommune": "CHADRAC" }, { - "codePostal": "21410", - "codeCommune": "21293", - "libelleAcheminement": "GERGUEIL", - "nomCommune": "GERGUEIL" + "codePostal": "43800", + "codeCommune": "43049", + "libelleAcheminement": "CHAMALIERES SUR LOIRE", + "nomCommune": "CHAMALIERES SUR LOIRE" }, { - "codePostal": "21220", - "codeCommune": "21295", - "libelleAcheminement": "GEVREY CHAMBERTIN", - "nomCommune": "GEVREY CHAMBERTIN" + "codePostal": "43270", + "codeCommune": "43057", + "libelleAcheminement": "LA CHAPELLE BERTIN", + "nomCommune": "LA CHAPELLE BERTIN" }, { - "codePostal": "21640", - "codeCommune": "21297", - "libelleAcheminement": "GILLY LES CITEAUX", - "nomCommune": "GILLY LES CITEAUX" + "codePostal": "43700", + "codeCommune": "43061", + "libelleAcheminement": "CHASPINHAC", + "nomCommune": "CHASPINHAC" }, { - "codePostal": "21580", - "codeCommune": "21304", - "libelleAcheminement": "GRANCEY LE CHATEAU", - "nomCommune": "GRANCEY LE CHATEAU NEUVELLE" + "codePostal": "43300", + "codeCommune": "43068", + "libelleAcheminement": "CHAZELLES", + "nomCommune": "CHAZELLES" }, { - "codePostal": "21570", - "codeCommune": "21305", - "libelleAcheminement": "GRANCEY SUR OURCE", - "nomCommune": "GRANCEY SUR OURCE" + "codePostal": "43190", + "codeCommune": "43069", + "libelleAcheminement": "CHENEREILLES", + "nomCommune": "CHENEREILLES" }, { - "codePostal": "21150", - "codeCommune": "21321", - "libelleAcheminement": "JAILLY LES MOULINS", - "nomCommune": "JAILLY LES MOULINS" + "codePostal": "43300", + "codeCommune": "43082", + "libelleAcheminement": "CRONCE", + "nomCommune": "CRONCE" }, { - "codePostal": "21310", - "codeCommune": "21323", - "libelleAcheminement": "JANCIGNY", - "nomCommune": "JANCIGNY" + "codePostal": "43450", + "codeCommune": "43088", + "libelleAcheminement": "ESPALEM", + "nomCommune": "ESPALEM" }, { - "codePostal": "21230", - "codeCommune": "21325", - "libelleAcheminement": "JOUEY", - "nomCommune": "JOUEY" + "codePostal": "43150", + "codeCommune": "43091", + "libelleAcheminement": "LES ESTABLES", + "nomCommune": "LES ESTABLES" }, { - "codePostal": "21230", - "codeCommune": "21334", - "libelleAcheminement": "LACANCHE", - "nomCommune": "LACANCHE" + "codePostal": "43430", + "codeCommune": "43092", + "libelleAcheminement": "FAY SUR LIGNON", + "nomCommune": "FAY SUR LIGNON" }, { - "codePostal": "21440", - "codeCommune": "21345", - "libelleAcheminement": "LERY", - "nomCommune": "LERY" + "codePostal": "43100", + "codeCommune": "43096", + "libelleAcheminement": "FONTANNES", + "nomCommune": "FONTANNES" }, { - "codePostal": "21610", - "codeCommune": "21348", - "libelleAcheminement": "LICEY SUR VINGEANNE", - "nomCommune": "LICEY SUR VINGEANNE" + "codePostal": "43150", + "codeCommune": "43098", + "libelleAcheminement": "FREYCENET LA TOUR", + "nomCommune": "FREYCENET LA TOUR" }, { - "codePostal": "21110", - "codeCommune": "21352", - "libelleAcheminement": "LONGEAULT PLUVAULT", - "nomCommune": "LONGEAULT PLUVAULT" + "codePostal": "43170", + "codeCommune": "43104", + "libelleAcheminement": "GREZES", + "nomCommune": "GREZES" }, { - "codePostal": "21110", - "codeCommune": "21352", - "libelleAcheminement": "LONGEAULT PLUVAULT", - "nomCommune": "LONGEAULT PLUVAULT" + "codePostal": "43230", + "codeCommune": "43106", + "libelleAcheminement": "JAX", + "nomCommune": "JAX" }, { - "codePostal": "21230", - "codeCommune": "21354", - "libelleAcheminement": "LONGECOURT LES CULETRE", - "nomCommune": "LONGECOURT LES CULETRE" + "codePostal": "43410", + "codeCommune": "43120", + "libelleAcheminement": "LEMPDES SUR ALLAGNON", + "nomCommune": "LEMPDES SUR ALLAGNON" }, { - "codePostal": "21120", - "codeCommune": "21361", - "libelleAcheminement": "LUX", - "nomCommune": "LUX" + "codePostal": "43410", + "codeCommune": "43121", + "libelleAcheminement": "LEOTOING", + "nomCommune": "LEOTOING" }, { - "codePostal": "21230", - "codeCommune": "21363", - "libelleAcheminement": "MAGNIEN", - "nomCommune": "MAGNIEN" + "codePostal": "43320", + "codeCommune": "43124", + "libelleAcheminement": "LOUDES", + "nomCommune": "LOUDES" }, { - "codePostal": "21450", - "codeCommune": "21364", - "libelleAcheminement": "MAGNY LAMBERT", - "nomCommune": "MAGNY LAMBERT" + "codePostal": "43230", + "codeCommune": "43139", + "libelleAcheminement": "MONTCLARD", + "nomCommune": "MONTCLARD" }, { - "codePostal": "21140", - "codeCommune": "21365", - "libelleAcheminement": "MAGNY LA VILLE", - "nomCommune": "MAGNY LA VILLE" + "codePostal": "43510", + "codeCommune": "43145", + "libelleAcheminement": "OUIDES", + "nomCommune": "OUIDES" }, { - "codePostal": "21130", - "codeCommune": "21371", - "libelleAcheminement": "LES MAILLYS", - "nomCommune": "LES MAILLYS" + "codePostal": "43100", + "codeCommune": "43147", + "libelleAcheminement": "PAULHAC", + "nomCommune": "PAULHAC" }, { - "codePostal": "21410", - "codeCommune": "21373", - "libelleAcheminement": "MALAIN", - "nomCommune": "MALAIN" + "codePostal": "43260", + "codeCommune": "43158", + "libelleAcheminement": "QUEYRIERES", + "nomCommune": "QUEYRIERES" }, { - "codePostal": "21230", - "codeCommune": "21374", - "libelleAcheminement": "MALIGNY", - "nomCommune": "MALIGNY" + "codePostal": "43130", + "codeCommune": "43162", + "libelleAcheminement": "RETOURNAC", + "nomCommune": "RETOURNAC" }, { - "codePostal": "21350", - "codeCommune": "21377", - "libelleAcheminement": "MARCELLOIS", - "nomCommune": "MARCELLOIS" + "codePostal": "43380", + "codeCommune": "43169", + "libelleAcheminement": "ST AUSTREMOINE", + "nomCommune": "ST AUSTREMOINE" }, { - "codePostal": "21330", - "codeCommune": "21378", - "libelleAcheminement": "MARCENAY", - "nomCommune": "MARCENAY" + "codePostal": "43100", + "codeCommune": "43170", + "libelleAcheminement": "ST BEAUZIRE", + "nomCommune": "ST BEAUZIRE" }, { - "codePostal": "21350", - "codeCommune": "21381", - "libelleAcheminement": "MARCILLY ET DRACY", - "nomCommune": "MARCILLY ET DRACY" + "codePostal": "43440", + "codeCommune": "43178", + "libelleAcheminement": "ST DIDIER SUR DOULON", + "nomCommune": "ST DIDIER SUR DOULON" }, { - "codePostal": "21700", - "codeCommune": "21384", - "libelleAcheminement": "MAREY LES FUSSEY", - "nomCommune": "MAREY LES FUSSEY" + "codePostal": "43330", + "codeCommune": "43184", + "libelleAcheminement": "ST FERREOL D AUROURE", + "nomCommune": "ST FERREOL D AUROURE" }, { - "codePostal": "21200", - "codeCommune": "21387", - "libelleAcheminement": "MARIGNY LES REULLEE", - "nomCommune": "MARIGNY LES REULLEE" + "codePostal": "43550", + "codeCommune": "43186", + "libelleAcheminement": "ST FRONT", + "nomCommune": "ST FRONT" }, { - "codePostal": "21110", - "codeCommune": "21388", - "libelleAcheminement": "MARLIENS", - "nomCommune": "MARLIENS" + "codePostal": "43230", + "codeCommune": "43188", + "libelleAcheminement": "ST GEORGES D AURAC", + "nomCommune": "ST GEORGES D AURAC" }, { - "codePostal": "21160", - "codeCommune": "21390", - "libelleAcheminement": "MARSANNAY LA COTE", - "nomCommune": "MARSANNAY LA COTE" + "codePostal": "43340", + "codeCommune": "43192", + "libelleAcheminement": "ST HAON", + "nomCommune": "ST HAON" }, { - "codePostal": "21320", - "codeCommune": "21399", - "libelleAcheminement": "MEILLY SUR ROUVRES", - "nomCommune": "MEILLY SUR ROUVRES" + "codePostal": "43500", + "codeCommune": "43196", + "libelleAcheminement": "ST JEAN D AUBRIGOUX", + "nomCommune": "ST JEAN D AUBRIGOUX" }, { - "codePostal": "21580", - "codeCommune": "21400", - "libelleAcheminement": "LE MEIX", - "nomCommune": "LE MEIX" + "codePostal": "43580", + "codeCommune": "43220", + "libelleAcheminement": "ST PREJET D ALLIER", + "nomCommune": "ST PREJET D ALLIER" }, { - "codePostal": "21290", - "codeCommune": "21402", - "libelleAcheminement": "MENESBLE", - "nomCommune": "MENESBLE" + "codePostal": "43580", + "codeCommune": "43221", + "libelleAcheminement": "ST PRIVAT D ALLIER", + "nomCommune": "ST PRIVAT D ALLIER" }, { - "codePostal": "21430", - "codeCommune": "21403", - "libelleAcheminement": "MENESSAIRE", - "nomCommune": "MENESSAIRE" + "codePostal": "43320", + "codeCommune": "43229", + "libelleAcheminement": "ST VIDAL", + "nomCommune": "ST VIDAL" }, { - "codePostal": "21150", - "codeCommune": "21404", - "libelleAcheminement": "MENETREUX LE PITOIS", - "nomCommune": "MENETREUX LE PITOIS" + "codePostal": "43300", + "codeCommune": "43239", + "libelleAcheminement": "SIAUGUES STE MARIE", + "nomCommune": "SIAUGUES STE MARIE" }, { - "codePostal": "21510", - "codeCommune": "21410", - "libelleAcheminement": "MEULSON", - "nomCommune": "MEULSON" + "codePostal": "43130", + "codeCommune": "43240", + "libelleAcheminement": "SOLIGNAC SOUS ROCHE", + "nomCommune": "SOLIGNAC SOUS ROCHE" }, { - "codePostal": "21230", - "codeCommune": "21414", - "libelleAcheminement": "MIMEURE", - "nomCommune": "MIMEURE" + "codePostal": "43370", + "codeCommune": "43241", + "libelleAcheminement": "SOLIGNAC SUR LOIRE", + "nomCommune": "SOLIGNAC SUR LOIRE" }, { - "codePostal": "21330", - "codeCommune": "21419", - "libelleAcheminement": "MOLESME", - "nomCommune": "MOLESME" + "codePostal": "43170", + "codeCommune": "43245", + "libelleAcheminement": "THORAS", + "nomCommune": "THORAS" }, { - "codePostal": "21120", - "codeCommune": "21421", - "libelleAcheminement": "MOLOY", - "nomCommune": "MOLOY" + "codePostal": "43270", + "codeCommune": "43252", + "libelleAcheminement": "VARENNES ST HONORAT", + "nomCommune": "VARENNES ST HONORAT" }, { - "codePostal": "21200", - "codeCommune": "21423", - "libelleAcheminement": "MONTAGNY LES BEAUNE", - "nomCommune": "MONTAGNY LES BEAUNE" + "codePostal": "43390", + "codeCommune": "43261", + "libelleAcheminement": "VEZEZOUX", + "nomCommune": "VEZEZOUX" }, { - "codePostal": "21520", - "codeCommune": "21432", - "libelleAcheminement": "MONTIGNY SUR AUBE", - "nomCommune": "MONTIGNY SUR AUBE" + "codePostal": "43100", + "codeCommune": "43262", + "libelleAcheminement": "VIEILLE BRIOUDE", + "nomCommune": "VIEILLE BRIOUDE" }, { - "codePostal": "21210", - "codeCommune": "21434", - "libelleAcheminement": "MONTLAY EN AUXOIS", - "nomCommune": "MONTLAY EN AUXOIS" + "codePostal": "44170", + "codeCommune": "44001", + "libelleAcheminement": "ABBARETZ", + "nomCommune": "ABBARETZ" }, { - "codePostal": "21250", - "codeCommune": "21436", - "libelleAcheminement": "MONTMAIN", - "nomCommune": "MONTMAIN" + "codePostal": "44150", + "codeCommune": "44003", + "libelleAcheminement": "ANCENIS ST GEREON", + "nomCommune": "ANCENIS ST GEREON" }, { - "codePostal": "21910", - "codeCommune": "21458", - "libelleAcheminement": "NOIRON SOUS GEVREY", - "nomCommune": "NOIRON SOUS GEVREY" + "codePostal": "44460", + "codeCommune": "44007", + "libelleAcheminement": "AVESSAC", + "nomCommune": "AVESSAC" }, { - "codePostal": "21310", - "codeCommune": "21459", - "libelleAcheminement": "NOIRON SUR BEZE", - "nomCommune": "NOIRON SUR BEZE" + "codePostal": "44760", + "codeCommune": "44012", + "libelleAcheminement": "LA BERNERIE EN RETZ", + "nomCommune": "LA BERNERIE EN RETZ" }, { - "codePostal": "21390", - "codeCommune": "21463", - "libelleAcheminement": "NORMIER", - "nomCommune": "NORMIER" + "codePostal": "44140", + "codeCommune": "44014", + "libelleAcheminement": "LE BIGNON", + "nomCommune": "LE BIGNON" }, { - "codePostal": "21510", - "codeCommune": "21470", - "libelleAcheminement": "ORIGNY", - "nomCommune": "ORIGNY" + "codePostal": "44130", + "codeCommune": "44015", + "libelleAcheminement": "BLAIN", + "nomCommune": "BLAIN" }, { - "codePostal": "21450", - "codeCommune": "21471", - "libelleAcheminement": "ORRET", - "nomCommune": "ORRET" + "codePostal": "44340", + "codeCommune": "44020", + "libelleAcheminement": "BOUGUENAIS", + "nomCommune": "BOUGUENAIS" }, { - "codePostal": "21600", - "codeCommune": "21473", - "libelleAcheminement": "OUGES", - "nomCommune": "OUGES" + "codePostal": "44330", + "codeCommune": "44032", + "libelleAcheminement": "LA CHAPELLE HEULIN", + "nomCommune": "LA CHAPELLE HEULIN" }, { - "codePostal": "21540", - "codeCommune": "21477", - "libelleAcheminement": "PANGES", - "nomCommune": "PANGES" + "codePostal": "44260", + "codeCommune": "44033", + "libelleAcheminement": "LA CHAPELLE LAUNAY", + "nomCommune": "LA CHAPELLE LAUNAY" }, { - "codePostal": "21270", - "codeCommune": "21482", - "libelleAcheminement": "PERRIGNY SUR L OGNON", - "nomCommune": "PERRIGNY SUR L OGNON" + "codePostal": "44320", + "codeCommune": "44038", + "libelleAcheminement": "CHAUVE", + "nomCommune": "CHAUVE" }, { - "codePostal": "21500", - "codeCommune": "21484", - "libelleAcheminement": "PLANAY", - "nomCommune": "PLANAY" + "codePostal": "44118", + "codeCommune": "44041", + "libelleAcheminement": "LA CHEVROLIERE", + "nomCommune": "LA CHEVROLIERE" }, { - "codePostal": "21330", - "codeCommune": "21488", - "libelleAcheminement": "POINCON LES LARREY", - "nomCommune": "POINCON LES LARREY" + "codePostal": "44290", + "codeCommune": "44044", + "libelleAcheminement": "CONQUEREUIL", + "nomCommune": "CONQUEREUIL" }, { - "codePostal": "21130", - "codeCommune": "21493", - "libelleAcheminement": "PONCEY LES ATHEE", - "nomCommune": "PONCEY LES ATHEE" + "codePostal": "44490", + "codeCommune": "44049", + "libelleAcheminement": "LE CROISIC", + "nomCommune": "LE CROISIC" }, { - "codePostal": "21320", - "codeCommune": "21501", - "libelleAcheminement": "POUILLY EN AUXOIS", - "nomCommune": "POUILLY EN AUXOIS" + "codePostal": "44290", + "codeCommune": "44067", + "libelleAcheminement": "GUEMENE PENFAO", + "nomCommune": "GUEMENE PENFAO" }, { - "codePostal": "21250", - "codeCommune": "21502", - "libelleAcheminement": "POUILLY SUR SAONE", - "nomCommune": "POUILLY SUR SAONE" + "codePostal": "44350", + "codeCommune": "44069", + "libelleAcheminement": "GUERANDE", + "nomCommune": "GUERANDE" }, { - "codePostal": "21700", - "codeCommune": "21506", - "libelleAcheminement": "PREMEAUX PRISSEY", - "nomCommune": "PREMEAUX PRISSEY" + "codePostal": "44350", + "codeCommune": "44069", + "libelleAcheminement": "GUERANDE", + "nomCommune": "GUERANDE" }, { - "codePostal": "21400", - "codeCommune": "21510", - "libelleAcheminement": "PRUSLY SUR OURCE", - "nomCommune": "PRUSLY SUR OURCE" + "codePostal": "44690", + "codeCommune": "44070", + "libelleAcheminement": "LA HAIE FOUASSIERE", + "nomCommune": "LA HAIE FOUASSIERE" }, { - "codePostal": "21500", - "codeCommune": "21516", - "libelleAcheminement": "QUINCEROT", - "nomCommune": "QUINCEROT" + "codePostal": "44610", + "codeCommune": "44074", + "libelleAcheminement": "INDRE", + "nomCommune": "INDRE" }, { - "codePostal": "21290", - "codeCommune": "21519", - "libelleAcheminement": "RECEY SUR OURCE", - "nomCommune": "RECEY SUR OURCE" + "codePostal": "44440", + "codeCommune": "44077", + "libelleAcheminement": "JOUE SUR ERDRE", + "nomCommune": "JOUE SUR ERDRE" }, { - "codePostal": "21510", - "codeCommune": "21526", - "libelleAcheminement": "ROCHEFORT SUR BREVON", - "nomCommune": "ROCHEFORT SUR BREVON" + "codePostal": "44260", + "codeCommune": "44080", + "libelleAcheminement": "LAVAU SUR LOIRE", + "nomCommune": "LAVAU SUR LOIRE" }, { - "codePostal": "21390", - "codeCommune": "21529", - "libelleAcheminement": "ROILLY", - "nomCommune": "ROILLY" + "codePostal": "44270", + "codeCommune": "44087", + "libelleAcheminement": "MACHECOUL ST MEME", + "nomCommune": "MACHECOUL ST MEME" }, { - "codePostal": "21260", - "codeCommune": "21536", - "libelleAcheminement": "SACQUENAY", - "nomCommune": "SACQUENAY" + "codePostal": "44260", + "codeCommune": "44089", + "libelleAcheminement": "MALVILLE", + "nomCommune": "MALVILLE" }, { - "codePostal": "21530", - "codeCommune": "21538", - "libelleAcheminement": "ST ANDEUX", - "nomCommune": "ST ANDEUX" + "codePostal": "44522", + "codeCommune": "44096", + "libelleAcheminement": "MESANGER", + "nomCommune": "MESANGER" }, { - "codePostal": "21190", - "codeCommune": "21541", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "44420", + "codeCommune": "44097", + "libelleAcheminement": "MESQUER", + "nomCommune": "MESQUER" }, { - "codePostal": "21290", - "codeCommune": "21543", - "libelleAcheminement": "ST BROING LES MOINES", - "nomCommune": "ST BROING LES MOINES" + "codePostal": "44370", + "codeCommune": "44104", + "libelleAcheminement": "MONTRELAIS", + "nomCommune": "MONTRELAIS" }, { - "codePostal": "21530", - "codeCommune": "21548", - "libelleAcheminement": "ST GERMAIN DE MODEON", - "nomCommune": "ST GERMAIN DE MODEON" + "codePostal": "44590", + "codeCommune": "44105", + "libelleAcheminement": "MOUAIS", + "nomCommune": "MOUAIS" }, { - "codePostal": "21440", - "codeCommune": "21561", - "libelleAcheminement": "ST MARTIN DU MONT", - "nomCommune": "ST MARTIN DU MONT" + "codePostal": "44100", + "codeCommune": "44109", + "libelleAcheminement": "NANTES", + "nomCommune": "NANTES" }, { - "codePostal": "21610", - "codeCommune": "21562", - "libelleAcheminement": "ST MAURICE SUR VINGEANNE", - "nomCommune": "ST MAURICE SUR VINGEANNE" + "codePostal": "44130", + "codeCommune": "44111", + "libelleAcheminement": "NOTRE DAME DES LANDES", + "nomCommune": "NOTRE DAME DES LANDES" }, { - "codePostal": "21500", - "codeCommune": "21568", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "44700", + "codeCommune": "44114", + "libelleAcheminement": "ORVAULT", + "nomCommune": "ORVAULT" }, { - "codePostal": "21320", - "codeCommune": "21570", - "libelleAcheminement": "STE SABINE", - "nomCommune": "STE SABINE" + "codePostal": "44540", + "codeCommune": "44124", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "21440", - "codeCommune": "21573", - "libelleAcheminement": "ST SEINE L ABBAYE", - "nomCommune": "ST SEINE L ABBAYE" + "codePostal": "44630", + "codeCommune": "44128", + "libelleAcheminement": "PLESSE", + "nomCommune": "PLESSE" }, { - "codePostal": "21410", - "codeCommune": "21578", - "libelleAcheminement": "ST VICTOR SUR OUCHE", - "nomCommune": "ST VICTOR SUR OUCHE" + "codePostal": "44860", + "codeCommune": "44130", + "libelleAcheminement": "PONT ST MARTIN", + "nomCommune": "PONT ST MARTIN" }, { - "codePostal": "21420", - "codeCommune": "21590", - "libelleAcheminement": "SAVIGNY LES BEAUNE", - "nomCommune": "SAVIGNY LES BEAUNE" + "codePostal": "44210", + "codeCommune": "44131", + "libelleAcheminement": "PORNIC", + "nomCommune": "PORNIC" }, { - "codePostal": "21310", - "codeCommune": "21595", - "libelleAcheminement": "SAVOLLES", - "nomCommune": "SAVOLLES" + "codePostal": "44380", + "codeCommune": "44132", + "libelleAcheminement": "PORNICHET", + "nomCommune": "PORNICHET" }, { - "codePostal": "21270", - "codeCommune": "21610", - "libelleAcheminement": "SOISSONS SUR NACEY", - "nomCommune": "SOISSONS SUR NACEY" + "codePostal": "44522", + "codeCommune": "44134", + "libelleAcheminement": "POUILLE LES COTEAUX", + "nomCommune": "POUILLE LES COTEAUX" }, { - "codePostal": "21270", - "codeCommune": "21618", - "libelleAcheminement": "TALMAY", - "nomCommune": "TALMAY" + "codePostal": "44260", + "codeCommune": "44137", + "libelleAcheminement": "PRINQUIAU", + "nomCommune": "PRINQUIAU" }, { - "codePostal": "21120", - "codeCommune": "21620", - "libelleAcheminement": "TARSUL", - "nomCommune": "TARSUL" + "codePostal": "44330", + "codeCommune": "44140", + "libelleAcheminement": "LA REGRIPPIERE", + "nomCommune": "LA REGRIPPIERE" }, { - "codePostal": "21110", - "codeCommune": "21623", - "libelleAcheminement": "TART", - "nomCommune": "TART" + "codePostal": "44400", + "codeCommune": "44143", + "libelleAcheminement": "REZE", + "nomCommune": "REZE" }, { - "codePostal": "21150", - "codeCommune": "21627", - "libelleAcheminement": "THENISSEY", - "nomCommune": "THENISSEY" + "codePostal": "44660", + "codeCommune": "44146", + "libelleAcheminement": "ROUGE", + "nomCommune": "ROUGE" }, { - "codePostal": "21320", - "codeCommune": "21630", - "libelleAcheminement": "THOISY LE DESERT", - "nomCommune": "THOISY LE DESERT" + "codePostal": "44660", + "codeCommune": "44148", + "libelleAcheminement": "RUFFIGNE", + "nomCommune": "RUFFIGNE" }, { - "codePostal": "21360", - "codeCommune": "21631", - "libelleAcheminement": "THOMIREY", - "nomCommune": "THOMIREY" + "codePostal": "44390", + "codeCommune": "44149", + "libelleAcheminement": "SAFFRE", + "nomCommune": "SAFFRE" }, { - "codePostal": "21360", - "codeCommune": "21634", - "libelleAcheminement": "THOREY SUR OUCHE", - "nomCommune": "THOREY SUR OUCHE" + "codePostal": "44650", + "codeCommune": "44156", + "libelleAcheminement": "CORCOUE SUR LOGNE", + "nomCommune": "CORCOUE SUR LOGNE" }, { - "codePostal": "21500", - "codeCommune": "21641", - "libelleAcheminement": "TOUILLON", - "nomCommune": "TOUILLON" + "codePostal": "44710", + "codeCommune": "44171", + "libelleAcheminement": "ST LEGER LES VIGNES", + "nomCommune": "ST LEGER LES VIGNES" }, { - "codePostal": "21130", - "codeCommune": "21643", - "libelleAcheminement": "TRECLUN", - "nomCommune": "TRECLUN" + "codePostal": "44980", + "codeCommune": "44172", + "libelleAcheminement": "STE LUCE SUR LOIRE", + "nomCommune": "STE LUCE SUR LOIRE" }, { - "codePostal": "21250", - "codeCommune": "21647", - "libelleAcheminement": "TRUGNY", - "nomCommune": "TRUGNY" + "codePostal": "44680", + "codeCommune": "44178", + "libelleAcheminement": "ST MARS DE COUTAIS", + "nomCommune": "ST MARS DE COUTAIS" }, { - "codePostal": "21490", - "codeCommune": "21657", - "libelleAcheminement": "VAROIS ET CHAIGNOT", - "nomCommune": "VAROIS ET CHAIGNOT" + "codePostal": "44850", + "codeCommune": "44179", + "libelleAcheminement": "ST MARS DU DESERT", + "nomCommune": "ST MARS DU DESERT" }, { - "codePostal": "21260", - "codeCommune": "21667", - "libelleAcheminement": "VERONNES", - "nomCommune": "VERONNES" + "codePostal": "44540", + "codeCommune": "44180", + "libelleAcheminement": "VALLONS DE L ERDRE", + "nomCommune": "VALLONS DE L ERDRE" }, { - "codePostal": "21330", - "codeCommune": "21671", - "libelleAcheminement": "VERTAULT", - "nomCommune": "VERTAULT" + "codePostal": "44540", + "codeCommune": "44180", + "libelleAcheminement": "VALLONS DE L ERDRE", + "nomCommune": "VALLONS DE L ERDRE" }, { - "codePostal": "21350", - "codeCommune": "21672", - "libelleAcheminement": "VESVRES", - "nomCommune": "VESVRES" + "codePostal": "44350", + "codeCommune": "44183", + "libelleAcheminement": "ST MOLF", + "nomCommune": "ST MOLF" }, { - "codePostal": "21540", - "codeCommune": "21679", - "libelleAcheminement": "VIEILMOULIN", - "nomCommune": "VIEILMOULIN" + "codePostal": "44310", + "codeCommune": "44188", + "libelleAcheminement": "ST PHILBERT DE GRAND LIEU", + "nomCommune": "ST PHILBERT DE GRAND LIEU" }, { - "codePostal": "21310", - "codeCommune": "21682", - "libelleAcheminement": "VIEVIGNE", - "nomCommune": "VIEVIGNE" + "codePostal": "44590", + "codeCommune": "44197", + "libelleAcheminement": "SION LES MINES", + "nomCommune": "SION LES MINES" }, { - "codePostal": "21700", - "codeCommune": "21688", - "libelleAcheminement": "VILLARS FONTAINE", - "nomCommune": "VILLARS FONTAINE" + "codePostal": "44390", + "codeCommune": "44205", + "libelleAcheminement": "LES TOUCHES", + "nomCommune": "LES TOUCHES" }, { - "codePostal": "21350", - "codeCommune": "21690", - "libelleAcheminement": "VILLEBERNY", - "nomCommune": "VILLEBERNY" + "codePostal": "44170", + "codeCommune": "44208", + "libelleAcheminement": "TREFFIEUX", + "nomCommune": "TREFFIEUX" }, { - "codePostal": "21450", - "codeCommune": "21695", - "libelleAcheminement": "LA VILLENEUVE LES CONVERS", - "nomCommune": "LA VILLENEUVE LES CONVERS" + "codePostal": "44110", + "codeCommune": "44218", + "libelleAcheminement": "VILLEPOT", + "nomCommune": "VILLEPOT" }, { - "codePostal": "21400", - "codeCommune": "21700", - "libelleAcheminement": "VILLERS PATRAS", - "nomCommune": "VILLERS PATRAS" + "codePostal": "44522", + "codeCommune": "44222", + "libelleAcheminement": "LA ROCHE BLANCHE", + "nomCommune": "LA ROCHE BLANCHE" }, { - "codePostal": "21130", - "codeCommune": "21701", - "libelleAcheminement": "VILLERS ROTIN", - "nomCommune": "VILLERS ROTIN" + "codePostal": "45230", + "codeCommune": "45002", + "libelleAcheminement": "AILLANT SUR MILLERON", + "nomCommune": "AILLANT SUR MILLERON" }, { - "codePostal": "22140", - "codeCommune": "22004", - "libelleAcheminement": "BEGARD", - "nomCommune": "BEGARD" + "codePostal": "45410", + "codeCommune": "45008", + "libelleAcheminement": "ARTENAY", + "nomCommune": "ARTENAY" }, { - "codePostal": "22170", - "codeCommune": "22011", - "libelleAcheminement": "BOQUEHO", - "nomCommune": "BOQUEHO" + "codePostal": "45300", + "codeCommune": "45012", + "libelleAcheminement": "AUDEVILLE", + "nomCommune": "AUDEVILLE" }, { - "codePostal": "22390", - "codeCommune": "22013", - "libelleAcheminement": "BOURBRIAC", - "nomCommune": "BOURBRIAC" + "codePostal": "45480", + "codeCommune": "45015", + "libelleAcheminement": "AUTRUY SUR JUINE", + "nomCommune": "AUTRUY SUR JUINE" }, { - "codePostal": "22170", - "codeCommune": "22019", - "libelleAcheminement": "BRINGOLO", - "nomCommune": "BRINGOLO" + "codePostal": "45130", + "codeCommune": "45024", + "libelleAcheminement": "BAULE", + "nomCommune": "BAULE" }, { - "codePostal": "22480", - "codeCommune": "22029", - "libelleAcheminement": "CANIHUEL", - "nomCommune": "CANIHUEL" + "codePostal": "45270", + "codeCommune": "45031", + "libelleAcheminement": "BELLEGARDE", + "nomCommune": "BELLEGARDE" }, { - "codePostal": "22160", - "codeCommune": "22031", - "libelleAcheminement": "CARNOET", - "nomCommune": "CARNOET" + "codePostal": "45390", + "codeCommune": "45033", + "libelleAcheminement": "BOESSES", + "nomCommune": "BOESSES" }, { - "codePostal": "22630", - "codeCommune": "22035", - "libelleAcheminement": "LES CHAMPS GERAUX", - "nomCommune": "LES CHAMPS GERAUX" + "codePostal": "45290", + "codeCommune": "45036", + "libelleAcheminement": "BOISMORAND", + "nomCommune": "BOISMORAND" }, { - "codePostal": "22400", - "codeCommune": "22044", - "libelleAcheminement": "COETMIEUX", - "nomCommune": "COETMIEUX" + "codePostal": "45290", + "codeCommune": "45036", + "libelleAcheminement": "BOISMORAND", + "nomCommune": "BOISMORAND" }, { - "codePostal": "22330", - "codeCommune": "22046", - "libelleAcheminement": "LE MENE", - "nomCommune": "LE MENE" + "codePostal": "45300", + "codeCommune": "45038", + "libelleAcheminement": "BONDAROY", + "nomCommune": "BONDAROY" }, { - "codePostal": "22330", - "codeCommune": "22046", - "libelleAcheminement": "LE MENE", - "nomCommune": "LE MENE" + "codePostal": "45340", + "codeCommune": "45041", + "libelleAcheminement": "BORDEAUX EN GATINAIS", + "nomCommune": "BORDEAUX EN GATINAIS" }, { - "codePostal": "22330", - "codeCommune": "22046", - "libelleAcheminement": "LE MENE", - "nomCommune": "LE MENE" + "codePostal": "45140", + "codeCommune": "45046", + "libelleAcheminement": "BOULAY LES BARRES", + "nomCommune": "BOULAY LES BARRES" }, { - "codePostal": "22330", - "codeCommune": "22046", - "libelleAcheminement": "LE MENE", - "nomCommune": "LE MENE" + "codePostal": "45460", + "codeCommune": "45049", + "libelleAcheminement": "BOUZY LA FORET", + "nomCommune": "BOUZY LA FORET" }, { - "codePostal": "22320", - "codeCommune": "22047", - "libelleAcheminement": "CORLAY", - "nomCommune": "CORLAY" + "codePostal": "45250", + "codeCommune": "45053", + "libelleAcheminement": "BRIARE", + "nomCommune": "BRIARE" }, { - "codePostal": "22130", - "codeCommune": "22048", - "libelleAcheminement": "CORSEUL", - "nomCommune": "CORSEUL" + "codePostal": "45120", + "codeCommune": "45068", + "libelleAcheminement": "CHALETTE SUR LOING", + "nomCommune": "CHALETTE SUR LOING" }, { - "codePostal": "22130", - "codeCommune": "22049", - "libelleAcheminement": "CREHEN", - "nomCommune": "CREHEN" + "codePostal": "45320", + "codeCommune": "45073", + "libelleAcheminement": "CHANTECOQ", + "nomCommune": "CHANTECOQ" }, { - "codePostal": "22800", - "codeCommune": "22059", - "libelleAcheminement": "LE FOEIL", - "nomCommune": "LE FOEIL" + "codePostal": "45210", + "codeCommune": "45076", + "libelleAcheminement": "LA CHAPELLE ST SEPULCRE", + "nomCommune": "LA CHAPELLE ST SEPULCRE" }, { - "codePostal": "22110", - "codeCommune": "22061", - "libelleAcheminement": "GLOMEL", - "nomCommune": "GLOMEL" + "codePostal": "45110", + "codeCommune": "45082", + "libelleAcheminement": "CHATEAUNEUF SUR LOIRE", + "nomCommune": "CHATEAUNEUF SUR LOIRE" }, { - "codePostal": "22290", - "codeCommune": "22063", - "libelleAcheminement": "GOMMENEC H", - "nomCommune": "GOMMENEC H" + "codePostal": "45480", + "codeCommune": "45086", + "libelleAcheminement": "CHATILLON LE ROI", + "nomCommune": "CHATILLON LE ROI" }, { - "codePostal": "22570", - "codeCommune": "22064", - "libelleAcheminement": "GOUAREC", - "nomCommune": "GOUAREC" + "codePostal": "45430", + "codeCommune": "45089", + "libelleAcheminement": "CHECY", + "nomCommune": "CHECY" }, { - "codePostal": "22350", - "codeCommune": "22071", - "libelleAcheminement": "GUITTE", - "nomCommune": "GUITTE" + "codePostal": "45700", + "codeCommune": "45092", + "libelleAcheminement": "CHEVILLON SUR HUILLARD", + "nomCommune": "CHEVILLON SUR HUILLARD" }, { - "codePostal": "22550", - "codeCommune": "22076", - "libelleAcheminement": "HENANBIHEN", - "nomCommune": "HENANBIHEN" + "codePostal": "45210", + "codeCommune": "45094", + "libelleAcheminement": "CHEVRY SOUS LE BIGNON", + "nomCommune": "CHEVRY SOUS LE BIGNON" }, { - "codePostal": "22270", - "codeCommune": "22084", - "libelleAcheminement": "JUGON LES LACS COMMUNE NOUVELLE", - "nomCommune": "JUGON LES LACS COMMUNE NOUVELLE" + "codePostal": "45370", + "codeCommune": "45098", + "libelleAcheminement": "CLERY ST ANDRE", + "nomCommune": "CLERY ST ANDRE" }, { - "codePostal": "22290", - "codeCommune": "22108", - "libelleAcheminement": "LANLEFF", - "nomCommune": "LANLEFF" + "codePostal": "45490", + "codeCommune": "45103", + "libelleAcheminement": "CORBEILLES", + "nomCommune": "CORBEILLES" }, { - "codePostal": "22580", - "codeCommune": "22109", - "libelleAcheminement": "LANLOUP", - "nomCommune": "LANLOUP" + "codePostal": "45700", + "codeCommune": "45105", + "libelleAcheminement": "CORTRAT", + "nomCommune": "CORTRAT" }, { - "codePostal": "22420", - "codeCommune": "22119", - "libelleAcheminement": "LANVELLEC", - "nomCommune": "LANVELLEC" + "codePostal": "45260", + "codeCommune": "45107", + "libelleAcheminement": "COUDROY", + "nomCommune": "COUDROY" }, { - "codePostal": "22810", - "codeCommune": "22129", - "libelleAcheminement": "LOC ENVEL", - "nomCommune": "LOC ENVEL" + "codePostal": "45190", + "codeCommune": "45116", + "libelleAcheminement": "CRAVANT", + "nomCommune": "CRAVANT" }, { - "codePostal": "22160", - "codeCommune": "22132", - "libelleAcheminement": "LOHUEC", - "nomCommune": "LOHUEC" + "codePostal": "45300", + "codeCommune": "45119", + "libelleAcheminement": "DADONVILLE", + "nomCommune": "DADONVILLE" }, { - "codePostal": "22600", - "codeCommune": "22136", - "libelleAcheminement": "LOUDEAC", - "nomCommune": "LOUDEAC" + "codePostal": "45130", + "codeCommune": "45134", + "libelleAcheminement": "EPIEDS EN BEAUCE", + "nomCommune": "EPIEDS EN BEAUCE" }, { - "codePostal": "22640", - "codeCommune": "22140", - "libelleAcheminement": "LA MALHOURE", - "nomCommune": "LA MALHOURE" + "codePostal": "45320", + "codeCommune": "45136", + "libelleAcheminement": "ERVAUVILLE", + "nomCommune": "ERVAUVILLE" }, { - "codePostal": "22450", - "codeCommune": "22141", - "libelleAcheminement": "MANTALLOT", - "nomCommune": "MANTALLOT" + "codePostal": "45210", + "codeCommune": "45145", + "libelleAcheminement": "FERRIERES EN GATINAIS", + "nomCommune": "FERRIERES EN GATINAIS" }, { - "codePostal": "22230", - "codeCommune": "22147", - "libelleAcheminement": "MERDRIGNAC", - "nomCommune": "MERDRIGNAC" + "codePostal": "45500", + "codeCommune": "45155", + "libelleAcheminement": "GIEN", + "nomCommune": "GIEN" }, { - "codePostal": "22200", - "codeCommune": "22150", - "libelleAcheminement": "LE MERZER", - "nomCommune": "LE MERZER" + "codePostal": "45390", + "codeCommune": "45159", + "libelleAcheminement": "GRANGERMONT", + "nomCommune": "GRANGERMONT" }, { - "codePostal": "22600", - "codeCommune": "22155", - "libelleAcheminement": "LA MOTTE", - "nomCommune": "LA MOTTE" + "codePostal": "45450", + "codeCommune": "45168", + "libelleAcheminement": "INGRANNES", + "nomCommune": "INGRANNES" }, { - "codePostal": "22530", - "codeCommune": "22158", - "libelleAcheminement": "GUERLEDAN", - "nomCommune": "GUERLEDAN" + "codePostal": "45300", + "codeCommune": "45177", + "libelleAcheminement": "LAAS", + "nomCommune": "LAAS" }, { - "codePostal": "22200", - "codeCommune": "22161", - "libelleAcheminement": "PABU", - "nomCommune": "PABU" + "codePostal": "45330", + "codeCommune": "45191", + "libelleAcheminement": "LE MALESHERBOIS", + "nomCommune": "LE MALESHERBOIS" }, { - "codePostal": "22710", - "codeCommune": "22166", - "libelleAcheminement": "PENVENAN", - "nomCommune": "PENVENAN" + "codePostal": "45330", + "codeCommune": "45191", + "libelleAcheminement": "LE MALESHERBOIS", + "nomCommune": "LE MALESHERBOIS" }, { - "codePostal": "22700", - "codeCommune": "22168", - "libelleAcheminement": "PERROS GUIREC", - "nomCommune": "PERROS GUIREC" + "codePostal": "45430", + "codeCommune": "45194", + "libelleAcheminement": "MARDIE", + "nomCommune": "MARDIE" }, { - "codePostal": "22940", - "codeCommune": "22171", - "libelleAcheminement": "PLAINTEL", - "nomCommune": "PLAINTEL" + "codePostal": "45760", + "codeCommune": "45197", + "libelleAcheminement": "MARIGNY LES USAGES", + "nomCommune": "MARIGNY LES USAGES" }, { - "codePostal": "22240", - "codeCommune": "22179", - "libelleAcheminement": "FREHEL", - "nomCommune": "FREHEL" + "codePostal": "45300", + "codeCommune": "45198", + "libelleAcheminement": "MARSAINVILLIERS", + "nomCommune": "MARSAINVILLIERS" }, { - "codePostal": "22170", - "codeCommune": "22182", - "libelleAcheminement": "PLELO", - "nomCommune": "PLELO" + "codePostal": "45210", + "codeCommune": "45201", + "libelleAcheminement": "MERINVILLE", + "nomCommune": "MERINVILLE" }, { - "codePostal": "22210", - "codeCommune": "22183", - "libelleAcheminement": "PLEMET", - "nomCommune": "PLEMET" + "codePostal": "45270", + "codeCommune": "45205", + "libelleAcheminement": "MEZIERES EN GATINAIS", + "nomCommune": "MEZIERES EN GATINAIS" }, { - "codePostal": "22150", - "codeCommune": "22184", - "libelleAcheminement": "PLEMY", - "nomCommune": "PLEMY" + "codePostal": "45340", + "codeCommune": "45215", + "libelleAcheminement": "MONTLIARD", + "nomCommune": "MONTLIARD" }, { - "codePostal": "22190", - "codeCommune": "22187", - "libelleAcheminement": "PLERIN", - "nomCommune": "PLERIN" + "codePostal": "45700", + "codeCommune": "45216", + "libelleAcheminement": "MORMANT SUR VERNISSON", + "nomCommune": "MORMANT SUR VERNISSON" }, { - "codePostal": "22740", - "codeCommune": "22196", - "libelleAcheminement": "PLEUDANIEL", - "nomCommune": "PLEUDANIEL" + "codePostal": "45290", + "codeCommune": "45218", + "libelleAcheminement": "LE MOULINET SUR SOLIN", + "nomCommune": "LE MOULINET SUR SOLIN" }, { - "codePostal": "22690", - "codeCommune": "22197", - "libelleAcheminement": "PLEUDIHEN SUR RANCE", - "nomCommune": "PLEUDIHEN SUR RANCE" + "codePostal": "45270", + "codeCommune": "45219", + "libelleAcheminement": "MOULON", + "nomCommune": "MOULON" }, { - "codePostal": "22560", - "codeCommune": "22198", - "libelleAcheminement": "PLEUMEUR BODOU", - "nomCommune": "PLEUMEUR BODOU" + "codePostal": "45260", + "codeCommune": "45230", + "libelleAcheminement": "NOYERS", + "nomCommune": "NOYERS" }, { - "codePostal": "22560", - "codeCommune": "22198", - "libelleAcheminement": "PLEUMEUR BODOU", - "nomCommune": "PLEUMEUR BODOU" + "codePostal": "45160", + "codeCommune": "45232", + "libelleAcheminement": "OLIVET", + "nomCommune": "OLIVET" }, { - "codePostal": "22130", - "codeCommune": "22200", - "libelleAcheminement": "PLEVEN", - "nomCommune": "PLEVEN" + "codePostal": "45570", + "codeCommune": "45244", + "libelleAcheminement": "OUZOUER SUR LOIRE", + "nomCommune": "OUZOUER SUR LOIRE" }, { - "codePostal": "22620", - "codeCommune": "22210", - "libelleAcheminement": "PLOUBAZLANEC", - "nomCommune": "PLOUBAZLANEC" + "codePostal": "45250", + "codeCommune": "45245", + "libelleAcheminement": "OUZOUER SUR TREZEE", + "nomCommune": "OUZOUER SUR TREZEE" }, { - "codePostal": "22440", - "codeCommune": "22215", - "libelleAcheminement": "PLOUFRAGAN", - "nomCommune": "PLOUFRAGAN" + "codePostal": "45300", + "codeCommune": "45246", + "libelleAcheminement": "PANNECIERES", + "nomCommune": "PANNECIERES" }, { - "codePostal": "22410", - "codeCommune": "22232", - "libelleAcheminement": "PLOURHAN", - "nomCommune": "PLOURHAN" + "codePostal": "45210", + "codeCommune": "45250", + "libelleAcheminement": "PERS EN GATINAIS", + "nomCommune": "PERS EN GATINAIS" }, { - "codePostal": "22160", - "codeCommune": "22243", - "libelleAcheminement": "PLUSQUELLEC", - "nomCommune": "PLUSQUELLEC" + "codePostal": "45290", + "codeCommune": "45257", + "libelleAcheminement": "PRESSIGNY LES PINS", + "nomCommune": "PRESSIGNY LES PINS" }, { - "codePostal": "22140", - "codeCommune": "22245", - "libelleAcheminement": "PLUZUNET", - "nomCommune": "PLUZUNET" + "codePostal": "45300", + "codeCommune": "45260", + "libelleAcheminement": "RAMOULU", + "nomCommune": "RAMOULU" }, { - "codePostal": "22390", - "codeCommune": "22249", - "libelleAcheminement": "PONT MELVEZ", - "nomCommune": "PONT MELVEZ" + "codePostal": "45470", + "codeCommune": "45261", + "libelleAcheminement": "REBRECHIEN", + "nomCommune": "REBRECHIEN" }, { - "codePostal": "22590", - "codeCommune": "22251", - "libelleAcheminement": "PORDIC", - "nomCommune": "PORDIC" + "codePostal": "45600", + "codeCommune": "45268", + "libelleAcheminement": "ST AIGNAN LE JAILLARD", + "nomCommune": "ST AIGNAN LE JAILLARD" }, { - "codePostal": "22210", - "codeCommune": "22255", - "libelleAcheminement": "LA PRENESSAYE", - "nomCommune": "LA PRENESSAYE" + "codePostal": "45140", + "codeCommune": "45285", + "libelleAcheminement": "ST JEAN DE LA RUELLE", + "nomCommune": "ST JEAN DE LA RUELLE" }, { - "codePostal": "22630", - "codeCommune": "22263", - "libelleAcheminement": "LE QUIOU", - "nomCommune": "LE QUIOU" + "codePostal": "45340", + "codeCommune": "45288", + "libelleAcheminement": "ST LOUP DES VIGNES", + "nomCommune": "ST LOUP DES VIGNES" }, { - "codePostal": "22450", - "codeCommune": "22264", - "libelleAcheminement": "LA ROCHE JAUDY", - "nomCommune": "LA ROCHE JAUDY" + "codePostal": "45110", + "codeCommune": "45290", + "libelleAcheminement": "ST MARTIN D ABBAT", + "nomCommune": "ST MARTIN D ABBAT" }, { - "codePostal": "22480", - "codeCommune": "22284", - "libelleAcheminement": "ST CONNAN", - "nomCommune": "ST CONNAN" + "codePostal": "45230", + "codeCommune": "45292", + "libelleAcheminement": "ST MAURICE SUR AVEYRON", + "nomCommune": "ST MAURICE SUR AVEYRON" }, { - "codePostal": "22400", - "codeCommune": "22286", - "libelleAcheminement": "ST DENOUAL", - "nomCommune": "ST DENOUAL" + "codePostal": "45600", + "codeCommune": "45297", + "libelleAcheminement": "ST PERE SUR LOIRE", + "nomCommune": "ST PERE SUR LOIRE" }, { - "codePostal": "22480", - "codeCommune": "22294", - "libelleAcheminement": "ST GILLES PLIGEAUX", - "nomCommune": "ST GILLES PLIGEAUX" + "codePostal": "45770", + "codeCommune": "45302", + "libelleAcheminement": "SARAN", + "nomCommune": "SARAN" }, { - "codePostal": "22510", - "codeCommune": "22296", - "libelleAcheminement": "ST GLEN", - "nomCommune": "ST GLEN" + "codePostal": "45530", + "codeCommune": "45305", + "libelleAcheminement": "SEICHEBRIERES", + "nomCommune": "SEICHEBRIERES" }, { - "codePostal": "22100", - "codeCommune": "22299", - "libelleAcheminement": "ST HELEN", - "nomCommune": "ST HELEN" + "codePostal": "45210", + "codeCommune": "45307", + "libelleAcheminement": "LA SELLE SUR LE BIED", + "nomCommune": "LA SELLE SUR LE BIED" }, { - "codePostal": "22170", - "codeCommune": "22304", - "libelleAcheminement": "ST JEAN KERDANIEL", - "nomCommune": "ST JEAN KERDANIEL" + "codePostal": "45410", + "codeCommune": "45313", + "libelleAcheminement": "SOUGY", + "nomCommune": "SOUGY" }, { - "codePostal": "22350", - "codeCommune": "22305", - "libelleAcheminement": "ST JOUAN DE L ISLE", - "nomCommune": "ST JOUAN DE L ISLE" + "codePostal": "45450", + "codeCommune": "45314", + "libelleAcheminement": "SULLY LA CHAPELLE", + "nomCommune": "SULLY LA CHAPELLE" }, { - "codePostal": "22980", - "codeCommune": "22318", - "libelleAcheminement": "ST MICHEL DE PLELAN", - "nomCommune": "ST MICHEL DE PLELAN" + "codePostal": "45420", + "codeCommune": "45323", + "libelleAcheminement": "THOU", + "nomCommune": "THOU" }, { - "codePostal": "22700", - "codeCommune": "22324", - "libelleAcheminement": "ST QUAY PERROS", - "nomCommune": "ST QUAY PERROS" + "codePostal": "45470", + "codeCommune": "45327", + "libelleAcheminement": "TRAINOU", + "nomCommune": "TRAINOU" }, { - "codePostal": "22100", - "codeCommune": "22327", - "libelleAcheminement": "ST SAMSON SUR RANCE", - "nomCommune": "ST SAMSON SUR RANCE" + "codePostal": "45410", + "codeCommune": "45330", + "libelleAcheminement": "TRINAY", + "nomCommune": "TRINAY" }, { - "codePostal": "22160", - "codeCommune": "22328", - "libelleAcheminement": "ST SERVAIS", - "nomCommune": "ST SERVAIS" + "codePostal": "45290", + "codeCommune": "45332", + "libelleAcheminement": "VARENNES CHANGY", + "nomCommune": "VARENNES CHANGY" }, { - "codePostal": "22230", - "codeCommune": "22333", - "libelleAcheminement": "ST VRAN", - "nomCommune": "ST VRAN" + "codePostal": "45270", + "codeCommune": "45339", + "libelleAcheminement": "VILLEMOUTIERS", + "nomCommune": "VILLEMOUTIERS" }, { - "codePostal": "22220", - "codeCommune": "22347", - "libelleAcheminement": "TREDARZEC", - "nomCommune": "TREDARZEC" + "codePostal": "45300", + "codeCommune": "45347", + "libelleAcheminement": "VRIGNY", + "nomCommune": "VRIGNY" }, { - "codePostal": "22340", - "codeCommune": "22351", - "libelleAcheminement": "TREFFRIN", - "nomCommune": "TREFFRIN" + "codePostal": "46140", + "codeCommune": "46001", + "libelleAcheminement": "ALBAS", + "nomCommune": "ALBAS" }, { - "codePostal": "22540", - "codeCommune": "22354", - "libelleAcheminement": "TREGLAMUS", - "nomCommune": "TREGLAMUS" + "codePostal": "46500", + "codeCommune": "46002", + "libelleAcheminement": "ALBIAC", + "nomCommune": "ALBIAC" }, { - "codePostal": "22660", - "codeCommune": "22363", - "libelleAcheminement": "TRELEVERN", - "nomCommune": "TRELEVERN" + "codePostal": "46500", + "codeCommune": "46003", + "libelleAcheminement": "ALVIGNAC", + "nomCommune": "ALVIGNAC" }, { - "codePostal": "22290", - "codeCommune": "22375", - "libelleAcheminement": "TRESSIGNAUX", - "nomCommune": "TRESSIGNAUX" + "codePostal": "46400", + "codeCommune": "46011", + "libelleAcheminement": "AUTOIRE", + "nomCommune": "AUTOIRE" }, { - "codePostal": "22460", - "codeCommune": "22384", - "libelleAcheminement": "UZEL PRES L OUST", - "nomCommune": "UZEL" + "codePostal": "46120", + "codeCommune": "46012", + "libelleAcheminement": "AYNAC", + "nomCommune": "AYNAC" }, { - "codePostal": "23210", - "codeCommune": "23011", - "libelleAcheminement": "AULON", - "nomCommune": "AULON" + "codePostal": "46140", + "codeCommune": "46022", + "libelleAcheminement": "BELAYE", + "nomCommune": "BELAYE" }, { - "codePostal": "23260", - "codeCommune": "23017", - "libelleAcheminement": "BASVILLE", - "nomCommune": "BASVILLE" + "codePostal": "46230", + "codeCommune": "46023", + "libelleAcheminement": "BELFORT DU QUERCY", + "nomCommune": "BELFORT DU QUERCY" }, { - "codePostal": "23200", - "codeCommune": "23024", - "libelleAcheminement": "BLESSAC", - "nomCommune": "BLESSAC" + "codePostal": "46130", + "codeCommune": "46024", + "libelleAcheminement": "BELMONT BRETENOUX", + "nomCommune": "BELMONT BRETENOUX" }, { - "codePostal": "23400", - "codeCommune": "23030", - "libelleAcheminement": "BOURGANEUF", - "nomCommune": "BOURGANEUF" + "codePostal": "46230", + "codeCommune": "46026", + "libelleAcheminement": "BELMONT STE FOI", + "nomCommune": "BELMONT STE FOI" }, { - "codePostal": "23170", - "codeCommune": "23035", - "libelleAcheminement": "BUDELIERE", - "nomCommune": "BUDELIERE" + "codePostal": "46110", + "codeCommune": "46028", + "libelleAcheminement": "BETAILLE", + "nomCommune": "BETAILLE" }, { - "codePostal": "23320", - "codeCommune": "23036", - "libelleAcheminement": "BUSSIERE DUNOISE", - "nomCommune": "BUSSIERE DUNOISE" + "codePostal": "46500", + "codeCommune": "46030", + "libelleAcheminement": "BIO", + "nomCommune": "BIO" }, { - "codePostal": "23800", - "codeCommune": "23039", - "libelleAcheminement": "LA CELLE DUNOISE", - "nomCommune": "LA CELLE DUNOISE" + "codePostal": "46150", + "codeCommune": "46032", + "libelleAcheminement": "BOISSIERES", + "nomCommune": "BOISSIERES" }, { - "codePostal": "23220", - "codeCommune": "23044", - "libelleAcheminement": "CHAMBON STE CROIX", - "nomCommune": "CHAMBON STE CROIX" + "codePostal": "46330", + "codeCommune": "46040", + "libelleAcheminement": "CABRERETS", + "nomCommune": "CABRERETS" }, { - "codePostal": "23170", - "codeCommune": "23045", - "libelleAcheminement": "CHAMBON SUR VOUEIZE", - "nomCommune": "CHAMBON SUR VOUEIZE" + "codePostal": "46140", + "codeCommune": "46062", + "libelleAcheminement": "CASTELFRANC", + "nomCommune": "CASTELFRANC" }, { - "codePostal": "23240", - "codeCommune": "23047", - "libelleAcheminement": "CHAMBORAND", - "nomCommune": "CHAMBORAND" + "codePostal": "46170", + "codeCommune": "46063", + "libelleAcheminement": "CASTELNAU MONTRATIER STE ALAUZIE", + "nomCommune": "CASTELNAU MONTRATIER STE ALAUZIE" }, { - "codePostal": "23270", - "codeCommune": "23057", - "libelleAcheminement": "CHATELUS MALVALEIX", - "nomCommune": "CHATELUS MALVALEIX" + "codePostal": "46230", + "codeCommune": "46070", + "libelleAcheminement": "CIEURAC", + "nomCommune": "CIEURAC" }, { - "codePostal": "23250", - "codeCommune": "23060", - "libelleAcheminement": "CHAVANAT", - "nomCommune": "CHAVANAT" + "codePostal": "46360", + "codeCommune": "46079", + "libelleAcheminement": "CRAS", + "nomCommune": "CRAS" }, { - "codePostal": "23500", - "codeCommune": "23063", - "libelleAcheminement": "CLAIRAVAUX", - "nomCommune": "CLAIRAVAUX" + "codePostal": "46230", + "codeCommune": "46082", + "libelleAcheminement": "CREMPS", + "nomCommune": "CREMPS" }, { - "codePostal": "23100", - "codeCommune": "23067", - "libelleAcheminement": "LA COURTINE", - "nomCommune": "LA COURTINE" + "codePostal": "46600", + "codeCommune": "46083", + "libelleAcheminement": "CRESSENSAC SARRAZAC", + "nomCommune": "CRESSENSAC SARRAZAC" }, { - "codePostal": "23140", - "codeCommune": "23068", - "libelleAcheminement": "CRESSAT", - "nomCommune": "CRESSAT" + "codePostal": "46340", + "codeCommune": "46087", + "libelleAcheminement": "DEGAGNAC", + "nomCommune": "DEGAGNAC" }, { - "codePostal": "23260", - "codeCommune": "23069", - "libelleAcheminement": "CROCQ", - "nomCommune": "CROCQ" + "codePostal": "46140", + "codeCommune": "46088", + "libelleAcheminement": "DOUELLE", + "nomCommune": "DOUELLE" }, { - "codePostal": "23350", - "codeCommune": "23089", - "libelleAcheminement": "GENOUILLAC", - "nomCommune": "GENOUILLAC" + "codePostal": "46130", + "codeCommune": "46097", + "libelleAcheminement": "ESTAL", + "nomCommune": "ESTAL" }, { - "codePostal": "23340", - "codeCommune": "23090", - "libelleAcheminement": "GENTIOUX PIGEROLLES", - "nomCommune": "GENTIOUX PIGEROLLES" + "codePostal": "46300", + "codeCommune": "46098", + "libelleAcheminement": "FAJOLES", + "nomCommune": "FAJOLES" }, { - "codePostal": "23230", - "codeCommune": "23093", - "libelleAcheminement": "GOUZON", - "nomCommune": "GOUZON" + "codePostal": "46320", + "codeCommune": "46104", + "libelleAcheminement": "FLAUJAC GARE", + "nomCommune": "FLAUJAC GARE" }, { - "codePostal": "23140", - "codeCommune": "23100", - "libelleAcheminement": "JARNAGES", - "nomCommune": "JARNAGES" + "codePostal": "46230", + "codeCommune": "46109", + "libelleAcheminement": "FONTANES", + "nomCommune": "FONTANES" }, { - "codePostal": "23600", - "codeCommune": "23104", - "libelleAcheminement": "LAVAUFRANCHE", - "nomCommune": "LAVAUFRANCHE" + "codePostal": "46310", + "codeCommune": "46113", + "libelleAcheminement": "FRAYSSINET", + "nomCommune": "FRAYSSINET" }, { - "codePostal": "23150", - "codeCommune": "23105", - "libelleAcheminement": "LAVAVEIX LES MINES", - "nomCommune": "LAVAVEIX LES MINES" + "codePostal": "46600", + "codeCommune": "46118", + "libelleAcheminement": "GIGNAC", + "nomCommune": "GIGNAC" }, { - "codePostal": "23150", - "codeCommune": "23107", - "libelleAcheminement": "LEPINAS", - "nomCommune": "LEPINAS" + "codePostal": "46250", + "codeCommune": "46120", + "libelleAcheminement": "GINDOU", + "nomCommune": "GINDOU" }, { - "codePostal": "23600", - "codeCommune": "23108", - "libelleAcheminement": "LEYRAT", - "nomCommune": "LEYRAT" + "codePostal": "46300", + "codeCommune": "46127", + "libelleAcheminement": "GOURDON", + "nomCommune": "GOURDON" }, { - "codePostal": "23360", - "codeCommune": "23112", - "libelleAcheminement": "LOURDOUEIX ST PIERRE", - "nomCommune": "LOURDOUEIX ST PIERRE" + "codePostal": "46150", + "codeCommune": "46134", + "libelleAcheminement": "LES JUNIES", + "nomCommune": "LES JUNIES" }, { - "codePostal": "23170", - "codeCommune": "23114", - "libelleAcheminement": "LUSSAT", - "nomCommune": "LUSSAT" + "codePostal": "46150", + "codeCommune": "46136", + "libelleAcheminement": "LABASTIDE DU VERT", + "nomCommune": "LABASTIDE DU VERT" }, { - "codePostal": "23700", - "codeCommune": "23116", - "libelleAcheminement": "MAINSAT", - "nomCommune": "MAINSAT" + "codePostal": "46240", + "codeCommune": "46138", + "libelleAcheminement": "COEUR DE CAUSSE", + "nomCommune": "COEUR DE CAUSSE" }, { - "codePostal": "23800", - "codeCommune": "23117", - "libelleAcheminement": "MAISON FEYNE", - "nomCommune": "MAISON FEYNE" + "codePostal": "46240", + "codeCommune": "46138", + "libelleAcheminement": "COEUR DE CAUSSE", + "nomCommune": "COEUR DE CAUSSE" }, { - "codePostal": "23400", - "codeCommune": "23133", - "libelleAcheminement": "MONTBOUCHER", - "nomCommune": "MONTBOUCHER" + "codePostal": "46200", + "codeCommune": "46144", + "libelleAcheminement": "LACAVE", + "nomCommune": "LACAVE" }, { - "codePostal": "23800", - "codeCommune": "23141", - "libelleAcheminement": "NAILLAT", - "nomCommune": "NAILLAT" + "codePostal": "46400", + "codeCommune": "46146", + "libelleAcheminement": "LADIRAT", + "nomCommune": "LADIRAT" }, { - "codePostal": "23200", - "codeCommune": "23142", - "libelleAcheminement": "NEOUX", - "nomCommune": "NEOUX" + "codePostal": "46090", + "codeCommune": "46149", + "libelleAcheminement": "LAMAGDELAINE", + "nomCommune": "LAMAGDELAINE" }, { - "codePostal": "23300", - "codeCommune": "23143", - "libelleAcheminement": "NOTH", - "nomCommune": "NOTH" + "codePostal": "46200", + "codeCommune": "46153", + "libelleAcheminement": "LANZAC", + "nomCommune": "LANZAC" }, { - "codePostal": "23140", - "codeCommune": "23149", - "libelleAcheminement": "PARSAC RIMONDEIX", - "nomCommune": "PARSAC RIMONDEIX" + "codePostal": "46090", + "codeCommune": "46156", + "libelleAcheminement": "BELLEFONT LA RAUZE", + "nomCommune": "BELLEFONT LA RAUZE" }, { - "codePostal": "23700", - "codeCommune": "23164", - "libelleAcheminement": "ROUGNAT", - "nomCommune": "ROUGNAT" + "codePostal": "46400", + "codeCommune": "46159", + "libelleAcheminement": "LATOUILLE LENTILLAC", + "nomCommune": "LATOUILLE LENTILLAC" }, { - "codePostal": "23000", - "codeCommune": "23170", - "libelleAcheminement": "SAVENNES", - "nomCommune": "SAVENNES" + "codePostal": "46210", + "codeCommune": "46161", + "libelleAcheminement": "LAURESSES", + "nomCommune": "LAURESSES" }, { - "codePostal": "23190", - "codeCommune": "23190", - "libelleAcheminement": "ST DOMET", - "nomCommune": "ST DOMET" + "codePostal": "46320", + "codeCommune": "46176", + "libelleAcheminement": "LIVERNON", + "nomCommune": "LIVERNON" }, { - "codePostal": "23000", - "codeCommune": "23195", - "libelleAcheminement": "ST FIEL", - "nomCommune": "ST FIEL" + "codePostal": "46100", + "codeCommune": "46180", + "libelleAcheminement": "LUNAN", + "nomCommune": "LUNAN" }, { - "codePostal": "23250", - "codeCommune": "23197", - "libelleAcheminement": "ST GEORGES LA POUGE", - "nomCommune": "ST GEORGES LA POUGE" + "codePostal": "46240", + "codeCommune": "46181", + "libelleAcheminement": "LUNEGARDE", + "nomCommune": "LUNEGARDE" }, { - "codePostal": "23160", - "codeCommune": "23199", - "libelleAcheminement": "ST GERMAIN BEAUPRE", - "nomCommune": "ST GERMAIN BEAUPRE" + "codePostal": "46600", + "codeCommune": "46185", + "libelleAcheminement": "MARTEL", + "nomCommune": "MARTEL" }, { - "codePostal": "23160", - "codeCommune": "23199", - "libelleAcheminement": "ST GERMAIN BEAUPRE", - "nomCommune": "ST GERMAIN BEAUPRE" + "codePostal": "46250", + "codeCommune": "46200", + "libelleAcheminement": "MONTCLERA", + "nomCommune": "MONTCLERA" }, { - "codePostal": "23200", - "codeCommune": "23210", - "libelleAcheminement": "ST MAIXANT", - "nomCommune": "ST MAIXANT" + "codePostal": "46800", + "codeCommune": "46201", + "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", + "nomCommune": "MONTCUQ EN QUERCY BLANC" }, { - "codePostal": "23460", - "codeCommune": "23216", - "libelleAcheminement": "ST MARTIN CHATEAU", - "nomCommune": "ST MARTIN CHATEAU" + "codePostal": "46240", + "codeCommune": "46204", + "libelleAcheminement": "MONTFAUCON", + "nomCommune": "MONTFAUCON" }, { - "codePostal": "23480", - "codeCommune": "23222", - "libelleAcheminement": "ST MICHEL DE VEISSE", - "nomCommune": "ST MICHEL DE VEISSE" + "codePostal": "46800", + "codeCommune": "46206", + "libelleAcheminement": "MONTLAUZUN", + "nomCommune": "MONTLAUZUN" }, { - "codePostal": "23100", - "codeCommune": "23224", - "libelleAcheminement": "ST ORADOUX DE CHIROUZE", - "nomCommune": "ST ORADOUX DE CHIROUZE" + "codePostal": "46270", + "codeCommune": "46207", + "libelleAcheminement": "MONTREDON", + "nomCommune": "MONTREDON" }, { - "codePostal": "23260", - "codeCommune": "23225", - "libelleAcheminement": "ST ORADOUX PRES CROCQ", - "nomCommune": "ST ORADOUX PRES CROCQ" + "codePostal": "46150", + "codeCommune": "46211", + "libelleAcheminement": "NUZEJOULS", + "nomCommune": "NUZEJOULS" }, { - "codePostal": "23150", - "codeCommune": "23229", - "libelleAcheminement": "ST PARDOUX LES CARDS", - "nomCommune": "ST PARDOUX LES CARDS" + "codePostal": "46140", + "codeCommune": "46214", + "libelleAcheminement": "PARNAC", + "nomCommune": "PARNAC" }, { - "codePostal": "23300", - "codeCommune": "23258", - "libelleAcheminement": "VAREILLES", - "nomCommune": "VAREILLES" + "codePostal": "46350", + "codeCommune": "46215", + "libelleAcheminement": "PAYRAC", + "nomCommune": "PAYRAC" }, { - "codePostal": "23170", - "codeCommune": "23261", - "libelleAcheminement": "VIERSAT", - "nomCommune": "VIERSAT" + "codePostal": "46170", + "codeCommune": "46217", + "libelleAcheminement": "PERN", + "nomCommune": "PERN" }, { - "codePostal": "23140", - "codeCommune": "23262", - "libelleAcheminement": "VIGEVILLE", - "nomCommune": "VIGEVILLE" + "codePostal": "46270", + "codeCommune": "46226", + "libelleAcheminement": "PRENDEIGNES", + "nomCommune": "PRENDEIGNES" }, { - "codePostal": "24600", - "codeCommune": "24007", - "libelleAcheminement": "ALLEMANS", - "nomCommune": "ALLEMANS" + "codePostal": "46130", + "codeCommune": "46228", + "libelleAcheminement": "PRUDHOMAT", + "nomCommune": "PRUDHOMAT" }, { - "codePostal": "24290", - "codeCommune": "24014", - "libelleAcheminement": "AUBAS", - "nomCommune": "AUBAS" + "codePostal": "46340", + "codeCommune": "46234", + "libelleAcheminement": "RAMPOUX", + "nomCommune": "RAMPOUX" }, { - "codePostal": "24290", - "codeCommune": "24018", - "libelleAcheminement": "AURIAC DU PERIGORD", - "nomCommune": "AURIAC DU PERIGORD" + "codePostal": "46200", + "codeCommune": "46239", + "libelleAcheminement": "LE ROC", + "nomCommune": "LE ROC" }, { - "codePostal": "24330", - "codeCommune": "24026", - "libelleAcheminement": "BASSILLAC ET AUBEROCHE", - "nomCommune": "BASSILLAC ET AUBEROCHE" + "codePostal": "46210", + "codeCommune": "46244", + "libelleAcheminement": "SABADEL LATRONQUIERE", + "nomCommune": "SABADEL LATRONQUIERE" }, { - "codePostal": "24440", - "codeCommune": "24028", - "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", - "nomCommune": "BEAUMONTOIS EN PERIGORD" + "codePostal": "46250", + "codeCommune": "46250", + "libelleAcheminement": "ST CAPRAIS", + "nomCommune": "ST CAPRAIS" }, { - "codePostal": "24440", - "codeCommune": "24028", - "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", - "nomCommune": "BEAUMONTOIS EN PERIGORD" + "codePostal": "46210", + "codeCommune": "46255", + "libelleAcheminement": "ST CIRGUES", + "nomCommune": "ST CIRGUES" }, { - "codePostal": "24440", - "codeCommune": "24028", - "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", - "nomCommune": "BEAUMONTOIS EN PERIGORD" + "codePostal": "46330", + "codeCommune": "46256", + "libelleAcheminement": "ST CIRQ LAPOPIE", + "nomCommune": "ST CIRQ LAPOPIE" }, { - "codePostal": "24120", - "codeCommune": "24030", - "libelleAcheminement": "BEAUREGARD DE TERRASSON", - "nomCommune": "BEAUREGARD DE TERRASSON" + "codePostal": "46300", + "codeCommune": "46259", + "libelleAcheminement": "ST CLAIR", + "nomCommune": "ST CLAIR" }, { - "codePostal": "24140", - "codeCommune": "24031", - "libelleAcheminement": "BEAUREGARD ET BASSAC", - "nomCommune": "BEAUREGARD ET BASSAC" + "codePostal": "46800", + "codeCommune": "46262", + "libelleAcheminement": "LENDOU EN QUERCY", + "nomCommune": "LENDOU EN QUERCY" }, { - "codePostal": "24140", - "codeCommune": "24034", - "libelleAcheminement": "BELEYMAS", - "nomCommune": "BELEYMAS" + "codePostal": "46800", + "codeCommune": "46262", + "libelleAcheminement": "LENDOU EN QUERCY", + "nomCommune": "LENDOU EN QUERCY" }, { - "codePostal": "24170", - "codeCommune": "24035", - "libelleAcheminement": "PAYS DE BELVES", - "nomCommune": "PAYS DE BELVES" + "codePostal": "46310", + "codeCommune": "46267", + "libelleAcheminement": "ST GERMAIN DU BEL AIR", + "nomCommune": "ST GERMAIN DU BEL AIR" }, { - "codePostal": "24100", - "codeCommune": "24037", - "libelleAcheminement": "BERGERAC", - "nomCommune": "BERGERAC" + "codePostal": "46090", + "codeCommune": "46268", + "libelleAcheminement": "ST GERY VERS", + "nomCommune": "ST GERY VERS" }, { - "codePostal": "24220", - "codeCommune": "24040", - "libelleAcheminement": "BEYNAC ET CAZENAC", - "nomCommune": "BEYNAC ET CAZENAC" + "codePostal": "46330", + "codeCommune": "46268", + "libelleAcheminement": "ST GERY VERS", + "nomCommune": "ST GERY VERS" }, { - "codePostal": "24560", - "codeCommune": "24045", - "libelleAcheminement": "BOISSE", - "nomCommune": "BOISSE" + "codePostal": "46270", + "codeCommune": "46272", + "libelleAcheminement": "ST JEAN MIRABEL", + "nomCommune": "ST JEAN MIRABEL" }, { - "codePostal": "24390", - "codeCommune": "24046", - "libelleAcheminement": "BOISSEUILH", - "nomCommune": "BOISSEUILH" + "codePostal": "46400", + "codeCommune": "46286", + "libelleAcheminement": "ST PAUL DE VERN", + "nomCommune": "ST PAUL DE VERN" }, { - "codePostal": "24480", - "codeCommune": "24052", - "libelleAcheminement": "BOUILLAC", - "nomCommune": "BOUILLAC" + "codePostal": "46100", + "codeCommune": "46288", + "libelleAcheminement": "ST PERDOUX", + "nomCommune": "ST PERDOUX" }, { - "codePostal": "24750", - "codeCommune": "24053", - "libelleAcheminement": "BOULAZAC ISLE MANOIRE", - "nomCommune": "BOULAZAC ISLE MANOIRE" + "codePostal": "46300", + "codeCommune": "46290", + "libelleAcheminement": "ST PROJET", + "nomCommune": "ST PROJET" }, { - "codePostal": "24110", - "codeCommune": "24061", - "libelleAcheminement": "BOURROU", - "nomCommune": "BOURROU" + "codePostal": "46320", + "codeCommune": "46292", + "libelleAcheminement": "ST SIMON", + "nomCommune": "ST SIMON" }, { - "codePostal": "24310", - "codeCommune": "24064", - "libelleAcheminement": "BRANTOME EN PERIGORD", - "nomCommune": "BRANTOME EN PERIGORD" + "codePostal": "46160", + "codeCommune": "46294", + "libelleAcheminement": "ST SULPICE", + "nomCommune": "ST SULPICE" }, { - "codePostal": "24480", - "codeCommune": "24068", - "libelleAcheminement": "LE BUISSON DE CADOUIN", - "nomCommune": "LE BUISSON DE CADOUIN" + "codePostal": "46360", + "codeCommune": "46303", + "libelleAcheminement": "SENAILLAC LAUZES", + "nomCommune": "SENAILLAC LAUZES" }, { - "codePostal": "24480", - "codeCommune": "24068", - "libelleAcheminement": "LE BUISSON DE CADOUIN", - "nomCommune": "LE BUISSON DE CADOUIN" + "codePostal": "46700", + "codeCommune": "46305", + "libelleAcheminement": "SERIGNAC", + "nomCommune": "SERIGNAC" }, { - "codePostal": "24170", - "codeCommune": "24084", - "libelleAcheminement": "CARVES", - "nomCommune": "CARVES" + "codePostal": "46320", + "codeCommune": "46306", + "libelleAcheminement": "SONAC", + "nomCommune": "SONAC" }, { - "codePostal": "24150", - "codeCommune": "24088", - "libelleAcheminement": "CAUSE DE CLERANS", - "nomCommune": "CAUSE DE CLERANS" + "codePostal": "46240", + "codeCommune": "46310", + "libelleAcheminement": "SOULOMES", + "nomCommune": "SOULOMES" }, { - "codePostal": "24600", - "codeCommune": "24090", - "libelleAcheminement": "CELLES", - "nomCommune": "CELLES" + "codePostal": "46120", + "codeCommune": "46314", + "libelleAcheminement": "TERROU", + "nomCommune": "TERROU" }, { - "codePostal": "24530", - "codeCommune": "24096", - "libelleAcheminement": "CHAMPAGNAC DE BELAIR", - "nomCommune": "CHAMPAGNAC DE BELAIR" + "codePostal": "46500", + "codeCommune": "46317", + "libelleAcheminement": "THEGRA", + "nomCommune": "THEGRA" }, { - "codePostal": "24290", - "codeCommune": "24106", - "libelleAcheminement": "LA CHAPELLE AUBAREIL", - "nomCommune": "LA CHAPELLE AUBAREIL" + "codePostal": "46120", + "codeCommune": "46318", + "libelleAcheminement": "THEMINES", + "nomCommune": "THEMINES" }, { - "codePostal": "24320", - "codeCommune": "24110", - "libelleAcheminement": "LA CHAPELLE MONTABOURLET", - "nomCommune": "LA CHAPELLE MONTABOURLET" + "codePostal": "46300", + "codeCommune": "46334", + "libelleAcheminement": "LE VIGAN", + "nomCommune": "LE VIGAN" }, { - "codePostal": "24300", - "codeCommune": "24111", - "libelleAcheminement": "LA CHAPELLE MONTMOREAU", - "nomCommune": "LA CHAPELLE MONTMOREAU" + "codePostal": "46090", + "codeCommune": "46335", + "libelleAcheminement": "VILLESEQUE", + "nomCommune": "VILLESEQUE" }, { - "codePostal": "24390", - "codeCommune": "24113", - "libelleAcheminement": "LA CHAPELLE ST JEAN", - "nomCommune": "LA CHAPELLE ST JEAN" + "codePostal": "46200", + "codeCommune": "46337", + "libelleAcheminement": "MAYRAC", + "nomCommune": "MAYRAC" }, { - "codePostal": "24600", - "codeCommune": "24114", - "libelleAcheminement": "CHASSAIGNES", - "nomCommune": "CHASSAIGNES" + "codePostal": "47800", + "codeCommune": "47005", + "libelleAcheminement": "ALLEMANS DU DROPT", + "nomCommune": "ALLEMANS DU DROPT" }, { - "codePostal": "24460", - "codeCommune": "24115", - "libelleAcheminement": "CHATEAU L EVEQUE", - "nomCommune": "CHATEAU L EVEQUE" + "codePostal": "47700", + "codeCommune": "47010", + "libelleAcheminement": "ANTAGNAC", + "nomCommune": "ANTAGNAC" }, { - "codePostal": "24120", - "codeCommune": "24116", - "libelleAcheminement": "CHATRES", - "nomCommune": "CHATRES" + "codePostal": "47230", + "codeCommune": "47021", + "libelleAcheminement": "BARBASTE", + "nomCommune": "BARBASTE" }, { - "codePostal": "24520", - "codeCommune": "24140", - "libelleAcheminement": "COURS DE PILE", - "nomCommune": "COURS DE PILE" + "codePostal": "47200", + "codeCommune": "47024", + "libelleAcheminement": "BEAUPUY", + "nomCommune": "BEAUPUY" }, { - "codePostal": "24320", - "codeCommune": "24141", - "libelleAcheminement": "COUTURES", - "nomCommune": "COUTURES" + "codePostal": "47260", + "codeCommune": "47042", + "libelleAcheminement": "BRUGNAC", + "nomCommune": "BRUGNAC" }, { - "codePostal": "24220", - "codeCommune": "24142", - "libelleAcheminement": "COUX ET BIGAROQUE MOUZENS", - "nomCommune": "COUX ET BIGAROQUE MOUZENS" + "codePostal": "47330", + "codeCommune": "47044", + "libelleAcheminement": "CAHUZAC", + "nomCommune": "CAHUZAC" }, { - "codePostal": "24640", - "codeCommune": "24147", - "libelleAcheminement": "CUBJAC AUVEZERE VAL D ANS", - "nomCommune": "CUBJAC AUVEZERE VAL D ANS" + "codePostal": "47340", + "codeCommune": "47050", + "libelleAcheminement": "CASSIGNAS", + "nomCommune": "CASSIGNAS" }, { - "codePostal": "24500", - "codeCommune": "24167", - "libelleAcheminement": "EYMET", - "nomCommune": "EYMET" + "codePostal": "47160", + "codeCommune": "47058", + "libelleAcheminement": "CAUBEYRES", + "nomCommune": "CAUBEYRES" }, { - "codePostal": "24130", - "codeCommune": "24182", - "libelleAcheminement": "LE FLEIX", - "nomCommune": "LE FLEIX" + "codePostal": "47120", + "codeCommune": "47059", + "libelleAcheminement": "CAUBON ST SAUVEUR", + "nomCommune": "CAUBON ST SAUVEUR" }, { - "codePostal": "24540", - "codeCommune": "24195", - "libelleAcheminement": "GAUGEAC", - "nomCommune": "GAUGEAC" + "codePostal": "47470", + "codeCommune": "47062", + "libelleAcheminement": "CAUZAC", + "nomCommune": "CAUZAC" }, { - "codePostal": "24350", - "codeCommune": "24200", - "libelleAcheminement": "GRAND BRASSAC", - "nomCommune": "GRAND BRASSAC" + "codePostal": "47330", + "codeCommune": "47063", + "libelleAcheminement": "CAVARC", + "nomCommune": "CAVARC" }, { - "codePostal": "24250", - "codeCommune": "24207", - "libelleAcheminement": "GROLEJAC", - "nomCommune": "GROLEJAC" + "codePostal": "47130", + "codeCommune": "47066", + "libelleAcheminement": "CLERMONT DESSOUS", + "nomCommune": "CLERMONT DESSOUS" }, { - "codePostal": "24300", - "codeCommune": "24209", - "libelleAcheminement": "HAUTEFAYE", - "nomCommune": "HAUTEFAYE" + "codePostal": "47600", + "codeCommune": "47090", + "libelleAcheminement": "ESPIENS", + "nomCommune": "ESPIENS" }, { - "codePostal": "24400", - "codeCommune": "24211", - "libelleAcheminement": "ISSAC", - "nomCommune": "ISSAC" + "codePostal": "47700", + "codeCommune": "47093", + "libelleAcheminement": "FARGUES SUR OURBISE", + "nomCommune": "FARGUES SUR OURBISE" }, { - "codePostal": "24140", - "codeCommune": "24213", - "libelleAcheminement": "JAURE", - "nomCommune": "JAURE" + "codePostal": "47260", + "codeCommune": "47099", + "libelleAcheminement": "FONGRAVE", + "nomCommune": "FONGRAVE" }, { - "codePostal": "24340", - "codeCommune": "24221", - "libelleAcheminement": "RUDEAU LADOSSE", - "nomCommune": "RUDEAU LADOSSE" + "codePostal": "47140", + "codeCommune": "47105", + "libelleAcheminement": "FRESPECH", + "nomCommune": "FRESPECH" }, { - "codePostal": "24520", - "codeCommune": "24224", - "libelleAcheminement": "LAMONZIE MONTASTRUC", - "nomCommune": "LAMONZIE MONTASTRUC" + "codePostal": "47500", + "codeCommune": "47106", + "libelleAcheminement": "FUMEL", + "nomCommune": "FUMEL" }, { - "codePostal": "24170", - "codeCommune": "24230", - "libelleAcheminement": "LARZAC", - "nomCommune": "LARZAC" + "codePostal": "47400", + "codeCommune": "47112", + "libelleAcheminement": "GRATELOUP ST GAYRAND", + "nomCommune": "GRATELOUP ST GAYRAND" }, { - "codePostal": "24350", - "codeCommune": "24243", - "libelleAcheminement": "LISLE", - "nomCommune": "LISLE" + "codePostal": "47250", + "codeCommune": "47114", + "libelleAcheminement": "GREZET CAVAGNAN", + "nomCommune": "GREZET CAVAGNAN" }, { - "codePostal": "24550", - "codeCommune": "24245", - "libelleAcheminement": "LOUBEJAC", - "nomCommune": "LOUBEJAC" + "codePostal": "47340", + "codeCommune": "47117", + "libelleAcheminement": "HAUTEFAGE LA TOUR", + "nomCommune": "HAUTEFAGE LA TOUR" }, { - "codePostal": "24300", - "codeCommune": "24248", - "libelleAcheminement": "LUSSAS ET NONTRONNEAU", - "nomCommune": "LUSSAS ET NONTRONNEAU" + "codePostal": "47180", + "codeCommune": "47120", + "libelleAcheminement": "JUSIX", + "nomCommune": "JUSIX" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "47150", + "codeCommune": "47123", + "libelleAcheminement": "LACAPELLE BIRON", + "nomCommune": "LACAPELLE BIRON" }, { - "codePostal": "24540", - "codeCommune": "24257", - "libelleAcheminement": "MARSALES", - "nomCommune": "MARSALES" + "codePostal": "47150", + "codeCommune": "47124", + "libelleAcheminement": "LACAUSSADE", + "nomCommune": "LACAUSSADE" }, { - "codePostal": "24140", - "codeCommune": "24259", - "libelleAcheminement": "EYRAUD CREMPSE MAURENS", - "nomCommune": "EYRAUD CREMPSE MAURENS" + "codePostal": "47180", + "codeCommune": "47131", + "libelleAcheminement": "LAGUPIE", + "nomCommune": "LAGUPIE" }, { - "codePostal": "24220", - "codeCommune": "24268", - "libelleAcheminement": "MEYRALS", - "nomCommune": "MEYRALS" + "codePostal": "47330", + "codeCommune": "47132", + "libelleAcheminement": "LALANDUSSE", + "nomCommune": "LALANDUSSE" }, { - "codePostal": "24470", - "codeCommune": "24271", - "libelleAcheminement": "MILHAC DE NONTRON", - "nomCommune": "MILHAC DE NONTRON" + "codePostal": "47800", + "codeCommune": "47136", + "libelleAcheminement": "LAPERCHE", + "nomCommune": "LAPERCHE" }, { - "codePostal": "24560", - "codeCommune": "24278", - "libelleAcheminement": "MONMADALES", - "nomCommune": "MONMADALES" + "codePostal": "47410", + "codeCommune": "47142", + "libelleAcheminement": "LAUZUN", + "nomCommune": "LAUZUN" }, { - "codePostal": "24560", - "codeCommune": "24279", - "libelleAcheminement": "MONMARVES", - "nomCommune": "MONMARVES" + "codePostal": "47120", + "codeCommune": "47151", + "libelleAcheminement": "LOUBES BERNAC", + "nomCommune": "LOUBES BERNAC" }, { - "codePostal": "24700", - "codeCommune": "24297", - "libelleAcheminement": "MOULIN NEUF", - "nomCommune": "MOULIN NEUF" + "codePostal": "47290", + "codeCommune": "47152", + "libelleAcheminement": "LOUGRATTE", + "nomCommune": "LOUGRATTE" }, { - "codePostal": "24590", - "codeCommune": "24301", - "libelleAcheminement": "NADAILLAC", - "nomCommune": "NADAILLAC" + "codePostal": "47380", + "codeCommune": "47182", + "libelleAcheminement": "MONTASTRUC", + "nomCommune": "MONTASTRUC" }, { - "codePostal": "24440", - "codeCommune": "24307", - "libelleAcheminement": "NAUSSANNES", - "nomCommune": "NAUSSANNES" + "codePostal": "47330", + "codeCommune": "47183", + "libelleAcheminement": "MONTAURIOL", + "nomCommune": "MONTAURIOL" }, { - "codePostal": "24660", - "codeCommune": "24312", - "libelleAcheminement": "SANILHAC", - "nomCommune": "SANILHAC" + "codePostal": "47500", + "codeCommune": "47185", + "libelleAcheminement": "MONTAYRAL", + "nomCommune": "MONTAYRAL" }, { - "codePostal": "24410", - "codeCommune": "24316", - "libelleAcheminement": "PARCOUL CHENAUD", - "nomCommune": "PARCOUL CHENAUD" + "codePostal": "47360", + "codeCommune": "47190", + "libelleAcheminement": "MONTPEZAT", + "nomCommune": "MONTPEZAT" }, { - "codePostal": "24210", - "codeCommune": "24324", - "libelleAcheminement": "PEYRIGNAC", - "nomCommune": "PEYRIGNAC" + "codePostal": "47800", + "codeCommune": "47194", + "libelleAcheminement": "MOUSTIER", + "nomCommune": "MOUSTIER" }, { - "codePostal": "24370", - "codeCommune": "24325", - "libelleAcheminement": "PECHS DE L ESPERANCE", - "nomCommune": "PECHS DE L ESPERANCE" + "codePostal": "47440", + "codeCommune": "47198", + "libelleAcheminement": "PAILLOLES", + "nomCommune": "PAILLOLES" }, { - "codePostal": "24150", - "codeCommune": "24338", - "libelleAcheminement": "PRESSIGNAC VICQ", - "nomCommune": "PRESSIGNAC VICQ" + "codePostal": "47150", + "codeCommune": "47202", + "libelleAcheminement": "PAULHIAC", + "nomCommune": "PAULHIAC" }, { - "codePostal": "24160", - "codeCommune": "24339", - "libelleAcheminement": "PREYSSAC D EXCIDEUIL", - "nomCommune": "PREYSSAC D EXCIDEUIL" + "codePostal": "47380", + "codeCommune": "47206", + "libelleAcheminement": "PINEL HAUTERIVE", + "nomCommune": "PINEL HAUTERIVE" }, { - "codePostal": "24130", - "codeCommune": "24340", - "libelleAcheminement": "PRIGONRIEUX", - "nomCommune": "PRIGONRIEUX" + "codePostal": "47480", + "codeCommune": "47209", + "libelleAcheminement": "PONT DU CASSE", + "nomCommune": "PONT DU CASSE" }, { - "codePostal": "24140", - "codeCommune": "24345", - "libelleAcheminement": "QUEYSSAC", - "nomCommune": "QUEYSSAC" + "codePostal": "47700", + "codeCommune": "47212", + "libelleAcheminement": "POUSSIGNAC", + "nomCommune": "POUSSIGNAC" }, { - "codePostal": "24240", - "codeCommune": "24349", - "libelleAcheminement": "RAZAC DE SAUSSIGNAC", - "nomCommune": "RAZAC DE SAUSSIGNAC" + "codePostal": "47340", + "codeCommune": "47228", + "libelleAcheminement": "ST ANTOINE DE FICALBA", + "nomCommune": "ST ANTOINE DE FICALBA" }, { - "codePostal": "24240", - "codeCommune": "24351", - "libelleAcheminement": "RIBAGNAC", - "nomCommune": "RIBAGNAC" + "codePostal": "47120", + "codeCommune": "47229", + "libelleAcheminement": "ST ASTIER", + "nomCommune": "ST ASTIER" }, { - "codePostal": "24580", - "codeCommune": "24356", - "libelleAcheminement": "ROUFFIGNAC ST CERNIN DE REILHAC", - "nomCommune": "ROUFFIGNAC ST CERNIN DE REILHAC" + "codePostal": "47350", + "codeCommune": "47232", + "libelleAcheminement": "ST BARTHELEMY D AGENAIS", + "nomCommune": "ST BARTHELEMY D AGENAIS" }, { - "codePostal": "24170", - "codeCommune": "24360", - "libelleAcheminement": "SAGELAT", - "nomCommune": "SAGELAT" + "codePostal": "47300", + "codeCommune": "47237", + "libelleAcheminement": "STE COLOMBE DE VILLENEUVE", + "nomCommune": "STE COLOMBE DE VILLENEUVE" }, { - "codePostal": "24520", - "codeCommune": "24361", - "libelleAcheminement": "ST AGNE", - "nomCommune": "ST AGNE" + "codePostal": "47380", + "codeCommune": "47239", + "libelleAcheminement": "ST ETIENNE DE FOUGERES", + "nomCommune": "ST ETIENNE DE FOUGERES" }, { - "codePostal": "24510", - "codeCommune": "24362", - "libelleAcheminement": "VAL DE LOUYRE ET CAUDEAU", - "nomCommune": "VAL DE LOUYRE ET CAUDEAU" + "codePostal": "47500", + "codeCommune": "47242", + "libelleAcheminement": "ST FRONT SUR LEMANCE", + "nomCommune": "ST FRONT SUR LEMANCE" }, { - "codePostal": "24120", - "codeCommune": "24364", - "libelleAcheminement": "COLY ST AMAND", - "nomCommune": "COLY ST AMAND" + "codePostal": "47110", + "codeCommune": "47252", + "libelleAcheminement": "STE LIVRADE SUR LOT", + "nomCommune": "STE LIVRADE SUR LOT" }, { - "codePostal": "24410", - "codeCommune": "24376", - "libelleAcheminement": "ST AULAYE PUYMANGOU", - "nomCommune": "ST AULAYE PUYMANGOU" + "codePostal": "47290", + "codeCommune": "47259", + "libelleAcheminement": "ST MAURICE DE LESTAPEL", + "nomCommune": "ST MAURICE DE LESTAPEL" }, { - "codePostal": "24440", - "codeCommune": "24379", - "libelleAcheminement": "ST AVIT SENIEUR", - "nomCommune": "ST AVIT SENIEUR" + "codePostal": "47290", + "codeCommune": "47265", + "libelleAcheminement": "ST PASTOUR", + "nomCommune": "ST PASTOUR" }, { - "codePostal": "24360", - "codeCommune": "24381", - "libelleAcheminement": "ST BARTHELEMY DE BUSSIERE", - "nomCommune": "ST BARTHELEMY DE BUSSIERE" + "codePostal": "47170", + "codeCommune": "47266", + "libelleAcheminement": "ST PE ST SIMON", + "nomCommune": "ST PE ST SIMON" }, { - "codePostal": "24560", - "codeCommune": "24385", - "libelleAcheminement": "ST CERNIN DE LABARDE", - "nomCommune": "ST CERNIN DE LABARDE" + "codePostal": "47340", + "codeCommune": "47273", + "libelleAcheminement": "ST ROBERT", + "nomCommune": "ST ROBERT" }, { - "codePostal": "24260", - "codeCommune": "24388", - "libelleAcheminement": "ST CHAMASSY", - "nomCommune": "ST CHAMASSY" + "codePostal": "47270", + "codeCommune": "47281", + "libelleAcheminement": "ST URCISSE", + "nomCommune": "ST URCISSE" }, { - "codePostal": "24340", - "codeCommune": "24403", - "libelleAcheminement": "ST FELIX DE BOURDEILLES", - "nomCommune": "ST FELIX DE BOURDEILLES" + "codePostal": "47310", + "codeCommune": "47282", + "libelleAcheminement": "ST VINCENT DE LAMONTJOIE", + "nomCommune": "ST VINCENT DE LAMONTJOIE" }, { - "codePostal": "24460", - "codeCommune": "24408", - "libelleAcheminement": "ST FRONT D ALEMPS", - "nomCommune": "ST FRONT D ALEMPS" + "codePostal": "47150", + "codeCommune": "47284", + "libelleAcheminement": "SALLES", + "nomCommune": "SALLES" }, { - "codePostal": "24300", - "codeCommune": "24410", - "libelleAcheminement": "ST FRONT LA RIVIERE", - "nomCommune": "ST FRONT LA RIVIERE" + "codePostal": "47120", + "codeCommune": "47294", + "libelleAcheminement": "SAVIGNAC DE DURAS", + "nomCommune": "SAVIGNAC DE DURAS" }, { - "codePostal": "24300", - "codeCommune": "24411", - "libelleAcheminement": "ST FRONT SUR NIZONNE", - "nomCommune": "ST FRONT SUR NIZONNE" + "codePostal": "47120", + "codeCommune": "47303", + "libelleAcheminement": "SOUMENSAC", + "nomCommune": "SOUMENSAC" }, { - "codePostal": "24590", - "codeCommune": "24412", - "libelleAcheminement": "ST GENIES", - "nomCommune": "ST GENIES" + "codePostal": "47200", + "codeCommune": "47304", + "libelleAcheminement": "TAILLEBOURG", + "nomCommune": "TAILLEBOURG" }, { - "codePostal": "24330", - "codeCommune": "24421", - "libelleAcheminement": "ST GEYRAC", - "nomCommune": "ST GEYRAC" + "codePostal": "47370", + "codeCommune": "47307", + "libelleAcheminement": "THEZAC", + "nomCommune": "THEZAC" }, { - "codePostal": "24190", - "codeCommune": "24424", - "libelleAcheminement": "ST JEAN D ATAUX", - "nomCommune": "ST JEAN D ATAUX" + "codePostal": "47230", + "codeCommune": "47308", + "libelleAcheminement": "THOUARS SUR GARONNE", + "nomCommune": "THOUARS SUR GARONNE" }, { - "codePostal": "24140", - "codeCommune": "24426", - "libelleAcheminement": "ST JEAN D ESTISSAC", - "nomCommune": "ST JEAN D ESTISSAC" + "codePostal": "47380", + "codeCommune": "47309", + "libelleAcheminement": "TOMBEBOEUF", + "nomCommune": "TOMBEBOEUF" }, { - "codePostal": "24370", - "codeCommune": "24432", - "libelleAcheminement": "ST JULIEN DE LAMPON", - "nomCommune": "ST JULIEN DE LAMPON" + "codePostal": "47260", + "codeCommune": "47317", + "libelleAcheminement": "VERTEUIL D AGENAIS", + "nomCommune": "VERTEUIL D AGENAIS" }, { - "codePostal": "24170", - "codeCommune": "24438", - "libelleAcheminement": "ST LAURENT LA VALLEE", - "nomCommune": "ST LAURENT LA VALLEE" + "codePostal": "47230", + "codeCommune": "47318", + "libelleAcheminement": "VIANNE", + "nomCommune": "VIANNE" }, { - "codePostal": "24560", - "codeCommune": "24441", - "libelleAcheminement": "ST LEON D ISSIGEAC", - "nomCommune": "ST LEON D ISSIGEAC" + "codePostal": "47370", + "codeCommune": "47328", + "libelleAcheminement": "ST GEORGES", + "nomCommune": "ST GEORGES" }, { - "codePostal": "24290", - "codeCommune": "24443", - "libelleAcheminement": "ST LEON SUR VEZERE", - "nomCommune": "ST LEON SUR VEZERE" + "codePostal": "48130", + "codeCommune": "48009", + "libelleAcheminement": "PEYRE EN AUBRAC", + "nomCommune": "PEYRE EN AUBRAC" }, { - "codePostal": "24610", - "codeCommune": "24454", - "libelleAcheminement": "ST MARTIN DE GURSON", - "nomCommune": "ST MARTIN DE GURSON" + "codePostal": "48200", + "codeCommune": "48012", + "libelleAcheminement": "LES MONTS VERTS", + "nomCommune": "LES MONTS VERTS" }, { - "codePostal": "24600", - "codeCommune": "24460", - "libelleAcheminement": "ST MEARD DE DRONE", - "nomCommune": "ST MEARD DE DRONE" + "codePostal": "48000", + "codeCommune": "48013", + "libelleAcheminement": "BADAROUX", + "nomCommune": "BADAROUX" }, { - "codePostal": "24380", - "codeCommune": "24468", - "libelleAcheminement": "ST MICHEL DE VILLADEIX", - "nomCommune": "ST MICHEL DE VILLADEIX" + "codePostal": "48000", + "codeCommune": "48016", + "libelleAcheminement": "BALSIEGES", + "nomCommune": "BALSIEGES" }, { - "codePostal": "24530", - "codeCommune": "24474", - "libelleAcheminement": "ST PANCRACE", - "nomCommune": "ST PANCRACE" + "codePostal": "48500", + "codeCommune": "48017", + "libelleAcheminement": "BANASSAC CANILHAC", + "nomCommune": "BANASSAC CANILHAC" }, { - "codePostal": "24470", - "codeCommune": "24479", - "libelleAcheminement": "ST PARDOUX LA RIVIERE", - "nomCommune": "ST PARDOUX LA RIVIERE" + "codePostal": "48000", + "codeCommune": "48018", + "libelleAcheminement": "BARJAC", + "nomCommune": "BARJAC" }, { - "codePostal": "24410", - "codeCommune": "24490", - "libelleAcheminement": "ST PRIVAT EN PERIGORD", - "nomCommune": "ST PRIVAT EN PERIGORD" + "codePostal": "48400", + "codeCommune": "48050", + "libelleAcheminement": "BEDOUES COCURES", + "nomCommune": "BEDOUES COCURES" }, { - "codePostal": "24160", - "codeCommune": "24493", - "libelleAcheminement": "ST RAPHAEL", - "nomCommune": "ST RAPHAEL" + "codePostal": "48110", + "codeCommune": "48067", + "libelleAcheminement": "GABRIAC", + "nomCommune": "GABRIAC" }, { - "codePostal": "24600", - "codeCommune": "24504", - "libelleAcheminement": "ST SULPICE DE ROUMAGNAC", - "nomCommune": "ST SULPICE DE ROUMAGNAC" + "codePostal": "48600", + "codeCommune": "48070", + "libelleAcheminement": "GRANDRIEU", + "nomCommune": "GRANDRIEU" }, { - "codePostal": "24270", - "codeCommune": "24519", - "libelleAcheminement": "SARLANDE", - "nomCommune": "SARLANDE" + "codePostal": "48150", + "codeCommune": "48074", + "libelleAcheminement": "HURES LA PARADE", + "nomCommune": "HURES LA PARADE" }, { - "codePostal": "24420", - "codeCommune": "24521", - "libelleAcheminement": "SARLIAC SUR L ISLE", - "nomCommune": "SARLIAC SUR L ISLE" + "codePostal": "48140", + "codeCommune": "48077", + "libelleAcheminement": "JULIANGES", + "nomCommune": "JULIANGES" }, { - "codePostal": "24260", - "codeCommune": "24524", - "libelleAcheminement": "SAVIGNAC DE MIREMONT", - "nomCommune": "SAVIGNAC DE MIREMONT" + "codePostal": "48250", + "codeCommune": "48086", + "libelleAcheminement": "LUC", + "nomCommune": "LUC" }, { - "codePostal": "24300", - "codeCommune": "24525", - "libelleAcheminement": "SAVIGNAC DE NONTRON", - "nomCommune": "SAVIGNAC DE NONTRON" + "codePostal": "48100", + "codeCommune": "48087", + "libelleAcheminement": "PRINSUEJOLS MALBOUZON", + "nomCommune": "PRINSUEJOLS MALBOUZON" }, { - "codePostal": "24500", - "codeCommune": "24536", - "libelleAcheminement": "SINGLEYRAC", - "nomCommune": "SINGLEYRAC" + "codePostal": "48270", + "codeCommune": "48087", + "libelleAcheminement": "PRINSUEJOLS MALBOUZON", + "nomCommune": "PRINSUEJOLS MALBOUZON" }, { - "codePostal": "24360", - "codeCommune": "24541", - "libelleAcheminement": "SOUDAT", - "nomCommune": "SOUDAT" + "codePostal": "48210", + "codeCommune": "48094", + "libelleAcheminement": "MASSEGROS CAUSSES GORGES", + "nomCommune": "MASSEGROS CAUSSES GORGES" }, { - "codePostal": "24400", - "codeCommune": "24543", - "libelleAcheminement": "SOURZAC", - "nomCommune": "SOURZAC" + "codePostal": "48500", + "codeCommune": "48094", + "libelleAcheminement": "MASSEGROS CAUSSES GORGES", + "nomCommune": "MASSEGROS CAUSSES GORGES" }, { - "codePostal": "24620", - "codeCommune": "24544", - "libelleAcheminement": "TAMNIES", - "nomCommune": "TAMNIES" + "codePostal": "48170", + "codeCommune": "48100", + "libelleAcheminement": "MONTBEL", + "nomCommune": "MONTBEL" }, { - "codePostal": "24390", - "codeCommune": "24545", - "libelleAcheminement": "TEILLOTS", - "nomCommune": "TEILLOTS" + "codePostal": "48310", + "codeCommune": "48106", + "libelleAcheminement": "NOALHAC", + "nomCommune": "NOALHAC" }, { - "codePostal": "24210", - "codeCommune": "24550", - "libelleAcheminement": "THENON", - "nomCommune": "THENON" + "codePostal": "48300", + "codeCommune": "48112", + "libelleAcheminement": "PIERREFICHE", + "nomCommune": "PIERREFICHE" }, { - "codePostal": "24510", - "codeCommune": "24558", - "libelleAcheminement": "TREMOLAT", - "nomCommune": "TREMOLAT" + "codePostal": "48220", + "codeCommune": "48116", + "libelleAcheminement": "PONT DE MONTVERT SUD MONT LOZERE", + "nomCommune": "PONT DE MONTVERT SUD MONT LOZERE" }, { - "codePostal": "24620", - "codeCommune": "24559", - "libelleAcheminement": "TURSAC", - "nomCommune": "TURSAC" + "codePostal": "48100", + "codeCommune": "48124", + "libelleAcheminement": "RECOULES DE FUMAS", + "nomCommune": "RECOULES DE FUMAS" }, { - "codePostal": "24800", - "codeCommune": "24567", - "libelleAcheminement": "VAUNAC", - "nomCommune": "VAUNAC" + "codePostal": "48700", + "codeCommune": "48127", + "libelleAcheminement": "MONTS DE RANDON", + "nomCommune": "MONTS DE RANDON" }, { - "codePostal": "24380", - "codeCommune": "24571", - "libelleAcheminement": "VERGT", - "nomCommune": "VERGT" + "codePostal": "48700", + "codeCommune": "48127", + "libelleAcheminement": "MONTS DE RANDON", + "nomCommune": "MONTS DE RANDON" }, { - "codePostal": "24120", - "codeCommune": "24580", - "libelleAcheminement": "VILLAC", - "nomCommune": "VILLAC" + "codePostal": "48200", + "codeCommune": "48128", + "libelleAcheminement": "RIMEIZE", + "nomCommune": "RIMEIZE" }, { - "codePostal": "25320", - "codeCommune": "25001", - "libelleAcheminement": "ABBANS DESSOUS", - "nomCommune": "ABBANS DESSOUS" + "codePostal": "48300", + "codeCommune": "48129", + "libelleAcheminement": "ROCLES", + "nomCommune": "ROCLES" }, { - "codePostal": "25440", - "codeCommune": "25002", - "libelleAcheminement": "ABBANS DESSUS", - "nomCommune": "ABBANS DESSUS" + "codePostal": "48120", + "codeCommune": "48132", + "libelleAcheminement": "ST ALBAN SUR LIMAGNOLE", + "nomCommune": "ST ALBAN SUR LIMAGNOLE" }, { - "codePostal": "25750", - "codeCommune": "25008", - "libelleAcheminement": "AIBRE", - "nomCommune": "AIBRE" + "codePostal": "48600", + "codeCommune": "48139", + "libelleAcheminement": "ST BONNET LAVAL", + "nomCommune": "ST BONNET LAVAL" }, { - "codePostal": "25300", - "codeCommune": "25012", - "libelleAcheminement": "LES ALLIES", - "nomCommune": "LES ALLIES" + "codePostal": "48210", + "codeCommune": "48146", + "libelleAcheminement": "GORGES DU TARN CAUSSES", + "nomCommune": "GORGES DU TARN CAUSSES" }, { - "codePostal": "25220", - "codeCommune": "25014", - "libelleAcheminement": "AMAGNEY", - "nomCommune": "AMAGNEY" + "codePostal": "48320", + "codeCommune": "48146", + "libelleAcheminement": "GORGES DU TARN CAUSSES", + "nomCommune": "GORGES DU TARN CAUSSES" }, { - "codePostal": "25750", - "codeCommune": "25022", - "libelleAcheminement": "ARCEY", - "nomCommune": "ARCEY" + "codePostal": "48160", + "codeCommune": "48152", + "libelleAcheminement": "VENTALON EN CEVENNES", + "nomCommune": "VENTALON EN CEVENNES" }, { - "codePostal": "25520", - "codeCommune": "25029", - "libelleAcheminement": "AUBONNE", - "nomCommune": "AUBONNE" + "codePostal": "48370", + "codeCommune": "48155", + "libelleAcheminement": "ST GERMAIN DE CALBERTE", + "nomCommune": "ST GERMAIN DE CALBERTE" }, { - "codePostal": "25110", - "codeCommune": "25032", - "libelleAcheminement": "AUTECHAUX", - "nomCommune": "AUTECHAUX" + "codePostal": "48190", + "codeCommune": "48157", + "libelleAcheminement": "STE HELENE", + "nomCommune": "STE HELENE" }, { - "codePostal": "25380", - "codeCommune": "25046", - "libelleAcheminement": "BATTENANS VARIN", - "nomCommune": "BATTENANS VARIN" + "codePostal": "48100", + "codeCommune": "48165", + "libelleAcheminement": "ST LAURENT DE MURET", + "nomCommune": "ST LAURENT DE MURET" }, { - "codePostal": "25550", - "codeCommune": "25048", - "libelleAcheminement": "BAVANS", - "nomCommune": "BAVANS" + "codePostal": "48100", + "codeCommune": "48168", + "libelleAcheminement": "ST LEGER DE PEYRE", + "nomCommune": "ST LEGER DE PEYRE" }, { - "codePostal": "25500", - "codeCommune": "25050", - "libelleAcheminement": "LE BELIEU", - "nomCommune": "LE BELIEU" + "codePostal": "48160", + "codeCommune": "48170", + "libelleAcheminement": "ST MARTIN DE BOUBAUX", + "nomCommune": "ST MARTIN DE BOUBAUX" }, { - "codePostal": "25430", - "codeCommune": "25053", - "libelleAcheminement": "BELVOIR", - "nomCommune": "BELVOIR" + "codePostal": "48170", + "codeCommune": "48182", + "libelleAcheminement": "ST SAUVEUR DE GINESTOUX", + "nomCommune": "ST SAUVEUR DE GINESTOUX" }, { - "codePostal": "25410", - "codeCommune": "25055", - "libelleAcheminement": "BERTHELANGE", - "nomCommune": "BERTHELANGE" + "codePostal": "48340", + "codeCommune": "48192", + "libelleAcheminement": "TRELANS", + "nomCommune": "TRELANS" }, { - "codePostal": "25200", - "codeCommune": "25057", - "libelleAcheminement": "BETHONCOURT", - "nomCommune": "BETHONCOURT" + "codePostal": "48400", + "codeCommune": "48193", + "libelleAcheminement": "VEBRON", + "nomCommune": "VEBRON" }, { - "codePostal": "25640", - "codeCommune": "25065", - "libelleAcheminement": "BLARIANS", - "nomCommune": "BLARIANS" + "codePostal": "49260", + "codeCommune": "49009", + "libelleAcheminement": "ANTOIGNE", + "nomCommune": "ANTOIGNE" }, { - "codePostal": "25150", - "codeCommune": "25082", - "libelleAcheminement": "BOURGUIGNON", - "nomCommune": "BOURGUIGNON" + "codePostal": "49240", + "codeCommune": "49015", + "libelleAcheminement": "AVRILLE", + "nomCommune": "AVRILLE" }, { - "codePostal": "25640", - "codeCommune": "25086", - "libelleAcheminement": "BRAILLANS", - "nomCommune": "BRAILLANS" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "25440", - "codeCommune": "25090", - "libelleAcheminement": "BRERES", - "nomCommune": "BRERES" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "25240", - "codeCommune": "25121", - "libelleAcheminement": "CHAPELLE DES BOIS", - "nomCommune": "CHAPELLE DES BOIS" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "25270", - "codeCommune": "25122", - "libelleAcheminement": "CHAPELLE D HUIN", - "nomCommune": "CHAPELLE D HUIN" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "25140", - "codeCommune": "25127", - "libelleAcheminement": "CHARQUEMONT", - "nomCommune": "CHARQUEMONT" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "25870", - "codeCommune": "25133", - "libelleAcheminement": "CHATILLON LE DUC", - "nomCommune": "CHATILLON LE DUC" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "25440", - "codeCommune": "25143", - "libelleAcheminement": "CHAY", - "nomCommune": "CHAY" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "25620", - "codeCommune": "25152", - "libelleAcheminement": "LA CHEVILLOTTE", - "nomCommune": "LA CHEVILLOTTE" + "codePostal": "49600", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "25330", - "codeCommune": "25155", - "libelleAcheminement": "CLERON", - "nomCommune": "CLERON" + "codePostal": "49600", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "25640", - "codeCommune": "25163", - "libelleAcheminement": "CORCELLE MIESLOT", - "nomCommune": "CORCELLE MIESLOT" + "codePostal": "49390", + "codeCommune": "49045", + "libelleAcheminement": "LA BREILLE LES PINS", + "nomCommune": "LA BREILLE LES PINS" }, { - "codePostal": "25560", - "codeCommune": "25176", - "libelleAcheminement": "COURVIERES", - "nomCommune": "COURVIERES" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "25340", - "codeCommune": "25177", - "libelleAcheminement": "CROSEY LE GRAND", - "nomCommune": "CROSEY LE GRAND" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "25240", - "codeCommune": "25179", - "libelleAcheminement": "LE CROUZET", - "nomCommune": "LE CROUZET" + "codePostal": "49260", + "codeCommune": "49060", + "libelleAcheminement": "BELLEVIGNE LES CHATEAUX", + "nomCommune": "BELLEVIGNE LES CHATEAUX" }, { - "codePostal": "25110", - "codeCommune": "25183", - "libelleAcheminement": "CUSANCE", - "nomCommune": "CUSANCE" + "codePostal": "49220", + "codeCommune": "49064", + "libelleAcheminement": "CHAMBELLAY", + "nomCommune": "CHAMBELLAY" }, { - "codePostal": "25440", - "codeCommune": "25185", - "libelleAcheminement": "CUSSEY SUR LISON", - "nomCommune": "CUSSEY SUR LISON" + "codePostal": "49220", + "codeCommune": "49067", + "libelleAcheminement": "CHENILLE CHAMPTEUSSE", + "nomCommune": "CHENILLE CHAMPTEUSSE" }, { - "codePostal": "25490", - "codeCommune": "25190", - "libelleAcheminement": "DAMPIERRE LES BOIS", - "nomCommune": "DAMPIERRE LES BOIS" + "codePostal": "49270", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "25300", - "codeCommune": "25201", - "libelleAcheminement": "DOMMARTIN", - "nomCommune": "DOMMARTIN" + "codePostal": "49330", + "codeCommune": "49080", + "libelleAcheminement": "LES HAUTS D ANJOU", + "nomCommune": "LES HAUTS D ANJOU" }, { - "codePostal": "25300", - "codeCommune": "25204", - "libelleAcheminement": "DOUBS", - "nomCommune": "DOUBS" + "codePostal": "49290", + "codeCommune": "49082", + "libelleAcheminement": "CHAUDEFONDS SUR LAYON", + "nomCommune": "CHAUDEFONDS SUR LAYON" }, { - "codePostal": "25480", - "codeCommune": "25212", - "libelleAcheminement": "ECOLE VALENTIN", - "nomCommune": "ECOLE VALENTIN" + "codePostal": "49380", + "codeCommune": "49086", + "libelleAcheminement": "TERRANJOU", + "nomCommune": "TERRANJOU" }, { - "codePostal": "25110", - "codeCommune": "25221", - "libelleAcheminement": "ESNANS", - "nomCommune": "ESNANS" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "25620", - "codeCommune": "25222", - "libelleAcheminement": "ETALANS", - "nomCommune": "ETALANS" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "25330", - "codeCommune": "25223", - "libelleAcheminement": "ETERNOZ", - "nomCommune": "ETERNOZ" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "25250", - "codeCommune": "25226", - "libelleAcheminement": "ETRAPPE", - "nomCommune": "ETRAPPE" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "25330", - "codeCommune": "25241", - "libelleAcheminement": "FLAGEY", - "nomCommune": "FLAGEY" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "25640", - "codeCommune": "25242", - "libelleAcheminement": "FLAGEY RIGNEY", - "nomCommune": "FLAGEY RIGNEY" + "codePostal": "49300", + "codeCommune": "49099", + "libelleAcheminement": "CHOLET", + "nomCommune": "CHOLET" }, { - "codePostal": "25190", - "codeCommune": "25244", - "libelleAcheminement": "FLEUREY", - "nomCommune": "FLEUREY" + "codePostal": "49690", + "codeCommune": "49109", + "libelleAcheminement": "CORON", + "nomCommune": "CORON" }, { - "codePostal": "25340", - "codeCommune": "25246", - "libelleAcheminement": "FONTAINE LES CLERVAL", - "nomCommune": "FONTAINE LES CLERVAL" + "codePostal": "49700", + "codeCommune": "49125", + "libelleAcheminement": "DOUE EN ANJOU", + "nomCommune": "DOUE EN ANJOU" }, { - "codePostal": "25250", - "codeCommune": "25264", - "libelleAcheminement": "GEMONVAL", - "nomCommune": "GEMONVAL" + "codePostal": "49700", + "codeCommune": "49125", + "libelleAcheminement": "DOUE EN ANJOU", + "nomCommune": "DOUE EN ANJOU" }, { - "codePostal": "25250", - "codeCommune": "25266", - "libelleAcheminement": "GENEY", - "nomCommune": "GENEY" + "codePostal": "49460", + "codeCommune": "49130", + "libelleAcheminement": "ECUILLE", + "nomCommune": "ECUILLE" }, { - "codePostal": "25510", - "codeCommune": "25268", - "libelleAcheminement": "GERMEFONTAINE", - "nomCommune": "GERMEFONTAINE" + "codePostal": "49250", + "codeCommune": "49138", + "libelleAcheminement": "LES BOIS D ANJOU", + "nomCommune": "LES BOIS D ANJOU" }, { - "codePostal": "25360", - "codeCommune": "25273", - "libelleAcheminement": "GLAMONDANS", - "nomCommune": "GLAMONDANS" + "codePostal": "49220", + "codeCommune": "49155", + "libelleAcheminement": "GREZ NEUVILLE", + "nomCommune": "GREZ NEUVILLE" }, { - "codePostal": "25190", - "codeCommune": "25275", - "libelleAcheminement": "GLERE", - "nomCommune": "GLERE" + "codePostal": "49140", + "codeCommune": "49163", + "libelleAcheminement": "JARZE VILLAGES", + "nomCommune": "JARZE VILLAGES" }, { - "codePostal": "25360", - "codeCommune": "25278", - "libelleAcheminement": "GONSANS", - "nomCommune": "GONSANS" + "codePostal": "49330", + "codeCommune": "49170", + "libelleAcheminement": "JUVARDEIL", + "nomCommune": "JUVARDEIL" }, { - "codePostal": "25570", - "codeCommune": "25285", - "libelleAcheminement": "GRAND COMBE CHATELEU", - "nomCommune": "GRAND COMBE CHATELEU" + "codePostal": "49430", + "codeCommune": "49174", + "libelleAcheminement": "HUILLE LEZIGNE", + "nomCommune": "HUILLE LEZIGNE" }, { - "codePostal": "25790", - "codeCommune": "25296", - "libelleAcheminement": "LES GRAS", - "nomCommune": "LES GRAS" + "codePostal": "49360", + "codeCommune": "49192", + "libelleAcheminement": "MAULEVRIER", + "nomCommune": "MAULEVRIER" }, { - "codePostal": "25390", - "codeCommune": "25301", - "libelleAcheminement": "GUYANS VENNES", - "nomCommune": "GUYANS VENNES" + "codePostal": "49600", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "25680", - "codeCommune": "25310", - "libelleAcheminement": "HUANNE MONTMARTIN", - "nomCommune": "HUANNE MONTMARTIN" + "codePostal": "49600", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "25440", - "codeCommune": "25330", - "libelleAcheminement": "LAVANS QUINGEY", - "nomCommune": "LAVANS QUINGEY" + "codePostal": "49640", + "codeCommune": "49220", + "libelleAcheminement": "MORANNES SUR SARTHE DAUMERAY", + "nomCommune": "MORANNES SUR SARTHE DAUMERAY" }, { - "codePostal": "25270", - "codeCommune": "25334", - "libelleAcheminement": "LEVIER", - "nomCommune": "LEVIER" + "codePostal": "49610", + "codeCommune": "49222", + "libelleAcheminement": "MOZE SUR LOUET", + "nomCommune": "MOZE SUR LOUET" }, { - "codePostal": "25330", - "codeCommune": "25338", - "libelleAcheminement": "LIZINE", - "nomCommune": "LIZINE" + "codePostal": "49680", + "codeCommune": "49224", + "libelleAcheminement": "NEUILLE", + "nomCommune": "NEUILLE" }, { - "codePostal": "25370", - "codeCommune": "25348", - "libelleAcheminement": "LONGEVILLES MONT D OR", - "nomCommune": "LONGEVILLES MONT D OR" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "25390", - "codeCommune": "25349", - "libelleAcheminement": "LORAY", - "nomCommune": "LORAY" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "25160", - "codeCommune": "25361", - "libelleAcheminement": "MALBUISSON", - "nomCommune": "MALBUISSON" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "25160", - "codeCommune": "25362", - "libelleAcheminement": "MALPAS", - "nomCommune": "MALPAS" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "25250", - "codeCommune": "25365", - "libelleAcheminement": "MANCENANS", - "nomCommune": "MANCENANS" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "25120", - "codeCommune": "25366", - "libelleAcheminement": "MANCENANS LIZERNE", - "nomCommune": "MANCENANS LIZERNE" + "codePostal": "49340", + "codeCommune": "49231", + "libelleAcheminement": "NUAILLE", + "nomCommune": "NUAILLE" }, { - "codePostal": "25640", - "codeCommune": "25368", - "libelleAcheminement": "MARCHAUX CHAUDEFONTAINE", - "nomCommune": "MARCHAUX CHAUDEFONTAINE" + "codePostal": "49124", + "codeCommune": "49241", + "libelleAcheminement": "LE PLESSIS GRAMMOIRE", + "nomCommune": "LE PLESSIS GRAMMOIRE" }, { - "codePostal": "25700", - "codeCommune": "25370", - "libelleAcheminement": "MATHAY", - "nomCommune": "MATHAY" + "codePostal": "49290", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "25250", - "codeCommune": "25372", - "libelleAcheminement": "MEDIERE", - "nomCommune": "MEDIERE" + "codePostal": "49410", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "25410", - "codeCommune": "25374", - "libelleAcheminement": "MERCEY LE GRAND", - "nomCommune": "MERCEY LE GRAND" + "codePostal": "49410", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "25480", - "codeCommune": "25381", - "libelleAcheminement": "MISEREY SALINES", - "nomCommune": "MISEREY SALINES" + "codePostal": "49420", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "25680", - "codeCommune": "25384", - "libelleAcheminement": "MONDON", - "nomCommune": "MONDON" + "codePostal": "49350", + "codeCommune": "49261", + "libelleAcheminement": "GENNES VAL DE LOIRE", + "nomCommune": "GENNES VAL DE LOIRE" }, { - "codePostal": "25680", - "codeCommune": "25385", - "libelleAcheminement": "MONTAGNEY SERVIGNEY", - "nomCommune": "MONTAGNEY SERVIGNEY" + "codePostal": "49350", + "codeCommune": "49261", + "libelleAcheminement": "GENNES VAL DE LOIRE", + "nomCommune": "GENNES VAL DE LOIRE" }, { - "codePostal": "25120", - "codeCommune": "25392", - "libelleAcheminement": "MONT DE VOUGNEY", - "nomCommune": "MONT DE VOUGNEY" + "codePostal": "49400", + "codeCommune": "49262", + "libelleAcheminement": "ROU MARSON", + "nomCommune": "ROU MARSON" }, { - "codePostal": "25660", - "codeCommune": "25395", - "libelleAcheminement": "MONTFAUCON", - "nomCommune": "MONTFAUCON" + "codePostal": "49280", + "codeCommune": "49269", + "libelleAcheminement": "ST CHRISTOPHE DU BOIS", + "nomCommune": "ST CHRISTOPHE DU BOIS" }, { - "codePostal": "25500", - "codeCommune": "25403", - "libelleAcheminement": "MONTLEBON", - "nomCommune": "MONTLEBON" + "codePostal": "49170", + "codeCommune": "49284", + "libelleAcheminement": "ST GERMAIN DES PRES", + "nomCommune": "ST GERMAIN DES PRES" }, { - "codePostal": "25660", - "codeCommune": "25406", - "libelleAcheminement": "MONTROND LE CHATEAU", - "nomCommune": "MONTROND LE CHATEAU" + "codePostal": "49230", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "25360", - "codeCommune": "25418", - "libelleAcheminement": "NANCRAY", - "nomCommune": "NANCRAY" + "codePostal": "49450", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "25580", - "codeCommune": "25424", - "libelleAcheminement": "LES PREMIERS SAPINS", - "nomCommune": "LES PREMIERS SAPINS" + "codePostal": "49610", + "codeCommune": "49308", + "libelleAcheminement": "ST MELAINE SUR AUBANCE", + "nomCommune": "ST MELAINE SUR AUBANCE" }, { - "codePostal": "25500", - "codeCommune": "25425", - "libelleAcheminement": "NOEL CERNEUX", - "nomCommune": "NOEL CERNEUX" + "codePostal": "49800", + "codeCommune": "49326", + "libelleAcheminement": "SARRIGNE", + "nomCommune": "SARRIGNE" }, { - "codePostal": "25170", - "codeCommune": "25427", - "libelleAcheminement": "NOIRONTE", - "nomCommune": "NOIRONTE" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "25600", - "codeCommune": "25428", - "libelleAcheminement": "NOMMAY", - "nomCommune": "NOMMAY" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "25410", - "codeCommune": "25438", - "libelleAcheminement": "OSSELLE ROUTELLE", - "nomCommune": "OSSELLE ROUTELLE" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "25520", - "codeCommune": "25440", - "libelleAcheminement": "OUHANS", - "nomCommune": "OUHANS" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "25160", - "codeCommune": "25442", - "libelleAcheminement": "OYE ET PALLET", - "nomCommune": "OYE ET PALLET" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "25440", - "codeCommune": "25443", - "libelleAcheminement": "PALANTINE", - "nomCommune": "PALANTINE" + "codePostal": "49140", + "codeCommune": "49333", + "libelleAcheminement": "SEICHES SUR LE LOIR", + "nomCommune": "SEICHES SUR LE LOIR" }, { - "codePostal": "25870", - "codeCommune": "25444", - "libelleAcheminement": "PALISE", - "nomCommune": "PALISE" + "codePostal": "49140", + "codeCommune": "49334", + "libelleAcheminement": "SERMAISE", + "nomCommune": "SERMAISE" }, { - "codePostal": "25190", - "codeCommune": "25449", - "libelleAcheminement": "PESEUX", - "nomCommune": "PESEUX" + "codePostal": "49700", + "codeCommune": "49359", + "libelleAcheminement": "LES ULMES", + "nomCommune": "LES ULMES" }, { - "codePostal": "25240", - "codeCommune": "25451", - "libelleAcheminement": "PETITE CHAUX", - "nomCommune": "PETITE CHAUX" + "codePostal": "49400", + "codeCommune": "49362", + "libelleAcheminement": "VARRAINS", + "nomCommune": "VARRAINS" }, { - "codePostal": "25300", - "codeCommune": "25462", - "libelleAcheminement": "PONTARLIER", - "nomCommune": "PONTARLIER" + "codePostal": "49260", + "codeCommune": "49364", + "libelleAcheminement": "VAUDELNAY", + "nomCommune": "VAUDELNAY" }, { - "codePostal": "25640", - "codeCommune": "25468", - "libelleAcheminement": "POULIGNEY LUSANS", - "nomCommune": "POULIGNEY LUSANS" + "codePostal": "49340", + "codeCommune": "49371", + "libelleAcheminement": "VEZINS", + "nomCommune": "VEZINS" }, { - "codePostal": "25250", - "codeCommune": "25470", - "libelleAcheminement": "LA PRETIERE", - "nomCommune": "LA PRETIERE" + "codePostal": "50660", + "codeCommune": "50015", + "libelleAcheminement": "ANNOVILLE", + "nomCommune": "ANNOVILLE" }, { - "codePostal": "25430", - "codeCommune": "25478", - "libelleAcheminement": "RANDEVILLERS", - "nomCommune": "RANDEVILLERS" + "codePostal": "50500", + "codeCommune": "50024", + "libelleAcheminement": "AUXAIS", + "nomCommune": "AUXAIS" }, { - "codePostal": "25160", - "codeCommune": "25486", - "libelleAcheminement": "REMORAY BOUJEONS", - "nomCommune": "REMORAY BOUJEONS" + "codePostal": "50000", + "codeCommune": "50034", + "libelleAcheminement": "BAUDRE", + "nomCommune": "BAUDRE" }, { - "codePostal": "25240", - "codeCommune": "25501", - "libelleAcheminement": "RONDEFONTAINE", - "nomCommune": "RONDEFONTAINE" + "codePostal": "50320", + "codeCommune": "50038", + "libelleAcheminement": "BEAUCHAMPS", + "nomCommune": "BEAUCHAMPS" }, { - "codePostal": "25680", - "codeCommune": "25505", - "libelleAcheminement": "ROUGEMONT", - "nomCommune": "ROUGEMONT" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "25520", - "codeCommune": "25517", - "libelleAcheminement": "ST GORGON MAIN", - "nomCommune": "ST GORGON MAIN" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "25190", - "codeCommune": "25519", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "25550", - "codeCommune": "25521", - "libelleAcheminement": "ST JULIEN LES MONTBELIARD", - "nomCommune": "ST JULIEN LES MONTBELIARD" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "25260", - "codeCommune": "25524", - "libelleAcheminement": "ST MAURICE COLOMBIER", - "nomCommune": "ST MAURICE COLOMBIER" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "25160", - "codeCommune": "25525", - "libelleAcheminement": "ST POINT LAC", - "nomCommune": "ST POINT LAC" + "codePostal": "50460", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "25430", - "codeCommune": "25529", - "libelleAcheminement": "SANCEY", - "nomCommune": "SANCEY" + "codePostal": "50810", + "codeCommune": "50046", + "libelleAcheminement": "BERIGNY", + "nomCommune": "BERIGNY" }, { - "codePostal": "25170", - "codeCommune": "25536", - "libelleAcheminement": "SAUVAGNEY", - "nomCommune": "SAUVAGNEY" + "codePostal": "50800", + "codeCommune": "50060", + "libelleAcheminement": "LA BLOUTIERE", + "nomCommune": "LA BLOUTIERE" }, { - "codePostal": "25290", - "codeCommune": "25537", - "libelleAcheminement": "SCEY MAISIERES", - "nomCommune": "SCEY MAISIERES" + "codePostal": "50110", + "codeCommune": "50077", + "libelleAcheminement": "BRETTEVILLE", + "nomCommune": "BRETTEVILLE" }, { - "codePostal": "25270", - "codeCommune": "25541", - "libelleAcheminement": "SEPTFONTAINES", - "nomCommune": "SEPTFONTAINES" + "codePostal": "50260", + "codeCommune": "50082", + "libelleAcheminement": "BRICQUEBEC EN COTENTIN", + "nomCommune": "BRICQUEBEC EN COTENTIN" }, { - "codePostal": "25770", - "codeCommune": "25542", - "libelleAcheminement": "SERRE LES SAPINS", - "nomCommune": "SERRE LES SAPINS" + "codePostal": "50700", + "codeCommune": "50087", + "libelleAcheminement": "BRIX", + "nomCommune": "BRIX" }, { - "codePostal": "25330", - "codeCommune": "25545", - "libelleAcheminement": "SILLEY AMANCEY", - "nomCommune": "SILLEY AMANCEY" + "codePostal": "50640", + "codeCommune": "50090", + "libelleAcheminement": "BUAIS LES MONTS", + "nomCommune": "BUAIS LES MONTS" }, { - "codePostal": "25110", - "codeCommune": "25546", - "libelleAcheminement": "SILLEY BLEFOND", - "nomCommune": "SILLEY BLEFOND" + "codePostal": "50750", + "codeCommune": "50095", + "libelleAcheminement": "CANISY", + "nomCommune": "CANISY" }, { - "codePostal": "25600", - "codeCommune": "25547", - "libelleAcheminement": "SOCHAUX", - "nomCommune": "SOCHAUX" + "codePostal": "50330", + "codeCommune": "50096", + "libelleAcheminement": "CANTELOUP", + "nomCommune": "CANTELOUP" }, { - "codePostal": "25190", - "codeCommune": "25551", - "libelleAcheminement": "SOULCE CERNAY", - "nomCommune": "SOULCE CERNAY" + "codePostal": "50500", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "25250", - "codeCommune": "25552", - "libelleAcheminement": "SOURANS", - "nomCommune": "SOURANS" + "codePostal": "50500", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "25380", - "codeCommune": "25554", - "libelleAcheminement": "SURMONT", - "nomCommune": "SURMONT" + "codePostal": "50320", + "codeCommune": "50115", + "libelleAcheminement": "LE GRIPPON", + "nomCommune": "LE GRIPPON" }, { - "codePostal": "25620", - "codeCommune": "25558", - "libelleAcheminement": "TARCENAY FOUCHERANS", - "nomCommune": "TARCENAY FOUCHERANS" + "codePostal": "50510", + "codeCommune": "50120", + "libelleAcheminement": "CHANTELOUP", + "nomCommune": "CHANTELOUP" }, { - "codePostal": "25470", - "codeCommune": "25559", - "libelleAcheminement": "THIEBOUHANS", - "nomCommune": "THIEBOUHANS" + "codePostal": "50800", + "codeCommune": "50121", + "libelleAcheminement": "LA CHAPELLE CECELIN", + "nomCommune": "LA CHAPELLE CECELIN" }, { - "codePostal": "25870", - "codeCommune": "25563", - "libelleAcheminement": "THUREY LE MONT", - "nomCommune": "THUREY LE MONT" + "codePostal": "50470", + "codeCommune": "50129", + "libelleAcheminement": "CHERBOURG EN COTENTIN", + "nomCommune": "CHERBOURG EN COTENTIN" }, { - "codePostal": "25370", - "codeCommune": "25565", - "libelleAcheminement": "TOUILLON ET LOUTELET", - "nomCommune": "TOUILLON ET LOUTELET" + "codePostal": "50800", + "codeCommune": "50130", + "libelleAcheminement": "CHERENCE LE HERON", + "nomCommune": "CHERENCE LE HERON" }, { - "codePostal": "25680", - "codeCommune": "25567", - "libelleAcheminement": "TOURNANS", - "nomCommune": "TOURNANS" + "codePostal": "50420", + "codeCommune": "50139", + "libelleAcheminement": "CONDE SUR VIRE", + "nomCommune": "CONDE SUR VIRE" }, { - "codePostal": "25220", - "codeCommune": "25575", - "libelleAcheminement": "VAIRE", - "nomCommune": "VAIRE" + "codePostal": "50330", + "codeCommune": "50142", + "libelleAcheminement": "VICQ SUR MER", + "nomCommune": "VICQ SUR MER" }, { - "codePostal": "25220", - "codeCommune": "25575", - "libelleAcheminement": "VAIRE", - "nomCommune": "VAIRE" + "codePostal": "50200", + "codeCommune": "50145", + "libelleAcheminement": "COURCY", + "nomCommune": "COURCY" }, { - "codePostal": "25220", - "codeCommune": "25575", - "libelleAcheminement": "VAIRE", - "nomCommune": "VAIRE" + "codePostal": "50680", + "codeCommune": "50148", + "libelleAcheminement": "COUVAINS", + "nomCommune": "COUVAINS" }, { - "codePostal": "25800", - "codeCommune": "25578", - "libelleAcheminement": "VALDAHON", - "nomCommune": "VALDAHON" + "codePostal": "50750", + "codeCommune": "50159", + "libelleAcheminement": "DANGY", + "nomCommune": "DANGY" }, { - "codePostal": "25640", - "codeCommune": "25579", - "libelleAcheminement": "VAL DE ROULANS", - "nomCommune": "VAL DE ROULANS" + "codePostal": "50530", + "codeCommune": "50167", + "libelleAcheminement": "DRAGEY RONTHON", + "nomCommune": "DRAGEY RONTHON" }, { - "codePostal": "25700", - "codeCommune": "25580", - "libelleAcheminement": "VALENTIGNEY", - "nomCommune": "VALENTIGNEY" + "codePostal": "50840", + "codeCommune": "50178", + "libelleAcheminement": "FERMANVILLE", + "nomCommune": "FERMANVILLE" }, { - "codePostal": "25870", - "codeCommune": "25582", - "libelleAcheminement": "VALLEROY", - "nomCommune": "VALLEROY" + "codePostal": "50800", + "codeCommune": "50185", + "libelleAcheminement": "FLEURY", + "nomCommune": "FLEURY" }, { - "codePostal": "25230", - "codeCommune": "25586", - "libelleAcheminement": "VANDONCOURT", - "nomCommune": "VANDONCOURT" + "codePostal": "50310", + "codeCommune": "50190", + "libelleAcheminement": "FONTENAY SUR MER", + "nomCommune": "FONTENAY SUR MER" }, { - "codePostal": "25410", - "codeCommune": "25594", - "libelleAcheminement": "VELESMES ESSARTS", - "nomCommune": "VELESMES ESSARTS" + "codePostal": "50450", + "codeCommune": "50197", + "libelleAcheminement": "GAVRAY SUR SIENNE", + "nomCommune": "GAVRAY SUR SIENNE" }, { - "codePostal": "25430", - "codeCommune": "25597", - "libelleAcheminement": "VELLEVANS", - "nomCommune": "VELLEVANS" + "codePostal": "50390", + "codeCommune": "50207", + "libelleAcheminement": "GOLLEVILLE", + "nomCommune": "GOLLEVILLE" }, { - "codePostal": "25300", - "codeCommune": "25609", - "libelleAcheminement": "VERRIERES DE JOUX", - "nomCommune": "VERRIERES DE JOUX" + "codePostal": "50200", + "codeCommune": "50215", + "libelleAcheminement": "GOUVILLE SUR MER", + "nomCommune": "GOUVILLE SUR MER" }, { - "codePostal": "50390", - "codeCommune": "50233", - "libelleAcheminement": "HAUTTEVILLE BOCAGE", - "nomCommune": "HAUTTEVILLE BOCAGE" + "codePostal": "50370", + "codeCommune": "50217", + "libelleAcheminement": "LE GRAND CELLAND", + "nomCommune": "LE GRAND CELLAND" }, { - "codePostal": "50250", - "codeCommune": "50236", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "50400", + "codeCommune": "50218", + "libelleAcheminement": "GRANVILLE", + "nomCommune": "GRANVILLE" + }, + { + "codePostal": "50340", + "codeCommune": "50222", + "libelleAcheminement": "GROSVILLE", + "nomCommune": "GROSVILLE" + }, + { + "codePostal": "50450", + "codeCommune": "50228", + "libelleAcheminement": "HAMBYE", + "nomCommune": "HAMBYE" + }, + { + "codePostal": "50590", + "codeCommune": "50231", + "libelleAcheminement": "HAUTEVILLE SUR MER", + "nomCommune": "HAUTEVILLE SUR MER" + }, + { + "codePostal": "50270", + "codeCommune": "50235", + "libelleAcheminement": "LA HAYE D ECTOT", + "nomCommune": "LA HAYE D ECTOT" }, { "codePostal": "50250", @@ -12108,10 +12132,28 @@ "nomCommune": "LA HAYE" }, { - "codePostal": "50340", - "codeCommune": "50240", - "libelleAcheminement": "HELLEVILLE", - "nomCommune": "HELLEVILLE" + "codePostal": "50320", + "codeCommune": "50237", + "libelleAcheminement": "LA HAYE PESNEL", + "nomCommune": "LA HAYE PESNEL" + }, + { + "codePostal": "50700", + "codeCommune": "50241", + "libelleAcheminement": "HEMEVEZ", + "nomCommune": "HEMEVEZ" + }, + { + "codePostal": "50200", + "codeCommune": "50243", + "libelleAcheminement": "HEUGUEVILLE SUR SIENNE", + "nomCommune": "HEUGUEVILLE SUR SIENNE" + }, + { + "codePostal": "50480", + "codeCommune": "50246", + "libelleAcheminement": "HIESVILLE", + "nomCommune": "HIESVILLE" }, { "codePostal": "50540", @@ -12131,6 +12173,24 @@ "libelleAcheminement": "ISIGNY LE BUAT", "nomCommune": "ISIGNY LE BUAT" }, + { + "codePostal": "50520", + "codeCommune": "50260", + "libelleAcheminement": "JUVIGNY LES VALLEES", + "nomCommune": "JUVIGNY LES VALLEES" + }, + { + "codePostal": "50520", + "codeCommune": "50260", + "libelleAcheminement": "JUVIGNY LES VALLEES", + "nomCommune": "JUVIGNY LES VALLEES" + }, + { + "codePostal": "50430", + "codeCommune": "50265", + "libelleAcheminement": "LAULNE", + "nomCommune": "LAULNE" + }, { "codePostal": "50450", "codeCommune": "50266", @@ -12144,28 +12204,10 @@ "nomCommune": "LESSAY" }, { - "codePostal": "50250", - "codeCommune": "50273", - "libelleAcheminement": "MONTSENELLE", - "nomCommune": "MONTSENELLE" - }, - { - "codePostal": "50250", - "codeCommune": "50273", - "libelleAcheminement": "MONTSENELLE", - "nomCommune": "MONTSENELLE" - }, - { - "codePostal": "50370", - "codeCommune": "50275", - "libelleAcheminement": "LES LOGES SUR BRECEY", - "nomCommune": "LES LOGES SUR BRECEY" - }, - { - "codePostal": "50530", - "codeCommune": "50276", - "libelleAcheminement": "LOLIF", - "nomCommune": "LOLIF" + "codePostal": "50310", + "codeCommune": "50268", + "libelleAcheminement": "LESTRE", + "nomCommune": "LESTRE" }, { "codePostal": "50570", @@ -12174,16 +12216,10 @@ "nomCommune": "LE LOREY" }, { - "codePostal": "50680", - "codeCommune": "50283", - "libelleAcheminement": "LA LUZERNE", - "nomCommune": "LA LUZERNE" - }, - { - "codePostal": "50570", - "codeCommune": "50292", - "libelleAcheminement": "MARIGNY LE LOZON", - "nomCommune": "MARIGNY LE LOZON" + "codePostal": "50190", + "codeCommune": "50289", + "libelleAcheminement": "MARCHESIEUX", + "nomCommune": "MARCHESIEUX" }, { "codePostal": "50330", @@ -12192,34 +12228,22 @@ "nomCommune": "MAUPERTUS SUR MER" }, { - "codePostal": "50580", - "codeCommune": "50299", - "libelleAcheminement": "LE MESNIL", - "nomCommune": "LE MESNIL" - }, - { - "codePostal": "50110", - "codeCommune": "50305", - "libelleAcheminement": "LE MESNIL AU VAL", - "nomCommune": "LE MESNIL AU VAL" + "codePostal": "50410", + "codeCommune": "50334", + "libelleAcheminement": "MONTABOT", + "nomCommune": "MONTABOT" }, { "codePostal": "50450", - "codeCommune": "50311", - "libelleAcheminement": "LE MESNIL GARNIER", - "nomCommune": "LE MESNIL GARNIER" - }, - { - "codePostal": "50270", - "codeCommune": "50332", - "libelleAcheminement": "LES MOITIERS D ALLONNE", - "nomCommune": "LES MOITIERS D ALLONNE" + "codeCommune": "50336", + "libelleAcheminement": "MONTAIGU LES BOIS", + "nomCommune": "MONTAIGU LES BOIS" }, { - "codePostal": "50310", - "codeCommune": "50341", - "libelleAcheminement": "MONTEBOURG", - "nomCommune": "MONTEBOURG" + "codePostal": "50240", + "codeCommune": "50347", + "libelleAcheminement": "MONTJOIE ST MARTIN", + "nomCommune": "MONTJOIE ST MARTIN" }, { "codePostal": "50590", @@ -12228,55 +12252,49 @@ "nomCommune": "MONTMARTIN SUR MER" }, { - "codePostal": "50680", - "codeCommune": "50356", - "libelleAcheminement": "MOON SUR ELLE", - "nomCommune": "MOON SUR ELLE" - }, - { - "codePostal": "50140", - "codeCommune": "50359", - "libelleAcheminement": "MORTAIN BOCAGE", - "nomCommune": "MORTAIN BOCAGE" - }, - { - "codePostal": "50140", - "codeCommune": "50359", - "libelleAcheminement": "MORTAIN BOCAGE", - "nomCommune": "MORTAIN BOCAGE" + "codePostal": "50170", + "codeCommune": "50353", + "libelleAcheminement": "LE MONT ST MICHEL", + "nomCommune": "LE MONT ST MICHEL" }, { - "codePostal": "50700", - "codeCommune": "50360", - "libelleAcheminement": "MORVILLE", - "nomCommune": "MORVILLE" + "codePostal": "50320", + "codeCommune": "50361", + "libelleAcheminement": "LA MOUCHE", + "nomCommune": "LA MOUCHE" }, { - "codePostal": "50420", + "codePostal": "50860", "codeCommune": "50363", "libelleAcheminement": "MOYON VILLAGES", "nomCommune": "MOYON VILLAGES" }, { - "codePostal": "50260", - "codeCommune": "50369", - "libelleAcheminement": "NEGREVILLE", - "nomCommune": "NEGREVILLE" + "codePostal": "50290", + "codeCommune": "50365", + "libelleAcheminement": "MUNEVILLE SUR MER", + "nomCommune": "MUNEVILLE SUR MER" }, { - "codePostal": "50480", - "codeCommune": "50373", - "libelleAcheminement": "NEUVILLE AU PLAIN", - "nomCommune": "NEUVILLE AU PLAIN" + "codePostal": "50390", + "codeCommune": "50387", + "libelleAcheminement": "ORGLANDES", + "nomCommune": "ORGLANDES" }, { - "codePostal": "50310", - "codeCommune": "50390", - "libelleAcheminement": "OZEVILLE", - "nomCommune": "OZEVILLE" + "codePostal": "50660", + "codeCommune": "50388", + "libelleAcheminement": "ORVAL SUR SIENNE", + "nomCommune": "ORVAL SUR SIENNE" }, { - "codePostal": "50360", + "codePostal": "50250", + "codeCommune": "50400", + "libelleAcheminement": "PICAUVILLE", + "nomCommune": "PICAUVILLE" + }, + { + "codePostal": "50480", "codeCommune": "50400", "libelleAcheminement": "PICAUVILLE", "nomCommune": "PICAUVILLE" @@ -12288,10 +12306,16 @@ "nomCommune": "PIERREVILLE" }, { - "codePostal": "50880", - "codeCommune": "50409", - "libelleAcheminement": "PONT HEBERT", - "nomCommune": "PONT HEBERT" + "codePostal": "50220", + "codeCommune": "50408", + "libelleAcheminement": "PONTAUBAULT", + "nomCommune": "PONTAUBAULT" + }, + { + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { "codePostal": "50580", @@ -12306,16 +12330,16 @@ "nomCommune": "QUETTEHOU" }, { - "codePostal": "50660", - "codeCommune": "50419", - "libelleAcheminement": "QUETTREVILLE SUR SIENNE", - "nomCommune": "QUETTREVILLE SUR SIENNE" + "codePostal": "50590", + "codeCommune": "50429", + "libelleAcheminement": "REGNEVILLE SUR MER", + "nomCommune": "REGNEVILLE SUR MER" }, { - "codePostal": "50570", - "codeCommune": "50431", - "libelleAcheminement": "REMILLY LES MARAIS", - "nomCommune": "REMILLY LES MARAIS" + "codePostal": "50390", + "codeCommune": "50430", + "libelleAcheminement": "REIGNEVILLE BOCAGE", + "nomCommune": "REIGNEVILLE BOCAGE" }, { "codePostal": "50260", @@ -12324,10 +12348,16 @@ "nomCommune": "ROCHEVILLE" }, { - "codePostal": "50160", - "codeCommune": "50444", - "libelleAcheminement": "ST AMAND VILLAGES", - "nomCommune": "ST AMAND VILLAGES" + "codePostal": "50140", + "codeCommune": "50436", + "libelleAcheminement": "ROMAGNY FONTENAY", + "nomCommune": "ROMAGNY FONTENAY" + }, + { + "codePostal": "50140", + "codeCommune": "50436", + "libelleAcheminement": "ROMAGNY FONTENAY", + "nomCommune": "ROMAGNY FONTENAY" }, { "codePostal": "50240", @@ -12336,40 +12366,10 @@ "nomCommune": "ST AUBIN DE TERREGATTE" }, { - "codePostal": "50800", - "codeCommune": "50453", - "libelleAcheminement": "STE CECILE", - "nomCommune": "STE CECILE" - }, - { - "codePostal": "50680", - "codeCommune": "50455", - "libelleAcheminement": "ST CLAIR SUR L ELLE", - "nomCommune": "ST CLAIR SUR L ELLE" - }, - { - "codePostal": "50720", - "codeCommune": "50462", - "libelleAcheminement": "ST CYR DU BAILLEUL", - "nomCommune": "ST CYR DU BAILLEUL" - }, - { - "codePostal": "50450", - "codeCommune": "50463", - "libelleAcheminement": "ST DENIS LE GAST", - "nomCommune": "ST DENIS LE GAST" - }, - { - "codePostal": "50680", - "codeCommune": "50473", - "libelleAcheminement": "ST GEORGES D ELLE", - "nomCommune": "ST GEORGES D ELLE" - }, - { - "codePostal": "50720", - "codeCommune": "50474", - "libelleAcheminement": "ST GEORGES DE ROUELLEY", - "nomCommune": "ST GEORGES DE ROUELLEY" + "codePostal": "50140", + "codeCommune": "50456", + "libelleAcheminement": "ST CLEMENT RANCOUDRAY", + "nomCommune": "ST CLEMENT RANCOUDRAY" }, { "codePostal": "50810", @@ -12378,34 +12378,28 @@ "nomCommune": "ST GERMAIN D ELLE" }, { - "codePostal": "50700", - "codeCommune": "50478", - "libelleAcheminement": "ST GERMAIN DE TOURNEBUT", - "nomCommune": "ST GERMAIN DE TOURNEBUT" - }, - { - "codePostal": "50730", - "codeCommune": "50484", - "libelleAcheminement": "ST HILAIRE DU HARCOUET", - "nomCommune": "ST HILAIRE DU HARCOUET" + "codePostal": "50430", + "codeCommune": "50481", + "libelleAcheminement": "ST GERMAIN SUR AY", + "nomCommune": "ST GERMAIN SUR AY" }, { - "codePostal": "50240", - "codeCommune": "50487", - "libelleAcheminement": "ST JAMES", - "nomCommune": "ST JAMES" + "codePostal": "50620", + "codeCommune": "50488", + "libelleAcheminement": "ST JEAN DE DAYE", + "nomCommune": "ST JEAN DE DAYE" }, { - "codePostal": "50240", - "codeCommune": "50487", - "libelleAcheminement": "ST JAMES", - "nomCommune": "ST JAMES" + "codePostal": "50270", + "codeCommune": "50490", + "libelleAcheminement": "ST JEAN DE LA RIVIERE", + "nomCommune": "ST JEAN DE LA RIVIERE" }, { - "codePostal": "50810", - "codeCommune": "50492", - "libelleAcheminement": "ST JEAN D ELLE", - "nomCommune": "ST JEAN D ELLE" + "codePostal": "50320", + "codeCommune": "50493", + "libelleAcheminement": "ST JEAN DES CHAMPS", + "nomCommune": "ST JEAN DES CHAMPS" }, { "codePostal": "50670", @@ -12414,10 +12408,16 @@ "nomCommune": "ST LAURENT DE CUVES" }, { - "codePostal": "50200", - "codeCommune": "50506", - "libelleAcheminement": "ST MALO DE LA LANDE", - "nomCommune": "ST MALO DE LA LANDE" + "codePostal": "50000", + "codeCommune": "50502", + "libelleAcheminement": "ST LO", + "nomCommune": "ST LO" + }, + { + "codePostal": "50480", + "codeCommune": "50509", + "libelleAcheminement": "STE MARIE DU MONT", + "nomCommune": "STE MARIE DU MONT" }, { "codePostal": "50190", @@ -12432,16 +12432,10 @@ "nomCommune": "STE MERE EGLISE" }, { - "codePostal": "50670", - "codeCommune": "50525", - "libelleAcheminement": "ST MICHEL DE MONTJOIE", - "nomCommune": "ST MICHEL DE MONTJOIE" - }, - { - "codePostal": "50300", - "codeCommune": "50531", - "libelleAcheminement": "ST OVIN", - "nomCommune": "ST OVIN" + "codePostal": "50480", + "codeCommune": "50523", + "libelleAcheminement": "STE MERE EGLISE", + "nomCommune": "STE MERE EGLISE" }, { "codePostal": "50810", @@ -12449,30 +12443,12 @@ "libelleAcheminement": "ST PIERRE DE SEMILLY", "nomCommune": "ST PIERRE DE SEMILLY" }, - { - "codePostal": "50670", - "codeCommune": "50542", - "libelleAcheminement": "ST POIS", - "nomCommune": "ST POIS" - }, - { - "codePostal": "50750", - "codeCommune": "50546", - "libelleAcheminement": "BOURGVALLEES", - "nomCommune": "BOURGVALLEES" - }, { "codePostal": "50750", "codeCommune": "50546", "libelleAcheminement": "BOURGVALLEES", "nomCommune": "BOURGVALLEES" }, - { - "codePostal": "50510", - "codeCommune": "50549", - "libelleAcheminement": "ST SAUVEUR LA POMMERAYE", - "nomCommune": "ST SAUVEUR LA POMMERAYE" - }, { "codePostal": "50490", "codeCommune": "50550", @@ -12480,10 +12456,10 @@ "nomCommune": "ST SAUVEUR VILLAGES" }, { - "codePostal": "50530", - "codeCommune": "50565", - "libelleAcheminement": "SARTILLY BAIE BOCAGE", - "nomCommune": "SARTILLY BAIE BOCAGE" + "codePostal": "50490", + "codeCommune": "50550", + "libelleAcheminement": "ST SAUVEUR VILLAGES", + "nomCommune": "ST SAUVEUR VILLAGES" }, { "codePostal": "50530", @@ -12492,40 +12468,10 @@ "nomCommune": "SARTILLY BAIE BOCAGE" }, { - "codePostal": "50700", - "codeCommune": "50567", - "libelleAcheminement": "SAUSSEMESNIL", - "nomCommune": "SAUSSEMESNIL" - }, - { - "codePostal": "50210", - "codeCommune": "50569", - "libelleAcheminement": "SAVIGNY", - "nomCommune": "SAVIGNY" - }, - { - "codePostal": "50640", - "codeCommune": "50570", - "libelleAcheminement": "SAVIGNY LE VIEUX", - "nomCommune": "SAVIGNY LE VIEUX" - }, - { - "codePostal": "50340", - "codeCommune": "50580", - "libelleAcheminement": "SOTTEVILLE", - "nomCommune": "SOTTEVILLE" - }, - { - "codePostal": "50390", - "codeCommune": "50587", - "libelleAcheminement": "TAILLEPIED", - "nomCommune": "TAILLEPIED" - }, - { - "codePostal": "50320", - "codeCommune": "50590", - "libelleAcheminement": "LE TANU", - "nomCommune": "LE TANU" + "codePostal": "50310", + "codeCommune": "50578", + "libelleAcheminement": "SORTOSVILLE", + "nomCommune": "SORTOSVILLE" }, { "codePostal": "50640", @@ -12540,16 +12486,22 @@ "nomCommune": "LE TEILLEUL" }, { - "codePostal": "50330", - "codeCommune": "50596", - "libelleAcheminement": "THEVILLE", - "nomCommune": "THEVILLE" + "codePostal": "50420", + "codeCommune": "50592", + "libelleAcheminement": "TESSY BOCAGE", + "nomCommune": "TESSY BOCAGE" }, { - "codePostal": "50300", - "codeCommune": "50597", - "libelleAcheminement": "TIREPIED SUR SEE", - "nomCommune": "TIREPIED SUR SEE" + "codePostal": "50630", + "codeCommune": "50593", + "libelleAcheminement": "TEURTHEVILLE BOCAGE", + "nomCommune": "TEURTHEVILLE BOCAGE" + }, + { + "codePostal": "50690", + "codeCommune": "50594", + "libelleAcheminement": "TEURTHEVILLE HAGUE", + "nomCommune": "TEURTHEVILLE HAGUE" }, { "codePostal": "50160", @@ -12558,34 +12510,10 @@ "nomCommune": "TORIGNY LES VILLES" }, { - "codePostal": "50200", - "codeCommune": "50603", - "libelleAcheminement": "TOURVILLE SUR SIENNE", - "nomCommune": "TOURVILLE SUR SIENNE" - }, - { - "codePostal": "50480", - "codeCommune": "50609", - "libelleAcheminement": "TURQUEVILLE", - "nomCommune": "TURQUEVILLE" - }, - { - "codePostal": "50700", - "codeCommune": "50610", - "libelleAcheminement": "URVILLE", - "nomCommune": "URVILLE" - }, - { - "codePostal": "50700", - "codeCommune": "50615", - "libelleAcheminement": "VALOGNES", - "nomCommune": "VALOGNES" - }, - { - "codePostal": "50330", - "codeCommune": "50618", - "libelleAcheminement": "VAROUVILLE", - "nomCommune": "VAROUVILLE" + "codePostal": "50160", + "codeCommune": "50601", + "libelleAcheminement": "TORIGNY LES VILLES", + "nomCommune": "TORIGNY LES VILLES" }, { "codePostal": "50630", @@ -12594,10 +12522,10 @@ "nomCommune": "LE VAST" }, { - "codePostal": "50760", - "codeCommune": "50633", - "libelleAcheminement": "LE VICEL", - "nomCommune": "LE VICEL" + "codePostal": "50370", + "codeCommune": "50628", + "libelleAcheminement": "VERNIX", + "nomCommune": "VERNIX" }, { "codePostal": "50400", @@ -12605,71 +12533,35 @@ "libelleAcheminement": "YQUELON", "nomCommune": "YQUELON" }, - { - "codePostal": "51240", - "codeCommune": "51001", - "libelleAcheminement": "ABLANCOURT", - "nomCommune": "ABLANCOURT" - }, - { - "codePostal": "51230", - "codeCommune": "51010", - "libelleAcheminement": "ANGLUZELLES ET COURCELLES", - "nomCommune": "ANGLUZELLES ET COURCELLES" - }, - { - "codePostal": "51170", - "codeCommune": "51013", - "libelleAcheminement": "AOUGNY", - "nomCommune": "AOUGNY" - }, - { - "codePostal": "51170", - "codeCommune": "51014", - "libelleAcheminement": "ARCIS LE PONSART", - "nomCommune": "ARCIS LE PONSART" - }, - { - "codePostal": "51150", - "codeCommune": "51018", - "libelleAcheminement": "ATHIS", - "nomCommune": "ATHIS" - }, - { - "codePostal": "51240", - "codeCommune": "51022", - "libelleAcheminement": "AULNAY L AITRE", - "nomCommune": "AULNAY L AITRE" - }, { "codePostal": "51150", - "codeCommune": "51023", - "libelleAcheminement": "AULNAY SUR MARNE", - "nomCommune": "AULNAY SUR MARNE" + "codeCommune": "51007", + "libelleAcheminement": "AMBONNAY", + "nomCommune": "AMBONNAY" }, { - "codePostal": "51270", - "codeCommune": "51033", - "libelleAcheminement": "LE BAIZIL", - "nomCommune": "LE BAIZIL" + "codePostal": "51110", + "codeCommune": "51025", + "libelleAcheminement": "AUMENANCOURT", + "nomCommune": "AUMENANCOURT" }, { - "codePostal": "51170", - "codeCommune": "51037", - "libelleAcheminement": "BASLIEUX LES FISMES", - "nomCommune": "BASLIEUX LES FISMES" + "codePostal": "51800", + "codeCommune": "51027", + "libelleAcheminement": "AUVE", + "nomCommune": "AUVE" }, { - "codePostal": "51700", - "codeCommune": "51038", - "libelleAcheminement": "BASLIEUX SOUS CHATILLON", - "nomCommune": "BASLIEUX SOUS CHATILLON" + "codePostal": "51150", + "codeCommune": "51030", + "libelleAcheminement": "AY CHAMPAGNE", + "nomCommune": "AY CHAMPAGNE" }, { - "codePostal": "51330", - "codeCommune": "51047", - "libelleAcheminement": "BELVAL EN ARGONNE", - "nomCommune": "BELVAL EN ARGONNE" + "codePostal": "51110", + "codeCommune": "51043", + "libelleAcheminement": "BAZANCOURT", + "nomCommune": "BAZANCOURT" }, { "codePostal": "51480", @@ -12678,16 +12570,10 @@ "nomCommune": "BELVAL SOUS CHATILLON" }, { - "codePostal": "51210", - "codeCommune": "51050", - "libelleAcheminement": "BERGERES SOUS MONTMIRAIL", - "nomCommune": "BERGERES SOUS MONTMIRAIL" - }, - { - "codePostal": "51800", - "codeCommune": "51053", - "libelleAcheminement": "BERZIEUX", - "nomCommune": "BERZIEUX" + "codePostal": "51420", + "codeCommune": "51052", + "libelleAcheminement": "BERRU", + "nomCommune": "BERRU" }, { "codePostal": "51490", @@ -12696,16 +12582,10 @@ "nomCommune": "BETHENIVILLE" }, { - "codePostal": "51430", - "codeCommune": "51058", - "libelleAcheminement": "BEZANNES", - "nomCommune": "BEZANNES" - }, - { - "codePostal": "51400", - "codeCommune": "51061", - "libelleAcheminement": "BILLY LE GRAND", - "nomCommune": "BILLY LE GRAND" + "codePostal": "51800", + "codeCommune": "51062", + "libelleAcheminement": "BINARVILLE", + "nomCommune": "BINARVILLE" }, { "codePostal": "51300", @@ -12714,10 +12594,28 @@ "nomCommune": "BLACY" }, { - "codePostal": "51300", - "codeCommune": "51066", - "libelleAcheminement": "BLAISE SOUS ARZILLIERES", - "nomCommune": "BLAISE SOUS ARZILLIERES" + "codePostal": "51210", + "codeCommune": "51070", + "libelleAcheminement": "BOISSY LE REPOS", + "nomCommune": "BOISSY LE REPOS" + }, + { + "codePostal": "51140", + "codeCommune": "51077", + "libelleAcheminement": "BOUVANCOURT", + "nomCommune": "BOUVANCOURT" + }, + { + "codePostal": "51140", + "codeCommune": "51081", + "libelleAcheminement": "BRANSCOURT", + "nomCommune": "BRANSCOURT" + }, + { + "codePostal": "51320", + "codeCommune": "51084", + "libelleAcheminement": "BREBAN", + "nomCommune": "BREBAN" }, { "codePostal": "51210", @@ -12726,22 +12624,22 @@ "nomCommune": "LE BREUIL" }, { - "codePostal": "51530", - "codeCommune": "51093", - "libelleAcheminement": "BRUGNY VAUDANCOURT", - "nomCommune": "BRUGNY VAUDANCOURT" + "codePostal": "51230", + "codeCommune": "51090", + "libelleAcheminement": "BROUSSY LE GRAND", + "nomCommune": "BROUSSY LE GRAND" }, { - "codePostal": "51330", - "codeCommune": "51098", - "libelleAcheminement": "BUSSY LE REPOS", - "nomCommune": "BUSSY LE REPOS" + "codePostal": "51270", + "codeCommune": "51100", + "libelleAcheminement": "LA CAURE", + "nomCommune": "LA CAURE" }, { - "codePostal": "51000", - "codeCommune": "51108", - "libelleAcheminement": "CHALONS EN CHAMPAGNE", - "nomCommune": "CHALONS EN CHAMPAGNE" + "codePostal": "51220", + "codeCommune": "51102", + "libelleAcheminement": "CAUROY LES HERMONVILLE", + "nomCommune": "CAUROY LES HERMONVILLE" }, { "codePostal": "51140", @@ -12756,22 +12654,16 @@ "nomCommune": "CHAMBRECY" }, { - "codePostal": "51500", - "codeCommune": "51112", - "libelleAcheminement": "CHAMERY", - "nomCommune": "CHAMERY" - }, - { - "codePostal": "51500", - "codeCommune": "51115", - "libelleAcheminement": "CHAMPFLEURY", - "nomCommune": "CHAMPFLEURY" + "codePostal": "51370", + "codeCommune": "51118", + "libelleAcheminement": "CHAMPIGNY", + "nomCommune": "CHAMPIGNY" }, { - "codePostal": "51300", - "codeCommune": "51122", - "libelleAcheminement": "CHANGY", - "nomCommune": "CHANGY" + "codePostal": "51160", + "codeCommune": "51119", + "libelleAcheminement": "CHAMPILLON", + "nomCommune": "CHAMPILLON" }, { "codePostal": "51290", @@ -12780,22 +12672,34 @@ "nomCommune": "CHAPELAINE" }, { - "codePostal": "51290", - "codeCommune": "51135", - "libelleAcheminement": "CHATILLON SUR BROUE", - "nomCommune": "CHATILLON SUR BROUE" + "codePostal": "51800", + "codeCommune": "51126", + "libelleAcheminement": "LA CHAPELLE FELCOURT", + "nomCommune": "LA CHAPELLE FELCOURT" }, { - "codePostal": "51250", - "codeCommune": "51144", - "libelleAcheminement": "CHEMINON", - "nomCommune": "CHEMINON" + "codePostal": "51270", + "codeCommune": "51128", + "libelleAcheminement": "LA CHAPELLE SOUS ORBAIS", + "nomCommune": "LA CHAPELLE SOUS ORBAIS" }, { - "codePostal": "51150", - "codeCommune": "51150", - "libelleAcheminement": "CHERVILLE", - "nomCommune": "CHERVILLE" + "codePostal": "51330", + "codeCommune": "51132", + "libelleAcheminement": "LES CHARMONTOIS", + "nomCommune": "LES CHARMONTOIS" + }, + { + "codePostal": "51300", + "codeCommune": "51134", + "libelleAcheminement": "CHATELRAOULD ST LOUVENT", + "nomCommune": "CHATELRAOULD ST LOUVENT" + }, + { + "codePostal": "51600", + "codeCommune": "51147", + "libelleAcheminement": "LA CHEPPE", + "nomCommune": "LA CHEPPE" }, { "codePostal": "51530", @@ -12810,58 +12714,10 @@ "nomCommune": "VAL DES MARAIS" }, { - "codePostal": "51150", - "codeCommune": "51161", - "libelleAcheminement": "CONDE SUR MARNE", - "nomCommune": "CONDE SUR MARNE" - }, - { - "codePostal": "51260", - "codeCommune": "51162", - "libelleAcheminement": "CONFLANS SUR SEINE", - "nomCommune": "CONFLANS SUR SEINE" - }, - { - "codePostal": "51270", - "codeCommune": "51163", - "libelleAcheminement": "CONGY", - "nomCommune": "CONGY" - }, - { - "codePostal": "51320", - "codeCommune": "51167", - "libelleAcheminement": "COOLE", - "nomCommune": "COOLE" - }, - { - "codePostal": "51510", - "codeCommune": "51168", - "libelleAcheminement": "COOLUS", - "nomCommune": "COOLUS" - }, - { - "codePostal": "51220", - "codeCommune": "51171", - "libelleAcheminement": "CORMICY", - "nomCommune": "CORMICY" - }, - { - "codePostal": "51480", - "codeCommune": "51173", - "libelleAcheminement": "CORMOYEUX", - "nomCommune": "CORMOYEUX" - }, - { - "codePostal": "51390", - "codeCommune": "51177", - "libelleAcheminement": "COULOMMES LA MONTAGNE", - "nomCommune": "COULOMMES LA MONTAGNE" - }, - { - "codePostal": "51240", - "codeCommune": "51179", - "libelleAcheminement": "COUPEVILLE", - "nomCommune": "COUPEVILLE" + "codePostal": "51140", + "codeCommune": "51181", + "libelleAcheminement": "COURCELLES SAPICOURT", + "nomCommune": "COURCELLES SAPICOURT" }, { "codePostal": "51260", @@ -12870,64 +12726,58 @@ "nomCommune": "COURCEMAIN" }, { - "codePostal": "51220", - "codeCommune": "51183", - "libelleAcheminement": "COURCY", - "nomCommune": "COURCY" - }, - { - "codePostal": "51170", - "codeCommune": "51187", - "libelleAcheminement": "COURLANDON", - "nomCommune": "COURLANDON" + "codePostal": "51400", + "codeCommune": "51203", + "libelleAcheminement": "CUPERLY", + "nomCommune": "CUPERLY" }, { - "codePostal": "51300", - "codeCommune": "51195", - "libelleAcheminement": "COUVROT", - "nomCommune": "COUVROT" + "codePostal": "51530", + "codeCommune": "51210", + "libelleAcheminement": "DIZY", + "nomCommune": "DIZY" }, { - "codePostal": "51530", - "codeCommune": "51200", - "libelleAcheminement": "CUIS", - "nomCommune": "CUIS" + "codePostal": "51800", + "codeCommune": "51213", + "libelleAcheminement": "DOMMARTIN SOUS HANS", + "nomCommune": "DOMMARTIN SOUS HANS" }, { - "codePostal": "51480", - "codeCommune": "51204", - "libelleAcheminement": "DAMERY", - "nomCommune": "DAMERY" + "codePostal": "51490", + "codeCommune": "51216", + "libelleAcheminement": "DONTRIEN", + "nomCommune": "DONTRIEN" }, { - "codePostal": "51330", - "codeCommune": "51214", - "libelleAcheminement": "DOMMARTIN VARIMONT", - "nomCommune": "DOMMARTIN VARIMONT" + "codePostal": "51700", + "codeCommune": "51217", + "libelleAcheminement": "DORMANS", + "nomCommune": "DORMANS" }, { - "codePostal": "51290", - "codeCommune": "51219", - "libelleAcheminement": "DROSNAY", - "nomCommune": "DROSNAY" + "codePostal": "51300", + "codeCommune": "51220", + "libelleAcheminement": "DROUILLY", + "nomCommune": "DROUILLY" }, { - "codePostal": "51290", - "codeCommune": "51223", - "libelleAcheminement": "ECOLLEMONT", - "nomCommune": "ECOLLEMONT" + "codePostal": "51200", + "codeCommune": "51230", + "libelleAcheminement": "EPERNAY", + "nomCommune": "EPERNAY" }, { - "codePostal": "51800", - "codeCommune": "51228", - "libelleAcheminement": "ELISE DAUCOURT", - "nomCommune": "ELISE DAUCOURT" + "codePostal": "51460", + "codeCommune": "51231", + "libelleAcheminement": "L EPINE", + "nomCommune": "L EPINE" }, { - "codePostal": "51120", - "codeCommune": "51235", - "libelleAcheminement": "LES ESSARTS LES SEZANNE", - "nomCommune": "LES ESSARTS LES SEZANNE" + "codePostal": "51310", + "codeCommune": "51237", + "libelleAcheminement": "ESTERNAY", + "nomCommune": "ESTERNAY" }, { "codePostal": "51340", @@ -12936,46 +12786,28 @@ "nomCommune": "ETREPY" }, { - "codePostal": "51230", - "codeCommune": "51243", - "libelleAcheminement": "FAUX FRESNAY", - "nomCommune": "FAUX FRESNAY" - }, - { - "codePostal": "51230", - "codeCommune": "51248", - "libelleAcheminement": "FERE CHAMPENOISE", - "nomCommune": "FERE CHAMPENOISE" - }, - { - "codePostal": "51700", - "codeCommune": "51249", - "libelleAcheminement": "FESTIGNY", - "nomCommune": "FESTIGNY" - }, - { - "codePostal": "51170", - "codeCommune": "51250", - "libelleAcheminement": "FISMES", - "nomCommune": "FISMES" + "codePostal": "51240", + "codeCommune": "51259", + "libelleAcheminement": "FRANCHEVILLE", + "nomCommune": "FRANCHEVILLE" }, { - "codePostal": "51120", - "codeCommune": "51265", - "libelleAcheminement": "GAYE", - "nomCommune": "GAYE" + "codePostal": "51300", + "codeCommune": "51262", + "libelleAcheminement": "FRIGNICOURT", + "nomCommune": "FRIGNICOURT" }, { - "codePostal": "51290", - "codeCommune": "51269", - "libelleAcheminement": "GIFFAUMONT CHAMPAUBERT", - "nomCommune": "GIFFAUMONT CHAMPAUBERT" + "codePostal": "51210", + "codeCommune": "51263", + "libelleAcheminement": "FROMENTIERES", + "nomCommune": "FROMENTIERES" }, { - "codePostal": "51290", - "codeCommune": "51270", - "libelleAcheminement": "GIGNY BUSSY", - "nomCommune": "GIGNY BUSSY" + "codePostal": "51390", + "codeCommune": "51267", + "libelleAcheminement": "GERMIGNY", + "nomCommune": "GERMIGNY" }, { "codePostal": "51300", @@ -12984,22 +12816,22 @@ "nomCommune": "GLANNES" }, { - "codePostal": "51340", - "codeCommune": "51289", - "libelleAcheminement": "HEILTZ LE MAURUPT", - "nomCommune": "HEILTZ LE MAURUPT" + "codePostal": "51190", + "codeCommune": "51281", + "libelleAcheminement": "GRAUVES", + "nomCommune": "GRAUVES" }, { - "codePostal": "51220", - "codeCommune": "51291", - "libelleAcheminement": "HERMONVILLE", - "nomCommune": "HERMONVILLE" + "codePostal": "51800", + "codeCommune": "51283", + "libelleAcheminement": "HANS", + "nomCommune": "HANS" }, { - "codePostal": "51700", - "codeCommune": "51298", - "libelleAcheminement": "IGNY COMBLIZY", - "nomCommune": "IGNY COMBLIZY" + "codePostal": "51320", + "codeCommune": "51296", + "libelleAcheminement": "HUMBAUVILLE", + "nomCommune": "HUMBAUVILLE" }, { "codePostal": "51310", @@ -13008,16 +12840,34 @@ "nomCommune": "JOISELLE" }, { - "codePostal": "51170", - "codeCommune": "51314", - "libelleAcheminement": "LAGERY", - "nomCommune": "LAGERY" + "codePostal": "51140", + "codeCommune": "51308", + "libelleAcheminement": "JONCHERY SUR VESLE", + "nomCommune": "JONCHERY SUR VESLE" }, { - "codePostal": "51800", - "codeCommune": "51336", - "libelleAcheminement": "MAFFRECOURT", - "nomCommune": "MAFFRECOURT" + "codePostal": "51230", + "codeCommune": "51319", + "libelleAcheminement": "LENHARREE", + "nomCommune": "LENHARREE" + }, + { + "codePostal": "51700", + "codeCommune": "51320", + "libelleAcheminement": "LEUVRIGNY", + "nomCommune": "LEUVRIGNY" + }, + { + "codePostal": "51130", + "codeCommune": "51327", + "libelleAcheminement": "LOISY EN BRIE", + "nomCommune": "LOISY EN BRIE" + }, + { + "codePostal": "51300", + "codeCommune": "51340", + "libelleAcheminement": "MAISONS EN CHAMPAGNE", + "nomCommune": "MAISONS EN CHAMPAGNE" }, { "codePostal": "51260", @@ -13037,36 +12887,66 @@ "libelleAcheminement": "MARGERIE HANCOURT", "nomCommune": "MARGERIE HANCOURT" }, - { - "codePostal": "51210", - "codeCommune": "51350", - "libelleAcheminement": "MARGNY", - "nomCommune": "MARGNY" - }, { "codePostal": "51300", "codeCommune": "51352", "libelleAcheminement": "MAROLLES", "nomCommune": "MAROLLES" }, + { + "codePostal": "51260", + "codeCommune": "51353", + "libelleAcheminement": "MARSANGIS", + "nomCommune": "MARSANGIS" + }, + { + "codePostal": "51340", + "codeCommune": "51358", + "libelleAcheminement": "MAURUPT LE MONTOIS", + "nomCommune": "MAURUPT LE MONTOIS" + }, { "codePostal": "51210", "codeCommune": "51359", "libelleAcheminement": "MECRINGES", "nomCommune": "MECRINGES" }, + { + "codePostal": "51120", + "codeCommune": "51360", + "libelleAcheminement": "LE MEIX ST EPOING", + "nomCommune": "LE MEIX ST EPOING" + }, + { + "codePostal": "51320", + "codeCommune": "51361", + "libelleAcheminement": "LE MEIX TIERCELIN", + "nomCommune": "LE MEIX TIERCELIN" + }, + { + "codePostal": "51220", + "codeCommune": "51362", + "libelleAcheminement": "MERFY", + "nomCommune": "MERFY" + }, + { + "codePostal": "51300", + "codeCommune": "51363", + "libelleAcheminement": "MERLAUT", + "nomCommune": "MERLAUT" + }, + { + "codePostal": "51370", + "codeCommune": "51365", + "libelleAcheminement": "LES MESNEUX", + "nomCommune": "LES MESNEUX" + }, { "codePostal": "51120", "codeCommune": "51369", "libelleAcheminement": "MOEURS VERDEY", "nomCommune": "MOEURS VERDEY" }, - { - "codePostal": "51290", - "codeCommune": "51373", - "libelleAcheminement": "MONCETZ L ABBAYE", - "nomCommune": "MONCETZ L ABBAYE" - }, { "codePostal": "51320", "codeCommune": "51377", @@ -13080,28 +12960,58 @@ "nomCommune": "MONTHELON" }, { - "codePostal": "51270", - "codeCommune": "51381", - "libelleAcheminement": "MONTMORT LUCY", - "nomCommune": "MONTMORT LUCY" + "codePostal": "51140", + "codeCommune": "51379", + "libelleAcheminement": "MONTIGNY SUR VESLE", + "nomCommune": "MONTIGNY SUR VESLE" }, { - "codePostal": "51420", - "codeCommune": "51403", - "libelleAcheminement": "NOGENT L ABBESSE", - "nomCommune": "NOGENT L ABBESSE" + "codePostal": "51530", + "codeCommune": "51384", + "libelleAcheminement": "MORANGIS", + "nomCommune": "MORANGIS" + }, + { + "codePostal": "51140", + "codeCommune": "51391", + "libelleAcheminement": "MUIZON", + "nomCommune": "MUIZON" + }, + { + "codePostal": "51120", + "codeCommune": "51395", + "libelleAcheminement": "NESLE LA REPOSTE", + "nomCommune": "NESLE LA REPOSTE" }, { "codePostal": "51330", - "codeCommune": "51404", - "libelleAcheminement": "NOIRLIEU", - "nomCommune": "NOIRLIEU" + "codeCommune": "51397", + "libelleAcheminement": "LA NEUVILLE AUX BOIS", + "nomCommune": "LA NEUVILLE AUX BOIS" + }, + { + "codePostal": "51310", + "codeCommune": "51402", + "libelleAcheminement": "NEUVY", + "nomCommune": "NEUVY" + }, + { + "codePostal": "51530", + "codeCommune": "51413", + "libelleAcheminement": "OIRY", + "nomCommune": "OIRY" + }, + { + "codePostal": "51290", + "codeCommune": "51419", + "libelleAcheminement": "OUTINES", + "nomCommune": "OUTINES" }, { "codePostal": "51120", - "codeCommune": "51426", - "libelleAcheminement": "PEAS", - "nomCommune": "PEAS" + "codeCommune": "51421", + "libelleAcheminement": "OYES", + "nomCommune": "OYES" }, { "codePostal": "51400", @@ -13110,16 +13020,28 @@ "nomCommune": "LES PETITES LOGES" }, { - "codePostal": "51130", - "codeCommune": "51430", - "libelleAcheminement": "PIERRE MORAINS", - "nomCommune": "PIERRE MORAINS" + "codePostal": "51530", + "codeCommune": "51431", + "libelleAcheminement": "PIERRY", + "nomCommune": "PIERRY" }, { - "codePostal": "51130", - "codeCommune": "51435", - "libelleAcheminement": "POCANCY", - "nomCommune": "POCANCY" + "codePostal": "51300", + "codeCommune": "51441", + "libelleAcheminement": "PONTHION", + "nomCommune": "PONTHION" + }, + { + "codePostal": "51220", + "codeCommune": "51444", + "libelleAcheminement": "POUILLON", + "nomCommune": "POUILLON" + }, + { + "codePostal": "51400", + "codeCommune": "51447", + "libelleAcheminement": "PROSNES", + "nomCommune": "PROSNES" }, { "codePostal": "51500", @@ -13134,10 +13056,10 @@ "nomCommune": "RAPSECOURT" }, { - "codePostal": "51520", - "codeCommune": "51453", - "libelleAcheminement": "RECY", - "nomCommune": "RECY" + "codePostal": "51100", + "codeCommune": "51454", + "libelleAcheminement": "REIMS", + "nomCommune": "REIMS" }, { "codePostal": "51120", @@ -13146,22 +13068,10 @@ "nomCommune": "REUVES" }, { - "codePostal": "51310", - "codeCommune": "51459", - "libelleAcheminement": "REVEILLON", - "nomCommune": "REVEILLON" - }, - { - "codePostal": "51500", - "codeCommune": "51461", - "libelleAcheminement": "RILLY LA MONTAGNE", - "nomCommune": "RILLY LA MONTAGNE" - }, - { - "codePostal": "51170", - "codeCommune": "51466", - "libelleAcheminement": "ROMIGNY", - "nomCommune": "ROMIGNY" + "codePostal": "51480", + "codeCommune": "51465", + "libelleAcheminement": "ROMERY", + "nomCommune": "ROMERY" }, { "codePostal": "51130", @@ -13170,28 +13080,28 @@ "nomCommune": "ROUFFY" }, { - "codePostal": "51240", - "codeCommune": "51482", - "libelleAcheminement": "ST GERMAIN LA VILLE", - "nomCommune": "ST GERMAIN LA VILLE" + "codePostal": "51290", + "codeCommune": "51475", + "libelleAcheminement": "ST CHERON", + "nomCommune": "ST CHERON" }, { - "codePostal": "51490", - "codeCommune": "51487", - "libelleAcheminement": "ST HILAIRE LE PETIT", - "nomCommune": "ST HILAIRE LE PETIT" + "codePostal": "51460", + "codeCommune": "51476", + "libelleAcheminement": "ST ETIENNE AU TEMPLE", + "nomCommune": "ST ETIENNE AU TEMPLE" }, { - "codePostal": "51160", - "codeCommune": "51488", - "libelleAcheminement": "ST IMOGES", - "nomCommune": "ST IMOGES" + "codePostal": "51110", + "codeCommune": "51477", + "libelleAcheminement": "ST ETIENNE SUR SUIPPE", + "nomCommune": "ST ETIENNE SUR SUIPPE" }, { - "codePostal": "51260", - "codeCommune": "51492", - "libelleAcheminement": "ST JUST SAUVAGE", - "nomCommune": "ST JUST SAUVAGE" + "codePostal": "51510", + "codeCommune": "51483", + "libelleAcheminement": "ST GIBRIEN", + "nomCommune": "ST GIBRIEN" }, { "codePostal": "51500", @@ -13200,16 +13110,16 @@ "nomCommune": "ST LEONARD" }, { - "codePostal": "51800", - "codeCommune": "51498", - "libelleAcheminement": "ST MARD SUR AUVE", - "nomCommune": "ST MARD SUR AUVE" + "codePostal": "51120", + "codeCommune": "51495", + "libelleAcheminement": "ST LOUP", + "nomCommune": "ST LOUP" }, { - "codePostal": "51490", - "codeCommune": "51503", - "libelleAcheminement": "ST MARTIN L HEUREUX", - "nomCommune": "ST MARTIN L HEUREUX" + "codePostal": "51320", + "codeCommune": "51508", + "libelleAcheminement": "ST OUEN DOMPROT", + "nomCommune": "ST OUEN DOMPROT" }, { "codePostal": "51510", @@ -13218,10 +13128,10 @@ "nomCommune": "ST PIERRE" }, { - "codePostal": "51120", - "codeCommune": "51511", - "libelleAcheminement": "ST QUENTIN LE VERGER", - "nomCommune": "ST QUENTIN LE VERGER" + "codePostal": "51600", + "codeCommune": "51515", + "libelleAcheminement": "ST REMY SUR BUSSY", + "nomCommune": "ST REMY SUR BUSSY" }, { "codePostal": "51260", @@ -13229,30 +13139,12 @@ "libelleAcheminement": "ST SATURNIN", "nomCommune": "ST SATURNIN" }, - { - "codePostal": "51220", - "codeCommune": "51518", - "libelleAcheminement": "ST THIERRY", - "nomCommune": "ST THIERRY" - }, - { - "codePostal": "51290", - "codeCommune": "51520", - "libelleAcheminement": "ST UTIN", - "nomCommune": "ST UTIN" - }, { "codePostal": "51260", "codeCommune": "51524", "libelleAcheminement": "SARON SUR AUBE", "nomCommune": "SARON SUR AUBE" }, - { - "codePostal": "51490", - "codeCommune": "51529", - "libelleAcheminement": "SELLES", - "nomCommune": "SELLES" - }, { "codePostal": "51120", "codeCommune": "51535", @@ -13260,94 +13152,136 @@ "nomCommune": "SEZANNE" }, { - "codePostal": "51290", - "codeCommune": "51551", - "libelleAcheminement": "SOMSOIS", - "nomCommune": "SOMSOIS" + "codePostal": "51800", + "codeCommune": "51537", + "libelleAcheminement": "SIVRY ANTE", + "nomCommune": "SIVRY ANTE" }, { - "codePostal": "51220", - "codeCommune": "51568", - "libelleAcheminement": "THIL", - "nomCommune": "THIL" + "codePostal": "51130", + "codeCommune": "51558", + "libelleAcheminement": "SOULIERES", + "nomCommune": "SOULIERES" + }, + { + "codePostal": "51270", + "codeCommune": "51563", + "libelleAcheminement": "TALUS ST PRIX", + "nomCommune": "TALUS ST PRIX" }, { "codePostal": "51150", - "codeCommune": "51576", - "libelleAcheminement": "TOURS SUR MARNE", - "nomCommune": "TOURS SUR MARNE" + "codeCommune": "51564", + "libelleAcheminement": "VAL DE LIVRE", + "nomCommune": "VAL DE LIVRE" }, { - "codePostal": "51170", - "codeCommune": "51577", - "libelleAcheminement": "TRAMERY", - "nomCommune": "TRAMERY" + "codePostal": "51230", + "codeCommune": "51565", + "libelleAcheminement": "THAAS", + "nomCommune": "THAAS" }, { - "codePostal": "51130", - "codeCommune": "51578", - "libelleAcheminement": "TRECON", - "nomCommune": "TRECON" + "codePostal": "51510", + "codeCommune": "51566", + "libelleAcheminement": "THIBIE", + "nomCommune": "THIBIE" }, { - "codePostal": "51700", - "codeCommune": "51585", - "libelleAcheminement": "TROISSY", - "nomCommune": "TROISSY" + "codePostal": "51460", + "codeCommune": "51572", + "libelleAcheminement": "TILLOY ET BELLAY", + "nomCommune": "TILLOY ET BELLAY" }, { - "codePostal": "51320", - "codeCommune": "51594", - "libelleAcheminement": "VASSIMONT ET CHAPELAINE", - "nomCommune": "VASSIMONT ET CHAPELAINE" + "codePostal": "51240", + "codeCommune": "51574", + "libelleAcheminement": "TOGNY AUX BOEUFS", + "nomCommune": "TOGNY AUX BOEUFS" }, { - "codePostal": "51320", - "codeCommune": "51595", - "libelleAcheminement": "VATRY", - "nomCommune": "VATRY" + "codePostal": "51140", + "codeCommune": "51581", + "libelleAcheminement": "TRESLON", + "nomCommune": "TRESLON" }, { - "codePostal": "51480", - "codeCommune": "51597", - "libelleAcheminement": "VAUCIENNES", - "nomCommune": "VAUCIENNES" + "codePostal": "51170", + "codeCommune": "51586", + "libelleAcheminement": "UNCHAIR", + "nomCommune": "UNCHAIR" }, { - "codePostal": "51380", - "codeCommune": "51599", - "libelleAcheminement": "VAUDEMANGE", - "nomCommune": "VAUDEMANGE" + "codePostal": "51330", + "codeCommune": "51589", + "libelleAcheminement": "VANAULT LE CHATEL", + "nomCommune": "VANAULT LE CHATEL" }, { - "codePostal": "51300", - "codeCommune": "51601", - "libelleAcheminement": "VAVRAY LE GRAND", - "nomCommune": "VAVRAY LE GRAND" + "codePostal": "51600", + "codeCommune": "51600", + "libelleAcheminement": "VAUDESINCOURT", + "nomCommune": "VAUDESINCOURT" }, { - "codePostal": "51130", - "codeCommune": "51603", - "libelleAcheminement": "VELYE", - "nomCommune": "VELYE" + "codePostal": "51480", + "codeCommune": "51605", + "libelleAcheminement": "VENTEUIL", + "nomCommune": "VENTEUIL" }, { - "codePostal": "51360", - "codeCommune": "51613", - "libelleAcheminement": "VERZENAY", - "nomCommune": "VERZENAY" + "codePostal": "51330", + "codeCommune": "51608", + "libelleAcheminement": "VERNANCOURT", + "nomCommune": "VERNANCOURT" }, { - "codePostal": "51170", - "codeCommune": "51624", + "codePostal": "51700", + "codeCommune": "51609", + "libelleAcheminement": "VERNEUIL", + "nomCommune": "VERNEUIL" + }, + { + "codePostal": "51130", + "codeCommune": "51611", + "libelleAcheminement": "VERT TOULON", + "nomCommune": "VERT TOULON" + }, + { + "codePostal": "51130", + "codeCommune": "51612", + "libelleAcheminement": "BLANCS COTEAUX", + "nomCommune": "BLANCS COTEAUX" + }, + { + "codePostal": "51240", + "codeCommune": "51616", + "libelleAcheminement": "VESIGNEUL SUR MARNE", + "nomCommune": "VESIGNEUL SUR MARNE" + }, + { + "codePostal": "51210", + "codeCommune": "51618", + "libelleAcheminement": "LE VEZIER", + "nomCommune": "LE VEZIER" + }, + { + "codePostal": "51390", + "codeCommune": "51622", + "libelleAcheminement": "VILLE DOMMANGE", + "nomCommune": "VILLE DOMMANGE" + }, + { + "codePostal": "51170", + "codeCommune": "51624", "libelleAcheminement": "VILLE EN TARDENOIS", "nomCommune": "VILLE EN TARDENOIS" }, { - "codePostal": "51120", - "codeCommune": "51626", - "libelleAcheminement": "LA VILLENEUVE LES CHARLEVILLE", - "nomCommune": "LA VILLENEUVE LES CHARLEVILLE" + "codePostal": "51130", + "codeCommune": "51627", + "libelleAcheminement": "VILLENEUVE RENNEVILLE CHEVIGNY", + "nomCommune": "VILLENEUVE RENNEVILLE CHEVIGNY" }, { "codePostal": "51130", @@ -13356,46 +13290,40 @@ "nomCommune": "VILLERS AUX BOIS" }, { - "codePostal": "51220", - "codeCommune": "51633", - "libelleAcheminement": "VILLERS FRANQUEUX", - "nomCommune": "VILLERS FRANQUEUX" - }, - { - "codePostal": "51250", - "codeCommune": "51635", - "libelleAcheminement": "VILLERS LE SEC", - "nomCommune": "VILLERS LE SEC" + "codePostal": "51800", + "codeCommune": "51632", + "libelleAcheminement": "VILLERS EN ARGONNE", + "nomCommune": "VILLERS EN ARGONNE" }, { - "codePostal": "51800", - "codeCommune": "51640", - "libelleAcheminement": "VILLE SUR TOURBE", - "nomCommune": "VILLE SUR TOURBE" + "codePostal": "51510", + "codeCommune": "51634", + "libelleAcheminement": "VILLERS LE CHATEAU", + "nomCommune": "VILLERS LE CHATEAU" }, { - "codePostal": "51270", - "codeCommune": "51641", - "libelleAcheminement": "VILLEVENARD", - "nomCommune": "VILLEVENARD" + "codePostal": "51380", + "codeCommune": "51636", + "libelleAcheminement": "VILLERS MARMERY", + "nomCommune": "VILLERS MARMERY" }, { - "codePostal": "51300", - "codeCommune": "51647", - "libelleAcheminement": "VITRY EN PERTHOIS", - "nomCommune": "VITRY EN PERTHOIS" + "codePostal": "51130", + "codeCommune": "51638", + "libelleAcheminement": "VILLESENEUX", + "nomCommune": "VILLESENEUX" }, { - "codePostal": "51240", - "codeCommune": "51648", - "libelleAcheminement": "VITRY LA VILLE", - "nomCommune": "VITRY LA VILLE" + "codePostal": "51260", + "codeCommune": "51642", + "libelleAcheminement": "VILLIERS AUX CORNEILLES", + "nomCommune": "VILLIERS AUX CORNEILLES" }, { - "codePostal": "51240", - "codeCommune": "51648", - "libelleAcheminement": "VITRY LA VILLE", - "nomCommune": "VITRY LA VILLE" + "codePostal": "51700", + "codeCommune": "51644", + "libelleAcheminement": "VINCELLES", + "nomCommune": "VINCELLES" }, { "codePostal": "51800", @@ -13404,46 +13332,64 @@ "nomCommune": "VOILEMONT" }, { - "codePostal": "51130", - "codeCommune": "51655", - "libelleAcheminement": "VOUZY", - "nomCommune": "VOUZY" + "codePostal": "51260", + "codeCommune": "51652", + "libelleAcheminement": "VOUARCES", + "nomCommune": "VOUARCES" }, { - "codePostal": "51390", - "codeCommune": "51657", - "libelleAcheminement": "VRIGNY", - "nomCommune": "VRIGNY" + "codePostal": "51800", + "codeCommune": "51659", + "libelleAcheminement": "WARGEMOULIN HURLUS", + "nomCommune": "WARGEMOULIN HURLUS" }, { - "codePostal": "51530", - "codeCommune": "51663", - "libelleAcheminement": "MAGENTA", - "nomCommune": "MAGENTA" + "codePostal": "51420", + "codeCommune": "51662", + "libelleAcheminement": "WITRY LES REIMS", + "nomCommune": "WITRY LES REIMS" }, { - "codePostal": "52230", - "codeCommune": "52004", - "libelleAcheminement": "AINGOULAINCOURT", - "nomCommune": "AINGOULAINCOURT" + "codePostal": "52340", + "codeCommune": "52001", + "libelleAcheminement": "AGEVILLE", + "nomCommune": "AGEVILLE" }, { - "codePostal": "52700", - "codeCommune": "52008", - "libelleAcheminement": "ANDELOT BLANCHEVILLE", - "nomCommune": "ANDELOT BLANCHEVILLE" + "codePostal": "52310", + "codeCommune": "52011", + "libelleAcheminement": "ANNEVILLE LA PRAIRIE", + "nomCommune": "ANNEVILLE LA PRAIRIE" }, { - "codePostal": "52360", - "codeCommune": "52009", - "libelleAcheminement": "ANDILLY EN BASSIGNY", - "nomCommune": "ANDILLY EN BASSIGNY" + "codePostal": "52110", + "codeCommune": "52019", + "libelleAcheminement": "ARNANCOURT", + "nomCommune": "ARNANCOURT" }, { - "codePostal": "52230", - "codeCommune": "52012", - "libelleAcheminement": "ANNONVILLE", - "nomCommune": "ANNONVILLE" + "codePostal": "52240", + "codeCommune": "52025", + "libelleAcheminement": "AUDELONCOURT", + "nomCommune": "AUDELONCOURT" + }, + { + "codePostal": "52330", + "codeCommune": "52031", + "libelleAcheminement": "AUTREVILLE SUR LA RENNE", + "nomCommune": "AUTREVILLE SUR LA RENNE" + }, + { + "codePostal": "52250", + "codeCommune": "52035", + "libelleAcheminement": "BAISSEY", + "nomCommune": "BAISSEY" + }, + { + "codePostal": "52160", + "codeCommune": "52040", + "libelleAcheminement": "BAY SUR AUBE", + "nomCommune": "BAY SUR AUBE" }, { "codePostal": "52270", @@ -13452,10 +13398,22 @@ "nomCommune": "ROCHES BETTAINCOURT" }, { - "codePostal": "52120", - "codeCommune": "52056", - "libelleAcheminement": "BLESSONVILLE", - "nomCommune": "BLESSONVILLE" + "codePostal": "52270", + "codeCommune": "52044", + "libelleAcheminement": "ROCHES BETTAINCOURT", + "nomCommune": "ROCHES BETTAINCOURT" + }, + { + "codePostal": "52100", + "codeCommune": "52045", + "libelleAcheminement": "BETTANCOURT LA FERREE", + "nomCommune": "BETTANCOURT LA FERREE" + }, + { + "codePostal": "52340", + "codeCommune": "52050", + "libelleAcheminement": "BIESLES", + "nomCommune": "BIESLES" }, { "codePostal": "52310", @@ -13464,16 +13422,10 @@ "nomCommune": "BOLOGNE" }, { - "codePostal": "52360", - "codeCommune": "52059", - "libelleAcheminement": "BONNECOURT", - "nomCommune": "BONNECOURT" - }, - { - "codePostal": "52400", - "codeCommune": "52060", - "libelleAcheminement": "BOURBONNE LES BAINS", - "nomCommune": "BOURBONNE LES BAINS" + "codePostal": "52200", + "codeCommune": "52062", + "libelleAcheminement": "BOURG", + "nomCommune": "BOURG" }, { "codePostal": "52150", @@ -13482,34 +13434,16 @@ "nomCommune": "BOURMONT ENTRE MEUSE ET MOUZON" }, { - "codePostal": "52240", - "codeCommune": "52074", - "libelleAcheminement": "BREUVANNES EN BASSIGNY", - "nomCommune": "BREUVANNES EN BASSIGNY" - }, - { - "codePostal": "52120", - "codeCommune": "52076", - "libelleAcheminement": "BRICON", - "nomCommune": "BRICON" - }, - { - "codePostal": "52500", - "codeCommune": "52083", - "libelleAcheminement": "CHAMPSEVRAINE", - "nomCommune": "CHAMPSEVRAINE" - }, - { - "codePostal": "52500", - "codeCommune": "52083", - "libelleAcheminement": "CHAMPSEVRAINE", - "nomCommune": "CHAMPSEVRAINE" + "codePostal": "52110", + "codeCommune": "52065", + "libelleAcheminement": "BOUZANCOURT", + "nomCommune": "BOUZANCOURT" }, { - "codePostal": "52700", - "codeCommune": "52084", - "libelleAcheminement": "BUSSON", - "nomCommune": "BUSSON" + "codePostal": "52210", + "codeCommune": "52082", + "libelleAcheminement": "BUGNIERES", + "nomCommune": "BUGNIERES" }, { "codePostal": "52220", @@ -13517,53 +13451,23 @@ "libelleAcheminement": "CEFFONDS", "nomCommune": "CEFFONDS" }, - { - "codePostal": "52160", - "codeCommune": "52094", - "libelleAcheminement": "VALS DES TILLES", - "nomCommune": "VALS DES TILLES" - }, { "codePostal": "52700", - "codeCommune": "52097", - "libelleAcheminement": "CHAMBRONCOURT", - "nomCommune": "CHAMBRONCOURT" + "codeCommune": "52095", + "libelleAcheminement": "CHALVRAINES", + "nomCommune": "CHALVRAINES" }, { - "codePostal": "52400", - "codeCommune": "52103", - "libelleAcheminement": "CHAMPIGNY SOUS VARENNES", - "nomCommune": "CHAMPIGNY SOUS VARENNES" + "codePostal": "52200", + "codeCommune": "52102", + "libelleAcheminement": "CHAMPIGNY LES LANGRES", + "nomCommune": "CHAMPIGNY LES LANGRES" }, { "codePostal": "52360", - "codeCommune": "52105", - "libelleAcheminement": "CHANGEY", - "nomCommune": "CHANGEY" - }, - { - "codePostal": "52120", - "codeCommune": "52114", - "libelleAcheminement": "CHATEAUVILLAIN", - "nomCommune": "CHATEAUVILLAIN" - }, - { - "codePostal": "52300", - "codeCommune": "52118", - "libelleAcheminement": "CHATONRUPT SOMMERMONT", - "nomCommune": "CHATONRUPT SOMMERMONT" - }, - { - "codePostal": "52600", - "codeCommune": "52119", - "libelleAcheminement": "CHAUDENAY", - "nomCommune": "CHAUDENAY" - }, - { - "codePostal": "52000", - "codeCommune": "52121", - "libelleAcheminement": "CHAUMONT", - "nomCommune": "CHAUMONT" + "codeCommune": "52108", + "libelleAcheminement": "CHARMES", + "nomCommune": "CHARMES" }, { "codePostal": "52000", @@ -13578,88 +13482,34 @@ "nomCommune": "CHEVILLON" }, { - "codePostal": "52190", - "codeCommune": "52126", - "libelleAcheminement": "CHOILLEY DARDENAY", - "nomCommune": "CHOILLEY DARDENAY" - }, - { - "codePostal": "52230", - "codeCommune": "52131", - "libelleAcheminement": "CIRFONTAINES EN ORNOIS", - "nomCommune": "CIRFONTAINES EN ORNOIS" - }, - { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "52240", + "codeCommune": "52132", + "libelleAcheminement": "CLEFMONT", + "nomCommune": "CLEFMONT" }, { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "52190", + "codeCommune": "52158", + "libelleAcheminement": "CUSEY", + "nomCommune": "CUSEY" }, { - "codePostal": "52210", - "codeCommune": "52146", - "libelleAcheminement": "COUPRAY", - "nomCommune": "COUPRAY" + "codePostal": "52140", + "codeCommune": "52162", + "libelleAcheminement": "DAMMARTIN SUR MEUSE", + "nomCommune": "DAMMARTIN SUR MEUSE" }, { - "codePostal": "52300", - "codeCommune": "52156", - "libelleAcheminement": "CUREL", - "nomCommune": "CUREL" + "codePostal": "52700", + "codeCommune": "52167", + "libelleAcheminement": "DARMANNES", + "nomCommune": "DARMANNES" }, { "codePostal": "52110", - "codeCommune": "52160", - "libelleAcheminement": "DAILLANCOURT", - "nomCommune": "DAILLANCOURT" - }, - { - "codePostal": "52360", - "codeCommune": "52163", - "libelleAcheminement": "DAMPIERRE", - "nomCommune": "DAMPIERRE" - }, - { - "codePostal": "52210", - "codeCommune": "52165", - "libelleAcheminement": "DANCEVOIR", - "nomCommune": "DANCEVOIR" - }, - { - "codePostal": "52120", - "codeCommune": "52168", - "libelleAcheminement": "DINTEVILLE", - "nomCommune": "DINTEVILLE" - }, - { - "codePostal": "52300", - "codeCommune": "52175", - "libelleAcheminement": "DONJEUX", - "nomCommune": "DONJEUX" - }, - { - "codePostal": "52130", - "codeCommune": "52179", - "libelleAcheminement": "DOULEVANT LE PETIT", - "nomCommune": "DOULEVANT LE PETIT" - }, - { - "codePostal": "52290", - "codeCommune": "52182", - "libelleAcheminement": "ECLARON BRAUCOURT STE LIVIERE", - "nomCommune": "ECLARON BRAUCOURT STE LIVIERE" - }, - { - "codePostal": "52290", - "codeCommune": "52182", - "libelleAcheminement": "ECLARON BRAUCOURT STE LIVIERE", - "nomCommune": "ECLARON BRAUCOURT STE LIVIERE" + "codeCommune": "52178", + "libelleAcheminement": "DOULEVANT LE CHATEAU", + "nomCommune": "DOULEVANT LE CHATEAU" }, { "codePostal": "52290", @@ -13667,12 +13517,6 @@ "libelleAcheminement": "ECLARON BRAUCOURT STE LIVIERE", "nomCommune": "ECLARON BRAUCOURT STE LIVIERE" }, - { - "codePostal": "52700", - "codeCommune": "52183", - "libelleAcheminement": "ECOT LA COMBE", - "nomCommune": "ECOT LA COMBE" - }, { "codePostal": "52300", "codeCommune": "52184", @@ -13680,34 +13524,28 @@ "nomCommune": "EFFINCOURT" }, { - "codePostal": "52190", - "codeCommune": "52189", - "libelleAcheminement": "LE VAL D ESNOMS", - "nomCommune": "LE VAL D ESNOMS" - }, - { - "codePostal": "52340", - "codeCommune": "52190", - "libelleAcheminement": "ESNOUVEAUX", - "nomCommune": "ESNOUVEAUX" + "codePostal": "52230", + "codeCommune": "52187", + "libelleAcheminement": "EPIZON", + "nomCommune": "EPIZON" }, { - "codePostal": "52000", - "codeCommune": "52193", - "libelleAcheminement": "EUFFIGNEIX", - "nomCommune": "EUFFIGNEIX" + "codePostal": "52270", + "codeCommune": "52187", + "libelleAcheminement": "EPIZON", + "nomCommune": "EPIZON" }, { - "codePostal": "52130", - "codeCommune": "52198", - "libelleAcheminement": "FAYS", - "nomCommune": "FAYS" + "codePostal": "52500", + "codeCommune": "52197", + "libelleAcheminement": "FAYL BILLOT", + "nomCommune": "FAYL BILLOT" }, { - "codePostal": "52400", - "codeCommune": "52208", - "libelleAcheminement": "FRESNES SUR APANCE", - "nomCommune": "FRESNES SUR APANCE" + "codePostal": "52320", + "codeCommune": "52211", + "libelleAcheminement": "FRONCLES", + "nomCommune": "FRONCLES" }, { "codePostal": "52320", @@ -13716,34 +13554,34 @@ "nomCommune": "FRONCLES" }, { - "codePostal": "52150", - "codeCommune": "52227", - "libelleAcheminement": "GRAFFIGNY CHEMIN", - "nomCommune": "GRAFFIGNY CHEMIN" + "codePostal": "52320", + "codeCommune": "52214", + "libelleAcheminement": "LA GENEVROYE", + "nomCommune": "LA GENEVROYE" }, { - "codePostal": "52500", - "codeCommune": "52229", - "libelleAcheminement": "GRENANT", - "nomCommune": "GRENANT" + "codePostal": "52230", + "codeCommune": "52218", + "libelleAcheminement": "GERMAY", + "nomCommune": "GERMAY" }, { - "codePostal": "52300", - "codeCommune": "52231", - "libelleAcheminement": "GUINDRECOURT AUX ORMES", - "nomCommune": "GUINDRECOURT AUX ORMES" + "codePostal": "52210", + "codeCommune": "52220", + "libelleAcheminement": "GIEY SUR AUJON", + "nomCommune": "GIEY SUR AUJON" }, { - "codePostal": "52150", - "codeCommune": "52237", - "libelleAcheminement": "HARREVILLE LES CHANTEURS", - "nomCommune": "HARREVILLE LES CHANTEURS" + "codePostal": "52330", + "codeCommune": "52221", + "libelleAcheminement": "GILLANCOURT", + "nomCommune": "GILLANCOURT" }, { - "codePostal": "52600", - "codeCommune": "52240", - "libelleAcheminement": "HEUILLEY LE GRAND", - "nomCommune": "HEUILLEY LE GRAND" + "codePostal": "52330", + "codeCommune": "52232", + "libelleAcheminement": "GUINDRECOURT SUR BLAISE", + "nomCommune": "GUINDRECOURT SUR BLAISE" }, { "codePostal": "52600", @@ -13751,6 +13589,18 @@ "libelleAcheminement": "HAUTE AMANCE", "nomCommune": "HAUTE AMANCE" }, + { + "codePostal": "52150", + "codeCommune": "52243", + "libelleAcheminement": "HUILLIECOURT", + "nomCommune": "HUILLIECOURT" + }, + { + "codePostal": "52200", + "codeCommune": "52246", + "libelleAcheminement": "HUMES JORQUENAY", + "nomCommune": "HUMES JORQUENAY" + }, { "codePostal": "52000", "codeCommune": "52251", @@ -13758,16 +13608,10 @@ "nomCommune": "JONCHERY" }, { - "codePostal": "52120", - "codeCommune": "52258", - "libelleAcheminement": "LAFERTE SUR AUBE", - "nomCommune": "LAFERTE SUR AUBE" - }, - { - "codePostal": "52400", - "codeCommune": "52264", - "libelleAcheminement": "LANEUVELLE", - "nomCommune": "LANEUVELLE" + "codePostal": "52500", + "codeCommune": "52257", + "libelleAcheminement": "LAFERTE SUR AMANCE", + "nomCommune": "LAFERTE SUR AMANCE" }, { "codePostal": "52170", @@ -13776,10 +13620,28 @@ "nomCommune": "BAYARD SUR MARNE" }, { - "codePostal": "52170", - "codeCommune": "52265", - "libelleAcheminement": "BAYARD SUR MARNE", - "nomCommune": "BAYARD SUR MARNE" + "codePostal": "52100", + "codeCommune": "52267", + "libelleAcheminement": "LANEUVILLE AU PONT", + "nomCommune": "LANEUVILLE AU PONT" + }, + { + "codePostal": "52120", + "codeCommune": "52272", + "libelleAcheminement": "LANTY SUR AUBE", + "nomCommune": "LANTY SUR AUBE" + }, + { + "codePostal": "52400", + "codeCommune": "52273", + "libelleAcheminement": "LARIVIERE ARNONCOURT", + "nomCommune": "LARIVIERE ARNONCOURT" + }, + { + "codePostal": "52120", + "codeCommune": "52274", + "libelleAcheminement": "LATRECEY ORMOY SUR AUBE", + "nomCommune": "LATRECEY ORMOY SUR AUBE" }, { "codePostal": "52140", @@ -13793,12 +13655,6 @@ "libelleAcheminement": "LAVILLENEUVE AU ROI", "nomCommune": "LAVILLENEUVE AU ROI" }, - { - "codePostal": "52210", - "codeCommune": "52282", - "libelleAcheminement": "LEFFONDS", - "nomCommune": "LEFFONDS" - }, { "codePostal": "52110", "codeCommune": "52284", @@ -13806,28 +13662,22 @@ "nomCommune": "LESCHERES SUR LE BLAISERON" }, { - "codePostal": "52230", - "codeCommune": "52288", - "libelleAcheminement": "LEZEVILLE", - "nomCommune": "LEZEVILLE" - }, - { - "codePostal": "52240", - "codeCommune": "52291", - "libelleAcheminement": "LONGCHAMP", - "nomCommune": "LONGCHAMP" + "codePostal": "52700", + "codeCommune": "52289", + "libelleAcheminement": "LIFFOL LE PETIT", + "nomCommune": "LIFFOL LE PETIT" }, { - "codePostal": "52250", - "codeCommune": "52292", - "libelleAcheminement": "LONGEAU PERCEY", - "nomCommune": "LONGEAU PERCEY" + "codePostal": "52500", + "codeCommune": "52298", + "libelleAcheminement": "MAATZ", + "nomCommune": "MAATZ" }, { - "codePostal": "52240", - "codeCommune": "52301", - "libelleAcheminement": "MAISONCELLES", - "nomCommune": "MAISONCELLES" + "codePostal": "52300", + "codeCommune": "52302", + "libelleAcheminement": "MAIZIERES", + "nomCommune": "MAIZIERES" }, { "codePostal": "52700", @@ -13836,58 +13686,58 @@ "nomCommune": "MANOIS" }, { - "codePostal": "52400", - "codeCommune": "52328", - "libelleAcheminement": "MONTCHARVOT", - "nomCommune": "MONTCHARVOT" + "codePostal": "52370", + "codeCommune": "52308", + "libelleAcheminement": "MARANVILLE", + "nomCommune": "MARANVILLE" }, { - "codePostal": "52330", - "codeCommune": "52330", - "libelleAcheminement": "MONTHERIES", - "nomCommune": "MONTHERIES" + "codePostal": "52400", + "codeCommune": "52318", + "libelleAcheminement": "MELAY", + "nomCommune": "MELAY" }, { - "codePostal": "52700", - "codeCommune": "52342", - "libelleAcheminement": "MORIONVILLIERS", - "nomCommune": "MORIONVILLIERS" + "codePostal": "52240", + "codeCommune": "52325", + "libelleAcheminement": "MILLIERES", + "nomCommune": "MILLIERES" }, { - "codePostal": "52400", - "codeCommune": "52350", - "libelleAcheminement": "NEUVELLE LES VOISEY", - "nomCommune": "NEUVELLE LES VOISEY" + "codePostal": "52100", + "codeCommune": "52327", + "libelleAcheminement": "MOESLAINS", + "nomCommune": "MOESLAINS" }, { - "codePostal": "52800", - "codeCommune": "52353", - "libelleAcheminement": "NOGENT", - "nomCommune": "NOGENT" + "codePostal": "52140", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "52300", - "codeCommune": "52356", - "libelleAcheminement": "NOMECOURT", - "nomCommune": "NOMECOURT" + "codePostal": "52140", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "52230", - "codeCommune": "52357", - "libelleAcheminement": "NONCOURT SUR LE RONGEANT", - "nomCommune": "NONCOURT SUR LE RONGEANT" + "codePostal": "52170", + "codeCommune": "52347", + "libelleAcheminement": "NARCY", + "nomCommune": "NARCY" }, { - "codePostal": "52360", - "codeCommune": "52363", - "libelleAcheminement": "ORBIGNY AU VAL", - "nomCommune": "ORBIGNY AU VAL" + "codePostal": "52400", + "codeCommune": "52350", + "libelleAcheminement": "NEUVELLE LES VOISEY", + "nomCommune": "NEUVELLE LES VOISEY" }, { - "codePostal": "52700", - "codeCommune": "52369", - "libelleAcheminement": "ORQUEVAUX", - "nomCommune": "ORQUEVAUX" + "codePostal": "52240", + "codeCommune": "52358", + "libelleAcheminement": "NOYERS", + "nomCommune": "NOYERS" }, { "codePostal": "52310", @@ -13895,6 +13745,12 @@ "libelleAcheminement": "OUDINCOURT", "nomCommune": "OUDINCOURT" }, + { + "codePostal": "52700", + "codeCommune": "52373", + "libelleAcheminement": "OZIERES", + "nomCommune": "OZIERES" + }, { "codePostal": "52600", "codeCommune": "52374", @@ -13902,22 +13758,16 @@ "nomCommune": "LE PAILLY" }, { - "codePostal": "52400", - "codeCommune": "52377", - "libelleAcheminement": "PARNOY EN BASSIGNY", - "nomCommune": "PARNOY EN BASSIGNY" - }, - { - "codePostal": "52200", - "codeCommune": "52383", - "libelleAcheminement": "PERRANCEY LES VIEUX MOULINS", - "nomCommune": "PERRANCEY LES VIEUX MOULINS" + "codePostal": "52160", + "codeCommune": "52384", + "libelleAcheminement": "PERROGNEY LES FONTAINES", + "nomCommune": "PERROGNEY LES FONTAINES" }, { - "codePostal": "52500", - "codeCommune": "52388", - "libelleAcheminement": "PIERREMONT SUR AMANCE", - "nomCommune": "PIERREMONT SUR AMANCE" + "codePostal": "52100", + "codeCommune": "52386", + "libelleAcheminement": "PERTHES", + "nomCommune": "PERTHES" }, { "codePostal": "52220", @@ -13926,10 +13776,10 @@ "nomCommune": "PLANRUPT" }, { - "codePostal": "52160", - "codeCommune": "52395", - "libelleAcheminement": "POINSON LES GRANCEY", - "nomCommune": "POINSON LES GRANCEY" + "codePostal": "52800", + "codeCommune": "52396", + "libelleAcheminement": "POINSON LES NOGENT", + "nomCommune": "POINSON LES NOGENT" }, { "codePostal": "52360", @@ -13937,12 +13787,6 @@ "libelleAcheminement": "POISEUL", "nomCommune": "POISEUL" }, - { - "codePostal": "52230", - "codeCommune": "52398", - "libelleAcheminement": "POISSONS", - "nomCommune": "POISSONS" - }, { "codePostal": "52400", "codeCommune": "52400", @@ -13950,22 +13794,10 @@ "nomCommune": "LE CHATELET SUR MEUSE" }, { - "codePostal": "52160", - "codeCommune": "52403", - "libelleAcheminement": "PRASLAY", - "nomCommune": "PRASLAY" - }, - { - "codePostal": "52190", - "codeCommune": "52405", - "libelleAcheminement": "LE MONTSAUGEONNAIS", - "nomCommune": "LE MONTSAUGEONNAIS" - }, - { - "codePostal": "52500", - "codeCommune": "52406", - "libelleAcheminement": "PRESSIGNY", - "nomCommune": "PRESSIGNY" + "codePostal": "52800", + "codeCommune": "52401", + "libelleAcheminement": "POULANGY", + "nomCommune": "POULANGY" }, { "codePostal": "52220", @@ -13973,18 +13805,6 @@ "libelleAcheminement": "RIVES DERVOISES", "nomCommune": "RIVES DERVOISES" }, - { - "codePostal": "52130", - "codeCommune": "52413", - "libelleAcheminement": "RACHECOURT SUZEMONT", - "nomCommune": "RACHECOURT SUZEMONT" - }, - { - "codePostal": "52120", - "codeCommune": "52422", - "libelleAcheminement": "RICHEBOURG", - "nomCommune": "RICHEBOURG" - }, { "codePostal": "52410", "codeCommune": "52429", @@ -13998,10 +13818,40 @@ "nomCommune": "ROLAMPONT" }, { - "codePostal": "52100", - "codeCommune": "52448", - "libelleAcheminement": "ST DIZIER", - "nomCommune": "ST DIZIER" + "codePostal": "52300", + "codeCommune": "52442", + "libelleAcheminement": "RUPT", + "nomCommune": "RUPT" + }, + { + "codePostal": "52200", + "codeCommune": "52447", + "libelleAcheminement": "ST CIERGUES", + "nomCommune": "ST CIERGUES" + }, + { + "codePostal": "52300", + "codeCommune": "52456", + "libelleAcheminement": "ST URBAIN MACONCOURT", + "nomCommune": "ST URBAIN MACONCOURT" + }, + { + "codePostal": "52300", + "codeCommune": "52456", + "libelleAcheminement": "ST URBAIN MACONCOURT", + "nomCommune": "ST URBAIN MACONCOURT" + }, + { + "codePostal": "52230", + "codeCommune": "52463", + "libelleAcheminement": "SAUDRON", + "nomCommune": "SAUDRON" + }, + { + "codePostal": "52140", + "codeCommune": "52465", + "libelleAcheminement": "SAULXURES", + "nomCommune": "SAULXURES" }, { "codePostal": "52500", @@ -14010,76 +13860,88 @@ "nomCommune": "SAVIGNY" }, { - "codePostal": "52330", - "codeCommune": "52472", - "libelleAcheminement": "SEXFONTAINES", - "nomCommune": "SEXFONTAINES" + "codePostal": "52210", + "codeCommune": "52486", + "libelleAcheminement": "TERNAT", + "nomCommune": "TERNAT" }, { - "codePostal": "52700", - "codeCommune": "52473", - "libelleAcheminement": "SIGNEVILLE", - "nomCommune": "SIGNEVILLE" + "codePostal": "52800", + "codeCommune": "52488", + "libelleAcheminement": "THIVET", + "nomCommune": "THIVET" }, { - "codePostal": "52120", - "codeCommune": "52474", - "libelleAcheminement": "SILVAROUVRES", - "nomCommune": "SILVAROUVRES" + "codePostal": "52000", + "codeCommune": "52494", + "libelleAcheminement": "TREIX", + "nomCommune": "TREIX" }, { - "codePostal": "52220", - "codeCommune": "52479", - "libelleAcheminement": "SOMMEVOIRE", - "nomCommune": "SOMMEVOIRE" + "codePostal": "52500", + "codeCommune": "52503", + "libelleAcheminement": "VALLEROY", + "nomCommune": "VALLEROY" }, { - "codePostal": "52130", - "codeCommune": "52497", - "libelleAcheminement": "TROISFONTAINES LA VILLE", - "nomCommune": "TROISFONTAINES LA VILLE" + "codePostal": "52150", + "codeCommune": "52505", + "libelleAcheminement": "VAUDRECOURT", + "nomCommune": "VAUDRECOURT" }, { - "codePostal": "52130", - "codeCommune": "52502", - "libelleAcheminement": "VALLERET", - "nomCommune": "VALLERET" + "codePostal": "52400", + "codeCommune": "52520", + "libelleAcheminement": "VICQ", + "nomCommune": "VICQ" }, { - "codePostal": "52250", - "codeCommune": "52515", - "libelleAcheminement": "VERSEILLES LE BAS", - "nomCommune": "VERSEILLES LE BAS" + "codePostal": "52700", + "codeCommune": "52523", + "libelleAcheminement": "VIGNES LA COTE", + "nomCommune": "VIGNES LA COTE" }, { "codePostal": "52190", - "codeCommune": "52519", - "libelleAcheminement": "VESVRES SOUS CHALANCEY", - "nomCommune": "VESVRES SOUS CHALANCEY" + "codeCommune": "52529", + "libelleAcheminement": "VILLEGUSIEN LE LAC", + "nomCommune": "VILLEGUSIEN LE LAC" }, { - "codePostal": "52700", - "codeCommune": "52523", - "libelleAcheminement": "VIGNES LA COTE", - "nomCommune": "VIGNES LA COTE" + "codePostal": "52190", + "codeCommune": "52529", + "libelleAcheminement": "VILLEGUSIEN LE LAC", + "nomCommune": "VILLEGUSIEN LE LAC" }, { - "codePostal": "52320", - "codeCommune": "52524", - "libelleAcheminement": "VIGNORY", - "nomCommune": "VIGNORY" + "codePostal": "52190", + "codeCommune": "52536", + "libelleAcheminement": "VILLIERS LES APREY", + "nomCommune": "VILLIERS LES APREY" }, { - "codePostal": "53300", - "codeCommune": "53003", - "libelleAcheminement": "AMBRIERES LES VALLEES", - "nomCommune": "AMBRIERES LES VALLEES" + "codePostal": "52160", + "codeCommune": "52540", + "libelleAcheminement": "VITRY EN MONTAGNE", + "nomCommune": "VITRY EN MONTAGNE" }, { - "codePostal": "53440", - "codeCommune": "53008", - "libelleAcheminement": "ARON", - "nomCommune": "ARON" + "codePostal": "52800", + "codeCommune": "52541", + "libelleAcheminement": "VITRY LES NOGENT", + "nomCommune": "VITRY LES NOGENT" + }, + { + "codePostal": "52200", + "codeCommune": "52545", + "libelleAcheminement": "VOISINES", + "nomCommune": "VOISINES" + }, + { + "codePostal": "52240", + "codeCommune": "52549", + "libelleAcheminement": "VRONCOURT LA COTE", + "nomCommune": "VRONCOURT LA COTE" }, { "codePostal": "53240", @@ -14088,34 +13950,40 @@ "nomCommune": "LA BACONNIERE" }, { - "codePostal": "53170", - "codeCommune": "53022", - "libelleAcheminement": "LA BAZOUGE DE CHEMERE", - "nomCommune": "LA BAZOUGE DE CHEMERE" + "codePostal": "53350", + "codeCommune": "53018", + "libelleAcheminement": "BALLOTS", + "nomCommune": "BALLOTS" }, { "codePostal": "53440", - "codeCommune": "53028", - "libelleAcheminement": "BELGEARD", - "nomCommune": "BELGEARD" + "codeCommune": "53021", + "libelleAcheminement": "LA BAZOGE MONTPINCON", + "nomCommune": "LA BAZOGE MONTPINCON" }, { - "codePostal": "53800", - "codeCommune": "53033", - "libelleAcheminement": "LA BOISSIERE", - "nomCommune": "LA BOISSIERE" + "codePostal": "53320", + "codeCommune": "53026", + "libelleAcheminement": "BEAULIEU SUR OUDON", + "nomCommune": "BEAULIEU SUR OUDON" }, { - "codePostal": "53800", - "codeCommune": "53035", - "libelleAcheminement": "BOUCHAMPS LES CRAON", - "nomCommune": "BOUCHAMPS LES CRAON" + "codePostal": "53290", + "codeCommune": "53029", + "libelleAcheminement": "BIERNE LES VILLAGES", + "nomCommune": "BIERNE LES VILLAGES" }, { - "codePostal": "53290", - "codeCommune": "53036", - "libelleAcheminement": "BOUERE", - "nomCommune": "BOUERE" + "codePostal": "53170", + "codeCommune": "53030", + "libelleAcheminement": "LE BIGNON DU MAINE", + "nomCommune": "LE BIGNON DU MAINE" + }, + { + "codePostal": "53960", + "codeCommune": "53034", + "libelleAcheminement": "BONCHAMP LES LAVAL", + "nomCommune": "BONCHAMP LES LAVAL" }, { "codePostal": "53370", @@ -14124,16 +13992,10 @@ "nomCommune": "BOULAY LES IFS" }, { - "codePostal": "53410", - "codeCommune": "53039", - "libelleAcheminement": "LE BOURGNEUF LA FORET", - "nomCommune": "LE BOURGNEUF LA FORET" - }, - { - "codePostal": "53410", - "codeCommune": "53040", - "libelleAcheminement": "BOURGON", - "nomCommune": "BOURGON" + "codePostal": "53350", + "codeCommune": "53041", + "libelleAcheminement": "BRAINS SUR LES MARCHES", + "nomCommune": "BRAINS SUR LES MARCHES" }, { "codePostal": "53120", @@ -14142,94 +14004,112 @@ "nomCommune": "CARELLES" }, { - "codePostal": "53250", - "codeCommune": "53061", - "libelleAcheminement": "CHARCHIGNE", - "nomCommune": "CHARCHIGNE" + "codePostal": "53300", + "codeCommune": "53055", + "libelleAcheminement": "CHANTRIGNE", + "nomCommune": "CHANTRIGNE" }, { - "codePostal": "53250", - "codeCommune": "53069", - "libelleAcheminement": "CHEVAIGNE DU MAINE", - "nomCommune": "CHEVAIGNE DU MAINE" + "codePostal": "53200", + "codeCommune": "53062", + "libelleAcheminement": "CHATEAU GONTIER SUR MAYENNE", + "nomCommune": "CHATEAU GONTIER SUR MAYENNE" }, { - "codePostal": "53120", - "codeCommune": "53071", - "libelleAcheminement": "COLOMBIERS DU PLESSIS", - "nomCommune": "COLOMBIERS DU PLESSIS" + "codePostal": "53100", + "codeCommune": "53064", + "libelleAcheminement": "CHATILLON SUR COLMONT", + "nomCommune": "CHATILLON SUR COLMONT" }, { - "codePostal": "53230", - "codeCommune": "53077", - "libelleAcheminement": "COSSE LE VIVIEN", - "nomCommune": "COSSE LE VIVIEN" + "codePostal": "53340", + "codeCommune": "53067", + "libelleAcheminement": "CHEMERE LE ROI", + "nomCommune": "CHEMERE LE ROI" }, { - "codePostal": "53500", - "codeCommune": "53096", - "libelleAcheminement": "ERNEE", - "nomCommune": "ERNEE" + "codePostal": "53340", + "codeCommune": "53076", + "libelleAcheminement": "COSSE EN CHAMPAGNE", + "nomCommune": "COSSE EN CHAMPAGNE" }, { - "codePostal": "53440", - "codeCommune": "53109", - "libelleAcheminement": "GRAZAY", - "nomCommune": "GRAZAY" + "codePostal": "53200", + "codeCommune": "53089", + "libelleAcheminement": "DAON", + "nomCommune": "DAON" }, { - "codePostal": "53300", - "codeCommune": "53111", - "libelleAcheminement": "LA HAIE TRAVERSAINE", - "nomCommune": "LA HAIE TRAVERSAINE" + "codePostal": "53400", + "codeCommune": "53090", + "libelleAcheminement": "DENAZE", + "nomCommune": "DENAZE" }, { - "codePostal": "53250", - "codeCommune": "53112", - "libelleAcheminement": "LE HAM", - "nomCommune": "LE HAM" + "codePostal": "53150", + "codeCommune": "53097", + "libelleAcheminement": "EVRON", + "nomCommune": "EVRON" }, { - "codePostal": "53220", - "codeCommune": "53126", - "libelleAcheminement": "LARCHAMP", - "nomCommune": "LARCHAMP" + "codePostal": "53350", + "codeCommune": "53098", + "libelleAcheminement": "FONTAINE COUVERTE", + "nomCommune": "FONTAINE COUVERTE" }, { - "codePostal": "53540", - "codeCommune": "53128", - "libelleAcheminement": "LAUBRIERES", - "nomCommune": "LAUBRIERES" + "codePostal": "53940", + "codeCommune": "53103", + "libelleAcheminement": "LE GENEST ST ISLE", + "nomCommune": "LE GENEST ST ISLE" }, { - "codePostal": "53000", - "codeCommune": "53130", - "libelleAcheminement": "LAVAL", - "nomCommune": "LAVAL" + "codePostal": "53200", + "codeCommune": "53104", + "libelleAcheminement": "GENNES LONGUEFUYE", + "nomCommune": "GENNES LONGUEFUYE" }, { - "codePostal": "53140", - "codeCommune": "53133", - "libelleAcheminement": "LIGNIERES ORGERES", - "nomCommune": "LIGNIERES ORGERES" + "codePostal": "53120", + "codeCommune": "53107", + "libelleAcheminement": "GORRON", + "nomCommune": "GORRON" }, { - "codePostal": "53360", - "codeCommune": "53136", - "libelleAcheminement": "LA ROCHE NEUVILLE", - "nomCommune": "LA ROCHE NEUVILLE" + "codePostal": "53290", + "codeCommune": "53110", + "libelleAcheminement": "GREZ EN BOUERE", + "nomCommune": "GREZ EN BOUERE" }, { - "codePostal": "53320", - "codeCommune": "53137", - "libelleAcheminement": "LOIRON RUILLE", - "nomCommune": "LOIRON RUILLE" + "codePostal": "53640", + "codeCommune": "53114", + "libelleAcheminement": "HARDANGES", + "nomCommune": "HARDANGES" }, { - "codePostal": "53320", - "codeCommune": "53137", - "libelleAcheminement": "LOIRON RUILLE", - "nomCommune": "LOIRON RUILLE" + "codePostal": "53250", + "codeCommune": "53121", + "libelleAcheminement": "JAVRON LES CHAPELLES", + "nomCommune": "JAVRON LES CHAPELLES" + }, + { + "codePostal": "53110", + "codeCommune": "53127", + "libelleAcheminement": "LASSAY LES CHATEAUX", + "nomCommune": "LASSAY LES CHATEAUX" + }, + { + "codePostal": "53400", + "codeCommune": "53135", + "libelleAcheminement": "LIVRE LA TOUCHE", + "nomCommune": "LIVRE LA TOUCHE" + }, + { + "codePostal": "53200", + "codeCommune": "53145", + "libelleAcheminement": "MARIGNE PEUTON", + "nomCommune": "MARIGNE PEUTON" }, { "codePostal": "53400", @@ -14238,40 +14118,34 @@ "nomCommune": "MEE" }, { - "codePostal": "53230", - "codeCommune": "53151", - "libelleAcheminement": "MERAL", - "nomCommune": "MERAL" - }, - { - "codePostal": "53500", - "codeCommune": "53155", - "libelleAcheminement": "MONTENAY", - "nomCommune": "MONTENAY" + "codePostal": "53640", + "codeCommune": "53160", + "libelleAcheminement": "MONTREUIL POULAY", + "nomCommune": "MONTREUIL POULAY" }, { - "codePostal": "53100", - "codeCommune": "53162", - "libelleAcheminement": "MOULAY", - "nomCommune": "MOULAY" + "codePostal": "53150", + "codeCommune": "53161", + "libelleAcheminement": "MONTSURS", + "nomCommune": "MONTSURS" }, { - "codePostal": "53300", - "codeCommune": "53170", - "libelleAcheminement": "OISSEAU", - "nomCommune": "OISSEAU" + "codePostal": "53150", + "codeCommune": "53161", + "libelleAcheminement": "MONTSURS", + "nomCommune": "MONTSURS" }, { - "codePostal": "53260", - "codeCommune": "53175", - "libelleAcheminement": "PARNE SUR ROC", - "nomCommune": "PARNE SUR ROC" + "codePostal": "53150", + "codeCommune": "53161", + "libelleAcheminement": "MONTSURS", + "nomCommune": "MONTSURS" }, { - "codePostal": "53220", - "codeCommune": "53181", - "libelleAcheminement": "PONTMAIN", - "nomCommune": "PONTMAIN" + "codePostal": "53360", + "codeCommune": "53172", + "libelleAcheminement": "ORIGNE", + "nomCommune": "ORIGNE" }, { "codePostal": "53220", @@ -14280,64 +14154,40 @@ "nomCommune": "ST BERTHEVIN LA TANNIERE" }, { - "codePostal": "53140", - "codeCommune": "53204", - "libelleAcheminement": "ST CALAIS DU DESERT", - "nomCommune": "ST CALAIS DU DESERT" - }, - { - "codePostal": "53320", - "codeCommune": "53209", - "libelleAcheminement": "ST CYR LE GRAVELAIS", - "nomCommune": "ST CYR LE GRAVELAIS" - }, - { - "codePostal": "53600", - "codeCommune": "53218", - "libelleAcheminement": "STE GEMMES LE ROBERT", - "nomCommune": "STE GEMMES LE ROBERT" - }, - { - "codePostal": "53480", - "codeCommune": "53220", - "libelleAcheminement": "ST GEORGES LE FLECHARD", - "nomCommune": "ST GEORGES LE FLECHARD" - }, - { - "codePostal": "53600", - "codeCommune": "53221", - "libelleAcheminement": "ST GEORGES SUR ERVE", - "nomCommune": "ST GEORGES SUR ERVE" + "codePostal": "53290", + "codeCommune": "53210", + "libelleAcheminement": "ST DENIS D ANJOU", + "nomCommune": "ST DENIS D ANJOU" }, { - "codePostal": "53700", - "codeCommune": "53223", - "libelleAcheminement": "ST GERMAIN DE COULAMER", - "nomCommune": "ST GERMAIN DE COULAMER" + "codePostal": "53170", + "codeCommune": "53212", + "libelleAcheminement": "ST DENIS DU MAINE", + "nomCommune": "ST DENIS DU MAINE" }, { - "codePostal": "53240", - "codeCommune": "53229", - "libelleAcheminement": "ST JEAN SUR MAYENNE", - "nomCommune": "ST JEAN SUR MAYENNE" + "codePostal": "53380", + "codeCommune": "53226", + "libelleAcheminement": "ST HILAIRE DU MAINE", + "nomCommune": "ST HILAIRE DU MAINE" }, { "codePostal": "53300", - "codeCommune": "53234", - "libelleAcheminement": "ST LOUP DU GAST", - "nomCommune": "ST LOUP DU GAST" + "codeCommune": "53237", + "libelleAcheminement": "ST MARS SUR COLMONT", + "nomCommune": "ST MARS SUR COLMONT" }, { - "codePostal": "53700", - "codeCommune": "53236", - "libelleAcheminement": "ST MARS DU DESERT", - "nomCommune": "ST MARS DU DESERT" + "codePostal": "53220", + "codeCommune": "53238", + "libelleAcheminement": "ST MARS SUR LA FUTAIE", + "nomCommune": "ST MARS SUR LA FUTAIE" }, { "codePostal": "53410", - "codeCommune": "53243", - "libelleAcheminement": "ST OUEN DES TOITS", - "nomCommune": "ST OUEN DES TOITS" + "codeCommune": "53247", + "libelleAcheminement": "ST PIERRE LA COUR", + "nomCommune": "ST PIERRE LA COUR" }, { "codePostal": "53160", @@ -14345,18 +14195,6 @@ "libelleAcheminement": "VIMARTIN SUR ORTHE", "nomCommune": "VIMARTIN SUR ORTHE" }, - { - "codePostal": "53800", - "codeCommune": "53253", - "libelleAcheminement": "ST SATURNIN DU LIMET", - "nomCommune": "ST SATURNIN DU LIMET" - }, - { - "codePostal": "53270", - "codeCommune": "53255", - "libelleAcheminement": "STE SUZANNE ET CHAMMES", - "nomCommune": "STE SUZANNE ET CHAMMES" - }, { "codePostal": "53210", "codeCommune": "53262", @@ -14364,76 +14202,52 @@ "nomCommune": "SOULGE SUR OUETTE" }, { - "codePostal": "53110", - "codeCommune": "53263", - "libelleAcheminement": "THUBOEUF", - "nomCommune": "THUBOEUF" - }, - { - "codePostal": "53250", - "codeCommune": "53272", - "libelleAcheminement": "VILLEPAIL", - "nomCommune": "VILLEPAIL" - }, - { - "codePostal": "54800", - "codeCommune": "54002", - "libelleAcheminement": "ABBEVILLE LES CONFLANS", - "nomCommune": "ABBEVILLE LES CONFLANS" - }, - { - "codePostal": "54115", - "codeCommune": "54003", - "libelleAcheminement": "ABONCOURT", - "nomCommune": "ABONCOURT" - }, - { - "codePostal": "54800", - "codeCommune": "54004", - "libelleAcheminement": "AFFLEVILLE", - "nomCommune": "AFFLEVILLE" + "codePostal": "54560", + "codeCommune": "54029", + "libelleAcheminement": "AUDUN LE ROMAN", + "nomCommune": "AUDUN LE ROMAN" }, { - "codePostal": "54740", - "codeCommune": "54005", - "libelleAcheminement": "AFFRACOURT", - "nomCommune": "AFFRACOURT" + "codePostal": "54450", + "codeCommune": "54030", + "libelleAcheminement": "AUTREPIERRE", + "nomCommune": "AUTREPIERRE" }, { "codePostal": "54450", - "codeCommune": "54013", - "libelleAcheminement": "AMENONCOURT", - "nomCommune": "AMENONCOURT" + "codeCommune": "54035", + "libelleAcheminement": "AVRICOURT", + "nomCommune": "AVRICOURT" }, { - "codePostal": "54450", - "codeCommune": "54014", - "libelleAcheminement": "ANCERVILLER", - "nomCommune": "ANCERVILLER" + "codePostal": "54122", + "codeCommune": "54038", + "libelleAcheminement": "AZERAILLES", + "nomCommune": "AZERAILLES" }, { - "codePostal": "54200", - "codeCommune": "54016", - "libelleAcheminement": "ANDILLY", - "nomCommune": "ANDILLY" + "codePostal": "54120", + "codeCommune": "54039", + "libelleAcheminement": "BACCARAT", + "nomCommune": "BACCARAT" }, { - "codePostal": "54110", - "codeCommune": "54020", - "libelleAcheminement": "ANTHELUPT", - "nomCommune": "ANTHELUPT" + "codePostal": "54540", + "codeCommune": "54040", + "libelleAcheminement": "BADONVILLER", + "nomCommune": "BADONVILLER" }, { - "codePostal": "54122", - "codeCommune": "54038", - "libelleAcheminement": "AZERAILLES", - "nomCommune": "AZERAILLES" + "codePostal": "54450", + "codeCommune": "54044", + "libelleAcheminement": "BARBAS", + "nomCommune": "BARBAS" }, { - "codePostal": "54550", - "codeCommune": "54043", - "libelleAcheminement": "BAINVILLE SUR MADON", - "nomCommune": "BAINVILLE SUR MADON" + "codePostal": "54170", + "codeCommune": "54047", + "libelleAcheminement": "BARISEY LA COTE", + "nomCommune": "BARISEY LA COTE" }, { "codePostal": "54150", @@ -14442,10 +14256,16 @@ "nomCommune": "LES BAROCHES" }, { - "codePostal": "54150", - "codeCommune": "54048", - "libelleAcheminement": "LES BAROCHES", - "nomCommune": "LES BAROCHES" + "codePostal": "54620", + "codeCommune": "54049", + "libelleAcheminement": "BASLIEUX", + "nomCommune": "BASLIEUX" + }, + { + "codePostal": "54115", + "codeCommune": "54052", + "libelleAcheminement": "BATTIGNY", + "nomCommune": "BATTIGNY" }, { "codePostal": "54470", @@ -14460,22 +14280,10 @@ "nomCommune": "BELLEAU" }, { - "codePostal": "54940", - "codeCommune": "54060", - "libelleAcheminement": "BELLEVILLE", - "nomCommune": "BELLEVILLE" - }, - { - "codePostal": "54620", - "codeCommune": "54067", - "libelleAcheminement": "BEUVEILLE", - "nomCommune": "BEUVEILLE" - }, - { - "codePostal": "54115", - "codeCommune": "54068", - "libelleAcheminement": "BEUVEZIN", - "nomCommune": "BEUVEZIN" + "codePostal": "54120", + "codeCommune": "54065", + "libelleAcheminement": "BERTRICHAMPS", + "nomCommune": "BERTRICHAMPS" }, { "codePostal": "54760", @@ -14484,46 +14292,40 @@ "nomCommune": "BEY SUR SEILLE" }, { - "codePostal": "54370", - "codeCommune": "54071", - "libelleAcheminement": "BEZANGE LA GRANDE", - "nomCommune": "BEZANGE LA GRANDE" - }, - { - "codePostal": "54800", - "codeCommune": "54082", - "libelleAcheminement": "BONCOURT", - "nomCommune": "BONCOURT" + "codePostal": "54540", + "codeCommune": "54075", + "libelleAcheminement": "BIONVILLE", + "nomCommune": "BIONVILLE" }, { - "codePostal": "54470", - "codeCommune": "54087", - "libelleAcheminement": "BOUILLONVILLE", - "nomCommune": "BOUILLONVILLE" + "codePostal": "54770", + "codeCommune": "54089", + "libelleAcheminement": "BOUXIERES AUX CHENES", + "nomCommune": "BOUXIERES AUX CHENES" }, { - "codePostal": "54200", - "codeCommune": "54088", - "libelleAcheminement": "BOUVRON", - "nomCommune": "BOUVRON" + "codePostal": "54700", + "codeCommune": "54091", + "libelleAcheminement": "BOUXIERES SOUS FROIDMONT", + "nomCommune": "BOUXIERES SOUS FROIDMONT" }, { - "codePostal": "54610", - "codeCommune": "54095", - "libelleAcheminement": "BRATTE", - "nomCommune": "BRATTE" + "codePostal": "54930", + "codeCommune": "54092", + "libelleAcheminement": "BOUZANVILLE", + "nomCommune": "BOUZANVILLE" }, { - "codePostal": "54190", - "codeCommune": "54096", - "libelleAcheminement": "BREHAIN LA VILLE", - "nomCommune": "BREHAIN LA VILLE" + "codePostal": "54150", + "codeCommune": "54099", + "libelleAcheminement": "VAL DE BRIEY", + "nomCommune": "VAL DE BRIEY" }, { - "codePostal": "54200", - "codeCommune": "54102", - "libelleAcheminement": "BRULEY", - "nomCommune": "BRULEY" + "codePostal": "54280", + "codeCommune": "54100", + "libelleAcheminement": "BRIN SUR SEILLE", + "nomCommune": "BRIN SUR SEILLE" }, { "codePostal": "54420", @@ -14538,70 +14340,70 @@ "nomCommune": "CHAMPEY SUR MOSELLE" }, { - "codePostal": "54260", - "codeCommune": "54118", - "libelleAcheminement": "CHARENCY VEZIN", - "nomCommune": "CHARENCY VEZIN" + "codePostal": "54250", + "codeCommune": "54115", + "libelleAcheminement": "CHAMPIGNEULLES", + "nomCommune": "CHAMPIGNEULLES" }, { - "codePostal": "54113", - "codeCommune": "54120", - "libelleAcheminement": "CHARMES LA COTE", - "nomCommune": "CHARMES LA COTE" + "codePostal": "54470", + "codeCommune": "54119", + "libelleAcheminement": "CHAREY", + "nomCommune": "CHAREY" }, { - "codePostal": "54230", - "codeCommune": "54123", - "libelleAcheminement": "CHAVIGNY", - "nomCommune": "CHAVIGNY" + "codePostal": "54450", + "codeCommune": "54124", + "libelleAcheminement": "CHAZELLES SUR ALBE", + "nomCommune": "CHAZELLES SUR ALBE" }, { - "codePostal": "54170", - "codeCommune": "54135", - "libelleAcheminement": "COLOMBEY LES BELLES", - "nomCommune": "COLOMBEY LES BELLES" + "codePostal": "54610", + "codeCommune": "54131", + "libelleAcheminement": "CLEMERY", + "nomCommune": "CLEMERY" }, { - "codePostal": "54290", - "codeCommune": "54144", - "libelleAcheminement": "CREVECHAMPS", - "nomCommune": "CREVECHAMPS" + "codePostal": "54260", + "codeCommune": "54134", + "libelleAcheminement": "COLMEY", + "nomCommune": "COLMEY" }, { - "codePostal": "54300", - "codeCommune": "54147", - "libelleAcheminement": "CRION", - "nomCommune": "CRION" + "codePostal": "54400", + "codeCommune": "54138", + "libelleAcheminement": "COSNES ET ROMAIN", + "nomCommune": "COSNES ET ROMAIN" }, { - "codePostal": "54680", - "codeCommune": "54149", - "libelleAcheminement": "CRUSNES", - "nomCommune": "CRUSNES" + "codePostal": "54930", + "codeCommune": "54140", + "libelleAcheminement": "COURCELLES", + "nomCommune": "COURCELLES" }, { - "codePostal": "54670", - "codeCommune": "54150", - "libelleAcheminement": "CUSTINES", - "nomCommune": "CUSTINES" + "codePostal": "54110", + "codeCommune": "54145", + "libelleAcheminement": "CREVIC", + "nomCommune": "CREVIC" }, { - "codePostal": "54930", - "codeCommune": "54156", - "libelleAcheminement": "DIARVILLE", - "nomCommune": "DIARVILLE" + "codePostal": "54120", + "codeCommune": "54154", + "libelleAcheminement": "DENEUVRE", + "nomCommune": "DENEUVRE" }, { - "codePostal": "54385", - "codeCommune": "54160", - "libelleAcheminement": "DOMEVRE EN HAYE", - "nomCommune": "DOMEVRE EN HAYE" + "codePostal": "54130", + "codeCommune": "54165", + "libelleAcheminement": "DOMMARTEMONT", + "nomCommune": "DOMMARTEMONT" }, { - "codePostal": "54115", - "codeCommune": "54164", - "libelleAcheminement": "DOMMARIE EULMONT", - "nomCommune": "DOMMARIE EULMONT" + "codePostal": "54200", + "codeCommune": "54167", + "libelleAcheminement": "DOMMARTIN LES TOUL", + "nomCommune": "DOMMARTIN LES TOUL" }, { "codePostal": "54490", @@ -14616,130 +14418,160 @@ "nomCommune": "DOMPTAIL EN L AIR" }, { - "codePostal": "54620", - "codeCommune": "54172", - "libelleAcheminement": "DONCOURT LES LONGUYON", - "nomCommune": "DONCOURT LES LONGUYON" + "codePostal": "54280", + "codeCommune": "54180", + "libelleAcheminement": "ERBEVILLER SUR AMEZULE", + "nomCommune": "ERBEVILLER SUR AMEZULE" }, { - "codePostal": "54830", - "codeCommune": "54183", - "libelleAcheminement": "ESSEY LA COTE", - "nomCommune": "ESSEY LA COTE" + "codePostal": "54690", + "codeCommune": "54186", + "libelleAcheminement": "EULMONT", + "nomCommune": "EULMONT" }, { - "codePostal": "54270", - "codeCommune": "54184", - "libelleAcheminement": "ESSEY LES NANCY", - "nomCommune": "ESSEY LES NANCY" + "codePostal": "54760", + "codeCommune": "54188", + "libelleAcheminement": "FAULX", + "nomCommune": "FAULX" }, { - "codePostal": "54630", - "codeCommune": "54196", - "libelleAcheminement": "FLAVIGNY SUR MOSELLE", - "nomCommune": "FLAVIGNY SUR MOSELLE" + "codePostal": "54122", + "codeCommune": "54199", + "libelleAcheminement": "FLIN", + "nomCommune": "FLIN" }, { - "codePostal": "54470", - "codeCommune": "54200", - "libelleAcheminement": "FLIREY", - "nomCommune": "FLIREY" + "codePostal": "54930", + "codeCommune": "54204", + "libelleAcheminement": "FORCELLES SOUS GUGNEY", + "nomCommune": "FORCELLES SOUS GUGNEY" + }, + { + "codePostal": "54570", + "codeCommune": "54205", + "libelleAcheminement": "FOUG", + "nomCommune": "FOUG" }, { "codePostal": "54450", - "codeCommune": "54210", - "libelleAcheminement": "FREMENIL", - "nomCommune": "FREMENIL" + "codeCommune": "54211", + "libelleAcheminement": "FREMONVILLE", + "nomCommune": "FREMONVILLE" }, { - "codePostal": "54290", - "codeCommune": "54216", - "libelleAcheminement": "FROVILLE", - "nomCommune": "FROVILLE" + "codePostal": "54260", + "codeCommune": "54212", + "libelleAcheminement": "FRESNOIS LA MONTAGNE", + "nomCommune": "FRESNOIS LA MONTAGNE" }, { - "codePostal": "54110", - "codeCommune": "54219", - "libelleAcheminement": "GELLENONCOURT", - "nomCommune": "GELLENONCOURT" + "codePostal": "54800", + "codeCommune": "54213", + "libelleAcheminement": "FRIAUVILLE", + "nomCommune": "FRIAUVILLE" + }, + { + "codePostal": "54390", + "codeCommune": "54215", + "libelleAcheminement": "FROUARD", + "nomCommune": "FROUARD" + }, + { + "codePostal": "54120", + "codeCommune": "54217", + "libelleAcheminement": "GELACOURT", + "nomCommune": "GELACOURT" }, { "codePostal": "54830", - "codeCommune": "54228", - "libelleAcheminement": "GIRIVILLER", - "nomCommune": "GIRIVILLER" + "codeCommune": "54222", + "libelleAcheminement": "GERBEVILLER", + "nomCommune": "GERBEVILLER" }, { - "codePostal": "54840", - "codeCommune": "54232", - "libelleAcheminement": "GONDREVILLE", - "nomCommune": "GONDREVILLE" + "codePostal": "54740", + "codeCommune": "54224", + "libelleAcheminement": "GERMONVILLE", + "nomCommune": "GERMONVILLE" }, { - "codePostal": "54730", - "codeCommune": "54234", - "libelleAcheminement": "GORCY", - "nomCommune": "GORCY" + "codePostal": "54800", + "codeCommune": "54231", + "libelleAcheminement": "GONDRECOURT AIX", + "nomCommune": "GONDRECOURT AIX" + }, + { + "codePostal": "54260", + "codeCommune": "54236", + "libelleAcheminement": "GRAND FAILLY", + "nomCommune": "GRAND FAILLY" + }, + { + "codePostal": "54470", + "codeCommune": "54240", + "libelleAcheminement": "GROSROUVRES", + "nomCommune": "GROSROUVRES" }, { "codePostal": "54290", - "codeCommune": "54245", - "libelleAcheminement": "HAIGNEVILLE", - "nomCommune": "HAIGNEVILLE" + "codeCommune": "54256", + "libelleAcheminement": "HAUSSONVILLE", + "nomCommune": "HAUSSONVILLE" }, { - "codePostal": "54450", - "codeCommune": "54246", - "libelleAcheminement": "HALLOVILLE", - "nomCommune": "HALLOVILLE" + "codePostal": "54180", + "codeCommune": "54257", + "libelleAcheminement": "HEILLECOURT", + "nomCommune": "HEILLECOURT" }, { - "codePostal": "54800", - "codeCommune": "54253", - "libelleAcheminement": "HATRIZE", - "nomCommune": "HATRIZE" + "codePostal": "54590", + "codeCommune": "54270", + "libelleAcheminement": "HUSSIGNY GODBRANGE", + "nomCommune": "HUSSIGNY GODBRANGE" }, { - "codePostal": "54860", - "codeCommune": "54254", - "libelleAcheminement": "HAUCOURT MOULAINE", - "nomCommune": "HAUCOURT MOULAINE" + "codePostal": "54800", + "codeCommune": "54273", + "libelleAcheminement": "JARNY", + "nomCommune": "JARNY" }, { - "codePostal": "54450", - "codeCommune": "54259", - "libelleAcheminement": "HERBEVILLER", - "nomCommune": "HERBEVILLER" + "codePostal": "54370", + "codeCommune": "54285", + "libelleAcheminement": "JUVRECOURT", + "nomCommune": "JUVRECOURT" }, { "codePostal": "54200", - "codeCommune": "54272", - "libelleAcheminement": "JAILLON", - "nomCommune": "JAILLON" + "codeCommune": "54288", + "libelleAcheminement": "LAGNEY", + "nomCommune": "LAGNEY" }, { - "codePostal": "54800", - "codeCommune": "54283", - "libelleAcheminement": "JOUAVILLE", - "nomCommune": "JOUAVILLE" + "codePostal": "54770", + "codeCommune": "54289", + "libelleAcheminement": "LAITRE SOUS AMANCE", + "nomCommune": "LAITRE SOUS AMANCE" }, { - "codePostal": "54720", - "codeCommune": "54290", - "libelleAcheminement": "LAIX", - "nomCommune": "LAIX" + "codePostal": "54300", + "codeCommune": "54292", + "libelleAcheminement": "LAMATH", + "nomCommune": "LAMATH" }, { - "codePostal": "54360", - "codeCommune": "54293", - "libelleAcheminement": "LANDECOURT", - "nomCommune": "LANDECOURT" + "codePostal": "54950", + "codeCommune": "54303", + "libelleAcheminement": "LARONXE", + "nomCommune": "LARONXE" }, { - "codePostal": "54150", - "codeCommune": "54302", - "libelleAcheminement": "LANTEFONTAINE", - "nomCommune": "LANTEFONTAINE" + "codePostal": "54570", + "codeCommune": "54306", + "libelleAcheminement": "LAY ST REMY", + "nomCommune": "LAY ST REMY" }, { "codePostal": "54740", @@ -14747,18 +14579,6 @@ "libelleAcheminement": "LEBEUVILLE", "nomCommune": "LEBEUVILLE" }, - { - "codePostal": "54450", - "codeCommune": "54308", - "libelleAcheminement": "LEINTREY", - "nomCommune": "LEINTREY" - }, - { - "codePostal": "54110", - "codeCommune": "54311", - "libelleAcheminement": "LENONCOURT", - "nomCommune": "LENONCOURT" - }, { "codePostal": "54470", "codeCommune": "54316", @@ -14766,82 +14586,76 @@ "nomCommune": "LIMEY REMENAUVILLE" }, { - "codePostal": "54460", - "codeCommune": "54318", - "libelleAcheminement": "LIVERDUN", - "nomCommune": "LIVERDUN" - }, - { - "codePostal": "54290", - "codeCommune": "54324", - "libelleAcheminement": "LOREY", - "nomCommune": "LOREY" + "codePostal": "54260", + "codeCommune": "54322", + "libelleAcheminement": "LONGUYON", + "nomCommune": "LONGUYON" }, { - "codePostal": "54129", - "codeCommune": "54331", - "libelleAcheminement": "MAGNIERES", - "nomCommune": "MAGNIERES" + "codePostal": "54260", + "codeCommune": "54322", + "libelleAcheminement": "LONGUYON", + "nomCommune": "LONGUYON" }, { - "codePostal": "54610", - "codeCommune": "54333", - "libelleAcheminement": "MAILLY SUR SEILLE", - "nomCommune": "MAILLY SUR SEILLE" + "codePostal": "54260", + "codeCommune": "54322", + "libelleAcheminement": "LONGUYON", + "nomCommune": "LONGUYON" }, { - "codePostal": "54300", - "codeCommune": "54349", - "libelleAcheminement": "MANONVILLER", - "nomCommune": "MANONVILLER" + "codePostal": "54710", + "codeCommune": "54328", + "libelleAcheminement": "LUDRES", + "nomCommune": "LUDRES" }, { - "codePostal": "54380", - "codeCommune": "54355", - "libelleAcheminement": "MARTINCOURT", - "nomCommune": "MARTINCOURT" + "codePostal": "54700", + "codeCommune": "54332", + "libelleAcheminement": "MAIDIERES", + "nomCommune": "MAIDIERES" }, { - "codePostal": "54360", - "codeCommune": "54359", - "libelleAcheminement": "MEHONCOURT", - "nomCommune": "MEHONCOURT" + "codePostal": "54670", + "codeCommune": "54338", + "libelleAcheminement": "MALLELOY", + "nomCommune": "MALLELOY" }, { - "codePostal": "54135", - "codeCommune": "54367", - "libelleAcheminement": "MEXY", - "nomCommune": "MEXY" + "codePostal": "54470", + "codeCommune": "54340", + "libelleAcheminement": "MAMEY", + "nomCommune": "MAMEY" }, { - "codePostal": "54670", - "codeCommune": "54369", - "libelleAcheminement": "MILLERY", - "nomCommune": "MILLERY" + "codePostal": "54200", + "codeCommune": "54360", + "libelleAcheminement": "MENIL LA TOUR", + "nomCommune": "MENIL LA TOUR" }, { - "codePostal": "54280", - "codeCommune": "54374", - "libelleAcheminement": "MONCEL SUR SEILLE", - "nomCommune": "MONCEL SUR SEILLE" + "codePostal": "54560", + "codeCommune": "54363", + "libelleAcheminement": "MERCY LE HAUT", + "nomCommune": "MERCY LE HAUT" }, { - "codePostal": "54350", - "codeCommune": "54382", - "libelleAcheminement": "MONT ST MARTIN", - "nomCommune": "MONT ST MARTIN" + "codePostal": "54385", + "codeCommune": "54370", + "libelleAcheminement": "MINORVILLE", + "nomCommune": "MINORVILLE" }, { - "codePostal": "54700", - "codeCommune": "54387", - "libelleAcheminement": "MORVILLE SUR SEILLE", - "nomCommune": "MORVILLE SUR SEILLE" + "codePostal": "54760", + "codeCommune": "54372", + "libelleAcheminement": "MOIVRONS", + "nomCommune": "MOIVRONS" }, { - "codePostal": "54118", - "codeCommune": "54393", - "libelleAcheminement": "MOYEN", - "nomCommune": "MOYEN" + "codePostal": "54170", + "codeCommune": "54379", + "libelleAcheminement": "MONT L ETROIT", + "nomCommune": "MONT L ETROIT" }, { "codePostal": "54100", @@ -14850,16 +14664,10 @@ "nomCommune": "NANCY" }, { - "codePostal": "54540", - "codeCommune": "54396", - "libelleAcheminement": "NEUFMAISONS", - "nomCommune": "NEUFMAISONS" - }, - { - "codePostal": "54290", - "codeCommune": "54399", - "libelleAcheminement": "NEUVILLER SUR MOSELLE", - "nomCommune": "NEUVILLER SUR MOSELLE" + "codePostal": "54450", + "codeCommune": "54401", + "libelleAcheminement": "NONHIGNY", + "nomCommune": "NONHIGNY" }, { "codePostal": "54700", @@ -14867,6 +14675,18 @@ "libelleAcheminement": "NORROY LES PONT A MOUSSON", "nomCommune": "NORROY LES PONT A MOUSSON" }, + { + "codePostal": "54385", + "codeCommune": "54404", + "libelleAcheminement": "NOVIANT AUX PRES", + "nomCommune": "NOVIANT AUX PRES" + }, + { + "codePostal": "54450", + "codeCommune": "54406", + "libelleAcheminement": "OGEVILLER", + "nomCommune": "OGEVILLER" + }, { "codePostal": "54330", "codeCommune": "54407", @@ -14874,28 +14694,52 @@ "nomCommune": "OGNEVILLE" }, { - "codePostal": "54200", - "codeCommune": "54414", - "libelleAcheminement": "PAGNEY DERRIERE BARINE", - "nomCommune": "PAGNEY DERRIERE BARINE" + "codePostal": "54150", + "codeCommune": "54413", + "libelleAcheminement": "OZERAILLES", + "nomCommune": "OZERAILLES" }, { - "codePostal": "54620", - "codeCommune": "54428", - "libelleAcheminement": "PIERREPONT", - "nomCommune": "PIERREPONT" + "codePostal": "54480", + "codeCommune": "54419", + "libelleAcheminement": "PARUX", + "nomCommune": "PARUX" }, { - "codePostal": "54370", - "codeCommune": "54446", - "libelleAcheminement": "RECHICOURT LA PETITE", - "nomCommune": "RECHICOURT LA PETITE" + "codePostal": "54700", + "codeCommune": "54431", + "libelleAcheminement": "PONT A MOUSSON", + "nomCommune": "PONT A MOUSSON" }, { - "codePostal": "54300", - "codeCommune": "54449", - "libelleAcheminement": "REHAINVILLER", - "nomCommune": "REHAINVILLER" + "codePostal": "54550", + "codeCommune": "54432", + "libelleAcheminement": "PONT ST VINCENT", + "nomCommune": "PONT ST VINCENT" + }, + { + "codePostal": "54700", + "codeCommune": "54433", + "libelleAcheminement": "PORT SUR SEILLE", + "nomCommune": "PORT SUR SEILLE" + }, + { + "codePostal": "54490", + "codeCommune": "54436", + "libelleAcheminement": "PREUTIN HIGNY", + "nomCommune": "PREUTIN HIGNY" + }, + { + "codePostal": "54120", + "codeCommune": "54450", + "libelleAcheminement": "REHERREY", + "nomCommune": "REHERREY" + }, + { + "codePostal": "54430", + "codeCommune": "54451", + "libelleAcheminement": "REHON", + "nomCommune": "REHON" }, { "codePostal": "54370", @@ -14904,28 +14748,22 @@ "nomCommune": "REMONCOURT" }, { - "codePostal": "54110", - "codeCommune": "54462", - "libelleAcheminement": "ROSIERES AUX SALINES", - "nomCommune": "ROSIERES AUX SALINES" - }, - { - "codePostal": "54290", - "codeCommune": "54467", - "libelleAcheminement": "ROZELIEURES", - "nomCommune": "ROZELIEURES" + "codePostal": "54450", + "codeCommune": "54458", + "libelleAcheminement": "REPAIX", + "nomCommune": "REPAIX" }, { - "codePostal": "54950", - "codeCommune": "54472", - "libelleAcheminement": "ST CLEMENT", - "nomCommune": "ST CLEMENT" + "codePostal": "54360", + "codeCommune": "54461", + "libelleAcheminement": "ROMAIN", + "nomCommune": "ROMAIN" }, { - "codePostal": "54260", - "codeCommune": "54476", - "libelleAcheminement": "ST JEAN LES LONGUYON", - "nomCommune": "ST JEAN LES LONGUYON" + "codePostal": "54290", + "codeCommune": "54471", + "libelleAcheminement": "ST BOINGT", + "nomCommune": "ST BOINGT" }, { "codePostal": "54800", @@ -14934,460 +14772,412 @@ "nomCommune": "ST MARCEL" }, { - "codePostal": "54290", - "codeCommune": "54479", - "libelleAcheminement": "ST MARD", - "nomCommune": "ST MARD" + "codePostal": "54450", + "codeCommune": "54480", + "libelleAcheminement": "ST MARTIN", + "nomCommune": "ST MARTIN" }, { - "codePostal": "54650", - "codeCommune": "54493", - "libelleAcheminement": "SAULNES", - "nomCommune": "SAULNES" + "codePostal": "54130", + "codeCommune": "54482", + "libelleAcheminement": "ST MAX", + "nomCommune": "ST MAX" }, { - "codePostal": "54370", - "codeCommune": "54502", - "libelleAcheminement": "SERRES", - "nomCommune": "SERRES" + "codePostal": "54210", + "codeCommune": "54483", + "libelleAcheminement": "ST NICOLAS DE PORT", + "nomCommune": "ST NICOLAS DE PORT" }, { - "codePostal": "54300", - "codeCommune": "54507", - "libelleAcheminement": "SIONVILLER", - "nomCommune": "SIONVILLER" + "codePostal": "54170", + "codeCommune": "54496", + "libelleAcheminement": "SAULXURES LES VANNES", + "nomCommune": "SAULXURES LES VANNES" }, { - "codePostal": "54880", - "codeCommune": "54521", - "libelleAcheminement": "THIL", - "nomCommune": "THIL" + "codePostal": "54550", + "codeCommune": "54505", + "libelleAcheminement": "SEXEY AUX FORGES", + "nomCommune": "SEXEY AUX FORGES" }, { - "codePostal": "54385", - "codeCommune": "54532", - "libelleAcheminement": "TREMBLECOURT", - "nomCommune": "TREMBLECOURT" + "codePostal": "54280", + "codeCommune": "54510", + "libelleAcheminement": "SORNEVILLE", + "nomCommune": "SORNEVILLE" }, { - "codePostal": "54750", - "codeCommune": "54533", - "libelleAcheminement": "TRIEUX", - "nomCommune": "TRIEUX" + "codePostal": "54800", + "codeCommune": "54511", + "libelleAcheminement": "SPONVILLE", + "nomCommune": "SPONVILLE" }, { - "codePostal": "54890", - "codeCommune": "54544", - "libelleAcheminement": "VANDELAINVILLE", - "nomCommune": "VANDELAINVILLE" + "codePostal": "54260", + "codeCommune": "54514", + "libelleAcheminement": "TELLANCOURT", + "nomCommune": "TELLANCOURT" }, { - "codePostal": "54121", - "codeCommune": "54546", - "libelleAcheminement": "VANDIERES", - "nomCommune": "VANDIERES" + "codePostal": "54930", + "codeCommune": "54516", + "libelleAcheminement": "THEY SOUS VAUDEMONT", + "nomCommune": "THEY SOUS VAUDEMONT" }, { - "codePostal": "54830", - "codeCommune": "54561", - "libelleAcheminement": "VENNEZEY", - "nomCommune": "VENNEZEY" + "codePostal": "54610", + "codeCommune": "54517", + "libelleAcheminement": "THEZEY ST MARTIN", + "nomCommune": "THEZEY ST MARTIN" }, { - "codePostal": "54330", - "codeCommune": "54563", - "libelleAcheminement": "VEZELISE", - "nomCommune": "VEZELISE" + "codePostal": "54470", + "codeCommune": "54518", + "libelleAcheminement": "THIAUCOURT REGNIEVILLE", + "nomCommune": "THIAUCOURT REGNIEVILLE" }, { - "codePostal": "54260", - "codeCommune": "54582", - "libelleAcheminement": "VILLETTE", - "nomCommune": "VILLETTE" + "codePostal": "54800", + "codeCommune": "54524", + "libelleAcheminement": "THUMEREVILLE", + "nomCommune": "THUMEREVILLE" }, { - "codePostal": "54700", - "codeCommune": "54589", - "libelleAcheminement": "VITTONVILLE", - "nomCommune": "VITTONVILLE" + "codePostal": "54115", + "codeCommune": "54529", + "libelleAcheminement": "TRAMONT EMY", + "nomCommune": "TRAMONT EMY" }, { - "codePostal": "54330", - "codeCommune": "54592", - "libelleAcheminement": "VRONCOURT", - "nomCommune": "VRONCOURT" + "codePostal": "54570", + "codeCommune": "54534", + "libelleAcheminement": "TRONDES", + "nomCommune": "TRONDES" }, { - "codePostal": "55300", - "codeCommune": "55007", - "libelleAcheminement": "AMBLY SUR MEUSE", - "nomCommune": "AMBLY SUR MEUSE" + "codePostal": "54800", + "codeCommune": "54535", + "libelleAcheminement": "TRONVILLE", + "nomCommune": "TRONVILLE" }, { - "codePostal": "55230", - "codeCommune": "55008", - "libelleAcheminement": "AMEL SUR L ETANG", - "nomCommune": "AMEL SUR L ETANG" + "codePostal": "54870", + "codeCommune": "54537", + "libelleAcheminement": "UGNY", + "nomCommune": "UGNY" }, { - "codePostal": "55320", - "codeCommune": "55009", - "libelleAcheminement": "ANCEMONT", - "nomCommune": "ANCEMONT" + "codePostal": "54480", + "codeCommune": "54540", + "libelleAcheminement": "VAL ET CHATILLON", + "nomCommune": "VAL ET CHATILLON" }, { - "codePostal": "55300", - "codeCommune": "55012", - "libelleAcheminement": "APREMONT LA FORET", - "nomCommune": "APREMONT LA FORET" + "codePostal": "54370", + "codeCommune": "54541", + "libelleAcheminement": "VALHEY", + "nomCommune": "VALHEY" }, { - "codePostal": "55130", - "codeCommune": "55026", - "libelleAcheminement": "BADONVILLIERS GERAUVILLIERS", - "nomCommune": "BADONVILLIERS GERAUVILLIERS" + "codePostal": "54910", + "codeCommune": "54542", + "libelleAcheminement": "VALLEROY", + "nomCommune": "VALLEROY" }, { - "codePostal": "55300", - "codeCommune": "55027", - "libelleAcheminement": "BANNONCOURT", - "nomCommune": "BANNONCOURT" + "codePostal": "54830", + "codeCommune": "54543", + "libelleAcheminement": "VALLOIS", + "nomCommune": "VALLOIS" }, { - "codePostal": "55250", - "codeCommune": "55040", - "libelleAcheminement": "BEAUSITE", - "nomCommune": "BEAUSITE" + "codePostal": "54890", + "codeCommune": "54544", + "libelleAcheminement": "VANDELAINVILLE", + "nomCommune": "VANDELAINVILLE" }, { - "codePostal": "55000", - "codeCommune": "55041", - "libelleAcheminement": "BEHONNE", - "nomCommune": "BEHONNE" + "codePostal": "54740", + "codeCommune": "54553", + "libelleAcheminement": "VAUDEVILLE", + "nomCommune": "VAUDEVILLE" }, { - "codePostal": "55100", - "codeCommune": "55047", - "libelleAcheminement": "BETHELAINVILLE", - "nomCommune": "BETHELAINVILLE" + "codePostal": "54700", + "codeCommune": "54566", + "libelleAcheminement": "VILCEY SUR TREY", + "nomCommune": "VILCEY SUR TREY" }, { - "codePostal": "55270", - "codeCommune": "55048", - "libelleAcheminement": "BETHINCOURT", - "nomCommune": "BETHINCOURT" + "codePostal": "54380", + "codeCommune": "54569", + "libelleAcheminement": "VILLE AU VAL", + "nomCommune": "VILLE AU VAL" }, { - "codePostal": "55100", - "codeCommune": "55050", - "libelleAcheminement": "BEZONVAUX", - "nomCommune": "BEZONVAUX" + "codePostal": "54210", + "codeCommune": "54571", + "libelleAcheminement": "VILLE EN VERMOIS", + "nomCommune": "VILLE EN VERMOIS" }, { - "codePostal": "55230", - "codeCommune": "55053", - "libelleAcheminement": "BILLY SOUS MANGIENNES", - "nomCommune": "BILLY SOUS MANGIENNES" + "codePostal": "54700", + "codeCommune": "54579", + "libelleAcheminement": "VILLERS SOUS PRENY", + "nomCommune": "VILLERS SOUS PRENY" }, { - "codePostal": "55400", - "codeCommune": "55055", - "libelleAcheminement": "BLANZEE", - "nomCommune": "BLANZEE" + "codePostal": "54290", + "codeCommune": "54585", + "libelleAcheminement": "VIRECOURT", + "nomCommune": "VIRECOURT" }, { - "codePostal": "55200", - "codeCommune": "55058", - "libelleAcheminement": "BONCOURT SUR MEUSE", - "nomCommune": "BONCOURT SUR MEUSE" + "codePostal": "54123", + "codeCommune": "54586", + "libelleAcheminement": "VITERNE", + "nomCommune": "VITERNE" }, { - "codePostal": "55240", - "codeCommune": "55063", - "libelleAcheminement": "BOULIGNY", - "nomCommune": "BOULIGNY" + "codePostal": "54800", + "codeCommune": "54599", + "libelleAcheminement": "XONVILLE", + "nomCommune": "XONVILLE" }, { - "codePostal": "55300", - "codeCommune": "55064", - "libelleAcheminement": "BOUQUEMONT", - "nomCommune": "BOUQUEMONT" + "codePostal": "55170", + "codeCommune": "55010", + "libelleAcheminement": "ANCERVILLE", + "nomCommune": "ANCERVILLE" }, { "codePostal": "55800", - "codeCommune": "55069", - "libelleAcheminement": "BRABANT LE ROI", - "nomCommune": "BRABANT LE ROI" + "codeCommune": "55011", + "libelleAcheminement": "ANDERNAY", + "nomCommune": "ANDERNAY" }, { - "codePostal": "55000", - "codeCommune": "55079", - "libelleAcheminement": "BRILLON EN BARROIS", - "nomCommune": "BRILLON EN BARROIS" + "codePostal": "55300", + "codeCommune": "55012", + "libelleAcheminement": "APREMONT LA FORET", + "nomCommune": "APREMONT LA FORET" }, { "codePostal": "55120", - "codeCommune": "55082", - "libelleAcheminement": "BROCOURT EN ARGONNE", - "nomCommune": "BROCOURT EN ARGONNE" - }, - { - "codePostal": "55290", - "codeCommune": "55087", - "libelleAcheminement": "BURE", - "nomCommune": "BURE" + "codeCommune": "55017", + "libelleAcheminement": "AUTRECOURT SUR AIRE", + "nomCommune": "AUTRECOURT SUR AIRE" }, { - "codePostal": "55140", - "codeCommune": "55089", - "libelleAcheminement": "BUREY LA COTE", - "nomCommune": "BUREY LA COTE" + "codePostal": "55000", + "codeCommune": "55029", + "libelleAcheminement": "BAR LE DUC", + "nomCommune": "BAR LE DUC" }, { - "codePostal": "55300", - "codeCommune": "55093", - "libelleAcheminement": "BUXIERES SOUS LES COTES", - "nomCommune": "BUXIERES SOUS LES COTES" + "codePostal": "55170", + "codeCommune": "55031", + "libelleAcheminement": "BAUDONVILLIERS", + "nomCommune": "BAUDONVILLIERS" }, { - "codePostal": "55700", - "codeCommune": "55095", - "libelleAcheminement": "CESSE", - "nomCommune": "CESSE" + "codePostal": "55250", + "codeCommune": "55040", + "libelleAcheminement": "BEAUSITE", + "nomCommune": "BEAUSITE" }, { - "codePostal": "55140", - "codeCommune": "55097", - "libelleAcheminement": "CHALAINES", - "nomCommune": "CHALAINES" + "codePostal": "55430", + "codeCommune": "55043", + "libelleAcheminement": "BELLEVILLE SUR MEUSE", + "nomCommune": "BELLEVILLE SUR MEUSE" }, { - "codePostal": "55150", - "codeCommune": "55107", - "libelleAcheminement": "CHAUMONT DEVANT DAMVILLERS", - "nomCommune": "CHAUMONT DEVANT DAMVILLERS" + "codePostal": "55260", + "codeCommune": "55044", + "libelleAcheminement": "BELRAIN", + "nomCommune": "BELRAIN" }, { "codePostal": "55270", - "codeCommune": "55113", - "libelleAcheminement": "CHEPPY", - "nomCommune": "CHEPPY" - }, - { - "codePostal": "55120", - "codeCommune": "55117", - "libelleAcheminement": "CLERMONT EN ARGONNE", - "nomCommune": "CLERMONT EN ARGONNE" + "codeCommune": "55048", + "libelleAcheminement": "BETHINCOURT", + "nomCommune": "BETHINCOURT" }, { - "codePostal": "55120", - "codeCommune": "55117", - "libelleAcheminement": "CLERMONT EN ARGONNE", - "nomCommune": "CLERMONT EN ARGONNE" + "codePostal": "55000", + "codeCommune": "55049", + "libelleAcheminement": "BEUREY SUR SAULX", + "nomCommune": "BEUREY SUR SAULX" }, { - "codePostal": "55120", - "codeCommune": "55117", - "libelleAcheminement": "CLERMONT EN ARGONNE", - "nomCommune": "CLERMONT EN ARGONNE" + "codePostal": "55100", + "codeCommune": "55050", + "libelleAcheminement": "BEZONVAUX", + "nomCommune": "BEZONVAUX" }, { - "codePostal": "55110", - "codeCommune": "55118", - "libelleAcheminement": "CLERY LE GRAND", - "nomCommune": "CLERY LE GRAND" + "codePostal": "55130", + "codeCommune": "55059", + "libelleAcheminement": "BONNET", + "nomCommune": "BONNET" }, { - "codePostal": "55110", - "codeCommune": "55119", - "libelleAcheminement": "CLERY LE PETIT", - "nomCommune": "CLERY LE PETIT" + "codePostal": "55160", + "codeCommune": "55060", + "libelleAcheminement": "BONZEE", + "nomCommune": "BONZEE" }, { - "codePostal": "55110", - "codeCommune": "55124", - "libelleAcheminement": "CONSENVOYE", - "nomCommune": "CONSENVOYE" + "codePostal": "55100", + "codeCommune": "55073", + "libelleAcheminement": "BRAS SUR MEUSE", + "nomCommune": "BRAS SUR MEUSE" }, { - "codePostal": "55800", - "codeCommune": "55125", - "libelleAcheminement": "CONTRISSON", - "nomCommune": "CONTRISSON" + "codePostal": "55000", + "codeCommune": "55079", + "libelleAcheminement": "BRILLON EN BARROIS", + "nomCommune": "BRILLON EN BARROIS" }, { - "codePostal": "55260", - "codeCommune": "55127", - "libelleAcheminement": "COURCELLES EN BARROIS", - "nomCommune": "COURCELLES EN BARROIS" + "codePostal": "55140", + "codeCommune": "55088", + "libelleAcheminement": "BUREY EN VAUX", + "nomCommune": "BUREY EN VAUX" }, { - "codePostal": "55800", - "codeCommune": "55134", - "libelleAcheminement": "COUVONGES", - "nomCommune": "COUVONGES" + "codePostal": "55100", + "codeCommune": "55102", + "libelleAcheminement": "CHARNY SUR MEUSE", + "nomCommune": "CHARNY SUR MEUSE" }, { - "codePostal": "55270", - "codeCommune": "55137", - "libelleAcheminement": "CUISY", - "nomCommune": "CUISY" + "codePostal": "55100", + "codeCommune": "55106", + "libelleAcheminement": "CHATTANCOURT", + "nomCommune": "CHATTANCOURT" }, { - "codePostal": "55500", - "codeCommune": "55141", - "libelleAcheminement": "DAGONVILLE", - "nomCommune": "DAGONVILLE" + "codePostal": "55150", + "codeCommune": "55107", + "libelleAcheminement": "CHAUMONT DEVANT DAMVILLERS", + "nomCommune": "CHAUMONT DEVANT DAMVILLERS" }, { - "codePostal": "55130", - "codeCommune": "55148", - "libelleAcheminement": "DELOUZE ROSIERES", - "nomCommune": "DELOUZE ROSIERES" + "codePostal": "55270", + "codeCommune": "55115", + "libelleAcheminement": "CIERGES SOUS MONTFAUCON", + "nomCommune": "CIERGES SOUS MONTFAUCON" }, { "codePostal": "55120", - "codeCommune": "55155", - "libelleAcheminement": "DOMBASLE EN ARGONNE", - "nomCommune": "DOMBASLE EN ARGONNE" + "codeCommune": "55116", + "libelleAcheminement": "LE CLAON", + "nomCommune": "LE CLAON" }, { - "codePostal": "55400", - "codeCommune": "55171", - "libelleAcheminement": "EIX", - "nomCommune": "EIX" + "codePostal": "55110", + "codeCommune": "55119", + "libelleAcheminement": "CLERY LE PETIT", + "nomCommune": "CLERY LE PETIT" }, { - "codePostal": "55270", - "codeCommune": "55174", - "libelleAcheminement": "EPINONVILLE", - "nomCommune": "EPINONVILLE" + "codePostal": "55160", + "codeCommune": "55121", + "libelleAcheminement": "COMBRES SOUS LES COTES", + "nomCommune": "COMBRES SOUS LES COTES" }, { - "codePostal": "55260", - "codeCommune": "55177", - "libelleAcheminement": "ERIZE LA PETITE", - "nomCommune": "ERIZE LA PETITE" + "codePostal": "55200", + "codeCommune": "55122", + "libelleAcheminement": "COMMERCY", + "nomCommune": "COMMERCY" }, { "codePostal": "55000", - "codeCommune": "55178", - "libelleAcheminement": "ERIZE ST DIZIER", - "nomCommune": "ERIZE ST DIZIER" - }, - { - "codePostal": "55500", - "codeCommune": "55179", - "libelleAcheminement": "ERNEVILLE AUX BOIS", - "nomCommune": "ERNEVILLE AUX BOIS" - }, - { - "codePostal": "55100", - "codeCommune": "55180", - "libelleAcheminement": "ESNES EN ARGONNE", - "nomCommune": "ESNES EN ARGONNE" - }, - { - "codePostal": "55250", - "codeCommune": "55185", - "libelleAcheminement": "EVRES", - "nomCommune": "EVRES" - }, - { - "codePostal": "55600", - "codeCommune": "55188", - "libelleAcheminement": "FLASSIGNY", - "nomCommune": "FLASSIGNY" - }, - { - "codePostal": "55200", - "codeCommune": "55196", - "libelleAcheminement": "FREMEREVILLE SOUS LES COTES", - "nomCommune": "FREMEREVILLE SOUS LES COTES" + "codeCommune": "55123", + "libelleAcheminement": "LES HAUTS DE CHEE", + "nomCommune": "LES HAUTS DE CHEE" }, { "codePostal": "55260", - "codeCommune": "55197", - "libelleAcheminement": "FRESNES AU MONT", - "nomCommune": "FRESNES AU MONT" + "codeCommune": "55127", + "libelleAcheminement": "COURCELLES EN BARROIS", + "nomCommune": "COURCELLES EN BARROIS" }, { - "codePostal": "55100", - "codeCommune": "55200", - "libelleAcheminement": "FROMEREVILLE LES VALLONS", - "nomCommune": "FROMEREVILLE LES VALLONS" + "codePostal": "55170", + "codeCommune": "55132", + "libelleAcheminement": "COUSANCES LES FORGES", + "nomCommune": "COUSANCES LES FORGES" }, { - "codePostal": "55320", - "codeCommune": "55204", - "libelleAcheminement": "GENICOURT SUR MEUSE", - "nomCommune": "GENICOURT SUR MEUSE" + "codePostal": "55400", + "codeCommune": "55153", + "libelleAcheminement": "DIEPPE SOUS DOUAUMONT", + "nomCommune": "DIEPPE SOUS DOUAUMONT" }, { - "codePostal": "55130", - "codeCommune": "55215", - "libelleAcheminement": "GONDRECOURT LE CHATEAU", - "nomCommune": "GONDRECOURT LE CHATEAU" + "codePostal": "55160", + "codeCommune": "55157", + "libelleAcheminement": "DOMMARTIN LA MONTAGNE", + "nomCommune": "DOMMARTIN LA MONTAGNE" }, { - "codePostal": "55130", - "codeCommune": "55215", - "libelleAcheminement": "GONDRECOURT LE CHATEAU", - "nomCommune": "GONDRECOURT LE CHATEAU" + "codePostal": "55100", + "codeCommune": "55180", + "libelleAcheminement": "ESNES EN ARGONNE", + "nomCommune": "ESNES EN ARGONNE" }, { - "codePostal": "55230", - "codeCommune": "55216", - "libelleAcheminement": "GOURAINCOURT", - "nomCommune": "GOURAINCOURT" + "codePostal": "55400", + "codeCommune": "55181", + "libelleAcheminement": "ETAIN", + "nomCommune": "ETAIN" }, { "codePostal": "55150", - "codeCommune": "55218", - "libelleAcheminement": "GREMILLY", - "nomCommune": "GREMILLY" - }, - { - "codePostal": "55700", - "codeCommune": "55225", - "libelleAcheminement": "HALLES SOUS LES COTES", - "nomCommune": "HALLES SOUS LES COTES" + "codeCommune": "55183", + "libelleAcheminement": "ETRAYE", + "nomCommune": "ETRAYE" }, { - "codePostal": "55300", - "codeCommune": "55229", - "libelleAcheminement": "HAN SUR MEUSE", - "nomCommune": "HAN SUR MEUSE" + "codePostal": "55400", + "codeCommune": "55211", + "libelleAcheminement": "GINCREY", + "nomCommune": "GINCREY" }, { - "codePostal": "55300", - "codeCommune": "55229", - "libelleAcheminement": "HAN SUR MEUSE", - "nomCommune": "HAN SUR MEUSE" + "codePostal": "55400", + "codeCommune": "55219", + "libelleAcheminement": "GRIMAUCOURT EN WOEVRE", + "nomCommune": "GRIMAUCOURT EN WOEVRE" }, { - "codePostal": "55220", - "codeCommune": "55241", - "libelleAcheminement": "HEIPPES", - "nomCommune": "HEIPPES" + "codePostal": "55000", + "codeCommune": "55224", + "libelleAcheminement": "HAIRONVILLE", + "nomCommune": "HAIRONVILLE" }, { "codePostal": "55210", - "codeCommune": "55243", - "libelleAcheminement": "HERBEUVILLE", - "nomCommune": "HERBEUVILLE" + "codeCommune": "55228", + "libelleAcheminement": "HANNONVILLE SOUS LES COTES", + "nomCommune": "HANNONVILLE SOUS LES COTES" }, { - "codePostal": "55290", - "codeCommune": "55246", - "libelleAcheminement": "HEVILLIERS", - "nomCommune": "HEVILLIERS" + "codePostal": "55400", + "codeCommune": "55244", + "libelleAcheminement": "HERMEVILLE EN WOEVRE", + "nomCommune": "HERMEVILLE EN WOEVRE" }, { - "codePostal": "55120", - "codeCommune": "55257", - "libelleAcheminement": "JOUY EN ARGONNE", - "nomCommune": "JOUY EN ARGONNE" + "codePostal": "55220", + "codeCommune": "55254", + "libelleAcheminement": "LES TROIS DOMAINES", + "nomCommune": "LES TROIS DOMAINES" }, { "codePostal": "55200", @@ -15395,29 +15185,17 @@ "libelleAcheminement": "GEVILLE", "nomCommune": "GEVILLE" }, - { - "codePostal": "55210", - "codeCommune": "55267", - "libelleAcheminement": "LACHAUSSEE", - "nomCommune": "LACHAUSSEE" - }, - { - "codePostal": "55260", - "codeCommune": "55269", - "libelleAcheminement": "LAHAYMEIX", - "nomCommune": "LAHAYMEIX" - }, { "codePostal": "55300", - "codeCommune": "55274", - "libelleAcheminement": "LAMORVILLE", - "nomCommune": "LAMORVILLE" + "codeCommune": "55270", + "libelleAcheminement": "LAHAYVILLE", + "nomCommune": "LAHAYVILLE" }, { - "codePostal": "55700", - "codeCommune": "55275", - "libelleAcheminement": "LAMOUILLY", - "nomCommune": "LAMOUILLY" + "codePostal": "55100", + "codeCommune": "55276", + "libelleAcheminement": "LANDRECOURT LEMPIRE", + "nomCommune": "LANDRECOURT LEMPIRE" }, { "codePostal": "55190", @@ -15425,12 +15203,6 @@ "libelleAcheminement": "LANEUVILLE AU RUPT", "nomCommune": "LANEUVILLE AU RUPT" }, - { - "codePostal": "55160", - "codeCommune": "55281", - "libelleAcheminement": "LATOUR EN WOEVRE", - "nomCommune": "LATOUR EN WOEVRE" - }, { "codePostal": "55260", "codeCommune": "55282", @@ -15438,88 +15210,70 @@ "nomCommune": "LAVALLEE" }, { - "codePostal": "55220", - "codeCommune": "55286", - "libelleAcheminement": "LEMMES", - "nomCommune": "LEMMES" + "codePostal": "55260", + "codeCommune": "55290", + "libelleAcheminement": "LIGNIERES SUR AIRE", + "nomCommune": "LIGNIERES SUR AIRE" }, { - "codePostal": "55150", - "codeCommune": "55297", - "libelleAcheminement": "LISSEY", - "nomCommune": "LISSEY" + "codePostal": "55250", + "codeCommune": "55295", + "libelleAcheminement": "LISLE EN BARROIS", + "nomCommune": "LISLE EN BARROIS" }, { - "codePostal": "55800", - "codeCommune": "55304", - "libelleAcheminement": "LOUPPY LE CHATEAU", - "nomCommune": "LOUPPY LE CHATEAU" + "codePostal": "55000", + "codeCommune": "55298", + "libelleAcheminement": "LOISEY", + "nomCommune": "LOISEY" }, { - "codePostal": "55290", - "codeCommune": "55315", - "libelleAcheminement": "MANDRES EN BARROIS", - "nomCommune": "MANDRES EN BARROIS" + "codePostal": "55140", + "codeCommune": "55328", + "libelleAcheminement": "MAXEY SUR VAISE", + "nomCommune": "MAXEY SUR VAISE" }, { - "codePostal": "55100", - "codeCommune": "55321", - "libelleAcheminement": "MARRE", - "nomCommune": "MARRE" + "codePostal": "55150", + "codeCommune": "55336", + "libelleAcheminement": "MERLES SUR LOISON", + "nomCommune": "MERLES SUR LOISON" }, { - "codePostal": "55190", - "codeCommune": "55327", - "libelleAcheminement": "MAUVAGES", - "nomCommune": "MAUVAGES" + "codePostal": "55800", + "codeCommune": "55340", + "libelleAcheminement": "MOGNEVILLE", + "nomCommune": "MOGNEVILLE" }, { - "codePostal": "55110", - "codeCommune": "55338", - "libelleAcheminement": "MILLY SUR BRADON", - "nomCommune": "MILLY SUR BRADON" + "codePostal": "55150", + "codeCommune": "55341", + "libelleAcheminement": "MOIREY FLABAS CREPION", + "nomCommune": "MOIREY FLABAS CREPION" }, { - "codePostal": "55400", - "codeCommune": "55339", - "libelleAcheminement": "MOGEVILLE", - "nomCommune": "MOGEVILLE" + "codePostal": "55290", + "codeCommune": "55348", + "libelleAcheminement": "MONTIERS SUR SAULX", + "nomCommune": "MONTIERS SUR SAULX" }, { - "codePostal": "55140", - "codeCommune": "55350", - "libelleAcheminement": "MONTIGNY LES VAUCOULEURS", - "nomCommune": "MONTIGNY LES VAUCOULEURS" + "codePostal": "55500", + "codeCommune": "55358", + "libelleAcheminement": "CHANTERAINE", + "nomCommune": "CHANTERAINE" }, { "codePostal": "55000", - "codeCommune": "55352", - "libelleAcheminement": "MONTPLONNE", - "nomCommune": "MONTPLONNE" - }, - { - "codePostal": "55400", - "codeCommune": "55357", - "libelleAcheminement": "MORGEMOULIN", - "nomCommune": "MORGEMOULIN" - }, - { - "codePostal": "55400", - "codeCommune": "55361", - "libelleAcheminement": "MOULAINVILLE", - "nomCommune": "MOULAINVILLE" - }, - { - "codePostal": "55190", - "codeCommune": "55368", - "libelleAcheminement": "NAIVES EN BLOIS", - "nomCommune": "NAIVES EN BLOIS" + "codeCommune": "55366", + "libelleAcheminement": "VAL D ORNAIN", + "nomCommune": "VAL D ORNAIN" }, { "codePostal": "55500", - "codeCommune": "55371", - "libelleAcheminement": "NANCOIS LE GRAND", - "nomCommune": "NANCOIS LE GRAND" + "codeCommune": "55370", + "libelleAcheminement": "NAIX AUX FORGES", + "nomCommune": "NAIX AUX FORGES" }, { "codePostal": "55500", @@ -15540,34 +15294,64 @@ "nomCommune": "NETTANCOURT" }, { - "codePostal": "55140", - "codeCommune": "55381", - "libelleAcheminement": "NEUVILLE LES VAUCOULEURS", - "nomCommune": "NEUVILLE LES VAUCOULEURS" + "codePostal": "55800", + "codeCommune": "55382", + "libelleAcheminement": "NEUVILLE SUR ORNAIN", + "nomCommune": "NEUVILLE SUR ORNAIN" }, { - "codePostal": "55230", - "codeCommune": "55387", - "libelleAcheminement": "NOUILLONPONT", - "nomCommune": "NOUILLONPONT" + "codePostal": "55260", + "codeCommune": "55384", + "libelleAcheminement": "NICEY SUR AIRE", + "nomCommune": "NICEY SUR AIRE" }, { - "codePostal": "55150", - "codeCommune": "55394", - "libelleAcheminement": "ORNES", - "nomCommune": "ORNES" + "codePostal": "55120", + "codeCommune": "55385", + "libelleAcheminement": "NIXEVILLE BLERCOURT", + "nomCommune": "NIXEVILLE BLERCOURT" }, { - "codePostal": "55140", - "codeCommune": "55397", - "libelleAcheminement": "PAGNY LA BLANCHE COTE", - "nomCommune": "PAGNY LA BLANCHE COTE" + "codePostal": "55800", + "codeCommune": "55388", + "libelleAcheminement": "NOYERS AUZECOURT", + "nomCommune": "NOYERS AUZECOURT" }, { - "codePostal": "55600", - "codeCommune": "55410", - "libelleAcheminement": "QUINCY LANDZECOURT", - "nomCommune": "QUINCY LANDZECOURT" + "codePostal": "55250", + "codeCommune": "55389", + "libelleAcheminement": "NUBECOURT", + "nomCommune": "NUBECOURT" + }, + { + "codePostal": "55220", + "codeCommune": "55395", + "libelleAcheminement": "OSCHES", + "nomCommune": "OSCHES" + }, + { + "codePostal": "55160", + "codeCommune": "55406", + "libelleAcheminement": "PINTHEVILLE", + "nomCommune": "PINTHEVILLE" + }, + { + "codePostal": "55250", + "codeCommune": "55409", + "libelleAcheminement": "PRETZ EN ARGONNE", + "nomCommune": "PRETZ EN ARGONNE" + }, + { + "codePostal": "55300", + "codeCommune": "55412", + "libelleAcheminement": "RAMBUCOURT", + "nomCommune": "RAMBUCOURT" + }, + { + "codePostal": "55110", + "codeCommune": "55422", + "libelleAcheminement": "REGNEVILLE SUR MEUSE", + "nomCommune": "REGNEVILLE SUR MEUSE" }, { "codePostal": "55250", @@ -15576,28 +15360,58 @@ "nomCommune": "REMBERCOURT SOMMAISNE" }, { - "codePostal": "55000", - "codeCommune": "55426", - "libelleAcheminement": "RESSON", - "nomCommune": "RESSON" + "codePostal": "55800", + "codeCommune": "55424", + "libelleAcheminement": "REMENNECOURT", + "nomCommune": "REMENNECOURT" }, { - "codePostal": "55150", - "codeCommune": "55428", - "libelleAcheminement": "REVILLE AUX BOIS", - "nomCommune": "REVILLE AUX BOIS" + "codePostal": "55600", + "codeCommune": "55425", + "libelleAcheminement": "REMOIVILLE", + "nomCommune": "REMOIVILLE" }, { - "codePostal": "55110", - "codeCommune": "55438", - "libelleAcheminement": "ROMAGNE SOUS MONTFAUCON", - "nomCommune": "ROMAGNE SOUS MONTFAUCON" + "codePostal": "55290", + "codeCommune": "55430", + "libelleAcheminement": "RIBEAUCOURT", + "nomCommune": "RIBEAUCOURT" }, { - "codePostal": "55170", - "codeCommune": "55447", - "libelleAcheminement": "RUPT AUX NONAINS", - "nomCommune": "RUPT AUX NONAINS" + "codePostal": "55140", + "codeCommune": "55434", + "libelleAcheminement": "RIGNY ST MARTIN", + "nomCommune": "RIGNY ST MARTIN" + }, + { + "codePostal": "55160", + "codeCommune": "55439", + "libelleAcheminement": "RONVAUX", + "nomCommune": "RONVAUX" + }, + { + "codePostal": "55260", + "codeCommune": "55442", + "libelleAcheminement": "RAIVAL", + "nomCommune": "RAIVAL" + }, + { + "codePostal": "55300", + "codeCommune": "55444", + "libelleAcheminement": "ROUVROIS SUR MEUSE", + "nomCommune": "ROUVROIS SUR MEUSE" + }, + { + "codePostal": "55230", + "codeCommune": "55445", + "libelleAcheminement": "ROUVROIS SUR OTHAIN", + "nomCommune": "ROUVROIS SUR OTHAIN" + }, + { + "codePostal": "55260", + "codeCommune": "55448", + "libelleAcheminement": "RUPT DEVANT ST MIHIEL", + "nomCommune": "RUPT DEVANT ST MIHIEL" }, { "codePostal": "55500", @@ -15606,82 +15420,124 @@ "nomCommune": "ST AMAND SUR ORNAIN" }, { - "codePostal": "55140", - "codeCommune": "55456", - "libelleAcheminement": "ST GERMAIN SUR MEUSE", - "nomCommune": "ST GERMAIN SUR MEUSE" + "codePostal": "55500", + "codeCommune": "55454", + "libelleAcheminement": "ST AUBIN SUR AIRE", + "nomCommune": "ST AUBIN SUR AIRE" }, { - "codePostal": "55160", - "codeCommune": "55457", - "libelleAcheminement": "ST HILAIRE EN WOEVRE", - "nomCommune": "ST HILAIRE EN WOEVRE" + "codePostal": "55200", + "codeCommune": "55460", + "libelleAcheminement": "ST JULIEN SOUS LES COTES", + "nomCommune": "ST JULIEN SOUS LES COTES" }, { - "codePostal": "55110", - "codeCommune": "55469", - "libelleAcheminement": "SASSEY SUR MEUSE", - "nomCommune": "SASSEY SUR MEUSE" + "codePostal": "55150", + "codeCommune": "55461", + "libelleAcheminement": "ST LAURENT SUR OTHAIN", + "nomCommune": "ST LAURENT SUR OTHAIN" }, { - "codePostal": "55000", - "codeCommune": "55470", - "libelleAcheminement": "SAUDRUPT", - "nomCommune": "SAUDRUPT" + "codePostal": "55210", + "codeCommune": "55462", + "libelleAcheminement": "ST MAURICE SOUS LES COTES", + "nomCommune": "ST MAURICE SOUS LES COTES" }, { - "codePostal": "55500", - "codeCommune": "55472", - "libelleAcheminement": "SAULVAUX", - "nomCommune": "SAULVAUX" + "codePostal": "55230", + "codeCommune": "55464", + "libelleAcheminement": "ST PIERREVILLERS", + "nomCommune": "ST PIERREVILLERS" }, { - "codePostal": "55190", - "codeCommune": "55475", - "libelleAcheminement": "SAUVOY", - "nomCommune": "SAUVOY" + "codePostal": "55100", + "codeCommune": "55489", + "libelleAcheminement": "SIVRY LA PERCHE", + "nomCommune": "SIVRY LA PERCHE" }, { - "codePostal": "55270", - "codeCommune": "55484", - "libelleAcheminement": "SEPTSARGES", - "nomCommune": "SEPTSARGES" + "codePostal": "55220", + "codeCommune": "55497", + "libelleAcheminement": "LES SOUHESMES RAMPONT", + "nomCommune": "LES SOUHESMES RAMPONT" }, { - "codePostal": "55170", - "codeCommune": "55494", - "libelleAcheminement": "SOMMELONNE", - "nomCommune": "SOMMELONNE" + "codePostal": "55230", + "codeCommune": "55500", + "libelleAcheminement": "SPINCOURT", + "nomCommune": "SPINCOURT" }, { - "codePostal": "55840", - "codeCommune": "55505", - "libelleAcheminement": "THIERVILLE SUR MEUSE", - "nomCommune": "THIERVILLE SUR MEUSE" + "codePostal": "55230", + "codeCommune": "55500", + "libelleAcheminement": "SPINCOURT", + "nomCommune": "SPINCOURT" }, { - "codePostal": "55140", - "codeCommune": "55522", - "libelleAcheminement": "UGNY SUR MEUSE", - "nomCommune": "UGNY SUR MEUSE" + "codePostal": "55230", + "codeCommune": "55500", + "libelleAcheminement": "SPINCOURT", + "nomCommune": "SPINCOURT" }, { - "codePostal": "55100", - "codeCommune": "55523", - "libelleAcheminement": "VACHERAUVILLE", - "nomCommune": "VACHERAUVILLE" + "codePostal": "55600", + "codeCommune": "55509", + "libelleAcheminement": "THONNE LE THIL", + "nomCommune": "THONNE LE THIL" }, { - "codePostal": "55200", - "codeCommune": "55526", - "libelleAcheminement": "VADONVILLE", - "nomCommune": "VADONVILLE" + "codePostal": "55220", + "codeCommune": "55512", + "libelleAcheminement": "TILLY SUR MEUSE", + "nomCommune": "TILLY SUR MEUSE" + }, + { + "codePostal": "55160", + "codeCommune": "55515", + "libelleAcheminement": "TRESAUVAUX", + "nomCommune": "TRESAUVAUX" + }, + { + "codePostal": "55250", + "codeCommune": "55517", + "libelleAcheminement": "SEUIL D ARGONNE", + "nomCommune": "SEUIL D ARGONNE" + }, + { + "codePostal": "55300", + "codeCommune": "55521", + "libelleAcheminement": "TROYON", + "nomCommune": "TROYON" + }, + { + "codePostal": "55220", + "codeCommune": "55525", + "libelleAcheminement": "VADELAINCOURT", + "nomCommune": "VADELAINCOURT" + }, + { + "codePostal": "55300", + "codeCommune": "55530", + "libelleAcheminement": "VALBOIS", + "nomCommune": "VALBOIS" + }, + { + "codePostal": "55140", + "codeCommune": "55533", + "libelleAcheminement": "VAUCOULEURS", + "nomCommune": "VAUCOULEURS" }, { "codePostal": "55270", - "codeCommune": "55549", - "libelleAcheminement": "VERY", - "nomCommune": "VERY" + "codeCommune": "55536", + "libelleAcheminement": "VAUQUOIS", + "nomCommune": "VAUQUOIS" + }, + { + "codePostal": "55100", + "codeCommune": "55537", + "libelleAcheminement": "DOUAUMONT VAUX", + "nomCommune": "DOUAUMONT VAUX" }, { "codePostal": "55210", @@ -15689,12 +15545,6 @@ "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", "nomCommune": "VIGNEULLES LES HATTONCHATEL" }, - { - "codePostal": "55200", - "codeCommune": "55553", - "libelleAcheminement": "VIGNOT", - "nomCommune": "VIGNOT" - }, { "codePostal": "55160", "codeCommune": "55557", @@ -15708,22 +15558,28 @@ "nomCommune": "VILLEROY SUR MEHOLLE" }, { - "codePostal": "55000", - "codeCommune": "55568", - "libelleAcheminement": "VILLE SUR SAULX", - "nomCommune": "VILLE SUR SAULX" + "codePostal": "55220", + "codeCommune": "55566", + "libelleAcheminement": "VILLERS SUR MEUSE", + "nomCommune": "VILLERS SUR MEUSE" }, { - "codePostal": "55110", - "codeCommune": "55571", - "libelleAcheminement": "VILOSNES HARAUMONT", - "nomCommune": "VILOSNES HARAUMONT" + "codePostal": "55120", + "codeCommune": "55567", + "libelleAcheminement": "VILLE SUR COUSANCES", + "nomCommune": "VILLE SUR COUSANCES" }, { - "codePostal": "55160", - "codeCommune": "55579", - "libelleAcheminement": "WATRONVILLE", - "nomCommune": "WATRONVILLE" + "codePostal": "55260", + "codeCommune": "55570", + "libelleAcheminement": "VILLOTTE SUR AIRE", + "nomCommune": "VILLOTTE SUR AIRE" + }, + { + "codePostal": "55250", + "codeCommune": "55577", + "libelleAcheminement": "WALY", + "nomCommune": "WALY" }, { "codePostal": "55700", @@ -15731,23 +15587,11 @@ "libelleAcheminement": "WISEPPE", "nomCommune": "WISEPPE" }, - { - "codePostal": "55210", - "codeCommune": "55583", - "libelleAcheminement": "WOEL", - "nomCommune": "WOEL" - }, { "codePostal": "55300", - "codeCommune": "55584", - "libelleAcheminement": "WOIMBEY", - "nomCommune": "WOIMBEY" - }, - { - "codePostal": "56610", - "codeCommune": "56003", - "libelleAcheminement": "ARRADON", - "nomCommune": "ARRADON" + "codeCommune": "55586", + "libelleAcheminement": "XIVRAY ET MARVOISIN", + "nomCommune": "XIVRAY ET MARVOISIN" }, { "codePostal": "56400", @@ -15755,18 +15599,6 @@ "libelleAcheminement": "AURAY", "nomCommune": "AURAY" }, - { - "codePostal": "56870", - "codeCommune": "56008", - "libelleAcheminement": "BADEN", - "nomCommune": "BADEN" - }, - { - "codePostal": "56150", - "codeCommune": "56010", - "libelleAcheminement": "BAUD", - "nomCommune": "BAUD" - }, { "codePostal": "56230", "codeCommune": "56015", @@ -15774,52 +15606,76 @@ "nomCommune": "BERRIC" }, { - "codePostal": "56700", - "codeCommune": "56021", - "libelleAcheminement": "BRANDERION", - "nomCommune": "BRANDERION" + "codePostal": "56310", + "codeCommune": "56026", + "libelleAcheminement": "BUBRY", + "nomCommune": "BUBRY" }, { - "codePostal": "56400", - "codeCommune": "56023", - "libelleAcheminement": "BRECH", - "nomCommune": "BRECH" + "codePostal": "56220", + "codeCommune": "56028", + "libelleAcheminement": "CADEN", + "nomCommune": "CADEN" }, { - "codePostal": "56140", - "codeCommune": "56035", - "libelleAcheminement": "CARO", - "nomCommune": "CARO" + "codePostal": "56240", + "codeCommune": "56029", + "libelleAcheminement": "CALAN", + "nomCommune": "CALAN" }, { - "codePostal": "56850", - "codeCommune": "56036", - "libelleAcheminement": "CAUDAN", - "nomCommune": "CAUDAN" + "codePostal": "56340", + "codeCommune": "56034", + "libelleAcheminement": "CARNAC", + "nomCommune": "CARNAC" }, { - "codePostal": "56480", - "codeCommune": "56041", - "libelleAcheminement": "CLEGUEREC", - "nomCommune": "CLEGUEREC" + "codePostal": "56500", + "codeCommune": "56039", + "libelleAcheminement": "LA CHAPELLE NEUVE", + "nomCommune": "LA CHAPELLE NEUVE" }, { - "codePostal": "56950", - "codeCommune": "56046", - "libelleAcheminement": "CRACH", - "nomCommune": "CRACH" + "codePostal": "56430", + "codeCommune": "56043", + "libelleAcheminement": "CONCORET", + "nomCommune": "CONCORET" }, { - "codePostal": "56580", - "codeCommune": "56047", - "libelleAcheminement": "CREDIN", - "nomCommune": "CREDIN" + "codePostal": "56750", + "codeCommune": "56052", + "libelleAcheminement": "DAMGAN", + "nomCommune": "DAMGAN" }, { - "codePostal": "56390", - "codeCommune": "56067", - "libelleAcheminement": "GRAND CHAMP", - "nomCommune": "GRAND CHAMP" + "codePostal": "56250", + "codeCommune": "56053", + "libelleAcheminement": "ELVEN", + "nomCommune": "ELVEN" + }, + { + "codePostal": "56410", + "codeCommune": "56055", + "libelleAcheminement": "ETEL", + "nomCommune": "ETEL" + }, + { + "codePostal": "56490", + "codeCommune": "56056", + "libelleAcheminement": "EVRIGUET", + "nomCommune": "EVRIGUET" + }, + { + "codePostal": "56200", + "codeCommune": "56061", + "libelleAcheminement": "LA GACILLY", + "nomCommune": "LA GACILLY" + }, + { + "codePostal": "56200", + "codeCommune": "56061", + "libelleAcheminement": "LA GACILLY", + "nomCommune": "LA GACILLY" }, { "codePostal": "56920", @@ -15828,118 +15684,70 @@ "nomCommune": "GUELTAS" }, { - "codePostal": "56160", - "codeCommune": "56073", - "libelleAcheminement": "GUEMENE SUR SCORFF", - "nomCommune": "GUEMENE SUR SCORFF" + "codePostal": "56120", + "codeCommune": "56082", + "libelleAcheminement": "HELLEAN", + "nomCommune": "HELLEAN" }, { - "codePostal": "56700", - "codeCommune": "56083", - "libelleAcheminement": "HENNEBONT", - "nomCommune": "HENNEBONT" + "codePostal": "56650", + "codeCommune": "56090", + "libelleAcheminement": "INZINZAC LOCHRIST", + "nomCommune": "INZINZAC LOCHRIST" }, { - "codePostal": "56170", - "codeCommune": "56086", - "libelleAcheminement": "ILE D HOUAT", - "nomCommune": "ILE D HOUAT" + "codePostal": "56160", + "codeCommune": "56099", + "libelleAcheminement": "LANGOELAN", + "nomCommune": "LANGOELAN" }, { - "codePostal": "56780", - "codeCommune": "56087", - "libelleAcheminement": "ILE AUX MOINES", - "nomCommune": "ILE AUX MOINES" + "codePostal": "56740", + "codeCommune": "56116", + "libelleAcheminement": "LOCMARIAQUER", + "nomCommune": "LOCMARIAQUER" }, { - "codePostal": "56240", - "codeCommune": "56089", - "libelleAcheminement": "INGUINIEL", - "nomCommune": "INGUINIEL" + "codePostal": "56570", + "codeCommune": "56118", + "libelleAcheminement": "LOCMIQUELIC", + "nomCommune": "LOCMIQUELIC" + }, + { + "codePostal": "56100", + "codeCommune": "56121", + "libelleAcheminement": "LORIENT", + "nomCommune": "LORIENT" }, { "codePostal": "56700", - "codeCommune": "56094", - "libelleAcheminement": "KERVIGNAC", - "nomCommune": "KERVIGNAC" + "codeCommune": "56130", + "libelleAcheminement": "MERLEVENEZ", + "nomCommune": "MERLEVENEZ" }, { - "codePostal": "56600", - "codeCommune": "56098", - "libelleAcheminement": "LANESTER", - "nomCommune": "LANESTER" + "codePostal": "56800", + "codeCommune": "56139", + "libelleAcheminement": "MONTERTELOT", + "nomCommune": "MONTERTELOT" }, { - "codePostal": "56320", - "codeCommune": "56105", - "libelleAcheminement": "LANVENEGEN", - "nomCommune": "LANVENEGEN" + "codePostal": "56430", + "codeCommune": "56145", + "libelleAcheminement": "NEANT SUR YVEL", + "nomCommune": "NEANT SUR YVEL" }, { - "codePostal": "56160", - "codeCommune": "56110", - "libelleAcheminement": "LIGNOL", - "nomCommune": "LIGNOL" + "codePostal": "56920", + "codeCommune": "56151", + "libelleAcheminement": "NOYAL PONTIVY", + "nomCommune": "NOYAL PONTIVY" }, { - "codePostal": "56390", - "codeCommune": "56115", - "libelleAcheminement": "LOCMARIA GRAND CHAMP", - "nomCommune": "LOCMARIA GRAND CHAMP" - }, - { - "codePostal": "56550", - "codeCommune": "56119", - "libelleAcheminement": "LOCOAL MENDON", - "nomCommune": "LOCOAL MENDON" - }, - { - "codePostal": "56390", - "codeCommune": "56120", - "libelleAcheminement": "LOCQUELTAS", - "nomCommune": "LOCQUELTAS" - }, - { - "codePostal": "56220", - "codeCommune": "56123", - "libelleAcheminement": "MALANSAC", - "nomCommune": "MALANSAC" - }, - { - "codePostal": "56310", - "codeCommune": "56128", - "libelleAcheminement": "MELRAND", - "nomCommune": "MELRAND" - }, - { - "codePostal": "56490", - "codeCommune": "56129", - "libelleAcheminement": "MENEAC", - "nomCommune": "MENEAC" - }, - { - "codePostal": "56140", - "codeCommune": "56133", - "libelleAcheminement": "MISSIRIAC", - "nomCommune": "MISSIRIAC" - }, - { - "codePostal": "56500", - "codeCommune": "56144", - "libelleAcheminement": "EVELLYS", - "nomCommune": "EVELLYS" - }, - { - "codePostal": "56220", - "codeCommune": "56154", - "libelleAcheminement": "PEILLAC", - "nomCommune": "PEILLAC" - }, - { - "codePostal": "56160", - "codeCommune": "56156", - "libelleAcheminement": "PERSQUEN", - "nomCommune": "PERSQUEN" + "codePostal": "56400", + "codeCommune": "56161", + "libelleAcheminement": "PLOEMEL", + "nomCommune": "PLOEMEL" }, { "codePostal": "56270", @@ -15959,18 +15767,6 @@ "libelleAcheminement": "PLOERMEL", "nomCommune": "PLOERMEL" }, - { - "codePostal": "56340", - "codeCommune": "56168", - "libelleAcheminement": "PLOUHARNEL", - "nomCommune": "PLOUHARNEL" - }, - { - "codePostal": "56770", - "codeCommune": "56170", - "libelleAcheminement": "PLOURAY", - "nomCommune": "PLOURAY" - }, { "codePostal": "56220", "codeCommune": "56171", @@ -15978,10 +15774,10 @@ "nomCommune": "PLUHERLIN" }, { - "codePostal": "56380", - "codeCommune": "56180", - "libelleAcheminement": "PORCARO", - "nomCommune": "PORCARO" + "codePostal": "56620", + "codeCommune": "56179", + "libelleAcheminement": "PONT SCORFF", + "nomCommune": "PONT SCORFF" }, { "codePostal": "56170", @@ -15990,40 +15786,40 @@ "nomCommune": "QUIBERON" }, { - "codePostal": "56310", - "codeCommune": "56188", - "libelleAcheminement": "QUISTINIC", - "nomCommune": "QUISTINIC" + "codePostal": "56500", + "codeCommune": "56190", + "libelleAcheminement": "REGUINY", + "nomCommune": "REGUINY" }, { - "codePostal": "56500", - "codeCommune": "56189", - "libelleAcheminement": "RADENAC", - "nomCommune": "RADENAC" + "codePostal": "56460", + "codeCommune": "56197", + "libelleAcheminement": "VAL D OUST", + "nomCommune": "VAL D OUST" }, { - "codePostal": "56580", - "codeCommune": "56198", - "libelleAcheminement": "ROHAN", - "nomCommune": "ROHAN" + "codePostal": "56800", + "codeCommune": "56197", + "libelleAcheminement": "VAL D OUST", + "nomCommune": "VAL D OUST" }, { - "codePostal": "56580", - "codeCommune": "56198", - "libelleAcheminement": "ROHAN", - "nomCommune": "ROHAN" + "codePostal": "56140", + "codeCommune": "56202", + "libelleAcheminement": "ST ABRAHAM", + "nomCommune": "ST ABRAHAM" }, { - "codePostal": "56890", - "codeCommune": "56206", - "libelleAcheminement": "ST AVE", - "nomCommune": "ST AVE" + "codePostal": "56480", + "codeCommune": "56203", + "libelleAcheminement": "ST AIGNAN", + "nomCommune": "ST AIGNAN" }, { - "codePostal": "56130", - "codeCommune": "56212", - "libelleAcheminement": "ST DOLAY", - "nomCommune": "ST DOLAY" + "codePostal": "56150", + "codeCommune": "56207", + "libelleAcheminement": "ST BARTHELEMY", + "nomCommune": "ST BARTHELEMY" }, { "codePostal": "56920", @@ -16031,12 +15827,6 @@ "libelleAcheminement": "ST GERAND CROIXANVEC", "nomCommune": "ST GERAND CROIXANVEC" }, - { - "codePostal": "56730", - "codeCommune": "56214", - "libelleAcheminement": "ST GILDAS DE RHUYS", - "nomCommune": "ST GILDAS DE RHUYS" - }, { "codePostal": "56350", "codeCommune": "56216", @@ -16044,46 +15834,34 @@ "nomCommune": "ST GORGON" }, { - "codePostal": "56140", - "codeCommune": "56224", - "libelleAcheminement": "ST LAURENT SUR OUST", - "nomCommune": "ST LAURENT SUR OUST" - }, - { - "codePostal": "56510", - "codeCommune": "56234", - "libelleAcheminement": "ST PIERRE QUIBERON", - "nomCommune": "ST PIERRE QUIBERON" - }, - { - "codePostal": "56370", - "codeCommune": "56240", - "libelleAcheminement": "SARZEAU", - "nomCommune": "SARZEAU" + "codePostal": "56350", + "codeCommune": "56223", + "libelleAcheminement": "ST JEAN LA POTERIE", + "nomCommune": "ST JEAN LA POTERIE" }, { - "codePostal": "56160", - "codeCommune": "56242", - "libelleAcheminement": "SEGLIEN", - "nomCommune": "SEGLIEN" + "codePostal": "56200", + "codeCommune": "56229", + "libelleAcheminement": "ST MARTIN SUR OUST", + "nomCommune": "ST MARTIN SUR OUST" }, { - "codePostal": "56460", - "codeCommune": "56244", - "libelleAcheminement": "SERENT", - "nomCommune": "SERENT" + "codePostal": "56360", + "codeCommune": "56241", + "libelleAcheminement": "SAUZON", + "nomCommune": "SAUZON" }, { - "codePostal": "56480", - "codeCommune": "56245", - "libelleAcheminement": "SILFIAC", - "nomCommune": "SILFIAC" + "codePostal": "56250", + "codeCommune": "56247", + "libelleAcheminement": "SULNIAC", + "nomCommune": "SULNIAC" }, { - "codePostal": "56800", - "codeCommune": "56249", - "libelleAcheminement": "TAUPONT", - "nomCommune": "TAUPONT" + "codePostal": "56370", + "codeCommune": "56252", + "libelleAcheminement": "LE TOUR DU PARC", + "nomCommune": "LE TOUR DU PARC" }, { "codePostal": "56430", @@ -16091,12 +15869,6 @@ "libelleAcheminement": "TREHORENTEUC", "nomCommune": "TREHORENTEUC" }, - { - "codePostal": "56490", - "codeCommune": "56257", - "libelleAcheminement": "LA TRINITE PORHOET", - "nomCommune": "LA TRINITE PORHOET" - }, { "codePostal": "56470", "codeCommune": "56258", @@ -16104,28 +15876,28 @@ "nomCommune": "LA TRINITE SUR MER" }, { - "codePostal": "57590", - "codeCommune": "57002", - "libelleAcheminement": "ABONCOURT SUR SEILLE", - "nomCommune": "ABONCOURT SUR SEILLE" + "codePostal": "56540", + "codeCommune": "56264", + "libelleAcheminement": "KERNASCLEDEN", + "nomCommune": "KERNASCLEDEN" }, { - "codePostal": "57380", - "codeCommune": "57008", - "libelleAcheminement": "ADELANGE", - "nomCommune": "ADELANGE" + "codePostal": "57580", + "codeCommune": "57007", + "libelleAcheminement": "ADAINCOURT", + "nomCommune": "ADAINCOURT" }, { - "codePostal": "57515", - "codeCommune": "57013", - "libelleAcheminement": "ALSTING", - "nomCommune": "ALSTING" + "codePostal": "57580", + "codeCommune": "57029", + "libelleAcheminement": "ARRIANCE", + "nomCommune": "ARRIANCE" }, { - "codePostal": "57640", - "codeCommune": "57028", - "libelleAcheminement": "ARGANCY", - "nomCommune": "ARGANCY" + "codePostal": "57680", + "codeCommune": "57030", + "libelleAcheminement": "ARRY", + "nomCommune": "ARRY" }, { "codePostal": "57530", @@ -16134,34 +15906,22 @@ "nomCommune": "ARS LAQUENEXY" }, { - "codePostal": "57790", - "codeCommune": "57034", - "libelleAcheminement": "ASPACH", - "nomCommune": "ASPACH" - }, - { - "codePostal": "57390", - "codeCommune": "57038", - "libelleAcheminement": "AUDUN LE TICHE", - "nomCommune": "AUDUN LE TICHE" - }, - { - "codePostal": "57300", - "codeCommune": "57043", - "libelleAcheminement": "AY SUR MOSELLE", - "nomCommune": "AY SUR MOSELLE" + "codePostal": "57685", + "codeCommune": "57039", + "libelleAcheminement": "AUGNY", + "nomCommune": "AUGNY" }, { - "codePostal": "57590", - "codeCommune": "57045", - "libelleAcheminement": "BACOURT", - "nomCommune": "BACOURT" + "codePostal": "57690", + "codeCommune": "57047", + "libelleAcheminement": "BAMBIDERSTROFF", + "nomCommune": "BAMBIDERSTROFF" }, { - "codePostal": "57830", - "codeCommune": "57056", - "libelleAcheminement": "BEBING", - "nomCommune": "BEBING" + "codePostal": "57670", + "codeCommune": "57060", + "libelleAcheminement": "BENESTROFF", + "nomCommune": "BENESTROFF" }, { "codePostal": "57660", @@ -16170,16 +15930,16 @@ "nomCommune": "BERIG VINTRANGE" }, { - "codePostal": "57340", - "codeCommune": "57065", - "libelleAcheminement": "BERMERING", - "nomCommune": "BERMERING" + "codePostal": "57930", + "codeCommune": "57066", + "libelleAcheminement": "BERTHELMING", + "nomCommune": "BERTHELMING" }, { - "codePostal": "57550", - "codeCommune": "57069", - "libelleAcheminement": "BERVILLER EN MOSELLE", - "nomCommune": "BERVILLER EN MOSELLE" + "codePostal": "57310", + "codeCommune": "57067", + "libelleAcheminement": "BERTRANGE", + "nomCommune": "BERTRANGE" }, { "codePostal": "57640", @@ -16188,22 +15948,16 @@ "nomCommune": "BETTELAINVILLE" }, { - "codePostal": "57800", - "codeCommune": "57073", - "libelleAcheminement": "BETTING", - "nomCommune": "BETTING" - }, - { - "codePostal": "57635", - "codeCommune": "57080", - "libelleAcheminement": "BICKENHOLTZ", - "nomCommune": "BICKENHOLTZ" + "codePostal": "57570", + "codeCommune": "57076", + "libelleAcheminement": "BEYREN LES SIERCK", + "nomCommune": "BEYREN LES SIERCK" }, { - "codePostal": "57660", - "codeCommune": "57082", - "libelleAcheminement": "BIDING", - "nomCommune": "BIDING" + "codePostal": "57260", + "codeCommune": "57081", + "libelleAcheminement": "BIDESTROFF", + "nomCommune": "BIDESTROFF" }, { "codePostal": "57930", @@ -16211,59 +15965,23 @@ "libelleAcheminement": "BELLES FORETS", "nomCommune": "BELLES FORETS" }, - { - "codePostal": "57660", - "codeCommune": "57088", - "libelleAcheminement": "BISTROFF", - "nomCommune": "BISTROFF" - }, - { - "codePostal": "57220", - "codeCommune": "57095", - "libelleAcheminement": "BOUCHEPORN", - "nomCommune": "BOUCHEPORN" - }, { "codePostal": "57230", - "codeCommune": "57103", - "libelleAcheminement": "BOUSSEVILLER", - "nomCommune": "BOUSSEVILLER" - }, - { - "codePostal": "57920", - "codeCommune": "57117", - "libelleAcheminement": "BUDING", - "nomCommune": "BUDING" - }, - { - "codePostal": "57170", - "codeCommune": "57120", - "libelleAcheminement": "BURLIONCOURT", - "nomCommune": "BURLIONCOURT" + "codeCommune": "57089", + "libelleAcheminement": "BITCHE", + "nomCommune": "BITCHE" }, { "codePostal": "57220", - "codeCommune": "57121", - "libelleAcheminement": "BURTONCOURT", - "nomCommune": "BURTONCOURT" - }, - { - "codePostal": "57340", - "codeCommune": "57130", - "libelleAcheminement": "CHATEAU BREHAIN", - "nomCommune": "CHATEAU BREHAIN" - }, - { - "codePostal": "57320", - "codeCommune": "57131", - "libelleAcheminement": "CHATEAU ROUGE", - "nomCommune": "CHATEAU ROUGE" + "codeCommune": "57097", + "libelleAcheminement": "BOULAY", + "nomCommune": "BOULAY MOSELLE" }, { - "codePostal": "57170", - "codeCommune": "57132", - "libelleAcheminement": "CHATEAU SALINS", - "nomCommune": "CHATEAU SALINS" + "codePostal": "57400", + "codeCommune": "57119", + "libelleAcheminement": "BUHL LORRAINE", + "nomCommune": "BUHL LORRAINE" }, { "codePostal": "57320", @@ -16278,10 +15996,10 @@ "nomCommune": "CHENOIS" }, { - "codePostal": "57590", - "codeCommune": "57141", - "libelleAcheminement": "CHICOURT", - "nomCommune": "CHICOURT" + "codePostal": "57800", + "codeCommune": "57144", + "libelleAcheminement": "COCHEREN", + "nomCommune": "COCHEREN" }, { "codePostal": "57530", @@ -16295,17 +16013,23 @@ "libelleAcheminement": "COLMEN", "nomCommune": "COLMEN" }, + { + "codePostal": "57680", + "codeCommune": "57153", + "libelleAcheminement": "CORNY SUR MOSELLE", + "nomCommune": "CORNY SUR MOSELLE" + }, { "codePostal": "57220", - "codeCommune": "57150", - "libelleAcheminement": "CONDE NORTHEN", - "nomCommune": "CONDE NORTHEN" + "codeCommune": "57154", + "libelleAcheminement": "COUME", + "nomCommune": "COUME" }, { - "codePostal": "57320", - "codeCommune": "57167", - "libelleAcheminement": "DALSTEIN", - "nomCommune": "DALSTEIN" + "codePostal": "57690", + "codeCommune": "57159", + "libelleAcheminement": "CREHANGE", + "nomCommune": "CREHANGE" }, { "codePostal": "57820", @@ -16315,33 +16039,21 @@ }, { "codePostal": "57260", - "codeCommune": "57173", - "libelleAcheminement": "DESSELING", - "nomCommune": "DESSELING" - }, - { - "codePostal": "57660", - "codeCommune": "57178", - "libelleAcheminement": "DIFFEMBACH LES HELLIMER", - "nomCommune": "DIFFEMBACH LES HELLIMER" - }, - { - "codePostal": "57365", - "codeCommune": "57193", - "libelleAcheminement": "ENNERY", - "nomCommune": "ENNERY" + "codeCommune": "57177", + "libelleAcheminement": "DIEUZE", + "nomCommune": "DIEUZE" }, { - "codePostal": "57720", - "codeCommune": "57195", - "libelleAcheminement": "EPPING", - "nomCommune": "EPPING" + "codePostal": "57590", + "codeCommune": "57182", + "libelleAcheminement": "DONJEUX", + "nomCommune": "DONJEUX" }, { - "codePostal": "57510", - "codeCommune": "57197", - "libelleAcheminement": "ERNESTVILLER", - "nomCommune": "ERNESTVILLER" + "codePostal": "57415", + "codeCommune": "57192", + "libelleAcheminement": "ENCHENBERG", + "nomCommune": "ENCHENBERG" }, { "codePostal": "57330", @@ -16350,16 +16062,10 @@ "nomCommune": "ESCHERANGE" }, { - "codePostal": "57530", - "codeCommune": "57200", - "libelleAcheminement": "LES ETANGS", - "nomCommune": "LES ETANGS" - }, - { - "codePostal": "57412", - "codeCommune": "57201", - "libelleAcheminement": "ETTING", - "nomCommune": "ETTING" + "codePostal": "57570", + "codeCommune": "57203", + "libelleAcheminement": "EVRANGE", + "nomCommune": "EVRANGE" }, { "codePostal": "57550", @@ -16368,28 +16074,28 @@ "nomCommune": "FALCK" }, { - "codePostal": "57290", - "codeCommune": "57206", - "libelleAcheminement": "FAMECK", - "nomCommune": "FAMECK" + "codePostal": "57380", + "codeCommune": "57209", + "libelleAcheminement": "FAULQUEMONT", + "nomCommune": "FAULQUEMONT" }, { - "codePostal": "57290", - "codeCommune": "57206", - "libelleAcheminement": "FAMECK", - "nomCommune": "FAMECK" + "codePostal": "57570", + "codeCommune": "57214", + "libelleAcheminement": "FIXEM", + "nomCommune": "FIXEM" }, { "codePostal": "57320", - "codeCommune": "57213", - "libelleAcheminement": "FILSTROFF", - "nomCommune": "FILSTROFF" + "codeCommune": "57215", + "libelleAcheminement": "FLASTROFF", + "nomCommune": "FLASTROFF" }, { - "codePostal": "57420", - "codeCommune": "57218", - "libelleAcheminement": "FLEURY", - "nomCommune": "FLEURY" + "codePostal": "57690", + "codeCommune": "57217", + "libelleAcheminement": "FLETRANGE", + "nomCommune": "FLETRANGE" }, { "codePostal": "57590", @@ -16398,28 +16104,22 @@ "nomCommune": "FONTENY" }, { - "codePostal": "57670", - "codeCommune": "57232", - "libelleAcheminement": "FRANCALTROFF", - "nomCommune": "FRANCALTROFF" - }, - { - "codePostal": "57790", - "codeCommune": "57233", - "libelleAcheminement": "FRAQUELFING", - "nomCommune": "FRAQUELFING" + "codePostal": "57600", + "codeCommune": "57227", + "libelleAcheminement": "FORBACH", + "nomCommune": "FORBACH" }, { - "codePostal": "57200", - "codeCommune": "57234", - "libelleAcheminement": "FRAUENBERG", - "nomCommune": "FRAUENBERG" + "codePostal": "57220", + "codeCommune": "57230", + "libelleAcheminement": "FOULIGNY", + "nomCommune": "FOULIGNY" }, { - "codePostal": "57660", - "codeCommune": "57239", - "libelleAcheminement": "FREYBOUSE", - "nomCommune": "FREYBOUSE" + "codePostal": "57420", + "codeCommune": "57231", + "libelleAcheminement": "FOVILLE", + "nomCommune": "FOVILLE" }, { "codePostal": "57800", @@ -16427,12 +16127,42 @@ "libelleAcheminement": "FREYMING MERLEBACH", "nomCommune": "FREYMING MERLEBACH" }, + { + "codePostal": "57570", + "codeCommune": "57245", + "libelleAcheminement": "GAVISSE", + "nomCommune": "GAVISSE" + }, + { + "codePostal": "57170", + "codeCommune": "57247", + "libelleAcheminement": "GERBECOURT", + "nomCommune": "GERBECOURT" + }, + { + "codePostal": "57530", + "codeCommune": "57249", + "libelleAcheminement": "GLATIGNY", + "nomCommune": "GLATIGNY" + }, + { + "codePostal": "57620", + "codeCommune": "57250", + "libelleAcheminement": "GOETZENBRUCK", + "nomCommune": "GOETZENBRUCK" + }, { "codePostal": "57420", "codeCommune": "57251", "libelleAcheminement": "GOIN", "nomCommune": "GOIN" }, + { + "codePostal": "57680", + "codeCommune": "57254", + "libelleAcheminement": "GORZE", + "nomCommune": "GORZE" + }, { "codePostal": "57930", "codeCommune": "57255", @@ -16440,22 +16170,16 @@ "nomCommune": "GOSSELMING" }, { - "codePostal": "57130", - "codeCommune": "57256", - "libelleAcheminement": "GRAVELOTTE", - "nomCommune": "GRAVELOTTE" - }, - { - "codePostal": "57410", - "codeCommune": "57261", - "libelleAcheminement": "GROS REDERCHING", - "nomCommune": "GROS REDERCHING" + "codePostal": "57510", + "codeCommune": "57263", + "libelleAcheminement": "GRUNDVILLER", + "nomCommune": "GRUNDVILLER" }, { - "codePostal": "57510", - "codeCommune": "57264", - "libelleAcheminement": "GUEBENHOUSE", - "nomCommune": "GUEBENHOUSE" + "codePostal": "57430", + "codeCommune": "57267", + "libelleAcheminement": "LE VAL DE GUEBLANGE", + "nomCommune": "LE VAL DE GUEBLANGE" }, { "codePostal": "57310", @@ -16464,58 +16188,34 @@ "nomCommune": "GUENANGE" }, { - "codePostal": "57260", - "codeCommune": "57270", - "libelleAcheminement": "VAL DE BRIDE", - "nomCommune": "VAL DE BRIDE" - }, - { - "codePostal": "57260", - "codeCommune": "57272", - "libelleAcheminement": "GUERMANGE", - "nomCommune": "GUERMANGE" - }, - { - "codePostal": "57320", - "codeCommune": "57273", - "libelleAcheminement": "GUERSTLING", - "nomCommune": "GUERSTLING" - }, - { - "codePostal": "57380", - "codeCommune": "57275", - "libelleAcheminement": "GUESSLING HEMERING", - "nomCommune": "GUESSLING HEMERING" - }, - { - "codePostal": "57670", - "codeCommune": "57278", - "libelleAcheminement": "GUINZELING", - "nomCommune": "GUINZELING" + "codePostal": "57470", + "codeCommune": "57271", + "libelleAcheminement": "GUENVILLER", + "nomCommune": "GUENVILLER" }, { - "codePostal": "57480", - "codeCommune": "57286", - "libelleAcheminement": "HALSTROFF", - "nomCommune": "HALSTROFF" + "codePostal": "57880", + "codeCommune": "57274", + "libelleAcheminement": "GUERTING", + "nomCommune": "GUERTING" }, { - "codePostal": "57590", - "codeCommune": "57292", - "libelleAcheminement": "HANNOCOURT", - "nomCommune": "HANNOCOURT" + "codePostal": "57230", + "codeCommune": "57294", + "libelleAcheminement": "HANVILLER", + "nomCommune": "HANVILLER" }, { - "codePostal": "57580", - "codeCommune": "57293", - "libelleAcheminement": "HAN SUR NIED", - "nomCommune": "HAN SUR NIED" + "codePostal": "57340", + "codeCommune": "57297", + "libelleAcheminement": "HARPRICH", + "nomCommune": "HARPRICH" }, { - "codePostal": "57400", - "codeCommune": "57304", - "libelleAcheminement": "HAUT CLOCHER", - "nomCommune": "HAUT CLOCHER" + "codePostal": "57700", + "codeCommune": "57306", + "libelleAcheminement": "HAYANGE", + "nomCommune": "HAYANGE" }, { "codePostal": "57430", @@ -16523,6 +16223,12 @@ "libelleAcheminement": "HAZEMBOURG", "nomCommune": "HAZEMBOURG" }, + { + "codePostal": "57830", + "codeCommune": "57314", + "libelleAcheminement": "HEMING", + "nomCommune": "HEMING" + }, { "codePostal": "57635", "codeCommune": "57317", @@ -16530,16 +16236,40 @@ "nomCommune": "HERANGE" }, { - "codePostal": "57670", - "codeCommune": "57335", - "libelleAcheminement": "HONSKIRCH", - "nomCommune": "HONSKIRCH" + "codePostal": "57790", + "codeCommune": "57318", + "libelleAcheminement": "HERMELANGE", + "nomCommune": "HERMELANGE" }, { - "codePostal": "57490", - "codeCommune": "57336", - "libelleAcheminement": "L HOPITAL", - "nomCommune": "L HOPITAL" + "codePostal": "57830", + "codeCommune": "57320", + "libelleAcheminement": "HERTZING", + "nomCommune": "HERTZING" + }, + { + "codePostal": "57320", + "codeCommune": "57322", + "libelleAcheminement": "HESTROFF", + "nomCommune": "HESTROFF" + }, + { + "codePostal": "57380", + "codeCommune": "57328", + "libelleAcheminement": "HOLACOURT", + "nomCommune": "HOLACOURT" + }, + { + "codePostal": "57220", + "codeCommune": "57329", + "libelleAcheminement": "HOLLING", + "nomCommune": "HOLLING" + }, + { + "codePostal": "57670", + "codeCommune": "57346", + "libelleAcheminement": "INSMING", + "nomCommune": "INSMING" }, { "codePostal": "57670", @@ -16548,22 +16278,28 @@ "nomCommune": "INSVILLER" }, { - "codePostal": "57245", - "codeCommune": "57351", - "libelleAcheminement": "JURY", - "nomCommune": "JURY" + "codePostal": "57590", + "codeCommune": "57349", + "libelleAcheminement": "JALLAUCOURT", + "nomCommune": "JALLAUCOURT" }, { - "codePostal": "57130", - "codeCommune": "57352", - "libelleAcheminement": "JUSSY", - "nomCommune": "JUSSY" + "codePostal": "57920", + "codeCommune": "57359", + "libelleAcheminement": "KEMPLICH", + "nomCommune": "KEMPLICH" }, { - "codePostal": "57340", - "codeCommune": "57379", - "libelleAcheminement": "LANDROFF", - "nomCommune": "LANDROFF" + "codePostal": "57460", + "codeCommune": "57360", + "libelleAcheminement": "KERBACH", + "nomCommune": "KERBACH" + }, + { + "codePostal": "57730", + "codeCommune": "57373", + "libelleAcheminement": "LACHAMBRE", + "nomCommune": "LACHAMBRE" }, { "codePostal": "57400", @@ -16572,34 +16308,52 @@ "nomCommune": "LANGATTE" }, { - "codePostal": "57160", - "codeCommune": "57396", - "libelleAcheminement": "LESSY", - "nomCommune": "LESSY" + "codePostal": "57385", + "codeCommune": "57386", + "libelleAcheminement": "LAUDREFANG", + "nomCommune": "LAUDREFANG" + }, + { + "codePostal": "57230", + "codeCommune": "57402", + "libelleAcheminement": "LIEDERSCHIEDT", + "nomCommune": "LIEDERSCHIEDT" + }, + { + "codePostal": "57420", + "codeCommune": "57403", + "libelleAcheminement": "LIEHON", + "nomCommune": "LIEHON" }, { "codePostal": "57260", - "codeCommune": "57405", - "libelleAcheminement": "LINDRE HAUTE", - "nomCommune": "LINDRE HAUTE" + "codeCommune": "57404", + "libelleAcheminement": "LINDRE BASSE", + "nomCommune": "LINDRE BASSE" }, { - "codePostal": "57590", - "codeCommune": "57406", - "libelleAcheminement": "LIOCOURT", - "nomCommune": "LIOCOURT" + "codePostal": "57520", + "codeCommune": "57408", + "libelleAcheminement": "LIXING LES ROUHLING", + "nomCommune": "LIXING LES ROUHLING" }, { - "codePostal": "57740", - "codeCommune": "57413", - "libelleAcheminement": "LONGEVILLE LES ST AVOLD", - "nomCommune": "LONGEVILLE LES ST AVOLD" + "codePostal": "57420", + "codeCommune": "57422", + "libelleAcheminement": "LOUVIGNY", + "nomCommune": "LOUVIGNY" }, { - "codePostal": "57590", - "codeCommune": "57424", - "libelleAcheminement": "LUCY", - "nomCommune": "LUCY" + "codePostal": "57580", + "codeCommune": "57425", + "libelleAcheminement": "LUPPY", + "nomCommune": "LUPPY" + }, + { + "codePostal": "57820", + "codeCommune": "57427", + "libelleAcheminement": "LUTZELBOURG", + "nomCommune": "LUTZELBOURG" }, { "codePostal": "57380", @@ -16614,22 +16368,10 @@ "nomCommune": "MAIZIERES LES VIC" }, { - "codePostal": "57590", - "codeCommune": "57436", - "libelleAcheminement": "MALAUCOURT SUR SEILLE", - "nomCommune": "MALAUCOURT SUR SEILLE" - }, - { - "codePostal": "57530", - "codeCommune": "57449", - "libelleAcheminement": "MARSILLY", - "nomCommune": "MARSILLY" - }, - { - "codePostal": "57140", - "codeCommune": "57452", - "libelleAcheminement": "LA MAXE", - "nomCommune": "LA MAXE" + "codePostal": "57690", + "codeCommune": "57444", + "libelleAcheminement": "MARANGE ZONDRANGE", + "nomCommune": "MARANGE ZONDRANGE" }, { "codePostal": "57245", @@ -16638,10 +16380,10 @@ "nomCommune": "MECLEUVES" }, { - "codePostal": "57320", - "codeCommune": "57457", - "libelleAcheminement": "MENSKIRCH", - "nomCommune": "MENSKIRCH" + "codePostal": "57550", + "codeCommune": "57460", + "libelleAcheminement": "MERTEN", + "nomCommune": "MERTEN" }, { "codePostal": "57370", @@ -16650,11 +16392,17 @@ "nomCommune": "METTING" }, { - "codePostal": "57070", + "codePostal": "57050", "codeCommune": "57463", "libelleAcheminement": "METZ", "nomCommune": "METZ" }, + { + "codePostal": "57370", + "codeCommune": "57468", + "libelleAcheminement": "MITTELBRONN", + "nomCommune": "MITTELBRONN" + }, { "codePostal": "57220", "codeCommune": "57471", @@ -16662,40 +16410,22 @@ "nomCommune": "MOMERSTROFF" }, { - "codePostal": "57250", - "codeCommune": "57492", - "libelleAcheminement": "MOYEUVRE PETITE", - "nomCommune": "MOYEUVRE PETITE" - }, - { - "codePostal": "57670", - "codeCommune": "57494", - "libelleAcheminement": "MUNSTER", - "nomCommune": "MUNSTER" - }, - { - "codePostal": "57670", - "codeCommune": "57497", - "libelleAcheminement": "NELLING", - "nomCommune": "NELLING" - }, - { - "codePostal": "57670", - "codeCommune": "57501", - "libelleAcheminement": "NEUFVILLAGE", - "nomCommune": "NEUFVILLAGE" + "codePostal": "57950", + "codeCommune": "57480", + "libelleAcheminement": "MONTIGNY LES METZ", + "nomCommune": "MONTIGNY LES METZ" }, { - "codePostal": "57320", - "codeCommune": "57502", - "libelleAcheminement": "NEUNKIRCHEN LES BOUZONVILLE", - "nomCommune": "NEUNKIRCHEN LES BOUZONVILLE" + "codePostal": "57630", + "codeCommune": "57490", + "libelleAcheminement": "MOYENVIC", + "nomCommune": "MOYENVIC" }, { - "codePostal": "57930", - "codeCommune": "57506", - "libelleAcheminement": "NIEDERSTINZEL", - "nomCommune": "NIEDERSTINZEL" + "codePostal": "57565", + "codeCommune": "57505", + "libelleAcheminement": "NIDERVILLER", + "nomCommune": "NIDERVILLER" }, { "codePostal": "57240", @@ -16703,6 +16433,18 @@ "libelleAcheminement": "NILVANGE", "nomCommune": "NILVANGE" }, + { + "codePostal": "57790", + "codeCommune": "57509", + "libelleAcheminement": "NITTING", + "nomCommune": "NITTING" + }, + { + "codePostal": "57140", + "codeCommune": "57511", + "libelleAcheminement": "NORROY LE VENEUR", + "nomCommune": "NORROY LE VENEUR" + }, { "codePostal": "57645", "codeCommune": "57512", @@ -16710,58 +16452,100 @@ "nomCommune": "NOUILLY" }, { - "codePostal": "57720", - "codeCommune": "57526", - "libelleAcheminement": "ORMERSVILLER", - "nomCommune": "ORMERSVILLER" + "codePostal": "57990", + "codeCommune": "57514", + "libelleAcheminement": "NOUSSEVILLER ST NABOR", + "nomCommune": "NOUSSEVILLER ST NABOR" + }, + { + "codePostal": "57930", + "codeCommune": "57518", + "libelleAcheminement": "OBERSTINZEL", + "nomCommune": "OBERSTINZEL" + }, + { + "codePostal": "57170", + "codeCommune": "57520", + "libelleAcheminement": "OBRECK", + "nomCommune": "OBRECK" + }, + { + "codePostal": "57600", + "codeCommune": "57521", + "libelleAcheminement": "OETING", + "nomCommune": "OETING" + }, + { + "codePostal": "57810", + "codeCommune": "57524", + "libelleAcheminement": "OMMERAY", + "nomCommune": "OMMERAY" }, { "codePostal": "57420", - "codeCommune": "57532", - "libelleAcheminement": "PAGNY LES GOIN", - "nomCommune": "PAGNY LES GOIN" + "codeCommune": "57527", + "libelleAcheminement": "ORNY", + "nomCommune": "ORNY" }, { - "codePostal": "57220", - "codeCommune": "57542", - "libelleAcheminement": "PIBLANGE", - "nomCommune": "PIBLANGE" + "codePostal": "57590", + "codeCommune": "57528", + "libelleAcheminement": "ORON", + "nomCommune": "ORON" + }, + { + "codePostal": "57660", + "codeCommune": "57536", + "libelleAcheminement": "PETIT TENQUIN", + "nomCommune": "PETIT TENQUIN" }, { "codePostal": "57420", - "codeCommune": "57548", - "libelleAcheminement": "PONTOY", - "nomCommune": "PONTOY" + "codeCommune": "57547", + "libelleAcheminement": "POMMERIEUX", + "nomCommune": "POMMERIEUX" }, { - "codePostal": "57890", - "codeCommune": "57550", - "libelleAcheminement": "PORCELETTE", - "nomCommune": "PORCELETTE" + "codePostal": "57930", + "codeCommune": "57551", + "libelleAcheminement": "POSTROFF", + "nomCommune": "POSTROFF" }, { - "codePostal": "57340", - "codeCommune": "57560", - "libelleAcheminement": "RACRANGE", - "nomCommune": "RACRANGE" + "codePostal": "57420", + "codeCommune": "57552", + "libelleAcheminement": "POUILLY", + "nomCommune": "POUILLY" }, { - "codePostal": "57480", - "codeCommune": "57569", - "libelleAcheminement": "REMELING", - "nomCommune": "REMELING" + "codePostal": "57420", + "codeCommune": "57553", + "libelleAcheminement": "POURNOY LA CHETIVE", + "nomCommune": "POURNOY LA CHETIVE" }, { - "codePostal": "57510", - "codeCommune": "57581", - "libelleAcheminement": "RICHELING", - "nomCommune": "RICHELING" + "codePostal": "57320", + "codeCommune": "57567", + "libelleAcheminement": "REMELFANG", + "nomCommune": "REMELFANG" }, { - "codePostal": "57830", - "codeCommune": "57583", - "libelleAcheminement": "RICHEVAL", - "nomCommune": "RICHEVAL" + "codePostal": "57670", + "codeCommune": "57573", + "libelleAcheminement": "RENING", + "nomCommune": "RENING" + }, + { + "codePostal": "57410", + "codeCommune": "57589", + "libelleAcheminement": "ROHRBACH LES BITCHE", + "nomCommune": "ROHRBACH LES BITCHE" + }, + { + "codePostal": "57260", + "codeCommune": "57595", + "libelleAcheminement": "RORBACH LES DIEUZE", + "nomCommune": "RORBACH LES DIEUZE" }, { "codePostal": "57800", @@ -16770,34 +16554,34 @@ "nomCommune": "ROSBRUCK" }, { - "codePostal": "57520", - "codeCommune": "57598", - "libelleAcheminement": "ROUHLING", - "nomCommune": "ROUHLING" + "codePostal": "57370", + "codeCommune": "57614", + "libelleAcheminement": "ST JEAN KOURTZERODE", + "nomCommune": "ST JEAN KOURTZERODE" }, { - "codePostal": "57220", - "codeCommune": "57599", - "libelleAcheminement": "ROUPELDANGE", - "nomCommune": "ROUPELDANGE" + "codePostal": "57510", + "codeCommune": "57615", + "libelleAcheminement": "ST JEAN ROHRBACH", + "nomCommune": "ST JEAN ROHRBACH" }, { - "codePostal": "57310", - "codeCommune": "57602", - "libelleAcheminement": "RURANGE LES THIONVILLE", - "nomCommune": "RURANGE LES THIONVILLE" + "codePostal": "57070", + "codeCommune": "57616", + "libelleAcheminement": "ST JULIEN LES METZ", + "nomCommune": "ST JULIEN LES METZ" }, { - "codePostal": "57580", - "codeCommune": "57609", - "libelleAcheminement": "ST EPVRE", - "nomCommune": "ST EPVRE" + "codePostal": "57420", + "codeCommune": "57617", + "libelleAcheminement": "ST JURE", + "nomCommune": "ST JURE" }, { - "codePostal": "57855", - "codeCommune": "57622", - "libelleAcheminement": "ST PRIVAT LA MONTAGNE", - "nomCommune": "ST PRIVAT LA MONTAGNE" + "codePostal": "57620", + "codeCommune": "57619", + "libelleAcheminement": "ST LOUIS LES BITCHE", + "nomCommune": "ST LOUIS LES BITCHE" }, { "codePostal": "57400", @@ -16806,52 +16590,46 @@ "nomCommune": "SARRALTROFF" }, { - "codePostal": "57370", - "codeCommune": "57635", - "libelleAcheminement": "SCHALBACH", - "nomCommune": "SCHALBACH" - }, - { - "codePostal": "57412", - "codeCommune": "57636", - "libelleAcheminement": "SCHMITTVILLER", - "nomCommune": "SCHMITTVILLER" - }, - { - "codePostal": "57455", - "codeCommune": "57644", - "libelleAcheminement": "SEINGBOUSE", - "nomCommune": "SEINGBOUSE" + "codePostal": "57400", + "codeCommune": "57630", + "libelleAcheminement": "SARREBOURG", + "nomCommune": "SARREBOURG" }, { - "codePostal": "57290", - "codeCommune": "57647", - "libelleAcheminement": "SEREMANGE ERZANGE", - "nomCommune": "SEREMANGE ERZANGE" + "codePostal": "57140", + "codeCommune": "57634", + "libelleAcheminement": "SAULNY", + "nomCommune": "SAULNY" }, { - "codePostal": "57410", - "codeCommune": "57651", - "libelleAcheminement": "SIERSTHAL", - "nomCommune": "SIERSTHAL" + "codePostal": "57420", + "codeCommune": "57643", + "libelleAcheminement": "SECOURT", + "nomCommune": "SECOURT" }, { "codePostal": "57530", - "codeCommune": "57654", - "libelleAcheminement": "SILLY SUR NIED", - "nomCommune": "SILLY SUR NIED" + "codeCommune": "57648", + "libelleAcheminement": "SERVIGNY LES RAVILLE", + "nomCommune": "SERVIGNY LES RAVILLE" }, { "codePostal": "57420", - "codeCommune": "57655", - "libelleAcheminement": "SOLGNE", - "nomCommune": "SOLGNE" - }, - { - "codePostal": "57170", - "codeCommune": "57657", - "libelleAcheminement": "SOTZELING", - "nomCommune": "SOTZELING" + "codeCommune": "57652", + "libelleAcheminement": "SILLEGNY", + "nomCommune": "SILLEGNY" + }, + { + "codePostal": "57350", + "codeCommune": "57659", + "libelleAcheminement": "SPICHEREN", + "nomCommune": "SPICHEREN" + }, + { + "codePostal": "57350", + "codeCommune": "57659", + "libelleAcheminement": "SPICHEREN", + "nomCommune": "SPICHEREN" }, { "codePostal": "57350", @@ -16860,34 +16638,28 @@ "nomCommune": "STIRING WENDEL" }, { - "codePostal": "57340", - "codeCommune": "57662", - "libelleAcheminement": "SUISSE", - "nomCommune": "SUISSE" - }, - { - "codePostal": "57525", - "codeCommune": "57663", - "libelleAcheminement": "TALANGE", - "nomCommune": "TALANGE" + "codePostal": "57230", + "codeCommune": "57661", + "libelleAcheminement": "STURZELBRONN", + "nomCommune": "STURZELBRONN" }, { - "codePostal": "57580", - "codeCommune": "57671", - "libelleAcheminement": "THIMONVILLE", - "nomCommune": "THIMONVILLE" + "codePostal": "57980", + "codeCommune": "57665", + "libelleAcheminement": "TENTELING", + "nomCommune": "TENTELING" }, { - "codePostal": "57100", - "codeCommune": "57672", - "libelleAcheminement": "THIONVILLE", - "nomCommune": "THIONVILLE" + "codePostal": "57380", + "codeCommune": "57670", + "libelleAcheminement": "THICOURT", + "nomCommune": "THICOURT" }, { - "codePostal": "57100", - "codeCommune": "57672", - "libelleAcheminement": "THIONVILLE", - "nomCommune": "THIONVILLE" + "codePostal": "57590", + "codeCommune": "57674", + "libelleAcheminement": "TINCRY", + "nomCommune": "TINCRY" }, { "codePostal": "57710", @@ -16896,58 +16668,40 @@ "nomCommune": "TRESSANGE" }, { - "codePostal": "57870", - "codeCommune": "57680", - "libelleAcheminement": "TROISFONTAINES", - "nomCommune": "TROISFONTAINES" + "codePostal": "57670", + "codeCommune": "57685", + "libelleAcheminement": "VAHL LES BENESTROFF", + "nomCommune": "VAHL LES BENESTROFF" }, { - "codePostal": "57380", - "codeCommune": "57686", - "libelleAcheminement": "VAHL LES FAULQUEMONT", - "nomCommune": "VAHL LES FAULQUEMONT" + "codePostal": "57970", + "codeCommune": "57689", + "libelleAcheminement": "VALMESTROFF", + "nomCommune": "VALMESTROFF" }, { "codePostal": "57220", - "codeCommune": "57695", - "libelleAcheminement": "VARIZE VAUDONCOURT", - "nomCommune": "VARIZE VAUDONCOURT" - }, - { - "codePostal": "57880", - "codeCommune": "57696", - "libelleAcheminement": "VARSBERG", - "nomCommune": "VARSBERG" + "codeCommune": "57691", + "libelleAcheminement": "VALMUNSTER", + "nomCommune": "VALMUNSTER" }, { - "codePostal": "57560", - "codeCommune": "57697", - "libelleAcheminement": "VASPERVILLER", - "nomCommune": "VASPERVILLER" + "codePostal": "57320", + "codeCommune": "57700", + "libelleAcheminement": "VAUDRECHING", + "nomCommune": "VAUDRECHING" }, { "codePostal": "57130", - "codeCommune": "57701", - "libelleAcheminement": "VAUX", - "nomCommune": "VAUX" - }, - { - "codePostal": "57370", - "codeCommune": "57703", - "libelleAcheminement": "VECKERSVILLER", - "nomCommune": "VECKERSVILLER" - }, - { - "codePostal": "57220", - "codeCommune": "57705", - "libelleAcheminement": "VELVING", - "nomCommune": "VELVING" + "codeCommune": "57707", + "libelleAcheminement": "VERNEVILLE", + "nomCommune": "VERNEVILLE" }, { - "codePostal": "57630", - "codeCommune": "57712", - "libelleAcheminement": "VIC SUR SEILLE", - "nomCommune": "VIC SUR SEILLE" + "codePostal": "57420", + "codeCommune": "57708", + "libelleAcheminement": "VERNY", + "nomCommune": "VERNY" }, { "codePostal": "57420", @@ -16956,22 +16710,28 @@ "nomCommune": "VIGNY" }, { - "codePostal": "57550", - "codeCommune": "57720", - "libelleAcheminement": "VILLING", - "nomCommune": "VILLING" + "codePostal": "57340", + "codeCommune": "57717", + "libelleAcheminement": "VILLER", + "nomCommune": "VILLER" }, { - "codePostal": "57185", - "codeCommune": "57724", - "libelleAcheminement": "VITRY SUR ORNE", - "nomCommune": "VITRY SUR ORNE" + "codePostal": "57530", + "codeCommune": "57718", + "libelleAcheminement": "VILLERS STONCOURT", + "nomCommune": "VILLERS STONCOURT" }, { - "codePostal": "57580", - "codeCommune": "57726", - "libelleAcheminement": "VITTONCOURT", - "nomCommune": "VITTONCOURT" + "codePostal": "57340", + "codeCommune": "57719", + "libelleAcheminement": "VILLERS SUR NIED", + "nomCommune": "VILLERS SUR NIED" + }, + { + "codePostal": "57370", + "codeCommune": "57721", + "libelleAcheminement": "VILSBERG", + "nomCommune": "VILSBERG" }, { "codePostal": "57720", @@ -16980,10 +16740,10 @@ "nomCommune": "WALDHOUSE" }, { - "codePostal": "57870", - "codeCommune": "57742", - "libelleAcheminement": "WALSCHEID", - "nomCommune": "WALSCHEID" + "codePostal": "57370", + "codeCommune": "57743", + "libelleAcheminement": "WALTEMBOURG", + "nomCommune": "WALTEMBOURG" }, { "codePostal": "57430", @@ -16998,10 +16758,16 @@ "nomCommune": "WITTRING" }, { - "codePostal": "57905", - "codeCommune": "57760", - "libelleAcheminement": "ZETTING", - "nomCommune": "ZETTING" + "codePostal": "57830", + "codeCommune": "57756", + "libelleAcheminement": "XOUAXANGE", + "nomCommune": "XOUAXANGE" + }, + { + "codePostal": "57260", + "codeCommune": "57763", + "libelleAcheminement": "ZOMMANGE", + "nomCommune": "ZOMMANGE" }, { "codePostal": "58110", @@ -17010,34 +16776,28 @@ "nomCommune": "ACHUN" }, { - "codePostal": "58230", - "codeCommune": "58003", - "libelleAcheminement": "ALLIGNY EN MORVAN", - "nomCommune": "ALLIGNY EN MORVAN" - }, - { - "codePostal": "58800", - "codeCommune": "58008", - "libelleAcheminement": "ANTHIEN", - "nomCommune": "ANTHIEN" + "codePostal": "58110", + "codeCommune": "58004", + "libelleAcheminement": "ALLUY", + "nomCommune": "ALLUY" }, { - "codePostal": "58350", - "codeCommune": "58009", - "libelleAcheminement": "ARBOURSE", - "nomCommune": "ARBOURSE" + "codePostal": "58450", + "codeCommune": "58007", + "libelleAcheminement": "ANNAY", + "nomCommune": "ANNAY" }, { - "codePostal": "58420", - "codeCommune": "58015", - "libelleAcheminement": "ASNAN", - "nomCommune": "ASNAN" + "codePostal": "58310", + "codeCommune": "58012", + "libelleAcheminement": "ARQUIAN", + "nomCommune": "ARQUIAN" }, { - "codePostal": "58300", - "codeCommune": "58020", - "libelleAcheminement": "AVRIL SUR LOIRE", - "nomCommune": "AVRIL SUR LOIRE" + "codePostal": "58700", + "codeCommune": "58018", + "libelleAcheminement": "AUTHIOU", + "nomCommune": "AUTHIOU" }, { "codePostal": "58240", @@ -17045,125 +16805,113 @@ "libelleAcheminement": "AZY LE VIF", "nomCommune": "AZY LE VIF" }, - { - "codePostal": "58190", - "codeCommune": "58023", - "libelleAcheminement": "BAZOCHES", - "nomCommune": "BAZOCHES" - }, - { - "codePostal": "58310", - "codeCommune": "58033", - "libelleAcheminement": "BITRY", - "nomCommune": "BITRY" - }, { "codePostal": "58110", - "codeCommune": "58040", - "libelleAcheminement": "BRINAY", - "nomCommune": "BRINAY" + "codeCommune": "58024", + "libelleAcheminement": "BAZOLLES", + "nomCommune": "BAZOLLES" }, { - "codePostal": "58400", - "codeCommune": "58042", - "libelleAcheminement": "BULCY", - "nomCommune": "BULCY" + "codePostal": "58160", + "codeCommune": "58025", + "libelleAcheminement": "BEARD", + "nomCommune": "BEARD" }, { - "codePostal": "58420", - "codeCommune": "58043", - "libelleAcheminement": "BUSSY LA PESLE", - "nomCommune": "BUSSY LA PESLE" + "codePostal": "58270", + "codeCommune": "58028", + "libelleAcheminement": "BEAUMONT SARDOLLES", + "nomCommune": "BEAUMONT SARDOLLES" }, { - "codePostal": "58440", - "codeCommune": "58044", - "libelleAcheminement": "LA CELLE SUR LOIRE", - "nomCommune": "LA CELLE SUR LOIRE" + "codePostal": "58330", + "codeCommune": "58035", + "libelleAcheminement": "BONA", + "nomCommune": "BONA" }, { - "codePostal": "58700", - "codeCommune": "58045", - "libelleAcheminement": "LA CELLE SUR NIEVRE", - "nomCommune": "LA CELLE SUR NIEVRE" + "codePostal": "58110", + "codeCommune": "58040", + "libelleAcheminement": "BRINAY", + "nomCommune": "BRINAY" }, { - "codePostal": "58140", - "codeCommune": "58049", - "libelleAcheminement": "CHALAUX", - "nomCommune": "CHALAUX" + "codePostal": "58420", + "codeCommune": "58052", + "libelleAcheminement": "CHAMPALLEMENT", + "nomCommune": "CHAMPALLEMENT" }, { "codePostal": "58210", - "codeCommune": "58058", - "libelleAcheminement": "LA CHAPELLE ST ANDRE", - "nomCommune": "LA CHAPELLE ST ANDRE" + "codeCommune": "58053", + "libelleAcheminement": "CHAMPLEMY", + "nomCommune": "CHAMPLEMY" }, { - "codePostal": "58800", - "codeCommune": "58080", - "libelleAcheminement": "LA COLLANCELLE", - "nomCommune": "LA COLLANCELLE" + "codePostal": "58400", + "codeCommune": "58056", + "libelleAcheminement": "CHAMPVOUX", + "nomCommune": "CHAMPVOUX" }, { - "codePostal": "58350", - "codeCommune": "58081", - "libelleAcheminement": "COLMERY", - "nomCommune": "COLMERY" + "codePostal": "58240", + "codeCommune": "58057", + "libelleAcheminement": "CHANTENAY ST IMBERT", + "nomCommune": "CHANTENAY ST IMBERT" }, { - "codePostal": "58200", - "codeCommune": "58086", - "libelleAcheminement": "COSNE COURS SUR LOIRE", - "nomCommune": "COSNE COURS SUR LOIRE" + "codePostal": "58120", + "codeCommune": "58068", + "libelleAcheminement": "CHAUMARD", + "nomCommune": "CHAUMARD" }, { - "codePostal": "58210", - "codeCommune": "58093", - "libelleAcheminement": "CUNCY LES VARZY", - "nomCommune": "CUNCY LES VARZY" + "codePostal": "58160", + "codeCommune": "58072", + "libelleAcheminement": "CHEVENON", + "nomCommune": "CHEVENON" }, { - "codePostal": "58300", - "codeCommune": "58096", - "libelleAcheminement": "DEVAY", - "nomCommune": "DEVAY" + "codePostal": "58800", + "codeCommune": "58075", + "libelleAcheminement": "CHITRY LES MINES", + "nomCommune": "CHITRY LES MINES" }, { - "codePostal": "58160", - "codeCommune": "58105", - "libelleAcheminement": "DRUY PARIGNY", - "nomCommune": "DRUY PARIGNY" + "codePostal": "58500", + "codeCommune": "58079", + "libelleAcheminement": "CLAMECY", + "nomCommune": "CLAMECY" }, { - "codePostal": "58270", - "codeCommune": "58113", - "libelleAcheminement": "FERTREVE", - "nomCommune": "FERTREVE" + "codePostal": "58120", + "codeCommune": "58082", + "libelleAcheminement": "CORANCY", + "nomCommune": "CORANCY" }, { - "codePostal": "58250", - "codeCommune": "58118", - "libelleAcheminement": "FOURS", - "nomCommune": "FOURS" + "codePostal": "58350", + "codeCommune": "58101", + "libelleAcheminement": "DOMPIERRE SUR NIEVRE", + "nomCommune": "DOMPIERRE SUR NIEVRE" }, { - "codePostal": "58150", - "codeCommune": "58122", - "libelleAcheminement": "GARCHY", - "nomCommune": "GARCHY" + "codePostal": "58230", + "codeCommune": "58106", + "libelleAcheminement": "DUN LES PLACES", + "nomCommune": "DUN LES PLACES" }, { - "codePostal": "58150", - "codeCommune": "58122", - "libelleAcheminement": "GARCHY", - "nomCommune": "GARCHY" + "codePostal": "58430", + "codeCommune": "58111", + "libelleAcheminement": "FACHIN", + "nomCommune": "FACHIN" }, { - "codePostal": "58370", - "codeCommune": "58128", - "libelleAcheminement": "GLUX EN GLENNE", - "nomCommune": "GLUX EN GLENNE" + "codePostal": "58800", + "codeCommune": "58123", + "libelleAcheminement": "GERMENAY", + "nomCommune": "GERMENAY" }, { "codePostal": "58800", @@ -17172,22 +16920,34 @@ "nomCommune": "HERY" }, { - "codePostal": "58300", - "codeCommune": "58137", - "libelleAcheminement": "LAMENAY SUR LOIRE", - "nomCommune": "LAMENAY SUR LOIRE" + "codePostal": "58160", + "codeCommune": "58134", + "libelleAcheminement": "IMPHY", + "nomCommune": "IMPHY" }, { - "codePostal": "58470", - "codeCommune": "58152", - "libelleAcheminement": "MAGNY COURS", - "nomCommune": "MAGNY COURS" + "codePostal": "58330", + "codeCommune": "58136", + "libelleAcheminement": "JAILLY", + "nomCommune": "JAILLY" + }, + { + "codePostal": "58240", + "codeCommune": "58148", + "libelleAcheminement": "LUTHENAY UXELOUP", + "nomCommune": "LUTHENAY UXELOUP" + }, + { + "codePostal": "58170", + "codeCommune": "58149", + "libelleAcheminement": "LUZY", + "nomCommune": "LUZY" }, { "codePostal": "58190", - "codeCommune": "58154", - "libelleAcheminement": "LA MAISON DIEU", - "nomCommune": "LA MAISON DIEU" + "codeCommune": "58150", + "libelleAcheminement": "LYS", + "nomCommune": "LYS" }, { "codePostal": "58210", @@ -17196,76 +16956,82 @@ "nomCommune": "MARCY" }, { - "codePostal": "58290", - "codeCommune": "58161", - "libelleAcheminement": "MAUX", - "nomCommune": "MAUX" + "codePostal": "58180", + "codeCommune": "58160", + "libelleAcheminement": "MARZY", + "nomCommune": "MARZY" }, { - "codePostal": "58400", - "codeCommune": "58164", - "libelleAcheminement": "MESVES SUR LOIRE", - "nomCommune": "MESVES SUR LOIRE" + "codePostal": "58190", + "codeCommune": "58170", + "libelleAcheminement": "MONCEAUX LE COMTE", + "nomCommune": "MONCEAUX LE COMTE" }, { - "codePostal": "58190", - "codeCommune": "58165", - "libelleAcheminement": "METZ LE COMTE", - "nomCommune": "METZ LE COMTE" + "codePostal": "58110", + "codeCommune": "58171", + "libelleAcheminement": "MONTAPAS", + "nomCommune": "MONTAPAS" }, { - "codePostal": "58250", - "codeCommune": "58172", - "libelleAcheminement": "MONTAMBERT", - "nomCommune": "MONTAMBERT" + "codePostal": "58110", + "codeCommune": "58175", + "libelleAcheminement": "MONT ET MARRE", + "nomCommune": "MONT ET MARRE" }, { - "codePostal": "58700", - "codeCommune": "58174", - "libelleAcheminement": "MONTENOISON", - "nomCommune": "MONTENOISON" + "codePostal": "58800", + "codeCommune": "58179", + "libelleAcheminement": "MONTREUILLON", + "nomCommune": "MONTREUILLON" }, { - "codePostal": "58420", - "codeCommune": "58181", - "libelleAcheminement": "MORACHES", - "nomCommune": "MORACHES" + "codePostal": "58230", + "codeCommune": "58180", + "libelleAcheminement": "MONTSAUCHE LES SETTONS", + "nomCommune": "MONTSAUCHE LES SETTONS" }, { - "codePostal": "58700", - "codeCommune": "58184", - "libelleAcheminement": "MOUSSY", - "nomCommune": "MOUSSY" + "codePostal": "58800", + "codeCommune": "58183", + "libelleAcheminement": "MOURON SUR YONNE", + "nomCommune": "MOURON SUR YONNE" }, { - "codePostal": "58210", - "codeCommune": "58206", - "libelleAcheminement": "PARIGNY LA ROSE", - "nomCommune": "PARIGNY LA ROSE" + "codePostal": "58230", + "codeCommune": "58185", + "libelleAcheminement": "MOUX EN MORVAN", + "nomCommune": "MOUX EN MORVAN" }, { - "codePostal": "58170", - "codeCommune": "58211", - "libelleAcheminement": "POIL", - "nomCommune": "POIL" + "codePostal": "58400", + "codeCommune": "58189", + "libelleAcheminement": "NARCY", + "nomCommune": "NARCY" }, { - "codePostal": "58500", - "codeCommune": "58222", - "libelleAcheminement": "RIX", - "nomCommune": "RIX" + "codePostal": "58370", + "codeCommune": "58199", + "libelleAcheminement": "ONLAY", + "nomCommune": "ONLAY" }, { - "codePostal": "58470", - "codeCommune": "58225", - "libelleAcheminement": "SAINCAIZE MEAUCE", - "nomCommune": "SAINCAIZE MEAUCE" + "codePostal": "58210", + "codeCommune": "58201", + "libelleAcheminement": "OUDAN", + "nomCommune": "OUDAN" }, { - "codePostal": "58150", - "codeCommune": "58228", - "libelleAcheminement": "ST ANDELAIN", - "nomCommune": "ST ANDELAIN" + "codePostal": "58230", + "codeCommune": "58205", + "libelleAcheminement": "OUROUX EN MORVAN", + "nomCommune": "OUROUX EN MORVAN" + }, + { + "codePostal": "58800", + "codeCommune": "58208", + "libelleAcheminement": "PAZY", + "nomCommune": "PAZY" }, { "codePostal": "58700", @@ -17274,22 +17040,28 @@ "nomCommune": "ST BONNOT" }, { - "codePostal": "58340", - "codeCommune": "58243", - "libelleAcheminement": "ST GRATIEN SAVIGNY", - "nomCommune": "ST GRATIEN SAVIGNY" + "codePostal": "58270", + "codeCommune": "58247", + "libelleAcheminement": "ST JEAN AUX AMOGNES", + "nomCommune": "ST JEAN AUX AMOGNES" }, { - "codePostal": "58120", - "codeCommune": "58244", - "libelleAcheminement": "ST HILAIRE EN MORVAN", - "nomCommune": "ST HILAIRE EN MORVAN" + "codePostal": "58300", + "codeCommune": "58250", + "libelleAcheminement": "ST LEGER DES VIGNES", + "nomCommune": "ST LEGER DES VIGNES" }, { - "codePostal": "58140", - "codeCommune": "58255", - "libelleAcheminement": "ST MARTIN DU PUY", - "nomCommune": "ST MARTIN DU PUY" + "codePostal": "58330", + "codeCommune": "58253", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" + }, + { + "codePostal": "58330", + "codeCommune": "58257", + "libelleAcheminement": "ST MAURICE", + "nomCommune": "ST MAURICE" }, { "codePostal": "58160", @@ -17298,22 +17070,22 @@ "nomCommune": "ST OUEN SUR LOIRE" }, { - "codePostal": "58240", - "codeCommune": "58264", - "libelleAcheminement": "ST PIERRE LE MOUTIER", - "nomCommune": "ST PIERRE LE MOUTIER" + "codePostal": "58250", + "codeCommune": "58268", + "libelleAcheminement": "ST SEINE", + "nomCommune": "ST SEINE" }, { - "codePostal": "58800", - "codeCommune": "58272", - "libelleAcheminement": "SARDY LES EPIRY", - "nomCommune": "SARDY LES EPIRY" + "codePostal": "58360", + "codeCommune": "58276", + "libelleAcheminement": "SEMELAY", + "nomCommune": "SEMELAY" }, { - "codePostal": "58190", - "codeCommune": "58286", - "libelleAcheminement": "TANNAY", - "nomCommune": "TANNAY" + "codePostal": "58150", + "codeCommune": "58281", + "libelleAcheminement": "SUILLY LA TOUR", + "nomCommune": "SUILLY LA TOUR" }, { "codePostal": "58190", @@ -17321,6 +17093,12 @@ "libelleAcheminement": "TEIGNY", "nomCommune": "TEIGNY" }, + { + "codePostal": "58150", + "codeCommune": "58295", + "libelleAcheminement": "TRACY SUR LOIRE", + "nomCommune": "TRACY SUR LOIRE" + }, { "codePostal": "58240", "codeCommune": "58296", @@ -17328,22 +17106,22 @@ "nomCommune": "TRESNAY" }, { - "codePostal": "58140", - "codeCommune": "58305", - "libelleAcheminement": "VAUCLAIX", - "nomCommune": "VAUCLAIX" + "codePostal": "58460", + "codeCommune": "58299", + "libelleAcheminement": "TRUCY L ORGUEILLEUX", + "nomCommune": "TRUCY L ORGUEILLEUX" }, { - "codePostal": "58190", - "codeCommune": "58308", - "libelleAcheminement": "VIGNOL", - "nomCommune": "VIGNOL" + "codePostal": "58270", + "codeCommune": "58311", + "libelleAcheminement": "VILLE LANGY", + "nomCommune": "VILLE LANGY" }, { - "codePostal": "59149", - "codeCommune": "59003", - "libelleAcheminement": "AIBES", - "nomCommune": "AIBES" + "codePostal": "59215", + "codeCommune": "59002", + "libelleAcheminement": "ABSCON", + "nomCommune": "ABSCON" }, { "codePostal": "59194", @@ -17352,10 +17130,10 @@ "nomCommune": "ANHIERS" }, { - "codePostal": "59112", - "codeCommune": "59011", - "libelleAcheminement": "ANNOEULLIN", - "nomCommune": "ANNOEULLIN" + "codePostal": "59580", + "codeCommune": "59008", + "libelleAcheminement": "ANICHE", + "nomCommune": "ANICHE" }, { "codePostal": "59152", @@ -17364,16 +17142,10 @@ "nomCommune": "ANSTAING" }, { - "codePostal": "59151", - "codeCommune": "59015", - "libelleAcheminement": "ARLEUX", - "nomCommune": "ARLEUX" - }, - { - "codePostal": "59285", - "codeCommune": "59018", - "libelleAcheminement": "ARNEKE", - "nomCommune": "ARNEKE" + "codePostal": "59269", + "codeCommune": "59019", + "libelleAcheminement": "ARTRES", + "nomCommune": "ARTRES" }, { "codePostal": "59265", @@ -17382,22 +17154,16 @@ "nomCommune": "AUBENCHEUL AU BAC" }, { - "codePostal": "59265", - "codeCommune": "59026", - "libelleAcheminement": "AUBIGNY AU BAC", - "nomCommune": "AUBIGNY AU BAC" - }, - { - "codePostal": "59570", - "codeCommune": "59031", - "libelleAcheminement": "AUDIGNIES", - "nomCommune": "AUDIGNIES" + "codePostal": "59300", + "codeCommune": "59032", + "libelleAcheminement": "AULNOY LEZ VALENCIENNES", + "nomCommune": "AULNOY LEZ VALENCIENNES" }, { - "codePostal": "59440", - "codeCommune": "59036", - "libelleAcheminement": "AVESNES SUR HELPE", - "nomCommune": "AVESNES SUR HELPE" + "codePostal": "59620", + "codeCommune": "59033", + "libelleAcheminement": "AULNOYE AYMERIES", + "nomCommune": "AULNOYE AYMERIES" }, { "codePostal": "59129", @@ -17405,6 +17171,24 @@ "libelleAcheminement": "AVESNES LES AUBERT", "nomCommune": "AVESNES LES AUBERT" }, + { + "codePostal": "59830", + "codeCommune": "59042", + "libelleAcheminement": "BACHY", + "nomCommune": "BACHY" + }, + { + "codePostal": "59470", + "codeCommune": "59046", + "libelleAcheminement": "BAMBECQUE", + "nomCommune": "BAMBECQUE" + }, + { + "codePostal": "59570", + "codeCommune": "59053", + "libelleAcheminement": "BAVAY", + "nomCommune": "BAVAY" + }, { "codePostal": "59530", "codeCommune": "59057", @@ -17418,40 +17202,16 @@ "nomCommune": "BEAUREPAIRE SUR SAMBRE" }, { - "codePostal": "59740", - "codeCommune": "59066", - "libelleAcheminement": "BERELLES", - "nomCommune": "BERELLES" - }, - { - "codePostal": "59380", - "codeCommune": "59067", - "libelleAcheminement": "BERGUES", - "nomCommune": "BERGUES" - }, - { - "codePostal": "59213", - "codeCommune": "59069", - "libelleAcheminement": "BERMERAIN", - "nomCommune": "BERMERAIN" - }, - { - "codePostal": "59600", - "codeCommune": "59076", - "libelleAcheminement": "BETTIGNIES", - "nomCommune": "BETTIGNIES" - }, - { - "codePostal": "59310", - "codeCommune": "59080", - "libelleAcheminement": "BEUVRY LA FORET", - "nomCommune": "BEUVRY LA FORET" + "codePostal": "59216", + "codeCommune": "59078", + "libelleAcheminement": "BEUGNIES", + "nomCommune": "BEUGNIES" }, { - "codePostal": "59173", - "codeCommune": "59084", - "libelleAcheminement": "BLARINGHEM", - "nomCommune": "BLARINGHEM" + "codePostal": "59192", + "codeCommune": "59079", + "libelleAcheminement": "BEUVRAGES", + "nomCommune": "BEUVRAGES" }, { "codePostal": "59299", @@ -17460,10 +17220,16 @@ "nomCommune": "BOESCHEPE" }, { - "codePostal": "59189", - "codeCommune": "59087", - "libelleAcheminement": "BOESEGHEM", - "nomCommune": "BOESEGHEM" + "codePostal": "59280", + "codeCommune": "59088", + "libelleAcheminement": "BOIS GRENIER", + "nomCommune": "BOIS GRENIER" + }, + { + "codePostal": "59470", + "codeCommune": "59089", + "libelleAcheminement": "BOLLEZEELE", + "nomCommune": "BOLLEZEELE" }, { "codePostal": "59910", @@ -17471,12 +17237,6 @@ "libelleAcheminement": "BONDUES", "nomCommune": "BONDUES" }, - { - "codePostal": "59111", - "codeCommune": "59092", - "libelleAcheminement": "BOUCHAIN", - "nomCommune": "BOUCHAIN" - }, { "codePostal": "59400", "codeCommune": "59097", @@ -17484,52 +17244,76 @@ "nomCommune": "BOURSIES" }, { - "codePostal": "59860", - "codeCommune": "59112", - "libelleAcheminement": "BRUAY SUR L ESCAUT", - "nomCommune": "BRUAY SUR L ESCAUT" + "codePostal": "59149", + "codeCommune": "59101", + "libelleAcheminement": "BOUSIGNIES SUR ROC", + "nomCommune": "BOUSIGNIES SUR ROC" }, { - "codePostal": "59400", - "codeCommune": "59122", - "libelleAcheminement": "CAMBRAI", - "nomCommune": "CAMBRAI" + "codePostal": "59330", + "codeCommune": "59103", + "libelleAcheminement": "BOUSSIERES SUR SAMBRE", + "nomCommune": "BOUSSIERES SUR SAMBRE" }, { - "codePostal": "59133", - "codeCommune": "59123", - "libelleAcheminement": "CAMPHIN EN CAREMBAULT", - "nomCommune": "CAMPHIN EN CAREMBAULT" + "codePostal": "59168", + "codeCommune": "59104", + "libelleAcheminement": "BOUSSOIS", + "nomCommune": "BOUSSOIS" }, { - "codePostal": "59267", - "codeCommune": "59125", - "libelleAcheminement": "CANTAING SUR ESCAUT", - "nomCommune": "CANTAING SUR ESCAUT" + "codePostal": "59178", + "codeCommune": "59109", + "libelleAcheminement": "BRILLON", + "nomCommune": "BRILLON" }, { - "codePostal": "59213", - "codeCommune": "59127", - "libelleAcheminement": "CAPELLE", - "nomCommune": "CAPELLE" + "codePostal": "59630", + "codeCommune": "59110", + "libelleAcheminement": "BROUCKERQUE", + "nomCommune": "BROUCKERQUE" }, { - "codePostal": "59112", - "codeCommune": "59133", - "libelleAcheminement": "CARNIN", - "nomCommune": "CARNIN" + "codePostal": "59137", + "codeCommune": "59118", + "libelleAcheminement": "BUSIGNY", + "nomCommune": "BUSIGNY" }, { - "codePostal": "59670", - "codeCommune": "59135", - "libelleAcheminement": "CASSEL", - "nomCommune": "CASSEL" + "codePostal": "59285", + "codeCommune": "59119", + "libelleAcheminement": "BUYSSCHEURE", + "nomCommune": "BUYSSCHEURE" }, { - "codePostal": "59360", - "codeCommune": "59137", - "libelleAcheminement": "CATILLON SUR SAMBRE", - "nomCommune": "CATILLON SUR SAMBRE" + "codePostal": "59190", + "codeCommune": "59120", + "libelleAcheminement": "CAESTRE", + "nomCommune": "CAESTRE" + }, + { + "codePostal": "59242", + "codeCommune": "59129", + "libelleAcheminement": "CAPPELLE EN PEVELE", + "nomCommune": "CAPPELLE EN PEVELE" + }, + { + "codePostal": "59630", + "codeCommune": "59130", + "libelleAcheminement": "CAPPELLE BROUCK", + "nomCommune": "CAPPELLE BROUCK" + }, + { + "codePostal": "59217", + "codeCommune": "59132", + "libelleAcheminement": "CARNIERES", + "nomCommune": "CARNIERES" + }, + { + "codePostal": "59217", + "codeCommune": "59138", + "libelleAcheminement": "CATTENIERES", + "nomCommune": "CATTENIERES" }, { "codePostal": "59540", @@ -17544,82 +17328,94 @@ "nomCommune": "CERFONTAINE" }, { - "codePostal": "59152", - "codeCommune": "59146", - "libelleAcheminement": "CHERENG", - "nomCommune": "CHERENG" + "codePostal": "59147", + "codeCommune": "59145", + "libelleAcheminement": "CHEMY", + "nomCommune": "CHEMY" }, { - "codePostal": "59830", - "codeCommune": "59150", - "libelleAcheminement": "COBRIEUX", - "nomCommune": "COBRIEUX" + "codePostal": "59500", + "codeCommune": "59178", + "libelleAcheminement": "DOUAI", + "nomCommune": "DOUAI" }, { - "codePostal": "59552", - "codeCommune": "59156", - "libelleAcheminement": "COURCHELETTES", - "nomCommune": "COURCHELETTES" + "codePostal": "59140", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "59154", - "codeCommune": "59160", - "libelleAcheminement": "CRESPIN", - "nomCommune": "CRESPIN" + "codePostal": "59430", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "59170", - "codeCommune": "59163", - "libelleAcheminement": "CROIX", - "nomCommune": "CROIX" + "codePostal": "59640", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "59680", - "codeCommune": "59169", - "libelleAcheminement": "DAMOUSIES", - "nomCommune": "DAMOUSIES" + "codePostal": "59600", + "codeCommune": "59190", + "libelleAcheminement": "ELESMES", + "nomCommune": "ELESMES" }, { - "codePostal": "59282", - "codeCommune": "59179", - "libelleAcheminement": "DOUCHY LES MINES", - "nomCommune": "DOUCHY LES MINES" + "codePostal": "59127", + "codeCommune": "59191", + "libelleAcheminement": "ELINCOURT", + "nomCommune": "ELINCOURT" }, { - "codePostal": "59940", - "codeCommune": "59180", - "libelleAcheminement": "LE DOULIEU", - "nomCommune": "LE DOULIEU" + "codePostal": "59320", + "codeCommune": "59193", + "libelleAcheminement": "EMMERIN", + "nomCommune": "EMMERIN" }, { - "codePostal": "59640", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "59530", + "codeCommune": "59194", + "libelleAcheminement": "ENGLEFONTAINE", + "nomCommune": "ENGLEFONTAINE" }, { - "codePostal": "59330", - "codeCommune": "59187", - "libelleAcheminement": "ECLAIBES", - "nomCommune": "ECLAIBES" + "codePostal": "59171", + "codeCommune": "59203", + "libelleAcheminement": "ERRE", + "nomCommune": "ERRE" }, { - "codePostal": "59580", - "codeCommune": "59192", - "libelleAcheminement": "EMERCHICOURT", - "nomCommune": "EMERCHICOURT" + "codePostal": "59144", + "codeCommune": "59217", + "libelleAcheminement": "ETH", + "nomCommune": "ETH" }, { - "codePostal": "59553", - "codeCommune": "59211", - "libelleAcheminement": "ESQUERCHIN", - "nomCommune": "ESQUERCHIN" + "codePostal": "59300", + "codeCommune": "59221", + "libelleAcheminement": "FAMARS", + "nomCommune": "FAMARS" }, { - "codePostal": "59247", - "codeCommune": "59224", - "libelleAcheminement": "FECHAIN", - "nomCommune": "FECHAIN" + "codePostal": "59550", + "codeCommune": "59223", + "libelleAcheminement": "LE FAVRIL", + "nomCommune": "LE FAVRIL" + }, + { + "codePostal": "59750", + "codeCommune": "59225", + "libelleAcheminement": "FEIGNIES", + "nomCommune": "FEIGNIES" + }, + { + "codePostal": "59680", + "codeCommune": "59231", + "libelleAcheminement": "FERRIERE LA PETITE", + "nomCommune": "FERRIERE LA PETITE" }, { "codePostal": "59570", @@ -17627,12 +17423,6 @@ "libelleAcheminement": "LA FLAMENGRIE", "nomCommune": "LA FLAMENGRIE" }, - { - "codePostal": "59440", - "codeCommune": "59233", - "libelleAcheminement": "FLAUMONT WAUDRECHIES", - "nomCommune": "FLAUMONT WAUDRECHIES" - }, { "codePostal": "59267", "codeCommune": "59236", @@ -17640,16 +17430,22 @@ "nomCommune": "FLESQUIERES" }, { - "codePostal": "59270", - "codeCommune": "59237", - "libelleAcheminement": "FLETRE", - "nomCommune": "FLETRE" + "codePostal": "59222", + "codeCommune": "59246", + "libelleAcheminement": "FOREST EN CAMBRESIS", + "nomCommune": "FOREST EN CAMBRESIS" }, { - "codePostal": "59440", - "codeCommune": "59240", - "libelleAcheminement": "FLOURSIES", - "nomCommune": "FLOURSIES" + "codePostal": "59610", + "codeCommune": "59249", + "libelleAcheminement": "FOURMIES", + "nomCommune": "FOURMIES" + }, + { + "codePostal": "59530", + "codeCommune": "59251", + "libelleAcheminement": "FRASNOY", + "nomCommune": "FRASNOY" }, { "codePostal": "59970", @@ -17658,16 +17454,34 @@ "nomCommune": "FRESNES SUR ESCAUT" }, { - "codePostal": "59270", - "codeCommune": "59262", - "libelleAcheminement": "GODEWAERSVELDE", - "nomCommune": "GODEWAERSVELDE" + "codePostal": "59273", + "codeCommune": "59256", + "libelleAcheminement": "FRETIN", + "nomCommune": "FRETIN" }, { - "codePostal": "59600", - "codeCommune": "59264", - "libelleAcheminement": "GOGNIES CHAUSSEE", - "nomCommune": "GOGNIES CHAUSSEE" + "codePostal": "59530", + "codeCommune": "59259", + "libelleAcheminement": "GHISSIGNIES", + "nomCommune": "GHISSIGNIES" + }, + { + "codePostal": "59122", + "codeCommune": "59260", + "libelleAcheminement": "GHYVELDE", + "nomCommune": "GHYVELDE" + }, + { + "codePostal": "59132", + "codeCommune": "59261", + "libelleAcheminement": "GLAGEON", + "nomCommune": "GLAGEON" + }, + { + "codePostal": "59169", + "codeCommune": "59263", + "libelleAcheminement": "GOEULZIN", + "nomCommune": "GOEULZIN" }, { "codePostal": "59147", @@ -17676,10 +17490,16 @@ "nomCommune": "GONDECOURT" }, { - "codePostal": "59152", - "codeCommune": "59275", - "libelleAcheminement": "GRUSON", - "nomCommune": "GRUSON" + "codePostal": "59760", + "codeCommune": "59271", + "libelleAcheminement": "GRANDE SYNTHE", + "nomCommune": "GRANDE SYNTHE" + }, + { + "codePostal": "59287", + "codeCommune": "59276", + "libelleAcheminement": "GUESNAIN", + "nomCommune": "GUESNAIN" }, { "codePostal": "59320", @@ -17688,64 +17508,46 @@ "nomCommune": "HALLENNES LEZ HAUBOURDIN" }, { - "codePostal": "59178", - "codeCommune": "59284", - "libelleAcheminement": "HASNON", - "nomCommune": "HASNON" + "codePostal": "59496", + "codeCommune": "59281", + "libelleAcheminement": "HANTAY", + "nomCommune": "HANTAY" }, { - "codePostal": "59440", - "codeCommune": "59290", - "libelleAcheminement": "HAUT LIEU", - "nomCommune": "HAUT LIEU" + "codePostal": "59138", + "codeCommune": "59283", + "libelleAcheminement": "HARGNIES", + "nomCommune": "HARGNIES" }, { - "codePostal": "59255", - "codeCommune": "59292", - "libelleAcheminement": "HAVELUY", - "nomCommune": "HAVELUY" + "codePostal": "59320", + "codeCommune": "59286", + "libelleAcheminement": "HAUBOURDIN", + "nomCommune": "HAUBOURDIN" }, { - "codePostal": "59268", - "codeCommune": "59294", - "libelleAcheminement": "HAYNECOURT", - "nomCommune": "HAYNECOURT" + "codePostal": "59191", + "codeCommune": "59287", + "libelleAcheminement": "HAUCOURT EN CAMBRESIS", + "nomCommune": "HAUCOURT EN CAMBRESIS" }, { - "codePostal": "59247", - "codeCommune": "59300", - "libelleAcheminement": "HEM LENGLET", - "nomCommune": "HEM LENGLET" + "codePostal": "59294", + "codeCommune": "59289", + "libelleAcheminement": "HAUSSY", + "nomCommune": "HAUSSY" }, { - "codePostal": "59147", - "codeCommune": "59304", - "libelleAcheminement": "HERRIN", - "nomCommune": "HERRIN" + "codePostal": "59255", + "codeCommune": "59292", + "libelleAcheminement": "HAVELUY", + "nomCommune": "HAVELUY" }, { - "codePostal": "59122", - "codeCommune": "59309", - "libelleAcheminement": "HONDSCHOOTE", - "nomCommune": "HONDSCHOOTE" - }, - { - "codePostal": "59570", - "codeCommune": "59315", - "libelleAcheminement": "HOUDAIN LEZ BAVAY", - "nomCommune": "HOUDAIN LEZ BAVAY" - }, - { - "codePostal": "59263", - "codeCommune": "59316", - "libelleAcheminement": "HOUPLIN ANCOISNE", - "nomCommune": "HOUPLIN ANCOISNE" - }, - { - "codePostal": "59470", - "codeCommune": "59318", - "libelleAcheminement": "HOUTKERQUE", - "nomCommune": "HOUTKERQUE" + "codePostal": "59199", + "codeCommune": "59301", + "libelleAcheminement": "HERGNIES", + "nomCommune": "HERGNIES" }, { "codePostal": "59492", @@ -17754,22 +17556,28 @@ "nomCommune": "HOYMILLE" }, { - "codePostal": "59480", - "codeCommune": "59320", - "libelleAcheminement": "ILLIES", - "nomCommune": "ILLIES" + "codePostal": "59141", + "codeCommune": "59322", + "libelleAcheminement": "IWUY", + "nomCommune": "IWUY" }, { - "codePostal": "59122", - "codeCommune": "59326", - "libelleAcheminement": "KILLEM", - "nomCommune": "KILLEM" + "codePostal": "59552", + "codeCommune": "59329", + "libelleAcheminement": "LAMBRES LEZ DOUAI", + "nomCommune": "LAMBRES LEZ DOUAI" }, { - "codePostal": "59130", - "codeCommune": "59328", - "libelleAcheminement": "LAMBERSART", - "nomCommune": "LAMBERSART" + "codePostal": "59390", + "codeCommune": "59332", + "libelleAcheminement": "LANNOY", + "nomCommune": "LANNOY" + }, + { + "codePostal": "59470", + "codeCommune": "59338", + "libelleAcheminement": "LEDRINGHEM", + "nomCommune": "LEDRINGHEM" }, { "codePostal": "59258", @@ -17783,6 +17591,18 @@ "libelleAcheminement": "LIEU ST AMAND", "nomCommune": "LIEU ST AMAND" }, + { + "codePostal": "59160", + "codeCommune": "59350", + "libelleAcheminement": "LILLE", + "nomCommune": "LILLE" + }, + { + "codePostal": "59800", + "codeCommune": "59350", + "libelleAcheminement": "LILLE", + "nomCommune": "LILLE" + }, { "codePostal": "59126", "codeCommune": "59352", @@ -17790,10 +17610,10 @@ "nomCommune": "LINSELLES" }, { - "codePostal": "59840", - "codeCommune": "59356", - "libelleAcheminement": "LOMPRET", - "nomCommune": "LOMPRET" + "codePostal": "59182", + "codeCommune": "59354", + "libelleAcheminement": "LOFFRE", + "nomCommune": "LOFFRE" }, { "codePostal": "59630", @@ -17802,28 +17622,28 @@ "nomCommune": "LOOBERGHE" }, { - "codePostal": "59233", - "codeCommune": "59369", - "libelleAcheminement": "MAING", - "nomCommune": "MAING" + "codePostal": "59238", + "codeCommune": "59382", + "libelleAcheminement": "MARETZ", + "nomCommune": "MARETZ" }, { - "codePostal": "59550", - "codeCommune": "59384", - "libelleAcheminement": "MAROILLES", - "nomCommune": "MAROILLES" + "codePostal": "59520", + "codeCommune": "59386", + "libelleAcheminement": "MARQUETTE LEZ LILLE", + "nomCommune": "MARQUETTE LEZ LILLE" }, { - "codePostal": "59274", - "codeCommune": "59388", - "libelleAcheminement": "MARQUILLIES", - "nomCommune": "MARQUILLIES" + "codePostal": "59710", + "codeCommune": "59398", + "libelleAcheminement": "MERIGNIES", + "nomCommune": "MERIGNIES" }, { - "codePostal": "59470", - "codeCommune": "59397", - "libelleAcheminement": "MERCKEGHEM", - "nomCommune": "MERCKEGHEM" + "codePostal": "59270", + "codeCommune": "59399", + "libelleAcheminement": "MERRIS", + "nomCommune": "MERRIS" }, { "codePostal": "59270", @@ -17832,16 +17652,28 @@ "nomCommune": "METEREN" }, { - "codePostal": "59400", - "codeCommune": "59405", - "libelleAcheminement": "MOEUVRES", - "nomCommune": "MOEUVRES" + "codePostal": "59178", + "codeCommune": "59403", + "libelleAcheminement": "MILLONFOSSE", + "nomCommune": "MILLONFOSSE" }, { - "codePostal": "59234", - "codeCommune": "59409", - "libelleAcheminement": "MONCHECOURT", - "nomCommune": "MONCHECOURT" + "codePostal": "59246", + "codeCommune": "59411", + "libelleAcheminement": "MONS EN PEVELE", + "nomCommune": "MONS EN PEVELE" + }, + { + "codePostal": "59227", + "codeCommune": "59415", + "libelleAcheminement": "MONTRECOURT", + "nomCommune": "MONTRECOURT" + }, + { + "codePostal": "59158", + "codeCommune": "59418", + "libelleAcheminement": "MORTAGNE DU NORD", + "nomCommune": "MORTAGNE DU NORD" }, { "codePostal": "59132", @@ -17850,112 +17682,106 @@ "nomCommune": "MOUSTIER EN FAGNE" }, { - "codePostal": "59420", - "codeCommune": "59421", - "libelleAcheminement": "MOUVAUX", - "nomCommune": "MOUVAUX" - }, - { - "codePostal": "59940", - "codeCommune": "59423", - "libelleAcheminement": "NEUF BERQUIN", - "nomCommune": "NEUF BERQUIN" + "codePostal": "59330", + "codeCommune": "59424", + "libelleAcheminement": "NEUF MESNIL", + "nomCommune": "NEUF MESNIL" }, { - "codePostal": "59143", - "codeCommune": "59433", - "libelleAcheminement": "NIEURLET", - "nomCommune": "NIEURLET" + "codePostal": "59670", + "codeCommune": "59436", + "libelleAcheminement": "NOORDPEENE", + "nomCommune": "NOORDPEENE" }, { - "codePostal": "59310", - "codeCommune": "59435", - "libelleAcheminement": "NOMAIN", - "nomCommune": "NOMAIN" + "codePostal": "59159", + "codeCommune": "59438", + "libelleAcheminement": "NOYELLES SUR ESCAUT", + "nomCommune": "NOYELLES SUR ESCAUT" }, { - "codePostal": "59139", - "codeCommune": "59437", - "libelleAcheminement": "NOYELLES LES SECLIN", - "nomCommune": "NOYELLES LES SECLIN" + "codePostal": "59132", + "codeCommune": "59445", + "libelleAcheminement": "OHAIN", + "nomCommune": "OHAIN" }, { - "codePostal": "59282", - "codeCommune": "59440", - "libelleAcheminement": "NOYELLES SUR SELLE", - "nomCommune": "NOYELLES SUR SELLE" + "codePostal": "59264", + "codeCommune": "59447", + "libelleAcheminement": "ONNAING", + "nomCommune": "ONNAING" }, { - "codePostal": "59970", - "codeCommune": "59444", - "libelleAcheminement": "ODOMEZ", - "nomCommune": "ODOMEZ" + "codePostal": "59710", + "codeCommune": "59466", + "libelleAcheminement": "PONT A MARCQ", + "nomCommune": "PONT A MARCQ" }, { - "codePostal": "59122", - "codeCommune": "59448", - "libelleAcheminement": "OOST CAPPEL", - "nomCommune": "OOST CAPPEL" + "codePostal": "59990", + "codeCommune": "59471", + "libelleAcheminement": "PRESEAU", + "nomCommune": "PRESEAU" }, { - "codePostal": "59360", - "codeCommune": "59450", - "libelleAcheminement": "ORS", - "nomCommune": "ORS" + "codePostal": "59185", + "codeCommune": "59477", + "libelleAcheminement": "PROVIN", + "nomCommune": "PROVIN" }, { - "codePostal": "59162", - "codeCommune": "59452", - "libelleAcheminement": "OSTRICOURT", - "nomCommune": "OSTRICOURT" + "codePostal": "59680", + "codeCommune": "59483", + "libelleAcheminement": "QUIEVELON", + "nomCommune": "QUIEVELON" }, { - "codePostal": "59146", - "codeCommune": "59456", - "libelleAcheminement": "PECQUENCOURT", - "nomCommune": "PECQUENCOURT" + "codePostal": "59920", + "codeCommune": "59484", + "libelleAcheminement": "QUIEVRECHAIN", + "nomCommune": "QUIEVRECHAIN" }, { - "codePostal": "59284", - "codeCommune": "59463", - "libelleAcheminement": "PITGAM", - "nomCommune": "PITGAM" + "codePostal": "59320", + "codeCommune": "59487", + "libelleAcheminement": "RADINGHEM EN WEPPES", + "nomCommune": "RADINGHEM EN WEPPES" }, { - "codePostal": "59138", - "codeCommune": "59467", - "libelleAcheminement": "PONT SUR SAMBRE", - "nomCommune": "PONT SUR SAMBRE" + "codePostal": "59590", + "codeCommune": "59491", + "libelleAcheminement": "RAISMES", + "nomCommune": "RAISMES" }, { - "codePostal": "59840", - "codeCommune": "59470", - "libelleAcheminement": "PREMESQUES", - "nomCommune": "PREMESQUES" + "codePostal": "59173", + "codeCommune": "59497", + "libelleAcheminement": "RENESCURE", + "nomCommune": "RENESCURE" }, { - "codePostal": "59144", - "codeCommune": "59473", - "libelleAcheminement": "PREUX AU SART", - "nomCommune": "PREUX AU SART" + "codePostal": "59980", + "codeCommune": "59498", + "libelleAcheminement": "REUMONT", + "nomCommune": "REUMONT" }, { - "codePostal": "59121", - "codeCommune": "59475", - "libelleAcheminement": "PROUVY", - "nomCommune": "PROUVY" + "codePostal": "59159", + "codeCommune": "59500", + "libelleAcheminement": "RIBECOURT LA TOUR", + "nomCommune": "RIBECOURT LA TOUR" }, { - "codePostal": "59530", - "codeCommune": "59481", - "libelleAcheminement": "LE QUESNOY", - "nomCommune": "LE QUESNOY" + "codePostal": "59870", + "codeCommune": "59501", + "libelleAcheminement": "RIEULAY", + "nomCommune": "RIEULAY" }, { - "codePostal": "59283", - "codeCommune": "59489", - "libelleAcheminement": "RAIMBEAUCOURT", - "nomCommune": "RAIMBEAUCOURT" + "codePostal": "59730", + "codeCommune": "59506", + "libelleAcheminement": "ROMERIES", + "nomCommune": "ROMERIES" }, { "codePostal": "59169", @@ -17964,34 +17790,22 @@ "nomCommune": "ROUCOURT" }, { - "codePostal": "59220", - "codeCommune": "59515", - "libelleAcheminement": "ROUVIGNIES", - "nomCommune": "ROUVIGNIES" - }, - { - "codePostal": "59285", - "codeCommune": "59516", - "libelleAcheminement": "RUBROUCK", - "nomCommune": "RUBROUCK" - }, - { - "codePostal": "59390", - "codeCommune": "59522", - "libelleAcheminement": "SAILLY LEZ LANNOY", - "nomCommune": "SAILLY LEZ LANNOY" + "codePostal": "59226", + "codeCommune": "59519", + "libelleAcheminement": "RUMEGIES", + "nomCommune": "RUMEGIES" }, { - "codePostal": "59184", - "codeCommune": "59524", - "libelleAcheminement": "SAINGHIN EN WEPPES", - "nomCommune": "SAINGHIN EN WEPPES" + "codePostal": "59820", + "codeCommune": "59532", + "libelleAcheminement": "ST GEORGES SUR L AA", + "nomCommune": "ST GEORGES SUR L AA" }, { - "codePostal": "59177", - "codeCommune": "59525", - "libelleAcheminement": "SAINS DU NORD", - "nomCommune": "SAINS DU NORD" + "codePostal": "59270", + "codeCommune": "59535", + "libelleAcheminement": "ST JANS CAPPEL", + "nomCommune": "ST JANS CAPPEL" }, { "codePostal": "59114", @@ -18006,58 +17820,58 @@ "nomCommune": "ST WAAST" }, { - "codePostal": "59269", - "codeCommune": "59565", - "libelleAcheminement": "SEPMERIES", - "nomCommune": "SEPMERIES" + "codePostal": "59310", + "codeCommune": "59551", + "libelleAcheminement": "SAMEON", + "nomCommune": "SAMEON" }, { - "codePostal": "59400", - "codeCommune": "59567", - "libelleAcheminement": "SERANVILLERS FORENVILLE", - "nomCommune": "SERANVILLERS FORENVILLE" + "codePostal": "59113", + "codeCommune": "59560", + "libelleAcheminement": "SECLIN", + "nomCommune": "SECLIN" }, { - "codePostal": "59740", - "codeCommune": "59572", - "libelleAcheminement": "SOLRE LE CHATEAU", - "nomCommune": "SOLRE LE CHATEAU" + "codePostal": "59174", + "codeCommune": "59564", + "libelleAcheminement": "LA SENTINELLE", + "nomCommune": "LA SENTINELLE" }, { - "codePostal": "59490", - "codeCommune": "59574", - "libelleAcheminement": "SOMAIN", - "nomCommune": "SOMAIN" + "codePostal": "59114", + "codeCommune": "59580", + "libelleAcheminement": "STEENVOORDE", + "nomCommune": "STEENVOORDE" }, { - "codePostal": "59380", - "codeCommune": "59579", - "libelleAcheminement": "STEENE", - "nomCommune": "STEENE" + "codePostal": "59270", + "codeCommune": "59582", + "libelleAcheminement": "STRAZEELE", + "nomCommune": "STRAZEELE" }, { - "codePostal": "59181", - "codeCommune": "59581", - "libelleAcheminement": "STEENWERCK", - "nomCommune": "STEENWERCK" + "codePostal": "59550", + "codeCommune": "59583", + "libelleAcheminement": "TAISNIERES EN THIERACHE", + "nomCommune": "TAISNIERES EN THIERACHE" }, { - "codePostal": "59570", - "codeCommune": "59584", - "libelleAcheminement": "TAISNIERES SUR HON", - "nomCommune": "TAISNIERES SUR HON" + "codePostal": "59242", + "codeCommune": "59586", + "libelleAcheminement": "TEMPLEUVE EN PEVELE", + "nomCommune": "TEMPLEUVE EN PEVELE" }, { - "codePostal": "59870", - "codeCommune": "59596", - "libelleAcheminement": "TILLOY LEZ MARCHIENNES", - "nomCommune": "TILLOY LEZ MARCHIENNES" + "codePostal": "59163", + "codeCommune": "59591", + "libelleAcheminement": "THIVENCELLE", + "nomCommune": "THIVENCELLE" }, { - "codePostal": "59551", - "codeCommune": "59600", - "libelleAcheminement": "TOURMIGNIES", - "nomCommune": "TOURMIGNIES" + "codePostal": "59141", + "codeCommune": "59593", + "libelleAcheminement": "THUN L EVEQUE", + "nomCommune": "THUN L EVEQUE" }, { "codePostal": "59132", @@ -18066,28 +17880,52 @@ "nomCommune": "TRELON" }, { - "codePostal": "59690", - "codeCommune": "59616", - "libelleAcheminement": "VIEUX CONDE", - "nomCommune": "VIEUX CONDE" + "codePostal": "59125", + "codeCommune": "59603", + "libelleAcheminement": "TRITH ST LEGER", + "nomCommune": "TRITH ST LEGER" }, { - "codePostal": "59600", - "codeCommune": "59618", - "libelleAcheminement": "VIEUX RENG", - "nomCommune": "VIEUX RENG" + "codePostal": "59300", + "codeCommune": "59606", + "libelleAcheminement": "VALENCIENNES", + "nomCommune": "VALENCIENNES" }, { - "codePostal": "59600", - "codeCommune": "59627", - "libelleAcheminement": "VILLERS SIRE NICOLE", - "nomCommune": "VILLERS SIRE NICOLE" + "codePostal": "59730", + "codeCommune": "59612", + "libelleAcheminement": "VERTAIN", + "nomCommune": "VERTAIN" }, { - "codePostal": "59470", - "codeCommune": "59628", - "libelleAcheminement": "VOLCKERINCKHOVE", - "nomCommune": "VOLCKERINCKHOVE" + "codePostal": "59271", + "codeCommune": "59614", + "libelleAcheminement": "VIESLY", + "nomCommune": "VIESLY" + }, + { + "codePostal": "59142", + "codeCommune": "59624", + "libelleAcheminement": "VILLERS OUTREAUX", + "nomCommune": "VILLERS OUTREAUX" + }, + { + "codePostal": "59870", + "codeCommune": "59629", + "libelleAcheminement": "VRED", + "nomCommune": "VRED" + }, + { + "codePostal": "59135", + "codeCommune": "59632", + "libelleAcheminement": "WALLERS", + "nomCommune": "WALLERS" + }, + { + "codePostal": "59144", + "codeCommune": "59640", + "libelleAcheminement": "WARGNIES LE PETIT", + "nomCommune": "WARGNIES LE PETIT" }, { "codePostal": "59680", @@ -18095,24 +17933,12 @@ "libelleAcheminement": "WATTIGNIES LA VICTOIRE", "nomCommune": "WATTIGNIES LA VICTOIRE" }, - { - "codePostal": "59119", - "codeCommune": "59654", - "libelleAcheminement": "WAZIERS", - "nomCommune": "WAZIERS" - }, { "codePostal": "59117", "codeCommune": "59656", "libelleAcheminement": "WERVICQ SUD", "nomCommune": "WERVICQ SUD" }, - { - "codePostal": "59134", - "codeCommune": "59658", - "libelleAcheminement": "WICRES", - "nomCommune": "WICRES" - }, { "codePostal": "59212", "codeCommune": "59659", @@ -18120,34 +17946,40 @@ "nomCommune": "WIGNEHIES" }, { - "codePostal": "59143", - "codeCommune": "59664", - "libelleAcheminement": "WULVERDINGHE", - "nomCommune": "WULVERDINGHE" + "codePostal": "59780", + "codeCommune": "59660", + "libelleAcheminement": "WILLEMS", + "nomCommune": "WILLEMS" }, { - "codePostal": "59670", - "codeCommune": "59667", - "libelleAcheminement": "ZERMEZEELE", - "nomCommune": "ZERMEZEELE" + "codePostal": "59740", + "codeCommune": "59661", + "libelleAcheminement": "WILLIES", + "nomCommune": "WILLIES" }, { - "codePostal": "59670", - "codeCommune": "59669", - "libelleAcheminement": "ZUYTPEENE", - "nomCommune": "ZUYTPEENE" + "codePostal": "59123", + "codeCommune": "59668", + "libelleAcheminement": "ZUYDCOOTE", + "nomCommune": "ZUYDCOOTE" }, { - "codePostal": "60220", - "codeCommune": "60001", - "libelleAcheminement": "ABANCOURT", - "nomCommune": "ABANCOURT" + "codePostal": "60430", + "codeCommune": "60002", + "libelleAcheminement": "ABBECOURT", + "nomCommune": "ABBECOURT" }, { - "codePostal": "60600", - "codeCommune": "60007", - "libelleAcheminement": "AGNETZ", - "nomCommune": "AGNETZ" + "codePostal": "60620", + "codeCommune": "60005", + "libelleAcheminement": "ACY EN MULTIEN", + "nomCommune": "ACY EN MULTIEN" + }, + { + "codePostal": "60700", + "codeCommune": "60006", + "libelleAcheminement": "LES AGEUX", + "nomCommune": "LES AGEUX" }, { "codePostal": "60110", @@ -18156,34 +17988,64 @@ "nomCommune": "AMBLAINVILLE" }, { - "codePostal": "60570", - "codeCommune": "60012", - "libelleAcheminement": "ANDEVILLE", - "nomCommune": "ANDEVILLE" + "codePostal": "60940", + "codeCommune": "60013", + "libelleAcheminement": "ANGICOURT", + "nomCommune": "ANGICOURT" }, { - "codePostal": "60162", - "codeCommune": "60019", - "libelleAcheminement": "ANTHEUIL PORTES", - "nomCommune": "ANTHEUIL PORTES" + "codePostal": "60130", + "codeCommune": "60014", + "libelleAcheminement": "ANGIVILLERS", + "nomCommune": "ANGIVILLERS" }, { - "codePostal": "60800", - "codeCommune": "60027", - "libelleAcheminement": "AUGER ST VINCENT", - "nomCommune": "AUGER ST VINCENT" + "codePostal": "60250", + "codeCommune": "60015", + "libelleAcheminement": "ANGY", + "nomCommune": "ANGY" }, { - "codePostal": "60140", - "codeCommune": "60042", - "libelleAcheminement": "BAILLEVAL", - "nomCommune": "BAILLEVAL" + "codePostal": "60250", + "codeCommune": "60016", + "libelleAcheminement": "ANSACQ", + "nomCommune": "ANSACQ" + }, + { + "codePostal": "60400", + "codeCommune": "60021", + "libelleAcheminement": "APPILLY", + "nomCommune": "APPILLY" + }, + { + "codePostal": "60880", + "codeCommune": "60023", + "libelleAcheminement": "ARMANCOURT", + "nomCommune": "ARMANCOURT" + }, + { + "codePostal": "60190", + "codeCommune": "60024", + "libelleAcheminement": "ARSY", + "nomCommune": "ARSY" + }, + { + "codePostal": "60390", + "codeCommune": "60029", + "libelleAcheminement": "AUNEUIL", + "nomCommune": "AUNEUIL" }, { "codePostal": "60300", - "codeCommune": "60047", - "libelleAcheminement": "BARON", - "nomCommune": "BARON" + "codeCommune": "60033", + "libelleAcheminement": "AVILLY ST LEONARD", + "nomCommune": "AVILLY ST LEONARD" + }, + { + "codePostal": "60170", + "codeCommune": "60043", + "libelleAcheminement": "BAILLY", + "nomCommune": "BAILLY" }, { "codePostal": "60113", @@ -18192,16 +18054,10 @@ "nomCommune": "BAUGY" }, { - "codePostal": "60700", - "codeCommune": "60050", - "libelleAcheminement": "BAZICOURT", - "nomCommune": "BAZICOURT" - }, - { - "codePostal": "60120", - "codeCommune": "60058", - "libelleAcheminement": "BEAUVOIR", - "nomCommune": "BEAUVOIR" + "codePostal": "60000", + "codeCommune": "60057", + "libelleAcheminement": "BEAUVAIS", + "nomCommune": "BEAUVAIS" }, { "codePostal": "60400", @@ -18209,12 +18065,6 @@ "libelleAcheminement": "BEHERICOURT", "nomCommune": "BEHERICOURT" }, - { - "codePostal": "60540", - "codeCommune": "60060", - "libelleAcheminement": "BELLE EGLISE", - "nomCommune": "BELLE EGLISE" - }, { "codePostal": "60640", "codeCommune": "60062", @@ -18222,34 +18072,16 @@ "nomCommune": "BERLANCOURT" }, { - "codePostal": "60370", - "codeCommune": "60065", - "libelleAcheminement": "BERTHECOURT", - "nomCommune": "BERTHECOURT" - }, - { - "codePostal": "60620", - "codeCommune": "60069", - "libelleAcheminement": "BETZ", - "nomCommune": "BETZ" - }, - { - "codePostal": "60280", - "codeCommune": "60070", - "libelleAcheminement": "BIENVILLE", - "nomCommune": "BIENVILLE" - }, - { - "codePostal": "60650", - "codeCommune": "60073", - "libelleAcheminement": "BLACOURT", - "nomCommune": "BLACOURT" + "codePostal": "60320", + "codeCommune": "60067", + "libelleAcheminement": "BETHISY ST MARTIN", + "nomCommune": "BETHISY ST MARTIN" }, { - "codePostal": "60460", - "codeCommune": "60074", - "libelleAcheminement": "BLAINCOURT LES PRECY", - "nomCommune": "BLAINCOURT LES PRECY" + "codePostal": "60350", + "codeCommune": "60072", + "libelleAcheminement": "BITRY", + "nomCommune": "BITRY" }, { "codePostal": "60220", @@ -18257,6 +18089,12 @@ "libelleAcheminement": "BLARGIES", "nomCommune": "BLARGIES" }, + { + "codePostal": "60860", + "codeCommune": "60077", + "libelleAcheminement": "BLICOURT", + "nomCommune": "BLICOURT" + }, { "codePostal": "60540", "codeCommune": "60088", @@ -18276,10 +18114,10 @@ "nomCommune": "BOUILLANCY" }, { - "codePostal": "60240", - "codeCommune": "60095", - "libelleAcheminement": "BOURY EN VEXIN", - "nomCommune": "BOURY EN VEXIN" + "codePostal": "60490", + "codeCommune": "60093", + "libelleAcheminement": "BOULOGNE LA GRASSE", + "nomCommune": "BOULOGNE LA GRASSE" }, { "codePostal": "60590", @@ -18287,6 +18125,12 @@ "libelleAcheminement": "BOUTENCOURT", "nomCommune": "BOUTENCOURT" }, + { + "codePostal": "60113", + "codeCommune": "60099", + "libelleAcheminement": "BRAISNES SUR ARONDE", + "nomCommune": "BRAISNES SUR ARONDE" + }, { "codePostal": "60810", "codeCommune": "60100", @@ -18294,16 +18138,10 @@ "nomCommune": "BRASSEUSE" }, { - "codePostal": "60120", - "codeCommune": "60104", - "libelleAcheminement": "BRETEUIL", - "nomCommune": "BRETEUIL" - }, - { - "codePostal": "60120", - "codeCommune": "60111", - "libelleAcheminement": "BROYES", - "nomCommune": "BROYES" + "codePostal": "60210", + "codeCommune": "60109", + "libelleAcheminement": "BROMBOS", + "nomCommune": "BROMBOS" }, { "codePostal": "60130", @@ -18312,10 +18150,10 @@ "nomCommune": "BRUNVILLERS LA MOTTE" }, { - "codePostal": "60310", - "codeCommune": "60126", - "libelleAcheminement": "CANNECTANCOURT", - "nomCommune": "CANNECTANCOURT" + "codePostal": "60250", + "codeCommune": "60116", + "libelleAcheminement": "BURY", + "nomCommune": "BURY" }, { "codePostal": "60220", @@ -18323,41 +18161,71 @@ "libelleAcheminement": "CANNY SUR THERAIN", "nomCommune": "CANNY SUR THERAIN" }, + { + "codePostal": "60190", + "codeCommune": "60137", + "libelleAcheminement": "CERNOY", + "nomCommune": "CERNOY" + }, + { + "codePostal": "60300", + "codeCommune": "60138", + "libelleAcheminement": "CHAMANT", + "nomCommune": "CHAMANT" + }, { "codePostal": "60360", - "codeCommune": "60131", - "libelleAcheminement": "CATHEUX", - "nomCommune": "CATHEUX" + "codeCommune": "60153", + "libelleAcheminement": "CHOQUEUSE LES BENARDS", + "nomCommune": "CHOQUEUSE LES BENARDS" }, { - "codePostal": "60210", - "codeCommune": "60136", - "libelleAcheminement": "CEMPUIS", - "nomCommune": "CEMPUIS" + "codePostal": "60660", + "codeCommune": "60155", + "libelleAcheminement": "CIRES LES MELLO", + "nomCommune": "CIRES LES MELLO" }, { - "codePostal": "60190", - "codeCommune": "60137", - "libelleAcheminement": "CERNOY", - "nomCommune": "CERNOY" + "codePostal": "60200", + "codeCommune": "60159", + "libelleAcheminement": "COMPIEGNE", + "nomCommune": "COMPIEGNE" }, { - "codePostal": "60240", - "codeCommune": "60140", - "libelleAcheminement": "CHAMBORS", - "nomCommune": "CHAMBORS" + "codePostal": "60490", + "codeCommune": "60160", + "libelleAcheminement": "CONCHY LES POTS", + "nomCommune": "CONCHY LES POTS" + }, + { + "codePostal": "60850", + "codeCommune": "60164", + "libelleAcheminement": "LE COUDRAY ST GERMER", + "nomCommune": "LE COUDRAY ST GERMER" + }, + { + "codePostal": "60430", + "codeCommune": "60165", + "libelleAcheminement": "LE COUDRAY SUR THELLE", + "nomCommune": "LE COUDRAY SUR THELLE" }, { "codePostal": "60240", - "codeCommune": "60143", - "libelleAcheminement": "CHAUMONT EN VEXIN", - "nomCommune": "CHAUMONT EN VEXIN" + "codeCommune": "60169", + "libelleAcheminement": "COURCELLES LES GISORS", + "nomCommune": "COURCELLES LES GISORS" }, { - "codePostal": "60600", - "codeCommune": "60157", - "libelleAcheminement": "CLERMONT", - "nomCommune": "CLERMONT" + "codePostal": "60300", + "codeCommune": "60170", + "libelleAcheminement": "COURTEUIL", + "nomCommune": "COURTEUIL" + }, + { + "codePostal": "60310", + "codeCommune": "60174", + "libelleAcheminement": "CRAPEAUMESNIL", + "nomCommune": "CRAPEAUMESNIL" }, { "codePostal": "60100", @@ -18366,46 +18234,40 @@ "nomCommune": "CREIL" }, { - "codePostal": "60120", - "codeCommune": "60182", - "libelleAcheminement": "LE CROCQ", - "nomCommune": "LE CROCQ" - }, - { - "codePostal": "60350", - "codeCommune": "60184", - "libelleAcheminement": "CROUTOY", - "nomCommune": "CROUTOY" + "codePostal": "60190", + "codeCommune": "60177", + "libelleAcheminement": "CRESSONSACQ", + "nomCommune": "CRESSONSACQ" }, { - "codePostal": "60130", - "codeCommune": "60186", - "libelleAcheminement": "CUIGNIERES", - "nomCommune": "CUIGNIERES" + "codePostal": "60112", + "codeCommune": "60180", + "libelleAcheminement": "CRILLON", + "nomCommune": "CRILLON" }, { - "codePostal": "60310", - "codeCommune": "60192", - "libelleAcheminement": "CUY", - "nomCommune": "CUY" + "codePostal": "60400", + "codeCommune": "60181", + "libelleAcheminement": "CRISOLLES", + "nomCommune": "CRISOLLES" }, { - "codePostal": "60240", - "codeCommune": "60195", - "libelleAcheminement": "DELINCOURT", - "nomCommune": "DELINCOURT" + "codePostal": "60490", + "codeCommune": "60191", + "libelleAcheminement": "CUVILLY", + "nomCommune": "CUVILLY" }, { - "codePostal": "60420", - "codeCommune": "60201", - "libelleAcheminement": "DOMPIERRE", - "nomCommune": "DOMPIERRE" + "codePostal": "60790", + "codeCommune": "60196", + "libelleAcheminement": "LA DRENNE", + "nomCommune": "LA DRENNE" }, { - "codePostal": "60310", - "codeCommune": "60204", - "libelleAcheminement": "ECUVILLY", - "nomCommune": "ECUVILLY" + "codePostal": "60360", + "codeCommune": "60199", + "libelleAcheminement": "DOMELIERS", + "nomCommune": "DOMELIERS" }, { "codePostal": "60240", @@ -18414,16 +18276,16 @@ "nomCommune": "LA CORNE EN VEXIN" }, { - "codePostal": "60240", - "codeCommune": "60209", - "libelleAcheminement": "LA CORNE EN VEXIN", - "nomCommune": "LA CORNE EN VEXIN" + "codePostal": "60590", + "codeCommune": "60211", + "libelleAcheminement": "ERAGNY SUR EPTE", + "nomCommune": "ERAGNY SUR EPTE" }, { - "codePostal": "60380", - "codeCommune": "60217", - "libelleAcheminement": "ESCAMES", - "nomCommune": "ESCAMES" + "codePostal": "60950", + "codeCommune": "60213", + "libelleAcheminement": "ERMENONVILLE", + "nomCommune": "ERMENONVILLE" }, { "codePostal": "60650", @@ -18438,214 +18300,280 @@ "nomCommune": "ESSUILES" }, { - "codePostal": "60640", - "codeCommune": "60236", - "libelleAcheminement": "FLAVY LE MELDEUX", - "nomCommune": "FLAVY LE MELDEUX" + "codePostal": "60190", + "codeCommune": "60223", + "libelleAcheminement": "ESTREES ST DENIS", + "nomCommune": "ESTREES ST DENIS" }, { - "codePostal": "60700", - "codeCommune": "60238", - "libelleAcheminement": "FLEURINES", - "nomCommune": "FLEURINES" + "codePostal": "60620", + "codeCommune": "60224", + "libelleAcheminement": "ETAVIGNY", + "nomCommune": "ETAVIGNY" }, { "codePostal": "60240", - "codeCommune": "60239", - "libelleAcheminement": "FLEURY", - "nomCommune": "FLEURY" - }, - { - "codePostal": "60420", - "codeCommune": "60262", - "libelleAcheminement": "LE FRESTOY VAUX", - "nomCommune": "LE FRESTOY VAUX" - }, - { - "codePostal": "60120", - "codeCommune": "60268", - "libelleAcheminement": "GANNES", - "nomCommune": "GANNES" + "codeCommune": "60228", + "libelleAcheminement": "FAY LES ETANGS", + "nomCommune": "FAY LES ETANGS" }, { - "codePostal": "60150", - "codeCommune": "60273", - "libelleAcheminement": "GIRAUMONT", - "nomCommune": "GIRAUMONT" + "codePostal": "60800", + "codeCommune": "60231", + "libelleAcheminement": "FEIGNEUX", + "nomCommune": "FEIGNEUX" }, { - "codePostal": "60190", - "codeCommune": "60281", - "libelleAcheminement": "GOURNAY SUR ARONDE", - "nomCommune": "GOURNAY SUR ARONDE" + "codePostal": "60600", + "codeCommune": "60234", + "libelleAcheminement": "FITZ JAMES", + "nomCommune": "FITZ JAMES" }, { - "codePostal": "60190", - "codeCommune": "60285", - "libelleAcheminement": "GRANDVILLERS AUX BOIS", - "nomCommune": "GRANDVILLERS AUX BOIS" + "codePostal": "60360", + "codeCommune": "60240", + "libelleAcheminement": "FONTAINE BONNELEAU", + "nomCommune": "FONTAINE BONNELEAU" }, { "codePostal": "60480", - "codeCommune": "60290", - "libelleAcheminement": "GUIGNECOURT", - "nomCommune": "GUIGNECOURT" + "codeCommune": "60243", + "libelleAcheminement": "FONTAINE ST LUCIEN", + "nomCommune": "FONTAINE ST LUCIEN" }, { - "codePostal": "60490", - "codeCommune": "60294", - "libelleAcheminement": "HAINVILLERS", - "nomCommune": "HAINVILLERS" + "codePostal": "60380", + "codeCommune": "60244", + "libelleAcheminement": "FONTENAY TORCY", + "nomCommune": "FONTENAY TORCY" }, { - "codePostal": "60210", - "codeCommune": "60295", - "libelleAcheminement": "HALLOY", - "nomCommune": "HALLOY" + "codePostal": "60000", + "codeCommune": "60250", + "libelleAcheminement": "FOUQUENIES", + "nomCommune": "FOUQUENIES" }, { - "codePostal": "60120", - "codeCommune": "60299", - "libelleAcheminement": "HARDIVILLERS", - "nomCommune": "HARDIVILLERS" + "codePostal": "60640", + "codeCommune": "60255", + "libelleAcheminement": "FRENICHES", + "nomCommune": "FRENICHES" }, { - "codePostal": "60112", - "codeCommune": "60301", - "libelleAcheminement": "HAUCOURT", - "nomCommune": "HAUCOURT" + "codePostal": "60129", + "codeCommune": "60272", + "libelleAcheminement": "GILOCOURT", + "nomCommune": "GILOCOURT" }, { - "codePostal": "60250", - "codeCommune": "60307", - "libelleAcheminement": "HEILLES", - "nomCommune": "HEILLES" + "codePostal": "60150", + "codeCommune": "60273", + "libelleAcheminement": "GIRAUMONT", + "nomCommune": "GIRAUMONT" }, { - "codePostal": "60370", - "codeCommune": "60313", - "libelleAcheminement": "HERMES", - "nomCommune": "HERMES" + "codePostal": "60420", + "codeCommune": "60276", + "libelleAcheminement": "GODENVILLERS", + "nomCommune": "GODENVILLERS" }, { - "codePostal": "60150", - "codeCommune": "60323", - "libelleAcheminement": "JANVILLE", - "nomCommune": "JANVILLE" + "codePostal": "60680", + "codeCommune": "60284", + "libelleAcheminement": "GRANDFRESNOY", + "nomCommune": "GRANDFRESNOY" }, { - "codePostal": "60570", - "codeCommune": "60330", - "libelleAcheminement": "LABOISSIERE EN THELLE", - "nomCommune": "LABOISSIERE EN THELLE" + "codePostal": "60640", + "codeCommune": "60291", + "libelleAcheminement": "GUISCARD", + "nomCommune": "GUISCARD" }, { - "codePostal": "60140", - "codeCommune": "60332", - "libelleAcheminement": "LABRUYERE", - "nomCommune": "LABRUYERE" + "codePostal": "60310", + "codeCommune": "60292", + "libelleAcheminement": "GURY", + "nomCommune": "GURY" }, { - "codePostal": "60650", - "codeCommune": "60333", - "libelleAcheminement": "LACHAPELLE AUX POTS", - "nomCommune": "LACHAPELLE AUX POTS" + "codePostal": "60240", + "codeCommune": "60293", + "libelleAcheminement": "HADANCOURT LE HAUT CLOCHER", + "nomCommune": "HADANCOURT LE HAUT CLOCHER" }, { - "codePostal": "60510", - "codeCommune": "60339", - "libelleAcheminement": "LAFRAYE", - "nomCommune": "LAFRAYE" + "codePostal": "60650", + "codeCommune": "60296", + "libelleAcheminement": "HANNACHES", + "nomCommune": "HANNACHES" }, { - "codePostal": "60310", - "codeCommune": "60350", - "libelleAcheminement": "LASSIGNY", - "nomCommune": "LASSIGNY" + "codePostal": "60690", + "codeCommune": "60304", + "libelleAcheminement": "HAUTE EPINE", + "nomCommune": "HAUTE EPINE" }, { - "codePostal": "60240", - "codeCommune": "60356", - "libelleAcheminement": "LAVILLETERTRE", - "nomCommune": "LAVILLETERTRE" + "codePostal": "60380", + "codeCommune": "60306", + "libelleAcheminement": "HECOURT", + "nomCommune": "HECOURT" }, { "codePostal": "60380", - "codeCommune": "60371", - "libelleAcheminement": "LOUEUSE", - "nomCommune": "LOUEUSE" + "codeCommune": "60312", + "libelleAcheminement": "HERICOURT SUR THERAIN", + "nomCommune": "HERICOURT SUR THERAIN" }, { - "codePostal": "60360", - "codeCommune": "60372", - "libelleAcheminement": "LUCHY", - "nomCommune": "LUCHY" + "codePostal": "60141", + "codeCommune": "60320", + "libelleAcheminement": "IVORS", + "nomCommune": "IVORS" }, { - "codePostal": "60150", - "codeCommune": "60373", - "libelleAcheminement": "MACHEMONT", - "nomCommune": "MACHEMONT" + "codePostal": "60310", + "codeCommune": "60329", + "libelleAcheminement": "LABERLIERE", + "nomCommune": "LABERLIERE" }, { - "codePostal": "60420", - "codeCommune": "60374", - "libelleAcheminement": "MAIGNELAY MONTIGNY", - "nomCommune": "MAIGNELAY MONTIGNY" + "codePostal": "60730", + "codeCommune": "60334", + "libelleAcheminement": "LACHAPELLE ST PIERRE", + "nomCommune": "LACHAPELLE ST PIERRE" }, { - "codePostal": "60112", - "codeCommune": "60388", - "libelleAcheminement": "MARTINCOURT", - "nomCommune": "MARTINCOURT" + "codePostal": "60610", + "codeCommune": "60338", + "libelleAcheminement": "LACROIX ST OUEN", + "nomCommune": "LACROIX ST OUEN" }, { - "codePostal": "60640", - "codeCommune": "60389", - "libelleAcheminement": "MAUCOURT", - "nomCommune": "MAUCOURT" + "codePostal": "60290", + "codeCommune": "60342", + "libelleAcheminement": "LAIGNEVILLE", + "nomCommune": "LAIGNEVILLE" }, { - "codePostal": "60420", - "codeCommune": "60396", - "libelleAcheminement": "MERY LA BATAILLE", - "nomCommune": "MERY LA BATAILLE" + "codePostal": "60120", + "codeCommune": "60353", + "libelleAcheminement": "LAVACQUERIE", + "nomCommune": "LAVACQUERIE" }, { - "codePostal": "60530", - "codeCommune": "60398", - "libelleAcheminement": "LE MESNIL EN THELLE", - "nomCommune": "LE MESNIL EN THELLE" + "codePostal": "60210", + "codeCommune": "60354", + "libelleAcheminement": "LAVERRIERE", + "nomCommune": "LAVERRIERE" }, { - "codePostal": "60120", - "codeCommune": "60399", - "libelleAcheminement": "LE MESNIL ST FIRMIN", - "nomCommune": "LE MESNIL ST FIRMIN" + "codePostal": "60510", + "codeCommune": "60355", + "libelleAcheminement": "LAVERSINES", + "nomCommune": "LAVERSINES" }, { - "codePostal": "60400", - "codeCommune": "60410", - "libelleAcheminement": "MONDESCOURT", - "nomCommune": "MONDESCOURT" + "codePostal": "60240", + "codeCommune": "60356", + "libelleAcheminement": "LAVILLETERTRE", + "nomCommune": "LAVILLETERTRE" + }, + { + "codePostal": "60800", + "codeCommune": "60358", + "libelleAcheminement": "LEVIGNEN", + "nomCommune": "LEVIGNEN" }, { "codePostal": "60240", - "codeCommune": "60412", - "libelleAcheminement": "MONTAGNY EN VEXIN", - "nomCommune": "MONTAGNY EN VEXIN" + "codeCommune": "60361", + "libelleAcheminement": "LIANCOURT ST PIERRE", + "nomCommune": "LIANCOURT ST PIERRE" }, { - "codePostal": "60190", - "codeCommune": "60424", - "libelleAcheminement": "MONTMARTIN", - "nomCommune": "MONTMARTIN" + "codePostal": "60240", + "codeCommune": "60367", + "libelleAcheminement": "LOCONVILLE", + "nomCommune": "LOCONVILLE" }, { - "codePostal": "60127", - "codeCommune": "60430", - "libelleAcheminement": "MORIENVAL", - "nomCommune": "MORIENVAL" + "codePostal": "60110", + "codeCommune": "60370", + "libelleAcheminement": "LORMAISON", + "nomCommune": "LORMAISON" + }, + { + "codePostal": "60360", + "codeCommune": "60372", + "libelleAcheminement": "LUCHY", + "nomCommune": "LUCHY" + }, + { + "codePostal": "60490", + "codeCommune": "60379", + "libelleAcheminement": "MAREUIL LA MOTTE", + "nomCommune": "MAREUIL LA MOTTE" + }, + { + "codePostal": "60890", + "codeCommune": "60380", + "libelleAcheminement": "MAREUIL SUR OURCQ", + "nomCommune": "MAREUIL SUR OURCQ" + }, + { + "codePostal": "60490", + "codeCommune": "60383", + "libelleAcheminement": "MARGNY SUR MATZ", + "nomCommune": "MARGNY SUR MATZ" + }, + { + "codePostal": "60112", + "codeCommune": "60388", + "libelleAcheminement": "MARTINCOURT", + "nomCommune": "MARTINCOURT" + }, + { + "codePostal": "60150", + "codeCommune": "60392", + "libelleAcheminement": "MELICOCQ", + "nomCommune": "MELICOCQ" + }, + { + "codePostal": "60112", + "codeCommune": "60403", + "libelleAcheminement": "MILLY SUR THERAIN", + "nomCommune": "MILLY SUR THERAIN" + }, + { + "codePostal": "60220", + "codeCommune": "60405", + "libelleAcheminement": "MOLIENS", + "nomCommune": "MOLIENS" + }, + { + "codePostal": "60240", + "codeCommune": "60420", + "libelleAcheminement": "MONTJAVOULT", + "nomCommune": "MONTJAVOULT" + }, + { + "codePostal": "60650", + "codeCommune": "60428", + "libelleAcheminement": "LE MONT ST ADRIEN", + "nomCommune": "LE MONT ST ADRIEN" + }, + { + "codePostal": "60120", + "codeCommune": "60436", + "libelleAcheminement": "MORY MONTCRUX", + "nomCommune": "MORY MONTCRUX" + }, + { + "codePostal": "60190", + "codeCommune": "60440", + "libelleAcheminement": "MOYENNEVILLE", + "nomCommune": "MOYENNEVILLE" }, { "codePostal": "60640", @@ -18654,16 +18582,22 @@ "nomCommune": "MUIRANCOURT" }, { - "codePostal": "60320", - "codeCommune": "60447", - "libelleAcheminement": "NERY", - "nomCommune": "NERY" + "codePostal": "60890", + "codeCommune": "60448", + "libelleAcheminement": "NEUFCHELLES", + "nomCommune": "NEUFCHELLES" }, { - "codePostal": "60510", - "codeCommune": "60454", - "libelleAcheminement": "LA NEUVILLE EN HEZ", - "nomCommune": "LA NEUVILLE EN HEZ" + "codePostal": "60290", + "codeCommune": "60451", + "libelleAcheminement": "NEUILLY SOUS CLERMONT", + "nomCommune": "NEUILLY SOUS CLERMONT" + }, + { + "codePostal": "60190", + "codeCommune": "60456", + "libelleAcheminement": "LA NEUVILLE ROY", + "nomCommune": "LA NEUVILLE ROY" }, { "codePostal": "60480", @@ -18689,24 +18623,30 @@ "libelleAcheminement": "LA NEUVILLE VAULT", "nomCommune": "LA NEUVILLE VAULT" }, - { - "codePostal": "60840", - "codeCommune": "60464", - "libelleAcheminement": "NOINTEL", - "nomCommune": "NOINTEL" - }, - { - "codePostal": "60480", - "codeCommune": "60465", - "libelleAcheminement": "NOIREMONT", - "nomCommune": "NOIREMONT" - }, { "codePostal": "60130", "codeCommune": "60466", "libelleAcheminement": "NOROY", "nomCommune": "NOROY" }, + { + "codePostal": "60130", + "codeCommune": "60468", + "libelleAcheminement": "NOURARD LE FRANC", + "nomCommune": "NOURARD LE FRANC" + }, + { + "codePostal": "60400", + "codeCommune": "60471", + "libelleAcheminement": "NOYON", + "nomCommune": "NOYON" + }, + { + "codePostal": "60220", + "codeCommune": "60476", + "libelleAcheminement": "OMECOURT", + "nomCommune": "OMECOURT" + }, { "codePostal": "60650", "codeCommune": "60477", @@ -18714,16 +18654,10 @@ "nomCommune": "ONS EN BRAY" }, { - "codePostal": "60620", - "codeCommune": "60478", - "libelleAcheminement": "ORMOY LE DAVIEN", - "nomCommune": "ORMOY LE DAVIEN" - }, - { - "codePostal": "60480", - "codeCommune": "60485", - "libelleAcheminement": "OURSEL MAISON", - "nomCommune": "OURSEL MAISON" + "codePostal": "60560", + "codeCommune": "60482", + "libelleAcheminement": "ORRY LA VILLE", + "nomCommune": "ORRY LA VILLE" }, { "codePostal": "60240", @@ -18738,118 +18672,106 @@ "nomCommune": "PEROY LES GOMBRIES" }, { - "codePostal": "60112", - "codeCommune": "60490", - "libelleAcheminement": "PIERREFITTE EN BEAUVAISIS", - "nomCommune": "PIERREFITTE EN BEAUVAISIS" + "codePostal": "60350", + "codeCommune": "60491", + "libelleAcheminement": "PIERREFONDS", + "nomCommune": "PIERREFONDS" }, { - "codePostal": "60120", - "codeCommune": "60496", - "libelleAcheminement": "PLAINVILLE", - "nomCommune": "PLAINVILLE" + "codePostal": "60128", + "codeCommune": "60494", + "libelleAcheminement": "PLAILLY", + "nomCommune": "PLAILLY" }, { "codePostal": "60130", - "codeCommune": "60498", - "libelleAcheminement": "LE PLESSIER SUR ST JUST", - "nomCommune": "LE PLESSIER SUR ST JUST" - }, - { - "codePostal": "60150", - "codeCommune": "60501", - "libelleAcheminement": "LE PLESSIS BRION", - "nomCommune": "LE PLESSIS BRION" + "codeCommune": "60497", + "libelleAcheminement": "LE PLESSIER SUR BULLES", + "nomCommune": "LE PLESSIER SUR BULLES" }, { - "codePostal": "60390", - "codeCommune": "60510", - "libelleAcheminement": "PORCHEUX", - "nomCommune": "PORCHEUX" + "codePostal": "60520", + "codeCommune": "60505", + "libelleAcheminement": "PONTARME", + "nomCommune": "PONTARME" }, { - "codePostal": "60540", - "codeCommune": "60517", - "libelleAcheminement": "PUISEUX LE HAUBERGER", - "nomCommune": "PUISEUX LE HAUBERGER" + "codePostal": "60360", + "codeCommune": "60514", + "libelleAcheminement": "PREVILLERS", + "nomCommune": "PREVILLERS" }, { - "codePostal": "60480", - "codeCommune": "60520", - "libelleAcheminement": "LE QUESNEL AUBRY", - "nomCommune": "LE QUESNEL AUBRY" + "codePostal": "60190", + "codeCommune": "60515", + "libelleAcheminement": "PRONLEROY", + "nomCommune": "PRONLEROY" }, { - "codePostal": "60810", - "codeCommune": "60525", - "libelleAcheminement": "RARAY", - "nomCommune": "RARAY" + "codePostal": "60240", + "codeCommune": "60528", + "libelleAcheminement": "REILLY", + "nomCommune": "REILLY" }, { - "codePostal": "60153", - "codeCommune": "60534", - "libelleAcheminement": "RETHONDES", - "nomCommune": "RETHONDES" + "codePostal": "60600", + "codeCommune": "60529", + "libelleAcheminement": "REMECOURT", + "nomCommune": "REMECOURT" }, { - "codePostal": "60490", - "codeCommune": "60538", - "libelleAcheminement": "RICQUEBOURG", - "nomCommune": "RICQUEBOURG" + "codePostal": "60126", + "codeCommune": "60540", + "libelleAcheminement": "RIVECOURT", + "nomCommune": "RIVECOURT" }, { - "codePostal": "60870", - "codeCommune": "60539", - "libelleAcheminement": "RIEUX", - "nomCommune": "RIEUX" + "codePostal": "60220", + "codeCommune": "60545", + "libelleAcheminement": "ROMESCAMPS", + "nomCommune": "ROMESCAMPS" }, { - "codePostal": "60360", - "codeCommune": "60549", - "libelleAcheminement": "ROTANGY", - "nomCommune": "ROTANGY" + "codePostal": "60120", + "codeCommune": "60555", + "libelleAcheminement": "ROUVROY LES MERLES", + "nomCommune": "ROUVROY LES MERLES" }, { - "codePostal": "60620", - "codeCommune": "60554", - "libelleAcheminement": "ROUVRES EN MULTIEN", - "nomCommune": "ROUVRES EN MULTIEN" + "codePostal": "60480", + "codeCommune": "60565", + "libelleAcheminement": "ST ANDRE FARIVILLERS", + "nomCommune": "ST ANDRE FARIVILLERS" }, { - "codePostal": "60190", - "codeCommune": "60563", - "libelleAcheminement": "SACY LE PETIT", - "nomCommune": "SACY LE PETIT" + "codePostal": "60370", + "codeCommune": "60574", + "libelleAcheminement": "ST FELIX", + "nomCommune": "ST FELIX" }, { "codePostal": "60350", - "codeCommune": "60572", - "libelleAcheminement": "ST ETIENNE ROILAYE", - "nomCommune": "ST ETIENNE ROILAYE" - }, - { - "codePostal": "60480", - "codeCommune": "60573", - "libelleAcheminement": "STE EUSOYE", - "nomCommune": "STE EUSOYE" + "codeCommune": "60579", + "libelleAcheminement": "ST JEAN AUX BOIS", + "nomCommune": "ST JEAN AUX BOIS" }, { - "codePostal": "60650", - "codeCommune": "60576", - "libelleAcheminement": "ST GERMAIN LA POTERIE", - "nomCommune": "ST GERMAIN LA POTERIE" + "codePostal": "60340", + "codeCommune": "60584", + "libelleAcheminement": "ST LEU D ESSERENT", + "nomCommune": "ST LEU D ESSERENT" }, { - "codePostal": "60850", - "codeCommune": "60577", - "libelleAcheminement": "ST GERMER DE FLY", - "nomCommune": "ST GERMER DE FLY" + "codePostal": "60000", + "codeCommune": "60586", + "libelleAcheminement": "ST MARTIN LE NOEUD", + "nomCommune": "ST MARTIN LE NOEUD" }, { - "codePostal": "60350", - "codeCommune": "60579", - "libelleAcheminement": "ST JEAN AUX BOIS", - "nomCommune": "ST JEAN AUX BOIS" + "codePostal": "60210", + "codeCommune": "60588", + "libelleAcheminement": "ST MAUR", + "nomCommune": "ST MAUR" }, { "codePostal": "60740", @@ -18858,16 +18780,10 @@ "nomCommune": "ST MAXIMIN" }, { - "codePostal": "60660", - "codeCommune": "60601", - "libelleAcheminement": "ST VAAST LES MELLO", - "nomCommune": "ST VAAST LES MELLO" - }, - { - "codePostal": "60400", - "codeCommune": "60603", - "libelleAcheminement": "SALENCY", - "nomCommune": "SALENCY" + "codePostal": "60130", + "codeCommune": "60595", + "libelleAcheminement": "ST REMY EN L EAU", + "nomCommune": "ST REMY EN L EAU" }, { "codePostal": "60210", @@ -18876,22 +18792,16 @@ "nomCommune": "SARCUS" }, { - "codePostal": "60650", - "codeCommune": "60609", - "libelleAcheminement": "SAVIGNIES", - "nomCommune": "SAVIGNIES" - }, - { - "codePostal": "60310", - "codeCommune": "60621", - "libelleAcheminement": "SOLENTE", - "nomCommune": "SOLENTE" + "codePostal": "60360", + "codeCommune": "60608", + "libelleAcheminement": "LE SAULCHOY", + "nomCommune": "LE SAULCHOY" }, { - "codePostal": "60400", - "codeCommune": "60625", - "libelleAcheminement": "SUZOY", - "nomCommune": "SUZOY" + "codePostal": "60430", + "codeCommune": "60620", + "libelleAcheminement": "SILLY TILLARD", + "nomCommune": "SILLY TILLARD" }, { "codePostal": "60240", @@ -18900,58 +18810,52 @@ "nomCommune": "THIBIVILLERS" }, { - "codePostal": "60210", - "codeCommune": "60633", - "libelleAcheminement": "THIEULOY ST ANTOINE", - "nomCommune": "THIEULOY ST ANTOINE" - }, - { - "codePostal": "60240", - "codeCommune": "60640", - "libelleAcheminement": "TOURLY", - "nomCommune": "TOURLY" + "codePostal": "60170", + "codeCommune": "60641", + "libelleAcheminement": "TRACY LE MONT", + "nomCommune": "TRACY LE MONT" }, { - "codePostal": "60420", - "codeCommune": "60643", - "libelleAcheminement": "TRICOT", - "nomCommune": "TRICOT" + "codePostal": "60800", + "codeCommune": "60650", + "libelleAcheminement": "TRUMILLY", + "nomCommune": "TRUMILLY" }, { - "codePostal": "60130", - "codeCommune": "60653", - "libelleAcheminement": "VALESCOURT", - "nomCommune": "VALESCOURT" + "codePostal": "60790", + "codeCommune": "60652", + "libelleAcheminement": "VALDAMPIERRE", + "nomCommune": "VALDAMPIERRE" }, { - "codePostal": "60400", - "codeCommune": "60655", - "libelleAcheminement": "VARESNES", - "nomCommune": "VARESNES" + "codePostal": "60490", + "codeCommune": "60654", + "libelleAcheminement": "VANDELICOURT", + "nomCommune": "VANDELICOURT" }, { - "codePostal": "60117", - "codeCommune": "60658", - "libelleAcheminement": "VAUCIENNES", - "nomCommune": "VAUCIENNES" + "codePostal": "60890", + "codeCommune": "60656", + "libelleAcheminement": "VARINFROY", + "nomCommune": "VARINFROY" }, { - "codePostal": "60510", - "codeCommune": "60663", - "libelleAcheminement": "VELENNES", - "nomCommune": "VELENNES" + "codePostal": "60240", + "codeCommune": "60659", + "libelleAcheminement": "VAUDANCOURT", + "nomCommune": "VAUDANCOURT" }, { - "codePostal": "60280", - "codeCommune": "60665", - "libelleAcheminement": "VENETTE", - "nomCommune": "VENETTE" + "codePostal": "60112", + "codeCommune": "60668", + "libelleAcheminement": "VERDEREL LES SAUQUEUSE", + "nomCommune": "VERDEREL LES SAUQUEUSE" }, { - "codePostal": "60890", - "codeCommune": "60679", - "libelleAcheminement": "LA VILLENEUVE SOUS THURY", - "nomCommune": "LA VILLENEUVE SOUS THURY" + "codePostal": "60112", + "codeCommune": "60668", + "libelleAcheminement": "VERDEREL LES SAUQUEUSE", + "nomCommune": "VERDEREL LES SAUQUEUSE" }, { "codePostal": "60410", @@ -18960,76 +18864,106 @@ "nomCommune": "VILLENEUVE SUR VERBERIE" }, { - "codePostal": "60620", - "codeCommune": "60683", - "libelleAcheminement": "VILLERS ST GENEST", - "nomCommune": "VILLERS ST GENEST" + "codePostal": "60380", + "codeCommune": "60691", + "libelleAcheminement": "VILLERS VERMONT", + "nomCommune": "VILLERS VERMONT" }, { - "codePostal": "60112", - "codeCommune": "60697", - "libelleAcheminement": "VROCOURT", - "nomCommune": "VROCOURT" + "codePostal": "60500", + "codeCommune": "60695", + "libelleAcheminement": "VINEUIL ST FIRMIN", + "nomCommune": "VINEUIL ST FIRMIN" }, { - "codePostal": "60000", - "codeCommune": "60703", - "libelleAcheminement": "AUX MARAIS", - "nomCommune": "AUX MARAIS" + "codePostal": "60430", + "codeCommune": "60700", + "libelleAcheminement": "WARLUIS", + "nomCommune": "WARLUIS" }, { - "codePostal": "61200", - "codeCommune": "61006", - "libelleAcheminement": "ARGENTAN", - "nomCommune": "ARGENTAN" + "codePostal": "61000", + "codeCommune": "61001", + "libelleAcheminement": "ALENCON", + "nomCommune": "ALENCON" }, { - "codePostal": "61270", - "codeCommune": "61008", - "libelleAcheminement": "AUBE", - "nomCommune": "AUBE" + "codePostal": "61130", + "codeCommune": "61005", + "libelleAcheminement": "APPENAI SOUS BELLEME", + "nomCommune": "APPENAI SOUS BELLEME" }, { - "codePostal": "61200", - "codeCommune": "61014", - "libelleAcheminement": "AUNOU LE FAUCON", - "nomCommune": "AUNOU LE FAUCON" + "codePostal": "61100", + "codeCommune": "61007", + "libelleAcheminement": "ATHIS VAL DE ROUVRE", + "nomCommune": "ATHIS VAL DE ROUVRE" + }, + { + "codePostal": "61430", + "codeCommune": "61007", + "libelleAcheminement": "ATHIS VAL DE ROUVRE", + "nomCommune": "ATHIS VAL DE ROUVRE" }, { "codePostal": "61500", - "codeCommune": "61036", - "libelleAcheminement": "BELFONDS", - "nomCommune": "BELFONDS" + "codeCommune": "61015", + "libelleAcheminement": "AUNOU SUR ORNE", + "nomCommune": "AUNOU SUR ORNE" }, { - "codePostal": "61360", - "codeCommune": "61037", - "libelleAcheminement": "BELLAVILLIERS", - "nomCommune": "BELLAVILLIERS" + "codePostal": "61190", + "codeCommune": "61034", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "61130", - "codeCommune": "61041", - "libelleAcheminement": "BELLOU LE TRICHARD", - "nomCommune": "BELLOU LE TRICHARD" + "codePostal": "61220", + "codeCommune": "61040", + "libelleAcheminement": "BELLOU EN HOULME", + "nomCommune": "BELLOU EN HOULME" }, { - "codePostal": "61170", - "codeCommune": "61067", - "libelleAcheminement": "BURES", - "nomCommune": "BURES" + "codePostal": "61500", + "codeCommune": "61056", + "libelleAcheminement": "LE BOUILLON", + "nomCommune": "LE BOUILLON" }, { - "codePostal": "61100", - "codeCommune": "61070", - "libelleAcheminement": "CALIGNY", - "nomCommune": "CALIGNY" + "codePostal": "61500", + "codeCommune": "61068", + "libelleAcheminement": "BURSARD", + "nomCommune": "BURSARD" }, { - "codePostal": "61260", - "codeCommune": "61079", - "libelleAcheminement": "CETON", - "nomCommune": "CETON" + "codePostal": "61500", + "codeCommune": "61076", + "libelleAcheminement": "LE CERCUEIL", + "nomCommune": "LE CERCUEIL" + }, + { + "codePostal": "61500", + "codeCommune": "61081", + "libelleAcheminement": "CHAILLOUE", + "nomCommune": "CHAILLOUE" + }, + { + "codePostal": "61320", + "codeCommune": "61085", + "libelleAcheminement": "LE CHAMP DE LA PIERRE", + "nomCommune": "LE CHAMP DE LA PIERRE" + }, + { + "codePostal": "61300", + "codeCommune": "61092", + "libelleAcheminement": "CHANDAI", + "nomCommune": "CHANDAI" + }, + { + "codePostal": "61140", + "codeCommune": "61096", + "libelleAcheminement": "RIVES D ANDAINE", + "nomCommune": "RIVES D ANDAINE" }, { "codePostal": "61500", @@ -19037,12 +18971,6 @@ "libelleAcheminement": "LA CHAPELLE PRES SEES", "nomCommune": "LA CHAPELLE PRES SEES" }, - { - "codePostal": "61570", - "codeCommune": "61101", - "libelleAcheminement": "LE CHATEAU D ALMENECHES", - "nomCommune": "LE CHATEAU D ALMENECHES" - }, { "codePostal": "61450", "codeCommune": "61102", @@ -19055,6 +18983,42 @@ "libelleAcheminement": "LA CHAUX", "nomCommune": "LA CHAUX" }, + { + "codePostal": "61320", + "codeCommune": "61107", + "libelleAcheminement": "CIRAL", + "nomCommune": "CIRAL" + }, + { + "codePostal": "61250", + "codeCommune": "61111", + "libelleAcheminement": "COLOMBIERS", + "nomCommune": "COLOMBIERS" + }, + { + "codePostal": "61250", + "codeCommune": "61117", + "libelleAcheminement": "CONDE SUR SARTHE", + "nomCommune": "CONDE SUR SARTHE" + }, + { + "codePostal": "61220", + "codeCommune": "61124", + "libelleAcheminement": "LA COULONCHE", + "nomCommune": "LA COULONCHE" + }, + { + "codePostal": "61390", + "codeCommune": "61133", + "libelleAcheminement": "COURTOMER", + "nomCommune": "COURTOMER" + }, + { + "codePostal": "61130", + "codeCommune": "61142", + "libelleAcheminement": "DAME MARIE", + "nomCommune": "DAME MARIE" + }, { "codePostal": "61700", "codeCommune": "61145", @@ -19067,6 +19031,12 @@ "libelleAcheminement": "DOMPIERRE", "nomCommune": "DOMPIERRE" }, + { + "codePostal": "61270", + "codeCommune": "61151", + "libelleAcheminement": "ECORCEI", + "nomCommune": "ECORCEI" + }, { "codePostal": "61150", "codeCommune": "61153", @@ -19086,94 +19056,58 @@ "nomCommune": "FEINGS" }, { - "codePostal": "61470", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" - }, - { - "codePostal": "61550", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" - }, - { - "codePostal": "61550", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" + "codePostal": "61380", + "codeCommune": "61162", + "libelleAcheminement": "LA FERRIERE AU DOYEN", + "nomCommune": "LA FERRIERE AU DOYEN" }, { - "codePostal": "61550", + "codePostal": "61470", "codeCommune": "61167", "libelleAcheminement": "LA FERTE EN OUCHE", "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "61410", - "codeCommune": "61168", - "libelleAcheminement": "LA FERTE MACE", - "nomCommune": "LA FERTE MACE" - }, - { - "codePostal": "61570", - "codeCommune": "61176", - "libelleAcheminement": "FRANCHEVILLE", - "nomCommune": "FRANCHEVILLE" - }, - { - "codePostal": "61150", - "codeCommune": "61194", - "libelleAcheminement": "MONTS SUR ORNE", - "nomCommune": "MONTS SUR ORNE" - }, - { - "codePostal": "61150", - "codeCommune": "61194", - "libelleAcheminement": "MONTS SUR ORNE", - "nomCommune": "MONTS SUR ORNE" - }, - { - "codePostal": "61130", - "codeCommune": "61196", - "libelleAcheminement": "BELFORET EN PERCHE", - "nomCommune": "BELFORET EN PERCHE" + "codePostal": "61420", + "codeCommune": "61182", + "libelleAcheminement": "GANDELAIN", + "nomCommune": "GANDELAIN" }, { - "codePostal": "61130", - "codeCommune": "61196", - "libelleAcheminement": "BELFORET EN PERCHE", - "nomCommune": "BELFORET EN PERCHE" + "codePostal": "61270", + "codeCommune": "61187", + "libelleAcheminement": "LES GENETTES", + "nomCommune": "LES GENETTES" }, { - "codePostal": "61290", - "codeCommune": "61206", - "libelleAcheminement": "L HOME CHAMONDOT", - "nomCommune": "L HOME CHAMONDOT" + "codePostal": "61240", + "codeCommune": "61188", + "libelleAcheminement": "LA GENEVRAIE", + "nomCommune": "LA GENEVRAIE" }, { - "codePostal": "61190", - "codeCommune": "61208", - "libelleAcheminement": "IRAI", - "nomCommune": "IRAI" + "codePostal": "61600", + "codeCommune": "61195", + "libelleAcheminement": "LE GRAIS", + "nomCommune": "LE GRAIS" }, { - "codePostal": "61170", - "codeCommune": "61215", - "libelleAcheminement": "LALEU", - "nomCommune": "LALEU" + "codePostal": "61160", + "codeCommune": "61197", + "libelleAcheminement": "GUEPREI", + "nomCommune": "GUEPREI" }, { - "codePostal": "61210", - "codeCommune": "61217", - "libelleAcheminement": "LA LANDE DE LOUGE", - "nomCommune": "LA LANDE DE LOUGE" + "codePostal": "61120", + "codeCommune": "61198", + "libelleAcheminement": "GUERQUESALLES", + "nomCommune": "GUERQUESALLES" }, { - "codePostal": "61100", - "codeCommune": "61218", - "libelleAcheminement": "LA LANDE PATRY", - "nomCommune": "LA LANDE PATRY" + "codePostal": "61300", + "codeCommune": "61214", + "libelleAcheminement": "L AIGLE", + "nomCommune": "L AIGLE" }, { "codePostal": "61100", @@ -19182,34 +19116,34 @@ "nomCommune": "LA LANDE ST SIMEON" }, { - "codePostal": "61290", - "codeCommune": "61230", - "libelleAcheminement": "LONGNY LES VILLAGES", - "nomCommune": "LONGNY LES VILLAGES" + "codePostal": "61100", + "codeCommune": "61221", + "libelleAcheminement": "LANDIGOU", + "nomCommune": "LANDIGOU" }, { - "codePostal": "61700", - "codeCommune": "61232", - "libelleAcheminement": "LONLAY L ABBAYE", - "nomCommune": "LONLAY L ABBAYE" + "codePostal": "61400", + "codeCommune": "61229", + "libelleAcheminement": "LOISAIL", + "nomCommune": "LOISAIL" }, { - "codePostal": "61600", - "codeCommune": "61233", - "libelleAcheminement": "LONLAY LE TESSON", - "nomCommune": "LONLAY LE TESSON" + "codePostal": "61250", + "codeCommune": "61234", + "libelleAcheminement": "LONRAI", + "nomCommune": "LONRAI" }, { - "codePostal": "61170", - "codeCommune": "61251", - "libelleAcheminement": "MARCHEMAISONS", - "nomCommune": "MARCHEMAISONS" + "codePostal": "61290", + "codeCommune": "61242", + "libelleAcheminement": "LE MAGE", + "nomCommune": "LE MAGE" }, { - "codePostal": "61570", - "codeCommune": "61256", - "libelleAcheminement": "MEDAVY", - "nomCommune": "MEDAVY" + "codePostal": "61350", + "codeCommune": "61248", + "libelleAcheminement": "MANTILLY", + "nomCommune": "MANTILLY" }, { "codePostal": "61220", @@ -19223,29 +19157,17 @@ "libelleAcheminement": "LE MENIL BROUT", "nomCommune": "LE MENIL BROUT" }, - { - "codePostal": "61250", - "codeCommune": "61263", - "libelleAcheminement": "MENIL ERREUX", - "nomCommune": "MENIL ERREUX" - }, - { - "codePostal": "61240", - "codeCommune": "61264", - "libelleAcheminement": "MENIL FROGER", - "nomCommune": "MENIL FROGER" - }, { "codePostal": "61210", - "codeCommune": "61267", - "libelleAcheminement": "MENIL HERMEI", - "nomCommune": "MENIL HERMEI" + "codeCommune": "61265", + "libelleAcheminement": "MENIL GONDOUIN", + "nomCommune": "MENIL GONDOUIN" }, { - "codePostal": "61320", - "codeCommune": "61271", - "libelleAcheminement": "LE MENIL SCELLEUR", - "nomCommune": "LE MENIL SCELLEUR" + "codePostal": "61210", + "codeCommune": "61273", + "libelleAcheminement": "MENIL VIN", + "nomCommune": "MENIL VIN" }, { "codePostal": "61290", @@ -19254,16 +19176,16 @@ "nomCommune": "LES MENUS" }, { - "codePostal": "61250", - "codeCommune": "61279", - "libelleAcheminement": "MIEUXCE", - "nomCommune": "MIEUXCE" + "codePostal": "61210", + "codeCommune": "61290", + "libelleAcheminement": "MONTREUIL AU HOULME", + "nomCommune": "MONTREUIL AU HOULME" }, { - "codePostal": "61160", - "codeCommune": "61291", - "libelleAcheminement": "MONTREUIL LA CAMBE", - "nomCommune": "MONTREUIL LA CAMBE" + "codePostal": "61800", + "codeCommune": "61292", + "libelleAcheminement": "MONTSECRET CLAIREFOUGERE", + "nomCommune": "MONTSECRET CLAIREFOUGERE" }, { "codePostal": "61400", @@ -19277,6 +19199,18 @@ "libelleAcheminement": "MORTREE", "nomCommune": "MORTREE" }, + { + "codePostal": "61600", + "codeCommune": "61295", + "libelleAcheminement": "LA MOTTE FOUQUET", + "nomCommune": "LA MOTTE FOUQUET" + }, + { + "codePostal": "61200", + "codeCommune": "61298", + "libelleAcheminement": "MOULINS SUR ORNE", + "nomCommune": "MOULINS SUR ORNE" + }, { "codePostal": "61500", "codeCommune": "61301", @@ -19284,16 +19218,10 @@ "nomCommune": "NEAUPHE SOUS ESSAI" }, { - "codePostal": "61160", - "codeCommune": "61302", - "libelleAcheminement": "NEAUPHE SUR DIVE", - "nomCommune": "NEAUPHE SUR DIVE" - }, - { - "codePostal": "61340", - "codeCommune": "61309", - "libelleAcheminement": "PERCHE EN NOCE", - "nomCommune": "PERCHE EN NOCE" + "codePostal": "61250", + "codeCommune": "61304", + "libelleAcheminement": "NEUILLY LE BISSON", + "nomCommune": "NEUILLY LE BISSON" }, { "codePostal": "61340", @@ -19302,28 +19230,10 @@ "nomCommune": "PERCHE EN NOCE" }, { - "codePostal": "61240", - "codeCommune": "61310", - "libelleAcheminement": "NONANT LE PIN", - "nomCommune": "NONANT LE PIN" - }, - { - "codePostal": "61350", - "codeCommune": "61324", - "libelleAcheminement": "PASSAIS VILLAGES", - "nomCommune": "PASSAIS VILLAGES" - }, - { - "codePostal": "61350", - "codeCommune": "61324", - "libelleAcheminement": "PASSAIS VILLAGES", - "nomCommune": "PASSAIS VILLAGES" - }, - { - "codePostal": "61350", - "codeCommune": "61324", - "libelleAcheminement": "PASSAIS VILLAGES", - "nomCommune": "PASSAIS VILLAGES" + "codePostal": "61310", + "codeCommune": "61328", + "libelleAcheminement": "LE PIN AU HARAS", + "nomCommune": "LE PIN AU HARAS" }, { "codePostal": "61400", @@ -19331,6 +19241,12 @@ "libelleAcheminement": "LE PIN LA GARENNE", "nomCommune": "LE PIN LA GARENNE" }, + { + "codePostal": "61130", + "codeCommune": "61336", + "libelleAcheminement": "POUVRAI", + "nomCommune": "POUVRAI" + }, { "codePostal": "61210", "codeCommune": "61339", @@ -19344,10 +19260,10 @@ "nomCommune": "ECOUVES" }, { - "codePostal": "61120", - "codeCommune": "61346", - "libelleAcheminement": "LE RENOUARD", - "nomCommune": "LE RENOUARD" + "codePostal": "61270", + "codeCommune": "61342", + "libelleAcheminement": "RAI", + "nomCommune": "RAI" }, { "codePostal": "61400", @@ -19356,106 +19272,118 @@ "nomCommune": "REVEILLON" }, { - "codePostal": "61420", - "codeCommune": "61350", - "libelleAcheminement": "LA ROCHE MABILE", - "nomCommune": "LA ROCHE MABILE" + "codePostal": "61170", + "codeCommune": "61365", + "libelleAcheminement": "ST AUBIN D APPENAI", + "nomCommune": "ST AUBIN D APPENAI" }, { - "codePostal": "61120", - "codeCommune": "61351", - "libelleAcheminement": "ROIVILLE", - "nomCommune": "ROIVILLE" + "codePostal": "61800", + "codeCommune": "61374", + "libelleAcheminement": "ST CHRISTOPHE DE CHAULIEU", + "nomCommune": "ST CHRISTOPHE DE CHAULIEU" }, { - "codePostal": "61200", - "codeCommune": "61358", - "libelleAcheminement": "SAI", - "nomCommune": "SAI" + "codePostal": "61570", + "codeCommune": "61375", + "libelleAcheminement": "BOISCHAMPRE", + "nomCommune": "BOISCHAMPRE" }, { - "codePostal": "61440", - "codeCommune": "61362", - "libelleAcheminement": "ST ANDRE DE MESSEI", - "nomCommune": "ST ANDRE DE MESSEI" + "codePostal": "61130", + "codeCommune": "61388", + "libelleAcheminement": "ST FULGENT DES ORMES", + "nomCommune": "ST FULGENT DES ORMES" }, { - "codePostal": "61170", - "codeCommune": "61365", - "libelleAcheminement": "ST AUBIN D APPENAI", - "nomCommune": "ST AUBIN D APPENAI" + "codePostal": "61100", + "codeCommune": "61391", + "libelleAcheminement": "ST GEORGES DES GROSEILLERS", + "nomCommune": "ST GEORGES DES GROSEILLERS" }, { - "codePostal": "61700", - "codeCommune": "61369", - "libelleAcheminement": "ST BOMER LES FORGES", - "nomCommune": "ST BOMER LES FORGES" + "codePostal": "61240", + "codeCommune": "61393", + "libelleAcheminement": "ST GERMAIN DE CLAIREFEUILLE", + "nomCommune": "ST GERMAIN DE CLAIREFEUILLE" + }, + { + "codePostal": "61160", + "codeCommune": "61399", + "libelleAcheminement": "ST GERVAIS DES SABLONS", + "nomCommune": "ST GERVAIS DES SABLONS" }, { "codePostal": "61700", - "codeCommune": "61370", - "libelleAcheminement": "ST BRICE", - "nomCommune": "ST BRICE" + "codeCommune": "61401", + "libelleAcheminement": "ST GILLES DES MARAIS", + "nomCommune": "ST GILLES DES MARAIS" }, { - "codePostal": "61370", - "codeCommune": "61389", - "libelleAcheminement": "STE GAUBURGE STE COLOMBE", - "nomCommune": "STE GAUBURGE STE COLOMBE" + "codePostal": "61170", + "codeCommune": "61412", + "libelleAcheminement": "ST JULIEN SUR SARTHE", + "nomCommune": "ST JULIEN SUR SARTHE" }, { - "codePostal": "61000", - "codeCommune": "61397", - "libelleAcheminement": "ST GERMAIN DU CORBEIS", - "nomCommune": "ST GERMAIN DU CORBEIS" + "codePostal": "61160", + "codeCommune": "61413", + "libelleAcheminement": "ST LAMBERT SUR DIVE", + "nomCommune": "ST LAMBERT SUR DIVE" }, { - "codePostal": "61340", - "codeCommune": "61405", - "libelleAcheminement": "ST HILAIRE SUR ERRE", - "nomCommune": "ST HILAIRE SUR ERRE" + "codePostal": "61390", + "codeCommune": "61416", + "libelleAcheminement": "ST LEONARD DES PARCS", + "nomCommune": "ST LEONARD DES PARCS" }, { - "codePostal": "61430", - "codeCommune": "61407", - "libelleAcheminement": "STE HONORINE LA CHARDONNE", - "nomCommune": "STE HONORINE LA CHARDONNE" + "codePostal": "61320", + "codeCommune": "61420", + "libelleAcheminement": "STE MARIE LA ROBERT", + "nomCommune": "STE MARIE LA ROBERT" }, { - "codePostal": "61210", - "codeCommune": "61408", - "libelleAcheminement": "STE HONORINE LA GUILLAUME", - "nomCommune": "STE HONORINE LA GUILLAUME" + "codePostal": "61350", + "codeCommune": "61421", + "libelleAcheminement": "ST MARS D EGRENNE", + "nomCommune": "ST MARS D EGRENNE" }, { - "codePostal": "61400", - "codeCommune": "61418", - "libelleAcheminement": "ST MARD DE RENO", - "nomCommune": "ST MARD DE RENO" + "codePostal": "61300", + "codeCommune": "61423", + "libelleAcheminement": "ST MARTIN D ECUBLEI", + "nomCommune": "ST MARTIN D ECUBLEI" }, { - "codePostal": "61320", - "codeCommune": "61427", - "libelleAcheminement": "ST MARTIN L AIGUILLON", - "nomCommune": "ST MARTIN L AIGUILLON" + "codePostal": "61380", + "codeCommune": "61425", + "libelleAcheminement": "ST MARTIN DES PEZERITS", + "nomCommune": "ST MARTIN DES PEZERITS" }, { - "codePostal": "61190", - "codeCommune": "61429", - "libelleAcheminement": "CHARENCEY", - "nomCommune": "CHARENCEY" + "codePostal": "61130", + "codeCommune": "61426", + "libelleAcheminement": "ST MARTIN DU VIEUX BELLEME", + "nomCommune": "ST MARTIN DU VIEUX BELLEME" }, { - "codePostal": "61190", - "codeCommune": "61429", - "libelleAcheminement": "CHARENCEY", - "nomCommune": "CHARENCEY" + "codePostal": "61100", + "codeCommune": "61436", + "libelleAcheminement": "STE OPPORTUNE", + "nomCommune": "STE OPPORTUNE" }, { - "codePostal": "61550", - "codeCommune": "61435", - "libelleAcheminement": "ST NICOLAS DE SOMMAIRE", - "nomCommune": "ST NICOLAS DE SOMMAIRE" + "codePostal": "61410", + "codeCommune": "61439", + "libelleAcheminement": "ST OUEN LE BRISOULT", + "nomCommune": "ST OUEN LE BRISOULT" + }, + { + "codePostal": "61300", + "codeCommune": "61440", + "libelleAcheminement": "ST OUEN SUR ITON", + "nomCommune": "ST OUEN SUR ITON" }, { "codePostal": "61600", @@ -19464,40 +19392,22 @@ "nomCommune": "ST PATRICE DU DESERT" }, { - "codePostal": "61790", - "codeCommune": "61447", - "libelleAcheminement": "ST PIERRE DU REGARD", - "nomCommune": "ST PIERRE DU REGARD" + "codePostal": "61800", + "codeCommune": "61445", + "libelleAcheminement": "ST PIERRE D ENTREMONT", + "nomCommune": "ST PIERRE D ENTREMONT" }, { - "codePostal": "61220", - "codeCommune": "61459", - "libelleAcheminement": "SAIRES LA VERRERIE", - "nomCommune": "SAIRES LA VERRERIE" - }, - { - "codePostal": "61200", - "codeCommune": "61462", - "libelleAcheminement": "SARCEAUX", - "nomCommune": "SARCEAUX" - }, - { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" - }, - { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "61600", + "codeCommune": "61463", + "libelleAcheminement": "LES MONTS D ANDAINE", + "nomCommune": "LES MONTS D ANDAINE" }, { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "61100", + "codeCommune": "61466", + "libelleAcheminement": "LA SELLE LA FORGE", + "nomCommune": "LA SELLE LA FORGE" }, { "codePostal": "61380", @@ -19505,18 +19415,24 @@ "libelleAcheminement": "SOLIGNY LA TRAPPE", "nomCommune": "SOLIGNY LA TRAPPE" }, - { - "codePostal": "61150", - "codeCommune": "61479", - "libelleAcheminement": "TANQUES", - "nomCommune": "TANQUES" - }, { "codePostal": "61140", "codeCommune": "61483", "libelleAcheminement": "BAGNOLES DE L ORNE NORMANDIE", "nomCommune": "BAGNOLES DE L ORNE NORMANDIE" }, + { + "codePostal": "61260", + "codeCommune": "61484", + "libelleAcheminement": "VAL AU PERCHE", + "nomCommune": "VAL AU PERCHE" + }, + { + "codePostal": "61120", + "codeCommune": "61485", + "libelleAcheminement": "TICHEVILLE", + "nomCommune": "TICHEVILLE" + }, { "codePostal": "61800", "codeCommune": "61486", @@ -19524,16 +19440,16 @@ "nomCommune": "TINCHEBRAY BOCAGE" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "61800", + "codeCommune": "61486", + "libelleAcheminement": "TINCHEBRAY BOCAGE", + "nomCommune": "TINCHEBRAY BOCAGE" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "61160", + "codeCommune": "61490", + "libelleAcheminement": "TOURNAI SUR DIVE", + "nomCommune": "TOURNAI SUR DIVE" }, { "codePostal": "61190", @@ -19542,16 +19458,16 @@ "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "61130", - "codeCommune": "61498", - "libelleAcheminement": "VAUNOISE", - "nomCommune": "VAUNOISE" + "codePostal": "61230", + "codeCommune": "61493", + "libelleAcheminement": "LA TRINITE DES LAITIERS", + "nomCommune": "LA TRINITE DES LAITIERS" }, { - "codePostal": "61190", - "codeCommune": "61500", - "libelleAcheminement": "LA VENTROUZE", - "nomCommune": "LA VENTROUZE" + "codePostal": "61110", + "codeCommune": "61501", + "libelleAcheminement": "VERRIERES", + "nomCommune": "VERRIERES" }, { "codePostal": "61150", @@ -19560,28 +19476,46 @@ "nomCommune": "VIEUX PONT" }, { - "codePostal": "62144", - "codeCommune": "62007", - "libelleAcheminement": "ACQ", - "nomCommune": "ACQ" + "codePostal": "61120", + "codeCommune": "61508", + "libelleAcheminement": "VIMOUTIERS", + "nomCommune": "VIMOUTIERS" }, { - "codePostal": "62380", - "codeCommune": "62008", - "libelleAcheminement": "ACQUIN WESTBECOURT", - "nomCommune": "ACQUIN WESTBECOURT" + "codePostal": "62153", + "codeCommune": "62001", + "libelleAcheminement": "ABLAIN ST NAZAIRE", + "nomCommune": "ABLAIN ST NAZAIRE" + }, + { + "codePostal": "62116", + "codeCommune": "62002", + "libelleAcheminement": "ABLAINZEVELLE", + "nomCommune": "ABLAINZEVELLE" + }, + { + "codePostal": "62121", + "codeCommune": "62005", + "libelleAcheminement": "ACHIET LE GRAND", + "nomCommune": "ACHIET LE GRAND" + }, + { + "codePostal": "62690", + "codeCommune": "62012", + "libelleAcheminement": "AGNIERES", + "nomCommune": "AGNIERES" }, { "codePostal": "62180", - "codeCommune": "62016", - "libelleAcheminement": "AIRON ST VAAST", - "nomCommune": "AIRON ST VAAST" + "codeCommune": "62015", + "libelleAcheminement": "AIRON NOTRE DAME", + "nomCommune": "AIRON NOTRE DAME" }, { - "codePostal": "62160", - "codeCommune": "62019", - "libelleAcheminement": "AIX NOULETTE", - "nomCommune": "AIX NOULETTE" + "codePostal": "62850", + "codeCommune": "62020", + "libelleAcheminement": "ALEMBON", + "nomCommune": "ALEMBON" }, { "codePostal": "62142", @@ -19590,22 +19524,34 @@ "nomCommune": "ALINCTHUN" }, { - "codePostal": "62127", - "codeCommune": "62027", - "libelleAcheminement": "AMBRINES", - "nomCommune": "AMBRINES" + "codePostal": "62260", + "codeCommune": "62029", + "libelleAcheminement": "AMETTES", + "nomCommune": "AMETTES" }, { - "codePostal": "62143", - "codeCommune": "62032", - "libelleAcheminement": "ANGRES", - "nomCommune": "ANGRES" + "codePostal": "62760", + "codeCommune": "62030", + "libelleAcheminement": "AMPLIER", + "nomCommune": "AMPLIER" }, { - "codePostal": "62880", - "codeCommune": "62033", - "libelleAcheminement": "ANNAY", - "nomCommune": "ANNAY" + "codePostal": "62610", + "codeCommune": "62038", + "libelleAcheminement": "ARDRES", + "nomCommune": "ARDRES" + }, + { + "codePostal": "62610", + "codeCommune": "62038", + "libelleAcheminement": "ARDRES", + "nomCommune": "ARDRES" + }, + { + "codePostal": "62000", + "codeCommune": "62041", + "libelleAcheminement": "ARRAS", + "nomCommune": "ARRAS" }, { "codePostal": "62730", @@ -19614,40 +19560,34 @@ "nomCommune": "LES ATTAQUES" }, { - "codePostal": "62190", - "codeCommune": "62049", - "libelleAcheminement": "AUCHY AU BOIS", - "nomCommune": "AUCHY AU BOIS" - }, - { - "codePostal": "62250", - "codeCommune": "62052", - "libelleAcheminement": "AUDEMBERT", - "nomCommune": "AUDEMBERT" + "codePostal": "62140", + "codeCommune": "62046", + "libelleAcheminement": "AUBIN ST VAAST", + "nomCommune": "AUBIN ST VAAST" }, { - "codePostal": "62560", - "codeCommune": "62053", - "libelleAcheminement": "AUDINCTHUN", - "nomCommune": "AUDINCTHUN" + "codePostal": "62390", + "codeCommune": "62047", + "libelleAcheminement": "AUBROMETZ", + "nomCommune": "AUBROMETZ" }, { - "codePostal": "62810", - "codeCommune": "62063", - "libelleAcheminement": "AVESNES LE COMTE", - "nomCommune": "AVESNES LE COMTE" + "codePostal": "62770", + "codeCommune": "62050", + "libelleAcheminement": "AUCHY LES HESDIN", + "nomCommune": "AUCHY LES HESDIN" }, { - "codePostal": "62210", - "codeCommune": "62065", - "libelleAcheminement": "AVION", - "nomCommune": "AVION" + "codePostal": "62310", + "codeCommune": "62066", + "libelleAcheminement": "AVONDANCE", + "nomCommune": "AVONDANCE" }, { - "codePostal": "62560", - "codeCommune": "62067", - "libelleAcheminement": "AVROULT", - "nomCommune": "AVROULT" + "codePostal": "62123", + "codeCommune": "62072", + "libelleAcheminement": "BAILLEULMONT", + "nomCommune": "BAILLEULMONT" }, { "codePostal": "62850", @@ -19656,46 +19596,58 @@ "nomCommune": "BAINGHEN" }, { - "codePostal": "62150", - "codeCommune": "62077", - "libelleAcheminement": "BAJUS", - "nomCommune": "BAJUS" + "codePostal": "62450", + "codeCommune": "62080", + "libelleAcheminement": "BAPAUME", + "nomCommune": "BAPAUME" }, { - "codePostal": "62450", - "codeCommune": "62079", - "libelleAcheminement": "BANCOURT", - "nomCommune": "BANCOURT" + "codePostal": "62124", + "codeCommune": "62082", + "libelleAcheminement": "BARASTRE", + "nomCommune": "BARASTRE" }, { - "codePostal": "62380", - "codeCommune": "62088", - "libelleAcheminement": "BAYENGHEM LES SENINGHEM", - "nomCommune": "BAYENGHEM LES SENINGHEM" + "codePostal": "62910", + "codeCommune": "62087", + "libelleAcheminement": "BAYENGHEM LES EPERLECQUES", + "nomCommune": "BAYENGHEM LES EPERLECQUES" }, { - "codePostal": "62170", - "codeCommune": "62094", - "libelleAcheminement": "BEAUMERIE ST MARTIN", - "nomCommune": "BEAUMERIE ST MARTIN" + "codePostal": "62250", + "codeCommune": "62089", + "libelleAcheminement": "BAZINGHEN", + "nomCommune": "BAZINGHEN" }, { - "codePostal": "62121", - "codeCommune": "62103", - "libelleAcheminement": "BEHAGNIES", - "nomCommune": "BEHAGNIES" + "codePostal": "62130", + "codeCommune": "62101", + "libelleAcheminement": "BEAUVOIS", + "nomCommune": "BEAUVOIS" }, { - "codePostal": "62410", - "codeCommune": "62107", - "libelleAcheminement": "BENIFONTAINE", - "nomCommune": "BENIFONTAINE" + "codePostal": "62142", + "codeCommune": "62104", + "libelleAcheminement": "BELLEBRUNE", + "nomCommune": "BELLEBRUNE" + }, + { + "codePostal": "62490", + "codeCommune": "62106", + "libelleAcheminement": "BELLONNE", + "nomCommune": "BELLONNE" + }, + { + "codePostal": "62130", + "codeCommune": "62114", + "libelleAcheminement": "BERMICOURT", + "nomCommune": "BERMICOURT" }, { "codePostal": "62123", - "codeCommune": "62112", - "libelleAcheminement": "BERLES AU BOIS", - "nomCommune": "BERLES AU BOIS" + "codeCommune": "62115", + "libelleAcheminement": "BERNEVILLE", + "nomCommune": "BERNEVILLE" }, { "codePostal": "62124", @@ -19704,22 +19656,22 @@ "nomCommune": "BERTINCOURT" }, { - "codePostal": "62690", - "codeCommune": "62118", - "libelleAcheminement": "BETHONSART", - "nomCommune": "BETHONSART" + "codePostal": "62400", + "codeCommune": "62119", + "libelleAcheminement": "BETHUNE", + "nomCommune": "BETHUNE" }, { - "codePostal": "62111", - "codeCommune": "62130", - "libelleAcheminement": "BIENVILLERS AU BOIS", - "nomCommune": "BIENVILLERS AU BOIS" + "codePostal": "62660", + "codeCommune": "62126", + "libelleAcheminement": "BEUVRY", + "nomCommune": "BEUVRY" }, { - "codePostal": "62173", - "codeCommune": "62135", - "libelleAcheminement": "BLAIRVILLE", - "nomCommune": "BLAIRVILLE" + "codePostal": "62420", + "codeCommune": "62133", + "libelleAcheminement": "BILLY MONTIGNY", + "nomCommune": "BILLY MONTIGNY" }, { "codePostal": "62270", @@ -19728,16 +19680,40 @@ "nomCommune": "BLANGERVAL BLANGERMONT" }, { - "codePostal": "62175", - "codeCommune": "62146", - "libelleAcheminement": "BOIRY ST MARTIN", - "nomCommune": "BOIRY ST MARTIN" + "codePostal": "62770", + "codeCommune": "62138", + "libelleAcheminement": "BLANGY SUR TERNOISE", + "nomCommune": "BLANGY SUR TERNOISE" }, { - "codePostal": "62175", - "codeCommune": "62147", - "libelleAcheminement": "BOIRY STE RICTRUDE", - "nomCommune": "BOIRY STE RICTRUDE" + "codePostal": "62156", + "codeCommune": "62145", + "libelleAcheminement": "BOIRY NOTRE DAME", + "nomCommune": "BOIRY NOTRE DAME" + }, + { + "codePostal": "62500", + "codeCommune": "62149", + "libelleAcheminement": "BOISDINGHEM", + "nomCommune": "BOISDINGHEM" + }, + { + "codePostal": "62270", + "codeCommune": "62154", + "libelleAcheminement": "BONNIERES", + "nomCommune": "BONNIERES" + }, + { + "codePostal": "62270", + "codeCommune": "62154", + "libelleAcheminement": "BONNIERES", + "nomCommune": "BONNIERES" + }, + { + "codePostal": "62340", + "codeCommune": "62156", + "libelleAcheminement": "BONNINGUES LES CALAIS", + "nomCommune": "BONNINGUES LES CALAIS" }, { "codePostal": "62990", @@ -19746,10 +19722,16 @@ "nomCommune": "BOUBERS LES HESMOND" }, { - "codePostal": "62190", - "codeCommune": "62162", - "libelleAcheminement": "BOURECQ", - "nomCommune": "BOURECQ" + "codePostal": "62270", + "codeCommune": "62158", + "libelleAcheminement": "BOUBERS SUR CANCHE", + "nomCommune": "BOUBERS SUR CANCHE" + }, + { + "codePostal": "62550", + "codeCommune": "62166", + "libelleAcheminement": "BOURS", + "nomCommune": "BOURS" }, { "codePostal": "62132", @@ -19758,16 +19740,28 @@ "nomCommune": "BOURSIN" }, { - "codePostal": "62650", - "codeCommune": "62168", - "libelleAcheminement": "BOURTHES", - "nomCommune": "BOURTHES" + "codePostal": "62380", + "codeCommune": "62169", + "libelleAcheminement": "BOUVELINGHEM", + "nomCommune": "BOUVELINGHEM" }, { - "codePostal": "62610", - "codeCommune": "62174", - "libelleAcheminement": "BREMES", - "nomCommune": "BREMES" + "codePostal": "62172", + "codeCommune": "62170", + "libelleAcheminement": "BOUVIGNY BOYEFFLES", + "nomCommune": "BOUVIGNY BOYEFFLES" + }, + { + "codePostal": "62134", + "codeCommune": "62171", + "libelleAcheminement": "BOYAVAL", + "nomCommune": "BOYAVAL" + }, + { + "codePostal": "62170", + "codeCommune": "62176", + "libelleAcheminement": "BREXENT ENOCQ", + "nomCommune": "BREXENT ENOCQ" }, { "codePostal": "62160", @@ -19787,6 +19781,24 @@ "libelleAcheminement": "BURBURE", "nomCommune": "BURBURE" }, + { + "codePostal": "62124", + "codeCommune": "62189", + "libelleAcheminement": "BUS", + "nomCommune": "BUS" + }, + { + "codePostal": "62470", + "codeCommune": "62194", + "libelleAcheminement": "CALONNE RICOUART", + "nomCommune": "CALONNE RICOUART" + }, + { + "codePostal": "62350", + "codeCommune": "62195", + "libelleAcheminement": "CALONNE SUR LA LYS", + "nomCommune": "CALONNE SUR LA LYS" + }, { "codePostal": "62170", "codeCommune": "62196", @@ -19794,10 +19806,10 @@ "nomCommune": "LA CALOTTERIE" }, { - "codePostal": "62470", - "codeCommune": "62197", - "libelleAcheminement": "CAMBLAIN CHATELAIN", - "nomCommune": "CAMBLAIN CHATELAIN" + "codePostal": "62690", + "codeCommune": "62199", + "libelleAcheminement": "CAMBLAIN L ABBE", + "nomCommune": "CAMBLAIN L ABBE" }, { "codePostal": "62176", @@ -19811,18 +19823,6 @@ "libelleAcheminement": "CAMPAGNE LES BOULONNAIS", "nomCommune": "CAMPAGNE LES BOULONNAIS" }, - { - "codePostal": "62870", - "codeCommune": "62204", - "libelleAcheminement": "CAMPAGNE LES HESDIN", - "nomCommune": "CAMPAGNE LES HESDIN" - }, - { - "codePostal": "62120", - "codeCommune": "62205", - "libelleAcheminement": "CAMPAGNE LES WARDRECQUES", - "nomCommune": "CAMPAGNE LES WARDRECQUES" - }, { "codePostal": "62170", "codeCommune": "62206", @@ -19830,34 +19830,46 @@ "nomCommune": "CAMPIGNEULLES LES GRANDES" }, { - "codePostal": "62170", - "codeCommune": "62207", - "libelleAcheminement": "CAMPIGNEULLES LES PETITES", - "nomCommune": "CAMPIGNEULLES LES PETITES" + "codePostal": "62690", + "codeCommune": "62211", + "libelleAcheminement": "CAPELLE FERMONT", + "nomCommune": "CAPELLE FERMONT" }, { - "codePostal": "62144", - "codeCommune": "62213", - "libelleAcheminement": "CARENCY", - "nomCommune": "CARENCY" + "codePostal": "62150", + "codeCommune": "62218", + "libelleAcheminement": "CAUCOURT", + "nomCommune": "CAUCOURT" }, { - "codePostal": "62650", - "codeCommune": "62227", - "libelleAcheminement": "CLENLEU", - "nomCommune": "CLENLEU" + "codePostal": "62500", + "codeCommune": "62225", + "libelleAcheminement": "CLAIRMARAIS", + "nomCommune": "CLAIRMARAIS" }, { - "codePostal": "62890", - "codeCommune": "62228", - "libelleAcheminement": "CLERQUES", - "nomCommune": "CLERQUES" + "codePostal": "62231", + "codeCommune": "62239", + "libelleAcheminement": "COQUELLES", + "nomCommune": "COQUELLES" }, { - "codePostal": "62137", - "codeCommune": "62244", - "libelleAcheminement": "COULOGNE", - "nomCommune": "COULOGNE" + "codePostal": "62112", + "codeCommune": "62240", + "libelleAcheminement": "CORBEHEM", + "nomCommune": "CORBEHEM" + }, + { + "codePostal": "62630", + "codeCommune": "62241", + "libelleAcheminement": "CORMONT", + "nomCommune": "CORMONT" + }, + { + "codePostal": "62380", + "codeCommune": "62245", + "libelleAcheminement": "COULOMBY", + "nomCommune": "COULOMBY" }, { "codePostal": "62310", @@ -19871,6 +19883,12 @@ "libelleAcheminement": "COUPELLE VIEILLE", "nomCommune": "COUPELLE VIEILLE" }, + { + "codePostal": "62710", + "codeCommune": "62250", + "libelleAcheminement": "COURRIERES", + "nomCommune": "COURRIERES" + }, { "codePostal": "62240", "codeCommune": "62251", @@ -19878,40 +19896,22 @@ "nomCommune": "COURSET" }, { - "codePostal": "62560", - "codeCommune": "62254", - "libelleAcheminement": "COYECQUES", - "nomCommune": "COYECQUES" - }, - { - "codePostal": "62240", - "codeCommune": "62255", - "libelleAcheminement": "CREMAREST", - "nomCommune": "CREMAREST" - }, - { - "codePostal": "62780", - "codeCommune": "62261", - "libelleAcheminement": "CUCQ", - "nomCommune": "CUCQ" - }, - { - "codePostal": "62187", - "codeCommune": "62264", - "libelleAcheminement": "DANNES", - "nomCommune": "DANNES" + "codePostal": "62310", + "codeCommune": "62257", + "libelleAcheminement": "CREQUY", + "nomCommune": "CREQUY" }, { - "codePostal": "62830", - "codeCommune": "62273", - "libelleAcheminement": "DOUDEAUVILLE", - "nomCommune": "DOUDEAUVILLE" + "codePostal": "62130", + "codeCommune": "62258", + "libelleAcheminement": "CROISETTE", + "nomCommune": "CROISETTE" }, { - "codePostal": "62860", - "codeCommune": "62284", - "libelleAcheminement": "ECOURT ST QUENTIN", - "nomCommune": "ECOURT ST QUENTIN" + "codePostal": "62240", + "codeCommune": "62268", + "libelleAcheminement": "DESVRES", + "nomCommune": "DESVRES" }, { "codePostal": "62129", @@ -19919,30 +19919,30 @@ "libelleAcheminement": "ECQUES", "nomCommune": "ECQUES" }, - { - "codePostal": "62380", - "codeCommune": "62292", - "libelleAcheminement": "ELNES", - "nomCommune": "ELNES" - }, { "codePostal": "62910", "codeCommune": "62297", "libelleAcheminement": "EPERLECQUES", "nomCommune": "EPERLECQUES" }, - { - "codePostal": "62134", - "codeCommune": "62303", - "libelleAcheminement": "ERIN", - "nomCommune": "ERIN" - }, { "codePostal": "62960", "codeCommune": "62304", "libelleAcheminement": "ERNY ST JULIEN", "nomCommune": "ERNY ST JULIEN" }, + { + "codePostal": "62121", + "codeCommune": "62306", + "libelleAcheminement": "ERVILLERS", + "nomCommune": "ERVILLERS" + }, + { + "codePostal": "62850", + "codeCommune": "62308", + "libelleAcheminement": "ESCOEUILLES", + "nomCommune": "ESCOEUILLES" + }, { "codePostal": "62880", "codeCommune": "62311", @@ -19950,16 +19950,10 @@ "nomCommune": "ESTEVELLES" }, { - "codePostal": "62145", - "codeCommune": "62313", - "libelleAcheminement": "ESTREE BLANCHE", - "nomCommune": "ESTREE BLANCHE" - }, - { - "codePostal": "62690", - "codeCommune": "62314", - "libelleAcheminement": "ESTREE CAUCHY", - "nomCommune": "ESTREE CAUCHY" + "codePostal": "62170", + "codeCommune": "62312", + "libelleAcheminement": "ESTREE", + "nomCommune": "ESTREE" }, { "codePostal": "62156", @@ -19968,34 +19962,40 @@ "nomCommune": "ETAING" }, { - "codePostal": "62760", - "codeCommune": "62322", - "libelleAcheminement": "FAMECHON", - "nomCommune": "FAMECHON" + "codePostal": "62630", + "codeCommune": "62318", + "libelleAcheminement": "ETAPLES", + "nomCommune": "ETAPLES" }, { - "codePostal": "62118", - "codeCommune": "62323", - "libelleAcheminement": "FAMPOUX", - "nomCommune": "FAMPOUX" + "codePostal": "62141", + "codeCommune": "62321", + "libelleAcheminement": "EVIN MALMAISON", + "nomCommune": "EVIN MALMAISON" }, { - "codePostal": "62149", - "codeCommune": "62330", - "libelleAcheminement": "FESTUBERT", - "nomCommune": "FESTUBERT" + "codePostal": "62450", + "codeCommune": "62326", + "libelleAcheminement": "FAVREUIL", + "nomCommune": "FAVREUIL" }, { - "codePostal": "62770", - "codeCommune": "62335", - "libelleAcheminement": "FILLIEVRES", - "nomCommune": "FILLIEVRES" + "codePostal": "62132", + "codeCommune": "62334", + "libelleAcheminement": "FIENNES", + "nomCommune": "FIENNES" }, { - "codePostal": "62270", - "codeCommune": "62337", - "libelleAcheminement": "FLERS", - "nomCommune": "FLERS" + "codePostal": "62960", + "codeCommune": "62336", + "libelleAcheminement": "FLECHIN", + "nomCommune": "FLECHIN" + }, + { + "codePostal": "62111", + "codeCommune": "62341", + "libelleAcheminement": "FONCQUEVILLERS", + "nomCommune": "FONCQUEVILLERS" }, { "codePostal": "62550", @@ -20003,30 +20003,12 @@ "libelleAcheminement": "FONTAINE LES HERMANS", "nomCommune": "FONTAINE LES HERMANS" }, - { - "codePostal": "62130", - "codeCommune": "62348", - "libelleAcheminement": "FOUFFLIN RICAMETZ", - "nomCommune": "FOUFFLIN RICAMETZ" - }, { "codePostal": "62232", "codeCommune": "62349", "libelleAcheminement": "FOUQUEREUIL", "nomCommune": "FOUQUEREUIL" }, - { - "codePostal": "62740", - "codeCommune": "62351", - "libelleAcheminement": "FOUQUIERES LES LENS", - "nomCommune": "FOUQUIERES LES LENS" - }, - { - "codePostal": "62450", - "codeCommune": "62353", - "libelleAcheminement": "FREMICOURT", - "nomCommune": "FREMICOURT" - }, { "codePostal": "62630", "codeCommune": "62354", @@ -20034,40 +20016,16 @@ "nomCommune": "FRENCQ" }, { - "codePostal": "62580", - "codeCommune": "62358", - "libelleAcheminement": "FRESNOY EN GOHELLE", - "nomCommune": "FRESNOY EN GOHELLE" - }, - { - "codePostal": "62270", - "codeCommune": "62361", - "libelleAcheminement": "FREVENT", - "nomCommune": "FREVENT" - }, - { - "codePostal": "62127", - "codeCommune": "62362", - "libelleAcheminement": "FREVILLERS", - "nomCommune": "FREVILLERS" - }, - { - "codePostal": "62760", - "codeCommune": "62368", - "libelleAcheminement": "GAUDIEMPRE", - "nomCommune": "GAUDIEMPRE" - }, - { - "codePostal": "62390", - "codeCommune": "62370", - "libelleAcheminement": "GENNES IVERGNY", - "nomCommune": "GENNES IVERGNY" + "codePostal": "62490", + "codeCommune": "62355", + "libelleAcheminement": "FRESNES LES MONTAUBAN", + "nomCommune": "FRESNES LES MONTAUBAN" }, { - "codePostal": "62580", - "codeCommune": "62371", - "libelleAcheminement": "GIVENCHY EN GOHELLE", - "nomCommune": "GIVENCHY EN GOHELLE" + "codePostal": "62810", + "codeCommune": "62372", + "libelleAcheminement": "GIVENCHY LE NOBLE", + "nomCommune": "GIVENCHY LE NOBLE" }, { "codePostal": "62149", @@ -20075,6 +20033,18 @@ "libelleAcheminement": "GIVENCHY LES LA BASSEE", "nomCommune": "GIVENCHY LES LA BASSEE" }, + { + "codePostal": "62111", + "codeCommune": "62375", + "libelleAcheminement": "GOMMECOURT", + "nomCommune": "GOMMECOURT" + }, + { + "codePostal": "62920", + "codeCommune": "62376", + "libelleAcheminement": "GONNEHEM", + "nomCommune": "GONNEHEM" + }, { "codePostal": "62199", "codeCommune": "62377", @@ -20082,22 +20052,16 @@ "nomCommune": "GOSNAY" }, { - "codePostal": "62127", - "codeCommune": "62381", - "libelleAcheminement": "GOUY EN TERNOIS", - "nomCommune": "GOUY EN TERNOIS" - }, - { - "codePostal": "62810", - "codeCommune": "62385", - "libelleAcheminement": "GRAND RULLECOURT", - "nomCommune": "GRAND RULLECOURT" + "codePostal": "62870", + "codeCommune": "62382", + "libelleAcheminement": "GOUY ST ANDRE", + "nomCommune": "GOUY ST ANDRE" }, { - "codePostal": "62600", - "codeCommune": "62390", - "libelleAcheminement": "GROFFLIERS", - "nomCommune": "GROFFLIERS" + "codePostal": "62140", + "codeCommune": "62388", + "libelleAcheminement": "GRIGNY", + "nomCommune": "GRIGNY" }, { "codePostal": "62370", @@ -20106,10 +20070,10 @@ "nomCommune": "GUEMPS" }, { - "codePostal": "62140", - "codeCommune": "62398", - "libelleAcheminement": "GUISY", - "nomCommune": "GUISY" + "codePostal": "62130", + "codeCommune": "62396", + "libelleAcheminement": "GUINECOURT", + "nomCommune": "GUINECOURT" }, { "codePostal": "62940", @@ -20118,58 +20082,64 @@ "nomCommune": "HAILLICOURT" }, { - "codePostal": "62830", - "codeCommune": "62402", - "libelleAcheminement": "HALINGHEN", - "nomCommune": "HALINGHEN" + "codePostal": "62340", + "codeCommune": "62408", + "libelleAcheminement": "HAMES BOUCRES", + "nomCommune": "HAMES BOUCRES" }, { - "codePostal": "62760", - "codeCommune": "62430", - "libelleAcheminement": "HENU", - "nomCommune": "HENU" + "codePostal": "62390", + "codeCommune": "62411", + "libelleAcheminement": "HARAVESNES", + "nomCommune": "HARAVESNES" }, { - "codePostal": "62158", - "codeCommune": "62434", - "libelleAcheminement": "LA HERLIERE", - "nomCommune": "LA HERLIERE" + "codePostal": "62132", + "codeCommune": "62412", + "libelleAcheminement": "HARDINGHEN", + "nomCommune": "HARDINGHEN" }, { - "codePostal": "62130", - "codeCommune": "62435", - "libelleAcheminement": "HERLINCOURT", - "nomCommune": "HERLINCOURT" + "codePostal": "62147", + "codeCommune": "62421", + "libelleAcheminement": "HAVRINCOURT", + "nomCommune": "HAVRINCOURT" }, { - "codePostal": "62130", - "codeCommune": "62442", - "libelleAcheminement": "HERNICOURT", - "nomCommune": "HERNICOURT" + "codePostal": "62570", + "codeCommune": "62423", + "libelleAcheminement": "HELFAUT", + "nomCommune": "HELFAUT" }, { - "codePostal": "62179", - "codeCommune": "62444", - "libelleAcheminement": "HERVELINGHEN", - "nomCommune": "HERVELINGHEN" + "codePostal": "62650", + "codeCommune": "62437", + "libelleAcheminement": "HERLY", + "nomCommune": "HERLY" }, { - "codePostal": "62134", - "codeCommune": "62451", - "libelleAcheminement": "HEUCHIN", - "nomCommune": "HEUCHIN" + "codePostal": "62132", + "codeCommune": "62439", + "libelleAcheminement": "HERMELINGHEN", + "nomCommune": "HERMELINGHEN" }, { - "codePostal": "62620", - "codeCommune": "62456", - "libelleAcheminement": "HOUCHIN", - "nomCommune": "HOUCHIN" + "codePostal": "62196", + "codeCommune": "62445", + "libelleAcheminement": "HESDIGNEUL LES BETHUNE", + "nomCommune": "HESDIGNEUL LES BETHUNE" }, { - "codePostal": "62910", - "codeCommune": "62458", - "libelleAcheminement": "HOULLE", - "nomCommune": "HOULLE" + "codePostal": "62850", + "codeCommune": "62455", + "libelleAcheminement": "HOCQUINGHEN", + "nomCommune": "HOCQUINGHEN" + }, + { + "codePostal": "62270", + "codeCommune": "62459", + "libelleAcheminement": "HOUVIN HOUVIGNEUL", + "nomCommune": "HOUVIN HOUVIGNEUL" }, { "codePostal": "62140", @@ -20177,6 +20147,12 @@ "libelleAcheminement": "HUBY ST LEU", "nomCommune": "HUBY ST LEU" }, + { + "codePostal": "62130", + "codeCommune": "62462", + "libelleAcheminement": "HUCLIER", + "nomCommune": "HUCLIER" + }, { "codePostal": "62650", "codeCommune": "62466", @@ -20184,28 +20160,22 @@ "nomCommune": "HUMBERT" }, { - "codePostal": "62860", - "codeCommune": "62469", - "libelleAcheminement": "INCHY EN ARTOIS", - "nomCommune": "INCHY EN ARTOIS" - }, - { - "codePostal": "62129", - "codeCommune": "62471", - "libelleAcheminement": "BELLINGHEM", - "nomCommune": "BELLINGHEM" + "codePostal": "62490", + "codeCommune": "62476", + "libelleAcheminement": "IZEL LES EQUERCHIN", + "nomCommune": "IZEL LES EQUERCHIN" }, { - "codePostal": "62170", - "codeCommune": "62472", - "libelleAcheminement": "INXENT", - "nomCommune": "INXENT" + "codePostal": "62113", + "codeCommune": "62480", + "libelleAcheminement": "LABOURSE", + "nomCommune": "LABOURSE" }, { - "codePostal": "62810", - "codeCommune": "62475", - "libelleAcheminement": "IVERGNY", - "nomCommune": "IVERGNY" + "codePostal": "62159", + "codeCommune": "62484", + "libelleAcheminement": "LAGNICOURT MARCEL", + "nomCommune": "LAGNICOURT MARCEL" }, { "codePostal": "62120", @@ -20220,46 +20190,34 @@ "nomCommune": "LANDRETHUN LE NORD" }, { - "codePostal": "62810", - "codeCommune": "62490", - "libelleAcheminement": "LATTRE ST QUENTIN", - "nomCommune": "LATTRE ST QUENTIN" - }, - { - "codePostal": "62124", - "codeCommune": "62494", - "libelleAcheminement": "LECHELLE", - "nomCommune": "LECHELLE" - }, - { - "codePostal": "62380", - "codeCommune": "62495", - "libelleAcheminement": "LEDINGHEM", - "nomCommune": "LEDINGHEM" + "codePostal": "62122", + "codeCommune": "62489", + "libelleAcheminement": "LAPUGNOY", + "nomCommune": "LAPUGNOY" }, { - "codePostal": "62170", - "codeCommune": "62499", - "libelleAcheminement": "LEPINE", - "nomCommune": "LEPINE" + "codePostal": "62190", + "codeCommune": "62500", + "libelleAcheminement": "LESPESSES", + "nomCommune": "LESPESSES" }, { - "codePostal": "62990", - "codeCommune": "62501", - "libelleAcheminement": "LESPINOY", - "nomCommune": "LESPINOY" + "codePostal": "62190", + "codeCommune": "62508", + "libelleAcheminement": "LIERES", + "nomCommune": "LIERES" }, { - "codePostal": "62240", - "codeCommune": "62524", - "libelleAcheminement": "LONGFOSSE", - "nomCommune": "LONGFOSSE" + "codePostal": "62810", + "codeCommune": "62511", + "libelleAcheminement": "LIGNEREUIL", + "nomCommune": "LIGNEREUIL" }, { - "codePostal": "62219", - "codeCommune": "62525", - "libelleAcheminement": "LONGUENESSE", - "nomCommune": "LONGUENESSE" + "codePostal": "62140", + "codeCommune": "62521", + "libelleAcheminement": "LA LOGE", + "nomCommune": "LA LOGE" }, { "codePostal": "62142", @@ -20268,10 +20226,22 @@ "nomCommune": "LONGUEVILLE" }, { - "codePostal": "62240", - "codeCommune": "62530", - "libelleAcheminement": "LOTTINGHEN", - "nomCommune": "LOTTINGHEN" + "codePostal": "62630", + "codeCommune": "62527", + "libelleAcheminement": "LONGVILLIERS", + "nomCommune": "LONGVILLIERS" + }, + { + "codePostal": "62750", + "codeCommune": "62528", + "libelleAcheminement": "LOOS EN GOHELLE", + "nomCommune": "LOOS EN GOHELLE" + }, + { + "codePostal": "62840", + "codeCommune": "62529", + "libelleAcheminement": "LORGIES", + "nomCommune": "LORGIES" }, { "codePostal": "62380", @@ -20280,40 +20250,40 @@ "nomCommune": "LUMBRES" }, { - "codePostal": "62170", - "codeCommune": "62535", - "libelleAcheminement": "LA MADELAINE SOUS MONTREUIL", - "nomCommune": "LA MADELAINE SOUS MONTREUIL" + "codePostal": "62730", + "codeCommune": "62548", + "libelleAcheminement": "MARCK", + "nomCommune": "MARCK" }, { - "codePostal": "62127", - "codeCommune": "62536", - "libelleAcheminement": "MAGNICOURT EN COMTE", - "nomCommune": "MAGNICOURT EN COMTE" + "codePostal": "62990", + "codeCommune": "62552", + "libelleAcheminement": "MARESQUEL ECQUEMICOURT", + "nomCommune": "MARESQUEL ECQUEMICOURT" }, { - "codePostal": "62120", - "codeCommune": "62543", - "libelleAcheminement": "MAMETZ", - "nomCommune": "MAMETZ" + "codePostal": "62550", + "codeCommune": "62553", + "libelleAcheminement": "MAREST", + "nomCommune": "MAREST" }, { - "codePostal": "62650", - "codeCommune": "62545", - "libelleAcheminement": "MANINGHEM", - "nomCommune": "MANINGHEM" + "codePostal": "62630", + "codeCommune": "62554", + "libelleAcheminement": "MARESVILLE", + "nomCommune": "MARESVILLE" }, { - "codePostal": "62140", - "codeCommune": "62550", - "libelleAcheminement": "MARCONNELLE", - "nomCommune": "MARCONNELLE" + "codePostal": "62540", + "codeCommune": "62555", + "libelleAcheminement": "MARLES LES MINES", + "nomCommune": "MARLES LES MINES" }, { - "codePostal": "62990", - "codeCommune": "62551", - "libelleAcheminement": "MARENLA", - "nomCommune": "MARENLA" + "codePostal": "62250", + "codeCommune": "62560", + "libelleAcheminement": "MARQUISE", + "nomCommune": "MARQUISE" }, { "codePostal": "62310", @@ -20322,16 +20292,10 @@ "nomCommune": "MATRINGHEM" }, { - "codePostal": "62270", - "codeCommune": "62576", - "libelleAcheminement": "MONCHEAUX LES FREVENT", - "nomCommune": "MONCHEAUX LES FREVENT" - }, - { - "codePostal": "62111", - "codeCommune": "62579", - "libelleAcheminement": "MONCHY AU BOIS", - "nomCommune": "MONCHY AU BOIS" + "codePostal": "62123", + "codeCommune": "62578", + "libelleAcheminement": "MONCHIET", + "nomCommune": "MONCHIET" }, { "codePostal": "62760", @@ -20346,118 +20310,124 @@ "nomCommune": "MONT BERNANCHON" }, { - "codePostal": "62144", - "codeCommune": "62589", - "libelleAcheminement": "MONT ST ELOI", - "nomCommune": "MONT ST ELOI" - }, - { - "codePostal": "62910", - "codeCommune": "62595", - "libelleAcheminement": "MOULLE", - "nomCommune": "MOULLE" + "codePostal": "62450", + "codeCommune": "62593", + "libelleAcheminement": "MORVAL", + "nomCommune": "MORVAL" }, { - "codePostal": "62840", - "codeCommune": "62606", - "libelleAcheminement": "NEUVE CHAPELLE", - "nomCommune": "NEUVE CHAPELLE" + "codePostal": "62121", + "codeCommune": "62597", + "libelleAcheminement": "MOYENNEVILLE", + "nomCommune": "MOYENNEVILLE" }, { - "codePostal": "62124", - "codeCommune": "62608", - "libelleAcheminement": "NEUVILLE BOURJONVAL", - "nomCommune": "NEUVILLE BOURJONVAL" + "codePostal": "62152", + "codeCommune": "62603", + "libelleAcheminement": "NESLES", + "nomCommune": "NESLES" }, { - "codePostal": "62380", - "codeCommune": "62613", - "libelleAcheminement": "NIELLES LES BLEQUIN", - "nomCommune": "NIELLES LES BLEQUIN" + "codePostal": "62152", + "codeCommune": "62604", + "libelleAcheminement": "NEUFCHATEL HARDELOT", + "nomCommune": "NEUFCHATEL HARDELOT" }, { - "codePostal": "62221", - "codeCommune": "62628", - "libelleAcheminement": "NOYELLES SOUS LENS", - "nomCommune": "NOYELLES SOUS LENS" + "codePostal": "62170", + "codeCommune": "62610", + "libelleAcheminement": "NEUVILLE SOUS MONTREUIL", + "nomCommune": "NEUVILLE SOUS MONTREUIL" }, { - "codePostal": "62590", - "codeCommune": "62637", - "libelleAcheminement": "OIGNIES", - "nomCommune": "OIGNIES" + "codePostal": "62217", + "codeCommune": "62611", + "libelleAcheminement": "NEUVILLE VITASSE", + "nomCommune": "NEUVILLE VITASSE" }, { - "codePostal": "62130", - "codeCommune": "62641", - "libelleAcheminement": "OSTREVILLE", - "nomCommune": "OSTREVILLE" + "codePostal": "62580", + "codeCommune": "62612", + "libelleAcheminement": "NEUVIREUIL", + "nomCommune": "NEUVIREUIL" }, { - "codePostal": "62380", - "codeCommune": "62644", - "libelleAcheminement": "OUVE WIRQUIN", - "nomCommune": "OUVE WIRQUIN" + "codePostal": "62610", + "codeCommune": "62614", + "libelleAcheminement": "NIELLES LES ARDRES", + "nomCommune": "NIELLES LES ARDRES" + }, + { + "codePostal": "62120", + "codeCommune": "62620", + "libelleAcheminement": "NORRENT FONTES", + "nomCommune": "NORRENT FONTES" + }, + { + "codePostal": "62370", + "codeCommune": "62623", + "libelleAcheminement": "NOUVELLE EGLISE", + "nomCommune": "NOUVELLE EGLISE" }, { "codePostal": "62770", - "codeCommune": "62647", - "libelleAcheminement": "LE PARCQ", - "nomCommune": "LE PARCQ" + "codeCommune": "62625", + "libelleAcheminement": "NOYELLES LES HUMIERES", + "nomCommune": "NOYELLES LES HUMIERES" }, { - "codePostal": "62340", - "codeCommune": "62657", - "libelleAcheminement": "PIHEN LES GUINES", - "nomCommune": "PIHEN LES GUINES" + "codePostal": "62990", + "codeCommune": "62635", + "libelleAcheminement": "OFFIN", + "nomCommune": "OFFIN" }, { - "codePostal": "62860", - "codeCommune": "62673", - "libelleAcheminement": "QUEANT", - "nomCommune": "QUEANT" + "codePostal": "62460", + "codeCommune": "62642", + "libelleAcheminement": "OURTON", + "nomCommune": "OURTON" }, { - "codePostal": "62500", - "codeCommune": "62674", - "libelleAcheminement": "QUELMES", - "nomCommune": "QUELMES" + "codePostal": "62215", + "codeCommune": "62645", + "libelleAcheminement": "OYE PLAGE", + "nomCommune": "OYE PLAGE" }, { - "codePostal": "62140", - "codeCommune": "62677", - "libelleAcheminement": "LE QUESNOY EN ARTOIS", - "nomCommune": "LE QUESNOY EN ARTOIS" + "codePostal": "62134", + "codeCommune": "62668", + "libelleAcheminement": "PREDEFIN", + "nomCommune": "PREDEFIN" }, { - "codePostal": "62490", - "codeCommune": "62680", - "libelleAcheminement": "QUIERY LA MOTTE", - "nomCommune": "QUIERY LA MOTTE" + "codePostal": "62860", + "codeCommune": "62671", + "libelleAcheminement": "PRONVILLE EN ARTOIS", + "nomCommune": "PRONVILLE EN ARTOIS" }, { - "codePostal": "62650", - "codeCommune": "62682", - "libelleAcheminement": "QUILEN", - "nomCommune": "QUILEN" + "codePostal": "62240", + "codeCommune": "62678", + "libelleAcheminement": "QUESQUES", + "nomCommune": "QUESQUES" }, { - "codePostal": "62180", - "codeCommune": "62688", - "libelleAcheminement": "RANG DU FLIERS", - "nomCommune": "RANG DU FLIERS" + "codePostal": "62130", + "codeCommune": "62686", + "libelleAcheminement": "RAMECOURT", + "nomCommune": "RAMECOURT" }, { - "codePostal": "62140", - "codeCommune": "62690", - "libelleAcheminement": "RAYE SUR AUTHIE", - "nomCommune": "RAYE SUR AUTHIE" + "codePostal": "62850", + "codeCommune": "62692", + "libelleAcheminement": "REBERGUES", + "nomCommune": "REBERGUES" }, { - "codePostal": "62170", - "codeCommune": "62698", - "libelleAcheminement": "RECQUES SUR COURSE", - "nomCommune": "RECQUES SUR COURSE" + "codePostal": "62270", + "codeCommune": "62694", + "libelleAcheminement": "REBREUVE SUR CANCHE", + "nomCommune": "REBREUVE SUR CANCHE" }, { "codePostal": "62890", @@ -20466,28 +20436,16 @@ "nomCommune": "RECQUES SUR HEM" }, { - "codePostal": "62120", - "codeCommune": "62701", - "libelleAcheminement": "RELY", - "nomCommune": "RELY" - }, - { - "codePostal": "62720", - "codeCommune": "62711", - "libelleAcheminement": "RINXENT", - "nomCommune": "RINXENT" - }, - { - "codePostal": "62118", - "codeCommune": "62718", - "libelleAcheminement": "ROEUX", - "nomCommune": "ROEUX" + "codePostal": "62350", + "codeCommune": "62713", + "libelleAcheminement": "ROBECQ", + "nomCommune": "ROBECQ" }, { - "codePostal": "62120", - "codeCommune": "62721", - "libelleAcheminement": "ROQUETOIRE", - "nomCommune": "ROQUETOIRE" + "codePostal": "62450", + "codeCommune": "62715", + "libelleAcheminement": "ROCQUIGNY", + "nomCommune": "ROCQUIGNY" }, { "codePostal": "62650", @@ -20496,16 +20454,28 @@ "nomCommune": "RUMILLY" }, { - "codePostal": "62310", - "codeCommune": "62738", - "libelleAcheminement": "SAINS LES FRESSIN", - "nomCommune": "SAINS LES FRESSIN" + "codePostal": "62124", + "codeCommune": "62731", + "libelleAcheminement": "RUYAULCOURT", + "nomCommune": "RUYAULCOURT" }, { - "codePostal": "62223", - "codeCommune": "62744", - "libelleAcheminement": "STE CATHERINE", - "nomCommune": "STE CATHERINE" + "codePostal": "62840", + "codeCommune": "62736", + "libelleAcheminement": "SAILLY SUR LA LYS", + "nomCommune": "SAILLY SUR LA LYS" + }, + { + "codePostal": "62550", + "codeCommune": "62740", + "libelleAcheminement": "SAINS LES PERNES", + "nomCommune": "SAINS LES PERNES" + }, + { + "codePostal": "62140", + "codeCommune": "62743", + "libelleAcheminement": "STE AUSTREBERTHE", + "nomCommune": "STE AUSTREBERTHE" }, { "codePostal": "62770", @@ -20520,70 +20490,88 @@ "nomCommune": "ST HILAIRE COTTES" }, { - "codePostal": "62223", - "codeCommune": "62753", - "libelleAcheminement": "ST LAURENT BLANGY", - "nomCommune": "ST LAURENT BLANGY" + "codePostal": "62185", + "codeCommune": "62769", + "libelleAcheminement": "ST TRICAT", + "nomCommune": "ST TRICAT" }, { - "codePostal": "62560", - "codeCommune": "62760", - "libelleAcheminement": "ST MARTIN D HARDINGHEM", - "nomCommune": "ST MARTIN D HARDINGHEM" + "codePostal": "62350", + "codeCommune": "62770", + "libelleAcheminement": "ST VENANT", + "nomCommune": "ST VENANT" }, { - "codePostal": "62500", - "codeCommune": "62765", - "libelleAcheminement": "ST OMER", - "nomCommune": "ST OMER" + "codePostal": "62860", + "codeCommune": "62780", + "libelleAcheminement": "SAUCHY CAUCHY", + "nomCommune": "SAUCHY CAUCHY" }, { - "codePostal": "62162", - "codeCommune": "62766", - "libelleAcheminement": "ST OMER CAPELLE", - "nomCommune": "ST OMER CAPELLE" + "codePostal": "62860", + "codeCommune": "62782", + "libelleAcheminement": "SAUDEMONT", + "nomCommune": "SAUDEMONT" }, { - "codePostal": "62870", - "codeCommune": "62768", - "libelleAcheminement": "ST REMY AU BOIS", - "nomCommune": "ST REMY AU BOIS" + "codePostal": "62380", + "codeCommune": "62788", + "libelleAcheminement": "SENINGHEM", + "nomCommune": "SENINGHEM" }, { - "codePostal": "62170", - "codeCommune": "62787", - "libelleAcheminement": "SEMPY", - "nomCommune": "SEMPY" + "codePostal": "62240", + "codeCommune": "62789", + "libelleAcheminement": "SENLECQUES", + "nomCommune": "SENLECQUES" }, { - "codePostal": "62111", - "codeCommune": "62800", - "libelleAcheminement": "SOUASTRE", - "nomCommune": "SOUASTRE" + "codePostal": "62910", + "codeCommune": "62792", + "libelleAcheminement": "SERQUES", + "nomCommune": "SERQUES" }, { - "codePostal": "62810", - "codeCommune": "62804", - "libelleAcheminement": "SUS ST LEGER", - "nomCommune": "SUS ST LEGER" + "codePostal": "62530", + "codeCommune": "62793", + "libelleAcheminement": "SERVINS", + "nomCommune": "SERVINS" }, { - "codePostal": "62140", - "codeCommune": "62824", - "libelleAcheminement": "TORTEFONTAINE", - "nomCommune": "TORTEFONTAINE" + "codePostal": "62129", + "codeCommune": "62811", + "libelleAcheminement": "THEROUANNE", + "nomCommune": "THEROUANNE" }, { - "codePostal": "62270", - "codeCommune": "62833", - "libelleAcheminement": "VACQUERIE LE BOUCQ", - "nomCommune": "VACQUERIE LE BOUCQ" + "codePostal": "62690", + "codeCommune": "62816", + "libelleAcheminement": "TILLOY LES HERMAVILLE", + "nomCommune": "TILLOY LES HERMAVILLE" }, { - "codePostal": "62131", - "codeCommune": "62836", - "libelleAcheminement": "VAUDRICOURT", - "nomCommune": "VAUDRICOURT" + "codePostal": "62134", + "codeCommune": "62818", + "libelleAcheminement": "TILLY CAPELLE", + "nomCommune": "TILLY CAPELLE" + }, + { + "codePostal": "62310", + "codeCommune": "62823", + "libelleAcheminement": "TORCY", + "nomCommune": "TORCY" + }, + { + "codePostal": "62890", + "codeCommune": "62827", + "libelleAcheminement": "TOURNEHEM SUR LA HEM", + "nomCommune": "TOURNEHEM SUR LA HEM" + }, + { + "codePostal": "62310", + "codeCommune": "62828", + "libelleAcheminement": "TRAMECOURT", + "nomCommune": "TRAMECOURT" }, { "codePostal": "62390", @@ -20592,28 +20580,22 @@ "nomCommune": "VAULX" }, { - "codePostal": "62159", - "codeCommune": "62839", - "libelleAcheminement": "VAULX VRAUCOURT", - "nomCommune": "VAULX VRAUCOURT" - }, - { - "codePostal": "62310", - "codeCommune": "62843", - "libelleAcheminement": "VERCHIN", - "nomCommune": "VERCHIN" + "codePostal": "62560", + "codeCommune": "62844", + "libelleAcheminement": "VERCHOCQ", + "nomCommune": "VERCHOCQ" }, { - "codePostal": "62131", - "codeCommune": "62848", - "libelleAcheminement": "VERQUIN", - "nomCommune": "VERQUIN" + "codePostal": "62162", + "codeCommune": "62852", + "libelleAcheminement": "VIEILLE EGLISE", + "nomCommune": "VIEILLE EGLISE" }, { - "codePostal": "62144", - "codeCommune": "62854", - "libelleAcheminement": "VILLERS AU BOIS", - "nomCommune": "VILLERS AU BOIS" + "codePostal": "62450", + "codeCommune": "62855", + "libelleAcheminement": "VILLERS AU FLOS", + "nomCommune": "VILLERS AU FLOS" }, { "codePostal": "62690", @@ -20622,82 +20604,70 @@ "nomCommune": "VILLERS CHATEL" }, { - "codePostal": "62156", - "codeCommune": "62864", - "libelleAcheminement": "VIS EN ARTOIS", - "nomCommune": "VIS EN ARTOIS" - }, - { - "codePostal": "62490", - "codeCommune": "62865", - "libelleAcheminement": "VITRY EN ARTOIS", - "nomCommune": "VITRY EN ARTOIS" - }, - { - "codePostal": "62123", - "codeCommune": "62874", - "libelleAcheminement": "WANQUETIN", - "nomCommune": "WANQUETIN" + "codePostal": "62127", + "codeCommune": "62860", + "libelleAcheminement": "VILLERS SIR SIMON", + "nomCommune": "VILLERS SIR SIMON" }, { - "codePostal": "62450", - "codeCommune": "62876", - "libelleAcheminement": "WARLENCOURT EAUCOURT", - "nomCommune": "WARLENCOURT EAUCOURT" + "codePostal": "62250", + "codeCommune": "62867", + "libelleAcheminement": "WACQUINGHEN", + "nomCommune": "WACQUINGHEN" }, { - "codePostal": "62810", - "codeCommune": "62879", - "libelleAcheminement": "WARLUZEL", - "nomCommune": "WARLUZEL" + "codePostal": "62217", + "codeCommune": "62869", + "libelleAcheminement": "WAILLY", + "nomCommune": "WAILLY" }, { - "codePostal": "62142", - "codeCommune": "62880", - "libelleAcheminement": "LE WAST", - "nomCommune": "LE WAST" + "codePostal": "62580", + "codeCommune": "62892", + "libelleAcheminement": "WILLERVAL", + "nomCommune": "WILLERVAL" }, { - "codePostal": "62650", - "codeCommune": "62886", - "libelleAcheminement": "WICQUINGHEM", - "nomCommune": "WICQUINGHEM" + "codePostal": "62219", + "codeCommune": "62898", + "libelleAcheminement": "WISQUES", + "nomCommune": "WISQUES" }, { - "codePostal": "62630", - "codeCommune": "62887", - "libelleAcheminement": "WIDEHEM", - "nomCommune": "WIDEHEM" + "codePostal": "62120", + "codeCommune": "62901", + "libelleAcheminement": "WITTES", + "nomCommune": "WITTES" }, { - "codePostal": "62830", - "codeCommune": "62888", - "libelleAcheminement": "WIERRE AU BOIS", - "nomCommune": "WIERRE AU BOIS" + "codePostal": "62370", + "codeCommune": "62906", + "libelleAcheminement": "ZUTKERQUE", + "nomCommune": "ZUTKERQUE" }, { - "codePostal": "62500", - "codeCommune": "62905", - "libelleAcheminement": "ZUDAUSQUES", - "nomCommune": "ZUDAUSQUES" + "codePostal": "62124", + "codeCommune": "62909", + "libelleAcheminement": "YTRES", + "nomCommune": "YTRES" }, { - "codePostal": "63420", - "codeCommune": "63006", - "libelleAcheminement": "ANZAT LE LUGUET", - "nomCommune": "ANZAT LE LUGUET" + "codePostal": "63980", + "codeCommune": "63002", + "libelleAcheminement": "AIX LA FAYETTE", + "nomCommune": "AIX LA FAYETTE" }, { - "codePostal": "63420", - "codeCommune": "63007", - "libelleAcheminement": "APCHAT", - "nomCommune": "APCHAT" + "codePostal": "63770", + "codeCommune": "63004", + "libelleAcheminement": "LES ANCIZES COMPS", + "nomCommune": "LES ANCIZES COMPS" }, { - "codePostal": "63930", - "codeCommune": "63016", - "libelleAcheminement": "AUGEROLLES", - "nomCommune": "AUGEROLLES" + "codePostal": "63120", + "codeCommune": "63015", + "libelleAcheminement": "AUBUSSON D AUVERGNE", + "nomCommune": "AUBUSSON D AUVERGNE" }, { "codePostal": "63570", @@ -20706,10 +20676,16 @@ "nomCommune": "AUZAT LA COMBELLE" }, { - "codePostal": "63910", - "codeCommune": "63049", - "libelleAcheminement": "BOUZEL", - "nomCommune": "BOUZEL" + "codePostal": "63690", + "codeCommune": "63024", + "libelleAcheminement": "AVEZE", + "nomCommune": "AVEZE" + }, + { + "codePostal": "63970", + "codeCommune": "63026", + "libelleAcheminement": "AYDAT", + "nomCommune": "AYDAT" }, { "codePostal": "63570", @@ -20718,28 +20694,34 @@ "nomCommune": "BRASSAC LES MINES" }, { - "codePostal": "63500", - "codeCommune": "63051", - "libelleAcheminement": "BRENAT", - "nomCommune": "BRENAT" + "codePostal": "63820", + "codeCommune": "63053", + "libelleAcheminement": "BRIFFONS", + "nomCommune": "BRIFFONS" }, { - "codePostal": "63340", - "codeCommune": "63052", - "libelleAcheminement": "LE BREUIL SUR COUZE", - "nomCommune": "LE BREUIL SUR COUZE" + "codePostal": "63118", + "codeCommune": "63063", + "libelleAcheminement": "CEBAZAT", + "nomCommune": "CEBAZAT" }, { - "codePostal": "63880", - "codeCommune": "63057", - "libelleAcheminement": "LE BRUGERON", - "nomCommune": "LE BRUGERON" + "codePostal": "63620", + "codeCommune": "63064", + "libelleAcheminement": "LA CELLE", + "nomCommune": "LA CELLE" }, { - "codePostal": "63340", - "codeCommune": "63074", - "libelleAcheminement": "CHALUS", - "nomCommune": "CHALUS" + "codePostal": "63330", + "codeCommune": "63067", + "libelleAcheminement": "LA CELLETTE", + "nomCommune": "LA CELLETTE" + }, + { + "codePostal": "63320", + "codeCommune": "63073", + "libelleAcheminement": "CHADELEUF", + "nomCommune": "CHADELEUF" }, { "codePostal": "63400", @@ -20748,34 +20730,16 @@ "nomCommune": "CHAMALIERES" }, { - "codePostal": "63580", - "codeCommune": "63079", - "libelleAcheminement": "CHAMPAGNAT LE JEUNE", - "nomCommune": "CHAMPAGNAT LE JEUNE" - }, - { - "codePostal": "63320", - "codeCommune": "63080", - "libelleAcheminement": "CHAMPEIX", - "nomCommune": "CHAMPEIX" - }, - { - "codePostal": "63420", - "codeCommune": "63087", - "libelleAcheminement": "LA CHAPELLE MARCOUSSE", - "nomCommune": "LA CHAPELLE MARCOUSSE" - }, - { - "codePostal": "63340", - "codeCommune": "63091", - "libelleAcheminement": "CHARBONNIER LES MINES", - "nomCommune": "CHARBONNIER LES MINES" + "codePostal": "63980", + "codeCommune": "63076", + "libelleAcheminement": "CHAMBON SUR DOLORE", + "nomCommune": "CHAMBON SUR DOLORE" }, { - "codePostal": "63410", - "codeCommune": "63093", - "libelleAcheminement": "CHARBONNIERES LES VIEILLES", - "nomCommune": "CHARBONNIERES LES VIEILLES" + "codePostal": "63260", + "codeCommune": "63090", + "libelleAcheminement": "CHAPTUZAT", + "nomCommune": "CHAPTUZAT" }, { "codePostal": "63640", @@ -20785,15 +20749,9 @@ }, { "codePostal": "63290", - "codeCommune": "63095", - "libelleAcheminement": "CHARNAT", - "nomCommune": "CHARNAT" - }, - { - "codePostal": "63330", - "codeCommune": "63101", - "libelleAcheminement": "CHATEAU SUR CHER", - "nomCommune": "CHATEAU SUR CHER" + "codeCommune": "63102", + "libelleAcheminement": "CHATELDON", + "nomCommune": "CHATELDON" }, { "codePostal": "63660", @@ -20802,34 +20760,40 @@ "nomCommune": "LA CHAULME" }, { - "codePostal": "63100", + "codePostal": "63117", + "codeCommune": "63106", + "libelleAcheminement": "CHAURIAT", + "nomCommune": "CHAURIAT" + }, + { + "codePostal": "63720", + "codeCommune": "63107", + "libelleAcheminement": "CHAVAROUX", + "nomCommune": "CHAVAROUX" + }, + { + "codePostal": "63000", "codeCommune": "63113", "libelleAcheminement": "CLERMONT FERRAND", "nomCommune": "CLERMONT FERRAND" }, { - "codePostal": "63380", - "codeCommune": "63115", - "libelleAcheminement": "COMBRAILLES", - "nomCommune": "COMBRAILLES" - }, - { - "codePostal": "63450", - "codeCommune": "63123", - "libelleAcheminement": "COURNOLS", - "nomCommune": "COURNOLS" + "codePostal": "63340", + "codeCommune": "63114", + "libelleAcheminement": "COLLANGES", + "nomCommune": "COLLANGES" }, { - "codePostal": "63700", - "codeCommune": "63130", - "libelleAcheminement": "LA CROUZILLE", - "nomCommune": "LA CROUZILLE" + "codePostal": "63460", + "codeCommune": "63116", + "libelleAcheminement": "COMBRONDE", + "nomCommune": "COMBRONDE" }, { - "codePostal": "63590", - "codeCommune": "63132", - "libelleAcheminement": "CUNLHAT", - "nomCommune": "CUNLHAT" + "codePostal": "63810", + "codeCommune": "63129", + "libelleAcheminement": "CROS", + "nomCommune": "CROS" }, { "codePostal": "63340", @@ -20838,34 +20802,70 @@ "nomCommune": "DAUZAT SUR VODABLE" }, { - "codePostal": "63720", - "codeCommune": "63148", - "libelleAcheminement": "ENNEZAT", - "nomCommune": "ENNEZAT" + "codePostal": "63520", + "codeCommune": "63136", + "libelleAcheminement": "DOMAIZE", + "nomCommune": "DOMAIZE" }, { - "codePostal": "63850", - "codeCommune": "63153", - "libelleAcheminement": "ESPINCHAL", - "nomCommune": "ESPINCHAL" + "codePostal": "63260", + "codeCommune": "63143", + "libelleAcheminement": "EFFIAT", + "nomCommune": "EFFIAT" + }, + { + "codePostal": "63530", + "codeCommune": "63150", + "libelleAcheminement": "ENVAL", + "nomCommune": "ENVAL" + }, + { + "codePostal": "63300", + "codeCommune": "63151", + "libelleAcheminement": "ESCOUTOUX", + "nomCommune": "ESCOUTOUX" + }, + { + "codePostal": "63160", + "codeCommune": "63154", + "libelleAcheminement": "ESPIRAT", + "nomCommune": "ESPIRAT" + }, + { + "codePostal": "63160", + "codeCommune": "63157", + "libelleAcheminement": "FAYET LE CHATEAU", + "nomCommune": "FAYET LE CHATEAU" + }, + { + "codePostal": "63630", + "codeCommune": "63158", + "libelleAcheminement": "FAYET RONAYE", + "nomCommune": "FAYET RONAYE" + }, + { + "codePostal": "63740", + "codeCommune": "63163", + "libelleAcheminement": "GELLES", + "nomCommune": "GELLES" }, { "codePostal": "63620", - "codeCommune": "63159", - "libelleAcheminement": "FERNOEL", - "nomCommune": "FERNOEL" + "codeCommune": "63165", + "libelleAcheminement": "GIAT", + "nomCommune": "GIAT" }, { - "codePostal": "63600", - "codeCommune": "63161", - "libelleAcheminement": "LA FORIE", - "nomCommune": "LA FORIE" + "codePostal": "63200", + "codeCommune": "63167", + "libelleAcheminement": "GIMEAUX", + "nomCommune": "GIMEAUX" }, { - "codePostal": "63360", - "codeCommune": "63164", - "libelleAcheminement": "GERZAT", - "nomCommune": "GERZAT" + "codePostal": "63230", + "codeCommune": "63170", + "libelleAcheminement": "LA GOUTELLE", + "nomCommune": "LA GOUTELLE" }, { "codePostal": "63600", @@ -20874,76 +20874,76 @@ "nomCommune": "GRANDRIF" }, { - "codePostal": "63990", - "codeCommune": "63179", - "libelleAcheminement": "JOB", - "nomCommune": "JOB" + "codePostal": "63460", + "codeCommune": "63181", + "libelleAcheminement": "JOZERAND", + "nomCommune": "JOZERAND" }, { - "codePostal": "63370", - "codeCommune": "63193", - "libelleAcheminement": "LEMPDES", - "nomCommune": "LEMPDES" + "codePostal": "63680", + "codeCommune": "63192", + "libelleAcheminement": "LA TOUR D AUVERGNE", + "nomCommune": "LA TOUR D AUVERGNE" }, { - "codePostal": "63190", - "codeCommune": "63194", - "libelleAcheminement": "LEMPTY", - "nomCommune": "LEMPTY" + "codePostal": "63290", + "codeCommune": "63196", + "libelleAcheminement": "LIMONS", + "nomCommune": "LIMONS" }, { - "codePostal": "63360", - "codeCommune": "63200", - "libelleAcheminement": "LUSSAT", - "nomCommune": "LUSSAT" + "codePostal": "63410", + "codeCommune": "63198", + "libelleAcheminement": "LOUBEYRAT", + "nomCommune": "LOUBEYRAT" }, { - "codePostal": "63200", - "codeCommune": "63212", - "libelleAcheminement": "MARSAT", - "nomCommune": "MARSAT" + "codePostal": "63350", + "codeCommune": "63201", + "libelleAcheminement": "LUZILLAT", + "nomCommune": "LUZILLAT" }, { - "codePostal": "63230", - "codeCommune": "63219", - "libelleAcheminement": "MAZAYE", - "nomCommune": "MAZAYE" + "codePostal": "63200", + "codeCommune": "63203", + "libelleAcheminement": "MALAUZAT", + "nomCommune": "MALAUZAT" }, { - "codePostal": "63200", - "codeCommune": "63224", - "libelleAcheminement": "MENETROL", - "nomCommune": "MENETROL" + "codePostal": "63440", + "codeCommune": "63208", + "libelleAcheminement": "MARCILLAT", + "nomCommune": "MARCILLAT" }, { - "codePostal": "63190", - "codeCommune": "63229", - "libelleAcheminement": "MOISSAT", - "nomCommune": "MOISSAT" + "codePostal": "63940", + "codeCommune": "63211", + "libelleAcheminement": "MARSAC EN LIVRADOIS", + "nomCommune": "MARSAC EN LIVRADOIS" }, { - "codePostal": "63890", - "codeCommune": "63230", - "libelleAcheminement": "LE MONESTIER", - "nomCommune": "LE MONESTIER" + "codePostal": "63420", + "codeCommune": "63220", + "libelleAcheminement": "MAZOIRES", + "nomCommune": "MAZOIRES" }, { - "codePostal": "63310", - "codeCommune": "63232", - "libelleAcheminement": "MONS", - "nomCommune": "MONS" + "codePostal": "63240", + "codeCommune": "63236", + "libelleAcheminement": "LE MONT DORE", + "nomCommune": "MONT DORE" }, { - "codePostal": "63460", - "codeCommune": "63235", - "libelleAcheminement": "MONTCEL", - "nomCommune": "MONTCEL" + "codePostal": "63230", + "codeCommune": "63238", + "libelleAcheminement": "MONTFERMY", + "nomCommune": "MONTFERMY" }, { - "codePostal": "63340", - "codeCommune": "63242", - "libelleAcheminement": "MORIAT", - "nomCommune": "MORIAT" + "codePostal": "63260", + "codeCommune": "63240", + "libelleAcheminement": "MONTPENSIER", + "nomCommune": "MONTPENSIER" }, { "codePostal": "63200", @@ -20952,34 +20952,46 @@ "nomCommune": "CHAMBARON SUR MORGE" }, { - "codePostal": "63200", - "codeCommune": "63245", - "libelleAcheminement": "MOZAC", - "nomCommune": "MOZAC" + "codePostal": "63150", + "codeCommune": "63246", + "libelleAcheminement": "MURAT LE QUAIRE", + "nomCommune": "MURAT LE QUAIRE" }, { - "codePostal": "63120", - "codeCommune": "63249", - "libelleAcheminement": "NERONDE SUR DORE", - "nomCommune": "NERONDE SUR DORE" + "codePostal": "63320", + "codeCommune": "63250", + "libelleAcheminement": "NESCHERS", + "nomCommune": "NESCHERS" }, { - "codePostal": "63560", - "codeCommune": "63251", - "libelleAcheminement": "NEUF EGLISE", - "nomCommune": "NEUF EGLISE" + "codePostal": "63160", + "codeCommune": "63252", + "libelleAcheminement": "NEUVILLE", + "nomCommune": "NEUVILLE" }, { - "codePostal": "63210", - "codeCommune": "63257", - "libelleAcheminement": "OLBY", - "nomCommune": "OLBY" + "codePostal": "63220", + "codeCommune": "63256", + "libelleAcheminement": "NOVACELLES", + "nomCommune": "NOVACELLES" }, { - "codePostal": "63190", - "codeCommune": "63265", - "libelleAcheminement": "ORLEAT", - "nomCommune": "ORLEAT" + "codePostal": "63500", + "codeCommune": "63261", + "libelleAcheminement": "ORBEIL", + "nomCommune": "ORBEIL" + }, + { + "codePostal": "63290", + "codeCommune": "63271", + "libelleAcheminement": "PASLIERES", + "nomCommune": "PASLIERES" + }, + { + "codePostal": "63210", + "codeCommune": "63274", + "libelleAcheminement": "PERPEZAT", + "nomCommune": "PERPEZAT" }, { "codePostal": "63500", @@ -20988,118 +21000,124 @@ "nomCommune": "PERRIER" }, { - "codePostal": "63330", - "codeCommune": "63281", - "libelleAcheminement": "PIONSAT", - "nomCommune": "PIONSAT" + "codePostal": "63920", + "codeCommune": "63276", + "libelleAcheminement": "PESCHADOIRES", + "nomCommune": "PESCHADOIRES" }, { - "codePostal": "63230", - "codeCommune": "63285", - "libelleAcheminement": "PONTGIBAUD", - "nomCommune": "PONTGIBAUD" + "codePostal": "63113", + "codeCommune": "63279", + "libelleAcheminement": "PICHERANDE", + "nomCommune": "PICHERANDE" }, { - "codePostal": "63420", - "codeCommune": "63303", - "libelleAcheminement": "ROCHE CHARLES LA MAYRAND", - "nomCommune": "ROCHE CHARLES LA MAYRAND" + "codePostal": "63200", + "codeCommune": "63288", + "libelleAcheminement": "PROMPSAT", + "nomCommune": "PROMPSAT" }, { - "codePostal": "63260", - "codeCommune": "63311", - "libelleAcheminement": "ST AGOULIN", - "nomCommune": "ST AGOULIN" + "codePostal": "63470", + "codeCommune": "63289", + "libelleAcheminement": "PRONDINES", + "nomCommune": "PRONDINES" }, { - "codePostal": "63520", - "codeCommune": "63334", - "libelleAcheminement": "ST DIER D AUVERGNE", - "nomCommune": "ST DIER D AUVERGNE" + "codePostal": "63290", + "codeCommune": "63291", + "libelleAcheminement": "PUY GUILLAUME", + "nomCommune": "PUY GUILLAUME" }, { - "codePostal": "63680", - "codeCommune": "63336", - "libelleAcheminement": "ST DONAT", - "nomCommune": "ST DONAT" + "codePostal": "63160", + "codeCommune": "63297", + "libelleAcheminement": "REIGNAT", + "nomCommune": "REIGNAT" }, { - "codePostal": "63890", - "codeCommune": "63337", - "libelleAcheminement": "ST ELOY LA GLACIERE", - "nomCommune": "ST ELOY LA GLACIERE" + "codePostal": "63800", + "codeCommune": "63306", + "libelleAcheminement": "LA ROCHE NOIRE", + "nomCommune": "LA ROCHE NOIRE" }, { - "codePostal": "63600", - "codeCommune": "63341", - "libelleAcheminement": "ST FERREOL DES COTES", - "nomCommune": "ST FERREOL DES COTES" + "codePostal": "63540", + "codeCommune": "63307", + "libelleAcheminement": "ROMAGNAT", + "nomCommune": "ROMAGNAT" }, { - "codePostal": "63340", - "codeCommune": "63352", - "libelleAcheminement": "ST GERMAIN LEMBRON", - "nomCommune": "ST GERMAIN LEMBRON" + "codePostal": "63450", + "codeCommune": "63315", + "libelleAcheminement": "ST AMANT TALLENDE", + "nomCommune": "ST AMANT TALLENDE" }, { - "codePostal": "63440", - "codeCommune": "63358", - "libelleAcheminement": "ST HILAIRE LA CROIX", - "nomCommune": "ST HILAIRE LA CROIX" + "codePostal": "63410", + "codeCommune": "63318", + "libelleAcheminement": "ST ANGEL", + "nomCommune": "ST ANGEL" }, { - "codePostal": "63380", - "codeCommune": "63359", - "libelleAcheminement": "ST HILAIRE LES MONGES", - "nomCommune": "ST HILAIRE LES MONGES" + "codePostal": "63360", + "codeCommune": "63322", + "libelleAcheminement": "ST BEAUZIRE", + "nomCommune": "ST BEAUZIRE" }, { - "codePostal": "63160", - "codeCommune": "63368", - "libelleAcheminement": "ST JULIEN DE COPPEL", - "nomCommune": "ST JULIEN DE COPPEL" + "codePostal": "63390", + "codeCommune": "63329", + "libelleAcheminement": "STE CHRISTINE", + "nomCommune": "STE CHRISTINE" }, { - "codePostal": "63390", - "codeCommune": "63369", - "libelleAcheminement": "ST JULIEN LA GENESTE", - "nomCommune": "ST JULIEN LA GENESTE" + "codePostal": "63660", + "codeCommune": "63331", + "libelleAcheminement": "ST CLEMENT DE VALORGUE", + "nomCommune": "ST CLEMENT DE VALORGUE" }, { - "codePostal": "63350", - "codeCommune": "63372", - "libelleAcheminement": "ST LAURE", - "nomCommune": "ST LAURE" + "codePostal": "63310", + "codeCommune": "63332", + "libelleAcheminement": "ST CLEMENT DE REGNAT", + "nomCommune": "ST CLEMENT DE REGNAT" }, { - "codePostal": "63270", - "codeCommune": "63378", - "libelleAcheminement": "ST MAURICE", - "nomCommune": "ST MAURICE" + "codePostal": "63850", + "codeCommune": "63346", + "libelleAcheminement": "ST GENES CHAMPESPE", + "nomCommune": "ST GENES CHAMPESPE" }, { - "codePostal": "63710", - "codeCommune": "63380", - "libelleAcheminement": "ST NECTAIRE", - "nomCommune": "ST NECTAIRE" + "codePostal": "63800", + "codeCommune": "63350", + "libelleAcheminement": "ST GEORGES SUR ALLIER", + "nomCommune": "ST GEORGES SUR ALLIER" }, { - "codePostal": "63440", - "codeCommune": "63382", - "libelleAcheminement": "ST PARDOUX", - "nomCommune": "ST PARDOUX" + "codePostal": "63230", + "codeCommune": "63363", + "libelleAcheminement": "ST JACQUES D AMBUR", + "nomCommune": "ST JACQUES D AMBUR" }, { - "codePostal": "63610", - "codeCommune": "63383", - "libelleAcheminement": "ST PIERRE COLAMINE", - "nomCommune": "ST PIERRE COLAMINE" + "codePostal": "63490", + "codeCommune": "63366", + "libelleAcheminement": "ST JEAN EN VAL", + "nomCommune": "ST JEAN EN VAL" }, { - "codePostal": "63550", - "codeCommune": "63393", - "libelleAcheminement": "ST REMY SUR DUROLLE", - "nomCommune": "ST REMY SUR DUROLLE" + "codePostal": "63310", + "codeCommune": "63387", + "libelleAcheminement": "ST PRIEST BRAMEFANT", + "nomCommune": "ST PRIEST BRAMEFANT" + }, + { + "codePostal": "63440", + "codeCommune": "63390", + "libelleAcheminement": "ST QUINTIN SUR SIOULE", + "nomCommune": "ST QUINTIN SUR SIOULE" }, { "codePostal": "63450", @@ -21108,16 +21126,10 @@ "nomCommune": "ST SANDOUX" }, { - "codePostal": "63950", - "codeCommune": "63397", - "libelleAcheminement": "ST SAUVES D AUVERGNE", - "nomCommune": "ST SAUVES D AUVERGNE" - }, - { - "codePostal": "63220", - "codeCommune": "63398", - "libelleAcheminement": "ST SAUVEUR LA SAGNE", - "nomCommune": "ST SAUVEUR LA SAGNE" + "codePostal": "63550", + "codeCommune": "63402", + "libelleAcheminement": "ST VICTOR MONTVIANEIX", + "nomCommune": "ST VICTOR MONTVIANEIX" }, { "codePostal": "63260", @@ -21132,16 +21144,22 @@ "nomCommune": "SAURET BESSERVE" }, { - "codePostal": "63840", - "codeCommune": "63412", - "libelleAcheminement": "SAUVESSANGES", - "nomCommune": "SAUVESSANGES" + "codePostal": "63320", + "codeCommune": "63409", + "libelleAcheminement": "SAURIER", + "nomCommune": "SAURIER" }, { - "codePostal": "63730", - "codeCommune": "63413", - "libelleAcheminement": "LA SAUVETAT", - "nomCommune": "LA SAUVETAT" + "codePostal": "63120", + "codeCommune": "63414", + "libelleAcheminement": "SAUVIAT", + "nomCommune": "SAUVIAT" + }, + { + "codePostal": "63490", + "codeCommune": "63415", + "libelleAcheminement": "SAUXILLANGES", + "nomCommune": "SAUXILLANGES" }, { "codePostal": "63530", @@ -21150,16 +21168,34 @@ "nomCommune": "SAYAT" }, { - "codePostal": "63560", - "codeCommune": "63419", - "libelleAcheminement": "SERVANT", - "nomCommune": "SERVANT" + "codePostal": "63690", + "codeCommune": "63426", + "libelleAcheminement": "TAUVES", + "nomCommune": "TAUVES" }, { - "codePostal": "63490", - "codeCommune": "63423", - "libelleAcheminement": "SUGERES", - "nomCommune": "SUGERES" + "codePostal": "63460", + "codeCommune": "63427", + "libelleAcheminement": "TEILHEDE", + "nomCommune": "TEILHEDE" + }, + { + "codePostal": "63300", + "codeCommune": "63430", + "libelleAcheminement": "THIERS", + "nomCommune": "THIERS" + }, + { + "codePostal": "63600", + "codeCommune": "63431", + "libelleAcheminement": "THIOLIERES", + "nomCommune": "THIOLIERES" + }, + { + "codePostal": "63590", + "codeCommune": "63434", + "libelleAcheminement": "TOURS SUR MEYMONT", + "nomCommune": "TOURS SUR MEYMONT" }, { "codePostal": "63320", @@ -21168,22 +21204,28 @@ "nomCommune": "TOURZEL RONZIERES" }, { - "codePostal": "63520", - "codeCommune": "63438", - "libelleAcheminement": "TREZIOUX", - "nomCommune": "TREZIOUX" + "codePostal": "63490", + "codeCommune": "63439", + "libelleAcheminement": "USSON", + "nomCommune": "USSON" }, { - "codePostal": "63600", - "codeCommune": "63441", - "libelleAcheminement": "VALCIVIERES", - "nomCommune": "VALCIVIERES" + "codePostal": "63710", + "codeCommune": "63449", + "libelleAcheminement": "LE VERNET STE MARGUERITE", + "nomCommune": "LE VERNET STE MARGUERITE" }, { - "codePostal": "63580", - "codeCommune": "63442", - "libelleAcheminement": "VALZ SOUS CHATEAUNEUF", - "nomCommune": "VALZ SOUS CHATEAUNEUF" + "codePostal": "63470", + "codeCommune": "63450", + "libelleAcheminement": "VERNEUGHEOL", + "nomCommune": "VERNEUGHEOL" + }, + { + "codePostal": "63910", + "codeCommune": "63453", + "libelleAcheminement": "VERTAIZON", + "nomCommune": "VERTAIZON" }, { "codePostal": "63960", @@ -21197,12 +21239,6 @@ "libelleAcheminement": "VICHEL", "nomCommune": "VICHEL" }, - { - "codePostal": "63340", - "codeCommune": "63458", - "libelleAcheminement": "VILLENEUVE", - "nomCommune": "VILLENEUVE" - }, { "codePostal": "63350", "codeCommune": "63461", @@ -21210,46 +21246,70 @@ "nomCommune": "VINZELLES" }, { - "codePostal": "64360", - "codeCommune": "64005", - "libelleAcheminement": "ABOS", - "nomCommune": "ABOS" - }, - { - "codePostal": "64220", - "codeCommune": "64008", - "libelleAcheminement": "AHAXE ALCIETTE BASCASSAN", - "nomCommune": "AHAXE ALCIETTE BASCASSAN" + "codePostal": "63410", + "codeCommune": "63464", + "libelleAcheminement": "VITRAC", + "nomCommune": "VITRAC" + }, + { + "codePostal": "63840", + "codeCommune": "63465", + "libelleAcheminement": "VIVEROLS", + "nomCommune": "VIVEROLS" + }, + { + "codePostal": "63200", + "codeCommune": "63473", + "libelleAcheminement": "YSSAC LA TOURETTE", + "nomCommune": "YSSAC LA TOURETTE" + }, + { + "codePostal": "64210", + "codeCommune": "64009", + "libelleAcheminement": "AHETZE", + "nomCommune": "AHETZE" + }, + { + "codePostal": "64470", + "codeCommune": "64017", + "libelleAcheminement": "ALOS SIBAS ABENSE", + "nomCommune": "ALOS SIBAS ABENSE" }, { "codePostal": "64120", - "codeCommune": "64010", - "libelleAcheminement": "AICIRITS CAMOU SUHAST", - "nomCommune": "AICIRITS CAMOU SUHAST" + "codeCommune": "64019", + "libelleAcheminement": "AMOROTS SUCCOS", + "nomCommune": "AMOROTS SUCCOS" }, { - "codePostal": "64430", - "codeCommune": "64016", - "libelleAcheminement": "ALDUDES", - "nomCommune": "ALDUDES" + "codePostal": "64600", + "codeCommune": "64024", + "libelleAcheminement": "ANGLET", + "nomCommune": "ANGLET" + }, + { + "codePostal": "64350", + "codeCommune": "64028", + "libelleAcheminement": "ANOYE", + "nomCommune": "ANOYE" }, { "codePostal": "64190", - "codeCommune": "64025", - "libelleAcheminement": "ANGOUS", - "nomCommune": "ANGOUS" + "codeCommune": "64032", + "libelleAcheminement": "ARAUJUZON", + "nomCommune": "ARAUJUZON" }, { - "codePostal": "64570", - "codeCommune": "64029", - "libelleAcheminement": "ARAMITS", - "nomCommune": "ARAMITS" + "codePostal": "64230", + "codeCommune": "64037", + "libelleAcheminement": "ARBUS", + "nomCommune": "ARBUS" }, { - "codePostal": "64210", - "codeCommune": "64035", - "libelleAcheminement": "ARBONNE", - "nomCommune": "ARBONNE" + "codePostal": "64200", + "codeCommune": "64038", + "libelleAcheminement": "ARCANGUES", + "nomCommune": "ARCANGUES" }, { "codePostal": "64300", @@ -21257,53 +21317,77 @@ "libelleAcheminement": "ARGAGNON", "nomCommune": "ARGAGNON" }, - { - "codePostal": "64370", - "codeCommune": "64048", - "libelleAcheminement": "ARNOS", - "nomCommune": "ARNOS" - }, { "codePostal": "64120", - "codeCommune": "64049", - "libelleAcheminement": "AROUE ITHOROTS OLHAIBY", - "nomCommune": "AROUE ITHOROTS OLHAIBY" + "codeCommune": "64045", + "libelleAcheminement": "ARHANSUS", + "nomCommune": "ARHANSUS" }, { - "codePostal": "64130", - "codeCommune": "64050", - "libelleAcheminement": "ARRAST LARREBIEU", - "nomCommune": "ARRAST LARREBIEU" + "codePostal": "64640", + "codeCommune": "64046", + "libelleAcheminement": "ARMENDARITS", + "nomCommune": "ARMENDARITS" }, { - "codePostal": "64420", - "codeCommune": "64059", - "libelleAcheminement": "ARTIGUELOUTAN", - "nomCommune": "ARTIGUELOUTAN" + "codePostal": "64120", + "codeCommune": "64051", + "libelleAcheminement": "ARRAUTE CHARRITTE", + "nomCommune": "ARRAUTE CHARRITTE" }, { "codePostal": "64800", - "codeCommune": "64068", - "libelleAcheminement": "ASSON", - "nomCommune": "ASSON" + "codeCommune": "64058", + "libelleAcheminement": "ARTHEZ D ASSON", + "nomCommune": "ARTHEZ D ASSON" + }, + { + "codePostal": "64230", + "codeCommune": "64060", + "libelleAcheminement": "ARTIGUELOUVE", + "nomCommune": "ARTIGUELOUVE" }, { "codePostal": "64260", - "codeCommune": "64069", - "libelleAcheminement": "ASTE BEON", - "nomCommune": "ASTE BEON" + "codeCommune": "64062", + "libelleAcheminement": "ARUDY", + "nomCommune": "ARUDY" }, { - "codePostal": "64230", - "codeCommune": "64073", - "libelleAcheminement": "AUBIN", - "nomCommune": "AUBIN" + "codePostal": "64660", + "codeCommune": "64064", + "libelleAcheminement": "ASASP ARROS", + "nomCommune": "ASASP ARROS" }, { - "codePostal": "64460", - "codeCommune": "64089", - "libelleAcheminement": "BALEIX", - "nomCommune": "BALEIX" + "codePostal": "64510", + "codeCommune": "64067", + "libelleAcheminement": "ASSAT", + "nomCommune": "ASSAT" + }, + { + "codePostal": "64450", + "codeCommune": "64077", + "libelleAcheminement": "AUGA", + "nomCommune": "AUGA" + }, + { + "codePostal": "64450", + "codeCommune": "64078", + "libelleAcheminement": "AURIAC", + "nomCommune": "AURIAC" + }, + { + "codePostal": "64390", + "codeCommune": "64083", + "libelleAcheminement": "AUTEVIELLE ST MARTIN BIDEREN", + "nomCommune": "AUTEVIELLE ST MARTIN BIDEREN" + }, + { + "codePostal": "64300", + "codeCommune": "64088", + "libelleAcheminement": "BALANSUN", + "nomCommune": "BALANSUN" }, { "codePostal": "64330", @@ -21312,16 +21396,22 @@ "nomCommune": "BALIRACQ MAUMUSSON" }, { - "codePostal": "64530", - "codeCommune": "64097", - "libelleAcheminement": "BARZUN", - "nomCommune": "BARZUN" + "codePostal": "64800", + "codeCommune": "64101", + "libelleAcheminement": "BAUDREIX", + "nomCommune": "BAUDREIX" }, { - "codePostal": "64460", - "codeCommune": "64103", - "libelleAcheminement": "BEDEILLE", - "nomCommune": "BEDEILLE" + "codePostal": "64120", + "codeCommune": "64105", + "libelleAcheminement": "BEGUIOS", + "nomCommune": "BEGUIOS" + }, + { + "codePostal": "64270", + "codeCommune": "64108", + "libelleAcheminement": "BELLOCQ", + "nomCommune": "BELLOCQ" }, { "codePostal": "64440", @@ -21330,22 +21420,16 @@ "nomCommune": "BEOST" }, { - "codePostal": "64460", - "codeCommune": "64111", - "libelleAcheminement": "BENTAYOU SEREE", - "nomCommune": "BENTAYOU SEREE" - }, - { - "codePostal": "64300", - "codeCommune": "64112", - "libelleAcheminement": "BERENX", - "nomCommune": "BERENX" + "codePostal": "64270", + "codeCommune": "64113", + "libelleAcheminement": "BERGOUEY VIELLENAVE", + "nomCommune": "BERGOUEY VIELLENAVE" }, { - "codePostal": "64130", - "codeCommune": "64115", - "libelleAcheminement": "BERROGAIN LARUNS", - "nomCommune": "BERROGAIN LARUNS" + "codePostal": "64350", + "codeCommune": "64118", + "libelleAcheminement": "BETRACQ", + "nomCommune": "BETRACQ" }, { "codePostal": "64800", @@ -21354,40 +21438,70 @@ "nomCommune": "BEUSTE" }, { - "codePostal": "64260", - "codeCommune": "64127", - "libelleAcheminement": "BIELLE", - "nomCommune": "BIELLE" + "codePostal": "64210", + "codeCommune": "64125", + "libelleAcheminement": "BIDART", + "nomCommune": "BIDART" }, { - "codePostal": "64240", - "codeCommune": "64134", - "libelleAcheminement": "BONLOC", - "nomCommune": "BONLOC" + "codePostal": "64140", + "codeCommune": "64129", + "libelleAcheminement": "BILLERE", + "nomCommune": "BILLERE" + }, + { + "codePostal": "64700", + "codeCommune": "64130", + "libelleAcheminement": "BIRIATOU", + "nomCommune": "BIRIATOU" }, { "codePostal": "64300", - "codeCommune": "64135", - "libelleAcheminement": "BONNUT", - "nomCommune": "BONNUT" + "codeCommune": "64131", + "libelleAcheminement": "BIRON", + "nomCommune": "BIRON" }, { - "codePostal": "64410", - "codeCommune": "64143", - "libelleAcheminement": "BOUILLON", - "nomCommune": "BOUILLON" + "codePostal": "64320", + "codeCommune": "64132", + "libelleAcheminement": "BIZANOS", + "nomCommune": "BIZANOS" }, { - "codePostal": "64800", - "codeCommune": "64148", - "libelleAcheminement": "BRUGES CAPBIS MIFAGET", - "nomCommune": "BRUGES CAPBIS MIFAGET" + "codePostal": "64450", + "codeCommune": "64146", + "libelleAcheminement": "BOURNOS", + "nomCommune": "BOURNOS" }, { - "codePostal": "64360", - "codeCommune": "64165", - "libelleAcheminement": "CARDESSE", - "nomCommune": "CARDESSE" + "codePostal": "64190", + "codeCommune": "64149", + "libelleAcheminement": "BUGNEIN", + "nomCommune": "BUGNEIN" + }, + { + "codePostal": "64390", + "codeCommune": "64151", + "libelleAcheminement": "BURGARONNE", + "nomCommune": "BURGARONNE" + }, + { + "codePostal": "64220", + "codeCommune": "64154", + "libelleAcheminement": "BUSSUNARITS SARRASQUETTE", + "nomCommune": "BUSSUNARITS SARRASQUETTE" + }, + { + "codePostal": "64680", + "codeCommune": "64156", + "libelleAcheminement": "BUZIET", + "nomCommune": "BUZIET" + }, + { + "codePostal": "64410", + "codeCommune": "64158", + "libelleAcheminement": "CABIDOS", + "nomCommune": "CABIDOS" }, { "codePostal": "64270", @@ -21396,40 +21510,52 @@ "nomCommune": "CARRESSE CASSABER" }, { - "codePostal": "64300", - "codeCommune": "64177", - "libelleAcheminement": "CASTETIS", - "nomCommune": "CASTETIS" + "codePostal": "64270", + "codeCommune": "64168", + "libelleAcheminement": "CARRESSE CASSABER", + "nomCommune": "CARRESSE CASSABER" }, { - "codePostal": "64350", - "codeCommune": "64182", - "libelleAcheminement": "CASTILLON DE LEMBEYE", - "nomCommune": "CASTILLON DE LEMBEYE" + "codePostal": "64370", + "codeCommune": "64172", + "libelleAcheminement": "CASTEIDE CANDAU", + "nomCommune": "CASTEIDE CANDAU" }, { - "codePostal": "64230", - "codeCommune": "64183", - "libelleAcheminement": "CAUBIOS LOOS", - "nomCommune": "CAUBIOS LOOS" + "codePostal": "64190", + "codeCommune": "64176", + "libelleAcheminement": "CASTETBON", + "nomCommune": "CASTETBON" }, { - "codePostal": "64230", - "codeCommune": "64198", - "libelleAcheminement": "DENGUIN", - "nomCommune": "DENGUIN" + "codePostal": "64330", + "codeCommune": "64180", + "libelleAcheminement": "CASTETPUGON", + "nomCommune": "CASTETPUGON" }, { - "codePostal": "64870", - "codeCommune": "64207", - "libelleAcheminement": "ESCOU", - "nomCommune": "ESCOU" + "codePostal": "64410", + "codeCommune": "64195", + "libelleAcheminement": "COUBLUCQ", + "nomCommune": "COUBLUCQ" }, { - "codePostal": "64870", - "codeCommune": "64209", - "libelleAcheminement": "ESCOUT", - "nomCommune": "ESCOUT" + "codePostal": "64350", + "codeCommune": "64196", + "libelleAcheminement": "CROUSEILLES", + "nomCommune": "CROUSEILLES" + }, + { + "codePostal": "64330", + "codeCommune": "64199", + "libelleAcheminement": "DIUSSE", + "nomCommune": "DIUSSE" + }, + { + "codePostal": "64120", + "codeCommune": "64202", + "libelleAcheminement": "DOMEZAIN BERRAUTE", + "nomCommune": "DOMEZAIN BERRAUTE" }, { "codePostal": "64350", @@ -21437,12 +21563,6 @@ "libelleAcheminement": "ESCURES", "nomCommune": "ESCURES" }, - { - "codePostal": "64250", - "codeCommune": "64213", - "libelleAcheminement": "ESPELETTE", - "nomCommune": "ESPELETTE" - }, { "codePostal": "64130", "codeCommune": "64214", @@ -21450,16 +21570,16 @@ "nomCommune": "ESPES UNDUREIN" }, { - "codePostal": "64400", - "codeCommune": "64220", - "libelleAcheminement": "ESTOS", - "nomCommune": "ESTOS" + "codePostal": "64420", + "codeCommune": "64216", + "libelleAcheminement": "ESPOEY", + "nomCommune": "ESPOEY" }, { - "codePostal": "64470", - "codeCommune": "64222", - "libelleAcheminement": "ETCHEBAR", - "nomCommune": "ETCHEBAR" + "codePostal": "64400", + "codeCommune": "64224", + "libelleAcheminement": "EYSUS", + "nomCommune": "EYSUS" }, { "codePostal": "64570", @@ -21474,112 +21594,112 @@ "nomCommune": "ANCE FEAS" }, { - "codePostal": "64130", - "codeCommune": "64231", - "libelleAcheminement": "GARINDEIN", - "nomCommune": "GARINDEIN" + "codePostal": "64410", + "codeCommune": "64226", + "libelleAcheminement": "FICHOUS RIUMAYOU", + "nomCommune": "FICHOUS RIUMAYOU" }, { - "codePostal": "64400", - "codeCommune": "64245", - "libelleAcheminement": "GOES", - "nomCommune": "GOES" + "codePostal": "64220", + "codeCommune": "64229", + "libelleAcheminement": "GAMARTHE", + "nomCommune": "GAMARTHE" + }, + { + "codePostal": "64290", + "codeCommune": "64230", + "libelleAcheminement": "GAN", + "nomCommune": "GAN" }, { "codePostal": "64130", - "codeCommune": "64247", - "libelleAcheminement": "GOTEIN LIBARRENX", - "nomCommune": "GOTEIN LIBARRENX" + "codeCommune": "64231", + "libelleAcheminement": "GARINDEIN", + "nomCommune": "GARINDEIN" }, { - "codePostal": "64390", - "codeCommune": "64251", - "libelleAcheminement": "GUINARTHE PARENTIES", - "nomCommune": "GUINARTHE PARENTIES" + "codePostal": "64330", + "codeCommune": "64233", + "libelleAcheminement": "GARLIN", + "nomCommune": "GARLIN" }, { - "codePostal": "64480", - "codeCommune": "64255", - "libelleAcheminement": "HALSOU", - "nomCommune": "HALSOU" + "codePostal": "64120", + "codeCommune": "64235", + "libelleAcheminement": "GARRIS", + "nomCommune": "GARRIS" }, { - "codePostal": "64160", - "codeCommune": "64262", - "libelleAcheminement": "HIGUERES SOUYE", - "nomCommune": "HIGUERES SOUYE" + "codePostal": "64350", + "codeCommune": "64236", + "libelleAcheminement": "GAYON", + "nomCommune": "GAYON" }, { - "codePostal": "64120", - "codeCommune": "64265", - "libelleAcheminement": "HOSTA", - "nomCommune": "HOSTA" + "codePostal": "64160", + "codeCommune": "64239", + "libelleAcheminement": "GERDEREST", + "nomCommune": "GERDEREST" }, { "codePostal": "64420", - "codeCommune": "64266", - "libelleAcheminement": "HOURS", - "nomCommune": "HOURS" + "codeCommune": "64246", + "libelleAcheminement": "GOMER", + "nomCommune": "GOMER" }, { - "codePostal": "64120", - "codeCommune": "64267", - "libelleAcheminement": "IBARROLLE", - "nomCommune": "IBARROLLE" + "codePostal": "64130", + "codeCommune": "64247", + "libelleAcheminement": "GOTEIN LIBARRENX", + "nomCommune": "GOTEIN LIBARRENX" }, { - "codePostal": "64240", - "codeCommune": "64277", - "libelleAcheminement": "ISTURITS", - "nomCommune": "ISTURITS" + "codePostal": "64210", + "codeCommune": "64249", + "libelleAcheminement": "GUETHARY", + "nomCommune": "GUETHARY" }, { - "codePostal": "64190", - "codeCommune": "64281", - "libelleAcheminement": "JASSES", - "nomCommune": "JASSES" + "codePostal": "64470", + "codeCommune": "64258", + "libelleAcheminement": "HAUX", + "nomCommune": "HAUX" }, { "codePostal": "64120", - "codeCommune": "64285", - "libelleAcheminement": "JUXUE", - "nomCommune": "JUXUE" - }, - { - "codePostal": "64170", - "codeCommune": "64288", - "libelleAcheminement": "LABASTIDE CEZERACQ", - "nomCommune": "LABASTIDE CEZERACQ" + "codeCommune": "64265", + "libelleAcheminement": "HOSTA", + "nomCommune": "HOSTA" }, { - "codePostal": "64170", - "codeCommune": "64290", - "libelleAcheminement": "LABASTIDE MONREJEAU", - "nomCommune": "LABASTIDE MONREJEAU" + "codePostal": "64120", + "codeCommune": "64272", + "libelleAcheminement": "ILHARRE", + "nomCommune": "ILHARRE" }, { - "codePostal": "64300", - "codeCommune": "64296", - "libelleAcheminement": "LACADEE", - "nomCommune": "LACADEE" + "codePostal": "64220", + "codeCommune": "64274", + "libelleAcheminement": "IROULEGUY", + "nomCommune": "IROULEGUY" }, { - "codePostal": "64470", - "codeCommune": "64303", - "libelleAcheminement": "LAGUINGE RESTOUE", - "nomCommune": "LAGUINGE RESTOUE" + "codePostal": "64570", + "codeCommune": "64276", + "libelleAcheminement": "ISSOR", + "nomCommune": "ISSOR" }, { - "codePostal": "64150", - "codeCommune": "64306", - "libelleAcheminement": "LAHOURCADE", - "nomCommune": "LAHOURCADE" + "codePostal": "64800", + "codeCommune": "64302", + "libelleAcheminement": "LAGOS", + "nomCommune": "LAGOS" }, { - "codePostal": "64450", - "codeCommune": "64308", - "libelleAcheminement": "LALONQUETTE", - "nomCommune": "LALONQUETTE" + "codePostal": "64350", + "codeCommune": "64311", + "libelleAcheminement": "LANNECAUBE", + "nomCommune": "LANNECAUBE" }, { "codePostal": "64640", @@ -21588,16 +21708,10 @@ "nomCommune": "LANTABAT" }, { - "codePostal": "64120", - "codeCommune": "64314", - "libelleAcheminement": "LARCEVEAU ARROS CIBITS", - "nomCommune": "LARCEVEAU ARROS CIBITS" - }, - { - "codePostal": "64560", - "codeCommune": "64316", - "libelleAcheminement": "LARRAU", - "nomCommune": "LARRAU" + "codePostal": "64480", + "codeCommune": "64317", + "libelleAcheminement": "LARRESSORE", + "nomCommune": "LARRESSORE" }, { "codePostal": "64440", @@ -21612,82 +21726,34 @@ "nomCommune": "LASSERRE" }, { - "codePostal": "64290", - "codeCommune": "64324", - "libelleAcheminement": "LASSEUBE", - "nomCommune": "LASSEUBE" - }, - { - "codePostal": "64290", - "codeCommune": "64325", - "libelleAcheminement": "LASSEUBETAT", - "nomCommune": "LASSEUBETAT" - }, - { - "codePostal": "64220", - "codeCommune": "64327", - "libelleAcheminement": "LECUMBERRY", - "nomCommune": "LECUMBERRY" - }, - { - "codePostal": "64400", - "codeCommune": "64328", - "libelleAcheminement": "LEDEUIX", - "nomCommune": "LEDEUIX" - }, - { - "codePostal": "64450", - "codeCommune": "64332", - "libelleAcheminement": "LEME", - "nomCommune": "LEME" - }, - { - "codePostal": "64350", - "codeCommune": "64337", - "libelleAcheminement": "LESPIELLE", - "nomCommune": "LESPIELLE" - }, - { - "codePostal": "64120", - "codeCommune": "64345", - "libelleAcheminement": "LOHITZUN OYHERCQ", - "nomCommune": "LOHITZUN OYHERCQ" - }, - { - "codePostal": "64160", - "codeCommune": "64346", - "libelleAcheminement": "LOMBIA", - "nomCommune": "LOMBIA" - }, - { - "codePostal": "64440", - "codeCommune": "64354", - "libelleAcheminement": "LOUVIE SOUBIRON", - "nomCommune": "LOUVIE SOUBIRON" + "codePostal": "64270", + "codeCommune": "64334", + "libelleAcheminement": "LEREN", + "nomCommune": "LEREN" }, { - "codePostal": "64360", - "codeCommune": "64359", - "libelleAcheminement": "LUCQ DE BEARN", - "nomCommune": "LUCQ DE BEARN" + "codePostal": "64490", + "codeCommune": "64336", + "libelleAcheminement": "LESCUN", + "nomCommune": "LESCUN" }, { - "codePostal": "64330", - "codeCommune": "64366", - "libelleAcheminement": "MASCARAAS HARON", - "nomCommune": "MASCARAAS HARON" + "codePostal": "64560", + "codeCommune": "64342", + "libelleAcheminement": "LICQ ATHEREY", + "nomCommune": "LICQ ATHEREY" }, { "codePostal": "64160", - "codeCommune": "64370", - "libelleAcheminement": "MAUCOR", - "nomCommune": "MAUCOR" + "codeCommune": "64361", + "libelleAcheminement": "LUSSAGNET LUSSON", + "nomCommune": "LUSSAGNET LUSSON" }, { - "codePostal": "64240", - "codeCommune": "64377", - "libelleAcheminement": "MENDIONDE", - "nomCommune": "MENDIONDE" + "codePostal": "64190", + "codeCommune": "64381", + "libelleAcheminement": "MERITEIN", + "nomCommune": "MERITEIN" }, { "codePostal": "64450", @@ -21696,22 +21762,22 @@ "nomCommune": "MIOSSENS LANUSSE" }, { - "codePostal": "64800", - "codeCommune": "64386", - "libelleAcheminement": "MIREPEIX", - "nomCommune": "MIREPEIX" + "codePostal": "64230", + "codeCommune": "64387", + "libelleAcheminement": "MOMAS", + "nomCommune": "MOMAS" }, { - "codePostal": "64350", - "codeCommune": "64388", - "libelleAcheminement": "MOMY", - "nomCommune": "MOMY" + "codePostal": "64360", + "codeCommune": "64393", + "libelleAcheminement": "MONEIN", + "nomCommune": "MONEIN" }, { - "codePostal": "64130", - "codeCommune": "64391", - "libelleAcheminement": "MONCAYOLLE LARRORY MENDIBIEU", - "nomCommune": "MONCAYOLLE LARRORY MENDIBIEU" + "codePostal": "64350", + "codeCommune": "64394", + "libelleAcheminement": "MONPEZAT", + "nomCommune": "MONPEZAT" }, { "codePostal": "64300", @@ -21726,52 +21792,82 @@ "nomCommune": "MONTANER" }, { - "codePostal": "64420", - "codeCommune": "64419", - "libelleAcheminement": "NOUSTY", - "nomCommune": "NOUSTY" + "codePostal": "64800", + "codeCommune": "64400", + "libelleAcheminement": "MONTAUT", + "nomCommune": "MONTAUT" + }, + { + "codePostal": "64330", + "codeCommune": "64401", + "libelleAcheminement": "MONT DISSE", + "nomCommune": "MONT DISSE" + }, + { + "codePostal": "64160", + "codeCommune": "64405", + "libelleAcheminement": "MORLAAS", + "nomCommune": "MORLAAS" + }, + { + "codePostal": "64130", + "codeCommune": "64411", + "libelleAcheminement": "MUSCULDY", + "nomCommune": "MUSCULDY" }, { "codePostal": "64390", - "codeCommune": "64428", - "libelleAcheminement": "ORRIULE", - "nomCommune": "ORRIULE" + "codeCommune": "64423", + "libelleAcheminement": "ORAAS", + "nomCommune": "ORAAS" + }, + { + "codePostal": "64130", + "codeCommune": "64424", + "libelleAcheminement": "ORDIARP", + "nomCommune": "ORDIARP" }, { "codePostal": "64120", - "codeCommune": "64429", - "libelleAcheminement": "ORSANCO", - "nomCommune": "ORSANCO" + "codeCommune": "64425", + "libelleAcheminement": "OREGUE", + "nomCommune": "OREGUE" }, { - "codePostal": "64470", - "codeCommune": "64432", - "libelleAcheminement": "OSSAS SUHARE", - "nomCommune": "OSSAS SUHARE" + "codePostal": "64150", + "codeCommune": "64431", + "libelleAcheminement": "OS MARSILLON", + "nomCommune": "OS MARSILLON" }, { - "codePostal": "64390", - "codeCommune": "64435", - "libelleAcheminement": "OSSERAIN RIVAREYTE", - "nomCommune": "OSSERAIN RIVAREYTE" + "codePostal": "64120", + "codeCommune": "64437", + "libelleAcheminement": "OSTABAT ASME", + "nomCommune": "OSTABAT ASME" }, { - "codePostal": "64320", - "codeCommune": "64439", - "libelleAcheminement": "OUSSE", - "nomCommune": "OUSSE" + "codePostal": "64360", + "codeCommune": "64442", + "libelleAcheminement": "PARBAYSE", + "nomCommune": "PARBAYSE" }, { - "codePostal": "64350", - "codeCommune": "64446", - "libelleAcheminement": "PEYRELONGUE ABOS", - "nomCommune": "PEYRELONGUE ABOS" + "codePostal": "64230", + "codeCommune": "64448", + "libelleAcheminement": "POEY DE LESCAR", + "nomCommune": "POEY DE LESCAR" }, { - "codePostal": "64410", - "codeCommune": "64447", - "libelleAcheminement": "PIETS PLASENCE MOUSTROU", - "nomCommune": "PIETS PLASENCE MOUSTROU" + "codePostal": "64460", + "codeCommune": "64452", + "libelleAcheminement": "PONSON DESSUS", + "nomCommune": "PONSON DESSUS" + }, + { + "codePostal": "64530", + "codeCommune": "64453", + "libelleAcheminement": "PONTACQ", + "nomCommune": "PONTACQ" }, { "codePostal": "64410", @@ -21780,22 +21876,16 @@ "nomCommune": "POULIACQ" }, { - "codePostal": "64400", - "codeCommune": "64460", - "libelleAcheminement": "PRECILHON", - "nomCommune": "PRECILHON" - }, - { - "codePostal": "64160", - "codeCommune": "64465", - "libelleAcheminement": "RIUPEYROUS", - "nomCommune": "RIUPEYROUS" + "codePostal": "64260", + "codeCommune": "64463", + "libelleAcheminement": "REBENACQ", + "nomCommune": "REBENACQ" }, { - "codePostal": "64110", - "codeCommune": "64467", - "libelleAcheminement": "RONTIGNON", - "nomCommune": "RONTIGNON" + "codePostal": "64330", + "codeCommune": "64464", + "libelleAcheminement": "RIBARROUY", + "nomCommune": "RIBARROUY" }, { "codePostal": "64130", @@ -21804,22 +21894,28 @@ "nomCommune": "ROQUIAGUE" }, { - "codePostal": "64800", - "codeCommune": "64469", - "libelleAcheminement": "ST ABIT", - "nomCommune": "ST ABIT" + "codePostal": "64300", + "codeCommune": "64471", + "libelleAcheminement": "ST BOES", + "nomCommune": "ST BOES" }, { - "codePostal": "64260", - "codeCommune": "64473", - "libelleAcheminement": "STE COLOME", - "nomCommune": "STE COLOME" + "codePostal": "64160", + "codeCommune": "64472", + "libelleAcheminement": "ST CASTIN", + "nomCommune": "ST CASTIN" }, { - "codePostal": "64270", - "codeCommune": "64474", - "libelleAcheminement": "ST DOS", - "nomCommune": "ST DOS" + "codePostal": "64640", + "codeCommune": "64476", + "libelleAcheminement": "ST ESTEBEN", + "nomCommune": "ST ESTEBEN" + }, + { + "codePostal": "64430", + "codeCommune": "64477", + "libelleAcheminement": "ST ETIENNE DE BAIGORRY", + "nomCommune": "ST ETIENNE DE BAIGORRY" }, { "codePostal": "64220", @@ -21828,16 +21924,16 @@ "nomCommune": "ST JEAN PIED DE PORT" }, { - "codePostal": "64120", - "codeCommune": "64487", - "libelleAcheminement": "ST JUST IBARRE", - "nomCommune": "ST JUST IBARRE" + "codePostal": "64640", + "codeCommune": "64489", + "libelleAcheminement": "ST MARTIN D ARBEROUE", + "nomCommune": "ST MARTIN D ARBEROUE" }, { - "codePostal": "64300", - "codeCommune": "64501", - "libelleAcheminement": "SALLESPISSE", - "nomCommune": "SALLESPISSE" + "codePostal": "64780", + "codeCommune": "64490", + "libelleAcheminement": "ST MARTIN D ARROSSA", + "nomCommune": "ST MARTIN D ARROSSA" }, { "codePostal": "64520", @@ -21852,40 +21948,34 @@ "nomCommune": "SAMSONS LION" }, { - "codePostal": "64310", - "codeCommune": "64504", - "libelleAcheminement": "SARE", - "nomCommune": "SARE" - }, - { - "codePostal": "64300", - "codeCommune": "64505", - "libelleAcheminement": "SARPOURENX", - "nomCommune": "SARPOURENX" + "codePostal": "64230", + "codeCommune": "64511", + "libelleAcheminement": "SAUVAGNON", + "nomCommune": "SAUVAGNON" }, { - "codePostal": "64320", - "codeCommune": "64518", - "libelleAcheminement": "SENDETS", - "nomCommune": "SENDETS" + "codePostal": "64410", + "codeCommune": "64514", + "libelleAcheminement": "SEBY", + "nomCommune": "SEBY" }, { - "codePostal": "64121", - "codeCommune": "64519", - "libelleAcheminement": "SERRES CASTET", - "nomCommune": "SERRES CASTET" + "codePostal": "64160", + "codeCommune": "64516", + "libelleAcheminement": "SEDZERE", + "nomCommune": "SEDZERE" }, { - "codePostal": "64230", - "codeCommune": "64525", - "libelleAcheminement": "SIROS", - "nomCommune": "SIROS" + "codePostal": "64160", + "codeCommune": "64523", + "libelleAcheminement": "SEVIGNACQ", + "nomCommune": "SEVIGNACQ" }, { - "codePostal": "64780", - "codeCommune": "64528", - "libelleAcheminement": "SUHESCUN", - "nomCommune": "SUHESCUN" + "codePostal": "64420", + "codeCommune": "64526", + "libelleAcheminement": "SOUMOULOU", + "nomCommune": "SOUMOULOU" }, { "codePostal": "64190", @@ -21894,64 +21984,70 @@ "nomCommune": "SUS" }, { - "codePostal": "64330", - "codeCommune": "64532", - "libelleAcheminement": "TADOUSSE USSAU", - "nomCommune": "TADOUSSE USSAU" + "codePostal": "64990", + "codeCommune": "64540", + "libelleAcheminement": "URCUIT", + "nomCommune": "URCUIT" }, { - "codePostal": "64450", - "codeCommune": "64536", - "libelleAcheminement": "THEZE", - "nomCommune": "THEZE" + "codePostal": "64990", + "codeCommune": "64558", + "libelleAcheminement": "VILLEFRANQUE", + "nomCommune": "VILLEFRANQUE" }, { - "codePostal": "64240", - "codeCommune": "64546", - "libelleAcheminement": "URT", - "nomCommune": "URT" + "codePostal": "64130", + "codeCommune": "64559", + "libelleAcheminement": "VIODOS ABENSE DE BAS", + "nomCommune": "VIODOS ABENSE DE BAS" }, { - "codePostal": "64370", - "codeCommune": "64548", - "libelleAcheminement": "UZAN", - "nomCommune": "UZAN" + "codePostal": "64450", + "codeCommune": "64560", + "libelleAcheminement": "VIVEN", + "nomCommune": "VIVEN" }, { - "codePostal": "64990", - "codeCommune": "64558", - "libelleAcheminement": "VILLEFRANQUE", - "nomCommune": "VILLEFRANQUE" + "codePostal": "65100", + "codeCommune": "65002", + "libelleAcheminement": "ADE", + "nomCommune": "ADE" }, { - "codePostal": "65240", - "codeCommune": "65003", - "libelleAcheminement": "ADERVIELLE POUCHERGUES", - "nomCommune": "ADERVIELLE POUCHERGUES" + "codePostal": "65370", + "codeCommune": "65014", + "libelleAcheminement": "ANTICHAN", + "nomCommune": "ANTICHAN" }, { - "codePostal": "65360", - "codeCommune": "65005", - "libelleAcheminement": "ALLIER", - "nomCommune": "ALLIER" + "codePostal": "65220", + "codeCommune": "65015", + "libelleAcheminement": "ANTIN", + "nomCommune": "ANTIN" }, { - "codePostal": "65690", - "codeCommune": "65010", - "libelleAcheminement": "ANGOS", - "nomCommune": "ANGOS" + "codePostal": "65360", + "codeCommune": "65019", + "libelleAcheminement": "ARCIZAC ADOUR", + "nomCommune": "ARCIZAC ADOUR" }, { - "codePostal": "65670", - "codeCommune": "65028", - "libelleAcheminement": "ARNE", - "nomCommune": "ARNE" + "codePostal": "65200", + "codeCommune": "65024", + "libelleAcheminement": "ARGELES BAGNERES", + "nomCommune": "ARGELES BAGNERES" }, { "codePostal": "65400", - "codeCommune": "65029", - "libelleAcheminement": "ARRAS EN LAVEDAN", - "nomCommune": "ARRAS EN LAVEDAN" + "codeCommune": "65032", + "libelleAcheminement": "ARRENS MARSOUS", + "nomCommune": "ARRENS MARSOUS" + }, + { + "codePostal": "65100", + "codeCommune": "65033", + "libelleAcheminement": "ARRODETS EZ ANGLES", + "nomCommune": "ARRODETS EZ ANGLES" }, { "codePostal": "65130", @@ -21959,29 +22055,65 @@ "libelleAcheminement": "ARRODETS", "nomCommune": "ARRODETS" }, + { + "codePostal": "65400", + "codeCommune": "65036", + "libelleAcheminement": "ARTALENS SOUIN", + "nomCommune": "ARTALENS SOUIN" + }, + { + "codePostal": "65350", + "codeCommune": "65044", + "libelleAcheminement": "AUBAREDE", + "nomCommune": "AUBAREDE" + }, + { + "codePostal": "65800", + "codeCommune": "65047", + "libelleAcheminement": "AUREILHAN", + "nomCommune": "AUREILHAN" + }, + { + "codePostal": "65700", + "codeCommune": "65049", + "libelleAcheminement": "AURIEBAT", + "nomCommune": "AURIEBAT" + }, + { + "codePostal": "65370", + "codeCommune": "65053", + "libelleAcheminement": "AVEUX", + "nomCommune": "AVEUX" + }, { "codePostal": "65130", - "codeCommune": "65037", - "libelleAcheminement": "ARTIGUEMY", - "nomCommune": "ARTIGUEMY" + "codeCommune": "65054", + "libelleAcheminement": "AVEZAC PRAT LAHITTE", + "nomCommune": "AVEZAC PRAT LAHITTE" + }, + { + "codePostal": "65170", + "codeCommune": "65058", + "libelleAcheminement": "AZET", + "nomCommune": "AZET" }, { "codePostal": "65200", - "codeCommune": "65042", - "libelleAcheminement": "ASTE", - "nomCommune": "ASTE" + "codeCommune": "65060", + "libelleAcheminement": "BANIOS", + "nomCommune": "BANIOS" }, { - "codePostal": "65380", - "codeCommune": "65057", - "libelleAcheminement": "AZEREIX", - "nomCommune": "AZEREIX" + "codePostal": "65690", + "codeCommune": "65062", + "libelleAcheminement": "BARBAZAN DEBAT", + "nomCommune": "BARBAZAN DEBAT" }, { - "codePostal": "65200", - "codeCommune": "65059", - "libelleAcheminement": "BAGNERES DE BIGORRE", - "nomCommune": "BAGNERES DE BIGORRE" + "codePostal": "65240", + "codeCommune": "65064", + "libelleAcheminement": "BAREILLES", + "nomCommune": "BAREILLES" }, { "codePostal": "65230", @@ -21990,22 +22122,34 @@ "nomCommune": "BARTHE" }, { - "codePostal": "65130", - "codeCommune": "65081", - "libelleAcheminement": "BENQUE MOLERE", - "nomCommune": "BENQUE MOLERE" + "codePostal": "65670", + "codeCommune": "65074", + "libelleAcheminement": "BAZORDAN", + "nomCommune": "BAZORDAN" }, { - "codePostal": "65360", - "codeCommune": "65083", - "libelleAcheminement": "BERNAC DEBAT", - "nomCommune": "BERNAC DEBAT" + "codePostal": "65190", + "codeCommune": "65079", + "libelleAcheminement": "BEGOLE", + "nomCommune": "BEGOLE" }, { - "codePostal": "65370", - "codeCommune": "65087", - "libelleAcheminement": "BERTREN", - "nomCommune": "BERTREN" + "codePostal": "65190", + "codeCommune": "65086", + "libelleAcheminement": "BERNADETS DESSUS", + "nomCommune": "BERNADETS DESSUS" + }, + { + "codePostal": "65120", + "codeCommune": "65089", + "libelleAcheminement": "BETPOUEY", + "nomCommune": "BETPOUEY" + }, + { + "codePostal": "65230", + "codeCommune": "65090", + "libelleAcheminement": "BETPOUY", + "nomCommune": "BETPOUY" }, { "codePostal": "65130", @@ -22013,12 +22157,6 @@ "libelleAcheminement": "BETTES", "nomCommune": "BETTES" }, - { - "codePostal": "65410", - "codeCommune": "65092", - "libelleAcheminement": "BEYREDE JUMET CAMOUS", - "nomCommune": "BEYREDE JUMET CAMOUS" - }, { "codePostal": "65150", "codeCommune": "65093", @@ -22026,76 +22164,64 @@ "nomCommune": "BIZE" }, { - "codePostal": "65150", - "codeCommune": "65094", - "libelleAcheminement": "BIZOUS", - "nomCommune": "BIZOUS" + "codePostal": "65220", + "codeCommune": "65095", + "libelleAcheminement": "BONNEFONT", + "nomCommune": "BONNEFONT" }, { "codePostal": "65190", - "codeCommune": "65101", - "libelleAcheminement": "BORDES", - "nomCommune": "BORDES" - }, - { - "codePostal": "65140", - "codeCommune": "65102", - "libelleAcheminement": "BOUILH DEVANT", - "nomCommune": "BOUILH DEVANT" - }, - { - "codePostal": "65350", - "codeCommune": "65103", - "libelleAcheminement": "BOUILH PEREUILH", - "nomCommune": "BOUILH PEREUILH" + "codeCommune": "65113", + "libelleAcheminement": "BURG", + "nomCommune": "BURG" }, { - "codePostal": "65170", - "codeCommune": "65106", - "libelleAcheminement": "BOURISP", - "nomCommune": "BOURISP" + "codePostal": "65130", + "codeCommune": "65127", + "libelleAcheminement": "CAPVERN LES BAINS", + "nomCommune": "CAPVERN" }, { - "codePostal": "65140", - "codeCommune": "65114", - "libelleAcheminement": "BUZON", - "nomCommune": "BUZON" + "codePostal": "65700", + "codeCommune": "65130", + "libelleAcheminement": "CASTELNAU RIVIERE BASSE", + "nomCommune": "CASTELNAU RIVIERE BASSE" }, { - "codePostal": "65170", - "codeCommune": "65117", - "libelleAcheminement": "CADEILHAN TRACHERE", - "nomCommune": "CADEILHAN TRACHERE" + "codePostal": "65190", + "codeCommune": "65132", + "libelleAcheminement": "CASTERA LANUSSE", + "nomCommune": "CASTERA LANUSSE" }, { - "codePostal": "65190", - "codeCommune": "65120", - "libelleAcheminement": "CALAVANTE", - "nomCommune": "CALAVANTE" + "codePostal": "65350", + "codeCommune": "65133", + "libelleAcheminement": "CASTERA LOU", + "nomCommune": "CASTERA LOU" }, { - "codePostal": "65710", - "codeCommune": "65123", - "libelleAcheminement": "CAMPAN", - "nomCommune": "CAMPAN" + "codePostal": "65370", + "codeCommune": "65139", + "libelleAcheminement": "CAZARILH", + "nomCommune": "CAZARILH" }, { - "codePostal": "65230", - "codeCommune": "65129", - "libelleAcheminement": "CASTELNAU MAGNOAC", - "nomCommune": "CASTELNAU MAGNOAC" + "codePostal": "65240", + "codeCommune": "65141", + "libelleAcheminement": "CAZAUX FRECHET ANERAN CAMORS", + "nomCommune": "CAZAUX FRECHET ANERAN CAMORS" }, { - "codePostal": "65700", - "codeCommune": "65137", - "libelleAcheminement": "CAUSSADE RIVIERE", - "nomCommune": "CAUSSADE RIVIERE" + "codePostal": "65350", + "codeCommune": "65142", + "libelleAcheminement": "CHELLE DEBAT", + "nomCommune": "CHELLE DEBAT" }, { - "codePostal": "65590", - "codeCommune": "65140", - "libelleAcheminement": "CAZAUX DEBAT", - "nomCommune": "CAZAUX DEBAT" + "codePostal": "65100", + "codeCommune": "65144", + "libelleAcheminement": "CHEUST", + "nomCommune": "CHEUST" }, { "codePostal": "65120", @@ -22103,30 +22229,18 @@ "libelleAcheminement": "CHEZE", "nomCommune": "CHEZE" }, - { - "codePostal": "65800", - "codeCommune": "65146", - "libelleAcheminement": "CHIS", - "nomCommune": "CHIS" - }, - { - "codePostal": "65230", - "codeCommune": "65148", - "libelleAcheminement": "CIZOS", - "nomCommune": "CIZOS" - }, - { - "codePostal": "65350", - "codeCommune": "65153", - "libelleAcheminement": "COUSSAN", - "nomCommune": "COUSSAN" - }, { "codePostal": "65230", "codeCommune": "65155", "libelleAcheminement": "DEVEZE", "nomCommune": "DEVEZE" }, + { + "codePostal": "65170", + "codeCommune": "65157", + "libelleAcheminement": "ENS", + "nomCommune": "ENS" + }, { "codePostal": "65140", "codeCommune": "65161", @@ -22140,52 +22254,58 @@ "nomCommune": "ESCOTS" }, { - "codePostal": "65100", - "codeCommune": "65164", - "libelleAcheminement": "ESCOUBES POUTS", - "nomCommune": "ESCOUBES POUTS" + "codePostal": "65240", + "codeCommune": "65171", + "libelleAcheminement": "ESTARVIELLE", + "nomCommune": "ESTARVIELLE" }, { - "codePostal": "65130", - "codeCommune": "65167", - "libelleAcheminement": "ESPIEILH", - "nomCommune": "ESPIEILH" + "codePostal": "65120", + "codeCommune": "65173", + "libelleAcheminement": "ESTERRE", + "nomCommune": "ESTERRE" }, { - "codePostal": "65120", - "codeCommune": "65168", - "libelleAcheminement": "ESQUIEZE SERE", - "nomCommune": "ESQUIEZE SERE" + "codePostal": "65220", + "codeCommune": "65178", + "libelleAcheminement": "FRECHEDE", + "nomCommune": "FRECHEDE" }, { - "codePostal": "65560", - "codeCommune": "65176", - "libelleAcheminement": "FERRIERES", - "nomCommune": "FERRIERES" + "codePostal": "65130", + "codeCommune": "65179", + "libelleAcheminement": "FRECHENDETS", + "nomCommune": "FRECHENDETS" }, { - "codePostal": "65320", - "codeCommune": "65185", - "libelleAcheminement": "GARDERES", - "nomCommune": "GARDERES" + "codePostal": "65330", + "codeCommune": "65183", + "libelleAcheminement": "GALAN", + "nomCommune": "GALAN" }, { - "codePostal": "65320", - "codeCommune": "65189", - "libelleAcheminement": "GAYAN", - "nomCommune": "GAYAN" + "codePostal": "65250", + "codeCommune": "65190", + "libelleAcheminement": "GAZAVE", + "nomCommune": "GAZAVE" }, { - "codePostal": "65370", - "codeCommune": "65193", - "libelleAcheminement": "GEMBRIE", - "nomCommune": "GEMBRIE" + "codePostal": "65120", + "codeCommune": "65192", + "libelleAcheminement": "GAVARNIE GEDRE", + "nomCommune": "GAVARNIE GEDRE" }, { - "codePostal": "65200", - "codeCommune": "65198", - "libelleAcheminement": "GERDE", - "nomCommune": "GERDE" + "codePostal": "65120", + "codeCommune": "65192", + "libelleAcheminement": "GAVARNIE GEDRE", + "nomCommune": "GAVARNIE GEDRE" + }, + { + "codePostal": "65240", + "codeCommune": "65199", + "libelleAcheminement": "GERM", + "nomCommune": "GERM" }, { "codePostal": "65200", @@ -22201,105 +22321,123 @@ }, { "codePostal": "65170", - "codeCommune": "65211", - "libelleAcheminement": "GUCHAN", - "nomCommune": "GUCHAN" + "codeCommune": "65208", + "libelleAcheminement": "GRAILHEN", + "nomCommune": "GRAILHEN" }, { - "codePostal": "65240", - "codeCommune": "65212", - "libelleAcheminement": "GUCHEN", - "nomCommune": "GUCHEN" + "codePostal": "65370", + "codeCommune": "65230", + "libelleAcheminement": "IZAOURT", + "nomCommune": "IZAOURT" }, { - "codePostal": "65700", - "codeCommune": "65215", - "libelleAcheminement": "HAGEDET", - "nomCommune": "HAGEDET" + "codePostal": "65100", + "codeCommune": "65236", + "libelleAcheminement": "JULOS", + "nomCommune": "JULOS" }, { - "codePostal": "65700", - "codeCommune": "65219", - "libelleAcheminement": "HERES", - "nomCommune": "HERES" + "codePostal": "65100", + "codeCommune": "65237", + "libelleAcheminement": "JUNCALAS", + "nomCommune": "JUNCALAS" }, { - "codePostal": "65350", - "codeCommune": "65225", - "libelleAcheminement": "HOURC", - "nomCommune": "HOURC" + "codePostal": "65140", + "codeCommune": "65242", + "libelleAcheminement": "LACASSAGNE", + "nomCommune": "LACASSAGNE" }, { - "codePostal": "65410", - "codeCommune": "65228", - "libelleAcheminement": "ILHET", - "nomCommune": "ILHET" + "codePostal": "65230", + "codeCommune": "65249", + "libelleAcheminement": "LALANNE", + "nomCommune": "LALANNE" }, { - "codePostal": "65370", - "codeCommune": "65229", - "libelleAcheminement": "ILHEU", - "nomCommune": "ILHEU" + "codePostal": "65310", + "codeCommune": "65251", + "libelleAcheminement": "LALOUBERE", + "nomCommune": "LALOUBERE" }, { - "codePostal": "65290", - "codeCommune": "65235", - "libelleAcheminement": "JUILLAN", - "nomCommune": "JUILLAN" + "codePostal": "65300", + "codeCommune": "65258", + "libelleAcheminement": "LANNEMEZAN", + "nomCommune": "LANNEMEZAN" }, { - "codePostal": "65100", - "codeCommune": "65236", - "libelleAcheminement": "JULOS", - "nomCommune": "JULOS" + "codePostal": "65670", + "codeCommune": "65261", + "libelleAcheminement": "LARAN", + "nomCommune": "LARAN" }, { - "codePostal": "65700", - "codeCommune": "65240", - "libelleAcheminement": "LABATUT RIVIERE", - "nomCommune": "LABATUT RIVIERE" + "codePostal": "65230", + "codeCommune": "65263", + "libelleAcheminement": "LARROQUE", + "nomCommune": "LARROQUE" }, { - "codePostal": "65700", - "codeCommune": "65248", - "libelleAcheminement": "LAHITTE TOUPIERE", - "nomCommune": "LAHITTE TOUPIERE" + "codePostal": "65670", + "codeCommune": "65266", + "libelleAcheminement": "LASSALES", + "nomCommune": "LASSALES" }, { - "codePostal": "65220", - "codeCommune": "65250", - "libelleAcheminement": "LALANNE TRIE", - "nomCommune": "LALANNE TRIE" + "codePostal": "65400", + "codeCommune": "65267", + "libelleAcheminement": "LAU BALAGNAS", + "nomCommune": "LAU BALAGNAS" }, { - "codePostal": "65700", - "codeCommune": "65262", - "libelleAcheminement": "LARREULE", - "nomCommune": "LARREULE" + "codePostal": "65100", + "codeCommune": "65271", + "libelleAcheminement": "LEZIGNAN", + "nomCommune": "LEZIGNAN" }, { - "codePostal": "65240", - "codeCommune": "65282", - "libelleAcheminement": "LOUDENVIELLE", - "nomCommune": "LOUDENVIELLE" + "codePostal": "65190", + "codeCommune": "65272", + "libelleAcheminement": "LHEZ", + "nomCommune": "LHEZ" }, { - "codePostal": "65220", - "codeCommune": "65288", - "libelleAcheminement": "LUBRET ST LUC", - "nomCommune": "LUBRET ST LUC" + "codePostal": "65140", + "codeCommune": "65273", + "libelleAcheminement": "LIAC", + "nomCommune": "LIAC" }, { - "codePostal": "65220", - "codeCommune": "65289", - "libelleAcheminement": "LUBY BETMONT", - "nomCommune": "LUBY BETMONT" + "codePostal": "65200", + "codeCommune": "65275", + "libelleAcheminement": "LIES", + "nomCommune": "LIES" }, { - "codePostal": "65300", - "codeCommune": "65294", - "libelleAcheminement": "LUTILHOUS", - "nomCommune": "LUTILHOUS" + "codePostal": "65200", + "codeCommune": "65281", + "libelleAcheminement": "LOUCRUP", + "nomCommune": "LOUCRUP" + }, + { + "codePostal": "65290", + "codeCommune": "65284", + "libelleAcheminement": "LOUEY", + "nomCommune": "LOUEY" + }, + { + "codePostal": "65350", + "codeCommune": "65301", + "libelleAcheminement": "MARSEILLAN", + "nomCommune": "MARSEILLAN" + }, + { + "codePostal": "65190", + "codeCommune": "65303", + "libelleAcheminement": "MASCARAS", + "nomCommune": "MASCARAS" }, { "codePostal": "65370", @@ -22308,10 +22446,10 @@ "nomCommune": "MAULEON BAROUSSE" }, { - "codePostal": "65250", - "codeCommune": "65309", - "libelleAcheminement": "MAZOUAU", - "nomCommune": "MAZOUAU" + "codePostal": "65670", + "codeCommune": "65315", + "libelleAcheminement": "MONLEON MAGNOAC", + "nomCommune": "MONLEON MAGNOAC" }, { "codePostal": "65690", @@ -22320,16 +22458,28 @@ "nomCommune": "MONTIGNAC" }, { - "codePostal": "65190", - "codeCommune": "65324", - "libelleAcheminement": "MOULEDOUS", - "nomCommune": "MOULEDOUS" + "codePostal": "65140", + "codeCommune": "65325", + "libelleAcheminement": "MOUMOULOUS", + "nomCommune": "MOUMOULOUS" }, { - "codePostal": "65350", - "codeCommune": "65332", - "libelleAcheminement": "OLEAC DEBAT", - "nomCommune": "OLEAC DEBAT" + "codePostal": "65150", + "codeCommune": "65329", + "libelleAcheminement": "NISTOS", + "nomCommune": "NISTOS" + }, + { + "codePostal": "65310", + "codeCommune": "65331", + "libelleAcheminement": "ODOS", + "nomCommune": "ODOS" + }, + { + "codePostal": "65190", + "codeCommune": "65333", + "libelleAcheminement": "OLEAC DESSUS", + "nomCommune": "OLEAC DESSUS" }, { "codePostal": "65230", @@ -22338,10 +22488,16 @@ "nomCommune": "ORGAN" }, { - "codePostal": "65380", - "codeCommune": "65344", - "libelleAcheminement": "OSSUN", - "nomCommune": "OSSUN" + "codePostal": "65100", + "codeCommune": "65345", + "libelleAcheminement": "OSSUN EZ ANGLES", + "nomCommune": "OSSUN EZ ANGLES" + }, + { + "codePostal": "65230", + "codeCommune": "65358", + "libelleAcheminement": "PEYRET ST ANDRE", + "nomCommune": "PEYRET ST ANDRE" }, { "codePostal": "65260", @@ -22355,24 +22511,6 @@ "libelleAcheminement": "PINTAC", "nomCommune": "PINTAC" }, - { - "codePostal": "65200", - "codeCommune": "65370", - "libelleAcheminement": "POUZAC", - "nomCommune": "POUZAC" - }, - { - "codePostal": "65400", - "codeCommune": "65371", - "libelleAcheminement": "PRECHAC", - "nomCommune": "PRECHAC" - }, - { - "codePostal": "65500", - "codeCommune": "65372", - "libelleAcheminement": "PUJO", - "nomCommune": "PUJO" - }, { "codePostal": "65190", "codeCommune": "65378", @@ -22381,9 +22519,9 @@ }, { "codePostal": "65170", - "codeCommune": "65384", - "libelleAcheminement": "SAILHAN", - "nomCommune": "SAILHAN" + "codeCommune": "65388", + "libelleAcheminement": "ST LARY SOULAN", + "nomCommune": "ST LARY SOULAN" }, { "codePostal": "65360", @@ -22391,12 +22529,6 @@ "libelleAcheminement": "ST MARTIN", "nomCommune": "ST MARTIN" }, - { - "codePostal": "65150", - "codeCommune": "65394", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" - }, { "codePostal": "65270", "codeCommune": "65395", @@ -22404,76 +22536,94 @@ "nomCommune": "ST PE DE BIGORRE" }, { - "codePostal": "65400", - "codeCommune": "65400", - "libelleAcheminement": "SALLES", - "nomCommune": "SALLES" + "codePostal": "65360", + "codeCommune": "65401", + "libelleAcheminement": "SALLES ADOUR", + "nomCommune": "SALLES ADOUR" }, { - "codePostal": "65600", - "codeCommune": "65410", - "libelleAcheminement": "SARROUILLES", - "nomCommune": "SARROUILLES" + "codePostal": "65500", + "codeCommune": "65403", + "libelleAcheminement": "SANOUS", + "nomCommune": "SANOUS" }, { - "codePostal": "65150", - "codeCommune": "65416", - "libelleAcheminement": "SEICH", - "nomCommune": "SEICH" + "codePostal": "65230", + "codeCommune": "65404", + "libelleAcheminement": "SARIAC MAGNOAC", + "nomCommune": "SARIAC MAGNOAC" }, { - "codePostal": "65120", - "codeCommune": "65424", - "libelleAcheminement": "SERS", - "nomCommune": "SERS" + "codePostal": "65390", + "codeCommune": "65406", + "libelleAcheminement": "SARNIGUET", + "nomCommune": "SARNIGUET" }, { "codePostal": "65370", - "codeCommune": "65431", - "libelleAcheminement": "SOST", - "nomCommune": "SOST" + "codeCommune": "65407", + "libelleAcheminement": "SARP", + "nomCommune": "SARP" }, { - "codePostal": "65500", - "codeCommune": "65438", - "libelleAcheminement": "TALAZAC", - "nomCommune": "TALAZAC" + "codePostal": "65600", + "codeCommune": "65417", + "libelleAcheminement": "SEMEAC", + "nomCommune": "SEMEAC" }, { - "codePostal": "65220", - "codeCommune": "65448", - "libelleAcheminement": "TOURNOUS DARRE", - "nomCommune": "TOURNOUS DARRE" + "codePostal": "65140", + "codeCommune": "65418", + "libelleAcheminement": "SENAC", + "nomCommune": "SENAC" }, { - "codePostal": "65170", - "codeCommune": "65450", - "libelleAcheminement": "TRAMEZAIGUES", - "nomCommune": "TRAMEZAIGUES" + "codePostal": "65400", + "codeCommune": "65420", + "libelleAcheminement": "SERE EN LAVEDAN", + "nomCommune": "SERE EN LAVEDAN" }, { "codePostal": "65220", - "codeCommune": "65452", - "libelleAcheminement": "TRIE SUR BAISE", - "nomCommune": "TRIE SUR BAISE" + "codeCommune": "65423", + "libelleAcheminement": "SERE RUSTAING", + "nomCommune": "SERE RUSTAING" }, { - "codePostal": "65140", - "codeCommune": "65454", - "libelleAcheminement": "TROULEY LABARTHE", - "nomCommune": "TROULEY LABARTHE" + "codePostal": "65350", + "codeCommune": "65430", + "libelleAcheminement": "SOREAC", + "nomCommune": "SOREAC" }, { - "codePostal": "65200", - "codeCommune": "65459", - "libelleAcheminement": "UZER", - "nomCommune": "UZER" + "codePostal": "65260", + "codeCommune": "65435", + "libelleAcheminement": "SOULOM", + "nomCommune": "SOULOM" }, { - "codePostal": "65700", - "codeCommune": "65462", - "libelleAcheminement": "VIDOUZE", - "nomCommune": "VIDOUZE" + "codePostal": "65350", + "codeCommune": "65436", + "libelleAcheminement": "SOUYEAUX", + "nomCommune": "SOUYEAUX" + }, + { + "codePostal": "65000", + "codeCommune": "65440", + "libelleAcheminement": "TARBES", + "nomCommune": "TARBES" + }, + { + "codePostal": "65330", + "codeCommune": "65449", + "libelleAcheminement": "TOURNOUS DEVANT", + "nomCommune": "TOURNOUS DEVANT" + }, + { + "codePostal": "65170", + "codeCommune": "65465", + "libelleAcheminement": "VIELLE AURE", + "nomCommune": "VIELLE AURE" }, { "codePostal": "65240", @@ -22481,12 +22631,6 @@ "libelleAcheminement": "VIELLE LOURON", "nomCommune": "VIELLE LOURON" }, - { - "codePostal": "65400", - "codeCommune": "65467", - "libelleAcheminement": "VIER BORDES", - "nomCommune": "VIER BORDES" - }, { "codePostal": "65120", "codeCommune": "65469", @@ -22494,28 +22638,22 @@ "nomCommune": "VIEY" }, { - "codePostal": "65100", - "codeCommune": "65470", - "libelleAcheminement": "VIGER", - "nomCommune": "VIGER" - }, - { - "codePostal": "65170", - "codeCommune": "65471", - "libelleAcheminement": "VIGNEC", - "nomCommune": "VIGNEC" + "codePostal": "65500", + "codeCommune": "65477", + "libelleAcheminement": "VILLENAVE PRES MARSAC", + "nomCommune": "VILLENAVE PRES MARSAC" }, { - "codePostal": "65700", - "codeCommune": "65472", - "libelleAcheminement": "VILLEFRANQUE", - "nomCommune": "VILLEFRANQUE" + "codePostal": "65120", + "codeCommune": "65478", + "libelleAcheminement": "VISCOS", + "nomCommune": "VISCOS" }, { - "codePostal": "65220", - "codeCommune": "65474", - "libelleAcheminement": "VILLEMBITS", - "nomCommune": "VILLEMBITS" + "codePostal": "65120", + "codeCommune": "65481", + "libelleAcheminement": "BAREGES", + "nomCommune": "BAREGES" }, { "codePostal": "66110", @@ -22524,28 +22662,58 @@ "nomCommune": "AMELIE LES BAINS PALALDA" }, { - "codePostal": "66210", - "codeCommune": "66004", - "libelleAcheminement": "LES ANGLES", - "nomCommune": "LES ANGLES" + "codePostal": "66760", + "codeCommune": "66005", + "libelleAcheminement": "ANGOUSTRINE VILLENEUVE ESCALDES", + "nomCommune": "ANGOUSTRINE VILLENEUVE DES ESCALDES" }, { - "codePostal": "66320", - "codeCommune": "66007", - "libelleAcheminement": "ARBOUSSOLS", - "nomCommune": "ARBOUSSOLS" + "codePostal": "66760", + "codeCommune": "66005", + "libelleAcheminement": "ANGOUSTRINE VILLENEUVE ESCALDES", + "nomCommune": "ANGOUSTRINE VILLENEUVE DES ESCALDES" }, { - "codePostal": "66700", - "codeCommune": "66008", - "libelleAcheminement": "ARGELES SUR MER", - "nomCommune": "ARGELES SUR MER" + "codePostal": "66220", + "codeCommune": "66006", + "libelleAcheminement": "ANSIGNAN", + "nomCommune": "ANSIGNAN" }, { - "codePostal": "66390", - "codeCommune": "66014", - "libelleAcheminement": "BAIXAS", - "nomCommune": "BAIXAS" + "codePostal": "66150", + "codeCommune": "66009", + "libelleAcheminement": "ARLES SUR TECH", + "nomCommune": "ARLES SUR TECH" + }, + { + "codePostal": "66360", + "codeCommune": "66010", + "libelleAcheminement": "AYGUATEBIA TALAU", + "nomCommune": "AYGUATEBIA TALAU" + }, + { + "codePostal": "66360", + "codeCommune": "66010", + "libelleAcheminement": "AYGUATEBIA TALAU", + "nomCommune": "AYGUATEBIA TALAU" + }, + { + "codePostal": "66300", + "codeCommune": "66015", + "libelleAcheminement": "BANYULS DELS ASPRES", + "nomCommune": "BANYULS DELS ASPRES" + }, + { + "codePostal": "66210", + "codeCommune": "66020", + "libelleAcheminement": "BOLQUERE", + "nomCommune": "BOLQUERE" + }, + { + "codePostal": "66210", + "codeCommune": "66020", + "libelleAcheminement": "BOLQUERE", + "nomCommune": "BOLQUERE" }, { "codePostal": "66430", @@ -22555,15 +22723,15 @@ }, { "codePostal": "66130", - "codeCommune": "66023", - "libelleAcheminement": "BOULETERNERE", - "nomCommune": "BOULETERNERE" + "codeCommune": "66022", + "libelleAcheminement": "BOULE D AMONT", + "nomCommune": "BOULE D AMONT" }, { - "codePostal": "66760", - "codeCommune": "66025", - "libelleAcheminement": "BOURG MADAME", - "nomCommune": "BOURG MADAME" + "codePostal": "66330", + "codeCommune": "66028", + "libelleAcheminement": "CABESTANY", + "nomCommune": "CABESTANY" }, { "codePostal": "66140", @@ -22572,34 +22740,22 @@ "nomCommune": "CANET EN ROUSSILLON" }, { - "codePostal": "66720", - "codeCommune": "66039", - "libelleAcheminement": "CARAMANY", - "nomCommune": "CARAMANY" - }, - { - "codePostal": "66290", - "codeCommune": "66048", - "libelleAcheminement": "CERBERE", - "nomCommune": "CERBERE" - }, - { - "codePostal": "66130", - "codeCommune": "66055", - "libelleAcheminement": "CORBERE", - "nomCommune": "CORBERE" + "codePostal": "66680", + "codeCommune": "66038", + "libelleAcheminement": "CANOHES", + "nomCommune": "CANOHES" }, { - "codePostal": "66820", - "codeCommune": "66057", - "libelleAcheminement": "CORNEILLA DE CONFLENT", - "nomCommune": "CORNEILLA DE CONFLENT" + "codePostal": "66300", + "codeCommune": "66044", + "libelleAcheminement": "CASTELNOU", + "nomCommune": "CASTELNOU" }, { - "codePostal": "66150", - "codeCommune": "66060", - "libelleAcheminement": "CORSAVY", - "nomCommune": "CORSAVY" + "codePostal": "66480", + "codeCommune": "66063", + "libelleAcheminement": "LES CLUSES", + "nomCommune": "LES CLUSES" }, { "codePostal": "66120", @@ -22607,18 +22763,18 @@ "libelleAcheminement": "EGAT", "nomCommune": "EGAT" }, + { + "codePostal": "66310", + "codeCommune": "66071", + "libelleAcheminement": "ESTAGEL", + "nomCommune": "ESTAGEL" + }, { "codePostal": "66820", "codeCommune": "66078", "libelleAcheminement": "FILLOLS", "nomCommune": "FILLOLS" }, - { - "codePostal": "66210", - "codeCommune": "66081", - "libelleAcheminement": "FONTRABIOUSE", - "nomCommune": "FONTRABIOUSE" - }, { "codePostal": "66130", "codeCommune": "66088", @@ -22626,16 +22782,16 @@ "nomCommune": "ILLE SUR TET" }, { - "codePostal": "66300", - "codeCommune": "66099", - "libelleAcheminement": "LLAURO", - "nomCommune": "LLAURO" + "codePostal": "66480", + "codeCommune": "66106", + "libelleAcheminement": "MAUREILLAS LAS ILLAS", + "nomCommune": "MAUREILLAS LAS ILLAS" }, { - "codePostal": "66300", - "codeCommune": "66101", - "libelleAcheminement": "LLUPIA", - "nomCommune": "LLUPIA" + "codePostal": "66500", + "codeCommune": "66109", + "libelleAcheminement": "MOLITG LES BAINS", + "nomCommune": "MOLITG LES BAINS" }, { "codePostal": "66130", @@ -22644,112 +22800,76 @@ "nomCommune": "MONTALBA LE CHATEAU" }, { - "codePostal": "66110", - "codeCommune": "66113", - "libelleAcheminement": "MONTBOLO", - "nomCommune": "MONTBOLO" - }, - { - "codePostal": "66210", - "codeCommune": "66117", - "libelleAcheminement": "MONT LOUIS", - "nomCommune": "MONT LOUIS" - }, - { - "codePostal": "66340", - "codeCommune": "66120", - "libelleAcheminement": "NAHUJA", - "nomCommune": "NAHUJA" - }, - { - "codePostal": "66500", - "codeCommune": "66122", - "libelleAcheminement": "NOHEDES", - "nomCommune": "NOHEDES" - }, - { - "codePostal": "66690", - "codeCommune": "66133", - "libelleAcheminement": "PALAU DEL VIDRE", - "nomCommune": "PALAU DEL VIDRE" + "codePostal": "66740", + "codeCommune": "66115", + "libelleAcheminement": "MONTESQUIEU DES ALBERES", + "nomCommune": "MONTESQUIEU DES ALBERES" }, { - "codePostal": "66300", - "codeCommune": "66134", - "libelleAcheminement": "PASSA", - "nomCommune": "PASSA" + "codePostal": "66120", + "codeCommune": "66124", + "libelleAcheminement": "FONT ROMEU ODEILLO VIA", + "nomCommune": "FONT ROMEU ODEILLO VIA" }, { "codePostal": "66360", - "codeCommune": "66155", - "libelleAcheminement": "PY", - "nomCommune": "PY" - }, - { - "codePostal": "66730", - "codeCommune": "66156", - "libelleAcheminement": "RABOUILLET", - "nomCommune": "RABOUILLET" - }, - { - "codePostal": "66240", - "codeCommune": "66172", - "libelleAcheminement": "ST ESTEVE", - "nomCommune": "ST ESTEVE" + "codeCommune": "66125", + "libelleAcheminement": "OLETTE", + "nomCommune": "OLETTE" }, { - "codePostal": "66170", - "codeCommune": "66173", - "libelleAcheminement": "ST FELIU D AMONT", - "nomCommune": "ST FELIU D AMONT" + "codePostal": "66600", + "codeCommune": "66127", + "libelleAcheminement": "OPOUL PERILLOS", + "nomCommune": "OPOUL PERILLOS" }, { - "codePostal": "66740", - "codeCommune": "66175", - "libelleAcheminement": "ST GENIS DES FONTAINES", - "nomCommune": "ST GENIS DES FONTAINES" + "codePostal": "66100", + "codeCommune": "66136", + "libelleAcheminement": "PERPIGNAN", + "nomCommune": "PERPIGNAN" }, { - "codePostal": "66490", - "codeCommune": "66178", - "libelleAcheminement": "ST JEAN PLA DE CORTS", - "nomCommune": "ST JEAN PLA DE CORTS" + "codePostal": "66380", + "codeCommune": "66141", + "libelleAcheminement": "PIA", + "nomCommune": "PIA" }, { - "codePostal": "66250", - "codeCommune": "66180", - "libelleAcheminement": "ST LAURENT DE LA SALANQUE", - "nomCommune": "ST LAURENT DE LA SALANQUE" + "codePostal": "66210", + "codeCommune": "66154", + "libelleAcheminement": "PUYVALADOR", + "nomCommune": "PUYVALADOR" }, { - "codePostal": "66220", - "codeCommune": "66184", - "libelleAcheminement": "ST MARTIN DE FENOUILLET", - "nomCommune": "ST MARTIN DE FENOUILLET" + "codePostal": "66360", + "codeCommune": "66157", + "libelleAcheminement": "RAILLEU", + "nomCommune": "RAILLEU" }, { - "codePostal": "66570", - "codeCommune": "66186", - "libelleAcheminement": "ST NAZAIRE", - "nomCommune": "ST NAZAIRE" + "codePostal": "66500", + "codeCommune": "66161", + "libelleAcheminement": "RIA SIRACH", + "nomCommune": "RIA SIRACH" }, { - "codePostal": "66210", - "codeCommune": "66188", - "libelleAcheminement": "ST PIERRE DELS FORCATS", - "nomCommune": "ST PIERRE DELS FORCATS" + "codePostal": "66470", + "codeCommune": "66182", + "libelleAcheminement": "STE MARIE LA MER", + "nomCommune": "STE MARIE LA MER" }, { - "codePostal": "66690", - "codeCommune": "66196", - "libelleAcheminement": "SOREDE", - "nomCommune": "SOREDE" + "codePostal": "66360", + "codeCommune": "66193", + "libelleAcheminement": "SERDINYA", + "nomCommune": "SERDINYA" }, { - "codePostal": "66120", - "codeCommune": "66202", - "libelleAcheminement": "TARGASSONNE", - "nomCommune": "TARGASSONNE" + "codePostal": "66270", + "codeCommune": "66195", + "libelleAcheminement": "LE SOLER", + "nomCommune": "LE SOLER" }, { "codePostal": "66110", @@ -22757,30 +22877,6 @@ "libelleAcheminement": "TAULIS", "nomCommune": "TAULIS" }, - { - "codePostal": "66500", - "codeCommune": "66204", - "libelleAcheminement": "TAURINYA", - "nomCommune": "TAURINYA" - }, - { - "codePostal": "66300", - "codeCommune": "66207", - "libelleAcheminement": "TERRATS", - "nomCommune": "TERRATS" - }, - { - "codePostal": "66200", - "codeCommune": "66208", - "libelleAcheminement": "THEZA", - "nomCommune": "THEZA" - }, - { - "codePostal": "66300", - "codeCommune": "66210", - "libelleAcheminement": "THUIR", - "nomCommune": "THUIR" - }, { "codePostal": "66300", "codeCommune": "66211", @@ -22788,34 +22884,28 @@ "nomCommune": "TORDERES" }, { - "codePostal": "66220", - "codeCommune": "66216", - "libelleAcheminement": "TRILLA", - "nomCommune": "TRILLA" - }, - { - "codePostal": "66760", - "codeCommune": "66218", - "libelleAcheminement": "UR", - "nomCommune": "UR" + "codePostal": "66440", + "codeCommune": "66212", + "libelleAcheminement": "TORREILLES", + "nomCommune": "TORREILLES" }, { - "codePostal": "66410", - "codeCommune": "66224", - "libelleAcheminement": "VILLELONGUE DE LA SALANQUE", - "nomCommune": "VILLELONGUE DE LA SALANQUE" + "codePostal": "66300", + "codeCommune": "66217", + "libelleAcheminement": "TROUILLAS", + "nomCommune": "TROUILLAS" }, { - "codePostal": "66740", - "codeCommune": "66225", - "libelleAcheminement": "VILLELONGUE DELS MONTS", - "nomCommune": "VILLELONGUE DELS MONTS" + "codePostal": "66340", + "codeCommune": "66220", + "libelleAcheminement": "VALCEBOLLERE", + "nomCommune": "VALCEBOLLERE" }, { - "codePostal": "66490", - "codeCommune": "66233", - "libelleAcheminement": "VIVES", - "nomCommune": "VIVES" + "codePostal": "66610", + "codeCommune": "66228", + "libelleAcheminement": "VILLENEUVE LA RIVIERE", + "nomCommune": "VILLENEUVE LA RIVIERE" }, { "codePostal": "67204", @@ -22823,18 +22913,6 @@ "libelleAcheminement": "ACHENHEIM", "nomCommune": "ACHENHEIM" }, - { - "codePostal": "67220", - "codeCommune": "67003", - "libelleAcheminement": "ALBE", - "nomCommune": "ALBE" - }, - { - "codePostal": "67310", - "codeCommune": "67004", - "libelleAcheminement": "SOMMERAU", - "nomCommune": "SOMMERAU" - }, { "codePostal": "67440", "codeCommune": "67004", @@ -22842,64 +22920,52 @@ "nomCommune": "SOMMERAU" }, { - "codePostal": "67310", - "codeCommune": "67018", - "libelleAcheminement": "BALBRONN", - "nomCommune": "BALBRONN" - }, - { - "codePostal": "67600", - "codeCommune": "67019", - "libelleAcheminement": "BALDENHEIM", - "nomCommune": "BALDENHEIM" - }, - { - "codePostal": "67320", - "codeCommune": "67029", - "libelleAcheminement": "BERG", - "nomCommune": "BERG" + "codePostal": "67270", + "codeCommune": "67005", + "libelleAcheminement": "ALTECKENDORF", + "nomCommune": "ALTECKENDORF" }, { "codePostal": "67140", - "codeCommune": "67032", - "libelleAcheminement": "BERNARDVILLE", - "nomCommune": "BERNARDVILLE" + "codeCommune": "67021", + "libelleAcheminement": "BARR", + "nomCommune": "BARR" }, { - "codePostal": "67370", - "codeCommune": "67034", - "libelleAcheminement": "BERSTETT", - "nomCommune": "BERSTETT" + "codePostal": "67500", + "codeCommune": "67023", + "libelleAcheminement": "BATZENDORF", + "nomCommune": "BATZENDORF" }, { - "codePostal": "67370", - "codeCommune": "67034", - "libelleAcheminement": "BERSTETT", - "nomCommune": "BERSTETT" + "codePostal": "67130", + "codeCommune": "67027", + "libelleAcheminement": "BELMONT", + "nomCommune": "BELMONT" }, { - "codePostal": "67320", - "codeCommune": "67036", - "libelleAcheminement": "BETTWILLER", - "nomCommune": "BETTWILLER" + "codePostal": "67340", + "codeCommune": "67044", + "libelleAcheminement": "BISCHHOLTZ", + "nomCommune": "BISCHHOLTZ" }, { - "codePostal": "67390", - "codeCommune": "67053", - "libelleAcheminement": "BOESENBIESEN", - "nomCommune": "BOESENBIESEN" + "codePostal": "67240", + "codeCommune": "67046", + "libelleAcheminement": "BISCHWILLER", + "nomCommune": "BISCHWILLER" }, { - "codePostal": "67860", - "codeCommune": "67055", - "libelleAcheminement": "BOOFZHEIM", - "nomCommune": "BOOFZHEIM" + "codePostal": "67530", + "codeCommune": "67052", + "libelleAcheminement": "BOERSCH", + "nomCommune": "BOERSCH" }, { - "codePostal": "67330", - "codeCommune": "67057", - "libelleAcheminement": "BOSSELSHAUSEN", - "nomCommune": "BOSSELSHAUSEN" + "codePostal": "67150", + "codeCommune": "67054", + "libelleAcheminement": "BOLSENHEIM", + "nomCommune": "BOLSENHEIM" }, { "codePostal": "67270", @@ -22913,18 +22979,6 @@ "libelleAcheminement": "BOUXWILLER", "nomCommune": "BOUXWILLER" }, - { - "codePostal": "67220", - "codeCommune": "67062", - "libelleAcheminement": "BREITENAU", - "nomCommune": "BREITENAU" - }, - { - "codePostal": "67112", - "codeCommune": "67065", - "libelleAcheminement": "BREUSCHWICKERSHEIM", - "nomCommune": "BREUSCHWICKERSHEIM" - }, { "codePostal": "67130", "codeCommune": "67066", @@ -22932,28 +22986,10 @@ "nomCommune": "LA BROQUE" }, { - "codePostal": "67570", - "codeCommune": "67066", - "libelleAcheminement": "LA BROQUE", - "nomCommune": "LA BROQUE" - }, - { - "codePostal": "67470", - "codeCommune": "67069", - "libelleAcheminement": "BUHL", - "nomCommune": "BUHL" - }, - { - "codePostal": "67260", - "codeCommune": "67070", - "libelleAcheminement": "BURBACH", - "nomCommune": "BURBACH" - }, - { - "codePostal": "67430", - "codeCommune": "67072", - "libelleAcheminement": "BUTTEN", - "nomCommune": "BUTTEN" + "codePostal": "67310", + "codeCommune": "67077", + "libelleAcheminement": "COSSWILLER", + "nomCommune": "COSSWILLER" }, { "codePostal": "67310", @@ -22962,76 +22998,46 @@ "nomCommune": "CRASTATT" }, { - "codePostal": "67310", - "codeCommune": "67081", - "libelleAcheminement": "DAHLENHEIM", - "nomCommune": "DAHLENHEIM" + "codePostal": "67120", + "codeCommune": "67080", + "libelleAcheminement": "DACHSTEIN", + "nomCommune": "DACHSTEIN" }, { - "codePostal": "67770", - "codeCommune": "67082", - "libelleAcheminement": "DALHUNDEN", - "nomCommune": "DALHUNDEN" + "codePostal": "67350", + "codeCommune": "67087", + "libelleAcheminement": "DAUENDORF", + "nomCommune": "DAUENDORF" }, { - "codePostal": "67110", - "codeCommune": "67083", - "libelleAcheminement": "DAMBACH", - "nomCommune": "DAMBACH" - }, - { - "codePostal": "67650", - "codeCommune": "67084", - "libelleAcheminement": "DAMBACH LA VILLE", - "nomCommune": "DAMBACH LA VILLE" - }, - { - "codePostal": "67350", - "codeCommune": "67087", - "libelleAcheminement": "DAUENDORF", - "nomCommune": "DAUENDORF" - }, - { - "codePostal": "67430", - "codeCommune": "67088", - "libelleAcheminement": "DEHLINGEN", - "nomCommune": "DEHLINGEN" - }, - { - "codePostal": "67370", - "codeCommune": "67097", - "libelleAcheminement": "DINGSHEIM", - "nomCommune": "DINGSHEIM" - }, - { - "codePostal": "67430", - "codeCommune": "67099", - "libelleAcheminement": "DOMFESSEL", - "nomCommune": "DOMFESSEL" + "codePostal": "67230", + "codeCommune": "67090", + "libelleAcheminement": "DIEBOLSHEIM", + "nomCommune": "DIEBOLSHEIM" }, { - "codePostal": "67320", - "codeCommune": "67105", - "libelleAcheminement": "DRULINGEN", - "nomCommune": "DRULINGEN" + "codePostal": "67190", + "codeCommune": "67098", + "libelleAcheminement": "DINSHEIM SUR BRUCHE", + "nomCommune": "DINSHEIM SUR BRUCHE" }, { "codePostal": "67120", - "codeCommune": "67108", - "libelleAcheminement": "DUPPIGHEIM", - "nomCommune": "DUPPIGHEIM" + "codeCommune": "67112", + "libelleAcheminement": "DUTTLENHEIM", + "nomCommune": "DUTTLENHEIM" }, { - "codePostal": "67700", - "codeCommune": "67117", - "libelleAcheminement": "ECKARTSWILLER", - "nomCommune": "ECKARTSWILLER" + "codePostal": "67600", + "codeCommune": "67116", + "libelleAcheminement": "EBERSMUNSTER", + "nomCommune": "EBERSMUNSTER" }, { - "codePostal": "67201", - "codeCommune": "67118", - "libelleAcheminement": "ECKBOLSHEIM", - "nomCommune": "ECKBOLSHEIM" + "codePostal": "67710", + "codeCommune": "67122", + "libelleAcheminement": "WANGENBOURG ENGENTHAL", + "nomCommune": "WANGENBOURG ENGENTHAL" }, { "codePostal": "67710", @@ -23040,10 +23046,10 @@ "nomCommune": "WANGENBOURG ENGENTHAL" }, { - "codePostal": "67120", - "codeCommune": "67128", - "libelleAcheminement": "ERNOLSHEIM BRUCHE", - "nomCommune": "ERNOLSHEIM BRUCHE" + "codePostal": "67960", + "codeCommune": "67124", + "libelleAcheminement": "ENTZHEIM", + "nomCommune": "ENTZHEIM" }, { "codePostal": "67320", @@ -23051,24 +23057,12 @@ "libelleAcheminement": "ESCHBOURG", "nomCommune": "ESCHBOURG" }, - { - "codePostal": "67320", - "codeCommune": "67134", - "libelleAcheminement": "ESCHWILLER", - "nomCommune": "ESCHWILLER" - }, { "codePostal": "67350", "codeCommune": "67135", "libelleAcheminement": "ETTENDORF", "nomCommune": "ETTENDORF" }, - { - "codePostal": "67640", - "codeCommune": "67137", - "libelleAcheminement": "FEGERSHEIM", - "nomCommune": "FEGERSHEIM" - }, { "codePostal": "67480", "codeCommune": "67142", @@ -23076,34 +23070,22 @@ "nomCommune": "FORT LOUIS" }, { - "codePostal": "67130", - "codeCommune": "67144", - "libelleAcheminement": "FOUDAY", - "nomCommune": "FOUDAY" - }, - { - "codePostal": "67360", - "codeCommune": "67147", - "libelleAcheminement": "FROESCHWILLER", - "nomCommune": "FROESCHWILLER" - }, - { - "codePostal": "67700", - "codeCommune": "67149", - "libelleAcheminement": "FURCHHAUSEN", - "nomCommune": "FURCHHAUSEN" + "codePostal": "67760", + "codeCommune": "67151", + "libelleAcheminement": "GAMBSHEIM", + "nomCommune": "GAMBSHEIM" }, { - "codePostal": "67117", - "codeCommune": "67150", - "libelleAcheminement": "FURDENHEIM", - "nomCommune": "FURDENHEIM" + "codePostal": "67150", + "codeCommune": "67154", + "libelleAcheminement": "GERSTHEIM", + "nomCommune": "GERSTHEIM" }, { - "codePostal": "67270", - "codeCommune": "67153", - "libelleAcheminement": "GEISWILLER ZOEBERSDORF", - "nomCommune": "GEISWILLER ZOEBERSDORF" + "codePostal": "67170", + "codeCommune": "67156", + "libelleAcheminement": "GEUDERTHEIM", + "nomCommune": "GEUDERTHEIM" }, { "codePostal": "67320", @@ -23112,70 +23094,106 @@ "nomCommune": "GOERLINGEN" }, { - "codePostal": "67130", - "codeCommune": "67165", - "libelleAcheminement": "GRANDFONTAINE", - "nomCommune": "GRANDFONTAINE" + "codePostal": "67190", + "codeCommune": "67167", + "libelleAcheminement": "GRENDELBRUCH", + "nomCommune": "GRENDELBRUCH" + }, + { + "codePostal": "67870", + "codeCommune": "67172", + "libelleAcheminement": "GRIESHEIM PRES MOLSHEIM", + "nomCommune": "GRIESHEIM PRES MOLSHEIM" }, { "codePostal": "67110", - "codeCommune": "67174", - "libelleAcheminement": "GUMBRECHTSHOFFEN", - "nomCommune": "GUMBRECHTSHOFFEN" + "codeCommune": "67176", + "libelleAcheminement": "GUNDERSHOFFEN", + "nomCommune": "GUNDERSHOFFEN" }, { - "codePostal": "67700", - "codeCommune": "67179", - "libelleAcheminement": "HAEGEN", - "nomCommune": "HAEGEN" + "codePostal": "67360", + "codeCommune": "67177", + "libelleAcheminement": "GUNSTETT", + "nomCommune": "GUNSTETT" }, { - "codePostal": "67260", - "codeCommune": "67183", - "libelleAcheminement": "HARSKIRCHEN", - "nomCommune": "HARSKIRCHEN" + "codePostal": "67500", + "codeCommune": "67180", + "libelleAcheminement": "HAGUENAU", + "nomCommune": "HAGUENAU" }, { - "codePostal": "67330", - "codeCommune": "67185", - "libelleAcheminement": "HATTMATT", - "nomCommune": "HATTMATT" + "codePostal": "67440", + "codeCommune": "67190", + "libelleAcheminement": "HENGWILLER", + "nomCommune": "HENGWILLER" }, { - "codePostal": "67360", - "codeCommune": "67186", - "libelleAcheminement": "HEGENEY", - "nomCommune": "HEGENEY" + "codePostal": "67320", + "codeCommune": "67201", + "libelleAcheminement": "HIRSCHLAND", + "nomCommune": "HIRSCHLAND" }, { - "codePostal": "67850", - "codeCommune": "67194", - "libelleAcheminement": "HERRLISHEIM", - "nomCommune": "HERRLISHEIM" + "codePostal": "67170", + "codeCommune": "67203", + "libelleAcheminement": "HOCHSTETT", + "nomCommune": "HOCHSTETT" }, { - "codePostal": "67390", - "codeCommune": "67195", - "libelleAcheminement": "HESSENHEIM", - "nomCommune": "HESSENHEIM" + "codePostal": "67250", + "codeCommune": "67206", + "libelleAcheminement": "HOFFEN", + "nomCommune": "HOFFEN" }, { - "codePostal": "67150", - "codeCommune": "67197", - "libelleAcheminement": "HINDISHEIM", - "nomCommune": "HINDISHEIM" + "codePostal": "67250", + "codeCommune": "67206", + "libelleAcheminement": "HOFFEN", + "nomCommune": "HOFFEN" }, { - "codePostal": "67800", - "codeCommune": "67204", - "libelleAcheminement": "HOENHEIM", - "nomCommune": "HOENHEIM" + "codePostal": "67140", + "codeCommune": "67210", + "libelleAcheminement": "LE HOHWALD", + "nomCommune": "LE HOHWALD" }, { - "codePostal": "67720", - "codeCommune": "67205", - "libelleAcheminement": "HOERDT", - "nomCommune": "HOERDT" + "codePostal": "67250", + "codeCommune": "67221", + "libelleAcheminement": "INGOLSHEIM", + "nomCommune": "INGOLSHEIM" + }, + { + "codePostal": "67330", + "codeCommune": "67225", + "libelleAcheminement": "ISSENHAUSEN", + "nomCommune": "ISSENHAUSEN" + }, + { + "codePostal": "67117", + "codeCommune": "67226", + "libelleAcheminement": "ITTENHEIM", + "nomCommune": "ITTENHEIM" + }, + { + "codePostal": "67370", + "codeCommune": "67228", + "libelleAcheminement": "NEUGARTHEIM ITTLENHEIM", + "nomCommune": "NEUGARTHEIM ITTLENHEIM" + }, + { + "codePostal": "67370", + "codeCommune": "67228", + "libelleAcheminement": "NEUGARTHEIM ITTLENHEIM", + "nomCommune": "NEUGARTHEIM ITTLENHEIM" + }, + { + "codePostal": "67440", + "codeCommune": "67229", + "libelleAcheminement": "JETTERSWILLER", + "nomCommune": "JETTERSWILLER" }, { "codePostal": "67240", @@ -23190,16 +23208,10 @@ "nomCommune": "KEFFENACH" }, { - "codePostal": "67840", - "codeCommune": "67237", - "libelleAcheminement": "KILSTETT", - "nomCommune": "KILSTETT" - }, - { - "codePostal": "67600", - "codeCommune": "67239", - "libelleAcheminement": "KINTZHEIM", - "nomCommune": "KINTZHEIM" + "codePostal": "67350", + "codeCommune": "67238", + "libelleAcheminement": "KINDWILLER", + "nomCommune": "KINDWILLER" }, { "codePostal": "67520", @@ -23208,70 +23220,94 @@ "nomCommune": "KIRCHHEIM" }, { - "codePostal": "67120", - "codeCommune": "67247", - "libelleAcheminement": "KOLBSHEIM", - "nomCommune": "KOLBSHEIM" + "codePostal": "67320", + "codeCommune": "67241", + "libelleAcheminement": "KIRRBERG", + "nomCommune": "KIRRBERG" }, { - "codePostal": "67880", - "codeCommune": "67248", - "libelleAcheminement": "KRAUTERGERSHEIM", - "nomCommune": "KRAUTERGERSHEIM" + "codePostal": "67330", + "codeCommune": "67242", + "libelleAcheminement": "KIRRWILLER", + "nomCommune": "KIRRWILLER" }, { - "codePostal": "67170", - "codeCommune": "67250", - "libelleAcheminement": "KRIEGSHEIM", - "nomCommune": "KRIEGSHEIM" + "codePostal": "67310", + "codeCommune": "67245", + "libelleAcheminement": "KNOERSHEIM", + "nomCommune": "KNOERSHEIM" }, { - "codePostal": "67640", - "codeCommune": "67268", - "libelleAcheminement": "LIPSHEIM", - "nomCommune": "LIPSHEIM" + "codePostal": "67250", + "codeCommune": "67254", + "libelleAcheminement": "KUTZENHAUSEN", + "nomCommune": "KUTZENHAUSEN" }, { - "codePostal": "67490", - "codeCommune": "67269", - "libelleAcheminement": "LITTENHEIM", - "nomCommune": "LITTENHEIM" + "codePostal": "67250", + "codeCommune": "67257", + "libelleAcheminement": "LAMPERTSLOCH", + "nomCommune": "LAMPERTSLOCH" }, { - "codePostal": "67270", - "codeCommune": "67270", - "libelleAcheminement": "LIXHAUSEN", - "nomCommune": "LIXHAUSEN" + "codePostal": "67360", + "codeCommune": "67259", + "libelleAcheminement": "LANGENSOULTZBACH", + "nomCommune": "LANGENSOULTZBACH" }, { - "codePostal": "67170", - "codeCommune": "67298", - "libelleAcheminement": "MITTELSCHAEFFOLSHEIM", - "nomCommune": "MITTELSCHAEFFOLSHEIM" + "codePostal": "67580", + "codeCommune": "67260", + "libelleAcheminement": "LAUBACH", + "nomCommune": "LAUBACH" }, { - "codePostal": "67670", - "codeCommune": "67301", - "libelleAcheminement": "MOMMENHEIM", - "nomCommune": "MOMMENHEIM" + "codePostal": "67520", + "codeCommune": "67282", + "libelleAcheminement": "MARLENHEIM", + "nomCommune": "MARLENHEIM" + }, + { + "codePostal": "67440", + "codeCommune": "67283", + "libelleAcheminement": "MARMOUTIER", + "nomCommune": "MARMOUTIER" + }, + { + "codePostal": "67210", + "codeCommune": "67286", + "libelleAcheminement": "MEISTRATZHEIM", + "nomCommune": "MEISTRATZHEIM" + }, + { + "codePostal": "67250", + "codeCommune": "67290", + "libelleAcheminement": "MERKWILLER PECHELBRONN", + "nomCommune": "MERKWILLER PECHELBRONN" + }, + { + "codePostal": "67580", + "codeCommune": "67291", + "libelleAcheminement": "MERTZWILLER", + "nomCommune": "MERTZWILLER" }, { "codePostal": "67350", - "codeCommune": "67304", - "libelleAcheminement": "MORSCHWILLER", - "nomCommune": "MORSCHWILLER" + "codeCommune": "67307", + "libelleAcheminement": "MULHAUSEN", + "nomCommune": "MULHAUSEN" }, { - "codePostal": "67470", - "codeCommune": "67305", - "libelleAcheminement": "MOTHERN", - "nomCommune": "MOTHERN" + "codePostal": "67450", + "codeCommune": "67309", + "libelleAcheminement": "MUNDOLSHEIM", + "nomCommune": "MUNDOLSHEIM" }, { - "codePostal": "67130", - "codeCommune": "67306", - "libelleAcheminement": "MUHLBACH SUR BRUCHE", - "nomCommune": "MUHLBACH SUR BRUCHE" + "codePostal": "67600", + "codeCommune": "67311", + "libelleAcheminement": "MUTTERSHOLTZ", + "nomCommune": "MUTTERSHOLTZ" }, { "codePostal": "67270", @@ -23280,10 +23316,22 @@ "nomCommune": "MUTZENHOUSE" }, { - "codePostal": "67210", - "codeCommune": "67329", - "libelleAcheminement": "NIEDERNAI", - "nomCommune": "NIEDERNAI" + "codePostal": "67220", + "codeCommune": "67317", + "libelleAcheminement": "NEUBOIS", + "nomCommune": "NEUBOIS" + }, + { + "codePostal": "67470", + "codeCommune": "67330", + "libelleAcheminement": "NIEDERROEDERN", + "nomCommune": "NIEDERROEDERN" + }, + { + "codePostal": "67500", + "codeCommune": "67331", + "libelleAcheminement": "NIEDERSCHAEFFOLSHEIM", + "nomCommune": "NIEDERSCHAEFFOLSHEIM" }, { "codePostal": "67150", @@ -23292,70 +23340,70 @@ "nomCommune": "NORDHOUSE" }, { - "codePostal": "67680", - "codeCommune": "67337", - "libelleAcheminement": "NOTHALTEN", - "nomCommune": "NOTHALTEN" + "codePostal": "67660", + "codeCommune": "67339", + "libelleAcheminement": "BETSCHDORF", + "nomCommune": "BETSCHDORF" }, { - "codePostal": "67240", - "codeCommune": "67345", - "libelleAcheminement": "OBERHOFFEN SUR MODER", - "nomCommune": "OBERHOFFEN SUR MODER" + "codePostal": "67110", + "codeCommune": "67340", + "libelleAcheminement": "OBERBRONN", + "nomCommune": "OBERBRONN" }, { - "codePostal": "67210", - "codeCommune": "67348", - "libelleAcheminement": "OBERNAI", - "nomCommune": "OBERNAI" + "codePostal": "67280", + "codeCommune": "67342", + "libelleAcheminement": "OBERHASLACH", + "nomCommune": "OBERHASLACH" }, { - "codePostal": "67250", - "codeCommune": "67349", - "libelleAcheminement": "OBERROEDERN", - "nomCommune": "OBERROEDERN" + "codePostal": "67205", + "codeCommune": "67343", + "libelleAcheminement": "OBERHAUSBERGEN", + "nomCommune": "OBERHAUSBERGEN" }, { "codePostal": "67160", - "codeCommune": "67351", - "libelleAcheminement": "SEEBACH", - "nomCommune": "SEEBACH" + "codeCommune": "67344", + "libelleAcheminement": "OBERHOFFEN LES WISSEMBOURG", + "nomCommune": "OBERHOFFEN LES WISSEMBOURG" }, { - "codePostal": "67160", - "codeCommune": "67351", - "libelleAcheminement": "SEEBACH", - "nomCommune": "SEEBACH" + "codePostal": "67240", + "codeCommune": "67345", + "libelleAcheminement": "OBERHOFFEN SUR MODER", + "nomCommune": "OBERHOFFEN SUR MODER" }, { - "codePostal": "67520", - "codeCommune": "67354", - "libelleAcheminement": "ODRATZHEIM", - "nomCommune": "ODRATZHEIM" + "codePostal": "67160", + "codeCommune": "67346", + "libelleAcheminement": "OBERLAUTERBACH", + "nomCommune": "OBERLAUTERBACH" }, { - "codePostal": "67590", - "codeCommune": "67359", - "libelleAcheminement": "OHLUNGEN", - "nomCommune": "OHLUNGEN" + "codePostal": "67203", + "codeCommune": "67350", + "libelleAcheminement": "OBERSCHAEFFOLSHEIM", + "nomCommune": "OBERSCHAEFFOLSHEIM" }, { - "codePostal": "67600", - "codeCommune": "67362", - "libelleAcheminement": "ORSCHWILLER", - "nomCommune": "ORSCHWILLER" + "codePostal": "67850", + "codeCommune": "67356", + "libelleAcheminement": "OFFENDORF", + "nomCommune": "OFFENDORF" }, { - "codePostal": "67540", - "codeCommune": "67365", - "libelleAcheminement": "OSTWALD", - "nomCommune": "OSTWALD" + "codePostal": "67170", + "codeCommune": "67361", + "libelleAcheminement": "OLWISHEIM", + "nomCommune": "OLWISHEIM" }, { - "codePostal": "67320", - "codeCommune": "67369", - "libelleAcheminement": "OTTWILLER", - "nomCommune": "OTTWILLER" + "codePostal": "67290", + "codeCommune": "67370", + "libelleAcheminement": "PETERSBACH", + "nomCommune": "PETERSBACH" }, { "codePostal": "67350", @@ -23364,34 +23412,46 @@ "nomCommune": "VAL DE MODER" }, { - "codePostal": "67310", - "codeCommune": "67383", - "libelleAcheminement": "RANGEN", - "nomCommune": "RANGEN" + "codePostal": "67420", + "codeCommune": "67377", + "libelleAcheminement": "PLAINE", + "nomCommune": "PLAINE" }, { - "codePostal": "67440", - "codeCommune": "67391", - "libelleAcheminement": "REINHARDSMUNSTER", - "nomCommune": "REINHARDSMUNSTER" + "codePostal": "67250", + "codeCommune": "67379", + "libelleAcheminement": "PREUSCHDORF", + "nomCommune": "PREUSCHDORF" }, { - "codePostal": "67320", - "codeCommune": "67396", - "libelleAcheminement": "REXINGEN", - "nomCommune": "REXINGEN" + "codePostal": "67290", + "codeCommune": "67381", + "libelleAcheminement": "PUBERG", + "nomCommune": "PUBERG" }, { - "codePostal": "67690", - "codeCommune": "67404", - "libelleAcheminement": "RITTERSHOFFEN", - "nomCommune": "RITTERSHOFFEN" + "codePostal": "67117", + "codeCommune": "67382", + "libelleAcheminement": "QUATZENHEIM", + "nomCommune": "QUATZENHEIM" }, { - "codePostal": "67480", - "codeCommune": "67405", - "libelleAcheminement": "ROESCHWOOG", - "nomCommune": "ROESCHWOOG" + "codePostal": "67310", + "codeCommune": "67383", + "libelleAcheminement": "RANGEN", + "nomCommune": "RANGEN" + }, + { + "codePostal": "67116", + "codeCommune": "67389", + "libelleAcheminement": "REICHSTETT", + "nomCommune": "REICHSTETT" + }, + { + "codePostal": "67160", + "codeCommune": "67400", + "libelleAcheminement": "RIEDSELTZ", + "nomCommune": "RIEDSELTZ" }, { "codePostal": "67410", @@ -23399,12 +23459,6 @@ "libelleAcheminement": "ROHRWILLER", "nomCommune": "ROHRWILLER" }, - { - "codePostal": "67480", - "codeCommune": "67409", - "libelleAcheminement": "ROPPENHEIM", - "nomCommune": "ROPPENHEIM" - }, { "codePostal": "67230", "codeCommune": "67412", @@ -23417,18 +23471,6 @@ "libelleAcheminement": "ROTT", "nomCommune": "ROTT" }, - { - "codePostal": "67480", - "codeCommune": "67418", - "libelleAcheminement": "ROUNTZENHEIM AUENHEIM", - "nomCommune": "ROUNTZENHEIM AUENHEIM" - }, - { - "codePostal": "67130", - "codeCommune": "67420", - "libelleAcheminement": "RUSS", - "nomCommune": "RUSS" - }, { "codePostal": "67130", "codeCommune": "67420", @@ -23442,70 +23484,58 @@ "nomCommune": "SAALES" }, { - "codePostal": "67270", - "codeCommune": "67423", - "libelleAcheminement": "SAESSOLSHEIM", - "nomCommune": "SAESSOLSHEIM" - }, - { - "codePostal": "67700", - "codeCommune": "67425", - "libelleAcheminement": "ST JEAN SAVERNE", - "nomCommune": "ST JEAN SAVERNE" - }, - { - "codePostal": "67260", - "codeCommune": "67434", - "libelleAcheminement": "SARRE UNION", - "nomCommune": "SARRE UNION" + "codePostal": "67220", + "codeCommune": "67427", + "libelleAcheminement": "ST MAURICE", + "nomCommune": "ST MAURICE" }, { - "codePostal": "67260", - "codeCommune": "67435", - "libelleAcheminement": "SARREWERDEN", - "nomCommune": "SARREWERDEN" + "codePostal": "67140", + "codeCommune": "67429", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "67470", - "codeCommune": "67440", - "libelleAcheminement": "SCHAFFHOUSE PRES SELTZ", - "nomCommune": "SCHAFFHOUSE PRES SELTZ" + "codePostal": "67220", + "codeCommune": "67430", + "libelleAcheminement": "ST PIERRE BOIS", + "nomCommune": "ST PIERRE BOIS" }, { - "codePostal": "67340", - "codeCommune": "67446", - "libelleAcheminement": "SCHILLERSDORF", - "nomCommune": "SCHILLERSDORF" + "codePostal": "67220", + "codeCommune": "67430", + "libelleAcheminement": "ST PIERRE BOIS", + "nomCommune": "ST PIERRE BOIS" }, { - "codePostal": "67130", - "codeCommune": "67448", - "libelleAcheminement": "SCHIRMECK", - "nomCommune": "SCHIRMECK" + "codePostal": "67700", + "codeCommune": "67437", + "libelleAcheminement": "SAVERNE", + "nomCommune": "SAVERNE" }, { - "codePostal": "67240", - "codeCommune": "67449", - "libelleAcheminement": "SCHIRRHEIN", - "nomCommune": "SCHIRRHEIN" + "codePostal": "67150", + "codeCommune": "67438", + "libelleAcheminement": "SCHAEFFERSHEIM", + "nomCommune": "SCHAEFFERSHEIM" }, { - "codePostal": "67370", - "codeCommune": "67452", - "libelleAcheminement": "SCHNERSHEIM", - "nomCommune": "SCHNERSHEIM" + "codePostal": "67630", + "codeCommune": "67443", + "libelleAcheminement": "SCHEIBENHARD", + "nomCommune": "SCHEIBENHARD" }, { - "codePostal": "67370", - "codeCommune": "67452", - "libelleAcheminement": "SCHNERSHEIM", - "nomCommune": "SCHNERSHEIM" + "codePostal": "67340", + "codeCommune": "67446", + "libelleAcheminement": "SCHILLERSDORF", + "nomCommune": "SCHILLERSDORF" }, { - "codePostal": "67320", - "codeCommune": "67454", - "libelleAcheminement": "SCHOENBOURG", - "nomCommune": "SCHOENBOURG" + "codePostal": "67300", + "codeCommune": "67447", + "libelleAcheminement": "SCHILTIGHEIM", + "nomCommune": "SCHILTIGHEIM" }, { "codePostal": "67250", @@ -23514,16 +23544,16 @@ "nomCommune": "SCHOENENBOURG" }, { - "codePostal": "67260", - "codeCommune": "67456", - "libelleAcheminement": "SCHOPPERTEN", - "nomCommune": "SCHOPPERTEN" + "codePostal": "67590", + "codeCommune": "67458", + "libelleAcheminement": "SCHWEIGHOUSE SUR MODER", + "nomCommune": "SCHWEIGHOUSE SUR MODER" }, { - "codePostal": "67470", - "codeCommune": "67463", - "libelleAcheminement": "SELTZ", - "nomCommune": "SELTZ" + "codePostal": "67390", + "codeCommune": "67461", + "libelleAcheminement": "SCHWOBSHEIM", + "nomCommune": "SCHWOBSHEIM" }, { "codePostal": "67230", @@ -23532,10 +23562,34 @@ "nomCommune": "SERMERSHEIM" }, { - "codePostal": "67160", - "codeCommune": "67466", - "libelleAcheminement": "SIEGEN", - "nomCommune": "SIEGEN" + "codePostal": "67770", + "codeCommune": "67465", + "libelleAcheminement": "SESSENHEIM", + "nomCommune": "SESSENHEIM" + }, + { + "codePostal": "67130", + "codeCommune": "67470", + "libelleAcheminement": "SOLBACH", + "nomCommune": "SOLBACH" + }, + { + "codePostal": "67460", + "codeCommune": "67471", + "libelleAcheminement": "SOUFFELWEYERSHEIM", + "nomCommune": "SOUFFELWEYERSHEIM" + }, + { + "codePostal": "67250", + "codeCommune": "67474", + "libelleAcheminement": "SOULTZ SOUS FORETS", + "nomCommune": "SOULTZ SOUS FORETS" + }, + { + "codePostal": "67340", + "codeCommune": "67475", + "libelleAcheminement": "SPARSBACH", + "nomCommune": "SPARSBACH" }, { "codePostal": "67160", @@ -23544,10 +23598,22 @@ "nomCommune": "STEINSELTZ" }, { - "codePostal": "67000", - "codeCommune": "67482", - "libelleAcheminement": "STRASBOURG", - "nomCommune": "STRASBOURG" + "codePostal": "67140", + "codeCommune": "67481", + "libelleAcheminement": "STOTZHEIM", + "nomCommune": "STOTZHEIM" + }, + { + "codePostal": "67370", + "codeCommune": "67485", + "libelleAcheminement": "STUTZHEIM OFFENHEIM", + "nomCommune": "STUTZHEIM OFFENHEIM" + }, + { + "codePostal": "67320", + "codeCommune": "67488", + "libelleAcheminement": "THAL DRULINGEN", + "nomCommune": "THAL DRULINGEN" }, { "codePostal": "67440", @@ -23562,52 +23628,34 @@ "nomCommune": "TIEFFENBACH" }, { - "codePostal": "67310", - "codeCommune": "67492", - "libelleAcheminement": "TRAENHEIM", - "nomCommune": "TRAENHEIM" - }, - { - "codePostal": "67370", - "codeCommune": "67495", - "libelleAcheminement": "TRUCHTERSHEIM", - "nomCommune": "TRUCHTERSHEIM" - }, - { - "codePostal": "67370", - "codeCommune": "67495", - "libelleAcheminement": "TRUCHTERSHEIM", - "nomCommune": "TRUCHTERSHEIM" - }, - { - "codePostal": "67110", - "codeCommune": "67502", - "libelleAcheminement": "UTTENHOFFEN", - "nomCommune": "UTTENHOFFEN" + "codePostal": "67150", + "codeCommune": "67501", + "libelleAcheminement": "UTTENHEIM", + "nomCommune": "UTTENHEIM" }, { - "codePostal": "67730", - "codeCommune": "67505", - "libelleAcheminement": "LA VANCELLE", - "nomCommune": "LA VANCELLE" + "codePostal": "67220", + "codeCommune": "67507", + "libelleAcheminement": "VILLE", + "nomCommune": "VILLE" }, { - "codePostal": "67550", - "codeCommune": "67506", - "libelleAcheminement": "VENDENHEIM", - "nomCommune": "VENDENHEIM" + "codePostal": "67430", + "codeCommune": "67508", + "libelleAcheminement": "VOELLERDINGEN", + "nomCommune": "VOELLERDINGEN" }, { - "codePostal": "67430", - "codeCommune": "67514", - "libelleAcheminement": "WALDHAMBACH", - "nomCommune": "WALDHAMBACH" + "codePostal": "67700", + "codeCommune": "67515", + "libelleAcheminement": "WALDOLWISHEIM", + "nomCommune": "WALDOLWISHEIM" }, { - "codePostal": "67310", - "codeCommune": "67520", - "libelleAcheminement": "WASSELONNE", - "nomCommune": "WASSELONNE" + "codePostal": "67610", + "codeCommune": "67519", + "libelleAcheminement": "LA WANTZENAU", + "nomCommune": "LA WANTZENAU" }, { "codePostal": "67340", @@ -23622,16 +23670,16 @@ "nomCommune": "WESTHOUSE" }, { - "codePostal": "67290", - "codeCommune": "67535", - "libelleAcheminement": "WIMMENAU", - "nomCommune": "WIMMENAU" + "codePostal": "67320", + "codeCommune": "67528", + "libelleAcheminement": "WEYER", + "nomCommune": "WEYER" }, { - "codePostal": "67510", - "codeCommune": "67537", - "libelleAcheminement": "WINGEN", - "nomCommune": "WINGEN" + "codePostal": "67270", + "codeCommune": "67530", + "libelleAcheminement": "WICKERSHEIM WILSHAUSEN", + "nomCommune": "WICKERSHEIM WILSHAUSEN" }, { "codePostal": "67510", @@ -23639,12 +23687,6 @@ "libelleAcheminement": "WINGEN", "nomCommune": "WINGEN" }, - { - "codePostal": "67170", - "codeCommune": "67539", - "libelleAcheminement": "WINGERSHEIM LES QUATRE BANS", - "nomCommune": "WINGERSHEIM LES QUATRE BANS" - }, { "codePostal": "67590", "codeCommune": "67540", @@ -23652,22 +23694,28 @@ "nomCommune": "WINTERSHOUSE" }, { - "codePostal": "67370", - "codeCommune": "67548", - "libelleAcheminement": "WIWERSHEIM", - "nomCommune": "WIWERSHEIM" + "codePostal": "67130", + "codeCommune": "67543", + "libelleAcheminement": "WISCHES", + "nomCommune": "WISCHES" }, { - "codePostal": "67360", - "codeCommune": "67550", - "libelleAcheminement": "WOERTH", - "nomCommune": "WOERTH" + "codePostal": "67160", + "codeCommune": "67544", + "libelleAcheminement": "WISSEMBOURG", + "nomCommune": "WISSEMBOURG" }, { - "codePostal": "67140", - "codeCommune": "67557", - "libelleAcheminement": "ZELLWILLER", - "nomCommune": "ZELLWILLER" + "codePostal": "67230", + "codeCommune": "67545", + "libelleAcheminement": "WITTERNHEIM", + "nomCommune": "WITTERNHEIM" + }, + { + "codePostal": "67110", + "codeCommune": "67558", + "libelleAcheminement": "ZINSWILLER", + "nomCommune": "ZINSWILLER" }, { "codePostal": "67290", @@ -23676,10 +23724,16 @@ "nomCommune": "ZITTERSHEIM" }, { - "codePostal": "68130", - "codeCommune": "68010", - "libelleAcheminement": "ASPACH", - "nomCommune": "ASPACH" + "codePostal": "68210", + "codeCommune": "68002", + "libelleAcheminement": "ALTENACH", + "nomCommune": "ALTENACH" + }, + { + "codePostal": "68410", + "codeCommune": "68005", + "libelleAcheminement": "AMMERSCHWIHR", + "nomCommune": "AMMERSCHWIHR" }, { "codePostal": "68700", @@ -23688,10 +23742,22 @@ "nomCommune": "ASPACH MICHELBACH" }, { - "codePostal": "68220", - "codeCommune": "68013", - "libelleAcheminement": "ATTENSCHWILLER", - "nomCommune": "ATTENSCHWILLER" + "codePostal": "68740", + "codeCommune": "68016", + "libelleAcheminement": "BALGAU", + "nomCommune": "BALGAU" + }, + { + "codePostal": "68210", + "codeCommune": "68018", + "libelleAcheminement": "BALSCHWILLER", + "nomCommune": "BALSCHWILLER" + }, + { + "codePostal": "68320", + "codeCommune": "68019", + "libelleAcheminement": "BALTZENHEIM", + "nomCommune": "BALTZENHEIM" }, { "codePostal": "68390", @@ -23700,10 +23766,10 @@ "nomCommune": "BATTENHEIM" }, { - "codePostal": "68630", - "codeCommune": "68026", - "libelleAcheminement": "BENNWIHR MITTELWIHR", - "nomCommune": "BENNWIHR" + "codePostal": "68980", + "codeCommune": "68023", + "libelleAcheminement": "BEBLENHEIM", + "nomCommune": "BEBLENHEIM" }, { "codePostal": "68750", @@ -23718,22 +23784,28 @@ "nomCommune": "BERGHOLTZ" }, { - "codePostal": "68320", - "codeCommune": "68038", - "libelleAcheminement": "BISCHWIHR", - "nomCommune": "BISCHWIHR" + "codePostal": "68500", + "codeCommune": "68032", + "libelleAcheminement": "BERRWILLER", + "nomCommune": "BERRWILLER" }, { - "codePostal": "68740", - "codeCommune": "68041", - "libelleAcheminement": "BLODELSHEIM", - "nomCommune": "BLODELSHEIM" + "codePostal": "68480", + "codeCommune": "68034", + "libelleAcheminement": "BETTLACH", + "nomCommune": "BETTLACH" }, { - "codePostal": "68650", - "codeCommune": "68044", - "libelleAcheminement": "LE BONHOMME", - "nomCommune": "LE BONHOMME" + "codePostal": "68127", + "codeCommune": "68037", + "libelleAcheminement": "BILTZHEIM", + "nomCommune": "BILTZHEIM" + }, + { + "codePostal": "68290", + "codeCommune": "68045", + "libelleAcheminement": "BOURBACH LE BAS", + "nomCommune": "BOURBACH LE BAS" }, { "codePostal": "68290", @@ -23742,16 +23814,40 @@ "nomCommune": "BOURBACH LE HAUT" }, { - "codePostal": "68320", - "codeCommune": "68076", - "libelleAcheminement": "DURRENENTZEN", - "nomCommune": "DURRENENTZEN" + "codePostal": "68780", + "codeCommune": "68052", + "libelleAcheminement": "BRETTEN", + "nomCommune": "BRETTEN" }, { - "codePostal": "68210", - "codeCommune": "68079", - "libelleAcheminement": "ELBACH", - "nomCommune": "ELBACH" + "codePostal": "68350", + "codeCommune": "68056", + "libelleAcheminement": "BRUNSTATT DIDENHEIM", + "nomCommune": "BRUNSTATT DIDENHEIM" + }, + { + "codePostal": "68000", + "codeCommune": "68066", + "libelleAcheminement": "COLMAR", + "nomCommune": "COLMAR" + }, + { + "codePostal": "68290", + "codeCommune": "68073", + "libelleAcheminement": "DOLLEREN", + "nomCommune": "DOLLEREN" + }, + { + "codePostal": "68480", + "codeCommune": "68074", + "libelleAcheminement": "DURLINSDORF", + "nomCommune": "DURLINSDORF" + }, + { + "codePostal": "68540", + "codeCommune": "68088", + "libelleAcheminement": "FELDKIRCH", + "nomCommune": "FELDKIRCH" }, { "codePostal": "68470", @@ -23760,10 +23856,22 @@ "nomCommune": "FELLERING" }, { - "codePostal": "68720", - "codeCommune": "68093", - "libelleAcheminement": "FLAXLANDEN", - "nomCommune": "FLAXLANDEN" + "codePostal": "68740", + "codeCommune": "68091", + "libelleAcheminement": "FESSENHEIM", + "nomCommune": "FESSENHEIM" + }, + { + "codePostal": "68480", + "codeCommune": "68092", + "libelleAcheminement": "FISLIS", + "nomCommune": "FISLIS" + }, + { + "codePostal": "68320", + "codeCommune": "68095", + "libelleAcheminement": "FORTSCHWIHR", + "nomCommune": "FORTSCHWIHR" }, { "codePostal": "68240", @@ -23772,40 +23880,52 @@ "nomCommune": "FRELAND" }, { - "codePostal": "68720", - "codeCommune": "68099", - "libelleAcheminement": "FROENINGEN", - "nomCommune": "FROENINGEN" + "codePostal": "68690", + "codeCommune": "68102", + "libelleAcheminement": "GEISHOUSE", + "nomCommune": "GEISHOUSE" }, { - "codePostal": "68420", - "codeCommune": "68111", - "libelleAcheminement": "GUEBERSCHWIHR", - "nomCommune": "GUEBERSCHWIHR" + "codePostal": "68210", + "codeCommune": "68105", + "libelleAcheminement": "GILDWILLER", + "nomCommune": "GILDWILLER" }, { - "codePostal": "68250", - "codeCommune": "68116", - "libelleAcheminement": "GUNDOLSHEIM", - "nomCommune": "GUNDOLSHEIM" + "codePostal": "68760", + "codeCommune": "68106", + "libelleAcheminement": "GOLDBACH ALTENBACH", + "nomCommune": "GOLDBACH ALTENBACH" }, { - "codePostal": "68220", - "codeCommune": "68121", - "libelleAcheminement": "HAGENTHAL LE HAUT", - "nomCommune": "HAGENTHAL LE HAUT" + "codePostal": "68210", + "codeCommune": "68107", + "libelleAcheminement": "GOMMERSDORF", + "nomCommune": "GOMMERSDORF" }, { - "codePostal": "68220", - "codeCommune": "68126", - "libelleAcheminement": "HEGENHEIM", - "nomCommune": "HEGENHEIM" + "codePostal": "68320", + "codeCommune": "68110", + "libelleAcheminement": "GRUSSENHEIM", + "nomCommune": "GRUSSENHEIM" }, { - "codePostal": "68420", - "codeCommune": "68134", - "libelleAcheminement": "HERRLISHEIM PRES COLMAR", - "nomCommune": "HERRLISHEIM PRES COLMAR" + "codePostal": "68210", + "codeCommune": "68114", + "libelleAcheminement": "GUEVENATTEN", + "nomCommune": "GUEVENATTEN" + }, + { + "codePostal": "68140", + "codeCommune": "68117", + "libelleAcheminement": "GUNSBACH", + "nomCommune": "GUNSBACH" + }, + { + "codePostal": "68510", + "codeCommune": "68132", + "libelleAcheminement": "HELFRANTZKIRCH", + "nomCommune": "HELFRANTZKIRCH" }, { "codePostal": "68220", @@ -23820,10 +23940,16 @@ "nomCommune": "HIRSINGUE" }, { - "codePostal": "68150", - "codeCommune": "68147", - "libelleAcheminement": "HUNAWIHR", - "nomCommune": "HUNAWIHR" + "codePostal": "68110", + "codeCommune": "68154", + "libelleAcheminement": "ILLZACH", + "nomCommune": "ILLZACH" + }, + { + "codePostal": "68040", + "codeCommune": "68155", + "libelleAcheminement": "INGERSHEIM", + "nomCommune": "INGERSHEIM" }, { "codePostal": "68130", @@ -23838,40 +23964,16 @@ "nomCommune": "KAPPELEN" }, { - "codePostal": "68240", - "codeCommune": "68162", - "libelleAcheminement": "KAYSERSBERG VIGNOBLE", - "nomCommune": "KAYSERSBERG VIGNOBLE" + "codePostal": "68680", + "codeCommune": "68163", + "libelleAcheminement": "KEMBS", + "nomCommune": "KEMBS" }, { - "codePostal": "68220", - "codeCommune": "68168", - "libelleAcheminement": "KNOERINGUE", - "nomCommune": "KNOERINGUE" - }, - { - "codePostal": "68820", - "codeCommune": "68171", - "libelleAcheminement": "KRUTH", - "nomCommune": "KRUTH" - }, - { - "codePostal": "68610", - "codeCommune": "68177", - "libelleAcheminement": "LAUTENBACH", - "nomCommune": "LAUTENBACH" - }, - { - "codePostal": "68610", - "codeCommune": "68177", - "libelleAcheminement": "LAUTENBACH", - "nomCommune": "LAUTENBACH" - }, - { - "codePostal": "68610", - "codeCommune": "68178", - "libelleAcheminement": "LAUTENBACHZELL", - "nomCommune": "LAUTENBACHZELL" + "codePostal": "68650", + "codeCommune": "68175", + "libelleAcheminement": "LAPOUTROIE", + "nomCommune": "LAPOUTROIE" }, { "codePostal": "68800", @@ -23880,28 +23982,40 @@ "nomCommune": "LEIMBACH" }, { - "codePostal": "68220", - "codeCommune": "68183", - "libelleAcheminement": "LIEBENSWILLER", - "nomCommune": "LIEBENSWILLER" + "codePostal": "68480", + "codeCommune": "68181", + "libelleAcheminement": "LEVONCOURT", + "nomCommune": "LEVONCOURT" }, { "codePostal": "68480", - "codeCommune": "68186", - "libelleAcheminement": "LIGSDORF", - "nomCommune": "LIGSDORF" + "codeCommune": "68184", + "libelleAcheminement": "LIEBSDORF", + "nomCommune": "LIEBSDORF" + }, + { + "codePostal": "68610", + "codeCommune": "68188", + "libelleAcheminement": "LINTHAL", + "nomCommune": "LINTHAL" }, { "codePostal": "68480", - "codeCommune": "68187", - "libelleAcheminement": "LINSDORF", - "nomCommune": "LINSDORF" + "codeCommune": "68194", + "libelleAcheminement": "LUTTER", + "nomCommune": "LUTTER" }, { - "codePostal": "68550", - "codeCommune": "68199", - "libelleAcheminement": "MALMERSPACH", - "nomCommune": "MALMERSPACH" + "codePostal": "68510", + "codeCommune": "68198", + "libelleAcheminement": "MAGSTATT LE HAUT", + "nomCommune": "MAGSTATT LE HAUT" + }, + { + "codePostal": "68210", + "codeCommune": "68202", + "libelleAcheminement": "MERTZEN", + "nomCommune": "MERTZEN" }, { "codePostal": "68500", @@ -23909,6 +24023,12 @@ "libelleAcheminement": "MERXHEIM", "nomCommune": "MERXHEIM" }, + { + "codePostal": "68890", + "codeCommune": "68205", + "libelleAcheminement": "MEYENHEIM", + "nomCommune": "MEYENHEIM" + }, { "codePostal": "68730", "codeCommune": "68207", @@ -23927,6 +24047,12 @@ "libelleAcheminement": "MITTLACH", "nomCommune": "MITTLACH" }, + { + "codePostal": "68470", + "codeCommune": "68211", + "libelleAcheminement": "MITZACH", + "nomCommune": "MITZACH" + }, { "codePostal": "68580", "codeCommune": "68216", @@ -23934,10 +24060,10 @@ "nomCommune": "MOOSLARGUE" }, { - "codePostal": "68790", - "codeCommune": "68218", - "libelleAcheminement": "MORSCHWILLER LE BAS", - "nomCommune": "MORSCHWILLER LE BAS" + "codePostal": "68640", + "codeCommune": "68221", + "libelleAcheminement": "MUESPACH", + "nomCommune": "MUESPACH" }, { "codePostal": "68200", @@ -23946,16 +24072,22 @@ "nomCommune": "MULHOUSE" }, { - "codePostal": "68200", - "codeCommune": "68224", - "libelleAcheminement": "MULHOUSE", - "nomCommune": "MULHOUSE" + "codePostal": "68740", + "codeCommune": "68225", + "libelleAcheminement": "MUNCHHOUSE", + "nomCommune": "MUNCHHOUSE" }, { - "codePostal": "68530", - "codeCommune": "68229", - "libelleAcheminement": "MURBACH", - "nomCommune": "MURBACH" + "codePostal": "68320", + "codeCommune": "68227", + "libelleAcheminement": "MUNTZENHEIM", + "nomCommune": "MUNTZENHEIM" + }, + { + "codePostal": "68740", + "codeCommune": "68230", + "libelleAcheminement": "NAMBSHEIM", + "nomCommune": "NAMBSHEIM" }, { "codePostal": "68220", @@ -23964,22 +24096,10 @@ "nomCommune": "NEUWILLER" }, { - "codePostal": "68127", - "codeCommune": "68235", - "libelleAcheminement": "NIEDERHERGHEIM", - "nomCommune": "NIEDERHERGHEIM" - }, - { - "codePostal": "68420", - "codeCommune": "68244", - "libelleAcheminement": "OBERMORSCHWIHR", - "nomCommune": "OBERMORSCHWIHR" - }, - { - "codePostal": "68600", - "codeCommune": "68246", - "libelleAcheminement": "OBERSAASHEIM", - "nomCommune": "OBERSAASHEIM" + "codePostal": "68960", + "codeCommune": "68240", + "libelleAcheminement": "ILLTAL", + "nomCommune": "ILLTAL" }, { "codePostal": "68830", @@ -23988,22 +24108,16 @@ "nomCommune": "ODEREN" }, { - "codePostal": "68500", - "codeCommune": "68250", - "libelleAcheminement": "ORSCHWIHR", - "nomCommune": "ORSCHWIHR" - }, - { - "codePostal": "68570", - "codeCommune": "68251", - "libelleAcheminement": "OSENBACH", - "nomCommune": "OSENBACH" + "codePostal": "68370", + "codeCommune": "68249", + "libelleAcheminement": "ORBEY", + "nomCommune": "ORBEY" }, { - "codePostal": "68250", - "codeCommune": "68255", - "libelleAcheminement": "PFAFFENHEIM", - "nomCommune": "PFAFFENHEIM" + "codePostal": "68150", + "codeCommune": "68252", + "libelleAcheminement": "OSTHEIM", + "nomCommune": "OSTHEIM" }, { "codePostal": "68480", @@ -24012,22 +24126,46 @@ "nomCommune": "PFETTERHOUSE" }, { - "codePostal": "68730", - "codeCommune": "68263", - "libelleAcheminement": "RANSPACH LE BAS", - "nomCommune": "RANSPACH LE BAS" + "codePostal": "68470", + "codeCommune": "68262", + "libelleAcheminement": "RANSPACH", + "nomCommune": "RANSPACH" }, { - "codePostal": "68500", - "codeCommune": "68276", - "libelleAcheminement": "RIMBACHZELL", - "nomCommune": "RIMBACHZELL" + "codePostal": "68150", + "codeCommune": "68269", + "libelleAcheminement": "RIBEAUVILLE", + "nomCommune": "RIBEAUVILLE" }, { - "codePostal": "68800", - "codeCommune": "68279", - "libelleAcheminement": "RODEREN", - "nomCommune": "RODEREN" + "codePostal": "68340", + "codeCommune": "68277", + "libelleAcheminement": "RIQUEWIHR", + "nomCommune": "RIQUEWIHR" + }, + { + "codePostal": "68590", + "codeCommune": "68285", + "libelleAcheminement": "RORSCHWIHR", + "nomCommune": "RORSCHWIHR" + }, + { + "codePostal": "68270", + "codeCommune": "68289", + "libelleAcheminement": "RUELISHEIM", + "nomCommune": "RUELISHEIM" + }, + { + "codePostal": "68740", + "codeCommune": "68290", + "libelleAcheminement": "RUSTENHART", + "nomCommune": "RUSTENHART" + }, + { + "codePostal": "68160", + "codeCommune": "68294", + "libelleAcheminement": "STE CROIX AUX MINES", + "nomCommune": "STE CROIX AUX MINES" }, { "codePostal": "68590", @@ -24041,6 +24179,12 @@ "libelleAcheminement": "ST LOUIS", "nomCommune": "ST LOUIS" }, + { + "codePostal": "68300", + "codeCommune": "68297", + "libelleAcheminement": "ST LOUIS", + "nomCommune": "ST LOUIS" + }, { "codePostal": "68160", "codeCommune": "68298", @@ -24054,52 +24198,22 @@ "nomCommune": "SAUSHEIM" }, { - "codePostal": "68780", - "codeCommune": "68304", - "libelleAcheminement": "SENTHEIM", - "nomCommune": "SENTHEIM" - }, - { - "codePostal": "68290", - "codeCommune": "68307", - "libelleAcheminement": "SEWEN", - "nomCommune": "SEWEN" - }, - { - "codePostal": "68510", - "codeCommune": "68309", - "libelleAcheminement": "SIERENTZ", - "nomCommune": "SIERENTZ" - }, - { - "codePostal": "68380", - "codeCommune": "68311", - "libelleAcheminement": "SONDERNACH", - "nomCommune": "SONDERNACH" - }, - { - "codePostal": "68570", - "codeCommune": "68318", - "libelleAcheminement": "SOULTZMATT", - "nomCommune": "SOULTZMATT" - }, - { - "codePostal": "68720", - "codeCommune": "68320", - "libelleAcheminement": "SPECHBACH", - "nomCommune": "SPECHBACH" + "codePostal": "68130", + "codeCommune": "68303", + "libelleAcheminement": "SCHWOBEN", + "nomCommune": "SCHWOBEN" }, { - "codePostal": "68640", - "codeCommune": "68325", - "libelleAcheminement": "STEINSOULTZ", - "nomCommune": "STEINSOULTZ" + "codePostal": "68580", + "codeCommune": "68306", + "libelleAcheminement": "SEPPOIS LE HAUT", + "nomCommune": "SEPPOIS LE HAUT" }, { - "codePostal": "68470", - "codeCommune": "68328", - "libelleAcheminement": "STORCKENSOHN", - "nomCommune": "STORCKENSOHN" + "codePostal": "68700", + "codeCommune": "68322", + "libelleAcheminement": "STEINBACH", + "nomCommune": "STEINBACH" }, { "codePostal": "68280", @@ -24114,25936 +24228,25852 @@ "nomCommune": "TAGOLSHEIM" }, { - "codePostal": "25650", - "codeCommune": "25620", - "libelleAcheminement": "VILLE DU PONT", - "nomCommune": "VILLE DU PONT" + "codePostal": "68580", + "codeCommune": "68340", + "libelleAcheminement": "UEBERSTRASS", + "nomCommune": "UEBERSTRASS" }, { - "codePostal": "25170", - "codeCommune": "25622", - "libelleAcheminement": "VILLERS BUZON", - "nomCommune": "VILLERS BUZON" + "codePostal": "68700", + "codeCommune": "68342", + "libelleAcheminement": "UFFHOLTZ", + "nomCommune": "UFFHOLTZ" }, { - "codePostal": "25640", - "codeCommune": "25624", - "libelleAcheminement": "VILLERS GRELOT", - "nomCommune": "VILLERS GRELOT" + "codePostal": "68190", + "codeCommune": "68343", + "libelleAcheminement": "UNGERSHEIM", + "nomCommune": "UNGERSHEIM" }, { - "codePostal": "25320", - "codeCommune": "25631", - "libelleAcheminement": "VORGES LES PINS", - "nomCommune": "VORGES LES PINS" + "codePostal": "68320", + "codeCommune": "68345", + "libelleAcheminement": "URSCHENHEIM", + "nomCommune": "URSCHENHEIM" }, { - "codePostal": "25430", - "codeCommune": "25635", - "libelleAcheminement": "VYT LES BELVOIR", - "nomCommune": "VYT LES BELVOIR" + "codePostal": "68128", + "codeCommune": "68349", + "libelleAcheminement": "VILLAGE NEUF", + "nomCommune": "VILLAGE NEUF" }, { - "codePostal": "26770", - "codeCommune": "26003", - "libelleAcheminement": "ALEYRAC", - "nomCommune": "ALEYRAC" + "codePostal": "68600", + "codeCommune": "68351", + "libelleAcheminement": "VOGELGRUN", + "nomCommune": "VOGELGRUN" }, { - "codePostal": "26140", - "codeCommune": "26009", - "libelleAcheminement": "ANDANCETTE", - "nomCommune": "ANDANCETTE" + "codePostal": "68130", + "codeCommune": "68353", + "libelleAcheminement": "WAHLBACH", + "nomCommune": "WAHLBACH" }, { - "codePostal": "26140", - "codeCommune": "26010", - "libelleAcheminement": "ANNEYRON", - "nomCommune": "ANNEYRON" + "codePostal": "68250", + "codeCommune": "68364", + "libelleAcheminement": "WESTHALTEN", + "nomCommune": "WESTHALTEN" }, { - "codePostal": "26110", - "codeCommune": "26016", - "libelleAcheminement": "AUBRES", - "nomCommune": "AUBRES" + "codePostal": "68320", + "codeCommune": "68367", + "libelleAcheminement": "WIDENSOLEN", + "nomCommune": "WIDENSOLEN" }, { - "codePostal": "26150", - "codeCommune": "26027", - "libelleAcheminement": "BARSAC", - "nomCommune": "BARSAC" + "codePostal": "68230", + "codeCommune": "68368", + "libelleAcheminement": "WIHR AU VAL", + "nomCommune": "WIHR AU VAL" }, { - "codePostal": "26160", - "codeCommune": "26031", - "libelleAcheminement": "LA BATIE ROLLAND", - "nomCommune": "LA BATIE ROLLAND" + "codePostal": "68124", + "codeCommune": "68374", + "libelleAcheminement": "WINTZENHEIM", + "nomCommune": "WINTZENHEIM" }, { - "codePostal": "26790", - "codeCommune": "26033", - "libelleAcheminement": "LA BAUME DE TRANSIT", - "nomCommune": "LA BAUME DE TRANSIT" + "codePostal": "68130", + "codeCommune": "68377", + "libelleAcheminement": "WITTERSDORF", + "nomCommune": "WITTERSDORF" }, { - "codePostal": "26400", - "codeCommune": "26035", - "libelleAcheminement": "BEAUFORT SUR GERVANNE", - "nomCommune": "BEAUFORT SUR GERVANNE" + "codePostal": "68500", + "codeCommune": "68381", + "libelleAcheminement": "WUENHEIM", + "nomCommune": "WUENHEIM" }, { - "codePostal": "26460", - "codeCommune": "26056", - "libelleAcheminement": "BOURDEAUX", - "nomCommune": "BOURDEAUX" + "codePostal": "69430", + "codeCommune": "69012", + "libelleAcheminement": "LES ARDILLATS", + "nomCommune": "LES ARDILLATS" }, { - "codePostal": "26260", - "codeCommune": "26061", - "libelleAcheminement": "BREN", - "nomCommune": "BREN" + "codePostal": "69790", + "codeCommune": "69016", + "libelleAcheminement": "AZOLETTE", + "nomCommune": "AZOLETTE" }, { - "codePostal": "26340", - "codeCommune": "26062", - "libelleAcheminement": "BRETTE", - "nomCommune": "BRETTE" + "codePostal": "69430", + "codeCommune": "69018", + "libelleAcheminement": "BEAUJEU", + "nomCommune": "BEAUJEU" }, { - "codePostal": "26120", - "codeCommune": "26064", - "libelleAcheminement": "CHABEUIL", - "nomCommune": "CHABEUIL" + "codePostal": "69220", + "codeCommune": "69019", + "libelleAcheminement": "BELLEVILLE EN BEAUJOLAIS", + "nomCommune": "BELLEVILLE EN BEAUJOLAIS" }, { - "codePostal": "26230", - "codeCommune": "26070", - "libelleAcheminement": "CHAMARET", - "nomCommune": "CHAMARET" + "codePostal": "69690", + "codeCommune": "69022", + "libelleAcheminement": "BIBOST", + "nomCommune": "BIBOST" }, { - "codePostal": "26450", - "codeCommune": "26078", - "libelleAcheminement": "CHAROLS", - "nomCommune": "CHAROLS" + "codePostal": "69690", + "codeCommune": "69022", + "libelleAcheminement": "BIBOST", + "nomCommune": "BIBOST" }, { - "codePostal": "26300", - "codeCommune": "26079", - "libelleAcheminement": "CHARPEY", - "nomCommune": "CHARPEY" + "codePostal": "69460", + "codeCommune": "69023", + "libelleAcheminement": "BLACE", + "nomCommune": "BLACE" }, { - "codePostal": "26340", - "codeCommune": "26080", - "libelleAcheminement": "CHASTEL ARNAUD", - "nomCommune": "CHASTEL ARNAUD" + "codePostal": "69620", + "codeCommune": "69024", + "libelleAcheminement": "VAL D OINGT", + "nomCommune": "VAL D OINGT" }, { - "codePostal": "26300", - "codeCommune": "26084", - "libelleAcheminement": "CHATEAUNEUF SUR ISERE", - "nomCommune": "CHATEAUNEUF SUR ISERE" + "codePostal": "69530", + "codeCommune": "69027", + "libelleAcheminement": "BRIGNAIS", + "nomCommune": "BRIGNAIS" }, { - "codePostal": "26780", - "codeCommune": "26085", - "libelleAcheminement": "CHATEAUNEUF DU RHONE", - "nomCommune": "CHATEAUNEUF DU RHONE" + "codePostal": "69690", + "codeCommune": "69030", + "libelleAcheminement": "BRULLIOLES", + "nomCommune": "BRULLIOLES" }, { - "codePostal": "26110", - "codeCommune": "26089", - "libelleAcheminement": "CHAUDEBONNE", - "nomCommune": "CHAUDEBONNE" + "codePostal": "69770", + "codeCommune": "69038", + "libelleAcheminement": "CHAMBOST LONGESSAIGNE", + "nomCommune": "CHAMBOST LONGESSAIGNE" }, { - "codePostal": "26510", - "codeCommune": "26091", - "libelleAcheminement": "CHAUVAC LAUX MONTAUX", - "nomCommune": "CHAUVAC LAUX MONTAUX" + "codePostal": "69620", + "codeCommune": "69039", + "libelleAcheminement": "CHAMELET", + "nomCommune": "CHAMELET" }, { - "codePostal": "26450", - "codeCommune": "26095", - "libelleAcheminement": "CLEON D ANDRAN", - "nomCommune": "CLEON D ANDRAN" + "codePostal": "69430", + "codeCommune": "69054", + "libelleAcheminement": "CHENELETTE", + "nomCommune": "CHENELETTE" }, { - "codePostal": "26400", - "codeCommune": "26098", - "libelleAcheminement": "COBONNE", - "nomCommune": "COBONNE" + "codePostal": "69210", + "codeCommune": "69057", + "libelleAcheminement": "CHEVINAY", + "nomCommune": "CHEVINAY" }, { - "codePostal": "26230", - "codeCommune": "26099", - "libelleAcheminement": "COLONZELLE", - "nomCommune": "COLONZELLE" + "codePostal": "69660", + "codeCommune": "69063", + "libelleAcheminement": "COLLONGES AU MONT D OR", + "nomCommune": "COLLONGES AU MONT D OR" }, { - "codePostal": "26740", - "codeCommune": "26106", - "libelleAcheminement": "LA COUCOURDE", - "nomCommune": "LA COUCOURDE" + "codePostal": "69170", + "codeCommune": "69075", + "libelleAcheminement": "DIEME", + "nomCommune": "DIEME" }, { - "codePostal": "26470", - "codeCommune": "26123", - "libelleAcheminement": "ESTABLET", - "nomCommune": "ESTABLET" + "codePostal": "69840", + "codeCommune": "69082", + "libelleAcheminement": "EMERINGES", + "nomCommune": "EMERINGES" }, { - "codePostal": "26400", - "codeCommune": "26125", - "libelleAcheminement": "EURRE", - "nomCommune": "EURRE" + "codePostal": "69820", + "codeCommune": "69084", + "libelleAcheminement": "FLEURIE", + "nomCommune": "FLEURIE" }, { - "codePostal": "26110", - "codeCommune": "26130", - "libelleAcheminement": "EYROLES", - "nomCommune": "EYROLES" + "codePostal": "69340", + "codeCommune": "69089", + "libelleAcheminement": "FRANCHEVILLE", + "nomCommune": "FRANCHEVILLE" }, { - "codePostal": "26310", - "codeCommune": "26136", - "libelleAcheminement": "VAL MARAVEL", - "nomCommune": "VAL MARAVEL" + "codePostal": "69610", + "codeCommune": "69099", + "libelleAcheminement": "HAUTE RIVOIRE", + "nomCommune": "HAUTE RIVOIRE" }, { - "codePostal": "26400", - "codeCommune": "26144", - "libelleAcheminement": "GRANE", - "nomCommune": "GRANE" + "codePostal": "69220", + "codeCommune": "69108", + "libelleAcheminement": "LANCIE", + "nomCommune": "LANCIE" }, { - "codePostal": "26230", - "codeCommune": "26146", - "libelleAcheminement": "GRIGNAN", - "nomCommune": "GRIGNAN" + "codePostal": "69620", + "codeCommune": "69113", + "libelleAcheminement": "LETRA", + "nomCommune": "LETRA" }, { - "codePostal": "26470", - "codeCommune": "26147", - "libelleAcheminement": "GUMIANE", - "nomCommune": "GUMIANE" + "codePostal": "69400", + "codeCommune": "69115", + "libelleAcheminement": "LIMAS", + "nomCommune": "LIMAS" }, { - "codePostal": "26560", - "codeCommune": "26150", - "libelleAcheminement": "IZON LA BRUISSE", - "nomCommune": "IZON LA BRUISSE" + "codePostal": "69420", + "codeCommune": "69119", + "libelleAcheminement": "LONGES", + "nomCommune": "LONGES" }, { - "codePostal": "26310", - "codeCommune": "26152", - "libelleAcheminement": "JONCHERES", - "nomCommune": "JONCHERES" + "codePostal": "69480", + "codeCommune": "69122", + "libelleAcheminement": "LUCENAY", + "nomCommune": "LUCENAY" }, { - "codePostal": "26560", - "codeCommune": "26153", - "libelleAcheminement": "LABOREL", - "nomCommune": "LABOREL" + "codePostal": "69860", + "codeCommune": "69135", + "libelleAcheminement": "DEUX GROSNES", + "nomCommune": "DEUX GROSNES" }, { - "codePostal": "26310", - "codeCommune": "26167", - "libelleAcheminement": "LUC EN DIOIS", - "nomCommune": "LUC EN DIOIS" + "codePostal": "69700", + "codeCommune": "69136", + "libelleAcheminement": "MONTAGNY", + "nomCommune": "MONTAGNY" }, { - "codePostal": "26160", - "codeCommune": "26171", - "libelleAcheminement": "MANAS", - "nomCommune": "MANAS" + "codePostal": "69480", + "codeCommune": "69140", + "libelleAcheminement": "MORANCE", + "nomCommune": "MORANCE" }, { - "codePostal": "26110", - "codeCommune": "26190", - "libelleAcheminement": "MONTAULIEU", - "nomCommune": "MONTAULIEU" + "codePostal": "69440", + "codeCommune": "69141", + "libelleAcheminement": "MORNANT", + "nomCommune": "MORNANT" }, { - "codePostal": "26120", - "codeCommune": "26197", - "libelleAcheminement": "MONTELIER", - "nomCommune": "MONTELIER" + "codePostal": "69600", + "codeCommune": "69149", + "libelleAcheminement": "OULLINS", + "nomCommune": "OULLINS" }, { - "codePostal": "26510", - "codeCommune": "26199", - "libelleAcheminement": "MONTFERRAND LA FARE", - "nomCommune": "MONTFERRAND LA FARE" + "codePostal": "69490", + "codeCommune": "69157", + "libelleAcheminement": "VINDRY SUR TURDINE", + "nomCommune": "VINDRY SUR TURDINE" }, { - "codePostal": "26560", - "codeCommune": "26200", - "libelleAcheminement": "MONTFROC", - "nomCommune": "MONTFROC" + "codePostal": "69560", + "codeCommune": "69189", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "26220", - "codeCommune": "26202", - "libelleAcheminement": "MONTJOUX", - "nomCommune": "MONTJOUX" + "codePostal": "69430", + "codeCommune": "69196", + "libelleAcheminement": "ST DIDIER SUR BEAUJEU", + "nomCommune": "ST DIDIER SUR BEAUJEU" }, { - "codePostal": "26120", - "codeCommune": "26212", - "libelleAcheminement": "MONTVENDRE", - "nomCommune": "MONTVENDRE" + "codePostal": "69460", + "codeCommune": "69198", + "libelleAcheminement": "ST ETIENNE LA VARENNE", + "nomCommune": "ST ETIENNE LA VARENNE" }, { - "codePostal": "26510", - "codeCommune": "26227", - "libelleAcheminement": "PELONNE", - "nomCommune": "PELONNE" + "codePostal": "69610", + "codeCommune": "69203", + "libelleAcheminement": "ST GENIS L ARGENTIERE", + "nomCommune": "ST GENIS L ARGENTIERE" }, { - "codePostal": "26400", - "codeCommune": "26234", - "libelleAcheminement": "PIEGROS LA CLASTRE", - "nomCommune": "PIEGROS LA CLASTRE" + "codePostal": "69210", + "codeCommune": "69208", + "libelleAcheminement": "ST GERMAIN NUELLES", + "nomCommune": "ST GERMAIN NUELLES" }, { - "codePostal": "26700", - "codeCommune": "26235", - "libelleAcheminement": "PIERRELATTE", - "nomCommune": "PIERRELATTE" + "codePostal": "69210", + "codeCommune": "69208", + "libelleAcheminement": "ST GERMAIN NUELLES", + "nomCommune": "ST GERMAIN NUELLES" }, { - "codePostal": "26170", - "codeCommune": "26239", - "libelleAcheminement": "PLAISIANS", - "nomCommune": "PLAISIANS" + "codePostal": "69930", + "codeCommune": "69220", + "libelleAcheminement": "ST LAURENT DE CHAMOUSSET", + "nomCommune": "ST LAURENT DE CHAMOUSSET" }, { - "codePostal": "26160", - "codeCommune": "26243", - "libelleAcheminement": "LE POET LAVAL", - "nomCommune": "LE POET LAVAL" + "codePostal": "69440", + "codeCommune": "69228", + "libelleAcheminement": "CHABANIERE", + "nomCommune": "CHABANIERE" }, { - "codePostal": "26160", - "codeCommune": "26249", - "libelleAcheminement": "PONT DE BARRET", - "nomCommune": "PONT DE BARRET" + "codePostal": "69620", + "codeCommune": "69230", + "libelleAcheminement": "STE PAULE", + "nomCommune": "STE PAULE" }, { - "codePostal": "26310", - "codeCommune": "26255", - "libelleAcheminement": "LES PRES", - "nomCommune": "LES PRES" + "codePostal": "69560", + "codeCommune": "69235", + "libelleAcheminement": "ST ROMAIN EN GAL", + "nomCommune": "ST ROMAIN EN GAL" }, { - "codePostal": "26160", - "codeCommune": "26257", - "libelleAcheminement": "PUYGIRON", - "nomCommune": "PUYGIRON" + "codePostal": "69700", + "codeCommune": "69236", + "libelleAcheminement": "ST ROMAIN EN GIER", + "nomCommune": "ST ROMAIN EN GIER" }, { - "codePostal": "26330", - "codeCommune": "26259", - "libelleAcheminement": "RATIERES", - "nomCommune": "RATIERES" + "codePostal": "69220", + "codeCommune": "69242", + "libelleAcheminement": "TAPONAS", + "nomCommune": "TAPONAS" }, { - "codePostal": "26340", - "codeCommune": "26266", - "libelleAcheminement": "RIMON ET SAVEL", - "nomCommune": "RIMON ET SAVEL" + "codePostal": "69160", + "codeCommune": "69244", + "libelleAcheminement": "TASSIN LA DEMI LUNE", + "nomCommune": "TASSIN LA DEMI LUNE" }, { - "codePostal": "26170", - "codeCommune": "26267", - "libelleAcheminement": "RIOMS", - "nomCommune": "RIOMS" + "codePostal": "69620", + "codeCommune": "69245", + "libelleAcheminement": "TERNAND", + "nomCommune": "TERNAND" }, { - "codePostal": "26110", - "codeCommune": "26269", - "libelleAcheminement": "ROCHEBRUNE", - "nomCommune": "ROCHEBRUNE" + "codePostal": "69240", + "codeCommune": "69248", + "libelleAcheminement": "THIZY LES BOURGS", + "nomCommune": "THIZY LES BOURGS" }, { - "codePostal": "26160", - "codeCommune": "26272", - "libelleAcheminement": "ROCHEFORT EN VALDAINE", - "nomCommune": "ROCHEFORT EN VALDAINE" + "codePostal": "69240", + "codeCommune": "69248", + "libelleAcheminement": "THIZY LES BOURGS", + "nomCommune": "THIZY LES BOURGS" }, { - "codePostal": "26770", - "codeCommune": "26276", - "libelleAcheminement": "ROCHE ST SECRET BECONNE", - "nomCommune": "ROCHE ST SECRET BECONNE" + "codePostal": "69400", + "codeCommune": "69264", + "libelleAcheminement": "VILLEFRANCHE SUR SAONE", + "nomCommune": "VILLEFRANCHE SUR SAONE" }, { - "codePostal": "26400", - "codeCommune": "26277", - "libelleAcheminement": "LA ROCHE SUR GRANE", - "nomCommune": "LA ROCHE SUR GRANE" + "codePostal": "69730", + "codeCommune": "69278", + "libelleAcheminement": "GENAY", + "nomCommune": "GENAY" }, { - "codePostal": "26770", - "codeCommune": "26285", - "libelleAcheminement": "ROUSSET LES VIGNES", - "nomCommune": "ROUSSET LES VIGNES" + "codePostal": "69330", + "codeCommune": "69279", + "libelleAcheminement": "JONAGE", + "nomCommune": "JONAGE" }, { - "codePostal": "26510", - "codeCommune": "26288", - "libelleAcheminement": "SAHUNE", - "nomCommune": "SAHUNE" + "codePostal": "69800", + "codeCommune": "69290", + "libelleAcheminement": "ST PRIEST", + "nomCommune": "ST PRIEST" }, { - "codePostal": "26420", - "codeCommune": "26290", - "libelleAcheminement": "ST AGNAN EN VERCORS", - "nomCommune": "ST AGNAN EN VERCORS" + "codePostal": "69580", + "codeCommune": "69292", + "libelleAcheminement": "SATHONAY CAMP", + "nomCommune": "SATHONAY CAMP" }, { - "codePostal": "26420", - "codeCommune": "26290", - "libelleAcheminement": "ST AGNAN EN VERCORS", - "nomCommune": "ST AGNAN EN VERCORS" + "codePostal": "69780", + "codeCommune": "69298", + "libelleAcheminement": "TOUSSIEU", + "nomCommune": "TOUSSIEU" }, { - "codePostal": "26170", - "codeCommune": "26292", - "libelleAcheminement": "ST AUBAN SUR L OUVEZE", - "nomCommune": "ST AUBAN SUR L OUVEZE" + "codePostal": "69125", + "codeCommune": "69299", + "libelleAcheminement": "COLOMBIER SAUGNIEU", + "nomCommune": "COLOMBIER SAUGNIEU" }, { - "codePostal": "26330", - "codeCommune": "26293", - "libelleAcheminement": "ST AVIT", - "nomCommune": "ST AVIT" + "codePostal": "69002", + "codeCommune": "69382", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 02" }, { - "codePostal": "26240", - "codeCommune": "26295", - "libelleAcheminement": "ST BARTHELEMY DE VALS", - "nomCommune": "ST BARTHELEMY DE VALS" + "codePostal": "70110", + "codeCommune": "70005", + "libelleAcheminement": "AILLEVANS", + "nomCommune": "AILLEVANS" }, { - "codePostal": "26340", - "codeCommune": "26296", - "libelleAcheminement": "ST BENOIT EN DIOIS", - "nomCommune": "ST BENOIT EN DIOIS" + "codePostal": "70320", + "codeCommune": "70006", + "libelleAcheminement": "AILLEVILLERS ET LYAUMONT", + "nomCommune": "AILLEVILLERS ET LYAUMONT" }, { - "codePostal": "26170", - "codeCommune": "26303", - "libelleAcheminement": "STE EUPHEMIE SUR OUVEZE", - "nomCommune": "STE EUPHEMIE SUR OUVEZE" + "codePostal": "70500", + "codeCommune": "70009", + "libelleAcheminement": "AISEY ET RICHECOURT", + "nomCommune": "AISEY ET RICHECOURT" }, { - "codePostal": "26110", - "codeCommune": "26304", - "libelleAcheminement": "ST FERREOL TRENTE PAS", - "nomCommune": "ST FERREOL TRENTE PAS" + "codePostal": "70160", + "codeCommune": "70012", + "libelleAcheminement": "AMANCE", + "nomCommune": "AMANCE" }, { - "codePostal": "26110", - "codeCommune": "26306", - "libelleAcheminement": "STE JALLE", - "nomCommune": "STE JALLE" + "codePostal": "70210", + "codeCommune": "70017", + "libelleAcheminement": "ANCHENONCOURT ET CHAZEL", + "nomCommune": "ANCHENONCOURT ET CHAZEL" }, { - "codePostal": "26190", - "codeCommune": "26307", - "libelleAcheminement": "ST JEAN EN ROYANS", - "nomCommune": "ST JEAN EN ROYANS" + "codePostal": "70000", + "codeCommune": "70019", + "libelleAcheminement": "ANDELARRE", + "nomCommune": "ANDELARRE" }, { - "codePostal": "26320", - "codeCommune": "26313", - "libelleAcheminement": "ST MARCEL LES VALENCE", - "nomCommune": "ST MARCEL LES VALENCE" + "codePostal": "70700", + "codeCommune": "70022", + "libelleAcheminement": "ANGIREY", + "nomCommune": "ANGIREY" }, { - "codePostal": "26340", - "codeCommune": "26321", - "libelleAcheminement": "ST NAZAIRE LE DESERT", - "nomCommune": "ST NAZAIRE LE DESERT" + "codePostal": "70180", + "codeCommune": "70037", + "libelleAcheminement": "AUTET", + "nomCommune": "AUTET" }, { - "codePostal": "26770", - "codeCommune": "26322", - "libelleAcheminement": "ST PANTALEON LES VIGNES", - "nomCommune": "ST PANTALEON LES VIGNES" + "codePostal": "70150", + "codeCommune": "70045", + "libelleAcheminement": "AVRIGNEY VIREY", + "nomCommune": "AVRIGNEY VIREY" }, { - "codePostal": "26110", - "codeCommune": "26329", - "libelleAcheminement": "ST SAUVEUR GOUVERNET", - "nomCommune": "ST SAUVEUR GOUVERNET" + "codePostal": "70100", + "codeCommune": "70054", + "libelleAcheminement": "BATTRANS", + "nomCommune": "BATTRANS" }, { - "codePostal": "26400", - "codeCommune": "26336", - "libelleAcheminement": "SAOU", - "nomCommune": "SAOU" + "codePostal": "70190", + "codeCommune": "70059", + "libelleAcheminement": "BEAUMOTTE AUBERTANS", + "nomCommune": "BEAUMOTTE AUBERTANS" }, { - "codePostal": "26740", - "codeCommune": "26339", - "libelleAcheminement": "SAVASSE", - "nomCommune": "SAVASSE" + "codePostal": "70190", + "codeCommune": "70059", + "libelleAcheminement": "BEAUMOTTE AUBERTANS", + "nomCommune": "BEAUMOTTE AUBERTANS" }, { - "codePostal": "26740", - "codeCommune": "26339", - "libelleAcheminement": "SAVASSE", - "nomCommune": "SAVASSE" + "codePostal": "70500", + "codeCommune": "70066", + "libelleAcheminement": "BETAUCOURT", + "nomCommune": "BETAUCOURT" }, { - "codePostal": "26160", - "codeCommune": "26343", - "libelleAcheminement": "SOUSPIERRE", - "nomCommune": "SOUSPIERRE" + "codePostal": "70170", + "codeCommune": "70079", + "libelleAcheminement": "BOUGNON", + "nomCommune": "BOUGNON" }, { - "codePostal": "26790", - "codeCommune": "26345", - "libelleAcheminement": "SUZE LA ROUSSE", - "nomCommune": "SUZE LA ROUSSE" + "codePostal": "70190", + "codeCommune": "70085", + "libelleAcheminement": "BOULT", + "nomCommune": "BOULT" }, { - "codePostal": "26740", - "codeCommune": "26353", - "libelleAcheminement": "LES TOURRETTES", - "nomCommune": "LES TOURRETTES" + "codePostal": "70000", + "codeCommune": "70090", + "libelleAcheminement": "BOURSIERES", + "nomCommune": "BOURSIERES" }, { - "codePostal": "26460", - "codeCommune": "26356", - "libelleAcheminement": "TRUINAS", - "nomCommune": "TRUINAS" + "codePostal": "70160", + "codeCommune": "70095", + "libelleAcheminement": "BREUREY LES FAVERNEY", + "nomCommune": "BREUREY LES FAVERNEY" }, { - "codePostal": "26790", - "codeCommune": "26357", - "libelleAcheminement": "TULETTE", - "nomCommune": "TULETTE" + "codePostal": "70400", + "codeCommune": "70096", + "libelleAcheminement": "BREVILLIERS", + "nomCommune": "BREVILLIERS" }, { - "codePostal": "26150", - "codeCommune": "26359", - "libelleAcheminement": "VACHERES EN QUINT", - "nomCommune": "VACHERES EN QUINT" + "codePostal": "70800", + "codeCommune": "70097", + "libelleAcheminement": "BRIAUCOURT", + "nomCommune": "BRIAUCOURT" }, { - "codePostal": "26110", - "codeCommune": "26367", - "libelleAcheminement": "VENTEROL", - "nomCommune": "VENTEROL" + "codePostal": "70180", + "codeCommune": "70099", + "libelleAcheminement": "BROTTE LES RAY", + "nomCommune": "BROTTE LES RAY" }, { - "codePostal": "26560", - "codeCommune": "26372", - "libelleAcheminement": "VERS SUR MEOUGE", - "nomCommune": "VERS SUR MEOUGE" + "codePostal": "70140", + "codeCommune": "70101", + "libelleAcheminement": "BROYE AUBIGNEY MONTSEUGNY", + "nomCommune": "BROYE AUBIGNEY MONTSEUGNY" }, { - "codePostal": "27800", - "codeCommune": "27001", - "libelleAcheminement": "ACLOU", - "nomCommune": "ACLOU" + "codePostal": "70150", + "codeCommune": "70102", + "libelleAcheminement": "BRUSSEY", + "nomCommune": "BRUSSEY" }, { - "codePostal": "27570", - "codeCommune": "27002", - "libelleAcheminement": "ACON", - "nomCommune": "ACON" + "codePostal": "70400", + "codeCommune": "70117", + "libelleAcheminement": "CHALONVILLARS", + "nomCommune": "CHALONVILLARS" }, { - "codePostal": "27370", - "codeCommune": "27011", - "libelleAcheminement": "AMFREVILLE ST AMAND", - "nomCommune": "AMFREVILLE ST AMAND" + "codePostal": "70150", + "codeCommune": "70119", + "libelleAcheminement": "CHAMBORNAY LES PIN", + "nomCommune": "CHAMBORNAY LES PIN" }, { - "codePostal": "27370", - "codeCommune": "27011", - "libelleAcheminement": "AMFREVILLE ST AMAND", - "nomCommune": "AMFREVILLE ST AMAND" + "codePostal": "70290", + "codeCommune": "70120", + "libelleAcheminement": "CHAMPAGNEY", + "nomCommune": "CHAMPAGNEY" }, { - "codePostal": "27430", - "codeCommune": "27015", - "libelleAcheminement": "ANDE", - "nomCommune": "ANDE" + "codePostal": "70400", + "codeCommune": "70121", + "libelleAcheminement": "CHAMPEY", + "nomCommune": "CHAMPEY" }, { - "codePostal": "27930", - "codeCommune": "27017", - "libelleAcheminement": "ANGERVILLE LA CAMPAGNE", - "nomCommune": "ANGERVILLE LA CAMPAGNE" + "codePostal": "70600", + "codeCommune": "70122", + "libelleAcheminement": "CHAMPLITTE", + "nomCommune": "CHAMPLITTE" }, { - "codePostal": "27490", - "codeCommune": "27025", - "libelleAcheminement": "AUTHEUIL AUTHOUILLET", - "nomCommune": "AUTHEUIL AUTHOUILLET" + "codePostal": "70700", + "codeCommune": "70129", + "libelleAcheminement": "LA CHAPELLE ST QUILLAIN", + "nomCommune": "LA CHAPELLE ST QUILLAIN" }, { - "codePostal": "27240", - "codeCommune": "27032", - "libelleAcheminement": "CHAMBOIS", - "nomCommune": "CHAMBOIS" + "codePostal": "70140", + "codeCommune": "70151", + "libelleAcheminement": "CHEVIGNEY", + "nomCommune": "CHEVIGNEY" }, { - "codePostal": "27440", - "codeCommune": "27034", - "libelleAcheminement": "BACQUEVILLE", - "nomCommune": "BACQUEVILLE" + "codePostal": "70120", + "codeCommune": "70153", + "libelleAcheminement": "CINTREY", + "nomCommune": "CINTREY" }, { - "codePostal": "27260", - "codeCommune": "27035", - "libelleAcheminement": "BAILLEUL LA VALLEE", - "nomCommune": "BAILLEUL LA VALLEE" + "codePostal": "70190", + "codeCommune": "70174", + "libelleAcheminement": "CORDONNET", + "nomCommune": "CORDONNET" }, { - "codePostal": "27130", - "codeCommune": "27036", - "libelleAcheminement": "BALINES", - "nomCommune": "BALINES" + "codePostal": "70500", + "codeCommune": "70177", + "libelleAcheminement": "CORRE", + "nomCommune": "CORRE" }, { - "codePostal": "27170", - "codeCommune": "27037", - "libelleAcheminement": "BARC", - "nomCommune": "BARC" + "codePostal": "70110", + "codeCommune": "70180", + "libelleAcheminement": "COURCHATON", + "nomCommune": "COURCHATON" }, { - "codePostal": "27180", - "codeCommune": "27044", - "libelleAcheminement": "LES BAUX STE CROIX", - "nomCommune": "LES BAUX STE CROIX" + "codePostal": "70600", + "codeCommune": "70183", + "libelleAcheminement": "COURTESOULT ET GATEY", + "nomCommune": "COURTESOULT ET GATEY" }, { - "codePostal": "27480", - "codeCommune": "27048", - "libelleAcheminement": "BEAUFICEL EN LYONS", - "nomCommune": "BEAUFICEL EN LYONS" + "codePostal": "70240", + "codeCommune": "70188", + "libelleAcheminement": "CREVENEY", + "nomCommune": "CREVENEY" }, { - "codePostal": "27270", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "70160", + "codeCommune": "70190", + "libelleAcheminement": "CUBRY LES FAVERNEY", + "nomCommune": "CUBRY LES FAVERNEY" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "70800", + "codeCommune": "70194", + "libelleAcheminement": "CUVE", + "nomCommune": "CUVE" }, { - "codePostal": "27170", - "codeCommune": "27051", - "libelleAcheminement": "BEAUMONT LE ROGER", - "nomCommune": "BEAUMONT LE ROGER" + "codePostal": "70200", + "codeCommune": "70195", + "libelleAcheminement": "DAMBENOIT LES COLOMBE", + "nomCommune": "DAMBENOIT LES COLOMBE" }, { - "codePostal": "27180", - "codeCommune": "27057", - "libelleAcheminement": "BERNIENVILLE", - "nomCommune": "BERNIENVILLE" + "codePostal": "70230", + "codeCommune": "70197", + "libelleAcheminement": "DAMPIERRE SUR LINOTTE", + "nomCommune": "DAMPIERRE SUR LINOTTE" }, { - "codePostal": "27700", - "codeCommune": "27058", - "libelleAcheminement": "LES TROIS LACS", - "nomCommune": "LES TROIS LACS" + "codePostal": "70000", + "codeCommune": "70203", + "libelleAcheminement": "LA DEMIE", + "nomCommune": "LA DEMIE" }, { - "codePostal": "27370", - "codeCommune": "27062", - "libelleAcheminement": "LES MONTS DU ROUMOIS", - "nomCommune": "LES MONTS DU ROUMOIS" + "codePostal": "70100", + "codeCommune": "70220", + "libelleAcheminement": "ESSERTENNE ET CECEY", + "nomCommune": "ESSERTENNE ET CECEY" }, { - "codePostal": "27220", - "codeCommune": "27073", - "libelleAcheminement": "BOIS LE ROI", - "nomCommune": "BOIS LE ROI" + "codePostal": "70110", + "codeCommune": "70226", + "libelleAcheminement": "FALLON", + "nomCommune": "FALLON" }, { - "codePostal": "27800", - "codeCommune": "27074", - "libelleAcheminement": "BOISNEY", - "nomCommune": "BOISNEY" + "codePostal": "70160", + "codeCommune": "70228", + "libelleAcheminement": "FAVERNEY", + "nomCommune": "FAVERNEY" }, { - "codePostal": "27150", - "codeCommune": "27098", - "libelleAcheminement": "BOUCHEVILLIERS", - "nomCommune": "BOUCHEVILLIERS" + "codePostal": "70310", + "codeCommune": "70233", + "libelleAcheminement": "LES FESSEY", + "nomCommune": "LES FESSEY" }, { - "codePostal": "27520", - "codeCommune": "27105", - "libelleAcheminement": "GRAND BOURGTHEROULDE", - "nomCommune": "GRAND BOURGTHEROULDE" + "codePostal": "70210", + "codeCommune": "70242", + "libelleAcheminement": "FONTENOIS LA VILLE", + "nomCommune": "FONTENOIS LA VILLE" }, { - "codePostal": "27520", - "codeCommune": "27105", - "libelleAcheminement": "GRAND BOURGTHEROULDE", - "nomCommune": "GRAND BOURGTHEROULDE" + "codePostal": "70220", + "codeCommune": "70245", + "libelleAcheminement": "FOUGEROLLES ST VALBERT", + "nomCommune": "FOUGEROLLES ST VALBERT" }, { - "codePostal": "27160", - "codeCommune": "27112", - "libelleAcheminement": "BRETEUIL", - "nomCommune": "BRETEUIL" + "codePostal": "70600", + "codeCommune": "70247", + "libelleAcheminement": "FOUVENT ST ANDOCHE", + "nomCommune": "FOUVENT ST ANDOCHE" }, { - "codePostal": "27400", - "codeCommune": "27127", - "libelleAcheminement": "CANAPPEVILLE", - "nomCommune": "CANAPPEVILLE" + "codePostal": "70240", + "codeCommune": "70262", + "libelleAcheminement": "GENEVREUILLE", + "nomCommune": "GENEVREUILLE" }, { - "codePostal": "27300", - "codeCommune": "27129", - "libelleAcheminement": "CAORCHES ST NICOLAS", - "nomCommune": "CAORCHES ST NICOLAS" + "codePostal": "70100", + "codeCommune": "70265", + "libelleAcheminement": "GERMIGNEY", + "nomCommune": "GERMIGNEY" }, { - "codePostal": "27270", - "codeCommune": "27130", - "libelleAcheminement": "CAPELLE LES GRANDS", - "nomCommune": "CAPELLE LES GRANDS" + "codePostal": "70210", + "codeCommune": "70269", + "libelleAcheminement": "GIREFONTAINE", + "nomCommune": "GIREFONTAINE" }, { - "codePostal": "27120", - "codeCommune": "27140", - "libelleAcheminement": "CHAMBRAY", - "nomCommune": "CHAMBRAY" + "codePostal": "70100", + "codeCommune": "70279", + "libelleAcheminement": "GRAY", + "nomCommune": "GRAY" }, { - "codePostal": "27270", - "codeCommune": "27148", - "libelleAcheminement": "LA CHAPELLE GAUTHIER", - "nomCommune": "LA CHAPELLE GAUTHIER" + "codePostal": "70500", + "codeCommune": "70292", + "libelleAcheminement": "JUSSEY", + "nomCommune": "JUSSEY" }, { - "codePostal": "27240", - "codeCommune": "27157", - "libelleAcheminement": "MARBOIS", - "nomCommune": "MARBOIS" + "codePostal": "70240", + "codeCommune": "70303", + "libelleAcheminement": "LIEVANS", + "nomCommune": "LIEVANS" }, { - "codePostal": "27180", - "codeCommune": "27161", - "libelleAcheminement": "CLAVILLE", - "nomCommune": "CLAVILLE" + "codePostal": "70200", + "codeCommune": "70306", + "libelleAcheminement": "LOMONT", + "nomCommune": "LOMONT" }, { - "codePostal": "27170", - "codeCommune": "27164", - "libelleAcheminement": "COMBON", - "nomCommune": "COMBON" + "codePostal": "70310", + "codeCommune": "70308", + "libelleAcheminement": "LA LONGINE", + "nomCommune": "LA LONGINE" }, { - "codePostal": "27190", - "codeCommune": "27165", - "libelleAcheminement": "CONCHES EN OUCHE", - "nomCommune": "CONCHES EN OUCHE" + "codePostal": "70230", + "codeCommune": "70309", + "libelleAcheminement": "LOULANS VERCHAMP", + "nomCommune": "LOULANS VERCHAMP" }, { - "codePostal": "27210", - "codeCommune": "27169", - "libelleAcheminement": "CONTEVILLE", - "nomCommune": "CONTEVILLE" + "codePostal": "70230", + "codeCommune": "70309", + "libelleAcheminement": "LOULANS VERCHAMP", + "nomCommune": "LOULANS VERCHAMP" }, { - "codePostal": "27940", - "codeCommune": "27180", - "libelleAcheminement": "COURCELLES SUR SEINE", - "nomCommune": "COURCELLES SUR SEINE" + "codePostal": "70800", + "codeCommune": "70315", + "libelleAcheminement": "MAGNONCOURT", + "nomCommune": "MAGNONCOURT" }, { - "codePostal": "27130", - "codeCommune": "27182", - "libelleAcheminement": "COURTEILLES", - "nomCommune": "COURTEILLES" + "codePostal": "70110", + "codeCommune": "70317", + "libelleAcheminement": "LES MAGNY", + "nomCommune": "LES MAGNY" }, { - "codePostal": "27110", - "codeCommune": "27185", - "libelleAcheminement": "CRESTOT", - "nomCommune": "CRESTOT" + "codePostal": "70400", + "codeCommune": "70330", + "libelleAcheminement": "MANDREVILLARS", + "nomCommune": "MANDREVILLARS" }, { - "codePostal": "27110", - "codeCommune": "27187", - "libelleAcheminement": "CRIQUEBEUF LA CAMPAGNE", - "nomCommune": "CRIQUEBEUF LA CAMPAGNE" + "codePostal": "70310", + "codeCommune": "70352", + "libelleAcheminement": "LA MONTAGNE", + "nomCommune": "LA MONTAGNE" }, { - "codePostal": "27110", - "codeCommune": "27192", - "libelleAcheminement": "CROSVILLE LA VIEILLE", - "nomCommune": "CROSVILLE LA VIEILLE" + "codePostal": "70700", + "codeCommune": "70356", + "libelleAcheminement": "MONTBOILLON", + "nomCommune": "MONTBOILLON" }, { - "codePostal": "27340", - "codeCommune": "27196", - "libelleAcheminement": "LES DAMPS", - "nomCommune": "LES DAMPS" + "codePostal": "70230", + "codeCommune": "70357", + "libelleAcheminement": "MONTBOZON", + "nomCommune": "MONTBOZON" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "70120", + "codeCommune": "70373", + "libelleAcheminement": "LA ROCHE MOREY", + "nomCommune": "LA ROCHE MOREY" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "70360", + "codeCommune": "70386", + "libelleAcheminement": "LA NEUVELLE LES SCEY", + "nomCommune": "LA NEUVELLE LES SCEY" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "70000", + "codeCommune": "70388", + "libelleAcheminement": "NOIDANS LES VESOUL", + "nomCommune": "NOIDANS LES VESOUL" }, { - "codePostal": "27930", - "codeCommune": "27200", - "libelleAcheminement": "DARDEZ", - "nomCommune": "DARDEZ" + "codePostal": "70000", + "codeCommune": "70390", + "libelleAcheminement": "NOROY LE BOURG", + "nomCommune": "NOROY LE BOURG" }, { - "codePostal": "27110", - "codeCommune": "27201", - "libelleAcheminement": "DAUBEUF LA CAMPAGNE", - "nomCommune": "DAUBEUF LA CAMPAGNE" + "codePostal": "70120", + "codeCommune": "70392", + "libelleAcheminement": "OIGNEY", + "nomCommune": "OIGNEY" }, { - "codePostal": "27430", - "codeCommune": "27202", - "libelleAcheminement": "DAUBEUF PRES VATTEVILLE", - "nomCommune": "DAUBEUF PRES VATTEVILLE" + "codePostal": "70230", + "codeCommune": "70397", + "libelleAcheminement": "ORMENANS", + "nomCommune": "ORMENANS" }, { - "codePostal": "27290", - "codeCommune": "27209", - "libelleAcheminement": "ECAQUELON", - "nomCommune": "ECAQUELON" + "codePostal": "70360", + "codeCommune": "70401", + "libelleAcheminement": "OVANCHES", + "nomCommune": "OVANCHES" }, { - "codePostal": "27170", - "codeCommune": "27210", - "libelleAcheminement": "ECARDENVILLE LA CAMPAGNE", - "nomCommune": "ECARDENVILLE LA CAMPAGNE" + "codePostal": "70800", + "codeCommune": "70412", + "libelleAcheminement": "PLAINEMONT", + "nomCommune": "PLAINEMONT" }, { - "codePostal": "27510", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "70310", + "codeCommune": "70425", + "libelleAcheminement": "LA PROISELIERE ET LANGLE", + "nomCommune": "LA PROISELIERE ET LANGLE" }, { - "codePostal": "27510", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "70000", + "codeCommune": "70428", + "libelleAcheminement": "PUSEY", + "nomCommune": "PUSEY" }, { - "codePostal": "27630", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "70140", + "codeCommune": "70443", + "libelleAcheminement": "LA GRANDE RESIE", + "nomCommune": "LA GRANDE RESIE" }, { - "codePostal": "27630", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "70000", + "codeCommune": "70452", + "libelleAcheminement": "ROSEY", + "nomCommune": "ROSEY" }, { - "codePostal": "27630", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "70190", + "codeCommune": "70456", + "libelleAcheminement": "RUHANS", + "nomCommune": "RUHANS" }, { - "codePostal": "27630", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "70100", + "codeCommune": "70466", + "libelleAcheminement": "ST LOUP NANTOUARD", + "nomCommune": "ST LOUP NANTOUARD" }, { - "codePostal": "27930", - "codeCommune": "27216", - "libelleAcheminement": "EMALLEVILLE", - "nomCommune": "EMALLEVILLE" + "codePostal": "70800", + "codeCommune": "70467", + "libelleAcheminement": "ST LOUP SUR SEMOUSE", + "nomCommune": "ST LOUP SUR SEMOUSE" }, { - "codePostal": "27190", - "codeCommune": "27217", - "libelleAcheminement": "EMANVILLE", - "nomCommune": "EMANVILLE" + "codePostal": "70300", + "codeCommune": "70473", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "27350", - "codeCommune": "27228", - "libelleAcheminement": "ETURQUERAYE", - "nomCommune": "ETURQUERAYE" + "codePostal": "70240", + "codeCommune": "70478", + "libelleAcheminement": "SAULX", + "nomCommune": "SAULX" }, { - "codePostal": "27530", - "codeCommune": "27230", - "libelleAcheminement": "EZY SUR EURE", - "nomCommune": "EZY SUR EURE" + "codePostal": "70120", + "codeCommune": "70486", + "libelleAcheminement": "SEMMADON", + "nomCommune": "SEMMADON" }, { - "codePostal": "27190", - "codeCommune": "27235", - "libelleAcheminement": "FAVEROLLES LA CAMPAGNE", - "nomCommune": "FAVEROLLES LA CAMPAGNE" + "codePostal": "70110", + "codeCommune": "70487", + "libelleAcheminement": "SENARGENT MIGNAFANS", + "nomCommune": "SENARGENT MIGNAFANS" }, { - "codePostal": "27230", - "codeCommune": "27237", - "libelleAcheminement": "LE FAVRIL", - "nomCommune": "LE FAVRIL" + "codePostal": "70440", + "codeCommune": "70489", + "libelleAcheminement": "SERVANCE MIELLIN", + "nomCommune": "SERVANCE MIELLIN" }, { - "codePostal": "27190", - "codeCommune": "27242", - "libelleAcheminement": "LE FIDELAIRE", - "nomCommune": "LE FIDELAIRE" + "codePostal": "70150", + "codeCommune": "70494", + "libelleAcheminement": "SORNAY", + "nomCommune": "SORNAY" }, { - "codePostal": "27230", - "codeCommune": "27248", - "libelleAcheminement": "FOLLEVILLE", - "nomCommune": "FOLLEVILLE" + "codePostal": "70120", + "codeCommune": "70499", + "libelleAcheminement": "THEULEY", + "nomCommune": "THEULEY" }, { - "codePostal": "27220", - "codeCommune": "27256", - "libelleAcheminement": "LA FORET DU PARC", - "nomCommune": "LA FORET DU PARC" + "codePostal": "70360", + "codeCommune": "70504", + "libelleAcheminement": "TRAVES", + "nomCommune": "TRAVES" }, { - "codePostal": "27370", - "codeCommune": "27261", - "libelleAcheminement": "FOUQUEVILLE", - "nomCommune": "FOUQUEVILLE" + "codePostal": "70000", + "codeCommune": "70517", + "libelleAcheminement": "VALLEROIS LORIOZ", + "nomCommune": "VALLEROIS LORIOZ" }, { - "codePostal": "27680", - "codeCommune": "27263", - "libelleAcheminement": "LE PERREY", - "nomCommune": "LE PERREY" + "codePostal": "70130", + "codeCommune": "70520", + "libelleAcheminement": "VANNE", + "nomCommune": "VANNE" }, { - "codePostal": "27800", - "codeCommune": "27266", - "libelleAcheminement": "FRANQUEVILLE", - "nomCommune": "FRANQUEVILLE" + "codePostal": "70170", + "codeCommune": "70524", + "libelleAcheminement": "VAUCHOUX", + "nomCommune": "VAUCHOUX" }, { - "codePostal": "27620", - "codeCommune": "27279", - "libelleAcheminement": "GASNY", - "nomCommune": "GASNY" + "codePostal": "70110", + "codeCommune": "70530", + "libelleAcheminement": "VELLECHEVREUX ET COURBENANS", + "nomCommune": "VELLECHEVREUX ET COURBENANS" }, { - "codePostal": "27390", - "codeCommune": "27289", - "libelleAcheminement": "LA GOULAFRIERE", - "nomCommune": "LA GOULAFRIERE" + "codePostal": "70700", + "codeCommune": "70533", + "libelleAcheminement": "VELLEFREY ET VELLEFRANGE", + "nomCommune": "VELLEFREY ET VELLEFRANGE" }, { - "codePostal": "27930", - "codeCommune": "27299", - "libelleAcheminement": "GRAVIGNY", - "nomCommune": "GRAVIGNY" + "codePostal": "70130", + "codeCommune": "70539", + "libelleAcheminement": "VELLEXON QUEUTREY ET VAUDEY", + "nomCommune": "VELLEXON QUEUTREY ET VAUDEY" }, { - "codePostal": "27120", - "codeCommune": "27312", - "libelleAcheminement": "HARDENCOURT COCHEREL", - "nomCommune": "HARDENCOURT COCHEREL" + "codePostal": "70100", + "codeCommune": "70542", + "libelleAcheminement": "VENERE", + "nomCommune": "VENERE" }, { - "codePostal": "27700", - "codeCommune": "27315", - "libelleAcheminement": "HARQUENCY", - "nomCommune": "HARQUENCY" + "codePostal": "70500", + "codeCommune": "70548", + "libelleAcheminement": "VERNOIS SUR MANCE", + "nomCommune": "VERNOIS SUR MANCE" }, { - "codePostal": "27350", - "codeCommune": "27319", - "libelleAcheminement": "LA HAYE DE ROUTOT", - "nomCommune": "LA HAYE DE ROUTOT" + "codePostal": "70110", + "codeCommune": "70552", + "libelleAcheminement": "VILLAFANS", + "nomCommune": "VILLAFANS" }, { - "codePostal": "27330", - "codeCommune": "27323", - "libelleAcheminement": "LA HAYE ST SYLVESTRE", - "nomCommune": "LA HAYE ST SYLVESTRE" + "codePostal": "70500", + "codeCommune": "70554", + "libelleAcheminement": "VILLARS LE PAUTEL", + "nomCommune": "VILLARS LE PAUTEL" }, { - "codePostal": "27630", - "codeCommune": "27331", - "libelleAcheminement": "HEUBECOURT HARICOURT", - "nomCommune": "HEUBECOURT HARICOURT" + "codePostal": "70240", + "codeCommune": "70558", + "libelleAcheminement": "LA VILLENEUVE BELLENOYE LA MAIZE", + "nomCommune": "LA VILLENEUVE BELLENOYE LA MAIZE" }, { - "codePostal": "27230", - "codeCommune": "27334", - "libelleAcheminement": "HEUDREVILLE EN LIEUVIN", - "nomCommune": "HEUDREVILLE EN LIEUVIN" + "codePostal": "70300", + "codeCommune": "70564", + "libelleAcheminement": "VILLERS LES LUXEUIL", + "nomCommune": "VILLERS LES LUXEUIL" }, { - "codePostal": "27400", - "codeCommune": "27339", - "libelleAcheminement": "HONDOUVILLE", - "nomCommune": "HONDOUVILLE" + "codePostal": "70400", + "codeCommune": "70567", + "libelleAcheminement": "VILLERS SUR SAULNOT", + "nomCommune": "VILLERS SUR SAULNOT" }, { - "codePostal": "27440", - "codeCommune": "27346", - "libelleAcheminement": "HOUVILLE EN VEXIN", - "nomCommune": "HOUVILLE EN VEXIN" + "codePostal": "70300", + "codeCommune": "70571", + "libelleAcheminement": "VISONCOURT", + "nomCommune": "VISONCOURT" }, { - "codePostal": "27110", - "codeCommune": "27354", - "libelleAcheminement": "IVILLE", - "nomCommune": "IVILLE" + "codePostal": "70180", + "codeCommune": "70574", + "libelleAcheminement": "VOLON", + "nomCommune": "VOLON" }, { - "codePostal": "27210", - "codeCommune": "27361", - "libelleAcheminement": "LA LANDE ST LEGER", - "nomCommune": "LA LANDE ST LEGER" + "codePostal": "70120", + "codeCommune": "70582", + "libelleAcheminement": "VY LES RUPT", + "nomCommune": "VY LES RUPT" }, { - "codePostal": "27470", - "codeCommune": "27364", - "libelleAcheminement": "LAUNAY", - "nomCommune": "LAUNAY" + "codePostal": "71800", + "codeCommune": "71006", + "libelleAcheminement": "AMANZE", + "nomCommune": "AMANZE" }, { - "codePostal": "27690", - "codeCommune": "27365", - "libelleAcheminement": "LERY", - "nomCommune": "LERY" + "codePostal": "71170", + "codeCommune": "71008", + "libelleAcheminement": "ANGLURE SOUS DUN", + "nomCommune": "ANGLURE SOUS DUN" }, { - "codePostal": "27480", - "codeCommune": "27373", - "libelleAcheminement": "LORLEAU", - "nomCommune": "LORLEAU" + "codePostal": "71110", + "codeCommune": "71012", + "libelleAcheminement": "ARTAIX", + "nomCommune": "ARTAIX" }, { - "codePostal": "27650", - "codeCommune": "27376", - "libelleAcheminement": "LOUYE", - "nomCommune": "LOUYE" + "codePostal": "71640", + "codeCommune": "71019", + "libelleAcheminement": "BARIZEY", + "nomCommune": "BARIZEY" }, { - "codePostal": "27640", - "codeCommune": "27400", - "libelleAcheminement": "MEREY", - "nomCommune": "MEREY" + "codePostal": "71370", + "codeCommune": "71023", + "libelleAcheminement": "BAUDRIERES", + "nomCommune": "BAUDRIERES" }, { - "codePostal": "27390", - "codeCommune": "27404", - "libelleAcheminement": "MESNIL ROUSSET", - "nomCommune": "MESNIL ROUSSET" + "codePostal": "71270", + "codeCommune": "71028", + "libelleAcheminement": "BEAUVERNOIS", + "nomCommune": "BEAUVERNOIS" }, { - "codePostal": "27150", - "codeCommune": "27405", - "libelleAcheminement": "MESNIL SOUS VIENNE", - "nomCommune": "MESNIL SOUS VIENNE" + "codePostal": "71250", + "codeCommune": "71030", + "libelleAcheminement": "BERGESSERIN", + "nomCommune": "BERGESSERIN" }, { - "codePostal": "27260", - "codeCommune": "27415", - "libelleAcheminement": "MORAINVILLE JOUVEAUX", - "nomCommune": "MORAINVILLE JOUVEAUX" + "codePostal": "71460", + "codeCommune": "71036", + "libelleAcheminement": "BISSY SOUS UXELLES", + "nomCommune": "BISSY SOUS UXELLES" }, { - "codePostal": "27220", - "codeCommune": "27419", - "libelleAcheminement": "MOUETTES", - "nomCommune": "MOUETTES" + "codePostal": "71710", + "codeCommune": "71038", + "libelleAcheminement": "LES BIZOTS", + "nomCommune": "LES BIZOTS" }, { - "codePostal": "27220", - "codeCommune": "27421", - "libelleAcheminement": "MOUSSEAUX NEUVILLE", - "nomCommune": "MOUSSEAUX NEUVILLE" + "codePostal": "71140", + "codeCommune": "71047", + "libelleAcheminement": "BOURBON LANCY", + "nomCommune": "BOURBON LANCY" }, { - "codePostal": "27650", - "codeCommune": "27423", - "libelleAcheminement": "MUZY", - "nomCommune": "MUZY" + "codePostal": "71700", + "codeCommune": "71052", + "libelleAcheminement": "BOYER", + "nomCommune": "BOYER" }, { - "codePostal": "27730", - "codeCommune": "27429", - "libelleAcheminement": "NEUILLY", - "nomCommune": "NEUILLY" + "codePostal": "71250", + "codeCommune": "71057", + "libelleAcheminement": "BRAY", + "nomCommune": "BRAY" }, { - "codePostal": "27560", - "codeCommune": "27435", - "libelleAcheminement": "LA NOE POULAIN", - "nomCommune": "LA NOE POULAIN" + "codePostal": "71290", + "codeCommune": "71061", + "libelleAcheminement": "BRIENNE", + "nomCommune": "BRIENNE" }, { - "codePostal": "27190", - "codeCommune": "27447", - "libelleAcheminement": "LE VAL DORE", - "nomCommune": "LE VAL DORE" + "codePostal": "71190", + "codeCommune": "71063", + "libelleAcheminement": "BROYE", + "nomCommune": "BROYE" }, { - "codePostal": "27910", - "codeCommune": "27453", - "libelleAcheminement": "PERRIERS SUR ANDELLE", - "nomCommune": "PERRIERS SUR ANDELLE" + "codePostal": "71250", + "codeCommune": "71065", + "libelleAcheminement": "BUFFIERES", + "nomCommune": "BUFFIERES" }, { - "codePostal": "27230", - "codeCommune": "27462", - "libelleAcheminement": "LE PLANQUAY", - "nomCommune": "LE PLANQUAY" + "codePostal": "71390", + "codeCommune": "71070", + "libelleAcheminement": "BUXY", + "nomCommune": "BUXY" }, { - "codePostal": "27510", - "codeCommune": "27477", - "libelleAcheminement": "PRESSAGNY L ORGUEILLEUX", - "nomCommune": "PRESSAGNY L ORGUEILLEUX" + "codePostal": "71150", + "codeCommune": "71073", + "libelleAcheminement": "CHAGNY", + "nomCommune": "CHAGNY" }, { - "codePostal": "27910", - "codeCommune": "27488", - "libelleAcheminement": "RENNEVILLE", - "nomCommune": "RENNEVILLE" + "codePostal": "71120", + "codeCommune": "71086", + "libelleAcheminement": "CHANGY", + "nomCommune": "CHANGY" }, { - "codePostal": "27170", - "codeCommune": "27492", - "libelleAcheminement": "ROMILLY LA PUTHENAYE", - "nomCommune": "ROMILLY LA PUTHENAYE" + "codePostal": "71240", + "codeCommune": "71089", + "libelleAcheminement": "LA CHAPELLE DE BRAGNY", + "nomCommune": "LA CHAPELLE DE BRAGNY" }, { - "codePostal": "27120", - "codeCommune": "27501", - "libelleAcheminement": "ROUVRAY", - "nomCommune": "ROUVRAY" + "codePostal": "71570", + "codeCommune": "71090", + "libelleAcheminement": "LA CHAPELLE DE GUINCHAY", + "nomCommune": "LA CHAPELLE DE GUINCHAY" }, { - "codePostal": "27390", - "codeCommune": "27505", - "libelleAcheminement": "ST AGNAN DE CERNIERES", - "nomCommune": "ST AGNAN DE CERNIERES" + "codePostal": "71310", + "codeCommune": "71093", + "libelleAcheminement": "LA CHAPELLE ST SAUVEUR", + "nomCommune": "LA CHAPELLE ST SAUVEUR" }, { - "codePostal": "27600", - "codeCommune": "27517", - "libelleAcheminement": "ST AUBIN SUR GAILLON", - "nomCommune": "ST AUBIN SUR GAILLON" + "codePostal": "71190", + "codeCommune": "71096", + "libelleAcheminement": "LA CHAPELLE SOUS UCHON", + "nomCommune": "LA CHAPELLE SOUS UCHON" }, { - "codePostal": "27450", - "codeCommune": "27520", - "libelleAcheminement": "ST BENOIT DES OMBRES", - "nomCommune": "ST BENOIT DES OMBRES" + "codePostal": "71700", + "codeCommune": "71100", + "libelleAcheminement": "CHARDONNAY", + "nomCommune": "CHARDONNAY" }, { - "codePostal": "27820", - "codeCommune": "27521", - "libelleAcheminement": "ST CHRISTOPHE SUR AVRE", - "nomCommune": "ST CHRISTOPHE SUR AVRE" + "codePostal": "71130", + "codeCommune": "71111", + "libelleAcheminement": "CHASSY", + "nomCommune": "CHASSY" }, { - "codePostal": "27100", - "codeCommune": "27528", - "libelleAcheminement": "LE VAUDREUIL", - "nomCommune": "LE VAUDREUIL" + "codePostal": "71250", + "codeCommune": "71112", + "libelleAcheminement": "CHATEAU", + "nomCommune": "CHATEAU" }, { - "codePostal": "27520", - "codeCommune": "27531", - "libelleAcheminement": "ST DENIS DES MONTS", - "nomCommune": "ST DENIS DES MONTS" + "codePostal": "71740", + "codeCommune": "71113", + "libelleAcheminement": "CHATEAUNEUF", + "nomCommune": "CHATEAUNEUF" }, { - "codePostal": "27930", - "codeCommune": "27546", - "libelleAcheminement": "ST GERMAIN DES ANGLES", - "nomCommune": "ST GERMAIN DES ANGLES" + "codePostal": "71510", + "codeCommune": "71115", + "libelleAcheminement": "CHATEL MORON", + "nomCommune": "CHATEL MORON" }, { - "codePostal": "27320", - "codeCommune": "27548", - "libelleAcheminement": "ST GERMAIN SUR AVRE", - "nomCommune": "ST GERMAIN SUR AVRE" + "codePostal": "71170", + "codeCommune": "71120", + "libelleAcheminement": "CHAUFFAILLES", + "nomCommune": "CHAUFFAILLES" }, { - "codePostal": "27600", - "codeCommune": "27553", - "libelleAcheminement": "ST JULIEN DE LA LIEGUE", - "nomCommune": "ST JULIEN DE LA LIEGUE" + "codePostal": "71340", + "codeCommune": "71123", + "libelleAcheminement": "CHENAY LE CHATEL", + "nomCommune": "CHENAY LE CHATEL" }, { - "codePostal": "27950", - "codeCommune": "27554", - "libelleAcheminement": "LA CHAPELLE LONGUEVILLE", - "nomCommune": "LA CHAPELLE LONGUEVILLE" + "codePostal": "71390", + "codeCommune": "71124", + "libelleAcheminement": "CHENOVES", + "nomCommune": "CHENOVES" }, { - "codePostal": "27520", - "codeCommune": "27558", - "libelleAcheminement": "ST LEGER DU GENNETEY", - "nomCommune": "ST LEGER DU GENNETEY" + "codePostal": "71800", + "codeCommune": "71133", + "libelleAcheminement": "LA CLAYETTE", + "nomCommune": "LA CLAYETTE" }, { - "codePostal": "27950", - "codeCommune": "27562", - "libelleAcheminement": "ST MARCEL", - "nomCommune": "ST MARCEL" + "codePostal": "71520", + "codeCommune": "71134", + "libelleAcheminement": "NAVOUR SUR GROSNE", + "nomCommune": "NAVOUR SUR GROSNE" }, { - "codePostal": "27230", - "codeCommune": "27564", - "libelleAcheminement": "ST MARDS DE FRESNE", - "nomCommune": "ST MARDS DE FRESNE" + "codePostal": "71520", + "codeCommune": "71134", + "libelleAcheminement": "NAVOUR SUR GROSNE", + "nomCommune": "NAVOUR SUR GROSNE" }, { - "codePostal": "27160", - "codeCommune": "27565", - "libelleAcheminement": "LE LESME", - "nomCommune": "LE LESME" + "codePostal": "71360", + "codeCommune": "71140", + "libelleAcheminement": "COLLONGE LA MADELEINE", + "nomCommune": "COLLONGE LA MADELEINE" }, { - "codePostal": "27300", - "codeCommune": "27569", - "libelleAcheminement": "ST MARTIN DU TILLEUL", - "nomCommune": "ST MARTIN DU TILLEUL" + "codePostal": "71800", + "codeCommune": "71141", + "libelleAcheminement": "COLOMBIER EN BRIONNAIS", + "nomCommune": "COLOMBIER EN BRIONNAIS" }, { - "codePostal": "27930", - "codeCommune": "27570", - "libelleAcheminement": "ST MARTIN LA CAMPAGNE", - "nomCommune": "ST MARTIN LA CAMPAGNE" + "codePostal": "71490", + "codeCommune": "71149", + "libelleAcheminement": "COUCHES", + "nomCommune": "COUCHES" }, { - "codePostal": "27450", - "codeCommune": "27571", - "libelleAcheminement": "ST MARTIN ST FIRMIN", - "nomCommune": "ST MARTIN ST FIRMIN" + "codePostal": "71530", + "codeCommune": "71154", + "libelleAcheminement": "CRISSEY", + "nomCommune": "CRISSEY" }, { - "codePostal": "27110", - "codeCommune": "27576", - "libelleAcheminement": "STE OPPORTUNE DU BOSC", - "nomCommune": "STE OPPORTUNE DU BOSC" + "codePostal": "71140", + "codeCommune": "71155", + "libelleAcheminement": "CRONAT", + "nomCommune": "CRONAT" }, { - "codePostal": "27800", - "codeCommune": "27584", - "libelleAcheminement": "ST PAUL DE FOURQUES", - "nomCommune": "ST PAUL DE FOURQUES" + "codePostal": "71400", + "codeCommune": "71162", + "libelleAcheminement": "CURGY", + "nomCommune": "CURGY" }, { - "codePostal": "27520", - "codeCommune": "27586", - "libelleAcheminement": "ST PHILBERT SUR BOISSEY", - "nomCommune": "ST PHILBERT SUR BOISSEY" + "codePostal": "71550", + "codeCommune": "71165", + "libelleAcheminement": "CUSSY EN MORVAN", + "nomCommune": "CUSSY EN MORVAN" }, { - "codePostal": "27290", - "codeCommune": "27587", - "libelleAcheminement": "ST PHILBERT SUR RISLE", - "nomCommune": "ST PHILBERT SUR RISLE" + "codePostal": "71960", + "codeCommune": "71169", + "libelleAcheminement": "DAVAYE", + "nomCommune": "DAVAYE" }, { - "codePostal": "27600", - "codeCommune": "27599", - "libelleAcheminement": "ST PIERRE LA GARENNE", - "nomCommune": "ST PIERRE LA GARENNE" + "codePostal": "71210", + "codeCommune": "71187", + "libelleAcheminement": "ECUISSES", + "nomCommune": "ECUISSES" }, { - "codePostal": "27930", - "codeCommune": "27611", - "libelleAcheminement": "ST VIGOR", - "nomCommune": "ST VIGOR" + "codePostal": "71190", + "codeCommune": "71192", + "libelleAcheminement": "ETANG SUR ARROUX", + "nomCommune": "ETANG SUR ARROUX" }, { - "codePostal": "27150", - "codeCommune": "27614", - "libelleAcheminement": "SANCOURT", - "nomCommune": "SANCOURT" + "codePostal": "71150", + "codeCommune": "71194", + "libelleAcheminement": "FARGES LES CHALON", + "nomCommune": "FARGES LES CHALON" }, { - "codePostal": "27930", - "codeCommune": "27615", - "libelleAcheminement": "SASSEY", - "nomCommune": "SASSEY" + "codePostal": "71250", + "codeCommune": "71199", + "libelleAcheminement": "FLAGY", + "nomCommune": "FLAGY" }, { - "codePostal": "27190", - "codeCommune": "27618", - "libelleAcheminement": "SEBECOURT", - "nomCommune": "SEBECOURT" + "codePostal": "71530", + "codeCommune": "71204", + "libelleAcheminement": "FRAGNES LA LOYERE", + "nomCommune": "FRAGNES LA LOYERE" }, { - "codePostal": "27470", - "codeCommune": "27622", - "libelleAcheminement": "SERQUIGNY", - "nomCommune": "SERQUIGNY" + "codePostal": "71240", + "codeCommune": "71219", + "libelleAcheminement": "GIGNY SUR SAONE", + "nomCommune": "GIGNY SUR SAONE" }, { - "codePostal": "27420", - "codeCommune": "27625", - "libelleAcheminement": "SUZAY", - "nomCommune": "SUZAY" + "codePostal": "71700", + "codeCommune": "71226", + "libelleAcheminement": "GREVILLY", + "nomCommune": "GREVILLY" }, { - "codePostal": "27230", - "codeCommune": "27627", - "libelleAcheminement": "LE THEIL NOLENT", - "nomCommune": "LE THEIL NOLENT" + "codePostal": "71540", + "codeCommune": "71237", + "libelleAcheminement": "IGORNAY", + "nomCommune": "IGORNAY" }, { - "codePostal": "27230", - "codeCommune": "27629", - "libelleAcheminement": "THIBERVILLE", - "nomCommune": "THIBERVILLE" + "codePostal": "71250", + "codeCommune": "71240", + "libelleAcheminement": "JALOGNY", + "nomCommune": "JALOGNY" }, { - "codePostal": "27510", - "codeCommune": "27644", - "libelleAcheminement": "TILLY", - "nomCommune": "TILLY" + "codePostal": "71240", + "codeCommune": "71245", + "libelleAcheminement": "JUGY", + "nomCommune": "JUGY" }, { - "codePostal": "27180", - "codeCommune": "27650", - "libelleAcheminement": "TOURNEDOS BOIS HUBERT", - "nomCommune": "TOURNEDOS BOIS HUBERT" + "codePostal": "71870", + "codeCommune": "71250", + "libelleAcheminement": "LAIZE", + "nomCommune": "LAIZE" }, { - "codePostal": "27500", - "codeCommune": "27655", - "libelleAcheminement": "TOURVILLE SUR PONT AUDEMER", - "nomCommune": "TOURVILLE SUR PONT AUDEMER" + "codePostal": "71270", + "codeCommune": "71254", + "libelleAcheminement": "LAYS SUR LE DOUBS", + "nomCommune": "LAYS SUR LE DOUBS" }, { - "codePostal": "27270", - "codeCommune": "27660", - "libelleAcheminement": "LA TRINITE DE REVILLE", - "nomCommune": "LA TRINITE DE REVILLE" + "codePostal": "71250", + "codeCommune": "71264", + "libelleAcheminement": "LOURNAND", + "nomCommune": "LOURNAND" }, { - "codePostal": "27500", - "codeCommune": "27662", - "libelleAcheminement": "TRIQUEVILLE", - "nomCommune": "TRIQUEVILLE" + "codePostal": "71710", + "codeCommune": "71282", + "libelleAcheminement": "MARMAGNE", + "nomCommune": "MARMAGNE" }, { - "codePostal": "27120", - "codeCommune": "27668", - "libelleAcheminement": "LE VAL DAVID", - "nomCommune": "LE VAL DAVID" + "codePostal": "71700", + "codeCommune": "71284", + "libelleAcheminement": "MARTAILLY LES BRANCION", + "nomCommune": "MARTAILLY LES BRANCION" }, { - "codePostal": "27210", - "codeCommune": "27671", - "libelleAcheminement": "VANNECROCQ", - "nomCommune": "VANNECROCQ" + "codePostal": "71310", + "codeCommune": "71295", + "libelleAcheminement": "MERVANS", + "nomCommune": "MERVANS" }, { - "codePostal": "27110", - "codeCommune": "27677", - "libelleAcheminement": "VENON", - "nomCommune": "VENON" + "codePostal": "71960", + "codeCommune": "71299", + "libelleAcheminement": "MILLY LAMARTINE", + "nomCommune": "MILLY LAMARTINE" }, { - "codePostal": "27390", - "codeCommune": "27680", - "libelleAcheminement": "VERNEUSSES", - "nomCommune": "VERNEUSSES" + "codePostal": "71140", + "codeCommune": "71301", + "libelleAcheminement": "MONT", + "nomCommune": "MONT" }, { - "codePostal": "27120", - "codeCommune": "27689", - "libelleAcheminement": "VILLEGATS", - "nomCommune": "VILLEGATS" + "codePostal": "71300", + "codeCommune": "71306", + "libelleAcheminement": "MONTCEAU LES MINES", + "nomCommune": "MONTCEAU LES MINES" }, { - "codePostal": "27420", - "codeCommune": "27690", - "libelleAcheminement": "VILLERS EN VEXIN", - "nomCommune": "VILLERS EN VEXIN" + "codePostal": "71470", + "codeCommune": "71318", + "libelleAcheminement": "MONTPONT EN BRESSE", + "nomCommune": "MONTPONT EN BRESSE" }, { - "codePostal": "27240", - "codeCommune": "27693", - "libelleAcheminement": "SYLVAINS LES MOULINS", - "nomCommune": "SYLVAINS LES MOULINS" + "codePostal": "71440", + "codeCommune": "71319", + "libelleAcheminement": "MONTRET", + "nomCommune": "MONTRET" }, { - "codePostal": "27400", - "codeCommune": "27697", - "libelleAcheminement": "VIRONVAY", - "nomCommune": "VIRONVAY" + "codePostal": "71380", + "codeCommune": "71333", + "libelleAcheminement": "OSLON", + "nomCommune": "OSLON" }, { - "codePostal": "27520", - "codeCommune": "27699", - "libelleAcheminement": "VOISCREVILLE", - "nomCommune": "VOISCREVILLE" + "codePostal": "71800", + "codeCommune": "71335", + "libelleAcheminement": "OUROUX SOUS LE BOIS STE MARIE", + "nomCommune": "OUROUX SOUS LE BOIS STE MARIE" }, { - "codePostal": "28300", - "codeCommune": "28006", - "libelleAcheminement": "AMILLY", - "nomCommune": "AMILLY" + "codePostal": "71600", + "codeCommune": "71342", + "libelleAcheminement": "PARAY LE MONIAL", + "nomCommune": "PARAY LE MONIAL" }, { - "codePostal": "28170", - "codeCommune": "28008", - "libelleAcheminement": "ARDELLES", - "nomCommune": "ARDELLES" + "codePostal": "71270", + "codeCommune": "71351", + "libelleAcheminement": "PIERRE DE BRESSE", + "nomCommune": "PIERRE DE BRESSE" }, { - "codePostal": "28220", - "codeCommune": "28012", - "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", - "nomCommune": "COMMUNE NOUVELLE D ARROU" + "codePostal": "71330", + "codeCommune": "71352", + "libelleAcheminement": "LE PLANOIS", + "nomCommune": "LE PLANOIS" }, { - "codePostal": "28290", - "codeCommune": "28012", - "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", - "nomCommune": "COMMUNE NOUVELLE D ARROU" + "codePostal": "71800", + "codeCommune": "71361", + "libelleAcheminement": "PRIZY", + "nomCommune": "PRIZY" }, { - "codePostal": "28700", - "codeCommune": "28015", - "libelleAcheminement": "AUNEAU BLEURY ST SYMPHORIEN", - "nomCommune": "AUNEAU BLEURY ST SYMPHORIEN" + "codePostal": "71150", + "codeCommune": "71369", + "libelleAcheminement": "REMIGNY", + "nomCommune": "REMIGNY" }, { - "codePostal": "28140", - "codeCommune": "28019", - "libelleAcheminement": "BAIGNEAUX", - "nomCommune": "BAIGNEAUX" + "codePostal": "71570", + "codeCommune": "71372", + "libelleAcheminement": "ROMANECHE THORINS", + "nomCommune": "ROMANECHE THORINS" }, { - "codePostal": "28320", - "codeCommune": "28023", - "libelleAcheminement": "BAILLEAU ARMENONVILLE", - "nomCommune": "BAILLEAU ARMENONVILLE" + "codePostal": "71580", + "codeCommune": "71379", + "libelleAcheminement": "SAGY", + "nomCommune": "SAGY" }, { - "codePostal": "28140", - "codeCommune": "28029", - "libelleAcheminement": "BAZOCHES LES HAUTES", - "nomCommune": "BAZOCHES LES HAUTES" + "codePostal": "71160", + "codeCommune": "71382", + "libelleAcheminement": "ST AGNAN", + "nomCommune": "ST AGNAN" }, { - "codePostal": "28300", - "codeCommune": "28034", - "libelleAcheminement": "BERCHERES ST GERMAIN", - "nomCommune": "BERCHERES ST GERMAIN" + "codePostal": "71240", + "codeCommune": "71384", + "libelleAcheminement": "ST AMBREUIL", + "nomCommune": "ST AMBREUIL" }, { - "codePostal": "28630", - "codeCommune": "28035", - "libelleAcheminement": "BERCHERES LES PIERRES", - "nomCommune": "BERCHERES LES PIERRES" + "codePostal": "71640", + "codeCommune": "71403", + "libelleAcheminement": "ST DENIS DE VAUX", + "nomCommune": "ST DENIS DE VAUX" }, { - "codePostal": "28260", - "codeCommune": "28050", - "libelleAcheminement": "BONCOURT", - "nomCommune": "BONCOURT" + "codePostal": "71390", + "codeCommune": "71404", + "libelleAcheminement": "ST DESERT", + "nomCommune": "ST DESERT" }, { - "codePostal": "28130", - "codeCommune": "28052", - "libelleAcheminement": "BOUGLAINVAL", - "nomCommune": "BOUGLAINVAL" + "codePostal": "71740", + "codeCommune": "71408", + "libelleAcheminement": "ST EDMOND", + "nomCommune": "ST EDMOND" }, { - "codePostal": "28270", - "codeCommune": "28059", - "libelleAcheminement": "BREZOLLES", - "nomCommune": "BREZOLLES" + "codePostal": "71320", + "codeCommune": "71411", + "libelleAcheminement": "ST EUGENE", + "nomCommune": "ST EUGENE" }, { - "codePostal": "28300", - "codeCommune": "28068", - "libelleAcheminement": "CHALLET", - "nomCommune": "CHALLET" + "codePostal": "71400", + "codeCommune": "71414", + "libelleAcheminement": "ST FORGEOT", + "nomCommune": "ST FORGEOT" }, { - "codePostal": "28000", - "codeCommune": "28085", - "libelleAcheminement": "CHARTRES", - "nomCommune": "CHARTRES" + "codePostal": "71460", + "codeCommune": "71417", + "libelleAcheminement": "ST GENGOUX LE NATIONAL", + "nomCommune": "ST GENGOUX LE NATIONAL" }, { - "codePostal": "28200", - "codeCommune": "28088", - "libelleAcheminement": "CHATEAUDUN", - "nomCommune": "CHATEAUDUN" + "codePostal": "71800", + "codeCommune": "71421", + "libelleAcheminement": "ST GERMAIN EN BRIONNAIS", + "nomCommune": "ST GERMAIN EN BRIONNAIS" }, { - "codePostal": "28170", - "codeCommune": "28089", - "libelleAcheminement": "CHATEAUNEUF EN THYMERAIS", - "nomCommune": "CHATEAUNEUF EN THYMERAIS" + "codePostal": "71490", + "codeCommune": "71431", + "libelleAcheminement": "ST JEAN DE TREZY", + "nomCommune": "ST JEAN DE TREZY" }, { - "codePostal": "28270", - "codeCommune": "28090", - "libelleAcheminement": "LES CHATELETS", - "nomCommune": "LES CHATELETS" + "codePostal": "71990", + "codeCommune": "71440", + "libelleAcheminement": "ST LEGER SOUS BEUVRAY", + "nomCommune": "ST LEGER SOUS BEUVRAY" }, { - "codePostal": "28700", - "codeCommune": "28092", - "libelleAcheminement": "CHATENAY", - "nomCommune": "CHATENAY" + "codePostal": "71350", + "codeCommune": "71443", + "libelleAcheminement": "ST LOUP GEANGES", + "nomCommune": "ST LOUP GEANGES" }, { - "codePostal": "28210", - "codeCommune": "28094", - "libelleAcheminement": "CHAUDON", - "nomCommune": "CHAUDON" + "codePostal": "71390", + "codeCommune": "71449", + "libelleAcheminement": "ST MARTIN D AUXY", + "nomCommune": "ST MARTIN D AUXY" }, { - "codePostal": "28190", - "codeCommune": "28116", - "libelleAcheminement": "COURVILLE SUR EURE", - "nomCommune": "COURVILLE SUR EURE" + "codePostal": "71490", + "codeCommune": "71450", + "libelleAcheminement": "ST MARTIN DE COMMUNE", + "nomCommune": "ST MARTIN DE COMMUNE" }, { - "codePostal": "28140", - "codeCommune": "28121", - "libelleAcheminement": "DAMBRON", - "nomCommune": "DAMBRON" + "codePostal": "71110", + "codeCommune": "71453", + "libelleAcheminement": "ST MARTIN DU LAC", + "nomCommune": "ST MARTIN DU LAC" }, { - "codePostal": "28160", - "codeCommune": "28123", - "libelleAcheminement": "DAMPIERRE SOUS BROU", - "nomCommune": "DAMPIERRE SOUS BROU" + "codePostal": "71580", + "codeCommune": "71454", + "libelleAcheminement": "ST MARTIN DU MONT", + "nomCommune": "ST MARTIN DU MONT" }, { - "codePostal": "28800", - "codeCommune": "28126", - "libelleAcheminement": "DANCY", - "nomCommune": "DANCY" + "codePostal": "71620", + "codeCommune": "71456", + "libelleAcheminement": "ST MARTIN EN BRESSE", + "nomCommune": "ST MARTIN EN BRESSE" }, { - "codePostal": "28160", - "codeCommune": "28127", - "libelleAcheminement": "DANGEAU", - "nomCommune": "DANGEAU" + "codePostal": "71460", + "codeCommune": "71461", + "libelleAcheminement": "ST MAURICE DES CHAMPS", + "nomCommune": "ST MAURICE DES CHAMPS" }, { - "codePostal": "28320", - "codeCommune": "28137", - "libelleAcheminement": "ECROSNES", - "nomCommune": "ECROSNES" + "codePostal": "71190", + "codeCommune": "71466", + "libelleAcheminement": "ST NIZIER SUR ARROUX", + "nomCommune": "ST NIZIER SUR ARROUX" }, { - "codePostal": "28270", - "codeCommune": "28143", - "libelleAcheminement": "ESCORPAIN", - "nomCommune": "ESCORPAIN" + "codePostal": "71390", + "codeCommune": "71471", + "libelleAcheminement": "ST PRIVE", + "nomCommune": "ST PRIVE" }, { - "codePostal": "28210", - "codeCommune": "28146", - "libelleAcheminement": "FAVEROLLES", - "nomCommune": "FAVEROLLES" + "codePostal": "71800", + "codeCommune": "71473", + "libelleAcheminement": "ST RACHO", + "nomCommune": "ST RACHO" }, { - "codePostal": "28340", - "codeCommune": "28149", - "libelleAcheminement": "LA FERTE VIDAME", - "nomCommune": "LA FERTE VIDAME" + "codePostal": "71100", + "codeCommune": "71475", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "28140", - "codeCommune": "28157", - "libelleAcheminement": "FONTENAY SUR CONIE", - "nomCommune": "FONTENAY SUR CONIE" + "codePostal": "71570", + "codeCommune": "71487", + "libelleAcheminement": "ST VERAND", + "nomCommune": "ST VERAND" }, { - "codePostal": "28250", - "codeCommune": "28159", - "libelleAcheminement": "LA FRAMBOISIERE", - "nomCommune": "LA FRAMBOISIERE" + "codePostal": "71430", + "codeCommune": "71490", + "libelleAcheminement": "ST VINCENT BRAGNY", + "nomCommune": "ST VINCENT BRAGNY" }, { - "codePostal": "28700", - "codeCommune": "28160", - "libelleAcheminement": "FRANCOURVILLE", - "nomCommune": "FRANCOURVILLE" + "codePostal": "71460", + "codeCommune": "71492", + "libelleAcheminement": "ST YTHAIRE", + "nomCommune": "ST YTHAIRE" }, { - "codePostal": "28800", - "codeCommune": "28176", - "libelleAcheminement": "LE GAULT ST DENIS", - "nomCommune": "LE GAULT ST DENIS" + "codePostal": "71460", + "codeCommune": "71515", + "libelleAcheminement": "SERCY", + "nomCommune": "SERCY" }, { - "codePostal": "28630", - "codeCommune": "28177", - "libelleAcheminement": "GELLAINVILLE", - "nomCommune": "GELLAINVILLE" + "codePostal": "71960", + "codeCommune": "71518", + "libelleAcheminement": "SERRIERES", + "nomCommune": "SERRIERES" }, { - "codePostal": "28700", - "codeCommune": "28188", - "libelleAcheminement": "LE GUE DE LONGROI", - "nomCommune": "LE GUE DE LONGROI" + "codePostal": "71190", + "codeCommune": "71537", + "libelleAcheminement": "THIL SUR ARROUX", + "nomCommune": "THIL SUR ARROUX" }, { - "codePostal": "28130", - "codeCommune": "28191", - "libelleAcheminement": "HANCHES", - "nomCommune": "HANCHES" + "codePostal": "71440", + "codeCommune": "71538", + "libelleAcheminement": "THUREY", + "nomCommune": "THUREY" }, { - "codePostal": "28120", - "codeCommune": "28196", - "libelleAcheminement": "ILLIERS COMBRAY", - "nomCommune": "ILLIERS COMBRAY" + "codePostal": "71490", + "codeCommune": "71539", + "libelleAcheminement": "TINTRY", + "nomCommune": "TINTRY" }, { - "codePostal": "28310", - "codeCommune": "28197", - "libelleAcheminement": "INTREVILLE", - "nomCommune": "INTREVILLE" + "codePostal": "71210", + "codeCommune": "71540", + "libelleAcheminement": "TORCY", + "nomCommune": "TORCY" }, { - "codePostal": "28310", - "codeCommune": "28199", - "libelleAcheminement": "JANVILLE EN BEAUCE", - "nomCommune": "JANVILLE EN BEAUCE" + "codePostal": "71320", + "codeCommune": "71542", + "libelleAcheminement": "TOULON SUR ARROUX", + "nomCommune": "TOULON SUR ARROUX" }, { - "codePostal": "28340", - "codeCommune": "28202", - "libelleAcheminement": "LAMBLORE", - "nomCommune": "LAMBLORE" + "codePostal": "71700", + "codeCommune": "71543", + "libelleAcheminement": "TOURNUS", + "nomCommune": "TOURNUS" }, { - "codePostal": "28300", - "codeCommune": "28209", - "libelleAcheminement": "LEVES", - "nomCommune": "LEVES" + "codePostal": "71520", + "codeCommune": "71545", + "libelleAcheminement": "TRAMAYES", + "nomCommune": "TRAMAYES" }, { - "codePostal": "28150", - "codeCommune": "28215", - "libelleAcheminement": "LOUVILLE LA CHENARD", - "nomCommune": "LOUVILLE LA CHENARD" + "codePostal": "71290", + "codeCommune": "71549", + "libelleAcheminement": "LA TRUCHERE", + "nomCommune": "LA TRUCHERE" }, { - "codePostal": "28600", - "codeCommune": "28220", - "libelleAcheminement": "LUISANT", - "nomCommune": "LUISANT" + "codePostal": "71240", + "codeCommune": "71555", + "libelleAcheminement": "VARENNES LE GRAND", + "nomCommune": "VARENNES LE GRAND" }, { - "codePostal": "28170", - "codeCommune": "28226", - "libelleAcheminement": "MAILLEBOIS", - "nomCommune": "MAILLEBOIS" + "codePostal": "71800", + "codeCommune": "71559", + "libelleAcheminement": "VARENNES SOUS DUN", + "nomCommune": "VARENNES SOUS DUN" }, { - "codePostal": "28130", - "codeCommune": "28227", - "libelleAcheminement": "MAINTENON", - "nomCommune": "MAINTENON" + "codePostal": "71440", + "codeCommune": "71568", + "libelleAcheminement": "VERISSEY", + "nomCommune": "VERISSEY" }, { - "codePostal": "28200", - "codeCommune": "28233", - "libelleAcheminement": "MARBOUE", - "nomCommune": "MARBOUE" + "codePostal": "71240", + "codeCommune": "71572", + "libelleAcheminement": "VERS", + "nomCommune": "VERS" }, { - "codePostal": "28400", - "codeCommune": "28236", - "libelleAcheminement": "ARCISSES", - "nomCommune": "ARCISSES" + "codePostal": "71390", + "codeCommune": "71579", + "libelleAcheminement": "VILLENEUVE EN MONTAGNE", + "nomCommune": "VILLENEUVE EN MONTAGNE" }, { - "codePostal": "28400", - "codeCommune": "28236", - "libelleAcheminement": "ARCISSES", - "nomCommune": "ARCISSES" + "codePostal": "71250", + "codeCommune": "71582", + "libelleAcheminement": "LA VINEUSE SUR FREGANDE", + "nomCommune": "LA VINEUSE SUR FREGANDE" }, { - "codePostal": "28240", - "codeCommune": "28240", - "libelleAcheminement": "MEAUCE", - "nomCommune": "MEAUCE" + "codePostal": "71260", + "codeCommune": "71584", + "libelleAcheminement": "VIRE", + "nomCommune": "VIRE" }, { - "codePostal": "28120", - "codeCommune": "28242", - "libelleAcheminement": "MEREGLISE", - "nomCommune": "MEREGLISE" + "codePostal": "72610", + "codeCommune": "72005", + "libelleAcheminement": "ANCINNES", + "nomCommune": "ANCINNES" }, { - "codePostal": "28360", - "codeCommune": "28246", - "libelleAcheminement": "MESLAY LE VIDAME", - "nomCommune": "MESLAY LE VIDAME" + "codePostal": "72230", + "codeCommune": "72008", + "libelleAcheminement": "ARNAGE", + "nomCommune": "ARNAGE" }, { - "codePostal": "28500", - "codeCommune": "28251", - "libelleAcheminement": "MEZIERES EN DROUAIS", - "nomCommune": "MEZIERES EN DROUAIS" + "codePostal": "72270", + "codeCommune": "72009", + "libelleAcheminement": "ARTHEZE", + "nomCommune": "ARTHEZE" }, { - "codePostal": "28630", - "codeCommune": "28253", - "libelleAcheminement": "MIGNIERES", - "nomCommune": "MIGNIERES" + "codePostal": "72310", + "codeCommune": "72035", + "libelleAcheminement": "BESSE SUR BRAYE", + "nomCommune": "BESSE SUR BRAYE" }, { - "codePostal": "28200", - "codeCommune": "28256", - "libelleAcheminement": "MOLEANS", - "nomCommune": "MOLEANS" + "codePostal": "72600", + "codeCommune": "72037", + "libelleAcheminement": "BLEVES", + "nomCommune": "BLEVES" }, { - "codePostal": "28210", - "codeCommune": "28279", - "libelleAcheminement": "NOGENT LE ROI", - "nomCommune": "NOGENT LE ROI" + "codePostal": "72550", + "codeCommune": "72045", + "libelleAcheminement": "BRAINS SUR GEE", + "nomCommune": "BRAINS SUR GEE" }, { - "codePostal": "28140", - "codeCommune": "28283", - "libelleAcheminement": "NOTTONVILLE", - "nomCommune": "NOTTONVILLE" + "codePostal": "72110", + "codeCommune": "72048", + "libelleAcheminement": "BRIOSNE LES SABLES", + "nomCommune": "BRIOSNE LES SABLES" }, { - "codePostal": "28310", - "codeCommune": "28284", - "libelleAcheminement": "OINVILLE ST LIPHARD", - "nomCommune": "OINVILLE ST LIPHARD" + "codePostal": "72610", + "codeCommune": "72056", + "libelleAcheminement": "CHAMPFLEUR", + "nomCommune": "CHAMPFLEUR" }, { - "codePostal": "28260", - "codeCommune": "28321", - "libelleAcheminement": "ROUVRES", - "nomCommune": "ROUVRES" + "codePostal": "72430", + "codeCommune": "72059", + "libelleAcheminement": "CHANTENAY VILLEDIEU", + "nomCommune": "CHANTENAY VILLEDIEU" }, { - "codePostal": "28300", - "codeCommune": "28325", - "libelleAcheminement": "ST AUBIN DES BOIS", - "nomCommune": "ST AUBIN DES BOIS" + "codePostal": "72500", + "codeCommune": "72071", + "libelleAcheminement": "MONTVAL SUR LOIR", + "nomCommune": "MONTVAL SUR LOIR" }, { - "codePostal": "28500", - "codeCommune": "28332", - "libelleAcheminement": "STE GEMME MORONVAL", - "nomCommune": "STE GEMME MORONVAL" + "codePostal": "72540", + "codeCommune": "72074", + "libelleAcheminement": "CHEMIRE EN CHARNIE", + "nomCommune": "CHEMIRE EN CHARNIE" }, { - "codePostal": "28190", - "codeCommune": "28339", - "libelleAcheminement": "ST GERMAIN LE GAILLARD", - "nomCommune": "ST GERMAIN LE GAILLARD" + "codePostal": "72350", + "codeCommune": "72083", + "libelleAcheminement": "CHEVILLE", + "nomCommune": "CHEVILLE" }, { - "codePostal": "28400", - "codeCommune": "28342", - "libelleAcheminement": "ST JEAN PIERRE FIXTE", - "nomCommune": "ST JEAN PIERRE FIXTE" + "codePostal": "72600", + "codeCommune": "72091", + "libelleAcheminement": "CONTILLY", + "nomCommune": "CONTILLY" }, { - "codePostal": "28700", - "codeCommune": "28344", - "libelleAcheminement": "ST LEGER DES AUBEES", - "nomCommune": "ST LEGER DES AUBEES" + "codePostal": "72440", + "codeCommune": "72094", + "libelleAcheminement": "COUDRECIEUX", + "nomCommune": "COUDRECIEUX" }, { - "codePostal": "28410", - "codeCommune": "28347", - "libelleAcheminement": "ST LUBIN DE LA HAYE", - "nomCommune": "ST LUBIN DE LA HAYE" + "codePostal": "72800", + "codeCommune": "72098", + "libelleAcheminement": "COULONGE", + "nomCommune": "COULONGE" }, { - "codePostal": "28260", - "codeCommune": "28355", - "libelleAcheminement": "ST OUEN MARCHEFROY", - "nomCommune": "ST OUEN MARCHEFROY" + "codePostal": "72290", + "codeCommune": "72099", + "libelleAcheminement": "COURCEBOEUFS", + "nomCommune": "COURCEBOEUFS" }, { - "codePostal": "28240", - "codeCommune": "28362", - "libelleAcheminement": "ST VICTOR DE BUTHON", - "nomCommune": "ST VICTOR DE BUTHON" + "codePostal": "72150", + "codeCommune": "72103", + "libelleAcheminement": "COURDEMANCHE", + "nomCommune": "COURDEMANCHE" }, { - "codePostal": "28700", - "codeCommune": "28363", - "libelleAcheminement": "SAINVILLE", - "nomCommune": "SAINVILLE" + "codePostal": "72300", + "codeCommune": "72106", + "libelleAcheminement": "COURTILLERS", + "nomCommune": "COURTILLERS" }, { - "codePostal": "28120", - "codeCommune": "28365", - "libelleAcheminement": "SANDARVILLE", - "nomCommune": "SANDARVILLE" + "codePostal": "72540", + "codeCommune": "72107", + "libelleAcheminement": "CRANNES EN CHAMPAGNE", + "nomCommune": "CRANNES EN CHAMPAGNE" }, { - "codePostal": "28410", - "codeCommune": "28375", - "libelleAcheminement": "SERVILLE", - "nomCommune": "SERVILLE" + "codePostal": "72200", + "codeCommune": "72110", + "libelleAcheminement": "CROSMIERES", + "nomCommune": "CROSMIERES" }, { - "codePostal": "28260", - "codeCommune": "28377", - "libelleAcheminement": "SOREL MOUSSEL", - "nomCommune": "SOREL MOUSSEL" + "codePostal": "72400", + "codeCommune": "72114", + "libelleAcheminement": "DEHAULT", + "nomCommune": "DEHAULT" }, { - "codePostal": "28630", - "codeCommune": "28380", - "libelleAcheminement": "SOURS", - "nomCommune": "SOURS" + "codePostal": "72500", + "codeCommune": "72115", + "libelleAcheminement": "DISSAY SOUS COURCILLON", + "nomCommune": "DISSAY SOUS COURCILLON" }, { - "codePostal": "28140", - "codeCommune": "28382", - "libelleAcheminement": "TERMINIERS", - "nomCommune": "TERMINIERS" + "codePostal": "72130", + "codeCommune": "72121", + "libelleAcheminement": "DOUILLET LE JOLY", + "nomCommune": "DOUILLET" }, { - "codePostal": "28360", - "codeCommune": "28383", - "libelleAcheminement": "THEUVILLE", - "nomCommune": "THEUVILLE" + "codePostal": "72700", + "codeCommune": "72127", + "libelleAcheminement": "ETIVAL LES LE MANS", + "nomCommune": "ETIVAL LES LE MANS" }, { - "codePostal": "28200", - "codeCommune": "28389", - "libelleAcheminement": "THIVILLE", - "nomCommune": "THIVILLE" + "codePostal": "72120", + "codeCommune": "72128", + "libelleAcheminement": "VAL D ETANGSON", + "nomCommune": "VAL D ETANGSON" }, { - "codePostal": "28170", - "codeCommune": "28393", - "libelleAcheminement": "TREMBLAY LES VILLAGES", - "nomCommune": "TREMBLAY LES VILLAGES" + "codePostal": "72600", + "codeCommune": "72137", + "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", + "nomCommune": "VILLENEUVE EN PERSEIGNE" }, { - "codePostal": "28700", - "codeCommune": "28397", - "libelleAcheminement": "UMPEAU", - "nomCommune": "UMPEAU" + "codePostal": "72610", + "codeCommune": "72137", + "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", + "nomCommune": "VILLENEUVE EN PERSEIGNE" }, { - "codePostal": "28160", - "codeCommune": "28398", - "libelleAcheminement": "UNVERRE", - "nomCommune": "UNVERRE" + "codePostal": "72610", + "codeCommune": "72137", + "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", + "nomCommune": "VILLENEUVE EN PERSEIGNE" }, { - "codePostal": "28500", - "codeCommune": "28405", - "libelleAcheminement": "VERT EN DROUAIS", - "nomCommune": "VERT EN DROUAIS" + "codePostal": "72130", + "codeCommune": "72138", + "libelleAcheminement": "FRESNAY SUR SARTHE", + "nomCommune": "FRESNAY SUR SARTHE" }, { - "codePostal": "28700", - "codeCommune": "28408", - "libelleAcheminement": "VIERVILLE", - "nomCommune": "VIERVILLE" + "codePostal": "72130", + "codeCommune": "72138", + "libelleAcheminement": "FRESNAY SUR SARTHE", + "nomCommune": "FRESNAY SUR SARTHE" }, { - "codePostal": "28120", - "codeCommune": "28409", - "libelleAcheminement": "VIEUVICQ", - "nomCommune": "VIEUVICQ" + "codePostal": "72610", + "codeCommune": "72142", + "libelleAcheminement": "GRANDCHAMP", + "nomCommune": "GRANDCHAMP" }, { - "codePostal": "28130", - "codeCommune": "28417", - "libelleAcheminement": "VILLIERS LE MORHIER", - "nomCommune": "VILLIERS LE MORHIER" + "codePostal": "72140", + "codeCommune": "72145", + "libelleAcheminement": "LE GREZ", + "nomCommune": "LE GREZ" }, { - "codePostal": "28150", - "codeCommune": "28422", - "libelleAcheminement": "LES VILLAGES VOVEENS", - "nomCommune": "LES VILLAGES VOVEENS" + "codePostal": "72110", + "codeCommune": "72148", + "libelleAcheminement": "JAUZE", + "nomCommune": "JAUZE" }, { - "codePostal": "29560", - "codeCommune": "29001", - "libelleAcheminement": "ARGOL", - "nomCommune": "ARGOL" + "codePostal": "72500", + "codeCommune": "72153", + "libelleAcheminement": "JUPILLES", + "nomCommune": "JUPILLES" }, { - "codePostal": "29380", - "codeCommune": "29004", - "libelleAcheminement": "BANNALEC", - "nomCommune": "BANNALEC" + "codePostal": "72320", + "codeCommune": "72156", + "libelleAcheminement": "LAMNAY", + "nomCommune": "LAMNAY" }, { - "codePostal": "29790", - "codeCommune": "29008", - "libelleAcheminement": "BEUZEC CAP SIZUN", - "nomCommune": "BEUZEC CAP SIZUN" + "codePostal": "72240", + "codeCommune": "72157", + "libelleAcheminement": "LAVARDIN", + "nomCommune": "LAVARDIN" }, { - "codePostal": "29690", - "codeCommune": "29018", - "libelleAcheminement": "BRENNILIS", - "nomCommune": "BRENNILIS" + "codePostal": "72340", + "codeCommune": "72161", + "libelleAcheminement": "LHOMME", + "nomCommune": "LHOMME" }, { - "codePostal": "29890", - "codeCommune": "29021", - "libelleAcheminement": "PLOUNEOUR BRIGNOGAN PLAGES", - "nomCommune": "PLOUNEOUR BRIGNOGAN PLAGES" + "codePostal": "72290", + "codeCommune": "72174", + "libelleAcheminement": "LUCE SOUS BALLON", + "nomCommune": "LUCE SOUS BALLON" }, { - "codePostal": "29360", - "codeCommune": "29031", - "libelleAcheminement": "CLOHARS CARNOET", - "nomCommune": "CLOHARS CARNOET" + "codePostal": "72800", + "codeCommune": "72175", + "libelleAcheminement": "LUCHE PRINGE", + "nomCommune": "LUCHE PRINGE" }, { - "codePostal": "29950", - "codeCommune": "29032", - "libelleAcheminement": "CLOHARS FOUESNANT", - "nomCommune": "CLOHARS FOUESNANT" + "codePostal": "72100", + "codeCommune": "72181", + "libelleAcheminement": "LE MANS", + "nomCommune": "LE MANS" }, { - "codePostal": "29450", - "codeCommune": "29038", - "libelleAcheminement": "COMMANA", - "nomCommune": "COMMANA" + "codePostal": "72540", + "codeCommune": "72184", + "libelleAcheminement": "MAREIL EN CHAMPAGNE", + "nomCommune": "MAREIL EN CHAMPAGNE" }, { - "codePostal": "29900", - "codeCommune": "29039", - "libelleAcheminement": "CONCARNEAU", - "nomCommune": "CONCARNEAU" + "codePostal": "72200", + "codeCommune": "72185", + "libelleAcheminement": "MAREIL SUR LOIR", + "nomCommune": "MAREIL SUR LOIR" }, { - "codePostal": "29217", - "codeCommune": "29040", - "libelleAcheminement": "LE CONQUET", - "nomCommune": "LE CONQUET" + "codePostal": "72220", + "codeCommune": "72187", + "libelleAcheminement": "MARIGNE LAILLE", + "nomCommune": "MARIGNE LAILLE" }, { - "codePostal": "29370", - "codeCommune": "29041", - "libelleAcheminement": "CORAY", - "nomCommune": "CORAY" + "codePostal": "72260", + "codeCommune": "72189", + "libelleAcheminement": "MAROLLES LES BRAULTS", + "nomCommune": "MAROLLES LES BRAULTS" }, { - "codePostal": "29860", - "codeCommune": "29047", - "libelleAcheminement": "LE DRENNEC", - "nomCommune": "LE DRENNEC" + "codePostal": "72360", + "codeCommune": "72191", + "libelleAcheminement": "MAYET", + "nomCommune": "MAYET" }, { - "codePostal": "29800", - "codeCommune": "29056", - "libelleAcheminement": "LA FOREST LANDERNEAU", - "nomCommune": "LA FOREST LANDERNEAU" + "codePostal": "72260", + "codeCommune": "72192", + "libelleAcheminement": "LES MEES", + "nomCommune": "LES MEES" }, { - "codePostal": "29170", - "codeCommune": "29058", - "libelleAcheminement": "FOUESNANT", - "nomCommune": "FOUESNANT" + "codePostal": "72170", + "codeCommune": "72194", + "libelleAcheminement": "MEURCE", + "nomCommune": "MEURCE" }, { - "codePostal": "29950", - "codeCommune": "29060", - "libelleAcheminement": "GOUESNACH", - "nomCommune": "GOUESNACH" + "codePostal": "72290", + "codeCommune": "72196", + "libelleAcheminement": "MEZIERES SUR PONTHOUIN", + "nomCommune": "MEZIERES SUR PONTHOUIN" }, { - "codePostal": "29890", - "codeCommune": "29064", - "libelleAcheminement": "GOULVEN", - "nomCommune": "GOULVEN" + "codePostal": "72260", + "codeCommune": "72201", + "libelleAcheminement": "MONCE EN SAOSNOIS", + "nomCommune": "MONCE EN SAOSNOIS" }, { - "codePostal": "29820", - "codeCommune": "29069", - "libelleAcheminement": "GUILERS", - "nomCommune": "GUILERS" + "codePostal": "72120", + "codeCommune": "72204", + "libelleAcheminement": "MONTAILLE", + "nomCommune": "MONTAILLE" }, { - "codePostal": "29460", - "codeCommune": "29078", - "libelleAcheminement": "HANVEC", - "nomCommune": "HANVEC" + "codePostal": "72130", + "codeCommune": "72209", + "libelleAcheminement": "MONTREUIL LE CHETIF", + "nomCommune": "MONTREUIL LE CHETIF" }, { - "codePostal": "29460", - "codeCommune": "29080", - "libelleAcheminement": "L HOPITAL CAMFROUT", - "nomCommune": "HOPITAL CAMFROUT" + "codePostal": "72240", + "codeCommune": "72219", + "libelleAcheminement": "BERNAY NEUVY EN CHAMPAGNE", + "nomCommune": "BERNAY NEUVY EN CHAMPAGNE" }, { - "codePostal": "29990", - "codeCommune": "29083", - "libelleAcheminement": "ILE DE SEIN", - "nomCommune": "ILE DE SEIN" + "codePostal": "72110", + "codeCommune": "72220", + "libelleAcheminement": "NOGENT LE BERNARD", + "nomCommune": "NOGENT LE BERNARD" }, { - "codePostal": "29259", - "codeCommune": "29084", - "libelleAcheminement": "ILE MOLENE", - "nomCommune": "ILE MOLENE" + "codePostal": "72260", + "codeCommune": "72222", + "libelleAcheminement": "NOUANS", + "nomCommune": "NOUANS" }, { - "codePostal": "29980", - "codeCommune": "29085", - "libelleAcheminement": "ILE TUDY", - "nomCommune": "ILE TUDY" + "codePostal": "72140", + "codeCommune": "72229", + "libelleAcheminement": "PARENNES", + "nomCommune": "PARENNES" }, { - "codePostal": "29870", - "codeCommune": "29101", - "libelleAcheminement": "LANDEDA", - "nomCommune": "LANDEDA" + "codePostal": "72250", + "codeCommune": "72231", + "libelleAcheminement": "PARIGNE L EVEQUE", + "nomCommune": "PARIGNE L EVEQUE" }, { - "codePostal": "29510", - "codeCommune": "29106", - "libelleAcheminement": "LANDREVARZEC", - "nomCommune": "LANDREVARZEC" + "codePostal": "72300", + "codeCommune": "72236", + "libelleAcheminement": "PINCE", + "nomCommune": "PINCE" }, { - "codePostal": "29510", - "codeCommune": "29110", - "libelleAcheminement": "LANGOLEN", - "nomCommune": "LANGOLEN" + "codePostal": "72600", + "codeCommune": "72238", + "libelleAcheminement": "PIZIEUX", + "nomCommune": "PIZIEUX" }, { - "codePostal": "29670", - "codeCommune": "29132", - "libelleAcheminement": "LOCQUENOLE", - "nomCommune": "LOCQUENOLE" + "codePostal": "72400", + "codeCommune": "72245", + "libelleAcheminement": "PREVAL", + "nomCommune": "PREVAL" }, { - "codePostal": "29790", - "codeCommune": "29143", - "libelleAcheminement": "MAHALON", - "nomCommune": "MAHALON" + "codePostal": "72150", + "codeCommune": "72248", + "libelleAcheminement": "PRUILLE L EGUILLE", + "nomCommune": "PRUILLE L EGUILLE" }, { - "codePostal": "29300", - "codeCommune": "29147", - "libelleAcheminement": "MELLAC", - "nomCommune": "MELLAC" + "codePostal": "72700", + "codeCommune": "72257", + "libelleAcheminement": "ROUILLON", + "nomCommune": "ROUILLON" }, { - "codePostal": "29420", - "codeCommune": "29148", - "libelleAcheminement": "MESPAUL", - "nomCommune": "MESPAUL" + "codePostal": "72110", + "codeCommune": "72259", + "libelleAcheminement": "ROUPERROUX LE COQUET", + "nomCommune": "ROUPERROUX LE COQUET" }, { - "codePostal": "29350", - "codeCommune": "29150", - "libelleAcheminement": "MOELAN SUR MER", - "nomCommune": "MOELAN SUR MER" + "codePostal": "72340", + "codeCommune": "72262", + "libelleAcheminement": "LOIR EN VALLEE", + "nomCommune": "LOIR EN VALLEE" }, { - "codePostal": "29800", - "codeCommune": "29156", - "libelleAcheminement": "PENCRAN", - "nomCommune": "PENCRAN" + "codePostal": "72130", + "codeCommune": "72266", + "libelleAcheminement": "ST AUBIN DE LOCQUENAY", + "nomCommune": "ST AUBIN DE LOCQUENAY" }, { - "codePostal": "29740", - "codeCommune": "29165", - "libelleAcheminement": "PLOBANNALEC LESCONIL", - "nomCommune": "PLOBANNALEC LESCONIL" + "codePostal": "72120", + "codeCommune": "72286", + "libelleAcheminement": "ST GERVAIS DE VIC", + "nomCommune": "ST GERVAIS DE VIC" }, { - "codePostal": "29770", - "codeCommune": "29168", - "libelleAcheminement": "PLOGOFF", - "nomCommune": "PLOGOFF" + "codePostal": "72380", + "codeCommune": "72289", + "libelleAcheminement": "STE JAMME SUR SARTHE", + "nomCommune": "STE JAMME SUR SARTHE" }, { - "codePostal": "29550", - "codeCommune": "29172", - "libelleAcheminement": "PLOMODIERN", - "nomCommune": "PLOMODIERN" + "codePostal": "72380", + "codeCommune": "72290", + "libelleAcheminement": "ST JEAN D ASSE", + "nomCommune": "ST JEAN D ASSE" }, { - "codePostal": "29650", - "codeCommune": "29183", - "libelleAcheminement": "PLOUEGAT MOYSAN", - "nomCommune": "PLOUEGAT MOYSAN" + "codePostal": "72170", + "codeCommune": "72297", + "libelleAcheminement": "ST MARCEAU", + "nomCommune": "ST MARCEAU" }, { - "codePostal": "29217", - "codeCommune": "29190", - "libelleAcheminement": "PLOUGONVELIN", - "nomCommune": "PLOUGONVELIN" + "codePostal": "72400", + "codeCommune": "72302", + "libelleAcheminement": "ST MARTIN DES MONTS", + "nomCommune": "ST MARTIN DES MONTS" }, { - "codePostal": "29610", - "codeCommune": "29199", - "libelleAcheminement": "PLOUIGNEAU", - "nomCommune": "PLOUIGNEAU" + "codePostal": "72130", + "codeCommune": "72305", + "libelleAcheminement": "ST OUEN DE MIMBRE", + "nomCommune": "ST OUEN DE MIMBRE" }, { - "codePostal": "29600", - "codeCommune": "29207", - "libelleAcheminement": "PLOURIN LES MORLAIX", - "nomCommune": "PLOURIN LES MORLAIX" + "codePostal": "72150", + "codeCommune": "72314", + "libelleAcheminement": "ST PIERRE DU LOROUER", + "nomCommune": "ST PIERRE DU LOROUER" }, { - "codePostal": "29690", - "codeCommune": "29211", - "libelleAcheminement": "PLOUYE", - "nomCommune": "PLOUYE" + "codePostal": "72140", + "codeCommune": "72315", + "libelleAcheminement": "ST REMY DE SILLE", + "nomCommune": "ST REMY DE SILLE" }, { - "codePostal": "29710", - "codeCommune": "29215", - "libelleAcheminement": "PLOZEVET", - "nomCommune": "PLOZEVET" + "codePostal": "72600", + "codeCommune": "72324", + "libelleAcheminement": "ST VINCENT DES PRES", + "nomCommune": "ST VINCENT DES PRES" }, { - "codePostal": "29930", - "codeCommune": "29217", - "libelleAcheminement": "PONT AVEN", - "nomCommune": "PONT AVEN" + "codePostal": "72150", + "codeCommune": "72325", + "libelleAcheminement": "ST VINCENT DU LOROUER", + "nomCommune": "ST VINCENT DU LOROUER" }, { - "codePostal": "29120", - "codeCommune": "29220", - "libelleAcheminement": "PONT L ABBE", - "nomCommune": "PONT L ABBE" + "codePostal": "72160", + "codeCommune": "72331", + "libelleAcheminement": "SCEAUX SUR HUISNE", + "nomCommune": "SCEAUX SUR HUISNE" }, { - "codePostal": "29840", - "codeCommune": "29221", - "libelleAcheminement": "PORSPODER", - "nomCommune": "PORSPODER" + "codePostal": "72110", + "codeCommune": "72359", + "libelleAcheminement": "TORCE EN VALLEE", + "nomCommune": "TORCE EN VALLEE" }, { - "codePostal": "29100", - "codeCommune": "29226", - "libelleAcheminement": "POULLAN SUR MER", - "nomCommune": "POULLAN SUR MER" + "codePostal": "72650", + "codeCommune": "72360", + "libelleAcheminement": "TRANGE", + "nomCommune": "TRANGE" }, { - "codePostal": "29246", - "codeCommune": "29227", - "libelleAcheminement": "POULLAOUEN", - "nomCommune": "POULLAOUEN" + "codePostal": "72160", + "codeCommune": "72363", + "libelleAcheminement": "TUFFE VAL DE LA CHERONNE", + "nomCommune": "TUFFE VAL DE LA CHERONNE" }, { - "codePostal": "29690", - "codeCommune": "29227", - "libelleAcheminement": "POULLAOUEN", - "nomCommune": "POULLAOUEN" + "codePostal": "72500", + "codeCommune": "72364", + "libelleAcheminement": "VAAS", + "nomCommune": "VAAS" }, { - "codePostal": "29590", - "codeCommune": "29240", - "libelleAcheminement": "ROSNOEN", - "nomCommune": "ROSNOEN" + "codePostal": "72320", + "codeCommune": "72366", + "libelleAcheminement": "VALENNES", + "nomCommune": "VALENNES" }, { - "codePostal": "29140", - "codeCommune": "29241", - "libelleAcheminement": "ROSPORDEN", - "nomCommune": "ROSPORDEN" + "codePostal": "72310", + "codeCommune": "72368", + "libelleAcheminement": "VANCE", + "nomCommune": "VANCE" }, { - "codePostal": "29270", - "codeCommune": "29250", - "libelleAcheminement": "ST HERNIN", - "nomCommune": "ST HERNIN" + "codePostal": "72170", + "codeCommune": "72380", + "libelleAcheminement": "VIVOIN", + "nomCommune": "VIVOIN" }, { - "codePostal": "29550", - "codeCommune": "29256", - "libelleAcheminement": "ST NIC", - "nomCommune": "ST NIC" + "codePostal": "72160", + "codeCommune": "72383", + "libelleAcheminement": "VOUVRAY SUR HUISNE", + "nomCommune": "VOUVRAY SUR HUISNE" }, { - "codePostal": "29380", - "codeCommune": "29269", - "libelleAcheminement": "ST THURIEN", - "nomCommune": "ST THURIEN" + "codePostal": "73260", + "codeCommune": "73003", + "libelleAcheminement": "GRAND AIGUEBLANCHE", + "nomCommune": "GRAND AIGUEBLANCHE" }, { - "codePostal": "29640", - "codeCommune": "29275", - "libelleAcheminement": "SCRIGNAC", - "nomCommune": "SCRIGNAC" + "codePostal": "73340", + "codeCommune": "73004", + "libelleAcheminement": "AILLON LE JEUNE", + "nomCommune": "AILLON LE JEUNE" }, { - "codePostal": "29540", - "codeCommune": "29278", - "libelleAcheminement": "SPEZET", - "nomCommune": "SPEZET" + "codePostal": "73210", + "codeCommune": "73006", + "libelleAcheminement": "AIME LA PLAGNE", + "nomCommune": "AIME LA PLAGNE" }, { - "codePostal": "29380", - "codeCommune": "29300", - "libelleAcheminement": "LE TREVOUX", - "nomCommune": "LE TREVOUX" + "codePostal": "73220", + "codeCommune": "73007", + "libelleAcheminement": "AITON", + "nomCommune": "AITON" }, { - "codePostal": "20128", - "codeCommune": "2A008", - "libelleAcheminement": "ALBITRECCIA", - "nomCommune": "ALBITRECCIA" + "codePostal": "73100", + "codeCommune": "73008", + "libelleAcheminement": "AIX LES BAINS", + "nomCommune": "AIX LES BAINS" }, { - "codePostal": "20110", - "codeCommune": "2A018", - "libelleAcheminement": "ARBELLARA", - "nomCommune": "ARBELLARA" + "codePostal": "73410", + "codeCommune": "73010", + "libelleAcheminement": "ENTRELACS", + "nomCommune": "ENTRELACS" }, { - "codePostal": "20140", - "codeCommune": "2A021", - "libelleAcheminement": "ARGIUSTA MORICCIO", - "nomCommune": "ARGIUSTA MORICCIO" + "codePostal": "73410", + "codeCommune": "73010", + "libelleAcheminement": "ENTRELACS", + "nomCommune": "ENTRELACS" }, { - "codePostal": "20134", - "codeCommune": "2A089", - "libelleAcheminement": "CIAMANNACCE", - "nomCommune": "CIAMANNACCE" + "codePostal": "73340", + "codeCommune": "73020", + "libelleAcheminement": "ARITH", + "nomCommune": "ARITH" }, { - "codePostal": "20118", - "codeCommune": "2A090", - "libelleAcheminement": "COGGIA", - "nomCommune": "COGGIA" + "codePostal": "73270", + "codeCommune": "73034", + "libelleAcheminement": "BEAUFORT SUR DORON", + "nomCommune": "BEAUFORT" }, { - "codePostal": "20166", - "codeCommune": "2A091", - "libelleAcheminement": "COGNOCOLI MONTICCHI", - "nomCommune": "COGNOCOLI MONTICCHI" + "codePostal": "73170", + "codeCommune": "73042", + "libelleAcheminement": "BILLIEME", + "nomCommune": "BILLIEME" }, { - "codePostal": "20138", - "codeCommune": "2A098", - "libelleAcheminement": "COTI CHIAVARI", - "nomCommune": "COTI CHIAVARI" + "codePostal": "73220", + "codeCommune": "73049", + "libelleAcheminement": "BONVILLARET", + "nomCommune": "BONVILLARET" }, { - "codePostal": "20114", - "codeCommune": "2A114", - "libelleAcheminement": "FIGARI", - "nomCommune": "FIGARI" + "codePostal": "73700", + "codeCommune": "73054", + "libelleAcheminement": "BOURG ST MAURICE", + "nomCommune": "BOURG ST MAURICE" }, { - "codePostal": "20100", - "codeCommune": "2A115", - "libelleAcheminement": "FOCE", - "nomCommune": "FOCE" + "codePostal": "73100", + "codeCommune": "73059", + "libelleAcheminement": "BRISON ST INNOCENT", + "nomCommune": "BRISON ST INNOCENT" }, { - "codePostal": "20100", - "codeCommune": "2A127", - "libelleAcheminement": "GIUNCHETO", - "nomCommune": "GIUNCHETO" + "codePostal": "73130", + "codeCommune": "73067", + "libelleAcheminement": "LA CHAMBRE", + "nomCommune": "LA CHAMBRE" }, { - "codePostal": "20160", - "codeCommune": "2A131", - "libelleAcheminement": "GUAGNO", - "nomCommune": "GUAGNO" + "codePostal": "73660", + "codeCommune": "73074", + "libelleAcheminement": "LA CHAPELLE", + "nomCommune": "LA CHAPELLE" }, { - "codePostal": "20153", - "codeCommune": "2A133", - "libelleAcheminement": "GUITERA LES BAINS", - "nomCommune": "GUITERA LES BAINS" + "codePostal": "73630", + "codeCommune": "73081", + "libelleAcheminement": "LE CHATELARD", + "nomCommune": "LE CHATELARD" }, { - "codePostal": "20141", - "codeCommune": "2A154", - "libelleAcheminement": "MARIGNANA", - "nomCommune": "MARIGNANA" + "codePostal": "73400", + "codeCommune": "73088", + "libelleAcheminement": "COHENNOZ", + "nomCommune": "COHENNOZ" }, { - "codePostal": "20113", - "codeCommune": "2A189", - "libelleAcheminement": "OLMETO", - "nomCommune": "OLMETO" + "codePostal": "73230", + "codeCommune": "73098", + "libelleAcheminement": "LES DESERTS", + "nomCommune": "LES DESERTS" }, { - "codePostal": "20167", - "codeCommune": "2A209", - "libelleAcheminement": "PERI", - "nomCommune": "PERI" + "codePostal": "73420", + "codeCommune": "73103", + "libelleAcheminement": "DRUMETTAZ CLARAFOND", + "nomCommune": "DRUMETTAZ CLARAFOND" }, { - "codePostal": "20131", - "codeCommune": "2A215", - "libelleAcheminement": "PIANOTTOLI CALDARELLO", - "nomCommune": "PIANOTTOLI CALDARELLO" + "codePostal": "73220", + "codeCommune": "73109", + "libelleAcheminement": "EPIERRE", + "nomCommune": "EPIERRE" }, { - "codePostal": "20166", - "codeCommune": "2A228", - "libelleAcheminement": "PIETROSELLA", - "nomCommune": "PIETROSELLA" + "codePostal": "73540", + "codeCommune": "73110", + "libelleAcheminement": "ESSERTS BLAY", + "nomCommune": "ESSERTS BLAY" }, { - "codePostal": "20140", - "codeCommune": "2A276", - "libelleAcheminement": "SERRA DI FERRO", - "nomCommune": "SERRA DI FERRO" + "codePostal": "73590", + "codeCommune": "73114", + "libelleAcheminement": "FLUMET", + "nomCommune": "FLUMET" }, { - "codePostal": "20146", - "codeCommune": "2A288", - "libelleAcheminement": "SOTTA", - "nomCommune": "SOTTA" + "codePostal": "73460", + "codeCommune": "73121", + "libelleAcheminement": "FRONTENEX", + "nomCommune": "FRONTENEX" }, { - "codePostal": "20134", - "codeCommune": "2A322", - "libelleAcheminement": "TASSO", - "nomCommune": "TASSO" + "codePostal": "73470", + "codeCommune": "73122", + "libelleAcheminement": "GERBAIX", + "nomCommune": "GERBAIX" }, { - "codePostal": "20116", - "codeCommune": "2A357", - "libelleAcheminement": "ZERUBIA", - "nomCommune": "ZERUBIA" + "codePostal": "73100", + "codeCommune": "73128", + "libelleAcheminement": "GRESY SUR AIX", + "nomCommune": "GRESY SUR AIX" }, { - "codePostal": "20190", - "codeCommune": "2A360", - "libelleAcheminement": "ZIGLIARA", - "nomCommune": "ZIGLIARA" + "codePostal": "73300", + "codeCommune": "73138", + "libelleAcheminement": "JARRIER", + "nomCommune": "JARRIER" }, { - "codePostal": "20112", - "codeCommune": "2A363", - "libelleAcheminement": "ZOZA", - "nomCommune": "ZOZA" + "codePostal": "73210", + "codeCommune": "73142", + "libelleAcheminement": "LANDRY", + "nomCommune": "LANDRY" }, { - "codePostal": "20212", - "codeCommune": "2B005", - "libelleAcheminement": "ALANDO", - "nomCommune": "ALANDO" + "codePostal": "73340", + "codeCommune": "73146", + "libelleAcheminement": "LESCHERAINES", + "nomCommune": "LESCHERAINES" }, { - "codePostal": "20224", - "codeCommune": "2B007", - "libelleAcheminement": "ALBERTACCE", - "nomCommune": "ALBERTACCE" + "codePostal": "73170", + "codeCommune": "73147", + "libelleAcheminement": "LOISIEUX", + "nomCommune": "LOISIEUX" }, { - "codePostal": "20220", - "codeCommune": "2B010", - "libelleAcheminement": "ALGAJOLA", - "nomCommune": "ALGAJOLA" + "codePostal": "73210", + "codeCommune": "73150", + "libelleAcheminement": "LA PLAGNE TARENTAISE", + "nomCommune": "LA PLAGNE TARENTAISE" }, { - "codePostal": "20272", - "codeCommune": "2B015", - "libelleAcheminement": "AMPRIANI", - "nomCommune": "AMPRIANI" + "codePostal": "73210", + "codeCommune": "73150", + "libelleAcheminement": "LA PLAGNE TARENTAISE", + "nomCommune": "LA PLAGNE TARENTAISE" }, { - "codePostal": "20600", - "codeCommune": "2B033", - "libelleAcheminement": "BASTIA", - "nomCommune": "BASTIA" + "codePostal": "73800", + "codeCommune": "73151", + "libelleAcheminement": "PORTE DE SAVOIE", + "nomCommune": "PORTE DE SAVOIE" }, { - "codePostal": "20620", - "codeCommune": "2B037", - "libelleAcheminement": "BIGUGLIA", - "nomCommune": "BIGUGLIA" + "codePostal": "73390", + "codeCommune": "73166", + "libelleAcheminement": "MONTENDRY", + "nomCommune": "MONTENDRY" }, { - "codePostal": "20222", - "codeCommune": "2B043", - "libelleAcheminement": "BRANDO", - "nomCommune": "BRANDO" + "codePostal": "73220", + "codeCommune": "73175", + "libelleAcheminement": "MONTSAPEY", + "nomCommune": "MONTSAPEY" }, { - "codePostal": "20228", - "codeCommune": "2B046", - "libelleAcheminement": "CAGNANO", - "nomCommune": "CAGNANO" + "codePostal": "73590", + "codeCommune": "73186", + "libelleAcheminement": "NOTRE DAME DE BELLECOMBE", + "nomCommune": "NOTRE DAME DE BELLECOMBE" }, { - "codePostal": "20244", - "codeCommune": "2B051", - "libelleAcheminement": "CAMBIA", - "nomCommune": "CAMBIA" + "codePostal": "73260", + "codeCommune": "73187", + "libelleAcheminement": "LA LECHERE", + "nomCommune": "LA LECHERE" }, { - "codePostal": "20217", - "codeCommune": "2B058", - "libelleAcheminement": "CANARI", - "nomCommune": "CANARI" + "codePostal": "73130", + "codeCommune": "73189", + "libelleAcheminement": "NOTRE DAME DU CRUET", + "nomCommune": "NOTRE DAME DU CRUET" }, { - "codePostal": "20244", - "codeCommune": "2B068", - "libelleAcheminement": "CARTICASI", - "nomCommune": "CARTICASI" + "codePostal": "73210", + "codeCommune": "73197", + "libelleAcheminement": "PEISEY NANCROIX", + "nomCommune": "PEISEY NANCROIX" }, { - "codePostal": "20237", - "codeCommune": "2B069", - "libelleAcheminement": "CASABIANCA", - "nomCommune": "CASABIANCA" + "codePostal": "73330", + "codeCommune": "73204", + "libelleAcheminement": "LE PONT DE BEAUVOISIN", + "nomCommune": "LE PONT DE BEAUVOISIN" }, { - "codePostal": "20224", - "codeCommune": "2B073", - "libelleAcheminement": "CASAMACCIOLI", - "nomCommune": "CASAMACCIOLI" + "codePostal": "73190", + "codeCommune": "73210", + "libelleAcheminement": "PUYGROS", + "nomCommune": "PUYGROS" }, { - "codePostal": "20213", - "codeCommune": "2B077", - "libelleAcheminement": "CASTELLARE DI CASINCA", - "nomCommune": "CASTELLARE DI CASINCA" + "codePostal": "73490", + "codeCommune": "73213", + "libelleAcheminement": "LA RAVOIRE", + "nomCommune": "LA RAVOIRE" }, { - "codePostal": "20218", - "codeCommune": "2B082", - "libelleAcheminement": "CASTINETA", - "nomCommune": "CASTINETA" + "codePostal": "73240", + "codeCommune": "73214", + "libelleAcheminement": "ROCHEFORT", + "nomCommune": "ROCHEFORT" }, { - "codePostal": "20220", - "codeCommune": "2B093", - "libelleAcheminement": "CORBARA", - "nomCommune": "CORBARA" + "codePostal": "73610", + "codeCommune": "73219", + "libelleAcheminement": "ST ALBAN DE MONTBEL", + "nomCommune": "ST ALBAN DE MONTBEL" }, { - "codePostal": "20256", - "codeCommune": "2B093", - "libelleAcheminement": "CORBARA", - "nomCommune": "CORBARA" + "codePostal": "73360", + "codeCommune": "73229", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "20290", - "codeCommune": "2B102", - "libelleAcheminement": "CROCICCHIA", - "nomCommune": "CROCICCHIA" + "codePostal": "73130", + "codeCommune": "73230", + "libelleAcheminement": "ST COLOMBAN DES VILLARDS", + "nomCommune": "ST COLOMBAN DES VILLARDS" }, { - "codePostal": "20244", - "codeCommune": "2B106", - "libelleAcheminement": "ERONE", - "nomCommune": "ERONE" + "codePostal": "73640", + "codeCommune": "73232", + "libelleAcheminement": "STE FOY TARENTAISE", + "nomCommune": "STE FOY TARENTAISE" }, { - "codePostal": "20275", - "codeCommune": "2B107", - "libelleAcheminement": "ERSA", - "nomCommune": "ERSA" + "codePostal": "73240", + "codeCommune": "73236", + "libelleAcheminement": "ST GENIX LES VILLAGES", + "nomCommune": "ST GENIX LES VILLAGES" }, { - "codePostal": "20253", - "codeCommune": "2B109", - "libelleAcheminement": "FARINOLE", - "nomCommune": "FARINOLE" + "codePostal": "73220", + "codeCommune": "73237", + "libelleAcheminement": "ST GEORGES D HURTIERES", + "nomCommune": "ST GEORGES D HURTIERES" }, { - "codePostal": "20218", - "codeCommune": "2B122", - "libelleAcheminement": "GAVIGNANO", - "nomCommune": "GAVIGNANO" + "codePostal": "73460", + "codeCommune": "73241", + "libelleAcheminement": "STE HELENE SUR ISERE", + "nomCommune": "STE HELENE SUR ISERE" }, { - "codePostal": "20227", - "codeCommune": "2B124", - "libelleAcheminement": "GHISONI", - "nomCommune": "GHISONI" + "codePostal": "73250", + "codeCommune": "73247", + "libelleAcheminement": "ST JEAN DE LA PORTE", + "nomCommune": "ST JEAN DE LA PORTE" }, { - "codePostal": "20237", - "codeCommune": "2B125", - "libelleAcheminement": "GIOCATOJO", - "nomCommune": "GIOCATOJO" + "codePostal": "73220", + "codeCommune": "73252", + "libelleAcheminement": "ST LEGER", + "nomCommune": "ST LEGER" }, { - "codePostal": "20243", - "codeCommune": "2B135", - "libelleAcheminement": "ISOLACCIO DI FIUMORBO", - "nomCommune": "ISOLACCIO DI FIUMORBO" + "codePostal": "73600", + "codeCommune": "73253", + "libelleAcheminement": "ST MARCEL", + "nomCommune": "ST MARCEL" }, { - "codePostal": "20218", - "codeCommune": "2B136", - "libelleAcheminement": "LAMA", - "nomCommune": "LAMA" + "codePostal": "73410", + "codeCommune": "73265", + "libelleAcheminement": "ST OURS", + "nomCommune": "ST OURS" }, { - "codePostal": "20230", - "codeCommune": "2B143", - "libelleAcheminement": "LINGUIZZETTA", - "nomCommune": "LINGUIZZETTA" + "codePostal": "73300", + "codeCommune": "73267", + "libelleAcheminement": "ST PANCRACE", + "nomCommune": "ST PANCRACE" }, { - "codePostal": "20290", - "codeCommune": "2B148", - "libelleAcheminement": "LUCCIANA", - "nomCommune": "LUCCIANA" + "codePostal": "73170", + "codeCommune": "73269", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "20290", - "codeCommune": "2B148", - "libelleAcheminement": "LUCCIANA", - "nomCommune": "LUCCIANA" + "codePostal": "73250", + "codeCommune": "73270", + "libelleAcheminement": "ST PIERRE D ALBIGNY", + "nomCommune": "ST PIERRE D ALBIGNY" }, { - "codePostal": "20228", - "codeCommune": "2B152", - "libelleAcheminement": "LURI", - "nomCommune": "LURI" + "codePostal": "73670", + "codeCommune": "73274", + "libelleAcheminement": "ST PIERRE D ENTREMONT", + "nomCommune": "ST PIERRE D ENTREMONT" }, { - "codePostal": "20214", - "codeCommune": "2B167", - "libelleAcheminement": "MONTEGROSSO", - "nomCommune": "MONTEGROSSO" + "codePostal": "73310", + "codeCommune": "73286", + "libelleAcheminement": "SERRIERES EN CHAUTAGNE", + "nomCommune": "SERRIERES EN CHAUTAGNE" }, { - "codePostal": "20214", - "codeCommune": "2B167", - "libelleAcheminement": "MONTEGROSSO", - "nomCommune": "MONTEGROSSO" + "codePostal": "73480", + "codeCommune": "73290", + "libelleAcheminement": "VAL CENIS", + "nomCommune": "VAL CENIS" }, { - "codePostal": "20214", - "codeCommune": "2B167", - "libelleAcheminement": "MONTEGROSSO", - "nomCommune": "MONTEGROSSO" + "codePostal": "73500", + "codeCommune": "73290", + "libelleAcheminement": "VAL CENIS", + "nomCommune": "VAL CENIS" }, { - "codePostal": "20220", - "codeCommune": "2B168", - "libelleAcheminement": "MONTICELLO", - "nomCommune": "MONTICELLO" + "codePostal": "73500", + "codeCommune": "73290", + "libelleAcheminement": "VAL CENIS", + "nomCommune": "VAL CENIS" }, { - "codePostal": "20225", - "codeCommune": "2B173", - "libelleAcheminement": "MURO", - "nomCommune": "MURO" + "codePostal": "73230", + "codeCommune": "73293", + "libelleAcheminement": "THOIRY", + "nomCommune": "THOIRY" }, { - "codePostal": "20225", - "codeCommune": "2B175", - "libelleAcheminement": "NESSA", - "nomCommune": "NESSA" + "codePostal": "73190", + "codeCommune": "73294", + "libelleAcheminement": "LA THUILE", + "nomCommune": "LA THUILE" }, { - "codePostal": "20229", - "codeCommune": "2B176", - "libelleAcheminement": "NOCARIO", - "nomCommune": "NOCARIO" + "codePostal": "73200", + "codeCommune": "73308", + "libelleAcheminement": "VENTHON", + "nomCommune": "VENTHON" }, { - "codePostal": "20242", - "codeCommune": "2B177", - "libelleAcheminement": "NOCETA", - "nomCommune": "NOCETA" + "codePostal": "73110", + "codeCommune": "73311", + "libelleAcheminement": "LE VERNEIL", + "nomCommune": "LE VERNEIL" }, { - "codePostal": "20226", - "codeCommune": "2B182", - "libelleAcheminement": "OCCHIATANA", - "nomCommune": "OCCHIATANA" + "codePostal": "73270", + "codeCommune": "73317", + "libelleAcheminement": "VILLARD SUR DORON", + "nomCommune": "VILLARD SUR DORON" }, { - "codePostal": "20290", - "codeCommune": "2B195", - "libelleAcheminement": "ORTIPORIO", - "nomCommune": "ORTIPORIO" + "codePostal": "73300", + "codeCommune": "73318", + "libelleAcheminement": "VILLAREMBERT", + "nomCommune": "VILLAREMBERT" }, { - "codePostal": "20213", - "codeCommune": "2B207", - "libelleAcheminement": "PENTA DI CASINCA", - "nomCommune": "PENTA DI CASINCA" + "codePostal": "73420", + "codeCommune": "73329", + "libelleAcheminement": "VOGLANS", + "nomCommune": "VOGLANS" }, { - "codePostal": "20215", - "codeCommune": "2B214", - "libelleAcheminement": "PIANO", - "nomCommune": "PIANO" + "codePostal": "74360", + "codeCommune": "74001", + "libelleAcheminement": "ABONDANCE", + "nomCommune": "ABONDANCE" }, { - "codePostal": "20251", - "codeCommune": "2B218", - "libelleAcheminement": "PIEDICORTE DI GAGGIO", - "nomCommune": "PIEDICORTE DI GAGGIO" + "codePostal": "74960", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "20229", - "codeCommune": "2B219", - "libelleAcheminement": "PIEDICROCE", - "nomCommune": "PIEDICROCE" + "codePostal": "74960", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "20242", - "codeCommune": "2B229", - "libelleAcheminement": "PIETROSO", - "nomCommune": "PIETROSO" + "codePostal": "74200", + "codeCommune": "74020", + "libelleAcheminement": "ARMOY", + "nomCommune": "ARMOY" }, { - "codePostal": "20220", - "codeCommune": "2B231", - "libelleAcheminement": "PIGNA", - "nomCommune": "PIGNA" + "codePostal": "74380", + "codeCommune": "74021", + "libelleAcheminement": "ARTHAZ PONT NOTRE DAME", + "nomCommune": "ARTHAZ PONT NOTRE DAME" }, { - "codePostal": "20228", - "codeCommune": "2B233", - "libelleAcheminement": "PINO", - "nomCommune": "PINO" + "codePostal": "74330", + "codeCommune": "74026", + "libelleAcheminement": "LA BALME DE SILLINGY", + "nomCommune": "LA BALME DE SILLINGY" }, { - "codePostal": "20240", - "codeCommune": "2B236", - "libelleAcheminement": "POGGIO DI NAZZA", - "nomCommune": "POGGIO DI NAZZA" + "codePostal": "74470", + "codeCommune": "74032", + "libelleAcheminement": "BELLEVAUX", + "nomCommune": "BELLEVAUX" }, { - "codePostal": "20232", - "codeCommune": "2B239", - "libelleAcheminement": "POGGIO D OLETTA", - "nomCommune": "POGGIO D OLETTA" + "codePostal": "74500", + "codeCommune": "74033", + "libelleAcheminement": "BERNEX", + "nomCommune": "BERNEX" }, { - "codePostal": "20215", - "codeCommune": "2B245", - "libelleAcheminement": "PORRI", - "nomCommune": "PORRI" + "codePostal": "74430", + "codeCommune": "74034", + "libelleAcheminement": "LE BIOT", + "nomCommune": "LE BIOT" }, { - "codePostal": "20243", - "codeCommune": "2B251", - "libelleAcheminement": "PRUNELLI DI FIUMORBO", - "nomCommune": "PRUNELLI DI FIUMORBO" + "codePostal": "74290", + "codeCommune": "74036", + "libelleAcheminement": "BLUFFY", + "nomCommune": "BLUFFY" }, { - "codePostal": "20226", - "codeCommune": "2B290", - "libelleAcheminement": "SPELONCATO", - "nomCommune": "SPELONCATO" + "codePostal": "74420", + "codeCommune": "74037", + "libelleAcheminement": "BOEGE", + "nomCommune": "BOEGE" }, { - "codePostal": "20221", - "codeCommune": "2B293", - "libelleAcheminement": "SANT ANDREA DI COTONE", - "nomCommune": "SANT ANDREA DI COTONE" + "codePostal": "74250", + "codeCommune": "74038", + "libelleAcheminement": "BOGEVE", + "nomCommune": "BOGEVE" }, { - "codePostal": "20230", - "codeCommune": "2B302", - "libelleAcheminement": "SAN GIOVANNI DI MORIANI", - "nomCommune": "SAN GIOVANNI DI MORIANI" + "codePostal": "74130", + "codeCommune": "74049", + "libelleAcheminement": "BRIZON", + "nomCommune": "BRIZON" }, { - "codePostal": "20230", - "codeCommune": "2B303", - "libelleAcheminement": "SAN GIULIANO", - "nomCommune": "SAN GIULIANO" + "codePostal": "74350", + "codeCommune": "74052", + "libelleAcheminement": "CERNEX", + "nomCommune": "CERNEX" }, { - "codePostal": "20200", - "codeCommune": "2B305", - "libelleAcheminement": "SAN MARTINO DI LOTA", - "nomCommune": "SAN MARTINO DI LOTA" + "codePostal": "74400", + "codeCommune": "74056", + "libelleAcheminement": "CHAMONIX MONT BLANC", + "nomCommune": "CHAMONIX MONT BLANC" }, { - "codePostal": "20230", - "codeCommune": "2B313", - "libelleAcheminement": "SAN NICOLAO", - "nomCommune": "SAN NICOLAO" + "codePostal": "74400", + "codeCommune": "74056", + "libelleAcheminement": "CHAMONIX MONT BLANC", + "nomCommune": "CHAMONIX MONT BLANC" }, { - "codePostal": "20230", - "codeCommune": "2B317", - "libelleAcheminement": "SANTA REPARATA DI MORIANI", - "nomCommune": "SANTA REPARATA DI MORIANI" + "codePostal": "74400", + "codeCommune": "74056", + "libelleAcheminement": "CHAMONIX MONT BLANC", + "nomCommune": "CHAMONIX MONT BLANC" }, { - "codePostal": "20270", - "codeCommune": "2B320", - "libelleAcheminement": "TALLONE", - "nomCommune": "TALLONE" + "codePostal": "74370", + "codeCommune": "74062", + "libelleAcheminement": "CHARVONNEX", + "nomCommune": "CHARVONNEX" }, { - "codePostal": "20234", - "codeCommune": "2B334", - "libelleAcheminement": "VALLE D ALESANI", - "nomCommune": "VALLE D ALESANI" + "codePostal": "74300", + "codeCommune": "74064", + "libelleAcheminement": "CHATILLON SUR CLUSES", + "nomCommune": "CHATILLON SUR CLUSES" }, { - "codePostal": "20259", - "codeCommune": "2B339", - "libelleAcheminement": "VALLICA", - "nomCommune": "VALLICA" + "codePostal": "74650", + "codeCommune": "74067", + "libelleAcheminement": "CHAVANOD", + "nomCommune": "CHAVANOD" }, { - "codePostal": "20229", - "codeCommune": "2B344", - "libelleAcheminement": "VERDESE", - "nomCommune": "VERDESE" + "codePostal": "74520", + "codeCommune": "74069", + "libelleAcheminement": "CHENEX", + "nomCommune": "CHENEX" }, { - "codePostal": "20215", - "codeCommune": "2B346", - "libelleAcheminement": "VESCOVATO", - "nomCommune": "VESCOVATO" + "codePostal": "74270", + "codeCommune": "74075", + "libelleAcheminement": "CHILLY", + "nomCommune": "CHILLY" }, { - "codePostal": "20290", - "codeCommune": "2B350", - "libelleAcheminement": "VIGNALE", - "nomCommune": "VIGNALE" + "codePostal": "74330", + "codeCommune": "74076", + "libelleAcheminement": "CHOISY", + "nomCommune": "CHOISY" }, { - "codePostal": "20290", - "codeCommune": "2B355", - "libelleAcheminement": "VOLPAJOLA", - "nomCommune": "VOLPAJOLA" + "codePostal": "74270", + "codeCommune": "74077", + "libelleAcheminement": "CLARAFOND ARCINE", + "nomCommune": "CLARAFOND ARCINE" }, { - "codePostal": "30700", - "codeCommune": "30001", - "libelleAcheminement": "AIGALIERS", - "nomCommune": "AIGALIERS" + "codePostal": "74270", + "codeCommune": "74077", + "libelleAcheminement": "CLARAFOND ARCINE", + "nomCommune": "CLARAFOND ARCINE" }, { - "codePostal": "30670", - "codeCommune": "30004", - "libelleAcheminement": "AIGUES VIVES", - "nomCommune": "AIGUES VIVES" + "codePostal": "74300", + "codeCommune": "74081", + "libelleAcheminement": "CLUSES", + "nomCommune": "CLUSES" }, { - "codePostal": "30470", - "codeCommune": "30006", - "libelleAcheminement": "AIMARGUES", - "nomCommune": "AIMARGUES" + "codePostal": "74700", + "codeCommune": "74089", + "libelleAcheminement": "CORDON", + "nomCommune": "CORDON" }, { - "codePostal": "30770", - "codeCommune": "30009", - "libelleAcheminement": "ALZON", - "nomCommune": "ALZON" + "codePostal": "74150", + "codeCommune": "74095", + "libelleAcheminement": "CREMPIGNY BONNEGUETE", + "nomCommune": "CREMPIGNY BONNEGUETE" }, { - "codePostal": "30390", - "codeCommune": "30012", - "libelleAcheminement": "ARAMON", - "nomCommune": "ARAMON" + "codePostal": "74540", + "codeCommune": "74097", + "libelleAcheminement": "CUSY", + "nomCommune": "CUSY" }, { - "codePostal": "30250", - "codeCommune": "30018", - "libelleAcheminement": "ASPERES", - "nomCommune": "ASPERES" + "codePostal": "74120", + "codeCommune": "74099", + "libelleAcheminement": "DEMI QUARTIER", + "nomCommune": "DEMI QUARTIER" }, { - "codePostal": "30430", - "codeCommune": "30029", - "libelleAcheminement": "BARJAC", - "nomCommune": "BARJAC" + "codePostal": "74140", + "codeCommune": "74121", + "libelleAcheminement": "EXCENEVEX", + "nomCommune": "EXCENEVEX" }, { - "codePostal": "30300", - "codeCommune": "30032", - "libelleAcheminement": "BEAUCAIRE", - "nomCommune": "BEAUCAIRE" + "codePostal": "74160", + "codeCommune": "74124", + "libelleAcheminement": "FEIGERES", + "nomCommune": "FEIGERES" }, { - "codePostal": "30640", - "codeCommune": "30033", - "libelleAcheminement": "BEAUVOISIN", - "nomCommune": "BEAUVOISIN" + "codePostal": "74500", + "codeCommune": "74127", + "libelleAcheminement": "FETERNES", + "nomCommune": "FETERNES" }, { - "codePostal": "30640", - "codeCommune": "30033", - "libelleAcheminement": "BEAUVOISIN", - "nomCommune": "BEAUVOISIN" + "codePostal": "74210", + "codeCommune": "74135", + "libelleAcheminement": "GIEZ", + "nomCommune": "GIEZ" }, { - "codePostal": "30114", - "codeCommune": "30043", - "libelleAcheminement": "BOISSIERES", - "nomCommune": "BOISSIERES" + "codePostal": "74500", + "codeCommune": "74146", + "libelleAcheminement": "LARRINGES", + "nomCommune": "LARRINGES" }, { - "codePostal": "30160", - "codeCommune": "30045", - "libelleAcheminement": "BORDEZAC", - "nomCommune": "BORDEZAC" + "codePostal": "74200", + "codeCommune": "74163", + "libelleAcheminement": "MARGENCEL", + "nomCommune": "MARGENCEL" }, { - "codePostal": "30230", - "codeCommune": "30047", - "libelleAcheminement": "BOUILLARGUES", - "nomCommune": "BOUILLARGUES" + "codePostal": "74200", + "codeCommune": "74166", + "libelleAcheminement": "MARIN", + "nomCommune": "MARIN" }, { - "codePostal": "30190", - "codeCommune": "30049", - "libelleAcheminement": "BOURDIC", - "nomCommune": "BOURDIC" + "codePostal": "74500", + "codeCommune": "74172", + "libelleAcheminement": "MAXILLY SUR LEMAN", + "nomCommune": "MAXILLY SUR LEMAN" }, { - "codePostal": "30120", - "codeCommune": "30052", - "libelleAcheminement": "BREAU MARS", - "nomCommune": "BREAU MARS" + "codePostal": "74120", + "codeCommune": "74173", + "libelleAcheminement": "MEGEVE", + "nomCommune": "MEGEVE" }, { - "codePostal": "30190", - "codeCommune": "30053", - "libelleAcheminement": "BRIGNON", - "nomCommune": "BRIGNON" + "codePostal": "74330", + "codeCommune": "74179", + "libelleAcheminement": "MESIGNY", + "nomCommune": "MESIGNY" }, { - "codePostal": "30580", - "codeCommune": "30056", - "libelleAcheminement": "LA BRUGUIERE", - "nomCommune": "LA BRUGUIERE" + "codePostal": "74600", + "codeCommune": "74186", + "libelleAcheminement": "MONTAGNY LES LANCHES", + "nomCommune": "MONTAGNY LES LANCHES" }, { - "codePostal": "30170", - "codeCommune": "30058", - "libelleAcheminement": "LA CADIERE ET CAMBO", - "nomCommune": "LA CADIERE ET CAMBO" + "codePostal": "74490", + "codeCommune": "74205", + "libelleAcheminement": "ONNION", + "nomCommune": "ONNION" }, { - "codePostal": "30740", - "codeCommune": "30059", - "libelleAcheminement": "LE CAILAR", - "nomCommune": "LE CAILAR" + "codePostal": "74190", + "codeCommune": "74208", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "30190", - "codeCommune": "30061", - "libelleAcheminement": "LA CALMETTE", - "nomCommune": "LA CALMETTE" + "codePostal": "74250", + "codeCommune": "74209", + "libelleAcheminement": "PEILLONNEX", + "nomCommune": "PEILLONNEX" }, { - "codePostal": "30130", - "codeCommune": "30070", - "libelleAcheminement": "CARSAN", - "nomCommune": "CARSAN" + "codePostal": "74130", + "codeCommune": "74212", + "libelleAcheminement": "GLIERES VAL DE BORNE", + "nomCommune": "GLIERES VAL DE BORNE" }, { - "codePostal": "30210", - "codeCommune": "30073", - "libelleAcheminement": "CASTILLON DU GARD", - "nomCommune": "CASTILLON DU GARD" + "codePostal": "74330", + "codeCommune": "74213", + "libelleAcheminement": "POISY", + "nomCommune": "POISY" }, { - "codePostal": "30480", - "codeCommune": "30077", - "libelleAcheminement": "CENDRAS", - "nomCommune": "CENDRAS" + "codePostal": "74500", + "codeCommune": "74218", + "libelleAcheminement": "PUBLIER", + "nomCommune": "PUBLIER" }, { - "codePostal": "30200", - "codeCommune": "30081", - "libelleAcheminement": "CHUSCLAN", - "nomCommune": "CHUSCLAN" + "codePostal": "74930", + "codeCommune": "74220", + "libelleAcheminement": "REIGNIER ESERY", + "nomCommune": "REIGNIER ESERY" }, { - "codePostal": "30200", - "codeCommune": "30081", - "libelleAcheminement": "CHUSCLAN", - "nomCommune": "CHUSCLAN" + "codePostal": "74800", + "codeCommune": "74224", + "libelleAcheminement": "LA ROCHE SUR FORON", + "nomCommune": "LA ROCHE SUR FORON" }, { - "codePostal": "30250", - "codeCommune": "30088", - "libelleAcheminement": "COMBAS", - "nomCommune": "COMBAS" + "codePostal": "74150", + "codeCommune": "74225", + "libelleAcheminement": "RUMILLY", + "nomCommune": "RUMILLY" }, { - "codePostal": "30450", - "codeCommune": "30090", - "libelleAcheminement": "CONCOULES", - "nomCommune": "CONCOULES" + "codePostal": "74140", + "codeCommune": "74229", + "libelleAcheminement": "ST CERGUES", + "nomCommune": "ST CERGUES" }, { - "codePostal": "30111", - "codeCommune": "30091", - "libelleAcheminement": "CONGENIES", - "nomCommune": "CONGENIES" + "codePostal": "74910", + "codeCommune": "74235", + "libelleAcheminement": "ST GERMAIN SUR RHONE", + "nomCommune": "ST GERMAIN SUR RHONE" }, { - "codePostal": "30330", - "codeCommune": "30092", - "libelleAcheminement": "CONNAUX", - "nomCommune": "CONNAUX" + "codePostal": "74170", + "codeCommune": "74236", + "libelleAcheminement": "ST GERVAIS LES BAINS", + "nomCommune": "ST GERVAIS LES BAINS" }, { - "codePostal": "30170", - "codeCommune": "30093", - "libelleAcheminement": "CONQUEYRAC", - "nomCommune": "CONQUEYRAC" + "codePostal": "74500", + "codeCommune": "74249", + "libelleAcheminement": "ST PAUL EN CHABLAIS", + "nomCommune": "ST PAUL EN CHABLAIS" }, { - "codePostal": "30260", - "codeCommune": "30095", - "libelleAcheminement": "CORCONNE", - "nomCommune": "CORCONNE" + "codePostal": "74300", + "codeCommune": "74252", + "libelleAcheminement": "ST SIGISMOND", + "nomCommune": "ST SIGISMOND" }, { - "codePostal": "30500", - "codeCommune": "30097", - "libelleAcheminement": "COURRY", - "nomCommune": "COURRY" + "codePostal": "74520", + "codeCommune": "74260", + "libelleAcheminement": "SAVIGNY", + "nomCommune": "SAVIGNY" }, { - "codePostal": "30360", - "codeCommune": "30109", - "libelleAcheminement": "EUZET", - "nomCommune": "EUZET" + "codePostal": "74950", + "codeCommune": "74264", + "libelleAcheminement": "SCIONZIER", + "nomCommune": "SCIONZIER" }, { - "codePostal": "30700", - "codeCommune": "30111", - "libelleAcheminement": "FOISSAC", - "nomCommune": "FOISSAC" + "codePostal": "74440", + "codeCommune": "74276", + "libelleAcheminement": "TANINGES", + "nomCommune": "TANINGES" }, { - "codePostal": "30330", - "codeCommune": "30127", - "libelleAcheminement": "GAUJAC", - "nomCommune": "GAUJAC" + "codePostal": "74500", + "codeCommune": "74279", + "libelleAcheminement": "THOLLON LES MEMISES", + "nomCommune": "THOLLON LES MEMISES" }, { - "codePostal": "30140", - "codeCommune": "30129", - "libelleAcheminement": "GENERARGUES", - "nomCommune": "GENERARGUES" + "codePostal": "74230", + "codeCommune": "74280", + "libelleAcheminement": "THONES", + "nomCommune": "THONES" }, { - "codePostal": "30110", - "codeCommune": "30132", - "libelleAcheminement": "LA GRAND COMBE", - "nomCommune": "LA GRAND COMBE" + "codePostal": "74200", + "codeCommune": "74281", + "libelleAcheminement": "THONON LES BAINS", + "nomCommune": "THONON LES BAINS" }, { - "codePostal": "30750", - "codeCommune": "30139", - "libelleAcheminement": "LANUEJOLS", - "nomCommune": "LANUEJOLS" + "codePostal": "74570", + "codeCommune": "74282", + "libelleAcheminement": "FILLIERE", + "nomCommune": "FILLIERE" }, { - "codePostal": "30110", - "codeCommune": "30142", - "libelleAcheminement": "LAVAL PRADEL", - "nomCommune": "LAVAL PRADEL" + "codePostal": "74150", + "codeCommune": "74292", + "libelleAcheminement": "VAULX", + "nomCommune": "VAULX" }, { - "codePostal": "30210", - "codeCommune": "30145", - "libelleAcheminement": "LEDENON", - "nomCommune": "LEDENON" + "codePostal": "74140", + "codeCommune": "74293", + "libelleAcheminement": "VEIGY FONCENEX", + "nomCommune": "VEIGY FONCENEX" }, { - "codePostal": "30580", - "codeCommune": "30151", - "libelleAcheminement": "LUSSAN", - "nomCommune": "LUSSAN" + "codePostal": "74150", + "codeCommune": "74297", + "libelleAcheminement": "VERSONNEX", + "nomCommune": "VERSONNEX" }, { - "codePostal": "30960", - "codeCommune": "30159", - "libelleAcheminement": "LE MARTINET", - "nomCommune": "LE MARTINET" + "codePostal": "74370", + "codeCommune": "74303", + "libelleAcheminement": "VILLAZ", + "nomCommune": "VILLAZ" }, { - "codePostal": "30350", - "codeCommune": "30160", - "libelleAcheminement": "MARUEJOLS LES GARDON", - "nomCommune": "MARUEJOLS LES GARDON" + "codePostal": "74520", + "codeCommune": "74314", + "libelleAcheminement": "VULBENS", + "nomCommune": "VULBENS" }, { - "codePostal": "30350", - "codeCommune": "30163", - "libelleAcheminement": "MAURESSARGUES", - "nomCommune": "MAURESSARGUES" + "codePostal": "75002", + "codeCommune": "75102", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 02" }, { - "codePostal": "30340", - "codeCommune": "30165", - "libelleAcheminement": "MEJANNES LES ALES", - "nomCommune": "MEJANNES LES ALES" + "codePostal": "75015", + "codeCommune": "75115", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 15" }, { - "codePostal": "30120", - "codeCommune": "30170", - "libelleAcheminement": "MOLIERES CAVAILLAC", - "nomCommune": "MOLIERES CAVAILLAC" + "codePostal": "75116", + "codeCommune": "75116", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 16" }, { - "codePostal": "30121", - "codeCommune": "30185", - "libelleAcheminement": "MUS", - "nomCommune": "MUS" + "codePostal": "76550", + "codeCommune": "76004", + "libelleAcheminement": "AMBRUMESNIL", + "nomCommune": "AMBRUMESNIL" }, { - "codePostal": "30200", - "codeCommune": "30191", - "libelleAcheminement": "ORSAN", - "nomCommune": "ORSAN" + "codePostal": "76780", + "codeCommune": "76025", + "libelleAcheminement": "ARGUEIL", + "nomCommune": "ARGUEIL" }, { - "codePostal": "30730", - "codeCommune": "30193", - "libelleAcheminement": "PARIGNARGUES", - "nomCommune": "PARIGNARGUES" + "codePostal": "76110", + "codeCommune": "76033", + "libelleAcheminement": "AUBERVILLE LA RENAULT", + "nomCommune": "AUBERVILLE LA RENAULT" }, { - "codePostal": "30120", - "codeCommune": "30199", - "libelleAcheminement": "POMMIERS", - "nomCommune": "POMMIERS" + "codePostal": "76390", + "codeCommune": "76035", + "libelleAcheminement": "AUMALE", + "nomCommune": "AUMALE" }, { - "codePostal": "30210", - "codeCommune": "30212", - "libelleAcheminement": "REMOULINS", - "nomCommune": "REMOULINS" + "codePostal": "76690", + "codeCommune": "76038", + "libelleAcheminement": "AUTHIEUX RATIEVILLE", + "nomCommune": "AUTHIEUX RATIEVILLE" }, { - "codePostal": "30160", - "codeCommune": "30216", - "libelleAcheminement": "ROBIAC ROCHESSADOULE", - "nomCommune": "ROBIAC ROCHESSADOULE" + "codePostal": "76740", + "codeCommune": "76040", + "libelleAcheminement": "AUTIGNY", + "nomCommune": "AUTIGNY" }, { - "codePostal": "30430", - "codeCommune": "30218", - "libelleAcheminement": "ROCHEGUDE", - "nomCommune": "ROCHEGUDE" + "codePostal": "76190", + "codeCommune": "76041", + "libelleAcheminement": "LES HAUTS DE CAUX", + "nomCommune": "LES HAUTS DE CAUX" }, { - "codePostal": "30440", - "codeCommune": "30220", - "libelleAcheminement": "ROQUEDUR", - "nomCommune": "ROQUEDUR" + "codePostal": "76190", + "codeCommune": "76043", + "libelleAcheminement": "AUZEBOSC", + "nomCommune": "AUZEBOSC" }, { - "codePostal": "30150", - "codeCommune": "30221", - "libelleAcheminement": "ROQUEMAURE", - "nomCommune": "ROQUEMAURE" + "codePostal": "76760", + "codeCommune": "76045", + "libelleAcheminement": "AUZOUVILLE L ESNEVAL", + "nomCommune": "AUZOUVILLE L ESNEVAL" }, { - "codePostal": "30340", - "codeCommune": "30223", - "libelleAcheminement": "ROUSSON", - "nomCommune": "ROUSSON" + "codePostal": "76660", + "codeCommune": "76052", + "libelleAcheminement": "BAILLEUL NEUVILLE", + "nomCommune": "BAILLEUL NEUVILLE" }, { - "codePostal": "30500", - "codeCommune": "30237", - "libelleAcheminement": "ST BRES", - "nomCommune": "ST BRES" + "codePostal": "76660", + "codeCommune": "76053", + "libelleAcheminement": "BAILLOLET", + "nomCommune": "BAILLOLET" }, { - "codePostal": "30440", - "codeCommune": "30238", - "libelleAcheminement": "ST BRESSON", - "nomCommune": "ST BRESSON" + "codePostal": "76480", + "codeCommune": "76056", + "libelleAcheminement": "BARDOUVILLE", + "nomCommune": "BARDOUVILLE" }, { - "codePostal": "30760", - "codeCommune": "30242", - "libelleAcheminement": "ST CHRISTOL DE RODIERES", - "nomCommune": "ST CHRISTOL DE RODIERES" + "codePostal": "76850", + "codeCommune": "76062", + "libelleAcheminement": "BEAUMONT LE HARENG", + "nomCommune": "BEAUMONT LE HARENG" }, { - "codePostal": "30870", - "codeCommune": "30245", - "libelleAcheminement": "ST COME ET MARUEJOLS", - "nomCommune": "ST COME ET MARUEJOLS" + "codePostal": "76240", + "codeCommune": "76069", + "libelleAcheminement": "BELBEUF", + "nomCommune": "BELBEUF" }, { - "codePostal": "30500", - "codeCommune": "30247", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "76210", + "codeCommune": "76090", + "libelleAcheminement": "BEUZEVILLE LA GRENIER", + "nomCommune": "BEUZEVILLE LA GRENIER" }, { - "codePostal": "30980", - "codeCommune": "30249", - "libelleAcheminement": "ST DIONISY", - "nomCommune": "ST DIONISY" + "codePostal": "76190", + "codeCommune": "76110", + "libelleAcheminement": "BOIS HIMONT", + "nomCommune": "BOIS HIMONT" }, { - "codePostal": "30800", - "codeCommune": "30258", - "libelleAcheminement": "ST GILLES", - "nomCommune": "ST GILLES" + "codePostal": "76590", + "codeCommune": "76112", + "libelleAcheminement": "LE BOIS ROBERT", + "nomCommune": "LE BOIS ROBERT" }, { - "codePostal": "30610", - "codeCommune": "30265", - "libelleAcheminement": "ST JEAN DE CRIEULON", - "nomCommune": "ST JEAN DE CRIEULON" + "codePostal": "76210", + "codeCommune": "76114", + "libelleAcheminement": "BOLBEC", + "nomCommune": "BOLBEC" }, { - "codePostal": "30960", - "codeCommune": "30268", - "libelleAcheminement": "ST JEAN DE VALERISCLE", - "nomCommune": "ST JEAN DE VALERISCLE" + "codePostal": "76790", + "codeCommune": "76117", + "libelleAcheminement": "BORDEAUX ST CLAIR", + "nomCommune": "BORDEAUX ST CLAIR" }, { - "codePostal": "30140", - "codeCommune": "30270", - "libelleAcheminement": "ST JEAN DU PIN", - "nomCommune": "ST JEAN DU PIN" + "codePostal": "76680", + "codeCommune": "76119", + "libelleAcheminement": "BOSC BERENGER", + "nomCommune": "BOSC BERENGER" }, { - "codePostal": "30220", - "codeCommune": "30276", - "libelleAcheminement": "ST LAURENT D AIGOUZE", - "nomCommune": "ST LAURENT D AIGOUZE" + "codePostal": "76710", + "codeCommune": "76123", + "libelleAcheminement": "BOSC GUERARD ST ADRIEN", + "nomCommune": "BOSC GUERARD ST ADRIEN" }, { - "codePostal": "30330", - "codeCommune": "30279", - "libelleAcheminement": "ST LAURENT LA VERNEDE", - "nomCommune": "ST LAURENT LA VERNEDE" + "codePostal": "76360", + "codeCommune": "76135", + "libelleAcheminement": "BOUVILLE", + "nomCommune": "BOUVILLE" }, { - "codePostal": "30730", - "codeCommune": "30281", - "libelleAcheminement": "ST MAMERT DU GARD", - "nomCommune": "ST MAMERT DU GARD" + "codePostal": "76730", + "codeCommune": "76136", + "libelleAcheminement": "BRACHY", + "nomCommune": "BRACHY" }, { - "codePostal": "30520", - "codeCommune": "30284", - "libelleAcheminement": "ST MARTIN DE VALGALGUES", - "nomCommune": "ST MARTIN DE VALGALGUES" + "codePostal": "76110", + "codeCommune": "76141", + "libelleAcheminement": "BREAUTE", + "nomCommune": "BREAUTE" }, { - "codePostal": "30610", - "codeCommune": "30289", - "libelleAcheminement": "ST NAZAIRE DES GARDIES", - "nomCommune": "ST NAZAIRE DES GARDIES" + "codePostal": "76750", + "codeCommune": "76146", + "libelleAcheminement": "BUCHY", + "nomCommune": "BUCHY" }, { - "codePostal": "30430", - "codeCommune": "30293", - "libelleAcheminement": "ST PRIVAT DE CHAMPCLOS", - "nomCommune": "ST PRIVAT DE CHAMPCLOS" + "codePostal": "76660", + "codeCommune": "76148", + "libelleAcheminement": "BURES EN BRAY", + "nomCommune": "BURES EN BRAY" }, { - "codePostal": "30440", - "codeCommune": "30296", - "libelleAcheminement": "ST ROMAN DE CODIERES", - "nomCommune": "ST ROMAN DE CODIERES" + "codePostal": "76890", + "codeCommune": "76149", + "libelleAcheminement": "BUTOT", + "nomCommune": "BUTOT" }, { - "codePostal": "30250", - "codeCommune": "30306", - "libelleAcheminement": "SALINELLES", - "nomCommune": "SALINELLES" + "codePostal": "76380", + "codeCommune": "76157", + "libelleAcheminement": "CANTELEU", + "nomCommune": "CANTELEU" }, { - "codePostal": "30125", - "codeCommune": "30310", - "libelleAcheminement": "SAUMANE", - "nomCommune": "SAUMANE" + "codePostal": "76490", + "codeCommune": "76164", + "libelleAcheminement": "RIVES EN SEINE", + "nomCommune": "RIVES EN SEINE" }, { - "codePostal": "30440", - "codeCommune": "30325", - "libelleAcheminement": "SUMENE", - "nomCommune": "SUMENE" + "codePostal": "76450", + "codeCommune": "76180", + "libelleAcheminement": "CLEUVILLE", + "nomCommune": "CLEUVILLE" }, { - "codePostal": "30390", - "codeCommune": "30328", - "libelleAcheminement": "THEZIERS", - "nomCommune": "THEZIERS" + "codePostal": "76450", + "codeCommune": "76189", + "libelleAcheminement": "CRASVILLE LA MALLET", + "nomCommune": "CRASVILLE LA MALLET" }, { - "codePostal": "30330", - "codeCommune": "30331", - "libelleAcheminement": "TRESQUES", - "nomCommune": "TRESQUES" + "codePostal": "76590", + "codeCommune": "76197", + "libelleAcheminement": "CRIQUETOT SUR LONGUEVILLE", + "nomCommune": "CRIQUETOT SUR LONGUEVILLE" }, { - "codePostal": "30600", - "codeCommune": "30341", - "libelleAcheminement": "VAUVERT", - "nomCommune": "VAUVERT" + "codePostal": "76680", + "codeCommune": "76200", + "libelleAcheminement": "CRITOT", + "nomCommune": "CRITOT" }, { - "codePostal": "30530", - "codeCommune": "30345", - "libelleAcheminement": "LA VERNAREDE", - "nomCommune": "LA VERNAREDE" + "codePostal": "76590", + "codeCommune": "76205", + "libelleAcheminement": "CROSVILLE SUR SCIE", + "nomCommune": "CROSVILLE SUR SCIE" }, { - "codePostal": "30600", - "codeCommune": "30347", - "libelleAcheminement": "VESTRIC ET CANDIAC", - "nomCommune": "VESTRIC ET CANDIAC" + "codePostal": "76200", + "codeCommune": "76217", + "libelleAcheminement": "DIEPPE", + "nomCommune": "DIEPPE" }, { - "codePostal": "30120", - "codeCommune": "30350", - "libelleAcheminement": "LE VIGAN", - "nomCommune": "LE VIGAN" + "codePostal": "76190", + "codeCommune": "76225", + "libelleAcheminement": "ECRETTEVILLE LES BAONS", + "nomCommune": "ECRETTEVILLE LES BAONS" }, { - "codePostal": "30330", - "codeCommune": "30355", - "libelleAcheminement": "ST PAUL LES FONTS", - "nomCommune": "ST PAUL LES FONTS" + "codePostal": "76390", + "codeCommune": "76233", + "libelleAcheminement": "ELLECOURT", + "nomCommune": "ELLECOURT" }, { - "codePostal": "31230", - "codeCommune": "31001", - "libelleAcheminement": "AGASSAC", - "nomCommune": "AGASSAC" + "codePostal": "76740", + "codeCommune": "76241", + "libelleAcheminement": "ERMENOUVILLE", + "nomCommune": "ERMENOUVILLE" }, { - "codePostal": "31280", - "codeCommune": "31003", - "libelleAcheminement": "AIGREFEUILLE", - "nomCommune": "AIGREFEUILLE" + "codePostal": "76850", + "codeCommune": "76249", + "libelleAcheminement": "ETAIMPUIS", + "nomCommune": "ETAIMPUIS" }, { - "codePostal": "31420", - "codeCommune": "31005", - "libelleAcheminement": "ALAN", - "nomCommune": "ALAN" + "codePostal": "76560", + "codeCommune": "76251", + "libelleAcheminement": "ETALLEVILLE", + "nomCommune": "ETALLEVILLE" }, { - "codePostal": "31230", - "codeCommune": "31007", - "libelleAcheminement": "AMBAX", - "nomCommune": "AMBAX" + "codePostal": "76790", + "codeCommune": "76254", + "libelleAcheminement": "ETRETAT", + "nomCommune": "ETRETAT" }, { - "codePostal": "31440", - "codeCommune": "31017", - "libelleAcheminement": "ARLOS", - "nomCommune": "ARLOS" + "codePostal": "76640", + "codeCommune": "76258", + "libelleAcheminement": "TERRES DE CAUX", + "nomCommune": "TERRES DE CAUX" }, { - "codePostal": "31140", - "codeCommune": "31022", - "libelleAcheminement": "AUCAMVILLE", - "nomCommune": "AUCAMVILLE" + "codePostal": "76410", + "codeCommune": "76282", + "libelleAcheminement": "FRENEUSE", + "nomCommune": "FRENEUSE" }, { - "codePostal": "31320", - "codeCommune": "31025", - "libelleAcheminement": "AUREVILLE", - "nomCommune": "AUREVILLE" + "codePostal": "76850", + "codeCommune": "76284", + "libelleAcheminement": "FRESNAY LE LONG", + "nomCommune": "FRESNAY LE LONG" }, { - "codePostal": "31190", - "codeCommune": "31027", - "libelleAcheminement": "AURIBAIL", - "nomCommune": "AURIBAIL" + "codePostal": "76700", + "codeCommune": "76296", + "libelleAcheminement": "GAINNEVILLE", + "nomCommune": "GAINNEVILLE" }, { - "codePostal": "31420", - "codeCommune": "31028", - "libelleAcheminement": "AURIGNAC", - "nomCommune": "AURIGNAC" + "codePostal": "76220", + "codeCommune": "76297", + "libelleAcheminement": "GANCOURT ST ETIENNE", + "nomCommune": "GANCOURT ST ETIENNE" }, { - "codePostal": "31210", - "codeCommune": "31031", - "libelleAcheminement": "AUSSON", - "nomCommune": "AUSSON" + "codePostal": "76400", + "codeCommune": "76298", + "libelleAcheminement": "GANZEVILLE", + "nomCommune": "GANZEVILLE" }, { - "codePostal": "31290", - "codeCommune": "31037", - "libelleAcheminement": "AVIGNONET LAURAGAIS", - "nomCommune": "AVIGNONET LAURAGAIS" + "codePostal": "76560", + "codeCommune": "76309", + "libelleAcheminement": "GONZEVILLE", + "nomCommune": "GONZEVILLE" }, { - "codePostal": "31510", - "codeCommune": "31045", - "libelleAcheminement": "BARBAZAN", - "nomCommune": "BARBAZAN" + "codePostal": "76430", + "codeCommune": "76314", + "libelleAcheminement": "GRAIMBOUVILLE", + "nomCommune": "GRAIMBOUVILLE" }, { - "codePostal": "31450", - "codeCommune": "31058", - "libelleAcheminement": "BELBEZE DE LAURAGAIS", - "nomCommune": "BELBEZE DE LAURAGAIS" + "codePostal": "76120", + "codeCommune": "76322", + "libelleAcheminement": "LE GRAND QUEVILLY", + "nomCommune": "LE GRAND QUEVILLY" }, { - "codePostal": "31660", - "codeCommune": "31066", - "libelleAcheminement": "BESSIERES", - "nomCommune": "BESSIERES" + "codePostal": "76210", + "codeCommune": "76329", + "libelleAcheminement": "GRUCHET LE VALASSE", + "nomCommune": "GRUCHET LE VALASSE" }, { - "codePostal": "31110", - "codeCommune": "31068", - "libelleAcheminement": "BILLIERE", - "nomCommune": "BILLIERE" + "codePostal": "76890", + "codeCommune": "76335", + "libelleAcheminement": "GUEUTTEVILLE", + "nomCommune": "GUEUTTEVILLE" }, { - "codePostal": "31700", - "codeCommune": "31069", - "libelleAcheminement": "BLAGNAC", - "nomCommune": "BLAGNAC" + "codePostal": "76460", + "codeCommune": "76336", + "libelleAcheminement": "GUEUTTEVILLE LES GRES", + "nomCommune": "GUEUTTEVILLE LES GRES" }, { - "codePostal": "31340", - "codeCommune": "31073", - "libelleAcheminement": "BONDIGOUX", - "nomCommune": "BONDIGOUX" + "codePostal": "76560", + "codeCommune": "76340", + "libelleAcheminement": "HARCANVILLE", + "nomCommune": "HARCANVILLE" }, { - "codePostal": "31590", - "codeCommune": "31074", - "libelleAcheminement": "BONREPOS RIQUET", - "nomCommune": "BONREPOS RIQUET" + "codePostal": "76190", + "codeCommune": "76348", + "libelleAcheminement": "HAUTOT ST SULPICE", + "nomCommune": "HAUTOT ST SULPICE" }, { - "codePostal": "31210", - "codeCommune": "31076", - "libelleAcheminement": "BORDES DE RIVIERE", - "nomCommune": "BORDES DE RIVIERE" + "codePostal": "76550", + "codeCommune": "76349", + "libelleAcheminement": "HAUTOT SUR MER", + "nomCommune": "HAUTOT SUR MER" }, { - "codePostal": "31340", - "codeCommune": "31077", - "libelleAcheminement": "LE BORN", - "nomCommune": "LE BORN" + "codePostal": "76610", + "codeCommune": "76351", + "libelleAcheminement": "LE HAVRE", + "nomCommune": "LE HAVRE" }, { - "codePostal": "31160", - "codeCommune": "31085", - "libelleAcheminement": "BOUTX", - "nomCommune": "BOUTX" + "codePostal": "76780", + "codeCommune": "76352", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "31420", - "codeCommune": "31086", - "libelleAcheminement": "BOUZIN", - "nomCommune": "BOUZIN" + "codePostal": "76740", + "codeCommune": "76353", + "libelleAcheminement": "HEBERVILLE", + "nomCommune": "HEBERVILLE" }, { - "codePostal": "31470", - "codeCommune": "31087", - "libelleAcheminement": "BRAGAYRAC", - "nomCommune": "BRAGAYRAC" + "codePostal": "76560", + "codeCommune": "76355", + "libelleAcheminement": "HERICOURT EN CAUX", + "nomCommune": "HERICOURT EN CAUX" }, { - "codePostal": "31150", - "codeCommune": "31091", - "libelleAcheminement": "BRUGUIERES", - "nomCommune": "BRUGUIERES" + "codePostal": "76780", + "codeCommune": "76358", + "libelleAcheminement": "LE HERON", + "nomCommune": "LE HERON" }, { - "codePostal": "31160", - "codeCommune": "31095", - "libelleAcheminement": "CABANAC CAZAUX", - "nomCommune": "CABANAC CAZAUX" + "codePostal": "76750", + "codeCommune": "76359", + "libelleAcheminement": "HERONCHELLES", + "nomCommune": "HERONCHELLES" }, { - "codePostal": "31460", - "codeCommune": "31105", - "libelleAcheminement": "CARAGOUDES", - "nomCommune": "CARAGOUDES" + "codePostal": "76340", + "codeCommune": "76363", + "libelleAcheminement": "HODENG AU BOSC", + "nomCommune": "HODENG AU BOSC" }, { - "codePostal": "31390", - "codeCommune": "31107", - "libelleAcheminement": "CARBONNE", - "nomCommune": "CARBONNE" + "codePostal": "76770", + "codeCommune": "76366", + "libelleAcheminement": "LE HOULME", + "nomCommune": "LE HOULME" }, { - "codePostal": "31350", - "codeCommune": "31108", - "libelleAcheminement": "CARDEILHAC", - "nomCommune": "CARDEILHAC" + "codePostal": "76690", + "codeCommune": "76369", + "libelleAcheminement": "LA HOUSSAYE BERANGER", + "nomCommune": "LA HOUSSAYE BERANGER" }, { - "codePostal": "31420", - "codeCommune": "31134", - "libelleAcheminement": "CAZENEUVE MONTAUT", - "nomCommune": "CAZENEUVE MONTAUT" + "codePostal": "76630", + "codeCommune": "76371", + "libelleAcheminement": "LES IFS", + "nomCommune": "LES IFS" }, { - "codePostal": "31160", - "codeCommune": "31140", - "libelleAcheminement": "CHEIN DESSUS", - "nomCommune": "CHEIN DESSUS" + "codePostal": "76460", + "codeCommune": "76375", + "libelleAcheminement": "INGOUVILLE", + "nomCommune": "INGOUVILLE" }, { - "codePostal": "31440", - "codeCommune": "31144", - "libelleAcheminement": "CIERP GAUD", - "nomCommune": "CIERP GAUD" + "codePostal": "76480", + "codeCommune": "76378", + "libelleAcheminement": "JUMIEGES", + "nomCommune": "JUMIEGES" }, { - "codePostal": "31450", - "codeCommune": "31162", - "libelleAcheminement": "DONNEVILLE", - "nomCommune": "DONNEVILLE" + "codePostal": "76730", + "codeCommune": "76379", + "libelleAcheminement": "LAMBERVILLE", + "nomCommune": "LAMBERVILLE" }, { - "codePostal": "31280", - "codeCommune": "31163", - "libelleAcheminement": "DREMIL LAFAGE", - "nomCommune": "DREMIL LAFAGE" + "codePostal": "76170", + "codeCommune": "76384", + "libelleAcheminement": "LILLEBONNE", + "nomCommune": "LILLEBONNE" }, { - "codePostal": "31480", - "codeCommune": "31164", - "libelleAcheminement": "DRUDAS", - "nomCommune": "DRUDAS" + "codePostal": "76210", + "codeCommune": "76388", + "libelleAcheminement": "LINTOT", + "nomCommune": "LINTOT" }, { - "codePostal": "31750", - "codeCommune": "31169", - "libelleAcheminement": "ESCALQUENS", - "nomCommune": "ESCALQUENS" + "codePostal": "76660", + "codeCommune": "76392", + "libelleAcheminement": "LONDINIERES", + "nomCommune": "LONDINIERES" }, { - "codePostal": "31440", - "codeCommune": "31176", - "libelleAcheminement": "ESTENOS", - "nomCommune": "ESTENOS" + "codePostal": "76750", + "codeCommune": "76396", + "libelleAcheminement": "LONGUERUE", + "nomCommune": "LONGUERUE" }, { - "codePostal": "31260", - "codeCommune": "31195", - "libelleAcheminement": "FRANCAZAL", - "nomCommune": "FRANCAZAL" + "codePostal": "76590", + "codeCommune": "76405", + "libelleAcheminement": "MANEHOUVILLE", + "nomCommune": "MANEHOUVILLE" }, { - "codePostal": "31360", - "codeCommune": "31198", - "libelleAcheminement": "LE FRECHET", - "nomCommune": "LE FRECHET" + "codePostal": "76110", + "codeCommune": "76408", + "libelleAcheminement": "MANNEVILLE LA GOUPIL", + "nomCommune": "MANNEVILLE LA GOUPIL" }, { - "codePostal": "31510", - "codeCommune": "31200", - "libelleAcheminement": "FRONTIGNAN DE COMMINGES", - "nomCommune": "FRONTIGNAN DE COMMINGES" + "codePostal": "76150", + "codeCommune": "76410", + "libelleAcheminement": "MAROMME", + "nomCommune": "MAROMME" }, { - "codePostal": "31230", - "codeCommune": "31201", - "libelleAcheminement": "FRONTIGNAN SAVES", - "nomCommune": "FRONTIGNAN SAVES" + "codePostal": "76880", + "codeCommune": "76413", + "libelleAcheminement": "MARTIGNY", + "nomCommune": "MARTIGNY" }, { - "codePostal": "31620", - "codeCommune": "31202", - "libelleAcheminement": "FRONTON", - "nomCommune": "FRONTON" + "codePostal": "76370", + "codeCommune": "76414", + "libelleAcheminement": "MARTIN EGLISE", + "nomCommune": "MARTIN EGLISE" }, { - "codePostal": "31150", - "codeCommune": "31205", - "libelleAcheminement": "GAGNAC SUR GARONNE", - "nomCommune": "GAGNAC SUR GARONNE" + "codePostal": "76170", + "codeCommune": "76421", + "libelleAcheminement": "MELAMARE", + "nomCommune": "MELAMARE" }, { - "codePostal": "31110", - "codeCommune": "31221", - "libelleAcheminement": "GOUAUX DE LARBOUST", - "nomCommune": "GOUAUX DE LARBOUST" + "codePostal": "76260", + "codeCommune": "76422", + "libelleAcheminement": "MELLEVILLE", + "nomCommune": "MELLEVILLE" }, { - "codePostal": "31310", - "codeCommune": "31226", - "libelleAcheminement": "GOUZENS", - "nomCommune": "GOUZENS" + "codePostal": "76780", + "codeCommune": "76426", + "libelleAcheminement": "MESANGUEVILLE", + "nomCommune": "MESANGUEVILLE" }, { - "codePostal": "31150", - "codeCommune": "31230", - "libelleAcheminement": "GRATENTOUR", - "nomCommune": "GRATENTOUR" + "codePostal": "76570", + "codeCommune": "76433", + "libelleAcheminement": "MESNIL PANNEVILLE", + "nomCommune": "MESNIL PANNEVILLE" }, { - "codePostal": "31230", - "codeCommune": "31239", - "libelleAcheminement": "L ISLE EN DODON", - "nomCommune": "L ISLE EN DODON" + "codePostal": "76270", + "codeCommune": "76459", + "libelleAcheminement": "NESLE HODENG", + "nomCommune": "NESLE HODENG" }, { - "codePostal": "31510", - "codeCommune": "31255", - "libelleAcheminement": "LABROQUERE", - "nomCommune": "LABROQUERE" + "codePostal": "76680", + "codeCommune": "76461", + "libelleAcheminement": "NEUFBOSC", + "nomCommune": "NEUFBOSC" }, { - "codePostal": "31390", - "codeCommune": "31258", - "libelleAcheminement": "LACAUGNE", - "nomCommune": "LACAUGNE" + "codePostal": "76270", + "codeCommune": "76462", + "libelleAcheminement": "NEUFCHATEL EN BRAY", + "nomCommune": "NEUFCHATEL EN BRAY" }, { - "codePostal": "31870", - "codeCommune": "31263", - "libelleAcheminement": "LAGARDELLE SUR LEZE", - "nomCommune": "LAGARDELLE SUR LEZE" + "codePostal": "76460", + "codeCommune": "76467", + "libelleAcheminement": "NEVILLE", + "nomCommune": "NEVILLE" }, { - "codePostal": "31370", - "codeCommune": "31266", - "libelleAcheminement": "LAHAGE", - "nomCommune": "LAHAGE" + "codePostal": "76640", + "codeCommune": "76470", + "libelleAcheminement": "NORMANVILLE", + "nomCommune": "NORMANVILLE" }, { - "codePostal": "31570", - "codeCommune": "31271", - "libelleAcheminement": "LANTA", - "nomCommune": "LANTA" + "codePostal": "76330", + "codeCommune": "76471", + "libelleAcheminement": "NORVILLE", + "nomCommune": "NORVILLE" }, { - "codePostal": "31480", - "codeCommune": "31275", - "libelleAcheminement": "LAREOLE", - "nomCommune": "LAREOLE" + "codePostal": "76520", + "codeCommune": "76475", + "libelleAcheminement": "FRANQUEVILLE ST PIERRE", + "nomCommune": "FRANQUEVILLE ST PIERRE" }, { - "codePostal": "31530", - "codeCommune": "31277", - "libelleAcheminement": "LASSERRE PRADERE", - "nomCommune": "LASSERRE PRADERE" + "codePostal": "76170", + "codeCommune": "76476", + "libelleAcheminement": "PORT JEROME SUR SEINE", + "nomCommune": "PORT JEROME SUR SEINE" }, { - "codePostal": "31590", - "codeCommune": "31285", - "libelleAcheminement": "LAVALETTE", - "nomCommune": "LAVALETTE" + "codePostal": "76170", + "codeCommune": "76476", + "libelleAcheminement": "PORT JEROME SUR SEINE", + "nomCommune": "PORT JEROME SUR SEINE" }, { - "codePostal": "31440", - "codeCommune": "31290", - "libelleAcheminement": "LEGE", - "nomCommune": "LEGE" + "codePostal": "76170", + "codeCommune": "76476", + "libelleAcheminement": "PORT JEROME SUR SEINE", + "nomCommune": "PORT JEROME SUR SEINE" }, { - "codePostal": "31350", - "codeCommune": "31295", - "libelleAcheminement": "LESPUGUE", - "nomCommune": "LESPUGUE" + "codePostal": "76350", + "codeCommune": "76484", + "libelleAcheminement": "OISSEL", + "nomCommune": "OISSEL" }, { - "codePostal": "31600", - "codeCommune": "31299", - "libelleAcheminement": "LHERM", - "nomCommune": "LHERM" + "codePostal": "76730", + "codeCommune": "76485", + "libelleAcheminement": "OMONVILLE", + "nomCommune": "OMONVILLE" }, { - "codePostal": "31410", - "codeCommune": "31303", - "libelleAcheminement": "LONGAGES", - "nomCommune": "LONGAGES" + "codePostal": "76500", + "codeCommune": "76486", + "libelleAcheminement": "ORIVAL", + "nomCommune": "ORIVAL" }, { - "codePostal": "31510", - "codeCommune": "31308", - "libelleAcheminement": "LUSCAN", - "nomCommune": "LUSCAN" + "codePostal": "76450", + "codeCommune": "76493", + "libelleAcheminement": "PALUEL", + "nomCommune": "PALUEL" }, { - "codePostal": "31430", - "codeCommune": "31309", - "libelleAcheminement": "LUSSAN ADEILHAC", - "nomCommune": "LUSSAN ADEILHAC" + "codePostal": "76210", + "codeCommune": "76494", + "libelleAcheminement": "PARC D ANXTOT", + "nomCommune": "PARC D ANXTOT" }, { - "codePostal": "31360", - "codeCommune": "31314", - "libelleAcheminement": "MANCIOUX", - "nomCommune": "MANCIOUX" + "codePostal": "76750", + "codeCommune": "76502", + "libelleAcheminement": "PIERREVAL", + "nomCommune": "PIERREVAL" }, { - "codePostal": "31440", - "codeCommune": "31316", - "libelleAcheminement": "MARIGNAC", - "nomCommune": "MARIGNAC" + "codePostal": "76860", + "codeCommune": "76515", + "libelleAcheminement": "QUIBERVILLE", + "nomCommune": "QUIBERVILLE" }, { - "codePostal": "31220", - "codeCommune": "31318", - "libelleAcheminement": "MARIGNAC LASPEYRES", - "nomCommune": "MARIGNAC LASPEYRES" + "codePostal": "76340", + "codeCommune": "76528", + "libelleAcheminement": "RIEUX", + "nomCommune": "RIEUX" }, { - "codePostal": "31210", - "codeCommune": "31323", - "libelleAcheminement": "MARTRES DE RIVIERE", - "nomCommune": "MARTRES DE RIVIERE" + "codePostal": "76890", + "codeCommune": "76574", + "libelleAcheminement": "ST DENIS SUR SCIE", + "nomCommune": "ST DENIS SUR SCIE" }, { - "codePostal": "31220", - "codeCommune": "31324", - "libelleAcheminement": "MARTRES TOLOSANE", - "nomCommune": "MARTRES TOLOSANE" + "codePostal": "76590", + "codeCommune": "76582", + "libelleAcheminement": "ST GERMAIN D ETABLES", + "nomCommune": "ST GERMAIN D ETABLES" }, { - "codePostal": "31220", - "codeCommune": "31327", - "libelleAcheminement": "MAURAN", - "nomCommune": "MAURAN" + "codePostal": "76430", + "codeCommune": "76586", + "libelleAcheminement": "ST GILLES DE LA NEUVILLE", + "nomCommune": "ST GILLES DE LA NEUVILLE" }, { - "codePostal": "31190", - "codeCommune": "31332", - "libelleAcheminement": "MAUVAISIN", - "nomCommune": "MAUVAISIN" + "codePostal": "76400", + "codeCommune": "76587", + "libelleAcheminement": "STE HELENE BONDEVILLE", + "nomCommune": "STE HELENE BONDEVILLE" }, { - "codePostal": "31220", - "codeCommune": "31349", - "libelleAcheminement": "MONDAVEZAN", - "nomCommune": "MONDAVEZAN" + "codePostal": "76590", + "codeCommune": "76589", + "libelleAcheminement": "ST HONORE", + "nomCommune": "ST HONORE" }, { - "codePostal": "31700", - "codeCommune": "31351", - "libelleAcheminement": "MONDONVILLE", - "nomCommune": "MONDONVILLE" + "codePostal": "76510", + "codeCommune": "76590", + "libelleAcheminement": "ST JACQUES D ALIERMONT", + "nomCommune": "ST JACQUES D ALIERMONT" }, { - "codePostal": "31310", - "codeCommune": "31365", - "libelleAcheminement": "MONTBRUN BOCAGE", - "nomCommune": "MONTBRUN BOCAGE" + "codePostal": "76170", + "codeCommune": "76592", + "libelleAcheminement": "ST JEAN DE FOLLEVILLE", + "nomCommune": "ST JEAN DE FOLLEVILLE" }, { - "codePostal": "31220", - "codeCommune": "31367", - "libelleAcheminement": "MONTCLAR DE COMMINGES", - "nomCommune": "MONTCLAR DE COMMINGES" + "codePostal": "76210", + "codeCommune": "76593", + "libelleAcheminement": "ST JEAN DE LA NEUVILLE", + "nomCommune": "ST JEAN DE LA NEUVILLE" }, { - "codePostal": "31260", - "codeCommune": "31372", - "libelleAcheminement": "MONTESPAN", - "nomCommune": "MONTESPAN" + "codePostal": "76280", + "codeCommune": "76595", + "libelleAcheminement": "ST JOUIN BRUNEVAL", + "nomCommune": "ST JOUIN BRUNEVAL" }, { - "codePostal": "31410", - "codeCommune": "31379", - "libelleAcheminement": "MONTGAZIN", - "nomCommune": "MONTGAZIN" + "codePostal": "76890", + "codeCommune": "76602", + "libelleAcheminement": "ST MACLOU DE FOLLEVILLE", + "nomCommune": "ST MACLOU DE FOLLEVILLE" }, { - "codePostal": "31380", - "codeCommune": "31383", - "libelleAcheminement": "MONTJOIRE", - "nomCommune": "MONTJOIRE" + "codePostal": "76730", + "codeCommune": "76604", + "libelleAcheminement": "ST MARDS", + "nomCommune": "ST MARDS" }, { - "codePostal": "31380", - "codeCommune": "31388", - "libelleAcheminement": "MONTPITOL", - "nomCommune": "MONTPITOL" + "codePostal": "76370", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "31540", - "codeCommune": "31393", - "libelleAcheminement": "MOURVILLES HAUTES", - "nomCommune": "MOURVILLES HAUTES" + "codePostal": "76370", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "31540", - "codeCommune": "31400", - "libelleAcheminement": "NOGARET", - "nomCommune": "NOGARET" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "31450", - "codeCommune": "31401", - "libelleAcheminement": "NOUEILLES", - "nomCommune": "NOUEILLES" + "codePostal": "76680", + "codeCommune": "76621", + "libelleAcheminement": "ST MARTIN OSMONVILLE", + "nomCommune": "ST MARTIN OSMONVILLE" }, { - "codePostal": "31510", - "codeCommune": "31405", - "libelleAcheminement": "ORE", - "nomCommune": "ORE" + "codePostal": "76730", + "codeCommune": "76629", + "libelleAcheminement": "ST OUEN LE MAUGER", + "nomCommune": "ST OUEN LE MAUGER" }, { - "codePostal": "31380", - "codeCommune": "31407", - "libelleAcheminement": "PAULHAC", - "nomCommune": "PAULHAC" + "codePostal": "76540", + "codeCommune": "76637", + "libelleAcheminement": "ST PIERRE EN PORT", + "nomCommune": "ST PIERRE EN PORT" }, { - "codePostal": "31420", - "codeCommune": "31414", - "libelleAcheminement": "PEYRISSAS", - "nomCommune": "PEYRISSAS" + "codePostal": "76270", + "codeCommune": "76649", + "libelleAcheminement": "ST SAIRE", + "nomCommune": "ST SAIRE" }, { - "codePostal": "31420", - "codeCommune": "31415", - "libelleAcheminement": "PEYROUZET", - "nomCommune": "PEYROUZET" + "codePostal": "76890", + "codeCommune": "76656", + "libelleAcheminement": "ST VICTOR L ABBAYE", + "nomCommune": "ST VICTOR L ABBAYE" }, { - "codePostal": "31220", - "codeCommune": "31422", - "libelleAcheminement": "PLAGNE", - "nomCommune": "PLAGNE" + "codePostal": "76540", + "codeCommune": "76663", + "libelleAcheminement": "SASSETOT LE MAUCONDUIT", + "nomCommune": "SASSETOT LE MAUCONDUIT" }, { - "codePostal": "31210", - "codeCommune": "31426", - "libelleAcheminement": "POINTIS DE RIVIERE", - "nomCommune": "POINTIS DE RIVIERE" + "codePostal": "76110", + "codeCommune": "76669", + "libelleAcheminement": "SAUSSEUZEMARE EN CAUX", + "nomCommune": "SAUSSEUZEMARE EN CAUX" }, { - "codePostal": "31430", - "codeCommune": "31428", - "libelleAcheminement": "POLASTRON", - "nomCommune": "POLASTRON" + "codePostal": "76430", + "codeCommune": "76684", + "libelleAcheminement": "TANCARVILLE", + "nomCommune": "TANCARVILLE" }, { - "codePostal": "31110", - "codeCommune": "31434", - "libelleAcheminement": "POUBEAU", - "nomCommune": "POUBEAU" + "codePostal": "76540", + "codeCommune": "76688", + "libelleAcheminement": "THIERGEVILLE", + "nomCommune": "THIERGEVILLE" }, { - "codePostal": "31370", - "codeCommune": "31435", - "libelleAcheminement": "POUCHARRAMET", - "nomCommune": "POUCHARRAMET" + "codePostal": "76890", + "codeCommune": "76700", + "libelleAcheminement": "TOTES", + "nomCommune": "TOTES" }, { - "codePostal": "31480", - "codeCommune": "31444", - "libelleAcheminement": "PUYSSEGUR", - "nomCommune": "PUYSSEGUR" + "codePostal": "76400", + "codeCommune": "76708", + "libelleAcheminement": "TOUSSAINT", + "nomCommune": "TOUSSAINT" }, { - "codePostal": "31130", - "codeCommune": "31445", - "libelleAcheminement": "QUINT FONSEGRIVES", - "nomCommune": "QUINT FONSEGRIVES" + "codePostal": "76170", + "codeCommune": "76712", + "libelleAcheminement": "LA TRINITE DU MONT", + "nomCommune": "LA TRINITE DU MONT" }, { - "codePostal": "31160", - "codeCommune": "31447", - "libelleAcheminement": "RAZECUEILLE", - "nomCommune": "RAZECUEILLE" + "codePostal": "76430", + "codeCommune": "76714", + "libelleAcheminement": "LES TROIS PIERRES", + "nomCommune": "LES TROIS PIERRES" }, { - "codePostal": "31310", - "codeCommune": "31455", - "libelleAcheminement": "RIEUX VOLVESTRE", - "nomCommune": "RIEUX VOLVESTRE" + "codePostal": "76280", + "codeCommune": "76716", + "libelleAcheminement": "TURRETOT", + "nomCommune": "TURRETOT" }, { - "codePostal": "31380", - "codeCommune": "31459", - "libelleAcheminement": "ROQUESERIERE", - "nomCommune": "ROQUESERIERE" + "codePostal": "76380", + "codeCommune": "76717", + "libelleAcheminement": "VAL DE LA HAYE", + "nomCommune": "VAL DE LA HAYE" }, { - "codePostal": "31160", - "codeCommune": "31461", - "libelleAcheminement": "ROUEDE", - "nomCommune": "ROUEDE" + "codePostal": "76119", + "codeCommune": "76720", + "libelleAcheminement": "VARENGEVILLE SUR MER", + "nomCommune": "VARENGEVILLE SUR MER" }, { - "codePostal": "31370", - "codeCommune": "31464", - "libelleAcheminement": "SABONNERES", - "nomCommune": "SABONNERES" + "codePostal": "76450", + "codeCommune": "76732", + "libelleAcheminement": "BUTOT VENESVILLE", + "nomCommune": "BUTOT VENESVILLE" }, { - "codePostal": "31110", - "codeCommune": "31465", - "libelleAcheminement": "SACCOURVIELLE", - "nomCommune": "SACCOURVIELLE" + "codePostal": "76680", + "codeCommune": "76733", + "libelleAcheminement": "VENTES ST REMY", + "nomCommune": "VENTES ST REMY" }, { - "codePostal": "31510", - "codeCommune": "31472", - "libelleAcheminement": "ST BERTRAND DE COMMINGES", - "nomCommune": "ST BERTRAND DE COMMINGES" + "codePostal": "76390", + "codeCommune": "76739", + "libelleAcheminement": "VIEUX ROUEN SUR BRESLE", + "nomCommune": "VIEUX ROUEN SUR BRESLE" }, { - "codePostal": "31330", - "codeCommune": "31473", - "libelleAcheminement": "ST CEZERT", - "nomCommune": "ST CEZERT" + "codePostal": "76450", + "codeCommune": "76748", + "libelleAcheminement": "VITTEFLEUR", + "nomCommune": "VITTEFLEUR" }, { - "codePostal": "31310", - "codeCommune": "31474", - "libelleAcheminement": "ST CHRISTAUD", - "nomCommune": "ST CHRISTAUD" + "codePostal": "76760", + "codeCommune": "76752", + "libelleAcheminement": "YERVILLE", + "nomCommune": "YERVILLE" }, { - "codePostal": "31290", - "codeCommune": "31485", - "libelleAcheminement": "ST GERMIER", - "nomCommune": "ST GERMIER" + "codePostal": "76690", + "codeCommune": "76756", + "libelleAcheminement": "YQUEBEUF", + "nomCommune": "YQUEBEUF" }, { - "codePostal": "31410", - "codeCommune": "31486", - "libelleAcheminement": "ST HILAIRE", - "nomCommune": "ST HILAIRE" + "codePostal": "77890", + "codeCommune": "77009", + "libelleAcheminement": "ARVILLE", + "nomCommune": "ARVILLE" }, { - "codePostal": "31220", - "codeCommune": "31492", - "libelleAcheminement": "ST JULIEN SUR GARONNE", - "nomCommune": "ST JULIEN SUR GARONNE" + "codePostal": "77720", + "codeCommune": "77010", + "libelleAcheminement": "AUBEPIERRE OZOUER LE REPOS", + "nomCommune": "AUBEPIERRE OZOUER LE REPOS" }, { - "codePostal": "31110", - "codeCommune": "31500", - "libelleAcheminement": "ST MAMET", - "nomCommune": "ST MAMET" + "codePostal": "77210", + "codeCommune": "77014", + "libelleAcheminement": "AVON", + "nomCommune": "AVON" }, { - "codePostal": "31800", - "codeCommune": "31502", - "libelleAcheminement": "ST MARCET", - "nomCommune": "ST MARCET" + "codePostal": "77480", + "codeCommune": "77015", + "libelleAcheminement": "BABY", + "nomCommune": "BABY" }, { - "codePostal": "31220", - "codeCommune": "31505", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "77970", + "codeCommune": "77020", + "libelleAcheminement": "BANNOST VILLEGAGNON", + "nomCommune": "BANNOST VILLEGAGNON" }, { - "codePostal": "31570", - "codeCommune": "31512", - "libelleAcheminement": "ST PIERRE DE LAGES", - "nomCommune": "ST PIERRE DE LAGES" + "codePostal": "77560", + "codeCommune": "77026", + "libelleAcheminement": "BEAUCHERY ST MARTIN", + "nomCommune": "BEAUCHERY ST MARTIN" }, { - "codePostal": "31790", - "codeCommune": "31516", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "77970", + "codeCommune": "77033", + "libelleAcheminement": "BEZALLES", + "nomCommune": "BEZALLES" }, { - "codePostal": "31220", - "codeCommune": "31530", - "libelleAcheminement": "SANA", - "nomCommune": "SANA" + "codePostal": "77115", + "codeCommune": "77034", + "libelleAcheminement": "BLANDY", + "nomCommune": "BLANDY" }, { - "codePostal": "31350", - "codeCommune": "31532", - "libelleAcheminement": "SARREMEZAN", - "nomCommune": "SARREMEZAN" + "codePostal": "77940", + "codeCommune": "77035", + "libelleAcheminement": "BLENNES", + "nomCommune": "BLENNES" }, { - "codePostal": "31460", - "codeCommune": "31534", - "libelleAcheminement": "SAUSSENS", - "nomCommune": "SAUSSENS" + "codePostal": "77750", + "codeCommune": "77043", + "libelleAcheminement": "BOITRON", + "nomCommune": "BOITRON" }, { - "codePostal": "31370", - "codeCommune": "31538", - "libelleAcheminement": "SAVERES", - "nomCommune": "SAVERES" + "codePostal": "77570", + "codeCommune": "77045", + "libelleAcheminement": "BOUGLIGNY", + "nomCommune": "BOUGLIGNY" }, { - "codePostal": "31580", - "codeCommune": "31539", - "libelleAcheminement": "SEDEILHAC", - "nomCommune": "SEDEILHAC" + "codePostal": "77760", + "codeCommune": "77046", + "libelleAcheminement": "BOULANCOURT", + "nomCommune": "BOULANCOURT" }, { - "codePostal": "31510", - "codeCommune": "31542", - "libelleAcheminement": "SEILHAN", - "nomCommune": "SEILHAN" + "codePostal": "77720", + "codeCommune": "77052", + "libelleAcheminement": "BREAU", + "nomCommune": "BREAU" }, { - "codePostal": "31600", - "codeCommune": "31547", - "libelleAcheminement": "SEYSSES", - "nomCommune": "SEYSSES" + "codePostal": "77170", + "codeCommune": "77053", + "libelleAcheminement": "BRIE COMTE ROBERT", + "nomCommune": "BRIE COMTE ROBERT" }, { - "codePostal": "31160", - "codeCommune": "31550", - "libelleAcheminement": "SOUEICH", - "nomCommune": "SOUEICH" + "codePostal": "77600", + "codeCommune": "77058", + "libelleAcheminement": "BUSSY ST GEORGES", + "nomCommune": "BUSSY ST GEORGES" }, { - "codePostal": "31420", - "codeCommune": "31552", - "libelleAcheminement": "TERREBASSE", - "nomCommune": "TERREBASSE" + "codePostal": "77515", + "codeCommune": "77063", + "libelleAcheminement": "LA CELLE SUR MORIN", + "nomCommune": "LA CELLE SUR MORIN" }, { - "codePostal": "31530", - "codeCommune": "31553", - "libelleAcheminement": "THIL", - "nomCommune": "THIL" + "codePostal": "77930", + "codeCommune": "77065", + "libelleAcheminement": "CELY EN BIERE", + "nomCommune": "CELY" }, { - "codePostal": "31000", - "codeCommune": "31555", - "libelleAcheminement": "TOULOUSE", - "nomCommune": "TOULOUSE" + "codePostal": "77650", + "codeCommune": "77076", + "libelleAcheminement": "CHALMAISON", + "nomCommune": "CHALMAISON" }, { - "codePostal": "31210", - "codeCommune": "31556", - "libelleAcheminement": "LES TOURREILLES", - "nomCommune": "LES TOURREILLES" + "codePostal": "77600", + "codeCommune": "77085", + "libelleAcheminement": "CHANTELOUP EN BRIE", + "nomCommune": "CHANTELOUP EN BRIE" }, { - "codePostal": "31110", - "codeCommune": "31559", - "libelleAcheminement": "TREBONS DE LUCHON", - "nomCommune": "TREBONS DE LUCHON" + "codePostal": "77370", + "codeCommune": "77089", + "libelleAcheminement": "LA CHAPELLE RABLAIS", + "nomCommune": "LA CHAPELLE RABLAIS" }, { - "codePostal": "31240", - "codeCommune": "31561", - "libelleAcheminement": "L UNION", - "nomCommune": "L UNION" + "codePostal": "77160", + "codeCommune": "77090", + "libelleAcheminement": "LA CHAPELLE ST SULPICE", + "nomCommune": "LA CHAPELLE ST SULPICE" }, { - "codePostal": "31260", - "codeCommune": "31562", - "libelleAcheminement": "URAU", - "nomCommune": "URAU" + "codePostal": "77410", + "codeCommune": "77095", + "libelleAcheminement": "CHARNY", + "nomCommune": "CHARNY" }, { - "codePostal": "31290", - "codeCommune": "31566", - "libelleAcheminement": "VALLEGUE", - "nomCommune": "VALLEGUE" + "codePostal": "77820", + "codeCommune": "77100", + "libelleAcheminement": "LE CHATELET EN BRIE", + "nomCommune": "LE CHATELET EN BRIE" }, { - "codePostal": "31590", - "codeCommune": "31573", - "libelleAcheminement": "VERFEIL", - "nomCommune": "VERFEIL" + "codePostal": "77160", + "codeCommune": "77109", + "libelleAcheminement": "CHENOISE CUCHARMOY", + "nomCommune": "CHENOISE CUCHARMOY" }, { - "codePostal": "31810", - "codeCommune": "31574", - "libelleAcheminement": "VERNET", - "nomCommune": "VERNET" + "codePostal": "77570", + "codeCommune": "77110", + "libelleAcheminement": "CHENOU", + "nomCommune": "CHENOU" }, { - "codePostal": "31320", - "codeCommune": "31575", - "libelleAcheminement": "VIEILLE TOULOUSE", - "nomCommune": "VIEILLE TOULOUSE" + "codePostal": "77173", + "codeCommune": "77114", + "libelleAcheminement": "CHEVRY COSSIGNY", + "nomCommune": "CHEVRY COSSIGNY" }, { - "codePostal": "31380", - "codeCommune": "31579", - "libelleAcheminement": "VILLARIES", - "nomCommune": "VILLARIES" + "codePostal": "77320", + "codeCommune": "77116", + "libelleAcheminement": "CHOISY EN BRIE", + "nomCommune": "CHOISY EN BRIE" }, { - "codePostal": "31580", - "codeCommune": "31586", - "libelleAcheminement": "VILLENEUVE LECUSSAN", - "nomCommune": "VILLENEUVE LECUSSAN" + "codePostal": "77730", + "codeCommune": "77117", + "libelleAcheminement": "CITRY", + "nomCommune": "CITRY" }, { - "codePostal": "31290", - "codeCommune": "31589", - "libelleAcheminement": "VILLENOUVELLE", - "nomCommune": "VILLENOUVELLE" + "codePostal": "77440", + "codeCommune": "77120", + "libelleAcheminement": "COCHEREL", + "nomCommune": "COCHEREL" }, { - "codePostal": "32360", - "codeCommune": "32003", - "libelleAcheminement": "ANTRAS", - "nomCommune": "ANTRAS" + "codePostal": "77290", + "codeCommune": "77123", + "libelleAcheminement": "COMPANS", + "nomCommune": "COMPANS" }, { - "codePostal": "32230", - "codeCommune": "32009", - "libelleAcheminement": "ARMOUS ET CAU", - "nomCommune": "ARMOUS ET CAU" + "codePostal": "77700", + "codeCommune": "77132", + "libelleAcheminement": "COUPVRAY", + "nomCommune": "COUPVRAY" }, { - "codePostal": "32120", - "codeCommune": "32014", - "libelleAcheminement": "AUGNAX", - "nomCommune": "AUGNAX" + "codePostal": "77560", + "codeCommune": "77134", + "libelleAcheminement": "COURCHAMP", + "nomCommune": "COURCHAMP" }, { - "codePostal": "32170", - "codeCommune": "32020", - "libelleAcheminement": "AUX AUSSAT", - "nomCommune": "AUX AUSSAT" + "codePostal": "77610", + "codeCommune": "77144", + "libelleAcheminement": "CREVECOEUR EN BRIE", + "nomCommune": "CREVECOEUR EN BRIE" }, { - "codePostal": "32800", - "codeCommune": "32025", - "libelleAcheminement": "AYZIEU", - "nomCommune": "AYZIEU" + "codePostal": "77165", + "codeCommune": "77150", + "libelleAcheminement": "CUISY", + "nomCommune": "CUISY" }, { - "codePostal": "32350", - "codeCommune": "32029", - "libelleAcheminement": "BARRAN", - "nomCommune": "BARRAN" + "codePostal": "77440", + "codeCommune": "77157", + "libelleAcheminement": "DHUISY", + "nomCommune": "DHUISY" }, { - "codePostal": "32320", - "codeCommune": "32033", - "libelleAcheminement": "BAZIAN", - "nomCommune": "BAZIAN" + "codePostal": "77130", + "codeCommune": "77161", + "libelleAcheminement": "DORMELLES", + "nomCommune": "DORMELLES" }, { - "codePostal": "32170", - "codeCommune": "32034", - "libelleAcheminement": "BAZUGUES", - "nomCommune": "BAZUGUES" + "codePostal": "77510", + "codeCommune": "77162", + "libelleAcheminement": "DOUE", + "nomCommune": "DOUE" }, { - "codePostal": "32730", - "codeCommune": "32039", - "libelleAcheminement": "BECCAS", - "nomCommune": "BECCAS" + "codePostal": "77184", + "codeCommune": "77169", + "libelleAcheminement": "EMERAINVILLE", + "nomCommune": "EMERAINVILLE" }, { - "codePostal": "32190", - "codeCommune": "32043", - "libelleAcheminement": "BELMONT", - "nomCommune": "BELMONT" + "codePostal": "77133", + "codeCommune": "77179", + "libelleAcheminement": "FERICY", + "nomCommune": "FERICY" }, { - "codePostal": "32480", - "codeCommune": "32047", - "libelleAcheminement": "BERRAC", - "nomCommune": "BERRAC" + "codePostal": "77320", + "codeCommune": "77182", + "libelleAcheminement": "LA FERTE GAUCHER", + "nomCommune": "LA FERTE GAUCHER" }, { - "codePostal": "32310", - "codeCommune": "32052", - "libelleAcheminement": "BEZOLLES", - "nomCommune": "BEZOLLES" + "codePostal": "77610", + "codeCommune": "77192", + "libelleAcheminement": "FONTENAY TRESIGNY", + "nomCommune": "FONTENAY TRESIGNY" }, { - "codePostal": "32140", - "codeCommune": "32053", - "libelleAcheminement": "BEZUES BAJON", - "nomCommune": "BEZUES BAJON" + "codePostal": "77130", + "codeCommune": "77194", + "libelleAcheminement": "FORGES", + "nomCommune": "FORGES" }, { - "codePostal": "32140", - "codeCommune": "32067", - "libelleAcheminement": "CABAS LOUMASSES", - "nomCommune": "CABAS LOUMASSES" + "codePostal": "77690", + "codeCommune": "77202", + "libelleAcheminement": "LA GENEVRAYE", + "nomCommune": "LA GENEVRAYE" }, { - "codePostal": "32380", - "codeCommune": "32068", - "libelleAcheminement": "CADEILHAN", - "nomCommune": "CADEILHAN" + "codePostal": "77120", + "codeCommune": "77206", + "libelleAcheminement": "GIREMOUTIERS", + "nomCommune": "GIREMOUTIERS" }, { - "codePostal": "32400", - "codeCommune": "32070", - "libelleAcheminement": "CAHUZAC SUR ADOUR", - "nomCommune": "CAHUZAC SUR ADOUR" + "codePostal": "77166", + "codeCommune": "77217", + "libelleAcheminement": "GRISY SUISNES", + "nomCommune": "GRISY SUISNES" }, { - "codePostal": "32190", - "codeCommune": "32072", - "libelleAcheminement": "CALLIAN", - "nomCommune": "CALLIAN" + "codePostal": "77166", + "codeCommune": "77217", + "libelleAcheminement": "GRISY SUISNES", + "nomCommune": "GRISY SUISNES" }, { - "codePostal": "32500", - "codeCommune": "32078", - "libelleAcheminement": "CASTELNAU D ARBIEU", - "nomCommune": "CASTELNAU D ARBIEU" + "codePostal": "77580", + "codeCommune": "77219", + "libelleAcheminement": "GUERARD", + "nomCommune": "GUERARD" }, { - "codePostal": "32440", - "codeCommune": "32079", - "libelleAcheminement": "CASTELNAU D AUZAN LABARRERE", - "nomCommune": "CASTELNAU D AUZAN LABARRERE" + "codePostal": "77510", + "codeCommune": "77228", + "libelleAcheminement": "HONDEVILLIERS", + "nomCommune": "HONDEVILLIERS" }, { - "codePostal": "32700", - "codeCommune": "32082", - "libelleAcheminement": "CASTERA LECTOUROIS", - "nomCommune": "CASTERA LECTOUROIS" + "codePostal": "77450", + "codeCommune": "77232", + "libelleAcheminement": "ISLES LES VILLENOY", + "nomCommune": "ISLES LES VILLENOY" }, { - "codePostal": "32190", - "codeCommune": "32088", - "libelleAcheminement": "CASTILLON DEBATS", - "nomCommune": "CASTILLON DEBATS" + "codePostal": "77600", + "codeCommune": "77237", + "libelleAcheminement": "JOSSIGNY", + "nomCommune": "JOSSIGNY" }, { - "codePostal": "32410", - "codeCommune": "32102", - "libelleAcheminement": "CEZAN", - "nomCommune": "CEZAN" + "codePostal": "77650", + "codeCommune": "77242", + "libelleAcheminement": "JUTIGNY", + "nomCommune": "JUTIGNY" }, { - "codePostal": "32600", - "codeCommune": "32105", - "libelleAcheminement": "CLERMONT SAVES", - "nomCommune": "CLERMONT SAVES" + "codePostal": "77148", + "codeCommune": "77245", + "libelleAcheminement": "LAVAL EN BRIE", + "nomCommune": "LAVAL EN BRIE" }, { - "codePostal": "32200", - "codeCommune": "32123", - "libelleAcheminement": "ESCORNEBOEUF", - "nomCommune": "ESCORNEBOEUF" + "codePostal": "77171", + "codeCommune": "77246", + "libelleAcheminement": "LECHELLE", + "nomCommune": "LECHELLE" }, { - "codePostal": "32370", - "codeCommune": "32125", - "libelleAcheminement": "ESPAS", - "nomCommune": "ESPAS" + "codePostal": "77550", + "codeCommune": "77253", + "libelleAcheminement": "LISSY", + "nomCommune": "LISSY" }, { - "codePostal": "32500", - "codeCommune": "32132", - "libelleAcheminement": "FLEURANCE", - "nomCommune": "FLEURANCE" + "codePostal": "77000", + "codeCommune": "77255", + "libelleAcheminement": "LIVRY SUR SEINE", + "nomCommune": "LIVRY SUR SEINE" }, { - "codePostal": "32400", - "codeCommune": "32135", - "libelleAcheminement": "FUSTEROUAU", - "nomCommune": "FUSTEROUAU" + "codePostal": "77440", + "codeCommune": "77257", + "libelleAcheminement": "LIZY SUR OURCQ", + "nomCommune": "LIZY SUR OURCQ" }, { - "codePostal": "32160", - "codeCommune": "32136", - "libelleAcheminement": "GALIAX", - "nomCommune": "GALIAX" + "codePostal": "77710", + "codeCommune": "77261", + "libelleAcheminement": "LORREZ LE BOCAGE PREAUX", + "nomCommune": "LORREZ LE BOCAGE PREAUX" }, { - "codePostal": "32420", - "codeCommune": "32141", - "libelleAcheminement": "GAUJAN", - "nomCommune": "GAUJAN" + "codePostal": "77520", + "codeCommune": "77263", + "libelleAcheminement": "LUISETAINES", + "nomCommune": "LUISETAINES" }, { - "codePostal": "32500", - "codeCommune": "32150", - "libelleAcheminement": "GOUTZ", - "nomCommune": "GOUTZ" + "codePostal": "77540", + "codeCommune": "77264", + "libelleAcheminement": "LUMIGNY NESLES ORMEAUX", + "nomCommune": "LUMIGNY NESLES ORMEAUX" }, { - "codePostal": "32550", - "codeCommune": "32153", - "libelleAcheminement": "HAULIES", - "nomCommune": "HAULIES" + "codePostal": "77700", + "codeCommune": "77268", + "libelleAcheminement": "MAGNY LE HONGRE", + "nomCommune": "MAGNY LE HONGRE" }, { - "codePostal": "32120", - "codeCommune": "32154", - "libelleAcheminement": "HOMPS", - "nomCommune": "HOMPS" + "codePostal": "77950", + "codeCommune": "77269", + "libelleAcheminement": "MAINCY", + "nomCommune": "MAINCY" }, { - "codePostal": "32360", - "codeCommune": "32162", - "libelleAcheminement": "JEGUN", - "nomCommune": "JEGUN" + "codePostal": "77120", + "codeCommune": "77278", + "libelleAcheminement": "MAROLLES EN BRIE", + "nomCommune": "MAROLLES EN BRIE" }, { - "codePostal": "32160", - "codeCommune": "32163", - "libelleAcheminement": "JU BELLOC", - "nomCommune": "JU BELLOC" + "codePostal": "77440", + "codeCommune": "77280", + "libelleAcheminement": "MARY SUR MARNE", + "nomCommune": "MARY SUR MARNE" }, { - "codePostal": "32190", - "codeCommune": "32166", - "libelleAcheminement": "JUSTIAN", - "nomCommune": "JUSTIAN" + "codePostal": "77120", + "codeCommune": "77281", + "libelleAcheminement": "MAUPERTHUIS", + "nomCommune": "MAUPERTHUIS" }, { - "codePostal": "32120", - "codeCommune": "32173", - "libelleAcheminement": "LABRIHE", - "nomCommune": "LABRIHE" + "codePostal": "77145", + "codeCommune": "77283", + "libelleAcheminement": "MAY EN MULTIEN", + "nomCommune": "MAY EN MULTIEN" }, { - "codePostal": "32300", - "codeCommune": "32177", - "libelleAcheminement": "LAGARDE HACHAN", - "nomCommune": "LAGARDE HACHAN" + "codePostal": "77730", + "codeCommune": "77290", + "libelleAcheminement": "MERY SUR MARNE", + "nomCommune": "MERY SUR MARNE" }, { - "codePostal": "32500", - "codeCommune": "32184", - "libelleAcheminement": "LALANNE", - "nomCommune": "LALANNE" + "codePostal": "77950", + "codeCommune": "77295", + "libelleAcheminement": "MOISENAY", + "nomCommune": "MOISENAY" }, { - "codePostal": "32300", - "codeCommune": "32187", - "libelleAcheminement": "LAMAZERE", - "nomCommune": "LAMAZERE" + "codePostal": "77480", + "codeCommune": "77310", + "libelleAcheminement": "MONTIGNY LE GUESDIER", + "nomCommune": "MONTIGNY LE GUESDIER" }, { - "codePostal": "32100", - "codeCommune": "32194", - "libelleAcheminement": "LARRESSINGLE", - "nomCommune": "LARRESSINGLE" + "codePostal": "77690", + "codeCommune": "77312", + "libelleAcheminement": "MONTIGNY SUR LOING", + "nomCommune": "MONTIGNY SUR LOING" }, { - "codePostal": "32290", - "codeCommune": "32219", - "libelleAcheminement": "LUPIAC", - "nomCommune": "LUPIAC" + "codePostal": "77940", + "codeCommune": "77313", + "libelleAcheminement": "MONTMACHOUX", + "nomCommune": "MONTMACHOUX" }, { - "codePostal": "32310", - "codeCommune": "32224", - "libelleAcheminement": "MAIGNAUT TAUZIA", - "nomCommune": "MAIGNAUT TAUZIA" + "codePostal": "77230", + "codeCommune": "77322", + "libelleAcheminement": "MOUSSY LE NEUF", + "nomCommune": "MOUSSY LE NEUF" }, { - "codePostal": "32310", - "codeCommune": "32230", - "libelleAcheminement": "MANSENCOME", - "nomCommune": "MANSENCOME" + "codePostal": "77124", + "codeCommune": "77335", + "libelleAcheminement": "CHAUCONIN NEUFMONTIERS", + "nomCommune": "CHAUCONIN NEUFMONTIERS" }, { - "codePostal": "32230", - "codeCommune": "32233", - "libelleAcheminement": "MARCIAC", - "nomCommune": "MARCIAC" + "codePostal": "77186", + "codeCommune": "77337", + "libelleAcheminement": "NOISIEL", + "nomCommune": "NOISIEL" }, { - "codePostal": "32240", - "codeCommune": "32243", - "libelleAcheminement": "MAULEON D ARMAGNAC", - "nomCommune": "MAULEON D ARMAGNAC" + "codePostal": "77140", + "codeCommune": "77340", + "libelleAcheminement": "NONVILLE", + "nomCommune": "NONVILLE" }, { - "codePostal": "32400", - "codeCommune": "32245", - "libelleAcheminement": "MAUMUSSON LAGUIAN", - "nomCommune": "MAUMUSSON LAGUIAN" + "codePostal": "77178", + "codeCommune": "77344", + "libelleAcheminement": "OISSERY", + "nomCommune": "OISSERY" }, { - "codePostal": "32200", - "codeCommune": "32247", - "libelleAcheminement": "MAURENS", - "nomCommune": "MAURENS" + "codePostal": "77520", + "codeCommune": "77355", + "libelleAcheminement": "PAROY", + "nomCommune": "PAROY" }, { - "codePostal": "32300", - "codeCommune": "32254", - "libelleAcheminement": "MIRAMONT D ASTARAC", - "nomCommune": "MIRAMONT D ASTARAC" + "codePostal": "77165", + "codeCommune": "77364", + "libelleAcheminement": "LE PLESSIS AUX BOIS", + "nomCommune": "LE PLESSIS AUX BOIS" }, { - "codePostal": "32390", - "codeCommune": "32258", - "libelleAcheminement": "MIREPOIX", - "nomCommune": "MIREPOIX" + "codePostal": "77310", + "codeCommune": "77378", + "libelleAcheminement": "PRINGY", + "nomCommune": "PRINGY" }, { - "codePostal": "32600", - "codeCommune": "32262", - "libelleAcheminement": "MONBRUN", - "nomCommune": "MONBRUN" + "codePostal": "77760", + "codeCommune": "77386", + "libelleAcheminement": "RECLOSES", + "nomCommune": "RECLOSES" }, { - "codePostal": "32150", - "codeCommune": "32264", - "libelleAcheminement": "MONCLAR D ARMAGNAC", - "nomCommune": "MONCLAR" + "codePostal": "77160", + "codeCommune": "77391", + "libelleAcheminement": "ROUILLY", + "nomCommune": "ROUILLY" }, { - "codePostal": "32300", - "codeCommune": "32265", - "libelleAcheminement": "MONCLAR SUR LOSSE", - "nomCommune": "MONCLAR SUR LOSSE" + "codePostal": "77260", + "codeCommune": "77401", + "libelleAcheminement": "STE AULDE", + "nomCommune": "STE AULDE" }, { - "codePostal": "32260", - "codeCommune": "32266", - "libelleAcheminement": "MONCORNEIL GRAZAN", - "nomCommune": "MONCORNEIL GRAZAN" + "codePostal": "77750", + "codeCommune": "77405", + "libelleAcheminement": "ST CYR SUR MORIN", + "nomCommune": "ST CYR SUR MORIN" }, { - "codePostal": "32490", - "codeCommune": "32268", - "libelleAcheminement": "MONFERRAN SAVES", - "nomCommune": "MONFERRAN SAVES" + "codePostal": "77130", + "codeCommune": "77409", + "libelleAcheminement": "ST GERMAIN LAVAL", + "nomCommune": "ST GERMAIN LAVAL" }, { - "codePostal": "32220", - "codeCommune": "32270", - "libelleAcheminement": "MONGAUSY", - "nomCommune": "MONGAUSY" + "codePostal": "77320", + "codeCommune": "77421", + "libelleAcheminement": "ST MARS VIEUX MAISONS", + "nomCommune": "ST MARS VIEUX MAISONS" }, { - "codePostal": "32220", - "codeCommune": "32277", - "libelleAcheminement": "MONTAMAT", - "nomCommune": "MONTAMAT" + "codePostal": "77320", + "codeCommune": "77432", + "libelleAcheminement": "ST REMY LA VANNE", + "nomCommune": "ST REMY LA VANNE" }, { - "codePostal": "32320", - "codeCommune": "32285", - "libelleAcheminement": "MONTESQUIOU", - "nomCommune": "MONTESQUIOU" + "codePostal": "77480", + "codeCommune": "77434", + "libelleAcheminement": "ST SAUVEUR LES BRAY", + "nomCommune": "ST SAUVEUR LES BRAY" }, { - "codePostal": "32420", - "codeCommune": "32287", - "libelleAcheminement": "MONTIES", - "nomCommune": "MONTIES" + "codePostal": "77580", + "codeCommune": "77443", + "libelleAcheminement": "SANCY", + "nomCommune": "SANCY" }, { - "codePostal": "32200", - "codeCommune": "32288", - "libelleAcheminement": "MONTIRON", - "nomCommune": "MONTIRON" + "codePostal": "77640", + "codeCommune": "77451", + "libelleAcheminement": "SIGNY SIGNETS", + "nomCommune": "SIGNY SIGNETS" }, { - "codePostal": "32220", - "codeCommune": "32289", - "libelleAcheminement": "MONTPEZAT", - "nomCommune": "MONTPEZAT" + "codePostal": "77650", + "codeCommune": "77456", + "libelleAcheminement": "SOISY BOUY", + "nomCommune": "SOISY BOUY" }, { - "codePostal": "32250", - "codeCommune": "32290", - "libelleAcheminement": "MONTREAL DU GERS", - "nomCommune": "MONTREAL" + "codePostal": "77460", + "codeCommune": "77458", + "libelleAcheminement": "SOUPPES SUR LOING", + "nomCommune": "SOUPPES SUR LOING" }, { - "codePostal": "32190", - "codeCommune": "32294", - "libelleAcheminement": "MOUREDE", - "nomCommune": "MOUREDE" + "codePostal": "77440", + "codeCommune": "77460", + "libelleAcheminement": "TANCROU", + "nomCommune": "TANCROU" }, { - "codePostal": "32110", - "codeCommune": "32296", - "libelleAcheminement": "NOGARO", - "nomCommune": "NOGARO" + "codePostal": "77400", + "codeCommune": "77464", + "libelleAcheminement": "THORIGNY SUR MARNE", + "nomCommune": "THORIGNY SUR MARNE" }, { - "codePostal": "32130", - "codeCommune": "32297", - "libelleAcheminement": "NOILHAN", - "nomCommune": "NOILHAN" + "codePostal": "77163", + "codeCommune": "77466", + "libelleAcheminement": "TIGEAUX", + "nomCommune": "TIGEAUX" }, { - "codePostal": "32350", - "codeCommune": "32301", - "libelleAcheminement": "ORDAN LARROQUE", - "nomCommune": "ORDAN LARROQUE" + "codePostal": "77200", + "codeCommune": "77468", + "libelleAcheminement": "TORCY", + "nomCommune": "TORCY" }, { - "codePostal": "32110", - "codeCommune": "32305", - "libelleAcheminement": "PANJAS", - "nomCommune": "PANJAS" + "codePostal": "77450", + "codeCommune": "77474", + "libelleAcheminement": "TRILBARDOU", + "nomCommune": "TRILBARDOU" }, { - "codePostal": "32160", - "codeCommune": "32319", - "libelleAcheminement": "PLAISANCE", - "nomCommune": "PLAISANCE" + "codePostal": "77440", + "codeCommune": "77476", + "libelleAcheminement": "TROCY EN MULTIEN", + "nomCommune": "TROCY EN MULTIEN" }, { - "codePostal": "32300", - "codeCommune": "32324", - "libelleAcheminement": "PONSAN SOUBIRAN", - "nomCommune": "PONSAN SOUBIRAN" + "codePostal": "77830", + "codeCommune": "77480", + "libelleAcheminement": "VALENCE EN BRIE", + "nomCommune": "VALENCE EN BRIE" }, { - "codePostal": "32390", - "codeCommune": "32329", - "libelleAcheminement": "PRECHAC", - "nomCommune": "PRECHAC" + "codePostal": "77390", + "codeCommune": "77493", + "libelleAcheminement": "VERNEUIL L ETANG", + "nomCommune": "VERNEUIL L ETANG" }, { - "codePostal": "32190", - "codeCommune": "32332", - "libelleAcheminement": "PRENERON", - "nomCommune": "PRENERON" + "codePostal": "77370", + "codeCommune": "77496", + "libelleAcheminement": "VIEUX CHAMPAGNE", + "nomCommune": "VIEUX CHAMPAGNE" }, { - "codePostal": "32600", - "codeCommune": "32334", - "libelleAcheminement": "PUJAUDRAN", - "nomCommune": "PUJAUDRAN" + "codePostal": "77450", + "codeCommune": "77498", + "libelleAcheminement": "VIGNELY", + "nomCommune": "VIGNELY" }, { - "codePostal": "32120", - "codeCommune": "32335", - "libelleAcheminement": "PUYCASQUIER", - "nomCommune": "PUYCASQUIER" + "codePostal": "77174", + "codeCommune": "77508", + "libelleAcheminement": "VILLENEUVE LE COMTE", + "nomCommune": "VILLENEUVE LE COMTE" }, { - "codePostal": "32600", - "codeCommune": "32339", - "libelleAcheminement": "RAZENGUES", - "nomCommune": "RAZENGUES" + "codePostal": "77174", + "codeCommune": "77510", + "libelleAcheminement": "VILLENEUVE ST DENIS", + "nomCommune": "VILLENEUVE ST DENIS" }, { - "codePostal": "32230", - "codeCommune": "32342", - "libelleAcheminement": "RICOURT", - "nomCommune": "RICOURT" + "codePostal": "77270", + "codeCommune": "77514", + "libelleAcheminement": "VILLEPARISIS", + "nomCommune": "VILLEPARISIS" }, { - "codePostal": "32400", - "codeCommune": "32344", - "libelleAcheminement": "RISCLE", - "nomCommune": "RISCLE" + "codePostal": "77760", + "codeCommune": "77520", + "libelleAcheminement": "VILLIERS SOUS GREZ", + "nomCommune": "VILLIERS SOUS GREZ" }, { - "codePostal": "32480", - "codeCommune": "32345", - "libelleAcheminement": "LA ROMIEU", - "nomCommune": "LA ROMIEU" + "codePostal": "77580", + "codeCommune": "77529", + "libelleAcheminement": "VOULANGIS", + "nomCommune": "VOULANGIS" }, { - "codePostal": "32290", - "codeCommune": "32354", - "libelleAcheminement": "SABAZAN", - "nomCommune": "SABAZAN" + "codePostal": "77940", + "codeCommune": "77531", + "libelleAcheminement": "VOULX", + "nomCommune": "VOULX" }, { - "codePostal": "32120", - "codeCommune": "32359", - "libelleAcheminement": "ST ANTONIN", - "nomCommune": "ST ANTONIN" + "codePostal": "77160", + "codeCommune": "77532", + "libelleAcheminement": "VULAINES LES PROVINS", + "nomCommune": "VULAINES LES PROVINS" }, { - "codePostal": "32350", - "codeCommune": "32360", - "libelleAcheminement": "ST ARAILLES", - "nomCommune": "ST ARAILLES" + "codePostal": "77390", + "codeCommune": "77534", + "libelleAcheminement": "YEBLES", + "nomCommune": "YEBLES" }, { - "codePostal": "32140", - "codeCommune": "32365", - "libelleAcheminement": "ST BLANCARD", - "nomCommune": "ST BLANCARD" + "codePostal": "78260", + "codeCommune": "78005", + "libelleAcheminement": "ACHERES", + "nomCommune": "ACHERES" }, { - "codePostal": "32120", - "codeCommune": "32366", - "libelleAcheminement": "ST BRES", - "nomCommune": "ST BRES" + "codePostal": "78240", + "codeCommune": "78007", + "libelleAcheminement": "AIGREMONT", + "nomCommune": "AIGREMONT" }, { - "codePostal": "32300", - "codeCommune": "32389", - "libelleAcheminement": "ST MARTIN", - "nomCommune": "ST MARTIN" + "codePostal": "78570", + "codeCommune": "78015", + "libelleAcheminement": "ANDRESY", + "nomCommune": "ANDRESY" }, { - "codePostal": "32480", - "codeCommune": "32391", - "libelleAcheminement": "ST MARTIN DE GOYNE", - "nomCommune": "ST MARTIN DE GOYNE" + "codePostal": "78790", + "codeCommune": "78020", + "libelleAcheminement": "ARNOUVILLE LES MANTES", + "nomCommune": "ARNOUVILLE LES MANTES" }, { - "codePostal": "32300", - "codeCommune": "32393", - "libelleAcheminement": "ST MAUR", - "nomCommune": "ST MAUR" + "codePostal": "78410", + "codeCommune": "78029", + "libelleAcheminement": "AUBERGENVILLE", + "nomCommune": "AUBERGENVILLE" }, { - "codePostal": "32700", - "codeCommune": "32396", - "libelleAcheminement": "ST MEZARD", - "nomCommune": "ST MEZARD" + "codePostal": "78126", + "codeCommune": "78033", + "libelleAcheminement": "AULNAY SUR MAULDRE", + "nomCommune": "AULNAY SUR MAULDRE" }, { - "codePostal": "32400", - "codeCommune": "32398", - "libelleAcheminement": "ST MONT", - "nomCommune": "ST MONT" + "codePostal": "78770", + "codeCommune": "78036", + "libelleAcheminement": "AUTOUILLET", + "nomCommune": "AUTOUILLET" }, { - "codePostal": "32120", - "codeCommune": "32399", - "libelleAcheminement": "ST ORENS", - "nomCommune": "ST ORENS" + "codePostal": "78870", + "codeCommune": "78043", + "libelleAcheminement": "BAILLY", + "nomCommune": "BAILLY" }, { - "codePostal": "32310", - "codeCommune": "32404", - "libelleAcheminement": "ST PUY", - "nomCommune": "ST PUY" + "codePostal": "78490", + "codeCommune": "78050", + "libelleAcheminement": "BAZOCHES SUR GUYONNE", + "nomCommune": "BAZOCHES SUR GUYONNE" }, { - "codePostal": "32500", - "codeCommune": "32405", - "libelleAcheminement": "STE RADEGONDE", - "nomCommune": "STE RADEGONDE" + "codePostal": "78270", + "codeCommune": "78057", + "libelleAcheminement": "BENNECOURT", + "nomCommune": "BENNECOURT" }, { - "codePostal": "32140", - "codeCommune": "32409", - "libelleAcheminement": "SAMARAN", - "nomCommune": "SAMARAN" + "codePostal": "78650", + "codeCommune": "78062", + "libelleAcheminement": "BEYNES", + "nomCommune": "BEYNES" }, { - "codePostal": "32260", - "codeCommune": "32411", - "libelleAcheminement": "SANSAN", - "nomCommune": "SANSAN" + "codePostal": "78390", + "codeCommune": "78073", + "libelleAcheminement": "BOIS D ARCY", + "nomCommune": "BOIS D ARCY" }, { - "codePostal": "32260", - "codeCommune": "32426", - "libelleAcheminement": "SEISSAN", - "nomCommune": "SEISSAN" + "codePostal": "78530", + "codeCommune": "78117", + "libelleAcheminement": "BUC", + "nomCommune": "BUC" }, { - "codePostal": "32230", - "codeCommune": "32427", - "libelleAcheminement": "SEMBOUES", - "nomCommune": "SEMBOUES" + "codePostal": "78955", + "codeCommune": "78123", + "libelleAcheminement": "CARRIERES SOUS POISSY", + "nomCommune": "CARRIERES SOUS POISSY" }, { - "codePostal": "32120", - "codeCommune": "32431", - "libelleAcheminement": "SEREMPUY", - "nomCommune": "SEREMPUY" + "codePostal": "78420", + "codeCommune": "78124", + "libelleAcheminement": "CARRIERES SUR SEINE", + "nomCommune": "CARRIERES SUR SEINE" }, { - "codePostal": "32260", - "codeCommune": "32438", - "libelleAcheminement": "TACHOIRES", - "nomCommune": "TACHOIRES" + "codePostal": "78170", + "codeCommune": "78126", + "libelleAcheminement": "LA CELLE ST CLOUD", + "nomCommune": "LA CELLE ST CLOUD" }, { - "codePostal": "32120", - "codeCommune": "32441", - "libelleAcheminement": "TAYBOSC", - "nomCommune": "TAYBOSC" + "codePostal": "78720", + "codeCommune": "78128", + "libelleAcheminement": "CERNAY LA VILLE", + "nomCommune": "CERNAY LA VILLE" }, { - "codePostal": "32400", - "codeCommune": "32443", - "libelleAcheminement": "TERMES D ARMAGNAC", - "nomCommune": "TERMES D ARMAGNAC" + "codePostal": "78117", + "codeCommune": "78143", + "libelleAcheminement": "CHATEAUFORT", + "nomCommune": "CHATEAUFORT" }, { - "codePostal": "32230", - "codeCommune": "32450", - "libelleAcheminement": "TOURDUN", - "nomCommune": "TOURDUN" + "codePostal": "78150", + "codeCommune": "78158", + "libelleAcheminement": "LE CHESNAY ROCQUENCOURT", + "nomCommune": "LE CHESNAY ROCQUENCOURT" }, { - "codePostal": "32390", - "codeCommune": "32453", - "libelleAcheminement": "TOURRENQUETS", - "nomCommune": "TOURRENQUETS" + "codePostal": "78121", + "codeCommune": "78189", + "libelleAcheminement": "CRESPIERES", + "nomCommune": "CRESPIERES" }, { - "codePostal": "32500", - "codeCommune": "32457", - "libelleAcheminement": "URDENS", - "nomCommune": "URDENS" + "codePostal": "78720", + "codeCommune": "78193", + "libelleAcheminement": "DAMPIERRE EN YVELINES", + "nomCommune": "DAMPIERRE EN YVELINES" }, { - "codePostal": "32310", - "codeCommune": "32459", - "libelleAcheminement": "VALENCE SUR BAISE", - "nomCommune": "VALENCE SUR BAISE" + "codePostal": "78720", + "codeCommune": "78193", + "libelleAcheminement": "DAMPIERRE EN YVELINES", + "nomCommune": "DAMPIERRE EN YVELINES" }, { - "codePostal": "32720", - "codeCommune": "32460", - "libelleAcheminement": "VERGOIGNAN", - "nomCommune": "VERGOIGNAN" + "codePostal": "78690", + "codeCommune": "78220", + "libelleAcheminement": "LES ESSARTS LE ROI", + "nomCommune": "LES ESSARTS LE ROI" }, { - "codePostal": "32190", - "codeCommune": "32462", - "libelleAcheminement": "VIC FEZENSAC", - "nomCommune": "VIC FEZENSAC" + "codePostal": "78810", + "codeCommune": "78233", + "libelleAcheminement": "FEUCHEROLLES", + "nomCommune": "FEUCHEROLLES" }, { - "codePostal": "32420", - "codeCommune": "32465", - "libelleAcheminement": "VILLEFRANCHE", - "nomCommune": "VILLEFRANCHE" + "codePostal": "78520", + "codeCommune": "78239", + "libelleAcheminement": "FOLLAINVILLE DENNEMONT", + "nomCommune": "FOLLAINVILLE DENNEMONT" }, { - "codePostal": "33230", - "codeCommune": "33001", - "libelleAcheminement": "ABZAC", - "nomCommune": "ABZAC" + "codePostal": "78270", + "codeCommune": "78276", + "libelleAcheminement": "GOMMECOURT", + "nomCommune": "GOMMECOURT" }, { - "codePostal": "33390", - "codeCommune": "33006", - "libelleAcheminement": "ANGLADE", - "nomCommune": "ANGLADE" + "codePostal": "78930", + "codeCommune": "78281", + "libelleAcheminement": "GOUSSONVILLE", + "nomCommune": "GOUSSONVILLE" }, { - "codePostal": "33120", - "codeCommune": "33009", - "libelleAcheminement": "ARCACHON", - "nomCommune": "ARCACHON" + "codePostal": "78280", + "codeCommune": "78297", + "libelleAcheminement": "GUYANCOURT", + "nomCommune": "GUYANCOURT" }, { - "codePostal": "33370", - "codeCommune": "33013", - "libelleAcheminement": "ARTIGUES PRES BORDEAUX", - "nomCommune": "ARTIGUES PRES BORDEAUX" + "codePostal": "78280", + "codeCommune": "78297", + "libelleAcheminement": "GUYANCOURT", + "nomCommune": "GUYANCOURT" }, { - "codePostal": "33240", - "codeCommune": "33018", - "libelleAcheminement": "VAL DE VIRVEE", - "nomCommune": "VAL DE VIRVEE" + "codePostal": "78580", + "codeCommune": "78305", + "libelleAcheminement": "HERBEVILLE", + "nomCommune": "HERBEVILLE" }, { - "codePostal": "33730", - "codeCommune": "33026", - "libelleAcheminement": "BALIZAC", - "nomCommune": "BALIZAC" + "codePostal": "78550", + "codeCommune": "78310", + "libelleAcheminement": "HOUDAN", + "nomCommune": "HOUDAN" }, { - "codePostal": "33340", - "codeCommune": "33038", - "libelleAcheminement": "BEGADAN", - "nomCommune": "BEGADAN" + "codePostal": "78270", + "codeCommune": "78320", + "libelleAcheminement": "NOTRE DAME DE LA MER", + "nomCommune": "NOTRE DAME DE LA MER" }, { - "codePostal": "33130", - "codeCommune": "33039", - "libelleAcheminement": "BEGLES", - "nomCommune": "BEGLES" + "codePostal": "78760", + "codeCommune": "78321", + "libelleAcheminement": "JOUARS PONTCHARTRAIN", + "nomCommune": "JOUARS PONTCHARTRAIN" }, { - "codePostal": "33430", - "codeCommune": "33046", - "libelleAcheminement": "BERNOS BEAULAC", - "nomCommune": "BERNOS BEAULAC" + "codePostal": "78320", + "codeCommune": "78334", + "libelleAcheminement": "LEVIS ST NOM", + "nomCommune": "LEVIS ST NOM" }, { - "codePostal": "33124", - "codeCommune": "33048", - "libelleAcheminement": "BERTHEZ", - "nomCommune": "BERTHEZ" + "codePostal": "78520", + "codeCommune": "78335", + "libelleAcheminement": "LIMAY", + "nomCommune": "LIMAY" }, { - "codePostal": "33380", - "codeCommune": "33051", - "libelleAcheminement": "BIGANOS", - "nomCommune": "BIGANOS" + "codePostal": "78490", + "codeCommune": "78366", + "libelleAcheminement": "MAREIL LE GUYON", + "nomCommune": "MAREIL LE GUYON" }, { - "codePostal": "33210", - "codeCommune": "33060", - "libelleAcheminement": "BOMMES", - "nomCommune": "BOMMES" + "codePostal": "78160", + "codeCommune": "78372", + "libelleAcheminement": "MARLY LE ROI", + "nomCommune": "MARLY LE ROI" }, { - "codePostal": "33200", - "codeCommune": "33063", - "libelleAcheminement": "BORDEAUX", - "nomCommune": "BORDEAUX" + "codePostal": "78490", + "codeCommune": "78398", + "libelleAcheminement": "LES MESNULS", + "nomCommune": "LES MESNULS" }, { - "codePostal": "33270", - "codeCommune": "33065", - "libelleAcheminement": "BOULIAC", - "nomCommune": "BOULIAC" + "codePostal": "78440", + "codeCommune": "78416", + "libelleAcheminement": "MONTALET LE BOIS", + "nomCommune": "MONTALET LE BOIS" }, { - "codePostal": "33124", - "codeCommune": "33072", - "libelleAcheminement": "BRANNENS", - "nomCommune": "BRANNENS" + "codePostal": "78790", + "codeCommune": "78417", + "libelleAcheminement": "MONTCHAUVET", + "nomCommune": "MONTCHAUVET" }, { - "codePostal": "33124", - "codeCommune": "33074", - "libelleAcheminement": "BROUQUEYRAN", - "nomCommune": "BROUQUEYRAN" + "codePostal": "78410", + "codeCommune": "78451", + "libelleAcheminement": "NEZEL", + "nomCommune": "NEZEL" }, { - "codePostal": "33520", - "codeCommune": "33075", - "libelleAcheminement": "BRUGES", - "nomCommune": "BRUGES" + "codePostal": "78200", + "codeCommune": "78484", + "libelleAcheminement": "PERDREAUVILLE", + "nomCommune": "PERDREAUVILLE" }, { - "codePostal": "33410", - "codeCommune": "33081", - "libelleAcheminement": "CADILLAC", - "nomCommune": "CADILLAC" + "codePostal": "78125", + "codeCommune": "78516", + "libelleAcheminement": "RAIZEUX", + "nomCommune": "RAIZEUX" }, { - "codePostal": "33420", - "codeCommune": "33086", - "libelleAcheminement": "CAMIAC ET ST DENIS", - "nomCommune": "CAMIAC ET ST DENIS" + "codePostal": "78790", + "codeCommune": "78565", + "libelleAcheminement": "ST MARTIN DES CHAMPS", + "nomCommune": "ST MARTIN DES CHAMPS" }, { - "codePostal": "33190", - "codeCommune": "33087", - "libelleAcheminement": "CAMIRAN", - "nomCommune": "CAMIRAN" + "codePostal": "78730", + "codeCommune": "78569", + "libelleAcheminement": "STE MESME", + "nomCommune": "STE MESME" }, { - "codePostal": "33550", - "codeCommune": "33093", - "libelleAcheminement": "CAPIAN", - "nomCommune": "CAPIAN" + "codePostal": "78860", + "codeCommune": "78571", + "libelleAcheminement": "ST NOM LA BRETECHE", + "nomCommune": "ST NOM LA BRETECHE" }, { - "codePostal": "33360", - "codeCommune": "33118", - "libelleAcheminement": "CENAC", - "nomCommune": "CENAC" + "codePostal": "78690", + "codeCommune": "78576", + "libelleAcheminement": "ST REMY L HONORE", + "nomCommune": "ST REMY L HONORE" }, { - "codePostal": "33610", - "codeCommune": "33122", - "libelleAcheminement": "CESTAS", - "nomCommune": "CESTAS" + "codePostal": "78850", + "codeCommune": "78615", + "libelleAcheminement": "THIVERVAL GRIGNON", + "nomCommune": "THIVERVAL GRIGNON" }, { - "codePostal": "33350", - "codeCommune": "33127", - "libelleAcheminement": "CIVRAC SUR DORDOGNE", - "nomCommune": "CIVRAC SUR DORDOGNE" + "codePostal": "78510", + "codeCommune": "78624", + "libelleAcheminement": "TRIEL SUR SEINE", + "nomCommune": "TRIEL SUR SEINE" }, { - "codePostal": "33210", - "codeCommune": "33130", - "libelleAcheminement": "COIMERES", - "nomCommune": "COIMERES" + "codePostal": "78480", + "codeCommune": "78642", + "libelleAcheminement": "VERNEUIL SUR SEINE", + "nomCommune": "VERNEUIL SUR SEINE" }, { - "codePostal": "33540", - "codeCommune": "33131", - "libelleAcheminement": "COIRAC", - "nomCommune": "COIRAC" + "codePostal": "78320", + "codeCommune": "78644", + "libelleAcheminement": "LA VERRIERE", + "nomCommune": "LA VERRIERE" }, { - "codePostal": "33760", - "codeCommune": "33135", - "libelleAcheminement": "COURPIAC", - "nomCommune": "COURPIAC" + "codePostal": "78930", + "codeCommune": "78647", + "libelleAcheminement": "VERT", + "nomCommune": "VERT" }, { - "codePostal": "33670", - "codeCommune": "33140", - "libelleAcheminement": "CREON", - "nomCommune": "CREON" + "codePostal": "78490", + "codeCommune": "78653", + "libelleAcheminement": "VICQ", + "nomCommune": "VICQ" }, { - "codePostal": "33460", - "codeCommune": "33146", - "libelleAcheminement": "CUSSAC FORT MEDOC", - "nomCommune": "CUSSAC FORT MEDOC" + "codePostal": "78930", + "codeCommune": "78677", + "libelleAcheminement": "VILLETTE", + "nomCommune": "VILLETTE" }, { - "codePostal": "33420", - "codeCommune": "33147", - "libelleAcheminement": "DAIGNAC", - "nomCommune": "DAIGNAC" + "codePostal": "79210", + "codeCommune": "79009", + "libelleAcheminement": "AMURE", + "nomCommune": "AMURE" }, { - "codePostal": "33580", - "codeCommune": "33150", - "libelleAcheminement": "DIEULIVOL", - "nomCommune": "DIEULIVOL" + "codePostal": "79210", + "codeCommune": "79010", + "libelleAcheminement": "ARCAIS", + "nomCommune": "ARCAIS" }, { - "codePostal": "33320", - "codeCommune": "33162", - "libelleAcheminement": "EYSINES", - "nomCommune": "EYSINES" + "codePostal": "79150", + "codeCommune": "79013", + "libelleAcheminement": "ARGENTONNAY", + "nomCommune": "ARGENTONNAY" }, { - "codePostal": "33760", - "codeCommune": "33163", - "libelleAcheminement": "FALEYRAS", - "nomCommune": "FALEYRAS" + "codePostal": "79290", + "codeCommune": "79014", + "libelleAcheminement": "LORETZ D ARGENTON", + "nomCommune": "LORETZ D ARGENTON" }, { - "codePostal": "33350", - "codeCommune": "33168", - "libelleAcheminement": "FLAUJAGUES", - "nomCommune": "FLAUJAGUES" + "codePostal": "79600", + "codeCommune": "79016", + "libelleAcheminement": "ASSAIS LES JUMEAUX", + "nomCommune": "ASSAIS LES JUMEAUX" }, { - "codePostal": "33190", - "codeCommune": "33169", - "libelleAcheminement": "FLOUDES", - "nomCommune": "FLOUDES" + "codePostal": "79600", + "codeCommune": "79022", + "libelleAcheminement": "AVAILLES THOUARSAIS", + "nomCommune": "AVAILLES THOUARSAIS" }, { - "codePostal": "33540", - "codeCommune": "33189", - "libelleAcheminement": "GORNAC", - "nomCommune": "GORNAC" + "codePostal": "79360", + "codeCommune": "79031", + "libelleAcheminement": "BEAUVOIR SUR NIORT", + "nomCommune": "BEAUVOIR SUR NIORT" }, { - "codePostal": "33170", - "codeCommune": "33192", - "libelleAcheminement": "GRADIGNAN", - "nomCommune": "GRADIGNAN" + "codePostal": "79300", + "codeCommune": "79038", + "libelleAcheminement": "BOISME", + "nomCommune": "BOISME" }, { - "codePostal": "33590", - "codeCommune": "33193", - "libelleAcheminement": "GRAYAN ET L HOPITAL", - "nomCommune": "GRAYAN ET L HOPITAL" + "codePostal": "79800", + "codeCommune": "79042", + "libelleAcheminement": "BOUGON", + "nomCommune": "BOUGON" }, { - "codePostal": "33125", - "codeCommune": "33202", - "libelleAcheminement": "HOSTENS", - "nomCommune": "HOSTENS" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "33190", - "codeCommune": "33204", - "libelleAcheminement": "HURE", - "nomCommune": "HURE" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "33450", - "codeCommune": "33207", - "libelleAcheminement": "IZON", - "nomCommune": "IZON" + "codePostal": "79140", + "codeCommune": "79050", + "libelleAcheminement": "BRETIGNOLLES", + "nomCommune": "BRETIGNOLLES" }, { - "codePostal": "33760", - "codeCommune": "33215", - "libelleAcheminement": "LADAUX", - "nomCommune": "LADAUX" + "codePostal": "79290", + "codeCommune": "79056", + "libelleAcheminement": "BRION PRES THOUET", + "nomCommune": "BRION PRES THOUET" }, { - "codePostal": "33230", - "codeCommune": "33218", - "libelleAcheminement": "LAGORCE", - "nomCommune": "LAGORCE" + "codePostal": "79240", + "codeCommune": "79059", + "libelleAcheminement": "LE BUSSEAU", + "nomCommune": "LE BUSSEAU" }, { - "codePostal": "33240", - "codeCommune": "33219", - "libelleAcheminement": "LA LANDE DE FRONSAC", - "nomCommune": "LA LANDE DE FRONSAC" + "codePostal": "79370", + "codeCommune": "79061", + "libelleAcheminement": "CELLES SUR BELLE", + "nomCommune": "CELLES SUR BELLE" }, { - "codePostal": "33540", - "codeCommune": "33224", - "libelleAcheminement": "LANDERROUET SUR SEGUR", - "nomCommune": "LANDERROUET SUR SEGUR" + "codePostal": "79290", + "codeCommune": "79063", + "libelleAcheminement": "VAL EN VIGNES", + "nomCommune": "VAL EN VIGNES" }, { - "codePostal": "33710", - "codeCommune": "33228", - "libelleAcheminement": "LANSAC", - "nomCommune": "LANSAC" + "codePostal": "79700", + "codeCommune": "79079", + "libelleAcheminement": "MAULEON", + "nomCommune": "MAULEON" }, { - "codePostal": "33950", - "codeCommune": "33236", - "libelleAcheminement": "LEGE CAP FERRET", - "nomCommune": "LEGE CAP FERRET" + "codePostal": "79700", + "codeCommune": "79079", + "libelleAcheminement": "MAULEON", + "nomCommune": "MAULEON" }, { - "codePostal": "33950", - "codeCommune": "33236", - "libelleAcheminement": "LEGE CAP FERRET", - "nomCommune": "LEGE CAP FERRET" + "codePostal": "79200", + "codeCommune": "79080", + "libelleAcheminement": "CHATILLON SUR THOUET", + "nomCommune": "CHATILLON SUR THOUET" }, { - "codePostal": "33210", - "codeCommune": "33237", - "libelleAcheminement": "LEOGEATS", - "nomCommune": "LEOGEATS" + "codePostal": "79110", + "codeCommune": "79083", + "libelleAcheminement": "CHEF BOUTONNE", + "nomCommune": "CHEF BOUTONNE" }, { - "codePostal": "33360", - "codeCommune": "33245", - "libelleAcheminement": "LIGNAN DE BORDEAUX", - "nomCommune": "LIGNAN DE BORDEAUX" + "codePostal": "79110", + "codeCommune": "79083", + "libelleAcheminement": "CHEF BOUTONNE", + "nomCommune": "CHEF BOUTONNE" }, { - "codePostal": "33125", - "codeCommune": "33251", - "libelleAcheminement": "LOUCHATS", - "nomCommune": "LOUCHATS" + "codePostal": "79420", + "codeCommune": "79092", + "libelleAcheminement": "CLAVE", + "nomCommune": "CLAVE" }, { - "codePostal": "33190", - "codeCommune": "33254", - "libelleAcheminement": "LOUPIAC DE LA REOLE", - "nomCommune": "LOUPIAC DE LA REOLE" + "codePostal": "79190", + "codeCommune": "79095", + "libelleAcheminement": "CLUSSAIS LA POMMERAIE", + "nomCommune": "CLUSSAIS LA POMMERAIE" }, { - "codePostal": "33670", - "codeCommune": "33263", - "libelleAcheminement": "MADIRAC", - "nomCommune": "MADIRAC" + "codePostal": "79110", + "codeCommune": "79106", + "libelleAcheminement": "COUTURE D ARGENSON", + "nomCommune": "COUTURE D ARGENSON" }, { - "codePostal": "33460", - "codeCommune": "33268", - "libelleAcheminement": "MARGAUX CANTENAC", - "nomCommune": "MARGAUX CANTENAC" + "codePostal": "79390", + "codeCommune": "79108", + "libelleAcheminement": "DOUX", + "nomCommune": "DOUX" }, { - "codePostal": "33760", - "codeCommune": "33275", - "libelleAcheminement": "MARTRES", - "nomCommune": "MARTRES" + "codePostal": "79410", + "codeCommune": "79109", + "libelleAcheminement": "ECHIRE", + "nomCommune": "ECHIRE" }, { - "codePostal": "33540", - "codeCommune": "33283", - "libelleAcheminement": "MESTERRIEUX", - "nomCommune": "MESTERRIEUX" + "codePostal": "79110", + "codeCommune": "79122", + "libelleAcheminement": "FONTENILLE ST MARTIN ENTRAIGUES", + "nomCommune": "FONTENILLE ST MARTIN D ENTRAIGUES" }, { - "codePostal": "33710", - "codeCommune": "33285", - "libelleAcheminement": "MOMBRIER", - "nomCommune": "MOMBRIER" + "codePostal": "79110", + "codeCommune": "79122", + "libelleAcheminement": "FONTENILLE ST MARTIN ENTRAIGUES", + "nomCommune": "FONTENILLE ST MARTIN D ENTRAIGUES" }, { - "codePostal": "33580", - "codeCommune": "33289", - "libelleAcheminement": "MONSEGUR", - "nomCommune": "MONSEGUR" + "codePostal": "79380", + "codeCommune": "79123", + "libelleAcheminement": "LA FORET SUR SEVRE", + "nomCommune": "LA FORET SUR SEVRE" }, { - "codePostal": "33570", - "codeCommune": "33290", - "libelleAcheminement": "MONTAGNE", - "nomCommune": "MONTAGNE" + "codePostal": "79330", + "codeCommune": "79131", + "libelleAcheminement": "GEAY", + "nomCommune": "GEAY" }, { - "codePostal": "33760", - "codeCommune": "33292", - "libelleAcheminement": "MONTIGNAC", - "nomCommune": "MONTIGNAC" + "codePostal": "79220", + "codeCommune": "79133", + "libelleAcheminement": "GERMOND ROUVRE", + "nomCommune": "GERMOND ROUVRE" }, { - "codePostal": "33420", - "codeCommune": "33298", - "libelleAcheminement": "MOULON", - "nomCommune": "MOULON" + "codePostal": "79190", + "codeCommune": "79136", + "libelleAcheminement": "ALLOINAY", + "nomCommune": "ALLOINAY" }, { - "codePostal": "33730", - "codeCommune": "33307", - "libelleAcheminement": "NOAILLAN", - "nomCommune": "NOAILLAN" + "codePostal": "79110", + "codeCommune": "79140", + "libelleAcheminement": "VALDELAUME", + "nomCommune": "VALDELAUME" }, { - "codePostal": "33113", - "codeCommune": "33310", - "libelleAcheminement": "ORIGNE", - "nomCommune": "ORIGNE" + "codePostal": "79110", + "codeCommune": "79140", + "libelleAcheminement": "VALDELAUME", + "nomCommune": "VALDELAUME" }, { - "codePostal": "33240", - "codeCommune": "33317", - "libelleAcheminement": "PERISSAC", - "nomCommune": "PERISSAC" + "codePostal": "79170", + "codeCommune": "79142", + "libelleAcheminement": "JUILLE", + "nomCommune": "JUILLE" }, { - "codePostal": "33600", - "codeCommune": "33318", - "libelleAcheminement": "PESSAC", - "nomCommune": "PESSAC" + "codePostal": "79200", + "codeCommune": "79145", + "libelleAcheminement": "LAGEON", + "nomCommune": "LAGEON" }, { - "codePostal": "33390", - "codeCommune": "33325", - "libelleAcheminement": "PLASSAC", - "nomCommune": "PLASSAC" + "codePostal": "79240", + "codeCommune": "79147", + "libelleAcheminement": "LARGEASSE", + "nomCommune": "LARGEASSE" }, { - "codePostal": "33730", - "codeCommune": "33336", - "libelleAcheminement": "PRECHAC", - "nomCommune": "PRECHAC" + "codePostal": "79110", + "codeCommune": "79153", + "libelleAcheminement": "LOUBIGNE", + "nomCommune": "LOUBIGNE" }, { - "codePostal": "33210", - "codeCommune": "33337", - "libelleAcheminement": "PREIGNAC", - "nomCommune": "PREIGNAC" + "codePostal": "79190", + "codeCommune": "79163", + "libelleAcheminement": "MAIRE LEVESCAULT", + "nomCommune": "MAIRE LEVESCAULT" }, { - "codePostal": "33210", - "codeCommune": "33343", - "libelleAcheminement": "PUJOLS SUR CIRON", - "nomCommune": "PUJOLS SUR CIRON" + "codePostal": "79600", + "codeCommune": "79165", + "libelleAcheminement": "MAISONTIERS", + "nomCommune": "MAISONTIERS" }, { - "codePostal": "33660", - "codeCommune": "33347", - "libelleAcheminement": "PUYNORMAND", - "nomCommune": "PUYNORMAND" + "codePostal": "79600", + "codeCommune": "79167", + "libelleAcheminement": "MARNES", + "nomCommune": "MARNES" }, { - "codePostal": "33340", - "codeCommune": "33348", - "libelleAcheminement": "QUEYRAC", - "nomCommune": "QUEYRAC" + "codePostal": "79340", + "codeCommune": "79176", + "libelleAcheminement": "MENIGOUTE", + "nomCommune": "MENIGOUTE" }, { - "codePostal": "33190", - "codeCommune": "33352", - "libelleAcheminement": "LA REOLE", - "nomCommune": "LA REOLE" + "codePostal": "79240", + "codeCommune": "79179", + "libelleAcheminement": "MONCOUTANT SUR SEVRE", + "nomCommune": "MONCOUTANT SUR SEVRE" }, { - "codePostal": "33210", - "codeCommune": "33357", - "libelleAcheminement": "ROAILLAN", - "nomCommune": "ROAILLAN" + "codePostal": "79190", + "codeCommune": "79180", + "libelleAcheminement": "MONTALEMBERT", + "nomCommune": "MONTALEMBERT" }, { - "codePostal": "33350", - "codeCommune": "33361", - "libelleAcheminement": "RUCH", - "nomCommune": "RUCH" + "codePostal": "79370", + "codeCommune": "79185", + "libelleAcheminement": "AIGONDIGNE", + "nomCommune": "AIGONDIGNE" }, { - "codePostal": "33141", - "codeCommune": "33364", - "libelleAcheminement": "SAILLANS", - "nomCommune": "SAILLANS" + "codePostal": "79000", + "codeCommune": "79191", + "libelleAcheminement": "NIORT", + "nomCommune": "NIORT" }, { - "codePostal": "33490", - "codeCommune": "33367", - "libelleAcheminement": "ST ANDRE DU BOIS", - "nomCommune": "ST ANDRE DU BOIS" + "codePostal": "79200", + "codeCommune": "79213", + "libelleAcheminement": "POMPAIRE", + "nomCommune": "POMPAIRE" }, { - "codePostal": "33790", - "codeCommune": "33372", - "libelleAcheminement": "ST ANTOINE DU QUEYRET", - "nomCommune": "ST ANTOINE DU QUEYRET" + "codePostal": "79370", + "codeCommune": "79217", + "libelleAcheminement": "PRAILLES LA COUARDE", + "nomCommune": "PRAILLES LA COUARDE" }, { - "codePostal": "33220", - "codeCommune": "33378", - "libelleAcheminement": "ST AVIT ST NAZAIRE", - "nomCommune": "ST AVIT ST NAZAIRE" + "codePostal": "79390", + "codeCommune": "79218", + "libelleAcheminement": "PRESSIGNY", + "nomCommune": "PRESSIGNY" }, { - "codePostal": "33820", - "codeCommune": "33380", - "libelleAcheminement": "VAL DE LIVENNE", - "nomCommune": "VAL DE LIVENNE" + "codePostal": "79210", + "codeCommune": "79220", + "libelleAcheminement": "PRIN DEYRANCON", + "nomCommune": "PRIN DEYRANCON" }, { - "codePostal": "33910", - "codeCommune": "33387", - "libelleAcheminement": "ST CIERS D ABZAC", - "nomCommune": "ST CIERS D ABZAC" + "codePostal": "79420", + "codeCommune": "79225", + "libelleAcheminement": "REFFANNES", + "nomCommune": "REFFANNES" }, { - "codePostal": "33180", - "codeCommune": "33395", - "libelleAcheminement": "ST ESTEPHE", - "nomCommune": "ST ESTEPHE" + "codePostal": "79410", + "codeCommune": "79249", + "libelleAcheminement": "ST GELAIS", + "nomCommune": "ST GELAIS" }, { - "codePostal": "33540", - "codeCommune": "33399", - "libelleAcheminement": "ST FELIX DE FONCAUDE", - "nomCommune": "ST FELIX DE FONCAUDE" + "codePostal": "79210", + "codeCommune": "79254", + "libelleAcheminement": "ST GEORGES DE REX", + "nomCommune": "ST GEORGES DE REX" }, { - "codePostal": "33580", - "codeCommune": "33400", - "libelleAcheminement": "ST FERME", - "nomCommune": "ST FERME" + "codePostal": "79200", + "codeCommune": "79255", + "libelleAcheminement": "ST GERMAIN DE LONGUE CHAUME", + "nomCommune": "ST GERMAIN DE LONGUE CHAUME" }, { - "codePostal": "33760", - "codeCommune": "33409", - "libelleAcheminement": "ST GENIS DU BOIS", - "nomCommune": "ST GENIS DU BOIS" + "codePostal": "79210", + "codeCommune": "79257", + "libelleAcheminement": "ST HILAIRE LA PALUD", + "nomCommune": "ST HILAIRE LA PALUD" }, { - "codePostal": "33920", - "codeCommune": "33416", - "libelleAcheminement": "ST GIRONS D AIGUEVIVES", - "nomCommune": "ST GIRONS D AIGUEVIVES" + "codePostal": "79600", + "codeCommune": "79268", + "libelleAcheminement": "ST LOUP LAMAIRE", + "nomCommune": "ST LOUP LAMAIRE" }, { - "codePostal": "33420", - "codeCommune": "33421", - "libelleAcheminement": "ST JEAN DE BLAIGNAC", - "nomCommune": "ST JEAN DE BLAIGNAC" + "codePostal": "79150", + "codeCommune": "79280", + "libelleAcheminement": "ST MAURICE ETUSSON", + "nomCommune": "ST MAURICE ETUSSON" }, { - "codePostal": "33330", - "codeCommune": "33426", - "libelleAcheminement": "ST LAURENT DES COMBES", - "nomCommune": "ST LAURENT DES COMBES" + "codePostal": "79310", + "codeCommune": "79285", + "libelleAcheminement": "ST PARDOUX SOUTIERS", + "nomCommune": "ST PARDOUX SOUTIERS" }, { - "codePostal": "33540", - "codeCommune": "33427", - "libelleAcheminement": "ST LAURENT DU BOIS", - "nomCommune": "ST LAURENT DU BOIS" + "codePostal": "79500", + "codeCommune": "79295", + "libelleAcheminement": "ST ROMANS LES MELLE", + "nomCommune": "ST ROMANS LES MELLE" }, { - "codePostal": "33190", - "codeCommune": "33428", - "libelleAcheminement": "ST LAURENT DU PLAN", - "nomCommune": "ST LAURENT DU PLAN" + "codePostal": "79500", + "codeCommune": "79301", + "libelleAcheminement": "ST VINCENT LA CHATRE", + "nomCommune": "ST VINCENT LA CHATRE" }, { - "codePostal": "33125", - "codeCommune": "33436", - "libelleAcheminement": "ST MAGNE", - "nomCommune": "ST MAGNE" + "codePostal": "79800", + "codeCommune": "79303", + "libelleAcheminement": "SALLES", + "nomCommune": "SALLES" }, { - "codePostal": "33350", - "codeCommune": "33437", - "libelleAcheminement": "ST MAGNE DE CASTILLON", - "nomCommune": "ST MAGNE DE CASTILLON" + "codePostal": "79000", + "codeCommune": "79308", + "libelleAcheminement": "SCIECQ", + "nomCommune": "SCIECQ" }, { - "codePostal": "33490", - "codeCommune": "33444", - "libelleAcheminement": "ST MARTIN DE SESCAS", - "nomCommune": "ST MARTIN DE SESCAS" + "codePostal": "79170", + "codeCommune": "79312", + "libelleAcheminement": "SELIGNE", + "nomCommune": "SELIGNE" }, { - "codePostal": "33650", - "codeCommune": "33448", - "libelleAcheminement": "ST MEDARD D EYRANS", - "nomCommune": "ST MEDARD D EYRANS" + "codePostal": "79390", + "codeCommune": "79326", + "libelleAcheminement": "THENEZAY", + "nomCommune": "THENEZAY" }, { - "codePostal": "33840", - "codeCommune": "33450", - "libelleAcheminement": "ST MICHEL DE CASTELNAU", - "nomCommune": "ST MICHEL DE CASTELNAU" + "codePostal": "79360", + "codeCommune": "79334", + "libelleAcheminement": "VAL DU MIGNON", + "nomCommune": "VAL DU MIGNON" }, { - "codePostal": "33720", - "codeCommune": "33452", - "libelleAcheminement": "ST MICHEL DE RIEUFRET", - "nomCommune": "ST MICHEL DE RIEUFRET" + "codePostal": "79270", + "codeCommune": "79335", + "libelleAcheminement": "VALLANS", + "nomCommune": "VALLANS" }, { - "codePostal": "33190", - "codeCommune": "33453", - "libelleAcheminement": "ST MICHEL DE LAPUJADE", - "nomCommune": "ST MICHEL DE LAPUJADE" + "codePostal": "79120", + "codeCommune": "79336", + "libelleAcheminement": "VANCAIS", + "nomCommune": "VANCAIS" }, { - "codePostal": "33920", - "codeCommune": "33473", - "libelleAcheminement": "ST SAVIN", - "nomCommune": "ST SAVIN" + "codePostal": "79340", + "codeCommune": "79339", + "libelleAcheminement": "VASLES", + "nomCommune": "VASLES" }, { - "codePostal": "33710", - "codeCommune": "33475", - "libelleAcheminement": "ST SEURIN DE BOURG", - "nomCommune": "ST SEURIN DE BOURG" + "codePostal": "79420", + "codeCommune": "79340", + "libelleAcheminement": "VAUSSEROUX", + "nomCommune": "VAUSSEROUX" }, { - "codePostal": "33190", - "codeCommune": "33479", - "libelleAcheminement": "ST SEVE", - "nomCommune": "ST SEVE" + "codePostal": "79110", + "codeCommune": "79349", + "libelleAcheminement": "VILLEMAIN", + "nomCommune": "VILLEMAIN" }, { - "codePostal": "33710", - "codeCommune": "33500", - "libelleAcheminement": "SAMONAC", - "nomCommune": "SAMONAC" + "codePostal": "79170", + "codeCommune": "79352", + "libelleAcheminement": "VILLIERS SUR CHIZE", + "nomCommune": "VILLIERS SUR CHIZE" }, { - "codePostal": "33650", - "codeCommune": "33501", - "libelleAcheminement": "SAUCATS", - "nomCommune": "SAUCATS" + "codePostal": "79310", + "codeCommune": "79354", + "libelleAcheminement": "VOUHE", + "nomCommune": "VOUHE" }, { - "codePostal": "33920", - "codeCommune": "33502", - "libelleAcheminement": "SAUGON", - "nomCommune": "SAUGON" + "codePostal": "79230", + "codeCommune": "79355", + "libelleAcheminement": "VOUILLE", + "nomCommune": "VOUILLE" }, { - "codePostal": "33680", - "codeCommune": "33503", - "libelleAcheminement": "SAUMOS", - "nomCommune": "SAUMOS" + "codePostal": "79220", + "codeCommune": "79357", + "libelleAcheminement": "XAINTRAY", + "nomCommune": "XAINTRAY" }, { - "codePostal": "33540", - "codeCommune": "33506", - "libelleAcheminement": "SAUVETERRE DE GUYENNE", - "nomCommune": "SAUVETERRE DE GUYENNE" + "codePostal": "80200", + "codeCommune": "80015", + "libelleAcheminement": "AIZECOURT LE HAUT", + "nomCommune": "AIZECOURT LE HAUT" }, { - "codePostal": "33910", - "codeCommune": "33509", - "libelleAcheminement": "SAVIGNAC DE L ISLE", - "nomCommune": "SAVIGNAC DE L ISLE" + "codePostal": "80200", + "codeCommune": "80017", + "libelleAcheminement": "ALLAINES", + "nomCommune": "ALLAINES" }, { - "codePostal": "33690", - "codeCommune": "33512", - "libelleAcheminement": "SIGALENS", - "nomCommune": "SIGALENS" + "codePostal": "80130", + "codeCommune": "80018", + "libelleAcheminement": "ALLENAY", + "nomCommune": "ALLENAY" }, { - "codePostal": "33690", - "codeCommune": "33513", - "libelleAcheminement": "SILLAS", - "nomCommune": "SILLAS" + "codePostal": "80140", + "codeCommune": "80022", + "libelleAcheminement": "ANDAINVILLE", + "nomCommune": "ANDAINVILLE" }, { - "codePostal": "33240", - "codeCommune": "33524", - "libelleAcheminement": "TARNES", - "nomCommune": "TARNES" + "codePostal": "80700", + "codeCommune": "80027", + "libelleAcheminement": "ARMANCOURT", + "nomCommune": "ARMANCOURT" }, { - "codePostal": "33115", - "codeCommune": "33529", - "libelleAcheminement": "LA TESTE DE BUCH", - "nomCommune": "LA TESTE DE BUCH" + "codePostal": "80820", + "codeCommune": "80029", + "libelleAcheminement": "ARREST", + "nomCommune": "ARREST" }, { - "codePostal": "33115", - "codeCommune": "33529", - "libelleAcheminement": "LA TESTE DE BUCH", - "nomCommune": "LA TESTE DE BUCH" + "codePostal": "80110", + "codeCommune": "80035", + "libelleAcheminement": "AUBERCOURT", + "nomCommune": "AUBERCOURT" }, { - "codePostal": "33260", - "codeCommune": "33529", - "libelleAcheminement": "LA TESTE DE BUCH", - "nomCommune": "LA TESTE DE BUCH" + "codePostal": "80110", + "codeCommune": "80037", + "libelleAcheminement": "AUBVILLERS", + "nomCommune": "AUBVILLERS" }, { - "codePostal": "33420", - "codeCommune": "33531", - "libelleAcheminement": "TIZAC DE CURTON", - "nomCommune": "TIZAC DE CURTON" + "codePostal": "80600", + "codeCommune": "80044", + "libelleAcheminement": "AUTHIEULE", + "nomCommune": "AUTHIEULE" }, { - "codePostal": "33620", - "codeCommune": "33532", - "libelleAcheminement": "TIZAC DE LAPOUYADE", - "nomCommune": "TIZAC DE LAPOUYADE" + "codePostal": "80300", + "codeCommune": "80045", + "libelleAcheminement": "AUTHUILLE", + "nomCommune": "AUTHUILLE" }, { - "codePostal": "33730", - "codeCommune": "33537", - "libelleAcheminement": "UZESTE", - "nomCommune": "UZESTE" + "codePostal": "80600", + "codeCommune": "80055", + "libelleAcheminement": "BARLY", + "nomCommune": "BARLY" }, { - "codePostal": "33870", - "codeCommune": "33539", - "libelleAcheminement": "VAYRES", - "nomCommune": "VAYRES" + "codePostal": "80560", + "codeCommune": "80057", + "libelleAcheminement": "BAYENCOURT", + "nomCommune": "BAYENCOURT" }, { - "codePostal": "33490", - "codeCommune": "33543", - "libelleAcheminement": "VERDELAIS", - "nomCommune": "VERDELAIS" + "codePostal": "80600", + "codeCommune": "80070", + "libelleAcheminement": "BEAUQUESNE", + "nomCommune": "BEAUQUESNE" }, { - "codePostal": "33330", - "codeCommune": "33546", - "libelleAcheminement": "VIGNONET", - "nomCommune": "VIGNONET" + "codePostal": "80160", + "codeCommune": "80079", + "libelleAcheminement": "BELLEUSE", + "nomCommune": "BELLEUSE" }, { - "codePostal": "33730", - "codeCommune": "33547", - "libelleAcheminement": "VILLANDRAUT", - "nomCommune": "VILLANDRAUT" + "codePostal": "80290", + "codeCommune": "80083", + "libelleAcheminement": "BERGICOURT", + "nomCommune": "BERGICOURT" }, { - "codePostal": "34300", - "codeCommune": "34003", - "libelleAcheminement": "AGDE", - "nomCommune": "AGDE" + "codePostal": "80620", + "codeCommune": "80089", + "libelleAcheminement": "BERNEUIL", + "nomCommune": "BERNEUIL" }, { - "codePostal": "34210", - "codeCommune": "34006", - "libelleAcheminement": "AIGNE", - "nomCommune": "AIGNE" + "codePostal": "80260", + "codeCommune": "80092", + "libelleAcheminement": "BERTANGLES", + "nomCommune": "BERTANGLES" }, { - "codePostal": "34290", - "codeCommune": "34009", - "libelleAcheminement": "ALIGNAN DU VENT", - "nomCommune": "ALIGNAN DU VENT" + "codePostal": "80610", + "codeCommune": "80100", + "libelleAcheminement": "BETTENCOURT ST OUEN", + "nomCommune": "BETTENCOURT ST OUEN" }, { - "codePostal": "34530", - "codeCommune": "34017", - "libelleAcheminement": "AUMES", - "nomCommune": "AUMES" + "codePostal": "80190", + "codeCommune": "80103", + "libelleAcheminement": "BIARRE", + "nomCommune": "BIARRE" }, { - "codePostal": "34360", - "codeCommune": "34021", - "libelleAcheminement": "BABEAU BOULDOUX", - "nomCommune": "BABEAU BOULDOUX" + "codePostal": "80140", + "codeCommune": "80104", + "libelleAcheminement": "BIENCOURT", + "nomCommune": "BIENCOURT" }, { - "codePostal": "34540", - "codeCommune": "34024", - "libelleAcheminement": "BALARUC LE VIEUX", - "nomCommune": "BALARUC LE VIEUX" + "codePostal": "80230", + "codeCommune": "80110", + "libelleAcheminement": "BOISMONT", + "nomCommune": "BOISMONT" }, { - "codePostal": "34210", - "codeCommune": "34026", - "libelleAcheminement": "BEAUFORT", - "nomCommune": "BEAUFORT" + "codePostal": "80160", + "codeCommune": "80114", + "libelleAcheminement": "LE BOSQUEL", + "nomCommune": "BOSQUEL" }, { - "codePostal": "34230", - "codeCommune": "34029", - "libelleAcheminement": "BELARGA", - "nomCommune": "BELARGA" + "codePostal": "80150", + "codeCommune": "80118", + "libelleAcheminement": "BOUFFLERS", + "nomCommune": "BOUFFLERS" }, { - "codePostal": "34360", - "codeCommune": "34030", - "libelleAcheminement": "BERLOU", - "nomCommune": "BERLOU" + "codePostal": "80130", + "codeCommune": "80124", + "libelleAcheminement": "BOURSEVILLE", + "nomCommune": "BOURSEVILLE" }, { - "codePostal": "34220", - "codeCommune": "34034", - "libelleAcheminement": "BOISSET", - "nomCommune": "BOISSET" + "codePostal": "80580", + "codeCommune": "80135", + "libelleAcheminement": "BRAY LES MAREUIL", + "nomCommune": "BRAY LES MAREUIL" }, { - "codePostal": "34160", - "codeCommune": "34043", - "libelleAcheminement": "BUZIGNARGUES", - "nomCommune": "BUZIGNARGUES" + "codePostal": "80300", + "codeCommune": "80138", + "libelleAcheminement": "BRESLE", + "nomCommune": "BRESLE" }, { - "codePostal": "34330", - "codeCommune": "34046", - "libelleAcheminement": "CAMBON ET SALVERGUES", - "nomCommune": "CAMBON ET SALVERGUES" + "codePostal": "80540", + "codeCommune": "80142", + "libelleAcheminement": "BRIQUEMESNIL FLOXICOURT", + "nomCommune": "BRIQUEMESNIL FLOXICOURT" }, { - "codePostal": "34130", - "codeCommune": "34050", - "libelleAcheminement": "CANDILLARGUES", - "nomCommune": "CANDILLARGUES" + "codePostal": "80132", + "codeCommune": "80147", + "libelleAcheminement": "BUIGNY L ABBE", + "nomCommune": "BUIGNY L ABBE" }, { - "codePostal": "34310", - "codeCommune": "34052", - "libelleAcheminement": "CAPESTANG", - "nomCommune": "CAPESTANG" + "codePostal": "80220", + "codeCommune": "80148", + "libelleAcheminement": "BUIGNY LES GAMACHES", + "nomCommune": "BUIGNY LES GAMACHES" }, { - "codePostal": "34210", - "codeCommune": "34054", - "libelleAcheminement": "CASSAGNOLES", - "nomCommune": "CASSAGNOLES" + "codePostal": "80800", + "codeCommune": "80156", + "libelleAcheminement": "BUSSY LES DAOURS", + "nomCommune": "BUSSY LES DAOURS" }, { - "codePostal": "34610", - "codeCommune": "34055", - "libelleAcheminement": "CASTANET LE HAUT", - "nomCommune": "CASTANET LE HAUT" + "codePostal": "80400", + "codeCommune": "80158", + "libelleAcheminement": "BUVERCHY", + "nomCommune": "BUVERCHY" }, { - "codePostal": "34170", - "codeCommune": "34057", - "libelleAcheminement": "CASTELNAU LE LEZ", - "nomCommune": "CASTELNAU LE LEZ" + "codePostal": "80750", + "codeCommune": "80168", + "libelleAcheminement": "CANDAS", + "nomCommune": "CANDAS" }, { - "codePostal": "34160", - "codeCommune": "34058", - "libelleAcheminement": "CASTRIES", - "nomCommune": "CASTRIES" + "codePostal": "80500", + "codeCommune": "80174", + "libelleAcheminement": "LE CARDONNOIS", + "nomCommune": "LE CARDONNOIS" }, { - "codePostal": "34210", - "codeCommune": "34059", - "libelleAcheminement": "LA CAUNETTE", - "nomCommune": "LA CAUNETTE" + "codePostal": "80200", + "codeCommune": "80177", + "libelleAcheminement": "CARTIGNY", + "nomCommune": "CARTIGNY" }, { - "codePostal": "34380", - "codeCommune": "34060", - "libelleAcheminement": "CAUSSE DE LA SELLE", - "nomCommune": "CAUSSE DE LA SELLE" + "codePostal": "80800", + "codeCommune": "80184", + "libelleAcheminement": "CERISY", + "nomCommune": "CERISY" }, { - "codePostal": "34600", - "codeCommune": "34062", - "libelleAcheminement": "CAUSSINIOJOULS", - "nomCommune": "CAUSSINIOJOULS" + "codePostal": "80210", + "codeCommune": "80190", + "libelleAcheminement": "CHEPY", + "nomCommune": "CHEPY" }, { - "codePostal": "34460", - "codeCommune": "34065", - "libelleAcheminement": "CAZEDARNES", - "nomCommune": "CAZEDARNES" + "codePostal": "80200", + "codeCommune": "80197", + "libelleAcheminement": "CIZANCOURT", + "nomCommune": "CIZANCOURT" }, { - "codePostal": "34370", - "codeCommune": "34069", - "libelleAcheminement": "CAZOULS LES BEZIERS", - "nomCommune": "CAZOULS LES BEZIERS" + "codePostal": "80200", + "codeCommune": "80199", + "libelleAcheminement": "CLERY SUR SOMME", + "nomCommune": "CLERY SUR SOMME" }, { - "codePostal": "34460", - "codeCommune": "34074", - "libelleAcheminement": "CESSENON SUR ORB", - "nomCommune": "CESSENON SUR ORB" + "codePostal": "80300", + "codeCommune": "80206", + "libelleAcheminement": "CONTALMAISON", + "nomCommune": "CONTALMAISON" }, { - "codePostal": "34980", - "codeCommune": "34082", - "libelleAcheminement": "COMBAILLAUX", - "nomCommune": "COMBAILLAUX" + "codePostal": "80370", + "codeCommune": "80208", + "libelleAcheminement": "CONTEVILLE", + "nomCommune": "CONTEVILLE" }, { - "codePostal": "34490", - "codeCommune": "34084", - "libelleAcheminement": "CORNEILHAN", - "nomCommune": "CORNEILHAN" + "codePostal": "80160", + "codeCommune": "80211", + "libelleAcheminement": "CONTY", + "nomCommune": "CONTY" }, { - "codePostal": "34310", - "codeCommune": "34092", - "libelleAcheminement": "CRUZY", - "nomCommune": "CRUZY" + "codePostal": "80800", + "codeCommune": "80212", + "libelleAcheminement": "CORBIE", + "nomCommune": "CORBIE" }, { - "codePostal": "34290", - "codeCommune": "34094", - "libelleAcheminement": "ESPONDEILHAN", - "nomCommune": "ESPONDEILHAN" + "codePostal": "80250", + "codeCommune": "80214", + "libelleAcheminement": "COULLEMELLE", + "nomCommune": "COULLEMELLE" }, { - "codePostal": "34770", - "codeCommune": "34113", - "libelleAcheminement": "GIGEAN", - "nomCommune": "GIGEAN" + "codePostal": "80290", + "codeCommune": "80218", + "libelleAcheminement": "COURCELLES SOUS MOYENCOURT", + "nomCommune": "COURCELLES SOUS MOYENCOURT" }, { - "codePostal": "34800", - "codeCommune": "34124", - "libelleAcheminement": "LACOSTE", - "nomCommune": "LACOSTE" + "codePostal": "80310", + "codeCommune": "80229", + "libelleAcheminement": "CROUY ST PIERRE", + "nomCommune": "CROUY ST PIERRE" }, { - "codePostal": "34130", - "codeCommune": "34127", - "libelleAcheminement": "LANSARGUES", - "nomCommune": "LANSARGUES" + "codePostal": "80700", + "codeCommune": "80233", + "libelleAcheminement": "DANCOURT POPINCOURT", + "nomCommune": "DANCOURT POPINCOURT" }, { - "codePostal": "34970", - "codeCommune": "34129", - "libelleAcheminement": "LATTES", - "nomCommune": "LATTES" + "codePostal": "80200", + "codeCommune": "80240", + "libelleAcheminement": "DOINGT FLAMICOURT", + "nomCommune": "DOINGT" }, { - "codePostal": "34700", - "codeCommune": "34132", - "libelleAcheminement": "LAUROUX", - "nomCommune": "LAUROUX" + "codePostal": "80400", + "codeCommune": "80252", + "libelleAcheminement": "DOUILLY", + "nomCommune": "DOUILLY" }, { - "codePostal": "34120", - "codeCommune": "34136", - "libelleAcheminement": "LEZIGNAN LA CEBE", - "nomCommune": "LEZIGNAN LA CEBE" + "codePostal": "80340", + "codeCommune": "80264", + "libelleAcheminement": "ECLUSIER VAUX", + "nomCommune": "ECLUSIER VAUX" }, { - "codePostal": "34140", - "codeCommune": "34143", - "libelleAcheminement": "LOUPIAN", - "nomCommune": "LOUPIAN" + "codePostal": "80300", + "codeCommune": "80266", + "libelleAcheminement": "ENGLEBELMER", + "nomCommune": "ENGLEBELMER" }, { - "codePostal": "34400", - "codeCommune": "34145", - "libelleAcheminement": "LUNEL", - "nomCommune": "LUNEL" + "codePostal": "80400", + "codeCommune": "80274", + "libelleAcheminement": "EPPEVILLE", + "nomCommune": "EPPEVILLE" }, { - "codePostal": "34590", - "codeCommune": "34151", - "libelleAcheminement": "MARSILLARGUES", - "nomCommune": "MARSILLARGUES" + "codePostal": "80400", + "codeCommune": "80279", + "libelleAcheminement": "ERCHEU", + "nomCommune": "ERCHEU" }, { - "codePostal": "34380", - "codeCommune": "34152", - "libelleAcheminement": "MAS DE LONDRES", - "nomCommune": "MAS DE LONDRES" + "codePostal": "80160", + "codeCommune": "80285", + "libelleAcheminement": "ESSERTAUX", + "nomCommune": "ESSERTAUX" }, { - "codePostal": "34210", - "codeCommune": "34158", - "libelleAcheminement": "MINERVE", - "nomCommune": "MINERVE" + "codePostal": "80230", + "codeCommune": "80287", + "libelleAcheminement": "ESTREBOEUF", + "nomCommune": "ESTREBOEUF" }, { - "codePostal": "34530", - "codeCommune": "34162", - "libelleAcheminement": "MONTAGNAC", - "nomCommune": "MONTAGNAC" + "codePostal": "80150", + "codeCommune": "80290", + "libelleAcheminement": "ESTREES LES CRECY", + "nomCommune": "ESTREES LES CRECY" }, { - "codePostal": "34160", - "codeCommune": "34164", - "libelleAcheminement": "MONTAUD", - "nomCommune": "MONTAUD" + "codePostal": "80340", + "codeCommune": "80295", + "libelleAcheminement": "ETINEHEM MERICOURT", + "nomCommune": "ETINEHEM MERICOURT" }, { - "codePostal": "34070", - "codeCommune": "34172", - "libelleAcheminement": "MONTPELLIER", - "nomCommune": "MONTPELLIER" + "codePostal": "80140", + "codeCommune": "80297", + "libelleAcheminement": "ETREJUST", + "nomCommune": "ETREJUST" }, { - "codePostal": "34570", - "codeCommune": "34179", - "libelleAcheminement": "MURVIEL LES MONTPELLIER", - "nomCommune": "MURVIEL LES MONTPELLIER" + "codePostal": "80290", + "codeCommune": "80301", + "libelleAcheminement": "FAMECHON", + "nomCommune": "FAMECHON" }, { - "codePostal": "34800", - "codeCommune": "34186", - "libelleAcheminement": "OCTON", - "nomCommune": "OCTON" + "codePostal": "80200", + "codeCommune": "80304", + "libelleAcheminement": "FAY", + "nomCommune": "FAY" }, { - "codePostal": "34210", - "codeCommune": "34190", - "libelleAcheminement": "OUPIA", - "nomCommune": "OUPIA" + "codePostal": "80500", + "codeCommune": "80311", + "libelleAcheminement": "FIGNIERES", + "nomCommune": "FIGNIERES" }, { - "codePostal": "34490", - "codeCommune": "34191", - "libelleAcheminement": "PAILHES", - "nomCommune": "PAILHES" + "codePostal": "80160", + "codeCommune": "80315", + "libelleAcheminement": "FLERS SUR NOYE", + "nomCommune": "FLERS SUR NOYE" }, { - "codePostal": "34250", - "codeCommune": "34192", - "libelleAcheminement": "PALAVAS LES FLOTS", - "nomCommune": "PALAVAS LES FLOTS" + "codePostal": "80170", + "codeCommune": "80320", + "libelleAcheminement": "FOLIES", + "nomCommune": "FOLIES" }, { - "codePostal": "34850", - "codeCommune": "34203", - "libelleAcheminement": "PINET", - "nomCommune": "PINET" + "codePostal": "80440", + "codeCommune": "80337", + "libelleAcheminement": "FOUENCAMPS", + "nomCommune": "FOUENCAMPS" }, { - "codePostal": "34310", - "codeCommune": "34206", - "libelleAcheminement": "POILHES", - "nomCommune": "POILHES" + "codePostal": "80800", + "codeCommune": "80338", + "libelleAcheminement": "FOUILLOY", + "nomCommune": "FOUILLOY" }, { - "codePostal": "34230", - "codeCommune": "34215", - "libelleAcheminement": "POUZOLS", - "nomCommune": "POUZOLS" + "codePostal": "80620", + "codeCommune": "80346", + "libelleAcheminement": "FRANQUEVILLE", + "nomCommune": "FRANQUEVILLE" }, { - "codePostal": "34600", - "codeCommune": "34216", - "libelleAcheminement": "LE PRADAL", - "nomCommune": "LE PRADAL" + "codePostal": "80700", + "codeCommune": "80347", + "libelleAcheminement": "FRANSART", + "nomCommune": "FRANSART" }, { - "codePostal": "34360", - "codeCommune": "34218", - "libelleAcheminement": "PRADES SUR VERNAZOBRE", - "nomCommune": "PRADES SUR VERNAZOBRE" + "codePostal": "80130", + "codeCommune": "80368", + "libelleAcheminement": "FRIVILLE ESCARBOTIN", + "nomCommune": "FRIVILLE ESCARBOTIN" }, { - "codePostal": "34700", - "codeCommune": "34220", - "libelleAcheminement": "LE PUECH", - "nomCommune": "LE PUECH" + "codePostal": "80370", + "codeCommune": "80369", + "libelleAcheminement": "FROHEN SUR AUTHIE", + "nomCommune": "FROHEN SUR AUTHIE" }, { - "codePostal": "34230", - "codeCommune": "34222", - "libelleAcheminement": "PUILACHER", - "nomCommune": "PUILACHER" + "codePostal": "80370", + "codeCommune": "80369", + "libelleAcheminement": "FROHEN SUR AUTHIE", + "nomCommune": "FROHEN SUR AUTHIE" }, { - "codePostal": "34620", - "codeCommune": "34225", - "libelleAcheminement": "PUISSERGUIER", - "nomCommune": "PUISSERGUIER" + "codePostal": "80220", + "codeCommune": "80373", + "libelleAcheminement": "GAMACHES", + "nomCommune": "GAMACHES" }, { - "codePostal": "34220", - "codeCommune": "34229", - "libelleAcheminement": "RIOLS", - "nomCommune": "RIOLS" + "codePostal": "80600", + "codeCommune": "80377", + "libelleAcheminement": "GEZAINCOURT", + "nomCommune": "GEZAINCOURT" }, { - "codePostal": "34520", - "codeCommune": "34230", - "libelleAcheminement": "LES RIVES", - "nomCommune": "LES RIVES" + "codePostal": "80440", + "codeCommune": "80379", + "libelleAcheminement": "GLISY", + "nomCommune": "GLISY" }, { - "codePostal": "34460", - "codeCommune": "34232", - "libelleAcheminement": "ROQUEBRUN", - "nomCommune": "ROQUEBRUN" + "codePostal": "80250", + "codeCommune": "80390", + "libelleAcheminement": "GRIVESNES", + "nomCommune": "GRIVESNES" }, { - "codePostal": "34725", - "codeCommune": "34239", - "libelleAcheminement": "ST ANDRE DE SANGONIS", - "nomCommune": "ST ANDRE DE SANGONIS" + "codePostal": "80500", + "codeCommune": "80395", + "libelleAcheminement": "GUERBIGNY", + "nomCommune": "GUERBIGNY" }, { - "codePostal": "34190", - "codeCommune": "34243", - "libelleAcheminement": "ST BAUZILLE DE PUTOIS", - "nomCommune": "ST BAUZILLE DE PUTOIS" + "codePostal": "80440", + "codeCommune": "80405", + "libelleAcheminement": "HAILLES", + "nomCommune": "HAILLES" }, { - "codePostal": "34160", - "codeCommune": "34249", - "libelleAcheminement": "ST DREZERY", - "nomCommune": "ST DREZERY" + "codePostal": "80490", + "codeCommune": "80406", + "libelleAcheminement": "HALLENCOURT", + "nomCommune": "HALLENCOURT" }, { - "codePostal": "34700", - "codeCommune": "34251", - "libelleAcheminement": "ST ETIENNE DE GOURGAS", - "nomCommune": "ST ETIENNE DE GOURGAS" + "codePostal": "80310", + "codeCommune": "80416", + "libelleAcheminement": "HANGEST SUR SOMME", + "nomCommune": "HANGEST SUR SOMME" }, { - "codePostal": "34680", - "codeCommune": "34259", - "libelleAcheminement": "ST GEORGES D ORQUES", - "nomCommune": "ST GEORGES D ORQUES" + "codePostal": "80240", + "codeCommune": "80434", + "libelleAcheminement": "HERVILLY", + "nomCommune": "HERVILLY" }, { - "codePostal": "34150", - "codeCommune": "34261", - "libelleAcheminement": "ST GUILHEM LE DESERT", - "nomCommune": "ST GUILHEM LE DESERT" + "codePostal": "80290", + "codeCommune": "80436", + "libelleAcheminement": "HESCAMPS", + "nomCommune": "HESCAMPS" }, { - "codePostal": "34725", - "codeCommune": "34262", - "libelleAcheminement": "ST GUIRAUD", - "nomCommune": "ST GUIRAUD" + "codePostal": "80400", + "codeCommune": "80442", + "libelleAcheminement": "HOMBLEUX", + "nomCommune": "HOMBLEUX" }, { - "codePostal": "34380", - "codeCommune": "34264", - "libelleAcheminement": "ST JEAN DE BUEGES", - "nomCommune": "ST JEAN DE BUEGES" + "codePostal": "80640", + "codeCommune": "80443", + "libelleAcheminement": "HORNOY LE BOURG", + "nomCommune": "HORNOY LE BOURG" }, { - "codePostal": "34150", - "codeCommune": "34267", - "libelleAcheminement": "ST JEAN DE FOS", - "nomCommune": "ST JEAN DE FOS" + "codePostal": "80640", + "codeCommune": "80443", + "libelleAcheminement": "HORNOY LE BOURG", + "nomCommune": "HORNOY LE BOURG" }, { - "codePostal": "34390", - "codeCommune": "34271", - "libelleAcheminement": "ST JULIEN", - "nomCommune": "ST JULIEN" + "codePostal": "80640", + "codeCommune": "80443", + "libelleAcheminement": "HORNOY LE BOURG", + "nomCommune": "HORNOY LE BOURG" }, { - "codePostal": "34380", - "codeCommune": "34274", - "libelleAcheminement": "ST MARTIN DE LONDRES", - "nomCommune": "ST MARTIN DE LONDRES" + "codePostal": "80600", + "codeCommune": "80445", + "libelleAcheminement": "HUMBERCOURT", + "nomCommune": "HUMBERCOURT" }, { - "codePostal": "34230", - "codeCommune": "34281", - "libelleAcheminement": "ST PARGOIRE", - "nomCommune": "ST PARGOIRE" + "codePostal": "80140", + "codeCommune": "80446", + "libelleAcheminement": "HUPPY", + "nomCommune": "HUPPY" }, { - "codePostal": "34160", - "codeCommune": "34296", - "libelleAcheminement": "SAUSSINES", - "nomCommune": "SAUSSINES" + "codePostal": "80430", + "codeCommune": "80456", + "libelleAcheminement": "LAFRESGUIMONT ST MARTIN", + "nomCommune": "LAFRESGUIMONT ST MARTIN" }, { - "codePostal": "34290", - "codeCommune": "34300", - "libelleAcheminement": "SERVIAN", - "nomCommune": "SERVIAN" + "codePostal": "80270", + "codeCommune": "80459", + "libelleAcheminement": "LALEU", + "nomCommune": "LALEU" }, { - "codePostal": "34520", - "codeCommune": "34303", - "libelleAcheminement": "SORBS", - "nomCommune": "SORBS" + "codePostal": "80290", + "codeCommune": "80460", + "libelleAcheminement": "LAMARONDE", + "nomCommune": "LAMARONDE" }, { - "codePostal": "34600", - "codeCommune": "34308", - "libelleAcheminement": "TAUSSAC LA BILLIERE", - "nomCommune": "TAUSSAC LA BILLIERE" + "codePostal": "80450", + "codeCommune": "80461", + "libelleAcheminement": "LAMOTTE BREBIERE", + "nomCommune": "LAMOTTE BREBIERE" }, { - "codePostal": "34260", - "codeCommune": "34312", - "libelleAcheminement": "LA TOUR SUR ORB", - "nomCommune": "LA TOUR SUR ORB" + "codePostal": "80700", + "codeCommune": "80467", + "libelleAcheminement": "LAUCOURT", + "nomCommune": "LAUCOURT" }, { - "codePostal": "34520", - "codeCommune": "34317", - "libelleAcheminement": "LA VACQUERIE ST MARTIN CASTRIES", - "nomCommune": "LA VACQUERIE ET ST MARTIN DE CASTRIES" + "codePostal": "80360", + "codeCommune": "80472", + "libelleAcheminement": "LESBOEUFS", + "nomCommune": "LESBOEUFS" }, { - "codePostal": "34570", - "codeCommune": "34320", - "libelleAcheminement": "VAILHAUQUES", - "nomCommune": "VAILHAUQUES" + "codePostal": "80580", + "codeCommune": "80476", + "libelleAcheminement": "LIERCOURT", + "nomCommune": "LIERCOURT" }, { - "codePostal": "34130", - "codeCommune": "34321", - "libelleAcheminement": "VALERGUES", - "nomCommune": "VALERGUES" + "codePostal": "80240", + "codeCommune": "80487", + "libelleAcheminement": "LONGAVESNES", + "nomCommune": "LONGAVESNES" }, { - "codePostal": "34350", - "codeCommune": "34329", - "libelleAcheminement": "VENDRES", - "nomCommune": "VENDRES" + "codePostal": "80360", + "codeCommune": "80490", + "libelleAcheminement": "LONGUEVAL", + "nomCommune": "LONGUEVAL" }, { - "codePostal": "34450", - "codeCommune": "34332", - "libelleAcheminement": "VIAS", - "nomCommune": "VIAS" + "codePostal": "80250", + "codeCommune": "80494", + "libelleAcheminement": "LOUVRECHY", + "nomCommune": "LOUVRECHY" }, { - "codePostal": "34390", - "codeCommune": "34334", - "libelleAcheminement": "VIEUSSAN", - "nomCommune": "VIEUSSAN" + "codePostal": "80600", + "codeCommune": "80495", + "libelleAcheminement": "LUCHEUX", + "nomCommune": "LUCHEUX" }, { - "codePostal": "34750", - "codeCommune": "34337", - "libelleAcheminement": "VILLENEUVE LES MAGUELONE", - "nomCommune": "VILLENEUVE LES MAGUELONE" + "codePostal": "80132", + "codeCommune": "80512", + "libelleAcheminement": "MAREUIL CAUBERT", + "nomCommune": "MAREUIL CAUBERT" }, { - "codePostal": "34400", - "codeCommune": "34340", - "libelleAcheminement": "VILLETELLE", - "nomCommune": "VILLETELLE" + "codePostal": "80560", + "codeCommune": "80514", + "libelleAcheminement": "MARIEUX", + "nomCommune": "MARIEUX" }, { - "codePostal": "34380", - "codeCommune": "34342", - "libelleAcheminement": "VIOLS EN LAVAL", - "nomCommune": "VIOLS EN LAVAL" + "codePostal": "80170", + "codeCommune": "80520", + "libelleAcheminement": "MAUCOURT", + "nomCommune": "MAUCOURT" }, { - "codePostal": "35690", - "codeCommune": "35001", - "libelleAcheminement": "ACIGNE", - "nomCommune": "ACIGNE" + "codePostal": "80170", + "codeCommune": "80524", + "libelleAcheminement": "MEHARICOURT", + "nomCommune": "MEHARICOURT" }, { - "codePostal": "35460", - "codeCommune": "35004", - "libelleAcheminement": "VAL COUESNON", - "nomCommune": "VAL COUESNON" + "codePostal": "80500", + "codeCommune": "80541", + "libelleAcheminement": "MESNIL ST GEORGES", + "nomCommune": "MESNIL ST GEORGES" }, { - "codePostal": "35130", - "codeCommune": "35005", - "libelleAcheminement": "ARBRISSEL", - "nomCommune": "ARBRISSEL" + "codePostal": "80600", + "codeCommune": "80544", + "libelleAcheminement": "MEZEROLLES", + "nomCommune": "MEZEROLLES" }, { - "codePostal": "35580", - "codeCommune": "35016", - "libelleAcheminement": "BAULON", - "nomCommune": "BAULON" + "codePostal": "80300", + "codeCommune": "80549", + "libelleAcheminement": "MIRAUMONT", + "nomCommune": "MIRAUMONT" }, { - "codePostal": "35420", - "codeCommune": "35018", - "libelleAcheminement": "LA BAZOUGE DU DESERT", - "nomCommune": "LA BAZOUGE DU DESERT" + "codePostal": "80260", + "codeCommune": "80553", + "libelleAcheminement": "MOLLIENS AU BOIS", + "nomCommune": "MOLLIENS AU BOIS" }, { - "codePostal": "35560", - "codeCommune": "35019", - "libelleAcheminement": "BAZOUGES LA PEROUSE", - "nomCommune": "BAZOUGES LA PEROUSE" + "codePostal": "80200", + "codeCommune": "80555", + "libelleAcheminement": "MONCHY LAGACHE", + "nomCommune": "MONCHY LAGACHE" }, { - "codePostal": "35133", - "codeCommune": "35021", - "libelleAcheminement": "BEAUCE", - "nomCommune": "BEAUCE" + "codePostal": "80500", + "codeCommune": "80561", + "libelleAcheminement": "MONTDIDIER", + "nomCommune": "MONTDIDIER" }, { - "codePostal": "35360", - "codeCommune": "35027", - "libelleAcheminement": "BOISGERVILLY", - "nomCommune": "BOISGERVILLY" + "codePostal": "80290", + "codeCommune": "80573", + "libelleAcheminement": "MORVILLERS ST SATURNIN", + "nomCommune": "MORVILLERS ST SATURNIN" }, { - "codePostal": "35150", - "codeCommune": "35041", - "libelleAcheminement": "BRIE", - "nomCommune": "BRIE" + "codePostal": "80290", + "codeCommune": "80577", + "libelleAcheminement": "MOYENCOURT LES POIX", + "nomCommune": "MOYENCOURT LES POIX" }, { - "codePostal": "35550", - "codeCommune": "35045", - "libelleAcheminement": "BRUC SUR AFF", - "nomCommune": "BRUC SUR AFF" + "codePostal": "80290", + "codeCommune": "80582", + "libelleAcheminement": "NAMPS MAISNIL", + "nomCommune": "NAMPS MAISNIL" }, { - "codePostal": "35260", - "codeCommune": "35049", - "libelleAcheminement": "CANCALE", - "nomCommune": "CANCALE" + "codePostal": "80132", + "codeCommune": "80588", + "libelleAcheminement": "NEUFMOULIN", + "nomCommune": "NEUFMOULIN" }, { - "codePostal": "35150", - "codeCommune": "35054", - "libelleAcheminement": "CHANTELOUP", - "nomCommune": "CHANTELOUP" + "codePostal": "80150", + "codeCommune": "80589", + "libelleAcheminement": "NEUILLY LE DIEN", + "nomCommune": "NEUILLY LE DIEN" }, { - "codePostal": "35520", - "codeCommune": "35059", - "libelleAcheminement": "LA CHAPELLE DES FOUGERETZ", - "nomCommune": "LA CHAPELLE DES FOUGERETZ" + "codePostal": "80132", + "codeCommune": "80590", + "libelleAcheminement": "NEUILLY L HOPITAL", + "nomCommune": "NEUILLY L HOPITAL" }, { - "codePostal": "35410", - "codeCommune": "35069", - "libelleAcheminement": "CHATEAUGIRON", - "nomCommune": "CHATEAUGIRON" + "codePostal": "80390", + "codeCommune": "80597", + "libelleAcheminement": "NIBAS", + "nomCommune": "NIBAS" }, { - "codePostal": "35430", - "codeCommune": "35070", - "libelleAcheminement": "CHATEAUNEUF D ILLE ET VILAINE", - "nomCommune": "CHATEAUNEUF D ILLE ET VILAINE" + "codePostal": "80860", + "codeCommune": "80600", + "libelleAcheminement": "NOYELLES SUR MER", + "nomCommune": "NOYELLES SUR MER" }, { - "codePostal": "35310", - "codeCommune": "35076", - "libelleAcheminement": "CHAVAGNE", - "nomCommune": "CHAVAGNE" + "codePostal": "80600", + "codeCommune": "80602", + "libelleAcheminement": "OCCOCHES", + "nomCommune": "OCCOCHES" }, { - "codePostal": "35640", - "codeCommune": "35077", - "libelleAcheminement": "CHELUN", - "nomCommune": "CHELUN" + "codePostal": "80290", + "codeCommune": "80604", + "libelleAcheminement": "OFFIGNIES", + "nomCommune": "OFFIGNIES" }, { - "codePostal": "35310", - "codeCommune": "35080", - "libelleAcheminement": "CINTRE", - "nomCommune": "CINTRE" + "codePostal": "80160", + "codeCommune": "80611", + "libelleAcheminement": "ORESMAUX", + "nomCommune": "ORESMAUX" }, { - "codePostal": "35134", - "codeCommune": "35082", - "libelleAcheminement": "COESMES", - "nomCommune": "COESMES" + "codePostal": "80460", + "codeCommune": "80613", + "libelleAcheminement": "OUST MAREST", + "nomCommune": "OUST MAREST" }, { - "codePostal": "35320", - "codeCommune": "35089", - "libelleAcheminement": "LA COUYERE", - "nomCommune": "LA COUYERE" + "codePostal": "80200", + "codeCommune": "80620", + "libelleAcheminement": "PERONNE", + "nomCommune": "PERONNE" }, { - "codePostal": "35800", - "codeCommune": "35093", - "libelleAcheminement": "DINARD", - "nomCommune": "DINARD" + "codePostal": "80500", + "codeCommune": "80625", + "libelleAcheminement": "TROIS RIVIERES", + "nomCommune": "TROIS RIVIERES" }, { - "codePostal": "35120", - "codeCommune": "35095", - "libelleAcheminement": "DOL DE BRETAGNE", - "nomCommune": "DOL DE BRETAGNE" + "codePostal": "80290", + "codeCommune": "80630", + "libelleAcheminement": "POIX DE PICARDIE", + "nomCommune": "POIX DE PICARDIE" }, { - "codePostal": "35113", - "codeCommune": "35096", - "libelleAcheminement": "DOMAGNE", - "nomCommune": "DOMAGNE" + "codePostal": "80132", + "codeCommune": "80637", + "libelleAcheminement": "PORT LE GRAND", + "nomCommune": "PORT LE GRAND" }, { - "codePostal": "35500", - "codeCommune": "35105", - "libelleAcheminement": "ERBREE", - "nomCommune": "ERBREE" + "codePostal": "80300", + "codeCommune": "80648", + "libelleAcheminement": "PYS", + "nomCommune": "PYS" }, { - "codePostal": "35850", - "codeCommune": "35120", - "libelleAcheminement": "GEVEZE", - "nomCommune": "GEVEZE" + "codePostal": "80120", + "codeCommune": "80649", + "libelleAcheminement": "QUEND", + "nomCommune": "QUEND" }, { - "codePostal": "35580", - "codeCommune": "35126", - "libelleAcheminement": "GUICHEN", - "nomCommune": "GUICHEN" + "codePostal": "80250", + "codeCommune": "80657", + "libelleAcheminement": "QUIRY LE SEC", + "nomCommune": "QUIRY LE SEC" }, { - "codePostal": "35630", - "codeCommune": "35130", - "libelleAcheminement": "HEDE BAZOUGES", - "nomCommune": "HEDE BAZOUGES" + "codePostal": "80260", + "codeCommune": "80661", + "libelleAcheminement": "RAINNEVILLE", + "nomCommune": "RAINNEVILLE" }, { - "codePostal": "35270", - "codeCommune": "35148", - "libelleAcheminement": "LANRIGAN", - "nomCommune": "LANRIGAN" + "codePostal": "80600", + "codeCommune": "80666", + "libelleAcheminement": "REMAISNIL", + "nomCommune": "REMAISNIL" }, { - "codePostal": "35340", - "codeCommune": "35152", - "libelleAcheminement": "LIFFRE", - "nomCommune": "LIFFRE" + "codePostal": "80500", + "codeCommune": "80667", + "libelleAcheminement": "REMAUGIES", + "nomCommune": "REMAUGIES" }, { - "codePostal": "35190", - "codeCommune": "35156", - "libelleAcheminement": "LONGAULNAY", - "nomCommune": "LONGAULNAY" + "codePostal": "80700", + "codeCommune": "80669", + "libelleAcheminement": "RETHONVILLERS", + "nomCommune": "RETHONVILLERS" }, { - "codePostal": "35330", - "codeCommune": "35160", - "libelleAcheminement": "LOUTEHEL", - "nomCommune": "LOUTEHEL" + "codePostal": "80620", + "codeCommune": "80671", + "libelleAcheminement": "RIBEAUCOURT", + "nomCommune": "RIBEAUCOURT" }, { - "codePostal": "35140", - "codeCommune": "35178", - "libelleAcheminement": "MEZIERES SUR COUESNON", - "nomCommune": "MEZIERES SUR COUESNON" + "codePostal": "80310", + "codeCommune": "80673", + "libelleAcheminement": "RIENCOURT", + "nomCommune": "RIENCOURT" }, { - "codePostal": "35540", - "codeCommune": "35179", - "libelleAcheminement": "MINIAC MORVAN", - "nomCommune": "MINIAC MORVAN" + "codePostal": "80120", + "codeCommune": "80688", + "libelleAcheminement": "RUE", + "nomCommune": "RUE" }, { - "codePostal": "35540", - "codeCommune": "35179", - "libelleAcheminement": "MINIAC MORVAN", - "nomCommune": "MINIAC MORVAN" + "codePostal": "80970", + "codeCommune": "80692", + "libelleAcheminement": "SAILLY FLIBEAUCOURT", + "nomCommune": "SAILLY FLIBEAUCOURT" }, { - "codePostal": "35190", - "codeCommune": "35180", - "libelleAcheminement": "MINIAC SOUS BECHEREL", - "nomCommune": "MINIAC SOUS BECHEREL" + "codePostal": "80800", + "codeCommune": "80694", + "libelleAcheminement": "SAILLY LE SEC", + "nomCommune": "SAILLY LE SEC" }, { - "codePostal": "35870", - "codeCommune": "35181", - "libelleAcheminement": "LE MINIHIC SUR RANCE", - "nomCommune": "LE MINIHIC SUR RANCE" + "codePostal": "80960", + "codeCommune": "80700", + "libelleAcheminement": "ST BLIMONT", + "nomCommune": "ST BLIMONT" }, { - "codePostal": "35360", - "codeCommune": "35184", - "libelleAcheminement": "MONTAUBAN DE BRETAGNE", - "nomCommune": "MONTAUBAN DE BRETAGNE" + "codePostal": "80200", + "codeCommune": "80701", + "libelleAcheminement": "ST CHRIST BRIOST", + "nomCommune": "ST CHRIST BRIOST" }, { - "codePostal": "35420", - "codeCommune": "35190", - "libelleAcheminement": "MONTHAULT", - "nomCommune": "MONTHAULT" + "codePostal": "80700", + "codeCommune": "80708", + "libelleAcheminement": "ST MARD", + "nomCommune": "ST MARD" }, { - "codePostal": "35130", - "codeCommune": "35199", - "libelleAcheminement": "MOUSSE", - "nomCommune": "MOUSSE" + "codePostal": "80135", + "codeCommune": "80716", + "libelleAcheminement": "ST RIQUIER", + "nomCommune": "ST RIQUIER" }, { - "codePostal": "35290", - "codeCommune": "35201", - "libelleAcheminement": "MUEL", - "nomCommune": "MUEL" + "codePostal": "80160", + "codeCommune": "80717", + "libelleAcheminement": "ST SAUFLIEU", + "nomCommune": "ST SAUFLIEU" }, { - "codePostal": "35530", - "codeCommune": "35207", - "libelleAcheminement": "NOYAL SUR VILAINE", - "nomCommune": "NOYAL SUR VILAINE" + "codePostal": "80230", + "codeCommune": "80721", + "libelleAcheminement": "ST VALERY SUR SOMME", + "nomCommune": "ST VALERY SUR SOMME" }, { - "codePostal": "35210", - "codeCommune": "35214", - "libelleAcheminement": "PARCE", - "nomCommune": "PARCE" + "codePostal": "80480", + "codeCommune": "80724", + "libelleAcheminement": "SALEUX", + "nomCommune": "SALEUX" }, { - "codePostal": "35133", - "codeCommune": "35215", - "libelleAcheminement": "PARIGNE", - "nomCommune": "PARIGNE" + "codePostal": "80310", + "codeCommune": "80738", + "libelleAcheminement": "SOUES", + "nomCommune": "SOUES" }, { - "codePostal": "35500", - "codeCommune": "35229", - "libelleAcheminement": "POCE LES BOIS", - "nomCommune": "POCE LES BOIS" + "codePostal": "80340", + "codeCommune": "80743", + "libelleAcheminement": "SUZANNE", + "nomCommune": "SUZANNE" }, { - "codePostal": "35190", - "codeCommune": "35233", - "libelleAcheminement": "QUEBRIAC", - "nomCommune": "QUEBRIAC" + "codePostal": "80260", + "codeCommune": "80746", + "libelleAcheminement": "TALMAS", + "nomCommune": "TALMAS" }, { - "codePostal": "35000", - "codeCommune": "35238", - "libelleAcheminement": "RENNES", - "nomCommune": "RENNES" + "codePostal": "80600", + "codeCommune": "80749", + "libelleAcheminement": "TERRAMESNIL", + "nomCommune": "TERRAMESNIL" }, { - "codePostal": "35120", - "codeCommune": "35246", - "libelleAcheminement": "ROZ LANDRIEUX", - "nomCommune": "ROZ LANDRIEUX" + "codePostal": "80440", + "codeCommune": "80752", + "libelleAcheminement": "THEZY GLIMONT", + "nomCommune": "THEZY GLIMONT" }, { - "codePostal": "35114", - "codeCommune": "35255", - "libelleAcheminement": "ST BENOIT DES ONDES", - "nomCommune": "ST BENOIT DES ONDES" + "codePostal": "80132", + "codeCommune": "80763", + "libelleAcheminement": "LE TITRE", + "nomCommune": "LE TITRE" }, { - "codePostal": "35140", - "codeCommune": "35282", - "libelleAcheminement": "RIVES DU COUESNON", - "nomCommune": "RIVES DU COUESNON" + "codePostal": "80560", + "codeCommune": "80766", + "libelleAcheminement": "TOUTENCOURT", + "nomCommune": "TOUTENCOURT" }, { - "codePostal": "35400", - "codeCommune": "35288", - "libelleAcheminement": "ST MALO", - "nomCommune": "ST MALO" + "codePostal": "80140", + "codeCommune": "80767", + "libelleAcheminement": "LE TRANSLAY", + "nomCommune": "LE TRANSLAY" }, { - "codePostal": "35750", - "codeCommune": "35295", - "libelleAcheminement": "ST MAUGAN", - "nomCommune": "ST MAUGAN" + "codePostal": "80130", + "codeCommune": "80770", + "libelleAcheminement": "TULLY", + "nomCommune": "TULLY" }, { - "codePostal": "35290", - "codeCommune": "35297", - "libelleAcheminement": "ST MEEN LE GRAND", - "nomCommune": "ST MEEN LE GRAND" + "codePostal": "80560", + "codeCommune": "80777", + "libelleAcheminement": "VAUCHELLES LES AUTHIE", + "nomCommune": "VAUCHELLES LES AUTHIE" }, { - "codePostal": "35350", - "codeCommune": "35299", - "libelleAcheminement": "ST MELOIR DES ONDES", - "nomCommune": "ST MELOIR DES ONDES" + "codePostal": "80230", + "codeCommune": "80780", + "libelleAcheminement": "VAUDRICOURT", + "nomCommune": "VAUDRICOURT" }, { - "codePostal": "35500", - "codeCommune": "35300", - "libelleAcheminement": "ST M HERVE", - "nomCommune": "ST M HERVE" + "codePostal": "80480", + "codeCommune": "80791", + "libelleAcheminement": "VERS SUR SELLE", + "nomCommune": "VERS SUR SELLE" }, { - "codePostal": "35720", - "codeCommune": "35308", - "libelleAcheminement": "MESNIL ROC H", - "nomCommune": "MESNIL ROC H" + "codePostal": "80110", + "codeCommune": "80797", + "libelleAcheminement": "VILLERS AUX ERABLES", + "nomCommune": "VILLERS AUX ERABLES" }, { - "codePostal": "35390", - "codeCommune": "35316", - "libelleAcheminement": "ST SULPICE DES LANDES", - "nomCommune": "ST SULPICE DES LANDES" + "codePostal": "80200", + "codeCommune": "80801", + "libelleAcheminement": "VILLERS CARBONNEL", + "nomCommune": "VILLERS CARBONNEL" }, { - "codePostal": "35310", - "codeCommune": "35319", - "libelleAcheminement": "ST THURIAL", - "nomCommune": "ST THURIAL" + "codePostal": "80690", + "codeCommune": "80804", + "libelleAcheminement": "VILLERS SOUS AILLY", + "nomCommune": "VILLERS SOUS AILLY" }, { - "codePostal": "35320", - "codeCommune": "35321", - "libelleAcheminement": "SAULNIERES", - "nomCommune": "SAULNIERES" + "codePostal": "80300", + "codeCommune": "80807", + "libelleAcheminement": "VILLE SUR ANCRE", + "nomCommune": "VILLE SUR ANCRE" }, { - "codePostal": "35160", - "codeCommune": "35331", - "libelleAcheminement": "TALENSAC", - "nomCommune": "TALENSAC" + "codePostal": "80150", + "codeCommune": "80810", + "libelleAcheminement": "VITZ SUR AUTHIE", + "nomCommune": "VITZ SUR AUTHIE" }, { - "codePostal": "35370", - "codeCommune": "35338", - "libelleAcheminement": "TORCE", - "nomCommune": "TORCE" + "codePostal": "80240", + "codeCommune": "80812", + "libelleAcheminement": "VRAIGNES EN VERMANDOIS", + "nomCommune": "VRAIGNES EN VERMANDOIS" }, { - "codePostal": "35770", - "codeCommune": "35352", - "libelleAcheminement": "VERN SUR SEICHE", - "nomCommune": "VERN SUR SEICHE" + "codePostal": "80120", + "codeCommune": "80815", + "libelleAcheminement": "VRON", + "nomCommune": "VRON" }, { - "codePostal": "35540", - "codeCommune": "35362", - "libelleAcheminement": "LE TRONCHET", - "nomCommune": "LE TRONCHET" + "codePostal": "80270", + "codeCommune": "80821", + "libelleAcheminement": "WARLUS", + "nomCommune": "WARLUS" }, { - "codePostal": "36120", - "codeCommune": "36003", - "libelleAcheminement": "AMBRAULT", - "nomCommune": "AMBRAULT" + "codePostal": "80500", + "codeCommune": "80822", + "libelleAcheminement": "WARSY", + "nomCommune": "WARSY" }, { - "codePostal": "36700", - "codeCommune": "36008", - "libelleAcheminement": "ARPHEUILLES", - "nomCommune": "ARPHEUILLES" + "codePostal": "80170", + "codeCommune": "80823", + "libelleAcheminement": "WARVILLERS", + "nomCommune": "WARVILLERS" }, { - "codePostal": "36330", - "codeCommune": "36009", - "libelleAcheminement": "ARTHON", - "nomCommune": "ARTHON" + "codePostal": "80170", + "codeCommune": "80824", + "libelleAcheminement": "WIENCOURT L EQUIPEE", + "nomCommune": "WIENCOURT L EQUIPEE" }, { - "codePostal": "36100", - "codeCommune": "36027", - "libelleAcheminement": "BRIVES", - "nomCommune": "BRIVES" + "codePostal": "80460", + "codeCommune": "80826", + "libelleAcheminement": "WOIGNARUE", + "nomCommune": "WOIGNARUE" }, { - "codePostal": "36210", - "codeCommune": "36034", - "libelleAcheminement": "CHABRIS", - "nomCommune": "CHABRIS" + "codePostal": "80150", + "codeCommune": "80833", + "libelleAcheminement": "YVRENCHEUX", + "nomCommune": "YVRENCHEUX" }, { - "codePostal": "36160", - "codeCommune": "36038", - "libelleAcheminement": "CHAMPILLET", - "nomCommune": "CHAMPILLET" + "codePostal": "80520", + "codeCommune": "80834", + "libelleAcheminement": "YZENGREMER", + "nomCommune": "YZENGREMER" }, { - "codePostal": "36700", - "codeCommune": "36045", - "libelleAcheminement": "CHATILLON SUR INDRE", - "nomCommune": "CHATILLON SUR INDRE" + "codePostal": "81240", + "codeCommune": "81005", + "libelleAcheminement": "ALBINE", + "nomCommune": "ALBINE" }, { - "codePostal": "36170", - "codeCommune": "36049", - "libelleAcheminement": "CHAZELET", - "nomCommune": "CHAZELET" + "codePostal": "81190", + "codeCommune": "81008", + "libelleAcheminement": "ALMAYRAC", + "nomCommune": "ALMAYRAC" }, { - "codePostal": "36500", - "codeCommune": "36050", - "libelleAcheminement": "CHEZELLES", - "nomCommune": "CHEZELLES" + "codePostal": "81170", + "codeCommune": "81009", + "libelleAcheminement": "AMARENS", + "nomCommune": "AMARENS" }, { - "codePostal": "36300", - "codeCommune": "36053", - "libelleAcheminement": "CIRON", - "nomCommune": "CIRON" + "codePostal": "81430", + "codeCommune": "81010", + "libelleAcheminement": "AMBIALET", + "nomCommune": "AMBIALET" }, { - "codePostal": "36300", - "codeCommune": "36058", - "libelleAcheminement": "CONCREMIERS", - "nomCommune": "CONCREMIERS" + "codePostal": "81500", + "codeCommune": "81011", + "libelleAcheminement": "AMBRES", + "nomCommune": "AMBRES" }, { - "codePostal": "36190", - "codeCommune": "36062", - "libelleAcheminement": "CUZION", - "nomCommune": "CUZION" + "codePostal": "81350", + "codeCommune": "81013", + "libelleAcheminement": "ANDOUQUE", + "nomCommune": "ANDOUQUE" }, { - "codePostal": "36300", - "codeCommune": "36066", - "libelleAcheminement": "DOUADIC", - "nomCommune": "DOUADIC" + "codePostal": "81260", + "codeCommune": "81014", + "libelleAcheminement": "ANGLES", + "nomCommune": "ANGLES" }, { - "codePostal": "36310", - "codeCommune": "36067", - "libelleAcheminement": "DUNET", - "nomCommune": "DUNET" + "codePostal": "81110", + "codeCommune": "81016", + "libelleAcheminement": "ARFONS", + "nomCommune": "ARFONS" }, { - "codePostal": "36210", - "codeCommune": "36068", - "libelleAcheminement": "DUN LE POELIER", - "nomCommune": "DUN LE POELIER" + "codePostal": "81630", + "codeCommune": "81024", + "libelleAcheminement": "BEAUVAIS SUR TESCOU", + "nomCommune": "BEAUVAIS SUR TESCOU" }, { - "codePostal": "36240", - "codeCommune": "36069", - "libelleAcheminement": "ECUEILLE", - "nomCommune": "ECUEILLE" + "codePostal": "81540", + "codeCommune": "81027", + "libelleAcheminement": "BELLESERRE", + "nomCommune": "BELLESERRE" }, { - "codePostal": "36150", - "codeCommune": "36083", - "libelleAcheminement": "GIROUX", - "nomCommune": "GIROUX" + "codePostal": "81700", + "codeCommune": "81032", + "libelleAcheminement": "BLAN", + "nomCommune": "BLAN" }, { - "codePostal": "36100", - "codeCommune": "36088", - "libelleAcheminement": "ISSOUDUN", - "nomCommune": "ISSOUDUN" + "codePostal": "81490", + "codeCommune": "81034", + "libelleAcheminement": "BOISSEZON", + "nomCommune": "BOISSEZON" }, { - "codePostal": "36120", - "codeCommune": "36089", - "libelleAcheminement": "JEU LES BOIS", - "nomCommune": "JEU LES BOIS" + "codePostal": "81170", + "codeCommune": "81045", + "libelleAcheminement": "LES CABANNES", + "nomCommune": "LES CABANNES" }, { - "codePostal": "36110", - "codeCommune": "36093", - "libelleAcheminement": "LEVROUX", - "nomCommune": "LEVROUX" + "codePostal": "81140", + "codeCommune": "81051", + "libelleAcheminement": "CAHUZAC SUR VERE", + "nomCommune": "CAHUZAC SUR VERE" }, { - "codePostal": "36110", - "codeCommune": "36093", - "libelleAcheminement": "LEVROUX", - "nomCommune": "LEVROUX" + "codePostal": "81540", + "codeCommune": "81055", + "libelleAcheminement": "LES CAMMAZES", + "nomCommune": "LES CAMMAZES" }, { - "codePostal": "36370", - "codeCommune": "36094", - "libelleAcheminement": "LIGNAC", - "nomCommune": "LIGNAC" + "codePostal": "81570", + "codeCommune": "81058", + "libelleAcheminement": "CARBES", + "nomCommune": "CARBES" }, { - "codePostal": "36160", - "codeCommune": "36095", - "libelleAcheminement": "LIGNEROLLES", - "nomCommune": "LIGNEROLLES" + "codePostal": "81150", + "codeCommune": "81061", + "libelleAcheminement": "CASTANET", + "nomCommune": "CASTANET" }, { - "codePostal": "36150", - "codeCommune": "36097", - "libelleAcheminement": "LINIEZ", - "nomCommune": "LINIEZ" + "codePostal": "81260", + "codeCommune": "81062", + "libelleAcheminement": "FONTRIEU", + "nomCommune": "FONTRIEU" }, { - "codePostal": "36370", - "codeCommune": "36114", - "libelleAcheminement": "MAUVIERES", - "nomCommune": "MAUVIERES" + "codePostal": "81150", + "codeCommune": "81063", + "libelleAcheminement": "CASTELNAU DE LEVIS", + "nomCommune": "CASTELNAU DE LEVIS" }, { - "codePostal": "36500", - "codeCommune": "36118", - "libelleAcheminement": "MEOBECQ", - "nomCommune": "MEOBECQ" + "codePostal": "81350", + "codeCommune": "81073", + "libelleAcheminement": "CRESPINET", + "nomCommune": "CRESPINET" }, { - "codePostal": "36340", - "codeCommune": "36133", - "libelleAcheminement": "MOUHERS", - "nomCommune": "MOUHERS" + "codePostal": "81120", + "codeCommune": "81088", + "libelleAcheminement": "FAUCH", + "nomCommune": "FAUCH" }, { - "codePostal": "36170", - "codeCommune": "36134", - "libelleAcheminement": "MOUHET", - "nomCommune": "MOUHET" + "codePostal": "81500", + "codeCommune": "81104", + "libelleAcheminement": "GIROUSSENS", + "nomCommune": "GIROUSSENS" }, { - "codePostal": "36110", - "codeCommune": "36135", - "libelleAcheminement": "MOULINS SUR CEPHONS", - "nomCommune": "MOULINS SUR CEPHONS" + "codePostal": "81500", + "codeCommune": "81116", + "libelleAcheminement": "LABASTIDE ST GEORGES", + "nomCommune": "LABASTIDE ST GEORGES" }, { - "codePostal": "36700", - "codeCommune": "36136", - "libelleAcheminement": "MURS", - "nomCommune": "MURS" + "codePostal": "81300", + "codeCommune": "81117", + "libelleAcheminement": "LABESSIERE CANDEIL", + "nomCommune": "LABESSIERE CANDEIL" }, { - "codePostal": "36500", - "codeCommune": "36139", - "libelleAcheminement": "NEUILLAY LES BOIS", - "nomCommune": "NEUILLAY LES BOIS" + "codePostal": "81100", + "codeCommune": "81118", + "libelleAcheminement": "LABOULBENE", + "nomCommune": "LABOULBENE" }, { - "codePostal": "36100", - "codeCommune": "36140", - "libelleAcheminement": "NEUVY PAILLOUX", - "nomCommune": "NEUVY PAILLOUX" + "codePostal": "81470", + "codeCommune": "81127", + "libelleAcheminement": "LACROISILLE", + "nomCommune": "LACROISILLE" }, { - "codePostal": "36250", - "codeCommune": "36142", - "libelleAcheminement": "NIHERNE", - "nomCommune": "NIHERNE" + "codePostal": "81220", + "codeCommune": "81132", + "libelleAcheminement": "GUITALENS L ALBAREDE", + "nomCommune": "GUITALENS L ALBAREDE" }, { - "codePostal": "36290", - "codeCommune": "36145", - "libelleAcheminement": "OBTERRE", - "nomCommune": "OBTERRE" + "codePostal": "81120", + "codeCommune": "81133", + "libelleAcheminement": "LAMILLARIE", + "nomCommune": "LAMILLARIE" }, { - "codePostal": "36200", - "codeCommune": "36154", - "libelleAcheminement": "LE PECHEREAU", - "nomCommune": "LE PECHEREAU" + "codePostal": "81260", + "codeCommune": "81137", + "libelleAcheminement": "LASFAILLADES", + "nomCommune": "LASFAILLADES" }, { - "codePostal": "36160", - "codeCommune": "36156", - "libelleAcheminement": "PERASSAY", - "nomCommune": "PERASSAY" + "codePostal": "81380", + "codeCommune": "81144", + "libelleAcheminement": "LESCURE D ALBIGEOIS", + "nomCommune": "LESCURE D ALBIGEOIS" }, { - "codePostal": "36200", - "codeCommune": "36158", - "libelleAcheminement": "BADECON LE PIN", - "nomCommune": "BADECON LE PIN" + "codePostal": "81310", + "codeCommune": "81145", + "libelleAcheminement": "LISLE SUR TARN", + "nomCommune": "LISLE SUR TARN" }, { - "codePostal": "36190", - "codeCommune": "36160", - "libelleAcheminement": "POMMIERS", - "nomCommune": "POMMIERS" + "codePostal": "81170", + "codeCommune": "81154", + "libelleAcheminement": "MARNAVES", + "nomCommune": "MARNAVES" }, { - "codePostal": "36240", - "codeCommune": "36166", - "libelleAcheminement": "PREAUX", - "nomCommune": "PREAUX" + "codePostal": "81130", + "codeCommune": "81166", + "libelleAcheminement": "MILHAVET", + "nomCommune": "MILHAVET" }, { - "codePostal": "36300", - "codeCommune": "36173", - "libelleAcheminement": "ROSNAY", - "nomCommune": "ROSNAY" + "codePostal": "81600", + "codeCommune": "81171", + "libelleAcheminement": "MONTANS", + "nomCommune": "MONTANS" }, { - "codePostal": "36300", - "codeCommune": "36176", - "libelleAcheminement": "RUFFEC", - "nomCommune": "RUFFEC" + "codePostal": "81630", + "codeCommune": "81175", + "libelleAcheminement": "MONTDURAUSSE", + "nomCommune": "MONTDURAUSSE" }, { - "codePostal": "36100", - "codeCommune": "36179", - "libelleAcheminement": "ST AOUSTRILLE", - "nomCommune": "ST AOUSTRILLE" + "codePostal": "81140", + "codeCommune": "81176", + "libelleAcheminement": "MONTELS", + "nomCommune": "MONTELS" }, { - "codePostal": "36170", - "codeCommune": "36182", - "libelleAcheminement": "ST BENOIT DU SAULT", - "nomCommune": "ST BENOIT DU SAULT" + "codePostal": "81210", + "codeCommune": "81177", + "libelleAcheminement": "MONTFA", + "nomCommune": "MONTFA" }, { - "codePostal": "36100", - "codeCommune": "36190", - "libelleAcheminement": "STE FAUSTE", - "nomCommune": "STE FAUSTE" + "codePostal": "81320", + "codeCommune": "81192", + "libelleAcheminement": "MURAT SUR VEBRE", + "nomCommune": "MURAT SUR VEBRE" }, { - "codePostal": "36500", - "codeCommune": "36193", - "libelleAcheminement": "STE GEMME", - "nomCommune": "STE GEMME" + "codePostal": "81170", + "codeCommune": "81197", + "libelleAcheminement": "NOAILLES", + "nomCommune": "NOAILLES" }, { - "codePostal": "36170", - "codeCommune": "36196", - "libelleAcheminement": "ST GILLES", - "nomCommune": "ST GILLES" + "codePostal": "81190", + "codeCommune": "81201", + "libelleAcheminement": "PAMPELONNE", + "nomCommune": "PAMPELONNE" }, { - "codePostal": "36290", - "codeCommune": "36204", - "libelleAcheminement": "ST MICHEL EN BRENNE", - "nomCommune": "ST MICHEL EN BRENNE" + "codePostal": "81440", + "codeCommune": "81207", + "libelleAcheminement": "PEYREGOUX", + "nomCommune": "PEYREGOUX" }, { - "codePostal": "36800", - "codeCommune": "36220", - "libelleAcheminement": "THENAY", - "nomCommune": "THENAY" + "codePostal": "81120", + "codeCommune": "81211", + "libelleAcheminement": "POULAN POUZOLS", + "nomCommune": "POULAN POUZOLS" }, { - "codePostal": "36700", - "codeCommune": "36225", - "libelleAcheminement": "LE TRANGER", - "nomCommune": "LE TRANGER" + "codePostal": "81470", + "codeCommune": "81214", + "libelleAcheminement": "PUECHOURSI", + "nomCommune": "PUECHOURSI" }, { - "codePostal": "36160", - "codeCommune": "36227", - "libelleAcheminement": "URCIERS", - "nomCommune": "URCIERS" + "codePostal": "81120", + "codeCommune": "81222", + "libelleAcheminement": "REALMONT", + "nomCommune": "REALMONT" }, { - "codePostal": "36210", - "codeCommune": "36229", - "libelleAcheminement": "VAL FOUZON", - "nomCommune": "VAL FOUZON" + "codePostal": "81470", + "codeCommune": "81229", + "libelleAcheminement": "ROQUEVIDAL", + "nomCommune": "ROQUEVIDAL" }, { - "codePostal": "36210", - "codeCommune": "36229", - "libelleAcheminement": "VAL FOUZON", - "nomCommune": "VAL FOUZON" + "codePostal": "81400", + "codeCommune": "81230", + "libelleAcheminement": "ROSIERES", + "nomCommune": "ROSIERES" }, { - "codePostal": "36600", - "codeCommune": "36233", - "libelleAcheminement": "LA VERNELLE", - "nomCommune": "LA VERNELLE" + "codePostal": "81240", + "codeCommune": "81238", + "libelleAcheminement": "ST AMANS SOULT", + "nomCommune": "ST AMANS SOULT" }, { - "codePostal": "36400", - "codeCommune": "36234", - "libelleAcheminement": "VERNEUIL SUR IGNERAIE", - "nomCommune": "VERNEUIL SUR IGNERAIE" + "codePostal": "81190", + "codeCommune": "81245", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "36160", - "codeCommune": "36238", - "libelleAcheminement": "VIGOULANT", - "nomCommune": "VIGOULANT" + "codePostal": "81190", + "codeCommune": "81249", + "libelleAcheminement": "STE GEMME", + "nomCommune": "STE GEMME" }, { - "codePostal": "37160", - "codeCommune": "37001", - "libelleAcheminement": "ABILLY", - "nomCommune": "ABILLY" + "codePostal": "81350", + "codeCommune": "81254", + "libelleAcheminement": "ST JEAN DE MARCEL", + "nomCommune": "ST JEAN DE MARCEL" }, { - "codePostal": "37110", - "codeCommune": "37009", - "libelleAcheminement": "AUTRECHE", - "nomCommune": "AUTRECHE" + "codePostal": "81160", + "codeCommune": "81257", + "libelleAcheminement": "ST JUERY", + "nomCommune": "ST JUERY" }, { - "codePostal": "37270", - "codeCommune": "37015", - "libelleAcheminement": "AZAY SUR CHER", - "nomCommune": "AZAY SUR CHER" + "codePostal": "81170", + "codeCommune": "81263", + "libelleAcheminement": "ST MARTIN LAGUEPIE", + "nomCommune": "ST MARTIN LAGUEPIE" }, { - "codePostal": "37310", - "codeCommune": "37016", - "libelleAcheminement": "AZAY SUR INDRE", - "nomCommune": "AZAY SUR INDRE" + "codePostal": "81490", + "codeCommune": "81269", + "libelleAcheminement": "ST SALVY DE LA BALME", + "nomCommune": "ST SALVY DE LA BALME" }, { - "codePostal": "37510", - "codeCommune": "37018", - "libelleAcheminement": "BALLAN MIRE", - "nomCommune": "BALLAN MIRE" + "codePostal": "81630", + "codeCommune": "81272", + "libelleAcheminement": "ST URCISSE", + "nomCommune": "ST URCISSE" }, { - "codePostal": "37510", - "codeCommune": "37025", - "libelleAcheminement": "BERTHENAY", - "nomCommune": "BERTHENAY" + "codePostal": "81350", + "codeCommune": "81277", + "libelleAcheminement": "SAUSSENAC", + "nomCommune": "SAUSSENAC" }, { - "codePostal": "37120", - "codeCommune": "37034", - "libelleAcheminement": "BRASLOU", - "nomCommune": "BRASLOU" + "codePostal": "81240", + "codeCommune": "81278", + "libelleAcheminement": "SAUVETERRE", + "nomCommune": "SAUVETERRE" }, { - "codePostal": "37500", - "codeCommune": "37042", - "libelleAcheminement": "CANDES ST MARTIN", - "nomCommune": "CANDES ST MARTIN" + "codePostal": "81120", + "codeCommune": "81295", + "libelleAcheminement": "TEILLET", + "nomCommune": "TEILLET" }, { - "codePostal": "37160", - "codeCommune": "37045", - "libelleAcheminement": "LA CELLE ST AVANT", - "nomCommune": "LA CELLE ST AVANT" + "codePostal": "81500", + "codeCommune": "81298", + "libelleAcheminement": "TEULAT", + "nomCommune": "TEULAT" }, { - "codePostal": "37290", - "codeCommune": "37048", - "libelleAcheminement": "CHAMBON", - "nomCommune": "CHAMBON" + "codePostal": "81170", + "codeCommune": "81300", + "libelleAcheminement": "TONNAC", + "nomCommune": "TONNAC" }, { - "codePostal": "37330", - "codeCommune": "37055", - "libelleAcheminement": "CHANNAY SUR LATHAN", - "nomCommune": "CHANNAY SUR LATHAN" + "codePostal": "81340", + "codeCommune": "81303", + "libelleAcheminement": "TREBAS", + "nomCommune": "TREBAS" }, { - "codePostal": "37130", - "codeCommune": "37056", - "libelleAcheminement": "LA CHAPELLE AUX NAUX", - "nomCommune": "LA CHAPELLE AUX NAUX" + "codePostal": "81500", + "codeCommune": "81310", + "libelleAcheminement": "VEILHES", + "nomCommune": "VEILHES" }, { - "codePostal": "37120", - "codeCommune": "37065", - "libelleAcheminement": "CHAVEIGNES", - "nomCommune": "CHAVEIGNES" + "codePostal": "81530", + "codeCommune": "81314", + "libelleAcheminement": "VIANE", + "nomCommune": "VIANE" }, { - "codePostal": "37500", - "codeCommune": "37072", - "libelleAcheminement": "CHINON", - "nomCommune": "CHINON" + "codePostal": "81130", + "codeCommune": "81319", + "libelleAcheminement": "VILLENEUVE SUR VERE", + "nomCommune": "VILLENEUVE SUR VERE" }, { - "codePostal": "37500", - "codeCommune": "37089", - "libelleAcheminement": "CRAVANT LES COTEAUX", - "nomCommune": "CRAVANT LES COTEAUX" + "codePostal": "81170", + "codeCommune": "81320", + "libelleAcheminement": "VINDRAC ALAYRAC", + "nomCommune": "VINDRAC ALAYRAC" }, { - "codePostal": "37380", - "codeCommune": "37092", - "libelleAcheminement": "CROTELLES", - "nomCommune": "CROTELLES" + "codePostal": "81640", + "codeCommune": "81322", + "libelleAcheminement": "VIRAC", + "nomCommune": "VIRAC" }, { - "codePostal": "37120", - "codeCommune": "37105", - "libelleAcheminement": "FAYE LA VINEUSE", - "nomCommune": "FAYE LA VINEUSE" + "codePostal": "81500", + "codeCommune": "81324", + "libelleAcheminement": "VIVIERS LES LAVAUR", + "nomCommune": "VIVIERS LES LAVAUR" }, { - "codePostal": "37600", - "codeCommune": "37108", - "libelleAcheminement": "FERRIERE SUR BEAULIEU", - "nomCommune": "FERRIERE SUR BEAULIEU" + "codePostal": "81150", + "codeCommune": "81326", + "libelleAcheminement": "STE CROIX", + "nomCommune": "STE CROIX" }, { - "codePostal": "37110", - "codeCommune": "37116", - "libelleAcheminement": "LES HERMITES", - "nomCommune": "LES HERMITES" + "codePostal": "82290", + "codeCommune": "82011", + "libelleAcheminement": "BARRY D ISLEMADE", + "nomCommune": "BARRY D ISLEMADE" }, { - "codePostal": "37420", - "codeCommune": "37118", - "libelleAcheminement": "HUISMES", - "nomCommune": "HUISMES" + "codePostal": "82800", + "codeCommune": "82018", + "libelleAcheminement": "BIOULE", + "nomCommune": "BIOULE" }, { - "codePostal": "37130", - "codeCommune": "37123", - "libelleAcheminement": "LANGEAIS", - "nomCommune": "LANGEAIS" + "codePostal": "82200", + "codeCommune": "82019", + "libelleAcheminement": "BOUDOU", + "nomCommune": "BOUDOU" }, { - "codePostal": "37530", - "codeCommune": "37131", - "libelleAcheminement": "LIMERAY", - "nomCommune": "LIMERAY" + "codePostal": "82600", + "codeCommune": "82020", + "libelleAcheminement": "BOUILLAC", + "nomCommune": "BOUILLAC" }, { - "codePostal": "37240", - "codeCommune": "37136", - "libelleAcheminement": "LE LOUROUX", - "nomCommune": "LE LOUROUX" + "codePostal": "82100", + "codeCommune": "82030", + "libelleAcheminement": "CASTELFERRUS", + "nomCommune": "CASTELFERRUS" }, { - "codePostal": "37230", - "codeCommune": "37139", - "libelleAcheminement": "LUYNES", - "nomCommune": "LUYNES" + "codePostal": "82300", + "codeCommune": "82037", + "libelleAcheminement": "CAUSSADE", + "nomCommune": "CAUSSADE" }, { - "codePostal": "37390", - "codeCommune": "37151", - "libelleAcheminement": "LA MEMBROLLE SUR CHOISILLE", - "nomCommune": "LA MEMBROLLE SUR CHOISILLE" + "codePostal": "82110", + "codeCommune": "82042", + "libelleAcheminement": "CAZES MONDENARD", + "nomCommune": "CAZES MONDENARD" }, { - "codePostal": "37390", - "codeCommune": "37152", - "libelleAcheminement": "METTRAY", - "nomCommune": "METTRAY" + "codePostal": "82390", + "codeCommune": "82051", + "libelleAcheminement": "DURFORT LACAPELETTE", + "nomCommune": "DURFORT LACAPELETTE" }, { - "codePostal": "37250", - "codeCommune": "37154", - "libelleAcheminement": "MONTBAZON", - "nomCommune": "MONTBAZON" + "codePostal": "82700", + "codeCommune": "82052", + "libelleAcheminement": "ESCATALENS", + "nomCommune": "ESCATALENS" }, { - "codePostal": "37460", - "codeCommune": "37157", - "libelleAcheminement": "MONTRESOR", - "nomCommune": "MONTRESOR" - }, - { - "codePostal": "37160", - "codeCommune": "37168", - "libelleAcheminement": "NEUILLY LE BRIGNON", - "nomCommune": "NEUILLY LE BRIGNON" + "codePostal": "82500", + "codeCommune": "82053", + "libelleAcheminement": "ESCAZEAUX", + "nomCommune": "ESCAZEAUX" }, { - "codePostal": "37110", - "codeCommune": "37169", - "libelleAcheminement": "NEUVILLE SUR BRENNE", - "nomCommune": "NEUVILLE SUR BRENNE" + "codePostal": "82500", + "codeCommune": "82059", + "libelleAcheminement": "FAUDOAS", + "nomCommune": "FAUDOAS" }, { - "codePostal": "37460", - "codeCommune": "37173", - "libelleAcheminement": "NOUANS LES FONTAINES", - "nomCommune": "NOUANS LES FONTAINES" + "codePostal": "82190", + "codeCommune": "82060", + "libelleAcheminement": "FAUROUX", + "nomCommune": "FAUROUX" }, { - "codePostal": "37460", - "codeCommune": "37177", - "libelleAcheminement": "ORBIGNY", - "nomCommune": "ORBIGNY" + "codePostal": "82100", + "codeCommune": "82063", + "libelleAcheminement": "GARGANVILLAR", + "nomCommune": "GARGANVILLAR" }, { - "codePostal": "37800", - "codeCommune": "37190", - "libelleAcheminement": "PUSSIGNY", - "nomCommune": "PUSSIGNY" + "codePostal": "82120", + "codeCommune": "82067", + "libelleAcheminement": "GENSAC", + "nomCommune": "GENSAC" }, { - "codePostal": "37120", - "codeCommune": "37196", - "libelleAcheminement": "RICHELIEU", - "nomCommune": "RICHELIEU" + "codePostal": "82330", + "codeCommune": "82069", + "libelleAcheminement": "GINALS", + "nomCommune": "GINALS" }, { - "codePostal": "37360", - "codeCommune": "37206", - "libelleAcheminement": "ST ANTOINE DU ROCHER", - "nomCommune": "ST ANTOINE DU ROCHER" + "codePostal": "82100", + "codeCommune": "82081", + "libelleAcheminement": "LABOURGADE", + "nomCommune": "LABOURGADE" }, { - "codePostal": "37800", - "codeCommune": "37212", - "libelleAcheminement": "STE CATHERINE DE FIERBOIS", - "nomCommune": "STE CATHERINE DE FIERBOIS" + "codePostal": "82250", + "codeCommune": "82088", + "libelleAcheminement": "LAGUEPIE", + "nomCommune": "LAGUEPIE" }, { - "codePostal": "37540", - "codeCommune": "37214", - "libelleAcheminement": "ST CYR SUR LOIRE", - "nomCommune": "ST CYR SUR LOIRE" + "codePostal": "82500", + "codeCommune": "82093", + "libelleAcheminement": "LARRAZET", + "nomCommune": "LARRAZET" }, { - "codePostal": "37800", - "codeCommune": "37216", - "libelleAcheminement": "ST EPAIN", - "nomCommune": "ST EPAIN" + "codePostal": "82110", + "codeCommune": "82094", + "libelleAcheminement": "LAUZERTE", + "nomCommune": "LAUZERTE" }, { - "codePostal": "37600", - "codeCommune": "37218", - "libelleAcheminement": "ST FLOVIER", - "nomCommune": "ST FLOVIER" + "codePostal": "82200", + "codeCommune": "82099", + "libelleAcheminement": "LIZAC", + "nomCommune": "LIZAC" }, { - "codePostal": "37510", - "codeCommune": "37219", - "libelleAcheminement": "ST GENOUPH", - "nomCommune": "ST GENOUPH" + "codePostal": "82600", + "codeCommune": "82105", + "libelleAcheminement": "MAS GRENIER", + "nomCommune": "MAS GRENIER" }, { - "codePostal": "37500", - "codeCommune": "37220", - "libelleAcheminement": "ST GERMAIN SUR VIENNE", - "nomCommune": "ST GERMAIN SUR VIENNE" + "codePostal": "82200", + "codeCommune": "82112", + "libelleAcheminement": "MOISSAC", + "nomCommune": "MOISSAC" }, { - "codePostal": "37800", - "codeCommune": "37226", - "libelleAcheminement": "STE MAURE DE TOURAINE", - "nomCommune": "STE MAURE DE TOURAINE" + "codePostal": "82220", + "codeCommune": "82113", + "libelleAcheminement": "MOLIERES", + "nomCommune": "MOLIERES" }, { - "codePostal": "37600", - "codeCommune": "37238", - "libelleAcheminement": "ST SENOCH", - "nomCommune": "ST SENOCH" + "codePostal": "82130", + "codeCommune": "82120", + "libelleAcheminement": "MONTASTRUC", + "nomCommune": "MONTASTRUC" }, { - "codePostal": "37360", - "codeCommune": "37245", - "libelleAcheminement": "SEMBLANCAY", - "nomCommune": "SEMBLANCAY" + "codePostal": "82270", + "codeCommune": "82128", + "libelleAcheminement": "MONTFERMIER", + "nomCommune": "MONTFERMIER" }, { - "codePostal": "37600", - "codeCommune": "37246", - "libelleAcheminement": "SENNEVIERES", - "nomCommune": "SENNEVIERES" + "codePostal": "82800", + "codeCommune": "82132", + "libelleAcheminement": "MONTRICOUX", + "nomCommune": "MONTRICOUX" }, { - "codePostal": "37600", - "codeCommune": "37265", - "libelleAcheminement": "VARENNES", - "nomCommune": "VARENNES" + "codePostal": "82400", + "codeCommune": "82138", + "libelleAcheminement": "PERVILLE", + "nomCommune": "PERVILLE" }, { - "codePostal": "37600", - "codeCommune": "37269", - "libelleAcheminement": "VERNEUIL SUR INDRE", - "nomCommune": "VERNEUIL SUR INDRE" + "codePostal": "82400", + "codeCommune": "82141", + "libelleAcheminement": "POMMEVIC", + "nomCommune": "POMMEVIC" }, { - "codePostal": "37260", - "codeCommune": "37278", - "libelleAcheminement": "VILLEPERDUE", - "nomCommune": "VILLEPERDUE" + "codePostal": "82220", + "codeCommune": "82144", + "libelleAcheminement": "PUYCORNET", + "nomCommune": "PUYCORNET" }, { - "codePostal": "37330", - "codeCommune": "37279", - "libelleAcheminement": "VILLIERS AU BOUIN", - "nomCommune": "VILLIERS AU BOUIN" + "codePostal": "82120", + "codeCommune": "82146", + "libelleAcheminement": "PUYGAILLARD DE LOMAGNE", + "nomCommune": "PUYGAILLARD DE LOMAGNE" }, { - "codePostal": "37240", - "codeCommune": "37280", - "libelleAcheminement": "VOU", - "nomCommune": "VOU" + "codePostal": "82150", + "codeCommune": "82153", + "libelleAcheminement": "ST AMANS DU PECH", + "nomCommune": "ST AMANS DU PECH" }, { - "codePostal": "38580", - "codeCommune": "38006", - "libelleAcheminement": "ALLEVARD", - "nomCommune": "ALLEVARD" + "codePostal": "82110", + "codeCommune": "82154", + "libelleAcheminement": "ST AMANS DE PELLAGAL", + "nomCommune": "ST AMANS DE PELLAGAL" }, { - "codePostal": "38490", - "codeCommune": "38012", - "libelleAcheminement": "AOSTE", - "nomCommune": "AOSTE" + "codePostal": "82410", + "codeCommune": "82161", + "libelleAcheminement": "ST ETIENNE DE TULMONT", + "nomCommune": "ST ETIENNE DE TULMONT" }, { - "codePostal": "38140", - "codeCommune": "38013", - "libelleAcheminement": "APPRIEU", - "nomCommune": "APPRIEU" + "codePostal": "82240", + "codeCommune": "82162", + "libelleAcheminement": "ST GEORGES", + "nomCommune": "ST GEORGES" }, { - "codePostal": "38140", - "codeCommune": "38013", - "libelleAcheminement": "APPRIEU", - "nomCommune": "APPRIEU" + "codePostal": "82230", + "codeCommune": "82176", + "libelleAcheminement": "LA SALVETAT BELMONTET", + "nomCommune": "LA SALVETAT BELMONTET" }, { - "codePostal": "38150", - "codeCommune": "38017", - "libelleAcheminement": "ASSIEU", - "nomCommune": "ASSIEU" + "codePostal": "82110", + "codeCommune": "82177", + "libelleAcheminement": "SAUVETERRE", + "nomCommune": "SAUVETERRE" }, { - "codePostal": "38142", - "codeCommune": "38020", - "libelleAcheminement": "AURIS", - "nomCommune": "AURIS" + "codePostal": "82500", + "codeCommune": "82180", + "libelleAcheminement": "SERIGNAC", + "nomCommune": "SERIGNAC" }, { - "codePostal": "38650", - "codeCommune": "38023", - "libelleAcheminement": "AVIGNONET", - "nomCommune": "AVIGNONET" + "codePostal": "82330", + "codeCommune": "82187", + "libelleAcheminement": "VAREN", + "nomCommune": "VAREN" }, { - "codePostal": "38870", - "codeCommune": "38056", - "libelleAcheminement": "BRESSIEUX", - "nomCommune": "BRESSIEUX" + "codePostal": "82370", + "codeCommune": "82194", + "libelleAcheminement": "VILLEBRUMIER", + "nomCommune": "VILLEBRUMIER" }, { - "codePostal": "38500", - "codeCommune": "38061", - "libelleAcheminement": "LA BUISSE", - "nomCommune": "LA BUISSE" + "codePostal": "82130", + "codeCommune": "82195", + "libelleAcheminement": "VILLEMADE", + "nomCommune": "VILLEMADE" }, { - "codePostal": "38530", - "codeCommune": "38062", - "libelleAcheminement": "LA BUISSIERE", - "nomCommune": "LA BUISSIERE" + "codePostal": "83630", + "codeCommune": "83002", + "libelleAcheminement": "AIGUINES", + "nomCommune": "AIGUINES" }, { - "codePostal": "38122", - "codeCommune": "38066", - "libelleAcheminement": "CHALON", - "nomCommune": "CHALON" + "codePostal": "83111", + "codeCommune": "83003", + "libelleAcheminement": "AMPUS", + "nomCommune": "AMPUS" }, { - "codePostal": "38460", - "codeCommune": "38067", - "libelleAcheminement": "CHAMAGNIEU", - "nomCommune": "CHAMAGNIEU" + "codePostal": "83560", + "codeCommune": "83006", + "libelleAcheminement": "ARTIGUES", + "nomCommune": "ARTIGUES" }, { - "codePostal": "38110", - "codeCommune": "38076", - "libelleAcheminement": "LA CHAPELLE DE LA TOUR", - "nomCommune": "LA CHAPELLE DE LA TOUR" + "codePostal": "83630", + "codeCommune": "83007", + "libelleAcheminement": "AUPS", + "nomCommune": "AUPS" }, { - "codePostal": "38580", - "codeCommune": "38078", - "libelleAcheminement": "LA CHAPELLE DU BARD", - "nomCommune": "LA CHAPELLE DU BARD" + "codePostal": "83630", + "codeCommune": "83014", + "libelleAcheminement": "BAUDINARD SUR VERDON", + "nomCommune": "BAUDINARD SUR VERDON" }, { - "codePostal": "38390", - "codeCommune": "38083", - "libelleAcheminement": "CHARETTE", - "nomCommune": "CHARETTE" + "codePostal": "83630", + "codeCommune": "83015", + "libelleAcheminement": "BAUDUEN", + "nomCommune": "BAUDUEN" }, { - "codePostal": "38670", - "codeCommune": "38087", - "libelleAcheminement": "CHASSE SUR RHONE", - "nomCommune": "CHASSE SUR RHONE" + "codePostal": "83330", + "codeCommune": "83016", + "libelleAcheminement": "LE BEAUSSET", + "nomCommune": "LE BEAUSSET" }, { - "codePostal": "38650", - "codeCommune": "38090", - "libelleAcheminement": "CHATEAU BERNARD", - "nomCommune": "CHATEAU BERNARD" + "codePostal": "83230", + "codeCommune": "83019", + "libelleAcheminement": "BORMES LES MIMOSAS", + "nomCommune": "BORMES LES MIMOSAS" }, { - "codePostal": "38160", - "codeCommune": "38099", - "libelleAcheminement": "CHEVRIERES", - "nomCommune": "CHEVRIERES" + "codePostal": "83340", + "codeCommune": "83031", + "libelleAcheminement": "LE CANNET DES MAURES", + "nomCommune": "LE CANNET DES MAURES" }, { - "codePostal": "38300", - "codeCommune": "38102", - "libelleAcheminement": "CHEZENEUVE", - "nomCommune": "CHEZENEUVE" + "codePostal": "83660", + "codeCommune": "83033", + "libelleAcheminement": "CARNOULES", + "nomCommune": "CARNOULES" }, { - "codePostal": "38930", - "codeCommune": "38113", - "libelleAcheminement": "CLELLES EN TRIEVES", - "nomCommune": "CLELLES" + "codePostal": "83330", + "codeCommune": "83035", + "libelleAcheminement": "LE CASTELLET", + "nomCommune": "LE CASTELLET" }, { - "codePostal": "38650", - "codeCommune": "38115", - "libelleAcheminement": "ST MARTIN DE LA CLUZE", - "nomCommune": "ST MARTIN DE LA CLUZE" + "codePostal": "83330", + "codeCommune": "83035", + "libelleAcheminement": "LE CASTELLET", + "nomCommune": "LE CASTELLET" }, { - "codePostal": "38710", - "codeCommune": "38127", - "libelleAcheminement": "CORNILLON EN TRIEVES", - "nomCommune": "CORNILLON EN TRIEVES" + "codePostal": "83330", + "codeCommune": "83035", + "libelleAcheminement": "LE CASTELLET", + "nomCommune": "LE CASTELLET" }, { - "codePostal": "38122", - "codeCommune": "38134", - "libelleAcheminement": "COUR ET BUIS", - "nomCommune": "COUR ET BUIS" + "codePostal": "83310", + "codeCommune": "83042", + "libelleAcheminement": "COGOLIN", + "nomCommune": "COGOLIN" }, { - "codePostal": "38510", - "codeCommune": "38139", - "libelleAcheminement": "CREYS MEPIEU", - "nomCommune": "CREYS MEPIEU" + "codePostal": "83570", + "codeCommune": "83045", + "libelleAcheminement": "CORRENS", + "nomCommune": "CORRENS" }, { - "codePostal": "38730", - "codeCommune": "38147", - "libelleAcheminement": "DOISSIN", - "nomCommune": "DOISSIN" + "codePostal": "83420", + "codeCommune": "83048", + "libelleAcheminement": "LA CROIX VALMER", + "nomCommune": "LA CROIX VALMER" }, { - "codePostal": "38780", - "codeCommune": "38160", - "libelleAcheminement": "EYZIN PINET", - "nomCommune": "EYZIN PINET" + "codePostal": "83680", + "codeCommune": "83063", + "libelleAcheminement": "LA GARDE FREINET", + "nomCommune": "LA GARDE FREINET" }, { - "codePostal": "38120", - "codeCommune": "38170", - "libelleAcheminement": "FONTANIL CORNILLON", - "nomCommune": "FONTANIL CORNILLON" + "codePostal": "83310", + "codeCommune": "83068", + "libelleAcheminement": "GRIMAUD", + "nomCommune": "GRIMAUD" }, { - "codePostal": "38590", - "codeCommune": "38171", - "libelleAcheminement": "LA FORTERESSE", - "nomCommune": "LA FORTERESSE" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "38260", - "codeCommune": "38174", - "libelleAcheminement": "LA FRETTE", - "nomCommune": "LA FRETTE" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "38610", - "codeCommune": "38179", - "libelleAcheminement": "GIERES", - "nomCommune": "GIERES" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "38000", - "codeCommune": "38185", - "libelleAcheminement": "GRENOBLE", - "nomCommune": "GRENOBLE" + "codePostal": "83250", + "codeCommune": "83071", + "libelleAcheminement": "LA LONDE LES MAURES", + "nomCommune": "LA LONDE LES MAURES" }, { - "codePostal": "38100", - "codeCommune": "38185", - "libelleAcheminement": "GRENOBLE", - "nomCommune": "GRENOBLE" + "codePostal": "83510", + "codeCommune": "83072", + "libelleAcheminement": "LORGUES", + "nomCommune": "LORGUES" }, { - "codePostal": "38650", - "codeCommune": "38186", - "libelleAcheminement": "GRESSE EN VERCORS", - "nomCommune": "GRESSE EN VERCORS" + "codePostal": "83340", + "codeCommune": "83075", + "libelleAcheminement": "LES MAYONS", + "nomCommune": "LES MAYONS" }, { - "codePostal": "38750", - "codeCommune": "38191", - "libelleAcheminement": "HUEZ", - "nomCommune": "HUEZ" + "codePostal": "83136", + "codeCommune": "83076", + "libelleAcheminement": "MAZAUGUES", + "nomCommune": "MAZAUGUES" }, { - "codePostal": "38160", - "codeCommune": "38195", - "libelleAcheminement": "IZERON", - "nomCommune": "IZERON" + "codePostal": "83630", + "codeCommune": "83078", + "libelleAcheminement": "MOISSAC BELLEVUE", + "nomCommune": "MOISSAC BELLEVUE" }, { - "codePostal": "38280", - "codeCommune": "38197", - "libelleAcheminement": "JANNEYRIAS", - "nomCommune": "JANNEYRIAS" + "codePostal": "83131", + "codeCommune": "83082", + "libelleAcheminement": "MONTFERRAT", + "nomCommune": "MONTFERRAT" }, { - "codePostal": "38200", - "codeCommune": "38199", - "libelleAcheminement": "JARDIN", - "nomCommune": "JARDIN" + "codePostal": "83470", + "codeCommune": "83089", + "libelleAcheminement": "OLLIERES", + "nomCommune": "OLLIERES" }, { - "codePostal": "38190", - "codeCommune": "38206", - "libelleAcheminement": "LAVAL EN BELLEDONNE", - "nomCommune": "LAVAL EN BELLEDONNE" + "codePostal": "83910", + "codeCommune": "83097", + "libelleAcheminement": "POURRIERES", + "nomCommune": "POURRIERES" }, { - "codePostal": "38460", - "codeCommune": "38210", - "libelleAcheminement": "LEYRIEU", - "nomCommune": "LEYRIEU" + "codePostal": "83220", + "codeCommune": "83098", + "libelleAcheminement": "LE PRADET", + "nomCommune": "LE PRADET" }, { - "codePostal": "38220", - "codeCommune": "38212", - "libelleAcheminement": "LIVET ET GAVET", - "nomCommune": "LIVET ET GAVET" + "codePostal": "83390", + "codeCommune": "83100", + "libelleAcheminement": "PUGET VILLE", + "nomCommune": "PUGET VILLE" }, { - "codePostal": "38350", - "codeCommune": "38217", - "libelleAcheminement": "MARCIEU", - "nomCommune": "MARCIEU" + "codePostal": "83350", + "codeCommune": "83101", + "libelleAcheminement": "RAMATUELLE", + "nomCommune": "RAMATUELLE" }, { - "codePostal": "38980", - "codeCommune": "38221", - "libelleAcheminement": "MARNANS", - "nomCommune": "MARNANS" + "codePostal": "13780", + "codeCommune": "83105", + "libelleAcheminement": "RIBOUX", + "nomCommune": "RIBOUX" }, { - "codePostal": "38710", - "codeCommune": "38226", - "libelleAcheminement": "MENS", - "nomCommune": "MENS" + "codePostal": "83440", + "codeCommune": "83117", + "libelleAcheminement": "ST PAUL EN FORET", + "nomCommune": "ST PAUL EN FORET" }, { - "codePostal": "38710", - "codeCommune": "38226", - "libelleAcheminement": "MENS", - "nomCommune": "MENS" + "codePostal": "83530", + "codeCommune": "83118", + "libelleAcheminement": "ST RAPHAEL", + "nomCommune": "ST RAPHAEL" }, { - "codePostal": "38142", - "codeCommune": "38237", - "libelleAcheminement": "MIZOEN", - "nomCommune": "MIZOEN" + "codePostal": "83700", + "codeCommune": "83118", + "libelleAcheminement": "ST RAPHAEL", + "nomCommune": "ST RAPHAEL" }, { - "codePostal": "38860", - "codeCommune": "38253", - "libelleAcheminement": "LES DEUX ALPES", - "nomCommune": "LES DEUX ALPES" + "codePostal": "83210", + "codeCommune": "83130", + "libelleAcheminement": "SOLLIES PONT", + "nomCommune": "SOLLIES PONT" }, { - "codePostal": "38940", - "codeCommune": "38255", - "libelleAcheminement": "MONTFALCON", - "nomCommune": "MONTFALCON" + "codePostal": "83210", + "codeCommune": "83131", + "libelleAcheminement": "SOLLIES TOUCAS", + "nomCommune": "SOLLIES TOUCAS" }, { - "codePostal": "38620", - "codeCommune": "38256", - "libelleAcheminement": "MONTFERRAT", - "nomCommune": "MONTFERRAT" + "codePostal": "83100", + "codeCommune": "83137", + "libelleAcheminement": "TOULON", + "nomCommune": "TOULON" }, { - "codePostal": "38690", - "codeCommune": "38257", - "libelleAcheminement": "MONTREVEL", - "nomCommune": "MONTREVEL" + "codePostal": "83690", + "codeCommune": "83139", + "libelleAcheminement": "TOURTOUR", + "nomCommune": "TOURTOUR" }, { - "codePostal": "38770", - "codeCommune": "38265", - "libelleAcheminement": "LA MOTTE D AVEILLANS", - "nomCommune": "LA MOTTE D AVEILLANS" + "codePostal": "84240", + "codeCommune": "84009", + "libelleAcheminement": "LA BASTIDE DES JOURDANS", + "nomCommune": "LA BASTIDE DES JOURDANS" }, { - "codePostal": "38140", - "codeCommune": "38270", - "libelleAcheminement": "LA MURETTE", - "nomCommune": "LA MURETTE" + "codePostal": "84120", + "codeCommune": "84014", + "libelleAcheminement": "BEAUMONT DE PERTUIS", + "nomCommune": "BEAUMONT DE PERTUIS" }, { - "codePostal": "38510", - "codeCommune": "38297", - "libelleAcheminement": "ARANDON PASSINS", - "nomCommune": "ARANDON PASSINS" + "codePostal": "84570", + "codeCommune": "84018", + "libelleAcheminement": "BLAUVAC", + "nomCommune": "BLAUVAC" }, { - "codePostal": "38970", - "codeCommune": "38299", - "libelleAcheminement": "PELLAFOL", - "nomCommune": "PELLAFOL" + "codePostal": "84220", + "codeCommune": "84025", + "libelleAcheminement": "CABRIERES D AVIGNON", + "nomCommune": "CABRIERES D AVIGNON" }, { - "codePostal": "38260", - "codeCommune": "38300", - "libelleAcheminement": "PENOL", - "nomCommune": "PENOL" + "codePostal": "84460", + "codeCommune": "84038", + "libelleAcheminement": "CHEVAL BLANC", + "nomCommune": "CHEVAL BLANC" }, { - "codePostal": "38119", - "codeCommune": "38304", - "libelleAcheminement": "PIERRE CHATEL", - "nomCommune": "PIERRE CHATEL" + "codePostal": "84340", + "codeCommune": "84044", + "libelleAcheminement": "ENTRECHAUX", + "nomCommune": "ENTRECHAUX" }, { - "codePostal": "38320", - "codeCommune": "38309", - "libelleAcheminement": "POISAT", - "nomCommune": "POISAT" + "codePostal": "84400", + "codeCommune": "84047", + "libelleAcheminement": "GARGAS", + "nomCommune": "GARGAS" }, { - "codePostal": "38210", - "codeCommune": "38310", - "libelleAcheminement": "POLIENAS", - "nomCommune": "POLIENAS" + "codePostal": "84220", + "codeCommune": "84051", + "libelleAcheminement": "GOULT", + "nomCommune": "GOULT" }, { - "codePostal": "38530", - "codeCommune": "38314", - "libelleAcheminement": "PONTCHARRA", - "nomCommune": "PONTCHARRA" + "codePostal": "84220", + "codeCommune": "84057", + "libelleAcheminement": "JOUCAS", + "nomCommune": "JOUCAS" }, { - "codePostal": "38480", - "codeCommune": "38315", - "libelleAcheminement": "LE PONT DE BEAUVOISIN", - "nomCommune": "LE PONT DE BEAUVOISIN" + "codePostal": "84190", + "codeCommune": "84059", + "libelleAcheminement": "LAFARE", + "nomCommune": "LAFARE" }, { - "codePostal": "38230", - "codeCommune": "38316", - "libelleAcheminement": "PONT DE CHERUY", - "nomCommune": "PONT DE CHERUY" + "codePostal": "84800", + "codeCommune": "84062", + "libelleAcheminement": "LAGNES", + "nomCommune": "LAGNES" }, { - "codePostal": "38800", - "codeCommune": "38317", - "libelleAcheminement": "LE PONT DE CLAIX", - "nomCommune": "LE PONT DE CLAIX" + "codePostal": "84160", + "codeCommune": "84068", + "libelleAcheminement": "LOURMARIN", + "nomCommune": "LOURMARIN" }, { - "codePostal": "38480", - "codeCommune": "38323", - "libelleAcheminement": "PRESSINS", - "nomCommune": "PRESSINS" + "codePostal": "84340", + "codeCommune": "84069", + "libelleAcheminement": "MALAUCENE", + "nomCommune": "MALAUCENE" }, { - "codePostal": "38140", - "codeCommune": "38332", - "libelleAcheminement": "RENAGE", - "nomCommune": "RENAGE" + "codePostal": "84660", + "codeCommune": "84071", + "libelleAcheminement": "MAUBEC", + "nomCommune": "MAUBEC" }, { - "codePostal": "38121", - "codeCommune": "38336", - "libelleAcheminement": "REVENTIN VAUGRIS", - "nomCommune": "REVENTIN VAUGRIS" + "codePostal": "84380", + "codeCommune": "84072", + "libelleAcheminement": "MAZAN", + "nomCommune": "MAZAN" }, { - "codePostal": "38440", - "codeCommune": "38346", - "libelleAcheminement": "ROYAS", - "nomCommune": "ROYAS" + "codePostal": "84360", + "codeCommune": "84074", + "libelleAcheminement": "MERINDOL", + "nomCommune": "MERINDOL" }, { - "codePostal": "38550", - "codeCommune": "38349", - "libelleAcheminement": "SABLONS", - "nomCommune": "SABLONS" + "codePostal": "84570", + "codeCommune": "84075", + "libelleAcheminement": "METHAMIS", + "nomCommune": "METHAMIS" }, { - "codePostal": "38480", - "codeCommune": "38354", - "libelleAcheminement": "ST ALBIN DE VAULSERRE", - "nomCommune": "ST ALBIN DE VAULSERRE" + "codePostal": "84430", + "codeCommune": "84078", + "libelleAcheminement": "MONDRAGON", + "nomCommune": "MONDRAGON" }, { - "codePostal": "38490", - "codeCommune": "38357", - "libelleAcheminement": "ST ANDRE LE GAZ", - "nomCommune": "ST ANDRE LE GAZ" + "codePostal": "84170", + "codeCommune": "84080", + "libelleAcheminement": "MONTEUX", + "nomCommune": "MONTEUX" }, { - "codePostal": "38160", - "codeCommune": "38359", - "libelleAcheminement": "ST ANTOINE L ABBAYE", - "nomCommune": "ST ANTOINE L ABBAYE" + "codePostal": "84240", + "codeCommune": "84084", + "libelleAcheminement": "LA MOTTE D AIGUES", + "nomCommune": "LA MOTTE D AIGUES" }, { - "codePostal": "38140", - "codeCommune": "38368", - "libelleAcheminement": "ST BLAISE DU BUIS", - "nomCommune": "ST BLAISE DU BUIS" + "codePostal": "84120", + "codeCommune": "84089", + "libelleAcheminement": "PERTUIS", + "nomCommune": "PERTUIS" }, { - "codePostal": "38520", - "codeCommune": "38375", - "libelleAcheminement": "ST CHRISTOPHE EN OISANS", - "nomCommune": "ST CHRISTOPHE EN OISANS" + "codePostal": "84400", + "codeCommune": "84105", + "libelleAcheminement": "SAIGNON", + "nomCommune": "SAIGNON" }, { - "codePostal": "38380", - "codeCommune": "38376", - "libelleAcheminement": "ST CHRISTOPHE SUR GUIERS", - "nomCommune": "ST CHRISTOPHE SUR GUIERS" + "codePostal": "84390", + "codeCommune": "84110", + "libelleAcheminement": "ST LEGER DU VENTOUX", + "nomCommune": "ST LEGER DU VENTOUX" }, { - "codePostal": "38370", - "codeCommune": "38378", - "libelleAcheminement": "ST CLAIR DU RHONE", - "nomCommune": "ST CLAIR DU RHONE" + "codePostal": "84760", + "codeCommune": "84113", + "libelleAcheminement": "ST MARTIN DE LA BRASQUE", + "nomCommune": "ST MARTIN DE LA BRASQUE" }, { - "codePostal": "38940", - "codeCommune": "38379", - "libelleAcheminement": "ST CLAIR SUR GALAURE", - "nomCommune": "ST CLAIR SUR GALAURE" + "codePostal": "84220", + "codeCommune": "84114", + "libelleAcheminement": "ST PANTALEON", + "nomCommune": "ST PANTALEON" }, { - "codePostal": "38590", - "codeCommune": "38387", - "libelleAcheminement": "ST GEOIRS", - "nomCommune": "ST GEOIRS" + "codePostal": "84390", + "codeCommune": "84120", + "libelleAcheminement": "ST TRINIT", + "nomCommune": "ST TRINIT" }, { - "codePostal": "38650", - "codeCommune": "38391", - "libelleAcheminement": "ST GUILLAUME", - "nomCommune": "ST GUILLAUME" + "codePostal": "84100", + "codeCommune": "84135", + "libelleAcheminement": "UCHAUX", + "nomCommune": "UCHAUX" }, { - "codePostal": "38840", - "codeCommune": "38394", - "libelleAcheminement": "ST HILAIRE DU ROSIER", - "nomCommune": "ST HILAIRE DU ROSIER" + "codePostal": "84600", + "codeCommune": "84138", + "libelleAcheminement": "VALREAS", + "nomCommune": "VALREAS" }, { - "codePostal": "38660", - "codeCommune": "38395", - "libelleAcheminement": "PLATEAU DES PETITES ROCHES", - "nomCommune": "PLATEAU DES PETITES ROCHES" + "codePostal": "84800", + "codeCommune": "84139", + "libelleAcheminement": "FONTAINE DE VAUCLUSE", + "nomCommune": "FONTAINE DE VAUCLUSE" }, { - "codePostal": "38350", - "codeCommune": "38396", - "libelleAcheminement": "ST HONORE", - "nomCommune": "ST HONORE" + "codePostal": "84400", + "codeCommune": "84145", + "libelleAcheminement": "VILLARS", + "nomCommune": "VILLARS" }, { - "codePostal": "38122", - "codeCommune": "38406", - "libelleAcheminement": "ST JULIEN DE L HERMS", - "nomCommune": "ST JULIEN DE L HERMS" + "codePostal": "84110", + "codeCommune": "84146", + "libelleAcheminement": "VILLEDIEU", + "nomCommune": "VILLEDIEU" }, { - "codePostal": "38840", - "codeCommune": "38410", - "libelleAcheminement": "ST LATTIER", - "nomCommune": "ST LATTIER" + "codePostal": "84570", + "codeCommune": "84148", + "libelleAcheminement": "VILLES SUR AUZON", + "nomCommune": "VILLES SUR AUZON" }, { - "codePostal": "38160", - "codeCommune": "38416", - "libelleAcheminement": "ST MARCELLIN", - "nomCommune": "ST MARCELLIN" + "codePostal": "84150", + "codeCommune": "84149", + "libelleAcheminement": "VIOLES", + "nomCommune": "VIOLES" }, { - "codePostal": "38590", - "codeCommune": "38427", - "libelleAcheminement": "ST MICHEL DE ST GEOIRS", - "nomCommune": "ST MICHEL DE ST GEOIRS" + "codePostal": "84240", + "codeCommune": "84151", + "libelleAcheminement": "VITROLLES EN LUBERON", + "nomCommune": "VITROLLES EN LUBERON" }, { - "codePostal": "38500", - "codeCommune": "38432", - "libelleAcheminement": "ST NICOLAS DE MACHERIN", - "nomCommune": "ST NICOLAS DE MACHERIN" + "codePostal": "85460", + "codeCommune": "85001", + "libelleAcheminement": "L AIGUILLON LA PRESQU ILE", + "nomCommune": "L AIGUILLON LA PRESQU ILE" }, { - "codePostal": "38380", - "codeCommune": "38442", - "libelleAcheminement": "ST PIERRE DE CHARTREUSE", - "nomCommune": "ST PIERRE DE CHARTREUSE" + "codePostal": "85390", + "codeCommune": "85014", + "libelleAcheminement": "BAZOGES EN PAREDS", + "nomCommune": "BAZOGES EN PAREDS" }, { - "codePostal": "38220", - "codeCommune": "38445", - "libelleAcheminement": "ST PIERRE DE MESAGE", - "nomCommune": "ST PIERRE DE MESAGE" + "codePostal": "85190", + "codeCommune": "85016", + "libelleAcheminement": "BEAULIEU SOUS LA ROCHE", + "nomCommune": "BEAULIEU SOUS LA ROCHE" }, { - "codePostal": "38370", - "codeCommune": "38448", - "libelleAcheminement": "ST PRIM", - "nomCommune": "ST PRIM" + "codePostal": "85170", + "codeCommune": "85019", + "libelleAcheminement": "BELLEVIGNY", + "nomCommune": "BELLEVIGNY" }, { - "codePostal": "38210", - "codeCommune": "38450", - "libelleAcheminement": "ST QUENTIN SUR ISERE", - "nomCommune": "ST QUENTIN SUR ISERE" + "codePostal": "85490", + "codeCommune": "85020", + "libelleAcheminement": "BENET", + "nomCommune": "BENET" }, { - "codePostal": "38460", - "codeCommune": "38451", - "libelleAcheminement": "ST ROMAIN DE JALIONAS", - "nomCommune": "ST ROMAIN DE JALIONAS" + "codePostal": "85320", + "codeCommune": "85023", + "libelleAcheminement": "BESSAY", + "nomCommune": "BESSAY" }, { - "codePostal": "38200", - "codeCommune": "38459", - "libelleAcheminement": "ST SORLIN DE VIENNE", - "nomCommune": "ST SORLIN DE VIENNE" + "codePostal": "85230", + "codeCommune": "85029", + "libelleAcheminement": "BOUIN", + "nomCommune": "BOUIN" }, { - "codePostal": "38620", - "codeCommune": "38460", - "libelleAcheminement": "ST SULPICE DES RIVOIRES", - "nomCommune": "ST SULPICE DES RIVOIRES" + "codePostal": "85480", + "codeCommune": "85034", + "libelleAcheminement": "BOURNEZEAU", + "nomCommune": "BOURNEZEAU" }, { - "codePostal": "38119", - "codeCommune": "38462", - "libelleAcheminement": "ST THEOFFREY", - "nomCommune": "ST THEOFFREY" + "codePostal": "85530", + "codeCommune": "85039", + "libelleAcheminement": "LA BRUFFIERE", + "nomCommune": "LA BRUFFIERE" }, { - "codePostal": "38160", - "codeCommune": "38463", - "libelleAcheminement": "ST VERAND", - "nomCommune": "ST VERAND" + "codePostal": "85450", + "codeCommune": "85042", + "libelleAcheminement": "CHAILLE LES MARAIS", + "nomCommune": "CHAILLE LES MARAIS" }, { - "codePostal": "38510", - "codeCommune": "38465", - "libelleAcheminement": "ST VICTOR DE MORESTEL", - "nomCommune": "ST VICTOR DE MORESTEL" + "codePostal": "85310", + "codeCommune": "85046", + "libelleAcheminement": "LA CHAIZE LE VICOMTE", + "nomCommune": "LA CHAIZE LE VICOMTE" }, { - "codePostal": "38150", - "codeCommune": "38468", - "libelleAcheminement": "SALAISE SUR SANNE", - "nomCommune": "SALAISE SUR SANNE" + "codePostal": "85710", + "codeCommune": "85062", + "libelleAcheminement": "CHATEAUNEUF", + "nomCommune": "CHATEAUNEUF" }, { - "codePostal": "38970", - "codeCommune": "38469", - "libelleAcheminement": "LA SALETTE FALLAVAUX", - "nomCommune": "LA SALETTE FALLAVAUX" + "codePostal": "85250", + "codeCommune": "85065", + "libelleAcheminement": "CHAVAGNES EN PAILLERS", + "nomCommune": "CHAVAGNES EN PAILLERS" }, { - "codePostal": "38350", - "codeCommune": "38470", - "libelleAcheminement": "LA SALLE EN BEAUMONT", - "nomCommune": "LA SALLE EN BEAUMONT" + "codePostal": "85740", + "codeCommune": "85083", + "libelleAcheminement": "L EPINE", + "nomCommune": "L EPINE" }, { - "codePostal": "38360", - "codeCommune": "38474", - "libelleAcheminement": "SASSENAGE", - "nomCommune": "SASSENAGE" + "codePostal": "85200", + "codeCommune": "85092", + "libelleAcheminement": "FONTENAY LE COMTE", + "nomCommune": "FONTENAY LE COMTE" }, { - "codePostal": "38260", - "codeCommune": "38479", - "libelleAcheminement": "PORTE DES BONNEVAUX", - "nomCommune": "PORTE DES BONNEVAUX" + "codePostal": "85240", + "codeCommune": "85094", + "libelleAcheminement": "FOUSSAIS PAYRE", + "nomCommune": "FOUSSAIS PAYRE" }, { - "codePostal": "38260", - "codeCommune": "38479", - "libelleAcheminement": "PORTE DES BONNEVAUX", - "nomCommune": "PORTE DES BONNEVAUX" + "codePostal": "85300", + "codeCommune": "85095", + "libelleAcheminement": "FROIDFOND", + "nomCommune": "FROIDFOND" }, { - "codePostal": "38200", - "codeCommune": "38487", - "libelleAcheminement": "SEYSSUEL", - "nomCommune": "SEYSSUEL" + "codePostal": "85710", + "codeCommune": "85096", + "libelleAcheminement": "LA GARNACHE", + "nomCommune": "LA GARNACHE" }, { - "codePostal": "38300", - "codeCommune": "38498", - "libelleAcheminement": "SUCCIEU", - "nomCommune": "SUCCIEU" + "codePostal": "85680", + "codeCommune": "85106", + "libelleAcheminement": "LA GUERINIERE", + "nomCommune": "LA GUERINIERE" }, { - "codePostal": "38230", - "codeCommune": "38507", - "libelleAcheminement": "TIGNIEU JAMEYZIEU", - "nomCommune": "TIGNIEU JAMEYZIEU" + "codePostal": "85500", + "codeCommune": "85109", + "libelleAcheminement": "LES HERBIERS", + "nomCommune": "LES HERBIERS" }, { - "codePostal": "38690", - "codeCommune": "38508", - "libelleAcheminement": "TORCHEFELON", - "nomCommune": "TORCHEFELON" + "codePostal": "85540", + "codeCommune": "85116", + "libelleAcheminement": "LA JONCHERE", + "nomCommune": "LA JONCHERE" }, { - "codePostal": "38110", - "codeCommune": "38509", - "libelleAcheminement": "LA TOUR DU PIN", - "nomCommune": "LA TOUR DU PIN" + "codePostal": "85170", + "codeCommune": "85129", + "libelleAcheminement": "LES LUCS SUR BOULOGNE", + "nomCommune": "LES LUCS SUR BOULOGNE" }, { - "codePostal": "38210", - "codeCommune": "38517", - "libelleAcheminement": "TULLINS", - "nomCommune": "TULLINS" + "codePostal": "85700", + "codeCommune": "85140", + "libelleAcheminement": "LA MEILLERAIE TILLAY", + "nomCommune": "LA MEILLERAIE TILLAY" }, { - "codePostal": "38090", - "codeCommune": "38530", - "libelleAcheminement": "VAULX MILIEU", - "nomCommune": "VAULX MILIEU" + "codePostal": "85700", + "codeCommune": "85141", + "libelleAcheminement": "MENOMBLET", + "nomCommune": "MENOMBLET" }, { - "codePostal": "38460", - "codeCommune": "38535", - "libelleAcheminement": "VERNAS", - "nomCommune": "VERNAS" + "codePostal": "85110", + "codeCommune": "85145", + "libelleAcheminement": "MONSIREIGNE", + "nomCommune": "MONSIREIGNE" }, { - "codePostal": "38290", - "codeCommune": "38537", - "libelleAcheminement": "LA VERPILLIERE", - "nomCommune": "LA VERPILLIERE" + "codePostal": "85600", + "codeCommune": "85146", + "libelleAcheminement": "MONTAIGU VENDEE", + "nomCommune": "MONTAIGU VENDEE" }, { - "codePostal": "38200", - "codeCommune": "38544", - "libelleAcheminement": "VIENNE", - "nomCommune": "VIENNE" + "codePostal": "85600", + "codeCommune": "85146", + "libelleAcheminement": "MONTAIGU VENDEE", + "nomCommune": "MONTAIGU VENDEE" }, { - "codePostal": "38450", - "codeCommune": "38545", - "libelleAcheminement": "VIF", - "nomCommune": "VIF" + "codePostal": "85700", + "codeCommune": "85147", + "libelleAcheminement": "MONTOURNAIS", + "nomCommune": "MONTOURNAIS" }, { - "codePostal": "38114", - "codeCommune": "38550", - "libelleAcheminement": "VILLARD RECULAS", - "nomCommune": "VILLARD RECULAS" + "codePostal": "85640", + "codeCommune": "85153", + "libelleAcheminement": "MOUCHAMPS", + "nomCommune": "MOUCHAMPS" }, { - "codePostal": "38090", - "codeCommune": "38553", - "libelleAcheminement": "VILLEFONTAINE", - "nomCommune": "VILLEFONTAINE" + "codePostal": "85320", + "codeCommune": "85157", + "libelleAcheminement": "MOUTIERS SUR LE LAY", + "nomCommune": "MOUTIERS SUR LE LAY" }, { - "codePostal": "38460", - "codeCommune": "38554", - "libelleAcheminement": "VILLEMOIRIEU", - "nomCommune": "VILLEMOIRIEU" + "codePostal": "85370", + "codeCommune": "85158", + "libelleAcheminement": "MOUZEUIL ST MARTIN", + "nomCommune": "MOUZEUIL ST MARTIN" }, { - "codePostal": "38150", - "codeCommune": "38556", - "libelleAcheminement": "VILLE SOUS ANJOU", - "nomCommune": "VILLE SOUS ANJOU" + "codePostal": "85310", + "codeCommune": "85160", + "libelleAcheminement": "NESMY", + "nomCommune": "NESMY" }, { - "codePostal": "38730", - "codeCommune": "38560", - "libelleAcheminement": "VAL DE VIRIEU", - "nomCommune": "VAL DE VIRIEU" + "codePostal": "85690", + "codeCommune": "85164", + "libelleAcheminement": "NOTRE DAME DE MONTS", + "nomCommune": "NOTRE DAME DE MONTS" }, { - "codePostal": "38620", - "codeCommune": "38564", - "libelleAcheminement": "VOISSANT", - "nomCommune": "VOISSANT" + "codePostal": "85200", + "codeCommune": "85167", + "libelleAcheminement": "L ORBRIE", + "nomCommune": "L ORBRIE" }, { - "codePostal": "38410", - "codeCommune": "38567", - "libelleAcheminement": "CHAMROUSSE", - "nomCommune": "CHAMROUSSE" + "codePostal": "85670", + "codeCommune": "85169", + "libelleAcheminement": "PALLUAU", + "nomCommune": "PALLUAU" }, { - "codePostal": "39270", - "codeCommune": "39007", - "libelleAcheminement": "ALIEZE", - "nomCommune": "ALIEZE" + "codePostal": "85300", + "codeCommune": "85172", + "libelleAcheminement": "LE PERRIER", + "nomCommune": "LE PERRIER" }, { - "codePostal": "39240", - "codeCommune": "39018", - "libelleAcheminement": "AROMAS", - "nomCommune": "AROMAS" + "codePostal": "85570", + "codeCommune": "85181", + "libelleAcheminement": "POUILLE", + "nomCommune": "POUILLE" }, { - "codePostal": "39600", - "codeCommune": "39019", - "libelleAcheminement": "LES ARSURES", - "nomCommune": "LES ARSURES" + "codePostal": "85700", + "codeCommune": "85182", + "libelleAcheminement": "POUZAUGES", + "nomCommune": "POUZAUGES" }, { - "codePostal": "39700", - "codeCommune": "39024", - "libelleAcheminement": "AUDELANGE", - "nomCommune": "AUDELANGE" + "codePostal": "85240", + "codeCommune": "85184", + "libelleAcheminement": "PUY DE SERRE", + "nomCommune": "PUY DE SERRE" }, { - "codePostal": "39270", - "codeCommune": "39027", - "libelleAcheminement": "AUGISEY", - "nomCommune": "AUGISEY" + "codePostal": "85270", + "codeCommune": "85189", + "libelleAcheminement": "NOTRE DAME DE RIEZ", + "nomCommune": "NOTRE DAME DE RIEZ" }, { - "codePostal": "39160", - "codeCommune": "39035", - "libelleAcheminement": "BALANOD", - "nomCommune": "BALANOD" + "codePostal": "85540", + "codeCommune": "85201", + "libelleAcheminement": "ST BENOIST SUR MER", + "nomCommune": "ST BENOIST SUR MER" }, { - "codePostal": "39380", - "codeCommune": "39037", - "libelleAcheminement": "BANS", - "nomCommune": "BANS" + "codePostal": "85670", + "codeCommune": "85204", + "libelleAcheminement": "ST CHRISTOPHE DU LIGNERON", + "nomCommune": "ST CHRISTOPHE DU LIGNERON" }, { - "codePostal": "39190", - "codeCommune": "39043", - "libelleAcheminement": "BEAUFORT ORBAGNA", - "nomCommune": "BEAUFORT ORBAGNA" + "codePostal": "85540", + "codeCommune": "85206", + "libelleAcheminement": "ST CYR EN TALMONDAIS", + "nomCommune": "ST CYR EN TALMONDAIS" }, { - "codePostal": "39270", - "codeCommune": "39045", - "libelleAcheminement": "BEFFIA", - "nomCommune": "BEFFIA" + "codePostal": "85170", + "codeCommune": "85208", + "libelleAcheminement": "ST DENIS LA CHEVASSE", + "nomCommune": "ST DENIS LA CHEVASSE" }, { - "codePostal": "39400", - "codeCommune": "39047", - "libelleAcheminement": "BELLEFONTAINE", - "nomCommune": "BELLEFONTAINE" + "codePostal": "85150", + "codeCommune": "85211", + "libelleAcheminement": "STE FLAIVE DES LOUPS", + "nomCommune": "STE FLAIVE DES LOUPS" }, { - "codePostal": "39800", - "codeCommune": "39050", - "libelleAcheminement": "BESAIN", - "nomCommune": "BESAIN" + "codePostal": "85310", + "codeCommune": "85213", + "libelleAcheminement": "RIVES DE L YON", + "nomCommune": "RIVES DE L YON" }, { - "codePostal": "39800", - "codeCommune": "39054", - "libelleAcheminement": "BIEFMORIN", - "nomCommune": "BIEFMORIN" + "codePostal": "85230", + "codeCommune": "85221", + "libelleAcheminement": "ST GERVAIS", + "nomCommune": "ST GERVAIS" }, { - "codePostal": "39130", - "codeCommune": "39058", - "libelleAcheminement": "BLYE", - "nomCommune": "BLYE" + "codePostal": "85800", + "codeCommune": "85222", + "libelleAcheminement": "ST GILLES CROIX DE VIE", + "nomCommune": "ST GILLES CROIX DE VIE" }, { - "codePostal": "39570", - "codeCommune": "39066", - "libelleAcheminement": "BORNAY", - "nomCommune": "BORNAY" + "codePostal": "85290", + "codeCommune": "85238", + "libelleAcheminement": "ST LAURENT SUR SEVRE", + "nomCommune": "ST LAURENT SUR SEVRE" }, { - "codePostal": "39800", - "codeCommune": "39073", - "libelleAcheminement": "BRAINANS", - "nomCommune": "BRAINANS" + "codePostal": "85110", + "codeCommune": "85266", + "libelleAcheminement": "ST PROUANT", + "nomCommune": "ST PROUANT" }, { - "codePostal": "39120", - "codeCommune": "39090", - "libelleAcheminement": "CHAINEE DES COUPIS", - "nomCommune": "CHAINEE DES COUPIS" + "codePostal": "85110", + "codeCommune": "85276", + "libelleAcheminement": "ST VINCENT STERLANGES", + "nomCommune": "ST VINCENT STERLANGES" }, { - "codePostal": "39270", - "codeCommune": "39092", - "libelleAcheminement": "CHAMBERIA", - "nomCommune": "CHAMBERIA" + "codePostal": "85300", + "codeCommune": "85284", + "libelleAcheminement": "SOULLANS", + "nomCommune": "SOULLANS" }, { - "codePostal": "39250", - "codeCommune": "39108", - "libelleAcheminement": "CHARENCY", - "nomCommune": "CHARENCY" + "codePostal": "85310", + "codeCommune": "85285", + "libelleAcheminement": "LE TABLIER", + "nomCommune": "LE TABLIER" }, { - "codePostal": "39230", - "codeCommune": "39110", - "libelleAcheminement": "LA CHARME", - "nomCommune": "LA CHARME" + "codePostal": "85130", + "codeCommune": "85293", + "libelleAcheminement": "TIFFAUGES", + "nomCommune": "TIFFAUGES" }, { - "codePostal": "39600", - "codeCommune": "39116", - "libelleAcheminement": "LA CHATELAINE", - "nomCommune": "LA CHATELAINE" + "codePostal": "85150", + "codeCommune": "85298", + "libelleAcheminement": "VAIRE", + "nomCommune": "VAIRE" }, { - "codePostal": "39380", - "codeCommune": "39117", - "libelleAcheminement": "CHATELAY", - "nomCommune": "CHATELAY" + "codePostal": "86260", + "codeCommune": "86004", + "libelleAcheminement": "ANGLES SUR L ANGLIN", + "nomCommune": "ANGLES SUR L ANGLIN" }, { - "codePostal": "39300", - "codeCommune": "39120", - "libelleAcheminement": "CHATELNEUF", - "nomCommune": "CHATELNEUF" + "codePostal": "86340", + "codeCommune": "86010", + "libelleAcheminement": "ASLONNES", + "nomCommune": "ASLONNES" }, { - "codePostal": "39700", - "codeCommune": "39121", - "libelleAcheminement": "CHATENOIS", - "nomCommune": "CHATENOIS" + "codePostal": "86430", + "codeCommune": "86011", + "libelleAcheminement": "ASNIERES SUR BLOUR", + "nomCommune": "ASNIERES SUR BLOUR" }, { - "codePostal": "39230", - "codeCommune": "39124", - "libelleAcheminement": "CHAUMERGY", - "nomCommune": "CHAUMERGY" + "codePostal": "86580", + "codeCommune": "86027", + "libelleAcheminement": "BIARD", + "nomCommune": "BIARD" }, { - "codePostal": "39150", - "codeCommune": "39126", - "libelleAcheminement": "LA CHAUMUSSE", - "nomCommune": "LA CHAUMUSSE" + "codePostal": "86190", + "codeCommune": "86050", + "libelleAcheminement": "CHALANDRAY", + "nomCommune": "CHALANDRAY" }, { - "codePostal": "39800", - "codeCommune": "39127", - "libelleAcheminement": "CHAUSSENANS", - "nomCommune": "CHAUSSENANS" + "codePostal": "86300", + "codeCommune": "86059", + "libelleAcheminement": "CHAPELLE VIVIERS", + "nomCommune": "CHAPELLE VIVIERS" }, { - "codePostal": "39230", - "codeCommune": "39132", - "libelleAcheminement": "LA CHAUX EN BRESSE", - "nomCommune": "LA CHAUX EN BRESSE" + "codePostal": "86250", + "codeCommune": "86061", + "libelleAcheminement": "CHARROUX", + "nomCommune": "CHARROUX" }, { - "codePostal": "39270", - "codeCommune": "39134", - "libelleAcheminement": "CHAVERIA", - "nomCommune": "CHAVERIA" + "codePostal": "86100", + "codeCommune": "86066", + "libelleAcheminement": "CHATELLERAULT", + "nomCommune": "CHATELLERAULT" }, { - "codePostal": "39230", - "codeCommune": "39136", - "libelleAcheminement": "CHEMENOT", - "nomCommune": "CHEMENOT" + "codePostal": "86510", + "codeCommune": "86068", + "libelleAcheminement": "CHAUNAY", + "nomCommune": "CHAUNAY" }, { - "codePostal": "39240", - "codeCommune": "39137", - "libelleAcheminement": "ST HYMETIERE SUR VALOUSE", - "nomCommune": "ST HYMETIERE SUR VALOUSE" + "codePostal": "86330", + "codeCommune": "86069", + "libelleAcheminement": "LA CHAUSSEE", + "nomCommune": "LA CHAUSSEE" }, { - "codePostal": "39230", - "codeCommune": "39140", - "libelleAcheminement": "CHENE SEC", - "nomCommune": "CHENE SEC" + "codePostal": "86190", + "codeCommune": "86074", + "libelleAcheminement": "CHIRE EN MONTREUIL", + "nomCommune": "CHIRE EN MONTREUIL" }, { - "codePostal": "39300", - "codeCommune": "39153", - "libelleAcheminement": "CIZE", - "nomCommune": "CIZE" + "codePostal": "86200", + "codeCommune": "86079", + "libelleAcheminement": "LA ROCHE RIGAULT", + "nomCommune": "LA ROCHE RIGAULT" }, { - "codePostal": "39130", - "codeCommune": "39154", - "libelleAcheminement": "CLAIRVAUX LES LACS", - "nomCommune": "CLAIRVAUX LES LACS" + "codePostal": "86490", + "codeCommune": "86081", + "libelleAcheminement": "COLOMBIERS", + "nomCommune": "COLOMBIERS" }, { - "codePostal": "39110", - "codeCommune": "39155", - "libelleAcheminement": "CLUCY", - "nomCommune": "CLUCY" + "codePostal": "86290", + "codeCommune": "86084", + "libelleAcheminement": "COULONGES", + "nomCommune": "COULONGES" }, { - "codePostal": "39130", - "codeCommune": "39156", - "libelleAcheminement": "COGNA", - "nomCommune": "COGNA" + "codePostal": "86220", + "codeCommune": "86092", + "libelleAcheminement": "DANGE ST ROMAIN", + "nomCommune": "DANGE ST ROMAIN" }, { - "codePostal": "39200", - "codeCommune": "39157", - "libelleAcheminement": "COISERETTE", - "nomCommune": "COISERETTE" + "codePostal": "86160", + "codeCommune": "86097", + "libelleAcheminement": "LA FERRIERE AIROUX", + "nomCommune": "LA FERRIERE AIROUX" }, { - "codePostal": "39240", - "codeCommune": "39163", - "libelleAcheminement": "CONDES", - "nomCommune": "CONDES" + "codePostal": "86240", + "codeCommune": "86100", + "libelleAcheminement": "FONTAINE LE COMTE", + "nomCommune": "FONTAINE LE COMTE" }, { - "codePostal": "39570", - "codeCommune": "39171", - "libelleAcheminement": "COURLAOUX", - "nomCommune": "COURLAOUX" + "codePostal": "86190", + "codeCommune": "86102", + "libelleAcheminement": "FROZES", + "nomCommune": "FROZES" }, { - "codePostal": "39190", - "codeCommune": "39173", - "libelleAcheminement": "COUSANCE", - "nomCommune": "COUSANCE" + "codePostal": "86250", + "codeCommune": "86104", + "libelleAcheminement": "GENOUILLE", + "nomCommune": "GENOUILLE" }, { - "codePostal": "39200", - "codeCommune": "39174", - "libelleAcheminement": "COYRIERE", - "nomCommune": "COYRIERE" + "codePostal": "86320", + "codeCommune": "86107", + "libelleAcheminement": "GOUEX", + "nomCommune": "GOUEX" }, { - "codePostal": "39570", - "codeCommune": "39177", - "libelleAcheminement": "HAUTEROCHE", - "nomCommune": "HAUTEROCHE" + "codePostal": "86310", + "codeCommune": "86110", + "libelleAcheminement": "HAIMS", + "nomCommune": "HAIMS" }, { - "codePostal": "39250", - "codeCommune": "39187", - "libelleAcheminement": "CUVIER", - "nomCommune": "CUVIER" + "codePostal": "86290", + "codeCommune": "86118", + "libelleAcheminement": "JOURNET", + "nomCommune": "JOURNET" }, { - "codePostal": "39130", - "codeCommune": "39192", - "libelleAcheminement": "DENEZIERES", - "nomCommune": "DENEZIERES" + "codePostal": "86390", + "codeCommune": "86120", + "libelleAcheminement": "LATHUS ST REMY", + "nomCommune": "LATHUS ST REMY" }, { - "codePostal": "39140", - "codeCommune": "39194", - "libelleAcheminement": "DESNES", - "nomCommune": "DESNES" + "codePostal": "86450", + "codeCommune": "86125", + "libelleAcheminement": "LEIGNE LES BOIS", + "nomCommune": "LEIGNE LES BOIS" }, { - "codePostal": "39230", - "codeCommune": "39196", - "libelleAcheminement": "LES DEUX FAYS", - "nomCommune": "LES DEUX FAYS" + "codePostal": "86230", + "codeCommune": "86127", + "libelleAcheminement": "LEIGNE SUR USSEAU", + "nomCommune": "LEIGNE SUR USSEAU" }, { - "codePostal": "39100", - "codeCommune": "39198", - "libelleAcheminement": "DOLE", - "nomCommune": "DOLE" + "codePostal": "86140", + "codeCommune": "86128", + "libelleAcheminement": "LENCLOITRE", + "nomCommune": "LENCLOITRE" }, { - "codePostal": "39100", - "codeCommune": "39198", - "libelleAcheminement": "DOLE", - "nomCommune": "DOLE" + "codePostal": "86400", + "codeCommune": "86134", + "libelleAcheminement": "LINAZAY", + "nomCommune": "LINAZAY" }, { - "codePostal": "39250", - "codeCommune": "39203", - "libelleAcheminement": "DOYE", - "nomCommune": "DOYE" + "codePostal": "86200", + "codeCommune": "86137", + "libelleAcheminement": "LOUDUN", + "nomCommune": "LOUDUN" }, { - "codePostal": "39320", - "codeCommune": "39209", - "libelleAcheminement": "VAL D EPY", - "nomCommune": "VAL D EPY" + "codePostal": "86430", + "codeCommune": "86138", + "libelleAcheminement": "LUCHAPT", + "nomCommune": "LUCHAPT" }, { - "codePostal": "39130", - "codeCommune": "39216", - "libelleAcheminement": "ETIVAL", - "nomCommune": "ETIVAL" + "codePostal": "86330", + "codeCommune": "86149", + "libelleAcheminement": "MARTAIZE", + "nomCommune": "MARTAIZE" }, { - "codePostal": "39600", - "codeCommune": "39223", - "libelleAcheminement": "LA FERTE", - "nomCommune": "LA FERTE" + "codePostal": "86170", + "codeCommune": "86150", + "libelleAcheminement": "MASSOGNES", + "nomCommune": "MASSOGNES" }, { - "codePostal": "39130", - "codeCommune": "39239", - "libelleAcheminement": "LA FRASNEE", - "nomCommune": "LA FRASNEE" + "codePostal": "86200", + "codeCommune": "86156", + "libelleAcheminement": "MESSEME", + "nomCommune": "MESSEME" }, { - "codePostal": "39110", - "codeCommune": "39248", - "libelleAcheminement": "GERAISE", - "nomCommune": "GERAISE" + "codePostal": "86150", + "codeCommune": "86159", + "libelleAcheminement": "MILLAC", + "nomCommune": "MILLAC" }, { - "codePostal": "39570", - "codeCommune": "39251", - "libelleAcheminement": "GEVINGEY", - "nomCommune": "GEVINGEY" + "codePostal": "86330", + "codeCommune": "86161", + "libelleAcheminement": "MONCONTOUR", + "nomCommune": "MONCONTOUR" }, { - "codePostal": "39150", - "codeCommune": "39258", - "libelleAcheminement": "GRANDE RIVIERE CHATEAU", - "nomCommune": "GRANDE RIVIERE CHATEAU" + "codePostal": "86120", + "codeCommune": "86169", + "libelleAcheminement": "MORTON", + "nomCommune": "MORTON" }, { - "codePostal": "39150", - "codeCommune": "39258", - "libelleAcheminement": "GRANDE RIVIERE CHATEAU", - "nomCommune": "GRANDE RIVIERE CHATEAU" + "codePostal": "86150", + "codeCommune": "86171", + "libelleAcheminement": "MOUSSAC", + "nomCommune": "MOUSSAC" }, { - "codePostal": "39120", - "codeCommune": "39266", - "libelleAcheminement": "LES HAYS", - "nomCommune": "LES HAYS" + "codePostal": "86150", + "codeCommune": "86176", + "libelleAcheminement": "NERIGNAC", + "nomCommune": "NERIGNAC" }, { - "codePostal": "39110", - "codeCommune": "39267", - "libelleAcheminement": "IVORY", - "nomCommune": "IVORY" + "codePostal": "86220", + "codeCommune": "86183", + "libelleAcheminement": "LES ORMES", + "nomCommune": "LES ORMES" }, { - "codePostal": "39150", - "codeCommune": "39271", - "libelleAcheminement": "LAC DES ROUGES TRUITES", - "nomCommune": "LAC DES ROUGES TRUITES" + "codePostal": "86500", + "codeCommune": "86191", + "libelleAcheminement": "PINDRAY", + "nomCommune": "PINDRAY" }, { - "codePostal": "39210", - "codeCommune": "39272", - "libelleAcheminement": "LADOYE SUR SEILLE", - "nomCommune": "LADOYE SUR SEILLE" + "codePostal": "86500", + "codeCommune": "86192", + "libelleAcheminement": "PLAISANCE", + "nomCommune": "PLAISANCE" }, { - "codePostal": "01590", - "codeCommune": "39283", - "libelleAcheminement": "LAVANCIA EPERCY", - "nomCommune": "LAVANCIA EPERCY" + "codePostal": "86410", + "codeCommune": "86228", + "libelleAcheminement": "ST LAURENT DE JOURDES", + "nomCommune": "ST LAURENT DE JOURDES" }, { - "codePostal": "39700", - "codeCommune": "39285", - "libelleAcheminement": "LAVANS LES DOLE", - "nomCommune": "LAVANS LES DOLE" + "codePostal": "86400", + "codeCommune": "86231", + "libelleAcheminement": "ST MACOUX", + "nomCommune": "ST MACOUX" }, { - "codePostal": "39170", - "codeCommune": "39286", - "libelleAcheminement": "LAVANS LES ST CLAUDE", - "nomCommune": "LAVANS LES ST CLAUDE" + "codePostal": "86300", + "codeCommune": "86233", + "libelleAcheminement": "VALDIVIENNE", + "nomCommune": "VALDIVIENNE" }, { - "codePostal": "39260", - "codeCommune": "39289", - "libelleAcheminement": "LECT", - "nomCommune": "LECT" + "codePostal": "86350", + "codeCommune": "86234", + "libelleAcheminement": "ST MARTIN L ARS", + "nomCommune": "ST MARTIN L ARS" }, { - "codePostal": "39240", - "codeCommune": "39290", - "libelleAcheminement": "VALZIN EN PETITE MONTAGNE", - "nomCommune": "VALZIN EN PETITE MONTAGNE" + "codePostal": "86220", + "codeCommune": "86241", + "libelleAcheminement": "ST REMY SUR CREUSE", + "nomCommune": "ST REMY SUR CREUSE" }, { - "codePostal": "39110", - "codeCommune": "39291", - "libelleAcheminement": "LEMUY", - "nomCommune": "LEMUY" + "codePostal": "86100", + "codeCommune": "86245", + "libelleAcheminement": "SENILLE ST SAUVEUR", + "nomCommune": "SENILLE ST SAUVEUR" }, { - "codePostal": "39320", - "codeCommune": "39295", - "libelleAcheminement": "LOISIA", - "nomCommune": "LOISIA" + "codePostal": "86200", + "codeCommune": "86252", + "libelleAcheminement": "SAMMARCOLLES", + "nomCommune": "SAMMARCOLLES" }, { - "codePostal": "39250", - "codeCommune": "39298", - "libelleAcheminement": "LONGCOCHON", - "nomCommune": "LONGCOCHON" + "codePostal": "86140", + "codeCommune": "86257", + "libelleAcheminement": "SAVIGNY SOUS FAYE", + "nomCommune": "SAVIGNY SOUS FAYE" }, { - "codePostal": "39000", - "codeCommune": "39300", - "libelleAcheminement": "LONS LE SAUNIER", - "nomCommune": "LONS LE SAUNIER" + "codePostal": "86230", + "codeCommune": "86260", + "libelleAcheminement": "SERIGNY", + "nomCommune": "SERIGNY" }, { - "codePostal": "39300", - "codeCommune": "39301", - "libelleAcheminement": "LOULLE", - "nomCommune": "LOULLE" + "codePostal": "86240", + "codeCommune": "86263", + "libelleAcheminement": "SMARVES", + "nomCommune": "SMARVES" }, { - "codePostal": "39700", - "codeCommune": "39308", - "libelleAcheminement": "MALANGE", - "nomCommune": "MALANGE" + "codePostal": "86800", + "codeCommune": "86268", + "libelleAcheminement": "TERCE", + "nomCommune": "TERCE" }, { - "codePostal": "39190", - "codeCommune": "39320", - "libelleAcheminement": "MAYNAL", - "nomCommune": "MAYNAL" + "codePostal": "86290", + "codeCommune": "86270", + "libelleAcheminement": "THOLLET", + "nomCommune": "THOLLET" }, { - "codePostal": "39290", - "codeCommune": "39323", - "libelleAcheminement": "MENOTEY", - "nomCommune": "MENOTEY" + "codePostal": "86110", + "codeCommune": "86281", + "libelleAcheminement": "ST MARTIN LA PALLU", + "nomCommune": "ST MARTIN LA PALLU" }, { - "codePostal": "39600", - "codeCommune": "39325", - "libelleAcheminement": "MESNAY", - "nomCommune": "MESNAY" + "codePostal": "86170", + "codeCommune": "86281", + "libelleAcheminement": "ST MARTIN LA PALLU", + "nomCommune": "ST MARTIN LA PALLU" }, { - "codePostal": "39570", - "codeCommune": "39327", - "libelleAcheminement": "MESSIA SUR SORNE", - "nomCommune": "MESSIA SUR SORNE" + "codePostal": "86120", + "codeCommune": "86287", + "libelleAcheminement": "VEZIERES", + "nomCommune": "VEZIERES" }, { - "codePostal": "39260", - "codeCommune": "39328", - "libelleAcheminement": "MEUSSIA", - "nomCommune": "MEUSSIA" + "codePostal": "86150", + "codeCommune": "86289", + "libelleAcheminement": "LE VIGEANT", + "nomCommune": "LE VIGEANT" }, { - "codePostal": "39800", - "codeCommune": "39330", - "libelleAcheminement": "MIERY", - "nomCommune": "MIERY" + "codePostal": "86190", + "codeCommune": "86292", + "libelleAcheminement": "VILLIERS", + "nomCommune": "VILLIERS" }, { - "codePostal": "39250", - "codeCommune": "39331", - "libelleAcheminement": "MIGNOVILLARD", - "nomCommune": "MIGNOVILLARD" + "codePostal": "86210", + "codeCommune": "86298", + "libelleAcheminement": "VOUNEUIL SUR VIENNE", + "nomCommune": "VOUNEUIL SUR VIENNE" }, { - "codePostal": "39570", - "codeCommune": "39334", - "libelleAcheminement": "MOIRON", - "nomCommune": "MOIRON" + "codePostal": "87300", + "codeCommune": "87011", + "libelleAcheminement": "BELLAC", + "nomCommune": "BELLAC" }, { - "codePostal": "39360", - "codeCommune": "39339", - "libelleAcheminement": "CHASSAL MOLINGES", - "nomCommune": "CHASSAL MOLINGES" + "codePostal": "87300", + "codeCommune": "87012", + "libelleAcheminement": "BERNEUIL", + "nomCommune": "BERNEUIL" }, { - "codePostal": "39110", - "codeCommune": "39359", - "libelleAcheminement": "MONTMARLON", - "nomCommune": "MONTMARLON" + "codePostal": "87250", + "codeCommune": "87014", + "libelleAcheminement": "BESSINES SUR GARTEMPE", + "nomCommune": "BESSINES SUR GARTEMPE" }, { - "codePostal": "39290", - "codeCommune": "39361", - "libelleAcheminement": "MONTMIREY LE CHATEAU", - "nomCommune": "MONTMIREY LE CHATEAU" + "codePostal": "87700", + "codeCommune": "87015", + "libelleAcheminement": "BEYNAC", + "nomCommune": "BEYNAC" }, { - "codePostal": "39570", - "codeCommune": "39362", - "libelleAcheminement": "MONTMOROT", - "nomCommune": "MONTMOROT" + "codePostal": "87300", + "codeCommune": "87017", + "libelleAcheminement": "BLANZAC", + "nomCommune": "BLANZAC" }, { - "codePostal": "39400", - "codeCommune": "39368", - "libelleAcheminement": "HAUTS DE BIENNE", - "nomCommune": "HAUTS DE BIENNE" + "codePostal": "87300", + "codeCommune": "87018", + "libelleAcheminement": "BLOND", + "nomCommune": "BLOND" }, { - "codePostal": "39300", - "codeCommune": "39376", - "libelleAcheminement": "MOUTOUX", - "nomCommune": "MOUTOUX" + "codePostal": "87230", + "codeCommune": "87029", + "libelleAcheminement": "LES CARS", + "nomCommune": "LES CARS" }, { - "codePostal": "39160", - "codeCommune": "39378", - "libelleAcheminement": "LES TROIS CHATEAUX", - "nomCommune": "LES TROIS CHATEAUX" + "codePostal": "87200", + "codeCommune": "87030", + "libelleAcheminement": "CHAILLAC SUR VIENNE", + "nomCommune": "CHAILLAC SUR VIENNE" }, { - "codePostal": "39380", - "codeCommune": "39399", - "libelleAcheminement": "OUNANS", - "nomCommune": "OUNANS" + "codePostal": "87230", + "codeCommune": "87032", + "libelleAcheminement": "CHALUS", + "nomCommune": "CHALUS" }, { - "codePostal": "39300", - "codeCommune": "39406", - "libelleAcheminement": "LE PASQUIER", - "nomCommune": "LE PASQUIER" + "codePostal": "87400", + "codeCommune": "87035", + "libelleAcheminement": "CHAMPNETERY", + "nomCommune": "CHAMPNETERY" }, { - "codePostal": "39800", - "codeCommune": "39418", - "libelleAcheminement": "PICARREAU", - "nomCommune": "PICARREAU" + "codePostal": "87270", + "codeCommune": "87038", + "libelleAcheminement": "CHAPTELAT", + "nomCommune": "CHAPTELAT" }, { - "codePostal": "39110", - "codeCommune": "39436", - "libelleAcheminement": "PONT D HERY", - "nomCommune": "PONT D HERY" + "codePostal": "87600", + "codeCommune": "87044", + "libelleAcheminement": "CHERONNAC", + "nomCommune": "CHERONNAC" }, { - "codePostal": "39330", - "codeCommune": "39439", - "libelleAcheminement": "PORT LESNEY", - "nomCommune": "PORT LESNEY" + "codePostal": "87270", + "codeCommune": "87050", + "libelleAcheminement": "COUZEIX", + "nomCommune": "COUZEIX" }, { - "codePostal": "39220", - "codeCommune": "39441", - "libelleAcheminement": "PREMANON", - "nomCommune": "PREMANON" + "codePostal": "87130", + "codeCommune": "87051", + "libelleAcheminement": "LA CROISILLE SUR BRIANCE", + "nomCommune": "LA CROISILLE SUR BRIANCE" }, { - "codePostal": "39110", - "codeCommune": "39444", - "libelleAcheminement": "PRETIN", - "nomCommune": "PRETIN" + "codePostal": "87230", + "codeCommune": "87066", + "libelleAcheminement": "FLAVIGNAC", + "nomCommune": "FLAVIGNAC" }, { - "codePostal": "39120", - "codeCommune": "39448", - "libelleAcheminement": "RAHON", - "nomCommune": "RAHON" + "codePostal": "87250", + "codeCommune": "87068", + "libelleAcheminement": "FROMENTAL", + "nomCommune": "FROMENTAL" }, { - "codePostal": "39140", - "codeCommune": "39457", - "libelleAcheminement": "LES REPOTS", - "nomCommune": "LES REPOTS" + "codePostal": "87330", + "codeCommune": "87069", + "libelleAcheminement": "GAJOUBERT", + "nomCommune": "GAJOUBERT" }, { - "codePostal": "39400", - "codeCommune": "39470", - "libelleAcheminement": "LES ROUSSES", - "nomCommune": "LES ROUSSES" + "codePostal": "87380", + "codeCommune": "87072", + "libelleAcheminement": "GLANGES", + "nomCommune": "GLANGES" }, { - "codePostal": "39200", - "codeCommune": "39478", - "libelleAcheminement": "ST CLAUDE", - "nomCommune": "ST CLAUDE" + "codePostal": "87310", + "codeCommune": "87073", + "libelleAcheminement": "GORRE", + "nomCommune": "GORRE" }, { - "codePostal": "39600", - "codeCommune": "39479", - "libelleAcheminement": "ST CYR MONTMALIN", - "nomCommune": "ST CYR MONTMALIN" + "codePostal": "87890", + "codeCommune": "87080", + "libelleAcheminement": "JOUAC", + "nomCommune": "JOUAC" }, { - "codePostal": "39320", - "codeCommune": "39485", - "libelleAcheminement": "VAL SURAN", - "nomCommune": "VAL SURAN" + "codePostal": "87800", + "codeCommune": "87081", + "libelleAcheminement": "JOURGNAC", + "nomCommune": "JOURGNAC" }, { - "codePostal": "39120", - "codeCommune": "39490", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "87130", + "codeCommune": "87086", + "libelleAcheminement": "LINARDS", + "nomCommune": "LINARDS" }, { - "codePostal": "39130", - "codeCommune": "39493", - "libelleAcheminement": "ST MAURICE CRILLAT", - "nomCommune": "ST MAURICE CRILLAT" + "codePostal": "87440", + "codeCommune": "87092", + "libelleAcheminement": "MARVAL", + "nomCommune": "MARVAL" }, { - "codePostal": "39130", - "codeCommune": "39493", - "libelleAcheminement": "ST MAURICE CRILLAT", - "nomCommune": "ST MAURICE CRILLAT" + "codePostal": "87130", + "codeCommune": "87093", + "libelleAcheminement": "MASLEON", + "nomCommune": "MASLEON" }, { - "codePostal": "39110", - "codeCommune": "39495", - "libelleAcheminement": "ST THIEBAUD", - "nomCommune": "ST THIEBAUD" + "codePostal": "87330", + "codeCommune": "87101", + "libelleAcheminement": "MORTEMART", + "nomCommune": "MORTEMART" }, { - "codePostal": "39380", - "codeCommune": "39502", - "libelleAcheminement": "SANTANS", - "nomCommune": "SANTANS" + "codePostal": "87120", + "codeCommune": "87104", + "libelleAcheminement": "NEDDE", + "nomCommune": "NEDDE" }, { - "codePostal": "39300", - "codeCommune": "39523", - "libelleAcheminement": "SYAM", - "nomCommune": "SYAM" + "codePostal": "87510", + "codeCommune": "87107", + "libelleAcheminement": "NIEUL", + "nomCommune": "NIEUL" }, { - "codePostal": "39120", - "codeCommune": "39525", - "libelleAcheminement": "TASSENIERES", - "nomCommune": "TASSENIERES" + "codePostal": "87330", + "codeCommune": "87108", + "libelleAcheminement": "NOUIC", + "nomCommune": "NOUIC" }, { - "codePostal": "39500", - "codeCommune": "39526", - "libelleAcheminement": "TAVAUX", - "nomCommune": "TAVAUX" + "codePostal": "87300", + "codeCommune": "87116", + "libelleAcheminement": "PEYRAT DE BELLAC", + "nomCommune": "PEYRAT DE BELLAC" }, { - "codePostal": "39290", - "codeCommune": "39528", - "libelleAcheminement": "THERVAY", - "nomCommune": "THERVAY" + "codePostal": "87290", + "codeCommune": "87121", + "libelleAcheminement": "RANCON", + "nomCommune": "RANCON" }, { - "codePostal": "39240", - "codeCommune": "39530", - "libelleAcheminement": "THOIRETTE COISIA", - "nomCommune": "THOIRETTE COISIA" + "codePostal": "87800", + "codeCommune": "87124", + "libelleAcheminement": "RILHAC LASTOURS", + "nomCommune": "RILHAC LASTOURS" }, { - "codePostal": "39130", - "codeCommune": "39531", - "libelleAcheminement": "THOIRIA", - "nomCommune": "THOIRIA" + "codePostal": "87140", + "codeCommune": "87128", + "libelleAcheminement": "ST PARDOUX LE LAC", + "nomCommune": "ST PARDOUX LE LAC" }, { - "codePostal": "39300", - "codeCommune": "39543", - "libelleAcheminement": "VANNOZ", - "nomCommune": "VANNOZ" + "codePostal": "87720", + "codeCommune": "87131", + "libelleAcheminement": "SAILLAT SUR VIENNE", + "nomCommune": "SAILLAT SUR VIENNE" }, { - "codePostal": "39800", - "codeCommune": "39548", - "libelleAcheminement": "VAUX SUR POLIGNY", - "nomCommune": "VAUX SUR POLIGNY" + "codePostal": "87120", + "codeCommune": "87134", + "libelleAcheminement": "STE ANNE ST PRIEST", + "nomCommune": "STE ANNE ST PRIEST" }, { - "codePostal": "39570", - "codeCommune": "39550", - "libelleAcheminement": "VERGES", - "nomCommune": "VERGES" + "codePostal": "87260", + "codeCommune": "87138", + "libelleAcheminement": "ST BONNET BRIANCE", + "nomCommune": "ST BONNET BRIANCE" }, { - "codePostal": "39240", - "codeCommune": "39557", - "libelleAcheminement": "VESCLES", - "nomCommune": "VESCLES" + "codePostal": "87310", + "codeCommune": "87141", + "libelleAcheminement": "ST CYR", + "nomCommune": "ST CYR" }, { - "codePostal": "39570", - "codeCommune": "39567", - "libelleAcheminement": "VILLENEUVE SOUS PYMONT", - "nomCommune": "VILLENEUVE SOUS PYMONT" + "codePostal": "87260", + "codeCommune": "87144", + "libelleAcheminement": "ST GENEST SUR ROSELLE", + "nomCommune": "ST GENEST SUR ROSELLE" }, { - "codePostal": "39600", - "codeCommune": "39572", - "libelleAcheminement": "VILLETTE LES ARBOIS", - "nomCommune": "VILLETTE LES ARBOIS" + "codePostal": "87160", + "codeCommune": "87145", + "libelleAcheminement": "ST GEORGES LES LANDES", + "nomCommune": "ST GEORGES LES LANDES" }, { - "codePostal": "39190", - "codeCommune": "39576", - "libelleAcheminement": "VAL SONNETTE", - "nomCommune": "VAL SONNETTE" + "codePostal": "87190", + "codeCommune": "87149", + "libelleAcheminement": "ST HILAIRE LA TREILLE", + "nomCommune": "ST HILAIRE LA TREILLE" }, { - "codePostal": "39700", - "codeCommune": "39584", - "libelleAcheminement": "VRIANGE", - "nomCommune": "VRIANGE" + "codePostal": "87200", + "codeCommune": "87154", + "libelleAcheminement": "ST JUNIEN", + "nomCommune": "ST JUNIEN" }, { - "codePostal": "40330", - "codeCommune": "40002", - "libelleAcheminement": "AMOU", - "nomCommune": "AMOU" + "codePostal": "87310", + "codeCommune": "87158", + "libelleAcheminement": "ST LAURENT SUR GORRE", + "nomCommune": "ST LAURENT SUR GORRE" }, { - "codePostal": "40500", - "codeCommune": "40017", - "libelleAcheminement": "AUDIGNON", - "nomCommune": "AUDIGNON" + "codePostal": "87200", + "codeCommune": "87164", + "libelleAcheminement": "ST MARTIN DE JUSSAC", + "nomCommune": "ST MARTIN DE JUSSAC" }, { - "codePostal": "40380", - "codeCommune": "40023", - "libelleAcheminement": "BAIGTS", - "nomCommune": "BAIGTS" + "codePostal": "87700", + "codeCommune": "87166", + "libelleAcheminement": "ST MARTIN LE VIEUX", + "nomCommune": "ST MARTIN LE VIEUX" }, { - "codePostal": "40500", - "codeCommune": "40026", - "libelleAcheminement": "BAS MAUCO", - "nomCommune": "BAS MAUCO" + "codePostal": "87800", + "codeCommune": "87169", + "libelleAcheminement": "ST MAURICE LES BROUSSES", + "nomCommune": "ST MAURICE LES BROUSSES" }, { - "codePostal": "40700", - "codeCommune": "40027", - "libelleAcheminement": "BASSERCLES", - "nomCommune": "BASSERCLES" + "codePostal": "87130", + "codeCommune": "87170", + "libelleAcheminement": "ST MEARD", + "nomCommune": "ST MEARD" }, { - "codePostal": "40320", - "codeCommune": "40029", - "libelleAcheminement": "BATS", - "nomCommune": "BATS" + "codePostal": "87210", + "codeCommune": "87179", + "libelleAcheminement": "ST SORNIN LA MARCHE", + "nomCommune": "ST SORNIN LA MARCHE" }, { - "codePostal": "40280", - "codeCommune": "40037", - "libelleAcheminement": "BENQUET", - "nomCommune": "BENQUET" + "codePostal": "87160", + "codeCommune": "87182", + "libelleAcheminement": "ST SULPICE LES FEUILLES", + "nomCommune": "ST SULPICE LES FEUILLES" }, { - "codePostal": "40370", - "codeCommune": "40040", - "libelleAcheminement": "BEYLONGUE", - "nomCommune": "BEYLONGUE" + "codePostal": "87240", + "codeCommune": "87183", + "libelleAcheminement": "ST SYLVESTRE", + "nomCommune": "ST SYLVESTRE" }, { - "codePostal": "40600", - "codeCommune": "40046", - "libelleAcheminement": "BISCARROSSE", - "nomCommune": "BISCARROSSE" + "codePostal": "87380", + "codeCommune": "87186", + "libelleAcheminement": "ST VITTE SUR BRIANCE", + "nomCommune": "ST VITTE SUR BRIANCE" }, { - "codePostal": "40330", - "codeCommune": "40047", - "libelleAcheminement": "BONNEGARDE", - "nomCommune": "BONNEGARDE" + "codePostal": "87700", + "codeCommune": "87188", + "libelleAcheminement": "ST YRIEIX SOUS AIXE", + "nomCommune": "ST YRIEIX SOUS AIXE" }, { - "codePostal": "40120", - "codeCommune": "40053", - "libelleAcheminement": "BOURRIOT BERGONCE", - "nomCommune": "BOURRIOT BERGONCE" + "codePostal": "87400", + "codeCommune": "87190", + "libelleAcheminement": "SAUVIAT SUR VIGE", + "nomCommune": "SAUVIAT SUR VIGE" }, { - "codePostal": "40280", - "codeCommune": "40055", - "libelleAcheminement": "BRETAGNE DE MARSAN", - "nomCommune": "BRETAGNE DE MARSAN" + "codePostal": "87130", + "codeCommune": "87193", + "libelleAcheminement": "SURDOUX", + "nomCommune": "SURDOUX" }, { - "codePostal": "40090", - "codeCommune": "40061", - "libelleAcheminement": "CAMPAGNE", - "nomCommune": "CAMPAGNE" + "codePostal": "87140", + "codeCommune": "87198", + "libelleAcheminement": "VAULRY", + "nomCommune": "VAULRY" }, { - "codePostal": "40700", - "codeCommune": "40069", - "libelleAcheminement": "CASTAIGNOS SOUSLENS", - "nomCommune": "CASTAIGNOS SOUSLENS" + "codePostal": "87360", + "codeCommune": "87200", + "libelleAcheminement": "VERNEUIL MOUSTIERS", + "nomCommune": "VERNEUIL MOUSTIERS" }, { - "codePostal": "40180", - "codeCommune": "40084", - "libelleAcheminement": "CLERMONT", - "nomCommune": "CLERMONT" + "codePostal": "88500", + "codeCommune": "88002", + "libelleAcheminement": "AHEVILLE", + "nomCommune": "AHEVILLE" }, { - "codePostal": "40310", - "codeCommune": "40093", - "libelleAcheminement": "ESCALANS", - "nomCommune": "ESCALANS" + "codePostal": "88380", + "codeCommune": "88012", + "libelleAcheminement": "ARCHETTES", + "nomCommune": "ARCHETTES" }, { - "codePostal": "40320", - "codeCommune": "40097", - "libelleAcheminement": "EUGENIE LES BAINS", - "nomCommune": "EUGENIE LES BAINS" + "codePostal": "88300", + "codeCommune": "88017", + "libelleAcheminement": "AULNOIS", + "nomCommune": "AULNOIS" }, { - "codePostal": "40310", - "codeCommune": "40102", - "libelleAcheminement": "GABARRET", - "nomCommune": "GABARRET" + "codePostal": "88460", + "codeCommune": "88028", + "libelleAcheminement": "LA BAFFE", + "nomCommune": "LA BAFFE" }, { - "codePostal": "40090", - "codeCommune": "40103", - "libelleAcheminement": "GAILLERES", - "nomCommune": "GAILLERES" + "codePostal": "88240", + "codeCommune": "88029", + "libelleAcheminement": "LA VOGE LES BAINS", + "nomCommune": "LA VOGE LES BAINS" }, { - "codePostal": "40330", - "codeCommune": "40109", - "libelleAcheminement": "GAUJACQ", - "nomCommune": "GAUJACQ" + "codePostal": "88640", + "codeCommune": "88035", + "libelleAcheminement": "BARBEY SEROUX", + "nomCommune": "BARBEY SEROUX" }, { - "codePostal": "40090", - "codeCommune": "40111", - "libelleAcheminement": "GELOUX", - "nomCommune": "GELOUX" + "codePostal": "88700", + "codeCommune": "88042", + "libelleAcheminement": "BAZIEN", + "nomCommune": "BAZIEN" }, { - "codePostal": "40270", - "codeCommune": "40117", - "libelleAcheminement": "GRENADE SUR L ADOUR", - "nomCommune": "GRENADE SUR L ADOUR" + "codePostal": "88500", + "codeCommune": "88043", + "libelleAcheminement": "BAZOILLES ET MENIL", + "nomCommune": "BAZOILLES ET MENIL" }, { - "codePostal": "40300", - "codeCommune": "40120", - "libelleAcheminement": "HASTINGUES", - "nomCommune": "HASTINGUES" + "codePostal": "88300", + "codeCommune": "88044", + "libelleAcheminement": "BAZOILLES SUR MEUSE", + "nomCommune": "BAZOILLES SUR MEUSE" }, { - "codePostal": "40990", - "codeCommune": "40123", - "libelleAcheminement": "HERM", - "nomCommune": "HERM" + "codePostal": "88600", + "codeCommune": "88046", + "libelleAcheminement": "BEAUMENIL", + "nomCommune": "BEAUMENIL" }, { - "codePostal": "40310", - "codeCommune": "40124", - "libelleAcheminement": "HERRE", - "nomCommune": "HERRE" + "codePostal": "88210", + "codeCommune": "88053", + "libelleAcheminement": "BELVAL", + "nomCommune": "BELVAL" }, { - "codePostal": "40180", - "codeCommune": "40125", - "libelleAcheminement": "HEUGAS", - "nomCommune": "HEUGAS" + "codePostal": "88170", + "codeCommune": "88058", + "libelleAcheminement": "BIECOURT", + "nomCommune": "BIECOURT" }, { - "codePostal": "40530", - "codeCommune": "40133", - "libelleAcheminement": "LABENNE", - "nomCommune": "LABENNE" + "codePostal": "88500", + "codeCommune": "88066", + "libelleAcheminement": "BOULAINCOURT", + "nomCommune": "BOULAINCOURT" }, { - "codePostal": "40420", - "codeCommune": "40135", - "libelleAcheminement": "LABRIT", - "nomCommune": "LABRIT" + "codePostal": "88350", + "codeCommune": "88074", + "libelleAcheminement": "BRECHAINVILLE", + "nomCommune": "BRECHAINVILLE" }, { - "codePostal": "40120", - "codeCommune": "40137", - "libelleAcheminement": "LACQUY", - "nomCommune": "LACQUY" + "codePostal": "88300", + "codeCommune": "88083", + "libelleAcheminement": "CERTILLEUX", + "nomCommune": "CERTILLEUX" }, { - "codePostal": "40700", - "codeCommune": "40138", - "libelleAcheminement": "LACRABE", - "nomCommune": "LACRABE" + "codePostal": "88130", + "codeCommune": "88084", + "libelleAcheminement": "CHAMAGNE", + "nomCommune": "CHAMAGNE" }, { - "codePostal": "40090", - "codeCommune": "40139", - "libelleAcheminement": "LAGLORIEUSE", - "nomCommune": "LAGLORIEUSE" + "codePostal": "88130", + "codeCommune": "88090", + "libelleAcheminement": "CHARMES", + "nomCommune": "CHARMES" }, { - "codePostal": "40240", - "codeCommune": "40140", - "libelleAcheminement": "LAGRANGE", - "nomCommune": "LAGRANGE" + "codePostal": "88460", + "codeCommune": "88101", + "libelleAcheminement": "CHENIMENIL", + "nomCommune": "CHENIMENIL" }, { - "codePostal": "40465", - "codeCommune": "40142", - "libelleAcheminement": "LALUQUE", - "nomCommune": "LALUQUE" + "codePostal": "88700", + "codeCommune": "88110", + "libelleAcheminement": "CLEZENTAINE", + "nomCommune": "CLEZENTAINE" }, { - "codePostal": "40260", - "codeCommune": "40152", - "libelleAcheminement": "LESPERON", - "nomCommune": "LESPERON" + "codePostal": "88100", + "codeCommune": "88111", + "libelleAcheminement": "COINCHES", + "nomCommune": "COINCHES" }, { - "codePostal": "40170", - "codeCommune": "40154", - "libelleAcheminement": "LEVIGNACQ", - "nomCommune": "LEVIGNACQ" + "codePostal": "88490", + "codeCommune": "88113", + "libelleAcheminement": "COMBRIMONT", + "nomCommune": "COMBRIMONT" }, { - "codePostal": "40240", - "codeCommune": "40161", - "libelleAcheminement": "LUBBON", - "nomCommune": "LUBBON" + "codePostal": "88630", + "codeCommune": "88118", + "libelleAcheminement": "COUSSEY", + "nomCommune": "COUSSEY" }, { - "codePostal": "40120", - "codeCommune": "40164", - "libelleAcheminement": "RETJONS", - "nomCommune": "RETJONS" + "codePostal": "88520", + "codeCommune": "88120", + "libelleAcheminement": "LA CROIX AUX MINES", + "nomCommune": "LA CROIX AUX MINES" }, { - "codePostal": "40410", - "codeCommune": "40171", - "libelleAcheminement": "MANO", - "nomCommune": "MANO" + "codePostal": "88500", + "codeCommune": "88139", + "libelleAcheminement": "DOMBASLE EN XAINTOIS", + "nomCommune": "DOMBASLE EN XAINTOIS" }, { - "codePostal": "40270", - "codeCommune": "40175", - "libelleAcheminement": "MAURRIN", - "nomCommune": "MAURRIN" + "codePostal": "88390", + "codeCommune": "88142", + "libelleAcheminement": "DOMEVRE SUR AVIERE", + "nomCommune": "DOMEVRE SUR AVIERE" }, { - "codePostal": "40240", - "codeCommune": "40176", - "libelleAcheminement": "MAUVEZIN D ARMAGNAC", - "nomCommune": "MAUVEZIN D ARMAGNAC" + "codePostal": "88800", + "codeCommune": "88146", + "libelleAcheminement": "DOMJULIEN", + "nomCommune": "DOMJULIEN" }, { - "codePostal": "40990", - "codeCommune": "40179", - "libelleAcheminement": "MEES", - "nomCommune": "MEES" + "codePostal": "88510", + "codeCommune": "88158", + "libelleAcheminement": "ELOYES", + "nomCommune": "ELOYES" }, { - "codePostal": "40400", - "codeCommune": "40180", - "libelleAcheminement": "MEILHAN", - "nomCommune": "MEILHAN" + "codePostal": "88650", + "codeCommune": "88159", + "libelleAcheminement": "ENTRE DEUX EAUX", + "nomCommune": "ENTRE DEUX EAUX" }, { - "codePostal": "40170", - "codeCommune": "40182", - "libelleAcheminement": "MEZOS", - "nomCommune": "MEZOS" + "codePostal": "88260", + "codeCommune": "88161", + "libelleAcheminement": "ESCLES", + "nomCommune": "ESCLES" }, { - "codePostal": "40350", - "codeCommune": "40183", - "libelleAcheminement": "MIMBASTE", - "nomCommune": "MIMBASTE" + "codePostal": "88130", + "codeCommune": "88163", + "libelleAcheminement": "ESSEGNEY", + "nomCommune": "ESSEGNEY" }, { - "codePostal": "40660", - "codeCommune": "40187", - "libelleAcheminement": "MOLIETS ET MAA", - "nomCommune": "MOLIETS ET MAA" + "codePostal": "88600", + "codeCommune": "88169", + "libelleAcheminement": "FAYS", + "nomCommune": "FAYS" }, { - "codePostal": "40500", - "codeCommune": "40196", - "libelleAcheminement": "MONTSOUE", - "nomCommune": "MONTSOUE" + "codePostal": "88360", + "codeCommune": "88170", + "libelleAcheminement": "FERDRUPT", + "nomCommune": "FERDRUPT" }, { - "codePostal": "40110", - "codeCommune": "40197", - "libelleAcheminement": "MORCENX LA NOUVELLE", - "nomCommune": "MORCENX LA NOUVELLE" + "codePostal": "88130", + "codeCommune": "88173", + "libelleAcheminement": "FLOREMONT", + "nomCommune": "FLOREMONT" }, { - "codePostal": "40110", - "codeCommune": "40197", - "libelleAcheminement": "MORCENX LA NOUVELLE", - "nomCommune": "MORCENX LA NOUVELLE" + "codePostal": "88390", + "codeCommune": "88174", + "libelleAcheminement": "FOMEREY", + "nomCommune": "FOMEREY" }, { - "codePostal": "40250", - "codeCommune": "40201", - "libelleAcheminement": "MUGRON", - "nomCommune": "MUGRON" + "codePostal": "88240", + "codeCommune": "88176", + "libelleAcheminement": "FONTENOY LE CHATEAU", + "nomCommune": "FONTENOY LE CHATEAU" }, { - "codePostal": "40180", - "codeCommune": "40202", - "libelleAcheminement": "NARROSSE", - "nomCommune": "NARROSSE" + "codePostal": "88390", + "codeCommune": "88178", + "libelleAcheminement": "LES FORGES", + "nomCommune": "LES FORGES" }, { - "codePostal": "40380", - "codeCommune": "40208", - "libelleAcheminement": "ONARD", - "nomCommune": "ONARD" + "codePostal": "88490", + "codeCommune": "88182", + "libelleAcheminement": "FRAPELLE", + "nomCommune": "FRAPELLE" }, { - "codePostal": "40440", - "codeCommune": "40209", - "libelleAcheminement": "ONDRES", - "nomCommune": "ONDRES" + "codePostal": "88630", + "codeCommune": "88183", + "libelleAcheminement": "FREBECOURT", + "nomCommune": "FREBECOURT" }, { - "codePostal": "40110", - "codeCommune": "40210", - "libelleAcheminement": "ONESSE LAHARIE", - "nomCommune": "ONESSE LAHARIE" + "codePostal": "88440", + "codeCommune": "88190", + "libelleAcheminement": "FRIZON", + "nomCommune": "FRIZON" }, { - "codePostal": "40300", - "codeCommune": "40211", - "libelleAcheminement": "ORIST", - "nomCommune": "ORIST" + "codePostal": "88270", + "codeCommune": "88192", + "libelleAcheminement": "GELVECOURT ET ADOMPT", + "nomCommune": "GELVECOURT ET ADOMPT" }, { - "codePostal": "40230", - "codeCommune": "40213", - "libelleAcheminement": "ORX", - "nomCommune": "ORX" + "codePostal": "88170", + "codeCommune": "88206", + "libelleAcheminement": "GIRONCOURT SUR VRAINE", + "nomCommune": "GIRONCOURT SUR VRAINE" }, { - "codePostal": "40310", - "codeCommune": "40218", - "libelleAcheminement": "PARLEBOSCQ", - "nomCommune": "PARLEBOSCQ" + "codePostal": "88190", + "codeCommune": "88209", + "libelleAcheminement": "GOLBEY", + "nomCommune": "GOLBEY" }, { - "codePostal": "40320", - "codeCommune": "40225", - "libelleAcheminement": "PHILONDENX", - "nomCommune": "PHILONDENX" + "codePostal": "88210", + "codeCommune": "88215", + "libelleAcheminement": "GRANDRUPT", + "nomCommune": "GRANDRUPT" }, { - "codePostal": "40410", - "codeCommune": "40227", - "libelleAcheminement": "PISSOS", - "nomCommune": "PISSOS" + "codePostal": "88630", + "codeCommune": "88219", + "libelleAcheminement": "GREUX", + "nomCommune": "GREUX" }, { - "codePostal": "40360", - "codeCommune": "40228", - "libelleAcheminement": "POMAREZ", - "nomCommune": "POMAREZ" + "codePostal": "88410", + "codeCommune": "88220", + "libelleAcheminement": "GRIGNONCOURT", + "nomCommune": "GRIGNONCOURT" }, { - "codePostal": "40465", - "codeCommune": "40230", - "libelleAcheminement": "PONTONX SUR L ADOUR", - "nomCommune": "PONTONX SUR L ADOUR" + "codePostal": "88170", + "codeCommune": "88241", + "libelleAcheminement": "HOUECOURT", + "nomCommune": "HOUECOURT" }, { - "codePostal": "40700", - "codeCommune": "40232", - "libelleAcheminement": "POUDENX", - "nomCommune": "POUDENX" + "codePostal": "88210", + "codeCommune": "88245", + "libelleAcheminement": "HURBACHE", + "nomCommune": "HURBACHE" }, { - "codePostal": "40350", - "codeCommune": "40233", - "libelleAcheminement": "POUILLON", - "nomCommune": "POUILLON" + "codePostal": "88600", + "codeCommune": "88261", + "libelleAcheminement": "LAVAL SUR VOLOGNE", + "nomCommune": "LAVAL SUR VOLOGNE" }, { - "codePostal": "40180", - "codeCommune": "40244", - "libelleAcheminement": "RIVIERE SAAS ET GOURBY", - "nomCommune": "RIVIERE SAAS ET GOURBY" + "codePostal": "88800", + "codeCommune": "88271", + "libelleAcheminement": "LIGNEVILLE", + "nomCommune": "LIGNEVILLE" }, { - "codePostal": "40630", - "codeCommune": "40246", - "libelleAcheminement": "SABRES", - "nomCommune": "SABRES" + "codePostal": "88490", + "codeCommune": "88276", + "libelleAcheminement": "LUSSE", + "nomCommune": "LUSSE" }, { - "codePostal": "40250", - "codeCommune": "40249", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "88270", + "codeCommune": "88279", + "libelleAcheminement": "MADECOURT", + "nomCommune": "MADECOURT" }, { - "codePostal": "40380", - "codeCommune": "40263", - "libelleAcheminement": "ST JEAN DE LIER", - "nomCommune": "ST JEAN DE LIER" + "codePostal": "88450", + "codeCommune": "88280", + "libelleAcheminement": "MADEGNEY", + "nomCommune": "MADEGNEY" }, { - "codePostal": "40240", - "codeCommune": "40267", - "libelleAcheminement": "ST JUSTIN", - "nomCommune": "ST JUSTIN" + "codePostal": "88270", + "codeCommune": "88281", + "libelleAcheminement": "MADONNE ET LAMEREY", + "nomCommune": "MADONNE ET LAMEREY" }, { - "codePostal": "40090", - "codeCommune": "40274", - "libelleAcheminement": "ST MARTIN D ONEY", - "nomCommune": "ST MARTIN D ONEY" + "codePostal": "88270", + "codeCommune": "88288", + "libelleAcheminement": "MARONCOURT", + "nomCommune": "MARONCOURT" }, { - "codePostal": "40180", - "codeCommune": "40277", - "libelleAcheminement": "ST PANDELON", - "nomCommune": "ST PANDELON" + "codePostal": "88500", + "codeCommune": "88295", + "libelleAcheminement": "MAZIROT", + "nomCommune": "MAZIROT" }, { - "codePostal": "40990", - "codeCommune": "40279", - "libelleAcheminement": "ST PAUL LES DAX", - "nomCommune": "ST PAUL LES DAX" + "codePostal": "88700", + "codeCommune": "88298", + "libelleAcheminement": "MENARMONT", + "nomCommune": "MENARMONT" }, { - "codePostal": "40280", - "codeCommune": "40281", - "libelleAcheminement": "ST PIERRE DU MONT", - "nomCommune": "ST PIERRE DU MONT" + "codePostal": "88500", + "codeCommune": "88304", + "libelleAcheminement": "MIRECOURT", + "nomCommune": "MIRECOURT" }, { - "codePostal": "40460", - "codeCommune": "40287", - "libelleAcheminement": "SANGUINET", - "nomCommune": "SANGUINET" + "codePostal": "88630", + "codeCommune": "88305", + "libelleAcheminement": "MONCEL SUR VAIR", + "nomCommune": "MONCEL SUR VAIR" }, { - "codePostal": "40500", - "codeCommune": "40289", - "libelleAcheminement": "SARRAZIET", - "nomCommune": "SARRAZIET" + "codePostal": "88210", + "codeCommune": "88306", + "libelleAcheminement": "LE MONT", + "nomCommune": "LE MONT" }, { - "codePostal": "40230", - "codeCommune": "40291", - "libelleAcheminement": "SAUBION", - "nomCommune": "SAUBION" + "codePostal": "88300", + "codeCommune": "88308", + "libelleAcheminement": "MONT LES NEUFCHATEAU", + "nomCommune": "MONT LES NEUFCHATEAU" }, { - "codePostal": "40180", - "codeCommune": "40294", - "libelleAcheminement": "SAUGNAC ET CAMBRAN", - "nomCommune": "SAUGNAC ET CAMBRAN" + "codePostal": "88410", + "codeCommune": "88310", + "libelleAcheminement": "MONTHUREUX SUR SAONE", + "nomCommune": "MONTHUREUX SUR SAONE" }, { - "codePostal": "40420", - "codeCommune": "40297", - "libelleAcheminement": "LE SEN", - "nomCommune": "LE SEN" + "codePostal": "88140", + "codeCommune": "88316", + "libelleAcheminement": "MORVILLE", + "nomCommune": "MORVILLE" }, { - "codePostal": "40150", - "codeCommune": "40304", - "libelleAcheminement": "SOORTS HOSSEGOR", - "nomCommune": "SOORTS HOSSEGOR" + "codePostal": "88420", + "codeCommune": "88319", + "libelleAcheminement": "MOYENMOUTIER", + "nomCommune": "MOYENMOUTIER" }, { - "codePostal": "40430", - "codeCommune": "40307", - "libelleAcheminement": "SORE", - "nomCommune": "SORE" + "codePostal": "88600", + "codeCommune": "88322", + "libelleAcheminement": "LA NEUVEVILLE DEVANT LEPANGES", + "nomCommune": "LA NEUVEVILLE DEVANT LEPANGES" }, { - "codePostal": "40250", - "codeCommune": "40309", - "libelleAcheminement": "SOUPROSSE", - "nomCommune": "SOUPROSSE" + "codePostal": "88170", + "codeCommune": "88336", + "libelleAcheminement": "OLLAINVILLE", + "nomCommune": "OLLAINVILLE" }, { - "codePostal": "40140", - "codeCommune": "40310", - "libelleAcheminement": "SOUSTONS", - "nomCommune": "SOUSTONS" + "codePostal": "88350", + "codeCommune": "88344", + "libelleAcheminement": "PARGNY SOUS MUREAU", + "nomCommune": "PARGNY SOUS MUREAU" }, { - "codePostal": "40260", - "codeCommune": "40311", - "libelleAcheminement": "TALLER", - "nomCommune": "TALLER" + "codePostal": "88490", + "codeCommune": "88345", + "libelleAcheminement": "LA PETITE FOSSE", + "nomCommune": "LA PETITE FOSSE" }, { - "codePostal": "40220", - "codeCommune": "40312", - "libelleAcheminement": "TARNOS", - "nomCommune": "TARNOS" + "codePostal": "88270", + "codeCommune": "88347", + "libelleAcheminement": "PIERREFITTE", + "nomCommune": "PIERREFITTE" }, { - "codePostal": "40400", - "codeCommune": "40313", - "libelleAcheminement": "TARTAS", - "nomCommune": "TARTAS" + "codePostal": "88170", + "codeCommune": "88350", + "libelleAcheminement": "PLEUVEZAIN", + "nomCommune": "PLEUVEZAIN" }, { - "codePostal": "40360", - "codeCommune": "40316", - "libelleAcheminement": "TILH", - "nomCommune": "TILH" + "codePostal": "88600", + "codeCommune": "88356", + "libelleAcheminement": "LES POULIERES", + "nomCommune": "LES POULIERES" }, { - "codePostal": "40630", - "codeCommune": "40319", - "libelleAcheminement": "TRENSACQ", - "nomCommune": "TRENSACQ" + "codePostal": "88500", + "codeCommune": "88357", + "libelleAcheminement": "POUSSAY", + "nomCommune": "POUSSAY" }, { - "codePostal": "40090", - "codeCommune": "40320", - "libelleAcheminement": "UCHACQ ET PARENTIS", - "nomCommune": "UCHACQ ET PARENTIS" + "codePostal": "88550", + "codeCommune": "88358", + "libelleAcheminement": "POUXEUX", + "nomCommune": "POUXEUX" }, { - "codePostal": "40480", - "codeCommune": "40328", - "libelleAcheminement": "VIEUX BOUCAU LES BAINS", - "nomCommune": "VIEUX BOUCAU LES BAINS" + "codePostal": "88170", + "codeCommune": "88366", + "libelleAcheminement": "RAINVILLE", + "nomCommune": "RAINVILLE" }, { - "codePostal": "40160", - "codeCommune": "40332", - "libelleAcheminement": "YCHOUX", - "nomCommune": "YCHOUX" + "codePostal": "88110", + "codeCommune": "88372", + "libelleAcheminement": "RAON L ETAPE", + "nomCommune": "RAON L ETAPE" }, { - "codePostal": "41500", - "codeCommune": "41008", - "libelleAcheminement": "AVARAY", - "nomCommune": "AVARAY" + "codePostal": "88520", + "codeCommune": "88375", + "libelleAcheminement": "RAVES", + "nomCommune": "RAVES" }, { - "codePostal": "41370", - "codeCommune": "41027", - "libelleAcheminement": "BRIOU", - "nomCommune": "BRIOU" + "codePostal": "88260", + "codeCommune": "88381", + "libelleAcheminement": "RELANGES", + "nomCommune": "RELANGES" }, { - "codePostal": "41160", - "codeCommune": "41028", - "libelleAcheminement": "BUSLOUP", - "nomCommune": "BUSLOUP" + "codePostal": "88200", + "codeCommune": "88383", + "libelleAcheminement": "REMIREMONT", + "nomCommune": "REMIREMONT" }, { - "codePostal": "41330", - "codeCommune": "41035", - "libelleAcheminement": "CHAMPIGNY EN BEAUCE", - "nomCommune": "CHAMPIGNY EN BEAUCE" + "codePostal": "88320", + "codeCommune": "88394", + "libelleAcheminement": "ROMAIN AUX BOIS", + "nomCommune": "ROMAIN AUX BOIS" }, { - "codePostal": "41120", - "codeCommune": "41059", - "libelleAcheminement": "LE CONTROIS EN SOLOGNE", - "nomCommune": "LE CONTROIS EN SOLOGNE" + "codePostal": "88700", + "codeCommune": "88402", + "libelleAcheminement": "ROVILLE AUX CHENES", + "nomCommune": "ROVILLE AUX CHENES" }, { - "codePostal": "41700", - "codeCommune": "41062", - "libelleAcheminement": "COUDDES", - "nomCommune": "COUDDES" + "codePostal": "88500", + "codeCommune": "88403", + "libelleAcheminement": "ROZEROTTE", + "nomCommune": "ROZEROTTE" }, { - "codePostal": "41100", - "codeCommune": "41065", - "libelleAcheminement": "COULOMMIERS LA TOUR", - "nomCommune": "COULOMMIERS LA TOUR" + "codePostal": "88130", + "codeCommune": "88406", + "libelleAcheminement": "RUGNEY", + "nomCommune": "RUGNEY" }, { - "codePostal": "41220", - "codeCommune": "41074", - "libelleAcheminement": "DHUIZON", - "nomCommune": "DHUIZON" + "codePostal": "88700", + "codeCommune": "88417", + "libelleAcheminement": "ST GORGON", + "nomCommune": "ST GORGON" }, { - "codePostal": "41270", - "codeCommune": "41075", - "libelleAcheminement": "DROUE", - "nomCommune": "DROUE" + "codePostal": "88410", + "codeCommune": "88421", + "libelleAcheminement": "ST JULIEN", + "nomCommune": "ST JULIEN" }, { - "codePostal": "41400", - "codeCommune": "41080", - "libelleAcheminement": "FAVEROLLES SUR CHER", - "nomCommune": "FAVEROLLES SUR CHER" + "codePostal": "88650", + "codeCommune": "88423", + "libelleAcheminement": "ST LEONARD", + "nomCommune": "ST LEONARD" }, { - "codePostal": "41100", - "codeCommune": "41081", - "libelleAcheminement": "FAYE", - "nomCommune": "FAYE" + "codePostal": "88100", + "codeCommune": "88424", + "libelleAcheminement": "STE MARGUERITE", + "nomCommune": "STE MARGUERITE" }, { - "codePostal": "41800", - "codeCommune": "41113", - "libelleAcheminement": "LAVARDIN", - "nomCommune": "LAVARDIN" + "codePostal": "88560", + "codeCommune": "88426", + "libelleAcheminement": "ST MAURICE SUR MOSELLE", + "nomCommune": "ST MAURICE SUR MOSELLE" }, { - "codePostal": "41160", - "codeCommune": "41115", - "libelleAcheminement": "LIGNIERES", - "nomCommune": "LIGNIERES" + "codePostal": "88170", + "codeCommune": "88427", + "libelleAcheminement": "ST MENGE", + "nomCommune": "ST MENGE" }, { - "codePostal": "41200", - "codeCommune": "41118", - "libelleAcheminement": "LOREUX", - "nomCommune": "LOREUX" + "codePostal": "88470", + "codeCommune": "88438", + "libelleAcheminement": "LA SALLE", + "nomCommune": "LA SALLE" }, { - "codePostal": "41100", - "codeCommune": "41124", - "libelleAcheminement": "MARCILLY EN BEAUCE", - "nomCommune": "MARCILLY EN BEAUCE" + "codePostal": "88600", + "codeCommune": "88454", + "libelleAcheminement": "SERCOEUR", + "nomCommune": "SERCOEUR" }, { - "codePostal": "41500", - "codeCommune": "41130", - "libelleAcheminement": "MAVES", - "nomCommune": "MAVES" + "codePostal": "88320", + "codeCommune": "88455", + "libelleAcheminement": "SERECOURT", + "nomCommune": "SERECOURT" }, { - "codePostal": "41500", - "codeCommune": "41134", - "libelleAcheminement": "MENARS", - "nomCommune": "MENARS" + "codePostal": "88130", + "codeCommune": "88458", + "libelleAcheminement": "SOCOURT", + "nomCommune": "SOCOURT" }, { - "codePostal": "41320", - "codeCommune": "41135", - "libelleAcheminement": "MENNETOU SUR CHER", - "nomCommune": "MENNETOU SUR CHER" + "codePostal": "88140", + "codeCommune": "88461", + "libelleAcheminement": "SURIAUVILLE", + "nomCommune": "SURIAUVILLE" }, { - "codePostal": "41120", - "codeCommune": "41147", - "libelleAcheminement": "LES MONTILS", - "nomCommune": "LES MONTILS" + "codePostal": "88160", + "codeCommune": "88468", + "libelleAcheminement": "LE THILLOT", + "nomCommune": "LE THILLOT" }, { - "codePostal": "41800", - "codeCommune": "41149", - "libelleAcheminement": "MONTOIRE SUR LE LOIR", - "nomCommune": "MONTOIRE SUR LE LOIR" + "codePostal": "88410", + "codeCommune": "88471", + "libelleAcheminement": "LES THONS", + "nomCommune": "LES THONS" }, { - "codePostal": "41250", - "codeCommune": "41150", - "libelleAcheminement": "MONT PRES CHAMBORD", - "nomCommune": "MONT PRES CHAMBORD" + "codePostal": "88320", + "codeCommune": "88475", + "libelleAcheminement": "TOLLAINCOURT", + "nomCommune": "TOLLAINCOURT" }, { - "codePostal": "41800", - "codeCommune": "41153", - "libelleAcheminement": "MONTROUVEAU", - "nomCommune": "MONTROUVEAU" + "codePostal": "88240", + "codeCommune": "88479", + "libelleAcheminement": "TREMONZEY", + "nomCommune": "TREMONZEY" }, { - "codePostal": "41160", - "codeCommune": "41154", - "libelleAcheminement": "MOREE", - "nomCommune": "MOREE" + "codePostal": "88140", + "codeCommune": "88485", + "libelleAcheminement": "LA VACHERESSE ET LA ROUILLIE", + "nomCommune": "LA VACHERESSE ET LA ROUILLIE" }, { - "codePostal": "41160", - "codeCommune": "41173", - "libelleAcheminement": "BEAUCE LA ROMAINE", - "nomCommune": "BEAUCE LA ROMAINE" + "codePostal": "88260", + "codeCommune": "88491", + "libelleAcheminement": "LES VALLOIS", + "nomCommune": "LES VALLOIS" }, { - "codePostal": "41240", - "codeCommune": "41173", - "libelleAcheminement": "BEAUCE LA ROMAINE", - "nomCommune": "BEAUCE LA ROMAINE" + "codePostal": "88500", + "codeCommune": "88494", + "libelleAcheminement": "VAUBEXY", + "nomCommune": "VAUBEXY" }, { - "codePostal": "41240", - "codeCommune": "41173", - "libelleAcheminement": "BEAUCE LA ROMAINE", - "nomCommune": "BEAUCE LA ROMAINE" + "codePostal": "88140", + "codeCommune": "88496", + "libelleAcheminement": "VAUDONCOURT", + "nomCommune": "VAUDONCOURT" }, { - "codePostal": "41240", - "codeCommune": "41173", - "libelleAcheminement": "BEAUCE LA ROMAINE", - "nomCommune": "BEAUCE LA ROMAINE" + "codePostal": "88350", + "codeCommune": "88511", + "libelleAcheminement": "VILLOUXEL", + "nomCommune": "VILLOUXEL" }, { - "codePostal": "41150", - "codeCommune": "41189", - "libelleAcheminement": "RILLY SUR LOIRE", - "nomCommune": "RILLY SUR LOIRE" + "codePostal": "88260", + "codeCommune": "88515", + "libelleAcheminement": "VIOMENIL", + "nomCommune": "VIOMENIL" }, { - "codePostal": "41110", - "codeCommune": "41198", - "libelleAcheminement": "ST AIGNAN", - "nomCommune": "ST AIGNAN" + "codePostal": "88520", + "codeCommune": "88526", + "libelleAcheminement": "WISEMBACH", + "nomCommune": "WISEMBACH" }, { - "codePostal": "41190", - "codeCommune": "41205", - "libelleAcheminement": "ST CYR DU GAULT", - "nomCommune": "ST CYR DU GAULT" + "codePostal": "88130", + "codeCommune": "88529", + "libelleAcheminement": "XARONVAL", + "nomCommune": "XARONVAL" }, { - "codePostal": "41400", - "codeCommune": "41211", - "libelleAcheminement": "ST GEORGES SUR CHER", - "nomCommune": "ST GEORGES SUR CHER" + "codePostal": "88220", + "codeCommune": "88530", + "libelleAcheminement": "XERTIGNY", + "nomCommune": "XERTIGNY" }, { - "codePostal": "41140", - "codeCommune": "41229", - "libelleAcheminement": "ST ROMAIN SUR CHER", - "nomCommune": "ST ROMAIN SUR CHER" + "codePostal": "88330", + "codeCommune": "88532", + "libelleAcheminement": "ZINCOURT", + "nomCommune": "ZINCOURT" }, { - "codePostal": "41300", - "codeCommune": "41241", - "libelleAcheminement": "SELLES ST DENIS", - "nomCommune": "SELLES ST DENIS" + "codePostal": "89110", + "codeCommune": "89003", + "libelleAcheminement": "MONTHOLON", + "nomCommune": "MONTHOLON" }, { - "codePostal": "41300", - "codeCommune": "41249", - "libelleAcheminement": "SOUESMES", - "nomCommune": "SOUESMES" + "codePostal": "89160", + "codeCommune": "89006", + "libelleAcheminement": "ANCY LE LIBRE", + "nomCommune": "ANCY LE LIBRE" }, { - "codePostal": "41800", - "codeCommune": "41250", - "libelleAcheminement": "SOUGE", - "nomCommune": "SOUGE" + "codePostal": "89740", + "codeCommune": "89019", + "libelleAcheminement": "ARTHONNAY", + "nomCommune": "ARTHONNAY" }, { - "codePostal": "41400", - "codeCommune": "41267", - "libelleAcheminement": "VALLIERES LES GRANDES", - "nomCommune": "VALLIERES LES GRANDES" + "codePostal": "89290", + "codeCommune": "89023", + "libelleAcheminement": "AUGY", + "nomCommune": "AUGY" }, { - "codePostal": "41290", - "codeCommune": "41273", - "libelleAcheminement": "VIEVY LE RAYE", - "nomCommune": "VIEVY LE RAYE" + "codePostal": "89290", + "codeCommune": "89024", + "libelleAcheminement": "AUXERRE", + "nomCommune": "AUXERRE" }, { - "codePostal": "41100", - "codeCommune": "41283", - "libelleAcheminement": "VILLEMARDY", - "nomCommune": "VILLEMARDY" + "codePostal": "89240", + "codeCommune": "89033", + "libelleAcheminement": "BEAUVOIR", + "nomCommune": "BEAUVOIR" }, { - "codePostal": "41290", - "codeCommune": "41284", - "libelleAcheminement": "VILLENEUVE FROUVILLE", - "nomCommune": "VILLENEUVE FROUVILLE" + "codePostal": "89150", + "codeCommune": "89036", + "libelleAcheminement": "LA BELLIOLE", + "nomCommune": "LA BELLIOLE" }, { - "codePostal": "41500", - "codeCommune": "41292", - "libelleAcheminement": "VILLEXANTON", - "nomCommune": "VILLEXANTON" + "codePostal": "89660", + "codeCommune": "89057", + "libelleAcheminement": "BROSSES", + "nomCommune": "BROSSES" }, { - "codePostal": "41600", - "codeCommune": "41297", - "libelleAcheminement": "YVOY LE MARRON", - "nomCommune": "YVOY LE MARRON" + "codePostal": "89410", + "codeCommune": "89067", + "libelleAcheminement": "CEZY", + "nomCommune": "CEZY" }, { - "codePostal": "42130", - "codeCommune": "42009", - "libelleAcheminement": "ARTHUN", - "nomCommune": "ARTHUN" + "codePostal": "89800", + "codeCommune": "89068", + "libelleAcheminement": "CHABLIS", + "nomCommune": "CHABLIS" }, { - "codePostal": "42330", - "codeCommune": "42010", - "libelleAcheminement": "AVEIZIEUX", - "nomCommune": "AVEIZIEUX" + "codePostal": "89210", + "codeCommune": "89076", + "libelleAcheminement": "CHAMPLOST", + "nomCommune": "CHAMPLOST" }, { - "codePostal": "42510", - "codeCommune": "42011", - "libelleAcheminement": "BALBIGNY", - "nomCommune": "BALBIGNY" + "codePostal": "89400", + "codeCommune": "89085", + "libelleAcheminement": "CHARMOY", + "nomCommune": "CHARMOY" }, { - "codePostal": "42220", - "codeCommune": "42023", - "libelleAcheminement": "BOURG ARGENTAL", - "nomCommune": "BOURG ARGENTAL" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "42460", - "codeCommune": "42033", - "libelleAcheminement": "LE CERGNE", - "nomCommune": "LE CERGNE" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "42600", - "codeCommune": "42038", - "libelleAcheminement": "CHALAIN LE COMTAL", - "nomCommune": "CHALAIN LE COMTAL" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "42920", - "codeCommune": "42039", - "libelleAcheminement": "CHALMAZEL JEANSAGNIERE", - "nomCommune": "CHALMAZEL JEANSAGNIERE" + "codePostal": "89700", + "codeCommune": "89098", + "libelleAcheminement": "CHENEY", + "nomCommune": "CHENEY" }, { - "codePostal": "42440", - "codeCommune": "42040", - "libelleAcheminement": "LA CHAMBA", - "nomCommune": "LA CHAMBA" + "codePostal": "89400", + "codeCommune": "89099", + "libelleAcheminement": "CHENY", + "nomCommune": "CHENY" }, { - "codePostal": "42500", - "codeCommune": "42044", - "libelleAcheminement": "LE CHAMBON FEUGEROLLES", - "nomCommune": "LE CHAMBON FEUGEROLLES" + "codePostal": "89240", + "codeCommune": "89102", + "libelleAcheminement": "CHEVANNES", + "nomCommune": "CHEVANNES" }, { - "codePostal": "42600", - "codeCommune": "42046", - "libelleAcheminement": "CHAMPDIEU", - "nomCommune": "CHAMPDIEU" + "codePostal": "89480", + "codeCommune": "89119", + "libelleAcheminement": "COULANGES SUR YONNE", + "nomCommune": "COULANGES SUR YONNE" }, { - "codePostal": "42430", - "codeCommune": "42047", - "libelleAcheminement": "CHAMPOLY", - "nomCommune": "CHAMPOLY" + "codePostal": "89740", + "codeCommune": "89131", + "libelleAcheminement": "CRUZY LE CHATEL", + "nomCommune": "CRUZY LE CHATEL" }, { - "codePostal": "42940", - "codeCommune": "42054", - "libelleAcheminement": "CHATELNEUF", - "nomCommune": "CHATELNEUF" + "codePostal": "89240", + "codeCommune": "89139", + "libelleAcheminement": "DIGES", + "nomCommune": "DIGES" }, { - "codePostal": "42140", - "codeCommune": "42055", - "libelleAcheminement": "CHATELUS", - "nomCommune": "CHATELUS" + "codePostal": "89500", + "codeCommune": "89142", + "libelleAcheminement": "DIXMONT", + "nomCommune": "DIXMONT" }, { - "codePostal": "42410", - "codeCommune": "42056", - "libelleAcheminement": "CHAVANAY", - "nomCommune": "CHAVANAY" + "codePostal": "89200", + "codeCommune": "89146", + "libelleAcheminement": "DOMECY SUR LE VAULT", + "nomCommune": "DOMECY SUR LE VAULT" }, { - "codePostal": "42560", - "codeCommune": "42058", - "libelleAcheminement": "CHAZELLES SUR LAVIEU", - "nomCommune": "CHAZELLES SUR LAVIEU" + "codePostal": "89240", + "codeCommune": "89150", + "libelleAcheminement": "EGLENY", + "nomCommune": "EGLENY" }, { - "codePostal": "42560", - "codeCommune": "42060", - "libelleAcheminement": "CHENEREILLES", - "nomCommune": "CHENEREILLES" + "codePostal": "89500", + "codeCommune": "89151", + "libelleAcheminement": "EGRISELLES LE BOCAGE", + "nomCommune": "EGRISELLES LE BOCAGE" }, { - "codePostal": "42111", - "codeCommune": "42072", - "libelleAcheminement": "LA COTE EN COUZAN", - "nomCommune": "LA COTE EN COUZAN" + "codePostal": "89400", + "codeCommune": "89152", + "libelleAcheminement": "EPINEAU LES VOVES", + "nomCommune": "EPINEAU LES VOVES" }, { - "codePostal": "42210", - "codeCommune": "42075", - "libelleAcheminement": "CRAINTILLEUX", - "nomCommune": "CRAINTILLEUX" + "codePostal": "89210", + "codeCommune": "89156", + "libelleAcheminement": "ESNON", + "nomCommune": "ESNON" }, { - "codePostal": "42670", - "codeCommune": "42086", - "libelleAcheminement": "ECOCHE", - "nomCommune": "ECOCHE" + "codePostal": "89190", + "codeCommune": "89165", + "libelleAcheminement": "FLACY", + "nomCommune": "FLACY" }, { - "codePostal": "42110", - "codeCommune": "42088", - "libelleAcheminement": "EPERCIEUX ST PAUL", - "nomCommune": "EPERCIEUX ST PAUL" + "codePostal": "89113", + "codeCommune": "89167", + "libelleAcheminement": "FLEURY LA VALLEE", + "nomCommune": "FLEURY LA VALLEE" }, { - "codePostal": "42360", - "codeCommune": "42090", - "libelleAcheminement": "ESSERTINES EN DONZY", - "nomCommune": "ESSERTINES EN DONZY" + "codePostal": "89320", + "codeCommune": "89181", + "libelleAcheminement": "FOURNAUDIN", + "nomCommune": "FOURNAUDIN" }, { - "codePostal": "42320", - "codeCommune": "42093", - "libelleAcheminement": "FARNAY", - "nomCommune": "FARNAY" + "codePostal": "89160", + "codeCommune": "89187", + "libelleAcheminement": "GIGNY", + "nomCommune": "GIGNY" }, { - "codePostal": "42110", - "codeCommune": "42094", - "libelleAcheminement": "FEURS", - "nomCommune": "FEURS" + "codePostal": "89420", + "codeCommune": "89197", + "libelleAcheminement": "GUILLON TERRE PLAINE", + "nomCommune": "GUILLON TERRE PLAINE" }, { - "codePostal": "42490", - "codeCommune": "42099", - "libelleAcheminement": "FRAISSES", - "nomCommune": "FRAISSES" + "codePostal": "89420", + "codeCommune": "89197", + "libelleAcheminement": "GUILLON TERRE PLAINE", + "nomCommune": "GUILLON TERRE PLAINE" }, { - "codePostal": "42320", - "codeCommune": "42103", - "libelleAcheminement": "LA GRAND CROIX", - "nomCommune": "LA GRAND CROIX" + "codePostal": "89250", + "codeCommune": "89200", + "libelleAcheminement": "HAUTERIVE", + "nomCommune": "HAUTERIVE" }, { - "codePostal": "42470", - "codeCommune": "42118", - "libelleAcheminement": "LAY", - "nomCommune": "LAY" + "codePostal": "89550", + "codeCommune": "89201", + "libelleAcheminement": "HERY", + "nomCommune": "HERY" }, { - "codePostal": "42155", - "codeCommune": "42120", - "libelleAcheminement": "LENTIGNY", - "nomCommune": "LENTIGNY" + "codePostal": "89440", + "codeCommune": "89204", + "libelleAcheminement": "L ISLE SUR SEREIN", + "nomCommune": "L ISLE SUR SEREIN" }, { - "codePostal": "42660", - "codeCommune": "42139", - "libelleAcheminement": "MARLHES", - "nomCommune": "MARLHES" + "codePostal": "89440", + "codeCommune": "89208", + "libelleAcheminement": "JOUX LA VILLE", + "nomCommune": "JOUX LA VILLE" }, { - "codePostal": "42750", - "codeCommune": "42141", - "libelleAcheminement": "MARS", - "nomCommune": "MARS" + "codePostal": "89190", + "codeCommune": "89214", + "libelleAcheminement": "LAILLY", + "nomCommune": "LAILLY" }, { - "codePostal": "42380", - "codeCommune": "42146", - "libelleAcheminement": "MONTARCHER", - "nomCommune": "MONTARCHER" + "codePostal": "89400", + "codeCommune": "89218", + "libelleAcheminement": "LAROCHE ST CYDROINE", + "nomCommune": "LAROCHE ST CYDROINE" }, { - "codePostal": "42600", - "codeCommune": "42147", - "libelleAcheminement": "MONTBRISON", - "nomCommune": "MONTBRISON" + "codePostal": "89800", + "codeCommune": "89224", + "libelleAcheminement": "LICHERES PRES AIGREMONT", + "nomCommune": "LICHERES PRES AIGREMONT" }, { - "codePostal": "42360", - "codeCommune": "42148", - "libelleAcheminement": "MONTCHAL", - "nomCommune": "MONTCHAL" + "codePostal": "89240", + "codeCommune": "89228", + "libelleAcheminement": "LINDRY", + "nomCommune": "LINDRY" }, { - "codePostal": "42720", - "codeCommune": "42152", - "libelleAcheminement": "NANDAX", - "nomCommune": "NANDAX" + "codePostal": "89100", + "codeCommune": "89236", + "libelleAcheminement": "MAILLOT", + "nomCommune": "MAILLOT" }, { - "codePostal": "42120", - "codeCommune": "42161", - "libelleAcheminement": "NOTRE DAME DE BOISSET", - "nomCommune": "NOTRE DAME DE BOISSET" + "codePostal": "89660", + "codeCommune": "89238", + "libelleAcheminement": "MAILLY LE CHATEAU", + "nomCommune": "MAILLY LE CHATEAU" }, { - "codePostal": "42155", - "codeCommune": "42162", - "libelleAcheminement": "OUCHES", - "nomCommune": "OUCHES" + "codePostal": "89100", + "codeCommune": "89239", + "libelleAcheminement": "MALAY LE GRAND", + "nomCommune": "MALAY LE GRAND" }, { - "codePostal": "42370", - "codeCommune": "42182", - "libelleAcheminement": "RENAISON", - "nomCommune": "RENAISON" + "codePostal": "89800", + "codeCommune": "89242", + "libelleAcheminement": "MALIGNY", + "nomCommune": "MALIGNY" }, { - "codePostal": "42520", - "codeCommune": "42191", - "libelleAcheminement": "ROISEY", - "nomCommune": "ROISEY" + "codePostal": "89210", + "codeCommune": "89249", + "libelleAcheminement": "MERCY", + "nomCommune": "MERCY" }, { - "codePostal": "42370", - "codeCommune": "42198", - "libelleAcheminement": "ST ALBAN LES EAUX", - "nomCommune": "ST ALBAN LES EAUX" + "codePostal": "89110", + "codeCommune": "89251", + "libelleAcheminement": "MERRY LA VALLEE", + "nomCommune": "MERRY LA VALLEE" }, { - "codePostal": "42210", - "codeCommune": "42200", - "libelleAcheminement": "ST ANDRE LE PUY", - "nomCommune": "ST ANDRE LE PUY" + "codePostal": "89580", + "codeCommune": "89256", + "libelleAcheminement": "MIGE", + "nomCommune": "MIGE" }, { - "codePostal": "42400", - "codeCommune": "42207", - "libelleAcheminement": "ST CHAMOND", - "nomCommune": "ST CHAMOND" + "codePostal": "89660", + "codeCommune": "89266", + "libelleAcheminement": "MONTILLOT", + "nomCommune": "MONTILLOT" }, { - "codePostal": "42320", - "codeCommune": "42208", - "libelleAcheminement": "ST CHRISTO EN JAREZ", - "nomCommune": "ST CHRISTO EN JAREZ" + "codePostal": "89310", + "codeCommune": "89271", + "libelleAcheminement": "MOULINS EN TONNERROIS", + "nomCommune": "MOULINS EN TONNERROIS" }, { - "codePostal": "42111", - "codeCommune": "42217", - "libelleAcheminement": "ST DIDIER SUR ROCHEFORT", - "nomCommune": "ST DIDIER SUR ROCHEFORT" + "codePostal": "89310", + "codeCommune": "89279", + "libelleAcheminement": "NOYERS", + "nomCommune": "NOYERS" }, { - "codePostal": "42100", - "codeCommune": "42218", - "libelleAcheminement": "ST ETIENNE", - "nomCommune": "ST ETIENNE" + "codePostal": "89560", + "codeCommune": "89283", + "libelleAcheminement": "OUANNE", + "nomCommune": "OUANNE" }, { - "codePostal": "42130", - "codeCommune": "42219", - "libelleAcheminement": "ST ETIENNE LE MOLARD", - "nomCommune": "ST ETIENNE LE MOLARD" + "codePostal": "89240", + "codeCommune": "89286", + "libelleAcheminement": "PARLY", + "nomCommune": "PARLY" }, { - "codePostal": "42670", - "codeCommune": "42229", - "libelleAcheminement": "ST GERMAIN LA MONTAGNE", - "nomCommune": "ST GERMAIN LA MONTAGNE" + "codePostal": "89360", + "codeCommune": "89292", + "libelleAcheminement": "PERCEY", + "nomCommune": "PERCEY" }, { - "codePostal": "42260", - "codeCommune": "42230", - "libelleAcheminement": "ST GERMAIN LAVAL", - "nomCommune": "ST GERMAIN LAVAL" + "codePostal": "89140", + "codeCommune": "89309", + "libelleAcheminement": "PONT SUR YONNE", + "nomCommune": "PONT SUR YONNE" }, { - "codePostal": "42155", - "codeCommune": "42253", - "libelleAcheminement": "ST LEGER SUR ROANNE", - "nomCommune": "ST LEGER SUR ROANNE" + "codePostal": "89800", + "codeCommune": "89315", + "libelleAcheminement": "PREHY", + "nomCommune": "PREHY" }, { - "codePostal": "42122", - "codeCommune": "42254", - "libelleAcheminement": "ST MARCEL DE FELINES", - "nomCommune": "ST MARCEL DE FELINES" + "codePostal": "89200", + "codeCommune": "89316", + "libelleAcheminement": "PROVENCY", + "nomCommune": "PROVENCY" }, { - "codePostal": "42620", - "codeCommune": "42257", - "libelleAcheminement": "ST MARTIN D ESTREAUX", - "nomCommune": "ST MARTIN D ESTREAUX" + "codePostal": "89630", + "codeCommune": "89318", + "libelleAcheminement": "QUARRE LES TOMBES", + "nomCommune": "QUARRE LES TOMBES" }, { - "codePostal": "42110", - "codeCommune": "42261", - "libelleAcheminement": "ST MARTIN LESTRA", - "nomCommune": "ST MARTIN LESTRA" + "codePostal": "89700", + "codeCommune": "89323", + "libelleAcheminement": "ROFFEY", + "nomCommune": "ROFFEY" }, { - "codePostal": "42260", - "codeCommune": "42268", - "libelleAcheminement": "VEZELIN SUR LOIRE", - "nomCommune": "VEZELIN SUR LOIRE" + "codePostal": "89520", + "codeCommune": "89331", + "libelleAcheminement": "SAINPUITS", + "nomCommune": "SAINPUITS" }, { - "codePostal": "42190", - "codeCommune": "42273", - "libelleAcheminement": "ST PIERRE LA NOAILLE", - "nomCommune": "ST PIERRE LA NOAILLE" + "codePostal": "89420", + "codeCommune": "89333", + "libelleAcheminement": "ST ANDRE EN TERRE PLAINE", + "nomCommune": "ST ANDRE EN TERRE PLAINE" }, { - "codePostal": "42170", - "codeCommune": "42279", - "libelleAcheminement": "ST JUST ST RAMBERT", - "nomCommune": "ST JUST ST RAMBERT" + "codePostal": "89170", + "codeCommune": "89344", + "libelleAcheminement": "ST FARGEAU", + "nomCommune": "ST FARGEAU" }, { - "codePostal": "42610", - "codeCommune": "42285", - "libelleAcheminement": "ST ROMAIN LE PUY", - "nomCommune": "ST ROMAIN LE PUY" + "codePostal": "89600", + "codeCommune": "89345", + "libelleAcheminement": "ST FLORENTIN", + "nomCommune": "ST FLORENTIN" }, { - "codePostal": "42660", - "codeCommune": "42286", - "libelleAcheminement": "ST ROMAIN LES ATHEUX", - "nomCommune": "ST ROMAIN LES ATHEUX" + "codePostal": "89600", + "codeCommune": "89345", + "libelleAcheminement": "ST FLORENTIN", + "nomCommune": "ST FLORENTIN" }, { - "codePostal": "42220", - "codeCommune": "42287", - "libelleAcheminement": "ST SAUVEUR EN RUE", - "nomCommune": "ST SAUVEUR EN RUE" + "codePostal": "89100", + "codeCommune": "89354", + "libelleAcheminement": "ST MARTIN DU TERTRE", + "nomCommune": "ST MARTIN DU TERTRE" }, { - "codePostal": "42470", - "codeCommune": "42289", - "libelleAcheminement": "ST SYMPHORIEN DE LAY", - "nomCommune": "ST SYMPHORIEN DE LAY" + "codePostal": "89700", + "codeCommune": "89355", + "libelleAcheminement": "ST MARTIN SUR ARMANCON", + "nomCommune": "ST MARTIN SUR ARMANCON" }, { - "codePostal": "42110", - "codeCommune": "42296", - "libelleAcheminement": "SALT EN DONZY", - "nomCommune": "SALT EN DONZY" + "codePostal": "89160", + "codeCommune": "89374", + "libelleAcheminement": "SAMBOURG", + "nomCommune": "SAMBOURG" }, { - "codePostal": "42110", - "codeCommune": "42297", - "libelleAcheminement": "SALVIZINET", - "nomCommune": "SALVIZINET" + "codePostal": "89140", + "codeCommune": "89390", + "libelleAcheminement": "SERBONNES", + "nomCommune": "SERBONNES" }, { - "codePostal": "42600", - "codeCommune": "42299", - "libelleAcheminement": "SAVIGNEUX", - "nomCommune": "SAVIGNEUX" + "codePostal": "89110", + "codeCommune": "89397", + "libelleAcheminement": "SOMMECAISE", + "nomCommune": "SOMMECAISE" }, { - "codePostal": "42260", - "codeCommune": "42303", - "libelleAcheminement": "SOUTERNON", - "nomCommune": "SOUTERNON" + "codePostal": "89160", + "codeCommune": "89403", + "libelleAcheminement": "STIGNY", + "nomCommune": "STIGNY" }, { - "codePostal": "42310", - "codeCommune": "42317", - "libelleAcheminement": "URBISE", - "nomCommune": "URBISE" + "codePostal": "89560", + "codeCommune": "89405", + "libelleAcheminement": "LES HAUTS DE FORTERRE", + "nomCommune": "LES HAUTS DE FORTERRE" }, { - "codePostal": "42340", - "codeCommune": "42323", - "libelleAcheminement": "VEAUCHE", - "nomCommune": "VEAUCHE" + "codePostal": "89430", + "codeCommune": "89407", + "libelleAcheminement": "TANLAY", + "nomCommune": "TANLAY" }, { - "codePostal": "42340", - "codeCommune": "42324", - "libelleAcheminement": "VEAUCHETTE", - "nomCommune": "VEAUCHETTE" + "codePostal": "89520", + "codeCommune": "89420", + "libelleAcheminement": "TREIGNY PERREUSE STE COLOMBE", + "nomCommune": "TREIGNY PERREUSE STE COLOMBE" }, { - "codePostal": "42520", - "codeCommune": "42326", - "libelleAcheminement": "VERANNE", - "nomCommune": "VERANNE" + "codePostal": "89570", + "codeCommune": "89425", + "libelleAcheminement": "TURNY", + "nomCommune": "TURNY" }, { - "codePostal": "42460", - "codeCommune": "42333", - "libelleAcheminement": "VILLERS", - "nomCommune": "VILLERS" + "codePostal": "89580", + "codeCommune": "89427", + "libelleAcheminement": "VALLAN", + "nomCommune": "VALLAN" }, { - "codePostal": "43150", - "codeCommune": "43004", - "libelleAcheminement": "ALLEYRAC", - "nomCommune": "ALLEYRAC" + "codePostal": "89320", + "codeCommune": "89434", + "libelleAcheminement": "VAUMORT", + "nomCommune": "VAUMORT" }, { - "codePostal": "43580", - "codeCommune": "43005", - "libelleAcheminement": "ALLEYRAS", - "nomCommune": "ALLEYRAS" + "codePostal": "89290", + "codeCommune": "89438", + "libelleAcheminement": "VENOY", + "nomCommune": "VENOY" }, { - "codePostal": "43490", - "codeCommune": "43008", - "libelleAcheminement": "ARLEMPDES", - "nomCommune": "ARLEMPDES" + "codePostal": "89150", + "codeCommune": "89442", + "libelleAcheminement": "VERNOY", + "nomCommune": "VERNOY" }, { - "codePostal": "43300", - "codeCommune": "43013", - "libelleAcheminement": "VISSAC AUTEYRAC", - "nomCommune": "VISSAC AUTEYRAC" + "codePostal": "89450", + "codeCommune": "89446", + "libelleAcheminement": "VEZELAY", + "nomCommune": "VEZELAY" }, { - "codePostal": "43390", - "codeCommune": "43016", - "libelleAcheminement": "AUZON", - "nomCommune": "AUZON" + "codePostal": "89140", + "codeCommune": "89458", + "libelleAcheminement": "VILLENAVOTTE", + "nomCommune": "VILLENAVOTTE" }, { - "codePostal": "43590", - "codeCommune": "43025", - "libelleAcheminement": "BEAUZAC", - "nomCommune": "BEAUZAC" + "codePostal": "89190", + "codeCommune": "89461", + "libelleAcheminement": "VILLENEUVE L ARCHEVEQUE", + "nomCommune": "VILLENEUVE L ARCHEVEQUE" }, { - "codePostal": "43350", - "codeCommune": "43030", - "libelleAcheminement": "BLANZAC", - "nomCommune": "BLANZAC" + "codePostal": "89330", + "codeCommune": "89468", + "libelleAcheminement": "VILLEVALLIER", + "nomCommune": "VILLEVALLIER" }, { - "codePostal": "43160", - "codeCommune": "43035", - "libelleAcheminement": "BONNEVAL", - "nomCommune": "BONNEVAL" + "codePostal": "89160", + "codeCommune": "89481", + "libelleAcheminement": "VIREAUX", + "nomCommune": "VIREAUX" }, { - "codePostal": "43350", - "codeCommune": "43036", - "libelleAcheminement": "BORNE", - "nomCommune": "BORNE" + "codePostal": "89270", + "codeCommune": "89485", + "libelleAcheminement": "VOUTENAY SUR CURE", + "nomCommune": "VOUTENAY SUR CURE" }, { - "codePostal": "43370", - "codeCommune": "43039", - "libelleAcheminement": "LE BRIGNON", - "nomCommune": "LE BRIGNON" + "codePostal": "90170", + "codeCommune": "90003", + "libelleAcheminement": "ANJOUTEY", + "nomCommune": "ANJOUTEY" }, { - "codePostal": "43100", - "codeCommune": "43040", - "libelleAcheminement": "BRIOUDE", - "nomCommune": "BRIOUDE" + "codePostal": "90800", + "codeCommune": "90004", + "libelleAcheminement": "ARGIESANS", + "nomCommune": "ARGIESANS" }, { - "codePostal": "43270", - "codeCommune": "43043", - "libelleAcheminement": "CEAUX D ALLEGRE", - "nomCommune": "CEAUX D ALLEGRE" + "codePostal": "90160", + "codeCommune": "90012", + "libelleAcheminement": "BESSONCOURT", + "nomCommune": "BESSONCOURT" }, { - "codePostal": "43770", - "codeCommune": "43046", - "libelleAcheminement": "CHADRAC", - "nomCommune": "CHADRAC" + "codePostal": "90150", + "codeCommune": "90013", + "libelleAcheminement": "BETHONVILLIERS", + "nomCommune": "BETHONVILLIERS" }, { - "codePostal": "43410", - "codeCommune": "43050", - "libelleAcheminement": "CHAMBEZON", - "nomCommune": "CHAMBEZON" + "codePostal": "90140", + "codeCommune": "90017", + "libelleAcheminement": "BOUROGNE", + "nomCommune": "BOUROGNE" }, { - "codePostal": "43440", - "codeCommune": "43052", - "libelleAcheminement": "CHAMPAGNAC LE VIEUX", - "nomCommune": "CHAMPAGNAC LE VIEUX" + "codePostal": "90330", + "codeCommune": "90023", + "libelleAcheminement": "CHAUX", + "nomCommune": "CHAUX" }, { - "codePostal": "43270", - "codeCommune": "43057", - "libelleAcheminement": "LA CHAPELLE BERTIN", - "nomCommune": "LA CHAPELLE BERTIN" + "codePostal": "90100", + "codeCommune": "90025", + "libelleAcheminement": "CHAVANNES LES GRANDS", + "nomCommune": "CHAVANNES LES GRANDS" }, { - "codePostal": "43320", - "codeCommune": "43062", - "libelleAcheminement": "CHASPUZAC", - "nomCommune": "CHASPUZAC" + "codePostal": "90150", + "codeCommune": "90036", + "libelleAcheminement": "EGUENIGUE", + "nomCommune": "EGUENIGUE" }, { - "codePostal": "43440", - "codeCommune": "43064", - "libelleAcheminement": "CHASSIGNOLLES", - "nomCommune": "CHASSIGNOLLES" + "codePostal": "90150", + "codeCommune": "90050", + "libelleAcheminement": "FRAIS", + "nomCommune": "FRAIS" }, { - "codePostal": "43430", - "codeCommune": "43066", - "libelleAcheminement": "CHAUDEYROLLES", - "nomCommune": "CHAUDEYROLLES" + "codePostal": "90200", + "codeCommune": "90054", + "libelleAcheminement": "GROSMAGNY", + "nomCommune": "GROSMAGNY" }, { - "codePostal": "43500", - "codeCommune": "43071", - "libelleAcheminement": "CHOMELIX", - "nomCommune": "CHOMELIX" + "codePostal": "90100", + "codeCommune": "90064", + "libelleAcheminement": "LEPUIX NEUF", + "nomCommune": "LEPUIX NEUF" }, { - "codePostal": "43100", - "codeCommune": "43074", - "libelleAcheminement": "COHADE", - "nomCommune": "COHADE" + "codePostal": "90120", + "codeCommune": "90069", + "libelleAcheminement": "MEZIRE", + "nomCommune": "MEZIRE" }, { - "codePostal": "43300", - "codeCommune": "43082", - "libelleAcheminement": "CRONCE", - "nomCommune": "CRONCE" + "codePostal": "90140", + "codeCommune": "90083", + "libelleAcheminement": "RECOUVRANCE", + "nomCommune": "RECOUVRANCE" }, { - "codePostal": "43370", - "codeCommune": "43084", - "libelleAcheminement": "CUSSAC SUR LOIRE", - "nomCommune": "CUSSAC SUR LOIRE" + "codePostal": "90150", + "codeCommune": "90084", + "libelleAcheminement": "REPPE", + "nomCommune": "REPPE" }, { - "codePostal": "43300", - "codeCommune": "43085", - "libelleAcheminement": "DESGES", - "nomCommune": "DESGES" + "codePostal": "90400", + "codeCommune": "90104", + "libelleAcheminement": "VEZELOIS", + "nomCommune": "VEZELOIS" }, { - "codePostal": "43170", - "codeCommune": "43090", - "libelleAcheminement": "ESPLANTAS VAZEILLES", - "nomCommune": "ESPLANTAS VAZEILLES" + "codePostal": "91150", + "codeCommune": "91001", + "libelleAcheminement": "ABBEVILLE LA RIVIERE", + "nomCommune": "ABBEVILLE LA RIVIERE" }, { - "codePostal": "43320", - "codeCommune": "43095", - "libelleAcheminement": "FIX ST GENEYS", - "nomCommune": "FIX ST GENEYS" + "codePostal": "91200", + "codeCommune": "91027", + "libelleAcheminement": "ATHIS MONS", + "nomCommune": "ATHIS MONS" }, { - "codePostal": "43800", - "codeCommune": "43119", - "libelleAcheminement": "LAVOUTE SUR LOIRE", - "nomCommune": "LAVOUTE SUR LOIRE" + "codePostal": "91850", + "codeCommune": "91095", + "libelleAcheminement": "BOURAY SUR JUINE", + "nomCommune": "BOURAY SUR JUINE" }, { - "codePostal": "43320", - "codeCommune": "43124", - "libelleAcheminement": "LOUDES", - "nomCommune": "LOUDES" + "codePostal": "91150", + "codeCommune": "91098", + "libelleAcheminement": "BOUTERVILLIERS", + "nomCommune": "BOUTERVILLIERS" }, { - "codePostal": "43300", - "codeCommune": "43132", - "libelleAcheminement": "MAZEYRAT D ALLIER", - "nomCommune": "MAZEYRAT D ALLIER" + "codePostal": "91650", + "codeCommune": "91106", + "libelleAcheminement": "BREUX JOUY", + "nomCommune": "BREUX JOUY" }, { - "codePostal": "43150", - "codeCommune": "43135", - "libelleAcheminement": "LE MONASTIER SUR GAZEILLE", - "nomCommune": "LE MONASTIER SUR GAZEILLE" + "codePostal": "91720", + "codeCommune": "91121", + "libelleAcheminement": "BUNO BONNEVAUX", + "nomCommune": "BUNO BONNEVAUX" }, { - "codePostal": "43700", - "codeCommune": "43140", - "libelleAcheminement": "LE MONTEIL", - "nomCommune": "LE MONTEIL" + "codePostal": "91440", + "codeCommune": "91122", + "libelleAcheminement": "BURES SUR YVETTE", + "nomCommune": "BURES SUR YVETTE" }, { - "codePostal": "43150", - "codeCommune": "43144", - "libelleAcheminement": "MOUDEYRES", - "nomCommune": "MOUDEYRES" + "codePostal": "91780", + "codeCommune": "91130", + "libelleAcheminement": "CHALO ST MARS", + "nomCommune": "CHALO ST MARS" }, { - "codePostal": "43000", - "codeCommune": "43152", - "libelleAcheminement": "POLIGNAC", - "nomCommune": "POLIGNAC" + "codePostal": "91100", + "codeCommune": "91174", + "libelleAcheminement": "CORBEIL ESSONNES", + "nomCommune": "CORBEIL ESSONNES" }, { - "codePostal": "43810", - "codeCommune": "43164", - "libelleAcheminement": "ROCHE EN REGNIER", - "nomCommune": "ROCHE EN REGNIER" + "codePostal": "91410", + "codeCommune": "91175", + "libelleAcheminement": "CORBREUSE", + "nomCommune": "CORBREUSE" }, { - "codePostal": "43130", - "codeCommune": "43166", - "libelleAcheminement": "ST ANDRE DE CHALENCON", - "nomCommune": "ST ANDRE DE CHALENCON" + "codePostal": "91410", + "codeCommune": "91200", + "libelleAcheminement": "DOURDAN", + "nomCommune": "DOURDAN" }, { - "codePostal": "43300", - "codeCommune": "43171", - "libelleAcheminement": "ST BERAIN", - "nomCommune": "ST BERAIN" + "codePostal": "91520", + "codeCommune": "91207", + "libelleAcheminement": "EGLY", + "nomCommune": "EGLY" }, { - "codePostal": "43370", - "codeCommune": "43174", - "libelleAcheminement": "ST CHRISTOPHE SUR DOLAISON", - "nomCommune": "ST CHRISTOPHE SUR DOLAISON" + "codePostal": "91700", + "codeCommune": "91235", + "libelleAcheminement": "FLEURY MEROGIS", + "nomCommune": "FLEURY MEROGIS" }, { - "codePostal": "43360", - "codeCommune": "43191", - "libelleAcheminement": "ST GERON", - "nomCommune": "ST GERON" + "codePostal": "91690", + "codeCommune": "91240", + "libelleAcheminement": "FONTAINE LA RIVIERE", + "nomCommune": "FONTAINE LA RIVIERE" }, { - "codePostal": "43300", - "codeCommune": "43202", - "libelleAcheminement": "ST JULIEN DES CHAZES", - "nomCommune": "ST JULIEN DES CHAZES" + "codePostal": "91720", + "codeCommune": "91273", + "libelleAcheminement": "GIRONVILLE SUR ESSONNE", + "nomCommune": "GIRONVILLE SUR ESSONNE" }, { - "codePostal": "43240", - "codeCommune": "43205", - "libelleAcheminement": "ST JUST MALMONT", - "nomCommune": "ST JUST MALMONT" + "codePostal": "91410", + "codeCommune": "91284", + "libelleAcheminement": "LES GRANGES LE ROI", + "nomCommune": "LES GRANGES LE ROI" }, { - "codePostal": "43150", - "codeCommune": "43210", - "libelleAcheminement": "ST MARTIN DE FUGERES", - "nomCommune": "ST MARTIN DE FUGERES" + "codePostal": "91430", + "codeCommune": "91312", + "libelleAcheminement": "IGNY", + "nomCommune": "IGNY" }, { - "codePostal": "43200", - "codeCommune": "43211", - "libelleAcheminement": "ST MAURICE DE LIGNON", - "nomCommune": "ST MAURICE DE LIGNON" + "codePostal": "91260", + "codeCommune": "91326", + "libelleAcheminement": "JUVISY SUR ORGE", + "nomCommune": "JUVISY SUR ORGE" }, { - "codePostal": "43160", - "codeCommune": "43214", - "libelleAcheminement": "ST PAL DE SENOUIRE", - "nomCommune": "ST PAL DE SENOUIRE" + "codePostal": "91510", + "codeCommune": "91330", + "libelleAcheminement": "LARDY", + "nomCommune": "LARDY" }, { - "codePostal": "43260", - "codeCommune": "43218", - "libelleAcheminement": "ST PIERRE EYNAC", - "nomCommune": "ST PIERRE EYNAC" + "codePostal": "91630", + "codeCommune": "91332", + "libelleAcheminement": "LEUDEVILLE", + "nomCommune": "LEUDEVILLE" }, { - "codePostal": "43580", - "codeCommune": "43221", - "libelleAcheminement": "ST PRIVAT D ALLIER", - "nomCommune": "ST PRIVAT D ALLIER" + "codePostal": "91460", + "codeCommune": "91363", + "libelleAcheminement": "MARCOUSSIS", + "nomCommune": "MARCOUSSIS" }, { - "codePostal": "43230", - "codeCommune": "43232", - "libelleAcheminement": "SALZUIT", - "nomCommune": "SALZUIT" + "codePostal": "91730", + "codeCommune": "91378", + "libelleAcheminement": "MAUCHAMPS", + "nomCommune": "MAUCHAMPS" }, { - "codePostal": "43580", - "codeCommune": "43245", - "libelleAcheminement": "THORAS", - "nomCommune": "THORAS" + "codePostal": "91470", + "codeCommune": "91411", + "libelleAcheminement": "LES MOLIERES", + "nomCommune": "LES MOLIERES" }, { - "codePostal": "43530", - "codeCommune": "43246", - "libelleAcheminement": "TIRANGES", - "nomCommune": "TIRANGES" + "codePostal": "91230", + "codeCommune": "91421", + "libelleAcheminement": "MONTGERON", + "nomCommune": "MONTGERON" }, { - "codePostal": "43320", - "codeCommune": "43257", - "libelleAcheminement": "VERGEZAC", - "nomCommune": "VERGEZAC" + "codePostal": "91420", + "codeCommune": "91432", + "libelleAcheminement": "MORANGIS", + "nomCommune": "MORANGIS" }, { - "codePostal": "43270", - "codeCommune": "43259", - "libelleAcheminement": "VERNASSAL", - "nomCommune": "VERNASSAL" + "codePostal": "91290", + "codeCommune": "91457", + "libelleAcheminement": "LA NORVILLE", + "nomCommune": "LA NORVILLE" }, { - "codePostal": "44140", - "codeCommune": "44002", - "libelleAcheminement": "AIGREFEUILLE SUR MAINE", - "nomCommune": "AIGREFEUILLE SUR MAINE" + "codePostal": "91620", + "codeCommune": "91458", + "libelleAcheminement": "NOZAY", + "nomCommune": "NOZAY" }, { - "codePostal": "44150", - "codeCommune": "44003", - "libelleAcheminement": "ANCENIS ST GEREON", - "nomCommune": "ANCENIS ST GEREON" + "codePostal": "91490", + "codeCommune": "91463", + "libelleAcheminement": "ONCY SUR ECOLE", + "nomCommune": "ONCY SUR ECOLE" }, { - "codePostal": "44320", - "codeCommune": "44005", - "libelleAcheminement": "CHAUMES EN RETZ", - "nomCommune": "CHAUMES EN RETZ" + "codePostal": "91410", + "codeCommune": "91495", + "libelleAcheminement": "PLESSIS ST BENOIST", + "nomCommune": "PLESSIS ST BENOIST" }, { - "codePostal": "44410", - "codeCommune": "44006", - "libelleAcheminement": "ASSERAC", - "nomCommune": "ASSERAC" + "codePostal": "91130", + "codeCommune": "91521", + "libelleAcheminement": "RIS ORANGIS", + "nomCommune": "RIS ORANGIS" }, { - "codePostal": "44115", - "codeCommune": "44009", - "libelleAcheminement": "BASSE GOULAINE", - "nomCommune": "BASSE GOULAINE" + "codePostal": "91410", + "codeCommune": "91525", + "libelleAcheminement": "ROINVILLE", + "nomCommune": "ROINVILLE" }, { - "codePostal": "44760", - "codeCommune": "44012", - "libelleAcheminement": "LA BERNERIE EN RETZ", - "nomCommune": "LA BERNERIE EN RETZ" + "codePostal": "91190", + "codeCommune": "91538", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "44130", - "codeCommune": "44015", - "libelleAcheminement": "BLAIN", - "nomCommune": "BLAIN" + "codePostal": "91250", + "codeCommune": "91577", + "libelleAcheminement": "SAINTRY SUR SEINE", + "nomCommune": "SAINTRY SUR SEINE" }, { - "codePostal": "44340", - "codeCommune": "44020", - "libelleAcheminement": "BOUGUENAIS", - "nomCommune": "BOUGUENAIS" + "codePostal": "91160", + "codeCommune": "91587", + "libelleAcheminement": "SAULX LES CHARTREUX", + "nomCommune": "SAULX LES CHARTREUX" }, { - "codePostal": "44190", - "codeCommune": "44022", - "libelleAcheminement": "BOUSSAY", - "nomCommune": "BOUSSAY" + "codePostal": "91730", + "codeCommune": "91619", + "libelleAcheminement": "TORFOU", + "nomCommune": "TORFOU" }, { - "codePostal": "44130", - "codeCommune": "44023", - "libelleAcheminement": "BOUVRON", - "nomCommune": "BOUVRON" + "codePostal": "91530", + "codeCommune": "91630", + "libelleAcheminement": "LE VAL ST GERMAIN", + "nomCommune": "LE VAL ST GERMAIN" }, { - "codePostal": "44450", - "codeCommune": "44029", - "libelleAcheminement": "DIVATTE SUR LOIRE", - "nomCommune": "DIVATTE SUR LOIRE" + "codePostal": "91640", + "codeCommune": "91634", + "libelleAcheminement": "VAUGRIGNEUSE", + "nomCommune": "VAUGRIGNEUSE" }, { - "codePostal": "44330", - "codeCommune": "44032", - "libelleAcheminement": "LA CHAPELLE HEULIN", - "nomCommune": "LA CHAPELLE HEULIN" + "codePostal": "91430", + "codeCommune": "91635", + "libelleAcheminement": "VAUHALLAN", + "nomCommune": "VAUHALLAN" }, { - "codePostal": "44110", - "codeCommune": "44036", - "libelleAcheminement": "CHATEAUBRIANT", - "nomCommune": "CHATEAUBRIANT" + "codePostal": "91580", + "codeCommune": "91662", + "libelleAcheminement": "VILLECONIN", + "nomCommune": "VILLECONIN" }, { - "codePostal": "44118", - "codeCommune": "44041", - "libelleAcheminement": "LA CHEVROLIERE", - "nomCommune": "LA CHEVROLIERE" + "codePostal": "91580", + "codeCommune": "91671", + "libelleAcheminement": "VILLENEUVE SUR AUVERS", + "nomCommune": "VILLENEUVE SUR AUVERS" }, { - "codePostal": "44118", - "codeCommune": "44041", - "libelleAcheminement": "LA CHEVROLIERE", - "nomCommune": "LA CHEVROLIERE" + "codePostal": "91700", + "codeCommune": "91685", + "libelleAcheminement": "VILLIERS SUR ORGE", + "nomCommune": "VILLIERS SUR ORGE" }, { - "codePostal": "44160", - "codeCommune": "44050", - "libelleAcheminement": "CROSSAC", - "nomCommune": "CROSSAC" + "codePostal": "91940", + "codeCommune": "91692", + "libelleAcheminement": "LES ULIS", + "nomCommune": "LES ULIS" }, { - "codePostal": "44660", - "codeCommune": "44058", - "libelleAcheminement": "FERCE", - "nomCommune": "FERCE" + "codePostal": "92220", + "codeCommune": "92007", + "libelleAcheminement": "BAGNEUX", + "nomCommune": "BAGNEUX" }, { - "codePostal": "44320", - "codeCommune": "44061", - "libelleAcheminement": "FROSSAY", - "nomCommune": "FROSSAY" + "codePostal": "92370", + "codeCommune": "92022", + "libelleAcheminement": "CHAVILLE", + "nomCommune": "CHAVILLE" }, { - "codePostal": "44130", - "codeCommune": "44062", - "libelleAcheminement": "LE GAVRE", - "nomCommune": "LE GAVRE" + "codePostal": "92700", + "codeCommune": "92025", + "libelleAcheminement": "COLOMBES", + "nomCommune": "COLOMBES" }, { - "codePostal": "44350", - "codeCommune": "44069", - "libelleAcheminement": "GUERANDE", - "nomCommune": "GUERANDE" + "codePostal": "92240", + "codeCommune": "92046", + "libelleAcheminement": "MALAKOFF", + "nomCommune": "MALAKOFF" }, { - "codePostal": "44350", - "codeCommune": "44069", - "libelleAcheminement": "GUERANDE", - "nomCommune": "GUERANDE" + "codePostal": "92360", + "codeCommune": "92048", + "libelleAcheminement": "MEUDON", + "nomCommune": "MEUDON" }, { - "codePostal": "44115", - "codeCommune": "44071", - "libelleAcheminement": "HAUTE GOULAINE", - "nomCommune": "HAUTE GOULAINE" + "codePostal": "92200", + "codeCommune": "92051", + "libelleAcheminement": "NEUILLY SUR SEINE", + "nomCommune": "NEUILLY SUR SEINE" }, { - "codePostal": "44170", - "codeCommune": "44076", - "libelleAcheminement": "JANS", - "nomCommune": "JANS" + "codePostal": "92350", + "codeCommune": "92060", + "libelleAcheminement": "LE PLESSIS ROBINSON", + "nomCommune": "LE PLESSIS ROBINSON" }, { - "codePostal": "44440", - "codeCommune": "44077", - "libelleAcheminement": "JOUE SUR ERDRE", - "nomCommune": "JOUE SUR ERDRE" + "codePostal": "92500", + "codeCommune": "92063", + "libelleAcheminement": "RUEIL MALMAISON", + "nomCommune": "RUEIL MALMAISON" }, { - "codePostal": "44850", - "codeCommune": "44082", - "libelleAcheminement": "LIGNE", - "nomCommune": "LIGNE" + "codePostal": "92500", + "codeCommune": "92063", + "libelleAcheminement": "RUEIL MALMAISON", + "nomCommune": "RUEIL MALMAISON" }, { - "codePostal": "44290", - "codeCommune": "44092", - "libelleAcheminement": "MASSERAC", - "nomCommune": "MASSERAC" + "codePostal": "93140", + "codeCommune": "93010", + "libelleAcheminement": "BONDY", + "nomCommune": "BONDY" }, { - "codePostal": "44420", - "codeCommune": "44097", - "libelleAcheminement": "MESQUER", - "nomCommune": "MESQUER" + "codePostal": "93350", + "codeCommune": "93013", + "libelleAcheminement": "LE BOURGET", + "nomCommune": "LE BOURGET" }, { - "codePostal": "44550", - "codeCommune": "44103", - "libelleAcheminement": "MONTOIR DE BRETAGNE", - "nomCommune": "MONTOIR DE BRETAGNE" + "codePostal": "93700", + "codeCommune": "93029", + "libelleAcheminement": "DRANCY", + "nomCommune": "DRANCY" }, { - "codePostal": "44390", - "codeCommune": "44110", - "libelleAcheminement": "NORT SUR ERDRE", - "nomCommune": "NORT SUR ERDRE" + "codePostal": "93260", + "codeCommune": "93045", + "libelleAcheminement": "LES LILAS", + "nomCommune": "LES LILAS" }, { - "codePostal": "44110", - "codeCommune": "44112", - "libelleAcheminement": "NOYAL SUR BRUTZ", - "nomCommune": "NOYAL SUR BRUTZ" + "codePostal": "93100", + "codeCommune": "93048", + "libelleAcheminement": "MONTREUIL", + "nomCommune": "MONTREUIL" }, { - "codePostal": "44521", - "codeCommune": "44115", - "libelleAcheminement": "OUDON", - "nomCommune": "OUDON" + "codePostal": "93160", + "codeCommune": "93051", + "libelleAcheminement": "NOISY LE GRAND", + "nomCommune": "NOISY LE GRAND" }, { - "codePostal": "44440", - "codeCommune": "44118", - "libelleAcheminement": "PANNECE", - "nomCommune": "PANNECE" + "codePostal": "93340", + "codeCommune": "93062", + "libelleAcheminement": "LE RAINCY", + "nomCommune": "LE RAINCY" }, { - "codePostal": "44390", - "codeCommune": "44122", - "libelleAcheminement": "PETIT MARS", - "nomCommune": "PETIT MARS" + "codePostal": "93200", + "codeCommune": "93066", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "44290", - "codeCommune": "44123", - "libelleAcheminement": "PIERRIC", - "nomCommune": "PIERRIC" + "codePostal": "93210", + "codeCommune": "93066", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "44420", - "codeCommune": "44125", - "libelleAcheminement": "PIRIAC SUR MER", - "nomCommune": "PIRIAC SUR MER" + "codePostal": "94360", + "codeCommune": "94015", + "libelleAcheminement": "BRY SUR MARNE", + "nomCommune": "BRY SUR MARNE" }, { - "codePostal": "44630", - "codeCommune": "44128", - "libelleAcheminement": "PLESSE", - "nomCommune": "PLESSE" + "codePostal": "94230", + "codeCommune": "94016", + "libelleAcheminement": "CACHAN", + "nomCommune": "CACHAN" }, { - "codePostal": "44630", - "codeCommune": "44128", - "libelleAcheminement": "PLESSE", - "nomCommune": "PLESSE" + "codePostal": "94430", + "codeCommune": "94019", + "libelleAcheminement": "CHENNEVIERES SUR MARNE", + "nomCommune": "CHENNEVIERES SUR MARNE" }, { - "codePostal": "44210", - "codeCommune": "44131", - "libelleAcheminement": "PORNIC", - "nomCommune": "PORNIC" + "codePostal": "94340", + "codeCommune": "94042", + "libelleAcheminement": "JOINVILLE LE PONT", + "nomCommune": "JOINVILLE LE PONT" }, { - "codePostal": "44380", - "codeCommune": "44132", - "libelleAcheminement": "PORNICHET", - "nomCommune": "PORNICHET" + "codePostal": "94520", + "codeCommune": "94047", + "libelleAcheminement": "MANDRES LES ROSES", + "nomCommune": "MANDRES LES ROSES" }, { - "codePostal": "44710", - "codeCommune": "44133", - "libelleAcheminement": "PORT ST PERE", - "nomCommune": "PORT ST PERE" + "codePostal": "94440", + "codeCommune": "94048", + "libelleAcheminement": "MAROLLES EN BRIE", + "nomCommune": "MAROLLES EN BRIE" }, { - "codePostal": "44522", - "codeCommune": "44134", - "libelleAcheminement": "POUILLE LES COTEAUX", - "nomCommune": "POUILLE LES COTEAUX" + "codePostal": "94170", + "codeCommune": "94058", + "libelleAcheminement": "LE PERREUX SUR MARNE", + "nomCommune": "LE PERREUX SUR MARNE" }, { - "codePostal": "44770", - "codeCommune": "44136", - "libelleAcheminement": "PREFAILLES", - "nomCommune": "PREFAILLES" + "codePostal": "94510", + "codeCommune": "94060", + "libelleAcheminement": "LA QUEUE EN BRIE", + "nomCommune": "LA QUEUE EN BRIE" }, { - "codePostal": "44400", - "codeCommune": "44143", - "libelleAcheminement": "REZE", - "nomCommune": "REZE" + "codePostal": "94370", + "codeCommune": "94071", + "libelleAcheminement": "SUCY EN BRIE", + "nomCommune": "SUCY EN BRIE" }, { - "codePostal": "44400", - "codeCommune": "44143", - "libelleAcheminement": "REZE", - "nomCommune": "REZE" + "codePostal": "95710", + "codeCommune": "95011", + "libelleAcheminement": "AMBLEVILLE", + "nomCommune": "AMBLEVILLE" }, { - "codePostal": "44860", - "codeCommune": "44150", - "libelleAcheminement": "ST AIGNAN GRANDLIEU", - "nomCommune": "ST AIGNAN GRANDLIEU" + "codePostal": "95400", + "codeCommune": "95019", + "libelleAcheminement": "ARNOUVILLE", + "nomCommune": "ARNOUVILLE" }, { - "codePostal": "44250", - "codeCommune": "44154", - "libelleAcheminement": "ST BREVIN LES PINS", - "nomCommune": "ST BREVIN LES PINS" + "codePostal": "95870", + "codeCommune": "95063", + "libelleAcheminement": "BEZONS", + "nomCommune": "BEZONS" }, { - "codePostal": "44650", - "codeCommune": "44156", - "libelleAcheminement": "CORCOUE SUR LOGNE", - "nomCommune": "CORCOUE SUR LOGNE" + "codePostal": "95000", + "codeCommune": "95074", + "libelleAcheminement": "BOISEMONT", + "nomCommune": "BOISEMONT" }, { - "codePostal": "44270", - "codeCommune": "44157", - "libelleAcheminement": "ST ETIENNE DE MER MORTE", - "nomCommune": "ST ETIENNE DE MER MORTE" + "codePostal": "95570", + "codeCommune": "95091", + "libelleAcheminement": "BOUFFEMONT", + "nomCommune": "BOUFFEMONT" }, { - "codePostal": "44360", - "codeCommune": "44158", - "libelleAcheminement": "ST ETIENNE DE MONTLUC", - "nomCommune": "ST ETIENNE DE MONTLUC" + "codePostal": "95770", + "codeCommune": "95119", + "libelleAcheminement": "BUHY", + "nomCommune": "BUHY" }, { - "codePostal": "44150", - "codeCommune": "44163", - "libelleAcheminement": "VAIR SUR LOIRE", - "nomCommune": "VAIR SUR LOIRE" + "codePostal": "95660", + "codeCommune": "95134", + "libelleAcheminement": "CHAMPAGNE SUR OISE", + "nomCommune": "CHAMPAGNE SUR OISE" }, { - "codePostal": "44710", - "codeCommune": "44171", - "libelleAcheminement": "ST LEGER LES VIGNES", - "nomCommune": "ST LEGER LES VIGNES" + "codePostal": "95270", + "codeCommune": "95149", + "libelleAcheminement": "CHAUMONTEL", + "nomCommune": "CHAUMONTEL" }, { - "codePostal": "44730", - "codeCommune": "44182", - "libelleAcheminement": "ST MICHEL CHEF CHEF", - "nomCommune": "ST MICHEL CHEF CHEF" + "codePostal": "95830", + "codeCommune": "95177", + "libelleAcheminement": "CORMEILLES EN VEXIN", + "nomCommune": "CORMEILLES EN VEXIN" }, { - "codePostal": "44730", - "codeCommune": "44182", - "libelleAcheminement": "ST MICHEL CHEF CHEF", - "nomCommune": "ST MICHEL CHEF CHEF" + "codePostal": "95170", + "codeCommune": "95197", + "libelleAcheminement": "DEUIL LA BARRE", + "nomCommune": "DEUIL LA BARRE" }, { - "codePostal": "44160", - "codeCommune": "44189", - "libelleAcheminement": "STE REINE DE BRETAGNE", - "nomCommune": "STE REINE DE BRETAGNE" + "codePostal": "95810", + "codeCommune": "95213", + "libelleAcheminement": "EPIAIS RHUS", + "nomCommune": "EPIAIS RHUS" }, { - "codePostal": "44880", - "codeCommune": "44194", - "libelleAcheminement": "SAUTRON", - "nomCommune": "SAUTRON" + "codePostal": "95190", + "codeCommune": "95241", + "libelleAcheminement": "FONTENAY EN PARISIS", + "nomCommune": "FONTENAY EN PARISIS" }, { - "codePostal": "44440", - "codeCommune": "44202", - "libelleAcheminement": "TEILLE", - "nomCommune": "TEILLE" + "codePostal": "95470", + "codeCommune": "95250", + "libelleAcheminement": "FOSSES", + "nomCommune": "FOSSES" }, { - "codePostal": "44360", - "codeCommune": "44203", - "libelleAcheminement": "LE TEMPLE DE BRETAGNE", - "nomCommune": "LE TEMPLE DE BRETAGNE" + "codePostal": "95130", + "codeCommune": "95252", + "libelleAcheminement": "FRANCONVILLE LA GARENNE", + "nomCommune": "FRANCONVILLE" }, { - "codePostal": "44170", - "codeCommune": "44208", - "libelleAcheminement": "TREFFIEUX", - "nomCommune": "TREFFIEUX" + "codePostal": "95420", + "codeCommune": "95270", + "libelleAcheminement": "GENAINVILLE", + "nomCommune": "GENAINVILLE" }, { - "codePostal": "44119", - "codeCommune": "44209", - "libelleAcheminement": "TREILLIERES", - "nomCommune": "TREILLIERES" + "codePostal": "95280", + "codeCommune": "95323", + "libelleAcheminement": "JOUY LE MOUTIER", + "nomCommune": "JOUY LE MOUTIER" }, { - "codePostal": "44420", - "codeCommune": "44211", - "libelleAcheminement": "LA TURBALLE", - "nomCommune": "LA TURBALLE" + "codePostal": "95450", + "codeCommune": "95348", + "libelleAcheminement": "LONGUESSE", + "nomCommune": "LONGUESSE" }, { - "codePostal": "44330", - "codeCommune": "44212", - "libelleAcheminement": "VALLET", - "nomCommune": "VALLET" + "codePostal": "95420", + "codeCommune": "95355", + "libelleAcheminement": "MAGNY EN VEXIN", + "nomCommune": "MAGNY EN VEXIN" }, { - "codePostal": "44116", - "codeCommune": "44216", - "libelleAcheminement": "VIEILLEVIGNE", - "nomCommune": "VIEILLEVIGNE" + "codePostal": "95560", + "codeCommune": "95430", + "libelleAcheminement": "MONTSOULT", + "nomCommune": "MONTSOULT" }, { - "codePostal": "44140", - "codeCommune": "44223", - "libelleAcheminement": "GENESTON", - "nomCommune": "GENESTON" + "codePostal": "95640", + "codeCommune": "95447", + "libelleAcheminement": "NEUILLY EN VEXIN", + "nomCommune": "NEUILLY EN VEXIN" }, { - "codePostal": "44170", - "codeCommune": "44224", - "libelleAcheminement": "LA GRIGONNAIS", - "nomCommune": "LA GRIGONNAIS" + "codePostal": "95270", + "codeCommune": "95456", + "libelleAcheminement": "NOISY SUR OISE", + "nomCommune": "NOISY SUR OISE" }, { - "codePostal": "45160", - "codeCommune": "45006", - "libelleAcheminement": "ARDON", - "nomCommune": "ARDON" + "codePostal": "95520", + "codeCommune": "95476", + "libelleAcheminement": "OSNY", + "nomCommune": "OSNY" }, { - "codePostal": "45410", - "codeCommune": "45008", - "libelleAcheminement": "ARTENAY", - "nomCommune": "ARTENAY" + "codePostal": "95620", + "codeCommune": "95480", + "libelleAcheminement": "PARMAIN", + "nomCommune": "PARMAIN" }, { - "codePostal": "45390", - "codeCommune": "45014", - "libelleAcheminement": "AULNAY LA RIVIERE", - "nomCommune": "AULNAY LA RIVIERE" + "codePostal": "95350", + "codeCommune": "95489", + "libelleAcheminement": "PISCOP", + "nomCommune": "PISCOP" }, { - "codePostal": "45130", - "codeCommune": "45020", - "libelleAcheminement": "LE BARDON", - "nomCommune": "LE BARDON" + "codePostal": "95720", + "codeCommune": "95492", + "libelleAcheminement": "LE PLESSIS GASSOT", + "nomCommune": "LE PLESSIS GASSOT" }, { - "codePostal": "45480", - "codeCommune": "45025", - "libelleAcheminement": "BAZOCHES LES GALLERANDES", - "nomCommune": "BAZOCHES LES GALLERANDES" + "codePostal": "95590", + "codeCommune": "95504", + "libelleAcheminement": "PRESLES", + "nomCommune": "PRESLES" }, { - "codePostal": "45480", - "codeCommune": "45025", - "libelleAcheminement": "BAZOCHES LES GALLERANDES", - "nomCommune": "BAZOCHES LES GALLERANDES" + "codePostal": "95340", + "codeCommune": "95529", + "libelleAcheminement": "RONQUEROLLES", + "nomCommune": "RONQUEROLLES" }, { - "codePostal": "45210", - "codeCommune": "45026", - "libelleAcheminement": "BAZOCHES SUR LE BETZ", - "nomCommune": "BAZOCHES SUR LE BETZ" + "codePostal": "95390", + "codeCommune": "95574", + "libelleAcheminement": "ST PRIX", + "nomCommune": "ST PRIX" }, { - "codePostal": "45630", - "codeCommune": "45029", - "libelleAcheminement": "BEAULIEU SUR LOIRE", - "nomCommune": "BEAULIEU SUR LOIRE" + "codePostal": "95270", + "codeCommune": "95594", + "libelleAcheminement": "SEUGY", + "nomCommune": "SEUGY" }, { - "codePostal": "45210", - "codeCommune": "45032", - "libelleAcheminement": "LE BIGNON MIRABEAU", - "nomCommune": "LE BIGNON MIRABEAU" + "codePostal": "95230", + "codeCommune": "95598", + "libelleAcheminement": "SOISY SOUS MONTMORENCY", + "nomCommune": "SOISY SOUS MONTMORENCY" }, { - "codePostal": "45290", - "codeCommune": "45036", - "libelleAcheminement": "BOISMORAND", - "nomCommune": "BOISMORAND" + "codePostal": "95810", + "codeCommune": "95627", + "libelleAcheminement": "VALLANGOUJARD", + "nomCommune": "VALLANGOUJARD" }, { - "codePostal": "45140", - "codeCommune": "45046", - "libelleAcheminement": "BOULAY LES BARRES", - "nomCommune": "BOULAY LES BARRES" + "codePostal": "95470", + "codeCommune": "95641", + "libelleAcheminement": "VEMARS", + "nomCommune": "VEMARS" }, { - "codePostal": "45250", - "codeCommune": "45052", - "libelleAcheminement": "BRETEAU", - "nomCommune": "BRETEAU" + "codePostal": "95510", + "codeCommune": "95656", + "libelleAcheminement": "VIENNE EN ARTHIES", + "nomCommune": "VIENNE EN ARTHIES" }, { - "codePostal": "45410", - "codeCommune": "45058", - "libelleAcheminement": "BUCY LE ROI", - "nomCommune": "BUCY LE ROI" + "codePostal": "95510", + "codeCommune": "95676", + "libelleAcheminement": "VILLERS EN ARTHIES", + "nomCommune": "VILLERS EN ARTHIES" }, { - "codePostal": "45140", - "codeCommune": "45059", - "libelleAcheminement": "BUCY ST LIPHARD", - "nomCommune": "BUCY ST LIPHARD" + "codePostal": "95420", + "codeCommune": "95690", + "libelleAcheminement": "WY DIT JOLI VILLAGE", + "nomCommune": "WY DIT JOLI VILLAGE" }, { - "codePostal": "45380", - "codeCommune": "45075", - "libelleAcheminement": "LA CHAPELLE ST MESMIN", - "nomCommune": "LA CHAPELLE ST MESMIN" + "codePostal": "97121", + "codeCommune": "97102", + "libelleAcheminement": "ANSE BERTRAND", + "nomCommune": "ANSE BERTRAND" }, { - "codePostal": "45220", - "codeCommune": "45083", - "libelleAcheminement": "CHATEAU RENARD", - "nomCommune": "CHATEAU RENARD" + "codePostal": "97122", + "codeCommune": "97103", + "libelleAcheminement": "BAIE MAHAULT", + "nomCommune": "BAIE MAHAULT" }, { - "codePostal": "45230", - "codeCommune": "45085", - "libelleAcheminement": "CHATILLON COLIGNY", - "nomCommune": "CHATILLON COLIGNY" + "codePostal": "97125", + "codeCommune": "97106", + "libelleAcheminement": "BOUILLANTE", + "nomCommune": "BOUILLANTE" }, { - "codePostal": "45480", - "codeCommune": "45086", - "libelleAcheminement": "CHATILLON LE ROI", - "nomCommune": "CHATILLON LE ROI" + "codePostal": "97140", + "codeCommune": "97108", + "libelleAcheminement": "CAPESTERRE DE MARIE GALANTE", + "nomCommune": "CAPESTERRE DE MARIE GALANTE" }, { - "codePostal": "45520", - "codeCommune": "45093", - "libelleAcheminement": "CHEVILLY", - "nomCommune": "CHEVILLY" + "codePostal": "97112", + "codeCommune": "97112", + "libelleAcheminement": "GRAND BOURG", + "nomCommune": "GRAND BOURG" }, { - "codePostal": "45120", - "codeCommune": "45104", - "libelleAcheminement": "CORQUILLEROY", - "nomCommune": "CORQUILLEROY" + "codePostal": "97190", + "codeCommune": "97113", + "libelleAcheminement": "LE GOSIER", + "nomCommune": "LE GOSIER" }, { - "codePostal": "45260", - "codeCommune": "45107", - "libelleAcheminement": "COUDROY", - "nomCommune": "COUDROY" + "codePostal": "97111", + "codeCommune": "97116", + "libelleAcheminement": "MORNE A L EAU", + "nomCommune": "MORNE A L EAU" }, { - "codePostal": "45260", - "codeCommune": "45112", - "libelleAcheminement": "LA COUR MARIGNY", - "nomCommune": "LA COUR MARIGNY" + "codePostal": "97120", + "codeCommune": "97124", + "libelleAcheminement": "ST CLAUDE", + "nomCommune": "ST CLAUDE" }, { - "codePostal": "45130", - "codeCommune": "45134", - "libelleAcheminement": "EPIEDS EN BEAUCE", - "nomCommune": "EPIEDS EN BEAUCE" + "codePostal": "97222", + "codeCommune": "97205", + "libelleAcheminement": "CASE PILOTE", + "nomCommune": "CASE PILOTE" }, { - "codePostal": "45420", - "codeCommune": "45141", - "libelleAcheminement": "FAVERELLES", - "nomCommune": "FAVERELLES" + "codePostal": "97250", + "codeCommune": "97208", + "libelleAcheminement": "FONDS ST DENIS", + "nomCommune": "FONDS ST DENIS" }, { - "codePostal": "45400", - "codeCommune": "45147", - "libelleAcheminement": "FLEURY LES AUBRAIS", - "nomCommune": "FLEURY LES AUBRAIS" + "codePostal": "97240", + "codeCommune": "97210", + "libelleAcheminement": "LE FRANCOIS", + "nomCommune": "LE FRANCOIS" }, { - "codePostal": "45210", - "codeCommune": "45148", - "libelleAcheminement": "FONTENAY SUR LOING", - "nomCommune": "FONTENAY SUR LOING" + "codePostal": "97218", + "codeCommune": "97211", + "libelleAcheminement": "GRAND RIVIERE", + "nomCommune": "GRAND RIVIERE" }, { - "codePostal": "45500", - "codeCommune": "45155", - "libelleAcheminement": "GIEN", - "nomCommune": "GIEN" + "codePostal": "97225", + "codeCommune": "97216", + "libelleAcheminement": "LE MARIGOT", + "nomCommune": "LE MARIGOT" }, { - "codePostal": "45120", - "codeCommune": "45156", - "libelleAcheminement": "GIROLLES", - "nomCommune": "GIROLLES" + "codePostal": "97215", + "codeCommune": "97221", + "libelleAcheminement": "RIVIERE SALEE", + "nomCommune": "RIVIERE SALEE" }, { - "codePostal": "45480", - "codeCommune": "45160", - "libelleAcheminement": "GRENEVILLE EN BEAUCE", - "nomCommune": "GRENEVILLE EN BEAUCE" + "codePostal": "97270", + "codeCommune": "97223", + "libelleAcheminement": "ST ESPRIT", + "nomCommune": "ST ESPRIT" }, { - "codePostal": "45210", - "codeCommune": "45161", - "libelleAcheminement": "GRISELLES", - "nomCommune": "GRISELLES" + "codePostal": "97228", + "codeCommune": "97227", + "libelleAcheminement": "STE LUCE", + "nomCommune": "STE LUCE" }, { - "codePostal": "45300", - "codeCommune": "45162", - "libelleAcheminement": "GUIGNEVILLE", - "nomCommune": "GUIGNEVILLE" + "codePostal": "97353", + "codeCommune": "97301", + "libelleAcheminement": "REGINA", + "nomCommune": "REGINA" }, { - "codePostal": "45220", - "codeCommune": "45165", - "libelleAcheminement": "GY LES NONAINS", - "nomCommune": "GY LES NONAINS" + "codePostal": "97300", + "codeCommune": "97302", + "libelleAcheminement": "CAYENNE", + "nomCommune": "CAYENNE" }, { - "codePostal": "45520", - "codeCommune": "45166", - "libelleAcheminement": "HUETRE", - "nomCommune": "HUETRE" + "codePostal": "97351", + "codeCommune": "97307", + "libelleAcheminement": "MATOURY", + "nomCommune": "MATOURY" }, { - "codePostal": "45130", - "codeCommune": "45167", - "libelleAcheminement": "HUISSEAU SUR MAUVES", - "nomCommune": "HUISSEAU SUR MAUVES" + "codePostal": "97313", + "codeCommune": "97308", + "libelleAcheminement": "ST GEORGES", + "nomCommune": "ST GEORGES" }, { - "codePostal": "45450", - "codeCommune": "45168", - "libelleAcheminement": "INGRANNES", - "nomCommune": "INGRANNES" + "codePostal": "97470", + "codeCommune": "97410", + "libelleAcheminement": "ST BENOIT", + "nomCommune": "ST BENOIT" }, { - "codePostal": "45340", - "codeCommune": "45176", - "libelleAcheminement": "JURANVILLE", - "nomCommune": "JURANVILLE" + "codePostal": "97470", + "codeCommune": "97410", + "libelleAcheminement": "ST BENOIT", + "nomCommune": "ST BENOIT" }, { - "codePostal": "45410", - "codeCommune": "45183", - "libelleAcheminement": "LION EN BEAUCE", - "nomCommune": "LION EN BEAUCE" + "codePostal": "97400", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "45330", - "codeCommune": "45191", - "libelleAcheminement": "LE MALESHERBOIS", - "nomCommune": "LE MALESHERBOIS" + "codePostal": "97417", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "45240", - "codeCommune": "45193", - "libelleAcheminement": "MARCILLY EN VILLETTE", - "nomCommune": "MARCILLY EN VILLETTE" + "codePostal": "97490", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "45300", - "codeCommune": "45195", - "libelleAcheminement": "MAREAU AUX BOIS", - "nomCommune": "MAREAU AUX BOIS" + "codePostal": "97490", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "45130", - "codeCommune": "45203", - "libelleAcheminement": "MEUNG SUR LOIRE", - "nomCommune": "MEUNG SUR LOIRE" + "codePostal": "97490", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "45340", - "codeCommune": "45209", - "libelleAcheminement": "MONTBARROIS", - "nomCommune": "MONTBARROIS" + "codePostal": "97480", + "codeCommune": "97412", + "libelleAcheminement": "ST JOSEPH", + "nomCommune": "ST JOSEPH" }, { - "codePostal": "45260", - "codeCommune": "45213", - "libelleAcheminement": "MONTEREAU", - "nomCommune": "MONTEREAU" + "codePostal": "97450", + "codeCommune": "97414", + "libelleAcheminement": "ST LOUIS", + "nomCommune": "ST LOUIS" }, { - "codePostal": "45340", - "codeCommune": "45220", - "libelleAcheminement": "NANCRAY SUR RIMARDE", - "nomCommune": "NANCRAY SUR RIMARDE" + "codePostal": "97434", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "45500", - "codeCommune": "45227", - "libelleAcheminement": "NEVOY", - "nomCommune": "NEVOY" + "codePostal": "97435", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "45260", - "codeCommune": "45230", - "libelleAcheminement": "NOYERS", - "nomCommune": "NOYERS" + "codePostal": "97410", + "codeCommune": "97416", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "45390", - "codeCommune": "45233", - "libelleAcheminement": "ONDREVILLE SUR ESSONNE", - "nomCommune": "ONDREVILLE SUR ESSONNE" + "codePostal": "97410", + "codeCommune": "97416", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "45390", - "codeCommune": "45237", - "libelleAcheminement": "ORVILLE", - "nomCommune": "ORVILLE" + "codePostal": "97410", + "codeCommune": "97416", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "45290", - "codeCommune": "45242", - "libelleAcheminement": "OUZOUER DES CHAMPS", - "nomCommune": "OUZOUER DES CHAMPS" + "codePostal": "97442", + "codeCommune": "97417", + "libelleAcheminement": "ST PHILIPPE", + "nomCommune": "ST PHILIPPE" }, { - "codePostal": "45270", - "codeCommune": "45243", - "libelleAcheminement": "OUZOUER SOUS BELLEGARDE", - "nomCommune": "OUZOUER SOUS BELLEGARDE" + "codePostal": "97442", + "codeCommune": "97417", + "libelleAcheminement": "ST PHILIPPE", + "nomCommune": "ST PHILIPPE" }, { - "codePostal": "45300", - "codeCommune": "45252", - "libelleAcheminement": "PITHIVIERS", - "nomCommune": "PITHIVIERS" + "codePostal": "97438", + "codeCommune": "97418", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "45300", - "codeCommune": "45253", - "libelleAcheminement": "PITHIVIERS LE VIEIL", - "nomCommune": "PITHIVIERS LE VIEIL" + "codePostal": "97426", + "codeCommune": "97423", + "libelleAcheminement": "LES TROIS BASSINS", + "nomCommune": "LES TROIS BASSINS" }, { - "codePostal": "45500", - "codeCommune": "45254", - "libelleAcheminement": "POILLY LEZ GIEN", - "nomCommune": "POILLY LEZ GIEN" + "codePostal": "97413", + "codeCommune": "97424", + "libelleAcheminement": "CILAOS", + "nomCommune": "CILAOS" }, { - "codePostal": "45490", - "codeCommune": "45255", - "libelleAcheminement": "PREFONTAINES", - "nomCommune": "PREFONTAINES" + "codePostal": "97500", + "codeCommune": "97501", + "libelleAcheminement": "ST PIERRE ET MIQUELON", + "nomCommune": "MIQUELON LANGLADE" }, { - "codePostal": "45410", - "codeCommune": "45266", - "libelleAcheminement": "RUAN", - "nomCommune": "RUAN" + "codePostal": "97630", + "codeCommune": "97601", + "libelleAcheminement": "ACOUA", + "nomCommune": "ACOUA" }, { - "codePostal": "45130", - "codeCommune": "45269", - "libelleAcheminement": "ST AY", - "nomCommune": "ST AY" + "codePostal": "97660", + "codeCommune": "97607", + "libelleAcheminement": "DEMBENI", + "nomCommune": "DEMBENI" }, { - "codePostal": "45230", - "codeCommune": "45278", - "libelleAcheminement": "STE GENEVIEVE DES BOIS", - "nomCommune": "STE GENEVIEVE DES BOIS" + "codePostal": "97615", + "codeCommune": "97608", + "libelleAcheminement": "DZAOUDZI", + "nomCommune": "DZAOUDZI" }, { - "codePostal": "45220", - "codeCommune": "45279", - "libelleAcheminement": "ST GERMAIN DES PRES", - "nomCommune": "ST GERMAIN DES PRES" + "codePostal": "97600", + "codeCommune": "97610", + "libelleAcheminement": "KOUNGOU", + "nomCommune": "KOUNGOU" }, { - "codePostal": "45320", - "codeCommune": "45281", - "libelleAcheminement": "ST HILAIRE LES ANDRESIS", - "nomCommune": "ST HILAIRE LES ANDRESIS" + "codePostal": "97600", + "codeCommune": "97611", + "libelleAcheminement": "MAMOUDZOU", + "nomCommune": "MAMOUDZOU" }, { - "codePostal": "45770", - "codeCommune": "45302", - "libelleAcheminement": "SARAN", - "nomCommune": "SARAN" + "codePostal": "97680", + "codeCommune": "97617", + "libelleAcheminement": "TSINGONI", + "nomCommune": "TSINGONI" }, { - "codePostal": "45530", - "codeCommune": "45305", - "libelleAcheminement": "SEICHEBRIERES", - "nomCommune": "SEICHEBRIERES" + "codePostal": "98600", + "codeCommune": "98613", + "libelleAcheminement": "UVEA", + "nomCommune": "UVEA" }, { - "codePostal": "45210", - "codeCommune": "45306", - "libelleAcheminement": "LA SELLE EN HERMOY", - "nomCommune": "LA SELLE EN HERMOY" + "codePostal": "98760", + "codeCommune": "98711", + "libelleAcheminement": "TUUHORA", + "nomCommune": "ANAA" }, { - "codePostal": "45210", - "codeCommune": "45307", - "libelleAcheminement": "LA SELLE SUR LE BIED", - "nomCommune": "LA SELLE SUR LE BIED" + "codePostal": "98790", + "codeCommune": "98716", + "libelleAcheminement": "MOTU TAPU", + "nomCommune": "FAKARAVA" }, { - "codePostal": "45700", - "codeCommune": "45312", - "libelleAcheminement": "SOLTERRE", - "nomCommune": "SOLTERRE" + "codePostal": "98755", + "codeCommune": "98719", + "libelleAcheminement": "AUKENA", + "nomCommune": "GAMBIER" }, { - "codePostal": "45600", - "codeCommune": "45315", - "libelleAcheminement": "SULLY SUR LOIRE", - "nomCommune": "SULLY SUR LOIRE" + "codePostal": "98755", + "codeCommune": "98719", + "libelleAcheminement": "MAKAROA", + "nomCommune": "GAMBIER" }, { - "codePostal": "45300", - "codeCommune": "45320", - "libelleAcheminement": "THIGNONVILLE", - "nomCommune": "THIGNONVILLE" + "codePostal": "98792", + "codeCommune": "98719", + "libelleAcheminement": "TENARUNGA", + "nomCommune": "GAMBIER" }, { - "codePostal": "45220", - "codeCommune": "45329", - "libelleAcheminement": "TRIGUERES", - "nomCommune": "TRIGUERES" + "codePostal": "98790", + "codeCommune": "98720", + "libelleAcheminement": "HEREHRETUE", + "nomCommune": "HAO" }, { - "codePostal": "45410", - "codeCommune": "45330", - "libelleAcheminement": "TRINAY", - "nomCommune": "TRINAY" + "codePostal": "98790", + "codeCommune": "98720", + "libelleAcheminement": "PARAOA", + "nomCommune": "HAO" }, { - "codePostal": "45700", - "codeCommune": "45338", - "libelleAcheminement": "VILLEMANDEUR", - "nomCommune": "VILLEMANDEUR" + "codePostal": "98790", + "codeCommune": "98720", + "libelleAcheminement": "AHUNUI", + "nomCommune": "HAO" }, { - "codePostal": "45300", - "codeCommune": "45347", - "libelleAcheminement": "VRIGNY", - "nomCommune": "VRIGNY" + "codePostal": "98790", + "codeCommune": "98721", + "libelleAcheminement": "TEPEPERU", + "nomCommune": "HIKUERU" }, { - "codePostal": "45300", - "codeCommune": "45348", - "libelleAcheminement": "YEVRE LA VILLE", - "nomCommune": "YEVRE LA VILLE" + "codePostal": "98790", + "codeCommune": "98721", + "libelleAcheminement": "MAHETIKA", + "nomCommune": "HIKUERU" }, { - "codePostal": "46140", - "codeCommune": "46001", - "libelleAcheminement": "ALBAS", - "nomCommune": "ALBAS" + "codePostal": "98707", + "codeCommune": "98722", + "libelleAcheminement": "PAPENOO", + "nomCommune": "HITIAA O TE RA" }, { - "codePostal": "46500", - "codeCommune": "46002", - "libelleAcheminement": "ALBIAC", - "nomCommune": "ALBIAC" + "codePostal": "98741", + "codeCommune": "98723", + "libelleAcheminement": "EIAONE", + "nomCommune": "HIVA OA" }, { - "codePostal": "46090", - "codeCommune": "46007", - "libelleAcheminement": "ARCAMBAL", - "nomCommune": "ARCAMBAL" + "codePostal": "98741", + "codeCommune": "98723", + "libelleAcheminement": "MOTU UA", + "nomCommune": "HIVA OA" }, { - "codePostal": "46400", - "codeCommune": "46011", - "libelleAcheminement": "AUTOIRE", - "nomCommune": "AUTOIRE" + "codePostal": "98741", + "codeCommune": "98723", + "libelleAcheminement": "NAHOE", + "nomCommune": "HIVA OA" }, { - "codePostal": "46120", - "codeCommune": "46012", - "libelleAcheminement": "AYNAC", - "nomCommune": "AYNAC" + "codePostal": "98741", + "codeCommune": "98723", + "libelleAcheminement": "PAUMAU", + "nomCommune": "HIVA OA" }, { - "codePostal": "46100", - "codeCommune": "46021", - "libelleAcheminement": "BEDUER", - "nomCommune": "BEDUER" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "MAROE", + "nomCommune": "HUAHINE" }, { - "codePostal": "46800", - "codeCommune": "46033", - "libelleAcheminement": "PORTE DU QUERCY", - "nomCommune": "PORTE DU QUERCY" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "PAREA", + "nomCommune": "HUAHINE" }, { - "codePostal": "46120", - "codeCommune": "46034", - "libelleAcheminement": "LE BOURG", - "nomCommune": "LE BOURG" + "codePostal": "98771", + "codeCommune": "98727", + "libelleAcheminement": "TURIPAOA", + "nomCommune": "MANIHI" }, { - "codePostal": "46330", - "codeCommune": "46037", - "libelleAcheminement": "BOUZIES", - "nomCommune": "BOUZIES" + "codePostal": "98732", + "codeCommune": "98728", + "libelleAcheminement": "MOTU ONE", + "nomCommune": "MAUPITI" }, { - "codePostal": "46130", - "codeCommune": "46038", - "libelleAcheminement": "BRETENOUX", - "nomCommune": "BRETENOUX" + "codePostal": "98732", + "codeCommune": "98728", + "libelleAcheminement": "SCILLY", + "nomCommune": "MAUPITI" }, { - "codePostal": "46350", - "codeCommune": "46047", - "libelleAcheminement": "CALES", - "nomCommune": "CALES" + "codePostal": "98729", + "codeCommune": "98729", + "libelleAcheminement": "OPUNOHU", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "46140", - "codeCommune": "46050", - "libelleAcheminement": "CAMBAYRAC", - "nomCommune": "CAMBAYRAC" + "codePostal": "98729", + "codeCommune": "98729", + "libelleAcheminement": "PAOPAO", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "46700", - "codeCommune": "46061", - "libelleAcheminement": "CASSAGNES", - "nomCommune": "CASSAGNES" + "codePostal": "98772", + "codeCommune": "98730", + "libelleAcheminement": "TEPUKAMARUIA", + "nomCommune": "NAPUKA" }, { - "codePostal": "46170", - "codeCommune": "46063", - "libelleAcheminement": "CASTELNAU MONTRATIER STE ALAUZIE", - "nomCommune": "CASTELNAU MONTRATIER STE ALAUZIE" + "codePostal": "98796", + "codeCommune": "98731", + "libelleAcheminement": "HATU ITI", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "46330", - "codeCommune": "46068", - "libelleAcheminement": "CENEVIERES", - "nomCommune": "CENEVIERES" + "codePostal": "98714", + "codeCommune": "98735", + "libelleAcheminement": "PAPEETE", + "nomCommune": "PAPEETE" }, { - "codePostal": "46230", - "codeCommune": "46070", - "libelleAcheminement": "CIEURAC", - "nomCommune": "CIEURAC" + "codePostal": "98716", + "codeCommune": "98736", + "libelleAcheminement": "PIRAE", + "nomCommune": "PIRAE" }, { - "codePostal": "46500", - "codeCommune": "46078", - "libelleAcheminement": "COUZOU", - "nomCommune": "COUZOU" + "codePostal": "98703", + "codeCommune": "98738", + "libelleAcheminement": "PUNAAUIA", + "nomCommune": "PUNAAUIA" }, { - "codePostal": "46320", - "codeCommune": "46090", - "libelleAcheminement": "DURBANS", - "nomCommune": "DURBANS" + "codePostal": "98718", + "codeCommune": "98738", + "libelleAcheminement": "PUNAAUIA", + "nomCommune": "PUNAAUIA" }, { - "codePostal": "46090", - "codeCommune": "46092", - "libelleAcheminement": "ESCLAUZELS", - "nomCommune": "ESCLAUZELS" + "codePostal": "98750", + "codeCommune": "98739", + "libelleAcheminement": "VAIURU", + "nomCommune": "RAIVAVAE" }, { - "codePostal": "46320", - "codeCommune": "46094", - "libelleAcheminement": "ESPEDAILLAC", - "nomCommune": "ESPEDAILLAC" + "codePostal": "98779", + "codeCommune": "98742", + "libelleAcheminement": "TAPUARAVA", + "nomCommune": "REAO" }, { - "codePostal": "46100", - "codeCommune": "46100", - "libelleAcheminement": "FAYCELLES", - "nomCommune": "FAYCELLES" + "codePostal": "98752", + "codeCommune": "98743", + "libelleAcheminement": "AMARU", + "nomCommune": "RIMATARA" }, { - "codePostal": "46270", - "codeCommune": "46101", - "libelleAcheminement": "FELZINS", - "nomCommune": "FELZINS" + "codePostal": "98753", + "codeCommune": "98744", + "libelleAcheminement": "HAUTI", + "nomCommune": "RURUTU" }, { - "codePostal": "46170", - "codeCommune": "46103", - "libelleAcheminement": "ST PAUL FLAUGNAC", - "nomCommune": "ST PAUL FLAUGNAC" + "codePostal": "98733", + "codeCommune": "98745", + "libelleAcheminement": "IRIPAU", + "nomCommune": "TAHAA" }, { - "codePostal": "46100", - "codeCommune": "46111", - "libelleAcheminement": "FOURMAGNAC", - "nomCommune": "FOURMAGNAC" + "codePostal": "98743", + "codeCommune": "98746", + "libelleAcheminement": "VAITAHU", + "nomCommune": "TAHUATA" }, { - "codePostal": "46160", - "codeCommune": "46116", - "libelleAcheminement": "FRONTENAC", - "nomCommune": "FRONTENAC" + "codePostal": "98721", + "codeCommune": "98747", + "libelleAcheminement": "PUEU", + "nomCommune": "TAIARAPU EST" }, { - "codePostal": "46250", - "codeCommune": "46120", - "libelleAcheminement": "GINDOU", - "nomCommune": "GINDOU" + "codePostal": "98725", + "codeCommune": "98748", + "libelleAcheminement": "VAIRAO", + "nomCommune": "TAIARAPU OUEST" }, { - "codePostal": "46130", - "codeCommune": "46122", - "libelleAcheminement": "GINTRAC", - "nomCommune": "GINTRAC" + "codePostal": "98782", + "codeCommune": "98749", + "libelleAcheminement": "FAKATOPATERE", + "nomCommune": "TAKAROA" }, { - "codePostal": "46250", - "codeCommune": "46126", - "libelleAcheminement": "GOUJOUNAC", - "nomCommune": "GOUJOUNAC" + "codePostal": "98735", + "codeCommune": "98750", + "libelleAcheminement": "AVERA", + "nomCommune": "TAPUTAPUATEA" }, { - "codePostal": "46500", - "codeCommune": "46132", - "libelleAcheminement": "ISSENDOLUS", - "nomCommune": "ISSENDOLUS" + "codePostal": "98754", + "codeCommune": "98753", + "libelleAcheminement": "TAAHUAIA", + "nomCommune": "TUBUAI" }, { - "codePostal": "46240", - "codeCommune": "46138", - "libelleAcheminement": "COEUR DE CAUSSE", - "nomCommune": "COEUR DE CAUSSE" + "codePostal": "98735", + "codeCommune": "98754", + "libelleAcheminement": "TEVAITOA", + "nomCommune": "TUMARAA" }, { - "codePostal": "46230", - "codeCommune": "46140", - "libelleAcheminement": "LABURGADE", - "nomCommune": "LABURGADE" + "codePostal": "98744", + "codeCommune": "98756", + "libelleAcheminement": "VAIPAEE", + "nomCommune": "UA HUKA" }, { - "codePostal": "46120", - "codeCommune": "46143", - "libelleAcheminement": "LACAPELLE MARIVAL", - "nomCommune": "LACAPELLE MARIVAL" + "codePostal": "98745", + "codeCommune": "98757", + "libelleAcheminement": "HAKAHETAU", + "nomCommune": "UA POU" }, { - "codePostal": "46220", - "codeCommune": "46147", - "libelleAcheminement": "LAGARDELLE", - "nomCommune": "LAGARDELLE" + "codePostal": "98745", + "codeCommune": "98757", + "libelleAcheminement": "HAKAHAU", + "nomCommune": "UA POU" }, { - "codePostal": "46090", - "codeCommune": "46149", - "libelleAcheminement": "LAMAGDELAINE", - "nomCommune": "LAMAGDELAINE" + "codePostal": "98735", + "codeCommune": "98758", + "libelleAcheminement": "UTUROA", + "nomCommune": "UTUROA" }, { - "codePostal": "46160", - "codeCommune": "46155", - "libelleAcheminement": "LARNAGOL", - "nomCommune": "LARNAGOL" + "codePostal": "98813", + "codeCommune": "98804", + "libelleAcheminement": "CANALA", + "nomCommune": "CANALA" }, { - "codePostal": "46330", - "codeCommune": "46167", - "libelleAcheminement": "LENTILLAC DU CAUSSE", - "nomCommune": "LENTILLAC DU CAUSSE" + "codePostal": "98881", + "codeCommune": "98806", + "libelleAcheminement": "FARINO", + "nomCommune": "FARINO" }, { - "codePostal": "46260", - "codeCommune": "46173", - "libelleAcheminement": "LIMOGNE EN QUERCY", - "nomCommune": "LIMOGNE EN QUERCY" + "codePostal": "98817", + "codeCommune": "98810", + "libelleAcheminement": "KAALA GOMEN", + "nomCommune": "KAALA GOMEN" }, { - "codePostal": "46320", - "codeCommune": "46176", - "libelleAcheminement": "LIVERNON", - "nomCommune": "LIVERNON" + "codePostal": "98880", + "codeCommune": "98813", + "libelleAcheminement": "LA FOA", + "nomCommune": "LA FOA" }, { - "codePostal": "46130", - "codeCommune": "46177", - "libelleAcheminement": "LOUBRESSAC", - "nomCommune": "LOUBRESSAC" + "codePostal": "98885", + "codeCommune": "98814", + "libelleAcheminement": "MOU", + "nomCommune": "LIFOU" }, { - "codePostal": "46240", - "codeCommune": "46181", - "libelleAcheminement": "LUNEGARDE", - "nomCommune": "LUNEGARDE" + "codePostal": "98828", + "codeCommune": "98815", + "libelleAcheminement": "TADINE", + "nomCommune": "MARE" }, { - "codePostal": "46090", - "codeCommune": "46191", - "libelleAcheminement": "MERCUES", - "nomCommune": "MERCUES" + "codePostal": "98878", + "codeCommune": "98815", + "libelleAcheminement": "LA ROCHE", + "nomCommune": "MARE" }, { - "codePostal": "46120", - "codeCommune": "46195", - "libelleAcheminement": "MOLIERES", - "nomCommune": "MOLIERES" + "codePostal": "98822", + "codeCommune": "98822", + "libelleAcheminement": "POINDIMIE", + "nomCommune": "POINDIMIE" }, { - "codePostal": "46800", - "codeCommune": "46201", - "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", - "nomCommune": "MONTCUQ EN QUERCY BLANC" + "codePostal": "98829", + "codeCommune": "98829", + "libelleAcheminement": "THIO", + "nomCommune": "THIO" }, { - "codePostal": "46800", - "codeCommune": "46201", - "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", - "nomCommune": "MONTCUQ EN QUERCY BLANC" + "codePostal": "98833", + "codeCommune": "98831", + "libelleAcheminement": "VOH", + "nomCommune": "VOH" }, { - "codePostal": "46800", - "codeCommune": "46201", - "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", - "nomCommune": "MONTCUQ EN QUERCY BLANC" + "codePostal": "98834", + "codeCommune": "98832", + "libelleAcheminement": "YATE", + "nomCommune": "YATE" }, { - "codePostal": "46800", - "codeCommune": "46201", - "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", - "nomCommune": "MONTCUQ EN QUERCY BLANC" + "codePostal": "98799", + "codeCommune": "98901", + "libelleAcheminement": "ILE DE CLIPPERTON", + "nomCommune": "ILE DE CLIPPERTON" }, { - "codePostal": "46230", - "codeCommune": "46202", - "libelleAcheminement": "MONTDOUMERC", - "nomCommune": "MONTDOUMERC" + "codePostal": "01400", + "codeCommune": "01001", + "libelleAcheminement": "L ABERGEMENT CLEMENCIAT", + "nomCommune": "L ABERGEMENT CLEMENCIAT" }, { - "codePostal": "46240", - "codeCommune": "46204", - "libelleAcheminement": "MONTFAUCON", - "nomCommune": "MONTFAUCON" + "codePostal": "01500", + "codeCommune": "01007", + "libelleAcheminement": "AMBRONAY", + "nomCommune": "AMBRONAY" }, { - "codePostal": "46150", - "codeCommune": "46205", - "libelleAcheminement": "MONTGESTY", - "nomCommune": "MONTGESTY" + "codePostal": "01350", + "codeCommune": "01010", + "libelleAcheminement": "ANGLEFORT", + "nomCommune": "ANGLEFORT" }, { - "codePostal": "46800", - "codeCommune": "46206", - "libelleAcheminement": "MONTLAUZUN", - "nomCommune": "MONTLAUZUN" + "codePostal": "01300", + "codeCommune": "01015", + "libelleAcheminement": "ARBOYS EN BUGEY", + "nomCommune": "ARBOYS EN BUGEY" }, { - "codePostal": "46360", - "codeCommune": "46210", - "libelleAcheminement": "NADILLAC", - "nomCommune": "NADILLAC" + "codePostal": "01230", + "codeCommune": "01017", + "libelleAcheminement": "ARGIS", + "nomCommune": "ARGIS" }, { - "codePostal": "46170", - "codeCommune": "46217", - "libelleAcheminement": "PERN", - "nomCommune": "PERN" + "codePostal": "01570", + "codeCommune": "01023", + "libelleAcheminement": "ASNIERES SUR SAONE", + "nomCommune": "ASNIERES SUR SAONE" }, { - "codePostal": "46200", - "codeCommune": "46220", - "libelleAcheminement": "PINSAC", - "nomCommune": "PINSAC" + "codePostal": "01380", + "codeCommune": "01025", + "libelleAcheminement": "BAGE DOMMARTIN", + "nomCommune": "BAGE DOMMARTIN" }, { - "codePostal": "46100", - "codeCommune": "46221", - "libelleAcheminement": "PLANIOLES", - "nomCommune": "PLANIOLES" + "codePostal": "01100", + "codeCommune": "01031", + "libelleAcheminement": "BELLIGNAT", + "nomCommune": "BELLIGNAT" }, { - "codePostal": "46090", - "codeCommune": "46224", - "libelleAcheminement": "PRADINES", - "nomCommune": "PRADINES" + "codePostal": "01360", + "codeCommune": "01032", + "libelleAcheminement": "BELIGNEUX", + "nomCommune": "BELIGNEUX" }, { - "codePostal": "46110", - "codeCommune": "46232", - "libelleAcheminement": "LE VIGNON EN QUERCY", - "nomCommune": "LE VIGNON EN QUERCY" + "codePostal": "01360", + "codeCommune": "01032", + "libelleAcheminement": "BELIGNEUX", + "nomCommune": "BELIGNEUX" }, { - "codePostal": "46600", - "codeCommune": "46232", - "libelleAcheminement": "LE VIGNON EN QUERCY", - "nomCommune": "LE VIGNON EN QUERCY" + "codePostal": "01360", + "codeCommune": "01032", + "libelleAcheminement": "BELIGNEUX", + "nomCommune": "BELIGNEUX" }, { - "codePostal": "46340", - "codeCommune": "46234", - "libelleAcheminement": "RAMPOUX", - "nomCommune": "RAMPOUX" + "codePostal": "01130", + "codeCommune": "01035", + "libelleAcheminement": "BELLEYDOUX", + "nomCommune": "BELLEYDOUX" }, { - "codePostal": "46120", - "codeCommune": "46242", - "libelleAcheminement": "RUDELLE", - "nomCommune": "RUDELLE" + "codePostal": "01260", + "codeCommune": "01036", + "libelleAcheminement": "VALROMEY SUR SERAN", + "nomCommune": "VALROMEY SUR SERAN" }, { - "codePostal": "46210", - "codeCommune": "46255", - "libelleAcheminement": "ST CIRGUES", - "nomCommune": "ST CIRGUES" + "codePostal": "01370", + "codeCommune": "01038", + "libelleAcheminement": "BENY", + "nomCommune": "BENY" }, { - "codePostal": "46120", - "codeCommune": "46260", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "01350", + "codeCommune": "01039", + "libelleAcheminement": "BEON", + "nomCommune": "BEON" }, { - "codePostal": "46150", - "codeCommune": "46264", - "libelleAcheminement": "ST DENIS CATUS", - "nomCommune": "ST DENIS CATUS" + "codePostal": "01340", + "codeCommune": "01040", + "libelleAcheminement": "BEREZIAT", + "nomCommune": "BEREZIAT" }, { - "codePostal": "46260", - "codeCommune": "46270", - "libelleAcheminement": "ST JEAN DE LAUR", - "nomCommune": "ST JEAN DE LAUR" + "codePostal": "01290", + "codeCommune": "01046", + "libelleAcheminement": "BIZIAT", + "nomCommune": "BIZIAT" }, { - "codePostal": "46700", - "codeCommune": "46277", - "libelleAcheminement": "ST MARTIN LE REDON", - "nomCommune": "ST MARTIN LE REDON" + "codePostal": "01120", + "codeCommune": "01049", + "libelleAcheminement": "LA BOISSE", + "nomCommune": "LA BOISSE" }, { - "codePostal": "46110", - "codeCommune": "46283", - "libelleAcheminement": "ST MICHEL DE BANNIERES", - "nomCommune": "ST MICHEL DE BANNIERES" + "codePostal": "01450", + "codeCommune": "01051", + "libelleAcheminement": "BOLOZON", + "nomCommune": "BOLOZON" }, { - "codePostal": "46160", - "codeCommune": "46289", - "libelleAcheminement": "ST PIERRE TOIRAC", - "nomCommune": "ST PIERRE TOIRAC" + "codePostal": "01330", + "codeCommune": "01052", + "libelleAcheminement": "BOULIGNEUX", + "nomCommune": "BOULIGNEUX" }, { - "codePostal": "46340", - "codeCommune": "46297", - "libelleAcheminement": "SALVIAC", - "nomCommune": "SALVIAC" + "codePostal": "01800", + "codeCommune": "01054", + "libelleAcheminement": "BOURG ST CHRISTOPHE", + "nomCommune": "BOURG ST CHRISTOPHE" }, { - "codePostal": "46360", - "codeCommune": "46303", - "libelleAcheminement": "SENAILLAC LAUZES", - "nomCommune": "SENAILLAC LAUZES" + "codePostal": "01470", + "codeCommune": "01064", + "libelleAcheminement": "BRIORD", + "nomCommune": "BRIORD" }, { - "codePostal": "46320", - "codeCommune": "46306", - "libelleAcheminement": "SONAC", - "nomCommune": "SONAC" + "codePostal": "01450", + "codeCommune": "01068", + "libelleAcheminement": "CERDON", + "nomCommune": "CERDON" }, { - "codePostal": "46700", - "codeCommune": "46307", - "libelleAcheminement": "SOTURAC", - "nomCommune": "SOTURAC" + "codePostal": "01230", + "codeCommune": "01076", + "libelleAcheminement": "CHALEY", + "nomCommune": "CHALEY" }, { - "codePostal": "46190", - "codeCommune": "46311", - "libelleAcheminement": "SOUSCEYRAC EN QUERCY", - "nomCommune": "SOUSCEYRAC EN QUERCY" + "codePostal": "01450", + "codeCommune": "01077", + "libelleAcheminement": "CHALLES LA MONTAGNE", + "nomCommune": "CHALLES LA MONTAGNE" }, { - "codePostal": "46190", - "codeCommune": "46311", - "libelleAcheminement": "SOUSCEYRAC EN QUERCY", - "nomCommune": "SOUSCEYRAC EN QUERCY" + "codePostal": "01260", + "codeCommune": "01079", + "libelleAcheminement": "CHAMPAGNE EN VALROMEY", + "nomCommune": "CHAMPAGNE EN VALROMEY" }, { - "codePostal": "46110", - "codeCommune": "46312", - "libelleAcheminement": "STRENQUELS", - "nomCommune": "STRENQUELS" + "codePostal": "01410", + "codeCommune": "01081", + "libelleAcheminement": "CHAMPFROMIER", + "nomCommune": "CHAMPFROMIER" }, { - "codePostal": "46120", - "codeCommune": "46318", - "libelleAcheminement": "THEMINES", - "nomCommune": "THEMINES" + "codePostal": "01990", + "codeCommune": "01083", + "libelleAcheminement": "CHANEINS", + "nomCommune": "CHANEINS" }, { - "codePostal": "46700", - "codeCommune": "46321", - "libelleAcheminement": "TOUZAC", - "nomCommune": "TOUZAC" + "codePostal": "01400", + "codeCommune": "01084", + "libelleAcheminement": "CHANOZ CHATENAY", + "nomCommune": "CHANOZ CHATENAY" }, { - "codePostal": "46240", - "codeCommune": "46323", - "libelleAcheminement": "USSEL", - "nomCommune": "USSEL" + "codePostal": "01500", + "codeCommune": "01089", + "libelleAcheminement": "CHATEAU GAILLARD", + "nomCommune": "CHATEAU GAILLARD" }, { - "codePostal": "46110", - "codeCommune": "46330", - "libelleAcheminement": "VAYRAC", - "nomCommune": "VAYRAC" + "codePostal": "01320", + "codeCommune": "01092", + "libelleAcheminement": "CHATILLON LA PALUD", + "nomCommune": "CHATILLON LA PALUD" }, { - "codePostal": "46090", - "codeCommune": "46335", - "libelleAcheminement": "VILLESEQUE", - "nomCommune": "VILLESEQUE" + "codePostal": "01190", + "codeCommune": "01094", + "libelleAcheminement": "CHAVANNES SUR REYSSOUZE", + "nomCommune": "CHAVANNES SUR REYSSOUZE" }, { - "codePostal": "46700", - "codeCommune": "46336", - "libelleAcheminement": "VIRE SUR LOT", - "nomCommune": "VIRE SUR LOT" + "codePostal": "01510", + "codeCommune": "01098", + "libelleAcheminement": "CHAZEY BONS", + "nomCommune": "CHAZEY BONS" }, { - "codePostal": "46200", - "codeCommune": "46337", - "libelleAcheminement": "MAYRAC", - "nomCommune": "MAYRAC" + "codePostal": "01300", + "codeCommune": "01110", + "libelleAcheminement": "COLOMIEU", + "nomCommune": "COLOMIEU" }, { - "codePostal": "46090", - "codeCommune": "46340", - "libelleAcheminement": "ST PIERRE LAFEUILLE", - "nomCommune": "ST PIERRE LAFEUILLE" + "codePostal": "01290", + "codeCommune": "01123", + "libelleAcheminement": "CORMORANCHE SUR SAONE", + "nomCommune": "CORMORANCHE SUR SAONE" }, { - "codePostal": "47350", - "codeCommune": "47002", - "libelleAcheminement": "AGME", - "nomCommune": "AGME" + "codePostal": "01560", + "codeCommune": "01124", + "libelleAcheminement": "CORMOZ", + "nomCommune": "CORMOZ" }, { - "codePostal": "47190", - "codeCommune": "47004", - "libelleAcheminement": "AIGUILLON", - "nomCommune": "AIGUILLON" + "codePostal": "01250", + "codeCommune": "01125", + "libelleAcheminement": "CORVEISSIAT", + "nomCommune": "CORVEISSIAT" }, { - "codePostal": "47160", - "codeCommune": "47008", - "libelleAcheminement": "AMBRUS", - "nomCommune": "AMBRUS" + "codePostal": "01560", + "codeCommune": "01128", + "libelleAcheminement": "COURTES", + "nomCommune": "COURTES" }, { - "codePostal": "47370", - "codeCommune": "47011", - "libelleAcheminement": "ANTHE", - "nomCommune": "ANTHE" + "codePostal": "01750", + "codeCommune": "01134", + "libelleAcheminement": "CROTTET", + "nomCommune": "CROTTET" }, { - "codePostal": "47220", - "codeCommune": "47015", - "libelleAcheminement": "ASTAFFORT", - "nomCommune": "ASTAFFORT" + "codePostal": "01300", + "codeCommune": "01141", + "libelleAcheminement": "CUZIEU", + "nomCommune": "CUZIEU" }, { - "codePostal": "47140", - "codeCommune": "47017", - "libelleAcheminement": "AURADOU", - "nomCommune": "AURADOU" + "codePostal": "01270", + "codeCommune": "01147", + "libelleAcheminement": "DOMSURE", + "nomCommune": "DOMSURE" }, { - "codePostal": "47470", - "codeCommune": "47025", - "libelleAcheminement": "BEAUVILLE", - "nomCommune": "BEAUVILLE" + "codePostal": "01230", + "codeCommune": "01155", + "libelleAcheminement": "EVOSGES", + "nomCommune": "EVOSGES" }, { - "codePostal": "47300", - "codeCommune": "47027", - "libelleAcheminement": "BIAS", - "nomCommune": "BIAS" + "codePostal": "01550", + "codeCommune": "01158", + "libelleAcheminement": "FARGES", + "nomCommune": "FARGES" }, { - "codePostal": "47440", - "codeCommune": "47049", - "libelleAcheminement": "CASSENEUIL", - "nomCommune": "CASSENEUIL" + "codePostal": "01570", + "codeCommune": "01159", + "libelleAcheminement": "FEILLENS", + "nomCommune": "FEILLENS" }, { - "codePostal": "47340", - "codeCommune": "47053", - "libelleAcheminement": "CASTELLA", - "nomCommune": "CASTELLA" + "codePostal": "01210", + "codeCommune": "01160", + "libelleAcheminement": "FERNEY VOLTAIRE", + "nomCommune": "FERNEY VOLTAIRE" }, { - "codePostal": "47260", - "codeCommune": "47054", - "libelleAcheminement": "CASTELMORON SUR LOT", - "nomCommune": "CASTELMORON SUR LOT" + "codePostal": "01090", + "codeCommune": "01165", + "libelleAcheminement": "FRANCHELEINS", + "nomCommune": "FRANCHELEINS" }, { - "codePostal": "47160", - "codeCommune": "47058", - "libelleAcheminement": "CAUBEYRES", - "nomCommune": "CAUBEYRES" + "codePostal": "01480", + "codeCommune": "01166", + "libelleAcheminement": "FRANS", + "nomCommune": "FRANS" }, { - "codePostal": "47370", - "codeCommune": "47064", - "libelleAcheminement": "CAZIDEROQUE", - "nomCommune": "CAZIDEROQUE" + "codePostal": "01190", + "codeCommune": "01175", + "libelleAcheminement": "GORREVOD", + "nomCommune": "GORREVOD" }, { - "codePostal": "47450", - "codeCommune": "47069", - "libelleAcheminement": "COLAYRAC ST CIRQ", - "nomCommune": "COLAYRAC ST CIRQ" + "codePostal": "01250", + "codeCommune": "01177", + "libelleAcheminement": "GRAND CORENT", + "nomCommune": "GRAND CORENT" }, { - "codePostal": "47500", - "codeCommune": "47070", - "libelleAcheminement": "CONDEZAYGUES", - "nomCommune": "CONDEZAYGUES" + "codePostal": "01110", + "codeCommune": "01185", + "libelleAcheminement": "PLATEAU D HAUTEVILLE", + "nomCommune": "PLATEAU D HAUTEVILLE" }, { - "codePostal": "47260", - "codeCommune": "47071", - "libelleAcheminement": "COULX", - "nomCommune": "COULX" + "codePostal": "01110", + "codeCommune": "01185", + "libelleAcheminement": "PLATEAU D HAUTEVILLE", + "nomCommune": "PLATEAU D HAUTEVILLE" }, { - "codePostal": "47340", - "codeCommune": "47075", - "libelleAcheminement": "LA CROIX BLANCHE", - "nomCommune": "LA CROIX BLANCHE" + "codePostal": "01200", + "codeCommune": "01189", + "libelleAcheminement": "INJOUX GENISSIAT", + "nomCommune": "INJOUX GENISSIAT" }, { - "codePostal": "47210", - "codeCommune": "47080", - "libelleAcheminement": "DEVILLAC", - "nomCommune": "DEVILLAC" + "codePostal": "01680", + "codeCommune": "01190", + "libelleAcheminement": "INNIMOND", + "nomCommune": "INNIMOND" }, { - "codePostal": "47310", - "codeCommune": "47091", - "libelleAcheminement": "ESTILLAC", - "nomCommune": "ESTILLAC" + "codePostal": "01250", + "codeCommune": "01197", + "libelleAcheminement": "JOURNANS", + "nomCommune": "JOURNANS" }, { - "codePostal": "47400", - "codeCommune": "47095", - "libelleAcheminement": "FAUILLET", - "nomCommune": "FAUILLET" + "codePostal": "01130", + "codeCommune": "01204", + "libelleAcheminement": "LE POIZAT LALLEYRIAT", + "nomCommune": "LE POIZAT LALLEYRIAT" }, { - "codePostal": "47400", - "codeCommune": "47110", - "libelleAcheminement": "GONTAUD DE NOGARET", - "nomCommune": "GONTAUD DE NOGARET" + "codePostal": "01430", + "codeCommune": "01206", + "libelleAcheminement": "LANTENAY", + "nomCommune": "LANTENAY" }, { - "codePostal": "47400", - "codeCommune": "47112", - "libelleAcheminement": "GRATELOUP ST GAYRAND", - "nomCommune": "GRATELOUP ST GAYRAND" + "codePostal": "01200", + "codeCommune": "01209", + "libelleAcheminement": "LEAZ", + "nomCommune": "LEAZ" }, { - "codePostal": "47340", - "codeCommune": "47117", - "libelleAcheminement": "HAUTEFAGE LA TOUR", - "nomCommune": "HAUTEFAGE LA TOUR" + "codePostal": "01410", + "codeCommune": "01210", + "libelleAcheminement": "LELEX", + "nomCommune": "LELEX" }, { - "codePostal": "47400", - "codeCommune": "47118", - "libelleAcheminement": "HAUTESVIGNES", - "nomCommune": "HAUTESVIGNES" + "codePostal": "01240", + "codeCommune": "01211", + "libelleAcheminement": "LENT", + "nomCommune": "LENT" }, { - "codePostal": "47170", - "codeCommune": "47134", - "libelleAcheminement": "LANNES", - "nomCommune": "LANNES" + "codePostal": "01560", + "codeCommune": "01212", + "libelleAcheminement": "LESCHEROUX", + "nomCommune": "LESCHEROUX" }, { - "codePostal": "47340", - "codeCommune": "47138", - "libelleAcheminement": "LAROQUE TIMBAUT", - "nomCommune": "LAROQUE TIMBAUT" + "codePostal": "01450", + "codeCommune": "01214", + "libelleAcheminement": "LEYSSARD", + "nomCommune": "LEYSSARD" }, { - "codePostal": "47360", - "codeCommune": "47140", - "libelleAcheminement": "LAUGNAC", - "nomCommune": "LAUGNAC" + "codePostal": "01420", + "codeCommune": "01215", + "libelleAcheminement": "SURJOUX LHOPITAL", + "nomCommune": "SURJOUX LHOPITAL" }, { - "codePostal": "47150", - "codeCommune": "47141", - "libelleAcheminement": "LAUSSOU", - "nomCommune": "LAUSSOU" + "codePostal": "01570", + "codeCommune": "01231", + "libelleAcheminement": "MANZIAT", + "nomCommune": "MANZIAT" }, { - "codePostal": "47410", - "codeCommune": "47142", - "libelleAcheminement": "LAUZUN", - "nomCommune": "LAUZUN" + "codePostal": "01240", + "codeCommune": "01235", + "libelleAcheminement": "MARLIEUX", + "nomCommune": "MARLIEUX" }, { - "codePostal": "47200", - "codeCommune": "47156", - "libelleAcheminement": "MARCELLUS", - "nomCommune": "MARCELLUS" + "codePostal": "01100", + "codeCommune": "01237", + "libelleAcheminement": "MARTIGNAT", + "nomCommune": "MARTIGNAT" }, { - "codePostal": "47220", - "codeCommune": "47158", - "libelleAcheminement": "MARMONT PACHAS", - "nomCommune": "MARMONT PACHAS" + "codePostal": "01300", + "codeCommune": "01239", + "libelleAcheminement": "MASSIGNIEU DE RIVES", + "nomCommune": "MASSIGNIEU DE RIVES" }, { - "codePostal": "47310", - "codeCommune": "47169", - "libelleAcheminement": "MOIRAX", - "nomCommune": "MOIRAX" + "codePostal": "01480", + "codeCommune": "01243", + "libelleAcheminement": "MESSIMY SUR SAONE", + "nomCommune": "MESSIMY SUR SAONE" }, { - "codePostal": "47310", - "codeCommune": "47172", - "libelleAcheminement": "MONCAUT", - "nomCommune": "MONCAUT" + "codePostal": "01800", + "codeCommune": "01244", + "libelleAcheminement": "MEXIMIEUX", + "nomCommune": "MEXIMIEUX" }, { - "codePostal": "47380", - "codeCommune": "47173", - "libelleAcheminement": "MONCLAR", - "nomCommune": "MONCLAR" + "codePostal": "01250", + "codeCommune": "01245", + "libelleAcheminement": "BOHAS MEYRIAT RIGNAT", + "nomCommune": "BOHAS MEYRIAT RIGNAT" }, { - "codePostal": "47230", - "codeCommune": "47176", - "libelleAcheminement": "MONGAILLARD", - "nomCommune": "MONGAILLARD" + "codePostal": "01170", + "codeCommune": "01247", + "libelleAcheminement": "MIJOUX", + "nomCommune": "MIJOUX" }, { - "codePostal": "47500", - "codeCommune": "47179", - "libelleAcheminement": "MONSEMPRON LIBOS", - "nomCommune": "MONSEMPRON LIBOS" + "codePostal": "01140", + "codeCommune": "01252", + "libelleAcheminement": "MOGNENEINS", + "nomCommune": "MOGNENEINS" }, { - "codePostal": "47150", - "codeCommune": "47181", - "libelleAcheminement": "MONTAGNAC SUR LEDE", - "nomCommune": "MONTAGNAC SUR LEDE" + "codePostal": "01470", + "codeCommune": "01255", + "libelleAcheminement": "MONTAGNIEU", + "nomCommune": "MONTAGNIEU" }, { - "codePostal": "47130", - "codeCommune": "47186", - "libelleAcheminement": "MONTESQUIEU", - "nomCommune": "MONTESQUIEU" + "codePostal": "01310", + "codeCommune": "01259", + "libelleAcheminement": "MONTCET", + "nomCommune": "MONTCET" }, { - "codePostal": "47800", - "codeCommune": "47188", - "libelleAcheminement": "MONTIGNAC DE LAUZUN", - "nomCommune": "MONTIGNAC DE LAUZUN" + "codePostal": "01130", + "codeCommune": "01269", + "libelleAcheminement": "NANTUA", + "nomCommune": "NANTUA" }, { - "codePostal": "47120", - "codeCommune": "47199", - "libelleAcheminement": "PARDAILLAN", - "nomCommune": "PARDAILLAN" + "codePostal": "01160", + "codeCommune": "01273", + "libelleAcheminement": "NEUVILLE SUR AIN", + "nomCommune": "NEUVILLE SUR AIN" }, { - "codePostal": "47350", - "codeCommune": "47204", - "libelleAcheminement": "PEYRIERE", - "nomCommune": "PEYRIERE" + "codePostal": "01510", + "codeCommune": "01280", + "libelleAcheminement": "ORDONNAZ", + "nomCommune": "ORDONNAZ" }, { - "codePostal": "47270", - "codeCommune": "47217", - "libelleAcheminement": "PUYMIROL", - "nomCommune": "PUYMIROL" + "codePostal": "01630", + "codeCommune": "01288", + "libelleAcheminement": "PERON", + "nomCommune": "PERON" }, { - "codePostal": "47800", - "codeCommune": "47218", - "libelleAcheminement": "PUYSSERAMPION", - "nomCommune": "PUYSSERAMPION" + "codePostal": "01140", + "codeCommune": "01295", + "libelleAcheminement": "PEYZIEUX SUR SAONE", + "nomCommune": "PEYZIEUX SUR SAONE" }, { - "codePostal": "47210", - "codeCommune": "47223", - "libelleAcheminement": "RIVES", - "nomCommune": "RIVES" + "codePostal": "01120", + "codeCommune": "01297", + "libelleAcheminement": "PIZAY", + "nomCommune": "PIZAY" }, { - "codePostal": "47800", - "codeCommune": "47226", - "libelleAcheminement": "ROUMAGNE", - "nomCommune": "ROUMAGNE" + "codePostal": "01130", + "codeCommune": "01298", + "libelleAcheminement": "PLAGNE", + "nomCommune": "PLAGNE" }, { - "codePostal": "47700", - "codeCommune": "47227", - "libelleAcheminement": "RUFFIAC", - "nomCommune": "RUFFIAC" + "codePostal": "01310", + "codeCommune": "01301", + "libelleAcheminement": "POLLIAT", + "nomCommune": "POLLIAT" }, { - "codePostal": "47120", - "codeCommune": "47229", - "libelleAcheminement": "ST ASTIER", - "nomCommune": "ST ASTIER" + "codePostal": "01450", + "codeCommune": "01303", + "libelleAcheminement": "PONCIN", + "nomCommune": "PONCIN" }, { - "codePostal": "47350", - "codeCommune": "47231", - "libelleAcheminement": "ST AVIT", - "nomCommune": "ST AVIT" + "codePostal": "01290", + "codeCommune": "01306", + "libelleAcheminement": "PONT DE VEYLE", + "nomCommune": "PONT DE VEYLE" }, { - "codePostal": "47180", - "codeCommune": "47233", - "libelleAcheminement": "STE BAZEILLE", - "nomCommune": "STE BAZEILLE" + "codePostal": "01250", + "codeCommune": "01309", + "libelleAcheminement": "POUILLAT", + "nomCommune": "POUILLAT" }, { - "codePostal": "47250", - "codeCommune": "47244", - "libelleAcheminement": "STE GEMME MARTAILLAC", - "nomCommune": "STE GEMME MARTAILLAC" + "codePostal": "01390", + "codeCommune": "01318", + "libelleAcheminement": "RANCE", + "nomCommune": "RANCE" }, { - "codePostal": "47120", - "codeCommune": "47245", - "libelleAcheminement": "ST GERAUD", - "nomCommune": "ST GERAUD" + "codePostal": "01800", + "codeCommune": "01325", + "libelleAcheminement": "RIGNIEUX LE FRANC", + "nomCommune": "RIGNIEUX LE FRANC" }, { - "codePostal": "47160", - "codeCommune": "47251", - "libelleAcheminement": "ST LEON", - "nomCommune": "ST LEON" + "codePostal": "01190", + "codeCommune": "01337", + "libelleAcheminement": "ST BENIGNE", + "nomCommune": "ST BENIGNE" }, { - "codePostal": "47210", - "codeCommune": "47256", - "libelleAcheminement": "ST MARTIN DE VILLEREAL", - "nomCommune": "ST MARTIN DE VILLEREAL" + "codePostal": "01380", + "codeCommune": "01343", + "libelleAcheminement": "ST CYR SUR MENTHON", + "nomCommune": "ST CYR SUR MENTHON" }, { - "codePostal": "47800", - "codeCommune": "47264", - "libelleAcheminement": "ST PARDOUX ISAAC", - "nomCommune": "ST PARDOUX ISAAC" + "codePostal": "01140", + "codeCommune": "01348", + "libelleAcheminement": "ST DIDIER SUR CHALARONNE", + "nomCommune": "ST DIDIER SUR CHALARONNE" }, { - "codePostal": "47330", - "codeCommune": "47272", - "libelleAcheminement": "ST QUENTIN DU DROPT", - "nomCommune": "ST QUENTIN DU DROPT" + "codePostal": "01400", + "codeCommune": "01356", + "libelleAcheminement": "ST GEORGES SUR RENON", + "nomCommune": "ST GEORGES SUR RENON" }, { - "codePostal": "47360", - "codeCommune": "47276", - "libelleAcheminement": "ST SARDOS", - "nomCommune": "ST SARDOS" + "codePostal": "01560", + "codeCommune": "01367", + "libelleAcheminement": "ST JULIEN SUR REYSSOUZE", + "nomCommune": "ST JULIEN SUR REYSSOUZE" }, { - "codePostal": "47220", - "codeCommune": "47279", - "libelleAcheminement": "ST SIXTE", - "nomCommune": "ST SIXTE" + "codePostal": "01250", + "codeCommune": "01369", + "libelleAcheminement": "ST JUST", + "nomCommune": "ST JUST" }, { - "codePostal": "47250", - "codeCommune": "47285", - "libelleAcheminement": "SAMAZAN", - "nomCommune": "SAMAZAN" + "codePostal": "01230", + "codeCommune": "01384", + "libelleAcheminement": "ST RAMBERT EN BUGEY", + "nomCommune": "ST RAMBERT EN BUGEY" }, { - "codePostal": "47150", - "codeCommune": "47291", - "libelleAcheminement": "LA SAUVETAT SUR LEDE", - "nomCommune": "LA SAUVETAT SUR LEDE" + "codePostal": "01340", + "codeCommune": "01387", + "libelleAcheminement": "ST SULPICE", + "nomCommune": "ST SULPICE" }, { - "codePostal": "47500", - "codeCommune": "47292", - "libelleAcheminement": "SAUVETERRE LA LEMANCE", - "nomCommune": "SAUVETERRE LA LEMANCE" + "codePostal": "01270", + "codeCommune": "01391", + "libelleAcheminement": "SALAVRE", + "nomCommune": "SALAVRE" }, { - "codePostal": "47410", - "codeCommune": "47299", - "libelleAcheminement": "SERIGNAC PEBOUDOU", - "nomCommune": "SERIGNAC PEBOUDOU" + "codePostal": "01150", + "codeCommune": "01396", + "libelleAcheminement": "SAULT BRENAZ", + "nomCommune": "SAULT BRENAZ" }, { - "codePostal": "47170", - "codeCommune": "47302", - "libelleAcheminement": "SOS", - "nomCommune": "SOS" + "codePostal": "01480", + "codeCommune": "01398", + "libelleAcheminement": "SAVIGNEUX", + "nomCommune": "SAVIGNEUX" }, { - "codePostal": "47200", - "codeCommune": "47304", - "libelleAcheminement": "TAILLEBOURG", - "nomCommune": "TAILLEBOURG" + "codePostal": "01400", + "codeCommune": "01412", + "libelleAcheminement": "SULIGNAT", + "nomCommune": "SULIGNAT" }, { - "codePostal": "47370", - "codeCommune": "47307", - "libelleAcheminement": "THEZAC", - "nomCommune": "THEZAC" + "codePostal": "01250", + "codeCommune": "01422", + "libelleAcheminement": "TOSSIAT", + "nomCommune": "TOSSIAT" }, { - "codePostal": "47370", - "codeCommune": "47312", - "libelleAcheminement": "TOURNON D AGENAIS", - "nomCommune": "TOURNON D AGENAIS" + "codePostal": "01370", + "codeCommune": "01426", + "libelleAcheminement": "VAL REVERMONT", + "nomCommune": "VAL REVERMONT" }, { - "codePostal": "47230", - "codeCommune": "47327", - "libelleAcheminement": "XAINTRAILLES", - "nomCommune": "XAINTRAILLES" + "codePostal": "01600", + "codeCommune": "01427", + "libelleAcheminement": "TREVOUX", + "nomCommune": "TREVOUX" }, { - "codePostal": "48200", - "codeCommune": "48002", - "libelleAcheminement": "ALBARET STE MARIE", - "nomCommune": "ALBARET STE MARIE" + "codePostal": "01140", + "codeCommune": "01428", + "libelleAcheminement": "VALEINS", + "nomCommune": "VALEINS" }, { - "codePostal": "48130", - "codeCommune": "48009", - "libelleAcheminement": "PEYRE EN AUBRAC", - "nomCommune": "PEYRE EN AUBRAC" + "codePostal": "01160", + "codeCommune": "01430", + "libelleAcheminement": "VARAMBON", + "nomCommune": "VARAMBON" }, { - "codePostal": "48130", - "codeCommune": "48009", - "libelleAcheminement": "PEYRE EN AUBRAC", - "nomCommune": "PEYRE EN AUBRAC" + "codePostal": "01150", + "codeCommune": "01431", + "libelleAcheminement": "VAUX EN BUGEY", + "nomCommune": "VAUX EN BUGEY" }, { - "codePostal": "48130", - "codeCommune": "48009", - "libelleAcheminement": "PEYRE EN AUBRAC", - "nomCommune": "PEYRE EN AUBRAC" + "codePostal": "01330", + "codeCommune": "01434", + "libelleAcheminement": "VERSAILLEUX", + "nomCommune": "VERSAILLEUX" }, { - "codePostal": "48600", - "codeCommune": "48010", - "libelleAcheminement": "AUROUX", - "nomCommune": "AUROUX" + "codePostal": "01330", + "codeCommune": "01443", + "libelleAcheminement": "VILLARS LES DOMBES", + "nomCommune": "VILLARS LES DOMBES" }, { - "codePostal": "48200", - "codeCommune": "48012", - "libelleAcheminement": "LES MONTS VERTS", - "nomCommune": "LES MONTS VERTS" + "codePostal": "01270", + "codeCommune": "01445", + "libelleAcheminement": "VILLEMOTIER", + "nomCommune": "VILLEMOTIER" }, { - "codePostal": "48000", - "codeCommune": "48016", - "libelleAcheminement": "BALSIEGES", - "nomCommune": "BALSIEGES" + "codePostal": "01320", + "codeCommune": "01449", + "libelleAcheminement": "VILLETTE SUR AIN", + "nomCommune": "VILLETTE SUR AIN" }, { - "codePostal": "48500", - "codeCommune": "48017", - "libelleAcheminement": "BANASSAC CANILHAC", - "nomCommune": "BANASSAC CANILHAC" + "codePostal": "01440", + "codeCommune": "01451", + "libelleAcheminement": "VIRIAT", + "nomCommune": "VIRIAT" }, { - "codePostal": "48500", - "codeCommune": "48017", - "libelleAcheminement": "BANASSAC CANILHAC", - "nomCommune": "BANASSAC CANILHAC" + "codePostal": "02340", + "codeCommune": "02004", + "libelleAcheminement": "AGNICOURT ET SECHELLES", + "nomCommune": "AGNICOURT ET SECHELLES" }, { - "codePostal": "48190", - "codeCommune": "48027", - "libelleAcheminement": "MONT LOZERE ET GOULET", - "nomCommune": "MONT LOZERE ET GOULET" + "codePostal": "01500", + "codeCommune": "01004", + "libelleAcheminement": "AMBERIEU EN BUGEY", + "nomCommune": "AMBERIEU EN BUGEY" }, { - "codePostal": "48000", - "codeCommune": "48029", - "libelleAcheminement": "LE BORN", - "nomCommune": "LE BORN" + "codePostal": "02370", + "codeCommune": "02008", + "libelleAcheminement": "AIZY JOUY", + "nomCommune": "AIZY JOUY" }, { - "codePostal": "48100", - "codeCommune": "48032", - "libelleAcheminement": "LE BUISSON", - "nomCommune": "LE BUISSON" + "codePostal": "01380", + "codeCommune": "01025", + "libelleAcheminement": "BAGE DOMMARTIN", + "nomCommune": "BAGE DOMMARTIN" }, { - "codePostal": "48500", - "codeCommune": "48034", - "libelleAcheminement": "LA CANOURGUE", - "nomCommune": "LA CANOURGUE" + "codePostal": "02290", + "codeCommune": "02011", + "libelleAcheminement": "AMBLENY", + "nomCommune": "AMBLENY" }, { - "codePostal": "48230", - "codeCommune": "48056", - "libelleAcheminement": "ESCLANEDES", - "nomCommune": "ESCLANEDES" + "codePostal": "01270", + "codeCommune": "01029", + "libelleAcheminement": "BEAUPONT", + "nomCommune": "BEAUPONT" }, { - "codePostal": "48200", - "codeCommune": "48059", - "libelleAcheminement": "LA FAGE ST JULIEN", - "nomCommune": "LA FAGE ST JULIEN" + "codePostal": "02190", + "codeCommune": "02013", + "libelleAcheminement": "AMIFONTAINE", + "nomCommune": "AMIFONTAINE" }, { - "codePostal": "48700", - "codeCommune": "48063", - "libelleAcheminement": "FONTANS", - "nomCommune": "FONTANS" + "codePostal": "01200", + "codeCommune": "01033", + "libelleAcheminement": "VALSERHONE", + "nomCommune": "VALSERHONE" }, { - "codePostal": "48310", - "codeCommune": "48064", - "libelleAcheminement": "FOURNELS", - "nomCommune": "FOURNELS" + "codePostal": "02320", + "codeCommune": "02018", + "libelleAcheminement": "ANIZY LE GRAND", + "nomCommune": "ANIZY LE GRAND" }, { - "codePostal": "48400", - "codeCommune": "48065", - "libelleAcheminement": "FRAISSINET DE FOURQUES", - "nomCommune": "FRAISSINET DE FOURQUES" + "codePostal": "01200", + "codeCommune": "01033", + "libelleAcheminement": "VALSERHONE", + "nomCommune": "VALSERHONE" }, { - "codePostal": "48110", - "codeCommune": "48067", - "libelleAcheminement": "GABRIAC", - "nomCommune": "GABRIAC" + "codePostal": "02130", + "codeCommune": "02022", + "libelleAcheminement": "ARCY STE RESTITUE", + "nomCommune": "ARCY STE RESTITUE" }, { - "codePostal": "48260", - "codeCommune": "48071", - "libelleAcheminement": "GRANDVALS", - "nomCommune": "GRANDVALS" + "codePostal": "01200", + "codeCommune": "01033", + "libelleAcheminement": "VALSERHONE", + "nomCommune": "VALSERHONE" }, { - "codePostal": "48170", - "codeCommune": "48082", - "libelleAcheminement": "LAUBERT", - "nomCommune": "LAUBERT" + "codePostal": "02000", + "codeCommune": "02037", + "libelleAcheminement": "AULNOIS SOUS LAON", + "nomCommune": "AULNOIS SOUS LAON" }, { - "codePostal": "48700", - "codeCommune": "48083", - "libelleAcheminement": "LES LAUBIES", - "nomCommune": "LES LAUBIES" + "codePostal": "01700", + "codeCommune": "01043", + "libelleAcheminement": "BEYNOST", + "nomCommune": "BEYNOST" }, { - "codePostal": "48500", - "codeCommune": "48085", - "libelleAcheminement": "LAVAL DU TARN", - "nomCommune": "LAVAL DU TARN" + "codePostal": "02250", + "codeCommune": "02039", + "libelleAcheminement": "AUTREMENCOURT", + "nomCommune": "AUTREMENCOURT" }, { - "codePostal": "48210", - "codeCommune": "48088", - "libelleAcheminement": "LA MALENE", - "nomCommune": "LA MALENE" + "codePostal": "01330", + "codeCommune": "01045", + "libelleAcheminement": "BIRIEUX", + "nomCommune": "BIRIEUX" }, { - "codePostal": "48140", - "codeCommune": "48089", - "libelleAcheminement": "LE MALZIEU FORAIN", - "nomCommune": "LE MALZIEU FORAIN" + "codePostal": "02580", + "codeCommune": "02040", + "libelleAcheminement": "AUTREPPES", + "nomCommune": "AUTREPPES" }, { - "codePostal": "48140", - "codeCommune": "48090", - "libelleAcheminement": "LE MALZIEU VILLE", - "nomCommune": "LE MALZIEU VILLE" + "codePostal": "01000", + "codeCommune": "01053", + "libelleAcheminement": "BOURG EN BRESSE", + "nomCommune": "BOURG EN BRESSE" }, { - "codePostal": "48260", - "codeCommune": "48091", - "libelleAcheminement": "MARCHASTEL", - "nomCommune": "MARCHASTEL" + "codePostal": "02140", + "codeCommune": "02044", + "libelleAcheminement": "BANCIGNY", + "nomCommune": "BANCIGNY" }, { - "codePostal": "48100", - "codeCommune": "48092", - "libelleAcheminement": "MARVEJOLS", - "nomCommune": "MARVEJOLS" + "codePostal": "01640", + "codeCommune": "01056", + "libelleAcheminement": "BOYEUX ST JEROME", + "nomCommune": "BOYEUX ST JEROME" }, { - "codePostal": "48110", - "codeCommune": "48098", - "libelleAcheminement": "MOLEZON", - "nomCommune": "MOLEZON" + "codePostal": "02700", + "codeCommune": "02049", + "libelleAcheminement": "BARISIS AUX BOIS", + "nomCommune": "BARISIS AUX BOIS" }, { - "codePostal": "48170", - "codeCommune": "48100", - "libelleAcheminement": "MONTBEL", - "nomCommune": "MONTBEL" + "codePostal": "01170", + "codeCommune": "01071", + "libelleAcheminement": "CESSY", + "nomCommune": "CESSY" }, { - "codePostal": "48260", - "codeCommune": "48104", - "libelleAcheminement": "NASBINALS", - "nomCommune": "NASBINALS" + "codePostal": "02850", + "codeCommune": "02051", + "libelleAcheminement": "BARZY SUR MARNE", + "nomCommune": "BARZY SUR MARNE" }, { - "codePostal": "48300", - "codeCommune": "48105", - "libelleAcheminement": "NAUSSAC FONTANES", - "nomCommune": "NAUSSAC FONTANES" + "codePostal": "01250", + "codeCommune": "01072", + "libelleAcheminement": "CEYZERIAT", + "nomCommune": "CEYZERIAT" }, { - "codePostal": "48220", - "codeCommune": "48116", - "libelleAcheminement": "PONT DE MONTVERT SUD MONT LOZERE", - "nomCommune": "PONT DE MONTVERT SUD MONT LOZERE" + "codePostal": "02330", + "codeCommune": "02053", + "libelleAcheminement": "VALLEES EN CHAMPAGNE", + "nomCommune": "VALLEES EN CHAMPAGNE" }, { - "codePostal": "48800", - "codeCommune": "48119", - "libelleAcheminement": "PREVENCHERES", - "nomCommune": "PREVENCHERES" + "codePostal": "01350", + "codeCommune": "01073", + "libelleAcheminement": "CEYZERIEU", + "nomCommune": "CEYZERIEU" }, { - "codePostal": "48100", - "codeCommune": "48126", - "libelleAcheminement": "LACHAMP RIBENNES", - "nomCommune": "LACHAMP RIBENNES" + "codePostal": "02220", + "codeCommune": "02054", + "libelleAcheminement": "BAZOCHES ET ST THIBAUT", + "nomCommune": "BAZOCHES ET ST THIBAUT" }, { - "codePostal": "48700", - "codeCommune": "48127", - "libelleAcheminement": "MONTS DE RANDON", - "nomCommune": "MONTS DE RANDON" + "codePostal": "01260", + "codeCommune": "01079", + "libelleAcheminement": "CHAMPAGNE EN VALROMEY", + "nomCommune": "CHAMPAGNE EN VALROMEY" }, { - "codePostal": "48700", - "codeCommune": "48127", - "libelleAcheminement": "MONTS DE RANDON", - "nomCommune": "MONTS DE RANDON" + "codePostal": "02160", + "codeCommune": "02058", + "libelleAcheminement": "BEAURIEUX", + "nomCommune": "BEAURIEUX" }, { - "codePostal": "48150", - "codeCommune": "48131", - "libelleAcheminement": "LE ROZIER", - "nomCommune": "LE ROZIER" + "codePostal": "01260", + "codeCommune": "01079", + "libelleAcheminement": "CHAMPAGNE EN VALROMEY", + "nomCommune": "CHAMPAGNE EN VALROMEY" }, { - "codePostal": "48800", - "codeCommune": "48135", - "libelleAcheminement": "ST ANDRE CAPCEZE", - "nomCommune": "ST ANDRE CAPCEZE" + "codePostal": "02200", + "codeCommune": "02064", + "libelleAcheminement": "BELLEU", + "nomCommune": "BELLEU" }, { - "codePostal": "48210", - "codeCommune": "48146", - "libelleAcheminement": "GORGES DU TARN CAUSSES", - "nomCommune": "GORGES DU TARN CAUSSES" + "codePostal": "01800", + "codeCommune": "01088", + "libelleAcheminement": "CHARNOZ SUR AIN", + "nomCommune": "CHARNOZ SUR AIN" }, { - "codePostal": "48320", - "codeCommune": "48146", - "libelleAcheminement": "GORGES DU TARN CAUSSES", - "nomCommune": "GORGES DU TARN CAUSSES" + "codePostal": "02250", + "codeCommune": "02068", + "libelleAcheminement": "BERLANCOURT", + "nomCommune": "BERLANCOURT" }, { - "codePostal": "48100", - "codeCommune": "48165", - "libelleAcheminement": "ST LAURENT DE MURET", - "nomCommune": "ST LAURENT DE MURET" + "codePostal": "01400", + "codeCommune": "01093", + "libelleAcheminement": "CHATILLON SUR CHALARONNE", + "nomCommune": "CHATILLON SUR CHALARONNE" }, { - "codePostal": "48400", - "codeCommune": "48166", - "libelleAcheminement": "CANS ET CEVENNES", - "nomCommune": "CANS ET CEVENNES" + "codePostal": "02820", + "codeCommune": "02072", + "libelleAcheminement": "BERRIEUX", + "nomCommune": "BERRIEUX" }, { - "codePostal": "48230", - "codeCommune": "48185", - "libelleAcheminement": "LES SALELLES", - "nomCommune": "LES SALELLES" + "codePostal": "01660", + "codeCommune": "01096", + "libelleAcheminement": "CHAVEYRIAT", + "nomCommune": "CHAVEYRIAT" }, { - "codePostal": "49700", - "codeCommune": "49003", - "libelleAcheminement": "TUFFALUN", - "nomCommune": "TUFFALUN" + "codePostal": "02500", + "codeCommune": "02079", + "libelleAcheminement": "BESMONT", + "nomCommune": "BESMONT" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "01510", + "codeCommune": "01100", + "libelleAcheminement": "CHEIGNIEU LA BALME", + "nomCommune": "CHEIGNIEU LA BALME" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "02310", + "codeCommune": "02084", + "libelleAcheminement": "BEZU LE GUERY", + "nomCommune": "BEZU LE GUERY" }, { - "codePostal": "49600", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "01200", + "codeCommune": "01104", + "libelleAcheminement": "CHEZERY FORENS", + "nomCommune": "CHEZERY FORENS" }, { - "codePostal": "49170", - "codeCommune": "49028", - "libelleAcheminement": "BEHUARD", - "nomCommune": "BEHUARD" + "codePostal": "02200", + "codeCommune": "02089", + "libelleAcheminement": "BILLY SUR AISNE", + "nomCommune": "BILLY SUR AISNE" }, { - "codePostal": "49320", - "codeCommune": "49029", - "libelleAcheminement": "BLAISON ST SULPICE", - "nomCommune": "BLAISON ST SULPICE" + "codePostal": "01390", + "codeCommune": "01105", + "libelleAcheminement": "CIVRIEUX", + "nomCommune": "CIVRIEUX" }, { - "codePostal": "49080", - "codeCommune": "49035", - "libelleAcheminement": "BOUCHEMAINE", - "nomCommune": "BOUCHEMAINE" + "codePostal": "02400", + "codeCommune": "02094", + "libelleAcheminement": "BLESMES", + "nomCommune": "BLESMES" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "01250", + "codeCommune": "01106", + "libelleAcheminement": "CIZE", + "nomCommune": "CIZE" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "02400", + "codeCommune": "02099", + "libelleAcheminement": "BONNESVALYN", + "nomCommune": "BONNESVALYN" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "01230", + "codeCommune": "01107", + "libelleAcheminement": "CLEYZIEU", + "nomCommune": "CLEYZIEU" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "02250", + "codeCommune": "02101", + "libelleAcheminement": "BOSMONT SUR SERRE", + "nomCommune": "BOSMONT SUR SERRE" }, { - "codePostal": "49440", - "codeCommune": "49054", - "libelleAcheminement": "CANDE", - "nomCommune": "CANDE" + "codePostal": "01270", + "codeCommune": "01108", + "libelleAcheminement": "COLIGNY", + "nomCommune": "COLIGNY" }, { - "codePostal": "49220", - "codeCommune": "49067", - "libelleAcheminement": "CHENILLE CHAMPTEUSSE", - "nomCommune": "CHENILLE CHAMPTEUSSE" + "codePostal": "02160", + "codeCommune": "02104", + "libelleAcheminement": "BOUFFIGNEREUX", + "nomCommune": "BOUFFIGNEREUX" }, { - "codePostal": "49270", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "01200", + "codeCommune": "01114", + "libelleAcheminement": "CONFORT", + "nomCommune": "CONFORT" }, { - "codePostal": "49270", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "02300", + "codeCommune": "02107", + "libelleAcheminement": "BOURGUIGNON SOUS COUCY", + "nomCommune": "BOURGUIGNON SOUS COUCY" }, { - "codePostal": "49530", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "01310", + "codeCommune": "01115", + "libelleAcheminement": "CONFRANCON", + "nomCommune": "CONFRANCON" }, { - "codePostal": "49330", - "codeCommune": "49080", - "libelleAcheminement": "LES HAUTS D ANJOU", - "nomCommune": "LES HAUTS D ANJOU" + "codePostal": "02320", + "codeCommune": "02111", + "libelleAcheminement": "BRANCOURT EN LAONNOIS", + "nomCommune": "BRANCOURT EN LAONNOIS" }, { - "codePostal": "49290", - "codeCommune": "49082", - "libelleAcheminement": "CHAUDEFONDS SUR LAYON", - "nomCommune": "CHAUDEFONDS SUR LAYON" + "codePostal": "01420", + "codeCommune": "01118", + "libelleAcheminement": "CORBONOD", + "nomCommune": "CORBONOD" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "02000", + "codeCommune": "02115", + "libelleAcheminement": "BRAYE EN LAONNOIS", + "nomCommune": "BRAYE EN LAONNOIS" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "01110", + "codeCommune": "01121", + "libelleAcheminement": "CORLIER", + "nomCommune": "CORLIER" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "02220", + "codeCommune": "02120", + "libelleAcheminement": "BRENELLE", + "nomCommune": "BRENELLE" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "01370", + "codeCommune": "01127", + "libelleAcheminement": "COURMANGOUX", + "nomCommune": "COURMANGOUX" }, { - "codePostal": "49300", - "codeCommune": "49099", - "libelleAcheminement": "CHOLET", - "nomCommune": "CHOLET" + "codePostal": "02870", + "codeCommune": "02122", + "libelleAcheminement": "BRIE", + "nomCommune": "BRIE" }, { - "codePostal": "49140", - "codeCommune": "49107", - "libelleAcheminement": "CORNILLE LES CAVES", - "nomCommune": "CORNILLE LES CAVES" + "codePostal": "01170", + "codeCommune": "01135", + "libelleAcheminement": "CROZET", + "nomCommune": "CROZET" }, { - "codePostal": "49390", - "codeCommune": "49114", - "libelleAcheminement": "COURLEON", - "nomCommune": "COURLEON" + "codePostal": "02860", + "codeCommune": "02128", + "libelleAcheminement": "BRUYERES ET MONTBERAULT", + "nomCommune": "BRUYERES ET MONTBERAULT" }, { - "codePostal": "49700", - "codeCommune": "49125", - "libelleAcheminement": "DOUE EN ANJOU", - "nomCommune": "DOUE EN ANJOU" + "codePostal": "01290", + "codeCommune": "01136", + "libelleAcheminement": "CRUZILLES LES MEPILLAT", + "nomCommune": "CRUZILLES LES MEPILLAT" }, { - "codePostal": "49700", - "codeCommune": "49125", - "libelleAcheminement": "DOUE EN ANJOU", - "nomCommune": "DOUE EN ANJOU" + "codePostal": "02300", + "codeCommune": "02140", + "libelleAcheminement": "CAMELIN", + "nomCommune": "CAMELIN" }, { - "codePostal": "49000", - "codeCommune": "49129", - "libelleAcheminement": "ECOUFLANT", - "nomCommune": "ECOUFLANT" + "codePostal": "01090", + "codeCommune": "01165", + "libelleAcheminement": "FRANCHELEINS", + "nomCommune": "FRANCHELEINS" }, { - "codePostal": "49250", - "codeCommune": "49138", - "libelleAcheminement": "LES BOIS D ANJOU", - "nomCommune": "LES BOIS D ANJOU" + "codePostal": "02680", + "codeCommune": "02142", + "libelleAcheminement": "CASTRES", + "nomCommune": "CASTRES" }, { - "codePostal": "49610", - "codeCommune": "49167", - "libelleAcheminement": "LES GARENNES SUR LOIRE", - "nomCommune": "LES GARENNES SUR LOIRE" + "codePostal": "01140", + "codeCommune": "01167", + "libelleAcheminement": "GARNERANS", + "nomCommune": "GARNERANS" }, { - "codePostal": "49430", - "codeCommune": "49174", - "libelleAcheminement": "HUILLE LEZIGNE", - "nomCommune": "HUILLE LEZIGNE" + "codePostal": "02000", + "codeCommune": "02155", + "libelleAcheminement": "CHAILLEVOIS", + "nomCommune": "CHAILLEVOIS" }, { - "codePostal": "49430", - "codeCommune": "49174", - "libelleAcheminement": "HUILLE LEZIGNE", - "nomCommune": "HUILLE LEZIGNE" + "codePostal": "01460", + "codeCommune": "01170", + "libelleAcheminement": "BEARD GEOVREISSIAT", + "nomCommune": "BEARD GEOVREISSIAT" }, { - "codePostal": "49220", - "codeCommune": "49176", - "libelleAcheminement": "LE LION D ANGERS", - "nomCommune": "LE LION D ANGERS" + "codePostal": "02370", + "codeCommune": "02167", + "libelleAcheminement": "CHASSEMY", + "nomCommune": "CHASSEMY" }, { - "codePostal": "49700", - "codeCommune": "49182", - "libelleAcheminement": "LOURESSE ROCHEMENIER", - "nomCommune": "LOURESSE ROCHEMENIER" + "codePostal": "01170", + "codeCommune": "01173", + "libelleAcheminement": "GEX", + "nomCommune": "GEX" }, { - "codePostal": "49630", - "codeCommune": "49194", - "libelleAcheminement": "MAZE MILON", - "nomCommune": "MAZE MILON" + "codePostal": "02400", + "codeCommune": "02168", + "libelleAcheminement": "CHATEAU THIERRY", + "nomCommune": "CHATEAU THIERRY" }, { - "codePostal": "49430", - "codeCommune": "49209", - "libelleAcheminement": "MONTIGNE LES RAIRIES", - "nomCommune": "MONTIGNE LES RAIRIES" + "codePostal": "01130", + "codeCommune": "01174", + "libelleAcheminement": "GIRON", + "nomCommune": "GIRON" }, { - "codePostal": "49260", - "codeCommune": "49215", - "libelleAcheminement": "MONTREUIL BELLAY", - "nomCommune": "MONTREUIL BELLAY" + "codePostal": "02270", + "codeCommune": "02169", + "libelleAcheminement": "CHATILLON LES SONS", + "nomCommune": "CHATILLON LES SONS" }, { - "codePostal": "49220", - "codeCommune": "49217", - "libelleAcheminement": "MONTREUIL SUR MAINE", - "nomCommune": "MONTREUIL SUR MAINE" + "codePostal": "01220", + "codeCommune": "01180", + "libelleAcheminement": "GRILLY", + "nomCommune": "GRILLY" }, { - "codePostal": "49110", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "02240", + "codeCommune": "02170", + "libelleAcheminement": "CHATILLON SUR OISE", + "nomCommune": "CHATILLON SUR OISE" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "01090", + "codeCommune": "01183", + "libelleAcheminement": "GUEREINS", + "nomCommune": "GUEREINS" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "02220", + "codeCommune": "02179", + "libelleAcheminement": "CHERY CHARTREUVE", + "nomCommune": "CHERY CHARTREUVE" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "01110", + "codeCommune": "01185", + "libelleAcheminement": "PLATEAU D HAUTEVILLE", + "nomCommune": "PLATEAU D HAUTEVILLE" }, { - "codePostal": "49410", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "02000", + "codeCommune": "02180", + "libelleAcheminement": "CHERY LES POUILLY", + "nomCommune": "CHERY LES POUILLY" }, { - "codePostal": "49170", - "codeCommune": "49247", - "libelleAcheminement": "LA POSSONNIERE", - "nomCommune": "LA POSSONNIERE" + "codePostal": "01640", + "codeCommune": "01199", + "libelleAcheminement": "JUJURIEUX", + "nomCommune": "JUJURIEUX" }, { - "codePostal": "49420", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "02120", + "codeCommune": "02188", + "libelleAcheminement": "CHIGNY", + "nomCommune": "CHIGNY" }, { - "codePostal": "49420", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "01330", + "codeCommune": "01207", + "libelleAcheminement": "LAPEYROUSE", + "nomCommune": "LAPEYROUSE" }, { - "codePostal": "49520", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "02250", + "codeCommune": "02194", + "libelleAcheminement": "CILLY", + "nomCommune": "CILLY" }, { - "codePostal": "49520", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "01360", + "codeCommune": "01224", + "libelleAcheminement": "LOYETTES", + "nomCommune": "LOYETTES" }, { - "codePostal": "49520", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "02340", + "codeCommune": "02200", + "libelleAcheminement": "CLERMONT LES FERMES", + "nomCommune": "CLERMONT LES FERMES" }, { - "codePostal": "49320", - "codeCommune": "49261", - "libelleAcheminement": "GENNES VAL DE LOIRE", - "nomCommune": "GENNES VAL DE LOIRE" + "codePostal": "01430", + "codeCommune": "01228", + "libelleAcheminement": "MAILLAT", + "nomCommune": "MAILLAT" }, { - "codePostal": "49350", - "codeCommune": "49261", - "libelleAcheminement": "GENNES VAL DE LOIRE", - "nomCommune": "GENNES VAL DE LOIRE" + "codePostal": "02360", + "codeCommune": "02204", + "libelleAcheminement": "COINGT", + "nomCommune": "COINGT" }, { - "codePostal": "49350", - "codeCommune": "49261", - "libelleAcheminement": "GENNES VAL DE LOIRE", - "nomCommune": "GENNES VAL DE LOIRE" + "codePostal": "01340", + "codeCommune": "01229", + "libelleAcheminement": "MALAFRETAZ", + "nomCommune": "MALAFRETAZ" }, { - "codePostal": "49130", - "codeCommune": "49288", - "libelleAcheminement": "ST JEAN DE LA CROIX", - "nomCommune": "ST JEAN DE LA CROIX" + "codePostal": "02860", + "codeCommune": "02205", + "libelleAcheminement": "COLLIGIS CRANDELAIN", + "nomCommune": "COLLIGIS CRANDELAIN" }, { - "codePostal": "49450", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "01300", + "codeCommune": "01234", + "libelleAcheminement": "MARIGNIEU", + "nomCommune": "MARIGNIEU" }, { - "codePostal": "49710", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "02600", + "codeCommune": "02216", + "libelleAcheminement": "CORCY", + "nomCommune": "CORCY" }, { - "codePostal": "49140", - "codeCommune": "49307", - "libelleAcheminement": "LOIRE AUTHION", - "nomCommune": "LOIRE AUTHION" + "codePostal": "01600", + "codeCommune": "01238", + "libelleAcheminement": "MASSIEUX", + "nomCommune": "MASSIEUX" }, { - "codePostal": "49310", - "codeCommune": "49310", - "libelleAcheminement": "ST PAUL DU BOIS", - "nomCommune": "ST PAUL DU BOIS" + "codePostal": "02840", + "codeCommune": "02218", + "libelleAcheminement": "COUCY LES EPPES", + "nomCommune": "COUCY LES EPPES" }, { - "codePostal": "49112", - "codeCommune": "49323", - "libelleAcheminement": "VERRIERES EN ANJOU", - "nomCommune": "VERRIERES EN ANJOU" + "codePostal": "01580", + "codeCommune": "01240", + "libelleAcheminement": "MATAFELON GRANGES", + "nomCommune": "MATAFELON GRANGES" }, { - "codePostal": "49400", - "codeCommune": "49328", - "libelleAcheminement": "SAUMUR", - "nomCommune": "SAUMUR" + "codePostal": "02380", + "codeCommune": "02219", + "libelleAcheminement": "COUCY LA VILLE", + "nomCommune": "COUCY LA VILLE" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "01580", + "codeCommune": "01240", + "libelleAcheminement": "MATAFELON GRANGES", + "nomCommune": "MATAFELON GRANGES" }, { - "codePostal": "49520", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "02130", + "codeCommune": "02220", + "libelleAcheminement": "COULONGES COHAN", + "nomCommune": "COULONGES COHAN" }, { - "codePostal": "49280", - "codeCommune": "49332", - "libelleAcheminement": "LA SEGUINIERE", - "nomCommune": "LA SEGUINIERE" + "codePostal": "01250", + "codeCommune": "01245", + "libelleAcheminement": "BOHAS MEYRIAT RIGNAT", + "nomCommune": "BOHAS MEYRIAT RIGNAT" }, { - "codePostal": "49460", - "codeCommune": "49339", - "libelleAcheminement": "SOULAIRE ET BOURG", - "nomCommune": "SOULAIRE ET BOURG" + "codePostal": "02130", + "codeCommune": "02220", + "libelleAcheminement": "COULONGES COHAN", + "nomCommune": "COULONGES COHAN" }, { - "codePostal": "49380", - "codeCommune": "49345", - "libelleAcheminement": "BELLEVIGNE EN LAYON", - "nomCommune": "BELLEVIGNE EN LAYON" + "codePostal": "01250", + "codeCommune": "01245", + "libelleAcheminement": "BOHAS MEYRIAT RIGNAT", + "nomCommune": "BOHAS MEYRIAT RIGNAT" }, { - "codePostal": "49750", - "codeCommune": "49345", - "libelleAcheminement": "BELLEVIGNE EN LAYON", - "nomCommune": "BELLEVIGNE EN LAYON" + "codePostal": "02310", + "codeCommune": "02221", + "libelleAcheminement": "COUPRU", + "nomCommune": "COUPRU" }, { - "codePostal": "49220", - "codeCommune": "49367", - "libelleAcheminement": "ERDRE EN ANJOU", - "nomCommune": "ERDRE EN ANJOU" + "codePostal": "01390", + "codeCommune": "01248", + "libelleAcheminement": "MIONNAY", + "nomCommune": "MIONNAY" }, { - "codePostal": "49220", - "codeCommune": "49367", - "libelleAcheminement": "ERDRE EN ANJOU", - "nomCommune": "ERDRE EN ANJOU" + "codePostal": "02800", + "codeCommune": "02222", + "libelleAcheminement": "COURBES", + "nomCommune": "COURBES" }, { - "codePostal": "49370", - "codeCommune": "49367", - "libelleAcheminement": "ERDRE EN ANJOU", - "nomCommune": "ERDRE EN ANJOU" + "codePostal": "01700", + "codeCommune": "01249", + "libelleAcheminement": "MIRIBEL", + "nomCommune": "MIRIBEL" }, { - "codePostal": "49390", - "codeCommune": "49369", - "libelleAcheminement": "VERNOIL LE FOURRIER", - "nomCommune": "VERNOIL LE FOURRIER" + "codePostal": "02820", + "codeCommune": "02229", + "libelleAcheminement": "COURTRIZY ET FUSSIGNY", + "nomCommune": "COURTRIZY ET FUSSIGNY" }, { - "codePostal": "49400", - "codeCommune": "49370", - "libelleAcheminement": "VERRIE", - "nomCommune": "VERRIE" + "codePostal": "01700", + "codeCommune": "01249", + "libelleAcheminement": "MIRIBEL", + "nomCommune": "MIRIBEL" }, { - "codePostal": "49560", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "02270", + "codeCommune": "02231", + "libelleAcheminement": "COUVRON ET AUMENCOURT", + "nomCommune": "COUVRON ET AUMENCOURT" }, { - "codePostal": "50300", - "codeCommune": "50025", - "libelleAcheminement": "AVRANCHES", - "nomCommune": "AVRANCHES" + "codePostal": "01200", + "codeCommune": "01257", + "libelleAcheminement": "MONTANGES", + "nomCommune": "MONTANGES" }, { - "codePostal": "50310", - "codeCommune": "50026", - "libelleAcheminement": "AZEVILLE", - "nomCommune": "AZEVILLE" + "codePostal": "02360", + "codeCommune": "02251", + "libelleAcheminement": "CUIRY LES IVIERS", + "nomCommune": "CUIRY LES IVIERS" }, { - "codePostal": "50720", - "codeCommune": "50029", - "libelleAcheminement": "BARENTON", - "nomCommune": "BARENTON" + "codePostal": "01090", + "codeCommune": "01258", + "libelleAcheminement": "MONTCEAUX", + "nomCommune": "MONTCEAUX" }, { - "codePostal": "50270", - "codeCommune": "50033", - "libelleAcheminement": "BAUBIGNY", - "nomCommune": "BAUBIGNY" + "codePostal": "02700", + "codeCommune": "02262", + "libelleAcheminement": "DEUILLET", + "nomCommune": "DEUILLET" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "01390", + "codeCommune": "01261", + "libelleAcheminement": "MONTHIEUX", + "nomCommune": "MONTHIEUX" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "02500", + "codeCommune": "02275", + "libelleAcheminement": "EFFRY", + "nomCommune": "EFFRY" }, { - "codePostal": "50810", - "codeCommune": "50046", - "libelleAcheminement": "BERIGNY", - "nomCommune": "BERIGNY" + "codePostal": "01120", + "codeCommune": "01262", + "libelleAcheminement": "MONTLUEL", + "nomCommune": "MONTLUEL" }, { - "codePostal": "50800", - "codeCommune": "50060", - "libelleAcheminement": "LA BLOUTIERE", - "nomCommune": "LA BLOUTIERE" + "codePostal": "02260", + "codeCommune": "02276", + "libelleAcheminement": "ENGLANCOURT", + "nomCommune": "ENGLANCOURT" }, { - "codePostal": "50110", - "codeCommune": "50077", - "libelleAcheminement": "BRETTEVILLE", - "nomCommune": "BRETTEVILLE" + "codePostal": "01310", + "codeCommune": "01264", + "libelleAcheminement": "MONTRACOL", + "nomCommune": "MONTRACOL" }, { - "codePostal": "50430", - "codeCommune": "50078", - "libelleAcheminement": "BRETTEVILLE SUR AY", - "nomCommune": "BRETTEVILLE SUR AY" + "codePostal": "02290", + "codeCommune": "02277", + "libelleAcheminement": "EPAGNY", + "nomCommune": "EPAGNY" }, { - "codePostal": "50340", - "codeCommune": "50083", - "libelleAcheminement": "BRICQUEBOSQ", - "nomCommune": "BRICQUEBOSQ" + "codePostal": "01400", + "codeCommune": "01272", + "libelleAcheminement": "NEUVILLE LES DAMES", + "nomCommune": "NEUVILLE LES DAMES" }, { - "codePostal": "50330", - "codeCommune": "50086", - "libelleAcheminement": "BRILLEVAST", - "nomCommune": "BRILLEVAST" + "codePostal": "02500", + "codeCommune": "02278", + "libelleAcheminement": "EPARCY", + "nomCommune": "EPARCY" }, { - "codePostal": "50640", - "codeCommune": "50090", - "libelleAcheminement": "BUAIS LES MONTS", - "nomCommune": "BUAIS LES MONTS" + "codePostal": "01120", + "codeCommune": "01276", + "libelleAcheminement": "NIEVROZ", + "nomCommune": "NIEVROZ" }, { - "codePostal": "50330", - "codeCommune": "50096", - "libelleAcheminement": "CANTELOUP", - "nomCommune": "CANTELOUP" + "codePostal": "02260", + "codeCommune": "02284", + "libelleAcheminement": "ERLOY", + "nomCommune": "ERLOY" }, { - "codePostal": "50480", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "01230", + "codeCommune": "01277", + "libelleAcheminement": "NIVOLLET MONTGRIFFON", + "nomCommune": "NIVOLLET MONTGRIFFON" }, { - "codePostal": "50220", - "codeCommune": "50108", - "libelleAcheminement": "CEAUX", - "nomCommune": "CEAUX" + "codePostal": "02690", + "codeCommune": "02287", + "libelleAcheminement": "ESSIGNY LE GRAND", + "nomCommune": "ESSIGNY LE GRAND" }, { - "codePostal": "50680", - "codeCommune": "50110", - "libelleAcheminement": "CERISY LA FORET", - "nomCommune": "CERISY LA FORET" + "codePostal": "01190", + "codeCommune": "01284", + "libelleAcheminement": "OZAN", + "nomCommune": "OZAN" }, { - "codePostal": "50130", - "codeCommune": "50129", - "libelleAcheminement": "CHERBOURG EN COTENTIN", - "nomCommune": "CHERBOURG EN COTENTIN" + "codePostal": "02570", + "codeCommune": "02289", + "libelleAcheminement": "ESSISES", + "nomCommune": "ESSISES" }, { - "codePostal": "50890", - "codeCommune": "50139", - "libelleAcheminement": "CONDE SUR VIRE", - "nomCommune": "CONDE SUR VIRE" + "codePostal": "01300", + "codeCommune": "01286", + "libelleAcheminement": "PARVES ET NATTAGES", + "nomCommune": "PARVES ET NATTAGES" }, { - "codePostal": "50330", - "codeCommune": "50142", - "libelleAcheminement": "VICQ SUR MER", - "nomCommune": "VICQ SUR MER" + "codePostal": "02110", + "codeCommune": "02293", + "libelleAcheminement": "ETAVES ET BOCQUIAUX", + "nomCommune": "ETAVES ET BOCQUIAUX" }, { - "codePostal": "50330", - "codeCommune": "50142", - "libelleAcheminement": "VICQ SUR MER", - "nomCommune": "VICQ SUR MER" + "codePostal": "01540", + "codeCommune": "01291", + "libelleAcheminement": "PERREX", + "nomCommune": "PERREX" }, { - "codePostal": "50290", - "codeCommune": "50143", - "libelleAcheminement": "COUDEVILLE SUR MER", - "nomCommune": "COUDEVILLE SUR MER" + "codePostal": "02510", + "codeCommune": "02298", + "libelleAcheminement": "ETREUX", + "nomCommune": "ETREUX" }, { - "codePostal": "50670", - "codeCommune": "50144", - "libelleAcheminement": "COULOUVRAY BOISBENATRE", - "nomCommune": "COULOUVRAY BOISBENATRE" + "codePostal": "01190", + "codeCommune": "01305", + "libelleAcheminement": "PONT DE VAUX", + "nomCommune": "PONT DE VAUX" }, { - "codePostal": "50200", - "codeCommune": "50145", - "libelleAcheminement": "COURCY", - "nomCommune": "COURCY" + "codePostal": "02000", + "codeCommune": "02311", + "libelleAcheminement": "FILAIN", + "nomCommune": "FILAIN" }, { - "codePostal": "50690", - "codeCommune": "50149", - "libelleAcheminement": "COUVILLE", - "nomCommune": "COUVILLE" + "codePostal": "01550", + "codeCommune": "01308", + "libelleAcheminement": "POUGNY", + "nomCommune": "POUGNY" }, { - "codePostal": "50220", - "codeCommune": "50155", - "libelleAcheminement": "CROLLON", - "nomCommune": "CROLLON" + "codePostal": "02140", + "codeCommune": "02321", + "libelleAcheminement": "FONTAINE LES VERVINS", + "nomCommune": "FONTAINE LES VERVINS" }, { - "codePostal": "50840", - "codeCommune": "50178", - "libelleAcheminement": "FERMANVILLE", - "nomCommune": "FERMANVILLE" + "codePostal": "01280", + "codeCommune": "01313", + "libelleAcheminement": "PREVESSIN MOENS", + "nomCommune": "PREVESSIN MOENS" }, { - "codePostal": "50190", - "codeCommune": "50182", - "libelleAcheminement": "LA FEUILLIE", - "nomCommune": "LA FEUILLIE" + "codePostal": "02590", + "codeCommune": "02327", + "libelleAcheminement": "FORESTE", + "nomCommune": "FORESTE" }, { - "codePostal": "50340", - "codeCommune": "50184", - "libelleAcheminement": "FLAMANVILLE", - "nomCommune": "FLAMANVILLE" + "codePostal": "01990", + "codeCommune": "01319", + "libelleAcheminement": "RELEVANT", + "nomCommune": "RELEVANT" }, { - "codePostal": "50420", - "codeCommune": "50192", - "libelleAcheminement": "FOURNEAUX", - "nomCommune": "FOURNEAUX" + "codePostal": "02870", + "codeCommune": "02329", + "libelleAcheminement": "FOURDRAIN", + "nomCommune": "FOURDRAIN" }, { - "codePostal": "50850", - "codeCommune": "50193", - "libelleAcheminement": "LE FRESNE PORET", - "nomCommune": "LE FRESNE PORET" + "codePostal": "01600", + "codeCommune": "01322", + "libelleAcheminement": "REYRIEUX", + "nomCommune": "REYRIEUX" }, { - "codePostal": "50760", - "codeCommune": "50196", - "libelleAcheminement": "GATTEVILLE LE PHARE", - "nomCommune": "GATTEVILLE LE PHARE" + "codePostal": "02380", + "codeCommune": "02333", + "libelleAcheminement": "FRESNES SOUS COUCY", + "nomCommune": "FRESNES SOUS COUCY" }, { - "codePostal": "50450", - "codeCommune": "50197", - "libelleAcheminement": "GAVRAY SUR SIENNE", - "nomCommune": "GAVRAY SUR SIENNE" + "codePostal": "01400", + "codeCommune": "01328", + "libelleAcheminement": "ROMANS", + "nomCommune": "ROMANS" }, { - "codePostal": "50850", - "codeCommune": "50200", - "libelleAcheminement": "GER", - "nomCommune": "GER" + "codePostal": "02700", + "codeCommune": "02336", + "libelleAcheminement": "FRIERES FAILLOUEL", + "nomCommune": "FRIERES FAILLOUEL" }, { - "codePostal": "50300", - "codeCommune": "50205", - "libelleAcheminement": "LA GODEFROY", - "nomCommune": "LA GODEFROY" + "codePostal": "01260", + "codeCommune": "01330", + "libelleAcheminement": "RUFFIEU", + "nomCommune": "RUFFIEU" }, { - "codePostal": "50330", - "codeCommune": "50209", - "libelleAcheminement": "GONNEVILLE LE THEIL", - "nomCommune": "GONNEVILLE LE THEIL" + "codePostal": "02590", + "codeCommune": "02343", + "libelleAcheminement": "GERMAINE", + "nomCommune": "GERMAINE" }, { - "codePostal": "50200", - "codeCommune": "50215", - "libelleAcheminement": "GOUVILLE SUR MER", - "nomCommune": "GOUVILLE SUR MER" + "codePostal": "01240", + "codeCommune": "01335", + "libelleAcheminement": "ST ANDRE LE BOUCHOUX", + "nomCommune": "ST ANDRE LE BOUCHOUX" }, { - "codePostal": "50200", - "codeCommune": "50215", - "libelleAcheminement": "GOUVILLE SUR MER", - "nomCommune": "GOUVILLE SUR MER" + "codePostal": "02360", + "codeCommune": "02354", + "libelleAcheminement": "GRANDRIEUX", + "nomCommune": "GRANDRIEUX" }, { - "codePostal": "50560", - "codeCommune": "50215", - "libelleAcheminement": "GOUVILLE SUR MER", - "nomCommune": "GOUVILLE SUR MER" + "codePostal": "01600", + "codeCommune": "01339", + "libelleAcheminement": "ST BERNARD", + "nomCommune": "ST BERNARD" }, { - "codePostal": "50370", - "codeCommune": "50217", - "libelleAcheminement": "LE GRAND CELLAND", - "nomCommune": "LE GRAND CELLAND" + "codePostal": "02210", + "codeCommune": "02356", + "libelleAcheminement": "GRISOLLES", + "nomCommune": "GRISOLLES" }, { - "codePostal": "50400", - "codeCommune": "50218", - "libelleAcheminement": "GRANVILLE", - "nomCommune": "GRANVILLE" + "codePostal": "01800", + "codeCommune": "01349", + "libelleAcheminement": "ST ELOI", + "nomCommune": "ST ELOI" }, { - "codePostal": "50450", - "codeCommune": "50221", - "libelleAcheminement": "GRIMESNIL", - "nomCommune": "GRIMESNIL" + "codePostal": "02190", + "codeCommune": "02360", + "libelleAcheminement": "VILLENEUVE SUR AISNE", + "nomCommune": "VILLENEUVE SUR AISNE" }, { - "codePostal": "50340", - "codeCommune": "50222", - "libelleAcheminement": "GROSVILLE", - "nomCommune": "GROSVILLE" + "codePostal": "01140", + "codeCommune": "01351", + "libelleAcheminement": "ST ETIENNE SUR CHALARONNE", + "nomCommune": "ST ETIENNE SUR CHALARONNE" }, { - "codePostal": "50450", - "codeCommune": "50228", - "libelleAcheminement": "HAMBYE", - "nomCommune": "HAMBYE" + "codePostal": "02190", + "codeCommune": "02360", + "libelleAcheminement": "VILLENEUVE SUR AISNE", + "nomCommune": "VILLENEUVE SUR AISNE" }, { - "codePostal": "68510", - "codeCommune": "68341", - "libelleAcheminement": "UFFHEIM", - "nomCommune": "UFFHEIM" + "codePostal": "01630", + "codeCommune": "01360", + "libelleAcheminement": "ST JEAN DE GONVILLE", + "nomCommune": "ST JEAN DE GONVILLE" }, { - "codePostal": "68190", - "codeCommune": "68343", - "libelleAcheminement": "UNGERSHEIM", - "nomCommune": "UNGERSHEIM" + "codePostal": "02510", + "codeCommune": "02366", + "libelleAcheminement": "HANNAPES", + "nomCommune": "HANNAPES" }, { - "codePostal": "68480", - "codeCommune": "68347", - "libelleAcheminement": "VIEUX FERRETTE", - "nomCommune": "VIEUX FERRETTE" + "codePostal": "01560", + "codeCommune": "01364", + "libelleAcheminement": "ST JEAN SUR REYSSOUZE", + "nomCommune": "ST JEAN SUR REYSSOUZE" }, { - "codePostal": "68230", - "codeCommune": "68354", - "libelleAcheminement": "WALBACH", - "nomCommune": "WALBACH" + "codePostal": "02140", + "codeCommune": "02377", + "libelleAcheminement": "HAUTION", + "nomCommune": "HAUTION" }, { - "codePostal": "68700", - "codeCommune": "68359", - "libelleAcheminement": "WATTWILLER", - "nomCommune": "WATTWILLER" + "codePostal": "01150", + "codeCommune": "01366", + "libelleAcheminement": "STE JULIE", + "nomCommune": "STE JULIE" }, { - "codePostal": "68480", - "codeCommune": "68363", - "libelleAcheminement": "WERENTZHOUSE", - "nomCommune": "WERENTZHOUSE" + "codePostal": "02250", + "codeCommune": "02385", + "libelleAcheminement": "HOUSSET", + "nomCommune": "HOUSSET" }, { - "codePostal": "68320", - "codeCommune": "68367", - "libelleAcheminement": "WIDENSOLEN", - "nomCommune": "WIDENSOLEN" + "codePostal": "01390", + "codeCommune": "01371", + "libelleAcheminement": "ST MARCEL", + "nomCommune": "ST MARCEL" }, { - "codePostal": "68230", - "codeCommune": "68368", - "libelleAcheminement": "WIHR AU VAL", - "nomCommune": "WIHR AU VAL" + "codePostal": "02510", + "codeCommune": "02386", + "libelleAcheminement": "IRON", + "nomCommune": "IRON" }, { - "codePostal": "68124", - "codeCommune": "68374", - "libelleAcheminement": "WINTZENHEIM", - "nomCommune": "WINTZENHEIM" + "codePostal": "01510", + "codeCommune": "01372", + "libelleAcheminement": "ST MARTIN DE BAVEL", + "nomCommune": "ST MARTIN DE BAVEL" }, { - "codePostal": "68310", - "codeCommune": "68375", - "libelleAcheminement": "WITTELSHEIM", - "nomCommune": "WITTELSHEIM" + "codePostal": "02240", + "codeCommune": "02387", + "libelleAcheminement": "ITANCOURT", + "nomCommune": "ITANCOURT" }, { - "codePostal": "68480", - "codeCommune": "68380", - "libelleAcheminement": "WOLSCHWILLER", - "nomCommune": "WOLSCHWILLER" + "codePostal": "01400", + "codeCommune": "01393", + "libelleAcheminement": "SANDRANS", + "nomCommune": "SANDRANS" }, { - "codePostal": "68340", - "codeCommune": "68383", - "libelleAcheminement": "ZELLENBERG", - "nomCommune": "ZELLENBERG" + "codePostal": "02220", + "codeCommune": "02393", + "libelleAcheminement": "JOUAIGNES", + "nomCommune": "JOUAIGNES" }, { - "codePostal": "68720", - "codeCommune": "68384", - "libelleAcheminement": "ZILLISHEIM", - "nomCommune": "ZILLISHEIM" + "codePostal": "01630", + "codeCommune": "01401", + "libelleAcheminement": "SERGY", + "nomCommune": "SERGY" }, { - "codePostal": "68230", - "codeCommune": "68385", - "libelleAcheminement": "ZIMMERBACH", - "nomCommune": "ZIMMERBACH" + "codePostal": "02160", + "codeCommune": "02396", + "libelleAcheminement": "JUMIGNY", + "nomCommune": "JUMIGNY" }, { - "codePostal": "68440", - "codeCommune": "68386", - "libelleAcheminement": "ZIMMERSHEIM", - "nomCommune": "ZIMMERSHEIM" + "codePostal": "01190", + "codeCommune": "01402", + "libelleAcheminement": "SERMOYER", + "nomCommune": "SERMOYER" }, { - "codePostal": "69790", - "codeCommune": "69002", - "libelleAcheminement": "AIGUEPERSE", - "nomCommune": "AIGUEPERSE" + "codePostal": "02880", + "codeCommune": "02400", + "libelleAcheminement": "LAFFAUX", + "nomCommune": "LAFFAUX" }, { - "codePostal": "69490", - "codeCommune": "69008", - "libelleAcheminement": "ANCY", - "nomCommune": "ANCY" + "codePostal": "01470", + "codeCommune": "01403", + "libelleAcheminement": "SERRIERES DE BRIORD", + "nomCommune": "SERRIERES DE BRIORD" }, { - "codePostal": "69220", - "codeCommune": "69019", - "libelleAcheminement": "BELLEVILLE EN BEAUJOLAIS", - "nomCommune": "BELLEVILLE EN BEAUJOLAIS" + "codePostal": "02140", + "codeCommune": "02401", + "libelleAcheminement": "LAIGNY", + "nomCommune": "LAIGNY" }, { - "codePostal": "69380", - "codeCommune": "69020", - "libelleAcheminement": "BELMONT D AZERGUES", - "nomCommune": "BELMONT D AZERGUES" + "codePostal": "01960", + "codeCommune": "01405", + "libelleAcheminement": "SERVAS", + "nomCommune": "SERVAS" }, { - "codePostal": "69690", - "codeCommune": "69021", - "libelleAcheminement": "BESSENAY", - "nomCommune": "BESSENAY" + "codePostal": "02150", + "codeCommune": "02409", + "libelleAcheminement": "LAPPION", + "nomCommune": "LAPPION" }, { - "codePostal": "69690", - "codeCommune": "69022", - "libelleAcheminement": "BIBOST", - "nomCommune": "BIBOST" + "codePostal": "01250", + "codeCommune": "01408", + "libelleAcheminement": "SIMANDRE SUR SURAN", + "nomCommune": "SIMANDRE SUR SURAN" }, { - "codePostal": "69620", - "codeCommune": "69024", - "libelleAcheminement": "VAL D OINGT", - "nomCommune": "VAL D OINGT" + "codePostal": "02600", + "codeCommune": "02410", + "libelleAcheminement": "LARGNY SUR AUTOMNE", + "nomCommune": "LARGNY SUR AUTOMNE" }, { - "codePostal": "69530", - "codeCommune": "69027", - "libelleAcheminement": "BRIGNAIS", - "nomCommune": "BRIGNAIS" + "codePostal": "01150", + "codeCommune": "01411", + "libelleAcheminement": "SOUCLIN", + "nomCommune": "SOUCLIN" }, { - "codePostal": "69530", - "codeCommune": "69027", - "libelleAcheminement": "BRIGNAIS", - "nomCommune": "BRIGNAIS" + "codePostal": "02100", + "codeCommune": "02420", + "libelleAcheminement": "LESDINS", + "nomCommune": "LESDINS" }, { - "codePostal": "69500", - "codeCommune": "69029", - "libelleAcheminement": "BRON", - "nomCommune": "BRON" + "codePostal": "01230", + "codeCommune": "01416", + "libelleAcheminement": "TENAY", + "nomCommune": "TENAY" }, { - "codePostal": "69390", - "codeCommune": "69046", - "libelleAcheminement": "CHARLY", - "nomCommune": "CHARLY" + "codePostal": "02880", + "codeCommune": "02424", + "libelleAcheminement": "LEURY", + "nomCommune": "LEURY" }, { - "codePostal": "69380", - "codeCommune": "69047", - "libelleAcheminement": "CHARNAY", - "nomCommune": "CHARNAY" + "codePostal": "01710", + "codeCommune": "01419", + "libelleAcheminement": "THOIRY", + "nomCommune": "THOIRY" }, { - "codePostal": "69380", - "codeCommune": "69055", - "libelleAcheminement": "LES CHERES", - "nomCommune": "LES CHERES" + "codePostal": "02160", + "codeCommune": "02439", + "libelleAcheminement": "LES SEPTVALLONS", + "nomCommune": "LES SEPTVALLONS" }, { - "codePostal": "69640", - "codeCommune": "69061", - "libelleAcheminement": "COGNY", - "nomCommune": "COGNY" + "codePostal": "01600", + "codeCommune": "01423", + "libelleAcheminement": "TOUSSIEUX", + "nomCommune": "TOUSSIEUX" }, { - "codePostal": "69590", - "codeCommune": "69062", - "libelleAcheminement": "COISE", - "nomCommune": "COISE" + "codePostal": "02190", + "codeCommune": "02440", + "libelleAcheminement": "LOR", + "nomCommune": "LOR" }, { - "codePostal": "69420", - "codeCommune": "69064", - "libelleAcheminement": "CONDRIEU", - "nomCommune": "CONDRIEU" + "codePostal": "01370", + "codeCommune": "01426", + "libelleAcheminement": "VAL REVERMONT", + "nomCommune": "VAL REVERMONT" }, { - "codePostal": "69470", - "codeCommune": "69066", - "libelleAcheminement": "COURS", - "nomCommune": "COURS" + "codePostal": "02600", + "codeCommune": "02441", + "libelleAcheminement": "LOUATRE", + "nomCommune": "LOUATRE" }, { - "codePostal": "69690", - "codeCommune": "69067", - "libelleAcheminement": "COURZIEU", - "nomCommune": "COURZIEU" + "codePostal": "01210", + "codeCommune": "01435", + "libelleAcheminement": "VERSONNEX", + "nomCommune": "VERSONNEX" }, { - "codePostal": "69550", - "codeCommune": "69070", - "libelleAcheminement": "CUBLIZE", - "nomCommune": "CUBLIZE" + "codePostal": "02400", + "codeCommune": "02443", + "libelleAcheminement": "LUCY LE BOCAGE", + "nomCommune": "LUCY LE BOCAGE" }, { - "codePostal": "69270", - "codeCommune": "69088", - "libelleAcheminement": "FONTAINES SUR SAONE", - "nomCommune": "FONTAINES SUR SAONE" + "codePostal": "01560", + "codeCommune": "01437", + "libelleAcheminement": "VESCOURS", + "nomCommune": "VESCOURS" }, { - "codePostal": "69340", - "codeCommune": "69089", - "libelleAcheminement": "FRANCHEVILLE", - "nomCommune": "FRANCHEVILLE" + "codePostal": "02140", + "codeCommune": "02444", + "libelleAcheminement": "LUGNY", + "nomCommune": "LUGNY" }, { - "codePostal": "69700", - "codeCommune": "69091", - "libelleAcheminement": "GIVORS", - "nomCommune": "GIVORS" + "codePostal": "01480", + "codeCommune": "01446", + "libelleAcheminement": "VILLENEUVE", + "nomCommune": "VILLENEUVE" }, { - "codePostal": "69610", - "codeCommune": "69095", - "libelleAcheminement": "GREZIEU LE MARCHE", - "nomCommune": "GREZIEU LE MARCHE" + "codePostal": "02220", + "codeCommune": "02447", + "libelleAcheminement": "MAAST ET VIOLAINE", + "nomCommune": "MAAST ET VIOLAINE" }, { - "codePostal": "69620", - "codeCommune": "69113", - "libelleAcheminement": "LETRA", - "nomCommune": "LETRA" + "codePostal": "01250", + "codeCommune": "01447", + "libelleAcheminement": "VILLEREVERSURE", + "nomCommune": "VILLEREVERSURE" }, { - "codePostal": "69480", - "codeCommune": "69126", - "libelleAcheminement": "MARCY", - "nomCommune": "MARCY" + "codePostal": "02120", + "codeCommune": "02450", + "libelleAcheminement": "MACQUIGNY", + "nomCommune": "MACQUIGNY" }, { - "codePostal": "69390", - "codeCommune": "69133", - "libelleAcheminement": "MILLERY", - "nomCommune": "MILLERY" + "codePostal": "01800", + "codeCommune": "01450", + "libelleAcheminement": "VILLIEU LOYES MOLLON", + "nomCommune": "VILLIEU LOYES MOLLON" }, { - "codePostal": "69620", - "codeCommune": "69134", - "libelleAcheminement": "MOIRE", - "nomCommune": "MOIRE" + "codePostal": "02160", + "codeCommune": "02453", + "libelleAcheminement": "MAIZY", + "nomCommune": "MAIZY" }, { - "codePostal": "69860", - "codeCommune": "69135", - "libelleAcheminement": "DEUX GROSNES", - "nomCommune": "DEUX GROSNES" + "codePostal": "02190", + "codeCommune": "02005", + "libelleAcheminement": "AGUILCOURT", + "nomCommune": "AGUILCOURT" }, { - "codePostal": "69640", - "codeCommune": "69137", - "libelleAcheminement": "MONTMELAS ST SORLIN", - "nomCommune": "MONTMELAS ST SORLIN" + "codePostal": "02120", + "codeCommune": "02455", + "libelleAcheminement": "MALZY", + "nomCommune": "MALZY" }, { - "codePostal": "69770", - "codeCommune": "69139", - "libelleAcheminement": "MONTROTTIER", - "nomCommune": "MONTROTTIER" + "codePostal": "02370", + "codeCommune": "02008", + "libelleAcheminement": "AIZY JOUY", + "nomCommune": "AIZY JOUY" }, { - "codePostal": "69480", - "codeCommune": "69140", - "libelleAcheminement": "MORANCE", - "nomCommune": "MORANCE" + "codePostal": "02130", + "codeCommune": "02462", + "libelleAcheminement": "MAREUIL EN DOLE", + "nomCommune": "MAREUIL EN DOLE" }, { - "codePostal": "69440", - "codeCommune": "69141", - "libelleAcheminement": "MORNANT", - "nomCommune": "MORNANT" + "codePostal": "02600", + "codeCommune": "02015", + "libelleAcheminement": "ANCIENVILLE", + "nomCommune": "ANCIENVILLE" }, { - "codePostal": "69250", - "codeCommune": "69143", - "libelleAcheminement": "NEUVILLE SUR SAONE", - "nomCommune": "NEUVILLE SUR SAONE" + "codePostal": "02470", + "codeCommune": "02467", + "libelleAcheminement": "MARIZY ST MARD", + "nomCommune": "MARIZY ST MARD" }, { - "codePostal": "69460", - "codeCommune": "69145", - "libelleAcheminement": "ODENAS", - "nomCommune": "ODENAS" + "codePostal": "02320", + "codeCommune": "02018", + "libelleAcheminement": "ANIZY LE GRAND", + "nomCommune": "ANIZY LE GRAND" }, { - "codePostal": "69600", - "codeCommune": "69149", - "libelleAcheminement": "OULLINS", - "nomCommune": "OULLINS" + "codePostal": "02120", + "codeCommune": "02469", + "libelleAcheminement": "MARLY GOMONT", + "nomCommune": "MARLY GOMONT" }, { - "codePostal": "69460", - "codeCommune": "69151", - "libelleAcheminement": "LE PERREON", - "nomCommune": "LE PERREON" + "codePostal": "02480", + "codeCommune": "02019", + "libelleAcheminement": "ANNOIS", + "nomCommune": "ANNOIS" }, { - "codePostal": "69490", - "codeCommune": "69157", - "libelleAcheminement": "VINDRY SUR TURDINE", - "nomCommune": "VINDRY SUR TURDINE" + "codePostal": "02860", + "codeCommune": "02471", + "libelleAcheminement": "MARTIGNY COURPIERRE", + "nomCommune": "MARTIGNY COURPIERRE" }, { - "codePostal": "69400", - "codeCommune": "69159", - "libelleAcheminement": "PORTE DES PIERRES DOREES", - "nomCommune": "PORTE DES PIERRES DOREES" + "codePostal": "02360", + "codeCommune": "02021", + "libelleAcheminement": "ARCHON", + "nomCommune": "ARCHON" }, { - "codePostal": "69870", - "codeCommune": "69160", - "libelleAcheminement": "POULE LES ECHARMEAUX", - "nomCommune": "POULE LES ECHARMEAUX" + "codePostal": "02110", + "codeCommune": "02488", + "libelleAcheminement": "MOLAIN", + "nomCommune": "MOLAIN" }, { - "codePostal": "69430", - "codeCommune": "69162", - "libelleAcheminement": "QUINCIE EN BEAUJOLAIS", - "nomCommune": "QUINCIE EN BEAUJOLAIS" + "codePostal": "02130", + "codeCommune": "02022", + "libelleAcheminement": "ARCY STE RESTITUE", + "nomCommune": "ARCY STE RESTITUE" }, { - "codePostal": "69210", - "codeCommune": "69171", - "libelleAcheminement": "SAIN BEL", - "nomCommune": "SAIN BEL" + "codePostal": "02270", + "codeCommune": "02492", + "libelleAcheminement": "MONCEAU LES LEUPS", + "nomCommune": "MONCEAU LES LEUPS" }, { - "codePostal": "69490", - "codeCommune": "69173", - "libelleAcheminement": "SARCEY", - "nomCommune": "SARCEY" + "codePostal": "02210", + "codeCommune": "02023", + "libelleAcheminement": "ARMENTIERES SUR OURCQ", + "nomCommune": "ARMENTIERES SUR OURCQ" }, { - "codePostal": "69700", - "codeCommune": "69179", - "libelleAcheminement": "BEAUVALLON", - "nomCommune": "BEAUVALLON" + "codePostal": "02840", + "codeCommune": "02493", + "libelleAcheminement": "MONCEAU LE WAAST", + "nomCommune": "MONCEAU LE WAAST" }, { - "codePostal": "69870", - "codeCommune": "69183", - "libelleAcheminement": "ST BONNET LE TRONCY", - "nomCommune": "ST BONNET LE TRONCY" + "codePostal": "02820", + "codeCommune": "02033", + "libelleAcheminement": "AUBIGNY EN LAONNOIS", + "nomCommune": "AUBIGNY EN LAONNOIS" }, { - "codePostal": "69440", - "codeCommune": "69184", - "libelleAcheminement": "STE CATHERINE", - "nomCommune": "STE CATHERINE" + "codePostal": "02120", + "codeCommune": "02494", + "libelleAcheminement": "MONCEAU SUR OISE", + "nomCommune": "MONCEAU SUR OISE" }, { - "codePostal": "69930", - "codeCommune": "69187", - "libelleAcheminement": "ST CLEMENT LES PLACES", - "nomCommune": "ST CLEMENT LES PLACES" + "codePostal": "02400", + "codeCommune": "02042", + "libelleAcheminement": "AZY SUR MARNE", + "nomCommune": "AZY SUR MARNE" }, { - "codePostal": "69170", - "codeCommune": "69188", - "libelleAcheminement": "ST CLEMENT SUR VALSONNE", - "nomCommune": "ST CLEMENT SUR VALSONNE" + "codePostal": "02820", + "codeCommune": "02498", + "libelleAcheminement": "MONTAIGU", + "nomCommune": "MONTAIGU" }, { - "codePostal": "69560", - "codeCommune": "69189", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "02500", + "codeCommune": "02055", + "libelleAcheminement": "BEAUME", + "nomCommune": "BEAUME" }, { - "codePostal": "69870", - "codeCommune": "69192", - "libelleAcheminement": "ST CYR LE CHATOUX", - "nomCommune": "ST CYR LE CHATOUX" + "codePostal": "02110", + "codeCommune": "02500", + "libelleAcheminement": "MONTBREHAIN", + "nomCommune": "MONTBREHAIN" }, { - "codePostal": "69460", - "codeCommune": "69197", - "libelleAcheminement": "ST ETIENNE DES OULLIERES", - "nomCommune": "ST ETIENNE DES OULLIERES" + "codePostal": "02400", + "codeCommune": "02062", + "libelleAcheminement": "BELLEAU", + "nomCommune": "BELLEAU" }, { - "codePostal": "69650", - "codeCommune": "69207", - "libelleAcheminement": "ST GERMAIN AU MONT D OR", - "nomCommune": "ST GERMAIN AU MONT D OR" + "codePostal": "02440", + "codeCommune": "02504", + "libelleAcheminement": "MONTESCOURT LIZEROLLES", + "nomCommune": "MONTESCOURT LIZEROLLES" }, { - "codePostal": "69210", - "codeCommune": "69208", - "libelleAcheminement": "ST GERMAIN NUELLES", - "nomCommune": "ST GERMAIN NUELLES" + "codePostal": "02450", + "codeCommune": "02067", + "libelleAcheminement": "BERGUES SUR SAMBRE", + "nomCommune": "BERGUES SUR SAMBRE" }, { - "codePostal": "69170", - "codeCommune": "69225", - "libelleAcheminement": "ST MARCEL L ECLAIRE", - "nomCommune": "ST MARCEL L ECLAIRE" + "codePostal": "02330", + "codeCommune": "02515", + "libelleAcheminement": "MONTIGNY LES CONDE", + "nomCommune": "MONTIGNY LES CONDE" }, { - "codePostal": "69440", - "codeCommune": "69228", - "libelleAcheminement": "CHABANIERE", - "nomCommune": "CHABANIERE" + "codePostal": "02120", + "codeCommune": "02070", + "libelleAcheminement": "BERNOT", + "nomCommune": "BERNOT" }, { - "codePostal": "69440", - "codeCommune": "69228", - "libelleAcheminement": "CHABANIERE", - "nomCommune": "CHABANIERE" + "codePostal": "02250", + "codeCommune": "02516", + "libelleAcheminement": "MONTIGNY SOUS MARLE", + "nomCommune": "MONTIGNY SOUS MARLE" }, { - "codePostal": "69870", - "codeCommune": "69229", - "libelleAcheminement": "ST NIZIER D AZERGUES", - "nomCommune": "ST NIZIER D AZERGUES" + "codePostal": "02860", + "codeCommune": "02088", + "libelleAcheminement": "BIEVRES", + "nomCommune": "BIEVRES" }, { - "codePostal": "69210", - "codeCommune": "69231", - "libelleAcheminement": "ST PIERRE LA PALUD", - "nomCommune": "ST PIERRE LA PALUD" + "codePostal": "02340", + "codeCommune": "02519", + "libelleAcheminement": "MONTLOUE", + "nomCommune": "MONTLOUE" }, { - "codePostal": "69560", - "codeCommune": "69235", - "libelleAcheminement": "ST ROMAIN EN GAL", - "nomCommune": "ST ROMAIN EN GAL" + "codePostal": "02300", + "codeCommune": "02093", + "libelleAcheminement": "BLERANCOURT", + "nomCommune": "BLERANCOURT" }, { - "codePostal": "69620", - "codeCommune": "69239", - "libelleAcheminement": "ST VERAND", - "nomCommune": "ST VERAND" + "codePostal": "02400", + "codeCommune": "02524", + "libelleAcheminement": "MONT ST PERE", + "nomCommune": "MONT ST PERE" }, { - "codePostal": "69220", - "codeCommune": "69242", - "libelleAcheminement": "TAPONAS", - "nomCommune": "TAPONAS" + "codePostal": "02450", + "codeCommune": "02103", + "libelleAcheminement": "BOUE", + "nomCommune": "BOUE" }, { - "codePostal": "69240", - "codeCommune": "69248", - "libelleAcheminement": "THIZY LES BOURGS", - "nomCommune": "THIZY LES BOURGS" + "codePostal": "02600", + "codeCommune": "02528", + "libelleAcheminement": "MORTEFONTAINE", + "nomCommune": "MORTEFONTAINE" }, { - "codePostal": "69420", - "codeCommune": "69252", - "libelleAcheminement": "TREVES", - "nomCommune": "TREVES" + "codePostal": "02140", + "codeCommune": "02109", + "libelleAcheminement": "LA BOUTEILLE", + "nomCommune": "LA BOUTEILLE" }, { - "codePostal": "69420", - "codeCommune": "69253", - "libelleAcheminement": "TUPIN ET SEMONS", - "nomCommune": "TUPIN ET SEMONS" + "codePostal": "02200", + "codeCommune": "02536", + "libelleAcheminement": "NAMPTEUIL SOUS MURET", + "nomCommune": "NAMPTEUIL SOUS MURET" }, { - "codePostal": "69170", - "codeCommune": "69254", - "libelleAcheminement": "VALSONNE", - "nomCommune": "VALSONNE" + "codePostal": "02140", + "codeCommune": "02116", + "libelleAcheminement": "BRAYE EN THIERACHE", + "nomCommune": "BRAYE EN THIERACHE" }, { - "codePostal": "69120", - "codeCommune": "69256", - "libelleAcheminement": "VAULX EN VELIN", - "nomCommune": "VAULX EN VELIN" + "codePostal": "02300", + "codeCommune": "02542", + "libelleAcheminement": "NEUFLIEUX", + "nomCommune": "NEUFLIEUX" }, { - "codePostal": "69430", - "codeCommune": "69261", - "libelleAcheminement": "VERNAY", - "nomCommune": "VERNAY" + "codePostal": "02880", + "codeCommune": "02118", + "libelleAcheminement": "BRAYE", + "nomCommune": "BRAYE" }, { - "codePostal": "69390", - "codeCommune": "69268", - "libelleAcheminement": "VOURLES", - "nomCommune": "VOURLES" + "codePostal": "02470", + "codeCommune": "02543", + "libelleAcheminement": "NEUILLY ST FRONT", + "nomCommune": "NEUILLY ST FRONT" }, { - "codePostal": "69360", - "codeCommune": "69272", - "libelleAcheminement": "COMMUNAY", - "nomCommune": "COMMUNAY" + "codePostal": "02130", + "codeCommune": "02127", + "libelleAcheminement": "BRUYERES SUR FERE", + "nomCommune": "BRUYERES SUR FERE" }, { - "codePostal": "69150", - "codeCommune": "69275", - "libelleAcheminement": "DECINES CHARPIEU", - "nomCommune": "DECINES CHARPIEU" + "codePostal": "02150", + "codeCommune": "02553", + "libelleAcheminement": "NIZY LE COMTE", + "nomCommune": "NIZY LE COMTE" }, { - "codePostal": "69250", - "codeCommune": "69284", - "libelleAcheminement": "MONTANAY", - "nomCommune": "MONTANAY" + "codePostal": "02620", + "codeCommune": "02135", + "libelleAcheminement": "BUIRONFOSSE", + "nomCommune": "BUIRONFOSSE" }, { - "codePostal": "69330", - "codeCommune": "69285", - "libelleAcheminement": "PUSIGNAN", - "nomCommune": "PUSIGNAN" + "codePostal": "02600", + "codeCommune": "02557", + "libelleAcheminement": "NOROY SUR OURCQ", + "nomCommune": "NOROY SUR OURCQ" }, { - "codePostal": "69360", - "codeCommune": "69296", - "libelleAcheminement": "SOLAIZE", - "nomCommune": "SOLAIZE" + "codePostal": "02140", + "codeCommune": "02136", + "libelleAcheminement": "BURELLES", + "nomCommune": "BURELLES" }, { - "codePostal": "69360", - "codeCommune": "69297", - "libelleAcheminement": "TERNAY", - "nomCommune": "TERNAY" + "codePostal": "02270", + "codeCommune": "02559", + "libelleAcheminement": "NOUVION ET CATILLON", + "nomCommune": "NOUVION ET CATILLON" }, { - "codePostal": "69006", - "codeCommune": "69386", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 06" + "codePostal": "02330", + "codeCommune": "02146", + "libelleAcheminement": "CELLES LES CONDE", + "nomCommune": "CELLES LES CONDE" }, { - "codePostal": "70300", - "codeCommune": "70001", - "libelleAcheminement": "ABELCOURT", - "nomCommune": "ABELCOURT" + "codePostal": "02500", + "codeCommune": "02567", + "libelleAcheminement": "OHIS", + "nomCommune": "OHIS" }, { - "codePostal": "70500", - "codeCommune": "70002", - "libelleAcheminement": "ABONCOURT GESINCOURT", - "nomCommune": "ABONCOURT GESINCOURT" + "codePostal": "02370", + "codeCommune": "02148", + "libelleAcheminement": "CELLES SUR AISNE", + "nomCommune": "CELLES SUR AISNE" }, { - "codePostal": "70200", - "codeCommune": "70004", - "libelleAcheminement": "ADELANS ET LE VAL DE BITHAINE", - "nomCommune": "ADELANS ET LE VAL DE BITHAINE" + "codePostal": "02850", + "codeCommune": "02595", + "libelleAcheminement": "PASSY SUR MARNE", + "nomCommune": "PASSY SUR MARNE" }, { - "codePostal": "70300", - "codeCommune": "70007", - "libelleAcheminement": "AILLONCOURT", - "nomCommune": "AILLONCOURT" + "codePostal": "02320", + "codeCommune": "02153", + "libelleAcheminement": "CESSIERES SUZY", + "nomCommune": "CESSIERES SUZY" }, { - "codePostal": "70800", - "codeCommune": "70008", - "libelleAcheminement": "AINVELLE", - "nomCommune": "AINVELLE" + "codePostal": "02200", + "codeCommune": "02598", + "libelleAcheminement": "PERNANT", + "nomCommune": "PERNANT" }, { - "codePostal": "70210", - "codeCommune": "70013", - "libelleAcheminement": "AMBIEVILLERS", - "nomCommune": "AMBIEVILLERS" + "codePostal": "02200", + "codeCommune": "02154", + "libelleAcheminement": "CHACRISE", + "nomCommune": "CHACRISE" }, { - "codePostal": "70100", - "codeCommune": "70018", - "libelleAcheminement": "ANCIER", - "nomCommune": "ANCIER" + "codePostal": "02350", + "codeCommune": "02600", + "libelleAcheminement": "PIERREPONT", + "nomCommune": "PIERREPONT" }, { - "codePostal": "70700", - "codeCommune": "70022", - "libelleAcheminement": "ANGIREY", - "nomCommune": "ANGIREY" + "codePostal": "02860", + "codeCommune": "02158", + "libelleAcheminement": "CHAMOUILLE", + "nomCommune": "CHAMOUILLE" }, { - "codePostal": "70360", - "codeCommune": "70028", - "libelleAcheminement": "AROZ", - "nomCommune": "AROZ" + "codePostal": "02320", + "codeCommune": "02602", + "libelleAcheminement": "PINON", + "nomCommune": "PINON" }, { - "codePostal": "70100", - "codeCommune": "70030", - "libelleAcheminement": "ARSANS", - "nomCommune": "ARSANS" + "codePostal": "02570", + "codeCommune": "02162", + "libelleAcheminement": "LA CHAPELLE SUR CHEZY", + "nomCommune": "LA CHAPELLE SUR CHEZY" }, { - "codePostal": "70110", - "codeCommune": "70031", - "libelleAcheminement": "ATHESANS ETROITEFONTAINE", - "nomCommune": "ATHESANS ETROITEFONTAINE" + "codePostal": "02490", + "codeCommune": "02615", + "libelleAcheminement": "PONTRUET", + "nomCommune": "PONTRUET" }, { - "codePostal": "70190", - "codeCommune": "70050", - "libelleAcheminement": "LA BARRE", - "nomCommune": "LA BARRE" + "codePostal": "02850", + "codeCommune": "02164", + "libelleAcheminement": "LE CHARMEL", + "nomCommune": "LE CHARMEL" }, { - "codePostal": "70210", - "codeCommune": "70051", - "libelleAcheminement": "LA BASSE VAIVRE", - "nomCommune": "LA BASSE VAIVRE" + "codePostal": "02470", + "codeCommune": "02622", + "libelleAcheminement": "PRIEZ", + "nomCommune": "PRIEZ" }, { - "codePostal": "70100", - "codeCommune": "70058", - "libelleAcheminement": "BEAUJEU ET QUITTEUR", - "nomCommune": "BEAUJEU ST VALLIER PIERREJUX QUITTEUR" + "codePostal": "02370", + "codeCommune": "02176", + "libelleAcheminement": "CHAVONNE", + "nomCommune": "CHAVONNE" }, { - "codePostal": "70190", - "codeCommune": "70059", - "libelleAcheminement": "BEAUMOTTE AUBERTANS", - "nomCommune": "BEAUMOTTE AUBERTANS" + "codePostal": "02140", + "codeCommune": "02623", + "libelleAcheminement": "PRISCES", + "nomCommune": "PRISCES" }, { - "codePostal": "70270", - "codeCommune": "70063", - "libelleAcheminement": "BELONCHAMP", - "nomCommune": "BELONCHAMP" + "codePostal": "02860", + "codeCommune": "02177", + "libelleAcheminement": "CHERET", + "nomCommune": "CHERET" }, { - "codePostal": "70500", - "codeCommune": "70070", - "libelleAcheminement": "BETONCOURT SUR MANCE", - "nomCommune": "BETONCOURT SUR MANCE" + "codePostal": "02220", + "codeCommune": "02633", + "libelleAcheminement": "QUINCY SOUS LE MONT", + "nomCommune": "QUINCY SOUS LE MONT" }, { - "codePostal": "70230", - "codeCommune": "70082", - "libelleAcheminement": "BOUHANS LES MONTBOZON", - "nomCommune": "BOUHANS LES MONTBOZON" + "codePostal": "02360", + "codeCommune": "02181", + "libelleAcheminement": "CHERY LES ROZOY", + "nomCommune": "CHERY LES ROZOY" }, { - "codePostal": "70100", - "codeCommune": "70100", - "libelleAcheminement": "BROYE LES LOUPS ET VERFONTAINE", - "nomCommune": "BROYE LES LOUPS ET VERFONTAINE" + "codePostal": "02100", + "codeCommune": "02637", + "libelleAcheminement": "REMAUCOURT", + "nomCommune": "REMAUCOURT" }, { - "codePostal": "70700", - "codeCommune": "70104", - "libelleAcheminement": "BUCEY LES GY", - "nomCommune": "BUCEY LES GY" + "codePostal": "02250", + "codeCommune": "02182", + "libelleAcheminement": "CHEVENNES", + "nomCommune": "CHEVENNES" }, { - "codePostal": "70360", - "codeCommune": "70105", - "libelleAcheminement": "BUCEY LES TRAVES", - "nomCommune": "BUCEY LES TRAVES" + "codePostal": "02240", + "codeCommune": "02640", + "libelleAcheminement": "RENANSART", + "nomCommune": "RENANSART" }, { - "codePostal": "70150", - "codeCommune": "70119", - "libelleAcheminement": "CHAMBORNAY LES PIN", - "nomCommune": "CHAMBORNAY LES PIN" + "codePostal": "02570", + "codeCommune": "02186", + "libelleAcheminement": "CHEZY SUR MARNE", + "nomCommune": "CHEZY SUR MARNE" }, { - "codePostal": "70600", - "codeCommune": "70122", - "libelleAcheminement": "CHAMPLITTE", - "nomCommune": "CHAMPLITTE" + "codePostal": "02290", + "codeCommune": "02643", + "libelleAcheminement": "RESSONS LE LONG", + "nomCommune": "RESSONS LE LONG" }, { - "codePostal": "70600", - "codeCommune": "70122", - "libelleAcheminement": "CHAMPLITTE", - "nomCommune": "CHAMPLITTE" + "codePostal": "02350", + "codeCommune": "02189", + "libelleAcheminement": "CHIVRES EN LAONNOIS", + "nomCommune": "CHIVRES EN LAONNOIS" }, { - "codePostal": "70360", - "codeCommune": "70127", - "libelleAcheminement": "CHANTES", - "nomCommune": "CHANTES" + "codePostal": "02140", + "codeCommune": "02652", + "libelleAcheminement": "ROGNY", + "nomCommune": "ROGNY" }, { - "codePostal": "70120", - "codeCommune": "70153", - "libelleAcheminement": "CINTREY", - "nomCommune": "CINTREY" + "codePostal": "02210", + "codeCommune": "02192", + "libelleAcheminement": "CHOUY", + "nomCommune": "CHOUY" }, { - "codePostal": "70200", - "codeCommune": "70157", - "libelleAcheminement": "CLAIREGOUTTE", - "nomCommune": "CLAIREGOUTTE" + "codePostal": "02200", + "codeCommune": "02667", + "libelleAcheminement": "SACONIN ET BREUIL", + "nomCommune": "SACONIN ET BREUIL" }, { - "codePostal": "70000", - "codeCommune": "70158", - "libelleAcheminement": "CLANS", - "nomCommune": "CLANS" + "codePostal": "02260", + "codeCommune": "02197", + "libelleAcheminement": "CLAIRFONTAINE", + "nomCommune": "CLAIRFONTAINE" }, { - "codePostal": "70230", - "codeCommune": "70159", - "libelleAcheminement": "COGNIERES", - "nomCommune": "COGNIERES" + "codePostal": "02360", + "codeCommune": "02674", + "libelleAcheminement": "ST CLEMENT", + "nomCommune": "ST CLEMENT" }, { - "codePostal": "70240", - "codeCommune": "70164", - "libelleAcheminement": "COLOMBOTTE", - "nomCommune": "COLOMBOTTE" + "codePostal": "02160", + "codeCommune": "02208", + "libelleAcheminement": "CONCEVREUX", + "nomCommune": "CONCEVREUX" }, { - "codePostal": "70170", - "codeCommune": "70167", - "libelleAcheminement": "CONFLANDEY", - "nomCommune": "CONFLANDEY" + "codePostal": "02820", + "codeCommune": "02676", + "libelleAcheminement": "ST ERME OUTRE ET RAMECOURT", + "nomCommune": "ST ERME OUTRE ET RAMECOURT" }, { - "codePostal": "70120", - "codeCommune": "70169", - "libelleAcheminement": "CONFRACOURT", - "nomCommune": "CONFRACOURT" + "codePostal": "02330", + "codeCommune": "02209", + "libelleAcheminement": "CONDE EN BRIE", + "nomCommune": "CONDE EN BRIE" }, { - "codePostal": "70320", - "codeCommune": "70171", - "libelleAcheminement": "CORBENAY", - "nomCommune": "CORBENAY" + "codePostal": "02140", + "codeCommune": "02681", + "libelleAcheminement": "ST GOBERT", + "nomCommune": "ST GOBERT" }, { - "codePostal": "70120", - "codeCommune": "70175", - "libelleAcheminement": "CORNOT", - "nomCommune": "CORNOT" + "codePostal": "02700", + "codeCommune": "02212", + "libelleAcheminement": "CONDREN", + "nomCommune": "CONDREN" }, { - "codePostal": "70400", - "codeCommune": "70184", - "libelleAcheminement": "COUTHENANS", - "nomCommune": "COUTHENANS" + "codePostal": "02100", + "codeCommune": "02691", + "libelleAcheminement": "ST QUENTIN", + "nomCommune": "ST QUENTIN" }, { - "codePostal": "70240", - "codeCommune": "70188", - "libelleAcheminement": "CREVENEY", - "nomCommune": "CREVENEY" + "codePostal": "02380", + "codeCommune": "02217", + "libelleAcheminement": "COUCY LE CHATEAU AUFFRIQUE", + "nomCommune": "COUCY LE CHATEAU AUFFRIQUE" }, { - "codePostal": "70190", - "codeCommune": "70189", - "libelleAcheminement": "CROMARY", - "nomCommune": "CROMARY" + "codePostal": "02820", + "codeCommune": "02696", + "libelleAcheminement": "ST THOMAS", + "nomCommune": "ST THOMAS" }, { - "codePostal": "70800", - "codeCommune": "70196", - "libelleAcheminement": "DAMPIERRE LES CONFLANS", - "nomCommune": "DAMPIERRE LES CONFLANS" + "codePostal": "02200", + "codeCommune": "02226", + "libelleAcheminement": "COURMELLES", + "nomCommune": "COURMELLES" }, { - "codePostal": "70000", - "codeCommune": "70199", - "libelleAcheminement": "DAMPVALLEY LES COLOMBE", - "nomCommune": "DAMPVALLEY LES COLOMBE" + "codePostal": "02880", + "codeCommune": "02698", + "libelleAcheminement": "SANCY LES CHEMINOTS", + "nomCommune": "SANCY LES CHEMINOTS" }, { - "codePostal": "70210", - "codeCommune": "70200", - "libelleAcheminement": "DAMPVALLEY ST PANCRAS", - "nomCommune": "DAMPVALLEY ST PANCRAS" + "codePostal": "02270", + "codeCommune": "02237", + "libelleAcheminement": "CRECY SUR SERRE", + "nomCommune": "CRECY SUR SERRE" }, { - "codePostal": "70180", - "codeCommune": "70204", - "libelleAcheminement": "DENEVRE", - "nomCommune": "DENEVRE" + "codePostal": "02310", + "codeCommune": "02701", + "libelleAcheminement": "SAULCHERY", + "nomCommune": "SAULCHERY" }, { - "codePostal": "70400", - "codeCommune": "70206", - "libelleAcheminement": "ECHENANS SOUS MONT VAUDOIS", - "nomCommune": "ECHENANS SOUS MONT VAUDOIS" + "codePostal": "02110", + "codeCommune": "02240", + "libelleAcheminement": "CROIX FONSOMME", + "nomCommune": "CROIX FONSOMME" }, { - "codePostal": "70000", - "codeCommune": "70208", - "libelleAcheminement": "ECHENOZ LE SEC", - "nomCommune": "ECHENOZ LE SEC" + "codePostal": "02300", + "codeCommune": "02704", + "libelleAcheminement": "SELENS", + "nomCommune": "SELENS" }, { - "codePostal": "70110", - "codeCommune": "70219", - "libelleAcheminement": "ESPRELS", - "nomCommune": "ESPRELS" + "codePostal": "02590", + "codeCommune": "02270", + "libelleAcheminement": "DOUCHY", + "nomCommune": "DOUCHY" }, { - "codePostal": "70100", - "codeCommune": "70220", - "libelleAcheminement": "ESSERTENNE ET CECEY", - "nomCommune": "ESSERTENNE ET CECEY" + "codePostal": "02150", + "codeCommune": "02705", + "libelleAcheminement": "LA SELVE", + "nomCommune": "LA SELVE" }, { - "codePostal": "70100", - "codeCommune": "70225", - "libelleAcheminement": "FAHY LES AUTREY", - "nomCommune": "FAHY LES AUTREY" + "codePostal": "02250", + "codeCommune": "02283", + "libelleAcheminement": "ERLON", + "nomCommune": "ERLON" }, { - "codePostal": "70000", - "codeCommune": "70235", - "libelleAcheminement": "FLAGY", - "nomCommune": "FLAGY" + "codePostal": "02130", + "codeCommune": "02712", + "libelleAcheminement": "SERGY", + "nomCommune": "SERGY" }, { - "codePostal": "70800", - "codeCommune": "70238", - "libelleAcheminement": "FLEUREY LES ST LOUP", - "nomCommune": "FLEUREY LES ST LOUP" + "codePostal": "02170", + "codeCommune": "02286", + "libelleAcheminement": "ESQUEHERIES", + "nomCommune": "ESQUEHERIES" }, { - "codePostal": "70230", - "codeCommune": "70243", - "libelleAcheminement": "FONTENOIS LES MONTBOZON", - "nomCommune": "FONTENOIS LES MONTBOZON" + "codePostal": "02150", + "codeCommune": "02720", + "libelleAcheminement": "SISSONNE", + "nomCommune": "SISSONNE" }, { - "codePostal": "70160", - "codeCommune": "70244", - "libelleAcheminement": "FOUCHECOURT", - "nomCommune": "FOUCHECOURT" + "codePostal": "02400", + "codeCommune": "02290", + "libelleAcheminement": "ESSOMES SUR MARNE", + "nomCommune": "ESSOMES SUR MARNE" }, { - "codePostal": "70600", - "codeCommune": "70247", - "libelleAcheminement": "FOUVENT ST ANDOCHE", - "nomCommune": "FOUVENT ST ANDOCHE" + "codePostal": "02260", + "codeCommune": "02725", + "libelleAcheminement": "SOMMERON", + "nomCommune": "SOMMERON" }, { - "codePostal": "70600", - "codeCommune": "70247", - "libelleAcheminement": "FOUVENT ST ANDOCHE", - "nomCommune": "FOUVENT ST ANDOCHE" + "codePostal": "02190", + "codeCommune": "02299", + "libelleAcheminement": "EVERGNICOURT", + "nomCommune": "EVERGNICOURT" }, { - "codePostal": "70600", - "codeCommune": "70252", - "libelleAcheminement": "FRAMONT", - "nomCommune": "FRAMONT" + "codePostal": "02270", + "codeCommune": "02727", + "libelleAcheminement": "SONS ET RONCHERES", + "nomCommune": "SONS ET RONCHERES" }, { - "codePostal": "70240", - "codeCommune": "70263", - "libelleAcheminement": "GENEVREY", - "nomCommune": "GENEVREY" + "codePostal": "02800", + "codeCommune": "02304", + "libelleAcheminement": "LA FERE", + "nomCommune": "LA FERE" }, { - "codePostal": "70500", - "codeCommune": "70267", - "libelleAcheminement": "GEVIGNEY ET MERCEY", - "nomCommune": "GEVIGNEY ET MERCEY" + "codePostal": "02240", + "codeCommune": "02732", + "libelleAcheminement": "SURFONTAINE", + "nomCommune": "SURFONTAINE" }, { - "codePostal": "70400", - "codeCommune": "70285", - "libelleAcheminement": "HERICOURT", - "nomCommune": "HERICOURT" + "codePostal": "02460", + "codeCommune": "02307", + "libelleAcheminement": "LA FERTE MILON", + "nomCommune": "LA FERTE MILON" }, { - "codePostal": "70700", - "codeCommune": "70289", - "libelleAcheminement": "IGNY", - "nomCommune": "IGNY" + "codePostal": "02250", + "codeCommune": "02742", + "libelleAcheminement": "THIERNU", + "nomCommune": "THIERNU" }, { - "codePostal": "70500", - "codeCommune": "70291", - "libelleAcheminement": "JONVELLE", - "nomCommune": "JONVELLE" + "codePostal": "02450", + "codeCommune": "02308", + "libelleAcheminement": "FESMY LE SART", + "nomCommune": "FESMY LE SART" }, { - "codePostal": "70500", - "codeCommune": "70292", - "libelleAcheminement": "JUSSEY", - "nomCommune": "JUSSEY" + "codePostal": "02250", + "codeCommune": "02745", + "libelleAcheminement": "TOULIS ET ATTENCOURT", + "nomCommune": "TOULIS ET ATTENCOURT" }, { - "codePostal": "70200", - "codeCommune": "70294", - "libelleAcheminement": "LANTENOT", - "nomCommune": "LANTENOT" + "codePostal": "02110", + "codeCommune": "02310", + "libelleAcheminement": "FIEULAINE", + "nomCommune": "FIEULAINE" }, { - "codePostal": "70270", - "codeCommune": "70295", - "libelleAcheminement": "LA LANTERNE ET LES ARMONTS", - "nomCommune": "LA LANTERNE ET LES ARMONTS" + "codePostal": "02860", + "codeCommune": "02751", + "libelleAcheminement": "TRUCY", + "nomCommune": "TRUCY" }, { - "codePostal": "70240", - "codeCommune": "70303", - "libelleAcheminement": "LIEVANS", - "nomCommune": "LIEVANS" + "codePostal": "02590", + "codeCommune": "02317", + "libelleAcheminement": "FLUQUIERES", + "nomCommune": "FLUQUIERES" }, { - "codePostal": "70230", - "codeCommune": "70309", - "libelleAcheminement": "LOULANS VERCHAMP", - "nomCommune": "LOULANS VERCHAMP" + "codePostal": "02120", + "codeCommune": "02753", + "libelleAcheminement": "TUPIGNY", + "nomCommune": "TUPIGNY" }, { - "codePostal": "70200", - "codeCommune": "70310", - "libelleAcheminement": "LURE", - "nomCommune": "LURE" + "codePostal": "02110", + "codeCommune": "02323", + "libelleAcheminement": "FONTAINE UTERTE", + "nomCommune": "FONTAINE UTERTE" }, { - "codePostal": "70200", - "codeCommune": "70313", - "libelleAcheminement": "LYOFFANS", - "nomCommune": "LYOFFANS" + "codePostal": "02690", + "codeCommune": "02756", + "libelleAcheminement": "URVILLERS", + "nomCommune": "URVILLERS" }, { - "codePostal": "70300", - "codeCommune": "70314", - "libelleAcheminement": "MAGNIVRAY", - "nomCommune": "MAGNIVRAY" + "codePostal": "02800", + "codeCommune": "02335", + "libelleAcheminement": "FRESSANCOURT", + "nomCommune": "FRESSANCOURT" }, { - "codePostal": "70110", - "codeCommune": "70317", - "libelleAcheminement": "LES MAGNY", - "nomCommune": "LES MAGNY" + "codePostal": "02120", + "codeCommune": "02757", + "libelleAcheminement": "VADENCOURT", + "nomCommune": "VADENCOURT" }, { - "codePostal": "70000", - "codeCommune": "70324", - "libelleAcheminement": "MAILLEY ET CHAZELOT", - "nomCommune": "MAILLEY ET CHAZELOT" + "codePostal": "02260", + "codeCommune": "02337", + "libelleAcheminement": "FROIDESTREES", + "nomCommune": "FROIDESTREES" }, { - "codePostal": "70190", - "codeCommune": "70326", - "libelleAcheminement": "LA MALACHERE", - "nomCommune": "LA MALACHERE" + "codePostal": "02290", + "codeCommune": "02762", + "libelleAcheminement": "VASSENS", + "nomCommune": "VASSENS" }, { - "codePostal": "70200", - "codeCommune": "70328", - "libelleAcheminement": "MALBOUHANS", - "nomCommune": "MALBOUHANS" + "codePostal": "02810", + "codeCommune": "02339", + "libelleAcheminement": "GANDELU", + "nomCommune": "GANDELU" }, { - "codePostal": "70100", - "codeCommune": "70331", - "libelleAcheminement": "MANTOCHE", - "nomCommune": "MANTOCHE" + "codePostal": "02220", + "codeCommune": "02763", + "libelleAcheminement": "VASSENY", + "nomCommune": "VASSENY" }, { - "codePostal": "70110", - "codeCommune": "70336", - "libelleAcheminement": "MELECEY", - "nomCommune": "MELECEY" + "codePostal": "02430", + "codeCommune": "02340", + "libelleAcheminement": "GAUCHY", + "nomCommune": "GAUCHY" }, { - "codePostal": "70300", - "codeCommune": "70344", - "libelleAcheminement": "MEURCOURT", - "nomCommune": "MEURCOURT" + "codePostal": "02320", + "codeCommune": "02768", + "libelleAcheminement": "VAUXAILLON", + "nomCommune": "VAUXAILLON" }, { - "codePostal": "70310", - "codeCommune": "70352", - "libelleAcheminement": "LA MONTAGNE", - "nomCommune": "LA MONTAGNE" + "codePostal": "02260", + "codeCommune": "02342", + "libelleAcheminement": "GERGNY", + "nomCommune": "GERGNY" }, { - "codePostal": "70500", - "codeCommune": "70359", - "libelleAcheminement": "MONTCOURT", - "nomCommune": "MONTCOURT" + "codePostal": "02200", + "codeCommune": "02770", + "libelleAcheminement": "VAUXBUIN", + "nomCommune": "VAUXBUIN" }, { - "codePostal": "70110", - "codeCommune": "70364", - "libelleAcheminement": "MONTJUSTIN ET VELOTTE", - "nomCommune": "MONTJUSTIN ET VELOTTE" + "codePostal": "02350", + "codeCommune": "02353", + "libelleAcheminement": "GRANDLUP ET FAY", + "nomCommune": "GRANDLUP ET FAY" }, { - "codePostal": "70700", - "codeCommune": "70366", - "libelleAcheminement": "VILLERS CHEMIN MONT LES ETRELLES", - "nomCommune": "VILLERS CHEMIN ET MONT LES ETRELLES" + "codePostal": "02220", + "codeCommune": "02773", + "libelleAcheminement": "VAUXTIN", + "nomCommune": "VAUXTIN" }, { - "codePostal": "70100", - "codeCommune": "70371", - "libelleAcheminement": "MONTUREUX ET PRANTIGNY", - "nomCommune": "MONTUREUX ET PRANTIGNY" + "codePostal": "02100", + "codeCommune": "02355", + "libelleAcheminement": "GRICOURT", + "nomCommune": "GRICOURT" }, { - "codePostal": "70120", - "codeCommune": "70373", - "libelleAcheminement": "LA ROCHE MOREY", - "nomCommune": "LA ROCHE MOREY" + "codePostal": "02490", + "codeCommune": "02774", + "libelleAcheminement": "VENDELLES", + "nomCommune": "VENDELLES" }, { - "codePostal": "70100", - "codeCommune": "70376", - "libelleAcheminement": "NANTILLY", - "nomCommune": "NANTILLY" + "codePostal": "02110", + "codeCommune": "02358", + "libelleAcheminement": "GROUGIS", + "nomCommune": "GROUGIS" }, { - "codePostal": "70000", - "codeCommune": "70381", - "libelleAcheminement": "NEUREY LES LA DEMIE", - "nomCommune": "NEUREY LES LA DEMIE" + "codePostal": "02340", + "codeCommune": "02802", + "libelleAcheminement": "LA VILLE AUX BOIS LES DIZY", + "nomCommune": "LA VILLE AUX BOIS LES DIZY" }, { - "codePostal": "70200", - "codeCommune": "70385", - "libelleAcheminement": "LA NEUVELLE LES LURE", - "nomCommune": "LA NEUVELLE LES LURE" + "codePostal": "02120", + "codeCommune": "02361", + "libelleAcheminement": "GUISE", + "nomCommune": "GUISE" }, { - "codePostal": "70000", - "codeCommune": "70390", - "libelleAcheminement": "NOROY LE BOURG", - "nomCommune": "NOROY LE BOURG" + "codePostal": "02130", + "codeCommune": "02809", + "libelleAcheminement": "VILLERS AGRON AIGUIZY", + "nomCommune": "VILLERS AGRON AIGUIZY" }, { - "codePostal": "70100", - "codeCommune": "70394", - "libelleAcheminement": "ONAY", - "nomCommune": "ONAY" + "codePostal": "02300", + "codeCommune": "02362", + "libelleAcheminement": "GUIVRY", + "nomCommune": "GUIVRY" }, { - "codePostal": "70110", - "codeCommune": "70395", - "libelleAcheminement": "OPPENANS", - "nomCommune": "OPPENANS" + "codePostal": "02600", + "codeCommune": "02812", + "libelleAcheminement": "VILLERS HELON", + "nomCommune": "VILLERS HELON" }, { - "codePostal": "70230", - "codeCommune": "70397", - "libelleAcheminement": "ORMENANS", - "nomCommune": "ORMENANS" + "codePostal": "02160", + "codeCommune": "02364", + "libelleAcheminement": "GUYENCOURT", + "nomCommune": "GUYENCOURT" }, { - "codePostal": "70500", - "codeCommune": "70399", - "libelleAcheminement": "ORMOY", - "nomCommune": "ORMOY" + "codePostal": "02870", + "codeCommune": "02821", + "libelleAcheminement": "VIVAISE", + "nomCommune": "VIVAISE" }, { - "codePostal": "70190", - "codeCommune": "70405", - "libelleAcheminement": "PENNESIERES", - "nomCommune": "PENNESIERES" + "codePostal": "02420", + "codeCommune": "02370", + "libelleAcheminement": "HARGICOURT", + "nomCommune": "HARGICOURT" }, { - "codePostal": "70140", - "codeCommune": "70408", - "libelleAcheminement": "PESMES", - "nomCommune": "PESMES" + "codePostal": "02600", + "codeCommune": "02822", + "libelleAcheminement": "VIVIERES", + "nomCommune": "VIVIERES" }, { - "codePostal": "70210", - "codeCommune": "70415", - "libelleAcheminement": "POLAINCOURT ET CLAIREFONTAINE", - "nomCommune": "POLAINCOURT ET CLAIREFONTAINE" + "codePostal": "02120", + "codeCommune": "02376", + "libelleAcheminement": "HAUTEVILLE", + "nomCommune": "HAUTEVILLE" }, { - "codePostal": "70240", - "codeCommune": "70416", - "libelleAcheminement": "POMOY", - "nomCommune": "POMOY" + "codePostal": "02250", + "codeCommune": "02827", + "libelleAcheminement": "VOYENNE", + "nomCommune": "VOYENNE" }, { - "codePostal": "70310", - "codeCommune": "70425", - "libelleAcheminement": "LA PROISELIERE ET LANGLE", - "nomCommune": "LA PROISELIERE ET LANGLE" + "codePostal": "02500", + "codeCommune": "02381", + "libelleAcheminement": "HIRSON", + "nomCommune": "HIRSON" }, { - "codePostal": "70160", - "codeCommune": "70427", - "libelleAcheminement": "PURGEROT", - "nomCommune": "PURGEROT" + "codePostal": "02120", + "codeCommune": "02832", + "libelleAcheminement": "WIEGE FATY", + "nomCommune": "WIEGE FATY" }, { - "codePostal": "70190", - "codeCommune": "70431", - "libelleAcheminement": "QUENOCHE", - "nomCommune": "QUENOCHE" + "codePostal": "02850", + "codeCommune": "02389", + "libelleAcheminement": "JAULGONNE", + "nomCommune": "JAULGONNE" }, { - "codePostal": "70280", - "codeCommune": "70435", - "libelleAcheminement": "RADDON ET CHAPENDU", - "nomCommune": "RADDON ET CHAPENDU" + "codePostal": "03120", + "codeCommune": "03004", + "libelleAcheminement": "ANDELAROCHE", + "nomCommune": "ANDELAROCHE" }, { - "codePostal": "70500", - "codeCommune": "70437", - "libelleAcheminement": "RANZEVELLE", - "nomCommune": "RANZEVELLE" + "codePostal": "02490", + "codeCommune": "02390", + "libelleAcheminement": "JEANCOURT", + "nomCommune": "JEANCOURT" }, { - "codePostal": "70000", - "codeCommune": "70439", - "libelleAcheminement": "RAZE", - "nomCommune": "RAZE" + "codePostal": "03460", + "codeCommune": "03009", + "libelleAcheminement": "AUBIGNY", + "nomCommune": "AUBIGNY" }, { - "codePostal": "70130", - "codeCommune": "70440", - "libelleAcheminement": "RECOLOGNE LES RAY", - "nomCommune": "RECOLOGNE" + "codePostal": "02120", + "codeCommune": "02403", + "libelleAcheminement": "LANDIFAY ET BERTAIGNEMONT", + "nomCommune": "LANDIFAY ET BERTAIGNEMONT" }, { - "codePostal": "70120", - "codeCommune": "70450", - "libelleAcheminement": "LA ROCHELLE", - "nomCommune": "LA ROCHELLE" + "codePostal": "03190", + "codeCommune": "03010", + "libelleAcheminement": "AUDES", + "nomCommune": "AUDES" }, { - "codePostal": "70270", - "codeCommune": "70459", - "libelleAcheminement": "ST BARTHELEMY", - "nomCommune": "ST BARTHELEMY" + "codePostal": "02260", + "codeCommune": "02418", + "libelleAcheminement": "LERZY", + "nomCommune": "LERZY" }, { - "codePostal": "70400", - "codeCommune": "70477", - "libelleAcheminement": "SAULNOT", - "nomCommune": "SAULNOT" + "codePostal": "03340", + "codeCommune": "03025", + "libelleAcheminement": "BESSAY SUR ALLIER", + "nomCommune": "BESSAY SUR ALLIER" }, { - "codePostal": "70170", - "codeCommune": "70483", - "libelleAcheminement": "SCYE", - "nomCommune": "SCYE" + "codePostal": "02170", + "codeCommune": "02419", + "libelleAcheminement": "LESCHELLE", + "nomCommune": "LESCHELLE" }, { - "codePostal": "70160", - "codeCommune": "70488", - "libelleAcheminement": "SENONCOURT", - "nomCommune": "SENONCOURT" + "codePostal": "03160", + "codeCommune": "03036", + "libelleAcheminement": "BOURBON L ARCHAMBAULT", + "nomCommune": "BOURBON L ARCHAMBAULT" }, { - "codePostal": "70120", - "codeCommune": "70499", - "libelleAcheminement": "THEULEY", - "nomCommune": "THEULEY" + "codePostal": "02500", + "codeCommune": "02425", + "libelleAcheminement": "LEUZE", + "nomCommune": "LEUZE" }, { - "codePostal": "70140", - "codeCommune": "70510", - "libelleAcheminement": "VADANS", - "nomCommune": "VADANS" + "codePostal": "03360", + "codeCommune": "03037", + "libelleAcheminement": "BRAIZE", + "nomCommune": "BRAIZE" }, { - "codePostal": "70200", - "codeCommune": "70515", - "libelleAcheminement": "LE VAL DE GOUHENANS", - "nomCommune": "LE VAL DE GOUHENANS" + "codePostal": "02600", + "codeCommune": "02438", + "libelleAcheminement": "LONGPONT", + "nomCommune": "LONGPONT" }, { - "codePostal": "70190", - "codeCommune": "70519", - "libelleAcheminement": "VANDELANS", - "nomCommune": "VANDELANS" + "codePostal": "03120", + "codeCommune": "03042", + "libelleAcheminement": "LE BREUIL", + "nomCommune": "LE BREUIL" }, { - "codePostal": "70130", - "codeCommune": "70520", - "libelleAcheminement": "VANNE", - "nomCommune": "VANNE" + "codePostal": "02160", + "codeCommune": "02439", + "libelleAcheminement": "LES SEPTVALLONS", + "nomCommune": "LES SEPTVALLONS" }, { - "codePostal": "70600", - "codeCommune": "70523", - "libelleAcheminement": "VARS", - "nomCommune": "VARS" + "codePostal": "03350", + "codeCommune": "03048", + "libelleAcheminement": "CERILLY", + "nomCommune": "CERILLY" }, { - "codePostal": "70170", - "codeCommune": "70524", - "libelleAcheminement": "VAUCHOUX", - "nomCommune": "VAUCHOUX" + "codePostal": "02440", + "codeCommune": "02446", + "libelleAcheminement": "LY FONTAINE", + "nomCommune": "LY FONTAINE" }, { - "codePostal": "70210", - "codeCommune": "70526", - "libelleAcheminement": "VAUVILLERS", - "nomCommune": "VAUVILLERS" + "codePostal": "03250", + "codeCommune": "03050", + "libelleAcheminement": "LA CHABANNE", + "nomCommune": "LA CHABANNE" }, { - "codePostal": "70000", - "codeCommune": "70532", - "libelleAcheminement": "VELLEFAUX", - "nomCommune": "VELLEFAUX" + "codePostal": "02420", + "codeCommune": "02451", + "libelleAcheminement": "MAGNY LA FOSSE", + "nomCommune": "MAGNY LA FOSSE" }, { - "codePostal": "70700", - "codeCommune": "70538", - "libelleAcheminement": "VELLEMOZ", - "nomCommune": "VELLEMOZ" + "codePostal": "03140", + "codeCommune": "03053", + "libelleAcheminement": "CHANTELLE", + "nomCommune": "CHANTELLE" }, { - "codePostal": "70100", - "codeCommune": "70542", - "libelleAcheminement": "VENERE", - "nomCommune": "VENERE" + "codePostal": "02190", + "codeCommune": "02454", + "libelleAcheminement": "LA MALMAISON", + "nomCommune": "LA MALMAISON" }, { - "codePostal": "70700", - "codeCommune": "70557", - "libelleAcheminement": "VILLEFRANCON", - "nomCommune": "VILLEFRANCON" + "codePostal": "03390", + "codeCommune": "03058", + "libelleAcheminement": "CHAPPES", + "nomCommune": "CHAPPES" }, { - "codePostal": "70400", - "codeCommune": "70567", - "libelleAcheminement": "VILLERS SUR SAULNOT", - "nomCommune": "VILLERS SUR SAULNOT" + "codePostal": "02300", + "codeCommune": "02456", + "libelleAcheminement": "MANICAMP", + "nomCommune": "MANICAMP" }, { - "codePostal": "70240", - "codeCommune": "70569", - "libelleAcheminement": "VILORY", - "nomCommune": "VILORY" + "codePostal": "03110", + "codeCommune": "03060", + "libelleAcheminement": "CHARMEIL", + "nomCommune": "CHARMEIL" }, { - "codePostal": "70200", - "codeCommune": "70577", - "libelleAcheminement": "VOUHENANS", - "nomCommune": "VOUHENANS" + "codePostal": "02300", + "codeCommune": "02461", + "libelleAcheminement": "MAREST DAMPCOURT", + "nomCommune": "MAREST DAMPCOURT" }, { - "codePostal": "70130", - "codeCommune": "70580", - "libelleAcheminement": "VY LE FERROUX", - "nomCommune": "VY LE FERROUX" + "codePostal": "03320", + "codeCommune": "03064", + "libelleAcheminement": "CHATEAU SUR ALLIER", + "nomCommune": "CHATEAU SUR ALLIER" }, { - "codePostal": "71350", - "codeCommune": "71003", - "libelleAcheminement": "ALLEREY SUR SAONE", - "nomCommune": "ALLEREY SUR SAONE" + "codePostal": "02500", + "codeCommune": "02470", + "libelleAcheminement": "MARTIGNY", + "nomCommune": "MARTIGNY" }, { - "codePostal": "71370", - "codeCommune": "71023", - "libelleAcheminement": "BAUDRIERES", - "nomCommune": "BAUDRIERES" + "codePostal": "03220", + "codeCommune": "03067", + "libelleAcheminement": "CHATELPERRON", + "nomCommune": "CHATELPERRON" }, { - "codePostal": "71110", - "codeCommune": "71024", - "libelleAcheminement": "BAUGY", - "nomCommune": "BAUGY" + "codePostal": "02820", + "codeCommune": "02472", + "libelleAcheminement": "MAUREGNY EN HAYE", + "nomCommune": "MAUREGNY EN HAYE" }, { - "codePostal": "71960", - "codeCommune": "71032", - "libelleAcheminement": "BERZE LA VILLE", - "nomCommune": "BERZE LA VILLE" + "codePostal": "03230", + "codeCommune": "03074", + "libelleAcheminement": "CHEVAGNES", + "nomCommune": "CHEVAGNES" }, { - "codePostal": "71260", - "codeCommune": "71035", - "libelleAcheminement": "BISSY LA MACONNAISE", - "nomCommune": "BISSY LA MACONNAISE" + "codePostal": "02800", + "codeCommune": "02473", + "libelleAcheminement": "MAYOT", + "nomCommune": "MAYOT" }, { - "codePostal": "71460", - "codeCommune": "71036", - "libelleAcheminement": "BISSY SOUS UXELLES", - "nomCommune": "BISSY SOUS UXELLES" + "codePostal": "03140", + "codeCommune": "03075", + "libelleAcheminement": "CHEZELLE", + "nomCommune": "CHEZELLE" }, { - "codePostal": "71450", - "codeCommune": "71040", - "libelleAcheminement": "BLANZY", - "nomCommune": "BLANZY" + "codePostal": "02700", + "codeCommune": "02474", + "libelleAcheminement": "MENNESSIS", + "nomCommune": "MENNESSIS" }, { - "codePostal": "71460", - "codeCommune": "71058", - "libelleAcheminement": "BRESSE SUR GROSNE", - "nomCommune": "BRESSE SUR GROSNE" + "codePostal": "03230", + "codeCommune": "03076", + "libelleAcheminement": "CHEZY", + "nomCommune": "CHEZY" }, { - "codePostal": "71460", - "codeCommune": "71067", - "libelleAcheminement": "BURNAND", - "nomCommune": "BURNAND" + "codePostal": "02240", + "codeCommune": "02483", + "libelleAcheminement": "MEZIERES SUR OISE", + "nomCommune": "MEZIERES SUR OISE" }, { - "codePostal": "71570", - "codeCommune": "71074", - "libelleAcheminement": "CHAINTRE", - "nomCommune": "CHAINTRE" + "codePostal": "03500", + "codeCommune": "03083", + "libelleAcheminement": "CONTIGNY", + "nomCommune": "CONTIGNY" }, { - "codePostal": "71120", - "codeCommune": "71086", - "libelleAcheminement": "CHANGY", - "nomCommune": "CHANGY" + "codePostal": "02350", + "codeCommune": "02486", + "libelleAcheminement": "MISSY LES PIERREPONT", + "nomCommune": "MISSY LES PIERREPONT" }, { - "codePostal": "71240", - "codeCommune": "71089", - "libelleAcheminement": "LA CHAPELLE DE BRAGNY", - "nomCommune": "LA CHAPELLE DE BRAGNY" + "codePostal": "03140", + "codeCommune": "03096", + "libelleAcheminement": "DENEUILLE LES CHANTELLE", + "nomCommune": "DENEUILLE LES CHANTELLE" }, { - "codePostal": "71570", - "codeCommune": "71090", - "libelleAcheminement": "LA CHAPELLE DE GUINCHAY", - "nomCommune": "LA CHAPELLE DE GUINCHAY" + "codePostal": "02270", + "codeCommune": "02491", + "libelleAcheminement": "MONCEAU LE NEUF ET FAUCOUZY", + "nomCommune": "MONCEAU LE NEUF ET FAUCOUZY" }, { - "codePostal": "71800", - "codeCommune": "71095", - "libelleAcheminement": "LA CHAPELLE SOUS DUN", - "nomCommune": "LA CHAPELLE SOUS DUN" + "codePostal": "03130", + "codeCommune": "03103", + "libelleAcheminement": "LE DONJON", + "nomCommune": "LE DONJON" }, { - "codePostal": "71270", - "codeCommune": "71101", - "libelleAcheminement": "CHARETTE VARENNES", - "nomCommune": "CHARETTE VARENNES" + "codePostal": "02470", + "codeCommune": "02496", + "libelleAcheminement": "MONNES", + "nomCommune": "MONNES" }, { - "codePostal": "71350", - "codeCommune": "71104", - "libelleAcheminement": "CHARNAY LES CHALON", - "nomCommune": "CHARNAY LES CHALON" + "codePostal": "03110", + "codeCommune": "03109", + "libelleAcheminement": "ESCUROLLES", + "nomCommune": "ESCUROLLES" }, { - "codePostal": "71570", - "codeCommune": "71108", - "libelleAcheminement": "CHASSELAS", - "nomCommune": "CHASSELAS" + "codePostal": "02000", + "codeCommune": "02497", + "libelleAcheminement": "MONS EN LAONNOIS", + "nomCommune": "MONS EN LAONNOIS" }, { - "codePostal": "71740", - "codeCommune": "71113", - "libelleAcheminement": "CHATEAUNEUF", - "nomCommune": "CHATEAUNEUF" + "codePostal": "03250", + "codeCommune": "03113", + "libelleAcheminement": "FERRIERES SUR SICHON", + "nomCommune": "FERRIERES SUR SICHON" }, { - "codePostal": "71340", - "codeCommune": "71123", - "libelleAcheminement": "CHENAY LE CHATEL", - "nomCommune": "CHENAY LE CHATEL" + "codePostal": "02000", + "codeCommune": "02499", + "libelleAcheminement": "MONTBAVIN", + "nomCommune": "MONTBAVIN" }, { - "codePostal": "71390", - "codeCommune": "71124", - "libelleAcheminement": "CHENOVES", - "nomCommune": "CHENOVES" + "codePostal": "03800", + "codeCommune": "03118", + "libelleAcheminement": "GANNAT", + "nomCommune": "GANNAT" }, { - "codePostal": "71960", - "codeCommune": "71126", - "libelleAcheminement": "CHEVAGNY LES CHEVRIERES", - "nomCommune": "CHEVAGNY LES CHEVRIERES" + "codePostal": "02110", + "codeCommune": "02511", + "libelleAcheminement": "MONTIGNY EN ARROUAISE", + "nomCommune": "MONTIGNY EN ARROUAISE" }, { - "codePostal": "71800", - "codeCommune": "71133", - "libelleAcheminement": "LA CLAYETTE", - "nomCommune": "LA CLAYETTE" + "codePostal": "03230", + "codeCommune": "03120", + "libelleAcheminement": "GARNAT SUR ENGIEVRE", + "nomCommune": "GARNAT SUR ENGIEVRE" }, { - "codePostal": "71540", - "codeCommune": "71144", - "libelleAcheminement": "CORDESSE", - "nomCommune": "CORDESSE" + "codePostal": "02330", + "codeCommune": "02518", + "libelleAcheminement": "MONTLEVON", + "nomCommune": "MONTLEVON" }, { - "codePostal": "71460", - "codeCommune": "71145", - "libelleAcheminement": "CORMATIN", - "nomCommune": "CORMATIN" + "codePostal": "03190", + "codeCommune": "03127", + "libelleAcheminement": "HERISSON", + "nomCommune": "HERISSON" }, { - "codePostal": "71250", - "codeCommune": "71146", - "libelleAcheminement": "CORTAMBERT", - "nomCommune": "CORTAMBERT" + "codePostal": "02100", + "codeCommune": "02525", + "libelleAcheminement": "MORCOURT", + "nomCommune": "MORCOURT" }, { - "codePostal": "71170", - "codeCommune": "71148", - "libelleAcheminement": "COUBLANC", - "nomCommune": "COUBLANC" + "codePostal": "03600", + "codeCommune": "03129", + "libelleAcheminement": "HYDS", + "nomCommune": "HYDS" }, { - "codePostal": "71760", - "codeCommune": "71152", - "libelleAcheminement": "CRESSY SUR SOMME", - "nomCommune": "CRESSY SUR SOMME" + "codePostal": "02290", + "codeCommune": "02527", + "libelleAcheminement": "MORSAIN", + "nomCommune": "MORSAIN" }, { - "codePostal": "71260", - "codeCommune": "71156", - "libelleAcheminement": "CRUZILLE", - "nomCommune": "CRUZILLE" + "codePostal": "03120", + "codeCommune": "03138", + "libelleAcheminement": "LAPALISSE", + "nomCommune": "LAPALISSE" }, { - "codePostal": "71290", - "codeCommune": "71158", - "libelleAcheminement": "CUISERY", - "nomCommune": "CUISERY" + "codePostal": "02160", + "codeCommune": "02530", + "libelleAcheminement": "MOULINS", + "nomCommune": "MOULINS" }, { - "codePostal": "71800", - "codeCommune": "71160", - "libelleAcheminement": "CURBIGNY", - "nomCommune": "CURBIGNY" + "codePostal": "03250", + "codeCommune": "03141", + "libelleAcheminement": "LAVOINE", + "nomCommune": "LAVOINE" }, { - "codePostal": "71400", - "codeCommune": "71162", - "libelleAcheminement": "CURGY", - "nomCommune": "CURGY" + "codePostal": "02160", + "codeCommune": "02531", + "libelleAcheminement": "MOUSSY VERNEUIL", + "nomCommune": "MOUSSY VERNEUIL" }, { - "codePostal": "71460", - "codeCommune": "71164", - "libelleAcheminement": "CURTIL SOUS BURNAND", - "nomCommune": "CURTIL SOUS BURNAND" + "codePostal": "03230", + "codeCommune": "03156", + "libelleAcheminement": "LUSIGNY", + "nomCommune": "LUSIGNY" }, { - "codePostal": "71550", - "codeCommune": "71165", - "libelleAcheminement": "CUSSY EN MORVAN", - "nomCommune": "CUSSY EN MORVAN" + "codePostal": "02140", + "codeCommune": "02535", + "libelleAcheminement": "NAMPCELLES LA COUR", + "nomCommune": "NAMPCELLES LA COUR" }, { - "codePostal": "71620", - "codeCommune": "71167", - "libelleAcheminement": "DAMEREY", - "nomCommune": "DAMEREY" + "codePostal": "03190", + "codeCommune": "03158", + "libelleAcheminement": "HAUT BOCAGE", + "nomCommune": "HAUT BOCAGE" }, { - "codePostal": "71330", - "codeCommune": "71173", - "libelleAcheminement": "DEVROUZE", - "nomCommune": "DEVROUZE" + "codePostal": "02420", + "codeCommune": "02539", + "libelleAcheminement": "NAUROY", + "nomCommune": "NAUROY" }, { - "codePostal": "71160", - "codeCommune": "71176", - "libelleAcheminement": "DIGOIN", - "nomCommune": "DIGOIN" + "codePostal": "03190", + "codeCommune": "03158", + "libelleAcheminement": "HAUT BOCAGE", + "nomCommune": "HAUT BOCAGE" }, { - "codePostal": "71520", - "codeCommune": "71178", - "libelleAcheminement": "DOMPIERRE LES ORMES", - "nomCommune": "DOMPIERRE LES ORMES" + "codePostal": "02250", + "codeCommune": "02545", + "libelleAcheminement": "LA NEUVILLE BOSMONT", + "nomCommune": "LA NEUVILLE BOSMONT" }, { - "codePostal": "71520", - "codeCommune": "71178", - "libelleAcheminement": "DOMPIERRE LES ORMES", - "nomCommune": "DOMPIERRE LES ORMES" + "codePostal": "03270", + "codeCommune": "03163", + "libelleAcheminement": "MARIOL", + "nomCommune": "MARIOL" }, { - "codePostal": "71510", - "codeCommune": "71191", - "libelleAcheminement": "ESSERTENNE", - "nomCommune": "ESSERTENNE" + "codePostal": "02250", + "codeCommune": "02547", + "libelleAcheminement": "LA NEUVILLE HOUSSET", + "nomCommune": "LA NEUVILLE HOUSSET" }, { - "codePostal": "71530", - "codeCommune": "71204", - "libelleAcheminement": "FRAGNES LA LOYERE", - "nomCommune": "FRAGNES LA LOYERE" + "codePostal": "03800", + "codeCommune": "03164", + "libelleAcheminement": "LE MAYET D ECOLE", + "nomCommune": "LE MAYET D ECOLE" }, { - "codePostal": "71460", - "codeCommune": "71216", - "libelleAcheminement": "GERMAGNY", - "nomCommune": "GERMAGNY" + "codePostal": "02450", + "codeCommune": "02548", + "libelleAcheminement": "LA NEUVILLE LES DORENGT", + "nomCommune": "LA NEUVILLE LES DORENGT" }, { - "codePostal": "71800", - "codeCommune": "71218", - "libelleAcheminement": "GIBLES", - "nomCommune": "GIBLES" + "codePostal": "03250", + "codeCommune": "03165", + "libelleAcheminement": "LE MAYET DE MONTAGNE", + "nomCommune": "LE MAYET DE MONTAGNE" }, { - "codePostal": "71240", - "codeCommune": "71219", - "libelleAcheminement": "GIGNY SUR SAONE", - "nomCommune": "GIGNY SUR SAONE" + "codePostal": "02310", + "codeCommune": "02555", + "libelleAcheminement": "NOGENT L ARTAUD", + "nomCommune": "NOGENT L ARTAUD" }, { - "codePostal": "71640", - "codeCommune": "71221", - "libelleAcheminement": "GIVRY", - "nomCommune": "GIVRY" + "codePostal": "03800", + "codeCommune": "03166", + "libelleAcheminement": "MAZERIER", + "nomCommune": "MAZERIER" }, { - "codePostal": "71390", - "codeCommune": "71225", - "libelleAcheminement": "GRANGES", - "nomCommune": "GRANGES" + "codePostal": "02270", + "codeCommune": "02559", + "libelleAcheminement": "NOUVION ET CATILLON", + "nomCommune": "NOUVION ET CATILLON" }, { - "codePostal": "71760", - "codeCommune": "71227", - "libelleAcheminement": "GRURY", - "nomCommune": "GRURY" + "codePostal": "03300", + "codeCommune": "03174", + "libelleAcheminement": "MOLLES", + "nomCommune": "MOLLES" }, { - "codePostal": "71600", - "codeCommune": "71232", - "libelleAcheminement": "HAUTEFOND", - "nomCommune": "HAUTEFOND" + "codePostal": "02120", + "codeCommune": "02563", + "libelleAcheminement": "NOYALES", + "nomCommune": "NOYALES" }, { - "codePostal": "71290", - "codeCommune": "71234", - "libelleAcheminement": "HUILLY SUR SEILLE", - "nomCommune": "HUILLY SUR SEILLE" + "codePostal": "03000", + "codeCommune": "03184", + "libelleAcheminement": "MONTILLY", + "nomCommune": "MONTILLY" }, { - "codePostal": "71460", - "codeCommune": "71242", - "libelleAcheminement": "JONCY", - "nomCommune": "JONCY" + "codePostal": "02160", + "codeCommune": "02565", + "libelleAcheminement": "OEUILLY", + "nomCommune": "OEUILLY" }, { - "codePostal": "71480", - "codeCommune": "71243", - "libelleAcheminement": "JOUDES", - "nomCommune": "JOUDES" + "codePostal": "03100", + "codeCommune": "03185", + "libelleAcheminement": "MONTLUCON", + "nomCommune": "MONTLUCON" }, { - "codePostal": "71240", - "codeCommune": "71245", - "libelleAcheminement": "JUGY", - "nomCommune": "JUGY" + "codePostal": "02600", + "codeCommune": "02568", + "libelleAcheminement": "OIGNY EN VALOIS", + "nomCommune": "OIGNY EN VALOIS" }, { - "codePostal": "71440", - "codeCommune": "71246", - "libelleAcheminement": "JUIF", - "nomCommune": "JUIF" + "codePostal": "03390", + "codeCommune": "03186", + "libelleAcheminement": "MONTMARAULT", + "nomCommune": "MONTMARAULT" }, { - "codePostal": "71270", - "codeCommune": "71254", - "libelleAcheminement": "LAYS SUR LE DOUBS", - "nomCommune": "LAYS SUR LE DOUBS" + "codePostal": "02200", + "codeCommune": "02593", + "libelleAcheminement": "PASLY", + "nomCommune": "PASLY" }, { - "codePostal": "71260", - "codeCommune": "71267", - "libelleAcheminement": "LUGNY", - "nomCommune": "LUGNY" + "codePostal": "03170", + "codeCommune": "03189", + "libelleAcheminement": "MONTVICQ", + "nomCommune": "MONTVICQ" }, { - "codePostal": "71000", - "codeCommune": "71270", - "libelleAcheminement": "MACON", - "nomCommune": "MACON" + "codePostal": "02190", + "codeCommune": "02601", + "libelleAcheminement": "PIGNICOURT", + "nomCommune": "PIGNICOURT" }, { - "codePostal": "71340", - "codeCommune": "71271", - "libelleAcheminement": "MAILLY", - "nomCommune": "MAILLY" + "codePostal": "03330", + "codeCommune": "03194", + "libelleAcheminement": "NAVES", + "nomCommune": "NAVES" }, { - "codePostal": "71140", - "codeCommune": "71273", - "libelleAcheminement": "MALTAT", - "nomCommune": "MALTAT" + "codePostal": "02210", + "codeCommune": "02606", + "libelleAcheminement": "LE PLESSIER HULEU", + "nomCommune": "LE PLESSIER HULEU" }, { - "codePostal": "71240", - "codeCommune": "71274", - "libelleAcheminement": "MANCEY", - "nomCommune": "MANCEY" + "codePostal": "03410", + "codeCommune": "03211", + "libelleAcheminement": "PREMILHAT", + "nomCommune": "PREMILHAT" }, { - "codePostal": "71300", - "codeCommune": "71278", - "libelleAcheminement": "MARIGNY", - "nomCommune": "MARIGNY" + "codePostal": "02860", + "codeCommune": "02609", + "libelleAcheminement": "PLOYART ET VAURSEINE", + "nomCommune": "PLOYART ET VAURSEINE" }, { - "codePostal": "71300", - "codeCommune": "71286", - "libelleAcheminement": "MARY", - "nomCommune": "MARY" + "codePostal": "03160", + "codeCommune": "03218", + "libelleAcheminement": "ST AUBIN LE MONIAL", + "nomCommune": "ST AUBIN LE MONIAL" }, { - "codePostal": "71520", - "codeCommune": "71289", - "libelleAcheminement": "MATOUR", - "nomCommune": "MATOUR" + "codePostal": "02160", + "codeCommune": "02612", + "libelleAcheminement": "PONT ARCY", + "nomCommune": "PONT ARCY" }, { - "codePostal": "71310", - "codeCommune": "71295", - "libelleAcheminement": "MERVANS", - "nomCommune": "MERVANS" + "codePostal": "03390", + "codeCommune": "03219", + "libelleAcheminement": "ST BONNET DE FOUR", + "nomCommune": "ST BONNET DE FOUR" }, { - "codePostal": "71960", - "codeCommune": "71299", - "libelleAcheminement": "MILLY LAMARTINE", - "nomCommune": "MILLY LAMARTINE" + "codePostal": "02110", + "codeCommune": "02618", + "libelleAcheminement": "PREMONT", + "nomCommune": "PREMONT" }, { - "codePostal": "71480", - "codeCommune": "71300", - "libelleAcheminement": "LE MIROIR", - "nomCommune": "LE MIROIR" + "codePostal": "03250", + "codeCommune": "03224", + "libelleAcheminement": "ST CLEMENT", + "nomCommune": "ST CLEMENT" }, { - "codePostal": "71240", - "codeCommune": "71308", - "libelleAcheminement": "MONTCEAUX RAGNY", - "nomCommune": "MONTCEAUX RAGNY" + "codePostal": "02120", + "codeCommune": "02625", + "libelleAcheminement": "PROIX", + "nomCommune": "PROIX" }, { - "codePostal": "71710", - "codeCommune": "71309", - "libelleAcheminement": "MONTCENIS", - "nomCommune": "MONTCENIS" + "codePostal": "03400", + "codeCommune": "03229", + "libelleAcheminement": "ST ENNEMOND", + "nomCommune": "ST ENNEMOND" }, { - "codePostal": "71270", - "codeCommune": "71315", - "libelleAcheminement": "MONT LES SEURRE", - "nomCommune": "MONT LES SEURRE" + "codePostal": "02260", + "codeCommune": "02650", + "libelleAcheminement": "ROCQUIGNY", + "nomCommune": "ROCQUIGNY" }, { - "codePostal": "71290", - "codeCommune": "71332", - "libelleAcheminement": "ORMES", - "nomCommune": "ORMES" + "codePostal": "03300", + "codeCommune": "03230", + "libelleAcheminement": "ST ETIENNE DE VICQ", + "nomCommune": "ST ETIENNE DE VICQ" }, { - "codePostal": "71700", - "codeCommune": "71338", - "libelleAcheminement": "OZENAY", - "nomCommune": "OZENAY" + "codePostal": "02800", + "codeCommune": "02651", + "libelleAcheminement": "ROGECOURT", + "nomCommune": "ROGECOURT" }, { - "codePostal": "71160", - "codeCommune": "71348", - "libelleAcheminement": "PERRIGNY SUR LOIRE", - "nomCommune": "PERRIGNY SUR LOIRE" + "codePostal": "03420", + "codeCommune": "03231", + "libelleAcheminement": "ST FARGEOL", + "nomCommune": "ST FARGEOL" }, { - "codePostal": "71270", - "codeCommune": "71351", - "libelleAcheminement": "PIERRE DE BRESSE", - "nomCommune": "PIERRE DE BRESSE" + "codePostal": "02130", + "codeCommune": "02655", + "libelleAcheminement": "RONCHERES", + "nomCommune": "RONCHERES" }, { - "codePostal": "71270", - "codeCommune": "71357", - "libelleAcheminement": "POURLANS", - "nomCommune": "POURLANS" + "codePostal": "03340", + "codeCommune": "03234", + "libelleAcheminement": "ST GERAND DE VAUX", + "nomCommune": "ST GERAND DE VAUX" }, { - "codePostal": "71290", - "codeCommune": "71359", - "libelleAcheminement": "PRETY", - "nomCommune": "PRETY" + "codePostal": "02140", + "codeCommune": "02657", + "libelleAcheminement": "ROUGERIES", + "nomCommune": "ROUGERIES" }, { - "codePostal": "71960", - "codeCommune": "71360", - "libelleAcheminement": "PRISSE", - "nomCommune": "PRISSE" + "codePostal": "03390", + "codeCommune": "03256", + "libelleAcheminement": "ST PRIEST EN MURAT", + "nomCommune": "ST PRIEST EN MURAT" }, { - "codePostal": "71470", - "codeCommune": "71373", - "libelleAcheminement": "ROMENAY", - "nomCommune": "ROMENAY" + "codePostal": "02360", + "codeCommune": "02666", + "libelleAcheminement": "ROZOY SUR SERRE", + "nomCommune": "ROZOY SUR SERRE" }, { - "codePostal": "71550", - "codeCommune": "71376", - "libelleAcheminement": "ROUSSILLON EN MORVAN", - "nomCommune": "ROUSSILLON EN MORVAN" + "codePostal": "03120", + "codeCommune": "03257", + "libelleAcheminement": "ST PRIX", + "nomCommune": "ST PRIX" }, { - "codePostal": "71150", - "codeCommune": "71378", - "libelleAcheminement": "RULLY", - "nomCommune": "RULLY" + "codePostal": "02120", + "codeCommune": "02668", + "libelleAcheminement": "SAINS RICHAUMONT", + "nomCommune": "SAINS RICHAUMONT" }, { - "codePostal": "71250", - "codeCommune": "71381", - "libelleAcheminement": "SAILLY", - "nomCommune": "SAILLY" + "codePostal": "03270", + "codeCommune": "03264", + "libelleAcheminement": "ST YORRE", + "nomCommune": "ST YORRE" }, { - "codePostal": "71220", - "codeCommune": "71387", - "libelleAcheminement": "ST ANDRE LE DESERT", - "nomCommune": "ST ANDRE LE DESERT" + "codePostal": "02820", + "codeCommune": "02675", + "libelleAcheminement": "STE CROIX", + "nomCommune": "STE CROIX" }, { - "codePostal": "71340", - "codeCommune": "71393", - "libelleAcheminement": "ST BONNET DE CRAY", - "nomCommune": "ST BONNET DE CRAY" + "codePostal": "03390", + "codeCommune": "03270", + "libelleAcheminement": "SAZERET", + "nomCommune": "SAZERET" }, { - "codePostal": "71220", - "codeCommune": "71394", - "libelleAcheminement": "ST BONNET DE JOUX", - "nomCommune": "ST BONNET DE JOUX" + "codePostal": "02330", + "codeCommune": "02677", + "libelleAcheminement": "ST EUGENE", + "nomCommune": "ST EUGENE" }, { - "codePostal": "71370", - "codeCommune": "71398", - "libelleAcheminement": "ST CHRISTOPHE EN BRESSE", - "nomCommune": "ST CHRISTOPHE EN BRESSE" + "codePostal": "03700", + "codeCommune": "03271", + "libelleAcheminement": "SERBANNES", + "nomCommune": "SERBANNES" }, { - "codePostal": "71800", - "codeCommune": "71399", - "libelleAcheminement": "ST CHRISTOPHE EN BRIONNAIS", - "nomCommune": "ST CHRISTOPHE EN BRIONNAIS" + "codePostal": "02250", + "codeCommune": "02689", + "libelleAcheminement": "ST PIERREMONT", + "nomCommune": "ST PIERREMONT" }, { - "codePostal": "71470", - "codeCommune": "71401", - "libelleAcheminement": "STE CROIX EN BRESSE", - "nomCommune": "STE CROIX EN BRESSE" + "codePostal": "03450", + "codeCommune": "03276", + "libelleAcheminement": "SUSSAT", + "nomCommune": "SUSSAT" }, { - "codePostal": "71210", - "codeCommune": "71412", - "libelleAcheminement": "ST EUSEBE", - "nomCommune": "ST EUSEBE" + "codePostal": "02840", + "codeCommune": "02697", + "libelleAcheminement": "SAMOUSSY", + "nomCommune": "SAMOUSSY" }, { - "codePostal": "71400", - "codeCommune": "71414", - "libelleAcheminement": "ST FORGEOT", - "nomCommune": "ST FORGEOT" + "codePostal": "03140", + "codeCommune": "03278", + "libelleAcheminement": "TAXAT SENAT", + "nomCommune": "TAXAT SENAT" }, { - "codePostal": "71260", - "codeCommune": "71416", - "libelleAcheminement": "ST GENGOUX DE SCISSE", - "nomCommune": "ST GENGOUX DE SCISSE" + "codePostal": "02130", + "codeCommune": "02699", + "libelleAcheminement": "SAPONAY", + "nomCommune": "SAPONAY" }, { - "codePostal": "71490", - "codeCommune": "71424", - "libelleAcheminement": "ST GERVAIS SUR COUCHES", - "nomCommune": "ST GERVAIS SUR COUCHES" + "codePostal": "03220", + "codeCommune": "03284", + "libelleAcheminement": "THIONNE", + "nomCommune": "THIONNE" }, { - "codePostal": "71510", - "codeCommune": "71425", - "libelleAcheminement": "ST GILLES", - "nomCommune": "ST GILLES" + "codePostal": "02110", + "codeCommune": "02703", + "libelleAcheminement": "SEBONCOURT", + "nomCommune": "SEBONCOURT" }, { - "codePostal": "71210", - "codeCommune": "71436", - "libelleAcheminement": "ST LAURENT D ANDENAY", - "nomCommune": "ST LAURENT D ANDENAY" + "codePostal": "03430", + "codeCommune": "03285", + "libelleAcheminement": "TORTEZAIS", + "nomCommune": "TORTEZAIS" }, { - "codePostal": "71510", - "codeCommune": "71442", - "libelleAcheminement": "ST LEGER SUR DHEUNE", - "nomCommune": "ST LEGER SUR DHEUNE" + "codePostal": "02410", + "codeCommune": "02707", + "libelleAcheminement": "SEPTVAUX", + "nomCommune": "SEPTVAUX" }, { - "codePostal": "71380", - "codeCommune": "71445", - "libelleAcheminement": "ST MARCEL", - "nomCommune": "ST MARCEL" + "codePostal": "03400", + "codeCommune": "03286", + "libelleAcheminement": "TOULON SUR ALLIER", + "nomCommune": "TOULON SUR ALLIER" }, { - "codePostal": "71390", - "codeCommune": "71449", - "libelleAcheminement": "ST MARTIN D AUXY", - "nomCommune": "ST MARTIN D AUXY" + "codePostal": "02420", + "codeCommune": "02708", + "libelleAcheminement": "SEQUEHART", + "nomCommune": "SEQUEHART" }, { - "codePostal": "71390", - "codeCommune": "71471", - "libelleAcheminement": "ST PRIVE", - "nomCommune": "ST PRIVE" + "codePostal": "03220", + "codeCommune": "03289", + "libelleAcheminement": "TRETEAU", + "nomCommune": "TRETEAU" }, { - "codePostal": "71320", - "codeCommune": "71474", - "libelleAcheminement": "STE RADEGONDE", - "nomCommune": "STE RADEGONDE" + "codePostal": "02220", + "codeCommune": "02714", + "libelleAcheminement": "SERMOISE", + "nomCommune": "SERMOISE" }, { - "codePostal": "71100", - "codeCommune": "71475", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "03330", + "codeCommune": "03295", + "libelleAcheminement": "VALIGNAT", + "nomCommune": "VALIGNAT" }, { - "codePostal": "71230", - "codeCommune": "71477", - "libelleAcheminement": "ST ROMAIN SOUS GOURDON", - "nomCommune": "ST ROMAIN SOUS GOURDON" + "codePostal": "02300", + "codeCommune": "02719", + "libelleAcheminement": "SINCENY", + "nomCommune": "SINCENY" }, { - "codePostal": "71200", - "codeCommune": "71479", - "libelleAcheminement": "ST SERNIN DU BOIS", - "nomCommune": "ST SERNIN DU BOIS" + "codePostal": "03110", + "codeCommune": "03304", + "libelleAcheminement": "VENDAT", + "nomCommune": "VENDAT" }, { - "codePostal": "71570", - "codeCommune": "71481", - "libelleAcheminement": "ST SYMPHORIEN D ANCELLES", - "nomCommune": "ST SYMPHORIEN D ANCELLES" + "codePostal": "02340", + "codeCommune": "02723", + "libelleAcheminement": "SOIZE", + "nomCommune": "SOIZE" }, { - "codePostal": "71570", - "codeCommune": "71481", - "libelleAcheminement": "ST SYMPHORIEN D ANCELLES", - "nomCommune": "ST SYMPHORIEN D ANCELLES" + "codePostal": "03200", + "codeCommune": "03306", + "libelleAcheminement": "LE VERNET", + "nomCommune": "LE VERNET" }, { - "codePostal": "71430", - "codeCommune": "71490", - "libelleAcheminement": "ST VINCENT BRAGNY", - "nomCommune": "ST VINCENT BRAGNY" + "codePostal": "02580", + "codeCommune": "02728", + "libelleAcheminement": "SORBAIS", + "nomCommune": "SORBAIS" }, { - "codePostal": "71600", - "codeCommune": "71491", - "libelleAcheminement": "ST YAN", - "nomCommune": "ST YAN" + "codePostal": "03390", + "codeCommune": "03308", + "libelleAcheminement": "VERNUSSE", + "nomCommune": "VERNUSSE" }, { - "codePostal": "71250", - "codeCommune": "71495", - "libelleAcheminement": "SALORNAY SUR GUYE", - "nomCommune": "SALORNAY SUR GUYE" + "codePostal": "02600", + "codeCommune": "02734", + "libelleAcheminement": "TAILLEFONTAINE", + "nomCommune": "TAILLEFONTAINE" }, { - "codePostal": "71000", - "codeCommune": "71497", - "libelleAcheminement": "SANCE", - "nomCommune": "SANCE" + "codePostal": "03200", + "codeCommune": "03310", + "libelleAcheminement": "VICHY", + "nomCommune": "VICHY" }, { - "codePostal": "71400", - "codeCommune": "71509", - "libelleAcheminement": "LA CELLE EN MORVAN", - "nomCommune": "LA CELLE EN MORVAN" + "codePostal": "02700", + "codeCommune": "02738", + "libelleAcheminement": "TERGNIER", + "nomCommune": "TERGNIER" }, { - "codePostal": "71110", - "codeCommune": "71510", - "libelleAcheminement": "SEMUR EN BRIONNAIS", - "nomCommune": "SEMUR EN BRIONNAIS" + "codePostal": "03400", + "codeCommune": "03321", + "libelleAcheminement": "YZEURE", + "nomCommune": "YZEURE" }, { - "codePostal": "71250", - "codeCommune": "71521", - "libelleAcheminement": "SIGY LE CHATEL", - "nomCommune": "SIGY LE CHATEL" + "codePostal": "02140", + "codeCommune": "02740", + "libelleAcheminement": "THENAILLES", + "nomCommune": "THENAILLES" }, { - "codePostal": "71540", - "codeCommune": "71527", - "libelleAcheminement": "SOMMANT", - "nomCommune": "SOMMANT" + "codePostal": "04510", + "codeCommune": "04001", + "libelleAcheminement": "AIGLUN", + "nomCommune": "AIGLUN" }, { - "codePostal": "71360", - "codeCommune": "71530", - "libelleAcheminement": "SULLY", - "nomCommune": "SULLY" + "codePostal": "02340", + "codeCommune": "02743", + "libelleAcheminement": "LE THUEL", + "nomCommune": "LE THUEL" }, { - "codePostal": "71400", - "codeCommune": "71535", - "libelleAcheminement": "TAVERNAY", - "nomCommune": "TAVERNAY" + "codePostal": "04170", + "codeCommune": "04005", + "libelleAcheminement": "ALLONS", + "nomCommune": "ALLONS" }, { - "codePostal": "71520", - "codeCommune": "71546", - "libelleAcheminement": "TRAMBLY", - "nomCommune": "TRAMBLY" + "codePostal": "02490", + "codeCommune": "02747", + "libelleAcheminement": "TREFCON", + "nomCommune": "TREFCON" }, { - "codePostal": "71290", - "codeCommune": "71549", - "libelleAcheminement": "LA TRUCHERE", - "nomCommune": "LA TRUCHERE" + "codePostal": "04250", + "codeCommune": "04023", + "libelleAcheminement": "BAYONS", + "nomCommune": "BAYONS" }, { - "codePostal": "71130", - "codeCommune": "71552", - "libelleAcheminement": "UXEAU", - "nomCommune": "UXEAU" + "codePostal": "02120", + "codeCommune": "02757", + "libelleAcheminement": "VADENCOURT", + "nomCommune": "VADENCOURT" }, { - "codePostal": "71800", - "codeCommune": "71559", - "libelleAcheminement": "VARENNES SOUS DUN", - "nomCommune": "VARENNES SOUS DUN" + "codePostal": "04330", + "codeCommune": "04030", + "libelleAcheminement": "BLIEUX", + "nomCommune": "BLIEUX" }, { - "codePostal": "71800", - "codeCommune": "71561", - "libelleAcheminement": "VAUBAN", - "nomCommune": "VAUBAN" + "codePostal": "02190", + "codeCommune": "02761", + "libelleAcheminement": "VARISCOURT", + "nomCommune": "VARISCOURT" }, { - "codePostal": "71240", - "codeCommune": "71572", - "libelleAcheminement": "VERS", - "nomCommune": "VERS" + "codePostal": "04340", + "codeCommune": "04033", + "libelleAcheminement": "UBAYE SERRE PONCON", + "nomCommune": "UBAYE SERRE PONCON" }, { - "codePostal": "71500", - "codeCommune": "71580", - "libelleAcheminement": "VINCELLES", - "nomCommune": "VINCELLES" + "codePostal": "02590", + "codeCommune": "02772", + "libelleAcheminement": "VAUX EN VERMANDOIS", + "nomCommune": "VAUX EN VERMANDOIS" }, { - "codePostal": "71260", - "codeCommune": "71584", - "libelleAcheminement": "VIRE", - "nomCommune": "VIRE" + "codePostal": "04120", + "codeCommune": "04039", + "libelleAcheminement": "CASTELLANE", + "nomCommune": "CASTELLANE" }, { - "codePostal": "71530", - "codeCommune": "71585", - "libelleAcheminement": "VIREY LE GRAND", - "nomCommune": "VIREY LE GRAND" + "codePostal": "02540", + "codeCommune": "02777", + "libelleAcheminement": "VENDIERES", + "nomCommune": "VENDIERES" }, { - "codePostal": "71120", - "codeCommune": "71586", - "libelleAcheminement": "VIRY", - "nomCommune": "VIRY" + "codePostal": "04320", + "codeCommune": "04042", + "libelleAcheminement": "CASTELLET LES SAUSSES", + "nomCommune": "CASTELLET LES SAUSSES" }, { - "codePostal": "72610", - "codeCommune": "72006", - "libelleAcheminement": "ARCONNAY", - "nomCommune": "ARCONNAY" + "codePostal": "02510", + "codeCommune": "02779", + "libelleAcheminement": "VENEROLLES", + "nomCommune": "VENEROLLES" }, { - "codePostal": "72130", - "codeCommune": "72011", - "libelleAcheminement": "ASSE LE BOISNE", - "nomCommune": "ASSE LE BOISNE" + "codePostal": "04510", + "codeCommune": "04046", + "libelleAcheminement": "LE CHAFFAUT ST JURSON", + "nomCommune": "LE CHAFFAUT ST JURSON" }, { - "codePostal": "72540", - "codeCommune": "72017", - "libelleAcheminement": "AUVERS SOUS MONTFAUCON", - "nomCommune": "AUVERS SOUS MONTFAUCON" + "codePostal": "02380", + "codeCommune": "02786", + "libelleAcheminement": "VERNEUIL SOUS COUCY", + "nomCommune": "VERNEUIL SOUS COUCY" }, { - "codePostal": "72400", - "codeCommune": "72020", - "libelleAcheminement": "AVEZE", - "nomCommune": "AVEZE" + "codePostal": "04660", + "codeCommune": "04047", + "libelleAcheminement": "CHAMPTERCIER", + "nomCommune": "CHAMPTERCIER" }, { - "codePostal": "72200", - "codeCommune": "72025", - "libelleAcheminement": "BAZOUGES CRE SUR LOIR", - "nomCommune": "BAZOUGES CRE SUR LOIR" + "codePostal": "02800", + "codeCommune": "02788", + "libelleAcheminement": "VERSIGNY", + "nomCommune": "VERSIGNY" }, { - "codePostal": "72110", - "codeCommune": "72039", - "libelleAcheminement": "BONNETABLE", - "nomCommune": "BONNETABLE" + "codePostal": "04200", + "codeCommune": "04051", + "libelleAcheminement": "CHATEAUNEUF MIRAVAIL", + "nomCommune": "CHATEAUNEUF MIRAVAIL" }, { - "codePostal": "72550", - "codeCommune": "72045", - "libelleAcheminement": "BRAINS SUR GEE", - "nomCommune": "BRAINS SUR GEE" + "codePostal": "02840", + "codeCommune": "02791", + "libelleAcheminement": "VESLUD", + "nomCommune": "VESLUD" }, { - "codePostal": "72330", - "codeCommune": "72051", - "libelleAcheminement": "CERANS FOULLETOURTE", - "nomCommune": "CERANS FOULLETOURTE" + "codePostal": "04250", + "codeCommune": "04057", + "libelleAcheminement": "CLAMENSANE", + "nomCommune": "CLAMENSANE" }, { - "codePostal": "72650", - "codeCommune": "72065", - "libelleAcheminement": "LA CHAPELLE ST AUBIN", - "nomCommune": "LA CHAPELLE ST AUBIN" + "codePostal": "02130", + "codeCommune": "02794", + "libelleAcheminement": "VEZILLY", + "nomCommune": "VEZILLY" }, { - "codePostal": "72540", - "codeCommune": "72070", - "libelleAcheminement": "CHASSILLE", - "nomCommune": "CHASSILLE" + "codePostal": "04220", + "codeCommune": "04063", + "libelleAcheminement": "CORBIERES EN PROVENCE", + "nomCommune": "CORBIERES EN PROVENCE" }, { - "codePostal": "72510", - "codeCommune": "72072", - "libelleAcheminement": "CHATEAU L HERMITAGE", - "nomCommune": "CHATEAU L HERMITAGE" + "codePostal": "02120", + "codeCommune": "02814", + "libelleAcheminement": "VILLERS LES GUISE", + "nomCommune": "VILLERS LES GUISE" }, { - "codePostal": "72120", - "codeCommune": "72087", - "libelleAcheminement": "CONFLANS SUR ANILLE", - "nomCommune": "CONFLANS SUR ANILLE" + "codePostal": "04000", + "codeCommune": "04070", + "libelleAcheminement": "DIGNE LES BAINS", + "nomCommune": "DIGNE LES BAINS" }, { - "codePostal": "72160", - "codeCommune": "72090", - "libelleAcheminement": "CONNERRE", - "nomCommune": "CONNERRE" + "codePostal": "02300", + "codeCommune": "02820", + "libelleAcheminement": "VIRY NOUREUIL", + "nomCommune": "VIRY NOUREUIL" }, { - "codePostal": "72110", - "codeCommune": "72102", - "libelleAcheminement": "COURCIVAL", - "nomCommune": "COURCIVAL" + "codePostal": "04200", + "codeCommune": "04075", + "libelleAcheminement": "ENTREPIERRES", + "nomCommune": "ENTREPIERRES" }, { - "codePostal": "72150", - "codeCommune": "72103", - "libelleAcheminement": "COURDEMANCHE", - "nomCommune": "COURDEMANCHE" + "codePostal": "02140", + "codeCommune": "02826", + "libelleAcheminement": "VOULPAIX", + "nomCommune": "VOULPAIX" }, { - "codePostal": "72240", - "codeCommune": "72111", - "libelleAcheminement": "CURES", - "nomCommune": "CURES" + "codePostal": "04000", + "codeCommune": "04097", + "libelleAcheminement": "LA JAVIE", + "nomCommune": "LA JAVIE" }, { - "codePostal": "72260", - "codeCommune": "72112", - "libelleAcheminement": "DANGEUL", - "nomCommune": "DANGEUL" + "codePostal": "03210", + "codeCommune": "03002", + "libelleAcheminement": "AGONGES", + "nomCommune": "AGONGES" }, { - "codePostal": "72500", - "codeCommune": "72115", - "libelleAcheminement": "DISSAY SOUS COURCILLON", - "nomCommune": "DISSAY SOUS COURCILLON" + "codePostal": "04270", + "codeCommune": "04107", + "libelleAcheminement": "MAJASTRES", + "nomCommune": "MAJASTRES" }, { - "codePostal": "72470", - "codeCommune": "72129", - "libelleAcheminement": "FATINES", - "nomCommune": "FATINES" + "codePostal": "03380", + "codeCommune": "03005", + "libelleAcheminement": "ARCHIGNAT", + "nomCommune": "ARCHIGNAT" }, { - "codePostal": "72430", - "codeCommune": "72131", - "libelleAcheminement": "FERCE SUR SARTHE", - "nomCommune": "FERCE SUR SARTHE" + "codePostal": "04350", + "codeCommune": "04108", + "libelleAcheminement": "MALIJAI", + "nomCommune": "MALIJAI" }, { - "codePostal": "72600", - "codeCommune": "72137", - "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", - "nomCommune": "VILLENEUVE EN PERSEIGNE" + "codePostal": "03000", + "codeCommune": "03013", + "libelleAcheminement": "AVERMES", + "nomCommune": "AVERMES" }, { - "codePostal": "72130", - "codeCommune": "72138", - "libelleAcheminement": "FRESNAY SUR SARTHE", - "nomCommune": "FRESNAY SUR SARTHE" + "codePostal": "04230", + "codeCommune": "04109", + "libelleAcheminement": "MALLEFOUGASSE AUGES", + "nomCommune": "MALLEFOUGASSE AUGES" }, { - "codePostal": "72130", - "codeCommune": "72141", - "libelleAcheminement": "GESNES LE GANDELIN", - "nomCommune": "GESNES LE GANDELIN" + "codePostal": "03130", + "codeCommune": "03014", + "libelleAcheminement": "AVRILLY", + "nomCommune": "AVRILLY" }, { - "codePostal": "72610", - "codeCommune": "72142", - "libelleAcheminement": "GRANDCHAMP", - "nomCommune": "GRANDCHAMP" + "codePostal": "04300", + "codeCommune": "04111", + "libelleAcheminement": "MANE", + "nomCommune": "MANE" }, { - "codePostal": "72380", - "codeCommune": "72147", - "libelleAcheminement": "LA GUIERCHE", - "nomCommune": "LA GUIERCHE" + "codePostal": "03230", + "codeCommune": "03019", + "libelleAcheminement": "BEAULON", + "nomCommune": "BEAULON" }, { - "codePostal": "72220", - "codeCommune": "72155", - "libelleAcheminement": "LAIGNE EN BELIN", - "nomCommune": "LAIGNE EN BELIN" + "codePostal": "04100", + "codeCommune": "04112", + "libelleAcheminement": "MANOSQUE", + "nomCommune": "MANOSQUE" }, { - "codePostal": "72340", - "codeCommune": "72161", - "libelleAcheminement": "LHOMME", - "nomCommune": "LHOMME" + "codePostal": "03210", + "codeCommune": "03026", + "libelleAcheminement": "BESSON", + "nomCommune": "BESSON" }, { - "codePostal": "72450", - "codeCommune": "72165", - "libelleAcheminement": "LOMBRON", - "nomCommune": "LOMBRON" + "codePostal": "04240", + "codeCommune": "04115", + "libelleAcheminement": "MEAILLES", + "nomCommune": "MEAILLES" }, { - "codePostal": "72300", - "codeCommune": "72167", - "libelleAcheminement": "LOUAILLES", - "nomCommune": "LOUAILLES" + "codePostal": "03170", + "codeCommune": "03031", + "libelleAcheminement": "BIZENEUILLE", + "nomCommune": "BIZENEUILLE" }, { - "codePostal": "72290", - "codeCommune": "72196", - "libelleAcheminement": "MEZIERES SUR PONTHOUIN", - "nomCommune": "MEZIERES SUR PONTHOUIN" + "codePostal": "04510", + "codeCommune": "04122", + "libelleAcheminement": "MIRABEAU", + "nomCommune": "MIRABEAU" }, { - "codePostal": "72170", - "codeCommune": "72199", - "libelleAcheminement": "MOITRON SUR SARTHE", - "nomCommune": "MOITRON SUR SARTHE" + "codePostal": "03350", + "codeCommune": "03041", + "libelleAcheminement": "LE BRETHON", + "nomCommune": "LE BRETHON" }, { - "codePostal": "72320", - "codeCommune": "72208", - "libelleAcheminement": "MONTMIRAIL", - "nomCommune": "MONTMIRAIL" + "codePostal": "04110", + "codeCommune": "04129", + "libelleAcheminement": "MONTJUSTIN", + "nomCommune": "MONTJUSTIN" }, { - "codePostal": "72600", - "codeCommune": "72215", - "libelleAcheminement": "NEUFCHATEL EN SAOSNOIS", - "nomCommune": "NEUFCHATEL EN SAOSNOIS" + "codePostal": "03440", + "codeCommune": "03046", + "libelleAcheminement": "BUXIERES LES MINES", + "nomCommune": "BUXIERES LES MINES" }, { - "codePostal": "72190", - "codeCommune": "72217", - "libelleAcheminement": "NEUVILLE SUR SARTHE", - "nomCommune": "NEUVILLE SUR SARTHE" + "codePostal": "04150", + "codeCommune": "04132", + "libelleAcheminement": "MONTSALIER", + "nomCommune": "MONTSALIER" }, { - "codePostal": "72140", - "codeCommune": "72218", - "libelleAcheminement": "NEUVILLETTE EN CHARNIE", - "nomCommune": "NEUVILLETTE EN CHARNIE" + "codePostal": "03340", + "codeCommune": "03054", + "libelleAcheminement": "CHAPEAU", + "nomCommune": "CHAPEAU" }, { - "codePostal": "72110", - "codeCommune": "72220", - "libelleAcheminement": "NOGENT LE BERNARD", - "nomCommune": "NOGENT LE BERNARD" + "codePostal": "04170", + "codeCommune": "04136", + "libelleAcheminement": "LA MURE ARGENS", + "nomCommune": "LA MURE ARGENS" }, { - "codePostal": "72610", - "codeCommune": "72225", - "libelleAcheminement": "OISSEAU LE PETIT", - "nomCommune": "OISSEAU LE PETIT" + "codePostal": "03800", + "codeCommune": "03061", + "libelleAcheminement": "CHARMES", + "nomCommune": "CHARMES" }, { - "codePostal": "72330", - "codeCommune": "72230", - "libelleAcheminement": "PARIGNE LE POLIN", - "nomCommune": "PARIGNE LE POLIN" + "codePostal": "04110", + "codeCommune": "04142", + "libelleAcheminement": "OPPEDETTE", + "nomCommune": "OPPEDETTE" }, { - "codePostal": "72260", - "codeCommune": "72233", - "libelleAcheminement": "PERAY", - "nomCommune": "PERAY" + "codePostal": "03450", + "codeCommune": "03078", + "libelleAcheminement": "CHOUVIGNY", + "nomCommune": "CHOUVIGNY" }, { - "codePostal": "72140", - "codeCommune": "72234", - "libelleAcheminement": "PEZE LE ROBERT", - "nomCommune": "PEZE LE ROBERT" + "codePostal": "04200", + "codeCommune": "04145", + "libelleAcheminement": "PEIPIN", + "nomCommune": "PEIPIN" }, { - "codePostal": "72260", - "codeCommune": "72251", - "libelleAcheminement": "RENE", - "nomCommune": "RENE" + "codePostal": "03220", + "codeCommune": "03079", + "libelleAcheminement": "CINDRE", + "nomCommune": "CINDRE" }, { - "codePostal": "72140", - "codeCommune": "72256", - "libelleAcheminement": "ROUEZ", - "nomCommune": "ROUEZ" + "codePostal": "04410", + "codeCommune": "04157", + "libelleAcheminement": "PUIMOISSON", + "nomCommune": "PUIMOISSON" }, { - "codePostal": "72240", - "codeCommune": "72261", - "libelleAcheminement": "RUILLE EN CHAMPAGNE", - "nomCommune": "RUILLE EN CHAMPAGNE" + "codePostal": "03600", + "codeCommune": "03082", + "libelleAcheminement": "COMMENTRY", + "nomCommune": "COMMENTRY" }, { - "codePostal": "72340", - "codeCommune": "72262", - "libelleAcheminement": "LOIR EN VALLEE", - "nomCommune": "LOIR EN VALLEE" + "codePostal": "04500", + "codeCommune": "04158", + "libelleAcheminement": "QUINSON", + "nomCommune": "QUINSON" }, { - "codePostal": "72340", - "codeCommune": "72262", - "libelleAcheminement": "LOIR EN VALLEE", - "nomCommune": "LOIR EN VALLEE" + "codePostal": "03430", + "codeCommune": "03084", + "libelleAcheminement": "COSNE D ALLIER", + "nomCommune": "COSNE D ALLIER" }, { - "codePostal": "72400", - "codeCommune": "72267", - "libelleAcheminement": "ST AUBIN DES COUDRAIS", - "nomCommune": "ST AUBIN DES COUDRAIS" + "codePostal": "04150", + "codeCommune": "04159", + "libelleAcheminement": "REDORTIERS", + "nomCommune": "REDORTIERS" }, { - "codePostal": "72110", - "codeCommune": "72271", - "libelleAcheminement": "ST CELERIN", - "nomCommune": "ST CELERIN" + "codePostal": "03150", + "codeCommune": "03091", + "libelleAcheminement": "CRECHY", + "nomCommune": "CRECHY" }, { - "codePostal": "72350", - "codeCommune": "72278", - "libelleAcheminement": "ST DENIS D ORQUES", - "nomCommune": "ST DENIS D ORQUES" + "codePostal": "04230", + "codeCommune": "04164", + "libelleAcheminement": "REVEST ST MARTIN", + "nomCommune": "REVEST ST MARTIN" }, { - "codePostal": "72380", - "codeCommune": "72289", - "libelleAcheminement": "STE JAMME SUR SARTHE", - "nomCommune": "STE JAMME SUR SARTHE" + "codePostal": "03170", + "codeCommune": "03097", + "libelleAcheminement": "DENEUILLE LES MINES", + "nomCommune": "DENEUILLE LES MINES" }, { - "codePostal": "72380", - "codeCommune": "72290", - "libelleAcheminement": "ST JEAN D ASSE", - "nomCommune": "ST JEAN D ASSE" + "codePostal": "04500", + "codeCommune": "04166", + "libelleAcheminement": "RIEZ", + "nomCommune": "RIEZ" }, { - "codePostal": "72320", - "codeCommune": "72292", - "libelleAcheminement": "ST JEAN DES ECHELLES", - "nomCommune": "ST JEAN DES ECHELLES" + "codePostal": "03630", + "codeCommune": "03098", + "libelleAcheminement": "DESERTINES", + "nomCommune": "DESERTINES" }, { - "codePostal": "72600", - "codeCommune": "72295", - "libelleAcheminement": "ST LONGIS", - "nomCommune": "ST LONGIS" + "codePostal": "04000", + "codeCommune": "04167", + "libelleAcheminement": "LA ROBINE SUR GALABRE", + "nomCommune": "LA ROBINE SUR GALABRE" }, { - "codePostal": "72440", - "codeCommune": "72298", - "libelleAcheminement": "ST MARS DE LOCQUENAY", - "nomCommune": "ST MARS DE LOCQUENAY" + "codePostal": "03140", + "codeCommune": "03112", + "libelleAcheminement": "ETROUSSAT", + "nomCommune": "ETROUSSAT" }, { - "codePostal": "72470", - "codeCommune": "72300", - "libelleAcheminement": "ST MARS LA BRIERE", - "nomCommune": "ST MARS LA BRIERE" + "codePostal": "04000", + "codeCommune": "04167", + "libelleAcheminement": "LA ROBINE SUR GALABRE", + "nomCommune": "LA ROBINE SUR GALABRE" }, { - "codePostal": "72190", - "codeCommune": "72310", - "libelleAcheminement": "ST PAVACE", - "nomCommune": "ST PAVACE" + "codePostal": "03160", + "codeCommune": "03117", + "libelleAcheminement": "FRANCHESSE", + "nomCommune": "FRANCHESSE" }, { - "codePostal": "72140", - "codeCommune": "72315", - "libelleAcheminement": "ST REMY DE SILLE", - "nomCommune": "ST REMY DE SILLE" + "codePostal": "04000", + "codeCommune": "04167", + "libelleAcheminement": "LA ROBINE SUR GALABRE", + "nomCommune": "LA ROBINE SUR GALABRE" }, { - "codePostal": "72130", - "codeCommune": "72323", - "libelleAcheminement": "ST VICTEUR", - "nomCommune": "ST VICTEUR" + "codePostal": "03230", + "codeCommune": "03119", + "libelleAcheminement": "GANNAY SUR LOIRE", + "nomCommune": "GANNAY SUR LOIRE" }, { - "codePostal": "72360", - "codeCommune": "72327", - "libelleAcheminement": "SARCE", - "nomCommune": "SARCE" + "codePostal": "04410", + "codeCommune": "04184", + "libelleAcheminement": "ST JURS", + "nomCommune": "ST JURS" }, { - "codePostal": "72800", - "codeCommune": "72330", - "libelleAcheminement": "SAVIGNE SOUS LE LUDE", - "nomCommune": "SAVIGNE SOUS LE LUDE" + "codePostal": "03340", + "codeCommune": "03124", + "libelleAcheminement": "GOUISE", + "nomCommune": "GOUISE" }, { - "codePostal": "72140", - "codeCommune": "72334", - "libelleAcheminement": "SILLE LE GUILLAUME", - "nomCommune": "SILLE LE GUILLAUME" + "codePostal": "04500", + "codeCommune": "04186", + "libelleAcheminement": "ST LAURENT DU VERDON", + "nomCommune": "ST LAURENT DU VERDON" }, { - "codePostal": "72130", - "codeCommune": "72337", - "libelleAcheminement": "SOUGE LE GANELON", - "nomCommune": "SOUGE LE GANELON" + "codePostal": "03380", + "codeCommune": "03128", + "libelleAcheminement": "HURIEL", + "nomCommune": "HURIEL" }, { - "codePostal": "72380", - "codeCommune": "72338", - "libelleAcheminement": "SOUILLE", - "nomCommune": "SOUILLE" + "codePostal": "04800", + "codeCommune": "04189", + "libelleAcheminement": "ST MARTIN DE BROMES", + "nomCommune": "ST MARTIN DE BROMES" }, { - "codePostal": "72320", - "codeCommune": "72353", - "libelleAcheminement": "THELIGNY", - "nomCommune": "THELIGNY" + "codePostal": "03120", + "codeCommune": "03131", + "libelleAcheminement": "ISSERPENT", + "nomCommune": "ISSERPENT" }, { - "codePostal": "72610", - "codeCommune": "72355", - "libelleAcheminement": "THOIRE SOUS CONTENSOR", - "nomCommune": "THOIRE SOUS CONTENSOR" + "codePostal": "04300", + "codeCommune": "04190", + "libelleAcheminement": "ST MARTIN LES EAUX", + "nomCommune": "ST MARTIN LES EAUX" }, { - "codePostal": "72400", - "codeCommune": "72375", - "libelleAcheminement": "VILLAINES LA GONAIS", - "nomCommune": "VILLAINES LA GONAIS" + "codePostal": "03800", + "codeCommune": "03133", + "libelleAcheminement": "JENZAT", + "nomCommune": "JENZAT" }, { - "codePostal": "72300", - "codeCommune": "72378", - "libelleAcheminement": "VION", - "nomCommune": "VION" + "codePostal": "04290", + "codeCommune": "04200", + "libelleAcheminement": "SALIGNAC", + "nomCommune": "SALIGNAC" }, { - "codePostal": "72330", - "codeCommune": "72385", - "libelleAcheminement": "YVRE LE POLIN", - "nomCommune": "YVRE LE POLIN" + "codePostal": "03500", + "codeCommune": "03134", + "libelleAcheminement": "LAFELINE", + "nomCommune": "LAFELINE" }, { - "codePostal": "72530", - "codeCommune": "72386", - "libelleAcheminement": "YVRE L EVEQUE", - "nomCommune": "YVRE L EVEQUE" + "codePostal": "04320", + "codeCommune": "04202", + "libelleAcheminement": "SAUSSES", + "nomCommune": "SAUSSES" }, { - "codePostal": "73260", - "codeCommune": "73003", - "libelleAcheminement": "GRAND AIGUEBLANCHE", - "nomCommune": "GRAND AIGUEBLANCHE" + "codePostal": "03100", + "codeCommune": "03140", + "libelleAcheminement": "LAVAULT STE ANNE", + "nomCommune": "LAVAULT STE ANNE" }, { - "codePostal": "73340", - "codeCommune": "73005", - "libelleAcheminement": "AILLON LE VIEUX", - "nomCommune": "AILLON LE VIEUX" + "codePostal": "04330", + "codeCommune": "04204", + "libelleAcheminement": "SENEZ", + "nomCommune": "SENEZ" }, { - "codePostal": "73210", - "codeCommune": "73006", - "libelleAcheminement": "AIME LA PLAGNE", - "nomCommune": "AIME LA PLAGNE" + "codePostal": "03600", + "codeCommune": "03159", + "libelleAcheminement": "MALICORNE", + "nomCommune": "MALICORNE" }, { - "codePostal": "73410", - "codeCommune": "73010", - "libelleAcheminement": "ENTRELACS", - "nomCommune": "ENTRELACS" + "codePostal": "04200", + "codeCommune": "04207", + "libelleAcheminement": "SIGOYER", + "nomCommune": "SIGOYER" }, { - "codePostal": "73340", - "codeCommune": "73020", - "libelleAcheminement": "ARITH", - "nomCommune": "ARITH" + "codePostal": "03420", + "codeCommune": "03167", + "libelleAcheminement": "MAZIRAT", + "nomCommune": "MAZIRAT" }, { - "codePostal": "73500", - "codeCommune": "73026", - "libelleAcheminement": "AVRIEUX", - "nomCommune": "AVRIEUX" + "codePostal": "04150", + "codeCommune": "04208", + "libelleAcheminement": "SIMIANE LA ROTONDE", + "nomCommune": "SIMIANE LA ROTONDE" }, { - "codePostal": "73470", - "codeCommune": "73027", - "libelleAcheminement": "AYN", - "nomCommune": "AYN" + "codePostal": "03210", + "codeCommune": "03170", + "libelleAcheminement": "MEILLERS", + "nomCommune": "MEILLERS" }, { - "codePostal": "73170", - "codeCommune": "73042", - "libelleAcheminement": "BILLIEME", - "nomCommune": "BILLIEME" + "codePostal": "04290", + "codeCommune": "04211", + "libelleAcheminement": "SOURRIBES", + "nomCommune": "SOURRIBES" }, { - "codePostal": "73220", - "codeCommune": "73049", - "libelleAcheminement": "BONVILLARET", - "nomCommune": "BONVILLARET" + "codePostal": "03800", + "codeCommune": "03182", + "libelleAcheminement": "MONTEIGNET SUR L ANDELOT", + "nomCommune": "MONTEIGNET SUR L ANDELOT" }, { - "codePostal": "73370", - "codeCommune": "73051", - "libelleAcheminement": "LE BOURGET DU LAC", - "nomCommune": "LE BOURGET DU LAC" + "codePostal": "04380", + "codeCommune": "04217", + "libelleAcheminement": "THOARD", + "nomCommune": "THOARD" }, { - "codePostal": "73390", - "codeCommune": "73053", - "libelleAcheminement": "BOURGNEUF", - "nomCommune": "BOURGNEUF" + "codePostal": "03240", + "codeCommune": "03183", + "libelleAcheminement": "LE MONTET", + "nomCommune": "LE MONTET" }, { - "codePostal": "73700", - "codeCommune": "73054", - "libelleAcheminement": "BOURG ST MAURICE", - "nomCommune": "BOURG ST MAURICE" + "codePostal": "04200", + "codeCommune": "04231", + "libelleAcheminement": "VALERNES", + "nomCommune": "VALERNES" }, { - "codePostal": "73130", - "codeCommune": "73067", - "libelleAcheminement": "LA CHAMBRE", - "nomCommune": "LA CHAMBRE" + "codePostal": "03320", + "codeCommune": "03198", + "libelleAcheminement": "NEURE", + "nomCommune": "NEURE" }, { - "codePostal": "73390", - "codeCommune": "73072", - "libelleAcheminement": "CHAMP LAURENT", - "nomCommune": "CHAMP LAURENT" + "codePostal": "04130", + "codeCommune": "04245", + "libelleAcheminement": "VOLX", + "nomCommune": "VOLX" }, { - "codePostal": "73310", - "codeCommune": "73073", - "libelleAcheminement": "CHANAZ", - "nomCommune": "CHANAZ" + "codePostal": "03420", + "codeCommune": "03206", + "libelleAcheminement": "LA PETITE MARCHE", + "nomCommune": "LA PETITE MARCHE" }, { - "codePostal": "73800", - "codeCommune": "73084", - "libelleAcheminement": "CHIGNIN", - "nomCommune": "CHIGNIN" + "codePostal": "05120", + "codeCommune": "05006", + "libelleAcheminement": "L ARGENTIERE LA BESSEE", + "nomCommune": "L ARGENTIERE LA BESSEE" }, { - "codePostal": "73310", - "codeCommune": "73085", - "libelleAcheminement": "CHINDRIEUX", - "nomCommune": "CHINDRIEUX" + "codePostal": "03800", + "codeCommune": "03209", + "libelleAcheminement": "POEZAT", + "nomCommune": "POEZAT" }, { - "codePostal": "73800", - "codeCommune": "73089", - "libelleAcheminement": "COISE ST JEAN PIED GAUTHIER", - "nomCommune": "COISE ST JEAN PIED GAUTHIER" + "codePostal": "05140", + "codeCommune": "05008", + "libelleAcheminement": "ASPREMONT", + "nomCommune": "ASPREMONT" }, { - "codePostal": "73630", - "codeCommune": "73090", - "libelleAcheminement": "LA COMPOTE", - "nomCommune": "LA COMPOTE" + "codePostal": "03240", + "codeCommune": "03214", + "libelleAcheminement": "ROCLES", + "nomCommune": "ROCLES" }, { - "codePostal": "73110", - "codeCommune": "73095", - "libelleAcheminement": "LA CROIX DE LA ROCHETTE", - "nomCommune": "LA CROIX DE LA ROCHETTE" + "codePostal": "05140", + "codeCommune": "05010", + "libelleAcheminement": "ASPRES SUR BUECH", + "nomCommune": "ASPRES SUR BUECH" }, { - "codePostal": "73230", - "codeCommune": "73098", - "libelleAcheminement": "LES DESERTS", - "nomCommune": "LES DESERTS" + "codePostal": "03190", + "codeCommune": "03222", + "libelleAcheminement": "ST CAPRAIS", + "nomCommune": "ST CAPRAIS" }, { - "codePostal": "73610", - "codeCommune": "73104", - "libelleAcheminement": "DULLIN", - "nomCommune": "DULLIN" + "codePostal": "05000", + "codeCommune": "05018", + "libelleAcheminement": "LA BATIE VIEILLE", + "nomCommune": "LA BATIE VIEILLE" }, { - "codePostal": "73590", - "codeCommune": "73114", - "libelleAcheminement": "FLUMET", - "nomCommune": "FLUMET" + "codePostal": "03120", + "codeCommune": "03223", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "73500", - "codeCommune": "73117", - "libelleAcheminement": "FOURNEAUX", - "nomCommune": "FOURNEAUX" + "codePostal": "05190", + "codeCommune": "05022", + "libelleAcheminement": "BREZIERS", + "nomCommune": "BREZIERS" }, { - "codePostal": "73460", - "codeCommune": "73121", - "libelleAcheminement": "FRONTENEX", - "nomCommune": "FRONTENEX" + "codePostal": "03310", + "codeCommune": "03233", + "libelleAcheminement": "ST GENEST", + "nomCommune": "ST GENEST" }, { - "codePostal": "73470", - "codeCommune": "73122", - "libelleAcheminement": "GERBAIX", - "nomCommune": "GERBAIX" + "codePostal": "05100", + "codeCommune": "05023", + "libelleAcheminement": "BRIANCON", + "nomCommune": "BRIANCON" }, { - "codePostal": "73600", - "codeCommune": "73131", - "libelleAcheminement": "HAUTECOUR", - "nomCommune": "HAUTECOUR" + "codePostal": "03150", + "codeCommune": "03235", + "libelleAcheminement": "ST GERAND LE PUY", + "nomCommune": "ST GERAND LE PUY" }, { - "codePostal": "73630", - "codeCommune": "73139", - "libelleAcheminement": "JARSY", - "nomCommune": "JARSY" + "codePostal": "05100", + "codeCommune": "05027", + "libelleAcheminement": "CERVIERES", + "nomCommune": "CERVIERES" }, { - "codePostal": "73170", - "codeCommune": "73140", - "libelleAcheminement": "JONGIEUX", - "nomCommune": "JONGIEUX" + "codePostal": "03440", + "codeCommune": "03238", + "libelleAcheminement": "ST HILAIRE", + "nomCommune": "ST HILAIRE" }, { - "codePostal": "73340", - "codeCommune": "73146", - "libelleAcheminement": "LESCHERAINES", - "nomCommune": "LESCHERAINES" + "codePostal": "05500", + "codeCommune": "05039", + "libelleAcheminement": "AUBESSAGNE", + "nomCommune": "AUBESSAGNE" }, { - "codePostal": "73800", - "codeCommune": "73151", - "libelleAcheminement": "PORTE DE SAVOIE", - "nomCommune": "PORTE DE SAVOIE" + "codePostal": "03130", + "codeCommune": "03239", + "libelleAcheminement": "ST LEGER SUR VOUZANCE", + "nomCommune": "ST LEGER SUR VOUZANCE" }, { - "codePostal": "73220", - "codeCommune": "73168", - "libelleAcheminement": "MONTGILBERT", - "nomCommune": "MONTGILBERT" + "codePostal": "05200", + "codeCommune": "05044", + "libelleAcheminement": "CREVOUX", + "nomCommune": "CREVOUX" }, { - "codePostal": "73870", - "codeCommune": "73173", - "libelleAcheminement": "MONTRICHER ALBANNE", - "nomCommune": "MONTRICHER ALBANNE" + "codePostal": "03220", + "codeCommune": "03240", + "libelleAcheminement": "ST LEON", + "nomCommune": "ST LEON" }, { - "codePostal": "73300", - "codeCommune": "73177", - "libelleAcheminement": "MONTVERNIER", - "nomCommune": "MONTVERNIER" + "codePostal": "05310", + "codeCommune": "05058", + "libelleAcheminement": "FREISSINIERES", + "nomCommune": "FREISSINIERES" }, { - "codePostal": "73800", - "codeCommune": "73183", - "libelleAcheminement": "MYANS", - "nomCommune": "MYANS" + "codePostal": "42620", + "codeCommune": "03250", + "libelleAcheminement": "ST PIERRE LAVAL", + "nomCommune": "ST PIERRE LAVAL" }, { - "codePostal": "73260", - "codeCommune": "73187", - "libelleAcheminement": "LA LECHERE", - "nomCommune": "LA LECHERE" + "codePostal": "05320", + "codeCommune": "05063", + "libelleAcheminement": "LA GRAVE", + "nomCommune": "LA GRAVE" }, { - "codePostal": "73210", - "codeCommune": "73197", - "libelleAcheminement": "PEISEY NANCROIX", - "nomCommune": "PEISEY NANCROIX" + "codePostal": "03110", + "codeCommune": "03258", + "libelleAcheminement": "ST REMY EN ROLLAT", + "nomCommune": "ST REMY EN ROLLAT" }, { - "codePostal": "73200", - "codeCommune": "73202", - "libelleAcheminement": "PLANCHERINE", - "nomCommune": "PLANCHERINE" + "codePostal": "05140", + "codeCommune": "05066", + "libelleAcheminement": "LA HAUTE BEAUME", + "nomCommune": "LA HAUTE BEAUME" }, { - "codePostal": "73110", - "codeCommune": "73207", - "libelleAcheminement": "PRESLE", - "nomCommune": "PRESLE" + "codePostal": "03420", + "codeCommune": "03261", + "libelleAcheminement": "STE THERENCE", + "nomCommune": "STE THERENCE" }, { - "codePostal": "73190", - "codeCommune": "73210", - "libelleAcheminement": "PUYGROS", - "nomCommune": "PUYGROS" + "codePostal": "05600", + "codeCommune": "05082", + "libelleAcheminement": "MONT DAUPHIN", + "nomCommune": "MONT DAUPHIN" }, { - "codePostal": "73240", - "codeCommune": "73214", - "libelleAcheminement": "ROCHEFORT", - "nomCommune": "ROCHEFORT" + "codePostal": "03410", + "codeCommune": "03262", + "libelleAcheminement": "ST VICTOR", + "nomCommune": "ST VICTOR" }, { - "codePostal": "73130", - "codeCommune": "73221", - "libelleAcheminement": "ST ALBAN DES VILLARDS", - "nomCommune": "ST ALBAN DES VILLARDS" + "codePostal": "05100", + "codeCommune": "05093", + "libelleAcheminement": "NEVACHE", + "nomCommune": "NEVACHE" }, { - "codePostal": "73130", - "codeCommune": "73235", - "libelleAcheminement": "ST FRANCOIS LONGCHAMP", - "nomCommune": "ST FRANCOIS LONGCHAMP" + "codePostal": "03470", + "codeCommune": "03265", + "libelleAcheminement": "SALIGNY SUR ROUDON", + "nomCommune": "SALIGNY SUR ROUDON" }, { - "codePostal": "73600", - "codeCommune": "73253", - "libelleAcheminement": "ST MARCEL", - "nomCommune": "ST MARCEL" + "codePostal": "05300", + "codeCommune": "05103", + "libelleAcheminement": "LE POET", + "nomCommune": "LE POET" }, { - "codePostal": "73140", - "codeCommune": "73256", - "libelleAcheminement": "ST MARTIN D ARC", - "nomCommune": "ST MARTIN D ARC" + "codePostal": "03430", + "codeCommune": "03269", + "libelleAcheminement": "SAUVAGNY", + "nomCommune": "SAUVAGNY" }, { - "codePostal": "73440", - "codeCommune": "73257", - "libelleAcheminement": "LES BELLEVILLE", - "nomCommune": "LES BELLEVILLE" + "codePostal": "05500", + "codeCommune": "05104", + "libelleAcheminement": "POLIGNY", + "nomCommune": "POLIGNY" }, { - "codePostal": "73140", - "codeCommune": "73261", - "libelleAcheminement": "ST MICHEL DE MAURIENNE", - "nomCommune": "ST MICHEL DE MAURIENNE" + "codePostal": "03120", + "codeCommune": "03272", + "libelleAcheminement": "SERVILLY", + "nomCommune": "SERVILLY" }, { - "codePostal": "73590", - "codeCommune": "73262", - "libelleAcheminement": "ST NICOLAS LA CHAPELLE", - "nomCommune": "ST NICOLAS LA CHAPELLE" + "codePostal": "05200", + "codeCommune": "05111", + "libelleAcheminement": "PUY SANIERES", + "nomCommune": "PUY SANIERES" }, { - "codePostal": "73100", - "codeCommune": "73263", - "libelleAcheminement": "ST OFFENGE", - "nomCommune": "ST OFFENGE" + "codePostal": "03240", + "codeCommune": "03287", + "libelleAcheminement": "TREBAN", + "nomCommune": "TREBAN" }, { - "codePostal": "73730", - "codeCommune": "73268", - "libelleAcheminement": "ST PAUL SUR ISERE", - "nomCommune": "ST PAUL SUR ISERE" + "codePostal": "05160", + "codeCommune": "05114", + "libelleAcheminement": "REALLON", + "nomCommune": "REALLON" }, { - "codePostal": "73220", - "codeCommune": "73272", - "libelleAcheminement": "ST PIERRE DE BELLEVILLE", - "nomCommune": "ST PIERRE DE BELLEVILLE" + "codePostal": "03360", + "codeCommune": "03296", + "libelleAcheminement": "VALIGNY", + "nomCommune": "VALIGNY" }, { - "codePostal": "73800", - "codeCommune": "73276", - "libelleAcheminement": "ST PIERRE DE SOUCY", - "nomCommune": "ST PIERRE DE SOUCY" + "codePostal": "05190", + "codeCommune": "05121", + "libelleAcheminement": "ROCHEBRUNE", + "nomCommune": "ROCHEBRUNE" }, { - "codePostal": "73530", - "codeCommune": "73280", - "libelleAcheminement": "ST SORLIN D ARVES", - "nomCommune": "ST SORLIN D ARVES" + "codePostal": "03190", + "codeCommune": "03297", + "libelleAcheminement": "VALLON EN SULLY", + "nomCommune": "VALLON EN SULLY" }, { - "codePostal": "73700", - "codeCommune": "73285", - "libelleAcheminement": "SEEZ", - "nomCommune": "SEEZ" + "codePostal": "05000", + "codeCommune": "05124", + "libelleAcheminement": "LA ROCHETTE", + "nomCommune": "LA ROCHETTE" }, { - "codePostal": "73480", - "codeCommune": "73290", - "libelleAcheminement": "VAL CENIS", - "nomCommune": "VAL CENIS" + "codePostal": "03220", + "codeCommune": "03299", + "libelleAcheminement": "VARENNES SUR TECHE", + "nomCommune": "VARENNES SUR TECHE" }, { - "codePostal": "73320", - "codeCommune": "73296", - "libelleAcheminement": "TIGNES", - "nomCommune": "TIGNES" + "codePostal": "05190", + "codeCommune": "05127", + "libelleAcheminement": "ROUSSET", + "nomCommune": "ROUSSET" }, { - "codePostal": "73100", - "codeCommune": "73301", - "libelleAcheminement": "TREVIGNIN", - "nomCommune": "TREVIGNIN" + "codePostal": "03190", + "codeCommune": "03301", + "libelleAcheminement": "VAUX", + "nomCommune": "VAUX" }, { - "codePostal": "73640", - "codeCommune": "73323", - "libelleAcheminement": "VILLAROGER", - "nomCommune": "VILLAROGER" + "codePostal": "05400", + "codeCommune": "05131", + "libelleAcheminement": "ST AUBAN D OZE", + "nomCommune": "ST AUBAN D OZE" }, { - "codePostal": "73420", - "codeCommune": "73329", - "libelleAcheminement": "VOGLANS", - "nomCommune": "VOGLANS" + "codePostal": "03190", + "codeCommune": "03303", + "libelleAcheminement": "VENAS", + "nomCommune": "VENAS" }, { - "codePostal": "73170", - "codeCommune": "73330", - "libelleAcheminement": "YENNE", - "nomCommune": "YENNE" + "codePostal": "05500", + "codeCommune": "05132", + "libelleAcheminement": "ST BONNET EN CHAMPSAUR", + "nomCommune": "ST BONNET EN CHAMPSAUR" }, { - "codePostal": "74350", - "codeCommune": "74009", - "libelleAcheminement": "ANDILLY", - "nomCommune": "ANDILLY" + "codePostal": "04110", + "codeCommune": "04012", + "libelleAcheminement": "AUBENAS LES ALPES", + "nomCommune": "AUBENAS LES ALPES" }, { - "codePostal": "74600", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "05600", + "codeCommune": "05136", + "libelleAcheminement": "ST CREPIN", + "nomCommune": "ST CREPIN" }, { - "codePostal": "74960", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "04140", + "codeCommune": "04020", + "libelleAcheminement": "BARLES", + "nomCommune": "BARLES" }, { - "codePostal": "74200", - "codeCommune": "74020", - "libelleAcheminement": "ARMOY", - "nomCommune": "ARMOY" + "codePostal": "05250", + "codeCommune": "05139", + "libelleAcheminement": "LE DEVOLUY", + "nomCommune": "LE DEVOLUY" }, { - "codePostal": "74430", - "codeCommune": "74030", - "libelleAcheminement": "LA BAUME", - "nomCommune": "LA BAUME" + "codePostal": "04380", + "codeCommune": "04021", + "libelleAcheminement": "BARRAS", + "nomCommune": "BARRAS" }, { - "codePostal": "74470", - "codeCommune": "74032", - "libelleAcheminement": "BELLEVAUX", - "nomCommune": "BELLEVAUX" + "codePostal": "05500", + "codeCommune": "05148", + "libelleAcheminement": "ST LAURENT DU CROS", + "nomCommune": "ST LAURENT DU CROS" }, { - "codePostal": "74500", - "codeCommune": "74033", - "libelleAcheminement": "BERNEX", - "nomCommune": "BERNEX" + "codePostal": "04250", + "codeCommune": "04023", + "libelleAcheminement": "BAYONS", + "nomCommune": "BAYONS" }, { - "codePostal": "74550", - "codeCommune": "74053", - "libelleAcheminement": "CERVENS", - "nomCommune": "CERVENS" + "codePostal": "05800", + "codeCommune": "05152", + "libelleAcheminement": "ST MAURICE EN VALGODEMARD", + "nomCommune": "ST MAURICE EN VALGODEMARD" }, { - "codePostal": "74400", - "codeCommune": "74056", - "libelleAcheminement": "CHAMONIX MONT BLANC", - "nomCommune": "CHAMONIX MONT BLANC" + "codePostal": "04420", + "codeCommune": "04024", + "libelleAcheminement": "BEAUJEU", + "nomCommune": "BEAUJEU" }, { - "codePostal": "74500", - "codeCommune": "74057", - "libelleAcheminement": "CHAMPANGES", - "nomCommune": "CHAMPANGES" + "codePostal": "05350", + "codeCommune": "05157", + "libelleAcheminement": "ST VERAN", + "nomCommune": "ST VERAN" }, { - "codePostal": "74800", - "codeCommune": "74059", - "libelleAcheminement": "LA CHAPELLE RAMBAUD", - "nomCommune": "LA CHAPELLE RAMBAUD" + "codePostal": "04240", + "codeCommune": "04032", + "libelleAcheminement": "BRAUX", + "nomCommune": "BRAUX" }, { - "codePostal": "74300", - "codeCommune": "74064", - "libelleAcheminement": "CHATILLON SUR CLUSES", - "nomCommune": "CHATILLON SUR CLUSES" + "codePostal": "05160", + "codeCommune": "05164", + "libelleAcheminement": "SAVINES LE LAC", + "nomCommune": "SAVINES LE LAC" }, { - "codePostal": "74270", - "codeCommune": "74065", - "libelleAcheminement": "CHAUMONT", - "nomCommune": "CHAUMONT" + "codePostal": "04340", + "codeCommune": "04033", + "libelleAcheminement": "UBAYE SERRE PONCON", + "nomCommune": "UBAYE SERRE PONCON" }, { - "codePostal": "74270", - "codeCommune": "74066", - "libelleAcheminement": "CHAVANNAZ", - "nomCommune": "CHAVANNAZ" + "codePostal": "05700", + "codeCommune": "05172", + "libelleAcheminement": "TRESCLEOUX", + "nomCommune": "TRESCLEOUX" }, { - "codePostal": "74270", - "codeCommune": "74071", - "libelleAcheminement": "CHESSENAZ", - "nomCommune": "CHESSENAZ" + "codePostal": "04210", + "codeCommune": "04035", + "libelleAcheminement": "BRUNET", + "nomCommune": "BRUNET" }, { - "codePostal": "74270", - "codeCommune": "74075", - "libelleAcheminement": "CHILLY", - "nomCommune": "CHILLY" + "codePostal": "05300", + "codeCommune": "05173", + "libelleAcheminement": "UPAIX", + "nomCommune": "UPAIX" }, { - "codePostal": "74270", - "codeCommune": "74078", - "libelleAcheminement": "CLERMONT", - "nomCommune": "CLERMONT" + "codePostal": "04420", + "codeCommune": "04036", + "libelleAcheminement": "LE BRUSQUET", + "nomCommune": "LE BRUSQUET" }, { - "codePostal": "74540", - "codeCommune": "74097", - "libelleAcheminement": "CUSY", - "nomCommune": "CUSY" + "codePostal": "05300", + "codeCommune": "05178", + "libelleAcheminement": "VENTAVON", + "nomCommune": "VENTAVON" }, { - "codePostal": "74350", - "codeCommune": "74098", - "libelleAcheminement": "CUVAT", - "nomCommune": "CUVAT" + "codePostal": "04120", + "codeCommune": "04039", + "libelleAcheminement": "CASTELLANE", + "nomCommune": "CASTELLANE" }, { - "codePostal": "74210", - "codeCommune": "74104", - "libelleAcheminement": "DOUSSARD", - "nomCommune": "DOUSSARD" + "codePostal": "06790", + "codeCommune": "06006", + "libelleAcheminement": "ASPREMONT", + "nomCommune": "ASPREMONT" }, { - "codePostal": "74140", - "codeCommune": "74105", - "libelleAcheminement": "DOUVAINE", - "nomCommune": "DOUVAINE" + "codePostal": "04380", + "codeCommune": "04040", + "libelleAcheminement": "LE CASTELLARD MELAN", + "nomCommune": "LE CASTELLARD MELAN" }, { - "codePostal": "74110", - "codeCommune": "74114", - "libelleAcheminement": "ESSERT ROMAND", - "nomCommune": "ESSERT ROMAND" + "codePostal": "06260", + "codeCommune": "06008", + "libelleAcheminement": "AUVARE", + "nomCommune": "AUVARE" }, { - "codePostal": "74150", - "codeCommune": "74117", - "libelleAcheminement": "ETERCY", - "nomCommune": "ETERCY" + "codePostal": "04700", + "codeCommune": "04041", + "libelleAcheminement": "LE CASTELLET", + "nomCommune": "LE CASTELLET" }, { - "codePostal": "74140", - "codeCommune": "74121", - "libelleAcheminement": "EXCENEVEX", - "nomCommune": "EXCENEVEX" + "codePostal": "06240", + "codeCommune": "06012", + "libelleAcheminement": "BEAUSOLEIL", + "nomCommune": "BEAUSOLEIL" }, { - "codePostal": "74210", - "codeCommune": "74123", - "libelleAcheminement": "FAVERGES SEYTHENEX", - "nomCommune": "FAVERGES SEYTHENEX" + "codePostal": "04330", + "codeCommune": "04055", + "libelleAcheminement": "CHAUDON NORANTE", + "nomCommune": "CHAUDON NORANTE" }, { - "codePostal": "74250", - "codeCommune": "74128", - "libelleAcheminement": "FILLINGES", - "nomCommune": "FILLINGES" + "codePostal": "06470", + "codeCommune": "06016", + "libelleAcheminement": "BEUIL", + "nomCommune": "BEUIL" }, { - "codePostal": "74200", - "codeCommune": "74129", - "libelleAcheminement": "LA FORCLAZ", - "nomCommune": "LA FORCLAZ" + "codePostal": "04120", + "codeCommune": "04069", + "libelleAcheminement": "DEMANDOLX", + "nomCommune": "DEMANDOLX" }, { - "codePostal": "74420", - "codeCommune": "74140", - "libelleAcheminement": "HABERE POCHE", - "nomCommune": "HABERE POCHE" + "codePostal": "06410", + "codeCommune": "06018", + "libelleAcheminement": "BIOT", + "nomCommune": "BIOT" }, { - "codePostal": "74150", - "codeCommune": "74141", - "libelleAcheminement": "HAUTEVILLE SUR FIER", - "nomCommune": "HAUTEVILLE SUR FIER" + "codePostal": "04400", + "codeCommune": "04073", + "libelleAcheminement": "ENCHASTRAYES", + "nomCommune": "ENCHASTRAYES" }, { - "codePostal": "74310", - "codeCommune": "74143", - "libelleAcheminement": "LES HOUCHES", - "nomCommune": "LES HOUCHES" + "codePostal": "06830", + "codeCommune": "06021", + "libelleAcheminement": "BONSON", + "nomCommune": "BONSON" }, { - "codePostal": "74150", - "codeCommune": "74151", - "libelleAcheminement": "LORNAY", - "nomCommune": "LORNAY" + "codePostal": "04200", + "codeCommune": "04075", + "libelleAcheminement": "ENTREPIERRES", + "nomCommune": "ENTREPIERRES" }, { - "codePostal": "74330", - "codeCommune": "74152", - "libelleAcheminement": "LOVAGNY", - "nomCommune": "LOVAGNY" + "codePostal": "06510", + "codeCommune": "06022", + "libelleAcheminement": "BOUYON", + "nomCommune": "BOUYON" }, { - "codePostal": "74300", - "codeCommune": "74159", - "libelleAcheminement": "MAGLAND", - "nomCommune": "MAGLAND" + "codePostal": "04800", + "codeCommune": "04081", + "libelleAcheminement": "ESPARRON DE VERDON", + "nomCommune": "ESPARRON DE VERDON" }, { - "codePostal": "74150", - "codeCommune": "74161", - "libelleAcheminement": "MARCELLAZ ALBANAIS", - "nomCommune": "MARCELLAZ ALBANAIS" + "codePostal": "06850", + "codeCommune": "06024", + "libelleAcheminement": "BRIANCONNET", + "nomCommune": "BRIANCONNET" }, { - "codePostal": "74200", - "codeCommune": "74163", - "libelleAcheminement": "MARGENCEL", - "nomCommune": "MARGENCEL" + "codePostal": "04230", + "codeCommune": "04087", + "libelleAcheminement": "FONTIENNE", + "nomCommune": "FONTIENNE" }, { - "codePostal": "74270", - "codeCommune": "74168", - "libelleAcheminement": "MARLIOZ", - "nomCommune": "MARLIOZ" + "codePostal": "06320", + "codeCommune": "06032", + "libelleAcheminement": "CAP D AIL", + "nomCommune": "CAP D AIL" }, { - "codePostal": "74460", - "codeCommune": "74169", - "libelleAcheminement": "MARNAZ", - "nomCommune": "MARNAZ" + "codePostal": "04800", + "codeCommune": "04094", + "libelleAcheminement": "GREOUX LES BAINS", + "nomCommune": "GREOUX LES BAINS" }, { - "codePostal": "74490", - "codeCommune": "74174", - "libelleAcheminement": "MEGEVETTE", - "nomCommune": "MEGEVETTE" + "codePostal": "06740", + "codeCommune": "06038", + "libelleAcheminement": "CHATEAUNEUF GRASSE", + "nomCommune": "CHATEAUNEUF GRASSE" }, { - "codePostal": "74330", - "codeCommune": "74179", - "libelleAcheminement": "MESIGNY", - "nomCommune": "MESIGNY" + "codePostal": "04230", + "codeCommune": "04101", + "libelleAcheminement": "LARDIERS", + "nomCommune": "LARDIERS" }, { - "codePostal": "74140", - "codeCommune": "74180", - "libelleAcheminement": "MESSERY", - "nomCommune": "MESSERY" + "codePostal": "06910", + "codeCommune": "06045", + "libelleAcheminement": "COLLONGUES", + "nomCommune": "COLLONGUES" }, { - "codePostal": "74130", - "codeCommune": "74189", - "libelleAcheminement": "MONT SAXONNEX", - "nomCommune": "MONT SAXONNEX" + "codePostal": "04420", + "codeCommune": "04113", + "libelleAcheminement": "MARCOUX", + "nomCommune": "MARCOUX" }, { - "codePostal": "74370", - "codeCommune": "74198", - "libelleAcheminement": "NAVES PARMELAN", - "nomCommune": "NAVES PARMELAN" + "codePostal": "06510", + "codeCommune": "06047", + "libelleAcheminement": "CONSEGUDES", + "nomCommune": "CONSEGUDES" }, { - "codePostal": "74140", - "codeCommune": "74199", - "libelleAcheminement": "NERNIER", - "nomCommune": "NERNIER" + "codePostal": "04190", + "codeCommune": "04116", + "libelleAcheminement": "LES MEES", + "nomCommune": "LES MEES" }, { - "codePostal": "74550", - "codeCommune": "74206", - "libelleAcheminement": "ORCIER", - "nomCommune": "ORCIER" + "codePostal": "06390", + "codeCommune": "06048", + "libelleAcheminement": "CONTES", + "nomCommune": "CONTES" }, { - "codePostal": "74190", - "codeCommune": "74208", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "04530", + "codeCommune": "04120", + "libelleAcheminement": "VAL D ORONAYE", + "nomCommune": "VAL D ORONAYE" }, { - "codePostal": "74190", - "codeCommune": "74208", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "06470", + "codeCommune": "06056", + "libelleAcheminement": "ENTRAUNES", + "nomCommune": "ENTRAUNES" }, { - "codePostal": "74190", - "codeCommune": "74208", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "04140", + "codeCommune": "04126", + "libelleAcheminement": "MONTCLAR", + "nomCommune": "MONTCLAR" }, { - "codePostal": "74950", - "codeCommune": "74221", - "libelleAcheminement": "LE REPOSOIR", - "nomCommune": "LE REPOSOIR" + "codePostal": "06510", + "codeCommune": "06061", + "libelleAcheminement": "LES FERRES", + "nomCommune": "LES FERRES" }, { - "codePostal": "74420", - "codeCommune": "74226", - "libelleAcheminement": "ST ANDRE DE BOEGE", - "nomCommune": "ST ANDRE DE BOEGE" + "codePostal": "04250", + "codeCommune": "04137", + "libelleAcheminement": "NIBLES", + "nomCommune": "NIBLES" }, { - "codePostal": "74410", - "codeCommune": "74232", - "libelleAcheminement": "ST EUSTACHE", - "nomCommune": "ST EUSTACHE" + "codePostal": "06540", + "codeCommune": "06062", + "libelleAcheminement": "FONTAN", + "nomCommune": "FONTAN" }, { - "codePostal": "74910", - "codeCommune": "74235", - "libelleAcheminement": "ST GERMAIN SUR RHONE", - "nomCommune": "ST GERMAIN SUR RHONE" + "codePostal": "04200", + "codeCommune": "04139", + "libelleAcheminement": "NOYERS SUR JABRON", + "nomCommune": "NOYERS SUR JABRON" }, { - "codePostal": "74160", - "codeCommune": "74243", - "libelleAcheminement": "ST JULIEN EN GENEVOIS", - "nomCommune": "ST JULIEN EN GENEVOIS" + "codePostal": "06620", + "codeCommune": "06068", + "libelleAcheminement": "GOURDON", + "nomCommune": "GOURDON" }, { - "codePostal": "74500", - "codeCommune": "74249", - "libelleAcheminement": "ST PAUL EN CHABLAIS", - "nomCommune": "ST PAUL EN CHABLAIS" + "codePostal": "04120", + "codeCommune": "04144", + "libelleAcheminement": "LA PALUD SUR VERDON", + "nomCommune": "LA PALUD SUR VERDON" }, { - "codePostal": "74800", - "codeCommune": "74250", - "libelleAcheminement": "ST PIERRE EN FAUCIGNY", - "nomCommune": "ST PIERRE EN FAUCIGNY" + "codePostal": "06130", + "codeCommune": "06069", + "libelleAcheminement": "GRASSE", + "nomCommune": "GRASSE" }, { - "codePostal": "74700", - "codeCommune": "74256", - "libelleAcheminement": "SALLANCHES", - "nomCommune": "SALLANCHES" + "codePostal": "04120", + "codeCommune": "04144", + "libelleAcheminement": "LA PALUD SUR VERDON", + "nomCommune": "LA PALUD SUR VERDON" }, { - "codePostal": "74140", - "codeCommune": "74263", - "libelleAcheminement": "SCIEZ", - "nomCommune": "SCIEZ" + "codePostal": "06420", + "codeCommune": "06073", + "libelleAcheminement": "ISOLA", + "nomCommune": "ISOLA" }, { - "codePostal": "74320", - "codeCommune": "74267", - "libelleAcheminement": "SEVRIER", - "nomCommune": "SEVRIER" + "codePostal": "04120", + "codeCommune": "04148", + "libelleAcheminement": "PEYROULES", + "nomCommune": "PEYROULES" }, { - "codePostal": "74430", - "codeCommune": "74271", - "libelleAcheminement": "SEYTROUX", - "nomCommune": "SEYTROUX" + "codePostal": "06670", + "codeCommune": "06075", + "libelleAcheminement": "LEVENS", + "nomCommune": "LEVENS" }, { - "codePostal": "74570", - "codeCommune": "74282", - "libelleAcheminement": "FILLIERE", - "nomCommune": "FILLIERE" + "codePostal": "04420", + "codeCommune": "04155", + "libelleAcheminement": "PRADS HAUTE BLEONE", + "nomCommune": "PRADS HAUTE BLEONE" }, { - "codePostal": "74470", - "codeCommune": "74287", - "libelleAcheminement": "VAILLY", - "nomCommune": "VAILLY" + "codePostal": "06440", + "codeCommune": "06077", + "libelleAcheminement": "LUCERAM", + "nomCommune": "LUCERAM" }, { - "codePostal": "74520", - "codeCommune": "74288", - "libelleAcheminement": "VALLEIRY", - "nomCommune": "VALLEIRY" + "codePostal": "06260", + "codeCommune": "04170", + "libelleAcheminement": "LA ROCHETTE", + "nomCommune": "LA ROCHETTE" }, { - "codePostal": "74150", - "codeCommune": "74289", - "libelleAcheminement": "VALLIERES SUR FIER", - "nomCommune": "VALLIERES SUR FIER" + "codePostal": "06710", + "codeCommune": "06078", + "libelleAcheminement": "MALAUSSENE", + "nomCommune": "MALAUSSENE" }, { - "codePostal": "74660", - "codeCommune": "74290", - "libelleAcheminement": "VALLORCINE", - "nomCommune": "VALLORCINE" + "codePostal": "04120", + "codeCommune": "04171", + "libelleAcheminement": "ROUGON", + "nomCommune": "ROUGON" }, { - "codePostal": "74130", - "codeCommune": "74312", - "libelleAcheminement": "VOUGY", - "nomCommune": "VOUGY" + "codePostal": "06650", + "codeCommune": "06089", + "libelleAcheminement": "OPIO", + "nomCommune": "OPIO" }, { - "codePostal": "74350", - "codeCommune": "74313", - "libelleAcheminement": "VOVRAY EN BORNES", - "nomCommune": "VOVRAY EN BORNES" + "codePostal": "04500", + "codeCommune": "04172", + "libelleAcheminement": "ROUMOULES", + "nomCommune": "ROUMOULES" }, { - "codePostal": "74520", - "codeCommune": "74314", - "libelleAcheminement": "VULBENS", - "nomCommune": "VULBENS" + "codePostal": "06440", + "codeCommune": "06091", + "libelleAcheminement": "PEILLE", + "nomCommune": "PEILLE" }, { - "codePostal": "75006", - "codeCommune": "75106", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 06" + "codePostal": "04380", + "codeCommune": "04177", + "libelleAcheminement": "HAUTES DUYES", + "nomCommune": "HAUTES DUYES" }, { - "codePostal": "75012", - "codeCommune": "75112", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 12" + "codePostal": "06470", + "codeCommune": "06094", + "libelleAcheminement": "PEONE", + "nomCommune": "PEONE" }, { - "codePostal": "75013", - "codeCommune": "75113", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 13" + "codePostal": "04170", + "codeCommune": "04183", + "libelleAcheminement": "ST JULIEN DU VERDON", + "nomCommune": "ST JULIEN DU VERDON" }, { - "codePostal": "75018", - "codeCommune": "75118", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 18" + "codePostal": "06830", + "codeCommune": "06100", + "libelleAcheminement": "REVEST LES ROCHES", + "nomCommune": "REVEST LES ROCHES" }, { - "codePostal": "76550", - "codeCommune": "76004", - "libelleAcheminement": "AMBRUMESNIL", - "nomCommune": "AMBRUMESNIL" + "codePostal": "04300", + "codeCommune": "04188", + "libelleAcheminement": "ST MAIME", + "nomCommune": "ST MAIME" }, { - "codePostal": "76710", - "codeCommune": "76007", - "libelleAcheminement": "ANCEAUMEVILLE", - "nomCommune": "ANCEAUMEVILLE" + "codePostal": "06910", + "codeCommune": "06106", + "libelleAcheminement": "ROQUESTERON", + "nomCommune": "ROQUESTERON" }, { - "codePostal": "76370", - "codeCommune": "76008", - "libelleAcheminement": "ANCOURT", - "nomCommune": "ANCOURT" + "codePostal": "04870", + "codeCommune": "04192", + "libelleAcheminement": "ST MICHEL L OBSERVATOIRE", + "nomCommune": "ST MICHEL L OBSERVATOIRE" }, { - "codePostal": "76740", - "codeCommune": "76016", - "libelleAcheminement": "ANGLESQUEVILLE LA BRAS LONG", - "nomCommune": "ANGLESQUEVILLE LA BRAS LONG" + "codePostal": "06670", + "codeCommune": "06109", + "libelleAcheminement": "LA ROQUETTE SUR VAR", + "nomCommune": "LA ROQUETTE SUR VAR" }, { - "codePostal": "76490", - "codeCommune": "76022", - "libelleAcheminement": "ANQUETIERVILLE", - "nomCommune": "ANQUETIERVILLE" + "codePostal": "04140", + "codeCommune": "04203", + "libelleAcheminement": "SELONNET", + "nomCommune": "SELONNET" }, { - "codePostal": "76550", - "codeCommune": "76030", - "libelleAcheminement": "AUBERMESNIL BEAUMAIS", - "nomCommune": "AUBERMESNIL BEAUMAIS" + "codePostal": "06260", + "codeCommune": "06115", + "libelleAcheminement": "ST ANTONIN", + "nomCommune": "ST ANTONIN" }, { - "codePostal": "76720", - "codeCommune": "76034", - "libelleAcheminement": "VAL DE SCIE", - "nomCommune": "VAL DE SCIE" + "codePostal": "04200", + "codeCommune": "04216", + "libelleAcheminement": "THEZE", + "nomCommune": "THEZE" }, { - "codePostal": "76730", - "codeCommune": "76036", - "libelleAcheminement": "AUPPEGARD", - "nomCommune": "AUPPEGARD" + "codePostal": "06670", + "codeCommune": "06117", + "libelleAcheminement": "ST BLAISE", + "nomCommune": "ST BLAISE" }, { - "codePostal": "76690", - "codeCommune": "76038", - "libelleAcheminement": "AUTHIEUX RATIEVILLE", - "nomCommune": "AUTHIEUX RATIEVILLE" + "codePostal": "04400", + "codeCommune": "04226", + "libelleAcheminement": "UVERNET FOURS", + "nomCommune": "UVERNET FOURS" }, { - "codePostal": "76116", - "codeCommune": "76046", - "libelleAcheminement": "AUZOUVILLE SUR RY", - "nomCommune": "AUZOUVILLE SUR RY" + "codePostal": "06230", + "codeCommune": "06121", + "libelleAcheminement": "ST JEAN CAP FERRAT", + "nomCommune": "ST JEAN CAP FERRAT" }, { - "codePostal": "76660", - "codeCommune": "76053", - "libelleAcheminement": "BAILLOLET", - "nomCommune": "BAILLOLET" + "codePostal": "04400", + "codeCommune": "04226", + "libelleAcheminement": "UVERNET FOURS", + "nomCommune": "UVERNET FOURS" }, { - "codePostal": "76630", - "codeCommune": "76054", - "libelleAcheminement": "BAILLY EN RIVIERE", - "nomCommune": "BAILLY EN RIVIERE" + "codePostal": "06570", + "codeCommune": "06128", + "libelleAcheminement": "ST PAUL DE VENCE", + "nomCommune": "ST PAUL DE VENCE" }, { - "codePostal": "76480", - "codeCommune": "76056", - "libelleAcheminement": "BARDOUVILLE", - "nomCommune": "BARDOUVILLE" + "codePostal": "04110", + "codeCommune": "04227", + "libelleAcheminement": "VACHERES", + "nomCommune": "VACHERES" }, { - "codePostal": "76340", - "codeCommune": "76059", - "libelleAcheminement": "BAZINVAL", - "nomCommune": "BAZINVAL" + "codePostal": "06380", + "codeCommune": "06136", + "libelleAcheminement": "SOSPEL", + "nomCommune": "SOSPEL" }, { - "codePostal": "76630", - "codeCommune": "76071", - "libelleAcheminement": "BELLENGREVILLE", - "nomCommune": "BELLENGREVILLE" + "codePostal": "04210", + "codeCommune": "04230", + "libelleAcheminement": "VALENSOLE", + "nomCommune": "VALENSOLE" }, { - "codePostal": "76790", - "codeCommune": "76079", - "libelleAcheminement": "BENOUVILLE", - "nomCommune": "BENOUVILLE" + "codePostal": "06530", + "codeCommune": "06137", + "libelleAcheminement": "SPERACEDES", + "nomCommune": "SPERACEDES" }, { - "codePostal": "76210", - "codeCommune": "76082", - "libelleAcheminement": "BERNIERES", - "nomCommune": "BERNIERES" + "codePostal": "04140", + "codeCommune": "04235", + "libelleAcheminement": "VERDACHES", + "nomCommune": "VERDACHES" }, { - "codePostal": "76450", - "codeCommune": "76084", - "libelleAcheminement": "BERTREVILLE", - "nomCommune": "BERTREVILLE" + "codePostal": "06590", + "codeCommune": "06138", + "libelleAcheminement": "THEOULE SUR MER", + "nomCommune": "THEOULE SUR MER" }, { - "codePostal": "76560", - "codeCommune": "76087", - "libelleAcheminement": "BERVILLE EN CAUX", - "nomCommune": "BERVILLE EN CAUX" + "codePostal": "04170", + "codeCommune": "04236", + "libelleAcheminement": "VERGONS", + "nomCommune": "VERGONS" }, { - "codePostal": "76190", - "codeCommune": "76099", - "libelleAcheminement": "BLACQUEVILLE", - "nomCommune": "BLACQUEVILLE" + "codePostal": "06710", + "codeCommune": "06139", + "libelleAcheminement": "THIERY", + "nomCommune": "THIERY" }, { - "codePostal": "76230", - "codeCommune": "76108", - "libelleAcheminement": "BOIS GUILLAUME", - "nomCommune": "BOIS GUILLAUME" + "codePostal": "04370", + "codeCommune": "04240", + "libelleAcheminement": "VILLARS COLMARS", + "nomCommune": "VILLARS COLMARS" }, { - "codePostal": "76590", - "codeCommune": "76112", - "libelleAcheminement": "LE BOIS ROBERT", - "nomCommune": "LE BOIS ROBERT" + "codePostal": "06450", + "codeCommune": "06151", + "libelleAcheminement": "UTELLE", + "nomCommune": "UTELLE" }, { - "codePostal": "76210", - "codeCommune": "76114", - "libelleAcheminement": "BOLBEC", - "nomCommune": "BOLBEC" + "codePostal": "04180", + "codeCommune": "04242", + "libelleAcheminement": "VILLENEUVE", + "nomCommune": "VILLENEUVE" }, { - "codePostal": "76210", - "codeCommune": "76115", - "libelleAcheminement": "BOLLEVILLE", - "nomCommune": "BOLLEVILLE" + "codePostal": "06560", + "codeCommune": "06152", + "libelleAcheminement": "VALBONNE", + "nomCommune": "VALBONNE" }, { - "codePostal": "76790", - "codeCommune": "76117", - "libelleAcheminement": "BORDEAUX ST CLAIR", - "nomCommune": "BORDEAUX ST CLAIR" + "codePostal": "04290", + "codeCommune": "04244", + "libelleAcheminement": "VOLONNE", + "nomCommune": "VOLONNE" }, { - "codePostal": "76750", - "codeCommune": "76120", - "libelleAcheminement": "BOSC BORDEL", - "nomCommune": "BOSC BORDEL" + "codePostal": "06750", + "codeCommune": "06154", + "libelleAcheminement": "VALDEROURE", + "nomCommune": "VALDEROURE" }, { - "codePostal": "76750", - "codeCommune": "76121", - "libelleAcheminement": "BOSC EDELINE", - "nomCommune": "BOSC EDELINE" + "codePostal": "05460", + "codeCommune": "05001", + "libelleAcheminement": "ABRIES RISTOLAS", + "nomCommune": "ABRIES RISTOLAS" }, { - "codePostal": "76220", - "codeCommune": "76124", - "libelleAcheminement": "BOSC HYONS", - "nomCommune": "BOSC HYONS" + "codePostal": "06450", + "codeCommune": "06156", + "libelleAcheminement": "VENANSON", + "nomCommune": "VENANSON" }, { - "codePostal": "76740", - "codeCommune": "76133", - "libelleAcheminement": "LE BOURG DUN", - "nomCommune": "LE BOURG DUN" + "codePostal": "05200", + "codeCommune": "05012", + "libelleAcheminement": "BARATIER", + "nomCommune": "BARATIER" }, { - "codePostal": "76360", - "codeCommune": "76135", - "libelleAcheminement": "BOUVILLE", - "nomCommune": "BOUVILLE" + "codePostal": "06140", + "codeCommune": "06157", + "libelleAcheminement": "VENCE", + "nomCommune": "VENCE" }, { - "codePostal": "76730", - "codeCommune": "76136", - "libelleAcheminement": "BRACHY", - "nomCommune": "BRACHY" + "codePostal": "05110", + "codeCommune": "05013", + "libelleAcheminement": "BARCILLONNETTE", + "nomCommune": "BARCILLONNETTE" }, { - "codePostal": "76850", - "codeCommune": "76138", - "libelleAcheminement": "BRACQUETUIT", - "nomCommune": "BRACQUETUIT" + "codePostal": "06710", + "codeCommune": "06158", + "libelleAcheminement": "VILLARS SUR VAR", + "nomCommune": "VILLARS SUR VAR" }, { - "codePostal": "76740", - "codeCommune": "76140", - "libelleAcheminement": "BRAMETOT", - "nomCommune": "BRAMETOT" + "codePostal": "05300", + "codeCommune": "05014", + "libelleAcheminement": "BARRET SUR MEOUGE", + "nomCommune": "BARRET SUR MEOUGE" }, { - "codePostal": "76220", - "codeCommune": "76142", - "libelleAcheminement": "BREMONTIER MERVAL", - "nomCommune": "BREMONTIER MERVAL" + "codePostal": "06230", + "codeCommune": "06159", + "libelleAcheminement": "VILLEFRANCHE SUR MER", + "nomCommune": "VILLEFRANCHE SUR MER" }, { - "codePostal": "76450", - "codeCommune": "76156", - "libelleAcheminement": "CANOUVILLE", - "nomCommune": "CANOUVILLE" + "codePostal": "05700", + "codeCommune": "05021", + "libelleAcheminement": "LE BERSAC", + "nomCommune": "LE BERSAC" }, { - "codePostal": "76560", - "codeCommune": "76161", - "libelleAcheminement": "CARVILLE POT DE FER", - "nomCommune": "CARVILLE POT DE FER" + "codePostal": "06430", + "codeCommune": "06162", + "libelleAcheminement": "LA BRIGUE", + "nomCommune": "LA BRIGUE" }, { - "codePostal": "76590", - "codeCommune": "76162", - "libelleAcheminement": "LE CATELIER", - "nomCommune": "LE CATELIER" + "codePostal": "05150", + "codeCommune": "05024", + "libelleAcheminement": "VALDOULE", + "nomCommune": "VALDOULE" }, { - "codePostal": "76930", - "codeCommune": "76167", - "libelleAcheminement": "CAUVILLE SUR MER", - "nomCommune": "CAUVILLE SUR MER" + "codePostal": "07210", + "codeCommune": "07008", + "libelleAcheminement": "ALISSAS", + "nomCommune": "ALISSAS" }, { - "codePostal": "76780", - "codeCommune": "76171", - "libelleAcheminement": "LA CHAPELLE ST OUEN", - "nomCommune": "LA CHAPELLE ST OUEN" + "codePostal": "05150", + "codeCommune": "05024", + "libelleAcheminement": "VALDOULE", + "nomCommune": "VALDOULE" }, { - "codePostal": "76410", - "codeCommune": "76178", - "libelleAcheminement": "CLEON", - "nomCommune": "CLEON" + "codePostal": "07370", + "codeCommune": "07015", + "libelleAcheminement": "ARRAS SUR RHONE", + "nomCommune": "ARRAS SUR RHONE" }, { - "codePostal": "76440", - "codeCommune": "76185", - "libelleAcheminement": "COMPAINVILLE", - "nomCommune": "COMPAINVILLE" + "codePostal": "05000", + "codeCommune": "05037", + "libelleAcheminement": "CHATEAUVIEUX", + "nomCommune": "CHATEAUVIEUX" }, { - "codePostal": "76400", - "codeCommune": "76187", - "libelleAcheminement": "CONTREMOULINS", - "nomCommune": "CONTREMOULINS" + "codePostal": "07440", + "codeCommune": "07035", + "libelleAcheminement": "BOFFRES", + "nomCommune": "BOFFRES" }, { - "codePostal": "76450", - "codeCommune": "76189", - "libelleAcheminement": "CRASVILLE LA MALLET", - "nomCommune": "CRASVILLE LA MALLET" + "codePostal": "05200", + "codeCommune": "05045", + "libelleAcheminement": "CROTS", + "nomCommune": "CROTS" }, { - "codePostal": "76850", - "codeCommune": "76193", - "libelleAcheminement": "LA CRIQUE", - "nomCommune": "LA CRIQUE" + "codePostal": "07340", + "codeCommune": "07051", + "libelleAcheminement": "CHAMPAGNE", + "nomCommune": "CHAMPAGNE" }, { - "codePostal": "76280", - "codeCommune": "76196", - "libelleAcheminement": "CRIQUETOT L ESNEVAL", - "nomCommune": "CRIQUETOT L ESNEVAL" + "codePostal": "05700", + "codeCommune": "05051", + "libelleAcheminement": "ETOILE ST CYRICE", + "nomCommune": "ETOILE ST CYRICE" }, { - "codePostal": "76260", - "codeCommune": "76207", - "libelleAcheminement": "CUVERVILLE SUR YERES", - "nomCommune": "CUVERVILLE SUR YERES" + "codePostal": "07800", + "codeCommune": "07055", + "libelleAcheminement": "CHARMES SUR RHONE", + "nomCommune": "CHARMES SUR RHONE" }, { - "codePostal": "76510", - "codeCommune": "76210", - "libelleAcheminement": "DAMPIERRE ST NICOLAS", - "nomCommune": "DAMPIERRE ST NICOLAS" + "codePostal": "05300", + "codeCommune": "05053", + "libelleAcheminement": "GARDE COLOMBE", + "nomCommune": "GARDE COLOMBE" }, { - "codePostal": "76370", - "codeCommune": "76217", - "libelleAcheminement": "DIEPPE", - "nomCommune": "DIEPPE" + "codePostal": "07110", + "codeCommune": "07058", + "libelleAcheminement": "CHASSIERS", + "nomCommune": "CHASSIERS" }, { - "codePostal": "76220", - "codeCommune": "76218", - "libelleAcheminement": "DOUDEAUVILLE", - "nomCommune": "DOUDEAUVILLE" + "codePostal": "05260", + "codeCommune": "05056", + "libelleAcheminement": "FOREST ST JULIEN", + "nomCommune": "FOREST ST JULIEN" }, { - "codePostal": "76190", - "codeCommune": "76223", - "libelleAcheminement": "ECALLES ALIX", - "nomCommune": "ECALLES ALIX" + "codePostal": "07240", + "codeCommune": "07060", + "libelleAcheminement": "CHATEAUNEUF DE VERNOUX", + "nomCommune": "CHATEAUNEUF DE VERNOUX" }, { - "codePostal": "76110", - "codeCommune": "76224", - "libelleAcheminement": "ECRAINVILLE", - "nomCommune": "ECRAINVILLE" + "codePostal": "05300", + "codeCommune": "05070", + "libelleAcheminement": "LARAGNE MONTEGLIN", + "nomCommune": "LARAGNE MONTEGLIN" }, { - "codePostal": "76540", - "codeCommune": "76226", - "libelleAcheminement": "ECRETTEVILLE SUR MER", - "nomCommune": "ECRETTEVILLE SUR MER" + "codePostal": "07110", + "codeCommune": "07062", + "libelleAcheminement": "CHAZEAUX", + "nomCommune": "CHAZEAUX" }, { - "codePostal": "76630", - "codeCommune": "76235", - "libelleAcheminement": "ENVERMEU", - "nomCommune": "ENVERMEU" + "codePostal": "05110", + "codeCommune": "05071", + "libelleAcheminement": "LARDIER ET VALENCA", + "nomCommune": "LARDIER ET VALENCA" }, { - "codePostal": "76640", - "codeCommune": "76236", - "libelleAcheminement": "ENVRONVILLE", - "nomCommune": "ENVRONVILLE" + "codePostal": "07130", + "codeCommune": "07070", + "libelleAcheminement": "CORNAS", + "nomCommune": "CORNAS" }, { - "codePostal": "76270", - "codeCommune": "76244", - "libelleAcheminement": "ESCLAVELLES", - "nomCommune": "ESCLAVELLES" + "codePostal": "05500", + "codeCommune": "05090", + "libelleAcheminement": "LA MOTTE EN CHAMPSAUR", + "nomCommune": "LA MOTTE EN CHAMPSAUR" }, { - "codePostal": "76260", - "codeCommune": "76252", - "libelleAcheminement": "ETALONDES", - "nomCommune": "ETALONDES" + "codePostal": "07000", + "codeCommune": "07072", + "libelleAcheminement": "COUX", + "nomCommune": "COUX" }, { - "codePostal": "76260", - "codeCommune": "76255", - "libelleAcheminement": "EU", - "nomCommune": "EU" + "codePostal": "05700", + "codeCommune": "05102", + "libelleAcheminement": "LA PIARRE", + "nomCommune": "LA PIARRE" }, { - "codePostal": "76220", - "codeCommune": "76260", - "libelleAcheminement": "FERRIERES EN BRAY", - "nomCommune": "FERRIERES EN BRAY" + "codePostal": "07270", + "codeCommune": "07073", + "libelleAcheminement": "LE CRESTET", + "nomCommune": "LE CRESTET" }, { - "codePostal": "76270", - "codeCommune": "76265", - "libelleAcheminement": "FLAMETS FRETILS", - "nomCommune": "FLAMETS FRETILS" + "codePostal": "05230", + "codeCommune": "05106", + "libelleAcheminement": "PRUNIERES", + "nomCommune": "PRUNIERES" }, { - "codePostal": "76290", - "codeCommune": "76270", - "libelleAcheminement": "FONTAINE LA MALLET", - "nomCommune": "FONTAINE LA MALLET" + "codePostal": "07170", + "codeCommune": "07077", + "libelleAcheminement": "DARBRES", + "nomCommune": "DARBRES" }, { - "codePostal": "76170", - "codeCommune": "76281", - "libelleAcheminement": "LA FRENAYE", - "nomCommune": "LA FRENAYE" + "codePostal": "05100", + "codeCommune": "05107", + "libelleAcheminement": "PUY ST ANDRE", + "nomCommune": "PUY ST ANDRE" }, { - "codePostal": "76510", - "codeCommune": "76288", - "libelleAcheminement": "FREULLEVILLE", - "nomCommune": "FREULLEVILLE" + "codePostal": "07160", + "codeCommune": "07082", + "libelleAcheminement": "DORNAS", + "nomCommune": "DORNAS" }, { - "codePostal": "76190", - "codeCommune": "76289", - "libelleAcheminement": "ST MARTIN DE L IF", - "nomCommune": "ST MARTIN DE L IF" + "codePostal": "05290", + "codeCommune": "05110", + "libelleAcheminement": "PUY ST VINCENT", + "nomCommune": "PUY ST VINCENT" }, { - "codePostal": "76190", - "codeCommune": "76289", - "libelleAcheminement": "ST MARTIN DE L IF", - "nomCommune": "ST MARTIN DE L IF" + "codePostal": "07340", + "codeCommune": "07089", + "libelleAcheminement": "FELINES", + "nomCommune": "FELINES" }, { - "codePostal": "76870", - "codeCommune": "76295", - "libelleAcheminement": "GAILLEFONTAINE", - "nomCommune": "GAILLEFONTAINE" + "codePostal": "05000", + "codeCommune": "05113", + "libelleAcheminement": "RAMBAUD", + "nomCommune": "RAMBAUD" }, { - "codePostal": "76280", - "codeCommune": "76307", - "libelleAcheminement": "GONNEVILLE LA MALLET", - "nomCommune": "GONNEVILLE LA MALLET" + "codePostal": "07500", + "codeCommune": "07102", + "libelleAcheminement": "GUILHERAND GRANGES", + "nomCommune": "GUILHERAND GRANGES" }, { - "codePostal": "76570", - "codeCommune": "76311", - "libelleAcheminement": "GOUPILLIERES", - "nomCommune": "GOUPILLIERES" + "codePostal": "05190", + "codeCommune": "05115", + "libelleAcheminement": "REMOLLON", + "nomCommune": "REMOLLON" }, { - "codePostal": "76220", - "codeCommune": "76312", - "libelleAcheminement": "GOURNAY EN BRAY", - "nomCommune": "GOURNAY EN BRAY" + "codePostal": "07310", + "codeCommune": "07103", + "libelleAcheminement": "ST JULIEN D INTRES", + "nomCommune": "ST JULIEN D INTRES" }, { - "codePostal": "76950", - "codeCommune": "76321", - "libelleAcheminement": "LES GRANDES VENTES", - "nomCommune": "LES GRANDES VENTES" + "codePostal": "05600", + "codeCommune": "05116", + "libelleAcheminement": "REOTIER", + "nomCommune": "REOTIER" }, { - "codePostal": "76970", - "codeCommune": "76325", - "libelleAcheminement": "GREMONVILLE", - "nomCommune": "GREMONVILLE" + "codePostal": "07510", + "codeCommune": "07105", + "libelleAcheminement": "ISSANLAS", + "nomCommune": "ISSANLAS" }, { - "codePostal": "76550", - "codeCommune": "76349", - "libelleAcheminement": "HAUTOT SUR MER", - "nomCommune": "HAUTOT SUR MER" + "codePostal": "05150", + "codeCommune": "05117", + "libelleAcheminement": "RIBEYRET", + "nomCommune": "RIBEYRET" }, { - "codePostal": "76610", - "codeCommune": "76351", - "libelleAcheminement": "LE HAVRE", - "nomCommune": "LE HAVRE" + "codePostal": "07660", + "codeCommune": "07105", + "libelleAcheminement": "ISSANLAS", + "nomCommune": "ISSANLAS" }, { - "codePostal": "76560", - "codeCommune": "76355", - "libelleAcheminement": "HERICOURT EN CAUX", - "nomCommune": "HERICOURT EN CAUX" + "codePostal": "05600", + "codeCommune": "05119", + "libelleAcheminement": "RISOUL", + "nomCommune": "RISOUL" }, { - "codePostal": "76780", - "codeCommune": "76358", - "libelleAcheminement": "LE HERON", - "nomCommune": "LE HERON" + "codePostal": "07470", + "codeCommune": "07106", + "libelleAcheminement": "ISSARLES", + "nomCommune": "ISSARLES" }, { - "codePostal": "76940", - "codeCommune": "76362", - "libelleAcheminement": "HEURTEAUVILLE", - "nomCommune": "HEURTEAUVILLE" + "codePostal": "05160", + "codeCommune": "05130", + "libelleAcheminement": "ST APOLLINAIRE", + "nomCommune": "ST APOLLINAIRE" }, { - "codePostal": "76340", - "codeCommune": "76363", - "libelleAcheminement": "HODENG AU BOSC", - "nomCommune": "HODENG AU BOSC" + "codePostal": "07380", + "codeCommune": "07107", + "libelleAcheminement": "JAUJAC", + "nomCommune": "JAUJAC" }, { - "codePostal": "76690", - "codeCommune": "76369", - "libelleAcheminement": "LA HOUSSAYE BERANGER", - "nomCommune": "LA HOUSSAYE BERANGER" + "codePostal": "05130", + "codeCommune": "05140", + "libelleAcheminement": "ST ETIENNE LE LAUS", + "nomCommune": "ST ETIENNE LE LAUS" }, { - "codePostal": "76890", - "codeCommune": "76373", - "libelleAcheminement": "IMBLEVILLE", - "nomCommune": "IMBLEVILLE" + "codePostal": "07260", + "codeCommune": "07110", + "libelleAcheminement": "JOYEUSE", + "nomCommune": "JOYEUSE" }, { - "codePostal": "76730", - "codeCommune": "76380", - "libelleAcheminement": "LAMMERVILLE", - "nomCommune": "LAMMERVILLE" + "codePostal": "05500", + "codeCommune": "05147", + "libelleAcheminement": "ST JULIEN EN CHAMPSAUR", + "nomCommune": "ST JULIEN EN CHAMPSAUR" }, { - "codePostal": "76810", - "codeCommune": "76400", - "libelleAcheminement": "LUNERAY", - "nomCommune": "LUNERAY" + "codePostal": "07600", + "codeCommune": "07111", + "libelleAcheminement": "JUVINAS", + "nomCommune": "JUVINAS" }, { - "codePostal": "76590", - "codeCommune": "76405", - "libelleAcheminement": "MANEHOUVILLE", - "nomCommune": "MANEHOUVILLE" + "codePostal": "05160", + "codeCommune": "05163", + "libelleAcheminement": "LE SAUZE DU LAC", + "nomCommune": "LE SAUZE DU LAC" }, { - "codePostal": "76400", - "codeCommune": "76406", - "libelleAcheminement": "MANIQUERVILLE", - "nomCommune": "MANIQUERVILLE" + "codePostal": "07470", + "codeCommune": "07119", + "libelleAcheminement": "LE LAC D ISSARLES", + "nomCommune": "LE LAC D ISSARLES" }, { - "codePostal": "76150", - "codeCommune": "76410", - "libelleAcheminement": "MAROMME", - "nomCommune": "MAROMME" + "codePostal": "05700", + "codeCommune": "05166", + "libelleAcheminement": "SERRES", + "nomCommune": "SERRES" }, { - "codePostal": "76390", - "codeCommune": "76411", - "libelleAcheminement": "MARQUES", - "nomCommune": "MARQUES" + "codePostal": "07200", + "codeCommune": "07122", + "libelleAcheminement": "LACHAPELLE SOUS AUBENAS", + "nomCommune": "LACHAPELLE SOUS AUBENAS" }, { - "codePostal": "76270", - "codeCommune": "76415", - "libelleAcheminement": "MASSY", - "nomCommune": "MASSY" + "codePostal": "05150", + "codeCommune": "05169", + "libelleAcheminement": "SORBIERS", + "nomCommune": "SORBIERS" }, { - "codePostal": "76490", - "codeCommune": "76418", - "libelleAcheminement": "MAULEVRIER STE GERTRUDE", - "nomCommune": "MAULEVRIER STE GERTRUDE" + "codePostal": "07110", + "codeCommune": "07132", + "libelleAcheminement": "LARGENTIERE", + "nomCommune": "LARGENTIERE" }, { - "codePostal": "76440", - "codeCommune": "76420", - "libelleAcheminement": "MAUQUENCHY", - "nomCommune": "MAUQUENCHY" + "codePostal": "05130", + "codeCommune": "05170", + "libelleAcheminement": "TALLARD", + "nomCommune": "TALLARD" }, { - "codePostal": "76270", - "codeCommune": "76424", - "libelleAcheminement": "MENONVAL", - "nomCommune": "MENONVAL" + "codePostal": "07160", + "codeCommune": "07150", + "libelleAcheminement": "MARIAC", + "nomCommune": "MARIAC" }, { - "codePostal": "76110", - "codeCommune": "76425", - "libelleAcheminement": "MENTHEVILLE", - "nomCommune": "MENTHEVILLE" + "codePostal": "05120", + "codeCommune": "05180", + "libelleAcheminement": "LES VIGNEAUX", + "nomCommune": "LES VIGNEAUX" }, { - "codePostal": "76460", - "codeCommune": "76428", - "libelleAcheminement": "LE MESNIL DURDENT", - "nomCommune": "LE MESNIL DURDENT" + "codePostal": "07200", + "codeCommune": "07155", + "libelleAcheminement": "MERCUER", + "nomCommune": "MERCUER" }, { - "codePostal": "76440", - "codeCommune": "76432", - "libelleAcheminement": "MESNIL MAUGER", - "nomCommune": "MESNIL MAUGER" + "codePostal": "06600", + "codeCommune": "06004", + "libelleAcheminement": "ANTIBES", + "nomCommune": "ANTIBES" }, { - "codePostal": "76520", - "codeCommune": "76434", - "libelleAcheminement": "MESNIL RAOUL", - "nomCommune": "MESNIL RAOUL" + "codePostal": "07140", + "codeCommune": "07163", + "libelleAcheminement": "MONTSELGUES", + "nomCommune": "MONTSELGUES" }, { - "codePostal": "76260", - "codeCommune": "76435", - "libelleAcheminement": "LE MESNIL REAUME", - "nomCommune": "LE MESNIL REAUME" + "codePostal": "06390", + "codeCommune": "06014", + "libelleAcheminement": "BENDEJUN", + "nomCommune": "BENDEJUN" }, { - "codePostal": "76710", - "codeCommune": "76452", - "libelleAcheminement": "MONTVILLE", - "nomCommune": "MONTVILLE" + "codePostal": "07230", + "codeCommune": "07171", + "libelleAcheminement": "PAYZAC", + "nomCommune": "PAYZAC" }, { - "codePostal": "76270", - "codeCommune": "76454", - "libelleAcheminement": "MORTEMER", - "nomCommune": "MORTEMER" + "codePostal": "06440", + "codeCommune": "06019", + "libelleAcheminement": "BLAUSASC", + "nomCommune": "BLAUSASC" }, { - "codePostal": "76520", - "codeCommune": "76464", - "libelleAcheminement": "LA NEUVILLE CHANT D OISEL", - "nomCommune": "LA NEUVILLE CHANT D OISEL" + "codePostal": "07380", + "codeCommune": "07178", + "libelleAcheminement": "PONT DE LABEAUME", + "nomCommune": "PONT DE LABEAUME" }, { - "codePostal": "76780", - "codeCommune": "76469", - "libelleAcheminement": "NOLLEVAL", - "nomCommune": "NOLLEVAL" + "codePostal": "06540", + "codeCommune": "06023", + "libelleAcheminement": "BREIL SUR ROYA", + "nomCommune": "BREIL SUR ROYA" }, { - "codePostal": "76330", - "codeCommune": "76471", - "libelleAcheminement": "NORVILLE", - "nomCommune": "NORVILLE" + "codePostal": "07000", + "codeCommune": "07186", + "libelleAcheminement": "PRIVAS", + "nomCommune": "PRIVAS" }, { - "codePostal": "76170", - "codeCommune": "76476", - "libelleAcheminement": "PORT JEROME SUR SEINE", - "nomCommune": "PORT JEROME SUR SEINE" + "codePostal": "06510", + "codeCommune": "06025", + "libelleAcheminement": "LE BROC", + "nomCommune": "LE BROC" }, { - "codePostal": "76330", - "codeCommune": "76476", - "libelleAcheminement": "PORT JEROME SUR SEINE", - "nomCommune": "PORT JEROME SUR SEINE" + "codePostal": "07200", + "codeCommune": "07190", + "libelleAcheminement": "ROCHECOLOMBE", + "nomCommune": "ROCHECOLOMBE" }, { - "codePostal": "76133", - "codeCommune": "76477", - "libelleAcheminement": "NOTRE DAME DU BEC", - "nomCommune": "NOTRE DAME DU BEC" + "codePostal": "06800", + "codeCommune": "06027", + "libelleAcheminement": "CAGNES SUR MER", + "nomCommune": "CAGNES SUR MER" }, { - "codePostal": "76730", - "codeCommune": "76485", - "libelleAcheminement": "OMONVILLE", - "nomCommune": "OMONVILLE" + "codePostal": "07110", + "codeCommune": "07196", + "libelleAcheminement": "ROCLES", + "nomCommune": "ROCLES" }, { - "codePostal": "76760", - "codeCommune": "76491", - "libelleAcheminement": "OUVILLE L ABBAYE", - "nomCommune": "OUVILLE L ABBAYE" + "codePostal": "06460", + "codeCommune": "06037", + "libelleAcheminement": "CAUSSOLS", + "nomCommune": "CAUSSOLS" }, { - "codePostal": "76860", - "codeCommune": "76492", - "libelleAcheminement": "OUVILLE LA RIVIERE", - "nomCommune": "OUVILLE LA RIVIERE" + "codePostal": "07250", + "codeCommune": "07198", + "libelleAcheminement": "ROMPON", + "nomCommune": "ROMPON" }, { - "codePostal": "76140", - "codeCommune": "76498", - "libelleAcheminement": "LE PETIT QUEVILLY", - "nomCommune": "LE PETIT QUEVILLY" + "codePostal": "06480", + "codeCommune": "06044", + "libelleAcheminement": "LA COLLE SUR LOUP", + "nomCommune": "LA COLLE SUR LOUP" }, { - "codePostal": "76330", - "codeCommune": "76499", - "libelleAcheminement": "PETIVILLE", - "nomCommune": "PETIVILLE" + "codePostal": "07320", + "codeCommune": "07204", + "libelleAcheminement": "ST AGREVE", + "nomCommune": "ST AGREVE" }, { - "codePostal": "76340", - "codeCommune": "76500", - "libelleAcheminement": "PIERRECOURT", - "nomCommune": "PIERRECOURT" + "codePostal": "06140", + "codeCommune": "06050", + "libelleAcheminement": "COURSEGOULES", + "nomCommune": "COURSEGOULES" }, { - "codePostal": "76210", - "codeCommune": "76518", - "libelleAcheminement": "RAFFETOT", - "nomCommune": "RAFFETOT" + "codePostal": "07690", + "codeCommune": "07212", + "libelleAcheminement": "ST ANDRE EN VIVARAIS", + "nomCommune": "ST ANDRE EN VIVARAIS" }, { - "codePostal": "76510", - "codeCommune": "76526", - "libelleAcheminement": "RICARVILLE DU VAL", - "nomCommune": "RICARVILLE DU VAL" + "codePostal": "06670", + "codeCommune": "06055", + "libelleAcheminement": "DURANUS", + "nomCommune": "DURANUS" }, { - "codePostal": "76640", - "codeCommune": "76531", - "libelleAcheminement": "ROCQUEFORT", - "nomCommune": "ROCQUEFORT" + "codePostal": "07270", + "codeCommune": "07216", + "libelleAcheminement": "ST BARTHELEMY GROZON", + "nomCommune": "ST BARTHELEMY GROZON" }, { - "codePostal": "76160", - "codeCommune": "76536", - "libelleAcheminement": "RONCHEROLLES SUR LE VIVIER", - "nomCommune": "RONCHEROLLES SUR LE VIVIER" + "codePostal": "06440", + "codeCommune": "06057", + "libelleAcheminement": "L ESCARENE", + "nomCommune": "L ESCARENE" }, { - "codePostal": "76100", - "codeCommune": "76540", - "libelleAcheminement": "ROUEN", - "nomCommune": "ROUEN" + "codePostal": "07300", + "codeCommune": "07217", + "libelleAcheminement": "ST BARTHELEMY LE PLAIN", + "nomCommune": "ST BARTHELEMY LE PLAIN" }, { - "codePostal": "76660", - "codeCommune": "76553", - "libelleAcheminement": "STE AGATHE D ALIERMONT", - "nomCommune": "STE AGATHE D ALIERMONT" + "codePostal": "06830", + "codeCommune": "06066", + "libelleAcheminement": "GILETTE", + "nomCommune": "GILETTE" }, { - "codePostal": "76690", - "codeCommune": "76555", - "libelleAcheminement": "ST ANDRE SUR CAILLY", - "nomCommune": "ST ANDRE SUR CAILLY" + "codePostal": "07160", + "codeCommune": "07222", + "libelleAcheminement": "ST CIERGE SOUS LE CHEYLARD", + "nomCommune": "ST CIERGE SOUS LE CHEYLARD" }, { - "codePostal": "76410", - "codeCommune": "76561", - "libelleAcheminement": "ST AUBIN LES ELBEUF", - "nomCommune": "ST AUBIN LES ELBEUF" + "codePostal": "06470", + "codeCommune": "06071", + "libelleAcheminement": "GUILLAUMES", + "nomCommune": "GUILLAUMES" }, { - "codePostal": "76550", - "codeCommune": "76565", - "libelleAcheminement": "ST AUBIN SUR SCIE", - "nomCommune": "ST AUBIN SUR SCIE" + "codePostal": "07430", + "codeCommune": "07227", + "libelleAcheminement": "ST CYR", + "nomCommune": "ST CYR" }, { - "codePostal": "76800", - "codeCommune": "76575", - "libelleAcheminement": "ST ETIENNE DU ROUVRAY", - "nomCommune": "ST ETIENNE DU ROUVRAY" + "codePostal": "06450", + "codeCommune": "06074", + "libelleAcheminement": "LANTOSQUE", + "nomCommune": "LANTOSQUE" }, { - "codePostal": "76440", - "codeCommune": "76578", - "libelleAcheminement": "STE GENEVIEVE", - "nomCommune": "STE GENEVIEVE" + "codePostal": "07230", + "codeCommune": "07238", + "libelleAcheminement": "ST GENEST DE BEAUZON", + "nomCommune": "ST GENEST DE BEAUZON" }, { - "codePostal": "76270", - "codeCommune": "76584", - "libelleAcheminement": "ST GERMAIN SUR EAULNE", - "nomCommune": "ST GERMAIN SUR EAULNE" + "codePostal": "06910", + "codeCommune": "06081", + "libelleAcheminement": "LE MAS", + "nomCommune": "LE MAS" }, { - "codePostal": "76560", - "codeCommune": "76597", - "libelleAcheminement": "ST LAURENT EN CAUX", - "nomCommune": "ST LAURENT EN CAUX" + "codePostal": "07580", + "codeCommune": "07242", + "libelleAcheminement": "ST GINEYS EN COIRON", + "nomCommune": "ST GINEYS EN COIRON" }, { - "codePostal": "76400", - "codeCommune": "76600", - "libelleAcheminement": "ST LEONARD", - "nomCommune": "ST LEONARD" + "codePostal": "06500", + "codeCommune": "06083", + "libelleAcheminement": "MENTON", + "nomCommune": "MENTON" }, { - "codePostal": "76890", - "codeCommune": "76602", - "libelleAcheminement": "ST MACLOU DE FOLLEVILLE", - "nomCommune": "ST MACLOU DE FOLLEVILLE" + "codePostal": "07240", + "codeCommune": "07244", + "libelleAcheminement": "ST JEAN CHAMBRE", + "nomCommune": "ST JEAN CHAMBRE" }, { - "codePostal": "76480", - "codeCommune": "76608", - "libelleAcheminement": "STE MARGUERITE SUR DUCLAIR", - "nomCommune": "STE MARGUERITE SUR DUCLAIR" + "codePostal": "06250", + "codeCommune": "06085", + "libelleAcheminement": "MOUGINS", + "nomCommune": "MOUGINS" }, { - "codePostal": "76370", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "07580", + "codeCommune": "07247", + "libelleAcheminement": "ST JEAN LE CENTENIER", + "nomCommune": "ST JEAN LE CENTENIER" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "06380", + "codeCommune": "06086", + "libelleAcheminement": "MOULINET", + "nomCommune": "MOULINET" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "07320", + "codeCommune": "07249", + "libelleAcheminement": "ST JEURE D ANDAURE", + "nomCommune": "ST JEURE D ANDAURE" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "06000", + "codeCommune": "06088", + "libelleAcheminement": "NICE", + "nomCommune": "NICE" }, { - "codePostal": "76260", - "codeCommune": "76619", - "libelleAcheminement": "ST MARTIN LE GAILLARD", - "nomCommune": "ST MARTIN LE GAILLARD" + "codePostal": "07700", + "codeCommune": "07259", + "libelleAcheminement": "ST JUST D ARDECHE", + "nomCommune": "ST JUST D ARDECHE" }, { - "codePostal": "76490", - "codeCommune": "76626", - "libelleAcheminement": "ST NICOLAS DE LA HAIE", - "nomCommune": "ST NICOLAS DE LA HAIE" + "codePostal": "06100", + "codeCommune": "06088", + "libelleAcheminement": "NICE", + "nomCommune": "NICE" }, { - "codePostal": "76890", - "codeCommune": "76628", - "libelleAcheminement": "ST OUEN DU BREUIL", - "nomCommune": "ST OUEN DU BREUIL" + "codePostal": "07590", + "codeCommune": "07262", + "libelleAcheminement": "ST LAURENT BAINS LAVAL D AURELLE", + "nomCommune": "ST LAURENT BAINS LAVAL D AURELLE" }, { - "codePostal": "76630", - "codeCommune": "76630", - "libelleAcheminement": "ST OUEN SOUS BAILLY", - "nomCommune": "ST OUEN SOUS BAILLY" + "codePostal": "06260", + "codeCommune": "06093", + "libelleAcheminement": "LA PENNE", + "nomCommune": "LA PENNE" }, { - "codePostal": "76260", - "codeCommune": "76638", - "libelleAcheminement": "ST PIERRE EN VAL", - "nomCommune": "ST PIERRE EN VAL" + "codePostal": "07100", + "codeCommune": "07265", + "libelleAcheminement": "ST MARCEL LES ANNONAY", + "nomCommune": "ST MARCEL LES ANNONAY" }, { - "codePostal": "76680", - "codeCommune": "76648", - "libelleAcheminement": "ST SAENS", - "nomCommune": "ST SAENS" + "codePostal": "06260", + "codeCommune": "06101", + "libelleAcheminement": "RIGAUD", + "nomCommune": "RIGAUD" }, { - "codePostal": "76430", - "codeCommune": "76658", - "libelleAcheminement": "ST VINCENT CRAMESNIL", - "nomCommune": "ST VINCENT CRAMESNIL" + "codePostal": "07700", + "codeCommune": "07268", + "libelleAcheminement": "ST MARTIN D ARDECHE", + "nomCommune": "ST MARTIN D ARDECHE" }, { - "codePostal": "76540", - "codeCommune": "76663", - "libelleAcheminement": "SASSETOT LE MAUCONDUIT", - "nomCommune": "SASSETOT LE MAUCONDUIT" + "codePostal": "06450", + "codeCommune": "06103", + "libelleAcheminement": "ROQUEBILLIERE", + "nomCommune": "ROQUEBILLIERE" }, { - "codePostal": "76540", - "codeCommune": "76663", - "libelleAcheminement": "SASSETOT LE MAUCONDUIT", - "nomCommune": "SASSETOT LE MAUCONDUIT" + "codePostal": "07200", + "codeCommune": "07272", + "libelleAcheminement": "ST MAURICE D ARDECHE", + "nomCommune": "ST MAURICE D ARDECHE" }, { - "codePostal": "76440", - "codeCommune": "76666", - "libelleAcheminement": "SAUMONT LA POTERIE", - "nomCommune": "SAUMONT LA POTERIE" + "codePostal": "06330", + "codeCommune": "06105", + "libelleAcheminement": "ROQUEFORT LES PINS", + "nomCommune": "ROQUEFORT LES PINS" }, { - "codePostal": "76550", - "codeCommune": "76667", - "libelleAcheminement": "SAUQUEVILLE", - "nomCommune": "SAUQUEVILLE" + "codePostal": "07140", + "codeCommune": "07284", + "libelleAcheminement": "ST PIERRE ST JEAN", + "nomCommune": "ST PIERRE ST JEAN" }, { - "codePostal": "76260", - "codeCommune": "76671", - "libelleAcheminement": "SEPT MEULES", - "nomCommune": "SEPT MEULES" + "codePostal": "06550", + "codeCommune": "06108", + "libelleAcheminement": "LA ROQUETTE SUR SIAGNE", + "nomCommune": "LA ROQUETTE SUR SIAGNE" }, { - "codePostal": "76540", - "codeCommune": "76686", - "libelleAcheminement": "THEUVILLE AUX MAILLOTS", - "nomCommune": "THEUVILLE AUX MAILLOTS" + "codePostal": "07190", + "codeCommune": "07286", + "libelleAcheminement": "ST PIERREVILLE", + "nomCommune": "ST PIERREVILLE" }, { - "codePostal": "76730", - "codeCommune": "76690", - "libelleAcheminement": "THIL MANNEVILLE", - "nomCommune": "THIL MANNEVILLE" + "codePostal": "06650", + "codeCommune": "06112", + "libelleAcheminement": "LE ROURET", + "nomCommune": "LE ROURET" }, { - "codePostal": "76400", - "codeCommune": "76706", - "libelleAcheminement": "TOURVILLE LES IFS", - "nomCommune": "TOURVILLE LES IFS" + "codePostal": "07410", + "codeCommune": "07301", + "libelleAcheminement": "ST VICTOR", + "nomCommune": "ST VICTOR" }, { - "codePostal": "76470", - "codeCommune": "76711", - "libelleAcheminement": "LE TREPORT", - "nomCommune": "LE TREPORT" + "codePostal": "06530", + "codeCommune": "06118", + "libelleAcheminement": "ST CEZAIRE SUR SIAGNE", + "nomCommune": "ST CEZAIRE SUR SIAGNE" }, { - "codePostal": "76190", - "codeCommune": "76718", - "libelleAcheminement": "VALLIQUERVILLE", - "nomCommune": "VALLIQUERVILLE" + "codePostal": "07370", + "codeCommune": "07308", + "libelleAcheminement": "SARRAS", + "nomCommune": "SARRAS" }, { - "codePostal": "76150", - "codeCommune": "76728", - "libelleAcheminement": "LA VAUPALIERE", - "nomCommune": "LA VAUPALIERE" + "codePostal": "06450", + "codeCommune": "06127", + "libelleAcheminement": "ST MARTIN VESUBIE", + "nomCommune": "ST MARTIN VESUBIE" }, { - "codePostal": "76560", - "codeCommune": "76730", - "libelleAcheminement": "VEAUVILLE LES QUELLES", - "nomCommune": "VEAUVILLE LES QUELLES" + "codePostal": "07340", + "codeCommune": "07321", + "libelleAcheminement": "THORRENC", + "nomCommune": "THORRENC" }, { - "codePostal": "76750", - "codeCommune": "76738", - "libelleAcheminement": "VIEUX MANOIR", - "nomCommune": "VIEUX MANOIR" + "codePostal": "06590", + "codeCommune": "06138", + "libelleAcheminement": "THEOULE SUR MER", + "nomCommune": "THEOULE SUR MER" }, { - "codePostal": "76390", - "codeCommune": "76739", - "libelleAcheminement": "VIEUX ROUEN SUR BRESLE", - "nomCommune": "VIEUX ROUEN SUR BRESLE" + "codePostal": "07400", + "codeCommune": "07332", + "libelleAcheminement": "VALVIGNERES", + "nomCommune": "VALVIGNERES" }, { - "codePostal": "76760", - "codeCommune": "76752", - "libelleAcheminement": "YERVILLE", - "nomCommune": "YERVILLE" + "codePostal": "06830", + "codeCommune": "06141", + "libelleAcheminement": "TOUDON", + "nomCommune": "TOUDON" }, { - "codePostal": "76530", - "codeCommune": "76759", - "libelleAcheminement": "YVILLE SUR SEINE", - "nomCommune": "YVILLE SUR SEINE" + "codePostal": "07690", + "codeCommune": "07333", + "libelleAcheminement": "VANOSC", + "nomCommune": "VANOSC" }, { - "codePostal": "77890", - "codeCommune": "77009", - "libelleAcheminement": "ARVILLE", - "nomCommune": "ARVILLE" + "codePostal": "06690", + "codeCommune": "06147", + "libelleAcheminement": "TOURRETTE LEVENS", + "nomCommune": "TOURRETTE LEVENS" }, { - "codePostal": "77720", - "codeCommune": "77010", - "libelleAcheminement": "AUBEPIERRE OZOUER LE REPOS", - "nomCommune": "AUBEPIERRE OZOUER LE REPOS" + "codePostal": "07140", + "codeCommune": "07334", + "libelleAcheminement": "LES VANS", + "nomCommune": "LES VANS" }, { - "codePostal": "77480", - "codeCommune": "77015", - "libelleAcheminement": "BABY", - "nomCommune": "BABY" + "codePostal": "06320", + "codeCommune": "06150", + "libelleAcheminement": "LA TURBIE", + "nomCommune": "LA TURBIE" }, { - "codePostal": "77700", - "codeCommune": "77018", - "libelleAcheminement": "BAILLY ROMAINVILLIERS", - "nomCommune": "BAILLY ROMAINVILLIERS" + "codePostal": "07260", + "codeCommune": "07336", + "libelleAcheminement": "VERNON", + "nomCommune": "VERNON" }, { - "codePostal": "77560", - "codeCommune": "77026", - "libelleAcheminement": "BEAUCHERY ST MARTIN", - "nomCommune": "BEAUCHERY ST MARTIN" + "codePostal": "07160", + "codeCommune": "07001", + "libelleAcheminement": "ACCONS", + "nomCommune": "ACCONS" }, { - "codePostal": "77115", - "codeCommune": "77034", - "libelleAcheminement": "BLANDY", - "nomCommune": "BLANDY" + "codePostal": "07610", + "codeCommune": "07345", + "libelleAcheminement": "VION", + "nomCommune": "VION" }, { - "codePostal": "77760", - "codeCommune": "77041", - "libelleAcheminement": "BOISSY AUX CAILLES", - "nomCommune": "BOISSY AUX CAILLES" + "codePostal": "07200", + "codeCommune": "07002", + "libelleAcheminement": "AILHON", + "nomCommune": "AILHON" }, { - "codePostal": "77580", - "codeCommune": "77047", - "libelleAcheminement": "BOULEURS", - "nomCommune": "BOULEURS" + "codePostal": "08090", + "codeCommune": "08003", + "libelleAcheminement": "AIGLEMONT", + "nomCommune": "AIGLEMONT" }, { - "codePostal": "77320", - "codeCommune": "77066", - "libelleAcheminement": "CERNEUX", - "nomCommune": "CERNEUX" + "codePostal": "07530", + "codeCommune": "07003", + "libelleAcheminement": "AIZAC", + "nomCommune": "AIZAC" }, { - "codePostal": "77930", - "codeCommune": "77069", - "libelleAcheminement": "CHAILLY EN BIERE", - "nomCommune": "CHAILLY EN BIERE" + "codePostal": "08130", + "codeCommune": "08006", + "libelleAcheminement": "ALLAND HUY ET SAUSSEUIL", + "nomCommune": "ALLAND HUY ET SAUSSEUIL" }, { - "codePostal": "77390", - "codeCommune": "77081", - "libelleAcheminement": "CHAMPDEUIL", - "nomCommune": "CHAMPDEUIL" + "codePostal": "07410", + "codeCommune": "07014", + "libelleAcheminement": "ARLEBOSC", + "nomCommune": "ARLEBOSC" }, { - "codePostal": "77720", - "codeCommune": "77086", - "libelleAcheminement": "LA CHAPELLE GAUTHIER", - "nomCommune": "LA CHAPELLE GAUTHIER" + "codePostal": "08130", + "codeCommune": "08010", + "libelleAcheminement": "AMBLY FLEURY", + "nomCommune": "AMBLY FLEURY" }, { - "codePostal": "77760", - "codeCommune": "77088", - "libelleAcheminement": "LA CHAPELLE LA REINE", - "nomCommune": "LA CHAPELLE LA REINE" + "codePostal": "07200", + "codeCommune": "07019", + "libelleAcheminement": "AUBENAS", + "nomCommune": "AUBENAS" }, { - "codePostal": "77410", - "codeCommune": "77095", - "libelleAcheminement": "CHARNY", - "nomCommune": "CHARNY" + "codePostal": "08260", + "codeCommune": "08015", + "libelleAcheminement": "ANTHENY", + "nomCommune": "ANTHENY" }, { - "codePostal": "77820", - "codeCommune": "77100", - "libelleAcheminement": "LE CHATELET EN BRIE", - "nomCommune": "LE CHATELET EN BRIE" + "codePostal": "07400", + "codeCommune": "07020", + "libelleAcheminement": "AUBIGNAS", + "nomCommune": "AUBIGNAS" }, { - "codePostal": "77126", - "codeCommune": "77101", - "libelleAcheminement": "CHATENAY SUR SEINE", - "nomCommune": "CHATENAY SUR SEINE" + "codePostal": "08290", + "codeCommune": "08016", + "libelleAcheminement": "AOUSTE", + "nomCommune": "AOUSTE" }, { - "codePostal": "77160", - "codeCommune": "77109", - "libelleAcheminement": "CHENOISE CUCHARMOY", - "nomCommune": "CHENOISE CUCHARMOY" + "codePostal": "07460", + "codeCommune": "07024", + "libelleAcheminement": "BANNE", + "nomCommune": "BANNE" }, { - "codePostal": "77173", - "codeCommune": "77114", - "libelleAcheminement": "CHEVRY COSSIGNY", - "nomCommune": "CHEVRY COSSIGNY" + "codePostal": "08400", + "codeCommune": "08018", + "libelleAcheminement": "ARDEUIL ET MONTFAUXELLES", + "nomCommune": "ARDEUIL ET MONTFAUXELLES" }, { - "codePostal": "77440", - "codeCommune": "77126", - "libelleAcheminement": "CONGIS SUR THEROUANNE", - "nomCommune": "CONGIS SUR THEROUANNE" + "codePostal": "07460", + "codeCommune": "07031", + "libelleAcheminement": "BERRIAS ET CASTELJAU", + "nomCommune": "BERRIAS ET CASTELJAU" }, { - "codePostal": "77170", - "codeCommune": "77127", - "libelleAcheminement": "COUBERT", - "nomCommune": "COUBERT" + "codePostal": "08390", + "codeCommune": "08023", + "libelleAcheminement": "ARTAISE LE VIVIER", + "nomCommune": "ARTAISE LE VIVIER" }, { - "codePostal": "77450", - "codeCommune": "77171", - "libelleAcheminement": "ESBLY", - "nomCommune": "ESBLY" + "codePostal": "07460", + "codeCommune": "07031", + "libelleAcheminement": "BERRIAS ET CASTELJAU", + "nomCommune": "BERRIAS ET CASTELJAU" }, { - "codePostal": "77139", - "codeCommune": "77173", - "libelleAcheminement": "ETREPILLY", - "nomCommune": "ETREPILLY" + "codePostal": "08320", + "codeCommune": "08028", + "libelleAcheminement": "AUBRIVES", + "nomCommune": "AUBRIVES" }, { - "codePostal": "77166", - "codeCommune": "77175", - "libelleAcheminement": "EVRY GREGY SUR YERRE", - "nomCommune": "EVRY GREGY SUR YERRE" + "codePostal": "07160", + "codeCommune": "07049", + "libelleAcheminement": "LE CHAMBON", + "nomCommune": "LE CHAMBON" }, { - "codePostal": "77590", - "codeCommune": "77188", - "libelleAcheminement": "FONTAINE LE PORT", - "nomCommune": "FONTAINE LE PORT" + "codePostal": "08200", + "codeCommune": "08043", + "libelleAcheminement": "BALAN", + "nomCommune": "BALAN" }, { - "codePostal": "77390", - "codeCommune": "77195", - "libelleAcheminement": "FOUJU", - "nomCommune": "FOUJU" + "codePostal": "07440", + "codeCommune": "07052", + "libelleAcheminement": "CHAMPIS", + "nomCommune": "CHAMPIS" }, { - "codePostal": "77910", - "codeCommune": "77203", - "libelleAcheminement": "GERMIGNY L EVEQUE", - "nomCommune": "GERMIGNY L EVEQUE" + "codePostal": "08300", + "codeCommune": "08048", + "libelleAcheminement": "BARBY", + "nomCommune": "BARBY" }, { - "codePostal": "77720", - "codeCommune": "77211", - "libelleAcheminement": "GRANDPUITS BAILLY CARROIS", - "nomCommune": "GRANDPUITS BAILLY CARROIS" + "codePostal": "07130", + "codeCommune": "07059", + "libelleAcheminement": "CHATEAUBOURG", + "nomCommune": "CHATEAUBOURG" }, { - "codePostal": "77118", - "codeCommune": "77212", - "libelleAcheminement": "GRAVON", - "nomCommune": "GRAVON" + "codePostal": "08240", + "codeCommune": "08052", + "libelleAcheminement": "BAYONVILLE", + "nomCommune": "BAYONVILLE" }, { - "codePostal": "77850", - "codeCommune": "77226", - "libelleAcheminement": "HERICY", - "nomCommune": "HERICY" + "codePostal": "07300", + "codeCommune": "07063", + "libelleAcheminement": "CHEMINAS", + "nomCommune": "CHEMINAS" }, { - "codePostal": "77114", - "codeCommune": "77227", - "libelleAcheminement": "HERME", - "nomCommune": "HERME" + "codePostal": "08240", + "codeCommune": "08057", + "libelleAcheminement": "BELLEVILLE ET CHATILLON SUR BAR", + "nomCommune": "BELLEVILLE ET CHATILLON SUR BAR" }, { - "codePostal": "77600", - "codeCommune": "77237", - "libelleAcheminement": "JOSSIGNY", - "nomCommune": "JOSSIGNY" + "codePostal": "07210", + "codeCommune": "07066", + "libelleAcheminement": "CHOMERAC", + "nomCommune": "CHOMERAC" }, { - "codePostal": "77320", - "codeCommune": "77240", - "libelleAcheminement": "JOUY SUR MORIN", - "nomCommune": "JOUY SUR MORIN" + "codePostal": "08090", + "codeCommune": "08058", + "libelleAcheminement": "BELVAL", + "nomCommune": "BELVAL" }, { - "codePostal": "77400", - "codeCommune": "77243", - "libelleAcheminement": "LAGNY SUR MARNE", - "nomCommune": "LAGNY SUR MARNE" + "codePostal": "07430", + "codeCommune": "07067", + "libelleAcheminement": "COLOMBIER LE CARDINAL", + "nomCommune": "COLOMBIER LE CARDINAL" }, { - "codePostal": "77220", - "codeCommune": "77254", - "libelleAcheminement": "LIVERDY EN BRIE", - "nomCommune": "LIVERDY EN BRIE" + "codePostal": "08300", + "codeCommune": "08060", + "libelleAcheminement": "BERGNICOURT", + "nomCommune": "BERGNICOURT" }, { - "codePostal": "77230", - "codeCommune": "77259", - "libelleAcheminement": "LONGPERRIER", - "nomCommune": "LONGPERRIER" + "codePostal": "07270", + "codeCommune": "07068", + "libelleAcheminement": "COLOMBIER LE JEUNE", + "nomCommune": "COLOMBIER LE JEUNE" }, { - "codePostal": "77570", - "codeCommune": "77267", - "libelleAcheminement": "LA MADELEINE SUR LOING", - "nomCommune": "LA MADELEINE SUR LOING" + "codePostal": "08240", + "codeCommune": "08061", + "libelleAcheminement": "LA BERLIERE", + "nomCommune": "LA BERLIERE" }, { - "codePostal": "77120", - "codeCommune": "77278", - "libelleAcheminement": "MAROLLES EN BRIE", - "nomCommune": "MAROLLES EN BRIE" + "codePostal": "07410", + "codeCommune": "07069", + "libelleAcheminement": "COLOMBIER LE VIEUX", + "nomCommune": "COLOMBIER LE VIEUX" }, { - "codePostal": "77130", - "codeCommune": "77279", - "libelleAcheminement": "MAROLLES SUR SEINE", - "nomCommune": "MAROLLES SUR SEINE" + "codePostal": "08300", + "codeCommune": "08064", + "libelleAcheminement": "BIERMES", + "nomCommune": "BIERMES" }, { - "codePostal": "77145", - "codeCommune": "77283", - "libelleAcheminement": "MAY EN MULTIEN", - "nomCommune": "MAY EN MULTIEN" + "codePostal": "07350", + "codeCommune": "07076", + "libelleAcheminement": "CRUAS", + "nomCommune": "CRUAS" }, { - "codePostal": "77410", - "codeCommune": "77292", - "libelleAcheminement": "MESSY", - "nomCommune": "MESSY" + "codePostal": "08310", + "codeCommune": "08066", + "libelleAcheminement": "BIGNICOURT", + "nomCommune": "BIGNICOURT" }, { - "codePostal": "77130", - "codeCommune": "77293", - "libelleAcheminement": "MISY SUR YONNE", - "nomCommune": "MISY SUR YONNE" + "codePostal": "07570", + "codeCommune": "07079", + "libelleAcheminement": "DESAIGNES", + "nomCommune": "DESAIGNES" }, { - "codePostal": "77950", - "codeCommune": "77295", - "libelleAcheminement": "MOISENAY", - "nomCommune": "MOISENAY" + "codePostal": "08140", + "codeCommune": "08083", + "libelleAcheminement": "BREVILLY", + "nomCommune": "BREVILLY" }, { - "codePostal": "77140", - "codeCommune": "77302", - "libelleAcheminement": "MONTCOURT FROMONVILLE", - "nomCommune": "MONTCOURT FROMONVILLE" + "codePostal": "07370", + "codeCommune": "07084", + "libelleAcheminement": "ECLASSAN", + "nomCommune": "ECLASSAN" }, { - "codePostal": "77122", - "codeCommune": "77309", - "libelleAcheminement": "MONTHYON", - "nomCommune": "MONTHYON" + "codePostal": "08240", + "codeCommune": "08085", + "libelleAcheminement": "BRIEULLES SUR BAR", + "nomCommune": "BRIEULLES SUR BAR" }, { - "codePostal": "77480", - "codeCommune": "77310", - "libelleAcheminement": "MONTIGNY LE GUESDIER", - "nomCommune": "MONTIGNY LE GUESDIER" + "codePostal": "07000", + "codeCommune": "07090", + "libelleAcheminement": "FLAVIAC", + "nomCommune": "FLAVIAC" }, { - "codePostal": "77520", - "codeCommune": "77311", - "libelleAcheminement": "MONTIGNY LENCOUP", - "nomCommune": "MONTIGNY LENCOUP" + "codePostal": "08380", + "codeCommune": "08087", + "libelleAcheminement": "BROGNON", + "nomCommune": "BROGNON" }, { - "codePostal": "77450", - "codeCommune": "77315", - "libelleAcheminement": "MONTRY", - "nomCommune": "MONTRY" + "codePostal": "07800", + "codeCommune": "07094", + "libelleAcheminement": "GILHAC ET BRUZAC", + "nomCommune": "GILHAC ET BRUZAC" }, { - "codePostal": "77250", - "codeCommune": "77316", - "libelleAcheminement": "MORET LOING ET ORVANNE", - "nomCommune": "MORET LOING ET ORVANNE" + "codePostal": "08450", + "codeCommune": "08088", + "libelleAcheminement": "BULSON", + "nomCommune": "BULSON" }, { - "codePostal": "77480", - "codeCommune": "77321", - "libelleAcheminement": "MOUSSEAUX LES BRAY", - "nomCommune": "MOUSSEAUX LES BRAY" + "codePostal": "07000", + "codeCommune": "07098", + "libelleAcheminement": "GOURDON", + "nomCommune": "GOURDON" }, { - "codePostal": "77176", - "codeCommune": "77326", - "libelleAcheminement": "NANDY", - "nomCommune": "NANDY" + "codePostal": "08240", + "codeCommune": "08089", + "libelleAcheminement": "BUZANCY", + "nomCommune": "BUZANCY" }, { - "codePostal": "77124", - "codeCommune": "77335", - "libelleAcheminement": "CHAUCONIN NEUFMONTIERS", - "nomCommune": "CHAUCONIN NEUFMONTIERS" + "codePostal": "07120", + "codeCommune": "07101", + "libelleAcheminement": "GROSPIERRES", + "nomCommune": "GROSPIERRES" }, { - "codePostal": "77940", - "codeCommune": "77338", - "libelleAcheminement": "NOISY RUDIGNON", - "nomCommune": "NOISY RUDIGNON" + "codePostal": "08110", + "codeCommune": "08090", + "libelleAcheminement": "CARIGNAN", + "nomCommune": "CARIGNAN" }, { - "codePostal": "77890", - "codeCommune": "77342", - "libelleAcheminement": "OBSONVILLE", - "nomCommune": "OBSONVILLE" + "codePostal": "07310", + "codeCommune": "07103", + "libelleAcheminement": "ST JULIEN D INTRES", + "nomCommune": "ST JULIEN D INTRES" }, { - "codePostal": "77134", - "codeCommune": "77347", - "libelleAcheminement": "LES ORMES SUR VOULZIE", - "nomCommune": "LES ORMES SUR VOULZIE" + "codePostal": "08310", + "codeCommune": "08092", + "libelleAcheminement": "CAUROY", + "nomCommune": "CAUROY" }, { - "codePostal": "77710", - "codeCommune": "77353", - "libelleAcheminement": "PALEY", - "nomCommune": "PALEY" + "codePostal": "07310", + "codeCommune": "07123", + "libelleAcheminement": "LACHAPELLE SOUS CHANEAC", + "nomCommune": "LACHAPELLE SOUS CHANEAC" }, { - "codePostal": "77124", - "codeCommune": "77358", - "libelleAcheminement": "PENCHARD", - "nomCommune": "PENCHARD" + "codePostal": "08430", + "codeCommune": "08099", + "libelleAcheminement": "CHAMPIGNEUL SUR VENCE", + "nomCommune": "CHAMPIGNEUL SUR VENCE" }, { - "codePostal": "77165", - "codeCommune": "77364", - "libelleAcheminement": "LE PLESSIS AUX BOIS", - "nomCommune": "LE PLESSIS AUX BOIS" + "codePostal": "07150", + "codeCommune": "07126", + "libelleAcheminement": "LAGORCE", + "nomCommune": "LAGORCE" }, { - "codePostal": "77400", - "codeCommune": "77372", - "libelleAcheminement": "POMPONNE", - "nomCommune": "POMPONNE" + "codePostal": "08260", + "codeCommune": "08100", + "libelleAcheminement": "CHAMPLIN", + "nomCommune": "CHAMPLIN" }, { - "codePostal": "77340", - "codeCommune": "77373", - "libelleAcheminement": "PONTAULT COMBAULT", - "nomCommune": "PONTAULT COMBAULT" + "codePostal": "07380", + "codeCommune": "07127", + "libelleAcheminement": "LALEVADE D ARDECHE", + "nomCommune": "LALEVADE D ARDECHE" }, { - "codePostal": "77370", - "codeCommune": "77383", - "libelleAcheminement": "RAMPILLON", - "nomCommune": "RAMPILLON" + "codePostal": "08450", + "codeCommune": "08115", + "libelleAcheminement": "CHEMERY CHEHERY", + "nomCommune": "CHEMERY CHEHERY" }, { - "codePostal": "77680", - "codeCommune": "77390", - "libelleAcheminement": "ROISSY EN BRIE", - "nomCommune": "ROISSY EN BRIE" + "codePostal": "07270", + "codeCommune": "07129", + "libelleAcheminement": "LAMASTRE", + "nomCommune": "LAMASTRE" }, { - "codePostal": "77510", - "codeCommune": "77398", - "libelleAcheminement": "SABLONNIERES", - "nomCommune": "SABLONNIERES" + "codePostal": "08250", + "codeCommune": "08120", + "libelleAcheminement": "CHEVIERES", + "nomCommune": "CHEVIERES" }, { - "codePostal": "77510", - "codeCommune": "77406", - "libelleAcheminement": "ST DENIS LES REBAIS", - "nomCommune": "ST DENIS LES REBAIS" + "codePostal": "07200", + "codeCommune": "07131", + "libelleAcheminement": "LANAS", + "nomCommune": "LANAS" }, { - "codePostal": "77130", - "codeCommune": "77409", - "libelleAcheminement": "ST GERMAIN LAVAL", - "nomCommune": "ST GERMAIN LAVAL" + "codePostal": "08260", + "codeCommune": "08121", + "libelleAcheminement": "CHILLY", + "nomCommune": "CHILLY" }, { - "codePostal": "77230", - "codeCommune": "77420", - "libelleAcheminement": "ST MARD", - "nomCommune": "ST MARD" + "codePostal": "07660", + "codeCommune": "07137", + "libelleAcheminement": "LAVILLATTE", + "nomCommune": "LAVILLATTE" }, { - "codePostal": "77320", - "codeCommune": "77424", - "libelleAcheminement": "ST MARTIN DU BOSCHET", - "nomCommune": "ST MARTIN DU BOSCHET" + "codePostal": "08090", + "codeCommune": "08125", + "libelleAcheminement": "CLIRON", + "nomCommune": "CLIRON" }, { - "codePostal": "77720", - "codeCommune": "77426", - "libelleAcheminement": "ST MERY", - "nomCommune": "ST MERY" + "codePostal": "07170", + "codeCommune": "07138", + "libelleAcheminement": "LAVILLEDIEU", + "nomCommune": "LAVILLEDIEU" }, { - "codePostal": "77120", - "codeCommune": "77433", - "libelleAcheminement": "BEAUTHEIL SAINTS", - "nomCommune": "BEAUTHEIL SAINTS" + "codePostal": "08130", + "codeCommune": "08134", + "libelleAcheminement": "COULOMMES ET MARQUENY", + "nomCommune": "COULOMMES ET MARQUENY" }, { - "codePostal": "77165", - "codeCommune": "77437", - "libelleAcheminement": "ST SOUPPLETS", - "nomCommune": "ST SOUPPLETS" + "codePostal": "07610", + "codeCommune": "07140", + "libelleAcheminement": "LEMPS", + "nomCommune": "LEMPS" }, { - "codePostal": "77920", - "codeCommune": "77441", - "libelleAcheminement": "SAMOIS SUR SEINE", - "nomCommune": "SAMOIS SUR SEINE" + "codePostal": "08400", + "codeCommune": "08135", + "libelleAcheminement": "LA CROIX AUX BOIS", + "nomCommune": "LA CROIX AUX BOIS" }, { - "codePostal": "77320", - "codeCommune": "77444", - "libelleAcheminement": "SANCY LES PROVINS", - "nomCommune": "SANCY LES PROVINS" + "codePostal": "07660", + "codeCommune": "07142", + "libelleAcheminement": "LESPERON", + "nomCommune": "LESPERON" }, { - "codePostal": "77650", - "codeCommune": "77446", - "libelleAcheminement": "SAVINS", - "nomCommune": "SAVINS" + "codePostal": "08800", + "codeCommune": "08139", + "libelleAcheminement": "DEVILLE", + "nomCommune": "DEVILLE" }, { - "codePostal": "77170", - "codeCommune": "77450", - "libelleAcheminement": "SERVON", - "nomCommune": "SERVON" + "codePostal": "07170", + "codeCommune": "07145", + "libelleAcheminement": "LUSSAS", + "nomCommune": "LUSSAS" }, { - "codePostal": "77520", - "codeCommune": "77452", - "libelleAcheminement": "SIGY", - "nomCommune": "SIGY" + "codePostal": "08140", + "codeCommune": "08145", + "libelleAcheminement": "DOUZY", + "nomCommune": "DOUZY" }, { - "codePostal": "77111", - "codeCommune": "77455", - "libelleAcheminement": "SOIGNOLLES EN BRIE", - "nomCommune": "SOIGNOLLES EN BRIE" + "codePostal": "07140", + "codeCommune": "07147", + "libelleAcheminement": "MALARCE SUR LA THINES", + "nomCommune": "MALARCE SUR LA THINES" }, { - "codePostal": "77650", - "codeCommune": "77456", - "libelleAcheminement": "SOISY BOUY", - "nomCommune": "SOISY BOUY" + "codePostal": "08300", + "codeCommune": "08148", + "libelleAcheminement": "L ECAILLE", + "nomCommune": "L ECAILLE" }, { - "codePostal": "77440", - "codeCommune": "77460", - "libelleAcheminement": "TANCROU", - "nomCommune": "TANCROU" + "codePostal": "07140", + "codeCommune": "07148", + "libelleAcheminement": "MALBOSC", + "nomCommune": "MALBOSC" }, { - "codePostal": "77810", - "codeCommune": "77463", - "libelleAcheminement": "THOMERY", - "nomCommune": "THOMERY" + "codePostal": "08260", + "codeCommune": "08155", + "libelleAcheminement": "ETALLE", + "nomCommune": "ETALLE" }, { - "codePostal": "77400", - "codeCommune": "77464", - "libelleAcheminement": "THORIGNY SUR MARNE", - "nomCommune": "THORIGNY SUR MARNE" + "codePostal": "07300", + "codeCommune": "07152", + "libelleAcheminement": "MAUVES", + "nomCommune": "MAUVES" }, { - "codePostal": "77940", - "codeCommune": "77465", - "libelleAcheminement": "THOURY FEROTTES", - "nomCommune": "THOURY FEROTTES" + "codePostal": "08160", + "codeCommune": "08158", + "libelleAcheminement": "ETREPIGNY", + "nomCommune": "ETREPIGNY" }, { - "codePostal": "77510", - "codeCommune": "77472", - "libelleAcheminement": "LA TRETOIRE", - "nomCommune": "LA TRETOIRE" + "codePostal": "07690", + "codeCommune": "07160", + "libelleAcheminement": "MONESTIER", + "nomCommune": "MONESTIER" }, { - "codePostal": "77450", - "codeCommune": "77474", - "libelleAcheminement": "TRILBARDOU", - "nomCommune": "TRILBARDOU" + "codePostal": "08090", + "codeCommune": "08160", + "libelleAcheminement": "EVIGNY", + "nomCommune": "EVIGNY" }, { - "codePostal": "77440", - "codeCommune": "77476", - "libelleAcheminement": "TROCY EN MULTIEN", - "nomCommune": "TROCY EN MULTIEN" + "codePostal": "07340", + "codeCommune": "07172", + "libelleAcheminement": "PEAUGRES", + "nomCommune": "PEAUGRES" }, { - "codePostal": "77130", - "codeCommune": "77482", - "libelleAcheminement": "VARENNES SUR SEINE", - "nomCommune": "VARENNES SUR SEINE" + "codePostal": "08170", + "codeCommune": "08166", + "libelleAcheminement": "FEPIN", + "nomCommune": "FEPIN" }, { - "codePostal": "77000", - "codeCommune": "77487", - "libelleAcheminement": "VAUX LE PENIL", - "nomCommune": "VAUX LE PENIL" + "codePostal": "07300", + "codeCommune": "07177", + "libelleAcheminement": "PLATS", + "nomCommune": "PLATS" }, { - "codePostal": "77510", - "codeCommune": "77492", - "libelleAcheminement": "VERDELOT", - "nomCommune": "VERDELOT" + "codePostal": "08260", + "codeCommune": "08169", + "libelleAcheminement": "FLAIGNES HAVYS", + "nomCommune": "FLAIGNES HAVYS" }, { - "codePostal": "77670", - "codeCommune": "77494", - "libelleAcheminement": "VERNOU LA CELLE SUR SEINE", - "nomCommune": "VERNOU LA CELLE SUR SEINE" + "codePostal": "07000", + "codeCommune": "07179", + "libelleAcheminement": "POURCHERES", + "nomCommune": "POURCHERES" }, { - "codePostal": "78570", - "codeCommune": "78015", - "libelleAcheminement": "ANDRESY", - "nomCommune": "ANDRESY" + "codePostal": "08160", + "codeCommune": "08173", + "libelleAcheminement": "FLIZE", + "nomCommune": "FLIZE" }, { - "codePostal": "78570", - "codeCommune": "78015", - "libelleAcheminement": "ANDRESY", - "nomCommune": "ANDRESY" + "codePostal": "07120", + "codeCommune": "07183", + "libelleAcheminement": "PRADONS", + "nomCommune": "PRADONS" }, { - "codePostal": "78650", - "codeCommune": "78062", - "libelleAcheminement": "BEYNES", - "nomCommune": "BEYNES" + "codePostal": "08600", + "codeCommune": "08175", + "libelleAcheminement": "FOISCHES", + "nomCommune": "FOISCHES" }, { - "codePostal": "78650", - "codeCommune": "78062", - "libelleAcheminement": "BEYNES", - "nomCommune": "BEYNES" + "codePostal": "07290", + "codeCommune": "07188", + "libelleAcheminement": "QUINTENAS", + "nomCommune": "QUINTENAS" }, { - "codePostal": "78200", - "codeCommune": "78072", - "libelleAcheminement": "BOINVILLIERS", - "nomCommune": "BOINVILLIERS" + "codePostal": "08140", + "codeCommune": "08179", + "libelleAcheminement": "FRANCHEVAL", + "nomCommune": "FRANCHEVAL" }, { - "codePostal": "78270", - "codeCommune": "78089", - "libelleAcheminement": "BONNIERES SUR SEINE", - "nomCommune": "BONNIERES SUR SEINE" + "codePostal": "07320", + "codeCommune": "07192", + "libelleAcheminement": "ROCHEPAULE", + "nomCommune": "ROCHEPAULE" }, { - "codePostal": "78200", - "codeCommune": "78118", - "libelleAcheminement": "BUCHELAY", - "nomCommune": "BUCHELAY" + "codePostal": "08370", + "codeCommune": "08184", + "libelleAcheminement": "FROMY", + "nomCommune": "FROMY" }, { - "codePostal": "78130", - "codeCommune": "78140", - "libelleAcheminement": "CHAPET", - "nomCommune": "CHAPET" + "codePostal": "07210", + "codeCommune": "07194", + "libelleAcheminement": "ROCHESSAUVE", + "nomCommune": "ROCHESSAUVE" }, { - "codePostal": "78400", - "codeCommune": "78146", - "libelleAcheminement": "CHATOU", - "nomCommune": "CHATOU" + "codePostal": "08260", + "codeCommune": "08189", + "libelleAcheminement": "GIRONDELLE", + "nomCommune": "GIRONDELLE" }, { - "codePostal": "78450", - "codeCommune": "78152", - "libelleAcheminement": "CHAVENAY", - "nomCommune": "CHAVENAY" + "codePostal": "07100", + "codeCommune": "07197", + "libelleAcheminement": "ROIFFIEUX", + "nomCommune": "ROIFFIEUX" }, { - "codePostal": "78700", - "codeCommune": "78172", - "libelleAcheminement": "CONFLANS STE HONORINE", - "nomCommune": "CONFLANS STE HONORINE" + "codePostal": "08200", + "codeCommune": "08191", + "libelleAcheminement": "GIVONNE", + "nomCommune": "GIVONNE" }, { - "codePostal": "78550", - "codeCommune": "78194", - "libelleAcheminement": "DANNEMARIE", - "nomCommune": "DANNEMARIE" + "codePostal": "07800", + "codeCommune": "07198", + "libelleAcheminement": "ROMPON", + "nomCommune": "ROMPON" }, { - "codePostal": "78440", - "codeCommune": "78202", - "libelleAcheminement": "DROCOURT", - "nomCommune": "DROCOURT" + "codePostal": "08430", + "codeCommune": "08205", + "libelleAcheminement": "HAGNICOURT", + "nomCommune": "HAGNICOURT" }, { - "codePostal": "78920", - "codeCommune": "78206", - "libelleAcheminement": "ECQUEVILLY", - "nomCommune": "ECQUEVILLY" + "codePostal": "07320", + "codeCommune": "07204", + "libelleAcheminement": "ST AGREVE", + "nomCommune": "ST AGREVE" }, { - "codePostal": "78990", - "codeCommune": "78208", - "libelleAcheminement": "ELANCOURT", - "nomCommune": "ELANCOURT" + "codePostal": "08600", + "codeCommune": "08207", + "libelleAcheminement": "HAM SUR MEUSE", + "nomCommune": "HAM SUR MEUSE" }, { - "codePostal": "78910", - "codeCommune": "78236", - "libelleAcheminement": "FLEXANVILLE", - "nomCommune": "FLEXANVILLE" + "codePostal": "07790", + "codeCommune": "07205", + "libelleAcheminement": "ST ALBAN D AY", + "nomCommune": "ST ALBAN D AY" }, { - "codePostal": "78840", - "codeCommune": "78255", - "libelleAcheminement": "FRENEUSE", - "nomCommune": "FRENEUSE" + "codePostal": "08160", + "codeCommune": "08209", + "libelleAcheminement": "HANNOGNE ST MARTIN", + "nomCommune": "HANNOGNE ST MARTIN" }, { - "codePostal": "78270", - "codeCommune": "78276", - "libelleAcheminement": "GOMMECOURT", - "nomCommune": "GOMMECOURT" + "codePostal": "07160", + "codeCommune": "07209", + "libelleAcheminement": "ST ANDEOL DE FOURCHADES", + "nomCommune": "ST ANDEOL DE FOURCHADES" }, { - "codePostal": "78790", - "codeCommune": "78300", - "libelleAcheminement": "HARGEVILLE", - "nomCommune": "HARGEVILLE" + "codePostal": "08300", + "codeCommune": "08234", + "libelleAcheminement": "INAUMONT", + "nomCommune": "INAUMONT" }, { - "codePostal": "78580", - "codeCommune": "78305", - "libelleAcheminement": "HERBEVILLE", - "nomCommune": "HERBEVILLE" + "codePostal": "07590", + "codeCommune": "07232", + "libelleAcheminement": "ST ETIENNE DE LUGDARES", + "nomCommune": "ST ETIENNE DE LUGDARES" }, { - "codePostal": "78800", - "codeCommune": "78311", - "libelleAcheminement": "HOUILLES", - "nomCommune": "HOUILLES" + "codePostal": "08440", + "codeCommune": "08235", + "libelleAcheminement": "ISSANCOURT ET RUMEL", + "nomCommune": "ISSANCOURT ET RUMEL" }, { - "codePostal": "78440", - "codeCommune": "78314", - "libelleAcheminement": "ISSOU", - "nomCommune": "ISSOU" + "codePostal": "07170", + "codeCommune": "07241", + "libelleAcheminement": "ST GERMAIN", + "nomCommune": "ST GERMAIN" }, { - "codePostal": "78270", - "codeCommune": "78320", - "libelleAcheminement": "NOTRE DAME DE LA MER", - "nomCommune": "NOTRE DAME DE LA MER" + "codePostal": "08800", + "codeCommune": "08242", + "libelleAcheminement": "LAIFOUR", + "nomCommune": "LAIFOUR" }, { - "codePostal": "78350", - "codeCommune": "78322", - "libelleAcheminement": "JOUY EN JOSAS", - "nomCommune": "JOUY EN JOSAS" + "codePostal": "07000", + "codeCommune": "07255", + "libelleAcheminement": "ST JULIEN EN ST ALBAN", + "nomCommune": "ST JULIEN EN ST ALBAN" }, { - "codePostal": "78520", - "codeCommune": "78335", - "libelleAcheminement": "LIMAY", - "nomCommune": "LIMAY" + "codePostal": "08430", + "codeCommune": "08248", + "libelleAcheminement": "LAUNOIS SUR VENCE", + "nomCommune": "LAUNOIS SUR VENCE" }, { - "codePostal": "78350", - "codeCommune": "78343", - "libelleAcheminement": "LES LOGES EN JOSAS", - "nomCommune": "LES LOGES EN JOSAS" + "codePostal": "07240", + "codeCommune": "07257", + "libelleAcheminement": "ST JULIEN LE ROUX", + "nomCommune": "ST JULIEN LE ROUX" }, { - "codePostal": "78730", - "codeCommune": "78349", - "libelleAcheminement": "LONGVILLIERS", - "nomCommune": "LONGVILLIERS" + "codePostal": "08150", + "codeCommune": "08249", + "libelleAcheminement": "LAVAL MORENCY", + "nomCommune": "LAVAL MORENCY" }, { - "codePostal": "78200", - "codeCommune": "78361", - "libelleAcheminement": "MANTES LA JOLIE", - "nomCommune": "MANTES LA JOLIE" + "codePostal": "07210", + "codeCommune": "07260", + "libelleAcheminement": "ST LAGER BRESSAC", + "nomCommune": "ST LAGER BRESSAC" }, { - "codePostal": "78124", - "codeCommune": "78368", - "libelleAcheminement": "MAREIL SUR MAULDRE", - "nomCommune": "MAREIL SUR MAULDRE" + "codePostal": "08440", + "codeCommune": "08263", + "libelleAcheminement": "LUMES", + "nomCommune": "LUMES" }, { - "codePostal": "78550", - "codeCommune": "78381", - "libelleAcheminement": "MAULETTE", - "nomCommune": "MAULETTE" + "codePostal": "07800", + "codeCommune": "07261", + "libelleAcheminement": "ST LAURENT DU PAPE", + "nomCommune": "ST LAURENT DU PAPE" }, { - "codePostal": "78200", - "codeCommune": "78385", - "libelleAcheminement": "MENERVILLE", - "nomCommune": "MENERVILLE" + "codePostal": "08310", + "codeCommune": "08264", + "libelleAcheminement": "MACHAULT", + "nomCommune": "MACHAULT" }, { - "codePostal": "78270", - "codeCommune": "78391", - "libelleAcheminement": "MERICOURT", - "nomCommune": "MERICOURT" + "codePostal": "07170", + "codeCommune": "07263", + "libelleAcheminement": "ST LAURENT SOUS COIRON", + "nomCommune": "ST LAURENT SOUS COIRON" }, { - "codePostal": "78600", - "codeCommune": "78396", - "libelleAcheminement": "LE MESNIL LE ROI", - "nomCommune": "LE MESNIL LE ROI" + "codePostal": "08400", + "codeCommune": "08271", + "libelleAcheminement": "MANRE", + "nomCommune": "MANRE" }, { - "codePostal": "78440", - "codeCommune": "78416", - "libelleAcheminement": "MONTALET LE BOIS", - "nomCommune": "MONTALET LE BOIS" + "codePostal": "07700", + "codeCommune": "07264", + "libelleAcheminement": "ST MARCEL D ARDECHE", + "nomCommune": "ST MARCEL D ARDECHE" }, { - "codePostal": "78180", - "codeCommune": "78423", - "libelleAcheminement": "MONTIGNY LE BRETONNEUX", - "nomCommune": "MONTIGNY LE BRETONNEUX" + "codePostal": "08370", + "codeCommune": "08276", + "libelleAcheminement": "MARGUT", + "nomCommune": "MARGUT" }, { - "codePostal": "78410", - "codeCommune": "78451", - "libelleAcheminement": "NEZEL", - "nomCommune": "NEZEL" + "codePostal": "07400", + "codeCommune": "07270", + "libelleAcheminement": "ST MARTIN SUR LAVEZON", + "nomCommune": "ST MARTIN SUR LAVEZON" }, { - "codePostal": "78200", - "codeCommune": "78484", - "libelleAcheminement": "PERDREAUVILLE", - "nomCommune": "PERDREAUVILLE" + "codePostal": "08310", + "codeCommune": "08287", + "libelleAcheminement": "MENIL LEPINOIS", + "nomCommune": "MENIL LEPINOIS" }, { - "codePostal": "78660", - "codeCommune": "78506", - "libelleAcheminement": "PRUNAY EN YVELINES", - "nomCommune": "PRUNAY EN YVELINES" + "codePostal": "07170", + "codeCommune": "07273", + "libelleAcheminement": "ST MAURICE D IBIE", + "nomCommune": "ST MAURICE D IBIE" }, { - "codePostal": "78125", - "codeCommune": "78516", - "libelleAcheminement": "RAIZEUX", - "nomCommune": "RAIZEUX" + "codePostal": "08110", + "codeCommune": "08289", + "libelleAcheminement": "MESSINCOURT", + "nomCommune": "MESSINCOURT" }, { - "codePostal": "78440", - "codeCommune": "78536", - "libelleAcheminement": "SAILLY", - "nomCommune": "SAILLY" + "codePostal": "07260", + "codeCommune": "07275", + "libelleAcheminement": "ST MELANY", + "nomCommune": "ST MELANY" }, { - "codePostal": "78125", - "codeCommune": "78557", - "libelleAcheminement": "ST HILARION", - "nomCommune": "ST HILARION" + "codePostal": "08390", + "codeCommune": "08300", + "libelleAcheminement": "LE MONT DIEU", + "nomCommune": "LE MONT DIEU" }, { - "codePostal": "78470", - "codeCommune": "78561", - "libelleAcheminement": "ST LAMBERT DES BOIS", - "nomCommune": "ST LAMBERT" + "codePostal": "07270", + "codeCommune": "07290", + "libelleAcheminement": "ST PRIX", + "nomCommune": "ST PRIX" }, { - "codePostal": "78790", - "codeCommune": "78565", - "libelleAcheminement": "ST MARTIN DES CHAMPS", - "nomCommune": "ST MARTIN DES CHAMPS" + "codePostal": "08390", + "codeCommune": "08301", + "libelleAcheminement": "MONTGON", + "nomCommune": "MONTGON" }, { - "codePostal": "78470", - "codeCommune": "78575", - "libelleAcheminement": "ST REMY LES CHEVREUSE", - "nomCommune": "ST REMY LES CHEVREUSE" + "codePostal": "07700", + "codeCommune": "07291", + "libelleAcheminement": "ST REMEZE", + "nomCommune": "ST REMEZE" }, { - "codePostal": "78910", - "codeCommune": "78605", - "libelleAcheminement": "TACOIGNIERES", - "nomCommune": "TACOIGNIERES" + "codePostal": "08400", + "codeCommune": "08303", + "libelleAcheminement": "MONTHOIS", + "nomCommune": "MONTHOIS" }, { - "codePostal": "78770", - "codeCommune": "78616", - "libelleAcheminement": "THOIRY", - "nomCommune": "THOIRY" + "codePostal": "07200", + "codeCommune": "07296", + "libelleAcheminement": "ST SERNIN", + "nomCommune": "ST SERNIN" }, { - "codePostal": "78190", - "codeCommune": "78621", - "libelleAcheminement": "TRAPPES", - "nomCommune": "TRAPPES" + "codePostal": "08130", + "codeCommune": "08306", + "libelleAcheminement": "MONT LAURENT", + "nomCommune": "MONT LAURENT" }, { - "codePostal": "78490", - "codeCommune": "78623", - "libelleAcheminement": "LE TREMBLAY SUR MAULDRE", - "nomCommune": "LE TREMBLAY SUR MAULDRE" + "codePostal": "07210", + "codeCommune": "07298", + "libelleAcheminement": "ST SYMPHORIEN SOUS CHOMERAC", + "nomCommune": "ST SYMPHORIEN SOUS CHOMERAC" }, { - "codePostal": "78510", - "codeCommune": "78624", - "libelleAcheminement": "TRIEL SUR SEINE", - "nomCommune": "TRIEL SUR SEINE" + "codePostal": "08400", + "codeCommune": "08308", + "libelleAcheminement": "MONT ST MARTIN", + "nomCommune": "MONT ST MARTIN" }, { - "codePostal": "78510", - "codeCommune": "78624", - "libelleAcheminement": "TRIEL SUR SEINE", - "nomCommune": "TRIEL SUR SEINE" + "codePostal": "07150", + "codeCommune": "07304", + "libelleAcheminement": "SALAVAS", + "nomCommune": "SALAVAS" }, { - "codePostal": "78110", - "codeCommune": "78650", - "libelleAcheminement": "LE VESINET", - "nomCommune": "LE VESINET" + "codePostal": "08380", + "codeCommune": "08319", + "libelleAcheminement": "NEUVILLE LEZ BEAULIEU", + "nomCommune": "NEUVILLE LEZ BEAULIEU" }, { - "codePostal": "78960", - "codeCommune": "78688", - "libelleAcheminement": "VOISINS LE BRETONNEUX", - "nomCommune": "VOISINS LE BRETONNEUX" + "codePostal": "07140", + "codeCommune": "07305", + "libelleAcheminement": "LES SALELLES", + "nomCommune": "LES SALELLES" }, { - "codePostal": "79240", - "codeCommune": "79001", - "libelleAcheminement": "L ABSIE", - "nomCommune": "L ABSIE" + "codePostal": "08130", + "codeCommune": "08321", + "libelleAcheminement": "NEUVILLE DAY", + "nomCommune": "NEUVILLE DAY" }, { - "codePostal": "79230", - "codeCommune": "79003", - "libelleAcheminement": "AIFFRES", - "nomCommune": "AIFFRES" + "codePostal": "07300", + "codeCommune": "07324", + "libelleAcheminement": "TOURNON SUR RHONE", + "nomCommune": "TOURNON SUR RHONE" }, { - "codePostal": "79600", - "codeCommune": "79005", - "libelleAcheminement": "AIRVAULT", - "nomCommune": "AIRVAULT" + "codePostal": "08270", + "codeCommune": "08323", + "libelleAcheminement": "LA NEUVILLE LES WASIGNY", + "nomCommune": "LA NEUVILLE LES WASIGNY" }, { - "codePostal": "79600", - "codeCommune": "79005", - "libelleAcheminement": "AIRVAULT", - "nomCommune": "AIRVAULT" + "codePostal": "07110", + "codeCommune": "07343", + "libelleAcheminement": "VINEZAC", + "nomCommune": "VINEZAC" }, { - "codePostal": "79210", - "codeCommune": "79009", - "libelleAcheminement": "AMURE", - "nomCommune": "AMURE" + "codePostal": "08240", + "codeCommune": "08326", + "libelleAcheminement": "NOUART", + "nomCommune": "NOUART" }, { - "codePostal": "79150", - "codeCommune": "79013", - "libelleAcheminement": "ARGENTONNAY", - "nomCommune": "ARGENTONNAY" + "codePostal": "07690", + "codeCommune": "07347", + "libelleAcheminement": "VOCANCE", + "nomCommune": "VOCANCE" }, { - "codePostal": "79290", - "codeCommune": "79014", - "libelleAcheminement": "LORETZ D ARGENTON", - "nomCommune": "LORETZ D ARGENTON" + "codePostal": "08300", + "codeCommune": "08330", + "libelleAcheminement": "NOVY CHEVRIERES", + "nomCommune": "NOVY CHEVRIERES" }, { - "codePostal": "79110", - "codeCommune": "79018", - "libelleAcheminement": "AUBIGNE", - "nomCommune": "AUBIGNE" + "codePostal": "07800", + "codeCommune": "07349", + "libelleAcheminement": "LA VOULTE SUR RHONE", + "nomCommune": "LA VOULTE SUR RHONE" }, { - "codePostal": "79370", - "codeCommune": "79030", - "libelleAcheminement": "BEAUSSAIS VITRE", - "nomCommune": "BEAUSSAIS VITRE" + "codePostal": "08430", + "codeCommune": "08341", + "libelleAcheminement": "POIX TERRON", + "nomCommune": "POIX TERRON" }, { - "codePostal": "79160", - "codeCommune": "79032", - "libelleAcheminement": "BECELEUF", - "nomCommune": "BECELEUF" + "codePostal": "08500", + "codeCommune": "08011", + "libelleAcheminement": "ANCHAMPS", + "nomCommune": "ANCHAMPS" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "08290", + "codeCommune": "08344", + "libelleAcheminement": "PREZ", + "nomCommune": "PREZ" }, { - "codePostal": "79170", - "codeCommune": "79057", - "libelleAcheminement": "BRIOUX SUR BOUTONNE", - "nomCommune": "BRIOUX SUR BOUTONNE" + "codePostal": "08250", + "codeCommune": "08017", + "libelleAcheminement": "APREMONT", + "nomCommune": "APREMONT" }, { - "codePostal": "79190", - "codeCommune": "79060", - "libelleAcheminement": "CAUNAY", - "nomCommune": "CAUNAY" + "codePostal": "08400", + "codeCommune": "08350", + "libelleAcheminement": "QUATRE CHAMPS", + "nomCommune": "QUATRE CHAMPS" }, { - "codePostal": "79370", - "codeCommune": "79061", - "libelleAcheminement": "CELLES SUR BELLE", - "nomCommune": "CELLES SUR BELLE" + "codePostal": "08390", + "codeCommune": "08019", + "libelleAcheminement": "LES GRANDES ARMOISES", + "nomCommune": "LES GRANDES ARMOISES" }, { - "codePostal": "79150", - "codeCommune": "79063", - "libelleAcheminement": "VAL EN VIGNES", - "nomCommune": "VAL EN VIGNES" + "codePostal": "08430", + "codeCommune": "08352", + "libelleAcheminement": "RAILLICOURT", + "nomCommune": "RAILLICOURT" }, { - "codePostal": "79290", - "codeCommune": "79063", - "libelleAcheminement": "VAL EN VIGNES", - "nomCommune": "VAL EN VIGNES" + "codePostal": "08090", + "codeCommune": "08022", + "libelleAcheminement": "ARREUX", + "nomCommune": "ARREUX" }, { - "codePostal": "79110", - "codeCommune": "79064", - "libelleAcheminement": "FONTIVILLIE", - "nomCommune": "FONTIVILLIE" + "codePostal": "08220", + "codeCommune": "08360", + "libelleAcheminement": "RENNEVILLE", + "nomCommune": "RENNEVILLE" }, { - "codePostal": "79220", - "codeCommune": "79066", - "libelleAcheminement": "CHAMPDENIERS", - "nomCommune": "CHAMPDENIERS" + "codePostal": "08130", + "codeCommune": "08025", + "libelleAcheminement": "ATTIGNY", + "nomCommune": "ATTIGNY" }, { - "codePostal": "79190", - "codeCommune": "79074", - "libelleAcheminement": "LA CHAPELLE POUILLOUX", - "nomCommune": "LA CHAPELLE POUILLOUX" + "codePostal": "08500", + "codeCommune": "08363", + "libelleAcheminement": "REVIN", + "nomCommune": "REVIN" }, { - "codePostal": "79160", - "codeCommune": "79077", - "libelleAcheminement": "BEUGNON THIREUIL", - "nomCommune": "BEUGNON THIREUIL" + "codePostal": "08270", + "codeCommune": "08027", + "libelleAcheminement": "AUBONCOURT VAUZELLES", + "nomCommune": "AUBONCOURT VAUZELLES" }, { - "codePostal": "79110", - "codeCommune": "79083", - "libelleAcheminement": "CHEF BOUTONNE", - "nomCommune": "CHEF BOUTONNE" + "codePostal": "08220", + "codeCommune": "08366", + "libelleAcheminement": "ROCQUIGNY", + "nomCommune": "ROCQUIGNY" }, { - "codePostal": "79110", - "codeCommune": "79083", - "libelleAcheminement": "CHEF BOUTONNE", - "nomCommune": "CHEF BOUTONNE" + "codePostal": "08190", + "codeCommune": "08039", + "libelleAcheminement": "AVAUX", + "nomCommune": "AVAUX" }, { - "codePostal": "79110", - "codeCommune": "79083", - "libelleAcheminement": "CHEF BOUTONNE", - "nomCommune": "CHEF BOUTONNE" + "codePostal": "08230", + "codeCommune": "08367", + "libelleAcheminement": "ROCROI", + "nomCommune": "ROCROI" }, { - "codePostal": "79410", - "codeCommune": "79086", - "libelleAcheminement": "CHERVEUX", - "nomCommune": "CHERVEUX" + "codePostal": "08370", + "codeCommune": "08065", + "libelleAcheminement": "BIEVRES", + "nomCommune": "BIEVRES" }, { - "codePostal": "79120", - "codeCommune": "79087", - "libelleAcheminement": "CHEY", - "nomCommune": "CHEY" + "codePostal": "08190", + "codeCommune": "08368", + "libelleAcheminement": "ROIZY", + "nomCommune": "ROIZY" }, { - "codePostal": "79170", - "codeCommune": "79090", - "libelleAcheminement": "CHIZE", - "nomCommune": "CHIZE" + "codePostal": "08230", + "codeCommune": "08078", + "libelleAcheminement": "BOURG FIDELE", + "nomCommune": "BOURG FIDELE" }, { - "codePostal": "79350", - "codeCommune": "79094", - "libelleAcheminement": "CLESSE", - "nomCommune": "CLESSE" + "codePostal": "08290", + "codeCommune": "08373", + "libelleAcheminement": "RUMIGNY", + "nomCommune": "RUMIGNY" }, { - "codePostal": "79190", - "codeCommune": "79095", - "libelleAcheminement": "CLUSSAIS LA POMMERAIE", - "nomCommune": "CLUSSAIS LA POMMERAIE" + "codePostal": "08400", + "codeCommune": "08082", + "libelleAcheminement": "BRECY BRIERES", + "nomCommune": "BRECY BRIERES" }, { - "codePostal": "79140", - "codeCommune": "79096", - "libelleAcheminement": "COMBRAND", - "nomCommune": "COMBRAND" + "codePostal": "08310", + "codeCommune": "08379", + "libelleAcheminement": "ST ETIENNE A ARNES", + "nomCommune": "ST ETIENNE A ARNES" }, { - "codePostal": "79440", - "codeCommune": "79103", - "libelleAcheminement": "COURLAY", - "nomCommune": "COURLAY" + "codePostal": "08240", + "codeCommune": "08086", + "libelleAcheminement": "BRIQUENAY", + "nomCommune": "BRIQUENAY" }, { - "codePostal": "79270", - "codeCommune": "79112", - "libelleAcheminement": "EPANNES", - "nomCommune": "EPANNES" + "codePostal": "08360", + "codeCommune": "08380", + "libelleAcheminement": "ST FERGEUX", + "nomCommune": "ST FERGEUX" }, { - "codePostal": "79400", - "codeCommune": "79114", - "libelleAcheminement": "EXIREUIL", - "nomCommune": "EXIREUIL" + "codePostal": "08240", + "codeCommune": "08089", + "libelleAcheminement": "BUZANCY", + "nomCommune": "BUZANCY" }, { - "codePostal": "79800", - "codeCommune": "79115", - "libelleAcheminement": "EXOUDUN", - "nomCommune": "EXOUDUN" + "codePostal": "08250", + "codeCommune": "08383", + "libelleAcheminement": "ST JUVIN", + "nomCommune": "ST JUVIN" }, { - "codePostal": "79380", - "codeCommune": "79123", - "libelleAcheminement": "LA FORET SUR SEVRE", - "nomCommune": "LA FORET SUR SEVRE" + "codePostal": "08220", + "codeCommune": "08102", + "libelleAcheminement": "CHAPPES", + "nomCommune": "CHAPPES" }, { - "codePostal": "79360", - "codeCommune": "79127", - "libelleAcheminement": "LA FOYE MONJAULT", - "nomCommune": "LA FOYE MONJAULT" + "codePostal": "08160", + "codeCommune": "08388", + "libelleAcheminement": "ST MARCEAU", + "nomCommune": "ST MARCEAU" }, { - "codePostal": "79110", - "codeCommune": "79140", - "libelleAcheminement": "VALDELAUME", - "nomCommune": "VALDELAUME" + "codePostal": "08130", + "codeCommune": "08103", + "libelleAcheminement": "CHARBOGNE", + "nomCommune": "CHARBOGNE" }, { - "codePostal": "79600", - "codeCommune": "79141", - "libelleAcheminement": "IRAIS", - "nomCommune": "IRAIS" + "codePostal": "08400", + "codeCommune": "08390", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "79120", - "codeCommune": "79148", - "libelleAcheminement": "LEZAY", - "nomCommune": "LEZAY" + "codePostal": "08350", + "codeCommune": "08115", + "libelleAcheminement": "CHEMERY CHEHERY", + "nomCommune": "CHEMERY CHEHERY" }, { - "codePostal": "79190", - "codeCommune": "79152", - "libelleAcheminement": "LORIGNE", - "nomCommune": "LORIGNE" + "codePostal": "08400", + "codeCommune": "08392", + "libelleAcheminement": "ST MOREL", + "nomCommune": "ST MOREL" }, { - "codePostal": "79110", - "codeCommune": "79154", - "libelleAcheminement": "LOUBILLE", - "nomCommune": "LOUBILLE" + "codePostal": "08390", + "codeCommune": "08116", + "libelleAcheminement": "BAIRON ET SES ENVIRONS", + "nomCommune": "BAIRON ET SES ENVIRONS" }, { - "codePostal": "79600", - "codeCommune": "79156", - "libelleAcheminement": "LOUIN", - "nomCommune": "LOUIN" + "codePostal": "08370", + "codeCommune": "08399", + "libelleAcheminement": "SAPOGNE SUR MARCHE", + "nomCommune": "SAPOGNE SUR MARCHE" }, { - "codePostal": "79100", - "codeCommune": "79157", - "libelleAcheminement": "LOUZY", - "nomCommune": "LOUZY" + "codePostal": "08270", + "codeCommune": "08117", + "libelleAcheminement": "CHESNOIS AUBONCOURT", + "nomCommune": "CHESNOIS AUBONCOURT" }, { - "codePostal": "79330", - "codeCommune": "79159", - "libelleAcheminement": "LUCHE THOUARSAIS", - "nomCommune": "LUCHE THOUARSAIS" + "codePostal": "08130", + "codeCommune": "08401", + "libelleAcheminement": "SAULCES CHAMPENOISES", + "nomCommune": "SAULCES CHAMPENOISES" }, { - "codePostal": "79460", - "codeCommune": "79162", - "libelleAcheminement": "MAGNE", - "nomCommune": "MAGNE" + "codePostal": "08130", + "codeCommune": "08123", + "libelleAcheminement": "CHUFFILLY ROCHE", + "nomCommune": "CHUFFILLY ROCHE" }, { - "codePostal": "79500", - "codeCommune": "79164", - "libelleAcheminement": "MAISONNAY", - "nomCommune": "MAISONNAY" + "codePostal": "08390", + "codeCommune": "08405", + "libelleAcheminement": "SAUVILLE", + "nomCommune": "SAUVILLE" }, { - "codePostal": "79360", - "codeCommune": "79166", - "libelleAcheminement": "MARIGNY", - "nomCommune": "MARIGNY" + "codePostal": "08360", + "codeCommune": "08126", + "libelleAcheminement": "CONDE LES HERPY", + "nomCommune": "CONDE LES HERPY" }, { - "codePostal": "79210", - "codeCommune": "79170", - "libelleAcheminement": "MAUZE SUR LE MIGNON", - "nomCommune": "MAUZE SUR LE MIGNON" + "codePostal": "08130", + "codeCommune": "08411", + "libelleAcheminement": "SEMUY", + "nomCommune": "SEMUY" }, { - "codePostal": "79500", - "codeCommune": "79174", - "libelleAcheminement": "MELLE", - "nomCommune": "MELLE" + "codePostal": "08250", + "codeCommune": "08131", + "libelleAcheminement": "CORNAY", + "nomCommune": "CORNAY" }, { - "codePostal": "79320", - "codeCommune": "79179", - "libelleAcheminement": "MONCOUTANT SUR SEVRE", - "nomCommune": "MONCOUTANT SUR SEVRE" + "codePostal": "08220", + "codeCommune": "08413", + "libelleAcheminement": "SERAINCOURT", + "nomCommune": "SERAINCOURT" }, { - "codePostal": "79190", - "codeCommune": "79180", - "libelleAcheminement": "MONTALEMBERT", - "nomCommune": "MONTALEMBERT" + "codePostal": "08270", + "codeCommune": "08132", + "libelleAcheminement": "CORNY MACHEROMENIL", + "nomCommune": "CORNY MACHEROMENIL" }, { - "codePostal": "79140", - "codeCommune": "79183", - "libelleAcheminement": "MONTRAVERS", - "nomCommune": "MONTRAVERS" + "codePostal": "08300", + "codeCommune": "08416", + "libelleAcheminement": "SEUIL", + "nomCommune": "SEUIL" }, { - "codePostal": "79400", - "codeCommune": "79189", - "libelleAcheminement": "NANTEUIL", - "nomCommune": "NANTEUIL" + "codePostal": "08090", + "codeCommune": "08137", + "libelleAcheminement": "DAMOUZY", + "nomCommune": "DAMOUZY" }, { - "codePostal": "79000", - "codeCommune": "79191", - "libelleAcheminement": "NIORT", - "nomCommune": "NIORT" + "codePostal": "08460", + "codeCommune": "08419", + "libelleAcheminement": "SIGNY L ABBAYE", + "nomCommune": "SIGNY L ABBAYE" }, { - "codePostal": "79100", - "codeCommune": "79196", - "libelleAcheminement": "PLAINE ET VALLEES", - "nomCommune": "PLAINE ET VALLEES" + "codePostal": "08460", + "codeCommune": "08141", + "libelleAcheminement": "DOMMERY", + "nomCommune": "DOMMERY" }, { - "codePostal": "79170", - "codeCommune": "79204", - "libelleAcheminement": "PERIGNE", - "nomCommune": "PERIGNE" + "codePostal": "08460", + "codeCommune": "08419", + "libelleAcheminement": "SIGNY L ABBAYE", + "nomCommune": "SIGNY L ABBAYE" }, { - "codePostal": "79190", - "codeCommune": "79205", - "libelleAcheminement": "PERS", - "nomCommune": "PERS" + "codePostal": "08140", + "codeCommune": "08145", + "libelleAcheminement": "DOUZY", + "nomCommune": "DOUZY" }, { - "codePostal": "79160", - "codeCommune": "79223", - "libelleAcheminement": "PUIHARDY", - "nomCommune": "PUIHARDY" + "codePostal": "08240", + "codeCommune": "08424", + "libelleAcheminement": "SOMMAUTHE", + "nomCommune": "SOMMAUTHE" }, { - "codePostal": "79260", - "codeCommune": "79231", - "libelleAcheminement": "ROMANS", - "nomCommune": "ROMANS" + "codePostal": "08130", + "codeCommune": "08151", + "libelleAcheminement": "ECORDAL", + "nomCommune": "ECORDAL" }, { - "codePostal": "79100", - "codeCommune": "79259", - "libelleAcheminement": "ST JEAN DE THOUARS", - "nomCommune": "ST JEAN DE THOUARS" + "codePostal": "08390", + "codeCommune": "08430", + "libelleAcheminement": "STONNE", + "nomCommune": "STONNE" }, { - "codePostal": "79160", - "codeCommune": "79263", - "libelleAcheminement": "ST LAURS", - "nomCommune": "ST LAURS" + "codePostal": "08110", + "codeCommune": "08153", + "libelleAcheminement": "ESCOMBRES ET LE CHESNOIS", + "nomCommune": "ESCOMBRES ET LE CHESNOIS" }, { - "codePostal": "79290", - "codeCommune": "79277", - "libelleAcheminement": "ST MARTIN DE SANZAY", - "nomCommune": "ST MARTIN DE SANZAY" + "codePostal": "08130", + "codeCommune": "08433", + "libelleAcheminement": "SUZANNE", + "nomCommune": "SUZANNE" }, { - "codePostal": "79150", - "codeCommune": "79280", - "libelleAcheminement": "ST MAURICE ETUSSON", - "nomCommune": "ST MAURICE ETUSSON" + "codePostal": "08260", + "codeCommune": "08156", + "libelleAcheminement": "ETEIGNIERES", + "nomCommune": "ETEIGNIERES" }, { - "codePostal": "79410", - "codeCommune": "79281", - "libelleAcheminement": "ST MAXIRE", - "nomCommune": "ST MAXIRE" + "codePostal": "08240", + "codeCommune": "08437", + "libelleAcheminement": "TAILLY", + "nomCommune": "TAILLY" }, { - "codePostal": "79260", - "codeCommune": "79283", - "libelleAcheminement": "STE NEOMAYE", - "nomCommune": "STE NEOMAYE" + "codePostal": "08210", + "codeCommune": "08159", + "libelleAcheminement": "EUILLY ET LOMBUT", + "nomCommune": "EUILLY ET LOMBUT" }, { - "codePostal": "79500", - "codeCommune": "79295", - "libelleAcheminement": "ST ROMANS LES MELLE", - "nomCommune": "ST ROMANS LES MELLE" + "codePostal": "08150", + "codeCommune": "08460", + "libelleAcheminement": "TREMBLOIS LES ROCROI", + "nomCommune": "TREMBLOIS LES ROCROI" }, { - "codePostal": "79400", - "codeCommune": "79302", - "libelleAcheminement": "SAIVRES", - "nomCommune": "SAIVRES" + "codePostal": "08250", + "codeCommune": "08161", + "libelleAcheminement": "EXERMONT", + "nomCommune": "EXERMONT" }, { - "codePostal": "79200", - "codeCommune": "79306", - "libelleAcheminement": "SAURAIS", - "nomCommune": "SAURAIS" + "codePostal": "08400", + "codeCommune": "08461", + "libelleAcheminement": "VANDY", + "nomCommune": "VANDY" }, { - "codePostal": "79170", - "codeCommune": "79310", - "libelleAcheminement": "SECONDIGNE SUR BELLE", - "nomCommune": "SECONDIGNE SUR BELLE" + "codePostal": "08090", + "codeCommune": "08162", + "libelleAcheminement": "FAGNON", + "nomCommune": "FAGNON" }, { - "codePostal": "79220", - "codeCommune": "79320", - "libelleAcheminement": "SURIN", - "nomCommune": "SURIN" + "codePostal": "08250", + "codeCommune": "08464", + "libelleAcheminement": "VAUX LES MOURON", + "nomCommune": "VAUX LES MOURON" }, { - "codePostal": "79210", - "codeCommune": "79334", - "libelleAcheminement": "VAL DU MIGNON", - "nomCommune": "VAL DU MIGNON" + "codePostal": "08270", + "codeCommune": "08163", + "libelleAcheminement": "FAISSAULT", + "nomCommune": "FAISSAULT" }, { - "codePostal": "79270", - "codeCommune": "79335", - "libelleAcheminement": "VALLANS", - "nomCommune": "VALLANS" + "codePostal": "08210", + "codeCommune": "08466", + "libelleAcheminement": "VAUX LES MOUZON", + "nomCommune": "VAUX LES MOUZON" }, { - "codePostal": "80210", - "codeCommune": "80004", - "libelleAcheminement": "ACHEUX EN VIMEU", - "nomCommune": "ACHEUX EN VIMEU" + "codePostal": "08290", + "codeCommune": "08167", + "libelleAcheminement": "LA FEREE", + "nomCommune": "LA FEREE" }, { - "codePostal": "80150", - "codeCommune": "80006", - "libelleAcheminement": "AGENVILLERS", - "nomCommune": "AGENVILLERS" + "codePostal": "08270", + "codeCommune": "08467", + "libelleAcheminement": "VAUX MONTREUIL", + "nomCommune": "VAUX MONTREUIL" }, { - "codePostal": "80250", - "codeCommune": "80010", - "libelleAcheminement": "AILLY SUR NOYE", - "nomCommune": "AILLY SUR NOYE" + "codePostal": "08250", + "codeCommune": "08171", + "libelleAcheminement": "FLEVILLE", + "nomCommune": "FLEVILLE" }, { - "codePostal": "80470", - "codeCommune": "80011", - "libelleAcheminement": "AILLY SUR SOMME", - "nomCommune": "AILLY SUR SOMME" + "codePostal": "08150", + "codeCommune": "08468", + "libelleAcheminement": "VAUX VILLAINE", + "nomCommune": "VAUX VILLAINE" }, { - "codePostal": "80240", - "codeCommune": "80014", - "libelleAcheminement": "AIZECOURT LE BAS", - "nomCommune": "AIZECOURT LE BAS" + "codePostal": "08160", + "codeCommune": "08173", + "libelleAcheminement": "FLIZE", + "nomCommune": "FLIZE" }, { - "codePostal": "80700", - "codeCommune": "80023", - "libelleAcheminement": "ANDECHY", - "nomCommune": "ANDECHY" + "codePostal": "08190", + "codeCommune": "08473", + "libelleAcheminement": "VIEUX LES ASFELD", + "nomCommune": "VIEUX LES ASFELD" }, { - "codePostal": "80470", - "codeCommune": "80024", - "libelleAcheminement": "ARGOEUVES", - "nomCommune": "ARGOEUVES" + "codePostal": "08240", + "codeCommune": "08176", + "libelleAcheminement": "FOSSE", + "nomCommune": "FOSSE" }, { - "codePostal": "80700", - "codeCommune": "80027", - "libelleAcheminement": "ARMANCOURT", - "nomCommune": "ARMANCOURT" + "codePostal": "08210", + "codeCommune": "08477", + "libelleAcheminement": "VILLERS DEVANT MOUZON", + "nomCommune": "VILLERS DEVANT MOUZON" }, { - "codePostal": "80560", - "codeCommune": "80028", - "libelleAcheminement": "ARQUEVES", - "nomCommune": "ARQUEVES" + "codePostal": "08000", + "codeCommune": "08180", + "libelleAcheminement": "LA FRANCHEVILLE", + "nomCommune": "LA FRANCHEVILLE" }, { - "codePostal": "80120", - "codeCommune": "80030", - "libelleAcheminement": "ARRY", - "nomCommune": "ARRY" + "codePostal": "08370", + "codeCommune": "08485", + "libelleAcheminement": "VILLY", + "nomCommune": "VILLY" }, { - "codePostal": "80200", - "codeCommune": "80033", - "libelleAcheminement": "ASSEVILLERS", - "nomCommune": "ASSEVILLERS" + "codePostal": "08130", + "codeCommune": "08193", + "libelleAcheminement": "GIVRY", + "nomCommune": "GIVRY" }, { - "codePostal": "80200", - "codeCommune": "80034", - "libelleAcheminement": "ATHIES", - "nomCommune": "ATHIES" + "codePostal": "08320", + "codeCommune": "08487", + "libelleAcheminement": "VIREUX WALLERAND", + "nomCommune": "VIREUX WALLERAND" }, { - "codePostal": "80300", - "codeCommune": "80047", - "libelleAcheminement": "AVELUY", - "nomCommune": "AVELUY" + "codePostal": "08270", + "codeCommune": "08196", + "libelleAcheminement": "GRANDCHAMP", + "nomCommune": "GRANDCHAMP" }, { - "codePostal": "80140", - "codeCommune": "80048", - "libelleAcheminement": "AVESNES CHAUSSOY", - "nomCommune": "AVESNES CHAUSSOY" + "codePostal": "08270", + "codeCommune": "08496", + "libelleAcheminement": "WAGNON", + "nomCommune": "WAGNON" }, { - "codePostal": "80430", - "codeCommune": "80062", - "libelleAcheminement": "BEAUCAMPS LE VIEUX", - "nomCommune": "BEAUCAMPS LE VIEUX" + "codePostal": "08250", + "codeCommune": "08198", + "libelleAcheminement": "GRANDPRE", + "nomCommune": "GRANDPRE" }, { - "codePostal": "80770", - "codeCommune": "80063", - "libelleAcheminement": "BEAUCHAMPS", - "nomCommune": "BEAUCHAMPS" + "codePostal": "08090", + "codeCommune": "08498", + "libelleAcheminement": "WARNECOURT", + "nomCommune": "WARNECOURT" }, { - "codePostal": "80600", - "codeCommune": "80070", - "libelleAcheminement": "BEAUQUESNE", - "nomCommune": "BEAUQUESNE" + "codePostal": "08430", + "codeCommune": "08201", + "libelleAcheminement": "GRUYERES", + "nomCommune": "GRUYERES" }, { - "codePostal": "80630", - "codeCommune": "80071", - "libelleAcheminement": "BEAUVAL", - "nomCommune": "BEAUVAL" + "codePostal": "08270", + "codeCommune": "08499", + "libelleAcheminement": "WASIGNY", + "nomCommune": "WASIGNY" }, { - "codePostal": "80300", - "codeCommune": "80073", - "libelleAcheminement": "BECORDEL BECOURT", - "nomCommune": "BECORDEL BECOURT" + "codePostal": "08230", + "codeCommune": "08202", + "libelleAcheminement": "GUE D HOSSUS", + "nomCommune": "GUE D HOSSUS" }, { - "codePostal": "80200", - "codeCommune": "80080", - "libelleAcheminement": "BELLOY EN SANTERRE", - "nomCommune": "BELLOY EN SANTERRE" + "codePostal": "08430", + "codeCommune": "08503", + "libelleAcheminement": "YVERNAUMONT", + "nomCommune": "YVERNAUMONT" }, { - "codePostal": "80270", - "codeCommune": "80081", - "libelleAcheminement": "BELLOY ST LEONARD", - "nomCommune": "BELLOY ST LEONARD" + "codePostal": "08130", + "codeCommune": "08204", + "libelleAcheminement": "GUINCOURT", + "nomCommune": "GUINCOURT" }, { - "codePostal": "80370", - "codeCommune": "80085", - "libelleAcheminement": "BERNATRE", - "nomCommune": "BERNATRE" + "codePostal": "09200", + "codeCommune": "09008", + "libelleAcheminement": "ALOS", + "nomCommune": "ALOS" }, { - "codePostal": "80370", - "codeCommune": "80086", - "libelleAcheminement": "BERNAVILLE", - "nomCommune": "BERNAVILLE" + "codePostal": "08090", + "codeCommune": "08206", + "libelleAcheminement": "HAM LES MOINES", + "nomCommune": "HAM LES MOINES" }, { - "codePostal": "80260", - "codeCommune": "80092", - "libelleAcheminement": "BERTANGLES", - "nomCommune": "BERTANGLES" + "codePostal": "09400", + "codeCommune": "09015", + "libelleAcheminement": "ARIGNAC", + "nomCommune": "ARIGNAC" }, { - "codePostal": "80560", - "codeCommune": "80095", - "libelleAcheminement": "BERTRANCOURT", - "nomCommune": "BERTRANCOURT" + "codePostal": "08450", + "codeCommune": "08211", + "libelleAcheminement": "HARAUCOURT", + "nomCommune": "HARAUCOURT" }, { - "codePostal": "80700", - "codeCommune": "80101", - "libelleAcheminement": "BEUVRAIGNES", - "nomCommune": "BEUVRAIGNES" + "codePostal": "09460", + "codeCommune": "09020", + "libelleAcheminement": "ARTIGUES", + "nomCommune": "ARTIGUES" }, { - "codePostal": "80140", - "codeCommune": "80104", - "libelleAcheminement": "BIENCOURT", - "nomCommune": "BIENCOURT" + "codePostal": "08800", + "codeCommune": "08218", + "libelleAcheminement": "LES HAUTES RIVIERES", + "nomCommune": "LES HAUTES RIVIERES" }, { - "codePostal": "80200", - "codeCommune": "80115", - "libelleAcheminement": "BOUCHAVESNES BERGEN", - "nomCommune": "BOUCHAVESNES BERGEN" + "codePostal": "09140", + "codeCommune": "09029", + "libelleAcheminement": "AULUS LES BAINS", + "nomCommune": "AULUS LES BAINS" }, { - "codePostal": "80830", - "codeCommune": "80117", - "libelleAcheminement": "BOUCHON", - "nomCommune": "BOUCHON" + "codePostal": "08310", + "codeCommune": "08220", + "libelleAcheminement": "HAUVINE", + "nomCommune": "HAUVINE" }, { - "codePostal": "80500", - "codeCommune": "80121", - "libelleAcheminement": "BOUILLANCOURT LA BATAILLE", - "nomCommune": "BOUILLANCOURT LA BATAILLE" + "codePostal": "09800", + "codeCommune": "09034", + "libelleAcheminement": "BALACET", + "nomCommune": "BALACET" }, { - "codePostal": "80600", - "codeCommune": "80122", - "libelleAcheminement": "BOUQUEMAISON", - "nomCommune": "BOUQUEMAISON" + "codePostal": "08430", + "codeCommune": "08228", + "libelleAcheminement": "LA HORGNE", + "nomCommune": "LA HORGNE" }, { - "codePostal": "80130", - "codeCommune": "80124", - "libelleAcheminement": "BOURSEVILLE", - "nomCommune": "BOURSEVILLE" + "codePostal": "09500", + "codeCommune": "09039", + "libelleAcheminement": "LA BASTIDE DE BOUSIGNAC", + "nomCommune": "LA BASTIDE DE BOUSIGNAC" }, { - "codePostal": "80400", - "codeCommune": "80139", - "libelleAcheminement": "BREUIL", - "nomCommune": "BREUIL" + "codePostal": "08240", + "codeCommune": "08233", + "libelleAcheminement": "IMECOURT", + "nomCommune": "IMECOURT" }, { - "codePostal": "80200", - "codeCommune": "80141", - "libelleAcheminement": "BRIE", - "nomCommune": "BRIE" + "codePostal": "09240", + "codeCommune": "09042", + "libelleAcheminement": "LA BASTIDE DE SEROU", + "nomCommune": "LA BASTIDE DE SEROU" }, { - "codePostal": "80200", - "codeCommune": "80154", - "libelleAcheminement": "BUSSU", - "nomCommune": "BUSSU" + "codePostal": "08460", + "codeCommune": "08243", + "libelleAcheminement": "LALOBBE", + "nomCommune": "LALOBBE" }, { - "codePostal": "80135", - "codeCommune": "80155", - "libelleAcheminement": "BUSSUS BUSSUEL", - "nomCommune": "BUSSUS BUSSUEL" + "codePostal": "09600", + "codeCommune": "09043", + "libelleAcheminement": "LA BASTIDE SUR L HERS", + "nomCommune": "LA BASTIDE SUR L HERS" }, { - "codePostal": "80290", - "codeCommune": "80157", - "libelleAcheminement": "BUSSY LES POIX", - "nomCommune": "BUSSY LES POIX" + "codePostal": "08400", + "codeCommune": "08256", + "libelleAcheminement": "LIRY", + "nomCommune": "LIRY" }, { - "codePostal": "80400", - "codeCommune": "80158", - "libelleAcheminement": "BUVERCHY", - "nomCommune": "BUVERCHY" + "codePostal": "09600", + "codeCommune": "09048", + "libelleAcheminement": "BELLOC", + "nomCommune": "BELLOC" }, { - "codePostal": "80800", - "codeCommune": "80159", - "libelleAcheminement": "CACHY", - "nomCommune": "CACHY" + "codePostal": "08150", + "codeCommune": "08257", + "libelleAcheminement": "LOGNY BOGNY", + "nomCommune": "LOGNY BOGNY" }, { - "codePostal": "80132", - "codeCommune": "80161", - "libelleAcheminement": "CAHON GOUY", - "nomCommune": "CAHON" + "codePostal": "09300", + "codeCommune": "09051", + "libelleAcheminement": "BENAIX", + "nomCommune": "BENAIX" }, { - "codePostal": "80540", - "codeCommune": "80165", - "libelleAcheminement": "CAMPS EN AMIENOIS", - "nomCommune": "CAMPS EN AMIENOIS" + "codePostal": "08390", + "codeCommune": "08278", + "libelleAcheminement": "MARQUIGNY", + "nomCommune": "MARQUIGNY" }, { - "codePostal": "80150", - "codeCommune": "80167", - "libelleAcheminement": "CANCHY", - "nomCommune": "CANCHY" + "codePostal": "09800", + "codeCommune": "09055", + "libelleAcheminement": "BETHMALE", + "nomCommune": "BETHMALE" }, { - "codePostal": "80750", - "codeCommune": "80168", - "libelleAcheminement": "CANDAS", - "nomCommune": "CANDAS" + "codePostal": "08430", + "codeCommune": "08283", + "libelleAcheminement": "MAZERNY", + "nomCommune": "MAZERNY" }, { - "codePostal": "80500", - "codeCommune": "80174", - "libelleAcheminement": "LE CARDONNOIS", - "nomCommune": "LE CARDONNOIS" + "codePostal": "09800", + "codeCommune": "09062", + "libelleAcheminement": "BORDES UCHENTEIN", + "nomCommune": "BORDES UCHENTEIN" }, { - "codePostal": "80200", - "codeCommune": "80177", - "libelleAcheminement": "CARTIGNY", - "nomCommune": "CARTIGNY" + "codePostal": "08430", + "codeCommune": "08305", + "libelleAcheminement": "MONTIGNY SUR VENCE", + "nomCommune": "MONTIGNY SUR VENCE" }, { - "codePostal": "80800", - "codeCommune": "80181", - "libelleAcheminement": "CAYEUX EN SANTERRE", - "nomCommune": "CAYEUX EN SANTERRE" + "codePostal": "09700", + "codeCommune": "09067", + "libelleAcheminement": "BRIE", + "nomCommune": "BRIE" }, { - "codePostal": "80140", - "codeCommune": "80183", - "libelleAcheminement": "CERISY BULEUX", - "nomCommune": "CERISY BULEUX" + "codePostal": "08210", + "codeCommune": "08311", + "libelleAcheminement": "MOUZON", + "nomCommune": "MOUZON" }, { - "codePostal": "80800", - "codeCommune": "80192", - "libelleAcheminement": "CHIPILLY", - "nomCommune": "CHIPILLY" + "codePostal": "09290", + "codeCommune": "09073", + "libelleAcheminement": "CAMARADE", + "nomCommune": "CAMARADE" }, { - "codePostal": "80200", - "codeCommune": "80199", - "libelleAcheminement": "CLERY SUR SOMME", - "nomCommune": "CLERY SUR SOMME" + "codePostal": "08090", + "codeCommune": "08322", + "libelleAcheminement": "NEUVILLE LES THIS", + "nomCommune": "NEUVILLE LES THIS" }, { - "codePostal": "80260", - "codeCommune": "80202", - "libelleAcheminement": "COISY", - "nomCommune": "COISY" + "codePostal": "09500", + "codeCommune": "09074", + "libelleAcheminement": "CAMON", + "nomCommune": "CAMON" }, { - "codePostal": "80480", - "codeCommune": "80225", - "libelleAcheminement": "CREUSE", - "nomCommune": "CREUSE" + "codePostal": "08430", + "codeCommune": "08324", + "libelleAcheminement": "NEUVIZY", + "nomCommune": "NEUVIZY" }, { - "codePostal": "80310", - "codeCommune": "80229", - "libelleAcheminement": "CROUY ST PIERRE", - "nomCommune": "CROUY ST PIERRE" + "codePostal": "09460", + "codeCommune": "09078", + "libelleAcheminement": "CARCANIERES", + "nomCommune": "CARCANIERES" }, { - "codePostal": "80310", - "codeCommune": "80229", - "libelleAcheminement": "CROUY ST PIERRE", - "nomCommune": "CROUY ST PIERRE" + "codePostal": "08400", + "codeCommune": "08325", + "libelleAcheminement": "NOIRVAL", + "nomCommune": "NOIRVAL" }, { - "codePostal": "80570", - "codeCommune": "80235", - "libelleAcheminement": "DARGNIES", - "nomCommune": "DARGNIES" + "codePostal": "09500", + "codeCommune": "09089", + "libelleAcheminement": "CAZALS DES BAYLES", + "nomCommune": "CAZALS DES BAYLES" }, { - "codePostal": "80620", - "codeCommune": "80241", - "libelleAcheminement": "DOMART EN PONTHIEU", - "nomCommune": "DOMART EN PONTHIEU" + "codePostal": "08160", + "codeCommune": "08327", + "libelleAcheminement": "NOUVION SUR MEUSE", + "nomCommune": "NOUVION SUR MEUSE" }, { - "codePostal": "80150", - "codeCommune": "80248", - "libelleAcheminement": "DOMPIERRE SUR AUTHIE", - "nomCommune": "DOMPIERRE SUR AUTHIE" + "codePostal": "09230", + "codeCommune": "09094", + "libelleAcheminement": "CERIZOLS", + "nomCommune": "CERIZOLS" }, { - "codePostal": "80132", - "codeCommune": "80260", - "libelleAcheminement": "DRUCAT", - "nomCommune": "DRUCAT" + "codePostal": "08450", + "codeCommune": "08334", + "libelleAcheminement": "OMICOURT", + "nomCommune": "OMICOURT" }, { - "codePostal": "80290", - "codeCommune": "80276", - "libelleAcheminement": "EQUENNES ERAMECOURT", - "nomCommune": "EQUENNES ERAMECOURT" + "codePostal": "09310", + "codeCommune": "09096", + "libelleAcheminement": "CHATEAU VERDUN", + "nomCommune": "CHATEAU VERDUN" }, { - "codePostal": "80290", - "codeCommune": "80276", - "libelleAcheminement": "EQUENNES ERAMECOURT", - "nomCommune": "EQUENNES ERAMECOURT" + "codePostal": "08430", + "codeCommune": "08335", + "libelleAcheminement": "OMONT", + "nomCommune": "OMONT" }, { - "codePostal": "80500", - "codeCommune": "80278", - "libelleAcheminement": "ERCHES", - "nomCommune": "ERCHES" + "codePostal": "09240", + "codeCommune": "09108", + "libelleAcheminement": "DURBAN SUR ARIZE", + "nomCommune": "DURBAN SUR ARIZE" }, { - "codePostal": "80400", - "codeCommune": "80279", - "libelleAcheminement": "ERCHEU", - "nomCommune": "ERCHEU" + "codePostal": "08300", + "codeCommune": "08339", + "libelleAcheminement": "PERTHES", + "nomCommune": "PERTHES" }, { - "codePostal": "80160", - "codeCommune": "80285", - "libelleAcheminement": "ESSERTAUX", - "nomCommune": "ESSERTAUX" + "codePostal": "09140", + "codeCommune": "09113", + "libelleAcheminement": "ERCE", + "nomCommune": "ERCE" }, { - "codePostal": "80250", - "codeCommune": "80291", - "libelleAcheminement": "ESTREES SUR NOYE", - "nomCommune": "ESTREES SUR NOYE" + "codePostal": "08000", + "codeCommune": "08346", + "libelleAcheminement": "PRIX LES MEZIERES", + "nomCommune": "PRIX LES MEZIERES" }, { - "codePostal": "80200", - "codeCommune": "80294", - "libelleAcheminement": "ETERPIGNY", - "nomCommune": "ETERPIGNY" + "codePostal": "09230", + "codeCommune": "09120", + "libelleAcheminement": "FABAS", + "nomCommune": "FABAS" }, { - "codePostal": "80140", - "codeCommune": "80297", - "libelleAcheminement": "ETREJUST", - "nomCommune": "ETREJUST" + "codePostal": "08450", + "codeCommune": "08354", + "libelleAcheminement": "RAUCOURT ET FLABA", + "nomCommune": "RAUCOURT ET FLABA" }, { - "codePostal": "80160", - "codeCommune": "80315", - "libelleAcheminement": "FLERS SUR NOYE", - "nomCommune": "FLERS SUR NOYE" + "codePostal": "09000", + "codeCommune": "09121", + "libelleAcheminement": "FERRIERES SUR ARIEGE", + "nomCommune": "FERRIERES SUR ARIEGE" }, { - "codePostal": "80540", - "codeCommune": "80319", - "libelleAcheminement": "FLUY", - "nomCommune": "FLUY" + "codePostal": "08150", + "codeCommune": "08361", + "libelleAcheminement": "RENWEZ", + "nomCommune": "RENWEZ" }, { - "codePostal": "80250", - "codeCommune": "80321", - "libelleAcheminement": "FOLLEVILLE", - "nomCommune": "FOLLEVILLE" + "codePostal": "09400", + "codeCommune": "09136", + "libelleAcheminement": "GOURBIT", + "nomCommune": "GOURBIT" }, { - "codePostal": "80700", - "codeCommune": "80322", - "libelleAcheminement": "FONCHES FONCHETTE", - "nomCommune": "FONCHES FONCHETTE" + "codePostal": "08220", + "codeCommune": "08366", + "libelleAcheminement": "ROCQUIGNY", + "nomCommune": "ROCQUIGNY" }, { - "codePostal": "80500", - "codeCommune": "80326", - "libelleAcheminement": "FONTAINE SOUS MONTDIDIER", - "nomCommune": "FONTAINE SOUS MONTDIDIER" + "codePostal": "09110", + "codeCommune": "09140", + "libelleAcheminement": "IGNAUX", + "nomCommune": "IGNAUX" }, { - "codePostal": "80510", - "codeCommune": "80328", - "libelleAcheminement": "FONTAINE SUR SOMME", - "nomCommune": "FONTAINE SUR SOMME" + "codePostal": "08130", + "codeCommune": "08374", + "libelleAcheminement": "LA SABOTTERIE", + "nomCommune": "LA SABOTTERIE" }, { - "codePostal": "80140", - "codeCommune": "80336", - "libelleAcheminement": "FOUCAUCOURT HORS NESLE", - "nomCommune": "FOUCAUCOURT HORS NESLE" + "codePostal": "09160", + "codeCommune": "09148", + "libelleAcheminement": "LACAVE", + "nomCommune": "LACAVE" }, { - "codePostal": "80290", - "codeCommune": "80340", - "libelleAcheminement": "FOURCIGNY", - "nomCommune": "FOURCIGNY" + "codePostal": "08110", + "codeCommune": "08376", + "libelleAcheminement": "SAILLY", + "nomCommune": "SAILLY" }, { - "codePostal": "80620", - "codeCommune": "80346", - "libelleAcheminement": "FRANQUEVILLE", - "nomCommune": "FRANQUEVILLE" + "codePostal": "09500", + "codeCommune": "09153", + "libelleAcheminement": "LAPENNE", + "nomCommune": "LAPENNE" }, { - "codePostal": "80800", - "codeCommune": "80350", - "libelleAcheminement": "FRANVILLERS", - "nomCommune": "FRANVILLERS" + "codePostal": "08350", + "codeCommune": "08377", + "libelleAcheminement": "ST AIGNAN", + "nomCommune": "ST AIGNAN" }, { - "codePostal": "80320", - "codeCommune": "80353", - "libelleAcheminement": "FRESNES MAZANCOURT", - "nomCommune": "FRESNES MAZANCOURT" + "codePostal": "09100", + "codeCommune": "09177", + "libelleAcheminement": "MADIERE", + "nomCommune": "MADIERE" }, { - "codePostal": "80220", - "codeCommune": "80362", - "libelleAcheminement": "FRETTEMEULE", - "nomCommune": "FRETTEMEULE" + "codePostal": "08360", + "codeCommune": "08380", + "libelleAcheminement": "ST FERGEUX", + "nomCommune": "ST FERGEUX" }, { - "codePostal": "80130", - "codeCommune": "80368", - "libelleAcheminement": "FRIVILLE ESCARBOTIN", - "nomCommune": "FRIVILLE ESCARBOTIN" + "codePostal": "09120", + "codeCommune": "09179", + "libelleAcheminement": "MALLEON", + "nomCommune": "MALLEON" }, { - "codePostal": "80290", - "codeCommune": "80375", - "libelleAcheminement": "GAUVILLE", - "nomCommune": "GAUVILLE" + "codePostal": "08300", + "codeCommune": "08386", + "libelleAcheminement": "ST LOUP EN CHAMPAGNE", + "nomCommune": "ST LOUP EN CHAMPAGNE" }, { - "codePostal": "80700", - "codeCommune": "80383", - "libelleAcheminement": "GOYENCOURT", - "nomCommune": "GOYENCOURT" + "codePostal": "09110", + "codeCommune": "09189", + "libelleAcheminement": "MERENS LES VALS", + "nomCommune": "MERENS LES VALS" }, { - "codePostal": "80250", - "codeCommune": "80390", - "libelleAcheminement": "GRIVESNES", - "nomCommune": "GRIVESNES" + "codePostal": "08240", + "codeCommune": "08394", + "libelleAcheminement": "ST PIERREMONT", + "nomCommune": "ST PIERREMONT" }, { - "codePostal": "80150", - "codeCommune": "80396", - "libelleAcheminement": "GUESCHART", - "nomCommune": "GUESCHART" + "codePostal": "09460", + "codeCommune": "09193", + "libelleAcheminement": "MIJANES", + "nomCommune": "MIJANES" }, { - "codePostal": "80170", - "codeCommune": "80400", - "libelleAcheminement": "GUILLAUCOURT", - "nomCommune": "GUILLAUCOURT" + "codePostal": "08300", + "codeCommune": "08403", + "libelleAcheminement": "SAULT LES RETHEL", + "nomCommune": "SAULT LES RETHEL" }, { - "codePostal": "80250", - "codeCommune": "80407", - "libelleAcheminement": "HALLIVILLERS", - "nomCommune": "HALLIVILLERS" + "codePostal": "09240", + "codeCommune": "09203", + "libelleAcheminement": "MONTELS", + "nomCommune": "MONTELS" }, { - "codePostal": "80670", - "codeCommune": "80408", - "libelleAcheminement": "HALLOY LES PERNOIS", - "nomCommune": "HALLOY LES PERNOIS" + "codePostal": "08200", + "codeCommune": "08409", + "libelleAcheminement": "SEDAN", + "nomCommune": "SEDAN" }, { - "codePostal": "80400", - "codeCommune": "80410", - "libelleAcheminement": "HAM", - "nomCommune": "HAM" + "codePostal": "09160", + "codeCommune": "09208", + "libelleAcheminement": "MONTGAUCH", + "nomCommune": "MONTGAUCH" }, { - "codePostal": "80800", - "codeCommune": "80412", - "libelleAcheminement": "HAMELET", - "nomCommune": "HAMELET" + "codePostal": "08270", + "codeCommune": "08415", + "libelleAcheminement": "SERY", + "nomCommune": "SERY" }, { - "codePostal": "80310", - "codeCommune": "80416", - "libelleAcheminement": "HANGEST SUR SOMME", - "nomCommune": "HANGEST SUR SOMME" + "codePostal": "09500", + "codeCommune": "09213", + "libelleAcheminement": "MOULIN NEUF", + "nomCommune": "MOULIN NEUF" }, { - "codePostal": "80260", - "codeCommune": "80431", - "libelleAcheminement": "HERISSART", - "nomCommune": "HERISSART" + "codePostal": "08380", + "codeCommune": "08420", + "libelleAcheminement": "SIGNY LE PETIT", + "nomCommune": "SIGNY LE PETIT" }, { - "codePostal": "80340", - "codeCommune": "80432", - "libelleAcheminement": "HERLEVILLE", - "nomCommune": "HERLEVILLE" + "codePostal": "09110", + "codeCommune": "09220", + "libelleAcheminement": "ORLU", + "nomCommune": "ORLU" }, { - "codePostal": "80240", - "codeCommune": "80434", - "libelleAcheminement": "HERVILLY", - "nomCommune": "HERVILLY" + "codePostal": "08370", + "codeCommune": "08421", + "libelleAcheminement": "SIGNY MONTLIBERT", + "nomCommune": "SIGNY MONTLIBERT" }, { - "codePostal": "80290", - "codeCommune": "80436", - "libelleAcheminement": "HESCAMPS", - "nomCommune": "HESCAMPS" + "codePostal": "09140", + "codeCommune": "09223", + "libelleAcheminement": "OUST", + "nomCommune": "OUST" }, { - "codePostal": "80290", - "codeCommune": "80436", - "libelleAcheminement": "HESCAMPS", - "nomCommune": "HESCAMPS" + "codePostal": "08230", + "codeCommune": "08436", + "libelleAcheminement": "TAILLETTE", + "nomCommune": "TAILLETTE" }, { - "codePostal": "80270", - "codeCommune": "80437", - "libelleAcheminement": "HEUCOURT CROQUOISON", - "nomCommune": "HEUCOURT CROQUOISON" + "codePostal": "09130", + "codeCommune": "09224", + "libelleAcheminement": "PAILHES", + "nomCommune": "PAILHES" }, { - "codePostal": "80640", - "codeCommune": "80443", - "libelleAcheminement": "HORNOY LE BOURG", - "nomCommune": "HORNOY LE BOURG" + "codePostal": "08360", + "codeCommune": "08438", + "libelleAcheminement": "TAIZY", + "nomCommune": "TAIZY" }, { - "codePostal": "80640", - "codeCommune": "80443", - "libelleAcheminement": "HORNOY LE BOURG", - "nomCommune": "HORNOY LE BOURG" + "codePostal": "09310", + "codeCommune": "09226", + "libelleAcheminement": "PECH", + "nomCommune": "PECH" }, { - "codePostal": "80600", - "codeCommune": "80445", - "libelleAcheminement": "HUMBERCOURT", - "nomCommune": "HUMBERCOURT" + "codePostal": "08380", + "codeCommune": "08440", + "libelleAcheminement": "TARZY", + "nomCommune": "TARZY" }, { - "codePostal": "80290", - "codeCommune": "80455", - "libelleAcheminement": "LA CHAPELLE SOUS POIX", - "nomCommune": "LACHAPELLE" + "codePostal": "09110", + "codeCommune": "09228", + "libelleAcheminement": "PERLES ET CASTELET", + "nomCommune": "PERLES ET CASTELET" }, { - "codePostal": "80430", - "codeCommune": "80456", - "libelleAcheminement": "LAFRESGUIMONT ST MARTIN", - "nomCommune": "LAFRESGUIMONT ST MARTIN" + "codePostal": "08110", + "codeCommune": "08444", + "libelleAcheminement": "TETAIGNE", + "nomCommune": "TETAIGNE" }, { - "codePostal": "80270", - "codeCommune": "80459", - "libelleAcheminement": "LALEU", - "nomCommune": "LALEU" + "codePostal": "09600", + "codeCommune": "09229", + "libelleAcheminement": "LE PEYRAT", + "nomCommune": "LE PEYRAT" }, { - "codePostal": "80190", - "codeCommune": "80465", - "libelleAcheminement": "LANGUEVOISIN QUIQUERY", - "nomCommune": "LANGUEVOISIN QUIQUERY" + "codePostal": "08240", + "codeCommune": "08446", + "libelleAcheminement": "THENORGUES", + "nomCommune": "THENORGUES" }, { - "codePostal": "80700", - "codeCommune": "80467", - "libelleAcheminement": "LAUCOURT", - "nomCommune": "LAUCOURT" + "codePostal": "09460", + "codeCommune": "09237", + "libelleAcheminement": "LE PUCH", + "nomCommune": "LE PUCH" }, { - "codePostal": "80250", - "codeCommune": "80469", - "libelleAcheminement": "LAWARDE MAUGER L HORTOY", - "nomCommune": "LAWARDE MAUGER L HORTOY" + "codePostal": "08800", + "codeCommune": "08448", + "libelleAcheminement": "THILAY", + "nomCommune": "THILAY" }, { - "codePostal": "80320", - "codeCommune": "80481", - "libelleAcheminement": "LIHONS", - "nomCommune": "LIHONS" + "codePostal": "09460", + "codeCommune": "09239", + "libelleAcheminement": "QUERIGUT", + "nomCommune": "QUERIGUT" }, { - "codePostal": "80240", - "codeCommune": "80487", - "libelleAcheminement": "LONGAVESNES", - "nomCommune": "LONGAVESNES" + "codePostal": "08090", + "codeCommune": "08450", + "libelleAcheminement": "THIS", + "nomCommune": "THIS" }, { - "codePostal": "80360", - "codeCommune": "80490", - "libelleAcheminement": "LONGUEVAL", - "nomCommune": "LONGUEVAL" + "codePostal": "09400", + "codeCommune": "09240", + "libelleAcheminement": "QUIE", + "nomCommune": "QUIE" }, { - "codePostal": "80370", - "codeCommune": "80503", - "libelleAcheminement": "MAIZICOURT", - "nomCommune": "MAIZICOURT" + "codePostal": "08300", + "codeCommune": "08452", + "libelleAcheminement": "THUGNY TRUGNY", + "nomCommune": "THUGNY TRUGNY" }, { - "codePostal": "80300", - "codeCommune": "80505", - "libelleAcheminement": "CARNOY MAMETZ", - "nomCommune": "CARNOY MAMETZ" + "codePostal": "09120", + "codeCommune": "09245", + "libelleAcheminement": "RIEUX DE PELLEPORT", + "nomCommune": "RIEUX DE PELLEPORT" }, { - "codePostal": "80300", - "codeCommune": "80505", - "libelleAcheminement": "CARNOY MAMETZ", - "nomCommune": "CARNOY MAMETZ" + "codePostal": "08090", + "codeCommune": "08457", + "libelleAcheminement": "TOURNES", + "nomCommune": "TOURNES" }, { - "codePostal": "80500", - "codeCommune": "80511", - "libelleAcheminement": "MARESTMONTIERS", - "nomCommune": "MARESTMONTIERS" + "codePostal": "09120", + "codeCommune": "09256", + "libelleAcheminement": "ST BAUZEIL", + "nomCommune": "ST BAUZEIL" }, { - "codePostal": "80370", - "codeCommune": "80526", - "libelleAcheminement": "LE MEILLARD", - "nomCommune": "LE MEILLARD" + "codePostal": "08130", + "codeCommune": "08458", + "libelleAcheminement": "TOURTERON", + "nomCommune": "TOURTERON" }, { - "codePostal": "80350", - "codeCommune": "80533", - "libelleAcheminement": "MERS LES BAINS", - "nomCommune": "MERS LES BAINS" + "codePostal": "09230", + "codeCommune": "09257", + "libelleAcheminement": "STE CROIX VOLVESTRE", + "nomCommune": "STE CROIX VOLVESTRE" }, { - "codePostal": "80310", - "codeCommune": "80535", - "libelleAcheminement": "LE MESGE", - "nomCommune": "LE MESGE" + "codePostal": "08110", + "codeCommune": "08459", + "libelleAcheminement": "TREMBLOIS LES CARIGNAN", + "nomCommune": "TREMBLOIS LES CARIGNAN" }, { - "codePostal": "80200", - "codeCommune": "80536", - "libelleAcheminement": "MESNIL BRUNTEL", - "nomCommune": "MESNIL BRUNTEL" + "codePostal": "09000", + "codeCommune": "09272", + "libelleAcheminement": "ST PAUL DE JARRAT", + "nomCommune": "ST PAUL DE JARRAT" }, { - "codePostal": "80360", - "codeCommune": "80538", - "libelleAcheminement": "MESNIL EN ARROUAISE", - "nomCommune": "MESNIL EN ARROUAISE" + "codePostal": "08240", + "codeCommune": "08470", + "libelleAcheminement": "VERPEL", + "nomCommune": "VERPEL" }, { - "codePostal": "80190", - "codeCommune": "80542", - "libelleAcheminement": "MESNIL ST NICAISE", - "nomCommune": "MESNIL ST NICAISE" + "codePostal": "09500", + "codeCommune": "09274", + "libelleAcheminement": "ST QUENTIN LA TOUR", + "nomCommune": "ST QUENTIN LA TOUR" }, { - "codePostal": "80200", - "codeCommune": "80555", - "libelleAcheminement": "MONCHY LAGACHE", - "nomCommune": "MONCHY LAGACHE" + "codePostal": "08270", + "codeCommune": "08472", + "libelleAcheminement": "VIEL ST REMY", + "nomCommune": "VIEL ST REMY" }, { - "codePostal": "80260", - "codeCommune": "80562", - "libelleAcheminement": "MONTIGNY SUR L HALLUE", - "nomCommune": "MONTIGNY SUR L HALLUE" + "codePostal": "09210", + "codeCommune": "09277", + "libelleAcheminement": "ST YBARS", + "nomCommune": "ST YBARS" }, { - "codePostal": "80370", - "codeCommune": "80563", - "libelleAcheminement": "MONTIGNY LES JONGLEURS", - "nomCommune": "MONTIGNY LES JONGLEURS" + "codePostal": "08190", + "codeCommune": "08476", + "libelleAcheminement": "VILLERS DEVANT LE THOUR", + "nomCommune": "VILLERS DEVANT LE THOUR" }, { - "codePostal": "80260", - "codeCommune": "80565", - "libelleAcheminement": "MONTONVILLERS", - "nomCommune": "MONTONVILLERS" + "codePostal": "09250", + "codeCommune": "09287", + "libelleAcheminement": "SENCONAC", + "nomCommune": "SENCONAC" }, { - "codePostal": "80190", - "codeCommune": "80568", - "libelleAcheminement": "MORCHAIN", - "nomCommune": "MORCHAIN" + "codePostal": "08440", + "codeCommune": "08483", + "libelleAcheminement": "VILLE SUR LUMES", + "nomCommune": "VILLE SUR LUMES" }, { - "codePostal": "80870", - "codeCommune": "80578", - "libelleAcheminement": "MOYENNEVILLE", - "nomCommune": "MOYENNEVILLE" + "codePostal": "09140", + "codeCommune": "09291", + "libelleAcheminement": "SENTENAC D OUST", + "nomCommune": "SENTENAC D OUST" }, { - "codePostal": "80290", - "codeCommune": "80582", - "libelleAcheminement": "NAMPS MAISNIL", - "nomCommune": "NAMPS MAISNIL" + "codePostal": "08440", + "codeCommune": "08488", + "libelleAcheminement": "VIVIER AU COURT", + "nomCommune": "VIVIER AU COURT" }, { - "codePostal": "80160", - "codeCommune": "80583", - "libelleAcheminement": "NAMPTY", - "nomCommune": "NAMPTY" + "codePostal": "09000", + "codeCommune": "09293", + "libelleAcheminement": "SERRES SUR ARGET", + "nomCommune": "SERRES SUR ARGET" }, { - "codePostal": "80430", - "codeCommune": "80592", - "libelleAcheminement": "NEUVILLE COPPEGUEULE", - "nomCommune": "NEUVILLE COPPEGUEULE" + "codePostal": "08400", + "codeCommune": "08490", + "libelleAcheminement": "VOUZIERS", + "nomCommune": "VOUZIERS" }, { - "codePostal": "80110", - "codeCommune": "80595", - "libelleAcheminement": "LA NEUVILLE SIRE BERNARD", - "nomCommune": "LA NEUVILLE SIRE BERNARD" + "codePostal": "09110", + "codeCommune": "09298", + "libelleAcheminement": "SORGEAT", + "nomCommune": "SORGEAT" }, { - "codePostal": "80390", - "codeCommune": "80597", - "libelleAcheminement": "NIBAS", - "nomCommune": "NIBAS" + "codePostal": "08400", + "codeCommune": "08490", + "libelleAcheminement": "VOUZIERS", + "nomCommune": "VOUZIERS" }, { - "codePostal": "80600", - "codeCommune": "80602", - "libelleAcheminement": "OCCOCHES", - "nomCommune": "OCCOCHES" + "codePostal": "09140", + "codeCommune": "09299", + "libelleAcheminement": "SOUEIX ROGALLE", + "nomCommune": "SOUEIX ROGALLE" }, { - "codePostal": "80400", - "codeCommune": "80605", - "libelleAcheminement": "OFFOY", - "nomCommune": "OFFOY" + "codePostal": "08330", + "codeCommune": "08491", + "libelleAcheminement": "VRIGNE AUX BOIS", + "nomCommune": "VRIGNE AUX BOIS" }, { - "codePostal": "80140", - "codeCommune": "80606", - "libelleAcheminement": "OISEMONT", - "nomCommune": "OISEMONT" + "codePostal": "09400", + "codeCommune": "09303", + "libelleAcheminement": "SURBA", + "nomCommune": "SURBA" }, { - "codePostal": "80320", - "codeCommune": "80621", - "libelleAcheminement": "HYPERCOURT", - "nomCommune": "HYPERCOURT" + "codePostal": "08270", + "codeCommune": "08500", + "libelleAcheminement": "WIGNICOURT", + "nomCommune": "WIGNICOURT" }, { - "codePostal": "80160", - "codeCommune": "80627", - "libelleAcheminement": "PLACHY BUYON", - "nomCommune": "PLACHY BUYON" + "codePostal": "09240", + "codeCommune": "09304", + "libelleAcheminement": "SUZAN", + "nomCommune": "SUZAN" }, { - "codePostal": "80370", - "codeCommune": "80642", - "libelleAcheminement": "PROUVILLE", - "nomCommune": "PROUVILLE" + "codePostal": "08210", + "codeCommune": "08502", + "libelleAcheminement": "YONCQ", + "nomCommune": "YONCQ" }, { - "codePostal": "80160", - "codeCommune": "80643", - "libelleAcheminement": "PROUZEL", - "nomCommune": "PROUZEL" + "codePostal": "09400", + "codeCommune": "09306", + "libelleAcheminement": "TARASCON SUR ARIEGE", + "nomCommune": "TARASCON SUR ARIEGE" }, { - "codePostal": "80120", - "codeCommune": "80649", - "libelleAcheminement": "QUEND", - "nomCommune": "QUEND" + "codePostal": "09320", + "codeCommune": "09005", + "libelleAcheminement": "ALEU", + "nomCommune": "ALEU" }, { - "codePostal": "80115", - "codeCommune": "80650", - "libelleAcheminement": "QUERRIEU", - "nomCommune": "QUERRIEU" + "codePostal": "09190", + "codeCommune": "09308", + "libelleAcheminement": "TAURIGNAN VIEUX", + "nomCommune": "TAURIGNAN VIEUX" }, { - "codePostal": "80270", - "codeCommune": "80655", - "libelleAcheminement": "QUESNOY SUR AIRAINES", - "nomCommune": "QUESNOY SUR AIRAINES" + "codePostal": "09240", + "codeCommune": "09007", + "libelleAcheminement": "ALLIERES", + "nomCommune": "ALLIERES" }, { - "codePostal": "80600", - "codeCommune": "80666", - "libelleAcheminement": "REMAISNIL", - "nomCommune": "REMAISNIL" + "codePostal": "09140", + "codeCommune": "09322", + "libelleAcheminement": "USTOU", + "nomCommune": "USTOU" }, { - "codePostal": "80540", - "codeCommune": "80670", - "libelleAcheminement": "REVELLES", - "nomCommune": "REVELLES" + "codePostal": "09130", + "codeCommune": "09019", + "libelleAcheminement": "ARTIGAT", + "nomCommune": "ARTIGAT" }, { - "codePostal": "80620", - "codeCommune": "80671", - "libelleAcheminement": "RIBEAUCOURT", - "nomCommune": "RIBEAUCOURT" + "codePostal": "09220", + "codeCommune": "09334", + "libelleAcheminement": "VAL DE SOS", + "nomCommune": "VAL DE SOS" }, { - "codePostal": "80136", - "codeCommune": "80674", - "libelleAcheminement": "RIVERY", - "nomCommune": "RIVERY" + "codePostal": "09800", + "codeCommune": "09026", + "libelleAcheminement": "AUDRESSEIN", + "nomCommune": "AUDRESSEIN" }, { - "codePostal": "80170", - "codeCommune": "80680", - "libelleAcheminement": "ROSIERES EN SANTERRE", - "nomCommune": "ROSIERES EN SANTERRE" + "codePostal": "09100", + "codeCommune": "09339", + "libelleAcheminement": "VILLENEUVE DU PAREAGE", + "nomCommune": "VILLENEUVE DU PAREAGE" }, { - "codePostal": "80370", - "codeCommune": "80697", - "libelleAcheminement": "ST ACHEUL", - "nomCommune": "ST ACHEUL" + "codePostal": "09350", + "codeCommune": "09038", + "libelleAcheminement": "LA BASTIDE DE BESPLAS", + "nomCommune": "LA BASTIDE DE BESPLAS" }, { - "codePostal": "80430", - "codeCommune": "80699", - "libelleAcheminement": "ST AUBIN RIVIERE", - "nomCommune": "ST AUBIN RIVIERE" + "codePostal": "09500", + "codeCommune": "09341", + "libelleAcheminement": "VIVIES", + "nomCommune": "VIVIES" }, { - "codePostal": "80560", - "codeCommune": "80705", - "libelleAcheminement": "ST LEGER LES AUTHIE", - "nomCommune": "ST LEGER LES AUTHIE" + "codePostal": "09160", + "codeCommune": "09041", + "libelleAcheminement": "LA BASTIDE DU SALAT", + "nomCommune": "LA BASTIDE DU SALAT" }, { - "codePostal": "80140", - "codeCommune": "80709", - "libelleAcheminement": "ST MAULVIS", - "nomCommune": "ST MAULVIS" + "codePostal": "10160", + "codeCommune": "10003", + "libelleAcheminement": "AIX VILLEMAUR PALIS", + "nomCommune": "AIX VILLEMAUR PALIS" }, { - "codePostal": "80540", - "codeCommune": "80723", - "libelleAcheminement": "SAISSEVAL", - "nomCommune": "SAISSEVAL" + "codePostal": "09230", + "codeCommune": "09046", + "libelleAcheminement": "BEDEILLE", + "nomCommune": "BEDEILLE" }, { - "codePostal": "80140", - "codeCommune": "80732", - "libelleAcheminement": "SENARPONT", - "nomCommune": "SENARPONT" + "codePostal": "10320", + "codeCommune": "10013", + "libelleAcheminement": "ASSENAY", + "nomCommune": "ASSENAY" }, { - "codePostal": "80540", - "codeCommune": "80735", - "libelleAcheminement": "SEUX", - "nomCommune": "SEUX" + "codePostal": "09300", + "codeCommune": "09047", + "libelleAcheminement": "BELESTA", + "nomCommune": "BELESTA" }, { - "codePostal": "80270", - "codeCommune": "80744", - "libelleAcheminement": "TAILLY L ARBRE A MOUCHES", - "nomCommune": "TAILLY" + "codePostal": "10150", + "codeCommune": "10015", + "libelleAcheminement": "AUBETERRE", + "nomCommune": "AUBETERRE" }, { - "codePostal": "80300", - "codeCommune": "80753", - "libelleAcheminement": "THIEPVAL", - "nomCommune": "THIEPVAL" + "codePostal": "09000", + "codeCommune": "09049", + "libelleAcheminement": "BENAC", + "nomCommune": "BENAC" }, { - "codePostal": "80160", - "codeCommune": "80757", - "libelleAcheminement": "THOIX", - "nomCommune": "THOIX" + "codePostal": "10220", + "codeCommune": "10019", + "libelleAcheminement": "VAL D AUZON", + "nomCommune": "VAL D AUZON" }, { - "codePostal": "80870", - "codeCommune": "80764", - "libelleAcheminement": "TOEUFLES", - "nomCommune": "TOEUFLES" + "codePostal": "09320", + "codeCommune": "09057", + "libelleAcheminement": "BIERT", + "nomCommune": "BIERT" }, { - "codePostal": "80560", - "codeCommune": "80773", - "libelleAcheminement": "VADENCOURT", - "nomCommune": "VADENCOURT" + "codePostal": "10240", + "codeCommune": "10021", + "libelleAcheminement": "AVANT LES RAMERUPT", + "nomCommune": "AVANT LES RAMERUPT" }, { - "codePostal": "80560", - "codeCommune": "80776", - "libelleAcheminement": "VARENNES", - "nomCommune": "VARENNES" + "codePostal": "09100", + "codeCommune": "09060", + "libelleAcheminement": "BONNAC", + "nomCommune": "BONNAC" }, { - "codePostal": "80620", - "codeCommune": "80778", - "libelleAcheminement": "VAUCHELLES LES DOMART", - "nomCommune": "VAUCHELLES LES DOMART" + "codePostal": "10340", + "codeCommune": "10022", + "libelleAcheminement": "AVIREY LINGEY", + "nomCommune": "AVIREY LINGEY" }, { - "codePostal": "80132", - "codeCommune": "80779", - "libelleAcheminement": "VAUCHELLES LES QUESNOY", - "nomCommune": "VAUCHELLES LES QUESNOY" + "codePostal": "09350", + "codeCommune": "09061", + "libelleAcheminement": "LES BORDES SUR ARIZE", + "nomCommune": "LES BORDES SUR ARIZE" }, { - "codePostal": "80140", - "codeCommune": "80796", - "libelleAcheminement": "VILLEROY", - "nomCommune": "VILLEROY" + "codePostal": "10110", + "codeCommune": "10034", + "libelleAcheminement": "BAR SUR SEINE", + "nomCommune": "BAR SUR SEINE" }, { - "codePostal": "80800", - "codeCommune": "80799", - "libelleAcheminement": "VILLERS BRETONNEUX", - "nomCommune": "VILLERS BRETONNEUX" + "codePostal": "09000", + "codeCommune": "09063", + "libelleAcheminement": "LE BOSC", + "nomCommune": "LE BOSC" }, { - "codePostal": "80150", - "codeCommune": "80808", - "libelleAcheminement": "VIRONCHAUX", - "nomCommune": "VIRONCHAUX" + "codePostal": "10310", + "codeCommune": "10035", + "libelleAcheminement": "BAYEL", + "nomCommune": "BAYEL" }, { - "codePostal": "80240", - "codeCommune": "80812", - "libelleAcheminement": "VRAIGNES EN VERMANDOIS", - "nomCommune": "VRAIGNES EN VERMANDOIS" + "codePostal": "09240", + "codeCommune": "09071", + "libelleAcheminement": "CADARCET", + "nomCommune": "CADARCET" }, { - "codePostal": "80640", - "codeCommune": "80813", - "libelleAcheminement": "VRAIGNES LES HORNOY", - "nomCommune": "VRAIGNES LES HORNOY" + "codePostal": "10160", + "codeCommune": "10042", + "libelleAcheminement": "BERULLE", + "nomCommune": "BERULLE" }, { - "codePostal": "80170", - "codeCommune": "80814", - "libelleAcheminement": "VRELY", - "nomCommune": "VRELY" + "codePostal": "09700", + "codeCommune": "09076", + "libelleAcheminement": "CANTE", + "nomCommune": "CANTE" }, { - "codePostal": "80670", - "codeCommune": "80819", - "libelleAcheminement": "WARGNIES", - "nomCommune": "WARGNIES" + "codePostal": "10500", + "codeCommune": "10044", + "libelleAcheminement": "BETIGNICOURT", + "nomCommune": "BETIGNICOURT" }, { - "codePostal": "80170", - "codeCommune": "80823", - "libelleAcheminement": "WARVILLERS", - "nomCommune": "WARVILLERS" + "codePostal": "09400", + "codeCommune": "09077", + "libelleAcheminement": "CAPOULET ET JUNAC", + "nomCommune": "CAPOULET ET JUNAC" }, { - "codePostal": "80520", - "codeCommune": "80827", - "libelleAcheminement": "WOINCOURT", - "nomCommune": "WOINCOURT" + "codePostal": "10140", + "codeCommune": "10045", + "libelleAcheminement": "BEUREY", + "nomCommune": "BEUREY" }, { - "codePostal": "80310", - "codeCommune": "80835", - "libelleAcheminement": "YZEUX", - "nomCommune": "YZEUX" + "codePostal": "09000", + "codeCommune": "09093", + "libelleAcheminement": "CELLES", + "nomCommune": "CELLES" }, { - "codePostal": "81470", - "codeCommune": "81001", - "libelleAcheminement": "AGUTS", - "nomCommune": "AGUTS" + "codePostal": "10500", + "codeCommune": "10046", + "libelleAcheminement": "BLAINCOURT SUR AUBE", + "nomCommune": "BLAINCOURT SUR AUBE" }, { - "codePostal": "81200", - "codeCommune": "81002", - "libelleAcheminement": "AIGUEFONDE", - "nomCommune": "AIGUEFONDE" + "codePostal": "09350", + "codeCommune": "09105", + "libelleAcheminement": "DAUMAZAN SUR ARIZE", + "nomCommune": "DAUMAZAN SUR ARIZE" }, { - "codePostal": "81140", - "codeCommune": "81007", - "libelleAcheminement": "ALOS", - "nomCommune": "ALOS" + "codePostal": "10500", + "codeCommune": "10047", + "libelleAcheminement": "BLIGNICOURT", + "nomCommune": "BLIGNICOURT" }, { - "codePostal": "81500", - "codeCommune": "81011", - "libelleAcheminement": "AMBRES", - "nomCommune": "AMBRES" + "codePostal": "09300", + "codeCommune": "09106", + "libelleAcheminement": "DREUILHE", + "nomCommune": "DREUILHE" }, { - "codePostal": "81260", - "codeCommune": "81014", - "libelleAcheminement": "ANGLES", - "nomCommune": "ANGLES" + "codePostal": "10320", + "codeCommune": "10051", + "libelleAcheminement": "BOUILLY", + "nomCommune": "BOUILLY" }, { - "codePostal": "81600", - "codeCommune": "81020", - "libelleAcheminement": "AUSSAC", - "nomCommune": "AUSSAC" + "codePostal": "09130", + "codeCommune": "09109", + "libelleAcheminement": "DURFORT", + "nomCommune": "DURFORT" }, { - "codePostal": "81500", - "codeCommune": "81022", - "libelleAcheminement": "BANNIERES", - "nomCommune": "BANNIERES" + "codePostal": "10220", + "codeCommune": "10056", + "libelleAcheminement": "BOUY LUXEMBOURG", + "nomCommune": "BOUY LUXEMBOURG" }, { - "codePostal": "81490", - "codeCommune": "81034", - "libelleAcheminement": "BOISSEZON", - "nomCommune": "BOISSEZON" + "codePostal": "09200", + "codeCommune": "09110", + "libelleAcheminement": "ENCOURTIECH", + "nomCommune": "ENCOURTIECH" }, { - "codePostal": "81170", - "codeCommune": "81035", - "libelleAcheminement": "BOURNAZEL", - "nomCommune": "BOURNAZEL" + "codePostal": "10500", + "codeCommune": "10059", + "libelleAcheminement": "BRAUX", + "nomCommune": "BRAUX" }, { - "codePostal": "81340", - "codeCommune": "81047", - "libelleAcheminement": "CADIX", - "nomCommune": "CADIX" + "codePostal": "09700", + "codeCommune": "09117", + "libelleAcheminement": "ESPLAS", + "nomCommune": "ESPLAS" }, { - "codePostal": "81140", - "codeCommune": "81051", - "libelleAcheminement": "CAHUZAC SUR VERE", - "nomCommune": "CAHUZAC SUR VERE" + "codePostal": "10140", + "codeCommune": "10062", + "libelleAcheminement": "BRIEL SUR BARSE", + "nomCommune": "BRIEL SUR BARSE" }, { - "codePostal": "81260", - "codeCommune": "81053", - "libelleAcheminement": "CAMBOUNES", - "nomCommune": "CAMBOUNES" + "codePostal": "09300", + "codeCommune": "09125", + "libelleAcheminement": "FOUGAX ET BARRINEUF", + "nomCommune": "FOUGAX ET BARRINEUF" }, { - "codePostal": "81540", - "codeCommune": "81055", - "libelleAcheminement": "LES CAMMAZES", - "nomCommune": "LES CAMMAZES" + "codePostal": "10500", + "codeCommune": "10064", + "libelleAcheminement": "BRIENNE LE CHATEAU", + "nomCommune": "BRIENNE LE CHATEAU" }, { - "codePostal": "81100", - "codeCommune": "81065", - "libelleAcheminement": "CASTRES", - "nomCommune": "CASTRES" + "codePostal": "09300", + "codeCommune": "09126", + "libelleAcheminement": "FREYCHENET", + "nomCommune": "FREYCHENET" }, { - "codePostal": "81150", - "codeCommune": "81067", - "libelleAcheminement": "CESTAYROLS", - "nomCommune": "CESTAYROLS" + "codePostal": "10110", + "codeCommune": "10068", + "libelleAcheminement": "BUXEUIL", + "nomCommune": "BUXEUIL" }, { - "codePostal": "81340", - "codeCommune": "81071", - "libelleAcheminement": "COURRIS", - "nomCommune": "COURRIS" + "codePostal": "09400", + "codeCommune": "09133", + "libelleAcheminement": "GENAT", + "nomCommune": "GENAT" }, { - "codePostal": "81990", - "codeCommune": "81074", - "libelleAcheminement": "CUNAC", - "nomCommune": "CUNAC" + "codePostal": "10110", + "codeCommune": "10069", + "libelleAcheminement": "BUXIERES SUR ARCE", + "nomCommune": "BUXIERES SUR ARCE" }, { - "codePostal": "81290", - "codeCommune": "81084", - "libelleAcheminement": "ESCOUSSENS", - "nomCommune": "ESCOUSSENS" + "codePostal": "09220", + "codeCommune": "09134", + "libelleAcheminement": "GESTIES", + "nomCommune": "GESTIES" }, { - "codePostal": "81260", - "codeCommune": "81086", - "libelleAcheminement": "ESPERAUSSES", - "nomCommune": "ESPERAUSSES" + "codePostal": "10700", + "codeCommune": "10077", + "libelleAcheminement": "CHAMPIGNY SUR AUBE", + "nomCommune": "CHAMPIGNY SUR AUBE" }, { - "codePostal": "81990", - "codeCommune": "81097", - "libelleAcheminement": "FREJAIROLLES", - "nomCommune": "FREJAIROLLES" + "codePostal": "09000", + "codeCommune": "09138", + "libelleAcheminement": "L HERM", + "nomCommune": "L HERM" }, { - "codePostal": "81170", - "codeCommune": "81108", - "libelleAcheminement": "ITZAC", - "nomCommune": "ITZAC" + "codePostal": "10700", + "codeCommune": "10082", + "libelleAcheminement": "CHAPELLE VALLON", + "nomCommune": "CHAPELLE VALLON" }, { - "codePostal": "81150", - "codeCommune": "81112", - "libelleAcheminement": "LABASTIDE DE LEVIS", - "nomCommune": "LABASTIDE DE LEVIS" + "codePostal": "09390", + "codeCommune": "09139", + "libelleAcheminement": "L HOSPITALET PRES L ANDORRE", + "nomCommune": "L HOSPITALET PRES L ANDORRE" }, { - "codePostal": "81400", - "codeCommune": "81114", - "libelleAcheminement": "LABASTIDE GABAUSSE", - "nomCommune": "LABASTIDE GABAUSSE" + "codePostal": "10260", + "codeCommune": "10083", + "libelleAcheminement": "CHAPPES", + "nomCommune": "CHAPPES" }, { - "codePostal": "81500", - "codeCommune": "81116", - "libelleAcheminement": "LABASTIDE ST GEORGES", - "nomCommune": "LABASTIDE ST GEORGES" + "codePostal": "09800", + "codeCommune": "09141", + "libelleAcheminement": "ILLARTEIN", + "nomCommune": "ILLARTEIN" }, { - "codePostal": "81470", - "codeCommune": "81127", - "libelleAcheminement": "LACROISILLE", - "nomCommune": "LACROISILLE" + "codePostal": "10200", + "codeCommune": "10102", + "libelleAcheminement": "COLOMBE LA FOSSE", + "nomCommune": "COLOMBE LA FOSSE" }, { - "codePostal": "81210", - "codeCommune": "81128", - "libelleAcheminement": "LACROUZETTE", - "nomCommune": "LACROUZETTE" + "codePostal": "09500", + "codeCommune": "09150", + "libelleAcheminement": "LAGARDE", + "nomCommune": "LAGARDE" }, { - "codePostal": "81170", - "codeCommune": "81146", - "libelleAcheminement": "LIVERS CAZELLES", - "nomCommune": "LIVERS CAZELLES" + "codePostal": "10260", + "codeCommune": "10109", + "libelleAcheminement": "COURTENOT", + "nomCommune": "COURTENOT" }, { - "codePostal": "81170", - "codeCommune": "81154", - "libelleAcheminement": "MARNAVES", - "nomCommune": "MARNAVES" + "codePostal": "09310", + "codeCommune": "09156", + "libelleAcheminement": "LARNAT", + "nomCommune": "LARNAT" }, { - "codePostal": "81640", - "codeCommune": "81170", - "libelleAcheminement": "MONESTIES", - "nomCommune": "MONESTIES" + "codePostal": "10200", + "codeCommune": "10113", + "libelleAcheminement": "COUVIGNON", + "nomCommune": "COUVIGNON" }, { - "codePostal": "81630", - "codeCommune": "81185", - "libelleAcheminement": "MONTVALEN", - "nomCommune": "MONTVALEN" + "codePostal": "09230", + "codeCommune": "09158", + "libelleAcheminement": "LASSERRE", + "nomCommune": "LASSERRE" }, { - "codePostal": "81190", - "codeCommune": "81186", - "libelleAcheminement": "MOULARES", - "nomCommune": "MOULARES" + "codePostal": "10150", + "codeCommune": "10115", + "libelleAcheminement": "CRENEY PRES TROYES", + "nomCommune": "CRENEY PRES TROYES" }, { - "codePostal": "81300", - "codeCommune": "81187", - "libelleAcheminement": "MOULAYRES", - "nomCommune": "MOULAYRES" + "codePostal": "09220", + "codeCommune": "09162", + "libelleAcheminement": "LERCOUL", + "nomCommune": "LERCOUL" }, { - "codePostal": "81470", - "codeCommune": "81189", - "libelleAcheminement": "MOUZENS", - "nomCommune": "MOUZENS" + "codePostal": "10500", + "codeCommune": "10117", + "libelleAcheminement": "CRESPY LE NEUF", + "nomCommune": "CRESPY LE NEUF" }, { - "codePostal": "81490", - "codeCommune": "81196", - "libelleAcheminement": "NOAILHAC", - "nomCommune": "NOAILHAC" + "codePostal": "09600", + "codeCommune": "09169", + "libelleAcheminement": "LIMBRASSAC", + "nomCommune": "LIMBRASSAC" }, { - "codePostal": "81170", - "codeCommune": "81197", - "libelleAcheminement": "NOAILLES", - "nomCommune": "NOAILLES" + "codePostal": "10190", + "codeCommune": "10124", + "libelleAcheminement": "DIERREY ST JULIEN", + "nomCommune": "DIERREY ST JULIEN" }, { - "codePostal": "81120", - "codeCommune": "81198", - "libelleAcheminement": "ORBAN", - "nomCommune": "ORBAN" + "codePostal": "09250", + "codeCommune": "09171", + "libelleAcheminement": "LORDAT", + "nomCommune": "LORDAT" }, { - "codePostal": "81250", - "codeCommune": "81203", - "libelleAcheminement": "PAULINET", - "nomCommune": "PAULINET" + "codePostal": "10240", + "codeCommune": "10127", + "libelleAcheminement": "DOMMARTIN LE COQ", + "nomCommune": "DOMMARTIN LE COQ" }, { - "codePostal": "81220", - "codeCommune": "81212", - "libelleAcheminement": "PRADES", - "nomCommune": "PRADES" + "codePostal": "09350", + "codeCommune": "09172", + "libelleAcheminement": "LOUBAUT", + "nomCommune": "LOUBAUT" }, { - "codePostal": "81470", - "codeCommune": "81214", - "libelleAcheminement": "PUECHOURSI", - "nomCommune": "PUECHOURSI" + "codePostal": "10220", + "codeCommune": "10129", + "libelleAcheminement": "DOSCHES", + "nomCommune": "DOSCHES" }, { - "codePostal": "81390", - "codeCommune": "81215", - "libelleAcheminement": "PUYBEGON", - "nomCommune": "PUYBEGON" + "codePostal": "09000", + "codeCommune": "09174", + "libelleAcheminement": "LOUBIERES", + "nomCommune": "LOUBIERES" }, { - "codePostal": "81990", - "codeCommune": "81218", - "libelleAcheminement": "PUYGOUZON", - "nomCommune": "PUYGOUZON" + "codePostal": "10360", + "codeCommune": "10141", + "libelleAcheminement": "ESSOYES", + "nomCommune": "ESSOYES" }, { - "codePostal": "81210", - "codeCommune": "81227", - "libelleAcheminement": "ROQUECOURBE", - "nomCommune": "ROQUECOURBE" + "codePostal": "09500", + "codeCommune": "09178", + "libelleAcheminement": "MALEGOUDE", + "nomCommune": "MALEGOUDE" }, { - "codePostal": "81500", - "codeCommune": "81236", - "libelleAcheminement": "ST AGNAN", - "nomCommune": "ST AGNAN" + "codePostal": "10320", + "codeCommune": "10147", + "libelleAcheminement": "FAYS LA CHAPELLE", + "nomCommune": "FAYS LA CHAPELLE" }, { - "codePostal": "81250", - "codeCommune": "81240", - "libelleAcheminement": "ST ANDRE", - "nomCommune": "ST ANDRE" + "codePostal": "09160", + "codeCommune": "09183", + "libelleAcheminement": "MAUVEZIN DE PRAT", + "nomCommune": "MAUVEZIN DE PRAT" }, { - "codePostal": "81390", - "codeCommune": "81248", - "libelleAcheminement": "ST GAUZENS", - "nomCommune": "ST GAUZENS" + "codePostal": "10400", + "codeCommune": "10148", + "libelleAcheminement": "FERREUX QUINCEY", + "nomCommune": "FERREUX QUINCEY" }, { - "codePostal": "81160", - "codeCommune": "81257", - "libelleAcheminement": "ST JUERY", - "nomCommune": "ST JUERY" + "codePostal": "09270", + "codeCommune": "09185", + "libelleAcheminement": "MAZERES", + "nomCommune": "MAZERES" }, { - "codePostal": "81340", - "codeCommune": "81264", - "libelleAcheminement": "ST MICHEL LABADIE", - "nomCommune": "ST MICHEL LABADIE" + "codePostal": "10200", + "codeCommune": "10150", + "libelleAcheminement": "FONTAINE", + "nomCommune": "FONTAINE" }, { - "codePostal": "81530", - "codeCommune": "81268", - "libelleAcheminement": "ST SALVI DE CARCAVES", - "nomCommune": "ST SALVI DE CARCAVES" + "codePostal": "09500", + "codeCommune": "09194", + "libelleAcheminement": "MIREPOIX", + "nomCommune": "MIREPOIX" }, { - "codePostal": "81630", - "codeCommune": "81272", - "libelleAcheminement": "ST URCISSE", - "nomCommune": "ST URCISSE" + "codePostal": "10100", + "codeCommune": "10157", + "libelleAcheminement": "LA FOSSE CORDUAN", + "nomCommune": "LA FOSSE CORDUAN" }, { - "codePostal": "81240", - "codeCommune": "81278", - "libelleAcheminement": "SAUVETERRE", - "nomCommune": "SAUVETERRE" + "codePostal": "09130", + "codeCommune": "09195", + "libelleAcheminement": "MONESPLE", + "nomCommune": "MONESPLE" }, { - "codePostal": "81640", - "codeCommune": "81280", - "libelleAcheminement": "LE SEGUR", - "nomCommune": "LE SEGUR" + "codePostal": "10260", + "codeCommune": "10158", + "libelleAcheminement": "FOUCHERES", + "nomCommune": "FOUCHERES" }, { - "codePostal": "81530", - "codeCommune": "81282", - "libelleAcheminement": "SENAUX", - "nomCommune": "SENAUX" - }, - { - "codePostal": "81990", - "codeCommune": "81284", - "libelleAcheminement": "LE SEQUESTRE", - "nomCommune": "LE SEQUESTRE" + "codePostal": "09200", + "codeCommune": "09204", + "libelleAcheminement": "MONTESQUIEU AVANTES", + "nomCommune": "MONTESQUIEU AVANTES" }, { - "codePostal": "81120", - "codeCommune": "81287", - "libelleAcheminement": "SIEURAC", - "nomCommune": "SIEURAC" + "codePostal": "10400", + "codeCommune": "10169", + "libelleAcheminement": "GUMERY", + "nomCommune": "GUMERY" }, { - "codePostal": "81130", - "codeCommune": "81291", - "libelleAcheminement": "TAIX", - "nomCommune": "TAIX" + "codePostal": "09330", + "codeCommune": "09207", + "libelleAcheminement": "MONTGAILHARD", + "nomCommune": "MONTGAILHARD" }, { - "codePostal": "81600", - "codeCommune": "81294", - "libelleAcheminement": "TECOU", - "nomCommune": "TECOU" + "codePostal": "10330", + "codeCommune": "10175", + "libelleAcheminement": "JASSEINES", + "nomCommune": "JASSEINES" }, { - "codePostal": "81090", - "codeCommune": "81307", - "libelleAcheminement": "VALDURENQUE", - "nomCommune": "VALDURENQUE" + "codePostal": "09200", + "codeCommune": "09209", + "libelleAcheminement": "MONTJOIE EN COUSERANS", + "nomCommune": "MONTJOIE EN COUSERANS" }, { - "codePostal": "81530", - "codeCommune": "81314", - "libelleAcheminement": "VIANE", - "nomCommune": "VIANE" + "codePostal": "10110", + "codeCommune": "10187", + "libelleAcheminement": "LANDREVILLE", + "nomCommune": "LANDREVILLE" }, { - "codePostal": "81130", - "codeCommune": "81319", - "libelleAcheminement": "VILLENEUVE SUR VERE", - "nomCommune": "VILLENEUVE SUR VERE" + "codePostal": "09320", + "codeCommune": "09231", + "libelleAcheminement": "LE PORT", + "nomCommune": "LE PORT" }, { - "codePostal": "81170", - "codeCommune": "81320", - "libelleAcheminement": "VINDRAC ALAYRAC", - "nomCommune": "VINDRAC ALAYRAC" + "codePostal": "10210", + "codeCommune": "10188", + "libelleAcheminement": "LANTAGES", + "nomCommune": "LANTAGES" }, { - "codePostal": "81220", - "codeCommune": "81323", - "libelleAcheminement": "VITERBE", - "nomCommune": "VITERBE" + "codePostal": "09110", + "codeCommune": "09232", + "libelleAcheminement": "PRADES", + "nomCommune": "PRADES" }, { - "codePostal": "82210", - "codeCommune": "82003", - "libelleAcheminement": "ANGEVILLE", - "nomCommune": "ANGEVILLE" + "codePostal": "10270", + "codeCommune": "10190", + "libelleAcheminement": "LAUBRESSEL", + "nomCommune": "LAUBRESSEL" }, { - "codePostal": "82500", - "codeCommune": "82006", - "libelleAcheminement": "AUTERIVE", - "nomCommune": "AUTERIVE" + "codePostal": "09500", + "codeCommune": "09259", + "libelleAcheminement": "ST FELIX DE TOURNEGAT", + "nomCommune": "ST FELIX DE TOURNEGAT" }, { - "codePostal": "82120", - "codeCommune": "82009", - "libelleAcheminement": "BALIGNAC", - "nomCommune": "BALIGNAC" + "codePostal": "10330", + "codeCommune": "10192", + "libelleAcheminement": "LENTILLES", + "nomCommune": "LENTILLES" }, { - "codePostal": "82290", - "codeCommune": "82011", - "libelleAcheminement": "BARRY D ISLEMADE", - "nomCommune": "BARRY D ISLEMADE" + "codePostal": "09800", + "codeCommune": "09263", + "libelleAcheminement": "ST JEAN DU CASTILLONNAIS", + "nomCommune": "ST JEAN DU CASTILLONNAIS" }, { - "codePostal": "82500", - "codeCommune": "82015", - "libelleAcheminement": "BELBEZE EN LOMAGNE", - "nomCommune": "BELBEZE EN LOMAGNE" + "codePostal": "10210", + "codeCommune": "10202", + "libelleAcheminement": "LES LOGES MARGUERON", + "nomCommune": "LES LOGES MARGUERON" }, { - "codePostal": "82200", - "codeCommune": "82019", - "libelleAcheminement": "BOUDOU", - "nomCommune": "BOUDOU" + "codePostal": "09100", + "codeCommune": "09265", + "libelleAcheminement": "ST JEAN DU FALGA", + "nomCommune": "ST JEAN DU FALGA" }, { - "codePostal": "82710", - "codeCommune": "82025", - "libelleAcheminement": "BRESSOLS", - "nomCommune": "BRESSOLS" + "codePostal": "10240", + "codeCommune": "10206", + "libelleAcheminement": "LONGSOLS", + "nomCommune": "LONGSOLS" }, { - "codePostal": "82800", - "codeCommune": "82026", - "libelleAcheminement": "BRUNIQUEL", - "nomCommune": "BRUNIQUEL" + "codePostal": "09800", + "codeCommune": "09267", + "libelleAcheminement": "ST LARY", + "nomCommune": "ST LARY" }, { - "codePostal": "82110", - "codeCommune": "82042", - "libelleAcheminement": "CAZES MONDENARD", - "nomCommune": "CAZES MONDENARD" + "codePostal": "10300", + "codeCommune": "10211", + "libelleAcheminement": "MACEY", + "nomCommune": "MACEY" }, { - "codePostal": "82600", - "codeCommune": "82043", - "libelleAcheminement": "COMBEROUGER", - "nomCommune": "COMBEROUGER" + "codePostal": "09190", + "codeCommune": "09268", + "libelleAcheminement": "ST LIZIER", + "nomCommune": "ST LIZIER" }, { - "codePostal": "82340", - "codeCommune": "82050", - "libelleAcheminement": "DUNES", - "nomCommune": "DUNES" + "codePostal": "10210", + "codeCommune": "10218", + "libelleAcheminement": "MAISONS LES CHAOURCE", + "nomCommune": "MAISONS LES CHAOURCE" }, { - "codePostal": "82500", - "codeCommune": "82053", - "libelleAcheminement": "ESCAZEAUX", - "nomCommune": "ESCAZEAUX" + "codePostal": "09120", + "codeCommune": "09284", + "libelleAcheminement": "SEGURA", + "nomCommune": "SEGURA" }, { - "codePostal": "82700", - "codeCommune": "82062", - "libelleAcheminement": "FINHAN", - "nomCommune": "FINHAN" + "codePostal": "10200", + "codeCommune": "10219", + "libelleAcheminement": "MAISONS LES SOULAINES", + "nomCommune": "MAISONS LES SOULAINES" }, { - "codePostal": "82500", - "codeCommune": "82064", - "libelleAcheminement": "GARIES", - "nomCommune": "GARIES" + "codePostal": "09240", + "codeCommune": "09292", + "libelleAcheminement": "SENTENAC DE SEROU", + "nomCommune": "SENTENAC DE SEROU" }, { - "codePostal": "82400", - "codeCommune": "82073", - "libelleAcheminement": "GOUDOURVILLE", - "nomCommune": "GOUDOURVILLE" + "codePostal": "10600", + "codeCommune": "10230", + "libelleAcheminement": "MERGEY", + "nomCommune": "MERGEY" }, { - "codePostal": "82220", - "codeCommune": "82077", - "libelleAcheminement": "LABARTHE", - "nomCommune": "LABARTHE" + "codePostal": "09800", + "codeCommune": "09297", + "libelleAcheminement": "SOR", + "nomCommune": "SOR" }, { - "codePostal": "82100", - "codeCommune": "82081", - "libelleAcheminement": "LABOURGADE", - "nomCommune": "LABOURGADE" + "codePostal": "10400", + "codeCommune": "10231", + "libelleAcheminement": "LE MERIOT", + "nomCommune": "LE MERIOT" }, { - "codePostal": "82100", - "codeCommune": "82086", - "libelleAcheminement": "LAFITTE", - "nomCommune": "LAFITTE" + "codePostal": "09140", + "codeCommune": "09299", + "libelleAcheminement": "SOUEIX ROGALLE", + "nomCommune": "SOUEIX ROGALLE" }, { - "codePostal": "82130", - "codeCommune": "82090", - "libelleAcheminement": "LAMOTHE CAPDEVILLE", - "nomCommune": "LAMOTHE CAPDEVILLE" + "codePostal": "10700", + "codeCommune": "10235", + "libelleAcheminement": "MESNIL LA COMTESSE", + "nomCommune": "MESNIL LA COMTESSE" }, { - "codePostal": "82240", - "codeCommune": "82092", - "libelleAcheminement": "LAPENCHE", - "nomCommune": "LAPENCHE" + "codePostal": "09600", + "codeCommune": "09305", + "libelleAcheminement": "TABRE", + "nomCommune": "TABRE" }, { - "codePostal": "82500", - "codeCommune": "82103", - "libelleAcheminement": "MARIGNAC", - "nomCommune": "MARIGNAC" + "codePostal": "10270", + "codeCommune": "10245", + "libelleAcheminement": "MONTAULIN", + "nomCommune": "MONTAULIN" }, { - "codePostal": "82290", - "codeCommune": "82108", - "libelleAcheminement": "MEAUZAC", - "nomCommune": "MEAUZAC" + "codePostal": "09230", + "codeCommune": "09313", + "libelleAcheminement": "TOURTOUSE", + "nomCommune": "TOURTOUSE" }, { - "codePostal": "82210", - "codeCommune": "82109", - "libelleAcheminement": "MERLES", - "nomCommune": "MERLES" + "codePostal": "10270", + "codeCommune": "10245", + "libelleAcheminement": "MONTAULIN", + "nomCommune": "MONTAULIN" }, { - "codePostal": "82190", - "codeCommune": "82111", - "libelleAcheminement": "MIRAMONT DE QUERCY", - "nomCommune": "MIRAMONT DE QUERCY" + "codePostal": "09250", + "codeCommune": "09318", + "libelleAcheminement": "UNAC", + "nomCommune": "UNAC" }, { - "codePostal": "82270", - "codeCommune": "82128", - "libelleAcheminement": "MONTFERMIER", - "nomCommune": "MONTFERMIER" + "codePostal": "10200", + "codeCommune": "10250", + "libelleAcheminement": "MONTIER EN L ISLE", + "nomCommune": "MONTIER EN L ISLE" }, { - "codePostal": "82120", - "codeCommune": "82129", - "libelleAcheminement": "MONTGAILLARD", - "nomCommune": "MONTGAILLARD" + "codePostal": "09310", + "codeCommune": "09320", + "libelleAcheminement": "URS", + "nomCommune": "URS" }, { - "codePostal": "82220", - "codeCommune": "82144", - "libelleAcheminement": "PUYCORNET", - "nomCommune": "PUYCORNET" + "codePostal": "10150", + "codeCommune": "10256", + "libelleAcheminement": "MONTSUZAIN", + "nomCommune": "MONTSUZAIN" }, { - "codePostal": "82440", - "codeCommune": "82149", - "libelleAcheminement": "REALVILLE", - "nomCommune": "REALVILLE" + "codePostal": "09120", + "codeCommune": "09324", + "libelleAcheminement": "VARILHES", + "nomCommune": "VARILHES" }, { - "codePostal": "82110", - "codeCommune": "82154", - "libelleAcheminement": "ST AMANS DE PELLAGAL", - "nomCommune": "ST AMANS DE PELLAGAL" + "codePostal": "10190", + "codeCommune": "10263", + "libelleAcheminement": "NEUVILLE SUR VANNE", + "nomCommune": "NEUVILLE SUR VANNE" }, { - "codePostal": "82340", - "codeCommune": "82165", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "09110", + "codeCommune": "09325", + "libelleAcheminement": "VAYCHIS", + "nomCommune": "VAYCHIS" }, { - "codePostal": "82210", - "codeCommune": "82169", - "libelleAcheminement": "ST NICOLAS DE LA GRAVE", - "nomCommune": "ST NICOLAS DE LA GRAVE" + "codePostal": "10160", + "codeCommune": "10266", + "libelleAcheminement": "NOGENT EN OTHE", + "nomCommune": "NOGENT EN OTHE" }, { - "codePostal": "82160", - "codeCommune": "82172", - "libelleAcheminement": "ST PROJET", - "nomCommune": "ST PROJET" + "codePostal": "09250", + "codeCommune": "09330", + "libelleAcheminement": "VERNAUX", + "nomCommune": "VERNAUX" }, { - "codePostal": "82230", - "codeCommune": "82176", - "libelleAcheminement": "LA SALVETAT BELMONTET", - "nomCommune": "LA SALVETAT BELMONTET" + "codePostal": "10700", + "codeCommune": "10273", + "libelleAcheminement": "ORTILLON", + "nomCommune": "ORTILLON" }, { - "codePostal": "82240", - "codeCommune": "82179", - "libelleAcheminement": "SEPTFONDS", - "nomCommune": "SEPTFONDS" + "codePostal": "09120", + "codeCommune": "09340", + "libelleAcheminement": "VIRA", + "nomCommune": "VIRA" }, { - "codePostal": "82500", - "codeCommune": "82180", - "libelleAcheminement": "SERIGNAC", - "nomCommune": "SERIGNAC" + "codePostal": "10210", + "codeCommune": "10278", + "libelleAcheminement": "PARGUES", + "nomCommune": "PARGUES" }, { - "codePostal": "82150", - "codeCommune": "82185", - "libelleAcheminement": "VALEILLES", - "nomCommune": "VALEILLES" + "codePostal": "10190", + "codeCommune": "10003", + "libelleAcheminement": "AIX VILLEMAUR PALIS", + "nomCommune": "AIX VILLEMAUR PALIS" }, { - "codePostal": "83600", - "codeCommune": "83001", - "libelleAcheminement": "LES ADRETS DE L ESTEREL", - "nomCommune": "LES ADRETS DE L ESTEREL" + "codePostal": "10400", + "codeCommune": "10284", + "libelleAcheminement": "PERIGNY LA ROSE", + "nomCommune": "PERIGNY LA ROSE" }, { - "codePostal": "83460", - "codeCommune": "83004", - "libelleAcheminement": "LES ARCS", - "nomCommune": "LES ARCS" + "codePostal": "10190", + "codeCommune": "10003", + "libelleAcheminement": "AIX VILLEMAUR PALIS", + "nomCommune": "AIX VILLEMAUR PALIS" }, { - "codePostal": "83840", - "codeCommune": "83013", - "libelleAcheminement": "LA BASTIDE", - "nomCommune": "LA BASTIDE" + "codePostal": "10500", + "codeCommune": "10286", + "libelleAcheminement": "PETIT MESNIL", + "nomCommune": "PETIT MESNIL" }, { - "codePostal": "83170", - "codeCommune": "83023", - "libelleAcheminement": "BRIGNOLES", - "nomCommune": "BRIGNOLES" + "codePostal": "10700", + "codeCommune": "10006", + "libelleAcheminement": "ARCIS SUR AUBE", + "nomCommune": "ARCIS SUR AUBE" }, { - "codePostal": "83440", - "codeCommune": "83029", - "libelleAcheminement": "CALLIAN", - "nomCommune": "CALLIAN" + "codePostal": "10220", + "codeCommune": "10287", + "libelleAcheminement": "PINEY", + "nomCommune": "PINEY" }, { - "codePostal": "83330", - "codeCommune": "83035", - "libelleAcheminement": "LE CASTELLET", - "nomCommune": "LE CASTELLET" + "codePostal": "10200", + "codeCommune": "10007", + "libelleAcheminement": "ARCONVILLE", + "nomCommune": "ARCONVILLE" }, { - "codePostal": "83330", - "codeCommune": "83035", - "libelleAcheminement": "LE CASTELLET", - "nomCommune": "LE CASTELLET" + "codePostal": "10150", + "codeCommune": "10297", + "libelleAcheminement": "PONT STE MARIE", + "nomCommune": "PONT STE MARIE" }, { - "codePostal": "83170", - "codeCommune": "83037", - "libelleAcheminement": "LA CELLE", - "nomCommune": "LA CELLE" + "codePostal": "10140", + "codeCommune": "10008", + "libelleAcheminement": "ARGANCON", + "nomCommune": "ARGANCON" }, { - "codePostal": "83830", - "codeCommune": "83041", - "libelleAcheminement": "CLAVIERS", - "nomCommune": "CLAVIERS" + "codePostal": "10210", + "codeCommune": "10302", + "libelleAcheminement": "PRASLIN", + "nomCommune": "PRASLIN" }, { - "codePostal": "83570", - "codeCommune": "83046", - "libelleAcheminement": "COTIGNAC", - "nomCommune": "COTIGNAC" + "codePostal": "10200", + "codeCommune": "10012", + "libelleAcheminement": "ARSONVAL", + "nomCommune": "ARSONVAL" }, { - "codePostal": "83560", - "codeCommune": "83052", - "libelleAcheminement": "ESPARRON", - "nomCommune": "ESPARRON" + "codePostal": "10350", + "codeCommune": "10308", + "libelleAcheminement": "PRUNAY BELLEVILLE", + "nomCommune": "PRUNAY BELLEVILLE" }, { - "codePostal": "83440", - "codeCommune": "83055", - "libelleAcheminement": "FAYENCE", - "nomCommune": "FAYENCE" + "codePostal": "10220", + "codeCommune": "10019", + "libelleAcheminement": "VAL D AUZON", + "nomCommune": "VAL D AUZON" }, { - "codePostal": "83600", - "codeCommune": "83061", - "libelleAcheminement": "FREJUS", - "nomCommune": "FREJUS" + "codePostal": "10240", + "codeCommune": "10314", + "libelleAcheminement": "RAMERUPT", + "nomCommune": "RAMERUPT" }, { - "codePostal": "83560", - "codeCommune": "83066", - "libelleAcheminement": "GINASSERVIS", - "nomCommune": "GINASSERVIS" + "codePostal": "10400", + "codeCommune": "10031", + "libelleAcheminement": "BARBUISE", + "nomCommune": "BARBUISE" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "10100", + "codeCommune": "10323", + "libelleAcheminement": "ROMILLY SUR SEINE", + "nomCommune": "ROMILLY SUR SEINE" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "10400", + "codeCommune": "10031", + "libelleAcheminement": "BARBUISE", + "nomCommune": "BARBUISE" }, { - "codePostal": "83980", - "codeCommune": "83070", - "libelleAcheminement": "LE LAVANDOU", - "nomCommune": "LE LAVANDOU" + "codePostal": "10320", + "codeCommune": "10324", + "libelleAcheminement": "RONCENAY", + "nomCommune": "RONCENAY" }, { - "codePostal": "83440", - "codeCommune": "83080", - "libelleAcheminement": "MONS", - "nomCommune": "MONS" + "codePostal": "10200", + "codeCommune": "10033", + "libelleAcheminement": "BAR SUR AUBE", + "nomCommune": "BAR SUR AUBE" }, { - "codePostal": "83470", - "codeCommune": "83089", - "libelleAcheminement": "OLLIERES", - "nomCommune": "OLLIERES" + "codePostal": "10430", + "codeCommune": "10325", + "libelleAcheminement": "ROSIERES PRES TROYES", + "nomCommune": "ROSIERES PRES TROYES" }, { - "codePostal": "83390", - "codeCommune": "83091", - "libelleAcheminement": "PIERREFEU DU VAR", - "nomCommune": "PIERREFEU DU VAR" + "codePostal": "10200", + "codeCommune": "10039", + "libelleAcheminement": "BERGERES", + "nomCommune": "BERGERES" }, { - "codePostal": "83470", - "codeCommune": "83096", - "libelleAcheminement": "POURCIEUX", - "nomCommune": "POURCIEUX" + "codePostal": "10800", + "codeCommune": "10329", + "libelleAcheminement": "ROUILLY ST LOUP", + "nomCommune": "ROUILLY ST LOUP" }, { - "codePostal": "83480", - "codeCommune": "83099", - "libelleAcheminement": "PUGET SUR ARGENS", - "nomCommune": "PUGET SUR ARGENS" + "codePostal": "10200", + "codeCommune": "10048", + "libelleAcheminement": "BLIGNY", + "nomCommune": "BLIGNY" }, { - "codePostal": "83630", - "codeCommune": "83102", - "libelleAcheminement": "REGUSSE", - "nomCommune": "REGUSSE" + "codePostal": "10800", + "codeCommune": "10329", + "libelleAcheminement": "ROUILLY ST LOUP", + "nomCommune": "ROUILLY ST LOUP" }, { - "codePostal": "83560", - "codeCommune": "83104", - "libelleAcheminement": "RIANS", - "nomCommune": "RIANS" + "codePostal": "10800", + "codeCommune": "10049", + "libelleAcheminement": "LES BORDES AUMONT", + "nomCommune": "LES BORDES AUMONT" }, { - "codePostal": "83270", - "codeCommune": "83112", - "libelleAcheminement": "ST CYR SUR MER", - "nomCommune": "ST CYR SUR MER" + "codePostal": "10400", + "codeCommune": "10334", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "83700", - "codeCommune": "83118", - "libelleAcheminement": "ST RAPHAEL", - "nomCommune": "ST RAPHAEL" + "codePostal": "10270", + "codeCommune": "10053", + "libelleAcheminement": "BOURANTON", + "nomCommune": "BOURANTON" }, { - "codePostal": "83690", - "codeCommune": "83121", - "libelleAcheminement": "SALERNES", - "nomCommune": "SALERNES" + "codePostal": "10330", + "codeCommune": "10346", + "libelleAcheminement": "ST LEGER SOUS MARGERIE", + "nomCommune": "ST LEGER SOUS MARGERIE" }, { - "codePostal": "83110", - "codeCommune": "83123", - "libelleAcheminement": "SANARY SUR MER", - "nomCommune": "SANARY SUR MER" + "codePostal": "10340", + "codeCommune": "10058", + "libelleAcheminement": "BRAGELOGNE BEAUVOIR", + "nomCommune": "BRAGELOGNE BEAUVOIR" }, { - "codePostal": "83440", - "codeCommune": "83124", - "libelleAcheminement": "SEILLANS", - "nomCommune": "SEILLANS" + "codePostal": "10180", + "codeCommune": "10349", + "libelleAcheminement": "ST LYE", + "nomCommune": "ST LYE" }, { - "codePostal": "83690", - "codeCommune": "83128", - "libelleAcheminement": "SILLANS LA CASCADE", - "nomCommune": "SILLANS LA CASCADE" + "codePostal": "10600", + "codeCommune": "10081", + "libelleAcheminement": "LA CHAPELLE ST LUC", + "nomCommune": "LA CHAPELLE ST LUC" }, { - "codePostal": "83000", - "codeCommune": "83137", - "libelleAcheminement": "TOULON", - "nomCommune": "TOULON" + "codePostal": "10280", + "codeCommune": "10353", + "libelleAcheminement": "ST MESMIN", + "nomCommune": "ST MESMIN" }, { - "codePostal": "83690", - "codeCommune": "83139", - "libelleAcheminement": "TOURTOUR", - "nomCommune": "TOURTOUR" + "codePostal": "10150", + "codeCommune": "10084", + "libelleAcheminement": "CHARMONT SOUS BARBUISE", + "nomCommune": "CHARMONT SOUS BARBUISE" }, { - "codePostal": "83840", - "codeCommune": "83142", - "libelleAcheminement": "TRIGANCE", - "nomCommune": "TRIGANCE" + "codePostal": "10400", + "codeCommune": "10355", + "libelleAcheminement": "ST NICOLAS LA CHAPELLE", + "nomCommune": "ST NICOLAS LA CHAPELLE" }, { - "codePostal": "83670", - "codeCommune": "83145", - "libelleAcheminement": "VARAGES", - "nomCommune": "VARAGES" + "codePostal": "10380", + "codeCommune": "10086", + "libelleAcheminement": "CHARNY LE BACHOT", + "nomCommune": "CHARNY LE BACHOT" }, { - "codePostal": "83630", - "codeCommune": "83147", - "libelleAcheminement": "VERIGNON", - "nomCommune": "VERIGNON" + "codePostal": "10410", + "codeCommune": "10357", + "libelleAcheminement": "ST PARRES AUX TERTRES", + "nomCommune": "ST PARRES AUX TERTRES" }, { - "codePostal": "83550", - "codeCommune": "83148", - "libelleAcheminement": "VIDAUBAN", - "nomCommune": "VIDAUBAN" + "codePostal": "10170", + "codeCommune": "10090", + "libelleAcheminement": "CHAUCHIGNY", + "nomCommune": "CHAUCHIGNY" }, { - "codePostal": "84210", - "codeCommune": "84001", - "libelleAcheminement": "ALTHEN DES PALUDS", - "nomCommune": "ALTHEN DES PALUDS" + "codePostal": "10300", + "codeCommune": "10362", + "libelleAcheminement": "STE SAVINE", + "nomCommune": "STE SAVINE" }, { - "codePostal": "84570", - "codeCommune": "84018", - "libelleAcheminement": "BLAUVAC", - "nomCommune": "BLAUVAC" + "codePostal": "10240", + "codeCommune": "10091", + "libelleAcheminement": "CHAUDREY", + "nomCommune": "CHAUDREY" }, { - "codePostal": "84110", - "codeCommune": "84022", - "libelleAcheminement": "BUISSON", - "nomCommune": "BUISSON" + "codePostal": "10400", + "codeCommune": "10367", + "libelleAcheminement": "LA SAULSOTTE", + "nomCommune": "LA SAULSOTTE" }, { - "codePostal": "84860", - "codeCommune": "84027", - "libelleAcheminement": "CADEROUSSE", - "nomCommune": "CADEROUSSE" + "codePostal": "10110", + "codeCommune": "10097", + "libelleAcheminement": "CHERVEY", + "nomCommune": "CHERVEY" }, { - "codePostal": "84200", - "codeCommune": "84031", - "libelleAcheminement": "CARPENTRAS", - "nomCommune": "CARPENTRAS" + "codePostal": "10410", + "codeCommune": "10375", + "libelleAcheminement": "THENNELIERES", + "nomCommune": "THENNELIERES" }, { - "codePostal": "84300", - "codeCommune": "84035", - "libelleAcheminement": "CAVAILLON", - "nomCommune": "CAVAILLON" + "codePostal": "10390", + "codeCommune": "10100", + "libelleAcheminement": "CLEREY", + "nomCommune": "CLEREY" }, { - "codePostal": "84160", - "codeCommune": "84042", - "libelleAcheminement": "CUCURON", - "nomCommune": "CUCURON" + "codePostal": "10700", + "codeCommune": "10380", + "libelleAcheminement": "TORCY LE PETIT", + "nomCommune": "TORCY LE PETIT" }, { - "codePostal": "84340", - "codeCommune": "84044", - "libelleAcheminement": "ENTRECHAUX", - "nomCommune": "ENTRECHAUX" + "codePostal": "10240", + "codeCommune": "10101", + "libelleAcheminement": "COCLOIS", + "nomCommune": "COCLOIS" }, { - "codePostal": "84110", - "codeCommune": "84045", - "libelleAcheminement": "FAUCON", - "nomCommune": "FAUCON" + "codePostal": "10440", + "codeCommune": "10381", + "libelleAcheminement": "TORVILLIERS", + "nomCommune": "TORVILLIERS" }, { - "codePostal": "84480", - "codeCommune": "84058", - "libelleAcheminement": "LACOSTE", - "nomCommune": "LACOSTE" + "codePostal": "10800", + "codeCommune": "10104", + "libelleAcheminement": "CORMOST", + "nomCommune": "CORMOST" }, { - "codePostal": "84190", - "codeCommune": "84059", - "libelleAcheminement": "LAFARE", - "nomCommune": "LAFARE" + "codePostal": "10140", + "codeCommune": "10384", + "libelleAcheminement": "TRANNES", + "nomCommune": "TRANNES" }, { - "codePostal": "84840", - "codeCommune": "84063", - "libelleAcheminement": "LAMOTTE DU RHONE", - "nomCommune": "LAMOTTE DU RHONE" + "codePostal": "10500", + "codeCommune": "10105", + "libelleAcheminement": "COURCELLES SUR VOIRE", + "nomCommune": "COURCELLES SUR VOIRE" }, { - "codePostal": "84570", - "codeCommune": "84070", - "libelleAcheminement": "MALEMORT DU COMTAT", - "nomCommune": "MALEMORT DU COMTAT" + "codePostal": "10210", + "codeCommune": "10388", + "libelleAcheminement": "TURGY", + "nomCommune": "TURGY" }, { - "codePostal": "84570", - "codeCommune": "84082", - "libelleAcheminement": "MORMOIRON", - "nomCommune": "MORMOIRON" + "codePostal": "10130", + "codeCommune": "10107", + "libelleAcheminement": "COURSAN EN OTHE", + "nomCommune": "COURSAN EN OTHE" }, { - "codePostal": "84240", - "codeCommune": "84090", - "libelleAcheminement": "PEYPIN D AIGUES", - "nomCommune": "PEYPIN D AIGUES" + "codePostal": "10140", + "codeCommune": "10389", + "libelleAcheminement": "UNIENVILLE", + "nomCommune": "UNIENVILLE" }, { - "codePostal": "84360", - "codeCommune": "84093", - "libelleAcheminement": "PUGET", - "nomCommune": "PUGET" + "codePostal": "10360", + "codeCommune": "10119", + "libelleAcheminement": "CUNFIN", + "nomCommune": "CUNFIN" }, { - "codePostal": "84600", - "codeCommune": "84097", - "libelleAcheminement": "RICHERENCHES", - "nomCommune": "RICHERENCHES" + "codePostal": "10500", + "codeCommune": "10393", + "libelleAcheminement": "VALLENTIGNY", + "nomCommune": "VALLENTIGNY" }, { - "codePostal": "84210", - "codeCommune": "84101", - "libelleAcheminement": "LA ROQUE SUR PERNES", - "nomCommune": "LA ROQUE SUR PERNES" + "codePostal": "10240", + "codeCommune": "10121", + "libelleAcheminement": "DAMPIERRE", + "nomCommune": "DAMPIERRE" }, { - "codePostal": "84220", - "codeCommune": "84102", - "libelleAcheminement": "ROUSSILLON", - "nomCommune": "ROUSSILLON" + "codePostal": "10800", + "codeCommune": "10402", + "libelleAcheminement": "LA VENDUE MIGNOT", + "nomCommune": "LA VENDUE MIGNOT" }, { - "codePostal": "84110", - "codeCommune": "84104", - "libelleAcheminement": "SABLET", - "nomCommune": "SABLET" + "codePostal": "10200", + "codeCommune": "10135", + "libelleAcheminement": "ECLANCE", + "nomCommune": "ECLANCE" }, { - "codePostal": "84390", - "codeCommune": "84107", - "libelleAcheminement": "ST CHRISTOL", - "nomCommune": "ST CHRISTOL" + "codePostal": "10380", + "codeCommune": "10408", + "libelleAcheminement": "VIAPRES LE PETIT", + "nomCommune": "VIAPRES LE PETIT" }, { - "codePostal": "84490", - "codeCommune": "84118", - "libelleAcheminement": "ST SATURNIN LES APT", - "nomCommune": "ST SATURNIN LES APT" + "codePostal": "10500", + "codeCommune": "10138", + "libelleAcheminement": "EPAGNE", + "nomCommune": "EPAGNE" }, { - "codePostal": "84390", - "codeCommune": "84120", - "libelleAcheminement": "ST TRINIT", - "nomCommune": "ST TRINIT" + "codePostal": "10600", + "codeCommune": "10409", + "libelleAcheminement": "VILLACERF", + "nomCommune": "VILLACERF" }, { - "codePostal": "84240", - "codeCommune": "84121", - "libelleAcheminement": "SANNES", - "nomCommune": "SANNES" + "codePostal": "10500", + "codeCommune": "10139", + "libelleAcheminement": "EPOTHEMONT", + "nomCommune": "EPOTHEMONT" }, { - "codePostal": "84260", - "codeCommune": "84122", - "libelleAcheminement": "SARRIANS", - "nomCommune": "SARRIANS" + "codePostal": "10410", + "codeCommune": "10412", + "libelleAcheminement": "VILLECHETIF", + "nomCommune": "VILLECHETIF" }, { - "codePostal": "84110", - "codeCommune": "84126", - "libelleAcheminement": "SEGURET", - "nomCommune": "SEGURET" + "codePostal": "10400", + "codeCommune": "10153", + "libelleAcheminement": "FONTAINE MACON", + "nomCommune": "FONTAINE MACON" }, { - "codePostal": "84250", - "codeCommune": "84132", - "libelleAcheminement": "LE THOR", - "nomCommune": "LE THOR" + "codePostal": "10330", + "codeCommune": "10424", + "libelleAcheminement": "VILLERET", + "nomCommune": "VILLERET" }, { - "codePostal": "84240", - "codeCommune": "84133", - "libelleAcheminement": "LA TOUR D AIGUES", - "nomCommune": "LA TOUR D AIGUES" + "codePostal": "10400", + "codeCommune": "10154", + "libelleAcheminement": "FONTENAY DE BOSSERY", + "nomCommune": "FONTENAY DE BOSSERY" }, { - "codePostal": "84270", - "codeCommune": "84141", - "libelleAcheminement": "VEDENE", - "nomCommune": "VEDENE" + "codePostal": "10800", + "codeCommune": "10435", + "libelleAcheminement": "VILLY LE MARECHAL", + "nomCommune": "VILLY LE MARECHAL" }, { - "codePostal": "84240", - "codeCommune": "84151", - "libelleAcheminement": "VITROLLES EN LUBERON", - "nomCommune": "VITROLLES EN LUBERON" + "codePostal": "10110", + "codeCommune": "10159", + "libelleAcheminement": "FRALIGNES", + "nomCommune": "FRALIGNES" }, { - "codePostal": "85430", - "codeCommune": "85008", - "libelleAcheminement": "AUBIGNY LES CLOUZEAUX", - "nomCommune": "AUBIGNY LES CLOUZEAUX" + "codePostal": "10260", + "codeCommune": "10437", + "libelleAcheminement": "VIREY SOUS BAR", + "nomCommune": "VIREY SOUS BAR" }, { - "codePostal": "85200", - "codeCommune": "85009", - "libelleAcheminement": "AUCHAY SUR VENDEE", - "nomCommune": "AUCHAY SUR VENDEE" + "codePostal": "10700", + "codeCommune": "10167", + "libelleAcheminement": "GRANDVILLE", + "nomCommune": "GRANDVILLE" }, { - "codePostal": "85190", - "codeCommune": "85016", - "libelleAcheminement": "BEAULIEU SOUS LA ROCHE", - "nomCommune": "BEAULIEU SOUS LA ROCHE" + "codePostal": "10200", + "codeCommune": "10440", + "libelleAcheminement": "VOIGNY", + "nomCommune": "VOIGNY" }, { - "codePostal": "85170", - "codeCommune": "85019", - "libelleAcheminement": "BELLEVIGNY", - "nomCommune": "BELLEVIGNY" + "codePostal": "10250", + "codeCommune": "10170", + "libelleAcheminement": "GYE SUR SEINE", + "nomCommune": "GYE SUR SEINE" }, { - "codePostal": "85490", - "codeCommune": "85020", - "libelleAcheminement": "BENET", - "nomCommune": "BENET" + "codePostal": "10210", + "codeCommune": "10443", + "libelleAcheminement": "VOUGREY", + "nomCommune": "VOUGREY" }, { - "codePostal": "85560", - "codeCommune": "85022", - "libelleAcheminement": "LE BERNARD", - "nomCommune": "LE BERNARD" + "codePostal": "10500", + "codeCommune": "10171", + "libelleAcheminement": "HAMPIGNY", + "nomCommune": "HAMPIGNY" }, { - "codePostal": "85430", - "codeCommune": "85026", - "libelleAcheminement": "LA BOISSIERE DES LANDES", - "nomCommune": "LA BOISSIERE DES LANDES" + "codePostal": "11600", + "codeCommune": "11011", + "libelleAcheminement": "ARAGON", + "nomCommune": "ARAGON" }, { - "codePostal": "85510", - "codeCommune": "85031", - "libelleAcheminement": "LE BOUPERE", - "nomCommune": "LE BOUPERE" + "codePostal": "10150", + "codeCommune": "10191", + "libelleAcheminement": "LAVAU", + "nomCommune": "LAVAU" }, { - "codePostal": "85480", - "codeCommune": "85034", - "libelleAcheminement": "BOURNEZEAU", - "nomCommune": "BOURNEZEAU" + "codePostal": "11220", + "codeCommune": "11016", + "libelleAcheminement": "ARQUETTES EN VAL", + "nomCommune": "ARQUETTES EN VAL" }, { - "codePostal": "85120", - "codeCommune": "85037", - "libelleAcheminement": "BREUIL BARRET", - "nomCommune": "BREUIL BARRET" + "codePostal": "10150", + "codeCommune": "10191", + "libelleAcheminement": "LAVAU", + "nomCommune": "LAVAU" }, { - "codePostal": "85530", - "codeCommune": "85039", - "libelleAcheminement": "LA BRUFFIERE", - "nomCommune": "LA BRUFFIERE" + "codePostal": "11800", + "codeCommune": "11023", + "libelleAcheminement": "BADENS", + "nomCommune": "BADENS" }, { - "codePostal": "85110", - "codeCommune": "85051", - "libelleAcheminement": "CHANTONNAY", - "nomCommune": "CHANTONNAY" + "codePostal": "10200", + "codeCommune": "10194", + "libelleAcheminement": "LEVIGNY", + "nomCommune": "LEVIGNY" }, { - "codePostal": "85110", - "codeCommune": "85051", - "libelleAcheminement": "CHANTONNAY", - "nomCommune": "CHANTONNAY" + "codePostal": "11100", + "codeCommune": "11024", + "libelleAcheminement": "BAGES", + "nomCommune": "BAGES" }, { - "codePostal": "85400", - "codeCommune": "85058", - "libelleAcheminement": "CHASNAIS", - "nomCommune": "CHASNAIS" + "codePostal": "10140", + "codeCommune": "10200", + "libelleAcheminement": "LA LOGE AUX CHEVRES", + "nomCommune": "LA LOGE AUX CHEVRES" }, { - "codePostal": "85140", - "codeCommune": "85064", - "libelleAcheminement": "CHAUCHE", - "nomCommune": "CHAUCHE" + "codePostal": "11240", + "codeCommune": "11034", + "libelleAcheminement": "BELVEZE DU RAZES", + "nomCommune": "BELVEZE DU RAZES" }, { - "codePostal": "85250", - "codeCommune": "85065", - "libelleAcheminement": "CHAVAGNES EN PAILLERS", - "nomCommune": "CHAVAGNES EN PAILLERS" + "codePostal": "10310", + "codeCommune": "10203", + "libelleAcheminement": "LONGCHAMP SUR AUJON", + "nomCommune": "LONGCHAMP SUR AUJON" }, { - "codePostal": "85220", - "codeCommune": "85071", - "libelleAcheminement": "COMMEQUIERS", - "nomCommune": "COMMEQUIERS" + "codePostal": "11000", + "codeCommune": "11037", + "libelleAcheminement": "BERRIAC", + "nomCommune": "BERRIAC" }, { - "codePostal": "85320", - "codeCommune": "85074", - "libelleAcheminement": "LA COUTURE", - "nomCommune": "LA COUTURE" + "codePostal": "10320", + "codeCommune": "10212", + "libelleAcheminement": "MACHY", + "nomCommune": "MACHY" }, { - "codePostal": "85540", - "codeCommune": "85077", - "libelleAcheminement": "CURZON", - "nomCommune": "CURZON" + "codePostal": "11140", + "codeCommune": "11038", + "libelleAcheminement": "BESSEDE DE SAULT", + "nomCommune": "BESSEDE DE SAULT" }, { - "codePostal": "85200", - "codeCommune": "85080", - "libelleAcheminement": "DOIX LES FONTAINES", - "nomCommune": "DOIX LES FONTAINES" + "codePostal": "10140", + "codeCommune": "10217", + "libelleAcheminement": "MAISON DES CHAMPS", + "nomCommune": "MAISON DES CHAMPS" }, { - "codePostal": "85140", - "codeCommune": "85084", - "libelleAcheminement": "ESSARTS EN BOCAGE", - "nomCommune": "ESSARTS EN BOCAGE" + "codePostal": "11300", + "codeCommune": "11039", + "libelleAcheminement": "LA BEZOLE", + "nomCommune": "LA BEZOLE" }, { - "codePostal": "85280", - "codeCommune": "85089", - "libelleAcheminement": "LA FERRIERE", - "nomCommune": "LA FERRIERE" + "codePostal": "10510", + "codeCommune": "10220", + "libelleAcheminement": "MAIZIERES LA GRANDE PAROISSE", + "nomCommune": "MAIZIERES LA GRANDE PAROISSE" }, { - "codePostal": "85700", - "codeCommune": "85090", - "libelleAcheminement": "SEVREMONT", - "nomCommune": "SEVREMONT" + "codePostal": "11800", + "codeCommune": "11043", + "libelleAcheminement": "BOUILHONNAC", + "nomCommune": "BOUILHONNAC" }, { - "codePostal": "85700", - "codeCommune": "85090", - "libelleAcheminement": "SEVREMONT", - "nomCommune": "SEVREMONT" + "codePostal": "10160", + "codeCommune": "10222", + "libelleAcheminement": "MARAYE EN OTHE", + "nomCommune": "MARAYE EN OTHE" }, { - "codePostal": "85240", - "codeCommune": "85094", - "libelleAcheminement": "FOUSSAIS PAYRE", - "nomCommune": "FOUSSAIS PAYRE" + "codePostal": "11330", + "codeCommune": "11044", + "libelleAcheminement": "BOUISSE", + "nomCommune": "BOUISSE" }, { - "codePostal": "85190", - "codeCommune": "85098", - "libelleAcheminement": "LA GENETOUZE", - "nomCommune": "LA GENETOUZE" + "codePostal": "10110", + "codeCommune": "10226", + "libelleAcheminement": "MAROLLES LES BAILLY", + "nomCommune": "MAROLLES LES BAILLY" }, { - "codePostal": "85150", - "codeCommune": "85099", - "libelleAcheminement": "LE GIROUARD", - "nomCommune": "LE GIROUARD" + "codePostal": "11270", + "codeCommune": "11051", + "libelleAcheminement": "BREZILHAC", + "nomCommune": "BREZILHAC" }, { - "codePostal": "85670", - "codeCommune": "85102", - "libelleAcheminement": "GRAND LANDES", - "nomCommune": "GRAND LANDES" + "codePostal": "10190", + "codeCommune": "10240", + "libelleAcheminement": "MESSON", + "nomCommune": "MESSON" }, { - "codePostal": "85580", - "codeCommune": "85104", - "libelleAcheminement": "GRUES", - "nomCommune": "GRUES" + "codePostal": "11190", + "codeCommune": "11055", + "libelleAcheminement": "BUGARACH", + "nomCommune": "BUGARACH" }, { - "codePostal": "85150", - "codeCommune": "85118", - "libelleAcheminement": "LANDERONDE", - "nomCommune": "LANDERONDE" + "codePostal": "10500", + "codeCommune": "10243", + "libelleAcheminement": "MOLINS SUR AUBE", + "nomCommune": "MOLINS SUR AUBE" }, { - "codePostal": "85370", - "codeCommune": "85121", - "libelleAcheminement": "LE LANGON", - "nomCommune": "LE LANGON" + "codePostal": "11240", + "codeCommune": "11059", + "libelleAcheminement": "CAILHAVEL", + "nomCommune": "CAILHAVEL" }, { - "codePostal": "85560", - "codeCommune": "85127", - "libelleAcheminement": "LONGEVILLE SUR MER", - "nomCommune": "LONGEVILLE SUR MER" + "codePostal": "10400", + "codeCommune": "10254", + "libelleAcheminement": "MONTPOTHIER", + "nomCommune": "MONTPOTHIER" }, { - "codePostal": "85170", - "codeCommune": "85129", - "libelleAcheminement": "LES LUCS SUR BOULOGNE", - "nomCommune": "LES LUCS SUR BOULOGNE" + "codePostal": "11140", + "codeCommune": "11062", + "libelleAcheminement": "CAMPAGNA DE SAULT", + "nomCommune": "CAMPAGNA DE SAULT" }, { - "codePostal": "85420", - "codeCommune": "85133", - "libelleAcheminement": "MAILLEZAIS", - "nomCommune": "MAILLEZAIS" + "codePostal": "10500", + "codeCommune": "10258", + "libelleAcheminement": "MORVILLIERS", + "nomCommune": "MORVILLIERS" }, { - "codePostal": "85500", - "codeCommune": "85144", - "libelleAcheminement": "MESNARD LA BAROTIERE", - "nomCommune": "MESNARD LA BAROTIERE" + "codePostal": "11000", + "codeCommune": "11069", + "libelleAcheminement": "CARCASSONNE", + "nomCommune": "CARCASSONNE" }, { - "codePostal": "85200", - "codeCommune": "85148", - "libelleAcheminement": "MONTREUIL", - "nomCommune": "MONTREUIL" + "codePostal": "10400", + "codeCommune": "10259", + "libelleAcheminement": "LA MOTTE TILLY", + "nomCommune": "LA MOTTE TILLY" }, { - "codePostal": "85450", - "codeCommune": "85149", - "libelleAcheminement": "MOREILLES", - "nomCommune": "MOREILLES" + "codePostal": "11190", + "codeCommune": "11073", + "libelleAcheminement": "CASSAIGNES", + "nomCommune": "CASSAIGNES" }, { - "codePostal": "85150", - "codeCommune": "85152", - "libelleAcheminement": "LES ACHARDS", - "nomCommune": "LES ACHARDS" + "codePostal": "10250", + "codeCommune": "10261", + "libelleAcheminement": "MUSSY SUR SEINE", + "nomCommune": "MUSSY SUR SEINE" }, { - "codePostal": "85150", - "codeCommune": "85152", - "libelleAcheminement": "LES ACHARDS", - "nomCommune": "LES ACHARDS" + "codePostal": "11400", + "codeCommune": "11076", + "libelleAcheminement": "CASTELNAUDARY", + "nomCommune": "CASTELNAUDARY" }, { - "codePostal": "85390", - "codeCommune": "85154", - "libelleAcheminement": "MOUILLERON ST GERMAIN", - "nomCommune": "MOUILLERON ST GERMAIN" + "codePostal": "10250", + "codeCommune": "10262", + "libelleAcheminement": "NEUVILLE SUR SEINE", + "nomCommune": "NEUVILLE SUR SEINE" }, { - "codePostal": "85000", - "codeCommune": "85155", - "libelleAcheminement": "MOUILLERON LE CAPTIF", - "nomCommune": "MOUILLERON LE CAPTIF" + "codePostal": "11390", + "codeCommune": "11079", + "libelleAcheminement": "CAUDEBRONDE", + "nomCommune": "CAUDEBRONDE" }, { - "codePostal": "85320", - "codeCommune": "85157", - "libelleAcheminement": "MOUTIERS SUR LE LAY", - "nomCommune": "MOUTIERS SUR LE LAY" + "codePostal": "10360", + "codeCommune": "10264", + "libelleAcheminement": "NOE LES MALLETS", + "nomCommune": "NOE LES MALLETS" }, { - "codePostal": "85240", - "codeCommune": "85162", - "libelleAcheminement": "RIVES D AUTISE", - "nomCommune": "RIVES D AUTISE" + "codePostal": "11510", + "codeCommune": "11086", + "libelleAcheminement": "CAVES", + "nomCommune": "CAVES" }, { - "codePostal": "85420", - "codeCommune": "85162", - "libelleAcheminement": "RIVES D AUTISE", - "nomCommune": "RIVES D AUTISE" + "codePostal": "10330", + "codeCommune": "10279", + "libelleAcheminement": "PARS LES CHAVANGES", + "nomCommune": "PARS LES CHAVANGES" }, { - "codePostal": "85200", - "codeCommune": "85167", - "libelleAcheminement": "L ORBRIE", - "nomCommune": "L ORBRIE" + "codePostal": "11340", + "codeCommune": "11096", + "libelleAcheminement": "COMUS", + "nomCommune": "COMUS" }, { - "codePostal": "85670", - "codeCommune": "85169", - "libelleAcheminement": "PALLUAU", - "nomCommune": "PALLUAU" + "codePostal": "10350", + "codeCommune": "10281", + "libelleAcheminement": "LE PAVILLON STE JULIE", + "nomCommune": "LE PAVILLON STE JULIE" }, { - "codePostal": "85240", - "codeCommune": "85184", - "libelleAcheminement": "PUY DE SERRE", - "nomCommune": "PUY DE SERRE" + "codePostal": "11410", + "codeCommune": "11114", + "libelleAcheminement": "CUMIES", + "nomCommune": "CUMIES" }, { - "codePostal": "85450", - "codeCommune": "85185", - "libelleAcheminement": "PUYRAVAULT", - "nomCommune": "PUYRAVAULT" + "codePostal": "10250", + "codeCommune": "10288", + "libelleAcheminement": "PLAINES ST LANGE", + "nomCommune": "PLAINES ST LANGE" }, { - "codePostal": "85180", - "codeCommune": "85194", - "libelleAcheminement": "LES SABLES D OLONNE", - "nomCommune": "LES SABLES D OLONNE" + "codePostal": "11590", + "codeCommune": "11116", + "libelleAcheminement": "CUXAC D AUDE", + "nomCommune": "CUXAC D AUDE" }, { - "codePostal": "85340", - "codeCommune": "85194", - "libelleAcheminement": "LES SABLES D OLONNE", - "nomCommune": "LES SABLES D OLONNE" + "codePostal": "10110", + "codeCommune": "10294", + "libelleAcheminement": "POLIGNY", + "nomCommune": "POLIGNY" }, { - "codePostal": "85540", - "codeCommune": "85200", - "libelleAcheminement": "ST AVAUGOURD DES LANDES", - "nomCommune": "ST AVAUGOURD DES LANDES" + "codePostal": "11300", + "codeCommune": "11119", + "libelleAcheminement": "LA DIGNE D AMONT", + "nomCommune": "LA DIGNE D AMONT" }, { - "codePostal": "85540", - "codeCommune": "85206", - "libelleAcheminement": "ST CYR EN TALMONDAIS", - "nomCommune": "ST CYR EN TALMONDAIS" + "codePostal": "10500", + "codeCommune": "10303", + "libelleAcheminement": "PRECY NOTRE DAME", + "nomCommune": "PRECY NOTRE DAME" }, { - "codePostal": "85170", - "codeCommune": "85208", - "libelleAcheminement": "ST DENIS LA CHEVASSE", - "nomCommune": "ST DENIS LA CHEVASSE" + "codePostal": "11360", + "codeCommune": "11125", + "libelleAcheminement": "EMBRES ET CASTELMAURE", + "nomCommune": "EMBRES ET CASTELMAURE" }, { - "codePostal": "85250", - "codeCommune": "85215", - "libelleAcheminement": "ST FULGENT", - "nomCommune": "ST FULGENT" + "codePostal": "10500", + "codeCommune": "10326", + "libelleAcheminement": "ROSNAY L HOPITAL", + "nomCommune": "ROSNAY L HOPITAL" }, { - "codePostal": "85470", - "codeCommune": "85243", - "libelleAcheminement": "BREM SUR MER", - "nomCommune": "BREM SUR MER" + "codePostal": "11220", + "codeCommune": "11133", + "libelleAcheminement": "FAJAC EN VAL", + "nomCommune": "FAJAC EN VAL" }, { - "codePostal": "85320", - "codeCommune": "85261", - "libelleAcheminement": "STE PEXINE", - "nomCommune": "STE PEXINE" + "codePostal": "10200", + "codeCommune": "10330", + "libelleAcheminement": "ROUVRES LES VIGNES", + "nomCommune": "ROUVRES LES VIGNES" }, { - "codePostal": "85660", - "codeCommune": "85262", - "libelleAcheminement": "ST PHILBERT DE BOUAINE", - "nomCommune": "ST PHILBERT DE BOUAINE" + "codePostal": "11400", + "codeCommune": "11149", + "libelleAcheminement": "FONTERS DU RAZES", + "nomCommune": "FONTERS DU RAZES" }, { - "codePostal": "85120", - "codeCommune": "85264", - "libelleAcheminement": "ST PIERRE DU CHEMIN", - "nomCommune": "ST PIERRE DU CHEMIN" + "codePostal": "10260", + "codeCommune": "10331", + "libelleAcheminement": "RUMILLY LES VAUDES", + "nomCommune": "RUMILLY LES VAUDES" }, { - "codePostal": "85110", - "codeCommune": "85266", - "libelleAcheminement": "ST PROUANT", - "nomCommune": "ST PROUANT" + "codePostal": "11600", + "codeCommune": "11156", + "libelleAcheminement": "FRAISSE CABARDES", + "nomCommune": "FRAISSE CABARDES" }, { - "codePostal": "85450", - "codeCommune": "85267", - "libelleAcheminement": "STE RADEGONDE DES NOYERS", - "nomCommune": "STE RADEGONDE DES NOYERS" + "codePostal": "10500", + "codeCommune": "10337", + "libelleAcheminement": "ST CHRISTOPHE DODINICOURT", + "nomCommune": "ST CHRISTOPHE DODINICOURT" }, { - "codePostal": "85410", - "codeCommune": "85271", - "libelleAcheminement": "ST SULPICE EN PAREDS", - "nomCommune": "ST SULPICE EN PAREDS" + "codePostal": "11410", + "codeCommune": "11166", + "libelleAcheminement": "GOURVIEILLE", + "nomCommune": "GOURVIEILLE" }, { - "codePostal": "85440", - "codeCommune": "85288", - "libelleAcheminement": "TALMONT ST HILAIRE", - "nomCommune": "TALMONT ST HILAIRE" + "codePostal": "10120", + "codeCommune": "10340", + "libelleAcheminement": "ST GERMAIN", + "nomCommune": "ST GERMAIN" }, { - "codePostal": "85210", - "codeCommune": "85290", - "libelleAcheminement": "THIRE", - "nomCommune": "THIRE" + "codePostal": "11200", + "codeCommune": "11172", + "libelleAcheminement": "HOMPS", + "nomCommune": "HOMPS" }, { - "codePostal": "85150", - "codeCommune": "85298", - "libelleAcheminement": "VAIRE", - "nomCommune": "VAIRE" + "codePostal": "10320", + "codeCommune": "10342", + "libelleAcheminement": "ST JEAN DE BONNEVAL", + "nomCommune": "ST JEAN DE BONNEVAL" }, { - "codePostal": "85250", - "codeCommune": "85301", - "libelleAcheminement": "VENDRENNES", - "nomCommune": "VENDRENNES" + "codePostal": "11240", + "codeCommune": "11173", + "libelleAcheminement": "HOUNOUX", + "nomCommune": "HOUNOUX" }, { - "codePostal": "85500", - "codeCommune": "85302", - "libelleAcheminement": "CHANVERRIE", - "nomCommune": "CHANVERRIE" + "codePostal": "10800", + "codeCommune": "10343", + "libelleAcheminement": "ST JULIEN LES VILLAS", + "nomCommune": "ST JULIEN LES VILLAS" }, { - "codePostal": "86100", - "codeCommune": "86007", - "libelleAcheminement": "ANTRAN", - "nomCommune": "ANTRAN" + "codePostal": "11380", + "codeCommune": "11174", + "libelleAcheminement": "LES ILHES", + "nomCommune": "LES ILHES" }, { - "codePostal": "86490", - "codeCommune": "86019", - "libelleAcheminement": "BEAUMONT ST CYR", - "nomCommune": "BEAUMONT ST CYR" + "codePostal": "10150", + "codeCommune": "10352", + "libelleAcheminement": "STE MAURE", + "nomCommune": "STE MAURE" }, { - "codePostal": "86120", - "codeCommune": "86022", - "libelleAcheminement": "BERRIE", - "nomCommune": "BERRIE" + "codePostal": "11400", + "codeCommune": "11175", + "libelleAcheminement": "ISSEL", + "nomCommune": "ISSEL" }, { - "codePostal": "86580", - "codeCommune": "86027", - "libelleAcheminement": "BIARD", - "nomCommune": "BIARD" + "codePostal": "10700", + "codeCommune": "10354", + "libelleAcheminement": "ST NABORD SUR AUBE", + "nomCommune": "ST NABORD SUR AUBE" }, { - "codePostal": "86210", - "codeCommune": "86032", - "libelleAcheminement": "BONNEUIL MATOURS", - "nomCommune": "BONNEUIL MATOURS" + "codePostal": "11140", + "codeCommune": "11177", + "libelleAcheminement": "JOUCOU", + "nomCommune": "JOUCOU" }, { - "codePostal": "86190", - "codeCommune": "86050", - "libelleAcheminement": "CHALANDRAY", - "nomCommune": "CHALANDRAY" + "codePostal": "10120", + "codeCommune": "10360", + "libelleAcheminement": "ST POUANGE", + "nomCommune": "ST POUANGE" }, { - "codePostal": "86160", - "codeCommune": "86052", - "libelleAcheminement": "CHAMPAGNE ST HILAIRE", - "nomCommune": "CHAMPAGNE ST HILAIRE" + "codePostal": "11380", + "codeCommune": "11180", + "libelleAcheminement": "LABASTIDE ESPARBAIRENQUE", + "nomCommune": "LABASTIDE ESPARBAIRENQUE" }, { - "codePostal": "86300", - "codeCommune": "86070", - "libelleAcheminement": "CHAUVIGNY", - "nomCommune": "CHAUVIGNY" + "codePostal": "10360", + "codeCommune": "10364", + "libelleAcheminement": "ST USAGE", + "nomCommune": "ST USAGE" }, { - "codePostal": "86700", - "codeCommune": "86082", - "libelleAcheminement": "VALENCE EN POITOU", - "nomCommune": "VALENCE EN POITOU" + "codePostal": "11310", + "codeCommune": "11182", + "libelleAcheminement": "LACOMBE", + "nomCommune": "LACOMBE" }, { - "codePostal": "86700", - "codeCommune": "86082", - "libelleAcheminement": "VALENCE EN POITOU", - "nomCommune": "VALENCE EN POITOU" + "codePostal": "10600", + "codeCommune": "10368", + "libelleAcheminement": "SAVIERES", + "nomCommune": "SAVIERES" }, { - "codePostal": "86410", - "codeCommune": "86094", - "libelleAcheminement": "DIENNE", - "nomCommune": "DIENNE" + "codePostal": "11420", + "codeCommune": "11184", + "libelleAcheminement": "LAFAGE", + "nomCommune": "LAFAGE" }, { - "codePostal": "86340", - "codeCommune": "86099", - "libelleAcheminement": "FLEURE", - "nomCommune": "FLEURE" + "codePostal": "10200", + "codeCommune": "10377", + "libelleAcheminement": "THIL", + "nomCommune": "THIL" }, { - "codePostal": "86150", - "codeCommune": "86112", - "libelleAcheminement": "L ISLE JOURDAIN", - "nomCommune": "L ISLE JOURDAIN" + "codePostal": "11390", + "codeCommune": "11189", + "libelleAcheminement": "LAPRADE", + "nomCommune": "LAPRADE" }, { - "codePostal": "86380", - "codeCommune": "86115", - "libelleAcheminement": "JAUNAY MARIGNY", - "nomCommune": "JAUNAY MARIGNY" + "codePostal": "10700", + "codeCommune": "10379", + "libelleAcheminement": "TORCY LE GRAND", + "nomCommune": "TORCY LE GRAND" }, { - "codePostal": "86500", - "codeCommune": "86117", - "libelleAcheminement": "JOUHET", - "nomCommune": "JOUHET" + "codePostal": "11600", + "codeCommune": "11205", + "libelleAcheminement": "LIMOUSIS", + "nomCommune": "LIMOUSIS" }, { - "codePostal": "86190", - "codeCommune": "86121", - "libelleAcheminement": "LATILLE", - "nomCommune": "LATILLE" + "codePostal": "10290", + "codeCommune": "10383", + "libelleAcheminement": "TRANCAULT", + "nomCommune": "TRANCAULT" }, { - "codePostal": "86800", - "codeCommune": "86124", - "libelleAcheminement": "LAVOUX", - "nomCommune": "LAVOUX" + "codePostal": "11300", + "codeCommune": "11207", + "libelleAcheminement": "LOUPIA", + "nomCommune": "LOUPIA" }, { - "codePostal": "86140", - "codeCommune": "86128", - "libelleAcheminement": "LENCLOITRE", - "nomCommune": "LENCLOITRE" + "codePostal": "10700", + "codeCommune": "10386", + "libelleAcheminement": "TROUANS", + "nomCommune": "TROUANS" }, { - "codePostal": "86410", - "codeCommune": "86131", - "libelleAcheminement": "LHOMMAIZE", - "nomCommune": "LHOMMAIZE" + "codePostal": "11600", + "codeCommune": "11215", + "libelleAcheminement": "MALVES EN MINERVOIS", + "nomCommune": "MALVES EN MINERVOIS" }, { - "codePostal": "86800", - "codeCommune": "86135", - "libelleAcheminement": "LINIERS", - "nomCommune": "LINIERS" + "codePostal": "10150", + "codeCommune": "10391", + "libelleAcheminement": "VAILLY", + "nomCommune": "VAILLY" }, { - "codePostal": "86320", - "codeCommune": "86153", - "libelleAcheminement": "MAZEROLLES", - "nomCommune": "MAZEROLLES" + "codePostal": "11380", + "codeCommune": "11222", + "libelleAcheminement": "MAS CABARDES", + "nomCommune": "MAS CABARDES" }, { - "codePostal": "86110", - "codeCommune": "86160", - "libelleAcheminement": "MIREBEAU", - "nomCommune": "MIREBEAU" + "codePostal": "10140", + "codeCommune": "10397", + "libelleAcheminement": "VAUCHONVILLIERS", + "nomCommune": "VAUCHONVILLIERS" }, { - "codePostal": "86360", - "codeCommune": "86163", - "libelleAcheminement": "MONTAMISE", - "nomCommune": "MONTAMISE" + "codePostal": "11570", + "codeCommune": "11223", + "libelleAcheminement": "MAS DES COURS", + "nomCommune": "MAS DES COURS" }, { - "codePostal": "86500", - "codeCommune": "86170", - "libelleAcheminement": "MOULISMES", - "nomCommune": "MOULISMES" + "codePostal": "10360", + "codeCommune": "10404", + "libelleAcheminement": "VERPILLIERES SUR OURCE", + "nomCommune": "VERPILLIERES SUR OURCE" }, { - "codePostal": "86530", - "codeCommune": "86174", - "libelleAcheminement": "NAINTRE", - "nomCommune": "NAINTRE" + "codePostal": "11240", + "codeCommune": "11228", + "libelleAcheminement": "MAZEROLLES DU RAZES", + "nomCommune": "MAZEROLLES DU RAZES" }, { - "codePostal": "86230", - "codeCommune": "86182", - "libelleAcheminement": "ORCHES", - "nomCommune": "ORCHES" + "codePostal": "10500", + "codeCommune": "10411", + "libelleAcheminement": "LA VILLE AUX BOIS", + "nomCommune": "LA VILLE AUX BOIS" }, { - "codePostal": "86380", - "codeCommune": "86184", - "libelleAcheminement": "OUZILLY", - "nomCommune": "OUZILLY" + "codePostal": "11410", + "codeCommune": "11238", + "libelleAcheminement": "MOLLEVILLE", + "nomCommune": "MOLLEVILLE" }, { - "codePostal": "86350", - "codeCommune": "86189", - "libelleAcheminement": "PAYROUX", - "nomCommune": "PAYROUX" + "codePostal": "10350", + "codeCommune": "10414", + "libelleAcheminement": "VILLELOUP", + "nomCommune": "VILLELOUP" }, { - "codePostal": "86500", - "codeCommune": "86191", - "libelleAcheminement": "PINDRAY", - "nomCommune": "PINDRAY" + "codePostal": "11330", + "codeCommune": "11245", + "libelleAcheminement": "MONTGAILLARD", + "nomCommune": "MONTGAILLARD" }, { - "codePostal": "86120", - "codeCommune": "86196", - "libelleAcheminement": "POUANCAY", - "nomCommune": "POUANCAY" + "codePostal": "10260", + "codeCommune": "10419", + "libelleAcheminement": "VILLEMOYENNE", + "nomCommune": "VILLEMOYENNE" }, { - "codePostal": "86200", - "codeCommune": "86197", - "libelleAcheminement": "POUANT", - "nomCommune": "POUANT" + "codePostal": "11800", + "codeCommune": "11248", + "libelleAcheminement": "MONTIRAT", + "nomCommune": "MONTIRAT" }, { - "codePostal": "86800", - "codeCommune": "86198", - "libelleAcheminement": "POUILLE", - "nomCommune": "POUILLE" + "codePostal": "10370", + "codeCommune": "10420", + "libelleAcheminement": "VILLENAUXE LA GRANDE", + "nomCommune": "VILLENAUXE LA GRANDE" }, { - "codePostal": "86120", - "codeCommune": "86206", - "libelleAcheminement": "RASLAY", - "nomCommune": "RASLAY" + "codePostal": "11100", + "codeCommune": "11255", + "libelleAcheminement": "MONTREDON DES CORBIERES", + "nomCommune": "MONTREDON DES CORBIERES" }, { - "codePostal": "86120", - "codeCommune": "86210", - "libelleAcheminement": "ROIFFE", - "nomCommune": "ROIFFE" + "codePostal": "10400", + "codeCommune": "10421", + "libelleAcheminement": "LA VILLENEUVE AU CHATELOT", + "nomCommune": "LA VILLENEUVE AU CHATELOT" }, { - "codePostal": "86700", - "codeCommune": "86211", - "libelleAcheminement": "ROMAGNE", - "nomCommune": "ROMAGNE" + "codePostal": "11170", + "codeCommune": "11259", + "libelleAcheminement": "MOUSSOULENS", + "nomCommune": "MOUSSOULENS" }, { - "codePostal": "86130", - "codeCommune": "86222", - "libelleAcheminement": "ST GEORGES LES BAILLARGEAUX", - "nomCommune": "ST GEORGES LES BAILLARGEAUX" + "codePostal": "10700", + "codeCommune": "10430", + "libelleAcheminement": "VILLIERS HERBISSE", + "nomCommune": "VILLIERS HERBISSE" }, { - "codePostal": "86200", - "codeCommune": "86227", - "libelleAcheminement": "ST LAON", - "nomCommune": "ST LAON" + "codePostal": "11100", + "codeCommune": "11262", + "libelleAcheminement": "NARBONNE", + "nomCommune": "NARBONNE" }, { - "codePostal": "86300", - "codeCommune": "86233", - "libelleAcheminement": "VALDIVIENNE", - "nomCommune": "VALDIVIENNE" + "codePostal": "10130", + "codeCommune": "10441", + "libelleAcheminement": "VOSNON", + "nomCommune": "VOSNON" }, { - "codePostal": "86600", - "codeCommune": "86253", - "libelleAcheminement": "SANXAY", - "nomCommune": "SANXAY" + "codePostal": "11270", + "codeCommune": "11268", + "libelleAcheminement": "ORSANS", + "nomCommune": "ORSANS" }, { - "codePostal": "86160", - "codeCommune": "86264", - "libelleAcheminement": "SOMMIERES DU CLAIN", - "nomCommune": "SOMMIERES DU CLAIN" + "codePostal": "11110", + "codeCommune": "11014", + "libelleAcheminement": "ARMISSAN", + "nomCommune": "ARMISSAN" }, { - "codePostal": "86800", - "codeCommune": "86268", - "libelleAcheminement": "TERCE", - "nomCommune": "TERCE" + "codePostal": "11590", + "codeCommune": "11269", + "libelleAcheminement": "OUVEILLAN", + "nomCommune": "OUVEILLAN" }, { - "codePostal": "86350", - "codeCommune": "86276", - "libelleAcheminement": "USSON DU POITOU", - "nomCommune": "USSON DU POITOU" + "codePostal": "11140", + "codeCommune": "11017", + "libelleAcheminement": "ARTIGUES", + "nomCommune": "ARTIGUES" }, { - "codePostal": "86110", - "codeCommune": "86281", - "libelleAcheminement": "ST MARTIN LA PALLU", - "nomCommune": "ST MARTIN LA PALLU" + "codePostal": "11570", + "codeCommune": "11272", + "libelleAcheminement": "PALAJA", + "nomCommune": "PALAJA" }, { - "codePostal": "86170", - "codeCommune": "86281", - "libelleAcheminement": "ST MARTIN LA PALLU", - "nomCommune": "ST MARTIN LA PALLU" + "codePostal": "11140", + "codeCommune": "11031", + "libelleAcheminement": "BELFORT SUR REBENTY", + "nomCommune": "BELFORT SUR REBENTY" }, { - "codePostal": "86340", - "codeCommune": "86284", - "libelleAcheminement": "VERNON", - "nomCommune": "VERNON" + "codePostal": "11200", + "codeCommune": "11273", + "libelleAcheminement": "PARAZA", + "nomCommune": "PARAZA" }, { - "codePostal": "86340", - "codeCommune": "86290", - "libelleAcheminement": "LA VILLEDIEU DU CLAIN", - "nomCommune": "LA VILLEDIEU DU CLAIN" + "codePostal": "11240", + "codeCommune": "11032", + "libelleAcheminement": "BELLEGARDE DU RAZES", + "nomCommune": "BELLEGARDE DU RAZES" }, { - "codePostal": "86170", - "codeCommune": "86300", - "libelleAcheminement": "YVERSAY", - "nomCommune": "YVERSAY" + "codePostal": "11420", + "codeCommune": "11278", + "libelleAcheminement": "PECH LUNA", + "nomCommune": "PECH LUNA" }, { - "codePostal": "87250", - "codeCommune": "87014", - "libelleAcheminement": "BESSINES SUR GARTEMPE", - "nomCommune": "BESSINES SUR GARTEMPE" + "codePostal": "11420", + "codeCommune": "11033", + "libelleAcheminement": "BELPECH", + "nomCommune": "BELPECH" }, { - "codePostal": "87250", - "codeCommune": "87014", - "libelleAcheminement": "BESSINES SUR GARTEMPE", - "nomCommune": "BESSINES SUR GARTEMPE" + "codePostal": "11700", + "codeCommune": "11280", + "libelleAcheminement": "PEPIEUX", + "nomCommune": "PEPIEUX" }, { - "codePostal": "87300", - "codeCommune": "87017", - "libelleAcheminement": "BLANZAC", - "nomCommune": "BLANZAC" + "codePostal": "11140", + "codeCommune": "11047", + "libelleAcheminement": "LE BOUSQUET", + "nomCommune": "LE BOUSQUET" }, { - "codePostal": "87230", - "codeCommune": "87027", - "libelleAcheminement": "BUSSIERE GALANT", - "nomCommune": "BUSSIERE GALANT" + "codePostal": "11150", + "codeCommune": "11281", + "libelleAcheminement": "PEXIORA", + "nomCommune": "PEXIORA" }, { - "codePostal": "87320", - "codeCommune": "87028", - "libelleAcheminement": "VAL D OIRE ET GARTEMPE", - "nomCommune": "VAL D OIRE ET GARTEMPE" + "codePostal": "11150", + "codeCommune": "11049", + "libelleAcheminement": "BRAM", + "nomCommune": "BRAM" }, { - "codePostal": "87140", - "codeCommune": "87033", - "libelleAcheminement": "CHAMBORET", - "nomCommune": "CHAMBORET" + "codePostal": "11300", + "codeCommune": "11289", + "libelleAcheminement": "PIEUSSE", + "nomCommune": "PIEUSSE" }, { - "codePostal": "87270", - "codeCommune": "87038", - "libelleAcheminement": "CHAPTELAT", - "nomCommune": "CHAPTELAT" + "codePostal": "11420", + "codeCommune": "11057", + "libelleAcheminement": "CAHUZAC", + "nomCommune": "CAHUZAC" }, { - "codePostal": "87310", - "codeCommune": "87046", - "libelleAcheminement": "COGNAC LA FORET", - "nomCommune": "COGNAC LA FORET" + "codePostal": "11400", + "codeCommune": "11292", + "libelleAcheminement": "LA POMAREDE", + "nomCommune": "LA POMAREDE" }, { - "codePostal": "87140", - "codeCommune": "87047", - "libelleAcheminement": "COMPREIGNAC", - "nomCommune": "COMPREIGNAC" + "codePostal": "11240", + "codeCommune": "11058", + "libelleAcheminement": "CAILHAU", + "nomCommune": "CAILHAU" }, { - "codePostal": "87120", - "codeCommune": "87058", - "libelleAcheminement": "DOMPS", - "nomCommune": "DOMPS" + "codePostal": "11140", + "codeCommune": "11302", + "libelleAcheminement": "PUILAURENS", + "nomCommune": "PUILAURENS" }, { - "codePostal": "87210", - "codeCommune": "87059", - "libelleAcheminement": "LE DORAT", - "nomCommune": "LE DORAT" + "codePostal": "11260", + "codeCommune": "11063", + "libelleAcheminement": "CAMPAGNE SUR AUDE", + "nomCommune": "CAMPAGNE SUR AUDE" }, { - "codePostal": "87250", - "codeCommune": "87067", - "libelleAcheminement": "FOLLES", - "nomCommune": "FOLLES" + "codePostal": "11500", + "codeCommune": "11306", + "libelleAcheminement": "QUIRBAJOU", + "nomCommune": "QUIRBAJOU" }, { - "codePostal": "87170", - "codeCommune": "87075", - "libelleAcheminement": "ISLE", - "nomCommune": "ISLE" + "codePostal": "11160", + "codeCommune": "11075", + "libelleAcheminement": "CASTANS", + "nomCommune": "CASTANS" }, { - "codePostal": "87370", - "codeCommune": "87076", - "libelleAcheminement": "JABREILLES LES BORDES", - "nomCommune": "JABREILLES LES BORDES" + "codePostal": "11190", + "codeCommune": "11310", + "libelleAcheminement": "RENNES LES BAINS", + "nomCommune": "RENNES LES BAINS" }, { - "codePostal": "87890", - "codeCommune": "87080", - "libelleAcheminement": "JOUAC", - "nomCommune": "JOUAC" + "codePostal": "11700", + "codeCommune": "11077", + "libelleAcheminement": "CASTELNAU D AUDE", + "nomCommune": "CASTELNAU D AUDE" }, { - "codePostal": "87500", - "codeCommune": "87082", - "libelleAcheminement": "LADIGNAC LE LONG", - "nomCommune": "LADIGNAC LE LONG" + "codePostal": "11230", + "codeCommune": "11316", + "libelleAcheminement": "RIVEL", + "nomCommune": "RIVEL" }, { - "codePostal": "87100", - "codeCommune": "87085", - "libelleAcheminement": "LIMOGES", - "nomCommune": "LIMOGES" + "codePostal": "11230", + "codeCommune": "11080", + "libelleAcheminement": "VAL DE LAMBRONNE", + "nomCommune": "VAL DE LAMBRONNE" }, { - "codePostal": "87280", - "codeCommune": "87085", - "libelleAcheminement": "LIMOGES", - "nomCommune": "LIMOGES" + "codePostal": "11140", + "codeCommune": "11317", + "libelleAcheminement": "RODOME", + "nomCommune": "RODOME" }, { - "codePostal": "87380", - "codeCommune": "87088", - "libelleAcheminement": "MAGNAC BOURG", - "nomCommune": "MAGNAC BOURG" + "codePostal": "11250", + "codeCommune": "11082", + "libelleAcheminement": "CAUNETTE SUR LAUQUET", + "nomCommune": "CAUNETTE SUR LAUQUET" }, { - "codePostal": "87190", - "codeCommune": "87089", - "libelleAcheminement": "MAGNAC LAVAL", - "nomCommune": "MAGNAC LAVAL" + "codePostal": "11200", + "codeCommune": "11324", + "libelleAcheminement": "ROUBIA", + "nomCommune": "ROUBIA" }, { - "codePostal": "87440", - "codeCommune": "87091", - "libelleAcheminement": "MAISONNAIS SUR TARDOIRE", - "nomCommune": "MAISONNAIS SUR TARDOIRE" + "codePostal": "11170", + "codeCommune": "11084", + "libelleAcheminement": "CAUX ET SAUZENS", + "nomCommune": "CAUX ET SAUZENS" }, { - "codePostal": "87800", - "codeCommune": "87096", - "libelleAcheminement": "LA MEYZE", - "nomCommune": "LA MEYZE" + "codePostal": "11250", + "codeCommune": "11325", + "libelleAcheminement": "ROUFFIAC D AUDE", + "nomCommune": "ROUFFIAC D AUDE" }, { - "codePostal": "87140", - "codeCommune": "87103", - "libelleAcheminement": "NANTIAT", - "nomCommune": "NANTIAT" + "codePostal": "11570", + "codeCommune": "11085", + "libelleAcheminement": "CAVANAC", + "nomCommune": "CAVANAC" }, { - "codePostal": "87120", - "codeCommune": "87104", - "libelleAcheminement": "NEDDE", - "nomCommune": "NEDDE" + "codePostal": "11270", + "codeCommune": "11331", + "libelleAcheminement": "ST AMANS", + "nomCommune": "ST AMANS" }, { - "codePostal": "87130", - "codeCommune": "87105", - "libelleAcheminement": "NEUVIC ENTIER", - "nomCommune": "NEUVIC ENTIER" + "codePostal": "11270", + "codeCommune": "11087", + "libelleAcheminement": "CAZALRENOUX", + "nomCommune": "CAZALRENOUX" }, { - "codePostal": "87350", - "codeCommune": "87114", - "libelleAcheminement": "PANAZOL", - "nomCommune": "PANAZOL" + "codePostal": "11410", + "codeCommune": "11334", + "libelleAcheminement": "STE CAMELLE", + "nomCommune": "STE CAMELLE" }, { - "codePostal": "87260", - "codeCommune": "87119", - "libelleAcheminement": "PIERRE BUFFIERE", - "nomCommune": "PIERRE BUFFIERE" + "codePostal": "11160", + "codeCommune": "11092", + "libelleAcheminement": "CITOU", + "nomCommune": "CITOU" }, { - "codePostal": "87290", - "codeCommune": "87121", - "libelleAcheminement": "RANCON", - "nomCommune": "RANCON" + "codePostal": "11230", + "codeCommune": "11336", + "libelleAcheminement": "STE COLOMBE SUR L HERS", + "nomCommune": "STE COLOMBE SUR L HERS" }, { - "codePostal": "87600", - "codeCommune": "87126", - "libelleAcheminement": "ROCHECHOUART", - "nomCommune": "ROCHECHOUART" + "codePostal": "11200", + "codeCommune": "11098", + "libelleAcheminement": "CONILHAC CORBIERES", + "nomCommune": "CONILHAC CORBIERES" }, { - "codePostal": "87140", - "codeCommune": "87128", - "libelleAcheminement": "ST PARDOUX LE LAC", - "nomCommune": "ST PARDOUX LE LAC" + "codePostal": "11170", + "codeCommune": "11357", + "libelleAcheminement": "ST MARTIN LE VIEIL", + "nomCommune": "ST MARTIN LE VIEIL" }, { - "codePostal": "87130", - "codeCommune": "87130", - "libelleAcheminement": "ROZIERS ST GEORGES", - "nomCommune": "ROZIERS ST GEORGES" + "codePostal": "11190", + "codeCommune": "11103", + "libelleAcheminement": "COUIZA", + "nomCommune": "COUIZA" }, { - "codePostal": "87720", - "codeCommune": "87131", - "libelleAcheminement": "SAILLAT SUR VIENNE", - "nomCommune": "SAILLAT SUR VIENNE" + "codePostal": "11120", + "codeCommune": "11366", + "libelleAcheminement": "STE VALIERE", + "nomCommune": "STE VALIERE" }, { - "codePostal": "87120", - "codeCommune": "87132", - "libelleAcheminement": "ST AMAND LE PETIT", - "nomCommune": "ST AMAND LE PETIT" + "codePostal": "11240", + "codeCommune": "11108", + "libelleAcheminement": "LA COURTETE", + "nomCommune": "LA COURTETE" }, { - "codePostal": "87150", - "codeCommune": "87137", - "libelleAcheminement": "ST BAZILE", - "nomCommune": "ST BAZILE" + "codePostal": "11310", + "codeCommune": "11367", + "libelleAcheminement": "SAISSAC", + "nomCommune": "SAISSAC" }, { - "codePostal": "87300", - "codeCommune": "87139", - "libelleAcheminement": "ST BONNET DE BELLAC", - "nomCommune": "ST BONNET DE BELLAC" + "codePostal": "11190", + "codeCommune": "11109", + "libelleAcheminement": "COUSTAUSSA", + "nomCommune": "COUSTAUSSA" }, { - "codePostal": "87400", - "codeCommune": "87142", - "libelleAcheminement": "ST DENIS DES MURS", - "nomCommune": "ST DENIS DES MURS" + "codePostal": "11600", + "codeCommune": "11368", + "libelleAcheminement": "SALLELES CABARDES", + "nomCommune": "SALLELES CABARDES" }, { - "codePostal": "87300", - "codeCommune": "87155", - "libelleAcheminement": "ST JUNIEN LES COMBES", - "nomCommune": "ST JUNIEN LES COMBES" + "codePostal": "11330", + "codeCommune": "11117", + "libelleAcheminement": "DAVEJEAN", + "nomCommune": "DAVEJEAN" }, { - "codePostal": "87310", - "codeCommune": "87158", - "libelleAcheminement": "ST LAURENT SUR GORRE", - "nomCommune": "ST LAURENT SUR GORRE" + "codePostal": "11240", + "codeCommune": "11375", + "libelleAcheminement": "SEIGNALENS", + "nomCommune": "SEIGNALENS" }, { - "codePostal": "87340", - "codeCommune": "87159", - "libelleAcheminement": "ST LEGER LA MONTAGNE", - "nomCommune": "ST LEGER LA MONTAGNE" + "codePostal": "11350", + "codeCommune": "11123", + "libelleAcheminement": "DUILHAC SOUS PEYREPERTUSE", + "nomCommune": "DUILHAC SOUS PEYREPERTUSE" }, { - "codePostal": "87190", - "codeCommune": "87160", - "libelleAcheminement": "ST LEGER MAGNAZEIX", - "nomCommune": "ST LEGER MAGNAZEIX" + "codePostal": "11190", + "codeCommune": "11376", + "libelleAcheminement": "LA SERPENT", + "nomCommune": "LA SERPENT" }, { - "codePostal": "87700", - "codeCommune": "87166", - "libelleAcheminement": "ST MARTIN LE VIEUX", - "nomCommune": "ST MARTIN LE VIEUX" + "codePostal": "11260", + "codeCommune": "11131", + "libelleAcheminement": "VAL DU FABY", + "nomCommune": "VAL DU FABY" }, { - "codePostal": "87290", - "codeCommune": "87180", - "libelleAcheminement": "ST SORNIN LEULAC", - "nomCommune": "ST SORNIN LEULAC" + "codePostal": "11220", + "codeCommune": "11378", + "libelleAcheminement": "SERVIES EN VAL", + "nomCommune": "SERVIES EN VAL" }, { - "codePostal": "87370", - "codeCommune": "87181", - "libelleAcheminement": "ST SULPICE LAURIERE", - "nomCommune": "ST SULPICE LAURIERE" + "codePostal": "11270", + "codeCommune": "11136", + "libelleAcheminement": "FANJEAUX", + "nomCommune": "FANJEAUX" }, { - "codePostal": "87440", - "codeCommune": "87189", - "libelleAcheminement": "LES SALLES LAVAUGUYON", - "nomCommune": "LES SALLES LAVAUGUYON" + "codePostal": "11230", + "codeCommune": "11380", + "libelleAcheminement": "SONNAC SUR L HERS", + "nomCommune": "SONNAC SUR L HERS" }, { - "codePostal": "87360", - "codeCommune": "87200", - "libelleAcheminement": "VERNEUIL MOUSTIERS", - "nomCommune": "VERNEUIL MOUSTIERS" + "codePostal": "11400", + "codeCommune": "11138", + "libelleAcheminement": "FENDEILLE", + "nomCommune": "FENDEILLE" }, { - "codePostal": "87430", - "codeCommune": "87201", - "libelleAcheminement": "VERNEUIL SUR VIENNE", - "nomCommune": "VERNEUIL SUR VIENNE" + "codePostal": "11190", + "codeCommune": "11381", + "libelleAcheminement": "SOUGRAIGNE", + "nomCommune": "SOUGRAIGNE" }, { - "codePostal": "87520", - "codeCommune": "87202", - "libelleAcheminement": "VEYRAC", - "nomCommune": "VEYRAC" + "codePostal": "11240", + "codeCommune": "11139", + "libelleAcheminement": "FENOUILLET DU RAZES", + "nomCommune": "FENOUILLET DU RAZES" }, { - "codePostal": "88700", - "codeCommune": "88008", - "libelleAcheminement": "ANGLEMONT", - "nomCommune": "ANGLEMONT" + "codePostal": "11330", + "codeCommune": "11388", + "libelleAcheminement": "TERMES", + "nomCommune": "TERMES" }, { - "codePostal": "88380", - "codeCommune": "88012", - "libelleAcheminement": "ARCHETTES", - "nomCommune": "ARCHETTES" + "codePostal": "11510", + "codeCommune": "11144", + "libelleAcheminement": "FITOU", + "nomCommune": "FITOU" }, { - "codePostal": "88260", - "codeCommune": "88016", - "libelleAcheminement": "ATTIGNY", - "nomCommune": "ATTIGNY" + "codePostal": "11400", + "codeCommune": "11399", + "libelleAcheminement": "TREVILLE", + "nomCommune": "TREVILLE" }, { - "codePostal": "88600", - "codeCommune": "88050", - "libelleAcheminement": "BELMONT SUR BUTTANT", - "nomCommune": "BELMONT SUR BUTTANT" + "codePostal": "11390", + "codeCommune": "11150", + "libelleAcheminement": "FONTIERS CABARDES", + "nomCommune": "FONTIERS CABARDES" }, { - "codePostal": "88500", - "codeCommune": "88056", - "libelleAcheminement": "BETTONCOURT", - "nomCommune": "BETTONCOURT" + "codePostal": "11120", + "codeCommune": "11405", + "libelleAcheminement": "VENTENAC EN MINERVOIS", + "nomCommune": "VENTENAC EN MINERVOIS" }, { - "codePostal": "88600", - "codeCommune": "88064", - "libelleAcheminement": "BOIS DE CHAMP", - "nomCommune": "BOIS DE CHAMP" + "codePostal": "11600", + "codeCommune": "11154", + "libelleAcheminement": "FOURNES CABARDES", + "nomCommune": "FOURNES CABARDES" }, { - "codePostal": "88130", - "codeCommune": "88070", - "libelleAcheminement": "BOUXURULLES", - "nomCommune": "BOUXURULLES" + "codePostal": "11600", + "codeCommune": "11411", + "libelleAcheminement": "VILLANIERE", + "nomCommune": "VILLANIERE" }, { - "codePostal": "88130", - "codeCommune": "88073", - "libelleAcheminement": "BRANTIGNY", - "nomCommune": "BRANTIGNY" + "codePostal": "11140", + "codeCommune": "11160", + "libelleAcheminement": "GALINAGUES", + "nomCommune": "GALINAGUES" }, { - "codePostal": "88600", - "codeCommune": "88076", - "libelleAcheminement": "BROUVELIEURES", - "nomCommune": "BROUVELIEURES" + "codePostal": "11600", + "codeCommune": "11413", + "libelleAcheminement": "VILLARDONNEL", + "nomCommune": "VILLARDONNEL" }, { - "codePostal": "88110", - "codeCommune": "88082", - "libelleAcheminement": "CELLES SUR PLAINE", - "nomCommune": "CELLES SUR PLAINE" + "codePostal": "11250", + "codeCommune": "11161", + "libelleAcheminement": "GARDIE", + "nomCommune": "GARDIE" }, { - "codePostal": "88270", - "codeCommune": "88092", - "libelleAcheminement": "CHARMOIS L ORGUEILLEUX", - "nomCommune": "CHARMOIS L ORGUEILLEUX" + "codePostal": "11420", + "codeCommune": "11419", + "libelleAcheminement": "VILLAUTOU", + "nomCommune": "VILLAUTOU" }, { - "codePostal": "88330", - "codeCommune": "88094", - "libelleAcheminement": "CHATEL SUR MOSELLE", - "nomCommune": "CHATEL SUR MOSELLE" + "codePostal": "11140", + "codeCommune": "11163", + "libelleAcheminement": "GINCLA", + "nomCommune": "GINCLA" }, { - "codePostal": "88170", - "codeCommune": "88095", - "libelleAcheminement": "CHATENOIS", - "nomCommune": "CHATENOIS" + "codePostal": "11200", + "codeCommune": "11421", + "libelleAcheminement": "VILLEDAIGNE", + "nomCommune": "VILLEDAIGNE" }, { - "codePostal": "88500", - "codeCommune": "88097", - "libelleAcheminement": "CHAUFFECOURT", - "nomCommune": "CHAUFFECOURT" + "codePostal": "11120", + "codeCommune": "11164", + "libelleAcheminement": "GINESTAS", + "nomCommune": "GINESTAS" }, { - "codePostal": "88390", - "codeCommune": "88098", - "libelleAcheminement": "CHAUMOUSEY", - "nomCommune": "CHAUMOUSEY" + "codePostal": "11160", + "codeCommune": "11433", + "libelleAcheminement": "VILLENEUVE MINERVOIS", + "nomCommune": "VILLENEUVE MINERVOIS" }, { - "codePostal": "88410", - "codeCommune": "88105", - "libelleAcheminement": "CLAUDON", - "nomCommune": "CLAUDON" + "codePostal": "11220", + "codeCommune": "11176", + "libelleAcheminement": "JONQUIERES", + "nomCommune": "JONQUIERES" }, { - "codePostal": "88230", - "codeCommune": "88106", - "libelleAcheminement": "BAN SUR MEURTHE CLEFCY", - "nomCommune": "BAN SUR MEURTHE CLEFCY" + "codePostal": "11360", + "codeCommune": "11436", + "libelleAcheminement": "VILLESEQUE DES CORBIERES", + "nomCommune": "VILLESEQUE DES CORBIERES" }, { - "codePostal": "88630", - "codeCommune": "88107", - "libelleAcheminement": "CLEREY LA COTE", - "nomCommune": "CLEREY LA COTE" + "codePostal": "11320", + "codeCommune": "11178", + "libelleAcheminement": "LABASTIDE D ANJOU", + "nomCommune": "LABASTIDE D ANJOU" }, { - "codePostal": "88140", - "codeCommune": "88114", - "libelleAcheminement": "CONTREXEVILLE", - "nomCommune": "CONTREXEVILLE" + "codePostal": "11170", + "codeCommune": "11437", + "libelleAcheminement": "VILLESEQUELANDE", + "nomCommune": "VILLESEQUELANDE" }, { - "codePostal": "88630", - "codeCommune": "88118", - "libelleAcheminement": "COUSSEY", - "nomCommune": "COUSSEY" + "codePostal": "11480", + "codeCommune": "11188", + "libelleAcheminement": "LA PALME", + "nomCommune": "LA PALME" }, { - "codePostal": "88520", - "codeCommune": "88120", - "libelleAcheminement": "LA CROIX AUX MINES", - "nomCommune": "LA CROIX AUX MINES" + "codePostal": "11220", + "codeCommune": "11440", + "libelleAcheminement": "VILLETRITOULS", + "nomCommune": "VILLETRITOULS" }, { - "codePostal": "88260", - "codeCommune": "88124", - "libelleAcheminement": "DARNEY", - "nomCommune": "DARNEY" + "codePostal": "11290", + "codeCommune": "11199", + "libelleAcheminement": "LAVALETTE", + "nomCommune": "LAVALETTE" }, { - "codePostal": "88000", - "codeCommune": "88134", - "libelleAcheminement": "DINOZE", - "nomCommune": "DINOZE" + "codePostal": "12430", + "codeCommune": "12006", + "libelleAcheminement": "ALRANCE", + "nomCommune": "ALRANCE" }, { - "codePostal": "88170", - "codeCommune": "88137", - "libelleAcheminement": "DOLAINCOURT", - "nomCommune": "DOLAINCOURT" + "codePostal": "11370", + "codeCommune": "11202", + "libelleAcheminement": "LEUCATE", + "nomCommune": "LEUCATE" }, { - "codePostal": "88800", - "codeCommune": "88146", - "libelleAcheminement": "DOMJULIEN", - "nomCommune": "DOMJULIEN" + "codePostal": "12390", + "codeCommune": "12008", + "libelleAcheminement": "ANGLARS ST FELIX", + "nomCommune": "ANGLARS ST FELIX" }, { - "codePostal": "88600", - "codeCommune": "88152", - "libelleAcheminement": "DOMPIERRE", - "nomCommune": "DOMPIERRE" + "codePostal": "11200", + "codeCommune": "11203", + "libelleAcheminement": "LEZIGNAN CORBIERES", + "nomCommune": "LEZIGNAN CORBIERES" }, { - "codePostal": "88700", - "codeCommune": "88156", - "libelleAcheminement": "DONCIERES", - "nomCommune": "DONCIERES" + "codePostal": "12430", + "codeCommune": "12017", + "libelleAcheminement": "AYSSENES", + "nomCommune": "AYSSENES" }, { - "codePostal": "88220", - "codeCommune": "88157", - "libelleAcheminement": "DOUNOUX", - "nomCommune": "DOUNOUX" + "codePostal": "11200", + "codeCommune": "11210", + "libelleAcheminement": "LUC SUR ORBIEU", + "nomCommune": "LUC SUR ORBIEU" }, { - "codePostal": "88000", - "codeCommune": "88160", - "libelleAcheminement": "EPINAL", - "nomCommune": "EPINAL" + "codePostal": "12200", + "codeCommune": "12021", + "libelleAcheminement": "LE BAS SEGALA", + "nomCommune": "LE BAS SEGALA" }, { - "codePostal": "88130", - "codeCommune": "88163", - "libelleAcheminement": "ESSEGNEY", - "nomCommune": "ESSEGNEY" + "codePostal": "11300", + "codeCommune": "11211", + "libelleAcheminement": "MAGRIE", + "nomCommune": "MAGRIE" }, { - "codePostal": "88500", - "codeCommune": "88164", - "libelleAcheminement": "ESTRENNES", - "nomCommune": "ESTRENNES" + "codePostal": "12240", + "codeCommune": "12021", + "libelleAcheminement": "LE BAS SEGALA", + "nomCommune": "LE BAS SEGALA" }, { - "codePostal": "88460", - "codeCommune": "88167", - "libelleAcheminement": "FAUCOMPIERRE", - "nomCommune": "FAUCOMPIERRE" + "codePostal": "11140", + "codeCommune": "11219", + "libelleAcheminement": "MARSA", + "nomCommune": "MARSA" }, { - "codePostal": "88320", - "codeCommune": "88179", - "libelleAcheminement": "FOUCHECOURT", - "nomCommune": "FOUCHECOURT" + "codePostal": "12270", + "codeCommune": "12029", + "libelleAcheminement": "BOR ET BAR", + "nomCommune": "BOR ET BAR" }, { - "codePostal": "88230", - "codeCommune": "88181", - "libelleAcheminement": "FRAIZE", - "nomCommune": "FRAIZE" + "codePostal": "11400", + "codeCommune": "11225", + "libelleAcheminement": "MAS SAINTES PUELLES", + "nomCommune": "MAS SAINTES PUELLES" }, { - "codePostal": "88140", - "codeCommune": "88195", - "libelleAcheminement": "GENDREVILLE", - "nomCommune": "GENDREVILLE" + "codePostal": "12560", + "codeCommune": "12047", + "libelleAcheminement": "CAMPAGNAC", + "nomCommune": "CAMPAGNAC" }, { - "codePostal": "88430", - "codeCommune": "88198", - "libelleAcheminement": "GERBEPAL", - "nomCommune": "GERBEPAL" + "codePostal": "11220", + "codeCommune": "11227", + "libelleAcheminement": "MAYRONNES", + "nomCommune": "MAYRONNES" }, { - "codePostal": "88320", - "codeCommune": "88199", - "libelleAcheminement": "GIGNEVILLE", - "nomCommune": "GIGNEVILLE" + "codePostal": "12140", + "codeCommune": "12048", + "libelleAcheminement": "CAMPOURIEZ", + "nomCommune": "CAMPOURIEZ" }, { - "codePostal": "88600", - "codeCommune": "88203", - "libelleAcheminement": "GIRECOURT SUR DURBION", - "nomCommune": "GIRECOURT SUR DURBION" + "codePostal": "11380", + "codeCommune": "11232", + "libelleAcheminement": "MIRAVAL CABARDES", + "nomCommune": "MIRAVAL CABARDES" }, { - "codePostal": "88340", - "codeCommune": "88205", - "libelleAcheminement": "GIRMONT VAL D AJOL", - "nomCommune": "GIRMONT VAL D AJOL" + "codePostal": "12460", + "codeCommune": "12048", + "libelleAcheminement": "CAMPOURIEZ", + "nomCommune": "CAMPOURIEZ" }, { - "codePostal": "88490", - "codeCommune": "88213", - "libelleAcheminement": "LA GRANDE FOSSE", - "nomCommune": "LA GRANDE FOSSE" + "codePostal": "11120", + "codeCommune": "11233", + "libelleAcheminement": "MIREPEISSET", + "nomCommune": "MIREPEISSET" }, { - "codePostal": "88410", - "codeCommune": "88220", - "libelleAcheminement": "GRIGNONCOURT", - "nomCommune": "GRIGNONCOURT" + "codePostal": "12580", + "codeCommune": "12049", + "libelleAcheminement": "CAMPUAC", + "nomCommune": "CAMPUAC" }, { - "codePostal": "88450", - "codeCommune": "88223", - "libelleAcheminement": "GUGNEY AUX AULX", - "nomCommune": "GUGNEY AUX AULX" + "codePostal": "11400", + "codeCommune": "11234", + "libelleAcheminement": "MIREVAL LAURAGAIS", + "nomCommune": "MIREVAL LAURAGAIS" }, { - "codePostal": "88800", - "codeCommune": "88231", - "libelleAcheminement": "HAREVILLE", - "nomCommune": "HAREVILLE" + "codePostal": "12290", + "codeCommune": "12050", + "libelleAcheminement": "CANET DE SALARS", + "nomCommune": "CANET DE SALARS" }, { - "codePostal": "88270", - "codeCommune": "88237", - "libelleAcheminement": "HENNECOURT", - "nomCommune": "HENNECOURT" + "codePostal": "11580", + "codeCommune": "11235", + "libelleAcheminement": "MISSEGRE", + "nomCommune": "MISSEGRE" }, { - "codePostal": "88600", - "codeCommune": "88240", - "libelleAcheminement": "HERPELMONT", - "nomCommune": "HERPELMONT" + "codePostal": "12420", + "codeCommune": "12051", + "libelleAcheminement": "CANTOIN", + "nomCommune": "CANTOIN" }, { - "codePostal": "88170", - "codeCommune": "88241", - "libelleAcheminement": "HOUECOURT", - "nomCommune": "HOUECOURT" + "codePostal": "11420", + "codeCommune": "11236", + "libelleAcheminement": "MOLANDIER", + "nomCommune": "MOLANDIER" }, { - "codePostal": "88430", - "codeCommune": "88244", - "libelleAcheminement": "LA HOUSSIERE", - "nomCommune": "LA HOUSSIERE" + "codePostal": "12130", + "codeCommune": "12055", + "libelleAcheminement": "LA CAPELLE BONANCE", + "nomCommune": "LA CAPELLE BONANCE" }, { - "codePostal": "88500", - "codeCommune": "88246", - "libelleAcheminement": "HYMONT", - "nomCommune": "HYMONT" + "codePostal": "11190", + "codeCommune": "11240", + "libelleAcheminement": "MONTAZELS", + "nomCommune": "MONTAZELS" }, { - "codePostal": "88150", - "codeCommune": "88247", - "libelleAcheminement": "IGNEY", - "nomCommune": "IGNEY" + "codePostal": "12120", + "codeCommune": "12065", + "libelleAcheminement": "CENTRES", + "nomCommune": "CENTRES" }, { - "codePostal": "88700", - "codeCommune": "88251", - "libelleAcheminement": "JEANMENIL", - "nomCommune": "JEANMENIL" + "codePostal": "11700", + "codeCommune": "11241", + "libelleAcheminement": "MONTBRUN DES CORBIERES", + "nomCommune": "MONTBRUN DES CORBIERES" }, { - "codePostal": "88640", - "codeCommune": "88263", - "libelleAcheminement": "LAVELINE DU HOUX", - "nomCommune": "LAVELINE DU HOUX" + "codePostal": "12540", + "codeCommune": "12067", + "libelleAcheminement": "LE CLAPIER", + "nomCommune": "LE CLAPIER" }, { - "codePostal": "88270", - "codeCommune": "88264", - "libelleAcheminement": "LEGEVILLE ET BONFAYS", - "nomCommune": "LEGEVILLE ET BONFAYS" + "codePostal": "11240", + "codeCommune": "11246", + "libelleAcheminement": "MONTGRADAIL", + "nomCommune": "MONTGRADAIL" }, { - "codePostal": "88170", - "codeCommune": "88278", - "libelleAcheminement": "MACONCOURT", - "nomCommune": "MACONCOURT" + "codePostal": "12370", + "codeCommune": "12069", + "libelleAcheminement": "COMBRET", + "nomCommune": "COMBRET" }, { - "codePostal": "88320", - "codeCommune": "88289", - "libelleAcheminement": "MARTIGNY LES BAINS", - "nomCommune": "MARTIGNY LES BAINS" + "codePostal": "11320", + "codeCommune": "11252", + "libelleAcheminement": "MONTMAUR", + "nomCommune": "MONTMAUR" }, { - "codePostal": "88500", - "codeCommune": "88299", - "libelleAcheminement": "MENIL EN XAINTOIS", - "nomCommune": "MENIL EN XAINTOIS" + "codePostal": "12230", + "codeCommune": "12082", + "libelleAcheminement": "LA COUVERTOIRADE", + "nomCommune": "LA COUVERTOIRADE" }, { - "codePostal": "88500", - "codeCommune": "88304", - "libelleAcheminement": "MIRECOURT", - "nomCommune": "MIRECOURT" + "codePostal": "11200", + "codeCommune": "11256", + "libelleAcheminement": "MONTSERET", + "nomCommune": "MONTSERET" }, { - "codePostal": "88320", - "codeCommune": "88314", - "libelleAcheminement": "MORIZECOURT", - "nomCommune": "MORIZECOURT" + "codePostal": "12100", + "codeCommune": "12084", + "libelleAcheminement": "CREISSELS", + "nomCommune": "CREISSELS" }, { - "codePostal": "88170", - "codeCommune": "88324", - "libelleAcheminement": "LA NEUVEVILLE SOUS CHATENOIS", - "nomCommune": "LA NEUVEVILLE SOUS CHATENOIS" + "codePostal": "11800", + "codeCommune": "11257", + "libelleAcheminement": "MONZE", + "nomCommune": "MONZE" }, { - "codePostal": "88800", - "codeCommune": "88325", - "libelleAcheminement": "LA NEUVEVILLE SOUS MONTFORT", - "nomCommune": "LA NEUVEVILLE SOUS MONTFORT" + "codePostal": "12640", + "codeCommune": "12086", + "libelleAcheminement": "LA CRESSE", + "nomCommune": "LA CRESSE" }, { - "codePostal": "88100", - "codeCommune": "88326", - "libelleAcheminement": "NEUVILLERS SUR FAVE", - "nomCommune": "NEUVILLERS SUR FAVE" + "codePostal": "11120", + "codeCommune": "11258", + "libelleAcheminement": "MOUSSAN", + "nomCommune": "MOUSSAN" }, { - "codePostal": "88800", - "codeCommune": "88343", - "libelleAcheminement": "PAREY SOUS MONTFORT", - "nomCommune": "PAREY SOUS MONTFORT" + "codePostal": "12510", + "codeCommune": "12090", + "libelleAcheminement": "DRUELLE BALSAC", + "nomCommune": "DRUELLE BALSAC" }, { - "codePostal": "88270", - "codeCommune": "88347", - "libelleAcheminement": "PIERREFITTE", - "nomCommune": "PIERREFITTE" + "codePostal": "11330", + "codeCommune": "11260", + "libelleAcheminement": "MOUTHOUMET", + "nomCommune": "MOUTHOUMET" }, { - "codePostal": "88230", - "codeCommune": "88349", - "libelleAcheminement": "PLAINFAING", - "nomCommune": "PLAINFAING" + "codePostal": "12510", + "codeCommune": "12090", + "libelleAcheminement": "DRUELLE BALSAC", + "nomCommune": "DRUELLE BALSAC" }, { - "codePostal": "88170", - "codeCommune": "88350", - "libelleAcheminement": "PLEUVEZAIN", - "nomCommune": "PLEUVEZAIN" + "codePostal": "11200", + "codeCommune": "11264", + "libelleAcheminement": "NEVIAN", + "nomCommune": "NEVIAN" }, { - "codePostal": "88370", - "codeCommune": "88351", - "libelleAcheminement": "PLOMBIERES LES BAINS", - "nomCommune": "PLOMBIERES LES BAINS" + "codePostal": "12500", + "codeCommune": "12096", + "libelleAcheminement": "ESPALION", + "nomCommune": "ESPALION" }, { - "codePostal": "88370", - "codeCommune": "88351", - "libelleAcheminement": "PLOMBIERES LES BAINS", - "nomCommune": "PLOMBIERES LES BAINS" + "codePostal": "11330", + "codeCommune": "11271", + "libelleAcheminement": "PALAIRAC", + "nomCommune": "PALAIRAC" }, { - "codePostal": "88600", - "codeCommune": "88356", - "libelleAcheminement": "LES POULIERES", - "nomCommune": "LES POULIERES" + "codePostal": "12160", + "codeCommune": "12113", + "libelleAcheminement": "GRAMOND", + "nomCommune": "GRAMOND" }, { - "codePostal": "88330", - "codeCommune": "88379", - "libelleAcheminement": "REHAINCOURT", - "nomCommune": "REHAINCOURT" + "codePostal": "11420", + "codeCommune": "11277", + "libelleAcheminement": "PECHARIC ET LE PY", + "nomCommune": "PECHARIC ET LE PY" }, { - "codePostal": "88260", - "codeCommune": "88381", - "libelleAcheminement": "RELANGES", - "nomCommune": "RELANGES" + "codePostal": "12310", + "codeCommune": "12120", + "libelleAcheminement": "LAISSAC SEVERAC L EGLISE", + "nomCommune": "LAISSAC SEVERAC L EGLISE" }, { - "codePostal": "88300", - "codeCommune": "88393", - "libelleAcheminement": "ROLLAINVILLE", - "nomCommune": "ROLLAINVILLE" + "codePostal": "11610", + "codeCommune": "11279", + "libelleAcheminement": "PENNAUTIER", + "nomCommune": "PENNAUTIER" }, { - "codePostal": "88600", - "codeCommune": "88398", - "libelleAcheminement": "LES ROUGES EAUX", - "nomCommune": "LES ROUGES EAUX" + "codePostal": "12310", + "codeCommune": "12120", + "libelleAcheminement": "LAISSAC SEVERAC L EGLISE", + "nomCommune": "LAISSAC SEVERAC L EGLISE" }, { - "codePostal": "88500", - "codeCommune": "88400", - "libelleAcheminement": "ROUVRES EN XAINTOIS", - "nomCommune": "ROUVRES EN XAINTOIS" + "codePostal": "11400", + "codeCommune": "11284", + "libelleAcheminement": "PEYRENS", + "nomCommune": "PEYRENS" }, { - "codePostal": "88630", - "codeCommune": "88407", - "libelleAcheminement": "RUPPES", - "nomCommune": "RUPPES" + "codePostal": "12450", + "codeCommune": "12133", + "libelleAcheminement": "LUC LA PRIMAUBE", + "nomCommune": "LUC LA PRIMAUBE" }, { - "codePostal": "88700", - "codeCommune": "88410", - "libelleAcheminement": "STE BARBE", - "nomCommune": "STE BARBE" + "codePostal": "11420", + "codeCommune": "11290", + "libelleAcheminement": "PLAIGNE", + "nomCommune": "PLAIGNE" }, { - "codePostal": "88100", - "codeCommune": "88424", - "libelleAcheminement": "STE MARGUERITE", - "nomCommune": "STE MARGUERITE" + "codePostal": "12220", + "codeCommune": "12134", + "libelleAcheminement": "LUGAN", + "nomCommune": "LUGAN" }, { - "codePostal": "88700", - "codeCommune": "88425", - "libelleAcheminement": "ST MAURICE SUR MORTAGNE", - "nomCommune": "ST MAURICE SUR MORTAGNE" + "codePostal": "11250", + "codeCommune": "11293", + "libelleAcheminement": "POMAS", + "nomCommune": "POMAS" }, { - "codePostal": "88560", - "codeCommune": "88426", - "libelleAcheminement": "ST MAURICE SUR MOSELLE", - "nomCommune": "ST MAURICE SUR MOSELLE" + "codePostal": "12540", + "codeCommune": "12139", + "libelleAcheminement": "MARNHAGUES ET LATOUR", + "nomCommune": "MARNHAGUES ET LATOUR" }, { - "codePostal": "88170", - "codeCommune": "88427", - "libelleAcheminement": "ST MENGE", - "nomCommune": "ST MENGE" + "codePostal": "11250", + "codeCommune": "11299", + "libelleAcheminement": "PREIXAN", + "nomCommune": "PREIXAN" }, { - "codePostal": "88390", - "codeCommune": "88439", - "libelleAcheminement": "SANCHEY", - "nomCommune": "SANCHEY" + "codePostal": "12200", + "codeCommune": "12140", + "libelleAcheminement": "MARTIEL", + "nomCommune": "MARTIEL" }, { - "codePostal": "88260", - "codeCommune": "88452", - "libelleAcheminement": "SENONGES", - "nomCommune": "SENONGES" + "codePostal": "11500", + "codeCommune": "11304", + "libelleAcheminement": "QUILLAN", + "nomCommune": "QUILLAN" }, { - "codePostal": "88630", - "codeCommune": "88457", - "libelleAcheminement": "SIONNE", - "nomCommune": "SIONNE" + "codePostal": "12360", + "codeCommune": "12147", + "libelleAcheminement": "MONTAGNOL", + "nomCommune": "MONTAGNOL" }, { - "codePostal": "88170", - "codeCommune": "88459", - "libelleAcheminement": "SONCOURT", - "nomCommune": "SONCOURT" + "codePostal": "11500", + "codeCommune": "11304", + "libelleAcheminement": "QUILLAN", + "nomCommune": "QUILLAN" }, { - "codePostal": "88630", - "codeCommune": "88460", - "libelleAcheminement": "SOULOSSE SOUS ST ELOPHE", - "nomCommune": "SOULOSSE SOUS ST ELOPHE" + "codePostal": "12490", + "codeCommune": "12153", + "libelleAcheminement": "MONTJAUX", + "nomCommune": "MONTJAUX" }, { - "codePostal": "88120", - "codeCommune": "88462", - "libelleAcheminement": "LE SYNDICAT", - "nomCommune": "LE SYNDICAT" + "codePostal": "11400", + "codeCommune": "11313", + "libelleAcheminement": "RICAUD", + "nomCommune": "RICAUD" }, { - "codePostal": "88460", - "codeCommune": "88464", - "libelleAcheminement": "TENDON", - "nomCommune": "TENDON" + "codePostal": "12210", + "codeCommune": "12156", + "libelleAcheminement": "MONTPEYROUX", + "nomCommune": "MONTPEYROUX" }, { - "codePostal": "88150", - "codeCommune": "88465", - "libelleAcheminement": "CAPAVENIR VOSGES", - "nomCommune": "CAPAVENIR VOSGES" + "codePostal": "11700", + "codeCommune": "11318", + "libelleAcheminement": "ROQUECOURBE MINERVOIS", + "nomCommune": "ROQUECOURBE MINERVOIS" }, { - "codePostal": "88150", - "codeCommune": "88465", - "libelleAcheminement": "CAPAVENIR VOSGES", - "nomCommune": "CAPAVENIR VOSGES" + "codePostal": "12260", + "codeCommune": "12158", + "libelleAcheminement": "MONTSALES", + "nomCommune": "MONTSALES" }, { - "codePostal": "88290", - "codeCommune": "88467", - "libelleAcheminement": "THIEFOSSE", - "nomCommune": "THIEFOSSE" + "codePostal": "11380", + "codeCommune": "11319", + "libelleAcheminement": "ROQUEFERE", + "nomCommune": "ROQUEFERE" }, { - "codePostal": "88160", - "codeCommune": "88468", - "libelleAcheminement": "LE THILLOT", - "nomCommune": "LE THILLOT" + "codePostal": "12800", + "codeCommune": "12169", + "libelleAcheminement": "NAUCELLE", + "nomCommune": "NAUCELLE" }, { - "codePostal": "88500", - "codeCommune": "88469", - "libelleAcheminement": "THIRAUCOURT", - "nomCommune": "THIRAUCOURT" + "codePostal": "11350", + "codeCommune": "11326", + "libelleAcheminement": "ROUFFIAC DES CORBIERES", + "nomCommune": "ROUFFIAC DES CORBIERES" }, { - "codePostal": "88260", - "codeCommune": "88472", - "libelleAcheminement": "THUILLIERES", - "nomCommune": "THUILLIERES" + "codePostal": "12000", + "codeCommune": "12176", + "libelleAcheminement": "ONET LE CHATEAU", + "nomCommune": "ONET LE CHATEAU" }, { - "codePostal": "88320", - "codeCommune": "88473", - "libelleAcheminement": "TIGNECOURT", - "nomCommune": "TIGNECOURT" + "codePostal": "11140", + "codeCommune": "11335", + "libelleAcheminement": "STE COLOMBE SUR GUETTE", + "nomCommune": "STE COLOMBE SUR GUETTE" }, { - "codePostal": "88130", - "codeCommune": "88480", - "libelleAcheminement": "UBEXY", - "nomCommune": "UBEXY" + "codePostal": "12520", + "codeCommune": "12178", + "libelleAcheminement": "PAULHE", + "nomCommune": "PAULHE" }, { - "codePostal": "88390", - "codeCommune": "88483", - "libelleAcheminement": "UXEGNEY", - "nomCommune": "UXEGNEY" + "codePostal": "11270", + "codeCommune": "11343", + "libelleAcheminement": "ST GAUDERIC", + "nomCommune": "ST GAUDERIC" }, { - "codePostal": "88330", - "codeCommune": "88497", - "libelleAcheminement": "VAXONCOURT", - "nomCommune": "VAXONCOURT" + "codePostal": "12220", + "codeCommune": "12181", + "libelleAcheminement": "PEYRUSSE LE ROC", + "nomCommune": "PEYRUSSE LE ROC" }, { - "codePostal": "88320", - "codeCommune": "88510", - "libelleAcheminement": "VILLOTTE", - "nomCommune": "VILLOTTE" + "codePostal": "11360", + "codeCommune": "11345", + "libelleAcheminement": "ST JEAN DE BARROU", + "nomCommune": "ST JEAN DE BARROU" }, { - "codePostal": "88170", - "codeCommune": "88514", - "libelleAcheminement": "VIOCOURT", - "nomCommune": "VIOCOURT" + "codePostal": "12350", + "codeCommune": "12190", + "libelleAcheminement": "PREVINQUIERES", + "nomCommune": "PREVINQUIERES" }, { - "codePostal": "88240", - "codeCommune": "88520", - "libelleAcheminement": "LES VOIVRES", - "nomCommune": "LES VOIVRES" + "codePostal": "11500", + "codeCommune": "11347", + "libelleAcheminement": "ST JULIA DE BEC", + "nomCommune": "ST JULIA DE BEC" }, { - "codePostal": "88170", - "codeCommune": "88523", - "libelleAcheminement": "VOUXEY", - "nomCommune": "VOUXEY" + "codePostal": "12350", + "codeCommune": "12191", + "libelleAcheminement": "PRIVEZAC", + "nomCommune": "PRIVEZAC" }, { - "codePostal": "88170", - "codeCommune": "88523", - "libelleAcheminement": "VOUXEY", - "nomCommune": "VOUXEY" + "codePostal": "11270", + "codeCommune": "11348", + "libelleAcheminement": "ST JULIEN DE BRIOLA", + "nomCommune": "ST JULIEN DE BRIOLA" }, { - "codePostal": "88140", - "codeCommune": "88524", - "libelleAcheminement": "VRECOURT", - "nomCommune": "VRECOURT" + "codePostal": "12390", + "codeCommune": "12199", + "libelleAcheminement": "RIGNAC", + "nomCommune": "RIGNAC" }, { - "codePostal": "88700", - "codeCommune": "88527", - "libelleAcheminement": "XAFFEVILLERS", - "nomCommune": "XAFFEVILLERS" + "codePostal": "11220", + "codeCommune": "11354", + "libelleAcheminement": "ST MARTIN DES PUITS", + "nomCommune": "ST MARTIN DES PUITS" }, { - "codePostal": "88130", - "codeCommune": "88529", - "libelleAcheminement": "XARONVAL", - "nomCommune": "XARONVAL" + "codePostal": "12400", + "codeCommune": "12208", + "libelleAcheminement": "ST AFFRIQUE", + "nomCommune": "ST AFFRIQUE" }, { - "codePostal": "88330", - "codeCommune": "88532", - "libelleAcheminement": "ZINCOURT", - "nomCommune": "ZINCOURT" + "codePostal": "11500", + "codeCommune": "11358", + "libelleAcheminement": "ST MARTIN LYS", + "nomCommune": "ST MARTIN LYS" }, { - "codePostal": "89110", - "codeCommune": "89003", - "libelleAcheminement": "MONTHOLON", - "nomCommune": "MONTHOLON" + "codePostal": "12470", + "codeCommune": "12214", + "libelleAcheminement": "ST CHELY D AUBRAC", + "nomCommune": "ST CHELY D AUBRAC" }, { - "codePostal": "89110", - "codeCommune": "89003", - "libelleAcheminement": "MONTHOLON", - "nomCommune": "MONTHOLON" + "codePostal": "11140", + "codeCommune": "11373", + "libelleAcheminement": "SALVEZINES", + "nomCommune": "SALVEZINES" }, { - "codePostal": "01100", - "codeCommune": "01011", - "libelleAcheminement": "APREMONT", - "nomCommune": "APREMONT" + "codePostal": "12400", + "codeCommune": "12222", + "libelleAcheminement": "ST FELIX DE SORGUES", + "nomCommune": "ST FELIX DE SORGUES" }, { - "codePostal": "89450", - "codeCommune": "89021", - "libelleAcheminement": "ASQUINS", - "nomCommune": "ASQUINS" + "codePostal": "11190", + "codeCommune": "11377", + "libelleAcheminement": "SERRES", + "nomCommune": "SERRES" }, { - "codePostal": "01480", - "codeCommune": "01021", - "libelleAcheminement": "ARS SUR FORMANS", - "nomCommune": "ARS SUR FORMANS" + "codePostal": "12140", + "codeCommune": "12226", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "89150", - "codeCommune": "89036", - "libelleAcheminement": "LA BELLIOLE", - "nomCommune": "LA BELLIOLE" + "codePostal": "11400", + "codeCommune": "11382", + "libelleAcheminement": "SOUILHANELS", + "nomCommune": "SOUILHANELS" }, { - "codePostal": "01990", - "codeCommune": "01028", - "libelleAcheminement": "BANEINS", - "nomCommune": "BANEINS" + "codePostal": "12170", + "codeCommune": "12230", + "libelleAcheminement": "ST JEAN DELNOUS", + "nomCommune": "ST JEAN DELNOUS" }, { - "codePostal": "89700", - "codeCommune": "89039", - "libelleAcheminement": "BERU", - "nomCommune": "BERU" + "codePostal": "11300", + "codeCommune": "11394", + "libelleAcheminement": "TOURREILLES", + "nomCommune": "TOURREILLES" }, { - "codePostal": "01100", - "codeCommune": "01031", - "libelleAcheminement": "BELLIGNAT", - "nomCommune": "BELLIGNAT" + "codePostal": "12800", + "codeCommune": "12235", + "libelleAcheminement": "ST JUST SUR VIAUR", + "nomCommune": "ST JUST SUR VIAUR" }, { - "codePostal": "89770", - "codeCommune": "89048", - "libelleAcheminement": "BOEURS EN OTHE", - "nomCommune": "BOEURS EN OTHE" + "codePostal": "11580", + "codeCommune": "11402", + "libelleAcheminement": "VALMIGERE", + "nomCommune": "VALMIGERE" }, { - "codePostal": "01200", - "codeCommune": "01033", - "libelleAcheminement": "VALSERHONE", - "nomCommune": "VALSERHONE" + "codePostal": "12850", + "codeCommune": "12241", + "libelleAcheminement": "STE RADEGONDE", + "nomCommune": "STE RADEGONDE" }, { - "codePostal": "89113", - "codeCommune": "89053", - "libelleAcheminement": "BRANCHES", - "nomCommune": "BRANCHES" + "codePostal": "11330", + "codeCommune": "11409", + "libelleAcheminement": "VIGNEVIEILLE", + "nomCommune": "VIGNEVIEILLE" }, { - "codePostal": "01200", - "codeCommune": "01033", - "libelleAcheminement": "VALSERHONE", - "nomCommune": "VALSERHONE" + "codePostal": "12490", + "codeCommune": "12244", + "libelleAcheminement": "ST ROME DE TARN", + "nomCommune": "ST ROME DE TARN" }, { - "codePostal": "89630", - "codeCommune": "89058", - "libelleAcheminement": "BUSSIERES", - "nomCommune": "BUSSIERES" + "codePostal": "11600", + "codeCommune": "11416", + "libelleAcheminement": "VILLARZEL CABARDES", + "nomCommune": "VILLARZEL CABARDES" }, { - "codePostal": "01130", - "codeCommune": "01035", - "libelleAcheminement": "BELLEYDOUX", - "nomCommune": "BELLEYDOUX" + "codePostal": "12560", + "codeCommune": "12247", + "libelleAcheminement": "ST SATURNIN DE LENNE", + "nomCommune": "ST SATURNIN DE LENNE" }, { - "codePostal": "89360", - "codeCommune": "89062", - "libelleAcheminement": "CARISEY", - "nomCommune": "CARISEY" + "codePostal": "11600", + "codeCommune": "11425", + "libelleAcheminement": "VILLEGAILHENC", + "nomCommune": "VILLEGAILHENC" }, { - "codePostal": "01700", - "codeCommune": "01043", - "libelleAcheminement": "BEYNOST", - "nomCommune": "BEYNOST" + "codePostal": "12460", + "codeCommune": "12250", + "libelleAcheminement": "ST SYMPHORIEN DE THENIERES", + "nomCommune": "ST SYMPHORIEN DE THENIERES" }, { - "codePostal": "89400", - "codeCommune": "89085", - "libelleAcheminement": "CHARMOY", - "nomCommune": "CHARMOY" + "codePostal": "11620", + "codeCommune": "11429", + "libelleAcheminement": "VILLEMOUSTAUSSOU", + "nomCommune": "VILLEMOUSTAUSSOU" }, { - "codePostal": "01290", - "codeCommune": "01046", - "libelleAcheminement": "BIZIAT", - "nomCommune": "BIZIAT" + "codePostal": "12400", + "codeCommune": "12251", + "libelleAcheminement": "ST VICTOR ET MELVIEU", + "nomCommune": "ST VICTOR ET MELVIEU" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "12630", + "codeCommune": "12001", + "libelleAcheminement": "AGEN D AVEYRON", + "nomCommune": "AGEN D AVEYRON" }, { - "codePostal": "01330", - "codeCommune": "01052", - "libelleAcheminement": "BOULIGNEUX", - "nomCommune": "BOULIGNEUX" + "codePostal": "12330", + "codeCommune": "12254", + "libelleAcheminement": "SALLES LA SOURCE", + "nomCommune": "SALLES LA SOURCE" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "12110", + "codeCommune": "12013", + "libelleAcheminement": "AUBIN", + "nomCommune": "AUBIN" }, { - "codePostal": "01000", - "codeCommune": "01053", - "libelleAcheminement": "BOURG EN BRESSE", - "nomCommune": "BOURG EN BRESSE" + "codePostal": "12700", + "codeCommune": "12257", + "libelleAcheminement": "CAUSSE ET DIEGE", + "nomCommune": "CAUSSE ET DIEGE" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "12110", + "codeCommune": "12013", + "libelleAcheminement": "AUBIN", + "nomCommune": "AUBIN" }, { - "codePostal": "01190", - "codeCommune": "01057", - "libelleAcheminement": "BOZ", - "nomCommune": "BOZ" + "codePostal": "12230", + "codeCommune": "12260", + "libelleAcheminement": "SAUCLIERES", + "nomCommune": "SAUCLIERES" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "12120", + "codeCommune": "12015", + "libelleAcheminement": "AURIAC LAGAST", + "nomCommune": "AURIAC LAGAST" }, { - "codePostal": "01300", - "codeCommune": "01058", - "libelleAcheminement": "BREGNIER CORDON", - "nomCommune": "BREGNIER CORDON" + "codePostal": "12190", + "codeCommune": "12265", + "libelleAcheminement": "SEBRAZAC", + "nomCommune": "SEBRAZAC" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "12390", + "codeCommune": "12016", + "libelleAcheminement": "AUZITS", + "nomCommune": "AUZITS" }, { - "codePostal": "01360", - "codeCommune": "01062", - "libelleAcheminement": "BRESSOLLES", - "nomCommune": "BRESSOLLES" + "codePostal": "12150", + "codeCommune": "12270", + "libelleAcheminement": "SEVERAC D AVEYRON", + "nomCommune": "SEVERAC D AVEYRON" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "12370", + "codeCommune": "12025", + "libelleAcheminement": "BELMONT SUR RANCE", + "nomCommune": "BELMONT SUR RANCE" }, { - "codePostal": "01310", - "codeCommune": "01065", - "libelleAcheminement": "BUELLAS", - "nomCommune": "BUELLAS" + "codePostal": "12700", + "codeCommune": "12272", + "libelleAcheminement": "SONNAC", + "nomCommune": "SONNAC" }, { - "codePostal": "89400", - "codeCommune": "89099", - "libelleAcheminement": "CHENY", - "nomCommune": "CHENY" + "codePostal": "12550", + "codeCommune": "12035", + "libelleAcheminement": "BRASC", + "nomCommune": "BRASC" }, { - "codePostal": "01310", - "codeCommune": "01065", - "libelleAcheminement": "BUELLAS", - "nomCommune": "BUELLAS" + "codePostal": "12330", + "codeCommune": "12288", + "libelleAcheminement": "VALADY", + "nomCommune": "VALADY" }, { - "codePostal": "89400", - "codeCommune": "89105", - "libelleAcheminement": "CHICHERY", - "nomCommune": "CHICHERY" + "codePostal": "12600", + "codeCommune": "12036", + "libelleAcheminement": "BROMMAT", + "nomCommune": "BROMMAT" }, { - "codePostal": "01250", - "codeCommune": "01072", - "libelleAcheminement": "CEYZERIAT", - "nomCommune": "CEYZERIAT" + "codePostal": "12250", + "codeCommune": "12295", + "libelleAcheminement": "VIALA DU PAS DE JAUX", + "nomCommune": "VIALA DU PAS DE JAUX" }, { - "codePostal": "89800", - "codeCommune": "89123", - "libelleAcheminement": "COURGIS", - "nomCommune": "COURGIS" + "codePostal": "12480", + "codeCommune": "12037", + "libelleAcheminement": "BROQUIES", + "nomCommune": "BROQUIES" }, { - "codePostal": "01260", - "codeCommune": "01079", - "libelleAcheminement": "CHAMPAGNE EN VALROMEY", - "nomCommune": "CHAMPAGNE EN VALROMEY" + "codePostal": "12490", + "codeCommune": "12296", + "libelleAcheminement": "VIALA DU TARN", + "nomCommune": "VIALA DU TARN" }, { - "codePostal": "89440", - "codeCommune": "89128", - "libelleAcheminement": "COUTARNOUX", - "nomCommune": "COUTARNOUX" + "codePostal": "12360", + "codeCommune": "12039", + "libelleAcheminement": "BRUSQUE", + "nomCommune": "BRUSQUE" }, { - "codePostal": "01420", - "codeCommune": "01082", - "libelleAcheminement": "CHANAY", - "nomCommune": "CHANAY" + "codePostal": "12580", + "codeCommune": "12298", + "libelleAcheminement": "VILLECOMTAL", + "nomCommune": "VILLECOMTAL" }, { - "codePostal": "89390", - "codeCommune": "89132", - "libelleAcheminement": "CRY", - "nomCommune": "CRY" + "codePostal": "12800", + "codeCommune": "12041", + "libelleAcheminement": "CABANES", + "nomCommune": "CABANES" }, { - "codePostal": "01990", - "codeCommune": "01083", - "libelleAcheminement": "CHANEINS", - "nomCommune": "CHANEINS" + "codePostal": "12260", + "codeCommune": "12301", + "libelleAcheminement": "VILLENEUVE", + "nomCommune": "VILLENEUVE" }, { - "codePostal": "89420", - "codeCommune": "89134", - "libelleAcheminement": "CUSSY LES FORGES", - "nomCommune": "CUSSY LES FORGES" + "codePostal": "12360", + "codeCommune": "12044", + "libelleAcheminement": "CAMARES", + "nomCommune": "CAMARES" }, { - "codePostal": "01130", - "codeCommune": "01087", - "libelleAcheminement": "CHARIX", - "nomCommune": "CHARIX" + "codePostal": "13080", + "codeCommune": "13001", + "libelleAcheminement": "AIX EN PROVENCE", + "nomCommune": "AIX EN PROVENCE" }, { - "codePostal": "89290", - "codeCommune": "89155", - "libelleAcheminement": "ESCOLIVES STE CAMILLE", - "nomCommune": "ESCOLIVES STE CAMILLE" + "codePostal": "12260", + "codeCommune": "12053", + "libelleAcheminement": "LA CAPELLE BALAGUIER", + "nomCommune": "LA CAPELLE BALAGUIER" }, { - "codePostal": "01190", - "codeCommune": "01094", - "libelleAcheminement": "CHAVANNES SUR REYSSOUZE", - "nomCommune": "CHAVANNES SUR REYSSOUZE" + "codePostal": "13100", + "codeCommune": "13001", + "libelleAcheminement": "AIX EN PROVENCE", + "nomCommune": "AIX EN PROVENCE" }, { - "codePostal": "89510", - "codeCommune": "89160", - "libelleAcheminement": "ETIGNY", - "nomCommune": "ETIGNY" + "codePostal": "12160", + "codeCommune": "12056", + "libelleAcheminement": "BARAQUEVILLE", + "nomCommune": "BARAQUEVILLE" }, { - "codePostal": "01250", - "codeCommune": "01095", - "libelleAcheminement": "NIVIGNE ET SURAN", - "nomCommune": "NIVIGNE ET SURAN" + "codePostal": "13980", + "codeCommune": "13003", + "libelleAcheminement": "ALLEINS", + "nomCommune": "ALLEINS" }, { - "codePostal": "89110", - "codeCommune": "89163", - "libelleAcheminement": "LA FERTE LOUPIERE", - "nomCommune": "LA FERTE LOUPIERE" + "codePostal": "12330", + "codeCommune": "12066", + "libelleAcheminement": "CLAIRVAUX D AVEYRON", + "nomCommune": "CLAIRVAUX D AVEYRON" }, { - "codePostal": "01510", - "codeCommune": "01098", - "libelleAcheminement": "CHAZEY BONS", - "nomCommune": "CHAZEY BONS" + "codePostal": "13104", + "codeCommune": "13004", + "libelleAcheminement": "ARLES", + "nomCommune": "ARLES" }, { - "codePostal": "89190", - "codeCommune": "89165", - "libelleAcheminement": "FLACY", - "nomCommune": "FLACY" + "codePostal": "12240", + "codeCommune": "12068", + "libelleAcheminement": "COLOMBIES", + "nomCommune": "COLOMBIES" }, { - "codePostal": "01150", - "codeCommune": "01099", - "libelleAcheminement": "CHAZEY SUR AIN", - "nomCommune": "CHAZEY SUR AIN" + "codePostal": "13930", + "codeCommune": "13006", + "libelleAcheminement": "AUREILLE", + "nomCommune": "AUREILLE" }, { - "codePostal": "89130", - "codeCommune": "89173", - "libelleAcheminement": "FONTAINES", - "nomCommune": "FONTAINES" + "codePostal": "12170", + "codeCommune": "12075", + "libelleAcheminement": "CONNAC", + "nomCommune": "CONNAC" }, { - "codePostal": "01230", - "codeCommune": "01111", - "libelleAcheminement": "CONAND", - "nomCommune": "CONAND" + "codePostal": "13570", + "codeCommune": "13010", + "libelleAcheminement": "BARBENTANE", + "nomCommune": "BARBENTANE" }, { - "codePostal": "89450", - "codeCommune": "89176", - "libelleAcheminement": "FONTENAY PRES VEZELAY", - "nomCommune": "FONTENAY PRES VEZELAY" + "codePostal": "12320", + "codeCommune": "12076", + "libelleAcheminement": "CONQUES EN ROUERGUE", + "nomCommune": "CONQUES EN ROUERGUE" }, { - "codePostal": "01430", - "codeCommune": "01112", - "libelleAcheminement": "CONDAMINE", - "nomCommune": "CONDAMINE" + "codePostal": "13520", + "codeCommune": "13011", + "libelleAcheminement": "LES BAUX DE PROVENCE", + "nomCommune": "LES BAUX DE PROVENCE" }, { - "codePostal": "89150", - "codeCommune": "89180", - "libelleAcheminement": "FOUCHERES", - "nomCommune": "FOUCHERES" + "codePostal": "12540", + "codeCommune": "12077", + "libelleAcheminement": "CORNUS", + "nomCommune": "CORNUS" }, { - "codePostal": "01300", - "codeCommune": "01117", - "libelleAcheminement": "CONZIEU", - "nomCommune": "CONZIEU" + "codePostal": "13100", + "codeCommune": "13012", + "libelleAcheminement": "BEAURECUEIL", + "nomCommune": "BEAURECUEIL" }, { - "codePostal": "89160", - "codeCommune": "89184", - "libelleAcheminement": "FULVY", - "nomCommune": "FULVY" + "codePostal": "12400", + "codeCommune": "12078", + "libelleAcheminement": "LES COSTES GOZON", + "nomCommune": "LES COSTES GOZON" }, { - "codePostal": "01310", - "codeCommune": "01140", - "libelleAcheminement": "CURTAFOND", - "nomCommune": "CURTAFOND" + "codePostal": "13440", + "codeCommune": "13018", + "libelleAcheminement": "CABANNES", + "nomCommune": "CABANNES" }, { - "codePostal": "89200", - "codeCommune": "89190", - "libelleAcheminement": "GIVRY", - "nomCommune": "GIVRY" + "codePostal": "12190", + "codeCommune": "12079", + "libelleAcheminement": "COUBISOU", + "nomCommune": "COUBISOU" }, { - "codePostal": "01120", - "codeCommune": "01142", - "libelleAcheminement": "DAGNEUX", - "nomCommune": "DAGNEUX" + "codePostal": "13480", + "codeCommune": "13019", + "libelleAcheminement": "CABRIES", + "nomCommune": "CABRIES" }, { - "codePostal": "89113", - "codeCommune": "89196", - "libelleAcheminement": "VALRAVILLON", - "nomCommune": "VALRAVILLON" + "codePostal": "12350", + "codeCommune": "12091", + "libelleAcheminement": "DRULHE", + "nomCommune": "DRULHE" }, { - "codePostal": "01130", - "codeCommune": "01152", - "libelleAcheminement": "ECHALLON", - "nomCommune": "ECHALLON" + "codePostal": "13350", + "codeCommune": "13024", + "libelleAcheminement": "CHARLEVAL", + "nomCommune": "CHARLEVAL" }, { - "codePostal": "89420", - "codeCommune": "89197", - "libelleAcheminement": "GUILLON TERRE PLAINE", - "nomCommune": "GUILLON TERRE PLAINE" + "codePostal": "12140", + "codeCommune": "12094", + "libelleAcheminement": "ENTRAYGUES SUR TRUYERE", + "nomCommune": "ENTRAYGUES SUR TRUYERE" }, { - "codePostal": "01170", - "codeCommune": "01153", - "libelleAcheminement": "ECHENEVEX", - "nomCommune": "ECHENEVEX" + "codePostal": "13220", + "codeCommune": "13026", + "libelleAcheminement": "CHATEAUNEUF LES MARTIGUES", + "nomCommune": "CHATEAUNEUF LES MARTIGUES" }, { - "codePostal": "89250", - "codeCommune": "89198", - "libelleAcheminement": "GURGY", - "nomCommune": "GURGY" + "codePostal": "12450", + "codeCommune": "12102", + "libelleAcheminement": "FLAVIN", + "nomCommune": "FLAVIN" }, { - "codePostal": "01570", - "codeCommune": "01159", - "libelleAcheminement": "FEILLENS", - "nomCommune": "FEILLENS" + "codePostal": "13220", + "codeCommune": "13026", + "libelleAcheminement": "CHATEAUNEUF LES MARTIGUES", + "nomCommune": "CHATEAUNEUF LES MARTIGUES" }, { - "codePostal": "89270", - "codeCommune": "89233", - "libelleAcheminement": "LUCY SUR CURE", - "nomCommune": "LUCY SUR CURE" + "codePostal": "12140", + "codeCommune": "12103", + "libelleAcheminement": "FLORENTIN LA CAPELLE", + "nomCommune": "FLORENTIN LA CAPELLE" }, { - "codePostal": "01090", - "codeCommune": "01165", - "libelleAcheminement": "FRANCHELEINS", - "nomCommune": "FRANCHELEINS" + "codePostal": "13600", + "codeCommune": "13028", + "libelleAcheminement": "LA CIOTAT", + "nomCommune": "LA CIOTAT" }, { - "codePostal": "89420", - "codeCommune": "89244", - "libelleAcheminement": "MARMEAUX", - "nomCommune": "MARMEAUX" + "codePostal": "12270", + "codeCommune": "12105", + "libelleAcheminement": "LA FOUILLADE", + "nomCommune": "LA FOUILLADE" }, { - "codePostal": "01290", - "codeCommune": "01179", - "libelleAcheminement": "GRIEGES", - "nomCommune": "GRIEGES" + "codePostal": "13820", + "codeCommune": "13033", + "libelleAcheminement": "ENSUES LA REDONNE", + "nomCommune": "ENSUES LA REDONNE" }, { - "codePostal": "89440", - "codeCommune": "89246", - "libelleAcheminement": "MASSANGIS", - "nomCommune": "MASSANGIS" + "codePostal": "12340", + "codeCommune": "12106", + "libelleAcheminement": "GABRIAC", + "nomCommune": "GABRIAC" }, { - "codePostal": "01090", - "codeCommune": "01183", - "libelleAcheminement": "GUEREINS", - "nomCommune": "GUEREINS" + "codePostal": "13810", + "codeCommune": "13034", + "libelleAcheminement": "EYGALIERES", + "nomCommune": "EYGALIERES" }, { - "codePostal": "89144", - "codeCommune": "89250", - "libelleAcheminement": "MERE", - "nomCommune": "MERE" + "codePostal": "12220", + "codeCommune": "12108", + "libelleAcheminement": "GALGAN", + "nomCommune": "GALGAN" }, { - "codePostal": "01110", - "codeCommune": "01185", - "libelleAcheminement": "PLATEAU D HAUTEVILLE", - "nomCommune": "PLATEAU D HAUTEVILLE" + "codePostal": "13710", + "codeCommune": "13040", + "libelleAcheminement": "FUVEAU", + "nomCommune": "FUVEAU" }, { - "codePostal": "89110", - "codeCommune": "89251", - "libelleAcheminement": "MERRY LA VALLEE", - "nomCommune": "MERRY LA VALLEE" + "codePostal": "12140", + "codeCommune": "12110", + "libelleAcheminement": "GOLINHAC", + "nomCommune": "GOLINHAC" }, { - "codePostal": "01260", - "codeCommune": "01187", - "libelleAcheminement": "HAUT VALROMEY", - "nomCommune": "HAUT VALROMEY" + "codePostal": "13450", + "codeCommune": "13044", + "libelleAcheminement": "GRANS", + "nomCommune": "GRANS" }, { - "codePostal": "89560", - "codeCommune": "89252", - "libelleAcheminement": "MERRY SEC", - "nomCommune": "MERRY SEC" + "codePostal": "12500", + "codeCommune": "12124", + "libelleAcheminement": "LASSOUTS", + "nomCommune": "LASSOUTS" }, { - "codePostal": "01260", - "codeCommune": "01187", - "libelleAcheminement": "HAUT VALROMEY", - "nomCommune": "HAUT VALROMEY" + "codePostal": "13118", + "codeCommune": "13047", + "libelleAcheminement": "ISTRES", + "nomCommune": "ISTRES" }, { - "codePostal": "89130", - "codeCommune": "89254", - "libelleAcheminement": "MEZILLES", - "nomCommune": "MEZILLES" + "codePostal": "12450", + "codeCommune": "12133", + "libelleAcheminement": "LUC LA PRIMAUBE", + "nomCommune": "LUC LA PRIMAUBE" }, { - "codePostal": "01200", - "codeCommune": "01189", - "libelleAcheminement": "INJOUX GENISSIAT", - "nomCommune": "INJOUX GENISSIAT" + "codePostal": "13680", + "codeCommune": "13051", + "libelleAcheminement": "LANCON PROVENCE", + "nomCommune": "LANCON PROVENCE" }, { - "codePostal": "89230", - "codeCommune": "89265", - "libelleAcheminement": "MONTIGNY LA RESLE", - "nomCommune": "MONTIGNY LA RESLE" + "codePostal": "12350", + "codeCommune": "12136", + "libelleAcheminement": "MALEVILLE", + "nomCommune": "MALEVILLE" }, { - "codePostal": "01430", - "codeCommune": "01191", - "libelleAcheminement": "IZENAVE", - "nomCommune": "IZENAVE" + "codePostal": "13370", + "codeCommune": "13053", + "libelleAcheminement": "MALLEMORT", + "nomCommune": "MALLEMORT" }, { - "codePostal": "89570", - "codeCommune": "89276", - "libelleAcheminement": "NEUVY SAUTOUR", - "nomCommune": "NEUVY SAUTOUR" + "codePostal": "12120", + "codeCommune": "12144", + "libelleAcheminement": "MELJAC", + "nomCommune": "MELJAC" }, { - "codePostal": "01580", - "codeCommune": "01192", - "libelleAcheminement": "IZERNORE", - "nomCommune": "IZERNORE" + "codePostal": "13650", + "codeCommune": "13059", + "libelleAcheminement": "MEYRARGUES", + "nomCommune": "MEYRARGUES" }, { - "codePostal": "89160", - "codeCommune": "89284", - "libelleAcheminement": "PACY SUR ARMANCON", - "nomCommune": "PACY SUR ARMANCON" + "codePostal": "12100", + "codeCommune": "12145", + "libelleAcheminement": "MILLAU", + "nomCommune": "MILLAU" }, { - "codePostal": "01150", - "codeCommune": "01202", - "libelleAcheminement": "LAGNIEU", - "nomCommune": "LAGNIEU" + "codePostal": "13660", + "codeCommune": "13067", + "libelleAcheminement": "ORGON", + "nomCommune": "ORGON" }, { - "codePostal": "89300", - "codeCommune": "89289", - "libelleAcheminement": "PAROY SUR THOLON", - "nomCommune": "PAROY SUR THOLON" + "codePostal": "12220", + "codeCommune": "12148", + "libelleAcheminement": "MONTBAZENS", + "nomCommune": "MONTBAZENS" }, { - "codePostal": "01130", - "codeCommune": "01204", - "libelleAcheminement": "LE POIZAT LALLEYRIAT", - "nomCommune": "LE POIZAT LALLEYRIAT" + "codePostal": "13821", + "codeCommune": "13070", + "libelleAcheminement": "LA PENNE SUR HUVEAUNE", + "nomCommune": "LA PENNE SUR HUVEAUNE" }, { - "codePostal": "89510", - "codeCommune": "89291", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "12720", + "codeCommune": "12160", + "libelleAcheminement": "MOSTUEJOULS", + "nomCommune": "MOSTUEJOULS" }, { - "codePostal": "01130", - "codeCommune": "01204", - "libelleAcheminement": "LE POIZAT LALLEYRIAT", - "nomCommune": "LE POIZAT LALLEYRIAT" + "codePostal": "13170", + "codeCommune": "13071", + "libelleAcheminement": "LES PENNES MIRABEAU", + "nomCommune": "LES PENNES MIRABEAU" }, { - "codePostal": "89330", - "codeCommune": "89298", - "libelleAcheminement": "PIFFONDS", - "nomCommune": "PIFFONDS" + "codePostal": "12160", + "codeCommune": "12162", + "libelleAcheminement": "MOYRAZES", + "nomCommune": "MOYRAZES" }, { - "codePostal": "01330", - "codeCommune": "01207", - "libelleAcheminement": "LAPEYROUSE", - "nomCommune": "LAPEYROUSE" + "codePostal": "13170", + "codeCommune": "13071", + "libelleAcheminement": "LES PENNES MIRABEAU", + "nomCommune": "LES PENNES MIRABEAU" }, { - "codePostal": "89420", - "codeCommune": "89300", - "libelleAcheminement": "PISY", - "nomCommune": "PISY" + "codePostal": "12600", + "codeCommune": "12166", + "libelleAcheminement": "MUROLS", + "nomCommune": "MUROLS" }, { - "codePostal": "01350", - "codeCommune": "01208", - "libelleAcheminement": "LAVOURS", - "nomCommune": "LAVOURS" + "codePostal": "13170", + "codeCommune": "13071", + "libelleAcheminement": "LES PENNES MIRABEAU", + "nomCommune": "LES PENNES MIRABEAU" }, { - "codePostal": "89310", - "codeCommune": "89303", - "libelleAcheminement": "POILLY SUR SEREIN", - "nomCommune": "POILLY SUR SEREIN" + "codePostal": "12270", + "codeCommune": "12167", + "libelleAcheminement": "NAJAC", + "nomCommune": "NAJAC" }, { - "codePostal": "01150", - "codeCommune": "01213", - "libelleAcheminement": "LEYMENT", - "nomCommune": "LEYMENT" + "codePostal": "13870", + "codeCommune": "13083", + "libelleAcheminement": "ROGNONAS", + "nomCommune": "ROGNONAS" }, { - "codePostal": "89230", - "codeCommune": "89307", - "libelleAcheminement": "PONTIGNY", - "nomCommune": "PONTIGNY" + "codePostal": "12190", + "codeCommune": "12172", + "libelleAcheminement": "LE NAYRAC", + "nomCommune": "LE NAYRAC" }, { - "codePostal": "01300", - "codeCommune": "01227", - "libelleAcheminement": "MAGNIEU", - "nomCommune": "MAGNIEU" + "codePostal": "13830", + "codeCommune": "13085", + "libelleAcheminement": "ROQUEFORT LA BEDOULE", + "nomCommune": "ROQUEFORT LA BEDOULE" }, { - "codePostal": "89190", - "codeCommune": "89308", - "libelleAcheminement": "PONT SUR VANNE", - "nomCommune": "PONT SUR VANNE" + "codePostal": "12130", + "codeCommune": "12184", + "libelleAcheminement": "POMAYROLS", + "nomCommune": "POMAYROLS" }, { - "codePostal": "01680", - "codeCommune": "01233", - "libelleAcheminement": "MARCHAMP", - "nomCommune": "MARCHAMP" + "codePostal": "13670", + "codeCommune": "13089", + "libelleAcheminement": "ST ANDIOL", + "nomCommune": "ST ANDIOL" }, { - "codePostal": "89116", - "codeCommune": "89313", - "libelleAcheminement": "PRECY SUR VRIN", - "nomCommune": "PRECY SUR VRIN" + "codePostal": "12370", + "codeCommune": "12192", + "libelleAcheminement": "MOUNES PROHENCOUX", + "nomCommune": "MOUNES PROHENCOUX" }, { - "codePostal": "01300", - "codeCommune": "01234", - "libelleAcheminement": "MARIGNIEU", - "nomCommune": "MARIGNIEU" + "codePostal": "13760", + "codeCommune": "13091", + "libelleAcheminement": "ST CANNAT", + "nomCommune": "ST CANNAT" }, { - "codePostal": "89220", - "codeCommune": "89324", - "libelleAcheminement": "ROGNY LES SEPT ECLUSES", - "nomCommune": "ROGNY LES SEPT ECLUSES" + "codePostal": "12800", + "codeCommune": "12194", + "libelleAcheminement": "QUINS", + "nomCommune": "QUINS" }, { - "codePostal": "01600", - "codeCommune": "01238", - "libelleAcheminement": "MASSIEUX", - "nomCommune": "MASSIEUX" + "codePostal": "13610", + "codeCommune": "13093", + "libelleAcheminement": "ST ESTEVE JANSON", + "nomCommune": "ST ESTEVE JANSON" }, { - "codePostal": "89100", - "codeCommune": "89326", - "libelleAcheminement": "ROSOY", - "nomCommune": "ROSOY" + "codePostal": "12400", + "codeCommune": "12195", + "libelleAcheminement": "REBOURGUIL", + "nomCommune": "REBOURGUIL" }, { - "codePostal": "01580", - "codeCommune": "01240", - "libelleAcheminement": "MATAFELON GRANGES", - "nomCommune": "MATAFELON GRANGES" + "codePostal": "13103", + "codeCommune": "13094", + "libelleAcheminement": "ST ETIENNE DU GRES", + "nomCommune": "ST ETIENNE DU GRES" }, { - "codePostal": "89430", - "codeCommune": "89329", - "libelleAcheminement": "RUGNY", - "nomCommune": "RUGNY" + "codePostal": "12250", + "codeCommune": "12203", + "libelleAcheminement": "ROQUEFORT SUR SOULZON", + "nomCommune": "ROQUEFORT SUR SOULZON" }, { - "codePostal": "01370", - "codeCommune": "01241", - "libelleAcheminement": "MEILLONNAS", - "nomCommune": "MEILLONNAS" + "codePostal": "13210", + "codeCommune": "13100", + "libelleAcheminement": "ST REMY DE PROVENCE", + "nomCommune": "ST REMY DE PROVENCE" }, { - "codePostal": "89520", - "codeCommune": "89331", - "libelleAcheminement": "SAINPUITS", - "nomCommune": "SAINPUITS" + "codePostal": "12460", + "codeCommune": "12209", + "libelleAcheminement": "ST AMANS DES COTS", + "nomCommune": "ST AMANS DES COTS" }, { - "codePostal": "01700", - "codeCommune": "01249", - "libelleAcheminement": "MIRIBEL", - "nomCommune": "MIRIBEL" + "codePostal": "13560", + "codeCommune": "13105", + "libelleAcheminement": "SENAS", + "nomCommune": "SENAS" }, { - "codePostal": "89440", - "codeCommune": "89339", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "12270", + "codeCommune": "12210", + "libelleAcheminement": "ST ANDRE DE NAJAC", + "nomCommune": "ST ANDRE DE NAJAC" }, { - "codePostal": "01140", - "codeCommune": "01252", - "libelleAcheminement": "MOGNENEINS", - "nomCommune": "MOGNENEINS" + "codePostal": "13240", + "codeCommune": "13106", + "libelleAcheminement": "SEPTEMES LES VALLONS", + "nomCommune": "SEPTEMES LES VALLONS" }, { - "codePostal": "89330", - "codeCommune": "89348", - "libelleAcheminement": "ST JULIEN DU SAULT", - "nomCommune": "ST JULIEN DU SAULT" + "codePostal": "12540", + "codeCommune": "12212", + "libelleAcheminement": "ST BEAULIZE", + "nomCommune": "ST BEAULIZE" }, { - "codePostal": "01390", - "codeCommune": "01261", - "libelleAcheminement": "MONTHIEUX", - "nomCommune": "MONTHIEUX" + "codePostal": "13240", + "codeCommune": "13106", + "libelleAcheminement": "SEPTEMES LES VALLONS", + "nomCommune": "SEPTEMES LES VALLONS" }, { - "codePostal": "89110", - "codeCommune": "89360", - "libelleAcheminement": "ST MAURICE LE VIEIL", - "nomCommune": "ST MAURICE LE VIEIL" + "codePostal": "12620", + "codeCommune": "12213", + "libelleAcheminement": "ST BEAUZELY", + "nomCommune": "ST BEAUZELY" }, { - "codePostal": "01400", - "codeCommune": "01272", - "libelleAcheminement": "NEUVILLE LES DAMES", - "nomCommune": "NEUVILLE LES DAMES" + "codePostal": "13100", + "codeCommune": "13109", + "libelleAcheminement": "LE THOLONET", + "nomCommune": "LE THOLONET" }, { - "codePostal": "89110", - "codeCommune": "89361", - "libelleAcheminement": "ST MAURICE THIZOUAILLE", - "nomCommune": "ST MAURICE THIZOUAILLE" + "codePostal": "12470", + "codeCommune": "12214", + "libelleAcheminement": "ST CHELY D AUBRAC", + "nomCommune": "ST CHELY D AUBRAC" }, { - "codePostal": "01100", - "codeCommune": "01283", - "libelleAcheminement": "OYONNAX", - "nomCommune": "OYONNAX" + "codePostal": "13880", + "codeCommune": "13112", + "libelleAcheminement": "VELAUX", + "nomCommune": "VELAUX" }, { - "codePostal": "89150", - "codeCommune": "89370", - "libelleAcheminement": "ST VALERIEN", - "nomCommune": "ST VALERIEN" + "codePostal": "12420", + "codeCommune": "12223", + "libelleAcheminement": "ARGENCES EN AUBRAC", + "nomCommune": "ARGENCES EN AUBRAC" }, { - "codePostal": "01600", - "codeCommune": "01285", - "libelleAcheminement": "PARCIEUX", - "nomCommune": "PARCIEUX" + "codePostal": "13122", + "codeCommune": "13114", + "libelleAcheminement": "VENTABREN", + "nomCommune": "VENTABREN" }, { - "codePostal": "89100", - "codeCommune": "89373", - "libelleAcheminement": "SALIGNY", - "nomCommune": "SALIGNY" + "codePostal": "12100", + "codeCommune": "12225", + "libelleAcheminement": "ST GEORGES DE LUZENCON", + "nomCommune": "ST GEORGES DE LUZENCON" }, { - "codePostal": "01300", - "codeCommune": "01286", - "libelleAcheminement": "PARVES ET NATTAGES", - "nomCommune": "PARVES ET NATTAGES" + "codePostal": "13111", + "codeCommune": "13118", + "libelleAcheminement": "COUDOUX", + "nomCommune": "COUDOUX" }, { - "codePostal": "89420", - "codeCommune": "89377", - "libelleAcheminement": "SAUVIGNY LE BEUREAL", - "nomCommune": "SAUVIGNY LE BEUREAL" + "codePostal": "12260", + "codeCommune": "12227", + "libelleAcheminement": "ST IGEST", + "nomCommune": "ST IGEST" }, { - "codePostal": "01300", - "codeCommune": "01286", - "libelleAcheminement": "PARVES ET NATTAGES", - "nomCommune": "PARVES ET NATTAGES" + "codePostal": "13003", + "codeCommune": "13203", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 03" }, { - "codePostal": "89200", - "codeCommune": "89378", - "libelleAcheminement": "SAUVIGNY LE BOIS", - "nomCommune": "SAUVIGNY LE BOIS" + "codePostal": "12550", + "codeCommune": "12233", + "libelleAcheminement": "ST JUERY", + "nomCommune": "ST JUERY" }, { - "codePostal": "01630", - "codeCommune": "01288", - "libelleAcheminement": "PERON", - "nomCommune": "PERON" + "codePostal": "13008", + "codeCommune": "13208", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 08" }, { - "codePostal": "89520", - "codeCommune": "89400", - "libelleAcheminement": "SOUGERES EN PUISAYE", - "nomCommune": "SOUGERES EN PUISAYE" + "codePostal": "12170", + "codeCommune": "12235", + "libelleAcheminement": "ST JUST SUR VIAUR", + "nomCommune": "ST JUST SUR VIAUR" }, { - "codePostal": "01960", - "codeCommune": "01289", - "libelleAcheminement": "PERONNAS", - "nomCommune": "PERONNAS" + "codePostal": "13009", + "codeCommune": "13209", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 09" }, { - "codePostal": "89570", - "codeCommune": "89402", - "libelleAcheminement": "SOUMAINTRAIN", - "nomCommune": "SOUMAINTRAIN" + "codePostal": "12490", + "codeCommune": "12243", + "libelleAcheminement": "ST ROME DE CERNON", + "nomCommune": "ST ROME DE CERNON" }, { - "codePostal": "01330", - "codeCommune": "01299", - "libelleAcheminement": "LE PLANTAY", - "nomCommune": "LE PLANTAY" + "codePostal": "13010", + "codeCommune": "13210", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 10" }, { - "codePostal": "89160", - "codeCommune": "89403", - "libelleAcheminement": "STIGNY", - "nomCommune": "STIGNY" + "codePostal": "12300", + "codeCommune": "12246", + "libelleAcheminement": "ST SANTIN", + "nomCommune": "ST SANTIN" }, { - "codePostal": "01190", - "codeCommune": "01305", - "libelleAcheminement": "PONT DE VAUX", - "nomCommune": "PONT DE VAUX" + "codePostal": "14400", + "codeCommune": "14003", + "libelleAcheminement": "AGY", + "nomCommune": "AGY" }, { - "codePostal": "89100", - "codeCommune": "89404", - "libelleAcheminement": "SUBLIGNY", - "nomCommune": "SUBLIGNY" + "codePostal": "12380", + "codeCommune": "12248", + "libelleAcheminement": "ST SERNIN SUR RANCE", + "nomCommune": "ST SERNIN SUR RANCE" }, { - "codePostal": "01400", - "codeCommune": "01328", - "libelleAcheminement": "ROMANS", - "nomCommune": "ROMANS" + "codePostal": "14370", + "codeCommune": "14005", + "libelleAcheminement": "VALAMBRAY", + "nomCommune": "VALAMBRAY" }, { - "codePostal": "89560", - "codeCommune": "89405", - "libelleAcheminement": "LES HAUTS DE FORTERRE", - "nomCommune": "LES HAUTS DE FORTERRE" + "codePostal": "12370", + "codeCommune": "12249", + "libelleAcheminement": "ST SEVER DU MOUSTIER", + "nomCommune": "ST SEVER DU MOUSTIER" }, { - "codePostal": "01380", - "codeCommune": "01332", - "libelleAcheminement": "ST ANDRE DE BAGE", - "nomCommune": "ST ANDRE DE BAGE" + "codePostal": "14240", + "codeCommune": "14011", + "libelleAcheminement": "AURSEULLES", + "nomCommune": "AURSEULLES" }, { - "codePostal": "89200", - "codeCommune": "89410", - "libelleAcheminement": "THAROT", - "nomCommune": "THAROT" + "codePostal": "12460", + "codeCommune": "12250", + "libelleAcheminement": "ST SYMPHORIEN DE THENIERES", + "nomCommune": "ST SYMPHORIEN DE THENIERES" }, { - "codePostal": "01240", - "codeCommune": "01335", - "libelleAcheminement": "ST ANDRE LE BOUCHOUX", - "nomCommune": "ST ANDRE LE BOUCHOUX" + "codePostal": "14240", + "codeCommune": "14011", + "libelleAcheminement": "AURSEULLES", + "nomCommune": "AURSEULLES" }, { - "codePostal": "89260", - "codeCommune": "89414", - "libelleAcheminement": "THORIGNY SUR OREUSE", - "nomCommune": "THORIGNY SUR OREUSE" + "codePostal": "12260", + "codeCommune": "12256", + "libelleAcheminement": "SALVAGNAC CAJARC", + "nomCommune": "SALVAGNAC CAJARC" }, { - "codePostal": "01960", - "codeCommune": "01336", - "libelleAcheminement": "ST ANDRE SUR VIEUX JONC", - "nomCommune": "ST ANDRE SUR VIEUX JONC" + "codePostal": "14240", + "codeCommune": "14011", + "libelleAcheminement": "AURSEULLES", + "nomCommune": "AURSEULLES" }, { - "codePostal": "89460", - "codeCommune": "89424", - "libelleAcheminement": "TRUCY SUR YONNE", - "nomCommune": "TRUCY SUR YONNE" + "codePostal": "12700", + "codeCommune": "12257", + "libelleAcheminement": "CAUSSE ET DIEGE", + "nomCommune": "CAUSSE ET DIEGE" }, { - "codePostal": "01140", - "codeCommune": "01351", - "libelleAcheminement": "ST ETIENNE SUR CHALARONNE", - "nomCommune": "ST ETIENNE SUR CHALARONNE" + "codePostal": "14430", + "codeCommune": "14012", + "libelleAcheminement": "ANGERVILLE", + "nomCommune": "ANGERVILLE" }, { - "codePostal": "89320", - "codeCommune": "89432", - "libelleAcheminement": "VAUDEURS", - "nomCommune": "VAUDEURS" + "codePostal": "12800", + "codeCommune": "12262", + "libelleAcheminement": "SAUVETERRE DE ROUERGUE", + "nomCommune": "SAUVETERRE DE ROUERGUE" }, { - "codePostal": "01380", - "codeCommune": "01355", - "libelleAcheminement": "ST GENIS SUR MENTHON", - "nomCommune": "ST GENIS SUR MENTHON" + "codePostal": "14117", + "codeCommune": "14021", + "libelleAcheminement": "ARROMANCHES LES BAINS", + "nomCommune": "ARROMANCHES LES BAINS" }, { - "codePostal": "89210", - "codeCommune": "89436", - "libelleAcheminement": "VENIZY", - "nomCommune": "VENIZY" + "codePostal": "12200", + "codeCommune": "12263", + "libelleAcheminement": "SAVIGNAC", + "nomCommune": "SAVIGNAC" }, { - "codePostal": "01400", - "codeCommune": "01356", - "libelleAcheminement": "ST GEORGES SUR RENON", - "nomCommune": "ST GEORGES SUR RENON" + "codePostal": "14960", + "codeCommune": "14022", + "libelleAcheminement": "ASNELLES", + "nomCommune": "ASNELLES" }, { - "codePostal": "89240", - "codeCommune": "89453", - "libelleAcheminement": "VILLEFARGEAU", - "nomCommune": "VILLEFARGEAU" + "codePostal": "12290", + "codeCommune": "12266", + "libelleAcheminement": "SEGUR", + "nomCommune": "SEGUR" }, { - "codePostal": "01800", - "codeCommune": "01361", - "libelleAcheminement": "ST JEAN DE NIOST", - "nomCommune": "ST JEAN DE NIOST" + "codePostal": "14260", + "codeCommune": "14027", + "libelleAcheminement": "LES MONTS D AUNAY", + "nomCommune": "LES MONTS D AUNAY" }, { - "codePostal": "89140", - "codeCommune": "89456", - "libelleAcheminement": "VILLEMANOCHE", - "nomCommune": "VILLEMANOCHE" + "codePostal": "12380", + "codeCommune": "12269", + "libelleAcheminement": "LA SERRE", + "nomCommune": "LA SERRE" }, { - "codePostal": "01750", - "codeCommune": "01370", - "libelleAcheminement": "ST LAURENT SUR SAONE", - "nomCommune": "ST LAURENT SUR SAONE" + "codePostal": "14260", + "codeCommune": "14027", + "libelleAcheminement": "LES MONTS D AUNAY", + "nomCommune": "LES MONTS D AUNAY" }, { - "codePostal": "89150", - "codeCommune": "89459", - "libelleAcheminement": "VILLENEUVE LA DONDAGRE", - "nomCommune": "VILLENEUVE LA DONDAGRE" + "codePostal": "12150", + "codeCommune": "12270", + "libelleAcheminement": "SEVERAC D AVEYRON", + "nomCommune": "SEVERAC D AVEYRON" }, { - "codePostal": "01510", - "codeCommune": "01372", - "libelleAcheminement": "ST MARTIN DE BAVEL", - "nomCommune": "ST MARTIN DE BAVEL" + "codePostal": "14260", + "codeCommune": "14027", + "libelleAcheminement": "LES MONTS D AUNAY", + "nomCommune": "LES MONTS D AUNAY" }, { - "codePostal": "89260", - "codeCommune": "89469", - "libelleAcheminement": "PERCENEIGE", - "nomCommune": "PERCENEIGE" + "codePostal": "12150", + "codeCommune": "12270", + "libelleAcheminement": "SEVERAC D AVEYRON", + "nomCommune": "SEVERAC D AVEYRON" }, { - "codePostal": "01560", - "codeCommune": "01388", - "libelleAcheminement": "ST TRIVIER DE COURTES", - "nomCommune": "ST TRIVIER DE COURTES" + "codePostal": "14770", + "codeCommune": "14027", + "libelleAcheminement": "LES MONTS D AUNAY", + "nomCommune": "LES MONTS D AUNAY" }, { - "codePostal": "89130", - "codeCommune": "89472", - "libelleAcheminement": "VILLIERS ST BENOIT", - "nomCommune": "VILLIERS ST BENOIT" + "codePostal": "12800", + "codeCommune": "12276", + "libelleAcheminement": "TAURIAC DE NAUCELLE", + "nomCommune": "TAURIAC DE NAUCELLE" }, { - "codePostal": "01990", - "codeCommune": "01389", - "libelleAcheminement": "ST TRIVIER SUR MOIGNANS", - "nomCommune": "ST TRIVIER SUR MOIGNANS" + "codePostal": "14280", + "codeCommune": "14030", + "libelleAcheminement": "AUTHIE", + "nomCommune": "AUTHIE" }, { - "codePostal": "89360", - "codeCommune": "89474", - "libelleAcheminement": "VILLIERS VINEUX", - "nomCommune": "VILLIERS VINEUX" + "codePostal": "12600", + "codeCommune": "12277", + "libelleAcheminement": "TAUSSAC", + "nomCommune": "TAUSSAC" }, { - "codePostal": "01220", - "codeCommune": "01397", - "libelleAcheminement": "SAUVERNY", - "nomCommune": "SAUVERNY" + "codePostal": "14340", + "codeCommune": "14033", + "libelleAcheminement": "AUVILLARS", + "nomCommune": "AUVILLARS" }, { - "codePostal": "89740", - "codeCommune": "89475", - "libelleAcheminement": "VILLON", - "nomCommune": "VILLON" + "codePostal": "12520", + "codeCommune": "12291", + "libelleAcheminement": "VERRIERES", + "nomCommune": "VERRIERES" }, { - "codePostal": "01580", - "codeCommune": "01410", - "libelleAcheminement": "SONTHONNAX LA MONTAGNE", - "nomCommune": "SONTHONNAX LA MONTAGNE" + "codePostal": "14480", + "codeCommune": "14038", + "libelleAcheminement": "BANVILLE", + "nomCommune": "BANVILLE" }, { - "codePostal": "89290", - "codeCommune": "89479", - "libelleAcheminement": "VINCELOTTES", - "nomCommune": "VINCELOTTES" + "codePostal": "12720", + "codeCommune": "12293", + "libelleAcheminement": "VEYREAU", + "nomCommune": "VEYREAU" }, { - "codePostal": "01600", - "codeCommune": "01423", - "libelleAcheminement": "TOUSSIEUX", - "nomCommune": "TOUSSIEUX" + "codePostal": "14620", + "codeCommune": "14043", + "libelleAcheminement": "BAROU EN AUGE", + "nomCommune": "BAROU EN AUGE" }, { - "codePostal": "89260", - "codeCommune": "89483", - "libelleAcheminement": "VOISINES", - "nomCommune": "VOISINES" + "codePostal": "12430", + "codeCommune": "12299", + "libelleAcheminement": "VILLEFRANCHE DE PANAT", + "nomCommune": "VILLEFRANCHE DE PANAT" }, { - "codePostal": "01370", - "codeCommune": "01426", - "libelleAcheminement": "VAL REVERMONT", - "nomCommune": "VAL REVERMONT" + "codePostal": "14380", + "codeCommune": "14054", + "libelleAcheminement": "BEAUMESNIL", + "nomCommune": "BEAUMESNIL" }, { - "codePostal": "90500", - "codeCommune": "90009", - "libelleAcheminement": "BEAUCOURT", - "nomCommune": "BEAUCOURT" + "codePostal": "12200", + "codeCommune": "12300", + "libelleAcheminement": "VILLEFRANCHE DE ROUERGUE", + "nomCommune": "VILLEFRANCHE DE ROUERGUE" }, { - "codePostal": "01270", - "codeCommune": "01432", - "libelleAcheminement": "VERJON", - "nomCommune": "VERJON" + "codePostal": "14910", + "codeCommune": "14059", + "libelleAcheminement": "BENERVILLE SUR MER", + "nomCommune": "BENERVILLE SUR MER" }, { - "codePostal": "90100", - "codeCommune": "90028", - "libelleAcheminement": "COURTELEVANT", - "nomCommune": "COURTELEVANT" + "codePostal": "12110", + "codeCommune": "12305", + "libelleAcheminement": "VIVIEZ", + "nomCommune": "VIVIEZ" }, { - "codePostal": "01330", - "codeCommune": "01443", - "libelleAcheminement": "VILLARS LES DOMBES", - "nomCommune": "VILLARS LES DOMBES" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "90400", - "codeCommune": "90032", - "libelleAcheminement": "DANJOUTIN", - "nomCommune": "DANJOUTIN" + "codePostal": "12410", + "codeCommune": "12307", + "libelleAcheminement": "CURAN", + "nomCommune": "CURAN" }, { - "codePostal": "01270", - "codeCommune": "01445", - "libelleAcheminement": "VILLEMOTIER", - "nomCommune": "VILLEMOTIER" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "90100", - "codeCommune": "90043", - "libelleAcheminement": "FAVEROIS", - "nomCommune": "FAVEROIS" + "codePostal": "13980", + "codeCommune": "13003", + "libelleAcheminement": "ALLEINS", + "nomCommune": "ALLEINS" }, { - "codePostal": "01250", - "codeCommune": "01447", - "libelleAcheminement": "VILLEREVERSURE", - "nomCommune": "VILLEREVERSURE" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "90340", - "codeCommune": "90048", - "libelleAcheminement": "FONTENELLE", - "nomCommune": "FONTENELLE" + "codePostal": "13280", + "codeCommune": "13004", + "libelleAcheminement": "ARLES", + "nomCommune": "ARLES" }, { - "codePostal": "02800", - "codeCommune": "02002", - "libelleAcheminement": "ACHERY", - "nomCommune": "ACHERY" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "90140", - "codeCommune": "90051", - "libelleAcheminement": "FROIDEFONTAINE", - "nomCommune": "FROIDEFONTAINE" + "codePostal": "13400", + "codeCommune": "13005", + "libelleAcheminement": "AUBAGNE", + "nomCommune": "AUBAGNE" }, { - "codePostal": "02340", - "codeCommune": "02004", - "libelleAcheminement": "AGNICOURT ET SECHELLES", - "nomCommune": "AGNICOURT ET SECHELLES" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "90100", - "codeCommune": "90055", - "libelleAcheminement": "GROSNE", - "nomCommune": "GROSNE" + "codePostal": "13130", + "codeCommune": "13014", + "libelleAcheminement": "BERRE L ETANG", + "nomCommune": "BERRE L ETANG" }, { - "codePostal": "02820", - "codeCommune": "02007", - "libelleAcheminement": "AIZELLES", - "nomCommune": "AIZELLES" + "codePostal": "14170", + "codeCommune": "14064", + "libelleAcheminement": "BERNIERES D AILLY", + "nomCommune": "BERNIERES D AILLY" }, { - "codePostal": "90100", - "codeCommune": "90056", - "libelleAcheminement": "JONCHEREY", - "nomCommune": "JONCHEREY" + "codePostal": "13150", + "codeCommune": "13017", + "libelleAcheminement": "BOULBON", + "nomCommune": "BOULBON" }, { - "codePostal": "02700", - "codeCommune": "02014", - "libelleAcheminement": "AMIGNY ROUY", - "nomCommune": "AMIGNY ROUY" + "codePostal": "14112", + "codeCommune": "14068", + "libelleAcheminement": "BIEVILLE BEUVILLE", + "nomCommune": "BIEVILLE BEUVILLE" }, { - "codePostal": "90500", - "codeCommune": "90070", - "libelleAcheminement": "MONTBOUTON", - "nomCommune": "MONTBOUTON" + "codePostal": "13260", + "codeCommune": "13022", + "libelleAcheminement": "CASSIS", + "nomCommune": "CASSIS" }, { - "codePostal": "02600", - "codeCommune": "02015", - "libelleAcheminement": "ANCIENVILLE", - "nomCommune": "ANCIENVILLE" + "codePostal": "14100", + "codeCommune": "14069", + "libelleAcheminement": "BEUVILLERS", + "nomCommune": "BEUVILLERS" }, { - "codePostal": "90340", - "codeCommune": "90074", - "libelleAcheminement": "NOVILLARD", - "nomCommune": "NOVILLARD" + "codePostal": "13990", + "codeCommune": "13038", + "libelleAcheminement": "FONTVIEILLE", + "nomCommune": "FONTVIEILLE" }, { - "codePostal": "02800", - "codeCommune": "02016", - "libelleAcheminement": "ANDELAIN", - "nomCommune": "ANDELAIN" + "codePostal": "14430", + "codeCommune": "14070", + "libelleAcheminement": "BEUVRON EN AUGE", + "nomCommune": "BEUVRON EN AUGE" }, { - "codePostal": "90110", - "codeCommune": "90086", - "libelleAcheminement": "ROMAGNY SOUS ROUGEMONT", - "nomCommune": "ROMAGNY SOUS ROUGEMONT" + "codePostal": "13710", + "codeCommune": "13040", + "libelleAcheminement": "FUVEAU", + "nomCommune": "FUVEAU" }, { - "codePostal": "02500", - "codeCommune": "02020", - "libelleAcheminement": "ANY MARTIN RIEUX", - "nomCommune": "ANY MARTIN RIEUX" + "codePostal": "14910", + "codeCommune": "14079", + "libelleAcheminement": "BLONVILLE SUR MER", + "nomCommune": "BLONVILLE SUR MER" }, { - "codePostal": "90380", - "codeCommune": "90087", - "libelleAcheminement": "ROPPE", - "nomCommune": "ROPPE" + "codePostal": "13120", + "codeCommune": "13041", + "libelleAcheminement": "GARDANNE", + "nomCommune": "GARDANNE" }, { - "codePostal": "02480", - "codeCommune": "02025", - "libelleAcheminement": "ARTEMPS", - "nomCommune": "ARTEMPS" + "codePostal": "14130", + "codeCommune": "14085", + "libelleAcheminement": "BONNEVILLE LA LOUVET", + "nomCommune": "BONNEVILLE LA LOUVET" }, { - "codePostal": "90100", - "codeCommune": "90096", - "libelleAcheminement": "THIANCOURT", - "nomCommune": "THIANCOURT" + "codePostal": "13690", + "codeCommune": "13045", + "libelleAcheminement": "GRAVESON", + "nomCommune": "GRAVESON" }, { - "codePostal": "02590", - "codeCommune": "02032", - "libelleAcheminement": "AUBIGNY AUX KAISNES", - "nomCommune": "AUBIGNY AUX KAISNES" + "codePostal": "14800", + "codeCommune": "14086", + "libelleAcheminement": "BONNEVILLE SUR TOUQUES", + "nomCommune": "BONNEVILLE SUR TOUQUES" }, { - "codePostal": "90200", - "codeCommune": "90102", - "libelleAcheminement": "VESCEMONT", - "nomCommune": "VESCEMONT" + "codePostal": "13113", + "codeCommune": "13049", + "libelleAcheminement": "LAMANON", + "nomCommune": "LAMANON" }, { - "codePostal": "02400", - "codeCommune": "02042", - "libelleAcheminement": "AZY SUR MARNE", - "nomCommune": "AZY SUR MARNE" + "codePostal": "14260", + "codeCommune": "14096", + "libelleAcheminement": "BREMOY", + "nomCommune": "BREMOY" }, { - "codePostal": "90300", - "codeCommune": "90103", - "libelleAcheminement": "VETRIGNE", - "nomCommune": "VETRIGNE" + "codePostal": "13910", + "codeCommune": "13052", + "libelleAcheminement": "MAILLANE", + "nomCommune": "MAILLANE" }, { - "codePostal": "02270", - "codeCommune": "02048", - "libelleAcheminement": "BARENTON SUR SERRE", - "nomCommune": "BARENTON SUR SERRE" + "codePostal": "14760", + "codeCommune": "14101", + "libelleAcheminement": "BRETTEVILLE SUR ODON", + "nomCommune": "BRETTEVILLE SUR ODON" }, { - "codePostal": "91470", - "codeCommune": "91017", - "libelleAcheminement": "ANGERVILLIERS", - "nomCommune": "ANGERVILLIERS" + "codePostal": "01640", + "codeCommune": "01002", + "libelleAcheminement": "L ABERGEMENT DE VAREY", + "nomCommune": "L ABERGEMENT DE VAREY" }, { - "codePostal": "02170", - "codeCommune": "02050", - "libelleAcheminement": "BARZY EN THIERACHE", - "nomCommune": "BARZY EN THIERACHE" + "codePostal": "13500", + "codeCommune": "13056", + "libelleAcheminement": "MARTIGUES", + "nomCommune": "MARTIGUES" }, { - "codePostal": "91200", - "codeCommune": "91027", - "libelleAcheminement": "ATHIS MONS", - "nomCommune": "ATHIS MONS" + "codePostal": "14390", + "codeCommune": "14117", + "libelleAcheminement": "CABOURG", + "nomCommune": "CABOURG" }, { - "codePostal": "02330", - "codeCommune": "02053", - "libelleAcheminement": "VALLEES EN CHAMPAGNE", - "nomCommune": "VALLEES EN CHAMPAGNE" + "codePostal": "01330", + "codeCommune": "01005", + "libelleAcheminement": "AMBERIEUX EN DOMBES", + "nomCommune": "AMBERIEUX EN DOMBES" }, { - "codePostal": "91410", - "codeCommune": "91035", - "libelleAcheminement": "AUTHON LA PLAINE", - "nomCommune": "AUTHON LA PLAINE" + "codePostal": "13500", + "codeCommune": "13056", + "libelleAcheminement": "MARTIGUES", + "nomCommune": "MARTIGUES" }, { - "codePostal": "02110", - "codeCommune": "02061", - "libelleAcheminement": "BECQUIGNY", - "nomCommune": "BECQUIGNY" + "codePostal": "14630", + "codeCommune": "14119", + "libelleAcheminement": "CAGNY", + "nomCommune": "CAGNY" }, { - "codePostal": "91630", - "codeCommune": "91041", - "libelleAcheminement": "AVRAINVILLE", - "nomCommune": "AVRAINVILLE" + "codePostal": "01300", + "codeCommune": "01006", + "libelleAcheminement": "AMBLEON", + "nomCommune": "AMBLEON" }, { - "codePostal": "02440", - "codeCommune": "02066", - "libelleAcheminement": "BENAY", - "nomCommune": "BENAY" + "codePostal": "13520", + "codeCommune": "13058", + "libelleAcheminement": "MAUSSANE LES ALPILLES", + "nomCommune": "MAUSSANE LES ALPILLES" }, { - "codePostal": "91590", - "codeCommune": "91047", - "libelleAcheminement": "BAULNE", - "nomCommune": "BAULNE" + "codePostal": "14340", + "codeCommune": "14126", + "libelleAcheminement": "CAMBREMER", + "nomCommune": "CAMBREMER" }, { - "codePostal": "02340", - "codeCommune": "02069", - "libelleAcheminement": "BERLISE", - "nomCommune": "BERLISE" + "codePostal": "01500", + "codeCommune": "01008", + "libelleAcheminement": "AMBUTRIX", + "nomCommune": "AMBUTRIX" }, { - "codePostal": "91150", - "codeCommune": "91067", - "libelleAcheminement": "BLANDY", - "nomCommune": "BLANDY" + "codePostal": "13150", + "codeCommune": "13061", + "libelleAcheminement": "ST PIERRE DE MEZOARGUES", + "nomCommune": "ST PIERRE DE MEZOARGUES" }, { - "codePostal": "02800", - "codeCommune": "02074", - "libelleAcheminement": "BERTAUCOURT EPOURDON", - "nomCommune": "BERTAUCOURT EPOURDON" + "codePostal": "14740", + "codeCommune": "14135", + "libelleAcheminement": "CARCAGNY", + "nomCommune": "CARCAGNY" }, { - "codePostal": "91720", - "codeCommune": "91069", - "libelleAcheminement": "BOIGNEVILLE", - "nomCommune": "BOIGNEVILLE" + "codePostal": "01300", + "codeCommune": "01009", + "libelleAcheminement": "ANDERT ET CONDON", + "nomCommune": "ANDERT ET CONDON" }, { - "codePostal": "02240", - "codeCommune": "02075", - "libelleAcheminement": "BERTHENICOURT", - "nomCommune": "BERTHENICOURT" + "codePostal": "13140", + "codeCommune": "13063", + "libelleAcheminement": "MIRAMAS", + "nomCommune": "MIRAMAS" }, { - "codePostal": "91690", - "codeCommune": "91079", - "libelleAcheminement": "BOISSY LA RIVIERE", - "nomCommune": "BOISSY LA RIVIERE" + "codePostal": "14490", + "codeCommune": "14140", + "libelleAcheminement": "CASTILLON", + "nomCommune": "CASTILLON" }, { - "codePostal": "02130", - "codeCommune": "02083", - "libelleAcheminement": "BEUVARDES", - "nomCommune": "BEUVARDES" + "codePostal": "01110", + "codeCommune": "01012", + "libelleAcheminement": "ARANC", + "nomCommune": "ARANC" }, { - "codePostal": "91150", - "codeCommune": "91109", - "libelleAcheminement": "BRIERES LES SCELLES", - "nomCommune": "BRIERES LES SCELLES" + "codePostal": "13520", + "codeCommune": "13068", + "libelleAcheminement": "PARADOU", + "nomCommune": "PARADOU" }, { - "codePostal": "02310", - "codeCommune": "02084", - "libelleAcheminement": "BEZU LE GUERY", - "nomCommune": "BEZU LE GUERY" + "codePostal": "14370", + "codeCommune": "14163", + "libelleAcheminement": "CLEVILLE", + "nomCommune": "CLEVILLE" }, { - "codePostal": "91150", - "codeCommune": "91112", - "libelleAcheminement": "BROUY", - "nomCommune": "BROUY" + "codePostal": "01300", + "codeCommune": "01015", + "libelleAcheminement": "ARBOYS EN BUGEY", + "nomCommune": "ARBOYS EN BUGEY" }, { - "codePostal": "02400", - "codeCommune": "02085", - "libelleAcheminement": "BEZU ST GERMAIN", - "nomCommune": "BEZU ST GERMAIN" + "codePostal": "13330", + "codeCommune": "13069", + "libelleAcheminement": "PELISSANNE", + "nomCommune": "PELISSANNE" }, { - "codePostal": "91440", - "codeCommune": "91122", - "libelleAcheminement": "BURES SUR YVETTE", - "nomCommune": "BURES SUR YVETTE" + "codePostal": "14770", + "codeCommune": "14174", + "libelleAcheminement": "CONDE EN NORMANDIE", + "nomCommune": "CONDE EN NORMANDIE" }, { - "codePostal": "02110", - "codeCommune": "02095", - "libelleAcheminement": "BOHAIN EN VERMANDOIS", - "nomCommune": "BOHAIN EN VERMANDOIS" + "codePostal": "01190", + "codeCommune": "01016", + "libelleAcheminement": "ARBIGNY", + "nomCommune": "ARBIGNY" }, { - "codePostal": "91580", - "codeCommune": "91148", - "libelleAcheminement": "CHAUFFOUR LES ETRECHY", - "nomCommune": "CHAUFFOUR LES ETRECHY" + "codePostal": "13821", + "codeCommune": "13070", + "libelleAcheminement": "LA PENNE SUR HUVEAUNE", + "nomCommune": "LA PENNE SUR HUVEAUNE" }, { - "codePostal": "02400", - "codeCommune": "02098", - "libelleAcheminement": "BONNEIL", - "nomCommune": "BONNEIL" + "codePostal": "14770", + "codeCommune": "14174", + "libelleAcheminement": "CONDE EN NORMANDIE", + "nomCommune": "CONDE EN NORMANDIE" }, { - "codePostal": "91210", - "codeCommune": "91201", - "libelleAcheminement": "DRAVEIL", - "nomCommune": "DRAVEIL" + "codePostal": "01510", + "codeCommune": "01019", + "libelleAcheminement": "ARMIX", + "nomCommune": "ARMIX" }, { - "codePostal": "02860", - "codeCommune": "02102", - "libelleAcheminement": "BOUCONVILLE VAUCLAIR", - "nomCommune": "BOUCONVILLE VAUCLAIR" + "codePostal": "13124", + "codeCommune": "13073", + "libelleAcheminement": "PEYPIN", + "nomCommune": "PEYPIN" }, { - "codePostal": "91210", - "codeCommune": "91201", - "libelleAcheminement": "DRAVEIL", - "nomCommune": "DRAVEIL" + "codePostal": "14123", + "codeCommune": "14181", + "libelleAcheminement": "CORMELLES LE ROYAL", + "nomCommune": "CORMELLES LE ROYAL" }, { - "codePostal": "02140", - "codeCommune": "02109", - "libelleAcheminement": "LA BOUTEILLE", - "nomCommune": "LA BOUTEILLE" + "codePostal": "01340", + "codeCommune": "01024", + "libelleAcheminement": "ATTIGNAT", + "nomCommune": "ATTIGNAT" }, { - "codePostal": "91360", - "codeCommune": "91216", - "libelleAcheminement": "EPINAY SUR ORGE", - "nomCommune": "EPINAY SUR ORGE" + "codePostal": "13750", + "codeCommune": "13076", + "libelleAcheminement": "PLAN D ORGON", + "nomCommune": "PLAN D ORGON" }, { - "codePostal": "02220", - "codeCommune": "02110", - "libelleAcheminement": "BRAINE", - "nomCommune": "BRAINE" + "codePostal": "14170", + "codeCommune": "14190", + "libelleAcheminement": "COURCY", + "nomCommune": "COURCY" }, { - "codePostal": "91580", - "codeCommune": "91226", - "libelleAcheminement": "ETRECHY", - "nomCommune": "ETRECHY" + "codePostal": "01380", + "codeCommune": "01026", + "libelleAcheminement": "BAGE LE CHATEL", + "nomCommune": "BAGE LE CHATEL" }, { - "codePostal": "02000", - "codeCommune": "02115", - "libelleAcheminement": "BRAYE EN LAONNOIS", - "nomCommune": "BRAYE EN LAONNOIS" + "codePostal": "13110", + "codeCommune": "13077", + "libelleAcheminement": "PORT DE BOUC", + "nomCommune": "PORT DE BOUC" }, { - "codePostal": "91470", - "codeCommune": "91249", - "libelleAcheminement": "FORGES LES BAINS", - "nomCommune": "FORGES LES BAINS" + "codePostal": "14470", + "codeCommune": "14191", + "libelleAcheminement": "COURSEULLES SUR MER", + "nomCommune": "COURSEULLES SUR MER" }, { - "codePostal": "02210", - "codeCommune": "02119", - "libelleAcheminement": "BRECY", - "nomCommune": "BRECY" + "codePostal": "01200", + "codeCommune": "01033", + "libelleAcheminement": "VALSERHONE", + "nomCommune": "VALSERHONE" }, { - "codePostal": "91590", - "codeCommune": "91293", - "libelleAcheminement": "GUIGNEVILLE SUR ESSONNE", - "nomCommune": "GUIGNEVILLE SUR ESSONNE" + "codePostal": "13230", + "codeCommune": "13078", + "libelleAcheminement": "PORT ST LOUIS DU RHONE", + "nomCommune": "PORT ST LOUIS DU RHONE" }, { - "codePostal": "02140", - "codeCommune": "02136", - "libelleAcheminement": "BURELLES", - "nomCommune": "BURELLES" + "codePostal": "14113", + "codeCommune": "14202", + "libelleAcheminement": "CRICQUEBOEUF", + "nomCommune": "CRICQUEBOEUF" }, { - "codePostal": "91430", - "codeCommune": "91312", - "libelleAcheminement": "IGNY", - "nomCommune": "IGNY" + "codePostal": "01260", + "codeCommune": "01036", + "libelleAcheminement": "VALROMEY SUR SERAN", + "nomCommune": "VALROMEY SUR SERAN" }, { - "codePostal": "02810", - "codeCommune": "02137", - "libelleAcheminement": "BUSSIARES", - "nomCommune": "BUSSIARES" + "codePostal": "13114", + "codeCommune": "13079", + "libelleAcheminement": "PUYLOUBIER", + "nomCommune": "PUYLOUBIER" }, { - "codePostal": "91630", - "codeCommune": "91332", - "libelleAcheminement": "LEUDEVILLE", - "nomCommune": "LEUDEVILLE" + "codePostal": "14690", + "codeCommune": "14223", + "libelleAcheminement": "LE DETROIT", + "nomCommune": "LE DETROIT" }, { - "codePostal": "02300", - "codeCommune": "02145", - "libelleAcheminement": "CAUMONT", - "nomCommune": "CAUMONT" + "codePostal": "01470", + "codeCommune": "01037", + "libelleAcheminement": "BENONCES", + "nomCommune": "BENONCES" }, { - "codePostal": "91160", - "codeCommune": "91345", - "libelleAcheminement": "LONGJUMEAU", - "nomCommune": "LONGJUMEAU" + "codePostal": "13830", + "codeCommune": "13085", + "libelleAcheminement": "ROQUEFORT LA BEDOULE", + "nomCommune": "ROQUEFORT LA BEDOULE" }, { - "codePostal": "02320", - "codeCommune": "02153", - "libelleAcheminement": "CESSIERES SUZY", - "nomCommune": "CESSIERES SUZY" + "codePostal": "14430", + "codeCommune": "14229", + "libelleAcheminement": "DOZULE", + "nomCommune": "DOZULE" }, { - "codePostal": "91660", - "codeCommune": "91390", - "libelleAcheminement": "LE MEREVILLOIS", - "nomCommune": "LE MEREVILLOIS" + "codePostal": "01500", + "codeCommune": "01041", + "libelleAcheminement": "BETTANT", + "nomCommune": "BETTANT" }, { - "codePostal": "02340", - "codeCommune": "02160", - "libelleAcheminement": "CHAOURSE", - "nomCommune": "CHAOURSE" + "codePostal": "13360", + "codeCommune": "13086", + "libelleAcheminement": "ROQUEVAIRE", + "nomCommune": "ROQUEVAIRE" }, { - "codePostal": "91490", - "codeCommune": "91408", - "libelleAcheminement": "MOIGNY SUR ECOLE", - "nomCommune": "MOIGNY SUR ECOLE" + "codePostal": "14800", + "codeCommune": "14238", + "libelleAcheminement": "ENGLESQUEVILLE EN AUGE", + "nomCommune": "ENGLESQUEVILLE EN AUGE" }, { - "codePostal": "02850", - "codeCommune": "02164", - "libelleAcheminement": "LE CHARMEL", - "nomCommune": "LE CHARMEL" + "codePostal": "01200", + "codeCommune": "01044", + "libelleAcheminement": "BILLIAT", + "nomCommune": "BILLIAT" }, { - "codePostal": "91310", - "codeCommune": "91425", - "libelleAcheminement": "MONTLHERY", - "nomCommune": "MONTLHERY" + "codePostal": "13100", + "codeCommune": "13090", + "libelleAcheminement": "ST ANTONIN SUR BAYON", + "nomCommune": "ST ANTONIN SUR BAYON" }, { - "codePostal": "02800", - "codeCommune": "02165", - "libelleAcheminement": "CHARMES", - "nomCommune": "CHARMES" + "codePostal": "14710", + "codeCommune": "14239", + "libelleAcheminement": "ENGLESQUEVILLE LA PERCEE", + "nomCommune": "ENGLESQUEVILLE LA PERCEE" }, { - "codePostal": "91390", - "codeCommune": "91434", - "libelleAcheminement": "MORSANG SUR ORGE", - "nomCommune": "MORSANG SUR ORGE" + "codePostal": "01150", + "codeCommune": "01047", + "libelleAcheminement": "BLYES", + "nomCommune": "BLYES" }, { - "codePostal": "02400", - "codeCommune": "02166", - "libelleAcheminement": "CHARTEVES", - "nomCommune": "CHARTEVES" + "codePostal": "13310", + "codeCommune": "13097", + "libelleAcheminement": "ST MARTIN DE CRAU", + "nomCommune": "ST MARTIN DE CRAU" }, { - "codePostal": "91590", - "codeCommune": "91473", - "libelleAcheminement": "ORVEAU", - "nomCommune": "ORVEAU" + "codePostal": "14270", + "codeCommune": "14245", + "libelleAcheminement": "ERNES", + "nomCommune": "ERNES" }, { - "codePostal": "02370", - "codeCommune": "02167", - "libelleAcheminement": "CHASSEMY", - "nomCommune": "CHASSEMY" + "codePostal": "01380", + "codeCommune": "01050", + "libelleAcheminement": "BOISSEY", + "nomCommune": "BOISSEY" }, { - "codePostal": "91550", - "codeCommune": "91479", - "libelleAcheminement": "PARAY VIEILLE POSTE", - "nomCommune": "PARAY VIEILLE POSTE" + "codePostal": "13300", + "codeCommune": "13103", + "libelleAcheminement": "SALON DE PROVENCE", + "nomCommune": "SALON DE PROVENCE" }, { - "codePostal": "02000", - "codeCommune": "02174", - "libelleAcheminement": "CHAVIGNON", - "nomCommune": "CHAVIGNON" + "codePostal": "14850", + "codeCommune": "14246", + "libelleAcheminement": "ESCOVILLE", + "nomCommune": "ESCOVILLE" }, { - "codePostal": "91410", - "codeCommune": "91495", - "libelleAcheminement": "PLESSIS ST BENOIST", - "nomCommune": "PLESSIS ST BENOIST" + "codePostal": "01360", + "codeCommune": "01062", + "libelleAcheminement": "BRESSOLLES", + "nomCommune": "BRESSOLLES" }, { - "codePostal": "02120", - "codeCommune": "02188", - "libelleAcheminement": "CHIGNY", - "nomCommune": "CHIGNY" + "codePostal": "13470", + "codeCommune": "13119", + "libelleAcheminement": "CARNOUX EN PROVENCE", + "nomCommune": "CARNOUX EN PROVENCE" }, { - "codePostal": "91150", - "codeCommune": "91508", - "libelleAcheminement": "PUISELET LE MARAIS", - "nomCommune": "PUISELET LE MARAIS" + "codePostal": "14930", + "codeCommune": "14254", + "libelleAcheminement": "ETERVILLE", + "nomCommune": "ETERVILLE" }, { - "codePostal": "02600", - "codeCommune": "02201", - "libelleAcheminement": "COEUVRES ET VALSERY", - "nomCommune": "COEUVRES ET VALSERY" + "codePostal": "01310", + "codeCommune": "01065", + "libelleAcheminement": "BUELLAS", + "nomCommune": "BUELLAS" }, { - "codePostal": "91690", - "codeCommune": "91533", - "libelleAcheminement": "SACLAS", - "nomCommune": "SACLAS" + "codePostal": "13001", + "codeCommune": "13201", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 01" }, { - "codePostal": "02210", - "codeCommune": "02203", - "libelleAcheminement": "COINCY", - "nomCommune": "COINCY" + "codePostal": "14130", + "codeCommune": "14261", + "libelleAcheminement": "LE FAULQ", + "nomCommune": "LE FAULQ" }, { - "codePostal": "91400", - "codeCommune": "91534", - "libelleAcheminement": "SACLAY", - "nomCommune": "SACLAY" + "codePostal": "01510", + "codeCommune": "01066", + "libelleAcheminement": "LA BURBANCHE", + "nomCommune": "LA BURBANCHE" }, { - "codePostal": "02860", - "codeCommune": "02205", - "libelleAcheminement": "COLLIGIS CRANDELAIN", - "nomCommune": "COLLIGIS CRANDELAIN" + "codePostal": "13002", + "codeCommune": "13202", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 02" }, { - "codePostal": "91190", - "codeCommune": "91538", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "14130", + "codeCommune": "14269", + "libelleAcheminement": "FIERVILLE LES PARCS", + "nomCommune": "FIERVILLE LES PARCS" }, { - "codePostal": "02300", - "codeCommune": "02207", - "libelleAcheminement": "COMMENCHON", - "nomCommune": "COMMENCHON" + "codePostal": "01430", + "codeCommune": "01067", + "libelleAcheminement": "CEIGNES", + "nomCommune": "CEIGNES" }, { - "codePostal": "91190", - "codeCommune": "91538", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "13004", + "codeCommune": "13204", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 04" }, { - "codePostal": "02130", - "codeCommune": "02220", - "libelleAcheminement": "COULONGES COHAN", - "nomCommune": "COULONGES COHAN" + "codePostal": "14700", + "codeCommune": "14284", + "libelleAcheminement": "FOURNEAUX LE VAL", + "nomCommune": "FOURNEAUX LE VAL" }, { - "codePostal": "91410", - "codeCommune": "91546", - "libelleAcheminement": "ST CYR SOUS DOURDAN", - "nomCommune": "ST CYR SOUS DOURDAN" + "codePostal": "01320", + "codeCommune": "01074", + "libelleAcheminement": "CHALAMONT", + "nomCommune": "CHALAMONT" }, { - "codePostal": "02800", - "codeCommune": "02222", - "libelleAcheminement": "COURBES", - "nomCommune": "COURBES" + "codePostal": "13005", + "codeCommune": "13205", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 05" }, { - "codePostal": "91410", - "codeCommune": "91547", - "libelleAcheminement": "ST ESCOBILLE", - "nomCommune": "ST ESCOBILLE" + "codePostal": "14630", + "codeCommune": "14287", + "libelleAcheminement": "FRENOUVILLE", + "nomCommune": "FRENOUVILLE" }, { - "codePostal": "02820", - "codeCommune": "02229", - "libelleAcheminement": "COURTRIZY ET FUSSIGNY", - "nomCommune": "COURTRIZY ET FUSSIGNY" + "codePostal": "01110", + "codeCommune": "01080", + "libelleAcheminement": "CHAMPDOR CORCELLES", + "nomCommune": "CHAMPDOR CORCELLES" }, { - "codePostal": "91280", - "codeCommune": "91573", - "libelleAcheminement": "ST PIERRE DU PERRAY", - "nomCommune": "ST PIERRE DU PERRAY" + "codePostal": "13013", + "codeCommune": "13213", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 13" }, { - "codePostal": "02160", - "codeCommune": "02234", - "libelleAcheminement": "CRAONNE", - "nomCommune": "CRAONNE" + "codePostal": "14680", + "codeCommune": "14290", + "libelleAcheminement": "FRESNEY LE PUCEUX", + "nomCommune": "FRESNEY LE PUCEUX" }, { - "codePostal": "91650", - "codeCommune": "91581", - "libelleAcheminement": "ST YON", - "nomCommune": "ST YON" + "codePostal": "01110", + "codeCommune": "01080", + "libelleAcheminement": "CHAMPDOR CORCELLES", + "nomCommune": "CHAMPDOR CORCELLES" }, { - "codePostal": "02160", - "codeCommune": "02235", - "libelleAcheminement": "CRAONNELLE", - "nomCommune": "CRAONNELLE" + "codePostal": "14600", + "codeCommune": "14001", + "libelleAcheminement": "ABLON", + "nomCommune": "ABLON" }, { - "codePostal": "91600", - "codeCommune": "91589", - "libelleAcheminement": "SAVIGNY SUR ORGE", - "nomCommune": "SAVIGNY SUR ORGE" + "codePostal": "14220", + "codeCommune": "14291", + "libelleAcheminement": "FRESNEY LE VIEUX", + "nomCommune": "FRESNEY LE VIEUX" }, { - "codePostal": "02380", - "codeCommune": "02236", - "libelleAcheminement": "CRECY AU MONT", - "nomCommune": "CRECY AU MONT" + "codePostal": "01250", + "codeCommune": "01095", + "libelleAcheminement": "NIVIGNE ET SURAN", + "nomCommune": "NIVIGNE ET SURAN" }, { - "codePostal": "91250", - "codeCommune": "91617", - "libelleAcheminement": "TIGERY", - "nomCommune": "TIGERY" + "codePostal": "14310", + "codeCommune": "14007", + "libelleAcheminement": "AMAYE SUR SEULLES", + "nomCommune": "AMAYE SUR SEULLES" }, { - "codePostal": "02110", - "codeCommune": "02240", - "libelleAcheminement": "CROIX FONSOMME", - "nomCommune": "CROIX FONSOMME" + "codePostal": "14950", + "codeCommune": "14302", + "libelleAcheminement": "GLANVILLE", + "nomCommune": "GLANVILLE" }, { - "codePostal": "91430", - "codeCommune": "91635", - "libelleAcheminement": "VAUHALLAN", - "nomCommune": "VAUHALLAN" + "codePostal": "01300", + "codeCommune": "01098", + "libelleAcheminement": "CHAZEY BONS", + "nomCommune": "CHAZEY BONS" }, { - "codePostal": "02210", - "codeCommune": "02241", - "libelleAcheminement": "LA CROIX SUR OURCQ", - "nomCommune": "LA CROIX SUR OURCQ" + "codePostal": "14240", + "codeCommune": "14011", + "libelleAcheminement": "AURSEULLES", + "nomCommune": "AURSEULLES" }, { - "codePostal": "91370", - "codeCommune": "91645", - "libelleAcheminement": "VERRIERES LE BUISSON", - "nomCommune": "VERRIERES LE BUISSON" + "codePostal": "14100", + "codeCommune": "14303", + "libelleAcheminement": "GLOS", + "nomCommune": "GLOS" }, { - "codePostal": "02310", - "codeCommune": "02242", - "libelleAcheminement": "CROUTTES SUR MARNE", - "nomCommune": "CROUTTES SUR MARNE" + "codePostal": "01150", + "codeCommune": "01099", + "libelleAcheminement": "CHAZEY SUR AIN", + "nomCommune": "CHAZEY SUR AIN" }, { - "codePostal": "91710", - "codeCommune": "91649", - "libelleAcheminement": "VERT LE PETIT", - "nomCommune": "VERT LE PETIT" + "codePostal": "14250", + "codeCommune": "14011", + "libelleAcheminement": "AURSEULLES", + "nomCommune": "AURSEULLES" }, { - "codePostal": "02160", - "codeCommune": "02252", - "libelleAcheminement": "CUISSY ET GENY", - "nomCommune": "CUISSY ET GENY" + "codePostal": "14600", + "codeCommune": "14304", + "libelleAcheminement": "GONNEVILLE SUR HONFLEUR", + "nomCommune": "GONNEVILLE SUR HONFLEUR" }, { - "codePostal": "91580", - "codeCommune": "91662", - "libelleAcheminement": "VILLECONIN", - "nomCommune": "VILLECONIN" + "codePostal": "01430", + "codeCommune": "01101", + "libelleAcheminement": "CHEVILLARD", + "nomCommune": "CHEVILLARD" }, { - "codePostal": "02220", - "codeCommune": "02255", - "libelleAcheminement": "CYS LA COMMUNE", - "nomCommune": "CYS LA COMMUNE" + "codePostal": "14610", + "codeCommune": "14015", + "libelleAcheminement": "ANISY", + "nomCommune": "ANISY" }, { - "codePostal": "91360", - "codeCommune": "91667", - "libelleAcheminement": "VILLEMOISSON SUR ORGE", - "nomCommune": "VILLEMOISSON SUR ORGE" + "codePostal": "14810", + "codeCommune": "14306", + "libelleAcheminement": "GONNEVILLE EN AUGE", + "nomCommune": "GONNEVILLE EN AUGE" }, { - "codePostal": "02140", - "codeCommune": "02256", - "libelleAcheminement": "DAGNY LAMBERCY", - "nomCommune": "DAGNY LAMBERCY" + "codePostal": "01190", + "codeCommune": "01102", + "libelleAcheminement": "CHEVROUX", + "nomCommune": "CHEVROUX" }, { - "codePostal": "91330", - "codeCommune": "91691", - "libelleAcheminement": "YERRES", - "nomCommune": "YERRES" + "codePostal": "14400", + "codeCommune": "14019", + "libelleAcheminement": "ARGANCHY", + "nomCommune": "ARGANCHY" }, { - "codePostal": "02360", - "codeCommune": "02265", - "libelleAcheminement": "DOHIS", - "nomCommune": "DOHIS" + "codePostal": "14680", + "codeCommune": "14309", + "libelleAcheminement": "GOUVIX", + "nomCommune": "GOUVIX" }, { - "codePostal": "92220", - "codeCommune": "92007", - "libelleAcheminement": "BAGNEUX", - "nomCommune": "BAGNEUX" + "codePostal": "01550", + "codeCommune": "01109", + "libelleAcheminement": "COLLONGES", + "nomCommune": "COLLONGES" }, { - "codePostal": "02590", - "codeCommune": "02270", - "libelleAcheminement": "DOUCHY", - "nomCommune": "DOUCHY" + "codePostal": "14370", + "codeCommune": "14020", + "libelleAcheminement": "ARGENCES", + "nomCommune": "ARGENCES" }, { - "codePostal": "92320", - "codeCommune": "92020", - "libelleAcheminement": "CHATILLON", - "nomCommune": "CHATILLON" + "codePostal": "14210", + "codeCommune": "14311", + "libelleAcheminement": "GRAINVILLE SUR ODON", + "nomCommune": "GRAINVILLE SUR ODON" }, { - "codePostal": "02170", - "codeCommune": "02286", - "libelleAcheminement": "ESQUEHERIES", - "nomCommune": "ESQUEHERIES" + "codePostal": "01230", + "codeCommune": "01111", + "libelleAcheminement": "CONAND", + "nomCommune": "CONAND" }, { - "codePostal": "92430", - "codeCommune": "92047", - "libelleAcheminement": "MARNES LA COQUETTE", - "nomCommune": "MARNES LA COQUETTE" + "codePostal": "14710", + "codeCommune": "14023", + "libelleAcheminement": "ASNIERES EN BESSIN", + "nomCommune": "ASNIERES EN BESSIN" }, { - "codePostal": "02570", - "codeCommune": "02289", - "libelleAcheminement": "ESSISES", - "nomCommune": "ESSISES" + "codePostal": "14470", + "codeCommune": "14318", + "libelleAcheminement": "GRAYE SUR MER", + "nomCommune": "GRAYE SUR MER" }, { - "codePostal": "92190", - "codeCommune": "92048", - "libelleAcheminement": "MEUDON", - "nomCommune": "MEUDON" + "codePostal": "01290", + "codeCommune": "01134", + "libelleAcheminement": "CROTTET", + "nomCommune": "CROTTET" }, { - "codePostal": "02110", - "codeCommune": "02293", - "libelleAcheminement": "ETAVES ET BOCQUIAUX", - "nomCommune": "ETAVES ET BOCQUIAUX" + "codePostal": "14700", + "codeCommune": "14025", + "libelleAcheminement": "AUBIGNY", + "nomCommune": "AUBIGNY" }, { - "codePostal": "92200", - "codeCommune": "92051", - "libelleAcheminement": "NEUILLY SUR SEINE", - "nomCommune": "NEUILLY SUR SEINE" + "codePostal": "14400", + "codeCommune": "14322", + "libelleAcheminement": "GUERON", + "nomCommune": "GUERON" }, { - "codePostal": "02580", - "codeCommune": "02295", - "libelleAcheminement": "ETREAUPONT", - "nomCommune": "ETREAUPONT" + "codePostal": "01310", + "codeCommune": "01140", + "libelleAcheminement": "CURTAFOND", + "nomCommune": "CURTAFOND" }, { - "codePostal": "92420", - "codeCommune": "92076", - "libelleAcheminement": "VAUCRESSON", - "nomCommune": "VAUCRESSON" + "codePostal": "14770", + "codeCommune": "14027", + "libelleAcheminement": "LES MONTS D AUNAY", + "nomCommune": "LES MONTS D AUNAY" }, { - "codePostal": "02190", - "codeCommune": "02299", - "libelleAcheminement": "EVERGNICOURT", - "nomCommune": "EVERGNICOURT" + "codePostal": "14430", + "codeCommune": "14329", + "libelleAcheminement": "HEULAND", + "nomCommune": "HEULAND" }, { - "codePostal": "92410", - "codeCommune": "92077", - "libelleAcheminement": "VILLE D AVRAY", - "nomCommune": "VILLE D AVRAY" + "codePostal": "01120", + "codeCommune": "01142", + "libelleAcheminement": "DAGNEUX", + "nomCommune": "DAGNEUX" }, { - "codePostal": "02130", - "codeCommune": "02305", - "libelleAcheminement": "FERE EN TARDENOIS", - "nomCommune": "FERE EN TARDENOIS" + "codePostal": "14130", + "codeCommune": "14032", + "libelleAcheminement": "LES AUTHIEUX SUR CALONNE", + "nomCommune": "LES AUTHIEUX SUR CALONNE" }, { - "codePostal": "93600", - "codeCommune": "93005", - "libelleAcheminement": "AULNAY SOUS BOIS", - "nomCommune": "AULNAY SOUS BOIS" + "codePostal": "14600", + "codeCommune": "14333", + "libelleAcheminement": "HONFLEUR", + "nomCommune": "HONFLEUR" }, { - "codePostal": "02270", - "codeCommune": "02306", - "libelleAcheminement": "LA FERTE CHEVRESIS", - "nomCommune": "LA FERTE CHEVRESIS" + "codePostal": "01500", + "codeCommune": "01149", + "libelleAcheminement": "DOUVRES", + "nomCommune": "DOUVRES" }, { - "codePostal": "93140", - "codeCommune": "93010", - "libelleAcheminement": "BONDY", - "nomCommune": "BONDY" + "codePostal": "14210", + "codeCommune": "14034", + "libelleAcheminement": "AVENAY", + "nomCommune": "AVENAY" }, { - "codePostal": "02600", - "codeCommune": "02316", - "libelleAcheminement": "FLEURY", - "nomCommune": "FLEURY" + "codePostal": "14230", + "codeCommune": "14342", + "libelleAcheminement": "ISIGNY SUR MER", + "nomCommune": "ISIGNY SUR MER" }, { - "codePostal": "93700", - "codeCommune": "93029", - "libelleAcheminement": "DRANCY", - "nomCommune": "DRANCY" + "codePostal": "01130", + "codeCommune": "01152", + "libelleAcheminement": "ECHALLON", + "nomCommune": "ECHALLON" }, { - "codePostal": "02110", - "codeCommune": "02323", - "libelleAcheminement": "FONTAINE UTERTE", - "nomCommune": "FONTAINE UTERTE" + "codePostal": "14490", + "codeCommune": "14035", + "libelleAcheminement": "BALLEROY SUR DROME", + "nomCommune": "BALLEROY SUR DROME" }, { - "codePostal": "93190", - "codeCommune": "93046", - "libelleAcheminement": "LIVRY GARGAN", - "nomCommune": "LIVRY GARGAN" + "codePostal": "14380", + "codeCommune": "14352", + "libelleAcheminement": "LANDELLES ET COUPIGNY", + "nomCommune": "LANDELLES ET COUPIGNY" }, { - "codePostal": "02260", - "codeCommune": "02342", - "libelleAcheminement": "GERGNY", - "nomCommune": "GERGNY" + "codePostal": "01800", + "codeCommune": "01156", + "libelleAcheminement": "FARAMANS", + "nomCommune": "FARAMANS" }, { - "codePostal": "93340", - "codeCommune": "93062", - "libelleAcheminement": "LE RAINCY", - "nomCommune": "LE RAINCY" + "codePostal": "14400", + "codeCommune": "14040", + "libelleAcheminement": "BARBEVILLE", + "nomCommune": "BARBEVILLE" }, { - "codePostal": "02190", - "codeCommune": "02360", - "libelleAcheminement": "VILLENEUVE SUR AISNE", - "nomCommune": "VILLENEUVE SUR AISNE" + "codePostal": "14770", + "codeCommune": "14357", + "libelleAcheminement": "TERRES DE DRUANCE", + "nomCommune": "TERRES DE DRUANCE" }, { - "codePostal": "01500", - "codeCommune": "01004", - "libelleAcheminement": "AMBERIEU EN BUGEY", - "nomCommune": "AMBERIEU EN BUGEY" + "codePostal": "01350", + "codeCommune": "01162", + "libelleAcheminement": "FLAXIEU", + "nomCommune": "FLAXIEU" }, { - "codePostal": "93230", - "codeCommune": "93063", - "libelleAcheminement": "ROMAINVILLE", - "nomCommune": "ROMAINVILLE" + "codePostal": "14860", + "codeCommune": "14046", + "libelleAcheminement": "BAVENT", + "nomCommune": "BAVENT" }, { - "codePostal": "02160", - "codeCommune": "02364", - "libelleAcheminement": "GUYENCOURT", - "nomCommune": "GUYENCOURT" + "codePostal": "14770", + "codeCommune": "14357", + "libelleAcheminement": "TERRES DE DRUANCE", + "nomCommune": "TERRES DE DRUANCE" }, { - "codePostal": "01500", - "codeCommune": "01008", - "libelleAcheminement": "AMBUTRIX", - "nomCommune": "AMBUTRIX" + "codePostal": "01090", + "codeCommune": "01169", + "libelleAcheminement": "GENOUILLEUX", + "nomCommune": "GENOUILLEUX" }, { - "codePostal": "93290", - "codeCommune": "93073", - "libelleAcheminement": "TREMBLAY EN FRANCE", - "nomCommune": "TREMBLAY EN FRANCE" + "codePostal": "14480", + "codeCommune": "14049", + "libelleAcheminement": "BAZENVILLE", + "nomCommune": "BAZENVILLE" }, { - "codePostal": "02600", - "codeCommune": "02368", - "libelleAcheminement": "HARAMONT", - "nomCommune": "HARAMONT" + "codePostal": "14140", + "codeCommune": "14368", + "libelleAcheminement": "LISORES", + "nomCommune": "LISORES" }, { - "codePostal": "01300", - "codeCommune": "01015", - "libelleAcheminement": "ARBOYS EN BUGEY", - "nomCommune": "ARBOYS EN BUGEY" + "codePostal": "01250", + "codeCommune": "01184", + "libelleAcheminement": "HAUTECOURT ROMANECHE", + "nomCommune": "HAUTECOURT ROMANECHE" }, { - "codePostal": "93250", - "codeCommune": "93077", - "libelleAcheminement": "VILLEMOMBLE", - "nomCommune": "VILLEMOMBLE" + "codePostal": "14260", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "02810", - "codeCommune": "02375", - "libelleAcheminement": "HAUTEVESNES", - "nomCommune": "HAUTEVESNES" + "codePostal": "14330", + "codeCommune": "14370", + "libelleAcheminement": "LE MOLAY LITTRY", + "nomCommune": "LE MOLAY LITTRY" }, { - "codePostal": "01230", - "codeCommune": "01017", - "libelleAcheminement": "ARGIS", - "nomCommune": "ARGIS" + "codePostal": "01260", + "codeCommune": "01187", + "libelleAcheminement": "HAUT VALROMEY", + "nomCommune": "HAUT VALROMEY" }, { - "codePostal": "93420", - "codeCommune": "93078", - "libelleAcheminement": "VILLEPINTE", - "nomCommune": "VILLEPINTE" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "02500", - "codeCommune": "02381", - "libelleAcheminement": "HIRSON", - "nomCommune": "HIRSON" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01510", - "codeCommune": "01019", - "libelleAcheminement": "ARMIX", - "nomCommune": "ARMIX" + "codePostal": "01260", + "codeCommune": "01187", + "libelleAcheminement": "HAUT VALROMEY", + "nomCommune": "HAUT VALROMEY" }, { - "codePostal": "94110", - "codeCommune": "94003", - "libelleAcheminement": "ARCUEIL", - "nomCommune": "ARCUEIL" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "02250", - "codeCommune": "02385", - "libelleAcheminement": "HOUSSET", - "nomCommune": "HOUSSET" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01510", - "codeCommune": "01022", - "libelleAcheminement": "ARTEMARE", - "nomCommune": "ARTEMARE" + "codePostal": "01450", + "codeCommune": "01200", + "libelleAcheminement": "LABALME", + "nomCommune": "LABALME" }, { - "codePostal": "94360", - "codeCommune": "94015", - "libelleAcheminement": "BRY SUR MARNE", - "nomCommune": "BRY SUR MARNE" + "codePostal": "14440", + "codeCommune": "14062", + "libelleAcheminement": "BENY SUR MER", + "nomCommune": "BENY SUR MER" }, { - "codePostal": "02490", - "codeCommune": "02390", - "libelleAcheminement": "JEANCOURT", - "nomCommune": "JEANCOURT" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01200", - "codeCommune": "01033", - "libelleAcheminement": "VALSERHONE", - "nomCommune": "VALSERHONE" + "codePostal": "01350", + "codeCommune": "01208", + "libelleAcheminement": "LAVOURS", + "nomCommune": "LAVOURS" }, { - "codePostal": "94270", - "codeCommune": "94043", - "libelleAcheminement": "LE KREMLIN BICETRE", - "nomCommune": "LE KREMLIN BICETRE" + "codePostal": "14550", + "codeCommune": "14076", + "libelleAcheminement": "BLAINVILLE SUR ORNE", + "nomCommune": "BLAINVILLE SUR ORNE" }, { - "codePostal": "02190", - "codeCommune": "02399", - "libelleAcheminement": "JUVINCOURT ET DAMARY", - "nomCommune": "JUVINCOURT ET DAMARY" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01260", - "codeCommune": "01036", - "libelleAcheminement": "VALROMEY SUR SERAN", - "nomCommune": "VALROMEY SUR SERAN" + "codePostal": "01150", + "codeCommune": "01213", + "libelleAcheminement": "LEYMENT", + "nomCommune": "LEYMENT" }, { - "codePostal": "94450", - "codeCommune": "94044", - "libelleAcheminement": "LIMEIL BREVANNES", - "nomCommune": "LIMEIL BREVANNES" + "codePostal": "14690", + "codeCommune": "14080", + "libelleAcheminement": "LE BO", + "nomCommune": "LE BO" }, { - "codePostal": "02000", - "codeCommune": "02407", - "libelleAcheminement": "LANISCOURT", - "nomCommune": "LANISCOURT" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01200", - "codeCommune": "01044", - "libelleAcheminement": "BILLIAT", - "nomCommune": "BILLIAT" + "codePostal": "01420", + "codeCommune": "01215", + "libelleAcheminement": "SURJOUX LHOPITAL", + "nomCommune": "SURJOUX LHOPITAL" }, { - "codePostal": "94440", - "codeCommune": "94048", - "libelleAcheminement": "MAROLLES EN BRIE", - "nomCommune": "MAROLLES EN BRIE" + "codePostal": "14420", + "codeCommune": "14088", + "libelleAcheminement": "BONS TASSILLY", + "nomCommune": "BONS TASSILLY" }, { - "codePostal": "02000", - "codeCommune": "02408", - "libelleAcheminement": "LAON", - "nomCommune": "LAON" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01150", - "codeCommune": "01047", - "libelleAcheminement": "BLYES", - "nomCommune": "BLYES" + "codePostal": "01300", + "codeCommune": "01227", + "libelleAcheminement": "MAGNIEU", + "nomCommune": "MAGNIEU" }, { - "codePostal": "94310", - "codeCommune": "94054", - "libelleAcheminement": "ORLY", - "nomCommune": "ORLY" + "codePostal": "14210", + "codeCommune": "14098", + "libelleAcheminement": "THUE ET MUE", + "nomCommune": "THUE ET MUE" }, { - "codePostal": "02860", - "codeCommune": "02413", - "libelleAcheminement": "LAVAL EN LAONNOIS", - "nomCommune": "LAVAL EN LAONNOIS" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01450", - "codeCommune": "01051", - "libelleAcheminement": "BOLOZON", - "nomCommune": "BOLOZON" + "codePostal": "01560", + "codeCommune": "01230", + "libelleAcheminement": "MANTENAY MONTLIN", + "nomCommune": "MANTENAY MONTLIN" }, { - "codePostal": "94520", - "codeCommune": "94056", - "libelleAcheminement": "PERIGNY SUR YERRES", - "nomCommune": "PERIGNY" + "codePostal": "14130", + "codeCommune": "14102", + "libelleAcheminement": "LE BREUIL EN AUGE", + "nomCommune": "LE BREUIL EN AUGE" }, { - "codePostal": "02420", - "codeCommune": "02417", - "libelleAcheminement": "LEMPIRE", - "nomCommune": "LEMPIRE" + "codePostal": "14290", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01000", - "codeCommune": "01053", - "libelleAcheminement": "BOURG EN BRESSE", - "nomCommune": "BOURG EN BRESSE" + "codePostal": "01851", + "codeCommune": "01232", + "libelleAcheminement": "MARBOZ", + "nomCommune": "MARBOZ" }, { - "codePostal": "94460", - "codeCommune": "94074", - "libelleAcheminement": "VALENTON", - "nomCommune": "VALENTON" + "codePostal": "14330", + "codeCommune": "14103", + "libelleAcheminement": "LE BREUIL EN BESSIN", + "nomCommune": "LE BREUIL EN BESSIN" }, { - "codePostal": "02260", - "codeCommune": "02418", - "libelleAcheminement": "LERZY", - "nomCommune": "LERZY" + "codePostal": "14400", + "codeCommune": "14377", + "libelleAcheminement": "LONGUES SUR MER", + "nomCommune": "LONGUES SUR MER" }, { - "codePostal": "01800", - "codeCommune": "01054", - "libelleAcheminement": "BOURG ST CHRISTOPHE", - "nomCommune": "BOURG ST CHRISTOPHE" + "codePostal": "01410", + "codeCommune": "01247", + "libelleAcheminement": "MIJOUX", + "nomCommune": "MIJOUX" }, { - "codePostal": "94440", - "codeCommune": "94075", - "libelleAcheminement": "VILLECRESNES", - "nomCommune": "VILLECRESNES" + "codePostal": "14230", + "codeCommune": "14124", + "libelleAcheminement": "LA CAMBE", + "nomCommune": "LA CAMBE" }, { - "codePostal": "02170", - "codeCommune": "02419", - "libelleAcheminement": "LESCHELLE", - "nomCommune": "LESCHELLE" + "codePostal": "14230", + "codeCommune": "14378", + "libelleAcheminement": "LONGUEVILLE", + "nomCommune": "LONGUEVILLE" }, { - "codePostal": "01470", - "codeCommune": "01064", - "libelleAcheminement": "BRIORD", - "nomCommune": "BRIORD" + "codePostal": "01700", + "codeCommune": "01249", + "libelleAcheminement": "MIRIBEL", + "nomCommune": "MIRIBEL" }, { - "codePostal": "94290", - "codeCommune": "94077", - "libelleAcheminement": "VILLENEUVE LE ROI", - "nomCommune": "VILLENEUVE LE ROI" + "codePostal": "14370", + "codeCommune": "14134", + "libelleAcheminement": "CANTELOUP", + "nomCommune": "CANTELOUP" }, { - "codePostal": "02100", - "codeCommune": "02420", - "libelleAcheminement": "LESDINS", - "nomCommune": "LESDINS" + "codePostal": "14310", + "codeCommune": "14379", + "libelleAcheminement": "LONGVILLERS", + "nomCommune": "LONGVILLERS" }, { - "codePostal": "01110", - "codeCommune": "01080", - "libelleAcheminement": "CHAMPDOR CORCELLES", - "nomCommune": "CHAMPDOR CORCELLES" + "codePostal": "01800", + "codeCommune": "01260", + "libelleAcheminement": "LE MONTELLIER", + "nomCommune": "LE MONTELLIER" }, { - "codePostal": "95420", - "codeCommune": "95011", - "libelleAcheminement": "AMBLEVILLE", - "nomCommune": "AMBLEVILLE" + "codePostal": "14220", + "codeCommune": "14150", + "libelleAcheminement": "CESNY LES SOURCES", + "nomCommune": "CESNY LES SOURCES" }, { - "codePostal": "02500", - "codeCommune": "02435", - "libelleAcheminement": "LOGNY LES AUBENTON", - "nomCommune": "LOGNY LES AUBENTON" + "codePostal": "14310", + "codeCommune": "14389", + "libelleAcheminement": "MAISONCELLES PELVEY", + "nomCommune": "MAISONCELLES PELVEY" }, { - "codePostal": "01400", - "codeCommune": "01084", - "libelleAcheminement": "CHANOZ CHATENAY", - "nomCommune": "CHANOZ CHATENAY" + "codePostal": "01120", + "codeCommune": "01262", + "libelleAcheminement": "MONTLUEL", + "nomCommune": "MONTLUEL" }, { - "codePostal": "95400", - "codeCommune": "95019", - "libelleAcheminement": "ARNOUVILLE", - "nomCommune": "ARNOUVILLE" + "codePostal": "14220", + "codeCommune": "14150", + "libelleAcheminement": "CESNY LES SOURCES", + "nomCommune": "CESNY LES SOURCES" }, { - "codePostal": "02160", - "codeCommune": "02439", - "libelleAcheminement": "LES SEPTVALLONS", - "nomCommune": "LES SEPTVALLONS" + "codePostal": "14190", + "codeCommune": "14394", + "libelleAcheminement": "MAIZIERES", + "nomCommune": "MAIZIERES" }, { - "codePostal": "01320", - "codeCommune": "01090", - "libelleAcheminement": "CHATENAY", - "nomCommune": "CHATENAY" + "codePostal": "01090", + "codeCommune": "01263", + "libelleAcheminement": "MONTMERLE SUR SAONE", + "nomCommune": "MONTMERLE SUR SAONE" }, { - "codePostal": "95420", - "codeCommune": "95024", - "libelleAcheminement": "ARTHIES", - "nomCommune": "ARTHIES" + "codePostal": "14220", + "codeCommune": "14150", + "libelleAcheminement": "CESNY LES SOURCES", + "nomCommune": "CESNY LES SOURCES" }, { - "codePostal": "02600", - "codeCommune": "02441", - "libelleAcheminement": "LOUATRE", - "nomCommune": "LOUATRE" + "codePostal": "14710", + "codeCommune": "14397", + "libelleAcheminement": "MANDEVILLE EN BESSIN", + "nomCommune": "MANDEVILLE EN BESSIN" }, { - "codePostal": "01400", - "codeCommune": "01093", - "libelleAcheminement": "CHATILLON SUR CHALARONNE", - "nomCommune": "CHATILLON SUR CHALARONNE" + "codePostal": "01460", + "codeCommune": "01265", + "libelleAcheminement": "MONTREAL LA CLUSE", + "nomCommune": "MONTREAL LA CLUSE" }, { - "codePostal": "95750", - "codeCommune": "95054", - "libelleAcheminement": "LE BELLAY EN VEXIN", - "nomCommune": "LE BELLAY EN VEXIN" + "codePostal": "14250", + "codeCommune": "14159", + "libelleAcheminement": "CHOUAIN", + "nomCommune": "CHOUAIN" }, { - "codePostal": "02350", - "codeCommune": "02448", - "libelleAcheminement": "MACHECOURT", - "nomCommune": "MACHECOURT" + "codePostal": "14130", + "codeCommune": "14399", + "libelleAcheminement": "MANNEVILLE LA PIPARD", + "nomCommune": "MANNEVILLE LA PIPARD" }, { - "codePostal": "01510", - "codeCommune": "01100", - "libelleAcheminement": "CHEIGNIEU LA BALME", - "nomCommune": "CHEIGNIEU LA BALME" + "codePostal": "01300", + "codeCommune": "01268", + "libelleAcheminement": "MURS ET GELIGNIEUX", + "nomCommune": "MURS ET GELIGNIEUX" }, { - "codePostal": "95550", - "codeCommune": "95060", - "libelleAcheminement": "BESSANCOURT", - "nomCommune": "BESSANCOURT" + "codePostal": "14710", + "codeCommune": "14165", + "libelleAcheminement": "COLLEVILLE SUR MER", + "nomCommune": "COLLEVILLE SUR MER" }, { - "codePostal": "02470", - "codeCommune": "02449", - "libelleAcheminement": "MACOGNY", - "nomCommune": "MACOGNY" + "codePostal": "14220", + "codeCommune": "14404", + "libelleAcheminement": "MARTAINVILLE", + "nomCommune": "MARTAINVILLE" }, { - "codePostal": "01200", - "codeCommune": "01104", - "libelleAcheminement": "CHEZERY FORENS", - "nomCommune": "CHEZERY FORENS" + "codePostal": "01210", + "codeCommune": "01281", + "libelleAcheminement": "ORNEX", + "nomCommune": "ORNEX" }, { - "codePostal": "95840", - "codeCommune": "95061", - "libelleAcheminement": "BETHEMONT LA FORET", - "nomCommune": "BETHEMONT LA FORET" + "codePostal": "14270", + "codeCommune": "14173", + "libelleAcheminement": "CONDE SUR IFS", + "nomCommune": "CONDE SUR IFS" }, { - "codePostal": "02190", - "codeCommune": "02454", - "libelleAcheminement": "LA MALMAISON", - "nomCommune": "LA MALMAISON" + "codePostal": "14480", + "codeCommune": "14406", + "libelleAcheminement": "MOULINS EN BESSIN", + "nomCommune": "MOULINS EN BESSIN" }, { - "codePostal": "01230", - "codeCommune": "01107", - "libelleAcheminement": "CLEYZIEU", - "nomCommune": "CLEYZIEU" + "codePostal": "01100", + "codeCommune": "01283", + "libelleAcheminement": "OYONNAX", + "nomCommune": "OYONNAX" }, { - "codePostal": "95650", - "codeCommune": "95078", - "libelleAcheminement": "BOISSY L AILLERIE", - "nomCommune": "BOISSY L AILLERIE" + "codePostal": "14110", + "codeCommune": "14174", + "libelleAcheminement": "CONDE EN NORMANDIE", + "nomCommune": "CONDE EN NORMANDIE" }, { - "codePostal": "02300", - "codeCommune": "02456", - "libelleAcheminement": "MANICAMP", - "nomCommune": "MANICAMP" + "codePostal": "14480", + "codeCommune": "14406", + "libelleAcheminement": "MOULINS EN BESSIN", + "nomCommune": "MOULINS EN BESSIN" }, { - "codePostal": "01270", - "codeCommune": "01108", - "libelleAcheminement": "COLIGNY", - "nomCommune": "COLIGNY" + "codePostal": "01100", + "codeCommune": "01283", + "libelleAcheminement": "OYONNAX", + "nomCommune": "OYONNAX" }, { - "codePostal": "95640", - "codeCommune": "95110", - "libelleAcheminement": "BRIGNANCOURT", - "nomCommune": "BRIGNANCOURT" + "codePostal": "14240", + "codeCommune": "14182", + "libelleAcheminement": "CORMOLAIN", + "nomCommune": "CORMOLAIN" }, { - "codePostal": "02330", - "codeCommune": "02458", - "libelleAcheminement": "DHUYS ET MORIN EN BRIE", - "nomCommune": "DHUYS ET MORIN EN BRIE" + "codePostal": "14810", + "codeCommune": "14409", + "libelleAcheminement": "MERVILLE FRANCEVILLE PLAGE", + "nomCommune": "MERVILLE FRANCEVILLE PLAGE" }, { - "codePostal": "01550", - "codeCommune": "01109", - "libelleAcheminement": "COLLONGES", - "nomCommune": "COLLONGES" + "codePostal": "01800", + "codeCommune": "01290", + "libelleAcheminement": "PEROUGES", + "nomCommune": "PEROUGES" }, { - "codePostal": "95430", - "codeCommune": "95120", - "libelleAcheminement": "BUTRY SUR OISE", - "nomCommune": "BUTRY SUR OISE" + "codePostal": "14400", + "codeCommune": "14184", + "libelleAcheminement": "COTTUN", + "nomCommune": "COTTUN" }, { - "codePostal": "02540", - "codeCommune": "02458", - "libelleAcheminement": "DHUYS ET MORIN EN BRIE", - "nomCommune": "DHUYS ET MORIN EN BRIE" + "codePostal": "14370", + "codeCommune": "14410", + "libelleAcheminement": "MERY BISSIERES EN AUGE", + "nomCommune": "MERY BISSIERES EN AUGE" }, { - "codePostal": "01200", - "codeCommune": "01114", - "libelleAcheminement": "CONFORT", - "nomCommune": "CONFORT" + "codePostal": "01430", + "codeCommune": "01293", + "libelleAcheminement": "PEYRIAT", + "nomCommune": "PEYRIAT" }, { - "codePostal": "95000", - "codeCommune": "95127", - "libelleAcheminement": "CERGY", - "nomCommune": "CERGY" + "codePostal": "14290", + "codeCommune": "14194", + "libelleAcheminement": "COURTONNE LES DEUX EGLISES", + "nomCommune": "COURTONNE LES DEUX EGLISES" }, { - "codePostal": "02540", - "codeCommune": "02458", - "libelleAcheminement": "DHUYS ET MORIN EN BRIE", - "nomCommune": "DHUYS ET MORIN EN BRIE" + "codePostal": "14100", + "codeCommune": "14421", + "libelleAcheminement": "LE MESNIL GUILLAUME", + "nomCommune": "LE MESNIL GUILLAUME" }, { "codePostal": "01350", - "codeCommune": "01138", - "libelleAcheminement": "CULOZ", - "nomCommune": "CULOZ" - }, - { - "codePostal": "95270", - "codeCommune": "95149", - "libelleAcheminement": "CHAUMONTEL", - "nomCommune": "CHAUMONTEL" + "codeCommune": "01302", + "libelleAcheminement": "POLLIEU", + "nomCommune": "POLLIEU" }, { - "codePostal": "02250", - "codeCommune": "02460", - "libelleAcheminement": "MARCY SOUS MARLE", - "nomCommune": "MARCY SOUS MARLE" + "codePostal": "14480", + "codeCommune": "14200", + "libelleAcheminement": "CREULLY SUR SEULLES", + "nomCommune": "CREULLY SUR SEULLES" }, { - "codePostal": "01220", - "codeCommune": "01143", - "libelleAcheminement": "DIVONNE LES BAINS", - "nomCommune": "DIVONNE LES BAINS" + "codePostal": "14130", + "codeCommune": "14426", + "libelleAcheminement": "LE MESNIL SUR BLANGY", + "nomCommune": "LE MESNIL SUR BLANGY" }, { - "codePostal": "95560", - "codeCommune": "95151", - "libelleAcheminement": "CHAUVRY", - "nomCommune": "CHAUVRY" + "codePostal": "01160", + "codeCommune": "01304", + "libelleAcheminement": "PONT D AIN", + "nomCommune": "PONT D AIN" }, { - "codePostal": "02270", - "codeCommune": "02480", - "libelleAcheminement": "MESBRECOURT RICHECOURT", - "nomCommune": "MESBRECOURT RICHECOURT" + "codePostal": "14450", + "codeCommune": "14204", + "libelleAcheminement": "CRICQUEVILLE EN BESSIN", + "nomCommune": "CRICQUEVILLE EN BESSIN" }, { - "codePostal": "01400", - "codeCommune": "01146", - "libelleAcheminement": "DOMPIERRE SUR CHALARONNE", - "nomCommune": "DOMPIERRE SUR CHALARONNE" + "codePostal": "14140", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "95510", - "codeCommune": "95157", - "libelleAcheminement": "CHERENCE", - "nomCommune": "CHERENCE" + "codePostal": "01460", + "codeCommune": "01307", + "libelleAcheminement": "PORT", + "nomCommune": "PORT" }, { - "codePostal": "02110", - "codeCommune": "02488", - "libelleAcheminement": "MOLAIN", - "nomCommune": "MOLAIN" + "codePostal": "14250", + "codeCommune": "14205", + "libelleAcheminement": "CRISTOT", + "nomCommune": "CRISTOT" }, { - "codePostal": "01270", - "codeCommune": "01147", - "libelleAcheminement": "DOMSURE", - "nomCommune": "DOMSURE" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "95450", - "codeCommune": "95169", - "libelleAcheminement": "COMMENY", - "nomCommune": "COMMENY" + "codePostal": "01110", + "codeCommune": "01311", + "libelleAcheminement": "PREMILLIEU", + "nomCommune": "PREMILLIEU" }, { - "codePostal": "02000", - "codeCommune": "02489", - "libelleAcheminement": "MOLINCHART", - "nomCommune": "MOLINCHART" + "codePostal": "14800", + "codeCommune": "14220", + "libelleAcheminement": "DEAUVILLE", + "nomCommune": "DEAUVILLE" }, { - "codePostal": "01800", - "codeCommune": "01156", - "libelleAcheminement": "FARAMANS", - "nomCommune": "FARAMANS" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "95600", - "codeCommune": "95203", - "libelleAcheminement": "EAUBONNE", - "nomCommune": "EAUBONNE" + "codePostal": "01280", + "codeCommune": "01313", + "libelleAcheminement": "PREVESSIN MOENS", + "nomCommune": "PREVESSIN MOENS" }, { - "codePostal": "02110", - "codeCommune": "02500", - "libelleAcheminement": "MONTBREHAIN", - "nomCommune": "MONTBREHAIN" + "codePostal": "14840", + "codeCommune": "14221", + "libelleAcheminement": "DEMOUVILLE", + "nomCommune": "DEMOUVILLE" }, { - "codePostal": "01480", - "codeCommune": "01157", - "libelleAcheminement": "FAREINS", - "nomCommune": "FAREINS" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "95130", - "codeCommune": "95252", - "libelleAcheminement": "FRANCONVILLE LA GARENNE", - "nomCommune": "FRANCONVILLE" + "codePostal": "01190", + "codeCommune": "01323", + "libelleAcheminement": "REYSSOUZE", + "nomCommune": "REYSSOUZE" }, { - "codePostal": "02440", - "codeCommune": "02504", - "libelleAcheminement": "MONTESCOURT LIZEROLLES", - "nomCommune": "MONTESCOURT LIZEROLLES" + "codePostal": "14230", + "codeCommune": "14224", + "libelleAcheminement": "DEUX JUMEAUX", + "nomCommune": "DEUX JUMEAUX" }, { - "codePostal": "01480", - "codeCommune": "01166", - "libelleAcheminement": "FRANS", - "nomCommune": "FRANS" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "95500", - "codeCommune": "95277", - "libelleAcheminement": "GONESSE", - "nomCommune": "GONESSE" + "codePostal": "01450", + "codeCommune": "01331", + "libelleAcheminement": "ST ALBAN", + "nomCommune": "ST ALBAN" }, { - "codePostal": "02860", - "codeCommune": "02508", - "libelleAcheminement": "MONTHENAULT", - "nomCommune": "MONTHENAULT" + "codePostal": "14220", + "codeCommune": "14226", + "libelleAcheminement": "DONNAY", + "nomCommune": "DONNAY" }, { - "codePostal": "01170", - "codeCommune": "01173", - "libelleAcheminement": "GEX", - "nomCommune": "GEX" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "95190", - "codeCommune": "95280", - "libelleAcheminement": "GOUSSAINVILLE", - "nomCommune": "GOUSSAINVILLE" + "codePostal": "01290", + "codeCommune": "01334", + "libelleAcheminement": "ST ANDRE D HUIRIAT", + "nomCommune": "ST ANDRE D HUIRIAT" }, { - "codePostal": "02400", - "codeCommune": "02509", - "libelleAcheminement": "MONTHIERS", - "nomCommune": "MONTHIERS" + "codePostal": "14440", + "codeCommune": "14228", + "libelleAcheminement": "DOUVRES LA DELIVRANDE", + "nomCommune": "DOUVRES LA DELIVRANDE" }, { - "codePostal": "01110", - "codeCommune": "01185", - "libelleAcheminement": "PLATEAU D HAUTEVILLE", - "nomCommune": "PLATEAU D HAUTEVILLE" + "codePostal": "14120", + "codeCommune": "14437", + "libelleAcheminement": "MONDEVILLE", + "nomCommune": "MONDEVILLE" }, { - "codePostal": "95810", - "codeCommune": "95287", - "libelleAcheminement": "GRISY LES PLATRES", - "nomCommune": "GRISY LES PLATRES" + "codePostal": "01300", + "codeCommune": "01338", + "libelleAcheminement": "GROSLEE ST BENOIT", + "nomCommune": "GROSLEE ST BENOIT" }, { - "codePostal": "02110", - "codeCommune": "02511", - "libelleAcheminement": "MONTIGNY EN ARROUAISE", - "nomCommune": "MONTIGNY EN ARROUAISE" + "codePostal": "14170", + "codeCommune": "14240", + "libelleAcheminement": "EPANEY", + "nomCommune": "EPANEY" }, { - "codePostal": "01260", - "codeCommune": "01187", - "libelleAcheminement": "HAUT VALROMEY", - "nomCommune": "HAUT VALROMEY" + "codePostal": "14620", + "codeCommune": "14452", + "libelleAcheminement": "MORTEAUX COULIBOEUF", + "nomCommune": "MORTEAUX COULIBOEUF" }, { - "codePostal": "95450", - "codeCommune": "95295", - "libelleAcheminement": "GUIRY EN VEXIN", - "nomCommune": "GUIRY EN VEXIN" + "codePostal": "01370", + "codeCommune": "01350", + "libelleAcheminement": "ST ETIENNE DU BOIS", + "nomCommune": "ST ETIENNE DU BOIS" }, { - "codePostal": "02360", - "codeCommune": "02522", - "libelleAcheminement": "MONT ST JEAN", - "nomCommune": "MONT ST JEAN" + "codePostal": "14700", + "codeCommune": "14244", + "libelleAcheminement": "ERAINES", + "nomCommune": "ERAINES" }, { - "codePostal": "01250", - "codeCommune": "01197", - "libelleAcheminement": "JOURNANS", - "nomCommune": "JOURNANS" + "codePostal": "14220", + "codeCommune": "14455", + "libelleAcheminement": "MOULINES", + "nomCommune": "MOULINES" }, { - "codePostal": "95850", - "codeCommune": "95316", - "libelleAcheminement": "JAGNY SOUS BOIS", - "nomCommune": "JAGNY SOUS BOIS" + "codePostal": "01190", + "codeCommune": "01352", + "libelleAcheminement": "ST ETIENNE SUR REYSSOUZE", + "nomCommune": "ST ETIENNE SUR REYSSOUZE" }, { - "codePostal": "02270", - "codeCommune": "02529", - "libelleAcheminement": "MORTIERS", - "nomCommune": "MORTIERS" + "codePostal": "14210", + "codeCommune": "14249", + "libelleAcheminement": "ESQUAY NOTRE DAME", + "nomCommune": "ESQUAY NOTRE DAME" }, { - "codePostal": "01240", - "codeCommune": "01211", - "libelleAcheminement": "LENT", - "nomCommune": "LENT" + "codePostal": "14340", + "codeCommune": "14474", + "libelleAcheminement": "NOTRE DAME D ESTREES CORBON", + "nomCommune": "NOTRE DAME D ESTREES CORBON" }, { - "codePostal": "95280", - "codeCommune": "95323", - "libelleAcheminement": "JOUY LE MOUTIER", - "nomCommune": "JOUY LE MOUTIER" + "codePostal": "01600", + "codeCommune": "01353", + "libelleAcheminement": "STE EUPHEMIE", + "nomCommune": "STE EUPHEMIE" }, { - "codePostal": "02190", - "codeCommune": "02541", - "libelleAcheminement": "NEUFCHATEL SUR AISNE", - "nomCommune": "NEUFCHATEL SUR AISNE" + "codePostal": "14190", + "codeCommune": "14252", + "libelleAcheminement": "ESTREES LA CAMPAGNE", + "nomCommune": "ESTREES LA CAMPAGNE" }, { - "codePostal": "01560", - "codeCommune": "01212", - "libelleAcheminement": "LESCHEROUX", - "nomCommune": "LESCHEROUX" + "codePostal": "14210", + "codeCommune": "14475", + "libelleAcheminement": "VAL D ARRY", + "nomCommune": "VAL D ARRY" }, { - "codePostal": "95380", - "codeCommune": "95351", - "libelleAcheminement": "LOUVRES", - "nomCommune": "LOUVRES" + "codePostal": "01380", + "codeCommune": "01355", + "libelleAcheminement": "ST GENIS SUR MENTHON", + "nomCommune": "ST GENIS SUR MENTHON" }, { - "codePostal": "02250", - "codeCommune": "02547", - "libelleAcheminement": "LA NEUVILLE HOUSSET", - "nomCommune": "LA NEUVILLE HOUSSET" + "codePostal": "14400", + "codeCommune": "14256", + "libelleAcheminement": "ETREHAM", + "nomCommune": "ETREHAM" }, { - "codePostal": "01680", - "codeCommune": "01216", - "libelleAcheminement": "LHUIS", - "nomCommune": "LHUIS" + "codePostal": "14270", + "codeCommune": "14482", + "libelleAcheminement": "OUEZY", + "nomCommune": "OUEZY" }, { - "codePostal": "95270", - "codeCommune": "95352", - "libelleAcheminement": "LUZARCHES", - "nomCommune": "LUZARCHES" + "codePostal": "01240", + "codeCommune": "01359", + "libelleAcheminement": "ST GERMAIN SUR RENON", + "nomCommune": "ST GERMAIN SUR RENON" }, { - "codePostal": "02400", - "codeCommune": "02554", - "libelleAcheminement": "NOGENTEL", - "nomCommune": "NOGENTEL" + "codePostal": "14710", + "codeCommune": "14272", + "libelleAcheminement": "LA FOLIE", + "nomCommune": "LA FOLIE" }, { - "codePostal": "01680", - "codeCommune": "01219", - "libelleAcheminement": "LOMPNAS", - "nomCommune": "LOMPNAS" + "codePostal": "14520", + "codeCommune": "14515", + "libelleAcheminement": "PORT EN BESSIN HUPPAIN", + "nomCommune": "PORT EN BESSIN HUPPAIN" }, { - "codePostal": "95540", - "codeCommune": "95394", - "libelleAcheminement": "MERY SUR OISE", - "nomCommune": "MERY SUR OISE" + "codePostal": "01390", + "codeCommune": "01362", + "libelleAcheminement": "ST JEAN DE THURIGNEUX", + "nomCommune": "ST JEAN DE THURIGNEUX" }, { - "codePostal": "02270", - "codeCommune": "02559", - "libelleAcheminement": "NOUVION ET CATILLON", - "nomCommune": "NOUVION ET CATILLON" + "codePostal": "14710", + "codeCommune": "14281", + "libelleAcheminement": "FORMIGNY LA BATAILLE", + "nomCommune": "FORMIGNY LA BATAILLE" }, { - "codePostal": "01360", - "codeCommune": "01224", - "libelleAcheminement": "LOYETTES", - "nomCommune": "LOYETTES" + "codePostal": "14420", + "codeCommune": "14516", + "libelleAcheminement": "POTIGNY", + "nomCommune": "POTIGNY" }, { - "codePostal": "95720", - "codeCommune": "95395", - "libelleAcheminement": "LE MESNIL AUBRY", - "nomCommune": "LE MESNIL AUBRY" + "codePostal": "01290", + "codeCommune": "01365", + "libelleAcheminement": "ST JEAN SUR VEYLE", + "nomCommune": "ST JEAN SUR VEYLE" }, { - "codePostal": "02290", - "codeCommune": "02562", - "libelleAcheminement": "NOUVRON VINGRE", - "nomCommune": "NOUVRON VINGRE" + "codePostal": "14620", + "codeCommune": "14283", + "libelleAcheminement": "FOURCHES", + "nomCommune": "FOURCHES" }, { - "codePostal": "01570", - "codeCommune": "01231", - "libelleAcheminement": "MANZIAT", - "nomCommune": "MANZIAT" + "codePostal": "14340", + "codeCommune": "14527", + "libelleAcheminement": "BELLE VIE EN AUGE", + "nomCommune": "BELLE VIE EN AUGE" }, { - "codePostal": "95640", - "codeCommune": "95438", - "libelleAcheminement": "MOUSSY", - "nomCommune": "MOUSSY" + "codePostal": "01330", + "codeCommune": "01382", + "libelleAcheminement": "STE OLIVE", + "nomCommune": "STE OLIVE" }, { - "codePostal": "02450", - "codeCommune": "02569", - "libelleAcheminement": "OISY", - "nomCommune": "OISY" + "codePostal": "14340", + "codeCommune": "14285", + "libelleAcheminement": "LE FOURNET", + "nomCommune": "LE FOURNET" }, { - "codePostal": "01580", - "codeCommune": "01240", - "libelleAcheminement": "MATAFELON GRANGES", - "nomCommune": "MATAFELON GRANGES" + "codePostal": "14600", + "codeCommune": "14536", + "libelleAcheminement": "LA RIVIERE ST SAUVEUR", + "nomCommune": "LA RIVIERE ST SAUVEUR" }, { - "codePostal": "95590", - "codeCommune": "95445", - "libelleAcheminement": "NERVILLE LA FORET", - "nomCommune": "NERVILLE LA FORET" + "codePostal": "01150", + "codeCommune": "01386", + "libelleAcheminement": "ST SORLIN EN BUGEY", + "nomCommune": "ST SORLIN EN BUGEY" }, { - "codePostal": "02390", - "codeCommune": "02575", - "libelleAcheminement": "ORIGNY STE BENOITE", - "nomCommune": "ORIGNY STE BENOITE" + "codePostal": "14600", + "codeCommune": "14286", + "libelleAcheminement": "FOURNEVILLE", + "nomCommune": "FOURNEVILLE" }, { - "codePostal": "01250", - "codeCommune": "01245", - "libelleAcheminement": "BOHAS MEYRIAT RIGNAT", - "nomCommune": "BOHAS MEYRIAT RIGNAT" + "codePostal": "14540", + "codeCommune": "14538", + "libelleAcheminement": "CASTINE EN PLAINE", + "nomCommune": "CASTINE EN PLAINE" }, { - "codePostal": "95690", - "codeCommune": "95446", - "libelleAcheminement": "NESLES LA VALLEE", - "nomCommune": "NESLES LA VALLEE" + "codePostal": "01470", + "codeCommune": "01400", + "libelleAcheminement": "SEILLONNAZ", + "nomCommune": "SEILLONNAZ" }, { - "codePostal": "02160", - "codeCommune": "02578", - "libelleAcheminement": "OULCHES LA VALLEE FOULON", - "nomCommune": "OULCHES LA VALLEE FOULON" + "codePostal": "14480", + "codeCommune": "14288", + "libelleAcheminement": "LE FRESNE CAMILLY", + "nomCommune": "LE FRESNE CAMILLY" }, { - "codePostal": "01600", - "codeCommune": "01250", - "libelleAcheminement": "MISERIEUX", - "nomCommune": "MISERIEUX" + "codePostal": "14980", + "codeCommune": "14543", + "libelleAcheminement": "ROTS", + "nomCommune": "ROTS" }, { - "codePostal": "95270", - "codeCommune": "95456", - "libelleAcheminement": "NOISY SUR OISE", - "nomCommune": "NOISY SUR OISE" + "codePostal": "01420", + "codeCommune": "01407", + "libelleAcheminement": "SEYSSEL", + "nomCommune": "SEYSSEL" }, { - "codePostal": "02210", - "codeCommune": "02580", - "libelleAcheminement": "OULCHY LE CHATEAU", - "nomCommune": "OULCHY LE CHATEAU" + "codePostal": "14210", + "codeCommune": "14297", + "libelleAcheminement": "GAVRUS", + "nomCommune": "GAVRUS" }, { - "codePostal": "01200", - "codeCommune": "01257", - "libelleAcheminement": "MONTANGES", - "nomCommune": "MONTANGES" + "codePostal": "14340", + "codeCommune": "14550", + "libelleAcheminement": "RUMESNIL", + "nomCommune": "RUMESNIL" }, { - "codePostal": "95340", - "codeCommune": "95487", - "libelleAcheminement": "PERSAN", - "nomCommune": "PERSAN" + "codePostal": "01510", + "codeCommune": "01415", + "libelleAcheminement": "TALISSIEU", + "nomCommune": "TALISSIEU" }, { - "codePostal": "02210", - "codeCommune": "02585", - "libelleAcheminement": "PARCY ET TIGNY", - "nomCommune": "PARCY ET TIGNY" + "codePostal": "14730", + "codeCommune": "14301", + "libelleAcheminement": "GIBERVILLE", + "nomCommune": "GIBERVILLE" }, { - "codePostal": "01800", - "codeCommune": "01260", - "libelleAcheminement": "LE MONTELLIER", - "nomCommune": "LE MONTELLIER" + "codePostal": "14540", + "codeCommune": "14554", + "libelleAcheminement": "LE CASTELET", + "nomCommune": "LE CASTELET" }, { - "codePostal": "95220", - "codeCommune": "95488", - "libelleAcheminement": "PIERRELAYE", - "nomCommune": "PIERRELAYE" + "codePostal": "01170", + "codeCommune": "01436", + "libelleAcheminement": "VESANCY", + "nomCommune": "VESANCY" }, { - "codePostal": "02270", - "codeCommune": "02591", - "libelleAcheminement": "PARGNY LES BOIS", - "nomCommune": "PARGNY LES BOIS" + "codePostal": "14450", + "codeCommune": "14312", + "libelleAcheminement": "GRANDCAMP MAISY", + "nomCommune": "GRANDCAMP MAISY" }, { - "codePostal": "01340", - "codeCommune": "01266", - "libelleAcheminement": "MONTREVEL EN BRESSE", - "nomCommune": "MONTREVEL EN BRESSE" + "codePostal": "14960", + "codeCommune": "14565", + "libelleAcheminement": "ST COME DE FRESNE", + "nomCommune": "ST COME DE FRESNE" }, { - "codePostal": "95480", - "codeCommune": "95488", - "libelleAcheminement": "PIERRELAYE", - "nomCommune": "PIERRELAYE" + "codePostal": "01570", + "codeCommune": "01439", + "libelleAcheminement": "VESINES", + "nomCommune": "VESINES" }, { - "codePostal": "02200", - "codeCommune": "02593", - "libelleAcheminement": "PASLY", - "nomCommune": "PASLY" + "codePostal": "14700", + "codeCommune": "14332", + "libelleAcheminement": "LA HOGUETTE", + "nomCommune": "LA HOGUETTE" }, { - "codePostal": "01460", - "codeCommune": "01267", - "libelleAcheminement": "NURIEUX VOLOGNAT", - "nomCommune": "NURIEUX VOLOGNAT" + "codePostal": "14290", + "codeCommune": "14570", + "libelleAcheminement": "VALORBIQUET", + "nomCommune": "VALORBIQUET" }, { - "codePostal": "95130", - "codeCommune": "95491", - "libelleAcheminement": "LE PLESSIS BOUCHARD", - "nomCommune": "LE PLESSIS BOUCHARD" + "codePostal": "01150", + "codeCommune": "01444", + "libelleAcheminement": "VILLEBOIS", + "nomCommune": "VILLEBOIS" }, { - "codePostal": "02200", - "codeCommune": "02607", - "libelleAcheminement": "PLOISY", - "nomCommune": "PLOISY" + "codePostal": "14230", + "codeCommune": "14342", + "libelleAcheminement": "ISIGNY SUR MER", + "nomCommune": "ISIGNY SUR MER" }, { - "codePostal": "01460", - "codeCommune": "01269", - "libelleAcheminement": "NANTUA", - "nomCommune": "NANTUA" + "codePostal": "14100", + "codeCommune": "14571", + "libelleAcheminement": "ST DENIS DE MAILLOC", + "nomCommune": "ST DENIS DE MAILLOC" }, { - "codePostal": "95590", - "codeCommune": "95504", - "libelleAcheminement": "PRESLES", - "nomCommune": "PRESLES" + "codePostal": "01800", + "codeCommune": "01450", + "libelleAcheminement": "VILLIEU LOYES MOLLON", + "nomCommune": "VILLIEU LOYES MOLLON" }, { - "codePostal": "02490", - "codeCommune": "02614", - "libelleAcheminement": "PONTRU", - "nomCommune": "PONTRU" + "codePostal": "14690", + "codeCommune": "14343", + "libelleAcheminement": "LES ISLES BARDEL", + "nomCommune": "LES ISLES BARDEL" }, { - "codePostal": "01700", - "codeCommune": "01275", - "libelleAcheminement": "NEYRON", - "nomCommune": "NEYRON" + "codePostal": "14140", + "codeCommune": "14576", + "libelleAcheminement": "VAL DE VIE", + "nomCommune": "VAL DE VIE" }, { - "codePostal": "95380", - "codeCommune": "95509", - "libelleAcheminement": "PUISEUX EN FRANCE", - "nomCommune": "PUISEUX EN FRANCE" + "codePostal": "01510", + "codeCommune": "01452", + "libelleAcheminement": "VIRIEU LE GRAND", + "nomCommune": "VIRIEU LE GRAND" }, { - "codePostal": "02470", - "codeCommune": "02622", - "libelleAcheminement": "PRIEZ", - "nomCommune": "PRIEZ" + "codePostal": "14260", + "codeCommune": "14347", + "libelleAcheminement": "DIALAN SUR CHAINE", + "nomCommune": "DIALAN SUR CHAINE" }, { - "codePostal": "01130", - "codeCommune": "01298", - "libelleAcheminement": "PLAGNE", - "nomCommune": "PLAGNE" + "codePostal": "14130", + "codeCommune": "14593", + "libelleAcheminement": "ST HYMER", + "nomCommune": "ST HYMER" }, { - "codePostal": "95700", - "codeCommune": "95527", - "libelleAcheminement": "ROISSY EN FRANCE", - "nomCommune": "ROISSY EN FRANCE" + "codePostal": "01300", + "codeCommune": "01454", + "libelleAcheminement": "VIRIGNIN", + "nomCommune": "VIRIGNIN" }, { - "codePostal": "02120", - "codeCommune": "02624", - "libelleAcheminement": "PROISY", - "nomCommune": "PROISY" + "codePostal": "14250", + "codeCommune": "14348", + "libelleAcheminement": "JUVIGNY SUR SEULLES", + "nomCommune": "JUVIGNY SUR SEULLES" }, { - "codePostal": "01390", - "codeCommune": "01318", - "libelleAcheminement": "RANCE", - "nomCommune": "RANCE" + "codePostal": "14130", + "codeCommune": "14601", + "libelleAcheminement": "ST JULIEN SUR CALONNE", + "nomCommune": "ST JULIEN SUR CALONNE" }, { - "codePostal": "95200", - "codeCommune": "95585", - "libelleAcheminement": "SARCELLES", - "nomCommune": "SARCELLES" + "codePostal": "02300", + "codeCommune": "02001", + "libelleAcheminement": "ABBECOURT", + "nomCommune": "ABBECOURT" }, { - "codePostal": "02360", - "codeCommune": "02634", - "libelleAcheminement": "RAILLIMONT", - "nomCommune": "RAILLIMONT" + "codePostal": "14320", + "codeCommune": "14349", + "libelleAcheminement": "LAIZE CLINCHAMPS", + "nomCommune": "LAIZE CLINCHAMPS" }, { - "codePostal": "01800", - "codeCommune": "01325", - "libelleAcheminement": "RIGNIEUX LE FRANC", - "nomCommune": "RIGNIEUX LE FRANC" + "codePostal": "14400", + "codeCommune": "14609", + "libelleAcheminement": "ST LOUP HORS", + "nomCommune": "ST LOUP HORS" }, { - "codePostal": "95470", - "codeCommune": "95604", - "libelleAcheminement": "SURVILLIERS", - "nomCommune": "SURVILLIERS" + "codePostal": "02800", + "codeCommune": "02002", + "libelleAcheminement": "ACHERY", + "nomCommune": "ACHERY" }, { - "codePostal": "02800", - "codeCommune": "02651", - "libelleAcheminement": "ROGECOURT", - "nomCommune": "ROGECOURT" + "codePostal": "14310", + "codeCommune": "14353", + "libelleAcheminement": "LANDES SUR AJON", + "nomCommune": "LANDES SUR AJON" }, { - "codePostal": "01450", - "codeCommune": "01331", - "libelleAcheminement": "ST ALBAN", - "nomCommune": "ST ALBAN" + "codePostal": "14330", + "codeCommune": "14614", + "libelleAcheminement": "STE MARGUERITE D ELLE", + "nomCommune": "STE MARGUERITE D ELLE" }, { - "codePostal": "95450", - "codeCommune": "95610", - "libelleAcheminement": "THEMERICOURT", - "nomCommune": "THEMERICOURT" + "codePostal": "02800", + "codeCommune": "02016", + "libelleAcheminement": "ANDELAIN", + "nomCommune": "ANDELAIN" }, { - "codePostal": "02130", - "codeCommune": "02655", - "libelleAcheminement": "RONCHERES", - "nomCommune": "RONCHERES" + "codePostal": "14700", + "codeCommune": "14360", + "libelleAcheminement": "LEFFARD", + "nomCommune": "LEFFARD" }, { - "codePostal": "01600", - "codeCommune": "01339", - "libelleAcheminement": "ST BERNARD", - "nomCommune": "ST BERNARD" + "codePostal": "14290", + "codeCommune": "14621", + "libelleAcheminement": "ST MARTIN BIENFAITE CRESSONNIERE", + "nomCommune": "ST MARTIN DE BIENFAITE LA CRESSONNIERE" }, { - "codePostal": "95570", - "codeCommune": "95660", - "libelleAcheminement": "VILLAINES SOUS BOIS", - "nomCommune": "VILLAINES SOUS BOIS" + "codePostal": "02500", + "codeCommune": "02020", + "libelleAcheminement": "ANY MARTIN RIEUX", + "nomCommune": "ANY MARTIN RIEUX" }, { - "codePostal": "02140", - "codeCommune": "02657", - "libelleAcheminement": "ROUGERIES", - "nomCommune": "ROUGERIES" + "codePostal": "14330", + "codeCommune": "14370", + "libelleAcheminement": "LE MOLAY LITTRY", + "nomCommune": "LE MOLAY LITTRY" }, { - "codePostal": "01140", - "codeCommune": "01348", - "libelleAcheminement": "ST DIDIER SUR CHALARONNE", - "nomCommune": "ST DIDIER SUR CHALARONNE" + "codePostal": "14950", + "codeCommune": "14645", + "libelleAcheminement": "ST PIERRE AZIF", + "nomCommune": "ST PIERRE AZIF" }, { - "codePostal": "97142", - "codeCommune": "97101", - "libelleAcheminement": "LES ABYMES", - "nomCommune": "LES ABYMES" + "codePostal": "02480", + "codeCommune": "02025", + "libelleAcheminement": "ARTEMPS", + "nomCommune": "ARTEMPS" }, { - "codePostal": "02200", - "codeCommune": "02663", - "libelleAcheminement": "ROZIERES SUR CRISE", - "nomCommune": "ROZIERES SUR CRISE" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01370", - "codeCommune": "01350", - "libelleAcheminement": "ST ETIENNE DU BOIS", - "nomCommune": "ST ETIENNE DU BOIS" + "codePostal": "14260", + "codeCommune": "14650", + "libelleAcheminement": "ST PIERRE DU FRESNE", + "nomCommune": "ST PIERRE DU FRESNE" }, { - "codePostal": "97122", - "codeCommune": "97103", - "libelleAcheminement": "BAIE MAHAULT", - "nomCommune": "BAIE MAHAULT" + "codePostal": "02490", + "codeCommune": "02029", + "libelleAcheminement": "ATTILLY", + "nomCommune": "ATTILLY" }, { - "codePostal": "02360", - "codeCommune": "02666", - "libelleAcheminement": "ROZOY SUR SERRE", - "nomCommune": "ROZOY SUR SERRE" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01130", - "codeCommune": "01357", - "libelleAcheminement": "ST GERMAIN DE JOUX", - "nomCommune": "ST GERMAIN DE JOUX" + "codePostal": "14140", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "97126", - "codeCommune": "97111", - "libelleAcheminement": "DESHAIES", - "nomCommune": "DESHAIES" + "codePostal": "02590", + "codeCommune": "02032", + "libelleAcheminement": "AUBIGNY AUX KAISNES", + "nomCommune": "AUBIGNY AUX KAISNES" }, { - "codePostal": "02340", - "codeCommune": "02678", - "libelleAcheminement": "STE GENEVIEVE", - "nomCommune": "STE GENEVIEVE" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01240", - "codeCommune": "01359", - "libelleAcheminement": "ST GERMAIN SUR RENON", - "nomCommune": "ST GERMAIN SUR RENON" + "codePostal": "14140", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "97160", - "codeCommune": "97117", - "libelleAcheminement": "LE MOULE", - "nomCommune": "LE MOULE" + "codePostal": "02290", + "codeCommune": "02043", + "libelleAcheminement": "BAGNEUX", + "nomCommune": "BAGNEUX" }, { - "codePostal": "02600", - "codeCommune": "02687", - "libelleAcheminement": "ST PIERRE AIGLE", - "nomCommune": "ST PIERRE AIGLE" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01390", - "codeCommune": "01362", - "libelleAcheminement": "ST JEAN DE THURIGNEUX", - "nomCommune": "ST JEAN DE THURIGNEUX" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "97180", - "codeCommune": "97128", - "libelleAcheminement": "STE ANNE", - "nomCommune": "STE ANNE" + "codePostal": "02270", + "codeCommune": "02048", + "libelleAcheminement": "BARENTON SUR SERRE", + "nomCommune": "BARENTON SUR SERRE" }, { - "codePostal": "02210", - "codeCommune": "02693", - "libelleAcheminement": "ST REMY BLANZY", - "nomCommune": "ST REMY BLANZY" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01560", - "codeCommune": "01367", - "libelleAcheminement": "ST JULIEN SUR REYSSOUZE", - "nomCommune": "ST JULIEN SUR REYSSOUZE" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "97137", - "codeCommune": "97131", - "libelleAcheminement": "TERRE DE HAUT", - "nomCommune": "TERRE DE HAUT" + "codePostal": "02220", + "codeCommune": "02054", + "libelleAcheminement": "BAZOCHES ET ST THIBAUT", + "nomCommune": "BAZOCHES ET ST THIBAUT" }, { - "codePostal": "02880", - "codeCommune": "02698", - "libelleAcheminement": "SANCY LES CHEMINOTS", - "nomCommune": "SANCY LES CHEMINOTS" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01560", - "codeCommune": "01380", - "libelleAcheminement": "ST NIZIER LE BOUCHOUX", - "nomCommune": "ST NIZIER LE BOUCHOUX" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "97114", - "codeCommune": "97132", - "libelleAcheminement": "TROIS RIVIERES", - "nomCommune": "TROIS RIVIERES" + "codePostal": "02590", + "codeCommune": "02060", + "libelleAcheminement": "BEAUVOIS EN VERMANDOIS", + "nomCommune": "BEAUVOIS EN VERMANDOIS" }, { - "codePostal": "02110", - "codeCommune": "02703", - "libelleAcheminement": "SEBONCOURT", - "nomCommune": "SEBONCOURT" + "codePostal": "14111", + "codeCommune": "14383", + "libelleAcheminement": "LOUVIGNY", + "nomCommune": "LOUVIGNY" }, { - "codePostal": "01230", - "codeCommune": "01384", - "libelleAcheminement": "ST RAMBERT EN BUGEY", - "nomCommune": "ST RAMBERT EN BUGEY" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "97222", - "codeCommune": "97205", - "libelleAcheminement": "CASE PILOTE", - "nomCommune": "CASE PILOTE" + "codePostal": "02420", + "codeCommune": "02063", + "libelleAcheminement": "BELLENGLISE", + "nomCommune": "BELLENGLISE" }, { - "codePostal": "02300", - "codeCommune": "02704", - "libelleAcheminement": "SELENS", - "nomCommune": "SELENS" + "codePostal": "14700", + "codeCommune": "14405", + "libelleAcheminement": "MARTIGNY SUR L ANTE", + "nomCommune": "MARTIGNY SUR L ANTE" }, { - "codePostal": "01150", - "codeCommune": "01386", - "libelleAcheminement": "ST SORLIN EN BUGEY", - "nomCommune": "ST SORLIN EN BUGEY" + "codePostal": "14570", + "codeCommune": "14656", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "97224", - "codeCommune": "97207", - "libelleAcheminement": "DUCOS", - "nomCommune": "DUCOS" + "codePostal": "02440", + "codeCommune": "02066", + "libelleAcheminement": "BENAY", + "nomCommune": "BENAY" }, { - "codePostal": "02150", - "codeCommune": "02705", - "libelleAcheminement": "LA SELVE", - "nomCommune": "LA SELVE" + "codePostal": "14480", + "codeCommune": "14406", + "libelleAcheminement": "MOULINS EN BESSIN", + "nomCommune": "MOULINS EN BESSIN" }, { - "codePostal": "01480", - "codeCommune": "01398", - "libelleAcheminement": "SAVIGNEUX", - "nomCommune": "SAVIGNEUX" + "codePostal": "14670", + "codeCommune": "14657", + "libelleAcheminement": "ST SAMSON", + "nomCommune": "ST SAMSON" }, { - "codePostal": "97218", - "codeCommune": "97211", - "libelleAcheminement": "GRAND RIVIERE", - "nomCommune": "GRAND RIVIERE" + "codePostal": "02190", + "codeCommune": "02073", + "libelleAcheminement": "BERRY AU BAC", + "nomCommune": "BERRY AU BAC" }, { - "codePostal": "02790", - "codeCommune": "02710", - "libelleAcheminement": "SERAUCOURT LE GRAND", - "nomCommune": "SERAUCOURT LE GRAND" + "codePostal": "14320", + "codeCommune": "14408", + "libelleAcheminement": "MAY SUR ORNE", + "nomCommune": "MAY SUR ORNE" }, { - "codePostal": "01170", - "codeCommune": "01399", - "libelleAcheminement": "SEGNY", - "nomCommune": "SEGNY" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "97218", - "codeCommune": "97215", - "libelleAcheminement": "MACOUBA", - "nomCommune": "MACOUBA" + "codePostal": "02800", + "codeCommune": "02074", + "libelleAcheminement": "BERTAUCOURT EPOURDON", + "nomCommune": "BERTAUCOURT EPOURDON" }, { - "codePostal": "02460", - "codeCommune": "02718", - "libelleAcheminement": "SILLY LA POTERIE", - "nomCommune": "SILLY LA POTERIE" + "codePostal": "14100", + "codeCommune": "14419", + "libelleAcheminement": "LE MESNIL EUDES", + "nomCommune": "LE MESNIL EUDES" }, { - "codePostal": "01450", - "codeCommune": "01404", - "libelleAcheminement": "SERRIERES SUR AIN", - "nomCommune": "SERRIERES SUR AIN" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "97225", - "codeCommune": "97216", - "libelleAcheminement": "LE MARIGOT", - "nomCommune": "LE MARIGOT" + "codePostal": "02300", + "codeCommune": "02078", + "libelleAcheminement": "BESME", + "nomCommune": "BESME" }, { - "codePostal": "02340", - "codeCommune": "02723", - "libelleAcheminement": "SOIZE", - "nomCommune": "SOIZE" + "codePostal": "14140", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "01420", - "codeCommune": "01407", - "libelleAcheminement": "SEYSSEL", - "nomCommune": "SEYSSEL" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "97290", - "codeCommune": "97217", - "libelleAcheminement": "LE MARIN", - "nomCommune": "LE MARIN" + "codePostal": "02210", + "codeCommune": "02082", + "libelleAcheminement": "BEUGNEUX", + "nomCommune": "BEUGNEUX" }, { - "codePostal": "02600", - "codeCommune": "02734", - "libelleAcheminement": "TAILLEFONTAINE", - "nomCommune": "TAILLEFONTAINE" + "codePostal": "14140", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "01230", - "codeCommune": "01421", - "libelleAcheminement": "TORCIEU", - "nomCommune": "TORCIEU" + "codePostal": "14190", + "codeCommune": "14659", + "libelleAcheminement": "ST SYLVAIN", + "nomCommune": "ST SYLVAIN" }, { - "codePostal": "97227", - "codeCommune": "97226", - "libelleAcheminement": "STE ANNE", - "nomCommune": "STE ANNE" + "codePostal": "01100", + "codeCommune": "01014", + "libelleAcheminement": "ARBENT", + "nomCommune": "ARBENT" }, { - "codePostal": "02220", - "codeCommune": "02735", - "libelleAcheminement": "TANNIERES", - "nomCommune": "TANNIERES" + "codePostal": "02300", + "codeCommune": "02086", + "libelleAcheminement": "BICHANCOURT", + "nomCommune": "BICHANCOURT" }, { - "codePostal": "01370", - "codeCommune": "01426", - "libelleAcheminement": "VAL REVERMONT", - "nomCommune": "VAL REVERMONT" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "97230", - "codeCommune": "97228", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "14330", + "codeCommune": "14667", + "libelleAcheminement": "SAON", + "nomCommune": "SAON" }, { - "codePostal": "02290", - "codeCommune": "02736", - "libelleAcheminement": "TARTIERS", - "nomCommune": "TARTIERS" + "codePostal": "01260", + "codeCommune": "01036", + "libelleAcheminement": "VALROMEY SUR SERAN", + "nomCommune": "VALROMEY SUR SERAN" }, { - "codePostal": "01600", - "codeCommune": "01427", - "libelleAcheminement": "TREVOUX", - "nomCommune": "TREVOUX" + "codePostal": "02290", + "codeCommune": "02087", + "libelleAcheminement": "BIEUXY", + "nomCommune": "BIEUXY" }, { - "codePostal": "97230", - "codeCommune": "97228", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "14370", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "02700", - "codeCommune": "02738", - "libelleAcheminement": "TERGNIER", - "nomCommune": "TERGNIER" + "codePostal": "14350", + "codeCommune": "14672", + "libelleAcheminement": "VAL DE DROME", + "nomCommune": "VAL DE DROME" }, { - "codePostal": "01150", - "codeCommune": "01431", - "libelleAcheminement": "VAUX EN BUGEY", - "nomCommune": "VAUX EN BUGEY" - }, - { - "codePostal": "97311", - "codeCommune": "97310", - "libelleAcheminement": "ROURA", - "nomCommune": "ROURA" + "codePostal": "01260", + "codeCommune": "01036", + "libelleAcheminement": "VALROMEY SUR SERAN", + "nomCommune": "VALROMEY SUR SERAN" }, { - "codePostal": "02810", - "codeCommune": "02744", - "libelleAcheminement": "TORCY EN VALOIS", - "nomCommune": "TORCY EN VALOIS" + "codePostal": "02270", + "codeCommune": "02096", + "libelleAcheminement": "BOIS LES PARGNY", + "nomCommune": "BOIS LES PARGNY" }, { - "codePostal": "01800", - "codeCommune": "01450", - "libelleAcheminement": "VILLIEU LOYES MOLLON", - "nomCommune": "VILLIEU LOYES MOLLON" + "codePostal": "14100", + "codeCommune": "14435", + "libelleAcheminement": "LES MONCEAUX", + "nomCommune": "LES MONCEAUX" }, { - "codePostal": "97380", - "codeCommune": "97314", - "libelleAcheminement": "OUANARY", - "nomCommune": "OUANARY" + "codePostal": "14540", + "codeCommune": "14675", + "libelleAcheminement": "SOLIERS", + "nomCommune": "SOLIERS" }, { - "codePostal": "02800", - "codeCommune": "02746", - "libelleAcheminement": "TRAVECY", - "nomCommune": "TRAVECY" + "codePostal": "01260", + "codeCommune": "01036", + "libelleAcheminement": "VALROMEY SUR SERAN", + "nomCommune": "VALROMEY SUR SERAN" }, { - "codePostal": "01440", - "codeCommune": "01451", - "libelleAcheminement": "VIRIAT", - "nomCommune": "VIRIAT" + "codePostal": "02860", + "codeCommune": "02102", + "libelleAcheminement": "BOUCONVILLE VAUCLAIR", + "nomCommune": "BOUCONVILLE VAUCLAIR" }, { - "codePostal": "97317", - "codeCommune": "97360", - "libelleAcheminement": "APATOU", - "nomCommune": "APATOU" + "codePostal": "14400", + "codeCommune": "14436", + "libelleAcheminement": "MONCEAUX EN BESSIN", + "nomCommune": "MONCEAUX EN BESSIN" }, { - "codePostal": "02300", - "codeCommune": "02750", - "libelleAcheminement": "TROSLY LOIRE", - "nomCommune": "TROSLY LOIRE" + "codePostal": "14400", + "codeCommune": "14676", + "libelleAcheminement": "SOMMERVIEU", + "nomCommune": "SOMMERVIEU" }, { "codePostal": "01260", - "codeCommune": "01453", - "libelleAcheminement": "ARVIERE EN VALROMEY", - "nomCommune": "ARVIERE EN VALROMEY" + "codeCommune": "01036", + "libelleAcheminement": "VALROMEY SUR SERAN", + "nomCommune": "VALROMEY SUR SERAN" }, { - "codePostal": "97419", - "codeCommune": "97408", - "libelleAcheminement": "LA POSSESSION", - "nomCommune": "LA POSSESSION" + "codePostal": "02400", + "codeCommune": "02105", + "libelleAcheminement": "BOURESCHES", + "nomCommune": "BOURESCHES" }, { - "codePostal": "02220", - "codeCommune": "02763", - "libelleAcheminement": "VASSENY", - "nomCommune": "VASSENY" + "codePostal": "14210", + "codeCommune": "14438", + "libelleAcheminement": "MONDRAINVILLE", + "nomCommune": "MONDRAINVILLE" }, { - "codePostal": "02300", - "codeCommune": "02001", - "libelleAcheminement": "ABBECOURT", - "nomCommune": "ABBECOURT" + "codePostal": "14130", + "codeCommune": "14682", + "libelleAcheminement": "SURVILLE", + "nomCommune": "SURVILLE" }, { - "codePostal": "97440", - "codeCommune": "97409", - "libelleAcheminement": "ST ANDRE", - "nomCommune": "ST ANDRE" + "codePostal": "01290", + "codeCommune": "01042", + "libelleAcheminement": "BEY", + "nomCommune": "BEY" }, { - "codePostal": "02160", - "codeCommune": "02764", - "libelleAcheminement": "VASSOGNE", - "nomCommune": "VASSOGNE" + "codePostal": "02240", + "codeCommune": "02124", + "libelleAcheminement": "BRISSY HAMEGICOURT", + "nomCommune": "BRISSY HAMEGICOURT" }, { - "codePostal": "02370", - "codeCommune": "02008", - "libelleAcheminement": "AIZY JOUY", - "nomCommune": "AIZY JOUY" + "codePostal": "14210", + "codeCommune": "14446", + "libelleAcheminement": "MONTIGNY", + "nomCommune": "MONTIGNY" }, { - "codePostal": "97400", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "14610", + "codeCommune": "14685", + "libelleAcheminement": "THAON", + "nomCommune": "THAON" }, { - "codePostal": "02000", - "codeCommune": "02765", - "libelleAcheminement": "VAUCELLES ET BEFFECOURT", - "nomCommune": "VAUCELLES ET BEFFECOURT" + "codePostal": "01800", + "codeCommune": "01054", + "libelleAcheminement": "BOURG ST CHRISTOPHE", + "nomCommune": "BOURG ST CHRISTOPHE" }, { - "codePostal": "02240", - "codeCommune": "02009", - "libelleAcheminement": "ALAINCOURT", - "nomCommune": "ALAINCOURT" + "codePostal": "02810", + "codeCommune": "02125", + "libelleAcheminement": "BRUMETZ", + "nomCommune": "BRUMETZ" }, { - "codePostal": "97400", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "14370", + "codeCommune": "14456", + "libelleAcheminement": "MOULT CHICHEBOVILLE", + "nomCommune": "MOULT CHICHEBOVILLE" }, { - "codePostal": "02590", - "codeCommune": "02772", - "libelleAcheminement": "VAUX EN VERMANDOIS", - "nomCommune": "VAUX EN VERMANDOIS" + "codePostal": "14220", + "codeCommune": "14689", + "libelleAcheminement": "THURY HARCOURT LE HOM", + "nomCommune": "THURY HARCOURT LE HOM" }, { - "codePostal": "02320", - "codeCommune": "02018", - "libelleAcheminement": "ANIZY LE GRAND", - "nomCommune": "ANIZY LE GRAND" + "codePostal": "01300", + "codeCommune": "01061", + "libelleAcheminement": "BRENS", + "nomCommune": "BRENS" }, { - "codePostal": "97490", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "02360", + "codeCommune": "02126", + "libelleAcheminement": "BRUNEHAMEL", + "nomCommune": "BRUNEHAMEL" }, { - "codePostal": "02220", - "codeCommune": "02773", - "libelleAcheminement": "VAUXTIN", - "nomCommune": "VAUXTIN" + "codePostal": "14370", + "codeCommune": "14456", + "libelleAcheminement": "MOULT CHICHEBOVILLE", + "nomCommune": "MOULT CHICHEBOVILLE" }, { - "codePostal": "02820", - "codeCommune": "02033", - "libelleAcheminement": "AUBIGNY EN LAONNOIS", - "nomCommune": "AUBIGNY EN LAONNOIS" + "codePostal": "14130", + "codeCommune": "14694", + "libelleAcheminement": "LE TORQUESNE", + "nomCommune": "LE TORQUESNE" }, { - "codePostal": "97480", - "codeCommune": "97412", - "libelleAcheminement": "ST JOSEPH", - "nomCommune": "ST JOSEPH" + "codePostal": "01360", + "codeCommune": "01062", + "libelleAcheminement": "BRESSOLLES", + "nomCommune": "BRESSOLLES" }, { - "codePostal": "02800", - "codeCommune": "02775", - "libelleAcheminement": "VENDEUIL", - "nomCommune": "VENDEUIL" + "codePostal": "02880", + "codeCommune": "02131", + "libelleAcheminement": "BUCY LE LONG", + "nomCommune": "BUCY LE LONG" }, { - "codePostal": "02300", - "codeCommune": "02034", - "libelleAcheminement": "AUDIGNICOURT", - "nomCommune": "AUDIGNICOURT" + "codePostal": "14220", + "codeCommune": "14461", + "libelleAcheminement": "MUTRECY", + "nomCommune": "MUTRECY" }, { - "codePostal": "97416", - "codeCommune": "97413", - "libelleAcheminement": "ST LEU", - "nomCommune": "ST LEU" + "codePostal": "14400", + "codeCommune": "14700", + "libelleAcheminement": "TOUR EN BESSIN", + "nomCommune": "TOUR EN BESSIN" }, { - "codePostal": "02540", - "codeCommune": "02777", - "libelleAcheminement": "VENDIERES", - "nomCommune": "VENDIERES" + "codePostal": "01460", + "codeCommune": "01063", + "libelleAcheminement": "BRION", + "nomCommune": "BRION" }, { - "codePostal": "02360", - "codeCommune": "02038", - "libelleAcheminement": "LES AUTELS", - "nomCommune": "LES AUTELS" + "codePostal": "02300", + "codeCommune": "02139", + "libelleAcheminement": "CAILLOUEL CREPIGNY", + "nomCommune": "CAILLOUEL CREPIGNY" }, { - "codePostal": "97424", - "codeCommune": "97413", - "libelleAcheminement": "ST LEU", - "nomCommune": "ST LEU" + "codePostal": "14210", + "codeCommune": "14475", + "libelleAcheminement": "VAL D ARRY", + "nomCommune": "VAL D ARRY" }, { - "codePostal": "02400", - "codeCommune": "02781", - "libelleAcheminement": "VERDILLY", - "nomCommune": "VERDILLY" + "codePostal": "14490", + "codeCommune": "14716", + "libelleAcheminement": "TRUNGY", + "nomCommune": "TRUNGY" }, { - "codePostal": "02290", - "codeCommune": "02043", - "libelleAcheminement": "BAGNEUX", - "nomCommune": "BAGNEUX" + "codePostal": "01310", + "codeCommune": "01065", + "libelleAcheminement": "BUELLAS", + "nomCommune": "BUELLAS" }, { - "codePostal": "97436", - "codeCommune": "97413", - "libelleAcheminement": "ST LEU", - "nomCommune": "ST LEU" + "codePostal": "02300", + "codeCommune": "02140", + "libelleAcheminement": "CAMELIN", + "nomCommune": "CAMELIN" }, { - "codePostal": "02120", - "codeCommune": "02783", - "libelleAcheminement": "GRAND VERLY", - "nomCommune": "GRAND VERLY" + "codePostal": "14310", + "codeCommune": "14475", + "libelleAcheminement": "VAL D ARRY", + "nomCommune": "VAL D ARRY" }, { - "codePostal": "02700", - "codeCommune": "02049", - "libelleAcheminement": "BARISIS AUX BOIS", - "nomCommune": "BARISIS AUX BOIS" + "codePostal": "14350", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "97421", - "codeCommune": "97414", - "libelleAcheminement": "ST LOUIS", - "nomCommune": "ST LOUIS" + "codePostal": "01630", + "codeCommune": "01078", + "libelleAcheminement": "CHALLEX", + "nomCommune": "CHALLEX" }, { - "codePostal": "02490", - "codeCommune": "02785", - "libelleAcheminement": "VERMAND", - "nomCommune": "VERMAND" + "codePostal": "02860", + "codeCommune": "02150", + "libelleAcheminement": "CERNY EN LAONNOIS", + "nomCommune": "CERNY EN LAONNOIS" }, { - "codePostal": "02330", - "codeCommune": "02053", - "libelleAcheminement": "VALLEES EN CHAMPAGNE", - "nomCommune": "VALLEES EN CHAMPAGNE" + "codePostal": "14150", + "codeCommune": "14488", + "libelleAcheminement": "OUISTREHAM", + "nomCommune": "OUISTREHAM" }, { - "codePostal": "97450", - "codeCommune": "97414", - "libelleAcheminement": "ST LOUIS", - "nomCommune": "ST LOUIS" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "02340", - "codeCommune": "02801", - "libelleAcheminement": "VIGNEUX HOCQUET", - "nomCommune": "VIGNEUX HOCQUET" + "codePostal": "01250", + "codeCommune": "01095", + "libelleAcheminement": "NIVIGNE ET SURAN", + "nomCommune": "NIVIGNE ET SURAN" }, { - "codePostal": "02110", - "codeCommune": "02057", - "libelleAcheminement": "BEAUREVOIR", - "nomCommune": "BEAUREVOIR" + "codePostal": "02000", + "codeCommune": "02157", + "libelleAcheminement": "CHAMBRY", + "nomCommune": "CHAMBRY" }, { - "codePostal": "97423", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "14600", + "codeCommune": "14492", + "libelleAcheminement": "PENNEDEPIE", + "nomCommune": "PENNEDEPIE" }, { - "codePostal": "02210", - "codeCommune": "02804", - "libelleAcheminement": "VILLEMONTOIRE", - "nomCommune": "VILLEMONTOIRE" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "02400", - "codeCommune": "02062", - "libelleAcheminement": "BELLEAU", - "nomCommune": "BELLEAU" + "codePostal": "01170", + "codeCommune": "01103", + "libelleAcheminement": "CHEVRY", + "nomCommune": "CHEVRY" }, { - "codePostal": "97434", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "02340", + "codeCommune": "02160", + "libelleAcheminement": "CHAOURSE", + "nomCommune": "CHAOURSE" }, { - "codePostal": "02200", - "codeCommune": "02805", - "libelleAcheminement": "VILLENEUVE ST GERMAIN", - "nomCommune": "VILLENEUVE ST GERMAIN" + "codePostal": "14160", + "codeCommune": "14494", + "libelleAcheminement": "PERIERS EN AUGE", + "nomCommune": "PERIERS EN AUGE" }, { - "codePostal": "02420", - "codeCommune": "02063", - "libelleAcheminement": "BELLENGLISE", - "nomCommune": "BELLENGLISE" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "97435", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "01410", + "codeCommune": "01104", + "libelleAcheminement": "CHEZERY FORENS", + "nomCommune": "CHEZERY FORENS" }, { - "codePostal": "02130", - "codeCommune": "02806", - "libelleAcheminement": "VILLENEUVE SUR FERE", - "nomCommune": "VILLENEUVE SUR FERE" + "codePostal": "02800", + "codeCommune": "02165", + "libelleAcheminement": "CHARMES", + "nomCommune": "CHARMES" }, { - "codePostal": "02120", - "codeCommune": "02070", - "libelleAcheminement": "BERNOT", - "nomCommune": "BERNOT" + "codePostal": "14770", + "codeCommune": "14496", + "libelleAcheminement": "PERIGNY", + "nomCommune": "PERIGNY" }, { - "codePostal": "97460", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "02130", - "codeCommune": "02809", - "libelleAcheminement": "VILLERS AGRON AIGUIZY", - "nomCommune": "VILLERS AGRON AIGUIZY" + "codePostal": "01320", + "codeCommune": "01129", + "libelleAcheminement": "CRANS", + "nomCommune": "CRANS" }, { - "codePostal": "02190", - "codeCommune": "02073", - "libelleAcheminement": "BERRY AU BAC", - "nomCommune": "BERRY AU BAC" + "codePostal": "02200", + "codeCommune": "02172", + "libelleAcheminement": "CHAUDUN", + "nomCommune": "CHAUDUN" }, { - "codePostal": "97410", - "codeCommune": "97416", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "14170", + "codeCommune": "14497", + "libelleAcheminement": "PERRIERES", + "nomCommune": "PERRIERES" }, { - "codePostal": "02340", - "codeCommune": "02819", - "libelleAcheminement": "VINCY REUIL ET MAGNY", - "nomCommune": "VINCY REUIL ET MAGNY" + "codePostal": "14290", + "codeCommune": "14740", + "libelleAcheminement": "LA VESPIERE FRIARDEL", + "nomCommune": "LA VESPIERE FRIARDEL" }, { - "codePostal": "02300", - "codeCommune": "02078", - "libelleAcheminement": "BESME", - "nomCommune": "BESME" + "codePostal": "01340", + "codeCommune": "01130", + "libelleAcheminement": "BRESSE VALLONS", + "nomCommune": "BRESSE VALLONS" }, { - "codePostal": "97430", - "codeCommune": "97422", - "libelleAcheminement": "LE TAMPON", - "nomCommune": "LE TAMPON" + "codePostal": "02300", + "codeCommune": "02173", + "libelleAcheminement": "CHAUNY", + "nomCommune": "CHAUNY" }, { - "codePostal": "02600", - "codeCommune": "02822", - "libelleAcheminement": "VIVIERES", - "nomCommune": "VIVIERES" + "codePostal": "14390", + "codeCommune": "14499", + "libelleAcheminement": "PETIVILLE", + "nomCommune": "PETIVILLE" }, { - "codePostal": "02870", - "codeCommune": "02080", - "libelleAcheminement": "BESNY ET LOIZY", - "nomCommune": "BESNY ET LOIZY" + "codePostal": "14570", + "codeCommune": "14741", + "libelleAcheminement": "LE VEY", + "nomCommune": "LE VEY" }, { - "codePostal": "97413", - "codeCommune": "97424", - "libelleAcheminement": "CILAOS", - "nomCommune": "CILAOS" + "codePostal": "01350", + "codeCommune": "01133", + "libelleAcheminement": "CRESSIN ROCHEFORT", + "nomCommune": "CRESSIN ROCHEFORT" }, { - "codePostal": "02320", - "codeCommune": "02834", - "libelleAcheminement": "WISSIGNICOURT", - "nomCommune": "WISSIGNICOURT" + "codePostal": "02810", + "codeCommune": "02185", + "libelleAcheminement": "CHEZY EN ORXOIS", + "nomCommune": "CHEZY EN ORXOIS" }, { - "codePostal": "02300", - "codeCommune": "02081", - "libelleAcheminement": "BETHANCOURT EN VAUX", - "nomCommune": "BETHANCOURT EN VAUX" + "codePostal": "14690", + "codeCommune": "14501", + "libelleAcheminement": "PIERREFITTE EN CINGLAIS", + "nomCommune": "PIERREFITTE EN CINGLAIS" }, { - "codePostal": "97500", - "codeCommune": "97501", - "libelleAcheminement": "ST PIERRE ET MIQUELON", - "nomCommune": "MIQUELON LANGLADE" + "codePostal": "14710", + "codeCommune": "14745", + "libelleAcheminement": "VIERVILLE SUR MER", + "nomCommune": "VIERVILLE SUR MER" }, { - "codePostal": "03250", - "codeCommune": "03008", - "libelleAcheminement": "ARRONNES", - "nomCommune": "ARRONNES" + "codePostal": "01350", + "codeCommune": "01138", + "libelleAcheminement": "CULOZ", + "nomCommune": "CULOZ" }, { - "codePostal": "02860", - "codeCommune": "02088", - "libelleAcheminement": "BIEVRES", - "nomCommune": "BIEVRES" + "codePostal": "02000", + "codeCommune": "02191", + "libelleAcheminement": "CHIVY LES ETOUVELLES", + "nomCommune": "CHIVY LES ETOUVELLES" }, { - "codePostal": "97650", - "codeCommune": "97602", - "libelleAcheminement": "BANDRABOUA", - "nomCommune": "BANDRABOUA" + "codePostal": "14690", + "codeCommune": "14502", + "libelleAcheminement": "PIERREPONT", + "nomCommune": "PIERREPONT" }, { - "codePostal": "03210", - "codeCommune": "03012", - "libelleAcheminement": "AUTRY ISSARDS", - "nomCommune": "AUTRY ISSARDS" + "codePostal": "14570", + "codeCommune": "14756", + "libelleAcheminement": "LA VILLETTE", + "nomCommune": "LA VILLETTE" }, { - "codePostal": "02300", - "codeCommune": "02093", - "libelleAcheminement": "BLERANCOURT", - "nomCommune": "BLERANCOURT" + "codePostal": "01220", + "codeCommune": "01143", + "libelleAcheminement": "DIVONNE LES BAINS", + "nomCommune": "DIVONNE LES BAINS" }, { - "codePostal": "97660", - "codeCommune": "97603", - "libelleAcheminement": "BANDRELE", - "nomCommune": "BANDRELE" + "codePostal": "02220", + "codeCommune": "02195", + "libelleAcheminement": "CIRY SALSOGNE", + "nomCommune": "CIRY SALSOGNE" }, { - "codePostal": "03130", - "codeCommune": "03014", - "libelleAcheminement": "AVRILLY", - "nomCommune": "AVRILLY" + "codePostal": "14440", + "codeCommune": "14509", + "libelleAcheminement": "PLUMETOT", + "nomCommune": "PLUMETOT" }, { - "codePostal": "02450", - "codeCommune": "02103", - "libelleAcheminement": "BOUE", - "nomCommune": "BOUE" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "97600", - "codeCommune": "97611", - "libelleAcheminement": "MAMOUDZOU", - "nomCommune": "MAMOUDZOU" + "codePostal": "01590", + "codeCommune": "01148", + "libelleAcheminement": "DORTAN", + "nomCommune": "DORTAN" }, { - "codePostal": "03370", - "codeCommune": "03051", - "libelleAcheminement": "CHAMBERAT", - "nomCommune": "CHAMBERAT" + "codePostal": "02440", + "codeCommune": "02199", + "libelleAcheminement": "CLASTRES", + "nomCommune": "CLASTRES" }, { - "codePostal": "02400", - "codeCommune": "02105", - "libelleAcheminement": "BOURESCHES", - "nomCommune": "BOURESCHES" + "codePostal": "14520", + "codeCommune": "14515", + "libelleAcheminement": "PORT EN BESSIN HUPPAIN", + "nomCommune": "PORT EN BESSIN HUPPAIN" }, { - "codePostal": "97605", - "codeCommune": "97611", - "libelleAcheminement": "MAMOUDZOU", - "nomCommune": "MAMOUDZOU" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "03170", - "codeCommune": "03052", - "libelleAcheminement": "CHAMBLET", - "nomCommune": "CHAMBLET" + "codePostal": "01250", + "codeCommune": "01150", + "libelleAcheminement": "DROM", + "nomCommune": "DROM" }, { - "codePostal": "02140", - "codeCommune": "02116", - "libelleAcheminement": "BRAYE EN THIERACHE", - "nomCommune": "BRAYE EN THIERACHE" + "codePostal": "02120", + "codeCommune": "02206", + "libelleAcheminement": "COLONFAY", + "nomCommune": "COLONFAY" }, { - "codePostal": "98790", - "codeCommune": "98711", - "libelleAcheminement": "TEPUPAHEA", - "nomCommune": "ANAA" + "codePostal": "14430", + "codeCommune": "14524", + "libelleAcheminement": "PUTOT EN AUGE", + "nomCommune": "PUTOT EN AUGE" }, { - "codePostal": "03120", - "codeCommune": "03068", - "libelleAcheminement": "CHATELUS", - "nomCommune": "CHATELUS" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "02880", - "codeCommune": "02118", - "libelleAcheminement": "BRAYE", - "nomCommune": "BRAYE" + "codePostal": "01160", + "codeCommune": "01151", + "libelleAcheminement": "DRUILLAT", + "nomCommune": "DRUILLAT" }, { - "codePostal": "98790", - "codeCommune": "98716", - "libelleAcheminement": "TOAU", - "nomCommune": "FAKARAVA" + "codePostal": "02300", + "codeCommune": "02207", + "libelleAcheminement": "COMMENCHON", + "nomCommune": "COMMENCHON" }, { - "codePostal": "03320", - "codeCommune": "03087", - "libelleAcheminement": "COULEUVRE", - "nomCommune": "COULEUVRE" + "codePostal": "14270", + "codeCommune": "14527", + "libelleAcheminement": "BELLE VIE EN AUGE", + "nomCommune": "BELLE VIE EN AUGE" }, { - "codePostal": "02680", - "codeCommune": "02142", - "libelleAcheminement": "CASTRES", - "nomCommune": "CASTRES" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "98765", - "codeCommune": "98717", - "libelleAcheminement": "TEANA", - "nomCommune": "FANGATAU" + "codePostal": "01170", + "codeCommune": "01153", + "libelleAcheminement": "ECHENEVEX", + "nomCommune": "ECHENEVEX" }, { - "codePostal": "03160", - "codeCommune": "03090", - "libelleAcheminement": "COUZON", - "nomCommune": "COUZON" + "codePostal": "02190", + "codeCommune": "02211", + "libelleAcheminement": "CONDE SUR SUIPPE", + "nomCommune": "CONDE SUR SUIPPE" }, { - "codePostal": "02240", - "codeCommune": "02149", - "libelleAcheminement": "CERIZY", - "nomCommune": "CERIZY" + "codePostal": "14130", + "codeCommune": "14528", + "libelleAcheminement": "QUETTEVILLE", + "nomCommune": "QUETTEVILLE" }, { - "codePostal": "98766", - "codeCommune": "98717", - "libelleAcheminement": "TARIONE", - "nomCommune": "FANGATAU" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "03450", - "codeCommune": "03107", - "libelleAcheminement": "EBREUIL", - "nomCommune": "EBREUIL" + "codePostal": "01480", + "codeCommune": "01157", + "libelleAcheminement": "FAREINS", + "nomCommune": "FAREINS" }, { - "codePostal": "02220", - "codeCommune": "02152", - "libelleAcheminement": "CERSEUIL", - "nomCommune": "CERSEUIL" + "codePostal": "02820", + "codeCommune": "02215", + "libelleAcheminement": "CORBENY", + "nomCommune": "CORBENY" }, { - "codePostal": "98740", - "codeCommune": "98718", - "libelleAcheminement": "OMOA", - "nomCommune": "FATU HIVA" + "codePostal": "14340", + "codeCommune": "14533", + "libelleAcheminement": "REPENTIGNY", + "nomCommune": "REPENTIGNY" }, { - "codePostal": "03250", - "codeCommune": "03113", - "libelleAcheminement": "FERRIERES SUR SICHON", - "nomCommune": "FERRIERES SUR SICHON" + "codePostal": "15160", + "codeCommune": "15001", + "libelleAcheminement": "ALLANCHE", + "nomCommune": "ALLANCHE" }, { - "codePostal": "02200", - "codeCommune": "02154", - "libelleAcheminement": "CHACRISE", - "nomCommune": "CHACRISE" + "codePostal": "01340", + "codeCommune": "01163", + "libelleAcheminement": "FOISSIAT", + "nomCommune": "FOISSIAT" }, { - "codePostal": "98755", - "codeCommune": "98719", - "libelleAcheminement": "MANGAREVA", - "nomCommune": "GAMBIER" + "codePostal": "02810", + "codeCommune": "02225", + "libelleAcheminement": "COURCHAMPS", + "nomCommune": "COURCHAMPS" }, { - "codePostal": "03140", - "codeCommune": "03116", - "libelleAcheminement": "FOURILLES", - "nomCommune": "FOURILLES" + "codePostal": "14130", + "codeCommune": "14534", + "libelleAcheminement": "REUX", + "nomCommune": "REUX" }, { - "codePostal": "02000", - "codeCommune": "02157", - "libelleAcheminement": "CHAMBRY", - "nomCommune": "CHAMBRY" + "codePostal": "15700", + "codeCommune": "15003", + "libelleAcheminement": "ALLY", + "nomCommune": "ALLY" }, { - "codePostal": "98755", - "codeCommune": "98719", - "libelleAcheminement": "TARAVAI", - "nomCommune": "GAMBIER" + "codePostal": "01090", + "codeCommune": "01165", + "libelleAcheminement": "FRANCHELEINS", + "nomCommune": "FRANCHELEINS" }, { - "codePostal": "03220", - "codeCommune": "03132", - "libelleAcheminement": "JALIGNY SUR BESBRE", - "nomCommune": "JALIGNY SUR BESBRE" + "codePostal": "02850", + "codeCommune": "02228", + "libelleAcheminement": "COURTEMONT VARENNES", + "nomCommune": "COURTEMONT VARENNES" }, { - "codePostal": "02860", - "codeCommune": "02158", - "libelleAcheminement": "CHAMOUILLE", - "nomCommune": "CHAMOUILLE" + "codePostal": "14540", + "codeCommune": "14538", + "libelleAcheminement": "CASTINE EN PLAINE", + "nomCommune": "CASTINE EN PLAINE" }, { - "codePostal": "98792", - "codeCommune": "98719", - "libelleAcheminement": "MORANE", - "nomCommune": "GAMBIER" + "codePostal": "15100", + "codeCommune": "15005", + "libelleAcheminement": "ANGLARDS DE ST FLOUR", + "nomCommune": "ANGLARDS DE ST FLOUR" }, { - "codePostal": "03500", - "codeCommune": "03134", - "libelleAcheminement": "LAFELINE", - "nomCommune": "LAFELINE" + "codePostal": "01290", + "codeCommune": "01179", + "libelleAcheminement": "GRIEGES", + "nomCommune": "GRIEGES" }, { - "codePostal": "02570", - "codeCommune": "02162", - "libelleAcheminement": "LA CHAPELLE SUR CHEZY", - "nomCommune": "LA CHAPELLE SUR CHEZY" + "codePostal": "02130", + "codeCommune": "02233", + "libelleAcheminement": "CRAMAILLE", + "nomCommune": "CRAMAILLE" }, { - "codePostal": "98767", - "codeCommune": "98720", - "libelleAcheminement": "OTEPA", - "nomCommune": "HAO" + "codePostal": "14740", + "codeCommune": "14542", + "libelleAcheminement": "ROSEL", + "nomCommune": "ROSEL" }, { - "codePostal": "03250", - "codeCommune": "03141", - "libelleAcheminement": "LAVOINE", - "nomCommune": "LAVOINE" + "codePostal": "15200", + "codeCommune": "15010", + "libelleAcheminement": "ARCHES", + "nomCommune": "ARCHES" }, { - "codePostal": "02400", - "codeCommune": "02168", - "libelleAcheminement": "CHATEAU THIERRY", - "nomCommune": "CHATEAU THIERRY" + "codePostal": "01100", + "codeCommune": "01181", + "libelleAcheminement": "GROISSIAT", + "nomCommune": "GROISSIAT" }, { - "codePostal": "98708", - "codeCommune": "98722", - "libelleAcheminement": "TIAREI", - "nomCommune": "HITIAA O TE RA" + "codePostal": "02870", + "codeCommune": "02238", + "libelleAcheminement": "CREPY", + "nomCommune": "CREPY" }, { - "codePostal": "03600", - "codeCommune": "03151", - "libelleAcheminement": "LOUROUX DE BEAUNE", - "nomCommune": "LOUROUX DE BEAUNE" + "codePostal": "14740", + "codeCommune": "14543", + "libelleAcheminement": "ROTS", + "nomCommune": "ROTS" }, { - "codePostal": "02880", - "codeCommune": "02175", - "libelleAcheminement": "CHAVIGNY", - "nomCommune": "CHAVIGNY" + "codePostal": "15700", + "codeCommune": "15018", + "libelleAcheminement": "BARRIAC LES BOSQUETS", + "nomCommune": "BARRIAC LES BOSQUETS" }, { - "codePostal": "98731", - "codeCommune": "98724", - "libelleAcheminement": "HUAHINE", - "nomCommune": "HUAHINE" + "codePostal": "01250", + "codeCommune": "01184", + "libelleAcheminement": "HAUTECOURT ROMANECHE", + "nomCommune": "HAUTECOURT ROMANECHE" }, { - "codePostal": "03360", - "codeCommune": "03168", - "libelleAcheminement": "MEAULNE VITRAY", - "nomCommune": "MEAULNE VITRAY" + "codePostal": "02210", + "codeCommune": "02241", + "libelleAcheminement": "LA CROIX SUR OURCQ", + "nomCommune": "LA CROIX SUR OURCQ" }, { - "codePostal": "02360", - "codeCommune": "02181", - "libelleAcheminement": "CHERY LES ROZOY", - "nomCommune": "CHERY LES ROZOY" + "codePostal": "14800", + "codeCommune": "14557", + "libelleAcheminement": "ST ARNOULT", + "nomCommune": "ST ARNOULT" }, { - "codePostal": "98731", - "codeCommune": "98724", - "libelleAcheminement": "TEFARERII", - "nomCommune": "HUAHINE" + "codePostal": "15600", + "codeCommune": "15021", + "libelleAcheminement": "BOISSET", + "nomCommune": "BOISSET" }, { - "codePostal": "03210", - "codeCommune": "03170", - "libelleAcheminement": "MEILLERS", - "nomCommune": "MEILLERS" + "codePostal": "01110", + "codeCommune": "01185", + "libelleAcheminement": "PLATEAU D HAUTEVILLE", + "nomCommune": "PLATEAU D HAUTEVILLE" }, { - "codePostal": "02270", - "codeCommune": "02184", - "libelleAcheminement": "CHEVRESIS MONCEAU", - "nomCommune": "CHEVRESIS MONCEAU" + "codePostal": "02310", + "codeCommune": "02242", + "libelleAcheminement": "CROUTTES SUR MARNE", + "nomCommune": "CROUTTES SUR MARNE" }, { - "codePostal": "98731", - "codeCommune": "98724", - "libelleAcheminement": "MAEVA", - "nomCommune": "HUAHINE" + "codePostal": "14130", + "codeCommune": "14563", + "libelleAcheminement": "ST BENOIT D HEBERTOT", + "nomCommune": "ST BENOIT D HEBERTOT" }, { - "codePostal": "03800", - "codeCommune": "03182", - "libelleAcheminement": "MONTEIGNET SUR L ANDELOT", - "nomCommune": "MONTEIGNET SUR L ANDELOT" + "codePostal": "15340", + "codeCommune": "15027", + "libelleAcheminement": "PUYCAPEL", + "nomCommune": "PUYCAPEL" }, { - "codePostal": "02810", - "codeCommune": "02185", - "libelleAcheminement": "CHEZY EN ORXOIS", - "nomCommune": "CHEZY EN ORXOIS" + "codePostal": "01260", + "codeCommune": "01187", + "libelleAcheminement": "HAUT VALROMEY", + "nomCommune": "HAUT VALROMEY" }, { - "codePostal": "98789", - "codeCommune": "98726", - "libelleAcheminement": "HITIANAU", - "nomCommune": "MAKEMO" + "codePostal": "02880", + "codeCommune": "02243", + "libelleAcheminement": "CROUY", + "nomCommune": "CROUY" }, { - "codePostal": "03240", - "codeCommune": "03183", - "libelleAcheminement": "LE MONTET", - "nomCommune": "LE MONTET" + "codePostal": "14290", + "codeCommune": "14570", + "libelleAcheminement": "VALORBIQUET", + "nomCommune": "VALORBIQUET" }, { - "codePostal": "02350", - "codeCommune": "02189", - "libelleAcheminement": "CHIVRES EN LAONNOIS", - "nomCommune": "CHIVRES EN LAONNOIS" + "codePostal": "15320", + "codeCommune": "15034", + "libelleAcheminement": "CHALIERS", + "nomCommune": "CHALIERS" }, { - "codePostal": "98732", - "codeCommune": "98728", - "libelleAcheminement": "MOPELIA", - "nomCommune": "MAUPITI" + "codePostal": "01140", + "codeCommune": "01188", + "libelleAcheminement": "ILLIAT", + "nomCommune": "ILLIAT" }, { - "codePostal": "03000", - "codeCommune": "03184", - "libelleAcheminement": "MONTILLY", - "nomCommune": "MONTILLY" + "codePostal": "02680", + "codeCommune": "02257", + "libelleAcheminement": "DALLON", + "nomCommune": "DALLON" }, { - "codePostal": "02220", - "codeCommune": "02195", - "libelleAcheminement": "CIRY SALSOGNE", - "nomCommune": "CIRY SALSOGNE" + "codePostal": "14110", + "codeCommune": "14572", + "libelleAcheminement": "ST DENIS DE MERE", + "nomCommune": "ST DENIS DE MERE" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "TEAVARO", - "nomCommune": "MOOREA MAIAO" + "codePostal": "15270", + "codeCommune": "15038", + "libelleAcheminement": "CHAMPS SUR TARENTAINE MARCHAL", + "nomCommune": "CHAMPS SUR TARENTAINE MARCHAL" }, { - "codePostal": "03150", - "codeCommune": "03187", - "libelleAcheminement": "MONTOLDRE", - "nomCommune": "MONTOLDRE" + "codePostal": "01200", + "codeCommune": "01189", + "libelleAcheminement": "INJOUX GENISSIAT", + "nomCommune": "INJOUX GENISSIAT" }, { - "codePostal": "02260", - "codeCommune": "02197", - "libelleAcheminement": "CLAIRFONTAINE", - "nomCommune": "CLAIRFONTAINE" + "codePostal": "02270", + "codeCommune": "02261", + "libelleAcheminement": "DERCY", + "nomCommune": "DERCY" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "TIAIA", - "nomCommune": "MOOREA MAIAO" + "codePostal": "14100", + "codeCommune": "14574", + "libelleAcheminement": "ST DESIR", + "nomCommune": "ST DESIR" }, { - "codePostal": "03000", - "codeCommune": "03190", - "libelleAcheminement": "MOULINS", - "nomCommune": "MOULINS" + "codePostal": "15190", + "codeCommune": "15040", + "libelleAcheminement": "CHANTERELLE", + "nomCommune": "CHANTERELLE" }, { - "codePostal": "02440", - "codeCommune": "02199", - "libelleAcheminement": "CLASTRES", - "nomCommune": "CLASTRES" + "codePostal": "01250", + "codeCommune": "01195", + "libelleAcheminement": "JASSERON", + "nomCommune": "JASSERON" }, { - "codePostal": "98729", - "codeCommune": "98729", - "libelleAcheminement": "PIHAENA", - "nomCommune": "MOOREA MAIAO" + "codePostal": "02360", + "codeCommune": "02265", + "libelleAcheminement": "DOHIS", + "nomCommune": "DOHIS" }, { - "codePostal": "03450", - "codeCommune": "03192", - "libelleAcheminement": "NADES", - "nomCommune": "NADES" + "codePostal": "14140", + "codeCommune": "14576", + "libelleAcheminement": "VAL DE VIE", + "nomCommune": "VAL DE VIE" }, { - "codePostal": "02160", - "codeCommune": "02208", - "libelleAcheminement": "CONCEVREUX", - "nomCommune": "CONCEVREUX" + "codePostal": "15300", + "codeCommune": "15041", + "libelleAcheminement": "LA CHAPELLE D ALAGNON", + "nomCommune": "LA CHAPELLE D ALAGNON" }, { - "codePostal": "98742", - "codeCommune": "98731", - "libelleAcheminement": "NUKUATAHA", - "nomCommune": "NUKU HIVA" + "codePostal": "01340", + "codeCommune": "01196", + "libelleAcheminement": "JAYAT", + "nomCommune": "JAYAT" }, { - "codePostal": "03330", - "codeCommune": "03194", - "libelleAcheminement": "NAVES", - "nomCommune": "NAVES" + "codePostal": "02130", + "codeCommune": "02271", + "libelleAcheminement": "DRAVEGNY", + "nomCommune": "DRAVEGNY" }, { - "codePostal": "02190", - "codeCommune": "02211", - "libelleAcheminement": "CONDE SUR SUIPPE", - "nomCommune": "CONDE SUR SUIPPE" + "codePostal": "14280", + "codeCommune": "14587", + "libelleAcheminement": "ST GERMAIN LA BLANCHE HERBE", + "nomCommune": "ST GERMAIN LA BLANCHE HERBE" }, { - "codePostal": "98742", - "codeCommune": "98731", - "libelleAcheminement": "TERRE DESERTE", - "nomCommune": "NUKU HIVA" + "codePostal": "15500", + "codeCommune": "15043", + "libelleAcheminement": "CHARMENSAC", + "nomCommune": "CHARMENSAC" }, { - "codePostal": "03310", - "codeCommune": "03195", - "libelleAcheminement": "NERIS LES BAINS", - "nomCommune": "NERIS LES BAINS" + "codePostal": "01800", + "codeCommune": "01198", + "libelleAcheminement": "JOYEUX", + "nomCommune": "JOYEUX" }, { - "codePostal": "02330", - "codeCommune": "02213", - "libelleAcheminement": "CONNIGIS", - "nomCommune": "CONNIGIS" + "codePostal": "02210", + "codeCommune": "02272", + "libelleAcheminement": "DROIZY", + "nomCommune": "DROIZY" }, { - "codePostal": "98748", - "codeCommune": "98731", - "libelleAcheminement": "HATIHEU", - "nomCommune": "NUKU HIVA" + "codePostal": "14520", + "codeCommune": "14591", + "libelleAcheminement": "AURE SUR MER", + "nomCommune": "AURE SUR MER" }, { - "codePostal": "03250", - "codeCommune": "03201", - "libelleAcheminement": "NIZEROLLES", - "nomCommune": "NIZEROLLES" + "codePostal": "15700", + "codeCommune": "15046", + "libelleAcheminement": "CHAUSSENAC", + "nomCommune": "CHAUSSENAC" }, { - "codePostal": "02600", - "codeCommune": "02216", - "libelleAcheminement": "CORCY", - "nomCommune": "CORCY" + "codePostal": "01150", + "codeCommune": "01202", + "libelleAcheminement": "LAGNIEU", + "nomCommune": "LAGNIEU" }, { - "codePostal": "98796", - "codeCommune": "98731", - "libelleAcheminement": "HATUTAA", - "nomCommune": "NUKU HIVA" + "codePostal": "02480", + "codeCommune": "02273", + "libelleAcheminement": "DURY", + "nomCommune": "DURY" }, { - "codePostal": "03120", - "codeCommune": "03205", - "libelleAcheminement": "PERIGNY", - "nomCommune": "PERIGNY" + "codePostal": "14220", + "codeCommune": "14603", + "libelleAcheminement": "ST LAURENT DE CONDEL", + "nomCommune": "ST LAURENT DE CONDEL" }, { - "codePostal": "02840", - "codeCommune": "02218", - "libelleAcheminement": "COUCY LES EPPES", - "nomCommune": "COUCY LES EPPES" + "codePostal": "15320", + "codeCommune": "15051", + "libelleAcheminement": "CLAVIERES", + "nomCommune": "CLAVIERES" }, { - "codePostal": "98774", - "codeCommune": "98737", - "libelleAcheminement": "TEONEMAHINA", - "nomCommune": "PUKAPUKA" + "codePostal": "01680", + "codeCommune": "01219", + "libelleAcheminement": "LOMPNAS", + "nomCommune": "LOMPNAS" }, { - "codePostal": "03380", - "codeCommune": "03212", - "libelleAcheminement": "QUINSSAINES", - "nomCommune": "QUINSSAINES" + "codePostal": "02400", + "codeCommune": "02279", + "libelleAcheminement": "EPAUX BEZU", + "nomCommune": "EPAUX BEZU" }, { - "codePostal": "02130", - "codeCommune": "02220", - "libelleAcheminement": "COULONGES COHAN", - "nomCommune": "COULONGES COHAN" + "codePostal": "14290", + "codeCommune": "14621", + "libelleAcheminement": "ST MARTIN BIENFAITE CRESSONNIERE", + "nomCommune": "ST MARTIN DE BIENFAITE LA CRESSONNIERE" }, { - "codePostal": "98777", - "codeCommune": "98740", - "libelleAcheminement": "PAHUA", - "nomCommune": "RANGIROA" + "codePostal": "15400", + "codeCommune": "15052", + "libelleAcheminement": "COLLANDRES", + "nomCommune": "COLLANDRES" }, { - "codePostal": "03160", - "codeCommune": "03218", - "libelleAcheminement": "ST AUBIN LE MONIAL", - "nomCommune": "ST AUBIN LE MONIAL" + "codePostal": "01300", + "codeCommune": "01227", + "libelleAcheminement": "MAGNIEU", + "nomCommune": "MAGNIEU" }, { - "codePostal": "02330", - "codeCommune": "02223", - "libelleAcheminement": "COURBOIN", - "nomCommune": "COURBOIN" + "codePostal": "02840", + "codeCommune": "02282", + "libelleAcheminement": "EPPES", + "nomCommune": "EPPES" }, { - "codePostal": "98751", - "codeCommune": "98741", - "libelleAcheminement": "AHUREI", - "nomCommune": "RAPA" + "codePostal": "14320", + "codeCommune": "14623", + "libelleAcheminement": "ST MARTIN DE FONTENAY", + "nomCommune": "ST MARTIN DE FONTENAY" }, { - "codePostal": "03800", - "codeCommune": "03220", - "libelleAcheminement": "ST BONNET DE ROCHEFORT", - "nomCommune": "ST BONNET DE ROCHEFORT" + "codePostal": "15130", + "codeCommune": "15058", + "libelleAcheminement": "CROS DE RONESQUE", + "nomCommune": "CROS DE RONESQUE" }, { - "codePostal": "02220", - "codeCommune": "02224", - "libelleAcheminement": "COURCELLES SUR VESLE", - "nomCommune": "COURCELLES SUR VESLE" + "codePostal": "01370", + "codeCommune": "01241", + "libelleAcheminement": "MEILLONNAS", + "nomCommune": "MEILLONNAS" }, { - "codePostal": "98794", - "codeCommune": "98741", - "libelleAcheminement": "MAROTIRI", - "nomCommune": "RAPA" + "codePostal": "02100", + "codeCommune": "02288", + "libelleAcheminement": "ESSIGNY LE PETIT", + "nomCommune": "ESSIGNY LE PETIT" }, { - "codePostal": "03110", - "codeCommune": "03227", - "libelleAcheminement": "ST DIDIER LA FORET", - "nomCommune": "ST DIDIER LA FORET" + "codePostal": "14100", + "codeCommune": "14648", + "libelleAcheminement": "ST PIERRE DES IFS", + "nomCommune": "ST PIERRE DES IFS" }, { - "codePostal": "02130", - "codeCommune": "02227", - "libelleAcheminement": "COURMONT", - "nomCommune": "COURMONT" + "codePostal": "15300", + "codeCommune": "15061", + "libelleAcheminement": "DIENNE", + "nomCommune": "DIENNE" }, { - "codePostal": "98753", - "codeCommune": "98744", - "libelleAcheminement": "MOERAI", - "nomCommune": "RURUTU" + "codePostal": "01660", + "codeCommune": "01246", + "libelleAcheminement": "MEZERIAT", + "nomCommune": "MEZERIAT" }, { - "codePostal": "03300", - "codeCommune": "03230", - "libelleAcheminement": "ST ETIENNE DE VICQ", - "nomCommune": "ST ETIENNE DE VICQ" + "codePostal": "02400", + "codeCommune": "02292", + "libelleAcheminement": "ETAMPES SUR MARNE", + "nomCommune": "ETAMPES SUR MARNE" }, { - "codePostal": "02220", - "codeCommune": "02230", - "libelleAcheminement": "COUVRELLES", - "nomCommune": "COUVRELLES" + "codePostal": "14450", + "codeCommune": "14652", + "libelleAcheminement": "ST PIERRE DU MONT", + "nomCommune": "ST PIERRE DU MONT" }, { - "codePostal": "98733", - "codeCommune": "98745", - "libelleAcheminement": "TIVA", - "nomCommune": "TAHAA" + "codePostal": "15200", + "codeCommune": "15079", + "libelleAcheminement": "JALEYRAC", + "nomCommune": "JALEYRAC" }, { - "codePostal": "03150", - "codeCommune": "03235", - "libelleAcheminement": "ST GERAND LE PUY", - "nomCommune": "ST GERAND LE PUY" + "codePostal": "01600", + "codeCommune": "01250", + "libelleAcheminement": "MISERIEUX", + "nomCommune": "MISERIEUX" }, { - "codePostal": "02120", - "codeCommune": "02244", - "libelleAcheminement": "CRUPILLY", - "nomCommune": "CRUPILLY" + "codePostal": "02580", + "codeCommune": "02295", + "libelleAcheminement": "ETREAUPONT", + "nomCommune": "ETREAUPONT" }, { - "codePostal": "98734", - "codeCommune": "98745", - "libelleAcheminement": "HAAMENE", - "nomCommune": "TAHAA" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "03130", - "codeCommune": "03239", - "libelleAcheminement": "ST LEGER SUR VOUZANCE", - "nomCommune": "ST LEGER SUR VOUZANCE" + "codePostal": "15300", + "codeCommune": "15101", + "libelleAcheminement": "LAVEISSIERE", + "nomCommune": "LAVEISSIERE" }, { - "codePostal": "02600", - "codeCommune": "02254", - "libelleAcheminement": "CUTRY", - "nomCommune": "CUTRY" + "codePostal": "01460", + "codeCommune": "01267", + "libelleAcheminement": "NURIEUX VOLOGNAT", + "nomCommune": "NURIEUX VOLOGNAT" }, { - "codePostal": "98734", - "codeCommune": "98745", - "libelleAcheminement": "FAAAHA", - "nomCommune": "TAHAA" + "codePostal": "02600", + "codeCommune": "02302", + "libelleAcheminement": "FAVEROLLES", + "nomCommune": "FAVEROLLES" }, { - "codePostal": "42620", - "codeCommune": "03250", - "libelleAcheminement": "ST PIERRE LAVAL", - "nomCommune": "ST PIERRE LAVAL" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "02470", - "codeCommune": "02258", - "libelleAcheminement": "DAMMARD", - "nomCommune": "DAMMARD" + "codePostal": "15300", + "codeCommune": "15101", + "libelleAcheminement": "LAVEISSIERE", + "nomCommune": "LAVEISSIERE" }, { - "codePostal": "98719", - "codeCommune": "98747", - "libelleAcheminement": "TARAVAO", - "nomCommune": "TAIARAPU EST" + "codePostal": "01700", + "codeCommune": "01275", + "libelleAcheminement": "NEYRON", + "nomCommune": "NEYRON" }, { - "codePostal": "03110", - "codeCommune": "03258", - "libelleAcheminement": "ST REMY EN ROLLAT", - "nomCommune": "ST REMY EN ROLLAT" + "codePostal": "02130", + "codeCommune": "02305", + "libelleAcheminement": "FERE EN TARDENOIS", + "nomCommune": "FERE EN TARDENOIS" }, { - "codePostal": "02220", - "codeCommune": "02263", - "libelleAcheminement": "DHUIZEL", - "nomCommune": "DHUIZEL" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "98790", - "codeCommune": "98749", - "libelleAcheminement": "TIKEI", - "nomCommune": "TAKAROA" + "codePostal": "15320", + "codeCommune": "15108", + "libelleAcheminement": "VAL D ARCOMIE", + "nomCommune": "VAL D ARCOMIE" }, { - "codePostal": "03270", - "codeCommune": "03264", - "libelleAcheminement": "ST YORRE", - "nomCommune": "ST YORRE" + "codePostal": "01230", + "codeCommune": "01279", + "libelleAcheminement": "ONCIEU", + "nomCommune": "ONCIEU" }, { - "codePostal": "02480", - "codeCommune": "02273", - "libelleAcheminement": "DURY", - "nomCommune": "DURY" + "codePostal": "02520", + "codeCommune": "02315", + "libelleAcheminement": "FLAVY LE MARTEL", + "nomCommune": "FLAVY LE MARTEL" }, { - "codePostal": "98735", - "codeCommune": "98754", - "libelleAcheminement": "TEHURUI", - "nomCommune": "TUMARAA" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "03470", - "codeCommune": "03265", - "libelleAcheminement": "SALIGNY SUR ROUDON", - "nomCommune": "SALIGNY SUR ROUDON" + "codePostal": "15230", + "codeCommune": "15112", + "libelleAcheminement": "MALBO", + "nomCommune": "MALBO" }, { - "codePostal": "02400", - "codeCommune": "02279", - "libelleAcheminement": "EPAUX BEZU", - "nomCommune": "EPAUX BEZU" + "codePostal": "01430", + "codeCommune": "01282", + "libelleAcheminement": "OUTRIAZ", + "nomCommune": "OUTRIAZ" }, { - "codePostal": "98746", - "codeCommune": "98757", - "libelleAcheminement": "HAKAMAII", - "nomCommune": "UA POU" + "codePostal": "02670", + "codeCommune": "02318", + "libelleAcheminement": "FOLEMBRAY", + "nomCommune": "FOLEMBRAY" }, { - "codePostal": "03800", - "codeCommune": "03268", - "libelleAcheminement": "SAULZET", - "nomCommune": "SAULZET" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "02400", - "codeCommune": "02280", - "libelleAcheminement": "EPIEDS", - "nomCommune": "EPIEDS" + "codePostal": "15590", + "codeCommune": "15113", + "libelleAcheminement": "MANDAILLES ST JULIEN", + "nomCommune": "MANDAILLES ST JULIEN" }, { - "codePostal": "98811", - "codeCommune": "98801", - "libelleAcheminement": "BELEP", - "nomCommune": "BELEP" + "codePostal": "01300", + "codeCommune": "01286", + "libelleAcheminement": "PARVES ET NATTAGES", + "nomCommune": "PARVES ET NATTAGES" }, { - "codePostal": "03260", - "codeCommune": "03273", - "libelleAcheminement": "SEUILLET", - "nomCommune": "SEUILLET" + "codePostal": "02110", + "codeCommune": "02322", + "libelleAcheminement": "FONTAINE NOTRE DAME", + "nomCommune": "FONTAINE NOTRE DAME" }, { - "codePostal": "02840", - "codeCommune": "02282", - "libelleAcheminement": "EPPES", - "nomCommune": "EPPES" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "98870", - "codeCommune": "98803", - "libelleAcheminement": "BOURAIL", - "nomCommune": "BOURAIL" + "codePostal": "15190", + "codeCommune": "15114", + "libelleAcheminement": "MARCENAT", + "nomCommune": "MARCENAT" }, { - "codePostal": "03220", - "codeCommune": "03284", - "libelleAcheminement": "THIONNE", - "nomCommune": "THIONNE" + "codePostal": "01960", + "codeCommune": "01289", + "libelleAcheminement": "PERONNAS", + "nomCommune": "PERONNAS" }, { - "codePostal": "02260", - "codeCommune": "02284", - "libelleAcheminement": "ERLOY", - "nomCommune": "ERLOY" + "codePostal": "02820", + "codeCommune": "02349", + "libelleAcheminement": "GOUDELANCOURT LES BERRIEUX", + "nomCommune": "GOUDELANCOURT LES BERRIEUX" }, { - "codePostal": "98837", - "codeCommune": "98805", - "libelleAcheminement": "DUMBEA", - "nomCommune": "DUMBEA" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "03190", - "codeCommune": "03297", - "libelleAcheminement": "VALLON EN SULLY", - "nomCommune": "VALLON EN SULLY" + "codePostal": "15250", + "codeCommune": "15118", + "libelleAcheminement": "MARMANHAC", + "nomCommune": "MARMANHAC" }, { - "codePostal": "02100", - "codeCommune": "02288", - "libelleAcheminement": "ESSIGNY LE PETIT", - "nomCommune": "ESSIGNY LE PETIT" + "codePostal": "01300", + "codeCommune": "01294", + "libelleAcheminement": "PEYRIEU", + "nomCommune": "PEYRIEU" }, { - "codePostal": "98839", - "codeCommune": "98805", - "libelleAcheminement": "DUMBEA", - "nomCommune": "DUMBEA" + "codePostal": "02130", + "codeCommune": "02351", + "libelleAcheminement": "GOUSSANCOURT", + "nomCommune": "GOUSSANCOURT" }, { - "codePostal": "03190", - "codeCommune": "03301", - "libelleAcheminement": "VAUX", - "nomCommune": "VAUX" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "02420", - "codeCommune": "02291", - "libelleAcheminement": "ESTREES", - "nomCommune": "ESTREES" + "codePostal": "15200", + "codeCommune": "15120", + "libelleAcheminement": "MAURIAC", + "nomCommune": "MAURIAC" }, { - "codePostal": "98816", - "codeCommune": "98808", - "libelleAcheminement": "HOUAILOU", - "nomCommune": "HOUAILOU" + "codePostal": "01270", + "codeCommune": "01296", + "libelleAcheminement": "PIRAJOUX", + "nomCommune": "PIRAJOUX" }, { - "codePostal": "03190", - "codeCommune": "03303", - "libelleAcheminement": "VENAS", - "nomCommune": "VENAS" + "codePostal": "02420", + "codeCommune": "02352", + "libelleAcheminement": "GOUY", + "nomCommune": "GOUY" }, { - "codePostal": "02590", - "codeCommune": "02296", - "libelleAcheminement": "ETREILLERS", - "nomCommune": "ETREILLERS" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "98860", - "codeCommune": "98811", - "libelleAcheminement": "KONE", - "nomCommune": "KONE" + "codePostal": "15110", + "codeCommune": "15121", + "libelleAcheminement": "MAURINES", + "nomCommune": "MAURINES" }, { - "codePostal": "03200", - "codeCommune": "03306", - "libelleAcheminement": "LE VERNET", - "nomCommune": "LE VERNET" + "codePostal": "01330", + "codeCommune": "01299", + "libelleAcheminement": "LE PLANTAY", + "nomCommune": "LE PLANTAY" }, { "codePostal": "02100", - "codeCommune": "02303", - "libelleAcheminement": "FAYET", - "nomCommune": "FAYET" - }, - { - "codePostal": "98850", - "codeCommune": "98812", - "libelleAcheminement": "KOUMAC", - "nomCommune": "KOUMAC" - }, - { - "codePostal": "03500", - "codeCommune": "03307", - "libelleAcheminement": "VERNEUIL EN BOURBONNAIS", - "nomCommune": "VERNEUIL EN BOURBONNAIS" + "codeCommune": "02371", + "libelleAcheminement": "HARLY", + "nomCommune": "HARLY" }, { - "codePostal": "02450", - "codeCommune": "02308", - "libelleAcheminement": "FESMY LE SART", - "nomCommune": "FESMY LE SART" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "98809", - "codeCommune": "98817", - "libelleAcheminement": "MONT DORE", - "nomCommune": "LE MONT DORE" + "codePostal": "15200", + "codeCommune": "15123", + "libelleAcheminement": "MEALLET", + "nomCommune": "MEALLET" }, { - "codePostal": "03430", - "codeCommune": "03312", - "libelleAcheminement": "VIEURE", - "nomCommune": "VIEURE" + "codePostal": "01160", + "codeCommune": "01314", + "libelleAcheminement": "PRIAY", + "nomCommune": "PRIAY" }, { - "codePostal": "02000", - "codeCommune": "02311", - "libelleAcheminement": "FILAIN", - "nomCommune": "FILAIN" + "codePostal": "02120", + "codeCommune": "02379", + "libelleAcheminement": "LE HERIE LA VIEVILLE", + "nomCommune": "LE HERIE LA VIEVILLE" }, { - "codePostal": "98814", - "codeCommune": "98820", - "libelleAcheminement": "FAYAOUE", - "nomCommune": "OUVEA" + "codePostal": "14640", + "codeCommune": "14660", + "libelleAcheminement": "ST VAAST EN AUGE", + "nomCommune": "ST VAAST EN AUGE" }, { - "codePostal": "03430", - "codeCommune": "03315", - "libelleAcheminement": "VILLEFRANCHE D ALLIER", - "nomCommune": "VILLEFRANCHE D ALLIER" + "codePostal": "15500", + "codeCommune": "15127", + "libelleAcheminement": "MOLOMPIZE", + "nomCommune": "MOLOMPIZE" }, { - "codePostal": "02520", - "codeCommune": "02315", - "libelleAcheminement": "FLAVY LE MARTEL", - "nomCommune": "FLAVY LE MARTEL" + "codePostal": "01250", + "codeCommune": "01321", + "libelleAcheminement": "REVONNAS", + "nomCommune": "REVONNAS" }, { - "codePostal": "98826", - "codeCommune": "98826", - "libelleAcheminement": "POUM", - "nomCommune": "POUM" + "codePostal": "02720", + "codeCommune": "02383", + "libelleAcheminement": "HOMBLIERES", + "nomCommune": "HOMBLIERES" }, { - "codePostal": "03160", - "codeCommune": "03320", - "libelleAcheminement": "YGRANDE", - "nomCommune": "YGRANDE" + "codePostal": "14121", + "codeCommune": "14665", + "libelleAcheminement": "SALLENELLES", + "nomCommune": "SALLENELLES" }, { - "codePostal": "02590", - "codeCommune": "02317", - "libelleAcheminement": "FLUQUIERES", - "nomCommune": "FLUQUIERES" + "codePostal": "15190", + "codeCommune": "15129", + "libelleAcheminement": "MONTBOUDIF", + "nomCommune": "MONTBOUDIF" }, { - "codePostal": "98883", - "codeCommune": "98831", - "libelleAcheminement": "OUACO", - "nomCommune": "VOH" + "codePostal": "01120", + "codeCommune": "01342", + "libelleAcheminement": "STE CROIX", + "nomCommune": "STE CROIX" }, { - "codePostal": "04510", - "codeCommune": "04001", - "libelleAcheminement": "AIGLUN", - "nomCommune": "AIGLUN" + "codePostal": "02420", + "codeCommune": "02392", + "libelleAcheminement": "JONCOURT", + "nomCommune": "JONCOURT" }, { - "codePostal": "02670", - "codeCommune": "02318", - "libelleAcheminement": "FOLEMBRAY", - "nomCommune": "FOLEMBRAY" + "codePostal": "14940", + "codeCommune": "14666", + "libelleAcheminement": "SANNERVILLE", + "nomCommune": "SANNERVILLE" }, { - "codePostal": "98818", - "codeCommune": "98833", - "libelleAcheminement": "KOUAOUA", - "nomCommune": "KOUAOUA" + "codePostal": "15300", + "codeCommune": "15138", + "libelleAcheminement": "MURAT", + "nomCommune": "MURAT" }, { - "codePostal": "04500", - "codeCommune": "04004", - "libelleAcheminement": "ALLEMAGNE EN PROVENCE", - "nomCommune": "ALLEMAGNE EN PROVENCE" + "codePostal": "01340", + "codeCommune": "01346", + "libelleAcheminement": "ST DIDIER D AUSSIAT", + "nomCommune": "ST DIDIER D AUSSIAT" }, { - "codePostal": "02110", - "codeCommune": "02319", - "libelleAcheminement": "FONSOMME", - "nomCommune": "FONSOMME" + "codePostal": "02000", + "codeCommune": "02408", + "libelleAcheminement": "LAON", + "nomCommune": "LAON" }, { - "codePostal": "04170", - "codeCommune": "04005", - "libelleAcheminement": "ALLONS", - "nomCommune": "ALLONS" + "codePostal": "14240", + "codeCommune": "14672", + "libelleAcheminement": "VAL DE DROME", + "nomCommune": "VAL DE DROME" }, { - "codePostal": "02140", - "codeCommune": "02321", - "libelleAcheminement": "FONTAINE LES VERVINS", - "nomCommune": "FONTAINE LES VERVINS" + "codePostal": "15250", + "codeCommune": "15140", + "libelleAcheminement": "NAUCELLES", + "nomCommune": "NAUCELLES" }, { - "codePostal": "04260", - "codeCommune": "04006", - "libelleAcheminement": "ALLOS", - "nomCommune": "ALLOS" + "codePostal": "01600", + "codeCommune": "01347", + "libelleAcheminement": "ST DIDIER DE FORMANS", + "nomCommune": "ST DIDIER DE FORMANS" }, { - "codePostal": "02290", - "codeCommune": "02326", - "libelleAcheminement": "FONTENOY", - "nomCommune": "FONTENOY" + "codePostal": "02210", + "codeCommune": "02411", + "libelleAcheminement": "LATILLY", + "nomCommune": "LATILLY" }, { - "codePostal": "04200", - "codeCommune": "04013", - "libelleAcheminement": "AUBIGNOSC", - "nomCommune": "AUBIGNOSC" + "codePostal": "14190", + "codeCommune": "14674", + "libelleAcheminement": "SOIGNOLLES", + "nomCommune": "SOIGNOLLES" }, { - "codePostal": "02810", - "codeCommune": "02339", - "libelleAcheminement": "GANDELU", - "nomCommune": "GANDELU" + "codePostal": "15300", + "codeCommune": "15141", + "libelleAcheminement": "NEUSSARGUES EN PINATELLE", + "nomCommune": "NEUSSARGUES EN PINATELLE" }, { - "codePostal": "04140", - "codeCommune": "04020", - "libelleAcheminement": "BARLES", - "nomCommune": "BARLES" + "codePostal": "01300", + "codeCommune": "01358", + "libelleAcheminement": "ST GERMAIN LES PAROISSES", + "nomCommune": "ST GERMAIN LES PAROISSES" }, { - "codePostal": "02400", - "codeCommune": "02347", - "libelleAcheminement": "GLAND", - "nomCommune": "GLAND" + "codePostal": "02600", + "codeCommune": "02415", + "libelleAcheminement": "LAVERSINE", + "nomCommune": "LAVERSINE" }, { - "codePostal": "04370", - "codeCommune": "04025", - "libelleAcheminement": "BEAUVEZER", - "nomCommune": "BEAUVEZER" + "codePostal": "14420", + "codeCommune": "14678", + "libelleAcheminement": "SOUMONT ST QUENTIN", + "nomCommune": "SOUMONT ST QUENTIN" }, { - "codePostal": "02820", - "codeCommune": "02349", - "libelleAcheminement": "GOUDELANCOURT LES BERRIEUX", - "nomCommune": "GOUDELANCOURT LES BERRIEUX" + "codePostal": "15260", + "codeCommune": "15142", + "libelleAcheminement": "NEUVEGLISE SUR TRUYERE", + "nomCommune": "NEUVEGLISE SUR TRUYERE" }, { - "codePostal": "04330", - "codeCommune": "04030", - "libelleAcheminement": "BLIEUX", - "nomCommune": "BLIEUX" + "codePostal": "01750", + "codeCommune": "01370", + "libelleAcheminement": "ST LAURENT SUR SAONE", + "nomCommune": "ST LAURENT SUR SAONE" }, { - "codePostal": "02350", - "codeCommune": "02350", - "libelleAcheminement": "GOUDELANCOURT LES PIERREPONT", - "nomCommune": "GOUDELANCOURT LES PIERREPONT" + "codePostal": "02420", + "codeCommune": "02417", + "libelleAcheminement": "LEMPIRE", + "nomCommune": "LEMPIRE" }, { - "codePostal": "04240", - "codeCommune": "04032", - "libelleAcheminement": "BRAUX", - "nomCommune": "BRAUX" + "codePostal": "14400", + "codeCommune": "14679", + "libelleAcheminement": "SUBLES", + "nomCommune": "SUBLES" }, { - "codePostal": "02130", - "codeCommune": "02351", - "libelleAcheminement": "GOUSSANCOURT", - "nomCommune": "GOUSSANCOURT" + "codePostal": "15150", + "codeCommune": "15143", + "libelleAcheminement": "NIEUDAN", + "nomCommune": "NIEUDAN" }, { - "codePostal": "04420", - "codeCommune": "04036", - "libelleAcheminement": "LE BRUSQUET", - "nomCommune": "LE BRUSQUET" + "codePostal": "01430", + "codeCommune": "01373", + "libelleAcheminement": "ST MARTIN DU FRENE", + "nomCommune": "ST MARTIN DU FRENE" }, { "codePostal": "02120", - "codeCommune": "02361", - "libelleAcheminement": "GUISE", - "nomCommune": "GUISE" - }, - { - "codePostal": "04120", - "codeCommune": "04039", - "libelleAcheminement": "CASTELLANE", - "nomCommune": "CASTELLANE" - }, - { - "codePostal": "02300", - "codeCommune": "02363", - "libelleAcheminement": "GUNY", - "nomCommune": "GUNY" + "codeCommune": "02422", + "libelleAcheminement": "LESQUIELLES ST GERMAIN", + "nomCommune": "LESQUIELLES ST GERMAIN" }, { - "codePostal": "04120", - "codeCommune": "04039", - "libelleAcheminement": "CASTELLANE", - "nomCommune": "CASTELLANE" + "codePostal": "14400", + "codeCommune": "14680", + "libelleAcheminement": "SULLY", + "nomCommune": "SULLY" }, { - "codePostal": "02510", - "codeCommune": "02366", - "libelleAcheminement": "HANNAPES", - "nomCommune": "HANNAPES" + "codePostal": "15230", + "codeCommune": "15149", + "libelleAcheminement": "PAULHENC", + "nomCommune": "PAULHENC" }, { - "codePostal": "04320", - "codeCommune": "04043", - "libelleAcheminement": "VAL DE CHALVAGNE", - "nomCommune": "VAL DE CHALVAGNE" + "codePostal": "01160", + "codeCommune": "01374", + "libelleAcheminement": "ST MARTIN DU MONT", + "nomCommune": "ST MARTIN DU MONT" }, { - "codePostal": "02480", - "codeCommune": "02367", - "libelleAcheminement": "HAPPENCOURT", - "nomCommune": "HAPPENCOURT" + "codePostal": "02810", + "codeCommune": "02428", + "libelleAcheminement": "LICY CLIGNON", + "nomCommune": "LICY CLIGNON" }, { - "codePostal": "04250", - "codeCommune": "04050", - "libelleAcheminement": "CHATEAUFORT", - "nomCommune": "CHATEAUFORT" + "codePostal": "14250", + "codeCommune": "14684", + "libelleAcheminement": "TESSEL", + "nomCommune": "TESSEL" }, { - "codePostal": "02210", - "codeCommune": "02372", - "libelleAcheminement": "HARTENNES ET TAUX", - "nomCommune": "HARTENNES ET TAUX" + "codePostal": "15170", + "codeCommune": "15151", + "libelleAcheminement": "PEYRUSSE", + "nomCommune": "PEYRUSSE" }, { - "codePostal": "04200", - "codeCommune": "04051", - "libelleAcheminement": "CHATEAUNEUF MIRAVAIL", - "nomCommune": "CHATEAUNEUF MIRAVAIL" + "codePostal": "01310", + "codeCommune": "01375", + "libelleAcheminement": "ST MARTIN LE CHATEL", + "nomCommune": "ST MARTIN LE CHATEL" }, { "codePostal": "02500", - "codeCommune": "02378", - "libelleAcheminement": "LA HERIE", - "nomCommune": "LA HERIE" - }, - { - "codePostal": "04250", - "codeCommune": "04057", - "libelleAcheminement": "CLAMENSANE", - "nomCommune": "CLAMENSANE" - }, - { - "codePostal": "02760", - "codeCommune": "02382", - "libelleAcheminement": "HOLNON", - "nomCommune": "HOLNON" - }, - { - "codePostal": "04370", - "codeCommune": "04061", - "libelleAcheminement": "COLMARS LES ALPES", - "nomCommune": "COLMARS" - }, - { - "codePostal": "02880", - "codeCommune": "02398", - "libelleAcheminement": "JUVIGNY", - "nomCommune": "JUVIGNY" - }, - { - "codePostal": "04530", - "codeCommune": "04062", - "libelleAcheminement": "LA CONDAMINE CHATELARD", - "nomCommune": "LA CONDAMINE CHATELARD" - }, - { - "codePostal": "02880", - "codeCommune": "02400", - "libelleAcheminement": "LAFFAUX", - "nomCommune": "LAFFAUX" + "codeCommune": "02435", + "libelleAcheminement": "LOGNY LES AUBENTON", + "nomCommune": "LOGNY LES AUBENTON" }, { - "codePostal": "04200", - "codeCommune": "04067", - "libelleAcheminement": "CUREL", - "nomCommune": "CUREL" + "codePostal": "14220", + "codeCommune": "14689", + "libelleAcheminement": "THURY HARCOURT LE HOM", + "nomCommune": "THURY HARCOURT LE HOM" }, { - "codePostal": "02380", - "codeCommune": "02406", - "libelleAcheminement": "LANDRICOURT", - "nomCommune": "LANDRICOURT" + "codePostal": "15230", + "codeCommune": "15152", + "libelleAcheminement": "PIERREFORT", + "nomCommune": "PIERREFORT" }, { - "codePostal": "04000", - "codeCommune": "04070", - "libelleAcheminement": "DIGNE LES BAINS", - "nomCommune": "DIGNE LES BAINS" + "codePostal": "01800", + "codeCommune": "01378", + "libelleAcheminement": "ST MAURICE DE GOURDANS", + "nomCommune": "ST MAURICE DE GOURDANS" }, { - "codePostal": "02210", - "codeCommune": "02412", - "libelleAcheminement": "LAUNOY", - "nomCommune": "LAUNOY" + "codePostal": "02160", + "codeCommune": "02439", + "libelleAcheminement": "LES SEPTVALLONS", + "nomCommune": "LES SEPTVALLONS" }, { - "codePostal": "04400", - "codeCommune": "04073", - "libelleAcheminement": "ENCHASTRAYES", - "nomCommune": "ENCHASTRAYES" + "codePostal": "14220", + "codeCommune": "14689", + "libelleAcheminement": "THURY HARCOURT LE HOM", + "nomCommune": "THURY HARCOURT LE HOM" }, { - "codePostal": "02340", - "codeCommune": "02433", - "libelleAcheminement": "LISLET", - "nomCommune": "LISLET" + "codePostal": "15700", + "codeCommune": "15153", + "libelleAcheminement": "PLEAUX", + "nomCommune": "PLEAUX" }, { - "codePostal": "04200", - "codeCommune": "04075", - "libelleAcheminement": "ENTREPIERRES", - "nomCommune": "ENTREPIERRES" + "codePostal": "01500", + "codeCommune": "01379", + "libelleAcheminement": "ST MAURICE DE REMENS", + "nomCommune": "ST MAURICE DE REMENS" }, { "codePostal": "02160", @@ -50052,22 +50082,22 @@ "nomCommune": "LES SEPTVALLONS" }, { - "codePostal": "04800", - "codeCommune": "04081", - "libelleAcheminement": "ESPARRON DE VERDON", - "nomCommune": "ESPARRON DE VERDON" + "codePostal": "14210", + "codeCommune": "14707", + "libelleAcheminement": "TOURVILLE SUR ODON", + "nomCommune": "TOURVILLE SUR ODON" }, { - "codePostal": "02160", - "codeCommune": "02439", - "libelleAcheminement": "LES SEPTVALLONS", - "nomCommune": "LES SEPTVALLONS" + "codePostal": "15600", + "codeCommune": "15157", + "libelleAcheminement": "QUEZAC", + "nomCommune": "QUEZAC" }, { - "codePostal": "04400", - "codeCommune": "04086", - "libelleAcheminement": "FAUCON DE BARCELONNETTE", - "nomCommune": "FAUCON DE BARCELONNETTE" + "codePostal": "01560", + "codeCommune": "01380", + "libelleAcheminement": "ST NIZIER LE BOUCHOUX", + "nomCommune": "ST NIZIER LE BOUCHOUX" }, { "codePostal": "02160", @@ -50076,151054 +50106,150970 @@ "nomCommune": "LES SEPTVALLONS" }, { - "codePostal": "04000", - "codeCommune": "04097", - "libelleAcheminement": "LA JAVIE", - "nomCommune": "LA JAVIE" - }, - { - "codePostal": "02130", - "codeCommune": "02442", - "libelleAcheminement": "LOUPEIGNE", - "nomCommune": "LOUPEIGNE" + "codePostal": "14117", + "codeCommune": "14709", + "libelleAcheminement": "TRACY SUR MER", + "nomCommune": "TRACY SUR MER" }, { - "codePostal": "04340", - "codeCommune": "04102", - "libelleAcheminement": "LE LAUZET UBAYE", - "nomCommune": "LE LAUZET UBAYE" + "codePostal": "15170", + "codeCommune": "15161", + "libelleAcheminement": "REZENTIERES", + "nomCommune": "REZENTIERES" }, { - "codePostal": "02120", - "codeCommune": "02450", - "libelleAcheminement": "MACQUIGNY", - "nomCommune": "MACQUIGNY" + "codePostal": "01240", + "codeCommune": "01383", + "libelleAcheminement": "ST PAUL DE VARAX", + "nomCommune": "ST PAUL DE VARAX" }, { - "codePostal": "04300", - "codeCommune": "04104", - "libelleAcheminement": "LIMANS", - "nomCommune": "LIMANS" + "codePostal": "02350", + "codeCommune": "02457", + "libelleAcheminement": "MARCHAIS", + "nomCommune": "MARCHAIS" }, { - "codePostal": "02420", - "codeCommune": "02451", - "libelleAcheminement": "MAGNY LA FOSSE", - "nomCommune": "MAGNY LA FOSSE" + "codePostal": "14690", + "codeCommune": "14710", + "libelleAcheminement": "TREPREL", + "nomCommune": "TREPREL" }, { - "codePostal": "04420", - "codeCommune": "04113", - "libelleAcheminement": "MARCOUX", - "nomCommune": "MARCOUX" + "codePostal": "15150", + "codeCommune": "15165", + "libelleAcheminement": "ROUFFIAC", + "nomCommune": "ROUFFIAC" }, { - "codePostal": "02490", - "codeCommune": "02452", - "libelleAcheminement": "MAISSEMY", - "nomCommune": "MAISSEMY" + "codePostal": "01310", + "codeCommune": "01385", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "04190", - "codeCommune": "04116", - "libelleAcheminement": "LES MEES", - "nomCommune": "LES MEES" + "codePostal": "02540", + "codeCommune": "02458", + "libelleAcheminement": "DHUYS ET MORIN EN BRIE", + "nomCommune": "DHUYS ET MORIN EN BRIE" }, { - "codePostal": "02810", - "codeCommune": "02465", - "libelleAcheminement": "MARIGNY EN ORXOIS", - "nomCommune": "MARIGNY EN ORXOIS" + "codePostal": "14710", + "codeCommune": "14711", + "libelleAcheminement": "TREVIERES", + "nomCommune": "TREVIERES" }, { - "codePostal": "04140", - "codeCommune": "04126", - "libelleAcheminement": "MONTCLAR", - "nomCommune": "MONTCLAR" + "codePostal": "15290", + "codeCommune": "15166", + "libelleAcheminement": "ROUMEGOUX", + "nomCommune": "ROUMEGOUX" }, { - "codePostal": "02470", - "codeCommune": "02466", - "libelleAcheminement": "MARIZY STE GENEVIEVE", - "nomCommune": "MARIZY STE GENEVIEVE" + "codePostal": "01560", + "codeCommune": "01388", + "libelleAcheminement": "ST TRIVIER DE COURTES", + "nomCommune": "ST TRIVIER DE COURTES" }, { - "codePostal": "04110", - "codeCommune": "04128", - "libelleAcheminement": "MONTFURON", - "nomCommune": "MONTFURON" + "codePostal": "02250", + "codeCommune": "02460", + "libelleAcheminement": "MARCY SOUS MARLE", + "nomCommune": "MARCY SOUS MARLE" }, { - "codePostal": "02470", - "codeCommune": "02467", - "libelleAcheminement": "MARIZY ST MARD", - "nomCommune": "MARIZY ST MARD" + "codePostal": "14670", + "codeCommune": "14712", + "libelleAcheminement": "TROARN", + "nomCommune": "TROARN" }, { - "codePostal": "04170", - "codeCommune": "04136", - "libelleAcheminement": "LA MURE ARGENS", - "nomCommune": "LA MURE ARGENS" + "codePostal": "15140", + "codeCommune": "15174", + "libelleAcheminement": "ST BONNET DE SALERS", + "nomCommune": "ST BONNET DE SALERS" }, { - "codePostal": "02240", - "codeCommune": "02483", - "libelleAcheminement": "MEZIERES SUR OISE", - "nomCommune": "MEZIERES SUR OISE" + "codePostal": "01990", + "codeCommune": "01389", + "libelleAcheminement": "ST TRIVIER SUR MOIGNANS", + "nomCommune": "ST TRIVIER SUR MOIGNANS" }, { - "codePostal": "04250", - "codeCommune": "04137", - "libelleAcheminement": "NIBLES", - "nomCommune": "NIBLES" + "codePostal": "02140", + "codeCommune": "02463", + "libelleAcheminement": "MARFONTAINE", + "nomCommune": "MARFONTAINE" }, { - "codePostal": "02650", - "codeCommune": "02484", - "libelleAcheminement": "MEZY MOULINS", - "nomCommune": "MEZY MOULINS" + "codePostal": "14210", + "codeCommune": "14713", + "libelleAcheminement": "MONTILLIERES SUR ORNE", + "nomCommune": "MONTILLIERES SUR ORNE" }, { - "codePostal": "04200", - "codeCommune": "04139", - "libelleAcheminement": "NOYERS SUR JABRON", - "nomCommune": "NOYERS SUR JABRON" + "codePostal": "15150", + "codeCommune": "15182", + "libelleAcheminement": "ST ETIENNE CANTALES", + "nomCommune": "ST ETIENNE CANTALES" }, { - "codePostal": "02000", - "codeCommune": "02497", - "libelleAcheminement": "MONS EN LAONNOIS", - "nomCommune": "MONS EN LAONNOIS" + "codePostal": "01580", + "codeCommune": "01392", + "libelleAcheminement": "SAMOGNAT", + "nomCommune": "SAMOGNAT" }, { - "codePostal": "04230", - "codeCommune": "04141", - "libelleAcheminement": "ONGLES", - "nomCommune": "ONGLES" + "codePostal": "02880", + "codeCommune": "02464", + "libelleAcheminement": "MARGIVAL", + "nomCommune": "MARGIVAL" }, { - "codePostal": "02000", - "codeCommune": "02499", - "libelleAcheminement": "MONTBAVIN", - "nomCommune": "MONTBAVIN" + "codePostal": "14210", + "codeCommune": "14721", + "libelleAcheminement": "VACOGNES NEUILLY", + "nomCommune": "VACOGNES NEUILLY" }, { - "codePostal": "04110", - "codeCommune": "04142", - "libelleAcheminement": "OPPEDETTE", - "nomCommune": "OPPEDETTE" + "codePostal": "15310", + "codeCommune": "15191", + "libelleAcheminement": "ST ILLIDE", + "nomCommune": "ST ILLIDE" }, { - "codePostal": "02860", - "codeCommune": "02501", - "libelleAcheminement": "MONTCHALONS", - "nomCommune": "MONTCHALONS" + "codePostal": "01220", + "codeCommune": "01397", + "libelleAcheminement": "SAUVERNY", + "nomCommune": "SAUVERNY" }, { - "codePostal": "04300", - "codeCommune": "04151", - "libelleAcheminement": "PIERRERUE", - "nomCommune": "PIERRERUE" + "codePostal": "02200", + "codeCommune": "02477", + "libelleAcheminement": "MERCIN ET VAUX", + "nomCommune": "MERCIN ET VAUX" }, { - "codePostal": "02540", - "codeCommune": "02505", - "libelleAcheminement": "MONTFAUCON", - "nomCommune": "MONTFAUCON" + "codePostal": "14390", + "codeCommune": "14724", + "libelleAcheminement": "VARAVILLE", + "nomCommune": "VARAVILLE" }, { - "codePostal": "04410", - "codeCommune": "04157", - "libelleAcheminement": "PUIMOISSON", - "nomCommune": "PUIMOISSON" + "codePostal": "15800", + "codeCommune": "15192", + "libelleAcheminement": "ST JACQUES DES BLATS", + "nomCommune": "ST JACQUES DES BLATS" }, { - "codePostal": "02600", - "codeCommune": "02506", - "libelleAcheminement": "MONTGOBERT", - "nomCommune": "MONTGOBERT" + "codePostal": "01580", + "codeCommune": "01410", + "libelleAcheminement": "SONTHONNAX LA MONTAGNE", + "nomCommune": "SONTHONNAX LA MONTAGNE" }, { - "codePostal": "04500", - "codeCommune": "04158", - "libelleAcheminement": "QUINSON", - "nomCommune": "QUINSON" + "codePostal": "02270", + "codeCommune": "02480", + "libelleAcheminement": "MESBRECOURT RICHECOURT", + "nomCommune": "MESBRECOURT RICHECOURT" }, { - "codePostal": "02330", - "codeCommune": "02510", - "libelleAcheminement": "MONTHUREL", - "nomCommune": "MONTHUREL" + "codePostal": "14350", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "04110", - "codeCommune": "04160", - "libelleAcheminement": "REILLANNE", - "nomCommune": "REILLANNE" + "codePostal": "15600", + "codeCommune": "15194", + "libelleAcheminement": "ST JULIEN DE TOURSAC", + "nomCommune": "ST JULIEN DE TOURSAC" }, { - "codePostal": "02250", - "codeCommune": "02513", - "libelleAcheminement": "MONTIGNY LE FRANC", - "nomCommune": "MONTIGNY LE FRANC" + "codePostal": "01580", + "codeCommune": "01410", + "libelleAcheminement": "SONTHONNAX LA MONTAGNE", + "nomCommune": "SONTHONNAX LA MONTAGNE" }, { - "codePostal": "04270", - "codeCommune": "04181", - "libelleAcheminement": "ST JEANNET", - "nomCommune": "ST JEANNET" + "codePostal": "02720", + "codeCommune": "02481", + "libelleAcheminement": "MESNIL ST LAURENT", + "nomCommune": "MESNIL ST LAURENT" }, { - "codePostal": "02140", - "codeCommune": "02535", - "libelleAcheminement": "NAMPCELLES LA COUR", - "nomCommune": "NAMPCELLES LA COUR" + "codePostal": "14170", + "codeCommune": "14735", + "libelleAcheminement": "VENDEUVRE", + "nomCommune": "VENDEUVRE" }, { - "codePostal": "04330", - "codeCommune": "04187", - "libelleAcheminement": "ST LIONS", - "nomCommune": "ST LIONS" + "codePostal": "15110", + "codeCommune": "15199", + "libelleAcheminement": "ST MARTIAL", + "nomCommune": "ST MARTIAL" }, { - "codePostal": "02880", - "codeCommune": "02537", - "libelleAcheminement": "NANTEUIL LA FOSSE", - "nomCommune": "NANTEUIL LA FOSSE" + "codePostal": "01390", + "codeCommune": "01424", + "libelleAcheminement": "TRAMOYES", + "nomCommune": "TRAMOYES" }, { - "codePostal": "04800", - "codeCommune": "04189", - "libelleAcheminement": "ST MARTIN DE BROMES", - "nomCommune": "ST MARTIN DE BROMES" + "codePostal": "02160", + "codeCommune": "02482", + "libelleAcheminement": "MEURIVAL", + "nomCommune": "MEURIVAL" }, { - "codePostal": "02300", - "codeCommune": "02542", - "libelleAcheminement": "NEUFLIEUX", - "nomCommune": "NEUFLIEUX" + "codePostal": "14170", + "codeCommune": "14735", + "libelleAcheminement": "VENDEUVRE", + "nomCommune": "VENDEUVRE" }, { - "codePostal": "04140", - "codeCommune": "04191", - "libelleAcheminement": "ST MARTIN LES SEYNE", - "nomCommune": "ST MARTIN LES SEYNE" + "codePostal": "15500", + "codeCommune": "15203", + "libelleAcheminement": "ST MARY LE PLAIN", + "nomCommune": "ST MARY LE PLAIN" }, { - "codePostal": "02390", - "codeCommune": "02552", - "libelleAcheminement": "NEUVILLETTE", - "nomCommune": "NEUVILLETTE" + "codePostal": "01560", + "codeCommune": "01433", + "libelleAcheminement": "VERNOUX", + "nomCommune": "VERNOUX" }, { - "codePostal": "04870", - "codeCommune": "04192", - "libelleAcheminement": "ST MICHEL L OBSERVATOIRE", - "nomCommune": "ST MICHEL L OBSERVATOIRE" + "codePostal": "02200", + "codeCommune": "02485", + "libelleAcheminement": "MISSY AUX BOIS", + "nomCommune": "MISSY AUX BOIS" }, { - "codePostal": "02270", - "codeCommune": "02559", - "libelleAcheminement": "NOUVION ET CATILLON", - "nomCommune": "NOUVION ET CATILLON" + "codePostal": "14400", + "codeCommune": "14744", + "libelleAcheminement": "VIENNE EN BESSIN", + "nomCommune": "VIENNE EN BESSIN" }, { - "codePostal": "04400", - "codeCommune": "04195", - "libelleAcheminement": "ST PONS", - "nomCommune": "ST PONS" + "codePostal": "15500", + "codeCommune": "15207", + "libelleAcheminement": "ST PONCY", + "nomCommune": "ST PONCY" }, { - "codePostal": "02800", - "codeCommune": "02560", - "libelleAcheminement": "NOUVION LE COMTE", - "nomCommune": "NOUVION LE COMTE" + "codePostal": "01430", + "codeCommune": "01441", + "libelleAcheminement": "VIEU D IZENAVE", + "nomCommune": "VIEU D IZENAVE" }, { - "codePostal": "04200", - "codeCommune": "04199", - "libelleAcheminement": "ST VINCENT SUR JABRON", - "nomCommune": "ST VINCENT SUR JABRON" + "codePostal": "02880", + "codeCommune": "02487", + "libelleAcheminement": "MISSY SUR AISNE", + "nomCommune": "MISSY SUR AISNE" }, { - "codePostal": "02200", - "codeCommune": "02564", - "libelleAcheminement": "NOYANT ET ACONIN", - "nomCommune": "NOYANT ET ACONIN" + "codePostal": "14640", + "codeCommune": "14754", + "libelleAcheminement": "VILLERS SUR MER", + "nomCommune": "VILLERS SUR MER" }, { - "codePostal": "04200", - "codeCommune": "04207", - "libelleAcheminement": "SIGOYER", - "nomCommune": "SIGOYER" + "codePostal": "15600", + "codeCommune": "15212", + "libelleAcheminement": "ST SANTIN DE MAURS", + "nomCommune": "ST SANTIN DE MAURS" }, { - "codePostal": "02500", - "codeCommune": "02567", - "libelleAcheminement": "OHIS", - "nomCommune": "OHIS" + "codePostal": "01200", + "codeCommune": "01448", + "libelleAcheminement": "VILLES", + "nomCommune": "VILLES" }, { - "codePostal": "04200", - "codeCommune": "04216", - "libelleAcheminement": "THEZE", - "nomCommune": "THEZE" + "codePostal": "02000", + "codeCommune": "02490", + "libelleAcheminement": "MONAMPTEUIL", + "nomCommune": "MONAMPTEUIL" }, { - "codePostal": "02480", - "codeCommune": "02570", - "libelleAcheminement": "OLLEZY", - "nomCommune": "OLLEZY" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "04250", - "codeCommune": "04228", - "libelleAcheminement": "VALAVOIRE", - "nomCommune": "VALAVOIRE" + "codePostal": "15130", + "codeCommune": "15215", + "libelleAcheminement": "ST SIMON", + "nomCommune": "ST SIMON" }, { - "codePostal": "02290", - "codeCommune": "02576", - "libelleAcheminement": "OSLY COURTIL", - "nomCommune": "OSLY COURTIL" + "codePostal": "01260", + "codeCommune": "01453", + "libelleAcheminement": "ARVIERE EN VALROMEY", + "nomCommune": "ARVIERE EN VALROMEY" }, { - "codePostal": "05130", - "codeCommune": "04234", - "libelleAcheminement": "VENTEROL", - "nomCommune": "VENTEROL" + "codePostal": "02860", + "codeCommune": "02501", + "libelleAcheminement": "MONTCHALONS", + "nomCommune": "MONTCHALONS" }, { - "codePostal": "02840", - "codeCommune": "02587", - "libelleAcheminement": "PARFONDRU", - "nomCommune": "PARFONDRU" + "codePostal": "14690", + "codeCommune": "14764", + "libelleAcheminement": "PONT D OUILLY", + "nomCommune": "PONT D OUILLY" }, { - "codePostal": "04370", - "codeCommune": "04240", - "libelleAcheminement": "VILLARS COLMARS", - "nomCommune": "VILLARS COLMARS" + "codePostal": "15110", + "codeCommune": "15216", + "libelleAcheminement": "ST URCIZE", + "nomCommune": "ST URCIZE" }, { - "codePostal": "02160", - "codeCommune": "02588", - "libelleAcheminement": "PARGNAN", - "nomCommune": "PARGNAN" + "codePostal": "01260", + "codeCommune": "01453", + "libelleAcheminement": "ARVIERE EN VALROMEY", + "nomCommune": "ARVIERE EN VALROMEY" }, { - "codePostal": "04180", - "codeCommune": "04242", - "libelleAcheminement": "VILLENEUVE", - "nomCommune": "VILLENEUVE" + "codePostal": "02860", + "codeCommune": "02508", + "libelleAcheminement": "MONTHENAULT", + "nomCommune": "MONTHENAULT" }, { - "codePostal": "02330", - "codeCommune": "02590", - "libelleAcheminement": "PARGNY LA DHUYS", - "nomCommune": "PARGNY LA DHUYS" + "codePostal": "15100", + "codeCommune": "15002", + "libelleAcheminement": "ALLEUZE", + "nomCommune": "ALLEUZE" }, { - "codePostal": "05140", - "codeCommune": "05008", - "libelleAcheminement": "ASPREMONT", - "nomCommune": "ASPREMONT" + "codePostal": "15200", + "codeCommune": "15220", + "libelleAcheminement": "SALINS", + "nomCommune": "SALINS" }, { - "codePostal": "02240", - "codeCommune": "02605", - "libelleAcheminement": "PLEINE SELVE", - "nomCommune": "PLEINE SELVE" + "codePostal": "01260", + "codeCommune": "01453", + "libelleAcheminement": "ARVIERE EN VALROMEY", + "nomCommune": "ARVIERE EN VALROMEY" }, { - "codePostal": "05110", - "codeCommune": "05013", - "libelleAcheminement": "BARCILLONNETTE", - "nomCommune": "BARCILLONNETTE" + "codePostal": "02810", + "codeCommune": "02512", + "libelleAcheminement": "MONTIGNY L ALLIER", + "nomCommune": "MONTIGNY L ALLIER" }, { - "codePostal": "02140", - "codeCommune": "02608", - "libelleAcheminement": "PLOMION", - "nomCommune": "PLOMION" + "codePostal": "15110", + "codeCommune": "15007", + "libelleAcheminement": "ANTERRIEUX", + "nomCommune": "ANTERRIEUX" }, { - "codePostal": "05700", - "codeCommune": "05016", - "libelleAcheminement": "LA BATIE MONTSALEON", - "nomCommune": "LA BATIE MONTSALEON" + "codePostal": "15130", + "codeCommune": "15221", + "libelleAcheminement": "SANSAC DE MARMIESSE", + "nomCommune": "SANSAC DE MARMIESSE" }, { - "codePostal": "02110", - "codeCommune": "02618", - "libelleAcheminement": "PREMONT", - "nomCommune": "PREMONT" + "codePostal": "01260", + "codeCommune": "01453", + "libelleAcheminement": "ARVIERE EN VALROMEY", + "nomCommune": "ARVIERE EN VALROMEY" }, { - "codePostal": "05800", - "codeCommune": "05039", - "libelleAcheminement": "AUBESSAGNE", - "nomCommune": "AUBESSAGNE" + "codePostal": "02290", + "codeCommune": "02514", + "libelleAcheminement": "MONTIGNY LENGRAIN", + "nomCommune": "MONTIGNY LENGRAIN" }, { - "codePostal": "02370", - "codeCommune": "02620", - "libelleAcheminement": "PRESLES ET BOVES", - "nomCommune": "PRESLES ET BOVES" + "codePostal": "15240", + "codeCommune": "15008", + "libelleAcheminement": "ANTIGNAC", + "nomCommune": "ANTIGNAC" }, { - "codePostal": "05190", - "codeCommune": "05050", - "libelleAcheminement": "ESPINASSES", - "nomCommune": "ESPINASSES" + "codePostal": "15120", + "codeCommune": "15222", + "libelleAcheminement": "SANSAC VEINAZES", + "nomCommune": "SANSAC VEINAZES" }, { - "codePostal": "02140", - "codeCommune": "02623", - "libelleAcheminement": "PRISCES", - "nomCommune": "PRISCES" + "codePostal": "01540", + "codeCommune": "01457", + "libelleAcheminement": "VONNAS", + "nomCommune": "VONNAS" }, { - "codePostal": "05300", - "codeCommune": "05053", - "libelleAcheminement": "GARDE COLOMBE", - "nomCommune": "GARDE COLOMBE" + "codePostal": "02220", + "codeCommune": "02520", + "libelleAcheminement": "MONT NOTRE DAME", + "nomCommune": "MONT NOTRE DAME" }, { - "codePostal": "02190", - "codeCommune": "02626", - "libelleAcheminement": "PROUVAIS", - "nomCommune": "PROUVAIS" + "codePostal": "15400", + "codeCommune": "15009", + "libelleAcheminement": "APCHON", + "nomCommune": "APCHON" }, { - "codePostal": "05260", - "codeCommune": "05056", - "libelleAcheminement": "FOREST ST JULIEN", - "nomCommune": "FOREST ST JULIEN" + "codePostal": "15240", + "codeCommune": "15223", + "libelleAcheminement": "SAUVAT", + "nomCommune": "SAUVAT" }, { "codePostal": "02110", - "codeCommune": "02635", - "libelleAcheminement": "RAMICOURT", - "nomCommune": "RAMICOURT" - }, - { - "codePostal": "05000", - "codeCommune": "05059", - "libelleAcheminement": "LA FREISSINOUSE", - "nomCommune": "LA FREISSINOUSE" + "codeCommune": "02006", + "libelleAcheminement": "AISONVILLE ET BERNOVILLE", + "nomCommune": "AISONVILLE ET BERNOVILLE" }, { - "codePostal": "02290", - "codeCommune": "02643", - "libelleAcheminement": "RESSONS LE LONG", - "nomCommune": "RESSONS LE LONG" + "codePostal": "02360", + "codeCommune": "02522", + "libelleAcheminement": "MONT ST JEAN", + "nomCommune": "MONT ST JEAN" }, { - "codePostal": "05000", - "codeCommune": "05061", - "libelleAcheminement": "GAP", - "nomCommune": "GAP" + "codePostal": "15130", + "codeCommune": "15012", + "libelleAcheminement": "ARPAJON SUR CERE", + "nomCommune": "ARPAJON SUR CERE" }, { - "codePostal": "02850", - "codeCommune": "02645", - "libelleAcheminement": "REUILLY SAUVIGNY", - "nomCommune": "REUILLY SAUVIGNY" + "codePostal": "15340", + "codeCommune": "15226", + "libelleAcheminement": "SENEZERGUES", + "nomCommune": "SENEZERGUES" }, { - "codePostal": "05500", - "codeCommune": "05072", - "libelleAcheminement": "LAYE", - "nomCommune": "LAYE" + "codePostal": "02320", + "codeCommune": "02010", + "libelleAcheminement": "ALLEMANT", + "nomCommune": "ALLEMANT" }, { "codePostal": "02210", - "codeCommune": "02649", - "libelleAcheminement": "ROCOURT ST MARTIN", - "nomCommune": "ROCOURT ST MARTIN" + "codeCommune": "02533", + "libelleAcheminement": "MURET ET CROUTTES", + "nomCommune": "MURET ET CROUTTES" }, { - "codePostal": "05700", - "codeCommune": "05089", - "libelleAcheminement": "MONTROND", - "nomCommune": "MONTROND" + "codePostal": "15500", + "codeCommune": "15022", + "libelleAcheminement": "BONNAC", + "nomCommune": "BONNAC" }, { - "codePostal": "02260", - "codeCommune": "02670", - "libelleAcheminement": "ST ALGIS", - "nomCommune": "ST ALGIS" + "codePostal": "15150", + "codeCommune": "15228", + "libelleAcheminement": "SIRAN", + "nomCommune": "SIRAN" }, { - "codePostal": "05500", - "codeCommune": "05095", - "libelleAcheminement": "LE NOYER", - "nomCommune": "LE NOYER" + "codePostal": "02320", + "codeCommune": "02018", + "libelleAcheminement": "ANIZY LE GRAND", + "nomCommune": "ANIZY LE GRAND" }, { - "codePostal": "02290", - "codeCommune": "02672", - "libelleAcheminement": "ST BANDRY", - "nomCommune": "ST BANDRY" + "codePostal": "02400", + "codeCommune": "02540", + "libelleAcheminement": "NESLES LA MONTAGNE", + "nomCommune": "NESLES LA MONTAGNE" }, { - "codePostal": "05400", - "codeCommune": "05099", - "libelleAcheminement": "OZE", - "nomCommune": "OZE" + "codePostal": "15340", + "codeCommune": "15027", + "libelleAcheminement": "PUYCAPEL", + "nomCommune": "PUYCAPEL" }, { - "codePostal": "02820", - "codeCommune": "02675", - "libelleAcheminement": "STE CROIX", - "nomCommune": "STE CROIX" + "codePostal": "15170", + "codeCommune": "15231", + "libelleAcheminement": "TALIZAT", + "nomCommune": "TALIZAT" }, { - "codePostal": "05000", - "codeCommune": "05100", - "libelleAcheminement": "PELLEAUTIER", - "nomCommune": "PELLEAUTIER" + "codePostal": "02270", + "codeCommune": "02027", + "libelleAcheminement": "ASSIS SUR SERRE", + "nomCommune": "ASSIS SUR SERRE" }, { - "codePostal": "02820", - "codeCommune": "02676", - "libelleAcheminement": "ST ERME OUTRE ET RAMECOURT", - "nomCommune": "ST ERME OUTRE ET RAMECOURT" + "codePostal": "02190", + "codeCommune": "02541", + "libelleAcheminement": "NEUFCHATEL SUR AISNE", + "nomCommune": "NEUFCHATEL SUR AISNE" }, { - "codePostal": "05230", - "codeCommune": "05106", - "libelleAcheminement": "PRUNIERES", - "nomCommune": "PRUNIERES" + "codePostal": "15340", + "codeCommune": "15029", + "libelleAcheminement": "CASSANIOUZE", + "nomCommune": "CASSANIOUZE" }, { - "codePostal": "02410", - "codeCommune": "02680", - "libelleAcheminement": "ST GOBAIN", - "nomCommune": "ST GOBAIN" + "codePostal": "15250", + "codeCommune": "15233", + "libelleAcheminement": "TEISSIERES DE CORNET", + "nomCommune": "TEISSIERES DE CORNET" }, { - "codePostal": "05100", - "codeCommune": "05109", - "libelleAcheminement": "PUY ST PIERRE", - "nomCommune": "PUY ST PIERRE" + "codePostal": "02500", + "codeCommune": "02031", + "libelleAcheminement": "AUBENTON", + "nomCommune": "AUBENTON" }, { - "codePostal": "02140", - "codeCommune": "02681", - "libelleAcheminement": "ST GOBERT", - "nomCommune": "ST GOBERT" + "codePostal": "02170", + "codeCommune": "02558", + "libelleAcheminement": "LE NOUVION EN THIERACHE", + "nomCommune": "LE NOUVION EN THIERACHE" }, { - "codePostal": "05200", - "codeCommune": "05111", - "libelleAcheminement": "PUY SANIERES", - "nomCommune": "PUY SANIERES" + "codePostal": "15200", + "codeCommune": "15036", + "libelleAcheminement": "CHALVIGNAC", + "nomCommune": "CHALVIGNAC" }, { - "codePostal": "02410", - "codeCommune": "02685", - "libelleAcheminement": "ST NICOLAS AUX BOIS", - "nomCommune": "ST NICOLAS AUX BOIS" + "codePostal": "15800", + "codeCommune": "15236", + "libelleAcheminement": "THIEZAC", + "nomCommune": "THIEZAC" }, { - "codePostal": "05600", - "codeCommune": "05116", - "libelleAcheminement": "REOTIER", - "nomCommune": "REOTIER" + "codePostal": "02300", + "codeCommune": "02034", + "libelleAcheminement": "AUDIGNICOURT", + "nomCommune": "AUDIGNICOURT" }, { - "codePostal": "02220", - "codeCommune": "02695", - "libelleAcheminement": "ST THIBAUT", - "nomCommune": "ST THIBAUT" + "codePostal": "02300", + "codeCommune": "02566", + "libelleAcheminement": "OGNES", + "nomCommune": "OGNES" }, { - "codePostal": "05300", - "codeCommune": "05118", - "libelleAcheminement": "VAL BUECH MEOUGE", - "nomCommune": "VAL BUECH MEOUGE" + "codePostal": "15350", + "codeCommune": "15037", + "libelleAcheminement": "CHAMPAGNAC", + "nomCommune": "CHAMPAGNAC" }, { - "codePostal": "02130", - "codeCommune": "02699", - "libelleAcheminement": "SAPONAY", - "nomCommune": "SAPONAY" + "codePostal": "15100", + "codeCommune": "15237", + "libelleAcheminement": "TIVIERS", + "nomCommune": "TIVIERS" }, { - "codePostal": "05300", - "codeCommune": "05118", - "libelleAcheminement": "VAL BUECH MEOUGE", - "nomCommune": "VAL BUECH MEOUGE" + "codePostal": "02000", + "codeCommune": "02047", + "libelleAcheminement": "BARENTON CEL", + "nomCommune": "BARENTON CEL" }, { - "codePostal": "02310", - "codeCommune": "02701", - "libelleAcheminement": "SAULCHERY", - "nomCommune": "SAULCHERY" + "codePostal": "02190", + "codeCommune": "02572", + "libelleAcheminement": "ORAINVILLE", + "nomCommune": "ORAINVILLE" }, { - "codePostal": "05400", - "codeCommune": "05123", - "libelleAcheminement": "LA ROCHE DES ARNAUDS", - "nomCommune": "LA ROCHE DES ARNAUDS" + "codePostal": "15110", + "codeCommune": "15045", + "libelleAcheminement": "CHAUDES AIGUES", + "nomCommune": "CHAUDES AIGUES" }, { - "codePostal": "02700", - "codeCommune": "02716", - "libelleAcheminement": "SERVAIS", - "nomCommune": "SERVAIS" + "codePostal": "15400", + "codeCommune": "15243", + "libelleAcheminement": "TRIZAC", + "nomCommune": "TRIZAC" }, { - "codePostal": "05500", - "codeCommune": "05132", - "libelleAcheminement": "ST BONNET EN CHAMPSAUR", - "nomCommune": "ST BONNET EN CHAMPSAUR" + "codePostal": "02170", + "codeCommune": "02050", + "libelleAcheminement": "BARZY EN THIERACHE", + "nomCommune": "BARZY EN THIERACHE" }, { - "codePostal": "02150", - "codeCommune": "02720", - "libelleAcheminement": "SISSONNE", - "nomCommune": "SISSONNE" + "codePostal": "02290", + "codeCommune": "02576", + "libelleAcheminement": "OSLY COURTIL", + "nomCommune": "OSLY COURTIL" }, { - "codePostal": "05500", - "codeCommune": "05132", - "libelleAcheminement": "ST BONNET EN CHAMPSAUR", - "nomCommune": "ST BONNET EN CHAMPSAUR" + "codePostal": "15400", + "codeCommune": "15049", + "libelleAcheminement": "CHEYLADE", + "nomCommune": "CHEYLADE" }, { - "codePostal": "02580", - "codeCommune": "02728", - "libelleAcheminement": "SORBAIS", - "nomCommune": "SORBAIS" + "codePostal": "15300", + "codeCommune": "15244", + "libelleAcheminement": "USSEL", + "nomCommune": "USSEL" }, { - "codePostal": "05250", - "codeCommune": "05139", - "libelleAcheminement": "LE DEVOLUY", - "nomCommune": "LE DEVOLUY" + "codePostal": "02330", + "codeCommune": "02053", + "libelleAcheminement": "VALLEES EN CHAMPAGNE", + "nomCommune": "VALLEES EN CHAMPAGNE" }, { - "codePostal": "02460", - "codeCommune": "02749", - "libelleAcheminement": "TROESNES", - "nomCommune": "TROESNES" + "codePostal": "02860", + "codeCommune": "02583", + "libelleAcheminement": "PANCY COURTECON", + "nomCommune": "PANCY COURTECON" }, { - "codePostal": "05250", - "codeCommune": "05139", - "libelleAcheminement": "LE DEVOLUY", - "nomCommune": "LE DEVOLUY" + "codePostal": "15430", + "codeCommune": "15059", + "libelleAcheminement": "CUSSAC", + "nomCommune": "CUSSAC" }, { - "codePostal": "02300", - "codeCommune": "02754", - "libelleAcheminement": "UGNY LE GAY", - "nomCommune": "UGNY LE GAY" + "codePostal": "15300", + "codeCommune": "15248", + "libelleAcheminement": "VALUEJOLS", + "nomCommune": "VALUEJOLS" }, { - "codePostal": "05500", - "codeCommune": "05147", - "libelleAcheminement": "ST JULIEN EN CHAMPSAUR", - "nomCommune": "ST JULIEN EN CHAMPSAUR" + "codePostal": "02300", + "codeCommune": "02056", + "libelleAcheminement": "BEAUMONT EN BEINE", + "nomCommune": "BEAUMONT EN BEINE" }, { - "codePostal": "02120", - "codeCommune": "02757", - "libelleAcheminement": "VADENCOURT", - "nomCommune": "VADENCOURT" + "codePostal": "02260", + "codeCommune": "02584", + "libelleAcheminement": "PAPLEUX", + "nomCommune": "PAPLEUX" }, { - "codePostal": "05260", - "codeCommune": "05149", - "libelleAcheminement": "ST LEGER LES MELEZES", - "nomCommune": "ST LEGER LES MELEZES" + "codePostal": "15170", + "codeCommune": "15069", + "libelleAcheminement": "FERRIERES ST MARY", + "nomCommune": "FERRIERES ST MARY" }, { - "codePostal": "02370", - "codeCommune": "02758", - "libelleAcheminement": "VAILLY SUR AISNE", - "nomCommune": "VAILLY SUR AISNE" + "codePostal": "15160", + "codeCommune": "15253", + "libelleAcheminement": "VERNOLS", + "nomCommune": "VERNOLS" }, { - "codePostal": "05700", - "codeCommune": "05166", - "libelleAcheminement": "SERRES", - "nomCommune": "SERRES" + "codePostal": "02800", + "codeCommune": "02059", + "libelleAcheminement": "BEAUTOR", + "nomCommune": "BEAUTOR" }, { - "codePostal": "02140", - "codeCommune": "02759", - "libelleAcheminement": "LA VALLEE AU BLE", - "nomCommune": "LA VALLEE AU BLE" + "codePostal": "02210", + "codeCommune": "02585", + "libelleAcheminement": "PARCY ET TIGNY", + "nomCommune": "PARCY ET TIGNY" }, { - "codePostal": "05130", - "codeCommune": "05168", - "libelleAcheminement": "SIGOYER", - "nomCommune": "SIGOYER" + "codePostal": "15140", + "codeCommune": "15070", + "libelleAcheminement": "FONTANGES", + "nomCommune": "FONTANGES" }, { - "codePostal": "02510", - "codeCommune": "02779", - "libelleAcheminement": "VENEROLLES", - "nomCommune": "VENEROLLES" + "codePostal": "16130", + "codeCommune": "16012", + "libelleAcheminement": "ANGEAC CHAMPAGNE", + "nomCommune": "ANGEAC CHAMPAGNE" }, { - "codePostal": "05130", - "codeCommune": "05176", - "libelleAcheminement": "VALSERRES", - "nomCommune": "VALSERRES" + "codePostal": "02420", + "codeCommune": "02065", + "libelleAcheminement": "BELLICOURT", + "nomCommune": "BELLICOURT" }, { - "codePostal": "02200", - "codeCommune": "02780", - "libelleAcheminement": "VENIZEL", - "nomCommune": "VENIZEL" + "codePostal": "02840", + "codeCommune": "02587", + "libelleAcheminement": "PARFONDRU", + "nomCommune": "PARFONDRU" }, { - "codePostal": "06160", - "codeCommune": "06004", - "libelleAcheminement": "ANTIBES", - "nomCommune": "ANTIBES" + "codePostal": "15110", + "codeCommune": "15073", + "libelleAcheminement": "FRIDEFONT", + "nomCommune": "FRIDEFONT" }, { - "codePostal": "02130", - "codeCommune": "02794", - "libelleAcheminement": "VEZILLY", - "nomCommune": "VEZILLY" + "codePostal": "16120", + "codeCommune": "16013", + "libelleAcheminement": "ANGEAC CHARENTE", + "nomCommune": "ANGEAC CHARENTE" }, { - "codePostal": "06600", - "codeCommune": "06004", - "libelleAcheminement": "ANTIBES", - "nomCommune": "ANTIBES" + "codePostal": "02290", + "codeCommune": "02071", + "libelleAcheminement": "BERNY RIVIERE", + "nomCommune": "BERNY RIVIERE" }, { - "codePostal": "02340", - "codeCommune": "02802", - "libelleAcheminement": "LA VILLE AUX BOIS LES DIZY", - "nomCommune": "LA VILLE AUX BOIS LES DIZY" + "codePostal": "02330", + "codeCommune": "02590", + "libelleAcheminement": "PARGNY LA DHUYS", + "nomCommune": "PARGNY LA DHUYS" }, { - "codePostal": "06600", - "codeCommune": "06004", - "libelleAcheminement": "ANTIBES", - "nomCommune": "ANTIBES" + "codePostal": "15170", + "codeCommune": "15080", + "libelleAcheminement": "JOURSAC", + "nomCommune": "JOURSAC" }, { - "codePostal": "02160", - "codeCommune": "02803", - "libelleAcheminement": "LA VILLE AUX BOIS LES PONTAVERT", - "nomCommune": "LA VILLE AUX BOIS LES PONTAVERT" + "codePostal": "16300", + "codeCommune": "16014", + "libelleAcheminement": "ANGEDUC", + "nomCommune": "ANGEDUC" }, { - "codePostal": "06830", - "codeCommune": "06021", - "libelleAcheminement": "BONSON", - "nomCommune": "BONSON" + "codePostal": "02240", + "codeCommune": "02075", + "libelleAcheminement": "BERTHENICOURT", + "nomCommune": "BERTHENICOURT" }, { - "codePostal": "02300", - "codeCommune": "02807", - "libelleAcheminement": "VILLEQUIER AUMONT", - "nomCommune": "VILLEQUIER AUMONT" + "codePostal": "02270", + "codeCommune": "02591", + "libelleAcheminement": "PARGNY LES BOIS", + "nomCommune": "PARGNY LES BOIS" }, { - "codePostal": "06510", - "codeCommune": "06025", - "libelleAcheminement": "LE BROC", - "nomCommune": "LE BROC" + "codePostal": "15800", + "codeCommune": "15081", + "libelleAcheminement": "JOU SOUS MONJOU", + "nomCommune": "JOU SOUS MONJOU" }, { - "codePostal": "02600", - "codeCommune": "02812", - "libelleAcheminement": "VILLERS HELON", - "nomCommune": "VILLERS HELON" + "codePostal": "16290", + "codeCommune": "16019", + "libelleAcheminement": "ASNIERES SUR NOUERE", + "nomCommune": "ASNIERES SUR NOUERE" }, { - "codePostal": "06340", - "codeCommune": "06031", - "libelleAcheminement": "CANTARON", - "nomCommune": "CANTARON" + "codePostal": "02870", + "codeCommune": "02080", + "libelleAcheminement": "BESNY ET LOIZY", + "nomCommune": "BESNY ET LOIZY" }, { - "codePostal": "02140", - "codeCommune": "02826", - "libelleAcheminement": "VOULPAIX", - "nomCommune": "VOULPAIX" + "codePostal": "02240", + "codeCommune": "02592", + "libelleAcheminement": "PARPEVILLE", + "nomCommune": "PARPEVILLE" }, { - "codePostal": "06480", - "codeCommune": "06044", - "libelleAcheminement": "LA COLLE SUR LOUP", - "nomCommune": "LA COLLE SUR LOUP" + "codePostal": "15250", + "codeCommune": "15083", + "libelleAcheminement": "JUSSAC", + "nomCommune": "JUSSAC" }, { - "codePostal": "02250", - "codeCommune": "02827", - "libelleAcheminement": "VOYENNE", - "nomCommune": "VOYENNE" + "codePostal": "16140", + "codeCommune": "16027", + "libelleAcheminement": "BARBEZIERES", + "nomCommune": "BARBEZIERES" }, { - "codePostal": "06620", - "codeCommune": "06049", - "libelleAcheminement": "COURMES", - "nomCommune": "COURMES" + "codePostal": "02300", + "codeCommune": "02081", + "libelleAcheminement": "BETHANCOURT EN VAUX", + "nomCommune": "BETHANCOURT EN VAUX" }, { - "codePostal": "02830", - "codeCommune": "02831", - "libelleAcheminement": "WATIGNY", - "nomCommune": "WATIGNY" + "codePostal": "02200", + "codeCommune": "02607", + "libelleAcheminement": "PLOISY", + "nomCommune": "PLOISY" }, { - "codePostal": "06950", - "codeCommune": "06060", - "libelleAcheminement": "FALICON", - "nomCommune": "FALICON" + "codePostal": "15230", + "codeCommune": "15086", + "libelleAcheminement": "LACAPELLE BARRES", + "nomCommune": "LACAPELLE BARRES" }, { - "codePostal": "03120", - "codeCommune": "03006", - "libelleAcheminement": "ARFEUILLES", - "nomCommune": "ARFEUILLES" + "codePostal": "16450", + "codeCommune": "16035", + "libelleAcheminement": "BEAULIEU SUR SONNETTE", + "nomCommune": "BEAULIEU SUR SONNETTE" }, { - "codePostal": "06610", - "codeCommune": "06065", - "libelleAcheminement": "LA GAUDE", - "nomCommune": "LA GAUDE" + "codePostal": "02130", + "codeCommune": "02083", + "libelleAcheminement": "BEUVARDES", + "nomCommune": "BEUVARDES" }, { - "codePostal": "03120", - "codeCommune": "03017", - "libelleAcheminement": "BARRAIS BUSSOLLES", - "nomCommune": "BARRAIS BUSSOLLES" + "codePostal": "02490", + "codeCommune": "02614", + "libelleAcheminement": "PONTRU", + "nomCommune": "PONTRU" }, { - "codePostal": "06420", - "codeCommune": "06072", - "libelleAcheminement": "ILONSE", - "nomCommune": "ILONSE" + "codePostal": "15120", + "codeCommune": "15087", + "libelleAcheminement": "LACAPELLE DEL FRAISSE", + "nomCommune": "LACAPELLE DEL FRAISSE" }, { - "codePostal": "03120", - "codeCommune": "03028", - "libelleAcheminement": "BILLEZOIS", - "nomCommune": "BILLEZOIS" + "codePostal": "16700", + "codeCommune": "16039", + "libelleAcheminement": "BERNAC", + "nomCommune": "BERNAC" }, { - "codePostal": "06670", - "codeCommune": "06075", - "libelleAcheminement": "LEVENS", - "nomCommune": "LEVENS" + "codePostal": "02400", + "codeCommune": "02085", + "libelleAcheminement": "BEZU ST GERMAIN", + "nomCommune": "BEZU ST GERMAIN" }, { - "codePostal": "03260", - "codeCommune": "03029", - "libelleAcheminement": "BILLY", - "nomCommune": "BILLY" + "codePostal": "02190", + "codeCommune": "02626", + "libelleAcheminement": "PROUVAIS", + "nomCommune": "PROUVAIS" }, { - "codePostal": "06420", - "codeCommune": "06080", - "libelleAcheminement": "MARIE", - "nomCommune": "MARIE" + "codePostal": "15160", + "codeCommune": "15091", + "libelleAcheminement": "LANDEYRAT", + "nomCommune": "LANDEYRAT" }, { - "codePostal": "03210", - "codeCommune": "03039", - "libelleAcheminement": "BRESNAY", - "nomCommune": "BRESNAY" + "codePostal": "16480", + "codeCommune": "16040", + "libelleAcheminement": "BERNEUIL", + "nomCommune": "BERNEUIL" }, { - "codePostal": "06370", - "codeCommune": "06084", - "libelleAcheminement": "MOUANS SARTOUX", - "nomCommune": "MOUANS SARTOUX" + "codePostal": "02210", + "codeCommune": "02090", + "libelleAcheminement": "BILLY SUR OURCQ", + "nomCommune": "BILLY SUR OURCQ" }, { - "codePostal": "03500", - "codeCommune": "03049", - "libelleAcheminement": "CESSET", - "nomCommune": "CESSET" + "codePostal": "02300", + "codeCommune": "02631", + "libelleAcheminement": "QUIERZY", + "nomCommune": "QUIERZY" }, { - "codePostal": "06250", - "codeCommune": "06085", - "libelleAcheminement": "MOUGINS", - "nomCommune": "MOUGINS" + "codePostal": "15270", + "codeCommune": "15092", + "libelleAcheminement": "LANOBRE", + "nomCommune": "LANOBRE" }, { - "codePostal": "03340", - "codeCommune": "03054", - "libelleAcheminement": "CHAPEAU", - "nomCommune": "CHAPEAU" + "codePostal": "16140", + "codeCommune": "16042", + "libelleAcheminement": "BESSE", + "nomCommune": "BESSE" }, { - "codePostal": "06100", - "codeCommune": "06088", - "libelleAcheminement": "NICE", - "nomCommune": "NICE" + "codePostal": "02160", + "codeCommune": "02091", + "libelleAcheminement": "BLANZY LES FISMES", + "nomCommune": "BLANZY LES FISMES" }, { - "codePostal": "03300", - "codeCommune": "03056", - "libelleAcheminement": "LA CHAPELLE", - "nomCommune": "LA CHAPELLE" + "codePostal": "02380", + "codeCommune": "02632", + "libelleAcheminement": "QUINCY BASSE", + "nomCommune": "QUINCY BASSE" }, { - "codePostal": "06200", - "codeCommune": "06088", - "libelleAcheminement": "NICE", - "nomCommune": "NICE" + "codePostal": "15500", + "codeCommune": "15097", + "libelleAcheminement": "LASTIC", + "nomCommune": "LASTIC" }, { - "codePostal": "03230", - "codeCommune": "03057", - "libelleAcheminement": "LA CHAPELLE AUX CHASSES", - "nomCommune": "LA CHAPELLE AUX CHASSES" + "codePostal": "16320", + "codeCommune": "16047", + "libelleAcheminement": "BLANZAGUET ST CYBARD", + "nomCommune": "BLANZAGUET ST CYBARD" }, { - "codePostal": "06200", - "codeCommune": "06088", - "libelleAcheminement": "NICE", - "nomCommune": "NICE" + "codePostal": "02350", + "codeCommune": "02097", + "libelleAcheminement": "BONCOURT", + "nomCommune": "BONCOURT" }, { - "codePostal": "03110", - "codeCommune": "03060", - "libelleAcheminement": "CHARMEIL", - "nomCommune": "CHARMEIL" + "codePostal": "02110", + "codeCommune": "02635", + "libelleAcheminement": "RAMICOURT", + "nomCommune": "RAMICOURT" }, { - "codePostal": "06470", - "codeCommune": "06094", - "libelleAcheminement": "PEONE", - "nomCommune": "PEONE" + "codePostal": "15600", + "codeCommune": "15104", + "libelleAcheminement": "LEYNHAC", + "nomCommune": "LEYNHAC" }, { - "codePostal": "03220", - "codeCommune": "03067", - "libelleAcheminement": "CHATELPERRON", - "nomCommune": "CHATELPERRON" + "codePostal": "16390", + "codeCommune": "16049", + "libelleAcheminement": "BONNES", + "nomCommune": "BONNES" }, { - "codePostal": "06450", - "codeCommune": "06103", - "libelleAcheminement": "ROQUEBILLIERE", - "nomCommune": "ROQUEBILLIERE" + "codePostal": "02220", + "codeCommune": "02110", + "libelleAcheminement": "BRAINE", + "nomCommune": "BRAINE" }, { - "codePostal": "03330", - "codeCommune": "03077", - "libelleAcheminement": "CHIRAT L EGLISE", - "nomCommune": "CHIRAT L EGLISE" + "codePostal": "02240", + "codeCommune": "02636", + "libelleAcheminement": "REGNY", + "nomCommune": "REGNY" }, { - "codePostal": "06330", - "codeCommune": "06105", - "libelleAcheminement": "ROQUEFORT LES PINS", - "nomCommune": "ROQUEFORT LES PINS" + "codePostal": "15110", + "codeCommune": "15106", + "libelleAcheminement": "LIEUTADES", + "nomCommune": "LIEUTADES" }, { - "codePostal": "03220", - "codeCommune": "03079", - "libelleAcheminement": "CINDRE", - "nomCommune": "CINDRE" + "codePostal": "16410", + "codeCommune": "16055", + "libelleAcheminement": "BOUEX", + "nomCommune": "BOUEX" }, { - "codePostal": "06910", - "codeCommune": "06107", - "libelleAcheminement": "LA ROQUE EN PROVENCE", - "nomCommune": "LA ROQUE EN PROVENCE" + "codePostal": "02110", + "codeCommune": "02112", + "libelleAcheminement": "BRANCOURT LE GRAND", + "nomCommune": "BRANCOURT LE GRAND" }, { - "codePostal": "03600", - "codeCommune": "03082", - "libelleAcheminement": "COMMENTRY", - "nomCommune": "COMMENTRY" + "codePostal": "02270", + "codeCommune": "02638", + "libelleAcheminement": "REMIES", + "nomCommune": "REMIES" }, { - "codePostal": "06670", - "codeCommune": "06109", - "libelleAcheminement": "LA ROQUETTE SUR VAR", - "nomCommune": "LA ROQUETTE SUR VAR" + "codePostal": "15320", + "codeCommune": "15107", + "libelleAcheminement": "LORCIERES", + "nomCommune": "LORCIERES" }, { - "codePostal": "03500", - "codeCommune": "03083", - "libelleAcheminement": "CONTIGNY", - "nomCommune": "CONTIGNY" + "codePostal": "16590", + "codeCommune": "16061", + "libelleAcheminement": "BRIE", + "nomCommune": "BRIE" }, { - "codePostal": "06420", - "codeCommune": "06111", - "libelleAcheminement": "ROURE", - "nomCommune": "ROURE" + "codePostal": "02240", + "codeCommune": "02123", + "libelleAcheminement": "BRISSAY CHOIGNY", + "nomCommune": "BRISSAY CHOIGNY" }, { - "codePostal": "03000", - "codeCommune": "03085", - "libelleAcheminement": "COULANDON", - "nomCommune": "COULANDON" + "codePostal": "02440", + "codeCommune": "02639", + "libelleAcheminement": "REMIGNY", + "nomCommune": "REMIGNY" }, { - "codePostal": "06730", - "codeCommune": "06114", - "libelleAcheminement": "ST ANDRE DE LA ROCHE", - "nomCommune": "ST ANDRE DE LA ROCHE" + "codePostal": "15590", + "codeCommune": "15113", + "libelleAcheminement": "MANDAILLES ST JULIEN", + "nomCommune": "MANDAILLES ST JULIEN" }, { - "codePostal": "03470", - "codeCommune": "03086", - "libelleAcheminement": "COULANGES", - "nomCommune": "COULANGES" + "codePostal": "16480", + "codeCommune": "16066", + "libelleAcheminement": "BROSSAC", + "nomCommune": "BROSSAC" }, { - "codePostal": "06850", - "codeCommune": "06116", - "libelleAcheminement": "ST AUBAN", - "nomCommune": "ST AUBAN" + "codePostal": "02220", + "codeCommune": "02129", + "libelleAcheminement": "BRUYS", + "nomCommune": "BRUYS" }, { - "codePostal": "03150", - "codeCommune": "03091", - "libelleAcheminement": "CRECHY", - "nomCommune": "CRECHY" + "codePostal": "02850", + "codeCommune": "02645", + "libelleAcheminement": "REUILLY SAUVIGNY", + "nomCommune": "REUILLY SAUVIGNY" }, { - "codePostal": "06660", - "codeCommune": "06120", - "libelleAcheminement": "ST ETIENNE DE TINEE", - "nomCommune": "ST ETIENNE DE TINEE" + "codePostal": "15600", + "codeCommune": "15122", + "libelleAcheminement": "MAURS", + "nomCommune": "MAURS" }, { - "codePostal": "03300", - "codeCommune": "03095", - "libelleAcheminement": "CUSSET", - "nomCommune": "CUSSET" + "codePostal": "16230", + "codeCommune": "16069", + "libelleAcheminement": "CELLETTES", + "nomCommune": "CELLETTES" }, { - "codePostal": "06640", - "codeCommune": "06122", - "libelleAcheminement": "ST JEANNET", - "nomCommune": "ST JEANNET" + "codePostal": "02500", + "codeCommune": "02130", + "libelleAcheminement": "BUCILLY", + "nomCommune": "BUCILLY" }, { - "codePostal": "03240", - "codeCommune": "03099", - "libelleAcheminement": "DEUX CHAISES", - "nomCommune": "DEUX CHAISES" + "codePostal": "02160", + "codeCommune": "02656", + "libelleAcheminement": "ROUCY", + "nomCommune": "ROUCY" }, { - "codePostal": "06260", - "codeCommune": "06124", - "libelleAcheminement": "ST LEGER", - "nomCommune": "ST LEGER" + "codePostal": "15500", + "codeCommune": "15126", + "libelleAcheminement": "MOLEDES", + "nomCommune": "MOLEDES" }, { - "codePostal": "03290", - "codeCommune": "03100", - "libelleAcheminement": "DIOU", - "nomCommune": "DIOU" + "codePostal": "16210", + "codeCommune": "16073", + "libelleAcheminement": "CHALAIS", + "nomCommune": "CHALAIS" }, { - "codePostal": "06450", - "codeCommune": "06127", - "libelleAcheminement": "ST MARTIN VESUBIE", - "nomCommune": "ST MARTIN VESUBIE" + "codePostal": "02870", + "codeCommune": "02132", + "libelleAcheminement": "BUCY LES CERNY", + "nomCommune": "BUCY LES CERNY" }, { - "codePostal": "03410", - "codeCommune": "03101", - "libelleAcheminement": "DOMERAT", - "nomCommune": "DOMERAT" + "codePostal": "02100", + "codeCommune": "02659", + "libelleAcheminement": "ROUVROY", + "nomCommune": "ROUVROY" }, { - "codePostal": "06470", - "codeCommune": "06133", - "libelleAcheminement": "SAUZE", - "nomCommune": "SAUZE" + "codePostal": "15240", + "codeCommune": "15131", + "libelleAcheminement": "LE MONTEIL", + "nomCommune": "LE MONTEIL" }, { - "codePostal": "03170", - "codeCommune": "03104", - "libelleAcheminement": "DOYET", - "nomCommune": "DOYET" + "codePostal": "16210", + "codeCommune": "16073", + "libelleAcheminement": "CHALAIS", + "nomCommune": "CHALAIS" }, { - "codePostal": "06750", - "codeCommune": "06134", - "libelleAcheminement": "SERANON", - "nomCommune": "SERANON" + "codePostal": "02350", + "codeCommune": "02133", + "libelleAcheminement": "BUCY LES PIERREPONT", + "nomCommune": "BUCY LES PIERREPONT" }, { - "codePostal": "03330", - "codeCommune": "03108", - "libelleAcheminement": "ECHASSIERES", - "nomCommune": "ECHASSIERES" + "codePostal": "02360", + "codeCommune": "02660", + "libelleAcheminement": "ROUVROY SUR SERRE", + "nomCommune": "ROUVROY SUR SERRE" }, { - "codePostal": "06380", - "codeCommune": "06136", - "libelleAcheminement": "SOSPEL", - "nomCommune": "SOSPEL" + "codePostal": "15380", + "codeCommune": "15137", + "libelleAcheminement": "MOUSSAGES", + "nomCommune": "MOUSSAGES" }, { - "codePostal": "03340", - "codeCommune": "03114", - "libelleAcheminement": "LA FERTE HAUTERIVE", - "nomCommune": "LA FERTE HAUTERIVE" + "codePostal": "16140", + "codeCommune": "16081", + "libelleAcheminement": "LA CHAPELLE", + "nomCommune": "LA CHAPELLE" }, { - "codePostal": "06320", - "codeCommune": "06150", - "libelleAcheminement": "LA TURBIE", - "nomCommune": "LA TURBIE" + "codePostal": "02810", + "codeCommune": "02137", + "libelleAcheminement": "BUSSIARES", + "nomCommune": "BUSSIARES" }, { - "codePostal": "03140", - "codeCommune": "03115", - "libelleAcheminement": "FLEURIEL", - "nomCommune": "FLEURIEL" + "codePostal": "02210", + "codeCommune": "02665", + "libelleAcheminement": "GRAND ROZOY", + "nomCommune": "GRAND ROZOY" }, { - "codePostal": "06450", - "codeCommune": "06151", - "libelleAcheminement": "UTELLE", - "nomCommune": "UTELLE" + "codePostal": "15430", + "codeCommune": "15148", + "libelleAcheminement": "PAULHAC", + "nomCommune": "PAULHAC" }, { - "codePostal": "03160", - "codeCommune": "03117", - "libelleAcheminement": "FRANCHESSE", - "nomCommune": "FRANCHESSE" + "codePostal": "16320", + "codeCommune": "16082", + "libelleAcheminement": "BOISNE LA TUDE", + "nomCommune": "BOISNE LA TUDE" }, { - "codePostal": "06140", - "codeCommune": "06157", - "libelleAcheminement": "VENCE", - "nomCommune": "VENCE" + "codePostal": "02420", + "codeCommune": "02143", + "libelleAcheminement": "LE CATELET", + "nomCommune": "LE CATELET" }, { - "codePostal": "03230", - "codeCommune": "03120", - "libelleAcheminement": "GARNAT SUR ENGIEVRE", - "nomCommune": "GARNAT SUR ENGIEVRE" + "codePostal": "02290", + "codeCommune": "02673", + "libelleAcheminement": "ST CHRISTOPHE A BERRY", + "nomCommune": "ST CHRISTOPHE A BERRY" }, { - "codePostal": "06430", - "codeCommune": "06162", - "libelleAcheminement": "LA BRIGUE", - "nomCommune": "LA BRIGUE" + "codePostal": "15500", + "codeCommune": "15158", + "libelleAcheminement": "RAGEADE", + "nomCommune": "RAGEADE" }, { - "codePostal": "03400", - "codeCommune": "03121", - "libelleAcheminement": "GENNETINES", - "nomCommune": "GENNETINES" + "codePostal": "16380", + "codeCommune": "16084", + "libelleAcheminement": "CHARRAS", + "nomCommune": "CHARRAS" }, { - "codePostal": "07160", - "codeCommune": "07001", - "libelleAcheminement": "ACCONS", - "nomCommune": "ACCONS" + "codePostal": "02300", + "codeCommune": "02145", + "libelleAcheminement": "CAUMONT", + "nomCommune": "CAUMONT" }, { - "codePostal": "03380", - "codeCommune": "03128", - "libelleAcheminement": "HURIEL", - "nomCommune": "HURIEL" + "codePostal": "02340", + "codeCommune": "02678", + "libelleAcheminement": "STE GENEVIEVE", + "nomCommune": "STE GENEVIEVE" }, { - "codePostal": "07530", - "codeCommune": "07003", - "libelleAcheminement": "AIZAC", - "nomCommune": "AIZAC" + "codePostal": "15800", + "codeCommune": "15159", + "libelleAcheminement": "RAULHAC", + "nomCommune": "RAULHAC" }, { - "codePostal": "03120", - "codeCommune": "03131", - "libelleAcheminement": "ISSERPENT", - "nomCommune": "ISSERPENT" + "codePostal": "16200", + "codeCommune": "16088", + "libelleAcheminement": "CHASSORS", + "nomCommune": "CHASSORS" }, { - "codePostal": "07000", - "codeCommune": "07004", - "libelleAcheminement": "AJOUX", - "nomCommune": "AJOUX" + "codePostal": "02240", + "codeCommune": "02149", + "libelleAcheminement": "CERIZY", + "nomCommune": "CERIZY" }, { - "codePostal": "03450", - "codeCommune": "03135", - "libelleAcheminement": "LALIZOLLE", - "nomCommune": "LALIZOLLE" + "codePostal": "02410", + "codeCommune": "02680", + "libelleAcheminement": "ST GOBAIN", + "nomCommune": "ST GOBAIN" }, { - "codePostal": "07190", - "codeCommune": "07006", - "libelleAcheminement": "ALBON D ARDECHE", - "nomCommune": "ALBON D ARDECHE" + "codePostal": "15190", + "codeCommune": "15173", + "libelleAcheminement": "ST BONNET DE CONDAT", + "nomCommune": "ST BONNET DE CONDAT" }, { - "codePostal": "03380", - "codeCommune": "03136", - "libelleAcheminement": "LAMAIDS", - "nomCommune": "LAMAIDS" + "codePostal": "16440", + "codeCommune": "16101", + "libelleAcheminement": "CLAIX", + "nomCommune": "CLAIX" }, { - "codePostal": "07290", - "codeCommune": "07013", - "libelleAcheminement": "ARDOIX", - "nomCommune": "ARDOIX" + "codePostal": "02870", + "codeCommune": "02151", + "libelleAcheminement": "CERNY LES BUCY", + "nomCommune": "CERNY LES BUCY" }, { - "codePostal": "03150", - "codeCommune": "03137", - "libelleAcheminement": "LANGY", - "nomCommune": "LANGY" + "codePostal": "02600", + "codeCommune": "02687", + "libelleAcheminement": "ST PIERRE AIGLE", + "nomCommune": "ST PIERRE AIGLE" }, { - "codePostal": "07460", - "codeCommune": "07028", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "15310", + "codeCommune": "15175", + "libelleAcheminement": "ST CERNIN", + "nomCommune": "ST CERNIN" }, { - "codePostal": "03250", - "codeCommune": "03139", - "libelleAcheminement": "LAPRUGNE", - "nomCommune": "LAPRUGNE" + "codePostal": "16100", + "codeCommune": "16102", + "libelleAcheminement": "COGNAC", + "nomCommune": "COGNAC" }, { - "codePostal": "07580", - "codeCommune": "07032", - "libelleAcheminement": "BERZEME", - "nomCommune": "BERZEME" + "codePostal": "02220", + "codeCommune": "02152", + "libelleAcheminement": "CERSEUIL", + "nomCommune": "CERSEUIL" }, { - "codePostal": "03100", - "codeCommune": "03140", - "libelleAcheminement": "LAVAULT STE ANNE", - "nomCommune": "LAVAULT STE ANNE" + "codePostal": "02350", + "codeCommune": "02690", + "libelleAcheminement": "STE PREUVE", + "nomCommune": "STE PREUVE" }, { - "codePostal": "07150", - "codeCommune": "07033", - "libelleAcheminement": "BESSAS", - "nomCommune": "BESSAS" + "codePostal": "15800", + "codeCommune": "15180", + "libelleAcheminement": "ST CLEMENT", + "nomCommune": "ST CLEMENT" }, { - "codePostal": "03130", - "codeCommune": "03142", - "libelleAcheminement": "LENAX", - "nomCommune": "LENAX" + "codePostal": "16500", + "codeCommune": "16106", + "libelleAcheminement": "CONFOLENS", + "nomCommune": "CONFOLENS" }, { - "codePostal": "07270", - "codeCommune": "07040", - "libelleAcheminement": "BOUCIEU LE ROI", - "nomCommune": "BOUCIEU LE ROI" + "codePostal": "02270", + "codeCommune": "02156", + "libelleAcheminement": "CHALANDRY", + "nomCommune": "CHALANDRY" }, { - "codePostal": "03360", - "codeCommune": "03143", - "libelleAcheminement": "LETELON", - "nomCommune": "LETELON" + "codePostal": "02220", + "codeCommune": "02711", + "libelleAcheminement": "SERCHES", + "nomCommune": "SERCHES" }, { - "codePostal": "07160", - "codeCommune": "07049", - "libelleAcheminement": "LE CHAMBON", - "nomCommune": "LE CHAMBON" + "codePostal": "15130", + "codeCommune": "15183", + "libelleAcheminement": "ST ETIENNE DE CARLAT", + "nomCommune": "ST ETIENNE DE CARLAT" }, { - "codePostal": "03320", - "codeCommune": "03146", - "libelleAcheminement": "LIMOISE", - "nomCommune": "LIMOISE" + "codePostal": "16560", + "codeCommune": "16107", + "libelleAcheminement": "COULGENS", + "nomCommune": "COULGENS" }, { - "codePostal": "07310", - "codeCommune": "07054", - "libelleAcheminement": "CHANEAC", - "nomCommune": "CHANEAC" + "codePostal": "02670", + "codeCommune": "02159", + "libelleAcheminement": "CHAMPS", + "nomCommune": "CHAMPS" }, { - "codePostal": "03350", - "codeCommune": "03150", - "libelleAcheminement": "LOUROUX BOURBONNAIS", - "nomCommune": "LOUROUX BOURBONNAIS" + "codePostal": "02130", + "codeCommune": "02713", + "libelleAcheminement": "SERINGES ET NESLES", + "nomCommune": "SERINGES ET NESLES" }, { - "codePostal": "07340", - "codeCommune": "07056", - "libelleAcheminement": "CHARNAS", - "nomCommune": "CHARNAS" + "codePostal": "15600", + "codeCommune": "15184", + "libelleAcheminement": "ST ETIENNE DE MAURS", + "nomCommune": "ST ETIENNE DE MAURS" }, { - "codePostal": "03230", - "codeCommune": "03156", - "libelleAcheminement": "LUSIGNY", - "nomCommune": "LUSIGNY" + "codePostal": "16240", + "codeCommune": "16110", + "libelleAcheminement": "COURCOME", + "nomCommune": "COURCOME" }, { - "codePostal": "07160", - "codeCommune": "07064", - "libelleAcheminement": "LE CHEYLARD", - "nomCommune": "LE CHEYLARD" + "codePostal": "02310", + "codeCommune": "02163", + "libelleAcheminement": "CHARLY SUR MARNE", + "nomCommune": "CHARLY SUR MARNE" }, { - "codePostal": "03190", - "codeCommune": "03158", - "libelleAcheminement": "HAUT BOCAGE", - "nomCommune": "HAUT BOCAGE" + "codePostal": "02160", + "codeCommune": "02715", + "libelleAcheminement": "SERVAL", + "nomCommune": "SERVAL" }, { - "codePostal": "07000", - "codeCommune": "07072", - "libelleAcheminement": "COUX", - "nomCommune": "COUX" + "codePostal": "15100", + "codeCommune": "15187", + "libelleAcheminement": "ST FLOUR", + "nomCommune": "ST FLOUR" }, { - "codePostal": "03190", - "codeCommune": "03158", - "libelleAcheminement": "HAUT BOCAGE", - "nomCommune": "HAUT BOCAGE" + "codePostal": "16190", + "codeCommune": "16111", + "libelleAcheminement": "COURGEAC", + "nomCommune": "COURGEAC" }, { - "codePostal": "07170", - "codeCommune": "07077", - "libelleAcheminement": "DARBRES", - "nomCommune": "DARBRES" + "codePostal": "02400", + "codeCommune": "02166", + "libelleAcheminement": "CHARTEVES", + "nomCommune": "CHARTEVES" }, { - "codePostal": "03600", - "codeCommune": "03159", - "libelleAcheminement": "MALICORNE", - "nomCommune": "MALICORNE" + "codePostal": "02160", + "codeCommune": "02730", + "libelleAcheminement": "SOUPIR", + "nomCommune": "SOUPIR" }, { - "codePostal": "07000", - "codeCommune": "07092", - "libelleAcheminement": "FREYSSENET", - "nomCommune": "FREYSSENET" + "codePostal": "15220", + "codeCommune": "15196", + "libelleAcheminement": "ST MAMET LA SALVETAT", + "nomCommune": "ST MAMET LA SALVETAT" }, { - "codePostal": "03260", - "codeCommune": "03160", - "libelleAcheminement": "MARCENAT", - "nomCommune": "MARCENAT" + "codePostal": "16210", + "codeCommune": "16117", + "libelleAcheminement": "CURAC", + "nomCommune": "CURAC" }, { - "codePostal": "07530", - "codeCommune": "07093", - "libelleAcheminement": "GENESTELLE", - "nomCommune": "GENESTELLE" + "codePostal": "02160", + "codeCommune": "02171", + "libelleAcheminement": "CHAUDARDES", + "nomCommune": "CHAUDARDES" }, { - "codePostal": "03250", - "codeCommune": "03165", - "libelleAcheminement": "LE MAYET DE MONTAGNE", - "nomCommune": "LE MAYET DE MONTAGNE" + "codePostal": "02700", + "codeCommune": "02738", + "libelleAcheminement": "TERGNIER", + "nomCommune": "TERGNIER" }, { - "codePostal": "07000", - "codeCommune": "07098", - "libelleAcheminement": "GOURDON", - "nomCommune": "GOURDON" + "codePostal": "15140", + "codeCommune": "15200", + "libelleAcheminement": "ST MARTIN CANTALES", + "nomCommune": "ST MARTIN CANTALES" }, { - "codePostal": "03420", - "codeCommune": "03167", - "libelleAcheminement": "MAZIRAT", - "nomCommune": "MAZIRAT" + "codePostal": "16140", + "codeCommune": "16122", + "libelleAcheminement": "EBREON", + "nomCommune": "EBREON" }, { - "codePostal": "07140", - "codeCommune": "07100", - "libelleAcheminement": "GRAVIERES", - "nomCommune": "GRAVIERES" + "codePostal": "02000", + "codeCommune": "02174", + "libelleAcheminement": "CHAVIGNON", + "nomCommune": "CHAVIGNON" }, { - "codePostal": "03300", - "codeCommune": "03174", - "libelleAcheminement": "MOLLES", - "nomCommune": "MOLLES" + "codePostal": "02880", + "codeCommune": "02739", + "libelleAcheminement": "TERNY SORNY", + "nomCommune": "TERNY SORNY" }, { - "codePostal": "07310", - "codeCommune": "07103", - "libelleAcheminement": "ST JULIEN D INTRES", - "nomCommune": "ST JULIEN D INTRES" + "codePostal": "15140", + "codeCommune": "15202", + "libelleAcheminement": "ST MARTIN VALMEROUX", + "nomCommune": "ST MARTIN VALMEROUX" }, { - "codePostal": "03500", - "codeCommune": "03176", - "libelleAcheminement": "MONETAY SUR ALLIER", - "nomCommune": "MONETAY SUR ALLIER" + "codePostal": "16490", + "codeCommune": "16128", + "libelleAcheminement": "EPENEDE", + "nomCommune": "EPENEDE" }, { - "codePostal": "07660", - "codeCommune": "07105", - "libelleAcheminement": "ISSANLAS", - "nomCommune": "ISSANLAS" + "codePostal": "02270", + "codeCommune": "02184", + "libelleAcheminement": "CHEVRESIS MONCEAU", + "nomCommune": "CHEVRESIS MONCEAU" }, { - "codePostal": "03130", - "codeCommune": "03181", - "libelleAcheminement": "MONTCOMBROUX LES MINES", - "nomCommune": "MONTCOMBROUX LES MINES" + "codePostal": "02300", + "codeCommune": "02750", + "libelleAcheminement": "TROSLY LOIRE", + "nomCommune": "TROSLY LOIRE" }, { - "codePostal": "07470", - "codeCommune": "07106", - "libelleAcheminement": "ISSARLES", - "nomCommune": "ISSARLES" + "codePostal": "15140", + "codeCommune": "15202", + "libelleAcheminement": "ST MARTIN VALMEROUX", + "nomCommune": "ST MARTIN VALMEROUX" }, { - "codePostal": "03170", - "codeCommune": "03189", - "libelleAcheminement": "MONTVICQ", - "nomCommune": "MONTVICQ" + "codePostal": "16150", + "codeCommune": "16134", + "libelleAcheminement": "EXIDEUIL SUR VIENNE", + "nomCommune": "EXIDEUIL SUR VIENNE" }, { - "codePostal": "07260", - "codeCommune": "07110", - "libelleAcheminement": "JOYEUSE", - "nomCommune": "JOYEUSE" + "codePostal": "02400", + "codeCommune": "02187", + "libelleAcheminement": "CHIERRY", + "nomCommune": "CHIERRY" }, { - "codePostal": "03210", - "codeCommune": "03202", - "libelleAcheminement": "NOYANT D ALLIER", - "nomCommune": "NOYANT D ALLIER" + "codePostal": "02300", + "codeCommune": "02754", + "libelleAcheminement": "UGNY LE GAY", + "nomCommune": "UGNY LE GAY" }, { - "codePostal": "07150", - "codeCommune": "07113", - "libelleAcheminement": "LABASTIDE DE VIRAC", - "nomCommune": "LABASTIDE DE VIRAC" + "codePostal": "15140", + "codeCommune": "15208", + "libelleAcheminement": "ST PROJET DE SALERS", + "nomCommune": "ST PROJET DE SALERS" }, { - "codePostal": "03130", - "codeCommune": "03208", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "16700", + "codeCommune": "16136", + "libelleAcheminement": "LA FAYE", + "nomCommune": "LA FAYE" }, { - "codePostal": "07570", - "codeCommune": "07114", - "libelleAcheminement": "LABATIE D ANDAURE", - "nomCommune": "LABATIE D ANDAURE" + "codePostal": "02880", + "codeCommune": "02190", + "libelleAcheminement": "CHIVRES VAL", + "nomCommune": "CHIVRES VAL" }, { - "codePostal": "03190", - "codeCommune": "03213", - "libelleAcheminement": "REUGNY", - "nomCommune": "REUGNY" + "codePostal": "02370", + "codeCommune": "02758", + "libelleAcheminement": "VAILLY SUR AISNE", + "nomCommune": "VAILLY SUR AISNE" }, { - "codePostal": "07200", - "codeCommune": "07116", - "libelleAcheminement": "LABEGUDE", - "nomCommune": "LABEGUDE" + "codePostal": "15190", + "codeCommune": "15213", + "libelleAcheminement": "ST SATURNIN", + "nomCommune": "ST SATURNIN" }, { - "codePostal": "03240", - "codeCommune": "03214", - "libelleAcheminement": "ROCLES", - "nomCommune": "ROCLES" + "codePostal": "16730", + "codeCommune": "16138", + "libelleAcheminement": "FLEAC", + "nomCommune": "FLEAC" }, { - "codePostal": "07220", - "codeCommune": "07133", - "libelleAcheminement": "LARNAS", - "nomCommune": "LARNAS" + "codePostal": "02130", + "codeCommune": "02193", + "libelleAcheminement": "CIERGES", + "nomCommune": "CIERGES" }, { - "codePostal": "03390", - "codeCommune": "03219", - "libelleAcheminement": "ST BONNET DE FOUR", - "nomCommune": "ST BONNET DE FOUR" + "codePostal": "02200", + "codeCommune": "02767", + "libelleAcheminement": "VAUXREZIS", + "nomCommune": "VAUXREZIS" }, { - "codePostal": "48250", - "codeCommune": "07136", - "libelleAcheminement": "LAVEYRUNE", - "nomCommune": "LAVEYRUNE" + "codePostal": "15100", + "codeCommune": "15232", + "libelleAcheminement": "TANAVELLE", + "nomCommune": "TANAVELLE" }, { - "codePostal": "03250", - "codeCommune": "03224", - "libelleAcheminement": "ST CLEMENT", - "nomCommune": "ST CLEMENT" + "codePostal": "16200", + "codeCommune": "16139", + "libelleAcheminement": "FLEURAC", + "nomCommune": "FLEURAC" }, { - "codePostal": "07170", - "codeCommune": "07138", - "libelleAcheminement": "LAVILLEDIEU", - "nomCommune": "LAVILLEDIEU" + "codePostal": "02000", + "codeCommune": "02196", + "libelleAcheminement": "CLACY ET THIERRET", + "nomCommune": "CLACY ET THIERRET" }, { - "codePostal": "03400", - "codeCommune": "03229", - "libelleAcheminement": "ST ENNEMOND", - "nomCommune": "ST ENNEMOND" + "codePostal": "02630", + "codeCommune": "02784", + "libelleAcheminement": "PETIT VERLY", + "nomCommune": "PETIT VERLY" }, { - "codePostal": "07200", - "codeCommune": "07141", - "libelleAcheminement": "LENTILLERES", - "nomCommune": "LENTILLERES" + "codePostal": "15400", + "codeCommune": "15246", + "libelleAcheminement": "VALETTE", + "nomCommune": "VALETTE" }, { - "codePostal": "03420", - "codeCommune": "03231", - "libelleAcheminement": "ST FARGEOL", - "nomCommune": "ST FARGEOL" + "codePostal": "16230", + "codeCommune": "16141", + "libelleAcheminement": "FONTENILLE", + "nomCommune": "FONTENILLE" }, { - "codePostal": "07340", - "codeCommune": "07143", - "libelleAcheminement": "LIMONY", - "nomCommune": "LIMONY" + "codePostal": "02210", + "codeCommune": "02203", + "libelleAcheminement": "COINCY", + "nomCommune": "COINCY" }, { - "codePostal": "03310", - "codeCommune": "03233", - "libelleAcheminement": "ST GENEST", - "nomCommune": "ST GENEST" + "codePostal": "02000", + "codeCommune": "02787", + "libelleAcheminement": "VERNEUIL SUR SERRE", + "nomCommune": "VERNEUIL SUR SERRE" }, { - "codePostal": "07110", - "codeCommune": "07144", - "libelleAcheminement": "LOUBARESSE", - "nomCommune": "LOUBARESSE" + "codePostal": "15380", + "codeCommune": "15249", + "libelleAcheminement": "LE VAULMIER", + "nomCommune": "LE VAULMIER" }, { - "codePostal": "03140", - "codeCommune": "03237", - "libelleAcheminement": "ST GERMAIN DE SALLES", - "nomCommune": "ST GERMAIN DE SALLES" + "codePostal": "16140", + "codeCommune": "16144", + "libelleAcheminement": "FOUQUEURE", + "nomCommune": "FOUQUEURE" }, { - "codePostal": "07400", - "codeCommune": "07157", - "libelleAcheminement": "MEYSSE", - "nomCommune": "MEYSSE" + "codePostal": "02220", + "codeCommune": "02224", + "libelleAcheminement": "COURCELLES SUR VESLE", + "nomCommune": "COURCELLES SUR VESLE" }, { - "codePostal": "03390", - "codeCommune": "03243", - "libelleAcheminement": "ST MARCEL EN MURAT", - "nomCommune": "ST MARCEL EN MURAT" + "codePostal": "02810", + "codeCommune": "02792", + "libelleAcheminement": "VEUILLY LA POTERIE", + "nomCommune": "VEUILLY LA POTERIE" }, { - "codePostal": "07140", - "codeCommune": "07163", - "libelleAcheminement": "MONTSELGUES", - "nomCommune": "MONTSELGUES" + "codePostal": "15100", + "codeCommune": "15251", + "libelleAcheminement": "VEDRINES ST LOUP", + "nomCommune": "VEDRINES ST LOUP" }, { - "codePostal": "03370", - "codeCommune": "03249", - "libelleAcheminement": "ST PALAIS", - "nomCommune": "ST PALAIS" + "codePostal": "16200", + "codeCommune": "16153", + "libelleAcheminement": "MAINXE GONDEVILLE", + "nomCommune": "MAINXE GONDEVILLE" }, { - "codePostal": "07160", - "codeCommune": "07165", - "libelleAcheminement": "BELSENTES", - "nomCommune": "BELSENTES" + "codePostal": "02220", + "codeCommune": "02230", + "libelleAcheminement": "COUVRELLES", + "nomCommune": "COUVRELLES" }, { - "codePostal": "03160", - "codeCommune": "03251", - "libelleAcheminement": "ST PLAISIR", - "nomCommune": "ST PLAISIR" + "codePostal": "02290", + "codeCommune": "02793", + "libelleAcheminement": "VEZAPONIN", + "nomCommune": "VEZAPONIN" }, { - "codePostal": "07150", - "codeCommune": "07168", - "libelleAcheminement": "ORGNAC L AVEN", - "nomCommune": "ORGNAC L AVEN" + "codePostal": "15130", + "codeCommune": "15255", + "libelleAcheminement": "VEZAC", + "nomCommune": "VEZAC" }, { - "codePostal": "03290", - "codeCommune": "03253", - "libelleAcheminement": "ST POURCAIN SUR BESBRE", - "nomCommune": "ST POURCAIN SUR BESBRE" + "codePostal": "16450", + "codeCommune": "16157", + "libelleAcheminement": "LE GRAND MADIEU", + "nomCommune": "LE GRAND MADIEU" }, { - "codePostal": "07450", - "codeCommune": "07173", - "libelleAcheminement": "PEREYRES", - "nomCommune": "PEREYRES" + "codePostal": "02600", + "codeCommune": "02232", + "libelleAcheminement": "COYOLLES", + "nomCommune": "COYOLLES" }, { - "codePostal": "03500", - "codeCommune": "03254", - "libelleAcheminement": "ST POURCAIN SUR SIOULE", - "nomCommune": "ST POURCAIN SUR SIOULE" + "codePostal": "02160", + "codeCommune": "02797", + "libelleAcheminement": "VIEL ARCY", + "nomCommune": "VIEL ARCY" }, { - "codePostal": "07230", - "codeCommune": "07176", - "libelleAcheminement": "PLANZOLLES", - "nomCommune": "PLANZOLLES" + "codePostal": "15160", + "codeCommune": "15256", + "libelleAcheminement": "VEZE", + "nomCommune": "VEZE" }, { - "codePostal": "03800", - "codeCommune": "03255", - "libelleAcheminement": "ST PRIEST D ANDELOT", - "nomCommune": "ST PRIEST D ANDELOT" + "codePostal": "16490", + "codeCommune": "16164", + "libelleAcheminement": "HIESSE", + "nomCommune": "HIESSE" }, { - "codePostal": "07000", - "codeCommune": "07179", - "libelleAcheminement": "POURCHERES", - "nomCommune": "POURCHERES" + "codePostal": "02650", + "codeCommune": "02239", + "libelleAcheminement": "CREZANCY", + "nomCommune": "CREZANCY" }, { - "codePostal": "03420", - "codeCommune": "03261", - "libelleAcheminement": "STE THERENCE", - "nomCommune": "STE THERENCE" + "codePostal": "02540", + "codeCommune": "02798", + "libelleAcheminement": "VIELS MAISONS", + "nomCommune": "VIELS MAISONS" }, { - "codePostal": "07120", - "codeCommune": "07183", - "libelleAcheminement": "PRADONS", - "nomCommune": "PRADONS" + "codePostal": "15130", + "codeCommune": "15257", + "libelleAcheminement": "VEZELS ROUSSY", + "nomCommune": "VEZELS ROUSSY" }, { - "codePostal": "03410", - "codeCommune": "03262", - "libelleAcheminement": "ST VICTOR", - "nomCommune": "ST VICTOR" + "codePostal": "16100", + "codeCommune": "16169", + "libelleAcheminement": "JAVREZAC", + "nomCommune": "JAVREZAC" }, { - "codePostal": "07110", - "codeCommune": "07187", - "libelleAcheminement": "PRUNET", - "nomCommune": "PRUNET" + "codePostal": "02120", + "codeCommune": "02244", + "libelleAcheminement": "CRUPILLY", + "nomCommune": "CRUPILLY" }, { - "codePostal": "03140", - "codeCommune": "03277", - "libelleAcheminement": "TARGET", - "nomCommune": "TARGET" + "codePostal": "02210", + "codeCommune": "02799", + "libelleAcheminement": "VIERZY", + "nomCommune": "VIERZY" }, { - "codePostal": "07400", - "codeCommune": "07191", - "libelleAcheminement": "ROCHEMAURE", - "nomCommune": "ROCHEMAURE" + "codePostal": "15800", + "codeCommune": "15258", + "libelleAcheminement": "VIC SUR CERE", + "nomCommune": "VIC SUR CERE" }, { - "codePostal": "03230", - "codeCommune": "03283", - "libelleAcheminement": "THIEL SUR ACOLIN", - "nomCommune": "THIEL SUR ACOLIN" + "codePostal": "16190", + "codeCommune": "16170", + "libelleAcheminement": "JUIGNAC", + "nomCommune": "JUIGNAC" }, { - "codePostal": "07310", - "codeCommune": "07195", - "libelleAcheminement": "LA ROCHETTE", - "nomCommune": "LA ROCHETTE" + "codePostal": "02880", + "codeCommune": "02245", + "libelleAcheminement": "CUFFIES", + "nomCommune": "CUFFIES" }, { - "codePostal": "03430", - "codeCommune": "03285", - "libelleAcheminement": "TORTEZAIS", - "nomCommune": "TORTEZAIS" + "codePostal": "02540", + "codeCommune": "02800", + "libelleAcheminement": "VIFFORT", + "nomCommune": "VIFFORT" }, { - "codePostal": "07110", - "codeCommune": "07196", - "libelleAcheminement": "ROCLES", - "nomCommune": "ROCLES" + "codePostal": "15220", + "codeCommune": "15264", + "libelleAcheminement": "VITRAC", + "nomCommune": "VITRAC" }, { - "codePostal": "03380", - "codeCommune": "03288", - "libelleAcheminement": "TREIGNAT", - "nomCommune": "TREIGNAT" + "codePostal": "16250", + "codeCommune": "16175", + "libelleAcheminement": "VAL DES VIGNES", + "nomCommune": "VAL DES VIGNES" }, { - "codePostal": "07100", - "codeCommune": "07197", - "libelleAcheminement": "ROIFFIEUX", - "nomCommune": "ROIFFIEUX" + "codePostal": "02220", + "codeCommune": "02249", + "libelleAcheminement": "CUIRY HOUSSE", + "nomCommune": "CUIRY HOUSSE" }, { - "codePostal": "03220", - "codeCommune": "03289", - "libelleAcheminement": "TRETEAU", - "nomCommune": "TRETEAU" + "codePostal": "02200", + "codeCommune": "02805", + "libelleAcheminement": "VILLENEUVE ST GERMAIN", + "nomCommune": "VILLENEUVE ST GERMAIN" }, { - "codePostal": "07210", - "codeCommune": "07219", - "libelleAcheminement": "ST BAUZILE", - "nomCommune": "ST BAUZILE" + "codePostal": "15210", + "codeCommune": "15265", + "libelleAcheminement": "YDES", + "nomCommune": "YDES" }, { - "codePostal": "03240", - "codeCommune": "03292", - "libelleAcheminement": "TRONGET", - "nomCommune": "TRONGET" + "codePostal": "16250", + "codeCommune": "16175", + "libelleAcheminement": "VAL DES VIGNES", + "nomCommune": "VAL DES VIGNES" }, { - "codePostal": "07160", - "codeCommune": "07220", - "libelleAcheminement": "ST CHRISTOL", - "nomCommune": "ST CHRISTOL" + "codePostal": "02220", + "codeCommune": "02255", + "libelleAcheminement": "CYS LA COMMUNE", + "nomCommune": "CYS LA COMMUNE" }, { - "codePostal": "03140", - "codeCommune": "03294", - "libelleAcheminement": "USSEL D ALLIER", - "nomCommune": "USSEL D ALLIER" + "codePostal": "02130", + "codeCommune": "02806", + "libelleAcheminement": "VILLENEUVE SUR FERE", + "nomCommune": "VILLENEUVE SUR FERE" }, { - "codePostal": "07200", - "codeCommune": "07230", - "libelleAcheminement": "ST ETIENNE DE BOULOGNE", - "nomCommune": "ST ETIENNE DE BOULOGNE" + "codePostal": "16490", + "codeCommune": "16009", + "libelleAcheminement": "AMBERNAC", + "nomCommune": "AMBERNAC" }, { - "codePostal": "03360", - "codeCommune": "03296", - "libelleAcheminement": "VALIGNY", - "nomCommune": "VALIGNY" + "codePostal": "16300", + "codeCommune": "16186", + "libelleAcheminement": "LIGNIERES AMBLEVILLE", + "nomCommune": "LIGNIERES AMBLEVILLE" }, { - "codePostal": "07590", - "codeCommune": "07232", - "libelleAcheminement": "ST ETIENNE DE LUGDARES", - "nomCommune": "ST ETIENNE DE LUGDARES" + "codePostal": "02800", + "codeCommune": "02260", + "libelleAcheminement": "DANIZY", + "nomCommune": "DANIZY" }, { - "codePostal": "03150", - "codeCommune": "03298", - "libelleAcheminement": "VARENNES SUR ALLIER", - "nomCommune": "VARENNES SUR ALLIER" + "codePostal": "02420", + "codeCommune": "02808", + "libelleAcheminement": "VILLERET", + "nomCommune": "VILLERET" }, { - "codePostal": "07510", - "codeCommune": "07235", - "libelleAcheminement": "STE EULALIE", - "nomCommune": "STE EULALIE" + "codePostal": "16390", + "codeCommune": "16020", + "libelleAcheminement": "AUBETERRE SUR DRONNE", + "nomCommune": "AUBETERRE SUR DRONNE" }, { - "codePostal": "03220", - "codeCommune": "03300", - "libelleAcheminement": "VAUMAS", - "nomCommune": "VAUMAS" + "codePostal": "16100", + "codeCommune": "16193", + "libelleAcheminement": "LOUZAC ST ANDRE", + "nomCommune": "LOUZAC ST ANDRE" }, { - "codePostal": "07360", - "codeCommune": "07237", - "libelleAcheminement": "ST FORTUNAT SUR EYRIEUX", - "nomCommune": "ST FORTUNAT SUR EYRIEUX" + "codePostal": "02600", + "codeCommune": "02267", + "libelleAcheminement": "DOMMIERS", + "nomCommune": "DOMMIERS" }, { - "codePostal": "03200", - "codeCommune": "03310", - "libelleAcheminement": "VICHY", - "nomCommune": "VICHY" + "codePostal": "02590", + "codeCommune": "02815", + "libelleAcheminement": "VILLERS ST CHRISTOPHE", + "nomCommune": "VILLERS ST CHRISTOPHE" }, { - "codePostal": "07240", - "codeCommune": "07244", - "libelleAcheminement": "ST JEAN CHAMBRE", - "nomCommune": "ST JEAN CHAMBRE" + "codePostal": "16700", + "codeCommune": "16031", + "libelleAcheminement": "BARRO", + "nomCommune": "BARRO" }, { - "codePostal": "03450", - "codeCommune": "03311", - "libelleAcheminement": "VICQ", - "nomCommune": "VICQ" + "codePostal": "16450", + "codeCommune": "16195", + "libelleAcheminement": "LUSSAC", + "nomCommune": "LUSSAC" }, { - "codePostal": "07580", - "codeCommune": "07247", - "libelleAcheminement": "ST JEAN LE CENTENIER", - "nomCommune": "ST JEAN LE CENTENIER" + "codePostal": "02310", + "codeCommune": "02268", + "libelleAcheminement": "DOMPTIN", + "nomCommune": "DOMPTIN" }, { - "codePostal": "03370", - "codeCommune": "03317", - "libelleAcheminement": "VIPLAIX", - "nomCommune": "VIPLAIX" + "codePostal": "02220", + "codeCommune": "02817", + "libelleAcheminement": "VILLE SAVOYE", + "nomCommune": "VILLE SAVOYE" }, { - "codePostal": "07190", - "codeCommune": "07253", - "libelleAcheminement": "ST JULIEN DU GUA", - "nomCommune": "ST JULIEN DU GUA" + "codePostal": "16350", + "codeCommune": "16038", + "libelleAcheminement": "BENEST", + "nomCommune": "BENEST" }, { - "codePostal": "03140", - "codeCommune": "03319", - "libelleAcheminement": "VOUSSAC", - "nomCommune": "VOUSSAC" + "codePostal": "16600", + "codeCommune": "16199", + "libelleAcheminement": "MAGNAC SUR TOUVRE", + "nomCommune": "MAGNAC SUR TOUVRE" }, { - "codePostal": "07800", - "codeCommune": "07261", - "libelleAcheminement": "ST LAURENT DU PAPE", - "nomCommune": "ST LAURENT DU PAPE" + "codePostal": "02450", + "codeCommune": "02269", + "libelleAcheminement": "DORENGT", + "nomCommune": "DORENGT" }, { - "codePostal": "04400", - "codeCommune": "04019", - "libelleAcheminement": "BARCELONNETTE", - "nomCommune": "BARCELONNETTE" + "codePostal": "02860", + "codeCommune": "02824", + "libelleAcheminement": "VORGES", + "nomCommune": "VORGES" }, { - "codePostal": "07310", - "codeCommune": "07267", - "libelleAcheminement": "ST MARTIAL", - "nomCommune": "ST MARTIAL" + "codePostal": "16250", + "codeCommune": "16041", + "libelleAcheminement": "BESSAC", + "nomCommune": "BESSAC" }, { - "codePostal": "04380", - "codeCommune": "04021", - "libelleAcheminement": "BARRAS", - "nomCommune": "BARRAS" + "codePostal": "16230", + "codeCommune": "16200", + "libelleAcheminement": "MAINE DE BOIXE", + "nomCommune": "MAINE DE BOIXE" }, { - "codePostal": "07310", - "codeCommune": "07269", - "libelleAcheminement": "ST MARTIN DE VALAMAS", - "nomCommune": "ST MARTIN DE VALAMAS" + "codePostal": "02350", + "codeCommune": "02274", + "libelleAcheminement": "EBOULEAU", + "nomCommune": "EBOULEAU" }, { - "codePostal": "04250", - "codeCommune": "04023", - "libelleAcheminement": "BAYONS", - "nomCommune": "BAYONS" + "codePostal": "02880", + "codeCommune": "02829", + "libelleAcheminement": "VUILLERY", + "nomCommune": "VUILLERY" }, { - "codePostal": "07170", - "codeCommune": "07273", - "libelleAcheminement": "ST MAURICE D IBIE", - "nomCommune": "ST MAURICE D IBIE" + "codePostal": "16250", + "codeCommune": "16046", + "libelleAcheminement": "COTEAUX DU BLANZACAIS", + "nomCommune": "COTEAUX DU BLANZACAIS" }, { - "codePostal": "04250", - "codeCommune": "04023", - "libelleAcheminement": "BAYONS", - "nomCommune": "BAYONS" + "codePostal": "16120", + "codeCommune": "16204", + "libelleAcheminement": "BELLEVIGNE", + "nomCommune": "BELLEVIGNE" }, { - "codePostal": "07260", - "codeCommune": "07275", - "libelleAcheminement": "ST MELANY", - "nomCommune": "ST MELANY" + "codePostal": "02400", + "codeCommune": "02280", + "libelleAcheminement": "EPIEDS", + "nomCommune": "EPIEDS" }, { - "codePostal": "04420", - "codeCommune": "04024", - "libelleAcheminement": "BEAUJEU", - "nomCommune": "BEAUJEU" + "codePostal": "02500", + "codeCommune": "02833", + "libelleAcheminement": "WIMY", + "nomCommune": "WIMY" }, { - "codePostal": "07200", - "codeCommune": "07277", - "libelleAcheminement": "ST MICHEL DE BOULOGNE", - "nomCommune": "ST MICHEL DE BOULOGNE" + "codePostal": "16250", + "codeCommune": "16046", + "libelleAcheminement": "COTEAUX DU BLANZACAIS", + "nomCommune": "COTEAUX DU BLANZACAIS" }, { - "codePostal": "04340", - "codeCommune": "04033", - "libelleAcheminement": "UBAYE SERRE PONCON", - "nomCommune": "UBAYE SERRE PONCON" + "codePostal": "16140", + "codeCommune": "16221", + "libelleAcheminement": "MONS", + "nomCommune": "MONS" }, { - "codePostal": "07360", - "codeCommune": "07278", - "libelleAcheminement": "ST MICHEL DE CHABRILLANOUX", - "nomCommune": "ST MICHEL DE CHABRILLANOUX" + "codePostal": "02420", + "codeCommune": "02291", + "libelleAcheminement": "ESTREES", + "nomCommune": "ESTREES" }, { - "codePostal": "04120", - "codeCommune": "04039", - "libelleAcheminement": "CASTELLANE", - "nomCommune": "CASTELLANE" + "codePostal": "03200", + "codeCommune": "03001", + "libelleAcheminement": "ABREST", + "nomCommune": "ABREST" }, { - "codePostal": "07220", - "codeCommune": "07300", - "libelleAcheminement": "ST THOME", - "nomCommune": "ST THOME" + "codePostal": "16480", + "codeCommune": "16048", + "libelleAcheminement": "BOISBRETEAU", + "nomCommune": "BOISBRETEAU" }, { - "codePostal": "04320", - "codeCommune": "04042", - "libelleAcheminement": "CASTELLET LES SAUSSES", - "nomCommune": "CASTELLET LES SAUSSES" + "codePostal": "16310", + "codeCommune": "16225", + "libelleAcheminement": "MONTEMBOEUF", + "nomCommune": "MONTEMBOEUF" }, { - "codePostal": "07610", - "codeCommune": "07312", - "libelleAcheminement": "SECHERAS", - "nomCommune": "SECHERAS" + "codePostal": "02400", + "codeCommune": "02297", + "libelleAcheminement": "ETREPILLY", + "nomCommune": "ETREPILLY" }, { - "codePostal": "04280", - "codeCommune": "04045", - "libelleAcheminement": "CERESTE", - "nomCommune": "CERESTE" + "codePostal": "03250", + "codeCommune": "03008", + "libelleAcheminement": "ARRONNES", + "nomCommune": "ARRONNES" }, { - "codePostal": "07340", - "codeCommune": "07313", - "libelleAcheminement": "SERRIERES", - "nomCommune": "SERRIERES" + "codePostal": "16300", + "codeCommune": "16062", + "libelleAcheminement": "BRIE SOUS BARBEZIEUX", + "nomCommune": "BRIE SOUS BARBEZIEUX" }, { - "codePostal": "04660", - "codeCommune": "04047", - "libelleAcheminement": "CHAMPTERCIER", - "nomCommune": "CHAMPTERCIER" + "codePostal": "16120", + "codeCommune": "16233", + "libelleAcheminement": "MOSNAC ST SIMEUX", + "nomCommune": "MOSNAC ST SIMEUX" }, { - "codePostal": "07140", - "codeCommune": "07334", - "libelleAcheminement": "LES VANS", - "nomCommune": "LES VANS" + "codePostal": "02100", + "codeCommune": "02303", + "libelleAcheminement": "FAYET", + "nomCommune": "FAYET" }, { - "codePostal": "04600", - "codeCommune": "04049", - "libelleAcheminement": "CHATEAU ARNOUX ST AUBAN", - "nomCommune": "CHATEAU ARNOUX ST AUBAN" + "codePostal": "03210", + "codeCommune": "03012", + "libelleAcheminement": "AUTRY ISSARDS", + "nomCommune": "AUTRY ISSARDS" }, { - "codePostal": "07140", - "codeCommune": "07334", - "libelleAcheminement": "LES VANS", - "nomCommune": "LES VANS" + "codePostal": "16420", + "codeCommune": "16064", + "libelleAcheminement": "BRIGUEUIL", + "nomCommune": "BRIGUEUIL" }, { - "codePostal": "04300", - "codeCommune": "04068", - "libelleAcheminement": "DAUPHIN", - "nomCommune": "DAUPHIN" + "codePostal": "16290", + "codeCommune": "16234", + "libelleAcheminement": "MOULIDARS", + "nomCommune": "MOULIDARS" }, { - "codePostal": "07430", - "codeCommune": "07337", - "libelleAcheminement": "VERNOSC LES ANNONAY", - "nomCommune": "VERNOSC LES ANNONAY" + "codePostal": "02460", + "codeCommune": "02307", + "libelleAcheminement": "LA FERTE MILON", + "nomCommune": "LA FERTE MILON" }, { - "codePostal": "04120", - "codeCommune": "04069", - "libelleAcheminement": "DEMANDOLX", - "nomCommune": "DEMANDOLX" + "codePostal": "03140", + "codeCommune": "03016", + "libelleAcheminement": "BARBERIER", + "nomCommune": "BARBERIER" }, { - "codePostal": "07110", - "codeCommune": "07343", - "libelleAcheminement": "VINEZAC", - "nomCommune": "VINEZAC" + "codePostal": "16210", + "codeCommune": "16073", + "libelleAcheminement": "CHALAIS", + "nomCommune": "CHALAIS" }, { - "codePostal": "04420", - "codeCommune": "04072", - "libelleAcheminement": "DRAIX", - "nomCommune": "DRAIX" + "codePostal": "16440", + "codeCommune": "16236", + "libelleAcheminement": "MOUTHIERS SUR BOEME", + "nomCommune": "MOUTHIERS SUR BOEME" }, { - "codePostal": "08390", - "codeCommune": "08023", - "libelleAcheminement": "ARTAISE LE VIVIER", - "nomCommune": "ARTAISE LE VIVIER" + "codePostal": "02600", + "codeCommune": "02316", + "libelleAcheminement": "FLEURY", + "nomCommune": "FLEURY" }, { - "codePostal": "04000", - "codeCommune": "04074", - "libelleAcheminement": "ENTRAGES", - "nomCommune": "ENTRAGES" + "codePostal": "03300", + "codeCommune": "03033", + "libelleAcheminement": "BOST", + "nomCommune": "BOST" }, { - "codePostal": "08190", - "codeCommune": "08024", - "libelleAcheminement": "ASFELD", - "nomCommune": "ASFELD" + "codePostal": "16260", + "codeCommune": "16085", + "libelleAcheminement": "CHASSENEUIL SUR BONNIEURE", + "nomCommune": "CHASSENEUIL SUR BONNIEURE" }, { - "codePostal": "04200", - "codeCommune": "04075", - "libelleAcheminement": "ENTREPIERRES", - "nomCommune": "ENTREPIERRES" + "codePostal": "16390", + "codeCommune": "16240", + "libelleAcheminement": "NABINAUD", + "nomCommune": "NABINAUD" }, { - "codePostal": "08130", - "codeCommune": "08025", - "libelleAcheminement": "ATTIGNY", - "nomCommune": "ATTIGNY" + "codePostal": "02110", + "codeCommune": "02319", + "libelleAcheminement": "FONSOMME", + "nomCommune": "FONSOMME" }, { - "codePostal": "04700", - "codeCommune": "04077", - "libelleAcheminement": "ENTREVENNES", - "nomCommune": "ENTREVENNES" + "codePostal": "03000", + "codeCommune": "03040", + "libelleAcheminement": "BRESSOLLES", + "nomCommune": "BRESSOLLES" }, { - "codePostal": "08320", - "codeCommune": "08028", - "libelleAcheminement": "AUBRIVES", - "nomCommune": "AUBRIVES" + "codePostal": "16460", + "codeCommune": "16095", + "libelleAcheminement": "CHENON", + "nomCommune": "CHENON" }, { - "codePostal": "04230", - "codeCommune": "04087", - "libelleAcheminement": "FONTIENNE", - "nomCommune": "FONTIENNE" + "codePostal": "16700", + "codeCommune": "16242", + "libelleAcheminement": "NANTEUIL EN VALLEE", + "nomCommune": "NANTEUIL EN VALLEE" }, { - "codePostal": "08370", - "codeCommune": "08029", - "libelleAcheminement": "AUFLANCE", - "nomCommune": "AUFLANCE" + "codePostal": "02680", + "codeCommune": "02320", + "libelleAcheminement": "FONTAINE LES CLERCS", + "nomCommune": "FONTAINE LES CLERCS" }, { - "codePostal": "04300", - "codeCommune": "04088", - "libelleAcheminement": "FORCALQUIER", - "nomCommune": "FORCALQUIER" + "codePostal": "03700", + "codeCommune": "03044", + "libelleAcheminement": "BRUGHEAS", + "nomCommune": "BRUGHEAS" }, { - "codePostal": "08400", - "codeCommune": "08031", - "libelleAcheminement": "AURE", - "nomCommune": "AURE" + "codePostal": "16320", + "codeCommune": "16103", + "libelleAcheminement": "COMBIERS", + "nomCommune": "COMBIERS" }, { - "codePostal": "04510", - "codeCommune": "04108", - "libelleAcheminement": "MALIJAI", - "nomCommune": "MALIJAI" + "codePostal": "16440", + "codeCommune": "16244", + "libelleAcheminement": "NERSAC", + "nomCommune": "NERSAC" }, { - "codePostal": "08210", - "codeCommune": "08034", - "libelleAcheminement": "AUTRECOURT ET POURRON", - "nomCommune": "AUTRECOURT ET POURRON" + "codePostal": "02650", + "codeCommune": "02328", + "libelleAcheminement": "FOSSOY", + "nomCommune": "FOSSOY" }, { - "codePostal": "04100", - "codeCommune": "04112", - "libelleAcheminement": "MANOSQUE", - "nomCommune": "MANOSQUE" + "codePostal": "03370", + "codeCommune": "03051", + "libelleAcheminement": "CHAMBERAT", + "nomCommune": "CHAMBERAT" }, { - "codePostal": "08250", - "codeCommune": "08036", - "libelleAcheminement": "AUTRY", - "nomCommune": "AUTRY" + "codePostal": "16240", + "codeCommune": "16127", + "libelleAcheminement": "EMPURE", + "nomCommune": "EMPURE" }, { - "codePostal": "04240", - "codeCommune": "04115", - "libelleAcheminement": "MEAILLES", - "nomCommune": "MEAILLES" + "codePostal": "16140", + "codeCommune": "16248", + "libelleAcheminement": "ORADOUR", + "nomCommune": "ORADOUR" }, { - "codePostal": "08300", - "codeCommune": "08048", - "libelleAcheminement": "BARBY", - "nomCommune": "BARBY" + "codePostal": "02760", + "codeCommune": "02330", + "libelleAcheminement": "FRANCILLY SELENCY", + "nomCommune": "FRANCILLY SELENCY" }, { - "codePostal": "04510", - "codeCommune": "04122", - "libelleAcheminement": "MIRABEAU", - "nomCommune": "MIRABEAU" + "codePostal": "03220", + "codeCommune": "03071", + "libelleAcheminement": "CHAVROCHES", + "nomCommune": "CHAVROCHES" }, { - "codePostal": "08240", - "codeCommune": "08049", - "libelleAcheminement": "BAR LES BUZANCY", - "nomCommune": "BAR LES BUZANCY" + "codePostal": "16230", + "codeCommune": "16140", + "libelleAcheminement": "FONTCLAIREAU", + "nomCommune": "FONTCLAIREAU" }, { - "codePostal": "04200", - "codeCommune": "04140", - "libelleAcheminement": "LES OMERGUES", - "nomCommune": "LES OMERGUES" + "codePostal": "16240", + "codeCommune": "16253", + "libelleAcheminement": "PAIZAY NAUDOUIN EMBOURIE", + "nomCommune": "PAIZAY NAUDOUIN EMBOURIE" }, { - "codePostal": "08140", - "codeCommune": "08053", - "libelleAcheminement": "BAZEILLES", - "nomCommune": "BAZEILLES" + "codePostal": "02270", + "codeCommune": "02338", + "libelleAcheminement": "FROIDMONT COHARTILLE", + "nomCommune": "FROIDMONT COHARTILLE" }, { - "codePostal": "04120", - "codeCommune": "04144", - "libelleAcheminement": "LA PALUD SUR VERDON", - "nomCommune": "LA PALUD SUR VERDON" + "codePostal": "03210", + "codeCommune": "03073", + "libelleAcheminement": "CHEMILLY", + "nomCommune": "CHEMILLY" }, { - "codePostal": "08140", - "codeCommune": "08053", - "libelleAcheminement": "BAZEILLES", - "nomCommune": "BAZEILLES" + "codePostal": "16130", + "codeCommune": "16151", + "libelleAcheminement": "GENTE", + "nomCommune": "GENTE" }, { - "codePostal": "04200", - "codeCommune": "04145", - "libelleAcheminement": "PEIPIN", - "nomCommune": "PEIPIN" + "codePostal": "16110", + "codeCommune": "16269", + "libelleAcheminement": "PRANZAC", + "nomCommune": "PRANZAC" }, { - "codePostal": "08300", - "codeCommune": "08060", - "libelleAcheminement": "BERGNICOURT", - "nomCommune": "BERGNICOURT" + "codePostal": "02140", + "codeCommune": "02341", + "libelleAcheminement": "GERCY", + "nomCommune": "GERCY" }, { - "codePostal": "04340", - "codeCommune": "04161", - "libelleAcheminement": "MEOLANS REVEL", - "nomCommune": "MEOLANS REVEL" + "codePostal": "03470", + "codeCommune": "03086", + "libelleAcheminement": "COULANGES", + "nomCommune": "COULANGES" }, { - "codePostal": "08290", - "codeCommune": "08073", - "libelleAcheminement": "BOSSUS LES RUMIGNY", - "nomCommune": "BOSSUS LES RUMIGNY" + "codePostal": "16380", + "codeCommune": "16158", + "libelleAcheminement": "GRASSAC", + "nomCommune": "GRASSAC" }, { - "codePostal": "04500", - "codeCommune": "04166", - "libelleAcheminement": "RIEZ", - "nomCommune": "RIEZ" + "codePostal": "16110", + "codeCommune": "16282", + "libelleAcheminement": "LA ROCHETTE", + "nomCommune": "LA ROCHETTE" }, { - "codePostal": "08250", - "codeCommune": "08074", - "libelleAcheminement": "BOUCONVILLE", - "nomCommune": "BOUCONVILLE" + "codePostal": "02440", + "codeCommune": "02345", + "libelleAcheminement": "GIBERCOURT", + "nomCommune": "GIBERCOURT" }, { - "codePostal": "04000", - "codeCommune": "04167", - "libelleAcheminement": "LA ROBINE SUR GALABRE", - "nomCommune": "LA ROBINE SUR GALABRE" + "codePostal": "03240", + "codeCommune": "03099", + "libelleAcheminement": "DEUX CHAISES", + "nomCommune": "DEUX CHAISES" }, { - "codePostal": "08230", - "codeCommune": "08078", - "libelleAcheminement": "BOURG FIDELE", - "nomCommune": "BOURG FIDELE" + "codePostal": "16560", + "codeCommune": "16168", + "libelleAcheminement": "JAULDES", + "nomCommune": "JAULDES" }, { - "codePostal": "04000", - "codeCommune": "04167", - "libelleAcheminement": "LA ROBINE SUR GALABRE", - "nomCommune": "LA ROBINE SUR GALABRE" + "codePostal": "16210", + "codeCommune": "16284", + "libelleAcheminement": "ROUFFIAC", + "nomCommune": "ROUFFIAC" }, { - "codePostal": "08450", - "codeCommune": "08088", - "libelleAcheminement": "BULSON", - "nomCommune": "BULSON" + "codePostal": "02350", + "codeCommune": "02346", + "libelleAcheminement": "GIZY", + "nomCommune": "GIZY" }, { - "codePostal": "04000", - "codeCommune": "04167", - "libelleAcheminement": "LA ROBINE SUR GALABRE", - "nomCommune": "LA ROBINE SUR GALABRE" + "codePostal": "03290", + "codeCommune": "03100", + "libelleAcheminement": "DIOU", + "nomCommune": "DIOU" }, { - "codePostal": "08160", - "codeCommune": "08096", - "libelleAcheminement": "CHALANDRY ELAIRE", - "nomCommune": "CHALANDRY ELAIRE" + "codePostal": "16230", + "codeCommune": "16173", + "libelleAcheminement": "JUILLE", + "nomCommune": "JUILLE" }, { - "codePostal": "04000", - "codeCommune": "04167", - "libelleAcheminement": "LA ROBINE SUR GALABRE", - "nomCommune": "LA ROBINE SUR GALABRE" + "codePostal": "16310", + "codeCommune": "16289", + "libelleAcheminement": "ROUSSINES", + "nomCommune": "ROUSSINES" }, { - "codePostal": "08430", - "codeCommune": "08099", - "libelleAcheminement": "CHAMPIGNEUL SUR VENCE", - "nomCommune": "CHAMPIGNEUL SUR VENCE" + "codePostal": "02350", + "codeCommune": "02350", + "libelleAcheminement": "GOUDELANCOURT LES PIERREPONT", + "nomCommune": "GOUDELANCOURT LES PIERREPONT" }, { - "codePostal": "04120", - "codeCommune": "04171", - "libelleAcheminement": "ROUGON", - "nomCommune": "ROUGON" + "codePostal": "03410", + "codeCommune": "03101", + "libelleAcheminement": "DOMERAT", + "nomCommune": "DOMERAT" }, { - "codePostal": "08260", - "codeCommune": "08100", - "libelleAcheminement": "CHAMPLIN", - "nomCommune": "CHAMPLIN" + "codePostal": "16200", + "codeCommune": "16174", + "libelleAcheminement": "JULIENNE", + "nomCommune": "JULIENNE" }, { - "codePostal": "04410", - "codeCommune": "04184", - "libelleAcheminement": "ST JURS", - "nomCommune": "ST JURS" + "codePostal": "16120", + "codeCommune": "16297", + "libelleAcheminement": "GRAVES ST AMANT", + "nomCommune": "GRAVES ST AMANT" }, { - "codePostal": "08150", - "codeCommune": "08110", - "libelleAcheminement": "LE CHATELET SUR SORMONNE", - "nomCommune": "LE CHATELET SUR SORMONNE" + "codePostal": "02680", + "codeCommune": "02359", + "libelleAcheminement": "GRUGIES", + "nomCommune": "GRUGIES" }, { - "codePostal": "04300", - "codeCommune": "04190", - "libelleAcheminement": "ST MARTIN LES EAUX", - "nomCommune": "ST MARTIN LES EAUX" + "codePostal": "03290", + "codeCommune": "03102", + "libelleAcheminement": "DOMPIERRE SUR BESBRE", + "nomCommune": "DOMPIERRE SUR BESBRE" }, { - "codePostal": "08220", - "codeCommune": "08113", - "libelleAcheminement": "CHAUMONT PORCIEN", - "nomCommune": "CHAUMONT PORCIEN" + "codePostal": "16310", + "codeCommune": "16183", + "libelleAcheminement": "LESIGNAC DURAND", + "nomCommune": "LESIGNAC DURAND" }, { - "codePostal": "04270", - "codeCommune": "04204", - "libelleAcheminement": "SENEZ", - "nomCommune": "SENEZ" + "codePostal": "16120", + "codeCommune": "16297", + "libelleAcheminement": "GRAVES ST AMANT", + "nomCommune": "GRAVES ST AMANT" }, { - "codePostal": "08450", - "codeCommune": "08115", - "libelleAcheminement": "CHEMERY CHEHERY", - "nomCommune": "CHEMERY CHEHERY" + "codePostal": "02300", + "codeCommune": "02363", + "libelleAcheminement": "GUNY", + "nomCommune": "GUNY" }, { - "codePostal": "04330", - "codeCommune": "04214", - "libelleAcheminement": "TARTONNE", - "nomCommune": "TARTONNE" + "codePostal": "03310", + "codeCommune": "03106", + "libelleAcheminement": "DURDAT LAREQUILLE", + "nomCommune": "DURDAT LAREQUILLE" }, { - "codePostal": "08600", - "codeCommune": "08122", - "libelleAcheminement": "CHOOZ", - "nomCommune": "CHOOZ" + "codePostal": "16310", + "codeCommune": "16188", + "libelleAcheminement": "LE LINDOIS", + "nomCommune": "LE LINDOIS" }, { - "codePostal": "04380", - "codeCommune": "04217", - "libelleAcheminement": "THOARD", - "nomCommune": "THOARD" + "codePostal": "16170", + "codeCommune": "16298", + "libelleAcheminement": "ST AMANT DE NOUERE", + "nomCommune": "ST AMANT DE NOUERE" }, { - "codePostal": "08460", - "codeCommune": "08124", - "libelleAcheminement": "CLAVY WARBY", - "nomCommune": "CLAVY WARBY" + "codePostal": "02600", + "codeCommune": "02368", + "libelleAcheminement": "HARAMONT", + "nomCommune": "HARAMONT" }, { - "codePostal": "04400", - "codeCommune": "04226", - "libelleAcheminement": "UVERNET FOURS", - "nomCommune": "UVERNET FOURS" + "codePostal": "03450", + "codeCommune": "03107", + "libelleAcheminement": "EBREUIL", + "nomCommune": "EBREUIL" }, { - "codePostal": "08360", - "codeCommune": "08126", - "libelleAcheminement": "CONDE LES HERPY", - "nomCommune": "CONDE LES HERPY" + "codePostal": "16270", + "codeCommune": "16192", + "libelleAcheminement": "TERRES DE HAUTE CHARENTE", + "nomCommune": "TERRES DE HAUTE CHARENTE" }, { - "codePostal": "04110", - "codeCommune": "04227", - "libelleAcheminement": "VACHERES", - "nomCommune": "VACHERES" + "codePostal": "16230", + "codeCommune": "16307", + "libelleAcheminement": "ST CIERS SUR BONNIEURE", + "nomCommune": "ST CIERS SUR BONNIEURE" }, { - "codePostal": "08400", - "codeCommune": "08130", - "libelleAcheminement": "CONTREUVE", - "nomCommune": "CONTREUVE" + "codePostal": "02420", + "codeCommune": "02374", + "libelleAcheminement": "LEHAUCOURT", + "nomCommune": "LEHAUCOURT" }, { - "codePostal": "04200", - "codeCommune": "04229", - "libelleAcheminement": "VALBELLE", - "nomCommune": "VALBELLE" + "codePostal": "03190", + "codeCommune": "03111", + "libelleAcheminement": "ESTIVAREILLES", + "nomCommune": "ESTIVAREILLES" }, { - "codePostal": "08800", - "codeCommune": "08139", - "libelleAcheminement": "DEVILLE", - "nomCommune": "DEVILLE" + "codePostal": "16120", + "codeCommune": "16204", + "libelleAcheminement": "BELLEVIGNE", + "nomCommune": "BELLEVIGNE" }, { - "codePostal": "04140", - "codeCommune": "04237", - "libelleAcheminement": "LE VERNET", - "nomCommune": "LE VERNET" + "codePostal": "16450", + "codeCommune": "16308", + "libelleAcheminement": "ST CLAUD", + "nomCommune": "ST CLAUD" }, { - "codePostal": "08300", - "codeCommune": "08144", - "libelleAcheminement": "DOUX", - "nomCommune": "DOUX" + "codePostal": "02810", + "codeCommune": "02375", + "libelleAcheminement": "HAUTEVESNES", + "nomCommune": "HAUTEVESNES" }, { - "codePostal": "04130", - "codeCommune": "04245", - "libelleAcheminement": "VOLX", - "nomCommune": "VOLX" + "codePostal": "03270", + "codeCommune": "03126", + "libelleAcheminement": "HAUTERIVE", + "nomCommune": "HAUTERIVE" }, { - "codePostal": "08270", - "codeCommune": "08163", - "libelleAcheminement": "FAISSAULT", - "nomCommune": "FAISSAULT" + "codePostal": "16120", + "codeCommune": "16204", + "libelleAcheminement": "BELLEVIGNE", + "nomCommune": "BELLEVIGNE" }, { - "codePostal": "05260", - "codeCommune": "05004", - "libelleAcheminement": "ANCELLE", - "nomCommune": "ANCELLE" + "codePostal": "16140", + "codeCommune": "16317", + "libelleAcheminement": "ST FRAIGNE", + "nomCommune": "ST FRAIGNE" }, { - "codePostal": "08380", - "codeCommune": "08172", - "libelleAcheminement": "FLIGNY", - "nomCommune": "FLIGNY" + "codePostal": "02500", + "codeCommune": "02378", + "libelleAcheminement": "LA HERIE", + "nomCommune": "LA HERIE" }, { - "codePostal": "05190", - "codeCommune": "05022", - "libelleAcheminement": "BREZIERS", - "nomCommune": "BREZIERS" + "codePostal": "03450", + "codeCommune": "03135", + "libelleAcheminement": "LALIZOLLE", + "nomCommune": "LALIZOLLE" }, { - "codePostal": "08160", - "codeCommune": "08173", - "libelleAcheminement": "FLIZE", - "nomCommune": "FLIZE" + "codePostal": "16380", + "codeCommune": "16211", + "libelleAcheminement": "MARTHON", + "nomCommune": "MARTHON" }, { - "codePostal": "05150", - "codeCommune": "05024", - "libelleAcheminement": "VALDOULE", - "nomCommune": "VALDOULE" + "codePostal": "16460", + "codeCommune": "16318", + "libelleAcheminement": "ST FRONT", + "nomCommune": "ST FRONT" }, { - "codePostal": "08140", - "codeCommune": "08179", - "libelleAcheminement": "FRANCHEVAL", - "nomCommune": "FRANCHEVAL" + "codePostal": "02760", + "codeCommune": "02382", + "libelleAcheminement": "HOLNON", + "nomCommune": "HOLNON" }, { - "codePostal": "05150", - "codeCommune": "05024", - "libelleAcheminement": "VALDOULE", - "nomCommune": "VALDOULE" + "codePostal": "03380", + "codeCommune": "03136", + "libelleAcheminement": "LAMAIDS", + "nomCommune": "LAMAIDS" }, { - "codePostal": "08290", - "codeCommune": "08182", - "libelleAcheminement": "LE FRETY", - "nomCommune": "LE FRETY" + "codePostal": "16200", + "codeCommune": "16216", + "libelleAcheminement": "MERIGNAC", + "nomCommune": "MERIGNAC" }, { - "codePostal": "05400", - "codeCommune": "05028", - "libelleAcheminement": "CHABESTAN", - "nomCommune": "CHABESTAN" + "codePostal": "16570", + "codeCommune": "16320", + "libelleAcheminement": "ST GENIS D HIERSAC", + "nomCommune": "ST GENIS D HIERSAC" }, { - "codePostal": "08170", - "codeCommune": "08185", - "libelleAcheminement": "FUMAY", - "nomCommune": "FUMAY" + "codePostal": "02140", + "codeCommune": "02384", + "libelleAcheminement": "HOURY", + "nomCommune": "HOURY" }, { - "codePostal": "05200", - "codeCommune": "05044", - "libelleAcheminement": "CREVOUX", - "nomCommune": "CREVOUX" + "codePostal": "03150", + "codeCommune": "03137", + "libelleAcheminement": "LANGY", + "nomCommune": "LANGY" }, { - "codePostal": "08220", - "codeCommune": "08192", - "libelleAcheminement": "GIVRON", - "nomCommune": "GIVRON" + "codePostal": "16100", + "codeCommune": "16217", + "libelleAcheminement": "MERPINS", + "nomCommune": "MERPINS" }, { - "codePostal": "05300", - "codeCommune": "05047", - "libelleAcheminement": "EOURRES", - "nomCommune": "EOURRES" + "codePostal": "16700", + "codeCommune": "16321", + "libelleAcheminement": "ST GEORGES", + "nomCommune": "ST GEORGES" }, { - "codePostal": "08130", - "codeCommune": "08193", - "libelleAcheminement": "GIVRY", - "nomCommune": "GIVRY" + "codePostal": "02360", + "codeCommune": "02388", + "libelleAcheminement": "IVIERS", + "nomCommune": "IVIERS" }, { - "codePostal": "05700", - "codeCommune": "05048", - "libelleAcheminement": "L EPINE", - "nomCommune": "L EPINE" + "codePostal": "03130", + "codeCommune": "03147", + "libelleAcheminement": "LODDES", + "nomCommune": "LODDES" }, { - "codePostal": "08250", - "codeCommune": "08198", - "libelleAcheminement": "GRANDPRE", - "nomCommune": "GRANDPRE" + "codePostal": "16220", + "codeCommune": "16223", + "libelleAcheminement": "MONTBRON", + "nomCommune": "MONTBRON" }, { - "codePostal": "05320", - "codeCommune": "05063", - "libelleAcheminement": "LA GRAVE", - "nomCommune": "LA GRAVE" + "codePostal": "16700", + "codeCommune": "16325", + "libelleAcheminement": "ST GOURSON", + "nomCommune": "ST GOURSON" }, { - "codePostal": "08250", - "codeCommune": "08198", - "libelleAcheminement": "GRANDPRE", - "nomCommune": "GRANDPRE" + "codePostal": "02140", + "codeCommune": "02391", + "libelleAcheminement": "JEANTES", + "nomCommune": "JEANTES" }, { - "codePostal": "05300", - "codeCommune": "05070", - "libelleAcheminement": "LARAGNE MONTEGLIN", - "nomCommune": "LARAGNE MONTEGLIN" + "codePostal": "03500", + "codeCommune": "03149", + "libelleAcheminement": "LOUCHY MONTFAND", + "nomCommune": "LOUCHY MONTFAND" }, { - "codePostal": "08430", - "codeCommune": "08203", - "libelleAcheminement": "GUIGNICOURT SUR VENCE", - "nomCommune": "GUIGNICOURT SUR VENCE" + "codePostal": "16330", + "codeCommune": "16226", + "libelleAcheminement": "MONTIGNAC CHARENTE", + "nomCommune": "MONTIGNAC CHARENTE" }, { - "codePostal": "05130", - "codeCommune": "05074", - "libelleAcheminement": "LETTRET", - "nomCommune": "LETTRET" + "codePostal": "16100", + "codeCommune": "16330", + "libelleAcheminement": "ST LAURENT DE COGNAC", + "nomCommune": "ST LAURENT DE COGNAC" }, { - "codePostal": "08130", - "codeCommune": "08204", - "libelleAcheminement": "GUINCOURT", - "nomCommune": "GUINCOURT" + "codePostal": "02480", + "codeCommune": "02397", + "libelleAcheminement": "JUSSY", + "nomCommune": "JUSSY" }, { - "codePostal": "05400", - "codeCommune": "05075", - "libelleAcheminement": "MANTEYER", - "nomCommune": "MANTEYER" + "codePostal": "03600", + "codeCommune": "03151", + "libelleAcheminement": "LOUROUX DE BEAUNE", + "nomCommune": "LOUROUX DE BEAUNE" }, { - "codePostal": "08430", - "codeCommune": "08205", - "libelleAcheminement": "HAGNICOURT", - "nomCommune": "HAGNICOURT" + "codePostal": "16190", + "codeCommune": "16230", + "libelleAcheminement": "MONTMOREAU", + "nomCommune": "MONTMOREAU" }, { - "codePostal": "05700", - "codeCommune": "05076", - "libelleAcheminement": "MEREUIL", - "nomCommune": "MEREUIL" + "codePostal": "16700", + "codeCommune": "16335", + "libelleAcheminement": "ST MARTIN DU CLOCHER", + "nomCommune": "ST MARTIN DU CLOCHER" }, { - "codePostal": "08600", - "codeCommune": "08207", - "libelleAcheminement": "HAM SUR MEUSE", - "nomCommune": "HAM SUR MEUSE" + "codePostal": "02880", + "codeCommune": "02398", + "libelleAcheminement": "JUVIGNY", + "nomCommune": "JUVIGNY" }, { - "codePostal": "05500", - "codeCommune": "05090", - "libelleAcheminement": "LA MOTTE EN CHAMPSAUR", - "nomCommune": "LA MOTTE EN CHAMPSAUR" + "codePostal": "03330", + "codeCommune": "03152", + "libelleAcheminement": "LOUROUX DE BOUBLE", + "nomCommune": "LOUROUX DE BOUBLE" }, { - "codePostal": "08150", - "codeCommune": "08212", - "libelleAcheminement": "HARCY", - "nomCommune": "HARCY" + "codePostal": "16460", + "codeCommune": "16237", + "libelleAcheminement": "MOUTON", + "nomCommune": "MOUTON" }, { - "codePostal": "05700", - "codeCommune": "05102", - "libelleAcheminement": "LA PIARRE", - "nomCommune": "LA PIARRE" + "codePostal": "16260", + "codeCommune": "16336", + "libelleAcheminement": "ST MARY", + "nomCommune": "ST MARY" }, { - "codePostal": "08170", - "codeCommune": "08214", - "libelleAcheminement": "HARGNIES", - "nomCommune": "HARGNIES" + "codePostal": "02190", + "codeCommune": "02399", + "libelleAcheminement": "JUVINCOURT ET DAMARY", + "nomCommune": "JUVINCOURT ET DAMARY" }, { - "codePostal": "05500", - "codeCommune": "05104", - "libelleAcheminement": "POLIGNY", - "nomCommune": "POLIGNY" + "codePostal": "03420", + "codeCommune": "03161", + "libelleAcheminement": "MARCILLAT EN COMBRAILLE", + "nomCommune": "MARCILLAT EN COMBRAILLE" }, { - "codePostal": "08310", - "codeCommune": "08220", - "libelleAcheminement": "HAUVINE", - "nomCommune": "HAUVINE" + "codePostal": "16460", + "codeCommune": "16238", + "libelleAcheminement": "MOUTONNEAU", + "nomCommune": "MOUTONNEAU" }, { - "codePostal": "05190", - "codeCommune": "05127", - "libelleAcheminement": "ROUSSET", - "nomCommune": "ROUSSET" + "codePostal": "16300", + "codeCommune": "16342", + "libelleAcheminement": "ST PALAIS DU NE", + "nomCommune": "ST PALAIS DU NE" }, { - "codePostal": "08370", - "codeCommune": "08223", - "libelleAcheminement": "HERBEUVAL", - "nomCommune": "HERBEUVAL" + "codePostal": "02590", + "codeCommune": "02402", + "libelleAcheminement": "LANCHY", + "nomCommune": "LANCHY" }, { - "codePostal": "05500", - "codeCommune": "05132", - "libelleAcheminement": "ST BONNET EN CHAMPSAUR", - "nomCommune": "ST BONNET EN CHAMPSAUR" + "codePostal": "03360", + "codeCommune": "03168", + "libelleAcheminement": "MEAULNE VITRAY", + "nomCommune": "MEAULNE VITRAY" }, { - "codePostal": "08360", - "codeCommune": "08225", - "libelleAcheminement": "HERPY L ARLESIENNE", - "nomCommune": "HERPY L ARLESIENNE" + "codePostal": "16700", + "codeCommune": "16242", + "libelleAcheminement": "NANTEUIL EN VALLEE", + "nomCommune": "NANTEUIL EN VALLEE" }, { - "codePostal": "05700", - "codeCommune": "05135", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "16210", + "codeCommune": "16346", + "libelleAcheminement": "ST QUENTIN DE CHALAIS", + "nomCommune": "ST QUENTIN DE CHALAIS" }, { - "codePostal": "08190", - "codeCommune": "08229", - "libelleAcheminement": "HOUDILCOURT", - "nomCommune": "HOUDILCOURT" + "codePostal": "02140", + "codeCommune": "02404", + "libelleAcheminement": "LANDOUZY LA COUR", + "nomCommune": "LANDOUZY LA COUR" }, { - "codePostal": "05800", - "codeCommune": "05142", - "libelleAcheminement": "ST FIRMIN EN VALGODEMARD", - "nomCommune": "ST FIRMIN" + "codePostal": "03500", + "codeCommune": "03169", + "libelleAcheminement": "MEILLARD", + "nomCommune": "MEILLARD" }, { - "codePostal": "08130", - "codeCommune": "08238", - "libelleAcheminement": "JONVAL", - "nomCommune": "JONVAL" + "codePostal": "16700", + "codeCommune": "16242", + "libelleAcheminement": "NANTEUIL EN VALLEE", + "nomCommune": "NANTEUIL EN VALLEE" }, { - "codePostal": "05200", - "codeCommune": "05156", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "16290", + "codeCommune": "16348", + "libelleAcheminement": "ST SATURNIN", + "nomCommune": "ST SATURNIN" }, { - "codePostal": "08800", - "codeCommune": "08242", - "libelleAcheminement": "LAIFOUR", - "nomCommune": "LAIFOUR" + "codePostal": "02860", + "codeCommune": "02413", + "libelleAcheminement": "LAVAL EN LAONNOIS", + "nomCommune": "LAVAL EN LAONNOIS" }, { - "codePostal": "05300", - "codeCommune": "05159", - "libelleAcheminement": "SALEON", - "nomCommune": "SALEON" + "codePostal": "03340", + "codeCommune": "03171", + "libelleAcheminement": "MERCY", + "nomCommune": "MERCY" }, { - "codePostal": "08600", - "codeCommune": "08247", - "libelleAcheminement": "LANDRICHAMPS", - "nomCommune": "LANDRICHAMPS" + "codePostal": "16480", + "codeCommune": "16251", + "libelleAcheminement": "ORIOLLES", + "nomCommune": "ORIOLLES" }, { - "codePostal": "05150", - "codeCommune": "05169", - "libelleAcheminement": "SORBIERS", - "nomCommune": "SORBIERS" + "codePostal": "16220", + "codeCommune": "16353", + "libelleAcheminement": "ST SORNIN", + "nomCommune": "ST SORNIN" }, { - "codePostal": "08310", - "codeCommune": "08250", - "libelleAcheminement": "LEFFINCOURT", - "nomCommune": "LEFFINCOURT" + "codePostal": "02140", + "codeCommune": "02416", + "libelleAcheminement": "LEME", + "nomCommune": "LEME" }, { - "codePostal": "05400", - "codeCommune": "05179", - "libelleAcheminement": "VEYNES", - "nomCommune": "VEYNES" + "codePostal": "03370", + "codeCommune": "03172", + "libelleAcheminement": "MESPLES", + "nomCommune": "MESPLES" }, { - "codePostal": "08150", - "codeCommune": "08251", - "libelleAcheminement": "LEPRON LES VALLEES", - "nomCommune": "LEPRON LES VALLEES" + "codePostal": "16190", + "codeCommune": "16267", + "libelleAcheminement": "POULLIGNAC", + "nomCommune": "POULLIGNAC" }, { - "codePostal": "05100", - "codeCommune": "05183", - "libelleAcheminement": "VILLAR ST PANCRACE", - "nomCommune": "VILLAR ST PANCRACE" + "codePostal": "16700", + "codeCommune": "16361", + "libelleAcheminement": "SALLES DE VILLEFAGNAN", + "nomCommune": "SALLES DE VILLEFAGNAN" }, { - "codePostal": "08290", - "codeCommune": "08254", - "libelleAcheminement": "LIART", - "nomCommune": "LIART" + "codePostal": "02220", + "codeCommune": "02421", + "libelleAcheminement": "LESGES", + "nomCommune": "LESGES" }, { - "codePostal": "06750", - "codeCommune": "06003", - "libelleAcheminement": "ANDON", - "nomCommune": "ANDON" + "codePostal": "03510", + "codeCommune": "03173", + "libelleAcheminement": "MOLINET", + "nomCommune": "MOLINET" }, { - "codePostal": "08400", - "codeCommune": "08256", - "libelleAcheminement": "LIRY", - "nomCommune": "LIRY" + "codePostal": "16230", + "codeCommune": "16272", + "libelleAcheminement": "PUYREAUX", + "nomCommune": "PUYREAUX" }, { - "codePostal": "06160", - "codeCommune": "06004", - "libelleAcheminement": "ANTIBES", - "nomCommune": "ANTIBES" + "codePostal": "16310", + "codeCommune": "16364", + "libelleAcheminement": "SAUVAGNAC", + "nomCommune": "SAUVAGNAC" }, { - "codePostal": "08300", - "codeCommune": "08262", - "libelleAcheminement": "LUCQUY", - "nomCommune": "LUCQUY" + "codePostal": "02420", + "codeCommune": "02426", + "libelleAcheminement": "LEVERGIES", + "nomCommune": "LEVERGIES" }, { - "codePostal": "06260", - "codeCommune": "06005", - "libelleAcheminement": "ASCROS", - "nomCommune": "ASCROS" + "codePostal": "03130", + "codeCommune": "03178", + "libelleAcheminement": "MONTAIGUET EN FOREZ", + "nomCommune": "MONTAIGUET EN FOREZ" }, { - "codePostal": "08260", - "codeCommune": "08273", - "libelleAcheminement": "MARBY", - "nomCommune": "MARBY" + "codePostal": "16360", + "codeCommune": "16276", + "libelleAcheminement": "REIGNAC", + "nomCommune": "REIGNAC" }, { - "codePostal": "06620", - "codeCommune": "06010", - "libelleAcheminement": "LE BAR SUR LOUP", - "nomCommune": "LE BAR SUR LOUP" + "codePostal": "16410", + "codeCommune": "16368", + "libelleAcheminement": "SERS", + "nomCommune": "SERS" }, { - "codePostal": "08400", - "codeCommune": "08279", - "libelleAcheminement": "MARS SOUS BOURCQ", - "nomCommune": "MARS SOUS BOURCQ" + "codePostal": "02860", + "codeCommune": "02429", + "libelleAcheminement": "LIERVAL", + "nomCommune": "LIERVAL" }, { - "codePostal": "06450", - "codeCommune": "06013", - "libelleAcheminement": "BELVEDERE", - "nomCommune": "BELVEDERE" + "codePostal": "03150", + "codeCommune": "03179", + "libelleAcheminement": "MONTAIGU LE BLIN", + "nomCommune": "MONTAIGU LE BLIN" }, { - "codePostal": "08500", - "codeCommune": "08284", - "libelleAcheminement": "LES MAZURES", - "nomCommune": "LES MAZURES" + "codePostal": "16110", + "codeCommune": "16281", + "libelleAcheminement": "LA ROCHEFOUCAULD EN ANGOUMOIS", + "nomCommune": "LA ROCHEFOUCAULD EN ANGOUMOIS" }, { - "codePostal": "06800", - "codeCommune": "06027", - "libelleAcheminement": "CAGNES SUR MER", - "nomCommune": "CAGNES SUR MER" + "codePostal": "16800", + "codeCommune": "16374", + "libelleAcheminement": "SOYAUX", + "nomCommune": "SOYAUX" }, { - "codePostal": "08310", - "codeCommune": "08286", - "libelleAcheminement": "MENIL ANNELLES", - "nomCommune": "MENIL ANNELLES" + "codePostal": "02220", + "codeCommune": "02432", + "libelleAcheminement": "LIME", + "nomCommune": "LIME" }, { - "codePostal": "06320", - "codeCommune": "06032", - "libelleAcheminement": "CAP D AIL", - "nomCommune": "CAP D AIL" + "codePostal": "03340", + "codeCommune": "03180", + "libelleAcheminement": "MONTBEUGNY", + "nomCommune": "MONTBEUGNY" }, { - "codePostal": "08250", - "codeCommune": "08296", - "libelleAcheminement": "MONTCHEUTIN", - "nomCommune": "MONTCHEUTIN" + "codePostal": "16320", + "codeCommune": "16285", + "libelleAcheminement": "ROUGNAC", + "nomCommune": "ROUGNAC" }, { - "codePostal": "06500", - "codeCommune": "06035", - "libelleAcheminement": "CASTELLAR", - "nomCommune": "CASTELLAR" + "codePostal": "16360", + "codeCommune": "16380", + "libelleAcheminement": "LE TATRE", + "nomCommune": "LE TATRE" }, { - "codePostal": "08800", - "codeCommune": "08302", - "libelleAcheminement": "MONTHERME", - "nomCommune": "MONTHERME" + "codePostal": "02160", + "codeCommune": "02439", + "libelleAcheminement": "LES SEPTVALLONS", + "nomCommune": "LES SEPTVALLONS" }, { - "codePostal": "06500", - "codeCommune": "06036", - "libelleAcheminement": "CASTILLON", - "nomCommune": "CASTILLON" + "codePostal": "03150", + "codeCommune": "03187", + "libelleAcheminement": "MONTOLDRE", + "nomCommune": "MONTOLDRE" }, { - "codePostal": "08210", - "codeCommune": "08311", - "libelleAcheminement": "MOUZON", - "nomCommune": "MOUZON" + "codePostal": "16440", + "codeCommune": "16287", + "libelleAcheminement": "ROULLET ST ESTEPHE", + "nomCommune": "ROULLET ST ESTEPHE" }, { - "codePostal": "06390", - "codeCommune": "06039", - "libelleAcheminement": "CHATEAUNEUF VILLEVIEILLE", - "nomCommune": "CHATEAUNEUF VILLEVIEILLE" + "codePostal": "16410", + "codeCommune": "16382", + "libelleAcheminement": "TORSAC", + "nomCommune": "TORSAC" }, { - "codePostal": "08380", - "codeCommune": "08318", - "libelleAcheminement": "LA NEUVILLE AUX JOUTES", - "nomCommune": "LA NEUVILLE AUX JOUTES" + "codePostal": "02160", + "codeCommune": "02439", + "libelleAcheminement": "LES SEPTVALLONS", + "nomCommune": "LES SEPTVALLONS" }, { - "codePostal": "06910", - "codeCommune": "06045", - "libelleAcheminement": "COLLONGUES", - "nomCommune": "COLLONGUES" + "codePostal": "03450", + "codeCommune": "03192", + "libelleAcheminement": "NADES", + "nomCommune": "NADES" }, { - "codePostal": "08160", - "codeCommune": "08327", - "libelleAcheminement": "NOUVION SUR MEUSE", - "nomCommune": "NOUVION SUR MEUSE" + "codePostal": "16310", + "codeCommune": "16293", + "libelleAcheminement": "ST ADJUTORY", + "nomCommune": "ST ADJUTORY" }, { - "codePostal": "06470", - "codeCommune": "06056", - "libelleAcheminement": "ENTRAUNES", - "nomCommune": "ENTRAUNES" + "codePostal": "16140", + "codeCommune": "16390", + "libelleAcheminement": "TUSSON", + "nomCommune": "TUSSON" }, { - "codePostal": "08270", - "codeCommune": "08329", - "libelleAcheminement": "NOVION PORCIEN", - "nomCommune": "NOVION PORCIEN" + "codePostal": "02130", + "codeCommune": "02442", + "libelleAcheminement": "LOUPEIGNE", + "nomCommune": "LOUPEIGNE" }, { - "codePostal": "06470", - "codeCommune": "06056", - "libelleAcheminement": "ENTRAUNES", - "nomCommune": "ENTRAUNES" + "codePostal": "03130", + "codeCommune": "03196", + "libelleAcheminement": "NEUILLY EN DONJON", + "nomCommune": "NEUILLY EN DONJON" }, { - "codePostal": "08250", - "codeCommune": "08333", - "libelleAcheminement": "OLIZY PRIMAT", - "nomCommune": "OLIZY PRIMAT" + "codePostal": "16210", + "codeCommune": "16302", + "libelleAcheminement": "ST AVIT", + "nomCommune": "ST AVIT" }, { - "codePostal": "06460", - "codeCommune": "06058", - "libelleAcheminement": "ESCRAGNOLLES", - "nomCommune": "ESCRAGNOLLES" + "codePostal": "16460", + "codeCommune": "16392", + "libelleAcheminement": "VALENCE", + "nomCommune": "VALENCE" }, { - "codePostal": "08450", - "codeCommune": "08334", - "libelleAcheminement": "OMICOURT", - "nomCommune": "OMICOURT" + "codePostal": "02500", + "codeCommune": "02445", + "libelleAcheminement": "LUZOIR", + "nomCommune": "LUZOIR" }, { - "codePostal": "06830", - "codeCommune": "06066", - "libelleAcheminement": "GILETTE", - "nomCommune": "GILETTE" + "codePostal": "03250", + "codeCommune": "03201", + "libelleAcheminement": "NIZEROLLES", + "nomCommune": "NIZEROLLES" }, { - "codePostal": "08430", - "codeCommune": "08335", - "libelleAcheminement": "OMONT", - "nomCommune": "OMONT" + "codePostal": "16100", + "codeCommune": "16304", + "libelleAcheminement": "ST BRICE", + "nomCommune": "ST BRICE" }, { - "codePostal": "06500", - "codeCommune": "06067", - "libelleAcheminement": "GORBIO", - "nomCommune": "GORBIO" + "codePostal": "16310", + "codeCommune": "16398", + "libelleAcheminement": "VERNEUIL", + "nomCommune": "VERNEUIL" }, { - "codePostal": "08110", - "codeCommune": "08336", - "libelleAcheminement": "OSNES", - "nomCommune": "OSNES" + "codePostal": "02350", + "codeCommune": "02448", + "libelleAcheminement": "MACHECOURT", + "nomCommune": "MACHECOURT" }, { - "codePostal": "06620", - "codeCommune": "06068", - "libelleAcheminement": "GOURDON", - "nomCommune": "GOURDON" + "codePostal": "03500", + "codeCommune": "03204", + "libelleAcheminement": "PARAY SOUS BRIAILLES", + "nomCommune": "PARAY SOUS BRIAILLES" }, { - "codePostal": "08110", - "codeCommune": "08349", - "libelleAcheminement": "PURE", - "nomCommune": "PURE" + "codePostal": "16420", + "codeCommune": "16306", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "06130", - "codeCommune": "06069", - "libelleAcheminement": "GRASSE", - "nomCommune": "GRASSE" + "codePostal": "16130", + "codeCommune": "16399", + "libelleAcheminement": "VERRIERES", + "nomCommune": "VERRIERES" }, { - "codePostal": "08290", - "codeCommune": "08373", - "libelleAcheminement": "RUMIGNY", - "nomCommune": "RUMIGNY" + "codePostal": "02330", + "codeCommune": "02458", + "libelleAcheminement": "DHUYS ET MORIN EN BRIE", + "nomCommune": "DHUYS ET MORIN EN BRIE" }, { - "codePostal": "06620", - "codeCommune": "06070", - "libelleAcheminement": "GREOLIERES", - "nomCommune": "GREOLIERES" + "codePostal": "03120", + "codeCommune": "03205", + "libelleAcheminement": "PERIGNY", + "nomCommune": "PERIGNY" }, { - "codePostal": "08190", - "codeCommune": "08381", - "libelleAcheminement": "ST GERMAINMONT", - "nomCommune": "ST GERMAINMONT" + "codePostal": "16480", + "codeCommune": "16315", + "libelleAcheminement": "ST FELIX", + "nomCommune": "ST FELIX" }, { - "codePostal": "06470", - "codeCommune": "06071", - "libelleAcheminement": "GUILLAUMES", - "nomCommune": "GUILLAUMES" + "codePostal": "16330", + "codeCommune": "16401", + "libelleAcheminement": "VERVANT", + "nomCommune": "VERVANT" }, { - "codePostal": "08090", - "codeCommune": "08385", - "libelleAcheminement": "ST LAURENT", - "nomCommune": "ST LAURENT" + "codePostal": "02540", + "codeCommune": "02458", + "libelleAcheminement": "DHUYS ET MORIN EN BRIE", + "nomCommune": "DHUYS ET MORIN EN BRIE" }, { - "codePostal": "06420", - "codeCommune": "06073", - "libelleAcheminement": "ISOLA", - "nomCommune": "ISOLA" + "codePostal": "03380", + "codeCommune": "03212", + "libelleAcheminement": "QUINSSAINES", + "nomCommune": "QUINSSAINES" }, { - "codePostal": "08160", - "codeCommune": "08388", - "libelleAcheminement": "ST MARCEAU", - "nomCommune": "ST MARCEAU" + "codePostal": "16130", + "codeCommune": "16316", + "libelleAcheminement": "ST FORT SUR LE NE", + "nomCommune": "ST FORT SUR LE NE" }, { - "codePostal": "06450", - "codeCommune": "06074", - "libelleAcheminement": "LANTOSQUE", - "nomCommune": "LANTOSQUE" + "codePostal": "16120", + "codeCommune": "16402", + "libelleAcheminement": "VIBRAC", + "nomCommune": "VIBRAC" }, { - "codePostal": "08200", - "codeCommune": "08391", - "libelleAcheminement": "ST MENGES", - "nomCommune": "ST MENGES" + "codePostal": "02810", + "codeCommune": "02465", + "libelleAcheminement": "MARIGNY EN ORXOIS", + "nomCommune": "MARIGNY EN ORXOIS" }, { - "codePostal": "06710", - "codeCommune": "06078", - "libelleAcheminement": "MALAUSSENE", - "nomCommune": "MALAUSSENE" + "codePostal": "03420", + "codeCommune": "03216", + "libelleAcheminement": "RONNET", + "nomCommune": "RONNET" }, { - "codePostal": "08240", - "codeCommune": "08394", - "libelleAcheminement": "ST PIERREMONT", - "nomCommune": "ST PIERREMONT" + "codePostal": "16380", + "codeCommune": "16323", + "libelleAcheminement": "ST GERMAIN DE MONTBRON", + "nomCommune": "ST GERMAIN DE MONTBRON" }, { - "codePostal": "06210", - "codeCommune": "06079", - "libelleAcheminement": "MANDELIEU LA NAPOULE", - "nomCommune": "MANDELIEU LA NAPOULE" + "codePostal": "16350", + "codeCommune": "16404", + "libelleAcheminement": "VIEUX RUFFEC", + "nomCommune": "VIEUX RUFFEC" }, { - "codePostal": "08190", - "codeCommune": "08404", - "libelleAcheminement": "SAULT ST REMY", - "nomCommune": "SAULT ST REMY" + "codePostal": "02650", + "codeCommune": "02484", + "libelleAcheminement": "MEZY MOULINS", + "nomCommune": "MEZY MOULINS" }, { - "codePostal": "06500", - "codeCommune": "06083", - "libelleAcheminement": "MENTON", - "nomCommune": "MENTON" + "codePostal": "03170", + "codeCommune": "03217", + "libelleAcheminement": "ST ANGEL", + "nomCommune": "ST ANGEL" }, { - "codePostal": "08390", - "codeCommune": "08405", - "libelleAcheminement": "SAUVILLE", - "nomCommune": "SAUVILLE" + "codePostal": "16170", + "codeCommune": "16339", + "libelleAcheminement": "VAL D AUGE", + "nomCommune": "VAL D AUGE" }, { - "codePostal": "06650", - "codeCommune": "06089", - "libelleAcheminement": "OPIO", - "nomCommune": "OPIO" + "codePostal": "16560", + "codeCommune": "16412", + "libelleAcheminement": "VILLEJOUBERT", + "nomCommune": "VILLEJOUBERT" }, { - "codePostal": "08250", - "codeCommune": "08407", - "libelleAcheminement": "SECHAULT", - "nomCommune": "SECHAULT" + "codePostal": "02500", + "codeCommune": "02495", + "libelleAcheminement": "MONDREPUIS", + "nomCommune": "MONDREPUIS" }, { - "codePostal": "06580", - "codeCommune": "06090", - "libelleAcheminement": "PEGOMAS", - "nomCommune": "PEGOMAS" + "codePostal": "03130", + "codeCommune": "03226", + "libelleAcheminement": "ST DIDIER EN DONJON", + "nomCommune": "ST DIDIER EN DONJON" }, { - "codePostal": "08250", - "codeCommune": "08412", - "libelleAcheminement": "SENUC", - "nomCommune": "SENUC" + "codePostal": "16720", + "codeCommune": "16340", + "libelleAcheminement": "ST MEME LES CARRIERES", + "nomCommune": "ST MEME LES CARRIERES" }, { - "codePostal": "06440", - "codeCommune": "06092", - "libelleAcheminement": "PEILLON", - "nomCommune": "PEILLON" + "codePostal": "16430", + "codeCommune": "16415", + "libelleAcheminement": "VINDELLE", + "nomCommune": "VINDELLE" }, { - "codePostal": "08220", - "codeCommune": "08413", - "libelleAcheminement": "SERAINCOURT", - "nomCommune": "SERAINCOURT" + "codePostal": "02340", + "codeCommune": "02502", + "libelleAcheminement": "MONTCORNET", + "nomCommune": "MONTCORNET" }, { - "codePostal": "06530", - "codeCommune": "06095", - "libelleAcheminement": "PEYMEINADE", - "nomCommune": "PEYMEINADE" + "codePostal": "03110", + "codeCommune": "03227", + "libelleAcheminement": "ST DIDIER LA FORET", + "nomCommune": "ST DIDIER LA FORET" }, { - "codePostal": "08270", - "codeCommune": "08415", - "libelleAcheminement": "SERY", - "nomCommune": "SERY" + "codePostal": "16210", + "codeCommune": "16347", + "libelleAcheminement": "ST ROMAIN", + "nomCommune": "ST ROMAIN" }, { - "codePostal": "06420", - "codeCommune": "06110", - "libelleAcheminement": "ROUBION", - "nomCommune": "ROUBION" + "codePostal": "16250", + "codeCommune": "16420", + "libelleAcheminement": "VOULGEZAC", + "nomCommune": "VOULGEZAC" }, { - "codePostal": "08230", - "codeCommune": "08417", - "libelleAcheminement": "SEVIGNY LA FORET", - "nomCommune": "SEVIGNY LA FORET" + "codePostal": "02330", + "codeCommune": "02510", + "libelleAcheminement": "MONTHUREL", + "nomCommune": "MONTHUREL" }, { - "codePostal": "06500", - "codeCommune": "06113", - "libelleAcheminement": "STE AGNES", - "nomCommune": "STE AGNES" + "codePostal": "03260", + "codeCommune": "03232", + "libelleAcheminement": "ST FELIX", + "nomCommune": "ST FELIX" }, { - "codePostal": "08300", - "codeCommune": "08427", - "libelleAcheminement": "SORBON", - "nomCommune": "SORBON" + "codePostal": "16120", + "codeCommune": "16352", + "libelleAcheminement": "ST SIMON", + "nomCommune": "ST SIMON" }, { - "codePostal": "06530", - "codeCommune": "06118", - "libelleAcheminement": "ST CEZAIRE SUR SIAGNE", - "nomCommune": "ST CEZAIRE SUR SIAGNE" + "codePostal": "17400", + "codeCommune": "17013", + "libelleAcheminement": "ANTEZANT LA CHAPELLE", + "nomCommune": "ANTEZANT LA CHAPELLE" }, { - "codePostal": "08150", - "codeCommune": "08429", - "libelleAcheminement": "SORMONNE", - "nomCommune": "SORMONNE" + "codePostal": "02310", + "codeCommune": "02521", + "libelleAcheminement": "MONTREUIL AUX LIONS", + "nomCommune": "MONTREUIL AUX LIONS" }, { - "codePostal": "06460", - "codeCommune": "06130", - "libelleAcheminement": "ST VALLIER DE THIEY", - "nomCommune": "ST VALLIER DE THIEY" + "codePostal": "03260", + "codeCommune": "03236", + "libelleAcheminement": "ST GERMAIN DES FOSSES", + "nomCommune": "ST GERMAIN DES FOSSES" }, { - "codePostal": "08400", - "codeCommune": "08431", - "libelleAcheminement": "SUGNY", - "nomCommune": "SUGNY" + "codePostal": "16370", + "codeCommune": "16355", + "libelleAcheminement": "ST SULPICE DE COGNAC", + "nomCommune": "ST SULPICE DE COGNAC" }, { - "codePostal": "06910", - "codeCommune": "06135", - "libelleAcheminement": "SIGALE", - "nomCommune": "SIGALE" + "codePostal": "17120", + "codeCommune": "17015", + "libelleAcheminement": "ARCES", + "nomCommune": "ARCES" }, { - "codePostal": "08390", - "codeCommune": "08434", - "libelleAcheminement": "SY", - "nomCommune": "SY" + "codePostal": "02610", + "codeCommune": "02532", + "libelleAcheminement": "MOY DE L AISNE", + "nomCommune": "MOY DE L AISNE" }, { - "codePostal": "06590", - "codeCommune": "06138", - "libelleAcheminement": "THEOULE SUR MER", - "nomCommune": "THEOULE SUR MER" + "codePostal": "03140", + "codeCommune": "03237", + "libelleAcheminement": "ST GERMAIN DE SALLES", + "nomCommune": "ST GERMAIN DE SALLES" }, { - "codePostal": "08300", - "codeCommune": "08435", - "libelleAcheminement": "TAGNON", - "nomCommune": "TAGNON" + "codePostal": "16480", + "codeCommune": "16357", + "libelleAcheminement": "ST VALLIER", + "nomCommune": "ST VALLIER" }, { - "codePostal": "06440", - "codeCommune": "06142", - "libelleAcheminement": "TOUET DE L ESCARENE", - "nomCommune": "TOUET DE L ESCARENE" + "codePostal": "17530", + "codeCommune": "17021", + "libelleAcheminement": "ARVERT", + "nomCommune": "ARVERT" }, { - "codePostal": "08360", - "codeCommune": "08438", - "libelleAcheminement": "TAIZY", - "nomCommune": "TAIZY" + "codePostal": "02880", + "codeCommune": "02537", + "libelleAcheminement": "NANTEUIL LA FOSSE", + "nomCommune": "NANTEUIL LA FOSSE" }, { - "codePostal": "06420", - "codeCommune": "06144", - "libelleAcheminement": "LA TOUR", - "nomCommune": "LA TOUR" + "codePostal": "03150", + "codeCommune": "03242", + "libelleAcheminement": "ST LOUP", + "nomCommune": "ST LOUP" }, { - "codePostal": "08800", - "codeCommune": "08448", - "libelleAcheminement": "THILAY", - "nomCommune": "THILAY" + "codePostal": "16190", + "codeCommune": "16362", + "libelleAcheminement": "SALLES LAVALETTE", + "nomCommune": "SALLES LAVALETTE" }, { - "codePostal": "06830", - "codeCommune": "06145", - "libelleAcheminement": "TOURETTE DU CHATEAU", - "nomCommune": "TOURETTE DU CHATEAU" + "codePostal": "17770", + "codeCommune": "17026", + "libelleAcheminement": "AUTHON EBEON", + "nomCommune": "AUTHON EBEON" }, { - "codePostal": "08800", - "codeCommune": "08448", - "libelleAcheminement": "THILAY", - "nomCommune": "THILAY" + "codePostal": "02500", + "codeCommune": "02544", + "libelleAcheminement": "NEUVE MAISON", + "nomCommune": "NEUVE MAISON" }, { - "codePostal": "06690", - "codeCommune": "06147", - "libelleAcheminement": "TOURRETTE LEVENS", - "nomCommune": "TOURRETTE LEVENS" + "codePostal": "03390", + "codeCommune": "03243", + "libelleAcheminement": "ST MARCEL EN MURAT", + "nomCommune": "ST MARCEL EN MURAT" }, { - "codePostal": "08460", - "codeCommune": "08449", - "libelleAcheminement": "THIN LE MOUTIER", - "nomCommune": "THIN LE MOUTIER" + "codePostal": "16240", + "codeCommune": "16373", + "libelleAcheminement": "SOUVIGNE", + "nomCommune": "SOUVIGNE" }, { - "codePostal": "06420", - "codeCommune": "06153", - "libelleAcheminement": "VALDEBLORE", - "nomCommune": "VALDEBLORE" + "codePostal": "17160", + "codeCommune": "17031", + "libelleAcheminement": "BALLANS", + "nomCommune": "BALLANS" }, { - "codePostal": "08300", - "codeCommune": "08452", - "libelleAcheminement": "THUGNY TRUGNY", - "nomCommune": "THUGNY TRUGNY" + "codePostal": "02200", + "codeCommune": "02564", + "libelleAcheminement": "NOYANT ET ACONIN", + "nomCommune": "NOYANT ET ACONIN" }, { - "codePostal": "06430", - "codeCommune": "06163", - "libelleAcheminement": "TENDE", - "nomCommune": "TENDE" + "codePostal": "03250", + "codeCommune": "03248", + "libelleAcheminement": "ST NICOLAS DES BIEFS", + "nomCommune": "ST NICOLAS DES BIEFS" }, { - "codePostal": "08400", - "codeCommune": "08453", - "libelleAcheminement": "TOGES", - "nomCommune": "TOGES" + "codePostal": "16600", + "codeCommune": "16385", + "libelleAcheminement": "TOUVRE", + "nomCommune": "TOUVRE" }, { - "codePostal": "06430", - "codeCommune": "06163", - "libelleAcheminement": "TENDE", - "nomCommune": "TENDE" + "codePostal": "17360", + "codeCommune": "17033", + "libelleAcheminement": "LA BARDE", + "nomCommune": "LA BARDE" }, { - "codePostal": "08130", - "codeCommune": "08458", - "libelleAcheminement": "TOURTERON", - "nomCommune": "TOURTERON" + "codePostal": "02450", + "codeCommune": "02569", + "libelleAcheminement": "OISY", + "nomCommune": "OISY" }, { - "codePostal": "07370", - "codeCommune": "07015", - "libelleAcheminement": "ARRAS SUR RHONE", - "nomCommune": "ARRAS SUR RHONE" + "codePostal": "03370", + "codeCommune": "03249", + "libelleAcheminement": "ST PALAIS", + "nomCommune": "ST PALAIS" }, { - "codePostal": "08130", - "codeCommune": "08462", - "libelleAcheminement": "VAUX CHAMPAGNE", - "nomCommune": "VAUX CHAMPAGNE" + "codePostal": "16140", + "codeCommune": "16397", + "libelleAcheminement": "VERDILLE", + "nomCommune": "VERDILLE" }, { - "codePostal": "07140", - "codeCommune": "07017", - "libelleAcheminement": "LES ASSIONS", - "nomCommune": "LES ASSIONS" + "codePostal": "17210", + "codeCommune": "17038", + "libelleAcheminement": "BEDENAC", + "nomCommune": "BEDENAC" }, { - "codePostal": "08210", - "codeCommune": "08466", - "libelleAcheminement": "VAUX LES MOUZON", - "nomCommune": "VAUX LES MOUZON" + "codePostal": "02480", + "codeCommune": "02570", + "libelleAcheminement": "OLLEZY", + "nomCommune": "OLLEZY" }, { - "codePostal": "07200", - "codeCommune": "07019", - "libelleAcheminement": "AUBENAS", - "nomCommune": "AUBENAS" + "codePostal": "03290", + "codeCommune": "03253", + "libelleAcheminement": "ST POURCAIN SUR BESBRE", + "nomCommune": "ST POURCAIN SUR BESBRE" }, { - "codePostal": "08150", - "codeCommune": "08468", - "libelleAcheminement": "VAUX VILLAINE", - "nomCommune": "VAUX VILLAINE" + "codePostal": "16230", + "codeCommune": "16414", + "libelleAcheminement": "VILLOGNON", + "nomCommune": "VILLOGNON" }, { - "codePostal": "07210", - "codeCommune": "07022", - "libelleAcheminement": "BAIX", - "nomCommune": "BAIX" + "codePostal": "17170", + "codeCommune": "17041", + "libelleAcheminement": "BENON", + "nomCommune": "BENON" }, { - "codePostal": "08000", - "codeCommune": "08480", - "libelleAcheminement": "VILLERS SEMEUSE", - "nomCommune": "VILLERS SEMEUSE" + "codePostal": "02100", + "codeCommune": "02571", + "libelleAcheminement": "OMISSY", + "nomCommune": "OMISSY" }, { - "codePostal": "07460", - "codeCommune": "07024", - "libelleAcheminement": "BANNE", - "nomCommune": "BANNE" + "codePostal": "03800", + "codeCommune": "03255", + "libelleAcheminement": "ST PRIEST D ANDELOT", + "nomCommune": "ST PRIEST D ANDELOT" }, { - "codePostal": "08320", - "codeCommune": "08486", - "libelleAcheminement": "VIREUX MOLHAIN", - "nomCommune": "VIREUX MOLHAIN" + "codePostal": "16310", + "codeCommune": "16416", + "libelleAcheminement": "VITRAC ST VINCENT", + "nomCommune": "VITRAC ST VINCENT" }, { - "codePostal": "07800", - "codeCommune": "07027", - "libelleAcheminement": "BEAUCHASTEL", - "nomCommune": "BEAUCHASTEL" + "codePostal": "17770", + "codeCommune": "17042", + "libelleAcheminement": "BERCLOUX", + "nomCommune": "BERCLOUX" }, { - "codePostal": "08400", - "codeCommune": "08490", - "libelleAcheminement": "VOUZIERS", - "nomCommune": "VOUZIERS" + "codePostal": "02860", + "codeCommune": "02573", + "libelleAcheminement": "ORGEVAL", + "nomCommune": "ORGEVAL" }, { - "codePostal": "07460", - "codeCommune": "07031", - "libelleAcheminement": "BERRIAS ET CASTELJAU", - "nomCommune": "BERRIAS ET CASTELJAU" + "codePostal": "03240", + "codeCommune": "03260", + "libelleAcheminement": "ST SORNIN", + "nomCommune": "ST SORNIN" }, { - "codePostal": "08430", - "codeCommune": "08503", - "libelleAcheminement": "YVERNAUMONT", - "nomCommune": "YVERNAUMONT" + "codePostal": "16410", + "codeCommune": "16422", + "libelleAcheminement": "VOUZAN", + "nomCommune": "VOUZAN" }, { - "codePostal": "07700", - "codeCommune": "07042", - "libelleAcheminement": "BOURG ST ANDEOL", - "nomCommune": "BOURG ST ANDEOL" + "codePostal": "17330", + "codeCommune": "17043", + "libelleAcheminement": "BERNAY ST MARTIN", + "nomCommune": "BERNAY ST MARTIN" }, { - "codePostal": "09240", - "codeCommune": "09001", - "libelleAcheminement": "AIGUES JUNTES", - "nomCommune": "AIGUES JUNTES" + "codePostal": "02390", + "codeCommune": "02575", + "libelleAcheminement": "ORIGNY STE BENOITE", + "nomCommune": "ORIGNY STE BENOITE" }, { - "codePostal": "07240", - "codeCommune": "07060", - "libelleAcheminement": "CHATEAUNEUF DE VERNOUX", - "nomCommune": "CHATEAUNEUF DE VERNOUX" + "codePostal": "03220", + "codeCommune": "03263", + "libelleAcheminement": "ST VOIR", + "nomCommune": "ST VOIR" }, { - "codePostal": "09000", - "codeCommune": "09013", - "libelleAcheminement": "ARABAUX", - "nomCommune": "ARABAUX" + "codePostal": "16330", + "codeCommune": "16423", + "libelleAcheminement": "XAMBES", + "nomCommune": "XAMBES" }, { - "codePostal": "07380", - "codeCommune": "07065", - "libelleAcheminement": "CHIROLS", - "nomCommune": "CHIROLS" + "codePostal": "17460", + "codeCommune": "17044", + "libelleAcheminement": "BERNEUIL", + "nomCommune": "BERNEUIL" }, { - "codePostal": "09800", - "codeCommune": "09018", - "libelleAcheminement": "ARROUT", - "nomCommune": "ARROUT" + "codePostal": "02370", + "codeCommune": "02577", + "libelleAcheminement": "OSTEL", + "nomCommune": "OSTEL" }, { - "codePostal": "07130", - "codeCommune": "07070", - "libelleAcheminement": "CORNAS", - "nomCommune": "CORNAS" + "codePostal": "03150", + "codeCommune": "03266", + "libelleAcheminement": "SANSSAT", + "nomCommune": "SANSSAT" }, { - "codePostal": "09310", - "codeCommune": "09024", - "libelleAcheminement": "ASTON", - "nomCommune": "ASTON" + "codePostal": "17230", + "codeCommune": "17008", + "libelleAcheminement": "ANDILLY", + "nomCommune": "ANDILLY" }, { - "codePostal": "07470", - "codeCommune": "07071", - "libelleAcheminement": "COUCOURON", - "nomCommune": "COUCOURON" + "codePostal": "17430", + "codeCommune": "17053", + "libelleAcheminement": "BORDS", + "nomCommune": "BORDS" }, { - "codePostal": "09800", - "codeCommune": "09026", - "libelleAcheminement": "AUDRESSEIN", - "nomCommune": "AUDRESSEIN" + "codePostal": "02360", + "codeCommune": "02586", + "libelleAcheminement": "PARFONDEVAL", + "nomCommune": "PARFONDEVAL" }, { - "codePostal": "07000", - "codeCommune": "07074", - "libelleAcheminement": "CREYSSEILLES", - "nomCommune": "CREYSSEILLES" + "codePostal": "03500", + "codeCommune": "03267", + "libelleAcheminement": "SAULCET", + "nomCommune": "SAULCET" }, { - "codePostal": "09800", - "codeCommune": "09027", - "libelleAcheminement": "AUGIREIN", - "nomCommune": "AUGIREIN" + "codePostal": "17230", + "codeCommune": "17008", + "libelleAcheminement": "ANDILLY", + "nomCommune": "ANDILLY" }, { - "codePostal": "07320", - "codeCommune": "07080", - "libelleAcheminement": "DEVESSET", - "nomCommune": "DEVESSET" + "codePostal": "17800", + "codeCommune": "17056", + "libelleAcheminement": "BOUGNEAU", + "nomCommune": "BOUGNEAU" }, { - "codePostal": "09600", - "codeCommune": "09048", - "libelleAcheminement": "BELLOC", - "nomCommune": "BELLOC" + "codePostal": "02310", + "codeCommune": "02596", + "libelleAcheminement": "PAVANT", + "nomCommune": "PAVANT" }, { - "codePostal": "07160", - "codeCommune": "07082", - "libelleAcheminement": "DORNAS", - "nomCommune": "DORNAS" + "codePostal": "03800", + "codeCommune": "03268", + "libelleAcheminement": "SAULZET", + "nomCommune": "SAULZET" }, { - "codePostal": "09500", - "codeCommune": "09052", - "libelleAcheminement": "BESSET", - "nomCommune": "BESSET" + "codePostal": "17690", + "codeCommune": "17010", + "libelleAcheminement": "ANGOULINS", + "nomCommune": "ANGOULINS" }, { - "codePostal": "07370", - "codeCommune": "07084", - "libelleAcheminement": "ECLASSAN", - "nomCommune": "ECLASSAN" + "codePostal": "17220", + "codeCommune": "17059", + "libelleAcheminement": "BOURGNEUF", + "nomCommune": "BOURGNEUF" }, { - "codePostal": "09100", - "codeCommune": "09060", - "libelleAcheminement": "BONNAC", - "nomCommune": "BONNAC" + "codePostal": "02480", + "codeCommune": "02604", + "libelleAcheminement": "PITHON", + "nomCommune": "PITHON" }, { - "codePostal": "07300", - "codeCommune": "07086", - "libelleAcheminement": "ETABLES", - "nomCommune": "ETABLES" + "codePostal": "03230", + "codeCommune": "03283", + "libelleAcheminement": "THIEL SUR ACOLIN", + "nomCommune": "THIEL SUR ACOLIN" }, { - "codePostal": "09000", - "codeCommune": "09063", - "libelleAcheminement": "LE BOSC", - "nomCommune": "LE BOSC" + "codePostal": "17350", + "codeCommune": "17011", + "libelleAcheminement": "ANNEPONT", + "nomCommune": "ANNEPONT" }, { - "codePostal": "07340", - "codeCommune": "07089", - "libelleAcheminement": "FELINES", - "nomCommune": "FELINES" + "codePostal": "17870", + "codeCommune": "17065", + "libelleAcheminement": "BREUIL MAGNE", + "nomCommune": "BREUIL MAGNE" }, { - "codePostal": "09700", - "codeCommune": "09067", - "libelleAcheminement": "BRIE", - "nomCommune": "BRIE" + "codePostal": "02160", + "codeCommune": "02613", + "libelleAcheminement": "PONTAVERT", + "nomCommune": "PONTAVERT" }, { - "codePostal": "07190", - "codeCommune": "07096", - "libelleAcheminement": "GLUIRAS", - "nomCommune": "GLUIRAS" + "codePostal": "03380", + "codeCommune": "03288", + "libelleAcheminement": "TREIGNAT", + "nomCommune": "TREIGNAT" }, { - "codePostal": "09310", - "codeCommune": "09070", - "libelleAcheminement": "LES CABANNES", - "nomCommune": "LES CABANNES" + "codePostal": "17400", + "codeCommune": "17013", + "libelleAcheminement": "ANTEZANT LA CHAPELLE", + "nomCommune": "ANTEZANT LA CHAPELLE" }, { - "codePostal": "50570", - "codeCommune": "50232", - "libelleAcheminement": "HAUTEVILLE LA GUICHARD", - "nomCommune": "HAUTEVILLE LA GUICHARD" + "codePostal": "17770", + "codeCommune": "17070", + "libelleAcheminement": "BRIZAMBOURG", + "nomCommune": "BRIZAMBOURG" }, { - "codePostal": "07300", - "codeCommune": "07097", - "libelleAcheminement": "GLUN", - "nomCommune": "GLUN" + "codePostal": "02320", + "codeCommune": "02619", + "libelleAcheminement": "PREMONTRE", + "nomCommune": "PREMONTRE" }, { - "codePostal": "09240", - "codeCommune": "09071", - "libelleAcheminement": "CADARCET", - "nomCommune": "CADARCET" + "codePostal": "03360", + "codeCommune": "03293", + "libelleAcheminement": "URCAY", + "nomCommune": "URCAY" }, { - "codePostal": "50270", - "codeCommune": "50235", - "libelleAcheminement": "LA HAYE D ECTOT", - "nomCommune": "LA HAYE D ECTOT" + "codePostal": "17290", + "codeCommune": "17018", + "libelleAcheminement": "ARDILLIERES", + "nomCommune": "ARDILLIERES" }, { - "codePostal": "07120", - "codeCommune": "07101", - "libelleAcheminement": "GROSPIERRES", - "nomCommune": "GROSPIERRES" + "codePostal": "17890", + "codeCommune": "17079", + "libelleAcheminement": "CHAILLEVETTE", + "nomCommune": "CHAILLEVETTE" }, { - "codePostal": "09120", - "codeCommune": "09072", - "libelleAcheminement": "CALZAN", - "nomCommune": "CALZAN" + "codePostal": "02860", + "codeCommune": "02621", + "libelleAcheminement": "PRESLES ET THIERNY", + "nomCommune": "PRESLES ET THIERNY" }, { - "codePostal": "50250", - "codeCommune": "50236", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "03450", + "codeCommune": "03302", + "libelleAcheminement": "VEAUCE", + "nomCommune": "VEAUCE" }, { - "codePostal": "07320", - "codeCommune": "07103", - "libelleAcheminement": "ST JULIEN D INTRES", - "nomCommune": "ST JULIEN D INTRES" + "codePostal": "17470", + "codeCommune": "17024", + "libelleAcheminement": "AULNAY", + "nomCommune": "AULNAY" }, { - "codePostal": "09500", - "codeCommune": "09074", - "libelleAcheminement": "CAMON", - "nomCommune": "CAMON" + "codePostal": "17480", + "codeCommune": "17093", + "libelleAcheminement": "LE CHATEAU D OLERON", + "nomCommune": "LE CHATEAU D OLERON" }, { - "codePostal": "50580", - "codeCommune": "50236", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "02120", + "codeCommune": "02629", + "libelleAcheminement": "PUISIEUX ET CLANLIEU", + "nomCommune": "PUISIEUX ET CLANLIEU" }, { - "codePostal": "07190", - "codeCommune": "07104", - "libelleAcheminement": "ISSAMOULENC", - "nomCommune": "ISSAMOULENC" + "codePostal": "03500", + "codeCommune": "03307", + "libelleAcheminement": "VERNEUIL EN BOURBONNAIS", + "nomCommune": "VERNEUIL EN BOURBONNAIS" }, { - "codePostal": "09700", - "codeCommune": "09076", - "libelleAcheminement": "CANTE", - "nomCommune": "CANTE" + "codePostal": "17770", + "codeCommune": "17025", + "libelleAcheminement": "AUMAGNE", + "nomCommune": "AUMAGNE" }, { - "codePostal": "50340", - "codeCommune": "50238", - "libelleAcheminement": "HEAUVILLE", - "nomCommune": "HEAUVILLE" + "codePostal": "17120", + "codeCommune": "17098", + "libelleAcheminement": "CHENAC ST SEURIN D UZET", + "nomCommune": "CHENAC ST SEURIN D UZET" }, { - "codePostal": "07510", - "codeCommune": "07105", - "libelleAcheminement": "ISSANLAS", - "nomCommune": "ISSANLAS" + "codePostal": "02360", + "codeCommune": "02642", + "libelleAcheminement": "RESIGNY", + "nomCommune": "RESIGNY" }, { - "codePostal": "09420", - "codeCommune": "09082", - "libelleAcheminement": "CASTELNAU DURBAN", - "nomCommune": "CASTELNAU DURBAN" + "codePostal": "03320", + "codeCommune": "03309", + "libelleAcheminement": "LE VEURDRE", + "nomCommune": "LE VEURDRE" }, { - "codePostal": "50180", - "codeCommune": "50239", - "libelleAcheminement": "THEREVAL", - "nomCommune": "THEREVAL" + "codePostal": "17770", + "codeCommune": "17026", + "libelleAcheminement": "AUTHON EBEON", + "nomCommune": "AUTHON EBEON" }, { - "codePostal": "07380", - "codeCommune": "07107", - "libelleAcheminement": "JAUJAC", - "nomCommune": "JAUJAC" + "codePostal": "17210", + "codeCommune": "17099", + "libelleAcheminement": "CHEPNIERS", + "nomCommune": "CHEPNIERS" }, { - "codePostal": "09800", - "codeCommune": "09085", - "libelleAcheminement": "CASTILLON EN COUSERANS", - "nomCommune": "CASTILLON EN COUSERANS" + "codePostal": "02600", + "codeCommune": "02644", + "libelleAcheminement": "RETHEUIL", + "nomCommune": "RETHEUIL" }, { - "codePostal": "50540", - "codeCommune": "50256", - "libelleAcheminement": "ISIGNY LE BUAT", - "nomCommune": "ISIGNY LE BUAT" + "codePostal": "03450", + "codeCommune": "03311", + "libelleAcheminement": "VICQ", + "nomCommune": "VICQ" }, { - "codePostal": "07110", - "codeCommune": "07109", - "libelleAcheminement": "JOANNAS", - "nomCommune": "JOANNAS" + "codePostal": "17120", + "codeCommune": "17034", + "libelleAcheminement": "BARZAN", + "nomCommune": "BARZAN" }, { - "codePostal": "09160", - "codeCommune": "09086", - "libelleAcheminement": "CAUMONT", - "nomCommune": "CAUMONT" + "codePostal": "17470", + "codeCommune": "17101", + "libelleAcheminement": "CHERBONNIERES", + "nomCommune": "CHERBONNIERES" }, { - "codePostal": "50540", - "codeCommune": "50256", - "libelleAcheminement": "ISIGNY LE BUAT", - "nomCommune": "ISIGNY LE BUAT" + "codePostal": "02210", + "codeCommune": "02649", + "libelleAcheminement": "ROCOURT ST MARTIN", + "nomCommune": "ROCOURT ST MARTIN" }, { - "codePostal": "07600", - "codeCommune": "07111", - "libelleAcheminement": "JUVINAS", - "nomCommune": "JUVINAS" + "codePostal": "03430", + "codeCommune": "03312", + "libelleAcheminement": "VIEURE", + "nomCommune": "VIEURE" }, { - "codePostal": "09120", - "codeCommune": "09090", - "libelleAcheminement": "CAZAUX", - "nomCommune": "CAZAUX" + "codePostal": "17800", + "codeCommune": "17039", + "libelleAcheminement": "BELLUIRE", + "nomCommune": "BELLUIRE" }, { - "codePostal": "50540", - "codeCommune": "50256", - "libelleAcheminement": "ISIGNY LE BUAT", - "nomCommune": "ISIGNY LE BUAT" + "codePostal": "17290", + "codeCommune": "17107", + "libelleAcheminement": "CIRE D AUNIS", + "nomCommune": "CIRE D AUNIS" }, { - "codePostal": "07150", - "codeCommune": "07126", - "libelleAcheminement": "LAGORCE", - "nomCommune": "LAGORCE" + "codePostal": "02310", + "codeCommune": "02653", + "libelleAcheminement": "ROMENY SUR MARNE", + "nomCommune": "ROMENY SUR MARNE" }, { - "codePostal": "09420", - "codeCommune": "09097", - "libelleAcheminement": "CLERMONT", - "nomCommune": "CLERMONT" + "codePostal": "03350", + "codeCommune": "03313", + "libelleAcheminement": "LE VILHAIN", + "nomCommune": "LE VILHAIN" }, { - "codePostal": "50220", - "codeCommune": "50259", - "libelleAcheminement": "JUILLEY", - "nomCommune": "JUILLEY" + "codePostal": "17250", + "codeCommune": "17045", + "libelleAcheminement": "BEURLAY", + "nomCommune": "BEURLAY" }, { - "codePostal": "07660", - "codeCommune": "07137", - "libelleAcheminement": "LAVILLATTE", - "nomCommune": "LAVILLATTE" + "codePostal": "17220", + "codeCommune": "17109", + "libelleAcheminement": "CLAVETTE", + "nomCommune": "CLAVETTE" }, { - "codePostal": "09120", - "codeCommune": "09104", - "libelleAcheminement": "DALOU", - "nomCommune": "DALOU" + "codePostal": "02590", + "codeCommune": "02658", + "libelleAcheminement": "ROUPY", + "nomCommune": "ROUPY" }, { - "codePostal": "50160", - "codeCommune": "50261", - "libelleAcheminement": "LAMBERVILLE", - "nomCommune": "LAMBERVILLE" + "codePostal": "04500", + "codeCommune": "04004", + "libelleAcheminement": "ALLEMAGNE EN PROVENCE", + "nomCommune": "ALLEMAGNE EN PROVENCE" }, { - "codePostal": "07660", - "codeCommune": "07142", - "libelleAcheminement": "LESPERON", - "nomCommune": "LESPERON" + "codePostal": "17470", + "codeCommune": "17049", + "libelleAcheminement": "BLANZAY SUR BOUTONNE", + "nomCommune": "BLANZAY SUR BOUTONNE" }, { - "codePostal": "09240", - "codeCommune": "09108", - "libelleAcheminement": "DURBAN SUR ARIZE", - "nomCommune": "DURBAN SUR ARIZE" + "codePostal": "17360", + "codeCommune": "17113", + "libelleAcheminement": "LA CLOTTE", + "nomCommune": "LA CLOTTE" }, { - "codePostal": "50430", - "codeCommune": "50267", - "libelleAcheminement": "LESSAY", - "nomCommune": "LESSAY" + "codePostal": "02000", + "codeCommune": "02661", + "libelleAcheminement": "ROYAUCOURT ET CHAILVET", + "nomCommune": "ROYAUCOURT ET CHAILVET" }, { - "codePostal": "07170", - "codeCommune": "07145", - "libelleAcheminement": "LUSSAS", - "nomCommune": "LUSSAS" + "codePostal": "04260", + "codeCommune": "04006", + "libelleAcheminement": "ALLOS", + "nomCommune": "ALLOS" }, { - "codePostal": "09200", - "codeCommune": "09110", - "libelleAcheminement": "ENCOURTIECH", - "nomCommune": "ENCOURTIECH" + "codePostal": "17580", + "codeCommune": "17051", + "libelleAcheminement": "LE BOIS PLAGE EN RE", + "nomCommune": "LE BOIS PLAGE EN RE" }, { - "codePostal": "50660", - "codeCommune": "50272", - "libelleAcheminement": "LINGREVILLE", - "nomCommune": "LINGREVILLE" + "codePostal": "17330", + "codeCommune": "17114", + "libelleAcheminement": "COIVERT", + "nomCommune": "COIVERT" }, { - "codePostal": "07000", - "codeCommune": "07146", - "libelleAcheminement": "LYAS", - "nomCommune": "LYAS" + "codePostal": "02210", + "codeCommune": "02662", + "libelleAcheminement": "ROZET ST ALBIN", + "nomCommune": "ROZET ST ALBIN" }, { - "codePostal": "09200", - "codeCommune": "09119", - "libelleAcheminement": "EYCHEIL", - "nomCommune": "EYCHEIL" + "codePostal": "04420", + "codeCommune": "04009", + "libelleAcheminement": "ARCHAIL", + "nomCommune": "ARCHAIL" }, { - "codePostal": "50510", - "codeCommune": "50278", - "libelleAcheminement": "LE LOREUR", - "nomCommune": "LE LOREUR" + "codePostal": "17120", + "codeCommune": "17060", + "libelleAcheminement": "BOUTENAC TOUVENT", + "nomCommune": "BOUTENAC TOUVENT" }, { - "codePostal": "07160", - "codeCommune": "07150", - "libelleAcheminement": "MARIAC", - "nomCommune": "MARIAC" + "codePostal": "17170", + "codeCommune": "17127", + "libelleAcheminement": "COURCON", + "nomCommune": "COURCON" }, { - "codePostal": "09190", - "codeCommune": "09128", - "libelleAcheminement": "GAJAN", - "nomCommune": "GAJAN" + "codePostal": "02260", + "codeCommune": "02670", + "libelleAcheminement": "ST ALGIS", + "nomCommune": "ST ALGIS" }, { - "codePostal": "50220", - "codeCommune": "50290", - "libelleAcheminement": "MARCILLY", - "nomCommune": "MARCILLY" + "codePostal": "04150", + "codeCommune": "04018", + "libelleAcheminement": "BANON", + "nomCommune": "BANON" }, { - "codePostal": "07380", - "codeCommune": "07156", - "libelleAcheminement": "MEYRAS", - "nomCommune": "MEYRAS" + "codePostal": "17920", + "codeCommune": "17064", + "libelleAcheminement": "BREUILLET", + "nomCommune": "BREUILLET" }, { - "codePostal": "09000", - "codeCommune": "09130", - "libelleAcheminement": "GANAC", - "nomCommune": "GANAC" + "codePostal": "17170", + "codeCommune": "17132", + "libelleAcheminement": "CRAMCHABAN", + "nomCommune": "CRAMCHABAN" }, { - "codePostal": "50690", - "codeCommune": "50294", - "libelleAcheminement": "MARTINVAST", - "nomCommune": "MARTINVAST" + "codePostal": "02300", + "codeCommune": "02671", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "07530", - "codeCommune": "07158", - "libelleAcheminement": "MEZILHAC", - "nomCommune": "MEZILHAC" + "codePostal": "04330", + "codeCommune": "04022", + "libelleAcheminement": "BARREME", + "nomCommune": "BARREME" }, { - "codePostal": "09390", - "codeCommune": "09139", - "libelleAcheminement": "L HOSPITALET PRES L ANDORRE", - "nomCommune": "L HOSPITALET PRES L ANDORRE" + "codePostal": "17520", + "codeCommune": "17066", + "libelleAcheminement": "BRIE SOUS ARCHIAC", + "nomCommune": "BRIE SOUS ARCHIAC" }, { - "codePostal": "50520", - "codeCommune": "50300", - "libelleAcheminement": "LE MESNIL ADELEE", - "nomCommune": "LE MESNIL ADELEE" + "codePostal": "17350", + "codeCommune": "17134", + "libelleAcheminement": "CRAZANNES", + "nomCommune": "CRAZANNES" }, { - "codePostal": "07290", - "codeCommune": "07188", - "libelleAcheminement": "QUINTENAS", - "nomCommune": "QUINTENAS" + "codePostal": "02810", + "codeCommune": "02679", + "libelleAcheminement": "ST GENGOULPH", + "nomCommune": "ST GENGOULPH" }, { - "codePostal": "09300", - "codeCommune": "09142", - "libelleAcheminement": "ILHAT", - "nomCommune": "ILHAT" + "codePostal": "04370", + "codeCommune": "04025", + "libelleAcheminement": "BEAUVEZER", + "nomCommune": "BEAUVEZER" }, { - "codePostal": "50510", - "codeCommune": "50304", - "libelleAcheminement": "LE MESNIL AUBERT", - "nomCommune": "LE MESNIL AUBERT" + "codePostal": "17160", + "codeCommune": "17071", + "libelleAcheminement": "LA BROUSSE", + "nomCommune": "LA BROUSSE" }, { - "codePostal": "07800", - "codeCommune": "07198", - "libelleAcheminement": "ROMPON", - "nomCommune": "ROMPON" + "codePostal": "17330", + "codeCommune": "17137", + "libelleAcheminement": "LA CROIX COMTESSE", + "nomCommune": "LA CROIX COMTESSE" }, { - "codePostal": "09130", - "codeCommune": "09151", - "libelleAcheminement": "LANOUX", - "nomCommune": "LANOUX" + "codePostal": "02830", + "codeCommune": "02684", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "50450", - "codeCommune": "50326", - "libelleAcheminement": "LE MESNIL VILLEMAN", - "nomCommune": "LE MESNIL VILLEMAN" + "codePostal": "04270", + "codeCommune": "04031", + "libelleAcheminement": "BRAS D ASSE", + "nomCommune": "BRAS D ASSE" }, { - "codePostal": "07260", - "codeCommune": "07199", - "libelleAcheminement": "ROSIERES", - "nomCommune": "ROSIERES" + "codePostal": "17520", + "codeCommune": "17076", + "libelleAcheminement": "CELLES", + "nomCommune": "CELLES" }, { - "codePostal": "09240", - "codeCommune": "09154", - "libelleAcheminement": "LARBONT", - "nomCommune": "LARBONT" + "codePostal": "17139", + "codeCommune": "17142", + "libelleAcheminement": "DOMPIERRE SUR MER", + "nomCommune": "DOMPIERRE SUR MER" }, { - "codePostal": "50190", - "codeCommune": "50328", - "libelleAcheminement": "MILLIERES", - "nomCommune": "MILLIERES" + "codePostal": "02410", + "codeCommune": "02685", + "libelleAcheminement": "ST NICOLAS AUX BOIS", + "nomCommune": "ST NICOLAS AUX BOIS" }, { - "codePostal": "07120", - "codeCommune": "07201", - "libelleAcheminement": "RUOMS", - "nomCommune": "RUOMS" + "codePostal": "04120", + "codeCommune": "04039", + "libelleAcheminement": "CASTELLANE", + "nomCommune": "CASTELLANE" }, { - "codePostal": "09310", - "codeCommune": "09159", - "libelleAcheminement": "LASSUR", - "nomCommune": "LASSUR" + "codePostal": "17800", + "codeCommune": "17078", + "libelleAcheminement": "CHADENAC", + "nomCommune": "CHADENAC" }, { - "codePostal": "50410", - "codeCommune": "50334", - "libelleAcheminement": "MONTABOT", - "nomCommune": "MONTABOT" + "codePostal": "17139", + "codeCommune": "17142", + "libelleAcheminement": "DOMPIERRE SUR MER", + "nomCommune": "DOMPIERRE SUR MER" }, { - "codePostal": "07260", - "codeCommune": "07202", - "libelleAcheminement": "SABLIERES", - "nomCommune": "SABLIERES" + "codePostal": "02300", + "codeCommune": "02686", + "libelleAcheminement": "ST PAUL AUX BOIS", + "nomCommune": "ST PAUL AUX BOIS" }, { - "codePostal": "09600", - "codeCommune": "09161", - "libelleAcheminement": "LERAN", - "nomCommune": "LERAN" + "codePostal": "04120", + "codeCommune": "04039", + "libelleAcheminement": "CASTELLANE", + "nomCommune": "CASTELLANE" }, { - "codePostal": "50140", - "codeCommune": "50359", - "libelleAcheminement": "MORTAIN BOCAGE", - "nomCommune": "MORTAIN BOCAGE" + "codePostal": "17290", + "codeCommune": "17080", + "libelleAcheminement": "CHAMBON", + "nomCommune": "CHAMBON" }, { - "codePostal": "07450", - "codeCommune": "07203", - "libelleAcheminement": "SAGNES ET GOUDOULET", - "nomCommune": "SAGNES ET GOUDOULET" + "codePostal": "17240", + "codeCommune": "17160", + "libelleAcheminement": "FLOIRAC", + "nomCommune": "FLOIRAC" }, { - "codePostal": "09100", - "codeCommune": "09163", - "libelleAcheminement": "LESCOUSSE", - "nomCommune": "LESCOUSSE" + "codePostal": "02640", + "codeCommune": "02694", + "libelleAcheminement": "ST SIMON", + "nomCommune": "ST SIMON" }, { - "codePostal": "50860", - "codeCommune": "50363", - "libelleAcheminement": "MOYON VILLAGES", - "nomCommune": "MOYON VILLAGES" + "codePostal": "04320", + "codeCommune": "04043", + "libelleAcheminement": "VAL DE CHALVAGNE", + "nomCommune": "VAL DE CHALVAGNE" }, { - "codePostal": "07320", - "codeCommune": "07204", - "libelleAcheminement": "ST AGREVE", - "nomCommune": "ST AGREVE" + "codePostal": "17130", + "codeCommune": "17081", + "libelleAcheminement": "CHAMOUILLAC", + "nomCommune": "CHAMOUILLAC" }, { - "codePostal": "09420", - "codeCommune": "09164", - "libelleAcheminement": "LESCURE", - "nomCommune": "LESCURE" + "codePostal": "17630", + "codeCommune": "17161", + "libelleAcheminement": "LA FLOTTE", + "nomCommune": "LA FLOTTE" }, { - "codePostal": "50200", - "codeCommune": "50376", - "libelleAcheminement": "NICORPS", - "nomCommune": "NICORPS" + "codePostal": "02590", + "codeCommune": "02702", + "libelleAcheminement": "SAVY", + "nomCommune": "SAVY" }, { - "codePostal": "07230", - "codeCommune": "07213", - "libelleAcheminement": "ST ANDRE LACHAMP", - "nomCommune": "ST ANDRE LACHAMP" + "codePostal": "04320", + "codeCommune": "04043", + "libelleAcheminement": "VAL DE CHALVAGNE", + "nomCommune": "VAL DE CHALVAGNE" }, { - "codePostal": "09250", - "codeCommune": "09171", - "libelleAcheminement": "LORDAT", - "nomCommune": "LORDAT" + "codePostal": "17500", + "codeCommune": "17082", + "libelleAcheminement": "CHAMPAGNAC", + "nomCommune": "CHAMPAGNAC" }, { - "codePostal": "50390", - "codeCommune": "50387", - "libelleAcheminement": "ORGLANDES", - "nomCommune": "ORGLANDES" + "codePostal": "17260", + "codeCommune": "17178", + "libelleAcheminement": "GIVREZAC", + "nomCommune": "GIVREZAC" }, { - "codePostal": "07160", - "codeCommune": "07215", - "libelleAcheminement": "ST BARTHELEMY LE MEIL", - "nomCommune": "ST BARTHELEMY LE MEIL" + "codePostal": "02200", + "codeCommune": "02706", + "libelleAcheminement": "SEPTMONTS", + "nomCommune": "SEPTMONTS" }, { - "codePostal": "09160", - "codeCommune": "09183", - "libelleAcheminement": "MAUVEZIN DE PRAT", - "nomCommune": "MAUVEZIN DE PRAT" + "codePostal": "04280", + "codeCommune": "04045", + "libelleAcheminement": "CERESTE", + "nomCommune": "CERESTE" }, { - "codePostal": "50600", - "codeCommune": "50391", - "libelleAcheminement": "GRANDPARIGNY", - "nomCommune": "GRANDPARIGNY" + "codePostal": "17240", + "codeCommune": "17084", + "libelleAcheminement": "CHAMPAGNOLLES", + "nomCommune": "CHAMPAGNOLLES" }, { - "codePostal": "07270", - "codeCommune": "07216", - "libelleAcheminement": "ST BARTHELEMY GROZON", - "nomCommune": "ST BARTHELEMY GROZON" + "codePostal": "17600", + "codeCommune": "17214", + "libelleAcheminement": "LUCHAT", + "nomCommune": "LUCHAT" }, { - "codePostal": "09460", - "codeCommune": "09193", - "libelleAcheminement": "MIJANES", - "nomCommune": "MIJANES" + "codePostal": "02240", + "codeCommune": "02717", + "libelleAcheminement": "SERY LES MEZIERES", + "nomCommune": "SERY LES MEZIERES" }, { - "codePostal": "50160", - "codeCommune": "50398", - "libelleAcheminement": "LE PERRON", - "nomCommune": "LE PERRON" + "codePostal": "04250", + "codeCommune": "04050", + "libelleAcheminement": "CHATEAUFORT", + "nomCommune": "CHATEAUFORT" }, { - "codePostal": "07270", - "codeCommune": "07218", - "libelleAcheminement": "ST BASILE", - "nomCommune": "ST BASILE" + "codePostal": "17230", + "codeCommune": "17091", + "libelleAcheminement": "CHARRON", + "nomCommune": "CHARRON" }, { - "codePostal": "09200", - "codeCommune": "09209", - "libelleAcheminement": "MONTJOIE EN COUSERANS", - "nomCommune": "MONTJOIE EN COUSERANS" + "codePostal": "17500", + "codeCommune": "17215", + "libelleAcheminement": "LUSSAC", + "nomCommune": "LUSSAC" }, { - "codePostal": "50250", - "codeCommune": "50400", - "libelleAcheminement": "PICAUVILLE", - "nomCommune": "PICAUVILLE" + "codePostal": "02470", + "codeCommune": "02724", + "libelleAcheminement": "SOMMELANS", + "nomCommune": "SOMMELANS" }, { - "codePostal": "07200", - "codeCommune": "07229", - "libelleAcheminement": "ST DIDIER SOUS AUBENAS", - "nomCommune": "ST DIDIER SOUS AUBENAS" + "codePostal": "04530", + "codeCommune": "04062", + "libelleAcheminement": "LA CONDAMINE CHATELARD", + "nomCommune": "LA CONDAMINE CHATELARD" }, { - "codePostal": "09200", - "codeCommune": "09209", - "libelleAcheminement": "MONTJOIE EN COUSERANS", - "nomCommune": "MONTJOIE EN COUSERANS" + "codePostal": "17340", + "codeCommune": "17094", + "libelleAcheminement": "CHATELAILLON PLAGE", + "nomCommune": "CHATELAILLON PLAGE" }, { - "codePostal": "50250", - "codeCommune": "50400", - "libelleAcheminement": "PICAUVILLE", - "nomCommune": "PICAUVILLE" + "codePostal": "17320", + "codeCommune": "17219", + "libelleAcheminement": "MARENNES HIERS BROUAGE", + "nomCommune": "MARENNES HIERS BROUAGE" }, { - "codePostal": "07200", - "codeCommune": "07231", - "libelleAcheminement": "ST ETIENNE DE FONTBELLON", - "nomCommune": "ST ETIENNE DE FONTBELLON" + "codePostal": "02480", + "codeCommune": "02726", + "libelleAcheminement": "SOMMETTE EAUCOURT", + "nomCommune": "SOMMETTE EAUCOURT" }, { - "codePostal": "09240", - "codeCommune": "09212", - "libelleAcheminement": "MONTSERON", - "nomCommune": "MONTSERON" + "codePostal": "05110", + "codeCommune": "04066", + "libelleAcheminement": "CURBANS", + "nomCommune": "CURBANS" }, { - "codePostal": "50360", - "codeCommune": "50400", - "libelleAcheminement": "PICAUVILLE", - "nomCommune": "PICAUVILLE" + "codePostal": "17510", + "codeCommune": "17105", + "libelleAcheminement": "CHIVES", + "nomCommune": "CHIVES" }, { - "codePostal": "07230", - "codeCommune": "07238", - "libelleAcheminement": "ST GENEST DE BEAUZON", - "nomCommune": "ST GENEST DE BEAUZON" + "codePostal": "17700", + "codeCommune": "17221", + "libelleAcheminement": "MARSAIS", + "nomCommune": "MARSAIS" }, { - "codePostal": "09400", - "codeCommune": "09217", - "libelleAcheminement": "NIAUX", - "nomCommune": "NIAUX" + "codePostal": "02600", + "codeCommune": "02729", + "libelleAcheminement": "SOUCY", + "nomCommune": "SOUCY" }, { - "codePostal": "50340", - "codeCommune": "50402", - "libelleAcheminement": "LES PIEUX", - "nomCommune": "LES PIEUX" + "codePostal": "04270", + "codeCommune": "04074", + "libelleAcheminement": "ENTRAGES", + "nomCommune": "ENTRAGES" }, { - "codePostal": "07340", - "codeCommune": "07243", - "libelleAcheminement": "ST JACQUES D ATTICIEUX", - "nomCommune": "ST JACQUES D ATTICIEUX" + "codePostal": "17520", + "codeCommune": "17106", + "libelleAcheminement": "CIERZAC", + "nomCommune": "CIERZAC" }, { - "codePostal": "09130", - "codeCommune": "09224", - "libelleAcheminement": "PAILHES", - "nomCommune": "PAILHES" + "codePostal": "17600", + "codeCommune": "17228", + "libelleAcheminement": "MEDIS", + "nomCommune": "MEDIS" }, { - "codePostal": "50250", - "codeCommune": "50405", - "libelleAcheminement": "LE PLESSIS LASTELLE", - "nomCommune": "LE PLESSIS LASTELLE" + "codePostal": "02290", + "codeCommune": "02736", + "libelleAcheminement": "TARTIERS", + "nomCommune": "TARTIERS" }, { - "codePostal": "07530", - "codeCommune": "07251", - "libelleAcheminement": "ST JOSEPH DES BANCS", - "nomCommune": "ST JOSEPH DES BANCS" + "codePostal": "04200", + "codeCommune": "04075", + "libelleAcheminement": "ENTREPIERRES", + "nomCommune": "ENTREPIERRES" }, { - "codePostal": "09110", - "codeCommune": "09232", - "libelleAcheminement": "PRADES", - "nomCommune": "PRADES" + "codePostal": "17460", + "codeCommune": "17115", + "libelleAcheminement": "COLOMBIERS", + "nomCommune": "COLOMBIERS" }, { - "codePostal": "50620", - "codeCommune": "50409", - "libelleAcheminement": "PONT HEBERT", - "nomCommune": "PONT HEBERT" + "codePostal": "17132", + "codeCommune": "17230", + "libelleAcheminement": "MESCHERS SUR GIRONDE", + "nomCommune": "MESCHERS SUR GIRONDE" }, { - "codePostal": "07200", - "codeCommune": "07254", - "libelleAcheminement": "ST JULIEN DU SERRE", - "nomCommune": "ST JULIEN DU SERRE" + "codePostal": "02700", + "codeCommune": "02738", + "libelleAcheminement": "TERGNIER", + "nomCommune": "TERGNIER" }, { - "codePostal": "09500", - "codeCommune": "09244", - "libelleAcheminement": "RIEUCROS", - "nomCommune": "RIEUCROS" + "codePostal": "04160", + "codeCommune": "04079", + "libelleAcheminement": "L ESCALE", + "nomCommune": "L ESCALE" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "17130", + "codeCommune": "17118", + "libelleAcheminement": "CORIGNAC", + "nomCommune": "CORIGNAC" }, { - "codePostal": "07590", - "codeCommune": "07262", - "libelleAcheminement": "ST LAURENT BAINS LAVAL D AURELLE", - "nomCommune": "ST LAURENT BAINS LAVAL D AURELLE" + "codePostal": "17130", + "codeCommune": "17231", + "libelleAcheminement": "MESSAC", + "nomCommune": "MESSAC" }, { - "codePostal": "09120", - "codeCommune": "09245", - "libelleAcheminement": "RIEUX DE PELLEPORT", - "nomCommune": "RIEUX DE PELLEPORT" + "codePostal": "02700", + "codeCommune": "02738", + "libelleAcheminement": "TERGNIER", + "nomCommune": "TERGNIER" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "04270", + "codeCommune": "04084", + "libelleAcheminement": "ESTOUBLON", + "nomCommune": "ESTOUBLON" }, { - "codePostal": "07170", - "codeCommune": "07263", - "libelleAcheminement": "ST LAURENT SOUS COIRON", - "nomCommune": "ST LAURENT SOUS COIRON" + "codePostal": "17800", + "codeCommune": "17122", + "libelleAcheminement": "COULONGES", + "nomCommune": "COULONGES" }, { - "codePostal": "09420", - "codeCommune": "09246", - "libelleAcheminement": "RIMONT", - "nomCommune": "RIMONT" + "codePostal": "17500", + "codeCommune": "17233", + "libelleAcheminement": "MEUX", + "nomCommune": "MEUX" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "02810", + "codeCommune": "02744", + "libelleAcheminement": "TORCY EN VALOIS", + "nomCommune": "TORCY EN VALOIS" }, { - "codePostal": "07700", - "codeCommune": "07264", - "libelleAcheminement": "ST MARCEL D ARDECHE", - "nomCommune": "ST MARCEL D ARDECHE" + "codePostal": "04270", + "codeCommune": "04084", + "libelleAcheminement": "ESTOUBLON", + "nomCommune": "ESTOUBLON" }, { - "codePostal": "09300", - "codeCommune": "09262", - "libelleAcheminement": "ST JEAN D AIGUES VIVES", - "nomCommune": "ST JEAN D AIGUES VIVES" + "codePostal": "17160", + "codeCommune": "17126", + "libelleAcheminement": "COURCERAC", + "nomCommune": "COURCERAC" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "17130", + "codeCommune": "17240", + "libelleAcheminement": "MONTENDRE", + "nomCommune": "MONTENDRE" }, { - "codePostal": "07190", - "codeCommune": "07274", - "libelleAcheminement": "ST MAURICE EN CHALENCON", - "nomCommune": "ST MAURICE EN CHALENCON" + "codePostal": "02800", + "codeCommune": "02746", + "libelleAcheminement": "TRAVECY", + "nomCommune": "TRAVECY" }, { - "codePostal": "09800", - "codeCommune": "09263", - "libelleAcheminement": "ST JEAN DU CASTILLONNAIS", - "nomCommune": "ST JEAN DU CASTILLONNAIS" + "codePostal": "04170", + "codeCommune": "04099", + "libelleAcheminement": "LAMBRUISSE", + "nomCommune": "LAMBRUISSE" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "17120", + "codeCommune": "17131", + "libelleAcheminement": "COZES", + "nomCommune": "COZES" }, { - "codePostal": "07160", - "codeCommune": "07276", - "libelleAcheminement": "ST MICHEL D AURANCE", - "nomCommune": "ST MICHEL D AURANCE" + "codePostal": "17270", + "codeCommune": "17241", + "libelleAcheminement": "MONTGUYON", + "nomCommune": "MONTGUYON" }, { - "codePostal": "09000", - "codeCommune": "09264", - "libelleAcheminement": "ST JEAN DE VERGES", - "nomCommune": "ST JEAN DE VERGES" + "codePostal": "02850", + "codeCommune": "02748", + "libelleAcheminement": "TRELOU SUR MARNE", + "nomCommune": "TRELOU SUR MARNE" }, { - "codePostal": "50580", - "codeCommune": "50412", - "libelleAcheminement": "PORT BAIL SUR MER", - "nomCommune": "PORT BAIL SUR MER" + "codePostal": "04340", + "codeCommune": "04102", + "libelleAcheminement": "LE LAUZET UBAYE", + "nomCommune": "LE LAUZET UBAYE" }, { - "codePostal": "07220", - "codeCommune": "07279", - "libelleAcheminement": "ST MONTAN", - "nomCommune": "ST MONTAN" + "codePostal": "17120", + "codeCommune": "17152", + "libelleAcheminement": "EPARGNES", + "nomCommune": "EPARGNES" }, { - "codePostal": "09500", - "codeCommune": "09266", - "libelleAcheminement": "ST JULIEN DE GRAS CAPOU", - "nomCommune": "ST JULIEN DE GRAS CAPOU" + "codePostal": "17260", + "codeCommune": "17244", + "libelleAcheminement": "MONTPELLIER DE MEDILLAN", + "nomCommune": "MONTPELLIER DE MEDILLAN" }, { - "codePostal": "50220", - "codeCommune": "50413", - "libelleAcheminement": "PRECEY", - "nomCommune": "PRECEY" + "codePostal": "02000", + "codeCommune": "02755", + "libelleAcheminement": "URCEL", + "nomCommune": "URCEL" }, { - "codePostal": "07400", - "codeCommune": "07283", - "libelleAcheminement": "ST PIERRE LA ROCHE", - "nomCommune": "ST PIERRE LA ROCHE" + "codePostal": "04300", + "codeCommune": "04104", + "libelleAcheminement": "LIMANS", + "nomCommune": "LIMANS" }, { - "codePostal": "09100", - "codeCommune": "09270", - "libelleAcheminement": "ST MARTIN D OYDES", - "nomCommune": "ST MARTIN D OYDES" + "codePostal": "17250", + "codeCommune": "17154", + "libelleAcheminement": "LES ESSARDS", + "nomCommune": "LES ESSARDS" }, { - "codePostal": "50140", - "codeCommune": "50436", - "libelleAcheminement": "ROMAGNY FONTENAY", - "nomCommune": "ROMAGNY FONTENAY" + "codePostal": "17430", + "codeCommune": "17246", + "libelleAcheminement": "MORAGNE", + "nomCommune": "MORAGNE" }, { - "codePostal": "07000", - "codeCommune": "07288", - "libelleAcheminement": "ST PRIEST", - "nomCommune": "ST PRIEST" + "codePostal": "02140", + "codeCommune": "02759", + "libelleAcheminement": "LA VALLEE AU BLE", + "nomCommune": "LA VALLEE AU BLE" }, { - "codePostal": "09100", - "codeCommune": "09271", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "04510", + "codeCommune": "04110", + "libelleAcheminement": "MALLEMOISSON", + "nomCommune": "MALLEMOISSON" }, { - "codePostal": "50680", - "codeCommune": "50446", - "libelleAcheminement": "ST ANDRE DE L EPINE", - "nomCommune": "ST ANDRE DE L EPINE" + "codePostal": "17750", + "codeCommune": "17155", + "libelleAcheminement": "ETAULES", + "nomCommune": "ETAULES" }, { - "codePostal": "07460", - "codeCommune": "07294", - "libelleAcheminement": "ST SAUVEUR DE CRUZIERES", - "nomCommune": "ST SAUVEUR DE CRUZIERES" + "codePostal": "17120", + "codeCommune": "17248", + "libelleAcheminement": "MORTAGNE SUR GIRONDE", + "nomCommune": "MORTAGNE SUR GIRONDE" }, { - "codePostal": "09000", - "codeCommune": "09272", - "libelleAcheminement": "ST PAUL DE JARRAT", - "nomCommune": "ST PAUL DE JARRAT" + "codePostal": "02160", + "codeCommune": "02764", + "libelleAcheminement": "VASSOGNE", + "nomCommune": "VASSOGNE" }, { - "codePostal": "50380", - "codeCommune": "50447", - "libelleAcheminement": "ST AUBIN DES PREAUX", - "nomCommune": "ST AUBIN DES PREAUX" + "codePostal": "04250", + "codeCommune": "04118", + "libelleAcheminement": "MELVE", + "nomCommune": "MELVE" }, { - "codePostal": "07200", - "codeCommune": "07296", - "libelleAcheminement": "ST SERNIN", - "nomCommune": "ST SERNIN" + "codePostal": "17130", + "codeCommune": "17156", + "libelleAcheminement": "EXPIREMONT", + "nomCommune": "EXPIREMONT" }, { - "codePostal": "09000", - "codeCommune": "09273", - "libelleAcheminement": "ST PIERRE DE RIVIERE", - "nomCommune": "ST PIERRE DE RIVIERE" + "codePostal": "17520", + "codeCommune": "17258", + "libelleAcheminement": "NEUILLAC", + "nomCommune": "NEUILLAC" }, { - "codePostal": "50300", - "codeCommune": "50451", - "libelleAcheminement": "ST BRICE", - "nomCommune": "ST BRICE" + "codePostal": "02110", + "codeCommune": "02769", + "libelleAcheminement": "VAUX ANDIGNY", + "nomCommune": "VAUX ANDIGNY" }, { - "codePostal": "07360", - "codeCommune": "07303", - "libelleAcheminement": "ST VINCENT DE DURFORT", - "nomCommune": "ST VINCENT DE DURFORT" + "codePostal": "04270", + "codeCommune": "04121", + "libelleAcheminement": "MEZEL", + "nomCommune": "MEZEL" }, { - "codePostal": "09240", - "codeCommune": "09292", - "libelleAcheminement": "SENTENAC DE SEROU", - "nomCommune": "SENTENAC DE SEROU" + "codePostal": "17800", + "codeCommune": "17159", + "libelleAcheminement": "FLEAC SUR SEUGNE", + "nomCommune": "FLEAC SUR SEUGNE" }, { - "codePostal": "50270", - "codeCommune": "50471", - "libelleAcheminement": "ST GEORGES DE LA RIVIERE", - "nomCommune": "ST GEORGES DE LA RIVIERE" + "codePostal": "17270", + "codeCommune": "17260", + "libelleAcheminement": "NEUVICQ", + "nomCommune": "NEUVICQ" }, { - "codePostal": "07370", - "codeCommune": "07308", - "libelleAcheminement": "SARRAS", - "nomCommune": "SARRAS" + "codePostal": "02400", + "codeCommune": "02781", + "libelleAcheminement": "VERDILLY", + "nomCommune": "VERDILLY" }, { - "codePostal": "09800", - "codeCommune": "09297", - "libelleAcheminement": "SOR", - "nomCommune": "SOR" + "codePostal": "04500", + "codeCommune": "04124", + "libelleAcheminement": "MONTAGNAC MONTPEZAT", + "nomCommune": "MONTAGNAC MONTPEZAT" }, { - "codePostal": "50600", - "codeCommune": "50484", - "libelleAcheminement": "ST HILAIRE DU HARCOUET", - "nomCommune": "ST HILAIRE DU HARCOUET" + "codePostal": "17120", + "codeCommune": "17160", + "libelleAcheminement": "FLOIRAC", + "nomCommune": "FLOIRAC" }, { - "codePostal": "07430", - "codeCommune": "07310", - "libelleAcheminement": "SAVAS", - "nomCommune": "SAVAS" + "codePostal": "17137", + "codeCommune": "17264", + "libelleAcheminement": "NIEUL SUR MER", + "nomCommune": "NIEUL SUR MER" }, { - "codePostal": "09140", - "codeCommune": "09299", - "libelleAcheminement": "SOUEIX ROGALLE", - "nomCommune": "SOUEIX ROGALLE" + "codePostal": "02120", + "codeCommune": "02783", + "libelleAcheminement": "GRAND VERLY", + "nomCommune": "GRAND VERLY" }, { - "codePostal": "50240", - "codeCommune": "50487", - "libelleAcheminement": "ST JAMES", - "nomCommune": "ST JAMES" + "codePostal": "04250", + "codeCommune": "04134", + "libelleAcheminement": "LA MOTTE DU CAIRE", + "nomCommune": "LA MOTTE DU CAIRE" }, { - "codePostal": "07400", - "codeCommune": "07311", - "libelleAcheminement": "SCEAUTRES", - "nomCommune": "SCEAUTRES" + "codePostal": "17510", + "codeCommune": "17162", + "libelleAcheminement": "FONTAINE CHALENDRAY", + "nomCommune": "FONTAINE CHALENDRAY" }, { - "codePostal": "09140", - "codeCommune": "09299", - "libelleAcheminement": "SOUEIX ROGALLE", - "nomCommune": "SOUEIX ROGALLE" + "codePostal": "17380", + "codeCommune": "17266", + "libelleAcheminement": "LES NOUILLERS", + "nomCommune": "LES NOUILLERS" }, { - "codePostal": "50620", - "codeCommune": "50488", - "libelleAcheminement": "ST JEAN DE DAYE", - "nomCommune": "ST JEAN DE DAYE" + "codePostal": "02340", + "codeCommune": "02801", + "libelleAcheminement": "VIGNEUX HOCQUET", + "nomCommune": "VIGNEUX HOCQUET" }, { - "codePostal": "07200", - "codeCommune": "07325", - "libelleAcheminement": "UCEL", - "nomCommune": "UCEL" + "codePostal": "04170", + "codeCommune": "04136", + "libelleAcheminement": "LA MURE ARGENS", + "nomCommune": "LA MURE ARGENS" }, { - "codePostal": "09400", - "codeCommune": "09303", - "libelleAcheminement": "SURBA", - "nomCommune": "SURBA" + "codePostal": "17290", + "codeCommune": "17166", + "libelleAcheminement": "FORGES", + "nomCommune": "FORGES" }, { - "codePostal": "50320", - "codeCommune": "50493", - "libelleAcheminement": "ST JEAN DES CHAMPS", - "nomCommune": "ST JEAN DES CHAMPS" + "codePostal": "17470", + "codeCommune": "17271", + "libelleAcheminement": "PAILLE", + "nomCommune": "PAILLE" }, { - "codePostal": "07150", - "codeCommune": "07328", - "libelleAcheminement": "VAGNAS", - "nomCommune": "VAGNAS" + "codePostal": "02210", + "codeCommune": "02804", + "libelleAcheminement": "VILLEMONTOIRE", + "nomCommune": "VILLEMONTOIRE" }, { - "codePostal": "09350", - "codeCommune": "09310", - "libelleAcheminement": "THOUARS SUR ARIZE", - "nomCommune": "THOUARS SUR ARIZE" + "codePostal": "04300", + "codeCommune": "04138", + "libelleAcheminement": "NIOZELLES", + "nomCommune": "NIOZELLES" }, { - "codePostal": "50370", - "codeCommune": "50495", - "libelleAcheminement": "ST JEAN DU CORAIL DES BOIS", - "nomCommune": "ST JEAN DU CORAIL DES BOIS" + "codePostal": "17520", + "codeCommune": "17175", + "libelleAcheminement": "GERMIGNAC", + "nomCommune": "GERMIGNAC" }, { - "codePostal": "07400", - "codeCommune": "07332", - "libelleAcheminement": "VALVIGNERES", - "nomCommune": "VALVIGNERES" + "codePostal": "17400", + "codeCommune": "17277", + "libelleAcheminement": "ESSOUVERT", + "nomCommune": "ESSOUVERT" }, { - "codePostal": "09100", - "codeCommune": "09312", - "libelleAcheminement": "LA TOUR DU CRIEU", - "nomCommune": "LA TOUR DU CRIEU" + "codePostal": "02240", + "codeCommune": "02813", + "libelleAcheminement": "VILLERS LE SEC", + "nomCommune": "VILLERS LE SEC" }, { - "codePostal": "50700", - "codeCommune": "50498", - "libelleAcheminement": "ST JOSEPH", - "nomCommune": "ST JOSEPH" + "codePostal": "04200", + "codeCommune": "04140", + "libelleAcheminement": "LES OMERGUES", + "nomCommune": "LES OMERGUES" }, { - "codePostal": "07140", - "codeCommune": "07334", - "libelleAcheminement": "LES VANS", - "nomCommune": "LES VANS" + "codePostal": "17120", + "codeCommune": "17183", + "libelleAcheminement": "GREZAC", + "nomCommune": "GREZAC" }, { - "codePostal": "09310", - "codeCommune": "09320", - "libelleAcheminement": "URS", - "nomCommune": "URS" + "codePostal": "17210", + "codeCommune": "17281", + "libelleAcheminement": "POLIGNAC", + "nomCommune": "POLIGNAC" }, { - "codePostal": "50240", - "codeCommune": "50500", - "libelleAcheminement": "ST LAURENT DE TERREGATTE", - "nomCommune": "ST LAURENT DE TERREGATTE" + "codePostal": "02130", + "codeCommune": "02816", + "libelleAcheminement": "VILLERS SUR FERE", + "nomCommune": "VILLERS SUR FERE" }, { - "codePostal": "07410", - "codeCommune": "07335", - "libelleAcheminement": "VAUDEVANT", - "nomCommune": "VAUDEVANT" + "codePostal": "04230", + "codeCommune": "04141", + "libelleAcheminement": "ONGLES", + "nomCommune": "ONGLES" }, { - "codePostal": "09110", - "codeCommune": "09325", - "libelleAcheminement": "VAYCHIS", - "nomCommune": "VAYCHIS" + "codePostal": "17600", + "codeCommune": "17185", + "libelleAcheminement": "LE GUA", + "nomCommune": "LE GUA" }, { - "codePostal": "50000", - "codeCommune": "50502", - "libelleAcheminement": "ST LO", - "nomCommune": "ST LO" + "codePostal": "17350", + "codeCommune": "17285", + "libelleAcheminement": "PORT D ENVAUX", + "nomCommune": "PORT D ENVAUX" }, { - "codePostal": "07260", - "codeCommune": "07336", - "libelleAcheminement": "VERNON", - "nomCommune": "VERNON" + "codePostal": "02310", + "codeCommune": "02818", + "libelleAcheminement": "VILLIERS ST DENIS", + "nomCommune": "VILLIERS ST DENIS" }, { - "codePostal": "09000", - "codeCommune": "09329", - "libelleAcheminement": "VERNAJOUL", - "nomCommune": "VERNAJOUL" + "codePostal": "04700", + "codeCommune": "04143", + "libelleAcheminement": "ORAISON", + "nomCommune": "ORAISON" }, { - "codePostal": "50310", - "codeCommune": "50511", - "libelleAcheminement": "ST MARTIN D AUDOUVILLE", - "nomCommune": "ST MARTIN D AUDOUVILLE" + "codePostal": "17540", + "codeCommune": "17186", + "libelleAcheminement": "LE GUE D ALLERE", + "nomCommune": "LE GUE D ALLERE" }, { - "codePostal": "07170", - "codeCommune": "07341", - "libelleAcheminement": "VILLENEUVE DE BERG", - "nomCommune": "VILLENEUVE DE BERG" + "codePostal": "17500", + "codeCommune": "17295", + "libelleAcheminement": "REAUX SUR TREFLE", + "nomCommune": "REAUX SUR TREFLE" }, { - "codePostal": "09220", - "codeCommune": "09334", - "libelleAcheminement": "VAL DE SOS", - "nomCommune": "VAL DE SOS" + "codePostal": "02340", + "codeCommune": "02819", + "libelleAcheminement": "VINCY REUIL ET MAGNY", + "nomCommune": "VINCY REUIL ET MAGNY" }, { - "codePostal": "50210", - "codeCommune": "50513", - "libelleAcheminement": "ST MARTIN DE CENILLY", - "nomCommune": "ST MARTIN DE CENILLY" + "codePostal": "04110", + "codeCommune": "04160", + "libelleAcheminement": "REILLANNE", + "nomCommune": "REILLANNE" }, { - "codePostal": "07610", - "codeCommune": "07345", - "libelleAcheminement": "VION", - "nomCommune": "VION" + "codePostal": "17500", + "codeCommune": "17187", + "libelleAcheminement": "GUITINIERES", + "nomCommune": "GUITINIERES" }, { - "codePostal": "09100", - "codeCommune": "09339", - "libelleAcheminement": "VILLENEUVE DU PAREAGE", - "nomCommune": "VILLENEUVE DU PAREAGE" + "codePostal": "17000", + "codeCommune": "17300", + "libelleAcheminement": "LA ROCHELLE", + "nomCommune": "LA ROCHELLE" }, { - "codePostal": "50480", - "codeCommune": "50517", - "libelleAcheminement": "ST MARTIN DE VARREVILLE", - "nomCommune": "ST MARTIN DE VARREVILLE" + "codePostal": "02140", + "codeCommune": "02823", + "libelleAcheminement": "VOHARIES", + "nomCommune": "VOHARIES" }, { - "codePostal": "08190", - "codeCommune": "08004", - "libelleAcheminement": "AIRE", - "nomCommune": "AIRE" + "codePostal": "04000", + "codeCommune": "04167", + "libelleAcheminement": "LA ROBINE SUR GALABRE", + "nomCommune": "LA ROBINE SUR GALABRE" }, { - "codePostal": "09120", - "codeCommune": "09340", - "libelleAcheminement": "VIRA", - "nomCommune": "VIRA" + "codePostal": "17220", + "codeCommune": "17193", + "libelleAcheminement": "LA JARNE", + "nomCommune": "LA JARNE" }, { - "codePostal": "50250", - "codeCommune": "50528", - "libelleAcheminement": "ST NICOLAS DE PIERREPONT", - "nomCommune": "ST NICOLAS DE PIERREPONT" + "codePostal": "17800", + "codeCommune": "17304", + "libelleAcheminement": "ROUFFIAC", + "nomCommune": "ROUFFIAC" }, { - "codePostal": "08500", - "codeCommune": "08011", - "libelleAcheminement": "ANCHAMPS", - "nomCommune": "ANCHAMPS" + "codePostal": "03120", + "codeCommune": "03006", + "libelleAcheminement": "ARFEUILLES", + "nomCommune": "ARFEUILLES" }, { - "codePostal": "09500", - "codeCommune": "09341", - "libelleAcheminement": "VIVIES", - "nomCommune": "VIVIES" + "codePostal": "04240", + "codeCommune": "04174", + "libelleAcheminement": "ST BENOIT", + "nomCommune": "ST BENOIT" }, { - "codePostal": "50200", - "codeCommune": "50537", - "libelleAcheminement": "ST PIERRE DE COUTANCES", - "nomCommune": "ST PIERRE DE COUTANCES" + "codePostal": "17500", + "codeCommune": "17197", + "libelleAcheminement": "JONZAC", + "nomCommune": "JONZAC" }, { - "codePostal": "08450", - "codeCommune": "08013", - "libelleAcheminement": "ANGECOURT", - "nomCommune": "ANGECOURT" + "codePostal": "17600", + "codeCommune": "17307", + "libelleAcheminement": "SABLONCEAUX", + "nomCommune": "SABLONCEAUX" }, { - "codePostal": "10700", - "codeCommune": "10006", - "libelleAcheminement": "ARCIS SUR AUBE", - "nomCommune": "ARCIS SUR AUBE" + "codePostal": "03420", + "codeCommune": "03007", + "libelleAcheminement": "ARPHEUILLES ST PRIEST", + "nomCommune": "ARPHEUILLES ST PRIEST" }, { - "codePostal": "50530", - "codeCommune": "50540", - "libelleAcheminement": "ST PIERRE LANGERS", - "nomCommune": "ST PIERRE LANGERS" + "codePostal": "04110", + "codeCommune": "04175", + "libelleAcheminement": "STE CROIX A LAUZE", + "nomCommune": "STE CROIX A LAUZE" }, { - "codePostal": "08400", - "codeCommune": "08018", - "libelleAcheminement": "ARDEUIL ET MONTFAUXELLES", - "nomCommune": "ARDEUIL ET MONTFAUXELLES" + "codePostal": "17290", + "codeCommune": "17203", + "libelleAcheminement": "LANDRAIS", + "nomCommune": "LANDRAIS" }, { - "codePostal": "10200", - "codeCommune": "10007", - "libelleAcheminement": "ARCONVILLE", - "nomCommune": "ARCONVILLE" + "codePostal": "17170", + "codeCommune": "17322", + "libelleAcheminement": "ST CYR DU DORET", + "nomCommune": "ST CYR DU DORET" }, { - "codePostal": "50750", - "codeCommune": "50546", - "libelleAcheminement": "BOURGVALLEES", - "nomCommune": "BOURGVALLEES" + "codePostal": "03460", + "codeCommune": "03015", + "libelleAcheminement": "BAGNEUX", + "nomCommune": "BAGNEUX" }, { - "codePostal": "08310", - "codeCommune": "08032", - "libelleAcheminement": "AUSSONCE", - "nomCommune": "AUSSONCE" + "codePostal": "04380", + "codeCommune": "04177", + "libelleAcheminement": "HAUTES DUYES", + "nomCommune": "HAUTES DUYES" }, { - "codePostal": "10200", - "codeCommune": "10012", - "libelleAcheminement": "ARSONVAL", - "nomCommune": "ARSONVAL" + "codePostal": "17500", + "codeCommune": "17204", + "libelleAcheminement": "LEOVILLE", + "nomCommune": "LEOVILLE" }, { - "codePostal": "50250", - "codeCommune": "50548", - "libelleAcheminement": "ST SAUVEUR DE PIERREPONT", - "nomCommune": "ST SAUVEUR DE PIERREPONT" + "codePostal": "17240", + "codeCommune": "17325", + "libelleAcheminement": "ST DIZANT DU GUA", + "nomCommune": "ST DIZANT DU GUA" }, { - "codePostal": "08000", - "codeCommune": "08040", - "libelleAcheminement": "LES AYVELLES", - "nomCommune": "LES AYVELLES" + "codePostal": "03500", + "codeCommune": "03018", + "libelleAcheminement": "BAYET", + "nomCommune": "BAYET" }, { - "codePostal": "10240", - "codeCommune": "10017", - "libelleAcheminement": "AULNAY", - "nomCommune": "AULNAY" + "codePostal": "04200", + "codeCommune": "04179", + "libelleAcheminement": "ST GENIEZ", + "nomCommune": "ST GENIEZ" }, { - "codePostal": "50490", - "codeCommune": "50550", - "libelleAcheminement": "ST SAUVEUR VILLAGES", - "nomCommune": "ST SAUVEUR VILLAGES" + "codePostal": "17111", + "codeCommune": "17207", + "libelleAcheminement": "LOIX", + "nomCommune": "LOIX" }, { - "codePostal": "08400", - "codeCommune": "08045", - "libelleAcheminement": "BALLAY", - "nomCommune": "BALLAY" + "codePostal": "17240", + "codeCommune": "17331", + "libelleAcheminement": "ST GENIS DE SAINTONGE", + "nomCommune": "ST GENIS DE SAINTONGE" }, { - "codePostal": "10220", - "codeCommune": "10019", - "libelleAcheminement": "VAL D AUZON", - "nomCommune": "VAL D AUZON" + "codePostal": "03390", + "codeCommune": "03020", + "libelleAcheminement": "BEAUNE D ALLIER", + "nomCommune": "BEAUNE D ALLIER" }, { - "codePostal": "50240", - "codeCommune": "50553", - "libelleAcheminement": "ST SENIER DE BEUVRON", - "nomCommune": "ST SENIER DE BEUVRON" + "codePostal": "04140", + "codeCommune": "04191", + "libelleAcheminement": "ST MARTIN LES SEYNE", + "nomCommune": "ST MARTIN LES SEYNE" }, { - "codePostal": "08430", - "codeCommune": "08047", - "libelleAcheminement": "BARBAISE", - "nomCommune": "BARBAISE" + "codePostal": "17160", + "codeCommune": "17212", + "libelleAcheminement": "LOUZIGNAC", + "nomCommune": "LOUZIGNAC" }, { - "codePostal": "10290", - "codeCommune": "10023", - "libelleAcheminement": "AVON LA PEZE", - "nomCommune": "AVON LA PEZE" + "codePostal": "17110", + "codeCommune": "17333", + "libelleAcheminement": "ST GEORGES DE DIDONNE", + "nomCommune": "ST GEORGES DE DIDONNE" }, { - "codePostal": "50420", - "codeCommune": "50563", - "libelleAcheminement": "ST VIGOR DES MONTS", - "nomCommune": "ST VIGOR DES MONTS" + "codePostal": "03120", + "codeCommune": "03028", + "libelleAcheminement": "BILLEZOIS", + "nomCommune": "BILLEZOIS" }, { - "codePostal": "08250", - "codeCommune": "08056", - "libelleAcheminement": "BEFFU ET LE MORTHOMME", - "nomCommune": "BEFFU ET LE MORTHOMME" + "codePostal": "04200", + "codeCommune": "04199", + "libelleAcheminement": "ST VINCENT SUR JABRON", + "nomCommune": "ST VINCENT SUR JABRON" }, { - "codePostal": "10330", - "codeCommune": "10027", - "libelleAcheminement": "BALIGNICOURT", - "nomCommune": "BALIGNICOURT" + "codePostal": "17320", + "codeCommune": "17219", + "libelleAcheminement": "MARENNES HIERS BROUAGE", + "nomCommune": "MARENNES HIERS BROUAGE" }, { - "codePostal": "50500", - "codeCommune": "50564", - "libelleAcheminement": "TERRE ET MARAIS", - "nomCommune": "TERRE ET MARAIS" + "codePostal": "17470", + "codeCommune": "17334", + "libelleAcheminement": "ST GEORGES DE LONGUEPIERRE", + "nomCommune": "ST GEORGES DE LONGUEPIERRE" }, { - "codePostal": "08240", - "codeCommune": "08061", - "libelleAcheminement": "LA BERLIERE", - "nomCommune": "LA BERLIERE" + "codePostal": "03800", + "codeCommune": "03030", + "libelleAcheminement": "BIOZAT", + "nomCommune": "BIOZAT" }, { - "codePostal": "10210", - "codeCommune": "10028", - "libelleAcheminement": "BALNOT LA GRANGE", - "nomCommune": "BALNOT LA GRANGE" + "codePostal": "04140", + "codeCommune": "04205", + "libelleAcheminement": "SEYNE LES ALPES", + "nomCommune": "SEYNE" }, { - "codePostal": "50690", - "codeCommune": "50575", - "libelleAcheminement": "SIDEVILLE", - "nomCommune": "SIDEVILLE" + "codePostal": "17490", + "codeCommune": "17223", + "libelleAcheminement": "MASSAC", + "nomCommune": "MASSAC" }, { - "codePostal": "08300", - "codeCommune": "08062", - "libelleAcheminement": "BERTONCOURT", - "nomCommune": "BERTONCOURT" + "codePostal": "17150", + "codeCommune": "17335", + "libelleAcheminement": "ST GEORGES DES AGOUTS", + "nomCommune": "ST GEORGES DES AGOUTS" }, { - "codePostal": "10500", - "codeCommune": "10044", - "libelleAcheminement": "BETIGNICOURT", - "nomCommune": "BETIGNICOURT" + "codePostal": "03130", + "codeCommune": "03035", + "libelleAcheminement": "LE BOUCHAUD", + "nomCommune": "LE BOUCHAUD" }, { - "codePostal": "50340", - "codeCommune": "50576", - "libelleAcheminement": "SIOUVILLE HAGUE", - "nomCommune": "SIOUVILLE HAGUE" + "codePostal": "04300", + "codeCommune": "04206", + "libelleAcheminement": "SIGONCE", + "nomCommune": "SIGONCE" }, { - "codePostal": "08110", - "codeCommune": "08067", - "libelleAcheminement": "BLAGNY", - "nomCommune": "BLAGNY" + "codePostal": "17150", + "codeCommune": "17236", + "libelleAcheminement": "MIRAMBEAU", + "nomCommune": "MIRAMBEAU" }, { - "codePostal": "10270", - "codeCommune": "10053", - "libelleAcheminement": "BOURANTON", - "nomCommune": "BOURANTON" + "codePostal": "17190", + "codeCommune": "17337", + "libelleAcheminement": "ST GEORGES D OLERON", + "nomCommune": "ST GEORGES D OLERON" }, { - "codePostal": "50150", - "codeCommune": "50582", - "libelleAcheminement": "SOURDEVAL", - "nomCommune": "SOURDEVAL" + "codePostal": "03110", + "codeCommune": "03043", + "libelleAcheminement": "BROUT VERNET", + "nomCommune": "BROUT VERNET" }, { - "codePostal": "08190", - "codeCommune": "08070", - "libelleAcheminement": "BLANZY LA SALONNAISE", - "nomCommune": "BLANZY LA SALONNAISE" + "codePostal": "04150", + "codeCommune": "04208", + "libelleAcheminement": "SIMIANE LA ROTONDE", + "nomCommune": "SIMIANE LA ROTONDE" }, { - "codePostal": "10110", - "codeCommune": "10055", - "libelleAcheminement": "BOURGUIGNONS", - "nomCommune": "BOURGUIGNONS" + "codePostal": "17800", + "codeCommune": "17242", + "libelleAcheminement": "MONTILS", + "nomCommune": "MONTILS" }, { - "codePostal": "50420", - "codeCommune": "50592", - "libelleAcheminement": "TESSY BOCAGE", - "nomCommune": "TESSY BOCAGE" + "codePostal": "17190", + "codeCommune": "17337", + "libelleAcheminement": "ST GEORGES D OLERON", + "nomCommune": "ST GEORGES D OLERON" }, { - "codePostal": "08400", - "codeCommune": "08077", - "libelleAcheminement": "BOURCQ", - "nomCommune": "BOURCQ" + "codePostal": "03600", + "codeCommune": "03047", + "libelleAcheminement": "LA CELLE", + "nomCommune": "LA CELLE" }, { - "codePostal": "10400", - "codeCommune": "10057", - "libelleAcheminement": "BOUY SUR ORVIN", - "nomCommune": "BOUY SUR ORVIN" + "codePostal": "04330", + "codeCommune": "04214", + "libelleAcheminement": "TARTONNE", + "nomCommune": "TARTONNE" }, { - "codePostal": "50630", - "codeCommune": "50593", - "libelleAcheminement": "TEURTHEVILLE BOCAGE", - "nomCommune": "TEURTHEVILLE BOCAGE" + "codePostal": "17210", + "codeCommune": "17243", + "libelleAcheminement": "MONTLIEU LA GARDE", + "nomCommune": "MONTLIEU LA GARDE" }, { - "codePostal": "08110", - "codeCommune": "08090", - "libelleAcheminement": "CARIGNAN", - "nomCommune": "CARIGNAN" + "codePostal": "17190", + "codeCommune": "17337", + "libelleAcheminement": "ST GEORGES D OLERON", + "nomCommune": "ST GEORGES D OLERON" }, { - "codePostal": "10450", - "codeCommune": "10060", - "libelleAcheminement": "BREVIANDES", - "nomCommune": "BREVIANDES" + "codePostal": "03500", + "codeCommune": "03049", + "libelleAcheminement": "CESSET", + "nomCommune": "CESSET" }, { - "codePostal": "50870", - "codeCommune": "50597", - "libelleAcheminement": "TIREPIED SUR SEE", - "nomCommune": "TIREPIED SUR SEE" + "codePostal": "04170", + "codeCommune": "04219", + "libelleAcheminement": "THORAME HAUTE", + "nomCommune": "THORAME HAUTE" }, { - "codePostal": "08310", - "codeCommune": "08092", - "libelleAcheminement": "CAUROY", - "nomCommune": "CAUROY" + "codePostal": "17240", + "codeCommune": "17250", + "libelleAcheminement": "MOSNAC", + "nomCommune": "MOSNAC" }, { - "codePostal": "10500", - "codeCommune": "10064", - "libelleAcheminement": "BRIENNE LE CHATEAU", - "nomCommune": "BRIENNE LE CHATEAU" + "codePostal": "17240", + "codeCommune": "17343", + "libelleAcheminement": "ST GREGOIRE D ARDENNES", + "nomCommune": "ST GREGOIRE D ARDENNES" }, { - "codePostal": "50330", - "codeCommune": "50598", - "libelleAcheminement": "TOCQUEVILLE", - "nomCommune": "TOCQUEVILLE" + "codePostal": "03170", + "codeCommune": "03052", + "libelleAcheminement": "CHAMBLET", + "nomCommune": "CHAMBLET" }, { - "codePostal": "08130", - "codeCommune": "08103", - "libelleAcheminement": "CHARBOGNE", - "nomCommune": "CHARBOGNE" + "codePostal": "04200", + "codeCommune": "04233", + "libelleAcheminement": "VAUMEILH", + "nomCommune": "VAUMEILH" }, { - "codePostal": "10800", - "codeCommune": "10067", - "libelleAcheminement": "BUCHERES", - "nomCommune": "BUCHERES" + "codePostal": "17500", + "codeCommune": "17259", + "libelleAcheminement": "NEULLES", + "nomCommune": "NEULLES" }, { - "codePostal": "50160", - "codeCommune": "50601", - "libelleAcheminement": "TORIGNY LES VILLES", - "nomCommune": "TORIGNY LES VILLES" + "codePostal": "17800", + "codeCommune": "17354", + "libelleAcheminement": "ST LEGER", + "nomCommune": "ST LEGER" }, { - "codePostal": "08400", - "codeCommune": "08104", - "libelleAcheminement": "CHARDENY", - "nomCommune": "CHARDENY" + "codePostal": "03380", + "codeCommune": "03055", + "libelleAcheminement": "LA CHAPELAUDE", + "nomCommune": "LA CHAPELAUDE" }, { - "codePostal": "10110", - "codeCommune": "10070", - "libelleAcheminement": "CELLES SUR OURCE", - "nomCommune": "CELLES SUR OURCE" + "codePostal": "05600", + "codeCommune": "05026", + "libelleAcheminement": "CEILLAC", + "nomCommune": "CEILLAC" }, { - "codePostal": "50300", - "codeCommune": "50612", - "libelleAcheminement": "VAINS", - "nomCommune": "VAINS" + "codePostal": "17150", + "codeCommune": "17263", + "libelleAcheminement": "NIEUL LE VIROUIL", + "nomCommune": "NIEUL LE VIROUIL" }, { - "codePostal": "08000", - "codeCommune": "08105", - "libelleAcheminement": "CHARLEVILLE MEZIERES", - "nomCommune": "CHARLEVILLE MEZIERES" + "codePostal": "17520", + "codeCommune": "17355", + "libelleAcheminement": "STE LHEURINE", + "nomCommune": "STE LHEURINE" }, { - "codePostal": "10110", - "codeCommune": "10071", - "libelleAcheminement": "CHACENAY", - "nomCommune": "CHACENAY" + "codePostal": "03300", + "codeCommune": "03056", + "libelleAcheminement": "LA CHAPELLE", + "nomCommune": "LA CHAPELLE" }, { - "codePostal": "50300", - "codeCommune": "50616", - "libelleAcheminement": "LE VAL ST PERE", - "nomCommune": "LE VAL ST PERE" + "codePostal": "05260", + "codeCommune": "05029", + "libelleAcheminement": "CHABOTTES", + "nomCommune": "CHABOTTES" }, { - "codePostal": "08220", - "codeCommune": "08113", - "libelleAcheminement": "CHAUMONT PORCIEN", - "nomCommune": "CHAUMONT PORCIEN" + "codePostal": "17470", + "codeCommune": "17268", + "libelleAcheminement": "NUAILLE SUR BOUTONNE", + "nomCommune": "NUAILLE SUR BOUTONNE" }, { - "codePostal": "10700", - "codeCommune": "10075", - "libelleAcheminement": "CHAMPFLEURY", - "nomCommune": "CHAMPFLEURY" + "codePostal": "17380", + "codeCommune": "17356", + "libelleAcheminement": "ST LOUP", + "nomCommune": "ST LOUP" }, { - "codePostal": "50370", - "codeCommune": "50628", - "libelleAcheminement": "VERNIX", - "nomCommune": "VERNIX" + "codePostal": "03230", + "codeCommune": "03057", + "libelleAcheminement": "LA CHAPELLE AUX CHASSES", + "nomCommune": "LA CHAPELLE AUX CHASSES" }, { - "codePostal": "08300", - "codeCommune": "08133", - "libelleAcheminement": "COUCY", - "nomCommune": "COUCY" + "codePostal": "05700", + "codeCommune": "05033", + "libelleAcheminement": "CHANOUSSE", + "nomCommune": "CHANOUSSE" }, { - "codePostal": "10260", - "codeCommune": "10083", - "libelleAcheminement": "CHAPPES", - "nomCommune": "CHAPPES" + "codePostal": "17210", + "codeCommune": "17269", + "libelleAcheminement": "ORIGNOLLES", + "nomCommune": "ORIGNOLLES" }, { - "codePostal": "50430", - "codeCommune": "50629", - "libelleAcheminement": "VESLY", - "nomCommune": "VESLY" + "codePostal": "17740", + "codeCommune": "17360", + "libelleAcheminement": "STE MARIE DE RE", + "nomCommune": "STE MARIE DE RE" }, { - "codePostal": "08300", - "codeCommune": "08148", - "libelleAcheminement": "L ECAILLE", - "nomCommune": "L ECAILLE" + "codePostal": "03140", + "codeCommune": "03062", + "libelleAcheminement": "CHARROUX", + "nomCommune": "CHARROUX" }, { - "codePostal": "10170", - "codeCommune": "10090", - "libelleAcheminement": "CHAUCHIGNY", - "nomCommune": "CHAUCHIGNY" + "codePostal": "05350", + "codeCommune": "05038", + "libelleAcheminement": "CHATEAU VILLE VIEILLE", + "nomCommune": "CHATEAU VILLE VIEILLE" }, { - "codePostal": "51150", - "codeCommune": "51003", - "libelleAcheminement": "AIGNY", - "nomCommune": "AIGNY" + "codePostal": "17810", + "codeCommune": "17275", + "libelleAcheminement": "PESSINES", + "nomCommune": "PESSINES" }, { - "codePostal": "08130", - "codeCommune": "08151", - "libelleAcheminement": "ECORDAL", - "nomCommune": "ECORDAL" + "codePostal": "17150", + "codeCommune": "17362", + "libelleAcheminement": "ST MARTIAL DE MIRAMBEAU", + "nomCommune": "ST MARTIAL DE MIRAMBEAU" }, { - "codePostal": "10130", - "codeCommune": "10099", - "libelleAcheminement": "CHESSY LES PRES", - "nomCommune": "CHESSY LES PRES" + "codePostal": "03250", + "codeCommune": "03066", + "libelleAcheminement": "CHATEL MONTAGNE", + "nomCommune": "CHATEL MONTAGNE" }, { - "codePostal": "51120", - "codeCommune": "51005", - "libelleAcheminement": "ALLEMANT", - "nomCommune": "ALLEMANT" + "codePostal": "05230", + "codeCommune": "05040", + "libelleAcheminement": "CHORGES", + "nomCommune": "CHORGES" }, { - "codePostal": "08260", - "codeCommune": "08154", - "libelleAcheminement": "ESTREBAY", - "nomCommune": "ESTREBAY" + "codePostal": "17250", + "codeCommune": "17280", + "libelleAcheminement": "PLASSAY", + "nomCommune": "PLASSAY" }, { - "codePostal": "10240", - "codeCommune": "10101", - "libelleAcheminement": "COCLOIS", - "nomCommune": "COCLOIS" + "codePostal": "17500", + "codeCommune": "17363", + "libelleAcheminement": "ST MARTIAL DE VITATERNE", + "nomCommune": "ST MARTIAL DE VITATERNE" }, { - "codePostal": "51290", - "codeCommune": "51008", - "libelleAcheminement": "AMBRIERES", - "nomCommune": "AMBRIERES" + "codePostal": "03120", + "codeCommune": "03068", + "libelleAcheminement": "CHATELUS", + "nomCommune": "CHATELUS" }, { - "codePostal": "08260", - "codeCommune": "08156", - "libelleAcheminement": "ETEIGNIERES", - "nomCommune": "ETEIGNIERES" + "codePostal": "05200", + "codeCommune": "05046", + "libelleAcheminement": "EMBRUN", + "nomCommune": "EMBRUN" }, { - "codePostal": "10200", - "codeCommune": "10103", - "libelleAcheminement": "COLOMBE LE SEC", - "nomCommune": "COLOMBE LE SEC" + "codePostal": "17400", + "codeCommune": "17288", + "libelleAcheminement": "POURSAY GARNAUD", + "nomCommune": "POURSAY GARNAUD" }, { - "codePostal": "51260", - "codeCommune": "51009", - "libelleAcheminement": "ANGLURE", - "nomCommune": "ANGLURE" + "codePostal": "17770", + "codeCommune": "17374", + "libelleAcheminement": "STE MEME", + "nomCommune": "STE MEME" }, { - "codePostal": "08090", - "codeCommune": "08162", - "libelleAcheminement": "FAGNON", - "nomCommune": "FAGNON" + "codePostal": "03210", + "codeCommune": "03069", + "libelleAcheminement": "CHATILLON", + "nomCommune": "CHATILLON" }, { - "codePostal": "10500", - "codeCommune": "10105", - "libelleAcheminement": "COURCELLES SUR VOIRE", - "nomCommune": "COURCELLES SUR VOIRE" + "codePostal": "05190", + "codeCommune": "05050", + "libelleAcheminement": "ESPINASSES", + "nomCommune": "ESPINASSES" }, { - "codePostal": "51290", - "codeCommune": "51017", - "libelleAcheminement": "ARZILLIERES NEUVILLE", - "nomCommune": "ARZILLIERES NEUVILLE" + "codePostal": "17160", + "codeCommune": "17290", + "libelleAcheminement": "PRIGNAC", + "nomCommune": "PRIGNAC" }, { - "codePostal": "08170", - "codeCommune": "08166", - "libelleAcheminement": "FEPIN", - "nomCommune": "FEPIN" + "codePostal": "17230", + "codeCommune": "17376", + "libelleAcheminement": "ST OUEN D AUNIS", + "nomCommune": "ST OUEN D AUNIS" }, { - "codePostal": "10270", - "codeCommune": "10110", - "libelleAcheminement": "COURTERANGES", - "nomCommune": "COURTERANGES" + "codePostal": "03440", + "codeCommune": "03070", + "libelleAcheminement": "CHAVENON", + "nomCommune": "CHAVENON" }, { - "codePostal": "51600", - "codeCommune": "51019", - "libelleAcheminement": "AUBERIVE", - "nomCommune": "AUBERIVE" + "codePostal": "05600", + "codeCommune": "05052", + "libelleAcheminement": "EYGLIERS", + "nomCommune": "EYGLIERS" }, { - "codePostal": "08370", - "codeCommune": "08168", - "libelleAcheminement": "LA FERTE SUR CHIERS", - "nomCommune": "LA FERTE SUR CHIERS" + "codePostal": "17138", + "codeCommune": "17291", + "libelleAcheminement": "PUILBOREAU", + "nomCommune": "PUILBOREAU" }, { - "codePostal": "10250", - "codeCommune": "10111", - "libelleAcheminement": "COURTERON", - "nomCommune": "COURTERON" + "codePostal": "17490", + "codeCommune": "17377", + "libelleAcheminement": "ST OUEN LA THENE", + "nomCommune": "ST OUEN LA THENE" }, { - "codePostal": "51800", - "codeCommune": "51027", - "libelleAcheminement": "AUVE", - "nomCommune": "AUVE" + "codePostal": "03330", + "codeCommune": "03077", + "libelleAcheminement": "CHIRAT L EGLISE", + "nomCommune": "CHIRAT L EGLISE" }, { - "codePostal": "08260", - "codeCommune": "08169", - "libelleAcheminement": "FLAIGNES HAVYS", - "nomCommune": "FLAIGNES HAVYS" + "codePostal": "05140", + "codeCommune": "05055", + "libelleAcheminement": "LA FAURIE", + "nomCommune": "LA FAURIE" }, { - "codePostal": "10210", - "codeCommune": "10120", - "libelleAcheminement": "CUSSANGY", - "nomCommune": "CUSSANGY" + "codePostal": "17500", + "codeCommune": "17295", + "libelleAcheminement": "REAUX SUR TREFLE", + "nomCommune": "REAUX SUR TREFLE" }, { - "codePostal": "51190", - "codeCommune": "51029", - "libelleAcheminement": "AVIZE", - "nomCommune": "AVIZE" + "codePostal": "17420", + "codeCommune": "17380", + "libelleAcheminement": "ST PALAIS SUR MER", + "nomCommune": "ST PALAIS SUR MER" }, { - "codePostal": "08200", - "codeCommune": "08170", - "libelleAcheminement": "FLEIGNEUX", - "nomCommune": "FLEIGNEUX" + "codePostal": "03110", + "codeCommune": "03080", + "libelleAcheminement": "COGNAT LYONNE", + "nomCommune": "COGNAT LYONNE" }, { - "codePostal": "10240", - "codeCommune": "10121", - "libelleAcheminement": "DAMPIERRE", - "nomCommune": "DAMPIERRE" + "codePostal": "05500", + "codeCommune": "05072", + "libelleAcheminement": "LAYE", + "nomCommune": "LAYE" }, { - "codePostal": "51160", - "codeCommune": "51030", - "libelleAcheminement": "AY CHAMPAGNE", - "nomCommune": "AY CHAMPAGNE" + "codePostal": "17460", + "codeCommune": "17296", + "libelleAcheminement": "RETAUD", + "nomCommune": "RETAUD" }, { - "codePostal": "08160", - "codeCommune": "08173", - "libelleAcheminement": "FLIZE", - "nomCommune": "FLIZE" + "codePostal": "17700", + "codeCommune": "17382", + "libelleAcheminement": "ST PIERRE D AMILLY", + "nomCommune": "ST PIERRE D AMILLY" }, { - "codePostal": "10130", - "codeCommune": "10122", - "libelleAcheminement": "DAVREY", - "nomCommune": "DAVREY" + "codePostal": "03000", + "codeCommune": "03085", + "libelleAcheminement": "COULANDON", + "nomCommune": "COULANDON" }, { - "codePostal": "51400", - "codeCommune": "51031", - "libelleAcheminement": "BACONNES", - "nomCommune": "BACONNES" + "codePostal": "05300", + "codeCommune": "05073", + "libelleAcheminement": "LAZER", + "nomCommune": "LAZER" }, { - "codePostal": "08200", - "codeCommune": "08174", - "libelleAcheminement": "FLOING", - "nomCommune": "FLOING" + "codePostal": "17000", + "codeCommune": "17300", + "libelleAcheminement": "LA ROCHELLE", + "nomCommune": "LA ROCHELLE" }, { - "codePostal": "10190", - "codeCommune": "10125", - "libelleAcheminement": "DIERREY ST PIERRE", - "nomCommune": "DIERREY ST PIERRE" + "codePostal": "17400", + "codeCommune": "17383", + "libelleAcheminement": "ST PIERRE DE JUILLERS", + "nomCommune": "ST PIERRE DE JUILLERS" }, { - "codePostal": "51230", - "codeCommune": "51035", - "libelleAcheminement": "BANNES", - "nomCommune": "BANNES" + "codePostal": "03320", + "codeCommune": "03087", + "libelleAcheminement": "COULEUVRE", + "nomCommune": "COULEUVRE" }, { - "codePostal": "08600", - "codeCommune": "08175", - "libelleAcheminement": "FOISCHES", - "nomCommune": "FOISCHES" + "codePostal": "05400", + "codeCommune": "05075", + "libelleAcheminement": "MANTEYER", + "nomCommune": "MANTEYER" }, { - "codePostal": "10330", - "codeCommune": "10128", - "libelleAcheminement": "DONNEMENT", - "nomCommune": "DONNEMENT" + "codePostal": "17250", + "codeCommune": "17302", + "libelleAcheminement": "ROMEGOUX", + "nomCommune": "ROMEGOUX" }, { - "codePostal": "51120", - "codeCommune": "51036", - "libelleAcheminement": "BARBONNE FAYEL", - "nomCommune": "BARBONNE FAYEL" + "codePostal": "17240", + "codeCommune": "17390", + "libelleAcheminement": "STE RAMEE", + "nomCommune": "STE RAMEE" }, { - "codePostal": "08370", - "codeCommune": "08184", - "libelleAcheminement": "FROMY", - "nomCommune": "FROMY" + "codePostal": "03300", + "codeCommune": "03094", + "libelleAcheminement": "CREUZIER LE VIEUX", + "nomCommune": "CREUZIER LE VIEUX" }, { - "codePostal": "10400", - "codeCommune": "10148", - "libelleAcheminement": "FERREUX QUINCEY", - "nomCommune": "FERREUX QUINCEY" + "codePostal": "05140", + "codeCommune": "05080", + "libelleAcheminement": "MONTBRAND", + "nomCommune": "MONTBRAND" }, { - "codePostal": "51300", - "codeCommune": "51040", - "libelleAcheminement": "BASSUET", - "nomCommune": "BASSUET" + "codePostal": "17150", + "codeCommune": "17312", + "libelleAcheminement": "ST BONNET SUR GIRONDE", + "nomCommune": "ST BONNET SUR GIRONDE" }, { - "codePostal": "08440", - "codeCommune": "08187", - "libelleAcheminement": "GERNELLE", - "nomCommune": "GERNELLE" + "codePostal": "17350", + "codeCommune": "17397", + "libelleAcheminement": "ST SAVINIEN", + "nomCommune": "ST SAVINIEN" }, { - "codePostal": "10200", - "codeCommune": "10160", - "libelleAcheminement": "FRAVAUX", - "nomCommune": "FRAVAUX" + "codePostal": "03300", + "codeCommune": "03095", + "libelleAcheminement": "CUSSET", + "nomCommune": "CUSSET" }, { - "codePostal": "51360", - "codeCommune": "51044", - "libelleAcheminement": "BEAUMONT SUR VESLE", - "nomCommune": "BEAUMONT SUR VESLE" + "codePostal": "05100", + "codeCommune": "05085", + "libelleAcheminement": "MONTGENEVRE", + "nomCommune": "MONTGENEVRE" }, { - "codePostal": "08200", - "codeCommune": "08191", - "libelleAcheminement": "GIVONNE", - "nomCommune": "GIVONNE" + "codePostal": "17220", + "codeCommune": "17315", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "10270", - "codeCommune": "10162", - "libelleAcheminement": "FRESNOY LE CHATEAU", - "nomCommune": "FRESNOY LE CHATEAU" + "codePostal": "17240", + "codeCommune": "17402", + "libelleAcheminement": "ST SIGISMOND DE CLERMONT", + "nomCommune": "ST SIGISMOND DE CLERMONT" }, { - "codePostal": "51270", - "codeCommune": "51045", - "libelleAcheminement": "BEAUNAY", - "nomCommune": "BEAUNAY" + "codePostal": "03120", + "codeCommune": "03105", + "libelleAcheminement": "DROITURIER", + "nomCommune": "DROITURIER" }, { - "codePostal": "08270", - "codeCommune": "08196", - "libelleAcheminement": "GRANDCHAMP", - "nomCommune": "GRANDCHAMP" + "codePostal": "05400", + "codeCommune": "05087", + "libelleAcheminement": "MONTMAUR", + "nomCommune": "MONTMAUR" }, { - "codePostal": "10200", - "codeCommune": "10163", - "libelleAcheminement": "FULIGNY", - "nomCommune": "FULIGNY" + "codePostal": "17380", + "codeCommune": "17321", + "libelleAcheminement": "ST CREPIN", + "nomCommune": "ST CREPIN" }, { - "codePostal": "51220", - "codeCommune": "51051", - "libelleAcheminement": "BERMERICOURT", - "nomCommune": "BERMERICOURT" + "codePostal": "17150", + "codeCommune": "17405", + "libelleAcheminement": "ST SORLIN DE CONAC", + "nomCommune": "ST SORLIN DE CONAC" }, { - "codePostal": "08300", - "codeCommune": "08219", - "libelleAcheminement": "HAUTEVILLE", - "nomCommune": "HAUTEVILLE" + "codePostal": "03330", + "codeCommune": "03108", + "libelleAcheminement": "ECHASSIERES", + "nomCommune": "ECHASSIERES" }, { - "codePostal": "10400", - "codeCommune": "10169", - "libelleAcheminement": "GUMERY", - "nomCommune": "GUMERY" + "codePostal": "05700", + "codeCommune": "05089", + "libelleAcheminement": "MONTROND", + "nomCommune": "MONTROND" }, { - "codePostal": "51330", - "codeCommune": "51057", - "libelleAcheminement": "BETTANCOURT LA LONGUE", - "nomCommune": "BETTANCOURT LA LONGUE" + "codePostal": "17150", + "codeCommune": "17324", + "libelleAcheminement": "ST DIZANT DU BOIS", + "nomCommune": "ST DIZANT DU BOIS" }, { - "codePostal": "08090", - "codeCommune": "08230", - "libelleAcheminement": "HOULDIZY", - "nomCommune": "HOULDIZY" + "codePostal": "17200", + "codeCommune": "17409", + "libelleAcheminement": "ST SULPICE DE ROYAN", + "nomCommune": "ST SULPICE DE ROYAN" }, { - "codePostal": "10140", - "codeCommune": "10178", - "libelleAcheminement": "JESSAINS", - "nomCommune": "JESSAINS" + "codePostal": "03140", + "codeCommune": "03115", + "libelleAcheminement": "FLEURIEL", + "nomCommune": "FLEURIEL" }, { - "codePostal": "51340", - "codeCommune": "51068", - "libelleAcheminement": "BLESME", - "nomCommune": "BLESME" + "codePostal": "05000", + "codeCommune": "05092", + "libelleAcheminement": "NEFFES", + "nomCommune": "NEFFES" }, { - "codePostal": "08200", - "codeCommune": "08232", - "libelleAcheminement": "ILLY", - "nomCommune": "ILLY" + "codePostal": "17240", + "codeCommune": "17328", + "libelleAcheminement": "ST FORT SUR GIRONDE", + "nomCommune": "ST FORT SUR GIRONDE" }, { - "codePostal": "10260", - "codeCommune": "10181", - "libelleAcheminement": "JULLY SUR SARCE", - "nomCommune": "JULLY SUR SARCE" + "codePostal": "17220", + "codeCommune": "17413", + "libelleAcheminement": "ST VIVIEN", + "nomCommune": "ST VIVIEN" }, { - "codePostal": "51210", - "codeCommune": "51070", - "libelleAcheminement": "BOISSY LE REPOS", - "nomCommune": "BOISSY LE REPOS" + "codePostal": "03400", + "codeCommune": "03121", + "libelleAcheminement": "GENNETINES", + "nomCommune": "GENNETINES" }, { - "codePostal": "08240", - "codeCommune": "08233", - "libelleAcheminement": "IMECOURT", - "nomCommune": "IMECOURT" + "codePostal": "05170", + "codeCommune": "05096", + "libelleAcheminement": "ORCIERES", + "nomCommune": "ORCIERES" }, { - "codePostal": "10500", - "codeCommune": "10184", - "libelleAcheminement": "JUZANVIGNY", - "nomCommune": "JUZANVIGNY" + "codePostal": "17250", + "codeCommune": "17330", + "libelleAcheminement": "STE GEMME", + "nomCommune": "STE GEMME" }, { - "codePostal": "51140", - "codeCommune": "51077", - "libelleAcheminement": "BOUVANCOURT", - "nomCommune": "BOUVANCOURT" + "codePostal": "17220", + "codeCommune": "17420", + "libelleAcheminement": "SALLES SUR MER", + "nomCommune": "SALLES SUR MER" }, { - "codePostal": "08300", - "codeCommune": "08234", - "libelleAcheminement": "INAUMONT", - "nomCommune": "INAUMONT" + "codePostal": "03210", + "codeCommune": "03122", + "libelleAcheminement": "GIPCY", + "nomCommune": "GIPCY" }, { - "codePostal": "10110", - "codeCommune": "10199", - "libelleAcheminement": "LOCHES SUR OURCE", - "nomCommune": "LOCHES SUR OURCE" + "codePostal": "05200", + "codeCommune": "05098", + "libelleAcheminement": "LES ORRES", + "nomCommune": "LES ORRES" }, { - "codePostal": "51290", - "codeCommune": "51080", - "libelleAcheminement": "BRANDONVILLERS", - "nomCommune": "BRANDONVILLERS" + "codePostal": "17240", + "codeCommune": "17332", + "libelleAcheminement": "ST GEORGES ANTIGNAC", + "nomCommune": "ST GEORGES ANTIGNAC" }, { - "codePostal": "08800", - "codeCommune": "08242", - "libelleAcheminement": "LAIFOUR", - "nomCommune": "LAIFOUR" + "codePostal": "17510", + "codeCommune": "17422", + "libelleAcheminement": "SEIGNE", + "nomCommune": "SEIGNE" }, { - "codePostal": "10320", - "codeCommune": "10204", - "libelleAcheminement": "LONGEVILLE SUR MOGNE", - "nomCommune": "LONGEVILLE SUR MOGNE" + "codePostal": "03360", + "codeCommune": "03130", + "libelleAcheminement": "ISLE ET BARDAIS", + "nomCommune": "ISLE ET BARDAIS" }, { - "codePostal": "51140", - "codeCommune": "51081", - "libelleAcheminement": "BRANSCOURT", - "nomCommune": "BRANSCOURT" + "codePostal": "05400", + "codeCommune": "05099", + "libelleAcheminement": "OZE", + "nomCommune": "OZE" }, { - "codePostal": "08150", - "codeCommune": "08249", - "libelleAcheminement": "LAVAL MORENCY", - "nomCommune": "LAVAL MORENCY" + "codePostal": "17190", + "codeCommune": "17337", + "libelleAcheminement": "ST GEORGES D OLERON", + "nomCommune": "ST GEORGES D OLERON" }, { - "codePostal": "10240", - "codeCommune": "10206", - "libelleAcheminement": "LONGSOLS", - "nomCommune": "LONGSOLS" + "codePostal": "17150", + "codeCommune": "17430", + "libelleAcheminement": "SOUBRAN", + "nomCommune": "SOUBRAN" }, { - "codePostal": "51240", - "codeCommune": "51087", - "libelleAcheminement": "BREUVERY SUR COOLE", - "nomCommune": "BREUVERY SUR COOLE" + "codePostal": "03220", + "codeCommune": "03132", + "libelleAcheminement": "JALIGNY SUR BESBRE", + "nomCommune": "JALIGNY SUR BESBRE" }, { - "codePostal": "08460", - "codeCommune": "08272", - "libelleAcheminement": "MARANWEZ", - "nomCommune": "MARANWEZ" + "codePostal": "05290", + "codeCommune": "05101", + "libelleAcheminement": "VALLOUISE PELVOUX", + "nomCommune": "VALLOUISE PELVOUX" }, { - "codePostal": "10270", - "codeCommune": "10209", - "libelleAcheminement": "LUSIGNY SUR BARSE", - "nomCommune": "LUSIGNY SUR BARSE" + "codePostal": "17500", + "codeCommune": "17339", + "libelleAcheminement": "ST GERMAIN DE LUSIGNAN", + "nomCommune": "ST GERMAIN DE LUSIGNAN" }, { - "codePostal": "51220", - "codeCommune": "51088", - "libelleAcheminement": "BRIMONT", - "nomCommune": "BRIMONT" + "codePostal": "17130", + "codeCommune": "17432", + "libelleAcheminement": "SOUMERAS", + "nomCommune": "SOUMERAS" }, { - "codePostal": "08110", - "codeCommune": "08281", - "libelleAcheminement": "MATTON ET CLEMENCY", - "nomCommune": "MATTON ET CLEMENCY" + "codePostal": "03250", + "codeCommune": "03139", + "libelleAcheminement": "LAPRUGNE", + "nomCommune": "LAPRUGNE" }, { - "codePostal": "10150", - "codeCommune": "10210", - "libelleAcheminement": "LUYERES", - "nomCommune": "LUYERES" + "codePostal": "05340", + "codeCommune": "05101", + "libelleAcheminement": "VALLOUISE PELVOUX", + "nomCommune": "VALLOUISE PELVOUX" }, { - "codePostal": "51170", - "codeCommune": "51089", - "libelleAcheminement": "BROUILLET", - "nomCommune": "BROUILLET" + "codePostal": "17770", + "codeCommune": "17344", + "libelleAcheminement": "ST HILAIRE DE VILLEFRANCHE", + "nomCommune": "ST HILAIRE DE VILLEFRANCHE" }, { - "codePostal": "08270", - "codeCommune": "08288", - "libelleAcheminement": "MESMONT", - "nomCommune": "MESMONT" + "codePostal": "17130", + "codeCommune": "17433", + "libelleAcheminement": "SOUSMOULINS", + "nomCommune": "SOUSMOULINS" }, { - "codePostal": "10300", - "codeCommune": "10211", - "libelleAcheminement": "MACEY", - "nomCommune": "MACEY" + "codePostal": "03360", + "codeCommune": "03143", + "libelleAcheminement": "LETELON", + "nomCommune": "LETELON" }, { - "codePostal": "51600", - "codeCommune": "51097", - "libelleAcheminement": "BUSSY LE CHATEAU", - "nomCommune": "BUSSY LE CHATEAU" + "codePostal": "05340", + "codeCommune": "05101", + "libelleAcheminement": "VALLOUISE PELVOUX", + "nomCommune": "VALLOUISE PELVOUX" }, { - "codePostal": "08370", - "codeCommune": "08293", - "libelleAcheminement": "MOIRY", - "nomCommune": "MOIRY" + "codePostal": "17430", + "codeCommune": "17346", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "10700", - "codeCommune": "10235", - "libelleAcheminement": "MESNIL LA COMTESSE", - "nomCommune": "MESNIL LA COMTESSE" + "codePostal": "17350", + "codeCommune": "17435", + "libelleAcheminement": "TAILLANT", + "nomCommune": "TAILLANT" }, { - "codePostal": "51220", - "codeCommune": "51102", - "libelleAcheminement": "CAUROY LES HERMONVILLE", - "nomCommune": "CAUROY LES HERMONVILLE" + "codePostal": "03130", + "codeCommune": "03144", + "libelleAcheminement": "LIERNOLLES", + "nomCommune": "LIERNOLLES" }, { - "codePostal": "08090", - "codeCommune": "08298", - "libelleAcheminement": "MONTCY NOTRE DAME", - "nomCommune": "MONTCY NOTRE DAME" + "codePostal": "05100", + "codeCommune": "05109", + "libelleAcheminement": "PUY ST PIERRE", + "nomCommune": "PUY ST PIERRE" }, { - "codePostal": "10240", - "codeCommune": "10236", - "libelleAcheminement": "MESNIL LETTRE", - "nomCommune": "MESNIL LETTRE" + "codePostal": "17620", + "codeCommune": "17348", + "libelleAcheminement": "ST JEAN D ANGLE", + "nomCommune": "ST JEAN D ANGLE" }, { - "codePostal": "51420", - "codeCommune": "51105", - "libelleAcheminement": "CERNAY LES REIMS", - "nomCommune": "CERNAY LES REIMS" + "codePostal": "17120", + "codeCommune": "17437", + "libelleAcheminement": "TALMONT SUR GIRONDE", + "nomCommune": "TALMONT SUR GIRONDE" }, { - "codePostal": "08800", - "codeCommune": "08302", - "libelleAcheminement": "MONTHERME", - "nomCommune": "MONTHERME" + "codePostal": "03320", + "codeCommune": "03146", + "libelleAcheminement": "LIMOISE", + "nomCommune": "LIMOISE" }, { - "codePostal": "10190", - "codeCommune": "10240", - "libelleAcheminement": "MESSON", - "nomCommune": "MESSON" + "codePostal": "05310", + "codeCommune": "05122", + "libelleAcheminement": "LA ROCHE DE RAME", + "nomCommune": "LA ROCHE DE RAME" }, { - "codePostal": "51240", - "codeCommune": "51106", - "libelleAcheminement": "CERNON", - "nomCommune": "CERNON" + "codePostal": "17170", + "codeCommune": "17349", + "libelleAcheminement": "ST JEAN DE LIVERSAY", + "nomCommune": "ST JEAN DE LIVERSAY" }, { - "codePostal": "08170", - "codeCommune": "08304", - "libelleAcheminement": "MONTIGNY SUR MEUSE", - "nomCommune": "MONTIGNY SUR MEUSE" + "codePostal": "17600", + "codeCommune": "17445", + "libelleAcheminement": "THEZAC", + "nomCommune": "THEZAC" }, { - "codePostal": "10260", - "codeCommune": "10246", - "libelleAcheminement": "MONTCEAUX LES VAUDES", - "nomCommune": "MONTCEAUX LES VAUDES" + "codePostal": "03350", + "codeCommune": "03150", + "libelleAcheminement": "LOUROUX BOURBONNAIS", + "nomCommune": "LOUROUX BOURBONNAIS" }, { - "codePostal": "51150", - "codeCommune": "51117", - "libelleAcheminement": "CHAMPIGNEUL CHAMPAGNE", - "nomCommune": "CHAMPIGNEUL CHAMPAGNE" + "codePostal": "05400", + "codeCommune": "05123", + "libelleAcheminement": "LA ROCHE DES ARNAUDS", + "nomCommune": "LA ROCHE DES ARNAUDS" }, { - "codePostal": "08430", - "codeCommune": "08305", - "libelleAcheminement": "MONTIGNY SUR VENCE", - "nomCommune": "MONTIGNY SUR VENCE" + "codePostal": "17320", + "codeCommune": "17351", + "libelleAcheminement": "ST JUST LUZAC", + "nomCommune": "ST JUST LUZAC" }, { - "codePostal": "10270", - "codeCommune": "10249", - "libelleAcheminement": "MONTIERAMEY", - "nomCommune": "MONTIERAMEY" + "codePostal": "17380", + "codeCommune": "17450", + "libelleAcheminement": "TORXE", + "nomCommune": "TORXE" }, { - "codePostal": "51370", - "codeCommune": "51118", - "libelleAcheminement": "CHAMPIGNY", - "nomCommune": "CHAMPIGNY" + "codePostal": "03210", + "codeCommune": "03162", + "libelleAcheminement": "MARIGNY", + "nomCommune": "MARIGNY" }, { - "codePostal": "08130", - "codeCommune": "08306", - "libelleAcheminement": "MONT LAURENT", - "nomCommune": "MONT LAURENT" + "codePostal": "05150", + "codeCommune": "05126", + "libelleAcheminement": "ROSANS", + "nomCommune": "ROSANS" }, { - "codePostal": "10130", - "codeCommune": "10251", - "libelleAcheminement": "MONTIGNY LES MONTS", - "nomCommune": "MONTIGNY LES MONTS" + "codePostal": "17450", + "codeCommune": "17353", + "libelleAcheminement": "ST LAURENT DE LA PREE", + "nomCommune": "ST LAURENT DE LA PREE" }, { - "codePostal": "51700", - "codeCommune": "51121", - "libelleAcheminement": "CHAMPVOISY", - "nomCommune": "CHAMPVOISY" + "codePostal": "17250", + "codeCommune": "17453", + "libelleAcheminement": "TRIZAY", + "nomCommune": "TRIZAY" }, { - "codePostal": "08310", - "codeCommune": "08309", - "libelleAcheminement": "MONT ST REMY", - "nomCommune": "MONT ST REMY" + "codePostal": "03360", + "codeCommune": "03168", + "libelleAcheminement": "MEAULNE VITRAY", + "nomCommune": "MEAULNE VITRAY" }, { - "codePostal": "10240", - "codeCommune": "10257", - "libelleAcheminement": "MOREMBERT", - "nomCommune": "MOREMBERT" + "codePostal": "05500", + "codeCommune": "05132", + "libelleAcheminement": "ST BONNET EN CHAMPSAUR", + "nomCommune": "ST BONNET EN CHAMPSAUR" }, { - "codePostal": "51260", - "codeCommune": "51124", - "libelleAcheminement": "CHANTEMERLE", - "nomCommune": "CHANTEMERLE" + "codePostal": "17780", + "codeCommune": "17375", + "libelleAcheminement": "ST NAZAIRE SUR CHARENTE", + "nomCommune": "ST NAZAIRE SUR CHARENTE" }, { - "codePostal": "08250", - "codeCommune": "08310", - "libelleAcheminement": "MOURON", - "nomCommune": "MOURON" + "codePostal": "17130", + "codeCommune": "17454", + "libelleAcheminement": "TUGERAS ST MAURICE", + "nomCommune": "TUGERAS ST MAURICE" }, { - "codePostal": "10400", - "codeCommune": "10259", - "libelleAcheminement": "LA MOTTE TILLY", - "nomCommune": "LA MOTTE TILLY" + "codePostal": "03470", + "codeCommune": "03177", + "libelleAcheminement": "MONETAY SUR LOIRE", + "nomCommune": "MONETAY SUR LOIRE" }, { - "codePostal": "51260", - "codeCommune": "51127", - "libelleAcheminement": "LA CHAPELLE LASSON", - "nomCommune": "LA CHAPELLE LASSON" + "codePostal": "05330", + "codeCommune": "05133", + "libelleAcheminement": "ST CHAFFREY", + "nomCommune": "ST CHAFFREY" }, { - "codePostal": "08130", - "codeCommune": "08321", - "libelleAcheminement": "NEUVILLE DAY", - "nomCommune": "NEUVILLE DAY" + "codePostal": "17310", + "codeCommune": "17385", + "libelleAcheminement": "ST PIERRE D OLERON", + "nomCommune": "ST PIERRE D OLERON" }, { - "codePostal": "10160", - "codeCommune": "10266", - "libelleAcheminement": "NOGENT EN OTHE", - "nomCommune": "NOGENT EN OTHE" + "codePostal": "17400", + "codeCommune": "17459", + "libelleAcheminement": "VARAIZE", + "nomCommune": "VARAIZE" }, { - "codePostal": "51330", - "codeCommune": "51132", - "libelleAcheminement": "LES CHARMONTOIS", - "nomCommune": "LES CHARMONTOIS" + "codePostal": "03130", + "codeCommune": "03181", + "libelleAcheminement": "MONTCOMBROUX LES MINES", + "nomCommune": "MONTCOMBROUX LES MINES" }, { - "codePostal": "08090", - "codeCommune": "08322", - "libelleAcheminement": "NEUVILLE LES THIS", - "nomCommune": "NEUVILLE LES THIS" + "codePostal": "05800", + "codeCommune": "05142", + "libelleAcheminement": "ST FIRMIN EN VALGODEMARD", + "nomCommune": "ST FIRMIN" }, { - "codePostal": "10240", - "codeCommune": "10267", - "libelleAcheminement": "NOGENT SUR AUBE", - "nomCommune": "NOGENT SUR AUBE" + "codePostal": "17250", + "codeCommune": "17389", + "libelleAcheminement": "STE RADEGONDE", + "nomCommune": "STE RADEGONDE" }, { - "codePostal": "51700", - "codeCommune": "51136", - "libelleAcheminement": "CHATILLON SUR MARNE", - "nomCommune": "CHATILLON SUR MARNE" + "codePostal": "17300", + "codeCommune": "17463", + "libelleAcheminement": "VERGEROUX", + "nomCommune": "VERGEROUX" }, { - "codePostal": "08240", - "codeCommune": "08326", - "libelleAcheminement": "NOUART", - "nomCommune": "NOUART" + "codePostal": "03500", + "codeCommune": "03188", + "libelleAcheminement": "MONTORD", + "nomCommune": "MONTORD" }, { - "codePostal": "10700", - "codeCommune": "10272", - "libelleAcheminement": "ORMES", - "nomCommune": "ORMES" + "codePostal": "05260", + "codeCommune": "05145", + "libelleAcheminement": "ST JEAN ST NICOLAS", + "nomCommune": "ST JEAN ST NICOLAS" }, { - "codePostal": "51800", - "codeCommune": "51139", - "libelleAcheminement": "CHAUDEFONTAINE", - "nomCommune": "CHAUDEFONTAINE" + "codePostal": "17610", + "codeCommune": "17395", + "libelleAcheminement": "ST SAUVANT", + "nomCommune": "ST SAUVANT" }, { - "codePostal": "08300", - "codeCommune": "08330", - "libelleAcheminement": "NOVY CHEVRIERES", - "nomCommune": "NOVY CHEVRIERES" + "codePostal": "17330", + "codeCommune": "17464", + "libelleAcheminement": "VERGNE", + "nomCommune": "VERGNE" }, { - "codePostal": "10700", - "codeCommune": "10293", - "libelleAcheminement": "POIVRES", - "nomCommune": "POIVRES" + "codePostal": "03390", + "codeCommune": "03191", + "libelleAcheminement": "MURAT", + "nomCommune": "MURAT" }, { - "codePostal": "51530", - "codeCommune": "51142", - "libelleAcheminement": "CHAVOT COURCOURT", - "nomCommune": "CHAVOT COURCOURT" + "codePostal": "05140", + "codeCommune": "05146", + "libelleAcheminement": "ST JULIEN EN BEAUCHENE", + "nomCommune": "ST JULIEN EN BEAUCHENE" }, { - "codePostal": "08240", - "codeCommune": "08332", - "libelleAcheminement": "OCHES", - "nomCommune": "OCHES" + "codePostal": "17540", + "codeCommune": "17396", + "libelleAcheminement": "ST SAUVEUR D AUNIS", + "nomCommune": "ST SAUVEUR D AUNIS" }, { - "codePostal": "10110", - "codeCommune": "10294", - "libelleAcheminement": "POLIGNY", - "nomCommune": "POLIGNY" + "codePostal": "17540", + "codeCommune": "17466", + "libelleAcheminement": "VERINES", + "nomCommune": "VERINES" }, { - "codePostal": "51140", - "codeCommune": "51145", - "libelleAcheminement": "CHENAY", - "nomCommune": "CHENAY" + "codePostal": "03190", + "codeCommune": "03193", + "libelleAcheminement": "NASSIGNY", + "nomCommune": "NASSIGNY" }, { - "codePostal": "08250", - "codeCommune": "08333", - "libelleAcheminement": "OLIZY PRIMAT", - "nomCommune": "OLIZY PRIMAT" + "codePostal": "05260", + "codeCommune": "05149", + "libelleAcheminement": "ST LEGER LES MELEZES", + "nomCommune": "ST LEGER LES MELEZES" }, { - "codePostal": "10290", - "codeCommune": "10301", - "libelleAcheminement": "POUY SUR VANNES", - "nomCommune": "POUY SUR VANNES" + "codePostal": "17350", + "codeCommune": "17397", + "libelleAcheminement": "ST SAVINIEN", + "nomCommune": "ST SAVINIEN" }, { - "codePostal": "51510", - "codeCommune": "51146", - "libelleAcheminement": "CHENIERS", - "nomCommune": "CHENIERS" + "codePostal": "17400", + "codeCommune": "17467", + "libelleAcheminement": "VERVANT", + "nomCommune": "VERVANT" }, { - "codePostal": "08300", - "codeCommune": "08339", - "libelleAcheminement": "PERTHES", - "nomCommune": "PERTHES" + "codePostal": "03310", + "codeCommune": "03195", + "libelleAcheminement": "NERIS LES BAINS", + "nomCommune": "NERIS LES BAINS" }, { - "codePostal": "10350", - "codeCommune": "10308", - "libelleAcheminement": "PRUNAY BELLEVILLE", - "nomCommune": "PRUNAY BELLEVILLE" + "codePostal": "05200", + "codeCommune": "05156", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "51600", - "codeCommune": "51147", - "libelleAcheminement": "LA CHEPPE", - "nomCommune": "LA CHEPPE" + "codePostal": "17800", + "codeCommune": "17398", + "libelleAcheminement": "ST SEURIN DE PALENNE", + "nomCommune": "ST SEURIN DE PALENNE" }, { - "codePostal": "08140", - "codeCommune": "08342", - "libelleAcheminement": "POURU AUX BOIS", - "nomCommune": "POURU AUX BOIS" + "codePostal": "17770", + "codeCommune": "17470", + "libelleAcheminement": "VILLARS LES BOIS", + "nomCommune": "VILLARS LES BOIS" }, { - "codePostal": "10130", - "codeCommune": "10312", - "libelleAcheminement": "RACINES", - "nomCommune": "RACINES" + "codePostal": "03340", + "codeCommune": "03197", + "libelleAcheminement": "NEUILLY LE REAL", + "nomCommune": "NEUILLY LE REAL" }, { - "codePostal": "51240", - "codeCommune": "51149", - "libelleAcheminement": "CHEPY", - "nomCommune": "CHEPY" + "codePostal": "05400", + "codeCommune": "05158", + "libelleAcheminement": "LE SAIX", + "nomCommune": "LE SAIX" }, { - "codePostal": "08140", - "codeCommune": "08343", - "libelleAcheminement": "POURU ST REMY", - "nomCommune": "POURU ST REMY" + "codePostal": "17800", + "codeCommune": "17400", + "libelleAcheminement": "ST SEVER DE SAINTONGE", + "nomCommune": "ST SEVER DE SAINTONGE" }, { - "codePostal": "10430", - "codeCommune": "10325", - "libelleAcheminement": "ROSIERES PRES TROYES", - "nomCommune": "ROSIERES PRES TROYES" + "codePostal": "17470", + "codeCommune": "17473", + "libelleAcheminement": "VILLEMORIN", + "nomCommune": "VILLEMORIN" }, { - "codePostal": "51120", - "codeCommune": "51151", - "libelleAcheminement": "CHICHEY", - "nomCommune": "CHICHEY" + "codePostal": "03210", + "codeCommune": "03202", + "libelleAcheminement": "NOYANT D ALLIER", + "nomCommune": "NOYANT D ALLIER" }, { - "codePostal": "08290", - "codeCommune": "08344", - "libelleAcheminement": "PREZ", - "nomCommune": "PREZ" + "codePostal": "05700", + "codeCommune": "05165", + "libelleAcheminement": "SAVOURNON", + "nomCommune": "SAVOURNON" }, { - "codePostal": "10500", - "codeCommune": "10327", - "libelleAcheminement": "LA ROTHIERE", - "nomCommune": "LA ROTHIERE" + "codePostal": "17500", + "codeCommune": "17403", + "libelleAcheminement": "ST SIMON DE BORDES", + "nomCommune": "ST SIMON DE BORDES" }, { - "codePostal": "51260", - "codeCommune": "51155", - "libelleAcheminement": "CLESLES", - "nomCommune": "CLESLES" + "codePostal": "17370", + "codeCommune": "17485", + "libelleAcheminement": "LE GRAND VILLAGE PLAGE", + "nomCommune": "LE GRAND VILLAGE PLAGE" }, { - "codePostal": "08370", - "codeCommune": "08347", - "libelleAcheminement": "PUILLY ET CHARBEAUX", - "nomCommune": "PUILLY ET CHARBEAUX" + "codePostal": "03320", + "codeCommune": "03210", + "libelleAcheminement": "POUZY MESANGY", + "nomCommune": "POUZY MESANGY" }, { - "codePostal": "10220", - "codeCommune": "10328", - "libelleAcheminement": "ROUILLY SACEY", - "nomCommune": "ROUILLY SACEY" + "codePostal": "05130", + "codeCommune": "05176", + "libelleAcheminement": "VALSERRES", + "nomCommune": "VALSERRES" }, { - "codePostal": "51230", - "codeCommune": "51164", - "libelleAcheminement": "CONNANTRAY VAUREFROY", - "nomCommune": "CONNANTRAY VAUREFROY" + "codePostal": "17260", + "codeCommune": "17404", + "libelleAcheminement": "ST SIMON DE PELLOUAILLE", + "nomCommune": "ST SIMON DE PELLOUAILLE" }, { - "codePostal": "08220", - "codeCommune": "08356", - "libelleAcheminement": "REMAUCOURT", - "nomCommune": "REMAUCOURT" + "codePostal": "18250", + "codeCommune": "18001", + "libelleAcheminement": "ACHERES", + "nomCommune": "ACHERES" }, { - "codePostal": "10200", - "codeCommune": "10330", - "libelleAcheminement": "ROUVRES LES VIGNES", - "nomCommune": "ROUVRES LES VIGNES" + "codePostal": "03190", + "codeCommune": "03213", + "libelleAcheminement": "REUGNY", + "nomCommune": "REUGNY" }, { - "codePostal": "51210", - "codeCommune": "51170", - "libelleAcheminement": "CORFELIX", - "nomCommune": "CORFELIX" + "codePostal": "06160", + "codeCommune": "06004", + "libelleAcheminement": "ANTIBES", + "nomCommune": "ANTIBES" }, { - "codePostal": "08150", - "codeCommune": "08358", - "libelleAcheminement": "REMILLY LES POTHEES", - "nomCommune": "REMILLY LES POTHEES" + "codePostal": "17370", + "codeCommune": "17411", + "libelleAcheminement": "ST TROJAN LES BAINS", + "nomCommune": "ST TROJAN LES BAINS" }, { - "codePostal": "10120", - "codeCommune": "10340", - "libelleAcheminement": "ST GERMAIN", - "nomCommune": "ST GERMAIN" + "codePostal": "18800", + "codeCommune": "18023", + "libelleAcheminement": "BAUGY", + "nomCommune": "BAUGY" }, { - "codePostal": "51220", - "codeCommune": "51171", - "libelleAcheminement": "CORMICY", - "nomCommune": "CORMICY" + "codePostal": "03370", + "codeCommune": "03228", + "libelleAcheminement": "ST ELOY D ALLIER", + "nomCommune": "ST ELOY D ALLIER" }, { - "codePostal": "08150", - "codeCommune": "08365", - "libelleAcheminement": "RIMOGNE", - "nomCommune": "RIMOGNE" + "codePostal": "06420", + "codeCommune": "06009", + "libelleAcheminement": "BAIROLS", + "nomCommune": "BAIROLS" }, { - "codePostal": "10120", - "codeCommune": "10340", - "libelleAcheminement": "ST GERMAIN", - "nomCommune": "ST GERMAIN" + "codePostal": "17100", + "codeCommune": "17415", + "libelleAcheminement": "SAINTES", + "nomCommune": "SAINTES" }, { - "codePostal": "51170", - "codeCommune": "51194", - "libelleAcheminement": "COURVILLE", - "nomCommune": "COURVILLE" + "codePostal": "18800", + "codeCommune": "18023", + "libelleAcheminement": "BAUGY", + "nomCommune": "BAUGY" }, { - "codePostal": "08220", - "codeCommune": "08366", - "libelleAcheminement": "ROCQUIGNY", - "nomCommune": "ROCQUIGNY" + "codePostal": "03160", + "codeCommune": "03241", + "libelleAcheminement": "ST LEOPARDIN D AUGY", + "nomCommune": "ST LEOPARDIN D AUGY" }, { - "codePostal": "10320", - "codeCommune": "10342", - "libelleAcheminement": "ST JEAN DE BONNEVAL", - "nomCommune": "ST JEAN DE BONNEVAL" + "codePostal": "06620", + "codeCommune": "06010", + "libelleAcheminement": "LE BAR SUR LOUP", + "nomCommune": "LE BAR SUR LOUP" }, { - "codePostal": "51170", - "codeCommune": "51198", - "libelleAcheminement": "CRUGNY", - "nomCommune": "CRUGNY" + "codePostal": "17510", + "codeCommune": "17416", + "libelleAcheminement": "SALEIGNES", + "nomCommune": "SALEIGNES" }, { - "codePostal": "08230", - "codeCommune": "08367", - "libelleAcheminement": "ROCROI", - "nomCommune": "ROCROI" + "codePostal": "18500", + "codeCommune": "18028", + "libelleAcheminement": "BERRY BOUY", + "nomCommune": "BERRY BOUY" }, { - "codePostal": "10800", - "codeCommune": "10343", - "libelleAcheminement": "ST JULIEN LES VILLAS", - "nomCommune": "ST JULIEN LES VILLAS" + "codePostal": "03420", + "codeCommune": "03244", + "libelleAcheminement": "ST MARCEL EN MARCILLAT", + "nomCommune": "ST MARCEL EN MARCILLAT" }, { - "codePostal": "51480", - "codeCommune": "51199", - "libelleAcheminement": "CUCHERY", - "nomCommune": "CUCHERY" + "codePostal": "06310", + "codeCommune": "06011", + "libelleAcheminement": "BEAULIEU SUR MER", + "nomCommune": "BEAULIEU SUR MER" }, { - "codePostal": "08190", - "codeCommune": "08368", - "libelleAcheminement": "ROIZY", - "nomCommune": "ROIZY" + "codePostal": "17160", + "codeCommune": "17428", + "libelleAcheminement": "SONNAC", + "nomCommune": "SONNAC" }, { - "codePostal": "10100", - "codeCommune": "10347", - "libelleAcheminement": "ST LOUP DE BUFFIGNY", - "nomCommune": "ST LOUP DE BUFFIGNY" + "codePostal": "18160", + "codeCommune": "18043", + "libelleAcheminement": "LA CELLE CONDE", + "nomCommune": "LA CELLE CONDE" }, { - "codePostal": "51480", - "codeCommune": "51202", - "libelleAcheminement": "CUMIERES", - "nomCommune": "CUMIERES" + "codePostal": "03230", + "codeCommune": "03245", + "libelleAcheminement": "ST MARTIN DES LAIS", + "nomCommune": "ST MARTIN DES LAIS" }, { - "codePostal": "08150", - "codeCommune": "08370", - "libelleAcheminement": "ROUVROY SUR AUDRY", - "nomCommune": "ROUVROY SUR AUDRY" + "codePostal": "06390", + "codeCommune": "06015", + "libelleAcheminement": "BERRE LES ALPES", + "nomCommune": "BERRE LES ALPES" }, { - "codePostal": "10150", - "codeCommune": "10352", - "libelleAcheminement": "STE MAURE", - "nomCommune": "STE MAURE" + "codePostal": "17780", + "codeCommune": "17429", + "libelleAcheminement": "SOUBISE", + "nomCommune": "SOUBISE" }, { - "codePostal": "51330", - "codeCommune": "51206", - "libelleAcheminement": "DAMPIERRE LE CHATEAU", - "nomCommune": "DAMPIERRE LE CHATEAU" + "codePostal": "18130", + "codeCommune": "18045", + "libelleAcheminement": "CHALIVOY MILON", + "nomCommune": "CHALIVOY MILON" }, { - "codePostal": "08250", - "codeCommune": "08383", - "libelleAcheminement": "ST JUVIN", - "nomCommune": "ST JUVIN" + "codePostal": "03160", + "codeCommune": "03251", + "libelleAcheminement": "ST PLAISIR", + "nomCommune": "ST PLAISIR" }, { - "codePostal": "10150", - "codeCommune": "10352", - "libelleAcheminement": "STE MAURE", - "nomCommune": "STE MAURE" + "codePostal": "06800", + "codeCommune": "06027", + "libelleAcheminement": "CAGNES SUR MER", + "nomCommune": "CAGNES SUR MER" }, { - "codePostal": "51530", - "codeCommune": "51210", - "libelleAcheminement": "DIZY", - "nomCommune": "DIZY" + "codePostal": "17250", + "codeCommune": "17431", + "libelleAcheminement": "SOULIGNONNE", + "nomCommune": "SOULIGNONNE" }, { - "codePostal": "08130", - "codeCommune": "08384", - "libelleAcheminement": "ST LAMBERT ET MONT DE JEUX", - "nomCommune": "ST LAMBERT ET MONT DE JEUX" + "codePostal": "18380", + "codeCommune": "18047", + "libelleAcheminement": "LA CHAPELLE D ANGILLON", + "nomCommune": "LA CHAPELLE D ANGILLON" }, { - "codePostal": "10410", - "codeCommune": "10357", - "libelleAcheminement": "ST PARRES AUX TERTRES", - "nomCommune": "ST PARRES AUX TERTRES" + "codePostal": "03500", + "codeCommune": "03254", + "libelleAcheminement": "ST POURCAIN SUR SIOULE", + "nomCommune": "ST POURCAIN SUR SIOULE" }, { - "codePostal": "51800", - "codeCommune": "51211", - "libelleAcheminement": "DOMMARTIN DAMPIERRE", - "nomCommune": "DOMMARTIN DAMPIERRE" + "codePostal": "06400", + "codeCommune": "06029", + "libelleAcheminement": "CANNES", + "nomCommune": "CANNES" }, { - "codePostal": "08300", - "codeCommune": "08386", - "libelleAcheminement": "ST LOUP EN CHAMPAGNE", - "nomCommune": "ST LOUP EN CHAMPAGNE" + "codePostal": "17700", + "codeCommune": "17434", + "libelleAcheminement": "SURGERES", + "nomCommune": "SURGERES" }, { - "codePostal": "10260", - "codeCommune": "10358", - "libelleAcheminement": "ST PARRES LES VAUDES", - "nomCommune": "ST PARRES LES VAUDES" + "codePostal": "18290", + "codeCommune": "18055", + "libelleAcheminement": "CHAROST", + "nomCommune": "CHAROST" }, { - "codePostal": "51300", - "codeCommune": "51220", - "libelleAcheminement": "DROUILLY", - "nomCommune": "DROUILLY" + "codePostal": "03370", + "codeCommune": "03259", + "libelleAcheminement": "ST SAUVIER", + "nomCommune": "ST SAUVIER" }, { - "codePostal": "08400", - "codeCommune": "08392", - "libelleAcheminement": "ST MOREL", - "nomCommune": "ST MOREL" + "codePostal": "06670", + "codeCommune": "06034", + "libelleAcheminement": "CASTAGNIERS", + "nomCommune": "CASTAGNIERS" }, { - "codePostal": "10700", - "codeCommune": "10361", - "libelleAcheminement": "ST REMY SOUS BARBUISE", - "nomCommune": "ST REMY SOUS BARBUISE" + "codePostal": "17460", + "codeCommune": "17441", + "libelleAcheminement": "TESSON", + "nomCommune": "TESSON" }, { - "codePostal": "51490", - "codeCommune": "51232", - "libelleAcheminement": "EPOYE", - "nomCommune": "EPOYE" + "codePostal": "18370", + "codeCommune": "18057", + "libelleAcheminement": "CHATEAUMEILLANT", + "nomCommune": "CHATEAUMEILLANT" }, { - "codePostal": "08400", - "codeCommune": "08406", - "libelleAcheminement": "SAVIGNY SUR AISNE", - "nomCommune": "SAVIGNY SUR AISNE" + "codePostal": "03220", + "codeCommune": "03274", + "libelleAcheminement": "SORBIER", + "nomCommune": "SORBIER" }, { - "codePostal": "10800", - "codeCommune": "10363", - "libelleAcheminement": "ST THIBAULT", - "nomCommune": "ST THIBAULT" + "codePostal": "06340", + "codeCommune": "06054", + "libelleAcheminement": "DRAP", + "nomCommune": "DRAP" }, { - "codePostal": "51310", - "codeCommune": "51233", - "libelleAcheminement": "ESCARDES", - "nomCommune": "ESCARDES" + "codePostal": "17380", + "codeCommune": "17448", + "libelleAcheminement": "TONNAY BOUTONNE", + "nomCommune": "TONNAY BOUTONNE" }, { - "codePostal": "08130", - "codeCommune": "08411", - "libelleAcheminement": "SEMUY", - "nomCommune": "SEMUY" + "codePostal": "18190", + "codeCommune": "18058", + "libelleAcheminement": "CHATEAUNEUF SUR CHER", + "nomCommune": "CHATEAUNEUF SUR CHER" }, { - "codePostal": "10320", - "codeCommune": "10371", - "libelleAcheminement": "SOMMEVAL", - "nomCommune": "SOMMEVAL" + "codePostal": "03140", + "codeCommune": "03277", + "libelleAcheminement": "TARGET", + "nomCommune": "TARGET" }, { - "codePostal": "51260", - "codeCommune": "51234", - "libelleAcheminement": "ESCLAVOLLES LUREY", - "nomCommune": "ESCLAVOLLES LUREY" + "codePostal": "06470", + "codeCommune": "06056", + "libelleAcheminement": "ENTRAUNES", + "nomCommune": "ENTRAUNES" }, { - "codePostal": "08460", - "codeCommune": "08419", - "libelleAcheminement": "SIGNY L ABBAYE", - "nomCommune": "SIGNY L ABBAYE" + "codePostal": "17160", + "codeCommune": "17451", + "libelleAcheminement": "LES TOUCHES DE PERIGNY", + "nomCommune": "LES TOUCHES DE PERIGNY" }, { - "codePostal": "10200", - "codeCommune": "10377", - "libelleAcheminement": "THIL", - "nomCommune": "THIL" + "codePostal": "18170", + "codeCommune": "18059", + "libelleAcheminement": "LE CHATELET", + "nomCommune": "LE CHATELET" }, { - "codePostal": "51130", - "codeCommune": "51239", - "libelleAcheminement": "ETRECHY", - "nomCommune": "ETRECHY" + "codePostal": "03410", + "codeCommune": "03279", + "libelleAcheminement": "TEILLET ARGENTY", + "nomCommune": "TEILLET ARGENTY" }, { - "codePostal": "08380", - "codeCommune": "08420", - "libelleAcheminement": "SIGNY LE PETIT", - "nomCommune": "SIGNY LE PETIT" + "codePostal": "06460", + "codeCommune": "06058", + "libelleAcheminement": "ESCRAGNOLLES", + "nomCommune": "ESCRAGNOLLES" }, { - "codePostal": "10400", - "codeCommune": "10382", - "libelleAcheminement": "TRAINEL", - "nomCommune": "TRAINEL" + "codePostal": "17390", + "codeCommune": "17452", + "libelleAcheminement": "LA TREMBLADE", + "nomCommune": "LA TREMBLADE" }, { - "codePostal": "51230", - "codeCommune": "51248", - "libelleAcheminement": "FERE CHAMPENOISE", - "nomCommune": "FERE CHAMPENOISE" + "codePostal": "18190", + "codeCommune": "18063", + "libelleAcheminement": "CHAVANNES", + "nomCommune": "CHAVANNES" }, { - "codePostal": "08270", - "codeCommune": "08428", - "libelleAcheminement": "SORCY BAUTHEMONT", - "nomCommune": "SORCY BAUTHEMONT" + "codePostal": "03420", + "codeCommune": "03280", + "libelleAcheminement": "TERJAT", + "nomCommune": "TERJAT" }, { - "codePostal": "10210", - "codeCommune": "10388", - "libelleAcheminement": "TURGY", - "nomCommune": "TURGY" + "codePostal": "06850", + "codeCommune": "06063", + "libelleAcheminement": "GARS", + "nomCommune": "GARS" }, { - "codePostal": "51480", - "codeCommune": "51252", - "libelleAcheminement": "FLEURY LA RIVIERE", - "nomCommune": "FLEURY LA RIVIERE" + "codePostal": "17400", + "codeCommune": "17465", + "libelleAcheminement": "LA VERGNE", + "nomCommune": "LA VERGNE" }, { - "codePostal": "08230", - "codeCommune": "08436", - "libelleAcheminement": "TAILLETTE", - "nomCommune": "TAILLETTE" + "codePostal": "18120", + "codeCommune": "18064", + "libelleAcheminement": "CHERY", + "nomCommune": "CHERY" }, { - "codePostal": "10190", - "codeCommune": "10396", - "libelleAcheminement": "VAUCHASSIS", - "nomCommune": "VAUCHASSIS" + "codePostal": "03240", + "codeCommune": "03281", + "libelleAcheminement": "LE THEIL", + "nomCommune": "LE THEIL" }, { - "codePostal": "51800", - "codeCommune": "51255", - "libelleAcheminement": "FONTAINE EN DORMOIS", - "nomCommune": "FONTAINE EN DORMOIS" + "codePostal": "06670", + "codeCommune": "06075", + "libelleAcheminement": "LEVENS", + "nomCommune": "LEVENS" }, { - "codePostal": "08240", - "codeCommune": "08437", - "libelleAcheminement": "TAILLY", - "nomCommune": "TAILLY" + "codePostal": "17260", + "codeCommune": "17479", + "libelleAcheminement": "VIROLLET", + "nomCommune": "VIROLLET" }, { - "codePostal": "10800", - "codeCommune": "10402", - "libelleAcheminement": "LA VENDUE MIGNOT", - "nomCommune": "LA VENDUE MIGNOT" + "codePostal": "18130", + "codeCommune": "18068", + "libelleAcheminement": "COGNY", + "nomCommune": "COGNY" }, { - "codePostal": "51240", - "codeCommune": "51260", - "libelleAcheminement": "LE FRESNE", - "nomCommune": "LE FRESNE" + "codePostal": "03460", + "codeCommune": "03290", + "libelleAcheminement": "TREVOL", + "nomCommune": "TREVOL" }, { - "codePostal": "08380", - "codeCommune": "08440", - "libelleAcheminement": "TARZY", - "nomCommune": "TARZY" + "codePostal": "06440", + "codeCommune": "06077", + "libelleAcheminement": "LUCERAM", + "nomCommune": "LUCERAM" }, { - "codePostal": "10360", - "codeCommune": "10404", - "libelleAcheminement": "VERPILLIERES SUR OURCE", - "nomCommune": "VERPILLIERES SUR OURCE" + "codePostal": "17400", + "codeCommune": "17481", + "libelleAcheminement": "VOISSAY", + "nomCommune": "VOISSAY" }, { - "codePostal": "51210", - "codeCommune": "51263", - "libelleAcheminement": "FROMENTIERES", - "nomCommune": "FROMENTIERES" + "codePostal": "18150", + "codeCommune": "18082", + "libelleAcheminement": "CUFFY", + "nomCommune": "CUFFY" }, { - "codePostal": "08350", - "codeCommune": "08445", - "libelleAcheminement": "THELONNE", - "nomCommune": "THELONNE" + "codePostal": "03140", + "codeCommune": "03294", + "libelleAcheminement": "USSEL D ALLIER", + "nomCommune": "USSEL D ALLIER" }, { - "codePostal": "10600", - "codeCommune": "10409", - "libelleAcheminement": "VILLACERF", - "nomCommune": "VILLACERF" + "codePostal": "06210", + "codeCommune": "06079", + "libelleAcheminement": "MANDELIEU LA NAPOULE", + "nomCommune": "MANDELIEU LA NAPOULE" }, { - "codePostal": "51160", - "codeCommune": "51266", - "libelleAcheminement": "GERMAINE", - "nomCommune": "GERMAINE" + "codePostal": "18200", + "codeCommune": "18002", + "libelleAcheminement": "AINAY LE VIEIL", + "nomCommune": "AINAY LE VIEIL" }, { - "codePostal": "08240", - "codeCommune": "08446", - "libelleAcheminement": "THENORGUES", - "nomCommune": "THENORGUES" + "codePostal": "18260", + "codeCommune": "18084", + "libelleAcheminement": "DAMPIERRE EN CROT", + "nomCommune": "DAMPIERRE EN CROT" }, { - "codePostal": "10500", - "codeCommune": "10411", - "libelleAcheminement": "LA VILLE AUX BOIS", - "nomCommune": "LA VILLE AUX BOIS" + "codePostal": "03220", + "codeCommune": "03300", + "libelleAcheminement": "VAUMAS", + "nomCommune": "VAUMAS" }, { - "codePostal": "51800", - "codeCommune": "51274", - "libelleAcheminement": "GIZAUCOURT", - "nomCommune": "GIZAUCOURT" + "codePostal": "06420", + "codeCommune": "06080", + "libelleAcheminement": "MARIE", + "nomCommune": "MARIE" }, { - "codePostal": "08090", - "codeCommune": "08457", - "libelleAcheminement": "TOURNES", - "nomCommune": "TOURNES" + "codePostal": "18110", + "codeCommune": "18004", + "libelleAcheminement": "ALLOGNY", + "nomCommune": "ALLOGNY" }, { - "codePostal": "10160", - "codeCommune": "10417", - "libelleAcheminement": "VILLEMOIRON EN OTHE", - "nomCommune": "VILLEMOIRON EN OTHE" + "codePostal": "18800", + "codeCommune": "18090", + "libelleAcheminement": "ETRECHY", + "nomCommune": "ETRECHY" }, { - "codePostal": "51230", - "codeCommune": "51276", - "libelleAcheminement": "GOURGANCON", - "nomCommune": "GOURGANCON" + "codePostal": "03430", + "codeCommune": "03315", + "libelleAcheminement": "VILLEFRANCHE D ALLIER", + "nomCommune": "VILLEFRANCHE D ALLIER" }, { - "codePostal": "08240", - "codeCommune": "08463", - "libelleAcheminement": "VAUX EN DIEULET", - "nomCommune": "VAUX EN DIEULET" + "codePostal": "06710", + "codeCommune": "06082", + "libelleAcheminement": "MASSOINS", + "nomCommune": "MASSOINS" }, { - "codePostal": "10110", - "codeCommune": "10418", - "libelleAcheminement": "VILLEMORIEN", - "nomCommune": "VILLEMORIEN" + "codePostal": "18200", + "codeCommune": "18009", + "libelleAcheminement": "ARCOMPS", + "nomCommune": "ARCOMPS" }, { - "codePostal": "51400", - "codeCommune": "51278", - "libelleAcheminement": "LES GRANDES LOGES", - "nomCommune": "LES GRANDES LOGES" + "codePostal": "18200", + "codeCommune": "18091", + "libelleAcheminement": "FARGES ALLICHAMPS", + "nomCommune": "FARGES ALLICHAMPS" }, { - "codePostal": "08220", - "codeCommune": "08465", - "libelleAcheminement": "VAUX LES RUBIGNY", - "nomCommune": "VAUX LES RUBIGNY" + "codePostal": "03430", + "codeCommune": "03315", + "libelleAcheminement": "VILLEFRANCHE D ALLIER", + "nomCommune": "VILLEFRANCHE D ALLIER" }, { - "codePostal": "10370", - "codeCommune": "10420", - "libelleAcheminement": "VILLENAUXE LA GRANDE", - "nomCommune": "VILLENAUXE LA GRANDE" + "codePostal": "06910", + "codeCommune": "06087", + "libelleAcheminement": "LES MUJOULS", + "nomCommune": "LES MUJOULS" }, { - "codePostal": "51390", - "codeCommune": "51282", - "libelleAcheminement": "GUEUX", - "nomCommune": "GUEUX" + "codePostal": "18200", + "codeCommune": "18013", + "libelleAcheminement": "ARPHEUILLES", + "nomCommune": "ARPHEUILLES" }, { - "codePostal": "08160", - "codeCommune": "08469", - "libelleAcheminement": "VENDRESSE", - "nomCommune": "VENDRESSE" + "codePostal": "18800", + "codeCommune": "18092", + "libelleAcheminement": "FARGES EN SEPTAINE", + "nomCommune": "FARGES EN SEPTAINE" }, { - "codePostal": "10310", - "codeCommune": "10426", - "libelleAcheminement": "VILLE SOUS LA FERTE", - "nomCommune": "VILLE SOUS LA FERTE" + "codePostal": "03460", + "codeCommune": "03316", + "libelleAcheminement": "VILLENEUVE SUR ALLIER", + "nomCommune": "VILLENEUVE SUR ALLIER" }, { - "codePostal": "51320", - "codeCommune": "51285", - "libelleAcheminement": "HAUSSIMONT", - "nomCommune": "HAUSSIMONT" + "codePostal": "06440", + "codeCommune": "06092", + "libelleAcheminement": "PEILLON", + "nomCommune": "PEILLON" }, { - "codePostal": "08160", - "codeCommune": "08469", - "libelleAcheminement": "VENDRESSE", - "nomCommune": "VENDRESSE" + "codePostal": "18700", + "codeCommune": "18015", + "libelleAcheminement": "AUBIGNY SUR NERE", + "nomCommune": "AUBIGNY SUR NERE" }, { - "codePostal": "10110", - "codeCommune": "10427", - "libelleAcheminement": "VILLE SUR ARCE", - "nomCommune": "VILLE SUR ARCE" + "codePostal": "18360", + "codeCommune": "18093", + "libelleAcheminement": "FAVERDINES", + "nomCommune": "FAVERDINES" }, { - "codePostal": "51340", - "codeCommune": "51290", - "libelleAcheminement": "HEILTZ L EVEQUE", - "nomCommune": "HEILTZ L EVEQUE" + "codePostal": "03160", + "codeCommune": "03320", + "libelleAcheminement": "YGRANDE", + "nomCommune": "YGRANDE" }, { - "codePostal": "08390", - "codeCommune": "08471", - "libelleAcheminement": "VERRIERES", - "nomCommune": "VERRIERES" + "codePostal": "06470", + "codeCommune": "06094", + "libelleAcheminement": "PEONE", + "nomCommune": "PEONE" }, { - "codePostal": "10200", - "codeCommune": "10428", - "libelleAcheminement": "VILLE SUR TERRE", - "nomCommune": "VILLE SUR TERRE" + "codePostal": "18320", + "codeCommune": "18025", + "libelleAcheminement": "BEFFES", + "nomCommune": "BEFFES" }, { - "codePostal": "51140", - "codeCommune": "51294", - "libelleAcheminement": "HOURGES", - "nomCommune": "HOURGES" + "codePostal": "18200", + "codeCommune": "18107", + "libelleAcheminement": "LA GROUTTE", + "nomCommune": "LA GROUTTE" }, { - "codePostal": "08270", - "codeCommune": "08472", - "libelleAcheminement": "VIEL ST REMY", - "nomCommune": "VIEL ST REMY" + "codePostal": "04260", + "codeCommune": "04006", + "libelleAcheminement": "ALLOS", + "nomCommune": "ALLOS" }, { - "codePostal": "10110", - "codeCommune": "10438", - "libelleAcheminement": "VITRY LE CROISE", - "nomCommune": "VITRY LE CROISE" + "codePostal": "06260", + "codeCommune": "06096", + "libelleAcheminement": "PIERLAS", + "nomCommune": "PIERLAS" }, { - "codePostal": "51150", - "codeCommune": "51303", - "libelleAcheminement": "JALONS", - "nomCommune": "JALONS" + "codePostal": "18200", + "codeCommune": "18038", + "libelleAcheminement": "BRUERE ALLICHAMPS", + "nomCommune": "BRUERE ALLICHAMPS" }, { - "codePostal": "08190", - "codeCommune": "08473", - "libelleAcheminement": "VIEUX LES ASFELD", - "nomCommune": "VIEUX LES ASFELD" + "codePostal": "18250", + "codeCommune": "18111", + "libelleAcheminement": "HUMBLIGNY", + "nomCommune": "HUMBLIGNY" }, { - "codePostal": "10150", - "codeCommune": "10442", - "libelleAcheminement": "VOUE", - "nomCommune": "VOUE" + "codePostal": "04240", + "codeCommune": "04008", + "libelleAcheminement": "ANNOT", + "nomCommune": "ANNOT" }, { - "codePostal": "51700", - "codeCommune": "51309", - "libelleAcheminement": "JONQUERY", - "nomCommune": "JONQUERY" + "codePostal": "06260", + "codeCommune": "06099", + "libelleAcheminement": "PUGET THENIERS", + "nomCommune": "PUGET THENIERS" }, { - "codePostal": "08430", - "codeCommune": "08479", - "libelleAcheminement": "VILLERS LE TOURNEUR", - "nomCommune": "VILLERS LE TOURNEUR" + "codePostal": "18140", + "codeCommune": "18053", + "libelleAcheminement": "CHARENTONNAY", + "nomCommune": "CHARENTONNAY" }, { - "codePostal": "10210", - "codeCommune": "10443", - "libelleAcheminement": "VOUGREY", - "nomCommune": "VOUGREY" + "codePostal": "18350", + "codeCommune": "18113", + "libelleAcheminement": "IGNOL", + "nomCommune": "IGNOL" }, { - "codePostal": "51340", - "codeCommune": "51311", - "libelleAcheminement": "JUSSECOURT MINECOURT", - "nomCommune": "JUSSECOURT MINECOURT" + "codePostal": "04200", + "codeCommune": "04013", + "libelleAcheminement": "AUBIGNOSC", + "nomCommune": "AUBIGNOSC" }, { - "codePostal": "08350", - "codeCommune": "08481", - "libelleAcheminement": "VILLERS SUR BAR", - "nomCommune": "VILLERS SUR BAR" + "codePostal": "06910", + "codeCommune": "06107", + "libelleAcheminement": "LA ROQUE EN PROVENCE", + "nomCommune": "LA ROQUE EN PROVENCE" }, { - "codePostal": "11330", - "codeCommune": "11007", - "libelleAcheminement": "ALBIERES", - "nomCommune": "ALBIERES" + "codePostal": "18350", + "codeCommune": "18054", + "libelleAcheminement": "CHARLY", + "nomCommune": "CHARLY" }, { - "codePostal": "51120", - "codeCommune": "51313", - "libelleAcheminement": "LACHY", - "nomCommune": "LACHY" + "codePostal": "18120", + "codeCommune": "18128", + "libelleAcheminement": "LIMEUX", + "nomCommune": "LIMEUX" }, { - "codePostal": "08370", - "codeCommune": "08485", - "libelleAcheminement": "VILLY", - "nomCommune": "VILLY" + "codePostal": "04140", + "codeCommune": "04017", + "libelleAcheminement": "AUZET", + "nomCommune": "AUZET" }, { - "codePostal": "11190", - "codeCommune": "11010", - "libelleAcheminement": "ANTUGNAC", - "nomCommune": "ANTUGNAC" + "codePostal": "06850", + "codeCommune": "06116", + "libelleAcheminement": "ST AUBAN", + "nomCommune": "ST AUBAN" }, { - "codePostal": "51700", - "codeCommune": "51320", - "libelleAcheminement": "LEUVRIGNY", - "nomCommune": "LEUVRIGNY" + "codePostal": "18140", + "codeCommune": "18061", + "libelleAcheminement": "CHAUMOUX MARCILLY", + "nomCommune": "CHAUMOUX MARCILLY" }, { - "codePostal": "08400", - "codeCommune": "08490", - "libelleAcheminement": "VOUZIERS", - "nomCommune": "VOUZIERS" + "codePostal": "18140", + "codeCommune": "18132", + "libelleAcheminement": "LUGNY CHAMPAGNE", + "nomCommune": "LUGNY CHAMPAGNE" }, { - "codePostal": "11190", - "codeCommune": "11015", - "libelleAcheminement": "ARQUES", - "nomCommune": "ARQUES" + "codePostal": "04400", + "codeCommune": "04019", + "libelleAcheminement": "BARCELONNETTE", + "nomCommune": "BARCELONNETTE" }, { - "codePostal": "51300", - "codeCommune": "51325", - "libelleAcheminement": "LISSE EN CHAMPAGNE", - "nomCommune": "LISSE EN CHAMPAGNE" + "codePostal": "06660", + "codeCommune": "06119", + "libelleAcheminement": "ST DALMAS LE SELVAGE", + "nomCommune": "ST DALMAS LE SELVAGE" }, { - "codePostal": "08330", - "codeCommune": "08491", - "libelleAcheminement": "VRIGNE AUX BOIS", - "nomCommune": "VRIGNE AUX BOIS" + "codePostal": "18350", + "codeCommune": "18080", + "libelleAcheminement": "CROISY", + "nomCommune": "CROISY" }, { - "codePostal": "11700", - "codeCommune": "11022", - "libelleAcheminement": "AZILLE", - "nomCommune": "AZILLE" + "codePostal": "18510", + "codeCommune": "18145", + "libelleAcheminement": "MENETOU SALON", + "nomCommune": "MENETOU SALON" }, { - "codePostal": "51500", - "codeCommune": "51333", - "libelleAcheminement": "LUDES", - "nomCommune": "LUDES" + "codePostal": "04250", + "codeCommune": "04023", + "libelleAcheminement": "BAYONS", + "nomCommune": "BAYONS" }, { - "codePostal": "08200", - "codeCommune": "08494", - "libelleAcheminement": "WADELINCOURT", - "nomCommune": "WADELINCOURT" + "codePostal": "06660", + "codeCommune": "06120", + "libelleAcheminement": "ST ETIENNE DE TINEE", + "nomCommune": "ST ETIENNE DE TINEE" }, { - "codePostal": "11800", - "codeCommune": "11023", - "libelleAcheminement": "BADENS", - "nomCommune": "BADENS" + "codePostal": "18340", + "codeCommune": "18081", + "libelleAcheminement": "CROSSES", + "nomCommune": "CROSSES" }, { - "codePostal": "51500", - "codeCommune": "51338", - "libelleAcheminement": "MAILLY CHAMPAGNE", - "nomCommune": "MAILLY CHAMPAGNE" + "codePostal": "18700", + "codeCommune": "18147", + "libelleAcheminement": "MENETREOL SUR SAULDRE", + "nomCommune": "MENETREOL SUR SAULDRE" }, { - "codePostal": "09600", - "codeCommune": "09002", - "libelleAcheminement": "AIGUES VIVES", - "nomCommune": "AIGUES VIVES" + "codePostal": "04250", + "codeCommune": "04026", + "libelleAcheminement": "BELLAFFAIRE", + "nomCommune": "BELLAFFAIRE" }, { - "codePostal": "11100", - "codeCommune": "11024", - "libelleAcheminement": "BAGES", - "nomCommune": "BAGES" + "codePostal": "06700", + "codeCommune": "06123", + "libelleAcheminement": "ST LAURENT DU VAR", + "nomCommune": "ST LAURENT DU VAR" }, { - "codePostal": "51300", - "codeCommune": "51340", - "libelleAcheminement": "MAISONS EN CHAMPAGNE", - "nomCommune": "MAISONS EN CHAMPAGNE" + "codePostal": "18310", + "codeCommune": "18085", + "libelleAcheminement": "DAMPIERRE EN GRACAY", + "nomCommune": "DAMPIERRE EN GRACAY" }, { - "codePostal": "09300", - "codeCommune": "09003", - "libelleAcheminement": "L AIGUILLON", - "nomCommune": "L AIGUILLON" + "codePostal": "18120", + "codeCommune": "18148", + "libelleAcheminement": "MEREAU", + "nomCommune": "MEREAU" }, { - "codePostal": "11410", - "codeCommune": "11026", - "libelleAcheminement": "BARAIGNE", - "nomCommune": "BARAIGNE" + "codePostal": "04200", + "codeCommune": "04027", + "libelleAcheminement": "BEVONS", + "nomCommune": "BEVONS" }, { - "codePostal": "51530", - "codeCommune": "51342", - "libelleAcheminement": "MANCY", - "nomCommune": "MANCY" + "codePostal": "06450", + "codeCommune": "06127", + "libelleAcheminement": "ST MARTIN VESUBIE", + "nomCommune": "ST MARTIN VESUBIE" }, { - "codePostal": "09320", - "codeCommune": "09005", - "libelleAcheminement": "ALEU", - "nomCommune": "ALEU" + "codePostal": "18130", + "codeCommune": "18087", + "libelleAcheminement": "DUN SUR AURON", + "nomCommune": "DUN SUR AURON" }, { - "codePostal": "11240", - "codeCommune": "11034", - "libelleAcheminement": "BELVEZE DU RAZES", - "nomCommune": "BELVEZE DU RAZES" + "codePostal": "18170", + "codeCommune": "18153", + "libelleAcheminement": "MORLAC", + "nomCommune": "MORLAC" }, { - "codePostal": "51530", - "codeCommune": "51344", - "libelleAcheminement": "MARDEUIL", - "nomCommune": "MARDEUIL" + "codePostal": "04250", + "codeCommune": "04037", + "libelleAcheminement": "LE CAIRE", + "nomCommune": "LE CAIRE" }, { - "codePostal": "09400", - "codeCommune": "09006", - "libelleAcheminement": "ALLIAT", - "nomCommune": "ALLIAT" + "codePostal": "06470", + "codeCommune": "06133", + "libelleAcheminement": "SAUZE", + "nomCommune": "SAUZE" }, { - "codePostal": "11120", - "codeCommune": "11041", - "libelleAcheminement": "BIZE MINERVOIS", - "nomCommune": "BIZE MINERVOIS" + "codePostal": "18360", + "codeCommune": "18089", + "libelleAcheminement": "EPINEUIL LE FLEURIEL", + "nomCommune": "EPINEUIL LE FLEURIEL" }, { - "codePostal": "51270", - "codeCommune": "51345", - "libelleAcheminement": "MAREUIL EN BRIE", - "nomCommune": "MAREUIL EN BRIE" + "codePostal": "18390", + "codeCommune": "18158", + "libelleAcheminement": "MOULINS SUR YEVRE", + "nomCommune": "MOULINS SUR YEVRE" }, { - "codePostal": "09130", - "codeCommune": "09019", - "libelleAcheminement": "ARTIGAT", - "nomCommune": "ARTIGAT" + "codePostal": "04120", + "codeCommune": "04039", + "libelleAcheminement": "CASTELLANE", + "nomCommune": "CASTELLANE" }, { - "codePostal": "11420", - "codeCommune": "11057", - "libelleAcheminement": "CAHUZAC", - "nomCommune": "CAHUZAC" + "codePostal": "06750", + "codeCommune": "06134", + "libelleAcheminement": "SERANON", + "nomCommune": "SERANON" }, { - "codePostal": "51170", - "codeCommune": "51348", - "libelleAcheminement": "MARFAUX", - "nomCommune": "MARFAUX" + "codePostal": "18300", + "codeCommune": "18094", + "libelleAcheminement": "FEUX", + "nomCommune": "FEUX" }, { - "codePostal": "09250", - "codeCommune": "09031", - "libelleAcheminement": "AXIAT", - "nomCommune": "AXIAT" + "codePostal": "18330", + "codeCommune": "18159", + "libelleAcheminement": "NANCAY", + "nomCommune": "NANCAY" }, { - "codePostal": "11190", - "codeCommune": "11065", - "libelleAcheminement": "CAMPS SUR L AGLY", - "nomCommune": "CAMPS SUR L AGLY" + "codePostal": "04380", + "codeCommune": "04040", + "libelleAcheminement": "LE CASTELLARD MELAN", + "nomCommune": "LE CASTELLARD MELAN" }, { - "codePostal": "51260", - "codeCommune": "51353", - "libelleAcheminement": "MARSANGIS", - "nomCommune": "MARSANGIS" + "codePostal": "06830", + "codeCommune": "06145", + "libelleAcheminement": "TOURETTE DU CHATEAU", + "nomCommune": "TOURETTE DU CHATEAU" }, { - "codePostal": "09110", - "codeCommune": "09032", - "libelleAcheminement": "AX LES THERMES", - "nomCommune": "AX LES THERMES" + "codePostal": "18350", + "codeCommune": "18095", + "libelleAcheminement": "FLAVIGNY", + "nomCommune": "FLAVIGNY" }, { - "codePostal": "11000", - "codeCommune": "11069", - "libelleAcheminement": "CARCASSONNE", - "nomCommune": "CARCASSONNE" + "codePostal": "18330", + "codeCommune": "18165", + "libelleAcheminement": "NEUVY SUR BARANGEON", + "nomCommune": "NEUVY SUR BARANGEON" }, { - "codePostal": "51800", - "codeCommune": "51355", - "libelleAcheminement": "MASSIGES", - "nomCommune": "MASSIGES" + "codePostal": "04510", + "codeCommune": "04046", + "libelleAcheminement": "LE CHAFFAUT ST JURSON", + "nomCommune": "LE CHAFFAUT ST JURSON" }, { - "codePostal": "09500", - "codeCommune": "09039", - "libelleAcheminement": "LA BASTIDE DE BOUSIGNAC", - "nomCommune": "LA BASTIDE DE BOUSIGNAC" + "codePostal": "06340", + "codeCommune": "06149", + "libelleAcheminement": "LA TRINITE", + "nomCommune": "LA TRINITE" }, { - "codePostal": "11270", - "codeCommune": "11072", - "libelleAcheminement": "LA CASSAIGNE", - "nomCommune": "LA CASSAIGNE" + "codePostal": "18500", + "codeCommune": "18096", + "libelleAcheminement": "FOECY", + "nomCommune": "FOECY" }, { - "codePostal": "51300", - "codeCommune": "51356", - "libelleAcheminement": "MATIGNICOURT GONCOURT", - "nomCommune": "MATIGNICOURT GONCOURT" + "codePostal": "18200", + "codeCommune": "18169", + "libelleAcheminement": "NOZIERES", + "nomCommune": "NOZIERES" }, { - "codePostal": "09160", - "codeCommune": "09041", - "libelleAcheminement": "LA BASTIDE DU SALAT", - "nomCommune": "LA BASTIDE DU SALAT" + "codePostal": "04160", + "codeCommune": "04049", + "libelleAcheminement": "CHATEAU ARNOUX ST AUBAN", + "nomCommune": "CHATEAU ARNOUX ST AUBAN" }, { - "codePostal": "11300", - "codeCommune": "11078", - "libelleAcheminement": "CASTELRENG", - "nomCommune": "CASTELRENG" + "codePostal": "06560", + "codeCommune": "06152", + "libelleAcheminement": "VALBONNE", + "nomCommune": "VALBONNE" }, { - "codePostal": "51320", - "codeCommune": "51361", - "libelleAcheminement": "LE MEIX TIERCELIN", - "nomCommune": "LE MEIX TIERCELIN" + "codePostal": "18140", + "codeCommune": "18099", + "libelleAcheminement": "GARIGNY", + "nomCommune": "GARIGNY" }, { - "codePostal": "09400", - "codeCommune": "09045", - "libelleAcheminement": "BEDEILHAC ET AYNAT", - "nomCommune": "BEDEILHAC ET AYNAT" + "codePostal": "18130", + "codeCommune": "18173", + "libelleAcheminement": "OSMERY", + "nomCommune": "OSMERY" }, { - "codePostal": "11230", - "codeCommune": "11080", - "libelleAcheminement": "VAL DE LAMBRONNE", - "nomCommune": "VAL DE LAMBRONNE" + "codePostal": "04200", + "codeCommune": "04053", + "libelleAcheminement": "CHATEAUNEUF VAL ST DONAT", + "nomCommune": "CHATEAUNEUF VAL ST DONAT" }, { - "codePostal": "51300", - "codeCommune": "51363", - "libelleAcheminement": "MERLAUT", - "nomCommune": "MERLAUT" + "codePostal": "06220", + "codeCommune": "06155", + "libelleAcheminement": "VALLAURIS", + "nomCommune": "VALLAURIS" }, { - "codePostal": "09800", - "codeCommune": "09062", - "libelleAcheminement": "BORDES UCHENTEIN", - "nomCommune": "BORDES UCHENTEIN" + "codePostal": "18310", + "codeCommune": "18100", + "libelleAcheminement": "GENOUILLY", + "nomCommune": "GENOUILLY" }, { - "codePostal": "11160", - "codeCommune": "11081", - "libelleAcheminement": "CAUNES MINERVOIS", - "nomCommune": "CAUNES MINERVOIS" + "codePostal": "18220", + "codeCommune": "18176", + "libelleAcheminement": "PARASSY", + "nomCommune": "PARASSY" }, { - "codePostal": "51390", - "codeCommune": "51364", - "libelleAcheminement": "MERY PREMECY", - "nomCommune": "MERY PREMECY" + "codePostal": "04270", + "codeCommune": "04054", + "libelleAcheminement": "CHATEAUREDON", + "nomCommune": "CHATEAUREDON" }, { - "codePostal": "09320", - "codeCommune": "09065", - "libelleAcheminement": "BOUSSENAC", - "nomCommune": "BOUSSENAC" + "codePostal": "06470", + "codeCommune": "06160", + "libelleAcheminement": "VILLENEUVE D ENTRAUNES", + "nomCommune": "VILLENEUVE D ENTRAUNES" }, { - "codePostal": "11230", - "codeCommune": "11100", - "libelleAcheminement": "CORBIERES", - "nomCommune": "CORBIERES" + "codePostal": "18600", + "codeCommune": "18102", + "libelleAcheminement": "GIVARDON", + "nomCommune": "GIVARDON" }, { - "codePostal": "51140", - "codeCommune": "51379", - "libelleAcheminement": "MONTIGNY SUR VESLE", - "nomCommune": "MONTIGNY SUR VESLE" + "codePostal": "18340", + "codeCommune": "18180", + "libelleAcheminement": "PLAIMPIED GIVAUDINS", + "nomCommune": "PLAIMPIED GIVAUDINS" }, { - "codePostal": "09290", - "codeCommune": "09073", - "libelleAcheminement": "CAMARADE", - "nomCommune": "CAMARADE" + "codePostal": "05110", + "codeCommune": "04058", + "libelleAcheminement": "CLARET", + "nomCommune": "CLARET" }, { - "codePostal": "11500", - "codeCommune": "11101", - "libelleAcheminement": "COUDONS", - "nomCommune": "COUDONS" + "codePostal": "06270", + "codeCommune": "06161", + "libelleAcheminement": "VILLENEUVE LOUBET", + "nomCommune": "VILLENEUVE LOUBET" }, { - "codePostal": "51210", - "codeCommune": "51380", - "libelleAcheminement": "MONTMIRAIL", - "nomCommune": "MONTMIRAIL" + "codePostal": "18310", + "codeCommune": "18103", + "libelleAcheminement": "GRACAY", + "nomCommune": "GRACAY" }, { - "codePostal": "09100", - "codeCommune": "09081", - "libelleAcheminement": "LE CARLARET", - "nomCommune": "LE CARLARET" + "codePostal": "18210", + "codeCommune": "18183", + "libelleAcheminement": "LE PONDY", + "nomCommune": "LE PONDY" }, { - "codePostal": "11300", - "codeCommune": "11105", - "libelleAcheminement": "COURNANEL", - "nomCommune": "COURNANEL" + "codePostal": "04330", + "codeCommune": "04059", + "libelleAcheminement": "CLUMANC", + "nomCommune": "CLUMANC" }, { - "codePostal": "51530", - "codeCommune": "51384", - "libelleAcheminement": "MORANGIS", - "nomCommune": "MORANGIS" + "codePostal": "07190", + "codeCommune": "07006", + "libelleAcheminement": "ALBON D ARDECHE", + "nomCommune": "ALBON D ARDECHE" }, { - "codePostal": "09350", - "codeCommune": "09084", - "libelleAcheminement": "CASTEX", - "nomCommune": "CASTEX" + "codePostal": "18140", + "codeCommune": "18104", + "libelleAcheminement": "GROISES", + "nomCommune": "GROISES" }, { - "codePostal": "11230", - "codeCommune": "11107", - "libelleAcheminement": "COURTAULY", - "nomCommune": "COURTAULY" + "codePostal": "18380", + "codeCommune": "18185", + "libelleAcheminement": "PRESLY", + "nomCommune": "PRESLY" }, { - "codePostal": "51210", - "codeCommune": "51386", - "libelleAcheminement": "MORSAINS", - "nomCommune": "MORSAINS" + "codePostal": "04370", + "codeCommune": "04061", + "libelleAcheminement": "COLMARS LES ALPES", + "nomCommune": "COLMARS" }, { - "codePostal": "09250", - "codeCommune": "09087", - "libelleAcheminement": "CAUSSOU", - "nomCommune": "CAUSSOU" + "codePostal": "07340", + "codeCommune": "07009", + "libelleAcheminement": "ANDANCE", + "nomCommune": "ANDANCE" }, { - "codePostal": "11190", - "codeCommune": "11109", - "libelleAcheminement": "COUSTAUSSA", - "nomCommune": "COUSTAUSSA" + "codePostal": "18130", + "codeCommune": "18121", + "libelleAcheminement": "LANTAN", + "nomCommune": "LANTAN" }, { - "codePostal": "51400", - "codeCommune": "51388", - "libelleAcheminement": "MOURMELON LE GRAND", - "nomCommune": "MOURMELON LE GRAND" + "codePostal": "18120", + "codeCommune": "18186", + "libelleAcheminement": "PREUILLY", + "nomCommune": "PREUILLY" }, { - "codePostal": "09000", - "codeCommune": "09093", - "libelleAcheminement": "CELLES", - "nomCommune": "CELLES" + "codePostal": "04530", + "codeCommune": "04062", + "libelleAcheminement": "LA CONDAMINE CHATELARD", + "nomCommune": "LA CONDAMINE CHATELARD" }, { - "codePostal": "11350", - "codeCommune": "11113", - "libelleAcheminement": "CUCUGNAN", - "nomCommune": "CUCUGNAN" + "codePostal": "07100", + "codeCommune": "07010", + "libelleAcheminement": "ANNONAY", + "nomCommune": "ANNONAY" }, { - "codePostal": "51700", - "codeCommune": "51396", - "libelleAcheminement": "NESLE LE REPONS", - "nomCommune": "NESLE LE REPONS" + "codePostal": "18120", + "codeCommune": "18134", + "libelleAcheminement": "LURY SUR ARNON", + "nomCommune": "LURY SUR ARNON" }, { - "codePostal": "09000", - "codeCommune": "09099", - "libelleAcheminement": "COS", - "nomCommune": "COS" + "codePostal": "18120", + "codeCommune": "18190", + "libelleAcheminement": "QUINCY", + "nomCommune": "QUINCY" }, { - "codePostal": "11360", - "codeCommune": "11124", - "libelleAcheminement": "DURBAN CORBIERES", - "nomCommune": "DURBAN CORBIERES" + "codePostal": "04230", + "codeCommune": "04065", + "libelleAcheminement": "CRUIS", + "nomCommune": "CRUIS" }, { - "codePostal": "51800", - "codeCommune": "51399", - "libelleAcheminement": "LA NEUVILLE AU PONT", - "nomCommune": "LA NEUVILLE AU PONT" + "codePostal": "07600", + "codeCommune": "07011", + "libelleAcheminement": "VALLEES D ANTRAIGUES ASPERJOC", + "nomCommune": "VALLEES D ANTRAIGUES ASPERJOC" }, { - "codePostal": "09120", - "codeCommune": "09101", - "libelleAcheminement": "COUSSA", - "nomCommune": "COUSSA" + "codePostal": "18290", + "codeCommune": "18137", + "libelleAcheminement": "MAREUIL SUR ARNON", + "nomCommune": "MAREUIL SUR ARNON" }, { - "codePostal": "11200", - "codeCommune": "11132", - "libelleAcheminement": "FABREZAN", - "nomCommune": "FABREZAN" + "codePostal": "18130", + "codeCommune": "18191", + "libelleAcheminement": "RAYMOND", + "nomCommune": "RAYMOND" }, { - "codePostal": "51310", - "codeCommune": "51402", - "libelleAcheminement": "NEUVY", - "nomCommune": "NEUVY" + "codePostal": "04300", + "codeCommune": "04068", + "libelleAcheminement": "DAUPHIN", + "nomCommune": "DAUPHIN" }, { - "codePostal": "09600", - "codeCommune": "09107", - "libelleAcheminement": "DUN", - "nomCommune": "DUN" + "codePostal": "07290", + "codeCommune": "07013", + "libelleAcheminement": "ARDOIX", + "nomCommune": "ARDOIX" }, { - "codePostal": "11410", - "codeCommune": "11134", - "libelleAcheminement": "FAJAC LA RELENQUE", - "nomCommune": "FAJAC LA RELENQUE" + "codePostal": "18500", + "codeCommune": "18138", + "libelleAcheminement": "MARMAGNE", + "nomCommune": "MARMAGNE" }, { - "codePostal": "51240", - "codeCommune": "51409", - "libelleAcheminement": "NUISEMENT SUR COOLE", - "nomCommune": "NUISEMENT SUR COOLE" + "codePostal": "18270", + "codeCommune": "18192", + "libelleAcheminement": "REIGNY", + "nomCommune": "REIGNY" }, { - "codePostal": "09140", - "codeCommune": "09113", - "libelleAcheminement": "ERCE", - "nomCommune": "ERCE" + "codePostal": "04420", + "codeCommune": "04072", + "libelleAcheminement": "DRAIX", + "nomCommune": "DRAIX" }, { - "codePostal": "11400", - "codeCommune": "11138", - "libelleAcheminement": "FENDEILLE", - "nomCommune": "FENDEILLE" + "codePostal": "07140", + "codeCommune": "07017", + "libelleAcheminement": "LES ASSIONS", + "nomCommune": "LES ASSIONS" }, { - "codePostal": "51700", - "codeCommune": "51414", - "libelleAcheminement": "OLIZY", - "nomCommune": "OLIZY" + "codePostal": "18320", + "codeCommune": "18139", + "libelleAcheminement": "MARSEILLES LES AUBIGNY", + "nomCommune": "MARSEILLES LES AUBIGNY" }, { - "codePostal": "09130", - "codeCommune": "09124", - "libelleAcheminement": "LE FOSSAT", - "nomCommune": "LE FOSSAT" + "codePostal": "18200", + "codeCommune": "18197", + "libelleAcheminement": "ST AMAND MONTROND", + "nomCommune": "ST AMAND MONTROND" }, { - "codePostal": "11510", - "codeCommune": "11144", - "libelleAcheminement": "FITOU", - "nomCommune": "FITOU" + "codePostal": "04000", + "codeCommune": "04074", + "libelleAcheminement": "ENTRAGES", + "nomCommune": "ENTRAGES" }, { - "codePostal": "51290", - "codeCommune": "51419", - "libelleAcheminement": "OUTINES", - "nomCommune": "OUTINES" + "codePostal": "07190", + "codeCommune": "07030", + "libelleAcheminement": "BEAUVENE", + "nomCommune": "BEAUVENE" }, { - "codePostal": "09220", - "codeCommune": "09143", - "libelleAcheminement": "ILLIER ET LARAMADE", - "nomCommune": "ILLIER ET LARAMADE" + "codePostal": "18250", + "codeCommune": "18151", + "libelleAcheminement": "MONTIGNY", + "nomCommune": "MONTIGNY" }, { - "codePostal": "11700", - "codeCommune": "11148", - "libelleAcheminement": "FONTCOUVERTE", - "nomCommune": "FONTCOUVERTE" + "codePostal": "18130", + "codeCommune": "18204", + "libelleAcheminement": "ST DENIS DE PALIN", + "nomCommune": "ST DENIS DE PALIN" }, { - "codePostal": "51120", - "codeCommune": "51421", - "libelleAcheminement": "OYES", - "nomCommune": "OYES" + "codePostal": "04320", + "codeCommune": "04076", + "libelleAcheminement": "ENTREVAUX", + "nomCommune": "ENTREVAUX" }, { - "codePostal": "09300", - "codeCommune": "09165", - "libelleAcheminement": "LESPARROU", - "nomCommune": "LESPARROU" + "codePostal": "07580", + "codeCommune": "07032", + "libelleAcheminement": "BERZEME", + "nomCommune": "BERZEME" }, { - "codePostal": "11800", - "codeCommune": "11151", - "libelleAcheminement": "FONTIES D AUDE", - "nomCommune": "FONTIES D AUDE" + "codePostal": "18600", + "codeCommune": "18155", + "libelleAcheminement": "MORNAY SUR ALLIER", + "nomCommune": "MORNAY SUR ALLIER" }, { - "codePostal": "51700", - "codeCommune": "51425", - "libelleAcheminement": "PASSY GRIGNY", - "nomCommune": "PASSY GRIGNY" + "codePostal": "18340", + "codeCommune": "18218", + "libelleAcheminement": "ST JUST", + "nomCommune": "ST JUST" }, { - "codePostal": "09600", - "codeCommune": "09169", - "libelleAcheminement": "LIMBRASSAC", - "nomCommune": "LIMBRASSAC" + "codePostal": "04120", + "codeCommune": "04092", + "libelleAcheminement": "LA GARDE", + "nomCommune": "LA GARDE" }, { - "codePostal": "11600", - "codeCommune": "11154", - "libelleAcheminement": "FOURNES CABARDES", - "nomCommune": "FOURNES CABARDES" + "codePostal": "07150", + "codeCommune": "07033", + "libelleAcheminement": "BESSAS", + "nomCommune": "BESSAS" }, { - "codePostal": "51170", - "codeCommune": "51437", - "libelleAcheminement": "POILLY", - "nomCommune": "POILLY" + "codePostal": "18350", + "codeCommune": "18160", + "libelleAcheminement": "NERONDES", + "nomCommune": "NERONDES" }, { - "codePostal": "09000", - "codeCommune": "09174", - "libelleAcheminement": "LOUBIERES", - "nomCommune": "LOUBIERES" + "codePostal": "18140", + "codeCommune": "18220", + "libelleAcheminement": "ST LEGER LE PETIT", + "nomCommune": "ST LEGER LE PETIT" }, { - "codePostal": "11600", - "codeCommune": "11156", - "libelleAcheminement": "FRAISSE CABARDES", - "nomCommune": "FRAISSE CABARDES" + "codePostal": "04850", + "codeCommune": "04096", + "libelleAcheminement": "JAUSIERS", + "nomCommune": "JAUSIERS" }, { - "codePostal": "51490", - "codeCommune": "51440", - "libelleAcheminement": "PONTFAVERGER MORONVILLIERS", - "nomCommune": "PONTFAVERGER MORONVILLIERS" + "codePostal": "07340", + "codeCommune": "07036", + "libelleAcheminement": "BOGY", + "nomCommune": "BOGY" }, { - "codePostal": "09100", - "codeCommune": "09175", - "libelleAcheminement": "LUDIES", - "nomCommune": "LUDIES" + "codePostal": "18260", + "codeCommune": "18168", + "libelleAcheminement": "LE NOYER", + "nomCommune": "LE NOYER" }, { - "codePostal": "11270", - "codeCommune": "11159", - "libelleAcheminement": "GAJA LA SELVE", - "nomCommune": "GAJA LA SELVE" + "codePostal": "18190", + "codeCommune": "18221", + "libelleAcheminement": "ST LOUP DES CHAUMES", + "nomCommune": "ST LOUP DES CHAUMES" }, { - "codePostal": "51330", - "codeCommune": "51442", - "libelleAcheminement": "POSSESSE", - "nomCommune": "POSSESSE" + "codePostal": "04700", + "codeCommune": "04106", + "libelleAcheminement": "LURS", + "nomCommune": "LURS" }, { - "codePostal": "09230", - "codeCommune": "09184", - "libelleAcheminement": "MAUVEZIN DE STE CROIX", - "nomCommune": "MAUVEZIN DE STE CROIX" + "codePostal": "07100", + "codeCommune": "07041", + "libelleAcheminement": "BOULIEU LES ANNONAY", + "nomCommune": "BOULIEU LES ANNONAY" }, { - "codePostal": "11250", - "codeCommune": "11161", - "libelleAcheminement": "GARDIE", - "nomCommune": "GARDIE" + "codePostal": "18200", + "codeCommune": "18171", + "libelleAcheminement": "ORCENAIS", + "nomCommune": "ORCENAIS" }, { - "codePostal": "51260", - "codeCommune": "51443", - "libelleAcheminement": "POTANGIS", - "nomCommune": "POTANGIS" + "codePostal": "18110", + "codeCommune": "18223", + "libelleAcheminement": "ST MARTIN D AUXIGNY", + "nomCommune": "ST MARTIN D AUXIGNY" }, { - "codePostal": "09400", - "codeCommune": "09188", - "libelleAcheminement": "MERCUS GARRABET", - "nomCommune": "MERCUS GARRABET" + "codePostal": "04530", + "codeCommune": "04120", + "libelleAcheminement": "VAL D ORONAYE", + "nomCommune": "VAL D ORONAYE" }, { - "codePostal": "11500", - "codeCommune": "11165", - "libelleAcheminement": "GINOLES", - "nomCommune": "GINOLES" + "codePostal": "07230", + "codeCommune": "07053", + "libelleAcheminement": "CHANDOLAS", + "nomCommune": "CHANDOLAS" }, { - "codePostal": "51480", - "codeCommune": "51445", - "libelleAcheminement": "POURCY", - "nomCommune": "POURCY" + "codePostal": "18350", + "codeCommune": "18175", + "libelleAcheminement": "OUROUER LES BOURDELINS", + "nomCommune": "OUROUER LES BOURDELINS" }, { - "codePostal": "09110", - "codeCommune": "09189", - "libelleAcheminement": "MERENS LES VALS", - "nomCommune": "MERENS LES VALS" + "codePostal": "18310", + "codeCommune": "18228", + "libelleAcheminement": "ST OUTRILLE", + "nomCommune": "ST OUTRILLE" }, { - "codePostal": "11410", - "codeCommune": "11166", - "libelleAcheminement": "GOURVIEILLE", - "nomCommune": "GOURVIEILLE" + "codePostal": "04200", + "codeCommune": "04123", + "libelleAcheminement": "MISON", + "nomCommune": "MISON" }, { - "codePostal": "51140", - "codeCommune": "51448", - "libelleAcheminement": "PROUILLY", - "nomCommune": "PROUILLY" + "codePostal": "07310", + "codeCommune": "07054", + "libelleAcheminement": "CHANEAC", + "nomCommune": "CHANEAC" }, { - "codePostal": "09240", - "codeCommune": "09196", - "libelleAcheminement": "MONTAGAGNE", - "nomCommune": "MONTAGAGNE" + "codePostal": "18140", + "codeCommune": "18184", + "libelleAcheminement": "PRECY", + "nomCommune": "PRECY" }, { - "codePostal": "11240", - "codeCommune": "11173", - "libelleAcheminement": "HOUNOUX", - "nomCommune": "HOUNOUX" + "codePostal": "18300", + "codeCommune": "18241", + "libelleAcheminement": "SANCERRE", + "nomCommune": "SANCERRE" }, { - "codePostal": "51360", - "codeCommune": "51449", - "libelleAcheminement": "PRUNAY", - "nomCommune": "PRUNAY" + "codePostal": "04500", + "codeCommune": "04124", + "libelleAcheminement": "MONTAGNAC MONTPEZAT", + "nomCommune": "MONTAGNAC MONTPEZAT" }, { - "codePostal": "09230", - "codeCommune": "09198", - "libelleAcheminement": "MONTARDIT", - "nomCommune": "MONTARDIT" + "codePostal": "07320", + "codeCommune": "07080", + "libelleAcheminement": "DEVESSET", + "nomCommune": "DEVESSET" }, { - "codePostal": "11400", - "codeCommune": "11181", - "libelleAcheminement": "LABECEDE LAURAGAIS", - "nomCommune": "LABECEDE LAURAGAIS" + "codePostal": "18370", + "codeCommune": "18187", + "libelleAcheminement": "PREVERANGES", + "nomCommune": "PREVERANGES" }, { - "codePostal": "51300", - "codeCommune": "51455", - "libelleAcheminement": "REIMS LA BRULEE", - "nomCommune": "REIMS LA BRULEE" + "codePostal": "18270", + "codeCommune": "18252", + "libelleAcheminement": "SIDIAILLES", + "nomCommune": "SIDIAILLES" }, { - "codePostal": "09240", - "codeCommune": "09203", - "libelleAcheminement": "MONTELS", - "nomCommune": "MONTELS" + "codePostal": "04600", + "codeCommune": "04127", + "libelleAcheminement": "MONTFORT", + "nomCommune": "MONTFORT" }, { - "codePostal": "11310", - "codeCommune": "11182", - "libelleAcheminement": "LACOMBE", - "nomCommune": "LACOMBE" + "codePostal": "07300", + "codeCommune": "07086", + "libelleAcheminement": "ETABLES", + "nomCommune": "ETABLES" }, { - "codePostal": "51330", - "codeCommune": "51456", - "libelleAcheminement": "REMICOURT", - "nomCommune": "REMICOURT" + "codePostal": "18400", + "codeCommune": "18188", + "libelleAcheminement": "PRIMELLES", + "nomCommune": "PRIMELLES" }, { - "codePostal": "09200", - "codeCommune": "09214", - "libelleAcheminement": "MOULIS", - "nomCommune": "MOULIS" + "codePostal": "18240", + "codeCommune": "18257", + "libelleAcheminement": "SURY PRES LERE", + "nomCommune": "SURY PRES LERE" }, { - "codePostal": "11270", - "codeCommune": "11193", - "libelleAcheminement": "LASSERRE DE PROUILLE", - "nomCommune": "LASSERRE DE PROUILLE" + "codePostal": "04230", + "codeCommune": "04130", + "libelleAcheminement": "MONTLAUX", + "nomCommune": "MONTLAUX" }, { - "codePostal": "51300", - "codeCommune": "51463", - "libelleAcheminement": "LES RIVIERES HENRUEL", - "nomCommune": "LES RIVIERES HENRUEL" + "codePostal": "07230", + "codeCommune": "07088", + "libelleAcheminement": "FAUGERES", + "nomCommune": "FAUGERES" }, { - "codePostal": "09000", - "codeCommune": "09234", - "libelleAcheminement": "PRADIERES", - "nomCommune": "PRADIERES" + "codePostal": "18220", + "codeCommune": "18194", + "libelleAcheminement": "RIANS", + "nomCommune": "RIANS" }, { - "codePostal": "11400", - "codeCommune": "11195", - "libelleAcheminement": "LAURABUC", - "nomCommune": "LAURABUC" + "codePostal": "18160", + "codeCommune": "18266", + "libelleAcheminement": "TOUCHAY", + "nomCommune": "TOUCHAY" }, { - "codePostal": "51390", - "codeCommune": "51468", - "libelleAcheminement": "ROSNAY", - "nomCommune": "ROSNAY" + "codePostal": "04170", + "codeCommune": "04133", + "libelleAcheminement": "MORIEZ", + "nomCommune": "MORIEZ" }, { - "codePostal": "09100", - "codeCommune": "09238", - "libelleAcheminement": "LES PUJOLS", - "nomCommune": "LES PUJOLS" + "codePostal": "07000", + "codeCommune": "07092", + "libelleAcheminement": "FREYSSENET", + "nomCommune": "FREYSSENET" }, { - "codePostal": "11290", - "codeCommune": "11199", - "libelleAcheminement": "LAVALETTE", - "nomCommune": "LAVALETTE" + "codePostal": "18600", + "codeCommune": "18195", + "libelleAcheminement": "SAGONNE", + "nomCommune": "SAGONNE" }, { - "codePostal": "51500", - "codeCommune": "51471", - "libelleAcheminement": "SACY", - "nomCommune": "SACY" + "codePostal": "18260", + "codeCommune": "18269", + "libelleAcheminement": "VAILLY SUR SAULDRE", + "nomCommune": "VAILLY SUR SAULDRE" }, { - "codePostal": "09460", - "codeCommune": "09239", - "libelleAcheminement": "QUERIGUT", - "nomCommune": "QUERIGUT" + "codePostal": "04360", + "codeCommune": "04135", + "libelleAcheminement": "MOUSTIERS STE MARIE", + "nomCommune": "MOUSTIERS STE MARIE" }, { - "codePostal": "11160", - "codeCommune": "11200", - "libelleAcheminement": "LESPINASSIERE", - "nomCommune": "LESPINASSIERE" + "codePostal": "07300", + "codeCommune": "07097", + "libelleAcheminement": "GLUN", + "nomCommune": "GLUN" }, { - "codePostal": "51300", - "codeCommune": "51472", - "libelleAcheminement": "ST AMAND SUR FION", - "nomCommune": "ST AMAND SUR FION" + "codePostal": "18160", + "codeCommune": "18199", + "libelleAcheminement": "ST BAUDEL", + "nomCommune": "ST BAUDEL" }, { - "codePostal": "09500", - "codeCommune": "09251", - "libelleAcheminement": "ROUMENGOUX", - "nomCommune": "ROUMENGOUX" + "codePostal": "18190", + "codeCommune": "18273", + "libelleAcheminement": "VENESMES", + "nomCommune": "VENESMES" }, { - "codePostal": "11250", - "codeCommune": "11201", - "libelleAcheminement": "LEUC", - "nomCommune": "LEUC" + "codePostal": "04310", + "codeCommune": "04149", + "libelleAcheminement": "PEYRUIS", + "nomCommune": "PEYRUIS" }, { - "codePostal": "51310", - "codeCommune": "51473", - "libelleAcheminement": "ST BON", - "nomCommune": "ST BON" + "codePostal": "07700", + "codeCommune": "07099", + "libelleAcheminement": "GRAS", + "nomCommune": "GRAS" }, { - "codePostal": "09100", - "codeCommune": "09254", - "libelleAcheminement": "ST AMADOU", - "nomCommune": "ST AMADOU" + "codePostal": "18300", + "codeCommune": "18200", + "libelleAcheminement": "ST BOUIZE", + "nomCommune": "ST BOUIZE" }, { - "codePostal": "11240", - "codeCommune": "11204", - "libelleAcheminement": "LIGNAIROLLES", - "nomCommune": "LIGNAIROLLES" + "codePostal": "18600", + "codeCommune": "18275", + "libelleAcheminement": "VEREAUX", + "nomCommune": "VEREAUX" }, { - "codePostal": "51370", - "codeCommune": "51474", - "libelleAcheminement": "ST BRICE COURCELLES", - "nomCommune": "ST BRICE COURCELLES" + "codePostal": "05130", + "codeCommune": "04150", + "libelleAcheminement": "PIEGUT", + "nomCommune": "PIEGUT" }, { - "codePostal": "09100", - "codeCommune": "09255", - "libelleAcheminement": "ST AMANS", - "nomCommune": "ST AMANS" + "codePostal": "07140", + "codeCommune": "07100", + "libelleAcheminement": "GRAVIERES", + "nomCommune": "GRAVIERES" }, { - "codePostal": "11410", - "codeCommune": "11208", - "libelleAcheminement": "LA LOUVIERE LAURAGAIS", - "nomCommune": "LA LOUVIERE LAURAGAIS" + "codePostal": "18220", + "codeCommune": "18202", + "libelleAcheminement": "ST CEOLS", + "nomCommune": "ST CEOLS" }, { - "codePostal": "51400", - "codeCommune": "51485", - "libelleAcheminement": "ST HILAIRE AU TEMPLE", - "nomCommune": "ST HILAIRE AU TEMPLE" + "codePostal": "18360", + "codeCommune": "18278", + "libelleAcheminement": "VESDUN", + "nomCommune": "VESDUN" }, { - "codePostal": "09120", - "codeCommune": "09258", - "libelleAcheminement": "ST FELIX DE RIEUTORD", - "nomCommune": "ST FELIX DE RIEUTORD" + "codePostal": "04300", + "codeCommune": "04151", + "libelleAcheminement": "PIERRERUE", + "nomCommune": "PIERRERUE" }, { - "codePostal": "11200", - "codeCommune": "11210", - "libelleAcheminement": "LUC SUR ORBIEU", - "nomCommune": "LUC SUR ORBIEU" + "codePostal": "07320", + "codeCommune": "07103", + "libelleAcheminement": "ST JULIEN D INTRES", + "nomCommune": "ST JULIEN D INTRES" }, { - "codePostal": "51240", - "codeCommune": "51490", - "libelleAcheminement": "ST JEAN SUR MOIVRE", - "nomCommune": "ST JEAN SUR MOIVRE" + "codePostal": "18110", + "codeCommune": "18229", + "libelleAcheminement": "ST PALAIS", + "nomCommune": "ST PALAIS" }, { - "codePostal": "09500", - "codeCommune": "09260", - "libelleAcheminement": "STE FOI", - "nomCommune": "STE FOI" + "codePostal": "18800", + "codeCommune": "18282", + "libelleAcheminement": "VILLABON", + "nomCommune": "VILLABON" }, { - "codePostal": "11400", - "codeCommune": "11225", - "libelleAcheminement": "MAS SAINTES PUELLES", - "nomCommune": "MAS SAINTES PUELLES" + "codePostal": "04860", + "codeCommune": "04152", + "libelleAcheminement": "PIERREVERT", + "nomCommune": "PIERREVERT" }, { - "codePostal": "51600", - "codeCommune": "51491", - "libelleAcheminement": "ST JEAN SUR TOURBE", - "nomCommune": "ST JEAN SUR TOURBE" + "codePostal": "07600", + "codeCommune": "07112", + "libelleAcheminement": "LABASTIDE SUR BESORGUES", + "nomCommune": "LABASTIDE SUR BESORGUES" }, { - "codePostal": "09200", - "codeCommune": "09261", - "libelleAcheminement": "ST GIRONS", - "nomCommune": "ST GIRONS" + "codePostal": "18370", + "codeCommune": "18234", + "libelleAcheminement": "ST SATURNIN", + "nomCommune": "ST SATURNIN" }, { - "codePostal": "11320", - "codeCommune": "11243", - "libelleAcheminement": "MONTFERRAND", - "nomCommune": "MONTFERRAND" + "codePostal": "19120", + "codeCommune": "19012", + "libelleAcheminement": "ASTAILLAC", + "nomCommune": "ASTAILLAC" }, { - "codePostal": "51520", - "codeCommune": "51504", - "libelleAcheminement": "ST MARTIN SUR LE PRE", - "nomCommune": "ST MARTIN SUR LE PRE" + "codePostal": "04700", + "codeCommune": "04156", + "libelleAcheminement": "PUIMICHEL", + "nomCommune": "PUIMICHEL" }, { - "codePostal": "09190", - "codeCommune": "09268", - "libelleAcheminement": "ST LIZIER", - "nomCommune": "ST LIZIER" + "codePostal": "07570", + "codeCommune": "07114", + "libelleAcheminement": "LABATIE D ANDAURE", + "nomCommune": "LABATIE D ANDAURE" }, { - "codePostal": "11230", - "codeCommune": "11249", - "libelleAcheminement": "MONTJARDIN", - "nomCommune": "MONTJARDIN" + "codePostal": "18220", + "codeCommune": "18235", + "libelleAcheminement": "STE SOLANGE", + "nomCommune": "STE SOLANGE" }, { - "codePostal": "51300", - "codeCommune": "51510", - "libelleAcheminement": "ST QUENTIN LES MARAIS", - "nomCommune": "ST QUENTIN LES MARAIS" + "codePostal": "19430", + "codeCommune": "19017", + "libelleAcheminement": "BASSIGNAC LE BAS", + "nomCommune": "BASSIGNAC LE BAS" }, { - "codePostal": "09000", - "codeCommune": "09269", - "libelleAcheminement": "ST MARTIN DE CARALP", - "nomCommune": "ST MARTIN DE CARALP" + "codePostal": "04340", + "codeCommune": "04161", + "libelleAcheminement": "MEOLANS REVEL", + "nomCommune": "MEOLANS REVEL" }, { - "codePostal": "11320", - "codeCommune": "11252", - "libelleAcheminement": "MONTMAUR", - "nomCommune": "MONTMAUR" + "codePostal": "07530", + "codeCommune": "07120", + "libelleAcheminement": "LACHAMP RAPHAEL", + "nomCommune": "LACHAMP RAPHAEL" }, { - "codePostal": "51120", - "codeCommune": "51514", - "libelleAcheminement": "ST REMY SOUS BROYES", - "nomCommune": "ST REMY SOUS BROYES" + "codePostal": "18240", + "codeCommune": "18246", + "libelleAcheminement": "SAVIGNY EN SANCERRE", + "nomCommune": "SAVIGNY EN SANCERRE" }, { - "codePostal": "09800", - "codeCommune": "09279", - "libelleAcheminement": "SALSEIN", - "nomCommune": "SALSEIN" + "codePostal": "19390", + "codeCommune": "19020", + "libelleAcheminement": "BEAUMONT", + "nomCommune": "BEAUMONT" }, { - "codePostal": "11800", - "codeCommune": "11257", - "libelleAcheminement": "MONZE", - "nomCommune": "MONZE" + "codePostal": "04340", + "codeCommune": "04161", + "libelleAcheminement": "MEOLANS REVEL", + "nomCommune": "MEOLANS REVEL" }, { - "codePostal": "51600", - "codeCommune": "51515", - "libelleAcheminement": "ST REMY SUR BUSSY", - "nomCommune": "ST REMY SUR BUSSY" + "codePostal": "07470", + "codeCommune": "07121", + "libelleAcheminement": "LACHAPELLE GRAILLOUSE", + "nomCommune": "LACHAPELLE GRAILLOUSE" }, { - "codePostal": "09400", - "codeCommune": "09280", - "libelleAcheminement": "SAURAT", - "nomCommune": "SAURAT" + "codePostal": "18390", + "codeCommune": "18247", + "libelleAcheminement": "SAVIGNY EN SEPTAINE", + "nomCommune": "SAVIGNY EN SEPTAINE" }, { - "codePostal": "11120", - "codeCommune": "11258", - "libelleAcheminement": "MOUSSAN", - "nomCommune": "MOUSSAN" + "codePostal": "19170", + "codeCommune": "19033", + "libelleAcheminement": "BUGEAT", + "nomCommune": "BUGEAT" }, { - "codePostal": "51520", - "codeCommune": "51525", - "libelleAcheminement": "SARRY", - "nomCommune": "SARRY" + "codePostal": "04340", + "codeCommune": "04161", + "libelleAcheminement": "MEOLANS REVEL", + "nomCommune": "MEOLANS REVEL" }, { - "codePostal": "09120", - "codeCommune": "09284", - "libelleAcheminement": "SEGURA", - "nomCommune": "SEGURA" + "codePostal": "07110", + "codeCommune": "07134", + "libelleAcheminement": "LAURAC EN VIVARAIS", + "nomCommune": "LAURAC EN VIVARAIS" }, { - "codePostal": "11500", - "codeCommune": "11263", - "libelleAcheminement": "NEBIAS", - "nomCommune": "NEBIAS" + "codePostal": "18350", + "codeCommune": "18260", + "libelleAcheminement": "TENDRON", + "nomCommune": "TENDRON" }, { - "codePostal": "51340", - "codeCommune": "51528", - "libelleAcheminement": "SCRUPT", - "nomCommune": "SCRUPT" + "codePostal": "19370", + "codeCommune": "19036", + "libelleAcheminement": "CHAMBERET", + "nomCommune": "CHAMBERET" }, { - "codePostal": "09800", - "codeCommune": "09290", - "libelleAcheminement": "SENTEIN", - "nomCommune": "SENTEIN" + "codePostal": "04150", + "codeCommune": "04163", + "libelleAcheminement": "REVEST DU BION", + "nomCommune": "REVEST DU BION" }, { - "codePostal": "11270", - "codeCommune": "11268", - "libelleAcheminement": "ORSANS", - "nomCommune": "ORSANS" + "codePostal": "07530", + "codeCommune": "07139", + "libelleAcheminement": "LAVIOLLE", + "nomCommune": "LAVIOLLE" }, { - "codePostal": "51520", - "codeCommune": "51538", - "libelleAcheminement": "SOGNY AUX MOULINS", - "nomCommune": "SOGNY AUX MOULINS" + "codePostal": "18190", + "codeCommune": "18270", + "libelleAcheminement": "VALLENAY", + "nomCommune": "VALLENAY" }, { - "codePostal": "09140", - "codeCommune": "09291", - "libelleAcheminement": "SENTENAC D OUST", - "nomCommune": "SENTENAC D OUST" + "codePostal": "19320", + "codeCommune": "19040", + "libelleAcheminement": "CHAMPAGNAC LA PRUNE", + "nomCommune": "CHAMPAGNAC LA PRUNE" }, { - "codePostal": "11590", - "codeCommune": "11269", - "libelleAcheminement": "OUVEILLAN", - "nomCommune": "OUVEILLAN" + "codePostal": "04170", + "codeCommune": "04173", + "libelleAcheminement": "ST ANDRE LES ALPES", + "nomCommune": "ST ANDRE LES ALPES" }, { - "codePostal": "51600", - "codeCommune": "51546", - "libelleAcheminement": "SOMME SUIPPE", - "nomCommune": "SOMME SUIPPE" + "codePostal": "07200", + "codeCommune": "07141", + "libelleAcheminement": "LENTILLERES", + "nomCommune": "LENTILLERES" }, { - "codePostal": "09000", - "codeCommune": "09293", - "libelleAcheminement": "SERRES SUR ARGET", - "nomCommune": "SERRES SUR ARGET" + "codePostal": "18110", + "codeCommune": "18271", + "libelleAcheminement": "VASSELAY", + "nomCommune": "VASSELAY" }, { - "codePostal": "11330", - "codeCommune": "11271", - "libelleAcheminement": "PALAIRAC", - "nomCommune": "PALAIRAC" + "codePostal": "19120", + "codeCommune": "19044", + "libelleAcheminement": "LA CHAPELLE AUX SAINTS", + "nomCommune": "LA CHAPELLE AUX SAINTS" }, { - "codePostal": "51330", - "codeCommune": "51549", - "libelleAcheminement": "SOMME YEVRE", - "nomCommune": "SOMME YEVRE" + "codePostal": "04500", + "codeCommune": "04176", + "libelleAcheminement": "STE CROIX DU VERDON", + "nomCommune": "STE CROIX DU VERDON" }, { - "codePostal": "09130", - "codeCommune": "09294", - "libelleAcheminement": "SIEURAS", - "nomCommune": "SIEURAS" + "codePostal": "07140", + "codeCommune": "07147", + "libelleAcheminement": "MALARCE SUR LA THINES", + "nomCommune": "MALARCE SUR LA THINES" }, { - "codePostal": "11200", - "codeCommune": "11273", - "libelleAcheminement": "PARAZA", - "nomCommune": "PARAZA" + "codePostal": "18210", + "codeCommune": "18276", + "libelleAcheminement": "VERNAIS", + "nomCommune": "VERNAIS" }, { - "codePostal": "51320", - "codeCommune": "51550", - "libelleAcheminement": "SOMPUIS", - "nomCommune": "SOMPUIS" + "codePostal": "19500", + "codeCommune": "19050", + "libelleAcheminement": "CHAUFFOUR SUR VELL", + "nomCommune": "CHAUFFOUR SUR VELL" }, { - "codePostal": "09310", - "codeCommune": "09296", - "libelleAcheminement": "AULOS SINSAT", - "nomCommune": "AULOS SINSAT" + "codePostal": "04870", + "codeCommune": "04192", + "libelleAcheminement": "ST MICHEL L OBSERVATOIRE", + "nomCommune": "ST MICHEL L OBSERVATOIRE" }, { - "codePostal": "11610", - "codeCommune": "11279", - "libelleAcheminement": "PENNAUTIER", - "nomCommune": "PENNAUTIER" + "codePostal": "07190", + "codeCommune": "07149", + "libelleAcheminement": "MARCOLS LES EAUX", + "nomCommune": "MARCOLS LES EAUX" }, { - "codePostal": "51130", - "codeCommune": "51558", - "libelleAcheminement": "SOULIERES", - "nomCommune": "SOULIERES" + "codePostal": "18210", + "codeCommune": "18277", + "libelleAcheminement": "VERNEUIL", + "nomCommune": "VERNEUIL" }, { - "codePostal": "09000", - "codeCommune": "09300", - "libelleAcheminement": "SOULA", - "nomCommune": "SOULA" + "codePostal": "19200", + "codeCommune": "19053", + "libelleAcheminement": "CHAVEROCHE", + "nomCommune": "CHAVEROCHE" }, { - "codePostal": "11160", - "codeCommune": "11286", - "libelleAcheminement": "PEYRIAC MINERVOIS", - "nomCommune": "PEYRIAC MINERVOIS" + "codePostal": "04530", + "codeCommune": "04193", + "libelleAcheminement": "ST PAUL SUR UBAYE", + "nomCommune": "ST PAUL SUR UBAYE" }, { - "codePostal": "51270", - "codeCommune": "51563", - "libelleAcheminement": "TALUS ST PRIX", - "nomCommune": "TALUS ST PRIX" + "codePostal": "07510", + "codeCommune": "07154", + "libelleAcheminement": "MAZAN L ABBAYE", + "nomCommune": "MAZAN L ABBAYE" }, { - "codePostal": "09600", - "codeCommune": "09305", - "libelleAcheminement": "TABRE", - "nomCommune": "TABRE" + "codePostal": "18260", + "codeCommune": "18284", + "libelleAcheminement": "VILLEGENON", + "nomCommune": "VILLEGENON" }, { - "codePostal": "11270", - "codeCommune": "11291", - "libelleAcheminement": "PLAVILLA", - "nomCommune": "PLAVILLA" + "codePostal": "19160", + "codeCommune": "19055", + "libelleAcheminement": "CHIRAC BELLEVUE", + "nomCommune": "CHIRAC BELLEVUE" }, { - "codePostal": "51300", - "codeCommune": "51602", - "libelleAcheminement": "VAVRAY LE PETIT", - "nomCommune": "VAVRAY LE PETIT" + "codePostal": "04270", + "codeCommune": "04204", + "libelleAcheminement": "SENEZ", + "nomCommune": "SENEZ" }, { - "codePostal": "09400", - "codeCommune": "09306", - "libelleAcheminement": "TARASCON SUR ARIEGE", - "nomCommune": "TARASCON SUR ARIEGE" + "codePostal": "07110", + "codeCommune": "07162", + "libelleAcheminement": "MONTREAL", + "nomCommune": "MONTREAL" }, { - "codePostal": "11120", - "codeCommune": "11296", - "libelleAcheminement": "POUZOLS MINERVOIS", - "nomCommune": "POUZOLS MINERVOIS" + "codePostal": "18400", + "codeCommune": "18285", + "libelleAcheminement": "VILLENEUVE SUR CHER", + "nomCommune": "VILLENEUVE SUR CHER" }, { - "codePostal": "51800", - "codeCommune": "51610", - "libelleAcheminement": "VERRIERES", - "nomCommune": "VERRIERES" + "codePostal": "19150", + "codeCommune": "19061", + "libelleAcheminement": "CORNIL", + "nomCommune": "CORNIL" }, { - "codePostal": "09190", - "codeCommune": "09308", - "libelleAcheminement": "TAURIGNAN VIEUX", - "nomCommune": "TAURIGNAN VIEUX" + "codePostal": "04380", + "codeCommune": "04217", + "libelleAcheminement": "THOARD", + "nomCommune": "THOARD" }, { - "codePostal": "11250", - "codeCommune": "11299", - "libelleAcheminement": "PREIXAN", - "nomCommune": "PREIXAN" + "codePostal": "07160", + "codeCommune": "07165", + "libelleAcheminement": "BELSENTES", + "nomCommune": "BELSENTES" }, { - "codePostal": "51130", - "codeCommune": "51612", - "libelleAcheminement": "BLANCS COTEAUX", - "nomCommune": "BLANCS COTEAUX" + "codePostal": "19260", + "codeCommune": "19001", + "libelleAcheminement": "AFFIEUX", + "nomCommune": "AFFIEUX" }, { - "codePostal": "09500", - "codeCommune": "09309", - "libelleAcheminement": "TEILHET", - "nomCommune": "TEILHET" + "codePostal": "19360", + "codeCommune": "19063", + "libelleAcheminement": "COSNAC", + "nomCommune": "COSNAC" }, { - "codePostal": "11400", - "codeCommune": "11300", - "libelleAcheminement": "PUGINIER", - "nomCommune": "PUGINIER" + "codePostal": "04170", + "codeCommune": "04219", + "libelleAcheminement": "THORAME HAUTE", + "nomCommune": "THORAME HAUTE" }, { - "codePostal": "51190", - "codeCommune": "51612", - "libelleAcheminement": "BLANCS COTEAUX", - "nomCommune": "BLANCS COTEAUX" + "codePostal": "07270", + "codeCommune": "07166", + "libelleAcheminement": "NOZIERES", + "nomCommune": "NOZIERES" }, { - "codePostal": "09110", - "codeCommune": "09311", - "libelleAcheminement": "TIGNAC", - "nomCommune": "TIGNAC" + "codePostal": "19240", + "codeCommune": "19005", + "libelleAcheminement": "ALLASSAC", + "nomCommune": "ALLASSAC" }, { - "codePostal": "11170", - "codeCommune": "11308", - "libelleAcheminement": "RAISSAC SUR LAMPY", - "nomCommune": "RAISSAC SUR LAMPY" + "codePostal": "19360", + "codeCommune": "19068", + "libelleAcheminement": "DAMPNIAT", + "nomCommune": "DAMPNIAT" }, { - "codePostal": "51800", - "codeCommune": "51621", - "libelleAcheminement": "VIENNE LE CHATEAU", - "nomCommune": "VIENNE LE CHATEAU" + "codePostal": "04400", + "codeCommune": "04220", + "libelleAcheminement": "LES THUILES", + "nomCommune": "LES THUILES" }, { - "codePostal": "09230", - "codeCommune": "09313", - "libelleAcheminement": "TOURTOUSE", - "nomCommune": "TOURTOUSE" + "codePostal": "07370", + "codeCommune": "07169", + "libelleAcheminement": "OZON", + "nomCommune": "OZON" }, { - "codePostal": "11380", - "codeCommune": "11319", - "libelleAcheminement": "ROQUEFERE", - "nomCommune": "ROQUEFERE" + "codePostal": "19200", + "codeCommune": "19006", + "libelleAcheminement": "ALLEYRAT", + "nomCommune": "ALLEYRAT" }, { - "codePostal": "51390", - "codeCommune": "51622", - "libelleAcheminement": "VILLE DOMMANGE", - "nomCommune": "VILLE DOMMANGE" + "codePostal": "19140", + "codeCommune": "19079", + "libelleAcheminement": "EYBURIE", + "nomCommune": "EYBURIE" }, { - "codePostal": "09500", - "codeCommune": "09316", - "libelleAcheminement": "TROYE D ARIEGE", - "nomCommune": "TROYE D ARIEGE" + "codePostal": "04240", + "codeCommune": "04224", + "libelleAcheminement": "UBRAYE", + "nomCommune": "UBRAYE" }, { - "codePostal": "11340", - "codeCommune": "11320", - "libelleAcheminement": "ROQUEFEUIL", - "nomCommune": "ROQUEFEUIL" + "codePostal": "07410", + "codeCommune": "07170", + "libelleAcheminement": "PAILHARES", + "nomCommune": "PAILHARES" }, { - "codePostal": "51500", - "codeCommune": "51623", - "libelleAcheminement": "VILLE EN SELVE", - "nomCommune": "VILLE EN SELVE" + "codePostal": "19320", + "codeCommune": "19010", + "libelleAcheminement": "ARGENTAT SUR DORDOGNE", + "nomCommune": "ARGENTAT SUR DORDOGNE" }, { - "codePostal": "09400", - "codeCommune": "09321", - "libelleAcheminement": "USSAT", - "nomCommune": "USSAT" + "codePostal": "19800", + "codeCommune": "19081", + "libelleAcheminement": "EYREIN", + "nomCommune": "EYREIN" }, { - "codePostal": "11540", - "codeCommune": "11322", - "libelleAcheminement": "ROQUEFORT DES CORBIERES", - "nomCommune": "ROQUEFORT DES CORBIERES" + "codePostal": "04250", + "codeCommune": "04228", + "libelleAcheminement": "VALAVOIRE", + "nomCommune": "VALAVOIRE" }, { - "codePostal": "51120", - "codeCommune": "51628", - "libelleAcheminement": "VILLENEUVE ST VISTRE VILLEVOTTE", - "nomCommune": "VILLENEUVE ST VISTRE ET VILLEVOTTE" + "codePostal": "07340", + "codeCommune": "07174", + "libelleAcheminement": "PEYRAUD", + "nomCommune": "PEYRAUD" }, { - "codePostal": "09310", - "codeCommune": "09326", - "libelleAcheminement": "VEBRE", - "nomCommune": "VEBRE" + "codePostal": "19400", + "codeCommune": "19010", + "libelleAcheminement": "ARGENTAT SUR DORDOGNE", + "nomCommune": "ARGENTAT SUR DORDOGNE" }, { - "codePostal": "11230", - "codeCommune": "11336", - "libelleAcheminement": "STE COLOMBE SUR L HERS", - "nomCommune": "STE COLOMBE SUR L HERS" + "codePostal": "19340", + "codeCommune": "19083", + "libelleAcheminement": "FEYT", + "nomCommune": "FEYT" }, { - "codePostal": "51500", - "codeCommune": "51631", - "libelleAcheminement": "VILLERS AUX NOEUDS", - "nomCommune": "VILLERS AUX NOEUDS" + "codePostal": "05130", + "codeCommune": "04234", + "libelleAcheminement": "VENTEROL", + "nomCommune": "VENTEROL" }, { - "codePostal": "09220", - "codeCommune": "09334", - "libelleAcheminement": "VAL DE SOS", - "nomCommune": "VAL DE SOS" + "codePostal": "07380", + "codeCommune": "07182", + "libelleAcheminement": "PRADES", + "nomCommune": "PRADES" }, { - "codePostal": "11500", - "codeCommune": "11350", - "libelleAcheminement": "ST JUST ET LE BEZU", - "nomCommune": "ST JUST ET LE BEZU" + "codePostal": "19190", + "codeCommune": "19023", + "libelleAcheminement": "BEYNAT", + "nomCommune": "BEYNAT" }, { - "codePostal": "51260", - "codeCommune": "51642", - "libelleAcheminement": "VILLIERS AUX CORNEILLES", - "nomCommune": "VILLIERS AUX CORNEILLES" + "codePostal": "19400", + "codeCommune": "19091", + "libelleAcheminement": "HAUTEFAGE", + "nomCommune": "HAUTEFAGE" }, { - "codePostal": "09800", - "codeCommune": "09335", - "libelleAcheminement": "VILLENEUVE", - "nomCommune": "VILLENEUVE" + "codePostal": "04140", + "codeCommune": "04237", + "libelleAcheminement": "LE VERNET", + "nomCommune": "LE VERNET" }, { - "codePostal": "11220", - "codeCommune": "11351", - "libelleAcheminement": "ST LAURENT DE LA CABRERISSE", - "nomCommune": "ST LAURENT DE LA CABRERISSE" + "codePostal": "07110", + "codeCommune": "07187", + "libelleAcheminement": "PRUNET", + "nomCommune": "PRUNET" }, { - "codePostal": "51260", - "codeCommune": "51652", - "libelleAcheminement": "VOUARCES", - "nomCommune": "VOUARCES" + "codePostal": "19330", + "codeCommune": "19038", + "libelleAcheminement": "CHAMEYRAT", + "nomCommune": "CHAMEYRAT" }, { - "codePostal": "09300", - "codeCommune": "09336", - "libelleAcheminement": "VILLENEUVE D OLMES", - "nomCommune": "VILLENEUVE D OLMES" + "codePostal": "19150", + "codeCommune": "19098", + "libelleAcheminement": "LAGARDE MARC LA TOUR", + "nomCommune": "LAGARDE MARC LA TOUR" }, { - "codePostal": "11400", - "codeCommune": "11356", - "libelleAcheminement": "ST MARTIN LALANDE", - "nomCommune": "ST MARTIN LALANDE" + "codePostal": "04110", + "codeCommune": "04241", + "libelleAcheminement": "VILLEMUS", + "nomCommune": "VILLEMUS" }, { - "codePostal": "51340", - "codeCommune": "51654", - "libelleAcheminement": "VOUILLERS", - "nomCommune": "VOUILLERS" + "codePostal": "07260", + "codeCommune": "07189", + "libelleAcheminement": "RIBES", + "nomCommune": "RIBES" }, { - "codePostal": "10200", - "codeCommune": "10011", - "libelleAcheminement": "ARRENTIERES", - "nomCommune": "ARRENTIERES" + "codePostal": "19150", + "codeCommune": "19041", + "libelleAcheminement": "CHANAC LES MINES", + "nomCommune": "CHANAC LES MINES" }, { - "codePostal": "11500", - "codeCommune": "11358", - "libelleAcheminement": "ST MARTIN LYS", - "nomCommune": "ST MARTIN LYS" + "codePostal": "19340", + "codeCommune": "19103", + "libelleAcheminement": "LAMAZIERE HAUTE", + "nomCommune": "LAMAZIERE HAUTE" }, { - "codePostal": "51330", - "codeCommune": "51658", - "libelleAcheminement": "VROIL", - "nomCommune": "VROIL" + "codePostal": "05260", + "codeCommune": "05004", + "libelleAcheminement": "ANCELLE", + "nomCommune": "ANCELLE" }, { - "codePostal": "10130", - "codeCommune": "10018", - "libelleAcheminement": "AUXON", - "nomCommune": "AUXON" + "codePostal": "07400", + "codeCommune": "07191", + "libelleAcheminement": "ROCHEMAURE", + "nomCommune": "ROCHEMAURE" }, { - "codePostal": "11400", - "codeCommune": "11361", - "libelleAcheminement": "ST PAPOUL", - "nomCommune": "ST PAPOUL" + "codePostal": "19300", + "codeCommune": "19046", + "libelleAcheminement": "CHAPELLE SPINASSE", + "nomCommune": "CHAPELLE SPINASSE" }, { - "codePostal": "51420", - "codeCommune": "51662", - "libelleAcheminement": "WITRY LES REIMS", - "nomCommune": "WITRY LES REIMS" + "codePostal": "19200", + "codeCommune": "19114", + "libelleAcheminement": "LIGNAREIX", + "nomCommune": "LIGNAREIX" }, { - "codePostal": "10220", - "codeCommune": "10019", - "libelleAcheminement": "VAL D AUZON", - "nomCommune": "VAL D AUZON" + "codePostal": "05350", + "codeCommune": "05007", + "libelleAcheminement": "ARVIEUX", + "nomCommune": "ARVIEUX" }, { - "codePostal": "11420", - "codeCommune": "11365", - "libelleAcheminement": "ST SERNIN", - "nomCommune": "ST SERNIN" + "codePostal": "07110", + "codeCommune": "07193", + "libelleAcheminement": "ROCHER", + "nomCommune": "ROCHER" }, { - "codePostal": "52250", - "codeCommune": "52014", - "libelleAcheminement": "APREY", - "nomCommune": "APREY" + "codePostal": "19600", + "codeCommune": "19047", + "libelleAcheminement": "CHARTRIER FERRIERE", + "nomCommune": "CHARTRIER FERRIERE" }, { - "codePostal": "10340", - "codeCommune": "10022", - "libelleAcheminement": "AVIREY LINGEY", - "nomCommune": "AVIREY LINGEY" + "codePostal": "19600", + "codeCommune": "19117", + "libelleAcheminement": "LISSAC SUR COUZE", + "nomCommune": "LISSAC SUR COUZE" }, { - "codePostal": "11330", - "codeCommune": "11374", - "libelleAcheminement": "SALZA", - "nomCommune": "SALZA" + "codePostal": "05700", + "codeCommune": "05016", + "libelleAcheminement": "LA BATIE MONTSALEON", + "nomCommune": "LA BATIE MONTSALEON" }, { - "codePostal": "52210", - "codeCommune": "52017", - "libelleAcheminement": "ARC EN BARROIS", - "nomCommune": "ARC EN BARROIS" + "codePostal": "07310", + "codeCommune": "07195", + "libelleAcheminement": "LA ROCHETTE", + "nomCommune": "LA ROCHETTE" }, { - "codePostal": "10110", - "codeCommune": "10029", - "libelleAcheminement": "BALNOT SUR LAIGNES", - "nomCommune": "BALNOT SUR LAIGNES" + "codePostal": "19500", + "codeCommune": "19057", + "libelleAcheminement": "COLLONGES LA ROUGE", + "nomCommune": "COLLONGES LA ROUGE" }, { - "codePostal": "11220", - "codeCommune": "11378", - "libelleAcheminement": "SERVIES EN VAL", - "nomCommune": "SERVIES EN VAL" + "codePostal": "19500", + "codeCommune": "19119", + "libelleAcheminement": "LOSTANGES", + "nomCommune": "LOSTANGES" }, { - "codePostal": "52240", - "codeCommune": "52025", - "libelleAcheminement": "AUDELONCOURT", - "nomCommune": "AUDELONCOURT" + "codePostal": "05140", + "codeCommune": "05019", + "libelleAcheminement": "LA BEAUME", + "nomCommune": "LA BEAUME" }, { - "codePostal": "10400", - "codeCommune": "10031", - "libelleAcheminement": "BARBUISE", - "nomCommune": "BARBUISE" + "codePostal": "07260", + "codeCommune": "07199", + "libelleAcheminement": "ROSIERES", + "nomCommune": "ROSIERES" }, { - "codePostal": "11220", - "codeCommune": "11392", - "libelleAcheminement": "TOURNISSAN", - "nomCommune": "TOURNISSAN" + "codePostal": "19350", + "codeCommune": "19059", + "libelleAcheminement": "CONCEZE", + "nomCommune": "CONCEZE" }, { - "codePostal": "52120", - "codeCommune": "52031", - "libelleAcheminement": "AUTREVILLE SUR LA RENNE", - "nomCommune": "AUTREVILLE SUR LA RENNE" + "codePostal": "19470", + "codeCommune": "19122", + "libelleAcheminement": "MADRANGES", + "nomCommune": "MADRANGES" }, { - "codePostal": "10130", - "codeCommune": "10040", - "libelleAcheminement": "BERNON", - "nomCommune": "BERNON" + "codePostal": "05260", + "codeCommune": "05032", + "libelleAcheminement": "CHAMPOLEON", + "nomCommune": "CHAMPOLEON" }, { - "codePostal": "11230", - "codeCommune": "11400", - "libelleAcheminement": "TREZIERS", - "nomCommune": "TREZIERS" + "codePostal": "07120", + "codeCommune": "07207", + "libelleAcheminement": "ST ALBAN AURIOLLES", + "nomCommune": "ST ALBAN AURIOLLES" }, { - "codePostal": "52120", - "codeCommune": "52031", - "libelleAcheminement": "AUTREVILLE SUR LA RENNE", - "nomCommune": "AUTREVILLE SUR LA RENNE" + "codePostal": "19220", + "codeCommune": "19069", + "libelleAcheminement": "DARAZAC", + "nomCommune": "DARAZAC" }, { - "codePostal": "10110", - "codeCommune": "10041", - "libelleAcheminement": "BERTIGNOLLES", - "nomCommune": "BERTIGNOLLES" + "codePostal": "19320", + "codeCommune": "19125", + "libelleAcheminement": "MARCILLAC LA CROISILLE", + "nomCommune": "MARCILLAC LA CROISILLE" }, { - "codePostal": "11120", - "codeCommune": "11405", - "libelleAcheminement": "VENTENAC EN MINERVOIS", - "nomCommune": "VENTENAC EN MINERVOIS" + "codePostal": "05400", + "codeCommune": "05035", + "libelleAcheminement": "CHATEAUNEUF D OZE", + "nomCommune": "CHATEAUNEUF D OZE" }, { - "codePostal": "52130", - "codeCommune": "52034", - "libelleAcheminement": "BAILLY AUX FORGES", - "nomCommune": "BAILLY AUX FORGES" + "codePostal": "07120", + "codeCommune": "07207", + "libelleAcheminement": "ST ALBAN AURIOLLES", + "nomCommune": "ST ALBAN AURIOLLES" }, { - "codePostal": "10160", - "codeCommune": "10042", - "libelleAcheminement": "BERULLE", - "nomCommune": "BERULLE" + "codePostal": "19170", + "codeCommune": "19074", + "libelleAcheminement": "L EGLISE AUX BOIS", + "nomCommune": "L EGLISE AUX BOIS" }, { - "codePostal": "11580", - "codeCommune": "11406", - "libelleAcheminement": "VERAZA", - "nomCommune": "VERAZA" + "codePostal": "19160", + "codeCommune": "19148", + "libelleAcheminement": "NEUVIC", + "nomCommune": "NEUVIC" }, { - "codePostal": "52160", - "codeCommune": "52040", - "libelleAcheminement": "BAY SUR AUBE", - "nomCommune": "BAY SUR AUBE" + "codePostal": "05380", + "codeCommune": "05036", + "libelleAcheminement": "CHATEAUROUX LES ALPES", + "nomCommune": "CHATEAUROUX LES ALPES" }, { - "codePostal": "10170", - "codeCommune": "10043", - "libelleAcheminement": "BESSY", - "nomCommune": "BESSY" + "codePostal": "07600", + "codeCommune": "07210", + "libelleAcheminement": "ST ANDEOL DE VALS", + "nomCommune": "ST ANDEOL DE VALS" }, { - "codePostal": "11600", - "codeCommune": "11411", - "libelleAcheminement": "VILLANIERE", - "nomCommune": "VILLANIERE" + "codePostal": "19300", + "codeCommune": "19088", + "libelleAcheminement": "GRANDSAIGNE", + "nomCommune": "GRANDSAIGNE" }, { - "codePostal": "52500", - "codeCommune": "52043", - "libelleAcheminement": "BELMONT", - "nomCommune": "BELMONT" + "codePostal": "19600", + "codeCommune": "19151", + "libelleAcheminement": "NOAILLES", + "nomCommune": "NOAILLES" }, { - "codePostal": "10140", - "codeCommune": "10045", - "libelleAcheminement": "BEUREY", - "nomCommune": "BEUREY" + "codePostal": "05500", + "codeCommune": "05039", + "libelleAcheminement": "AUBESSAGNE", + "nomCommune": "AUBESSAGNE" }, { - "codePostal": "11600", - "codeCommune": "11413", - "libelleAcheminement": "VILLARDONNEL", - "nomCommune": "VILLARDONNEL" + "codePostal": "07230", + "codeCommune": "07213", + "libelleAcheminement": "ST ANDRE LACHAMP", + "nomCommune": "ST ANDRE LACHAMP" }, { - "codePostal": "52100", - "codeCommune": "52045", - "libelleAcheminement": "BETTANCOURT LA FERREE", - "nomCommune": "BETTANCOURT LA FERREE" + "codePostal": "19320", + "codeCommune": "19090", + "libelleAcheminement": "GUMOND", + "nomCommune": "GUMOND" }, { - "codePostal": "10380", - "codeCommune": "10052", - "libelleAcheminement": "BOULAGES", - "nomCommune": "BOULAGES" + "codePostal": "19130", + "codeCommune": "19153", + "libelleAcheminement": "OBJAT", + "nomCommune": "OBJAT" }, { - "codePostal": "11200", - "codeCommune": "11421", - "libelleAcheminement": "VILLEDAIGNE", - "nomCommune": "VILLEDAIGNE" + "codePostal": "05800", + "codeCommune": "05039", + "libelleAcheminement": "AUBESSAGNE", + "nomCommune": "AUBESSAGNE" }, { - "codePostal": "52500", - "codeCommune": "52051", - "libelleAcheminement": "BIZE", - "nomCommune": "BIZE" + "codePostal": "07240", + "codeCommune": "07214", + "libelleAcheminement": "ST APOLLINAIRE DE RIAS", + "nomCommune": "ST APOLLINAIRE DE RIAS" }, { - "codePostal": "10220", - "codeCommune": "10056", - "libelleAcheminement": "BOUY LUXEMBOURG", - "nomCommune": "BOUY LUXEMBOURG" + "codePostal": "19170", + "codeCommune": "19095", + "libelleAcheminement": "LACELLE", + "nomCommune": "LACELLE" }, { - "codePostal": "11170", - "codeCommune": "11439", - "libelleAcheminement": "VILLESPY", - "nomCommune": "VILLESPY" + "codePostal": "19500", + "codeCommune": "19179", + "libelleAcheminement": "SAILLAC", + "nomCommune": "SAILLAC" }, { - "codePostal": "52310", - "codeCommune": "52058", - "libelleAcheminement": "BOLOGNE", - "nomCommune": "BOLOGNE" + "codePostal": "05300", + "codeCommune": "05053", + "libelleAcheminement": "GARDE COLOMBE", + "nomCommune": "GARDE COLOMBE" }, { - "codePostal": "10340", - "codeCommune": "10058", - "libelleAcheminement": "BRAGELOGNE BEAUVOIR", - "nomCommune": "BRAGELOGNE BEAUVOIR" + "codePostal": "07510", + "codeCommune": "07224", + "libelleAcheminement": "ST CIRGUES EN MONTAGNE", + "nomCommune": "ST CIRGUES EN MONTAGNE" }, { - "codePostal": "12300", - "codeCommune": "12004", - "libelleAcheminement": "ALMONT LES JUNIES", - "nomCommune": "ALMONT LES JUNIES" + "codePostal": "19150", + "codeCommune": "19098", + "libelleAcheminement": "LAGARDE MARC LA TOUR", + "nomCommune": "LAGARDE MARC LA TOUR" }, { - "codePostal": "52240", - "codeCommune": "52074", - "libelleAcheminement": "BREUVANNES EN BASSIGNY", - "nomCommune": "BREUVANNES EN BASSIGNY" + "codePostal": "19410", + "codeCommune": "19188", + "libelleAcheminement": "ST BONNET L ENFANTIER", + "nomCommune": "ST BONNET L ENFANTIER" }, { - "codePostal": "10130", - "codeCommune": "10074", - "libelleAcheminement": "CHAMOY", - "nomCommune": "CHAMOY" + "codePostal": "05130", + "codeCommune": "05057", + "libelleAcheminement": "FOUILLOUSE", + "nomCommune": "FOUILLOUSE" }, { - "codePostal": "12700", - "codeCommune": "12012", - "libelleAcheminement": "ASPRIERES", - "nomCommune": "ASPRIERES" + "codePostal": "07340", + "codeCommune": "07228", + "libelleAcheminement": "ST DESIRAT", + "nomCommune": "ST DESIRAT" }, { - "codePostal": "52500", - "codeCommune": "52083", - "libelleAcheminement": "CHAMPSEVRAINE", - "nomCommune": "CHAMPSEVRAINE" + "codePostal": "19510", + "codeCommune": "19104", + "libelleAcheminement": "LAMONGERIE", + "nomCommune": "LAMONGERIE" }, { - "codePostal": "10340", - "codeCommune": "10079", - "libelleAcheminement": "CHANNES", - "nomCommune": "CHANNES" + "codePostal": "19380", + "codeCommune": "19192", + "libelleAcheminement": "ST CHAMANT", + "nomCommune": "ST CHAMANT" }, { - "codePostal": "12500", - "codeCommune": "12027", - "libelleAcheminement": "BESSUEJOULS", - "nomCommune": "BESSUEJOULS" + "codePostal": "05000", + "codeCommune": "05059", + "libelleAcheminement": "LA FREISSINOUSE", + "nomCommune": "LA FREISSINOUSE" }, { - "codePostal": "52240", - "codeCommune": "52085", - "libelleAcheminement": "BUXIERES LES CLEFMONT", - "nomCommune": "BUXIERES LES CLEFMONT" + "codePostal": "07200", + "codeCommune": "07229", + "libelleAcheminement": "ST DIDIER SOUS AUBENAS", + "nomCommune": "ST DIDIER SOUS AUBENAS" }, { - "codePostal": "10210", - "codeCommune": "10080", - "libelleAcheminement": "CHAOURCE", - "nomCommune": "CHAOURCE" + "codePostal": "19340", + "codeCommune": "19108", + "libelleAcheminement": "LAROCHE PRES FEYT", + "nomCommune": "LAROCHE PRES FEYT" }, { - "codePostal": "12550", - "codeCommune": "12035", - "libelleAcheminement": "BRASC", - "nomCommune": "BRASC" + "codePostal": "19210", + "codeCommune": "19198", + "libelleAcheminement": "ST ELOY LES TUILERIES", + "nomCommune": "ST ELOY LES TUILERIES" }, { - "codePostal": "52360", - "codeCommune": "52089", - "libelleAcheminement": "CELLES EN BASSIGNY", - "nomCommune": "CELLES EN BASSIGNY" + "codePostal": "05800", + "codeCommune": "05062", + "libelleAcheminement": "LE GLAIZIL", + "nomCommune": "LE GLAIZIL" }, { - "codePostal": "10700", - "codeCommune": "10082", - "libelleAcheminement": "CHAPELLE VALLON", - "nomCommune": "CHAPELLE VALLON" + "codePostal": "07200", + "codeCommune": "07231", + "libelleAcheminement": "ST ETIENNE DE FONTBELLON", + "nomCommune": "ST ETIENNE DE FONTBELLON" }, { - "codePostal": "12360", - "codeCommune": "12039", - "libelleAcheminement": "BRUSQUE", - "nomCommune": "BRUSQUE" + "codePostal": "19130", + "codeCommune": "19109", + "libelleAcheminement": "LASCAUX", + "nomCommune": "LASCAUX" }, { - "codePostal": "52600", - "codeCommune": "52090", - "libelleAcheminement": "CELSOY", - "nomCommune": "CELSOY" + "codePostal": "19200", + "codeCommune": "19201", + "libelleAcheminement": "ST EXUPERY LES ROCHES", + "nomCommune": "ST EXUPERY LES ROCHES" }, { - "codePostal": "10290", - "codeCommune": "10085", - "libelleAcheminement": "CHARMOY", - "nomCommune": "CHARMOY" + "codePostal": "05600", + "codeCommune": "05065", + "libelleAcheminement": "GUILLESTRE", + "nomCommune": "GUILLESTRE" }, { - "codePostal": "12700", - "codeCommune": "12052", - "libelleAcheminement": "CAPDENAC GARE", - "nomCommune": "CAPDENAC GARE" + "codePostal": "07190", + "codeCommune": "07233", + "libelleAcheminement": "ST ETIENNE DE SERRE", + "nomCommune": "ST ETIENNE DE SERRE" }, { - "codePostal": "52160", - "codeCommune": "52092", - "libelleAcheminement": "CHALANCEY", - "nomCommune": "CHALANCEY" + "codePostal": "19550", + "codeCommune": "19111", + "libelleAcheminement": "LAVAL SUR LUZEGE", + "nomCommune": "LAVAL SUR LUZEGE" }, { - "codePostal": "10380", - "codeCommune": "10086", - "libelleAcheminement": "CHARNY LE BACHOT", - "nomCommune": "CHARNY LE BACHOT" + "codePostal": "19160", + "codeCommune": "19210", + "libelleAcheminement": "ST HILAIRE LUC", + "nomCommune": "ST HILAIRE LUC" }, { - "codePostal": "12240", - "codeCommune": "12054", - "libelleAcheminement": "LA CAPELLE BLEYS", - "nomCommune": "LA CAPELLE BLEYS" + "codePostal": "05130", + "codeCommune": "05068", + "libelleAcheminement": "JARJAYES", + "nomCommune": "JARJAYES" }, { - "codePostal": "52160", - "codeCommune": "52094", - "libelleAcheminement": "VALS DES TILLES", - "nomCommune": "VALS DES TILLES" + "codePostal": "07510", + "codeCommune": "07235", + "libelleAcheminement": "STE EULALIE", + "nomCommune": "STE EULALIE" }, { - "codePostal": "10240", - "codeCommune": "10091", - "libelleAcheminement": "CHAUDREY", - "nomCommune": "CHAUDREY" + "codePostal": "19170", + "codeCommune": "19112", + "libelleAcheminement": "LESTARDS", + "nomCommune": "LESTARDS" }, { - "codePostal": "12130", - "codeCommune": "12055", - "libelleAcheminement": "LA CAPELLE BONANCE", - "nomCommune": "LA CAPELLE BONANCE" + "codePostal": "19430", + "codeCommune": "19215", + "libelleAcheminement": "ST JULIEN LE PELERIN", + "nomCommune": "ST JULIEN LE PELERIN" }, { - "codePostal": "52160", - "codeCommune": "52094", - "libelleAcheminement": "VALS DES TILLES", - "nomCommune": "VALS DES TILLES" + "codePostal": "05130", + "codeCommune": "05074", + "libelleAcheminement": "LETTRET", + "nomCommune": "LETTRET" }, { - "codePostal": "10700", - "codeCommune": "10095", - "libelleAcheminement": "LE CHENE", - "nomCommune": "LE CHENE" + "codePostal": "07190", + "codeCommune": "07239", + "libelleAcheminement": "ST GENEST LACHAMP", + "nomCommune": "ST GENEST LACHAMP" }, { - "codePostal": "12160", - "codeCommune": "12056", - "libelleAcheminement": "BARAQUEVILLE", - "nomCommune": "BARAQUEVILLE" + "codePostal": "19310", + "codeCommune": "19120", + "libelleAcheminement": "LOUIGNAC", + "nomCommune": "LOUIGNAC" }, { - "codePostal": "52150", - "codeCommune": "52101", - "libelleAcheminement": "CHAMPIGNEULLES EN BASSIGNY", - "nomCommune": "CHAMPIGNEULLES EN BASSIGNY" + "codePostal": "19400", + "codeCommune": "19221", + "libelleAcheminement": "ST MARTIAL ENTRAYGUES", + "nomCommune": "ST MARTIAL ENTRAYGUES" }, { - "codePostal": "10110", - "codeCommune": "10097", - "libelleAcheminement": "CHERVEY", - "nomCommune": "CHERVEY" + "codePostal": "05110", + "codeCommune": "05078", + "libelleAcheminement": "MONETIER ALLEMONT", + "nomCommune": "MONETIER ALLEMONT" }, { - "codePostal": "12240", - "codeCommune": "12059", - "libelleAcheminement": "CASTANET", - "nomCommune": "CASTANET" + "codePostal": "07300", + "codeCommune": "07245", + "libelleAcheminement": "ST JEAN DE MUZOLS", + "nomCommune": "ST JEAN DE MUZOLS" }, { - "codePostal": "52100", - "codeCommune": "52104", - "libelleAcheminement": "CHANCENAY", - "nomCommune": "CHANCENAY" + "codePostal": "19360", + "codeCommune": "19123", + "libelleAcheminement": "MALEMORT", + "nomCommune": "MALEMORT" }, { - "codePostal": "10200", - "codeCommune": "10102", - "libelleAcheminement": "COLOMBE LA FOSSE", - "nomCommune": "COLOMBE LA FOSSE" + "codePostal": "19320", + "codeCommune": "19231", + "libelleAcheminement": "ST PARDOUX LA CROISILLE", + "nomCommune": "ST PARDOUX LA CROISILLE" }, { - "codePostal": "12500", - "codeCommune": "12064", - "libelleAcheminement": "LE CAYROL", - "nomCommune": "LE CAYROL" + "codePostal": "05220", + "codeCommune": "05079", + "libelleAcheminement": "LE MONETIER LES BAINS", + "nomCommune": "LE MONETIER LES BAINS" }, { - "codePostal": "52700", - "codeCommune": "52107", - "libelleAcheminement": "CHANTRAINES", - "nomCommune": "CHANTRAINES" + "codePostal": "07530", + "codeCommune": "07251", + "libelleAcheminement": "ST JOSEPH DES BANCS", + "nomCommune": "ST JOSEPH DES BANCS" }, { - "codePostal": "10800", - "codeCommune": "10104", - "libelleAcheminement": "CORMOST", - "nomCommune": "CORMOST" + "codePostal": "19510", + "codeCommune": "19131", + "libelleAcheminement": "MEILHARDS", + "nomCommune": "MEILHARDS" }, { - "codePostal": "12120", - "codeCommune": "12065", - "libelleAcheminement": "CENTRES", - "nomCommune": "CENTRES" + "codePostal": "19200", + "codeCommune": "19232", + "libelleAcheminement": "ST PARDOUX LE NEUF", + "nomCommune": "ST PARDOUX LE NEUF" }, { - "codePostal": "52360", - "codeCommune": "52108", - "libelleAcheminement": "CHARMES", - "nomCommune": "CHARMES" + "codePostal": "05700", + "codeCommune": "05081", + "libelleAcheminement": "MONTCLUS", + "nomCommune": "MONTCLUS" }, { - "codePostal": "10400", - "codeCommune": "10106", - "libelleAcheminement": "COURCEROY", - "nomCommune": "COURCEROY" + "codePostal": "07310", + "codeCommune": "07269", + "libelleAcheminement": "ST MARTIN DE VALAMAS", + "nomCommune": "ST MARTIN DE VALAMAS" }, { - "codePostal": "12350", - "codeCommune": "12071", - "libelleAcheminement": "COMPOLIBAT", - "nomCommune": "COMPOLIBAT" + "codePostal": "19190", + "codeCommune": "19132", + "libelleAcheminement": "MENOIRE", + "nomCommune": "MENOIRE" }, { - "codePostal": "52190", - "codeCommune": "52113", - "libelleAcheminement": "CHASSIGNY", - "nomCommune": "CHASSIGNY" + "codePostal": "19220", + "codeCommune": "19237", + "libelleAcheminement": "ST PRIVAT", + "nomCommune": "ST PRIVAT" }, { - "codePostal": "10260", - "codeCommune": "10109", - "libelleAcheminement": "COURTENOT", - "nomCommune": "COURTENOT" + "codePostal": "05230", + "codeCommune": "05084", + "libelleAcheminement": "MONTGARDIN", + "nomCommune": "MONTGARDIN" }, { - "codePostal": "12470", - "codeCommune": "12074", - "libelleAcheminement": "CONDOM D AUBRAC", - "nomCommune": "CONDOM D AUBRAC" + "codePostal": "07190", + "codeCommune": "07274", + "libelleAcheminement": "ST MAURICE EN CHALENCON", + "nomCommune": "ST MAURICE EN CHALENCON" }, { - "codePostal": "52000", - "codeCommune": "52125", - "libelleAcheminement": "CHAMARANDES CHOIGNES", - "nomCommune": "CHAMARANDES CHOIGNES" + "codePostal": "19430", + "codeCommune": "19133", + "libelleAcheminement": "MERCOEUR", + "nomCommune": "MERCOEUR" }, { - "codePostal": "10320", - "codeCommune": "10116", - "libelleAcheminement": "CRESANTIGNES", - "nomCommune": "CRESANTIGNES" + "codePostal": "19240", + "codeCommune": "19246", + "libelleAcheminement": "ST VIANCE", + "nomCommune": "ST VIANCE" }, { - "codePostal": "12640", - "codeCommune": "12086", - "libelleAcheminement": "LA CRESSE", - "nomCommune": "LA CRESSE" + "codePostal": "05150", + "codeCommune": "05091", + "libelleAcheminement": "MOYDANS", + "nomCommune": "MOYDANS" }, { - "codePostal": "52240", - "codeCommune": "52127", - "libelleAcheminement": "CHOISEUL", - "nomCommune": "CHOISEUL" + "codePostal": "07200", + "codeCommune": "07277", + "libelleAcheminement": "ST MICHEL DE BOULOGNE", + "nomCommune": "ST MICHEL DE BOULOGNE" }, { - "codePostal": "10360", - "codeCommune": "10119", - "libelleAcheminement": "CUNFIN", - "nomCommune": "CUNFIN" + "codePostal": "19200", + "codeCommune": "19135", + "libelleAcheminement": "MESTES", + "nomCommune": "MESTES" }, { - "codePostal": "12000", - "codeCommune": "12090", - "libelleAcheminement": "DRUELLE BALSAC", - "nomCommune": "DRUELLE BALSAC" + "codePostal": "19300", + "codeCommune": "19249", + "libelleAcheminement": "ST YRIEIX LE DEJALAT", + "nomCommune": "ST YRIEIX LE DEJALAT" }, { - "codePostal": "52400", - "codeCommune": "52136", - "libelleAcheminement": "COIFFY LE HAUT", - "nomCommune": "COIFFY LE HAUT" + "codePostal": "05700", + "codeCommune": "05094", + "libelleAcheminement": "NOSSAGE ET BENEVENT", + "nomCommune": "NOSSAGE ET BENEVENT" }, { - "codePostal": "10170", - "codeCommune": "10131", - "libelleAcheminement": "DROUPT ST BASLE", - "nomCommune": "DROUPT ST BASLE" + "codePostal": "07460", + "codeCommune": "07280", + "libelleAcheminement": "ST PAUL LE JEUNE", + "nomCommune": "ST PAUL LE JEUNE" }, { - "codePostal": "12510", - "codeCommune": "12090", - "libelleAcheminement": "DRUELLE BALSAC", - "nomCommune": "DRUELLE BALSAC" + "codePostal": "19340", + "codeCommune": "19141", + "libelleAcheminement": "MONESTIER MERLINES", + "nomCommune": "MONESTIER MERLINES" }, { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "19220", + "codeCommune": "19258", + "libelleAcheminement": "SERVIERES LE CHATEAU", + "nomCommune": "SERVIERES LE CHATEAU" }, { - "codePostal": "10110", - "codeCommune": "10136", - "libelleAcheminement": "EGUILLY SOUS BOIS", - "nomCommune": "EGUILLY SOUS BOIS" + "codePostal": "05500", + "codeCommune": "05095", + "libelleAcheminement": "LE NOYER", + "nomCommune": "LE NOYER" }, { - "codePostal": "12140", - "codeCommune": "12093", - "libelleAcheminement": "LE FEL", - "nomCommune": "LE FEL" + "codePostal": "07130", + "codeCommune": "07281", + "libelleAcheminement": "ST PERAY", + "nomCommune": "ST PERAY" }, { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "19110", + "codeCommune": "19142", + "libelleAcheminement": "MONESTIER PORT DIEU", + "nomCommune": "MONESTIER PORT DIEU" }, { - "codePostal": "10400", - "codeCommune": "10153", - "libelleAcheminement": "FONTAINE MACON", - "nomCommune": "FONTAINE MACON" + "codePostal": "19290", + "codeCommune": "19261", + "libelleAcheminement": "SORNAC", + "nomCommune": "SORNAC" }, { - "codePostal": "12360", - "codeCommune": "12099", - "libelleAcheminement": "FAYET", - "nomCommune": "FAYET" + "codePostal": "05000", + "codeCommune": "05100", + "libelleAcheminement": "PELLEAUTIER", + "nomCommune": "PELLEAUTIER" }, { - "codePostal": "52110", - "codeCommune": "52149", - "libelleAcheminement": "COURCELLES SUR BLAISE", - "nomCommune": "COURCELLES SUR BLAISE" + "codePostal": "07200", + "codeCommune": "07289", + "libelleAcheminement": "ST PRIVAT", + "nomCommune": "ST PRIVAT" }, { - "codePostal": "10400", - "codeCommune": "10154", - "libelleAcheminement": "FONTENAY DE BOSSERY", - "nomCommune": "FONTENAY DE BOSSERY" + "codePostal": "19460", + "codeCommune": "19146", + "libelleAcheminement": "NAVES", + "nomCommune": "NAVES" }, { - "codePostal": "12300", - "codeCommune": "12101", - "libelleAcheminement": "FLAGNAC", - "nomCommune": "FLAGNAC" + "codePostal": "19260", + "codeCommune": "19281", + "libelleAcheminement": "VEIX", + "nomCommune": "VEIX" }, { - "codePostal": "52600", - "codeCommune": "52155", - "libelleAcheminement": "CULMONT", - "nomCommune": "CULMONT" + "codePostal": "05300", + "codeCommune": "05118", + "libelleAcheminement": "VAL BUECH MEOUGE", + "nomCommune": "VAL BUECH MEOUGE" }, { - "codePostal": "10360", - "codeCommune": "10155", - "libelleAcheminement": "FONTETTE", - "nomCommune": "FONTETTE" + "codePostal": "07130", + "codeCommune": "07293", + "libelleAcheminement": "ST ROMAIN DE LERPS", + "nomCommune": "ST ROMAIN DE LERPS" }, { - "codePostal": "12360", - "codeCommune": "12109", - "libelleAcheminement": "GISSAC", - "nomCommune": "GISSAC" + "codePostal": "19120", + "codeCommune": "19152", + "libelleAcheminement": "NONARDS", + "nomCommune": "NONARDS" }, { - "codePostal": "52400", - "codeCommune": "52164", - "libelleAcheminement": "DAMREMONT", - "nomCommune": "DAMREMONT" + "codePostal": "19200", + "codeCommune": "19283", + "libelleAcheminement": "VEYRIERES", + "nomCommune": "VEYRIERES" }, { - "codePostal": "10110", - "codeCommune": "10159", - "libelleAcheminement": "FRALIGNES", - "nomCommune": "FRALIGNES" + "codePostal": "05300", + "codeCommune": "05118", + "libelleAcheminement": "VAL BUECH MEOUGE", + "nomCommune": "VAL BUECH MEOUGE" }, { - "codePostal": "12440", - "codeCommune": "12128", - "libelleAcheminement": "LESCURE JAOUL", - "nomCommune": "LESCURE JAOUL" + "codePostal": "07460", + "codeCommune": "07294", + "libelleAcheminement": "ST SAUVEUR DE CRUZIERES", + "nomCommune": "ST SAUVEUR DE CRUZIERES" }, { - "codePostal": "52190", - "codeCommune": "52170", - "libelleAcheminement": "DOMMARIEN", - "nomCommune": "DOMMARIEN" + "codePostal": "19390", + "codeCommune": "19155", + "libelleAcheminement": "ORLIAC DE BAR", + "nomCommune": "ORLIAC DE BAR" }, { - "codePostal": "10700", - "codeCommune": "10167", - "libelleAcheminement": "GRANDVILLE", - "nomCommune": "GRANDVILLE" + "codePostal": "19410", + "codeCommune": "19285", + "libelleAcheminement": "VIGEOIS", + "nomCommune": "VIGEOIS" }, { - "codePostal": "12160", - "codeCommune": "12137", - "libelleAcheminement": "MANHAC", - "nomCommune": "MANHAC" + "codePostal": "05150", + "codeCommune": "05129", + "libelleAcheminement": "ST ANDRE DE ROSANS", + "nomCommune": "ST ANDRE DE ROSANS" }, { - "codePostal": "52110", - "codeCommune": "52172", - "libelleAcheminement": "DOMMARTIN LE ST PERE", - "nomCommune": "DOMMARTIN LE ST PERE" + "codePostal": "07290", + "codeCommune": "07299", + "libelleAcheminement": "ST SYMPHORIEN DE MAHUN", + "nomCommune": "ST SYMPHORIEN DE MAHUN" }, { - "codePostal": "10210", - "codeCommune": "10168", - "libelleAcheminement": "LES GRANGES", - "nomCommune": "LES GRANGES" + "codePostal": "19300", + "codeCommune": "19159", + "libelleAcheminement": "PERET BEL AIR", + "nomCommune": "PERET BEL AIR" }, { - "codePostal": "12330", - "codeCommune": "12138", - "libelleAcheminement": "MARCILLAC VALLON", - "nomCommune": "MARCILLAC VALLON" + "codePostal": "19130", + "codeCommune": "19288", + "libelleAcheminement": "VOUTEZAC", + "nomCommune": "VOUTEZAC" }, { - "codePostal": "52110", - "codeCommune": "52178", - "libelleAcheminement": "DOULEVANT LE CHATEAU", - "nomCommune": "DOULEVANT LE CHATEAU" + "codePostal": "05600", + "codeCommune": "05134", + "libelleAcheminement": "ST CLEMENT SUR DURANCE", + "nomCommune": "ST CLEMENT SUR DURANCE" }, { - "codePostal": "10250", - "codeCommune": "10170", - "libelleAcheminement": "GYE SUR SEINE", - "nomCommune": "GYE SUR SEINE" + "codePostal": "07220", + "codeCommune": "07300", + "libelleAcheminement": "ST THOME", + "nomCommune": "ST THOME" }, { - "codePostal": "12550", - "codeCommune": "12141", - "libelleAcheminement": "MARTRIN", - "nomCommune": "MARTRIN" + "codePostal": "19170", + "codeCommune": "19160", + "libelleAcheminement": "PEROLS SUR VEZERE", + "nomCommune": "PEROLS SUR VEZERE" }, { - "codePostal": "52110", - "codeCommune": "52178", - "libelleAcheminement": "DOULEVANT LE CHATEAU", - "nomCommune": "DOULEVANT LE CHATEAU" + "codePostal": "19310", + "codeCommune": "19289", + "libelleAcheminement": "YSSANDON", + "nomCommune": "YSSANDON" }, { - "codePostal": "10200", - "codeCommune": "10176", - "libelleAcheminement": "JAUCOURT", - "nomCommune": "JAUCOURT" + "codePostal": "05250", + "codeCommune": "05139", + "libelleAcheminement": "LE DEVOLUY", + "nomCommune": "LE DEVOLUY" }, { - "codePostal": "12360", - "codeCommune": "12143", - "libelleAcheminement": "MELAGUES", - "nomCommune": "MELAGUES" + "codePostal": "07120", + "codeCommune": "07306", + "libelleAcheminement": "SAMPZON", + "nomCommune": "SAMPZON" }, { - "codePostal": "52400", - "codeCommune": "52185", - "libelleAcheminement": "ENFONVELLE", - "nomCommune": "ENFONVELLE" + "codePostal": "19450", + "codeCommune": "19166", + "libelleAcheminement": "PIERREFITTE", + "nomCommune": "PIERREFITTE" }, { - "codePostal": "10320", - "codeCommune": "10177", - "libelleAcheminement": "JAVERNANT", - "nomCommune": "JAVERNANT" + "codePostal": "21560", + "codeCommune": "21021", + "libelleAcheminement": "ARC SUR TILLE", + "nomCommune": "ARC SUR TILLE" }, { - "codePostal": "12000", - "codeCommune": "12146", - "libelleAcheminement": "LE MONASTERE", - "nomCommune": "LE MONASTERE" + "codePostal": "05800", + "codeCommune": "05144", + "libelleAcheminement": "ST JACQUES EN VALGODEMARD", + "nomCommune": "ST JACQUES EN VALGODEMARD" }, { - "codePostal": "52190", - "codeCommune": "52189", - "libelleAcheminement": "LE VAL D ESNOMS", - "nomCommune": "LE VAL D ESNOMS" + "codePostal": "07110", + "codeCommune": "07307", + "libelleAcheminement": "SANILHAC", + "nomCommune": "SANILHAC" }, { - "codePostal": "10210", - "codeCommune": "10185", - "libelleAcheminement": "LAGESSE", - "nomCommune": "LAGESSE" + "codePostal": "19320", + "codeCommune": "19174", + "libelleAcheminement": "LA ROCHE CANILLAC", + "nomCommune": "LA ROCHE CANILLAC" }, { - "codePostal": "12260", - "codeCommune": "12158", - "libelleAcheminement": "MONTSALES", - "nomCommune": "MONTSALES" + "codePostal": "21700", + "codeCommune": "21022", + "libelleAcheminement": "ARGILLY", + "nomCommune": "ARGILLY" }, { - "codePostal": "52190", - "codeCommune": "52189", - "libelleAcheminement": "LE VAL D ESNOMS", - "nomCommune": "LE VAL D ESNOMS" + "codePostal": "05260", + "codeCommune": "05145", + "libelleAcheminement": "ST JEAN ST NICOLAS", + "nomCommune": "ST JEAN ST NICOLAS" }, { - "codePostal": "10210", - "codeCommune": "10188", - "libelleAcheminement": "LANTAGES", - "nomCommune": "LANTAGES" + "codePostal": "07610", + "codeCommune": "07312", + "libelleAcheminement": "SECHERAS", + "nomCommune": "SECHERAS" }, { - "codePostal": "12330", - "codeCommune": "12161", - "libelleAcheminement": "MOURET", - "nomCommune": "MOURET" + "codePostal": "19300", + "codeCommune": "19176", + "libelleAcheminement": "ROSIERS D EGLETONS", + "nomCommune": "ROSIERS D EGLETONS" }, { - "codePostal": "52170", - "codeCommune": "52203", - "libelleAcheminement": "FONTAINES SUR MARNE", - "nomCommune": "FONTAINES SUR MARNE" + "codePostal": "21170", + "codeCommune": "21031", + "libelleAcheminement": "AUBIGNY EN PLAINE", + "nomCommune": "AUBIGNY EN PLAINE" }, { - "codePostal": "10330", - "codeCommune": "10192", - "libelleAcheminement": "LENTILLES", - "nomCommune": "LENTILLES" + "codePostal": "05260", + "codeCommune": "05153", + "libelleAcheminement": "ST MICHEL DE CHAILLOL", + "nomCommune": "ST MICHEL DE CHAILLOL" }, { - "codePostal": "12600", - "codeCommune": "12164", - "libelleAcheminement": "MUR DE BARREZ", - "nomCommune": "MUR DE BARREZ" + "codePostal": "07130", + "codeCommune": "07316", + "libelleAcheminement": "SOYONS", + "nomCommune": "SOYONS" }, { - "codePostal": "52000", - "codeCommune": "52205", - "libelleAcheminement": "FOULAIN", - "nomCommune": "FOULAIN" + "codePostal": "19380", + "codeCommune": "19186", + "libelleAcheminement": "ST BONNET ELVERT", + "nomCommune": "ST BONNET ELVERT" }, { - "codePostal": "10500", - "codeCommune": "10193", - "libelleAcheminement": "LESMONT", - "nomCommune": "LESMONT" + "codePostal": "21130", + "codeCommune": "21038", + "libelleAcheminement": "AUXONNE", + "nomCommune": "AUXONNE" }, { - "codePostal": "12270", - "codeCommune": "12167", - "libelleAcheminement": "NAJAC", - "nomCommune": "NAJAC" + "codePostal": "05140", + "codeCommune": "05154", + "libelleAcheminement": "ST PIERRE D ARGENCON", + "nomCommune": "ST PIERRE D ARGENCON" }, { - "codePostal": "52220", - "codeCommune": "52206", - "libelleAcheminement": "FRAMPAS", - "nomCommune": "FRAMPAS" + "codePostal": "07340", + "codeCommune": "07317", + "libelleAcheminement": "TALENCIEUX", + "nomCommune": "TALENCIEUX" }, { - "codePostal": "10210", - "codeCommune": "10201", - "libelleAcheminement": "LA LOGE POMBLIN", - "nomCommune": "LA LOGE POMBLIN" + "codePostal": "19430", + "codeCommune": "19189", + "libelleAcheminement": "ST BONNET LES TOURS DE MERLE", + "nomCommune": "ST BONNET LES TOURS DE MERLE" }, { - "codePostal": "12260", - "codeCommune": "12175", - "libelleAcheminement": "OLS ET RINHODES", - "nomCommune": "OLS ET RINHODES" + "codePostal": "21340", + "codeCommune": "21050", + "libelleAcheminement": "BAUBIGNY", + "nomCommune": "BAUBIGNY" }, { - "codePostal": "52300", - "codeCommune": "52212", - "libelleAcheminement": "FRONVILLE", - "nomCommune": "FRONVILLE" + "codePostal": "05300", + "codeCommune": "05160", + "libelleAcheminement": "SALERANS", + "nomCommune": "SALERANS" }, { - "codePostal": "10300", - "codeCommune": "10211", - "libelleAcheminement": "MACEY", - "nomCommune": "MACEY" + "codePostal": "07200", + "codeCommune": "07325", + "libelleAcheminement": "UCEL", + "nomCommune": "UCEL" }, { - "codePostal": "12340", - "codeCommune": "12177", - "libelleAcheminement": "PALMAS D AVEYRON", - "nomCommune": "PALMAS D AVEYRON" + "codePostal": "19600", + "codeCommune": "19191", + "libelleAcheminement": "ST CERNIN DE LARCHE", + "nomCommune": "ST CERNIN DE LARCHE" }, { - "codePostal": "52500", - "codeCommune": "52213", - "libelleAcheminement": "GENEVRIERES", - "nomCommune": "GENEVRIERES" + "codePostal": "21510", + "codeCommune": "21052", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "10110", - "codeCommune": "10213", - "libelleAcheminement": "MAGNANT", - "nomCommune": "MAGNANT" + "codePostal": "05110", + "codeCommune": "05162", + "libelleAcheminement": "LA SAULCE", + "nomCommune": "LA SAULCE" }, { - "codePostal": "12470", - "codeCommune": "12187", - "libelleAcheminement": "PRADES D AUBRAC", - "nomCommune": "PRADES D AUBRAC" + "codePostal": "07510", + "codeCommune": "07326", + "libelleAcheminement": "USCLADES ET RIEUTORD", + "nomCommune": "USCLADES ET RIEUTORD" }, { - "codePostal": "52160", - "codeCommune": "52216", - "libelleAcheminement": "GERMAINES", - "nomCommune": "GERMAINES" + "codePostal": "19220", + "codeCommune": "19193", + "libelleAcheminement": "ST CIRGUES LA LOUTRE", + "nomCommune": "ST CIRGUES LA LOUTRE" }, { - "codePostal": "10240", - "codeCommune": "10214", - "libelleAcheminement": "MAGNICOURT", - "nomCommune": "MAGNICOURT" + "codePostal": "21310", + "codeCommune": "21053", + "libelleAcheminement": "BEAUMONT SUR VINGEANNE", + "nomCommune": "BEAUMONT SUR VINGEANNE" }, { - "codePostal": "12290", - "codeCommune": "12188", - "libelleAcheminement": "PRADES SALARS", - "nomCommune": "PRADES SALARS" + "codePostal": "05190", + "codeCommune": "05171", + "libelleAcheminement": "THEUS", + "nomCommune": "THEUS" }, { - "codePostal": "52330", - "codeCommune": "52221", - "libelleAcheminement": "GILLANCOURT", - "nomCommune": "GILLANCOURT" + "codePostal": "07150", + "codeCommune": "07330", + "libelleAcheminement": "VALLON PONT D ARC", + "nomCommune": "VALLON PONT D ARC" }, { - "codePostal": "10140", - "codeCommune": "10215", - "libelleAcheminement": "MAGNY FOUCHARD", - "nomCommune": "MAGNY FOUCHARD" + "codePostal": "19270", + "codeCommune": "19202", + "libelleAcheminement": "STE FEREOLE", + "nomCommune": "STE FEREOLE" }, { - "codePostal": "12340", - "codeCommune": "12201", - "libelleAcheminement": "RODELLE", - "nomCommune": "RODELLE" + "codePostal": "21200", + "codeCommune": "21054", + "libelleAcheminement": "BEAUNE", + "nomCommune": "BEAUNE" }, { - "codePostal": "52230", - "codeCommune": "52222", - "libelleAcheminement": "GILLAUME", - "nomCommune": "GILLAUME" + "codePostal": "05100", + "codeCommune": "05174", + "libelleAcheminement": "VAL DES PRES", + "nomCommune": "VAL DES PRES" }, { - "codePostal": "10230", - "codeCommune": "10216", - "libelleAcheminement": "MAILLY LE CAMP", - "nomCommune": "MAILLY LE CAMP" + "codePostal": "07140", + "codeCommune": "07334", + "libelleAcheminement": "LES VANS", + "nomCommune": "LES VANS" }, { - "codePostal": "12250", - "codeCommune": "12203", - "libelleAcheminement": "ROQUEFORT SUR SOULZON", - "nomCommune": "ROQUEFORT SUR SOULZON" + "codePostal": "19200", + "codeCommune": "19204", + "libelleAcheminement": "ST FREJOUX", + "nomCommune": "ST FREJOUX" }, { - "codePostal": "52320", - "codeCommune": "52230", - "libelleAcheminement": "GUDMONT VILLIERS", - "nomCommune": "GUDMONT VILLIERS" + "codePostal": "21310", + "codeCommune": "21056", + "libelleAcheminement": "BEIRE LE CHATEL", + "nomCommune": "BEIRE LE CHATEL" }, { - "codePostal": "10290", - "codeCommune": "10223", - "libelleAcheminement": "MARCILLY LE HAYER", - "nomCommune": "MARCILLY LE HAYER" + "codePostal": "05560", + "codeCommune": "05177", + "libelleAcheminement": "VARS", + "nomCommune": "VARS" }, { - "codePostal": "12270", - "codeCommune": "12210", - "libelleAcheminement": "ST ANDRE DE NAJAC", - "nomCommune": "ST ANDRE DE NAJAC" + "codePostal": "07240", + "codeCommune": "07338", + "libelleAcheminement": "VERNOUX EN VIVARAIS", + "nomCommune": "VERNOUX EN VIVARAIS" }, { - "codePostal": "52400", - "codeCommune": "52233", - "libelleAcheminement": "GUYONVELLE", - "nomCommune": "GUYONVELLE" + "codePostal": "19220", + "codeCommune": "19214", + "libelleAcheminement": "ST JULIEN AUX BOIS", + "nomCommune": "ST JULIEN AUX BOIS" }, { - "codePostal": "10500", - "codeCommune": "10228", - "libelleAcheminement": "MATHAUX", - "nomCommune": "MATHAUX" + "codePostal": "21310", + "codeCommune": "21060", + "libelleAcheminement": "BELLENEUVE", + "nomCommune": "BELLENEUVE" }, { - "codePostal": "12260", - "codeCommune": "12217", - "libelleAcheminement": "STE CROIX", - "nomCommune": "STE CROIX" + "codePostal": "05400", + "codeCommune": "05179", + "libelleAcheminement": "VEYNES", + "nomCommune": "VEYNES" }, { - "codePostal": "52600", - "codeCommune": "52242", - "libelleAcheminement": "HAUTE AMANCE", - "nomCommune": "HAUTE AMANCE" + "codePostal": "07200", + "codeCommune": "07339", + "libelleAcheminement": "VESSEAUX", + "nomCommune": "VESSEAUX" }, { - "codePostal": "10600", - "codeCommune": "10230", - "libelleAcheminement": "MERGEY", - "nomCommune": "MERGEY" + "codePostal": "19500", + "codeCommune": "19217", + "libelleAcheminement": "ST JULIEN MAUMONT", + "nomCommune": "ST JULIEN MAUMONT" }, { - "codePostal": "12320", - "codeCommune": "12221", - "libelleAcheminement": "ST FELIX DE LUNEL", - "nomCommune": "ST FELIX DE LUNEL" + "codePostal": "21500", + "codeCommune": "21064", + "libelleAcheminement": "BENOISEY", + "nomCommune": "BENOISEY" }, { - "codePostal": "52000", - "codeCommune": "52251", - "libelleAcheminement": "JONCHERY", - "nomCommune": "JONCHERY" + "codePostal": "05480", + "codeCommune": "05181", + "libelleAcheminement": "VILLAR D ARENE", + "nomCommune": "VILLAR D ARENE" }, { - "codePostal": "10110", - "codeCommune": "10232", - "libelleAcheminement": "MERREY SUR ARCE", - "nomCommune": "MERREY SUR ARCE" + "codePostal": "07170", + "codeCommune": "07341", + "libelleAcheminement": "VILLENEUVE DE BERG", + "nomCommune": "VILLENEUVE DE BERG" }, { - "codePostal": "12210", - "codeCommune": "12223", - "libelleAcheminement": "ARGENCES EN AUBRAC", - "nomCommune": "ARGENCES EN AUBRAC" + "codePostal": "19320", + "codeCommune": "19222", + "libelleAcheminement": "ST MARTIN LA MEANNE", + "nomCommune": "ST MARTIN LA MEANNE" }, { - "codePostal": "52330", - "codeCommune": "52253", - "libelleAcheminement": "JUZENNECOURT", - "nomCommune": "JUZENNECOURT" + "codePostal": "21350", + "codeCommune": "21069", + "libelleAcheminement": "BEURIZOT", + "nomCommune": "BEURIZOT" }, { - "codePostal": "10220", - "codeCommune": "10239", - "libelleAcheminement": "MESNIL SELLIERES", - "nomCommune": "MESNIL SELLIERES" + "codePostal": "06910", + "codeCommune": "06002", + "libelleAcheminement": "AMIRAT", + "nomCommune": "AMIRAT" }, { - "codePostal": "12210", - "codeCommune": "12223", - "libelleAcheminement": "ARGENCES EN AUBRAC", - "nomCommune": "ARGENCES EN AUBRAC" + "codePostal": "07690", + "codeCommune": "07342", + "libelleAcheminement": "VILLEVOCANCE", + "nomCommune": "VILLEVOCANCE" }, { - "codePostal": "52700", - "codeCommune": "52256", - "libelleAcheminement": "LAFAUCHE", - "nomCommune": "LAFAUCHE" + "codePostal": "19320", + "codeCommune": "19225", + "libelleAcheminement": "ST MERD DE LAPLEAU", + "nomCommune": "ST MERD DE LAPLEAU" }, { - "codePostal": "10270", - "codeCommune": "10245", - "libelleAcheminement": "MONTAULIN", - "nomCommune": "MONTAULIN" + "codePostal": "21220", + "codeCommune": "21070", + "libelleAcheminement": "BEVY", + "nomCommune": "BEVY" }, { - "codePostal": "12480", - "codeCommune": "12228", - "libelleAcheminement": "ST IZAIRE", - "nomCommune": "ST IZAIRE" + "codePostal": "06750", + "codeCommune": "06003", + "libelleAcheminement": "ANDON", + "nomCommune": "ANDON" }, { - "codePostal": "52500", - "codeCommune": "52257", - "libelleAcheminement": "LAFERTE SUR AMANCE", - "nomCommune": "LAFERTE SUR AMANCE" + "codePostal": "08450", + "codeCommune": "08013", + "libelleAcheminement": "ANGECOURT", + "nomCommune": "ANGECOURT" }, { - "codePostal": "10250", - "codeCommune": "10262", - "libelleAcheminement": "NEUVILLE SUR SEINE", - "nomCommune": "NEUVILLE SUR SEINE" + "codePostal": "19160", + "codeCommune": "19228", + "libelleAcheminement": "ST PANTALEON DE LAPLEAU", + "nomCommune": "ST PANTALEON DE LAPLEAU" }, { - "codePostal": "12230", - "codeCommune": "12231", - "libelleAcheminement": "ST JEAN DU BRUEL", - "nomCommune": "ST JEAN DU BRUEL" + "codePostal": "21310", + "codeCommune": "21071", + "libelleAcheminement": "BEZE", + "nomCommune": "BEZE" }, { - "codePostal": "52170", - "codeCommune": "52265", - "libelleAcheminement": "BAYARD SUR MARNE", - "nomCommune": "BAYARD SUR MARNE" + "codePostal": "06750", + "codeCommune": "06003", + "libelleAcheminement": "ANDON", + "nomCommune": "ANDON" }, { - "codePostal": "10420", - "codeCommune": "10265", - "libelleAcheminement": "LES NOES PRES TROYES", - "nomCommune": "LES NOES PRES TROYES" + "codePostal": "08310", + "codeCommune": "08014", + "libelleAcheminement": "ANNELLES", + "nomCommune": "ANNELLES" }, { - "codePostal": "12250", - "codeCommune": "12232", - "libelleAcheminement": "ST JEAN ET ST PAUL", - "nomCommune": "ST JEAN ET ST PAUL" + "codePostal": "19150", + "codeCommune": "19235", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "52120", - "codeCommune": "52272", - "libelleAcheminement": "LANTY SUR AUBE", - "nomCommune": "LANTY SUR AUBE" + "codePostal": "21130", + "codeCommune": "21074", + "libelleAcheminement": "BILLEY", + "nomCommune": "BILLEY" }, { - "codePostal": "10400", - "codeCommune": "10268", - "libelleAcheminement": "NOGENT SUR SEINE", - "nomCommune": "NOGENT SUR SEINE" + "codePostal": "06160", + "codeCommune": "06004", + "libelleAcheminement": "ANTIBES", + "nomCommune": "ANTIBES" }, { - "codePostal": "12550", - "codeCommune": "12233", - "libelleAcheminement": "ST JUERY", - "nomCommune": "ST JUERY" + "codePostal": "08380", + "codeCommune": "08030", + "libelleAcheminement": "AUGE", + "nomCommune": "AUGE" }, { - "codePostal": "52400", - "codeCommune": "52273", - "libelleAcheminement": "LARIVIERE ARNONCOURT", - "nomCommune": "LARIVIERE ARNONCOURT" + "codePostal": "19310", + "codeCommune": "19239", + "libelleAcheminement": "ST ROBERT", + "nomCommune": "ST ROBERT" }, { - "codePostal": "10170", - "codeCommune": "10274", - "libelleAcheminement": "ORVILLIERS ST JULIEN", - "nomCommune": "ORVILLIERS ST JULIEN" + "codePostal": "21450", + "codeCommune": "21075", + "libelleAcheminement": "BILLY LES CHANCEAUX", + "nomCommune": "BILLY LES CHANCEAUX" }, { - "codePostal": "12370", - "codeCommune": "12249", - "libelleAcheminement": "ST SEVER DU MOUSTIER", - "nomCommune": "ST SEVER DU MOUSTIER" + "codePostal": "06600", + "codeCommune": "06004", + "libelleAcheminement": "ANTIBES", + "nomCommune": "ANTIBES" }, { - "codePostal": "52120", - "codeCommune": "52274", - "libelleAcheminement": "LATRECEY ORMOY SUR AUBE", - "nomCommune": "LATRECEY ORMOY SUR AUBE" + "codePostal": "08400", + "codeCommune": "08031", + "libelleAcheminement": "AURE", + "nomCommune": "AURE" }, { - "codePostal": "10400", - "codeCommune": "10284", - "libelleAcheminement": "PERIGNY LA ROSE", - "nomCommune": "PERIGNY LA ROSE" + "codePostal": "19380", + "codeCommune": "19245", + "libelleAcheminement": "ST SYLVAIN", + "nomCommune": "ST SYLVAIN" }, { - "codePostal": "12400", - "codeCommune": "12251", - "libelleAcheminement": "ST VICTOR ET MELVIEU", - "nomCommune": "ST VICTOR ET MELVIEU" + "codePostal": "21540", + "codeCommune": "21080", + "libelleAcheminement": "BLAISY BAS", + "nomCommune": "BLAISY BAS" }, { - "codePostal": "52120", - "codeCommune": "52274", - "libelleAcheminement": "LATRECEY ORMOY SUR AUBE", - "nomCommune": "LATRECEY ORMOY SUR AUBE" + "codePostal": "06510", + "codeCommune": "06017", + "libelleAcheminement": "BEZAUDUN LES ALPES", + "nomCommune": "BEZAUDUN LES ALPES" }, { - "codePostal": "10500", - "codeCommune": "10285", - "libelleAcheminement": "PERTHES LES BRIENNE", - "nomCommune": "PERTHES LES BRIENNE" + "codePostal": "08210", + "codeCommune": "08034", + "libelleAcheminement": "AUTRECOURT ET POURRON", + "nomCommune": "AUTRECOURT ET POURRON" }, { - "codePostal": "12260", - "codeCommune": "12252", - "libelleAcheminement": "SALLES COURBATIES", - "nomCommune": "SALLES COURBATIES" + "codePostal": "19110", + "codeCommune": "19252", + "libelleAcheminement": "SARROUX ST JULIEN", + "nomCommune": "SARROUX ST JULIEN" }, { - "codePostal": "52190", - "codeCommune": "52285", - "libelleAcheminement": "LEUCHEY", - "nomCommune": "LEUCHEY" + "codePostal": "21320", + "codeCommune": "21082", + "libelleAcheminement": "BLANCEY", + "nomCommune": "BLANCEY" }, { - "codePostal": "10160", - "codeCommune": "10290", - "libelleAcheminement": "PLANTY", - "nomCommune": "PLANTY" + "codePostal": "06510", + "codeCommune": "06033", + "libelleAcheminement": "CARROS", + "nomCommune": "CARROS" }, { - "codePostal": "12700", - "codeCommune": "12257", - "libelleAcheminement": "CAUSSE ET DIEGE", - "nomCommune": "CAUSSE ET DIEGE" + "codePostal": "08190", + "codeCommune": "08044", + "libelleAcheminement": "BALHAM", + "nomCommune": "BALHAM" }, { - "codePostal": "52150", - "codeCommune": "52287", - "libelleAcheminement": "LEVECOURT", - "nomCommune": "LEVECOURT" + "codePostal": "19310", + "codeCommune": "19253", + "libelleAcheminement": "SEGONZAC", + "nomCommune": "SEGONZAC" }, { - "codePostal": "10240", - "codeCommune": "10300", - "libelleAcheminement": "POUGY", - "nomCommune": "POUGY" + "codePostal": "21690", + "codeCommune": "21084", + "libelleAcheminement": "SOURCE SEINE", + "nomCommune": "SOURCE SEINE" }, { - "codePostal": "12800", - "codeCommune": "12262", - "libelleAcheminement": "SAUVETERRE DE ROUERGUE", - "nomCommune": "SAUVETERRE DE ROUERGUE" + "codePostal": "06500", + "codeCommune": "06035", + "libelleAcheminement": "CASTELLAR", + "nomCommune": "CASTELLAR" }, { - "codePostal": "52230", - "codeCommune": "52288", - "libelleAcheminement": "LEZEVILLE", - "nomCommune": "LEZEVILLE" + "codePostal": "08210", + "codeCommune": "08055", + "libelleAcheminement": "BEAUMONT EN ARGONNE", + "nomCommune": "BEAUMONT EN ARGONNE" }, { - "codePostal": "10200", - "codeCommune": "10306", - "libelleAcheminement": "PROVERVILLE", - "nomCommune": "PROVERVILLE" + "codePostal": "19370", + "codeCommune": "19262", + "libelleAcheminement": "SOUDAINE LAVINADIERE", + "nomCommune": "SOUDAINE LAVINADIERE" }, { - "codePostal": "12290", - "codeCommune": "12266", - "libelleAcheminement": "SEGUR", - "nomCommune": "SEGUR" + "codePostal": "21250", + "codeCommune": "21089", + "libelleAcheminement": "BONNENCONTRE", + "nomCommune": "BONNENCONTRE" }, { - "codePostal": "52500", - "codeCommune": "52290", - "libelleAcheminement": "LES LOGES", - "nomCommune": "LES LOGES" + "codePostal": "06390", + "codeCommune": "06039", + "libelleAcheminement": "CHATEAUNEUF VILLEVIEILLE", + "nomCommune": "CHATEAUNEUF VILLEVIEILLE" }, { - "codePostal": "10500", - "codeCommune": "10315", - "libelleAcheminement": "RANCES", - "nomCommune": "RANCES" + "codePostal": "08240", + "codeCommune": "08057", + "libelleAcheminement": "BELLEVILLE ET CHATILLON SUR BAR", + "nomCommune": "BELLEVILLE ET CHATILLON SUR BAR" }, { - "codePostal": "12320", - "codeCommune": "12268", - "libelleAcheminement": "SENERGUES", - "nomCommune": "SENERGUES" + "codePostal": "19170", + "codeCommune": "19265", + "libelleAcheminement": "TARNAC", + "nomCommune": "TARNAC" }, { - "codePostal": "52250", - "codeCommune": "52292", - "libelleAcheminement": "LONGEAU PERCEY", - "nomCommune": "LONGEAU PERCEY" + "codePostal": "21350", + "codeCommune": "21097", + "libelleAcheminement": "BOUSSEY", + "nomCommune": "BOUSSEY" }, { - "codePostal": "10290", - "codeCommune": "10318", - "libelleAcheminement": "RIGNY LA NONNEUSE", - "nomCommune": "RIGNY LA NONNEUSE" + "codePostal": "06420", + "codeCommune": "06042", + "libelleAcheminement": "CLANS", + "nomCommune": "CLANS" }, { - "codePostal": "12150", - "codeCommune": "12270", - "libelleAcheminement": "SEVERAC D AVEYRON", - "nomCommune": "SEVERAC D AVEYRON" + "codePostal": "08240", + "codeCommune": "08059", + "libelleAcheminement": "BELVAL BOIS DES DAMES", + "nomCommune": "BELVAL BOIS DES DAMES" }, { - "codePostal": "52000", - "codeCommune": "52297", - "libelleAcheminement": "LUZY SUR MARNE", - "nomCommune": "LUZY SUR MARNE" + "codePostal": "19230", + "codeCommune": "19270", + "libelleAcheminement": "TROCHE", + "nomCommune": "TROCHE" }, { - "codePostal": "10160", - "codeCommune": "10319", - "libelleAcheminement": "RIGNY LE FERRON", - "nomCommune": "RIGNY LE FERRON" + "codePostal": "21400", + "codeCommune": "21104", + "libelleAcheminement": "BREMUR ET VAUROIS", + "nomCommune": "BREMUR ET VAUROIS" }, { - "codePostal": "12360", - "codeCommune": "12275", - "libelleAcheminement": "TAURIAC DE CAMARES", - "nomCommune": "TAURIAC DE CAMARES" + "codePostal": "06390", + "codeCommune": "06043", + "libelleAcheminement": "COARAZE", + "nomCommune": "COARAZE" }, { - "codePostal": "52800", - "codeCommune": "52305", - "libelleAcheminement": "MANDRES LA COTE", - "nomCommune": "MANDRES LA COTE" + "codePostal": "08290", + "codeCommune": "08069", + "libelleAcheminement": "BLANCHEFOSSE ET BAY", + "nomCommune": "BLANCHEFOSSE ET BAY" }, { - "codePostal": "10280", - "codeCommune": "10320", - "libelleAcheminement": "RILLY STE SYRE", - "nomCommune": "RILLY STE SYRE" + "codePostal": "19200", + "codeCommune": "19277", + "libelleAcheminement": "VALIERGUES", + "nomCommune": "VALIERGUES" }, { - "codePostal": "12800", - "codeCommune": "12276", - "libelleAcheminement": "TAURIAC DE NAUCELLE", - "nomCommune": "TAURIAC DE NAUCELLE" + "codePostal": "21490", + "codeCommune": "21111", + "libelleAcheminement": "BROGNON", + "nomCommune": "BROGNON" }, { - "codePostal": "52320", - "codeCommune": "52310", - "libelleAcheminement": "MARBEVILLE", - "nomCommune": "MARBEVILLE" + "codePostal": "06670", + "codeCommune": "06046", + "libelleAcheminement": "COLOMARS", + "nomCommune": "COLOMARS" }, { - "codePostal": "10100", - "codeCommune": "10323", - "libelleAcheminement": "ROMILLY SUR SEINE", - "nomCommune": "ROMILLY SUR SEINE" + "codePostal": "08290", + "codeCommune": "08069", + "libelleAcheminement": "BLANCHEFOSSE ET BAY", + "nomCommune": "BLANCHEFOSSE ET BAY" }, { - "codePostal": "12200", - "codeCommune": "12281", - "libelleAcheminement": "TOULONJAC", - "nomCommune": "TOULONJAC" + "codePostal": "21450", + "codeCommune": "21011", + "libelleAcheminement": "AMPILLY LES BORDES", + "nomCommune": "AMPILLY LES BORDES" }, { - "codePostal": "52360", - "codeCommune": "52311", - "libelleAcheminement": "MARCILLY EN BASSIGNY", - "nomCommune": "MARCILLY EN BASSIGNY" + "codePostal": "21400", + "codeCommune": "21115", + "libelleAcheminement": "BUNCEY", + "nomCommune": "BUNCEY" }, { - "codePostal": "10500", - "codeCommune": "10326", - "libelleAcheminement": "ROSNAY L HOPITAL", - "nomCommune": "ROSNAY L HOPITAL" + "codePostal": "06620", + "codeCommune": "06049", + "libelleAcheminement": "COURMES", + "nomCommune": "COURMES" }, { - "codePostal": "12720", - "codeCommune": "12293", - "libelleAcheminement": "VEYREAU", - "nomCommune": "VEYREAU" + "codePostal": "08240", + "codeCommune": "08075", + "libelleAcheminement": "BOULT AUX BOIS", + "nomCommune": "BOULT AUX BOIS" }, { - "codePostal": "52200", - "codeCommune": "52312", - "libelleAcheminement": "MARDOR", - "nomCommune": "MARDOR" + "codePostal": "21700", + "codeCommune": "21017", + "libelleAcheminement": "ARCENANT", + "nomCommune": "ARCENANT" }, { - "codePostal": "10800", - "codeCommune": "10329", - "libelleAcheminement": "ROUILLY ST LOUP", - "nomCommune": "ROUILLY ST LOUP" + "codePostal": "21510", + "codeCommune": "21117", + "libelleAcheminement": "BUSSEAUT", + "nomCommune": "BUSSEAUT" }, { - "codePostal": "12200", - "codeCommune": "12300", - "libelleAcheminement": "VILLEFRANCHE DE ROUERGUE", - "nomCommune": "VILLEFRANCHE DE ROUERGUE" + "codePostal": "06260", + "codeCommune": "06051", + "libelleAcheminement": "LA CROIX SUR ROUDOULE", + "nomCommune": "LA CROIX SUR ROUDOULE" }, { - "codePostal": "52700", - "codeCommune": "52313", - "libelleAcheminement": "MAREILLES", - "nomCommune": "MAREILLES" + "codePostal": "08400", + "codeCommune": "08077", + "libelleAcheminement": "BOURCQ", + "nomCommune": "BOURCQ" }, { - "codePostal": "10800", - "codeCommune": "10329", - "libelleAcheminement": "ROUILLY ST LOUP", - "nomCommune": "ROUILLY ST LOUP" + "codePostal": "21410", + "codeCommune": "21018", + "libelleAcheminement": "ARCEY", + "nomCommune": "ARCEY" }, { - "codePostal": "12110", - "codeCommune": "12305", - "libelleAcheminement": "VIVIEZ", - "nomCommune": "VIVIEZ" + "codePostal": "21580", + "codeCommune": "21118", + "libelleAcheminement": "BUSSEROTTE ET MONTENAILLE", + "nomCommune": "BUSSEROTTE ET MONTENAILLE" }, { - "codePostal": "52400", - "codeCommune": "52318", - "libelleAcheminement": "MELAY", - "nomCommune": "MELAY" + "codePostal": "06470", + "codeCommune": "06053", + "libelleAcheminement": "DALUIS", + "nomCommune": "DALUIS" }, { - "codePostal": "10410", - "codeCommune": "10332", - "libelleAcheminement": "RUVIGNY", - "nomCommune": "RUVIGNY" + "codePostal": "08120", + "codeCommune": "08081", + "libelleAcheminement": "BOGNY SUR MEUSE", + "nomCommune": "BOGNY SUR MEUSE" }, { - "codePostal": "13290", - "codeCommune": "13001", - "libelleAcheminement": "AIX EN PROVENCE", - "nomCommune": "AIX EN PROVENCE" + "codePostal": "21340", + "codeCommune": "21032", + "libelleAcheminement": "AUBIGNY LA RONCE", + "nomCommune": "AUBIGNY LA RONCE" }, { - "codePostal": "52310", - "codeCommune": "52322", - "libelleAcheminement": "MEURES", - "nomCommune": "MEURES" + "codePostal": "21360", + "codeCommune": "21120", + "libelleAcheminement": "LA BUSSIERE SUR OUCHE", + "nomCommune": "LA BUSSIERE SUR OUCHE" }, { - "codePostal": "10180", - "codeCommune": "10336", - "libelleAcheminement": "ST BENOIT SUR SEINE", - "nomCommune": "ST BENOIT SUR SEINE" + "codePostal": "06500", + "codeCommune": "06067", + "libelleAcheminement": "GORBIO", + "nomCommune": "GORBIO" }, { - "codePostal": "13104", - "codeCommune": "13004", - "libelleAcheminement": "ARLES", - "nomCommune": "ARLES" + "codePostal": "08110", + "codeCommune": "08090", + "libelleAcheminement": "CARIGNAN", + "nomCommune": "CARIGNAN" }, { - "codePostal": "52320", - "codeCommune": "52326", - "libelleAcheminement": "MIRBEL", - "nomCommune": "MIRBEL" + "codePostal": "21540", + "codeCommune": "21033", + "libelleAcheminement": "AUBIGNY LES SOMBERNON", + "nomCommune": "AUBIGNY LES SOMBERNON" }, { - "codePostal": "10350", - "codeCommune": "10339", - "libelleAcheminement": "ST FLAVY", - "nomCommune": "ST FLAVY" + "codePostal": "21120", + "codeCommune": "21127", + "libelleAcheminement": "CHAIGNAY", + "nomCommune": "CHAIGNAY" }, { - "codePostal": "13123", - "codeCommune": "13004", - "libelleAcheminement": "ARLES", - "nomCommune": "ARLES" + "codePostal": "06130", + "codeCommune": "06069", + "libelleAcheminement": "GRASSE", + "nomCommune": "GRASSE" }, { - "codePostal": "52220", - "codeCommune": "52331", - "libelleAcheminement": "LA PORTE DU DER", - "nomCommune": "LA PORTE DU DER" + "codePostal": "08430", + "codeCommune": "08095", + "libelleAcheminement": "CHAGNY", + "nomCommune": "CHAGNY" }, { - "codePostal": "10120", - "codeCommune": "10340", - "libelleAcheminement": "ST GERMAIN", - "nomCommune": "ST GERMAIN" + "codePostal": "21460", + "codeCommune": "21047", + "libelleAcheminement": "BARD LES EPOISSES", + "nomCommune": "BARD LES EPOISSES" }, { - "codePostal": "13129", - "codeCommune": "13004", - "libelleAcheminement": "ARLES", - "nomCommune": "ARLES" + "codePostal": "21220", + "codeCommune": "21132", + "libelleAcheminement": "CHAMBOEUF", + "nomCommune": "CHAMBOEUF" }, { - "codePostal": "52700", - "codeCommune": "52335", - "libelleAcheminement": "MONTOT SUR ROGNON", - "nomCommune": "MONTOT SUR ROGNON" + "codePostal": "06130", + "codeCommune": "06069", + "libelleAcheminement": "GRASSE", + "nomCommune": "GRASSE" }, { - "codePostal": "10330", - "codeCommune": "10346", - "libelleAcheminement": "ST LEGER SOUS MARGERIE", - "nomCommune": "ST LEGER SOUS MARGERIE" + "codePostal": "08400", + "codeCommune": "08097", + "libelleAcheminement": "CHALLERANGE", + "nomCommune": "CHALLERANGE" }, { - "codePostal": "13200", - "codeCommune": "13004", - "libelleAcheminement": "ARLES", - "nomCommune": "ARLES" + "codePostal": "21910", + "codeCommune": "21048", + "libelleAcheminement": "BARGES", + "nomCommune": "BARGES" }, { - "codePostal": "52360", - "codeCommune": "52348", - "libelleAcheminement": "NEUILLY L EVEQUE", - "nomCommune": "NEUILLY L EVEQUE" + "codePostal": "21690", + "codeCommune": "21141", + "libelleAcheminement": "CHAMPRENAULT", + "nomCommune": "CHAMPRENAULT" }, { - "codePostal": "10280", - "codeCommune": "10353", - "libelleAcheminement": "ST MESMIN", - "nomCommune": "ST MESMIN" + "codePostal": "06620", + "codeCommune": "06070", + "libelleAcheminement": "GREOLIERES", + "nomCommune": "GREOLIERES" }, { - "codePostal": "13280", - "codeCommune": "13004", - "libelleAcheminement": "ARLES", - "nomCommune": "ARLES" + "codePostal": "08600", + "codeCommune": "08106", + "libelleAcheminement": "CHARNOIS", + "nomCommune": "CHARNOIS" }, { - "codePostal": "52240", - "codeCommune": "52358", - "libelleAcheminement": "NOYERS", - "nomCommune": "NOYERS" + "codePostal": "21490", + "codeCommune": "21059", + "libelleAcheminement": "BELLEFOND", + "nomCommune": "BELLEFOND" }, { - "codePostal": "10170", - "codeCommune": "10356", - "libelleAcheminement": "ST OULPH", - "nomCommune": "ST OULPH" + "codePostal": "21440", + "codeCommune": "21142", + "libelleAcheminement": "CHANCEAUX", + "nomCommune": "CHANCEAUX" }, { - "codePostal": "13930", - "codeCommune": "13006", - "libelleAcheminement": "AUREILLE", - "nomCommune": "AUREILLE" + "codePostal": "06260", + "codeCommune": "06076", + "libelleAcheminement": "LIEUCHE", + "nomCommune": "LIEUCHE" }, { - "codePostal": "52110", - "codeCommune": "52359", - "libelleAcheminement": "NULLY", - "nomCommune": "NULLY" + "codePostal": "08300", + "codeCommune": "08111", + "libelleAcheminement": "LE CHATELET SUR RETOURNE", + "nomCommune": "LE CHATELET SUR RETOURNE" }, { - "codePostal": "10400", - "codeCommune": "10367", - "libelleAcheminement": "LA SAULSOTTE", - "nomCommune": "LA SAULSOTTE" + "codePostal": "21510", + "codeCommune": "21061", + "libelleAcheminement": "BELLENOD SUR SEINE", + "nomCommune": "BELLENOD SUR SEINE" }, { - "codePostal": "13100", - "codeCommune": "13012", - "libelleAcheminement": "BEAURECUEIL", - "nomCommune": "BEAURECUEIL" + "codePostal": "21350", + "codeCommune": "21147", + "libelleAcheminement": "CHARNY", + "nomCommune": "CHARNY" }, { - "codePostal": "52360", - "codeCommune": "52362", - "libelleAcheminement": "ORBIGNY AU MONT", - "nomCommune": "ORBIGNY AU MONT" + "codePostal": "06200", + "codeCommune": "06088", + "libelleAcheminement": "NICE", + "nomCommune": "NICE" }, { - "codePostal": "10600", - "codeCommune": "10368", - "libelleAcheminement": "SAVIERES", - "nomCommune": "SAVIERES" + "codePostal": "08220", + "codeCommune": "08113", + "libelleAcheminement": "CHAUMONT PORCIEN", + "nomCommune": "CHAUMONT PORCIEN" }, { - "codePostal": "13150", - "codeCommune": "13017", - "libelleAcheminement": "BOULBON", - "nomCommune": "BOULBON" + "codePostal": "21290", + "codeCommune": "21063", + "libelleAcheminement": "BENEUVRE", + "nomCommune": "BENEUVRE" }, { - "codePostal": "52230", - "codeCommune": "52376", - "libelleAcheminement": "PANSEY", - "nomCommune": "PANSEY" + "codePostal": "21400", + "codeCommune": "21149", + "libelleAcheminement": "CHARREY SUR SEINE", + "nomCommune": "CHARREY SUR SEINE" }, { - "codePostal": "10700", - "codeCommune": "10369", - "libelleAcheminement": "SEMOINE", - "nomCommune": "SEMOINE" + "codePostal": "06200", + "codeCommune": "06088", + "libelleAcheminement": "NICE", + "nomCommune": "NICE" }, { - "codePostal": "13620", - "codeCommune": "13021", - "libelleAcheminement": "CARRY LE ROUET", - "nomCommune": "CARRY LE ROUET" + "codePostal": "08220", + "codeCommune": "08113", + "libelleAcheminement": "CHAUMONT PORCIEN", + "nomCommune": "CHAUMONT PORCIEN" }, { - "codePostal": "52300", - "codeCommune": "52378", - "libelleAcheminement": "PAROY SUR SAULX", - "nomCommune": "PAROY SUR SAULX" + "codePostal": "21310", + "codeCommune": "21072", + "libelleAcheminement": "BEZOUOTTE", + "nomCommune": "BEZOUOTTE" }, { - "codePostal": "10700", - "codeCommune": "10379", - "libelleAcheminement": "TORCY LE GRAND", - "nomCommune": "TORCY LE GRAND" + "codePostal": "21320", + "codeCommune": "21152", + "libelleAcheminement": "CHATEAUNEUF", + "nomCommune": "CHATEAUNEUF" }, { - "codePostal": "13220", - "codeCommune": "13026", - "libelleAcheminement": "CHATEAUNEUF LES MARTIGUES", - "nomCommune": "CHATEAUNEUF LES MARTIGUES" + "codePostal": "06580", + "codeCommune": "06090", + "libelleAcheminement": "PEGOMAS", + "nomCommune": "PEGOMAS" }, { - "codePostal": "52160", - "codeCommune": "52384", - "libelleAcheminement": "PERROGNEY LES FONTAINES", - "nomCommune": "PERROGNEY LES FONTAINES" + "codePostal": "08450", + "codeCommune": "08115", + "libelleAcheminement": "CHEMERY CHEHERY", + "nomCommune": "CHEMERY CHEHERY" }, { - "codePostal": "10290", - "codeCommune": "10383", - "libelleAcheminement": "TRANCAULT", - "nomCommune": "TRANCAULT" + "codePostal": "21270", + "codeCommune": "21076", + "libelleAcheminement": "BINGES", + "nomCommune": "BINGES" }, { - "codePostal": "13600", - "codeCommune": "13028", - "libelleAcheminement": "LA CIOTAT", - "nomCommune": "LA CIOTAT" + "codePostal": "21610", + "codeCommune": "21158", + "libelleAcheminement": "CHAUME ET COURCHAMP", + "nomCommune": "CHAUME ET COURCHAMP" }, { - "codePostal": "52190", - "codeCommune": "52405", - "libelleAcheminement": "LE MONTSAUGEONNAIS", - "nomCommune": "LE MONTSAUGEONNAIS" + "codePostal": "06440", + "codeCommune": "06091", + "libelleAcheminement": "PEILLE", + "nomCommune": "PEILLE" }, { - "codePostal": "10150", - "codeCommune": "10391", - "libelleAcheminement": "VAILLY", - "nomCommune": "VAILLY" + "codePostal": "08390", + "codeCommune": "08116", + "libelleAcheminement": "BAIRON ET SES ENVIRONS", + "nomCommune": "BAIRON ET SES ENVIRONS" }, { - "codePostal": "13250", - "codeCommune": "13029", - "libelleAcheminement": "CORNILLON CONFOUX", - "nomCommune": "CORNILLON CONFOUX" + "codePostal": "21540", + "codeCommune": "21081", + "libelleAcheminement": "BLAISY HAUT", + "nomCommune": "BLAISY HAUT" }, { - "codePostal": "52170", - "codeCommune": "52414", - "libelleAcheminement": "RACHECOURT SUR MARNE", - "nomCommune": "RACHECOURT SUR MARNE" + "codePostal": "21260", + "codeCommune": "21163", + "libelleAcheminement": "CHAZEUIL", + "nomCommune": "CHAZEUIL" }, { - "codePostal": "10140", - "codeCommune": "10397", - "libelleAcheminement": "VAUCHONVILLIERS", - "nomCommune": "VAUCHONVILLIERS" + "codePostal": "06530", + "codeCommune": "06095", + "libelleAcheminement": "PEYMEINADE", + "nomCommune": "PEYMEINADE" }, { - "codePostal": "13630", - "codeCommune": "13036", - "libelleAcheminement": "EYRAGUES", - "nomCommune": "EYRAGUES" + "codePostal": "08460", + "codeCommune": "08124", + "libelleAcheminement": "CLAVY WARBY", + "nomCommune": "CLAVY WARBY" }, { - "codePostal": "52370", - "codeCommune": "52419", - "libelleAcheminement": "RENNEPONT", - "nomCommune": "RENNEPONT" + "codePostal": "21440", + "codeCommune": "21085", + "libelleAcheminement": "BLIGNY LE SEC", + "nomCommune": "BLIGNY LE SEC" }, { - "codePostal": "10240", - "codeCommune": "10398", - "libelleAcheminement": "VAUCOGNE", - "nomCommune": "VAUCOGNE" + "codePostal": "21540", + "codeCommune": "21168", + "libelleAcheminement": "CHEVANNAY", + "nomCommune": "CHEVANNAY" }, { - "codePostal": "13120", - "codeCommune": "13041", - "libelleAcheminement": "GARDANNE", - "nomCommune": "GARDANNE" + "codePostal": "06420", + "codeCommune": "06110", + "libelleAcheminement": "ROUBION", + "nomCommune": "ROUBION" }, { - "codePostal": "52190", - "codeCommune": "52425", - "libelleAcheminement": "RIVIERE LES FOSSES", - "nomCommune": "RIVIERE LES FOSSES" + "codePostal": "08250", + "codeCommune": "08128", + "libelleAcheminement": "CONDE LES AUTRY", + "nomCommune": "CONDE LES AUTRY" }, { - "codePostal": "10700", - "codeCommune": "10400", - "libelleAcheminement": "VAUPOISSON", - "nomCommune": "VAUPOISSON" + "codePostal": "21520", + "codeCommune": "21090", + "libelleAcheminement": "BOUDREVILLE", + "nomCommune": "BOUDREVILLE" }, { - "codePostal": "13180", - "codeCommune": "13043", - "libelleAcheminement": "GIGNAC LA NERTHE", - "nomCommune": "GIGNAC LA NERTHE" + "codePostal": "21250", + "codeCommune": "21189", + "libelleAcheminement": "CORBERON", + "nomCommune": "CORBERON" }, { - "codePostal": "52330", - "codeCommune": "52426", - "libelleAcheminement": "RIZAUCOURT BUCHEY", - "nomCommune": "RIZAUCOURT BUCHEY" + "codePostal": "06420", + "codeCommune": "06111", + "libelleAcheminement": "ROURE", + "nomCommune": "ROURE" }, { - "codePostal": "10140", - "codeCommune": "10401", - "libelleAcheminement": "VENDEUVRE SUR BARSE", - "nomCommune": "VENDEUVRE SUR BARSE" + "codePostal": "08300", + "codeCommune": "08133", + "libelleAcheminement": "COUCY", + "nomCommune": "COUCY" }, { - "codePostal": "13690", - "codeCommune": "13045", - "libelleAcheminement": "GRAVESON", - "nomCommune": "GRAVESON" + "codePostal": "21360", + "codeCommune": "21091", + "libelleAcheminement": "BOUHEY", + "nomCommune": "BOUHEY" }, { - "codePostal": "52330", - "codeCommune": "52426", - "libelleAcheminement": "RIZAUCOURT BUCHEY", - "nomCommune": "RIZAUCOURT BUCHEY" + "codePostal": "21190", + "codeCommune": "21190", + "libelleAcheminement": "CORCELLES LES ARTS", + "nomCommune": "CORCELLES LES ARTS" }, { - "codePostal": "10200", - "codeCommune": "10403", - "libelleAcheminement": "VERNONVILLIERS", - "nomCommune": "VERNONVILLIERS" + "codePostal": "06500", + "codeCommune": "06113", + "libelleAcheminement": "STE AGNES", + "nomCommune": "STE AGNES" }, { - "codePostal": "13490", - "codeCommune": "13048", - "libelleAcheminement": "JOUQUES", - "nomCommune": "JOUQUES" + "codePostal": "08160", + "codeCommune": "08140", + "libelleAcheminement": "DOM LE MESNIL", + "nomCommune": "DOM LE MESNIL" }, { - "codePostal": "52260", - "codeCommune": "52432", - "libelleAcheminement": "ROLAMPONT", - "nomCommune": "ROLAMPONT" + "codePostal": "21250", + "codeCommune": "21095", + "libelleAcheminement": "BOUSSELANGE", + "nomCommune": "BOUSSELANGE" }, { - "codePostal": "10240", - "codeCommune": "10405", - "libelleAcheminement": "VERRICOURT", - "nomCommune": "VERRICOURT" + "codePostal": "21910", + "codeCommune": "21191", + "libelleAcheminement": "CORCELLES LES CITEAUX", + "nomCommune": "CORCELLES LES CITEAUX" }, { - "codePostal": "13410", - "codeCommune": "13050", - "libelleAcheminement": "LAMBESC", - "nomCommune": "LAMBESC" + "codePostal": "06660", + "codeCommune": "06120", + "libelleAcheminement": "ST ETIENNE DE TINEE", + "nomCommune": "ST ETIENNE DE TINEE" }, { - "codePostal": "52200", - "codeCommune": "52449", - "libelleAcheminement": "SAINTS GEOSMES", - "nomCommune": "SAINTS GEOSMES" + "codePostal": "08350", + "codeCommune": "08142", + "libelleAcheminement": "DONCHERY", + "nomCommune": "DONCHERY" }, { - "codePostal": "10290", - "codeCommune": "10410", - "libelleAcheminement": "VILLADIN", - "nomCommune": "VILLADIN" + "codePostal": "21260", + "codeCommune": "21096", + "libelleAcheminement": "BOUSSENOIS", + "nomCommune": "BOUSSENOIS" }, { - "codePostal": "13370", - "codeCommune": "13053", - "libelleAcheminement": "MALLEMORT", - "nomCommune": "MALLEMORT" + "codePostal": "21460", + "codeCommune": "21198", + "libelleAcheminement": "CORROMBLES", + "nomCommune": "CORROMBLES" }, { - "codePostal": "52200", - "codeCommune": "52457", - "libelleAcheminement": "ST VALLIER SUR MARNE", - "nomCommune": "ST VALLIER SUR MARNE" + "codePostal": "06640", + "codeCommune": "06122", + "libelleAcheminement": "ST JEANNET", + "nomCommune": "ST JEANNET" }, { - "codePostal": "10260", - "codeCommune": "10419", - "libelleAcheminement": "VILLEMOYENNE", - "nomCommune": "VILLEMOYENNE" + "codePostal": "08220", + "codeCommune": "08146", + "libelleAcheminement": "DRAIZE", + "nomCommune": "DRAIZE" }, { - "codePostal": "13500", - "codeCommune": "13056", - "libelleAcheminement": "MARTIGUES", - "nomCommune": "MARTIGUES" + "codePostal": "21560", + "codeCommune": "21105", + "libelleAcheminement": "BRESSEY SUR TILLE", + "nomCommune": "BRESSEY SUR TILLE" }, { - "codePostal": "52500", - "codeCommune": "52464", - "libelleAcheminement": "SAULLES", - "nomCommune": "SAULLES" + "codePostal": "21320", + "codeCommune": "21210", + "libelleAcheminement": "CREANCEY", + "nomCommune": "CREANCEY" }, { - "codePostal": "10370", - "codeCommune": "10420", - "libelleAcheminement": "VILLENAUXE LA GRANDE", - "nomCommune": "VILLENAUXE LA GRANDE" + "codePostal": "06470", + "codeCommune": "06125", + "libelleAcheminement": "ST MARTIN D ENTRAUNES", + "nomCommune": "ST MARTIN D ENTRAUNES" }, { - "codePostal": "13500", - "codeCommune": "13056", - "libelleAcheminement": "MARTIGUES", - "nomCommune": "MARTIGUES" + "codePostal": "08260", + "codeCommune": "08154", + "libelleAcheminement": "ESTREBAY", + "nomCommune": "ESTREBAY" }, { - "codePostal": "52140", - "codeCommune": "52465", - "libelleAcheminement": "SAULXURES", - "nomCommune": "SAULXURES" + "codePostal": "21570", + "codeCommune": "21109", + "libelleAcheminement": "BRION SUR OURCE BELAN", + "nomCommune": "BRION SUR OURCE" }, { - "codePostal": "10700", - "codeCommune": "10430", - "libelleAcheminement": "VILLIERS HERBISSE", - "nomCommune": "VILLIERS HERBISSE" + "codePostal": "21120", + "codeCommune": "21211", + "libelleAcheminement": "CRECEY SUR TILLE", + "nomCommune": "CRECEY SUR TILLE" }, { - "codePostal": "13103", - "codeCommune": "13057", - "libelleAcheminement": "MAS BLANC DES ALPILLES", - "nomCommune": "MAS BLANC DES ALPILLES" + "codePostal": "06670", + "codeCommune": "06126", + "libelleAcheminement": "ST MARTIN DU VAR", + "nomCommune": "ST MARTIN DU VAR" }, { - "codePostal": "52150", - "codeCommune": "52476", - "libelleAcheminement": "SOMMERECOURT", - "nomCommune": "SOMMERECOURT" + "codePostal": "08400", + "codeCommune": "08164", + "libelleAcheminement": "FALAISE", + "nomCommune": "FALAISE" }, { - "codePostal": "10210", - "codeCommune": "10431", - "libelleAcheminement": "VILLIERS LE BOIS", - "nomCommune": "VILLIERS LE BOIS" + "codePostal": "21150", + "codeCommune": "21122", + "libelleAcheminement": "BUSSY LE GRAND", + "nomCommune": "BUSSY LE GRAND" }, { - "codePostal": "13140", - "codeCommune": "13063", - "libelleAcheminement": "MIRAMAS", - "nomCommune": "MIRAMAS" + "codePostal": "21500", + "codeCommune": "21212", + "libelleAcheminement": "CREPAND", + "nomCommune": "CREPAND" }, { - "codePostal": "52400", - "codeCommune": "52483", - "libelleAcheminement": "SOYERS", - "nomCommune": "SOYERS" + "codePostal": "06460", + "codeCommune": "06130", + "libelleAcheminement": "ST VALLIER DE THIEY", + "nomCommune": "ST VALLIER DE THIEY" }, { - "codePostal": "10700", - "codeCommune": "10436", - "libelleAcheminement": "VINETS", - "nomCommune": "VINETS" + "codePostal": "08270", + "codeCommune": "08165", + "libelleAcheminement": "FAUX", + "nomCommune": "FAUX" }, { - "codePostal": "13330", - "codeCommune": "13069", - "libelleAcheminement": "PELISSANNE", - "nomCommune": "PELISSANNE" + "codePostal": "21430", + "codeCommune": "21124", + "libelleAcheminement": "CENSEREY", + "nomCommune": "CENSEREY" }, { - "codePostal": "52230", - "codeCommune": "52491", - "libelleAcheminement": "THONNANCE LES MOULINS", - "nomCommune": "THONNANCE LES MOULINS" + "codePostal": "21360", + "codeCommune": "21214", + "libelleAcheminement": "CRUGEY", + "nomCommune": "CRUGEY" }, { - "codePostal": "10160", - "codeCommune": "10444", - "libelleAcheminement": "VULAINES", - "nomCommune": "VULAINES" + "codePostal": "06910", + "codeCommune": "06135", + "libelleAcheminement": "SIGALE", + "nomCommune": "SIGALE" }, { - "codePostal": "13860", - "codeCommune": "13074", - "libelleAcheminement": "PEYROLLES EN PROVENCE", - "nomCommune": "PEYROLLES EN PROVENCE" + "codePostal": "08370", + "codeCommune": "08168", + "libelleAcheminement": "LA FERTE SUR CHIERS", + "nomCommune": "LA FERTE SUR CHIERS" }, { - "codePostal": "52230", - "codeCommune": "52491", - "libelleAcheminement": "THONNANCE LES MOULINS", - "nomCommune": "THONNANCE LES MOULINS" + "codePostal": "21210", + "codeCommune": "21139", + "libelleAcheminement": "CHAMPEAU EN MORVAN", + "nomCommune": "CHAMPEAU EN MORVAN" }, { - "codePostal": "11320", - "codeCommune": "11002", - "libelleAcheminement": "AIROUX", - "nomCommune": "AIROUX" + "codePostal": "21230", + "codeCommune": "21222", + "libelleAcheminement": "CUSSY LE CHATEL", + "nomCommune": "CUSSY LE CHATEL" }, { - "codePostal": "13340", - "codeCommune": "13081", - "libelleAcheminement": "ROGNAC", - "nomCommune": "ROGNAC" + "codePostal": "06530", + "codeCommune": "06140", + "libelleAcheminement": "LE TIGNET", + "nomCommune": "LE TIGNET" }, { - "codePostal": "52500", - "codeCommune": "52503", - "libelleAcheminement": "VALLEROY", - "nomCommune": "VALLEROY" + "codePostal": "08200", + "codeCommune": "08170", + "libelleAcheminement": "FLEIGNEUX", + "nomCommune": "FLEIGNEUX" }, { - "codePostal": "11300", - "codeCommune": "11003", - "libelleAcheminement": "AJAC", - "nomCommune": "AJAC" + "codePostal": "21690", + "codeCommune": "21144", + "libelleAcheminement": "CHARENCEY", + "nomCommune": "CHARENCEY" }, { - "codePostal": "13840", - "codeCommune": "13082", - "libelleAcheminement": "ROGNES", - "nomCommune": "ROGNES" + "codePostal": "21121", + "codeCommune": "21223", + "libelleAcheminement": "DAIX", + "nomCommune": "DAIX" }, { - "codePostal": "52000", - "codeCommune": "52514", - "libelleAcheminement": "VERBIESLES", - "nomCommune": "VERBIESLES" + "codePostal": "06450", + "codeCommune": "06151", + "libelleAcheminement": "UTELLE", + "nomCommune": "UTELLE" }, { - "codePostal": "11240", - "codeCommune": "11004", - "libelleAcheminement": "ALAIGNE", - "nomCommune": "ALAIGNE" + "codePostal": "08160", + "codeCommune": "08173", + "libelleAcheminement": "FLIZE", + "nomCommune": "FLIZE" }, { - "codePostal": "13360", - "codeCommune": "13086", - "libelleAcheminement": "ROQUEVAIRE", - "nomCommune": "ROQUEVAIRE" + "codePostal": "21610", + "codeCommune": "21158", + "libelleAcheminement": "CHAUME ET COURCHAMP", + "nomCommune": "CHAUME ET COURCHAMP" }, { - "codePostal": "52700", - "codeCommune": "52517", - "libelleAcheminement": "VESAIGNES SOUS LAFAUCHE", - "nomCommune": "VESAIGNES SOUS LAFAUCHE" + "codePostal": "21220", + "codeCommune": "21228", + "libelleAcheminement": "DETAIN ET BRUANT", + "nomCommune": "DETAIN ET BRUANT" }, { - "codePostal": "11290", - "codeCommune": "11005", - "libelleAcheminement": "ALAIRAC", - "nomCommune": "ALAIRAC" + "codePostal": "06430", + "codeCommune": "06163", + "libelleAcheminement": "TENDE", + "nomCommune": "TENDE" }, { - "codePostal": "13740", - "codeCommune": "13088", - "libelleAcheminement": "LE ROVE", - "nomCommune": "LE ROVE" + "codePostal": "08290", + "codeCommune": "08182", + "libelleAcheminement": "LE FRETY", + "nomCommune": "LE FRETY" }, { - "codePostal": "52160", - "codeCommune": "52526", - "libelleAcheminement": "VILLARS SANTENOGE", - "nomCommune": "VILLARS SANTENOGE" + "codePostal": "21450", + "codeCommune": "21160", + "libelleAcheminement": "CHAUME LES BAIGNEUX", + "nomCommune": "CHAUME LES BAIGNEUX" }, { - "codePostal": "11360", - "codeCommune": "11006", - "libelleAcheminement": "ALBAS", - "nomCommune": "ALBAS" + "codePostal": "21270", + "codeCommune": "21233", + "libelleAcheminement": "DRAMBON", + "nomCommune": "DRAMBON" }, { - "codePostal": "13460", - "codeCommune": "13096", - "libelleAcheminement": "SAINTES MARIES DE LA MER", - "nomCommune": "SAINTES MARIES DE LA MER" + "codePostal": "07440", + "codeCommune": "07007", + "libelleAcheminement": "ALBOUSSIERE", + "nomCommune": "ALBOUSSIERE" }, { - "codePostal": "52160", - "codeCommune": "52526", - "libelleAcheminement": "VILLARS SANTENOGE", - "nomCommune": "VILLARS SANTENOGE" + "codePostal": "08600", + "codeCommune": "08183", + "libelleAcheminement": "FROMELENNES", + "nomCommune": "FROMELENNES" }, { - "codePostal": "11170", - "codeCommune": "11009", - "libelleAcheminement": "ALZONNE", - "nomCommune": "ALZONNE" + "codePostal": "21700", + "codeCommune": "21162", + "libelleAcheminement": "CHAUX", + "nomCommune": "CHAUX" }, { - "codePostal": "13310", - "codeCommune": "13097", - "libelleAcheminement": "ST MARTIN DE CRAU", - "nomCommune": "ST MARTIN DE CRAU" + "codePostal": "21540", + "codeCommune": "21234", + "libelleAcheminement": "DREE", + "nomCommune": "DREE" }, { - "codePostal": "52190", - "codeCommune": "52529", - "libelleAcheminement": "VILLEGUSIEN LE LAC", - "nomCommune": "VILLEGUSIEN LE LAC" + "codePostal": "07530", + "codeCommune": "07011", + "libelleAcheminement": "VALLEES D ANTRAIGUES ASPERJOC", + "nomCommune": "VALLEES D ANTRAIGUES ASPERJOC" }, { - "codePostal": "11140", - "codeCommune": "11017", - "libelleAcheminement": "ARTIGUES", - "nomCommune": "ARTIGUES" + "codePostal": "08440", + "codeCommune": "08187", + "libelleAcheminement": "GERNELLE", + "nomCommune": "GERNELLE" }, { - "codePostal": "13119", - "codeCommune": "13101", - "libelleAcheminement": "ST SAVOURNIN", - "nomCommune": "ST SAVOURNIN" + "codePostal": "21800", + "codeCommune": "21171", + "libelleAcheminement": "CHEVIGNY ST SAUVEUR", + "nomCommune": "CHEVIGNY ST SAUVEUR" }, { - "codePostal": "52100", - "codeCommune": "52534", - "libelleAcheminement": "VILLIERS EN LIEU", - "nomCommune": "VILLIERS EN LIEU" + "codePostal": "21510", + "codeCommune": "21235", + "libelleAcheminement": "DUESME", + "nomCommune": "DUESME" }, { - "codePostal": "11330", - "codeCommune": "11020", - "libelleAcheminement": "AURIAC", - "nomCommune": "AURIAC" + "codePostal": "07310", + "codeCommune": "07012", + "libelleAcheminement": "ARCENS", + "nomCommune": "ARCENS" }, { - "codePostal": "13560", - "codeCommune": "13105", - "libelleAcheminement": "SENAS", - "nomCommune": "SENAS" + "codePostal": "08220", + "codeCommune": "08192", + "libelleAcheminement": "GIVRON", + "nomCommune": "GIVRON" }, { - "codePostal": "52000", - "codeCommune": "52535", - "libelleAcheminement": "VILLIERS LE SEC", - "nomCommune": "VILLIERS LE SEC" + "codePostal": "21270", + "codeCommune": "21175", + "libelleAcheminement": "CIREY LES PONTAILLER", + "nomCommune": "CIREY LES PONTAILLER" }, { - "codePostal": "11300", - "codeCommune": "11039", - "libelleAcheminement": "LA BEZOLE", - "nomCommune": "LA BEZOLE" + "codePostal": "21120", + "codeCommune": "21240", + "libelleAcheminement": "ECHEVANNES", + "nomCommune": "ECHEVANNES" }, { - "codePostal": "13470", - "codeCommune": "13119", - "libelleAcheminement": "CARNOUX EN PROVENCE", - "nomCommune": "CARNOUX EN PROVENCE" + "codePostal": "07330", + "codeCommune": "07018", + "libelleAcheminement": "ASTET", + "nomCommune": "ASTET" }, { - "codePostal": "52160", - "codeCommune": "52540", - "libelleAcheminement": "VITRY EN MONTAGNE", - "nomCommune": "VITRY EN MONTAGNE" + "codePostal": "08250", + "codeCommune": "08197", + "libelleAcheminement": "GRANDHAM", + "nomCommune": "GRANDHAM" }, { - "codePostal": "11300", - "codeCommune": "11046", - "libelleAcheminement": "BOURIGEOLE", - "nomCommune": "BOURIGEOLE" + "codePostal": "21490", + "codeCommune": "21179", + "libelleAcheminement": "CLENAY", + "nomCommune": "CLENAY" }, { - "codePostal": "13006", - "codeCommune": "13206", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 06" + "codePostal": "21290", + "codeCommune": "21250", + "libelleAcheminement": "ESSAROIS", + "nomCommune": "ESSAROIS" }, { - "codePostal": "52400", - "codeCommune": "52544", - "libelleAcheminement": "VOISEY", - "nomCommune": "VOISEY" + "codePostal": "07210", + "codeCommune": "07022", + "libelleAcheminement": "BAIX", + "nomCommune": "BAIX" }, { - "codePostal": "11270", - "codeCommune": "11051", - "libelleAcheminement": "BREZILHAC", - "nomCommune": "BREZILHAC" + "codePostal": "08400", + "codeCommune": "08200", + "libelleAcheminement": "GRIVY LOISY", + "nomCommune": "GRIVY LOISY" }, { - "codePostal": "13008", - "codeCommune": "13208", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 08" + "codePostal": "21220", + "codeCommune": "21182", + "libelleAcheminement": "COLLONGES LES BEVY", + "nomCommune": "COLLONGES LES BEVY" }, { - "codePostal": "52400", - "codeCommune": "52544", - "libelleAcheminement": "VOISEY", - "nomCommune": "VOISEY" + "codePostal": "21500", + "codeCommune": "21252", + "libelleAcheminement": "ETAIS", + "nomCommune": "ETAIS" }, { - "codePostal": "11160", - "codeCommune": "11056", - "libelleAcheminement": "CABRESPINE", - "nomCommune": "CABRESPINE" + "codePostal": "07630", + "codeCommune": "07026", + "libelleAcheminement": "LE BEAGE", + "nomCommune": "LE BEAGE" }, { - "codePostal": "13011", - "codeCommune": "13211", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 11" + "codePostal": "08290", + "codeCommune": "08208", + "libelleAcheminement": "HANNAPPES", + "nomCommune": "HANNAPPES" }, { - "codePostal": "52240", - "codeCommune": "52549", - "libelleAcheminement": "VRONCOURT LA COTE", - "nomCommune": "VRONCOURT LA COTE" + "codePostal": "21110", + "codeCommune": "21183", + "libelleAcheminement": "COLLONGES ET PREMIERES", + "nomCommune": "COLLONGES ET PREMIERES" }, { - "codePostal": "11240", - "codeCommune": "11061", - "libelleAcheminement": "CAMBIEURE", - "nomCommune": "CAMBIEURE" + "codePostal": "21400", + "codeCommune": "21258", + "libelleAcheminement": "ETROCHEY", + "nomCommune": "ETROCHEY" }, { - "codePostal": "13013", - "codeCommune": "13213", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 13" + "codePostal": "07800", + "codeCommune": "07027", + "libelleAcheminement": "BEAUCHASTEL", + "nomCommune": "BEAUCHASTEL" }, { - "codePostal": "53240", - "codeCommune": "53002", - "libelleAcheminement": "ALEXAIN", - "nomCommune": "ALEXAIN" + "codePostal": "08150", + "codeCommune": "08212", + "libelleAcheminement": "HARCY", + "nomCommune": "HARCY" }, { - "codePostal": "11700", - "codeCommune": "11068", - "libelleAcheminement": "CAPENDU", - "nomCommune": "CAPENDU" + "codePostal": "21190", + "codeCommune": "21196", + "libelleAcheminement": "CORPEAU", + "nomCommune": "CORPEAU" }, { - "codePostal": "13016", - "codeCommune": "13216", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 16" + "codePostal": "21640", + "codeCommune": "21267", + "libelleAcheminement": "FLAGEY ECHEZEAUX", + "nomCommune": "FLAGEY ECHEZEAUX" }, { - "codePostal": "53240", - "codeCommune": "53005", - "libelleAcheminement": "ANDOUILLE", - "nomCommune": "ANDOUILLE" + "codePostal": "07460", + "codeCommune": "07028", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "11000", - "codeCommune": "11069", - "libelleAcheminement": "CARCASSONNE", - "nomCommune": "CARCASSONNE" + "codePostal": "08300", + "codeCommune": "08219", + "libelleAcheminement": "HAUTEVILLE", + "nomCommune": "HAUTEVILLE" }, { - "codePostal": "14190", - "codeCommune": "14005", - "libelleAcheminement": "VALAMBRAY", - "nomCommune": "VALAMBRAY" + "codePostal": "21160", + "codeCommune": "21200", + "libelleAcheminement": "COUCHEY", + "nomCommune": "COUCHEY" }, { - "codePostal": "53340", - "codeCommune": "53019", - "libelleAcheminement": "BANNES", - "nomCommune": "BANNES" + "codePostal": "21230", + "codeCommune": "21274", + "libelleAcheminement": "FOISSY", + "nomCommune": "FOISSY" }, { - "codePostal": "11190", - "codeCommune": "11073", - "libelleAcheminement": "CASSAIGNES", - "nomCommune": "CASSAIGNES" + "codePostal": "07110", + "codeCommune": "07029", + "libelleAcheminement": "BEAUMONT", + "nomCommune": "BEAUMONT" }, { - "codePostal": "14370", - "codeCommune": "14005", - "libelleAcheminement": "VALAMBRAY", - "nomCommune": "VALAMBRAY" + "codePostal": "08370", + "codeCommune": "08223", + "libelleAcheminement": "HERBEUVAL", + "nomCommune": "HERBEUVAL" }, { - "codePostal": "53440", - "codeCommune": "53021", - "libelleAcheminement": "LA BAZOGE MONTPINCON", - "nomCommune": "LA BAZOGE MONTPINCON" + "codePostal": "21460", + "codeCommune": "21203", + "libelleAcheminement": "COURCELLES FREMOY", + "nomCommune": "COURCELLES FREMOY" }, { - "codePostal": "11320", - "codeCommune": "11074", - "libelleAcheminement": "LES CASSES", - "nomCommune": "LES CASSES" + "codePostal": "21450", + "codeCommune": "21276", + "libelleAcheminement": "FONTAINES EN DUESMOIS", + "nomCommune": "FONTAINES EN DUESMOIS" }, { - "codePostal": "14540", - "codeCommune": "14005", - "libelleAcheminement": "VALAMBRAY", - "nomCommune": "VALAMBRAY" + "codePostal": "07410", + "codeCommune": "07039", + "libelleAcheminement": "BOZAS", + "nomCommune": "BOZAS" }, { - "codePostal": "53290", - "codeCommune": "53027", - "libelleAcheminement": "BEAUMONT PIED DE BOEUF", - "nomCommune": "BEAUMONT PIED DE BOEUF" + "codePostal": "08200", + "codeCommune": "08232", + "libelleAcheminement": "ILLY", + "nomCommune": "ILLY" }, { - "codePostal": "11250", - "codeCommune": "11082", - "libelleAcheminement": "CAUNETTE SUR LAUQUET", - "nomCommune": "CAUNETTE SUR LAUQUET" + "codePostal": "21310", + "codeCommune": "21215", + "libelleAcheminement": "CUISEREY", + "nomCommune": "CUISEREY" }, { - "codePostal": "14240", - "codeCommune": "14011", - "libelleAcheminement": "AURSEULLES", - "nomCommune": "AURSEULLES" + "codePostal": "21121", + "codeCommune": "21278", + "libelleAcheminement": "FONTAINE LES DIJON", + "nomCommune": "FONTAINE LES DIJON" }, { - "codePostal": "53290", - "codeCommune": "53029", - "libelleAcheminement": "BIERNE LES VILLAGES", - "nomCommune": "BIERNE LES VILLAGES" + "codePostal": "07270", + "codeCommune": "07040", + "libelleAcheminement": "BOUCIEU LE ROI", + "nomCommune": "BOUCIEU LE ROI" }, { - "codePostal": "11300", - "codeCommune": "11090", - "libelleAcheminement": "CEPIE", - "nomCommune": "CEPIE" + "codePostal": "08310", + "codeCommune": "08239", + "libelleAcheminement": "JUNIVILLE", + "nomCommune": "JUNIVILLE" }, { - "codePostal": "14240", - "codeCommune": "14011", - "libelleAcheminement": "AURSEULLES", - "nomCommune": "AURSEULLES" + "codePostal": "21380", + "codeCommune": "21218", + "libelleAcheminement": "CURTIL ST SEINE", + "nomCommune": "CURTIL ST SEINE" }, { - "codePostal": "53240", - "codeCommune": "53031", - "libelleAcheminement": "LA BIGOTTIERE", - "nomCommune": "LA BIGOTTIERE" + "codePostal": "21700", + "codeCommune": "21289", + "libelleAcheminement": "FUSSEY", + "nomCommune": "FUSSEY" }, { - "codePostal": "11230", - "codeCommune": "11091", - "libelleAcheminement": "CHALABRE", - "nomCommune": "CHALABRE" + "codePostal": "07700", + "codeCommune": "07042", + "libelleAcheminement": "BOURG ST ANDEOL", + "nomCommune": "BOURG ST ANDEOL" }, { - "codePostal": "14240", - "codeCommune": "14011", - "libelleAcheminement": "AURSEULLES", - "nomCommune": "AURSEULLES" + "codePostal": "08130", + "codeCommune": "08244", + "libelleAcheminement": "LAMETZ", + "nomCommune": "LAMETZ" }, { - "codePostal": "53410", - "codeCommune": "53045", - "libelleAcheminement": "LA BRULATTE", - "nomCommune": "LA BRULATTE" + "codePostal": "21580", + "codeCommune": "21220", + "libelleAcheminement": "CUSSEY LES FORGES", + "nomCommune": "CUSSEY LES FORGES" }, { - "codePostal": "11250", - "codeCommune": "11094", - "libelleAcheminement": "CLERMONT SUR LAUQUET", - "nomCommune": "CLERMONT SUR LAUQUET" + "codePostal": "21140", + "codeCommune": "21291", + "libelleAcheminement": "GENAY", + "nomCommune": "GENAY" }, { - "codePostal": "14250", - "codeCommune": "14011", - "libelleAcheminement": "AURSEULLES", - "nomCommune": "AURSEULLES" + "codePostal": "07340", + "codeCommune": "07044", + "libelleAcheminement": "BROSSAINC", + "nomCommune": "BROSSAINC" }, { - "codePostal": "53170", - "codeCommune": "53046", - "libelleAcheminement": "LE BURET", - "nomCommune": "LE BURET" + "codePostal": "08600", + "codeCommune": "08247", + "libelleAcheminement": "LANDRICHAMPS", + "nomCommune": "LANDRICHAMPS" }, { - "codePostal": "11700", - "codeCommune": "11095", - "libelleAcheminement": "COMIGNE", - "nomCommune": "COMIGNE" + "codePostal": "21350", + "codeCommune": "21224", + "libelleAcheminement": "DAMPIERRE EN MONTAGNE", + "nomCommune": "DAMPIERRE EN MONTAGNE" }, { - "codePostal": "14370", - "codeCommune": "14020", - "libelleAcheminement": "ARGENCES", - "nomCommune": "ARGENCES" + "codePostal": "21250", + "codeCommune": "21301", + "libelleAcheminement": "GLANON", + "nomCommune": "GLANON" }, { - "codePostal": "53470", - "codeCommune": "53049", - "libelleAcheminement": "CHALONS DU MAINE", - "nomCommune": "CHALONS DU MAINE" + "codePostal": "07450", + "codeCommune": "07045", + "libelleAcheminement": "BURZET", + "nomCommune": "BURZET" }, { - "codePostal": "11140", - "codeCommune": "11104", - "libelleAcheminement": "COUNOZOULS", - "nomCommune": "COUNOZOULS" + "codePostal": "08310", + "codeCommune": "08250", + "libelleAcheminement": "LEFFINCOURT", + "nomCommune": "LEFFINCOURT" }, { - "codePostal": "14130", - "codeCommune": "14032", - "libelleAcheminement": "LES AUTHIEUX SUR CALONNE", - "nomCommune": "LES AUTHIEUX SUR CALONNE" + "codePostal": "21121", + "codeCommune": "21227", + "libelleAcheminement": "DAROIS", + "nomCommune": "DAROIS" }, { - "codePostal": "53370", - "codeCommune": "53052", - "libelleAcheminement": "CHAMPFREMONT", - "nomCommune": "CHAMPFREMONT" + "codePostal": "21330", + "codeCommune": "21309", + "libelleAcheminement": "GRISELLES", + "nomCommune": "GRISELLES" }, { - "codePostal": "11220", - "codeCommune": "11110", - "libelleAcheminement": "COUSTOUGE", - "nomCommune": "COUSTOUGE" + "codePostal": "07590", + "codeCommune": "07047", + "libelleAcheminement": "CELLIER DU LUC", + "nomCommune": "CELLIER DU LUC" }, { - "codePostal": "14260", - "codeCommune": "14037", - "libelleAcheminement": "MALHERBE SUR AJON", - "nomCommune": "MALHERBE SUR AJON" + "codePostal": "08300", + "codeCommune": "08262", + "libelleAcheminement": "LUCQUY", + "nomCommune": "LUCQUY" }, { - "codePostal": "53810", - "codeCommune": "53054", - "libelleAcheminement": "CHANGE", - "nomCommune": "CHANGE" + "codePostal": "21430", + "codeCommune": "21229", + "libelleAcheminement": "DIANCEY", + "nomCommune": "DIANCEY" }, { - "codePostal": "11410", - "codeCommune": "11114", - "libelleAcheminement": "CUMIES", - "nomCommune": "CUMIES" + "codePostal": "21250", + "codeCommune": "21311", + "libelleAcheminement": "GROSBOIS LES TICHEY", + "nomCommune": "GROSBOIS LES TICHEY" }, { - "codePostal": "14260", - "codeCommune": "14037", - "libelleAcheminement": "MALHERBE SUR AJON", - "nomCommune": "MALHERBE SUR AJON" + "codePostal": "07140", + "codeCommune": "07050", + "libelleAcheminement": "CHAMBONAS", + "nomCommune": "CHAMBONAS" }, { - "codePostal": "53200", - "codeCommune": "53063", - "libelleAcheminement": "CHATELAIN", - "nomCommune": "CHATELAIN" + "codePostal": "08450", + "codeCommune": "08268", + "libelleAcheminement": "MAISONCELLE ET VILLERS", + "nomCommune": "MAISONCELLE ET VILLERS" }, { - "codePostal": "11390", - "codeCommune": "11115", - "libelleAcheminement": "CUXAC CABARDES", - "nomCommune": "CUXAC CABARDES" + "codePostal": "21390", + "codeCommune": "21232", + "libelleAcheminement": "DOMPIERRE EN MORVAN", + "nomCommune": "DOMPIERRE EN MORVAN" }, { - "codePostal": "14860", - "codeCommune": "14046", - "libelleAcheminement": "BAVENT", - "nomCommune": "BAVENT" + "codePostal": "21290", + "codeCommune": "21313", + "libelleAcheminement": "GURGY LE CHATEAU", + "nomCommune": "GURGY LE CHATEAU" }, { - "codePostal": "53340", - "codeCommune": "53067", - "libelleAcheminement": "CHEMERE LE ROI", - "nomCommune": "CHEMERE LE ROI" + "codePostal": "07340", + "codeCommune": "07056", + "libelleAcheminement": "CHARNAS", + "nomCommune": "CHARNAS" }, { - "codePostal": "11590", - "codeCommune": "11116", - "libelleAcheminement": "CUXAC D AUDE", - "nomCommune": "CUXAC D AUDE" + "codePostal": "08370", + "codeCommune": "08275", + "libelleAcheminement": "MARGNY", + "nomCommune": "MARGNY" }, { - "codePostal": "14970", - "codeCommune": "14060", - "libelleAcheminement": "BENOUVILLE", - "nomCommune": "BENOUVILLE" + "codePostal": "21510", + "codeCommune": "21237", + "libelleAcheminement": "ECHALOT", + "nomCommune": "ECHALOT" }, { - "codePostal": "53400", - "codeCommune": "53068", - "libelleAcheminement": "CHERANCE", - "nomCommune": "CHERANCE" + "codePostal": "21121", + "codeCommune": "21315", + "libelleAcheminement": "HAUTEVILLE LES DIJON", + "nomCommune": "HAUTEVILLE LES DIJON" }, { - "codePostal": "11300", - "codeCommune": "11119", - "libelleAcheminement": "LA DIGNE D AMONT", - "nomCommune": "LA DIGNE D AMONT" + "codePostal": "07160", + "codeCommune": "07064", + "libelleAcheminement": "LE CHEYLARD", + "nomCommune": "LE CHEYLARD" }, { - "codePostal": "14260", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "08290", + "codeCommune": "08277", + "libelleAcheminement": "MARLEMONT", + "nomCommune": "MARLEMONT" }, { - "codePostal": "53470", - "codeCommune": "53072", - "libelleAcheminement": "COMMER", - "nomCommune": "COMMER" + "codePostal": "21170", + "codeCommune": "21239", + "libelleAcheminement": "ECHENON", + "nomCommune": "ECHENON" }, { - "codePostal": "11700", - "codeCommune": "11122", - "libelleAcheminement": "DOUZENS", - "nomCommune": "DOUZENS" + "codePostal": "21270", + "codeCommune": "21316", + "libelleAcheminement": "HEUILLEY SUR SAONE", + "nomCommune": "HEUILLEY SUR SAONE" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "07380", + "codeCommune": "07065", + "libelleAcheminement": "CHIROLS", + "nomCommune": "CHIROLS" }, { - "codePostal": "53340", - "codeCommune": "53076", - "libelleAcheminement": "COSSE EN CHAMPAGNE", - "nomCommune": "COSSE EN CHAMPAGNE" + "codePostal": "08400", + "codeCommune": "08279", + "libelleAcheminement": "MARS SOUS BOURCQ", + "nomCommune": "MARS SOUS BOURCQ" }, { - "codePostal": "11200", - "codeCommune": "11126", - "libelleAcheminement": "ESCALES", - "nomCommune": "ESCALES" + "codePostal": "21360", + "codeCommune": "21243", + "libelleAcheminement": "ECUTIGNY", + "nomCommune": "ECUTIGNY" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "21250", + "codeCommune": "21322", + "libelleAcheminement": "JALLANGES", + "nomCommune": "JALLANGES" }, { - "codePostal": "53200", - "codeCommune": "53078", - "libelleAcheminement": "COUDRAY", - "nomCommune": "COUDRAY" + "codePostal": "07430", + "codeCommune": "07078", + "libelleAcheminement": "DAVEZIEUX", + "nomCommune": "DAVEZIEUX" }, { - "codePostal": "11340", - "codeCommune": "11130", - "libelleAcheminement": "ESPEZEL", - "nomCommune": "ESPEZEL" + "codePostal": "08400", + "codeCommune": "08280", + "libelleAcheminement": "MARVAUX VIEUX", + "nomCommune": "MARVAUX VIEUX" }, { - "codePostal": "14710", - "codeCommune": "14063", - "libelleAcheminement": "BERNESQ", - "nomCommune": "BERNESQ" + "codePostal": "21380", + "codeCommune": "21245", + "libelleAcheminement": "EPAGNY", + "nomCommune": "EPAGNY" }, { - "codePostal": "53230", - "codeCommune": "53082", - "libelleAcheminement": "COURBEVEILLE", - "nomCommune": "COURBEVEILLE" + "codePostal": "21310", + "codeCommune": "21323", + "libelleAcheminement": "JANCIGNY", + "nomCommune": "JANCIGNY" }, { - "codePostal": "11140", - "codeCommune": "11135", - "libelleAcheminement": "LA FAJOLLE", - "nomCommune": "LA FAJOLLE" + "codePostal": "07270", + "codeCommune": "07085", + "libelleAcheminement": "EMPURANY", + "nomCommune": "EMPURANY" }, { - "codePostal": "14170", - "codeCommune": "14064", - "libelleAcheminement": "BERNIERES D AILLY", - "nomCommune": "BERNIERES D AILLY" + "codePostal": "08500", + "codeCommune": "08284", + "libelleAcheminement": "LES MAZURES", + "nomCommune": "LES MAZURES" }, { - "codePostal": "53200", - "codeCommune": "53101", - "libelleAcheminement": "FROMENTIERES", - "nomCommune": "FROMENTIERES" + "codePostal": "21220", + "codeCommune": "21246", + "libelleAcheminement": "EPERNAY SOUS GEVREY", + "nomCommune": "EPERNAY SOUS GEVREY" }, { - "codePostal": "11240", - "codeCommune": "11139", - "libelleAcheminement": "FENOUILLET DU RAZES", - "nomCommune": "FENOUILLET DU RAZES" + "codePostal": "21110", + "codeCommune": "21330", + "libelleAcheminement": "LABERGEMENT FOIGNEY", + "nomCommune": "LABERGEMENT FOIGNEY" }, { - "codePostal": "14130", - "codeCommune": "14077", - "libelleAcheminement": "BLANGY LE CHATEAU", - "nomCommune": "BLANGY LE CHATEAU" + "codePostal": "07190", + "codeCommune": "07096", + "libelleAcheminement": "GLUIRAS", + "nomCommune": "GLUIRAS" }, { - "codePostal": "53370", - "codeCommune": "53106", - "libelleAcheminement": "GESVRES", - "nomCommune": "GESVRES" + "codePostal": "08090", + "codeCommune": "08298", + "libelleAcheminement": "MONTCY NOTRE DAME", + "nomCommune": "MONTCY NOTRE DAME" }, { - "codePostal": "11240", - "codeCommune": "11141", - "libelleAcheminement": "FERRAN", - "nomCommune": "FERRAN" + "codePostal": "21220", + "codeCommune": "21254", + "libelleAcheminement": "L ETANG VERGY", + "nomCommune": "L ETANG VERGY" }, { - "codePostal": "14910", - "codeCommune": "14079", - "libelleAcheminement": "BLONVILLE SUR MER", - "nomCommune": "BLONVILLE SUR MER" + "codePostal": "21140", + "codeCommune": "21341", + "libelleAcheminement": "LANTILLY", + "nomCommune": "LANTILLY" }, { - "codePostal": "53640", - "codeCommune": "53114", - "libelleAcheminement": "HARDANGES", - "nomCommune": "HARDANGES" + "codePostal": "07190", + "codeCommune": "07104", + "libelleAcheminement": "ISSAMOULENC", + "nomCommune": "ISSAMOULENC" }, { - "codePostal": "11300", - "codeCommune": "11142", - "libelleAcheminement": "FESTES ET ST ANDRE", - "nomCommune": "FESTES ET ST ANDRE" + "codePostal": "08800", + "codeCommune": "08302", + "libelleAcheminement": "MONTHERME", + "nomCommune": "MONTHERME" }, { - "codePostal": "14260", - "codeCommune": "14084", - "libelleAcheminement": "BONNEMAISON", - "nomCommune": "BONNEMAISON" + "codePostal": "21600", + "codeCommune": "21263", + "libelleAcheminement": "FENAY", + "nomCommune": "FENAY" }, { - "codePostal": "53160", - "codeCommune": "53120", - "libelleAcheminement": "IZE", - "nomCommune": "IZE" + "codePostal": "21250", + "codeCommune": "21344", + "libelleAcheminement": "LECHATELET", + "nomCommune": "LECHATELET" }, { - "codePostal": "11400", - "codeCommune": "11149", - "libelleAcheminement": "FONTERS DU RAZES", - "nomCommune": "FONTERS DU RAZES" + "codePostal": "07160", + "codeCommune": "07108", + "libelleAcheminement": "JAUNAC", + "nomCommune": "JAUNAC" }, { - "codePostal": "14700", - "codeCommune": "14087", - "libelleAcheminement": "BONNOEIL", - "nomCommune": "BONNOEIL" + "codePostal": "08800", + "codeCommune": "08302", + "libelleAcheminement": "MONTHERME", + "nomCommune": "MONTHERME" }, { - "codePostal": "53250", - "codeCommune": "53121", - "libelleAcheminement": "JAVRON LES CHAPELLES", - "nomCommune": "JAVRON LES CHAPELLES" + "codePostal": "21130", + "codeCommune": "21268", + "libelleAcheminement": "FLAGEY LES AUXONNE", + "nomCommune": "FLAGEY LES AUXONNE" }, { - "codePostal": "11390", - "codeCommune": "11150", - "libelleAcheminement": "FONTIERS CABARDES", - "nomCommune": "FONTIERS CABARDES" + "codePostal": "21520", + "codeCommune": "21350", + "libelleAcheminement": "LIGNEROLLES", + "nomCommune": "LIGNEROLLES" }, { - "codePostal": "14540", - "codeCommune": "14092", - "libelleAcheminement": "BOURGUEBUS", - "nomCommune": "BOURGUEBUS" + "codePostal": "07110", + "codeCommune": "07109", + "libelleAcheminement": "JOANNAS", + "nomCommune": "JOANNAS" }, { - "codePostal": "53110", - "codeCommune": "53127", - "libelleAcheminement": "LASSAY LES CHATEAUX", - "nomCommune": "LASSAY LES CHATEAUX" + "codePostal": "08220", + "codeCommune": "08307", + "libelleAcheminement": "MONTMEILLANT", + "nomCommune": "MONTMEILLANT" }, { - "codePostal": "11360", - "codeCommune": "11152", - "libelleAcheminement": "FONTJONCOUSE", - "nomCommune": "FONTJONCOUSE" + "codePostal": "21150", + "codeCommune": "21288", + "libelleAcheminement": "FROLOIS", + "nomCommune": "FROLOIS" }, { - "codePostal": "14390", - "codeCommune": "14117", - "libelleAcheminement": "CABOURG", - "nomCommune": "CABOURG" + "codePostal": "21520", + "codeCommune": "21357", + "libelleAcheminement": "LOUESME", + "nomCommune": "LOUESME" }, { - "codePostal": "53120", - "codeCommune": "53131", - "libelleAcheminement": "LESBOIS", - "nomCommune": "LESBOIS" + "codePostal": "07150", + "codeCommune": "07113", + "libelleAcheminement": "LABASTIDE DE VIRAC", + "nomCommune": "LABASTIDE DE VIRAC" }, { - "codePostal": "11190", - "codeCommune": "11155", - "libelleAcheminement": "FOURTOU", - "nomCommune": "FOURTOU" + "codePostal": "08460", + "codeCommune": "08315", + "libelleAcheminement": "NEUFMAISON", + "nomCommune": "NEUFMAISON" }, { - "codePostal": "14000", - "codeCommune": "14118", - "libelleAcheminement": "CAEN", - "nomCommune": "CAEN" + "codePostal": "21110", + "codeCommune": "21292", + "libelleAcheminement": "GENLIS", + "nomCommune": "GENLIS" }, { - "codePostal": "53150", - "codeCommune": "53134", - "libelleAcheminement": "LIVET", - "nomCommune": "LIVET" + "codePostal": "21120", + "codeCommune": "21361", + "libelleAcheminement": "LUX", + "nomCommune": "LUX" }, { - "codePostal": "11140", - "codeCommune": "11163", - "libelleAcheminement": "GINCLA", - "nomCommune": "GINCLA" + "codePostal": "07120", + "codeCommune": "07115", + "libelleAcheminement": "LABEAUME", + "nomCommune": "LABEAUME" }, { - "codePostal": "14240", - "codeCommune": "14120", - "libelleAcheminement": "CAHAGNES", - "nomCommune": "CAHAGNES" + "codePostal": "08380", + "codeCommune": "08319", + "libelleAcheminement": "NEUVILLE LEZ BEAULIEU", + "nomCommune": "NEUVILLE LEZ BEAULIEU" }, { - "codePostal": "53440", - "codeCommune": "53144", - "libelleAcheminement": "MARCILLE LA VILLE", - "nomCommune": "MARCILLE LA VILLE" + "codePostal": "21520", + "codeCommune": "21296", + "libelleAcheminement": "GEVROLLES", + "nomCommune": "GEVROLLES" }, { - "codePostal": "11430", - "codeCommune": "11170", - "libelleAcheminement": "GRUISSAN", - "nomCommune": "GRUISSAN" + "codePostal": "21320", + "codeCommune": "21362", + "libelleAcheminement": "MACONGE", + "nomCommune": "MACONGE" }, { - "codePostal": "14210", - "codeCommune": "14122", - "libelleAcheminement": "LA CAINE", - "nomCommune": "LA CAINE" + "codePostal": "07200", + "codeCommune": "07116", + "libelleAcheminement": "LABEGUDE", + "nomCommune": "LABEGUDE" }, { - "codePostal": "53470", - "codeCommune": "53146", - "libelleAcheminement": "MARTIGNE SUR MAYENNE", - "nomCommune": "MARTIGNE SUR MAYENNE" + "codePostal": "08700", + "codeCommune": "08328", + "libelleAcheminement": "NOUZONVILLE", + "nomCommune": "NOUZONVILLE" }, { - "codePostal": "11220", - "codeCommune": "11179", - "libelleAcheminement": "LABASTIDE EN VAL", - "nomCommune": "LABASTIDE EN VAL" + "codePostal": "21540", + "codeCommune": "21306", + "libelleAcheminement": "GRENANT LES SOMBERNON", + "nomCommune": "GRENANT LES SOMBERNON" }, { - "codePostal": "14740", - "codeCommune": "14135", - "libelleAcheminement": "CARCAGNY", - "nomCommune": "CARCAGNY" + "codePostal": "21310", + "codeCommune": "21369", + "libelleAcheminement": "MAGNY ST MEDARD", + "nomCommune": "MAGNY ST MEDARD" }, { - "codePostal": "53170", - "codeCommune": "53152", - "libelleAcheminement": "MESLAY DU MAINE", - "nomCommune": "MESLAY DU MAINE" + "codePostal": "07230", + "codeCommune": "07117", + "libelleAcheminement": "LABLACHERE", + "nomCommune": "LABLACHERE" }, { - "codePostal": "11250", - "codeCommune": "11183", - "libelleAcheminement": "LADERN SUR LAUQUET", - "nomCommune": "LADERN SUR LAUQUET" + "codePostal": "08250", + "codeCommune": "08333", + "libelleAcheminement": "OLIZY PRIMAT", + "nomCommune": "OLIZY PRIMAT" }, { - "codePostal": "14240", - "codeCommune": "14143", - "libelleAcheminement": "CAUMONT SUR AURE", - "nomCommune": "CAUMONT SUR AURE" + "codePostal": "21150", + "codeCommune": "21321", + "libelleAcheminement": "JAILLY LES MOULINS", + "nomCommune": "JAILLY LES MOULINS" }, { - "codePostal": "53640", - "codeCommune": "53160", - "libelleAcheminement": "MONTREUIL POULAY", - "nomCommune": "MONTREUIL POULAY" + "codePostal": "21410", + "codeCommune": "21373", + "libelleAcheminement": "MALAIN", + "nomCommune": "MALAIN" }, { - "codePostal": "11480", - "codeCommune": "11188", - "libelleAcheminement": "LA PALME", - "nomCommune": "LA PALME" + "codePostal": "07520", + "codeCommune": "07128", + "libelleAcheminement": "LALOUVESC", + "nomCommune": "LALOUVESC" }, { - "codePostal": "14290", - "codeCommune": "14147", - "libelleAcheminement": "CERNAY", - "nomCommune": "CERNAY" + "codePostal": "08190", + "codeCommune": "08340", + "libelleAcheminement": "POILCOURT SYDNEY", + "nomCommune": "POILCOURT SYDNEY" }, { - "codePostal": "53640", - "codeCommune": "53160", - "libelleAcheminement": "MONTREUIL POULAY", - "nomCommune": "MONTREUIL POULAY" + "codePostal": "21460", + "codeCommune": "21324", + "libelleAcheminement": "JEUX LES BARD", + "nomCommune": "JEUX LES BARD" }, { - "codePostal": "11390", - "codeCommune": "11189", - "libelleAcheminement": "LAPRADE", - "nomCommune": "LAPRADE" + "codePostal": "21230", + "codeCommune": "21374", + "libelleAcheminement": "MALIGNY", + "nomCommune": "MALIGNY" }, { - "codePostal": "14220", - "codeCommune": "14150", - "libelleAcheminement": "CESNY LES SOURCES", - "nomCommune": "CESNY LES SOURCES" + "codePostal": "07660", + "codeCommune": "07130", + "libelleAcheminement": "LANARCE", + "nomCommune": "LANARCE" }, { - "codePostal": "53410", - "codeCommune": "53169", - "libelleAcheminement": "OLIVET", - "nomCommune": "OLIVET" + "codePostal": "08140", + "codeCommune": "08343", + "libelleAcheminement": "POURU ST REMY", + "nomCommune": "POURU ST REMY" }, { - "codePostal": "11370", - "codeCommune": "11202", - "libelleAcheminement": "LEUCATE", - "nomCommune": "LEUCATE" + "codePostal": "21340", + "codeCommune": "21327", + "libelleAcheminement": "VAL MONT", + "nomCommune": "VAL MONT" }, { - "codePostal": "14220", - "codeCommune": "14150", - "libelleAcheminement": "CESNY LES SOURCES", - "nomCommune": "CESNY LES SOURCES" + "codePostal": "21700", + "codeCommune": "21384", + "libelleAcheminement": "MAREY LES FUSSEY", + "nomCommune": "MAREY LES FUSSEY" }, { - "codePostal": "53360", - "codeCommune": "53172", - "libelleAcheminement": "ORIGNE", - "nomCommune": "ORIGNE" + "codePostal": "07220", + "codeCommune": "07133", + "libelleAcheminement": "LARNAS", + "nomCommune": "LARNAS" }, { - "codePostal": "11300", - "codeCommune": "11206", - "libelleAcheminement": "LIMOUX", - "nomCommune": "LIMOUX" + "codePostal": "08230", + "codeCommune": "08355", + "libelleAcheminement": "REGNIOWEZ", + "nomCommune": "REGNIOWEZ" }, { - "codePostal": "14130", - "codeCommune": "14161", - "libelleAcheminement": "CLARBEC", - "nomCommune": "CLARBEC" + "codePostal": "21250", + "codeCommune": "21333", + "libelleAcheminement": "LABRUYERE", + "nomCommune": "LABRUYERE" }, { - "codePostal": "53140", - "codeCommune": "53173", - "libelleAcheminement": "LA PALLU", - "nomCommune": "LA PALLU" + "codePostal": "21120", + "codeCommune": "21385", + "libelleAcheminement": "MAREY SUR TILLE", + "nomCommune": "MAREY SUR TILLE" }, { - "codePostal": "11120", - "codeCommune": "11212", - "libelleAcheminement": "MAILHAC", - "nomCommune": "MAILHAC" + "codePostal": "48250", + "codeCommune": "07136", + "libelleAcheminement": "LAVEYRUNE", + "nomCommune": "LAVEYRUNE" }, { - "codePostal": "14770", - "codeCommune": "14174", - "libelleAcheminement": "CONDE EN NORMANDIE", - "nomCommune": "CONDE EN NORMANDIE" + "codePostal": "08150", + "codeCommune": "08358", + "libelleAcheminement": "REMILLY LES POTHEES", + "nomCommune": "REMILLY LES POTHEES" }, { - "codePostal": "53400", - "codeCommune": "53180", - "libelleAcheminement": "POMMERIEUX", - "nomCommune": "POMMERIEUX" + "codePostal": "21760", + "codeCommune": "21337", + "libelleAcheminement": "LAMARCHE SUR SAONE", + "nomCommune": "LAMARCHE SUR SAONE" }, { - "codePostal": "11300", - "codeCommune": "11216", - "libelleAcheminement": "MALVIES", - "nomCommune": "MALVIES" + "codePostal": "21150", + "codeCommune": "21386", + "libelleAcheminement": "MARIGNY LE CAHOUET", + "nomCommune": "MARIGNY LE CAHOUET" }, { - "codePostal": "14690", - "codeCommune": "14183", - "libelleAcheminement": "COSSESSEVILLE", - "nomCommune": "COSSESSEVILLE" + "codePostal": "07340", + "codeCommune": "07143", + "libelleAcheminement": "LIMONY", + "nomCommune": "LIMONY" }, { - "codePostal": "53340", - "codeCommune": "53184", - "libelleAcheminement": "PREAUX", - "nomCommune": "PREAUX" + "codePostal": "08300", + "codeCommune": "08362", + "libelleAcheminement": "RETHEL", + "nomCommune": "RETHEL" }, { - "codePostal": "11120", - "codeCommune": "11233", - "libelleAcheminement": "MIREPEISSET", - "nomCommune": "MIREPEISSET" + "codePostal": "21250", + "codeCommune": "21340", + "libelleAcheminement": "LANTHES", + "nomCommune": "LANTHES" }, { - "codePostal": "14430", - "codeCommune": "14198", - "libelleAcheminement": "CRESSEVEUILLE", - "nomCommune": "CRESSEVEUILLE" + "codePostal": "21380", + "codeCommune": "21391", + "libelleAcheminement": "MARSANNAY LE BOIS", + "nomCommune": "MARSANNAY LE BOIS" }, { - "codePostal": "53140", - "codeCommune": "53185", - "libelleAcheminement": "PRE EN PAIL ST SAMSON", - "nomCommune": "PRE EN PAIL ST SAMSON" + "codePostal": "07320", + "codeCommune": "07151", + "libelleAcheminement": "MARS", + "nomCommune": "MARS" }, { - "codePostal": "11400", - "codeCommune": "11234", - "libelleAcheminement": "MIREVAL LAURAGAIS", - "nomCommune": "MIREVAL LAURAGAIS" + "codePostal": "08130", + "codeCommune": "08364", + "libelleAcheminement": "RILLY SUR AISNE", + "nomCommune": "RILLY SUR AISNE" }, { - "codePostal": "14480", - "codeCommune": "14200", - "libelleAcheminement": "CREULLY SUR SEULLES", - "nomCommune": "CREULLY SUR SEULLES" + "codePostal": "21440", + "codeCommune": "21345", + "libelleAcheminement": "LERY", + "nomCommune": "LERY" }, { - "codePostal": "53370", - "codeCommune": "53187", - "libelleAcheminement": "RAVIGNY", - "nomCommune": "RAVIGNY" + "codePostal": "21510", + "codeCommune": "21396", + "libelleAcheminement": "MAUVILLY", + "nomCommune": "MAUVILLY" }, { - "codePostal": "11580", - "codeCommune": "11235", - "libelleAcheminement": "MISSEGRE", - "nomCommune": "MISSEGRE" + "codePostal": "07400", + "codeCommune": "07157", + "libelleAcheminement": "MEYSSE", + "nomCommune": "MEYSSE" }, { - "codePostal": "14113", - "codeCommune": "14202", - "libelleAcheminement": "CRICQUEBOEUF", - "nomCommune": "CRICQUEBOEUF" + "codePostal": "08150", + "codeCommune": "08370", + "libelleAcheminement": "ROUVROY SUR AUDRY", + "nomCommune": "ROUVROY SUR AUDRY" }, { - "codePostal": "53640", - "codeCommune": "53190", - "libelleAcheminement": "LE RIBAY", - "nomCommune": "LE RIBAY" + "codePostal": "21290", + "codeCommune": "21346", + "libelleAcheminement": "LEUGLAY", + "nomCommune": "LEUGLAY" }, { - "codePostal": "11140", - "codeCommune": "11244", - "libelleAcheminement": "MONTFORT SUR BOULZANE", - "nomCommune": "MONTFORT SUR BOULZANE" + "codePostal": "21190", + "codeCommune": "21401", + "libelleAcheminement": "MELOISEY", + "nomCommune": "MELOISEY" }, { - "codePostal": "14430", - "codeCommune": "14203", - "libelleAcheminement": "CRICQUEVILLE EN AUGE", - "nomCommune": "CRICQUEVILLE EN AUGE" + "codePostal": "07530", + "codeCommune": "07158", + "libelleAcheminement": "MEZILHAC", + "nomCommune": "MEZILHAC" }, { - "codePostal": "53350", - "codeCommune": "53191", - "libelleAcheminement": "LA ROE", - "nomCommune": "LA ROE" + "codePostal": "08110", + "codeCommune": "08375", + "libelleAcheminement": "SACHY", + "nomCommune": "SACHY" }, { - "codePostal": "11800", - "codeCommune": "11248", - "libelleAcheminement": "MONTIRAT", - "nomCommune": "MONTIRAT" + "codePostal": "21110", + "codeCommune": "21352", + "libelleAcheminement": "LONGEAULT PLUVAULT", + "nomCommune": "LONGEAULT PLUVAULT" }, { - "codePostal": "14450", - "codeCommune": "14204", - "libelleAcheminement": "CRICQUEVILLE EN BESSIN", - "nomCommune": "CRICQUEVILLE EN BESSIN" + "codePostal": "21430", + "codeCommune": "21403", + "libelleAcheminement": "MENESSAIRE", + "nomCommune": "MENESSAIRE" }, { - "codePostal": "53390", - "codeCommune": "53192", - "libelleAcheminement": "LA ROUAUDIERE", - "nomCommune": "LA ROUAUDIERE" + "codePostal": "07170", + "codeCommune": "07159", + "libelleAcheminement": "MIRABEL", + "nomCommune": "MIRABEL" }, { - "codePostal": "11220", - "codeCommune": "11251", - "libelleAcheminement": "VAL DE DAGNE", - "nomCommune": "VAL DE DAGNE" + "codePostal": "08310", + "codeCommune": "08378", + "libelleAcheminement": "ST CLEMENT A ARNES", + "nomCommune": "ST CLEMENT A ARNES" }, { - "codePostal": "14250", - "codeCommune": "14205", - "libelleAcheminement": "CRISTOT", - "nomCommune": "CRISTOT" + "codePostal": "21110", + "codeCommune": "21353", + "libelleAcheminement": "LONGECOURT EN PLAINE", + "nomCommune": "LONGECOURT EN PLAINE" }, { - "codePostal": "53390", - "codeCommune": "53197", - "libelleAcheminement": "ST AIGNAN SUR ROE", - "nomCommune": "ST AIGNAN SUR ROE" + "codePostal": "21340", + "codeCommune": "21420", + "libelleAcheminement": "MOLINOT", + "nomCommune": "MOLINOT" }, { - "codePostal": "11350", - "codeCommune": "11270", - "libelleAcheminement": "PADERN", - "nomCommune": "PADERN" + "codePostal": "07360", + "codeCommune": "07167", + "libelleAcheminement": "LES OLLIERES SUR EYRIEUX", + "nomCommune": "LES OLLIERES SUR EYRIEUX" }, { - "codePostal": "14220", - "codeCommune": "14207", - "libelleAcheminement": "CROISILLES", - "nomCommune": "CROISILLES" + "codePostal": "08190", + "codeCommune": "08404", + "libelleAcheminement": "SAULT ST REMY", + "nomCommune": "SAULT ST REMY" }, { - "codePostal": "53940", - "codeCommune": "53201", - "libelleAcheminement": "ST BERTHEVIN", - "nomCommune": "ST BERTHEVIN" + "codePostal": "21600", + "codeCommune": "21355", + "libelleAcheminement": "LONGVIC", + "nomCommune": "LONGVIC" }, { - "codePostal": "11300", - "codeCommune": "11274", - "libelleAcheminement": "PAULIGNE", - "nomCommune": "PAULIGNE" + "codePostal": "21360", + "codeCommune": "21427", + "libelleAcheminement": "MONTCEAU ET ECHARNANT", + "nomCommune": "MONTCEAU ET ECHARNANT" }, { - "codePostal": "14620", - "codeCommune": "14216", - "libelleAcheminement": "DAMBLAINVILLE", - "nomCommune": "DAMBLAINVILLE" + "codePostal": "07450", + "codeCommune": "07173", + "libelleAcheminement": "PEREYRES", + "nomCommune": "PEREYRES" }, { - "codePostal": "53290", - "codeCommune": "53203", - "libelleAcheminement": "ST BRICE", - "nomCommune": "ST BRICE" + "codePostal": "08400", + "codeCommune": "08406", + "libelleAcheminement": "SAVIGNY SUR AISNE", + "nomCommune": "SAVIGNY SUR AISNE" }, { - "codePostal": "11350", - "codeCommune": "11276", - "libelleAcheminement": "PAZIOLS", - "nomCommune": "PAZIOLS" + "codePostal": "21150", + "codeCommune": "21358", + "libelleAcheminement": "LUCENAY LE DUC", + "nomCommune": "LUCENAY LE DUC" }, { - "codePostal": "14430", - "codeCommune": "14218", - "libelleAcheminement": "DANESTAL", - "nomCommune": "DANESTAL" + "codePostal": "21610", + "codeCommune": "21433", + "libelleAcheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", + "nomCommune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE" }, { - "codePostal": "53220", - "codeCommune": "53213", - "libelleAcheminement": "ST ELLIER DU MAINE", - "nomCommune": "ST ELLIER DU MAINE" + "codePostal": "07590", + "codeCommune": "07175", + "libelleAcheminement": "LE PLAGNAL", + "nomCommune": "LE PLAGNAL" }, { - "codePostal": "11440", - "codeCommune": "11285", - "libelleAcheminement": "PEYRIAC DE MER", - "nomCommune": "PEYRIAC DE MER" + "codePostal": "08250", + "codeCommune": "08407", + "libelleAcheminement": "SECHAULT", + "nomCommune": "SECHAULT" }, { - "codePostal": "14690", - "codeCommune": "14223", - "libelleAcheminement": "LE DETROIT", - "nomCommune": "LE DETROIT" + "codePostal": "21230", + "codeCommune": "21363", + "libelleAcheminement": "MAGNIEN", + "nomCommune": "MAGNIEN" }, { - "codePostal": "53390", - "codeCommune": "53214", - "libelleAcheminement": "ST ERBLON", - "nomCommune": "ST ERBLON" + "codePostal": "21400", + "codeCommune": "21435", + "libelleAcheminement": "MONTLIOT ET COURCELLES", + "nomCommune": "MONTLIOT ET COURCELLES" }, { - "codePostal": "11500", - "codeCommune": "11304", - "libelleAcheminement": "QUILLAN", - "nomCommune": "QUILLAN" + "codePostal": "07250", + "codeCommune": "07181", + "libelleAcheminement": "LE POUZIN", + "nomCommune": "LE POUZIN" }, { - "codePostal": "14250", - "codeCommune": "14232", - "libelleAcheminement": "DUCY STE MARGUERITE", - "nomCommune": "DUCY STE MARGUERITE" + "codePostal": "08400", + "codeCommune": "08410", + "libelleAcheminement": "SEMIDE", + "nomCommune": "SEMIDE" }, { - "codePostal": "53270", - "codeCommune": "53228", - "libelleAcheminement": "BLANDOUET ST JEAN", - "nomCommune": "BLANDOUET ST JEAN" + "codePostal": "21140", + "codeCommune": "21365", + "libelleAcheminement": "MAGNY LA VILLE", + "nomCommune": "MAGNY LA VILLE" }, { - "codePostal": "11360", - "codeCommune": "11305", - "libelleAcheminement": "QUINTILLAN", - "nomCommune": "QUINTILLAN" + "codePostal": "21290", + "codeCommune": "21438", + "libelleAcheminement": "MONTMOYEN", + "nomCommune": "MONTMOYEN" }, { - "codePostal": "14710", - "codeCommune": "14239", - "libelleAcheminement": "ENGLESQUEVILLE LA PERCEE", - "nomCommune": "ENGLESQUEVILLE LA PERCEE" + "codePostal": "07000", + "codeCommune": "07184", + "libelleAcheminement": "PRANLES", + "nomCommune": "PRANLES" }, { - "codePostal": "53350", - "codeCommune": "53242", - "libelleAcheminement": "ST MICHEL DE LA ROE", - "nomCommune": "ST MICHEL DE LA ROE" + "codePostal": "08250", + "codeCommune": "08412", + "libelleAcheminement": "SENUC", + "nomCommune": "SENUC" }, { - "codePostal": "11400", - "codeCommune": "11313", - "libelleAcheminement": "RICAUD", - "nomCommune": "RICAUD" + "codePostal": "21130", + "codeCommune": "21367", + "libelleAcheminement": "MAGNY MONTARLOT", + "nomCommune": "MAGNY MONTARLOT" }, { - "codePostal": "14170", - "codeCommune": "14240", - "libelleAcheminement": "EPANEY", - "nomCommune": "EPANEY" + "codePostal": "21150", + "codeCommune": "21448", + "libelleAcheminement": "MUSSY LA FOSSE", + "nomCommune": "MUSSY LA FOSSE" }, { - "codePostal": "53410", - "codeCommune": "53247", - "libelleAcheminement": "ST PIERRE LA COUR", - "nomCommune": "ST PIERRE LA COUR" + "codePostal": "07450", + "codeCommune": "07203", + "libelleAcheminement": "SAGNES ET GOUDOULET", + "nomCommune": "SAGNES ET GOUDOULET" }, { - "codePostal": "11140", - "codeCommune": "11321", - "libelleAcheminement": "ROQUEFORT DE SAULT", - "nomCommune": "ROQUEFORT DE SAULT" + "codePostal": "08430", + "codeCommune": "08422", + "libelleAcheminement": "SINGLY", + "nomCommune": "SINGLY" }, { - "codePostal": "14610", - "codeCommune": "14242", - "libelleAcheminement": "EPRON", - "nomCommune": "EPRON" + "codePostal": "21330", + "codeCommune": "21378", + "libelleAcheminement": "MARCENAY", + "nomCommune": "MARCENAY" }, { - "codePostal": "53160", - "codeCommune": "53249", - "libelleAcheminement": "VIMARTIN SUR ORTHE", - "nomCommune": "VIMARTIN SUR ORTHE" + "codePostal": "21190", + "codeCommune": "21450", + "libelleAcheminement": "NANTOUX", + "nomCommune": "NANTOUX" }, { - "codePostal": "11300", - "codeCommune": "11323", - "libelleAcheminement": "ROQUETAILLADE ET CONILHAC", - "nomCommune": "ROQUETAILLADE ET CONILHAC" + "codePostal": "07170", + "codeCommune": "07208", + "libelleAcheminement": "ST ANDEOL DE BERG", + "nomCommune": "ST ANDEOL DE BERG" }, { - "codePostal": "14190", - "codeCommune": "14252", - "libelleAcheminement": "ESTREES LA CAMPAGNE", - "nomCommune": "ESTREES LA CAMPAGNE" + "codePostal": "08300", + "codeCommune": "08426", + "libelleAcheminement": "SON", + "nomCommune": "SON" }, { - "codePostal": "53800", - "codeCommune": "53258", - "libelleAcheminement": "LA SELLE CRAONNAISE", - "nomCommune": "LA SELLE CRAONNAISE" + "codePostal": "21430", + "codeCommune": "21379", + "libelleAcheminement": "MARCHESEUIL", + "nomCommune": "MARCHESEUIL" }, { - "codePostal": "11140", - "codeCommune": "11335", - "libelleAcheminement": "STE COLOMBE SUR GUETTE", - "nomCommune": "STE COLOMBE SUR GUETTE" + "codePostal": "21390", + "codeCommune": "21457", + "libelleAcheminement": "NOIDAN", + "nomCommune": "NOIDAN" }, { - "codePostal": "14400", - "codeCommune": "14256", - "libelleAcheminement": "ETREHAM", - "nomCommune": "ETREHAM" + "codePostal": "07270", + "codeCommune": "07218", + "libelleAcheminement": "ST BASILE", + "nomCommune": "ST BASILE" }, { - "codePostal": "53270", - "codeCommune": "53265", - "libelleAcheminement": "TORCE VIVIERS EN CHARNIE", - "nomCommune": "TORCE VIVIERS EN CHARNIE" + "codePostal": "08270", + "codeCommune": "08428", + "libelleAcheminement": "SORCY BAUTHEMONT", + "nomCommune": "SORCY BAUTHEMONT" }, { - "codePostal": "11700", - "codeCommune": "11337", - "libelleAcheminement": "ST COUAT D AUDE", - "nomCommune": "ST COUAT D AUDE" + "codePostal": "21390", + "codeCommune": "21380", + "libelleAcheminement": "MARCIGNY SOUS THIL", + "nomCommune": "MARCIGNY SOUS THIL" }, { - "codePostal": "14130", - "codeCommune": "14269", - "libelleAcheminement": "FIERVILLE LES PARCS", - "nomCommune": "FIERVILLE LES PARCS" + "codePostal": "21340", + "codeCommune": "21461", + "libelleAcheminement": "NOLAY", + "nomCommune": "NOLAY" }, { - "codePostal": "53270", - "codeCommune": "53265", - "libelleAcheminement": "TORCE VIVIERS EN CHARNIE", - "nomCommune": "TORCE VIVIERS EN CHARNIE" + "codePostal": "07210", + "codeCommune": "07219", + "libelleAcheminement": "ST BAUZILE", + "nomCommune": "ST BAUZILE" }, { - "codePostal": "11800", - "codeCommune": "11342", - "libelleAcheminement": "ST FRICHOUX", - "nomCommune": "ST FRICHOUX" + "codePostal": "08300", + "codeCommune": "08435", + "libelleAcheminement": "TAGNON", + "nomCommune": "TAGNON" }, { - "codePostal": "14340", - "codeCommune": "14280", - "libelleAcheminement": "FORMENTIN", - "nomCommune": "FORMENTIN" + "codePostal": "21320", + "codeCommune": "21392", + "libelleAcheminement": "MARTROIS", + "nomCommune": "MARTROIS" }, { - "codePostal": "53480", - "codeCommune": "53267", - "libelleAcheminement": "VAIGES", - "nomCommune": "VAIGES" + "codePostal": "21490", + "codeCommune": "21462", + "libelleAcheminement": "NORGES LA VILLE", + "nomCommune": "NORGES LA VILLE" }, { - "codePostal": "11360", - "codeCommune": "11345", - "libelleAcheminement": "ST JEAN DE BARROU", - "nomCommune": "ST JEAN DE BARROU" + "codePostal": "07800", + "codeCommune": "07221", + "libelleAcheminement": "ST CIERGE LA SERRE", + "nomCommune": "ST CIERGE LA SERRE" }, { - "codePostal": "14620", - "codeCommune": "14283", - "libelleAcheminement": "FOURCHES", - "nomCommune": "FOURCHES" + "codePostal": "08350", + "codeCommune": "08445", + "libelleAcheminement": "THELONNE", + "nomCommune": "THELONNE" }, { - "codePostal": "53700", - "codeCommune": "53271", - "libelleAcheminement": "VILLAINES LA JUHEL", - "nomCommune": "VILLAINES LA JUHEL" + "codePostal": "21140", + "codeCommune": "21394", + "libelleAcheminement": "MASSINGY LES SEMUR", + "nomCommune": "MASSINGY LES SEMUR" }, { - "codePostal": "11260", - "codeCommune": "11346", - "libelleAcheminement": "ST JEAN DE PARACOL", - "nomCommune": "ST JEAN DE PARACOL" + "codePostal": "21390", + "codeCommune": "21463", + "libelleAcheminement": "NORMIER", + "nomCommune": "NORMIER" }, { - "codePostal": "14630", - "codeCommune": "14287", - "libelleAcheminement": "FRENOUVILLE", - "nomCommune": "FRENOUVILLE" + "codePostal": "07430", + "codeCommune": "07225", + "libelleAcheminement": "ST CLAIR", + "nomCommune": "ST CLAIR" }, { - "codePostal": "53170", - "codeCommune": "53273", - "libelleAcheminement": "VILLIERS CHARLEMAGNE", - "nomCommune": "VILLIERS CHARLEMAGNE" + "codePostal": "08800", + "codeCommune": "08448", + "libelleAcheminement": "THILAY", + "nomCommune": "THILAY" }, { - "codePostal": "11120", - "codeCommune": "11353", - "libelleAcheminement": "ST MARCEL SUR AUDE", - "nomCommune": "ST MARCEL SUR AUDE" + "codePostal": "21270", + "codeCommune": "21398", + "libelleAcheminement": "MAXILLY SUR SAONE", + "nomCommune": "MAXILLY SUR SAONE" }, { - "codePostal": "14210", - "codeCommune": "14297", - "libelleAcheminement": "GAVRUS", - "nomCommune": "GAVRUS" + "codePostal": "21310", + "codeCommune": "21467", + "libelleAcheminement": "OISILLY", + "nomCommune": "OISILLY" }, { - "codePostal": "54770", - "codeCommune": "54006", - "libelleAcheminement": "AGINCOURT", - "nomCommune": "AGINCOURT" + "codePostal": "07310", + "codeCommune": "07226", + "libelleAcheminement": "ST CLEMENT", + "nomCommune": "ST CLEMENT" }, { - "codePostal": "11220", - "codeCommune": "11354", - "libelleAcheminement": "ST MARTIN DES PUITS", - "nomCommune": "ST MARTIN DES PUITS" + "codePostal": "08190", + "codeCommune": "08451", + "libelleAcheminement": "LE THOUR", + "nomCommune": "LE THOUR" }, { - "codePostal": "14230", - "codeCommune": "14298", - "libelleAcheminement": "GEFOSSE FONTENAY", - "nomCommune": "GEFOSSE FONTENAY" + "codePostal": "21320", + "codeCommune": "21399", + "libelleAcheminement": "MEILLY SUR ROUVRES", + "nomCommune": "MEILLY SUR ROUVRES" }, { - "codePostal": "54460", - "codeCommune": "54007", - "libelleAcheminement": "AINGERAY", - "nomCommune": "AINGERAY" + "codePostal": "21600", + "codeCommune": "21473", + "libelleAcheminement": "OUGES", + "nomCommune": "OUGES" }, { - "codePostal": "11320", - "codeCommune": "11362", - "libelleAcheminement": "ST PAULET", - "nomCommune": "ST PAULET" + "codePostal": "07410", + "codeCommune": "07236", + "libelleAcheminement": "ST FELICIEN", + "nomCommune": "ST FELICIEN" }, { - "codePostal": "14430", - "codeCommune": "14300", - "libelleAcheminement": "GERROTS", - "nomCommune": "GERROTS" + "codePostal": "08400", + "codeCommune": "08453", + "libelleAcheminement": "TOGES", + "nomCommune": "TOGES" }, { - "codePostal": "54170", - "codeCommune": "54008", - "libelleAcheminement": "ALLAIN", - "nomCommune": "ALLAIN" + "codePostal": "21580", + "codeCommune": "21400", + "libelleAcheminement": "LE MEIX", + "nomCommune": "LE MEIX" }, { - "codePostal": "11590", - "codeCommune": "11369", - "libelleAcheminement": "SALLELES D AUDE", - "nomCommune": "SALLELES D AUDE" + "codePostal": "21250", + "codeCommune": "21474", + "libelleAcheminement": "PAGNY LA VILLE", + "nomCommune": "PAGNY LA VILLE" }, { - "codePostal": "14730", - "codeCommune": "14301", - "libelleAcheminement": "GIBERVILLE", - "nomCommune": "GIBERVILLE" + "codePostal": "07360", + "codeCommune": "07237", + "libelleAcheminement": "ST FORTUNAT SUR EYRIEUX", + "nomCommune": "ST FORTUNAT SUR EYRIEUX" }, { - "codePostal": "54800", - "codeCommune": "54009", - "libelleAcheminement": "ALLAMONT", - "nomCommune": "ALLAMONT" + "codePostal": "08160", + "codeCommune": "08469", + "libelleAcheminement": "VENDRESSE", + "nomCommune": "VENDRESSE" }, { - "codePostal": "11410", - "codeCommune": "11371", - "libelleAcheminement": "SALLES SUR L HERS", - "nomCommune": "SALLES SUR L HERS" + "codePostal": "21150", + "codeCommune": "21404", + "libelleAcheminement": "MENETREUX LE PITOIS", + "nomCommune": "MENETREUX LE PITOIS" }, { - "codePostal": "14100", - "codeCommune": "14303", - "libelleAcheminement": "GLOS", - "nomCommune": "GLOS" + "codePostal": "21270", + "codeCommune": "21482", + "libelleAcheminement": "PERRIGNY SUR L OGNON", + "nomCommune": "PERRIGNY SUR L OGNON" }, { - "codePostal": "54760", - "codeCommune": "54021", - "libelleAcheminement": "ARMAUCOURT", - "nomCommune": "ARMAUCOURT" + "codePostal": "07160", + "codeCommune": "07239", + "libelleAcheminement": "ST GENEST LACHAMP", + "nomCommune": "ST GENEST LACHAMP" }, { - "codePostal": "11600", - "codeCommune": "11372", - "libelleAcheminement": "SALSIGNE", - "nomCommune": "SALSIGNE" + "codePostal": "08000", + "codeCommune": "08480", + "libelleAcheminement": "VILLERS SEMEUSE", + "nomCommune": "VILLERS SEMEUSE" }, { - "codePostal": "14810", - "codeCommune": "14306", - "libelleAcheminement": "GONNEVILLE EN AUGE", - "nomCommune": "GONNEVILLE EN AUGE" + "codePostal": "21380", + "codeCommune": "21408", + "libelleAcheminement": "MESSIGNY ET VANTOUX", + "nomCommune": "MESSIGNY ET VANTOUX" }, { - "codePostal": "54450", - "codeCommune": "54035", - "libelleAcheminement": "AVRICOURT", - "nomCommune": "AVRICOURT" + "codePostal": "21120", + "codeCommune": "21483", + "libelleAcheminement": "PICHANGES", + "nomCommune": "PICHANGES" }, { - "codePostal": "11240", - "codeCommune": "11375", - "libelleAcheminement": "SEIGNALENS", - "nomCommune": "SEIGNALENS" + "codePostal": "07800", + "codeCommune": "07240", + "libelleAcheminement": "ST GEORGES LES BAINS", + "nomCommune": "ST GEORGES LES BAINS" }, { - "codePostal": "14680", - "codeCommune": "14309", - "libelleAcheminement": "GOUVIX", - "nomCommune": "GOUVIX" + "codePostal": "08400", + "codeCommune": "08489", + "libelleAcheminement": "VONCQ", + "nomCommune": "VONCQ" }, { - "codePostal": "54120", - "codeCommune": "54039", - "libelleAcheminement": "BACCARAT", - "nomCommune": "BACCARAT" + "codePostal": "21310", + "codeCommune": "21416", + "libelleAcheminement": "MIREBEAU SUR BEZE", + "nomCommune": "MIREBEAU SUR BEZE" }, { - "codePostal": "11400", - "codeCommune": "11383", - "libelleAcheminement": "SOUILHE", - "nomCommune": "SOUILHE" + "codePostal": "21500", + "codeCommune": "21484", + "libelleAcheminement": "PLANAY", + "nomCommune": "PLANAY" }, { - "codePostal": "14540", - "codeCommune": "14319", - "libelleAcheminement": "GRENTHEVILLE", - "nomCommune": "GRENTHEVILLE" + "codePostal": "07340", + "codeCommune": "07243", + "libelleAcheminement": "ST JACQUES D ATTICIEUX", + "nomCommune": "ST JACQUES D ATTICIEUX" }, { - "codePostal": "54120", - "codeCommune": "54039", - "libelleAcheminement": "BACCARAT", - "nomCommune": "BACCARAT" + "codePostal": "08350", + "codeCommune": "08492", + "libelleAcheminement": "VRIGNE MEUSE", + "nomCommune": "VRIGNE MEUSE" }, { - "codePostal": "11580", - "codeCommune": "11389", - "libelleAcheminement": "TERROLES", - "nomCommune": "TERROLES" + "codePostal": "21210", + "codeCommune": "21417", + "libelleAcheminement": "MISSERY", + "nomCommune": "MISSERY" }, { - "codePostal": "14400", - "codeCommune": "14322", - "libelleAcheminement": "GUERON", - "nomCommune": "GUERON" + "codePostal": "21450", + "codeCommune": "21490", + "libelleAcheminement": "POISEUL LA VILLE ET LAPERRIERE", + "nomCommune": "POISEUL LA VILLE ET LAPERRIERE" }, { - "codePostal": "54290", - "codeCommune": "54042", - "libelleAcheminement": "BAINVILLE AUX MIROIRS", - "nomCommune": "BAINVILLE AUX MIROIRS" + "codePostal": "07160", + "codeCommune": "07248", + "libelleAcheminement": "ST JEAN ROURE", + "nomCommune": "ST JEAN ROURE" }, { - "codePostal": "11200", - "codeCommune": "11390", - "libelleAcheminement": "THEZAN DES CORBIERES", - "nomCommune": "THEZAN DES CORBIERES" + "codePostal": "08200", + "codeCommune": "08494", + "libelleAcheminement": "WADELINCOURT", + "nomCommune": "WADELINCOURT" }, { - "codePostal": "14100", - "codeCommune": "14326", - "libelleAcheminement": "HERMIVAL LES VAUX", - "nomCommune": "HERMIVAL LES VAUX" + "codePostal": "21500", + "codeCommune": "21425", + "libelleAcheminement": "MONTBARD", + "nomCommune": "MONTBARD" }, { - "codePostal": "54450", - "codeCommune": "54044", - "libelleAcheminement": "BARBAS", - "nomCommune": "BARBAS" + "codePostal": "21630", + "codeCommune": "21492", + "libelleAcheminement": "POMMARD", + "nomCommune": "POMMARD" }, { - "codePostal": "11800", - "codeCommune": "11397", - "libelleAcheminement": "TREBES", - "nomCommune": "TREBES" + "codePostal": "07200", + "codeCommune": "07254", + "libelleAcheminement": "ST JULIEN DU SERRE", + "nomCommune": "ST JULIEN DU SERRE" }, { - "codePostal": "14600", - "codeCommune": "14333", - "libelleAcheminement": "HONFLEUR", - "nomCommune": "HONFLEUR" + "codePostal": "08000", + "codeCommune": "08497", + "libelleAcheminement": "WARCQ", + "nomCommune": "WARCQ" }, { - "codePostal": "54360", - "codeCommune": "54045", - "libelleAcheminement": "BARBONVILLE", - "nomCommune": "BARBONVILLE" + "codePostal": "21460", + "codeCommune": "21426", + "libelleAcheminement": "MONTBERTHAULT", + "nomCommune": "MONTBERTHAULT" }, { - "codePostal": "11350", - "codeCommune": "11401", - "libelleAcheminement": "TUCHAN", - "nomCommune": "TUCHAN" + "codePostal": "21440", + "codeCommune": "21494", + "libelleAcheminement": "PONCEY SUR L IGNON", + "nomCommune": "PONCEY SUR L IGNON" }, { - "codePostal": "14430", - "codeCommune": "14335", - "libelleAcheminement": "HOTOT EN AUGE", - "nomCommune": "HOTOT EN AUGE" + "codePostal": "07690", + "codeCommune": "07258", + "libelleAcheminement": "ST JULIEN VOCANCE", + "nomCommune": "ST JULIEN VOCANCE" }, { - "codePostal": "54980", - "codeCommune": "54051", - "libelleAcheminement": "BATILLY", - "nomCommune": "BATILLY" + "codePostal": "08110", + "codeCommune": "08501", + "libelleAcheminement": "WILLIERS", + "nomCommune": "WILLIERS" }, { - "codePostal": "11400", - "codeCommune": "11407", - "libelleAcheminement": "VERDUN EN LAURAGAIS", - "nomCommune": "VERDUN EN LAURAGAIS" + "codePostal": "21500", + "codeCommune": "21429", + "libelleAcheminement": "MONTIGNY MONTFORT", + "nomCommune": "MONTIGNY MONTFORT" }, { - "codePostal": "14510", - "codeCommune": "14338", - "libelleAcheminement": "HOULGATE", - "nomCommune": "HOULGATE" + "codePostal": "21130", + "codeCommune": "21495", + "libelleAcheminement": "PONT", + "nomCommune": "PONT" }, { - "codePostal": "54890", - "codeCommune": "54055", - "libelleAcheminement": "BAYONVILLE SUR MAD", - "nomCommune": "BAYONVILLE SUR MAD" + "codePostal": "07140", + "codeCommune": "07266", + "libelleAcheminement": "STE MARGUERITE LAFIGERE", + "nomCommune": "STE MARGUERITE LAFIGERE" }, { - "codePostal": "11250", - "codeCommune": "11408", - "libelleAcheminement": "VERZEILLE", - "nomCommune": "VERZEILLE" + "codePostal": "09600", + "codeCommune": "09002", + "libelleAcheminement": "AIGUES VIVES", + "nomCommune": "AIGUES VIVES" }, { - "codePostal": "14123", - "codeCommune": "14341", - "libelleAcheminement": "IFS", - "nomCommune": "IFS" + "codePostal": "21140", + "codeCommune": "21431", + "libelleAcheminement": "MONTIGNY SUR ARMANCON", + "nomCommune": "MONTIGNY SUR ARMANCON" }, { - "codePostal": "54610", - "codeCommune": "54059", - "libelleAcheminement": "BELLEAU", - "nomCommune": "BELLEAU" + "codePostal": "21500", + "codeCommune": "21516", + "libelleAcheminement": "QUINCEROT", + "nomCommune": "QUINCEROT" }, { - "codePostal": "11300", - "codeCommune": "11427", - "libelleAcheminement": "VILLELONGUE D AUDE", - "nomCommune": "VILLELONGUE D AUDE" + "codePostal": "07160", + "codeCommune": "07276", + "libelleAcheminement": "ST MICHEL D AURANCE", + "nomCommune": "ST MICHEL D AURANCE" }, { - "codePostal": "14170", - "codeCommune": "14345", - "libelleAcheminement": "JORT", - "nomCommune": "JORT" + "codePostal": "09310", + "codeCommune": "09004", + "libelleAcheminement": "ALBIES", + "nomCommune": "ALBIES" }, { - "codePostal": "54740", - "codeCommune": "54062", - "libelleAcheminement": "BENNEY", - "nomCommune": "BENNEY" + "codePostal": "21520", + "codeCommune": "21432", + "libelleAcheminement": "MONTIGNY SUR AUBE", + "nomCommune": "MONTIGNY SUR AUBE" }, { - "codePostal": "11310", - "codeCommune": "11428", - "libelleAcheminement": "VILLEMAGNE", - "nomCommune": "VILLEMAGNE" + "codePostal": "21700", + "codeCommune": "21517", + "libelleAcheminement": "QUINCEY", + "nomCommune": "QUINCEY" }, { - "codePostal": "14250", - "codeCommune": "14346", - "libelleAcheminement": "JUAYE MONDAYE", - "nomCommune": "JUAYE MONDAYE" + "codePostal": "07360", + "codeCommune": "07278", + "libelleAcheminement": "ST MICHEL DE CHABRILLANOUX", + "nomCommune": "ST MICHEL DE CHABRILLANOUX" }, { - "codePostal": "54560", - "codeCommune": "54069", - "libelleAcheminement": "BEUVILLERS", - "nomCommune": "BEUVILLERS" + "codePostal": "09240", + "codeCommune": "09009", + "libelleAcheminement": "ALZEN", + "nomCommune": "ALZEN" }, { - "codePostal": "11290", - "codeCommune": "11432", - "libelleAcheminement": "VILLENEUVE LES MONTREAL", - "nomCommune": "VILLENEUVE LES MONTREAL" + "codePostal": "21220", + "codeCommune": "21442", + "libelleAcheminement": "MOREY ST DENIS", + "nomCommune": "MOREY ST DENIS" }, { - "codePostal": "14260", - "codeCommune": "14347", - "libelleAcheminement": "DIALAN SUR CHAINE", - "nomCommune": "DIALAN SUR CHAINE" + "codePostal": "21500", + "codeCommune": "21518", + "libelleAcheminement": "QUINCY LE VICOMTE", + "nomCommune": "QUINCY LE VICOMTE" }, { - "codePostal": "54380", - "codeCommune": "54072", - "libelleAcheminement": "BEZAUMONT", - "nomCommune": "BEZAUMONT" + "codePostal": "07220", + "codeCommune": "07279", + "libelleAcheminement": "ST MONTAN", + "nomCommune": "ST MONTAN" }, { - "codePostal": "11150", - "codeCommune": "11434", - "libelleAcheminement": "VILLEPINTE", - "nomCommune": "VILLEPINTE" + "codePostal": "09800", + "codeCommune": "09011", + "libelleAcheminement": "ANTRAS", + "nomCommune": "ANTRAS" }, { - "codePostal": "14310", - "codeCommune": "14353", - "libelleAcheminement": "LANDES SUR AJON", - "nomCommune": "LANDES SUR AJON" + "codePostal": "21400", + "codeCommune": "21444", + "libelleAcheminement": "MOSSON", + "nomCommune": "MOSSON" }, { - "codePostal": "54300", - "codeCommune": "54074", - "libelleAcheminement": "BIENVILLE LA PETITE", - "nomCommune": "BIENVILLE LA PETITE" + "codePostal": "21150", + "codeCommune": "21528", + "libelleAcheminement": "LA ROCHE VANNEAU", + "nomCommune": "LA ROCHE VANNEAU" }, { - "codePostal": "11360", - "codeCommune": "11436", - "libelleAcheminement": "VILLESEQUE DES CORBIERES", - "nomCommune": "VILLESEQUE DES CORBIERES" + "codePostal": "07450", + "codeCommune": "07282", + "libelleAcheminement": "ST PIERRE DE COLOMBIER", + "nomCommune": "ST PIERRE DE COLOMBIER" }, { - "codePostal": "14480", - "codeCommune": "14355", - "libelleAcheminement": "PONTS SUR SEULLES", - "nomCommune": "PONTS SUR SEULLES" + "codePostal": "09250", + "codeCommune": "09012", + "libelleAcheminement": "APPY", + "nomCommune": "APPY" }, { - "codePostal": "54700", - "codeCommune": "54079", - "libelleAcheminement": "BLENOD LES PONT A MOUSSON", - "nomCommune": "BLENOD LES PONT A MOUSSON" + "codePostal": "21390", + "codeCommune": "21449", + "libelleAcheminement": "NAN SOUS THIL", + "nomCommune": "NAN SOUS THIL" }, { - "codePostal": "12520", - "codeCommune": "12002", - "libelleAcheminement": "AGUESSAC", - "nomCommune": "AGUESSAC" + "codePostal": "21500", + "codeCommune": "21530", + "libelleAcheminement": "ROUGEMONT", + "nomCommune": "ROUGEMONT" }, { - "codePostal": "14250", - "codeCommune": "14364", - "libelleAcheminement": "LINGEVRES", - "nomCommune": "LINGEVRES" + "codePostal": "07520", + "codeCommune": "07285", + "libelleAcheminement": "ST PIERRE SUR DOUX", + "nomCommune": "ST PIERRE SUR DOUX" }, { - "codePostal": "54113", - "codeCommune": "54080", - "libelleAcheminement": "BLENOD LES TOUL", - "nomCommune": "BLENOD LES TOUL" + "codePostal": "09400", + "codeCommune": "09016", + "libelleAcheminement": "ARNAVE", + "nomCommune": "ARNAVE" }, { - "codePostal": "12120", - "codeCommune": "12015", - "libelleAcheminement": "AURIAC LAGAST", - "nomCommune": "AURIAC LAGAST" + "codePostal": "21330", + "codeCommune": "21454", + "libelleAcheminement": "NICEY", + "nomCommune": "NICEY" }, { - "codePostal": "14330", - "codeCommune": "14370", - "libelleAcheminement": "LE MOLAY LITTRY", - "nomCommune": "LE MOLAY LITTRY" + "codePostal": "21110", + "codeCommune": "21532", + "libelleAcheminement": "ROUVRES EN PLAINE", + "nomCommune": "ROUVRES EN PLAINE" }, { - "codePostal": "54620", - "codeCommune": "54081", - "libelleAcheminement": "BOISMONT", - "nomCommune": "BOISMONT" + "codePostal": "07580", + "codeCommune": "07287", + "libelleAcheminement": "ST PONS", + "nomCommune": "ST PONS" }, { - "codePostal": "12260", - "codeCommune": "12018", - "libelleAcheminement": "BALAGUIER D OLT", - "nomCommune": "BALAGUIER D OLT" + "codePostal": "09800", + "codeCommune": "09017", + "libelleAcheminement": "ARRIEN EN BETHMALE", + "nomCommune": "ARRIEN EN BETHMALE" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "21340", + "codeCommune": "21461", + "libelleAcheminement": "NOLAY", + "nomCommune": "NOLAY" }, { - "codePostal": "54770", - "codeCommune": "54089", - "libelleAcheminement": "BOUXIERES AUX CHENES", - "nomCommune": "BOUXIERES AUX CHENES" + "codePostal": "21200", + "codeCommune": "21534", + "libelleAcheminement": "RUFFEY LES BEAUNE", + "nomCommune": "RUFFEY LES BEAUNE" }, { - "codePostal": "12380", - "codeCommune": "12019", - "libelleAcheminement": "BALAGUIER SUR RANCE", - "nomCommune": "BALAGUIER SUR RANCE" + "codePostal": "07000", + "codeCommune": "07288", + "libelleAcheminement": "ST PRIEST", + "nomCommune": "ST PRIEST" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "09310", + "codeCommune": "09024", + "libelleAcheminement": "ASTON", + "nomCommune": "ASTON" }, { - "codePostal": "54136", - "codeCommune": "54090", - "libelleAcheminement": "BOUXIERES AUX DAMES", - "nomCommune": "BOUXIERES AUX DAMES" + "codePostal": "21450", + "codeCommune": "21466", + "libelleAcheminement": "OIGNY", + "nomCommune": "OIGNY" }, { - "codePostal": "12270", - "codeCommune": "12029", - "libelleAcheminement": "BOR ET BAR", - "nomCommune": "BOR ET BAR" + "codePostal": "21260", + "codeCommune": "21536", + "libelleAcheminement": "SACQUENAY", + "nomCommune": "SACQUENAY" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "07440", + "codeCommune": "07297", + "libelleAcheminement": "ST SYLVESTRE", + "nomCommune": "ST SYLVESTRE" }, { - "codePostal": "54930", - "codeCommune": "54092", - "libelleAcheminement": "BOUZANVILLE", - "nomCommune": "BOUZANVILLE" + "codePostal": "09230", + "codeCommune": "09037", + "libelleAcheminement": "BARJAC", + "nomCommune": "BARJAC" }, { - "codePostal": "12160", - "codeCommune": "12032", - "libelleAcheminement": "BOUSSAC", - "nomCommune": "BOUSSAC" + "codePostal": "21610", + "codeCommune": "21468", + "libelleAcheminement": "ORAIN", + "nomCommune": "ORAIN" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "21540", + "codeCommune": "21539", + "libelleAcheminement": "ST ANTHOT", + "nomCommune": "ST ANTHOT" }, { - "codePostal": "54290", - "codeCommune": "54098", - "libelleAcheminement": "BREMONCOURT", - "nomCommune": "BREMONCOURT" + "codePostal": "07210", + "codeCommune": "07302", + "libelleAcheminement": "ST VINCENT DE BARRES", + "nomCommune": "ST VINCENT DE BARRES" }, { - "codePostal": "12350", - "codeCommune": "12034", - "libelleAcheminement": "BRANDONNET", - "nomCommune": "BRANDONNET" + "codePostal": "09100", + "codeCommune": "09050", + "libelleAcheminement": "BENAGUES", + "nomCommune": "BENAGUES" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "21360", + "codeCommune": "21476", + "libelleAcheminement": "PAINBLANC", + "nomCommune": "PAINBLANC" }, { - "codePostal": "54150", - "codeCommune": "54099", - "libelleAcheminement": "VAL DE BRIEY", - "nomCommune": "VAL DE BRIEY" + "codePostal": "21530", + "codeCommune": "21548", + "libelleAcheminement": "ST GERMAIN DE MODEON", + "nomCommune": "ST GERMAIN DE MODEON" }, { - "codePostal": "12400", - "codeCommune": "12042", - "libelleAcheminement": "CALMELS ET LE VIALA", - "nomCommune": "CALMELS ET LE VIALA" + "codePostal": "07400", + "codeCommune": "07311", + "libelleAcheminement": "SCEAUTRES", + "nomCommune": "SCEAUTRES" }, { - "codePostal": "14290", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "09500", + "codeCommune": "09052", + "libelleAcheminement": "BESSET", + "nomCommune": "BESSET" }, { - "codePostal": "54110", - "codeCommune": "54104", - "libelleAcheminement": "BUISSONCOURT", - "nomCommune": "BUISSONCOURT" + "codePostal": "21130", + "codeCommune": "21493", + "libelleAcheminement": "PONCEY LES ATHEE", + "nomCommune": "PONCEY LES ATHEE" }, { - "codePostal": "12800", - "codeCommune": "12046", - "libelleAcheminement": "CAMJAC", - "nomCommune": "CAMJAC" + "codePostal": "21500", + "codeCommune": "21550", + "libelleAcheminement": "ST GERMAIN LES SENAILLY", + "nomCommune": "ST GERMAIN LES SENAILLY" }, { - "codePostal": "14111", - "codeCommune": "14383", - "libelleAcheminement": "LOUVIGNY", - "nomCommune": "LOUVIGNY" + "codePostal": "07380", + "codeCommune": "07315", + "libelleAcheminement": "LA SOUCHE", + "nomCommune": "LA SOUCHE" }, { - "codePostal": "54210", - "codeCommune": "54108", - "libelleAcheminement": "BURTHECOURT AUX CHENES", - "nomCommune": "BURTHECOURT AUX CHENES" + "codePostal": "09250", + "codeCommune": "09053", + "libelleAcheminement": "BESTIAC", + "nomCommune": "BESTIAC" }, { - "codePostal": "12140", - "codeCommune": "12048", - "libelleAcheminement": "CAMPOURIEZ", - "nomCommune": "CAMPOURIEZ" + "codePostal": "21250", + "codeCommune": "21502", + "libelleAcheminement": "POUILLY SUR SAONE", + "nomCommune": "POUILLY SUR SAONE" }, { - "codePostal": "14530", - "codeCommune": "14384", - "libelleAcheminement": "LUC SUR MER", - "nomCommune": "LUC SUR MER" + "codePostal": "21200", + "codeCommune": "21558", + "libelleAcheminement": "STE MARIE LA BLANCHE", + "nomCommune": "STE MARIE LA BLANCHE" }, { - "codePostal": "54280", - "codeCommune": "54113", - "libelleAcheminement": "CHAMPENOUX", - "nomCommune": "CHAMPENOUX" + "codePostal": "07150", + "codeCommune": "07328", + "libelleAcheminement": "VAGNAS", + "nomCommune": "VAGNAS" }, { - "codePostal": "12160", - "codeCommune": "12056", - "libelleAcheminement": "BARAQUEVILLE", - "nomCommune": "BARAQUEVILLE" + "codePostal": "09160", + "codeCommune": "09054", + "libelleAcheminement": "BETCHAT", + "nomCommune": "BETCHAT" }, { - "codePostal": "14400", - "codeCommune": "14385", - "libelleAcheminement": "MAGNY EN BESSIN", - "nomCommune": "MAGNY EN BESSIN" + "codePostal": "21610", + "codeCommune": "21503", + "libelleAcheminement": "POUILLY SUR VINGEANNE", + "nomCommune": "POUILLY SUR VINGEANNE" }, { - "codePostal": "54470", - "codeCommune": "54119", - "libelleAcheminement": "CHAREY", - "nomCommune": "CHAREY" + "codePostal": "21210", + "codeCommune": "21560", + "libelleAcheminement": "ST MARTIN DE LA MER", + "nomCommune": "ST MARTIN DE LA MER" }, { - "codePostal": "12210", - "codeCommune": "12058", - "libelleAcheminement": "CASSUEJOULS", - "nomCommune": "CASSUEJOULS" + "codePostal": "07110", + "codeCommune": "07329", + "libelleAcheminement": "VALGORGE", + "nomCommune": "VALGORGE" }, { - "codePostal": "14310", - "codeCommune": "14389", - "libelleAcheminement": "MAISONCELLES PELVEY", - "nomCommune": "MAISONCELLES PELVEY" + "codePostal": "09100", + "codeCommune": "09056", + "libelleAcheminement": "BEZAC", + "nomCommune": "BEZAC" }, { - "codePostal": "54200", - "codeCommune": "54128", - "libelleAcheminement": "CHOLOY MENILLOT", - "nomCommune": "CHOLOY MENILLOT" + "codePostal": "21700", + "codeCommune": "21506", + "libelleAcheminement": "PREMEAUX PRISSEY", + "nomCommune": "PREMEAUX PRISSEY" }, { - "codePostal": "12230", - "codeCommune": "12063", - "libelleAcheminement": "LA CAVALERIE", - "nomCommune": "LA CAVALERIE" + "codePostal": "21610", + "codeCommune": "21562", + "libelleAcheminement": "ST MAURICE SUR VINGEANNE", + "nomCommune": "ST MAURICE SUR VINGEANNE" }, { - "codePostal": "14210", - "codeCommune": "14390", - "libelleAcheminement": "MAISONCELLES SUR AJON", - "nomCommune": "MAISONCELLES SUR AJON" + "codePostal": "07600", + "codeCommune": "07331", + "libelleAcheminement": "VALS LES BAINS", + "nomCommune": "VALS LES BAINS" }, { - "codePostal": "54200", - "codeCommune": "54128", - "libelleAcheminement": "CHOLOY MENILLOT", - "nomCommune": "CHOLOY MENILLOT" + "codePostal": "09800", + "codeCommune": "09059", + "libelleAcheminement": "BONAC IRAZEIN", + "nomCommune": "BONAC IRAZEIN" }, { - "codePostal": "12320", - "codeCommune": "12076", - "libelleAcheminement": "CONQUES EN ROUERGUE", - "nomCommune": "CONQUES EN ROUERGUE" + "codePostal": "21400", + "codeCommune": "21510", + "libelleAcheminement": "PRUSLY SUR OURCE", + "nomCommune": "PRUSLY SUR OURCE" }, { - "codePostal": "14400", - "codeCommune": "14391", - "libelleAcheminement": "MAISONS", - "nomCommune": "MAISONS" + "codePostal": "21700", + "codeCommune": "21564", + "libelleAcheminement": "ST NICOLAS LES CITEAUX", + "nomCommune": "ST NICOLAS LES CITEAUX" }, { - "codePostal": "54480", - "codeCommune": "54129", - "libelleAcheminement": "CIREY SUR VEZOUZE", - "nomCommune": "CIREY SUR VEZOUZE" + "codePostal": "07410", + "codeCommune": "07335", + "libelleAcheminement": "VAUDEVANT", + "nomCommune": "VAUDEVANT" }, { - "codePostal": "12210", - "codeCommune": "12088", - "libelleAcheminement": "CURIERES", - "nomCommune": "CURIERES" + "codePostal": "09310", + "codeCommune": "09064", + "libelleAcheminement": "BOUAN", + "nomCommune": "BOUAN" }, { - "codePostal": "14210", - "codeCommune": "14393", - "libelleAcheminement": "MAIZET", - "nomCommune": "MAIZET" + "codePostal": "21800", + "codeCommune": "21515", + "libelleAcheminement": "QUETIGNY", + "nomCommune": "QUETIGNY" }, { - "codePostal": "54330", - "codeCommune": "54132", - "libelleAcheminement": "CLEREY SUR BRENON", - "nomCommune": "CLEREY SUR BRENON" + "codePostal": "21260", + "codeCommune": "21599", + "libelleAcheminement": "SELONGEY", + "nomCommune": "SELONGEY" }, { - "codePostal": "12390", - "codeCommune": "12095", - "libelleAcheminement": "ESCANDOLIERES", - "nomCommune": "ESCANDOLIERES" + "codePostal": "07000", + "codeCommune": "07340", + "libelleAcheminement": "VEYRAS", + "nomCommune": "VEYRAS" }, { - "codePostal": "14480", - "codeCommune": "14406", - "libelleAcheminement": "MOULINS EN BESSIN", - "nomCommune": "MOULINS EN BESSIN" + "codePostal": "09320", + "codeCommune": "09065", + "libelleAcheminement": "BOUSSENAC", + "nomCommune": "BOUSSENAC" }, { - "codePostal": "54370", - "codeCommune": "54133", - "libelleAcheminement": "COINCOURT", - "nomCommune": "COINCOURT" + "codePostal": "21290", + "codeCommune": "21519", + "libelleAcheminement": "RECEY SUR OURCE", + "nomCommune": "RECEY SUR OURCE" }, { - "codePostal": "12300", - "codeCommune": "12100", - "libelleAcheminement": "FIRMI", - "nomCommune": "FIRMI" + "codePostal": "21140", + "codeCommune": "21603", + "libelleAcheminement": "SEMUR EN AUXOIS", + "nomCommune": "SEMUR EN AUXOIS" }, { - "codePostal": "14810", - "codeCommune": "14409", - "libelleAcheminement": "MERVILLE FRANCEVILLE PLAGE", - "nomCommune": "MERVILLE FRANCEVILLE PLAGE" + "codePostal": "07220", + "codeCommune": "07346", + "libelleAcheminement": "VIVIERS", + "nomCommune": "VIVIERS" }, { - "codePostal": "54110", - "codeCommune": "54139", - "libelleAcheminement": "COURBESSEAUX", - "nomCommune": "COURBESSEAUX" + "codePostal": "09000", + "codeCommune": "09068", + "libelleAcheminement": "BURRET", + "nomCommune": "BURRET" }, { - "codePostal": "12310", - "codeCommune": "12107", - "libelleAcheminement": "GAILLAC D AVEYRON", - "nomCommune": "GAILLAC D AVEYRON" + "codePostal": "21310", + "codeCommune": "21522", + "libelleAcheminement": "RENEVE", + "nomCommune": "RENEVE" }, { - "codePostal": "14100", - "codeCommune": "14419", - "libelleAcheminement": "LE MESNIL EUDES", - "nomCommune": "LE MESNIL EUDES" + "codePostal": "21140", + "codeCommune": "21612", + "libelleAcheminement": "SOUHEY", + "nomCommune": "SOUHEY" }, { - "codePostal": "54930", - "codeCommune": "54140", - "libelleAcheminement": "COURCELLES", - "nomCommune": "COURCELLES" + "codePostal": "08310", + "codeCommune": "08005", + "libelleAcheminement": "ALINCOURT", + "nomCommune": "ALINCOURT" }, { - "codePostal": "12220", - "codeCommune": "12108", - "libelleAcheminement": "GALGAN", - "nomCommune": "GALGAN" + "codePostal": "09120", + "codeCommune": "09072", + "libelleAcheminement": "CALZAN", + "nomCommune": "CALZAN" }, { - "codePostal": "14140", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "21390", + "codeCommune": "21529", + "libelleAcheminement": "ROILLY", + "nomCommune": "ROILLY" }, { - "codePostal": "54113", - "codeCommune": "54146", - "libelleAcheminement": "CREZILLES", - "nomCommune": "CREZILLES" + "codePostal": "21110", + "codeCommune": "21623", + "libelleAcheminement": "TART", + "nomCommune": "TART" }, { - "codePostal": "12390", - "codeCommune": "12111", - "libelleAcheminement": "GOUTRENS", - "nomCommune": "GOUTRENS" + "codePostal": "08300", + "codeCommune": "08021", + "libelleAcheminement": "ARNICOURT", + "nomCommune": "ARNICOURT" }, { - "codePostal": "14140", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "09300", + "codeCommune": "09080", + "libelleAcheminement": "CARLA DE ROQUEFORT", + "nomCommune": "CARLA DE ROQUEFORT" }, { - "codePostal": "54300", - "codeCommune": "54148", - "libelleAcheminement": "CROISMARE", - "nomCommune": "CROISMARE" + "codePostal": "21530", + "codeCommune": "21531", + "libelleAcheminement": "ROUVRAY", + "nomCommune": "ROUVRAY" }, { - "codePostal": "12600", - "codeCommune": "12118", - "libelleAcheminement": "LACROIX BARREZ", - "nomCommune": "LACROIX BARREZ" + "codePostal": "21150", + "codeCommune": "21627", + "libelleAcheminement": "THENISSEY", + "nomCommune": "THENISSEY" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "08310", + "codeCommune": "08032", + "libelleAcheminement": "AUSSONCE", + "nomCommune": "AUSSONCE" }, { - "codePostal": "54360", - "codeCommune": "54152", - "libelleAcheminement": "DAMELEVIERES", - "nomCommune": "DAMELEVIERES" + "codePostal": "09420", + "codeCommune": "09082", + "libelleAcheminement": "CASTELNAU DURBAN", + "nomCommune": "CASTELNAU DURBAN" }, { - "codePostal": "12350", - "codeCommune": "12121", - "libelleAcheminement": "LANUEJOULS", - "nomCommune": "LANUEJOULS" + "codePostal": "21530", + "codeCommune": "21538", + "libelleAcheminement": "ST ANDEUX", + "nomCommune": "ST ANDEUX" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "21460", + "codeCommune": "21635", + "libelleAcheminement": "THOSTE", + "nomCommune": "THOSTE" }, { - "codePostal": "54470", - "codeCommune": "54153", - "libelleAcheminement": "DAMPVITOUX", - "nomCommune": "DAMPVITOUX" + "codePostal": "08240", + "codeCommune": "08033", + "libelleAcheminement": "AUTHE", + "nomCommune": "AUTHE" }, { - "codePostal": "12380", - "codeCommune": "12125", - "libelleAcheminement": "LAVAL ROQUECEZIERE", - "nomCommune": "LAVAL ROQUECEZIERE" + "codePostal": "09130", + "codeCommune": "09083", + "libelleAcheminement": "CASTERAS", + "nomCommune": "CASTERAS" }, { - "codePostal": "14100", - "codeCommune": "14435", - "libelleAcheminement": "LES MONCEAUX", - "nomCommune": "LES MONCEAUX" + "codePostal": "21700", + "codeCommune": "21542", + "libelleAcheminement": "ST BERNARD", + "nomCommune": "ST BERNARD" }, { - "codePostal": "54380", - "codeCommune": "54157", - "libelleAcheminement": "DIEULOUARD", - "nomCommune": "DIEULOUARD" + "codePostal": "21460", + "codeCommune": "21640", + "libelleAcheminement": "TORCY ET POULIGNY", + "nomCommune": "TORCY ET POULIGNY" }, { - "codePostal": "12300", - "codeCommune": "12130", - "libelleAcheminement": "LIVINHAC LE HAUT", - "nomCommune": "LIVINHAC LE HAUT" + "codePostal": "08260", + "codeCommune": "08037", + "libelleAcheminement": "AUVILLERS LES FORGES", + "nomCommune": "AUVILLERS LES FORGES" }, { - "codePostal": "14230", - "codeCommune": "14439", - "libelleAcheminement": "MONFREVILLE", - "nomCommune": "MONFREVILLE" + "codePostal": "09350", + "codeCommune": "09084", + "libelleAcheminement": "CASTEX", + "nomCommune": "CASTEX" }, { - "codePostal": "54450", - "codeCommune": "54161", - "libelleAcheminement": "DOMEVRE SUR VEZOUZE", - "nomCommune": "DOMEVRE SUR VEZOUZE" + "codePostal": "21290", + "codeCommune": "21543", + "libelleAcheminement": "ST BROING LES MOINES", + "nomCommune": "ST BROING LES MOINES" }, { - "codePostal": "12450", - "codeCommune": "12133", - "libelleAcheminement": "LUC LA PRIMAUBE", - "nomCommune": "LUC LA PRIMAUBE" + "codePostal": "21250", + "codeCommune": "21647", + "libelleAcheminement": "TRUGNY", + "nomCommune": "TRUGNY" }, { - "codePostal": "14340", - "codeCommune": "14448", - "libelleAcheminement": "MONTREUIL EN AUGE", - "nomCommune": "MONTREUIL EN AUGE" + "codePostal": "08430", + "codeCommune": "08041", + "libelleAcheminement": "BAALONS", + "nomCommune": "BAALONS" }, { - "codePostal": "54119", - "codeCommune": "54162", - "libelleAcheminement": "DOMGERMAIN", - "nomCommune": "DOMGERMAIN" + "codePostal": "09120", + "codeCommune": "09090", + "libelleAcheminement": "CAZAUX", + "nomCommune": "CAZAUX" }, { - "codePostal": "12220", - "codeCommune": "12134", - "libelleAcheminement": "LUGAN", - "nomCommune": "LUGAN" + "codePostal": "21350", + "codeCommune": "21544", + "libelleAcheminement": "STE COLOMBE EN AUXOIS", + "nomCommune": "STE COLOMBE EN AUXOIS" }, { - "codePostal": "14310", - "codeCommune": "14449", - "libelleAcheminement": "MONTS EN BESSIN", - "nomCommune": "MONTS EN BESSIN" + "codePostal": "21350", + "codeCommune": "21649", + "libelleAcheminement": "UNCEY LE FRANC", + "nomCommune": "UNCEY LE FRANC" }, { - "codePostal": "54450", - "codeCommune": "54163", - "libelleAcheminement": "DOMJEVIN", - "nomCommune": "DOMJEVIN" + "codePostal": "08220", + "codeCommune": "08046", + "libelleAcheminement": "BANOGNE RECOUVRANCE", + "nomCommune": "BANOGNE RECOUVRANCE" }, { - "codePostal": "12270", - "codeCommune": "12135", - "libelleAcheminement": "LUNAC", - "nomCommune": "LUNAC" + "codePostal": "09140", + "codeCommune": "09100", + "libelleAcheminement": "COUFLENS", + "nomCommune": "COUFLENS" }, { - "codePostal": "14100", - "codeCommune": "14466", - "libelleAcheminement": "NOROLLES", - "nomCommune": "NOROLLES" + "codePostal": "21400", + "codeCommune": "21545", + "libelleAcheminement": "STE COLOMBE SUR SEINE", + "nomCommune": "STE COLOMBE SUR SEINE" }, { - "codePostal": "54770", - "codeCommune": "54168", - "libelleAcheminement": "DOMMARTIN SOUS AMANCE", - "nomCommune": "DOMMARTIN SOUS AMANCE" + "codePostal": "21320", + "codeCommune": "21652", + "libelleAcheminement": "VANDENESSE EN AUXOIS", + "nomCommune": "VANDENESSE EN AUXOIS" }, { - "codePostal": "12100", - "codeCommune": "12145", - "libelleAcheminement": "MILLAU", - "nomCommune": "MILLAU" + "codePostal": "08430", + "codeCommune": "08047", + "libelleAcheminement": "BARBAISE", + "nomCommune": "BARBAISE" }, { - "codePostal": "14210", - "codeCommune": "14475", - "libelleAcheminement": "VAL D ARRY", - "nomCommune": "VAL D ARRY" + "codePostal": "09140", + "codeCommune": "09100", + "libelleAcheminement": "COUFLENS", + "nomCommune": "COUFLENS" }, { - "codePostal": "54490", - "codeCommune": "54169", - "libelleAcheminement": "DOMPRIX", - "nomCommune": "DOMPRIX" + "codePostal": "21690", + "codeCommune": "21552", + "libelleAcheminement": "ST HELIER", + "nomCommune": "ST HELIER" }, { - "codePostal": "12210", - "codeCommune": "12156", - "libelleAcheminement": "MONTPEYROUX", - "nomCommune": "MONTPEYROUX" + "codePostal": "21110", + "codeCommune": "21656", + "libelleAcheminement": "VARANGES", + "nomCommune": "VARANGES" }, { - "codePostal": "14290", - "codeCommune": "14478", - "libelleAcheminement": "ORBEC", - "nomCommune": "ORBEC" + "codePostal": "08240", + "codeCommune": "08049", + "libelleAcheminement": "BAR LES BUZANCY", + "nomCommune": "BAR LES BUZANCY" }, { - "codePostal": "54800", - "codeCommune": "54171", - "libelleAcheminement": "DONCOURT LES CONFLANS", - "nomCommune": "DONCOURT LES CONFLANS" + "codePostal": "09120", + "codeCommune": "09104", + "libelleAcheminement": "DALOU", + "nomCommune": "DALOU" }, { - "codePostal": "12630", - "codeCommune": "12157", - "libelleAcheminement": "MONTROZIER", - "nomCommune": "MONTROZIER" + "codePostal": "21170", + "codeCommune": "21554", + "libelleAcheminement": "ST JEAN DE LOSNE", + "nomCommune": "ST JEAN DE LOSNE" }, { - "codePostal": "14590", - "codeCommune": "14484", - "libelleAcheminement": "OUILLY DU HOULEY", - "nomCommune": "OUILLY DU HOULEY" + "codePostal": "21260", + "codeCommune": "21665", + "libelleAcheminement": "VERNOIS LES VESVRES", + "nomCommune": "VERNOIS LES VESVRES" }, { - "codePostal": "54370", - "codeCommune": "54173", - "libelleAcheminement": "DROUVILLE", - "nomCommune": "DROUVILLE" + "codePostal": "08140", + "codeCommune": "08053", + "libelleAcheminement": "BAZEILLES", + "nomCommune": "BAZEILLES" }, { - "codePostal": "12630", - "codeCommune": "12157", - "libelleAcheminement": "MONTROZIER", - "nomCommune": "MONTROZIER" + "codePostal": "09600", + "codeCommune": "09107", + "libelleAcheminement": "DUN", + "nomCommune": "DUN" }, { - "codePostal": "14150", - "codeCommune": "14488", - "libelleAcheminement": "OUISTREHAM", - "nomCommune": "OUISTREHAM" + "codePostal": "21490", + "codeCommune": "21555", + "libelleAcheminement": "ST JULIEN", + "nomCommune": "ST JULIEN" }, { - "codePostal": "54200", - "codeCommune": "54174", - "libelleAcheminement": "ECROUVES", - "nomCommune": "ECROUVES" + "codePostal": "21260", + "codeCommune": "21667", + "libelleAcheminement": "VERONNES", + "nomCommune": "VERONNES" }, { - "codePostal": "12720", - "codeCommune": "12160", - "libelleAcheminement": "MOSTUEJOULS", - "nomCommune": "MOSTUEJOULS" + "codePostal": "08300", + "codeCommune": "08062", + "libelleAcheminement": "BERTONCOURT", + "nomCommune": "BERTONCOURT" }, { - "codePostal": "14390", - "codeCommune": "14499", - "libelleAcheminement": "PETIVILLE", - "nomCommune": "PETIVILLE" + "codePostal": "09000", + "codeCommune": "09130", + "libelleAcheminement": "GANAC", + "nomCommune": "GANAC" }, { - "codePostal": "54260", - "codeCommune": "54178", - "libelleAcheminement": "EPIEZ SUR CHIERS", - "nomCommune": "EPIEZ SUR CHIERS" + "codePostal": "21410", + "codeCommune": "21559", + "libelleAcheminement": "STE MARIE SUR OUCHE", + "nomCommune": "STE MARIE SUR OUCHE" }, { - "codePostal": "12190", - "codeCommune": "12172", - "libelleAcheminement": "LE NAYRAC", - "nomCommune": "LE NAYRAC" + "codePostal": "21690", + "codeCommune": "21670", + "libelleAcheminement": "VERREY SOUS SALMAISE", + "nomCommune": "VERREY SOUS SALMAISE" }, { - "codePostal": "14130", - "codeCommune": "14500", - "libelleAcheminement": "PIERREFITTE EN AUGE", - "nomCommune": "PIERREFITTE EN AUGE" + "codePostal": "08190", + "codeCommune": "08070", + "libelleAcheminement": "BLANZY LA SALONNAISE", + "nomCommune": "BLANZY LA SALONNAISE" }, { - "codePostal": "54610", - "codeCommune": "54179", - "libelleAcheminement": "EPLY", - "nomCommune": "EPLY" + "codePostal": "09250", + "codeCommune": "09131", + "libelleAcheminement": "GARANOU", + "nomCommune": "GARANOU" }, { - "codePostal": "12510", - "codeCommune": "12174", - "libelleAcheminement": "OLEMPS", - "nomCommune": "OLEMPS" + "codePostal": "21540", + "codeCommune": "21563", + "libelleAcheminement": "ST MESMIN", + "nomCommune": "ST MESMIN" }, { - "codePostal": "14590", - "codeCommune": "14504", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "21430", + "codeCommune": "21675", + "libelleAcheminement": "VIANGES", + "nomCommune": "VIANGES" }, { - "codePostal": "54760", - "codeCommune": "54188", - "libelleAcheminement": "FAULX", - "nomCommune": "FAULX" + "codePostal": "08260", + "codeCommune": "08071", + "libelleAcheminement": "BLOMBAY", + "nomCommune": "BLOMBAY" }, { - "codePostal": "12130", - "codeCommune": "12182", - "libelleAcheminement": "PIERREFICHE", - "nomCommune": "PIERREFICHE" + "codePostal": "09700", + "codeCommune": "09132", + "libelleAcheminement": "GAUDIES", + "nomCommune": "GAUDIES" }, { - "codePostal": "14440", - "codeCommune": "14509", - "libelleAcheminement": "PLUMETOT", - "nomCommune": "PLUMETOT" + "codePostal": "21270", + "codeCommune": "21571", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "54115", - "codeCommune": "54189", - "libelleAcheminement": "FAVIERES", - "nomCommune": "FAVIERES" + "codePostal": "21330", + "codeCommune": "21693", + "libelleAcheminement": "VILLEDIEU", + "nomCommune": "VILLEDIEU" }, { - "codePostal": "12240", - "codeCommune": "12189", - "libelleAcheminement": "PRADINAS", - "nomCommune": "PRADINAS" + "codePostal": "08290", + "codeCommune": "08073", + "libelleAcheminement": "BOSSUS LES RUMIGNY", + "nomCommune": "BOSSUS LES RUMIGNY" }, { - "codePostal": "14340", - "codeCommune": "14520", - "libelleAcheminement": "LE PRE D AUGE", - "nomCommune": "LE PRE D AUGE" + "codePostal": "09300", + "codeCommune": "09142", + "libelleAcheminement": "ILHAT", + "nomCommune": "ILHAT" }, { - "codePostal": "54115", - "codeCommune": "54190", - "libelleAcheminement": "FECOCOURT", - "nomCommune": "FECOCOURT" + "codePostal": "21440", + "codeCommune": "21573", + "libelleAcheminement": "ST SEINE L ABBAYE", + "nomCommune": "ST SEINE L ABBAYE" }, { - "codePostal": "12640", - "codeCommune": "12200", - "libelleAcheminement": "RIVIERE SUR TARN", - "nomCommune": "RIVIERE SUR TARN" + "codePostal": "21700", + "codeCommune": "21698", + "libelleAcheminement": "VILLERS LA FAYE", + "nomCommune": "VILLERS LA FAYE" }, { - "codePostal": "14270", - "codeCommune": "14527", - "libelleAcheminement": "BELLE VIE EN AUGE", - "nomCommune": "BELLE VIE EN AUGE" + "codePostal": "08430", + "codeCommune": "08080", + "libelleAcheminement": "BOUVELLEMONT", + "nomCommune": "BOUVELLEMONT" }, { - "codePostal": "54110", - "codeCommune": "54195", - "libelleAcheminement": "FLAINVAL", - "nomCommune": "FLAINVAL" + "codePostal": "09700", + "codeCommune": "09147", + "libelleAcheminement": "LABATUT", + "nomCommune": "LABATUT" }, { - "codePostal": "12000", - "codeCommune": "12202", - "libelleAcheminement": "RODEZ", - "nomCommune": "RODEZ" + "codePostal": "21170", + "codeCommune": "21577", + "libelleAcheminement": "ST USAGE", + "nomCommune": "ST USAGE" }, { - "codePostal": "14540", - "codeCommune": "14538", - "libelleAcheminement": "CASTINE EN PLAINE", - "nomCommune": "CASTINE EN PLAINE" + "codePostal": "21130", + "codeCommune": "21699", + "libelleAcheminement": "VILLERS LES POTS", + "nomCommune": "VILLERS LES POTS" }, { - "codePostal": "54122", - "codeCommune": "54201", - "libelleAcheminement": "FONTENOY LA JOUTE", - "nomCommune": "FONTENOY LA JOUTE" + "codePostal": "08190", + "codeCommune": "08084", + "libelleAcheminement": "BRIENNE SUR AISNE", + "nomCommune": "BRIENNE SUR AISNE" }, { - "codePostal": "12220", - "codeCommune": "12206", - "libelleAcheminement": "ROUSSENNAC", - "nomCommune": "ROUSSENNAC" + "codePostal": "09200", + "codeCommune": "09149", + "libelleAcheminement": "LACOURT", + "nomCommune": "LACOURT" }, { - "codePostal": "14540", - "codeCommune": "14538", - "libelleAcheminement": "CASTINE EN PLAINE", - "nomCommune": "CASTINE EN PLAINE" + "codePostal": "21590", + "codeCommune": "21582", + "libelleAcheminement": "SANTENAY", + "nomCommune": "SANTENAY" }, { - "codePostal": "54330", - "codeCommune": "54203", - "libelleAcheminement": "FORCELLES ST GORGON", - "nomCommune": "FORCELLES ST GORGON" + "codePostal": "21400", + "codeCommune": "21704", + "libelleAcheminement": "VILLIERS LE DUC", + "nomCommune": "VILLIERS LE DUC" }, { - "codePostal": "12620", - "codeCommune": "12213", - "libelleAcheminement": "ST BEAUZELY", - "nomCommune": "ST BEAUZELY" + "codePostal": "08200", + "codeCommune": "08101", + "libelleAcheminement": "LA CHAPELLE", + "nomCommune": "LA CHAPELLE" }, { - "codePostal": "14100", - "codeCommune": "14540", - "libelleAcheminement": "ROCQUES", - "nomCommune": "ROCQUES" + "codePostal": "09240", + "codeCommune": "09154", + "libelleAcheminement": "LARBONT", + "nomCommune": "LARBONT" }, { - "codePostal": "54930", - "codeCommune": "54204", - "libelleAcheminement": "FORCELLES SOUS GUGNEY", - "nomCommune": "FORCELLES SOUS GUGNEY" + "codePostal": "21340", + "codeCommune": "21583", + "libelleAcheminement": "SANTOSSE", + "nomCommune": "SANTOSSE" }, { - "codePostal": "12230", - "codeCommune": "12220", - "libelleAcheminement": "STE EULALIE DE CERNON", - "nomCommune": "STE EULALIE DE CERNON" + "codePostal": "21350", + "codeCommune": "21710", + "libelleAcheminement": "VITTEAUX", + "nomCommune": "VITTEAUX" }, { - "codePostal": "14340", - "codeCommune": "14550", - "libelleAcheminement": "RUMESNIL", - "nomCommune": "RUMESNIL" + "codePostal": "08400", + "codeCommune": "08104", + "libelleAcheminement": "CHARDENY", + "nomCommune": "CHARDENY" }, { - "codePostal": "54830", - "codeCommune": "54209", - "libelleAcheminement": "FRANCONVILLE", - "nomCommune": "FRANCONVILLE" + "codePostal": "09600", + "codeCommune": "09157", + "libelleAcheminement": "LAROQUE D OLMES", + "nomCommune": "LAROQUE D OLMES" }, { - "codePostal": "12420", - "codeCommune": "12223", - "libelleAcheminement": "ARGENCES EN AUBRAC", - "nomCommune": "ARGENCES EN AUBRAC" + "codePostal": "21360", + "codeCommune": "21588", + "libelleAcheminement": "SAUSSEY", + "nomCommune": "SAUSSEY" }, { - "codePostal": "14540", - "codeCommune": "14554", - "libelleAcheminement": "LE CASTELET", - "nomCommune": "LE CASTELET" + "codePostal": "21270", + "codeCommune": "21713", + "libelleAcheminement": "VONGES", + "nomCommune": "VONGES" }, { - "codePostal": "54390", - "codeCommune": "54215", - "libelleAcheminement": "FROUARD", - "nomCommune": "FROUARD" + "codePostal": "08400", + "codeCommune": "08116", + "libelleAcheminement": "BAIRON ET SES ENVIRONS", + "nomCommune": "BAIRON ET SES ENVIRONS" }, { - "codePostal": "12130", - "codeCommune": "12224", - "libelleAcheminement": "ST GENIEZ D OLT ET D AUBRAC", - "nomCommune": "ST GENIEZ D OLT ET D AUBRAC" + "codePostal": "09600", + "codeCommune": "09161", + "libelleAcheminement": "LERAN", + "nomCommune": "LERAN" }, { - "codePostal": "14130", - "codeCommune": "14555", - "libelleAcheminement": "ST ANDRE D HEBERTOT", - "nomCommune": "ST ANDRE D HEBERTOT" + "codePostal": "21540", + "codeCommune": "21592", + "libelleAcheminement": "SAVIGNY SOUS MALAIN", + "nomCommune": "SAVIGNY SOUS MALAIN" }, { - "codePostal": "54120", - "codeCommune": "54217", - "libelleAcheminement": "GELACOURT", - "nomCommune": "GELACOURT" + "codePostal": "21640", + "codeCommune": "21716", + "libelleAcheminement": "VOUGEOT", + "nomCommune": "VOUGEOT" }, { - "codePostal": "12260", - "codeCommune": "12227", - "libelleAcheminement": "ST IGEST", - "nomCommune": "ST IGEST" + "codePostal": "08400", + "codeCommune": "08130", + "libelleAcheminement": "CONTREUVE", + "nomCommune": "CONTREUVE" }, { - "codePostal": "14750", - "codeCommune": "14562", - "libelleAcheminement": "ST AUBIN SUR MER", - "nomCommune": "ST AUBIN SUR MER" + "codePostal": "09300", + "codeCommune": "09165", + "libelleAcheminement": "LESPARROU", + "nomCommune": "LESPARROU" }, { - "codePostal": "54115", - "codeCommune": "54218", - "libelleAcheminement": "GELAUCOURT", - "nomCommune": "GELAUCOURT" + "codePostal": "21910", + "codeCommune": "21596", + "libelleAcheminement": "SAVOUGES", + "nomCommune": "SAVOUGES" }, { - "codePostal": "12250", - "codeCommune": "12229", - "libelleAcheminement": "ST JEAN D ALCAPIES", - "nomCommune": "ST JEAN D ALCAPIES" + "codePostal": "22140", + "codeCommune": "22004", + "libelleAcheminement": "BEGARD", + "nomCommune": "BEGARD" }, { - "codePostal": "14480", - "codeCommune": "14569", - "libelleAcheminement": "STE CROIX SUR MER", - "nomCommune": "STE CROIX SUR MER" + "codePostal": "08140", + "codeCommune": "08136", + "libelleAcheminement": "DAIGNY", + "nomCommune": "DAIGNY" }, { - "codePostal": "54830", - "codeCommune": "54222", - "libelleAcheminement": "GERBEVILLER", - "nomCommune": "GERBEVILLER" + "codePostal": "09230", + "codeCommune": "09184", + "libelleAcheminement": "MAUVEZIN DE STE CROIX", + "nomCommune": "MAUVEZIN DE STE CROIX" }, { - "codePostal": "12620", - "codeCommune": "12236", - "libelleAcheminement": "ST LAURENT DE LEVEZOU", - "nomCommune": "ST LAURENT DE LEVEZOU" + "codePostal": "21220", + "codeCommune": "21597", + "libelleAcheminement": "SEGROIS", + "nomCommune": "SEGROIS" }, { - "codePostal": "14290", - "codeCommune": "14570", - "libelleAcheminement": "VALORBIQUET", - "nomCommune": "VALORBIQUET" + "codePostal": "22140", + "codeCommune": "22004", + "libelleAcheminement": "BEGARD", + "nomCommune": "BEGARD" }, { - "codePostal": "54170", - "codeCommune": "54223", - "libelleAcheminement": "GERMINY", - "nomCommune": "GERMINY" + "codePostal": "08110", + "codeCommune": "08138", + "libelleAcheminement": "LES DEUX VILLES", + "nomCommune": "LES DEUX VILLES" }, { - "codePostal": "12780", - "codeCommune": "12238", - "libelleAcheminement": "ST LEONS", - "nomCommune": "ST LEONS" + "codePostal": "09160", + "codeCommune": "09187", + "libelleAcheminement": "MERCENAC", + "nomCommune": "MERCENAC" }, { - "codePostal": "14140", - "codeCommune": "14576", - "libelleAcheminement": "VAL DE VIE", - "nomCommune": "VAL DE VIE" + "codePostal": "21150", + "codeCommune": "21598", + "libelleAcheminement": "SEIGNY", + "nomCommune": "SEIGNY" }, { - "codePostal": "54740", - "codeCommune": "54224", - "libelleAcheminement": "GERMONVILLE", - "nomCommune": "GERMONVILLE" + "codePostal": "22160", + "codeCommune": "22024", + "libelleAcheminement": "CALANHEL", + "nomCommune": "CALANHEL" }, { - "codePostal": "12130", - "codeCommune": "12239", - "libelleAcheminement": "ST MARTIN DE LENNE", - "nomCommune": "ST MARTIN DE LENNE" + "codePostal": "08220", + "codeCommune": "08143", + "libelleAcheminement": "DOUMELY BEGNY", + "nomCommune": "DOUMELY BEGNY" }, { - "codePostal": "14260", - "codeCommune": "14579", - "libelleAcheminement": "SEULLINE", - "nomCommune": "SEULLINE" + "codePostal": "09110", + "codeCommune": "09197", + "libelleAcheminement": "MONTAILLOU", + "nomCommune": "MONTAILLOU" }, { - "codePostal": "54780", - "codeCommune": "54227", - "libelleAcheminement": "GIRAUMONT", - "nomCommune": "GIRAUMONT" + "codePostal": "21320", + "codeCommune": "21600", + "libelleAcheminement": "SEMAREY", + "nomCommune": "SEMAREY" }, { - "codePostal": "12490", - "codeCommune": "12244", - "libelleAcheminement": "ST ROME DE TARN", - "nomCommune": "ST ROME DE TARN" + "codePostal": "22450", + "codeCommune": "22028", + "libelleAcheminement": "CAMLEZ", + "nomCommune": "CAMLEZ" }, { - "codePostal": "14280", - "codeCommune": "14587", - "libelleAcheminement": "ST GERMAIN LA BLANCHE HERBE", - "nomCommune": "ST GERMAIN LA BLANCHE HERBE" + "codePostal": "08300", + "codeCommune": "08144", + "libelleAcheminement": "DOUX", + "nomCommune": "DOUX" }, { - "codePostal": "54450", - "codeCommune": "54233", - "libelleAcheminement": "GONDREXON", - "nomCommune": "GONDREXON" + "codePostal": "09230", + "codeCommune": "09198", + "libelleAcheminement": "MONTARDIT", + "nomCommune": "MONTARDIT" }, { - "codePostal": "12300", - "codeCommune": "12246", - "libelleAcheminement": "ST SANTIN", - "nomCommune": "ST SANTIN" + "codePostal": "21220", + "codeCommune": "21601", + "libelleAcheminement": "SEMEZANGES", + "nomCommune": "SEMEZANGES" }, { - "codePostal": "14710", - "codeCommune": "14591", - "libelleAcheminement": "AURE SUR MER", - "nomCommune": "AURE SUR MER" + "codePostal": "22450", + "codeCommune": "22042", + "libelleAcheminement": "COATREVEN", + "nomCommune": "COATREVEN" }, { - "codePostal": "54330", - "codeCommune": "54235", - "libelleAcheminement": "GOVILLER", - "nomCommune": "GOVILLER" + "codePostal": "08150", + "codeCommune": "08149", + "libelleAcheminement": "L ECHELLE", + "nomCommune": "L ECHELLE" }, { - "codePostal": "12460", - "codeCommune": "12250", - "libelleAcheminement": "ST SYMPHORIEN DE THENIERES", - "nomCommune": "ST SYMPHORIEN DE THENIERES" + "codePostal": "09700", + "codeCommune": "09199", + "libelleAcheminement": "MONTAUT", + "nomCommune": "MONTAUT" }, { - "codePostal": "14570", - "codeCommune": "14602", - "libelleAcheminement": "ST LAMBERT", - "nomCommune": "ST LAMBERT" + "codePostal": "21450", + "codeCommune": "21602", + "libelleAcheminement": "SEMOND", + "nomCommune": "SEMOND" }, { - "codePostal": "54260", - "codeCommune": "54236", - "libelleAcheminement": "GRAND FAILLY", - "nomCommune": "GRAND FAILLY" + "codePostal": "22210", + "codeCommune": "22043", + "libelleAcheminement": "COETLOGON", + "nomCommune": "COETLOGON" }, { - "codePostal": "12460", - "codeCommune": "12250", - "libelleAcheminement": "ST SYMPHORIEN DE THENIERES", - "nomCommune": "ST SYMPHORIEN DE THENIERES" + "codePostal": "08300", + "codeCommune": "08150", + "libelleAcheminement": "ECLY", + "nomCommune": "ECLY" }, { - "codePostal": "14310", - "codeCommune": "14607", - "libelleAcheminement": "ST LOUET SUR SEULLES", - "nomCommune": "ST LOUET SUR SEULLES" + "codePostal": "09300", + "codeCommune": "09206", + "libelleAcheminement": "MONTFERRIER", + "nomCommune": "MONTFERRIER" }, { - "codePostal": "54260", - "codeCommune": "54236", - "libelleAcheminement": "GRAND FAILLY", - "nomCommune": "GRAND FAILLY" + "codePostal": "21500", + "codeCommune": "21604", + "libelleAcheminement": "SENAILLY", + "nomCommune": "SENAILLY" }, { - "codePostal": "12700", - "codeCommune": "12257", - "libelleAcheminement": "CAUSSE ET DIEGE", - "nomCommune": "CAUSSE ET DIEGE" + "codePostal": "22800", + "codeCommune": "22045", + "libelleAcheminement": "COHINIAC", + "nomCommune": "COHINIAC" }, { - "codePostal": "14740", - "codeCommune": "14610", - "libelleAcheminement": "ST MANVIEU NORREY", - "nomCommune": "ST MANVIEU NORREY" + "codePostal": "08260", + "codeCommune": "08169", + "libelleAcheminement": "FLAIGNES HAVYS", + "nomCommune": "FLAIGNES HAVYS" }, { - "codePostal": "54290", - "codeCommune": "54238", - "libelleAcheminement": "GRIPPORT", - "nomCommune": "GRIPPORT" + "codePostal": "09200", + "codeCommune": "09209", + "libelleAcheminement": "MONTJOIE EN COUSERANS", + "nomCommune": "MONTJOIE EN COUSERANS" }, { - "codePostal": "12150", - "codeCommune": "12270", - "libelleAcheminement": "SEVERAC D AVEYRON", - "nomCommune": "SEVERAC D AVEYRON" + "codePostal": "21270", + "codeCommune": "21618", + "libelleAcheminement": "TALMAY", + "nomCommune": "TALMAY" }, { - "codePostal": "14130", - "codeCommune": "14620", - "libelleAcheminement": "ST MARTIN AUX CHARTRAINS", - "nomCommune": "ST MARTIN AUX CHARTRAINS" + "codePostal": "22330", + "codeCommune": "22046", + "libelleAcheminement": "LE MENE", + "nomCommune": "LE MENE" }, { - "codePostal": "54120", - "codeCommune": "54243", - "libelleAcheminement": "HABLAINVILLE", - "nomCommune": "HABLAINVILLE" + "codePostal": "08200", + "codeCommune": "08174", + "libelleAcheminement": "FLOING", + "nomCommune": "FLOING" }, { - "codePostal": "12600", - "codeCommune": "12280", - "libelleAcheminement": "THERONDELS", - "nomCommune": "THERONDELS" + "codePostal": "09200", + "codeCommune": "09214", + "libelleAcheminement": "MOULIS", + "nomCommune": "MOULIS" }, { - "codePostal": "14290", - "codeCommune": "14621", - "libelleAcheminement": "ST MARTIN BIENFAITE CRESSONNIERE", - "nomCommune": "ST MARTIN DE BIENFAITE LA CRESSONNIERE" + "codePostal": "21120", + "codeCommune": "21620", + "libelleAcheminement": "TARSUL", + "nomCommune": "TARSUL" }, { - "codePostal": "54330", - "codeCommune": "54247", - "libelleAcheminement": "HAMMEVILLE", - "nomCommune": "HAMMEVILLE" + "codePostal": "22630", + "codeCommune": "22056", + "libelleAcheminement": "EVRAN", + "nomCommune": "EVRAN" }, { - "codePostal": "12290", - "codeCommune": "12283", - "libelleAcheminement": "TREMOUILLES", - "nomCommune": "TREMOUILLES" + "codePostal": "08220", + "codeCommune": "08178", + "libelleAcheminement": "FRAILLICOURT", + "nomCommune": "FRAILLICOURT" }, { - "codePostal": "14710", - "codeCommune": "14622", - "libelleAcheminement": "ST MARTIN DE BLAGNY", - "nomCommune": "ST MARTIN DE BLAGNY" + "codePostal": "09300", + "codeCommune": "09215", + "libelleAcheminement": "NALZEN", + "nomCommune": "NALZEN" }, { - "codePostal": "54450", - "codeCommune": "54251", - "libelleAcheminement": "HARBOUEY", - "nomCommune": "HARBOUEY" + "codePostal": "21110", + "codeCommune": "21622", + "libelleAcheminement": "TART LE BAS", + "nomCommune": "TART LE BAS" }, { - "codePostal": "12430", - "codeCommune": "12284", - "libelleAcheminement": "LE TRUEL", - "nomCommune": "LE TRUEL" + "codePostal": "22150", + "codeCommune": "22060", + "libelleAcheminement": "GAUSSON", + "nomCommune": "GAUSSON" }, { - "codePostal": "14220", - "codeCommune": "14635", - "libelleAcheminement": "ST OMER", - "nomCommune": "ST OMER" + "codePostal": "08170", + "codeCommune": "08185", + "libelleAcheminement": "FUMAY", + "nomCommune": "FUMAY" }, { - "codePostal": "54860", - "codeCommune": "54254", - "libelleAcheminement": "HAUCOURT MOULAINE", - "nomCommune": "HAUCOURT MOULAINE" + "codePostal": "09400", + "codeCommune": "09217", + "libelleAcheminement": "NIAUX", + "nomCommune": "NIAUX" }, { - "codePostal": "12580", - "codeCommune": "12298", - "libelleAcheminement": "VILLECOMTAL", - "nomCommune": "VILLECOMTAL" + "codePostal": "21110", + "codeCommune": "21623", + "libelleAcheminement": "TART", + "nomCommune": "TART" }, { - "codePostal": "14340", - "codeCommune": "14639", - "libelleAcheminement": "ST OUEN LE PIN", - "nomCommune": "ST OUEN LE PIN" + "codePostal": "22290", + "codeCommune": "22065", + "libelleAcheminement": "GOUDELIN", + "nomCommune": "GOUDELIN" }, { - "codePostal": "54830", - "codeCommune": "54255", - "libelleAcheminement": "HAUDONVILLE", - "nomCommune": "HAUDONVILLE" + "codePostal": "08240", + "codeCommune": "08186", + "libelleAcheminement": "GERMONT", + "nomCommune": "GERMONT" }, { - "codePostal": "12410", - "codeCommune": "12307", - "libelleAcheminement": "CURAN", - "nomCommune": "CURAN" + "codePostal": "09400", + "codeCommune": "09221", + "libelleAcheminement": "ORNOLAC USSAT LES BAINS", + "nomCommune": "ORNOLAC USSAT LES BAINS" }, { - "codePostal": "14670", - "codeCommune": "14640", - "libelleAcheminement": "ST PAIR", - "nomCommune": "ST PAIR" + "codePostal": "21320", + "codeCommune": "21630", + "libelleAcheminement": "THOISY LE DESERT", + "nomCommune": "THOISY LE DESERT" }, { - "codePostal": "54180", - "codeCommune": "54265", - "libelleAcheminement": "HOUDEMONT", - "nomCommune": "HOUDEMONT" + "codePostal": "22350", + "codeCommune": "22069", + "libelleAcheminement": "GUENROC", + "nomCommune": "GUENROC" }, { - "codePostal": "13200", - "codeCommune": "13004", - "libelleAcheminement": "ARLES", - "nomCommune": "ARLES" + "codePostal": "08700", + "codeCommune": "08188", + "libelleAcheminement": "GESPUNSART", + "nomCommune": "GESPUNSART" }, { - "codePostal": "14490", - "codeCommune": "14643", - "libelleAcheminement": "ST PAUL DU VERNAY", - "nomCommune": "ST PAUL DU VERNAY" + "codePostal": "09220", + "codeCommune": "09222", + "libelleAcheminement": "ORUS", + "nomCommune": "ORUS" }, { - "codePostal": "54330", - "codeCommune": "54266", - "libelleAcheminement": "HOUDREVILLE", - "nomCommune": "HOUDREVILLE" + "codePostal": "21250", + "codeCommune": "21637", + "libelleAcheminement": "TICHEY", + "nomCommune": "TICHEY" }, { - "codePostal": "13400", - "codeCommune": "13005", - "libelleAcheminement": "AUBAGNE", - "nomCommune": "AUBAGNE" + "codePostal": "22350", + "codeCommune": "22071", + "libelleAcheminement": "GUITTE", + "nomCommune": "GUITTE" }, { - "codePostal": "14130", - "codeCommune": "14644", - "libelleAcheminement": "ST PHILBERT DES CHAMPS", - "nomCommune": "ST PHILBERT DES CHAMPS" + "codePostal": "08260", + "codeCommune": "08189", + "libelleAcheminement": "GIRONDELLE", + "nomCommune": "GIRONDELLE" }, { - "codePostal": "54590", - "codeCommune": "54270", - "libelleAcheminement": "HUSSIGNY GODBRANGE", - "nomCommune": "HUSSIGNY GODBRANGE" + "codePostal": "09300", + "codeCommune": "09227", + "libelleAcheminement": "PEREILLE", + "nomCommune": "PEREILLE" }, { - "codePostal": "13390", - "codeCommune": "13007", - "libelleAcheminement": "AURIOL", - "nomCommune": "AURIOL" + "codePostal": "21460", + "codeCommune": "21642", + "libelleAcheminement": "TOUTRY", + "nomCommune": "TOUTRY" }, { - "codePostal": "14700", - "codeCommune": "14646", - "libelleAcheminement": "ST PIERRE CANIVET", - "nomCommune": "ST PIERRE CANIVET" + "codePostal": "22400", + "codeCommune": "22077", + "libelleAcheminement": "HENANSAL", + "nomCommune": "HENANSAL" }, { - "codePostal": "54800", - "codeCommune": "54273", - "libelleAcheminement": "JARNY", - "nomCommune": "JARNY" + "codePostal": "08200", + "codeCommune": "08194", + "libelleAcheminement": "GLAIRE", + "nomCommune": "GLAIRE" }, { - "codePostal": "13720", - "codeCommune": "13016", - "libelleAcheminement": "LA BOUILLADISSE", - "nomCommune": "LA BOUILLADISSE" + "codePostal": "09500", + "codeCommune": "09244", + "libelleAcheminement": "RIEUCROS", + "nomCommune": "RIEUCROS" }, { - "codePostal": "14260", - "codeCommune": "14650", - "libelleAcheminement": "ST PIERRE DU FRESNE", - "nomCommune": "ST PIERRE DU FRESNE" + "codePostal": "21170", + "codeCommune": "21645", + "libelleAcheminement": "TROUHANS", + "nomCommune": "TROUHANS" }, { - "codePostal": "54114", - "codeCommune": "54276", - "libelleAcheminement": "JEANDELAINCOURT", - "nomCommune": "JEANDELAINCOURT" + "codePostal": "22270", + "codeCommune": "22084", + "libelleAcheminement": "JUGON LES LACS COMMUNE NOUVELLE", + "nomCommune": "JUGON LES LACS COMMUNE NOUVELLE" }, { - "codePostal": "13260", - "codeCommune": "13022", - "libelleAcheminement": "CASSIS", - "nomCommune": "CASSIS" + "codePostal": "08190", + "codeCommune": "08195", + "libelleAcheminement": "GOMONT", + "nomCommune": "GOMONT" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "09200", + "codeCommune": "09247", + "libelleAcheminement": "RIVERENERT", + "nomCommune": "RIVERENERT" }, { - "codePostal": "54800", - "codeCommune": "54277", - "libelleAcheminement": "JEANDELIZE", - "nomCommune": "JEANDELIZE" + "codePostal": "21150", + "codeCommune": "21663", + "libelleAcheminement": "VENAREY LES LAUMES", + "nomCommune": "VENAREY LES LAUMES" }, { - "codePostal": "13600", - "codeCommune": "13023", - "libelleAcheminement": "CEYRESTE", - "nomCommune": "CEYRESTE" + "codePostal": "22480", + "codeCommune": "22088", + "libelleAcheminement": "KERIEN", + "nomCommune": "KERIEN" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "08250", + "codeCommune": "08198", + "libelleAcheminement": "GRANDPRE", + "nomCommune": "GRANDPRE" }, { - "codePostal": "54120", - "codeCommune": "54287", - "libelleAcheminement": "LACHAPELLE", - "nomCommune": "LACHAPELLE" + "codePostal": "09460", + "codeCommune": "09252", + "libelleAcheminement": "ROUZE", + "nomCommune": "ROUZE" }, { - "codePostal": "13790", - "codeCommune": "13025", - "libelleAcheminement": "CHATEAUNEUF LE ROUGE", - "nomCommune": "CHATEAUNEUF LE ROUGE" + "codePostal": "21330", + "codeCommune": "21664", + "libelleAcheminement": "VERDONNET", + "nomCommune": "VERDONNET" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "22480", + "codeCommune": "22092", + "libelleAcheminement": "KERPERT", + "nomCommune": "KERPERT" }, { - "codePostal": "54200", - "codeCommune": "54288", - "libelleAcheminement": "LAGNEY", - "nomCommune": "LAGNEY" + "codePostal": "08220", + "codeCommune": "08210", + "libelleAcheminement": "HANNOGNE ST REMY", + "nomCommune": "HANNOGNE ST REMY" }, { - "codePostal": "13510", - "codeCommune": "13032", - "libelleAcheminement": "EGUILLES", - "nomCommune": "EGUILLES" + "codePostal": "09350", + "codeCommune": "09253", + "libelleAcheminement": "SABARAT", + "nomCommune": "SABARAT" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "21260", + "codeCommune": "21667", + "libelleAcheminement": "VERONNES", + "nomCommune": "VERONNES" }, { - "codePostal": "54770", - "codeCommune": "54289", - "libelleAcheminement": "LAITRE SOUS AMANCE", - "nomCommune": "LAITRE SOUS AMANCE" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "13820", - "codeCommune": "13033", - "libelleAcheminement": "ENSUES LA REDONNE", - "nomCommune": "ENSUES LA REDONNE" + "codePostal": "08170", + "codeCommune": "08214", + "libelleAcheminement": "HARGNIES", + "nomCommune": "HARGNIES" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "09100", + "codeCommune": "09254", + "libelleAcheminement": "ST AMADOU", + "nomCommune": "ST AMADOU" }, { - "codePostal": "54115", - "codeCommune": "54291", - "libelleAcheminement": "LALOEUF", - "nomCommune": "LALOEUF" + "codePostal": "21520", + "codeCommune": "21674", + "libelleAcheminement": "VEUXHAULLES SUR AUBE", + "nomCommune": "VEUXHAULLES SUR AUBE" }, { - "codePostal": "13710", - "codeCommune": "13040", - "libelleAcheminement": "FUVEAU", - "nomCommune": "FUVEAU" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "08240", + "codeCommune": "08215", + "libelleAcheminement": "HARRICOURT", + "nomCommune": "HARRICOURT" }, { - "codePostal": "54570", - "codeCommune": "54298", - "libelleAcheminement": "LANEUVEVILLE DERRIERE FOUG", - "nomCommune": "LANEUVEVILLE DERRIERE FOUG" + "codePostal": "09300", + "codeCommune": "09262", + "libelleAcheminement": "ST JEAN D AIGUES VIVES", + "nomCommune": "ST JEAN D AIGUES VIVES" }, { - "codePostal": "13710", - "codeCommune": "13040", - "libelleAcheminement": "FUVEAU", - "nomCommune": "FUVEAU" + "codePostal": "21540", + "codeCommune": "21679", + "libelleAcheminement": "VIEILMOULIN", + "nomCommune": "VIEILMOULIN" }, { - "codePostal": "14570", - "codeCommune": "14656", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "54760", - "codeCommune": "54301", - "libelleAcheminement": "LANFROICOURT", - "nomCommune": "LANFROICOURT" + "codePostal": "08090", + "codeCommune": "08216", + "libelleAcheminement": "HAUDRECY", + "nomCommune": "HAUDRECY" }, { - "codePostal": "13180", - "codeCommune": "13043", - "libelleAcheminement": "GIGNAC LA NERTHE", - "nomCommune": "GIGNAC LA NERTHE" + "codePostal": "09500", + "codeCommune": "09266", + "libelleAcheminement": "ST JULIEN DE GRAS CAPOU", + "nomCommune": "ST JULIEN DE GRAS CAPOU" }, { - "codePostal": "14670", - "codeCommune": "14657", - "libelleAcheminement": "ST SAMSON", - "nomCommune": "ST SAMSON" + "codePostal": "21200", + "codeCommune": "21684", + "libelleAcheminement": "VIGNOLES", + "nomCommune": "VIGNOLES" }, { - "codePostal": "54150", - "codeCommune": "54302", - "libelleAcheminement": "LANTEFONTAINE", - "nomCommune": "LANTEFONTAINE" + "codePostal": "22130", + "codeCommune": "22096", + "libelleAcheminement": "LANDEBIA", + "nomCommune": "LANDEBIA" }, { - "codePostal": "13500", - "codeCommune": "13056", - "libelleAcheminement": "MARTIGUES", - "nomCommune": "MARTIGUES" + "codePostal": "08360", + "codeCommune": "08225", + "libelleAcheminement": "HERPY L ARLESIENNE", + "nomCommune": "HERPY L ARLESIENNE" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "09000", + "codeCommune": "09269", + "libelleAcheminement": "ST MARTIN DE CARALP", + "nomCommune": "ST MARTIN DE CARALP" }, { - "codePostal": "54520", - "codeCommune": "54304", - "libelleAcheminement": "LAXOU", - "nomCommune": "LAXOU" + "codePostal": "21210", + "codeCommune": "21687", + "libelleAcheminement": "VILLARGOIX", + "nomCommune": "VILLARGOIX" }, { - "codePostal": "13590", - "codeCommune": "13060", - "libelleAcheminement": "MEYREUIL", - "nomCommune": "MEYREUIL" + "codePostal": "22800", + "codeCommune": "22099", + "libelleAcheminement": "LANFAINS", + "nomCommune": "LANFAINS" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "08090", + "codeCommune": "08230", + "libelleAcheminement": "HOULDIZY", + "nomCommune": "HOULDIZY" }, { - "codePostal": "54690", - "codeCommune": "54305", - "libelleAcheminement": "LAY ST CHRISTOPHE", - "nomCommune": "LAY ST CHRISTOPHE" + "codePostal": "09100", + "codeCommune": "09270", + "libelleAcheminement": "ST MARTIN D OYDES", + "nomCommune": "ST MARTIN D OYDES" }, { - "codePostal": "13105", - "codeCommune": "13062", - "libelleAcheminement": "MIMET", - "nomCommune": "MIMET" + "codePostal": "21350", + "codeCommune": "21690", + "libelleAcheminement": "VILLEBERNY", + "nomCommune": "VILLEBERNY" }, { - "codePostal": "14640", - "codeCommune": "14660", - "libelleAcheminement": "ST VAAST EN AUGE", - "nomCommune": "ST VAAST EN AUGE" + "codePostal": "22490", + "codeCommune": "22103", + "libelleAcheminement": "LANGROLAY SUR RANCE", + "nomCommune": "LANGROLAY SUR RANCE" }, { - "codePostal": "54740", - "codeCommune": "54309", - "libelleAcheminement": "LEMAINVILLE", - "nomCommune": "LEMAINVILLE" + "codePostal": "08800", + "codeCommune": "08242", + "libelleAcheminement": "LAIFOUR", + "nomCommune": "LAIFOUR" }, { - "codePostal": "13170", - "codeCommune": "13071", - "libelleAcheminement": "LES PENNES MIRABEAU", - "nomCommune": "LES PENNES MIRABEAU" + "codePostal": "09700", + "codeCommune": "09275", + "libelleAcheminement": "ST QUIRC", + "nomCommune": "ST QUIRC" }, { - "codePostal": "14250", - "codeCommune": "14661", - "libelleAcheminement": "ST VAAST SUR SEULLES", - "nomCommune": "ST VAAST SUR SEULLES" + "codePostal": "21350", + "codeCommune": "21707", + "libelleAcheminement": "VILLY EN AUXOIS", + "nomCommune": "VILLY EN AUXOIS" }, { - "codePostal": "54610", - "codeCommune": "54313", - "libelleAcheminement": "LETRICOURT", - "nomCommune": "LETRICOURT" + "codePostal": "22570", + "codeCommune": "22107", + "libelleAcheminement": "BON REPOS SUR BLAVET", + "nomCommune": "BON REPOS SUR BLAVET" }, { - "codePostal": "13750", - "codeCommune": "13076", - "libelleAcheminement": "PLAN D ORGON", - "nomCommune": "PLAN D ORGON" + "codePostal": "08250", + "codeCommune": "08245", + "libelleAcheminement": "LANCON", + "nomCommune": "LANCON" }, { - "codePostal": "14240", - "codeCommune": "14664", - "libelleAcheminement": "SALLEN", - "nomCommune": "SALLEN" + "codePostal": "09100", + "codeCommune": "09276", + "libelleAcheminement": "ST VICTOR ROUZAUD", + "nomCommune": "ST VICTOR ROUZAUD" }, { - "codePostal": "54720", - "codeCommune": "54314", - "libelleAcheminement": "LEXY", - "nomCommune": "LEXY" + "codePostal": "21250", + "codeCommune": "21708", + "libelleAcheminement": "VILLY LE MOUTIER", + "nomCommune": "VILLY LE MOUTIER" }, { - "codePostal": "13640", - "codeCommune": "13084", - "libelleAcheminement": "LA ROQUE D ANTHERON", - "nomCommune": "LA ROQUE D ANTHERON" + "codePostal": "22610", + "codeCommune": "22111", + "libelleAcheminement": "LANMODEZ", + "nomCommune": "LANMODEZ" }, { - "codePostal": "14330", - "codeCommune": "14667", - "libelleAcheminement": "SAON", - "nomCommune": "SAON" + "codePostal": "08240", + "codeCommune": "08246", + "libelleAcheminement": "LANDRES ET ST GEORGES", + "nomCommune": "LANDRES ET ST GEORGES" }, { - "codePostal": "54760", - "codeCommune": "54315", - "libelleAcheminement": "LEYR", - "nomCommune": "LEYR" + "codePostal": "09800", + "codeCommune": "09279", + "libelleAcheminement": "SALSEIN", + "nomCommune": "SALSEIN" }, { - "codePostal": "13830", - "codeCommune": "13085", - "libelleAcheminement": "ROQUEFORT LA BEDOULE", - "nomCommune": "ROQUEFORT LA BEDOULE" + "codePostal": "21400", + "codeCommune": "21711", + "libelleAcheminement": "VIX", + "nomCommune": "VIX" }, { - "codePostal": "14130", - "codeCommune": "14687", - "libelleAcheminement": "LE THEIL EN AUGE", - "nomCommune": "LE THEIL EN AUGE" + "codePostal": "22300", + "codeCommune": "22113", + "libelleAcheminement": "LANNION", + "nomCommune": "LANNION" }, { - "codePostal": "54260", - "codeCommune": "54322", - "libelleAcheminement": "LONGUYON", - "nomCommune": "LONGUYON" + "codePostal": "08210", + "codeCommune": "08252", + "libelleAcheminement": "LETANNE", + "nomCommune": "LETANNE" }, { - "codePostal": "13670", - "codeCommune": "13089", - "libelleAcheminement": "ST ANDIOL", - "nomCommune": "ST ANDIOL" + "codePostal": "09300", + "codeCommune": "09281", + "libelleAcheminement": "SAUTEL", + "nomCommune": "SAUTEL" }, { - "codePostal": "14220", - "codeCommune": "14689", - "libelleAcheminement": "LE HOM", - "nomCommune": "LE HOM" + "codePostal": "21190", + "codeCommune": "21712", + "libelleAcheminement": "VOLNAY", + "nomCommune": "VOLNAY" }, { - "codePostal": "54210", - "codeCommune": "54330", - "libelleAcheminement": "LUPCOURT", - "nomCommune": "LUPCOURT" + "codePostal": "22100", + "codeCommune": "22118", + "libelleAcheminement": "LANVALLAY", + "nomCommune": "LANVALLAY" }, { - "codePostal": "13250", - "codeCommune": "13092", - "libelleAcheminement": "ST CHAMAS", - "nomCommune": "ST CHAMAS" + "codePostal": "08150", + "codeCommune": "08260", + "libelleAcheminement": "LONNY", + "nomCommune": "LONNY" }, { - "codePostal": "14330", - "codeCommune": "14705", - "libelleAcheminement": "TOURNIERES", - "nomCommune": "TOURNIERES" + "codePostal": "09110", + "codeCommune": "09283", + "libelleAcheminement": "SAVIGNAC LES ORMEAUX", + "nomCommune": "SAVIGNAC LES ORMEAUX" }, { - "codePostal": "54370", - "codeCommune": "54335", - "libelleAcheminement": "MAIXE", - "nomCommune": "MAIXE" + "codePostal": "21230", + "codeCommune": "21715", + "libelleAcheminement": "VOUDENAY", + "nomCommune": "VOUDENAY" }, { - "codePostal": "13210", - "codeCommune": "13100", - "libelleAcheminement": "ST REMY DE PROVENCE", - "nomCommune": "ST REMY DE PROVENCE" + "codePostal": "22230", + "codeCommune": "22122", + "libelleAcheminement": "LAURENAN", + "nomCommune": "LAURENAN" }, { - "codePostal": "14710", - "codeCommune": "14711", - "libelleAcheminement": "TREVIERES", - "nomCommune": "TREVIERES" + "codePostal": "08260", + "codeCommune": "08273", + "libelleAcheminement": "MARBY", + "nomCommune": "MARBY" }, { - "codePostal": "54670", - "codeCommune": "54338", - "libelleAcheminement": "MALLELOY", - "nomCommune": "MALLELOY" + "codePostal": "09140", + "codeCommune": "09285", + "libelleAcheminement": "SEIX", + "nomCommune": "SEIX" }, { - "codePostal": "13109", - "codeCommune": "13107", - "libelleAcheminement": "SIMIANE COLLONGUE", - "nomCommune": "SIMIANE COLLONGUE" + "codePostal": "22460", + "codeCommune": "22001", + "libelleAcheminement": "ALLINEUC", + "nomCommune": "ALLINEUC" }, { - "codePostal": "14670", - "codeCommune": "14712", - "libelleAcheminement": "TROARN", - "nomCommune": "TROARN" + "codePostal": "22230", + "codeCommune": "22133", + "libelleAcheminement": "LOSCOUET SUR MEU", + "nomCommune": "LOSCOUET SUR MEU" }, { - "codePostal": "54470", - "codeCommune": "54340", - "libelleAcheminement": "MAMEY", - "nomCommune": "MAMEY" + "codePostal": "08250", + "codeCommune": "08274", + "libelleAcheminement": "MARCQ", + "nomCommune": "MARCQ" }, { - "codePostal": "13100", - "codeCommune": "13109", - "libelleAcheminement": "LE THOLONET", - "nomCommune": "LE THOLONET" + "codePostal": "09190", + "codeCommune": "09289", + "libelleAcheminement": "LORP SENTARAILLE", + "nomCommune": "LORP SENTARAILLE" }, { - "codePostal": "14210", - "codeCommune": "14713", - "libelleAcheminement": "MONTILLIERES SUR ORNE", - "nomCommune": "MONTILLIERES SUR ORNE" + "codePostal": "22140", + "codeCommune": "22004", + "libelleAcheminement": "BEGARD", + "nomCommune": "BEGARD" }, { - "codePostal": "54290", - "codeCommune": "54344", - "libelleAcheminement": "MANGONVILLE", - "nomCommune": "MANGONVILLE" + "codePostal": "22340", + "codeCommune": "22137", + "libelleAcheminement": "MAEL CARHAIX", + "nomCommune": "MAEL CARHAIX" }, { - "codePostal": "13122", - "codeCommune": "13114", - "libelleAcheminement": "VENTABREN", - "nomCommune": "VENTABREN" + "codePostal": "08260", + "codeCommune": "08282", + "libelleAcheminement": "MAUBERT FONTAINE", + "nomCommune": "MAUBERT FONTAINE" }, { - "codePostal": "14210", - "codeCommune": "14721", - "libelleAcheminement": "VACOGNES NEUILLY", - "nomCommune": "VACOGNES NEUILLY" + "codePostal": "09800", + "codeCommune": "09290", + "libelleAcheminement": "SENTEIN", + "nomCommune": "SENTEIN" }, { - "codePostal": "54210", - "codeCommune": "54345", - "libelleAcheminement": "MANONCOURT EN VERMOIS", - "nomCommune": "MANONCOURT EN VERMOIS" + "codePostal": "22140", + "codeCommune": "22006", + "libelleAcheminement": "BERHET", + "nomCommune": "BERHET" }, { - "codePostal": "13670", - "codeCommune": "13116", - "libelleAcheminement": "VERQUIERES", - "nomCommune": "VERQUIERES" + "codePostal": "22230", + "codeCommune": "22148", + "libelleAcheminement": "MERILLAC", + "nomCommune": "MERILLAC" }, { - "codePostal": "14350", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "08310", + "codeCommune": "08286", + "libelleAcheminement": "MENIL ANNELLES", + "nomCommune": "MENIL ANNELLES" }, { - "codePostal": "54820", - "codeCommune": "54351", - "libelleAcheminement": "MARBACHE", - "nomCommune": "MARBACHE" + "codePostal": "09130", + "codeCommune": "09294", + "libelleAcheminement": "SIEURAS", + "nomCommune": "SIEURAS" }, { - "codePostal": "13127", - "codeCommune": "13117", - "libelleAcheminement": "VITROLLES", - "nomCommune": "VITROLLES" + "codePostal": "22240", + "codeCommune": "22012", + "libelleAcheminement": "LA BOUILLIE", + "nomCommune": "LA BOUILLIE" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "22530", + "codeCommune": "22158", + "libelleAcheminement": "GUERLEDAN", + "nomCommune": "GUERLEDAN" }, { - "codePostal": "54330", - "codeCommune": "54354", - "libelleAcheminement": "MARTHEMONT", - "nomCommune": "MARTHEMONT" + "codePostal": "08270", + "codeCommune": "08288", + "libelleAcheminement": "MESMONT", + "nomCommune": "MESMONT" }, { - "codePostal": "13111", - "codeCommune": "13118", - "libelleAcheminement": "COUDOUX", - "nomCommune": "COUDOUX" + "codePostal": "09220", + "codeCommune": "09295", + "libelleAcheminement": "SIGUER", + "nomCommune": "SIGUER" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "22100", + "codeCommune": "22021", + "libelleAcheminement": "BRUSVILY", + "nomCommune": "BRUSVILY" }, { - "codePostal": "54320", - "codeCommune": "54357", - "libelleAcheminement": "MAXEVILLE", - "nomCommune": "MAXEVILLE" + "codePostal": "22500", + "codeCommune": "22162", + "libelleAcheminement": "PAIMPOL", + "nomCommune": "PAIMPOL" }, { - "codePostal": "13003", - "codeCommune": "13203", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 03" + "codePostal": "08110", + "codeCommune": "08291", + "libelleAcheminement": "MOGUES", + "nomCommune": "MOGUES" }, { - "codePostal": "14400", - "codeCommune": "14732", - "libelleAcheminement": "VAUX SUR AURE", - "nomCommune": "VAUX SUR AURE" + "codePostal": "09310", + "codeCommune": "09296", + "libelleAcheminement": "AULOS SINSAT", + "nomCommune": "AULOS SINSAT" }, { - "codePostal": "54850", - "codeCommune": "54364", - "libelleAcheminement": "MEREVILLE", - "nomCommune": "MEREVILLE" + "codePostal": "22210", + "codeCommune": "22027", + "libelleAcheminement": "LE CAMBOUT", + "nomCommune": "LE CAMBOUT" }, { - "codePostal": "13005", - "codeCommune": "13205", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 05" + "codePostal": "22710", + "codeCommune": "22166", + "libelleAcheminement": "PENVENAN", + "nomCommune": "PENVENAN" }, { - "codePostal": "14250", - "codeCommune": "14734", - "libelleAcheminement": "VENDES", - "nomCommune": "VENDES" + "codePostal": "08140", + "codeCommune": "08294", + "libelleAcheminement": "LA MONCELLE", + "nomCommune": "LA MONCELLE" }, { - "codePostal": "54540", - "codeCommune": "54368", - "libelleAcheminement": "MIGNEVILLE", - "nomCommune": "MIGNEVILLE" + "codePostal": "09320", + "codeCommune": "09301", + "libelleAcheminement": "SOULAN", + "nomCommune": "SOULAN" }, { - "codePostal": "13011", - "codeCommune": "13211", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 11" + "codePostal": "22160", + "codeCommune": "22031", + "libelleAcheminement": "CARNOET", + "nomCommune": "CARNOET" }, { - "codePostal": "14170", - "codeCommune": "14735", - "libelleAcheminement": "VENDEUVRE", - "nomCommune": "VENDEUVRE" + "codePostal": "22710", + "codeCommune": "22166", + "libelleAcheminement": "PENVENAN", + "nomCommune": "PENVENAN" }, { - "codePostal": "54760", - "codeCommune": "54376", - "libelleAcheminement": "MONTENOY", - "nomCommune": "MONTENOY" + "codePostal": "08090", + "codeCommune": "08297", + "libelleAcheminement": "MONTCORNET", + "nomCommune": "MONTCORNET" }, { - "codePostal": "13015", - "codeCommune": "13215", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 15" + "codePostal": "09100", + "codeCommune": "09319", + "libelleAcheminement": "UNZENT", + "nomCommune": "UNZENT" }, { - "codePostal": "14290", - "codeCommune": "14740", - "libelleAcheminement": "LA VESPIERE FRIARDEL", - "nomCommune": "LA VESPIERE FRIARDEL" + "codePostal": "22530", + "codeCommune": "22033", + "libelleAcheminement": "CAUREL", + "nomCommune": "CAUREL" }, { - "codePostal": "54870", - "codeCommune": "54378", - "libelleAcheminement": "MONTIGNY SUR CHIERS", - "nomCommune": "MONTIGNY SUR CHIERS" + "codePostal": "22800", + "codeCommune": "22170", + "libelleAcheminement": "PLAINE HAUTE", + "nomCommune": "PLAINE HAUTE" }, { - "codePostal": "14400", - "codeCommune": "14003", - "libelleAcheminement": "AGY", - "nomCommune": "AGY" + "codePostal": "08250", + "codeCommune": "08310", + "libelleAcheminement": "MOURON", + "nomCommune": "MOURON" }, { - "codePostal": "14710", - "codeCommune": "14745", - "libelleAcheminement": "VIERVILLE SUR MER", - "nomCommune": "VIERVILLE SUR MER" + "codePostal": "09400", + "codeCommune": "09321", + "libelleAcheminement": "USSAT", + "nomCommune": "USSAT" }, { - "codePostal": "54800", - "codeCommune": "54389", - "libelleAcheminement": "MOUAVILLE", - "nomCommune": "MOUAVILLE" + "codePostal": "22140", + "codeCommune": "22034", + "libelleAcheminement": "CAVAN", + "nomCommune": "CAVAN" }, { - "codePostal": "14210", - "codeCommune": "14006", - "libelleAcheminement": "AMAYE SUR ORNE", - "nomCommune": "AMAYE SUR ORNE" + "codePostal": "22130", + "codeCommune": "22172", + "libelleAcheminement": "PLANCOET", + "nomCommune": "PLANCOET" }, { - "codePostal": "14930", - "codeCommune": "14747", - "libelleAcheminement": "VIEUX", - "nomCommune": "VIEUX" + "codePostal": "08300", + "codeCommune": "08313", + "libelleAcheminement": "NANTEUIL SUR AISNE", + "nomCommune": "NANTEUIL SUR AISNE" }, { - "codePostal": "54700", - "codeCommune": "54390", - "libelleAcheminement": "MOUSSON", - "nomCommune": "MOUSSON" + "codePostal": "09700", + "codeCommune": "09331", + "libelleAcheminement": "LE VERNET", + "nomCommune": "LE VERNET" }, { - "codePostal": "14430", - "codeCommune": "14012", - "libelleAcheminement": "ANGERVILLE", - "nomCommune": "ANGERVILLE" + "codePostal": "22160", + "codeCommune": "22037", + "libelleAcheminement": "LA CHAPELLE NEUVE", + "nomCommune": "LA CHAPELLE NEUVE" }, { - "codePostal": "14130", - "codeCommune": "14748", - "libelleAcheminement": "VIEUX BOURG", - "nomCommune": "VIEUX BOURG" + "codePostal": "22240", + "codeCommune": "22179", + "libelleAcheminement": "FREHEL", + "nomCommune": "FREHEL" }, { - "codePostal": "54660", - "codeCommune": "54391", - "libelleAcheminement": "MOUTIERS", - "nomCommune": "MOUTIERS" + "codePostal": "08310", + "codeCommune": "08320", + "libelleAcheminement": "NEUVILLE EN TOURNE A FUY", + "nomCommune": "LA NEUVILLE EN TOURNE A FUY" }, { - "codePostal": "14260", - "codeCommune": "14027", - "libelleAcheminement": "LES MONTS D AUNAY", - "nomCommune": "LES MONTS D AUNAY" + "codePostal": "09300", + "codeCommune": "09336", + "libelleAcheminement": "VILLENEUVE D OLMES", + "nomCommune": "VILLENEUVE D OLMES" }, { - "codePostal": "14700", - "codeCommune": "14751", - "libelleAcheminement": "VIGNATS", - "nomCommune": "VIGNATS" + "codePostal": "22330", + "codeCommune": "22046", + "libelleAcheminement": "LE MENE", + "nomCommune": "LE MENE" }, { - "codePostal": "54150", - "codeCommune": "54402", - "libelleAcheminement": "NORROY LE SEC", - "nomCommune": "NORROY LE SEC" + "codePostal": "22640", + "codeCommune": "22185", + "libelleAcheminement": "PLENEE JUGON", + "nomCommune": "PLENEE JUGON" }, { - "codePostal": "14260", - "codeCommune": "14027", - "libelleAcheminement": "LES MONTS D AUNAY", - "nomCommune": "LES MONTS D AUNAY" + "codePostal": "08270", + "codeCommune": "08329", + "libelleAcheminement": "NOVION PORCIEN", + "nomCommune": "NOVION PORCIEN" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "10200", + "codeCommune": "10002", + "libelleAcheminement": "AILLEVILLE", + "nomCommune": "AILLEVILLE" }, { - "codePostal": "54170", - "codeCommune": "54405", - "libelleAcheminement": "OCHEY", - "nomCommune": "OCHEY" + "codePostal": "22130", + "codeCommune": "22048", + "libelleAcheminement": "CORSEUL", + "nomCommune": "CORSEUL" }, { - "codePostal": "14260", - "codeCommune": "14027", - "libelleAcheminement": "LES MONTS D AUNAY", - "nomCommune": "LES MONTS D AUNAY" + "codePostal": "22720", + "codeCommune": "22189", + "libelleAcheminement": "PLESIDY", + "nomCommune": "PLESIDY" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "08350", + "codeCommune": "08331", + "libelleAcheminement": "NOYERS PONT MAUGIS", + "nomCommune": "NOYERS PONT MAUGIS" }, { - "codePostal": "54890", - "codeCommune": "54410", - "libelleAcheminement": "ONVILLE", - "nomCommune": "ONVILLE" + "codePostal": "10340", + "codeCommune": "10009", + "libelleAcheminement": "ARRELLES", + "nomCommune": "ARRELLES" }, { - "codePostal": "14770", - "codeCommune": "14027", - "libelleAcheminement": "LES MONTS D AUNAY", - "nomCommune": "LES MONTS D AUNAY" + "codePostal": "22130", + "codeCommune": "22049", + "libelleAcheminement": "CREHEN", + "nomCommune": "CREHEN" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "22310", + "codeCommune": "22194", + "libelleAcheminement": "PLESTIN LES GREVES", + "nomCommune": "PLESTIN LES GREVES" }, { - "codePostal": "54330", - "codeCommune": "54417", - "libelleAcheminement": "PAREY ST CESAIRE", - "nomCommune": "PAREY ST CESAIRE" + "codePostal": "08250", + "codeCommune": "08333", + "libelleAcheminement": "OLIZY PRIMAT", + "nomCommune": "OLIZY PRIMAT" }, { - "codePostal": "14210", - "codeCommune": "14034", - "libelleAcheminement": "AVENAY", - "nomCommune": "AVENAY" + "codePostal": "10200", + "codeCommune": "10011", + "libelleAcheminement": "ARRENTIERES", + "nomCommune": "ARRENTIERES" }, { - "codePostal": "15700", - "codeCommune": "15003", - "libelleAcheminement": "ALLY", - "nomCommune": "ALLY" + "codePostal": "22160", + "codeCommune": "22052", + "libelleAcheminement": "DUAULT", + "nomCommune": "DUAULT" }, { - "codePostal": "54120", - "codeCommune": "54422", - "libelleAcheminement": "PETTONVILLE", - "nomCommune": "PETTONVILLE" + "codePostal": "22560", + "codeCommune": "22198", + "libelleAcheminement": "PLEUMEUR BODOU", + "nomCommune": "PLEUMEUR BODOU" }, { - "codePostal": "14480", - "codeCommune": "14038", - "libelleAcheminement": "BANVILLE", - "nomCommune": "BANVILLE" + "codePostal": "08310", + "codeCommune": "08338", + "libelleAcheminement": "PAUVRES", + "nomCommune": "PAUVRES" }, { - "codePostal": "15700", - "codeCommune": "15003", - "libelleAcheminement": "ALLY", - "nomCommune": "ALLY" + "codePostal": "10220", + "codeCommune": "10014", + "libelleAcheminement": "ASSENCIERES", + "nomCommune": "ASSENCIERES" }, { - "codePostal": "54700", - "codeCommune": "54433", - "libelleAcheminement": "PORT SUR SEILLE", - "nomCommune": "PORT SUR SEILLE" + "codePostal": "22520", + "codeCommune": "22055", + "libelleAcheminement": "BINIC ETABLES SUR MER", + "nomCommune": "BINIC ETABLES SUR MER" }, { - "codePostal": "14670", - "codeCommune": "14045", - "libelleAcheminement": "BASSENEVILLE", - "nomCommune": "BASSENEVILLE" + "codePostal": "22740", + "codeCommune": "22199", + "libelleAcheminement": "PLEUMEUR GAUTIER", + "nomCommune": "PLEUMEUR GAUTIER" }, { - "codePostal": "15100", - "codeCommune": "15004", - "libelleAcheminement": "ANDELAT", - "nomCommune": "ANDELAT" + "codePostal": "08370", + "codeCommune": "08347", + "libelleAcheminement": "PUILLY ET CHARBEAUX", + "nomCommune": "PUILLY ET CHARBEAUX" }, { - "codePostal": "54530", - "codeCommune": "54435", - "libelleAcheminement": "PRENY", - "nomCommune": "PRENY" + "codePostal": "10240", + "codeCommune": "10017", + "libelleAcheminement": "AULNAY", + "nomCommune": "AULNAY" }, { - "codePostal": "14400", - "codeCommune": "14047", - "libelleAcheminement": "BAYEUX", - "nomCommune": "BAYEUX" + "codePostal": "22230", + "codeCommune": "22062", + "libelleAcheminement": "GOMENE", + "nomCommune": "GOMENE" }, { - "codePostal": "15200", - "codeCommune": "15010", - "libelleAcheminement": "ARCHES", - "nomCommune": "ARCHES" + "codePostal": "22170", + "codeCommune": "22206", + "libelleAcheminement": "CHATELAUDREN PLOUAGAT", + "nomCommune": "CHATELAUDREN PLOUAGAT" }, { - "codePostal": "54490", - "codeCommune": "54436", - "libelleAcheminement": "PREUTIN HIGNY", - "nomCommune": "PREUTIN HIGNY" + "codePostal": "08450", + "codeCommune": "08357", + "libelleAcheminement": "REMILLY AILLICOURT", + "nomCommune": "REMILLY AILLICOURT" }, { - "codePostal": "14490", - "codeCommune": "14050", - "libelleAcheminement": "LA BAZOQUE", - "nomCommune": "LA BAZOQUE" + "codePostal": "10130", + "codeCommune": "10018", + "libelleAcheminement": "AUXON", + "nomCommune": "AUXON" }, { - "codePostal": "15150", - "codeCommune": "15011", - "libelleAcheminement": "ARNAC", - "nomCommune": "ARNAC" + "codePostal": "22200", + "codeCommune": "22067", + "libelleAcheminement": "GRACES", + "nomCommune": "GRACES" }, { - "codePostal": "54830", - "codeCommune": "54455", - "libelleAcheminement": "REMENOVILLE", - "nomCommune": "REMENOVILLE" + "codePostal": "22420", + "codeCommune": "22207", + "libelleAcheminement": "PLOUARET", + "nomCommune": "PLOUARET" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "08230", + "codeCommune": "08367", + "libelleAcheminement": "ROCROI", + "nomCommune": "ROCROI" }, { - "codePostal": "15500", - "codeCommune": "15022", - "libelleAcheminement": "BONNAC", - "nomCommune": "BONNAC" + "codePostal": "10220", + "codeCommune": "10019", + "libelleAcheminement": "VAL D AUZON", + "nomCommune": "VAL D AUZON" }, { - "codePostal": "54110", - "codeCommune": "54456", - "libelleAcheminement": "REMEREVILLE", - "nomCommune": "REMEREVILLE" + "codePostal": "22460", + "codeCommune": "22068", + "libelleAcheminement": "GRACE UZEL", + "nomCommune": "GRACE UZEL" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "22260", + "codeCommune": "22212", + "libelleAcheminement": "PLOUEC DU TRIEUX", + "nomCommune": "PLOUEC DU TRIEUX" }, { - "codePostal": "15500", - "codeCommune": "15032", - "libelleAcheminement": "CELOUX", - "nomCommune": "CELOUX" + "codePostal": "08220", + "codeCommune": "08369", + "libelleAcheminement": "LA ROMAGNE", + "nomCommune": "LA ROMAGNE" }, { - "codePostal": "54630", - "codeCommune": "54459", - "libelleAcheminement": "RICHARDMENIL", - "nomCommune": "RICHARDMENIL" + "codePostal": "10130", + "codeCommune": "10024", + "libelleAcheminement": "AVREUIL", + "nomCommune": "AVREUIL" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "22200", + "codeCommune": "22070", + "libelleAcheminement": "GUINGAMP", + "nomCommune": "GUINGAMP" }, { - "codePostal": "15190", - "codeCommune": "15040", - "libelleAcheminement": "CHANTERELLE", - "nomCommune": "CHANTERELLE" + "codePostal": "22820", + "codeCommune": "22218", + "libelleAcheminement": "PLOUGRESCANT", + "nomCommune": "PLOUGRESCANT" }, { - "codePostal": "54380", - "codeCommune": "54460", - "libelleAcheminement": "ROGEVILLE", - "nomCommune": "ROGEVILLE" + "codePostal": "08150", + "codeCommune": "08370", + "libelleAcheminement": "ROUVROY SUR AUDRY", + "nomCommune": "ROUVROY SUR AUDRY" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "10330", + "codeCommune": "10026", + "libelleAcheminement": "BAILLY LE FRANC", + "nomCommune": "BAILLY LE FRANC" }, { - "codePostal": "15700", - "codeCommune": "15046", - "libelleAcheminement": "CHAUSSENAC", - "nomCommune": "CHAUSSENAC" + "codePostal": "22120", + "codeCommune": "22081", + "libelleAcheminement": "HILLION", + "nomCommune": "HILLION" }, { - "codePostal": "54360", - "codeCommune": "54461", - "libelleAcheminement": "ROMAIN", - "nomCommune": "ROMAIN" + "codePostal": "22150", + "codeCommune": "22219", + "libelleAcheminement": "PLOUGUENAST LANGAST", + "nomCommune": "PLOUGUENAST LANGAST" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "08190", + "codeCommune": "08381", + "libelleAcheminement": "ST GERMAINMONT", + "nomCommune": "ST GERMAINMONT" }, { - "codePostal": "15700", - "codeCommune": "15064", - "libelleAcheminement": "ESCORAILLES", - "nomCommune": "ESCORAILLES" + "codePostal": "10330", + "codeCommune": "10027", + "libelleAcheminement": "BALIGNICOURT", + "nomCommune": "BALIGNICOURT" }, { - "codePostal": "54210", - "codeCommune": "54468", - "libelleAcheminement": "SAFFAIS", - "nomCommune": "SAFFAIS" + "codePostal": "22230", + "codeCommune": "22083", + "libelleAcheminement": "ILLIFAUT", + "nomCommune": "ILLIFAUT" }, { - "codePostal": "14400", - "codeCommune": "14078", - "libelleAcheminement": "BLAY", - "nomCommune": "BLAY" + "codePostal": "22780", + "codeCommune": "22227", + "libelleAcheminement": "PLOUNERIN", + "nomCommune": "PLOUNERIN" }, { - "codePostal": "15110", - "codeCommune": "15065", - "libelleAcheminement": "ESPINASSE", - "nomCommune": "ESPINASSE" + "codePostal": "08220", + "codeCommune": "08382", + "libelleAcheminement": "ST JEAN AUX BOIS", + "nomCommune": "ST JEAN AUX BOIS" }, { - "codePostal": "54930", - "codeCommune": "54473", - "libelleAcheminement": "ST FIRMIN", - "nomCommune": "ST FIRMIN" + "codePostal": "10600", + "codeCommune": "10030", + "libelleAcheminement": "BARBEREY ST SULPICE", + "nomCommune": "BARBEREY ST SULPICE" }, { - "codePostal": "14220", - "codeCommune": "14090", - "libelleAcheminement": "BOULON", - "nomCommune": "BOULON" + "codePostal": "22500", + "codeCommune": "22086", + "libelleAcheminement": "KERFOT", + "nomCommune": "KERFOT" }, { - "codePostal": "15380", - "codeCommune": "15066", - "libelleAcheminement": "LE FALGOUX", - "nomCommune": "LE FALGOUX" + "codePostal": "22160", + "codeCommune": "22231", + "libelleAcheminement": "PLOURAC H", + "nomCommune": "PLOURAC H" }, { - "codePostal": "54290", - "codeCommune": "54475", - "libelleAcheminement": "ST GERMAIN", - "nomCommune": "ST GERMAIN" + "codePostal": "08090", + "codeCommune": "08385", + "libelleAcheminement": "ST LAURENT", + "nomCommune": "ST LAURENT" }, { - "codePostal": "14190", - "codeCommune": "14097", - "libelleAcheminement": "BRETTEVILLE LE RABET", - "nomCommune": "BRETTEVILLE LE RABET" + "codePostal": "10130", + "codeCommune": "10040", + "libelleAcheminement": "BERNON", + "nomCommune": "BERNON" }, { - "codePostal": "15140", - "codeCommune": "15067", - "libelleAcheminement": "LE FAU", - "nomCommune": "LE FAU" + "codePostal": "22140", + "codeCommune": "22091", + "libelleAcheminement": "KERMOROC H", + "nomCommune": "KERMOROC H" }, { - "codePostal": "54730", - "codeCommune": "54485", - "libelleAcheminement": "ST PANCRE", - "nomCommune": "ST PANCRE" + "codePostal": "22250", + "codeCommune": "22240", + "libelleAcheminement": "PLUMAUGAT", + "nomCommune": "PLUMAUGAT" }, { - "codePostal": "14760", - "codeCommune": "14101", - "libelleAcheminement": "BRETTEVILLE SUR ODON", - "nomCommune": "BRETTEVILLE SUR ODON" + "codePostal": "08130", + "codeCommune": "08387", + "libelleAcheminement": "ST LOUP TERRIER", + "nomCommune": "ST LOUP TERRIER" }, { - "codePostal": "15230", - "codeCommune": "15077", - "libelleAcheminement": "GOURDIEGES", - "nomCommune": "GOURDIEGES" + "codePostal": "10170", + "codeCommune": "10043", + "libelleAcheminement": "BESSY", + "nomCommune": "BESSY" }, { - "codePostal": "54290", - "codeCommune": "54487", - "libelleAcheminement": "ST REMY AUX BOIS", - "nomCommune": "ST REMY AUX BOIS" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "14130", - "codeCommune": "14102", - "libelleAcheminement": "LE BREUIL EN AUGE", - "nomCommune": "LE BREUIL EN AUGE" + "codePostal": "22210", + "codeCommune": "22255", + "libelleAcheminement": "LA PRENESSAYE", + "nomCommune": "LA PRENESSAYE" }, { - "codePostal": "15800", - "codeCommune": "15081", - "libelleAcheminement": "JOU SOUS MONJOU", - "nomCommune": "JOU SOUS MONJOU" + "codePostal": "08460", + "codeCommune": "08389", + "libelleAcheminement": "ST MARCEL", + "nomCommune": "ST MARCEL" }, { - "codePostal": "54620", - "codeCommune": "54489", - "libelleAcheminement": "ST SUPPLET", - "nomCommune": "ST SUPPLET" + "codePostal": "10380", + "codeCommune": "10052", + "libelleAcheminement": "BOULAGES", + "nomCommune": "BOULAGES" }, { - "codePostal": "14330", - "codeCommune": "14103", - "libelleAcheminement": "LE BREUIL EN BESSIN", - "nomCommune": "LE BREUIL EN BESSIN" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "15250", - "codeCommune": "15083", - "libelleAcheminement": "JUSSAC", - "nomCommune": "JUSSAC" + "codePostal": "22450", + "codeCommune": "22264", + "libelleAcheminement": "LA ROCHE JAUDY", + "nomCommune": "LA ROCHE JAUDY" }, { - "codePostal": "54200", - "codeCommune": "54492", - "libelleAcheminement": "SANZEY", - "nomCommune": "SANZEY" + "codePostal": "08300", + "codeCommune": "08397", + "libelleAcheminement": "ST REMY LE PETIT", + "nomCommune": "ST REMY LE PETIT" }, { - "codePostal": "14130", - "codeCommune": "14104", - "libelleAcheminement": "LE BREVEDENT", - "nomCommune": "LE BREVEDENT" + "codePostal": "10290", + "codeCommune": "10054", + "libelleAcheminement": "BOURDENAY", + "nomCommune": "BOURDENAY" }, { - "codePostal": "15120", - "codeCommune": "15089", - "libelleAcheminement": "LADINHAC", - "nomCommune": "LADINHAC" + "codePostal": "22140", + "codeCommune": "22095", + "libelleAcheminement": "LANDEBAERON", + "nomCommune": "LANDEBAERON" }, { - "codePostal": "54330", - "codeCommune": "54497", - "libelleAcheminement": "SAXON SION", - "nomCommune": "SAXON SION" + "codePostal": "22450", + "codeCommune": "22264", + "libelleAcheminement": "LA ROCHE JAUDY", + "nomCommune": "LA ROCHE JAUDY" }, { - "codePostal": "14860", - "codeCommune": "14106", - "libelleAcheminement": "BREVILLE LES MONTS", - "nomCommune": "BREVILLE LES MONTS" + "codePostal": "08130", + "codeCommune": "08398", + "libelleAcheminement": "STE VAUBOURG", + "nomCommune": "STE VAUBOURG" }, { - "codePostal": "15270", - "codeCommune": "15092", - "libelleAcheminement": "LANOBRE", - "nomCommune": "LANOBRE" + "codePostal": "10400", + "codeCommune": "10057", + "libelleAcheminement": "BOUY SUR ORVIN", + "nomCommune": "BOUY SUR ORVIN" }, { - "codePostal": "54115", - "codeCommune": "54522", - "libelleAcheminement": "THOREY LYAUTEY", - "nomCommune": "THOREY LYAUTEY" + "codePostal": "22400", + "codeCommune": "22098", + "libelleAcheminement": "LANDEHEN", + "nomCommune": "LANDEHEN" }, { - "codePostal": "14610", - "codeCommune": "14125", - "libelleAcheminement": "CAMBES EN PLAINE", - "nomCommune": "CAMBES EN PLAINE" + "codePostal": "22450", + "codeCommune": "22264", + "libelleAcheminement": "LA ROCHE JAUDY", + "nomCommune": "LA ROCHE JAUDY" }, { - "codePostal": "15590", - "codeCommune": "15096", - "libelleAcheminement": "LASCELLE MANDAILLES", - "nomCommune": "LASCELLE" + "codePostal": "08160", + "codeCommune": "08400", + "libelleAcheminement": "SAPOGNE ET FEUCHERES", + "nomCommune": "SAPOGNE ET FEUCHERES" }, { - "codePostal": "54170", - "codeCommune": "54523", - "libelleAcheminement": "THUILLEY AUX GROSEILLES", - "nomCommune": "THUILLEY AUX GROSEILLES" + "codePostal": "10220", + "codeCommune": "10061", + "libelleAcheminement": "BREVONNES", + "nomCommune": "BREVONNES" }, { - "codePostal": "14340", - "codeCommune": "14126", - "libelleAcheminement": "CAMBREMER", - "nomCommune": "CAMBREMER" + "codePostal": "22360", + "codeCommune": "22106", + "libelleAcheminement": "LANGUEUX", + "nomCommune": "LANGUEUX" }, { - "codePostal": "15300", - "codeCommune": "15102", - "libelleAcheminement": "LAVIGERIE", - "nomCommune": "LAVIGERIE" + "codePostal": "22110", + "codeCommune": "22266", + "libelleAcheminement": "ROSTRENEN", + "nomCommune": "ROSTRENEN" }, { - "codePostal": "54190", - "codeCommune": "54525", - "libelleAcheminement": "TIERCELET", - "nomCommune": "TIERCELET" + "codePostal": "08270", + "codeCommune": "08402", + "libelleAcheminement": "SAULCES MONCLIN", + "nomCommune": "SAULCES MONCLIN" }, { - "codePostal": "50730", - "codeCommune": "50229", - "libelleAcheminement": "HAMELIN", - "nomCommune": "HAMELIN" + "codePostal": "10190", + "codeCommune": "10066", + "libelleAcheminement": "BUCEY EN OTHE", + "nomCommune": "BUCEY EN OTHE" }, { - "codePostal": "14340", - "codeCommune": "14126", - "libelleAcheminement": "CAMBREMER", - "nomCommune": "CAMBREMER" + "codePostal": "22290", + "codeCommune": "22108", + "libelleAcheminement": "LANLEFF", + "nomCommune": "LANLEFF" }, { - "codePostal": "15320", - "codeCommune": "15108", - "libelleAcheminement": "VAL D ARCOMIE", - "nomCommune": "VAL D ARCOMIE" + "codePostal": "22550", + "codeCommune": "22268", + "libelleAcheminement": "RUCA", + "nomCommune": "RUCA" }, { - "codePostal": "54570", - "codeCommune": "54534", - "libelleAcheminement": "TRONDES", - "nomCommune": "TRONDES" + "codePostal": "08150", + "codeCommune": "08408", + "libelleAcheminement": "SECHEVAL", + "nomCommune": "SECHEVAL" }, { - "codePostal": "50590", - "codeCommune": "50231", - "libelleAcheminement": "HAUTEVILLE SUR MER", - "nomCommune": "HAUTEVILLE SUR MER" + "codePostal": "10800", + "codeCommune": "10067", + "libelleAcheminement": "BUCHERES", + "nomCommune": "BUCHERES" }, { - "codePostal": "14340", - "codeCommune": "14126", - "libelleAcheminement": "CAMBREMER", - "nomCommune": "CAMBREMER" + "codePostal": "22300", + "codeCommune": "22110", + "libelleAcheminement": "LANMERIN", + "nomCommune": "LANMERIN" }, { - "codePostal": "15190", - "codeCommune": "15110", - "libelleAcheminement": "LUGARDE", - "nomCommune": "LUGARDE" + "codePostal": "22800", + "codeCommune": "22276", + "libelleAcheminement": "ST BIHY", + "nomCommune": "ST BIHY" }, { - "codePostal": "54122", - "codeCommune": "54550", - "libelleAcheminement": "VATHIMENIL", - "nomCommune": "VATHIMENIL" + "codePostal": "08220", + "codeCommune": "08413", + "libelleAcheminement": "SERAINCOURT", + "nomCommune": "SERAINCOURT" }, { - "codePostal": "50410", - "codeCommune": "50234", - "libelleAcheminement": "LA HAYE BELLEFOND", - "nomCommune": "LA HAYE BELLEFOND" + "codePostal": "10800", + "codeCommune": "10067", + "libelleAcheminement": "BUCHERES", + "nomCommune": "BUCHERES" }, { - "codePostal": "14800", - "codeCommune": "14131", - "libelleAcheminement": "CANAPVILLE", - "nomCommune": "CANAPVILLE" + "codePostal": "22800", + "codeCommune": "22126", + "libelleAcheminement": "LE LESLAY", + "nomCommune": "LE LESLAY" }, { - "codePostal": "15190", - "codeCommune": "15114", - "libelleAcheminement": "MARCENAT", - "nomCommune": "MARCENAT" + "codePostal": "22800", + "codeCommune": "22277", + "libelleAcheminement": "ST BRANDAN", + "nomCommune": "ST BRANDAN" }, { - "codePostal": "54280", - "codeCommune": "54558", - "libelleAcheminement": "VELAINE SOUS AMANCE", - "nomCommune": "VELAINE SOUS AMANCE" + "codePostal": "08220", + "codeCommune": "08418", + "libelleAcheminement": "SEVIGNY WALEPPE", + "nomCommune": "SEVIGNY WALEPPE" }, { - "codePostal": "50250", - "codeCommune": "50236", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "10500", + "codeCommune": "10073", + "libelleAcheminement": "CHALETTE SUR VOIRE", + "nomCommune": "CHALETTE SUR VOIRE" }, { - "codePostal": "14230", - "codeCommune": "14132", - "libelleAcheminement": "CANCHY", - "nomCommune": "CANCHY" + "codePostal": "22700", + "codeCommune": "22134", + "libelleAcheminement": "LOUANNEC", + "nomCommune": "LOUANNEC" }, { - "codePostal": "15250", - "codeCommune": "15118", - "libelleAcheminement": "MARMANHAC", - "nomCommune": "MARMANHAC" + "codePostal": "22600", + "codeCommune": "22279", + "libelleAcheminement": "ST CARADEC", + "nomCommune": "ST CARADEC" }, { - "codePostal": "54290", - "codeCommune": "54567", - "libelleAcheminement": "VILLACOURT", - "nomCommune": "VILLACOURT" + "codePostal": "08300", + "codeCommune": "08427", + "libelleAcheminement": "SORBON", + "nomCommune": "SORBON" }, { - "codePostal": "50320", - "codeCommune": "50237", - "libelleAcheminement": "LA HAYE PESNEL", - "nomCommune": "LA HAYE PESNEL" + "codePostal": "10340", + "codeCommune": "10079", + "libelleAcheminement": "CHANNES", + "nomCommune": "CHANNES" }, { - "codePostal": "14140", - "codeCommune": "14141", - "libelleAcheminement": "CASTILLON EN AUGE", - "nomCommune": "CASTILLON EN AUGE" + "codePostal": "22270", + "codeCommune": "22145", + "libelleAcheminement": "MEGRIT", + "nomCommune": "MEGRIT" }, { - "codePostal": "15600", - "codeCommune": "15122", - "libelleAcheminement": "MAURS", - "nomCommune": "MAURS" + "codePostal": "22800", + "codeCommune": "22291", + "libelleAcheminement": "ST GILDAS", + "nomCommune": "ST GILDAS" }, { - "codePostal": "54870", - "codeCommune": "54574", - "libelleAcheminement": "VILLERS LA CHEVRE", - "nomCommune": "VILLERS LA CHEVRE" + "codePostal": "08150", + "codeCommune": "08429", + "libelleAcheminement": "SORMONNE", + "nomCommune": "SORMONNE" }, { - "codePostal": "50700", - "codeCommune": "50241", - "libelleAcheminement": "HEMEVEZ", - "nomCommune": "HEMEVEZ" + "codePostal": "10110", + "codeCommune": "10092", + "libelleAcheminement": "CHAUFFOUR LES BAILLY", + "nomCommune": "CHAUFFOUR LES BAILLY" }, { - "codePostal": "14240", - "codeCommune": "14143", - "libelleAcheminement": "CAUMONT SUR AURE", - "nomCommune": "CAUMONT SUR AURE" + "codePostal": "22230", + "codeCommune": "22147", + "libelleAcheminement": "MERDRIGNAC", + "nomCommune": "MERDRIGNAC" }, { - "codePostal": "15500", - "codeCommune": "15127", - "libelleAcheminement": "MOLOMPIZE", - "nomCommune": "MOLOMPIZE" + "codePostal": "22750", + "codeCommune": "22302", + "libelleAcheminement": "ST JACUT DE LA MER", + "nomCommune": "ST JACUT DE LA MER" }, { - "codePostal": "54920", - "codeCommune": "54575", - "libelleAcheminement": "VILLERS LA MONTAGNE", - "nomCommune": "VILLERS LA MONTAGNE" + "codePostal": "08400", + "codeCommune": "08455", + "libelleAcheminement": "TOURCELLES CHAUMONT", + "nomCommune": "TOURCELLES CHAUMONT" }, { - "codePostal": "50170", - "codeCommune": "50253", - "libelleAcheminement": "HUISNES SUR MER", - "nomCommune": "HUISNES SUR MER" + "codePostal": "10400", + "codeCommune": "10106", + "libelleAcheminement": "COURCEROY", + "nomCommune": "COURCEROY" }, { - "codePostal": "14190", - "codeCommune": "14145", - "libelleAcheminement": "CAUVICOURT", - "nomCommune": "CAUVICOURT" + "codePostal": "22220", + "codeCommune": "22152", + "libelleAcheminement": "MINIHY TREGUIER", + "nomCommune": "MINIHY TREGUIER" }, { - "codePostal": "15600", - "codeCommune": "15133", - "libelleAcheminement": "MONTMURAT", - "nomCommune": "MONTMURAT" + "codePostal": "22170", + "codeCommune": "22304", + "libelleAcheminement": "ST JEAN KERDANIEL", + "nomCommune": "ST JEAN KERDANIEL" }, { - "codePostal": "54600", - "codeCommune": "54578", - "libelleAcheminement": "VILLERS LES NANCY", - "nomCommune": "VILLERS LES NANCY" + "codePostal": "08800", + "codeCommune": "08456", + "libelleAcheminement": "TOURNAVAUX", + "nomCommune": "TOURNAVAUX" }, { - "codePostal": "50540", - "codeCommune": "50256", - "libelleAcheminement": "ISIGNY LE BUAT", - "nomCommune": "ISIGNY LE BUAT" + "codePostal": "10210", + "codeCommune": "10112", + "libelleAcheminement": "COUSSEGREY", + "nomCommune": "COUSSEGREY" }, { - "codePostal": "14270", - "codeCommune": "14149", - "libelleAcheminement": "CESNY AUX VIGNES", - "nomCommune": "CESNY AUX VIGNES" + "codePostal": "22510", + "codeCommune": "22153", + "libelleAcheminement": "MONCONTOUR DE BRETAGNE", + "nomCommune": "MONCONTOUR" }, { - "codePostal": "15170", - "codeCommune": "15141", - "libelleAcheminement": "NEUSSARGUES EN PINATELLE", - "nomCommune": "NEUSSARGUES EN PINATELLE" + "codePostal": "22350", + "codeCommune": "22305", + "libelleAcheminement": "ST JOUAN DE L ISLE", + "nomCommune": "ST JOUAN DE L ISLE" }, { - "codePostal": "54290", - "codeCommune": "54585", - "libelleAcheminement": "VIRECOURT", - "nomCommune": "VIRECOURT" + "codePostal": "08130", + "codeCommune": "08462", + "libelleAcheminement": "VAUX CHAMPAGNE", + "nomCommune": "VAUX CHAMPAGNE" }, { - "codePostal": "50520", - "codeCommune": "50260", - "libelleAcheminement": "JUVIGNY LES VALLEES", - "nomCommune": "JUVIGNY LES VALLEES" + "codePostal": "10200", + "codeCommune": "10113", + "libelleAcheminement": "COUVIGNON", + "nomCommune": "COUVIGNON" }, { - "codePostal": "14220", - "codeCommune": "14150", - "libelleAcheminement": "CESNY LES SOURCES", - "nomCommune": "CESNY LES SOURCES" + "codePostal": "22340", + "codeCommune": "22157", + "libelleAcheminement": "LE MOUSTOIR", + "nomCommune": "LE MOUSTOIR" }, { - "codePostal": "15260", - "codeCommune": "15142", - "libelleAcheminement": "NEUVEGLISE SUR TRUYERE", - "nomCommune": "NEUVEGLISE SUR TRUYERE" + "codePostal": "22630", + "codeCommune": "22308", + "libelleAcheminement": "ST JUVAT", + "nomCommune": "ST JUVAT" }, { - "codePostal": "54740", - "codeCommune": "54597", - "libelleAcheminement": "XIROCOURT", - "nomCommune": "XIROCOURT" + "codePostal": "08220", + "codeCommune": "08465", + "libelleAcheminement": "VAUX LES RUBIGNY", + "nomCommune": "VAUX LES RUBIGNY" }, { - "codePostal": "50800", - "codeCommune": "50262", - "libelleAcheminement": "LA LANDE D AIROU", - "nomCommune": "LA LANDE D AIROU" + "codePostal": "10100", + "codeCommune": "10114", + "libelleAcheminement": "CRANCEY", + "nomCommune": "CRANCEY" }, { - "codePostal": "14520", - "codeCommune": "14172", - "libelleAcheminement": "COMMES", - "nomCommune": "COMMES" + "codePostal": "22710", + "codeCommune": "22166", + "libelleAcheminement": "PENVENAN", + "nomCommune": "PENVENAN" }, { - "codePostal": "15260", - "codeCommune": "15142", - "libelleAcheminement": "NEUVEGLISE SUR TRUYERE", - "nomCommune": "NEUVEGLISE SUR TRUYERE" + "codePostal": "22230", + "codeCommune": "22309", + "libelleAcheminement": "ST LAUNEUC", + "nomCommune": "ST LAUNEUC" }, { - "codePostal": "54370", - "codeCommune": "54600", - "libelleAcheminement": "XOUSSE", - "nomCommune": "XOUSSE" + "codePostal": "08390", + "codeCommune": "08471", + "libelleAcheminement": "VERRIERES", + "nomCommune": "VERRIERES" }, { - "codePostal": "50480", - "codeCommune": "50269", - "libelleAcheminement": "LIESVILLE SUR DOUVE", - "nomCommune": "LIESVILLE SUR DOUVE" + "codePostal": "10500", + "codeCommune": "10123", + "libelleAcheminement": "DIENVILLE", + "nomCommune": "DIENVILLE" }, { - "codePostal": "14770", - "codeCommune": "14174", - "libelleAcheminement": "CONDE EN NORMANDIE", - "nomCommune": "CONDE EN NORMANDIE" + "codePostal": "22700", + "codeCommune": "22168", + "libelleAcheminement": "PERROS GUIREC", + "nomCommune": "PERROS GUIREC" }, { - "codePostal": "15800", - "codeCommune": "15146", - "libelleAcheminement": "PAILHEROLS", - "nomCommune": "PAILHEROLS" + "codePostal": "22320", + "codeCommune": "22313", + "libelleAcheminement": "ST MARTIN DES PRES", + "nomCommune": "ST MARTIN DES PRES" }, { - "codePostal": "54620", - "codeCommune": "54602", - "libelleAcheminement": "HAN DEVANT PIERREPONT", - "nomCommune": "HAN DEVANT PIERREPONT" + "codePostal": "08430", + "codeCommune": "08478", + "libelleAcheminement": "VILLERS LE TILLEUL", + "nomCommune": "VILLERS LE TILLEUL" }, { - "codePostal": "50250", - "codeCommune": "50273", - "libelleAcheminement": "MONTSENELLE", - "nomCommune": "MONTSENELLE" + "codePostal": "10190", + "codeCommune": "10125", + "libelleAcheminement": "DIERREY ST PIERRE", + "nomCommune": "DIERREY ST PIERRE" }, { - "codePostal": "14240", - "codeCommune": "14182", - "libelleAcheminement": "CORMOLAIN", - "nomCommune": "CORMOLAIN" + "codePostal": "22480", + "codeCommune": "22169", + "libelleAcheminement": "PEUMERIT QUINTIN", + "nomCommune": "PEUMERIT QUINTIN" }, { - "codePostal": "15700", - "codeCommune": "15153", - "libelleAcheminement": "PLEAUX", - "nomCommune": "PLEAUX" + "codePostal": "22600", + "codeCommune": "22314", + "libelleAcheminement": "ST MAUDAN", + "nomCommune": "ST MAUDAN" }, { - "codePostal": "55170", - "codeCommune": "55015", - "libelleAcheminement": "AULNOIS EN PERTHOIS", - "nomCommune": "AULNOIS EN PERTHOIS" + "codePostal": "08430", + "codeCommune": "08479", + "libelleAcheminement": "VILLERS LE TOURNEUR", + "nomCommune": "VILLERS LE TOURNEUR" }, { - "codePostal": "50570", - "codeCommune": "50292", - "libelleAcheminement": "MARIGNY LE LOZON", - "nomCommune": "MARIGNY LE LOZON" + "codePostal": "10170", + "codeCommune": "10132", + "libelleAcheminement": "DROUPT STE MARIE", + "nomCommune": "DROUPT STE MARIE" }, { - "codePostal": "14260", - "codeCommune": "14195", - "libelleAcheminement": "COURVAUDON", - "nomCommune": "COURVAUDON" + "codePostal": "22290", + "codeCommune": "22178", + "libelleAcheminement": "PLEHEDEL", + "nomCommune": "PLEHEDEL" }, { - "codePostal": "15160", - "codeCommune": "15155", - "libelleAcheminement": "PRADIERS", - "nomCommune": "PRADIERS" + "codePostal": "22980", + "codeCommune": "22318", + "libelleAcheminement": "ST MICHEL DE PLELAN", + "nomCommune": "ST MICHEL DE PLELAN" }, { - "codePostal": "55700", - "codeCommune": "55018", - "libelleAcheminement": "AUTREVILLE ST LAMBERT", - "nomCommune": "AUTREVILLE ST LAMBERT" + "codePostal": "08430", + "codeCommune": "08482", + "libelleAcheminement": "VILLERS SUR LE MONT", + "nomCommune": "VILLERS SUR LE MONT" }, { - "codePostal": "50600", - "codeCommune": "50315", - "libelleAcheminement": "LE MESNILLARD", - "nomCommune": "LE MESNILLARD" + "codePostal": "10130", + "codeCommune": "10133", + "libelleAcheminement": "EAUX PUISEAUX", + "nomCommune": "EAUX PUISEAUX" }, { - "codePostal": "14400", - "codeCommune": "14214", - "libelleAcheminement": "CUSSY", - "nomCommune": "CUSSY" + "codePostal": "22240", + "codeCommune": "22179", + "libelleAcheminement": "FREHEL", + "nomCommune": "FREHEL" }, { - "codePostal": "15250", - "codeCommune": "15160", - "libelleAcheminement": "REILHAC", - "nomCommune": "REILHAC" + "codePostal": "22480", + "codeCommune": "22321", + "libelleAcheminement": "ST NICOLAS DU PELEM", + "nomCommune": "ST NICOLAS DU PELEM" }, { - "codePostal": "55250", - "codeCommune": "55040", - "libelleAcheminement": "BEAUSITE", - "nomCommune": "BEAUSITE" + "codePostal": "08310", + "codeCommune": "08484", + "libelleAcheminement": "VILLE SUR RETOURNE", + "nomCommune": "VILLE SUR RETOURNE" }, { - "codePostal": "50220", - "codeCommune": "50317", - "libelleAcheminement": "LE MESNIL OZENNE", - "nomCommune": "LE MESNIL OZENNE" + "codePostal": "10200", + "codeCommune": "10137", + "libelleAcheminement": "ENGENTE", + "nomCommune": "ENGENTE" }, { - "codePostal": "14340", - "codeCommune": "14231", - "libelleAcheminement": "BEAUFOUR DRUVAL", - "nomCommune": "BEAUFOUR DRUVAL" + "codePostal": "22240", + "codeCommune": "22179", + "libelleAcheminement": "FREHEL", + "nomCommune": "FREHEL" }, { - "codePostal": "15190", - "codeCommune": "15170", - "libelleAcheminement": "ST AMANDIN", - "nomCommune": "ST AMANDIN" + "codePostal": "22160", + "codeCommune": "22328", + "libelleAcheminement": "ST SERVAIS", + "nomCommune": "ST SERVAIS" }, { - "codePostal": "55250", - "codeCommune": "55040", - "libelleAcheminement": "BEAUSITE", - "nomCommune": "BEAUSITE" + "codePostal": "08400", + "codeCommune": "08490", + "libelleAcheminement": "VOUZIERS", + "nomCommune": "VOUZIERS" }, { - "codePostal": "50490", - "codeCommune": "50340", - "libelleAcheminement": "MONTCUIT", - "nomCommune": "MONTCUIT" + "codePostal": "10210", + "codeCommune": "10143", + "libelleAcheminement": "ETOURVY", + "nomCommune": "ETOURVY" }, { - "codePostal": "14340", - "codeCommune": "14231", - "libelleAcheminement": "BEAUFOUR DRUVAL", - "nomCommune": "BEAUFOUR DRUVAL" + "codePostal": "22980", + "codeCommune": "22180", + "libelleAcheminement": "PLELAN LE PETIT", + "nomCommune": "PLELAN LE PETIT" }, { - "codePostal": "15310", - "codeCommune": "15175", - "libelleAcheminement": "ST CERNIN", - "nomCommune": "ST CERNIN" + "codePostal": "22510", + "codeCommune": "22332", + "libelleAcheminement": "ST TRIMOEL", + "nomCommune": "ST TRIMOEL" }, { - "codePostal": "55430", - "codeCommune": "55043", - "libelleAcheminement": "BELLEVILLE SUR MEUSE", - "nomCommune": "BELLEVILLE SUR MEUSE" + "codePostal": "09300", + "codeCommune": "09003", + "libelleAcheminement": "L AIGUILLON", + "nomCommune": "L AIGUILLON" }, { - "codePostal": "50760", - "codeCommune": "50342", - "libelleAcheminement": "MONTFARVILLE", - "nomCommune": "MONTFARVILLE" + "codePostal": "10170", + "codeCommune": "10144", + "libelleAcheminement": "ETRELLES SUR AUBE", + "nomCommune": "ETRELLES SUR AUBE" }, { - "codePostal": "14250", - "codeCommune": "14236", - "libelleAcheminement": "ELLON", - "nomCommune": "ELLON" + "codePostal": "22570", + "codeCommune": "22181", + "libelleAcheminement": "PLELAUFF", + "nomCommune": "PLELAUFF" }, { - "codePostal": "15590", - "codeCommune": "15178", - "libelleAcheminement": "ST CIRGUES DE JORDANNE", - "nomCommune": "ST CIRGUES DE JORDANNE" + "codePostal": "22200", + "codeCommune": "22338", + "libelleAcheminement": "SQUIFFIEC", + "nomCommune": "SQUIFFIEC" }, { - "codePostal": "55100", - "codeCommune": "55045", - "libelleAcheminement": "BELRUPT EN VERDUNOIS", - "nomCommune": "BELRUPT EN VERDUNOIS" + "codePostal": "09400", + "codeCommune": "09006", + "libelleAcheminement": "ALLIAT", + "nomCommune": "ALLIAT" }, { - "codePostal": "50140", - "codeCommune": "50359", - "libelleAcheminement": "MORTAIN BOCAGE", - "nomCommune": "MORTAIN BOCAGE" + "codePostal": "10150", + "codeCommune": "10149", + "libelleAcheminement": "FEUGES", + "nomCommune": "FEUGES" }, { - "codePostal": "14270", - "codeCommune": "14245", - "libelleAcheminement": "ERNES", - "nomCommune": "ERNES" + "codePostal": "22210", + "codeCommune": "22183", + "libelleAcheminement": "PLEMET", + "nomCommune": "PLEMET" }, { - "codePostal": "15130", - "codeCommune": "15183", - "libelleAcheminement": "ST ETIENNE DE CARLAT", - "nomCommune": "ST ETIENNE DE CARLAT" + "codePostal": "22100", + "codeCommune": "22339", + "libelleAcheminement": "TADEN", + "nomCommune": "TADEN" }, { - "codePostal": "55290", - "codeCommune": "55051", - "libelleAcheminement": "BIENCOURT SUR ORGE", - "nomCommune": "BIENCOURT SUR ORGE" + "codePostal": "09000", + "codeCommune": "09013", + "libelleAcheminement": "ARABAUX", + "nomCommune": "ARABAUX" }, { - "codePostal": "50320", - "codeCommune": "50361", - "libelleAcheminement": "LA MOUCHE", - "nomCommune": "LA MOUCHE" + "codePostal": "10200", + "codeCommune": "10160", + "libelleAcheminement": "FRAVAUX", + "nomCommune": "FRAVAUX" }, { - "codePostal": "14850", - "codeCommune": "14246", - "libelleAcheminement": "ESCOVILLE", - "nomCommune": "ESCOVILLE" + "codePostal": "22370", + "codeCommune": "22186", + "libelleAcheminement": "PLENEUF VAL ANDRE", + "nomCommune": "PLENEUF VAL ANDRE" }, { - "codePostal": "15140", - "codeCommune": "15205", - "libelleAcheminement": "ST PAUL DE SALERS", - "nomCommune": "ST PAUL DE SALERS" + "codePostal": "22340", + "codeCommune": "22344", + "libelleAcheminement": "TREBRIVAN", + "nomCommune": "TREBRIVAN" }, { - "codePostal": "55400", - "codeCommune": "55072", - "libelleAcheminement": "BRAQUIS", - "nomCommune": "BRAQUIS" + "codePostal": "09800", + "codeCommune": "09018", + "libelleAcheminement": "ARROUT", + "nomCommune": "ARROUT" }, { - "codePostal": "50860", - "codeCommune": "50363", - "libelleAcheminement": "MOYON VILLAGES", - "nomCommune": "MOYON VILLAGES" + "codePostal": "10100", + "codeCommune": "10164", + "libelleAcheminement": "GELANNES", + "nomCommune": "GELANNES" }, { - "codePostal": "14210", - "codeCommune": "14249", - "libelleAcheminement": "ESQUAY NOTRE DAME", - "nomCommune": "ESQUAY NOTRE DAME" + "codePostal": "22190", + "codeCommune": "22187", + "libelleAcheminement": "PLERIN", + "nomCommune": "PLERIN" }, { - "codePostal": "15500", - "codeCommune": "15207", - "libelleAcheminement": "ST PONCY", - "nomCommune": "ST PONCY" + "codePostal": "22510", + "codeCommune": "22345", + "libelleAcheminement": "TREBRY", + "nomCommune": "TREBRY" }, { - "codePostal": "55170", - "codeCommune": "55075", - "libelleAcheminement": "BRAUVILLIERS", - "nomCommune": "BRAUVILLIERS" + "codePostal": "09800", + "codeCommune": "09035", + "libelleAcheminement": "BALAGUERES", + "nomCommune": "BALAGUERES" }, { - "codePostal": "50190", - "codeCommune": "50368", - "libelleAcheminement": "NAY", - "nomCommune": "NAY" + "codePostal": "10170", + "codeCommune": "10166", + "libelleAcheminement": "LES GRANDES CHAPELLES", + "nomCommune": "LES GRANDES CHAPELLES" }, { - "codePostal": "14930", - "codeCommune": "14254", - "libelleAcheminement": "ETERVILLE", - "nomCommune": "ETERVILLE" + "codePostal": "22170", + "codeCommune": "22188", + "libelleAcheminement": "PLERNEUF", + "nomCommune": "PLERNEUF" }, { - "codePostal": "15110", - "codeCommune": "15209", - "libelleAcheminement": "ST REMY DE CHAUDES AIGUES", - "nomCommune": "ST REMY DE CHAUDES AIGUES" + "codePostal": "22300", + "codeCommune": "22349", + "libelleAcheminement": "TREDREZ LOCQUEMEAU", + "nomCommune": "TREDREZ LOCQUEMEAU" }, { - "codePostal": "55110", - "codeCommune": "55078", - "libelleAcheminement": "BRIEULLES SUR MEUSE", - "nomCommune": "BRIEULLES SUR MEUSE" + "codePostal": "09400", + "codeCommune": "09045", + "libelleAcheminement": "BEDEILHAC ET AYNAT", + "nomCommune": "BEDEILHAC ET AYNAT" }, { - "codePostal": "50140", - "codeCommune": "50371", - "libelleAcheminement": "LE NEUFBOURG", - "nomCommune": "LE NEUFBOURG" + "codePostal": "10200", + "codeCommune": "10176", + "libelleAcheminement": "JAUCOURT", + "nomCommune": "JAUCOURT" }, { - "codePostal": "14320", - "codeCommune": "14266", - "libelleAcheminement": "FEUGUEROLLES BULLY", - "nomCommune": "FEUGUEROLLES BULLY" + "codePostal": "22150", + "codeCommune": "22203", + "libelleAcheminement": "PLOEUC L HERMITAGE", + "nomCommune": "PLOEUC L HERMITAGE" }, { - "codePostal": "15150", - "codeCommune": "15211", - "libelleAcheminement": "ST SANTIN CANTALES", - "nomCommune": "ST SANTIN CANTALES" + "codePostal": "22540", + "codeCommune": "22354", + "libelleAcheminement": "TREGLAMUS", + "nomCommune": "TREGLAMUS" }, { - "codePostal": "55250", - "codeCommune": "55081", - "libelleAcheminement": "BRIZEAUX", - "nomCommune": "BRIZEAUX" + "codePostal": "09400", + "codeCommune": "09058", + "libelleAcheminement": "BOMPAS", + "nomCommune": "BOMPAS" }, { - "codePostal": "50370", - "codeCommune": "50379", - "libelleAcheminement": "NOTRE DAME DE LIVOYE", - "nomCommune": "NOTRE DAME DE LIVOYE" + "codePostal": "10320", + "codeCommune": "10179", + "libelleAcheminement": "JEUGNY", + "nomCommune": "JEUGNY" }, { - "codePostal": "14100", - "codeCommune": "14270", - "libelleAcheminement": "FIRFOL", - "nomCommune": "FIRFOL" + "codePostal": "22650", + "codeCommune": "22209", + "libelleAcheminement": "BEAUSSAIS SUR MER", + "nomCommune": "BEAUSSAIS SUR MER" }, { - "codePostal": "15290", - "codeCommune": "15214", - "libelleAcheminement": "ST SAURY", - "nomCommune": "ST SAURY" + "codePostal": "22200", + "codeCommune": "22358", + "libelleAcheminement": "TREGONNEAU", + "nomCommune": "TREGONNEAU" }, { - "codePostal": "55200", - "codeCommune": "55085", - "libelleAcheminement": "BROUSSEY RAULECOURT", - "nomCommune": "BROUSSEY RAULECOURT" + "codePostal": "09800", + "codeCommune": "09062", + "libelleAcheminement": "BORDES UCHENTEIN", + "nomCommune": "BORDES UCHENTEIN" }, { - "codePostal": "50190", - "codeCommune": "50394", - "libelleAcheminement": "PERIERS", - "nomCommune": "PERIERS" + "codePostal": "10260", + "codeCommune": "10181", + "libelleAcheminement": "JULLY SUR SARCE", + "nomCommune": "JULLY SUR SARCE" }, { - "codePostal": "14190", - "codeCommune": "14276", - "libelleAcheminement": "FONTAINE LE PIN", - "nomCommune": "FONTAINE LE PIN" + "codePostal": "22470", + "codeCommune": "22214", + "libelleAcheminement": "PLOUEZEC", + "nomCommune": "PLOUEZEC" }, { - "codePostal": "15200", - "codeCommune": "15220", - "libelleAcheminement": "SALINS", - "nomCommune": "SALINS" + "codePostal": "22950", + "codeCommune": "22360", + "libelleAcheminement": "TREGUEUX", + "nomCommune": "TREGUEUX" }, { - "codePostal": "55100", - "codeCommune": "55099", - "libelleAcheminement": "CHAMPNEUVILLE", - "nomCommune": "CHAMPNEUVILLE" + "codePostal": "09000", + "codeCommune": "09066", + "libelleAcheminement": "BRASSAC", + "nomCommune": "BRASSAC" }, { - "codePostal": "50250", - "codeCommune": "50400", - "libelleAcheminement": "PICAUVILLE", - "nomCommune": "PICAUVILLE" + "codePostal": "10120", + "codeCommune": "10186", + "libelleAcheminement": "LAINES AUX BOIS", + "nomCommune": "LAINES AUX BOIS" }, { - "codePostal": "14320", - "codeCommune": "14277", - "libelleAcheminement": "FONTENAY LE MARMION", - "nomCommune": "FONTENAY LE MARMION" + "codePostal": "22810", + "codeCommune": "22216", + "libelleAcheminement": "PLOUGONVER", + "nomCommune": "PLOUGONVER" }, { - "codePostal": "15130", - "codeCommune": "15221", - "libelleAcheminement": "SANSAC DE MARMIESSE", - "nomCommune": "SANSAC DE MARMIESSE" + "codePostal": "22290", + "codeCommune": "22361", + "libelleAcheminement": "TREGUIDEL", + "nomCommune": "TREGUIDEL" }, { - "codePostal": "55000", - "codeCommune": "55101", - "libelleAcheminement": "CHARDOGNE", - "nomCommune": "CHARDOGNE" + "codePostal": "09310", + "codeCommune": "09070", + "libelleAcheminement": "LES CABANNES", + "nomCommune": "LES CABANNES" }, { - "codePostal": "50480", - "codeCommune": "50400", - "libelleAcheminement": "PICAUVILLE", - "nomCommune": "PICAUVILLE" + "codePostal": "10500", + "codeCommune": "10189", + "libelleAcheminement": "LASSICOURT", + "nomCommune": "LASSICOURT" }, { - "codePostal": "14250", - "codeCommune": "14278", - "libelleAcheminement": "FONTENAY LE PESNEL", - "nomCommune": "FONTENAY LE PESNEL" + "codePostal": "22300", + "codeCommune": "22224", + "libelleAcheminement": "PLOULEC H", + "nomCommune": "PLOULEC H" }, { - "codePostal": "15300", - "codeCommune": "15225", - "libelleAcheminement": "SEGUR LES VILLAS", - "nomCommune": "SEGUR LES VILLAS" + "codePostal": "22290", + "codeCommune": "22370", + "libelleAcheminement": "TREMEVEN", + "nomCommune": "TREMEVEN" }, { - "codePostal": "55200", - "codeCommune": "55114", - "libelleAcheminement": "CHONVILLE MALAUMONT", - "nomCommune": "CHONVILLE MALAUMONT" + "codePostal": "09160", + "codeCommune": "09091", + "libelleAcheminement": "CAZAVET", + "nomCommune": "CAZAVET" }, { - "codePostal": "50480", - "codeCommune": "50400", - "libelleAcheminement": "PICAUVILLE", - "nomCommune": "PICAUVILLE" + "codePostal": "10500", + "codeCommune": "10193", + "libelleAcheminement": "LESMONT", + "nomCommune": "LESMONT" }, { - "codePostal": "14240", - "codeCommune": "14282", - "libelleAcheminement": "FOULOGNES", - "nomCommune": "FOULOGNES" + "codePostal": "22970", + "codeCommune": "22225", + "libelleAcheminement": "PLOUMAGOAR", + "nomCommune": "PLOUMAGOAR" }, { - "codePostal": "15100", - "codeCommune": "15229", - "libelleAcheminement": "SOULAGES", - "nomCommune": "SOULAGES" + "codePostal": "22290", + "codeCommune": "22375", + "libelleAcheminement": "TRESSIGNAUX", + "nomCommune": "TRESSIGNAUX" }, { - "codePostal": "55000", - "codeCommune": "55120", - "libelleAcheminement": "COMBLES EN BARROIS", - "nomCommune": "COMBLES EN BARROIS" + "codePostal": "09400", + "codeCommune": "09092", + "libelleAcheminement": "CAZENAVE SERRES ET ALLENS", + "nomCommune": "CAZENAVE SERRES ET ALLENS" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "10210", + "codeCommune": "10201", + "libelleAcheminement": "LA LOGE POMBLIN", + "nomCommune": "LA LOGE POMBLIN" }, { - "codePostal": "14600", - "codeCommune": "14286", - "libelleAcheminement": "FOURNEVILLE", - "nomCommune": "FOURNEVILLE" + "codePostal": "22300", + "codeCommune": "22226", + "libelleAcheminement": "PLOUMILLIAU", + "nomCommune": "PLOUMILLIAU" }, { - "codePostal": "15170", - "codeCommune": "15231", - "libelleAcheminement": "TALIZAT", - "nomCommune": "TALIZAT" + "codePostal": "22600", + "codeCommune": "22376", + "libelleAcheminement": "TREVE", + "nomCommune": "TREVE" }, { - "codePostal": "55200", - "codeCommune": "55122", - "libelleAcheminement": "COMMERCY", - "nomCommune": "COMMERCY" + "codePostal": "09800", + "codeCommune": "09095", + "libelleAcheminement": "CESCAU", + "nomCommune": "CESCAU" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "10140", + "codeCommune": "10205", + "libelleAcheminement": "LONGPRE LE SEC", + "nomCommune": "LONGPRE LE SEC" }, { - "codePostal": "14480", - "codeCommune": "14288", - "libelleAcheminement": "LE FRESNE CAMILLY", - "nomCommune": "LE FRESNE CAMILLY" + "codePostal": "22810", + "codeCommune": "22228", + "libelleAcheminement": "PLOUNEVEZ MOEDEC", + "nomCommune": "PLOUNEVEZ MOEDEC" }, { - "codePostal": "15130", - "codeCommune": "15234", - "libelleAcheminement": "TEISSIERES LES BOULIES", - "nomCommune": "TEISSIERES LES BOULIES" + "codePostal": "22410", + "codeCommune": "22377", + "libelleAcheminement": "TREVENEUC", + "nomCommune": "TREVENEUC" }, { - "codePostal": "55000", - "codeCommune": "55123", - "libelleAcheminement": "LES HAUTS DE CHEE", - "nomCommune": "LES HAUTS DE CHEE" + "codePostal": "09420", + "codeCommune": "09097", + "libelleAcheminement": "CLERMONT", + "nomCommune": "CLERMONT" }, { - "codePostal": "50630", - "codeCommune": "50417", - "libelleAcheminement": "QUETTEHOU", - "nomCommune": "QUETTEHOU" + "codePostal": "10150", + "codeCommune": "10210", + "libelleAcheminement": "LUYERES", + "nomCommune": "LUYERES" }, { - "codePostal": "14220", - "codeCommune": "14291", - "libelleAcheminement": "FRESNEY LE VIEUX", - "nomCommune": "FRESNEY LE VIEUX" + "codePostal": "22110", + "codeCommune": "22229", + "libelleAcheminement": "PLOUNEVEZ QUINTIN", + "nomCommune": "PLOUNEVEZ QUINTIN" }, { - "codePostal": "15310", - "codeCommune": "15238", - "libelleAcheminement": "TOURNEMIRE", - "nomCommune": "TOURNEMIRE" + "codePostal": "22460", + "codeCommune": "22384", + "libelleAcheminement": "UZEL PRES L OUST", + "nomCommune": "UZEL" }, { - "codePostal": "55000", - "codeCommune": "55123", - "libelleAcheminement": "LES HAUTS DE CHEE", - "nomCommune": "LES HAUTS DE CHEE" + "codePostal": "09120", + "codeCommune": "09103", + "libelleAcheminement": "CRAMPAGNA", + "nomCommune": "CRAMPAGNA" }, { - "codePostal": "50210", - "codeCommune": "50419", - "libelleAcheminement": "QUETTREVILLE SUR SIENNE", - "nomCommune": "QUETTREVILLE SUR SIENNE" + "codePostal": "10110", + "codeCommune": "10213", + "libelleAcheminement": "MAGNANT", + "nomCommune": "MAGNANT" }, { - "codePostal": "14590", - "codeCommune": "14293", - "libelleAcheminement": "FUMICHON", - "nomCommune": "FUMICHON" + "codePostal": "22410", + "codeCommune": "22232", + "libelleAcheminement": "PLOURHAN", + "nomCommune": "PLOURHAN" }, { - "codePostal": "15270", - "codeCommune": "15240", - "libelleAcheminement": "TREMOUILLE", - "nomCommune": "TREMOUILLE" + "codePostal": "22420", + "codeCommune": "22387", + "libelleAcheminement": "LE VIEUX MARCHE", + "nomCommune": "LE VIEUX MARCHE" }, { - "codePostal": "55500", - "codeCommune": "55144", - "libelleAcheminement": "DAMMARIE SUR SAULX", - "nomCommune": "DAMMARIE SUR SAULX" + "codePostal": "09600", + "codeCommune": "09107", + "libelleAcheminement": "DUN", + "nomCommune": "DUN" }, { - "codePostal": "50660", - "codeCommune": "50419", - "libelleAcheminement": "QUETTREVILLE SUR SIENNE", - "nomCommune": "QUETTREVILLE SUR SIENNE" + "codePostal": "10240", + "codeCommune": "10214", + "libelleAcheminement": "MAGNICOURT", + "nomCommune": "MAGNICOURT" }, { - "codePostal": "14510", - "codeCommune": "14305", - "libelleAcheminement": "GONNEVILLE SUR MER", - "nomCommune": "GONNEVILLE SUR MER" + "codePostal": "22350", + "codeCommune": "22239", + "libelleAcheminement": "PLUMAUDAN", + "nomCommune": "PLUMAUDAN" }, { - "codePostal": "15300", - "codeCommune": "15248", - "libelleAcheminement": "VALUEJOLS", - "nomCommune": "VALUEJOLS" + "codePostal": "23700", + "codeCommune": "23005", + "libelleAcheminement": "ARFEUILLE CHATAIN", + "nomCommune": "ARFEUILLE CHATAIN" }, { - "codePostal": "55130", - "codeCommune": "55150", - "libelleAcheminement": "DEMANGE BAUDIGNECOURT", - "nomCommune": "DEMANGE BAUDIGNECOURT" + "codePostal": "09600", + "codeCommune": "09107", + "libelleAcheminement": "DUN", + "nomCommune": "DUN" }, { - "codePostal": "50750", - "codeCommune": "50420", - "libelleAcheminement": "QUIBOU", - "nomCommune": "QUIBOU" + "codePostal": "10510", + "codeCommune": "10220", + "libelleAcheminement": "MAIZIERES LA GRANDE PAROISSE", + "nomCommune": "MAIZIERES LA GRANDE PAROISSE" }, { - "codePostal": "14450", - "codeCommune": "14312", - "libelleAcheminement": "GRANDCAMP MAISY", - "nomCommune": "GRANDCAMP MAISY" + "codePostal": "22240", + "codeCommune": "22242", + "libelleAcheminement": "PLURIEN", + "nomCommune": "PLURIEN" }, { - "codePostal": "15100", - "codeCommune": "15262", - "libelleAcheminement": "VILLEDIEU", - "nomCommune": "VILLEDIEU" + "codePostal": "23210", + "codeCommune": "23014", + "libelleAcheminement": "AZAT CHATENET", + "nomCommune": "AZAT CHATENET" }, { - "codePostal": "55160", - "codeCommune": "55157", - "libelleAcheminement": "DOMMARTIN LA MONTAGNE", - "nomCommune": "DOMMARTIN LA MONTAGNE" + "codePostal": "09600", + "codeCommune": "09107", + "libelleAcheminement": "DUN", + "nomCommune": "DUN" }, { - "codePostal": "50390", - "codeCommune": "50430", - "libelleAcheminement": "REIGNEVILLE BOCAGE", - "nomCommune": "REIGNEVILLE BOCAGE" + "codePostal": "10400", + "codeCommune": "10225", + "libelleAcheminement": "MARNAY SUR SEINE", + "nomCommune": "MARNAY SUR SEINE" }, { - "codePostal": "14430", - "codeCommune": "14329", - "libelleAcheminement": "HEULAND", - "nomCommune": "HEULAND" + "codePostal": "22160", + "codeCommune": "22243", + "libelleAcheminement": "PLUSQUELLEC", + "nomCommune": "PLUSQUELLEC" }, { - "codePostal": "15300", - "codeCommune": "15263", - "libelleAcheminement": "VIRARGUES", - "nomCommune": "VIRARGUES" + "codePostal": "23160", + "codeCommune": "23015", + "libelleAcheminement": "AZERABLES", + "nomCommune": "AZERABLES" }, { - "codePostal": "55240", - "codeCommune": "55162", - "libelleAcheminement": "DOMREMY LA CANNE", - "nomCommune": "DOMREMY LA CANNE" + "codePostal": "09600", + "codeCommune": "09115", + "libelleAcheminement": "ESCLAGNE", + "nomCommune": "ESCLAGNE" }, { - "codePostal": "50620", - "codeCommune": "50431", - "libelleAcheminement": "REMILLY LES MARAIS", - "nomCommune": "REMILLY LES MARAIS" + "codePostal": "10320", + "codeCommune": "10229", + "libelleAcheminement": "MAUPAS", + "nomCommune": "MAUPAS" }, { - "codePostal": "14250", - "codeCommune": "14336", - "libelleAcheminement": "HOTTOT LES BAGUES", - "nomCommune": "HOTTOT LES BAGUES" + "codePostal": "22140", + "codeCommune": "22245", + "libelleAcheminement": "PLUZUNET", + "nomCommune": "PLUZUNET" }, { - "codePostal": "15210", - "codeCommune": "15265", - "libelleAcheminement": "YDES", - "nomCommune": "YDES" + "codePostal": "23260", + "codeCommune": "23019", + "libelleAcheminement": "BEISSAT", + "nomCommune": "BEISSAT" }, { - "codePostal": "55100", - "codeCommune": "55166", - "libelleAcheminement": "DUGNY SUR MEUSE", - "nomCommune": "DUGNY SUR MEUSE" + "codePostal": "09100", + "codeCommune": "09116", + "libelleAcheminement": "ESCOSSE", + "nomCommune": "ESCOSSE" }, { - "codePostal": "50340", - "codeCommune": "50442", - "libelleAcheminement": "LE ROZEL", - "nomCommune": "LE ROZEL" + "codePostal": "10170", + "codeCommune": "10233", + "libelleAcheminement": "MERY SUR SEINE", + "nomCommune": "MERY SUR SEINE" }, { - "codePostal": "14230", - "codeCommune": "14342", - "libelleAcheminement": "ISIGNY SUR MER", - "nomCommune": "ISIGNY SUR MER" + "codePostal": "22200", + "codeCommune": "22248", + "libelleAcheminement": "POMMERIT LE VICOMTE", + "nomCommune": "POMMERIT LE VICOMTE" }, { - "codePostal": "15290", - "codeCommune": "15268", - "libelleAcheminement": "LE ROUGET PERS", - "nomCommune": "LE ROUGET PERS" + "codePostal": "23200", + "codeCommune": "23024", + "libelleAcheminement": "BLESSAC", + "nomCommune": "BLESSAC" }, { - "codePostal": "55110", - "codeCommune": "55167", - "libelleAcheminement": "DUN SUR MEUSE", - "nomCommune": "DUN SUR MEUSE" + "codePostal": "09420", + "codeCommune": "09118", + "libelleAcheminement": "ESPLAS DE SEROU", + "nomCommune": "ESPLAS DE SEROU" }, { - "codePostal": "50160", - "codeCommune": "50444", - "libelleAcheminement": "ST AMAND VILLAGES", - "nomCommune": "ST AMAND VILLAGES" + "codePostal": "10240", + "codeCommune": "10236", + "libelleAcheminement": "MESNIL LETTRE", + "nomCommune": "MESNIL LETTRE" }, { - "codePostal": "14230", - "codeCommune": "14342", - "libelleAcheminement": "ISIGNY SUR MER", - "nomCommune": "ISIGNY SUR MER" + "codePostal": "22590", + "codeCommune": "22251", + "libelleAcheminement": "PORDIC", + "nomCommune": "PORDIC" }, { - "codePostal": "15290", - "codeCommune": "15268", - "libelleAcheminement": "LE ROUGET PERS", - "nomCommune": "LE ROUGET PERS" + "codePostal": "23000", + "codeCommune": "23033", + "libelleAcheminement": "LA BRIONNE", + "nomCommune": "LA BRIONNE" }, { - "codePostal": "55230", - "codeCommune": "55168", - "libelleAcheminement": "DUZEY", - "nomCommune": "DUZEY" + "codePostal": "09000", + "codeCommune": "09122", + "libelleAcheminement": "FOIX", + "nomCommune": "FOIX" }, { - "codePostal": "50160", - "codeCommune": "50444", - "libelleAcheminement": "ST AMAND VILLAGES", - "nomCommune": "ST AMAND VILLAGES" + "codePostal": "10210", + "codeCommune": "10241", + "libelleAcheminement": "METZ ROBERT", + "nomCommune": "METZ ROBERT" }, { - "codePostal": "14380", - "codeCommune": "14352", - "libelleAcheminement": "LANDELLES ET COUPIGNY", - "nomCommune": "LANDELLES ET COUPIGNY" + "codePostal": "22590", + "codeCommune": "22251", + "libelleAcheminement": "PORDIC", + "nomCommune": "PORDIC" }, { - "codePostal": "16700", - "codeCommune": "16002", - "libelleAcheminement": "LES ADJOTS", - "nomCommune": "LES ADJOTS" + "codePostal": "23170", + "codeCommune": "23035", + "libelleAcheminement": "BUDELIERE", + "nomCommune": "BUDELIERE" }, { - "codePostal": "55600", - "codeCommune": "55169", - "libelleAcheminement": "ECOUVIEZ", - "nomCommune": "ECOUVIEZ" + "codePostal": "09350", + "codeCommune": "09123", + "libelleAcheminement": "FORNEX", + "nomCommune": "FORNEX" }, { - "codePostal": "50340", - "codeCommune": "50454", - "libelleAcheminement": "ST CHRISTOPHE DU FOC", - "nomCommune": "ST CHRISTOPHE DU FOC" + "codePostal": "10260", + "codeCommune": "10246", + "libelleAcheminement": "MONTCEAUX LES VAUDES", + "nomCommune": "MONTCEAUX LES VAUDES" }, { - "codePostal": "14770", - "codeCommune": "14357", - "libelleAcheminement": "TERRES DE DRUANCE", - "nomCommune": "TERRES DE DRUANCE" + "codePostal": "22260", + "codeCommune": "22256", + "libelleAcheminement": "QUEMPER GUEZENNEC", + "nomCommune": "QUEMPER GUEZENNEC" }, { - "codePostal": "16490", - "codeCommune": "16007", - "libelleAcheminement": "ALLOUE", - "nomCommune": "ALLOUE" + "codePostal": "23800", + "codeCommune": "23039", + "libelleAcheminement": "LA CELLE DUNOISE", + "nomCommune": "LA CELLE DUNOISE" }, { - "codePostal": "55260", - "codeCommune": "55175", - "libelleAcheminement": "ERIZE LA BRULEE", - "nomCommune": "ERIZE LA BRULEE" + "codePostal": "09800", + "codeCommune": "09129", + "libelleAcheminement": "GALEY", + "nomCommune": "GALEY" }, { - "codePostal": "50390", - "codeCommune": "50457", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "10270", + "codeCommune": "10249", + "libelleAcheminement": "MONTIERAMEY", + "nomCommune": "MONTIERAMEY" }, { - "codePostal": "14100", - "codeCommune": "14366", - "libelleAcheminement": "LISIEUX", - "nomCommune": "LISIEUX" + "codePostal": "22100", + "codeCommune": "22259", + "libelleAcheminement": "QUEVERT", + "nomCommune": "QUEVERT" }, { - "codePostal": "16560", - "codeCommune": "16024", - "libelleAcheminement": "AUSSAC VADALLE", - "nomCommune": "AUSSAC VADALLE" + "codePostal": "23350", + "codeCommune": "23041", + "libelleAcheminement": "LA CELLETTE", + "nomCommune": "LA CELLETTE" }, { - "codePostal": "55100", - "codeCommune": "55189", - "libelleAcheminement": "FLEURY DEVANT DOUAUMONT", - "nomCommune": "FLEURY DEVANT DOUAUMONT" + "codePostal": "09120", + "codeCommune": "09137", + "libelleAcheminement": "GUDAS", + "nomCommune": "GUDAS" }, { - "codePostal": "50210", - "codeCommune": "50464", - "libelleAcheminement": "ST DENIS LE VETU", - "nomCommune": "ST DENIS LE VETU" + "codePostal": "10140", + "codeCommune": "10252", + "libelleAcheminement": "MONTMARTIN LE HAUT", + "nomCommune": "MONTMARTIN LE HAUT" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "22800", + "codeCommune": "22262", + "libelleAcheminement": "QUINTIN", + "nomCommune": "QUINTIN" }, { - "codePostal": "16430", - "codeCommune": "16026", - "libelleAcheminement": "BALZAC", - "nomCommune": "BALZAC" + "codePostal": "23210", + "codeCommune": "23042", + "libelleAcheminement": "CEYROUX", + "nomCommune": "CEYROUX" }, { - "codePostal": "55400", - "codeCommune": "55191", - "libelleAcheminement": "FOAMEIX ORNEL", - "nomCommune": "FOAMEIX ORNEL" + "codePostal": "09220", + "codeCommune": "09143", + "libelleAcheminement": "ILLIER ET LARAMADE", + "nomCommune": "ILLIER ET LARAMADE" }, { - "codePostal": "50310", - "codeCommune": "50467", - "libelleAcheminement": "ST FLOXEL", - "nomCommune": "ST FLOXEL" + "codePostal": "10800", + "codeCommune": "10260", + "libelleAcheminement": "MOUSSEY", + "nomCommune": "MOUSSEY" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "22450", + "codeCommune": "22264", + "libelleAcheminement": "LA ROCHE JAUDY", + "nomCommune": "LA ROCHE JAUDY" }, { - "codePostal": "16210", - "codeCommune": "16029", - "libelleAcheminement": "BARDENAC", - "nomCommune": "BARDENAC" + "codePostal": "23190", + "codeCommune": "23048", + "libelleAcheminement": "CHAMPAGNAT", + "nomCommune": "CHAMPAGNAT" }, { - "codePostal": "55110", - "codeCommune": "55192", - "libelleAcheminement": "FONTAINES ST CLAIR", - "nomCommune": "FONTAINES ST CLAIR" + "codePostal": "09100", + "codeCommune": "09145", + "libelleAcheminement": "LES ISSARDS", + "nomCommune": "LES ISSARDS" }, { - "codePostal": "50620", - "codeCommune": "50468", - "libelleAcheminement": "ST FROMOND", - "nomCommune": "ST FROMOND" + "codePostal": "10220", + "codeCommune": "10270", + "libelleAcheminement": "ONJON", + "nomCommune": "ONJON" }, { - "codePostal": "14700", - "codeCommune": "14375", - "libelleAcheminement": "LES LOGES SAULCES", - "nomCommune": "LES LOGES SAULCES" + "codePostal": "22630", + "codeCommune": "22274", + "libelleAcheminement": "ST ANDRE DES EAUX", + "nomCommune": "ST ANDRE DES EAUX" }, { - "codePostal": "16120", - "codeCommune": "16032", - "libelleAcheminement": "BASSAC", - "nomCommune": "BASSAC" + "codePostal": "23160", + "codeCommune": "23050", + "libelleAcheminement": "LA CHAPELLE BALOUE", + "nomCommune": "LA CHAPELLE BALOUE" }, { - "codePostal": "55160", - "codeCommune": "55198", - "libelleAcheminement": "FRESNES EN WOEVRE", - "nomCommune": "FRESNES EN WOEVRE" + "codePostal": "09700", + "codeCommune": "09146", + "libelleAcheminement": "JUSTINIAC", + "nomCommune": "JUSTINIAC" }, { - "codePostal": "50480", - "codeCommune": "50479", - "libelleAcheminement": "ST GERMAIN DE VARREVILLE", - "nomCommune": "ST GERMAIN DE VARREVILLE" + "codePostal": "10510", + "codeCommune": "10271", + "libelleAcheminement": "ORIGNY LE SEC", + "nomCommune": "ORIGNY LE SEC" }, { - "codePostal": "14400", - "codeCommune": "14377", - "libelleAcheminement": "LONGUES SUR MER", - "nomCommune": "LONGUES SUR MER" + "codePostal": "22600", + "codeCommune": "22275", + "libelleAcheminement": "ST BARNABE", + "nomCommune": "ST BARNABE" }, { - "codePostal": "16210", - "codeCommune": "16034", - "libelleAcheminement": "BAZAC", - "nomCommune": "BAZAC" + "codePostal": "23800", + "codeCommune": "23065", + "libelleAcheminement": "COLONDANNES", + "nomCommune": "COLONDANNES" }, { - "codePostal": "55120", - "codeCommune": "55202", - "libelleAcheminement": "FUTEAU", - "nomCommune": "FUTEAU" + "codePostal": "09130", + "codeCommune": "09151", + "libelleAcheminement": "LANOUX", + "nomCommune": "LANOUX" }, { - "codePostal": "50600", - "codeCommune": "50484", - "libelleAcheminement": "ST HILAIRE DU HARCOUET", - "nomCommune": "ST HILAIRE DU HARCOUET" + "codePostal": "10700", + "codeCommune": "10272", + "libelleAcheminement": "ORMES", + "nomCommune": "ORMES" }, { - "codePostal": "14170", - "codeCommune": "14381", - "libelleAcheminement": "LOUVAGNY", - "nomCommune": "LOUVAGNY" + "codePostal": "22480", + "codeCommune": "22284", + "libelleAcheminement": "ST CONNAN", + "nomCommune": "ST CONNAN" }, { - "codePostal": "16210", - "codeCommune": "16037", - "libelleAcheminement": "BELLON", - "nomCommune": "BELLON" + "codePostal": "23260", + "codeCommune": "23069", + "libelleAcheminement": "CROCQ", + "nomCommune": "CROCQ" }, { - "codePostal": "55400", - "codeCommune": "55219", - "libelleAcheminement": "GRIMAUCOURT EN WOEVRE", - "nomCommune": "GRIMAUCOURT EN WOEVRE" + "codePostal": "09310", + "codeCommune": "09155", + "libelleAcheminement": "LARCAT", + "nomCommune": "LARCAT" }, { - "codePostal": "50240", - "codeCommune": "50487", - "libelleAcheminement": "ST JAMES", - "nomCommune": "ST JAMES" + "codePostal": "10100", + "codeCommune": "10275", + "libelleAcheminement": "OSSEY LES TROIS MAISONS", + "nomCommune": "OSSEY LES TROIS MAISONS" }, { - "codePostal": "14117", - "codeCommune": "14401", - "libelleAcheminement": "MANVIEUX", - "nomCommune": "MANVIEUX" + "codePostal": "22400", + "codeCommune": "22286", + "libelleAcheminement": "ST DENOUAL", + "nomCommune": "ST DENOUAL" }, { - "codePostal": "16350", - "codeCommune": "16038", - "libelleAcheminement": "BENEST", - "nomCommune": "BENEST" + "codePostal": "23160", + "codeCommune": "23070", + "libelleAcheminement": "CROZANT", + "nomCommune": "CROZANT" }, { - "codePostal": "55000", - "codeCommune": "55224", - "libelleAcheminement": "HAIRONVILLE", - "nomCommune": "HAIRONVILLE" + "codePostal": "09300", + "codeCommune": "09160", + "libelleAcheminement": "LAVELANET", + "nomCommune": "LAVELANET" }, { - "codePostal": "50300", - "codeCommune": "50489", - "libelleAcheminement": "ST JEAN DE LA HAIZE", - "nomCommune": "ST JEAN DE LA HAIZE" + "codePostal": "10160", + "codeCommune": "10276", + "libelleAcheminement": "PAISY COSDON", + "nomCommune": "PAISY COSDON" }, { - "codePostal": "14620", - "codeCommune": "14402", - "libelleAcheminement": "LE MARAIS LA CHAPELLE", - "nomCommune": "LE MARAIS LA CHAPELLE" + "codePostal": "22800", + "codeCommune": "22287", + "libelleAcheminement": "ST DONAN", + "nomCommune": "ST DONAN" }, { - "codePostal": "16480", - "codeCommune": "16040", - "libelleAcheminement": "BERNEUIL", - "nomCommune": "BERNEUIL" + "codePostal": "23700", + "codeCommune": "23073", + "libelleAcheminement": "DONTREIX", + "nomCommune": "DONTREIX" }, { - "codePostal": "55160", - "codeCommune": "55237", - "libelleAcheminement": "HAUDIOMONT", - "nomCommune": "HAUDIOMONT" + "codePostal": "09420", + "codeCommune": "09164", + "libelleAcheminement": "LESCURE", + "nomCommune": "LESCURE" }, { - "codePostal": "50530", - "codeCommune": "50496", - "libelleAcheminement": "ST JEAN LE THOMAS", - "nomCommune": "ST JEAN LE THOMAS" + "codePostal": "10600", + "codeCommune": "10282", + "libelleAcheminement": "PAYNS", + "nomCommune": "PAYNS" }, { - "codePostal": "14480", - "codeCommune": "14406", - "libelleAcheminement": "MOULINS EN BESSIN", - "nomCommune": "MOULINS EN BESSIN" + "codePostal": "22210", + "codeCommune": "22288", + "libelleAcheminement": "ST ETIENNE DU GUE DE L ISLE", + "nomCommune": "ST ETIENNE DU GUE DE L ISLE" }, { - "codePostal": "16700", - "codeCommune": "16044", - "libelleAcheminement": "BIOUSSAC", - "nomCommune": "BIOUSSAC" + "codePostal": "23480", + "codeCommune": "23074", + "libelleAcheminement": "LE DONZEIL", + "nomCommune": "LE DONZEIL" }, { - "codePostal": "55120", - "codeCommune": "55253", - "libelleAcheminement": "LES ISLETTES", - "nomCommune": "LES ISLETTES" + "codePostal": "09120", + "codeCommune": "09173", + "libelleAcheminement": "LOUBENS", + "nomCommune": "LOUBENS" }, { - "codePostal": "50300", - "codeCommune": "50505", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "10380", + "codeCommune": "10289", + "libelleAcheminement": "PLANCY L ABBAYE", + "nomCommune": "PLANCY L ABBAYE" }, { - "codePostal": "14320", - "codeCommune": "14408", - "libelleAcheminement": "MAY SUR ORNE", - "nomCommune": "MAY SUR ORNE" + "codePostal": "22480", + "codeCommune": "22294", + "libelleAcheminement": "ST GILLES PLIGEAUX", + "nomCommune": "ST GILLES PLIGEAUX" }, { - "codePostal": "16360", - "codeCommune": "16053", - "libelleAcheminement": "BORS DE BAIGNES", - "nomCommune": "BORS DE BAIGNES" + "codePostal": "23260", + "codeCommune": "23081", + "libelleAcheminement": "FLAYAT", + "nomCommune": "FLAYAT" }, { - "codePostal": "55220", - "codeCommune": "55254", - "libelleAcheminement": "LES TROIS DOMAINES", - "nomCommune": "LES TROIS DOMAINES" + "codePostal": "09100", + "codeCommune": "09175", + "libelleAcheminement": "LUDIES", + "nomCommune": "LUDIES" }, { - "codePostal": "50310", - "codeCommune": "50507", - "libelleAcheminement": "ST MARCOUF", - "nomCommune": "ST MARCOUF" + "codePostal": "10110", + "codeCommune": "10296", + "libelleAcheminement": "POLISY", + "nomCommune": "POLISY" }, { - "codePostal": "14220", - "codeCommune": "14411", - "libelleAcheminement": "MESLAY", - "nomCommune": "MESLAY" + "codePostal": "22530", + "codeCommune": "22295", + "libelleAcheminement": "ST GILLES VIEUX MARCHE", + "nomCommune": "ST GILLES VIEUX MARCHE" }, { - "codePostal": "16120", - "codeCommune": "16057", - "libelleAcheminement": "BOUTEVILLE", - "nomCommune": "BOUTEVILLE" + "codePostal": "23320", + "codeCommune": "23082", + "libelleAcheminement": "FLEURAT", + "nomCommune": "FLEURAT" }, { - "codePostal": "55220", - "codeCommune": "55254", - "libelleAcheminement": "LES TROIS DOMAINES", - "nomCommune": "LES TROIS DOMAINES" + "codePostal": "09290", + "codeCommune": "09181", + "libelleAcheminement": "LE MAS D AZIL", + "nomCommune": "LE MAS D AZIL" }, { - "codePostal": "50150", - "codeCommune": "50514", - "libelleAcheminement": "CHAULIEU", - "nomCommune": "CHAULIEU" + "codePostal": "10700", + "codeCommune": "10299", + "libelleAcheminement": "POUAN LES VALLEES", + "nomCommune": "POUAN LES VALLEES" }, { - "codePostal": "14140", - "codeCommune": "14425", - "libelleAcheminement": "LE MESNIL SIMON", - "nomCommune": "LE MESNIL SIMON" + "codePostal": "22100", + "codeCommune": "22299", + "libelleAcheminement": "ST HELEN", + "nomCommune": "ST HELEN" }, { - "codePostal": "16100", - "codeCommune": "16058", - "libelleAcheminement": "BOUTIERS ST TROJAN", - "nomCommune": "BOUTIERS ST TROJAN" + "codePostal": "23450", + "codeCommune": "23087", + "libelleAcheminement": "FRESSELINES", + "nomCommune": "FRESSELINES" }, { - "codePostal": "55220", - "codeCommune": "55254", - "libelleAcheminement": "LES TROIS DOMAINES", - "nomCommune": "LES TROIS DOMAINES" + "codePostal": "09320", + "codeCommune": "09182", + "libelleAcheminement": "MASSAT", + "nomCommune": "MASSAT" }, { - "codePostal": "50800", - "codeCommune": "50521", - "libelleAcheminement": "ST MAUR DES BOIS", - "nomCommune": "ST MAUR DES BOIS" + "codePostal": "10290", + "codeCommune": "10301", + "libelleAcheminement": "POUY SUR VANNES", + "nomCommune": "POUY SUR VANNES" }, { - "codePostal": "14140", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "22130", + "codeCommune": "22311", + "libelleAcheminement": "ST LORMEL", + "nomCommune": "ST LORMEL" }, { - "codePostal": "16370", - "codeCommune": "16060", - "libelleAcheminement": "BREVILLE", - "nomCommune": "BREVILLE" + "codePostal": "23340", + "codeCommune": "23090", + "libelleAcheminement": "GENTIOUX PIGEROLLES", + "nomCommune": "GENTIOUX PIGEROLLES" }, { - "codePostal": "55600", - "codeCommune": "55255", - "libelleAcheminement": "JAMETZ", - "nomCommune": "JAMETZ" + "codePostal": "09400", + "codeCommune": "09188", + "libelleAcheminement": "MERCUS GARRABET", + "nomCommune": "MERCUS GARRABET" }, { - "codePostal": "50270", - "codeCommune": "50522", - "libelleAcheminement": "ST MAURICE EN COTENTIN", - "nomCommune": "ST MAURICE EN COTENTIN" + "codePostal": "10140", + "codeCommune": "10310", + "libelleAcheminement": "PUITS ET NUISEMENT", + "nomCommune": "PUITS ET NUISEMENT" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "22700", + "codeCommune": "22324", + "libelleAcheminement": "ST QUAY PERROS", + "nomCommune": "ST QUAY PERROS" }, { - "codePostal": "16500", - "codeCommune": "16065", - "libelleAcheminement": "BRILLAC", - "nomCommune": "BRILLAC" + "codePostal": "23380", + "codeCommune": "23092", + "libelleAcheminement": "GLENIC", + "nomCommune": "GLENIC" }, { - "codePostal": "55300", - "codeCommune": "55263", - "libelleAcheminement": "KOEUR LA GRANDE", - "nomCommune": "KOEUR LA GRANDE" + "codePostal": "09230", + "codeCommune": "09190", + "libelleAcheminement": "MERIGON", + "nomCommune": "MERIGON" }, { - "codePostal": "50480", - "codeCommune": "50523", - "libelleAcheminement": "STE MERE EGLISE", - "nomCommune": "STE MERE EGLISE" + "codePostal": "10340", + "codeCommune": "10317", + "libelleAcheminement": "LES RICEYS", + "nomCommune": "LES RICEYS" }, { - "codePostal": "14620", - "codeCommune": "14469", - "libelleAcheminement": "NORREY EN AUGE", - "nomCommune": "NORREY EN AUGE" + "codePostal": "22410", + "codeCommune": "22325", + "libelleAcheminement": "ST QUAY PORTRIEUX", + "nomCommune": "ST QUAY PORTRIEUX" }, { - "codePostal": "16110", - "codeCommune": "16067", - "libelleAcheminement": "BUNZAC", - "nomCommune": "BUNZAC" + "codePostal": "23230", + "codeCommune": "23093", + "libelleAcheminement": "GOUZON", + "nomCommune": "GOUZON" }, { - "codePostal": "55300", - "codeCommune": "55268", - "libelleAcheminement": "LACROIX SUR MEUSE", - "nomCommune": "LACROIX SUR MEUSE" + "codePostal": "09240", + "codeCommune": "09196", + "libelleAcheminement": "MONTAGAGNE", + "nomCommune": "MONTAGAGNE" }, { - "codePostal": "50300", - "codeCommune": "50531", - "libelleAcheminement": "ST OVIN", - "nomCommune": "ST OVIN" + "codePostal": "10160", + "codeCommune": "10319", + "libelleAcheminement": "RIGNY LE FERRON", + "nomCommune": "RIGNY LE FERRON" }, { - "codePostal": "14340", - "codeCommune": "14473", - "libelleAcheminement": "NOTRE DAME DE LIVAYE", - "nomCommune": "NOTRE DAME DE LIVAYE" + "codePostal": "22100", + "codeCommune": "22327", + "libelleAcheminement": "ST SAMSON SUR RANCE", + "nomCommune": "ST SAMSON SUR RANCE" }, { - "codePostal": "16380", - "codeCommune": "16093", - "libelleAcheminement": "CHAZELLES", - "nomCommune": "CHAZELLES" + "codePostal": "23220", + "codeCommune": "23101", + "libelleAcheminement": "JOUILLAT", + "nomCommune": "JOUILLAT" }, { - "codePostal": "55300", - "codeCommune": "55270", - "libelleAcheminement": "LAHAYVILLE", - "nomCommune": "LAHAYVILLE" + "codePostal": "09600", + "codeCommune": "09200", + "libelleAcheminement": "MONTBEL", + "nomCommune": "MONTBEL" }, { - "codePostal": "50380", - "codeCommune": "50532", - "libelleAcheminement": "ST PAIR SUR MER", - "nomCommune": "ST PAIR SUR MER" + "codePostal": "10280", + "codeCommune": "10320", + "libelleAcheminement": "RILLY STE SYRE", + "nomCommune": "RILLY STE SYRE" }, { - "codePostal": "14210", - "codeCommune": "14475", - "libelleAcheminement": "VAL D ARRY", - "nomCommune": "VAL D ARRY" + "codePostal": "22480", + "codeCommune": "22331", + "libelleAcheminement": "STE TREPHINE", + "nomCommune": "STE TREPHINE" }, { - "codePostal": "16370", - "codeCommune": "16097", - "libelleAcheminement": "CHERVES RICHEMONT", - "nomCommune": "CHERVES RICHEMONT" + "codePostal": "23270", + "codeCommune": "23102", + "libelleAcheminement": "LADAPEYRE", + "nomCommune": "LADAPEYRE" }, { - "codePostal": "55300", - "codeCommune": "55274", - "libelleAcheminement": "LAMORVILLE", - "nomCommune": "LAMORVILLE" + "codePostal": "09200", + "codeCommune": "09201", + "libelleAcheminement": "MONTEGUT EN COUSERANS", + "nomCommune": "MONTEGUT EN COUSERANS" }, { - "codePostal": "50870", - "codeCommune": "50535", - "libelleAcheminement": "LE PARC", - "nomCommune": "LE PARC" + "codePostal": "10410", + "codeCommune": "10332", + "libelleAcheminement": "RUVIGNY", + "nomCommune": "RUVIGNY" }, { - "codePostal": "14210", - "codeCommune": "14475", - "libelleAcheminement": "VAL D ARRY", - "nomCommune": "VAL D ARRY" + "codePostal": "22250", + "codeCommune": "22337", + "libelleAcheminement": "SEVIGNAC", + "nomCommune": "SEVIGNAC" }, { - "codePostal": "16100", - "codeCommune": "16102", - "libelleAcheminement": "COGNAC", - "nomCommune": "COGNAC" + "codePostal": "23800", + "codeCommune": "23103", + "libelleAcheminement": "LAFAT", + "nomCommune": "LAFAT" }, { - "codePostal": "55120", - "codeCommune": "55285", - "libelleAcheminement": "LAVOYE", - "nomCommune": "LAVOYE" + "codePostal": "09120", + "codeCommune": "09202", + "libelleAcheminement": "MONTEGUT PLANTAUREL", + "nomCommune": "MONTEGUT PLANTAUREL" }, { - "codePostal": "50750", - "codeCommune": "50546", - "libelleAcheminement": "BOURGVALLEES", - "nomCommune": "BOURGVALLEES" + "codePostal": "10500", + "codeCommune": "10345", + "libelleAcheminement": "ST LEGER SOUS BRIENNE", + "nomCommune": "ST LEGER SOUS BRIENNE" }, { - "codePostal": "14170", - "codeCommune": "14476", - "libelleAcheminement": "OLENDON", - "nomCommune": "OLENDON" + "codePostal": "22140", + "codeCommune": "22340", + "libelleAcheminement": "TONQUEDEC", + "nomCommune": "TONQUEDEC" }, { - "codePostal": "16360", - "codeCommune": "16105", - "libelleAcheminement": "CONDEON", - "nomCommune": "CONDEON" + "codePostal": "23600", + "codeCommune": "23108", + "libelleAcheminement": "LEYRAT", + "nomCommune": "LEYRAT" }, { - "codePostal": "55600", - "codeCommune": "55306", - "libelleAcheminement": "LOUPPY SUR LOISON", - "nomCommune": "LOUPPY SUR LOISON" + "codePostal": "09350", + "codeCommune": "09205", + "libelleAcheminement": "MONTFA", + "nomCommune": "MONTFA" }, { - "codePostal": "50490", - "codeCommune": "50550", - "libelleAcheminement": "ST SAUVEUR VILLAGES", - "nomCommune": "ST SAUVEUR VILLAGES" + "codePostal": "10100", + "codeCommune": "10347", + "libelleAcheminement": "ST LOUP DE BUFFIGNY", + "nomCommune": "ST LOUP DE BUFFIGNY" }, { - "codePostal": "14310", - "codeCommune": "14491", - "libelleAcheminement": "PARFOURU SUR ODON", - "nomCommune": "PARFOURU SUR ODON" + "codePostal": "22980", + "codeCommune": "22342", + "libelleAcheminement": "TREBEDAN", + "nomCommune": "TREBEDAN" }, { - "codePostal": "16560", - "codeCommune": "16107", - "libelleAcheminement": "COULGENS", - "nomCommune": "COULGENS" + "codePostal": "23190", + "codeCommune": "23113", + "libelleAcheminement": "LUPERSAT", + "nomCommune": "LUPERSAT" }, { - "codePostal": "55160", - "codeCommune": "55311", - "libelleAcheminement": "MAIZERAY", - "nomCommune": "MAIZERAY" + "codePostal": "09300", + "codeCommune": "09211", + "libelleAcheminement": "MONTSEGUR", + "nomCommune": "MONTSEGUR" }, { - "codePostal": "50490", - "codeCommune": "50550", - "libelleAcheminement": "ST SAUVEUR VILLAGES", - "nomCommune": "ST SAUVEUR VILLAGES" + "codePostal": "10260", + "codeCommune": "10358", + "libelleAcheminement": "ST PARRES LES VAUDES", + "nomCommune": "ST PARRES LES VAUDES" }, { - "codePostal": "14690", - "codeCommune": "14502", - "libelleAcheminement": "PIERREPONT", - "nomCommune": "PIERREPONT" + "codePostal": "22560", + "codeCommune": "22343", + "libelleAcheminement": "TREBEURDEN", + "nomCommune": "TREBEURDEN" }, { - "codePostal": "16290", - "codeCommune": "16121", - "libelleAcheminement": "DOUZAT", - "nomCommune": "DOUZAT" + "codePostal": "23100", + "codeCommune": "23125", + "libelleAcheminement": "LE MAS D ARTIGE", + "nomCommune": "LE MAS D ARTIGE" }, { - "codePostal": "55160", - "codeCommune": "55317", - "libelleAcheminement": "MANHEULLES", - "nomCommune": "MANHEULLES" + "codePostal": "09240", + "codeCommune": "09216", + "libelleAcheminement": "NESCUS", + "nomCommune": "NESCUS" }, { - "codePostal": "50390", - "codeCommune": "50551", - "libelleAcheminement": "ST SAUVEUR LE VICOMTE", - "nomCommune": "ST SAUVEUR LE VICOMTE" + "codePostal": "10130", + "codeCommune": "10359", + "libelleAcheminement": "ST PHAL", + "nomCommune": "ST PHAL" }, { - "codePostal": "14490", - "codeCommune": "14506", - "libelleAcheminement": "PLANQUERY", - "nomCommune": "PLANQUERY" + "codePostal": "22340", + "codeCommune": "22351", + "libelleAcheminement": "TREFFRIN", + "nomCommune": "TREFFRIN" }, { - "codePostal": "16320", - "codeCommune": "16125", - "libelleAcheminement": "EDON", - "nomCommune": "EDON" + "codePostal": "23150", + "codeCommune": "23128", + "libelleAcheminement": "MAZEIRAT", + "nomCommune": "MAZEIRAT" }, { - "codePostal": "55190", - "codeCommune": "55322", - "libelleAcheminement": "MARSON SUR BARBOURE", - "nomCommune": "MARSON SUR BARBOURE" + "codePostal": "09800", + "codeCommune": "09219", + "libelleAcheminement": "ORGIBET", + "nomCommune": "ORGIBET" }, { - "codePostal": "50300", - "codeCommune": "50554", - "libelleAcheminement": "ST SENIER SOUS AVRANCHES", - "nomCommune": "ST SENIER SOUS AVRANCHES" + "codePostal": "10800", + "codeCommune": "10363", + "libelleAcheminement": "ST THIBAULT", + "nomCommune": "ST THIBAULT" }, { - "codePostal": "14130", - "codeCommune": "14514", - "libelleAcheminement": "PONT L EVEQUE", - "nomCommune": "PONT L EVEQUE" + "codePostal": "22100", + "codeCommune": "22380", + "libelleAcheminement": "TREVRON", + "nomCommune": "TREVRON" }, { - "codePostal": "16150", - "codeCommune": "16132", - "libelleAcheminement": "ETAGNAC", - "nomCommune": "ETAGNAC" + "codePostal": "23420", + "codeCommune": "23131", + "libelleAcheminement": "MERINCHAL", + "nomCommune": "MERINCHAL" }, { - "codePostal": "55500", - "codeCommune": "55335", - "libelleAcheminement": "MENIL SUR SAULX", - "nomCommune": "MENIL SUR SAULX" + "codePostal": "09100", + "codeCommune": "09225", + "libelleAcheminement": "PAMIERS", + "nomCommune": "PAMIERS" }, { - "codePostal": "50550", - "codeCommune": "50562", - "libelleAcheminement": "ST VAAST LA HOUGUE", - "nomCommune": "ST VAAST LA HOUGUE" + "codePostal": "10200", + "codeCommune": "10372", + "libelleAcheminement": "SOULAINES DHUYS", + "nomCommune": "SOULAINES DHUYS" }, { - "codePostal": "14430", - "codeCommune": "14524", - "libelleAcheminement": "PUTOT EN AUGE", - "nomCommune": "PUTOT EN AUGE" + "codePostal": "22450", + "codeCommune": "22383", + "libelleAcheminement": "TROGUERY", + "nomCommune": "TROGUERY" }, { - "codePostal": "16380", - "codeCommune": "16137", - "libelleAcheminement": "FEUILLADE", - "nomCommune": "FEUILLADE" + "codePostal": "23460", + "codeCommune": "23134", + "libelleAcheminement": "LE MONTEIL AU VICOMTE", + "nomCommune": "LE MONTEIL AU VICOMTE" }, { - "codePostal": "55320", - "codeCommune": "55347", - "libelleAcheminement": "LES MONTHAIRONS", - "nomCommune": "LES MONTHAIRONS" + "codePostal": "09460", + "codeCommune": "09230", + "libelleAcheminement": "LE PLA", + "nomCommune": "LE PLA" }, { - "codePostal": "50530", - "codeCommune": "50565", - "libelleAcheminement": "SARTILLY BAIE BOCAGE", - "nomCommune": "SARTILLY BAIE BOCAGE" + "codePostal": "10320", + "codeCommune": "10373", + "libelleAcheminement": "SOULIGNY", + "nomCommune": "SOULIGNY" }, { - "codePostal": "14270", - "codeCommune": "14527", - "libelleAcheminement": "BELLE VIE EN AUGE", - "nomCommune": "BELLE VIE EN AUGE" + "codePostal": "23000", + "codeCommune": "23004", + "libelleAcheminement": "ANZEME", + "nomCommune": "ANZEME" }, { - "codePostal": "16170", - "codeCommune": "16148", - "libelleAcheminement": "GENAC BIGNAC", - "nomCommune": "GENAC BIGNAC" + "codePostal": "23360", + "codeCommune": "23147", + "libelleAcheminement": "NOUZEROLLES", + "nomCommune": "NOUZEROLLES" }, { - "codePostal": "55300", - "codeCommune": "55353", - "libelleAcheminement": "MONTSEC", - "nomCommune": "MONTSEC" + "codePostal": "09600", + "codeCommune": "09233", + "libelleAcheminement": "PRADETTES", + "nomCommune": "PRADETTES" }, { - "codePostal": "50200", - "codeCommune": "50568", - "libelleAcheminement": "SAUSSEY", - "nomCommune": "SAUSSEY" + "codePostal": "10200", + "codeCommune": "10374", + "libelleAcheminement": "SPOY", + "nomCommune": "SPOY" }, { - "codePostal": "14340", - "codeCommune": "14527", - "libelleAcheminement": "BELLE VIE EN AUGE", - "nomCommune": "BELLE VIE EN AUGE" + "codePostal": "23210", + "codeCommune": "23010", + "libelleAcheminement": "AUGERES", + "nomCommune": "AUGERES" }, { - "codePostal": "16170", - "codeCommune": "16148", - "libelleAcheminement": "GENAC BIGNAC", - "nomCommune": "GENAC BIGNAC" + "codePostal": "23350", + "codeCommune": "23148", + "libelleAcheminement": "NOUZIERS", + "nomCommune": "NOUZIERS" }, { - "codePostal": "55500", - "codeCommune": "55358", - "libelleAcheminement": "CHANTERAINE", - "nomCommune": "CHANTERAINE" + "codePostal": "09160", + "codeCommune": "09235", + "libelleAcheminement": "PRAT BONREPAUX", + "nomCommune": "PRAT BONREPAUX" }, { - "codePostal": "50270", - "codeCommune": "50572", - "libelleAcheminement": "SENOVILLE", - "nomCommune": "SENOVILLE" + "codePostal": "10200", + "codeCommune": "10378", + "libelleAcheminement": "THORS", + "nomCommune": "THORS" }, { - "codePostal": "14400", - "codeCommune": "14529", - "libelleAcheminement": "RANCHY", - "nomCommune": "RANCHY" + "codePostal": "23400", + "codeCommune": "23012", + "libelleAcheminement": "AURIAT", + "nomCommune": "AURIAT" }, { - "codePostal": "16200", - "codeCommune": "16153", - "libelleAcheminement": "MAINXE GONDEVILLE", - "nomCommune": "MAINXE GONDEVILLE" + "codePostal": "23140", + "codeCommune": "23149", + "libelleAcheminement": "PARSAC RIMONDEIX", + "nomCommune": "PARSAC RIMONDEIX" }, { - "codePostal": "55320", - "codeCommune": "55360", - "libelleAcheminement": "MOUILLY", - "nomCommune": "MOUILLY" + "codePostal": "09000", + "codeCommune": "09236", + "libelleAcheminement": "PRAYOLS", + "nomCommune": "PRAYOLS" }, { - "codePostal": "50170", - "codeCommune": "50574", - "libelleAcheminement": "SERVON", - "nomCommune": "SERVON" + "codePostal": "10200", + "codeCommune": "10390", + "libelleAcheminement": "URVILLE", + "nomCommune": "URVILLE" }, { - "codePostal": "14860", - "codeCommune": "14530", - "libelleAcheminement": "RANVILLE", - "nomCommune": "RANVILLE" + "codePostal": "23700", + "codeCommune": "23013", + "libelleAcheminement": "AUZANCES", + "nomCommune": "AUZANCES" }, { - "codePostal": "16140", - "codeCommune": "16155", - "libelleAcheminement": "LES GOURS", - "nomCommune": "LES GOURS" + "codePostal": "23140", + "codeCommune": "23149", + "libelleAcheminement": "PARSAC RIMONDEIX", + "nomCommune": "PARSAC RIMONDEIX" }, { - "codePostal": "55700", - "codeCommune": "55362", - "libelleAcheminement": "MOULINS ST HUBERT", - "nomCommune": "MOULINS ST HUBERT" + "codePostal": "09100", + "codeCommune": "09238", + "libelleAcheminement": "LES PUJOLS", + "nomCommune": "LES PUJOLS" }, { - "codePostal": "50310", - "codeCommune": "50578", - "libelleAcheminement": "SORTOSVILLE", - "nomCommune": "SORTOSVILLE" + "codePostal": "10210", + "codeCommune": "10395", + "libelleAcheminement": "VANLAY", + "nomCommune": "VANLAY" }, { - "codePostal": "14340", - "codeCommune": "14533", - "libelleAcheminement": "REPENTIGNY", - "nomCommune": "REPENTIGNY" + "codePostal": "23120", + "codeCommune": "23016", + "libelleAcheminement": "BANIZE", + "nomCommune": "BANIZE" }, { - "codePostal": "16380", - "codeCommune": "16158", - "libelleAcheminement": "GRASSAC", - "nomCommune": "GRASSAC" + "codePostal": "23130", + "codeCommune": "23159", + "libelleAcheminement": "PUY MALSIGNAT", + "nomCommune": "PUY MALSIGNAT" }, { - "codePostal": "55500", - "codeCommune": "55376", - "libelleAcheminement": "NANTOIS", - "nomCommune": "NANTOIS" + "codePostal": "09400", + "codeCommune": "09241", + "libelleAcheminement": "RABAT LES TROIS SEIGNEURS", + "nomCommune": "RABAT LES TROIS SEIGNEURS" }, { - "codePostal": "50260", - "codeCommune": "50579", - "libelleAcheminement": "SOTTEVAST", - "nomCommune": "SOTTEVAST" + "codePostal": "10190", + "codeCommune": "10396", + "libelleAcheminement": "VAUCHASSIS", + "nomCommune": "VAUCHASSIS" }, { - "codePostal": "14130", - "codeCommune": "14534", - "libelleAcheminement": "REUX", - "nomCommune": "REUX" + "codePostal": "23160", + "codeCommune": "23018", + "libelleAcheminement": "BAZELAT", + "nomCommune": "BAZELAT" }, { - "codePostal": "16480", - "codeCommune": "16161", - "libelleAcheminement": "GUIZENGEARD", - "nomCommune": "GUIZENGEARD" + "codePostal": "23700", + "codeCommune": "23164", + "libelleAcheminement": "ROUGNAT", + "nomCommune": "ROUGNAT" }, { - "codePostal": "55120", - "codeCommune": "55379", - "libelleAcheminement": "LE NEUFOUR", - "nomCommune": "LE NEUFOUR" + "codePostal": "09300", + "codeCommune": "09242", + "libelleAcheminement": "RAISSAC", + "nomCommune": "RAISSAC" }, { - "codePostal": "50870", - "codeCommune": "50584", - "libelleAcheminement": "SUBLIGNY", - "nomCommune": "SUBLIGNY" + "codePostal": "10260", + "codeCommune": "10399", + "libelleAcheminement": "VAUDES", + "nomCommune": "VAUDES" }, { - "codePostal": "14540", - "codeCommune": "14538", - "libelleAcheminement": "CASTINE EN PLAINE", - "nomCommune": "CASTINE EN PLAINE" + "codePostal": "23190", + "codeCommune": "23020", + "libelleAcheminement": "BELLEGARDE EN MARCHE", + "nomCommune": "BELLEGARDE EN MARCHE" }, { - "codePostal": "16320", - "codeCommune": "16162", - "libelleAcheminement": "GURAT", - "nomCommune": "GURAT" + "codePostal": "23000", + "codeCommune": "23170", + "libelleAcheminement": "SAVENNES", + "nomCommune": "SAVENNES" }, { - "codePostal": "55120", - "codeCommune": "55385", - "libelleAcheminement": "NIXEVILLE BLERCOURT", - "nomCommune": "NIXEVILLE BLERCOURT" + "codePostal": "09600", + "codeCommune": "09243", + "libelleAcheminement": "REGAT", + "nomCommune": "REGAT" }, { - "codePostal": "50420", - "codeCommune": "50592", - "libelleAcheminement": "TESSY BOCAGE", - "nomCommune": "TESSY BOCAGE" + "codePostal": "10140", + "codeCommune": "10401", + "libelleAcheminement": "VENDEUVRE SUR BARSE", + "nomCommune": "VENDEUVRE SUR BARSE" }, { - "codePostal": "14740", - "codeCommune": "14542", - "libelleAcheminement": "ROSEL", - "nomCommune": "ROSEL" + "codePostal": "23220", + "codeCommune": "23025", + "libelleAcheminement": "BONNAT", + "nomCommune": "BONNAT" }, { - "codePostal": "16200", - "codeCommune": "16174", - "libelleAcheminement": "JULIENNE", - "nomCommune": "JULIENNE" + "codePostal": "23700", + "codeCommune": "23171", + "libelleAcheminement": "SERMUR", + "nomCommune": "SERMUR" }, { - "codePostal": "55190", - "codeCommune": "55398", - "libelleAcheminement": "PAGNY SUR MEUSE", - "nomCommune": "PAGNY SUR MEUSE" + "codePostal": "09300", + "codeCommune": "09250", + "libelleAcheminement": "ROQUEFORT LES CASCADES", + "nomCommune": "ROQUEFORT LES CASCADES" }, { - "codePostal": "50690", - "codeCommune": "50594", - "libelleAcheminement": "TEURTHEVILLE HAGUE", - "nomCommune": "TEURTHEVILLE HAGUE" + "codePostal": "10240", + "codeCommune": "10405", + "libelleAcheminement": "VERRICOURT", + "nomCommune": "VERRICOURT" }, { - "codePostal": "14710", - "codeCommune": "14547", - "libelleAcheminement": "RUBERCY", - "nomCommune": "RUBERCY" + "codePostal": "23400", + "codeCommune": "23027", + "libelleAcheminement": "BOSMOREAU LES MINES", + "nomCommune": "BOSMOREAU LES MINES" }, { - "codePostal": "16420", - "codeCommune": "16182", - "libelleAcheminement": "LESTERPS", - "nomCommune": "LESTERPS" + "codePostal": "23200", + "codeCommune": "23179", + "libelleAcheminement": "ST ALPINIEN", + "nomCommune": "ST ALPINIEN" }, { - "codePostal": "55260", - "codeCommune": "55404", - "libelleAcheminement": "PIERREFITTE SUR AIRE", - "nomCommune": "PIERREFITTE SUR AIRE" + "codePostal": "09100", + "codeCommune": "09255", + "libelleAcheminement": "ST AMANS", + "nomCommune": "ST AMANS" }, { - "codePostal": "50870", - "codeCommune": "50597", - "libelleAcheminement": "TIREPIED SUR SEE", - "nomCommune": "TIREPIED SUR SEE" + "codePostal": "10290", + "codeCommune": "10410", + "libelleAcheminement": "VILLADIN", + "nomCommune": "VILLADIN" }, { - "codePostal": "14400", - "codeCommune": "14552", - "libelleAcheminement": "RYES", - "nomCommune": "RYES" + "codePostal": "23220", + "codeCommune": "23029", + "libelleAcheminement": "LE BOURG D HEM", + "nomCommune": "LE BOURG D HEM" }, { - "codePostal": "16310", - "codeCommune": "16188", - "libelleAcheminement": "LE LINDOIS", - "nomCommune": "LE LINDOIS" + "codePostal": "23200", + "codeCommune": "23180", + "libelleAcheminement": "ST AMAND", + "nomCommune": "ST AMAND" }, { - "codePostal": "55250", - "codeCommune": "55409", - "libelleAcheminement": "PRETZ EN ARGONNE", - "nomCommune": "PRETZ EN ARGONNE" + "codePostal": "09000", + "codeCommune": "09273", + "libelleAcheminement": "ST PIERRE DE RIVIERE", + "nomCommune": "ST PIERRE DE RIVIERE" }, { - "codePostal": "50340", - "codeCommune": "50604", - "libelleAcheminement": "TREAUVILLE", - "nomCommune": "TREAUVILLE" + "codePostal": "10410", + "codeCommune": "10412", + "libelleAcheminement": "VILLECHETIF", + "nomCommune": "VILLECHETIF" }, { - "codePostal": "14970", - "codeCommune": "14558", - "libelleAcheminement": "ST AUBIN D ARQUENAY", - "nomCommune": "ST AUBIN D ARQUENAY" + "codePostal": "23600", + "codeCommune": "23038", + "libelleAcheminement": "BUSSIERE ST GEORGES", + "nomCommune": "BUSSIERE ST GEORGES" }, { - "codePostal": "16270", - "codeCommune": "16192", - "libelleAcheminement": "TERRES DE HAUTE CHARENTE", - "nomCommune": "TERRES DE HAUTE CHARENTE" + "codePostal": "23480", + "codeCommune": "23183", + "libelleAcheminement": "ST AVIT LE PAUVRE", + "nomCommune": "ST AVIT LE PAUVRE" }, { - "codePostal": "55120", - "codeCommune": "55419", - "libelleAcheminement": "RECICOURT", - "nomCommune": "RECICOURT" + "codePostal": "09400", + "codeCommune": "09306", + "libelleAcheminement": "TARASCON SUR ARIEGE", + "nomCommune": "TARASCON SUR ARIEGE" }, { - "codePostal": "50620", - "codeCommune": "50606", - "libelleAcheminement": "TRIBEHOU", - "nomCommune": "TRIBEHOU" + "codePostal": "10370", + "codeCommune": "10420", + "libelleAcheminement": "VILLENAUXE LA GRANDE", + "nomCommune": "VILLENAUXE LA GRANDE" }, { - "codePostal": "14130", - "codeCommune": "14563", - "libelleAcheminement": "ST BENOIT D HEBERTOT", - "nomCommune": "ST BENOIT D HEBERTOT" + "codePostal": "23230", + "codeCommune": "23040", + "libelleAcheminement": "LA CELLE SOUS GOUZON", + "nomCommune": "LA CELLE SOUS GOUZON" }, { - "codePostal": "16100", - "codeCommune": "16193", - "libelleAcheminement": "LOUZAC ST ANDRE", - "nomCommune": "LOUZAC ST ANDRE" + "codePostal": "23270", + "codeCommune": "23188", + "libelleAcheminement": "ST DIZIER LES DOMAINES", + "nomCommune": "ST DIZIER LES DOMAINES" }, { - "codePostal": "55110", - "codeCommune": "55422", - "libelleAcheminement": "REGNEVILLE SUR MEUSE", - "nomCommune": "REGNEVILLE SUR MEUSE" + "codePostal": "09500", + "codeCommune": "09309", + "libelleAcheminement": "TEILHET", + "nomCommune": "TEILHET" }, { - "codePostal": "50800", - "codeCommune": "50607", - "libelleAcheminement": "LA TRINITE", - "nomCommune": "LA TRINITE" + "codePostal": "10320", + "codeCommune": "10425", + "libelleAcheminement": "VILLERY", + "nomCommune": "VILLERY" }, { - "codePostal": "14290", - "codeCommune": "14570", - "libelleAcheminement": "VALORBIQUET", - "nomCommune": "VALORBIQUET" + "codePostal": "23430", + "codeCommune": "23056", + "libelleAcheminement": "CHATELUS LE MARCHEIX", + "nomCommune": "CHATELUS LE MARCHEIX" }, { - "codePostal": "16100", - "codeCommune": "16193", - "libelleAcheminement": "LOUZAC ST ANDRE", - "nomCommune": "LOUZAC ST ANDRE" + "codePostal": "23400", + "codeCommune": "23189", + "libelleAcheminement": "ST DIZIER MASBARAUD", + "nomCommune": "ST DIZIER MASBARAUD" }, { - "codePostal": "55250", - "codeCommune": "55423", - "libelleAcheminement": "REMBERCOURT SOMMAISNE", - "nomCommune": "REMBERCOURT SOMMAISNE" + "codePostal": "09110", + "codeCommune": "09311", + "libelleAcheminement": "TIGNAC", + "nomCommune": "TIGNAC" }, { - "codePostal": "50250", - "codeCommune": "50617", - "libelleAcheminement": "VARENGUEBEC", - "nomCommune": "VARENGUEBEC" + "codePostal": "10110", + "codeCommune": "10427", + "libelleAcheminement": "VILLE SUR ARCE", + "nomCommune": "VILLE SUR ARCE" }, { - "codePostal": "14290", - "codeCommune": "14570", - "libelleAcheminement": "VALORBIQUET", - "nomCommune": "VALORBIQUET" + "codePostal": "23500", + "codeCommune": "23063", + "libelleAcheminement": "CLAIRAVAUX", + "nomCommune": "CLAIRAVAUX" }, { - "codePostal": "16230", - "codeCommune": "16206", - "libelleAcheminement": "MANSLE", - "nomCommune": "MANSLE" + "codePostal": "23000", + "codeCommune": "23193", + "libelleAcheminement": "STE FEYRE", + "nomCommune": "STE FEYRE" }, { - "codePostal": "55150", - "codeCommune": "55437", - "libelleAcheminement": "ROMAGNE SOUS LES COTES", - "nomCommune": "ROMAGNE SOUS LES COTES" + "codePostal": "09100", + "codeCommune": "09312", + "libelleAcheminement": "LA TOUR DU CRIEU", + "nomCommune": "LA TOUR DU CRIEU" }, { - "codePostal": "50800", - "codeCommune": "50639", - "libelleAcheminement": "VILLEDIEU LES POELES ROUFFIGNY", - "nomCommune": "VILLEDIEU LES POELES ROUFFIGNY" + "codePostal": "10700", + "codeCommune": "10429", + "libelleAcheminement": "VILLETTE SUR AUBE", + "nomCommune": "VILLETTE SUR AUBE" }, { - "codePostal": "14140", - "codeCommune": "14576", - "libelleAcheminement": "VAL DE VIE", - "nomCommune": "VAL DE VIE" + "codePostal": "23800", + "codeCommune": "23075", + "libelleAcheminement": "DUN LE PALESTEL", + "nomCommune": "DUN LE PALESTEL" }, { - "codePostal": "16310", - "codeCommune": "16213", - "libelleAcheminement": "MAZEROLLES", - "nomCommune": "MAZEROLLES" + "codePostal": "23430", + "codeCommune": "23200", + "libelleAcheminement": "ST GOUSSAUD", + "nomCommune": "ST GOUSSAUD" }, { - "codePostal": "55260", - "codeCommune": "55442", - "libelleAcheminement": "RAIVAL", - "nomCommune": "RAIVAL" + "codePostal": "09500", + "codeCommune": "09316", + "libelleAcheminement": "TROYE D ARIEGE", + "nomCommune": "TROYE D ARIEGE" }, { - "codePostal": "50680", - "codeCommune": "50641", - "libelleAcheminement": "VILLIERS FOSSARD", - "nomCommune": "VILLIERS FOSSARD" + "codePostal": "10140", + "codeCommune": "10433", + "libelleAcheminement": "VILLY EN TRODES", + "nomCommune": "VILLY EN TRODES" }, { - "codePostal": "14230", - "codeCommune": "14586", - "libelleAcheminement": "ST GERMAIN DU PERT", - "nomCommune": "ST GERMAIN DU PERT" + "codePostal": "23110", + "codeCommune": "23076", + "libelleAcheminement": "EVAUX LES BAINS", + "nomCommune": "EVAUX LES BAINS" }, { - "codePostal": "16210", - "codeCommune": "16215", - "libelleAcheminement": "MEDILLAC", - "nomCommune": "MEDILLAC" + "codePostal": "23130", + "codeCommune": "23209", + "libelleAcheminement": "ST LOUP", + "nomCommune": "ST LOUP" }, { - "codePostal": "55300", - "codeCommune": "55444", - "libelleAcheminement": "ROUVROIS SUR MEUSE", - "nomCommune": "ROUVROIS SUR MEUSE" + "codePostal": "09500", + "codeCommune": "09323", + "libelleAcheminement": "VALS", + "nomCommune": "VALS" }, { - "codePostal": "50690", - "codeCommune": "50643", - "libelleAcheminement": "VIRANDEVILLE", - "nomCommune": "VIRANDEVILLE" + "codePostal": "11360", + "codeCommune": "11006", + "libelleAcheminement": "ALBAS", + "nomCommune": "ALBAS" }, { - "codePostal": "14240", - "codeCommune": "14590", - "libelleAcheminement": "STE HONORINE DE DUCY", - "nomCommune": "STE HONORINE DE DUCY" + "codePostal": "23400", + "codeCommune": "23078", + "libelleAcheminement": "FAUX MAZURAS", + "nomCommune": "FAUX MAZURAS" }, { - "codePostal": "16370", - "codeCommune": "16218", - "libelleAcheminement": "MESNAC", - "nomCommune": "MESNAC" + "codePostal": "23600", + "codeCommune": "23213", + "libelleAcheminement": "ST MARIEN", + "nomCommune": "ST MARIEN" }, { - "codePostal": "55260", - "codeCommune": "55448", - "libelleAcheminement": "RUPT DEVANT ST MIHIEL", - "nomCommune": "RUPT DEVANT ST MIHIEL" + "codePostal": "09310", + "codeCommune": "09326", + "libelleAcheminement": "VEBRE", + "nomCommune": "VEBRE" }, { - "codePostal": "51530", - "codeCommune": "51002", - "libelleAcheminement": "ST MARTIN D ABLOIS", - "nomCommune": "ST MARTIN D ABLOIS" + "codePostal": "11580", + "codeCommune": "11008", + "libelleAcheminement": "ALET LES BAINS", + "nomCommune": "ALET LES BAINS" }, { - "codePostal": "14100", - "codeCommune": "14595", - "libelleAcheminement": "ST JEAN DE LIVET", - "nomCommune": "ST JEAN DE LIVET" + "codePostal": "23110", + "codeCommune": "23083", + "libelleAcheminement": "FONTANIERES", + "nomCommune": "FONTANIERES" }, { - "codePostal": "16200", - "codeCommune": "16220", - "libelleAcheminement": "LES METAIRIES", - "nomCommune": "LES METAIRIES" + "codePostal": "23430", + "codeCommune": "23217", + "libelleAcheminement": "ST MARTIN STE CATHERINE", + "nomCommune": "ST MARTIN STE CATHERINE" }, { - "codePostal": "55320", - "codeCommune": "55449", - "libelleAcheminement": "RUPT EN WOEVRE", - "nomCommune": "RUPT EN WOEVRE" + "codePostal": "09120", + "codeCommune": "09327", + "libelleAcheminement": "VENTENAC", + "nomCommune": "VENTENAC" }, { - "codePostal": "51260", - "codeCommune": "51004", - "libelleAcheminement": "ALLEMANCHE LAUNAY ET SOYER", - "nomCommune": "ALLEMANCHE LAUNAY ET SOYER" + "codePostal": "11170", + "codeCommune": "11009", + "libelleAcheminement": "ALZONNE", + "nomCommune": "ALZONNE" }, { - "codePostal": "14130", - "codeCommune": "14601", - "libelleAcheminement": "ST JULIEN SUR CALONNE", - "nomCommune": "ST JULIEN SUR CALONNE" + "codePostal": "23480", + "codeCommune": "23086", + "libelleAcheminement": "FRANSECHES", + "nomCommune": "FRANSECHES" }, { - "codePostal": "16240", - "codeCommune": "16229", - "libelleAcheminement": "MONTJEAN", - "nomCommune": "MONTJEAN" + "codePostal": "23300", + "codeCommune": "23219", + "libelleAcheminement": "ST MAURICE LA SOUTERRAINE", + "nomCommune": "ST MAURICE LA SOUTERRAINE" }, { - "codePostal": "55150", - "codeCommune": "55450", - "libelleAcheminement": "RUPT SUR OTHAIN", - "nomCommune": "RUPT SUR OTHAIN" + "codePostal": "09310", + "codeCommune": "09328", + "libelleAcheminement": "VERDUN", + "nomCommune": "VERDUN" }, { - "codePostal": "51250", - "codeCommune": "51006", - "libelleAcheminement": "ALLIANCELLES", - "nomCommune": "ALLIANCELLES" + "codePostal": "11120", + "codeCommune": "11012", + "libelleAcheminement": "ARGELIERS", + "nomCommune": "ARGELIERS" }, { - "codePostal": "14740", - "codeCommune": "14610", - "libelleAcheminement": "ST MANVIEU NORREY", - "nomCommune": "ST MANVIEU NORREY" + "codePostal": "23230", + "codeCommune": "23093", + "libelleAcheminement": "GOUZON", + "nomCommune": "GOUZON" }, { - "codePostal": "16190", - "codeCommune": "16230", - "libelleAcheminement": "MONTMOREAU", - "nomCommune": "MONTMOREAU" + "codePostal": "23200", + "codeCommune": "23220", + "libelleAcheminement": "ST MEDARD LA ROCHETTE", + "nomCommune": "ST MEDARD LA ROCHETTE" }, { - "codePostal": "55200", - "codeCommune": "55460", - "libelleAcheminement": "ST JULIEN SOUS LES COTES", - "nomCommune": "ST JULIEN SOUS LES COTES" + "codePostal": "09000", + "codeCommune": "09329", + "libelleAcheminement": "VERNAJOUL", + "nomCommune": "VERNAJOUL" }, { - "codePostal": "51290", - "codeCommune": "51017", - "libelleAcheminement": "ARZILLIERES NEUVILLE", - "nomCommune": "ARZILLIERES NEUVILLE" + "codePostal": "11200", + "codeCommune": "11013", + "libelleAcheminement": "ARGENS MINERVOIS", + "nomCommune": "ARGENS MINERVOIS" }, { - "codePostal": "14330", - "codeCommune": "14613", - "libelleAcheminement": "ST MARCOUF", - "nomCommune": "ST MARCOUF" + "codePostal": "23240", + "codeCommune": "23095", + "libelleAcheminement": "LE GRAND BOURG", + "nomCommune": "LE GRAND BOURG" }, { - "codePostal": "16120", - "codeCommune": "16233", - "libelleAcheminement": "MOSNAC ST SIMEUX", - "nomCommune": "MOSNAC ST SIMEUX" + "codePostal": "23480", + "codeCommune": "23222", + "libelleAcheminement": "ST MICHEL DE VEISSE", + "nomCommune": "ST MICHEL DE VEISSE" }, { - "codePostal": "55300", - "codeCommune": "55463", - "libelleAcheminement": "ST MIHIEL", - "nomCommune": "ST MIHIEL" + "codePostal": "09340", + "codeCommune": "09332", + "libelleAcheminement": "VERNIOLLE", + "nomCommune": "VERNIOLLE" }, { - "codePostal": "51170", - "codeCommune": "51020", - "libelleAcheminement": "AUBILLY", - "nomCommune": "AUBILLY" + "codePostal": "11140", + "codeCommune": "11019", + "libelleAcheminement": "AUNAT", + "nomCommune": "AUNAT" }, { - "codePostal": "14330", - "codeCommune": "14614", - "libelleAcheminement": "STE MARGUERITE D ELLE", - "nomCommune": "STE MARGUERITE D ELLE" + "codePostal": "23130", + "codeCommune": "23097", + "libelleAcheminement": "ISSOUDUN LETRIEIX", + "nomCommune": "ISSOUDUN LETRIEIX" }, { - "codePostal": "16440", - "codeCommune": "16236", - "libelleAcheminement": "MOUTHIERS SUR BOEME", - "nomCommune": "MOUTHIERS SUR BOEME" + "codePostal": "23100", + "codeCommune": "23224", + "libelleAcheminement": "ST ORADOUX DE CHIROUZE", + "nomCommune": "ST ORADOUX DE CHIROUZE" }, { - "codePostal": "55000", - "codeCommune": "55466", - "libelleAcheminement": "SALMAGNE", - "nomCommune": "SALMAGNE" + "codePostal": "09220", + "codeCommune": "09334", + "libelleAcheminement": "VAL DE SOS", + "nomCommune": "VAL DE SOS" }, { - "codePostal": "51110", - "codeCommune": "51025", - "libelleAcheminement": "AUMENANCOURT", - "nomCommune": "AUMENANCOURT" + "codePostal": "11340", + "codeCommune": "11036", + "libelleAcheminement": "BELVIS", + "nomCommune": "BELVIS" }, { - "codePostal": "14380", - "codeCommune": "14619", - "libelleAcheminement": "STE MARIE OUTRE L EAU", - "nomCommune": "STE MARIE OUTRE L EAU" + "codePostal": "23270", + "codeCommune": "23098", + "libelleAcheminement": "JALESCHES", + "nomCommune": "JALESCHES" }, { - "codePostal": "16700", - "codeCommune": "16242", - "libelleAcheminement": "NANTEUIL EN VALLEE", - "nomCommune": "NANTEUIL EN VALLEE" + "codePostal": "23260", + "codeCommune": "23225", + "libelleAcheminement": "ST ORADOUX PRES CROCQ", + "nomCommune": "ST ORADOUX PRES CROCQ" }, { - "codePostal": "55300", - "codeCommune": "55467", - "libelleAcheminement": "SAMPIGNY", - "nomCommune": "SAMPIGNY" + "codePostal": "09220", + "codeCommune": "09334", + "libelleAcheminement": "VAL DE SOS", + "nomCommune": "VAL DE SOS" }, { - "codePostal": "51150", - "codeCommune": "51030", - "libelleAcheminement": "AY CHAMPAGNE", - "nomCommune": "AY CHAMPAGNE" + "codePostal": "11390", + "codeCommune": "11052", + "libelleAcheminement": "BROUSSES ET VILLARET", + "nomCommune": "BROUSSES ET VILLARET" }, { - "codePostal": "14400", - "codeCommune": "14630", - "libelleAcheminement": "ST MARTIN DES ENTREES", - "nomCommune": "ST MARTIN DES ENTREES" + "codePostal": "23250", + "codeCommune": "23099", + "libelleAcheminement": "JANAILLAT", + "nomCommune": "JANAILLAT" }, { - "codePostal": "16700", - "codeCommune": "16242", - "libelleAcheminement": "NANTEUIL EN VALLEE", - "nomCommune": "NANTEUIL EN VALLEE" + "codePostal": "23460", + "codeCommune": "23232", + "libelleAcheminement": "ST PIERRE BELLEVUE", + "nomCommune": "ST PIERRE BELLEVUE" }, { - "codePostal": "55160", - "codeCommune": "55473", - "libelleAcheminement": "SAULX LES CHAMPLON", - "nomCommune": "SAULX LES CHAMPLON" + "codePostal": "09800", + "codeCommune": "09335", + "libelleAcheminement": "VILLENEUVE", + "nomCommune": "VILLENEUVE" }, { - "codePostal": "51260", - "codeCommune": "51032", - "libelleAcheminement": "BAGNEUX", - "nomCommune": "BAGNEUX" + "codePostal": "11200", + "codeCommune": "11064", + "libelleAcheminement": "CAMPLONG D AUDE", + "nomCommune": "CAMPLONG D AUDE" }, { - "codePostal": "14140", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "23140", + "codeCommune": "23100", + "libelleAcheminement": "JARNAGES", + "nomCommune": "JARNAGES" }, { - "codePostal": "16240", - "codeCommune": "16253", - "libelleAcheminement": "PAIZAY NAUDOUIN EMBOURIE", - "nomCommune": "PAIZAY NAUDOUIN EMBOURIE" + "codePostal": "23600", + "codeCommune": "23233", + "libelleAcheminement": "ST PIERRE LE BOST", + "nomCommune": "ST PIERRE LE BOST" }, { - "codePostal": "55140", - "codeCommune": "55485", - "libelleAcheminement": "SEPVIGNY", - "nomCommune": "SEPVIGNY" + "codePostal": "09130", + "codeCommune": "09338", + "libelleAcheminement": "VILLENEUVE DU LATOU", + "nomCommune": "VILLENEUVE DU LATOU" }, { - "codePostal": "51300", - "codeCommune": "51039", - "libelleAcheminement": "BASSU", - "nomCommune": "BASSU" + "codePostal": "11190", + "codeCommune": "11065", + "libelleAcheminement": "CAMPS SUR L AGLY", + "nomCommune": "CAMPS SUR L AGLY" }, { - "codePostal": "14330", - "codeCommune": "14668", - "libelleAcheminement": "SAONNET", - "nomCommune": "SAONNET" + "codePostal": "23150", + "codeCommune": "23118", + "libelleAcheminement": "MAISONNISSES", + "nomCommune": "MAISONNISSES" }, { - "codePostal": "16240", - "codeCommune": "16253", - "libelleAcheminement": "PAIZAY NAUDOUIN EMBOURIE", - "nomCommune": "PAIZAY NAUDOUIN EMBOURIE" + "codePostal": "23500", + "codeCommune": "23238", + "libelleAcheminement": "ST QUENTIN LA CHABANNE", + "nomCommune": "ST QUENTIN LA CHABANNE" }, { - "codePostal": "55320", - "codeCommune": "55492", - "libelleAcheminement": "SOMMEDIEUE", - "nomCommune": "SOMMEDIEUE" + "codePostal": "10700", + "codeCommune": "10004", + "libelleAcheminement": "ALLIBAUDIERES", + "nomCommune": "ALLIBAUDIERES" }, { - "codePostal": "51700", - "codeCommune": "51063", - "libelleAcheminement": "BINSON ET ORQUIGNY", - "nomCommune": "BINSON ET ORQUIGNY" + "codePostal": "11340", + "codeCommune": "11066", + "libelleAcheminement": "CAMURAC", + "nomCommune": "CAMURAC" }, { - "codePostal": "14240", - "codeCommune": "14672", - "libelleAcheminement": "VAL DE DROME", - "nomCommune": "VAL DE DROME" + "codePostal": "23260", + "codeCommune": "23119", + "libelleAcheminement": "MALLERET", + "nomCommune": "MALLERET" }, { - "codePostal": "16390", - "codeCommune": "16254", - "libelleAcheminement": "PALLUAUD", - "nomCommune": "PALLUAUD" + "codePostal": "23320", + "codeCommune": "23242", + "libelleAcheminement": "ST SILVAIN MONTAIGUT", + "nomCommune": "ST SILVAIN MONTAIGUT" }, { - "codePostal": "55230", - "codeCommune": "55495", - "libelleAcheminement": "SORBEY", - "nomCommune": "SORBEY" + "codePostal": "10140", + "codeCommune": "10005", + "libelleAcheminement": "AMANCE", + "nomCommune": "AMANCE" }, { - "codePostal": "51110", - "codeCommune": "51075", - "libelleAcheminement": "BOURGOGNE FRESNE", - "nomCommune": "BOURGOGNE FRESNE" + "codePostal": "11200", + "codeCommune": "11067", + "libelleAcheminement": "CANET", + "nomCommune": "CANET" }, { - "codePostal": "14240", - "codeCommune": "14672", - "libelleAcheminement": "VAL DE DROME", - "nomCommune": "VAL DE DROME" + "codePostal": "23400", + "codeCommune": "23122", + "libelleAcheminement": "MANSAT LA COURRIERE", + "nomCommune": "MANSAT LA COURRIERE" }, { - "codePostal": "16450", - "codeCommune": "16255", - "libelleAcheminement": "PARZAC", - "nomCommune": "PARZAC" + "codePostal": "23800", + "codeCommune": "23244", + "libelleAcheminement": "ST SULPICE LE DUNOIS", + "nomCommune": "ST SULPICE LE DUNOIS" }, { - "codePostal": "55190", - "codeCommune": "55496", - "libelleAcheminement": "SORCY ST MARTIN", - "nomCommune": "SORCY ST MARTIN" + "codePostal": "10330", + "codeCommune": "10010", + "libelleAcheminement": "ARREMBECOURT", + "nomCommune": "ARREMBECOURT" }, { - "codePostal": "51480", - "codeCommune": "51076", - "libelleAcheminement": "BOURSAULT", - "nomCommune": "BOURSAULT" + "codePostal": "11700", + "codeCommune": "11068", + "libelleAcheminement": "CAPENDU", + "nomCommune": "CAPENDU" }, { - "codePostal": "14350", - "codeCommune": "14672", - "libelleAcheminement": "VAL DE DROME", - "nomCommune": "VAL DE DROME" + "codePostal": "23320", + "codeCommune": "23132", + "libelleAcheminement": "MONTAIGUT LE BLANC", + "nomCommune": "MONTAIGUT LE BLANC" }, { - "codePostal": "16260", - "codeCommune": "16261", - "libelleAcheminement": "LES PINS", - "nomCommune": "LES PINS" + "codePostal": "23000", + "codeCommune": "23245", + "libelleAcheminement": "ST SULPICE LE GUERETOIS", + "nomCommune": "ST SULPICE LE GUERETOIS" }, { - "codePostal": "55220", - "codeCommune": "55497", - "libelleAcheminement": "LES SOUHESMES RAMPONT", - "nomCommune": "LES SOUHESMES RAMPONT" + "codePostal": "10400", + "codeCommune": "10020", + "libelleAcheminement": "AVANT LES MARCILLY", + "nomCommune": "AVANT LES MARCILLY" }, { - "codePostal": "51800", - "codeCommune": "51082", - "libelleAcheminement": "BRAUX STE COHIERE", - "nomCommune": "BRAUX STE COHIERE" + "codePostal": "11000", + "codeCommune": "11069", + "libelleAcheminement": "CARCASSONNE", + "nomCommune": "CARCASSONNE" }, { - "codePostal": "14700", - "codeCommune": "14677", - "libelleAcheminement": "SOULANGY", - "nomCommune": "SOULANGY" + "codePostal": "23210", + "codeCommune": "23137", + "libelleAcheminement": "MOURIOUX VIEILLEVILLE", + "nomCommune": "MOURIOUX VIEILLEVILLE" }, { - "codePostal": "16250", - "codeCommune": "16263", - "libelleAcheminement": "PLASSAC ROUFFIAC", - "nomCommune": "PLASSAC ROUFFIAC" + "codePostal": "23150", + "codeCommune": "23250", + "libelleAcheminement": "ST YRIEIX LES BOIS", + "nomCommune": "ST YRIEIX LES BOIS" }, { - "codePostal": "55230", - "codeCommune": "55500", - "libelleAcheminement": "SPINCOURT", - "nomCommune": "SPINCOURT" + "codePostal": "10290", + "codeCommune": "10023", + "libelleAcheminement": "AVON LA PEZE", + "nomCommune": "AVON LA PEZE" }, { - "codePostal": "51320", - "codeCommune": "51084", - "libelleAcheminement": "BREBAN", - "nomCommune": "BREBAN" + "codePostal": "11270", + "codeCommune": "11072", + "libelleAcheminement": "LA CASSAIGNE", + "nomCommune": "LA CASSAIGNE" }, { - "codePostal": "14400", - "codeCommune": "14679", - "libelleAcheminement": "SUBLES", - "nomCommune": "SUBLES" + "codePostal": "23220", + "codeCommune": "23139", + "libelleAcheminement": "MOUTIER MALCARD", + "nomCommune": "MOUTIER MALCARD" }, { - "codePostal": "16400", - "codeCommune": "16271", - "libelleAcheminement": "PUYMOYEN", - "nomCommune": "PUYMOYEN" + "codePostal": "23350", + "codeCommune": "23252", + "libelleAcheminement": "TERCILLAT", + "nomCommune": "TERCILLAT" }, { - "codePostal": "55230", - "codeCommune": "55500", - "libelleAcheminement": "SPINCOURT", - "nomCommune": "SPINCOURT" + "codePostal": "10210", + "codeCommune": "10028", + "libelleAcheminement": "BALNOT LA GRANGE", + "nomCommune": "BALNOT LA GRANGE" }, { - "codePostal": "51300", - "codeCommune": "51094", - "libelleAcheminement": "BRUSSON", - "nomCommune": "BRUSSON" + "codePostal": "11230", + "codeCommune": "11080", + "libelleAcheminement": "VAL DE LAMBRONNE", + "nomCommune": "VAL DE LAMBRONNE" }, { - "codePostal": "14710", - "codeCommune": "14681", - "libelleAcheminement": "SURRAIN", - "nomCommune": "SURRAIN" + "codePostal": "23200", + "codeCommune": "23140", + "libelleAcheminement": "MOUTIER ROZEILLE", + "nomCommune": "MOUTIER ROZEILLE" }, { - "codePostal": "16140", - "codeCommune": "16275", - "libelleAcheminement": "RANVILLE BREUILLAUD", - "nomCommune": "RANVILLE BREUILLAUD" + "codePostal": "23250", + "codeCommune": "23253", + "libelleAcheminement": "THAURON", + "nomCommune": "THAURON" }, { - "codePostal": "55160", - "codeCommune": "55515", - "libelleAcheminement": "TRESAUVAUX", - "nomCommune": "TRESAUVAUX" + "codePostal": "10190", + "codeCommune": "10037", + "libelleAcheminement": "BERCENAY EN OTHE", + "nomCommune": "BERCENAY EN OTHE" }, { - "codePostal": "51300", - "codeCommune": "51095", - "libelleAcheminement": "LE BUISSON", - "nomCommune": "LE BUISSON" + "codePostal": "11170", + "codeCommune": "11089", + "libelleAcheminement": "CENNE MONESTIES", + "nomCommune": "CENNE MONESTIES" }, { - "codePostal": "14400", - "codeCommune": "14700", - "libelleAcheminement": "TOUR EN BESSIN", - "nomCommune": "TOUR EN BESSIN" + "codePostal": "23500", + "codeCommune": "23144", + "libelleAcheminement": "LA NOUAILLE", + "nomCommune": "LA NOUAILLE" }, { - "codePostal": "16200", - "codeCommune": "16277", - "libelleAcheminement": "REPARSAC", - "nomCommune": "REPARSAC" + "codePostal": "23600", + "codeCommune": "23254", + "libelleAcheminement": "TOULX STE CROIX", + "nomCommune": "TOULX STE CROIX" }, { - "codePostal": "55250", - "codeCommune": "55517", - "libelleAcheminement": "SEUIL D ARGONNE", - "nomCommune": "SEUIL D ARGONNE" + "codePostal": "10110", + "codeCommune": "10041", + "libelleAcheminement": "BERTIGNOLLES", + "nomCommune": "BERTIGNOLLES" }, { - "codePostal": "51160", - "codeCommune": "51119", - "libelleAcheminement": "CHAMPILLON", - "nomCommune": "CHAMPILLON" + "codePostal": "11300", + "codeCommune": "11105", + "libelleAcheminement": "COURNANEL", + "nomCommune": "COURNANEL" }, { - "codePostal": "14360", - "codeCommune": "14715", - "libelleAcheminement": "TROUVILLE SUR MER", - "nomCommune": "TROUVILLE SUR MER" + "codePostal": "23190", + "codeCommune": "23172", + "libelleAcheminement": "LA SERRE BUSSIERE VIEILLE", + "nomCommune": "LA SERRE BUSSIERE VIEILLE" }, { - "codePostal": "16320", - "codeCommune": "16283", - "libelleAcheminement": "RONSENAC", - "nomCommune": "RONSENAC" + "codePostal": "23250", + "codeCommune": "23260", + "libelleAcheminement": "VIDAILLAT", + "nomCommune": "VIDAILLAT" }, { - "codePostal": "55300", - "codeCommune": "55530", - "libelleAcheminement": "VALBOIS", - "nomCommune": "VALBOIS" + "codePostal": "10140", + "codeCommune": "10050", + "libelleAcheminement": "BOSSANCOURT", + "nomCommune": "BOSSANCOURT" }, { - "codePostal": "51480", - "codeCommune": "51120", - "libelleAcheminement": "CHAMPLAT ET BOUJACOURT", - "nomCommune": "CHAMPLAT ET BOUJACOURT" + "codePostal": "11300", + "codeCommune": "11120", + "libelleAcheminement": "LA DIGNE D AVAL", + "nomCommune": "LA DIGNE D AVAL" }, { - "codePostal": "14340", - "codeCommune": "14723", - "libelleAcheminement": "VALSEME", - "nomCommune": "VALSEME" + "codePostal": "23250", + "codeCommune": "23173", + "libelleAcheminement": "SOUBREBOST", + "nomCommune": "SOUBREBOST" }, { - "codePostal": "16440", - "codeCommune": "16287", - "libelleAcheminement": "ROULLET ST ESTEPHE", - "nomCommune": "ROULLET ST ESTEPHE" + "codePostal": "23800", + "codeCommune": "23263", + "libelleAcheminement": "VILLARD", + "nomCommune": "VILLARD" }, { - "codePostal": "55800", - "codeCommune": "55531", - "libelleAcheminement": "VASSINCOURT", - "nomCommune": "VASSINCOURT" + "codePostal": "10110", + "codeCommune": "10055", + "libelleAcheminement": "BOURGUIGNONS", + "nomCommune": "BOURGUIGNONS" }, { - "codePostal": "51330", - "codeCommune": "51130", - "libelleAcheminement": "CHARMONT", - "nomCommune": "CHARMONT" + "codePostal": "11240", + "codeCommune": "11121", + "libelleAcheminement": "DONAZAC", + "nomCommune": "DONAZAC" }, { - "codePostal": "14390", - "codeCommune": "14724", - "libelleAcheminement": "VARAVILLE", - "nomCommune": "VARAVILLE" + "codePostal": "23260", + "codeCommune": "23178", + "libelleAcheminement": "ST AGNANT PRES CROCQ", + "nomCommune": "ST AGNANT PRES CROCQ" }, { - "codePostal": "16310", - "codeCommune": "16289", - "libelleAcheminement": "ROUSSINES", - "nomCommune": "ROUSSINES" + "codePostal": "23340", + "codeCommune": "23264", + "libelleAcheminement": "LA VILLEDIEU", + "nomCommune": "LA VILLEDIEU" }, { - "codePostal": "55130", - "codeCommune": "55534", - "libelleAcheminement": "VAUDEVILLE LE HAUT", - "nomCommune": "VAUDEVILLE LE HAUT" + "codePostal": "10340", + "codeCommune": "10058", + "libelleAcheminement": "BRAGELOGNE BEAUVOIR", + "nomCommune": "BRAGELOGNE BEAUVOIR" }, { - "codePostal": "51800", - "codeCommune": "51138", - "libelleAcheminement": "CHATRICES", - "nomCommune": "CHATRICES" + "codePostal": "11240", + "codeCommune": "11128", + "libelleAcheminement": "ESCUEILLENS ET ST JUST", + "nomCommune": "ESCUEILLENS ET ST JUST DE BELENGARD" }, { - "codePostal": "14400", - "codeCommune": "14728", - "libelleAcheminement": "VAUCELLES", - "nomCommune": "VAUCELLES" + "codePostal": "23260", + "codeCommune": "23184", + "libelleAcheminement": "ST BARD", + "nomCommune": "ST BARD" }, { - "codePostal": "16120", - "codeCommune": "16297", - "libelleAcheminement": "GRAVES ST AMANT", - "nomCommune": "GRAVES ST AMANT" + "codePostal": "24600", + "codeCommune": "24007", + "libelleAcheminement": "ALLEMANS", + "nomCommune": "ALLEMANS" }, { - "codePostal": "55270", - "codeCommune": "55536", - "libelleAcheminement": "VAUQUOIS", - "nomCommune": "VAUQUOIS" + "codePostal": "10500", + "codeCommune": "10063", + "libelleAcheminement": "BRIENNE LA VIEILLE", + "nomCommune": "BRIENNE LA VIEILLE" }, { - "codePostal": "51240", - "codeCommune": "51148", - "libelleAcheminement": "CHEPPES LA PRAIRIE", - "nomCommune": "CHEPPES LA PRAIRIE" + "codePostal": "11140", + "codeCommune": "11135", + "libelleAcheminement": "LA FAJOLLE", + "nomCommune": "LA FAJOLLE" }, { - "codePostal": "14800", - "codeCommune": "14731", - "libelleAcheminement": "VAUVILLE", - "nomCommune": "VAUVILLE" + "codePostal": "23130", + "codeCommune": "23185", + "libelleAcheminement": "ST CHABRAIS", + "nomCommune": "ST CHABRAIS" }, { - "codePostal": "16300", - "codeCommune": "16303", - "libelleAcheminement": "ST BONNET", - "nomCommune": "ST BONNET" + "codePostal": "24160", + "codeCommune": "24009", + "libelleAcheminement": "ANLHIAC", + "nomCommune": "ANLHIAC" }, { - "codePostal": "55100", - "codeCommune": "55537", - "libelleAcheminement": "DOUAUMONT VAUX", - "nomCommune": "DOUAUMONT VAUX" + "codePostal": "10240", + "codeCommune": "10065", + "libelleAcheminement": "BRILLECOURT", + "nomCommune": "BRILLECOURT" }, { - "codePostal": "51500", - "codeCommune": "51152", - "libelleAcheminement": "CHIGNY LES ROSES", - "nomCommune": "CHIGNY LES ROSES" + "codePostal": "11510", + "codeCommune": "11143", + "libelleAcheminement": "FEUILLA", + "nomCommune": "FEUILLA" }, { - "codePostal": "14400", - "codeCommune": "14733", - "libelleAcheminement": "VAUX SUR SEULLES", - "nomCommune": "VAUX SUR SEULLES" + "codePostal": "23290", + "codeCommune": "23192", + "libelleAcheminement": "FURSAC", + "nomCommune": "FURSAC" }, { - "codePostal": "16230", - "codeCommune": "16307", - "libelleAcheminement": "ST CIERS SUR BONNIEURE", - "nomCommune": "ST CIERS SUR BONNIEURE" + "codePostal": "24430", + "codeCommune": "24010", + "libelleAcheminement": "ANNESSE ET BEAULIEU", + "nomCommune": "ANNESSE ET BEAULIEU" }, { - "codePostal": "55000", - "codeCommune": "55541", - "libelleAcheminement": "VAVINCOURT", - "nomCommune": "VAVINCOURT" + "codePostal": "10500", + "codeCommune": "10072", + "libelleAcheminement": "LA CHAISE", + "nomCommune": "LA CHAISE" }, { - "codePostal": "51130", - "codeCommune": "51154", - "libelleAcheminement": "CLAMANGES", - "nomCommune": "CLAMANGES" + "codePostal": "11560", + "codeCommune": "11145", + "libelleAcheminement": "FLEURY D AUDE", + "nomCommune": "FLEURY" }, { - "codePostal": "14170", - "codeCommune": "14735", - "libelleAcheminement": "VENDEUVRE", - "nomCommune": "VENDEUVRE" + "codePostal": "23160", + "codeCommune": "23199", + "libelleAcheminement": "ST GERMAIN BEAUPRE", + "nomCommune": "ST GERMAIN BEAUPRE" }, { - "codePostal": "16450", - "codeCommune": "16308", - "libelleAcheminement": "ST CLAUD", - "nomCommune": "ST CLAUD" + "codePostal": "24290", + "codeCommune": "24014", + "libelleAcheminement": "AUBAS", + "nomCommune": "AUBAS" }, { - "codePostal": "55210", - "codeCommune": "55551", - "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", - "nomCommune": "VIGNEULLES LES HATTONCHATEL" + "codePostal": "10200", + "codeCommune": "10076", + "libelleAcheminement": "CHAMPIGNOL LEZ MONDEVILLE", + "nomCommune": "CHAMPIGNOL LEZ MONDEVILLE" }, { - "codePostal": "51130", - "codeCommune": "51158", - "libelleAcheminement": "VAL DES MARAIS", - "nomCommune": "VAL DES MARAIS" + "codePostal": "11300", + "codeCommune": "11158", + "libelleAcheminement": "GAJA ET VILLEDIEU", + "nomCommune": "GAJA ET VILLEDIEU" }, { - "codePostal": "14700", - "codeCommune": "14759", - "libelleAcheminement": "VILLY LEZ FALAISE", - "nomCommune": "VILLY LEZ FALAISE" + "codePostal": "23150", + "codeCommune": "23201", + "libelleAcheminement": "ST HILAIRE LA PLAINE", + "nomCommune": "ST HILAIRE LA PLAINE" }, { - "codePostal": "16170", - "codeCommune": "16312", - "libelleAcheminement": "ST CYBARDEAUX", - "nomCommune": "ST CYBARDEAUX" + "codePostal": "24300", + "codeCommune": "24016", + "libelleAcheminement": "AUGIGNAC", + "nomCommune": "AUGIGNAC" }, { - "codePostal": "55210", - "codeCommune": "55551", - "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", - "nomCommune": "VIGNEULLES LES HATTONCHATEL" + "codePostal": "10140", + "codeCommune": "10078", + "libelleAcheminement": "CHAMP SUR BARSE", + "nomCommune": "CHAMP SUR BARSE" }, { - "codePostal": "51130", - "codeCommune": "51158", - "libelleAcheminement": "VAL DES MARAIS", - "nomCommune": "VAL DES MARAIS" + "codePostal": "11270", + "codeCommune": "11162", + "libelleAcheminement": "GENERVILLE", + "nomCommune": "GENERVILLE" }, { - "codePostal": "14370", - "codeCommune": "14761", - "libelleAcheminement": "VIMONT", - "nomCommune": "VIMONT" + "codePostal": "23000", + "codeCommune": "23206", + "libelleAcheminement": "ST LAURENT", + "nomCommune": "ST LAURENT" }, { - "codePostal": "16380", - "codeCommune": "16323", - "libelleAcheminement": "ST GERMAIN DE MONTBRON", - "nomCommune": "ST GERMAIN DE MONTBRON" + "codePostal": "24640", + "codeCommune": "24026", + "libelleAcheminement": "BASSILLAC ET AUBEROCHE", + "nomCommune": "BASSILLAC ET AUBEROCHE" }, { - "codePostal": "55600", - "codeCommune": "55554", - "libelleAcheminement": "VILLECLOYE", - "nomCommune": "VILLECLOYE" + "codePostal": "10210", + "codeCommune": "10087", + "libelleAcheminement": "CHASEREY", + "nomCommune": "CHASEREY" }, { - "codePostal": "51330", - "codeCommune": "51166", - "libelleAcheminement": "CONTAULT", - "nomCommune": "CONTAULT" + "codePostal": "11500", + "codeCommune": "11165", + "libelleAcheminement": "GINOLES", + "nomCommune": "GINOLES" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "23300", + "codeCommune": "23207", + "libelleAcheminement": "ST LEGER BRIDEREIX", + "nomCommune": "ST LEGER BRIDEREIX" }, { - "codePostal": "16100", - "codeCommune": "16330", - "libelleAcheminement": "ST LAURENT DE COGNAC", - "nomCommune": "ST LAURENT DE COGNAC" + "codePostal": "24150", + "codeCommune": "24027", + "libelleAcheminement": "BAYAC", + "nomCommune": "BAYAC" }, { - "codePostal": "55260", - "codeCommune": "55555", - "libelleAcheminement": "VILLE DEVANT BELRAIN", - "nomCommune": "VILLE DEVANT BELRAIN" + "codePostal": "10510", + "codeCommune": "10089", + "libelleAcheminement": "CHATRES", + "nomCommune": "CHATRES" }, { - "codePostal": "51210", - "codeCommune": "51175", - "libelleAcheminement": "CORROBERT", - "nomCommune": "CORROBERT" + "codePostal": "11430", + "codeCommune": "11170", + "libelleAcheminement": "GRUISSAN", + "nomCommune": "GRUISSAN" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "23000", + "codeCommune": "23208", + "libelleAcheminement": "ST LEGER LE GUERETOIS", + "nomCommune": "ST LEGER LE GUERETOIS" }, { - "codePostal": "16190", - "codeCommune": "16334", - "libelleAcheminement": "ST MARTIAL", - "nomCommune": "ST MARTIAL" + "codePostal": "24440", + "codeCommune": "24028", + "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", + "nomCommune": "BEAUMONTOIS EN PERIGORD" }, { - "codePostal": "55260", - "codeCommune": "55570", - "libelleAcheminement": "VILLOTTE SUR AIRE", - "nomCommune": "VILLOTTE SUR AIRE" + "codePostal": "10500", + "codeCommune": "10093", + "libelleAcheminement": "CHAUMESNIL", + "nomCommune": "CHAUMESNIL" }, { - "codePostal": "51140", - "codeCommune": "51181", - "libelleAcheminement": "COURCELLES SAPICOURT", - "nomCommune": "COURCELLES SAPICOURT" + "codePostal": "11400", + "codeCommune": "11181", + "libelleAcheminement": "LABECEDE LAURAGAIS", + "nomCommune": "LABECEDE LAURAGAIS" }, { - "codePostal": "14690", - "codeCommune": "14764", - "libelleAcheminement": "PONT D OUILLY", - "nomCommune": "PONT D OUILLY" + "codePostal": "23200", + "codeCommune": "23210", + "libelleAcheminement": "ST MAIXANT", + "nomCommune": "ST MAIXANT" }, { - "codePostal": "16170", - "codeCommune": "16339", - "libelleAcheminement": "VAL D AUGE", - "nomCommune": "VAL D AUGE" + "codePostal": "24140", + "codeCommune": "24031", + "libelleAcheminement": "BEAUREGARD ET BASSAC", + "nomCommune": "BEAUREGARD ET BASSAC" }, { - "codePostal": "55130", - "codeCommune": "55575", - "libelleAcheminement": "VOUTHON HAUT", - "nomCommune": "VOUTHON HAUT" + "codePostal": "10330", + "codeCommune": "10094", + "libelleAcheminement": "CHAVANGES", + "nomCommune": "CHAVANGES" }, { - "codePostal": "51490", - "codeCommune": "51216", - "libelleAcheminement": "DONTRIEN", - "nomCommune": "DONTRIEN" + "codePostal": "11220", + "codeCommune": "11185", + "libelleAcheminement": "LAGRASSE", + "nomCommune": "LAGRASSE" }, { - "codePostal": "15380", - "codeCommune": "15006", - "libelleAcheminement": "ANGLARDS DE SALERS", - "nomCommune": "ANGLARDS DE SALERS" + "codePostal": "23200", + "codeCommune": "23211", + "libelleAcheminement": "ST MARC A FRONGIER", + "nomCommune": "ST MARC A FRONGIER" }, { - "codePostal": "16720", - "codeCommune": "16340", - "libelleAcheminement": "ST MEME LES CARRIERES", - "nomCommune": "ST MEME LES CARRIERES" + "codePostal": "24750", + "codeCommune": "24053", + "libelleAcheminement": "BOULAZAC ISLE MANOIRE", + "nomCommune": "BOULAZAC ISLE MANOIRE" }, { - "codePostal": "55250", - "codeCommune": "55577", - "libelleAcheminement": "WALY", - "nomCommune": "WALY" + "codePostal": "10190", + "codeCommune": "10096", + "libelleAcheminement": "CHENNEGY", + "nomCommune": "CHENNEGY" }, { - "codePostal": "51700", - "codeCommune": "51217", - "libelleAcheminement": "DORMANS", - "nomCommune": "DORMANS" + "codePostal": "11700", + "codeCommune": "11190", + "libelleAcheminement": "LA REDORTE", + "nomCommune": "LA REDORTE" }, { - "codePostal": "15110", - "codeCommune": "15007", - "libelleAcheminement": "ANTERRIEUX", - "nomCommune": "ANTERRIEUX" + "codePostal": "23400", + "codeCommune": "23223", + "libelleAcheminement": "ST MOREIL", + "nomCommune": "ST MOREIL" }, { - "codePostal": "16370", - "codeCommune": "16355", - "libelleAcheminement": "ST SULPICE DE COGNAC", - "nomCommune": "ST SULPICE DE COGNAC" + "codePostal": "24400", + "codeCommune": "24059", + "libelleAcheminement": "BOURGNAC", + "nomCommune": "BOURGNAC" }, { - "codePostal": "55500", - "codeCommune": "55581", - "libelleAcheminement": "WILLERONCOURT", - "nomCommune": "WILLERONCOURT" + "codePostal": "10210", + "codeCommune": "10098", + "libelleAcheminement": "CHESLEY", + "nomCommune": "CHESLEY" }, { - "codePostal": "51700", - "codeCommune": "51217", - "libelleAcheminement": "DORMANS", - "nomCommune": "DORMANS" + "codePostal": "11330", + "codeCommune": "11191", + "libelleAcheminement": "LAROQUE DE FA", + "nomCommune": "LAROQUE DE FA" }, { - "codePostal": "15400", - "codeCommune": "15009", - "libelleAcheminement": "APCHON", - "nomCommune": "APCHON" + "codePostal": "23260", + "codeCommune": "23226", + "libelleAcheminement": "ST PARDOUX D ARNET", + "nomCommune": "ST PARDOUX D ARNET" }, { - "codePostal": "16710", - "codeCommune": "16358", - "libelleAcheminement": "ST YRIEIX SUR CHARENTE", - "nomCommune": "ST YRIEIX SUR CHARENTE" + "codePostal": "24310", + "codeCommune": "24064", + "libelleAcheminement": "BRANTOME EN PERIGORD", + "nomCommune": "BRANTOME EN PERIGORD" }, { - "codePostal": "55300", - "codeCommune": "55586", - "libelleAcheminement": "XIVRAY ET MARVOISIN", - "nomCommune": "XIVRAY ET MARVOISIN" + "codePostal": "10130", + "codeCommune": "10099", + "libelleAcheminement": "CHESSY LES PRES", + "nomCommune": "CHESSY LES PRES" }, { - "codePostal": "51800", - "codeCommune": "51222", - "libelleAcheminement": "ECLAIRES", - "nomCommune": "ECLAIRES" + "codePostal": "11400", + "codeCommune": "11192", + "libelleAcheminement": "LASBORDES", + "nomCommune": "LASBORDES" }, { - "codePostal": "15500", - "codeCommune": "15013", - "libelleAcheminement": "AURIAC L EGLISE", - "nomCommune": "AURIAC L EGLISE" + "codePostal": "23150", + "codeCommune": "23229", + "libelleAcheminement": "ST PARDOUX LES CARDS", + "nomCommune": "ST PARDOUX LES CARDS" }, { - "codePostal": "16420", - "codeCommune": "16363", - "libelleAcheminement": "SAULGOND", - "nomCommune": "SAULGOND" + "codePostal": "24480", + "codeCommune": "24068", + "libelleAcheminement": "LE BUISSON DE CADOUIN", + "nomCommune": "LE BUISSON DE CADOUIN" }, { - "codePostal": "56140", - "codeCommune": "56020", - "libelleAcheminement": "BOHAL", - "nomCommune": "BOHAL" + "codePostal": "10200", + "codeCommune": "10103", + "libelleAcheminement": "COLOMBE LE SEC", + "nomCommune": "COLOMBE LE SEC" }, { - "codePostal": "51230", - "codeCommune": "51226", - "libelleAcheminement": "ECURY LE REPOS", - "nomCommune": "ECURY LE REPOS" + "codePostal": "11270", + "codeCommune": "11193", + "libelleAcheminement": "LASSERRE DE PROUILLE", + "nomCommune": "LASSERRE DE PROUILLE" }, { - "codePostal": "15700", - "codeCommune": "15018", - "libelleAcheminement": "BARRIAC LES BOSQUETS", - "nomCommune": "BARRIAC LES BOSQUETS" + "codePostal": "23460", + "codeCommune": "23232", + "libelleAcheminement": "ST PIERRE BELLEVUE", + "nomCommune": "ST PIERRE BELLEVUE" }, { - "codePostal": "16130", - "codeCommune": "16366", - "libelleAcheminement": "SEGONZAC", - "nomCommune": "SEGONZAC" + "codePostal": "24480", + "codeCommune": "24068", + "libelleAcheminement": "LE BUISSON DE CADOUIN", + "nomCommune": "LE BUISSON DE CADOUIN" }, { - "codePostal": "56430", - "codeCommune": "56025", - "libelleAcheminement": "BRIGNAC", - "nomCommune": "BRIGNAC" + "codePostal": "10130", + "codeCommune": "10108", + "libelleAcheminement": "COURTAOULT", + "nomCommune": "COURTAOULT" }, { - "codePostal": "51330", - "codeCommune": "51229", - "libelleAcheminement": "EPENSE", - "nomCommune": "EPENSE" + "codePostal": "11270", + "codeCommune": "11196", + "libelleAcheminement": "LAURAC", + "nomCommune": "LAURAC" }, { - "codePostal": "15300", - "codeCommune": "15025", - "libelleAcheminement": "ALBEPIERRE BREDONS", - "nomCommune": "ALBEPIERRE BREDONS" + "codePostal": "23140", + "codeCommune": "23243", + "libelleAcheminement": "ST SILVAIN SOUS TOULX", + "nomCommune": "ST SILVAIN SOUS TOULX" }, { - "codePostal": "16410", - "codeCommune": "16368", - "libelleAcheminement": "SERS", - "nomCommune": "SERS" + "codePostal": "24360", + "codeCommune": "24070", + "libelleAcheminement": "BUSSEROLLES", + "nomCommune": "BUSSEROLLES" }, { - "codePostal": "56220", - "codeCommune": "56028", - "libelleAcheminement": "CADEN", - "nomCommune": "CADEN" + "codePostal": "10270", + "codeCommune": "10110", + "libelleAcheminement": "COURTERANGES", + "nomCommune": "COURTERANGES" }, { - "codePostal": "51310", - "codeCommune": "51236", - "libelleAcheminement": "LES ESSARTS LE VICOMTE", - "nomCommune": "LES ESSARTS LE VICOMTE" + "codePostal": "11250", + "codeCommune": "11201", + "libelleAcheminement": "LEUC", + "nomCommune": "LEUC" }, { - "codePostal": "15320", - "codeCommune": "15034", - "libelleAcheminement": "CHALIERS", - "nomCommune": "CHALIERS" + "codePostal": "23230", + "codeCommune": "23255", + "libelleAcheminement": "TROIS FONDS", + "nomCommune": "TROIS FONDS" }, { - "codePostal": "16260", - "codeCommune": "16377", - "libelleAcheminement": "LA TACHE", - "nomCommune": "LA TACHE" + "codePostal": "24200", + "codeCommune": "24082", + "libelleAcheminement": "CARSAC AILLAC", + "nomCommune": "CARSAC AILLAC" }, { - "codePostal": "56910", - "codeCommune": "56033", - "libelleAcheminement": "CARENTOIR", - "nomCommune": "CARENTOIR" + "codePostal": "10150", + "codeCommune": "10115", + "libelleAcheminement": "CRENEY PRES TROYES", + "nomCommune": "CRENEY PRES TROYES" }, { - "codePostal": "51270", - "codeCommune": "51238", - "libelleAcheminement": "ETOGES", - "nomCommune": "ETOGES" + "codePostal": "11370", + "codeCommune": "11202", + "libelleAcheminement": "LEUCATE", + "nomCommune": "LEUCATE" }, { - "codePostal": "15270", - "codeCommune": "15038", - "libelleAcheminement": "CHAMPS SUR TARENTAINE MARCHAL", - "nomCommune": "CHAMPS SUR TARENTAINE MARCHAL" + "codePostal": "23120", + "codeCommune": "23257", + "libelleAcheminement": "VALLIERE", + "nomCommune": "VALLIERE" }, { - "codePostal": "16560", - "codeCommune": "16383", - "libelleAcheminement": "TOURRIERS", - "nomCommune": "TOURRIERS" + "codePostal": "24250", + "codeCommune": "24086", + "libelleAcheminement": "CASTELNAUD LA CHAPELLE", + "nomCommune": "CASTELNAUD LA CHAPELLE" }, { - "codePostal": "56230", - "codeCommune": "56045", - "libelleAcheminement": "LE COURS", - "nomCommune": "LE COURS" + "codePostal": "10320", + "codeCommune": "10116", + "libelleAcheminement": "CRESANTIGNES", + "nomCommune": "CRESANTIGNES" }, { - "codePostal": "51230", - "codeCommune": "51241", - "libelleAcheminement": "EUVY", - "nomCommune": "EUVY" + "codePostal": "11300", + "codeCommune": "11206", + "libelleAcheminement": "LIMOUX", + "nomCommune": "LIMOUX" }, { - "codePostal": "15300", - "codeCommune": "15041", - "libelleAcheminement": "LA CHAPELLE D ALAGNON", - "nomCommune": "LA CHAPELLE D ALAGNON" + "codePostal": "23170", + "codeCommune": "23259", + "libelleAcheminement": "VERNEIGES", + "nomCommune": "VERNEIGES" }, { - "codePostal": "16200", - "codeCommune": "16387", - "libelleAcheminement": "TRIAC LAUTRAIT", - "nomCommune": "TRIAC LAUTRAIT" + "codePostal": "24600", + "codeCommune": "24090", + "libelleAcheminement": "CELLES", + "nomCommune": "CELLES" }, { - "codePostal": "56540", - "codeCommune": "56048", - "libelleAcheminement": "LE CROISTY", - "nomCommune": "LE CROISTY" + "codePostal": "10130", + "codeCommune": "10118", + "libelleAcheminement": "LES CROUTES", + "nomCommune": "LES CROUTES" }, { - "codePostal": "51510", - "codeCommune": "51242", - "libelleAcheminement": "FAGNIERES", - "nomCommune": "FAGNIERES" + "codePostal": "11140", + "codeCommune": "11244", + "libelleAcheminement": "MONTFORT SUR BOULZANE", + "nomCommune": "MONTFORT SUR BOULZANE" }, { - "codePostal": "15100", - "codeCommune": "15055", - "libelleAcheminement": "COREN", - "nomCommune": "COREN" + "codePostal": "24460", + "codeCommune": "24002", + "libelleAcheminement": "AGONAC", + "nomCommune": "AGONAC" }, { - "codePostal": "16170", - "codeCommune": "16395", - "libelleAcheminement": "VAUX ROUILLAC", - "nomCommune": "VAUX ROUILLAC" + "codePostal": "24530", + "codeCommune": "24096", + "libelleAcheminement": "CHAMPAGNAC DE BELAIR", + "nomCommune": "CHAMPAGNAC DE BELAIR" }, { - "codePostal": "56490", - "codeCommune": "56056", - "libelleAcheminement": "EVRIGUET", - "nomCommune": "EVRIGUET" + "codePostal": "10200", + "codeCommune": "10126", + "libelleAcheminement": "DOLANCOURT", + "nomCommune": "DOLANCOURT" }, { - "codePostal": "51170", - "codeCommune": "51245", - "libelleAcheminement": "FAVEROLLES ET COEMY", - "nomCommune": "FAVEROLLES ET COEMY" + "codePostal": "11220", + "codeCommune": "11251", + "libelleAcheminement": "VAL DE DAGNE", + "nomCommune": "VAL DE DAGNE" }, { - "codePostal": "15150", - "codeCommune": "15057", - "libelleAcheminement": "CROS DE MONTVERT", - "nomCommune": "CROS DE MONTVERT" + "codePostal": "24420", + "codeCommune": "24011", + "libelleAcheminement": "ANTONNE ET TRIGONANT", + "nomCommune": "ANTONNE ET TRIGONANT" }, { - "codePostal": "16460", - "codeCommune": "16396", - "libelleAcheminement": "VENTOUSE", - "nomCommune": "VENTOUSE" + "codePostal": "24360", + "codeCommune": "24100", + "libelleAcheminement": "CHAMPNIERS ET REILHAC", + "nomCommune": "CHAMPNIERS ET REILHAC" }, { - "codePostal": "56130", - "codeCommune": "56058", - "libelleAcheminement": "FEREL", - "nomCommune": "FEREL" + "codePostal": "10330", + "codeCommune": "10128", + "libelleAcheminement": "DONNEMENT", + "nomCommune": "DONNEMENT" }, { - "codePostal": "51800", - "codeCommune": "51253", - "libelleAcheminement": "FLORENT EN ARGONNE", - "nomCommune": "FLORENT EN ARGONNE" + "codePostal": "11290", + "codeCommune": "11254", + "libelleAcheminement": "MONTREAL", + "nomCommune": "MONTREAL" }, { - "codePostal": "15300", - "codeCommune": "15061", - "libelleAcheminement": "DIENNE", - "nomCommune": "DIENNE" + "codePostal": "24560", + "codeCommune": "24024", + "libelleAcheminement": "BARDOU", + "nomCommune": "BARDOU" }, { - "codePostal": "16300", - "codeCommune": "16405", - "libelleAcheminement": "VIGNOLLES", - "nomCommune": "VIGNOLLES" + "codePostal": "24290", + "codeCommune": "24106", + "libelleAcheminement": "LA CHAPELLE AUBAREIL", + "nomCommune": "LA CHAPELLE AUBAREIL" }, { - "codePostal": "56200", - "codeCommune": "56061", - "libelleAcheminement": "LA GACILLY", - "nomCommune": "LA GACILLY" + "codePostal": "10130", + "codeCommune": "10140", + "libelleAcheminement": "ERVY LE CHATEL", + "nomCommune": "ERVY LE CHATEL" }, { - "codePostal": "51160", - "codeCommune": "51256", - "libelleAcheminement": "FONTAINE SUR AY", - "nomCommune": "FONTAINE SUR AY" + "codePostal": "11100", + "codeCommune": "11262", + "libelleAcheminement": "NARBONNE", + "nomCommune": "NARBONNE" }, { - "codePostal": "15310", - "codeCommune": "15072", - "libelleAcheminement": "FREIX ANGLARDS", - "nomCommune": "FREIX ANGLARDS" + "codePostal": "24440", + "codeCommune": "24028", + "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", + "nomCommune": "BEAUMONTOIS EN PERIGORD" }, { - "codePostal": "16560", - "codeCommune": "16412", - "libelleAcheminement": "VILLEJOUBERT", - "nomCommune": "VILLEJOUBERT" + "codePostal": "24460", + "codeCommune": "24115", + "libelleAcheminement": "CHATEAU L EVEQUE", + "nomCommune": "CHATEAU L EVEQUE" }, { - "codePostal": "56680", - "codeCommune": "56062", - "libelleAcheminement": "GAVRES", - "nomCommune": "GAVRES" + "codePostal": "10290", + "codeCommune": "10145", + "libelleAcheminement": "FAUX VILLECERF", + "nomCommune": "FAUX VILLECERF" }, { - "codePostal": "51120", - "codeCommune": "51258", - "libelleAcheminement": "LA FORESTIERE", - "nomCommune": "LA FORESTIERE" + "codePostal": "11410", + "codeCommune": "11275", + "libelleAcheminement": "PAYRA SUR L HERS", + "nomCommune": "PAYRA SUR L HERS" }, { - "codePostal": "15130", - "codeCommune": "15085", - "libelleAcheminement": "LABROUSSE", - "nomCommune": "LABROUSSE" + "codePostal": "24120", + "codeCommune": "24030", + "libelleAcheminement": "BEAUREGARD DE TERRASSON", + "nomCommune": "BEAUREGARD DE TERRASSON" }, { - "codePostal": "16430", - "codeCommune": "16415", - "libelleAcheminement": "VINDELLE", - "nomCommune": "VINDELLE" + "codePostal": "24120", + "codeCommune": "24116", + "libelleAcheminement": "CHATRES", + "nomCommune": "CHATRES" }, { - "codePostal": "56800", - "codeCommune": "56065", - "libelleAcheminement": "GOURHEL", - "nomCommune": "GOURHEL" + "codePostal": "10280", + "codeCommune": "10151", + "libelleAcheminement": "FONTAINE LES GRES", + "nomCommune": "FONTAINE LES GRES" }, { - "codePostal": "51390", - "codeCommune": "51267", - "libelleAcheminement": "GERMIGNY", - "nomCommune": "GERMIGNY" + "codePostal": "11350", + "codeCommune": "11276", + "libelleAcheminement": "PAZIOLS", + "nomCommune": "PAZIOLS" }, { - "codePostal": "15130", - "codeCommune": "15090", - "libelleAcheminement": "LAFEUILLADE EN VEZIE", - "nomCommune": "LAFEUILLADE EN VEZIE" + "codePostal": "24170", + "codeCommune": "24035", + "libelleAcheminement": "PAYS DE BELVES", + "nomCommune": "PAYS DE BELVES" }, { - "codePostal": "16110", - "codeCommune": "16425", - "libelleAcheminement": "YVRAC ET MALLEYRAND", - "nomCommune": "YVRAC ET MALLEYRAND" + "codePostal": "24160", + "codeCommune": "24124", + "libelleAcheminement": "CLERMONT D EXCIDEUIL", + "nomCommune": "CLERMONT D EXCIDEUIL" }, { - "codePostal": "56120", - "codeCommune": "56070", - "libelleAcheminement": "GUEGON", - "nomCommune": "GUEGON" + "codePostal": "10270", + "codeCommune": "10162", + "libelleAcheminement": "FRESNOY LE CHATEAU", + "nomCommune": "FRESNOY LE CHATEAU" }, { - "codePostal": "51130", - "codeCommune": "51268", - "libelleAcheminement": "GERMINON", - "nomCommune": "GERMINON" + "codePostal": "11420", + "codeCommune": "11283", + "libelleAcheminement": "PEYREFITTE SUR L HERS", + "nomCommune": "PEYREFITTE SUR L HERS" }, { - "codePostal": "15270", - "codeCommune": "15092", - "libelleAcheminement": "LANOBRE", - "nomCommune": "LANOBRE" + "codePostal": "24560", + "codeCommune": "24045", + "libelleAcheminement": "BOISSE", + "nomCommune": "BOISSE" }, { - "codePostal": "17500", - "codeCommune": "17002", - "libelleAcheminement": "AGUDELLE", - "nomCommune": "AGUDELLE" + "codePostal": "24530", + "codeCommune": "24129", + "libelleAcheminement": "CONDAT SUR TRINCOU", + "nomCommune": "CONDAT SUR TRINCOU" }, { - "codePostal": "56520", - "codeCommune": "56078", - "libelleAcheminement": "GUIDEL", - "nomCommune": "GUIDEL" + "codePostal": "10220", + "codeCommune": "10165", + "libelleAcheminement": "GERAUDOT", + "nomCommune": "GERAUDOT" }, { - "codePostal": "51330", - "codeCommune": "51272", - "libelleAcheminement": "GIVRY EN ARGONNE", - "nomCommune": "GIVRY EN ARGONNE" + "codePostal": "11160", + "codeCommune": "11286", + "libelleAcheminement": "PEYRIAC MINERVOIS", + "nomCommune": "PEYRIAC MINERVOIS" }, { - "codePostal": "15120", - "codeCommune": "15093", - "libelleAcheminement": "LAPEYRUGUE", - "nomCommune": "LAPEYRUGUE" + "codePostal": "24230", + "codeCommune": "24048", + "libelleAcheminement": "BONNEVILLE ST AVIT DE FUMADIERES", + "nomCommune": "BONNEVILLE ET ST AVIT DE FUMADIERES" }, { - "codePostal": "17290", - "codeCommune": "17003", - "libelleAcheminement": "AIGREFEUILLE D AUNIS", - "nomCommune": "AIGREFEUILLE D AUNIS" + "codePostal": "24750", + "codeCommune": "24135", + "libelleAcheminement": "CORNILLE", + "nomCommune": "CORNILLE" }, { - "codePostal": "56450", - "codeCommune": "56084", - "libelleAcheminement": "LE HEZO", - "nomCommune": "LE HEZO" + "codePostal": "10240", + "codeCommune": "10174", + "libelleAcheminement": "ISLE AUBIGNY", + "nomCommune": "ISLE AUBIGNY" }, { - "codePostal": "51260", - "codeCommune": "51279", - "libelleAcheminement": "GRANGES SUR AUBE", - "nomCommune": "GRANGES SUR AUBE" + "codePostal": "11270", + "codeCommune": "11291", + "libelleAcheminement": "PLAVILLA", + "nomCommune": "PLAVILLA" }, { - "codePostal": "15300", - "codeCommune": "15100", - "libelleAcheminement": "LAVEISSENET", - "nomCommune": "LAVEISSENET" + "codePostal": "24480", + "codeCommune": "24052", + "libelleAcheminement": "BOUILLAC", + "nomCommune": "BOUILLAC" }, { - "codePostal": "17150", - "codeCommune": "17005", - "libelleAcheminement": "ALLAS BOCAGE", - "nomCommune": "ALLAS BOCAGE" + "codePostal": "24660", + "codeCommune": "24138", + "libelleAcheminement": "COULOUNIEIX CHAMIERS", + "nomCommune": "COULOUNIEIX CHAMIERS" }, { - "codePostal": "56920", - "codeCommune": "56092", - "libelleAcheminement": "KERFOURN", - "nomCommune": "KERFOURN" + "codePostal": "10320", + "codeCommune": "10177", + "libelleAcheminement": "JAVERNANT", + "nomCommune": "JAVERNANT" }, { - "codePostal": "51800", - "codeCommune": "51283", - "libelleAcheminement": "HANS", - "nomCommune": "HANS" + "codePostal": "11490", + "codeCommune": "11295", + "libelleAcheminement": "PORTEL DES CORBIERES", + "nomCommune": "PORTEL DES CORBIERES" }, { - "codePostal": "15300", - "codeCommune": "15101", - "libelleAcheminement": "LAVEISSIERE", - "nomCommune": "LAVEISSIERE" + "codePostal": "24330", + "codeCommune": "24053", + "libelleAcheminement": "BOULAZAC ISLE MANOIRE", + "nomCommune": "BOULAZAC ISLE MANOIRE" }, { - "codePostal": "17230", - "codeCommune": "17008", - "libelleAcheminement": "ANDILLY", - "nomCommune": "ANDILLY" + "codePostal": "24430", + "codeCommune": "24139", + "libelleAcheminement": "COURSAC", + "nomCommune": "COURSAC" }, { - "codePostal": "56690", - "codeCommune": "56096", - "libelleAcheminement": "LANDAUL", - "nomCommune": "LANDAUL" + "codePostal": "10140", + "codeCommune": "10178", + "libelleAcheminement": "JESSAINS", + "nomCommune": "JESSAINS" }, { - "codePostal": "51300", - "codeCommune": "51284", - "libelleAcheminement": "HAUSSIGNEMONT", - "nomCommune": "HAUSSIGNEMONT" + "codePostal": "11120", + "codeCommune": "11296", + "libelleAcheminement": "POUZOLS MINERVOIS", + "nomCommune": "POUZOLS MINERVOIS" }, { - "codePostal": "15600", - "codeCommune": "15104", - "libelleAcheminement": "LEYNHAC", - "nomCommune": "LEYNHAC" + "codePostal": "24310", + "codeCommune": "24055", + "libelleAcheminement": "BOURDEILLES", + "nomCommune": "BOURDEILLES" }, { - "codePostal": "17230", - "codeCommune": "17008", - "libelleAcheminement": "ANDILLY", - "nomCommune": "ANDILLY" + "codePostal": "24220", + "codeCommune": "24142", + "libelleAcheminement": "COUX ET BIGAROQUE MOUZENS", + "nomCommune": "COUX ET BIGAROQUE MOUZENS" }, { - "codePostal": "56440", - "codeCommune": "56101", - "libelleAcheminement": "LANGUIDIC", - "nomCommune": "LANGUIDIC" + "codePostal": "10330", + "codeCommune": "10180", + "libelleAcheminement": "JONCREUIL", + "nomCommune": "JONCREUIL" }, { - "codePostal": "51300", - "codeCommune": "51295", - "libelleAcheminement": "HUIRON", - "nomCommune": "HUIRON" + "codePostal": "11700", + "codeCommune": "11301", + "libelleAcheminement": "PUICHERIC", + "nomCommune": "PUICHERIC" }, { - "codePostal": "43450", - "codeCommune": "15105", - "libelleAcheminement": "LEYVAUX", - "nomCommune": "LEYVAUX" + "codePostal": "24320", + "codeCommune": "24057", + "libelleAcheminement": "BOURG DES MAISONS", + "nomCommune": "BOURG DES MAISONS" }, { - "codePostal": "17350", - "codeCommune": "17011", - "libelleAcheminement": "ANNEPONT", - "nomCommune": "ANNEPONT" + "codePostal": "24640", + "codeCommune": "24147", + "libelleAcheminement": "CUBJAC AUVEZERE VAL D ANS", + "nomCommune": "CUBJAC AUVEZERE VAL D ANS" }, { - "codePostal": "56120", - "codeCommune": "56103", - "libelleAcheminement": "LANTILLAC", - "nomCommune": "LANTILLAC" + "codePostal": "10310", + "codeCommune": "10182", + "libelleAcheminement": "JUVANCOURT", + "nomCommune": "JUVANCOURT" }, { - "codePostal": "51290", - "codeCommune": "51300", - "libelleAcheminement": "ISLE SUR MARNE", - "nomCommune": "ISLE SUR MARNE" + "codePostal": "11200", + "codeCommune": "11307", + "libelleAcheminement": "RAISSAC D AUDE", + "nomCommune": "RAISSAC D AUDE" }, { - "codePostal": "15320", - "codeCommune": "15108", - "libelleAcheminement": "VAL D ARCOMIE", - "nomCommune": "VAL D ARCOMIE" + "codePostal": "24150", + "codeCommune": "24060", + "libelleAcheminement": "BOURNIQUEL", + "nomCommune": "BOURNIQUEL" }, { - "codePostal": "17120", - "codeCommune": "17015", - "libelleAcheminement": "ARCES", - "nomCommune": "ARCES" + "codePostal": "24250", + "codeCommune": "24150", + "libelleAcheminement": "DAGLAN", + "nomCommune": "DAGLAN" }, { - "codePostal": "56870", - "codeCommune": "56106", - "libelleAcheminement": "LARMOR BADEN", - "nomCommune": "LARMOR BADEN" + "codePostal": "10140", + "codeCommune": "10183", + "libelleAcheminement": "JUVANZE", + "nomCommune": "JUVANZE" }, { - "codePostal": "51290", - "codeCommune": "51316", - "libelleAcheminement": "LARZICOURT", - "nomCommune": "LARZICOURT" + "codePostal": "11270", + "codeCommune": "11312", + "libelleAcheminement": "RIBOUISSE", + "nomCommune": "RIBOUISSE" }, { - "codePostal": "15200", - "codeCommune": "15120", - "libelleAcheminement": "MAURIAC", - "nomCommune": "MAURIAC" + "codePostal": "24310", + "codeCommune": "24064", + "libelleAcheminement": "BRANTOME EN PERIGORD", + "nomCommune": "BRANTOME EN PERIGORD" }, { - "codePostal": "17380", - "codeCommune": "17017", - "libelleAcheminement": "ARCHINGEAY", - "nomCommune": "ARCHINGEAY" + "codePostal": "24420", + "codeCommune": "24162", + "libelleAcheminement": "ESCOIRE", + "nomCommune": "ESCOIRE" }, { - "codePostal": "56460", - "codeCommune": "56112", - "libelleAcheminement": "LIZIO", - "nomCommune": "LIZIO" + "codePostal": "10320", + "codeCommune": "10198", + "libelleAcheminement": "LIREY", + "nomCommune": "LIREY" }, { - "codePostal": "51230", - "codeCommune": "51319", - "libelleAcheminement": "LENHARREE", - "nomCommune": "LENHARREE" + "codePostal": "11340", + "codeCommune": "11320", + "libelleAcheminement": "ROQUEFEUIL", + "nomCommune": "ROQUEFEUIL" }, { - "codePostal": "15500", - "codeCommune": "15126", - "libelleAcheminement": "MOLEDES", - "nomCommune": "MOLEDES" + "codePostal": "24460", + "codeCommune": "24064", + "libelleAcheminement": "BRANTOME EN PERIGORD", + "nomCommune": "BRANTOME EN PERIGORD" }, { - "codePostal": "17590", - "codeCommune": "17019", - "libelleAcheminement": "ARS EN RE", - "nomCommune": "ARS EN RE" + "codePostal": "24500", + "codeCommune": "24167", + "libelleAcheminement": "EYMET", + "nomCommune": "EYMET" }, { - "codePostal": "56360", - "codeCommune": "56114", - "libelleAcheminement": "LOCMARIA", - "nomCommune": "LOCMARIA" + "codePostal": "10320", + "codeCommune": "10204", + "libelleAcheminement": "LONGEVILLE SUR MOGNE", + "nomCommune": "LONGEVILLE SUR MOGNE" }, { - "codePostal": "51130", - "codeCommune": "51327", - "libelleAcheminement": "LOISY EN BRIE", - "nomCommune": "LOISY EN BRIE" + "codePostal": "11540", + "codeCommune": "11322", + "libelleAcheminement": "ROQUEFORT DES CORBIERES", + "nomCommune": "ROQUEFORT DES CORBIERES" }, { - "codePostal": "15240", - "codeCommune": "15131", - "libelleAcheminement": "LE MONTEIL", - "nomCommune": "LE MONTEIL" + "codePostal": "24350", + "codeCommune": "24069", + "libelleAcheminement": "BUSSAC", + "nomCommune": "BUSSAC" }, { - "codePostal": "17360", - "codeCommune": "17033", - "libelleAcheminement": "LA BARDE", - "nomCommune": "LA BARDE" + "codePostal": "24620", + "codeCommune": "24172", + "libelleAcheminement": "LES EYZIES", + "nomCommune": "LES EYZIES" }, { - "codePostal": "56740", - "codeCommune": "56116", - "libelleAcheminement": "LOCMARIAQUER", - "nomCommune": "LOCMARIAQUER" + "codePostal": "10170", + "codeCommune": "10207", + "libelleAcheminement": "LONGUEVILLE SUR AUBE", + "nomCommune": "LONGUEVILLE SUR AUBE" }, { - "codePostal": "51240", - "codeCommune": "51339", - "libelleAcheminement": "MAIRY SUR MARNE", - "nomCommune": "MAIRY SUR MARNE" + "codePostal": "11290", + "codeCommune": "11327", + "libelleAcheminement": "ROULLENS", + "nomCommune": "ROULLENS" }, { - "codePostal": "15170", - "codeCommune": "15141", - "libelleAcheminement": "NEUSSARGUES EN PINATELLE", - "nomCommune": "NEUSSARGUES EN PINATELLE" + "codePostal": "24150", + "codeCommune": "24073", + "libelleAcheminement": "CALES", + "nomCommune": "CALES" }, { - "codePostal": "17490", - "codeCommune": "17035", - "libelleAcheminement": "BAZAUGES", - "nomCommune": "BAZAUGES" + "codePostal": "24500", + "codeCommune": "24186", + "libelleAcheminement": "FONROQUE", + "nomCommune": "FONROQUE" }, { - "codePostal": "56100", - "codeCommune": "56121", - "libelleAcheminement": "LORIENT", - "nomCommune": "LORIENT" + "codePostal": "10270", + "codeCommune": "10209", + "libelleAcheminement": "LUSIGNY SUR BARSE", + "nomCommune": "LUSIGNY SUR BARSE" }, { - "codePostal": "51190", - "codeCommune": "51367", - "libelleAcheminement": "LE MESNIL SUR OGER", - "nomCommune": "LE MESNIL SUR OGER" + "codePostal": "11240", + "codeCommune": "11328", + "libelleAcheminement": "ROUTIER", + "nomCommune": "ROUTIER" }, { - "codePostal": "15100", - "codeCommune": "15142", - "libelleAcheminement": "NEUVEGLISE SUR TRUYERE", - "nomCommune": "NEUVEGLISE SUR TRUYERE" + "codePostal": "24260", + "codeCommune": "24076", + "libelleAcheminement": "CAMPAGNE", + "nomCommune": "CAMPAGNE" }, { - "codePostal": "17160", - "codeCommune": "17048", - "libelleAcheminement": "BLANZAC LES MATHA", - "nomCommune": "BLANZAC LES MATHA" + "codePostal": "24160", + "codeCommune": "24196", + "libelleAcheminement": "GENIS", + "nomCommune": "GENIS" }, { - "codePostal": "56250", - "codeCommune": "56137", - "libelleAcheminement": "MONTERBLANC", - "nomCommune": "MONTERBLANC" + "codePostal": "10230", + "codeCommune": "10216", + "libelleAcheminement": "MAILLY LE CAMP", + "nomCommune": "MAILLY LE CAMP" }, { - "codePostal": "51170", - "codeCommune": "51382", - "libelleAcheminement": "MONT SUR COURVILLE", - "nomCommune": "MONT SUR COURVILLE" + "codePostal": "11200", + "codeCommune": "11332", + "libelleAcheminement": "ST ANDRE DE ROQUELONGUE", + "nomCommune": "ST ANDRE DE ROQUELONGUE" }, { - "codePostal": "15290", - "codeCommune": "15147", - "libelleAcheminement": "PARLAN", - "nomCommune": "PARLAN" + "codePostal": "24120", + "codeCommune": "24085", + "libelleAcheminement": "LA CASSAGNE", + "nomCommune": "LA CASSAGNE" }, { - "codePostal": "17150", - "codeCommune": "17052", - "libelleAcheminement": "BOISREDON", - "nomCommune": "BOISREDON" + "codePostal": "24320", + "codeCommune": "24199", + "libelleAcheminement": "GOUT ROSSIGNOL", + "nomCommune": "GOUT ROSSIGNOL" }, { - "codePostal": "56500", - "codeCommune": "56140", - "libelleAcheminement": "MOREAC", - "nomCommune": "MOREAC" + "codePostal": "10500", + "codeCommune": "10221", + "libelleAcheminement": "MAIZIERES LES BRIENNE", + "nomCommune": "MAIZIERES LES BRIENNE" }, { - "codePostal": "51530", - "codeCommune": "51387", - "libelleAcheminement": "MOSLINS", - "nomCommune": "MOSLINS" + "codePostal": "11230", + "codeCommune": "11333", + "libelleAcheminement": "ST BENOIT", + "nomCommune": "ST BENOIT" }, { - "codePostal": "15700", - "codeCommune": "15153", - "libelleAcheminement": "PLEAUX", - "nomCommune": "PLEAUX" + "codePostal": "24220", + "codeCommune": "24087", + "libelleAcheminement": "CASTELS ET BEZENAC", + "nomCommune": "CASTELS ET BEZENAC" }, { - "codePostal": "17540", - "codeCommune": "17057", - "libelleAcheminement": "BOUHET", - "nomCommune": "BOUHET" + "codePostal": "24350", + "codeCommune": "24200", + "libelleAcheminement": "GRAND BRASSAC", + "nomCommune": "GRAND BRASSAC" }, { - "codePostal": "56430", - "codeCommune": "56145", - "libelleAcheminement": "NEANT SUR YVEL", - "nomCommune": "NEANT SUR YVEL" + "codePostal": "10500", + "codeCommune": "10228", + "libelleAcheminement": "MATHAUX", + "nomCommune": "MATHAUX" }, { - "codePostal": "51120", - "codeCommune": "51395", - "libelleAcheminement": "NESLE LA REPOSTE", - "nomCommune": "NESLE LA REPOSTE" + "codePostal": "11700", + "codeCommune": "11337", + "libelleAcheminement": "ST COUAT D AUDE", + "nomCommune": "ST COUAT D AUDE" }, { - "codePostal": "15700", - "codeCommune": "15153", - "libelleAcheminement": "PLEAUX", - "nomCommune": "PLEAUX" + "codePostal": "24800", + "codeCommune": "24095", + "libelleAcheminement": "CHALAIS", + "nomCommune": "CHALAIS" }, { - "codePostal": "17120", - "codeCommune": "17068", - "libelleAcheminement": "BRIE SOUS MORTAGNE", - "nomCommune": "BRIE SOUS MORTAGNE" + "codePostal": "24170", + "codeCommune": "24206", + "libelleAcheminement": "GRIVES", + "nomCommune": "GRIVES" }, { - "codePostal": "56760", - "codeCommune": "56155", - "libelleAcheminement": "PENESTIN", - "nomCommune": "PENESTIN" + "codePostal": "10110", + "codeCommune": "10232", + "libelleAcheminement": "MERREY SUR ARCE", + "nomCommune": "MERREY SUR ARCE" }, { - "codePostal": "51310", - "codeCommune": "51407", - "libelleAcheminement": "LA NOUE", - "nomCommune": "LA NOUE" + "codePostal": "11300", + "codeCommune": "11338", + "libelleAcheminement": "ST COUAT DU RAZES", + "nomCommune": "ST COUAT DU RAZES" }, { - "codePostal": "15700", - "codeCommune": "15153", - "libelleAcheminement": "PLEAUX", - "nomCommune": "PLEAUX" + "codePostal": "24470", + "codeCommune": "24101", + "libelleAcheminement": "CHAMPS ROMAIN", + "nomCommune": "CHAMPS ROMAIN" }, { - "codePostal": "17770", - "codeCommune": "17070", - "libelleAcheminement": "BRIZAMBOURG", - "nomCommune": "BRIZAMBOURG" + "codePostal": "24250", + "codeCommune": "24207", + "libelleAcheminement": "GROLEJAC", + "nomCommune": "GROLEJAC" }, { - "codePostal": "56890", - "codeCommune": "56158", - "libelleAcheminement": "PLESCOP", - "nomCommune": "PLESCOP" + "codePostal": "10190", + "codeCommune": "10237", + "libelleAcheminement": "MESNIL ST LOUP", + "nomCommune": "MESNIL ST LOUP" }, { - "codePostal": "51240", - "codeCommune": "51415", - "libelleAcheminement": "OMEY", - "nomCommune": "OMEY" + "codePostal": "11310", + "codeCommune": "11339", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "15130", - "codeCommune": "15156", - "libelleAcheminement": "PRUNET", - "nomCommune": "PRUNET" + "codePostal": "24320", + "codeCommune": "24105", + "libelleAcheminement": "CHAPDEUIL", + "nomCommune": "CHAPDEUIL" }, { - "codePostal": "17160", - "codeCommune": "17071", - "libelleAcheminement": "LA BROUSSE", - "nomCommune": "LA BROUSSE" + "codePostal": "24590", + "codeCommune": "24215", + "libelleAcheminement": "JAYAC", + "nomCommune": "JAYAC" }, { - "codePostal": "56120", - "codeCommune": "56160", - "libelleAcheminement": "PLEUGRIFFET", - "nomCommune": "PLEUGRIFFET" + "codePostal": "10140", + "codeCommune": "10238", + "libelleAcheminement": "MESNIL ST PERE", + "nomCommune": "MESNIL ST PERE" }, { - "codePostal": "51300", - "codeCommune": "51420", - "libelleAcheminement": "OUTREPONT", - "nomCommune": "OUTREPONT" + "codePostal": "11500", + "codeCommune": "11341", + "libelleAcheminement": "ST FERRIOL", + "nomCommune": "ST FERRIOL" }, { - "codePostal": "15800", - "codeCommune": "15159", - "libelleAcheminement": "RAULHAC", - "nomCommune": "RAULHAC" + "codePostal": "24320", + "codeCommune": "24109", + "libelleAcheminement": "LA CHAPELLE GRESIGNAC", + "nomCommune": "LA CHAPELLE GRESIGNAC" }, { - "codePostal": "17770", - "codeCommune": "17072", - "libelleAcheminement": "BURIE", - "nomCommune": "BURIE" + "codePostal": "24340", + "codeCommune": "24221", + "libelleAcheminement": "RUDEAU LADOSSE", + "nomCommune": "RUDEAU LADOSSE" }, { - "codePostal": "56880", - "codeCommune": "56164", - "libelleAcheminement": "PLOEREN", - "nomCommune": "PLOEREN" + "codePostal": "10200", + "codeCommune": "10242", + "libelleAcheminement": "MEURVILLE", + "nomCommune": "MEURVILLE" }, { - "codePostal": "51390", - "codeCommune": "51422", - "libelleAcheminement": "PARGNY LES REIMS", - "nomCommune": "PARGNY LES REIMS" + "codePostal": "11800", + "codeCommune": "11342", + "libelleAcheminement": "ST FRICHOUX", + "nomCommune": "ST FRICHOUX" }, { - "codePostal": "15100", - "codeCommune": "15164", - "libelleAcheminement": "ROFFIAC", - "nomCommune": "ROFFIAC" + "codePostal": "24300", + "codeCommune": "24111", + "libelleAcheminement": "LA CHAPELLE MONTMOREAU", + "nomCommune": "LA CHAPELLE MONTMOREAU" }, { - "codePostal": "17520", - "codeCommune": "17076", - "libelleAcheminement": "CELLES", - "nomCommune": "CELLES" + "codePostal": "24270", + "codeCommune": "24227", + "libelleAcheminement": "LANOUAILLE", + "nomCommune": "LANOUAILLE" }, { - "codePostal": "56420", - "codeCommune": "56172", - "libelleAcheminement": "PLUMELEC", - "nomCommune": "PLUMELEC" + "codePostal": "10130", + "codeCommune": "10251", + "libelleAcheminement": "MONTIGNY LES MONTS", + "nomCommune": "MONTIGNY LES MONTS" }, { - "codePostal": "51530", - "codeCommune": "51431", - "libelleAcheminement": "PIERRY", - "nomCommune": "PIERRY" + "codePostal": "11220", + "codeCommune": "11351", + "libelleAcheminement": "ST LAURENT DE LA CABRERISSE", + "nomCommune": "ST LAURENT DE LA CABRERISSE" }, { - "codePostal": "15290", - "codeCommune": "15166", - "libelleAcheminement": "ROUMEGOUX", - "nomCommune": "ROUMEGOUX" + "codePostal": "24320", + "codeCommune": "24119", + "libelleAcheminement": "CHERVAL", + "nomCommune": "CHERVAL" }, { - "codePostal": "17290", - "codeCommune": "17080", - "libelleAcheminement": "CHAMBON", - "nomCommune": "CHAMBON" + "codePostal": "24540", + "codeCommune": "24231", + "libelleAcheminement": "LAVALADE", + "nomCommune": "LAVALADE" }, { - "codePostal": "56330", - "codeCommune": "56177", - "libelleAcheminement": "PLUVIGNER", - "nomCommune": "PLUVIGNER" + "codePostal": "10420", + "codeCommune": "10265", + "libelleAcheminement": "LES NOES PRES TROYES", + "nomCommune": "LES NOES PRES TROYES" }, { - "codePostal": "51230", - "codeCommune": "51432", - "libelleAcheminement": "PLEURS", - "nomCommune": "PLEURS" + "codePostal": "11500", + "codeCommune": "11352", + "libelleAcheminement": "ST LOUIS ET PARAHOU", + "nomCommune": "ST LOUIS ET PARAHOU" }, { - "codePostal": "15240", - "codeCommune": "15169", - "libelleAcheminement": "SAIGNES", - "nomCommune": "SAIGNES" + "codePostal": "24560", + "codeCommune": "24126", + "libelleAcheminement": "COLOMBIER", + "nomCommune": "COLOMBIER" }, { - "codePostal": "17500", - "codeCommune": "17082", - "libelleAcheminement": "CHAMPAGNAC", - "nomCommune": "CHAMPAGNAC" + "codePostal": "24550", + "codeCommune": "24232", + "libelleAcheminement": "LAVAUR", + "nomCommune": "LAVAUR" }, { - "codePostal": "56320", - "codeCommune": "56182", - "libelleAcheminement": "PRIZIAC", - "nomCommune": "PRIZIAC" + "codePostal": "10240", + "codeCommune": "10267", + "libelleAcheminement": "NOGENT SUR AUBE", + "nomCommune": "NOGENT SUR AUBE" }, { - "codePostal": "51300", - "codeCommune": "51433", - "libelleAcheminement": "PLICHANCOURT", - "nomCommune": "PLICHANCOURT" + "codePostal": "11400", + "codeCommune": "11356", + "libelleAcheminement": "ST MARTIN LALANDE", + "nomCommune": "ST MARTIN LALANDE" }, { - "codePostal": "15190", - "codeCommune": "15173", - "libelleAcheminement": "ST BONNET DE CONDAT", - "nomCommune": "ST BONNET DE CONDAT" + "codePostal": "24600", + "codeCommune": "24128", + "libelleAcheminement": "COMBERANCHE ET EPELUCHE", + "nomCommune": "COMBERANCHE ET EPELUCHE" }, { - "codePostal": "17100", - "codeCommune": "17089", - "libelleAcheminement": "LA CHAPELLE DES POTS", - "nomCommune": "LA CHAPELLE DES POTS" + "codePostal": "24800", + "codeCommune": "24238", + "libelleAcheminement": "LEMPZOURS", + "nomCommune": "LEMPZOURS" }, { - "codePostal": "56530", - "codeCommune": "56185", - "libelleAcheminement": "QUEVEN", - "nomCommune": "QUEVEN" + "codePostal": "10400", + "codeCommune": "10268", + "libelleAcheminement": "NOGENT SUR SEINE", + "nomCommune": "NOGENT SUR SEINE" }, { - "codePostal": "51150", - "codeCommune": "51434", - "libelleAcheminement": "PLIVOT", - "nomCommune": "PLIVOT" + "codePostal": "11410", + "codeCommune": "11359", + "libelleAcheminement": "ST MICHEL DE LANES", + "nomCommune": "ST MICHEL DE LANES" }, { - "codePostal": "15140", - "codeCommune": "15179", - "libelleAcheminement": "ST CIRGUES DE MALBERT", - "nomCommune": "ST CIRGUES DE MALBERT" + "codePostal": "24520", + "codeCommune": "24140", + "libelleAcheminement": "COURS DE PILE", + "nomCommune": "COURS DE PILE" }, { - "codePostal": "17230", - "codeCommune": "17091", - "libelleAcheminement": "CHARRON", - "nomCommune": "CHARRON" + "codePostal": "24130", + "codeCommune": "24246", + "libelleAcheminement": "LUNAS", + "nomCommune": "LUNAS" }, { - "codePostal": "56460", - "codeCommune": "56197", - "libelleAcheminement": "VAL D OUST", - "nomCommune": "VAL D OUST" + "codePostal": "10170", + "codeCommune": "10274", + "libelleAcheminement": "ORVILLIERS ST JULIEN", + "nomCommune": "ORVILLIERS ST JULIEN" }, { - "codePostal": "51300", - "codeCommune": "51446", - "libelleAcheminement": "PRINGY", - "nomCommune": "PRINGY" + "codePostal": "11400", + "codeCommune": "11361", + "libelleAcheminement": "ST PAPOUL", + "nomCommune": "ST PAPOUL" }, { - "codePostal": "15800", - "codeCommune": "15180", - "libelleAcheminement": "ST CLEMENT", - "nomCommune": "ST CLEMENT" + "codePostal": "24100", + "codeCommune": "24145", + "libelleAcheminement": "CREYSSE", + "nomCommune": "CREYSSE" }, { - "codePostal": "17520", - "codeCommune": "17106", - "libelleAcheminement": "CIERZAC", - "nomCommune": "CIERZAC" + "codePostal": "24320", + "codeCommune": "24247", + "libelleAcheminement": "LUSIGNAC", + "nomCommune": "LUSIGNAC" }, { - "codePostal": "56140", - "codeCommune": "56202", - "libelleAcheminement": "ST ABRAHAM", - "nomCommune": "ST ABRAHAM" + "codePostal": "10500", + "codeCommune": "10285", + "libelleAcheminement": "PERTHES LES BRIENNE", + "nomCommune": "PERTHES LES BRIENNE" }, { - "codePostal": "51100", - "codeCommune": "51454", - "libelleAcheminement": "REIMS", - "nomCommune": "REIMS" + "codePostal": "11420", + "codeCommune": "11365", + "libelleAcheminement": "ST SERNIN", + "nomCommune": "ST SERNIN" }, { - "codePostal": "15150", - "codeCommune": "15182", - "libelleAcheminement": "ST ETIENNE CANTALES", - "nomCommune": "ST ETIENNE CANTALES" + "codePostal": "24350", + "codeCommune": "24154", + "libelleAcheminement": "DOUCHAPT", + "nomCommune": "DOUCHAPT" }, { - "codePostal": "17330", - "codeCommune": "17114", - "libelleAcheminement": "COIVERT", - "nomCommune": "COIVERT" + "codePostal": "24200", + "codeCommune": "24252", + "libelleAcheminement": "MARCILLAC ST QUENTIN", + "nomCommune": "MARCILLAC ST QUENTIN" }, { - "codePostal": "56430", - "codeCommune": "56208", - "libelleAcheminement": "ST BRIEUC DE MAURON", - "nomCommune": "ST BRIEUC DE MAURON" + "codePostal": "10110", + "codeCommune": "10295", + "libelleAcheminement": "POLISOT", + "nomCommune": "POLISOT" }, { - "codePostal": "51480", - "codeCommune": "51457", - "libelleAcheminement": "REUIL", - "nomCommune": "REUIL" + "codePostal": "11590", + "codeCommune": "11369", + "libelleAcheminement": "SALLELES D AUDE", + "nomCommune": "SALLELES D AUDE" }, { - "codePostal": "15400", - "codeCommune": "15185", - "libelleAcheminement": "ST ETIENNE DE CHOMEIL", - "nomCommune": "ST ETIENNE DE CHOMEIL" + "codePostal": "24380", + "codeCommune": "24160", + "libelleAcheminement": "EGLISE NEUVE DE VERGT", + "nomCommune": "EGLISE NEUVE DE VERGT" }, { - "codePostal": "17600", - "codeCommune": "17120", - "libelleAcheminement": "CORME ROYAL", - "nomCommune": "CORME ROYAL" + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { - "codePostal": "56480", - "codeCommune": "56209", - "libelleAcheminement": "STE BRIGITTE", - "nomCommune": "STE BRIGITTE" + "codePostal": "10240", + "codeCommune": "10300", + "libelleAcheminement": "POUGY", + "nomCommune": "POUGY" }, { - "codePostal": "51140", - "codeCommune": "51464", - "libelleAcheminement": "ROMAIN", - "nomCommune": "ROMAIN" + "codePostal": "11110", + "codeCommune": "11370", + "libelleAcheminement": "SALLES D AUDE", + "nomCommune": "SALLES D AUDE" }, { - "codePostal": "15230", - "codeCommune": "15198", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "24700", + "codeCommune": "24165", + "libelleAcheminement": "EYGURANDE ET GARDEDEUIL", + "nomCommune": "EYGURANDE ET GARDEDEUIL" }, { - "codePostal": "17670", - "codeCommune": "17121", - "libelleAcheminement": "LA COUARDE SUR MER", - "nomCommune": "LA COUARDE SUR MER" + "codePostal": "24150", + "codeCommune": "24260", + "libelleAcheminement": "MAUZAC ET GRAND CASTANG", + "nomCommune": "MAUZAC ET GRAND CASTANG" }, { - "codePostal": "56920", - "codeCommune": "56215", - "libelleAcheminement": "ST GONNERY", - "nomCommune": "ST GONNERY" + "codePostal": "10170", + "codeCommune": "10305", + "libelleAcheminement": "PREMIERFAIT", + "nomCommune": "PREMIERFAIT" }, { - "codePostal": "51800", - "codeCommune": "51470", - "libelleAcheminement": "ROUVROY RIPONT", - "nomCommune": "ROUVROY RIPONT" + "codePostal": "11410", + "codeCommune": "11371", + "libelleAcheminement": "SALLES SUR L HERS", + "nomCommune": "SALLES SUR L HERS" }, { - "codePostal": "15250", - "codeCommune": "15204", - "libelleAcheminement": "ST PAUL DES LANDES", - "nomCommune": "ST PAUL DES LANDES" + "codePostal": "24260", + "codeCommune": "24172", + "libelleAcheminement": "LES EYZIES", + "nomCommune": "LES EYZIES" }, { - "codePostal": "17220", - "codeCommune": "17136", - "libelleAcheminement": "CROIX CHAPEAU", - "nomCommune": "CROIX CHAPEAU" + "codePostal": "24550", + "codeCommune": "24263", + "libelleAcheminement": "MAZEYROLLES", + "nomCommune": "MAZEYROLLES" }, { - "codePostal": "56220", - "codeCommune": "56218", - "libelleAcheminement": "ST GRAVE", - "nomCommune": "ST GRAVE" + "codePostal": "10200", + "codeCommune": "10306", + "libelleAcheminement": "PROVERVILLE", + "nomCommune": "PROVERVILLE" }, { - "codePostal": "51110", - "codeCommune": "51477", - "libelleAcheminement": "ST ETIENNE SUR SUIPPE", - "nomCommune": "ST ETIENNE SUR SUIPPE" + "codePostal": "11220", + "codeCommune": "11387", + "libelleAcheminement": "TAURIZE", + "nomCommune": "TAURIZE" }, { - "codePostal": "15380", - "codeCommune": "15218", - "libelleAcheminement": "ST VINCENT DE SALERS", - "nomCommune": "ST VINCENT DE SALERS" + "codePostal": "24620", + "codeCommune": "24172", + "libelleAcheminement": "LES EYZIES", + "nomCommune": "LES EYZIES" }, { - "codePostal": "17610", - "codeCommune": "17141", - "libelleAcheminement": "DOMPIERRE SUR CHARENTE", - "nomCommune": "DOMPIERRE SUR CHARENTE" + "codePostal": "24700", + "codeCommune": "24264", + "libelleAcheminement": "MENESPLET", + "nomCommune": "MENESPLET" }, { - "codePostal": "56220", - "codeCommune": "56221", - "libelleAcheminement": "ST JACUT LES PINS", - "nomCommune": "ST JACUT LES PINS" + "codePostal": "10240", + "codeCommune": "10314", + "libelleAcheminement": "RAMERUPT", + "nomCommune": "RAMERUPT" }, { - "codePostal": "51390", - "codeCommune": "51479", - "libelleAcheminement": "ST EUPHRAISE ET CLAIRIZET", - "nomCommune": "ST EUPHRAISE ET CLAIRIZET" + "codePostal": "11380", + "codeCommune": "11391", + "libelleAcheminement": "LA TOURETTE CABARDES", + "nomCommune": "LA TOURETTE CABARDES" }, { - "codePostal": "15120", - "codeCommune": "15222", - "libelleAcheminement": "SANSAC VEINAZES", - "nomCommune": "SANSAC VEINAZES" + "codePostal": "24290", + "codeCommune": "24174", + "libelleAcheminement": "FANLAC", + "nomCommune": "FANLAC" }, { - "codePostal": "17770", - "codeCommune": "17147", - "libelleAcheminement": "ECOYEUX", - "nomCommune": "ECOYEUX" + "codePostal": "24220", + "codeCommune": "24268", + "libelleAcheminement": "MEYRALS", + "nomCommune": "MEYRALS" }, { - "codePostal": "56660", - "codeCommune": "56222", - "libelleAcheminement": "ST JEAN BREVELAY", - "nomCommune": "ST JEAN BREVELAY" + "codePostal": "10170", + "codeCommune": "10316", + "libelleAcheminement": "RHEGES", + "nomCommune": "RHEGES" }, { - "codePostal": "51170", - "codeCommune": "51484", - "libelleAcheminement": "ST GILLES", - "nomCommune": "ST GILLES" + "codePostal": "11220", + "codeCommune": "11392", + "libelleAcheminement": "TOURNISSAN", + "nomCommune": "TOURNISSAN" }, { - "codePostal": "15240", - "codeCommune": "15223", - "libelleAcheminement": "SAUVAT", - "nomCommune": "SAUVAT" + "codePostal": "24130", + "codeCommune": "24182", + "libelleAcheminement": "LE FLEIX", + "nomCommune": "LE FLEIX" }, { - "codePostal": "17120", - "codeCommune": "17160", - "libelleAcheminement": "FLOIRAC", - "nomCommune": "FLOIRAC" + "codePostal": "24440", + "codeCommune": "24281", + "libelleAcheminement": "MONSAC", + "nomCommune": "MONSAC" }, { - "codePostal": "56250", - "codeCommune": "56255", - "libelleAcheminement": "TREFFLEAN", - "nomCommune": "TREFFLEAN" + "codePostal": "10290", + "codeCommune": "10318", + "libelleAcheminement": "RIGNY LA NONNEUSE", + "nomCommune": "RIGNY LA NONNEUSE" }, { - "codePostal": "51120", - "codeCommune": "51495", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "11160", + "codeCommune": "11395", + "libelleAcheminement": "TRASSANEL", + "nomCommune": "TRASSANEL" }, { - "codePostal": "15340", - "codeCommune": "15226", - "libelleAcheminement": "SENEZERGUES", - "nomCommune": "SENEZERGUES" + "codePostal": "24680", + "codeCommune": "24194", + "libelleAcheminement": "GARDONNE", + "nomCommune": "GARDONNE" }, { - "codePostal": "17630", - "codeCommune": "17161", - "libelleAcheminement": "LA FLOTTE", - "nomCommune": "LA FLOTTE" + "codePostal": "24560", + "codeCommune": "24282", + "libelleAcheminement": "MONSAGUEL", + "nomCommune": "MONSAGUEL" }, { - "codePostal": "56000", - "codeCommune": "56260", - "libelleAcheminement": "VANNES", - "nomCommune": "VANNES" + "codePostal": "10440", + "codeCommune": "10321", + "libelleAcheminement": "LA RIVIERE DE CORPS", + "nomCommune": "LA RIVIERE DE CORPS" }, { - "codePostal": "51300", - "codeCommune": "51496", - "libelleAcheminement": "ST LUMIER EN CHAMPAGNE", - "nomCommune": "ST LUMIER EN CHAMPAGNE" + "codePostal": "11160", + "codeCommune": "11396", + "libelleAcheminement": "TRAUSSE", + "nomCommune": "TRAUSSE" }, { - "codePostal": "15250", - "codeCommune": "15233", - "libelleAcheminement": "TEISSIERES DE CORNET", - "nomCommune": "TEISSIERES DE CORNET" + "codePostal": "24380", + "codeCommune": "24208", + "libelleAcheminement": "GRUN BORDAS", + "nomCommune": "GRUN BORDAS" }, { - "codePostal": "17500", - "codeCommune": "17163", - "libelleAcheminement": "FONTAINES D OZILLAC", - "nomCommune": "FONTAINES D OZILLAC" + "codePostal": "24210", + "codeCommune": "24284", + "libelleAcheminement": "MONTAGNAC D AUBEROCHE", + "nomCommune": "MONTAGNAC D AUBEROCHE" }, { - "codePostal": "57412", - "codeCommune": "57006", - "libelleAcheminement": "ACHEN", - "nomCommune": "ACHEN" + "codePostal": "10500", + "codeCommune": "10327", + "libelleAcheminement": "LA ROTHIERE", + "nomCommune": "LA ROTHIERE" }, { - "codePostal": "51340", - "codeCommune": "51497", - "libelleAcheminement": "ST LUMIER LA POPULEUSE", - "nomCommune": "ST LUMIER LA POPULEUSE" + "codePostal": "11510", + "codeCommune": "11398", + "libelleAcheminement": "TREILLES", + "nomCommune": "TREILLES" }, { - "codePostal": "15800", - "codeCommune": "15236", - "libelleAcheminement": "THIEZAC", - "nomCommune": "THIEZAC" + "codePostal": "24140", + "codeCommune": "24213", + "libelleAcheminement": "JAURE", + "nomCommune": "JAURE" }, { - "codePostal": "17450", - "codeCommune": "17168", - "libelleAcheminement": "FOURAS", - "nomCommune": "FOURAS" + "codePostal": "24440", + "codeCommune": "24290", + "libelleAcheminement": "MONTFERRAND DU PERIGORD", + "nomCommune": "MONTFERRAND DU PERIGORD" }, { - "codePostal": "57440", - "codeCommune": "57012", - "libelleAcheminement": "ALGRANGE", - "nomCommune": "ALGRANGE" + "codePostal": "10220", + "codeCommune": "10328", + "libelleAcheminement": "ROUILLY SACEY", + "nomCommune": "ROUILLY SACEY" }, { - "codePostal": "51330", - "codeCommune": "51500", - "libelleAcheminement": "ST MARD SUR LE MONT", - "nomCommune": "ST MARD SUR LE MONT" + "codePostal": "11230", + "codeCommune": "11400", + "libelleAcheminement": "TREZIERS", + "nomCommune": "TREZIERS" }, { - "codePostal": "15400", - "codeCommune": "15246", - "libelleAcheminement": "VALETTE", - "nomCommune": "VALETTE" + "codePostal": "24300", + "codeCommune": "24214", + "libelleAcheminement": "JAVERLHAC LA CHAPELLE ST ROBERT", + "nomCommune": "JAVERLHAC ET LA CHAPELLE ST ROBERT" }, { - "codePostal": "17260", - "codeCommune": "17178", - "libelleAcheminement": "GIVREZAC", - "nomCommune": "GIVREZAC" + "codePostal": "24610", + "codeCommune": "24292", + "libelleAcheminement": "MONTPEYROUX", + "nomCommune": "MONTPEYROUX" }, { - "codePostal": "57660", - "codeCommune": "57014", - "libelleAcheminement": "ALTRIPPE", - "nomCommune": "ALTRIPPE" + "codePostal": "10350", + "codeCommune": "10339", + "libelleAcheminement": "ST FLAVY", + "nomCommune": "ST FLAVY" }, { - "codePostal": "51490", - "codeCommune": "51505", - "libelleAcheminement": "ST MASMES", - "nomCommune": "ST MASMES" + "codePostal": "11400", + "codeCommune": "11407", + "libelleAcheminement": "VERDUN EN LAURAGAIS", + "nomCommune": "VERDUN EN LAURAGAIS" }, { - "codePostal": "15160", - "codeCommune": "15253", - "libelleAcheminement": "VERNOLS", - "nomCommune": "VERNOLS" + "codePostal": "24410", + "codeCommune": "24216", + "libelleAcheminement": "LA JEMAYE PONTEYRAUD", + "nomCommune": "LA JEMAYE PONTEYRAUD" }, { - "codePostal": "17490", - "codeCommune": "17180", - "libelleAcheminement": "GOURVILLETTE", - "nomCommune": "GOURVILLETTE" + "codePostal": "24700", + "codeCommune": "24297", + "libelleAcheminement": "MOULIN NEUF", + "nomCommune": "MOULIN NEUF" }, { - "codePostal": "57730", - "codeCommune": "57015", - "libelleAcheminement": "ALTVILLER", - "nomCommune": "ALTVILLER" + "codePostal": "10120", + "codeCommune": "10340", + "libelleAcheminement": "ST GERMAIN", + "nomCommune": "ST GERMAIN" }, { - "codePostal": "51800", - "codeCommune": "51519", - "libelleAcheminement": "ST THOMAS EN ARGONNE", - "nomCommune": "ST THOMAS EN ARGONNE" + "codePostal": "11800", + "codeCommune": "11422", + "libelleAcheminement": "VILLEDUBERT", + "nomCommune": "VILLEDUBERT" }, { - "codePostal": "15130", - "codeCommune": "15257", - "libelleAcheminement": "VEZELS ROUSSY", - "nomCommune": "VEZELS ROUSSY" + "codePostal": "24410", + "codeCommune": "24216", + "libelleAcheminement": "LA JEMAYE PONTEYRAUD", + "nomCommune": "LA JEMAYE PONTEYRAUD" }, { - "codePostal": "17350", - "codeCommune": "17181", - "libelleAcheminement": "GRANDJEAN", - "nomCommune": "GRANDJEAN" + "codePostal": "24590", + "codeCommune": "24301", + "libelleAcheminement": "NADAILLAC", + "nomCommune": "NADAILLAC" }, { - "codePostal": "57580", - "codeCommune": "57020", - "libelleAcheminement": "ANCERVILLE", - "nomCommune": "ANCERVILLE" + "codePostal": "10120", + "codeCommune": "10340", + "libelleAcheminement": "ST GERMAIN", + "nomCommune": "ST GERMAIN" }, { - "codePostal": "51170", - "codeCommune": "51527", - "libelleAcheminement": "SAVIGNY SUR ARDRES", - "nomCommune": "SAVIGNY SUR ARDRES" + "codePostal": "11600", + "codeCommune": "11426", + "libelleAcheminement": "VILLEGLY", + "nomCommune": "VILLEGLY" }, { - "codePostal": "15140", - "codeCommune": "15269", - "libelleAcheminement": "BESSE", - "nomCommune": "BESSE" + "codePostal": "24680", + "codeCommune": "24225", + "libelleAcheminement": "LAMONZIE ST MARTIN", + "nomCommune": "LAMONZIE ST MARTIN" }, { - "codePostal": "17540", - "codeCommune": "17186", - "libelleAcheminement": "LE GUE D ALLERE", - "nomCommune": "LE GUE D ALLERE" + "codePostal": "24320", + "codeCommune": "24303", + "libelleAcheminement": "NANTEUIL AURIAC DE BOURZAC", + "nomCommune": "NANTEUIL AURIAC DE BOURZAC" }, { - "codePostal": "57130", - "codeCommune": "57021", - "libelleAcheminement": "ANCY DORNOT", - "nomCommune": "ANCY DORNOT" + "codePostal": "10800", + "codeCommune": "10344", + "libelleAcheminement": "ST LEGER PRES TROYES", + "nomCommune": "ST LEGER PRES TROYES" }, { - "codePostal": "51250", - "codeCommune": "51531", - "libelleAcheminement": "SERMAIZE LES BAINS", - "nomCommune": "SERMAIZE LES BAINS" + "codePostal": "11400", + "codeCommune": "11430", + "libelleAcheminement": "VILLENEUVE LA COMPTAL", + "nomCommune": "VILLENEUVE LA COMPTAL" }, { - "codePostal": "16110", - "codeCommune": "16003", - "libelleAcheminement": "AGRIS", - "nomCommune": "AGRIS" + "codePostal": "24150", + "codeCommune": "24228", + "libelleAcheminement": "LANQUAIS", + "nomCommune": "LANQUAIS" }, { - "codePostal": "17160", - "codeCommune": "17188", - "libelleAcheminement": "HAIMPS", - "nomCommune": "HAIMPS" + "codePostal": "24800", + "codeCommune": "24305", + "libelleAcheminement": "NANTHIAT", + "nomCommune": "NANTHIAT" }, { - "codePostal": "57440", - "codeCommune": "57022", - "libelleAcheminement": "ANGEVILLERS", - "nomCommune": "ANGEVILLERS" + "codePostal": "10180", + "codeCommune": "10349", + "libelleAcheminement": "ST LYE", + "nomCommune": "ST LYE" }, { - "codePostal": "51500", - "codeCommune": "51532", - "libelleAcheminement": "SERMIERS", - "nomCommune": "SERMIERS" + "codePostal": "11290", + "codeCommune": "11432", + "libelleAcheminement": "VILLENEUVE LES MONTREAL", + "nomCommune": "VILLENEUVE LES MONTREAL" }, { - "codePostal": "16140", - "codeCommune": "16008", - "libelleAcheminement": "AMBERAC", - "nomCommune": "AMBERAC" + "codePostal": "24210", + "codeCommune": "24241", + "libelleAcheminement": "LIMEYRAT", + "nomCommune": "LIMEYRAT" }, { - "codePostal": "17460", - "codeCommune": "17191", - "libelleAcheminement": "LA JARD", - "nomCommune": "LA JARD" + "codePostal": "24230", + "codeCommune": "24306", + "libelleAcheminement": "NASTRINGUES", + "nomCommune": "NASTRINGUES" }, { - "codePostal": "57380", - "codeCommune": "57027", - "libelleAcheminement": "ARRAINCOURT", - "nomCommune": "ARRAINCOURT" + "codePostal": "10160", + "codeCommune": "10350", + "libelleAcheminement": "ST MARDS EN OTHE", + "nomCommune": "ST MARDS EN OTHE" }, { - "codePostal": "51120", - "codeCommune": "51542", - "libelleAcheminement": "SOIZY AUX BOIS", - "nomCommune": "SOIZY AUX BOIS" + "codePostal": "11330", + "codeCommune": "11435", + "libelleAcheminement": "VILLEROUGE TERMENES", + "nomCommune": "VILLEROUGE TERMENES" }, { - "codePostal": "16120", - "codeCommune": "16013", - "libelleAcheminement": "ANGEAC CHARENTE", - "nomCommune": "ANGEAC CHARENTE" + "codePostal": "24220", + "codeCommune": "24254", + "libelleAcheminement": "MARNAC", + "nomCommune": "MARNAC" }, { - "codePostal": "17220", - "codeCommune": "17194", - "libelleAcheminement": "LA JARRIE", - "nomCommune": "LA JARRIE" + "codePostal": "24660", + "codeCommune": "24312", + "libelleAcheminement": "SANILHAC", + "nomCommune": "SANILHAC" }, { - "codePostal": "57405", - "codeCommune": "57033", - "libelleAcheminement": "ARZVILLER", - "nomCommune": "ARZVILLER" + "codePostal": "10100", + "codeCommune": "10351", + "libelleAcheminement": "ST MARTIN DE BOSSENAY", + "nomCommune": "ST MARTIN DE BOSSENAY" }, { - "codePostal": "51270", - "codeCommune": "51560", - "libelleAcheminement": "SUIZY LE FRANC", - "nomCommune": "SUIZY LE FRANC" + "codePostal": "12520", + "codeCommune": "12002", + "libelleAcheminement": "AGUESSAC", + "nomCommune": "AGUESSAC" }, { - "codePostal": "16000", - "codeCommune": "16015", - "libelleAcheminement": "ANGOULEME", - "nomCommune": "ANGOULEME" + "codePostal": "24620", + "codeCommune": "24255", + "libelleAcheminement": "MARQUAY", + "nomCommune": "MARQUAY" }, { - "codePostal": "17870", - "codeCommune": "17205", - "libelleAcheminement": "LOIRE LES MARAIS", - "nomCommune": "LOIRE LES MARAIS" + "codePostal": "24370", + "codeCommune": "24325", + "libelleAcheminement": "PECHS DE L ESPERANCE", + "nomCommune": "PECHS DE L ESPERANCE" }, { - "codePostal": "57260", - "codeCommune": "57035", - "libelleAcheminement": "ASSENONCOURT", - "nomCommune": "ASSENONCOURT" + "codePostal": "10150", + "codeCommune": "10352", + "libelleAcheminement": "STE MAURE", + "nomCommune": "STE MAURE" }, { - "codePostal": "51500", - "codeCommune": "51562", - "libelleAcheminement": "TAISSY", - "nomCommune": "TAISSY" + "codePostal": "12220", + "codeCommune": "12003", + "libelleAcheminement": "LES ALBRES", + "nomCommune": "LES ALBRES" }, { - "codePostal": "16500", - "codeCommune": "16016", - "libelleAcheminement": "ANSAC SUR VIENNE", - "nomCommune": "ANSAC SUR VIENNE" + "codePostal": "24150", + "codeCommune": "24260", + "libelleAcheminement": "MAUZAC ET GRAND CASTANG", + "nomCommune": "MAUZAC ET GRAND CASTANG" }, { - "codePostal": "17111", - "codeCommune": "17207", - "libelleAcheminement": "LOIX", - "nomCommune": "LOIX" + "codePostal": "24510", + "codeCommune": "24327", + "libelleAcheminement": "PEZULS", + "nomCommune": "PEZULS" }, { - "codePostal": "57230", - "codeCommune": "57046", - "libelleAcheminement": "BAERENTHAL", - "nomCommune": "BAERENTHAL" + "codePostal": "10170", + "codeCommune": "10356", + "libelleAcheminement": "ST OULPH", + "nomCommune": "ST OULPH" }, { - "codePostal": "51150", - "codeCommune": "51564", - "libelleAcheminement": "VAL DE LIVRE", - "nomCommune": "VAL DE LIVRE" + "codePostal": "12110", + "codeCommune": "12013", + "libelleAcheminement": "AUBIN", + "nomCommune": "AUBIN" }, { - "codePostal": "16390", - "codeCommune": "16020", - "libelleAcheminement": "AUBETERRE SUR DRONNE", - "nomCommune": "AUBETERRE SUR DRONNE" + "codePostal": "24450", + "codeCommune": "24269", + "libelleAcheminement": "MIALET", + "nomCommune": "MIALET" }, { - "codePostal": "17430", - "codeCommune": "17216", - "libelleAcheminement": "LUSSANT", - "nomCommune": "LUSSANT" + "codePostal": "24150", + "codeCommune": "24334", + "libelleAcheminement": "PONTOURS", + "nomCommune": "PONTOURS" }, { - "codePostal": "57220", - "codeCommune": "57048", - "libelleAcheminement": "BANNAY", - "nomCommune": "BANNAY" + "codePostal": "10700", + "codeCommune": "10361", + "libelleAcheminement": "ST REMY SOUS BARBUISE", + "nomCommune": "ST REMY SOUS BARBUISE" }, { - "codePostal": "51230", - "codeCommune": "51565", - "libelleAcheminement": "THAAS", - "nomCommune": "THAAS" + "codePostal": "12550", + "codeCommune": "12023", + "libelleAcheminement": "LA BASTIDE SOLAGES", + "nomCommune": "LA BASTIDE SOLAGES" }, { - "codePostal": "16460", - "codeCommune": "16023", - "libelleAcheminement": "AUNAC SUR CHARENTE", - "nomCommune": "AUNAC SUR CHARENTE" + "codePostal": "24470", + "codeCommune": "24271", + "libelleAcheminement": "MILHAC DE NONTRON", + "nomCommune": "MILHAC DE NONTRON" }, { - "codePostal": "17490", - "codeCommune": "17217", - "libelleAcheminement": "MACQUEVILLE", - "nomCommune": "MACQUEVILLE" + "codePostal": "24370", + "codeCommune": "24336", + "libelleAcheminement": "PRATS DE CARLUX", + "nomCommune": "PRATS DE CARLUX" }, { - "codePostal": "57340", - "codeCommune": "57051", - "libelleAcheminement": "BARONVILLE", - "nomCommune": "BARONVILLE" + "codePostal": "10700", + "codeCommune": "10365", + "libelleAcheminement": "SALON", + "nomCommune": "SALON" }, { - "codePostal": "51300", - "codeCommune": "51567", - "libelleAcheminement": "THIEBLEMONT FAREMONT", - "nomCommune": "THIEBLEMONT FAREMONT" + "codePostal": "12350", + "codeCommune": "12034", + "libelleAcheminement": "BRANDONNET", + "nomCommune": "BRANDONNET" }, { - "codePostal": "16360", - "codeCommune": "16025", - "libelleAcheminement": "BAIGNES STE RADEGONDE", - "nomCommune": "BAIGNES STE RADEGONDE" + "codePostal": "24240", + "codeCommune": "24276", + "libelleAcheminement": "MONESTIER", + "nomCommune": "MONESTIER" }, { - "codePostal": "17800", - "codeCommune": "17220", - "libelleAcheminement": "MARIGNAC", - "nomCommune": "MARIGNAC" + "codePostal": "24200", + "codeCommune": "24341", + "libelleAcheminement": "PROISSANS", + "nomCommune": "PROISSANS" }, { - "codePostal": "57450", - "codeCommune": "57052", - "libelleAcheminement": "BARST", - "nomCommune": "BARST" + "codePostal": "10700", + "codeCommune": "10369", + "libelleAcheminement": "SEMOINE", + "nomCommune": "SEMOINE" }, { - "codePostal": "51370", - "codeCommune": "51569", - "libelleAcheminement": "THILLOIS", - "nomCommune": "THILLOIS" + "codePostal": "12480", + "codeCommune": "12038", + "libelleAcheminement": "BROUSSE LE CHATEAU", + "nomCommune": "BROUSSE LE CHATEAU" }, { - "codePostal": "16300", - "codeCommune": "16028", - "libelleAcheminement": "BARBEZIEUX ST HILAIRE", - "nomCommune": "BARBEZIEUX ST HILAIRE" + "codePostal": "24520", + "codeCommune": "24296", + "libelleAcheminement": "MOULEYDIER", + "nomCommune": "MOULEYDIER" }, { - "codePostal": "17130", - "codeCommune": "17231", - "libelleAcheminement": "MESSAC", - "nomCommune": "MESSAC" + "codePostal": "24240", + "codeCommune": "24351", + "libelleAcheminement": "RIBAGNAC", + "nomCommune": "RIBAGNAC" }, { - "codePostal": "57260", - "codeCommune": "57053", - "libelleAcheminement": "BASSING", - "nomCommune": "BASSING" + "codePostal": "10140", + "codeCommune": "10376", + "libelleAcheminement": "THIEFFRAIN", + "nomCommune": "THIEFFRAIN" }, { - "codePostal": "51360", - "codeCommune": "51571", - "libelleAcheminement": "VAL DE VESLE", - "nomCommune": "VAL DE VESLE" + "codePostal": "12400", + "codeCommune": "12042", + "libelleAcheminement": "CALMELS ET LE VIALA", + "nomCommune": "CALMELS ET LE VIALA" }, { - "codePostal": "16700", - "codeCommune": "16031", - "libelleAcheminement": "BARRO", - "nomCommune": "BARRO" + "codePostal": "24390", + "codeCommune": "24302", + "libelleAcheminement": "NAILHAC", + "nomCommune": "NAILHAC" }, { - "codePostal": "17160", - "codeCommune": "17239", - "libelleAcheminement": "MONS", - "nomCommune": "MONS" + "codePostal": "24340", + "codeCommune": "24353", + "libelleAcheminement": "LA ROCHEBEAUCOURT ET ARGENTINE", + "nomCommune": "LA ROCHEBEAUCOURT ET ARGENTINE" }, { - "codePostal": "57530", - "codeCommune": "57055", - "libelleAcheminement": "BAZONCOURT", - "nomCommune": "BAZONCOURT" + "codePostal": "10700", + "codeCommune": "10386", + "libelleAcheminement": "TROUANS", + "nomCommune": "TROUANS" }, { - "codePostal": "51380", - "codeCommune": "51580", - "libelleAcheminement": "TREPAIL", - "nomCommune": "TREPAIL" + "codePostal": "12160", + "codeCommune": "12045", + "libelleAcheminement": "CAMBOULAZET", + "nomCommune": "CAMBOULAZET" }, { - "codePostal": "16700", - "codeCommune": "16039", - "libelleAcheminement": "BERNAC", - "nomCommune": "BERNAC" + "codePostal": "24800", + "codeCommune": "24304", + "libelleAcheminement": "NANTHEUIL", + "nomCommune": "NANTHEUIL" }, { - "codePostal": "17130", - "codeCommune": "17240", - "libelleAcheminement": "MONTENDRE", - "nomCommune": "MONTENDRE" + "codePostal": "24490", + "codeCommune": "24354", + "libelleAcheminement": "LA ROCHE CHALAIS", + "nomCommune": "LA ROCHE CHALAIS" }, { - "codePostal": "57220", - "codeCommune": "57087", - "libelleAcheminement": "BISTEN EN LORRAINE", - "nomCommune": "BISTEN EN LORRAINE" + "codePostal": "10000", + "codeCommune": "10387", + "libelleAcheminement": "TROYES", + "nomCommune": "TROYES" }, { - "codePostal": "51340", - "codeCommune": "51583", - "libelleAcheminement": "TROIS FONTAINES L ABBAYE", - "nomCommune": "TROIS FONTAINES L ABBAYE" + "codePostal": "12140", + "codeCommune": "12048", + "libelleAcheminement": "CAMPOURIEZ", + "nomCommune": "CAMPOURIEZ" }, { - "codePostal": "16250", - "codeCommune": "16046", - "libelleAcheminement": "COTEAUX DU BLANZACAIS", - "nomCommune": "COTEAUX DU BLANZACAIS" + "codePostal": "24300", + "codeCommune": "24311", + "libelleAcheminement": "NONTRON", + "nomCommune": "NONTRON" }, { - "codePostal": "17240", - "codeCommune": "17250", - "libelleAcheminement": "MOSNAC", - "nomCommune": "MOSNAC" + "codePostal": "24580", + "codeCommune": "24356", + "libelleAcheminement": "ROUFFIGNAC ST CERNIN DE REILHAC", + "nomCommune": "ROUFFIGNAC ST CERNIN DE REILHAC" }, { - "codePostal": "57200", - "codeCommune": "57091", - "libelleAcheminement": "BLIESBRUCK", - "nomCommune": "BLIESBRUCK" + "codePostal": "10210", + "codeCommune": "10394", + "libelleAcheminement": "VALLIERES", + "nomCommune": "VALLIERES" }, { - "codePostal": "51170", - "codeCommune": "51586", - "libelleAcheminement": "UNCHAIR", - "nomCommune": "UNCHAIR" + "codePostal": "12230", + "codeCommune": "12063", + "libelleAcheminement": "LA CAVALERIE", + "nomCommune": "LA CAVALERIE" }, { - "codePostal": "16480", - "codeCommune": "16048", - "libelleAcheminement": "BOISBRETEAU", - "nomCommune": "BOISBRETEAU" + "codePostal": "24270", + "codeCommune": "24320", + "libelleAcheminement": "PAYZAC", + "nomCommune": "PAYZAC" }, { - "codePostal": "17430", - "codeCommune": "17253", - "libelleAcheminement": "MURON", - "nomCommune": "MURON" + "codePostal": "24510", + "codeCommune": "24362", + "libelleAcheminement": "VAL DE LOUYRE ET CAUDEAU", + "nomCommune": "VAL DE LOUYRE ET CAUDEAU" }, { - "codePostal": "57655", - "codeCommune": "57096", - "libelleAcheminement": "BOULANGE", - "nomCommune": "BOULANGE" + "codePostal": "10200", + "codeCommune": "10403", + "libelleAcheminement": "VERNONVILLIERS", + "nomCommune": "VERNONVILLIERS" }, { - "codePostal": "51400", - "codeCommune": "51587", - "libelleAcheminement": "VADENAY", - "nomCommune": "VADENAY" + "codePostal": "12320", + "codeCommune": "12076", + "libelleAcheminement": "CONQUES EN ROUERGUE", + "nomCommune": "CONQUES EN ROUERGUE" }, { - "codePostal": "16120", - "codeCommune": "16050", - "libelleAcheminement": "BONNEUIL", - "nomCommune": "BONNEUIL" + "codePostal": "24620", + "codeCommune": "24326", + "libelleAcheminement": "PEYZAC LE MOUSTIER", + "nomCommune": "PEYZAC LE MOUSTIER" }, { - "codePostal": "17150", - "codeCommune": "17263", - "libelleAcheminement": "NIEUL LE VIROUIL", - "nomCommune": "NIEUL LE VIROUIL" + "codePostal": "24290", + "codeCommune": "24364", + "libelleAcheminement": "COLY ST AMAND", + "nomCommune": "COLY ST AMAND" }, { - "codePostal": "57370", - "codeCommune": "57100", - "libelleAcheminement": "BOURSCHEID", - "nomCommune": "BOURSCHEID" + "codePostal": "10130", + "codeCommune": "10422", + "libelleAcheminement": "VILLENEUVE AU CHEMIN", + "nomCommune": "VILLENEUVE AU CHEMIN" }, { - "codePostal": "51330", - "codeCommune": "51589", - "libelleAcheminement": "VANAULT LE CHATEL", - "nomCommune": "VANAULT LE CHATEL" + "codePostal": "12300", + "codeCommune": "12089", + "libelleAcheminement": "DECAZEVILLE", + "nomCommune": "DECAZEVILLE" }, { - "codePostal": "16410", - "codeCommune": "16055", - "libelleAcheminement": "BOUEX", - "nomCommune": "BOUEX" + "codePostal": "24240", + "codeCommune": "24331", + "libelleAcheminement": "POMPORT", + "nomCommune": "POMPORT" }, { - "codePostal": "17600", - "codeCommune": "17265", - "libelleAcheminement": "NIEULLE SUR SEUDRE", - "nomCommune": "NIEULLE SUR SEUDRE" + "codePostal": "24230", + "codeCommune": "24370", + "libelleAcheminement": "ST ANTOINE DE BREUILH", + "nomCommune": "ST ANTOINE DE BREUILH" }, { - "codePostal": "57320", - "codeCommune": "57106", - "libelleAcheminement": "BOUZONVILLE", - "nomCommune": "BOUZONVILLE" + "codePostal": "10310", + "codeCommune": "10426", + "libelleAcheminement": "VILLE SOUS LA FERTE", + "nomCommune": "VILLE SOUS LA FERTE" }, { - "codePostal": "51340", - "codeCommune": "51590", - "libelleAcheminement": "VANAULT LES DAMES", - "nomCommune": "VANAULT LES DAMES" + "codePostal": "12000", + "codeCommune": "12090", + "libelleAcheminement": "DRUELLE BALSAC", + "nomCommune": "DRUELLE BALSAC" }, { - "codePostal": "16240", - "codeCommune": "16059", - "libelleAcheminement": "BRETTES", - "nomCommune": "BRETTES" + "codePostal": "24200", + "codeCommune": "24366", + "libelleAcheminement": "ST ANDRE D ALLAS", + "nomCommune": "ST ANDRE D ALLAS" }, { - "codePostal": "17470", - "codeCommune": "17268", - "libelleAcheminement": "NUAILLE SUR BOUTONNE", - "nomCommune": "NUAILLE SUR BOUTONNE" + "codePostal": "24500", + "codeCommune": "24373", + "libelleAcheminement": "ST AUBIN DE CADELECH", + "nomCommune": "ST AUBIN DE CADELECH" }, { - "codePostal": "57420", - "codeCommune": "57116", - "libelleAcheminement": "BUCHY", - "nomCommune": "BUCHY" + "codePostal": "10200", + "codeCommune": "10428", + "libelleAcheminement": "VILLE SUR TERRE", + "nomCommune": "VILLE SUR TERRE" }, { - "codePostal": "51300", - "codeCommune": "51598", - "libelleAcheminement": "VAUCLERC", - "nomCommune": "VAUCLERC" + "codePostal": "12390", + "codeCommune": "12095", + "libelleAcheminement": "ESCANDOLIERES", + "nomCommune": "ESCANDOLIERES" }, { - "codePostal": "16420", - "codeCommune": "16064", - "libelleAcheminement": "BRIGUEUIL", - "nomCommune": "BRIGUEUIL" + "codePostal": "24440", + "codeCommune": "24379", + "libelleAcheminement": "ST AVIT SENIEUR", + "nomCommune": "ST AVIT SENIEUR" }, { - "codePostal": "17180", - "codeCommune": "17274", - "libelleAcheminement": "PERIGNY", - "nomCommune": "PERIGNY" + "codePostal": "24410", + "codeCommune": "24376", + "libelleAcheminement": "ST AULAYE PUYMANGOU", + "nomCommune": "ST AULAYE PUYMANGOU" }, { - "codePostal": "57170", - "codeCommune": "57132", - "libelleAcheminement": "CHATEAU SALINS", - "nomCommune": "CHATEAU SALINS" + "codePostal": "10110", + "codeCommune": "10438", + "libelleAcheminement": "VITRY LE CROISE", + "nomCommune": "VITRY LE CROISE" }, { - "codePostal": "51140", - "codeCommune": "51604", - "libelleAcheminement": "VENTELAY", - "nomCommune": "VENTELAY" + "codePostal": "12140", + "codeCommune": "12097", + "libelleAcheminement": "ESPEYRAC", + "nomCommune": "ESPEYRAC" }, { - "codePostal": "16300", - "codeCommune": "16074", - "libelleAcheminement": "CHALLIGNAC", - "nomCommune": "CHALLIGNAC" + "codePostal": "24150", + "codeCommune": "24382", + "libelleAcheminement": "ST CAPRAISE DE LALINDE", + "nomCommune": "ST CAPRAISE DE LALINDE" }, { - "codePostal": "17250", - "codeCommune": "17280", - "libelleAcheminement": "PLASSAY", - "nomCommune": "PLASSAY" + "codePostal": "24500", + "codeCommune": "24383", + "libelleAcheminement": "ST CAPRAISE D EYMET", + "nomCommune": "ST CAPRAISE D EYMET" }, { - "codePostal": "57170", - "codeCommune": "57133", - "libelleAcheminement": "CHATEAU VOUE", - "nomCommune": "CHATEAU VOUE" + "codePostal": "10110", + "codeCommune": "10439", + "libelleAcheminement": "VIVIERS SUR ARTAUT", + "nomCommune": "VIVIERS SUR ARTAUT" }, { - "codePostal": "51210", - "codeCommune": "51607", - "libelleAcheminement": "VERDON", - "nomCommune": "VERDON" + "codePostal": "12360", + "codeCommune": "12099", + "libelleAcheminement": "FAYET", + "nomCommune": "FAYET" }, { - "codePostal": "16360", - "codeCommune": "16079", - "libelleAcheminement": "CHANTILLAC", - "nomCommune": "CHANTILLAC" + "codePostal": "24590", + "codeCommune": "24392", + "libelleAcheminement": "ST CREPIN ET CARLUCET", + "nomCommune": "ST CREPIN ET CARLUCET" }, { - "codePostal": "17210", - "codeCommune": "17281", - "libelleAcheminement": "POLIGNAC", - "nomCommune": "POLIGNAC" + "codePostal": "24640", + "codeCommune": "24401", + "libelleAcheminement": "STE EULALIE D ANS", + "nomCommune": "STE EULALIE D ANS" }, { - "codePostal": "57070", - "codeCommune": "57142", - "libelleAcheminement": "CHIEULLES", - "nomCommune": "CHIEULLES" + "codePostal": "10150", + "codeCommune": "10442", + "libelleAcheminement": "VOUE", + "nomCommune": "VOUE" }, { - "codePostal": "51130", - "codeCommune": "51612", - "libelleAcheminement": "BLANCS COTEAUX", - "nomCommune": "BLANCS COTEAUX" + "codePostal": "12360", + "codeCommune": "12109", + "libelleAcheminement": "GISSAC", + "nomCommune": "GISSAC" }, { - "codePostal": "16320", - "codeCommune": "16082", - "libelleAcheminement": "BOISNE LA TUDE", - "nomCommune": "BOISNE LA TUDE" + "codePostal": "24440", + "codeCommune": "24393", + "libelleAcheminement": "STE CROIX", + "nomCommune": "STE CROIX" }, { - "codePostal": "17130", - "codeCommune": "17282", - "libelleAcheminement": "POMMIERS MOULONS", - "nomCommune": "POMMIERS MOULONS" + "codePostal": "24400", + "codeCommune": "24409", + "libelleAcheminement": "ST FRONT DE PRADOUX", + "nomCommune": "ST FRONT DE PRADOUX" }, { - "codePostal": "57185", - "codeCommune": "57143", - "libelleAcheminement": "CLOUANGE", - "nomCommune": "CLOUANGE" + "codePostal": "10160", + "codeCommune": "10444", + "libelleAcheminement": "VULAINES", + "nomCommune": "VULAINES" }, { - "codePostal": "51210", - "codeCommune": "51618", - "libelleAcheminement": "LE VEZIER", - "nomCommune": "LE VEZIER" + "codePostal": "12300", + "codeCommune": "12130", + "libelleAcheminement": "LIVINHAC LE HAUT", + "nomCommune": "LIVINHAC LE HAUT" }, { - "codePostal": "16320", - "codeCommune": "16082", - "libelleAcheminement": "BOISNE LA TUDE", - "nomCommune": "BOISNE LA TUDE" + "codePostal": "24170", + "codeCommune": "24406", + "libelleAcheminement": "STE FOY DE BELVES", + "nomCommune": "STE FOY DE BELVES" }, { - "codePostal": "17250", - "codeCommune": "17284", - "libelleAcheminement": "PONT L ABBE D ARNOULT", - "nomCommune": "PONT L ABBE D ARNOULT" + "codePostal": "24590", + "codeCommune": "24412", + "libelleAcheminement": "ST GENIES", + "nomCommune": "ST GENIES" }, { - "codePostal": "57530", - "codeCommune": "57145", - "libelleAcheminement": "COINCY", - "nomCommune": "COINCY" + "codePostal": "11300", + "codeCommune": "11003", + "libelleAcheminement": "AJAC", + "nomCommune": "AJAC" }, { - "codePostal": "51130", - "codeCommune": "51627", - "libelleAcheminement": "VILLENEUVE RENNEVILLE CHEVIGNY", - "nomCommune": "VILLENEUVE RENNEVILLE CHEVIGNY" + "codePostal": "12330", + "codeCommune": "12138", + "libelleAcheminement": "MARCILLAC VALLON", + "nomCommune": "MARCILLAC VALLON" }, { - "codePostal": "16260", - "codeCommune": "16085", - "libelleAcheminement": "CHASSENEUIL SUR BONNIEURE", - "nomCommune": "CHASSENEUIL SUR BONNIEURE" + "codePostal": "24510", + "codeCommune": "24407", + "libelleAcheminement": "STE FOY DE LONGAS", + "nomCommune": "STE FOY DE LONGAS" }, { - "codePostal": "17880", - "codeCommune": "17286", - "libelleAcheminement": "LES PORTES EN RE", - "nomCommune": "LES PORTES EN RE" + "codePostal": "24700", + "codeCommune": "24415", + "libelleAcheminement": "ST GERAUD DE CORPS", + "nomCommune": "ST GERAUD DE CORPS" }, { - "codePostal": "57150", - "codeCommune": "57160", - "libelleAcheminement": "CREUTZWALD", - "nomCommune": "CREUTZWALD" + "codePostal": "11290", + "codeCommune": "11005", + "libelleAcheminement": "ALAIRAC", + "nomCommune": "ALAIRAC" }, { - "codePostal": "51800", - "codeCommune": "51632", - "libelleAcheminement": "VILLERS EN ARGONNE", - "nomCommune": "VILLERS EN ARGONNE" + "codePostal": "12390", + "codeCommune": "12142", + "libelleAcheminement": "MAYRAN", + "nomCommune": "MAYRAN" }, { - "codePostal": "16200", - "codeCommune": "16088", - "libelleAcheminement": "CHASSORS", - "nomCommune": "CHASSORS" + "codePostal": "24300", + "codeCommune": "24410", + "libelleAcheminement": "ST FRONT LA RIVIERE", + "nomCommune": "ST FRONT LA RIVIERE" }, { - "codePostal": "17700", - "codeCommune": "17293", - "libelleAcheminement": "PUYRAVAULT", - "nomCommune": "PUYRAVAULT" + "codePostal": "24190", + "codeCommune": "24424", + "libelleAcheminement": "ST JEAN D ATAUX", + "nomCommune": "ST JEAN D ATAUX" }, { - "codePostal": "57850", - "codeCommune": "57163", - "libelleAcheminement": "DABO", - "nomCommune": "DABO" + "codePostal": "11190", + "codeCommune": "11010", + "libelleAcheminement": "ANTUGNAC", + "nomCommune": "ANTUGNAC" }, { - "codePostal": "51130", - "codeCommune": "51638", - "libelleAcheminement": "VILLESENEUX", - "nomCommune": "VILLESENEUX" + "codePostal": "12200", + "codeCommune": "12150", + "libelleAcheminement": "MONTEILS", + "nomCommune": "MONTEILS" }, { - "codePostal": "16100", - "codeCommune": "16089", - "libelleAcheminement": "CHATEAUBERNARD", - "nomCommune": "CHATEAUBERNARD" + "codePostal": "24140", + "codeCommune": "24414", + "libelleAcheminement": "ST GEORGES DE MONTCLARD", + "nomCommune": "ST GEORGES DE MONTCLARD" }, { - "codePostal": "17510", - "codeCommune": "17301", - "libelleAcheminement": "ROMAZIERES", - "nomCommune": "ROMAZIERES" + "codePostal": "24800", + "codeCommune": "24425", + "libelleAcheminement": "ST JEAN DE COLE", + "nomCommune": "ST JEAN DE COLE" }, { - "codePostal": "57850", - "codeCommune": "57163", - "libelleAcheminement": "DABO", - "nomCommune": "DABO" + "codePostal": "11290", + "codeCommune": "11018", + "libelleAcheminement": "ARZENS", + "nomCommune": "ARZENS" }, { - "codePostal": "52130", - "codeCommune": "52006", - "libelleAcheminement": "ALLICHAMPS", - "nomCommune": "ALLICHAMPS" + "codePostal": "12460", + "codeCommune": "12151", + "libelleAcheminement": "MONTEZIC", + "nomCommune": "MONTEZIC" }, { - "codePostal": "16370", - "codeCommune": "16097", - "libelleAcheminement": "CHERVES RICHEMONT", - "nomCommune": "CHERVES RICHEMONT" + "codePostal": "24160", + "codeCommune": "24417", + "libelleAcheminement": "ST GERMAIN DES PRES", + "nomCommune": "ST GERMAIN DES PRES" }, { - "codePostal": "17130", - "codeCommune": "17305", - "libelleAcheminement": "ROUFFIGNAC", - "nomCommune": "ROUFFIGNAC" + "codePostal": "24800", + "codeCommune": "24428", + "libelleAcheminement": "ST JORY DE CHALAIS", + "nomCommune": "ST JORY DE CHALAIS" }, { - "codePostal": "57340", - "codeCommune": "57166", - "libelleAcheminement": "DALHAIN", - "nomCommune": "DALHAIN" + "codePostal": "11330", + "codeCommune": "11020", + "libelleAcheminement": "AURIAC", + "nomCommune": "AURIAC" }, { - "codePostal": "52700", - "codeCommune": "52008", - "libelleAcheminement": "ANDELOT BLANCHEVILLE", - "nomCommune": "ANDELOT BLANCHEVILLE" + "codePostal": "12380", + "codeCommune": "12152", + "libelleAcheminement": "MONTFRANC", + "nomCommune": "MONTFRANC" }, { - "codePostal": "16440", - "codeCommune": "16101", - "libelleAcheminement": "CLAIX", - "nomCommune": "CLAIX" + "codePostal": "24170", + "codeCommune": "24438", + "libelleAcheminement": "ST LAURENT LA VALLEE", + "nomCommune": "ST LAURENT LA VALLEE" }, { - "codePostal": "17620", - "codeCommune": "17308", - "libelleAcheminement": "ST AGNANT", - "nomCommune": "ST AGNANT" + "codePostal": "24370", + "codeCommune": "24432", + "libelleAcheminement": "ST JULIEN DE LAMPON", + "nomCommune": "ST JULIEN DE LAMPON" }, { - "codePostal": "57590", - "codeCommune": "57171", - "libelleAcheminement": "DELME", - "nomCommune": "DELME" + "codePostal": "11140", + "codeCommune": "11021", + "libelleAcheminement": "AXAT", + "nomCommune": "AXAT" }, { - "codePostal": "52500", - "codeCommune": "52015", - "libelleAcheminement": "ARBIGNY SOUS VARENNES", - "nomCommune": "ARBIGNY SOUS VARENNES" + "codePostal": "12540", + "codeCommune": "12155", + "libelleAcheminement": "FONDAMENTE", + "nomCommune": "FONDAMENTE" }, { - "codePostal": "16700", - "codeCommune": "16104", - "libelleAcheminement": "CONDAC", - "nomCommune": "CONDAC" + "codePostal": "24540", + "codeCommune": "24446", + "libelleAcheminement": "ST MARCORY", + "nomCommune": "ST MARCORY" }, { - "codePostal": "17520", - "codeCommune": "17316", - "libelleAcheminement": "ST CIERS CHAMPAGNE", - "nomCommune": "ST CIERS CHAMPAGNE" + "codePostal": "24100", + "codeCommune": "24437", + "libelleAcheminement": "ST LAURENT DES VIGNES", + "nomCommune": "ST LAURENT DES VIGNES" }, { - "codePostal": "57220", - "codeCommune": "57172", - "libelleAcheminement": "DENTING", - "nomCommune": "DENTING" + "codePostal": "11700", + "codeCommune": "11022", + "libelleAcheminement": "AZILLE", + "nomCommune": "AZILLE" }, { - "codePostal": "52160", - "codeCommune": "52023", - "libelleAcheminement": "AUBERIVE", - "nomCommune": "AUBERIVE" + "codePostal": "12330", + "codeCommune": "12165", + "libelleAcheminement": "MURET LE CHATEAU", + "nomCommune": "MURET LE CHATEAU" }, { - "codePostal": "16500", - "codeCommune": "16106", - "libelleAcheminement": "CONFOLENS", - "nomCommune": "CONFOLENS" + "codePostal": "24300", + "codeCommune": "24458", + "libelleAcheminement": "ST MARTIN LE PIN", + "nomCommune": "ST MARTIN LE PIN" }, { - "codePostal": "17150", - "codeCommune": "17335", - "libelleAcheminement": "ST GEORGES DES AGOUTS", - "nomCommune": "ST GEORGES DES AGOUTS" + "codePostal": "24700", + "codeCommune": "24449", + "libelleAcheminement": "ST MARTIAL D ARTENSET", + "nomCommune": "ST MARTIAL D ARTENSET" }, { - "codePostal": "57340", - "codeCommune": "57174", - "libelleAcheminement": "DESTRY", - "nomCommune": "DESTRY" + "codePostal": "11600", + "codeCommune": "11025", + "libelleAcheminement": "BAGNOLES", + "nomCommune": "BAGNOLES" }, { - "codePostal": "52330", - "codeCommune": "52031", - "libelleAcheminement": "AUTREVILLE SUR LA RENNE", - "nomCommune": "AUTREVILLE SUR LA RENNE" + "codePostal": "12700", + "codeCommune": "12170", + "libelleAcheminement": "NAUSSAC", + "nomCommune": "NAUSSAC" }, { - "codePostal": "16240", - "codeCommune": "16110", - "libelleAcheminement": "COURCOME", - "nomCommune": "COURCOME" + "codePostal": "24370", + "codeCommune": "24470", + "libelleAcheminement": "STE MONDANE", + "nomCommune": "STE MONDANE" }, { - "codePostal": "17190", - "codeCommune": "17337", - "libelleAcheminement": "ST GEORGES D OLERON", - "nomCommune": "ST GEORGES D OLERON" + "codePostal": "24250", + "codeCommune": "24450", + "libelleAcheminement": "ST MARTIAL DE NABIRAT", + "nomCommune": "ST MARTIAL DE NABIRAT" }, { - "codePostal": "57260", - "codeCommune": "57177", - "libelleAcheminement": "DIEUZE", - "nomCommune": "DIEUZE" + "codePostal": "11410", + "codeCommune": "11026", + "libelleAcheminement": "BARAIGNE", + "nomCommune": "BARAIGNE" }, { - "codePostal": "52360", - "codeCommune": "52037", - "libelleAcheminement": "BANNES", - "nomCommune": "BANNES" + "codePostal": "12260", + "codeCommune": "12175", + "libelleAcheminement": "OLS ET RINHODES", + "nomCommune": "OLS ET RINHODES" }, { - "codePostal": "16220", - "codeCommune": "16124", - "libelleAcheminement": "ECURAS", - "nomCommune": "ECURAS" + "codePostal": "24320", + "codeCommune": "24482", + "libelleAcheminement": "ST PAUL LIZONNE", + "nomCommune": "ST PAUL LIZONNE" }, { - "codePostal": "17700", - "codeCommune": "17340", - "libelleAcheminement": "ST PIERRE LA NOUE", - "nomCommune": "ST PIERRE LA NOUE" + "codePostal": "24800", + "codeCommune": "24453", + "libelleAcheminement": "ST MARTIN DE FRESSENGEAS", + "nomCommune": "ST MARTIN DE FRESSENGEAS" }, { - "codePostal": "57400", - "codeCommune": "57180", - "libelleAcheminement": "DOLVING", - "nomCommune": "DOLVING" + "codePostal": "11580", + "codeCommune": "11029", + "libelleAcheminement": "BELCASTEL ET BUC", + "nomCommune": "BELCASTEL ET BUC" }, { - "codePostal": "52240", - "codeCommune": "52038", - "libelleAcheminement": "BASSONCOURT", - "nomCommune": "BASSONCOURT" + "codePostal": "12850", + "codeCommune": "12176", + "libelleAcheminement": "ONET LE CHATEAU", + "nomCommune": "ONET LE CHATEAU" }, { - "codePostal": "16220", - "codeCommune": "16135", - "libelleAcheminement": "EYMOUTHIERS", - "nomCommune": "EYMOUTHIERS" + "codePostal": "24800", + "codeCommune": "24496", + "libelleAcheminement": "ST ROMAIN ET ST CLEMENT", + "nomCommune": "ST ROMAIN ET ST CLEMENT" }, { - "codePostal": "17320", - "codeCommune": "17351", - "libelleAcheminement": "ST JUST LUZAC", - "nomCommune": "ST JUST LUZAC" + "codePostal": "24140", + "codeCommune": "24456", + "libelleAcheminement": "ST MARTIN DES COMBES", + "nomCommune": "ST MARTIN DES COMBES" }, { - "codePostal": "57320", - "codeCommune": "57186", - "libelleAcheminement": "EBERSVILLER", - "nomCommune": "EBERSVILLER" + "codePostal": "11200", + "codeCommune": "11040", + "libelleAcheminement": "BIZANET", + "nomCommune": "BIZANET" }, { - "codePostal": "52270", - "codeCommune": "52044", - "libelleAcheminement": "ROCHES BETTAINCOURT", - "nomCommune": "ROCHES BETTAINCOURT" + "codePostal": "12310", + "codeCommune": "12177", + "libelleAcheminement": "PALMAS D AVEYRON", + "nomCommune": "PALMAS D AVEYRON" }, { - "codePostal": "16700", - "codeCommune": "16136", - "libelleAcheminement": "LA FAYE", - "nomCommune": "LA FAYE" + "codePostal": "24270", + "codeCommune": "24519", + "libelleAcheminement": "SARLANDE", + "nomCommune": "SARLANDE" }, { - "codePostal": "17800", - "codeCommune": "17354", - "libelleAcheminement": "ST LEGER", - "nomCommune": "ST LEGER" + "codePostal": "24160", + "codeCommune": "24463", + "libelleAcheminement": "ST MEDARD D EXCIDEUIL", + "nomCommune": "ST MEDARD D EXCIDEUIL" }, { - "codePostal": "57220", - "codeCommune": "57187", - "libelleAcheminement": "EBLANGE", - "nomCommune": "EBLANGE" + "codePostal": "11120", + "codeCommune": "11041", + "libelleAcheminement": "BIZE MINERVOIS", + "nomCommune": "BIZE MINERVOIS" }, { - "codePostal": "52340", - "codeCommune": "52050", - "libelleAcheminement": "BIESLES", - "nomCommune": "BIESLES" + "codePostal": "12360", + "codeCommune": "12179", + "libelleAcheminement": "PEUX ET COUFFOULEUX", + "nomCommune": "PEUX ET COUFFOULEUX" }, { - "codePostal": "16230", - "codeCommune": "16140", - "libelleAcheminement": "FONTCLAIREAU", - "nomCommune": "FONTCLAIREAU" + "codePostal": "24260", + "codeCommune": "24524", + "libelleAcheminement": "SAVIGNAC DE MIREMONT", + "nomCommune": "SAVIGNAC DE MIREMONT" }, { - "codePostal": "17380", - "codeCommune": "17356", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "24200", + "codeCommune": "24471", + "libelleAcheminement": "STE NATHALENE", + "nomCommune": "STE NATHALENE" }, { - "codePostal": "57660", - "codeCommune": "57198", - "libelleAcheminement": "ERSTROFF", - "nomCommune": "ERSTROFF" + "codePostal": "11300", + "codeCommune": "11045", + "libelleAcheminement": "BOURIEGE", + "nomCommune": "BOURIEGE" }, { - "codePostal": "52300", - "codeCommune": "52055", - "libelleAcheminement": "BLECOURT", - "nomCommune": "BLECOURT" + "codePostal": "12130", + "codeCommune": "12182", + "libelleAcheminement": "PIERREFICHE", + "nomCommune": "PIERREFICHE" }, { - "codePostal": "16200", - "codeCommune": "16145", - "libelleAcheminement": "FOUSSIGNAC", - "nomCommune": "FOUSSIGNAC" + "codePostal": "24300", + "codeCommune": "24525", + "libelleAcheminement": "SAVIGNAC DE NONTRON", + "nomCommune": "SAVIGNAC DE NONTRON" }, { - "codePostal": "17740", - "codeCommune": "17360", - "libelleAcheminement": "STE MARIE DE RE", - "nomCommune": "STE MARIE DE RE" + "codePostal": "24530", + "codeCommune": "24474", + "libelleAcheminement": "ST PANCRACE", + "nomCommune": "ST PANCRACE" }, { - "codePostal": "57380", - "codeCommune": "57209", - "libelleAcheminement": "FAULQUEMONT", - "nomCommune": "FAULQUEMONT" + "codePostal": "11300", + "codeCommune": "11046", + "libelleAcheminement": "BOURIGEOLE", + "nomCommune": "BOURIGEOLE" }, { - "codePostal": "52110", - "codeCommune": "52057", - "libelleAcheminement": "BLUMERAY", - "nomCommune": "BLUMERAY" + "codePostal": "12380", + "codeCommune": "12186", + "libelleAcheminement": "POUSTHOMY", + "nomCommune": "POUSTHOMY" }, { - "codePostal": "16410", - "codeCommune": "16146", - "libelleAcheminement": "GARAT", - "nomCommune": "GARAT" + "codePostal": "24300", + "codeCommune": "24528", + "libelleAcheminement": "SCEAU ST ANGEL", + "nomCommune": "SCEAU ST ANGEL" }, { - "codePostal": "17520", - "codeCommune": "17364", - "libelleAcheminement": "ST MARTIAL SUR NE", - "nomCommune": "ST MARTIAL SUR NE" + "codePostal": "24160", + "codeCommune": "24476", + "libelleAcheminement": "ST PANTALY D EXCIDEUIL", + "nomCommune": "ST PANTALY D EXCIDEUIL" }, { - "codePostal": "57930", - "codeCommune": "57210", - "libelleAcheminement": "FENETRANGE", - "nomCommune": "FENETRANGE" + "codePostal": "11400", + "codeCommune": "11054", + "libelleAcheminement": "LES BRUNELS", + "nomCommune": "LES BRUNELS" }, { - "codePostal": "52310", - "codeCommune": "52058", - "libelleAcheminement": "BOLOGNE", - "nomCommune": "BOLOGNE" + "codePostal": "12290", + "codeCommune": "12188", + "libelleAcheminement": "PRADES SALARS", + "nomCommune": "PRADES SALARS" }, { - "codePostal": "16300", - "codeCommune": "16160", - "libelleAcheminement": "GUIMPS", - "nomCommune": "GUIMPS" + "codePostal": "24410", + "codeCommune": "24533", + "libelleAcheminement": "SERVANCHES", + "nomCommune": "SERVANCHES" }, { - "codePostal": "17270", - "codeCommune": "17365", - "libelleAcheminement": "ST MARTIN D ARY", - "nomCommune": "ST MARTIN D ARY" + "codePostal": "24800", + "codeCommune": "24481", + "libelleAcheminement": "ST PAUL LA ROCHE", + "nomCommune": "ST PAUL LA ROCHE" }, { - "codePostal": "57280", - "codeCommune": "57211", - "libelleAcheminement": "FEVES", - "nomCommune": "FEVES" + "codePostal": "11160", + "codeCommune": "11056", + "libelleAcheminement": "CABRESPINE", + "nomCommune": "CABRESPINE" }, { - "codePostal": "52400", - "codeCommune": "52060", - "libelleAcheminement": "BOURBONNE LES BAINS", - "nomCommune": "BOURBONNE LES BAINS" + "codePostal": "12240", + "codeCommune": "12198", + "libelleAcheminement": "RIEUPEYROUX", + "nomCommune": "RIEUPEYROUX" }, { - "codePostal": "16290", - "codeCommune": "16163", - "libelleAcheminement": "HIERSAC", - "nomCommune": "HIERSAC" + "codePostal": "24500", + "codeCommune": "24536", + "libelleAcheminement": "SINGLEYRAC", + "nomCommune": "SINGLEYRAC" }, { - "codePostal": "17330", - "codeCommune": "17384", - "libelleAcheminement": "ST PIERRE DE L ISLE", - "nomCommune": "ST PIERRE DE L ISLE" + "codePostal": "24560", + "codeCommune": "24483", + "libelleAcheminement": "ST PERDOUX", + "nomCommune": "ST PERDOUX" }, { - "codePostal": "57570", - "codeCommune": "57214", - "libelleAcheminement": "FIXEM", - "nomCommune": "FIXEM" + "codePostal": "11240", + "codeCommune": "11061", + "libelleAcheminement": "CAMBIEURE", + "nomCommune": "CAMBIEURE" }, { - "codePostal": "52400", - "codeCommune": "52060", - "libelleAcheminement": "BOURBONNE LES BAINS", - "nomCommune": "BOURBONNE LES BAINS" + "codePostal": "12640", + "codeCommune": "12200", + "libelleAcheminement": "RIVIERE SUR TARN", + "nomCommune": "RIVIERE SUR TARN" }, { - "codePostal": "16490", - "codeCommune": "16164", - "libelleAcheminement": "HIESSE", - "nomCommune": "HIESSE" + "codePostal": "24600", + "codeCommune": "24537", + "libelleAcheminement": "SIORAC DE RIBERAC", + "nomCommune": "SIORAC DE RIBERAC" }, { - "codePostal": "17240", - "codeCommune": "17390", - "libelleAcheminement": "STE RAMEE", - "nomCommune": "STE RAMEE" + "codePostal": "24450", + "codeCommune": "24486", + "libelleAcheminement": "ST PIERRE DE FRUGIE", + "nomCommune": "ST PIERRE DE FRUGIE" }, { - "codePostal": "57190", - "codeCommune": "57221", - "libelleAcheminement": "FLORANGE", - "nomCommune": "FLORANGE" + "codePostal": "11000", + "codeCommune": "11069", + "libelleAcheminement": "CARCASSONNE", + "nomCommune": "CARCASSONNE" }, { - "codePostal": "52150", - "codeCommune": "52063", - "libelleAcheminement": "BOURG STE MARIE", - "nomCommune": "BOURG STE MARIE" + "codePostal": "12000", + "codeCommune": "12202", + "libelleAcheminement": "RODEZ", + "nomCommune": "RODEZ" }, { - "codePostal": "16340", - "codeCommune": "16166", - "libelleAcheminement": "L ISLE D ESPAGNAC", - "nomCommune": "L ISLE D ESPAGNAC" + "codePostal": "24170", + "codeCommune": "24538", + "libelleAcheminement": "SIORAC EN PERIGORD", + "nomCommune": "SIORAC EN PERIGORD" }, { - "codePostal": "17600", - "codeCommune": "17393", - "libelleAcheminement": "ST ROMAIN DE BENET", - "nomCommune": "ST ROMAIN DE BENET" + "codePostal": "24210", + "codeCommune": "24491", + "libelleAcheminement": "ST RABIER", + "nomCommune": "ST RABIER" }, { - "codePostal": "57730", - "codeCommune": "57224", - "libelleAcheminement": "FOLSCHVILLER", - "nomCommune": "FOLSCHVILLER" + "codePostal": "11000", + "codeCommune": "11069", + "libelleAcheminement": "CARCASSONNE", + "nomCommune": "CARCASSONNE" }, { - "codePostal": "52150", - "codeCommune": "52064", - "libelleAcheminement": "BOURMONT ENTRE MEUSE ET MOUZON", - "nomCommune": "BOURMONT ENTRE MEUSE ET MOUZON" + "codePostal": "12200", + "codeCommune": "12205", + "libelleAcheminement": "LA ROUQUETTE", + "nomCommune": "LA ROUQUETTE" }, { - "codePostal": "16200", - "codeCommune": "16167", - "libelleAcheminement": "JARNAC", - "nomCommune": "JARNAC" + "codePostal": "24460", + "codeCommune": "24540", + "libelleAcheminement": "SORGES ET LIGUEUX EN PERIGORD", + "nomCommune": "SORGES ET LIGUEUX EN PERIGORD" }, { - "codePostal": "17700", - "codeCommune": "17394", - "libelleAcheminement": "ST SATURNIN DU BOIS", - "nomCommune": "ST SATURNIN DU BOIS" + "codePostal": "24160", + "codeCommune": "24493", + "libelleAcheminement": "ST RAPHAEL", + "nomCommune": "ST RAPHAEL" }, { - "codePostal": "57600", - "codeCommune": "57227", - "libelleAcheminement": "FORBACH", - "nomCommune": "FORBACH" + "codePostal": "11360", + "codeCommune": "11071", + "libelleAcheminement": "CASCASTEL DES CORBIERES", + "nomCommune": "CASCASTEL DES CORBIERES" }, { - "codePostal": "52110", - "codeCommune": "52065", - "libelleAcheminement": "BOUZANCOURT", - "nomCommune": "BOUZANCOURT" + "codePostal": "12220", + "codeCommune": "12206", + "libelleAcheminement": "ROUSSENNAC", + "nomCommune": "ROUSSENNAC" }, { - "codePostal": "16250", - "codeCommune": "16175", - "libelleAcheminement": "VAL DES VIGNES", - "nomCommune": "VAL DES VIGNES" + "codePostal": "24390", + "codeCommune": "24545", + "libelleAcheminement": "TEILLOTS", + "nomCommune": "TEILLOTS" }, { - "codePostal": "17610", - "codeCommune": "17395", - "libelleAcheminement": "ST SAUVANT", - "nomCommune": "ST SAUVANT" + "codePostal": "24700", + "codeCommune": "24500", + "libelleAcheminement": "ST SAUVEUR LALANDE", + "nomCommune": "ST SAUVEUR LALANDE" }, { - "codePostal": "57590", - "codeCommune": "57228", - "libelleAcheminement": "FOSSIEUX", - "nomCommune": "FOSSIEUX" + "codePostal": "11320", + "codeCommune": "11074", + "libelleAcheminement": "LES CASSES", + "nomCommune": "LES CASSES" }, { - "codePostal": "52150", - "codeCommune": "52067", - "libelleAcheminement": "BRAINVILLE SUR MEUSE", - "nomCommune": "BRAINVILLE SUR MEUSE" + "codePostal": "12230", + "codeCommune": "12220", + "libelleAcheminement": "STE EULALIE DE CERNON", + "nomCommune": "STE EULALIE DE CERNON" }, { - "codePostal": "16250", - "codeCommune": "16175", - "libelleAcheminement": "VAL DES VIGNES", - "nomCommune": "VAL DES VIGNES" + "codePostal": "24240", + "codeCommune": "24549", + "libelleAcheminement": "THENAC", + "nomCommune": "THENAC" }, { - "codePostal": "17350", - "codeCommune": "17397", - "libelleAcheminement": "ST SAVINIEN", - "nomCommune": "ST SAVINIEN" + "codePostal": "24350", + "codeCommune": "24508", + "libelleAcheminement": "ST VICTOR", + "nomCommune": "ST VICTOR" }, { - "codePostal": "57220", - "codeCommune": "57230", - "libelleAcheminement": "FOULIGNY", - "nomCommune": "FOULIGNY" + "codePostal": "11300", + "codeCommune": "11078", + "libelleAcheminement": "CASTELRENG", + "nomCommune": "CASTELRENG" }, { - "codePostal": "52120", - "codeCommune": "52069", - "libelleAcheminement": "BRAUX LE CHATEL", - "nomCommune": "BRAUX LE CHATEL" + "codePostal": "12210", + "codeCommune": "12223", + "libelleAcheminement": "ARGENCES EN AUBRAC", + "nomCommune": "ARGENCES EN AUBRAC" }, { - "codePostal": "16120", - "codeCommune": "16177", - "libelleAcheminement": "LADIVILLE", - "nomCommune": "LADIVILLE" + "codePostal": "24290", + "codeCommune": "24552", + "libelleAcheminement": "THONAC", + "nomCommune": "THONAC" }, { - "codePostal": "17350", - "codeCommune": "17397", - "libelleAcheminement": "ST SAVINIEN", - "nomCommune": "ST SAVINIEN" + "codePostal": "24190", + "codeCommune": "24509", + "libelleAcheminement": "ST VINCENT DE CONNEZAC", + "nomCommune": "ST VINCENT DE CONNEZAC" }, { - "codePostal": "57800", - "codeCommune": "57240", - "libelleAcheminement": "FREYMING MERLEBACH", - "nomCommune": "FREYMING MERLEBACH" + "codePostal": "11220", + "codeCommune": "11083", + "libelleAcheminement": "CAUNETTES EN VAL", + "nomCommune": "CAUNETTES EN VAL" }, { - "codePostal": "52240", - "codeCommune": "52074", - "libelleAcheminement": "BREUVANNES EN BASSIGNY", - "nomCommune": "BREUVANNES EN BASSIGNY" + "codePostal": "12210", + "codeCommune": "12223", + "libelleAcheminement": "ARGENCES EN AUBRAC", + "nomCommune": "ARGENCES EN AUBRAC" }, { - "codePostal": "16390", - "codeCommune": "16180", - "libelleAcheminement": "LAPRADE", - "nomCommune": "LAPRADE" + "codePostal": "24190", + "codeCommune": "24562", + "libelleAcheminement": "VALLEREUIL", + "nomCommune": "VALLEREUIL" }, { - "codePostal": "17150", - "codeCommune": "17410", - "libelleAcheminement": "ST THOMAS DE CONAC", - "nomCommune": "ST THOMAS DE CONAC" + "codePostal": "24220", + "codeCommune": "24510", + "libelleAcheminement": "ST VINCENT DE COSSE", + "nomCommune": "ST VINCENT DE COSSE" }, { - "codePostal": "57810", - "codeCommune": "57241", - "libelleAcheminement": "FRIBOURG", - "nomCommune": "FRIBOURG" + "codePostal": "11570", + "codeCommune": "11088", + "libelleAcheminement": "CAZILHAC", + "nomCommune": "CAZILHAC" }, { - "codePostal": "52700", - "codeCommune": "52075", - "libelleAcheminement": "BRIAUCOURT", - "nomCommune": "BRIAUCOURT" + "codePostal": "12420", + "codeCommune": "12223", + "libelleAcheminement": "ARGENCES EN AUBRAC", + "nomCommune": "ARGENCES EN AUBRAC" }, { - "codePostal": "16500", - "codeCommune": "16181", - "libelleAcheminement": "LESSAC", - "nomCommune": "LESSAC" + "codePostal": "24320", + "codeCommune": "24573", + "libelleAcheminement": "VERTEILLAC", + "nomCommune": "VERTEILLAC" }, { - "codePostal": "17220", - "codeCommune": "17413", + "codePostal": "24230", + "codeCommune": "24514", "libelleAcheminement": "ST VIVIEN", "nomCommune": "ST VIVIEN" }, { - "codePostal": "57660", - "codeCommune": "57262", - "libelleAcheminement": "GROSTENQUIN", - "nomCommune": "GROSTENQUIN" - }, - { - "codePostal": "52220", - "codeCommune": "52088", - "libelleAcheminement": "CEFFONDS", - "nomCommune": "CEFFONDS" + "codePostal": "11140", + "codeCommune": "11093", + "libelleAcheminement": "LE CLAT", + "nomCommune": "LE CLAT" }, { - "codePostal": "16460", - "codeCommune": "16184", - "libelleAcheminement": "LICHERES", - "nomCommune": "LICHERES" + "codePostal": "12130", + "codeCommune": "12224", + "libelleAcheminement": "ST GENIEZ D OLT ET D AUBRAC", + "nomCommune": "ST GENIEZ D OLT ET D AUBRAC" }, { - "codePostal": "17100", - "codeCommune": "17415", - "libelleAcheminement": "SAINTES", - "nomCommune": "SAINTES" + "codePostal": "24370", + "codeCommune": "24574", + "libelleAcheminement": "VEYRIGNAC", + "nomCommune": "VEYRIGNAC" }, { - "codePostal": "57260", - "codeCommune": "57265", - "libelleAcheminement": "GUEBESTROFF", - "nomCommune": "GUEBESTROFF" + "codePostal": "24160", + "codeCommune": "24515", + "libelleAcheminement": "SALAGNAC", + "nomCommune": "SALAGNAC" }, { - "codePostal": "52600", - "codeCommune": "52093", - "libelleAcheminement": "CHALINDREY", - "nomCommune": "CHALINDREY" + "codePostal": "11500", + "codeCommune": "11101", + "libelleAcheminement": "COUDONS", + "nomCommune": "COUDONS" }, { - "codePostal": "16300", - "codeCommune": "16186", - "libelleAcheminement": "LIGNIERES AMBLEVILLE", - "nomCommune": "LIGNIERES AMBLEVILLE" + "codePostal": "12140", + "codeCommune": "12226", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "17130", - "codeCommune": "17417", - "libelleAcheminement": "SALIGNAC DE MIRAMBEAU", - "nomCommune": "SALIGNAC DE MIRAMBEAU" + "codePostal": "24380", + "codeCommune": "24576", + "libelleAcheminement": "VEYRINES DE VERGT", + "nomCommune": "VEYRINES DE VERGT" }, { - "codePostal": "57260", - "codeCommune": "57266", - "libelleAcheminement": "GUEBLANGE LES DIEUZE", - "nomCommune": "GUEBLANGE LES DIEUZE" + "codePostal": "24420", + "codeCommune": "24521", + "libelleAcheminement": "SARLIAC SUR L ISLE", + "nomCommune": "SARLIAC SUR L ISLE" }, { - "codePostal": "52160", - "codeCommune": "52094", - "libelleAcheminement": "VALS DES TILLES", - "nomCommune": "VALS DES TILLES" + "codePostal": "11140", + "codeCommune": "11104", + "libelleAcheminement": "COUNOZOULS", + "nomCommune": "COUNOZOULS" }, { - "codePostal": "16230", - "codeCommune": "16191", - "libelleAcheminement": "LONNES", - "nomCommune": "LONNES" + "codePostal": "12250", + "codeCommune": "12229", + "libelleAcheminement": "ST JEAN D ALCAPIES", + "nomCommune": "ST JEAN D ALCAPIES" }, { - "codePostal": "17220", - "codeCommune": "17420", - "libelleAcheminement": "SALLES SUR MER", - "nomCommune": "SALLES SUR MER" + "codePostal": "24600", + "codeCommune": "24586", + "libelleAcheminement": "VILLETOUREIX", + "nomCommune": "VILLETOUREIX" }, { - "codePostal": "57880", - "codeCommune": "57274", - "libelleAcheminement": "GUERTING", - "nomCommune": "GUERTING" + "codePostal": "24800", + "codeCommune": "24522", + "libelleAcheminement": "SARRAZAC", + "nomCommune": "SARRAZAC" }, { - "codePostal": "52120", - "codeCommune": "52114", - "libelleAcheminement": "CHATEAUVILLAIN", - "nomCommune": "CHATEAUVILLAIN" + "codePostal": "11390", + "codeCommune": "11115", + "libelleAcheminement": "CUXAC CABARDES", + "nomCommune": "CUXAC CABARDES" }, { - "codePostal": "16270", - "codeCommune": "16192", - "libelleAcheminement": "TERRES DE HAUTE CHARENTE", - "nomCommune": "TERRES DE HAUTE CHARENTE" + "codePostal": "12120", + "codeCommune": "12234", + "libelleAcheminement": "STE JULIETTE SUR VIAUR", + "nomCommune": "STE JULIETTE SUR VIAUR" }, { - "codePostal": "17510", - "codeCommune": "17422", - "libelleAcheminement": "SEIGNE", - "nomCommune": "SEIGNE" + "codePostal": "25360", + "codeCommune": "25006", + "libelleAcheminement": "ADAM LES PASSAVANT", + "nomCommune": "ADAM LES PASSAVANT" }, { - "codePostal": "57405", - "codeCommune": "57280", - "libelleAcheminement": "GUNTZVILLER", - "nomCommune": "GUNTZVILLER" + "codePostal": "24270", + "codeCommune": "24526", + "libelleAcheminement": "SAVIGNAC LEDRIER", + "nomCommune": "SAVIGNAC LEDRIER" }, { - "codePostal": "52120", - "codeCommune": "52114", - "libelleAcheminement": "CHATEAUVILLAIN", - "nomCommune": "CHATEAUVILLAIN" + "codePostal": "11700", + "codeCommune": "11122", + "libelleAcheminement": "DOUZENS", + "nomCommune": "DOUZENS" }, { - "codePostal": "16230", - "codeCommune": "16200", - "libelleAcheminement": "MAINE DE BOIXE", - "nomCommune": "MAINE DE BOIXE" + "codePostal": "12620", + "codeCommune": "12236", + "libelleAcheminement": "ST LAURENT DE LEVEZOU", + "nomCommune": "ST LAURENT DE LEVEZOU" }, { - "codePostal": "17120", - "codeCommune": "17425", - "libelleAcheminement": "SEMUSSAC", - "nomCommune": "SEMUSSAC" + "codePostal": "25530", + "codeCommune": "25007", + "libelleAcheminement": "ADAM LES VERCEL", + "nomCommune": "ADAM LES VERCEL" }, { - "codePostal": "57300", - "codeCommune": "57283", - "libelleAcheminement": "HAGONDANGE", - "nomCommune": "HAGONDANGE" + "codePostal": "24290", + "codeCommune": "24531", + "libelleAcheminement": "SERGEAC", + "nomCommune": "SERGEAC" }, { - "codePostal": "52120", - "codeCommune": "52114", - "libelleAcheminement": "CHATEAUVILLAIN", - "nomCommune": "CHATEAUVILLAIN" + "codePostal": "11360", + "codeCommune": "11124", + "libelleAcheminement": "DURBAN CORBIERES", + "nomCommune": "DURBAN CORBIERES" }, { - "codePostal": "16120", - "codeCommune": "16204", - "libelleAcheminement": "BELLEVIGNE", - "nomCommune": "BELLEVIGNE" + "codePostal": "12560", + "codeCommune": "12237", + "libelleAcheminement": "ST LAURENT D OLT", + "nomCommune": "ST LAURENT D OLT" }, { - "codePostal": "17120", - "codeCommune": "17437", - "libelleAcheminement": "TALMONT SUR GIRONDE", - "nomCommune": "TALMONT SUR GIRONDE" + "codePostal": "25300", + "codeCommune": "25024", + "libelleAcheminement": "ARCON", + "nomCommune": "ARCON" }, { - "codePostal": "57690", - "codeCommune": "57284", - "libelleAcheminement": "HALLERING", - "nomCommune": "HALLERING" + "codePostal": "24500", + "codeCommune": "24532", + "libelleAcheminement": "SERRES ET MONTGUYARD", + "nomCommune": "SERRES ET MONTGUYARD" }, { - "codePostal": "52150", - "codeCommune": "52122", - "libelleAcheminement": "CHAUMONT LA VILLE", - "nomCommune": "CHAUMONT LA VILLE" + "codePostal": "11140", + "codeCommune": "11127", + "libelleAcheminement": "ESCOULOUBRE", + "nomCommune": "ESCOULOUBRE" }, { - "codePostal": "16140", - "codeCommune": "16207", - "libelleAcheminement": "MARCILLAC LANVILLE", - "nomCommune": "MARCILLAC LANVILLE" + "codePostal": "12300", + "codeCommune": "12240", + "libelleAcheminement": "ST PARTHEM", + "nomCommune": "ST PARTHEM" }, { - "codePostal": "17260", - "codeCommune": "17438", - "libelleAcheminement": "TANZAC", - "nomCommune": "TANZAC" + "codePostal": "25520", + "codeCommune": "25025", + "libelleAcheminement": "ARC SOUS CICON", + "nomCommune": "ARC SOUS CICON" }, { - "codePostal": "57880", - "codeCommune": "57288", - "libelleAcheminement": "HAM SOUS VARSBERG", - "nomCommune": "HAM SOUS VARSBERG" + "codePostal": "24240", + "codeCommune": "24534", + "libelleAcheminement": "SIGOULES ET FLAUGEAC", + "nomCommune": "SIGOULES ET FLAUGEAC" }, { - "codePostal": "52400", - "codeCommune": "52124", - "libelleAcheminement": "CHEZEAUX", - "nomCommune": "CHEZEAUX" + "codePostal": "11340", + "codeCommune": "11130", + "libelleAcheminement": "ESPEZEL", + "nomCommune": "ESPEZEL" }, { - "codePostal": "16170", - "codeCommune": "16208", - "libelleAcheminement": "MAREUIL", - "nomCommune": "MAREUIL" + "codePostal": "12120", + "codeCommune": "12255", + "libelleAcheminement": "SALMIECH", + "nomCommune": "SALMIECH" }, { - "codePostal": "17290", - "codeCommune": "17443", - "libelleAcheminement": "THAIRE", - "nomCommune": "THAIRE" + "codePostal": "25520", + "codeCommune": "25029", + "libelleAcheminement": "AUBONNE", + "nomCommune": "AUBONNE" }, { - "codePostal": "57170", - "codeCommune": "57290", - "libelleAcheminement": "HAMPONT", - "nomCommune": "HAMPONT" + "codePostal": "24360", + "codeCommune": "24541", + "libelleAcheminement": "SOUDAT", + "nomCommune": "SOUDAT" }, { - "codePostal": "52240", - "codeCommune": "52132", - "libelleAcheminement": "CLEFMONT", - "nomCommune": "CLEFMONT" + "codePostal": "11200", + "codeCommune": "11140", + "libelleAcheminement": "FERRALS LES CORBIERES", + "nomCommune": "FERRALS LES CORBIERES" }, { - "codePostal": "16110", - "codeCommune": "16209", - "libelleAcheminement": "MARILLAC LE FRANC", - "nomCommune": "MARILLAC LE FRANC" + "codePostal": "12700", + "codeCommune": "12257", + "libelleAcheminement": "CAUSSE ET DIEGE", + "nomCommune": "CAUSSE ET DIEGE" }, { - "codePostal": "17160", - "codeCommune": "17446", - "libelleAcheminement": "THORS", - "nomCommune": "THORS" + "codePostal": "25870", + "codeCommune": "25035", + "libelleAcheminement": "LES AUXONS", + "nomCommune": "LES AUXONS" }, { - "codePostal": "57340", - "codeCommune": "57297", - "libelleAcheminement": "HARPRICH", - "nomCommune": "HARPRICH" + "codePostal": "24390", + "codeCommune": "24555", + "libelleAcheminement": "TOURTOIRAC", + "nomCommune": "TOURTOIRAC" }, { - "codePostal": "52700", - "codeCommune": "52133", - "libelleAcheminement": "CLINCHAMP", - "nomCommune": "CLINCHAMP" + "codePostal": "11240", + "codeCommune": "11141", + "libelleAcheminement": "FERRAN", + "nomCommune": "FERRAN" }, { - "codePostal": "16570", - "codeCommune": "16210", - "libelleAcheminement": "MARSAC", - "nomCommune": "MARSAC" + "codePostal": "12200", + "codeCommune": "12259", + "libelleAcheminement": "SANVENSA", + "nomCommune": "SANVENSA" }, { - "codePostal": "17130", - "codeCommune": "17454", - "libelleAcheminement": "TUGERAS ST MAURICE", - "nomCommune": "TUGERAS ST MAURICE" + "codePostal": "25550", + "codeCommune": "25048", + "libelleAcheminement": "BAVANS", + "nomCommune": "BAVANS" }, { - "codePostal": "57230", - "codeCommune": "57301", - "libelleAcheminement": "HASPELSCHIEDT", - "nomCommune": "HASPELSCHIEDT" + "codePostal": "24600", + "codeCommune": "24564", + "libelleAcheminement": "VANXAINS", + "nomCommune": "VANXAINS" }, { - "codePostal": "52600", - "codeCommune": "52134", - "libelleAcheminement": "COHONS", - "nomCommune": "COHONS" + "codePostal": "11300", + "codeCommune": "11142", + "libelleAcheminement": "FESTES ET ST ANDRE", + "nomCommune": "FESTES ET ST ANDRE" }, { - "codePostal": "16100", - "codeCommune": "16217", - "libelleAcheminement": "MERPINS", - "nomCommune": "MERPINS" + "codePostal": "12260", + "codeCommune": "12261", + "libelleAcheminement": "SAUJAC", + "nomCommune": "SAUJAC" }, { - "codePostal": "17380", - "codeCommune": "17457", - "libelleAcheminement": "LA DEVISE", - "nomCommune": "LA DEVISE" + "codePostal": "25380", + "codeCommune": "25051", + "libelleAcheminement": "BELLEHERBE", + "nomCommune": "BELLEHERBE" }, { - "codePostal": "57790", - "codeCommune": "57302", - "libelleAcheminement": "HATTIGNY", - "nomCommune": "HATTIGNY" + "codePostal": "24520", + "codeCommune": "24570", + "libelleAcheminement": "VERDON", + "nomCommune": "VERDON" }, { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "11560", + "codeCommune": "11145", + "libelleAcheminement": "FLEURY D AUDE", + "nomCommune": "FLEURY" }, { - "codePostal": "16190", - "codeCommune": "16230", - "libelleAcheminement": "MONTMOREAU", - "nomCommune": "MONTMOREAU" + "codePostal": "12150", + "codeCommune": "12270", + "libelleAcheminement": "SEVERAC D AVEYRON", + "nomCommune": "SEVERAC D AVEYRON" }, { - "codePostal": "17500", - "codeCommune": "17458", - "libelleAcheminement": "VANZAC", - "nomCommune": "VANZAC" + "codePostal": "25200", + "codeCommune": "25057", + "libelleAcheminement": "BETHONCOURT", + "nomCommune": "BETHONCOURT" }, { - "codePostal": "57280", - "codeCommune": "57303", - "libelleAcheminement": "HAUCONCOURT", - "nomCommune": "HAUCONCOURT" + "codePostal": "24380", + "codeCommune": "24571", + "libelleAcheminement": "VERGT", + "nomCommune": "VERGT" }, { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "11800", + "codeCommune": "11146", + "libelleAcheminement": "FLOURE", + "nomCommune": "FLOURE" }, { - "codePostal": "16600", - "codeCommune": "16232", - "libelleAcheminement": "MORNAC", - "nomCommune": "MORNAC" + "codePostal": "12210", + "codeCommune": "12273", + "libelleAcheminement": "SOULAGES BONNEVAL", + "nomCommune": "SOULAGES BONNEVAL" }, { - "codePostal": "17400", - "codeCommune": "17459", - "libelleAcheminement": "VARAIZE", - "nomCommune": "VARAIZE" + "codePostal": "25190", + "codeCommune": "25061", + "libelleAcheminement": "BIEF", + "nomCommune": "BIEF" }, { - "codePostal": "57930", - "codeCommune": "57310", - "libelleAcheminement": "HELLERING LES FENETRANGE", - "nomCommune": "HELLERING LES FENETRANGE" + "codePostal": "24250", + "codeCommune": "24575", + "libelleAcheminement": "VEYRINES DE DOMME", + "nomCommune": "VEYRINES DE DOMME" }, { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "11140", + "codeCommune": "11147", + "libelleAcheminement": "FONTANES DE SAULT", + "nomCommune": "FONTANES DE SAULT" }, { - "codePostal": "16120", - "codeCommune": "16233", - "libelleAcheminement": "MOSNAC ST SIMEUX", - "nomCommune": "MOSNAC ST SIMEUX" + "codePostal": "12360", + "codeCommune": "12274", + "libelleAcheminement": "SYLVANES", + "nomCommune": "SYLVANES" }, { - "codePostal": "17100", - "codeCommune": "17462", - "libelleAcheminement": "VENERAND", - "nomCommune": "VENERAND" + "codePostal": "25330", + "codeCommune": "25070", + "libelleAcheminement": "BOLANDOZ", + "nomCommune": "BOLANDOZ" }, { - "codePostal": "57220", - "codeCommune": "57312", - "libelleAcheminement": "HELSTROFF", - "nomCommune": "HELSTROFF" + "codePostal": "24610", + "codeCommune": "24584", + "libelleAcheminement": "VILLEFRANCHE DE LONCHAT", + "nomCommune": "VILLEFRANCHE DE LONCHAT" }, { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "11360", + "codeCommune": "11157", + "libelleAcheminement": "FRAISSE DES CORBIERES", + "nomCommune": "FRAISSE DES CORBIERES" }, { - "codePostal": "16310", - "codeCommune": "16239", - "libelleAcheminement": "MOUZON", - "nomCommune": "MOUZON" + "codePostal": "12360", + "codeCommune": "12275", + "libelleAcheminement": "TAURIAC DE CAMARES", + "nomCommune": "TAURIAC DE CAMARES" }, { - "codePostal": "17330", - "codeCommune": "17464", - "libelleAcheminement": "VERGNE", - "nomCommune": "VERGNE" + "codePostal": "25210", + "codeCommune": "25074", + "libelleAcheminement": "BONNETAGE", + "nomCommune": "BONNETAGE" }, { - "codePostal": "57830", - "codeCommune": "57314", - "libelleAcheminement": "HEMING", - "nomCommune": "HEMING" + "codePostal": "24550", + "codeCommune": "24585", + "libelleAcheminement": "VILLEFRANCHE DU PERIGORD", + "nomCommune": "VILLEFRANCHE DU PERIGORD" }, { - "codePostal": "52210", - "codeCommune": "52151", - "libelleAcheminement": "COUR L EVEQUE", - "nomCommune": "COUR L EVEQUE" + "codePostal": "11270", + "codeCommune": "11159", + "libelleAcheminement": "GAJA LA SELVE", + "nomCommune": "GAJA LA SELVE" }, { - "codePostal": "16230", - "codeCommune": "16241", - "libelleAcheminement": "NANCLARS", - "nomCommune": "NANCLARS" + "codePostal": "12600", + "codeCommune": "12280", + "libelleAcheminement": "THERONDELS", + "nomCommune": "THERONDELS" }, { - "codePostal": "17510", - "codeCommune": "17477", - "libelleAcheminement": "VILLIERS COUTURE", - "nomCommune": "VILLIERS COUTURE" + "codePostal": "25360", + "codeCommune": "25078", + "libelleAcheminement": "BOUCLANS", + "nomCommune": "BOUCLANS" }, { - "codePostal": "57450", - "codeCommune": "57316", - "libelleAcheminement": "HENRIVILLE", - "nomCommune": "HENRIVILLE" + "codePostal": "25340", + "codeCommune": "25003", + "libelleAcheminement": "ABBENANS", + "nomCommune": "ABBENANS" }, { - "codePostal": "52330", - "codeCommune": "52157", - "libelleAcheminement": "CURMONT", - "nomCommune": "CURMONT" + "codePostal": "11250", + "codeCommune": "11169", + "libelleAcheminement": "GREFFEIL", + "nomCommune": "GREFFEIL" }, { - "codePostal": "16700", - "codeCommune": "16242", - "libelleAcheminement": "NANTEUIL EN VALLEE", - "nomCommune": "NANTEUIL EN VALLEE" + "codePostal": "13190", + "codeCommune": "13002", + "libelleAcheminement": "ALLAUCH", + "nomCommune": "ALLAUCH" }, { - "codePostal": "17510", - "codeCommune": "17478", - "libelleAcheminement": "VINAX", - "nomCommune": "VINAX" + "codePostal": "25150", + "codeCommune": "25082", + "libelleAcheminement": "BOURGUIGNON", + "nomCommune": "BOURGUIGNON" }, { - "codePostal": "57400", - "codeCommune": "57321", - "libelleAcheminement": "HESSE", - "nomCommune": "HESSE" + "codePostal": "25300", + "codeCommune": "25012", + "libelleAcheminement": "LES ALLIES", + "nomCommune": "LES ALLIES" }, { - "codePostal": "52190", - "codeCommune": "52158", - "libelleAcheminement": "CUSEY", - "nomCommune": "CUSEY" + "codePostal": "11330", + "codeCommune": "11187", + "libelleAcheminement": "LANET", + "nomCommune": "LANET" }, { - "codePostal": "16220", - "codeCommune": "16250", - "libelleAcheminement": "ORGEDEUIL", - "nomCommune": "ORGEDEUIL" + "codePostal": "13390", + "codeCommune": "13007", + "libelleAcheminement": "AURIOL", + "nomCommune": "AURIOL" }, { - "codePostal": "17400", - "codeCommune": "17481", - "libelleAcheminement": "VOISSAY", - "nomCommune": "VOISSAY" + "codePostal": "25340", + "codeCommune": "25087", + "libelleAcheminement": "BRANNE", + "nomCommune": "BRANNE" }, { - "codePostal": "57330", - "codeCommune": "57323", - "libelleAcheminement": "HETTANGE GRANDE", - "nomCommune": "HETTANGE GRANDE" + "codePostal": "25340", + "codeCommune": "25018", + "libelleAcheminement": "ANTEUIL", + "nomCommune": "ANTEUIL" }, { - "codePostal": "52240", - "codeCommune": "52161", - "libelleAcheminement": "DAILLECOURT", - "nomCommune": "DAILLECOURT" + "codePostal": "11600", + "codeCommune": "11194", + "libelleAcheminement": "LASTOURS", + "nomCommune": "LASTOURS" }, { - "codePostal": "16210", - "codeCommune": "16252", - "libelleAcheminement": "ORIVAL", - "nomCommune": "ORIVAL" + "codePostal": "13121", + "codeCommune": "13008", + "libelleAcheminement": "AURONS", + "nomCommune": "AURONS" }, { - "codePostal": "17840", - "codeCommune": "17486", - "libelleAcheminement": "LA BREE LES BAINS", - "nomCommune": "LA BREE LES BAINS" + "codePostal": "25250", + "codeCommune": "25093", + "libelleAcheminement": "BRETIGNEY", + "nomCommune": "BRETIGNEY" }, { - "codePostal": "57405", - "codeCommune": "57333", - "libelleAcheminement": "HOMMARTING", - "nomCommune": "HOMMARTING" + "codePostal": "25400", + "codeCommune": "25020", + "libelleAcheminement": "ARBOUANS", + "nomCommune": "ARBOUANS" }, { - "codePostal": "52270", - "codeCommune": "52173", - "libelleAcheminement": "DOMREMY LANDEVILLE", - "nomCommune": "DOMREMY LANDEVILLE" + "codePostal": "11400", + "codeCommune": "11195", + "libelleAcheminement": "LAURABUC", + "nomCommune": "LAURABUC" }, { - "codePostal": "16390", - "codeCommune": "16260", - "libelleAcheminement": "PILLAC", - "nomCommune": "PILLAC" + "codePostal": "13720", + "codeCommune": "13013", + "libelleAcheminement": "BELCODENE", + "nomCommune": "BELCODENE" }, { - "codePostal": "18410", - "codeCommune": "18011", - "libelleAcheminement": "ARGENT SUR SAULDRE", - "nomCommune": "ARGENT SUR SAULDRE" + "codePostal": "25600", + "codeCommune": "25097", + "libelleAcheminement": "BROGNARD", + "nomCommune": "BROGNARD" }, { - "codePostal": "57870", - "codeCommune": "57334", - "libelleAcheminement": "HOMMERT", - "nomCommune": "HOMMERT" + "codePostal": "25610", + "codeCommune": "25021", + "libelleAcheminement": "ARC ET SENANS", + "nomCommune": "ARC ET SENANS" }, { - "codePostal": "52150", - "codeCommune": "52174", - "libelleAcheminement": "DONCOURT SUR MEUSE", - "nomCommune": "DONCOURT SUR MEUSE" + "codePostal": "11300", + "codeCommune": "11197", + "libelleAcheminement": "LAURAGUEL", + "nomCommune": "LAURAGUEL" }, { - "codePostal": "16190", - "codeCommune": "16267", - "libelleAcheminement": "POULLIGNAC", - "nomCommune": "POULLIGNAC" + "codePostal": "13320", + "codeCommune": "13015", + "libelleAcheminement": "BOUC BEL AIR", + "nomCommune": "BOUC BEL AIR" }, { - "codePostal": "18220", - "codeCommune": "18019", - "libelleAcheminement": "AZY", - "nomCommune": "AZY" + "codePostal": "25320", + "codeCommune": "25103", + "libelleAcheminement": "BUSY", + "nomCommune": "BUSY" }, { - "codePostal": "57720", - "codeCommune": "57338", - "libelleAcheminement": "HOTTVILLER", - "nomCommune": "HOTTVILLER" + "codePostal": "25110", + "codeCommune": "25032", + "libelleAcheminement": "AUTECHAUX", + "nomCommune": "AUTECHAUX" }, { - "codePostal": "52230", - "codeCommune": "52187", - "libelleAcheminement": "EPIZON", - "nomCommune": "EPIZON" + "codePostal": "11240", + "codeCommune": "11204", + "libelleAcheminement": "LIGNAIROLLES", + "nomCommune": "LIGNAIROLLES" }, { - "codePostal": "16110", - "codeCommune": "16280", - "libelleAcheminement": "RIVIERES", - "nomCommune": "RIVIERES" + "codePostal": "13720", + "codeCommune": "13016", + "libelleAcheminement": "LA BOUILLADISSE", + "nomCommune": "LA BOUILLADISSE" }, { - "codePostal": "18210", - "codeCommune": "18021", - "libelleAcheminement": "BANNEGON", - "nomCommune": "BANNEGON" + "codePostal": "25440", + "codeCommune": "25104", + "libelleAcheminement": "BY", + "nomCommune": "BY" }, { - "codePostal": "57400", - "codeCommune": "57344", - "libelleAcheminement": "IMLING", - "nomCommune": "IMLING" + "codePostal": "25720", + "codeCommune": "25036", + "libelleAcheminement": "AVANNE AVENEY", + "nomCommune": "AVANNE AVENEY" }, { - "codePostal": "52270", - "codeCommune": "52187", - "libelleAcheminement": "EPIZON", - "nomCommune": "EPIZON" + "codePostal": "11410", + "codeCommune": "11208", + "libelleAcheminement": "LA LOUVIERE LAURAGAIS", + "nomCommune": "LA LOUVIERE LAURAGAIS" }, { - "codePostal": "16110", - "codeCommune": "16281", - "libelleAcheminement": "LA ROCHEFOUCAULD EN ANGOUMOIS", - "nomCommune": "LA ROCHEFOUCAULD EN ANGOUMOIS" + "codePostal": "13720", + "codeCommune": "13016", + "libelleAcheminement": "LA BOUILLADISSE", + "nomCommune": "LA BOUILLADISSE" }, { - "codePostal": "18260", - "codeCommune": "18022", - "libelleAcheminement": "BARLIEU", - "nomCommune": "BARLIEU" + "codePostal": "25320", + "codeCommune": "25105", + "libelleAcheminement": "BYANS SUR DOUBS", + "nomCommune": "BYANS SUR DOUBS" }, { - "codePostal": "57670", - "codeCommune": "57346", - "libelleAcheminement": "INSMING", - "nomCommune": "INSMING" + "codePostal": "25490", + "codeCommune": "25040", + "libelleAcheminement": "BADEVEL", + "nomCommune": "BADEVEL" }, { - "codePostal": "52410", - "codeCommune": "52194", - "libelleAcheminement": "EURVILLE BIENVILLE", - "nomCommune": "EURVILLE BIENVILLE" + "codePostal": "11120", + "codeCommune": "11212", + "libelleAcheminement": "MAILHAC", + "nomCommune": "MAILHAC" }, { - "codePostal": "16210", - "codeCommune": "16284", - "libelleAcheminement": "ROUFFIAC", - "nomCommune": "ROUFFIAC" + "codePostal": "13720", + "codeCommune": "13016", + "libelleAcheminement": "LA BOUILLADISSE", + "nomCommune": "LA BOUILLADISSE" }, { - "codePostal": "18800", - "codeCommune": "18023", - "libelleAcheminement": "BAUGY", - "nomCommune": "BAUGY" + "codePostal": "25380", + "codeCommune": "25113", + "libelleAcheminement": "CHAMESEY", + "nomCommune": "CHAMESEY" }, { - "codePostal": "57630", - "codeCommune": "57353", - "libelleAcheminement": "JUVELIZE", - "nomCommune": "JUVELIZE" + "codePostal": "25380", + "codeCommune": "25046", + "libelleAcheminement": "BATTENANS VARIN", + "nomCommune": "BATTENANS VARIN" }, { - "codePostal": "52500", - "codeCommune": "52197", - "libelleAcheminement": "FAYL BILLOT", - "nomCommune": "FAYL BILLOT" + "codePostal": "11300", + "codeCommune": "11214", + "libelleAcheminement": "MALRAS", + "nomCommune": "MALRAS" }, { - "codePostal": "16320", - "codeCommune": "16285", - "libelleAcheminement": "ROUGNAC", - "nomCommune": "ROUGNAC" + "codePostal": "13160", + "codeCommune": "13027", + "libelleAcheminement": "CHATEAURENARD", + "nomCommune": "CHATEAURENARD" }, { - "codePostal": "18320", - "codeCommune": "18025", - "libelleAcheminement": "BEFFES", - "nomCommune": "BEFFES" + "codePostal": "25330", + "codeCommune": "25120", + "libelleAcheminement": "CHANTRANS", + "nomCommune": "CHANTRANS" }, { - "codePostal": "57430", - "codeCommune": "57357", - "libelleAcheminement": "KAPPELKINGER", - "nomCommune": "KAPPELKINGER" + "codePostal": "25250", + "codeCommune": "25059", + "libelleAcheminement": "BEUTAL", + "nomCommune": "BEUTAL" }, { - "codePostal": "52500", - "codeCommune": "52197", - "libelleAcheminement": "FAYL BILLOT", - "nomCommune": "FAYL BILLOT" + "codePostal": "11300", + "codeCommune": "11216", + "libelleAcheminement": "MALVIES", + "nomCommune": "MALVIES" }, { - "codePostal": "16440", - "codeCommune": "16287", - "libelleAcheminement": "ROULLET ST ESTEPHE", - "nomCommune": "ROULLET ST ESTEPHE" + "codePostal": "13510", + "codeCommune": "13032", + "libelleAcheminement": "EGUILLES", + "nomCommune": "EGUILLES" }, { - "codePostal": "18210", - "codeCommune": "18029", - "libelleAcheminement": "BESSAIS LE FROMENTAL", - "nomCommune": "BESSAIS LE FROMENTAL" + "codePostal": "25440", + "codeCommune": "25126", + "libelleAcheminement": "CHARNAY", + "nomCommune": "CHARNAY" }, { - "codePostal": "57480", - "codeCommune": "57364", - "libelleAcheminement": "KIRSCH LES SIERCK", - "nomCommune": "KIRSCH LES SIERCK" + "codePostal": "25250", + "codeCommune": "25066", + "libelleAcheminement": "BLUSSANGEAUX", + "nomCommune": "BLUSSANGEAUX" }, { - "codePostal": "52300", - "codeCommune": "52199", - "libelleAcheminement": "FERRIERE ET LAFOLIE", - "nomCommune": "FERRIERE ET LAFOLIE" + "codePostal": "11120", + "codeCommune": "11217", + "libelleAcheminement": "MARCORIGNAN", + "nomCommune": "MARCORIGNAN" }, { - "codePostal": "16310", - "codeCommune": "16293", - "libelleAcheminement": "ST ADJUTORY", - "nomCommune": "ST ADJUTORY" + "codePostal": "13580", + "codeCommune": "13037", + "libelleAcheminement": "LA FARE LES OLIVIERS", + "nomCommune": "LA FARE LES OLIVIERS" }, { - "codePostal": "18120", - "codeCommune": "18036", - "libelleAcheminement": "BRINAY", - "nomCommune": "BRINAY" + "codePostal": "25640", + "codeCommune": "25132", + "libelleAcheminement": "CHATILLON GUYOTTE", + "nomCommune": "CHATILLON GUYOTTE" }, { - "codePostal": "57430", - "codeCommune": "57366", - "libelleAcheminement": "KIRVILLER", - "nomCommune": "KIRVILLER" + "codePostal": "25250", + "codeCommune": "25067", + "libelleAcheminement": "BLUSSANS", + "nomCommune": "BLUSSANS" }, { - "codePostal": "52250", - "codeCommune": "52200", - "libelleAcheminement": "FLAGEY", - "nomCommune": "FLAGEY" + "codePostal": "11330", + "codeCommune": "11224", + "libelleAcheminement": "MASSAC", + "nomCommune": "MASSAC" }, { - "codePostal": "16300", - "codeCommune": "16301", - "libelleAcheminement": "ST AULAIS LA CHAPELLE", - "nomCommune": "ST AULAIS LA CHAPELLE" + "codePostal": "13270", + "codeCommune": "13039", + "libelleAcheminement": "FOS SUR MER", + "nomCommune": "FOS SUR MER" }, { - "codePostal": "18120", - "codeCommune": "18044", - "libelleAcheminement": "CERBOIS", - "nomCommune": "CERBOIS" + "codePostal": "25440", + "codeCommune": "25143", + "libelleAcheminement": "CHAY", + "nomCommune": "CHAY" }, { - "codePostal": "57560", - "codeCommune": "57374", - "libelleAcheminement": "LAFRIMBOLLE", - "nomCommune": "LAFRIMBOLLE" + "codePostal": "25870", + "codeCommune": "25073", + "libelleAcheminement": "BONNAY", + "nomCommune": "BONNAY" }, { - "codePostal": "52700", - "codeCommune": "52204", - "libelleAcheminement": "FORCEY", - "nomCommune": "FORCEY" + "codePostal": "11140", + "codeCommune": "11229", + "libelleAcheminement": "MAZUBY", + "nomCommune": "MAZUBY" }, { - "codePostal": "16350", - "codeCommune": "16310", - "libelleAcheminement": "ST COUTANT", - "nomCommune": "ST COUTANT" + "codePostal": "13120", + "codeCommune": "13041", + "libelleAcheminement": "GARDANNE", + "nomCommune": "GARDANNE" }, { - "codePostal": "18380", - "codeCommune": "18047", - "libelleAcheminement": "LA CHAPELLE D ANGILLON", - "nomCommune": "LA CHAPELLE D ANGILLON" + "codePostal": "25770", + "codeCommune": "25147", + "libelleAcheminement": "CHEMAUDIN ET VAUX", + "nomCommune": "CHEMAUDIN ET VAUX" }, { - "codePostal": "57790", - "codeCommune": "57380", - "libelleAcheminement": "LANEUVEVILLE LES LORQUIN", - "nomCommune": "LANEUVEVILLE LES LORQUIN" + "codePostal": "25560", + "codeCommune": "25079", + "libelleAcheminement": "BOUJAILLES", + "nomCommune": "BOUJAILLES" }, { - "codePostal": "52320", - "codeCommune": "52214", - "libelleAcheminement": "LA GENEVROYE", - "nomCommune": "LA GENEVROYE" + "codePostal": "11140", + "codeCommune": "11230", + "libelleAcheminement": "MERIAL", + "nomCommune": "MERIAL" }, { - "codePostal": "16450", - "codeCommune": "16329", - "libelleAcheminement": "ST LAURENT DE CERIS", - "nomCommune": "ST LAURENT DE CERIS" + "codePostal": "13420", + "codeCommune": "13042", + "libelleAcheminement": "GEMENOS", + "nomCommune": "GEMENOS" }, { - "codePostal": "18210", - "codeCommune": "18052", - "libelleAcheminement": "CHARENTON DU CHER", - "nomCommune": "CHARENTON DU CHER" + "codePostal": "25170", + "codeCommune": "25150", + "libelleAcheminement": "CHEVIGNEY SUR L OGNON", + "nomCommune": "CHEVIGNEY SUR L OGNON" }, { - "codePostal": "57590", - "codeCommune": "57381", - "libelleAcheminement": "LANEUVEVILLE EN SAULNOIS", - "nomCommune": "LANEUVEVILLE EN SAULNOIS" + "codePostal": "25530", + "codeCommune": "25089", + "libelleAcheminement": "BREMONDANS", + "nomCommune": "BREMONDANS" }, { - "codePostal": "52230", - "codeCommune": "52218", - "libelleAcheminement": "GERMAY", - "nomCommune": "GERMAY" + "codePostal": "11410", + "codeCommune": "11239", + "libelleAcheminement": "MONTAURIOL", + "nomCommune": "MONTAURIOL" }, { - "codePostal": "16500", - "codeCommune": "16337", - "libelleAcheminement": "ST MAURICE DES LIONS", - "nomCommune": "ST MAURICE DES LIONS" + "codePostal": "13180", + "codeCommune": "13043", + "libelleAcheminement": "GIGNAC LA NERTHE", + "nomCommune": "GIGNAC LA NERTHE" }, { - "codePostal": "18290", - "codeCommune": "18055", - "libelleAcheminement": "CHAROST", - "nomCommune": "CHAROST" + "codePostal": "25330", + "codeCommune": "25155", + "libelleAcheminement": "CLERON", + "nomCommune": "CLERON" }, { - "codePostal": "57660", - "codeCommune": "57384", - "libelleAcheminement": "LANING", - "nomCommune": "LANING" + "codePostal": "25120", + "codeCommune": "25091", + "libelleAcheminement": "LES BRESEUX", + "nomCommune": "LES BRESEUX" }, { - "codePostal": "52500", - "codeCommune": "52223", - "libelleAcheminement": "GILLEY", - "nomCommune": "GILLEY" + "codePostal": "11320", + "codeCommune": "11243", + "libelleAcheminement": "MONTFERRAND", + "nomCommune": "MONTFERRAND" }, { - "codePostal": "16170", - "codeCommune": "16339", - "libelleAcheminement": "VAL D AUGE", - "nomCommune": "VAL D AUGE" + "codePostal": "13180", + "codeCommune": "13043", + "libelleAcheminement": "GIGNAC LA NERTHE", + "nomCommune": "GIGNAC LA NERTHE" }, { - "codePostal": "18800", - "codeCommune": "18056", - "libelleAcheminement": "CHASSY", - "nomCommune": "CHASSY" + "codePostal": "25340", + "codeCommune": "25156", + "libelleAcheminement": "PAYS DE CLERVAL", + "nomCommune": "PAYS DE CLERVAL" }, { - "codePostal": "57530", - "codeCommune": "57385", - "libelleAcheminement": "LAQUENEXY", - "nomCommune": "LAQUENEXY" + "codePostal": "25110", + "codeCommune": "25094", + "libelleAcheminement": "BRETIGNEY NOTRE DAME", + "nomCommune": "BRETIGNEY NOTRE DAME" }, { - "codePostal": "52330", - "codeCommune": "52232", - "libelleAcheminement": "GUINDRECOURT SUR BLAISE", - "nomCommune": "GUINDRECOURT SUR BLAISE" + "codePostal": "11230", + "codeCommune": "11249", + "libelleAcheminement": "MONTJARDIN", + "nomCommune": "MONTJARDIN" }, { - "codePostal": "16470", - "codeCommune": "16341", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "13850", + "codeCommune": "13046", + "libelleAcheminement": "GREASQUE", + "nomCommune": "GREASQUE" }, { - "codePostal": "18200", - "codeCommune": "18069", - "libelleAcheminement": "COLOMBIERS", - "nomCommune": "COLOMBIERS" + "codePostal": "25500", + "codeCommune": "25160", + "libelleAcheminement": "LES COMBES", + "nomCommune": "LES COMBES" }, { - "codePostal": "57480", - "codeCommune": "57388", - "libelleAcheminement": "LAUNSTROFF", - "nomCommune": "LAUNSTROFF" + "codePostal": "25440", + "codeCommune": "25098", + "libelleAcheminement": "BUFFARD", + "nomCommune": "BUFFARD" }, { - "codePostal": "52150", - "codeCommune": "52234", - "libelleAcheminement": "HACOURT", - "nomCommune": "HACOURT" + "codePostal": "11330", + "codeCommune": "11250", + "libelleAcheminement": "MONTJOI", + "nomCommune": "MONTJOI" }, { - "codePostal": "16210", - "codeCommune": "16347", - "libelleAcheminement": "ST ROMAIN", - "nomCommune": "ST ROMAIN" + "codePostal": "13410", + "codeCommune": "13050", + "libelleAcheminement": "LAMBESC", + "nomCommune": "LAMBESC" }, { - "codePostal": "18140", - "codeCommune": "18077", - "libelleAcheminement": "COUY", - "nomCommune": "COUY" + "codePostal": "25410", + "codeCommune": "25164", + "libelleAcheminement": "CORCONDRAY", + "nomCommune": "CORCONDRAY" }, { - "codePostal": "57720", - "codeCommune": "57393", - "libelleAcheminement": "LENGELSHEIM", - "nomCommune": "LENGELSHEIM" + "codePostal": "25520", + "codeCommune": "25099", + "libelleAcheminement": "BUGNY", + "nomCommune": "BUGNY" }, { - "codePostal": "52100", - "codeCommune": "52235", - "libelleAcheminement": "HALLIGNICOURT", - "nomCommune": "HALLIGNICOURT" + "codePostal": "11500", + "codeCommune": "11263", + "libelleAcheminement": "NEBIAS", + "nomCommune": "NEBIAS" }, { - "codePostal": "16290", - "codeCommune": "16348", - "libelleAcheminement": "ST SATURNIN", - "nomCommune": "ST SATURNIN" + "codePostal": "13117", + "codeCommune": "13056", + "libelleAcheminement": "MARTIGUES", + "nomCommune": "MARTIGUES" }, { - "codePostal": "18200", - "codeCommune": "18086", - "libelleAcheminement": "DREVANT", - "nomCommune": "DREVANT" + "codePostal": "25440", + "codeCommune": "25171", + "libelleAcheminement": "COURCELLES", + "nomCommune": "COURCELLES" }, { - "codePostal": "57660", - "codeCommune": "57398", - "libelleAcheminement": "LEYVILLER", - "nomCommune": "LEYVILLER" + "codePostal": "25170", + "codeCommune": "25101", + "libelleAcheminement": "BURGILLE", + "nomCommune": "BURGILLE" }, { - "codePostal": "52290", - "codeCommune": "52244", - "libelleAcheminement": "HUMBECOURT", - "nomCommune": "HUMBECOURT" + "codePostal": "11140", + "codeCommune": "11265", + "libelleAcheminement": "NIORT DE SAULT", + "nomCommune": "NIORT DE SAULT" }, { - "codePostal": "16480", - "codeCommune": "16365", - "libelleAcheminement": "SAUVIGNAC", - "nomCommune": "SAUVIGNAC" + "codePostal": "13500", + "codeCommune": "13056", + "libelleAcheminement": "MARTIGUES", + "nomCommune": "MARTIGUES" }, { - "codePostal": "18300", - "codeCommune": "18098", - "libelleAcheminement": "GARDEFORT", - "nomCommune": "GARDEFORT" + "codePostal": "25530", + "codeCommune": "25175", + "libelleAcheminement": "COURTETAIN ET SALANS", + "nomCommune": "COURTETAIN ET SALANS" }, { - "codePostal": "57420", - "codeCommune": "57403", - "libelleAcheminement": "LIEHON", - "nomCommune": "LIEHON" + "codePostal": "25290", + "codeCommune": "25106", + "libelleAcheminement": "CADEMENE", + "nomCommune": "CADEMENE" }, { - "codePostal": "52700", - "codeCommune": "52245", - "libelleAcheminement": "HUMBERVILLE", - "nomCommune": "HUMBERVILLE" + "codePostal": "11210", + "codeCommune": "11266", + "libelleAcheminement": "PORT LA NOUVELLE", + "nomCommune": "PORT LA NOUVELLE" }, { - "codePostal": "16380", - "codeCommune": "16372", - "libelleAcheminement": "SOUFFRIGNAC", - "nomCommune": "SOUFFRIGNAC" + "codePostal": "13103", + "codeCommune": "13057", + "libelleAcheminement": "MAS BLANC DES ALPILLES", + "nomCommune": "MAS BLANC DES ALPILLES" }, { - "codePostal": "18140", - "codeCommune": "18110", - "libelleAcheminement": "HERRY", - "nomCommune": "HERRY" + "codePostal": "25270", + "codeCommune": "25180", + "libelleAcheminement": "CROUZET MIGETTE", + "nomCommune": "CROUZET MIGETTE" }, { - "codePostal": "57650", - "codeCommune": "57411", - "libelleAcheminement": "LOMMERANGE", - "nomCommune": "LOMMERANGE" + "codePostal": "25300", + "codeCommune": "25110", + "libelleAcheminement": "CHAFFOIS", + "nomCommune": "CHAFFOIS" }, { - "codePostal": "52190", - "codeCommune": "52249", - "libelleAcheminement": "ISOMES", - "nomCommune": "ISOMES" + "codePostal": "11200", + "codeCommune": "11267", + "libelleAcheminement": "ORNAISONS", + "nomCommune": "ORNAISONS" }, { - "codePostal": "16240", - "codeCommune": "16381", - "libelleAcheminement": "THEIL RABIER", - "nomCommune": "THEIL RABIER" + "codePostal": "13890", + "codeCommune": "13065", + "libelleAcheminement": "MOURIES", + "nomCommune": "MOURIES" }, { - "codePostal": "18350", - "codeCommune": "18113", - "libelleAcheminement": "IGNOL", - "nomCommune": "IGNOL" + "codePostal": "25680", + "codeCommune": "25181", + "libelleAcheminement": "CUBRIAL", + "nomCommune": "CUBRIAL" }, { - "codePostal": "57050", - "codeCommune": "57412", - "libelleAcheminement": "LONGEVILLE LES METZ", - "nomCommune": "LONGEVILLE LES METZ" + "codePostal": "25220", + "codeCommune": "25111", + "libelleAcheminement": "CHALEZE", + "nomCommune": "CHALEZE" }, { - "codePostal": "52300", - "codeCommune": "52250", - "libelleAcheminement": "JOINVILLE", - "nomCommune": "JOINVILLE" + "codePostal": "11300", + "codeCommune": "11274", + "libelleAcheminement": "PAULIGNE", + "nomCommune": "PAULIGNE" }, { - "codePostal": "16330", - "codeCommune": "16393", - "libelleAcheminement": "VARS", - "nomCommune": "VARS" + "codePostal": "13640", + "codeCommune": "13084", + "libelleAcheminement": "LA ROQUE D ANTHERON", + "nomCommune": "LA ROQUE D ANTHERON" }, { - "codePostal": "18160", - "codeCommune": "18114", - "libelleAcheminement": "INEUIL", - "nomCommune": "INEUIL" + "codePostal": "25680", + "codeCommune": "25182", + "libelleAcheminement": "CUBRY", + "nomCommune": "CUBRY" }, { - "codePostal": "57510", - "codeCommune": "57419", - "libelleAcheminement": "LOUPERSHOUSE", - "nomCommune": "LOUPERSHOUSE" + "codePostal": "25640", + "codeCommune": "25117", + "libelleAcheminement": "CHAMPOUX", + "nomCommune": "CHAMPOUX" }, { - "codePostal": "52330", - "codeCommune": "52254", - "libelleAcheminement": "LACHAPELLE EN BLAISY", - "nomCommune": "LACHAPELLE EN BLAISY" + "codePostal": "11230", + "codeCommune": "11282", + "libelleAcheminement": "PEYREFITTE DU RAZES", + "nomCommune": "PEYREFITTE DU RAZES" }, { - "codePostal": "16140", - "codeCommune": "16397", - "libelleAcheminement": "VERDILLE", - "nomCommune": "VERDILLE" + "codePostal": "13740", + "codeCommune": "13088", + "libelleAcheminement": "LE ROVE", + "nomCommune": "LE ROVE" }, { - "codePostal": "18340", - "codeCommune": "18122", - "libelleAcheminement": "LAPAN", - "nomCommune": "LAPAN" + "codePostal": "25150", + "codeCommune": "25187", + "libelleAcheminement": "DAMBELIN", + "nomCommune": "DAMBELIN" }, { - "codePostal": "57580", - "codeCommune": "57425", - "libelleAcheminement": "LUPPY", - "nomCommune": "LUPPY" + "codePostal": "25470", + "codeCommune": "25124", + "libelleAcheminement": "CHARMAUVILLERS", + "nomCommune": "CHARMAUVILLERS" }, { - "codePostal": "52310", - "codeCommune": "52260", - "libelleAcheminement": "LAMANCINE", - "nomCommune": "LAMANCINE" + "codePostal": "11190", + "codeCommune": "11287", + "libelleAcheminement": "PEYROLLES", + "nomCommune": "PEYROLLES" }, { - "codePostal": "16310", - "codeCommune": "16398", - "libelleAcheminement": "VERNEUIL", - "nomCommune": "VERNEUIL" + "codePostal": "13740", + "codeCommune": "13088", + "libelleAcheminement": "LE ROVE", + "nomCommune": "LE ROVE" }, { - "codePostal": "18160", - "codeCommune": "18127", - "libelleAcheminement": "LIGNIERES", - "nomCommune": "LIGNIERES" + "codePostal": "25230", + "codeCommune": "25196", + "libelleAcheminement": "DASLE", + "nomCommune": "DASLE" }, { - "codePostal": "57935", - "codeCommune": "57426", - "libelleAcheminement": "LUTTANGE", - "nomCommune": "LUTTANGE" + "codePostal": "25380", + "codeCommune": "25125", + "libelleAcheminement": "CHARMOILLE", + "nomCommune": "CHARMOILLE" }, { - "codePostal": "52170", - "codeCommune": "52265", - "libelleAcheminement": "BAYARD SUR MARNE", - "nomCommune": "BAYARD SUR MARNE" + "codePostal": "11170", + "codeCommune": "11288", + "libelleAcheminement": "PEZENS", + "nomCommune": "PEZENS" }, { - "codePostal": "16130", - "codeCommune": "16399", - "libelleAcheminement": "VERRIERES", - "nomCommune": "VERRIERES" + "codePostal": "13250", + "codeCommune": "13092", + "libelleAcheminement": "ST CHAMAS", + "nomCommune": "ST CHAMAS" }, { - "codePostal": "18300", - "codeCommune": "18144", - "libelleAcheminement": "MENETOU RATEL", - "nomCommune": "MENETOU RATEL" + "codePostal": "25330", + "codeCommune": "25199", + "libelleAcheminement": "DESERVILLERS", + "nomCommune": "DESERVILLERS" }, { - "codePostal": "57730", - "codeCommune": "57428", - "libelleAcheminement": "MACHEREN", - "nomCommune": "MACHEREN" + "codePostal": "25240", + "codeCommune": "25131", + "libelleAcheminement": "CHATELBLANC", + "nomCommune": "CHATELBLANC" }, { - "codePostal": "52200", - "codeCommune": "52269", - "libelleAcheminement": "LANGRES", - "nomCommune": "LANGRES" + "codePostal": "11380", + "codeCommune": "11297", + "libelleAcheminement": "PRADELLES CABARDES", + "nomCommune": "PRADELLES CABARDES" }, { - "codePostal": "16510", - "codeCommune": "16400", - "libelleAcheminement": "VERTEUIL SUR CHARENTE", - "nomCommune": "VERTEUIL SUR CHARENTE" + "codePostal": "13115", + "codeCommune": "13099", + "libelleAcheminement": "ST PAUL LES DURANCE", + "nomCommune": "ST PAUL LES DURANCE" }, { - "codePostal": "18380", - "codeCommune": "18149", - "libelleAcheminement": "MERY ES BOIS", - "nomCommune": "MERY ES BOIS" + "codePostal": "25580", + "codeCommune": "25208", + "libelleAcheminement": "DURNES", + "nomCommune": "DURNES" }, { - "codePostal": "57590", - "codeCommune": "57440", - "libelleAcheminement": "MANHOUE", - "nomCommune": "MANHOUE" + "codePostal": "25870", + "codeCommune": "25133", + "libelleAcheminement": "CHATILLON LE DUC", + "nomCommune": "CHATILLON LE DUC" }, { - "codePostal": "52250", - "codeCommune": "52292", - "libelleAcheminement": "LONGEAU PERCEY", - "nomCommune": "LONGEAU PERCEY" + "codePostal": "11400", + "codeCommune": "11300", + "libelleAcheminement": "PUGINIER", + "nomCommune": "PUGINIER" }, { - "codePostal": "16350", - "codeCommune": "16403", - "libelleAcheminement": "LE VIEUX CERIER", - "nomCommune": "LE VIEUX CERIER" + "codePostal": "13119", + "codeCommune": "13101", + "libelleAcheminement": "ST SAVOURNIN", + "nomCommune": "ST SAVOURNIN" }, { - "codePostal": "18210", - "codeCommune": "18183", - "libelleAcheminement": "LE PONDY", - "nomCommune": "LE PONDY" + "codePostal": "25480", + "codeCommune": "25212", + "libelleAcheminement": "ECOLE VALENTIN", + "nomCommune": "ECOLE VALENTIN" }, { - "codePostal": "57690", - "codeCommune": "57444", - "libelleAcheminement": "MARANGE ZONDRANGE", - "nomCommune": "MARANGE ZONDRANGE" + "codePostal": "25170", + "codeCommune": "25136", + "libelleAcheminement": "CHAUCENNE", + "nomCommune": "CHAUCENNE" }, { - "codePostal": "52370", - "codeCommune": "52308", - "libelleAcheminement": "MARANVILLE", - "nomCommune": "MARANVILLE" + "codePostal": "11140", + "codeCommune": "11302", + "libelleAcheminement": "PUILAURENS", + "nomCommune": "PUILAURENS" }, { - "codePostal": "16110", - "codeCommune": "16406", - "libelleAcheminement": "MOULINS SUR TARDOIRE", - "nomCommune": "MOULINS SUR TARDOIRE" + "codePostal": "13530", + "codeCommune": "13110", + "libelleAcheminement": "TRETS", + "nomCommune": "TRETS" }, { - "codePostal": "18170", - "codeCommune": "18193", - "libelleAcheminement": "REZAY", - "nomCommune": "REZAY" + "codePostal": "25480", + "codeCommune": "25212", + "libelleAcheminement": "ECOLE VALENTIN", + "nomCommune": "ECOLE VALENTIN" }, { - "codePostal": "57155", - "codeCommune": "57447", - "libelleAcheminement": "MARLY", - "nomCommune": "MARLY" + "codePostal": "25530", + "codeCommune": "25141", + "libelleAcheminement": "CHAUX LES PASSAVANT", + "nomCommune": "CHAUX LES PASSAVANT" }, { - "codePostal": "52140", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "11230", + "codeCommune": "11303", + "libelleAcheminement": "PUIVERT", + "nomCommune": "PUIVERT" }, { - "codePostal": "16320", - "codeCommune": "16408", - "libelleAcheminement": "VILLEBOIS LAVALETTE", - "nomCommune": "VILLEBOIS LAVALETTE" + "codePostal": "13116", + "codeCommune": "13115", + "libelleAcheminement": "VERNEGUES", + "nomCommune": "VERNEGUES" }, { - "codePostal": "18400", - "codeCommune": "18207", - "libelleAcheminement": "ST FLORENT SUR CHER", - "nomCommune": "ST FLORENT SUR CHER" + "codePostal": "25140", + "codeCommune": "25213", + "libelleAcheminement": "LES ECORCES", + "nomCommune": "LES ECORCES" }, { - "codePostal": "57340", - "codeCommune": "57451", - "libelleAcheminement": "MARTHILLE", - "nomCommune": "MARTHILLE" + "codePostal": "25500", + "codeCommune": "25148", + "libelleAcheminement": "LA CHENALOTTE", + "nomCommune": "LA CHENALOTTE" }, { - "codePostal": "52140", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "11170", + "codeCommune": "11308", + "libelleAcheminement": "RAISSAC SUR LAMPY", + "nomCommune": "RAISSAC SUR LAMPY" }, { - "codePostal": "16220", - "codeCommune": "16421", - "libelleAcheminement": "VOUTHON", - "nomCommune": "VOUTHON" + "codePostal": "13127", + "codeCommune": "13117", + "libelleAcheminement": "VITROLLES", + "nomCommune": "VITROLLES" }, { - "codePostal": "18200", - "codeCommune": "18209", - "libelleAcheminement": "ST GEORGES DE POISIEUX", - "nomCommune": "ST GEORGES DE POISIEUX" + "codePostal": "25150", + "codeCommune": "25216", + "libelleAcheminement": "ECURCEY", + "nomCommune": "ECURCEY" }, { - "codePostal": "57220", - "codeCommune": "57455", - "libelleAcheminement": "MEGANGE", - "nomCommune": "MEGANGE" + "codePostal": "25340", + "codeCommune": "25156", + "libelleAcheminement": "PAYS DE CLERVAL", + "nomCommune": "PAYS DE CLERVAL" }, { - "codePostal": "52140", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "11160", + "codeCommune": "11315", + "libelleAcheminement": "RIEUX MINERVOIS", + "nomCommune": "RIEUX MINERVOIS" }, { - "codePostal": "16410", - "codeCommune": "16422", - "libelleAcheminement": "VOUZAN", - "nomCommune": "VOUZAN" + "codePostal": "13006", + "codeCommune": "13206", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 06" }, { - "codePostal": "18100", - "codeCommune": "18210", - "libelleAcheminement": "ST GEORGES SUR LA PREE", - "nomCommune": "ST GEORGES SUR LA PREE" + "codePostal": "25170", + "codeCommune": "25217", + "libelleAcheminement": "EMAGNY", + "nomCommune": "EMAGNY" }, { - "codePostal": "57480", - "codeCommune": "57459", - "libelleAcheminement": "MERSCHWEILLER", - "nomCommune": "MERSCHWEILLER" + "codePostal": "25410", + "codeCommune": "25162", + "libelleAcheminement": "CORCELLES FERRIERES", + "nomCommune": "CORCELLES FERRIERES" }, { - "codePostal": "52160", - "codeCommune": "52344", - "libelleAcheminement": "MOUILLERON", - "nomCommune": "MOUILLERON" + "codePostal": "11190", + "codeCommune": "11323", + "libelleAcheminement": "ROQUETAILLADE ET CONILHAC", + "nomCommune": "ROQUETAILLADE ET CONILHAC" }, { - "codePostal": "17500", - "codeCommune": "17006", - "libelleAcheminement": "ALLAS CHAMPAGNE", - "nomCommune": "ALLAS CHAMPAGNE" + "codePostal": "13008", + "codeCommune": "13208", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 08" }, { - "codePostal": "18390", - "codeCommune": "18213", - "libelleAcheminement": "ST GERMAIN DU PUY", - "nomCommune": "ST GERMAIN DU PUY" + "codePostal": "25330", + "codeCommune": "25223", + "libelleAcheminement": "ETERNOZ", + "nomCommune": "ETERNOZ" }, { - "codePostal": "57070", - "codeCommune": "57467", - "libelleAcheminement": "MEY", - "nomCommune": "MEY" + "codePostal": "25170", + "codeCommune": "25172", + "libelleAcheminement": "COURCHAPON", + "nomCommune": "COURCHAPON" }, { - "codePostal": "52170", - "codeCommune": "52347", - "libelleAcheminement": "NARCY", - "nomCommune": "NARCY" + "codePostal": "11500", + "codeCommune": "11350", + "libelleAcheminement": "ST JUST ET LE BEZU", + "nomCommune": "ST JUST ET LE BEZU" }, { - "codePostal": "17290", - "codeCommune": "17018", - "libelleAcheminement": "ARDILLIERES", - "nomCommune": "ARDILLIERES" + "codePostal": "13009", + "codeCommune": "13209", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 09" }, { - "codePostal": "18100", - "codeCommune": "18214", - "libelleAcheminement": "ST HILAIRE DE COURT", - "nomCommune": "ST HILAIRE DE COURT" + "codePostal": "25580", + "codeCommune": "25233", + "libelleAcheminement": "FALLERANS", + "nomCommune": "FALLERANS" }, { - "codePostal": "57370", - "codeCommune": "57468", - "libelleAcheminement": "MITTELBRONN", - "nomCommune": "MITTELBRONN" + "codePostal": "25380", + "codeCommune": "25173", + "libelleAcheminement": "COUR ST MAURICE", + "nomCommune": "COUR ST MAURICE" }, { - "codePostal": "52000", - "codeCommune": "52349", - "libelleAcheminement": "NEUILLY SUR SUIZE", - "nomCommune": "NEUILLY SUR SUIZE" + "codePostal": "11120", + "codeCommune": "11353", + "libelleAcheminement": "ST MARCEL SUR AUDE", + "nomCommune": "ST MARCEL SUR AUDE" }, { - "codePostal": "17400", - "codeCommune": "17022", - "libelleAcheminement": "ASNIERES LA GIRAUD", - "nomCommune": "ASNIERES LA GIRAUD" + "codePostal": "13009", + "codeCommune": "13209", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 09" }, { - "codePostal": "18330", - "codeCommune": "18219", - "libelleAcheminement": "ST LAURENT", - "nomCommune": "ST LAURENT" + "codePostal": "25470", + "codeCommune": "25234", + "libelleAcheminement": "FERRIERES LE LAC", + "nomCommune": "FERRIERES LE LAC" }, { - "codePostal": "57420", - "codeCommune": "57472", - "libelleAcheminement": "MONCHEUX", - "nomCommune": "MONCHEUX" + "codePostal": "25340", + "codeCommune": "25177", + "libelleAcheminement": "CROSEY LE GRAND", + "nomCommune": "CROSEY LE GRAND" }, { - "codePostal": "52800", - "codeCommune": "52352", - "libelleAcheminement": "NINVILLE", - "nomCommune": "NINVILLE" + "codePostal": "11120", + "codeCommune": "11360", + "libelleAcheminement": "ST NAZAIRE D AUDE", + "nomCommune": "ST NAZAIRE D AUDE" }, { - "codePostal": "17470", - "codeCommune": "17024", - "libelleAcheminement": "AULNAY", - "nomCommune": "AULNAY" + "codePostal": "13013", + "codeCommune": "13213", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 13" }, { - "codePostal": "18140", - "codeCommune": "18224", - "libelleAcheminement": "ST MARTIN DES CHAMPS", - "nomCommune": "ST MARTIN DES CHAMPS" + "codePostal": "25330", + "codeCommune": "25236", + "libelleAcheminement": "FERTANS", + "nomCommune": "FERTANS" }, { - "codePostal": "57810", - "codeCommune": "57473", - "libelleAcheminement": "MONCOURT", - "nomCommune": "MONCOURT" + "codePostal": "25420", + "codeCommune": "25191", + "libelleAcheminement": "DAMPIERRE SUR LE DOUBS", + "nomCommune": "DAMPIERRE SUR LE DOUBS" }, { - "codePostal": "52800", - "codeCommune": "52353", - "libelleAcheminement": "NOGENT", - "nomCommune": "NOGENT" + "codePostal": "11220", + "codeCommune": "11363", + "libelleAcheminement": "ST PIERRE DES CHAMPS", + "nomCommune": "ST PIERRE DES CHAMPS" }, { - "codePostal": "17770", - "codeCommune": "17025", - "libelleAcheminement": "AUMAGNE", - "nomCommune": "AUMAGNE" + "codePostal": "13013", + "codeCommune": "13213", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 13" }, { - "codePostal": "18700", - "codeCommune": "18227", - "libelleAcheminement": "STE MONTAINE", - "nomCommune": "STE MONTAINE" + "codePostal": "25190", + "codeCommune": "25239", + "libelleAcheminement": "FEULE", + "nomCommune": "FEULE" }, { - "codePostal": "57950", - "codeCommune": "57480", - "libelleAcheminement": "MONTIGNY LES METZ", - "nomCommune": "MONTIGNY LES METZ" + "codePostal": "25190", + "codeCommune": "25192", + "libelleAcheminement": "DAMPJOUX", + "nomCommune": "DAMPJOUX" }, { - "codePostal": "52250", - "codeCommune": "52364", - "libelleAcheminement": "ORCEVAUX", - "nomCommune": "ORCEVAUX" + "codePostal": "11600", + "codeCommune": "11372", + "libelleAcheminement": "SALSIGNE", + "nomCommune": "SALSIGNE" }, { - "codePostal": "17770", - "codeCommune": "17026", - "libelleAcheminement": "AUTHON EBEON", - "nomCommune": "AUTHON EBEON" + "codePostal": "13016", + "codeCommune": "13216", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 16" }, { - "codePostal": "18110", - "codeCommune": "18229", - "libelleAcheminement": "ST PALAIS", - "nomCommune": "ST PALAIS" + "codePostal": "25500", + "codeCommune": "25240", + "libelleAcheminement": "LES FINS", + "nomCommune": "LES FINS" }, { - "codePostal": "57600", - "codeCommune": "57484", - "libelleAcheminement": "MORSBACH", - "nomCommune": "MORSBACH" + "codePostal": "25410", + "codeCommune": "25195", + "libelleAcheminement": "DANNEMARIE SUR CRETE", + "nomCommune": "DANNEMARIE SUR CRETE" }, { - "codePostal": "52120", - "codeCommune": "52365", - "libelleAcheminement": "ORGES", - "nomCommune": "ORGES" + "codePostal": "11400", + "codeCommune": "11383", + "libelleAcheminement": "SOUILHE", + "nomCommune": "SOUILHE" }, { - "codePostal": "17800", - "codeCommune": "17027", - "libelleAcheminement": "AVY", - "nomCommune": "AVY" + "codePostal": "13016", + "codeCommune": "13216", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 16" }, { - "codePostal": "18370", - "codeCommune": "18232", - "libelleAcheminement": "ST PRIEST LA MARCHE", - "nomCommune": "ST PRIEST LA MARCHE" + "codePostal": "25370", + "codeCommune": "25252", + "libelleAcheminement": "FOURCATIER ET MAISON NEUVE", + "nomCommune": "FOURCATIER ET MAISON NEUVE" }, { - "codePostal": "57160", - "codeCommune": "57487", - "libelleAcheminement": "MOULINS LES METZ", - "nomCommune": "MOULINS LES METZ" + "codePostal": "25870", + "codeCommune": "25200", + "libelleAcheminement": "DEVECEY", + "nomCommune": "DEVECEY" }, { - "codePostal": "52300", - "codeCommune": "52370", - "libelleAcheminement": "OSNE LE VAL", - "nomCommune": "OSNE LE VAL" + "codePostal": "11800", + "codeCommune": "11397", + "libelleAcheminement": "TREBES", + "nomCommune": "TREBES" }, { - "codePostal": "17460", - "codeCommune": "17044", - "libelleAcheminement": "BERNEUIL", - "nomCommune": "BERNEUIL" + "codePostal": "14190", + "codeCommune": "14005", + "libelleAcheminement": "VALAMBRAY", + "nomCommune": "VALAMBRAY" }, { - "codePostal": "18370", - "codeCommune": "18234", - "libelleAcheminement": "ST SATURNIN", - "nomCommune": "ST SATURNIN" + "codePostal": "25190", + "codeCommune": "25261", + "libelleAcheminement": "FROIDEVAUX", + "nomCommune": "FROIDEVAUX" }, { - "codePostal": "57250", - "codeCommune": "57491", - "libelleAcheminement": "MOYEUVRE GRANDE", - "nomCommune": "MOYEUVRE GRANDE" + "codePostal": "25550", + "codeCommune": "25210", + "libelleAcheminement": "ECHENANS", + "nomCommune": "ECHENANS" }, { - "codePostal": "52150", - "codeCommune": "52372", - "libelleAcheminement": "OUTREMECOURT", - "nomCommune": "OUTREMECOURT" + "codePostal": "11610", + "codeCommune": "11404", + "libelleAcheminement": "VENTENAC CABARDES", + "nomCommune": "VENTENAC CABARDES" }, { - "codePostal": "17400", - "codeCommune": "17046", - "libelleAcheminement": "BIGNAY", - "nomCommune": "BIGNAY" + "codePostal": "14190", + "codeCommune": "14005", + "libelleAcheminement": "VALAMBRAY", + "nomCommune": "VALAMBRAY" }, { - "codePostal": "18290", - "codeCommune": "18244", - "libelleAcheminement": "SAUGY", - "nomCommune": "SAUGY" + "codePostal": "25390", + "codeCommune": "25262", + "libelleAcheminement": "FUANS", + "nomCommune": "FUANS" }, { - "codePostal": "57670", - "codeCommune": "57496", - "libelleAcheminement": "NEBING", - "nomCommune": "NEBING" + "codePostal": "25620", + "codeCommune": "25222", + "libelleAcheminement": "ETALANS", + "nomCommune": "ETALANS" }, { - "codePostal": "52700", - "codeCommune": "52373", - "libelleAcheminement": "OZIERES", - "nomCommune": "OZIERES" + "codePostal": "11580", + "codeCommune": "11406", + "libelleAcheminement": "VERAZA", + "nomCommune": "VERAZA" }, { - "codePostal": "17470", - "codeCommune": "17049", - "libelleAcheminement": "BLANZAY SUR BOUTONNE", - "nomCommune": "BLANZAY SUR BOUTONNE" + "codePostal": "14540", + "codeCommune": "14005", + "libelleAcheminement": "VALAMBRAY", + "nomCommune": "VALAMBRAY" }, { - "codePostal": "18360", - "codeCommune": "18245", - "libelleAcheminement": "SAULZAIS LE POTIER", - "nomCommune": "SAULZAIS LE POTIER" + "codePostal": "25240", + "codeCommune": "25263", + "libelleAcheminement": "GELLIN", + "nomCommune": "GELLIN" }, { - "codePostal": "57590", - "codeCommune": "57528", - "libelleAcheminement": "ORON", - "nomCommune": "ORON" + "codePostal": "25330", + "codeCommune": "25223", + "libelleAcheminement": "ETERNOZ", + "nomCommune": "ETERNOZ" }, { - "codePostal": "52600", - "codeCommune": "52375", - "libelleAcheminement": "PALAISEUL", - "nomCommune": "PALAISEUL" + "codePostal": "11250", + "codeCommune": "11420", + "libelleAcheminement": "VILLEBAZY", + "nomCommune": "VILLEBAZY" }, { - "codePostal": "17270", - "codeCommune": "17054", - "libelleAcheminement": "BORESSE ET MARTRON", - "nomCommune": "BORESSE ET MARTRON" + "codePostal": "14240", + "codeCommune": "14011", + "libelleAcheminement": "AURSEULLES", + "nomCommune": "AURSEULLES" }, { - "codePostal": "18190", - "codeCommune": "18250", - "libelleAcheminement": "SERRUELLES", - "nomCommune": "SERRUELLES" + "codePostal": "25870", + "codeCommune": "25265", + "libelleAcheminement": "GENEUILLE", + "nomCommune": "GENEUILLE" }, { - "codePostal": "57970", - "codeCommune": "57531", - "libelleAcheminement": "OUDRENNE", - "nomCommune": "OUDRENNE" + "codePostal": "25330", + "codeCommune": "25223", + "libelleAcheminement": "ETERNOZ", + "nomCommune": "ETERNOZ" }, { - "codePostal": "52200", - "codeCommune": "52383", - "libelleAcheminement": "PERRANCEY LES VIEUX MOULINS", - "nomCommune": "PERRANCEY LES VIEUX MOULINS" + "codePostal": "11230", + "codeCommune": "11424", + "libelleAcheminement": "VILLEFORT", + "nomCommune": "VILLEFORT" }, { - "codePostal": "17360", - "codeCommune": "17055", - "libelleAcheminement": "BOSCAMNANT", - "nomCommune": "BOSCAMNANT" + "codePostal": "14610", + "codeCommune": "14014", + "libelleAcheminement": "COLOMBY ANGUERNY", + "nomCommune": "COLOMBY ANGUERNY" }, { - "codePostal": "18140", - "codeCommune": "18251", - "libelleAcheminement": "SEVRY", - "nomCommune": "SEVRY" + "codePostal": "25510", + "codeCommune": "25268", + "libelleAcheminement": "GERMEFONTAINE", + "nomCommune": "GERMEFONTAINE" }, { - "codePostal": "57370", - "codeCommune": "57540", - "libelleAcheminement": "PHALSBOURG", - "nomCommune": "PHALSBOURG" + "codePostal": "25800", + "codeCommune": "25227", + "libelleAcheminement": "ETRAY", + "nomCommune": "ETRAY" }, { - "codePostal": "52160", - "codeCommune": "52384", - "libelleAcheminement": "PERROGNEY LES FONTAINES", - "nomCommune": "PERROGNEY LES FONTAINES" + "codePostal": "11300", + "codeCommune": "11427", + "libelleAcheminement": "VILLELONGUE D AUDE", + "nomCommune": "VILLELONGUE D AUDE" }, { - "codePostal": "17560", - "codeCommune": "17058", - "libelleAcheminement": "BOURCEFRANC LE CHAPUS", - "nomCommune": "BOURCEFRANC LE CHAPUS" + "codePostal": "14430", + "codeCommune": "14016", + "libelleAcheminement": "ANNEBAULT", + "nomCommune": "ANNEBAULT" }, { - "codePostal": "18260", - "codeCommune": "18256", - "libelleAcheminement": "SUBLIGNY", - "nomCommune": "SUBLIGNY" + "codePostal": "25650", + "codeCommune": "25271", + "libelleAcheminement": "GILLEY", + "nomCommune": "GILLEY" }, { - "codePostal": "57930", - "codeCommune": "57551", - "libelleAcheminement": "POSTROFF", - "nomCommune": "POSTROFF" + "codePostal": "25520", + "codeCommune": "25229", + "libelleAcheminement": "EVILLERS", + "nomCommune": "EVILLERS" }, { - "codePostal": "52500", - "codeCommune": "52388", - "libelleAcheminement": "PIERREMONT SUR AMANCE", - "nomCommune": "PIERREMONT SUR AMANCE" + "codePostal": "11110", + "codeCommune": "11441", + "libelleAcheminement": "VINASSAN", + "nomCommune": "VINASSAN" }, { - "codePostal": "17490", - "codeCommune": "17062", - "libelleAcheminement": "BRESDON", - "nomCommune": "BRESDON" + "codePostal": "14250", + "codeCommune": "14026", + "libelleAcheminement": "AUDRIEU", + "nomCommune": "AUDRIEU" }, { - "codePostal": "18210", - "codeCommune": "18261", - "libelleAcheminement": "THAUMIERS", - "nomCommune": "THAUMIERS" + "codePostal": "25190", + "codeCommune": "25275", + "libelleAcheminement": "GLERE", + "nomCommune": "GLERE" }, { - "codePostal": "57420", - "codeCommune": "57553", - "libelleAcheminement": "POURNOY LA CHETIVE", - "nomCommune": "POURNOY LA CHETIVE" + "codePostal": "25640", + "codeCommune": "25242", + "libelleAcheminement": "FLAGEY RIGNEY", + "nomCommune": "FLAGEY RIGNEY" }, { - "codePostal": "52500", - "codeCommune": "52388", - "libelleAcheminement": "PIERREMONT SUR AMANCE", - "nomCommune": "PIERREMONT SUR AMANCE" + "codePostal": "12360", + "codeCommune": "12009", + "libelleAcheminement": "ARNAC SUR DOURDOU", + "nomCommune": "ARNAC SUR DOURDOU" }, { - "codePostal": "17870", - "codeCommune": "17065", - "libelleAcheminement": "BREUIL MAGNE", - "nomCommune": "BREUIL MAGNE" + "codePostal": "14260", + "codeCommune": "14027", + "libelleAcheminement": "LES MONTS D AUNAY", + "nomCommune": "LES MONTS D AUNAY" }, { - "codePostal": "18190", - "codeCommune": "18270", - "libelleAcheminement": "VALLENAY", - "nomCommune": "VALLENAY" + "codePostal": "25190", + "codeCommune": "25275", + "libelleAcheminement": "GLERE", + "nomCommune": "GLERE" }, { - "codePostal": "57420", - "codeCommune": "57554", - "libelleAcheminement": "POURNOY LA GRASSE", - "nomCommune": "POURNOY LA GRASSE" + "codePostal": "25390", + "codeCommune": "25243", + "libelleAcheminement": "FLANGEBOUCHE", + "nomCommune": "FLANGEBOUCHE" }, { - "codePostal": "52500", - "codeCommune": "52390", - "libelleAcheminement": "PISSELOUP", - "nomCommune": "PISSELOUP" + "codePostal": "12290", + "codeCommune": "12010", + "libelleAcheminement": "ARQUES", + "nomCommune": "ARQUES" }, { - "codePostal": "17130", - "codeCommune": "17081", - "libelleAcheminement": "CHAMOUILLAC", - "nomCommune": "CHAMOUILLAC" + "codePostal": "14260", + "codeCommune": "14037", + "libelleAcheminement": "MALHERBE SUR AJON", + "nomCommune": "MALHERBE SUR AJON" }, { - "codePostal": "18190", - "codeCommune": "18270", - "libelleAcheminement": "VALLENAY", - "nomCommune": "VALLENAY" + "codePostal": "25440", + "codeCommune": "25283", + "libelleAcheminement": "GOUX SOUS LANDET", + "nomCommune": "GOUX SOUS LANDET" }, { - "codePostal": "57510", - "codeCommune": "57556", - "libelleAcheminement": "PUTTELANGE AUX LACS", - "nomCommune": "PUTTELANGE AUX LACS" + "codePostal": "25190", + "codeCommune": "25244", + "libelleAcheminement": "FLEUREY", + "nomCommune": "FLEUREY" }, { - "codePostal": "52500", - "codeCommune": "52394", - "libelleAcheminement": "POINSON LES FAYL", - "nomCommune": "POINSON LES FAYL" + "codePostal": "12380", + "codeCommune": "12019", + "libelleAcheminement": "BALAGUIER SUR RANCE", + "nomCommune": "BALAGUIER SUR RANCE" }, { - "codePostal": "17240", - "codeCommune": "17084", - "libelleAcheminement": "CHAMPAGNOLLES", - "nomCommune": "CHAMPAGNOLLES" + "codePostal": "14260", + "codeCommune": "14037", + "libelleAcheminement": "MALHERBE SUR AJON", + "nomCommune": "MALHERBE SUR AJON" }, { - "codePostal": "18110", - "codeCommune": "18271", - "libelleAcheminement": "VASSELAY", - "nomCommune": "VASSELAY" + "codePostal": "25650", + "codeCommune": "25303", + "libelleAcheminement": "HAUTERIVE LA FRESSE", + "nomCommune": "HAUTERIVE LA FRESSE" }, { - "codePostal": "57170", - "codeCommune": "57558", - "libelleAcheminement": "PUTTIGNY", - "nomCommune": "PUTTIGNY" + "codePostal": "25340", + "codeCommune": "25246", + "libelleAcheminement": "FONTAINE LES CLERVAL", + "nomCommune": "FONTAINE LES CLERVAL" }, { - "codePostal": "52400", - "codeCommune": "52400", - "libelleAcheminement": "LE CHATELET SUR MEUSE", - "nomCommune": "LE CHATELET SUR MEUSE" + "codePostal": "12200", + "codeCommune": "12021", + "libelleAcheminement": "LE BAS SEGALA", + "nomCommune": "LE BAS SEGALA" }, { - "codePostal": "17480", - "codeCommune": "17093", - "libelleAcheminement": "LE CHATEAU D OLERON", - "nomCommune": "LE CHATEAU D OLERON" + "codePostal": "14610", + "codeCommune": "14044", + "libelleAcheminement": "BASLY", + "nomCommune": "BASLY" }, { - "codePostal": "18300", - "codeCommune": "18272", - "libelleAcheminement": "VEAUGUES", - "nomCommune": "VEAUGUES" + "codePostal": "25620", + "codeCommune": "25305", + "libelleAcheminement": "L HOPITAL DU GROSBOIS", + "nomCommune": "L HOPITAL DU GROSBOIS" }, { - "codePostal": "57390", - "codeCommune": "57565", - "libelleAcheminement": "REDANGE", - "nomCommune": "REDANGE" + "codePostal": "25210", + "codeCommune": "25248", + "libelleAcheminement": "LES FONTENELLES", + "nomCommune": "LES FONTENELLES" }, { - "codePostal": "52400", - "codeCommune": "52400", - "libelleAcheminement": "LE CHATELET SUR MEUSE", - "nomCommune": "LE CHATELET SUR MEUSE" + "codePostal": "12390", + "codeCommune": "12024", + "libelleAcheminement": "BELCASTEL", + "nomCommune": "BELCASTEL" }, { - "codePostal": "17480", - "codeCommune": "17093", - "libelleAcheminement": "LE CHATEAU D OLERON", - "nomCommune": "LE CHATEAU D OLERON" + "codePostal": "14490", + "codeCommune": "14050", + "libelleAcheminement": "LA BAZOQUE", + "nomCommune": "LA BAZOQUE" }, { - "codePostal": "18800", - "codeCommune": "18282", - "libelleAcheminement": "VILLABON", - "nomCommune": "VILLABON" + "codePostal": "25340", + "codeCommune": "25306", + "libelleAcheminement": "L HOPITAL ST LIEFFROY", + "nomCommune": "L HOPITAL ST LIEFFROY" }, { - "codePostal": "57445", - "codeCommune": "57566", - "libelleAcheminement": "REDING", - "nomCommune": "REDING" + "codePostal": "25110", + "codeCommune": "25251", + "libelleAcheminement": "FOURBANNE", + "nomCommune": "FOURBANNE" }, { - "codePostal": "52700", - "codeCommune": "52407", - "libelleAcheminement": "PREZ SOUS LAFAUCHE", - "nomCommune": "PREZ SOUS LAFAUCHE" + "codePostal": "12310", + "codeCommune": "12026", + "libelleAcheminement": "BERTHOLENE", + "nomCommune": "BERTHOLENE" }, { - "codePostal": "17480", - "codeCommune": "17093", - "libelleAcheminement": "LE CHATEAU D OLERON", - "nomCommune": "LE CHATEAU D OLERON" + "codePostal": "14950", + "codeCommune": "14055", + "libelleAcheminement": "BEAUMONT EN AUGE", + "nomCommune": "BEAUMONT EN AUGE" }, { - "codePostal": "18260", - "codeCommune": "18284", - "libelleAcheminement": "VILLEGENON", - "nomCommune": "VILLEGENON" + "codePostal": "25250", + "codeCommune": "25311", + "libelleAcheminement": "HYEMONDANS", + "nomCommune": "HYEMONDANS" }, { - "codePostal": "57200", - "codeCommune": "57568", - "libelleAcheminement": "REMELFING", - "nomCommune": "REMELFING" + "codePostal": "25140", + "codeCommune": "25255", + "libelleAcheminement": "FOURNET BLANCHEROCHE", + "nomCommune": "FOURNET BLANCHEROCHE" }, { - "codePostal": "52140", - "codeCommune": "52415", - "libelleAcheminement": "RANCONNIERES", - "nomCommune": "RANCONNIERES" + "codePostal": "12300", + "codeCommune": "12028", + "libelleAcheminement": "BOISSE PENCHOT", + "nomCommune": "BOISSE PENCHOT" }, { - "codePostal": "17340", - "codeCommune": "17094", - "libelleAcheminement": "CHATELAILLON PLAGE", - "nomCommune": "CHATELAILLON PLAGE" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "19120", - "codeCommune": "19007", - "libelleAcheminement": "ALTILLAC", - "nomCommune": "ALTILLAC" + "codePostal": "25160", + "codeCommune": "25320", + "libelleAcheminement": "LABERGEMENT STE MARIE", + "nomCommune": "LABERGEMENT STE MARIE" }, { - "codePostal": "57580", - "codeCommune": "57572", - "libelleAcheminement": "REMILLY", - "nomCommune": "REMILLY" + "codePostal": "25560", + "codeCommune": "25259", + "libelleAcheminement": "FRASNE", + "nomCommune": "FRASNE" }, { - "codePostal": "52700", - "codeCommune": "52420", - "libelleAcheminement": "REYNEL", - "nomCommune": "REYNEL" + "codePostal": "12300", + "codeCommune": "12030", + "libelleAcheminement": "BOUILLAC", + "nomCommune": "BOUILLAC" }, { - "codePostal": "17210", - "codeCommune": "17095", - "libelleAcheminement": "CHATENET", - "nomCommune": "CHATENET" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "19320", - "codeCommune": "19010", - "libelleAcheminement": "ARGENTAT SUR DORDOGNE", - "nomCommune": "ARGENTAT SUR DORDOGNE" + "codePostal": "25130", + "codeCommune": "25321", + "libelleAcheminement": "VILLERS LE LAC", + "nomCommune": "VILLERS LE LAC" }, { - "codePostal": "57130", - "codeCommune": "57578", - "libelleAcheminement": "REZONVILLE VIONVILLE", - "nomCommune": "REZONVILLE VIONVILLE" + "codePostal": "25660", + "codeCommune": "25267", + "libelleAcheminement": "GENNES", + "nomCommune": "GENNES" }, { - "codePostal": "52000", - "codeCommune": "52421", - "libelleAcheminement": "RIAUCOURT", - "nomCommune": "RIAUCOURT" + "codePostal": "12390", + "codeCommune": "12031", + "libelleAcheminement": "BOURNAZEL", + "nomCommune": "BOURNAZEL" }, { - "codePostal": "17470", - "codeCommune": "17101", - "libelleAcheminement": "CHERBONNIERES", - "nomCommune": "CHERBONNIERES" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "19400", - "codeCommune": "19010", - "libelleAcheminement": "ARGENTAT SUR DORDOGNE", - "nomCommune": "ARGENTAT SUR DORDOGNE" + "codePostal": "25550", + "codeCommune": "25322", + "libelleAcheminement": "LAIRE", + "nomCommune": "LAIRE" }, { - "codePostal": "57720", - "codeCommune": "57590", - "libelleAcheminement": "ROLBING", - "nomCommune": "ROLBING" + "codePostal": "25680", + "codeCommune": "25277", + "libelleAcheminement": "GONDENANS LES MOULINS", + "nomCommune": "GONDENANS LES MOULINS" }, { - "codePostal": "52700", - "codeCommune": "52428", - "libelleAcheminement": "ROCHEFORT SUR LA COTE", - "nomCommune": "ROCHEFORT SUR LA COTE" + "codePostal": "12340", + "codeCommune": "12033", + "libelleAcheminement": "BOZOULS", + "nomCommune": "BOZOULS" }, { - "codePostal": "17500", - "codeCommune": "17108", - "libelleAcheminement": "CLAM", - "nomCommune": "CLAM" + "codePostal": "14710", + "codeCommune": "14063", + "libelleAcheminement": "BERNESQ", + "nomCommune": "BERNESQ" }, { - "codePostal": "19120", - "codeCommune": "19012", - "libelleAcheminement": "ASTAILLAC", - "nomCommune": "ASTAILLAC" + "codePostal": "25170", + "codeCommune": "25326", + "libelleAcheminement": "LANTENNE VERTIERE", + "nomCommune": "LANTENNE VERTIERE" }, { - "codePostal": "57930", - "codeCommune": "57592", - "libelleAcheminement": "ROMELFING", - "nomCommune": "ROMELFING" + "codePostal": "25570", + "codeCommune": "25285", + "libelleAcheminement": "GRAND COMBE CHATELEU", + "nomCommune": "GRAND COMBE CHATELEU" }, { - "codePostal": "52210", - "codeCommune": "52431", - "libelleAcheminement": "ROCHETAILLEE", - "nomCommune": "ROCHETAILLEE" + "codePostal": "12450", + "codeCommune": "12043", + "libelleAcheminement": "CALMONT", + "nomCommune": "CALMONT" }, { - "codePostal": "17220", - "codeCommune": "17109", - "libelleAcheminement": "CLAVETTE", - "nomCommune": "CLAVETTE" + "codePostal": "14112", + "codeCommune": "14068", + "libelleAcheminement": "BIEVILLE BEUVILLE", + "nomCommune": "BIEVILLE BEUVILLE" }, { - "codePostal": "19430", - "codeCommune": "19017", - "libelleAcheminement": "BASSIGNAC LE BAS", - "nomCommune": "BASSIGNAC LE BAS" + "codePostal": "25170", + "codeCommune": "25332", + "libelleAcheminement": "LAVERNAY", + "nomCommune": "LAVERNAY" }, { - "codePostal": "57160", - "codeCommune": "57601", - "libelleAcheminement": "ROZERIEULLES", - "nomCommune": "ROZERIEULLES" + "codePostal": "25380", + "codeCommune": "25290", + "libelleAcheminement": "LA GRANGE", + "nomCommune": "LA GRANGE" }, { - "codePostal": "52260", - "codeCommune": "52432", - "libelleAcheminement": "ROLAMPONT", - "nomCommune": "ROLAMPONT" + "codePostal": "12450", + "codeCommune": "12043", + "libelleAcheminement": "CALMONT", + "nomCommune": "CALMONT" }, { - "codePostal": "17330", - "codeCommune": "17124", - "libelleAcheminement": "COURANT", - "nomCommune": "COURANT" + "codePostal": "14700", + "codeCommune": "14087", + "libelleAcheminement": "BONNOEIL", + "nomCommune": "BONNOEIL" }, { - "codePostal": "19430", - "codeCommune": "19034", - "libelleAcheminement": "CAMPS ST MATHURIN LEOBAZEL", - "nomCommune": "CAMPS ST MATHURIN LEOBAZEL" + "codePostal": "25270", + "codeCommune": "25334", + "libelleAcheminement": "LEVIER", + "nomCommune": "LEVIER" }, { - "codePostal": "57640", - "codeCommune": "57607", - "libelleAcheminement": "STE BARBE", - "nomCommune": "STE BARBE" + "codePostal": "25370", + "codeCommune": "25308", + "libelleAcheminement": "LES HOPITAUX VIEUX", + "nomCommune": "LES HOPITAUX VIEUX" }, { - "codePostal": "52160", - "codeCommune": "52439", - "libelleAcheminement": "ROUVRES SUR AUBE", - "nomCommune": "ROUVRES SUR AUBE" + "codePostal": "12800", + "codeCommune": "12046", + "libelleAcheminement": "CAMJAC", + "nomCommune": "CAMJAC" }, { - "codePostal": "17400", - "codeCommune": "17125", - "libelleAcheminement": "COURCELLES", - "nomCommune": "COURCELLES" + "codePostal": "14540", + "codeCommune": "14092", + "libelleAcheminement": "BOURGUEBUS", + "nomCommune": "BOURGUEBUS" }, { - "codePostal": "19190", - "codeCommune": "19048", - "libelleAcheminement": "LE CHASTANG", - "nomCommune": "LE CHASTANG" + "codePostal": "25330", + "codeCommune": "25338", + "libelleAcheminement": "LIZINE", + "nomCommune": "LIZINE" }, { - "codePostal": "57320", - "codeCommune": "57610", - "libelleAcheminement": "ST FRANCOIS LACROIX", - "nomCommune": "ST FRANCOIS LACROIX" + "codePostal": "25110", + "codeCommune": "25312", + "libelleAcheminement": "HYEVRE MAGNY", + "nomCommune": "HYEVRE MAGNY" }, { - "codePostal": "52230", - "codeCommune": "52443", - "libelleAcheminement": "SAILLY", - "nomCommune": "SAILLY" + "codePostal": "12700", + "codeCommune": "12052", + "libelleAcheminement": "CAPDENAC GARE", + "nomCommune": "CAPDENAC GARE" }, { - "codePostal": "17160", - "codeCommune": "17126", - "libelleAcheminement": "COURCERAC", - "nomCommune": "COURCERAC" + "codePostal": "14250", + "codeCommune": "14098", + "libelleAcheminement": "THUE ET MUE", + "nomCommune": "THUE ET MUE" }, { - "codePostal": "19290", - "codeCommune": "19052", - "libelleAcheminement": "CHAVANAC", - "nomCommune": "CHAVANAC" + "codePostal": "25330", + "codeCommune": "25346", + "libelleAcheminement": "LONGEVILLE", + "nomCommune": "LONGEVILLE" }, { - "codePostal": "57640", - "codeCommune": "57612", - "libelleAcheminement": "ST HUBERT", - "nomCommune": "ST HUBERT" + "codePostal": "25550", + "codeCommune": "25316", + "libelleAcheminement": "ISSANS", + "nomCommune": "ISSANS" }, { - "codePostal": "52700", - "codeCommune": "52444", - "libelleAcheminement": "ST BLIN", - "nomCommune": "ST BLIN" + "codePostal": "12240", + "codeCommune": "12059", + "libelleAcheminement": "CASTANET", + "nomCommune": "CASTANET" }, { - "codePostal": "17170", - "codeCommune": "17127", - "libelleAcheminement": "COURCON", - "nomCommune": "COURCON" + "codePostal": "14160", + "codeCommune": "14110", + "libelleAcheminement": "BRUCOURT", + "nomCommune": "BRUCOURT" }, { - "codePostal": "19200", - "codeCommune": "19053", - "libelleAcheminement": "CHAVEROCHE", - "nomCommune": "CHAVEROCHE" + "codePostal": "25370", + "codeCommune": "25348", + "libelleAcheminement": "LONGEVILLES MONT D OR", + "nomCommune": "LONGEVILLES MONT D OR" }, { - "codePostal": "57070", - "codeCommune": "57616", - "libelleAcheminement": "ST JULIEN LES METZ", - "nomCommune": "ST JULIEN LES METZ" + "codePostal": "25530", + "codeCommune": "25325", + "libelleAcheminement": "LANDRESSE", + "nomCommune": "LANDRESSE" }, { - "codePostal": "52190", - "codeCommune": "52445", - "libelleAcheminement": "ST BROINGT LE BOIS", - "nomCommune": "ST BROINGT LE BOIS" + "codePostal": "12800", + "codeCommune": "12060", + "libelleAcheminement": "CASTELMARY", + "nomCommune": "CASTELMARY" }, { - "codePostal": "17350", - "codeCommune": "17134", - "libelleAcheminement": "CRAZANNES", - "nomCommune": "CRAZANNES" + "codePostal": "14250", + "codeCommune": "14111", + "libelleAcheminement": "BUCEELS", + "nomCommune": "BUCEELS" }, { - "codePostal": "19120", - "codeCommune": "19054", - "libelleAcheminement": "CHENAILLER MASCHEIX", - "nomCommune": "CHENAILLER MASCHEIX" + "codePostal": "25110", + "codeCommune": "25354", + "libelleAcheminement": "LUXIOL", + "nomCommune": "LUXIOL" }, { - "codePostal": "57170", - "codeCommune": "57625", - "libelleAcheminement": "SALONNES", - "nomCommune": "SALONNES" + "codePostal": "25260", + "codeCommune": "25345", + "libelleAcheminement": "LONGEVELLE SUR DOUBS", + "nomCommune": "LONGEVELLE SUR DOUBS" }, { - "codePostal": "52200", - "codeCommune": "52449", - "libelleAcheminement": "SAINTS GEOSMES", - "nomCommune": "SAINTS GEOSMES" + "codePostal": "12500", + "codeCommune": "12061", + "libelleAcheminement": "CASTELNAU DE MANDAILLES", + "nomCommune": "CASTELNAU DE MANDAILLES" }, { - "codePostal": "17330", - "codeCommune": "17139", - "libelleAcheminement": "DOEUIL SUR LE MIGNON", - "nomCommune": "DOEUIL SUR LE MIGNON" + "codePostal": "14330", + "codeCommune": "14138", + "libelleAcheminement": "CARTIGNY L EPINAY", + "nomCommune": "CARTIGNY L EPINAY" }, { - "codePostal": "19300", - "codeCommune": "19070", - "libelleAcheminement": "DARNETS", - "nomCommune": "DARNETS" + "codePostal": "25120", + "codeCommune": "25356", + "libelleAcheminement": "MAICHE", + "nomCommune": "MAICHE" }, { - "codePostal": "57200", - "codeCommune": "57631", - "libelleAcheminement": "SARREGUEMINES", - "nomCommune": "SARREGUEMINES" + "codePostal": "25360", + "codeCommune": "25355", + "libelleAcheminement": "MAGNY CHATELARD", + "nomCommune": "MAGNY CHATELARD" }, { - "codePostal": "52210", - "codeCommune": "52450", - "libelleAcheminement": "ST LOUP SUR AUJON", - "nomCommune": "ST LOUP SUR AUJON" + "codePostal": "12620", + "codeCommune": "12062", + "libelleAcheminement": "CASTELNAU PEGAYROLS", + "nomCommune": "CASTELNAU PEGAYROLS" }, { - "codePostal": "17139", - "codeCommune": "17142", - "libelleAcheminement": "DOMPIERRE SUR MER", - "nomCommune": "DOMPIERRE SUR MER" + "codePostal": "14240", + "codeCommune": "14143", + "libelleAcheminement": "CAUMONT SUR AURE", + "nomCommune": "CAUMONT SUR AURE" }, { - "codePostal": "19170", - "codeCommune": "19074", - "libelleAcheminement": "L EGLISE AUX BOIS", - "nomCommune": "L EGLISE AUX BOIS" + "codePostal": "25620", + "codeCommune": "25360", + "libelleAcheminement": "MALBRANS", + "nomCommune": "MALBRANS" }, { - "codePostal": "57200", - "codeCommune": "57631", - "libelleAcheminement": "SARREGUEMINES", - "nomCommune": "SARREGUEMINES" + "codePostal": "25330", + "codeCommune": "25359", + "libelleAcheminement": "MALANS", + "nomCommune": "MALANS" }, { - "codePostal": "52200", - "codeCommune": "52453", - "libelleAcheminement": "ST MAURICE", - "nomCommune": "ST MAURICE" + "codePostal": "12500", + "codeCommune": "12064", + "libelleAcheminement": "LE CAYROL", + "nomCommune": "LE CAYROL" }, { - "codePostal": "17139", - "codeCommune": "17142", - "libelleAcheminement": "DOMPIERRE SUR MER", - "nomCommune": "DOMPIERRE SUR MER" + "codePostal": "14240", + "codeCommune": "14143", + "libelleAcheminement": "CAUMONT SUR AURE", + "nomCommune": "CAUMONT SUR AURE" }, { - "codePostal": "19140", - "codeCommune": "19076", - "libelleAcheminement": "ESPARTIGNAC", - "nomCommune": "ESPARTIGNAC" + "codePostal": "25620", + "codeCommune": "25364", + "libelleAcheminement": "MAMIROLLE", + "nomCommune": "MAMIROLLE" }, { - "codePostal": "57420", - "codeCommune": "57653", - "libelleAcheminement": "SILLY EN SAULNOIS", - "nomCommune": "SILLY EN SAULNOIS" + "codePostal": "25160", + "codeCommune": "25361", + "libelleAcheminement": "MALBUISSON", + "nomCommune": "MALBUISSON" }, { - "codePostal": "52150", - "codeCommune": "52455", - "libelleAcheminement": "ST THIEBAULT", - "nomCommune": "ST THIEBAULT" + "codePostal": "12520", + "codeCommune": "12070", + "libelleAcheminement": "COMPEYRE", + "nomCommune": "COMPEYRE" }, { - "codePostal": "17620", - "codeCommune": "17146", - "libelleAcheminement": "ECHILLAIS", - "nomCommune": "ECHILLAIS" + "codePostal": "14770", + "codeCommune": "14146", + "libelleAcheminement": "CAUVILLE", + "nomCommune": "CAUVILLE" }, { - "codePostal": "19410", - "codeCommune": "19078", - "libelleAcheminement": "ESTIVAUX", - "nomCommune": "ESTIVAUX" + "codePostal": "25250", + "codeCommune": "25369", + "libelleAcheminement": "MARVELISE", + "nomCommune": "MARVELISE" }, { - "codePostal": "57350", - "codeCommune": "57659", - "libelleAcheminement": "SPICHEREN", - "nomCommune": "SPICHEREN" + "codePostal": "25160", + "codeCommune": "25362", + "libelleAcheminement": "MALPAS", + "nomCommune": "MALPAS" }, { - "codePostal": "52140", - "codeCommune": "52461", - "libelleAcheminement": "SARREY", - "nomCommune": "SARREY" + "codePostal": "12470", + "codeCommune": "12074", + "libelleAcheminement": "CONDOM D AUBRAC", + "nomCommune": "CONDOM D AUBRAC" }, { - "codePostal": "17600", - "codeCommune": "17151", - "libelleAcheminement": "L EGUILLE", - "nomCommune": "L EGUILLE" + "codePostal": "14130", + "codeCommune": "14161", + "libelleAcheminement": "CLARBEC", + "nomCommune": "CLARBEC" }, { - "codePostal": "19380", - "codeCommune": "19084", - "libelleAcheminement": "FORGES", - "nomCommune": "FORGES" + "codePostal": "25700", + "codeCommune": "25370", + "libelleAcheminement": "MATHAY", + "nomCommune": "MATHAY" }, { - "codePostal": "57350", - "codeCommune": "57660", - "libelleAcheminement": "STIRING WENDEL", - "nomCommune": "STIRING WENDEL" + "codePostal": "25350", + "codeCommune": "25367", + "libelleAcheminement": "MANDEURE", + "nomCommune": "MANDEURE" }, { - "codePostal": "52230", - "codeCommune": "52463", - "libelleAcheminement": "SAUDRON", - "nomCommune": "SAUDRON" + "codePostal": "12320", + "codeCommune": "12076", + "libelleAcheminement": "CONQUES EN ROUERGUE", + "nomCommune": "CONQUES EN ROUERGUE" }, { - "codePostal": "17120", - "codeCommune": "17152", - "libelleAcheminement": "EPARGNES", - "nomCommune": "EPARGNES" + "codePostal": "14480", + "codeCommune": "14169", + "libelleAcheminement": "COLOMBIERS SUR SEULLES", + "nomCommune": "COLOMBIERS SUR SEULLES" }, { - "codePostal": "19170", - "codeCommune": "19087", - "libelleAcheminement": "GOURDON MURAT", - "nomCommune": "GOURDON MURAT" + "codePostal": "25410", + "codeCommune": "25374", + "libelleAcheminement": "MERCEY LE GRAND", + "nomCommune": "MERCEY LE GRAND" }, { - "codePostal": "57980", - "codeCommune": "57665", - "libelleAcheminement": "TENTELING", - "nomCommune": "TENTELING" + "codePostal": "25210", + "codeCommune": "25373", + "libelleAcheminement": "LE MEMONT", + "nomCommune": "LE MEMONT" }, { - "codePostal": "52700", - "codeCommune": "52468", - "libelleAcheminement": "SEMILLY", - "nomCommune": "SEMILLY" + "codePostal": "12110", + "codeCommune": "12083", + "libelleAcheminement": "CRANSAC", + "nomCommune": "CRANSAC" }, { - "codePostal": "17750", - "codeCommune": "17155", - "libelleAcheminement": "ETAULES", - "nomCommune": "ETAULES" + "codePostal": "14100", + "codeCommune": "14193", + "libelleAcheminement": "COURTONNE LA MEURDRAC", + "nomCommune": "COURTONNE LA MEURDRAC" }, { - "codePostal": "19400", - "codeCommune": "19091", - "libelleAcheminement": "HAUTEFAGE", - "nomCommune": "HAUTEFAGE" + "codePostal": "25170", + "codeCommune": "25383", + "libelleAcheminement": "MONCLEY", + "nomCommune": "MONCLEY" }, { - "codePostal": "57180", - "codeCommune": "57666", - "libelleAcheminement": "TERVILLE", - "nomCommune": "TERVILLE" + "codePostal": "25680", + "codeCommune": "25377", + "libelleAcheminement": "MESANDANS", + "nomCommune": "MESANDANS" }, { - "codePostal": "52000", - "codeCommune": "52469", - "libelleAcheminement": "SEMOUTIERS MONTSAON", - "nomCommune": "SEMOUTIERS MONTSAON" + "codePostal": "12000", + "codeCommune": "12090", + "libelleAcheminement": "DRUELLE BALSAC", + "nomCommune": "DRUELLE BALSAC" }, { - "codePostal": "17240", - "codeCommune": "17160", - "libelleAcheminement": "FLOIRAC", - "nomCommune": "FLOIRAC" + "codePostal": "14290", + "codeCommune": "14194", + "libelleAcheminement": "COURTONNE LES DEUX EGLISES", + "nomCommune": "COURTONNE LES DEUX EGLISES" }, { - "codePostal": "19350", - "codeCommune": "19094", - "libelleAcheminement": "JUILLAC", - "nomCommune": "JUILLAC" + "codePostal": "25210", + "codeCommune": "25391", + "libelleAcheminement": "MONT DE LAVAL", + "nomCommune": "MONT DE LAVAL" }, { - "codePostal": "57590", - "codeCommune": "57674", - "libelleAcheminement": "TINCRY", - "nomCommune": "TINCRY" + "codePostal": "25370", + "codeCommune": "25380", + "libelleAcheminement": "METABIEF", + "nomCommune": "METABIEF" }, { - "codePostal": "52130", - "codeCommune": "52475", - "libelleAcheminement": "SOMMANCOURT", - "nomCommune": "SOMMANCOURT" + "codePostal": "12140", + "codeCommune": "12093", + "libelleAcheminement": "LE FEL", + "nomCommune": "LE FEL" }, { - "codePostal": "17290", - "codeCommune": "17166", - "libelleAcheminement": "FORGES", - "nomCommune": "FORGES" + "codePostal": "14480", + "codeCommune": "14200", + "libelleAcheminement": "CREULLY SUR SEULLES", + "nomCommune": "CREULLY SUR SEULLES" }, { - "codePostal": "19170", - "codeCommune": "19095", - "libelleAcheminement": "LACELLE", - "nomCommune": "LACELLE" + "codePostal": "25120", + "codeCommune": "25392", + "libelleAcheminement": "MONT DE VOUGNEY", + "nomCommune": "MONT DE VOUGNEY" }, { - "codePostal": "57670", - "codeCommune": "57675", - "libelleAcheminement": "TORCHEVILLE", - "nomCommune": "TORCHEVILLE" + "codePostal": "25680", + "codeCommune": "25385", + "libelleAcheminement": "MONTAGNEY SERVIGNEY", + "nomCommune": "MONTAGNEY SERVIGNEY" }, { - "codePostal": "52300", - "codeCommune": "52484", - "libelleAcheminement": "SUZANNECOURT", - "nomCommune": "SUZANNECOURT" + "codePostal": "12310", + "codeCommune": "12107", + "libelleAcheminement": "GAILLAC D AVEYRON", + "nomCommune": "GAILLAC D AVEYRON" }, { - "codePostal": "17360", - "codeCommune": "17173", - "libelleAcheminement": "LA GENETOUZE", - "nomCommune": "LA GENETOUZE" + "codePostal": "14620", + "codeCommune": "14206", + "libelleAcheminement": "CROCY", + "nomCommune": "CROCY" }, { - "codePostal": "19700", - "codeCommune": "19100", - "libelleAcheminement": "LAGRAULIERE", - "nomCommune": "LAGRAULIERE" + "codePostal": "25660", + "codeCommune": "25395", + "libelleAcheminement": "MONTFAUCON", + "nomCommune": "MONTFAUCON" }, { - "codePostal": "57710", - "codeCommune": "57678", - "libelleAcheminement": "TRESSANGE", - "nomCommune": "TRESSANGE" + "codePostal": "25190", + "codeCommune": "25387", + "libelleAcheminement": "MONTANDON", + "nomCommune": "MONTANDON" }, { - "codePostal": "52500", - "codeCommune": "52493", - "libelleAcheminement": "TORNAY", - "nomCommune": "TORNAY" + "codePostal": "12390", + "codeCommune": "12111", + "libelleAcheminement": "GOUTRENS", + "nomCommune": "GOUTRENS" }, { - "codePostal": "17160", - "codeCommune": "17176", - "libelleAcheminement": "GIBOURNE", - "nomCommune": "GIBOURNE" + "codePostal": "14220", + "codeCommune": "14207", + "libelleAcheminement": "CROISILLES", + "nomCommune": "CROISILLES" }, { - "codePostal": "19340", - "codeCommune": "19103", - "libelleAcheminement": "LAMAZIERE HAUTE", - "nomCommune": "LAMAZIERE HAUTE" + "codePostal": "25920", + "codeCommune": "25415", + "libelleAcheminement": "MOUTHIER HAUTE PIERRE", + "nomCommune": "MOUTHIER HAUTE PIERRE" }, { - "codePostal": "57340", - "codeCommune": "57687", - "libelleAcheminement": "VALLERANGE", - "nomCommune": "VALLERANGE" + "codePostal": "25650", + "codeCommune": "25390", + "libelleAcheminement": "MONTBENOIT", + "nomCommune": "MONTBENOIT" }, { - "codePostal": "52000", - "codeCommune": "52494", - "libelleAcheminement": "TREIX", - "nomCommune": "TREIX" + "codePostal": "12230", + "codeCommune": "12115", + "libelleAcheminement": "L HOSPITALET DU LARZAC", + "nomCommune": "L HOSPITALET DU LARZAC" }, { - "codePostal": "17100", - "codeCommune": "17179", - "libelleAcheminement": "LES GONDS", - "nomCommune": "LES GONDS" + "codePostal": "14400", + "codeCommune": "14209", + "libelleAcheminement": "CROUAY", + "nomCommune": "CROUAY" }, { - "codePostal": "19120", - "codeCommune": "19116", - "libelleAcheminement": "LIOURDRES", - "nomCommune": "LIOURDRES" + "codePostal": "25360", + "codeCommune": "25437", + "libelleAcheminement": "OSSE", + "nomCommune": "OSSE" }, { - "codePostal": "57070", - "codeCommune": "57694", - "libelleAcheminement": "VANY", - "nomCommune": "VANY" + "codePostal": "25170", + "codeCommune": "25414", + "libelleAcheminement": "LE MOUTHEROT", + "nomCommune": "LE MOUTHEROT" }, { - "codePostal": "52160", - "codeCommune": "52499", - "libelleAcheminement": "VAILLANT", - "nomCommune": "VAILLANT" + "codePostal": "12600", + "codeCommune": "12118", + "libelleAcheminement": "LACROIX BARREZ", + "nomCommune": "LACROIX BARREZ" }, { - "codePostal": "17500", - "codeCommune": "17187", - "libelleAcheminement": "GUITINIERES", - "nomCommune": "GUITINIERES" + "codePostal": "14220", + "codeCommune": "14211", + "libelleAcheminement": "CULEY LE PATRY", + "nomCommune": "CULEY LE PATRY" }, { - "codePostal": "19600", - "codeCommune": "19117", - "libelleAcheminement": "LISSAC SUR COUZE", - "nomCommune": "LISSAC SUR COUZE" + "codePostal": "25520", + "codeCommune": "25440", + "libelleAcheminement": "OUHANS", + "nomCommune": "OUHANS" }, { - "codePostal": "57580", - "codeCommune": "57698", - "libelleAcheminement": "VATIMONT", - "nomCommune": "VATIMONT" + "codePostal": "25580", + "codeCommune": "25424", + "libelleAcheminement": "LES PREMIERS SAPINS", + "nomCommune": "LES PREMIERS SAPINS" }, { - "codePostal": "52330", - "codeCommune": "52506", - "libelleAcheminement": "VAUDREMONT", - "nomCommune": "VAUDREMONT" + "codePostal": "12210", + "codeCommune": "12119", + "libelleAcheminement": "LAGUIOLE", + "nomCommune": "LAGUIOLE" }, { - "codePostal": "17137", - "codeCommune": "17190", - "libelleAcheminement": "L HOUMEAU", - "nomCommune": "L HOUMEAU" + "codePostal": "14840", + "codeCommune": "14215", + "libelleAcheminement": "CUVERVILLE", + "nomCommune": "CUVERVILLE" }, { - "codePostal": "19360", - "codeCommune": "19123", - "libelleAcheminement": "MALEMORT", - "nomCommune": "MALEMORT" + "codePostal": "25530", + "codeCommune": "25441", + "libelleAcheminement": "OUVANS", + "nomCommune": "OUVANS" }, { - "codePostal": "57420", - "codeCommune": "57708", - "libelleAcheminement": "VERNY", - "nomCommune": "VERNY" + "codePostal": "25190", + "codeCommune": "25426", + "libelleAcheminement": "NOIREFONTAINE", + "nomCommune": "NOIREFONTAINE" }, { - "codePostal": "52130", - "codeCommune": "52510", - "libelleAcheminement": "VAUX SUR BLAISE", - "nomCommune": "VAUX SUR BLAISE" + "codePostal": "12230", + "codeCommune": "12122", + "libelleAcheminement": "LAPANOUSE DE CERNON", + "nomCommune": "LAPANOUSE DE CERNON" }, { - "codePostal": "17330", - "codeCommune": "17195", - "libelleAcheminement": "LA JARRIE AUDOUIN", - "nomCommune": "LA JARRIE AUDOUIN" + "codePostal": "14620", + "codeCommune": "14216", + "libelleAcheminement": "DAMBLAINVILLE", + "nomCommune": "DAMBLAINVILLE" }, { - "codePostal": "19510", - "codeCommune": "19129", - "libelleAcheminement": "MASSERET", - "nomCommune": "MASSERET" + "codePostal": "25360", + "codeCommune": "25446", + "libelleAcheminement": "PASSAVANT", + "nomCommune": "PASSAVANT" }, { - "codePostal": "57670", - "codeCommune": "57711", - "libelleAcheminement": "VIBERSVILLER", - "nomCommune": "VIBERSVILLER" + "codePostal": "25170", + "codeCommune": "25427", + "libelleAcheminement": "NOIRONTE", + "nomCommune": "NOIRONTE" }, { - "codePostal": "52250", - "codeCommune": "52516", - "libelleAcheminement": "VERSEILLES LE HAUT", - "nomCommune": "VERSEILLES LE HAUT" + "codePostal": "12380", + "codeCommune": "12125", + "libelleAcheminement": "LAVAL ROQUECEZIERE", + "nomCommune": "LAVAL ROQUECEZIERE" }, { - "codePostal": "17380", - "codeCommune": "17202", - "libelleAcheminement": "LANDES", - "nomCommune": "LANDES" + "codePostal": "14440", + "codeCommune": "14228", + "libelleAcheminement": "DOUVRES LA DELIVRANDE", + "nomCommune": "DOUVRES LA DELIVRANDE" }, { - "codePostal": "19200", - "codeCommune": "19135", - "libelleAcheminement": "MESTES", - "nomCommune": "MESTES" + "codePostal": "25510", + "codeCommune": "25453", + "libelleAcheminement": "PIERREFONTAINE LES VARANS", + "nomCommune": "PIERREFONTAINE LES VARANS" }, { - "codePostal": "57690", - "codeCommune": "57714", - "libelleAcheminement": "HAUTE VIGNEULLES", - "nomCommune": "HAUTE VIGNEULLES" + "codePostal": "25220", + "codeCommune": "25429", + "libelleAcheminement": "NOVILLARS", + "nomCommune": "NOVILLARS" }, { - "codePostal": "52400", - "codeCommune": "52520", - "libelleAcheminement": "VICQ", - "nomCommune": "VICQ" + "codePostal": "12170", + "codeCommune": "12127", + "libelleAcheminement": "LEDERGUES", + "nomCommune": "LEDERGUES" }, { - "codePostal": "17290", - "codeCommune": "17203", - "libelleAcheminement": "LANDRAIS", - "nomCommune": "LANDRAIS" + "codePostal": "14340", + "codeCommune": "14231", + "libelleAcheminement": "BEAUFOUR DRUVAL", + "nomCommune": "BEAUFOUR DRUVAL" }, { - "codePostal": "19300", - "codeCommune": "19145", - "libelleAcheminement": "MOUSTIER VENTADOUR", - "nomCommune": "MOUSTIER VENTADOUR" + "codePostal": "25170", + "codeCommune": "25455", + "libelleAcheminement": "PLACEY", + "nomCommune": "PLACEY" }, { - "codePostal": "57530", - "codeCommune": "57718", - "libelleAcheminement": "VILLERS STONCOURT", - "nomCommune": "VILLERS STONCOURT" + "codePostal": "25390", + "codeCommune": "25432", + "libelleAcheminement": "ORCHAMPS VENNES", + "nomCommune": "ORCHAMPS VENNES" }, { - "codePostal": "52190", - "codeCommune": "52529", - "libelleAcheminement": "VILLEGUSIEN LE LAC", - "nomCommune": "VILLEGUSIEN LE LAC" + "codePostal": "12440", + "codeCommune": "12128", + "libelleAcheminement": "LESCURE JAOUL", + "nomCommune": "LESCURE JAOUL" }, { - "codePostal": "17500", - "codeCommune": "17204", - "libelleAcheminement": "LEOVILLE", - "nomCommune": "LEOVILLE" + "codePostal": "14250", + "codeCommune": "14232", + "libelleAcheminement": "DUCY STE MARGUERITE", + "nomCommune": "DUCY STE MARGUERITE" }, { - "codePostal": "19460", - "codeCommune": "19146", - "libelleAcheminement": "NAVES", - "nomCommune": "NAVES" + "codePostal": "25440", + "codeCommune": "25460", + "libelleAcheminement": "LE VAL", + "nomCommune": "LE VAL" }, { - "codePostal": "57670", - "codeCommune": "57725", - "libelleAcheminement": "VITTERSBOURG", - "nomCommune": "VITTERSBOURG" + "codePostal": "25290", + "codeCommune": "25434", + "libelleAcheminement": "ORNANS", + "nomCommune": "ORNANS" }, { - "codePostal": "52210", - "codeCommune": "52538", - "libelleAcheminement": "VILLIERS SUR SUIZE", - "nomCommune": "VILLIERS SUR SUIZE" + "codePostal": "12430", + "codeCommune": "12129", + "libelleAcheminement": "LESTRADE ET THOUELS", + "nomCommune": "LESTRADE ET THOUELS" }, { - "codePostal": "17230", - "codeCommune": "17208", - "libelleAcheminement": "LONGEVES", - "nomCommune": "LONGEVES" + "codePostal": "14250", + "codeCommune": "14236", + "libelleAcheminement": "ELLON", + "nomCommune": "ELLON" }, { - "codePostal": "19390", - "codeCommune": "19155", - "libelleAcheminement": "ORLIAC DE BAR", - "nomCommune": "ORLIAC DE BAR" + "codePostal": "25300", + "codeCommune": "25462", + "libelleAcheminement": "PONTARLIER", + "nomCommune": "PONTARLIER" }, { - "codePostal": "57370", - "codeCommune": "57743", - "libelleAcheminement": "WALTEMBOURG", - "nomCommune": "WALTEMBOURG" + "codePostal": "25530", + "codeCommune": "25435", + "libelleAcheminement": "ORSANS", + "nomCommune": "ORSANS" }, { - "codePostal": "52600", - "codeCommune": "52539", - "libelleAcheminement": "VIOLOT", - "nomCommune": "VIOLOT" + "codePostal": "12740", + "codeCommune": "12131", + "libelleAcheminement": "LA LOUBIERE", + "nomCommune": "LA LOUBIERE" }, { - "codePostal": "17520", - "codeCommune": "17209", - "libelleAcheminement": "LONZAC", - "nomCommune": "LONZAC" + "codePostal": "14610", + "codeCommune": "14242", + "libelleAcheminement": "EPRON", + "nomCommune": "EPRON" }, { - "codePostal": "19190", - "codeCommune": "19163", - "libelleAcheminement": "LE PESCHER", - "nomCommune": "LE PESCHER" + "codePostal": "25240", + "codeCommune": "25464", + "libelleAcheminement": "LES PONTETS", + "nomCommune": "LES PONTETS" }, { - "codePostal": "57635", - "codeCommune": "57747", - "libelleAcheminement": "WINTERSBOURG", - "nomCommune": "WINTERSBOURG" + "codePostal": "25320", + "codeCommune": "25438", + "libelleAcheminement": "OSSELLE ROUTELLE", + "nomCommune": "OSSELLE ROUTELLE" }, { - "codePostal": "52130", - "codeCommune": "52543", - "libelleAcheminement": "VOILLECOMTE", - "nomCommune": "VOILLECOMTE" + "codePostal": "12270", + "codeCommune": "12135", + "libelleAcheminement": "LUNAC", + "nomCommune": "LUNAC" }, { - "codePostal": "17240", - "codeCommune": "17210", - "libelleAcheminement": "LORIGNAC", - "nomCommune": "LORIGNAC" + "codePostal": "14220", + "codeCommune": "14248", + "libelleAcheminement": "ESPINS", + "nomCommune": "ESPINS" }, { - "codePostal": "19260", - "codeCommune": "19165", - "libelleAcheminement": "PEYRISSAC", - "nomCommune": "PEYRISSAC" + "codePostal": "25640", + "codeCommune": "25468", + "libelleAcheminement": "POULIGNEY LUSANS", + "nomCommune": "POULIGNEY LUSANS" }, { - "codePostal": "57170", - "codeCommune": "57753", - "libelleAcheminement": "WUISSE", - "nomCommune": "WUISSE" + "codePostal": "25640", + "codeCommune": "25439", + "libelleAcheminement": "OUGNEY DOUVOT", + "nomCommune": "OUGNEY DOUVOT" }, { - "codePostal": "52200", - "codeCommune": "52545", - "libelleAcheminement": "VOISINES", - "nomCommune": "VOISINES" + "codePostal": "12160", + "codeCommune": "12137", + "libelleAcheminement": "MANHAC", + "nomCommune": "MANHAC" }, { - "codePostal": "17230", - "codeCommune": "17218", - "libelleAcheminement": "MARANS", - "nomCommune": "MARANS" + "codePostal": "14210", + "codeCommune": "14257", + "libelleAcheminement": "EVRECY", + "nomCommune": "EVRECY" }, { - "codePostal": "19430", - "codeCommune": "19171", - "libelleAcheminement": "REYGADE", - "nomCommune": "REYGADE" + "codePostal": "25250", + "codeCommune": "25479", + "libelleAcheminement": "RANG", + "nomCommune": "RANG" }, { - "codePostal": "57830", - "codeCommune": "57756", - "libelleAcheminement": "XOUAXANGE", - "nomCommune": "XOUAXANGE" + "codePostal": "25160", + "codeCommune": "25442", + "libelleAcheminement": "OYE ET PALLET", + "nomCommune": "OYE ET PALLET" }, { - "codePostal": "53940", - "codeCommune": "53001", - "libelleAcheminement": "AHUILLE", - "nomCommune": "AHUILLE" + "codePostal": "12550", + "codeCommune": "12141", + "libelleAcheminement": "MARTRIN", + "nomCommune": "MARTRIN" }, { - "codePostal": "17320", - "codeCommune": "17219", - "libelleAcheminement": "MARENNES HIERS BROUAGE", - "nomCommune": "MARENNES HIERS BROUAGE" + "codePostal": "14700", + "codeCommune": "14258", + "libelleAcheminement": "FALAISE", + "nomCommune": "FALAISE" }, { - "codePostal": "19260", - "codeCommune": "19172", - "libelleAcheminement": "RILHAC TREIGNAC", - "nomCommune": "RILHAC TREIGNAC" + "codePostal": "25150", + "codeCommune": "25485", + "libelleAcheminement": "REMONDANS VAIVRE", + "nomCommune": "REMONDANS VAIVRE" }, { - "codePostal": "57970", - "codeCommune": "57757", - "libelleAcheminement": "YUTZ", - "nomCommune": "YUTZ" + "codePostal": "25440", + "codeCommune": "25443", + "libelleAcheminement": "PALANTINE", + "nomCommune": "PALANTINE" }, { - "codePostal": "53300", - "codeCommune": "53003", - "libelleAcheminement": "AMBRIERES LES VALLEES", - "nomCommune": "AMBRIERES LES VALLEES" + "codePostal": "12630", + "codeCommune": "12157", + "libelleAcheminement": "MONTROZIER", + "nomCommune": "MONTROZIER" }, { - "codePostal": "17700", - "codeCommune": "17221", - "libelleAcheminement": "MARSAIS", - "nomCommune": "MARSAIS" + "codePostal": "14290", + "codeCommune": "14273", + "libelleAcheminement": "LA FOLLETIERE ABENON", + "nomCommune": "LA FOLLETIERE ABENON" }, { - "codePostal": "19300", - "codeCommune": "19176", - "libelleAcheminement": "ROSIERS D EGLETONS", - "nomCommune": "ROSIERS D EGLETONS" + "codePostal": "25110", + "codeCommune": "25492", + "libelleAcheminement": "RILLANS", + "nomCommune": "RILLANS" }, { - "codePostal": "57260", - "codeCommune": "57763", - "libelleAcheminement": "ZOMMANGE", - "nomCommune": "ZOMMANGE" + "codePostal": "25870", + "codeCommune": "25444", + "libelleAcheminement": "PALISE", + "nomCommune": "PALISE" }, { - "codePostal": "53600", - "codeCommune": "53010", - "libelleAcheminement": "ASSE LE BERENGER", - "nomCommune": "ASSE LE BERENGER" + "codePostal": "12370", + "codeCommune": "12163", + "libelleAcheminement": "MURASSON", + "nomCommune": "MURASSON" }, { - "codePostal": "17137", - "codeCommune": "17222", - "libelleAcheminement": "MARSILLY", - "nomCommune": "MARSILLY" + "codePostal": "14600", + "codeCommune": "14299", + "libelleAcheminement": "GENNEVILLE", + "nomCommune": "GENNEVILLE" }, { - "codePostal": "19350", - "codeCommune": "19177", - "libelleAcheminement": "ROSIERS DE JUILLAC", - "nomCommune": "ROSIERS DE JUILLAC" + "codePostal": "25560", + "codeCommune": "25493", + "libelleAcheminement": "LA RIVIERE DRUGEON", + "nomCommune": "LA RIVIERE DRUGEON" }, { - "codePostal": "58270", - "codeCommune": "58006", - "libelleAcheminement": "ANLEZY", - "nomCommune": "ANLEZY" + "codePostal": "25390", + "codeCommune": "25457", + "libelleAcheminement": "PLAIMBOIS VENNES", + "nomCommune": "PLAIMBOIS VENNES" }, { - "codePostal": "53400", - "codeCommune": "53012", - "libelleAcheminement": "ATHEE", - "nomCommune": "ATHEE" + "codePostal": "12850", + "codeCommune": "12176", + "libelleAcheminement": "ONET LE CHATEAU", + "nomCommune": "ONET LE CHATEAU" }, { - "codePostal": "17400", - "codeCommune": "17226", - "libelleAcheminement": "MAZERAY", - "nomCommune": "MAZERAY" + "codePostal": "14430", + "codeCommune": "14300", + "libelleAcheminement": "GERROTS", + "nomCommune": "GERROTS" }, { - "codePostal": "19500", - "codeCommune": "19184", - "libelleAcheminement": "ST BAZILE DE MEYSSAC", - "nomCommune": "ST BAZILE DE MEYSSAC" + "codePostal": "25310", + "codeCommune": "25497", + "libelleAcheminement": "ROCHES LES BLAMONT", + "nomCommune": "ROCHES LES BLAMONT" }, { - "codePostal": "58450", - "codeCommune": "58007", - "libelleAcheminement": "ANNAY", - "nomCommune": "ANNAY" + "codePostal": "25440", + "codeCommune": "25460", + "libelleAcheminement": "LE VAL", + "nomCommune": "LE VAL" }, { - "codePostal": "53700", - "codeCommune": "53013", - "libelleAcheminement": "AVERTON", - "nomCommune": "AVERTON" + "codePostal": "12550", + "codeCommune": "12183", + "libelleAcheminement": "PLAISANCE", + "nomCommune": "PLAISANCE" }, { - "codePostal": "17800", - "codeCommune": "17227", - "libelleAcheminement": "MAZEROLLES", - "nomCommune": "MAZEROLLES" + "codePostal": "14430", + "codeCommune": "14308", + "libelleAcheminement": "GOUSTRANVILLE", + "nomCommune": "GOUSTRANVILLE" }, { - "codePostal": "19410", - "codeCommune": "19188", - "libelleAcheminement": "ST BONNET L ENFANTIER", - "nomCommune": "ST BONNET L ENFANTIER" + "codePostal": "25680", + "codeCommune": "25505", + "libelleAcheminement": "ROUGEMONT", + "nomCommune": "ROUGEMONT" }, { - "codePostal": "58500", - "codeCommune": "58011", - "libelleAcheminement": "ARMES", - "nomCommune": "ARMES" + "codePostal": "25110", + "codeCommune": "25465", + "libelleAcheminement": "PONT LES MOULINS", + "nomCommune": "PONT LES MOULINS" }, { - "codePostal": "53350", - "codeCommune": "53018", - "libelleAcheminement": "BALLOTS", - "nomCommune": "BALLOTS" + "codePostal": "12470", + "codeCommune": "12187", + "libelleAcheminement": "PRADES D AUBRAC", + "nomCommune": "PRADES D AUBRAC" }, { - "codePostal": "17150", - "codeCommune": "17236", - "libelleAcheminement": "MIRAMBEAU", - "nomCommune": "MIRAMBEAU" + "codePostal": "14190", + "codeCommune": "14310", + "libelleAcheminement": "GRAINVILLE LANGANNERIE", + "nomCommune": "GRAINVILLE LANGANNERIE" }, { - "codePostal": "19200", - "codeCommune": "19190", - "libelleAcheminement": "ST BONNET PRES BORT", - "nomCommune": "ST BONNET PRES BORT" + "codePostal": "25640", + "codeCommune": "25506", + "libelleAcheminement": "ROUGEMONTOT", + "nomCommune": "ROUGEMONTOT" }, { - "codePostal": "58700", - "codeCommune": "58014", - "libelleAcheminement": "ARZEMBOUY", - "nomCommune": "ARZEMBOUY" + "codePostal": "25680", + "codeCommune": "25472", + "libelleAcheminement": "PUESSANS", + "nomCommune": "PUESSANS" }, { - "codePostal": "53170", - "codeCommune": "53025", - "libelleAcheminement": "BAZOUGERS", - "nomCommune": "BAZOUGERS" + "codePostal": "12320", + "codeCommune": "12193", + "libelleAcheminement": "PRUINES", + "nomCommune": "PRUINES" }, { - "codePostal": "17780", - "codeCommune": "17237", - "libelleAcheminement": "MOEZE", - "nomCommune": "MOEZE" + "codePostal": "14880", + "codeCommune": "14325", + "libelleAcheminement": "HERMANVILLE SUR MER", + "nomCommune": "HERMANVILLE SUR MER" }, { - "codePostal": "19220", - "codeCommune": "19205", - "libelleAcheminement": "ST GENIEZ O MERLE", - "nomCommune": "ST GENIEZ O MERLE" + "codePostal": "25170", + "codeCommune": "25536", + "libelleAcheminement": "SAUVAGNEY", + "nomCommune": "SAUVAGNEY" }, { - "codePostal": "58110", - "codeCommune": "58017", - "libelleAcheminement": "AUNAY EN BAZOIS", - "nomCommune": "AUNAY EN BAZOIS" + "codePostal": "25150", + "codeCommune": "25485", + "libelleAcheminement": "REMONDANS VAIVRE", + "nomCommune": "REMONDANS VAIVRE" }, { - "codePostal": "53290", - "codeCommune": "53029", - "libelleAcheminement": "BIERNE LES VILLAGES", - "nomCommune": "BIERNE LES VILLAGES" + "codePostal": "12800", + "codeCommune": "12194", + "libelleAcheminement": "QUINS", + "nomCommune": "QUINS" }, { - "codePostal": "17350", - "codeCommune": "17252", - "libelleAcheminement": "LE MUNG", - "nomCommune": "LE MUNG" + "codePostal": "14100", + "codeCommune": "14334", + "libelleAcheminement": "L HOTELLERIE", + "nomCommune": "L HOTELLERIE" }, { - "codePostal": "19220", - "codeCommune": "19214", - "libelleAcheminement": "ST JULIEN AUX BOIS", - "nomCommune": "ST JULIEN AUX BOIS" + "codePostal": "25110", + "codeCommune": "25546", + "libelleAcheminement": "SILLEY BLEFOND", + "nomCommune": "SILLEY BLEFOND" }, { - "codePostal": "58420", - "codeCommune": "58026", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "25330", + "codeCommune": "25489", + "libelleAcheminement": "REUGNEY", + "nomCommune": "REUGNEY" }, { - "codePostal": "53960", - "codeCommune": "53034", - "libelleAcheminement": "BONCHAMP LES LAVAL", - "nomCommune": "BONCHAMP LES LAVAL" + "codePostal": "12170", + "codeCommune": "12197", + "libelleAcheminement": "REQUISTA", + "nomCommune": "REQUISTA" }, { - "codePostal": "17380", - "codeCommune": "17254", - "libelleAcheminement": "NACHAMPS", - "nomCommune": "NACHAMPS" + "codePostal": "14430", + "codeCommune": "14335", + "libelleAcheminement": "HOTOT EN AUGE", + "nomCommune": "HOTOT EN AUGE" }, { - "codePostal": "19600", - "codeCommune": "19229", - "libelleAcheminement": "ST PANTALEON DE LARCHE", - "nomCommune": "ST PANTALEON DE LARCHE" + "codePostal": "25600", + "codeCommune": "25547", + "libelleAcheminement": "SOCHAUX", + "nomCommune": "SOCHAUX" }, { - "codePostal": "58420", - "codeCommune": "58026", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "25640", + "codeCommune": "25491", + "libelleAcheminement": "RIGNOSOT", + "nomCommune": "RIGNOSOT" }, { - "codePostal": "53290", - "codeCommune": "53037", - "libelleAcheminement": "BOUESSAY", - "nomCommune": "BOUESSAY" + "codePostal": "12100", + "codeCommune": "12204", + "libelleAcheminement": "LA ROQUE STE MARGUERITE", + "nomCommune": "LA ROQUE STE MARGUERITE" }, { - "codePostal": "17770", - "codeCommune": "17256", - "libelleAcheminement": "NANTILLE", - "nomCommune": "NANTILLE" + "codePostal": "14330", + "codeCommune": "14342", + "libelleAcheminement": "ISIGNY SUR MER", + "nomCommune": "ISIGNY SUR MER" }, { - "codePostal": "19320", - "codeCommune": "19231", - "libelleAcheminement": "ST PARDOUX LA CROISILLE", - "nomCommune": "ST PARDOUX LA CROISILLE" + "codePostal": "25190", + "codeCommune": "25548", + "libelleAcheminement": "SOLEMONT", + "nomCommune": "SOLEMONT" }, { - "codePostal": "58210", - "codeCommune": "58029", - "libelleAcheminement": "BEUVRON", - "nomCommune": "BEUVRON" + "codePostal": "25220", + "codeCommune": "25495", + "libelleAcheminement": "ROCHE LEZ BEAUPRE", + "nomCommune": "ROCHE LEZ BEAUPRE" }, { - "codePostal": "53120", - "codeCommune": "53042", - "libelleAcheminement": "BRECE", - "nomCommune": "BRECE" + "codePostal": "12330", + "codeCommune": "12215", + "libelleAcheminement": "ST CHRISTOPHE VALLON", + "nomCommune": "ST CHRISTOPHE VALLON" }, { - "codePostal": "17470", - "codeCommune": "17271", - "libelleAcheminement": "PAILLE", - "nomCommune": "PAILLE" + "codePostal": "14250", + "codeCommune": "14346", + "libelleAcheminement": "JUAYE MONDAYE", + "nomCommune": "JUAYE MONDAYE" }, { - "codePostal": "19220", - "codeCommune": "19237", - "libelleAcheminement": "ST PRIVAT", - "nomCommune": "ST PRIVAT" + "codePostal": "25520", + "codeCommune": "25549", + "libelleAcheminement": "SOMBACOUR", + "nomCommune": "SOMBACOUR" }, { - "codePostal": "58340", - "codeCommune": "58046", - "libelleAcheminement": "CERCY LA TOUR", - "nomCommune": "CERCY LA TOUR" + "codePostal": "25680", + "codeCommune": "25498", + "libelleAcheminement": "ROGNON", + "nomCommune": "ROGNON" }, { - "codePostal": "53160", - "codeCommune": "53053", - "libelleAcheminement": "CHAMPGENETEUX", - "nomCommune": "CHAMPGENETEUX" + "codePostal": "12500", + "codeCommune": "12216", + "libelleAcheminement": "ST COME D OLT", + "nomCommune": "ST COME D OLT" }, { - "codePostal": "17160", - "codeCommune": "17290", - "libelleAcheminement": "PRIGNAC", - "nomCommune": "PRIGNAC" + "codePostal": "14480", + "codeCommune": "14355", + "libelleAcheminement": "PONTS SUR SEULLES", + "nomCommune": "PONTS SUR SEULLES" }, { - "codePostal": "19380", - "codeCommune": "19245", - "libelleAcheminement": "ST SYLVAIN", - "nomCommune": "ST SYLVAIN" + "codePostal": "25320", + "codeCommune": "25564", + "libelleAcheminement": "TORPES", + "nomCommune": "TORPES" }, { - "codePostal": "58210", - "codeCommune": "58053", - "libelleAcheminement": "CHAMPLEMY", - "nomCommune": "CHAMPLEMY" + "codePostal": "25680", + "codeCommune": "25499", + "libelleAcheminement": "ROMAIN", + "nomCommune": "ROMAIN" }, { - "codePostal": "53950", - "codeCommune": "53056", - "libelleAcheminement": "LA CHAPELLE ANTHENAISE", - "nomCommune": "LA CHAPELLE ANTHENAISE" + "codePostal": "12260", + "codeCommune": "12217", + "libelleAcheminement": "STE CROIX", + "nomCommune": "STE CROIX" }, { - "codePostal": "17138", - "codeCommune": "17291", - "libelleAcheminement": "PUILBOREAU", - "nomCommune": "PUILBOREAU" + "codePostal": "14480", + "codeCommune": "14355", + "libelleAcheminement": "PONTS SUR SEULLES", + "nomCommune": "PONTS SUR SEULLES" }, { - "codePostal": "19140", - "codeCommune": "19248", - "libelleAcheminement": "ST YBARD", - "nomCommune": "ST YBARD" + "codePostal": "25370", + "codeCommune": "25565", + "libelleAcheminement": "TOUILLON ET LOUTELET", + "nomCommune": "TOUILLON ET LOUTELET" }, { - "codePostal": "58300", - "codeCommune": "58055", - "libelleAcheminement": "CHAMPVERT", - "nomCommune": "CHAMPVERT" + "codePostal": "25240", + "codeCommune": "25501", + "libelleAcheminement": "RONDEFONTAINE", + "nomCommune": "RONDEFONTAINE" }, { - "codePostal": "53200", - "codeCommune": "53062", - "libelleAcheminement": "CHATEAU GONTIER SUR MAYENNE", - "nomCommune": "CHATEAU GONTIER SUR MAYENNE" + "codePostal": "12320", + "codeCommune": "12221", + "libelleAcheminement": "ST FELIX DE LUNEL", + "nomCommune": "ST FELIX DE LUNEL" }, { - "codePostal": "17500", - "codeCommune": "17295", - "libelleAcheminement": "REAUX SUR TREFLE", - "nomCommune": "REAUX SUR TREFLE" + "codePostal": "14100", + "codeCommune": "14366", + "libelleAcheminement": "LISIEUX", + "nomCommune": "LISIEUX" }, { - "codePostal": "19110", - "codeCommune": "19252", - "libelleAcheminement": "SARROUX ST JULIEN", - "nomCommune": "SARROUX ST JULIEN" + "codePostal": "25470", + "codeCommune": "25573", + "libelleAcheminement": "URTIERE", + "nomCommune": "URTIERE" }, { - "codePostal": "58240", - "codeCommune": "58057", - "libelleAcheminement": "CHANTENAY ST IMBERT", - "nomCommune": "CHANTENAY ST IMBERT" + "codePostal": "25380", + "codeCommune": "25504", + "libelleAcheminement": "ROSUREUX", + "nomCommune": "ROSUREUX" }, { - "codePostal": "53300", - "codeCommune": "53079", - "libelleAcheminement": "COUESMES VAUCE", - "nomCommune": "COUESMES VAUCE" + "codePostal": "12420", + "codeCommune": "12223", + "libelleAcheminement": "ARGENCES EN AUBRAC", + "nomCommune": "ARGENCES EN AUBRAC" }, { - "codePostal": "17460", - "codeCommune": "17296", - "libelleAcheminement": "RETAUD", - "nomCommune": "RETAUD" + "codePostal": "14330", + "codeCommune": "14367", + "libelleAcheminement": "LISON", + "nomCommune": "LISON" }, { - "codePostal": "19310", - "codeCommune": "19253", - "libelleAcheminement": "SEGONZAC", - "nomCommune": "SEGONZAC" + "codePostal": "25700", + "codeCommune": "25580", + "libelleAcheminement": "VALENTIGNEY", + "nomCommune": "VALENTIGNEY" }, { - "codePostal": "58400", - "codeCommune": "58059", - "libelleAcheminement": "LA CHARITE SUR LOIRE", - "nomCommune": "LA CHARITE SUR LOIRE" + "codePostal": "25340", + "codeCommune": "25516", + "libelleAcheminement": "ST GEORGES ARMONT", + "nomCommune": "ST GEORGES ARMONT" }, { - "codePostal": "53300", - "codeCommune": "53079", - "libelleAcheminement": "COUESMES VAUCE", - "nomCommune": "COUESMES VAUCE" + "codePostal": "12480", + "codeCommune": "12228", + "libelleAcheminement": "ST IZAIRE", + "nomCommune": "ST IZAIRE" }, { - "codePostal": "17940", - "codeCommune": "17297", - "libelleAcheminement": "RIVEDOUX PLAGE", - "nomCommune": "RIVEDOUX PLAGE" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "19160", - "codeCommune": "19256", - "libelleAcheminement": "SERANDON", - "nomCommune": "SERANDON" + "codePostal": "25190", + "codeCommune": "25583", + "libelleAcheminement": "VALONNE", + "nomCommune": "VALONNE" }, { - "codePostal": "58160", - "codeCommune": "58072", - "libelleAcheminement": "CHEVENON", - "nomCommune": "CHEVENON" + "codePostal": "25190", + "codeCommune": "25519", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "53700", - "codeCommune": "53083", - "libelleAcheminement": "COURCITE", - "nomCommune": "COURCITE" + "codePostal": "12780", + "codeCommune": "12238", + "libelleAcheminement": "ST LEONS", + "nomCommune": "ST LEONS" }, { - "codePostal": "17000", - "codeCommune": "17300", - "libelleAcheminement": "LA ROCHELLE", - "nomCommune": "LA ROCHELLE" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "19290", - "codeCommune": "19261", - "libelleAcheminement": "SORNAC", - "nomCommune": "SORNAC" + "codePostal": "25190", + "codeCommune": "25591", + "libelleAcheminement": "VAUFREY", + "nomCommune": "VAUFREY" }, { - "codePostal": "58800", - "codeCommune": "58075", - "libelleAcheminement": "CHITRY LES MINES", - "nomCommune": "CHITRY LES MINES" + "codePostal": "25360", + "codeCommune": "25520", + "libelleAcheminement": "ST JUAN", + "nomCommune": "ST JUAN" }, { - "codePostal": "53700", - "codeCommune": "53085", - "libelleAcheminement": "CRENNES SUR FRAUBEE", - "nomCommune": "CRENNES SUR FRAUBEE" + "codePostal": "12200", + "codeCommune": "12242", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "17250", - "codeCommune": "17302", - "libelleAcheminement": "ROMEGOUX", - "nomCommune": "ROMEGOUX" + "codePostal": "14700", + "codeCommune": "14375", + "libelleAcheminement": "LES LOGES SAULCES", + "nomCommune": "LES LOGES SAULCES" }, { - "codePostal": "19370", - "codeCommune": "19262", - "libelleAcheminement": "SOUDAINE LAVINADIERE", - "nomCommune": "SOUDAINE LAVINADIERE" + "codePostal": "25160", + "codeCommune": "25592", + "libelleAcheminement": "VAUX ET CHANTEGRUE", + "nomCommune": "VAUX ET CHANTEGRUE" }, { - "codePostal": "58220", - "codeCommune": "58077", - "libelleAcheminement": "CIEZ", - "nomCommune": "CIEZ" + "codePostal": "25160", + "codeCommune": "25525", + "libelleAcheminement": "ST POINT LAC", + "nomCommune": "ST POINT LAC" }, { - "codePostal": "53170", - "codeCommune": "53087", - "libelleAcheminement": "LA CROPTE", - "nomCommune": "LA CROPTE" + "codePostal": "12400", + "codeCommune": "12251", + "libelleAcheminement": "ST VICTOR ET MELVIEU", + "nomCommune": "ST VICTOR ET MELVIEU" }, { - "codePostal": "17800", - "codeCommune": "17304", - "libelleAcheminement": "ROUFFIAC", - "nomCommune": "ROUFFIAC" + "codePostal": "14250", + "codeCommune": "14380", + "libelleAcheminement": "LOUCELLES", + "nomCommune": "LOUCELLES" }, { - "codePostal": "19200", - "codeCommune": "19266", - "libelleAcheminement": "THALAMY", - "nomCommune": "THALAMY" + "codePostal": "25870", + "codeCommune": "25598", + "libelleAcheminement": "VENISE", + "nomCommune": "VENISE" }, { - "codePostal": "58200", - "codeCommune": "58086", - "libelleAcheminement": "COSNE COURS SUR LOIRE", - "nomCommune": "COSNE COURS SUR LOIRE" + "codePostal": "25440", + "codeCommune": "25528", + "libelleAcheminement": "SAMSON", + "nomCommune": "SAMSON" }, { - "codePostal": "53200", - "codeCommune": "53089", - "libelleAcheminement": "DAON", - "nomCommune": "DAON" + "codePostal": "12410", + "codeCommune": "12253", + "libelleAcheminement": "SALLES CURAN", + "nomCommune": "SALLES CURAN" }, { - "codePostal": "17220", - "codeCommune": "17315", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "14170", + "codeCommune": "14381", + "libelleAcheminement": "LOUVAGNY", + "nomCommune": "LOUVAGNY" }, { - "codePostal": "19260", - "codeCommune": "19269", - "libelleAcheminement": "TREIGNAC", - "nomCommune": "TREIGNAC" + "codePostal": "25640", + "codeCommune": "25599", + "libelleAcheminement": "VENNANS", + "nomCommune": "VENNANS" }, { - "codePostal": "58220", - "codeCommune": "58089", - "libelleAcheminement": "COULOUTRE", - "nomCommune": "COULOUTRE" + "codePostal": "25240", + "codeCommune": "25534", + "libelleAcheminement": "SARRAGEOIS", + "nomCommune": "SARRAGEOIS" }, { - "codePostal": "53940", - "codeCommune": "53103", - "libelleAcheminement": "LE GENEST ST ISLE", - "nomCommune": "LE GENEST ST ISLE" + "codePostal": "12740", + "codeCommune": "12264", + "libelleAcheminement": "SEBAZAC CONCOURES", + "nomCommune": "SEBAZAC CONCOURES" }, { - "codePostal": "17240", - "codeCommune": "17325", - "libelleAcheminement": "ST DIZANT DU GUA", - "nomCommune": "ST DIZANT DU GUA" + "codePostal": "14530", + "codeCommune": "14384", + "libelleAcheminement": "LUC SUR MER", + "nomCommune": "LUC SUR MER" }, { - "codePostal": "19500", - "codeCommune": "19273", - "libelleAcheminement": "TURENNE", - "nomCommune": "TURENNE" + "codePostal": "25390", + "codeCommune": "25600", + "libelleAcheminement": "VENNES", + "nomCommune": "VENNES" }, { - "codePostal": "58330", - "codeCommune": "58092", - "libelleAcheminement": "CRUX LA VILLE", - "nomCommune": "CRUX LA VILLE" + "codePostal": "25270", + "codeCommune": "25541", + "libelleAcheminement": "SEPTFONTAINES", + "nomCommune": "SEPTFONTAINES" }, { - "codePostal": "53200", - "codeCommune": "53104", - "libelleAcheminement": "GENNES LONGUEFUYE", - "nomCommune": "GENNES LONGUEFUYE" + "codePostal": "12170", + "codeCommune": "12267", + "libelleAcheminement": "LA SELVE", + "nomCommune": "LA SELVE" }, { - "codePostal": "17240", - "codeCommune": "17328", - "libelleAcheminement": "ST FORT SUR GIRONDE", - "nomCommune": "ST FORT SUR GIRONDE" + "codePostal": "14620", + "codeCommune": "14402", + "libelleAcheminement": "LE MARAIS LA CHAPELLE", + "nomCommune": "LE MARAIS LA CHAPELLE" }, { - "codePostal": "19270", - "codeCommune": "19274", - "libelleAcheminement": "USSAC", - "nomCommune": "USSAC" + "codePostal": "25190", + "codeCommune": "25617", + "libelleAcheminement": "VILLARS SOUS DAMPJOUX", + "nomCommune": "VILLARS SOUS DAMPJOUX" }, { - "codePostal": "58310", - "codeCommune": "58094", - "libelleAcheminement": "DAMPIERRE SOUS BOUHY", - "nomCommune": "DAMPIERRE SOUS BOUHY" + "codePostal": "25770", + "codeCommune": "25542", + "libelleAcheminement": "SERRE LES SAPINS", + "nomCommune": "SERRE LES SAPINS" }, { - "codePostal": "53200", - "codeCommune": "53104", - "libelleAcheminement": "GENNES LONGUEFUYE", - "nomCommune": "GENNES LONGUEFUYE" + "codePostal": "12320", + "codeCommune": "12268", + "libelleAcheminement": "SENERGUES", + "nomCommune": "SENERGUES" }, { - "codePostal": "17240", - "codeCommune": "17331", - "libelleAcheminement": "ST GENIS DE SAINTONGE", - "nomCommune": "ST GENIS DE SAINTONGE" + "codePostal": "14370", + "codeCommune": "14410", + "libelleAcheminement": "MERY BISSIERES EN AUGE", + "nomCommune": "MERY BISSIERES EN AUGE" }, { - "codePostal": "19130", - "codeCommune": "19279", - "libelleAcheminement": "VARS SUR ROSEIX", - "nomCommune": "VARS SUR ROSEIX" + "codePostal": "25530", + "codeCommune": "25623", + "libelleAcheminement": "VILLERS CHIEF", + "nomCommune": "VILLERS CHIEF" }, { - "codePostal": "58340", - "codeCommune": "58097", - "libelleAcheminement": "DIENNES AUBIGNY", - "nomCommune": "DIENNES AUBIGNY" + "codePostal": "25430", + "codeCommune": "25544", + "libelleAcheminement": "SERVIN", + "nomCommune": "SERVIN" }, { - "codePostal": "53410", - "codeCommune": "53108", - "libelleAcheminement": "LA GRAVELLE", - "nomCommune": "LA GRAVELLE" + "codePostal": "12150", + "codeCommune": "12270", + "libelleAcheminement": "SEVERAC D AVEYRON", + "nomCommune": "SEVERAC D AVEYRON" }, { - "codePostal": "17470", - "codeCommune": "17334", - "libelleAcheminement": "ST GEORGES DE LONGUEPIERRE", - "nomCommune": "ST GEORGES DE LONGUEPIERRE" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "19200", - "codeCommune": "19283", - "libelleAcheminement": "VEYRIERES", - "nomCommune": "VEYRIERES" + "codePostal": "25840", + "codeCommune": "25633", + "libelleAcheminement": "VUILLAFANS", + "nomCommune": "VUILLAFANS" }, { - "codePostal": "58120", - "codeCommune": "58099", - "libelleAcheminement": "DOMMARTIN", - "nomCommune": "DOMMARTIN" + "codePostal": "25510", + "codeCommune": "25550", + "libelleAcheminement": "LA SOMMETTE", + "nomCommune": "LA SOMMETTE" }, { - "codePostal": "53110", - "codeCommune": "53118", - "libelleAcheminement": "LE HOUSSEAU BRETIGNOLLES", - "nomCommune": "LE HOUSSEAU BRETIGNOLLES" + "codePostal": "12200", + "codeCommune": "12281", + "libelleAcheminement": "TOULONJAC", + "nomCommune": "TOULONJAC" }, { - "codePostal": "17240", - "codeCommune": "17342", - "libelleAcheminement": "ST GERMAIN DU SEUDRE", - "nomCommune": "ST GERMAIN DU SEUDRE" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "19410", - "codeCommune": "19285", - "libelleAcheminement": "VIGEOIS", - "nomCommune": "VIGEOIS" + "codePostal": "25300", + "codeCommune": "25634", + "libelleAcheminement": "VUILLECIN", + "nomCommune": "VUILLECIN" }, { - "codePostal": "58220", - "codeCommune": "58102", - "libelleAcheminement": "DONZY", - "nomCommune": "DONZY" + "codePostal": "25250", + "codeCommune": "25553", + "libelleAcheminement": "SOYE", + "nomCommune": "SOYE" }, { - "codePostal": "53970", - "codeCommune": "53119", - "libelleAcheminement": "L HUISSERIE", - "nomCommune": "L HUISSERIE" + "codePostal": "12290", + "codeCommune": "12283", + "libelleAcheminement": "TREMOUILLES", + "nomCommune": "TREMOUILLES" }, { - "codePostal": "17500", - "codeCommune": "17345", - "libelleAcheminement": "ST HILAIRE DU BOIS", - "nomCommune": "ST HILAIRE DU BOIS" + "codePostal": "14340", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "21700", - "codeCommune": "21001", - "libelleAcheminement": "AGENCOURT", - "nomCommune": "AGENCOURT" + "codePostal": "26800", + "codeCommune": "26007", + "libelleAcheminement": "AMBONIL", + "nomCommune": "AMBONIL" }, { - "codePostal": "58390", - "codeCommune": "58104", - "libelleAcheminement": "DORNES", - "nomCommune": "DORNES" + "codePostal": "25870", + "codeCommune": "25557", + "libelleAcheminement": "TALLENAY", + "nomCommune": "TALLENAY" }, { - "codePostal": "53250", - "codeCommune": "53121", - "libelleAcheminement": "JAVRON LES CHAPELLES", - "nomCommune": "JAVRON LES CHAPELLES" + "codePostal": "12430", + "codeCommune": "12284", + "libelleAcheminement": "LE TRUEL", + "nomCommune": "LE TRUEL" }, { - "codePostal": "17320", - "codeCommune": "17351", - "libelleAcheminement": "ST JUST LUZAC", - "nomCommune": "ST JUST LUZAC" + "codePostal": "14400", + "codeCommune": "14453", + "libelleAcheminement": "MOSLES", + "nomCommune": "MOSLES" }, { - "codePostal": "21400", - "codeCommune": "21006", - "libelleAcheminement": "AISEY SUR SEINE", - "nomCommune": "AISEY SUR SEINE" + "codePostal": "26140", + "codeCommune": "26009", + "libelleAcheminement": "ANDANCETTE", + "nomCommune": "ANDANCETTE" }, { - "codePostal": "58110", - "codeCommune": "58107", - "libelleAcheminement": "DUN SUR GRANDRY", - "nomCommune": "DUN SUR GRANDRY" + "codePostal": "25620", + "codeCommune": "25558", + "libelleAcheminement": "TARCENAY FOUCHERANS", + "nomCommune": "TARCENAY FOUCHERANS" }, { - "codePostal": "53160", - "codeCommune": "53122", - "libelleAcheminement": "JUBLAINS", - "nomCommune": "JUBLAINS" + "codePostal": "12330", + "codeCommune": "12288", + "libelleAcheminement": "VALADY", + "nomCommune": "VALADY" }, { - "codePostal": "17450", - "codeCommune": "17353", - "libelleAcheminement": "ST LAURENT DE LA PREE", - "nomCommune": "ST LAURENT DE LA PREE" + "codePostal": "14590", + "codeCommune": "14460", + "libelleAcheminement": "MOYAUX", + "nomCommune": "MOYAUX" }, { - "codePostal": "21400", - "codeCommune": "21012", - "libelleAcheminement": "AMPILLY LE SEC", - "nomCommune": "AMPILLY LE SEC" + "codePostal": "26140", + "codeCommune": "26010", + "libelleAcheminement": "ANNEYRON", + "nomCommune": "ANNEYRON" }, { - "codePostal": "58140", - "codeCommune": "58120", - "libelleAcheminement": "GACOGNE", - "nomCommune": "GACOGNE" + "codePostal": "25680", + "codeCommune": "25567", + "libelleAcheminement": "TOURNANS", + "nomCommune": "TOURNANS" }, { - "codePostal": "53380", - "codeCommune": "53123", - "libelleAcheminement": "JUVIGNE", - "nomCommune": "JUVIGNE" + "codePostal": "12220", + "codeCommune": "12289", + "libelleAcheminement": "VALZERGUES", + "nomCommune": "VALZERGUES" }, { - "codePostal": "17520", - "codeCommune": "17357", - "libelleAcheminement": "ST MAIGRIN", - "nomCommune": "ST MAIGRIN" + "codePostal": "14700", + "codeCommune": "14467", + "libelleAcheminement": "NORON L ABBAYE", + "nomCommune": "NORON L ABBAYE" }, { - "codePostal": "21360", - "codeCommune": "21014", - "libelleAcheminement": "ANTHEUIL", - "nomCommune": "ANTHEUIL" + "codePostal": "26260", + "codeCommune": "26014", + "libelleAcheminement": "ARTHEMONAY", + "nomCommune": "ARTHEMONAY" }, { - "codePostal": "58800", - "codeCommune": "58123", - "libelleAcheminement": "GERMENAY", - "nomCommune": "GERMENAY" + "codePostal": "25470", + "codeCommune": "25571", + "libelleAcheminement": "TREVILLERS", + "nomCommune": "TREVILLERS" }, { - "codePostal": "53200", - "codeCommune": "53124", - "libelleAcheminement": "PREE D ANJOU", - "nomCommune": "PREE D ANJOU" + "codePostal": "12220", + "codeCommune": "12290", + "libelleAcheminement": "VAUREILLES", + "nomCommune": "VAUREILLES" }, { - "codePostal": "17330", - "codeCommune": "17361", - "libelleAcheminement": "ST MARTIAL", - "nomCommune": "ST MARTIAL" + "codePostal": "14490", + "codeCommune": "14468", + "libelleAcheminement": "NORON LA POTERIE", + "nomCommune": "NORON LA POTERIE" }, { - "codePostal": "21230", - "codeCommune": "21015", - "libelleAcheminement": "ANTIGNY LA VILLE", - "nomCommune": "ANTIGNY LA VILLE" + "codePostal": "26110", + "codeCommune": "26016", + "libelleAcheminement": "AUBRES", + "nomCommune": "AUBRES" }, { - "codePostal": "58420", - "codeCommune": "58130", - "libelleAcheminement": "GRENOIS", - "nomCommune": "GRENOIS" + "codePostal": "25220", + "codeCommune": "25575", + "libelleAcheminement": "VAIRE", + "nomCommune": "VAIRE" }, { - "codePostal": "53200", - "codeCommune": "53124", - "libelleAcheminement": "PREE D ANJOU", - "nomCommune": "PREE D ANJOU" + "codePostal": "12290", + "codeCommune": "12297", + "libelleAcheminement": "LE VIBAL", + "nomCommune": "LE VIBAL" }, { - "codePostal": "17500", - "codeCommune": "17363", - "libelleAcheminement": "ST MARTIAL DE VITATERNE", - "nomCommune": "ST MARTIAL DE VITATERNE" + "codePostal": "14620", + "codeCommune": "14469", + "libelleAcheminement": "NORREY EN AUGE", + "nomCommune": "NORREY EN AUGE" }, { - "codePostal": "21700", - "codeCommune": "21017", - "libelleAcheminement": "ARCENANT", - "nomCommune": "ARCENANT" + "codePostal": "26160", + "codeCommune": "26031", + "libelleAcheminement": "LA BATIE ROLLAND", + "nomCommune": "LA BATIE ROLLAND" }, { - "codePostal": "58130", - "codeCommune": "58131", - "libelleAcheminement": "GUERIGNY", - "nomCommune": "GUERIGNY" + "codePostal": "25870", + "codeCommune": "25582", + "libelleAcheminement": "VALLEROY", + "nomCommune": "VALLEROY" }, { - "codePostal": "53190", - "codeCommune": "53125", - "libelleAcheminement": "LANDIVY", - "nomCommune": "LANDIVY" + "codePostal": "13190", + "codeCommune": "13002", + "libelleAcheminement": "ALLAUCH", + "nomCommune": "ALLAUCH" }, { - "codePostal": "17360", - "codeCommune": "17366", - "libelleAcheminement": "ST MARTIN DE COUX", - "nomCommune": "ST MARTIN DE COUX" + "codePostal": "14340", + "codeCommune": "14473", + "libelleAcheminement": "NOTRE DAME DE LIVAYE", + "nomCommune": "NOTRE DAME DE LIVAYE" }, { - "codePostal": "21560", - "codeCommune": "21021", - "libelleAcheminement": "ARC SUR TILLE", - "nomCommune": "ARC SUR TILLE" + "codePostal": "26120", + "codeCommune": "26032", + "libelleAcheminement": "LA BAUME CORNILLANE", + "nomCommune": "LA BAUME CORNILLANE" }, { - "codePostal": "58290", - "codeCommune": "58142", - "libelleAcheminement": "LIMANTON", - "nomCommune": "LIMANTON" + "codePostal": "25190", + "codeCommune": "25584", + "libelleAcheminement": "VALOREILLE", + "nomCommune": "VALOREILLE" }, { - "codePostal": "53110", - "codeCommune": "53127", - "libelleAcheminement": "LASSAY LES CHATEAUX", - "nomCommune": "LASSAY LES CHATEAUX" + "codePostal": "13129", + "codeCommune": "13004", + "libelleAcheminement": "ARLES", + "nomCommune": "ARLES" }, { - "codePostal": "17400", - "codeCommune": "17367", - "libelleAcheminement": "ST MARTIN DE JUILLERS", - "nomCommune": "ST MARTIN DE JUILLERS" + "codePostal": "14290", + "codeCommune": "14478", + "libelleAcheminement": "ORBEC", + "nomCommune": "ORBEC" }, { - "codePostal": "21230", - "codeCommune": "21023", - "libelleAcheminement": "ARNAY LE DUC", - "nomCommune": "ARNAY LE DUC" + "codePostal": "26310", + "codeCommune": "26036", + "libelleAcheminement": "BEAUMONT EN DIOIS", + "nomCommune": "BEAUMONT EN DIOIS" }, { - "codePostal": "58270", - "codeCommune": "58143", - "libelleAcheminement": "LIMON", - "nomCommune": "LIMON" + "codePostal": "25230", + "codeCommune": "25586", + "libelleAcheminement": "VANDONCOURT", + "nomCommune": "VANDONCOURT" }, { - "codePostal": "53200", - "codeCommune": "53136", - "libelleAcheminement": "LA ROCHE NEUVILLE", - "nomCommune": "LA ROCHE NEUVILLE" + "codePostal": "13330", + "codeCommune": "13009", + "libelleAcheminement": "LA BARBEN", + "nomCommune": "LA BARBEN" }, { - "codePostal": "17410", - "codeCommune": "17369", - "libelleAcheminement": "ST MARTIN DE RE", - "nomCommune": "ST MARTIN DE RE" + "codePostal": "14230", + "codeCommune": "14480", + "libelleAcheminement": "OSMANVILLE", + "nomCommune": "OSMANVILLE" }, { - "codePostal": "21350", - "codeCommune": "21024", - "libelleAcheminement": "ARNAY SOUS VITTEAUX", - "nomCommune": "ARNAY SOUS VITTEAUX" + "codePostal": "26760", + "codeCommune": "26037", + "libelleAcheminement": "BEAUMONT LES VALENCE", + "nomCommune": "BEAUMONT LES VALENCE" }, { - "codePostal": "58240", - "codeCommune": "58144", - "libelleAcheminement": "LIVRY", - "nomCommune": "LIVRY" + "codePostal": "25380", + "codeCommune": "25589", + "libelleAcheminement": "VAUCLUSOTTE", + "nomCommune": "VAUCLUSOTTE" }, { - "codePostal": "53210", - "codeCommune": "53141", - "libelleAcheminement": "LOUVIGNE", - "nomCommune": "LOUVIGNE" + "codePostal": "13480", + "codeCommune": "13019", + "libelleAcheminement": "CABRIES", + "nomCommune": "CABRIES" }, { - "codePostal": "17780", - "codeCommune": "17375", - "libelleAcheminement": "ST NAZAIRE SUR CHARENTE", - "nomCommune": "ST NAZAIRE SUR CHARENTE" + "codePostal": "14190", + "codeCommune": "14486", + "libelleAcheminement": "OUILLY LE TESSON", + "nomCommune": "OUILLY LE TESSON" }, { - "codePostal": "21380", - "codeCommune": "21027", - "libelleAcheminement": "ASNIERES LES DIJON", - "nomCommune": "ASNIERES LES DIJON" + "codePostal": "26800", + "codeCommune": "26042", + "libelleAcheminement": "BEAUVALLON", + "nomCommune": "BEAUVALLON" }, { - "codePostal": "58140", - "codeCommune": "58145", - "libelleAcheminement": "LORMES", - "nomCommune": "LORMES" + "codePostal": "25430", + "codeCommune": "25595", + "libelleAcheminement": "VELLEROT LES BELVOIR", + "nomCommune": "VELLEROT LES BELVOIR" }, { - "codePostal": "53150", - "codeCommune": "53161", - "libelleAcheminement": "MONTSURS", - "nomCommune": "MONTSURS" + "codePostal": "13950", + "codeCommune": "13020", + "libelleAcheminement": "CADOLIVE", + "nomCommune": "CADOLIVE" }, { - "codePostal": "17310", - "codeCommune": "17385", - "libelleAcheminement": "ST PIERRE D OLERON", - "nomCommune": "ST PIERRE D OLERON" + "codePostal": "14700", + "codeCommune": "14498", + "libelleAcheminement": "PERTHEVILLE NERS", + "nomCommune": "PERTHEVILLE NERS" }, { - "codePostal": "21500", - "codeCommune": "21029", - "libelleAcheminement": "ATHIE", - "nomCommune": "ATHIE" + "codePostal": "26260", + "codeCommune": "26061", + "libelleAcheminement": "BREN", + "nomCommune": "BREN" }, { - "codePostal": "58190", - "codeCommune": "58150", - "libelleAcheminement": "LYS", - "nomCommune": "LYS" + "codePostal": "25530", + "codeCommune": "25596", + "libelleAcheminement": "VELLEROT LES VERCEL", + "nomCommune": "VELLEROT LES VERCEL" }, { - "codePostal": "53250", - "codeCommune": "53164", - "libelleAcheminement": "NEUILLY LE VENDIN", - "nomCommune": "NEUILLY LE VENDIN" + "codePostal": "13620", + "codeCommune": "13021", + "libelleAcheminement": "CARRY LE ROUET", + "nomCommune": "CARRY LE ROUET" }, { - "codePostal": "17270", - "codeCommune": "17386", - "libelleAcheminement": "ST PIERRE DU PALAIS", - "nomCommune": "ST PIERRE DU PALAIS" + "codePostal": "14130", + "codeCommune": "14500", + "libelleAcheminement": "PIERREFITTE EN AUGE", + "nomCommune": "PIERREFITTE EN AUGE" }, { - "codePostal": "21360", - "codeCommune": "21030", - "libelleAcheminement": "AUBAINE", - "nomCommune": "AUBAINE" + "codePostal": "26170", + "codeCommune": "26063", + "libelleAcheminement": "BUIS LES BARONNIES", + "nomCommune": "BUIS LES BARONNIES" }, { - "codePostal": "58400", - "codeCommune": "58155", - "libelleAcheminement": "LA MARCHE", - "nomCommune": "LA MARCHE" + "codePostal": "25110", + "codeCommune": "25602", + "libelleAcheminement": "VERGRANNE", + "nomCommune": "VERGRANNE" }, { - "codePostal": "53240", - "codeCommune": "53179", - "libelleAcheminement": "PLACE", - "nomCommune": "PLACE" + "codePostal": "13600", + "codeCommune": "13023", + "libelleAcheminement": "CEYRESTE", + "nomCommune": "CEYRESTE" }, { - "codePostal": "17250", - "codeCommune": "17389", - "libelleAcheminement": "STE RADEGONDE", - "nomCommune": "STE RADEGONDE" + "codePostal": "14490", + "codeCommune": "14506", + "libelleAcheminement": "PLANQUERY", + "nomCommune": "PLANQUERY" }, { - "codePostal": "21540", - "codeCommune": "21033", - "libelleAcheminement": "AUBIGNY LES SOMBERNON", - "nomCommune": "AUBIGNY LES SOMBERNON" + "codePostal": "26120", + "codeCommune": "26064", + "libelleAcheminement": "CHABEUIL", + "nomCommune": "CHABEUIL" }, { - "codePostal": "58800", - "codeCommune": "58159", - "libelleAcheminement": "MARIGNY SUR YONNE", - "nomCommune": "MARIGNY SUR YONNE" + "codePostal": "25750", + "codeCommune": "25608", + "libelleAcheminement": "LE VERNOY", + "nomCommune": "LE VERNOY" }, { - "codePostal": "53410", - "codeCommune": "53182", - "libelleAcheminement": "PORT BRILLET", - "nomCommune": "PORT BRILLET" + "codePostal": "13790", + "codeCommune": "13025", + "libelleAcheminement": "CHATEAUNEUF LE ROUGE", + "nomCommune": "CHATEAUNEUF LE ROUGE" }, { - "codePostal": "17800", - "codeCommune": "17398", - "libelleAcheminement": "ST SEURIN DE PALENNE", - "nomCommune": "ST SEURIN DE PALENNE" + "codePostal": "14130", + "codeCommune": "14514", + "libelleAcheminement": "PONT L EVEQUE", + "nomCommune": "PONT L EVEQUE" }, { - "codePostal": "21350", - "codeCommune": "21040", - "libelleAcheminement": "AVOSNES", - "nomCommune": "AVOSNES" + "codePostal": "26350", + "codeCommune": "26068", + "libelleAcheminement": "LE CHALON", + "nomCommune": "LE CHALON" }, { - "codePostal": "58180", - "codeCommune": "58160", - "libelleAcheminement": "MARZY", - "nomCommune": "MARZY" + "codePostal": "25600", + "codeCommune": "25614", + "libelleAcheminement": "VIEUX CHARMONT", + "nomCommune": "VIEUX CHARMONT" }, { - "codePostal": "53800", - "codeCommune": "53188", - "libelleAcheminement": "RENAZE", - "nomCommune": "RENAZE" + "codePostal": "13780", + "codeCommune": "13030", + "libelleAcheminement": "CUGES LES PINS", + "nomCommune": "CUGES LES PINS" }, { - "codePostal": "17330", - "codeCommune": "17401", - "libelleAcheminement": "ST SEVERIN SUR BOUTONNE", - "nomCommune": "ST SEVERIN SUR BOUTONNE" + "codePostal": "14210", + "codeCommune": "14519", + "libelleAcheminement": "PREAUX BOCAGE", + "nomCommune": "PREAUX BOCAGE" }, { - "codePostal": "21580", - "codeCommune": "21041", - "libelleAcheminement": "AVOT", - "nomCommune": "AVOT" + "codePostal": "26260", + "codeCommune": "26077", + "libelleAcheminement": "CHARMES SUR L HERBASSE", + "nomCommune": "CHARMES SUR L HERBASSE" }, { - "codePostal": "58180", - "codeCommune": "58160", - "libelleAcheminement": "MARZY", - "nomCommune": "MARZY" + "codePostal": "25410", + "codeCommune": "25616", + "libelleAcheminement": "VILLARS ST GEORGES", + "nomCommune": "VILLARS ST GEORGES" }, { - "codePostal": "53170", - "codeCommune": "53193", - "libelleAcheminement": "RUILLE FROID FONDS", - "nomCommune": "RUILLE FROID FONDS" + "codePostal": "13430", + "codeCommune": "13035", + "libelleAcheminement": "EYGUIERES", + "nomCommune": "EYGUIERES" }, { - "codePostal": "17240", - "codeCommune": "17402", - "libelleAcheminement": "ST SIGISMOND DE CLERMONT", - "nomCommune": "ST SIGISMOND DE CLERMONT" + "codePostal": "14270", + "codeCommune": "14527", + "libelleAcheminement": "BELLE VIE EN AUGE", + "nomCommune": "BELLE VIE EN AUGE" }, { - "codePostal": "21700", - "codeCommune": "21042", - "libelleAcheminement": "BAGNOT", - "nomCommune": "BAGNOT" + "codePostal": "26450", + "codeCommune": "26078", + "libelleAcheminement": "CHAROLS", + "nomCommune": "CHAROLS" }, { - "codePostal": "58210", - "codeCommune": "58163", - "libelleAcheminement": "MENOU", - "nomCommune": "MENOU" + "codePostal": "25150", + "codeCommune": "25618", + "libelleAcheminement": "VILLARS SOUS ECOT", + "nomCommune": "VILLARS SOUS ECOT" }, { - "codePostal": "53470", - "codeCommune": "53195", - "libelleAcheminement": "SACE", - "nomCommune": "SACE" + "codePostal": "13630", + "codeCommune": "13036", + "libelleAcheminement": "EYRAGUES", + "nomCommune": "EYRAGUES" }, { - "codePostal": "17260", - "codeCommune": "17404", - "libelleAcheminement": "ST SIMON DE PELLOUAILLE", - "nomCommune": "ST SIMON DE PELLOUAILLE" + "codePostal": "14270", + "codeCommune": "14527", + "libelleAcheminement": "BELLE VIE EN AUGE", + "nomCommune": "BELLE VIE EN AUGE" }, { - "codePostal": "21110", - "codeCommune": "21057", - "libelleAcheminement": "BEIRE LE FORT", - "nomCommune": "BEIRE LE FORT" + "codePostal": "26300", + "codeCommune": "26079", + "libelleAcheminement": "CHARPEY", + "nomCommune": "CHARPEY" }, { - "codePostal": "58170", - "codeCommune": "58168", - "libelleAcheminement": "MILLAY", - "nomCommune": "MILLAY" + "codePostal": "25580", + "codeCommune": "25630", + "libelleAcheminement": "VOIRES", + "nomCommune": "VOIRES" }, { - "codePostal": "53700", - "codeCommune": "53198", - "libelleAcheminement": "ST AUBIN DU DESERT", - "nomCommune": "ST AUBIN DU DESERT" + "codePostal": "13710", + "codeCommune": "13040", + "libelleAcheminement": "FUVEAU", + "nomCommune": "FUVEAU" }, { - "codePostal": "17600", - "codeCommune": "17406", - "libelleAcheminement": "ST SORNIN", - "nomCommune": "ST SORNIN" + "codePostal": "14860", + "codeCommune": "14530", + "libelleAcheminement": "RANVILLE", + "nomCommune": "RANVILLE" }, { - "codePostal": "21490", - "codeCommune": "21059", - "libelleAcheminement": "BELLEFOND", - "nomCommune": "BELLEFOND" + "codePostal": "26750", + "codeCommune": "26087", + "libelleAcheminement": "CHATILLON ST JEAN", + "nomCommune": "CHATILLON ST JEAN" }, { - "codePostal": "58190", - "codeCommune": "58169", - "libelleAcheminement": "MOISSY MOULINOT", - "nomCommune": "MOISSY MOULINOT" + "codePostal": "25430", + "codeCommune": "25635", + "libelleAcheminement": "VYT LES BELVOIR", + "nomCommune": "VYT LES BELVOIR" }, { - "codePostal": "53120", - "codeCommune": "53199", - "libelleAcheminement": "ST AUBIN FOSSE LOUVAIN", - "nomCommune": "ST AUBIN FOSSE LOUVAIN" + "codePostal": "13120", + "codeCommune": "13041", + "libelleAcheminement": "GARDANNE", + "nomCommune": "GARDANNE" }, { - "codePostal": "17220", - "codeCommune": "17407", - "libelleAcheminement": "STE SOULLE", - "nomCommune": "STE SOULLE" + "codePostal": "14470", + "codeCommune": "14535", + "libelleAcheminement": "REVIERS", + "nomCommune": "REVIERS" }, { - "codePostal": "21290", - "codeCommune": "21063", - "libelleAcheminement": "BENEUVRE", - "nomCommune": "BENEUVRE" + "codePostal": "26300", + "codeCommune": "26088", + "libelleAcheminement": "CHATUZANGE LE GOUBET", + "nomCommune": "CHATUZANGE LE GOUBET" }, { - "codePostal": "58190", - "codeCommune": "58170", - "libelleAcheminement": "MONCEAUX LE COMTE", - "nomCommune": "MONCEAUX LE COMTE" + "codePostal": "26400", + "codeCommune": "26020", + "libelleAcheminement": "LA REPARA AURIPLES", + "nomCommune": "LA REPARA AURIPLES" }, { - "codePostal": "53100", - "codeCommune": "53200", - "libelleAcheminement": "ST BAUDELLE", - "nomCommune": "ST BAUDELLE" + "codePostal": "13700", + "codeCommune": "13054", + "libelleAcheminement": "MARIGNANE", + "nomCommune": "MARIGNANE" }, { - "codePostal": "17220", - "codeCommune": "17407", - "libelleAcheminement": "STE SOULLE", - "nomCommune": "STE SOULLE" + "codePostal": "14540", + "codeCommune": "14538", + "libelleAcheminement": "CASTINE EN PLAINE", + "nomCommune": "CASTINE EN PLAINE" }, { - "codePostal": "21220", - "codeCommune": "21070", - "libelleAcheminement": "BEVY", - "nomCommune": "BEVY" + "codePostal": "26510", + "codeCommune": "26091", + "libelleAcheminement": "CHAUVAC LAUX MONTAUX", + "nomCommune": "CHAUVAC LAUX MONTAUX" }, { - "codePostal": "58110", - "codeCommune": "58171", - "libelleAcheminement": "MONTAPAS", - "nomCommune": "MONTAPAS" + "codePostal": "26560", + "codeCommune": "26022", + "libelleAcheminement": "BALLONS", + "nomCommune": "BALLONS" }, { - "codePostal": "53170", - "codeCommune": "53206", - "libelleAcheminement": "ST CHARLES LA FORET", - "nomCommune": "ST CHARLES LA FORET" + "codePostal": "13590", + "codeCommune": "13060", + "libelleAcheminement": "MEYREUIL", + "nomCommune": "MEYREUIL" }, { - "codePostal": "17250", - "codeCommune": "17408", - "libelleAcheminement": "ST SULPICE D ARNOULT", - "nomCommune": "ST SULPICE D ARNOULT" + "codePostal": "14710", + "codeCommune": "14547", + "libelleAcheminement": "RUBERCY", + "nomCommune": "RUBERCY" }, { - "codePostal": "21130", - "codeCommune": "21074", - "libelleAcheminement": "BILLEY", - "nomCommune": "BILLEY" + "codePostal": "26400", + "codeCommune": "26098", + "libelleAcheminement": "COBONNE", + "nomCommune": "COBONNE" }, { - "codePostal": "58130", - "codeCommune": "58176", - "libelleAcheminement": "MONTIGNY AUX AMOGNES", - "nomCommune": "MONTIGNY AUX AMOGNES" + "codePostal": "26730", + "codeCommune": "26034", + "libelleAcheminement": "LA BAUME D HOSTUN", + "nomCommune": "LA BAUME D HOSTUN" }, { - "codePostal": "53140", - "codeCommune": "53208", - "libelleAcheminement": "ST CYR EN PAIL", - "nomCommune": "ST CYR EN PAIL" + "codePostal": "13105", + "codeCommune": "13062", + "libelleAcheminement": "MIMET", + "nomCommune": "MIMET" }, { - "codePostal": "17200", - "codeCommune": "17409", - "libelleAcheminement": "ST SULPICE DE ROYAN", - "nomCommune": "ST SULPICE DE ROYAN" + "codePostal": "14540", + "codeCommune": "14554", + "libelleAcheminement": "LE CASTELET", + "nomCommune": "LE CASTELET" }, { - "codePostal": "21450", - "codeCommune": "21075", - "libelleAcheminement": "BILLY LES CHANCEAUX", - "nomCommune": "BILLY LES CHANCEAUX" + "codePostal": "26740", + "codeCommune": "26102", + "libelleAcheminement": "CONDILLAC", + "nomCommune": "CONDILLAC" }, { - "codePostal": "58230", - "codeCommune": "58180", - "libelleAcheminement": "MONTSAUCHE LES SETTONS", - "nomCommune": "MONTSAUCHE LES SETTONS" + "codePostal": "26400", + "codeCommune": "26035", + "libelleAcheminement": "BEAUFORT SUR GERVANNE", + "nomCommune": "BEAUFORT SUR GERVANNE" }, { - "codePostal": "53290", - "codeCommune": "53210", - "libelleAcheminement": "ST DENIS D ANJOU", - "nomCommune": "ST DENIS D ANJOU" + "codePostal": "13940", + "codeCommune": "13064", + "libelleAcheminement": "MOLLEGES", + "nomCommune": "MOLLEGES" }, { - "codePostal": "17370", - "codeCommune": "17411", - "libelleAcheminement": "ST TROJAN LES BAINS", - "nomCommune": "ST TROJAN LES BAINS" + "codePostal": "14130", + "codeCommune": "14555", + "libelleAcheminement": "ST ANDRE D HEBERTOT", + "nomCommune": "ST ANDRE D HEBERTOT" }, { - "codePostal": "21270", - "codeCommune": "21076", - "libelleAcheminement": "BINGES", - "nomCommune": "BINGES" + "codePostal": "26510", + "codeCommune": "26104", + "libelleAcheminement": "CORNILLAC", + "nomCommune": "CORNILLAC" }, { - "codePostal": "58230", - "codeCommune": "58180", - "libelleAcheminement": "MONTSAUCHE LES SETTONS", - "nomCommune": "MONTSAUCHE LES SETTONS" + "codePostal": "26300", + "codeCommune": "26039", + "libelleAcheminement": "BEAUREGARD BARET", + "nomCommune": "BEAUREGARD BARET" }, { - "codePostal": "53500", - "codeCommune": "53211", - "libelleAcheminement": "ST DENIS DE GASTINES", - "nomCommune": "ST DENIS DE GASTINES" + "codePostal": "13790", + "codeCommune": "13072", + "libelleAcheminement": "PEYNIER", + "nomCommune": "PEYNIER" }, { - "codePostal": "17600", - "codeCommune": "17421", - "libelleAcheminement": "SAUJON", - "nomCommune": "SAUJON" + "codePostal": "14750", + "codeCommune": "14562", + "libelleAcheminement": "ST AUBIN SUR MER", + "nomCommune": "ST AUBIN SUR MER" }, { - "codePostal": "21330", - "codeCommune": "21078", - "libelleAcheminement": "BISSEY LA PIERRE", - "nomCommune": "BISSEY LA PIERRE" + "codePostal": "26510", + "codeCommune": "26105", + "libelleAcheminement": "CORNILLON SUR L OULE", + "nomCommune": "CORNILLON SUR L OULE" }, { - "codePostal": "58230", - "codeCommune": "58185", - "libelleAcheminement": "MOUX EN MORVAN", - "nomCommune": "MOUX EN MORVAN" + "codePostal": "26240", + "codeCommune": "26041", + "libelleAcheminement": "BEAUSEMBLANT", + "nomCommune": "BEAUSEMBLANT" }, { - "codePostal": "53170", - "codeCommune": "53212", - "libelleAcheminement": "ST DENIS DU MAINE", - "nomCommune": "ST DENIS DU MAINE" + "codePostal": "13790", + "codeCommune": "13072", + "libelleAcheminement": "PEYNIER", + "nomCommune": "PEYNIER" }, { - "codePostal": "17150", - "codeCommune": "17424", - "libelleAcheminement": "SEMOUSSAC", - "nomCommune": "SEMOUSSAC" + "codePostal": "14280", + "codeCommune": "14566", + "libelleAcheminement": "ST CONTEST", + "nomCommune": "ST CONTEST" }, { - "codePostal": "21310", - "codeCommune": "21079", - "libelleAcheminement": "BLAGNY SUR VINGEANNE", - "nomCommune": "BLAGNY SUR VINGEANNE" + "codePostal": "26740", + "codeCommune": "26106", + "libelleAcheminement": "LA COUCOURDE", + "nomCommune": "LA COUCOURDE" }, { - "codePostal": "58440", - "codeCommune": "58187", - "libelleAcheminement": "MYENNES", - "nomCommune": "MYENNES" + "codePostal": "26170", + "codeCommune": "26043", + "libelleAcheminement": "BEAUVOISIN", + "nomCommune": "BEAUVOISIN" }, { - "codePostal": "53100", - "codeCommune": "53219", - "libelleAcheminement": "ST GEORGES BUTTAVENT", - "nomCommune": "ST GEORGES BUTTAVENT" + "codePostal": "13114", + "codeCommune": "13079", + "libelleAcheminement": "PUYLOUBIER", + "nomCommune": "PUYLOUBIER" }, { - "codePostal": "17160", - "codeCommune": "17428", - "libelleAcheminement": "SONNAC", - "nomCommune": "SONNAC" + "codePostal": "14480", + "codeCommune": "14569", + "libelleAcheminement": "STE CROIX SUR MER", + "nomCommune": "STE CROIX SUR MER" }, { - "codePostal": "21540", - "codeCommune": "21081", - "libelleAcheminement": "BLAISY HAUT", - "nomCommune": "BLAISY HAUT" + "codePostal": "26350", + "codeCommune": "26107", + "libelleAcheminement": "CREPOL", + "nomCommune": "CREPOL" }, { - "codePostal": "58300", - "codeCommune": "58192", - "libelleAcheminement": "NEUVILLE LES DECIZE", - "nomCommune": "NEUVILLE LES DECIZE" + "codePostal": "26170", + "codeCommune": "26048", + "libelleAcheminement": "BENIVAY OLLON", + "nomCommune": "BENIVAY OLLON" }, { - "codePostal": "53240", - "codeCommune": "53222", - "libelleAcheminement": "ST GERMAIN D ANXURE", - "nomCommune": "ST GERMAIN D ANXURE" + "codePostal": "13610", + "codeCommune": "13080", + "libelleAcheminement": "LE PUY STE REPARADE", + "nomCommune": "LE PUY STE REPARADE" }, { - "codePostal": "17150", - "codeCommune": "17430", - "libelleAcheminement": "SOUBRAN", - "nomCommune": "SOUBRAN" + "codePostal": "14950", + "codeCommune": "14575", + "libelleAcheminement": "ST ETIENNE LA THILLAYE", + "nomCommune": "ST ETIENNE LA THILLAYE" }, { - "codePostal": "21360", - "codeCommune": "21087", - "libelleAcheminement": "BLIGNY SUR OUCHE", - "nomCommune": "BLIGNY SUR OUCHE" + "codePostal": "26160", + "codeCommune": "26131", + "libelleAcheminement": "EYZAHUT", + "nomCommune": "EYZAHUT" }, { - "codePostal": "58700", - "codeCommune": "58196", - "libelleAcheminement": "NOLAY", - "nomCommune": "NOLAY" + "codePostal": "26300", + "codeCommune": "26049", + "libelleAcheminement": "BESAYES", + "nomCommune": "BESAYES" }, { - "codePostal": "53380", - "codeCommune": "53226", - "libelleAcheminement": "ST HILAIRE DU MAINE", - "nomCommune": "ST HILAIRE DU MAINE" + "codePostal": "13840", + "codeCommune": "13082", + "libelleAcheminement": "ROGNES", + "nomCommune": "ROGNES" }, { - "codePostal": "17350", - "codeCommune": "17436", - "libelleAcheminement": "TAILLEBOURG", - "nomCommune": "TAILLEBOURG" + "codePostal": "14260", + "codeCommune": "14579", + "libelleAcheminement": "SEULLINE", + "nomCommune": "SEULLINE" }, { - "codePostal": "21700", - "codeCommune": "21088", - "libelleAcheminement": "BONCOURT LE BOIS", - "nomCommune": "BONCOURT LE BOIS" + "codePostal": "26570", + "codeCommune": "26135", + "libelleAcheminement": "FERRASSIERES", + "nomCommune": "FERRASSIERES" }, { - "codePostal": "58190", - "codeCommune": "58197", - "libelleAcheminement": "NUARS", - "nomCommune": "NUARS" + "codePostal": "26110", + "codeCommune": "26050", + "libelleAcheminement": "BESIGNAN", + "nomCommune": "BESIGNAN" }, { - "codePostal": "53270", - "codeCommune": "53228", - "libelleAcheminement": "BLANDOUET ST JEAN", - "nomCommune": "BLANDOUET ST JEAN" + "codePostal": "13790", + "codeCommune": "13087", + "libelleAcheminement": "ROUSSET", + "nomCommune": "ROUSSET" }, { - "codePostal": "17290", - "codeCommune": "17447", - "libelleAcheminement": "LE THOU", - "nomCommune": "LE THOU" + "codePostal": "14310", + "codeCommune": "14579", + "libelleAcheminement": "SEULLINE", + "nomCommune": "SEULLINE" }, { - "codePostal": "21420", - "codeCommune": "21092", - "libelleAcheminement": "BOUILLAND", - "nomCommune": "BOUILLAND" + "codePostal": "26310", + "codeCommune": "26136", + "libelleAcheminement": "VAL MARAVEL", + "nomCommune": "VAL MARAVEL" }, { - "codePostal": "58370", - "codeCommune": "58199", - "libelleAcheminement": "ONLAY", - "nomCommune": "ONLAY" + "codePostal": "26160", + "codeCommune": "26052", + "libelleAcheminement": "BONLIEU SUR ROUBION", + "nomCommune": "BONLIEU SUR ROUBION" }, { - "codePostal": "53480", - "codeCommune": "53232", - "libelleAcheminement": "ST LEGER", - "nomCommune": "ST LEGER" + "codePostal": "13460", + "codeCommune": "13096", + "libelleAcheminement": "SAINTES MARIES DE LA MER", + "nomCommune": "SAINTES MARIES DE LA MER" }, { - "codePostal": "17380", - "codeCommune": "17448", - "libelleAcheminement": "TONNAY BOUTONNE", - "nomCommune": "TONNAY BOUTONNE" + "codePostal": "14700", + "codeCommune": "14588", + "libelleAcheminement": "ST GERMAIN LANGOT", + "nomCommune": "ST GERMAIN LANGOT" }, { - "codePostal": "21690", - "codeCommune": "21098", - "libelleAcheminement": "BOUX SOUS SALMAISE", - "nomCommune": "BOUX SOUS SALMAISE" + "codePostal": "26400", + "codeCommune": "26137", + "libelleAcheminement": "FRANCILLON SUR ROUBION", + "nomCommune": "FRANCILLON SUR ROUBION" }, { - "codePostal": "58500", - "codeCommune": "58200", - "libelleAcheminement": "OUAGNE", - "nomCommune": "OUAGNE" + "codePostal": "26410", + "codeCommune": "26055", + "libelleAcheminement": "BOULC", + "nomCommune": "BOULC" }, { - "codePostal": "53290", - "codeCommune": "53233", - "libelleAcheminement": "ST LOUP DU DORAT", - "nomCommune": "ST LOUP DU DORAT" + "codePostal": "13109", + "codeCommune": "13107", + "libelleAcheminement": "SIMIANE COLLONGUE", + "nomCommune": "SIMIANE COLLONGUE" }, { - "codePostal": "17160", - "codeCommune": "17451", - "libelleAcheminement": "LES TOUCHES DE PERIGNY", - "nomCommune": "LES TOUCHES DE PERIGNY" + "codePostal": "14570", + "codeCommune": "14602", + "libelleAcheminement": "ST LAMBERT", + "nomCommune": "ST LAMBERT" }, { - "codePostal": "21430", - "codeCommune": "21102", - "libelleAcheminement": "BRAZEY EN MORVAN", - "nomCommune": "BRAZEY EN MORVAN" + "codePostal": "26700", + "codeCommune": "26138", + "libelleAcheminement": "LA GARDE ADHEMAR", + "nomCommune": "LA GARDE ADHEMAR" }, { - "codePostal": "58230", - "codeCommune": "58205", - "libelleAcheminement": "OUROUX EN MORVAN", - "nomCommune": "OUROUX EN MORVAN" + "codePostal": "26190", + "codeCommune": "26059", + "libelleAcheminement": "BOUVANTE", + "nomCommune": "BOUVANTE" }, { - "codePostal": "53220", - "codeCommune": "53238", - "libelleAcheminement": "ST MARS SUR LA FUTAIE", - "nomCommune": "ST MARS SUR LA FUTAIE" + "codePostal": "13530", + "codeCommune": "13110", + "libelleAcheminement": "TRETS", + "nomCommune": "TRETS" }, { - "codePostal": "17390", - "codeCommune": "17452", - "libelleAcheminement": "LA TREMBLADE", - "nomCommune": "LA TREMBLADE" + "codePostal": "14710", + "codeCommune": "14605", + "libelleAcheminement": "ST LAURENT SUR MER", + "nomCommune": "ST LAURENT SUR MER" }, { - "codePostal": "21390", - "codeCommune": "21108", - "libelleAcheminement": "BRIANNY", - "nomCommune": "BRIANNY" + "codePostal": "26750", + "codeCommune": "26140", + "libelleAcheminement": "GEYSSANS", + "nomCommune": "GEYSSANS" }, { - "codePostal": "58320", - "codeCommune": "58207", - "libelleAcheminement": "PARIGNY LES VAUX", - "nomCommune": "PARIGNY LES VAUX" + "codePostal": "26340", + "codeCommune": "26062", + "libelleAcheminement": "BRETTE", + "nomCommune": "BRETTE" }, { - "codePostal": "53400", - "codeCommune": "53251", - "libelleAcheminement": "ST QUENTIN LES ANGES", - "nomCommune": "ST QUENTIN LES ANGES" + "codePostal": "13126", + "codeCommune": "13111", + "libelleAcheminement": "VAUVENARGUES", + "nomCommune": "VAUVENARGUES" }, { - "codePostal": "17640", - "codeCommune": "17461", - "libelleAcheminement": "VAUX SUR MER", - "nomCommune": "VAUX SUR MER" + "codePostal": "14330", + "codeCommune": "14613", + "libelleAcheminement": "ST MARCOUF", + "nomCommune": "ST MARCOUF" }, { - "codePostal": "21400", - "codeCommune": "21115", - "libelleAcheminement": "BUNCEY", - "nomCommune": "BUNCEY" + "codePostal": "26410", + "codeCommune": "26142", + "libelleAcheminement": "GLANDAGE", + "nomCommune": "GLANDAGE" }, { - "codePostal": "58220", - "codeCommune": "58209", - "libelleAcheminement": "PERROY", - "nomCommune": "PERROY" + "codePostal": "26420", + "codeCommune": "26074", + "libelleAcheminement": "LA CHAPELLE EN VERCORS", + "nomCommune": "LA CHAPELLE EN VERCORS" }, { - "codePostal": "53270", - "codeCommune": "53255", - "libelleAcheminement": "STE SUZANNE ET CHAMMES", - "nomCommune": "STE SUZANNE ET CHAMMES" + "codePostal": "13770", + "codeCommune": "13113", + "libelleAcheminement": "VENELLES", + "nomCommune": "VENELLES" }, { - "codePostal": "17400", - "codeCommune": "17465", - "libelleAcheminement": "LA VERGNE", - "nomCommune": "LA VERGNE" + "codePostal": "14100", + "codeCommune": "14626", + "libelleAcheminement": "ST MARTIN DE MAILLOC", + "nomCommune": "ST MARTIN DE MAILLOC" }, { - "codePostal": "21360", - "codeCommune": "21120", - "libelleAcheminement": "LA BUSSIERE SUR OUCHE", - "nomCommune": "LA BUSSIERE SUR OUCHE" + "codePostal": "26390", + "codeCommune": "26148", + "libelleAcheminement": "HAUTERIVES", + "nomCommune": "HAUTERIVES" }, { - "codePostal": "58230", - "codeCommune": "58210", - "libelleAcheminement": "PLANCHEZ", - "nomCommune": "PLANCHEZ" + "codePostal": "26300", + "codeCommune": "26088", + "libelleAcheminement": "CHATUZANGE LE GOUBET", + "nomCommune": "CHATUZANGE LE GOUBET" }, { - "codePostal": "53340", - "codeCommune": "53257", - "libelleAcheminement": "SAULGES", - "nomCommune": "SAULGES" + "codePostal": "13122", + "codeCommune": "13114", + "libelleAcheminement": "VENTABREN", + "nomCommune": "VENTABREN" }, { - "codePostal": "17230", - "codeCommune": "17472", - "libelleAcheminement": "VILLEDOUX", - "nomCommune": "VILLEDOUX" + "codePostal": "14400", + "codeCommune": "14630", + "libelleAcheminement": "ST MARTIN DES ENTREES", + "nomCommune": "ST MARTIN DES ENTREES" }, { - "codePostal": "21540", - "codeCommune": "21121", - "libelleAcheminement": "BUSSY LA PESLE", - "nomCommune": "BUSSY LA PESLE" + "codePostal": "26560", + "codeCommune": "26150", + "libelleAcheminement": "IZON LA BRUISSE", + "nomCommune": "IZON LA BRUISSE" }, { - "codePostal": "58200", - "codeCommune": "58213", - "libelleAcheminement": "POUGNY", - "nomCommune": "POUGNY" + "codePostal": "26110", + "codeCommune": "26103", + "libelleAcheminement": "CONDORCET", + "nomCommune": "CONDORCET" }, { - "codePostal": "53360", - "codeCommune": "53260", - "libelleAcheminement": "SIMPLE", - "nomCommune": "SIMPLE" + "codePostal": "13011", + "codeCommune": "13211", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 11" }, { - "codePostal": "17500", - "codeCommune": "17476", - "libelleAcheminement": "VILLEXAVIER", - "nomCommune": "VILLEXAVIER" + "codePostal": "14670", + "codeCommune": "14637", + "libelleAcheminement": "ST OUEN DU MESNIL OGER", + "nomCommune": "ST OUEN DU MESNIL OGER" }, { - "codePostal": "21290", - "codeCommune": "21129", - "libelleAcheminement": "CHAMBAIN", - "nomCommune": "CHAMBAIN" + "codePostal": "26150", + "codeCommune": "26159", + "libelleAcheminement": "LAVAL D AIX", + "nomCommune": "LAVAL D AIX" }, { - "codePostal": "58150", - "codeCommune": "58215", - "libelleAcheminement": "POUILLY SUR LOIRE", - "nomCommune": "POUILLY SUR LOIRE" + "codePostal": "26460", + "codeCommune": "26111", + "libelleAcheminement": "CRUPIES", + "nomCommune": "CRUPIES" }, { - "codePostal": "53300", - "codeCommune": "53261", - "libelleAcheminement": "SOUCE", - "nomCommune": "SOUCE" + "codePostal": "13013", + "codeCommune": "13213", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 13" }, { - "codePostal": "17260", - "codeCommune": "17479", - "libelleAcheminement": "VIROLLET", - "nomCommune": "VIROLLET" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "21110", - "codeCommune": "21130", - "libelleAcheminement": "CHAMBEIRE", - "nomCommune": "CHAMBEIRE" + "codePostal": "26240", + "codeCommune": "26160", + "libelleAcheminement": "LAVEYRON", + "nomCommune": "LAVEYRON" }, { - "codePostal": "58310", - "codeCommune": "58227", - "libelleAcheminement": "ST AMAND EN PUISAYE", - "nomCommune": "ST AMAND EN PUISAYE" + "codePostal": "26400", + "codeCommune": "26115", + "libelleAcheminement": "DIVAJEU", + "nomCommune": "DIVAJEU" }, { - "codePostal": "53500", - "codeCommune": "53269", - "libelleAcheminement": "VAUTORTE", - "nomCommune": "VAUTORTE" + "codePostal": "13015", + "codeCommune": "13215", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 15" }, { - "codePostal": "17290", - "codeCommune": "17480", - "libelleAcheminement": "VIRSON", - "nomCommune": "VIRSON" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "21220", - "codeCommune": "21133", - "libelleAcheminement": "CHAMBOLLE MUSIGNY", - "nomCommune": "CHAMBOLLE MUSIGNY" + "codePostal": "26190", + "codeCommune": "26163", + "libelleAcheminement": "LEONCEL", + "nomCommune": "LEONCEL" }, { - "codePostal": "58130", - "codeCommune": "58231", - "libelleAcheminement": "ST AUBIN LES FORGES", - "nomCommune": "ST AUBIN LES FORGES" + "codePostal": "26290", + "codeCommune": "26116", + "libelleAcheminement": "DONZERE", + "nomCommune": "DONZERE" }, { - "codePostal": "53600", - "codeCommune": "53276", - "libelleAcheminement": "VOUTRE", - "nomCommune": "VOUTRE" + "codePostal": "14370", + "codeCommune": "14005", + "libelleAcheminement": "VALAMBRAY", + "nomCommune": "VALAMBRAY" }, { - "codePostal": "17700", - "codeCommune": "17482", - "libelleAcheminement": "VOUHE", - "nomCommune": "VOUHE" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "21400", - "codeCommune": "21134", - "libelleAcheminement": "CHAMESSON", - "nomCommune": "CHAMESSON" + "codePostal": "26250", + "codeCommune": "26165", + "libelleAcheminement": "LIVRON SUR DROME", + "nomCommune": "LIVRON SUR DROME" }, { - "codePostal": "58300", - "codeCommune": "58245", - "libelleAcheminement": "ST HILAIRE FONTAINE", - "nomCommune": "ST HILAIRE FONTAINE" + "codePostal": "26210", + "codeCommune": "26118", + "libelleAcheminement": "EPINOUZE", + "nomCommune": "EPINOUZE" }, { - "codePostal": "54610", - "codeCommune": "54001", - "libelleAcheminement": "ABAUCOURT SUR SEILLE", - "nomCommune": "ABAUCOURT" + "codePostal": "14210", + "codeCommune": "14006", + "libelleAcheminement": "AMAYE SUR ORNE", + "nomCommune": "AMAYE SUR ORNE" }, { - "codePostal": "17730", - "codeCommune": "17484", - "libelleAcheminement": "PORT DES BARQUES", - "nomCommune": "PORT DES BARQUES" + "codePostal": "14700", + "codeCommune": "14677", + "libelleAcheminement": "SOULANGY", + "nomCommune": "SOULANGY" }, { - "codePostal": "21310", - "codeCommune": "21135", - "libelleAcheminement": "CHAMPAGNE SUR VINGEANNE", - "nomCommune": "CHAMPAGNE SUR VINGEANNE" + "codePostal": "26410", + "codeCommune": "26178", + "libelleAcheminement": "MENGLON", + "nomCommune": "MENGLON" }, { - "codePostal": "58270", - "codeCommune": "58247", - "libelleAcheminement": "ST JEAN AUX AMOGNES", - "nomCommune": "ST JEAN AUX AMOGNES" + "codePostal": "26750", + "codeCommune": "26139", + "libelleAcheminement": "GENISSIEUX", + "nomCommune": "GENISSIEUX" }, { - "codePostal": "54112", - "codeCommune": "54010", - "libelleAcheminement": "ALLAMPS", - "nomCommune": "ALLAMPS" + "codePostal": "14860", + "codeCommune": "14009", + "libelleAcheminement": "AMFREVILLE", + "nomCommune": "AMFREVILLE" }, { - "codePostal": "17370", - "codeCommune": "17485", - "libelleAcheminement": "LE GRAND VILLAGE PLAGE", - "nomCommune": "LE GRAND VILLAGE PLAGE" + "codePostal": "14130", + "codeCommune": "14687", + "libelleAcheminement": "LE THEIL EN AUGE", + "nomCommune": "LE THEIL EN AUGE" }, { - "codePostal": "21130", - "codeCommune": "21138", - "libelleAcheminement": "CHAMPDOTRE", - "nomCommune": "CHAMPDOTRE" + "codePostal": "26170", + "codeCommune": "26180", + "libelleAcheminement": "MERINDOL LES OLIVIERS", + "nomCommune": "MERINDOL LES OLIVIERS" }, { - "codePostal": "58200", - "codeCommune": "58251", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "26400", + "codeCommune": "26144", + "libelleAcheminement": "GRANE", + "nomCommune": "GRANE" }, { - "codePostal": "54370", - "codeCommune": "54023", - "libelleAcheminement": "ARRACOURT", - "nomCommune": "ARRACOURT" + "codePostal": "14770", + "codeCommune": "14027", + "libelleAcheminement": "LES MONTS D AUNAY", + "nomCommune": "LES MONTS D AUNAY" }, { - "codePostal": "18220", - "codeCommune": "18003", - "libelleAcheminement": "LES AIX D ANGILLON", - "nomCommune": "LES AIX D ANGILLON" + "codePostal": "14210", + "codeCommune": "14721", + "libelleAcheminement": "VACOGNES NEUILLY", + "nomCommune": "VACOGNES NEUILLY" }, { - "codePostal": "21320", - "codeCommune": "21153", - "libelleAcheminement": "CHATELLENOT", - "nomCommune": "CHATELLENOT" + "codePostal": "26560", + "codeCommune": "26181", + "libelleAcheminement": "MEVOUILLON", + "nomCommune": "MEVOUILLON" }, { - "codePostal": "58150", - "codeCommune": "58256", - "libelleAcheminement": "ST MARTIN SUR NOHAIN", - "nomCommune": "ST MARTIN SUR NOHAIN" + "codePostal": "26470", + "codeCommune": "26147", + "libelleAcheminement": "GUMIANE", + "nomCommune": "GUMIANE" }, { - "codePostal": "54370", - "codeCommune": "54026", - "libelleAcheminement": "ATHIENVILLE", - "nomCommune": "ATHIENVILLE" + "codePostal": "14220", + "codeCommune": "14039", + "libelleAcheminement": "BARBERY", + "nomCommune": "BARBERY" }, { - "codePostal": "18200", - "codeCommune": "18009", - "libelleAcheminement": "ARCOMPS", - "nomCommune": "ARCOMPS" + "codePostal": "14350", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "21290", - "codeCommune": "21157", - "libelleAcheminement": "CHAUGEY", - "nomCommune": "CHAUGEY" + "codePostal": "26270", + "codeCommune": "26185", + "libelleAcheminement": "MIRMANDE", + "nomCommune": "MIRMANDE" }, { - "codePostal": "58330", - "codeCommune": "58257", - "libelleAcheminement": "ST MAURICE", - "nomCommune": "ST MAURICE" + "codePostal": "26310", + "codeCommune": "26152", + "libelleAcheminement": "JONCHERES", + "nomCommune": "JONCHERES" }, { - "codePostal": "54450", - "codeCommune": "54030", - "libelleAcheminement": "AUTREPIERRE", - "nomCommune": "AUTREPIERRE" + "codePostal": "14600", + "codeCommune": "14041", + "libelleAcheminement": "BARNEVILLE LA BERTRAN", + "nomCommune": "BARNEVILLE LA BERTRAN" }, { - "codePostal": "18200", - "codeCommune": "18013", - "libelleAcheminement": "ARPHEUILLES", - "nomCommune": "ARPHEUILLES" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "21610", - "codeCommune": "21158", - "libelleAcheminement": "CHAUME ET COURCHAMP", - "nomCommune": "CHAUME ET COURCHAMP" + "codePostal": "26110", + "codeCommune": "26190", + "libelleAcheminement": "MONTAULIEU", + "nomCommune": "MONTAULIEU" }, { - "codePostal": "58490", - "codeCommune": "58260", - "libelleAcheminement": "ST PARIZE LE CHATEL", - "nomCommune": "ST PARIZE LE CHATEL" + "codePostal": "26560", + "codeCommune": "26154", + "libelleAcheminement": "LACHAU", + "nomCommune": "LACHAU" }, { - "codePostal": "54160", - "codeCommune": "54032", - "libelleAcheminement": "AUTREY", - "nomCommune": "AUTREY" + "codePostal": "14210", + "codeCommune": "14042", + "libelleAcheminement": "BARON SUR ODON", + "nomCommune": "BARON SUR ODON" }, { - "codePostal": "18700", - "codeCommune": "18015", - "libelleAcheminement": "AUBIGNY SUR NERE", - "nomCommune": "AUBIGNY SUR NERE" + "codePostal": "14930", + "codeCommune": "14747", + "libelleAcheminement": "VIEUX", + "nomCommune": "VIEUX" }, { - "codePostal": "21450", - "codeCommune": "21160", - "libelleAcheminement": "CHAUME LES BAIGNEUX", - "nomCommune": "CHAUME LES BAIGNEUX" + "codePostal": "26740", + "codeCommune": "26191", + "libelleAcheminement": "MONTBOUCHER SUR JABRON", + "nomCommune": "MONTBOUCHER SUR JABRON" }, { - "codePostal": "58490", - "codeCommune": "58260", - "libelleAcheminement": "ST PARIZE LE CHATEL", - "nomCommune": "ST PARIZE LE CHATEL" + "codePostal": "26310", + "codeCommune": "26164", + "libelleAcheminement": "LESCHES EN DIOIS", + "nomCommune": "LESCHES EN DIOIS" }, { - "codePostal": "54490", - "codeCommune": "54033", - "libelleAcheminement": "AVILLERS", - "nomCommune": "AVILLERS" + "codePostal": "14860", + "codeCommune": "14046", + "libelleAcheminement": "BAVENT", + "nomCommune": "BAVENT" }, { - "codePostal": "18220", - "codeCommune": "18016", - "libelleAcheminement": "AUBINGES", - "nomCommune": "AUBINGES" + "codePostal": "14310", + "codeCommune": "14752", + "libelleAcheminement": "VILLERS BOCAGE", + "nomCommune": "VILLERS BOCAGE" }, { - "codePostal": "21260", - "codeCommune": "21163", - "libelleAcheminement": "CHAZEUIL", - "nomCommune": "CHAZEUIL" + "codePostal": "26760", + "codeCommune": "26196", + "libelleAcheminement": "MONTELEGER", + "nomCommune": "MONTELEGER" }, { - "codePostal": "58200", - "codeCommune": "58261", - "libelleAcheminement": "ST PERE", - "nomCommune": "ST PERE" + "codePostal": "26620", + "codeCommune": "26168", + "libelleAcheminement": "LUS LA CROIX HAUTE", + "nomCommune": "LUS LA CROIX HAUTE" }, { - "codePostal": "54150", - "codeCommune": "54036", - "libelleAcheminement": "AVRIL", - "nomCommune": "AVRIL" + "codePostal": "14370", + "codeCommune": "14057", + "libelleAcheminement": "BELLENGREVILLE", + "nomCommune": "BELLENGREVILLE" }, { - "codePostal": "18300", - "codeCommune": "18020", - "libelleAcheminement": "BANNAY", - "nomCommune": "BANNAY" + "codePostal": "14113", + "codeCommune": "14755", + "libelleAcheminement": "VILLERVILLE", + "nomCommune": "VILLERVILLE" }, { - "codePostal": "21320", - "codeCommune": "21164", - "libelleAcheminement": "CHAZILLY", - "nomCommune": "CHAZILLY" + "codePostal": "26310", + "codeCommune": "26204", + "libelleAcheminement": "MONTLAUR EN DIOIS", + "nomCommune": "MONTLAUR EN DIOIS" }, { - "codePostal": "58110", - "codeCommune": "58262", - "libelleAcheminement": "ST PEREUSE", - "nomCommune": "ST PEREUSE" + "codePostal": "26780", + "codeCommune": "26169", + "libelleAcheminement": "MALATAVERNE", + "nomCommune": "MALATAVERNE" }, { - "codePostal": "54120", - "codeCommune": "54039", - "libelleAcheminement": "BACCARAT", - "nomCommune": "BACCARAT" + "codePostal": "14970", + "codeCommune": "14060", + "libelleAcheminement": "BENOUVILLE", + "nomCommune": "BENOUVILLE" }, { - "codePostal": "18370", - "codeCommune": "18024", - "libelleAcheminement": "BEDDES", - "nomCommune": "BEDDES" + "codePostal": "14700", + "codeCommune": "14759", + "libelleAcheminement": "VILLY LEZ FALAISE", + "nomCommune": "VILLY LEZ FALAISE" }, { - "codePostal": "21220", - "codeCommune": "21178", - "libelleAcheminement": "VALFORET", - "nomCommune": "VALFORET" + "codePostal": "26120", + "codeCommune": "26212", + "libelleAcheminement": "MONTVENDRE", + "nomCommune": "MONTVENDRE" }, { - "codePostal": "58420", - "codeCommune": "58266", - "libelleAcheminement": "ST REVERIEN", - "nomCommune": "ST REVERIEN" + "codePostal": "26210", + "codeCommune": "26172", + "libelleAcheminement": "MANTHES", + "nomCommune": "MANTHES" }, { - "codePostal": "54620", - "codeCommune": "54049", - "libelleAcheminement": "BASLIEUX", - "nomCommune": "BASLIEUX" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "18350", - "codeCommune": "18031", - "libelleAcheminement": "BLET", - "nomCommune": "BLET" + "codePostal": "14370", + "codeCommune": "14761", + "libelleAcheminement": "VIMONT", + "nomCommune": "VIMONT" }, { - "codePostal": "21250", - "codeCommune": "21189", - "libelleAcheminement": "CORBERON", - "nomCommune": "CORBERON" + "codePostal": "26110", + "codeCommune": "26220", + "libelleAcheminement": "NYONS", + "nomCommune": "NYONS" }, { - "codePostal": "58160", - "codeCommune": "58273", - "libelleAcheminement": "SAUVIGNY LES BOIS", - "nomCommune": "SAUVIGNY LES BOIS" + "codePostal": "26300", + "codeCommune": "26173", + "libelleAcheminement": "MARCHES", + "nomCommune": "MARCHES" }, { - "codePostal": "54620", - "codeCommune": "54056", - "libelleAcheminement": "BAZAILLES", - "nomCommune": "BAZAILLES" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "18000", - "codeCommune": "18033", - "libelleAcheminement": "BOURGES", - "nomCommune": "BOURGES" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "21910", - "codeCommune": "21191", - "libelleAcheminement": "CORCELLES LES CITEAUX", - "nomCommune": "CORCELLES LES CITEAUX" + "codePostal": "26400", + "codeCommune": "26221", + "libelleAcheminement": "OMBLEZE", + "nomCommune": "OMBLEZE" }, { - "codePostal": "58170", - "codeCommune": "58274", - "libelleAcheminement": "SAVIGNY POIL FOL", - "nomCommune": "SAVIGNY POIL FOL" + "codePostal": "26150", + "codeCommune": "26175", + "libelleAcheminement": "MARIGNAC EN DIOIS", + "nomCommune": "MARIGNAC EN DIOIS" }, { - "codePostal": "54610", - "codeCommune": "54059", - "libelleAcheminement": "BELLEAU", - "nomCommune": "BELLEAU" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "18220", - "codeCommune": "18035", - "libelleAcheminement": "BRECY", - "nomCommune": "BRECY" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "21150", - "codeCommune": "21197", - "libelleAcheminement": "CORPOYER LA CHAPELLE", - "nomCommune": "CORPOYER LA CHAPELLE" + "codePostal": "26510", + "codeCommune": "26227", + "libelleAcheminement": "PELONNE", + "nomCommune": "PELONNE" }, { - "codePostal": "58360", - "codeCommune": "58276", - "libelleAcheminement": "SEMELAY", - "nomCommune": "SEMELAY" + "codePostal": "26600", + "codeCommune": "26179", + "libelleAcheminement": "MERCUROL VEAUNES", + "nomCommune": "MERCUROL VEAUNES" }, { - "codePostal": "54450", - "codeCommune": "54061", - "libelleAcheminement": "BENAMENIL", - "nomCommune": "BENAMENIL" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "18200", - "codeCommune": "18042", - "libelleAcheminement": "LA CELLE", - "nomCommune": "LA CELLE" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "21460", - "codeCommune": "21198", - "libelleAcheminement": "CORROMBLES", - "nomCommune": "CORROMBLES" + "codePostal": "26340", + "codeCommune": "26228", + "libelleAcheminement": "PENNES LE SEC", + "nomCommune": "PENNES LE SEC" }, { - "codePostal": "58500", - "codeCommune": "58282", - "libelleAcheminement": "SURGY", - "nomCommune": "SURGY" + "codePostal": "26110", + "codeCommune": "26182", + "libelleAcheminement": "MIRABEL AUX BARONNIES", + "nomCommune": "MIRABEL AUX BARONNIES" }, { - "codePostal": "54470", - "codeCommune": "54063", - "libelleAcheminement": "BERNECOURT", - "nomCommune": "BERNECOURT" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "18190", - "codeCommune": "18046", - "libelleAcheminement": "CHAMBON", - "nomCommune": "CHAMBON" + "codePostal": "15700", + "codeCommune": "15003", + "libelleAcheminement": "ALLY", + "nomCommune": "ALLY" }, { - "codePostal": "21460", - "codeCommune": "21199", - "libelleAcheminement": "CORSAINT", - "nomCommune": "CORSAINT" + "codePostal": "26170", + "codeCommune": "26229", + "libelleAcheminement": "LA PENNE SUR L OUVEZE", + "nomCommune": "LA PENNE SUR L OUVEZE" }, { - "codePostal": "58190", - "codeCommune": "58284", - "libelleAcheminement": "TALON", - "nomCommune": "TALON" + "codePostal": "26400", + "codeCommune": "26183", + "libelleAcheminement": "MIRABEL ET BLACONS", + "nomCommune": "MIRABEL ET BLACONS" }, { - "codePostal": "54200", - "codeCommune": "54073", - "libelleAcheminement": "BICQUELEY", - "nomCommune": "BICQUELEY" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "18570", - "codeCommune": "18050", - "libelleAcheminement": "LA CHAPELLE ST URSIN", - "nomCommune": "LA CHAPELLE ST URSIN" + "codePostal": "15000", + "codeCommune": "15014", + "libelleAcheminement": "AURILLAC", + "nomCommune": "AURILLAC" }, { - "codePostal": "21400", - "codeCommune": "21201", - "libelleAcheminement": "COULMIER LE SEC", - "nomCommune": "COULMIER LE SEC" + "codePostal": "26380", + "codeCommune": "26231", + "libelleAcheminement": "PEYRINS", + "nomCommune": "PEYRINS" }, { - "codePostal": "58170", - "codeCommune": "58287", - "libelleAcheminement": "TAZILLY", - "nomCommune": "TAZILLY" + "codePostal": "26770", + "codeCommune": "26192", + "libelleAcheminement": "MONTBRISON SUR LEZ", + "nomCommune": "MONTBRISON SUR LEZ" }, { - "codePostal": "54450", - "codeCommune": "54078", - "libelleAcheminement": "BLEMEREY", - "nomCommune": "BLEMEREY" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "18250", - "codeCommune": "18051", - "libelleAcheminement": "LA CHAPELOTTE", - "nomCommune": "LA CHAPELOTTE" + "codePostal": "15250", + "codeCommune": "15016", + "libelleAcheminement": "AYRENS", + "nomCommune": "AYRENS" }, { - "codePostal": "21520", - "codeCommune": "21202", - "libelleAcheminement": "COURBAN", - "nomCommune": "COURBAN" + "codePostal": "26110", + "codeCommune": "26233", + "libelleAcheminement": "PIEGON", + "nomCommune": "PIEGON" }, { - "codePostal": "58150", - "codeCommune": "58295", - "libelleAcheminement": "TRACY SUR LOIRE", - "nomCommune": "TRACY SUR LOIRE" + "codePostal": "26120", + "codeCommune": "26197", + "libelleAcheminement": "MONTELIER", + "nomCommune": "MONTELIER" }, { - "codePostal": "54300", - "codeCommune": "54083", - "libelleAcheminement": "BONVILLER", - "nomCommune": "BONVILLER" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "18350", - "codeCommune": "18054", - "libelleAcheminement": "CHARLY", - "nomCommune": "CHARLY" + "codePostal": "15800", + "codeCommune": "15017", + "libelleAcheminement": "BADAILHAC", + "nomCommune": "BADAILHAC" }, { - "codePostal": "21220", - "codeCommune": "21228", - "libelleAcheminement": "DETAIN ET BRUANT", - "nomCommune": "DETAIN ET BRUANT" + "codePostal": "26160", + "codeCommune": "26243", + "libelleAcheminement": "LE POET LAVAL", + "nomCommune": "LE POET LAVAL" }, { - "codePostal": "58400", - "codeCommune": "58302", - "libelleAcheminement": "VARENNES LES NARCY", - "nomCommune": "VARENNES LES NARCY" + "codePostal": "26120", + "codeCommune": "26197", + "libelleAcheminement": "MONTELIER", + "nomCommune": "MONTELIER" }, { - "codePostal": "54111", - "codeCommune": "54084", - "libelleAcheminement": "MONT BONVILLERS", - "nomCommune": "MONT BONVILLERS" + "codePostal": "14990", + "codeCommune": "14066", + "libelleAcheminement": "BERNIERES SUR MER", + "nomCommune": "BERNIERES SUR MER" }, { - "codePostal": "18170", - "codeCommune": "18059", - "libelleAcheminement": "LE CHATELET", - "nomCommune": "LE CHATELET" + "codePostal": "15300", + "codeCommune": "15025", + "libelleAcheminement": "ALBEPIERRE BREDONS", + "nomCommune": "ALBEPIERRE BREDONS" }, { - "codePostal": "21390", - "codeCommune": "21232", - "libelleAcheminement": "DOMPIERRE EN MORVAN", - "nomCommune": "DOMPIERRE EN MORVAN" + "codePostal": "26240", + "codeCommune": "26247", + "libelleAcheminement": "PONSAS", + "nomCommune": "PONSAS" }, { - "codePostal": "58300", - "codeCommune": "58306", - "libelleAcheminement": "VERNEUIL", - "nomCommune": "VERNEUIL" + "codePostal": "26750", + "codeCommune": "26207", + "libelleAcheminement": "MONTMIRAL", + "nomCommune": "MONTMIRAL" }, { - "codePostal": "54200", - "codeCommune": "54086", - "libelleAcheminement": "BOUCQ", - "nomCommune": "BOUCQ" + "codePostal": "14130", + "codeCommune": "14077", + "libelleAcheminement": "BLANGY LE CHATEAU", + "nomCommune": "BLANGY LE CHATEAU" }, { - "codePostal": "18160", - "codeCommune": "18065", - "libelleAcheminement": "CHEZAL BENOIT", - "nomCommune": "CHEZAL BENOIT" + "codePostal": "15230", + "codeCommune": "15033", + "libelleAcheminement": "CEZENS", + "nomCommune": "CEZENS" }, { - "codePostal": "21510", - "codeCommune": "21235", - "libelleAcheminement": "DUESME", - "nomCommune": "DUESME" + "codePostal": "26150", + "codeCommune": "26248", + "libelleAcheminement": "PONTAIX", + "nomCommune": "PONTAIX" }, { - "codePostal": "58500", - "codeCommune": "58312", - "libelleAcheminement": "VILLIERS SUR YONNE", - "nomCommune": "VILLIERS SUR YONNE" + "codePostal": "26220", + "codeCommune": "26222", + "libelleAcheminement": "ORCINAS", + "nomCommune": "ORCINAS" }, { - "codePostal": "54740", - "codeCommune": "54094", - "libelleAcheminement": "BRALLEVILLE", - "nomCommune": "BRALLEVILLE" + "codePostal": "14400", + "codeCommune": "14078", + "libelleAcheminement": "BLAY", + "nomCommune": "BLAY" }, { - "codePostal": "18350", - "codeCommune": "18080", - "libelleAcheminement": "CROISY", - "nomCommune": "CROISY" + "codePostal": "15190", + "codeCommune": "15054", + "libelleAcheminement": "CONDAT", + "nomCommune": "CONDAT" }, { - "codePostal": "21120", - "codeCommune": "21240", - "libelleAcheminement": "ECHEVANNES", - "nomCommune": "ECHEVANNES" + "codePostal": "26570", + "codeCommune": "26263", + "libelleAcheminement": "REILHANETTE", + "nomCommune": "REILHANETTE" }, { - "codePostal": "59215", - "codeCommune": "59002", - "libelleAcheminement": "ABSCON", - "nomCommune": "ABSCON" + "codePostal": "26400", + "codeCommune": "26234", + "libelleAcheminement": "PIEGROS LA CLASTRE", + "nomCommune": "PIEGROS LA CLASTRE" }, { - "codePostal": "54280", - "codeCommune": "54100", - "libelleAcheminement": "BRIN SUR SEILLE", - "nomCommune": "BRIN SUR SEILLE" + "codePostal": "14260", + "codeCommune": "14084", + "libelleAcheminement": "BONNEMAISON", + "nomCommune": "BONNEMAISON" }, { - "codePostal": "18150", - "codeCommune": "18082", - "libelleAcheminement": "CUFFY", - "nomCommune": "CUFFY" + "codePostal": "15380", + "codeCommune": "15066", + "libelleAcheminement": "LE FALGOUX", + "nomCommune": "LE FALGOUX" }, { - "codePostal": "21110", - "codeCommune": "21242", - "libelleAcheminement": "ECHIGEY", - "nomCommune": "ECHIGEY" + "codePostal": "26600", + "codeCommune": "26271", + "libelleAcheminement": "LA ROCHE DE GLUN", + "nomCommune": "LA ROCHE DE GLUN" }, { - "codePostal": "59310", - "codeCommune": "59004", - "libelleAcheminement": "AIX EN PEVELE", - "nomCommune": "AIX EN PEVELE" + "codePostal": "26170", + "codeCommune": "26239", + "libelleAcheminement": "PLAISIANS", + "nomCommune": "PLAISIANS" }, { - "codePostal": "54370", - "codeCommune": "54106", - "libelleAcheminement": "BURES", - "nomCommune": "BURES" + "codePostal": "14430", + "codeCommune": "14091", + "libelleAcheminement": "BOURGEAUVILLE", + "nomCommune": "BOURGEAUVILLE" }, { - "codePostal": "18130", - "codeCommune": "18087", - "libelleAcheminement": "DUN SUR AURON", - "nomCommune": "DUN SUR AURON" + "codePostal": "15140", + "codeCommune": "15067", + "libelleAcheminement": "LE FAU", + "nomCommune": "LE FAU" }, { - "codePostal": "21400", - "codeCommune": "21258", - "libelleAcheminement": "ETROCHEY", - "nomCommune": "ETROCHEY" + "codePostal": "26300", + "codeCommune": "26273", + "libelleAcheminement": "ROCHEFORT SAMSON", + "nomCommune": "ROCHEFORT SAMSON" }, { - "codePostal": "59280", - "codeCommune": "59017", - "libelleAcheminement": "ARMENTIERES", - "nomCommune": "ARMENTIERES" + "codePostal": "26170", + "codeCommune": "26242", + "libelleAcheminement": "LE POET EN PERCIP", + "nomCommune": "LE POET EN PERCIP" }, { - "codePostal": "54450", - "codeCommune": "54107", - "libelleAcheminement": "BURIVILLE", - "nomCommune": "BURIVILLE" + "codePostal": "14740", + "codeCommune": "14098", + "libelleAcheminement": "THUE ET MUE", + "nomCommune": "THUE ET MUE" }, { - "codePostal": "18380", - "codeCommune": "18088", - "libelleAcheminement": "ENNORDRES", - "nomCommune": "ENNORDRES" + "codePostal": "15230", + "codeCommune": "15077", + "libelleAcheminement": "GOURDIEGES", + "nomCommune": "GOURDIEGES" }, { - "codePostal": "21290", - "codeCommune": "21262", - "libelleAcheminement": "FAVEROLLES LES LUCEY", - "nomCommune": "FAVEROLLES LES LUCEY" + "codePostal": "26770", + "codeCommune": "26276", + "libelleAcheminement": "ROCHE ST SECRET BECONNE", + "nomCommune": "ROCHE ST SECRET BECONNE" }, { - "codePostal": "59269", - "codeCommune": "59019", - "libelleAcheminement": "ARTRES", - "nomCommune": "ARTRES" + "codePostal": "26160", + "codeCommune": "26249", + "libelleAcheminement": "PONT DE BARRET", + "nomCommune": "PONT DE BARRET" }, { - "codePostal": "54134", - "codeCommune": "54109", - "libelleAcheminement": "CEINTREY", - "nomCommune": "CEINTREY" + "codePostal": "14740", + "codeCommune": "14098", + "libelleAcheminement": "THUE ET MUE", + "nomCommune": "THUE ET MUE" }, { - "codePostal": "18360", - "codeCommune": "18089", - "libelleAcheminement": "EPINEUIL LE FLEURIEL", - "nomCommune": "EPINEUIL LE FLEURIEL" + "codePostal": "15110", + "codeCommune": "15078", + "libelleAcheminement": "JABRUN", + "nomCommune": "JABRUN" }, { - "codePostal": "21230", - "codeCommune": "21264", - "libelleAcheminement": "LE FETE", - "nomCommune": "LE FETE" + "codePostal": "26230", + "codeCommune": "26284", + "libelleAcheminement": "ROUSSAS", + "nomCommune": "ROUSSAS" }, { - "codePostal": "59310", - "codeCommune": "59029", - "libelleAcheminement": "AUCHY LEZ ORCHIES", - "nomCommune": "AUCHY LEZ ORCHIES" + "codePostal": "26310", + "codeCommune": "26262", + "libelleAcheminement": "RECOUBEAU JANSAC", + "nomCommune": "RECOUBEAU JANSAC" }, { - "codePostal": "54330", - "codeCommune": "54117", - "libelleAcheminement": "CHAOUILLEY", - "nomCommune": "CHAOUILLEY" + "codePostal": "14860", + "codeCommune": "14106", + "libelleAcheminement": "BREVILLE LES MONTS", + "nomCommune": "BREVILLE LES MONTS" }, { - "codePostal": "18310", - "codeCommune": "18100", - "libelleAcheminement": "GENOUILLY", - "nomCommune": "GENOUILLY" + "codePostal": "15120", + "codeCommune": "15082", + "libelleAcheminement": "JUNHAC", + "nomCommune": "JUNHAC" }, { - "codePostal": "21220", - "codeCommune": "21265", - "libelleAcheminement": "FIXIN", - "nomCommune": "FIXIN" + "codePostal": "26770", + "codeCommune": "26285", + "libelleAcheminement": "ROUSSET LES VIGNES", + "nomCommune": "ROUSSET LES VIGNES" }, { - "codePostal": "59300", - "codeCommune": "59032", - "libelleAcheminement": "AULNOY LEZ VALENCIENNES", - "nomCommune": "AULNOY LEZ VALENCIENNES" + "codePostal": "26510", + "codeCommune": "26264", + "libelleAcheminement": "REMUZAT", + "nomCommune": "REMUZAT" }, { - "codePostal": "54200", - "codeCommune": "54122", - "libelleAcheminement": "CHAUDENEY SUR MOSELLE", - "nomCommune": "CHAUDENEY SUR MOSELLE" + "codePostal": "14190", + "codeCommune": "14116", + "libelleAcheminement": "LE BU SUR ROUVRES", + "nomCommune": "LE BU SUR ROUVRES" }, { - "codePostal": "18150", - "codeCommune": "18101", - "libelleAcheminement": "GERMIGNY L EXEMPT", - "nomCommune": "GERMIGNY L EXEMPT" + "codePostal": "15130", + "codeCommune": "15085", + "libelleAcheminement": "LABROUSSE", + "nomCommune": "LABROUSSE" }, { - "codePostal": "21150", - "codeCommune": "21271", - "libelleAcheminement": "FLAVIGNY SUR OZERAIN", - "nomCommune": "FLAVIGNY SUR OZERAIN" + "codePostal": "26420", + "codeCommune": "26290", + "libelleAcheminement": "ST AGNAN EN VERCORS", + "nomCommune": "ST AGNAN EN VERCORS" }, { - "codePostal": "59296", - "codeCommune": "59038", - "libelleAcheminement": "AVESNES LE SEC", - "nomCommune": "AVESNES LE SEC" + "codePostal": "26170", + "codeCommune": "26278", + "libelleAcheminement": "LA ROCHE SUR LE BUIS", + "nomCommune": "LA ROCHE SUR LE BUIS" }, { - "codePostal": "54610", - "codeCommune": "54126", - "libelleAcheminement": "CHENICOURT", - "nomCommune": "CHENICOURT" + "codePostal": "14000", + "codeCommune": "14118", + "libelleAcheminement": "CAEN", + "nomCommune": "CAEN" }, { - "codePostal": "18600", - "codeCommune": "18102", - "libelleAcheminement": "GIVARDON", - "nomCommune": "GIVARDON" + "codePostal": "15130", + "codeCommune": "15090", + "libelleAcheminement": "LAFEUILLADE EN VEZIE", + "nomCommune": "LAFEUILLADE EN VEZIE" }, { - "codePostal": "21450", - "codeCommune": "21276", - "libelleAcheminement": "FONTAINES EN DUESMOIS", - "nomCommune": "FONTAINES EN DUESMOIS" + "codePostal": "26150", + "codeCommune": "26291", + "libelleAcheminement": "ST ANDEOL", + "nomCommune": "ST ANDEOL" }, { - "codePostal": "59780", - "codeCommune": "59044", - "libelleAcheminement": "BAISIEUX", - "nomCommune": "BAISIEUX" + "codePostal": "26340", + "codeCommune": "26289", + "libelleAcheminement": "SAILLANS", + "nomCommune": "SAILLANS" }, { - "codePostal": "54260", - "codeCommune": "54134", - "libelleAcheminement": "COLMEY", - "nomCommune": "COLMEY" + "codePostal": "14240", + "codeCommune": "14120", + "libelleAcheminement": "CAHAGNES", + "nomCommune": "CAHAGNES" }, { - "codePostal": "18310", - "codeCommune": "18103", - "libelleAcheminement": "GRACAY", - "nomCommune": "GRACAY" + "codePostal": "15270", + "codeCommune": "15092", + "libelleAcheminement": "LANOBRE", + "nomCommune": "LANOBRE" }, { - "codePostal": "21390", - "codeCommune": "21280", - "libelleAcheminement": "FONTANGY", - "nomCommune": "FONTANGY" + "codePostal": "26340", + "codeCommune": "26296", + "libelleAcheminement": "ST BENOIT EN DIOIS", + "nomCommune": "ST BENOIT EN DIOIS" }, { - "codePostal": "59266", - "codeCommune": "59049", - "libelleAcheminement": "BANTOUZELLE", - "nomCommune": "BANTOUZELLE" + "codePostal": "26420", + "codeCommune": "26290", + "libelleAcheminement": "ST AGNAN EN VERCORS", + "nomCommune": "ST AGNAN EN VERCORS" }, { - "codePostal": "54170", - "codeCommune": "54143", - "libelleAcheminement": "CREPEY", - "nomCommune": "CREPEY" + "codePostal": "14210", + "codeCommune": "14122", + "libelleAcheminement": "LA CAINE", + "nomCommune": "LA CAINE" }, { - "codePostal": "18800", - "codeCommune": "18105", - "libelleAcheminement": "GRON", - "nomCommune": "GRON" + "codePostal": "15120", + "codeCommune": "15093", + "libelleAcheminement": "LAPEYRUGUE", + "nomCommune": "LAPEYRUGUE" }, { - "codePostal": "21120", - "codeCommune": "21286", - "libelleAcheminement": "FRENOIS", - "nomCommune": "FRENOIS" + "codePostal": "26350", + "codeCommune": "26298", + "libelleAcheminement": "ST CHRISTOPHE ET LE LARIS", + "nomCommune": "ST CHRISTOPHE ET LE LARIS" }, { - "codePostal": "59480", - "codeCommune": "59051", - "libelleAcheminement": "LA BASSEE", - "nomCommune": "LA BASSEE" + "codePostal": "26260", + "codeCommune": "26294", + "libelleAcheminement": "ST BARDOUX", + "nomCommune": "ST BARDOUX" }, { - "codePostal": "54370", - "codeCommune": "54155", - "libelleAcheminement": "DEUXVILLE", - "nomCommune": "DEUXVILLE" + "codePostal": "14610", + "codeCommune": "14125", + "libelleAcheminement": "CAMBES EN PLAINE", + "nomCommune": "CAMBES EN PLAINE" }, { - "codePostal": "18260", - "codeCommune": "18117", - "libelleAcheminement": "JARS", - "nomCommune": "JARS" + "codePostal": "15150", + "codeCommune": "15094", + "libelleAcheminement": "LAROQUEBROU", + "nomCommune": "LAROQUEBROU" }, { - "codePostal": "21500", - "codeCommune": "21287", - "libelleAcheminement": "FRESNES", - "nomCommune": "FRESNES" + "codePostal": "26310", + "codeCommune": "26300", + "libelleAcheminement": "ST DIZIER EN DIOIS", + "nomCommune": "ST DIZIER EN DIOIS" }, { - "codePostal": "59570", - "codeCommune": "59053", - "libelleAcheminement": "BAVAY", - "nomCommune": "BAVAY" + "codePostal": "26160", + "codeCommune": "26305", + "libelleAcheminement": "ST GERVAIS SUR ROUBION", + "nomCommune": "ST GERVAIS SUR ROUBION" }, { - "codePostal": "54170", - "codeCommune": "54158", - "libelleAcheminement": "DOLCOURT", - "nomCommune": "DOLCOURT" + "codePostal": "14340", + "codeCommune": "14126", + "libelleAcheminement": "CAMBREMER", + "nomCommune": "CAMBREMER" }, { - "codePostal": "18130", - "codeCommune": "18121", - "libelleAcheminement": "LANTAN", - "nomCommune": "LANTAN" + "codePostal": "15250", + "codeCommune": "15095", + "libelleAcheminement": "LAROQUEVIEILLE", + "nomCommune": "LAROQUEVIEILLE" }, { - "codePostal": "21700", - "codeCommune": "21289", - "libelleAcheminement": "FUSSEY", - "nomCommune": "FUSSEY" + "codePostal": "26190", + "codeCommune": "26302", + "libelleAcheminement": "STE EULALIE EN ROYANS", + "nomCommune": "STE EULALIE EN ROYANS" }, { - "codePostal": "59134", - "codeCommune": "59056", - "libelleAcheminement": "BEAUCAMPS LIGNY", - "nomCommune": "BEAUCAMPS LIGNY" + "codePostal": "26110", + "codeCommune": "26306", + "libelleAcheminement": "STE JALLE", + "nomCommune": "STE JALLE" }, { - "codePostal": "54470", - "codeCommune": "54166", - "libelleAcheminement": "DOMMARTIN LA CHAUSSEE", - "nomCommune": "DOMMARTIN LA CHAUSSEE" + "codePostal": "14340", + "codeCommune": "14126", + "libelleAcheminement": "CAMBREMER", + "nomCommune": "CAMBREMER" }, { - "codePostal": "18240", - "codeCommune": "18125", - "libelleAcheminement": "LERE", - "nomCommune": "LERE" + "codePostal": "15300", + "codeCommune": "15102", + "libelleAcheminement": "LAVIGERIE", + "nomCommune": "LAVIGERIE" }, { - "codePostal": "21410", - "codeCommune": "21300", - "libelleAcheminement": "GISSEY SUR OUCHE", - "nomCommune": "GISSEY SUR OUCHE" + "codePostal": "26110", + "codeCommune": "26304", + "libelleAcheminement": "ST FERREOL TRENTE PAS", + "nomCommune": "ST FERREOL TRENTE PAS" }, { - "codePostal": "59980", - "codeCommune": "59074", - "libelleAcheminement": "BERTRY", - "nomCommune": "BERTRY" + "codePostal": "26150", + "codeCommune": "26308", + "libelleAcheminement": "ST JULIEN EN QUINT", + "nomCommune": "ST JULIEN EN QUINT" }, { - "codePostal": "54360", - "codeCommune": "54175", - "libelleAcheminement": "EINVAUX", - "nomCommune": "EINVAUX" + "codePostal": "14340", + "codeCommune": "14126", + "libelleAcheminement": "CAMBREMER", + "nomCommune": "CAMBREMER" }, { - "codePostal": "18120", - "codeCommune": "18128", - "libelleAcheminement": "LIMEUX", - "nomCommune": "LIMEUX" + "codePostal": "15320", + "codeCommune": "15108", + "libelleAcheminement": "VAL D ARCOMIE", + "nomCommune": "VAL D ARCOMIE" }, { - "codePostal": "21520", - "codeCommune": "21303", - "libelleAcheminement": "LES GOULLES", - "nomCommune": "LES GOULLES" + "codePostal": "26190", + "codeCommune": "26307", + "libelleAcheminement": "ST JEAN EN ROYANS", + "nomCommune": "ST JEAN EN ROYANS" }, { - "codePostal": "59216", - "codeCommune": "59078", - "libelleAcheminement": "BEUGNIES", - "nomCommune": "BEUGNIES" + "codePostal": "26410", + "codeCommune": "26327", + "libelleAcheminement": "ST ROMAN", + "nomCommune": "ST ROMAN" }, { - "codePostal": "54330", - "codeCommune": "54185", - "libelleAcheminement": "ETREVAL", - "nomCommune": "ETREVAL" + "codePostal": "14490", + "codeCommune": "14130", + "libelleAcheminement": "CAMPIGNY", + "nomCommune": "CAMPIGNY" }, { - "codePostal": "18140", - "codeCommune": "18132", - "libelleAcheminement": "LUGNY CHAMPAGNE", - "nomCommune": "LUGNY CHAMPAGNE" + "codePostal": "15400", + "codeCommune": "15116", + "libelleAcheminement": "MARCHASTEL", + "nomCommune": "MARCHASTEL" }, { - "codePostal": "21150", - "codeCommune": "21307", - "libelleAcheminement": "GRESIGNY STE REINE", - "nomCommune": "GRESIGNY STE REINE" + "codePostal": "26420", + "codeCommune": "26315", + "libelleAcheminement": "ST MARTIN EN VERCORS", + "nomCommune": "ST MARTIN EN VERCORS" }, { - "codePostal": "59192", - "codeCommune": "59079", - "libelleAcheminement": "BEUVRAGES", - "nomCommune": "BEUVRAGES" + "codePostal": "26340", + "codeCommune": "26328", + "libelleAcheminement": "ST SAUVEUR EN DIOIS", + "nomCommune": "ST SAUVEUR EN DIOIS" }, { - "codePostal": "54470", - "codeCommune": "54187", - "libelleAcheminement": "EUVEZIN", - "nomCommune": "EUVEZIN" + "codePostal": "14230", + "codeCommune": "14136", + "libelleAcheminement": "CARDONVILLE", + "nomCommune": "CARDONVILLE" }, { - "codePostal": "18120", - "codeCommune": "18134", - "libelleAcheminement": "LURY SUR ARNON", - "nomCommune": "LURY SUR ARNON" + "codePostal": "15220", + "codeCommune": "15117", + "libelleAcheminement": "MARCOLES", + "nomCommune": "MARCOLES" }, { - "codePostal": "21150", - "codeCommune": "21308", - "libelleAcheminement": "GRIGNON", - "nomCommune": "GRIGNON" + "codePostal": "26110", + "codeCommune": "26317", + "libelleAcheminement": "ST MAURICE SUR EYGUES", + "nomCommune": "ST MAURICE SUR EYGUES" }, { - "codePostal": "59380", - "codeCommune": "59082", - "libelleAcheminement": "BIERNE", - "nomCommune": "BIERNE" + "codePostal": "26210", + "codeCommune": "26330", + "libelleAcheminement": "ST SORLIN EN VALLOIRE", + "nomCommune": "ST SORLIN EN VALLOIRE" }, { - "codePostal": "54210", - "codeCommune": "54192", - "libelleAcheminement": "FERRIERES", - "nomCommune": "FERRIERES" + "codePostal": "14650", + "codeCommune": "14137", + "libelleAcheminement": "CARPIQUET", + "nomCommune": "CARPIQUET" }, { - "codePostal": "18170", - "codeCommune": "18136", - "libelleAcheminement": "MARCAIS", - "nomCommune": "MARCAIS" + "codePostal": "15400", + "codeCommune": "15124", + "libelleAcheminement": "MENET", + "nomCommune": "MENET" }, { - "codePostal": "21330", - "codeCommune": "21309", - "libelleAcheminement": "GRISELLES", - "nomCommune": "GRISELLES" + "codePostal": "26190", + "codeCommune": "26320", + "libelleAcheminement": "ST NAZAIRE EN ROYANS", + "nomCommune": "ST NAZAIRE EN ROYANS" }, { - "codePostal": "59280", - "codeCommune": "59088", - "libelleAcheminement": "BOIS GRENIER", - "nomCommune": "BOIS GRENIER" + "codePostal": "26240", + "codeCommune": "26332", + "libelleAcheminement": "ST UZE", + "nomCommune": "ST UZE" }, { - "codePostal": "54560", - "codeCommune": "54194", - "libelleAcheminement": "FILLIERES", - "nomCommune": "FILLIERES" + "codePostal": "14240", + "codeCommune": "14143", + "libelleAcheminement": "CAUMONT SUR AURE", + "nomCommune": "CAUMONT SUR AURE" }, { - "codePostal": "18320", - "codeCommune": "18139", - "libelleAcheminement": "MARSEILLES LES AUBIGNY", - "nomCommune": "MARSEILLES LES AUBIGNY" + "codePostal": "15100", + "codeCommune": "15125", + "libelleAcheminement": "MENTIERES", + "nomCommune": "MENTIERES" }, { - "codePostal": "21250", - "codeCommune": "21311", - "libelleAcheminement": "GROSBOIS LES TICHEY", - "nomCommune": "GROSBOIS LES TICHEY" + "codePostal": "26140", + "codeCommune": "26325", + "libelleAcheminement": "ST RAMBERT D ALBON", + "nomCommune": "ST RAMBERT D ALBON" }, { - "codePostal": "59440", - "codeCommune": "59093", - "libelleAcheminement": "BOULOGNE SUR HELPE", - "nomCommune": "BOULOGNE SUR HELPE" + "codePostal": "26240", + "codeCommune": "26333", + "libelleAcheminement": "ST VALLIER", + "nomCommune": "ST VALLIER" }, { - "codePostal": "54122", - "codeCommune": "54199", - "libelleAcheminement": "FLIN", - "nomCommune": "FLIN" + "codePostal": "14240", + "codeCommune": "14143", + "libelleAcheminement": "CAUMONT SUR AURE", + "nomCommune": "CAUMONT SUR AURE" }, { - "codePostal": "18320", - "codeCommune": "18143", - "libelleAcheminement": "MENETOU COUTURE", - "nomCommune": "MENETOU COUTURE" + "codePostal": "15240", + "codeCommune": "15128", + "libelleAcheminement": "LA MONSELIE", + "nomCommune": "LA MONSELIE" }, { - "codePostal": "21290", - "codeCommune": "21313", - "libelleAcheminement": "GURGY LE CHATEAU", - "nomCommune": "GURGY LE CHATEAU" + "codePostal": "26130", + "codeCommune": "26326", + "libelleAcheminement": "ST RESTITUT", + "nomCommune": "ST RESTITUT" }, { - "codePostal": "59830", - "codeCommune": "59096", - "libelleAcheminement": "BOURGHELLES", - "nomCommune": "BOURGHELLES" + "codePostal": "26160", + "codeCommune": "26334", + "libelleAcheminement": "SALETTES", + "nomCommune": "SALETTES" }, { - "codePostal": "54570", - "codeCommune": "54205", - "libelleAcheminement": "FOUG", - "nomCommune": "FOUG" + "codePostal": "14270", + "codeCommune": "14149", + "libelleAcheminement": "CESNY AUX VIGNES", + "nomCommune": "CESNY AUX VIGNES" }, { - "codePostal": "18510", - "codeCommune": "18145", - "libelleAcheminement": "MENETOU SALON", - "nomCommune": "MENETOU SALON" + "codePostal": "15100", + "codeCommune": "15130", + "libelleAcheminement": "MONTCHAMP", + "nomCommune": "MONTCHAMP" }, { - "codePostal": "21270", - "codeCommune": "21316", - "libelleAcheminement": "HEUILLEY SUR SAONE", - "nomCommune": "HEUILLEY SUR SAONE" + "codePostal": "26190", + "codeCommune": "26331", + "libelleAcheminement": "ST THOMAS EN ROYANS", + "nomCommune": "ST THOMAS EN ROYANS" }, { - "codePostal": "59168", - "codeCommune": "59104", - "libelleAcheminement": "BOUSSOIS", - "nomCommune": "BOUSSOIS" + "codePostal": "26130", + "codeCommune": "26342", + "libelleAcheminement": "SOLERIEUX", + "nomCommune": "SOLERIEUX" }, { - "codePostal": "54300", - "codeCommune": "54206", - "libelleAcheminement": "FRAIMBOIS", - "nomCommune": "FRAIMBOIS" + "codePostal": "14220", + "codeCommune": "14150", + "libelleAcheminement": "CESNY LES SOURCES", + "nomCommune": "CESNY LES SOURCES" }, { - "codePostal": "18700", - "codeCommune": "18147", - "libelleAcheminement": "MENETREOL SUR SAULDRE", - "nomCommune": "MENETREOL SUR SAULDRE" + "codePostal": "15170", + "codeCommune": "15141", + "libelleAcheminement": "NEUSSARGUES EN PINATELLE", + "nomCommune": "NEUSSARGUES EN PINATELLE" }, { - "codePostal": "21120", - "codeCommune": "21317", - "libelleAcheminement": "IS SUR TILLE", - "nomCommune": "IS SUR TILLE" + "codePostal": "26270", + "codeCommune": "26337", + "libelleAcheminement": "SAULCE SUR RHONE", + "nomCommune": "SAULCE SUR RHONE" }, { - "codePostal": "59870", - "codeCommune": "59105", - "libelleAcheminement": "BOUVIGNIES", - "nomCommune": "BOUVIGNIES" + "codePostal": "26400", + "codeCommune": "26344", + "libelleAcheminement": "SOYANS", + "nomCommune": "SOYANS" }, { - "codePostal": "54200", - "codeCommune": "54208", - "libelleAcheminement": "FRANCHEVILLE", - "nomCommune": "FRANCHEVILLE" + "codePostal": "14680", + "codeCommune": "14160", + "libelleAcheminement": "CINTHEAUX", + "nomCommune": "CINTHEAUX" }, { - "codePostal": "18100", - "codeCommune": "18150", - "libelleAcheminement": "MERY SUR CHER", - "nomCommune": "MERY SUR CHER" + "codePostal": "15170", + "codeCommune": "15141", + "libelleAcheminement": "NEUSSARGUES EN PINATELLE", + "nomCommune": "NEUSSARGUES EN PINATELLE" }, { - "codePostal": "21140", - "codeCommune": "21329", - "libelleAcheminement": "JUILLY", - "nomCommune": "JUILLY" + "codePostal": "26740", + "codeCommune": "26339", + "libelleAcheminement": "SAVASSE", + "nomCommune": "SAVASSE" }, { - "codePostal": "59123", - "codeCommune": "59107", - "libelleAcheminement": "BRAY DUNES", - "nomCommune": "BRAY DUNES" + "codePostal": "26400", + "codeCommune": "26346", + "libelleAcheminement": "SUZE", + "nomCommune": "SUZE" }, { - "codePostal": "54160", - "codeCommune": "54214", - "libelleAcheminement": "FROLOIS", - "nomCommune": "FROLOIS" + "codePostal": "14570", + "codeCommune": "14162", + "libelleAcheminement": "CLECY", + "nomCommune": "CLECY" }, { - "codePostal": "18170", - "codeCommune": "18153", - "libelleAcheminement": "MORLAC", - "nomCommune": "MORLAC" + "codePostal": "15170", + "codeCommune": "15141", + "libelleAcheminement": "NEUSSARGUES EN PINATELLE", + "nomCommune": "NEUSSARGUES EN PINATELLE" }, { - "codePostal": "21440", - "codeCommune": "21338", - "libelleAcheminement": "LAMARGELLE", - "nomCommune": "LAMARGELLE" + "codePostal": "26790", + "codeCommune": "26345", + "libelleAcheminement": "SUZE LA ROUSSE", + "nomCommune": "SUZE LA ROUSSE" }, { - "codePostal": "59199", - "codeCommune": "59114", - "libelleAcheminement": "BRUILLE ST AMAND", - "nomCommune": "BRUILLE ST AMAND" + "codePostal": "26750", + "codeCommune": "26355", + "libelleAcheminement": "TRIORS", + "nomCommune": "TRIORS" }, { - "codePostal": "54380", - "codeCommune": "54225", - "libelleAcheminement": "GEZONCOURT", - "nomCommune": "GEZONCOURT" + "codePostal": "14880", + "codeCommune": "14166", + "libelleAcheminement": "COLLEVILLE MONTGOMERY", + "nomCommune": "COLLEVILLE MONTGOMERY" }, { - "codePostal": "18350", - "codeCommune": "18154", - "libelleAcheminement": "MORNAY BERRY", - "nomCommune": "MORNAY BERRY" + "codePostal": "15260", + "codeCommune": "15142", + "libelleAcheminement": "NEUVEGLISE SUR TRUYERE", + "nomCommune": "NEUVEGLISE SUR TRUYERE" }, { - "codePostal": "21250", - "codeCommune": "21340", - "libelleAcheminement": "LANTHES", - "nomCommune": "LANTHES" + "codePostal": "26460", + "codeCommune": "26356", + "libelleAcheminement": "TRUINAS", + "nomCommune": "TRUINAS" }, { - "codePostal": "59151", - "codeCommune": "59115", - "libelleAcheminement": "BRUNEMONT", - "nomCommune": "BRUNEMONT" + "codePostal": "26110", + "codeCommune": "26363", + "libelleAcheminement": "VALOUSE", + "nomCommune": "VALOUSE" }, { - "codePostal": "54112", - "codeCommune": "54226", - "libelleAcheminement": "GIBEAUMEIX", - "nomCommune": "GIBEAUMEIX" + "codePostal": "14460", + "codeCommune": "14167", + "libelleAcheminement": "COLOMBELLES", + "nomCommune": "COLOMBELLES" }, { - "codePostal": "18600", - "codeCommune": "18155", - "libelleAcheminement": "MORNAY SUR ALLIER", - "nomCommune": "MORNAY SUR ALLIER" + "codePostal": "15800", + "codeCommune": "15146", + "libelleAcheminement": "PAILHEROLS", + "nomCommune": "PAILHEROLS" }, { - "codePostal": "21290", - "codeCommune": "21346", - "libelleAcheminement": "LEUGLAY", - "nomCommune": "LEUGLAY" + "codePostal": "26790", + "codeCommune": "26357", + "libelleAcheminement": "TULETTE", + "nomCommune": "TULETTE" }, { - "codePostal": "59630", - "codeCommune": "59130", - "libelleAcheminement": "CAPPELLE BROUCK", - "nomCommune": "CAPPELLE BROUCK" + "codePostal": "26400", + "codeCommune": "26365", + "libelleAcheminement": "VAUNAVEYS LA ROCHETTE", + "nomCommune": "VAUNAVEYS LA ROCHETTE" }, { - "codePostal": "54115", - "codeCommune": "54237", - "libelleAcheminement": "GRIMONVILLER", - "nomCommune": "GRIMONVILLER" + "codePostal": "14710", + "codeCommune": "14168", + "libelleAcheminement": "COLOMBIERES", + "nomCommune": "COLOMBIERES" }, { - "codePostal": "18330", - "codeCommune": "18165", - "libelleAcheminement": "NEUVY SUR BARANGEON", - "nomCommune": "NEUVY SUR BARANGEON" + "codePostal": "15700", + "codeCommune": "15153", + "libelleAcheminement": "PLEAUX", + "nomCommune": "PLEAUX" }, { - "codePostal": "21200", - "codeCommune": "21347", - "libelleAcheminement": "LEVERNOIS", - "nomCommune": "LEVERNOIS" + "codePostal": "26310", + "codeCommune": "26361", + "libelleAcheminement": "VALDROME", + "nomCommune": "VALDROME" }, { - "codePostal": "59180", - "codeCommune": "59131", - "libelleAcheminement": "CAPPELLE LA GRANDE", - "nomCommune": "CAPPELLE LA GRANDE" + "codePostal": "26110", + "codeCommune": "26367", + "libelleAcheminement": "VENTEROL", + "nomCommune": "VENTEROL" }, { - "codePostal": "54470", - "codeCommune": "54240", - "libelleAcheminement": "GROSROUVRES", - "nomCommune": "GROSROUVRES" + "codePostal": "14220", + "codeCommune": "14171", + "libelleAcheminement": "COMBRAY", + "nomCommune": "COMBRAY" }, { - "codePostal": "18260", - "codeCommune": "18168", - "libelleAcheminement": "LE NOYER", - "nomCommune": "LE NOYER" + "codePostal": "15700", + "codeCommune": "15153", + "libelleAcheminement": "PLEAUX", + "nomCommune": "PLEAUX" }, { - "codePostal": "21430", - "codeCommune": "21349", - "libelleAcheminement": "LIERNAIS", - "nomCommune": "LIERNAIS" + "codePostal": "26400", + "codeCommune": "26365", + "libelleAcheminement": "VAUNAVEYS LA ROCHETTE", + "nomCommune": "VAUNAVEYS LA ROCHETTE" }, { - "codePostal": "59360", - "codeCommune": "59136", - "libelleAcheminement": "LE CATEAU CAMBRESIS", - "nomCommune": "LE CATEAU CAMBRESIS" + "codePostal": "26170", + "codeCommune": "26370", + "libelleAcheminement": "VERCOIRAN", + "nomCommune": "VERCOIRAN" }, { - "codePostal": "54800", - "codeCommune": "54249", - "libelleAcheminement": "HANNONVILLE SUZEMONT", - "nomCommune": "HANNONVILLE SUZEMONT" + "codePostal": "14110", + "codeCommune": "14174", + "libelleAcheminement": "CONDE EN NORMANDIE", + "nomCommune": "CONDE EN NORMANDIE" }, { - "codePostal": "18200", - "codeCommune": "18171", - "libelleAcheminement": "ORCENAIS", - "nomCommune": "ORCENAIS" + "codePostal": "15160", + "codeCommune": "15155", + "libelleAcheminement": "PRADIERS", + "nomCommune": "PRADIERS" }, { - "codePostal": "21110", - "codeCommune": "21353", - "libelleAcheminement": "LONGECOURT EN PLAINE", - "nomCommune": "LONGECOURT EN PLAINE" + "codePostal": "26560", + "codeCommune": "26372", + "libelleAcheminement": "VERS SUR MEOUGE", + "nomCommune": "VERS SUR MEOUGE" }, { - "codePostal": "59225", - "codeCommune": "59149", - "libelleAcheminement": "CLARY", - "nomCommune": "CLARY" + "codePostal": "26560", + "codeCommune": "26375", + "libelleAcheminement": "VILLEFRANCHE LE CHATEAU", + "nomCommune": "VILLEFRANCHE LE CHATEAU" }, { - "codePostal": "54110", - "codeCommune": "54250", - "libelleAcheminement": "HARAUCOURT", - "nomCommune": "HARAUCOURT" + "codePostal": "14110", + "codeCommune": "14174", + "libelleAcheminement": "CONDE EN NORMANDIE", + "nomCommune": "CONDE EN NORMANDIE" }, { - "codePostal": "18200", - "codeCommune": "18172", - "libelleAcheminement": "ORVAL", - "nomCommune": "ORVAL" + "codePostal": "15320", + "codeCommune": "15168", + "libelleAcheminement": "RUYNES EN MARGERIDE", + "nomCommune": "RUYNES EN MARGERIDE" }, { - "codePostal": "21520", - "codeCommune": "21357", - "libelleAcheminement": "LOUESME", - "nomCommune": "LOUESME" + "codePostal": "26220", + "codeCommune": "26373", + "libelleAcheminement": "VESC", + "nomCommune": "VESC" }, { - "codePostal": "59310", - "codeCommune": "59158", - "libelleAcheminement": "COUTICHES", - "nomCommune": "COUTICHES" + "codePostal": "26600", + "codeCommune": "26379", + "libelleAcheminement": "GRANGES LES BEAUMONT", + "nomCommune": "GRANGES LES BEAUMONT" }, { - "codePostal": "54740", - "codeCommune": "54252", - "libelleAcheminement": "HAROUE", - "nomCommune": "HAROUE" + "codePostal": "14100", + "codeCommune": "14179", + "libelleAcheminement": "CORDEBUGLE", + "nomCommune": "CORDEBUGLE" }, { - "codePostal": "18200", - "codeCommune": "18178", - "libelleAcheminement": "LA PERCHE", - "nomCommune": "LA PERCHE" + "codePostal": "15220", + "codeCommune": "15172", + "libelleAcheminement": "ST ANTOINE", + "nomCommune": "ST ANTOINE" }, { - "codePostal": "21360", - "codeCommune": "21360", - "libelleAcheminement": "LUSIGNY SUR OUCHE", - "nomCommune": "LUSIGNY SUR OUCHE" + "codePostal": "26110", + "codeCommune": "26377", + "libelleAcheminement": "VINSOBRES", + "nomCommune": "VINSOBRES" }, { - "codePostal": "59154", - "codeCommune": "59160", - "libelleAcheminement": "CRESPIN", - "nomCommune": "CRESPIN" + "codePostal": "27800", + "codeCommune": "27001", + "libelleAcheminement": "ACLOU", + "nomCommune": "ACLOU" }, { - "codePostal": "54290", - "codeCommune": "54256", - "libelleAcheminement": "HAUSSONVILLE", - "nomCommune": "HAUSSONVILLE" + "codePostal": "14700", + "codeCommune": "14180", + "libelleAcheminement": "CORDEY", + "nomCommune": "CORDEY" }, { - "codePostal": "18340", - "codeCommune": "18180", - "libelleAcheminement": "PLAIMPIED GIVAUDINS", - "nomCommune": "PLAIMPIED GIVAUDINS" + "codePostal": "15230", + "codeCommune": "15198", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "21170", - "codeCommune": "21366", - "libelleAcheminement": "MAGNY LES AUBIGNY", - "nomCommune": "MAGNY LES AUBIGNY" + "codePostal": "26600", + "codeCommune": "26380", + "libelleAcheminement": "GERVANS", + "nomCommune": "GERVANS" }, { - "codePostal": "59990", - "codeCommune": "59166", - "libelleAcheminement": "CURGIES", - "nomCommune": "CURGIES" + "codePostal": "27570", + "codeCommune": "27002", + "libelleAcheminement": "ACON", + "nomCommune": "ACON" }, { - "codePostal": "54300", - "codeCommune": "54260", - "libelleAcheminement": "HERIMENIL", - "nomCommune": "HERIMENIL" + "codePostal": "14440", + "codeCommune": "14197", + "libelleAcheminement": "CRESSERONS", + "nomCommune": "CRESSERONS" }, { - "codePostal": "18290", - "codeCommune": "18182", - "libelleAcheminement": "POISIEUX", - "nomCommune": "POISIEUX" + "codePostal": "15110", + "codeCommune": "15209", + "libelleAcheminement": "ST REMY DE CHAUDES AIGUES", + "nomCommune": "ST REMY DE CHAUDES AIGUES" }, { - "codePostal": "21130", - "codeCommune": "21367", - "libelleAcheminement": "MAGNY MONTARLOT", - "nomCommune": "MAGNY MONTARLOT" + "codePostal": "26300", + "codeCommune": "26382", + "libelleAcheminement": "ST VINCENT LA COMMANDERIE", + "nomCommune": "ST VINCENT LA COMMANDERIE" }, { - "codePostal": "59268", - "codeCommune": "59167", - "libelleAcheminement": "CUVILLERS", - "nomCommune": "CUVILLERS" + "codePostal": "27250", + "codeCommune": "27009", + "libelleAcheminement": "AMBENAY", + "nomCommune": "AMBENAY" }, { - "codePostal": "54370", - "codeCommune": "54262", - "libelleAcheminement": "HOEVILLE", - "nomCommune": "HOEVILLE" + "codePostal": "14400", + "codeCommune": "14214", + "libelleAcheminement": "CUSSY", + "nomCommune": "CUSSY" }, { - "codePostal": "18380", - "codeCommune": "18185", - "libelleAcheminement": "PRESLY", - "nomCommune": "PRESLY" + "codePostal": "15150", + "codeCommune": "15211", + "libelleAcheminement": "ST SANTIN CANTALES", + "nomCommune": "ST SANTIN CANTALES" }, { - "codePostal": "21430", - "codeCommune": "21375", - "libelleAcheminement": "MANLAY", - "nomCommune": "MANLAY" + "codePostal": "27460", + "codeCommune": "27008", + "libelleAcheminement": "ALIZAY", + "nomCommune": "ALIZAY" }, { - "codePostal": "59127", - "codeCommune": "59171", - "libelleAcheminement": "DEHERIES", - "nomCommune": "DEHERIES" + "codePostal": "27140", + "codeCommune": "27010", + "libelleAcheminement": "AMECOURT", + "nomCommune": "AMECOURT" }, { - "codePostal": "54310", - "codeCommune": "54263", - "libelleAcheminement": "HOMECOURT", - "nomCommune": "HOMECOURT" + "codePostal": "14430", + "codeCommune": "14227", + "libelleAcheminement": "DOUVILLE EN AUGE", + "nomCommune": "DOUVILLE EN AUGE" }, { - "codePostal": "18120", - "codeCommune": "18186", - "libelleAcheminement": "PREUILLY", - "nomCommune": "PREUILLY" + "codePostal": "15150", + "codeCommune": "15217", + "libelleAcheminement": "ST VICTOR", + "nomCommune": "ST VICTOR" }, { - "codePostal": "21270", - "codeCommune": "21376", - "libelleAcheminement": "MARANDEUIL", - "nomCommune": "MARANDEUIL" + "codePostal": "27370", + "codeCommune": "27011", + "libelleAcheminement": "AMFREVILLE ST AMAND", + "nomCommune": "AMFREVILLE ST AMAND" }, { - "codePostal": "59740", - "codeCommune": "59174", - "libelleAcheminement": "DIMECHAUX", - "nomCommune": "DIMECHAUX" + "codePostal": "27370", + "codeCommune": "27011", + "libelleAcheminement": "AMFREVILLE ST AMAND", + "nomCommune": "AMFREVILLE ST AMAND" }, { - "codePostal": "54110", - "codeCommune": "54269", - "libelleAcheminement": "HUDIVILLER", - "nomCommune": "HUDIVILLER" + "codePostal": "14130", + "codeCommune": "14230", + "libelleAcheminement": "DRUBEC", + "nomCommune": "DRUBEC" }, { - "codePostal": "18370", - "codeCommune": "18187", - "libelleAcheminement": "PREVERANGES", - "nomCommune": "PREVERANGES" + "codePostal": "15140", + "codeCommune": "15219", + "libelleAcheminement": "SALERS", + "nomCommune": "SALERS" }, { - "codePostal": "21120", - "codeCommune": "21383", - "libelleAcheminement": "MARCILLY SUR TILLE", - "nomCommune": "MARCILLY SUR TILLE" + "codePostal": "27820", + "codeCommune": "27019", + "libelleAcheminement": "ARMENTIERES SUR AVRE", + "nomCommune": "ARMENTIERES SUR AVRE" }, { - "codePostal": "59216", - "codeCommune": "59175", - "libelleAcheminement": "DIMONT", - "nomCommune": "DIMONT" + "codePostal": "27600", + "codeCommune": "27022", + "libelleAcheminement": "LE VAL D HAZEY", + "nomCommune": "LE VAL D HAZEY" }, { - "codePostal": "54450", - "codeCommune": "54271", - "libelleAcheminement": "IGNEY", - "nomCommune": "IGNEY" + "codePostal": "14600", + "codeCommune": "14243", + "libelleAcheminement": "EQUEMAUVILLE", + "nomCommune": "EQUEMAUVILLE" }, { - "codePostal": "18400", - "codeCommune": "18188", - "libelleAcheminement": "PRIMELLES", - "nomCommune": "PRIMELLES" + "codePostal": "15290", + "codeCommune": "15224", + "libelleAcheminement": "LA SEGALASSIERE", + "nomCommune": "LA SEGALASSIERE" }, { - "codePostal": "21500", - "codeCommune": "21389", - "libelleAcheminement": "MARMAGNE", - "nomCommune": "MARMAGNE" + "codePostal": "27180", + "codeCommune": "27020", + "libelleAcheminement": "ARNIERES SUR ITON", + "nomCommune": "ARNIERES SUR ITON" }, { - "codePostal": "59400", - "codeCommune": "59176", - "libelleAcheminement": "DOIGNIES", - "nomCommune": "DOIGNIES" + "codePostal": "27180", + "codeCommune": "27023", + "libelleAcheminement": "AULNAY SUR ITON", + "nomCommune": "AULNAY SUR ITON" }, { - "codePostal": "54800", - "codeCommune": "54273", - "libelleAcheminement": "JARNY", - "nomCommune": "JARNY" + "codePostal": "14400", + "codeCommune": "14250", + "libelleAcheminement": "ESQUAY SUR SEULLES", + "nomCommune": "ESQUAY SUR SEULLES" }, { - "codePostal": "18290", - "codeCommune": "18198", - "libelleAcheminement": "ST AMBROIX", - "nomCommune": "ST AMBROIX" + "codePostal": "15310", + "codeCommune": "15238", + "libelleAcheminement": "TOURNEMIRE", + "nomCommune": "TOURNEMIRE" }, { - "codePostal": "21380", - "codeCommune": "21391", - "libelleAcheminement": "MARSANNAY LE BOIS", - "nomCommune": "MARSANNAY LE BOIS" + "codePostal": "27490", + "codeCommune": "27025", + "libelleAcheminement": "AUTHEUIL AUTHOUILLET", + "nomCommune": "AUTHEUIL AUTHOUILLET" }, { - "codePostal": "59440", - "codeCommune": "59177", - "libelleAcheminement": "DOMPIERRE SUR HELPE", - "nomCommune": "DOMPIERRE SUR HELPE" + "codePostal": "27240", + "codeCommune": "27032", + "libelleAcheminement": "CHAMBOIS", + "nomCommune": "CHAMBOIS" }, { - "codePostal": "54470", - "codeCommune": "54275", - "libelleAcheminement": "JAULNY", - "nomCommune": "JAULNY" + "codePostal": "14790", + "codeCommune": "14274", + "libelleAcheminement": "FONTAINE ETOUPEFOUR", + "nomCommune": "FONTAINE ETOUPEFOUR" }, { - "codePostal": "18130", - "codeCommune": "18204", - "libelleAcheminement": "ST DENIS DE PALIN", - "nomCommune": "ST DENIS DE PALIN" + "codePostal": "15110", + "codeCommune": "15241", + "libelleAcheminement": "LA TRINITAT", + "nomCommune": "LA TRINITAT" }, { - "codePostal": "21270", - "codeCommune": "21398", - "libelleAcheminement": "MAXILLY SUR SAONE", - "nomCommune": "MAXILLY SUR SAONE" + "codePostal": "27490", + "codeCommune": "27025", + "libelleAcheminement": "AUTHEUIL AUTHOUILLET", + "nomCommune": "AUTHEUIL AUTHOUILLET" }, { - "codePostal": "59500", - "codeCommune": "59178", - "libelleAcheminement": "DOUAI", - "nomCommune": "DOUAI" + "codePostal": "27130", + "codeCommune": "27036", + "libelleAcheminement": "BALINES", + "nomCommune": "BALINES" }, { - "codePostal": "54490", - "codeCommune": "54284", - "libelleAcheminement": "JOUDREVILLE", - "nomCommune": "JOUDREVILLE" + "codePostal": "14190", + "codeCommune": "14276", + "libelleAcheminement": "FONTAINE LE PIN", + "nomCommune": "FONTAINE LE PIN" }, { - "codePostal": "18110", - "codeCommune": "18206", - "libelleAcheminement": "ST ELOY DE GY", - "nomCommune": "ST ELOY DE GY" + "codePostal": "15590", + "codeCommune": "15252", + "libelleAcheminement": "VELZIC", + "nomCommune": "VELZIC" }, { - "codePostal": "21220", - "codeCommune": "21407", - "libelleAcheminement": "MESSANGES", - "nomCommune": "MESSANGES" + "codePostal": "27930", + "codeCommune": "27031", + "libelleAcheminement": "AVIRON", + "nomCommune": "AVIRON" }, { - "codePostal": "59500", - "codeCommune": "59178", - "libelleAcheminement": "DOUAI", - "nomCommune": "DOUAI" + "codePostal": "27230", + "codeCommune": "27042", + "libelleAcheminement": "BARVILLE", + "nomCommune": "BARVILLE" }, { - "codePostal": "54370", - "codeCommune": "54285", - "libelleAcheminement": "JUVRECOURT", - "nomCommune": "JUVRECOURT" + "codePostal": "14320", + "codeCommune": "14277", + "libelleAcheminement": "FONTENAY LE MARMION", + "nomCommune": "FONTENAY LE MARMION" }, { - "codePostal": "18350", - "codeCommune": "18215", - "libelleAcheminement": "ST HILAIRE DE GONDILLY", - "nomCommune": "ST HILAIRE DE GONDILLY" + "codePostal": "15350", + "codeCommune": "15254", + "libelleAcheminement": "VEYRIERES", + "nomCommune": "VEYRIERES" }, { - "codePostal": "21380", - "codeCommune": "21408", - "libelleAcheminement": "MESSIGNY ET VANTOUX", - "nomCommune": "MESSIGNY ET VANTOUX" + "codePostal": "27240", + "codeCommune": "27032", + "libelleAcheminement": "CHAMBOIS", + "nomCommune": "CHAMBOIS" }, { - "codePostal": "59140", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "27230", + "codeCommune": "27046", + "libelleAcheminement": "BAZOQUES", + "nomCommune": "BAZOQUES" }, { - "codePostal": "54800", - "codeCommune": "54286", - "libelleAcheminement": "LABRY", - "nomCommune": "LABRY" + "codePostal": "14710", + "codeCommune": "14281", + "libelleAcheminement": "FORMIGNY LA BATAILLE", + "nomCommune": "FORMIGNY LA BATAILLE" }, { - "codePostal": "18370", - "codeCommune": "18217", - "libelleAcheminement": "ST JEANVRIN", - "nomCommune": "ST JEANVRIN" + "codePostal": "15500", + "codeCommune": "15259", + "libelleAcheminement": "VIEILLESPESSE", + "nomCommune": "VIEILLESPESSE" }, { - "codePostal": "21210", - "codeCommune": "21422", - "libelleAcheminement": "MOLPHEY", - "nomCommune": "MOLPHEY" + "codePostal": "27930", + "codeCommune": "27033", + "libelleAcheminement": "BACQUEPUIS", + "nomCommune": "BACQUEPUIS" }, { - "codePostal": "59240", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "27330", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "54380", - "codeCommune": "54294", - "libelleAcheminement": "LANDREMONT", - "nomCommune": "LANDREMONT" + "codePostal": "14710", + "codeCommune": "14281", + "libelleAcheminement": "FORMIGNY LA BATAILLE", + "nomCommune": "FORMIGNY LA BATAILLE" }, { - "codePostal": "18270", - "codeCommune": "18225", - "libelleAcheminement": "ST MAUR", - "nomCommune": "ST MAUR" + "codePostal": "15200", + "codeCommune": "15261", + "libelleAcheminement": "LE VIGEAN", + "nomCommune": "LE VIGEAN" }, { - "codePostal": "21360", - "codeCommune": "21427", - "libelleAcheminement": "MONTCEAU ET ECHARNANT", - "nomCommune": "MONTCEAU ET ECHARNANT" + "codePostal": "27130", + "codeCommune": "27038", + "libelleAcheminement": "LES BARILS", + "nomCommune": "LES BARILS" }, { - "codePostal": "59173", - "codeCommune": "59184", - "libelleAcheminement": "EBBLINGHEM", - "nomCommune": "EBBLINGHEM" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "54280", - "codeCommune": "54296", - "libelleAcheminement": "LANEUVELOTTE", - "nomCommune": "LANEUVELOTTE" + "codePostal": "14700", + "codeCommune": "14289", + "libelleAcheminement": "FRESNE LA MERE", + "nomCommune": "FRESNE LA MERE" }, { - "codePostal": "18190", - "codeCommune": "18236", - "libelleAcheminement": "ST SYMPHORIEN", - "nomCommune": "ST SYMPHORIEN" + "codePostal": "15130", + "codeCommune": "15266", + "libelleAcheminement": "YOLET", + "nomCommune": "YOLET" }, { - "codePostal": "21610", - "codeCommune": "21433", - "libelleAcheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", - "nomCommune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE" + "codePostal": "27180", + "codeCommune": "27044", + "libelleAcheminement": "LES BAUX STE CROIX", + "nomCommune": "LES BAUX STE CROIX" }, { - "codePostal": "59176", - "codeCommune": "59185", - "libelleAcheminement": "ECAILLON", - "nomCommune": "ECAILLON" + "codePostal": "27180", + "codeCommune": "27057", + "libelleAcheminement": "BERNIENVILLE", + "nomCommune": "BERNIENVILLE" }, { - "codePostal": "54410", - "codeCommune": "54300", - "libelleAcheminement": "LANEUVEVILLE DEVANT NANCY", - "nomCommune": "LANEUVEVILLE DEVANT NANCY" + "codePostal": "14230", + "codeCommune": "14298", + "libelleAcheminement": "GEFOSSE FONTENAY", + "nomCommune": "GEFOSSE FONTENAY" }, { - "codePostal": "18300", - "codeCommune": "18241", - "libelleAcheminement": "SANCERRE", - "nomCommune": "SANCERRE" + "codePostal": "15000", + "codeCommune": "15267", + "libelleAcheminement": "YTRAC", + "nomCommune": "YTRAC" }, { - "codePostal": "21170", - "codeCommune": "21440", - "libelleAcheminement": "MONTOT", - "nomCommune": "MONTOT" + "codePostal": "27330", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "59740", - "codeCommune": "59186", - "libelleAcheminement": "ECCLES", - "nomCommune": "ECCLES" + "codePostal": "27700", + "codeCommune": "27058", + "libelleAcheminement": "LES TROIS LACS", + "nomCommune": "LES TROIS LACS" }, { - "codePostal": "54410", - "codeCommune": "54300", - "libelleAcheminement": "LANEUVEVILLE DEVANT NANCY", - "nomCommune": "LANEUVEVILLE DEVANT NANCY" + "codePostal": "14510", + "codeCommune": "14305", + "libelleAcheminement": "GONNEVILLE SUR MER", + "nomCommune": "GONNEVILLE SUR MER" }, { - "codePostal": "18600", - "codeCommune": "18242", - "libelleAcheminement": "SANCOINS", - "nomCommune": "SANCOINS" + "codePostal": "15130", + "codeCommune": "15267", + "libelleAcheminement": "YTRAC", + "nomCommune": "YTRAC" }, { - "codePostal": "21320", - "codeCommune": "21441", - "libelleAcheminement": "MONT ST JEAN", - "nomCommune": "MONT ST JEAN" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "59620", - "codeCommune": "59188", - "libelleAcheminement": "ECUELIN", - "nomCommune": "ECUELIN" + "codePostal": "27700", + "codeCommune": "27058", + "libelleAcheminement": "LES TROIS LACS", + "nomCommune": "LES TROIS LACS" }, { - "codePostal": "54950", - "codeCommune": "54303", - "libelleAcheminement": "LARONXE", - "nomCommune": "LARONXE" + "codePostal": "14200", + "codeCommune": "14327", + "libelleAcheminement": "HEROUVILLE ST CLAIR", + "nomCommune": "HEROUVILLE ST CLAIR" }, { - "codePostal": "18270", - "codeCommune": "18252", - "libelleAcheminement": "SIDIAILLES", - "nomCommune": "SIDIAILLES" + "codePostal": "15290", + "codeCommune": "15268", + "libelleAcheminement": "LE ROUGET PERS", + "nomCommune": "LE ROUGET PERS" }, { - "codePostal": "21210", - "codeCommune": "21445", - "libelleAcheminement": "LA MOTTE TERNANT", - "nomCommune": "LA MOTTE TERNANT" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "59600", - "codeCommune": "59190", - "libelleAcheminement": "ELESMES", - "nomCommune": "ELESMES" + "codePostal": "27800", + "codeCommune": "27061", + "libelleAcheminement": "BERTHOUVILLE", + "nomCommune": "BERTHOUVILLE" }, { - "codePostal": "54470", - "codeCommune": "54317", - "libelleAcheminement": "LIRONVILLE", - "nomCommune": "LIRONVILLE" + "codePostal": "14600", + "codeCommune": "14333", + "libelleAcheminement": "HONFLEUR", + "nomCommune": "HONFLEUR" }, { - "codePostal": "18300", - "codeCommune": "18258", - "libelleAcheminement": "SURY EN VAUX", - "nomCommune": "SURY EN VAUX" + "codePostal": "16140", + "codeCommune": "16005", + "libelleAcheminement": "AIGRE", + "nomCommune": "AIGRE" }, { - "codePostal": "21190", - "codeCommune": "21450", - "libelleAcheminement": "NANTOUX", - "nomCommune": "NANTOUX" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "59127", - "codeCommune": "59191", - "libelleAcheminement": "ELINCOURT", - "nomCommune": "ELINCOURT" + "codePostal": "27210", + "codeCommune": "27065", + "libelleAcheminement": "BEUZEVILLE", + "nomCommune": "BEUZEVILLE" }, { - "codePostal": "54700", - "codeCommune": "54320", - "libelleAcheminement": "LOISY", - "nomCommune": "LOISY" + "codePostal": "14430", + "codeCommune": "14335", + "libelleAcheminement": "HOTOT EN AUGE", + "nomCommune": "HOTOT EN AUGE" }, { - "codePostal": "18300", - "codeCommune": "18262", - "libelleAcheminement": "THAUVENAY", - "nomCommune": "THAUVENAY" + "codePostal": "16500", + "codeCommune": "16016", + "libelleAcheminement": "ANSAC SUR VIENNE", + "nomCommune": "ANSAC SUR VIENNE" }, { - "codePostal": "21400", - "codeCommune": "21465", - "libelleAcheminement": "OBTREE", - "nomCommune": "OBTREE" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "59710", - "codeCommune": "59197", - "libelleAcheminement": "ENNEVELIN", - "nomCommune": "ENNEVELIN" + "codePostal": "27700", + "codeCommune": "27070", + "libelleAcheminement": "FRENELLES EN VEXIN", + "nomCommune": "FRENELLES EN VEXIN" }, { - "codePostal": "54260", - "codeCommune": "54322", - "libelleAcheminement": "LONGUYON", - "nomCommune": "LONGUYON" + "codePostal": "14250", + "codeCommune": "14336", + "libelleAcheminement": "HOTTOT LES BAGUES", + "nomCommune": "HOTTOT LES BAGUES" }, { - "codePostal": "18100", - "codeCommune": "18263", - "libelleAcheminement": "THENIOUX", - "nomCommune": "THENIOUX" + "codePostal": "16130", + "codeCommune": "16018", + "libelleAcheminement": "ARS", + "nomCommune": "ARS" }, { - "codePostal": "21250", - "codeCommune": "21474", - "libelleAcheminement": "PAGNY LA VILLE", - "nomCommune": "PAGNY LA VILLE" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "59124", - "codeCommune": "59205", - "libelleAcheminement": "ESCAUDAIN", - "nomCommune": "ESCAUDAIN" + "codePostal": "27300", + "codeCommune": "27079", + "libelleAcheminement": "BOISSY LAMBERVILLE", + "nomCommune": "BOISSY LAMBERVILLE" }, { - "codePostal": "54290", - "codeCommune": "54325", - "libelleAcheminement": "LOROMONTZEY", - "nomCommune": "LOROMONTZEY" + "codePostal": "14510", + "codeCommune": "14338", + "libelleAcheminement": "HOULGATE", + "nomCommune": "HOULGATE" }, { - "codePostal": "18320", - "codeCommune": "18265", - "libelleAcheminement": "TORTERON", - "nomCommune": "TORTERON" + "codePostal": "16460", + "codeCommune": "16023", + "libelleAcheminement": "AUNAC SUR CHARENTE", + "nomCommune": "AUNAC SUR CHARENTE" }, { - "codePostal": "21160", - "codeCommune": "21481", - "libelleAcheminement": "PERRIGNY LES DIJON", - "nomCommune": "PERRIGNY LES DIJON" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "59940", - "codeCommune": "59212", - "libelleAcheminement": "ESTAIRES", - "nomCommune": "ESTAIRES" + "codePostal": "27310", + "codeCommune": "27085", + "libelleAcheminement": "FLANCOURT CRESCY EN ROUMOIS", + "nomCommune": "FLANCOURT CRESCY EN ROUMOIS" }, { - "codePostal": "54200", - "codeCommune": "54327", - "libelleAcheminement": "LUCEY", - "nomCommune": "LUCEY" + "codePostal": "14170", + "codeCommune": "14345", + "libelleAcheminement": "JORT", + "nomCommune": "JORT" }, { - "codePostal": "18160", - "codeCommune": "18266", - "libelleAcheminement": "TOUCHAY", - "nomCommune": "TOUCHAY" + "codePostal": "16300", + "codeCommune": "16028", + "libelleAcheminement": "BARBEZIEUX ST HILAIRE", + "nomCommune": "BARBEZIEUX ST HILAIRE" }, { - "codePostal": "21440", - "codeCommune": "21494", - "libelleAcheminement": "PONCEY SUR L IGNON", - "nomCommune": "PONCEY SUR L IGNON" + "codePostal": "27660", + "codeCommune": "27059", + "libelleAcheminement": "BERNOUVILLE", + "nomCommune": "BERNOUVILLE" }, { - "codePostal": "59400", - "codeCommune": "59213", - "libelleAcheminement": "ESTOURMEL", - "nomCommune": "ESTOURMEL" + "codePostal": "27520", + "codeCommune": "27089", + "libelleAcheminement": "THENOUVILLE", + "nomCommune": "THENOUVILLE" }, { - "codePostal": "54700", - "codeCommune": "54332", - "libelleAcheminement": "MAIDIERES", - "nomCommune": "MAIDIERES" + "codePostal": "14260", + "codeCommune": "14347", + "libelleAcheminement": "DIALAN SUR CHAINE", + "nomCommune": "DIALAN SUR CHAINE" }, { - "codePostal": "18570", - "codeCommune": "18267", - "libelleAcheminement": "TROUY", - "nomCommune": "TROUY" + "codePostal": "16210", + "codeCommune": "16029", + "libelleAcheminement": "BARDENAC", + "nomCommune": "BARDENAC" }, { - "codePostal": "21130", - "codeCommune": "21495", - "libelleAcheminement": "PONT", - "nomCommune": "PONT" + "codePostal": "27520", + "codeCommune": "27062", + "libelleAcheminement": "LES MONTS DU ROUMOIS", + "nomCommune": "LES MONTS DU ROUMOIS" }, { - "codePostal": "59990", - "codeCommune": "59215", - "libelleAcheminement": "ESTREUX", - "nomCommune": "ESTREUX" + "codePostal": "27310", + "codeCommune": "27103", + "libelleAcheminement": "BOURG ACHARD", + "nomCommune": "BOURG ACHARD" }, { - "codePostal": "54150", - "codeCommune": "54334", - "libelleAcheminement": "MAIRY MAINVILLE", - "nomCommune": "MAIRY MAINVILLE" + "codePostal": "14320", + "codeCommune": "14349", + "libelleAcheminement": "LAIZE CLINCHAMPS", + "nomCommune": "LAIZE CLINCHAMPS" }, { - "codePostal": "18600", - "codeCommune": "18275", - "libelleAcheminement": "VEREAUX", - "nomCommune": "VEREAUX" + "codePostal": "16700", + "codeCommune": "16044", + "libelleAcheminement": "BIOUSSAC", + "nomCommune": "BIOUSSAC" }, { - "codePostal": "21350", - "codeCommune": "21498", - "libelleAcheminement": "POSANGES", - "nomCommune": "POSANGES" + "codePostal": "27150", + "codeCommune": "27070", + "libelleAcheminement": "FRENELLES EN VEXIN", + "nomCommune": "FRENELLES EN VEXIN" }, { - "codePostal": "59310", - "codeCommune": "59222", - "libelleAcheminement": "FAUMONT", - "nomCommune": "FAUMONT" + "codePostal": "27520", + "codeCommune": "27105", + "libelleAcheminement": "GRAND BOURGTHEROULDE", + "nomCommune": "GRAND BOURGTHEROULDE" }, { - "codePostal": "54560", - "codeCommune": "54337", - "libelleAcheminement": "MALAVILLERS", - "nomCommune": "MALAVILLERS" + "codePostal": "14380", + "codeCommune": "14352", + "libelleAcheminement": "LANDELLES ET COUPIGNY", + "nomCommune": "LANDELLES ET COUPIGNY" }, { - "codePostal": "18110", - "codeCommune": "18280", - "libelleAcheminement": "VIGNOUX SOUS LES AIX", - "nomCommune": "VIGNOUX SOUS LES AIX" + "codePostal": "16250", + "codeCommune": "16046", + "libelleAcheminement": "COTEAUX DU BLANZACAIS", + "nomCommune": "COTEAUX DU BLANZACAIS" }, { - "codePostal": "21410", - "codeCommune": "21504", - "libelleAcheminement": "PRALON", - "nomCommune": "PRALON" + "codePostal": "27120", + "codeCommune": "27076", + "libelleAcheminement": "BOISSET LES PREVANCHES", + "nomCommune": "BOISSET LES PREVANCHES" }, { - "codePostal": "59750", - "codeCommune": "59225", - "libelleAcheminement": "FEIGNIES", - "nomCommune": "FEIGNIES" + "codePostal": "27520", + "codeCommune": "27105", + "libelleAcheminement": "GRAND BOURGTHEROULDE", + "nomCommune": "GRAND BOURGTHEROULDE" }, { - "codePostal": "54385", - "codeCommune": "54346", - "libelleAcheminement": "MANONCOURT EN WOEVRE", - "nomCommune": "MANONCOURT EN WOEVRE" + "codePostal": "14140", + "codeCommune": "14362", + "libelleAcheminement": "LESSARD ET LE CHENE", + "nomCommune": "LESSARD ET LE CHENE" }, { - "codePostal": "18800", - "codeCommune": "18286", - "libelleAcheminement": "VILLEQUIERS", - "nomCommune": "VILLEQUIERS" + "codePostal": "16120", + "codeCommune": "16050", + "libelleAcheminement": "BONNEUIL", + "nomCommune": "BONNEUIL" }, { - "codePostal": "21700", - "codeCommune": "21517", - "libelleAcheminement": "QUINCEY", - "nomCommune": "QUINCEY" + "codePostal": "27520", + "codeCommune": "27077", + "libelleAcheminement": "BOISSEY LE CHATEL", + "nomCommune": "BOISSEY LE CHATEL" }, { - "codePostal": "59610", - "codeCommune": "59229", - "libelleAcheminement": "FERON", - "nomCommune": "FERON" + "codePostal": "27520", + "codeCommune": "27105", + "libelleAcheminement": "GRAND BOURGTHEROULDE", + "nomCommune": "GRAND BOURGTHEROULDE" }, { - "codePostal": "54800", - "codeCommune": "54353", - "libelleAcheminement": "MARS LA TOUR", - "nomCommune": "MARS LA TOUR" + "codePostal": "14250", + "codeCommune": "14364", + "libelleAcheminement": "LINGEVRES", + "nomCommune": "LINGEVRES" }, { - "codePostal": "19260", - "codeCommune": "19001", - "libelleAcheminement": "AFFIEUX", - "nomCommune": "AFFIEUX" + "codePostal": "16240", + "codeCommune": "16059", + "libelleAcheminement": "BRETTES", + "nomCommune": "BRETTES" }, { - "codePostal": "21220", - "codeCommune": "21523", - "libelleAcheminement": "REULLE VERGY", - "nomCommune": "REULLE VERGY" + "codePostal": "27310", + "codeCommune": "27091", + "libelleAcheminement": "BOSGOUET", + "nomCommune": "BOSGOUET" }, { - "codePostal": "59148", - "codeCommune": "59239", - "libelleAcheminement": "FLINES LEZ RACHES", - "nomCommune": "FLINES LEZ RACHES" + "codePostal": "27160", + "codeCommune": "27112", + "libelleAcheminement": "BRETEUIL", + "nomCommune": "BRETEUIL" }, { - "codePostal": "54200", - "codeCommune": "54360", - "libelleAcheminement": "MENIL LA TOUR", - "nomCommune": "MENIL LA TOUR" + "codePostal": "14490", + "codeCommune": "14369", + "libelleAcheminement": "LITTEAU", + "nomCommune": "LITTEAU" }, { - "codePostal": "19250", - "codeCommune": "19008", - "libelleAcheminement": "AMBRUGEAT", - "nomCommune": "AMBRUGEAT" + "codePostal": "16110", + "codeCommune": "16067", + "libelleAcheminement": "BUNZAC", + "nomCommune": "BUNZAC" }, { - "codePostal": "21530", - "codeCommune": "21531", - "libelleAcheminement": "ROUVRAY", - "nomCommune": "ROUVRAY" + "codePostal": "27700", + "codeCommune": "27097", + "libelleAcheminement": "BOUAFLES", + "nomCommune": "BOUAFLES" }, { - "codePostal": "59219", - "codeCommune": "59241", - "libelleAcheminement": "FLOYON", - "nomCommune": "FLOYON" + "codePostal": "27800", + "codeCommune": "27116", + "libelleAcheminement": "BRIONNE", + "nomCommune": "BRIONNE" }, { - "codePostal": "54850", - "codeCommune": "54366", - "libelleAcheminement": "MESSEIN", - "nomCommune": "MESSEIN" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "19000", - "codeCommune": "19009", - "libelleAcheminement": "LES ANGLES SUR CORREZE", - "nomCommune": "LES ANGLES SUR CORREZE" + "codePostal": "16260", + "codeCommune": "16068", + "libelleAcheminement": "CELLEFROUIN", + "nomCommune": "CELLEFROUIN" }, { - "codePostal": "21110", - "codeCommune": "21532", - "libelleAcheminement": "ROUVRES EN PLAINE", - "nomCommune": "ROUVRES EN PLAINE" + "codePostal": "27150", + "codeCommune": "27098", + "libelleAcheminement": "BOUCHEVILLIERS", + "nomCommune": "BOUCHEVILLIERS" }, { - "codePostal": "59157", - "codeCommune": "59243", - "libelleAcheminement": "FONTAINE AU PIRE", - "nomCommune": "FONTAINE AU PIRE" + "codePostal": "27120", + "codeCommune": "27123", + "libelleAcheminement": "CAILLOUET ORGEVILLE", + "nomCommune": "CAILLOUET ORGEVILLE" }, { - "codePostal": "54385", - "codeCommune": "54370", - "libelleAcheminement": "MINORVILLE", - "nomCommune": "MINORVILLE" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "19230", - "codeCommune": "19011", - "libelleAcheminement": "ARNAC POMPADOUR", - "nomCommune": "ARNAC POMPADOUR" + "codePostal": "16150", + "codeCommune": "16070", + "libelleAcheminement": "CHABANAIS", + "nomCommune": "CHABANAIS" }, { - "codePostal": "21320", - "codeCommune": "21533", - "libelleAcheminement": "ROUVRES SOUS MEILLY", - "nomCommune": "ROUVRES SOUS MEILLY" + "codePostal": "27380", + "codeCommune": "27104", + "libelleAcheminement": "BOURG BEAUDOUIN", + "nomCommune": "BOURG BEAUDOUIN" }, { - "codePostal": "59134", - "codeCommune": "59250", - "libelleAcheminement": "FOURNES EN WEPPES", - "nomCommune": "FOURNES EN WEPPES" + "codePostal": "27400", + "codeCommune": "27127", + "libelleAcheminement": "CANAPPEVILLE", + "nomCommune": "CANAPPEVILLE" }, { - "codePostal": "54170", - "codeCommune": "54379", - "libelleAcheminement": "MONT L ETROIT", - "nomCommune": "MONT L ETROIT" + "codePostal": "14290", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "19220", - "codeCommune": "19018", - "libelleAcheminement": "BASSIGNAC LE HAUT", - "nomCommune": "BASSIGNAC LE HAUT" + "codePostal": "16250", + "codeCommune": "16072", + "libelleAcheminement": "CHADURIE", + "nomCommune": "CHADURIE" }, { - "codePostal": "21200", - "codeCommune": "21534", - "libelleAcheminement": "RUFFEY LES BEAUNE", - "nomCommune": "RUFFEY LES BEAUNE" + "codePostal": "27350", + "codeCommune": "27110", + "libelleAcheminement": "BRESTOT", + "nomCommune": "BRESTOT" }, { - "codePostal": "59231", - "codeCommune": "59267", - "libelleAcheminement": "GONNELIEU", - "nomCommune": "GONNELIEU" + "codePostal": "27120", + "codeCommune": "27140", + "libelleAcheminement": "CHAMBRAY", + "nomCommune": "CHAMBRAY" }, { - "codePostal": "54113", - "codeCommune": "54380", - "libelleAcheminement": "MONT LE VIGNOBLE", - "nomCommune": "MONT LE VIGNOBLE" + "codePostal": "14290", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "19390", - "codeCommune": "19020", - "libelleAcheminement": "BEAUMONT", - "nomCommune": "BEAUMONT" + "codePostal": "16300", + "codeCommune": "16074", + "libelleAcheminement": "CHALLIGNAC", + "nomCommune": "CHALLIGNAC" }, { - "codePostal": "21140", - "codeCommune": "21547", - "libelleAcheminement": "ST EUPHRONE", - "nomCommune": "ST EUPHRONE" + "codePostal": "27800", + "codeCommune": "27125", + "libelleAcheminement": "CALLEVILLE", + "nomCommune": "CALLEVILLE" }, { - "codePostal": "59820", - "codeCommune": "59273", - "libelleAcheminement": "GRAVELINES", - "nomCommune": "GRAVELINES" + "codePostal": "27380", + "codeCommune": "27151", + "libelleAcheminement": "CHARLEVAL", + "nomCommune": "CHARLEVAL" }, { - "codePostal": "54920", - "codeCommune": "54385", - "libelleAcheminement": "MORFONTAINE", - "nomCommune": "MORFONTAINE" + "codePostal": "14400", + "codeCommune": "14385", + "libelleAcheminement": "MAGNY EN BESSIN", + "nomCommune": "MAGNY EN BESSIN" }, { - "codePostal": "19230", - "codeCommune": "19025", - "libelleAcheminement": "BEYSSENAC", - "nomCommune": "BEYSSENAC" + "codePostal": "16320", + "codeCommune": "16082", + "libelleAcheminement": "BOISNE LA TUDE", + "nomCommune": "BOISNE LA TUDE" }, { - "codePostal": "21510", - "codeCommune": "21549", - "libelleAcheminement": "ST GERMAIN LE ROCHEUX", - "nomCommune": "ST GERMAIN LE ROCHEUX" + "codePostal": "27300", + "codeCommune": "27129", + "libelleAcheminement": "CAORCHES ST NICOLAS", + "nomCommune": "CAORCHES ST NICOLAS" }, { - "codePostal": "59360", - "codeCommune": "59274", - "libelleAcheminement": "LA GROISE", - "nomCommune": "LA GROISE" + "codePostal": "27420", + "codeCommune": "27152", + "libelleAcheminement": "CHATEAU SUR EPTE", + "nomCommune": "CHATEAU SUR EPTE" }, { - "codePostal": "54113", - "codeCommune": "54392", - "libelleAcheminement": "MOUTROT", - "nomCommune": "MOUTROT" + "codePostal": "14400", + "codeCommune": "14400", + "libelleAcheminement": "LE MANOIR", + "nomCommune": "LE MANOIR" }, { - "codePostal": "19120", - "codeCommune": "19026", - "libelleAcheminement": "BILHAC", - "nomCommune": "BILHAC" + "codePostal": "16320", + "codeCommune": "16082", + "libelleAcheminement": "BOISNE LA TUDE", + "nomCommune": "BOISNE LA TUDE" }, { - "codePostal": "21500", - "codeCommune": "21550", - "libelleAcheminement": "ST GERMAIN LES SENAILLY", - "nomCommune": "ST GERMAIN LES SENAILLY" + "codePostal": "27300", + "codeCommune": "27129", + "libelleAcheminement": "CAORCHES ST NICOLAS", + "nomCommune": "CAORCHES ST NICOLAS" }, { - "codePostal": "59287", - "codeCommune": "59276", - "libelleAcheminement": "GUESNAIN", - "nomCommune": "GUESNAIN" + "codePostal": "27240", + "codeCommune": "27157", + "libelleAcheminement": "MARBOIS", + "nomCommune": "MARBOIS" }, { - "codePostal": "54000", - "codeCommune": "54395", - "libelleAcheminement": "NANCY", - "nomCommune": "NANCY" + "codePostal": "14117", + "codeCommune": "14401", + "libelleAcheminement": "MANVIEUX", + "nomCommune": "MANVIEUX" }, { - "codePostal": "19170", - "codeCommune": "19027", - "libelleAcheminement": "BONNEFOND", - "nomCommune": "BONNEFOND" + "codePostal": "16150", + "codeCommune": "16086", + "libelleAcheminement": "CHASSENON", + "nomCommune": "CHASSENON" }, { - "codePostal": "21490", - "codeCommune": "21555", - "libelleAcheminement": "ST JULIEN", - "nomCommune": "ST JULIEN" + "codePostal": "27110", + "codeCommune": "27135", + "libelleAcheminement": "CESSEVILLE", + "nomCommune": "CESSEVILLE" }, { - "codePostal": "59151", - "codeCommune": "59280", - "libelleAcheminement": "HAMEL", - "nomCommune": "HAMEL" + "codePostal": "27210", + "codeCommune": "27169", + "libelleAcheminement": "CONTEVILLE", + "nomCommune": "CONTEVILLE" }, { - "codePostal": "54230", - "codeCommune": "54397", - "libelleAcheminement": "NEUVES MAISONS", - "nomCommune": "NEUVES MAISONS" + "codePostal": "14100", + "codeCommune": "14403", + "libelleAcheminement": "MAROLLES", + "nomCommune": "MAROLLES" }, { - "codePostal": "19170", - "codeCommune": "19033", - "libelleAcheminement": "BUGEAT", - "nomCommune": "BUGEAT" + "codePostal": "16350", + "codeCommune": "16087", + "libelleAcheminement": "CHASSIECQ", + "nomCommune": "CHASSIECQ" }, { - "codePostal": "21210", - "codeCommune": "21560", - "libelleAcheminement": "ST MARTIN DE LA MER", - "nomCommune": "ST MARTIN DE LA MER" + "codePostal": "27580", + "codeCommune": "27137", + "libelleAcheminement": "CHAISE DIEU DU THEIL", + "nomCommune": "CHAISE DIEU DU THEIL" }, { - "codePostal": "59330", - "codeCommune": "59291", - "libelleAcheminement": "HAUTMONT", - "nomCommune": "HAUTMONT" + "codePostal": "27300", + "codeCommune": "27179", + "libelleAcheminement": "COURBEPINE", + "nomCommune": "COURBEPINE" }, { - "codePostal": "54540", - "codeCommune": "54398", - "libelleAcheminement": "NEUVILLER LES BADONVILLER", - "nomCommune": "NEUVILLER LES BADONVILLER" + "codePostal": "14920", + "codeCommune": "14407", + "libelleAcheminement": "MATHIEU", + "nomCommune": "MATHIEU" }, { - "codePostal": "19430", - "codeCommune": "19034", - "libelleAcheminement": "CAMPS ST MATHURIN LEOBAZEL", - "nomCommune": "CAMPS ST MATHURIN LEOBAZEL" + "codePostal": "16120", + "codeCommune": "16090", + "libelleAcheminement": "CHATEAUNEUF SUR CHARENTE", + "nomCommune": "CHATEAUNEUF SUR CHARENTE" }, { - "codePostal": "21540", - "codeCommune": "21563", - "libelleAcheminement": "ST MESMIN", - "nomCommune": "ST MESMIN" + "codePostal": "27260", + "codeCommune": "27146", + "libelleAcheminement": "LA CHAPELLE BAYVEL", + "nomCommune": "LA CHAPELLE BAYVEL" }, { - "codePostal": "59470", - "codeCommune": "59305", - "libelleAcheminement": "HERZEELE", - "nomCommune": "HERZEELE" + "codePostal": "27490", + "codeCommune": "27191", + "libelleAcheminement": "CLEF VALLEE D EURE", + "nomCommune": "CLEF VALLEE D EURE" }, { - "codePostal": "54610", - "codeCommune": "54400", - "libelleAcheminement": "NOMENY", - "nomCommune": "NOMENY" + "codePostal": "14220", + "codeCommune": "14411", + "libelleAcheminement": "MESLAY", + "nomCommune": "MESLAY" }, { - "codePostal": "19320", - "codeCommune": "19040", - "libelleAcheminement": "CHAMPAGNAC LA PRUNE", - "nomCommune": "CHAMPAGNAC LA PRUNE" + "codePostal": "16380", + "codeCommune": "16093", + "libelleAcheminement": "CHAZELLES", + "nomCommune": "CHAZELLES" }, { - "codePostal": "21130", - "codeCommune": "21572", - "libelleAcheminement": "ST SEINE EN BACHE", - "nomCommune": "ST SEINE EN BACHE" + "codePostal": "27270", + "codeCommune": "27148", + "libelleAcheminement": "LA CHAPELLE GAUTHIER", + "nomCommune": "LA CHAPELLE GAUTHIER" }, { - "codePostal": "59143", - "codeCommune": "59307", - "libelleAcheminement": "HOLQUE", - "nomCommune": "HOLQUE" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "54385", - "codeCommune": "54404", - "libelleAcheminement": "NOVIANT AUX PRES", - "nomCommune": "NOVIANT AUX PRES" + "codePostal": "14260", + "codeCommune": "14412", + "libelleAcheminement": "LE MESNIL AU GRAIN", + "nomCommune": "LE MESNIL AU GRAIN" }, { - "codePostal": "19300", - "codeCommune": "19046", - "libelleAcheminement": "CHAPELLE SPINASSE", - "nomCommune": "CHAPELLE SPINASSE" + "codePostal": "16150", + "codeCommune": "16100", + "libelleAcheminement": "CHIRAC", + "nomCommune": "CHIRAC" }, { - "codePostal": "21350", - "codeCommune": "21576", - "libelleAcheminement": "ST THIBAULT", - "nomCommune": "ST THIBAULT" + "codePostal": "27150", + "codeCommune": "27153", + "libelleAcheminement": "CHAUVINCOURT PROVEMONT", + "nomCommune": "CHAUVINCOURT PROVEMONT" }, { - "codePostal": "59266", - "codeCommune": "59312", - "libelleAcheminement": "HONNECOURT SUR ESCAUT", - "nomCommune": "HONNECOURT SUR ESCAUT" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "54530", - "codeCommune": "54415", - "libelleAcheminement": "PAGNY SUR MOSELLE", - "nomCommune": "PAGNY SUR MOSELLE" + "codePostal": "14230", + "codeCommune": "14439", + "libelleAcheminement": "MONFREVILLE", + "nomCommune": "MONFREVILLE" }, { - "codePostal": "19160", - "codeCommune": "19055", - "libelleAcheminement": "CHIRAC BELLEVUE", - "nomCommune": "CHIRAC BELLEVUE" + "codePostal": "16330", + "codeCommune": "16108", + "libelleAcheminement": "COULONGES", + "nomCommune": "COULONGES" }, { - "codePostal": "21340", - "codeCommune": "21583", - "libelleAcheminement": "SANTOSSE", - "nomCommune": "SANTOSSE" + "codePostal": "27170", + "codeCommune": "27164", + "libelleAcheminement": "COMBON", + "nomCommune": "COMBON" }, { - "codePostal": "59530", - "codeCommune": "59325", - "libelleAcheminement": "JOLIMETZ", - "nomCommune": "JOLIMETZ" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "54470", - "codeCommune": "54416", - "libelleAcheminement": "PANNES", - "nomCommune": "PANNES" + "codePostal": "14310", + "codeCommune": "14449", + "libelleAcheminement": "MONTS EN BESSIN", + "nomCommune": "MONTS EN BESSIN" }, { - "codePostal": "19250", - "codeCommune": "19058", - "libelleAcheminement": "COMBRESSOL", - "nomCommune": "COMBRESSOL" + "codePostal": "16700", + "codeCommune": "16110", + "libelleAcheminement": "COURCOME", + "nomCommune": "COURCOME" }, { - "codePostal": "21380", - "codeCommune": "21589", - "libelleAcheminement": "SAUSSY", - "nomCommune": "SAUSSY" + "codePostal": "27500", + "codeCommune": "27174", + "libelleAcheminement": "CORNEVILLE SUR RISLE", + "nomCommune": "CORNEVILLE SUR RISLE" }, { - "codePostal": "59167", - "codeCommune": "59327", - "libelleAcheminement": "LALLAING", - "nomCommune": "LALLAING" + "codePostal": "27120", + "codeCommune": "27203", + "libelleAcheminement": "DOUAINS", + "nomCommune": "DOUAINS" }, { - "codePostal": "54540", - "codeCommune": "54423", - "libelleAcheminement": "PEXONNE", - "nomCommune": "PEXONNE" + "codePostal": "14790", + "codeCommune": "14454", + "libelleAcheminement": "MOUEN", + "nomCommune": "MOUEN" }, { - "codePostal": "19800", - "codeCommune": "19062", - "libelleAcheminement": "CORREZE", - "nomCommune": "CORREZE" + "codePostal": "16210", + "codeCommune": "16112", + "libelleAcheminement": "COURLAC", + "nomCommune": "COURLAC" }, { - "codePostal": "21430", - "codeCommune": "21593", - "libelleAcheminement": "SAVILLY", - "nomCommune": "SAVILLY" + "codePostal": "27940", + "codeCommune": "27180", + "libelleAcheminement": "COURCELLES SUR SEINE", + "nomCommune": "COURCELLES SUR SEINE" }, { - "codePostal": "59740", - "codeCommune": "59347", - "libelleAcheminement": "LIESSIES", - "nomCommune": "LIESSIES" + "codePostal": "27380", + "codeCommune": "27205", + "libelleAcheminement": "DOUVILLE SUR ANDELLE", + "nomCommune": "DOUVILLE SUR ANDELLE" }, { - "codePostal": "54610", - "codeCommune": "54424", - "libelleAcheminement": "PHLIN", - "nomCommune": "PHLIN" + "codePostal": "14620", + "codeCommune": "14457", + "libelleAcheminement": "LES MOUTIERS EN AUGE", + "nomCommune": "LES MOUTIERS EN AUGE" }, { - "codePostal": "19500", - "codeCommune": "19067", - "libelleAcheminement": "CUREMONTE", - "nomCommune": "CUREMONTE" + "codePostal": "16410", + "codeCommune": "16120", + "libelleAcheminement": "DIRAC", + "nomCommune": "DIRAC" }, { - "codePostal": "21910", - "codeCommune": "21596", - "libelleAcheminement": "SAVOUGES", - "nomCommune": "SAVOUGES" + "codePostal": "27750", + "codeCommune": "27183", + "libelleAcheminement": "LA COUTURE BOUSSEY", + "nomCommune": "LA COUTURE BOUSSEY" }, { - "codePostal": "59191", - "codeCommune": "59349", - "libelleAcheminement": "LIGNY EN CAMBRESIS", - "nomCommune": "LIGNY EN CAMBRESIS" + "codePostal": "27230", + "codeCommune": "27207", + "libelleAcheminement": "DRUCOURT", + "nomCommune": "DRUCOURT" }, { - "codePostal": "54700", - "codeCommune": "54431", - "libelleAcheminement": "PONT A MOUSSON", - "nomCommune": "PONT A MOUSSON" + "codePostal": "14220", + "codeCommune": "14458", + "libelleAcheminement": "LES MOUTIERS EN CINGLAIS", + "nomCommune": "LES MOUTIERS EN CINGLAIS" }, { - "codePostal": "19300", - "codeCommune": "19073", - "libelleAcheminement": "EGLETONS", - "nomCommune": "EGLETONS" + "codePostal": "16170", + "codeCommune": "16123", + "libelleAcheminement": "ECHALLAT", + "nomCommune": "ECHALLAT" }, { - "codePostal": "21260", - "codeCommune": "21599", - "libelleAcheminement": "SELONGEY", - "nomCommune": "SELONGEY" + "codePostal": "27110", + "codeCommune": "27187", + "libelleAcheminement": "CRIQUEBEUF LA CAMPAGNE", + "nomCommune": "CRIQUEBEUF LA CAMPAGNE" }, { - "codePostal": "59120", - "codeCommune": "59360", - "libelleAcheminement": "LOOS", - "nomCommune": "LOOS" + "codePostal": "27110", + "codeCommune": "27212", + "libelleAcheminement": "ECAUVILLE", + "nomCommune": "ECAUVILLE" }, { - "codePostal": "54160", - "codeCommune": "54437", - "libelleAcheminement": "PULLIGNY", - "nomCommune": "PULLIGNY" + "codePostal": "14100", + "codeCommune": "14466", + "libelleAcheminement": "NOROLLES", + "nomCommune": "NOROLLES" }, { - "codePostal": "19340", - "codeCommune": "19080", - "libelleAcheminement": "EYGURANDE", - "nomCommune": "EYGURANDE" + "codePostal": "16150", + "codeCommune": "16132", + "libelleAcheminement": "ETAGNAC", + "nomCommune": "ETAGNAC" }, { - "codePostal": "21320", - "codeCommune": "21600", - "libelleAcheminement": "SEMAREY", - "nomCommune": "SEMAREY" + "codePostal": "27340", + "codeCommune": "27188", + "libelleAcheminement": "CRIQUEBEUF SUR SEINE", + "nomCommune": "CRIQUEBEUF SUR SEINE" }, { - "codePostal": "59700", - "codeCommune": "59378", - "libelleAcheminement": "MARCQ EN BAROEUL", - "nomCommune": "MARCQ EN BAROEUL" + "codePostal": "27420", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "54450", - "codeCommune": "54447", - "libelleAcheminement": "RECLONVILLE", - "nomCommune": "RECLONVILLE" + "codePostal": "14210", + "codeCommune": "14475", + "libelleAcheminement": "VAL D ARRY", + "nomCommune": "VAL D ARRY" }, { - "codePostal": "19800", - "codeCommune": "19085", - "libelleAcheminement": "GIMEL LES CASCADES", - "nomCommune": "GIMEL LES CASCADES" + "codePostal": "16240", + "codeCommune": "16142", + "libelleAcheminement": "LA FORET DE TESSE", + "nomCommune": "LA FORET DE TESSE" }, { - "codePostal": "21450", - "codeCommune": "21602", - "libelleAcheminement": "SEMOND", - "nomCommune": "SEMOND" + "codePostal": "27490", + "codeCommune": "27191", + "libelleAcheminement": "CLEF VALLEE D EURE", + "nomCommune": "CLEF VALLEE D EURE" }, { - "codePostal": "59990", - "codeCommune": "59381", - "libelleAcheminement": "MARESCHES", - "nomCommune": "MARESCHES" + "codePostal": "27630", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "54470", - "codeCommune": "54453", - "libelleAcheminement": "REMBERCOURT SUR MAD", - "nomCommune": "REMBERCOURT SUR MAD" + "codePostal": "14170", + "codeCommune": "14476", + "libelleAcheminement": "OLENDON", + "nomCommune": "OLENDON" }, { - "codePostal": "19150", - "codeCommune": "19098", - "libelleAcheminement": "LAGARDE MARC LA TOUR", - "nomCommune": "LAGARDE MARC LA TOUR" + "codePostal": "16170", + "codeCommune": "16148", + "libelleAcheminement": "GENAC BIGNAC", + "nomCommune": "GENAC BIGNAC" }, { - "codePostal": "21550", - "codeCommune": "21606", - "libelleAcheminement": "LADOIX SERRIGNY", - "nomCommune": "LADOIX SERRIGNY" + "codePostal": "27490", + "codeCommune": "27191", + "libelleAcheminement": "CLEF VALLEE D EURE", + "nomCommune": "CLEF VALLEE D EURE" }, { - "codePostal": "59238", - "codeCommune": "59382", - "libelleAcheminement": "MARETZ", - "nomCommune": "MARETZ" + "codePostal": "27630", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "54385", - "codeCommune": "54463", - "libelleAcheminement": "ROSIERES EN HAYE", - "nomCommune": "ROSIERES EN HAYE" + "codePostal": "14590", + "codeCommune": "14484", + "libelleAcheminement": "OUILLY DU HOULEY", + "nomCommune": "OUILLY DU HOULEY" }, { - "codePostal": "19150", - "codeCommune": "19101", - "libelleAcheminement": "LAGUENNE SUR AVALOUZE", - "nomCommune": "LAGUENNE SUR AVALOUZE" + "codePostal": "16130", + "codeCommune": "16150", + "libelleAcheminement": "GENSAC LA PALLUE", + "nomCommune": "GENSAC LA PALLUE" }, { - "codePostal": "21540", - "codeCommune": "21611", - "libelleAcheminement": "SOMBERNON", - "nomCommune": "SOMBERNON" + "codePostal": "27700", + "codeCommune": "27194", + "libelleAcheminement": "CUVERVILLE", + "nomCommune": "CUVERVILLE" }, { - "codePostal": "59164", - "codeCommune": "59385", - "libelleAcheminement": "MARPENT", - "nomCommune": "MARPENT" + "codePostal": "27110", + "codeCommune": "27215", + "libelleAcheminement": "ECQUETOT", + "nomCommune": "ECQUETOT" }, { - "codePostal": "54200", - "codeCommune": "54466", - "libelleAcheminement": "ROYAUMEIX", - "nomCommune": "ROYAUMEIX" + "codePostal": "14590", + "codeCommune": "14504", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "19150", - "codeCommune": "19101", - "libelleAcheminement": "LAGUENNE SUR AVALOUZE", - "nomCommune": "LAGUENNE SUR AVALOUZE" + "codePostal": "16130", + "codeCommune": "16152", + "libelleAcheminement": "GIMEUX", + "nomCommune": "GIMEUX" }, { - "codePostal": "21350", - "codeCommune": "21613", - "libelleAcheminement": "SOUSSEY SUR BRIONNE", - "nomCommune": "SOUSSEY SUR BRIONNE" + "codePostal": "27340", + "codeCommune": "27196", + "libelleAcheminement": "LES DAMPS", + "nomCommune": "LES DAMPS" }, { - "codePostal": "59520", - "codeCommune": "59386", - "libelleAcheminement": "MARQUETTE LEZ LILLE", - "nomCommune": "MARQUETTE LEZ LILLE" + "codePostal": "27190", + "codeCommune": "27217", + "libelleAcheminement": "EMANVILLE", + "nomCommune": "EMANVILLE" }, { - "codePostal": "54580", - "codeCommune": "54469", - "libelleAcheminement": "ST AIL", - "nomCommune": "ST AIL" + "codePostal": "14690", + "codeCommune": "14510", + "libelleAcheminement": "LA POMMERAYE", + "nomCommune": "LA POMMERAYE" }, { - "codePostal": "19510", - "codeCommune": "19104", - "libelleAcheminement": "LAMONGERIE", - "nomCommune": "LAMONGERIE" + "codePostal": "16140", + "codeCommune": "16155", + "libelleAcheminement": "LES GOURS", + "nomCommune": "LES GOURS" }, { - "codePostal": "21310", - "codeCommune": "21619", - "libelleAcheminement": "TANAY", - "nomCommune": "TANAY" + "codePostal": "27930", + "codeCommune": "27200", + "libelleAcheminement": "DARDEZ", + "nomCommune": "DARDEZ" }, { - "codePostal": "59252", - "codeCommune": "59387", - "libelleAcheminement": "MARQUETTE EN OSTREVANT", - "nomCommune": "MARQUETTE EN OSTREVANT" + "codePostal": "27110", + "codeCommune": "27219", + "libelleAcheminement": "EPEGARD", + "nomCommune": "EPEGARD" }, { - "codePostal": "54290", - "codeCommune": "54471", - "libelleAcheminement": "ST BOINGT", - "nomCommune": "ST BOINGT" + "codePostal": "14110", + "codeCommune": "14512", + "libelleAcheminement": "PONTECOULANT", + "nomCommune": "PONTECOULANT" }, { - "codePostal": "19130", - "codeCommune": "19109", - "libelleAcheminement": "LASCAUX", - "nomCommune": "LASCAUX" + "codePostal": "16340", + "codeCommune": "16166", + "libelleAcheminement": "L ISLE D ESPAGNAC", + "nomCommune": "L ISLE D ESPAGNAC" }, { - "codePostal": "21220", - "codeCommune": "21625", - "libelleAcheminement": "TERNANT", - "nomCommune": "TERNANT" + "codePostal": "27290", + "codeCommune": "27209", + "libelleAcheminement": "ECAQUELON", + "nomCommune": "ECAQUELON" }, { - "codePostal": "59176", - "codeCommune": "59390", - "libelleAcheminement": "MASNY", - "nomCommune": "MASNY" + "codePostal": "27110", + "codeCommune": "27224", + "libelleAcheminement": "EPREVILLE PRES LE NEUBOURG", + "nomCommune": "EPREVILLE PRES LE NEUBOURG" }, { - "codePostal": "54450", - "codeCommune": "54480", - "libelleAcheminement": "ST MARTIN", - "nomCommune": "ST MARTIN" + "codePostal": "14130", + "codeCommune": "14514", + "libelleAcheminement": "PONT L EVEQUE", + "nomCommune": "PONT L EVEQUE" }, { - "codePostal": "19500", - "codeCommune": "19115", - "libelleAcheminement": "LIGNEYRAC", - "nomCommune": "LIGNEYRAC" + "codePostal": "16300", + "codeCommune": "16176", + "libelleAcheminement": "LACHAISE", + "nomCommune": "LACHAISE" }, { - "codePostal": "21570", - "codeCommune": "21628", - "libelleAcheminement": "THOIRES", - "nomCommune": "THOIRES" + "codePostal": "27420", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "59600", - "codeCommune": "59392", - "libelleAcheminement": "MAUBEUGE", - "nomCommune": "MAUBEUGE" + "codePostal": "27270", + "codeCommune": "27239", + "libelleAcheminement": "FERRIERES ST HILAIRE", + "nomCommune": "FERRIERES ST HILAIRE" }, { - "codePostal": "54540", - "codeCommune": "54481", - "libelleAcheminement": "ST MAURICE AUX FORGES", - "nomCommune": "ST MAURICE AUX FORGES" + "codePostal": "14690", + "codeCommune": "14531", + "libelleAcheminement": "RAPILLY", + "nomCommune": "RAPILLY" }, { - "codePostal": "19500", - "codeCommune": "19119", - "libelleAcheminement": "LOSTANGES", - "nomCommune": "LOSTANGES" + "codePostal": "16390", + "codeCommune": "16180", + "libelleAcheminement": "LAPRADE", + "nomCommune": "LAPRADE" }, { - "codePostal": "21340", - "codeCommune": "21636", - "libelleAcheminement": "THURY", - "nomCommune": "THURY" + "codePostal": "27510", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "59270", - "codeCommune": "59399", - "libelleAcheminement": "MERRIS", - "nomCommune": "MERRIS" + "codePostal": "27480", + "codeCommune": "27245", + "libelleAcheminement": "FLEURY LA FORET", + "nomCommune": "FLEURY LA FORET" }, { - "codePostal": "54130", - "codeCommune": "54482", - "libelleAcheminement": "ST MAX", - "nomCommune": "ST MAX" + "codePostal": "14340", + "codeCommune": "14541", + "libelleAcheminement": "LA ROQUE BAIGNARD", + "nomCommune": "LA ROQUE BAIGNARD" }, { - "codePostal": "19200", - "codeCommune": "19128", - "libelleAcheminement": "MARGERIDES", - "nomCommune": "MARGERIDES" + "codePostal": "16500", + "codeCommune": "16181", + "libelleAcheminement": "LESSAC", + "nomCommune": "LESSAC" }, { - "codePostal": "21540", - "codeCommune": "21648", - "libelleAcheminement": "TURCEY", - "nomCommune": "TURCEY" + "codePostal": "27510", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "59224", - "codeCommune": "59407", - "libelleAcheminement": "MONCHAUX SUR ECAILLON", - "nomCommune": "MONCHAUX SUR ECAILLON" + "codePostal": "27380", + "codeCommune": "27247", + "libelleAcheminement": "FLIPOU", + "nomCommune": "FLIPOU" }, { - "codePostal": "54480", - "codeCommune": "54488", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "14740", + "codeCommune": "14543", + "libelleAcheminement": "ROTS", + "nomCommune": "ROTS" }, { - "codePostal": "19510", - "codeCommune": "19131", - "libelleAcheminement": "MEILHARDS", - "nomCommune": "MEILHARDS" + "codePostal": "16420", + "codeCommune": "16182", + "libelleAcheminement": "LESTERPS", + "nomCommune": "LESTERPS" }, { - "codePostal": "21350", - "codeCommune": "21649", - "libelleAcheminement": "UNCEY LE FRANC", - "nomCommune": "UNCEY LE FRANC" + "codePostal": "27930", + "codeCommune": "27216", + "libelleAcheminement": "EMALLEVILLE", + "nomCommune": "EMALLEVILLE" }, { - "codePostal": "59283", - "codeCommune": "59408", - "libelleAcheminement": "MONCHEAUX", - "nomCommune": "MONCHEAUX" + "codePostal": "27230", + "codeCommune": "27248", + "libelleAcheminement": "FOLLEVILLE", + "nomCommune": "FOLLEVILLE" }, { - "codePostal": "54560", - "codeCommune": "54491", - "libelleAcheminement": "SANCY", - "nomCommune": "SANCY" + "codePostal": "14190", + "codeCommune": "14546", + "libelleAcheminement": "ROUVRES", + "nomCommune": "ROUVRES" }, { - "codePostal": "19800", - "codeCommune": "19137", - "libelleAcheminement": "MEYRIGNAC L EGLISE", - "nomCommune": "MEYRIGNAC L EGLISE" + "codePostal": "16270", + "codeCommune": "16192", + "libelleAcheminement": "TERRES DE HAUTE CHARENTE", + "nomCommune": "TERRES DE HAUTE CHARENTE" }, { - "codePostal": "21360", - "codeCommune": "21660", - "libelleAcheminement": "VEILLY", - "nomCommune": "VEILLY" + "codePostal": "27730", + "codeCommune": "27220", + "libelleAcheminement": "EPIEDS", + "nomCommune": "EPIEDS" }, { - "codePostal": "59360", - "codeCommune": "59412", - "libelleAcheminement": "MONTAY", - "nomCommune": "MONTAY" + "codePostal": "27230", + "codeCommune": "27252", + "libelleAcheminement": "FONTAINE LA LOUVET", + "nomCommune": "FONTAINE LA LOUVET" }, { - "codePostal": "54420", - "codeCommune": "54495", - "libelleAcheminement": "SAULXURES LES NANCY", - "nomCommune": "SAULXURES LES NANCY" + "codePostal": "14320", + "codeCommune": "14556", + "libelleAcheminement": "ST ANDRE SUR ORNE", + "nomCommune": "ST ANDRE SUR ORNE" }, { - "codePostal": "19600", - "codeCommune": "19151", - "libelleAcheminement": "NOAILLES", - "nomCommune": "NOAILLES" + "codePostal": "16140", + "codeCommune": "16194", + "libelleAcheminement": "LUPSAULT", + "nomCommune": "LUPSAULT" }, { - "codePostal": "21150", - "codeCommune": "21663", - "libelleAcheminement": "VENAREY LES LAUMES", - "nomCommune": "VENAREY LES LAUMES" + "codePostal": "27150", + "codeCommune": "27232", + "libelleAcheminement": "FARCEAUX", + "nomCommune": "FARCEAUX" }, { - "codePostal": "59225", - "codeCommune": "59413", - "libelleAcheminement": "MONTIGNY EN CAMBRESIS", - "nomCommune": "MONTIGNY EN CAMBRESIS" + "codePostal": "27120", + "codeCommune": "27254", + "libelleAcheminement": "FONTAINE SOUS JOUY", + "nomCommune": "FONTAINE SOUS JOUY" }, { - "codePostal": "54550", - "codeCommune": "54505", - "libelleAcheminement": "SEXEY AUX FORGES", - "nomCommune": "SEXEY AUX FORGES" + "codePostal": "14290", + "codeCommune": "14570", + "libelleAcheminement": "VALORBIQUET", + "nomCommune": "VALORBIQUET" }, { - "codePostal": "19310", - "codeCommune": "19161", - "libelleAcheminement": "PERPEZAC LE BLANC", - "nomCommune": "PERPEZAC LE BLANC" + "codePostal": "16120", + "codeCommune": "16204", + "libelleAcheminement": "BELLEVIGNE", + "nomCommune": "BELLEVIGNE" }, { - "codePostal": "21360", - "codeCommune": "21673", - "libelleAcheminement": "VEUVEY SUR OUCHE", - "nomCommune": "VEUVEY SUR OUCHE" + "codePostal": "27290", + "codeCommune": "27267", + "libelleAcheminement": "FRENEUSE SUR RISLE", + "nomCommune": "FRENEUSE SUR RISLE" }, { - "codePostal": "59182", - "codeCommune": "59414", - "libelleAcheminement": "MONTIGNY EN OSTREVENT", - "nomCommune": "MONTIGNY EN OSTREVENT" + "codePostal": "27210", + "codeCommune": "27260", + "libelleAcheminement": "FOULBEC", + "nomCommune": "FOULBEC" }, { - "codePostal": "54280", - "codeCommune": "54510", - "libelleAcheminement": "SORNEVILLE", - "nomCommune": "SORNEVILLE" + "codePostal": "14140", + "codeCommune": "14576", + "libelleAcheminement": "VAL DE VIE", + "nomCommune": "VAL DE VIE" }, { - "codePostal": "19200", - "codeCommune": "19167", - "libelleAcheminement": "CONFOLENT PORT DIEU", - "nomCommune": "CONFOLENT PORT DIEU" + "codePostal": "16500", + "codeCommune": "16205", + "libelleAcheminement": "MANOT", + "nomCommune": "MANOT" }, { - "codePostal": "21360", - "codeCommune": "21677", - "libelleAcheminement": "VIC DES PRES", - "nomCommune": "VIC DES PRES" + "codePostal": "27260", + "codeCommune": "27269", + "libelleAcheminement": "FRESNE CAUVERVILLE", + "nomCommune": "FRESNE CAUVERVILLE" }, { - "codePostal": "59227", - "codeCommune": "59415", - "libelleAcheminement": "MONTRECOURT", - "nomCommune": "MONTRECOURT" + "codePostal": "27680", + "codeCommune": "27263", + "libelleAcheminement": "LE PERREY", + "nomCommune": "LE PERREY" }, { - "codePostal": "54800", - "codeCommune": "54511", - "libelleAcheminement": "SPONVILLE", - "nomCommune": "SPONVILLE" + "codePostal": "14130", + "codeCommune": "14578", + "libelleAcheminement": "ST GATIEN DES BOIS", + "nomCommune": "ST GATIEN DES BOIS" }, { - "codePostal": "19120", - "codeCommune": "19169", - "libelleAcheminement": "PUY D ARNAC", - "nomCommune": "PUY D ARNAC" + "codePostal": "16140", + "codeCommune": "16207", + "libelleAcheminement": "MARCILLAC LANVILLE", + "nomCommune": "MARCILLAC LANVILLE" }, { - "codePostal": "21270", - "codeCommune": "21680", - "libelleAcheminement": "VIELVERGE", - "nomCommune": "VIELVERGE" + "codePostal": "27120", + "codeCommune": "27273", + "libelleAcheminement": "GADENCOURT", + "nomCommune": "GADENCOURT" }, { - "codePostal": "59960", - "codeCommune": "59426", - "libelleAcheminement": "NEUVILLE EN FERRAIN", - "nomCommune": "NEUVILLE EN FERRAIN" + "codePostal": "27220", + "codeCommune": "27277", + "libelleAcheminement": "LA BARONNIE", + "nomCommune": "LA BARONNIE" }, { - "codePostal": "54930", - "codeCommune": "54516", - "libelleAcheminement": "THEY SOUS VAUDEMONT", - "nomCommune": "THEY SOUS VAUDEMONT" + "codePostal": "14710", + "codeCommune": "14591", + "libelleAcheminement": "AURE SUR MER", + "nomCommune": "AURE SUR MER" }, { - "codePostal": "19270", - "codeCommune": "19202", - "libelleAcheminement": "STE FEREOLE", - "nomCommune": "STE FEREOLE" + "codePostal": "16620", + "codeCommune": "16222", + "libelleAcheminement": "MONTBOYER", + "nomCommune": "MONTBOYER" }, { - "codePostal": "21230", - "codeCommune": "21683", - "libelleAcheminement": "VIEVY", - "nomCommune": "VIEVY" + "codePostal": "27930", + "codeCommune": "27282", + "libelleAcheminement": "GAUVILLE LA CAMPAGNE", + "nomCommune": "GAUVILLE LA CAMPAGNE" }, { - "codePostal": "59293", - "codeCommune": "59429", - "libelleAcheminement": "NEUVILLE SUR ESCAUT", - "nomCommune": "NEUVILLE SUR ESCAUT" + "codePostal": "27780", + "codeCommune": "27278", + "libelleAcheminement": "GARENNES SUR EURE", + "nomCommune": "GARENNES SUR EURE" }, { - "codePostal": "54120", - "codeCommune": "54519", - "libelleAcheminement": "THIAVILLE SUR MEURTHE", - "nomCommune": "THIAVILLE SUR MEURTHE" + "codePostal": "14100", + "codeCommune": "14595", + "libelleAcheminement": "ST JEAN DE LIVET", + "nomCommune": "ST JEAN DE LIVET" }, { - "codePostal": "19170", - "codeCommune": "19209", - "libelleAcheminement": "ST HILAIRE LES COURBES", - "nomCommune": "ST HILAIRE LES COURBES" + "codePostal": "16300", + "codeCommune": "16224", + "libelleAcheminement": "MONTMERAC", + "nomCommune": "MONTMERAC" }, { - "codePostal": "21200", - "codeCommune": "21684", - "libelleAcheminement": "VIGNOLES", - "nomCommune": "VIGNOLES" + "codePostal": "27110", + "codeCommune": "27298", + "libelleAcheminement": "GRAVERON SEMERVILLE", + "nomCommune": "GRAVERON SEMERVILLE" }, { - "codePostal": "59360", - "codeCommune": "59430", - "libelleAcheminement": "NEUVILLY", - "nomCommune": "NEUVILLY" + "codePostal": "27930", + "codeCommune": "27280", + "libelleAcheminement": "GAUCIEL", + "nomCommune": "GAUCIEL" }, { - "codePostal": "54800", - "codeCommune": "54524", - "libelleAcheminement": "THUMEREVILLE", - "nomCommune": "THUMEREVILLE" + "codePostal": "14430", + "codeCommune": "14598", + "libelleAcheminement": "ST JOUIN", + "nomCommune": "ST JOUIN" }, { - "codePostal": "19560", - "codeCommune": "19211", - "libelleAcheminement": "ST HILAIRE PEYROUX", - "nomCommune": "ST HILAIRE PEYROUX" + "codePostal": "16300", + "codeCommune": "16224", + "libelleAcheminement": "MONTMERAC", + "nomCommune": "MONTMERAC" }, { - "codePostal": "21120", - "codeCommune": "21692", - "libelleAcheminement": "VILLECOMTE", - "nomCommune": "VILLECOMTE" + "codePostal": "27720", + "codeCommune": "27304", + "libelleAcheminement": "GUERNY", + "nomCommune": "GUERNY" }, { - "codePostal": "59850", - "codeCommune": "59431", - "libelleAcheminement": "NIEPPE", - "nomCommune": "NIEPPE" + "codePostal": "27190", + "codeCommune": "27281", + "libelleAcheminement": "GAUDREVILLE LA RIVIERE", + "nomCommune": "GAUDREVILLE LA RIVIERE" }, { - "codePostal": "54210", - "codeCommune": "54527", - "libelleAcheminement": "TONNOY", - "nomCommune": "TONNOY" + "codePostal": "14430", + "codeCommune": "14606", + "libelleAcheminement": "ST LEGER DUBOSQ", + "nomCommune": "ST LEGER DUBOSQ" }, { - "codePostal": "19210", - "codeCommune": "19216", - "libelleAcheminement": "ST JULIEN LE VENDOMOIS", - "nomCommune": "ST JULIEN LE VENDOMOIS" + "codePostal": "16190", + "codeCommune": "16230", + "libelleAcheminement": "MONTMOREAU", + "nomCommune": "MONTMOREAU" }, { - "codePostal": "21690", - "codeCommune": "21705", - "libelleAcheminement": "VILLOTTE ST SEINE", - "nomCommune": "VILLOTTE ST SEINE" + "codePostal": "27930", + "codeCommune": "27306", + "libelleAcheminement": "GUICHAINVILLE", + "nomCommune": "GUICHAINVILLE" }, { - "codePostal": "59570", - "codeCommune": "59441", - "libelleAcheminement": "OBIES", - "nomCommune": "OBIES" + "codePostal": "27620", + "codeCommune": "27285", + "libelleAcheminement": "GIVERNY", + "nomCommune": "GIVERNY" }, { - "codePostal": "54115", - "codeCommune": "54531", - "libelleAcheminement": "TRAMONT ST ANDRE", - "nomCommune": "TRAMONT ST ANDRE" + "codePostal": "14310", + "codeCommune": "14607", + "libelleAcheminement": "ST LOUET SUR SEULLES", + "nomCommune": "ST LOUET SUR SEULLES" }, { - "codePostal": "19160", - "codeCommune": "19219", - "libelleAcheminement": "STE MARIE LAPANOUZE", - "nomCommune": "STE MARIE LAPANOUZE" + "codePostal": "16700", + "codeCommune": "16242", + "libelleAcheminement": "NANTEUIL EN VALLEE", + "nomCommune": "NANTEUIL EN VALLEE" }, { - "codePostal": "21400", - "codeCommune": "21706", - "libelleAcheminement": "VILLOTTE SUR OURCE", - "nomCommune": "VILLOTTE SUR OURCE" + "codePostal": "27220", + "codeCommune": "27309", + "libelleAcheminement": "L HABIT", + "nomCommune": "L HABIT" }, { - "codePostal": "59670", - "codeCommune": "59453", - "libelleAcheminement": "OUDEZEELE", - "nomCommune": "OUDEZEELE" + "codePostal": "27190", + "codeCommune": "27287", + "libelleAcheminement": "GLISOLLES", + "nomCommune": "GLISOLLES" }, { - "codePostal": "54800", - "codeCommune": "54535", - "libelleAcheminement": "TRONVILLE", - "nomCommune": "TRONVILLE" + "codePostal": "14740", + "codeCommune": "14610", + "libelleAcheminement": "ST MANVIEU NORREY", + "nomCommune": "ST MANVIEU NORREY" }, { - "codePostal": "19150", - "codeCommune": "19235", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "16200", + "codeCommune": "16243", + "libelleAcheminement": "NERCILLAC", + "nomCommune": "NERCILLAC" }, { - "codePostal": "21350", - "codeCommune": "21707", - "libelleAcheminement": "VILLY EN AUXOIS", - "nomCommune": "VILLY EN AUXOIS" + "codePostal": "27150", + "codeCommune": "27310", + "libelleAcheminement": "HACQUEVILLE", + "nomCommune": "HACQUEVILLE" }, { - "codePostal": "59670", - "codeCommune": "59454", - "libelleAcheminement": "OXELAERE", - "nomCommune": "OXELAERE" + "codePostal": "27170", + "codeCommune": "27290", + "libelleAcheminement": "GOUPIL OTHON", + "nomCommune": "GOUPIL OTHON" }, { - "codePostal": "54112", - "codeCommune": "54538", - "libelleAcheminement": "URUFFE", - "nomCommune": "URUFFE" + "codePostal": "14710", + "codeCommune": "14622", + "libelleAcheminement": "ST MARTIN DE BLAGNY", + "nomCommune": "ST MARTIN DE BLAGNY" }, { - "codePostal": "19290", - "codeCommune": "19238", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "16270", + "codeCommune": "16245", + "libelleAcheminement": "NIEUIL", + "nomCommune": "NIEUIL" }, { - "codePostal": "21350", - "codeCommune": "21710", - "libelleAcheminement": "VITTEAUX", - "nomCommune": "VITTEAUX" + "codePostal": "27700", + "codeCommune": "27315", + "libelleAcheminement": "HARQUENCY", + "nomCommune": "HARQUENCY" }, { - "codePostal": "59190", - "codeCommune": "59469", - "libelleAcheminement": "PRADELLES", - "nomCommune": "PRADELLES" + "codePostal": "27580", + "codeCommune": "27291", + "libelleAcheminement": "GOURNAY LE GUERIN", + "nomCommune": "GOURNAY LE GUERIN" }, { - "codePostal": "54480", - "codeCommune": "54540", - "libelleAcheminement": "VAL ET CHATILLON", - "nomCommune": "VAL ET CHATILLON" + "codePostal": "14220", + "codeCommune": "14635", + "libelleAcheminement": "ST OMER", + "nomCommune": "ST OMER" }, { - "codePostal": "19230", - "codeCommune": "19243", - "libelleAcheminement": "ST SORNIN LAVOLPS", - "nomCommune": "ST SORNIN LAVOLPS" + "codePostal": "16210", + "codeCommune": "16252", + "libelleAcheminement": "ORIVAL", + "nomCommune": "ORIVAL" }, { - "codePostal": "21400", - "codeCommune": "21711", - "libelleAcheminement": "VIX", - "nomCommune": "VIX" + "codePostal": "27430", + "codeCommune": "27330", + "libelleAcheminement": "HERQUEVILLE", + "nomCommune": "HERQUEVILLE" }, { - "codePostal": "59380", - "codeCommune": "59478", - "libelleAcheminement": "QUAEDYPRE", - "nomCommune": "QUAEDYPRE" + "codePostal": "27800", + "codeCommune": "27311", + "libelleAcheminement": "HARCOURT", + "nomCommune": "HARCOURT" }, { - "codePostal": "54910", - "codeCommune": "54542", - "libelleAcheminement": "VALLEROY", - "nomCommune": "VALLEROY" + "codePostal": "14490", + "codeCommune": "14643", + "libelleAcheminement": "ST PAUL DU VERNAY", + "nomCommune": "ST PAUL DU VERNAY" }, { - "codePostal": "19250", - "codeCommune": "19244", - "libelleAcheminement": "ST SULPICE LES BOIS", - "nomCommune": "ST SULPICE LES BOIS" + "codePostal": "16250", + "codeCommune": "16263", + "libelleAcheminement": "PLASSAC ROUFFIAC", + "nomCommune": "PLASSAC ROUFFIAC" }, { - "codePostal": "21640", - "codeCommune": "21716", - "libelleAcheminement": "VOUGEOT", - "nomCommune": "VOUGEOT" + "codePostal": "27860", + "codeCommune": "27333", + "libelleAcheminement": "HEUDICOURT", + "nomCommune": "HEUDICOURT" }, { - "codePostal": "59243", - "codeCommune": "59479", - "libelleAcheminement": "QUAROUBLE", - "nomCommune": "QUAROUBLE" + "codePostal": "27370", + "codeCommune": "27313", + "libelleAcheminement": "LA HARENGERE", + "nomCommune": "LA HARENGERE" }, { - "codePostal": "54500", - "codeCommune": "54547", - "libelleAcheminement": "VANDOEUVRE LES NANCY", - "nomCommune": "VANDOEUVRE LES NANCY" + "codePostal": "14670", + "codeCommune": "14651", + "libelleAcheminement": "ST PIERRE DU JONQUET", + "nomCommune": "ST PIERRE DU JONQUET" }, { - "codePostal": "19510", - "codeCommune": "19250", - "libelleAcheminement": "SALON LA TOUR", - "nomCommune": "SALON LA TOUR" + "codePostal": "16490", + "codeCommune": "16264", + "libelleAcheminement": "PLEUVILLE", + "nomCommune": "PLEUVILLE" }, { - "codePostal": "22100", - "codeCommune": "22003", - "libelleAcheminement": "AUCALEUC", - "nomCommune": "AUCALEUC" + "codePostal": "27310", + "codeCommune": "27340", + "libelleAcheminement": "HONGUEMARE GUENOUVILLE", + "nomCommune": "HONGUEMARE GUENOUVILLE" }, { - "codePostal": "59269", - "codeCommune": "59480", - "libelleAcheminement": "QUERENAING", - "nomCommune": "QUERENAING" + "codePostal": "27350", + "codeCommune": "27317", + "libelleAcheminement": "LA HAYE AUBREE", + "nomCommune": "LA HAYE AUBREE" }, { - "codePostal": "54110", - "codeCommune": "54549", - "libelleAcheminement": "VARANGEVILLE", - "nomCommune": "VARANGEVILLE" + "codePostal": "14140", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "19220", - "codeCommune": "19258", - "libelleAcheminement": "SERVIERES LE CHATEAU", - "nomCommune": "SERVIERES LE CHATEAU" + "codePostal": "16150", + "codeCommune": "16270", + "libelleAcheminement": "PRESSIGNAC", + "nomCommune": "PRESSIGNAC" }, { - "codePostal": "22140", - "codeCommune": "22006", - "libelleAcheminement": "BERHET", - "nomCommune": "BERHET" + "codePostal": "27930", + "codeCommune": "27347", + "libelleAcheminement": "HUEST", + "nomCommune": "HUEST" }, { - "codePostal": "59554", - "codeCommune": "59488", - "libelleAcheminement": "RAILLENCOURT STE OLLE", - "nomCommune": "RAILLENCOURT STE OLLE" + "codePostal": "27400", + "codeCommune": "27321", + "libelleAcheminement": "LA HAYE LE COMTE", + "nomCommune": "LA HAYE LE COMTE" }, { - "codePostal": "54840", - "codeCommune": "54557", - "libelleAcheminement": "BOIS DE HAYE", - "nomCommune": "BOIS DE HAYE" + "codePostal": "14140", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "19170", - "codeCommune": "19265", - "libelleAcheminement": "TARNAC", - "nomCommune": "TARNAC" + "codePostal": "16200", + "codeCommune": "16277", + "libelleAcheminement": "REPARSAC", + "nomCommune": "REPARSAC" }, { - "codePostal": "22100", - "codeCommune": "22008", - "libelleAcheminement": "BOBITAL", - "nomCommune": "BOBITAL" + "codePostal": "27110", + "codeCommune": "27354", + "libelleAcheminement": "IVILLE", + "nomCommune": "IVILLE" }, { - "codePostal": "59177", - "codeCommune": "59493", - "libelleAcheminement": "RAMOUSIES", - "nomCommune": "RAMOUSIES" + "codePostal": "27800", + "codeCommune": "27325", + "libelleAcheminement": "HECMANVILLE", + "nomCommune": "HECMANVILLE" }, { - "codePostal": "54290", - "codeCommune": "54559", - "libelleAcheminement": "VELLE SUR MOSELLE", - "nomCommune": "VELLE SUR MOSELLE" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "19200", - "codeCommune": "19275", - "libelleAcheminement": "USSEL", - "nomCommune": "USSEL" + "codePostal": "16320", + "codeCommune": "16283", + "libelleAcheminement": "RONSENAC", + "nomCommune": "RONSENAC" }, { - "codePostal": "22160", - "codeCommune": "22024", - "libelleAcheminement": "CALANHEL", - "nomCommune": "CALANHEL" + "codePostal": "27220", + "codeCommune": "27360", + "libelleAcheminement": "JUMELLES", + "nomCommune": "JUMELLES" }, { - "codePostal": "59245", - "codeCommune": "59495", - "libelleAcheminement": "RECQUIGNIES", - "nomCommune": "RECQUIGNIES" + "codePostal": "27630", + "codeCommune": "27331", + "libelleAcheminement": "HEUBECOURT HARICOURT", + "nomCommune": "HEUBECOURT HARICOURT" }, { - "codePostal": "54620", - "codeCommune": "54568", - "libelleAcheminement": "VILLE AU MONTOIS", - "nomCommune": "VILLE AU MONTOIS" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "19140", - "codeCommune": "19276", - "libelleAcheminement": "UZERCHE", - "nomCommune": "UZERCHE" + "codePostal": "16170", + "codeCommune": "16286", + "libelleAcheminement": "ROUILLAC", + "nomCommune": "ROUILLAC" }, { - "codePostal": "22160", - "codeCommune": "22025", - "libelleAcheminement": "CALLAC DE BRETAGNE", - "nomCommune": "CALLAC" + "codePostal": "27350", + "codeCommune": "27363", + "libelleAcheminement": "LE LANDIN", + "nomCommune": "LE LANDIN" }, { - "codePostal": "59550", - "codeCommune": "59503", - "libelleAcheminement": "ROBERSART", - "nomCommune": "ROBERSART" + "codePostal": "27700", + "codeCommune": "27337", + "libelleAcheminement": "HEUQUEVILLE", + "nomCommune": "HEUQUEVILLE" }, { - "codePostal": "54210", - "codeCommune": "54571", - "libelleAcheminement": "VILLE EN VERMOIS", - "nomCommune": "VILLE EN VERMOIS" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "21121", - "codeCommune": "21003", - "libelleAcheminement": "AHUY", - "nomCommune": "AHUY" + "codePostal": "16170", + "codeCommune": "16286", + "libelleAcheminement": "ROUILLAC", + "nomCommune": "ROUILLAC" }, { - "codePostal": "22100", - "codeCommune": "22026", - "libelleAcheminement": "CALORGUEN", - "nomCommune": "CALORGUEN" + "codePostal": "27560", + "codeCommune": "27367", + "libelleAcheminement": "LIEUREY", + "nomCommune": "LIEUREY" }, { - "codePostal": "59730", - "codeCommune": "59506", - "libelleAcheminement": "ROMERIES", - "nomCommune": "ROMERIES" + "codePostal": "27400", + "codeCommune": "27339", + "libelleAcheminement": "HONDOUVILLE", + "nomCommune": "HONDOUVILLE" }, { - "codePostal": "54380", - "codeCommune": "54573", - "libelleAcheminement": "VILLERS EN HAYE", - "nomCommune": "VILLERS EN HAYE" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "21700", - "codeCommune": "21022", - "libelleAcheminement": "ARGILLY", - "nomCommune": "ARGILLY" + "codePostal": "16170", + "codeCommune": "16286", + "libelleAcheminement": "ROUILLAC", + "nomCommune": "ROUILLAC" }, { - "codePostal": "22450", - "codeCommune": "22028", - "libelleAcheminement": "CAMLEZ", - "nomCommune": "CAMLEZ" + "codePostal": "27150", + "codeCommune": "27372", + "libelleAcheminement": "LONGCHAMPS", + "nomCommune": "LONGCHAMPS" }, { - "codePostal": "59230", - "codeCommune": "59511", - "libelleAcheminement": "ROSULT", - "nomCommune": "ROSULT" + "codePostal": "27210", + "codeCommune": "27361", + "libelleAcheminement": "LA LANDE ST LEGER", + "nomCommune": "LA LANDE ST LEGER" }, { - "codePostal": "54760", - "codeCommune": "54577", - "libelleAcheminement": "VILLERS LES MOIVRONS", - "nomCommune": "VILLERS LES MOIVRONS" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "21450", - "codeCommune": "21043", - "libelleAcheminement": "BAIGNEUX LES JUIFS", - "nomCommune": "BAIGNEUX LES JUIFS" + "codePostal": "16220", + "codeCommune": "16290", + "libelleAcheminement": "ROUZEDE", + "nomCommune": "ROUZEDE" }, { - "codePostal": "22300", - "codeCommune": "22030", - "libelleAcheminement": "CAOUENNEC LANVEZEAC", - "nomCommune": "CAOUENNEC LANVEZEAC" + "codePostal": "27150", + "codeCommune": "27379", + "libelleAcheminement": "MAINNEVILLE", + "nomCommune": "MAINNEVILLE" }, { - "codePostal": "59258", - "codeCommune": "59517", - "libelleAcheminement": "LES RUES DES VIGNES", - "nomCommune": "LES RUES DES VIGNES" + "codePostal": "27220", + "codeCommune": "27368", + "libelleAcheminement": "LIGNEROLLES", + "nomCommune": "LIGNEROLLES" }, { - "codePostal": "54190", - "codeCommune": "54580", - "libelleAcheminement": "VILLERUPT", - "nomCommune": "VILLERUPT" + "codePostal": "14400", + "codeCommune": "14663", + "libelleAcheminement": "ST VIGOR LE GRAND", + "nomCommune": "ST VIGOR LE GRAND" }, { - "codePostal": "21330", - "codeCommune": "21044", - "libelleAcheminement": "BALOT", - "nomCommune": "BALOT" + "codePostal": "16600", + "codeCommune": "16291", + "libelleAcheminement": "RUELLE SUR TOUVRE", + "nomCommune": "RUELLE SUR TOUVRE" }, { - "codePostal": "22350", - "codeCommune": "22036", - "libelleAcheminement": "LA CHAPELLE BLANCHE", - "nomCommune": "LA CHAPELLE BLANCHE" + "codePostal": "27370", + "codeCommune": "27382", + "libelleAcheminement": "MANDEVILLE", + "nomCommune": "MANDEVILLE" }, { - "codePostal": "59554", - "codeCommune": "59521", - "libelleAcheminement": "SAILLY LEZ CAMBRAI", - "nomCommune": "SAILLY LEZ CAMBRAI" + "codePostal": "27480", + "codeCommune": "27369", + "libelleAcheminement": "LILLY", + "nomCommune": "LILLY" }, { - "codePostal": "54840", - "codeCommune": "54583", - "libelleAcheminement": "VILLEY LE SEC", - "nomCommune": "VILLEY LE SEC" + "codePostal": "14240", + "codeCommune": "14664", + "libelleAcheminement": "SALLEN", + "nomCommune": "SALLEN" }, { - "codePostal": "21460", - "codeCommune": "21047", - "libelleAcheminement": "BARD LES EPOISSES", - "nomCommune": "BARD LES EPOISSES" + "codePostal": "16700", + "codeCommune": "16292", + "libelleAcheminement": "RUFFEC", + "nomCommune": "RUFFEC" }, { - "codePostal": "22140", - "codeCommune": "22041", - "libelleAcheminement": "COATASCORN", - "nomCommune": "COATASCORN" + "codePostal": "27500", + "codeCommune": "27385", + "libelleAcheminement": "MANNEVILLE SUR RISLE", + "nomCommune": "MANNEVILLE SUR RISLE" }, { - "codePostal": "59262", - "codeCommune": "59523", - "libelleAcheminement": "SAINGHIN EN MELANTOIS", - "nomCommune": "SAINGHIN EN MELANTOIS" + "codePostal": "27400", + "codeCommune": "27375", + "libelleAcheminement": "LOUVIERS", + "nomCommune": "LOUVIERS" }, { - "codePostal": "54300", - "codeCommune": "54588", - "libelleAcheminement": "VITRIMONT", - "nomCommune": "VITRIMONT" + "codePostal": "14330", + "codeCommune": "14668", + "libelleAcheminement": "SAONNET", + "nomCommune": "SAONNET" }, { - "codePostal": "21510", - "codeCommune": "21052", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "16230", + "codeCommune": "16300", + "libelleAcheminement": "VAL DE BONNIEURE", + "nomCommune": "VAL DE BONNIEURE" }, { - "codePostal": "22450", - "codeCommune": "22042", - "libelleAcheminement": "COATREVEN", - "nomCommune": "COATREVEN" + "codePostal": "27390", + "codeCommune": "27404", + "libelleAcheminement": "MESNIL ROUSSET", + "nomCommune": "MESNIL ROUSSET" }, { - "codePostal": "59350", - "codeCommune": "59527", - "libelleAcheminement": "ST ANDRE LEZ LILLE", - "nomCommune": "ST ANDRE LEZ LILLE" + "codePostal": "27300", + "codeCommune": "27381", + "libelleAcheminement": "MALOUY", + "nomCommune": "MALOUY" }, { - "codePostal": "54260", - "codeCommune": "54590", - "libelleAcheminement": "VIVIERS SUR CHIERS", - "nomCommune": "VIVIERS SUR CHIERS" + "codePostal": "14240", + "codeCommune": "14672", + "libelleAcheminement": "VAL DE DROME", + "nomCommune": "VAL DE DROME" }, { - "codePostal": "21310", - "codeCommune": "21056", - "libelleAcheminement": "BEIRE LE CHATEL", - "nomCommune": "BEIRE LE CHATEL" + "codePostal": "16230", + "codeCommune": "16300", + "libelleAcheminement": "VAL DE BONNIEURE", + "nomCommune": "VAL DE BONNIEURE" }, { - "codePostal": "22330", - "codeCommune": "22046", - "libelleAcheminement": "LE MENE", - "nomCommune": "LE MENE" + "codePostal": "27150", + "codeCommune": "27405", + "libelleAcheminement": "MESNIL SOUS VIENNE", + "nomCommune": "MESNIL SOUS VIENNE" }, { - "codePostal": "59360", - "codeCommune": "59531", - "libelleAcheminement": "ST BENIN", - "nomCommune": "ST BENIN" + "codePostal": "27680", + "codeCommune": "27388", + "libelleAcheminement": "MARAIS VERNIER", + "nomCommune": "MARAIS VERNIER" }, { - "codePostal": "54260", - "codeCommune": "54590", - "libelleAcheminement": "VIVIERS SUR CHIERS", - "nomCommune": "VIVIERS SUR CHIERS" + "codePostal": "14710", + "codeCommune": "14681", + "libelleAcheminement": "SURRAIN", + "nomCommune": "SURRAIN" }, { - "codePostal": "21510", - "codeCommune": "21061", - "libelleAcheminement": "BELLENOD SUR SEINE", - "nomCommune": "BELLENOD SUR SEINE" + "codePostal": "16230", + "codeCommune": "16300", + "libelleAcheminement": "VAL DE BONNIEURE", + "nomCommune": "VAL DE BONNIEURE" }, { - "codePostal": "22100", - "codeCommune": "22050", - "libelleAcheminement": "DINAN", - "nomCommune": "DINAN" + "codePostal": "27440", + "codeCommune": "27407", + "libelleAcheminement": "MESNIL VERCLIVES", + "nomCommune": "MESNIL VERCLIVES" }, { - "codePostal": "59620", - "codeCommune": "59542", - "libelleAcheminement": "ST REMY CHAUSSEE", - "nomCommune": "ST REMY CHAUSSEE" + "codePostal": "27110", + "codeCommune": "27389", + "libelleAcheminement": "MARBEUF", + "nomCommune": "MARBEUF" }, { - "codePostal": "54260", - "codeCommune": "54590", - "libelleAcheminement": "VIVIERS SUR CHIERS", - "nomCommune": "VIVIERS SUR CHIERS" + "codePostal": "14940", + "codeCommune": "14698", + "libelleAcheminement": "TOUFFREVILLE", + "nomCommune": "TOUFFREVILLE" }, { - "codePostal": "21110", - "codeCommune": "21067", - "libelleAcheminement": "BESSEY LES CITEAUX", - "nomCommune": "BESSEY LES CITEAUX" + "codePostal": "16300", + "codeCommune": "16301", + "libelleAcheminement": "ST AULAIS LA CHAPELLE", + "nomCommune": "ST AULAIS LA CHAPELLE" }, { - "codePostal": "22520", - "codeCommune": "22055", - "libelleAcheminement": "BINIC ETABLES SUR MER", - "nomCommune": "BINIC ETABLES SUR MER" + "codePostal": "27340", + "codeCommune": "27412", + "libelleAcheminement": "TERRES DE BORD", + "nomCommune": "TERRES DE BORD" }, { - "codePostal": "59268", - "codeCommune": "59552", - "libelleAcheminement": "SANCOURT", - "nomCommune": "SANCOURT" + "codePostal": "27210", + "codeCommune": "27393", + "libelleAcheminement": "MARTAINVILLE", + "nomCommune": "MARTAINVILLE" }, { - "codePostal": "54470", - "codeCommune": "54594", - "libelleAcheminement": "XAMMES", - "nomCommune": "XAMMES" + "codePostal": "14130", + "codeCommune": "14706", + "libelleAcheminement": "TOURVILLE EN AUGE", + "nomCommune": "TOURVILLE EN AUGE" }, { - "codePostal": "21320", - "codeCommune": "21068", - "libelleAcheminement": "BEUREY BAUGUAY", - "nomCommune": "BEUREY BAUGUAY" + "codePostal": "16170", + "codeCommune": "16312", + "libelleAcheminement": "ST CYBARDEAUX", + "nomCommune": "ST CYBARDEAUX" }, { - "codePostal": "22350", - "codeCommune": "22069", - "libelleAcheminement": "GUENROC", - "nomCommune": "GUENROC" + "codePostal": "27800", + "codeCommune": "27418", + "libelleAcheminement": "MORSAN", + "nomCommune": "MORSAN" }, { - "codePostal": "59320", - "codeCommune": "59566", - "libelleAcheminement": "SEQUEDIN", - "nomCommune": "SEQUEDIN" + "codePostal": "27340", + "codeCommune": "27394", + "libelleAcheminement": "MARTOT", + "nomCommune": "MARTOT" }, { - "codePostal": "54990", - "codeCommune": "54596", - "libelleAcheminement": "XEUILLEY", - "nomCommune": "XEUILLEY" + "codePostal": "14310", + "codeCommune": "14708", + "libelleAcheminement": "TRACY BOCAGE", + "nomCommune": "TRACY BOCAGE" }, { - "codePostal": "21440", - "codeCommune": "21085", - "libelleAcheminement": "BLIGNY LE SEC", - "nomCommune": "BLIGNY LE SEC" + "codePostal": "16230", + "codeCommune": "16326", + "libelleAcheminement": "ST GROUX", + "nomCommune": "ST GROUX" }, { - "codePostal": "22390", - "codeCommune": "22072", - "libelleAcheminement": "GURUNHUEL", - "nomCommune": "GURUNHUEL" + "codePostal": "27420", + "codeCommune": "27420", + "libelleAcheminement": "MOUFLAINES", + "nomCommune": "MOUFLAINES" }, { - "codePostal": "59190", - "codeCommune": "59577", - "libelleAcheminement": "STAPLE", - "nomCommune": "STAPLE" + "codePostal": "27400", + "codeCommune": "27403", + "libelleAcheminement": "LE MESNIL JOURDAIN", + "nomCommune": "LE MESNIL JOURDAIN" }, { - "codePostal": "54370", - "codeCommune": "54601", - "libelleAcheminement": "XURES", - "nomCommune": "XURES" + "codePostal": "14670", + "codeCommune": "14712", + "libelleAcheminement": "TROARN", + "nomCommune": "TROARN" }, { - "codePostal": "21250", - "codeCommune": "21089", - "libelleAcheminement": "BONNENCONTRE", - "nomCommune": "BONNENCONTRE" + "codePostal": "16190", + "codeCommune": "16334", + "libelleAcheminement": "ST MARTIAL", + "nomCommune": "ST MARTIAL" }, { - "codePostal": "22120", - "codeCommune": "22081", - "libelleAcheminement": "HILLION", - "nomCommune": "HILLION" + "codePostal": "27430", + "codeCommune": "27422", + "libelleAcheminement": "MUIDS", + "nomCommune": "MUIDS" }, { - "codePostal": "59242", - "codeCommune": "59586", - "libelleAcheminement": "TEMPLEUVE EN PEVELE", - "nomCommune": "TEMPLEUVE EN PEVELE" + "codePostal": "27650", + "codeCommune": "27406", + "libelleAcheminement": "MESNIL SUR L ESTREE", + "nomCommune": "MESNIL SUR L ESTREE" }, { - "codePostal": "55400", - "codeCommune": "55002", - "libelleAcheminement": "ABAUCOURT HAUTECOURT", - "nomCommune": "ABAUCOURT HAUTECOURT" + "codePostal": "14210", + "codeCommune": "14713", + "libelleAcheminement": "MONTILLIERES SUR ORNE", + "nomCommune": "MONTILLIERES SUR ORNE" }, { - "codePostal": "21360", - "codeCommune": "21091", - "libelleAcheminement": "BOUHEY", - "nomCommune": "BOUHEY" + "codePostal": "16170", + "codeCommune": "16339", + "libelleAcheminement": "VAL D AUGE", + "nomCommune": "VAL D AUGE" }, { - "codePostal": "22100", - "codeCommune": "22082", - "libelleAcheminement": "LE HINGLE", - "nomCommune": "LE HINGLE" + "codePostal": "27300", + "codeCommune": "27425", + "libelleAcheminement": "NASSANDRES SUR RISLE", + "nomCommune": "NASSANDRES SUR RISLE" }, { - "codePostal": "59224", - "codeCommune": "59589", - "libelleAcheminement": "THIANT", - "nomCommune": "THIANT" + "codePostal": "27510", + "codeCommune": "27408", + "libelleAcheminement": "MEZIERES EN VEXIN", + "nomCommune": "MEZIERES EN VEXIN" }, { - "codePostal": "55800", - "codeCommune": "55011", - "libelleAcheminement": "ANDERNAY", - "nomCommune": "ANDERNAY" + "codePostal": "14490", + "codeCommune": "14714", + "libelleAcheminement": "LE TRONQUAY", + "nomCommune": "LE TRONQUAY" }, { - "codePostal": "21260", - "codeCommune": "21096", - "libelleAcheminement": "BOUSSENOIS", - "nomCommune": "BOUSSENOIS" + "codePostal": "16170", + "codeCommune": "16339", + "libelleAcheminement": "VAL D AUGE", + "nomCommune": "VAL D AUGE" }, { - "codePostal": "22270", - "codeCommune": "22084", - "libelleAcheminement": "JUGON LES LACS COMMUNE NOUVELLE", - "nomCommune": "JUGON LES LACS COMMUNE NOUVELLE" + "codePostal": "27730", + "codeCommune": "27429", + "libelleAcheminement": "NEUILLY", + "nomCommune": "NEUILLY" }, { - "codePostal": "59141", - "codeCommune": "59593", - "libelleAcheminement": "THUN L EVEQUE", - "nomCommune": "THUN L EVEQUE" + "codePostal": "27220", + "codeCommune": "27421", + "libelleAcheminement": "MOUSSEAUX NEUVILLE", + "nomCommune": "MOUSSEAUX NEUVILLE" }, { - "codePostal": "55300", - "codeCommune": "55012", - "libelleAcheminement": "APREMONT LA FORET", - "nomCommune": "APREMONT LA FORET" + "codePostal": "14190", + "codeCommune": "14719", + "libelleAcheminement": "URVILLE", + "nomCommune": "URVILLE" }, { - "codePostal": "21560", - "codeCommune": "21105", - "libelleAcheminement": "BRESSEY SUR TILLE", - "nomCommune": "BRESSEY SUR TILLE" + "codePostal": "16470", + "codeCommune": "16341", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "22500", - "codeCommune": "22086", - "libelleAcheminement": "KERFOT", - "nomCommune": "KERFOT" + "codePostal": "27190", + "codeCommune": "27436", + "libelleAcheminement": "NOGENT LE SEC", + "nomCommune": "NOGENT LE SEC" }, { - "codePostal": "59141", - "codeCommune": "59595", - "libelleAcheminement": "THUN ST MARTIN", - "nomCommune": "THUN ST MARTIN" + "codePostal": "27650", + "codeCommune": "27423", + "libelleAcheminement": "MUZY", + "nomCommune": "MUZY" }, { - "codePostal": "55210", - "codeCommune": "55021", - "libelleAcheminement": "AVILLERS STE CROIX", - "nomCommune": "AVILLERS STE CROIX" + "codePostal": "14420", + "codeCommune": "14720", + "libelleAcheminement": "USSY", + "nomCommune": "USSY" }, { - "codePostal": "21490", - "codeCommune": "21107", - "libelleAcheminement": "BRETIGNY", - "nomCommune": "BRETIGNY" + "codePostal": "16460", + "codeCommune": "16356", + "libelleAcheminement": "ST SULPICE DE RUFFEC", + "nomCommune": "ST SULPICE DE RUFFEC" }, { - "codePostal": "22480", - "codeCommune": "22092", - "libelleAcheminement": "KERPERT", - "nomCommune": "KERPERT" + "codePostal": "27940", + "codeCommune": "27440", + "libelleAcheminement": "NOTRE DAME DE L ISLE", + "nomCommune": "NOTRE DAME DE L ISLE" }, { - "codePostal": "59554", - "codeCommune": "59597", - "libelleAcheminement": "TILLOY LEZ CAMBRAI", - "nomCommune": "TILLOY LEZ CAMBRAI" + "codePostal": "27190", + "codeCommune": "27424", + "libelleAcheminement": "NAGEL SEEZ MESNIL", + "nomCommune": "NAGEL SEEZ MESNIL" }, { - "codePostal": "55130", - "codeCommune": "55026", - "libelleAcheminement": "BADONVILLIERS GERAUVILLIERS", - "nomCommune": "BADONVILLIERS GERAUVILLIERS" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "21220", - "codeCommune": "21110", - "libelleAcheminement": "BROCHON", - "nomCommune": "BROCHON" + "codePostal": "16300", + "codeCommune": "16360", + "libelleAcheminement": "SALLES DE BARBEZIEUX", + "nomCommune": "SALLES DE BARBEZIEUX" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "27390", + "codeCommune": "27442", + "libelleAcheminement": "NOTRE DAME DU HAMEL", + "nomCommune": "NOTRE DAME DU HAMEL" }, { - "codePostal": "59229", - "codeCommune": "59605", - "libelleAcheminement": "UXEM", - "nomCommune": "UXEM" + "codePostal": "27550", + "codeCommune": "27425", + "libelleAcheminement": "NASSANDRES SUR RISLE", + "nomCommune": "NASSANDRES SUR RISLE" }, { - "codePostal": "55260", - "codeCommune": "55032", - "libelleAcheminement": "BAUDREMONT", - "nomCommune": "BAUDREMONT" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "21250", - "codeCommune": "21112", - "libelleAcheminement": "BROIN", - "nomCommune": "BROIN" + "codePostal": "16420", + "codeCommune": "16363", + "libelleAcheminement": "SAULGOND", + "nomCommune": "SAULGOND" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "27120", + "codeCommune": "27448", + "libelleAcheminement": "PACY SUR EURE", + "nomCommune": "PACY SUR EURE" }, { - "codePostal": "59300", - "codeCommune": "59606", - "libelleAcheminement": "VALENCIENNES", - "nomCommune": "VALENCIENNES" + "codePostal": "27330", + "codeCommune": "27431", + "libelleAcheminement": "LA NEUVE LYRE", + "nomCommune": "LA NEUVE LYRE" }, { - "codePostal": "55700", - "codeCommune": "55036", - "libelleAcheminement": "BEAUCLAIR", - "nomCommune": "BEAUCLAIR" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "21500", - "codeCommune": "21114", - "libelleAcheminement": "BUFFON", - "nomCommune": "BUFFON" + "codePostal": "16200", + "codeCommune": "16369", + "libelleAcheminement": "SIGOGNE", + "nomCommune": "SIGOGNE" }, { - "codePostal": "22450", - "codeCommune": "22101", - "libelleAcheminement": "LANGOAT", - "nomCommune": "LANGOAT" + "codePostal": "27130", + "codeCommune": "27457", + "libelleAcheminement": "PISEUX", + "nomCommune": "PISEUX" }, { - "codePostal": "59213", - "codeCommune": "59608", - "libelleAcheminement": "VENDEGIES SUR ECAILLON", - "nomCommune": "VENDEGIES SUR ECAILLON" + "codePostal": "27800", + "codeCommune": "27433", + "libelleAcheminement": "NEUVILLE SUR AUTHOU", + "nomCommune": "NEUVILLE SUR AUTHOU" }, { - "codePostal": "55250", - "codeCommune": "55038", - "libelleAcheminement": "BEAULIEU EN ARGONNE", - "nomCommune": "BEAULIEU EN ARGONNE" + "codePostal": "14400", + "codeCommune": "14728", + "libelleAcheminement": "VAUCELLES", + "nomCommune": "VAUCELLES" }, { - "codePostal": "21510", - "codeCommune": "21117", - "libelleAcheminement": "BUSSEAUT", - "nomCommune": "BUSSEAUT" + "codePostal": "16110", + "codeCommune": "16379", + "libelleAcheminement": "TAPONNAT FLEURIGNAC", + "nomCommune": "TAPONNAT FLEURIGNAC" }, { - "codePostal": "22360", - "codeCommune": "22106", - "libelleAcheminement": "LANGUEUX", - "nomCommune": "LANGUEUX" + "codePostal": "27170", + "codeCommune": "27466", + "libelleAcheminement": "LE PLESSIS STE OPPORTUNE", + "nomCommune": "LE PLESSIS STE OPPORTUNE" }, { - "codePostal": "59237", - "codeCommune": "59611", - "libelleAcheminement": "VERLINGHEM", - "nomCommune": "VERLINGHEM" + "codePostal": "27120", + "codeCommune": "27448", + "libelleAcheminement": "PACY SUR EURE", + "nomCommune": "PACY SUR EURE" }, { - "codePostal": "55100", - "codeCommune": "55042", - "libelleAcheminement": "BELLERAY", - "nomCommune": "BELLERAY" + "codePostal": "14170", + "codeCommune": "14735", + "libelleAcheminement": "VENDEUVRE", + "nomCommune": "VENDEUVRE" }, { - "codePostal": "21150", - "codeCommune": "21122", - "libelleAcheminement": "BUSSY LE GRAND", - "nomCommune": "BUSSY LE GRAND" + "codePostal": "16240", + "codeCommune": "16381", + "libelleAcheminement": "THEIL RABIER", + "nomCommune": "THEIL RABIER" }, { - "codePostal": "22610", - "codeCommune": "22111", - "libelleAcheminement": "LANMODEZ", - "nomCommune": "LANMODEZ" + "codePostal": "27360", + "codeCommune": "27470", + "libelleAcheminement": "PONT ST PIERRE", + "nomCommune": "PONT ST PIERRE" }, { - "codePostal": "59138", - "codeCommune": "59617", - "libelleAcheminement": "VIEUX MESNIL", - "nomCommune": "VIEUX MESNIL" + "codePostal": "27910", + "codeCommune": "27453", + "libelleAcheminement": "PERRIERS SUR ANDELLE", + "nomCommune": "PERRIERS SUR ANDELLE" }, { - "codePostal": "55270", - "codeCommune": "55065", - "libelleAcheminement": "BOUREUILLES", - "nomCommune": "BOUREUILLES" + "codePostal": "14790", + "codeCommune": "14738", + "libelleAcheminement": "VERSON", + "nomCommune": "VERSON" }, { - "codePostal": "21110", - "codeCommune": "21126", - "libelleAcheminement": "CESSEY SUR TILLE", - "nomCommune": "CESSEY SUR TILLE" + "codePostal": "16200", + "codeCommune": "16387", + "libelleAcheminement": "TRIAC LAUTRAIT", + "nomCommune": "TRIAC LAUTRAIT" }, { - "codePostal": "22480", - "codeCommune": "22115", - "libelleAcheminement": "LANRIVAIN", - "nomCommune": "LANRIVAIN" + "codePostal": "27940", + "codeCommune": "27473", + "libelleAcheminement": "PORT MORT", + "nomCommune": "PORT MORT" }, { - "codePostal": "59870", - "codeCommune": "59629", - "libelleAcheminement": "VRED", - "nomCommune": "VRED" + "codePostal": "27910", + "codeCommune": "27454", + "libelleAcheminement": "PERRUEL", + "nomCommune": "PERRUEL" }, { - "codePostal": "55190", - "codeCommune": "55066", - "libelleAcheminement": "BOVEE SUR BARBOURE", - "nomCommune": "BOVEE SUR BARBOURE" + "codePostal": "14114", + "codeCommune": "14739", + "libelleAcheminement": "VER SUR MER", + "nomCommune": "VER SUR MER" }, { - "codePostal": "21350", - "codeCommune": "21147", - "libelleAcheminement": "CHARNY", - "nomCommune": "CHARNY" + "codePostal": "16330", + "codeCommune": "16393", + "libelleAcheminement": "VARS", + "nomCommune": "VARS" }, { - "codePostal": "22170", - "codeCommune": "22116", - "libelleAcheminement": "LANRODEC", - "nomCommune": "LANRODEC" + "codePostal": "27930", + "codeCommune": "27489", + "libelleAcheminement": "REUILLY", + "nomCommune": "REUILLY" }, { - "codePostal": "59127", - "codeCommune": "59631", - "libelleAcheminement": "WALINCOURT SELVIGNY", - "nomCommune": "WALINCOURT SELVIGNY" + "codePostal": "27230", + "codeCommune": "27455", + "libelleAcheminement": "PIENCOURT", + "nomCommune": "PIENCOURT" }, { - "codePostal": "55500", - "codeCommune": "55067", - "libelleAcheminement": "BOVIOLLES", - "nomCommune": "BOVIOLLES" + "codePostal": "14290", + "codeCommune": "14740", + "libelleAcheminement": "LA VESPIERE FRIARDEL", + "nomCommune": "LA VESPIERE FRIARDEL" }, { - "codePostal": "21190", - "codeCommune": "21150", - "libelleAcheminement": "CHASSAGNE MONTRACHET", - "nomCommune": "CHASSAGNE MONTRACHET" + "codePostal": "16350", + "codeCommune": "16403", + "libelleAcheminement": "LE VIEUX CERIER", + "nomCommune": "LE VIEUX CERIER" }, { - "codePostal": "22410", - "codeCommune": "22117", - "libelleAcheminement": "LANTIC", - "nomCommune": "LANTIC" + "codePostal": "27350", + "codeCommune": "27500", + "libelleAcheminement": "ROUTOT", + "nomCommune": "ROUTOT" }, { - "codePostal": "59190", - "codeCommune": "59634", - "libelleAcheminement": "WALLON CAPPEL", - "nomCommune": "WALLON CAPPEL" + "codePostal": "27230", + "codeCommune": "27459", + "libelleAcheminement": "LES PLACES", + "nomCommune": "LES PLACES" }, { - "codePostal": "55120", - "codeCommune": "55068", - "libelleAcheminement": "BRABANT EN ARGONNE", - "nomCommune": "BRABANT EN ARGONNE" + "codePostal": "14170", + "codeCommune": "14742", + "libelleAcheminement": "VICQUES", + "nomCommune": "VICQUES" }, { - "codePostal": "21150", - "codeCommune": "21151", - "libelleAcheminement": "CHASSEY", - "nomCommune": "CHASSEY" + "codePostal": "16220", + "codeCommune": "16406", + "libelleAcheminement": "MOULINS SUR TARDOIRE", + "nomCommune": "MOULINS SUR TARDOIRE" }, { - "codePostal": "22100", - "codeCommune": "22118", - "libelleAcheminement": "LANVALLAY", - "nomCommune": "LANVALLAY" + "codePostal": "27250", + "codeCommune": "27508", + "libelleAcheminement": "ST ANTONIN DE SOMMAIRE", + "nomCommune": "ST ANTONIN DE SOMMAIRE" }, { - "codePostal": "59118", - "codeCommune": "59636", - "libelleAcheminement": "WAMBRECHIES", - "nomCommune": "WAMBRECHIES" + "codePostal": "27230", + "codeCommune": "27462", + "libelleAcheminement": "LE PLANQUAY", + "nomCommune": "LE PLANQUAY" }, { - "codePostal": "55100", - "codeCommune": "55073", - "libelleAcheminement": "BRAS SUR MEUSE", - "nomCommune": "BRAS SUR MEUSE" + "codePostal": "14430", + "codeCommune": "14743", + "libelleAcheminement": "VICTOT PONTFOL", + "nomCommune": "VICTOT PONTFOL" }, { - "codePostal": "21360", - "codeCommune": "21156", - "libelleAcheminement": "CHAUDENAY LE CHATEAU", - "nomCommune": "CHAUDENAY LE CHATEAU" + "codePostal": "16320", + "codeCommune": "16408", + "libelleAcheminement": "VILLEBOIS LAVALETTE", + "nomCommune": "VILLEBOIS LAVALETTE" }, { - "codePostal": "22230", - "codeCommune": "22122", - "libelleAcheminement": "LAURENAN", - "nomCommune": "LAURENAN" + "codePostal": "27270", + "codeCommune": "27514", + "libelleAcheminement": "ST AUBIN DU THENNEY", + "nomCommune": "ST AUBIN DU THENNEY" }, { - "codePostal": "59139", - "codeCommune": "59648", - "libelleAcheminement": "WATTIGNIES", - "nomCommune": "WATTIGNIES" + "codePostal": "27180", + "codeCommune": "27464", + "libelleAcheminement": "LE PLESSIS GROHAN", + "nomCommune": "LE PLESSIS GROHAN" }, { - "codePostal": "55150", - "codeCommune": "55076", - "libelleAcheminement": "BREHEVILLE", - "nomCommune": "BREHEVILLE" + "codePostal": "14130", + "codeCommune": "14748", + "libelleAcheminement": "VIEUX BOURG", + "nomCommune": "VIEUX BOURG" }, { - "codePostal": "21400", - "codeCommune": "21165", - "libelleAcheminement": "CHEMIN D AISEY", - "nomCommune": "CHEMIN D AISEY" + "codePostal": "16240", + "codeCommune": "16409", + "libelleAcheminement": "VILLEFAGNAN", + "nomCommune": "VILLEFAGNAN" }, { - "codePostal": "22230", - "codeCommune": "22133", - "libelleAcheminement": "LOSCOUET SUR MEU", - "nomCommune": "LOSCOUET SUR MEU" + "codePostal": "27300", + "codeCommune": "27516", + "libelleAcheminement": "TREIS SANTS EN OUCHE", + "nomCommune": "TREIS SANTS EN OUCHE" }, { - "codePostal": "59470", - "codeCommune": "59666", - "libelleAcheminement": "ZEGERSCAPPEL", - "nomCommune": "ZEGERSCAPPEL" + "codePostal": "27120", + "codeCommune": "27465", + "libelleAcheminement": "LE PLESSIS HEBERT", + "nomCommune": "LE PLESSIS HEBERT" }, { - "codePostal": "55700", - "codeCommune": "55083", - "libelleAcheminement": "BROUENNES", - "nomCommune": "BROUENNES" + "codePostal": "14700", + "codeCommune": "14751", + "libelleAcheminement": "VIGNATS", + "nomCommune": "VIGNATS" }, { - "codePostal": "21300", - "codeCommune": "21166", - "libelleAcheminement": "CHENOVE", - "nomCommune": "CHENOVE" + "codePostal": "16400", + "codeCommune": "16418", + "libelleAcheminement": "VOEUIL ET GIGET", + "nomCommune": "VOEUIL ET GIGET" }, { - "codePostal": "22700", - "codeCommune": "22134", - "libelleAcheminement": "LOUANNEC", - "nomCommune": "LOUANNEC" + "codePostal": "27600", + "codeCommune": "27517", + "libelleAcheminement": "ST AUBIN SUR GAILLON", + "nomCommune": "ST AUBIN SUR GAILLON" }, { - "codePostal": "59272", - "codeCommune": "59670", - "libelleAcheminement": "DON", - "nomCommune": "DON" + "codePostal": "27430", + "codeCommune": "27471", + "libelleAcheminement": "PORTE DE SEINE", + "nomCommune": "PORTE DE SEINE" }, { - "codePostal": "55400", - "codeCommune": "55094", - "libelleAcheminement": "BUZY DARMONT", - "nomCommune": "BUZY DARMONT" + "codePostal": "14420", + "codeCommune": "14753", + "libelleAcheminement": "VILLERS CANIVET", + "nomCommune": "VILLERS CANIVET" }, { - "codePostal": "21200", - "codeCommune": "21170", - "libelleAcheminement": "CHEVIGNY EN VALIERE", - "nomCommune": "CHEVIGNY EN VALIERE" + "codePostal": "16220", + "codeCommune": "16421", + "libelleAcheminement": "VOUTHON", + "nomCommune": "VOUTHON" }, { - "codePostal": "22160", - "codeCommune": "22138", - "libelleAcheminement": "MAEL PESTIVIEN", - "nomCommune": "MAEL PESTIVIEN" + "codePostal": "27950", + "codeCommune": "27525", + "libelleAcheminement": "STE COLOMBE PRES VERNON", + "nomCommune": "STE COLOMBE PRES VERNON" }, { - "codePostal": "60600", - "codeCommune": "60008", - "libelleAcheminement": "AIRION", - "nomCommune": "AIRION" + "codePostal": "27190", + "codeCommune": "27472", + "libelleAcheminement": "PORTES", + "nomCommune": "PORTES" }, { - "codePostal": "55270", - "codeCommune": "55103", - "libelleAcheminement": "CHARPENTRY", - "nomCommune": "CHARPENTRY" + "codePostal": "14310", + "codeCommune": "14760", + "libelleAcheminement": "VILLY BOCAGE", + "nomCommune": "VILLY BOCAGE" }, { - "codePostal": "21800", - "codeCommune": "21171", - "libelleAcheminement": "CHEVIGNY ST SAUVEUR", - "nomCommune": "CHEVIGNY ST SAUVEUR" + "codePostal": "16110", + "codeCommune": "16425", + "libelleAcheminement": "YVRAC ET MALLEYRAND", + "nomCommune": "YVRAC ET MALLEYRAND" }, { - "codePostal": "22550", - "codeCommune": "22143", - "libelleAcheminement": "MATIGNON", - "nomCommune": "MATIGNON" + "codePostal": "27190", + "codeCommune": "27535", + "libelleAcheminement": "ST ELIER", + "nomCommune": "ST ELIER" }, { - "codePostal": "60000", - "codeCommune": "60009", - "libelleAcheminement": "ALLONNE", - "nomCommune": "ALLONNE" + "codePostal": "27500", + "codeCommune": "27476", + "libelleAcheminement": "LES PREAUX", + "nomCommune": "LES PREAUX" }, { - "codePostal": "55130", - "codeCommune": "55104", - "libelleAcheminement": "CHASSEY BEAUPRE", - "nomCommune": "CHASSEY BEAUPRE" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "21270", - "codeCommune": "21175", - "libelleAcheminement": "CIREY LES PONTAILLER", - "nomCommune": "CIREY LES PONTAILLER" + "codePostal": "17520", + "codeCommune": "17016", + "libelleAcheminement": "ARCHIAC", + "nomCommune": "ARCHIAC" }, { - "codePostal": "22220", - "codeCommune": "22152", - "libelleAcheminement": "MINIHY TREGUIER", - "nomCommune": "MINIHY TREGUIER" + "codePostal": "27450", + "codeCommune": "27542", + "libelleAcheminement": "ST GEORGES DU VIEVRE", + "nomCommune": "ST GEORGES DU VIEVRE" }, { - "codePostal": "60310", - "codeCommune": "60011", - "libelleAcheminement": "AMY", - "nomCommune": "AMY" + "codePostal": "27510", + "codeCommune": "27477", + "libelleAcheminement": "PRESSAGNY L ORGUEILLEUX", + "nomCommune": "PRESSAGNY L ORGUEILLEUX" }, { - "codePostal": "55600", - "codeCommune": "55109", - "libelleAcheminement": "CHAUVENCY LE CHATEAU", - "nomCommune": "CHAUVENCY LE CHATEAU" + "codePostal": "15100", + "codeCommune": "15004", + "libelleAcheminement": "ANDELAT", + "nomCommune": "ANDELAT" }, { - "codePostal": "21220", - "codeCommune": "21178", - "libelleAcheminement": "VALFORET", - "nomCommune": "VALFORET" + "codePostal": "17520", + "codeCommune": "17020", + "libelleAcheminement": "ARTHENAC", + "nomCommune": "ARTHENAC" }, { - "codePostal": "22510", - "codeCommune": "22153", - "libelleAcheminement": "MONCONTOUR DE BRETAGNE", - "nomCommune": "MONCONTOUR" + "codePostal": "27710", + "codeCommune": "27543", + "libelleAcheminement": "ST GEORGES MOTEL", + "nomCommune": "ST GEORGES MOTEL" }, { - "codePostal": "60120", - "codeCommune": "60017", - "libelleAcheminement": "ANSAUVILLERS", - "nomCommune": "ANSAUVILLERS" + "codePostal": "27610", + "codeCommune": "27493", + "libelleAcheminement": "ROMILLY SUR ANDELLE", + "nomCommune": "ROMILLY SUR ANDELLE" }, { - "codePostal": "55600", - "codeCommune": "55110", - "libelleAcheminement": "CHAUVENCY ST HUBERT", - "nomCommune": "CHAUVENCY ST HUBERT" + "codePostal": "15150", + "codeCommune": "15011", + "libelleAcheminement": "ARNAC", + "nomCommune": "ARNAC" }, { - "codePostal": "21490", - "codeCommune": "21179", - "libelleAcheminement": "CLENAY", - "nomCommune": "CLENAY" + "codePostal": "17770", + "codeCommune": "17023", + "libelleAcheminement": "AUJAC", + "nomCommune": "AUJAC" }, { - "codePostal": "22510", - "codeCommune": "22165", - "libelleAcheminement": "PENGUILY", - "nomCommune": "PENGUILY" + "codePostal": "27220", + "codeCommune": "27544", + "libelleAcheminement": "ST GERMAIN DE FRESNEY", + "nomCommune": "ST GERMAIN DE FRESNEY" }, { - "codePostal": "60400", - "codeCommune": "60021", - "libelleAcheminement": "APPILLY", - "nomCommune": "APPILLY" + "codePostal": "27110", + "codeCommune": "27498", + "libelleAcheminement": "ROUGE PERRIERS", + "nomCommune": "ROUGE PERRIERS" }, { - "codePostal": "55160", - "codeCommune": "55121", - "libelleAcheminement": "COMBRES SOUS LES COTES", - "nomCommune": "COMBRES SOUS LES COTES" + "codePostal": "15500", + "codeCommune": "15013", + "libelleAcheminement": "AURIAC L EGLISE", + "nomCommune": "AURIAC L EGLISE" }, { - "codePostal": "21230", - "codeCommune": "21181", - "libelleAcheminement": "CLOMOT", - "nomCommune": "CLOMOT" + "codePostal": "17800", + "codeCommune": "17027", + "libelleAcheminement": "AVY", + "nomCommune": "AVY" }, { - "codePostal": "22700", - "codeCommune": "22168", - "libelleAcheminement": "PERROS GUIREC", - "nomCommune": "PERROS GUIREC" + "codePostal": "27450", + "codeCommune": "27550", + "libelleAcheminement": "ST GREGOIRE DU VIEVRE", + "nomCommune": "ST GREGOIRE DU VIEVRE" }, { - "codePostal": "60400", - "codeCommune": "60037", - "libelleAcheminement": "BABOEUF", - "nomCommune": "BABOEUF" + "codePostal": "27930", + "codeCommune": "27504", + "libelleAcheminement": "SACQUENVILLE", + "nomCommune": "SACQUENVILLE" }, { - "codePostal": "55170", - "codeCommune": "55132", - "libelleAcheminement": "COUSANCES LES FORGES", - "nomCommune": "COUSANCES LES FORGES" + "codePostal": "15240", + "codeCommune": "15015", + "libelleAcheminement": "AUZERS", + "nomCommune": "AUZERS" }, { - "codePostal": "21110", - "codeCommune": "21183", - "libelleAcheminement": "COLLONGES ET PREMIERES", - "nomCommune": "COLLONGES ET PREMIERES" + "codePostal": "17440", + "codeCommune": "17028", + "libelleAcheminement": "AYTRE", + "nomCommune": "AYTRE" }, { - "codePostal": "22130", - "codeCommune": "22172", - "libelleAcheminement": "PLANCOET", - "nomCommune": "PLANCOET" + "codePostal": "27390", + "codeCommune": "27556", + "libelleAcheminement": "ST LAURENT DU TENCEMENT", + "nomCommune": "ST LAURENT DU TENCEMENT" }, { - "codePostal": "60930", - "codeCommune": "60041", - "libelleAcheminement": "BAILLEUL SUR THERAIN", - "nomCommune": "BAILLEUL SUR THERAIN" + "codePostal": "27390", + "codeCommune": "27505", + "libelleAcheminement": "ST AGNAN DE CERNIERES", + "nomCommune": "ST AGNAN DE CERNIERES" }, { - "codePostal": "55290", - "codeCommune": "55133", - "libelleAcheminement": "COUVERTPUIS", - "nomCommune": "COUVERTPUIS" + "codePostal": "15270", + "codeCommune": "15038", + "libelleAcheminement": "CHAMPS SUR TARENTAINE MARCHAL", + "nomCommune": "CHAMPS SUR TARENTAINE MARCHAL" }, { - "codePostal": "21700", - "codeCommune": "21194", - "libelleAcheminement": "CORGOLOIN", - "nomCommune": "CORGOLOIN" + "codePostal": "17290", + "codeCommune": "17032", + "libelleAcheminement": "BALLON", + "nomCommune": "BALLON" }, { - "codePostal": "22170", - "codeCommune": "22182", - "libelleAcheminement": "PLELO", - "nomCommune": "PLELO" + "codePostal": "27160", + "codeCommune": "27578", + "libelleAcheminement": "STE MARIE D ATTEZ", + "nomCommune": "STE MARIE D ATTEZ" }, { - "codePostal": "60250", - "codeCommune": "60044", - "libelleAcheminement": "BALAGNY SUR THERAIN", - "nomCommune": "BALAGNY SUR THERAIN" + "codePostal": "27230", + "codeCommune": "27512", + "libelleAcheminement": "ST AUBIN DE SCELLON", + "nomCommune": "ST AUBIN DE SCELLON" }, { - "codePostal": "55130", - "codeCommune": "55148", - "libelleAcheminement": "DELOUZE ROSIERES", - "nomCommune": "DELOUZE ROSIERES" + "codePostal": "15400", + "codeCommune": "15050", + "libelleAcheminement": "LE CLAUX", + "nomCommune": "LE CLAUX" }, { - "codePostal": "21340", - "codeCommune": "21195", - "libelleAcheminement": "CORMOT VAUCHIGNON", - "nomCommune": "CORMOT VAUCHIGNON" + "codePostal": "17330", + "codeCommune": "17043", + "libelleAcheminement": "BERNAY ST MARTIN", + "nomCommune": "BERNAY ST MARTIN" }, { - "codePostal": "22210", - "codeCommune": "22183", - "libelleAcheminement": "PLEMET", - "nomCommune": "PLEMET" + "codePostal": "27310", + "codeCommune": "27580", + "libelleAcheminement": "ST OUEN DE THOUBERVILLE", + "nomCommune": "ST OUEN DE THOUBERVILLE" }, { - "codePostal": "60810", - "codeCommune": "60045", - "libelleAcheminement": "BARBERY", - "nomCommune": "BARBERY" + "codePostal": "27450", + "codeCommune": "27522", + "libelleAcheminement": "ST CHRISTOPHE SUR CONDE", + "nomCommune": "ST CHRISTOPHE SUR CONDE" }, { - "codePostal": "55150", - "codeCommune": "55149", - "libelleAcheminement": "DELUT", - "nomCommune": "DELUT" + "codePostal": "15170", + "codeCommune": "15053", + "libelleAcheminement": "COLTINES", + "nomCommune": "COLTINES" }, { - "codePostal": "21120", - "codeCommune": "21211", - "libelleAcheminement": "CRECEY SUR TILLE", - "nomCommune": "CRECEY SUR TILLE" + "codePostal": "17150", + "codeCommune": "17052", + "libelleAcheminement": "BOISREDON", + "nomCommune": "BOISREDON" }, { - "codePostal": "22640", - "codeCommune": "22185", - "libelleAcheminement": "PLENEE JUGON", - "nomCommune": "PLENEE JUGON" + "codePostal": "27290", + "codeCommune": "27587", + "libelleAcheminement": "ST PHILBERT SUR RISLE", + "nomCommune": "ST PHILBERT SUR RISLE" }, { - "codePostal": "60640", - "codeCommune": "60052", - "libelleAcheminement": "BEAUGIES SOUS BOIS", - "nomCommune": "BEAUGIES SOUS BOIS" + "codePostal": "27800", + "codeCommune": "27527", + "libelleAcheminement": "ST CYR DE SALERNE", + "nomCommune": "ST CYR DE SALERNE" }, { - "codePostal": "55300", - "codeCommune": "55159", - "libelleAcheminement": "DOMPCEVRIN", - "nomCommune": "DOMPCEVRIN" + "codePostal": "15100", + "codeCommune": "15055", + "libelleAcheminement": "COREN", + "nomCommune": "COREN" }, { - "codePostal": "21500", - "codeCommune": "21212", - "libelleAcheminement": "CREPAND", - "nomCommune": "CREPAND" + "codePostal": "17270", + "codeCommune": "17054", + "libelleAcheminement": "BORESSE ET MARTRON", + "nomCommune": "BORESSE ET MARTRON" }, { - "codePostal": "22190", - "codeCommune": "22187", - "libelleAcheminement": "PLERIN", - "nomCommune": "PLERIN" + "codePostal": "27210", + "codeCommune": "27604", + "libelleAcheminement": "ST SULPICE DE GRIMBOUVILLE", + "nomCommune": "ST SULPICE DE GRIMBOUVILLE" }, { - "codePostal": "60310", - "codeCommune": "60053", - "libelleAcheminement": "BEAULIEU LES FONTAINES", - "nomCommune": "BEAULIEU LES FONTAINES" + "codePostal": "27450", + "codeCommune": "27538", + "libelleAcheminement": "ST ETIENNE L ALLIER", + "nomCommune": "ST ETIENNE L ALLIER" }, { - "codePostal": "55300", - "codeCommune": "55160", - "libelleAcheminement": "DOMPIERRE AUX BOIS", - "nomCommune": "DOMPIERRE AUX BOIS" + "codePostal": "15250", + "codeCommune": "15056", + "libelleAcheminement": "CRANDELLES", + "nomCommune": "CRANDELLES" }, { - "codePostal": "21360", - "codeCommune": "21214", - "libelleAcheminement": "CRUGEY", - "nomCommune": "CRUGEY" + "codePostal": "17210", + "codeCommune": "17061", + "libelleAcheminement": "BRAN", + "nomCommune": "BRAN" }, { - "codePostal": "22610", - "codeCommune": "22195", - "libelleAcheminement": "PLEUBIAN", - "nomCommune": "PLEUBIAN" + "codePostal": "27300", + "codeCommune": "27608", + "libelleAcheminement": "ST VICTOR DE CHRETIENVILLE", + "nomCommune": "ST VICTOR DE CHRETIENVILLE" }, { - "codePostal": "60390", - "codeCommune": "60054", - "libelleAcheminement": "LES HAUTS TALICAN", - "nomCommune": "LES HAUTS TALICAN" + "codePostal": "27560", + "codeCommune": "27541", + "libelleAcheminement": "LE MESNIL ST JEAN", + "nomCommune": "LE MESNIL ST JEAN" }, { - "codePostal": "55160", - "codeCommune": "55163", - "libelleAcheminement": "DONCOURT AUX TEMPLIERS", - "nomCommune": "DONCOURT AUX TEMPLIERS" + "codePostal": "15150", + "codeCommune": "15057", + "libelleAcheminement": "CROS DE MONTVERT", + "nomCommune": "CROS DE MONTVERT" }, { - "codePostal": "21380", - "codeCommune": "21218", - "libelleAcheminement": "CURTIL ST SEINE", - "nomCommune": "CURTIL ST SEINE" + "codePostal": "17160", + "codeCommune": "17067", + "libelleAcheminement": "BRIE SOUS MATHA", + "nomCommune": "BRIE SOUS MATHA" }, { - "codePostal": "22740", - "codeCommune": "22199", - "libelleAcheminement": "PLEUMEUR GAUTIER", - "nomCommune": "PLEUMEUR GAUTIER" + "codePostal": "27800", + "codeCommune": "27609", + "libelleAcheminement": "ST VICTOR D EPINE", + "nomCommune": "ST VICTOR D EPINE" }, { - "codePostal": "60490", - "codeCommune": "60061", - "libelleAcheminement": "BELLOY", - "nomCommune": "BELLOY" + "codePostal": "27930", + "codeCommune": "27546", + "libelleAcheminement": "ST GERMAIN DES ANGLES", + "nomCommune": "ST GERMAIN DES ANGLES" }, { - "codePostal": "55110", - "codeCommune": "55165", - "libelleAcheminement": "DOULCON", - "nomCommune": "DOULCON" + "codePostal": "15700", + "codeCommune": "15064", + "libelleAcheminement": "ESCORAILLES", + "nomCommune": "ESCORAILLES" }, { - "codePostal": "21350", - "codeCommune": "21224", - "libelleAcheminement": "DAMPIERRE EN MONTAGNE", - "nomCommune": "DAMPIERRE EN MONTAGNE" + "codePostal": "17770", + "codeCommune": "17072", + "libelleAcheminement": "BURIE", + "nomCommune": "BURIE" }, { - "codePostal": "22260", - "codeCommune": "22204", - "libelleAcheminement": "PLOEZAL", - "nomCommune": "PLOEZAL" + "codePostal": "27370", + "codeCommune": "27616", + "libelleAcheminement": "LA SAUSSAYE", + "nomCommune": "LA SAUSSAYE" }, { - "codePostal": "60120", - "codeCommune": "60082", - "libelleAcheminement": "BONNEUIL LES EAUX", - "nomCommune": "BONNEUIL LES EAUX" + "codePostal": "27930", + "codeCommune": "27560", + "libelleAcheminement": "ST LUC", + "nomCommune": "ST LUC" }, { - "codePostal": "55160", - "codeCommune": "55172", - "libelleAcheminement": "LES EPARGES", - "nomCommune": "LES EPARGES" + "codePostal": "15310", + "codeCommune": "15072", + "libelleAcheminement": "FREIX ANGLARDS", + "nomCommune": "FREIX ANGLARDS" }, { - "codePostal": "21310", - "codeCommune": "21225", - "libelleAcheminement": "DAMPIERRE ET FLEE", - "nomCommune": "DAMPIERRE ET FLEE" + "codePostal": "17210", + "codeCommune": "17074", + "libelleAcheminement": "BUSSAC FORET", + "nomCommune": "BUSSAC FORET" }, { - "codePostal": "22650", - "codeCommune": "22209", - "libelleAcheminement": "BEAUSSAIS SUR MER", - "nomCommune": "BEAUSSAIS SUR MER" + "codePostal": "27150", + "codeCommune": "27617", + "libelleAcheminement": "SAUSSAY LA CAMPAGNE", + "nomCommune": "SAUSSAY LA CAMPAGNE" }, { - "codePostal": "60123", - "codeCommune": "60083", - "libelleAcheminement": "BONNEUIL EN VALOIS", - "nomCommune": "BONNEUIL EN VALOIS" + "codePostal": "27500", + "codeCommune": "27563", + "libelleAcheminement": "ST MARDS DE BLACARVILLE", + "nomCommune": "ST MARDS DE BLACARVILLE" }, { - "codePostal": "55500", - "codeCommune": "55179", - "libelleAcheminement": "ERNEVILLE AUX BOIS", - "nomCommune": "ERNEVILLE AUX BOIS" + "codePostal": "15130", + "codeCommune": "15074", + "libelleAcheminement": "GIOU DE MAMOU", + "nomCommune": "GIOU DE MAMOU" }, { - "codePostal": "21121", - "codeCommune": "21227", - "libelleAcheminement": "DAROIS", - "nomCommune": "DAROIS" + "codePostal": "17270", + "codeCommune": "17077", + "libelleAcheminement": "CERCOUX", + "nomCommune": "CERCOUX" }, { - "codePostal": "22810", - "codeCommune": "22216", - "libelleAcheminement": "PLOUGONVER", - "nomCommune": "PLOUGONVER" + "codePostal": "27190", + "codeCommune": "27618", + "libelleAcheminement": "SEBECOURT", + "nomCommune": "SEBECOURT" }, { - "codePostal": "60112", - "codeCommune": "60084", - "libelleAcheminement": "BONNIERES", - "nomCommune": "BONNIERES" + "codePostal": "27230", + "codeCommune": "27564", + "libelleAcheminement": "ST MARDS DE FRESNE", + "nomCommune": "ST MARDS DE FRESNE" }, { - "codePostal": "55000", - "codeCommune": "55186", - "libelleAcheminement": "FAINS VEEL", - "nomCommune": "FAINS VEEL" + "codePostal": "15150", + "codeCommune": "15076", + "libelleAcheminement": "GLENAT", + "nomCommune": "GLENAT" }, { - "codePostal": "21120", - "codeCommune": "21230", - "libelleAcheminement": "DIENAY", - "nomCommune": "DIENAY" + "codePostal": "17430", + "codeCommune": "17085", + "libelleAcheminement": "CHAMPDOLENT", + "nomCommune": "CHAMPDOLENT" }, { - "codePostal": "22300", - "codeCommune": "22224", - "libelleAcheminement": "PLOULEC H", - "nomCommune": "PLOULEC H" + "codePostal": "27290", + "codeCommune": "27631", + "libelleAcheminement": "THIERVILLE", + "nomCommune": "THIERVILLE" }, { - "codePostal": "60120", - "codeCommune": "60085", - "libelleAcheminement": "BONVILLERS", - "nomCommune": "BONVILLERS" + "codePostal": "27160", + "codeCommune": "27578", + "libelleAcheminement": "STE MARIE D ATTEZ", + "nomCommune": "STE MARIE D ATTEZ" }, { - "codePostal": "55000", - "codeCommune": "55186", - "libelleAcheminement": "FAINS VEEL", - "nomCommune": "FAINS VEEL" + "codePostal": "15120", + "codeCommune": "15084", + "libelleAcheminement": "LABESSERETTE", + "nomCommune": "LABESSERETTE" }, { - "codePostal": "21000", - "codeCommune": "21231", - "libelleAcheminement": "DIJON", - "nomCommune": "DIJON" + "codePostal": "17610", + "codeCommune": "17086", + "libelleAcheminement": "CHANIERS", + "nomCommune": "CHANIERS" }, { - "codePostal": "22970", - "codeCommune": "22225", - "libelleAcheminement": "PLOUMAGOAR", - "nomCommune": "PLOUMAGOAR" + "codePostal": "27420", + "codeCommune": "27633", + "libelleAcheminement": "LES THILLIERS EN VEXIN", + "nomCommune": "LES THILLIERS EN VEXIN" }, { - "codePostal": "60840", - "codeCommune": "60106", - "libelleAcheminement": "BREUIL LE SEC", - "nomCommune": "BREUIL LE SEC" + "codePostal": "27370", + "codeCommune": "27579", + "libelleAcheminement": "ST OUEN DE PONTCHEUIL", + "nomCommune": "ST OUEN DE PONTCHEUIL" }, { - "codePostal": "55250", - "codeCommune": "55194", - "libelleAcheminement": "FOUCAUCOURT SUR THABAS", - "nomCommune": "FOUCAUCOURT SUR THABAS" + "codePostal": "15120", + "codeCommune": "15089", + "libelleAcheminement": "LADINHAC", + "nomCommune": "LADINHAC" }, { - "codePostal": "21540", - "codeCommune": "21238", - "libelleAcheminement": "ECHANNAY", - "nomCommune": "ECHANNAY" + "codePostal": "17100", + "codeCommune": "17089", + "libelleAcheminement": "LA CHAPELLE DES POTS", + "nomCommune": "LA CHAPELLE DES POTS" }, { - "codePostal": "22780", - "codeCommune": "22227", - "libelleAcheminement": "PLOUNERIN", - "nomCommune": "PLOUNERIN" + "codePostal": "27370", + "codeCommune": "27638", + "libelleAcheminement": "LE THUIT DE L OISON", + "nomCommune": "LE THUIT DE L OISON" }, { - "codePostal": "60210", - "codeCommune": "60109", - "libelleAcheminement": "BROMBOS", - "nomCommune": "BROMBOS" + "codePostal": "27520", + "codeCommune": "27586", + "libelleAcheminement": "ST PHILBERT SUR BOISSEY", + "nomCommune": "ST PHILBERT SUR BOISSEY" }, { - "codePostal": "55500", - "codeCommune": "55195", - "libelleAcheminement": "FOUCHERES AUX BOIS", - "nomCommune": "FOUCHERES AUX BOIS" + "codePostal": "15590", + "codeCommune": "15096", + "libelleAcheminement": "LASCELLE MANDAILLES", + "nomCommune": "LASCELLE" }, { - "codePostal": "21420", - "codeCommune": "21241", - "libelleAcheminement": "ECHEVRONNE", - "nomCommune": "ECHEVRONNE" + "codePostal": "17230", + "codeCommune": "17091", + "libelleAcheminement": "CHARRON", + "nomCommune": "CHARRON" }, { - "codePostal": "22110", - "codeCommune": "22229", - "libelleAcheminement": "PLOUNEVEZ QUINTIN", - "nomCommune": "PLOUNEVEZ QUINTIN" + "codePostal": "27370", + "codeCommune": "27638", + "libelleAcheminement": "LE THUIT DE L OISON", + "nomCommune": "LE THUIT DE L OISON" }, { - "codePostal": "60480", - "codeCommune": "60113", - "libelleAcheminement": "BUCAMPS", - "nomCommune": "BUCAMPS" + "codePostal": "27370", + "codeCommune": "27593", + "libelleAcheminement": "ST PIERRE DES FLEURS", + "nomCommune": "ST PIERRE DES FLEURS" }, { - "codePostal": "55120", - "codeCommune": "55199", - "libelleAcheminement": "FROIDOS", - "nomCommune": "FROIDOS" + "codePostal": "15500", + "codeCommune": "15098", + "libelleAcheminement": "LAURIE", + "nomCommune": "LAURIE" }, { - "codePostal": "21500", - "codeCommune": "21248", - "libelleAcheminement": "ERINGES", - "nomCommune": "ERINGES" + "codePostal": "17480", + "codeCommune": "17093", + "libelleAcheminement": "LE CHATEAU D OLERON", + "nomCommune": "LE CHATEAU D OLERON" }, { - "codePostal": "22420", - "codeCommune": "22235", - "libelleAcheminement": "PLOUZELAMBRE", - "nomCommune": "PLOUZELAMBRE" + "codePostal": "27370", + "codeCommune": "27654", + "libelleAcheminement": "TOURVILLE LA CAMPAGNE", + "nomCommune": "TOURVILLE LA CAMPAGNE" }, { - "codePostal": "60130", - "codeCommune": "60115", - "libelleAcheminement": "BULLES", - "nomCommune": "BULLES" + "codePostal": "27370", + "codeCommune": "27595", + "libelleAcheminement": "ST PIERRE DU BOSGUERARD", + "nomCommune": "ST PIERRE DU BOSGUERARD" }, { - "codePostal": "55110", - "codeCommune": "55206", - "libelleAcheminement": "GERCOURT ET DRILLANCOURT", - "nomCommune": "GERCOURT ET DRILLANCOURT" + "codePostal": "15300", + "codeCommune": "15100", + "libelleAcheminement": "LAVEISSENET", + "nomCommune": "LAVEISSENET" }, { - "codePostal": "21510", - "codeCommune": "21253", - "libelleAcheminement": "ETALANTE", - "nomCommune": "ETALANTE" + "codePostal": "17480", + "codeCommune": "17093", + "libelleAcheminement": "LE CHATEAU D OLERON", + "nomCommune": "LE CHATEAU D OLERON" }, { - "codePostal": "22310", - "codeCommune": "22238", - "libelleAcheminement": "PLUFUR", - "nomCommune": "PLUFUR" + "codePostal": "27680", + "codeCommune": "27665", + "libelleAcheminement": "TROUVILLE LA HAULE", + "nomCommune": "TROUVILLE LA HAULE" }, { - "codePostal": "60250", - "codeCommune": "60116", - "libelleAcheminement": "BURY", - "nomCommune": "BURY" + "codePostal": "27180", + "codeCommune": "27602", + "libelleAcheminement": "ST SEBASTIEN DE MORSENT", + "nomCommune": "ST SEBASTIEN DE MORSENT" }, { - "codePostal": "55110", - "codeCommune": "55208", - "libelleAcheminement": "GESNES EN ARGONNE", - "nomCommune": "GESNES EN ARGONNE" + "codePostal": "15120", + "codeCommune": "15103", + "libelleAcheminement": "LEUCAMP", + "nomCommune": "LEUCAMP" }, { - "codePostal": "21270", - "codeCommune": "21256", - "libelleAcheminement": "ETEVAUX", - "nomCommune": "ETEVAUX" + "codePostal": "17500", + "codeCommune": "17108", + "libelleAcheminement": "CLAM", + "nomCommune": "CLAM" }, { - "codePostal": "22350", - "codeCommune": "22239", - "libelleAcheminement": "PLUMAUDAN", - "nomCommune": "PLUMAUDAN" + "codePostal": "27350", + "codeCommune": "27669", + "libelleAcheminement": "VALLETOT", + "nomCommune": "VALLETOT" }, { - "codePostal": "60170", - "codeCommune": "60119", - "libelleAcheminement": "CAMBRONNE LES RIBECOURT", - "nomCommune": "CAMBRONNE LES RIBECOURT" + "codePostal": "27130", + "codeCommune": "27610", + "libelleAcheminement": "ST VICTOR SUR AVRE", + "nomCommune": "ST VICTOR SUR AVRE" }, { - "codePostal": "55130", - "codeCommune": "55215", - "libelleAcheminement": "GONDRECOURT LE CHATEAU", - "nomCommune": "GONDRECOURT LE CHATEAU" + "codePostal": "43450", + "codeCommune": "15105", + "libelleAcheminement": "LEYVAUX", + "nomCommune": "LEYVAUX" }, { - "codePostal": "21600", - "codeCommune": "21263", - "libelleAcheminement": "FENAY", - "nomCommune": "FENAY" + "codePostal": "17270", + "codeCommune": "17110", + "libelleAcheminement": "CLERAC", + "nomCommune": "CLERAC" }, { - "codePostal": "22200", - "codeCommune": "22248", - "libelleAcheminement": "POMMERIT LE VICOMTE", - "nomCommune": "POMMERIT LE VICOMTE" + "codePostal": "27430", + "codeCommune": "27673", + "libelleAcheminement": "VATTEVILLE", + "nomCommune": "VATTEVILLE" }, { - "codePostal": "60310", - "codeCommune": "60124", - "libelleAcheminement": "CANDOR", - "nomCommune": "CANDOR" + "codePostal": "27950", + "codeCommune": "27612", + "libelleAcheminement": "ST VINCENT DES BOIS", + "nomCommune": "ST VINCENT DES BOIS" }, { - "codePostal": "55160", - "codeCommune": "55232", - "libelleAcheminement": "HARVILLE", - "nomCommune": "HARVILLE" + "codePostal": "15320", + "codeCommune": "15108", + "libelleAcheminement": "VAL D ARCOMIE", + "nomCommune": "VAL D ARCOMIE" }, { - "codePostal": "21140", - "codeCommune": "21272", - "libelleAcheminement": "LE VAL LARREY", - "nomCommune": "LE VAL LARREY" + "codePostal": "17240", + "codeCommune": "17111", + "libelleAcheminement": "CLION", + "nomCommune": "CLION" }, { - "codePostal": "22140", - "codeCommune": "22254", - "libelleAcheminement": "PRAT", - "nomCommune": "PRAT" + "codePostal": "27390", + "codeCommune": "27680", + "libelleAcheminement": "VERNEUSSES", + "nomCommune": "VERNEUSSES" }, { - "codePostal": "60680", - "codeCommune": "60125", - "libelleAcheminement": "CANLY", - "nomCommune": "CANLY" + "codePostal": "27500", + "codeCommune": "27620", + "libelleAcheminement": "SELLES", + "nomCommune": "SELLES" }, { - "codePostal": "55100", - "codeCommune": "55236", - "libelleAcheminement": "HAUDAINVILLE", - "nomCommune": "HAUDAINVILLE" + "codePostal": "15320", + "codeCommune": "15108", + "libelleAcheminement": "VAL D ARCOMIE", + "nomCommune": "VAL D ARCOMIE" }, { - "codePostal": "21390", - "codeCommune": "21272", - "libelleAcheminement": "LE VAL LARREY", - "nomCommune": "LE VAL LARREY" + "codePostal": "17600", + "codeCommune": "17112", + "libelleAcheminement": "LA CLISSE", + "nomCommune": "LA CLISSE" }, { - "codePostal": "22450", - "codeCommune": "22257", - "libelleAcheminement": "QUEMPERVEN", - "nomCommune": "QUEMPERVEN" + "codePostal": "27680", + "codeCommune": "27686", + "libelleAcheminement": "VIEUX PORT", + "nomCommune": "VIEUX PORT" }, { - "codePostal": "60840", - "codeCommune": "60130", - "libelleAcheminement": "CATENOY", - "nomCommune": "CATENOY" + "codePostal": "27470", + "codeCommune": "27622", + "libelleAcheminement": "SERQUIGNY", + "nomCommune": "SERQUIGNY" }, { - "codePostal": "55130", - "codeCommune": "55247", - "libelleAcheminement": "HORVILLE EN ORNOIS", - "nomCommune": "HORVILLE EN ORNOIS" + "codePostal": "15320", + "codeCommune": "15108", + "libelleAcheminement": "VAL D ARCOMIE", + "nomCommune": "VAL D ARCOMIE" }, { - "codePostal": "21610", - "codeCommune": "21277", - "libelleAcheminement": "FONTAINE FRANCAISE", - "nomCommune": "FONTAINE FRANCAISE" + "codePostal": "17600", + "codeCommune": "17120", + "libelleAcheminement": "CORME ROYAL", + "nomCommune": "CORME ROYAL" }, { - "codePostal": "22460", - "codeCommune": "22260", - "libelleAcheminement": "LE QUILLIO", - "nomCommune": "LE QUILLIO" + "codePostal": "27120", + "codeCommune": "27689", + "libelleAcheminement": "VILLEGATS", + "nomCommune": "VILLEGATS" }, { - "codePostal": "60730", - "codeCommune": "60135", - "libelleAcheminement": "CAUVIGNY", - "nomCommune": "CAUVIGNY" + "codePostal": "27700", + "codeCommune": "27635", + "libelleAcheminement": "LE THUIT", + "nomCommune": "LE THUIT" }, { - "codePostal": "55700", - "codeCommune": "55250", - "libelleAcheminement": "INOR", - "nomCommune": "INOR" + "codePostal": "15190", + "codeCommune": "15132", + "libelleAcheminement": "MONTGRELEIX", + "nomCommune": "MONTGRELEIX" }, { - "codePostal": "21170", - "codeCommune": "21285", - "libelleAcheminement": "FRANXAULT", - "nomCommune": "FRANXAULT" + "codePostal": "17130", + "codeCommune": "17129", + "libelleAcheminement": "COURPIGNAC", + "nomCommune": "COURPIGNAC" }, { - "codePostal": "22450", - "codeCommune": "22264", - "libelleAcheminement": "LA ROCHE JAUDY", - "nomCommune": "LA ROCHE JAUDY" + "codePostal": "27420", + "codeCommune": "27690", + "libelleAcheminement": "VILLERS EN VEXIN", + "nomCommune": "VILLERS EN VEXIN" }, { - "codePostal": "60360", - "codeCommune": "60153", - "libelleAcheminement": "CHOQUEUSE LES BENARDS", - "nomCommune": "CHOQUEUSE LES BENARDS" + "codePostal": "27500", + "codeCommune": "27645", + "libelleAcheminement": "TOCQUEVILLE", + "nomCommune": "TOCQUEVILLE" }, { - "codePostal": "55120", - "codeCommune": "55266", - "libelleAcheminement": "LACHALADE", - "nomCommune": "LACHALADE" + "codePostal": "15120", + "codeCommune": "15134", + "libelleAcheminement": "MONTSALVY", + "nomCommune": "MONTSALVY" }, { - "codePostal": "21540", - "codeCommune": "21310", - "libelleAcheminement": "GROSBOIS EN MONTAGNE", - "nomCommune": "GROSBOIS EN MONTAGNE" + "codePostal": "17470", + "codeCommune": "17138", + "libelleAcheminement": "DAMPIERRE SUR BOUTONNE", + "nomCommune": "DAMPIERRE SUR BOUTONNE" }, { - "codePostal": "22450", - "codeCommune": "22264", - "libelleAcheminement": "LA ROCHE JAUDY", - "nomCommune": "LA ROCHE JAUDY" + "codePostal": "27240", + "codeCommune": "27693", + "libelleAcheminement": "SYLVAINS LES MOULINS", + "nomCommune": "SYLVAINS LES MOULINS" }, { - "codePostal": "60430", - "codeCommune": "60165", - "libelleAcheminement": "LE COUDRAY SUR THELLE", - "nomCommune": "LE COUDRAY SUR THELLE" + "codePostal": "27440", + "codeCommune": "27649", + "libelleAcheminement": "TOUFFREVILLE", + "nomCommune": "TOUFFREVILLE" }, { - "codePostal": "55800", - "codeCommune": "55271", - "libelleAcheminement": "LAHEYCOURT", - "nomCommune": "LAHEYCOURT" + "codePostal": "15230", + "codeCommune": "15139", + "libelleAcheminement": "NARNHAC", + "nomCommune": "NARNHAC" }, { - "codePostal": "21121", - "codeCommune": "21315", - "libelleAcheminement": "HAUTEVILLE LES DIJON", - "nomCommune": "HAUTEVILLE LES DIJON" + "codePostal": "17330", + "codeCommune": "17139", + "libelleAcheminement": "DOEUIL SUR LE MIGNON", + "nomCommune": "DOEUIL SUR LE MIGNON" }, { - "codePostal": "22110", - "codeCommune": "22266", - "libelleAcheminement": "ROSTRENEN", - "nomCommune": "ROSTRENEN" + "codePostal": "27100", + "codeCommune": "27701", + "libelleAcheminement": "VAL DE REUIL", + "nomCommune": "VAL DE REUIL" }, { - "codePostal": "60150", - "codeCommune": "60166", - "libelleAcheminement": "COUDUN", - "nomCommune": "COUDUN" + "codePostal": "27930", + "codeCommune": "27652", + "libelleAcheminement": "TOURNEVILLE", + "nomCommune": "TOURNEVILLE" }, { - "codePostal": "55300", - "codeCommune": "55274", - "libelleAcheminement": "LAMORVILLE", - "nomCommune": "LAMORVILLE" + "codePostal": "15170", + "codeCommune": "15141", + "libelleAcheminement": "NEUSSARGUES EN PINATELLE", + "nomCommune": "NEUSSARGUES EN PINATELLE" }, { - "codePostal": "21110", - "codeCommune": "21320", - "libelleAcheminement": "IZIER", - "nomCommune": "IZIER" + "codePostal": "17550", + "codeCommune": "17140", + "libelleAcheminement": "DOLUS D OLERON", + "nomCommune": "DOLUS D OLERON" }, { - "codePostal": "22110", - "codeCommune": "22266", - "libelleAcheminement": "ROSTRENEN", - "nomCommune": "ROSTRENEN" + "codePostal": "28300", + "codeCommune": "28006", + "libelleAcheminement": "AMILLY", + "nomCommune": "AMILLY" }, { - "codePostal": "60420", - "codeCommune": "60168", - "libelleAcheminement": "COURCELLES EPAYELLES", - "nomCommune": "COURCELLES EPAYELLES" + "codePostal": "27500", + "codeCommune": "27655", + "libelleAcheminement": "TOURVILLE SUR PONT AUDEMER", + "nomCommune": "TOURVILLE SUR PONT AUDEMER" }, { - "codePostal": "55100", - "codeCommune": "55276", - "libelleAcheminement": "LANDRECOURT LEMPIRE", - "nomCommune": "LANDRECOURT LEMPIRE" + "codePostal": "15100", + "codeCommune": "15142", + "libelleAcheminement": "NEUVEGLISE SUR TRUYERE", + "nomCommune": "NEUVEGLISE SUR TRUYERE" }, { - "codePostal": "21250", - "codeCommune": "21322", - "libelleAcheminement": "JALLANGES", - "nomCommune": "JALLANGES" + "codePostal": "17620", + "codeCommune": "17146", + "libelleAcheminement": "ECHILLAIS", + "nomCommune": "ECHILLAIS" }, { - "codePostal": "22250", - "codeCommune": "22267", - "libelleAcheminement": "ROUILLAC", - "nomCommune": "ROUILLAC" + "codePostal": "28480", + "codeCommune": "28010", + "libelleAcheminement": "ARGENVILLIERS", + "nomCommune": "ARGENVILLIERS" }, { - "codePostal": "60580", - "codeCommune": "60172", - "libelleAcheminement": "COYE LA FORET", - "nomCommune": "COYE LA FORET" + "codePostal": "27500", + "codeCommune": "27656", + "libelleAcheminement": "TOUTAINVILLE", + "nomCommune": "TOUTAINVILLE" }, { - "codePostal": "55100", - "codeCommune": "55276", - "libelleAcheminement": "LANDRECOURT LEMPIRE", - "nomCommune": "LANDRECOURT LEMPIRE" + "codePostal": "15290", + "codeCommune": "15144", + "libelleAcheminement": "OMPS", + "nomCommune": "OMPS" }, { - "codePostal": "21460", - "codeCommune": "21324", - "libelleAcheminement": "JEUX LES BARD", - "nomCommune": "JEUX LES BARD" + "codePostal": "17810", + "codeCommune": "17148", + "libelleAcheminement": "ECURAT", + "nomCommune": "ECURAT" }, { - "codePostal": "22400", - "codeCommune": "22273", - "libelleAcheminement": "ST ALBAN", - "nomCommune": "ST ALBAN" + "codePostal": "28220", + "codeCommune": "28012", + "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", + "nomCommune": "COMMUNE NOUVELLE D ARROU" }, { - "codePostal": "60800", - "codeCommune": "60176", - "libelleAcheminement": "CREPY EN VALOIS", - "nomCommune": "CREPY EN VALOIS" + "codePostal": "27130", + "codeCommune": "27679", + "libelleAcheminement": "VERNEUIL D AVRE ET D ITON", + "nomCommune": "VERNEUIL D AVRE ET D ITON" }, { - "codePostal": "55700", - "codeCommune": "55279", - "libelleAcheminement": "LANEUVILLE SUR MEUSE", - "nomCommune": "LANEUVILLE SUR MEUSE" + "codePostal": "15290", + "codeCommune": "15147", + "libelleAcheminement": "PARLAN", + "nomCommune": "PARLAN" }, { - "codePostal": "21340", - "codeCommune": "21327", - "libelleAcheminement": "VAL MONT", - "nomCommune": "VAL MONT" + "codePostal": "17137", + "codeCommune": "17153", + "libelleAcheminement": "ESNANDES", + "nomCommune": "ESNANDES" }, { - "codePostal": "22630", - "codeCommune": "22274", - "libelleAcheminement": "ST ANDRE DES EAUX", - "nomCommune": "ST ANDRE DES EAUX" + "codePostal": "28290", + "codeCommune": "28012", + "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", + "nomCommune": "COMMUNE NOUVELLE D ARROU" }, { - "codePostal": "60350", - "codeCommune": "60188", - "libelleAcheminement": "CUISE LA MOTTE", - "nomCommune": "CUISE LA MOTTE" + "codePostal": "27330", + "codeCommune": "27685", + "libelleAcheminement": "LA VIEILLE LYRE", + "nomCommune": "LA VIEILLE LYRE" }, { - "codePostal": "55250", - "codeCommune": "55295", - "libelleAcheminement": "LISLE EN BARROIS", - "nomCommune": "LISLE EN BARROIS" + "codePostal": "15800", + "codeCommune": "15154", + "libelleAcheminement": "POLMINHAC", + "nomCommune": "POLMINHAC" }, { - "codePostal": "21340", - "codeCommune": "21327", - "libelleAcheminement": "VAL MONT", - "nomCommune": "VAL MONT" + "codePostal": "17170", + "codeCommune": "17158", + "libelleAcheminement": "FERRIERES", + "nomCommune": "FERRIERES" }, { - "codePostal": "22600", - "codeCommune": "22275", - "libelleAcheminement": "ST BARNABE", - "nomCommune": "ST BARNABE" + "codePostal": "28700", + "codeCommune": "28015", + "libelleAcheminement": "AUNEAU BLEURY ST SYMPHORIEN", + "nomCommune": "AUNEAU BLEURY ST SYMPHORIEN" }, { - "codePostal": "60620", - "codeCommune": "60190", - "libelleAcheminement": "CUVERGNON", - "nomCommune": "CUVERGNON" + "codePostal": "27940", + "codeCommune": "27691", + "libelleAcheminement": "VILLERS SUR LE ROULE", + "nomCommune": "VILLERS SUR LE ROULE" }, { - "codePostal": "55300", - "codeCommune": "55303", - "libelleAcheminement": "LOUPMONT", - "nomCommune": "LOUPMONT" + "codePostal": "15130", + "codeCommune": "15156", + "libelleAcheminement": "PRUNET", + "nomCommune": "PRUNET" }, { - "codePostal": "21210", - "codeCommune": "21328", - "libelleAcheminement": "JUILLENAY", - "nomCommune": "JUILLENAY" + "codePostal": "17500", + "codeCommune": "17163", + "libelleAcheminement": "FONTAINES D OZILLAC", + "nomCommune": "FONTAINES D OZILLAC" }, { - "codePostal": "22800", - "codeCommune": "22276", - "libelleAcheminement": "ST BIHY", - "nomCommune": "ST BIHY" + "codePostal": "28310", + "codeCommune": "28026", + "libelleAcheminement": "BAUDREVILLE", + "nomCommune": "BAUDREVILLE" }, { - "codePostal": "60790", - "codeCommune": "60196", - "libelleAcheminement": "LA DRENNE", - "nomCommune": "LA DRENNE" + "codePostal": "27240", + "codeCommune": "27693", + "libelleAcheminement": "SYLVAINS LES MOULINS", + "nomCommune": "SYLVAINS LES MOULINS" }, { - "codePostal": "55100", - "codeCommune": "55307", - "libelleAcheminement": "LOUVEMONT COTE DU POIVRE", - "nomCommune": "LOUVEMONT COTE DU POIVRE" + "codePostal": "15250", + "codeCommune": "15160", + "libelleAcheminement": "REILHAC", + "nomCommune": "REILHAC" }, { - "codePostal": "21130", - "codeCommune": "21331", - "libelleAcheminement": "LABERGEMENT LES AUXONNE", - "nomCommune": "LABERGEMENT LES AUXONNE" + "codePostal": "17260", + "codeCommune": "17172", + "libelleAcheminement": "GEMOZAC", + "nomCommune": "GEMOZAC" }, { - "codePostal": "22800", - "codeCommune": "22277", - "libelleAcheminement": "ST BRANDAN", - "nomCommune": "ST BRANDAN" + "codePostal": "28140", + "codeCommune": "28028", + "libelleAcheminement": "BAZOCHES EN DUNOIS", + "nomCommune": "BAZOCHES EN DUNOIS" }, { - "codePostal": "60790", - "codeCommune": "60196", - "libelleAcheminement": "LA DRENNE", - "nomCommune": "LA DRENNE" + "codePostal": "27110", + "codeCommune": "27698", + "libelleAcheminement": "VITOT", + "nomCommune": "VITOT" }, { - "codePostal": "55300", - "codeCommune": "55312", - "libelleAcheminement": "MAIZEY", - "nomCommune": "MAIZEY" + "codePostal": "15100", + "codeCommune": "15164", + "libelleAcheminement": "ROFFIAC", + "nomCommune": "ROFFIAC" }, { - "codePostal": "21820", - "codeCommune": "21332", - "libelleAcheminement": "LABERGEMENT LES SEURRE", - "nomCommune": "LABERGEMENT LES SEURRE" + "codePostal": "17160", + "codeCommune": "17177", + "libelleAcheminement": "LE GICQ", + "nomCommune": "LE GICQ" }, { - "codePostal": "22600", - "codeCommune": "22279", - "libelleAcheminement": "ST CARADEC", - "nomCommune": "ST CARADEC" + "codePostal": "28140", + "codeCommune": "28029", + "libelleAcheminement": "BAZOCHES LES HAUTES", + "nomCommune": "BAZOCHES LES HAUTES" }, { - "codePostal": "60530", - "codeCommune": "60197", - "libelleAcheminement": "DIEUDONNE", - "nomCommune": "DIEUDONNE" + "codePostal": "27520", + "codeCommune": "27699", + "libelleAcheminement": "VOISCREVILLE", + "nomCommune": "VOISCREVILLE" }, { - "codePostal": "55500", - "codeCommune": "55326", - "libelleAcheminement": "MAULAN", - "nomCommune": "MAULAN" + "codePostal": "15240", + "codeCommune": "15169", + "libelleAcheminement": "SAIGNES", + "nomCommune": "SAIGNES" }, { - "codePostal": "21210", - "codeCommune": "21335", - "libelleAcheminement": "LACOUR D ARCENAY", - "nomCommune": "LACOUR D ARCENAY" + "codePostal": "17100", + "codeCommune": "17179", + "libelleAcheminement": "LES GONDS", + "nomCommune": "LES GONDS" }, { - "codePostal": "22210", - "codeCommune": "22288", - "libelleAcheminement": "ST ETIENNE DU GUE DE L ISLE", - "nomCommune": "ST ETIENNE DU GUE DE L ISLE" + "codePostal": "28150", + "codeCommune": "28032", + "libelleAcheminement": "BEAUVILLIERS", + "nomCommune": "BEAUVILLIERS" }, { - "codePostal": "60530", - "codeCommune": "60212", - "libelleAcheminement": "ERCUIS", - "nomCommune": "ERCUIS" + "codePostal": "27370", + "codeCommune": "27700", + "libelleAcheminement": "VRAIVILLE", + "nomCommune": "VRAIVILLE" }, { - "codePostal": "55260", - "codeCommune": "55333", - "libelleAcheminement": "MENIL AUX BOIS", - "nomCommune": "MENIL AUX BOIS" + "codePostal": "15190", + "codeCommune": "15170", + "libelleAcheminement": "ST AMANDIN", + "nomCommune": "ST AMANDIN" }, { - "codePostal": "21330", - "codeCommune": "21343", - "libelleAcheminement": "LARREY", - "nomCommune": "LARREY" + "codePostal": "17490", + "codeCommune": "17180", + "libelleAcheminement": "GOURVILLETTE", + "nomCommune": "GOURVILLETTE" }, { - "codePostal": "22530", - "codeCommune": "22295", - "libelleAcheminement": "ST GILLES VIEUX MARCHE", - "nomCommune": "ST GILLES VIEUX MARCHE" + "codePostal": "28240", + "codeCommune": "28033", + "libelleAcheminement": "BELHOMERT GUEHOUVILLE", + "nomCommune": "BELHOMERT GUEHOUVILLE" }, { - "codePostal": "60950", - "codeCommune": "60213", - "libelleAcheminement": "ERMENONVILLE", - "nomCommune": "ERMENONVILLE" + "codePostal": "28410", + "codeCommune": "28001", + "libelleAcheminement": "ABONDANT", + "nomCommune": "ABONDANT" }, { - "codePostal": "55800", - "codeCommune": "55340", - "libelleAcheminement": "MOGNEVILLE", - "nomCommune": "MOGNEVILLE" + "codePostal": "15140", + "codeCommune": "15176", + "libelleAcheminement": "ST CHAMANT", + "nomCommune": "ST CHAMANT" }, { - "codePostal": "21700", - "codeCommune": "21368", - "libelleAcheminement": "MAGNY LES VILLERS", - "nomCommune": "MAGNY LES VILLERS" + "codePostal": "17140", + "codeCommune": "17200", + "libelleAcheminement": "LAGORD", + "nomCommune": "LAGORD" }, { - "codePostal": "22750", - "codeCommune": "22302", - "libelleAcheminement": "ST JACUT DE LA MER", - "nomCommune": "ST JACUT DE LA MER" + "codePostal": "28130", + "codeCommune": "28052", + "libelleAcheminement": "BOUGLAINVAL", + "nomCommune": "BOUGLAINVAL" }, { - "codePostal": "60130", - "codeCommune": "60216", - "libelleAcheminement": "ERQUINVILLERS", - "nomCommune": "ERQUINVILLERS" + "codePostal": "28800", + "codeCommune": "28005", + "libelleAcheminement": "ALLUYES", + "nomCommune": "ALLUYES" }, { - "codePostal": "55150", - "codeCommune": "55341", - "libelleAcheminement": "MOIREY FLABAS CREPION", - "nomCommune": "MOIREY FLABAS CREPION" + "codePostal": "15600", + "codeCommune": "15181", + "libelleAcheminement": "ST CONSTANT FOURNOULES", + "nomCommune": "ST CONSTANT FOURNOULES" }, { - "codePostal": "21310", - "codeCommune": "21369", - "libelleAcheminement": "MAGNY ST MEDARD", - "nomCommune": "MAGNY ST MEDARD" + "codePostal": "17170", + "codeCommune": "17201", + "libelleAcheminement": "LA LAIGNE", + "nomCommune": "LA LAIGNE" }, { - "codePostal": "22940", - "codeCommune": "22307", - "libelleAcheminement": "ST JULIEN", - "nomCommune": "ST JULIEN" + "codePostal": "28170", + "codeCommune": "28053", + "libelleAcheminement": "LE BOULLAY LES DEUX EGLISES", + "nomCommune": "LE BOULLAY LES DEUX EGLISES" }, { - "codePostal": "60420", - "codeCommune": "60232", - "libelleAcheminement": "FERRIERES", - "nomCommune": "FERRIERES" + "codePostal": "28170", + "codeCommune": "28008", + "libelleAcheminement": "ARDELLES", + "nomCommune": "ARDELLES" }, { - "codePostal": "55140", - "codeCommune": "55344", - "libelleAcheminement": "MONTBRAS", - "nomCommune": "MONTBRAS" + "codePostal": "15600", + "codeCommune": "15181", + "libelleAcheminement": "ST CONSTANT FOURNOULES", + "nomCommune": "ST CONSTANT FOURNOULES" }, { - "codePostal": "21110", - "codeCommune": "21370", - "libelleAcheminement": "MAGNY SUR TILLE", - "nomCommune": "MAGNY SUR TILLE" + "codePostal": "17380", + "codeCommune": "17202", + "libelleAcheminement": "LANDES", + "nomCommune": "LANDES" }, { - "codePostal": "22630", - "codeCommune": "22308", - "libelleAcheminement": "ST JUVAT", - "nomCommune": "ST JUVAT" + "codePostal": "28210", + "codeCommune": "28055", + "libelleAcheminement": "LE BOULLAY THIERRY", + "nomCommune": "LE BOULLAY THIERRY" }, { - "codePostal": "60360", - "codeCommune": "60240", - "libelleAcheminement": "FONTAINE BONNELEAU", - "nomCommune": "FONTAINE BONNELEAU" + "codePostal": "28700", + "codeCommune": "28009", + "libelleAcheminement": "ARDELU", + "nomCommune": "ARDELU" }, { - "codePostal": "55110", - "codeCommune": "55345", - "libelleAcheminement": "MONT DEVANT SASSEY", - "nomCommune": "MONT DEVANT SASSEY" + "codePostal": "15140", + "codeCommune": "15186", + "libelleAcheminement": "STE EULALIE", + "nomCommune": "STE EULALIE" }, { - "codePostal": "21120", - "codeCommune": "21385", - "libelleAcheminement": "MAREY SUR TILLE", - "nomCommune": "MAREY SUR TILLE" + "codePostal": "17520", + "codeCommune": "17209", + "libelleAcheminement": "LONZAC", + "nomCommune": "LONZAC" }, { - "codePostal": "22140", - "codeCommune": "22310", - "libelleAcheminement": "ST LAURENT", - "nomCommune": "ST LAURENT" + "codePostal": "28410", + "codeCommune": "28056", + "libelleAcheminement": "BOUTIGNY PROUAIS", + "nomCommune": "BOUTIGNY PROUAIS" }, { - "codePostal": "60190", - "codeCommune": "60247", - "libelleAcheminement": "FOUILLEUSE", - "nomCommune": "FOUILLEUSE" + "codePostal": "28290", + "codeCommune": "28012", + "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", + "nomCommune": "COMMUNE NOUVELLE D ARROU" }, { - "codePostal": "55160", - "codeCommune": "55363", - "libelleAcheminement": "MOULOTTE", - "nomCommune": "MOULOTTE" + "codePostal": "15100", + "codeCommune": "15188", + "libelleAcheminement": "ST GEORGES", + "nomCommune": "ST GEORGES" }, { - "codePostal": "21150", - "codeCommune": "21386", - "libelleAcheminement": "MARIGNY LE CAHOUET", - "nomCommune": "MARIGNY LE CAHOUET" + "codePostal": "17240", + "codeCommune": "17210", + "libelleAcheminement": "LORIGNAC", + "nomCommune": "LORIGNAC" }, { - "codePostal": "22130", - "codeCommune": "22311", - "libelleAcheminement": "ST LORMEL", - "nomCommune": "ST LORMEL" + "codePostal": "28800", + "codeCommune": "28065", + "libelleAcheminement": "BULLAINVILLE", + "nomCommune": "BULLAINVILLE" }, { - "codePostal": "60000", - "codeCommune": "60250", - "libelleAcheminement": "FOUQUENIES", - "nomCommune": "FOUQUENIES" + "codePostal": "28500", + "codeCommune": "28014", + "libelleAcheminement": "AUNAY SOUS CRECY", + "nomCommune": "AUNAY SOUS CRECY" }, { - "codePostal": "55000", - "codeCommune": "55366", - "libelleAcheminement": "VAL D ORNAIN", - "nomCommune": "VAL D ORNAIN" + "codePostal": "15150", + "codeCommune": "15189", + "libelleAcheminement": "ST GERONS", + "nomCommune": "ST GERONS" }, { - "codePostal": "21140", - "codeCommune": "21394", - "libelleAcheminement": "MASSINGY LES SEMUR", - "nomCommune": "MASSINGY LES SEMUR" + "codePostal": "17490", + "codeCommune": "17217", + "libelleAcheminement": "MACQUEVILLE", + "nomCommune": "MACQUEVILLE" }, { - "codePostal": "22600", - "codeCommune": "22314", - "libelleAcheminement": "ST MAUDAN", - "nomCommune": "ST MAUDAN" + "codePostal": "28400", + "codeCommune": "28072", + "libelleAcheminement": "CHAMPROND EN PERCHET", + "nomCommune": "CHAMPROND EN PERCHET" }, { - "codePostal": "60640", - "codeCommune": "60255", - "libelleAcheminement": "FRENICHES", - "nomCommune": "FRENICHES" + "codePostal": "28330", + "codeCommune": "28016", + "libelleAcheminement": "LES AUTELS VILLEVILLON", + "nomCommune": "LES AUTELS VILLEVILLON" }, { - "codePostal": "55000", - "codeCommune": "55366", - "libelleAcheminement": "VAL D ORNAIN", - "nomCommune": "VAL D ORNAIN" + "codePostal": "15400", + "codeCommune": "15190", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "21190", - "codeCommune": "21405", - "libelleAcheminement": "MERCEUIL", - "nomCommune": "MERCEUIL" + "codePostal": "17230", + "codeCommune": "17218", + "libelleAcheminement": "MARANS", + "nomCommune": "MARANS" }, { - "codePostal": "22550", - "codeCommune": "22323", - "libelleAcheminement": "ST POTAN", - "nomCommune": "ST POTAN" + "codePostal": "28700", + "codeCommune": "28073", + "libelleAcheminement": "CHAMPSERU", + "nomCommune": "CHAMPSERU" }, { - "codePostal": "60310", - "codeCommune": "60258", - "libelleAcheminement": "FRESNIERES", - "nomCommune": "FRESNIERES" + "codePostal": "28330", + "codeCommune": "28018", + "libelleAcheminement": "AUTHON DU PERCHE", + "nomCommune": "AUTHON DU PERCHE" }, { - "codePostal": "55230", - "codeCommune": "55367", - "libelleAcheminement": "MUZERAY", - "nomCommune": "MUZERAY" + "codePostal": "15250", + "codeCommune": "15204", + "libelleAcheminement": "ST PAUL DES LANDES", + "nomCommune": "ST PAUL DES LANDES" }, { - "codePostal": "21540", - "codeCommune": "21406", - "libelleAcheminement": "MESMONT", - "nomCommune": "MESMONT" + "codePostal": "17320", + "codeCommune": "17219", + "libelleAcheminement": "MARENNES HIERS BROUAGE", + "nomCommune": "MARENNES HIERS BROUAGE" }, { - "codePostal": "22410", - "codeCommune": "22325", - "libelleAcheminement": "ST QUAY PORTRIEUX", - "nomCommune": "ST QUAY PORTRIEUX" + "codePostal": "28120", + "codeCommune": "28081", + "libelleAcheminement": "CHARONVILLE", + "nomCommune": "CHARONVILLE" }, { - "codePostal": "60000", - "codeCommune": "60264", - "libelleAcheminement": "FROCOURT", - "nomCommune": "FROCOURT" + "codePostal": "28140", + "codeCommune": "28019", + "libelleAcheminement": "BAIGNEAUX", + "nomCommune": "BAIGNEAUX" }, { - "codePostal": "55000", - "codeCommune": "55369", - "libelleAcheminement": "NAIVES ROSIERES", - "nomCommune": "NAIVES ROSIERES" + "codePostal": "15350", + "codeCommune": "15206", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "21340", - "codeCommune": "21420", - "libelleAcheminement": "MOLINOT", - "nomCommune": "MOLINOT" + "codePostal": "17160", + "codeCommune": "17224", + "libelleAcheminement": "MATHA", + "nomCommune": "MATHA" }, { - "codePostal": "22270", - "codeCommune": "22326", - "libelleAcheminement": "ST RIEUL", - "nomCommune": "ST RIEUL" + "codePostal": "28200", + "codeCommune": "28088", + "libelleAcheminement": "CHATEAUDUN", + "nomCommune": "CHATEAUDUN" }, { - "codePostal": "60360", - "codeCommune": "60267", - "libelleAcheminement": "LE GALLET", - "nomCommune": "LE GALLET" + "codePostal": "28320", + "codeCommune": "28023", + "libelleAcheminement": "BAILLEAU ARMENONVILLE", + "nomCommune": "BAILLEAU ARMENONVILLE" }, { - "codePostal": "55500", - "codeCommune": "55370", - "libelleAcheminement": "NAIX AUX FORGES", - "nomCommune": "NAIX AUX FORGES" + "codePostal": "15380", + "codeCommune": "15218", + "libelleAcheminement": "ST VINCENT DE SALERS", + "nomCommune": "ST VINCENT DE SALERS" }, { - "codePostal": "21250", - "codeCommune": "21424", - "libelleAcheminement": "MONTAGNY LES SEURRE", - "nomCommune": "MONTAGNY LES SEURRE" + "codePostal": "17210", + "codeCommune": "17229", + "libelleAcheminement": "MERIGNAC", + "nomCommune": "MERIGNAC" }, { - "codePostal": "22510", - "codeCommune": "22332", - "libelleAcheminement": "ST TRIMOEL", - "nomCommune": "ST TRIMOEL" + "codePostal": "28700", + "codeCommune": "28092", + "libelleAcheminement": "CHATENAY", + "nomCommune": "CHATENAY" }, { - "codePostal": "60000", - "codeCommune": "60277", - "libelleAcheminement": "GOINCOURT", - "nomCommune": "GOINCOURT" + "codePostal": "28630", + "codeCommune": "28024", + "libelleAcheminement": "BARJOUVILLE", + "nomCommune": "BARJOUVILLE" }, { - "codePostal": "55500", - "codeCommune": "55372", - "libelleAcheminement": "NANCOIS SUR ORNAIN", - "nomCommune": "NANCOIS SUR ORNAIN" + "codePostal": "15300", + "codeCommune": "15225", + "libelleAcheminement": "SEGUR LES VILLAS", + "nomCommune": "SEGUR LES VILLAS" }, { - "codePostal": "21500", - "codeCommune": "21429", - "libelleAcheminement": "MONTIGNY MONTFORT", - "nomCommune": "MONTIGNY MONTFORT" + "codePostal": "17330", + "codeCommune": "17234", + "libelleAcheminement": "MIGRE", + "nomCommune": "MIGRE" }, { - "codePostal": "22570", - "codeCommune": "22334", - "libelleAcheminement": "ST IGEAUX", - "nomCommune": "ST IGEAUX" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "60400", - "codeCommune": "60287", - "libelleAcheminement": "GRANDRU", - "nomCommune": "GRANDRU" + "codePostal": "28270", + "codeCommune": "28030", + "libelleAcheminement": "BEAUCHE", + "nomCommune": "BEAUCHE" }, { - "codePostal": "55120", - "codeCommune": "55383", - "libelleAcheminement": "NEUVILLY EN ARGONNE", - "nomCommune": "NEUVILLY EN ARGONNE" + "codePostal": "15200", + "codeCommune": "15230", + "libelleAcheminement": "SOURNIAC", + "nomCommune": "SOURNIAC" }, { - "codePostal": "21390", - "codeCommune": "21430", - "libelleAcheminement": "MONTIGNY ST BARTHELEMY", - "nomCommune": "MONTIGNY ST BARTHELEMY" + "codePostal": "17150", + "codeCommune": "17236", + "libelleAcheminement": "MIRAMBEAU", + "nomCommune": "MIRAMBEAU" }, { - "codePostal": "22720", - "codeCommune": "22335", - "libelleAcheminement": "SENVEN LEHART", - "nomCommune": "SENVEN LEHART" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "60640", - "codeCommune": "60291", - "libelleAcheminement": "GUISCARD", - "nomCommune": "GUISCARD" + "codePostal": "28120", + "codeCommune": "28041", + "libelleAcheminement": "BLANDAINVILLE", + "nomCommune": "BLANDAINVILLE" }, { - "codePostal": "55120", - "codeCommune": "55385", - "libelleAcheminement": "NIXEVILLE BLERCOURT", - "nomCommune": "NIXEVILLE BLERCOURT" + "codePostal": "15100", + "codeCommune": "15235", + "libelleAcheminement": "LES TERNES", + "nomCommune": "LES TERNES" }, { - "codePostal": "21270", - "codeCommune": "21437", - "libelleAcheminement": "MONTMANCON", - "nomCommune": "MONTMANCON" + "codePostal": "17113", + "codeCommune": "17247", + "libelleAcheminement": "MORNAC SUR SEUDRE", + "nomCommune": "MORNAC SUR SEUDRE" }, { - "codePostal": "22560", - "codeCommune": "22343", - "libelleAcheminement": "TREBEURDEN", - "nomCommune": "TREBEURDEN" + "codePostal": "28480", + "codeCommune": "28105", + "libelleAcheminement": "COMBRES", + "nomCommune": "COMBRES" }, { - "codePostal": "60310", - "codeCommune": "60292", - "libelleAcheminement": "GURY", - "nomCommune": "GURY" + "codePostal": "28150", + "codeCommune": "28049", + "libelleAcheminement": "BONCE", + "nomCommune": "BONCE" }, { - "codePostal": "55210", - "codeCommune": "55386", - "libelleAcheminement": "NONSARD LAMARCHE", - "nomCommune": "NONSARD LAMARCHE" + "codePostal": "15600", + "codeCommune": "15242", + "libelleAcheminement": "LE TRIOULOU", + "nomCommune": "LE TRIOULOU" }, { - "codePostal": "21290", - "codeCommune": "21438", - "libelleAcheminement": "MONTMOYEN", - "nomCommune": "MONTMOYEN" + "codePostal": "17430", + "codeCommune": "17253", + "libelleAcheminement": "MURON", + "nomCommune": "MURON" }, { - "codePostal": "22510", - "codeCommune": "22345", - "libelleAcheminement": "TREBRY", - "nomCommune": "TREBRY" + "codePostal": "28140", + "codeCommune": "28114", + "libelleAcheminement": "COURBEHAYE", + "nomCommune": "COURBEHAYE" }, { - "codePostal": "60240", - "codeCommune": "60293", - "libelleAcheminement": "HADANCOURT LE HAUT CLOCHER", - "nomCommune": "HADANCOURT LE HAUT CLOCHER" + "codePostal": "28210", + "codeCommune": "28058", + "libelleAcheminement": "BRECHAMPS", + "nomCommune": "BRECHAMPS" }, { - "codePostal": "55800", - "codeCommune": "55388", - "libelleAcheminement": "NOYERS AUZECOURT", - "nomCommune": "NOYERS AUZECOURT" + "codePostal": "15100", + "codeCommune": "15245", + "libelleAcheminement": "VABRES", + "nomCommune": "VABRES" }, { - "codePostal": "21540", - "codeCommune": "21439", - "libelleAcheminement": "MONTOILLOT", - "nomCommune": "MONTOILLOT" + "codePostal": "17380", + "codeCommune": "17254", + "libelleAcheminement": "NACHAMPS", + "nomCommune": "NACHAMPS" }, { - "codePostal": "22300", - "codeCommune": "22349", - "libelleAcheminement": "TREDREZ LOCQUEMEAU", - "nomCommune": "TREDREZ LOCQUEMEAU" + "codePostal": "28190", + "codeCommune": "28116", + "libelleAcheminement": "COURVILLE SUR EURE", + "nomCommune": "COURVILLE SUR EURE" }, { - "codePostal": "60380", - "codeCommune": "60306", - "libelleAcheminement": "HECOURT", - "nomCommune": "HECOURT" + "codePostal": "28300", + "codeCommune": "28070", + "libelleAcheminement": "CHAMPHOL", + "nomCommune": "CHAMPHOL" }, { - "codePostal": "55800", - "codeCommune": "55388", - "libelleAcheminement": "NOYERS AUZECOURT", - "nomCommune": "NOYERS AUZECOURT" + "codePostal": "15170", + "codeCommune": "15247", + "libelleAcheminement": "VALJOUZE", + "nomCommune": "VALJOUZE" }, { - "codePostal": "21150", - "codeCommune": "21448", - "libelleAcheminement": "MUSSY LA FOSSE", - "nomCommune": "MUSSY LA FOSSE" + "codePostal": "17600", + "codeCommune": "17255", + "libelleAcheminement": "NANCRAS", + "nomCommune": "NANCRAS" }, { - "codePostal": "22310", - "codeCommune": "22350", - "libelleAcheminement": "TREDUDER", - "nomCommune": "TREDUDER" + "codePostal": "28140", + "codeCommune": "28121", + "libelleAcheminement": "DAMBRON", + "nomCommune": "DAMBRON" }, { - "codePostal": "60380", - "codeCommune": "60312", - "libelleAcheminement": "HERICOURT SUR THERAIN", - "nomCommune": "HERICOURT SUR THERAIN" + "codePostal": "28290", + "codeCommune": "28079", + "libelleAcheminement": "CHAPELLE ROYALE", + "nomCommune": "CHAPELLE ROYALE" }, { - "codePostal": "55160", - "codeCommune": "55399", - "libelleAcheminement": "PAREID", - "nomCommune": "PAREID" + "codePostal": "15240", + "codeCommune": "15250", + "libelleAcheminement": "VEBRET", + "nomCommune": "VEBRET" }, { - "codePostal": "21330", - "codeCommune": "21451", - "libelleAcheminement": "NESLE ET MASSOULT", - "nomCommune": "NESLE ET MASSOULT" + "codePostal": "17770", + "codeCommune": "17256", + "libelleAcheminement": "NANTILLE", + "nomCommune": "NANTILLE" }, { - "codePostal": "22290", - "codeCommune": "22361", - "libelleAcheminement": "TREGUIDEL", - "nomCommune": "TREGUIDEL" + "codePostal": "28100", + "codeCommune": "28134", + "libelleAcheminement": "DREUX", + "nomCommune": "DREUX" }, { - "codePostal": "60430", - "codeCommune": "60316", - "libelleAcheminement": "HODENC L EVEQUE", - "nomCommune": "HODENC L EVEQUE" + "codePostal": "28500", + "codeCommune": "28082", + "libelleAcheminement": "CHARPONT", + "nomCommune": "CHARPONT" }, { - "codePostal": "55400", - "codeCommune": "55400", - "libelleAcheminement": "PARFONDRUPT", - "nomCommune": "PARFONDRUPT" + "codePostal": "15120", + "codeCommune": "15260", + "libelleAcheminement": "VIEILLEVIE", + "nomCommune": "VIEILLEVIE" }, { - "codePostal": "21800", - "codeCommune": "21452", - "libelleAcheminement": "NEUILLY CRIMOLOIS", - "nomCommune": "NEUILLY CRIMOLOIS" + "codePostal": "17700", + "codeCommune": "17293", + "libelleAcheminement": "PUYRAVAULT", + "nomCommune": "PUYRAVAULT" }, { - "codePostal": "22290", - "codeCommune": "22370", - "libelleAcheminement": "TREMEVEN", - "nomCommune": "TREMEVEN" + "codePostal": "28270", + "codeCommune": "28143", + "libelleAcheminement": "ESCORPAIN", + "nomCommune": "ESCORPAIN" }, { - "codePostal": "60390", - "codeCommune": "60319", - "libelleAcheminement": "LA HOUSSOYE", - "nomCommune": "LA HOUSSOYE" + "codePostal": "28300", + "codeCommune": "28102", + "libelleAcheminement": "CLEVILLIERS", + "nomCommune": "CLEVILLIERS" }, { - "codePostal": "55150", - "codeCommune": "55403", - "libelleAcheminement": "PEUVILLERS", - "nomCommune": "PEUVILLERS" + "codePostal": "15300", + "codeCommune": "15263", + "libelleAcheminement": "VIRARGUES", + "nomCommune": "VIRARGUES" }, { - "codePostal": "21330", - "codeCommune": "21454", - "libelleAcheminement": "NICEY", - "nomCommune": "NICEY" + "codePostal": "17380", + "codeCommune": "17294", + "libelleAcheminement": "PUYROLLAND", + "nomCommune": "PUYROLLAND" }, { - "codePostal": "22230", - "codeCommune": "22371", - "libelleAcheminement": "TREMOREL", - "nomCommune": "TREMOREL" + "codePostal": "28340", + "codeCommune": "28149", + "libelleAcheminement": "LA FERTE VIDAME", + "nomCommune": "LA FERTE VIDAME" }, { - "codePostal": "60240", - "codeCommune": "60322", - "libelleAcheminement": "JAMERICOURT", - "nomCommune": "JAMERICOURT" + "codePostal": "28300", + "codeCommune": "28104", + "libelleAcheminement": "COLTAINVILLE", + "nomCommune": "COLTAINVILLE" }, { - "codePostal": "55230", - "codeCommune": "55405", - "libelleAcheminement": "PILLON", - "nomCommune": "PILLON" + "codePostal": "15140", + "codeCommune": "15269", + "libelleAcheminement": "BESSE", + "nomCommune": "BESSE" }, { - "codePostal": "21400", - "codeCommune": "21455", - "libelleAcheminement": "NOD SUR SEINE", - "nomCommune": "NOD SUR SEINE" + "codePostal": "17000", + "codeCommune": "17300", + "libelleAcheminement": "LA ROCHELLE", + "nomCommune": "LA ROCHELLE" }, { - "codePostal": "22600", - "codeCommune": "22376", - "libelleAcheminement": "TREVE", - "nomCommune": "TREVE" + "codePostal": "28140", + "codeCommune": "28157", + "libelleAcheminement": "FONTENAY SUR CONIE", + "nomCommune": "FONTENAY SUR CONIE" }, { - "codePostal": "60350", - "codeCommune": "60324", - "libelleAcheminement": "JAULZY", - "nomCommune": "JAULZY" + "codePostal": "28200", + "codeCommune": "28106", + "libelleAcheminement": "CONIE MOLITARD", + "nomCommune": "CONIE MOLITARD" }, { - "codePostal": "55800", - "codeCommune": "55414", - "libelleAcheminement": "RANCOURT SUR ORNAIN", - "nomCommune": "RANCOURT SUR ORNAIN" + "codePostal": "16700", + "codeCommune": "16002", + "libelleAcheminement": "LES ADJOTS", + "nomCommune": "LES ADJOTS" }, { - "codePostal": "21500", - "codeCommune": "21456", - "libelleAcheminement": "NOGENT LES MONTBARD", - "nomCommune": "NOGENT LES MONTBARD" + "codePostal": "17170", + "codeCommune": "17303", + "libelleAcheminement": "LA RONDE", + "nomCommune": "LA RONDE" }, { - "codePostal": "22290", - "codeCommune": "22378", - "libelleAcheminement": "TREVEREC", - "nomCommune": "TREVEREC" + "codePostal": "28300", + "codeCommune": "28163", + "libelleAcheminement": "FRESNAY LE GILMERT", + "nomCommune": "FRESNAY LE GILMERT" }, { - "codePostal": "60310", - "codeCommune": "60329", - "libelleAcheminement": "LABERLIERE", - "nomCommune": "LABERLIERE" + "codePostal": "28140", + "codeCommune": "28108", + "libelleAcheminement": "CORMAINVILLE", + "nomCommune": "CORMAINVILLE" }, { - "codePostal": "55140", - "codeCommune": "55434", - "libelleAcheminement": "RIGNY ST MARTIN", - "nomCommune": "RIGNY ST MARTIN" + "codePostal": "16140", + "codeCommune": "16005", + "libelleAcheminement": "AIGRE", + "nomCommune": "AIGRE" }, { - "codePostal": "21390", - "codeCommune": "21457", - "libelleAcheminement": "NOIDAN", - "nomCommune": "NOIDAN" + "codePostal": "17200", + "codeCommune": "17306", + "libelleAcheminement": "ROYAN", + "nomCommune": "ROYAN" }, { - "codePostal": "22450", - "codeCommune": "22383", - "libelleAcheminement": "TROGUERY", - "nomCommune": "TROGUERY" + "codePostal": "28310", + "codeCommune": "28164", + "libelleAcheminement": "FRESNAY L EVEQUE", + "nomCommune": "FRESNAY L EVEQUE" }, { - "codePostal": "60380", - "codeCommune": "60335", - "libelleAcheminement": "LACHAPELLE SOUS GERBEROY", - "nomCommune": "LACHAPELLE SOUS GERBEROY" + "codePostal": "28480", + "codeCommune": "28119", + "libelleAcheminement": "LA CROIX DU PERCHE", + "nomCommune": "LA CROIX DU PERCHE" }, { - "codePostal": "55160", - "codeCommune": "55439", - "libelleAcheminement": "RONVAUX", - "nomCommune": "RONVAUX" + "codePostal": "16490", + "codeCommune": "16007", + "libelleAcheminement": "ALLOUE", + "nomCommune": "ALLOUE" }, { - "codePostal": "21400", - "codeCommune": "21460", - "libelleAcheminement": "NOIRON SUR SEINE", - "nomCommune": "NOIRON SUR SEINE" + "codePostal": "17260", + "codeCommune": "17310", + "libelleAcheminement": "ST ANDRE DE LIDON", + "nomCommune": "ST ANDRE DE LIDON" }, { - "codePostal": "22800", - "codeCommune": "22386", - "libelleAcheminement": "LE VIEUX BOURG", - "nomCommune": "LE VIEUX BOURG" + "codePostal": "28700", + "codeCommune": "28169", + "libelleAcheminement": "GARANCIERES EN BEAUCE", + "nomCommune": "GARANCIERES EN BEAUCE" }, { - "codePostal": "60260", - "codeCommune": "60346", - "libelleAcheminement": "LAMORLAYE", - "nomCommune": "LAMORLAYE" + "codePostal": "28270", + "codeCommune": "28120", + "libelleAcheminement": "CRUCEY VILLAGES", + "nomCommune": "CRUCEY VILLAGES" }, { - "codePostal": "55400", - "codeCommune": "55443", - "libelleAcheminement": "ROUVRES EN WOEVRE", - "nomCommune": "ROUVRES EN WOEVRE" + "codePostal": "16000", + "codeCommune": "16015", + "libelleAcheminement": "ANGOULEME", + "nomCommune": "ANGOULEME" }, { - "codePostal": "21340", - "codeCommune": "21461", - "libelleAcheminement": "NOLAY", - "nomCommune": "NOLAY" + "codePostal": "17570", + "codeCommune": "17311", + "libelleAcheminement": "ST AUGUSTIN", + "nomCommune": "ST AUGUSTIN" }, { - "codePostal": "22420", - "codeCommune": "22387", - "libelleAcheminement": "LE VIEUX MARCHE", - "nomCommune": "LE VIEUX MARCHE" + "codePostal": "28500", + "codeCommune": "28171", + "libelleAcheminement": "GARNAY", + "nomCommune": "GARNAY" }, { - "codePostal": "60220", - "codeCommune": "60347", - "libelleAcheminement": "LANNOY CUILLERE", - "nomCommune": "LANNOY CUILLERE" + "codePostal": "28360", + "codeCommune": "28122", + "libelleAcheminement": "DAMMARIE", + "nomCommune": "DAMMARIE" }, { - "codePostal": "55230", - "codeCommune": "55445", - "libelleAcheminement": "ROUVROIS SUR OTHAIN", - "nomCommune": "ROUVROIS SUR OTHAIN" + "codePostal": "16460", + "codeCommune": "16023", + "libelleAcheminement": "AUNAC SUR CHARENTE", + "nomCommune": "AUNAC SUR CHARENTE" }, { - "codePostal": "21340", - "codeCommune": "21461", - "libelleAcheminement": "NOLAY", - "nomCommune": "NOLAY" + "codePostal": "17770", + "codeCommune": "17313", + "libelleAcheminement": "ST BRIS DES BOIS", + "nomCommune": "ST BRIS DES BOIS" }, { - "codePostal": "22120", - "codeCommune": "22389", - "libelleAcheminement": "YFFINIAC", - "nomCommune": "YFFINIAC" + "codePostal": "28320", + "codeCommune": "28172", + "libelleAcheminement": "GAS", + "nomCommune": "GAS" }, { - "codePostal": "60240", - "codeCommune": "60352", - "libelleAcheminement": "LATTAINVILLE", - "nomCommune": "LATTAINVILLE" + "codePostal": "28350", + "codeCommune": "28124", + "libelleAcheminement": "DAMPIERRE SUR AVRE", + "nomCommune": "DAMPIERRE SUR AVRE" }, { - "codePostal": "55220", - "codeCommune": "55453", - "libelleAcheminement": "ST ANDRE EN BARROIS", - "nomCommune": "ST ANDRE EN BARROIS" + "codePostal": "16560", + "codeCommune": "16024", + "libelleAcheminement": "AUSSAC VADALLE", + "nomCommune": "AUSSAC VADALLE" }, { - "codePostal": "21450", - "codeCommune": "21466", - "libelleAcheminement": "OIGNY", - "nomCommune": "OIGNY" + "codePostal": "17590", + "codeCommune": "17318", + "libelleAcheminement": "ST CLEMENT DES BALEINES", + "nomCommune": "ST CLEMENT DES BALEINES" }, { - "codePostal": "23210", - "codeCommune": "23006", - "libelleAcheminement": "ARRENES", - "nomCommune": "ARRENES" + "codePostal": "28160", + "codeCommune": "28182", + "libelleAcheminement": "GOHORY", + "nomCommune": "GOHORY" }, { - "codePostal": "60510", - "codeCommune": "60355", - "libelleAcheminement": "LAVERSINES", - "nomCommune": "LAVERSINES" + "codePostal": "28800", + "codeCommune": "28126", + "libelleAcheminement": "DANCY", + "nomCommune": "DANCY" }, { - "codePostal": "55500", - "codeCommune": "55454", - "libelleAcheminement": "ST AUBIN SUR AIRE", - "nomCommune": "ST AUBIN SUR AIRE" + "codePostal": "16360", + "codeCommune": "16025", + "libelleAcheminement": "BAIGNES STE RADEGONDE", + "nomCommune": "BAIGNES STE RADEGONDE" }, { - "codePostal": "21610", - "codeCommune": "21468", - "libelleAcheminement": "ORAIN", - "nomCommune": "ORAIN" + "codePostal": "17210", + "codeCommune": "17319", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "23700", - "codeCommune": "23013", - "libelleAcheminement": "AUZANCES", - "nomCommune": "AUZANCES" + "codePostal": "28700", + "codeCommune": "28194", + "libelleAcheminement": "HOUVILLE LA BRANCHE", + "nomCommune": "HOUVILLE LA BRANCHE" }, { - "codePostal": "60140", - "codeCommune": "60360", - "libelleAcheminement": "LIANCOURT", - "nomCommune": "LIANCOURT" + "codePostal": "28160", + "codeCommune": "28127", + "libelleAcheminement": "DANGEAU", + "nomCommune": "DANGEAU" }, { - "codePostal": "55160", - "codeCommune": "55457", - "libelleAcheminement": "ST HILAIRE EN WOEVRE", - "nomCommune": "ST HILAIRE EN WOEVRE" + "codePostal": "16430", + "codeCommune": "16026", + "libelleAcheminement": "BALZAC", + "nomCommune": "BALZAC" }, { - "codePostal": "21440", - "codeCommune": "21479", - "libelleAcheminement": "PELLEREY", - "nomCommune": "PELLEREY" + "codePostal": "17520", + "codeCommune": "17326", + "libelleAcheminement": "ST EUGENE", + "nomCommune": "ST EUGENE" }, { - "codePostal": "23120", - "codeCommune": "23016", - "libelleAcheminement": "BANIZE", - "nomCommune": "BANIZE" + "codePostal": "28310", + "codeCommune": "28199", + "libelleAcheminement": "JANVILLE EN BEAUCE", + "nomCommune": "JANVILLE EN BEAUCE" }, { - "codePostal": "60240", - "codeCommune": "60363", - "libelleAcheminement": "LIERVILLE", - "nomCommune": "LIERVILLE" + "codePostal": "28160", + "codeCommune": "28127", + "libelleAcheminement": "DANGEAU", + "nomCommune": "DANGEAU" }, { - "codePostal": "55130", - "codeCommune": "55459", - "libelleAcheminement": "ST JOIRE", - "nomCommune": "ST JOIRE" + "codePostal": "16120", + "codeCommune": "16032", + "libelleAcheminement": "BASSAC", + "nomCommune": "BASSAC" }, { - "codePostal": "21120", - "codeCommune": "21483", - "libelleAcheminement": "PICHANGES", - "nomCommune": "PICHANGES" + "codePostal": "17190", + "codeCommune": "17337", + "libelleAcheminement": "ST GEORGES D OLERON", + "nomCommune": "ST GEORGES D OLERON" }, { - "codePostal": "23600", - "codeCommune": "23032", - "libelleAcheminement": "BOUSSAC BOURG", - "nomCommune": "BOUSSAC BOURG" + "codePostal": "28270", + "codeCommune": "28206", + "libelleAcheminement": "LAONS", + "nomCommune": "LAONS" }, { - "codePostal": "60130", - "codeCommune": "60364", - "libelleAcheminement": "LIEUVILLERS", - "nomCommune": "LIEUVILLERS" + "codePostal": "28250", + "codeCommune": "28130", + "libelleAcheminement": "DIGNY", + "nomCommune": "DIGNY" }, { - "codePostal": "55500", - "codeCommune": "55472", - "libelleAcheminement": "SAULVAUX", - "nomCommune": "SAULVAUX" + "codePostal": "16250", + "codeCommune": "16036", + "libelleAcheminement": "BECHERESSE", + "nomCommune": "BECHERESSE" }, { - "codePostal": "21110", - "codeCommune": "21487", - "libelleAcheminement": "PLUVET", - "nomCommune": "PLUVET" + "codePostal": "17700", + "codeCommune": "17340", + "libelleAcheminement": "ST PIERRE LA NOUE", + "nomCommune": "ST PIERRE LA NOUE" }, { - "codePostal": "23000", - "codeCommune": "23033", - "libelleAcheminement": "LA BRIONNE", - "nomCommune": "LA BRIONNE" + "codePostal": "28700", + "codeCommune": "28207", + "libelleAcheminement": "LETHUIN", + "nomCommune": "LETHUIN" }, { - "codePostal": "60240", - "codeCommune": "60367", - "libelleAcheminement": "LOCONVILLE", - "nomCommune": "LOCONVILLE" + "codePostal": "28230", + "codeCommune": "28140", + "libelleAcheminement": "EPERNON", + "nomCommune": "EPERNON" }, { - "codePostal": "55000", - "codeCommune": "55479", - "libelleAcheminement": "SEIGNEULLES", - "nomCommune": "SEIGNEULLES" + "codePostal": "16210", + "codeCommune": "16037", + "libelleAcheminement": "BELLON", + "nomCommune": "BELLON" }, { - "codePostal": "21440", - "codeCommune": "21489", - "libelleAcheminement": "POISEUL LA GRANGE", - "nomCommune": "POISEUL LA GRANGE" + "codePostal": "17500", + "codeCommune": "17341", + "libelleAcheminement": "ST GERMAIN DE VIBRAC", + "nomCommune": "ST GERMAIN DE VIBRAC" }, { - "codePostal": "23110", - "codeCommune": "23046", - "libelleAcheminement": "CHAMBONCHARD", - "nomCommune": "CHAMBONCHARD" + "codePostal": "28700", + "codeCommune": "28208", + "libelleAcheminement": "LEVAINVILLE", + "nomCommune": "LEVAINVILLE" }, { - "codePostal": "60150", - "codeCommune": "60368", - "libelleAcheminement": "LONGUEIL ANNEL", - "nomCommune": "LONGUEIL ANNEL" + "codePostal": "28120", + "codeCommune": "28142", + "libelleAcheminement": "ERMENONVILLE LA PETITE", + "nomCommune": "ERMENONVILLE LA PETITE" }, { - "codePostal": "55220", - "codeCommune": "55482", - "libelleAcheminement": "SENONCOURT LES MAUJOUY", - "nomCommune": "SENONCOURT LES MAUJOUY" + "codePostal": "16120", + "codeCommune": "16045", + "libelleAcheminement": "BIRAC", + "nomCommune": "BIRAC" }, { - "codePostal": "21270", - "codeCommune": "21496", - "libelleAcheminement": "PONTAILLER SUR SAONE", - "nomCommune": "PONTAILLER SUR SAONE" + "codePostal": "17520", + "codeCommune": "17357", + "libelleAcheminement": "ST MAIGRIN", + "nomCommune": "ST MAIGRIN" }, { - "codePostal": "23160", - "codeCommune": "23050", - "libelleAcheminement": "LA CHAPELLE BALOUE", - "nomCommune": "LA CHAPELLE BALOUE" + "codePostal": "28300", + "codeCommune": "28209", + "libelleAcheminement": "LEVES", + "nomCommune": "LEVES" }, { - "codePostal": "60110", - "codeCommune": "60370", - "libelleAcheminement": "LORMAISON", - "nomCommune": "LORMAISON" + "codePostal": "28190", + "codeCommune": "28148", + "libelleAcheminement": "LE FAVRIL", + "nomCommune": "LE FAVRIL" }, { - "codePostal": "55300", - "codeCommune": "55487", - "libelleAcheminement": "SEUZEY", - "nomCommune": "SEUZEY" + "codePostal": "16250", + "codeCommune": "16046", + "libelleAcheminement": "COTEAUX DU BLANZACAIS", + "nomCommune": "COTEAUX DU BLANZACAIS" }, { - "codePostal": "21400", - "codeCommune": "21499", - "libelleAcheminement": "POTHIERES", - "nomCommune": "POTHIERES" + "codePostal": "17470", + "codeCommune": "17358", + "libelleAcheminement": "ST MANDE SUR BREDOIRE", + "nomCommune": "ST MANDE SUR BREDOIRE" }, { - "codePostal": "23130", - "codeCommune": "23058", - "libelleAcheminement": "LE CHAUCHET", - "nomCommune": "LE CHAUCHET" + "codePostal": "28300", + "codeCommune": "28229", + "libelleAcheminement": "MAINVILLIERS", + "nomCommune": "MAINVILLIERS" }, { - "codePostal": "60112", - "codeCommune": "60376", - "libelleAcheminement": "MAISONCELLE ST PIERRE", - "nomCommune": "MAISONCELLE ST PIERRE" + "codePostal": "28270", + "codeCommune": "28151", + "libelleAcheminement": "FESSANVILLIERS MATTANVILLIERS", + "nomCommune": "FESSANVILLIERS MATTANVILLIERS" }, { - "codePostal": "55000", - "codeCommune": "55504", - "libelleAcheminement": "TANNOIS", - "nomCommune": "TANNOIS" + "codePostal": "16350", + "codeCommune": "16054", + "libelleAcheminement": "LE BOUCHAGE", + "nomCommune": "LE BOUCHAGE" }, { - "codePostal": "21150", - "codeCommune": "21500", - "libelleAcheminement": "POUILLENAY", - "nomCommune": "POUILLENAY" + "codePostal": "17700", + "codeCommune": "17359", + "libelleAcheminement": "ST MARD", + "nomCommune": "ST MARD" }, { - "codePostal": "23200", - "codeCommune": "23059", - "libelleAcheminement": "LA CHAUSSADE", - "nomCommune": "LA CHAUSSADE" + "codePostal": "28270", + "codeCommune": "28231", + "libelleAcheminement": "LA MANCELIERE", + "nomCommune": "LA MANCELIERE" }, { - "codePostal": "60490", - "codeCommune": "60378", - "libelleAcheminement": "MAREST SUR MATZ", - "nomCommune": "MAREST SUR MATZ" + "codePostal": "28800", + "codeCommune": "28153", + "libelleAcheminement": "FLACEY", + "nomCommune": "FLACEY" }, { - "codePostal": "55210", - "codeCommune": "55507", - "libelleAcheminement": "THILLOT", - "nomCommune": "THILLOT" + "codePostal": "16120", + "codeCommune": "16057", + "libelleAcheminement": "BOUTEVILLE", + "nomCommune": "BOUTEVILLE" }, { - "codePostal": "21610", - "codeCommune": "21503", - "libelleAcheminement": "POUILLY SUR VINGEANNE", - "nomCommune": "POUILLY SUR VINGEANNE" + "codePostal": "17330", + "codeCommune": "17361", + "libelleAcheminement": "ST MARTIAL", + "nomCommune": "ST MARTIAL" }, { - "codePostal": "23700", - "codeCommune": "23066", - "libelleAcheminement": "LE COMPAS", - "nomCommune": "LE COMPAS" + "codePostal": "28200", + "codeCommune": "28233", + "libelleAcheminement": "MARBOUE", + "nomCommune": "MARBOUE" }, { - "codePostal": "60690", - "codeCommune": "60387", - "libelleAcheminement": "MARSEILLE EN BEAUVAISIS", - "nomCommune": "MARSEILLE EN BEAUVAISIS" + "codePostal": "28700", + "codeCommune": "28160", + "libelleAcheminement": "FRANCOURVILLE", + "nomCommune": "FRANCOURVILLE" }, { - "codePostal": "55000", - "codeCommune": "55514", - "libelleAcheminement": "TREMONT SUR SAULX", - "nomCommune": "TREMONT SUR SAULX" + "codePostal": "16100", + "codeCommune": "16058", + "libelleAcheminement": "BOUTIERS ST TROJAN", + "nomCommune": "BOUTIERS ST TROJAN" }, { - "codePostal": "21370", - "codeCommune": "21508", - "libelleAcheminement": "PRENOIS", - "nomCommune": "PRENOIS" + "codePostal": "17520", + "codeCommune": "17364", + "libelleAcheminement": "ST MARTIAL SUR NE", + "nomCommune": "ST MARTIAL SUR NE" }, { - "codePostal": "23500", - "codeCommune": "23071", - "libelleAcheminement": "CROZE", - "nomCommune": "CROZE" + "codePostal": "28400", + "codeCommune": "28236", + "libelleAcheminement": "ARCISSES", + "nomCommune": "ARCISSES" }, { - "codePostal": "60150", - "codeCommune": "60392", - "libelleAcheminement": "MELICOCQ", - "nomCommune": "MELICOCQ" + "codePostal": "28240", + "codeCommune": "28166", + "libelleAcheminement": "FRIAIZE", + "nomCommune": "FRIAIZE" }, { - "codePostal": "55250", - "codeCommune": "55517", - "libelleAcheminement": "SEUIL D ARGONNE", - "nomCommune": "SEUIL D ARGONNE" + "codePostal": "16370", + "codeCommune": "16060", + "libelleAcheminement": "BREVILLE", + "nomCommune": "BREVILLE" }, { - "codePostal": "21400", - "codeCommune": "21511", - "libelleAcheminement": "PUITS", - "nomCommune": "PUITS" + "codePostal": "17400", + "codeCommune": "17367", + "libelleAcheminement": "ST MARTIN DE JUILLERS", + "nomCommune": "ST MARTIN DE JUILLERS" }, { - "codePostal": "23480", - "codeCommune": "23086", - "libelleAcheminement": "FRANSECHES", - "nomCommune": "FRANSECHES" + "codePostal": "28240", + "codeCommune": "28240", + "libelleAcheminement": "MEAUCE", + "nomCommune": "MEAUCE" }, { - "codePostal": "60420", - "codeCommune": "60394", - "libelleAcheminement": "MENEVILLERS", - "nomCommune": "MENEVILLERS" + "codePostal": "28190", + "codeCommune": "28167", + "libelleAcheminement": "FRUNCE", + "nomCommune": "FRUNCE" }, { - "codePostal": "55500", - "codeCommune": "55518", - "libelleAcheminement": "COUSANCES LES TRICONVILLE", - "nomCommune": "COUSANCES LES TRICONVILLE" + "codePostal": "16250", + "codeCommune": "16075", + "libelleAcheminement": "CHAMPAGNE VIGNY", + "nomCommune": "CHAMPAGNE VIGNY" }, { - "codePostal": "21190", - "codeCommune": "21512", - "libelleAcheminement": "PULIGNY MONTRACHET", - "nomCommune": "PULIGNY MONTRACHET" + "codePostal": "17410", + "codeCommune": "17369", + "libelleAcheminement": "ST MARTIN DE RE", + "nomCommune": "ST MARTIN DE RE" }, { - "codePostal": "23340", - "codeCommune": "23090", - "libelleAcheminement": "GENTIOUX PIGEROLLES", - "nomCommune": "GENTIOUX PIGEROLLES" + "codePostal": "28310", + "codeCommune": "28243", + "libelleAcheminement": "MEROUVILLE", + "nomCommune": "MEROUVILLE" }, { - "codePostal": "60210", - "codeCommune": "60397", - "libelleAcheminement": "LE MESNIL CONTEVILLE", - "nomCommune": "LE MESNIL CONTEVILLE" + "codePostal": "28400", + "codeCommune": "28175", + "libelleAcheminement": "LA GAUDAINE", + "nomCommune": "LA GAUDAINE" }, { - "codePostal": "55500", - "codeCommune": "55518", - "libelleAcheminement": "COUSANCES LES TRICONVILLE", - "nomCommune": "COUSANCES LES TRICONVILLE" + "codePostal": "16290", + "codeCommune": "16077", + "libelleAcheminement": "CHAMPMILLON", + "nomCommune": "CHAMPMILLON" }, { - "codePostal": "21510", - "codeCommune": "21514", - "libelleAcheminement": "QUEMIGNY SUR SEINE", - "nomCommune": "QUEMIGNY SUR SEINE" + "codePostal": "17220", + "codeCommune": "17373", + "libelleAcheminement": "ST MEDARD D AUNIS", + "nomCommune": "ST MEDARD D AUNIS" }, { - "codePostal": "23240", - "codeCommune": "23095", - "libelleAcheminement": "LE GRAND BOURG", - "nomCommune": "LE GRAND BOURG" + "codePostal": "28360", + "codeCommune": "28246", + "libelleAcheminement": "MESLAY LE VIDAME", + "nomCommune": "MESLAY LE VIDAME" }, { - "codePostal": "60112", - "codeCommune": "60403", - "libelleAcheminement": "MILLY SUR THERAIN", - "nomCommune": "MILLY SUR THERAIN" + "codePostal": "28310", + "codeCommune": "28183", + "libelleAcheminement": "GOMMERVILLE", + "nomCommune": "GOMMERVILLE" }, { - "codePostal": "55300", - "codeCommune": "55521", - "libelleAcheminement": "TROYON", - "nomCommune": "TROYON" + "codePostal": "16360", + "codeCommune": "16079", + "libelleAcheminement": "CHANTILLAC", + "nomCommune": "CHANTILLAC" }, { - "codePostal": "21800", - "codeCommune": "21515", - "libelleAcheminement": "QUETIGNY", - "nomCommune": "QUETIGNY" + "codePostal": "17210", + "codeCommune": "17378", + "libelleAcheminement": "ST PALAIS DE NEGRIGNAC", + "nomCommune": "ST PALAIS DE NEGRIGNAC" }, { - "codePostal": "23130", - "codeCommune": "23097", - "libelleAcheminement": "ISSOUDUN LETRIEIX", - "nomCommune": "ISSOUDUN LETRIEIX" + "codePostal": "28500", + "codeCommune": "28251", + "libelleAcheminement": "MEZIERES EN DROUAIS", + "nomCommune": "MEZIERES EN DROUAIS" }, { - "codePostal": "60220", - "codeCommune": "60407", - "libelleAcheminement": "MONCEAUX L ABBAYE", - "nomCommune": "MONCEAUX L ABBAYE" + "codePostal": "28140", + "codeCommune": "28190", + "libelleAcheminement": "GUILLONVILLE", + "nomCommune": "GUILLONVILLE" }, { - "codePostal": "55270", - "codeCommune": "55527", - "libelleAcheminement": "VARENNES EN ARGONNE", - "nomCommune": "VARENNES EN ARGONNE" + "codePostal": "16100", + "codeCommune": "16089", + "libelleAcheminement": "CHATEAUBERNARD", + "nomCommune": "CHATEAUBERNARD" }, { - "codePostal": "21540", - "codeCommune": "21520", - "libelleAcheminement": "REMILLY EN MONTAGNE", - "nomCommune": "REMILLY EN MONTAGNE" + "codePostal": "17800", + "codeCommune": "17379", + "libelleAcheminement": "ST PALAIS DE PHIOLIN", + "nomCommune": "ST PALAIS DE PHIOLIN" }, { - "codePostal": "23270", - "codeCommune": "23102", - "libelleAcheminement": "LADAPEYRE", - "nomCommune": "LADAPEYRE" + "codePostal": "28480", + "codeCommune": "28252", + "libelleAcheminement": "MIERMAIGNE", + "nomCommune": "MIERMAIGNE" }, { - "codePostal": "60810", - "codeCommune": "60415", - "libelleAcheminement": "MONTEPILLOY", - "nomCommune": "MONTEPILLOY" + "codePostal": "28480", + "codeCommune": "28192", + "libelleAcheminement": "HAPPONVILLIERS", + "nomCommune": "HAPPONVILLIERS" }, { - "codePostal": "55140", - "codeCommune": "55533", - "libelleAcheminement": "VAUCOULEURS", - "nomCommune": "VAUCOULEURS" + "codePostal": "16480", + "codeCommune": "16091", + "libelleAcheminement": "CHATIGNAC", + "nomCommune": "CHATIGNAC" }, { - "codePostal": "21560", - "codeCommune": "21521", - "libelleAcheminement": "REMILLY SUR TILLE", - "nomCommune": "REMILLY SUR TILLE" + "codePostal": "17330", + "codeCommune": "17384", + "libelleAcheminement": "ST PIERRE DE L ISLE", + "nomCommune": "ST PIERRE DE L ISLE" }, { - "codePostal": "23220", - "codeCommune": "23109", - "libelleAcheminement": "LINARD MALVAL", - "nomCommune": "LINARD MALVAL" + "codePostal": "28190", + "codeCommune": "28254", + "libelleAcheminement": "MITTAINVILLIERS VERIGNY", + "nomCommune": "MITTAINVILLIERS VERIGNY" }, { - "codePostal": "60420", - "codeCommune": "60416", - "libelleAcheminement": "MONTGERAIN", - "nomCommune": "MONTGERAIN" + "codePostal": "28130", + "codeCommune": "28195", + "libelleAcheminement": "HOUX", + "nomCommune": "HOUX" }, { - "codePostal": "55500", - "codeCommune": "55543", - "libelleAcheminement": "VELAINES", - "nomCommune": "VELAINES" + "codePostal": "16370", + "codeCommune": "16097", + "libelleAcheminement": "CHERVES RICHEMONT", + "nomCommune": "CHERVES RICHEMONT" }, { - "codePostal": "21340", - "codeCommune": "21527", - "libelleAcheminement": "LA ROCHEPOT", - "nomCommune": "LA ROCHEPOT" + "codePostal": "17250", + "codeCommune": "17387", + "libelleAcheminement": "ST PORCHAIRE", + "nomCommune": "ST PORCHAIRE" }, { - "codePostal": "23360", - "codeCommune": "23112", - "libelleAcheminement": "LOURDOUEIX ST PIERRE", - "nomCommune": "LOURDOUEIX ST PIERRE" + "codePostal": "28190", + "codeCommune": "28254", + "libelleAcheminement": "MITTAINVILLIERS VERIGNY", + "nomCommune": "MITTAINVILLIERS VERIGNY" }, { - "codePostal": "60150", - "codeCommune": "60423", - "libelleAcheminement": "MONTMACQ", - "nomCommune": "MONTMACQ" + "codePostal": "28120", + "codeCommune": "28196", + "libelleAcheminement": "ILLIERS COMBRAY", + "nomCommune": "ILLIERS COMBRAY" }, { - "codePostal": "55100", - "codeCommune": "55545", - "libelleAcheminement": "VERDUN", - "nomCommune": "VERDUN" + "codePostal": "16240", + "codeCommune": "16098", + "libelleAcheminement": "LA CHEVRERIE", + "nomCommune": "LA CHEVRERIE" }, { - "codePostal": "21150", - "codeCommune": "21528", - "libelleAcheminement": "LA ROCHE VANNEAU", - "nomCommune": "LA ROCHE VANNEAU" + "codePostal": "17800", + "codeCommune": "17388", + "libelleAcheminement": "ST QUANTIN DE RANCANNE", + "nomCommune": "ST QUANTIN DE RANCANNE" }, { - "codePostal": "23190", - "codeCommune": "23113", - "libelleAcheminement": "LUPERSAT", - "nomCommune": "LUPERSAT" + "codePostal": "28140", + "codeCommune": "28283", + "libelleAcheminement": "NOTTONVILLE", + "nomCommune": "NOTTONVILLE" }, { - "codePostal": "60480", - "codeCommune": "60425", - "libelleAcheminement": "MONTREUIL SUR BRECHE", - "nomCommune": "MONTREUIL SUR BRECHE" + "codePostal": "28310", + "codeCommune": "28199", + "libelleAcheminement": "JANVILLE EN BEAUCE", + "nomCommune": "JANVILLE EN BEAUCE" }, { - "codePostal": "55210", - "codeCommune": "55551", - "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", - "nomCommune": "VIGNEULLES LES HATTONCHATEL" + "codePostal": "16360", + "codeCommune": "16105", + "libelleAcheminement": "CONDEON", + "nomCommune": "CONDEON" }, { - "codePostal": "21500", - "codeCommune": "21530", - "libelleAcheminement": "ROUGEMONT", - "nomCommune": "ROUGEMONT" + "codePostal": "17700", + "codeCommune": "17394", + "libelleAcheminement": "ST SATURNIN DU BOIS", + "nomCommune": "ST SATURNIN DU BOIS" }, { - "codePostal": "23260", - "codeCommune": "23115", - "libelleAcheminement": "MAGNAT L ETRANGE", - "nomCommune": "MAGNAT L ETRANGE" + "codePostal": "28700", + "codeCommune": "28285", + "libelleAcheminement": "OINVILLE SOUS AUNEAU", + "nomCommune": "OINVILLE SOUS AUNEAU" }, { - "codePostal": "60119", - "codeCommune": "60427", - "libelleAcheminement": "MONTS", - "nomCommune": "MONTS" + "codePostal": "28310", + "codeCommune": "28210", + "libelleAcheminement": "LEVESVILLE LA CHENARD", + "nomCommune": "LEVESVILLE LA CHENARD" }, { - "codePostal": "55150", - "codeCommune": "55556", - "libelleAcheminement": "VILLE DEVANT CHAUMONT", - "nomCommune": "VILLE DEVANT CHAUMONT" + "codePostal": "16500", + "codeCommune": "16106", + "libelleAcheminement": "CONFOLENS", + "nomCommune": "CONFOLENS" }, { - "codePostal": "21490", - "codeCommune": "21535", - "libelleAcheminement": "RUFFEY LES ECHIREY", - "nomCommune": "RUFFEY LES ECHIREY" + "codePostal": "17330", + "codeCommune": "17401", + "libelleAcheminement": "ST SEVERIN SUR BOUTONNE", + "nomCommune": "ST SEVERIN SUR BOUTONNE" }, { - "codePostal": "23600", - "codeCommune": "23120", - "libelleAcheminement": "MALLERET BOUSSAC", - "nomCommune": "MALLERET BOUSSAC" + "codePostal": "28120", + "codeCommune": "28286", + "libelleAcheminement": "OLLE", + "nomCommune": "OLLE" }, { - "codePostal": "60530", - "codeCommune": "60429", - "libelleAcheminement": "MORANGLES", - "nomCommune": "MORANGLES" + "codePostal": "28150", + "codeCommune": "28215", + "libelleAcheminement": "LOUVILLE LA CHENARD", + "nomCommune": "LOUVILLE LA CHENARD" }, { - "codePostal": "55220", - "codeCommune": "55566", - "libelleAcheminement": "VILLERS SUR MEUSE", - "nomCommune": "VILLERS SUR MEUSE" + "codePostal": "16400", + "codeCommune": "16113", + "libelleAcheminement": "LA COURONNE", + "nomCommune": "LA COURONNE" }, { - "codePostal": "21210", - "codeCommune": "21546", - "libelleAcheminement": "ST DIDIER", - "nomCommune": "ST DIDIER" + "codePostal": "17220", + "codeCommune": "17407", + "libelleAcheminement": "STE SOULLE", + "nomCommune": "STE SOULLE" }, { - "codePostal": "23210", - "codeCommune": "23124", - "libelleAcheminement": "MARSAC", - "nomCommune": "MARSAC" + "codePostal": "28210", + "codeCommune": "28289", + "libelleAcheminement": "ORMOY", + "nomCommune": "ORMOY" }, { - "codePostal": "60440", - "codeCommune": "60446", - "libelleAcheminement": "NANTEUIL LE HAUDOUIN", - "nomCommune": "NANTEUIL LE HAUDOUIN" + "codePostal": "28480", + "codeCommune": "28219", + "libelleAcheminement": "LUIGNY", + "nomCommune": "LUIGNY" }, { - "codePostal": "55110", - "codeCommune": "55571", - "libelleAcheminement": "VILOSNES HARAUMONT", - "nomCommune": "VILOSNES HARAUMONT" + "codePostal": "16460", + "codeCommune": "16114", + "libelleAcheminement": "COUTURE", + "nomCommune": "COUTURE" }, { - "codePostal": "21170", - "codeCommune": "21554", - "libelleAcheminement": "ST JEAN DE LOSNE", - "nomCommune": "ST JEAN DE LOSNE" + "codePostal": "17250", + "codeCommune": "17408", + "libelleAcheminement": "ST SULPICE D ARNOULT", + "nomCommune": "ST SULPICE D ARNOULT" }, { - "codePostal": "23100", - "codeCommune": "23125", - "libelleAcheminement": "LE MAS D ARTIGE", - "nomCommune": "LE MAS D ARTIGE" + "codePostal": "28190", + "codeCommune": "28290", + "libelleAcheminement": "ORROUER", + "nomCommune": "ORROUER" }, { - "codePostal": "60530", - "codeCommune": "60450", - "libelleAcheminement": "NEUILLY EN THELLE", - "nomCommune": "NEUILLY EN THELLE" + "codePostal": "28500", + "codeCommune": "28223", + "libelleAcheminement": "LURAY", + "nomCommune": "LURAY" }, { - "codePostal": "55150", - "codeCommune": "55572", - "libelleAcheminement": "VITTARVILLE", - "nomCommune": "VITTARVILLE" + "codePostal": "16410", + "codeCommune": "16119", + "libelleAcheminement": "DIGNAC", + "nomCommune": "DIGNAC" }, { - "codePostal": "21450", - "codeCommune": "21557", - "libelleAcheminement": "ST MARC SUR SEINE", - "nomCommune": "ST MARC SUR SEINE" + "codePostal": "17150", + "codeCommune": "17410", + "libelleAcheminement": "ST THOMAS DE CONAC", + "nomCommune": "ST THOMAS DE CONAC" }, { - "codePostal": "23420", - "codeCommune": "23131", - "libelleAcheminement": "MERINCHAL", - "nomCommune": "MERINCHAL" + "codePostal": "28260", + "codeCommune": "28293", + "libelleAcheminement": "OULINS", + "nomCommune": "OULINS" }, { - "codePostal": "60190", - "codeCommune": "60456", - "libelleAcheminement": "LA NEUVILLE ROY", - "nomCommune": "LA NEUVILLE ROY" + "codePostal": "28170", + "codeCommune": "28226", + "libelleAcheminement": "MAILLEBOIS", + "nomCommune": "MAILLEBOIS" }, { - "codePostal": "55190", - "codeCommune": "55573", - "libelleAcheminement": "VOID VACON", - "nomCommune": "VOID VACON" + "codePostal": "16220", + "codeCommune": "16124", + "libelleAcheminement": "ECURAS", + "nomCommune": "ECURAS" }, { - "codePostal": "21200", - "codeCommune": "21558", - "libelleAcheminement": "STE MARIE LA BLANCHE", - "nomCommune": "STE MARIE LA BLANCHE" + "codePostal": "17150", + "codeCommune": "17423", + "libelleAcheminement": "SEMILLAC", + "nomCommune": "SEMILLAC" }, { - "codePostal": "23150", - "codeCommune": "23138", - "libelleAcheminement": "MOUTIER D AHUN", - "nomCommune": "MOUTIER D AHUN" + "codePostal": "28800", + "codeCommune": "28306", + "libelleAcheminement": "PRE ST MARTIN", + "nomCommune": "PRE ST MARTIN" }, { - "codePostal": "60510", - "codeCommune": "60461", - "libelleAcheminement": "NIVILLERS", - "nomCommune": "NIVILLERS" + "codePostal": "28130", + "codeCommune": "28227", + "libelleAcheminement": "MAINTENON", + "nomCommune": "MAINTENON" }, { - "codePostal": "55190", - "codeCommune": "55573", - "libelleAcheminement": "VOID VACON", - "nomCommune": "VOID VACON" + "codePostal": "16320", + "codeCommune": "16125", + "libelleAcheminement": "EDON", + "nomCommune": "EDON" }, { - "codePostal": "21410", - "codeCommune": "21559", - "libelleAcheminement": "STE MARIE SUR OUCHE", - "nomCommune": "STE MARIE SUR OUCHE" + "codePostal": "17150", + "codeCommune": "17424", + "libelleAcheminement": "SEMOUSSAC", + "nomCommune": "SEMOUSSAC" }, { - "codePostal": "23220", - "codeCommune": "23139", - "libelleAcheminement": "MOUTIER MALCARD", - "nomCommune": "MOUTIER MALCARD" + "codePostal": "28340", + "codeCommune": "28314", + "libelleAcheminement": "LES RESSUINTES", + "nomCommune": "LES RESSUINTES" }, { - "codePostal": "60210", - "codeCommune": "60472", - "libelleAcheminement": "OFFOY", - "nomCommune": "OFFOY" + "codePostal": "28120", + "codeCommune": "28234", + "libelleAcheminement": "MARCHEVILLE", + "nomCommune": "MARCHEVILLE" }, { - "codePostal": "55130", - "codeCommune": "55574", - "libelleAcheminement": "VOUTHON BAS", - "nomCommune": "VOUTHON BAS" + "codePostal": "16250", + "codeCommune": "16133", + "libelleAcheminement": "ETRIAC", + "nomCommune": "ETRIAC" }, { - "codePostal": "21170", - "codeCommune": "21581", - "libelleAcheminement": "SAMEREY", - "nomCommune": "SAMEREY" + "codePostal": "17770", + "codeCommune": "17426", + "libelleAcheminement": "LE SEURE", + "nomCommune": "LE SEURE" }, { - "codePostal": "23360", - "codeCommune": "23147", - "libelleAcheminement": "NOUZEROLLES", - "nomCommune": "NOUZEROLLES" + "codePostal": "28120", + "codeCommune": "28326", + "libelleAcheminement": "ST AVIT LES GUESPIERES", + "nomCommune": "ST AVIT LES GUESPIERES" }, { - "codePostal": "60310", - "codeCommune": "60474", - "libelleAcheminement": "OGNOLLES", - "nomCommune": "OGNOLLES" + "codePostal": "28410", + "codeCommune": "28235", + "libelleAcheminement": "MARCHEZAIS", + "nomCommune": "MARCHEZAIS" }, { - "codePostal": "55400", - "codeCommune": "55578", - "libelleAcheminement": "WARCQ", - "nomCommune": "WARCQ" + "codePostal": "16410", + "codeCommune": "16146", + "libelleAcheminement": "GARAT", + "nomCommune": "GARAT" }, { - "codePostal": "21590", - "codeCommune": "21582", - "libelleAcheminement": "SANTENAY", - "nomCommune": "SANTENAY" + "codePostal": "17170", + "codeCommune": "17439", + "libelleAcheminement": "TAUGON", + "nomCommune": "TAUGON" }, { - "codePostal": "23250", - "codeCommune": "23155", - "libelleAcheminement": "PONTARION", - "nomCommune": "PONTARION" + "codePostal": "28200", + "codeCommune": "28330", + "libelleAcheminement": "VILLEMAURY", + "nomCommune": "VILLEMAURY" }, { - "codePostal": "60510", - "codeCommune": "60480", - "libelleAcheminement": "OROER", - "nomCommune": "OROER" + "codePostal": "28240", + "codeCommune": "28265", + "libelleAcheminement": "MONTLANDON", + "nomCommune": "MONTLANDON" }, { - "codePostal": "56350", - "codeCommune": "56001", - "libelleAcheminement": "ALLAIRE", - "nomCommune": "ALLAIRE" + "codePostal": "16320", + "codeCommune": "16147", + "libelleAcheminement": "GARDES LE PONTAROUX", + "nomCommune": "GARDES LE PONTAROUX" }, { - "codePostal": "21120", - "codeCommune": "21587", - "libelleAcheminement": "SAULX LE DUC", - "nomCommune": "SAULX LE DUC" + "codePostal": "17400", + "codeCommune": "17440", + "libelleAcheminement": "TERNANT", + "nomCommune": "TERNANT" }, { - "codePostal": "23130", - "codeCommune": "23159", - "libelleAcheminement": "PUY MALSIGNAT", - "nomCommune": "PUY MALSIGNAT" + "codePostal": "28500", + "codeCommune": "28332", + "libelleAcheminement": "STE GEMME MORONVAL", + "nomCommune": "STE GEMME MORONVAL" }, { - "codePostal": "60120", - "codeCommune": "60486", - "libelleAcheminement": "PAILLART", - "nomCommune": "PAILLART" + "codePostal": "28500", + "codeCommune": "28267", + "libelleAcheminement": "MONTREUIL", + "nomCommune": "MONTREUIL" }, { - "codePostal": "56190", - "codeCommune": "56002", - "libelleAcheminement": "AMBON", - "nomCommune": "AMBON" + "codePostal": "16480", + "codeCommune": "16161", + "libelleAcheminement": "GUIZENGEARD", + "nomCommune": "GUIZENGEARD" }, { - "codePostal": "21540", - "codeCommune": "21592", - "libelleAcheminement": "SAVIGNY SOUS MALAIN", - "nomCommune": "SAVIGNY SOUS MALAIN" + "codePostal": "17160", + "codeCommune": "17446", + "libelleAcheminement": "THORS", + "nomCommune": "THORS" }, { - "codePostal": "23110", - "codeCommune": "23167", - "libelleAcheminement": "SANNAT", - "nomCommune": "SANNAT" + "codePostal": "28240", + "codeCommune": "28333", + "libelleAcheminement": "ST DENIS DES PUITS", + "nomCommune": "ST DENIS DES PUITS" }, { - "codePostal": "60350", - "codeCommune": "60491", - "libelleAcheminement": "PIERREFONDS", - "nomCommune": "PIERREFONDS" + "codePostal": "28210", + "codeCommune": "28279", + "libelleAcheminement": "NOGENT LE ROI", + "nomCommune": "NOGENT LE ROI" }, { - "codePostal": "56190", - "codeCommune": "56004", - "libelleAcheminement": "ARZAL", - "nomCommune": "ARZAL" + "codePostal": "16320", + "codeCommune": "16162", + "libelleAcheminement": "GURAT", + "nomCommune": "GURAT" }, { - "codePostal": "21220", - "codeCommune": "21597", - "libelleAcheminement": "SEGROIS", - "nomCommune": "SEGROIS" + "codePostal": "17290", + "codeCommune": "17447", + "libelleAcheminement": "LE THOU", + "nomCommune": "LE THOU" }, { - "codePostal": "23250", - "codeCommune": "23168", - "libelleAcheminement": "SARDENT", - "nomCommune": "SARDENT" + "codePostal": "28800", + "codeCommune": "28353", + "libelleAcheminement": "ST MAUR SUR LE LOIR", + "nomCommune": "ST MAUR SUR LE LOIR" }, { - "codePostal": "60128", - "codeCommune": "60494", - "libelleAcheminement": "PLAILLY", - "nomCommune": "PLAILLY" + "codePostal": "28120", + "codeCommune": "28282", + "libelleAcheminement": "NONVILLIERS GRANDHOUX", + "nomCommune": "NONVILLIERS GRANDHOUX" }, { - "codePostal": "56380", - "codeCommune": "56012", - "libelleAcheminement": "BEIGNON", - "nomCommune": "BEIGNON" + "codePostal": "16200", + "codeCommune": "16167", + "libelleAcheminement": "JARNAC", + "nomCommune": "JARNAC" }, { - "codePostal": "21250", - "codeCommune": "21607", - "libelleAcheminement": "SEURRE", - "nomCommune": "SEURRE" + "codePostal": "17430", + "codeCommune": "17449", + "libelleAcheminement": "TONNAY CHARENTE", + "nomCommune": "TONNAY CHARENTE" }, { - "codePostal": "23000", - "codeCommune": "23169", - "libelleAcheminement": "LA SAUNIERE", - "nomCommune": "LA SAUNIERE" + "codePostal": "28130", + "codeCommune": "28357", + "libelleAcheminement": "ST PIAT", + "nomCommune": "ST PIAT" }, { - "codePostal": "60130", - "codeCommune": "60495", - "libelleAcheminement": "PLAINVAL", - "nomCommune": "PLAINVAL" + "codePostal": "28150", + "codeCommune": "28291", + "libelleAcheminement": "OUARVILLE", + "nomCommune": "OUARVILLE" }, { - "codePostal": "56240", - "codeCommune": "56014", - "libelleAcheminement": "BERNE", - "nomCommune": "BERNE" + "codePostal": "16250", + "codeCommune": "16175", + "libelleAcheminement": "VAL DES VIGNES", + "nomCommune": "VAL DES VIGNES" }, { - "codePostal": "21110", - "codeCommune": "21609", - "libelleAcheminement": "SOIRANS", - "nomCommune": "SOIRANS" + "codePostal": "17130", + "codeCommune": "17454", + "libelleAcheminement": "TUGERAS ST MAURICE", + "nomCommune": "TUGERAS ST MAURICE" }, { - "codePostal": "23700", - "codeCommune": "23171", - "libelleAcheminement": "SERMUR", - "nomCommune": "SERMUR" + "codePostal": "28240", + "codeCommune": "28362", + "libelleAcheminement": "ST VICTOR DE BUTHON", + "nomCommune": "ST VICTOR DE BUTHON" }, { - "codePostal": "60640", - "codeCommune": "60502", - "libelleAcheminement": "LE PLESSIS PATTE D OIE", - "nomCommune": "LE PLESSIS PATTE D OIE" + "codePostal": "28500", + "codeCommune": "28292", + "libelleAcheminement": "OUERRE", + "nomCommune": "OUERRE" }, { - "codePostal": "56500", - "codeCommune": "56017", - "libelleAcheminement": "BIGNAN", - "nomCommune": "BIGNAN" + "codePostal": "16300", + "codeCommune": "16178", + "libelleAcheminement": "LAGARDE SUR LE NE", + "nomCommune": "LAGARDE SUR LE NE" }, { - "codePostal": "21120", - "codeCommune": "21614", - "libelleAcheminement": "SPOY", - "nomCommune": "SPOY" + "codePostal": "17250", + "codeCommune": "17455", + "libelleAcheminement": "LA VALLEE", + "nomCommune": "LA VALLEE" }, { - "codePostal": "23190", - "codeCommune": "23172", - "libelleAcheminement": "LA SERRE BUSSIERE VIEILLE", - "nomCommune": "LA SERRE BUSSIERE VIEILLE" + "codePostal": "28800", + "codeCommune": "28364", + "libelleAcheminement": "SANCHEVILLE", + "nomCommune": "SANCHEVILLE" }, { - "codePostal": "60420", - "codeCommune": "60503", - "libelleAcheminement": "LE PLOYRON", - "nomCommune": "LE PLOYRON" + "codePostal": "28700", + "codeCommune": "28294", + "libelleAcheminement": "OYSONVILLE", + "nomCommune": "OYSONVILLE" }, { - "codePostal": "56190", - "codeCommune": "56018", - "libelleAcheminement": "BILLIERS", - "nomCommune": "BILLIERS" + "codePostal": "16700", + "codeCommune": "16189", + "libelleAcheminement": "LONDIGNY", + "nomCommune": "LONDIGNY" }, { - "codePostal": "21430", - "codeCommune": "21615", - "libelleAcheminement": "SUSSEY", - "nomCommune": "SUSSEY" + "codePostal": "17460", + "codeCommune": "17460", + "libelleAcheminement": "VARZAY", + "nomCommune": "VARZAY" }, { - "codePostal": "23150", - "codeCommune": "23175", - "libelleAcheminement": "SOUS PARSAT", - "nomCommune": "SOUS PARSAT" + "codePostal": "28310", + "codeCommune": "28367", + "libelleAcheminement": "SANTILLY", + "nomCommune": "SANTILLY" }, { - "codePostal": "60400", - "codeCommune": "60507", - "libelleAcheminement": "PONTOISE LES NOYON", - "nomCommune": "PONTOISE LES NOYON" + "codePostal": "28140", + "codeCommune": "28296", + "libelleAcheminement": "PERONVILLE", + "nomCommune": "PERONVILLE" }, { - "codePostal": "56390", - "codeCommune": "56022", - "libelleAcheminement": "BRANDIVY", - "nomCommune": "BRANDIVY" + "codePostal": "16270", + "codeCommune": "16192", + "libelleAcheminement": "TERRES DE HAUTE CHARENTE", + "nomCommune": "TERRES DE HAUTE CHARENTE" }, { - "codePostal": "21240", - "codeCommune": "21617", - "libelleAcheminement": "TALANT", - "nomCommune": "TALANT" + "codePostal": "17230", + "codeCommune": "17472", + "libelleAcheminement": "VILLEDOUX", + "nomCommune": "VILLEDOUX" }, { - "codePostal": "23300", - "codeCommune": "23176", - "libelleAcheminement": "LA SOUTERRAINE", - "nomCommune": "LA SOUTERRAINE" + "codePostal": "28250", + "codeCommune": "28368", + "libelleAcheminement": "LA SAUCELLE", + "nomCommune": "LA SAUCELLE" }, { - "codePostal": "60460", - "codeCommune": "60513", - "libelleAcheminement": "PRECY SUR OISE", - "nomCommune": "PRECY SUR OISE" + "codePostal": "28210", + "codeCommune": "28299", + "libelleAcheminement": "LES PINTHIERES", + "nomCommune": "LES PINTHIERES" }, { - "codePostal": "56310", - "codeCommune": "56026", - "libelleAcheminement": "BUBRY", - "nomCommune": "BUBRY" + "codePostal": "16270", + "codeCommune": "16192", + "libelleAcheminement": "TERRES DE HAUTE CHARENTE", + "nomCommune": "TERRES DE HAUTE CHARENTE" }, { - "codePostal": "21210", - "codeCommune": "21629", - "libelleAcheminement": "THOISY LA BERCHERE", - "nomCommune": "THOISY LA BERCHERE" + "codePostal": "17510", + "codeCommune": "17477", + "libelleAcheminement": "VILLIERS COUTURE", + "nomCommune": "VILLIERS COUTURE" }, { - "codePostal": "23130", - "codeCommune": "23185", - "libelleAcheminement": "ST CHABRAIS", - "nomCommune": "ST CHABRAIS" + "codePostal": "28500", + "codeCommune": "28369", + "libelleAcheminement": "SAULNIERES", + "nomCommune": "SAULNIERES" }, { - "codePostal": "60620", - "codeCommune": "60527", - "libelleAcheminement": "REEZ FOSSE MARTIN", - "nomCommune": "REEZ FOSSE MARTIN" + "codePostal": "28310", + "codeCommune": "28300", + "libelleAcheminement": "POINVILLE", + "nomCommune": "POINVILLE" }, { - "codePostal": "56240", - "codeCommune": "56029", - "libelleAcheminement": "CALAN", - "nomCommune": "CALAN" + "codePostal": "16240", + "codeCommune": "16197", + "libelleAcheminement": "LA MAGDELEINE", + "nomCommune": "LA MAGDELEINE" }, { - "codePostal": "21110", - "codeCommune": "21632", - "libelleAcheminement": "THOREY EN PLAINE", - "nomCommune": "THOREY EN PLAINE" + "codePostal": "17290", + "codeCommune": "17480", + "libelleAcheminement": "VIRSON", + "nomCommune": "VIRSON" }, { - "codePostal": "23270", - "codeCommune": "23188", - "libelleAcheminement": "ST DIZIER LES DOMAINES", - "nomCommune": "ST DIZIER LES DOMAINES" + "codePostal": "28260", + "codeCommune": "28371", + "libelleAcheminement": "SAUSSAY", + "nomCommune": "SAUSSAY" }, { - "codePostal": "60480", - "codeCommune": "60535", - "libelleAcheminement": "REUIL SUR BRECHE", - "nomCommune": "REUIL SUR BRECHE" + "codePostal": "28150", + "codeCommune": "28304", + "libelleAcheminement": "PRASVILLE", + "nomCommune": "PRASVILLE" }, { - "codePostal": "56800", - "codeCommune": "56032", - "libelleAcheminement": "CAMPENEAC", - "nomCommune": "CAMPENEAC" + "codePostal": "16320", + "codeCommune": "16198", + "libelleAcheminement": "MAGNAC LAVALETTE VILLARS", + "nomCommune": "MAGNAC LAVALETTE VILLARS" }, { - "codePostal": "21460", - "codeCommune": "21635", - "libelleAcheminement": "THOSTE", - "nomCommune": "THOSTE" + "codePostal": "17340", + "codeCommune": "17483", + "libelleAcheminement": "YVES", + "nomCommune": "YVES" }, { - "codePostal": "23000", - "codeCommune": "23191", - "libelleAcheminement": "ST ELOI", - "nomCommune": "ST ELOI" + "codePostal": "28250", + "codeCommune": "28373", + "libelleAcheminement": "SENONCHES", + "nomCommune": "SENONCHES" }, { - "codePostal": "60220", - "codeCommune": "60545", - "libelleAcheminement": "ROMESCAMPS", - "nomCommune": "ROMESCAMPS" + "codePostal": "28270", + "codeCommune": "28308", + "libelleAcheminement": "PRUDEMANCHE", + "nomCommune": "PRUDEMANCHE" }, { - "codePostal": "56910", - "codeCommune": "56033", - "libelleAcheminement": "CARENTOIR", - "nomCommune": "CARENTOIR" + "codePostal": "16380", + "codeCommune": "16203", + "libelleAcheminement": "MAINZAC", + "nomCommune": "MAINZAC" }, { - "codePostal": "21120", - "codeCommune": "21638", - "libelleAcheminement": "TIL CHATEL", - "nomCommune": "TIL CHATEL" + "codePostal": "17340", + "codeCommune": "17483", + "libelleAcheminement": "YVES", + "nomCommune": "YVES" }, { - "codePostal": "23290", - "codeCommune": "23192", - "libelleAcheminement": "FURSAC", - "nomCommune": "FURSAC" + "codePostal": "28400", + "codeCommune": "28378", + "libelleAcheminement": "SOUANCE AU PERCHE", + "nomCommune": "SOUANCE AU PERCHE" }, { - "codePostal": "60140", - "codeCommune": "60547", - "libelleAcheminement": "ROSOY", - "nomCommune": "ROSOY" + "codePostal": "28270", + "codeCommune": "28315", + "libelleAcheminement": "REVERCOURT", + "nomCommune": "REVERCOURT" }, { - "codePostal": "56340", - "codeCommune": "56034", - "libelleAcheminement": "CARNAC", - "nomCommune": "CARNAC" + "codePostal": "16120", + "codeCommune": "16204", + "libelleAcheminement": "BELLEVIGNE", + "nomCommune": "BELLEVIGNE" }, { - "codePostal": "21130", - "codeCommune": "21639", - "libelleAcheminement": "TILLENAY", - "nomCommune": "TILLENAY" + "codePostal": "17730", + "codeCommune": "17484", + "libelleAcheminement": "PORT DES BARQUES", + "nomCommune": "PORT DES BARQUES" }, { - "codePostal": "23110", - "codeCommune": "23203", - "libelleAcheminement": "ST JULIEN LA GENETE", - "nomCommune": "ST JULIEN LA GENETE" + "codePostal": "28500", + "codeCommune": "28394", + "libelleAcheminement": "TREON", + "nomCommune": "TREON" }, { - "codePostal": "60620", - "codeCommune": "60548", - "libelleAcheminement": "ROSOY EN MULTIEN", - "nomCommune": "ROSOY EN MULTIEN" + "codePostal": "28270", + "codeCommune": "28322", + "libelleAcheminement": "RUEIL LA GADELIERE", + "nomCommune": "RUEIL LA GADELIERE" }, { - "codePostal": "56500", - "codeCommune": "56039", - "libelleAcheminement": "LA CHAPELLE NEUVE", - "nomCommune": "LA CHAPELLE NEUVE" + "codePostal": "16230", + "codeCommune": "16206", + "libelleAcheminement": "MANSLE", + "nomCommune": "MANSLE" }, { - "codePostal": "21460", - "codeCommune": "21640", - "libelleAcheminement": "TORCY ET POULIGNY", - "nomCommune": "TORCY ET POULIGNY" + "codePostal": "18220", + "codeCommune": "18003", + "libelleAcheminement": "LES AIX D ANGILLON", + "nomCommune": "LES AIX D ANGILLON" }, { - "codePostal": "23000", - "codeCommune": "23206", - "libelleAcheminement": "ST LAURENT", - "nomCommune": "ST LAURENT" + "codePostal": "28400", + "codeCommune": "28395", + "libelleAcheminement": "TRIZAY COUTRETOT ST SERGE", + "nomCommune": "TRIZAY COUTRETOT ST SERGE" }, { - "codePostal": "60690", - "codeCommune": "60550", - "libelleAcheminement": "ROTHOIS", - "nomCommune": "ROTHOIS" + "codePostal": "28190", + "codeCommune": "28324", + "libelleAcheminement": "ST ARNOULT DES BOIS", + "nomCommune": "ST ARNOULT DES BOIS" }, { - "codePostal": "56390", - "codeCommune": "56042", - "libelleAcheminement": "COLPO", - "nomCommune": "COLPO" + "codePostal": "16310", + "codeCommune": "16213", + "libelleAcheminement": "MAZEROLLES", + "nomCommune": "MAZEROLLES" }, { - "codePostal": "21460", - "codeCommune": "21642", - "libelleAcheminement": "TOUTRY", - "nomCommune": "TOUTRY" + "codePostal": "18340", + "codeCommune": "18008", + "libelleAcheminement": "ARCAY", + "nomCommune": "ARCAY" }, { - "codePostal": "23200", - "codeCommune": "23211", - "libelleAcheminement": "ST MARC A FRONGIER", - "nomCommune": "ST MARC A FRONGIER" + "codePostal": "28140", + "codeCommune": "28400", + "libelleAcheminement": "VARIZE", + "nomCommune": "VARIZE" }, { - "codePostal": "60690", - "codeCommune": "60557", - "libelleAcheminement": "ROY BOISSY", - "nomCommune": "ROY BOISSY" + "codePostal": "28200", + "codeCommune": "28329", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "56430", - "codeCommune": "56043", - "libelleAcheminement": "CONCORET", - "nomCommune": "CONCORET" + "codePostal": "16370", + "codeCommune": "16218", + "libelleAcheminement": "MESNAC", + "nomCommune": "MESNAC" }, { - "codePostal": "21310", - "codeCommune": "21644", - "libelleAcheminement": "TROCHERES", - "nomCommune": "TROCHERES" + "codePostal": "18140", + "codeCommune": "18012", + "libelleAcheminement": "ARGENVIERES", + "nomCommune": "ARGENVIERES" }, { - "codePostal": "23460", - "codeCommune": "23212", - "libelleAcheminement": "ST MARC A LOUBAUD", - "nomCommune": "ST MARC A LOUBAUD" + "codePostal": "28150", + "codeCommune": "28406", + "libelleAcheminement": "EOLE EN BEAUCE", + "nomCommune": "EOLE EN BEAUCE" }, { - "codePostal": "60310", - "codeCommune": "60558", - "libelleAcheminement": "ROYE SUR MATZ", - "nomCommune": "ROYE SUR MATZ" + "codePostal": "28240", + "codeCommune": "28335", + "libelleAcheminement": "ST ELIPH", + "nomCommune": "ST ELIPH" }, { - "codePostal": "56200", - "codeCommune": "56044", - "libelleAcheminement": "COURNON", - "nomCommune": "COURNON" + "codePostal": "16190", + "codeCommune": "16230", + "libelleAcheminement": "MONTMOREAU", + "nomCommune": "MONTMOREAU" }, { - "codePostal": "21440", - "codeCommune": "21646", - "libelleAcheminement": "TROUHAUT", - "nomCommune": "TROUHAUT" + "codePostal": "18260", + "codeCommune": "18014", + "libelleAcheminement": "ASSIGNY", + "nomCommune": "ASSIGNY" }, { - "codePostal": "23430", - "codeCommune": "23230", - "libelleAcheminement": "ST PIERRE CHERIGNAT", - "nomCommune": "ST PIERRE CHERIGNAT" + "codePostal": "28800", + "codeCommune": "28418", + "libelleAcheminement": "VILLIERS ST ORIEN", + "nomCommune": "VILLIERS ST ORIEN" }, { - "codePostal": "60420", - "codeCommune": "60564", - "libelleAcheminement": "SAINS MORAINVILLERS", - "nomCommune": "SAINS MORAINVILLERS" + "codePostal": "28190", + "codeCommune": "28337", + "libelleAcheminement": "ST GEORGES SUR EURE", + "nomCommune": "ST GEORGES SUR EURE" }, { - "codePostal": "56410", - "codeCommune": "56054", - "libelleAcheminement": "ERDEVEN", - "nomCommune": "ERDEVEN" + "codePostal": "16120", + "codeCommune": "16233", + "libelleAcheminement": "MOSNAC ST SIMEUX", + "nomCommune": "MOSNAC ST SIMEUX" }, { - "codePostal": "21121", - "codeCommune": "21651", - "libelleAcheminement": "VAL SUZON", - "nomCommune": "VAL SUZON" + "codePostal": "18520", + "codeCommune": "18018", + "libelleAcheminement": "AVORD", + "nomCommune": "AVORD" }, { - "codePostal": "23460", - "codeCommune": "23232", - "libelleAcheminement": "ST PIERRE BELLEVUE", - "nomCommune": "ST PIERRE BELLEVUE" + "codePostal": "28360", + "codeCommune": "28419", + "libelleAcheminement": "VITRAY EN BEAUCE", + "nomCommune": "VITRAY EN BEAUCE" }, { - "codePostal": "60220", - "codeCommune": "60566", - "libelleAcheminement": "ST ARNOULT", - "nomCommune": "ST ARNOULT" + "codePostal": "28400", + "codeCommune": "28342", + "libelleAcheminement": "ST JEAN PIERRE FIXTE", + "nomCommune": "ST JEAN PIERRE FIXTE" }, { - "codePostal": "56320", - "codeCommune": "56057", - "libelleAcheminement": "LE FAOUET", - "nomCommune": "LE FAOUET" + "codePostal": "16230", + "codeCommune": "16241", + "libelleAcheminement": "NANCLARS", + "nomCommune": "NANCLARS" }, { - "codePostal": "21400", - "codeCommune": "21655", - "libelleAcheminement": "VANVEY", - "nomCommune": "VANVEY" + "codePostal": "18210", + "codeCommune": "18021", + "libelleAcheminement": "BANNEGON", + "nomCommune": "BANNEGON" }, { - "codePostal": "23460", - "codeCommune": "23232", - "libelleAcheminement": "ST PIERRE BELLEVUE", - "nomCommune": "ST PIERRE BELLEVUE" + "codePostal": "28150", + "codeCommune": "28422", + "libelleAcheminement": "LES VILLAGES VOVEENS", + "nomCommune": "LES VILLAGES VOVEENS" }, { - "codePostal": "60650", - "codeCommune": "60567", - "libelleAcheminement": "ST AUBIN EN BRAY", - "nomCommune": "ST AUBIN EN BRAY" + "codePostal": "28350", + "codeCommune": "28348", + "libelleAcheminement": "ST LUBIN DES JONCHERETS", + "nomCommune": "ST LUBIN DES JONCHERETS" }, { - "codePostal": "56110", - "codeCommune": "56066", - "libelleAcheminement": "GOURIN", - "nomCommune": "GOURIN" + "codePostal": "16700", + "codeCommune": "16242", + "libelleAcheminement": "NANTEUIL EN VALLEE", + "nomCommune": "NANTEUIL EN VALLEE" }, { - "codePostal": "21370", - "codeCommune": "21661", - "libelleAcheminement": "VELARS SUR OUCHE", - "nomCommune": "VELARS SUR OUCHE" + "codePostal": "18240", + "codeCommune": "18026", + "libelleAcheminement": "BELLEVILLE SUR LOIRE", + "nomCommune": "BELLEVILLE SUR LOIRE" }, { - "codePostal": "23240", - "codeCommune": "23236", - "libelleAcheminement": "ST PRIEST LA PLAINE", - "nomCommune": "ST PRIEST LA PLAINE" + "codePostal": "28150", + "codeCommune": "28422", + "libelleAcheminement": "LES VILLAGES VOVEENS", + "nomCommune": "LES VILLAGES VOVEENS" }, { - "codePostal": "60149", - "codeCommune": "60570", - "libelleAcheminement": "ST CREPIN IBOUVILLERS", - "nomCommune": "ST CREPIN IBOUVILLERS" + "codePostal": "28190", + "codeCommune": "28350", + "libelleAcheminement": "ST LUPERCE", + "nomCommune": "ST LUPERCE" }, { - "codePostal": "56590", - "codeCommune": "56069", - "libelleAcheminement": "GROIX", - "nomCommune": "GROIX" + "codePostal": "16500", + "codeCommune": "16249", + "libelleAcheminement": "ORADOUR FANAIS", + "nomCommune": "ORADOUR FANAIS" }, { - "codePostal": "21150", - "codeCommune": "21663", - "libelleAcheminement": "VENAREY LES LAUMES", - "nomCommune": "VENAREY LES LAUMES" + "codePostal": "18520", + "codeCommune": "18027", + "libelleAcheminement": "BENGY SUR CRAON", + "nomCommune": "BENGY SUR CRAON" }, { - "codePostal": "23140", - "codeCommune": "23243", - "libelleAcheminement": "ST SILVAIN SOUS TOULX", - "nomCommune": "ST SILVAIN SOUS TOULX" + "codePostal": "28160", + "codeCommune": "28424", + "libelleAcheminement": "YEVRES", + "nomCommune": "YEVRES" }, { - "codePostal": "60130", - "codeCommune": "60581", - "libelleAcheminement": "ST JUST EN CHAUSSEE", - "nomCommune": "ST JUST EN CHAUSSEE" + "codePostal": "28240", + "codeCommune": "28354", + "libelleAcheminement": "ST MAURICE ST GERMAIN", + "nomCommune": "ST MAURICE ST GERMAIN" }, { - "codePostal": "56190", - "codeCommune": "56077", - "libelleAcheminement": "LE GUERNO", - "nomCommune": "LE GUERNO" + "codePostal": "16240", + "codeCommune": "16253", + "libelleAcheminement": "PAIZAY NAUDOUIN EMBOURIE", + "nomCommune": "PAIZAY NAUDOUIN EMBOURIE" }, { - "codePostal": "21260", - "codeCommune": "21665", - "libelleAcheminement": "VERNOIS LES VESVRES", - "nomCommune": "VERNOIS LES VESVRES" + "codePostal": "18210", + "codeCommune": "18029", + "libelleAcheminement": "BESSAIS LE FROMENTAL", + "nomCommune": "BESSAIS LE FROMENTAL" }, { - "codePostal": "23800", - "codeCommune": "23244", - "libelleAcheminement": "ST SULPICE LE DUNOIS", - "nomCommune": "ST SULPICE LE DUNOIS" + "codePostal": "29560", + "codeCommune": "29001", + "libelleAcheminement": "ARGOL", + "nomCommune": "ARGOL" }, { - "codePostal": "60170", - "codeCommune": "60582", - "libelleAcheminement": "ST LEGER AUX BOIS", - "nomCommune": "ST LEGER AUX BOIS" + "codePostal": "28260", + "codeCommune": "28355", + "libelleAcheminement": "ST OUEN MARCHEFROY", + "nomCommune": "ST OUEN MARCHEFROY" }, { - "codePostal": "56800", - "codeCommune": "56079", - "libelleAcheminement": "GUILLAC", - "nomCommune": "GUILLAC" + "codePostal": "16390", + "codeCommune": "16254", + "libelleAcheminement": "PALLUAUD", + "nomCommune": "PALLUAUD" }, { - "codePostal": "21120", - "codeCommune": "21666", - "libelleAcheminement": "VERNOT", - "nomCommune": "VERNOT" + "codePostal": "18410", + "codeCommune": "18030", + "libelleAcheminement": "BLANCAFORT", + "nomCommune": "BLANCAFORT" }, { - "codePostal": "23000", - "codeCommune": "23245", - "libelleAcheminement": "ST SULPICE LE GUERETOIS", - "nomCommune": "ST SULPICE LE GUERETOIS" + "codePostal": "29380", + "codeCommune": "29004", + "libelleAcheminement": "BANNALEC", + "nomCommune": "BANNALEC" }, { - "codePostal": "60650", - "codeCommune": "60591", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "28170", + "codeCommune": "28360", + "libelleAcheminement": "ST SAUVEUR MARVILLE", + "nomCommune": "ST SAUVEUR MARVILLE" }, { - "codePostal": "56690", - "codeCommune": "56097", - "libelleAcheminement": "LANDEVANT", - "nomCommune": "LANDEVANT" + "codePostal": "16250", + "codeCommune": "16258", + "libelleAcheminement": "PERIGNAC", + "nomCommune": "PERIGNAC" }, { - "codePostal": "21260", - "codeCommune": "21667", - "libelleAcheminement": "VERONNES", - "nomCommune": "VERONNES" + "codePostal": "18350", + "codeCommune": "18031", + "libelleAcheminement": "BLET", + "nomCommune": "BLET" }, { - "codePostal": "23460", - "codeCommune": "23249", - "libelleAcheminement": "ST YRIEIX LA MONTAGNE", - "nomCommune": "ST YRIEIX LA MONTAGNE" + "codePostal": "29690", + "codeCommune": "29007", + "libelleAcheminement": "BERRIEN", + "nomCommune": "BERRIEN" }, { - "codePostal": "60380", - "codeCommune": "60594", - "libelleAcheminement": "ST QUENTIN DES PRES", - "nomCommune": "ST QUENTIN DES PRES" + "codePostal": "28700", + "codeCommune": "28366", + "libelleAcheminement": "SANTEUIL", + "nomCommune": "SANTEUIL" }, { - "codePostal": "56120", - "codeCommune": "56102", - "libelleAcheminement": "FORGES DE LANOUEE", - "nomCommune": "FORGES DE LANOUEE" + "codePostal": "16260", + "codeCommune": "16261", + "libelleAcheminement": "LES PINS", + "nomCommune": "LES PINS" }, { - "codePostal": "21540", - "codeCommune": "21669", - "libelleAcheminement": "VERREY SOUS DREE", - "nomCommune": "VERREY SOUS DREE" + "codePostal": "18220", + "codeCommune": "18035", + "libelleAcheminement": "BRECY", + "nomCommune": "BRECY" }, { - "codePostal": "23250", - "codeCommune": "23253", - "libelleAcheminement": "THAURON", - "nomCommune": "THAURON" + "codePostal": "29820", + "codeCommune": "29011", + "libelleAcheminement": "BOHARS", + "nomCommune": "BOHARS" }, { - "codePostal": "60220", - "codeCommune": "60596", - "libelleAcheminement": "ST SAMSON LA POTERIE", - "nomCommune": "ST SAMSON LA POTERIE" + "codePostal": "28410", + "codeCommune": "28375", + "libelleAcheminement": "SERVILLE", + "nomCommune": "SERVILLE" }, { - "codePostal": "56220", - "codeCommune": "56111", - "libelleAcheminement": "LIMERZEL", - "nomCommune": "LIMERZEL" + "codePostal": "16700", + "codeCommune": "16268", + "libelleAcheminement": "POURSAC", + "nomCommune": "POURSAC" }, { - "codePostal": "21690", - "codeCommune": "21670", - "libelleAcheminement": "VERREY SOUS SALMAISE", - "nomCommune": "VERREY SOUS SALMAISE" + "codePostal": "18130", + "codeCommune": "18040", + "libelleAcheminement": "BUSSY", + "nomCommune": "BUSSY" }, { - "codePostal": "23120", - "codeCommune": "23257", - "libelleAcheminement": "VALLIERE", - "nomCommune": "VALLIERE" + "codePostal": "29890", + "codeCommune": "29021", + "libelleAcheminement": "PLOUNEOUR BRIGNOGAN PLAGES", + "nomCommune": "PLOUNEOUR BRIGNOGAN PLAGES" }, { - "codePostal": "60430", - "codeCommune": "60598", - "libelleAcheminement": "ST SULPICE", - "nomCommune": "ST SULPICE" + "codePostal": "28140", + "codeCommune": "28382", + "libelleAcheminement": "TERMINIERS", + "nomCommune": "TERMINIERS" }, { - "codePostal": "56300", - "codeCommune": "56125", - "libelleAcheminement": "MALGUENAC", - "nomCommune": "MALGUENAC" + "codePostal": "16400", + "codeCommune": "16271", + "libelleAcheminement": "PUYMOYEN", + "nomCommune": "PUYMOYEN" }, { - "codePostal": "21140", - "codeCommune": "21689", - "libelleAcheminement": "VILLARS ET VILLENOTTE", - "nomCommune": "VILLARS ET VILLENOTTE" + "codePostal": "18150", + "codeCommune": "18048", + "libelleAcheminement": "LA CHAPELLE HUGON", + "nomCommune": "LA CHAPELLE HUGON" }, { - "codePostal": "23800", - "codeCommune": "23263", - "libelleAcheminement": "VILLARD", - "nomCommune": "VILLARD" + "codePostal": "29150", + "codeCommune": "29025", + "libelleAcheminement": "CAST", + "nomCommune": "CAST" }, { - "codePostal": "60300", - "codeCommune": "60612", - "libelleAcheminement": "SENLIS", - "nomCommune": "SENLIS" + "codePostal": "28480", + "codeCommune": "28387", + "libelleAcheminement": "THIRON GARDAIS", + "nomCommune": "THIRON GARDAIS" }, { - "codePostal": "56130", - "codeCommune": "56126", - "libelleAcheminement": "MARZAN", - "nomCommune": "MARZAN" + "codePostal": "16240", + "codeCommune": "16273", + "libelleAcheminement": "RAIX", + "nomCommune": "RAIX" }, { - "codePostal": "21700", - "codeCommune": "21691", - "libelleAcheminement": "VILLEBICHOT", - "nomCommune": "VILLEBICHOT" + "codePostal": "18570", + "codeCommune": "18050", + "libelleAcheminement": "LA CHAPELLE ST URSIN", + "nomCommune": "LA CHAPELLE ST URSIN" }, { - "codePostal": "23260", - "codeCommune": "23265", - "libelleAcheminement": "LA VILLENEUVE", - "nomCommune": "LA VILLENEUVE" + "codePostal": "29770", + "codeCommune": "29028", + "libelleAcheminement": "CLEDEN CAP SIZUN", + "nomCommune": "CLEDEN CAP SIZUN" }, { - "codePostal": "60800", - "codeCommune": "60618", - "libelleAcheminement": "SERY MAGNEVAL", - "nomCommune": "SERY MAGNEVAL" + "codePostal": "28630", + "codeCommune": "28388", + "libelleAcheminement": "THIVARS", + "nomCommune": "THIVARS" }, { - "codePostal": "56320", - "codeCommune": "56131", - "libelleAcheminement": "MESLAN", - "nomCommune": "MESLAN" + "codePostal": "16170", + "codeCommune": "16286", + "libelleAcheminement": "ROUILLAC", + "nomCommune": "ROUILLAC" }, { - "codePostal": "21330", - "codeCommune": "21693", - "libelleAcheminement": "VILLEDIEU", - "nomCommune": "VILLEDIEU" + "codePostal": "18160", + "codeCommune": "18065", + "libelleAcheminement": "CHEZAL BENOIT", + "nomCommune": "CHEZAL BENOIT" }, { - "codePostal": "23260", - "codeCommune": "23266", - "libelleAcheminement": "LA VILLETELLE", - "nomCommune": "LA VILLETELLE" + "codePostal": "29360", + "codeCommune": "29031", + "libelleAcheminement": "CLOHARS CARNOET", + "nomCommune": "CLOHARS CARNOET" }, { - "codePostal": "60590", - "codeCommune": "60626", - "libelleAcheminement": "TALMONTIERS", - "nomCommune": "TALMONTIERS" + "codePostal": "28200", + "codeCommune": "28389", + "libelleAcheminement": "THIVILLE", + "nomCommune": "THIVILLE" }, { - "codePostal": "56230", - "codeCommune": "56135", - "libelleAcheminement": "MOLAC", - "nomCommune": "MOLAC" + "codePostal": "16440", + "codeCommune": "16287", + "libelleAcheminement": "ROULLET ST ESTEPHE", + "nomCommune": "ROULLET ST ESTEPHE" }, { - "codePostal": "21140", - "codeCommune": "21696", - "libelleAcheminement": "VILLENEUVE SOUS CHARIGNY", - "nomCommune": "VILLENEUVE SOUS CHARIGNY" + "codePostal": "18290", + "codeCommune": "18066", + "libelleAcheminement": "CIVRAY", + "nomCommune": "CIVRAY" }, { - "codePostal": "24220", - "codeCommune": "24006", - "libelleAcheminement": "ALLAS LES MINES", - "nomCommune": "ALLAS LES MINES" + "codePostal": "29450", + "codeCommune": "29038", + "libelleAcheminement": "COMMANA", + "nomCommune": "COMMANA" }, { - "codePostal": "60310", - "codeCommune": "60632", - "libelleAcheminement": "THIESCOURT", - "nomCommune": "THIESCOURT" + "codePostal": "28170", + "codeCommune": "28393", + "libelleAcheminement": "TREMBLAY LES VILLAGES", + "nomCommune": "TREMBLAY LES VILLAGES" }, { - "codePostal": "56380", - "codeCommune": "56136", - "libelleAcheminement": "MONTENEUF", - "nomCommune": "MONTENEUF" + "codePostal": "16350", + "codeCommune": "16310", + "libelleAcheminement": "ST COUTANT", + "nomCommune": "ST COUTANT" }, { - "codePostal": "21120", - "codeCommune": "21702", - "libelleAcheminement": "VILLEY SUR TILLE", - "nomCommune": "VILLEY SUR TILLE" + "codePostal": "18350", + "codeCommune": "18072", + "libelleAcheminement": "CORNUSSE", + "nomCommune": "CORNUSSE" }, { - "codePostal": "24160", - "codeCommune": "24009", - "libelleAcheminement": "ANLHIAC", - "nomCommune": "ANLHIAC" + "codePostal": "29900", + "codeCommune": "29039", + "libelleAcheminement": "CONCARNEAU", + "nomCommune": "CONCARNEAU" }, { - "codePostal": "60480", - "codeCommune": "60634", - "libelleAcheminement": "THIEUX", - "nomCommune": "THIEUX" + "codePostal": "28500", + "codeCommune": "28404", + "libelleAcheminement": "VERNOUILLET", + "nomCommune": "VERNOUILLET" }, { - "codePostal": "56800", - "codeCommune": "56139", - "libelleAcheminement": "MONTERTELOT", - "nomCommune": "MONTERTELOT" + "codePostal": "16450", + "codeCommune": "16329", + "libelleAcheminement": "ST LAURENT DE CERIS", + "nomCommune": "ST LAURENT DE CERIS" }, { - "codePostal": "21400", - "codeCommune": "21704", - "libelleAcheminement": "VILLIERS LE DUC", - "nomCommune": "VILLIERS LE DUC" + "codePostal": "18270", + "codeCommune": "18083", + "libelleAcheminement": "CULAN", + "nomCommune": "CULAN" }, { - "codePostal": "24430", - "codeCommune": "24010", - "libelleAcheminement": "ANNESSE ET BEAULIEU", - "nomCommune": "ANNESSE ET BEAULIEU" + "codePostal": "29460", + "codeCommune": "29045", + "libelleAcheminement": "DIRINON", + "nomCommune": "DIRINON" }, { - "codePostal": "60170", - "codeCommune": "60642", - "libelleAcheminement": "TRACY LE VAL", - "nomCommune": "TRACY LE VAL" + "codePostal": "28700", + "codeCommune": "28408", + "libelleAcheminement": "VIERVILLE", + "nomCommune": "VIERVILLE" }, { - "codePostal": "56190", - "codeCommune": "56143", - "libelleAcheminement": "MUZILLAC", - "nomCommune": "MUZILLAC" + "codePostal": "16500", + "codeCommune": "16337", + "libelleAcheminement": "ST MAURICE DES LIONS", + "nomCommune": "ST MAURICE DES LIONS" }, { - "codePostal": "21500", - "codeCommune": "21709", - "libelleAcheminement": "VISERNY", - "nomCommune": "VISERNY" + "codePostal": "18380", + "codeCommune": "18088", + "libelleAcheminement": "ENNORDRES", + "nomCommune": "ENNORDRES" }, { - "codePostal": "24260", - "codeCommune": "24015", - "libelleAcheminement": "AUDRIX", - "nomCommune": "AUDRIX" + "codePostal": "29100", + "codeCommune": "29046", + "libelleAcheminement": "DOUARNENEZ", + "nomCommune": "DOUARNENEZ" }, { - "codePostal": "60590", - "codeCommune": "60644", - "libelleAcheminement": "TRIE CHATEAU", - "nomCommune": "TRIE CHATEAU" + "codePostal": "28120", + "codeCommune": "28409", + "libelleAcheminement": "VIEUVICQ", + "nomCommune": "VIEUVICQ" }, { - "codePostal": "56500", - "codeCommune": "56144", - "libelleAcheminement": "EVELLYS", - "nomCommune": "EVELLYS" + "codePostal": "16130", + "codeCommune": "16343", + "libelleAcheminement": "ST PREUIL", + "nomCommune": "ST PREUIL" }, { - "codePostal": "21230", - "codeCommune": "21715", - "libelleAcheminement": "VOUDENAY", - "nomCommune": "VOUDENAY" + "codePostal": "18250", + "codeCommune": "18109", + "libelleAcheminement": "HENRICHEMONT", + "nomCommune": "HENRICHEMONT" }, { - "codePostal": "24330", - "codeCommune": "24026", - "libelleAcheminement": "BASSILLAC ET AUBEROCHE", - "nomCommune": "BASSILLAC ET AUBEROCHE" + "codePostal": "29500", + "codeCommune": "29051", + "libelleAcheminement": "ERGUE GABERIC", + "nomCommune": "ERGUE GABERIC" }, { - "codePostal": "60800", - "codeCommune": "60650", - "libelleAcheminement": "TRUMILLY", - "nomCommune": "TRUMILLY" + "codePostal": "28700", + "codeCommune": "28421", + "libelleAcheminement": "VOISE", + "nomCommune": "VOISE" }, { - "codePostal": "56500", - "codeCommune": "56144", - "libelleAcheminement": "EVELLYS", - "nomCommune": "EVELLYS" + "codePostal": "16390", + "codeCommune": "16350", + "libelleAcheminement": "ST SEVERIN", + "nomCommune": "ST SEVERIN" }, { - "codePostal": "22810", - "codeCommune": "22005", - "libelleAcheminement": "BELLE ISLE EN TERRE", - "nomCommune": "BELLE ISLE EN TERRE" + "codePostal": "18170", + "codeCommune": "18112", + "libelleAcheminement": "IDS ST ROCH", + "nomCommune": "IDS ST ROCH" }, { - "codePostal": "24640", - "codeCommune": "24026", - "libelleAcheminement": "BASSILLAC ET AUBEROCHE", - "nomCommune": "BASSILLAC ET AUBEROCHE" + "codePostal": "29650", + "codeCommune": "29067", + "libelleAcheminement": "GUERLESQUIN", + "nomCommune": "GUERLESQUIN" }, { - "codePostal": "60240", - "codeCommune": "60659", - "libelleAcheminement": "VAUDANCOURT", - "nomCommune": "VAUDANCOURT" + "codePostal": "28150", + "codeCommune": "28422", + "libelleAcheminement": "LES VILLAGES VOVEENS", + "nomCommune": "LES VILLAGES VOVEENS" }, { - "codePostal": "56130", - "codeCommune": "56147", - "libelleAcheminement": "NIVILLAC", - "nomCommune": "NIVILLAC" + "codePostal": "16480", + "codeCommune": "16354", + "libelleAcheminement": "STE SOULINE", + "nomCommune": "STE SOULINE" }, { - "codePostal": "22810", - "codeCommune": "22005", - "libelleAcheminement": "BELLE ISLE EN TERRE", - "nomCommune": "BELLE ISLE EN TERRE" + "codePostal": "18260", + "codeCommune": "18117", + "libelleAcheminement": "JARS", + "nomCommune": "JARS" }, { - "codePostal": "24400", - "codeCommune": "24029", - "libelleAcheminement": "BEAUPOUYET", - "nomCommune": "BEAUPOUYET" + "codePostal": "29730", + "codeCommune": "29072", + "libelleAcheminement": "GUILVINEC", + "nomCommune": "GUILVINEC" }, { - "codePostal": "60590", - "codeCommune": "60660", - "libelleAcheminement": "LE VAUMAIN", - "nomCommune": "LE VAUMAIN" + "codePostal": "29770", + "codeCommune": "29003", + "libelleAcheminement": "AUDIERNE", + "nomCommune": "AUDIERNE" }, { - "codePostal": "56920", - "codeCommune": "56151", - "libelleAcheminement": "NOYAL PONTIVY", - "nomCommune": "NOYAL PONTIVY" + "codePostal": "16710", + "codeCommune": "16358", + "libelleAcheminement": "ST YRIEIX SUR CHARENTE", + "nomCommune": "ST YRIEIX SUR CHARENTE" }, { - "codePostal": "22210", - "codeCommune": "22027", - "libelleAcheminement": "LE CAMBOUT", - "nomCommune": "LE CAMBOUT" + "codePostal": "18320", + "codeCommune": "18118", + "libelleAcheminement": "JOUET SUR L AUBOIS", + "nomCommune": "JOUET SUR L AUBOIS" }, { - "codePostal": "24130", - "codeCommune": "24051", - "libelleAcheminement": "BOSSET", - "nomCommune": "BOSSET" + "codePostal": "29620", + "codeCommune": "29073", + "libelleAcheminement": "GUIMAEC", + "nomCommune": "GUIMAEC" }, { - "codePostal": "60117", - "codeCommune": "60661", - "libelleAcheminement": "VAUMOISE", - "nomCommune": "VAUMOISE" + "codePostal": "29950", + "codeCommune": "29006", + "libelleAcheminement": "BENODET", + "nomCommune": "BENODET" }, { - "codePostal": "56130", - "codeCommune": "56153", - "libelleAcheminement": "PEAULE", - "nomCommune": "PEAULE" + "codePostal": "16480", + "codeCommune": "16365", + "libelleAcheminement": "SAUVIGNAC", + "nomCommune": "SAUVIGNAC" }, { - "codePostal": "22300", - "codeCommune": "22030", - "libelleAcheminement": "CAOUENNEC LANVEZEAC", - "nomCommune": "CAOUENNEC LANVEZEAC" + "codePostal": "18130", + "codeCommune": "18119", + "libelleAcheminement": "JUSSY CHAMPAGNE", + "nomCommune": "JUSSY CHAMPAGNE" }, { - "codePostal": "24560", - "codeCommune": "24054", - "libelleAcheminement": "BOUNIAGUES", - "nomCommune": "BOUNIAGUES" + "codePostal": "29490", + "codeCommune": "29075", + "libelleAcheminement": "GUIPAVAS", + "nomCommune": "GUIPAVAS" }, { - "codePostal": "60112", - "codeCommune": "60668", - "libelleAcheminement": "VERDEREL LES SAUQUEUSE", - "nomCommune": "VERDEREL LES SAUQUEUSE" + "codePostal": "29790", + "codeCommune": "29008", + "libelleAcheminement": "BEUZEC CAP SIZUN", + "nomCommune": "BEUZEC CAP SIZUN" }, { - "codePostal": "56800", - "codeCommune": "56165", - "libelleAcheminement": "PLOERMEL", - "nomCommune": "PLOERMEL" + "codePostal": "16130", + "codeCommune": "16366", + "libelleAcheminement": "SEGONZAC", + "nomCommune": "SEGONZAC" }, { - "codePostal": "22140", - "codeCommune": "22034", - "libelleAcheminement": "CAVAN", - "nomCommune": "CAVAN" + "codePostal": "18140", + "codeCommune": "18120", + "libelleAcheminement": "JUSSY LE CHAUDRIER", + "nomCommune": "JUSSY LE CHAUDRIER" }, { - "codePostal": "24310", - "codeCommune": "24055", - "libelleAcheminement": "BOURDEILLES", - "nomCommune": "BOURDEILLES" + "codePostal": "29670", + "codeCommune": "29079", + "libelleAcheminement": "HENVIC", + "nomCommune": "HENVIC" }, { - "codePostal": "60810", - "codeCommune": "60682", - "libelleAcheminement": "VILLERS ST FRAMBOURG OGNON", - "nomCommune": "VILLERS ST FRAMBOURG OGNON" + "codePostal": "29640", + "codeCommune": "29012", + "libelleAcheminement": "BOLAZEC", + "nomCommune": "BOLAZEC" }, { - "codePostal": "56400", - "codeCommune": "56167", - "libelleAcheminement": "PLOUGOUMELEN", - "nomCommune": "PLOUGOUMELEN" + "codePostal": "16440", + "codeCommune": "16370", + "libelleAcheminement": "SIREUIL", + "nomCommune": "SIREUIL" }, { - "codePostal": "22160", - "codeCommune": "22037", - "libelleAcheminement": "LA CHAPELLE NEUVE", - "nomCommune": "LA CHAPELLE NEUVE" + "codePostal": "18120", + "codeCommune": "18124", + "libelleAcheminement": "LAZENAY", + "nomCommune": "LAZENAY" }, { - "codePostal": "24320", - "codeCommune": "24057", - "libelleAcheminement": "BOURG DES MAISONS", - "nomCommune": "BOURG DES MAISONS" + "codePostal": "29100", + "codeCommune": "29090", + "libelleAcheminement": "KERLAZ", + "nomCommune": "KERLAZ" }, { - "codePostal": "60380", - "codeCommune": "60691", - "libelleAcheminement": "VILLERS VERMONT", - "nomCommune": "VILLERS VERMONT" + "codePostal": "29510", + "codeCommune": "29020", + "libelleAcheminement": "BRIEC", + "nomCommune": "BRIEC" }, { - "codePostal": "56680", - "codeCommune": "56169", - "libelleAcheminement": "PLOUHINEC", - "nomCommune": "PLOUHINEC" + "codePostal": "16260", + "codeCommune": "16375", + "libelleAcheminement": "SUAUX", + "nomCommune": "SUAUX" }, { - "codePostal": "22970", - "codeCommune": "22040", - "libelleAcheminement": "COADOUT", - "nomCommune": "COADOUT" + "codePostal": "18340", + "codeCommune": "18126", + "libelleAcheminement": "LEVET", + "nomCommune": "LEVET" }, { - "codePostal": "24150", - "codeCommune": "24060", - "libelleAcheminement": "BOURNIQUEL", - "nomCommune": "BOURNIQUEL" + "codePostal": "29890", + "codeCommune": "29091", + "libelleAcheminement": "KERLOUAN", + "nomCommune": "KERLOUAN" }, { - "codePostal": "60640", - "codeCommune": "60693", - "libelleAcheminement": "VILLESELVE", - "nomCommune": "VILLESELVE" + "codePostal": "29890", + "codeCommune": "29021", + "libelleAcheminement": "PLOUNEOUR BRIGNOGAN PLAGES", + "nomCommune": "PLOUNEOUR BRIGNOGAN PLAGES" }, { - "codePostal": "56400", - "codeCommune": "56175", - "libelleAcheminement": "PLUMERGAT", - "nomCommune": "PLUMERGAT" + "codePostal": "16360", + "codeCommune": "16384", + "libelleAcheminement": "TOUVERAC", + "nomCommune": "TOUVERAC" }, { - "codePostal": "22430", - "codeCommune": "22054", - "libelleAcheminement": "ERQUY", - "nomCommune": "ERQUY" + "codePostal": "18340", + "codeCommune": "18129", + "libelleAcheminement": "LISSAY LOCHY", + "nomCommune": "LISSAY LOCHY" }, { - "codePostal": "24320", - "codeCommune": "24062", - "libelleAcheminement": "BOUTEILLES ST SEBASTIEN", - "nomCommune": "BOUTEILLES ST SEBASTIEN" + "codePostal": "29260", + "codeCommune": "29094", + "libelleAcheminement": "KERNOUES", + "nomCommune": "KERNOUES" }, { - "codePostal": "60420", - "codeCommune": "60698", - "libelleAcheminement": "WACQUEMOULIN", - "nomCommune": "WACQUEMOULIN" + "codePostal": "29660", + "codeCommune": "29023", + "libelleAcheminement": "CARANTEC", + "nomCommune": "CARANTEC" }, { - "codePostal": "56290", - "codeCommune": "56181", - "libelleAcheminement": "PORT LOUIS", - "nomCommune": "PORT LOUIS" + "codePostal": "16460", + "codeCommune": "16396", + "libelleAcheminement": "VENTOUSE", + "nomCommune": "VENTOUSE" }, { - "codePostal": "22630", - "codeCommune": "22056", - "libelleAcheminement": "EVRAN", - "nomCommune": "EVRAN" + "codePostal": "18500", + "codeCommune": "18141", + "libelleAcheminement": "MEHUN SUR YEVRE", + "nomCommune": "MEHUN SUR YEVRE" }, { - "codePostal": "24360", - "codeCommune": "24071", - "libelleAcheminement": "BUSSIERE BADIL", - "nomCommune": "BUSSIERE BADIL" + "codePostal": "29860", + "codeCommune": "29095", + "libelleAcheminement": "KERSAINT PLABENNEC", + "nomCommune": "KERSAINT PLABENNEC" }, { - "codePostal": "60420", - "codeCommune": "60702", - "libelleAcheminement": "WELLES PERENNES", - "nomCommune": "WELLES PERENNES" + "codePostal": "29360", + "codeCommune": "29031", + "libelleAcheminement": "CLOHARS CARNOET", + "nomCommune": "CLOHARS CARNOET" }, { - "codePostal": "56140", - "codeCommune": "56191", - "libelleAcheminement": "REMINIAC", - "nomCommune": "REMINIAC" + "codePostal": "16510", + "codeCommune": "16400", + "libelleAcheminement": "VERTEUIL SUR CHARENTE", + "nomCommune": "VERTEUIL SUR CHARENTE" }, { - "codePostal": "22460", - "codeCommune": "22068", - "libelleAcheminement": "GRACE UZEL", - "nomCommune": "GRACE UZEL" + "codePostal": "18200", + "codeCommune": "18142", + "libelleAcheminement": "MEILLANT", + "nomCommune": "MEILLANT" }, { - "codePostal": "24610", - "codeCommune": "24083", - "libelleAcheminement": "CARSAC DE GURSON", - "nomCommune": "CARSAC DE GURSON" + "codePostal": "29830", + "codeCommune": "29099", + "libelleAcheminement": "LAMPAUL PLOUDALMEZEAU", + "nomCommune": "LAMPAUL PLOUDALMEZEAU" }, { - "codePostal": "61120", - "codeCommune": "61010", - "libelleAcheminement": "AUBRY LE PANTHOU", - "nomCommune": "AUBRY LE PANTHOU" + "codePostal": "29190", + "codeCommune": "29033", + "libelleAcheminement": "LE CLOITRE PLEYBEN", + "nomCommune": "LE CLOITRE PLEYBEN" }, { - "codePostal": "56130", - "codeCommune": "56195", - "libelleAcheminement": "LA ROCHE BERNARD", - "nomCommune": "LA ROCHE BERNARD" + "codePostal": "16300", + "codeCommune": "16405", + "libelleAcheminement": "VIGNOLLES", + "nomCommune": "VIGNOLLES" }, { - "codePostal": "22200", - "codeCommune": "22070", - "libelleAcheminement": "GUINGAMP", - "nomCommune": "GUINGAMP" + "codePostal": "18300", + "codeCommune": "18146", + "libelleAcheminement": "MENETREOL SOUS SANCERRE", + "nomCommune": "MENETREOL SOUS SANCERRE" }, { - "codePostal": "24380", - "codeCommune": "24094", - "libelleAcheminement": "CHALAGNAC", - "nomCommune": "CHALAGNAC" + "codePostal": "29800", + "codeCommune": "29103", + "libelleAcheminement": "LANDERNEAU", + "nomCommune": "LANDERNEAU" }, { - "codePostal": "61160", - "codeCommune": "61023", - "libelleAcheminement": "BAILLEUL", - "nomCommune": "BAILLEUL" + "codePostal": "29530", + "codeCommune": "29036", + "libelleAcheminement": "COLLOREC", + "nomCommune": "COLLOREC" }, { - "codePostal": "56220", - "codeCommune": "56196", - "libelleAcheminement": "ROCHEFORT EN TERRE", - "nomCommune": "ROCHEFORT EN TERRE" + "codePostal": "16240", + "codeCommune": "16413", + "libelleAcheminement": "VILLIERS LE ROUX", + "nomCommune": "VILLIERS LE ROUX" }, { - "codePostal": "22270", - "codeCommune": "22084", - "libelleAcheminement": "JUGON LES LACS COMMUNE NOUVELLE", - "nomCommune": "JUGON LES LACS COMMUNE NOUVELLE" + "codePostal": "18380", + "codeCommune": "18149", + "libelleAcheminement": "MERY ES BOIS", + "nomCommune": "MERY ES BOIS" }, { - "codePostal": "24320", - "codeCommune": "24097", - "libelleAcheminement": "CHAMPAGNE ET FONTAINE", - "nomCommune": "CHAMPAGNE ET FONTAINE" + "codePostal": "29260", + "codeCommune": "29124", + "libelleAcheminement": "LESNEVEN", + "nomCommune": "LESNEVEN" }, { - "codePostal": "61210", - "codeCommune": "61028", - "libelleAcheminement": "BAZOCHES AU HOULME", - "nomCommune": "BAZOCHES AU HOULME" + "codePostal": "29120", + "codeCommune": "29037", + "libelleAcheminement": "COMBRIT", + "nomCommune": "COMBRIT" }, { - "codePostal": "56800", - "codeCommune": "56197", - "libelleAcheminement": "VAL D OUST", - "nomCommune": "VAL D OUST" + "codePostal": "16330", + "codeCommune": "16419", + "libelleAcheminement": "VOUHARTE", + "nomCommune": "VOUHARTE" }, { - "codePostal": "22110", - "codeCommune": "22087", - "libelleAcheminement": "KERGRIST MOELOU", - "nomCommune": "KERGRIST MOELOU" + "codePostal": "18220", + "codeCommune": "18156", + "libelleAcheminement": "MOROGUES", + "nomCommune": "MOROGUES" }, { - "codePostal": "24190", - "codeCommune": "24104", - "libelleAcheminement": "CHANTERAC", - "nomCommune": "CHANTERAC" + "codePostal": "29390", + "codeCommune": "29125", + "libelleAcheminement": "LEUHAN", + "nomCommune": "LEUHAN" }, { - "codePostal": "61190", - "codeCommune": "61034", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "29160", + "codeCommune": "29042", + "libelleAcheminement": "CROZON", + "nomCommune": "CROZON" }, { - "codePostal": "56110", - "codeCommune": "56199", - "libelleAcheminement": "ROUDOUALLEC", - "nomCommune": "ROUDOUALLEC" + "codePostal": "17123", + "codeCommune": "17004", + "libelleAcheminement": "ILE D AIX", + "nomCommune": "ILE D AIX" }, { - "codePostal": "22480", - "codeCommune": "22088", - "libelleAcheminement": "KERIEN", - "nomCommune": "KERIEN" + "codePostal": "18600", + "codeCommune": "18161", + "libelleAcheminement": "NEUILLY EN DUN", + "nomCommune": "NEUILLY EN DUN" }, { - "codePostal": "24530", - "codeCommune": "24129", - "libelleAcheminement": "CONDAT SUR TRINCOU", - "nomCommune": "CONDAT SUR TRINCOU" + "codePostal": "29400", + "codeCommune": "29131", + "libelleAcheminement": "LOCMELAR", + "nomCommune": "LOCMELAR" }, { - "codePostal": "61600", - "codeCommune": "61035", - "libelleAcheminement": "BEAUVAIN", - "nomCommune": "BEAUVAIN" + "codePostal": "29150", + "codeCommune": "29044", + "libelleAcheminement": "DINEAULT", + "nomCommune": "DINEAULT" }, { - "codePostal": "56450", - "codeCommune": "56205", - "libelleAcheminement": "ST ARMEL", - "nomCommune": "ST ARMEL" + "codePostal": "17540", + "codeCommune": "17007", + "libelleAcheminement": "ANAIS", + "nomCommune": "ANAIS" }, { - "codePostal": "22450", - "codeCommune": "22090", - "libelleAcheminement": "KERMARIA SULARD", - "nomCommune": "KERMARIA SULARD" + "codePostal": "18390", + "codeCommune": "18166", + "libelleAcheminement": "NOHANT EN GOUT", + "nomCommune": "NOHANT EN GOUT" }, { - "codePostal": "24800", - "codeCommune": "24134", - "libelleAcheminement": "CORGNAC SUR L ISLE", - "nomCommune": "CORGNAC SUR L ISLE" + "codePostal": "29470", + "codeCommune": "29140", + "libelleAcheminement": "LOPERHET", + "nomCommune": "LOPERHET" }, { - "codePostal": "61220", - "codeCommune": "61040", - "libelleAcheminement": "BELLOU EN HOULME", - "nomCommune": "BELLOU EN HOULME" + "codePostal": "29370", + "codeCommune": "29049", + "libelleAcheminement": "ELLIANT", + "nomCommune": "ELLIANT" }, { - "codePostal": "56150", - "codeCommune": "56207", - "libelleAcheminement": "ST BARTHELEMY", - "nomCommune": "ST BARTHELEMY" + "codePostal": "17540", + "codeCommune": "17009", + "libelleAcheminement": "ANGLIERS", + "nomCommune": "ANGLIERS" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "18390", + "codeCommune": "18174", + "libelleAcheminement": "OSMOY", + "nomCommune": "OSMOY" }, { - "codePostal": "24220", - "codeCommune": "24142", - "libelleAcheminement": "COUX ET BIGAROQUE MOUZENS", - "nomCommune": "COUX ET BIGAROQUE MOUZENS" + "codePostal": "29140", + "codeCommune": "29146", + "libelleAcheminement": "MELGVEN", + "nomCommune": "MELGVEN" }, { - "codePostal": "61340", - "codeCommune": "61043", - "libelleAcheminement": "BERD HUIS", - "nomCommune": "BERD HUIS" + "codePostal": "29770", + "codeCommune": "29063", + "libelleAcheminement": "GOULIEN", + "nomCommune": "GOULIEN" }, { - "codePostal": "56540", - "codeCommune": "56210", - "libelleAcheminement": "ST CARADEC TREGOMEL", - "nomCommune": "ST CARADEC TREGOMEL" + "codePostal": "17380", + "codeCommune": "17017", + "libelleAcheminement": "ARCHINGEAY", + "nomCommune": "ARCHINGEAY" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "18200", + "codeCommune": "18178", + "libelleAcheminement": "LA PERCHE", + "nomCommune": "LA PERCHE" }, { - "codePostal": "24150", - "codeCommune": "24143", - "libelleAcheminement": "COUZE ET ST FRONT", - "nomCommune": "COUZE ET ST FRONT" + "codePostal": "29242", + "codeCommune": "29155", + "libelleAcheminement": "ILE D OUESSANT", + "nomCommune": "OUESSANT" }, { - "codePostal": "61430", - "codeCommune": "61044", - "libelleAcheminement": "BERJOU", - "nomCommune": "BERJOU" + "codePostal": "29710", + "codeCommune": "29070", + "libelleAcheminement": "GUILER SUR GOYEN", + "nomCommune": "GUILER SUR GOYEN" }, { - "codePostal": "56920", - "codeCommune": "56213", - "libelleAcheminement": "ST GERAND CROIXANVEC", - "nomCommune": "ST GERAND CROIXANVEC" + "codePostal": "17400", + "codeCommune": "17022", + "libelleAcheminement": "ASNIERES LA GIRAUD", + "nomCommune": "ASNIERES LA GIRAUD" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "18110", + "codeCommune": "18179", + "libelleAcheminement": "PIGNY", + "nomCommune": "PIGNY" }, { - "codePostal": "24270", - "codeCommune": "24158", - "libelleAcheminement": "DUSSAC", - "nomCommune": "DUSSAC" + "codePostal": "29760", + "codeCommune": "29158", + "libelleAcheminement": "PENMARCH", + "nomCommune": "PENMARCH" }, { - "codePostal": "61110", - "codeCommune": "61050", - "libelleAcheminement": "COUR MAUGIS SUR HUISNE", - "nomCommune": "COUR MAUGIS SUR HUISNE" + "codePostal": "29253", + "codeCommune": "29082", + "libelleAcheminement": "ILE DE BATZ", + "nomCommune": "ILE DE BATZ" }, { - "codePostal": "56460", - "codeCommune": "56219", - "libelleAcheminement": "ST GUYOMARD", - "nomCommune": "ST GUYOMARD" + "codePostal": "17160", + "codeCommune": "17029", + "libelleAcheminement": "BAGNIZEAU", + "nomCommune": "BAGNIZEAU" }, { - "codePostal": "22400", - "codeCommune": "22098", - "libelleAcheminement": "LANDEHEN", - "nomCommune": "LANDEHEN" + "codePostal": "18290", + "codeCommune": "18181", + "libelleAcheminement": "PLOU", + "nomCommune": "PLOU" }, { - "codePostal": "24560", - "codeCommune": "24168", - "libelleAcheminement": "PLAISANCE", - "nomCommune": "PLAISANCE" + "codePostal": "29860", + "codeCommune": "29160", + "libelleAcheminement": "PLABENNEC", + "nomCommune": "PLABENNEC" }, { - "codePostal": "61110", - "codeCommune": "61050", - "libelleAcheminement": "COUR MAUGIS SUR HUISNE", - "nomCommune": "COUR MAUGIS SUR HUISNE" + "codePostal": "29980", + "codeCommune": "29085", + "libelleAcheminement": "ILE TUDY", + "nomCommune": "ILE TUDY" }, { - "codePostal": "56700", - "codeCommune": "56220", - "libelleAcheminement": "STE HELENE", - "nomCommune": "STE HELENE" + "codePostal": "17490", + "codeCommune": "17035", + "libelleAcheminement": "BAZAUGES", + "nomCommune": "BAZAUGES" }, { - "codePostal": "22130", - "codeCommune": "22105", - "libelleAcheminement": "LANGUENAN", - "nomCommune": "LANGUENAN" + "codePostal": "18290", + "codeCommune": "18182", + "libelleAcheminement": "POISIEUX", + "nomCommune": "POISIEUX" }, { - "codePostal": "24260", - "codeCommune": "24172", - "libelleAcheminement": "LES EYZIES", - "nomCommune": "LES EYZIES" + "codePostal": "29410", + "codeCommune": "29163", + "libelleAcheminement": "PLEYBER CHRIST", + "nomCommune": "PLEYBER CHRIST" }, { - "codePostal": "61570", - "codeCommune": "61055", - "libelleAcheminement": "BOUCE", - "nomCommune": "BOUCE" + "codePostal": "29460", + "codeCommune": "29086", + "libelleAcheminement": "IRVILLAC", + "nomCommune": "IRVILLAC" }, { - "codePostal": "56350", - "codeCommune": "56223", - "libelleAcheminement": "ST JEAN LA POTERIE", - "nomCommune": "ST JEAN LA POTERIE" + "codePostal": "17620", + "codeCommune": "17036", + "libelleAcheminement": "BEAUGEAY", + "nomCommune": "BEAUGEAY" }, { - "codePostal": "22300", - "codeCommune": "22113", - "libelleAcheminement": "LANNION", - "nomCommune": "LANNION" + "codePostal": "18170", + "codeCommune": "18193", + "libelleAcheminement": "REZAY", + "nomCommune": "REZAY" }, { - "codePostal": "24620", - "codeCommune": "24172", - "libelleAcheminement": "LES EYZIES", - "nomCommune": "LES EYZIES" + "codePostal": "29740", + "codeCommune": "29165", + "libelleAcheminement": "PLOBANNALEC LESCONIL", + "nomCommune": "PLOBANNALEC LESCONIL" }, { - "codePostal": "61110", - "codeCommune": "61061", - "libelleAcheminement": "BRETONCELLES", - "nomCommune": "BRETONCELLES" + "codePostal": "29100", + "codeCommune": "29087", + "libelleAcheminement": "LE JUCH", + "nomCommune": "LE JUCH" }, { - "codePostal": "56140", - "codeCommune": "56228", - "libelleAcheminement": "ST MARCEL", - "nomCommune": "ST MARCEL" + "codePostal": "17490", + "codeCommune": "17037", + "libelleAcheminement": "BEAUVAIS SUR MATHA", + "nomCommune": "BEAUVAIS SUR MATHA" }, { - "codePostal": "22410", - "codeCommune": "22117", - "libelleAcheminement": "LANTIC", - "nomCommune": "LANTIC" + "codePostal": "18110", + "codeCommune": "18206", + "libelleAcheminement": "ST ELOY DE GY", + "nomCommune": "ST ELOY DE GY" }, { - "codePostal": "24560", - "codeCommune": "24176", - "libelleAcheminement": "FAURILLES", - "nomCommune": "FAURILLES" + "codePostal": "29700", + "codeCommune": "29170", + "libelleAcheminement": "PLOMELIN", + "nomCommune": "PLOMELIN" }, { - "codePostal": "61120", - "codeCommune": "61071", - "libelleAcheminement": "CAMEMBERT", - "nomCommune": "CAMEMBERT" + "codePostal": "29870", + "codeCommune": "29101", + "libelleAcheminement": "LANDEDA", + "nomCommune": "LANDEDA" }, { - "codePostal": "56200", - "codeCommune": "56229", - "libelleAcheminement": "ST MARTIN SUR OUST", - "nomCommune": "ST MARTIN SUR OUST" + "codePostal": "17400", + "codeCommune": "17046", + "libelleAcheminement": "BIGNAY", + "nomCommune": "BIGNAY" }, { - "codePostal": "22100", - "codeCommune": "22118", - "libelleAcheminement": "LANVALLAY", - "nomCommune": "LANVALLAY" + "codePostal": "18100", + "codeCommune": "18210", + "libelleAcheminement": "ST GEORGES SUR LA PREE", + "nomCommune": "ST GEORGES SUR LA PREE" }, { - "codePostal": "24450", - "codeCommune": "24180", - "libelleAcheminement": "FIRBEIX", - "nomCommune": "FIRBEIX" + "codePostal": "29710", + "codeCommune": "29173", + "libelleAcheminement": "PLONEIS", + "nomCommune": "PLONEIS" }, { - "codePostal": "61320", - "codeCommune": "61080", - "libelleAcheminement": "CHAHAINS", - "nomCommune": "CHAHAINS" + "codePostal": "29430", + "codeCommune": "29111", + "libelleAcheminement": "LANHOUARNEAU", + "nomCommune": "LANHOUARNEAU" }, { - "codePostal": "56910", - "codeCommune": "56230", - "libelleAcheminement": "ST NICOLAS DU TERTRE", - "nomCommune": "ST NICOLAS DU TERTRE" + "codePostal": "17560", + "codeCommune": "17058", + "libelleAcheminement": "BOURCEFRANC LE CHAPUS", + "nomCommune": "BOURCEFRANC LE CHAPUS" }, { - "codePostal": "22100", - "codeCommune": "22118", - "libelleAcheminement": "LANVALLAY", - "nomCommune": "LANVALLAY" + "codePostal": "18320", + "codeCommune": "18215", + "libelleAcheminement": "ST HILAIRE DE GONDILLY", + "nomCommune": "ST HILAIRE DE GONDILLY" }, { - "codePostal": "24580", - "codeCommune": "24183", - "libelleAcheminement": "FLEURAC", - "nomCommune": "FLEURAC" + "codePostal": "29550", + "codeCommune": "29176", + "libelleAcheminement": "PLONEVEZ PORZAY", + "nomCommune": "PLONEVEZ PORZAY" }, { - "codePostal": "61390", - "codeCommune": "61082", - "libelleAcheminement": "LE CHALANGE", - "nomCommune": "LE CHALANGE" + "codePostal": "29620", + "codeCommune": "29113", + "libelleAcheminement": "LANMEUR", + "nomCommune": "LANMEUR" }, { - "codePostal": "56250", - "codeCommune": "56231", - "libelleAcheminement": "ST NOLFF", - "nomCommune": "ST NOLFF" + "codePostal": "17700", + "codeCommune": "17063", + "libelleAcheminement": "BREUIL LA REORTE", + "nomCommune": "BREUIL LA REORTE" }, { - "codePostal": "22290", - "codeCommune": "22121", - "libelleAcheminement": "LANVOLLON", - "nomCommune": "LANVOLLON" + "codePostal": "18350", + "codeCommune": "18215", + "libelleAcheminement": "ST HILAIRE DE GONDILLY", + "nomCommune": "ST HILAIRE DE GONDILLY" }, { - "codePostal": "24210", - "codeCommune": "24188", - "libelleAcheminement": "FOSSEMAGNE", - "nomCommune": "FOSSEMAGNE" + "codePostal": "29650", + "codeCommune": "29183", + "libelleAcheminement": "PLOUEGAT MOYSAN", + "nomCommune": "PLOUEGAT MOYSAN" }, { - "codePostal": "61210", - "codeCommune": "61084", - "libelleAcheminement": "CHAMPCERIE", - "nomCommune": "CHAMPCERIE" + "codePostal": "29640", + "codeCommune": "29114", + "libelleAcheminement": "LANNEANOU", + "nomCommune": "LANNEANOU" }, { - "codePostal": "56130", - "codeCommune": "56250", - "libelleAcheminement": "THEHILLAC", - "nomCommune": "THEHILLAC" + "codePostal": "17430", + "codeCommune": "17075", + "libelleAcheminement": "CABARIOT", + "nomCommune": "CABARIOT" }, { - "codePostal": "22340", - "codeCommune": "22128", - "libelleAcheminement": "LOCARN", - "nomCommune": "LOCARN" + "codePostal": "18370", + "codeCommune": "18217", + "libelleAcheminement": "ST JEANVRIN", + "nomCommune": "ST JEANVRIN" }, { - "codePostal": "24680", - "codeCommune": "24194", - "libelleAcheminement": "GARDONNE", - "nomCommune": "GARDONNE" + "codePostal": "29470", + "codeCommune": "29189", + "libelleAcheminement": "PLOUGASTEL DAOULAS", + "nomCommune": "PLOUGASTEL DAOULAS" }, { - "codePostal": "61100", - "codeCommune": "61094", - "libelleAcheminement": "LA CHAPELLE AU MOINE", - "nomCommune": "LA CHAPELLE AU MOINE" + "codePostal": "29520", + "codeCommune": "29122", + "libelleAcheminement": "LAZ", + "nomCommune": "LAZ" }, { - "codePostal": "56450", - "codeCommune": "56251", - "libelleAcheminement": "THEIX NOYALO", - "nomCommune": "THEIX NOYALO" + "codePostal": "17130", + "codeCommune": "17092", + "libelleAcheminement": "CHARTUZAC", + "nomCommune": "CHARTUZAC" }, { - "codePostal": "22480", - "codeCommune": "22139", - "libelleAcheminement": "MAGOAR", - "nomCommune": "MAGOAR" + "codePostal": "18140", + "codeCommune": "18224", + "libelleAcheminement": "ST MARTIN DES CHAMPS", + "nomCommune": "ST MARTIN DES CHAMPS" }, { - "codePostal": "24170", - "codeCommune": "24206", - "libelleAcheminement": "GRIVES", - "nomCommune": "GRIVES" + "codePostal": "29217", + "codeCommune": "29190", + "libelleAcheminement": "PLOUGONVELIN", + "nomCommune": "PLOUGONVELIN" }, { - "codePostal": "61230", - "codeCommune": "61108", - "libelleAcheminement": "CISAI ST AUBIN", - "nomCommune": "CISAI ST AUBIN" + "codePostal": "29670", + "codeCommune": "29132", + "libelleAcheminement": "LOCQUENOLE", + "nomCommune": "LOCQUENOLE" }, { - "codePostal": "56140", - "codeCommune": "56253", - "libelleAcheminement": "TREAL", - "nomCommune": "TREAL" + "codePostal": "17600", + "codeCommune": "17097", + "libelleAcheminement": "LE CHAY", + "nomCommune": "LE CHAY" }, { - "codePostal": "22110", - "codeCommune": "22146", - "libelleAcheminement": "MELLIONNEC", - "nomCommune": "MELLIONNEC" + "codePostal": "18700", + "codeCommune": "18227", + "libelleAcheminement": "STE MONTAINE", + "nomCommune": "STE MONTAINE" }, { - "codePostal": "24410", - "codeCommune": "24216", - "libelleAcheminement": "LA JEMAYE PONTEYRAUD", - "nomCommune": "LA JEMAYE PONTEYRAUD" + "codePostal": "29217", + "codeCommune": "29190", + "libelleAcheminement": "PLOUGONVELIN", + "nomCommune": "PLOUGONVELIN" }, { - "codePostal": "61360", - "codeCommune": "61121", - "libelleAcheminement": "COULIMER", - "nomCommune": "COULIMER" + "codePostal": "29310", + "codeCommune": "29136", + "libelleAcheminement": "LOCUNOLE", + "nomCommune": "LOCUNOLE" }, { - "codePostal": "56190", - "codeCommune": "56259", - "libelleAcheminement": "LA TRINITE SURZUR", - "nomCommune": "LA TRINITE SURZUR" + "codePostal": "17150", + "codeCommune": "17116", + "libelleAcheminement": "CONSAC", + "nomCommune": "CONSAC" }, { - "codePostal": "22230", - "codeCommune": "22148", - "libelleAcheminement": "MERILLAC", - "nomCommune": "MERILLAC" + "codePostal": "18170", + "codeCommune": "18230", + "libelleAcheminement": "ST PIERRE LES BOIS", + "nomCommune": "ST PIERRE LES BOIS" }, { - "codePostal": "24130", - "codeCommune": "24222", - "libelleAcheminement": "LA FORCE", - "nomCommune": "LA FORCE" + "codePostal": "29810", + "codeCommune": "29201", + "libelleAcheminement": "PLOUMOGUER", + "nomCommune": "PLOUMOGUER" }, { - "codePostal": "61400", - "codeCommune": "61129", - "libelleAcheminement": "COURGEON", - "nomCommune": "COURGEON" + "codePostal": "29190", + "codeCommune": "29142", + "libelleAcheminement": "LOTHEY", + "nomCommune": "LOTHEY" }, { - "codePostal": "56400", - "codeCommune": "56262", - "libelleAcheminement": "LE BONO", - "nomCommune": "BONO" + "codePostal": "17600", + "codeCommune": "17119", + "libelleAcheminement": "CORME ECLUSE", + "nomCommune": "CORME ECLUSE" }, { - "codePostal": "22460", - "codeCommune": "22149", - "libelleAcheminement": "MERLEAC", - "nomCommune": "MERLEAC" + "codePostal": "18210", + "codeCommune": "18231", + "libelleAcheminement": "ST PIERRE LES ETIEUX", + "nomCommune": "ST PIERRE LES ETIEUX" }, { - "codePostal": "24270", - "codeCommune": "24227", - "libelleAcheminement": "LANOUAILLE", - "nomCommune": "LANOUAILLE" + "codePostal": "29400", + "codeCommune": "29204", + "libelleAcheminement": "PLOUNEVENTER", + "nomCommune": "PLOUNEVENTER" }, { - "codePostal": "61250", - "codeCommune": "61141", - "libelleAcheminement": "CUISSAI", - "nomCommune": "CUISSAI" + "codePostal": "29420", + "codeCommune": "29148", + "libelleAcheminement": "MESPAUL", + "nomCommune": "MESPAUL" }, { - "codePostal": "57590", - "codeCommune": "57009", - "libelleAcheminement": "AJONCOURT", - "nomCommune": "AJONCOURT" + "codePostal": "17670", + "codeCommune": "17121", + "libelleAcheminement": "LA COUARDE SUR MER", + "nomCommune": "LA COUARDE SUR MER" }, { - "codePostal": "22200", - "codeCommune": "22156", - "libelleAcheminement": "MOUSTERU", - "nomCommune": "MOUSTERU" + "codePostal": "18370", + "codeCommune": "18232", + "libelleAcheminement": "ST PRIEST LA MARCHE", + "nomCommune": "ST PRIEST LA MARCHE" }, { - "codePostal": "24540", - "codeCommune": "24231", - "libelleAcheminement": "LAVALADE", - "nomCommune": "LAVALADE" + "codePostal": "29420", + "codeCommune": "29210", + "libelleAcheminement": "PLOUVORN", + "nomCommune": "PLOUVORN" }, { - "codePostal": "61700", - "codeCommune": "61145", - "libelleAcheminement": "DOMFRONT EN POIRAIE", - "nomCommune": "DOMFRONT EN POIRAIE" + "codePostal": "29600", + "codeCommune": "29151", + "libelleAcheminement": "MORLAIX", + "nomCommune": "MORLAIX" }, { - "codePostal": "57865", - "codeCommune": "57017", - "libelleAcheminement": "AMANVILLERS", - "nomCommune": "AMANVILLERS" + "codePostal": "17100", + "codeCommune": "17128", + "libelleAcheminement": "COURCOURY", + "nomCommune": "COURCOURY" }, { - "codePostal": "22340", - "codeCommune": "22157", - "libelleAcheminement": "LE MOUSTOIR", - "nomCommune": "LE MOUSTOIR" + "codePostal": "18190", + "codeCommune": "18236", + "libelleAcheminement": "ST SYMPHORIEN", + "nomCommune": "ST SYMPHORIEN" }, { - "codePostal": "24400", - "codeCommune": "24234", - "libelleAcheminement": "LES LECHES", - "nomCommune": "LES LECHES" + "codePostal": "29700", + "codeCommune": "29216", + "libelleAcheminement": "PLUGUFFAN", + "nomCommune": "PLUGUFFAN" }, { - "codePostal": "61100", - "codeCommune": "61148", - "libelleAcheminement": "DURCET", - "nomCommune": "DURCET" + "codePostal": "29800", + "codeCommune": "29156", + "libelleAcheminement": "PENCRAN", + "nomCommune": "PENCRAN" }, { - "codePostal": "57360", - "codeCommune": "57019", - "libelleAcheminement": "AMNEVILLE LES THERMES", - "nomCommune": "AMNEVILLE" + "codePostal": "17260", + "codeCommune": "17133", + "libelleAcheminement": "CRAVANS", + "nomCommune": "CRAVANS" }, { - "codePostal": "22500", - "codeCommune": "22162", - "libelleAcheminement": "PAIMPOL", - "nomCommune": "PAIMPOL" + "codePostal": "18500", + "codeCommune": "18237", + "libelleAcheminement": "STE THORETTE", + "nomCommune": "STE THORETTE" }, { - "codePostal": "24100", - "codeCommune": "24237", - "libelleAcheminement": "LEMBRAS", - "nomCommune": "LEMBRAS" + "codePostal": "29840", + "codeCommune": "29221", + "libelleAcheminement": "PORSPODER", + "nomCommune": "PORSPODER" }, { - "codePostal": "61440", - "codeCommune": "61149", - "libelleAcheminement": "ECHALOU", - "nomCommune": "ECHALOU" + "codePostal": "29760", + "codeCommune": "29158", + "libelleAcheminement": "PENMARCH", + "nomCommune": "PENMARCH" }, { - "codePostal": "57580", - "codeCommune": "57029", - "libelleAcheminement": "ARRIANCE", - "nomCommune": "ARRIANCE" + "codePostal": "17100", + "codeCommune": "17143", + "libelleAcheminement": "LE DOUHET", + "nomCommune": "LE DOUHET" }, { - "codePostal": "22710", - "codeCommune": "22166", - "libelleAcheminement": "PENVENAN", - "nomCommune": "PENVENAN" + "codePostal": "18600", + "codeCommune": "18242", + "libelleAcheminement": "SANCOINS", + "nomCommune": "SANCOINS" }, { - "codePostal": "24800", - "codeCommune": "24238", - "libelleAcheminement": "LEMPZOURS", - "nomCommune": "LEMPZOURS" + "codePostal": "29800", + "codeCommune": "29237", + "libelleAcheminement": "LA ROCHE MAURICE", + "nomCommune": "LA ROCHE MAURICE" }, { - "codePostal": "61160", - "codeCommune": "61152", - "libelleAcheminement": "ECORCHES", - "nomCommune": "ECORCHES" + "codePostal": "29710", + "codeCommune": "29159", + "libelleAcheminement": "PEUMERIT", + "nomCommune": "PEUMERIT" }, { - "codePostal": "57580", - "codeCommune": "57037", - "libelleAcheminement": "AUBE", - "nomCommune": "AUBE" + "codePostal": "17800", + "codeCommune": "17145", + "libelleAcheminement": "ECHEBRUNE", + "nomCommune": "ECHEBRUNE" }, { - "codePostal": "22800", - "codeCommune": "22170", - "libelleAcheminement": "PLAINE HAUTE", - "nomCommune": "PLAINE HAUTE" + "codePostal": "18240", + "codeCommune": "18243", + "libelleAcheminement": "SANTRANGES", + "nomCommune": "SANTRANGES" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "29570", + "codeCommune": "29238", + "libelleAcheminement": "ROSCANVEL", + "nomCommune": "ROSCANVEL" }, { - "codePostal": "61150", - "codeCommune": "61153", - "libelleAcheminement": "ECOUCHE LES VALLEES", - "nomCommune": "ECOUCHE LES VALLEES" + "codePostal": "29740", + "codeCommune": "29165", + "libelleAcheminement": "PLOBANNALEC LESCONIL", + "nomCommune": "PLOBANNALEC LESCONIL" }, { - "codePostal": "57710", - "codeCommune": "57041", - "libelleAcheminement": "AUMETZ", - "nomCommune": "AUMETZ" + "codePostal": "17510", + "codeCommune": "17149", + "libelleAcheminement": "LES EDUTS", + "nomCommune": "LES EDUTS" }, { - "codePostal": "22190", - "codeCommune": "22187", - "libelleAcheminement": "PLERIN", - "nomCommune": "PLERIN" + "codePostal": "18300", + "codeCommune": "18249", + "libelleAcheminement": "SENS BEAUJEU", + "nomCommune": "SENS BEAUJEU" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "29590", + "codeCommune": "29240", + "libelleAcheminement": "ROSNOEN", + "nomCommune": "ROSNOEN" }, { - "codePostal": "61550", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" + "codePostal": "29720", + "codeCommune": "29174", + "libelleAcheminement": "PLONEOUR LANVERN", + "nomCommune": "PLONEOUR LANVERN" }, { - "codePostal": "57690", - "codeCommune": "57047", - "libelleAcheminement": "BAMBIDERSTROFF", - "nomCommune": "BAMBIDERSTROFF" + "codePostal": "17600", + "codeCommune": "17151", + "libelleAcheminement": "L EGUILLE", + "nomCommune": "L EGUILLE" }, { - "codePostal": "22490", - "codeCommune": "22190", - "libelleAcheminement": "PLESLIN TRIGAVOU", - "nomCommune": "PLESLIN TRIGAVOU" + "codePostal": "18190", + "codeCommune": "18250", + "libelleAcheminement": "SERRUELLES", + "nomCommune": "SERRUELLES" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "29260", + "codeCommune": "29255", + "libelleAcheminement": "ST MEEN", + "nomCommune": "ST MEEN" }, { - "codePostal": "61550", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" + "codePostal": "29530", + "codeCommune": "29175", + "libelleAcheminement": "PLONEVEZ DU FAOU", + "nomCommune": "PLONEVEZ DU FAOU" }, { - "codePostal": "57830", - "codeCommune": "57050", - "libelleAcheminement": "BARCHAIN", - "nomCommune": "BARCHAIN" + "codePostal": "17400", + "codeCommune": "17165", + "libelleAcheminement": "FONTENET", + "nomCommune": "FONTENET" }, { - "codePostal": "22560", - "codeCommune": "22198", - "libelleAcheminement": "PLEUMEUR BODOU", - "nomCommune": "PLEUMEUR BODOU" + "codePostal": "18140", + "codeCommune": "18251", + "libelleAcheminement": "SEVRY", + "nomCommune": "SEVRY" }, { - "codePostal": "24620", - "codeCommune": "24255", - "libelleAcheminement": "MARQUAY", - "nomCommune": "MARQUAY" + "codePostal": "29290", + "codeCommune": "29260", + "libelleAcheminement": "ST RENAN", + "nomCommune": "ST RENAN" }, { - "codePostal": "61600", - "codeCommune": "61168", - "libelleAcheminement": "LA FERTE MACE", - "nomCommune": "LA FERTE MACE" + "codePostal": "29260", + "codeCommune": "29179", + "libelleAcheminement": "PLOUDANIEL", + "nomCommune": "PLOUDANIEL" }, { - "codePostal": "57340", - "codeCommune": "57059", - "libelleAcheminement": "BELLANGE", - "nomCommune": "BELLANGE" + "codePostal": "17290", + "codeCommune": "17166", + "libelleAcheminement": "FORGES", + "nomCommune": "FORGES" }, { - "codePostal": "22340", - "codeCommune": "22202", - "libelleAcheminement": "PLEVIN", - "nomCommune": "PLEVIN" + "codePostal": "18220", + "codeCommune": "18253", + "libelleAcheminement": "SOULANGIS", + "nomCommune": "SOULANGIS" }, { - "codePostal": "24430", - "codeCommune": "24256", - "libelleAcheminement": "MARSAC SUR L ISLE", - "nomCommune": "MARSAC SUR L ISLE" + "codePostal": "29520", + "codeCommune": "29267", + "libelleAcheminement": "ST THOIS", + "nomCommune": "ST THOIS" }, { - "codePostal": "61240", - "codeCommune": "61188", - "libelleAcheminement": "LA GENEVRAIE", - "nomCommune": "LA GENEVRAIE" + "codePostal": "29800", + "codeCommune": "29180", + "libelleAcheminement": "PLOUDIRY", + "nomCommune": "PLOUDIRY" }, { - "codePostal": "57570", - "codeCommune": "57062", - "libelleAcheminement": "BERG SUR MOSELLE", - "nomCommune": "BERG SUR MOSELLE" + "codePostal": "17270", + "codeCommune": "17167", + "libelleAcheminement": "LE FOUILLOUX", + "nomCommune": "LE FOUILLOUX" }, { - "codePostal": "22420", - "codeCommune": "22207", - "libelleAcheminement": "PLOUARET", - "nomCommune": "PLOUARET" + "codePostal": "18300", + "codeCommune": "18258", + "libelleAcheminement": "SURY EN VAUX", + "nomCommune": "SURY EN VAUX" }, { - "codePostal": "24140", - "codeCommune": "24259", - "libelleAcheminement": "EYRAUD CREMPSE MAURENS", - "nomCommune": "EYRAUD CREMPSE MAURENS" + "codePostal": "29440", + "codeCommune": "29271", + "libelleAcheminement": "ST VOUGAY", + "nomCommune": "ST VOUGAY" }, { - "codePostal": "61160", - "codeCommune": "61197", - "libelleAcheminement": "GUEPREI", - "nomCommune": "GUEPREI" + "codePostal": "29420", + "codeCommune": "29184", + "libelleAcheminement": "PLOUENAN", + "nomCommune": "PLOUENAN" }, { - "codePostal": "57310", - "codeCommune": "57067", - "libelleAcheminement": "BERTRANGE", - "nomCommune": "BERTRANGE" + "codePostal": "17250", + "codeCommune": "17171", + "libelleAcheminement": "GEAY", + "nomCommune": "GEAY" }, { - "codePostal": "22830", - "codeCommune": "22208", - "libelleAcheminement": "PLOUASNE", - "nomCommune": "PLOUASNE" + "codePostal": "18260", + "codeCommune": "18264", + "libelleAcheminement": "THOU", + "nomCommune": "THOU" }, { - "codePostal": "24140", - "codeCommune": "24259", - "libelleAcheminement": "EYRAUD CREMPSE MAURENS", - "nomCommune": "EYRAUD CREMPSE MAURENS" + "codePostal": "29640", + "codeCommune": "29275", + "libelleAcheminement": "SCRIGNAC", + "nomCommune": "SCRIGNAC" }, { - "codePostal": "61120", - "codeCommune": "61198", - "libelleAcheminement": "GUERQUESALLES", - "nomCommune": "GUERQUESALLES" + "codePostal": "29430", + "codeCommune": "29185", + "libelleAcheminement": "PLOUESCAT", + "nomCommune": "PLOUESCAT" }, { - "codePostal": "57170", - "codeCommune": "57084", - "libelleAcheminement": "BIONCOURT", - "nomCommune": "BIONCOURT" + "codePostal": "17430", + "codeCommune": "17174", + "libelleAcheminement": "GENOUILLE", + "nomCommune": "GENOUILLE" }, { - "codePostal": "22300", - "codeCommune": "22211", - "libelleAcheminement": "PLOUBEZRE", - "nomCommune": "PLOUBEZRE" + "codePostal": "18320", + "codeCommune": "18265", + "libelleAcheminement": "TORTERON", + "nomCommune": "TORTERON" }, { - "codePostal": "24150", - "codeCommune": "24260", - "libelleAcheminement": "MAUZAC ET GRAND CASTANG", - "nomCommune": "MAUZAC ET GRAND CASTANG" + "codePostal": "29250", + "codeCommune": "29276", + "libelleAcheminement": "SIBIRIL", + "nomCommune": "SIBIRIL" }, { - "codePostal": "61140", - "codeCommune": "61211", - "libelleAcheminement": "JUVIGNY VAL D ANDAINE", - "nomCommune": "JUVIGNY VAL D ANDAINE" + "codePostal": "29440", + "codeCommune": "29187", + "libelleAcheminement": "PLOUGAR", + "nomCommune": "PLOUGAR" }, { - "codePostal": "57220", - "codeCommune": "57085", - "libelleAcheminement": "BIONVILLE SUR NIED", - "nomCommune": "BIONVILLE SUR NIED" + "codePostal": "17160", + "codeCommune": "17176", + "libelleAcheminement": "GIBOURNE", + "nomCommune": "GIBOURNE" }, { - "codePostal": "22490", - "codeCommune": "22213", - "libelleAcheminement": "PLOUER SUR RANCE", - "nomCommune": "PLOUER SUR RANCE" + "codePostal": "18190", + "codeCommune": "18268", + "libelleAcheminement": "UZAY LE VENON", + "nomCommune": "UZAY LE VENON" }, { - "codePostal": "24550", - "codeCommune": "24263", - "libelleAcheminement": "MAZEYROLLES", - "nomCommune": "MAZEYROLLES" + "codePostal": "29260", + "codeCommune": "29288", + "libelleAcheminement": "TREGARANTEC", + "nomCommune": "TREGARANTEC" }, { - "codePostal": "61330", - "codeCommune": "61211", - "libelleAcheminement": "JUVIGNY VAL D ANDAINE", - "nomCommune": "JUVIGNY VAL D ANDAINE" + "codePostal": "29630", + "codeCommune": "29188", + "libelleAcheminement": "PLOUGASNOU", + "nomCommune": "PLOUGASNOU" }, { - "codePostal": "57260", - "codeCommune": "57090", - "libelleAcheminement": "BLANCHE EGLISE", - "nomCommune": "BLANCHE EGLISE" + "codePostal": "17170", + "codeCommune": "17182", + "libelleAcheminement": "LA GREVE SUR MIGNON", + "nomCommune": "LA GREVE SUR MIGNON" }, { - "codePostal": "22470", - "codeCommune": "22214", - "libelleAcheminement": "PLOUEZEC", - "nomCommune": "PLOUEZEC" + "codePostal": "18110", + "codeCommune": "18280", + "libelleAcheminement": "VIGNOUX SOUS LES AIX", + "nomCommune": "VIGNOUX SOUS LES AIX" }, { - "codePostal": "24480", - "codeCommune": "24273", - "libelleAcheminement": "MOLIERES", - "nomCommune": "MOLIERES" + "codePostal": "29720", + "codeCommune": "29292", + "libelleAcheminement": "TREGUENNEC", + "nomCommune": "TREGUENNEC" }, { - "codePostal": "61330", - "codeCommune": "61211", - "libelleAcheminement": "JUVIGNY VAL D ANDAINE", - "nomCommune": "JUVIGNY VAL D ANDAINE" + "codePostal": "29640", + "codeCommune": "29191", + "libelleAcheminement": "PLOUGONVEN", + "nomCommune": "PLOUGONVEN" }, { - "codePostal": "57200", - "codeCommune": "57093", - "libelleAcheminement": "BLIES GUERSVILLER", - "nomCommune": "BLIES GUERSVILLER" + "codePostal": "17520", + "codeCommune": "17192", + "libelleAcheminement": "JARNAC CHAMPAGNE", + "nomCommune": "JARNAC CHAMPAGNE" }, { - "codePostal": "22440", - "codeCommune": "22215", - "libelleAcheminement": "PLOUFRAGAN", - "nomCommune": "PLOUFRAGAN" + "codePostal": "18500", + "codeCommune": "18281", + "libelleAcheminement": "VIGNOUX SUR BARANGEON", + "nomCommune": "VIGNOUX SUR BARANGEON" }, { - "codePostal": "24240", - "codeCommune": "24276", - "libelleAcheminement": "MONESTIER", - "nomCommune": "MONESTIER" + "codePostal": "29910", + "codeCommune": "29293", + "libelleAcheminement": "TREGUNC", + "nomCommune": "TREGUNC" }, { - "codePostal": "61330", - "codeCommune": "61211", - "libelleAcheminement": "JUVIGNY VAL D ANDAINE", - "nomCommune": "JUVIGNY VAL D ANDAINE" + "codePostal": "29250", + "codeCommune": "29192", + "libelleAcheminement": "PLOUGOULM", + "nomCommune": "PLOUGOULM" }, { - "codePostal": "57220", - "codeCommune": "57097", - "libelleAcheminement": "BOULAY", - "nomCommune": "BOULAY MOSELLE" + "codePostal": "17130", + "codeCommune": "17199", + "libelleAcheminement": "JUSSAS", + "nomCommune": "JUSSAS" }, { - "codePostal": "22810", - "codeCommune": "22228", - "libelleAcheminement": "PLOUNEVEZ MOEDEC", - "nomCommune": "PLOUNEVEZ MOEDEC" + "codePostal": "18800", + "codeCommune": "18286", + "libelleAcheminement": "VILLEQUIERS", + "nomCommune": "VILLEQUIERS" }, { - "codePostal": "24350", - "codeCommune": "24286", - "libelleAcheminement": "MONTAGRIER", - "nomCommune": "MONTAGRIER" + "codePostal": "29450", + "codeCommune": "29294", + "libelleAcheminement": "LE TREHOU", + "nomCommune": "LE TREHOU" }, { - "codePostal": "61320", - "codeCommune": "61228", - "libelleAcheminement": "L OREE D ECOUVES", - "nomCommune": "L OREE D ECOUVES" + "codePostal": "29400", + "codeCommune": "29193", + "libelleAcheminement": "PLOUGOURVEST", + "nomCommune": "PLOUGOURVEST" }, { - "codePostal": "57260", - "codeCommune": "57098", - "libelleAcheminement": "BOURGALTROFF", - "nomCommune": "BOURGALTROFF" + "codePostal": "17870", + "codeCommune": "17205", + "libelleAcheminement": "LOIRE LES MARAIS", + "nomCommune": "LOIRE LES MARAIS" }, { - "codePostal": "22160", - "codeCommune": "22231", - "libelleAcheminement": "PLOURAC H", - "nomCommune": "PLOURAC H" + "codePostal": "19380", + "codeCommune": "19004", + "libelleAcheminement": "ALBUSSAC", + "nomCommune": "ALBUSSAC" }, { - "codePostal": "24560", - "codeCommune": "24287", - "libelleAcheminement": "MONTAUT", - "nomCommune": "MONTAUT" + "codePostal": "29720", + "codeCommune": "29298", + "libelleAcheminement": "TREOGAT", + "nomCommune": "TREOGAT" }, { - "codePostal": "61290", - "codeCommune": "61230", - "libelleAcheminement": "LONGNY LES VILLAGES", - "nomCommune": "LONGNY LES VILLAGES" + "codePostal": "29880", + "codeCommune": "29195", + "libelleAcheminement": "PLOUGUERNEAU", + "nomCommune": "PLOUGUERNEAU" }, { - "codePostal": "57810", - "codeCommune": "57099", - "libelleAcheminement": "BOURDONNAY", - "nomCommune": "BOURDONNAY" + "codePostal": "17470", + "codeCommune": "17206", + "libelleAcheminement": "LOIRE SUR NIE", + "nomCommune": "LOIRE SUR NIE" }, { - "codePostal": "22250", - "codeCommune": "22240", - "libelleAcheminement": "PLUMAUGAT", - "nomCommune": "PLUMAUGAT" + "codePostal": "19250", + "codeCommune": "19008", + "libelleAcheminement": "AMBRUGEAT", + "nomCommune": "AMBRUGEAT" }, { - "codePostal": "24290", - "codeCommune": "24291", - "libelleAcheminement": "MONTIGNAC LASCAUX", - "nomCommune": "MONTIGNAC LASCAUX" + "codePostal": "29290", + "codeCommune": "29299", + "libelleAcheminement": "TREOUERGAT", + "nomCommune": "TREOUERGAT" }, { - "codePostal": "61250", - "codeCommune": "61234", - "libelleAcheminement": "LONRAI", - "nomCommune": "LONRAI" + "codePostal": "29860", + "codeCommune": "29209", + "libelleAcheminement": "PLOUVIEN", + "nomCommune": "PLOUVIEN" }, { - "codePostal": "57310", - "codeCommune": "57102", - "libelleAcheminement": "BOUSSE", - "nomCommune": "BOUSSE" + "codePostal": "17330", + "codeCommune": "17211", + "libelleAcheminement": "LOULAY", + "nomCommune": "LOULAY" }, { - "codePostal": "22210", - "codeCommune": "22241", - "libelleAcheminement": "PLUMIEUX", - "nomCommune": "PLUMIEUX" + "codePostal": "19190", + "codeCommune": "19013", + "libelleAcheminement": "AUBAZINES", + "nomCommune": "AUBAZINES" }, { - "codePostal": "24700", - "codeCommune": "24294", - "libelleAcheminement": "MONTPON MENESTEROL", - "nomCommune": "MONTPON MENESTEROL" + "codePostal": "20160", + "codeCommune": "2A019", + "libelleAcheminement": "ARBORI", + "nomCommune": "ARBORI" }, { - "codePostal": "61160", - "codeCommune": "61238", - "libelleAcheminement": "LOUVIERES EN AUGE", - "nomCommune": "LOUVIERES EN AUGE" + "codePostal": "29690", + "codeCommune": "29211", + "libelleAcheminement": "PLOUYE", + "nomCommune": "PLOUYE" }, { - "codePostal": "57570", - "codeCommune": "57104", - "libelleAcheminement": "BOUST", - "nomCommune": "BOUST" + "codePostal": "17330", + "codeCommune": "17213", + "libelleAcheminement": "LOZAY", + "nomCommune": "LOZAY" }, { - "codePostal": "22240", - "codeCommune": "22242", - "libelleAcheminement": "PLURIEN", - "nomCommune": "PLURIEN" + "codePostal": "19220", + "codeCommune": "19014", + "libelleAcheminement": "AURIAC", + "nomCommune": "AURIAC" }, { - "codePostal": "24390", - "codeCommune": "24302", - "libelleAcheminement": "NAILHAC", - "nomCommune": "NAILHAC" + "codePostal": "20116", + "codeCommune": "2A024", + "libelleAcheminement": "AULLENE", + "nomCommune": "AULLENE" }, { - "codePostal": "61290", - "codeCommune": "61242", - "libelleAcheminement": "LE MAGE", - "nomCommune": "LE MAGE" + "codePostal": "29720", + "codeCommune": "29214", + "libelleAcheminement": "PLOVAN", + "nomCommune": "PLOVAN" }, { - "codePostal": "57380", - "codeCommune": "57105", - "libelleAcheminement": "BOUSTROFF", - "nomCommune": "BOUSTROFF" + "codePostal": "17430", + "codeCommune": "17216", + "libelleAcheminement": "LUSSANT", + "nomCommune": "LUSSANT" }, { - "codePostal": "22260", - "codeCommune": "22250", - "libelleAcheminement": "PONTRIEUX", - "nomCommune": "PONTRIEUX" + "codePostal": "19220", + "codeCommune": "19018", + "libelleAcheminement": "BASSIGNAC LE HAUT", + "nomCommune": "BASSIGNAC LE HAUT" }, { - "codePostal": "24320", - "codeCommune": "24303", - "libelleAcheminement": "NANTEUIL AURIAC DE BOURZAC", - "nomCommune": "NANTEUIL AURIAC DE BOURZAC" + "codePostal": "20121", + "codeCommune": "2A027", + "libelleAcheminement": "AZZANA", + "nomCommune": "AZZANA" }, { - "codePostal": "61410", - "codeCommune": "61257", - "libelleAcheminement": "MEHOUDIN", - "nomCommune": "MEHOUDIN" + "codePostal": "29790", + "codeCommune": "29218", + "libelleAcheminement": "PONT CROIX", + "nomCommune": "PONT CROIX" }, { - "codePostal": "57400", - "codeCommune": "57119", - "libelleAcheminement": "BUHL LORRAINE", - "nomCommune": "BUHL LORRAINE" + "codePostal": "17800", + "codeCommune": "17220", + "libelleAcheminement": "MARIGNAC", + "nomCommune": "MARIGNAC" }, { - "codePostal": "22260", - "codeCommune": "22256", - "libelleAcheminement": "QUEMPER GUEZENNEC", - "nomCommune": "QUEMPER GUEZENNEC" + "codePostal": "19120", + "codeCommune": "19019", + "libelleAcheminement": "BEAULIEU SUR DORDOGNE", + "nomCommune": "BEAULIEU SUR DORDOGNE" }, { - "codePostal": "24320", - "codeCommune": "24303", - "libelleAcheminement": "NANTEUIL AURIAC DE BOURZAC", - "nomCommune": "NANTEUIL AURIAC DE BOURZAC" + "codePostal": "20160", + "codeCommune": "2A028", + "libelleAcheminement": "BALOGNA", + "nomCommune": "BALOGNA" }, { - "codePostal": "61800", - "codeCommune": "61262", - "libelleAcheminement": "LE MENIL CIBOULT", - "nomCommune": "LE MENIL CIBOULT" + "codePostal": "29180", + "codeCommune": "29229", + "libelleAcheminement": "QUEMENEVEN", + "nomCommune": "QUEMENEVEN" }, { - "codePostal": "57640", - "codeCommune": "57129", - "libelleAcheminement": "CHARLY ORADOUR", - "nomCommune": "CHARLY ORADOUR" + "codePostal": "17137", + "codeCommune": "17222", + "libelleAcheminement": "MARSILLY", + "nomCommune": "MARSILLY" }, { - "codePostal": "22120", - "codeCommune": "22258", - "libelleAcheminement": "QUESSOY", - "nomCommune": "QUESSOY" + "codePostal": "19110", + "codeCommune": "19028", + "libelleAcheminement": "BORT LES ORGUES", + "nomCommune": "BORT LES ORGUES" }, { - "codePostal": "24800", - "codeCommune": "24304", - "libelleAcheminement": "NANTHEUIL", - "nomCommune": "NANTHEUIL" + "codePostal": "20129", + "codeCommune": "2A032", + "libelleAcheminement": "BASTELICACCIA", + "nomCommune": "BASTELICACCIA" }, { - "codePostal": "61240", - "codeCommune": "61272", - "libelleAcheminement": "LE MENIL VICOMTE", - "nomCommune": "LE MENIL VICOMTE" + "codePostal": "29300", + "codeCommune": "29233", + "libelleAcheminement": "QUIMPERLE", + "nomCommune": "QUIMPERLE" }, { - "codePostal": "57160", - "codeCommune": "57134", - "libelleAcheminement": "CHATEL ST GERMAIN", - "nomCommune": "CHATEL ST GERMAIN" + "codePostal": "17770", + "codeCommune": "17235", + "libelleAcheminement": "MIGRON", + "nomCommune": "MIGRON" }, { - "codePostal": "22100", - "codeCommune": "22259", - "libelleAcheminement": "QUEVERT", - "nomCommune": "QUEVERT" + "codePostal": "19500", + "codeCommune": "19029", + "libelleAcheminement": "BRANCEILLES", + "nomCommune": "BRANCEILLES" }, { - "codePostal": "24230", - "codeCommune": "24306", - "libelleAcheminement": "NASTRINGUES", - "nomCommune": "NASTRINGUES" + "codePostal": "20169", + "codeCommune": "2A041", + "libelleAcheminement": "BONIFACIO", + "nomCommune": "BONIFACIO" }, { - "codePostal": "61210", - "codeCommune": "61273", - "libelleAcheminement": "MENIL VIN", - "nomCommune": "MENIL VIN" + "codePostal": "29170", + "codeCommune": "29247", + "libelleAcheminement": "ST EVARZEC", + "nomCommune": "ST EVARZEC" }, { - "codePostal": "57420", - "codeCommune": "57137", - "libelleAcheminement": "CHEMINOT", - "nomCommune": "CHEMINOT" + "codePostal": "17160", + "codeCommune": "17239", + "libelleAcheminement": "MONS", + "nomCommune": "MONS" }, { - "codePostal": "22300", - "codeCommune": "22265", - "libelleAcheminement": "ROSPEZ", - "nomCommune": "ROSPEZ" + "codePostal": "19310", + "codeCommune": "19030", + "libelleAcheminement": "BRIGNAC LA PLAINE", + "nomCommune": "BRIGNAC LA PLAINE" }, { - "codePostal": "24460", - "codeCommune": "24308", - "libelleAcheminement": "NEGRONDES", - "nomCommune": "NEGRONDES" + "codePostal": "20142", + "codeCommune": "2A056", + "libelleAcheminement": "CAMPO", + "nomCommune": "CAMPO" }, { - "codePostal": "61160", - "codeCommune": "61283", - "libelleAcheminement": "MONTABARD", - "nomCommune": "MONTABARD" + "codePostal": "29600", + "codeCommune": "29254", + "libelleAcheminement": "ST MARTIN DES CHAMPS", + "nomCommune": "ST MARTIN DES CHAMPS" }, { - "codePostal": "57800", - "codeCommune": "57144", - "libelleAcheminement": "COCHEREN", - "nomCommune": "COCHEREN" + "codePostal": "17130", + "codeCommune": "17240", + "libelleAcheminement": "MONTENDRE", + "nomCommune": "MONTENDRE" }, { - "codePostal": "22550", - "codeCommune": "22268", - "libelleAcheminement": "RUCA", - "nomCommune": "RUCA" + "codePostal": "19100", + "codeCommune": "19031", + "libelleAcheminement": "BRIVE LA GAILLARDE", + "nomCommune": "BRIVE LA GAILLARDE" }, { - "codePostal": "24300", - "codeCommune": "24311", - "libelleAcheminement": "NONTRON", - "nomCommune": "NONTRON" + "codePostal": "20170", + "codeCommune": "2A061", + "libelleAcheminement": "CARBINI", + "nomCommune": "CARBINI" }, { - "codePostal": "61170", - "codeCommune": "61284", - "libelleAcheminement": "MONTCHEVREL", - "nomCommune": "MONTCHEVREL" + "codePostal": "29830", + "codeCommune": "29257", + "libelleAcheminement": "ST PABU", + "nomCommune": "ST PABU" }, { - "codePostal": "57800", - "codeCommune": "57144", - "libelleAcheminement": "COCHEREN", - "nomCommune": "COCHEREN" + "codePostal": "17220", + "codeCommune": "17245", + "libelleAcheminement": "MONTROY", + "nomCommune": "MONTROY" }, { - "codePostal": "22260", - "codeCommune": "22269", - "libelleAcheminement": "RUNAN", - "nomCommune": "RUNAN" + "codePostal": "19430", + "codeCommune": "19034", + "libelleAcheminement": "CAMPS ST MATHURIN LEOBAZEL", + "nomCommune": "CAMPS ST MATHURIN LEOBAZEL" }, { - "codePostal": "24380", - "codeCommune": "24312", - "libelleAcheminement": "SANILHAC", - "nomCommune": "SANILHAC" + "codePostal": "20160", + "codeCommune": "2A090", + "libelleAcheminement": "COGGIA", + "nomCommune": "COGGIA" }, { - "codePostal": "61210", - "codeCommune": "61290", - "libelleAcheminement": "MONTREUIL AU HOULME", - "nomCommune": "MONTREUIL AU HOULME" + "codePostal": "29590", + "codeCommune": "29263", + "libelleAcheminement": "ST SEGAL", + "nomCommune": "ST SEGAL" }, { - "codePostal": "57420", - "codeCommune": "57147", - "libelleAcheminement": "COIN SUR SEILLE", - "nomCommune": "COIN SUR SEILLE" + "codePostal": "17600", + "codeCommune": "17265", + "libelleAcheminement": "NIEULLE SUR SEUDRE", + "nomCommune": "NIEULLE SUR SEUDRE" }, { - "codePostal": "22200", - "codeCommune": "22272", - "libelleAcheminement": "ST AGATHON", - "nomCommune": "ST AGATHON" + "codePostal": "19350", + "codeCommune": "19035", + "libelleAcheminement": "CHABRIGNAC", + "nomCommune": "CHABRIGNAC" }, { - "codePostal": "24410", - "codeCommune": "24316", - "libelleAcheminement": "PARCOUL CHENAUD", - "nomCommune": "PARCOUL CHENAUD" + "codePostal": "20114", + "codeCommune": "2A114", + "libelleAcheminement": "FIGARI", + "nomCommune": "FIGARI" }, { - "codePostal": "61800", - "codeCommune": "61292", - "libelleAcheminement": "MONTSECRET CLAIREFOUGERE", - "nomCommune": "MONTSECRET CLAIREFOUGERE" + "codePostal": "29800", + "codeCommune": "29270", + "libelleAcheminement": "ST URBAIN", + "nomCommune": "ST URBAIN" }, { - "codePostal": "57530", - "codeCommune": "57155", - "libelleAcheminement": "COURCELLES CHAUSSY", - "nomCommune": "COURCELLES CHAUSSY" + "codePostal": "17500", + "codeCommune": "17270", + "libelleAcheminement": "OZILLAC", + "nomCommune": "OZILLAC" }, { - "codePostal": "22000", - "codeCommune": "22278", - "libelleAcheminement": "ST BRIEUC", - "nomCommune": "ST BRIEUC" + "codePostal": "19320", + "codeCommune": "19039", + "libelleAcheminement": "CHAMPAGNAC LA NOAILLE", + "nomCommune": "CHAMPAGNAC LA NOAILLE" }, { - "codePostal": "24590", - "codeCommune": "24317", - "libelleAcheminement": "PAULIN", - "nomCommune": "PAULIN" + "codePostal": "20100", + "codeCommune": "2A115", + "libelleAcheminement": "FOCE", + "nomCommune": "FOCE" }, { - "codePostal": "61160", - "codeCommune": "61303", - "libelleAcheminement": "NECY", - "nomCommune": "NECY" + "codePostal": "29140", + "codeCommune": "29272", + "libelleAcheminement": "ST YVI", + "nomCommune": "ST YVI" }, { - "codePostal": "57530", - "codeCommune": "57156", - "libelleAcheminement": "COURCELLES SUR NIED", - "nomCommune": "COURCELLES SUR NIED" + "codePostal": "17800", + "codeCommune": "17273", + "libelleAcheminement": "PERIGNAC", + "nomCommune": "PERIGNAC" }, { - "codePostal": "22380", - "codeCommune": "22282", - "libelleAcheminement": "ST CAST LE GUILDO", - "nomCommune": "ST CAST LE GUILDO" + "codePostal": "19430", + "codeCommune": "19045", + "libelleAcheminement": "LA CHAPELLE ST GERAUD", + "nomCommune": "LA CHAPELLE ST GERAUD" }, { - "codePostal": "24370", - "codeCommune": "24325", - "libelleAcheminement": "PECHS DE L ESPERANCE", - "nomCommune": "PECHS DE L ESPERANCE" + "codePostal": "20100", + "codeCommune": "2A128", + "libelleAcheminement": "GRANACE", + "nomCommune": "GRANACE" }, { - "codePostal": "61250", - "codeCommune": "61304", - "libelleAcheminement": "NEUILLY LE BISSON", - "nomCommune": "NEUILLY LE BISSON" + "codePostal": "29390", + "codeCommune": "29274", + "libelleAcheminement": "SCAER", + "nomCommune": "SCAER" }, { - "codePostal": "57690", - "codeCommune": "57159", - "libelleAcheminement": "CREHANGE", - "nomCommune": "CREHANGE" + "codePostal": "17180", + "codeCommune": "17274", + "libelleAcheminement": "PERIGNY", + "nomCommune": "PERIGNY" }, { - "codePostal": "22380", - "codeCommune": "22282", - "libelleAcheminement": "ST CAST LE GUILDO", - "nomCommune": "ST CAST LE GUILDO" + "codePostal": "19600", + "codeCommune": "19049", + "libelleAcheminement": "CHASTEAUX", + "nomCommune": "CHASTEAUX" }, { - "codePostal": "24510", - "codeCommune": "24327", - "libelleAcheminement": "PEZULS", - "nomCommune": "PEZULS" + "codePostal": "20153", + "codeCommune": "2A133", + "libelleAcheminement": "GUITERA LES BAINS", + "nomCommune": "GUITERA LES BAINS" }, { - "codePostal": "61130", - "codeCommune": "61319", - "libelleAcheminement": "ORIGNY LE ROUX", - "nomCommune": "ORIGNY LE ROUX" + "codePostal": "29670", + "codeCommune": "29279", + "libelleAcheminement": "TAULE", + "nomCommune": "TAULE" }, { - "codePostal": "57420", - "codeCommune": "57162", - "libelleAcheminement": "CUVRY", - "nomCommune": "CUVRY" + "codePostal": "17210", + "codeCommune": "17276", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "22230", - "codeCommune": "22309", - "libelleAcheminement": "ST LAUNEUC", - "nomCommune": "ST LAUNEUC" + "codePostal": "19290", + "codeCommune": "19052", + "libelleAcheminement": "CHAVANAC", + "nomCommune": "CHAVANAC" }, { - "codePostal": "24700", - "codeCommune": "24329", - "libelleAcheminement": "LE PIZOU", - "nomCommune": "LE PIZOU" + "codePostal": "20171", + "codeCommune": "2A163", + "libelleAcheminement": "MONACIA D AULLENE", + "nomCommune": "MONACIA D AULLENE" }, { - "codePostal": "61250", - "codeCommune": "61321", - "libelleAcheminement": "PACE", - "nomCommune": "PACE" + "codePostal": "29440", + "codeCommune": "29285", + "libelleAcheminement": "TREFLAOUENAN", + "nomCommune": "TREFLAOUENAN" }, { - "codePostal": "57370", - "codeCommune": "57168", - "libelleAcheminement": "DANNE ET QUATRE VENTS", - "nomCommune": "DANNE ET QUATRE VENTS" + "codePostal": "17130", + "codeCommune": "17282", + "libelleAcheminement": "POMMIERS MOULONS", + "nomCommune": "POMMIERS MOULONS" }, { - "codePostal": "22720", - "codeCommune": "22322", - "libelleAcheminement": "ST PEVER", - "nomCommune": "ST PEVER" + "codePostal": "19340", + "codeCommune": "19064", + "libelleAcheminement": "COUFFY SUR SARSONNE", + "nomCommune": "COUFFY SUR SARSONNE" }, { - "codePostal": "24500", - "codeCommune": "24348", - "libelleAcheminement": "RAZAC D EYMET", - "nomCommune": "RAZAC D EYMET" + "codePostal": "20160", + "codeCommune": "2A174", + "libelleAcheminement": "MURZO", + "nomCommune": "MURZO" }, { - "codePostal": "61700", - "codeCommune": "61326", - "libelleAcheminement": "PERROU", - "nomCommune": "PERROU" + "codePostal": "29560", + "codeCommune": "29289", + "libelleAcheminement": "TREGARVAN", + "nomCommune": "TREGARVAN" }, { - "codePostal": "57460", - "codeCommune": "57202", - "libelleAcheminement": "ETZLING", - "nomCommune": "ETZLING" + "codePostal": "17880", + "codeCommune": "17286", + "libelleAcheminement": "LES PORTES EN RE", + "nomCommune": "LES PORTES EN RE" }, { - "codePostal": "22410", - "codeCommune": "22325", - "libelleAcheminement": "ST QUAY PORTRIEUX", - "nomCommune": "ST QUAY PORTRIEUX" + "codePostal": "19520", + "codeCommune": "19066", + "libelleAcheminement": "CUBLAC", + "nomCommune": "CUBLAC" }, { - "codePostal": "24380", - "codeCommune": "24365", - "libelleAcheminement": "ST AMAND DE VERGT", - "nomCommune": "ST AMAND DE VERGT" + "codePostal": "20112", + "codeCommune": "2A191", + "libelleAcheminement": "OLMICCIA", + "nomCommune": "OLMICCIA" }, { - "codePostal": "61170", - "codeCommune": "61331", - "libelleAcheminement": "LE PLANTIS", - "nomCommune": "LE PLANTIS" + "codePostal": "29300", + "codeCommune": "29297", + "libelleAcheminement": "TREMEVEN", + "nomCommune": "TREMEVEN" }, { - "codePostal": "57640", - "codeCommune": "57204", - "libelleAcheminement": "FAILLY", - "nomCommune": "FAILLY" + "codePostal": "17210", + "codeCommune": "17287", + "libelleAcheminement": "POUILLAC", + "nomCommune": "POUILLAC" }, { - "codePostal": "22640", - "codeCommune": "22341", - "libelleAcheminement": "TRAMAIN", - "nomCommune": "TRAMAIN" + "codePostal": "19500", + "codeCommune": "19067", + "libelleAcheminement": "CUREMONTE", + "nomCommune": "CUREMONTE" }, { - "codePostal": "24200", - "codeCommune": "24366", - "libelleAcheminement": "ST ANDRE D ALLAS", - "nomCommune": "ST ANDRE D ALLAS" + "codePostal": "20147", + "codeCommune": "2A197", + "libelleAcheminement": "OSANI", + "nomCommune": "OSANI" }, { - "codePostal": "61210", - "codeCommune": "61339", - "libelleAcheminement": "PUTANGES LE LAC", - "nomCommune": "PUTANGES LE LAC" + "codePostal": "29380", + "codeCommune": "29300", + "libelleAcheminement": "LE TREVOUX", + "nomCommune": "LE TREVOUX" }, { - "codePostal": "57450", - "codeCommune": "57207", - "libelleAcheminement": "FAREBERSVILLER", - "nomCommune": "FAREBERSVILLER" + "codePostal": "17460", + "codeCommune": "17289", + "libelleAcheminement": "PREGUILLAC", + "nomCommune": "PREGUILLAC" }, { - "codePostal": "22250", - "codeCommune": "22348", - "libelleAcheminement": "TREDIAS", - "nomCommune": "TREDIAS" + "codePostal": "19250", + "codeCommune": "19071", + "libelleAcheminement": "DAVIGNAC", + "nomCommune": "DAVIGNAC" }, { - "codePostal": "24110", - "codeCommune": "24371", - "libelleAcheminement": "ST AQUILIN", - "nomCommune": "ST AQUILIN" + "codePostal": "20150", + "codeCommune": "2A198", + "libelleAcheminement": "OTA", + "nomCommune": "OTA" }, { - "codePostal": "61210", - "codeCommune": "61339", - "libelleAcheminement": "PUTANGES LE LAC", - "nomCommune": "PUTANGES LE LAC" + "codePostal": "20167", + "codeCommune": "2A001", + "libelleAcheminement": "AFA", + "nomCommune": "AFA" }, { - "codePostal": "57420", - "codeCommune": "57212", - "libelleAcheminement": "FEY", - "nomCommune": "FEY" + "codePostal": "17500", + "codeCommune": "17295", + "libelleAcheminement": "REAUX SUR TREFLE", + "nomCommune": "REAUX SUR TREFLE" }, { - "codePostal": "22300", - "codeCommune": "22349", - "libelleAcheminement": "TREDREZ LOCQUEMEAU", - "nomCommune": "TREDREZ LOCQUEMEAU" + "codePostal": "19140", + "codeCommune": "19076", + "libelleAcheminement": "ESPARTIGNAC", + "nomCommune": "ESPARTIGNAC" }, { - "codePostal": "24500", - "codeCommune": "24373", - "libelleAcheminement": "ST AUBIN DE CADELECH", - "nomCommune": "ST AUBIN DE CADELECH" + "codePostal": "20142", + "codeCommune": "2A253", + "libelleAcheminement": "QUASQUARA", + "nomCommune": "QUASQUARA" }, { - "codePostal": "61250", - "codeCommune": "61341", - "libelleAcheminement": "ECOUVES", - "nomCommune": "ECOUVES" + "codePostal": "20167", + "codeCommune": "2A006", + "libelleAcheminement": "ALATA", + "nomCommune": "ALATA" }, { - "codePostal": "57635", - "codeCommune": "57216", - "libelleAcheminement": "FLEISHEIM", - "nomCommune": "FLEISHEIM" + "codePostal": "17510", + "codeCommune": "17301", + "libelleAcheminement": "ROMAZIERES", + "nomCommune": "ROMAZIERES" }, { - "codePostal": "22630", - "codeCommune": "22352", - "libelleAcheminement": "TREFUMEL", - "nomCommune": "TREFUMEL" + "codePostal": "19410", + "codeCommune": "19078", + "libelleAcheminement": "ESTIVAUX", + "nomCommune": "ESTIVAUX" }, { - "codePostal": "24540", - "codeCommune": "24384", - "libelleAcheminement": "ST CASSIEN", - "nomCommune": "ST CASSIEN" + "codePostal": "20121", + "codeCommune": "2A262", + "libelleAcheminement": "ROSAZIA", + "nomCommune": "ROSAZIA" }, { - "codePostal": "61110", - "codeCommune": "61345", - "libelleAcheminement": "REMALARD EN PERCHE", - "nomCommune": "REMALARD EN PERCHE" + "codePostal": "20151", + "codeCommune": "2A014", + "libelleAcheminement": "AMBIEGNA", + "nomCommune": "AMBIEGNA" }, { - "codePostal": "57365", - "codeCommune": "57219", - "libelleAcheminement": "FLEVY", - "nomCommune": "FLEVY" + "codePostal": "17770", + "codeCommune": "17314", + "libelleAcheminement": "ST CESAIRE", + "nomCommune": "ST CESAIRE" }, { - "codePostal": "22200", - "codeCommune": "22358", - "libelleAcheminement": "TREGONNEAU", - "nomCommune": "TREGONNEAU" + "codePostal": "19330", + "codeCommune": "19082", + "libelleAcheminement": "FAVARS", + "nomCommune": "FAVARS" }, { - "codePostal": "24550", - "codeCommune": "24386", - "libelleAcheminement": "ST CERNIN DE L HERM", - "nomCommune": "ST CERNIN DE L HERM" + "codePostal": "20121", + "codeCommune": "2A266", + "libelleAcheminement": "SALICE", + "nomCommune": "SALICE" }, { - "codePostal": "61170", - "codeCommune": "61360", - "libelleAcheminement": "ST AGNAN SUR SARTHE", - "nomCommune": "ST AGNAN SUR SARTHE" + "codePostal": "20151", + "codeCommune": "2A022", + "libelleAcheminement": "ARRO", + "nomCommune": "ARRO" }, { - "codePostal": "57600", - "codeCommune": "57222", - "libelleAcheminement": "FOLKLING", - "nomCommune": "FOLKLING" + "codePostal": "17520", + "codeCommune": "17316", + "libelleAcheminement": "ST CIERS CHAMPAGNE", + "nomCommune": "ST CIERS CHAMPAGNE" }, { - "codePostal": "22420", - "codeCommune": "22359", - "libelleAcheminement": "TREGROM", - "nomCommune": "TREGROM" + "codePostal": "19380", + "codeCommune": "19084", + "libelleAcheminement": "FORGES", + "nomCommune": "FORGES" }, { - "codePostal": "24250", - "codeCommune": "24395", - "libelleAcheminement": "ST CYBRANET", - "nomCommune": "ST CYBRANET" + "codePostal": "20134", + "codeCommune": "2A268", + "libelleAcheminement": "SAMPOLO", + "nomCommune": "SAMPOLO" }, { - "codePostal": "61800", - "codeCommune": "61374", - "libelleAcheminement": "ST CHRISTOPHE DE CHAULIEU", - "nomCommune": "ST CHRISTOPHE DE CHAULIEU" + "codePostal": "20110", + "codeCommune": "2A035", + "libelleAcheminement": "BELVEDERE CAMPOMORO", + "nomCommune": "BELVEDERE CAMPOMORO" }, { - "codePostal": "57320", - "codeCommune": "57235", - "libelleAcheminement": "FREISTROFF", - "nomCommune": "FREISTROFF" + "codePostal": "17430", + "codeCommune": "17320", + "libelleAcheminement": "ST COUTANT LE GRAND", + "nomCommune": "ST COUTANT LE GRAND" }, { - "codePostal": "22950", - "codeCommune": "22360", - "libelleAcheminement": "TREGUEUX", - "nomCommune": "TREGUEUX" + "codePostal": "19800", + "codeCommune": "19085", + "libelleAcheminement": "GIMEL LES CASCADES", + "nomCommune": "GIMEL LES CASCADES" }, { - "codePostal": "24220", - "codeCommune": "24396", - "libelleAcheminement": "ST CYPRIEN", - "nomCommune": "ST CYPRIEN" + "codePostal": "20167", + "codeCommune": "2A271", + "libelleAcheminement": "SARROLA CARCOPINO", + "nomCommune": "SARROLA CARCOPINO" }, { - "codePostal": "61570", - "codeCommune": "61375", - "libelleAcheminement": "BOISCHAMPRE", - "nomCommune": "BOISCHAMPRE" + "codePostal": "20136", + "codeCommune": "2A040", + "libelleAcheminement": "BOCOGNANO", + "nomCommune": "BOCOGNANO" }, { - "codePostal": "57590", - "codeCommune": "57236", - "libelleAcheminement": "FREMERY", - "nomCommune": "FREMERY" + "codePostal": "17650", + "codeCommune": "17323", + "libelleAcheminement": "ST DENIS D OLERON", + "nomCommune": "ST DENIS D OLERON" }, { - "codePostal": "22490", - "codeCommune": "22368", - "libelleAcheminement": "TREMEREUC", - "nomCommune": "TREMEREUC" + "codePostal": "19500", + "codeCommune": "19093", + "libelleAcheminement": "JUGEALS NAZARETH", + "nomCommune": "JUGEALS NAZARETH" }, { - "codePostal": "24190", - "codeCommune": "24418", - "libelleAcheminement": "ST GERMAIN DU SALEMBRE", - "nomCommune": "ST GERMAIN DU SALEMBRE" + "codePostal": "20140", + "codeCommune": "2A284", + "libelleAcheminement": "SOLLACARO", + "nomCommune": "SOLLACARO" }, { - "codePostal": "61570", - "codeCommune": "61375", - "libelleAcheminement": "BOISCHAMPRE", - "nomCommune": "BOISCHAMPRE" + "codePostal": "20130", + "codeCommune": "2A065", + "libelleAcheminement": "CARGESE", + "nomCommune": "CARGESE" }, { - "codePostal": "57175", - "codeCommune": "57242", - "libelleAcheminement": "GANDRANGE", - "nomCommune": "GANDRANGE" + "codePostal": "17330", + "codeCommune": "17327", + "libelleAcheminement": "ST FELIX", + "nomCommune": "ST FELIX" }, { - "codePostal": "22410", - "codeCommune": "22377", - "libelleAcheminement": "TREVENEUC", - "nomCommune": "TREVENEUC" + "codePostal": "19320", + "codeCommune": "19097", + "libelleAcheminement": "LAFAGE SUR SOMBRE", + "nomCommune": "LAFAGE SUR SOMBRE" }, { - "codePostal": "24500", - "codeCommune": "24423", - "libelleAcheminement": "ST JULIEN INNOCENCE EULALIE", - "nomCommune": "ST JULIEN INNOCENCE EULALIE" + "codePostal": "20146", + "codeCommune": "2A288", + "libelleAcheminement": "SOTTA", + "nomCommune": "SOTTA" }, { - "codePostal": "61130", - "codeCommune": "61379", - "libelleAcheminement": "ST CYR LA ROSIERE", - "nomCommune": "ST CYR LA ROSIERE" + "codePostal": "20164", + "codeCommune": "2A066", + "libelleAcheminement": "CARGIACA", + "nomCommune": "CARGIACA" }, { - "codePostal": "57570", - "codeCommune": "57245", - "libelleAcheminement": "GAVISSE", - "nomCommune": "GAVISSE" + "codePostal": "17780", + "codeCommune": "17329", + "libelleAcheminement": "ST FROULT", + "nomCommune": "ST FROULT" }, { - "codePostal": "22690", - "codeCommune": "22385", - "libelleAcheminement": "LA VICOMTE SUR RANCE", - "nomCommune": "LA VICOMTE SUR RANCE" + "codePostal": "19500", + "codeCommune": "19099", + "libelleAcheminement": "LAGLEYGEOLLE", + "nomCommune": "LAGLEYGEOLLE" }, { - "codePostal": "24800", - "codeCommune": "24428", - "libelleAcheminement": "ST JORY DE CHALAIS", - "nomCommune": "ST JORY DE CHALAIS" + "codePostal": "20167", + "codeCommune": "2A323", + "libelleAcheminement": "TAVACO", + "nomCommune": "TAVACO" }, { - "codePostal": "61400", - "codeCommune": "61381", - "libelleAcheminement": "ST DENIS SUR HUISNE", - "nomCommune": "ST DENIS SUR HUISNE" + "codePostal": "20168", + "codeCommune": "2A094", + "libelleAcheminement": "CORRANO", + "nomCommune": "CORRANO" }, { - "codePostal": "57620", - "codeCommune": "57250", - "libelleAcheminement": "GOETZENBRUCK", - "nomCommune": "GOETZENBRUCK" + "codePostal": "17240", + "codeCommune": "17332", + "libelleAcheminement": "ST GEORGES ANTIGNAC", + "nomCommune": "ST GEORGES ANTIGNAC" }, { - "codePostal": "22930", - "codeCommune": "22390", - "libelleAcheminement": "YVIAS", - "nomCommune": "YVIAS" + "codePostal": "19150", + "codeCommune": "19101", + "libelleAcheminement": "LAGUENNE SUR AVALOUZE", + "nomCommune": "LAGUENNE SUR AVALOUZE" }, { - "codePostal": "24320", - "codeCommune": "24434", - "libelleAcheminement": "ST JUST", - "nomCommune": "ST JUST" + "codePostal": "20163", + "codeCommune": "2A324", + "libelleAcheminement": "TAVERA", + "nomCommune": "TAVERA" }, { - "codePostal": "61420", - "codeCommune": "61382", - "libelleAcheminement": "ST DENIS SUR SARTHON", - "nomCommune": "ST DENIS SUR SARTHON" + "codePostal": "20126", + "codeCommune": "2A100", + "libelleAcheminement": "CRISTINACCE", + "nomCommune": "CRISTINACCE" }, { - "codePostal": "57620", - "codeCommune": "57250", - "libelleAcheminement": "GOETZENBRUCK", - "nomCommune": "GOETZENBRUCK" + "codePostal": "17190", + "codeCommune": "17337", + "libelleAcheminement": "ST GEORGES D OLERON", + "nomCommune": "ST GEORGES D OLERON" }, { - "codePostal": "23150", - "codeCommune": "23001", - "libelleAcheminement": "AHUN", - "nomCommune": "AHUN" + "codePostal": "19160", + "codeCommune": "19102", + "libelleAcheminement": "LAMAZIERE BASSE", + "nomCommune": "LAMAZIERE BASSE" }, { - "codePostal": "24100", - "codeCommune": "24437", - "libelleAcheminement": "ST LAURENT DES VIGNES", - "nomCommune": "ST LAURENT DES VIGNES" + "codePostal": "20167", + "codeCommune": "2A336", + "libelleAcheminement": "VALLE DI MEZZANA", + "nomCommune": "VALLE DI MEZZANA" }, { - "codePostal": "61550", - "codeCommune": "61386", - "libelleAcheminement": "ST EVROULT NOTRE DAME DU BOIS", - "nomCommune": "ST EVROULT NOTRE DAME DU BOIS" + "codePostal": "20167", + "codeCommune": "2A103", + "libelleAcheminement": "CUTTOLI CORTICCHIATO", + "nomCommune": "CUTTOLI CORTICCHIATO" }, { - "codePostal": "57660", - "codeCommune": "57258", - "libelleAcheminement": "GRENING", - "nomCommune": "GRENING" + "codePostal": "17700", + "codeCommune": "17338", + "libelleAcheminement": "ST GEORGES DU BOIS", + "nomCommune": "ST GEORGES DU BOIS" }, { - "codePostal": "23380", - "codeCommune": "23002", - "libelleAcheminement": "AJAIN", - "nomCommune": "AJAIN" + "codePostal": "19190", + "codeCommune": "19105", + "libelleAcheminement": "LANTEUIL", + "nomCommune": "LANTEUIL" }, { - "codePostal": "24510", - "codeCommune": "24445", - "libelleAcheminement": "ST MARCEL DU PERIGORD", - "nomCommune": "ST MARCEL DU PERIGORD" + "codePostal": "20132", + "codeCommune": "2A359", + "libelleAcheminement": "ZICAVO", + "nomCommune": "ZICAVO" }, { - "codePostal": "61350", - "codeCommune": "61387", - "libelleAcheminement": "ST FRAIMBAULT", - "nomCommune": "ST FRAIMBAULT" + "codePostal": "20126", + "codeCommune": "2A108", + "libelleAcheminement": "EVISA", + "nomCommune": "EVISA" }, { - "codePostal": "57480", - "codeCommune": "57259", - "libelleAcheminement": "GRINDORFF BIZING", - "nomCommune": "GRINDORFF BIZING" + "codePostal": "17700", + "codeCommune": "17340", + "libelleAcheminement": "ST PIERRE LA NOUE", + "nomCommune": "ST PIERRE LA NOUE" }, { - "codePostal": "23160", - "codeCommune": "23018", - "libelleAcheminement": "BAZELAT", - "nomCommune": "BAZELAT" + "codePostal": "19550", + "codeCommune": "19106", + "libelleAcheminement": "LAPLEAU", + "nomCommune": "LAPLEAU" }, { - "codePostal": "24300", - "codeCommune": "24451", - "libelleAcheminement": "ST MARTIAL DE VALETTE", - "nomCommune": "ST MARTIAL DE VALETTE" + "codePostal": "20144", + "codeCommune": "2A362", + "libelleAcheminement": "ZONZA", + "nomCommune": "ZONZA" }, { - "codePostal": "61600", - "codeCommune": "61390", - "libelleAcheminement": "ST GEORGES D ANNEBECQ", - "nomCommune": "ST GEORGES D ANNEBECQ" + "codePostal": "20128", + "codeCommune": "2A130", + "libelleAcheminement": "GROSSETO PRUGNA", + "nomCommune": "GROSSETO PRUGNA" }, { - "codePostal": "57520", - "codeCommune": "57260", - "libelleAcheminement": "GROSBLIEDERSTROFF", - "nomCommune": "GROSBLIEDERSTROFF" + "codePostal": "17770", + "codeCommune": "17344", + "libelleAcheminement": "ST HILAIRE DE VILLEFRANCHE", + "nomCommune": "ST HILAIRE DE VILLEFRANCHE" }, { - "codePostal": "23220", - "codeCommune": "23025", - "libelleAcheminement": "BONNAT", - "nomCommune": "BONNAT" + "codePostal": "19160", + "codeCommune": "19113", + "libelleAcheminement": "LIGINIAC", + "nomCommune": "LIGINIAC" }, { - "codePostal": "24320", - "codeCommune": "24452", - "libelleAcheminement": "ST MARTIAL VIVEYROL", - "nomCommune": "ST MARTIAL VIVEYROL" + "codePostal": "20112", + "codeCommune": "2A363", + "libelleAcheminement": "ZOZA", + "nomCommune": "ZOZA" }, { - "codePostal": "61700", - "codeCommune": "61401", - "libelleAcheminement": "ST GILLES DES MARAIS", - "nomCommune": "ST GILLES DES MARAIS" + "codePostal": "20166", + "codeCommune": "2A130", + "libelleAcheminement": "GROSSETO PRUGNA", + "nomCommune": "GROSSETO PRUGNA" }, { - "codePostal": "57430", - "codeCommune": "57267", - "libelleAcheminement": "LE VAL DE GUEBLANGE", - "nomCommune": "LE VAL DE GUEBLANGE" + "codePostal": "17500", + "codeCommune": "17345", + "libelleAcheminement": "ST HILAIRE DU BOIS", + "nomCommune": "ST HILAIRE DU BOIS" }, { - "codePostal": "23230", - "codeCommune": "23026", - "libelleAcheminement": "BORD ST GEORGES", - "nomCommune": "BORD ST GEORGES" + "codePostal": "19120", + "codeCommune": "19116", + "libelleAcheminement": "LIOURDRES", + "nomCommune": "LIOURDRES" }, { - "codePostal": "24400", - "codeCommune": "24457", - "libelleAcheminement": "ST MARTIN L ASTIER", - "nomCommune": "ST MARTIN L ASTIER" + "codePostal": "20224", + "codeCommune": "2B007", + "libelleAcheminement": "ALBERTACCE", + "nomCommune": "ALBERTACCE" }, { - "codePostal": "61400", - "codeCommune": "61404", - "libelleAcheminement": "ST HILAIRE LE CHATEL", - "nomCommune": "ST HILAIRE LE CHATEL" + "codePostal": "20128", + "codeCommune": "2A132", + "libelleAcheminement": "GUARGUALE", + "nomCommune": "GUARGUALE" }, { - "codePostal": "57470", - "codeCommune": "57271", - "libelleAcheminement": "GUENVILLER", - "nomCommune": "GUENVILLER" + "codePostal": "17400", + "codeCommune": "17347", + "libelleAcheminement": "ST JEAN D ANGELY", + "nomCommune": "ST JEAN D ANGELY" }, { - "codePostal": "23400", - "codeCommune": "23027", - "libelleAcheminement": "BOSMOREAU LES MINES", - "nomCommune": "BOSMOREAU LES MINES" + "codePostal": "19200", + "codeCommune": "19128", + "libelleAcheminement": "MARGERIDES", + "nomCommune": "MARGERIDES" }, { - "codePostal": "24400", - "codeCommune": "24465", - "libelleAcheminement": "ST MICHEL DE DOUBLE", - "nomCommune": "ST MICHEL DE DOUBLE" + "codePostal": "20270", + "codeCommune": "2B009", + "libelleAcheminement": "ALERIA", + "nomCommune": "ALERIA" }, { - "codePostal": "61320", - "codeCommune": "61419", - "libelleAcheminement": "STE MARGUERITE DE CARROUGES", - "nomCommune": "STE MARGUERITE DE CARROUGES" + "codePostal": "20165", + "codeCommune": "2A146", + "libelleAcheminement": "LORETO DI TALLANO", + "nomCommune": "LORETO DI TALLANO" }, { - "codePostal": "57220", - "codeCommune": "57277", - "libelleAcheminement": "GUINKIRCHEN", - "nomCommune": "GUINKIRCHEN" + "codePostal": "17400", + "codeCommune": "17350", + "libelleAcheminement": "ST JULIEN DE L ESCAP", + "nomCommune": "ST JULIEN DE L ESCAP" }, { - "codePostal": "23220", - "codeCommune": "23029", - "libelleAcheminement": "LE BOURG D HEM", - "nomCommune": "LE BOURG D HEM" + "codePostal": "19250", + "codeCommune": "19136", + "libelleAcheminement": "MEYMAC", + "nomCommune": "MEYMAC" }, { - "codePostal": "24370", - "codeCommune": "24470", - "libelleAcheminement": "STE MONDANE", - "nomCommune": "STE MONDANE" + "codePostal": "20270", + "codeCommune": "2B016", + "libelleAcheminement": "ANTISANTI", + "nomCommune": "ANTISANTI" }, { - "codePostal": "61300", - "codeCommune": "61423", - "libelleAcheminement": "ST MARTIN D ECUBLEI", - "nomCommune": "ST MARTIN D ECUBLEI" + "codePostal": "20141", + "codeCommune": "2A154", + "libelleAcheminement": "MARIGNANA", + "nomCommune": "MARIGNANA" }, { - "codePostal": "57370", - "codeCommune": "57291", - "libelleAcheminement": "HANGVILLER", - "nomCommune": "HANGVILLER" + "codePostal": "17360", + "codeCommune": "17366", + "libelleAcheminement": "ST MARTIN DE COUX", + "nomCommune": "ST MARTIN DE COUX" }, { - "codePostal": "23600", - "codeCommune": "23038", - "libelleAcheminement": "BUSSIERE ST GEORGES", - "nomCommune": "BUSSIERE ST GEORGES" + "codePostal": "19290", + "codeCommune": "19139", + "libelleAcheminement": "MILLEVACHES", + "nomCommune": "MILLEVACHES" }, { - "codePostal": "24520", - "codeCommune": "24472", - "libelleAcheminement": "ST NEXANS", - "nomCommune": "ST NEXANS" + "codePostal": "20253", + "codeCommune": "2B029", + "libelleAcheminement": "BARBAGGIO", + "nomCommune": "BARBAGGIO" }, { - "codePostal": "61130", - "codeCommune": "61426", - "libelleAcheminement": "ST MARTIN DU VIEUX BELLEME", - "nomCommune": "ST MARTIN DU VIEUX BELLEME" + "codePostal": "20150", + "codeCommune": "2A198", + "libelleAcheminement": "OTA", + "nomCommune": "OTA" }, { - "codePostal": "57230", - "codeCommune": "57294", - "libelleAcheminement": "HANVILLER", - "nomCommune": "HANVILLER" + "codePostal": "17500", + "codeCommune": "17372", + "libelleAcheminement": "ST MEDARD", + "nomCommune": "ST MEDARD" }, { - "codePostal": "23480", - "codeCommune": "23043", - "libelleAcheminement": "CHAMBERAUD", - "nomCommune": "CHAMBERAUD" + "codePostal": "19210", + "codeCommune": "19144", + "libelleAcheminement": "MONTGIBAUD", + "nomCommune": "MONTGIBAUD" }, { - "codePostal": "24380", - "codeCommune": "24480", - "libelleAcheminement": "ST PAUL DE SERRE", - "nomCommune": "ST PAUL DE SERRE" + "codePostal": "20226", + "codeCommune": "2B034", + "libelleAcheminement": "BELGODERE", + "nomCommune": "BELGODERE" }, { - "codePostal": "61250", - "codeCommune": "61433", - "libelleAcheminement": "ST NICOLAS DES BOIS", - "nomCommune": "ST NICOLAS DES BOIS" + "codePostal": "20125", + "codeCommune": "2A240", + "libelleAcheminement": "POGGIOLO", + "nomCommune": "POGGIOLO" }, { - "codePostal": "57630", - "codeCommune": "57295", - "libelleAcheminement": "HARAUCOURT SUR SEILLE", - "nomCommune": "HARAUCOURT SUR SEILLE" + "codePostal": "17420", + "codeCommune": "17380", + "libelleAcheminement": "ST PALAIS SUR MER", + "nomCommune": "ST PALAIS SUR MER" }, { - "codePostal": "23250", - "codeCommune": "23051", - "libelleAcheminement": "LA CHAPELLE ST MARTIAL", - "nomCommune": "LA CHAPELLE ST MARTIAL" + "codePostal": "19500", + "codeCommune": "19150", + "libelleAcheminement": "NOAILHAC", + "nomCommune": "NOAILHAC" }, { - "codePostal": "24560", - "codeCommune": "24483", - "libelleAcheminement": "ST PERDOUX", - "nomCommune": "ST PERDOUX" + "codePostal": "20620", + "codeCommune": "2B037", + "libelleAcheminement": "BIGUGLIA", + "nomCommune": "BIGUGLIA" }, { - "codePostal": "61100", - "codeCommune": "61436", - "libelleAcheminement": "STE OPPORTUNE", - "nomCommune": "STE OPPORTUNE" + "codePostal": "20145", + "codeCommune": "2A269", + "libelleAcheminement": "SARI SOLENZARA", + "nomCommune": "SARI SOLENZARA" }, { - "codePostal": "57550", - "codeCommune": "57296", - "libelleAcheminement": "HARGARTEN AUX MINES", - "nomCommune": "HARGARTEN AUX MINES" + "codePostal": "17400", + "codeCommune": "17381", + "libelleAcheminement": "ST PARDOULT", + "nomCommune": "ST PARDOULT" }, { - "codePostal": "23700", - "codeCommune": "23053", - "libelleAcheminement": "CHARD", - "nomCommune": "CHARD" + "codePostal": "19410", + "codeCommune": "19154", + "libelleAcheminement": "ORGNAC SUR VEZERE", + "nomCommune": "ORGNAC SUR VEZERE" }, { - "codePostal": "24130", - "codeCommune": "24487", - "libelleAcheminement": "ST PIERRE D EYRAUD", - "nomCommune": "ST PIERRE D EYRAUD" + "codePostal": "20620", + "codeCommune": "2B037", + "libelleAcheminement": "BIGUGLIA", + "nomCommune": "BIGUGLIA" }, { - "codePostal": "61300", - "codeCommune": "61440", - "libelleAcheminement": "ST OUEN SUR ITON", - "nomCommune": "ST OUEN SUR ITON" + "codePostal": "20151", + "codeCommune": "2A270", + "libelleAcheminement": "SARI D ORCINO", + "nomCommune": "SARI D ORCINO" }, { - "codePostal": "57850", - "codeCommune": "57300", - "libelleAcheminement": "HASELBOURG", - "nomCommune": "HASELBOURG" + "codePostal": "17270", + "codeCommune": "17386", + "libelleAcheminement": "ST PIERRE DU PALAIS", + "nomCommune": "ST PIERRE DU PALAIS" }, { - "codePostal": "23700", - "codeCommune": "23055", - "libelleAcheminement": "CHATELARD", - "nomCommune": "CHATELARD" + "codePostal": "19190", + "codeCommune": "19156", + "libelleAcheminement": "PALAZINGES", + "nomCommune": "PALAZINGES" }, { - "codePostal": "24560", - "codeCommune": "24492", - "libelleAcheminement": "STE RADEGONDE", - "nomCommune": "STE RADEGONDE" + "codePostal": "20222", + "codeCommune": "2B043", + "libelleAcheminement": "BRANDO", + "nomCommune": "BRANDO" }, { - "codePostal": "61430", - "codeCommune": "61444", - "libelleAcheminement": "ST PHILBERT SUR ORNE", - "nomCommune": "ST PHILBERT SUR ORNE" + "codePostal": "20140", + "codeCommune": "2A276", + "libelleAcheminement": "SERRA DI FERRO", + "nomCommune": "SERRA DI FERRO" }, { - "codePostal": "57650", - "codeCommune": "57305", - "libelleAcheminement": "HAVANGE", - "nomCommune": "HAVANGE" + "codePostal": "17600", + "codeCommune": "17393", + "libelleAcheminement": "ST ROMAIN DE BENET", + "nomCommune": "ST ROMAIN DE BENET" }, { - "codePostal": "23130", - "codeCommune": "23061", - "libelleAcheminement": "CHENERAILLES", - "nomCommune": "CHENERAILLES" + "codePostal": "19160", + "codeCommune": "19157", + "libelleAcheminement": "PALISSE", + "nomCommune": "PALISSE" }, { - "codePostal": "24700", - "codeCommune": "24494", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "20230", + "codeCommune": "2B057", + "libelleAcheminement": "CANALE DI VERDE", + "nomCommune": "CANALE DI VERDE" }, { - "codePostal": "61800", - "codeCommune": "61445", - "libelleAcheminement": "ST PIERRE D ENTREMONT", - "nomCommune": "ST PIERRE D ENTREMONT" + "codePostal": "20147", + "codeCommune": "2A279", + "libelleAcheminement": "SERRIERA", + "nomCommune": "SERRIERA" }, { - "codePostal": "57700", - "codeCommune": "57306", - "libelleAcheminement": "HAYANGE", - "nomCommune": "HAYANGE" + "codePostal": "17350", + "codeCommune": "17397", + "libelleAcheminement": "ST SAVINIEN", + "nomCommune": "ST SAVINIEN" }, { - "codePostal": "23220", - "codeCommune": "23062", - "libelleAcheminement": "CHENIERS", - "nomCommune": "CHENIERS" + "codePostal": "19170", + "codeCommune": "19168", + "libelleAcheminement": "PRADINES", + "nomCommune": "PRADINES" }, { - "codePostal": "24230", - "codeCommune": "24501", - "libelleAcheminement": "ST SEURIN DE PRATS", - "nomCommune": "ST SEURIN DE PRATS" + "codePostal": "20217", + "codeCommune": "2B058", + "libelleAcheminement": "CANARI", + "nomCommune": "CANARI" }, { - "codePostal": "61370", - "codeCommune": "61446", - "libelleAcheminement": "ST PIERRE DES LOGES", - "nomCommune": "ST PIERRE DES LOGES" + "codePostal": "20152", + "codeCommune": "2A285", + "libelleAcheminement": "SORBOLLANO", + "nomCommune": "SORBOLLANO" }, { - "codePostal": "57700", - "codeCommune": "57306", - "libelleAcheminement": "HAYANGE", - "nomCommune": "HAYANGE" + "codePostal": "17600", + "codeCommune": "17406", + "libelleAcheminement": "ST SORNIN", + "nomCommune": "ST SORNIN" }, { - "codePostal": "23700", - "codeCommune": "23073", - "libelleAcheminement": "DONTREIX", - "nomCommune": "DONTREIX" + "codePostal": "19430", + "codeCommune": "19171", + "libelleAcheminement": "REYGADE", + "nomCommune": "REYGADE" }, { - "codePostal": "24410", - "codeCommune": "24511", - "libelleAcheminement": "ST VINCENT JALMOUTIERS", - "nomCommune": "ST VINCENT JALMOUTIERS" + "codePostal": "20215", + "codeCommune": "2B072", + "libelleAcheminement": "CASALTA", + "nomCommune": "CASALTA" }, { - "codePostal": "61350", - "codeCommune": "61452", - "libelleAcheminement": "ST ROCH SUR EGRENNE", - "nomCommune": "ST ROCH SUR EGRENNE" + "codePostal": "20143", + "codeCommune": "2A310", + "libelleAcheminement": "SANTA MARIA FIGANIELLA", + "nomCommune": "SANTA MARIA FIGANIELLA" }, { - "codePostal": "57530", - "codeCommune": "57307", - "libelleAcheminement": "HAYES", - "nomCommune": "HAYES" + "codePostal": "17138", + "codeCommune": "17414", + "libelleAcheminement": "ST XANDRE", + "nomCommune": "ST XANDRE" }, { - "codePostal": "23480", - "codeCommune": "23074", - "libelleAcheminement": "LE DONZEIL", - "nomCommune": "LE DONZEIL" + "codePostal": "19160", + "codeCommune": "19175", + "libelleAcheminement": "ROCHE LE PEYROUX", + "nomCommune": "ROCHE LE PEYROUX" }, { - "codePostal": "24420", - "codeCommune": "24513", - "libelleAcheminement": "ST VINCENT SUR L ISLE", - "nomCommune": "ST VINCENT SUR L ISLE" + "codePostal": "20236", + "codeCommune": "2B083", + "libelleAcheminement": "CASTIRLA", + "nomCommune": "CASTIRLA" }, { - "codePostal": "61470", - "codeCommune": "61460", - "libelleAcheminement": "SAP EN AUGE", - "nomCommune": "SAP EN AUGE" + "codePostal": "20110", + "codeCommune": "2A349", + "libelleAcheminement": "VIGGIANELLO", + "nomCommune": "VIGGIANELLO" }, { - "codePostal": "57660", - "codeCommune": "57311", - "libelleAcheminement": "HELLIMER", - "nomCommune": "HELLIMER" + "codePostal": "17130", + "codeCommune": "17417", + "libelleAcheminement": "SALIGNAC DE MIRAMBEAU", + "nomCommune": "SALIGNAC DE MIRAMBEAU" }, { - "codePostal": "23500", - "codeCommune": "23079", - "libelleAcheminement": "FELLETIN", - "nomCommune": "FELLETIN" + "codePostal": "19350", + "codeCommune": "19177", + "libelleAcheminement": "ROSIERS DE JUILLAC", + "nomCommune": "ROSIERS DE JUILLAC" }, { - "codePostal": "24230", - "codeCommune": "24514", - "libelleAcheminement": "ST VIVIEN", - "nomCommune": "ST VIVIEN" + "codePostal": "20230", + "codeCommune": "2B088", + "libelleAcheminement": "CHIATRA DI VERDE", + "nomCommune": "CHIATRA" }, { - "codePostal": "61600", - "codeCommune": "61463", - "libelleAcheminement": "LES MONTS D ANDAINE", - "nomCommune": "LES MONTS D ANDAINE" + "codePostal": "20212", + "codeCommune": "2B005", + "libelleAcheminement": "ALANDO", + "nomCommune": "ALANDO" }, { - "codePostal": "57690", - "codeCommune": "57313", - "libelleAcheminement": "HEMILLY", - "nomCommune": "HEMILLY" + "codePostal": "17120", + "codeCommune": "17425", + "libelleAcheminement": "SEMUSSAC", + "nomCommune": "SEMUSSAC" }, { - "codePostal": "23110", - "codeCommune": "23083", - "libelleAcheminement": "FONTANIERES", - "nomCommune": "FONTANIERES" + "codePostal": "19500", + "codeCommune": "19184", + "libelleAcheminement": "ST BAZILE DE MEYSSAC", + "nomCommune": "ST BAZILE DE MEYSSAC" }, { - "codePostal": "24590", - "codeCommune": "24516", - "libelleAcheminement": "SALIGNAC EYVIGUES", - "nomCommune": "SALIGNAC EYVIGUES" + "codePostal": "20212", + "codeCommune": "2B110", + "libelleAcheminement": "FAVALELLO DE BOZIO", + "nomCommune": "FAVALELLO" }, { - "codePostal": "61200", - "codeCommune": "61472", - "libelleAcheminement": "SEVIGNY", - "nomCommune": "SEVIGNY" + "codePostal": "20224", + "codeCommune": "2B007", + "libelleAcheminement": "ALBERTACCE", + "nomCommune": "ALBERTACCE" }, { - "codePostal": "57790", - "codeCommune": "57318", - "libelleAcheminement": "HERMELANGE", - "nomCommune": "HERMELANGE" + "codePostal": "17350", + "codeCommune": "17436", + "libelleAcheminement": "TAILLEBOURG", + "nomCommune": "TAILLEBOURG" }, { - "codePostal": "23230", - "codeCommune": "23093", - "libelleAcheminement": "GOUZON", - "nomCommune": "GOUZON" + "codePostal": "19130", + "codeCommune": "19196", + "libelleAcheminement": "ST CYR LA ROCHE", + "nomCommune": "ST CYR LA ROCHE" }, { - "codePostal": "24380", - "codeCommune": "24518", - "libelleAcheminement": "SALON", - "nomCommune": "SALON" + "codePostal": "20225", + "codeCommune": "2B112", + "libelleAcheminement": "FELICETO", + "nomCommune": "FELICETO" }, { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "20220", + "codeCommune": "2B010", + "libelleAcheminement": "ALGAJOLA", + "nomCommune": "ALGAJOLA" }, { - "codePostal": "57580", - "codeCommune": "57319", - "libelleAcheminement": "HERNY", - "nomCommune": "HERNY" + "codePostal": "17120", + "codeCommune": "17442", + "libelleAcheminement": "THAIMS", + "nomCommune": "THAIMS" }, { - "codePostal": "23250", - "codeCommune": "23099", - "libelleAcheminement": "JANAILLAT", - "nomCommune": "JANAILLAT" + "codePostal": "19160", + "codeCommune": "19200", + "libelleAcheminement": "ST ETIENNE LA GENESTE", + "nomCommune": "ST ETIENNE LA GENESTE" }, { - "codePostal": "24240", - "codeCommune": "24523", - "libelleAcheminement": "SAUSSIGNAC", - "nomCommune": "SAUSSIGNAC" + "codePostal": "20600", + "codeCommune": "2B120", + "libelleAcheminement": "FURIANI", + "nomCommune": "FURIANI" }, { - "codePostal": "61500", - "codeCommune": "61480", - "libelleAcheminement": "TANVILLE", - "nomCommune": "TANVILLE" + "codePostal": "20228", + "codeCommune": "2B030", + "libelleAcheminement": "BARRETTALI", + "nomCommune": "BARRETTALI" }, { - "codePostal": "57400", - "codeCommune": "57324", - "libelleAcheminement": "HILBESHEIM", - "nomCommune": "HILBESHEIM" + "codePostal": "17380", + "codeCommune": "17457", + "libelleAcheminement": "LA DEVISE", + "nomCommune": "LA DEVISE" }, { - "codePostal": "23220", - "codeCommune": "23101", - "libelleAcheminement": "JOUILLAT", - "nomCommune": "JOUILLAT" + "codePostal": "19220", + "codeCommune": "19205", + "libelleAcheminement": "ST GENIEZ O MERLE", + "nomCommune": "ST GENIEZ O MERLE" }, { - "codePostal": "24270", - "codeCommune": "24526", - "libelleAcheminement": "SAVIGNAC LEDRIER", - "nomCommune": "SAVIGNAC LEDRIER" + "codePostal": "20243", + "codeCommune": "2B135", + "libelleAcheminement": "ISOLACCIO DI FIUMORBO", + "nomCommune": "ISOLACCIO DI FIUMORBO" }, { - "codePostal": "61130", - "codeCommune": "61484", - "libelleAcheminement": "VAL AU PERCHE", - "nomCommune": "VAL AU PERCHE" + "codePostal": "20600", + "codeCommune": "2B033", + "libelleAcheminement": "BASTIA", + "nomCommune": "BASTIA" }, { - "codePostal": "57220", - "codeCommune": "57326", - "libelleAcheminement": "HINCKANGE", - "nomCommune": "HINCKANGE" + "codePostal": "17380", + "codeCommune": "17457", + "libelleAcheminement": "LA DEVISE", + "nomCommune": "LA DEVISE" }, { - "codePostal": "23700", - "codeCommune": "23110", - "libelleAcheminement": "LIOUX LES MONGES", - "nomCommune": "LIOUX LES MONGES" + "codePostal": "19400", + "codeCommune": "19212", + "libelleAcheminement": "ST HILAIRE TAURIEUX", + "nomCommune": "ST HILAIRE TAURIEUX" }, { - "codePostal": "24300", - "codeCommune": "24528", - "libelleAcheminement": "SCEAU ST ANGEL", - "nomCommune": "SCEAU ST ANGEL" + "codePostal": "20244", + "codeCommune": "2B137", + "libelleAcheminement": "LANO", + "nomCommune": "LANO" }, { - "codePostal": "61260", - "codeCommune": "61484", - "libelleAcheminement": "VAL AU PERCHE", - "nomCommune": "VAL AU PERCHE" + "codePostal": "20260", + "codeCommune": "2B049", + "libelleAcheminement": "CALENZANA", + "nomCommune": "CALENZANA" }, { - "codePostal": "57380", - "codeCommune": "57328", - "libelleAcheminement": "HOLACOURT", - "nomCommune": "HOLACOURT" + "codePostal": "17500", + "codeCommune": "17458", + "libelleAcheminement": "VANZAC", + "nomCommune": "VANZAC" }, { - "codePostal": "23260", - "codeCommune": "23119", - "libelleAcheminement": "MALLERET", - "nomCommune": "MALLERET" + "codePostal": "19160", + "codeCommune": "19219", + "libelleAcheminement": "STE MARIE LAPANOUZE", + "nomCommune": "STE MARIE LAPANOUZE" }, { - "codePostal": "24290", - "codeCommune": "24531", - "libelleAcheminement": "SERGEAC", - "nomCommune": "SERGEAC" + "codePostal": "20260", + "codeCommune": "2B150", + "libelleAcheminement": "LUMIO", + "nomCommune": "LUMIO" }, { - "codePostal": "61260", - "codeCommune": "61484", - "libelleAcheminement": "VAL AU PERCHE", - "nomCommune": "VAL AU PERCHE" + "codePostal": "20229", + "codeCommune": "2B052", + "libelleAcheminement": "CAMPANA", + "nomCommune": "CAMPANA" }, { - "codePostal": "57220", - "codeCommune": "57329", - "libelleAcheminement": "HOLLING", - "nomCommune": "HOLLING" + "codePostal": "17470", + "codeCommune": "17471", + "libelleAcheminement": "LA VILLEDIEU", + "nomCommune": "LA VILLEDIEU" }, { - "codePostal": "23700", - "codeCommune": "23123", - "libelleAcheminement": "LES MARS", - "nomCommune": "LES MARS" + "codePostal": "19150", + "codeCommune": "19220", + "libelleAcheminement": "ST MARTIAL DE GIMEL", + "nomCommune": "ST MARTIAL DE GIMEL" }, { - "codePostal": "24420", - "codeCommune": "24540", - "libelleAcheminement": "SORGES ET LIGUEUX EN PERIGORD", - "nomCommune": "SORGES ET LIGUEUX EN PERIGORD" + "codePostal": "20245", + "codeCommune": "2B153", + "libelleAcheminement": "MANSO", + "nomCommune": "MANSO" }, { - "codePostal": "61340", - "codeCommune": "61484", - "libelleAcheminement": "VAL AU PERCHE", - "nomCommune": "VAL AU PERCHE" + "codePostal": "20270", + "codeCommune": "2B053", + "libelleAcheminement": "CAMPI", + "nomCommune": "CAMPI" }, { - "codePostal": "57510", - "codeCommune": "57330", - "libelleAcheminement": "HOLVING", - "nomCommune": "HOLVING" + "codePostal": "18500", + "codeCommune": "18005", + "libelleAcheminement": "ALLOUIS", + "nomCommune": "ALLOUIS" }, { - "codePostal": "23260", - "codeCommune": "23129", - "libelleAcheminement": "MAZIERE AUX BONS HOMMES", - "nomCommune": "LA MAZIERE AUX BONS HOMMES" + "codePostal": "19210", + "codeCommune": "19223", + "libelleAcheminement": "ST MARTIN SEPERT", + "nomCommune": "ST MARTIN SEPERT" }, { - "codePostal": "24460", - "codeCommune": "24540", - "libelleAcheminement": "SORGES ET LIGUEUX EN PERIGORD", - "nomCommune": "SORGES ET LIGUEUX EN PERIGORD" + "codePostal": "20270", + "codeCommune": "2B155", + "libelleAcheminement": "MATRA", + "nomCommune": "MATRA" }, { - "codePostal": "61120", - "codeCommune": "61485", - "libelleAcheminement": "TICHEVILLE", - "nomCommune": "TICHEVILLE" + "codePostal": "20290", + "codeCommune": "2B054", + "libelleAcheminement": "CAMPILE", + "nomCommune": "CAMPILE" }, { - "codePostal": "57470", - "codeCommune": "57332", - "libelleAcheminement": "HOMBOURG HAUT", - "nomCommune": "HOMBOURG HAUT" + "codePostal": "18340", + "codeCommune": "18006", + "libelleAcheminement": "ANNOIX", + "nomCommune": "ANNOIX" }, { - "codePostal": "23360", - "codeCommune": "23130", - "libelleAcheminement": "MEASNES", - "nomCommune": "MEASNES" + "codePostal": "19330", + "codeCommune": "19227", + "libelleAcheminement": "ST MEXANT", + "nomCommune": "ST MEXANT" }, { - "codePostal": "24540", - "codeCommune": "24542", - "libelleAcheminement": "SOULAURES", - "nomCommune": "SOULAURES" + "codePostal": "20218", + "codeCommune": "2B162", + "libelleAcheminement": "MOLTIFAO", + "nomCommune": "MOLTIFAO" }, { - "codePostal": "61800", - "codeCommune": "61486", - "libelleAcheminement": "TINCHEBRAY BOCAGE", - "nomCommune": "TINCHEBRAY BOCAGE" + "codePostal": "20229", + "codeCommune": "2B067", + "libelleAcheminement": "CARPINETO", + "nomCommune": "CARPINETO" }, { - "codePostal": "57820", - "codeCommune": "57339", - "libelleAcheminement": "HULTEHOUSE", - "nomCommune": "HULTEHOUSE" + "codePostal": "18150", + "codeCommune": "18007", + "libelleAcheminement": "APREMONT SUR ALLIER", + "nomCommune": "APREMONT SUR ALLIER" }, { - "codePostal": "23320", - "codeCommune": "23132", - "libelleAcheminement": "MONTAIGUT LE BLANC", - "nomCommune": "MONTAIGUT LE BLANC" + "codePostal": "19200", + "codeCommune": "19233", + "libelleAcheminement": "ST PARDOUX LE VIEUX", + "nomCommune": "ST PARDOUX LE VIEUX" }, { - "codePostal": "24800", - "codeCommune": "24551", - "libelleAcheminement": "THIVIERS", - "nomCommune": "THIVIERS" + "codePostal": "20214", + "codeCommune": "2B167", + "libelleAcheminement": "MONTEGROSSO", + "nomCommune": "MONTEGROSSO" }, { - "codePostal": "61800", - "codeCommune": "61486", - "libelleAcheminement": "TINCHEBRAY BOCAGE", - "nomCommune": "TINCHEBRAY BOCAGE" + "codePostal": "20244", + "codeCommune": "2B068", + "libelleAcheminement": "CARTICASI", + "nomCommune": "CARTICASI" }, { - "codePostal": "57990", - "codeCommune": "57340", - "libelleAcheminement": "HUNDLING", - "nomCommune": "HUNDLING" + "codePostal": "18200", + "codeCommune": "18009", + "libelleAcheminement": "ARCOMPS", + "nomCommune": "ARCOMPS" }, { - "codePostal": "23460", - "codeCommune": "23134", - "libelleAcheminement": "LE MONTEIL AU VICOMTE", - "nomCommune": "LE MONTEIL AU VICOMTE" + "codePostal": "19270", + "codeCommune": "19234", + "libelleAcheminement": "ST PARDOUX L ORTIGIER", + "nomCommune": "ST PARDOUX L ORTIGIER" }, { - "codePostal": "24320", - "codeCommune": "24554", - "libelleAcheminement": "LA TOUR BLANCHE CERCLES", - "nomCommune": "LA TOUR BLANCHE CERCLES" + "codePostal": "20220", + "codeCommune": "2B168", + "libelleAcheminement": "MONTICELLO", + "nomCommune": "MONTICELLO" }, { - "codePostal": "61800", - "codeCommune": "61486", - "libelleAcheminement": "TINCHEBRAY BOCAGE", - "nomCommune": "TINCHEBRAY BOCAGE" + "codePostal": "20224", + "codeCommune": "2B073", + "libelleAcheminement": "CASAMACCIOLI", + "nomCommune": "CASAMACCIOLI" }, { - "codePostal": "57830", - "codeCommune": "57342", - "libelleAcheminement": "IBIGNY", - "nomCommune": "IBIGNY" + "codePostal": "18170", + "codeCommune": "18010", + "libelleAcheminement": "ARDENAIS", + "nomCommune": "ARDENAIS" }, { - "codePostal": "23500", - "codeCommune": "23144", - "libelleAcheminement": "LA NOUAILLE", - "nomCommune": "LA NOUAILLE" + "codePostal": "19700", + "codeCommune": "19240", + "libelleAcheminement": "ST SALVADOUR", + "nomCommune": "ST SALVADOUR" }, { - "codePostal": "24390", - "codeCommune": "24555", - "libelleAcheminement": "TOURTOIRAC", - "nomCommune": "TOURTOIRAC" + "codePostal": "20219", + "codeCommune": "2B171", + "libelleAcheminement": "MURACCIOLE", + "nomCommune": "MURACCIOLE" }, { - "codePostal": "61800", - "codeCommune": "61486", - "libelleAcheminement": "TINCHEBRAY BOCAGE", - "nomCommune": "TINCHEBRAY BOCAGE" + "codePostal": "20250", + "codeCommune": "2B074", + "libelleAcheminement": "CASANOVA", + "nomCommune": "CASANOVA" }, { - "codePostal": "57990", - "codeCommune": "57348", - "libelleAcheminement": "IPPLING", - "nomCommune": "IPPLING" + "codePostal": "18220", + "codeCommune": "18016", + "libelleAcheminement": "AUBINGES", + "nomCommune": "AUBINGES" }, { - "codePostal": "23000", - "codeCommune": "23150", - "libelleAcheminement": "PEYRABOUT", - "nomCommune": "PEYRABOUT" + "codePostal": "19200", + "codeCommune": "19247", + "libelleAcheminement": "ST VICTOUR", + "nomCommune": "ST VICTOUR" }, { - "codePostal": "24150", - "codeCommune": "24566", - "libelleAcheminement": "VARENNES", - "nomCommune": "VARENNES" + "codePostal": "20226", + "codeCommune": "2B180", + "libelleAcheminement": "NOVELLA", + "nomCommune": "NOVELLA" }, { - "codePostal": "61330", - "codeCommune": "61487", - "libelleAcheminement": "TORCHAMP", - "nomCommune": "TORCHAMP" + "codePostal": "20250", + "codeCommune": "2B096", + "libelleAcheminement": "CORTE", + "nomCommune": "CORTE" }, { - "codePostal": "57330", - "codeCommune": "57356", - "libelleAcheminement": "KANFEN", - "nomCommune": "KANFEN" + "codePostal": "18300", + "codeCommune": "18020", + "libelleAcheminement": "BANNAY", + "nomCommune": "BANNAY" }, { - "codePostal": "23130", - "codeCommune": "23151", - "libelleAcheminement": "PEYRAT LA NONIERE", - "nomCommune": "PEYRAT LA NONIERE" + "codePostal": "19140", + "codeCommune": "19248", + "libelleAcheminement": "ST YBARD", + "nomCommune": "ST YBARD" }, { - "codePostal": "24540", - "codeCommune": "24572", - "libelleAcheminement": "VERGT DE BIRON", - "nomCommune": "VERGT DE BIRON" + "codePostal": "20226", + "codeCommune": "2B182", + "libelleAcheminement": "OCCHIATANA", + "nomCommune": "OCCHIATANA" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "20237", + "codeCommune": "2B101", + "libelleAcheminement": "CROCE", + "nomCommune": "CROCE" }, { - "codePostal": "57920", - "codeCommune": "57359", - "libelleAcheminement": "KEMPLICH", - "nomCommune": "KEMPLICH" + "codePostal": "18260", + "codeCommune": "18022", + "libelleAcheminement": "BARLIEU", + "nomCommune": "BARLIEU" }, { - "codePostal": "23500", - "codeCommune": "23158", - "libelleAcheminement": "POUSSANGES", - "nomCommune": "POUSSANGES" + "codePostal": "19110", + "codeCommune": "19252", + "libelleAcheminement": "SARROUX ST JULIEN", + "nomCommune": "SARROUX ST JULIEN" }, { - "codePostal": "24320", - "codeCommune": "24573", - "libelleAcheminement": "VERTEILLAC", - "nomCommune": "VERTEILLAC" + "codePostal": "20232", + "codeCommune": "2B185", + "libelleAcheminement": "OLETTA", + "nomCommune": "OLETTA" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "20290", + "codeCommune": "2B102", + "libelleAcheminement": "CROCICCHIA", + "nomCommune": "CROCICCHIA" }, { - "codePostal": "57460", - "codeCommune": "57360", - "libelleAcheminement": "KERBACH", - "nomCommune": "KERBACH" + "codePostal": "18370", + "codeCommune": "18024", + "libelleAcheminement": "BEDDES", + "nomCommune": "BEDDES" }, { - "codePostal": "23270", - "codeCommune": "23162", - "libelleAcheminement": "ROCHES", - "nomCommune": "ROCHES" + "codePostal": "19430", + "codeCommune": "19259", + "libelleAcheminement": "SEXCLES", + "nomCommune": "SEXCLES" }, { - "codePostal": "24370", - "codeCommune": "24574", - "libelleAcheminement": "VEYRIGNAC", - "nomCommune": "VEYRIGNAC" + "codePostal": "20290", + "codeCommune": "2B192", + "libelleAcheminement": "OLMO", + "nomCommune": "OLMO" }, { - "codePostal": "61160", - "codeCommune": "61505", - "libelleAcheminement": "VILLEDIEU LES BAILLEUL", - "nomCommune": "VILLEDIEU LES BAILLEUL" + "codePostal": "20244", + "codeCommune": "2B106", + "libelleAcheminement": "ERONE", + "nomCommune": "ERONE" }, { - "codePostal": "57920", - "codeCommune": "57367", - "libelleAcheminement": "KLANG", - "nomCommune": "KLANG" + "codePostal": "18240", + "codeCommune": "18032", + "libelleAcheminement": "BOULLERET", + "nomCommune": "BOULLERET" }, { - "codePostal": "23200", - "codeCommune": "23180", - "libelleAcheminement": "ST AMAND", - "nomCommune": "ST AMAND" + "codePostal": "19120", + "codeCommune": "19260", + "libelleAcheminement": "SIONIAC", + "nomCommune": "SIONIAC" }, { - "codePostal": "24220", - "codeCommune": "24577", - "libelleAcheminement": "VEZAC", - "nomCommune": "VEZAC" + "codePostal": "20251", + "codeCommune": "2B201", + "libelleAcheminement": "PANCHERACCIA", + "nomCommune": "PANCHERACCIA" }, { - "codePostal": "61400", - "codeCommune": "61507", - "libelleAcheminement": "VILLIERS SOUS MORTAGNE", - "nomCommune": "VILLIERS SOUS MORTAGNE" + "codePostal": "20234", + "codeCommune": "2B111", + "libelleAcheminement": "FELCE", + "nomCommune": "FELCE" }, { - "codePostal": "57240", - "codeCommune": "57368", - "libelleAcheminement": "KNUTANGE", - "nomCommune": "KNUTANGE" + "codePostal": "18120", + "codeCommune": "18036", + "libelleAcheminement": "BRINAY", + "nomCommune": "BRINAY" }, { - "codePostal": "23400", - "codeCommune": "23181", - "libelleAcheminement": "ST AMAND JARTOUDEIX", - "nomCommune": "ST AMAND JARTOUDEIX" + "codePostal": "19550", + "codeCommune": "19264", + "libelleAcheminement": "SOURSAC", + "nomCommune": "SOURSAC" }, { - "codePostal": "24200", - "codeCommune": "24587", - "libelleAcheminement": "VITRAC", - "nomCommune": "VITRAC" + "codePostal": "20234", + "codeCommune": "2B208", + "libelleAcheminement": "PERELLI", + "nomCommune": "PERELLI" }, { - "codePostal": "62153", - "codeCommune": "62001", - "libelleAcheminement": "ABLAIN ST NAZAIRE", - "nomCommune": "ABLAIN ST NAZAIRE" + "codePostal": "20225", + "codeCommune": "2B138", + "libelleAcheminement": "LAVATOGGIO", + "nomCommune": "LAVATOGGIO" }, { - "codePostal": "57480", - "codeCommune": "57371", - "libelleAcheminement": "HAUTE KONTZ", - "nomCommune": "HAUTE KONTZ" + "codePostal": "18410", + "codeCommune": "18037", + "libelleAcheminement": "BRINON SUR SAULDRE", + "nomCommune": "BRINON SUR SAULDRE" }, { - "codePostal": "23200", - "codeCommune": "23182", - "libelleAcheminement": "ST AVIT DE TARDES", - "nomCommune": "ST AVIT DE TARDES" + "codePostal": "19200", + "codeCommune": "19266", + "libelleAcheminement": "THALAMY", + "nomCommune": "THALAMY" }, { - "codePostal": "25250", - "codeCommune": "25005", - "libelleAcheminement": "ACCOLANS", - "nomCommune": "ACCOLANS" + "codePostal": "20230", + "codeCommune": "2B210", + "libelleAcheminement": "PERO CASEVECCHIE", + "nomCommune": "PERO CASEVECCHIE" }, { - "codePostal": "62320", - "codeCommune": "62003", - "libelleAcheminement": "ACHEVILLE", - "nomCommune": "ACHEVILLE" + "codePostal": "20215", + "codeCommune": "2B145", + "libelleAcheminement": "LORETO DI CASINCA", + "nomCommune": "LORETO DI CASINCA" }, { - "codePostal": "57830", - "codeCommune": "57377", - "libelleAcheminement": "LANDANGE", - "nomCommune": "LANDANGE" + "codePostal": "18300", + "codeCommune": "18039", + "libelleAcheminement": "BUE", + "nomCommune": "BUE" }, { - "codePostal": "23480", - "codeCommune": "23183", - "libelleAcheminement": "ST AVIT LE PAUVRE", - "nomCommune": "ST AVIT LE PAUVRE" + "codePostal": "19500", + "codeCommune": "19273", + "libelleAcheminement": "TURENNE", + "nomCommune": "TURENNE" }, { - "codePostal": "25360", - "codeCommune": "25006", - "libelleAcheminement": "ADAM LES PASSAVANT", - "nomCommune": "ADAM LES PASSAVANT" + "codePostal": "20218", + "codeCommune": "2B220", + "libelleAcheminement": "PIEDIGRIGGIO", + "nomCommune": "PIEDIGRIGGIO" }, { - "codePostal": "62380", - "codeCommune": "62008", - "libelleAcheminement": "ACQUIN WESTBECOURT", - "nomCommune": "ACQUIN WESTBECOURT" + "codePostal": "20240", + "codeCommune": "2B149", + "libelleAcheminement": "LUGO DI NAZZA", + "nomCommune": "LUGO DI NAZZA" }, { - "codePostal": "57385", - "codeCommune": "57386", - "libelleAcheminement": "LAUDREFANG", - "nomCommune": "LAUDREFANG" + "codePostal": "18360", + "codeCommune": "18041", + "libelleAcheminement": "LA CELETTE", + "nomCommune": "LA CELETTE" }, { - "codePostal": "23000", - "codeCommune": "23186", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "19270", + "codeCommune": "19274", + "libelleAcheminement": "USSAC", + "nomCommune": "USSAC" }, { - "codePostal": "25400", - "codeCommune": "25020", - "libelleAcheminement": "ARBOUANS", - "nomCommune": "ARBOUANS" + "codePostal": "20230", + "codeCommune": "2B225", + "libelleAcheminement": "PIETRA DI VERDE", + "nomCommune": "PIETRA DI VERDE" }, { - "codePostal": "62116", - "codeCommune": "62009", - "libelleAcheminement": "ADINFER", - "nomCommune": "ADINFER" + "codePostal": "20212", + "codeCommune": "2B157", + "libelleAcheminement": "MAZZOLA", + "nomCommune": "MAZZOLA" }, { - "codePostal": "57480", - "codeCommune": "57387", - "libelleAcheminement": "LAUMESFELD", - "nomCommune": "LAUMESFELD" + "codePostal": "18200", + "codeCommune": "18042", + "libelleAcheminement": "LA CELLE", + "nomCommune": "LA CELLE" }, { - "codePostal": "23400", - "codeCommune": "23189", - "libelleAcheminement": "ST DIZIER MASBARAUD", - "nomCommune": "ST DIZIER MASBARAUD" + "codePostal": "19200", + "codeCommune": "19275", + "libelleAcheminement": "USSEL", + "nomCommune": "USSEL" }, { - "codePostal": "25300", - "codeCommune": "25024", - "libelleAcheminement": "ARCON", - "nomCommune": "ARCON" + "codePostal": "20246", + "codeCommune": "2B230", + "libelleAcheminement": "PIEVE", + "nomCommune": "PIEVE" }, { - "codePostal": "62161", - "codeCommune": "62011", - "libelleAcheminement": "AGNEZ LES DUISANS", - "nomCommune": "AGNEZ LES DUISANS" + "codePostal": "20287", + "codeCommune": "2B159", + "libelleAcheminement": "MERIA", + "nomCommune": "MERIA" }, { - "codePostal": "57580", - "codeCommune": "57395", - "libelleAcheminement": "LESSE", - "nomCommune": "LESSE" + "codePostal": "18190", + "codeCommune": "18046", + "libelleAcheminement": "CHAMBON", + "nomCommune": "CHAMBON" }, { - "codePostal": "23400", - "codeCommune": "23205", - "libelleAcheminement": "ST JUNIEN LA BREGERE", - "nomCommune": "ST JUNIEN LA BREGERE" + "codePostal": "21121", + "codeCommune": "21003", + "libelleAcheminement": "AHUY", + "nomCommune": "AHUY" }, { - "codePostal": "25520", - "codeCommune": "25025", - "libelleAcheminement": "ARC SOUS CICON", - "nomCommune": "ARC SOUS CICON" + "codePostal": "20259", + "codeCommune": "2B235", + "libelleAcheminement": "PIOGGIOLA", + "nomCommune": "PIOGGIOLA" }, { - "codePostal": "62690", - "codeCommune": "62012", - "libelleAcheminement": "AGNIERES", - "nomCommune": "AGNIERES" + "codePostal": "20270", + "codeCommune": "2B161", + "libelleAcheminement": "MOITA", + "nomCommune": "MOITA" }, { - "codePostal": "57810", - "codeCommune": "57397", - "libelleAcheminement": "LEY", - "nomCommune": "LEY" + "codePostal": "18140", + "codeCommune": "18049", + "libelleAcheminement": "LA CHAPELLE MONTLINARD", + "nomCommune": "LA CHAPELLE MONTLINARD" }, { - "codePostal": "23300", - "codeCommune": "23207", - "libelleAcheminement": "ST LEGER BRIDEREIX", - "nomCommune": "ST LEGER BRIDEREIX" + "codePostal": "21510", + "codeCommune": "21004", + "libelleAcheminement": "AIGNAY LE DUC", + "nomCommune": "AIGNAY LE DUC" }, { - "codePostal": "25270", - "codeCommune": "25026", - "libelleAcheminement": "ARC SOUS MONTENOT", - "nomCommune": "ARC SOUS MONTENOT" + "codePostal": "20232", + "codeCommune": "2B239", + "libelleAcheminement": "POGGIO D OLETTA", + "nomCommune": "POGGIO D OLETTA" }, { - "codePostal": "62217", - "codeCommune": "62013", - "libelleAcheminement": "AGNY", - "nomCommune": "AGNY" + "codePostal": "20218", + "codeCommune": "2B169", + "libelleAcheminement": "MOROSAGLIA", + "nomCommune": "MOROSAGLIA" }, { - "codePostal": "57340", - "codeCommune": "57401", - "libelleAcheminement": "LIDREZING", - "nomCommune": "LIDREZING" + "codePostal": "18250", + "codeCommune": "18051", + "libelleAcheminement": "LA CHAPELOTTE", + "nomCommune": "LA CHAPELOTTE" }, { - "codePostal": "23430", - "codeCommune": "23217", - "libelleAcheminement": "ST MARTIN STE CATHERINE", - "nomCommune": "ST MARTIN STE CATHERINE" + "codePostal": "21230", + "codeCommune": "21009", + "libelleAcheminement": "ALLEREY", + "nomCommune": "ALLEREY" }, { - "codePostal": "25400", - "codeCommune": "25031", - "libelleAcheminement": "AUDINCOURT", - "nomCommune": "AUDINCOURT" + "codePostal": "20237", + "codeCommune": "2B241", + "libelleAcheminement": "POGGIO MARINACCIO", + "nomCommune": "POGGIO MARINACCIO" }, { - "codePostal": "62120", - "codeCommune": "62014", - "libelleAcheminement": "AIRE SUR LA LYS", - "nomCommune": "AIRE SUR LA LYS" + "codePostal": "20217", + "codeCommune": "2B184", + "libelleAcheminement": "OLCANI", + "nomCommune": "OLCANI" }, { - "codePostal": "57635", - "codeCommune": "57407", - "libelleAcheminement": "LIXHEIM", - "nomCommune": "LIXHEIM" + "codePostal": "18800", + "codeCommune": "18056", + "libelleAcheminement": "CHASSY", + "nomCommune": "CHASSY" }, { - "codePostal": "23260", - "codeCommune": "23218", - "libelleAcheminement": "ST MAURICE PRES CROCQ", - "nomCommune": "ST MAURICE PRES CROCQ" + "codePostal": "21420", + "codeCommune": "21010", + "libelleAcheminement": "ALOXE CORTON", + "nomCommune": "ALOXE CORTON" }, { - "codePostal": "25870", - "codeCommune": "25035", - "libelleAcheminement": "LES AUXONS", - "nomCommune": "LES AUXONS" + "codePostal": "20229", + "codeCommune": "2B243", + "libelleAcheminement": "POLVEROSO", + "nomCommune": "POLVEROSO" }, { - "codePostal": "62180", - "codeCommune": "62015", - "libelleAcheminement": "AIRON NOTRE DAME", - "nomCommune": "AIRON NOTRE DAME" + "codePostal": "20217", + "codeCommune": "2B187", + "libelleAcheminement": "OLMETA DI CAPOCORSO", + "nomCommune": "OLMETA DI CAPOCORSO" }, { - "codePostal": "57520", - "codeCommune": "57408", - "libelleAcheminement": "LIXING LES ROUHLING", - "nomCommune": "LIXING LES ROUHLING" + "codePostal": "18350", + "codeCommune": "18060", + "libelleAcheminement": "CHAUMONT", + "nomCommune": "CHAUMONT" }, { - "codePostal": "23100", - "codeCommune": "23221", - "libelleAcheminement": "ST MERD LA BREUILLE", - "nomCommune": "ST MERD LA BREUILLE" + "codePostal": "21230", + "codeCommune": "21015", + "libelleAcheminement": "ANTIGNY LA VILLE", + "nomCommune": "ANTIGNY LA VILLE" }, { - "codePostal": "25720", - "codeCommune": "25036", - "libelleAcheminement": "AVANNE AVENEY", - "nomCommune": "AVANNE AVENEY" + "codePostal": "20218", + "codeCommune": "2B248", + "libelleAcheminement": "PRATO DI GIOVELLINA", + "nomCommune": "PRATO DI GIOVELLINA" }, { - "codePostal": "62850", - "codeCommune": "62020", - "libelleAcheminement": "ALEMBON", - "nomCommune": "ALEMBON" + "codePostal": "20236", + "codeCommune": "2B193", + "libelleAcheminement": "OMESSA", + "nomCommune": "OMESSA" }, { - "codePostal": "57660", - "codeCommune": "57409", - "libelleAcheminement": "LIXING LES ST AVOLD", - "nomCommune": "LIXING LES ST AVOLD" + "codePostal": "18150", + "codeCommune": "18062", + "libelleAcheminement": "LE CHAUTAY", + "nomCommune": "LE CHAUTAY" }, { - "codePostal": "23600", - "codeCommune": "23233", - "libelleAcheminement": "ST PIERRE LE BOST", - "nomCommune": "ST PIERRE LE BOST" + "codePostal": "21310", + "codeCommune": "21016", + "libelleAcheminement": "ARCEAU", + "nomCommune": "ARCEAU" }, { - "codePostal": "25380", - "codeCommune": "25051", - "libelleAcheminement": "BELLEHERBE", - "nomCommune": "BELLEHERBE" + "codePostal": "20213", + "codeCommune": "2B252", + "libelleAcheminement": "PRUNO", + "nomCommune": "PRUNO" }, { - "codePostal": "62190", - "codeCommune": "62028", - "libelleAcheminement": "AMES", - "nomCommune": "AMES" + "codePostal": "20236", + "codeCommune": "2B193", + "libelleAcheminement": "OMESSA", + "nomCommune": "OMESSA" }, { - "codePostal": "57790", - "codeCommune": "57414", - "libelleAcheminement": "LORQUIN", - "nomCommune": "LORQUIN" + "codePostal": "18410", + "codeCommune": "18067", + "libelleAcheminement": "CLEMONT", + "nomCommune": "CLEMONT" }, { - "codePostal": "23110", - "codeCommune": "23234", - "libelleAcheminement": "ST PRIEST", - "nomCommune": "ST PRIEST" + "codePostal": "21350", + "codeCommune": "21024", + "libelleAcheminement": "ARNAY SOUS VITTEAUX", + "nomCommune": "ARNAY SOUS VITTEAUX" }, { - "codePostal": "25190", - "codeCommune": "25061", - "libelleAcheminement": "BIEF", - "nomCommune": "BIEF" + "codePostal": "20247", + "codeCommune": "2B261", + "libelleAcheminement": "ROGLIANO", + "nomCommune": "ROGLIANO" }, { - "codePostal": "62760", - "codeCommune": "62030", - "libelleAcheminement": "AMPLIER", - "nomCommune": "AMPLIER" + "codePostal": "20229", + "codeCommune": "2B202", + "libelleAcheminement": "PARATA", + "nomCommune": "PARATA" }, { - "codePostal": "57050", - "codeCommune": "57415", - "libelleAcheminement": "LORRY LES METZ", - "nomCommune": "LORRY LES METZ" + "codePostal": "18260", + "codeCommune": "18070", + "libelleAcheminement": "CONCRESSAULT", + "nomCommune": "CONCRESSAULT" }, { - "codePostal": "23400", - "codeCommune": "23237", - "libelleAcheminement": "ST PRIEST PALUS", - "nomCommune": "ST PRIEST PALUS" + "codePostal": "21360", + "codeCommune": "21030", + "libelleAcheminement": "AUBAINE", + "nomCommune": "AUBAINE" }, { - "codePostal": "25250", - "codeCommune": "25067", - "libelleAcheminement": "BLUSSANS", - "nomCommune": "BLUSSANS" + "codePostal": "20244", + "codeCommune": "2B264", + "libelleAcheminement": "RUSIO", + "nomCommune": "RUSIO" }, { - "codePostal": "62134", - "codeCommune": "62036", - "libelleAcheminement": "ANVIN", - "nomCommune": "ANVIN" + "codePostal": "20290", + "codeCommune": "2B206", + "libelleAcheminement": "PENTA ACQUATELLA", + "nomCommune": "PENTA ACQUATELLA" }, { - "codePostal": "57420", - "codeCommune": "57416", - "libelleAcheminement": "LORRY MARDIGNY", - "nomCommune": "LORRY MARDIGNY" + "codePostal": "18130", + "codeCommune": "18071", + "libelleAcheminement": "CONTRES", + "nomCommune": "CONTRES" }, { - "codePostal": "23190", - "codeCommune": "23241", - "libelleAcheminement": "ST SILVAIN BELLEGARDE", - "nomCommune": "ST SILVAIN BELLEGARDE" + "codePostal": "21410", + "codeCommune": "21051", + "libelleAcheminement": "BAULME LA ROCHE", + "nomCommune": "BAULME LA ROCHE" }, { - "codePostal": "25330", - "codeCommune": "25070", - "libelleAcheminement": "BOLANDOZ", - "nomCommune": "BOLANDOZ" + "codePostal": "20239", + "codeCommune": "2B265", + "libelleAcheminement": "RUTALI", + "nomCommune": "RUTALI" }, { - "codePostal": "62610", - "codeCommune": "62038", - "libelleAcheminement": "ARDRES", - "nomCommune": "ARDRES" + "codePostal": "20213", + "codeCommune": "2B207", + "libelleAcheminement": "PENTA DI CASINCA", + "nomCommune": "PENTA DI CASINCA" }, { - "codePostal": "57670", - "codeCommune": "57417", - "libelleAcheminement": "LOSTROFF", - "nomCommune": "LOSTROFF" + "codePostal": "18340", + "codeCommune": "18073", + "libelleAcheminement": "CORQUOY", + "nomCommune": "CORQUOY" }, { - "codePostal": "23320", - "codeCommune": "23247", - "libelleAcheminement": "ST VAURY", - "nomCommune": "ST VAURY" + "codePostal": "21320", + "codeCommune": "21062", + "libelleAcheminement": "BELLENOT SOUS POUILLY", + "nomCommune": "BELLENOT SOUS POUILLY" }, { - "codePostal": "25230", - "codeCommune": "25071", - "libelleAcheminement": "BONDEVAL", - "nomCommune": "BONDEVAL" + "codePostal": "20215", + "codeCommune": "2B280", + "libelleAcheminement": "SILVARECCIO", + "nomCommune": "SILVARECCIO" }, { - "codePostal": "62510", - "codeCommune": "62040", - "libelleAcheminement": "ARQUES", - "nomCommune": "ARQUES" + "codePostal": "20234", + "codeCommune": "2B216", + "libelleAcheminement": "PIAZZALI", + "nomCommune": "PIAZZALI" }, { - "codePostal": "57730", - "codeCommune": "57428", - "libelleAcheminement": "MACHEREN", - "nomCommune": "MACHEREN" + "codePostal": "18300", + "codeCommune": "18074", + "libelleAcheminement": "COUARGUES", + "nomCommune": "COUARGUES" }, { - "codePostal": "23000", - "codeCommune": "23248", - "libelleAcheminement": "ST VICTOR EN MARCHE", - "nomCommune": "ST VICTOR EN MARCHE" + "codePostal": "21360", + "codeCommune": "21065", + "libelleAcheminement": "BESSEY EN CHAUME", + "nomCommune": "BESSEY EN CHAUME" }, { - "codePostal": "25210", - "codeCommune": "25077", - "libelleAcheminement": "LA BOSSE", - "nomCommune": "LA BOSSE" + "codePostal": "20233", + "codeCommune": "2B281", + "libelleAcheminement": "SISCO", + "nomCommune": "SISCO" }, { - "codePostal": "62223", - "codeCommune": "62042", - "libelleAcheminement": "ATHIES", - "nomCommune": "ATHIES" + "codePostal": "20229", + "codeCommune": "2B221", + "libelleAcheminement": "PIEDIPARTINO", + "nomCommune": "PIEDIPARTINO" }, { - "codePostal": "57480", - "codeCommune": "57437", - "libelleAcheminement": "MALLING", - "nomCommune": "MALLING" + "codePostal": "18320", + "codeCommune": "18075", + "libelleAcheminement": "COURS LES BARRES", + "nomCommune": "COURS LES BARRES" }, { - "codePostal": "23230", - "codeCommune": "23255", - "libelleAcheminement": "TROIS FONDS", - "nomCommune": "TROIS FONDS" + "codePostal": "21110", + "codeCommune": "21067", + "libelleAcheminement": "BESSEY LES CITEAUX", + "nomCommune": "BESSEY LES CITEAUX" }, { - "codePostal": "25360", - "codeCommune": "25078", - "libelleAcheminement": "BOUCLANS", - "nomCommune": "BOUCLANS" + "codePostal": "20213", + "codeCommune": "2B286", + "libelleAcheminement": "SORBO OCAGNANO", + "nomCommune": "SORBO OCAGNANO" }, { - "codePostal": "62690", - "codeCommune": "62045", - "libelleAcheminement": "AUBIGNY EN ARTOIS", - "nomCommune": "AUBIGNY EN ARTOIS" + "codePostal": "20228", + "codeCommune": "2B233", + "libelleAcheminement": "PINO", + "nomCommune": "PINO" }, { - "codePostal": "57480", - "codeCommune": "57439", - "libelleAcheminement": "MANDEREN RITZING", - "nomCommune": "MANDEREN RITZING" + "codePostal": "18300", + "codeCommune": "18079", + "libelleAcheminement": "CREZANCY EN SANCERRE", + "nomCommune": "CREZANCY EN SANCERRE" }, { - "codePostal": "24300", - "codeCommune": "24001", - "libelleAcheminement": "ABJAT SUR BANDIAT", - "nomCommune": "ABJAT SUR BANDIAT" + "codePostal": "21330", + "codeCommune": "21078", + "libelleAcheminement": "BISSEY LA PIERRE", + "nomCommune": "BISSEY LA PIERRE" }, { - "codePostal": "25560", - "codeCommune": "25079", - "libelleAcheminement": "BOUJAILLES", - "nomCommune": "BOUJAILLES" + "codePostal": "20229", + "codeCommune": "2B291", + "libelleAcheminement": "STAZZONA", + "nomCommune": "STAZZONA" }, { - "codePostal": "62770", - "codeCommune": "62050", - "libelleAcheminement": "AUCHY LES HESDIN", - "nomCommune": "AUCHY LES HESDIN" + "codePostal": "20230", + "codeCommune": "2B242", + "libelleAcheminement": "POGGIO MEZZANA", + "nomCommune": "POGGIO MEZZANA" }, { - "codePostal": "57380", - "codeCommune": "57442", - "libelleAcheminement": "MANY", - "nomCommune": "MANY" + "codePostal": "18110", + "codeCommune": "18097", + "libelleAcheminement": "FUSSY", + "nomCommune": "FUSSY" }, { - "codePostal": "24210", - "codeCommune": "24004", - "libelleAcheminement": "AJAT", - "nomCommune": "AJAT" + "codePostal": "21690", + "codeCommune": "21084", + "libelleAcheminement": "SOURCE SEINE", + "nomCommune": "SOURCE SEINE" }, { - "codePostal": "25560", - "codeCommune": "25085", - "libelleAcheminement": "BOUVERANS", - "nomCommune": "BOUVERANS" + "codePostal": "20250", + "codeCommune": "2B306", + "libelleAcheminement": "SANTA LUCIA DI MERCURIO", + "nomCommune": "SANTA LUCIA DI MERCURIO" }, { - "codePostal": "62164", - "codeCommune": "62056", - "libelleAcheminement": "AUDRESSELLES", - "nomCommune": "AUDRESSELLES" + "codePostal": "20243", + "codeCommune": "2B251", + "libelleAcheminement": "PRUNELLI DI FIUMORBO", + "nomCommune": "PRUNELLI DI FIUMORBO" }, { - "codePostal": "57630", - "codeCommune": "57448", - "libelleAcheminement": "MARSAL", - "nomCommune": "MARSAL" + "codePostal": "18300", + "codeCommune": "18098", + "libelleAcheminement": "GARDEFORT", + "nomCommune": "GARDEFORT" }, { - "codePostal": "24480", - "codeCommune": "24005", - "libelleAcheminement": "ALLES SUR DORDOGNE", - "nomCommune": "ALLES SUR DORDOGNE" + "codePostal": "21200", + "codeCommune": "21086", + "libelleAcheminement": "BLIGNY LES BEAUNE", + "nomCommune": "BLIGNY LES BEAUNE" }, { - "codePostal": "25250", - "codeCommune": "25093", - "libelleAcheminement": "BRETIGNEY", - "nomCommune": "BRETIGNEY" + "codePostal": "20250", + "codeCommune": "2B315", + "libelleAcheminement": "SANTO PIETRO DI VENACO", + "nomCommune": "SANTO PIETRO DI VENACO" }, { - "codePostal": "62550", - "codeCommune": "62058", - "libelleAcheminement": "AUMERVAL", - "nomCommune": "AUMERVAL" + "codePostal": "20237", + "codeCommune": "2B255", + "libelleAcheminement": "QUERCITELLO", + "nomCommune": "QUERCITELLO" }, { - "codePostal": "57550", - "codeCommune": "57460", - "libelleAcheminement": "MERTEN", - "nomCommune": "MERTEN" + "codePostal": "18600", + "codeCommune": "18106", + "libelleAcheminement": "GROSSOUVRE", + "nomCommune": "GROSSOUVRE" }, { - "codePostal": "24210", - "codeCommune": "24019", - "libelleAcheminement": "AZERAT", - "nomCommune": "AZERAT" + "codePostal": "21360", + "codeCommune": "21087", + "libelleAcheminement": "BLIGNY SUR OUCHE", + "nomCommune": "BLIGNY SUR OUCHE" }, { - "codePostal": "25600", - "codeCommune": "25097", - "libelleAcheminement": "BROGNARD", - "nomCommune": "BROGNARD" + "codePostal": "20230", + "codeCommune": "2B319", + "libelleAcheminement": "TALASANI", + "nomCommune": "TALASANI" }, { - "codePostal": "62360", - "codeCommune": "62075", - "libelleAcheminement": "BAINCTHUN", - "nomCommune": "BAINCTHUN" + "codePostal": "20246", + "codeCommune": "2B257", + "libelleAcheminement": "RAPALE", + "nomCommune": "RAPALE" }, { - "codePostal": "57000", - "codeCommune": "57463", - "libelleAcheminement": "METZ", - "nomCommune": "METZ" + "codePostal": "18150", + "codeCommune": "18108", + "libelleAcheminement": "LA GUERCHE SUR L AUBOIS", + "nomCommune": "LA GUERCHE SUR L AUBOIS" }, { - "codePostal": "24390", - "codeCommune": "24021", - "libelleAcheminement": "BADEFOLS D ANS", - "nomCommune": "BADEFOLS D ANS" + "codePostal": "21330", + "codeCommune": "21093", + "libelleAcheminement": "BOUIX", + "nomCommune": "BOUIX" }, { - "codePostal": "25440", - "codeCommune": "25098", - "libelleAcheminement": "BUFFARD", - "nomCommune": "BUFFARD" + "codePostal": "20270", + "codeCommune": "2B328", + "libelleAcheminement": "TOX", + "nomCommune": "TOX" }, { - "codePostal": "62450", - "codeCommune": "62080", - "libelleAcheminement": "BAPAUME", - "nomCommune": "BAPAUME" + "codePostal": "20212", + "codeCommune": "2B275", + "libelleAcheminement": "SERMANO", + "nomCommune": "SERMANO" }, { - "codePostal": "57920", - "codeCommune": "57464", - "libelleAcheminement": "METZERESCHE", - "nomCommune": "METZERESCHE" + "codePostal": "18160", + "codeCommune": "18114", + "libelleAcheminement": "INEUIL", + "nomCommune": "INEUIL" }, { - "codePostal": "24560", - "codeCommune": "24024", - "libelleAcheminement": "BARDOU", - "nomCommune": "BARDOU" + "codePostal": "21350", + "codeCommune": "21100", + "libelleAcheminement": "BRAIN", + "nomCommune": "BRAIN" }, { - "codePostal": "25520", - "codeCommune": "25099", - "libelleAcheminement": "BUGNY", - "nomCommune": "BUGNY" + "codePostal": "20218", + "codeCommune": "2B332", + "libelleAcheminement": "URTACA", + "nomCommune": "URTACA" }, { - "codePostal": "62123", - "codeCommune": "62085", - "libelleAcheminement": "BASSEUX", - "nomCommune": "BASSEUX" + "codePostal": "20240", + "codeCommune": "2B283", + "libelleAcheminement": "SOLARO", + "nomCommune": "SOLARO" }, { - "codePostal": "57940", - "codeCommune": "57465", - "libelleAcheminement": "METZERVISSE", - "nomCommune": "METZERVISSE" + "codePostal": "18380", + "codeCommune": "18115", + "libelleAcheminement": "IVOY LE PRE", + "nomCommune": "IVOY LE PRE" }, { - "codePostal": "24210", - "codeCommune": "24025", - "libelleAcheminement": "BARS", - "nomCommune": "BARS" + "codePostal": "21390", + "codeCommune": "21101", + "libelleAcheminement": "BRAUX", + "nomCommune": "BRAUX" }, { - "codePostal": "25320", - "codeCommune": "25103", - "libelleAcheminement": "BUSY", - "nomCommune": "BUSY" + "codePostal": "20232", + "codeCommune": "2B333", + "libelleAcheminement": "VALLECALLE", + "nomCommune": "VALLECALLE" }, { - "codePostal": "62158", - "codeCommune": "62086", - "libelleAcheminement": "BAVINCOURT", - "nomCommune": "BAVINCOURT" + "codePostal": "20212", + "codeCommune": "2B292", + "libelleAcheminement": "SANT ANDREA DI BOZIO", + "nomCommune": "SANT ANDREA DI BOZIO" }, { - "codePostal": "57930", - "codeCommune": "57469", - "libelleAcheminement": "MITTERSHEIM", - "nomCommune": "MITTERSHEIM" + "codePostal": "18300", + "codeCommune": "18116", + "libelleAcheminement": "JALOGNES", + "nomCommune": "JALOGNES" }, { - "codePostal": "24330", - "codeCommune": "24026", - "libelleAcheminement": "BASSILLAC ET AUBEROCHE", - "nomCommune": "BASSILLAC ET AUBEROCHE" + "codePostal": "21390", + "codeCommune": "21108", + "libelleAcheminement": "BRIANNY", + "nomCommune": "BRIANNY" }, { - "codePostal": "25440", - "codeCommune": "25109", - "libelleAcheminement": "CESSEY", - "nomCommune": "CESSEY" + "codePostal": "20240", + "codeCommune": "2B342", + "libelleAcheminement": "VENTISERI", + "nomCommune": "VENTISERI" }, { - "codePostal": "62810", - "codeCommune": "62091", - "libelleAcheminement": "BEAUDRICOURT", - "nomCommune": "BEAUDRICOURT" + "codePostal": "20213", + "codeCommune": "2B299", + "libelleAcheminement": "SAN GAVINO D AMPUGNANI", + "nomCommune": "SAN GAVINO D AMPUGNANI" }, { - "codePostal": "57415", - "codeCommune": "57477", - "libelleAcheminement": "MONTBRONN", - "nomCommune": "MONTBRONN" + "codePostal": "18340", + "codeCommune": "18122", + "libelleAcheminement": "LAPAN", + "nomCommune": "LAPAN" }, { - "codePostal": "24220", - "codeCommune": "24036", - "libelleAcheminement": "BERBIGUIERES", - "nomCommune": "BERBIGUIERES" + "codePostal": "21500", + "codeCommune": "21114", + "libelleAcheminement": "BUFFON", + "nomCommune": "BUFFON" }, { - "codePostal": "25190", - "codeCommune": "25114", - "libelleAcheminement": "CHAMESOL", - "nomCommune": "CHAMESOL" + "codePostal": "20240", + "codeCommune": "2B342", + "libelleAcheminement": "VENTISERI", + "nomCommune": "VENTISERI" }, { - "codePostal": "62810", - "codeCommune": "62092", - "libelleAcheminement": "BEAUFORT BLAVINCOURT", - "nomCommune": "BEAUFORT BLAVINCOURT" + "codePostal": "20230", + "codeCommune": "2B302", + "libelleAcheminement": "SAN GIOVANNI DI MORIANI", + "nomCommune": "SAN GIOVANNI DI MORIANI" }, { - "codePostal": "57480", - "codeCommune": "57479", - "libelleAcheminement": "MONTENACH", - "nomCommune": "MONTENACH" + "codePostal": "18240", + "codeCommune": "18125", + "libelleAcheminement": "LERE", + "nomCommune": "LERE" }, { - "codePostal": "24320", - "codeCommune": "24038", - "libelleAcheminement": "BERTRIC BUREE", - "nomCommune": "BERTRIC BUREE" + "codePostal": "21110", + "codeCommune": "21126", + "libelleAcheminement": "CESSEY SUR TILLE", + "nomCommune": "CESSEY SUR TILLE" }, { - "codePostal": "25360", - "codeCommune": "25116", - "libelleAcheminement": "CHAMPLIVE", - "nomCommune": "CHAMPLIVE" + "codePostal": "20215", + "codeCommune": "2B343", + "libelleAcheminement": "VENZOLASCA", + "nomCommune": "VENZOLASCA" }, { - "codePostal": "62960", - "codeCommune": "62095", - "libelleAcheminement": "BEAUMETZ LES AIRE", - "nomCommune": "BEAUMETZ LES AIRE" + "codePostal": "20230", + "codeCommune": "2B303", + "libelleAcheminement": "SAN GIULIANO", + "nomCommune": "SAN GIULIANO" }, { - "codePostal": "57860", - "codeCommune": "57481", - "libelleAcheminement": "MONTOIS LA MONTAGNE", - "nomCommune": "MONTOIS LA MONTAGNE" + "codePostal": "18160", + "codeCommune": "18127", + "libelleAcheminement": "LIGNIERES", + "nomCommune": "LIGNIERES" }, { - "codePostal": "24590", - "codeCommune": "24050", - "libelleAcheminement": "BORREZE", - "nomCommune": "BORREZE" + "codePostal": "21320", + "codeCommune": "21128", + "libelleAcheminement": "CHAILLY SUR ARMANCON", + "nomCommune": "CHAILLY SUR ARMANCON" }, { - "codePostal": "25640", - "codeCommune": "25117", - "libelleAcheminement": "CHAMPOUX", - "nomCommune": "CHAMPOUX" + "codePostal": "20290", + "codeCommune": "2B355", + "libelleAcheminement": "VOLPAJOLA", + "nomCommune": "VOLPAJOLA" }, { - "codePostal": "62123", - "codeCommune": "62097", - "libelleAcheminement": "BEAUMETZ LES LOGES", - "nomCommune": "BEAUMETZ LES LOGES" + "codePostal": "20200", + "codeCommune": "2B305", + "libelleAcheminement": "SAN MARTINO DI LOTA", + "nomCommune": "SAN MARTINO DI LOTA" }, { - "codePostal": "57340", - "codeCommune": "57483", - "libelleAcheminement": "MORHANGE", - "nomCommune": "MORHANGE" + "codePostal": "18170", + "codeCommune": "18130", + "libelleAcheminement": "LOYE SUR ARNON", + "nomCommune": "LOYE SUR ARNON" }, { - "codePostal": "24330", - "codeCommune": "24053", - "libelleAcheminement": "BOULAZAC ISLE MANOIRE", - "nomCommune": "BOULAZAC ISLE MANOIRE" + "codePostal": "21290", + "codeCommune": "21129", + "libelleAcheminement": "CHAMBAIN", + "nomCommune": "CHAMBAIN" }, { - "codePostal": "25330", - "codeCommune": "25120", - "libelleAcheminement": "CHANTRANS", - "nomCommune": "CHANTRANS" + "codePostal": "30760", + "codeCommune": "30005", + "libelleAcheminement": "AIGUEZE", + "nomCommune": "AIGUEZE" }, { - "codePostal": "62142", - "codeCommune": "62104", - "libelleAcheminement": "BELLEBRUNE", - "nomCommune": "BELLEBRUNE" + "codePostal": "20200", + "codeCommune": "2B309", + "libelleAcheminement": "SANTA MARIA DI LOTA", + "nomCommune": "SANTA MARIA DI LOTA" }, { - "codePostal": "57590", - "codeCommune": "57486", - "libelleAcheminement": "MORVILLE SUR NIED", - "nomCommune": "MORVILLE SUR NIED" + "codePostal": "18170", + "codeCommune": "18135", + "libelleAcheminement": "MAISONNAIS", + "nomCommune": "MAISONNAIS" }, { - "codePostal": "24330", - "codeCommune": "24053", - "libelleAcheminement": "BOULAZAC ISLE MANOIRE", - "nomCommune": "BOULAZAC ISLE MANOIRE" + "codePostal": "21400", + "codeCommune": "21134", + "libelleAcheminement": "CHAMESSON", + "nomCommune": "CHAMESSON" }, { - "codePostal": "25470", - "codeCommune": "25124", - "libelleAcheminement": "CHARMAUVILLERS", - "nomCommune": "CHARMAUVILLERS" + "codePostal": "30250", + "codeCommune": "30023", + "libelleAcheminement": "AUJARGUES", + "nomCommune": "AUJARGUES" }, { - "codePostal": "62142", - "codeCommune": "62105", - "libelleAcheminement": "BELLE ET HOULLEFORT", - "nomCommune": "BELLE ET HOULLEFORT" + "codePostal": "20230", + "codeCommune": "2B313", + "libelleAcheminement": "SAN NICOLAO", + "nomCommune": "SAN NICOLAO" }, { - "codePostal": "57160", - "codeCommune": "57487", - "libelleAcheminement": "MOULINS LES METZ", - "nomCommune": "MOULINS LES METZ" + "codePostal": "18320", + "codeCommune": "18143", + "libelleAcheminement": "MENETOU COUTURE", + "nomCommune": "MENETOU COUTURE" }, { - "codePostal": "24600", - "codeCommune": "24058", - "libelleAcheminement": "BOURG DU BOST", - "nomCommune": "BOURG DU BOST" + "codePostal": "21500", + "codeCommune": "21137", + "libelleAcheminement": "CHAMP D OISEAU", + "nomCommune": "CHAMP D OISEAU" }, { - "codePostal": "25290", - "codeCommune": "25129", - "libelleAcheminement": "CHASSAGNE ST DENIS", - "nomCommune": "CHASSAGNE ST DENIS" + "codePostal": "30700", + "codeCommune": "30030", + "libelleAcheminement": "BARON", + "nomCommune": "BARON" }, { - "codePostal": "62490", - "codeCommune": "62106", - "libelleAcheminement": "BELLONNE", - "nomCommune": "BELLONNE" + "codePostal": "20270", + "codeCommune": "2B320", + "libelleAcheminement": "TALLONE", + "nomCommune": "TALLONE" }, { - "codePostal": "57630", - "codeCommune": "57490", - "libelleAcheminement": "MOYENVIC", - "nomCommune": "MOYENVIC" + "codePostal": "18300", + "codeCommune": "18144", + "libelleAcheminement": "MENETOU RATEL", + "nomCommune": "MENETOU RATEL" }, { - "codePostal": "24310", - "codeCommune": "24064", - "libelleAcheminement": "BRANTOME EN PERIGORD", - "nomCommune": "BRANTOME EN PERIGORD" + "codePostal": "21310", + "codeCommune": "21146", + "libelleAcheminement": "CHARMES", + "nomCommune": "CHARMES" }, { - "codePostal": "25500", - "codeCommune": "25148", - "libelleAcheminement": "LA CHENALOTTE", - "nomCommune": "LA CHENALOTTE" + "codePostal": "30127", + "codeCommune": "30034", + "libelleAcheminement": "BELLEGARDE", + "nomCommune": "BELLEGARDE" }, { - "codePostal": "62118", - "codeCommune": "62128", - "libelleAcheminement": "BIACHE ST VAAST", - "nomCommune": "BIACHE ST VAAST" + "codePostal": "20270", + "codeCommune": "2B320", + "libelleAcheminement": "TALLONE", + "nomCommune": "TALLONE" }, { - "codePostal": "57220", - "codeCommune": "57507", - "libelleAcheminement": "NIEDERVISSE", - "nomCommune": "NIEDERVISSE" + "codePostal": "18100", + "codeCommune": "18150", + "libelleAcheminement": "MERY SUR CHER", + "nomCommune": "MERY SUR CHER" }, { - "codePostal": "24210", - "codeCommune": "24066", - "libelleAcheminement": "BROUCHAUD", - "nomCommune": "BROUCHAUD" + "codePostal": "21170", + "codeCommune": "21148", + "libelleAcheminement": "CHARREY SUR SAONE", + "nomCommune": "CHARREY SUR SAONE" }, { - "codePostal": "25340", - "codeCommune": "25156", - "libelleAcheminement": "PAYS DE CLERVAL", - "nomCommune": "PAYS DE CLERVAL" + "codePostal": "30770", + "codeCommune": "30040", + "libelleAcheminement": "BLANDAS", + "nomCommune": "BLANDAS" }, { - "codePostal": "62650", - "codeCommune": "62134", - "libelleAcheminement": "BIMONT", - "nomCommune": "BIMONT" + "codePostal": "20250", + "codeCommune": "2B329", + "libelleAcheminement": "TRALONCA", + "nomCommune": "TRALONCA" }, { - "codePostal": "57720", - "codeCommune": "57513", - "libelleAcheminement": "NOUSSEVILLER LES BITCHE", - "nomCommune": "NOUSSEVILLER LES BITCHE" + "codePostal": "18160", + "codeCommune": "18152", + "libelleAcheminement": "MONTLOUIS", + "nomCommune": "MONTLOUIS" }, { - "codePostal": "24480", - "codeCommune": "24068", - "libelleAcheminement": "LE BUISSON DE CADOUIN", - "nomCommune": "LE BUISSON DE CADOUIN" + "codePostal": "21400", + "codeCommune": "21154", + "libelleAcheminement": "CHATILLON SUR SEINE", + "nomCommune": "CHATILLON SUR SEINE" }, { - "codePostal": "25410", - "codeCommune": "25162", - "libelleAcheminement": "CORCELLES FERRIERES", - "nomCommune": "CORCELLES FERRIERES" + "codePostal": "30580", + "codeCommune": "30048", + "libelleAcheminement": "BOUQUET", + "nomCommune": "BOUQUET" }, { - "codePostal": "62575", - "codeCommune": "62139", - "libelleAcheminement": "BLENDECQUES", - "nomCommune": "BLENDECQUES" + "codePostal": "20259", + "codeCommune": "2B339", + "libelleAcheminement": "VALLICA", + "nomCommune": "VALLICA" }, { - "codePostal": "57680", - "codeCommune": "57515", - "libelleAcheminement": "NOVEANT SUR MOSELLE", - "nomCommune": "NOVEANT SUR MOSELLE" + "codePostal": "18350", + "codeCommune": "18154", + "libelleAcheminement": "MORNAY BERRY", + "nomCommune": "MORNAY BERRY" }, { - "codePostal": "24260", - "codeCommune": "24076", - "libelleAcheminement": "CAMPAGNE", - "nomCommune": "CAMPAGNE" + "codePostal": "21360", + "codeCommune": "21156", + "libelleAcheminement": "CHAUDENAY LE CHATEAU", + "nomCommune": "CHAUDENAY LE CHATEAU" }, { - "codePostal": "25340", - "codeCommune": "25178", - "libelleAcheminement": "CROSEY LE PETIT", - "nomCommune": "CROSEY LE PETIT" + "codePostal": "30260", + "codeCommune": "30050", + "libelleAcheminement": "BRAGASSARGUES", + "nomCommune": "BRAGASSARGUES" }, { - "codePostal": "62390", - "codeCommune": "62143", - "libelleAcheminement": "BOFFLES", - "nomCommune": "BOFFLES" + "codePostal": "20230", + "codeCommune": "2B340", + "libelleAcheminement": "VELONE ORNETO", + "nomCommune": "VELONE ORNETO" }, { - "codePostal": "57320", - "codeCommune": "57516", - "libelleAcheminement": "OBERDORFF", - "nomCommune": "OBERDORFF" + "codePostal": "18250", + "codeCommune": "18163", + "libelleAcheminement": "NEUVY DEUX CLOCHERS", + "nomCommune": "NEUVY DEUX CLOCHERS" }, { - "codePostal": "24140", - "codeCommune": "24077", - "libelleAcheminement": "CAMPSEGRET", - "nomCommune": "CAMPSEGRET" + "codePostal": "21290", + "codeCommune": "21157", + "libelleAcheminement": "CHAUGEY", + "nomCommune": "CHAUGEY" }, { - "codePostal": "25680", - "codeCommune": "25181", - "libelleAcheminement": "CUBRIAL", - "nomCommune": "CUBRIAL" + "codePostal": "30350", + "codeCommune": "30068", + "libelleAcheminement": "CARDET", + "nomCommune": "CARDET" }, { - "codePostal": "62156", - "codeCommune": "62145", - "libelleAcheminement": "BOIRY NOTRE DAME", - "nomCommune": "BOIRY NOTRE DAME" + "codePostal": "20231", + "codeCommune": "2B341", + "libelleAcheminement": "VENACO", + "nomCommune": "VENACO" }, { - "codePostal": "57220", - "codeCommune": "57519", - "libelleAcheminement": "OBERVISSE", - "nomCommune": "OBERVISSE" + "codePostal": "18700", + "codeCommune": "18170", + "libelleAcheminement": "OIZON", + "nomCommune": "OIZON" }, { - "codePostal": "24370", - "codeCommune": "24081", - "libelleAcheminement": "CARLUX", - "nomCommune": "CARLUX" + "codePostal": "21400", + "codeCommune": "21161", + "libelleAcheminement": "CHAUMONT LE BOIS", + "nomCommune": "CHAUMONT LE BOIS" }, { - "codePostal": "25680", - "codeCommune": "25184", - "libelleAcheminement": "CUSE ET ADRISANS", - "nomCommune": "CUSE ET ADRISANS" + "codePostal": "30330", + "codeCommune": "30076", + "libelleAcheminement": "CAVILLARGUES", + "nomCommune": "CAVILLARGUES" }, { - "codePostal": "62320", - "codeCommune": "62148", - "libelleAcheminement": "BOIS BERNARD", - "nomCommune": "BOIS BERNARD" + "codePostal": "20229", + "codeCommune": "2B344", + "libelleAcheminement": "VERDESE", + "nomCommune": "VERDESE" }, { - "codePostal": "57810", - "codeCommune": "57524", - "libelleAcheminement": "OMMERAY", - "nomCommune": "OMMERAY" + "codePostal": "18200", + "codeCommune": "18172", + "libelleAcheminement": "ORVAL", + "nomCommune": "ORVAL" }, { - "codePostal": "24250", - "codeCommune": "24086", - "libelleAcheminement": "CASTELNAUD LA CHAPELLE", - "nomCommune": "CASTELNAUD LA CHAPELLE" + "codePostal": "21220", + "codeCommune": "21178", + "libelleAcheminement": "VALFORET", + "nomCommune": "VALFORET" }, { - "codePostal": "25600", - "codeCommune": "25188", - "libelleAcheminement": "DAMBENOIS", - "nomCommune": "DAMBENOIS" + "codePostal": "30450", + "codeCommune": "30079", + "libelleAcheminement": "CHAMBON", + "nomCommune": "CHAMBON" }, { - "codePostal": "62200", - "codeCommune": "62160", - "libelleAcheminement": "BOULOGNE SUR MER", - "nomCommune": "BOULOGNE SUR MER" + "codePostal": "20200", + "codeCommune": "2B353", + "libelleAcheminement": "VILLE DI PIETRABUGNO", + "nomCommune": "VILLE DI PIETRABUGNO" }, { - "codePostal": "57590", - "codeCommune": "57525", - "libelleAcheminement": "ORIOCOURT", - "nomCommune": "ORIOCOURT" + "codePostal": "18130", + "codeCommune": "18177", + "libelleAcheminement": "PARNAY", + "nomCommune": "PARNAY" }, { - "codePostal": "24250", - "codeCommune": "24091", - "libelleAcheminement": "CENAC ET ST JULIEN", - "nomCommune": "CENAC ET ST JULIEN" + "codePostal": "21270", + "codeCommune": "21180", + "libelleAcheminement": "CLERY", + "nomCommune": "CLERY" }, { - "codePostal": "25420", - "codeCommune": "25191", - "libelleAcheminement": "DAMPIERRE SUR LE DOUBS", - "nomCommune": "DAMPIERRE SUR LE DOUBS" + "codePostal": "30450", + "codeCommune": "30090", + "libelleAcheminement": "CONCOULES", + "nomCommune": "CONCOULES" }, { - "codePostal": "62340", - "codeCommune": "62161", - "libelleAcheminement": "BOUQUEHAULT", - "nomCommune": "BOUQUEHAULT" + "codePostal": "20240", + "codeCommune": "2B366", + "libelleAcheminement": "CHISA", + "nomCommune": "CHISA" }, { - "codePostal": "57840", - "codeCommune": "57529", - "libelleAcheminement": "OTTANGE", - "nomCommune": "OTTANGE" + "codePostal": "18600", + "codeCommune": "18196", + "libelleAcheminement": "ST AIGNAN DES NOYERS", + "nomCommune": "ST AIGNAN DES NOYERS" }, { - "codePostal": "24750", - "codeCommune": "24098", - "libelleAcheminement": "CHAMPCEVINEL", - "nomCommune": "CHAMPCEVINEL" + "codePostal": "21110", + "codeCommune": "21183", + "libelleAcheminement": "COLLONGES ET PREMIERES", + "nomCommune": "COLLONGES ET PREMIERES" }, { - "codePostal": "25450", - "codeCommune": "25193", - "libelleAcheminement": "DAMPRICHARD", - "nomCommune": "DAMPRICHARD" + "codePostal": "30500", + "codeCommune": "30097", + "libelleAcheminement": "COURRY", + "nomCommune": "COURRY" }, { - "codePostal": "62240", - "codeCommune": "62165", - "libelleAcheminement": "BOURNONVILLE", - "nomCommune": "BOURNONVILLE" + "codePostal": "30100", + "codeCommune": "30007", + "libelleAcheminement": "ALES", + "nomCommune": "ALES" }, { - "codePostal": "57530", - "codeCommune": "57533", - "libelleAcheminement": "PANGE", - "nomCommune": "PANGE" + "codePostal": "18400", + "codeCommune": "18201", + "libelleAcheminement": "ST CAPRAIS", + "nomCommune": "ST CAPRAIS" }, { - "codePostal": "24320", - "codeCommune": "24105", - "libelleAcheminement": "CHAPDEUIL", - "nomCommune": "CHAPDEUIL" + "codePostal": "21200", + "codeCommune": "21185", + "libelleAcheminement": "COMBERTAULT", + "nomCommune": "COMBERTAULT" }, { - "codePostal": "25230", - "codeCommune": "25196", - "libelleAcheminement": "DASLE", - "nomCommune": "DASLE" + "codePostal": "30170", + "codeCommune": "30099", + "libelleAcheminement": "CROS", + "nomCommune": "CROS" }, { - "codePostal": "62700", - "codeCommune": "62178", - "libelleAcheminement": "BRUAY LA BUISSIERE", - "nomCommune": "BRUAY LA BUISSIERE" + "codePostal": "30500", + "codeCommune": "30008", + "libelleAcheminement": "ALLEGRE LES FUMADES", + "nomCommune": "ALLEGRE LES FUMADES" }, { - "codePostal": "57410", - "codeCommune": "57535", - "libelleAcheminement": "PETIT REDERCHING", - "nomCommune": "PETIT REDERCHING" + "codePostal": "18400", + "codeCommune": "18207", + "libelleAcheminement": "ST FLORENT SUR CHER", + "nomCommune": "ST FLORENT SUR CHER" }, { - "codePostal": "24170", - "codeCommune": "24122", - "libelleAcheminement": "CLADECH", - "nomCommune": "CLADECH" + "codePostal": "21700", + "codeCommune": "21186", + "libelleAcheminement": "COMBLANCHIEN", + "nomCommune": "COMBLANCHIEN" }, { - "codePostal": "25960", - "codeCommune": "25197", - "libelleAcheminement": "DELUZ", - "nomCommune": "DELUZ" + "codePostal": "30750", + "codeCommune": "30105", + "libelleAcheminement": "DOURBIES", + "nomCommune": "DOURBIES" }, { - "codePostal": "62116", - "codeCommune": "62181", - "libelleAcheminement": "BUCQUOY", - "nomCommune": "BUCQUOY" + "codePostal": "30770", + "codeCommune": "30017", + "libelleAcheminement": "ARRIGAS", + "nomCommune": "ARRIGAS" }, { - "codePostal": "57540", - "codeCommune": "57537", - "libelleAcheminement": "PETITE ROSSELLE", - "nomCommune": "PETITE ROSSELLE" + "codePostal": "18240", + "codeCommune": "18208", + "libelleAcheminement": "STE GEMME EN SANCERROIS", + "nomCommune": "STE GEMME EN SANCERROIS" }, { - "codePostal": "24140", - "codeCommune": "24123", - "libelleAcheminement": "CLERMONT DE BEAUREGARD", - "nomCommune": "CLERMONT DE BEAUREGARD" + "codePostal": "21320", + "codeCommune": "21187", + "libelleAcheminement": "COMMARIN", + "nomCommune": "COMMARIN" }, { - "codePostal": "25140", - "codeCommune": "25213", - "libelleAcheminement": "LES ECORCES", - "nomCommune": "LES ECORCES" + "codePostal": "30124", + "codeCommune": "30108", + "libelleAcheminement": "L ESTRECHURE", + "nomCommune": "L ESTRECHURE" }, { - "codePostal": "62124", - "codeCommune": "62189", - "libelleAcheminement": "BUS", - "nomCommune": "BUS" + "codePostal": "30620", + "codeCommune": "30020", + "libelleAcheminement": "AUBORD", + "nomCommune": "AUBORD" }, { - "codePostal": "57170", - "codeCommune": "57538", - "libelleAcheminement": "PETTONCOURT", - "nomCommune": "PETTONCOURT" + "codePostal": "18110", + "codeCommune": "18211", + "libelleAcheminement": "ST GEORGES SUR MOULON", + "nomCommune": "ST GEORGES SUR MOULON" }, { - "codePostal": "24560", - "codeCommune": "24126", - "libelleAcheminement": "COLOMBIER", - "nomCommune": "COLOMBIER" + "codePostal": "21150", + "codeCommune": "21197", + "libelleAcheminement": "CORPOYER LA CHAPELLE", + "nomCommune": "CORPOYER LA CHAPELLE" }, { - "codePostal": "25640", - "codeCommune": "25215", - "libelleAcheminement": "L ECOUVOTTE", - "nomCommune": "L ECOUVOTTE" + "codePostal": "30730", + "codeCommune": "30112", + "libelleAcheminement": "FONS", + "nomCommune": "FONS" }, { - "codePostal": "62350", - "codeCommune": "62190", - "libelleAcheminement": "BUSNES", - "nomCommune": "BUSNES" + "codePostal": "30190", + "codeCommune": "30021", + "libelleAcheminement": "AUBUSSARGUES", + "nomCommune": "AUBUSSARGUES" }, { - "codePostal": "57340", - "codeCommune": "57539", - "libelleAcheminement": "PEVANGE", - "nomCommune": "PEVANGE" + "codePostal": "18340", + "codeCommune": "18212", + "libelleAcheminement": "ST GERMAIN DES BOIS", + "nomCommune": "ST GERMAIN DES BOIS" }, { - "codePostal": "24390", - "codeCommune": "24136", - "libelleAcheminement": "COUBJOURS", - "nomCommune": "COUBJOURS" + "codePostal": "21120", + "codeCommune": "21208", + "libelleAcheminement": "COURTIVRON", + "nomCommune": "COURTIVRON" }, { - "codePostal": "25170", - "codeCommune": "25217", - "libelleAcheminement": "EMAGNY", - "nomCommune": "EMAGNY" + "codePostal": "30250", + "codeCommune": "30114", + "libelleAcheminement": "FONTANES", + "nomCommune": "FONTANES" }, { - "codePostal": "62100", - "codeCommune": "62193", - "libelleAcheminement": "CALAIS", - "nomCommune": "CALAIS" + "codePostal": "30640", + "codeCommune": "30033", + "libelleAcheminement": "BEAUVOISIN", + "nomCommune": "BEAUVOISIN" }, { - "codePostal": "57230", - "codeCommune": "57541", - "libelleAcheminement": "PHILIPPSBOURG", - "nomCommune": "PHILIPPSBOURG" + "codePostal": "18160", + "codeCommune": "18216", + "libelleAcheminement": "ST HILAIRE EN LIGNIERES", + "nomCommune": "ST HILAIRE EN LIGNIERES" }, { - "codePostal": "24350", - "codeCommune": "24144", - "libelleAcheminement": "CREYSSAC", - "nomCommune": "CREYSSAC" + "codePostal": "21220", + "codeCommune": "21217", + "libelleAcheminement": "CURLEY", + "nomCommune": "CURLEY" }, { - "codePostal": "25530", - "codeCommune": "25218", - "libelleAcheminement": "EPENOUSE", - "nomCommune": "EPENOUSE" + "codePostal": "30300", + "codeCommune": "30117", + "libelleAcheminement": "FOURQUES", + "nomCommune": "FOURQUES" }, { - "codePostal": "62470", - "codeCommune": "62194", - "libelleAcheminement": "CALONNE RICOUART", - "nomCommune": "CALONNE RICOUART" + "codePostal": "30320", + "codeCommune": "30039", + "libelleAcheminement": "BEZOUCE", + "nomCommune": "BEZOUCE" }, { - "codePostal": "57050", - "codeCommune": "57545", - "libelleAcheminement": "PLAPPEVILLE", - "nomCommune": "PLAPPEVILLE" + "codePostal": "18390", + "codeCommune": "18226", + "libelleAcheminement": "ST MICHEL DE VOLANGIS", + "nomCommune": "ST MICHEL DE VOLANGIS" }, { - "codePostal": "24250", - "codeCommune": "24150", - "libelleAcheminement": "DAGLAN", - "nomCommune": "DAGLAN" + "codePostal": "21120", + "codeCommune": "21230", + "libelleAcheminement": "DIENAY", + "nomCommune": "DIENAY" }, { - "codePostal": "25580", - "codeCommune": "25222", - "libelleAcheminement": "ETALANS", - "nomCommune": "ETALANS" + "codePostal": "30170", + "codeCommune": "30119", + "libelleAcheminement": "FRESSAC", + "nomCommune": "FRESSAC" }, { - "codePostal": "62149", - "codeCommune": "62200", - "libelleAcheminement": "CAMBRIN", - "nomCommune": "CAMBRIN" + "codePostal": "30160", + "codeCommune": "30045", + "libelleAcheminement": "BORDEZAC", + "nomCommune": "BORDEZAC" }, { - "codePostal": "57590", - "codeCommune": "57555", - "libelleAcheminement": "PREVOCOURT", - "nomCommune": "PREVOCOURT" + "codePostal": "18140", + "codeCommune": "18240", + "libelleAcheminement": "SANCERGUES", + "nomCommune": "SANCERGUES" }, { - "codePostal": "24140", - "codeCommune": "24155", - "libelleAcheminement": "DOUVILLE", - "nomCommune": "DOUVILLE" + "codePostal": "21000", + "codeCommune": "21231", + "libelleAcheminement": "DIJON", + "nomCommune": "DIJON" }, { - "codePostal": "25330", - "codeCommune": "25223", - "libelleAcheminement": "ETERNOZ", - "nomCommune": "ETERNOZ" + "codePostal": "30160", + "codeCommune": "30120", + "libelleAcheminement": "GAGNIERES", + "nomCommune": "GAGNIERES" }, { - "codePostal": "62150", - "codeCommune": "62218", - "libelleAcheminement": "CAUCOURT", - "nomCommune": "CAUCOURT" + "codePostal": "30190", + "codeCommune": "30053", + "libelleAcheminement": "BRIGNON", + "nomCommune": "BRIGNON" }, { - "codePostal": "57590", - "codeCommune": "57559", - "libelleAcheminement": "PUZIEUX", - "nomCommune": "PUZIEUX" + "codePostal": "18290", + "codeCommune": "18244", + "libelleAcheminement": "SAUGY", + "nomCommune": "SAUGY" }, { - "codePostal": "24360", - "codeCommune": "24163", - "libelleAcheminement": "ETOUARS", - "nomCommune": "ETOUARS" + "codePostal": "21320", + "codeCommune": "21244", + "libelleAcheminement": "EGUILLY", + "nomCommune": "EGUILLY" }, { - "codePostal": "25170", - "codeCommune": "25225", - "libelleAcheminement": "ETRABONNE", - "nomCommune": "ETRABONNE" + "codePostal": "30730", + "codeCommune": "30122", + "libelleAcheminement": "GAJAN", + "nomCommune": "GAJAN" }, { - "codePostal": "62127", - "codeCommune": "62221", - "libelleAcheminement": "CHELERS", - "nomCommune": "CHELERS" + "codePostal": "30170", + "codeCommune": "30058", + "libelleAcheminement": "LA CADIERE ET CAMBO", + "nomCommune": "LA CADIERE ET CAMBO" }, { - "codePostal": "57410", - "codeCommune": "57561", - "libelleAcheminement": "RAHLING", - "nomCommune": "RAHLING" + "codePostal": "18340", + "codeCommune": "18248", + "libelleAcheminement": "SENNECAY", + "nomCommune": "SENNECAY" }, { - "codePostal": "24620", - "codeCommune": "24172", - "libelleAcheminement": "LES EYZIES", - "nomCommune": "LES EYZIES" + "codePostal": "21500", + "codeCommune": "21248", + "libelleAcheminement": "ERINGES", + "nomCommune": "ERINGES" }, { - "codePostal": "25520", - "codeCommune": "25229", - "libelleAcheminement": "EVILLERS", - "nomCommune": "EVILLERS" + "codePostal": "30190", + "codeCommune": "30126", + "libelleAcheminement": "GARRIGUES STE EULALIE", + "nomCommune": "GARRIGUES STE EULALIE" }, { - "codePostal": "62920", - "codeCommune": "62224", - "libelleAcheminement": "CHOCQUES", - "nomCommune": "CHOCQUES" + "codePostal": "30770", + "codeCommune": "30064", + "libelleAcheminement": "CAMPESTRE ET LUC", + "nomCommune": "CAMPESTRE ET LUC" }, { - "codePostal": "57550", - "codeCommune": "57570", - "libelleAcheminement": "REMERING", - "nomCommune": "REMERING" + "codePostal": "18340", + "codeCommune": "18254", + "libelleAcheminement": "SOYE EN SEPTAINE", + "nomCommune": "SOYE EN SEPTAINE" }, { - "codePostal": "24290", - "codeCommune": "24174", - "libelleAcheminement": "FANLAC", - "nomCommune": "FANLAC" + "codePostal": "21510", + "codeCommune": "21253", + "libelleAcheminement": "ETALANTE", + "nomCommune": "ETALANTE" }, { - "codePostal": "25470", - "codeCommune": "25234", - "libelleAcheminement": "FERRIERES LE LAC", - "nomCommune": "FERRIERES LE LAC" + "codePostal": "30330", + "codeCommune": "30127", + "libelleAcheminement": "GAUJAC", + "nomCommune": "GAUJAC" }, { - "codePostal": "62500", - "codeCommune": "62225", - "libelleAcheminement": "CLAIRMARAIS", - "nomCommune": "CLAIRMARAIS" + "codePostal": "30200", + "codeCommune": "30081", + "libelleAcheminement": "CHUSCLAN", + "nomCommune": "CHUSCLAN" }, { - "codePostal": "57510", - "codeCommune": "57571", - "libelleAcheminement": "REMERING LES PUTTELANGE", - "nomCommune": "REMERING LES PUTTELANGE" + "codePostal": "18260", + "codeCommune": "18256", + "libelleAcheminement": "SUBLIGNY", + "nomCommune": "SUBLIGNY" }, { - "codePostal": "24500", - "codeCommune": "24186", - "libelleAcheminement": "FONROQUE", - "nomCommune": "FONROQUE" + "codePostal": "21270", + "codeCommune": "21256", + "libelleAcheminement": "ETEVAUX", + "nomCommune": "ETEVAUX" }, { - "codePostal": "25330", - "codeCommune": "25236", - "libelleAcheminement": "FERTANS", - "nomCommune": "FERTANS" + "codePostal": "30250", + "codeCommune": "30136", + "libelleAcheminement": "JUNAS", + "nomCommune": "JUNAS" }, { - "codePostal": "62380", - "codeCommune": "62229", - "libelleAcheminement": "CLETY", - "nomCommune": "CLETY" + "codePostal": "30870", + "codeCommune": "30082", + "libelleAcheminement": "CLARENSAC", + "nomCommune": "CLARENSAC" }, { - "codePostal": "57570", - "codeCommune": "57574", - "libelleAcheminement": "BASSE RENTGEN", - "nomCommune": "BASSE RENTGEN" + "codePostal": "18300", + "codeCommune": "18262", + "libelleAcheminement": "THAUVENAY", + "nomCommune": "THAUVENAY" }, { - "codePostal": "24320", - "codeCommune": "24199", - "libelleAcheminement": "GOUT ROSSIGNOL", - "nomCommune": "GOUT ROSSIGNOL" + "codePostal": "21290", + "codeCommune": "21262", + "libelleAcheminement": "FAVEROLLES LES LUCEY", + "nomCommune": "FAVEROLLES LES LUCEY" }, { - "codePostal": "25490", - "codeCommune": "25237", - "libelleAcheminement": "FESCHES LE CHATEL", - "nomCommune": "FESCHES LE CHATEL" + "codePostal": "30110", + "codeCommune": "30137", + "libelleAcheminement": "LAMELOUZE", + "nomCommune": "LAMELOUZE" }, { - "codePostal": "62142", - "codeCommune": "62230", - "libelleAcheminement": "COLEMBERT", - "nomCommune": "COLEMBERT" + "codePostal": "30920", + "codeCommune": "30083", + "libelleAcheminement": "CODOGNAN", + "nomCommune": "CODOGNAN" }, { - "codePostal": "57480", - "codeCommune": "57576", - "libelleAcheminement": "RETTEL", - "nomCommune": "RETTEL" + "codePostal": "18570", + "codeCommune": "18267", + "libelleAcheminement": "TROUY", + "nomCommune": "TROUY" }, { - "codePostal": "24380", - "codeCommune": "24208", - "libelleAcheminement": "GRUN BORDAS", - "nomCommune": "GRUN BORDAS" + "codePostal": "21490", + "codeCommune": "21266", + "libelleAcheminement": "FLACEY", + "nomCommune": "FLACEY" }, { - "codePostal": "25660", - "codeCommune": "25245", - "libelleAcheminement": "FONTAIN", - "nomCommune": "FONTAIN" + "codePostal": "30460", + "codeCommune": "30140", + "libelleAcheminement": "LASALLE", + "nomCommune": "LASALLE" }, { - "codePostal": "62180", - "codeCommune": "62231", - "libelleAcheminement": "COLLINE BEAUMONT", - "nomCommune": "COLLINE BEAUMONT" + "codePostal": "30360", + "codeCommune": "30100", + "libelleAcheminement": "CRUVIERS LASCOURS", + "nomCommune": "CRUVIERS LASCOURS" }, { - "codePostal": "57230", - "codeCommune": "57577", - "libelleAcheminement": "REYERSVILLER", - "nomCommune": "REYERSVILLER" + "codePostal": "18190", + "codeCommune": "18270", + "libelleAcheminement": "VALLENAY", + "nomCommune": "VALLENAY" }, { - "codePostal": "24630", - "codeCommune": "24218", - "libelleAcheminement": "JUMILHAC LE GRAND", - "nomCommune": "JUMILHAC LE GRAND" + "codePostal": "21150", + "codeCommune": "21271", + "libelleAcheminement": "FLAVIGNY SUR OZERAIN", + "nomCommune": "FLAVIGNY SUR OZERAIN" }, { - "codePostal": "25110", - "codeCommune": "25251", - "libelleAcheminement": "FOURBANNE", - "nomCommune": "FOURBANNE" + "codePostal": "30110", + "codeCommune": "30142", + "libelleAcheminement": "LAVAL PRADEL", + "nomCommune": "LAVAL PRADEL" }, { - "codePostal": "62158", - "codeCommune": "62243", - "libelleAcheminement": "COULLEMONT", - "nomCommune": "COULLEMONT" + "codePostal": "30390", + "codeCommune": "30107", + "libelleAcheminement": "ESTEZARGUES", + "nomCommune": "ESTEZARGUES" }, { - "codePostal": "57810", - "codeCommune": "57579", - "libelleAcheminement": "RHODES", - "nomCommune": "RHODES" + "codePostal": "18300", + "codeCommune": "18274", + "libelleAcheminement": "VERDIGNY", + "nomCommune": "VERDIGNY" }, { - "codePostal": "24150", - "codeCommune": "24223", - "libelleAcheminement": "LALINDE", - "nomCommune": "LALINDE" + "codePostal": "21140", + "codeCommune": "21272", + "libelleAcheminement": "LE VAL LARREY", + "nomCommune": "LE VAL LARREY" }, { - "codePostal": "25440", - "codeCommune": "25253", - "libelleAcheminement": "FOURG", - "nomCommune": "FOURG" + "codePostal": "30580", + "codeCommune": "30151", + "libelleAcheminement": "LUSSAN", + "nomCommune": "LUSSAN" }, { - "codePostal": "62710", - "codeCommune": "62250", - "libelleAcheminement": "COURRIERES", - "nomCommune": "COURRIERES" + "codePostal": "30660", + "codeCommune": "30123", + "libelleAcheminement": "GALLARGUES LE MONTUEUX", + "nomCommune": "GALLARGUES LE MONTUEUX" }, { - "codePostal": "57270", - "codeCommune": "57582", - "libelleAcheminement": "RICHEMONT", - "nomCommune": "RICHEMONT" + "codePostal": "18160", + "codeCommune": "18283", + "libelleAcheminement": "VILLECELIN", + "nomCommune": "VILLECELIN" }, { - "codePostal": "24150", - "codeCommune": "24228", - "libelleAcheminement": "LANQUAIS", - "nomCommune": "LANQUAIS" + "codePostal": "21410", + "codeCommune": "21273", + "libelleAcheminement": "FLEUREY SUR OUCHE", + "nomCommune": "FLEUREY SUR OUCHE" }, { - "codePostal": "25300", - "codeCommune": "25254", - "libelleAcheminement": "LES FOURGS", - "nomCommune": "LES FOURGS" + "codePostal": "30960", + "codeCommune": "30152", + "libelleAcheminement": "LES MAGES", + "nomCommune": "LES MAGES" }, { - "codePostal": "62158", - "codeCommune": "62253", - "libelleAcheminement": "COUTURELLE", - "nomCommune": "COUTURELLE" + "codePostal": "30760", + "codeCommune": "30124", + "libelleAcheminement": "LE GARN", + "nomCommune": "LE GARN" }, { - "codePostal": "57340", - "codeCommune": "57587", - "libelleAcheminement": "RODALBE", - "nomCommune": "RODALBE" + "codePostal": "18300", + "codeCommune": "18287", + "libelleAcheminement": "VINON", + "nomCommune": "VINON" }, { - "codePostal": "24570", - "codeCommune": "24229", - "libelleAcheminement": "LE LARDIN ST LAZARE", - "nomCommune": "LE LARDIN ST LAZARE" + "codePostal": "21260", + "codeCommune": "21275", + "libelleAcheminement": "FONCEGRIVE", + "nomCommune": "FONCEGRIVE" }, { - "codePostal": "25140", - "codeCommune": "25256", - "libelleAcheminement": "FRAMBOUHANS", - "nomCommune": "FRAMBOUHANS" + "codePostal": "30129", + "codeCommune": "30155", + "libelleAcheminement": "MANDUEL", + "nomCommune": "MANDUEL" }, { - "codePostal": "62310", - "codeCommune": "62256", - "libelleAcheminement": "CREPY", - "nomCommune": "CREPY" + "codePostal": "30450", + "codeCommune": "30130", + "libelleAcheminement": "GENOLHAC", + "nomCommune": "GENOLHAC" }, { - "codePostal": "57260", - "codeCommune": "57595", - "libelleAcheminement": "RORBACH LES DIEUZE", - "nomCommune": "RORBACH LES DIEUZE" + "codePostal": "18340", + "codeCommune": "18288", + "libelleAcheminement": "VORLY", + "nomCommune": "VORLY" }, { - "codePostal": "24550", - "codeCommune": "24232", - "libelleAcheminement": "LAVAUR", - "nomCommune": "LAVAUR" + "codePostal": "21220", + "codeCommune": "21295", + "libelleAcheminement": "GEVREY CHAMBERTIN", + "nomCommune": "GEVREY CHAMBERTIN" }, { - "codePostal": "25240", - "codeCommune": "25263", - "libelleAcheminement": "GELLIN", - "nomCommune": "GELLIN" + "codePostal": "30350", + "codeCommune": "30161", + "libelleAcheminement": "MASSANES", + "nomCommune": "MASSANES" }, { - "codePostal": "62128", - "codeCommune": "62259", - "libelleAcheminement": "CROISILLES", - "nomCommune": "CROISILLES" + "codePostal": "30240", + "codeCommune": "30133", + "libelleAcheminement": "LE GRAU DU ROI", + "nomCommune": "LE GRAU DU ROI" }, { - "codePostal": "57390", - "codeCommune": "57603", - "libelleAcheminement": "RUSSANGE", - "nomCommune": "RUSSANGE" + "codePostal": "19190", + "codeCommune": "19003", + "libelleAcheminement": "ALBIGNAC", + "nomCommune": "ALBIGNAC" }, { - "codePostal": "24110", - "codeCommune": "24236", - "libelleAcheminement": "LEGUILLAC DE L AUCHE", - "nomCommune": "LEGUILLAC DE L AUCHE" + "codePostal": "21640", + "codeCommune": "21297", + "libelleAcheminement": "GILLY LES CITEAUX", + "nomCommune": "GILLY LES CITEAUX" }, { - "codePostal": "25660", - "codeCommune": "25267", - "libelleAcheminement": "GENNES", - "nomCommune": "GENNES" + "codePostal": "30410", + "codeCommune": "30167", + "libelleAcheminement": "MEYRANNES", + "nomCommune": "MEYRANNES" }, { - "codePostal": "62130", - "codeCommune": "62260", - "libelleAcheminement": "CROIX EN TERNOIS", - "nomCommune": "CROIX EN TERNOIS" + "codePostal": "30300", + "codeCommune": "30135", + "libelleAcheminement": "JONQUIERES ST VINCENT", + "nomCommune": "JONQUIERES ST VINCENT" }, { - "codePostal": "57420", - "codeCommune": "57605", - "libelleAcheminement": "SAILLY ACHATEL", - "nomCommune": "SAILLY ACHATEL" + "codePostal": "19000", + "codeCommune": "19009", + "libelleAcheminement": "LES ANGLES SUR CORREZE", + "nomCommune": "LES ANGLES SUR CORREZE" }, { - "codePostal": "24510", - "codeCommune": "24240", - "libelleAcheminement": "LIMEUIL", - "nomCommune": "LIMEUIL" + "codePostal": "21580", + "codeCommune": "21304", + "libelleAcheminement": "GRANCEY LE CHATEAU", + "nomCommune": "GRANCEY LE CHATEAU NEUVELLE" }, { - "codePostal": "25640", - "codeCommune": "25269", - "libelleAcheminement": "GERMONDANS", - "nomCommune": "GERMONDANS" + "codePostal": "30150", + "codeCommune": "30178", + "libelleAcheminement": "MONTFAUCON", + "nomCommune": "MONTFAUCON" }, { - "codePostal": "62380", - "codeCommune": "62271", - "libelleAcheminement": "DOHEM", - "nomCommune": "DOHEM" + "codePostal": "30750", + "codeCommune": "30139", + "libelleAcheminement": "LANUEJOLS", + "nomCommune": "LANUEJOLS" }, { - "codePostal": "57500", - "codeCommune": "57606", - "libelleAcheminement": "ST AVOLD", - "nomCommune": "ST AVOLD" + "codePostal": "19230", + "codeCommune": "19011", + "libelleAcheminement": "ARNAC POMPADOUR", + "nomCommune": "ARNAC POMPADOUR" }, { - "codePostal": "24210", - "codeCommune": "24241", - "libelleAcheminement": "LIMEYRAT", - "nomCommune": "LIMEYRAT" + "codePostal": "21570", + "codeCommune": "21305", + "libelleAcheminement": "GRANCEY SUR OURCE", + "nomCommune": "GRANCEY SUR OURCE" }, { - "codePostal": "25190", - "codeCommune": "25275", - "libelleAcheminement": "GLERE", - "nomCommune": "GLERE" + "codePostal": "30260", + "codeCommune": "30181", + "libelleAcheminement": "MONTMIRAT", + "nomCommune": "MONTMIRAT" }, { - "codePostal": "62116", - "codeCommune": "62272", - "libelleAcheminement": "DOUCHY LES AYETTE", - "nomCommune": "DOUCHY LES AYETTE" + "codePostal": "30290", + "codeCommune": "30141", + "libelleAcheminement": "LAUDUN L ARDOISE", + "nomCommune": "LAUDUN L ARDOISE" }, { - "codePostal": "57830", - "codeCommune": "57611", - "libelleAcheminement": "ST GEORGES", - "nomCommune": "ST GEORGES" + "codePostal": "19800", + "codeCommune": "19016", + "libelleAcheminement": "BAR", + "nomCommune": "BAR" }, { - "codePostal": "24540", - "codeCommune": "24244", - "libelleAcheminement": "LOLME", - "nomCommune": "LOLME" + "codePostal": "21150", + "codeCommune": "21307", + "libelleAcheminement": "GRESIGNY STE REINE", + "nomCommune": "GRESIGNY STE REINE" }, { - "codePostal": "25190", - "codeCommune": "25275", - "libelleAcheminement": "GLERE", - "nomCommune": "GLERE" + "codePostal": "30121", + "codeCommune": "30185", + "libelleAcheminement": "MUS", + "nomCommune": "MUS" }, { - "codePostal": "62770", - "codeCommune": "62282", - "libelleAcheminement": "ECLIMEUX", - "nomCommune": "ECLIMEUX" + "codePostal": "30350", + "codeCommune": "30146", + "libelleAcheminement": "LEDIGNAN", + "nomCommune": "LEDIGNAN" }, { - "codePostal": "57420", - "codeCommune": "57617", - "libelleAcheminement": "ST JURE", - "nomCommune": "ST JURE" + "codePostal": "19120", + "codeCommune": "19019", + "libelleAcheminement": "BEAULIEU SUR DORDOGNE", + "nomCommune": "BEAULIEU SUR DORDOGNE" }, { - "codePostal": "24420", - "codeCommune": "24262", - "libelleAcheminement": "MAYAC", - "nomCommune": "MAYAC" + "codePostal": "21230", + "codeCommune": "21325", + "libelleAcheminement": "JOUEY", + "nomCommune": "JOUEY" }, { - "codePostal": "25210", - "codeCommune": "25286", - "libelleAcheminement": "GRAND COMBE DES BOIS", - "nomCommune": "GRAND COMBE DES BOIS" + "codePostal": "30160", + "codeCommune": "30194", + "libelleAcheminement": "PEYREMALE", + "nomCommune": "PEYREMALE" }, { - "codePostal": "62270", - "codeCommune": "62283", - "libelleAcheminement": "ECOIVRES", - "nomCommune": "ECOIVRES" + "codePostal": "30450", + "codeCommune": "30153", + "libelleAcheminement": "MALONS ET ELZE", + "nomCommune": "MALONS ET ELZE" }, { - "codePostal": "57820", - "codeCommune": "57618", - "libelleAcheminement": "ST LOUIS", - "nomCommune": "ST LOUIS" + "codePostal": "19510", + "codeCommune": "19022", + "libelleAcheminement": "BENAYES", + "nomCommune": "BENAYES" }, { - "codePostal": "24350", - "codeCommune": "24266", - "libelleAcheminement": "MENSIGNAC", - "nomCommune": "MENSIGNAC" + "codePostal": "21450", + "codeCommune": "21326", + "libelleAcheminement": "JOURS LES BAIGNEUX", + "nomCommune": "JOURS LES BAIGNEUX" }, { - "codePostal": "25320", - "codeCommune": "25287", - "libelleAcheminement": "GRANDFONTAINE", - "nomCommune": "GRANDFONTAINE" + "codePostal": "30170", + "codeCommune": "30200", + "libelleAcheminement": "POMPIGNAN", + "nomCommune": "POMPIGNAN" }, { - "codePostal": "62170", - "codeCommune": "62289", - "libelleAcheminement": "ECUIRES", - "nomCommune": "ECUIRES" + "codePostal": "30120", + "codeCommune": "30154", + "libelleAcheminement": "MANDAGOUT", + "nomCommune": "MANDAGOUT" }, { - "codePostal": "57260", - "codeCommune": "57621", - "libelleAcheminement": "ST MEDARD", - "nomCommune": "ST MEDARD" + "codePostal": "19230", + "codeCommune": "19024", + "libelleAcheminement": "BEYSSAC", + "nomCommune": "BEYSSAC" }, { - "codePostal": "24240", - "codeCommune": "24274", - "libelleAcheminement": "MONBAZILLAC", - "nomCommune": "MONBAZILLAC" + "codePostal": "21210", + "codeCommune": "21328", + "libelleAcheminement": "JUILLENAY", + "nomCommune": "JUILLENAY" }, { - "codePostal": "25510", - "codeCommune": "25289", - "libelleAcheminement": "GRANDFONTAINE SUR CREUSE", - "nomCommune": "GRANDFONTAINE SUR CREUSE" + "codePostal": "30130", + "codeCommune": "30202", + "libelleAcheminement": "PONT ST ESPRIT", + "nomCommune": "PONT ST ESPRIT" }, { - "codePostal": "62223", - "codeCommune": "62290", - "libelleAcheminement": "ECURIE", - "nomCommune": "ECURIE" + "codePostal": "30360", + "codeCommune": "30158", + "libelleAcheminement": "MARTIGNARGUES", + "nomCommune": "MARTIGNARGUES" }, { - "codePostal": "57640", - "codeCommune": "57626", - "libelleAcheminement": "SANRY LES VIGY", - "nomCommune": "SANRY LES VIGY" + "codePostal": "19120", + "codeCommune": "19026", + "libelleAcheminement": "BILHAC", + "nomCommune": "BILHAC" }, { - "codePostal": "24210", - "codeCommune": "24284", - "libelleAcheminement": "MONTAGNAC D AUBEROCHE", - "nomCommune": "MONTAGNAC D AUBEROCHE" + "codePostal": "21130", + "codeCommune": "21331", + "libelleAcheminement": "LABERGEMENT LES AUXONNE", + "nomCommune": "LABERGEMENT LES AUXONNE" }, { - "codePostal": "25160", - "codeCommune": "25295", - "libelleAcheminement": "LES GRANGETTES", - "nomCommune": "LES GRANGETTES" + "codePostal": "30530", + "codeCommune": "30203", + "libelleAcheminement": "PORTES", + "nomCommune": "PORTES" }, { - "codePostal": "62300", - "codeCommune": "62291", - "libelleAcheminement": "ELEU DIT LEAUWETTE", - "nomCommune": "ELEU DIT LEAUWETTE" + "codePostal": "30350", + "codeCommune": "30163", + "libelleAcheminement": "MAURESSARGUES", + "nomCommune": "MAURESSARGUES" }, { - "codePostal": "57400", - "codeCommune": "57630", - "libelleAcheminement": "SARREBOURG", - "nomCommune": "SARREBOURG" + "codePostal": "19170", + "codeCommune": "19027", + "libelleAcheminement": "BONNEFOND", + "nomCommune": "BONNEFOND" }, { - "codePostal": "24250", - "codeCommune": "24300", - "libelleAcheminement": "NABIRAT", - "nomCommune": "NABIRAT" + "codePostal": "21440", + "codeCommune": "21338", + "libelleAcheminement": "LAMARGELLE", + "nomCommune": "LAMARGELLE" }, { - "codePostal": "25110", - "codeCommune": "25299", - "libelleAcheminement": "GUILLON LES BAINS", - "nomCommune": "GUILLON LES BAINS" + "codePostal": "30500", + "codeCommune": "30204", + "libelleAcheminement": "POTELIERES", + "nomCommune": "POTELIERES" }, { - "codePostal": "62990", - "codeCommune": "62293", - "libelleAcheminement": "EMBRY", - "nomCommune": "EMBRY" + "codePostal": "30340", + "codeCommune": "30165", + "libelleAcheminement": "MEJANNES LES ALES", + "nomCommune": "MEJANNES LES ALES" }, { - "codePostal": "57720", - "codeCommune": "57641", - "libelleAcheminement": "SCHWEYEN", - "nomCommune": "SCHWEYEN" + "codePostal": "19330", + "codeCommune": "19042", + "libelleAcheminement": "CHANTEIX", + "nomCommune": "CHANTEIX" }, { - "codePostal": "24800", - "codeCommune": "24305", - "libelleAcheminement": "NANTHIAT", - "nomCommune": "NANTHIAT" + "codePostal": "21370", + "codeCommune": "21339", + "libelleAcheminement": "LANTENAY", + "nomCommune": "LANTENAY" }, { - "codePostal": "25370", - "codeCommune": "25307", - "libelleAcheminement": "LES HOPITAUX NEUFS", - "nomCommune": "LES HOPITAUX NEUFS" + "codePostal": "30129", + "codeCommune": "30211", + "libelleAcheminement": "REDESSAN", + "nomCommune": "REDESSAN" }, { - "codePostal": "62145", - "codeCommune": "62295", - "libelleAcheminement": "ENQUIN LEZ GUINEGATTE", - "nomCommune": "ENQUIN LEZ GUINEGATTE" + "codePostal": "30120", + "codeCommune": "30170", + "libelleAcheminement": "MOLIERES CAVAILLAC", + "nomCommune": "MOLIERES CAVAILLAC" }, { - "codePostal": "57530", - "codeCommune": "57648", - "libelleAcheminement": "SERVIGNY LES RAVILLE", - "nomCommune": "SERVIGNY LES RAVILLE" + "codePostal": "19360", + "codeCommune": "19043", + "libelleAcheminement": "LA CHAPELLE AUX BROCS", + "nomCommune": "LA CHAPELLE AUX BROCS" }, { - "codePostal": "24170", - "codeCommune": "24313", - "libelleAcheminement": "ORLIAC", - "nomCommune": "ORLIAC" + "codePostal": "21170", + "codeCommune": "21342", + "libelleAcheminement": "LAPERRIERE SUR SAONE", + "nomCommune": "LAPERRIERE SUR SAONE" }, { - "codePostal": "25360", - "codeCommune": "25324", - "libelleAcheminement": "LANANS", - "nomCommune": "LANANS" + "codePostal": "30430", + "codeCommune": "30215", + "libelleAcheminement": "RIVIERES", + "nomCommune": "RIVIERES" }, { - "codePostal": "62134", - "codeCommune": "62301", - "libelleAcheminement": "EQUIRRE", - "nomCommune": "EQUIRRE" + "codePostal": "30170", + "codeCommune": "30172", + "libelleAcheminement": "MONOBLET", + "nomCommune": "MONOBLET" }, { - "codePostal": "57580", - "codeCommune": "57656", - "libelleAcheminement": "SORBEY", - "nomCommune": "SORBEY" + "codePostal": "19190", + "codeCommune": "19048", + "libelleAcheminement": "LE CHASTANG", + "nomCommune": "LE CHASTANG" }, { - "codePostal": "24270", - "codeCommune": "24320", - "libelleAcheminement": "PAYZAC", - "nomCommune": "PAYZAC" + "codePostal": "21330", + "codeCommune": "21343", + "libelleAcheminement": "LARREY", + "nomCommune": "LARREY" }, { - "codePostal": "25720", - "codeCommune": "25328", - "libelleAcheminement": "LARNOD", - "nomCommune": "LARNOD" + "codePostal": "30200", + "codeCommune": "30222", + "libelleAcheminement": "LA ROQUE SUR CEZE", + "nomCommune": "LA ROQUE SUR CEZE" }, { - "codePostal": "62170", - "codeCommune": "62312", - "libelleAcheminement": "ESTREE", - "nomCommune": "ESTREE" + "codePostal": "30120", + "codeCommune": "30176", + "libelleAcheminement": "MONTDARDIER", + "nomCommune": "MONTDARDIER" }, { - "codePostal": "57960", - "codeCommune": "57658", - "libelleAcheminement": "SOUCHT", - "nomCommune": "SOUCHT" + "codePostal": "19390", + "codeCommune": "19051", + "libelleAcheminement": "CHAUMEIL", + "nomCommune": "CHAUMEIL" }, { - "codePostal": "24120", - "codeCommune": "24321", - "libelleAcheminement": "PAZAYAC", - "nomCommune": "PAZAYAC" + "codePostal": "21110", + "codeCommune": "21352", + "libelleAcheminement": "LONGEAULT PLUVAULT", + "nomCommune": "LONGEAULT PLUVAULT" }, { - "codePostal": "25210", - "codeCommune": "25329", - "libelleAcheminement": "LAVAL LE PRIEURE", - "nomCommune": "LAVAL LE PRIEURE" + "codePostal": "30570", + "codeCommune": "30229", + "libelleAcheminement": "ST ANDRE DE MAJENCOULES", + "nomCommune": "ST ANDRE DE MAJENCOULES" }, { - "codePostal": "62810", - "codeCommune": "62316", - "libelleAcheminement": "ESTREE WAMIN", - "nomCommune": "ESTREE WAMIN" + "codePostal": "30730", + "codeCommune": "30182", + "libelleAcheminement": "MONTPEZAT", + "nomCommune": "MONTPEZAT" }, { - "codePostal": "57350", - "codeCommune": "57659", - "libelleAcheminement": "SPICHEREN", - "nomCommune": "SPICHEREN" + "codePostal": "19250", + "codeCommune": "19058", + "libelleAcheminement": "COMBRESSOL", + "nomCommune": "COMBRESSOL" }, { - "codePostal": "24370", - "codeCommune": "24325", - "libelleAcheminement": "PECHS DE L ESPERANCE", - "nomCommune": "PECHS DE L ESPERANCE" + "codePostal": "21290", + "codeCommune": "21359", + "libelleAcheminement": "LUCEY", + "nomCommune": "LUCEY" }, { - "codePostal": "25580", - "codeCommune": "25331", - "libelleAcheminement": "LAVANS VUILLAFANS", - "nomCommune": "LAVANS VUILLAFANS" + "codePostal": "30940", + "codeCommune": "30231", + "libelleAcheminement": "ST ANDRE DE VALBORGNE", + "nomCommune": "ST ANDRE DE VALBORGNE" }, { - "codePostal": "62141", - "codeCommune": "62321", - "libelleAcheminement": "EVIN MALMAISON", - "nomCommune": "EVIN MALMAISON" + "codePostal": "30900", + "codeCommune": "30189", + "libelleAcheminement": "NIMES", + "nomCommune": "NIMES" }, { - "codePostal": "57350", - "codeCommune": "57660", - "libelleAcheminement": "STIRING WENDEL", - "nomCommune": "STIRING WENDEL" + "codePostal": "19140", + "codeCommune": "19060", + "libelleAcheminement": "CONDAT SUR GANAVEIX", + "nomCommune": "CONDAT SUR GANAVEIX" }, { - "codePostal": "33220", - "codeCommune": "24335", - "libelleAcheminement": "PORT STE FOY ET PONCHAPT", - "nomCommune": "PORT STE FOY ET PONCHAPT" + "codePostal": "21450", + "codeCommune": "21364", + "libelleAcheminement": "MAGNY LAMBERT", + "nomCommune": "MAGNY LAMBERT" }, { - "codePostal": "25170", - "codeCommune": "25332", - "libelleAcheminement": "LAVERNAY", - "nomCommune": "LAVERNAY" + "codePostal": "30330", + "codeCommune": "30232", + "libelleAcheminement": "ST ANDRE D OLERARGUES", + "nomCommune": "ST ANDRE D OLERARGUES" }, { - "codePostal": "62560", - "codeCommune": "62325", - "libelleAcheminement": "FAUQUEMBERGUES", - "nomCommune": "FAUQUEMBERGUES" + "codePostal": "30200", + "codeCommune": "30191", + "libelleAcheminement": "ORSAN", + "nomCommune": "ORSAN" }, { - "codePostal": "57385", - "codeCommune": "57668", - "libelleAcheminement": "TETING SUR NIED", - "nomCommune": "TETING SUR NIED" + "codePostal": "19300", + "codeCommune": "19070", + "libelleAcheminement": "DARNETS", + "nomCommune": "DARNETS" }, { - "codePostal": "24550", - "codeCommune": "24337", - "libelleAcheminement": "PRATS DU PERIGORD", - "nomCommune": "PRATS DU PERIGORD" + "codePostal": "21170", + "codeCommune": "21366", + "libelleAcheminement": "MAGNY LES AUBIGNY", + "nomCommune": "MAGNY LES AUBIGNY" }, { - "codePostal": "25270", - "codeCommune": "25334", - "libelleAcheminement": "LEVIER", - "nomCommune": "LEVIER" + "codePostal": "30730", + "codeCommune": "30233", + "libelleAcheminement": "ST BAUZELY", + "nomCommune": "ST BAUZELY" }, { - "codePostal": "62223", - "codeCommune": "62331", - "libelleAcheminement": "FEUCHY", - "nomCommune": "FEUCHY" + "codePostal": "30730", + "codeCommune": "30193", + "libelleAcheminement": "PARIGNARGUES", + "nomCommune": "PARIGNARGUES" }, { - "codePostal": "57450", - "codeCommune": "57669", - "libelleAcheminement": "THEDING", - "nomCommune": "THEDING" + "codePostal": "19600", + "codeCommune": "19077", + "libelleAcheminement": "ESTIVALS", + "nomCommune": "ESTIVALS" }, { - "codePostal": "24200", - "codeCommune": "24341", - "libelleAcheminement": "PROISSANS", - "nomCommune": "PROISSANS" + "codePostal": "21400", + "codeCommune": "21372", + "libelleAcheminement": "MAISEY LE DUC", + "nomCommune": "MAISEY LE DUC" }, { - "codePostal": "25690", - "codeCommune": "25343", - "libelleAcheminement": "LONGEMAISON", - "nomCommune": "LONGEMAISON" + "codePostal": "30210", + "codeCommune": "30235", + "libelleAcheminement": "ST BONNET DU GARD", + "nomCommune": "ST BONNET DU GARD" }, { - "codePostal": "62132", - "codeCommune": "62334", - "libelleAcheminement": "FIENNES", - "nomCommune": "FIENNES" + "codePostal": "30340", + "codeCommune": "30197", + "libelleAcheminement": "LES PLANS", + "nomCommune": "LES PLANS" }, { - "codePostal": "57100", - "codeCommune": "57672", - "libelleAcheminement": "THIONVILLE", - "nomCommune": "THIONVILLE" + "codePostal": "19430", + "codeCommune": "19086", + "libelleAcheminement": "GOULLES", + "nomCommune": "GOULLES" }, { - "codePostal": "24430", - "codeCommune": "24350", - "libelleAcheminement": "RAZAC SUR L ISLE", - "nomCommune": "RAZAC SUR L ISLE" + "codePostal": "21350", + "codeCommune": "21377", + "libelleAcheminement": "MARCELLOIS", + "nomCommune": "MARCELLOIS" }, { - "codePostal": "25360", - "codeCommune": "25355", - "libelleAcheminement": "MAGNY CHATELARD", - "nomCommune": "MAGNY CHATELARD" + "codePostal": "30460", + "codeCommune": "30236", + "libelleAcheminement": "ST BONNET DE SALENDRINQUE", + "nomCommune": "ST BONNET DE SALENDRINQUE" }, { - "codePostal": "62111", - "codeCommune": "62341", - "libelleAcheminement": "FONCQUEVILLERS", - "nomCommune": "FONCQUEVILLERS" + "codePostal": "30450", + "codeCommune": "30201", + "libelleAcheminement": "PONTEILS ET BRESIS", + "nomCommune": "PONTEILS ET BRESIS" }, { - "codePostal": "57380", - "codeCommune": "57673", - "libelleAcheminement": "THONVILLE", - "nomCommune": "THONVILLE" + "codePostal": "19170", + "codeCommune": "19087", + "libelleAcheminement": "GOURDON MURAT", + "nomCommune": "GOURDON MURAT" }, { - "codePostal": "24490", - "codeCommune": "24354", - "libelleAcheminement": "LA ROCHE CHALAIS", - "nomCommune": "LA ROCHE CHALAIS" + "codePostal": "21200", + "codeCommune": "21387", + "libelleAcheminement": "MARIGNY LES REULLEE", + "nomCommune": "MARIGNY LES REULLEE" }, { - "codePostal": "25120", - "codeCommune": "25356", - "libelleAcheminement": "MAICHE", - "nomCommune": "MAICHE" + "codePostal": "30360", + "codeCommune": "30240", + "libelleAcheminement": "ST CESAIRE DE GAUZIGNAN", + "nomCommune": "ST CESAIRE DE GAUZIGNAN" }, { - "codePostal": "62390", - "codeCommune": "62345", - "libelleAcheminement": "FONTAINE L ETALON", - "nomCommune": "FONTAINE L ETALON" + "codePostal": "30210", + "codeCommune": "30207", + "libelleAcheminement": "POUZILHAC", + "nomCommune": "POUZILHAC" }, { - "codePostal": "57300", - "codeCommune": "57677", - "libelleAcheminement": "TREMERY", - "nomCommune": "TREMERY" + "codePostal": "19320", + "codeCommune": "19089", + "libelleAcheminement": "GROS CHASTANG", + "nomCommune": "GROS CHASTANG" }, { - "codePostal": "24490", - "codeCommune": "24354", - "libelleAcheminement": "LA ROCHE CHALAIS", - "nomCommune": "LA ROCHE CHALAIS" + "codePostal": "21190", + "codeCommune": "21397", + "libelleAcheminement": "MAVILLY MANDELOT", + "nomCommune": "MAVILLY MANDELOT" }, { - "codePostal": "25650", - "codeCommune": "25357", - "libelleAcheminement": "MAISONS DU BOIS LIEVREMONT", - "nomCommune": "MAISONS DU BOIS LIEVREMONT" + "codePostal": "30380", + "codeCommune": "30243", + "libelleAcheminement": "ST CHRISTOL LEZ ALES", + "nomCommune": "ST CHRISTOL LEZ ALES" }, { - "codePostal": "62270", - "codeCommune": "62346", - "libelleAcheminement": "FORTEL EN ARTOIS", - "nomCommune": "FORTEL EN ARTOIS" + "codePostal": "30610", + "codeCommune": "30208", + "libelleAcheminement": "PUECHREDON", + "nomCommune": "PUECHREDON" }, { - "codePostal": "57385", - "codeCommune": "57679", - "libelleAcheminement": "TRITTELING REDLACH", - "nomCommune": "TRITTELING REDLACH" + "codePostal": "19600", + "codeCommune": "19107", + "libelleAcheminement": "LARCHE", + "nomCommune": "LARCHE" }, { - "codePostal": "24580", - "codeCommune": "24356", - "libelleAcheminement": "ROUFFIGNAC ST CERNIN DE REILHAC", - "nomCommune": "ROUFFIGNAC ST CERNIN DE REILHAC" + "codePostal": "21190", + "codeCommune": "21405", + "libelleAcheminement": "MERCEUIL", + "nomCommune": "MERCEUIL" }, { - "codePostal": "25330", - "codeCommune": "25359", - "libelleAcheminement": "MALANS", - "nomCommune": "MALANS" + "codePostal": "30260", + "codeCommune": "30244", + "libelleAcheminement": "ST CLEMENT", + "nomCommune": "ST CLEMENT" }, { - "codePostal": "62490", - "codeCommune": "62355", - "libelleAcheminement": "FRESNES LES MONTAUBAN", - "nomCommune": "FRESNES LES MONTAUBAN" + "codePostal": "30720", + "codeCommune": "30214", + "libelleAcheminement": "RIBAUTE LES TAVERNES", + "nomCommune": "RIBAUTE LES TAVERNES" }, { - "codePostal": "57870", - "codeCommune": "57680", - "libelleAcheminement": "TROISFONTAINES", - "nomCommune": "TROISFONTAINES" + "codePostal": "19160", + "codeCommune": "19110", + "libelleAcheminement": "LATRONCHE", + "nomCommune": "LATRONCHE" }, { - "codePostal": "24500", - "codeCommune": "24359", - "libelleAcheminement": "SADILLAC", - "nomCommune": "SADILLAC" + "codePostal": "21140", + "codeCommune": "21413", + "libelleAcheminement": "MILLERY", + "nomCommune": "MILLERY" }, { - "codePostal": "25620", - "codeCommune": "25360", - "libelleAcheminement": "MALBRANS", - "nomCommune": "MALBRANS" + "codePostal": "30870", + "codeCommune": "30245", + "libelleAcheminement": "ST COME ET MARUEJOLS", + "nomCommune": "ST COME ET MARUEJOLS" }, { - "codePostal": "62310", - "codeCommune": "62364", - "libelleAcheminement": "FRUGES", - "nomCommune": "FRUGES" + "codePostal": "30190", + "codeCommune": "30224", + "libelleAcheminement": "LA ROUVIERE", + "nomCommune": "LA ROUVIERE" }, { - "codePostal": "57320", - "codeCommune": "57681", - "libelleAcheminement": "TROMBORN", - "nomCommune": "TROMBORN" + "codePostal": "19500", + "codeCommune": "19115", + "libelleAcheminement": "LIGNEYRAC", + "nomCommune": "LIGNEYRAC" }, { - "codePostal": "24290", - "codeCommune": "24364", - "libelleAcheminement": "COLY ST AMAND", - "nomCommune": "COLY ST AMAND" + "codePostal": "21510", + "codeCommune": "21418", + "libelleAcheminement": "MOITRON", + "nomCommune": "MOITRON" }, { - "codePostal": "25620", - "codeCommune": "25364", - "libelleAcheminement": "MAMIROLLE", - "nomCommune": "MAMIROLLE" + "codePostal": "30500", + "codeCommune": "30247", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "62123", - "codeCommune": "62378", - "libelleAcheminement": "GOUVES", - "nomCommune": "GOUVES" + "codePostal": "30130", + "codeCommune": "30226", + "libelleAcheminement": "ST ALEXANDRE", + "nomCommune": "ST ALEXANDRE" }, { - "codePostal": "57730", - "codeCommune": "57690", - "libelleAcheminement": "VALMONT", - "nomCommune": "VALMONT" + "codePostal": "19470", + "codeCommune": "19118", + "libelleAcheminement": "LE LONZAC", + "nomCommune": "LE LONZAC" }, { - "codePostal": "24230", - "codeCommune": "24370", - "libelleAcheminement": "ST ANTOINE DE BREUILH", - "nomCommune": "ST ANTOINE DE BREUILH" + "codePostal": "21200", + "codeCommune": "21423", + "libelleAcheminement": "MONTAGNY LES BEAUNE", + "nomCommune": "MONTAGNY LES BEAUNE" }, { - "codePostal": "25350", - "codeCommune": "25367", - "libelleAcheminement": "MANDEURE", - "nomCommune": "MANDEURE" + "codePostal": "30190", + "codeCommune": "30248", + "libelleAcheminement": "ST DEZERY", + "nomCommune": "ST DEZERY" }, { - "codePostal": "62870", - "codeCommune": "62382", - "libelleAcheminement": "GOUY ST ANDRE", - "nomCommune": "GOUY ST ANDRE" + "codePostal": "30500", + "codeCommune": "30227", + "libelleAcheminement": "ST AMBROIX", + "nomCommune": "ST AMBROIX" }, { - "codePostal": "57220", - "codeCommune": "57695", - "libelleAcheminement": "VARIZE VAUDONCOURT", - "nomCommune": "VARIZE VAUDONCOURT" + "codePostal": "19520", + "codeCommune": "19124", + "libelleAcheminement": "MANSAC", + "nomCommune": "MANSAC" }, { - "codePostal": "24540", - "codeCommune": "24378", - "libelleAcheminement": "ST AVIT RIVIERE", - "nomCommune": "ST AVIT RIVIERE" + "codePostal": "21610", + "codeCommune": "21433", + "libelleAcheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", + "nomCommune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE" }, { - "codePostal": "25170", - "codeCommune": "25371", - "libelleAcheminement": "MAZEROLLES LE SALIN", - "nomCommune": "MAZEROLLES LE SALIN" + "codePostal": "30980", + "codeCommune": "30249", + "libelleAcheminement": "ST DIONISY", + "nomCommune": "ST DIONISY" }, { - "codePostal": "62147", - "codeCommune": "62384", - "libelleAcheminement": "GRAINCOURT LES HAVRINCOURT", - "nomCommune": "GRAINCOURT LES HAVRINCOURT" + "codePostal": "30460", + "codeCommune": "30246", + "libelleAcheminement": "STE CROIX DE CADERLE", + "nomCommune": "STE CROIX DE CADERLE" }, { - "codePostal": "57170", - "codeCommune": "57702", - "libelleAcheminement": "VAXY", - "nomCommune": "VAXY" + "codePostal": "19500", + "codeCommune": "19126", + "libelleAcheminement": "MARCILLAC LA CROZE", + "nomCommune": "MARCILLAC LA CROZE" }, { - "codePostal": "24700", - "codeCommune": "24380", - "libelleAcheminement": "ST BARTHELEMY DE BELLEGARDE", - "nomCommune": "ST BARTHELEMY DE BELLEGARDE" + "codePostal": "21610", + "codeCommune": "21433", + "libelleAcheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", + "nomCommune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE" }, { - "codePostal": "25660", - "codeCommune": "25375", - "libelleAcheminement": "MEREY SOUS MONTROND", - "nomCommune": "MEREY SOUS MONTROND" + "codePostal": "30960", + "codeCommune": "30253", + "libelleAcheminement": "ST FLORENT SUR AUZONNET", + "nomCommune": "ST FLORENT SUR AUZONNET" }, { - "codePostal": "62160", - "codeCommune": "62386", - "libelleAcheminement": "GRENAY", - "nomCommune": "GRENAY" + "codePostal": "30190", + "codeCommune": "30255", + "libelleAcheminement": "ST GENIES DE MALGOIRES", + "nomCommune": "ST GENIES DE MALGOIRES" }, { - "codePostal": "57920", - "codeCommune": "57704", - "libelleAcheminement": "VECKRING", - "nomCommune": "VECKRING" + "codePostal": "19340", + "codeCommune": "19134", + "libelleAcheminement": "MERLINES", + "nomCommune": "MERLINES" }, { - "codePostal": "24440", - "codeCommune": "24393", - "libelleAcheminement": "STE CROIX", - "nomCommune": "STE CROIX" + "codePostal": "21210", + "codeCommune": "21434", + "libelleAcheminement": "MONTLAY EN AUXOIS", + "nomCommune": "MONTLAY EN AUXOIS" }, { - "codePostal": "25440", - "codeCommune": "25379", - "libelleAcheminement": "MESMAY", - "nomCommune": "MESMAY" + "codePostal": "30700", + "codeCommune": "30262", + "libelleAcheminement": "ST HIPPOLYTE DE MONTAIGU", + "nomCommune": "ST HIPPOLYTE DE MONTAIGU" }, { - "codePostal": "62118", - "codeCommune": "62405", - "libelleAcheminement": "HAMBLAIN LES PRES", - "nomCommune": "HAMBLAIN LES PRES" + "codePostal": "30430", + "codeCommune": "30266", + "libelleAcheminement": "ST JEAN DE MARUEJOLS ET AVEJAN", + "nomCommune": "ST JEAN DE MARUEJOLS ET AVEJAN" }, { - "codePostal": "57635", - "codeCommune": "57713", - "libelleAcheminement": "VIEUX LIXHEIM", - "nomCommune": "VIEUX LIXHEIM" + "codePostal": "19500", + "codeCommune": "19138", + "libelleAcheminement": "MEYSSAC", + "nomCommune": "MEYSSAC" }, { - "codePostal": "24340", - "codeCommune": "24394", - "libelleAcheminement": "STE CROIX DE MAREUIL", - "nomCommune": "STE CROIX DE MAREUIL" + "codePostal": "21540", + "codeCommune": "21439", + "libelleAcheminement": "MONTOILLOT", + "nomCommune": "MONTOILLOT" }, { - "codePostal": "25120", - "codeCommune": "25392", - "libelleAcheminement": "MONT DE VOUGNEY", - "nomCommune": "MONT DE VOUGNEY" + "codePostal": "30610", + "codeCommune": "30265", + "libelleAcheminement": "ST JEAN DE CRIEULON", + "nomCommune": "ST JEAN DE CRIEULON" }, { - "codePostal": "62121", - "codeCommune": "62406", - "libelleAcheminement": "HAMELINCOURT", - "nomCommune": "HAMELINCOURT" + "codePostal": "30350", + "codeCommune": "30267", + "libelleAcheminement": "ST JEAN DE SERRES", + "nomCommune": "ST JEAN DE SERRES" }, { - "codePostal": "57640", - "codeCommune": "57716", - "libelleAcheminement": "VIGY", - "nomCommune": "VIGY" + "codePostal": "19300", + "codeCommune": "19143", + "libelleAcheminement": "MONTAIGNAC SUR DOUSTRE", + "nomCommune": "MONTAIGNAC SUR DOUSTRE" }, { - "codePostal": "24360", - "codeCommune": "24398", - "libelleAcheminement": "ST ESTEPHE", - "nomCommune": "ST ESTEPHE" + "codePostal": "21320", + "codeCommune": "21441", + "libelleAcheminement": "MONT ST JEAN", + "nomCommune": "MONT ST JEAN" }, { - "codePostal": "25260", - "codeCommune": "25394", - "libelleAcheminement": "MONTENOIS", - "nomCommune": "MONTENOIS" + "codePostal": "30270", + "codeCommune": "30269", + "libelleAcheminement": "ST JEAN DU GARD", + "nomCommune": "ST JEAN DU GARD" }, { - "codePostal": "62340", - "codeCommune": "62408", - "libelleAcheminement": "HAMES BOUCRES", - "nomCommune": "HAMES BOUCRES" + "codePostal": "30760", + "codeCommune": "30273", + "libelleAcheminement": "ST JULIEN DE PEYROLAS", + "nomCommune": "ST JULIEN DE PEYROLAS" }, { - "codePostal": "57340", - "codeCommune": "57717", - "libelleAcheminement": "VILLER", - "nomCommune": "VILLER" + "codePostal": "19300", + "codeCommune": "19143", + "libelleAcheminement": "MONTAIGNAC SUR DOUSTRE", + "nomCommune": "MONTAIGNAC SUR DOUSTRE" }, { - "codePostal": "24260", - "codeCommune": "24404", - "libelleAcheminement": "ST FELIX DE REILLAC ET MORTEMART", - "nomCommune": "ST FELIX DE REILLAC ET MORTEMART" + "codePostal": "21500", + "codeCommune": "21446", + "libelleAcheminement": "MOUTIERS ST JEAN", + "nomCommune": "MOUTIERS ST JEAN" }, { - "codePostal": "25320", - "codeCommune": "25397", - "libelleAcheminement": "MONTFERRAND LE CHATEAU", - "nomCommune": "MONTFERRAND LE CHATEAU" + "codePostal": "30500", + "codeCommune": "30271", + "libelleAcheminement": "ST JULIEN DE CASSAGNAS", + "nomCommune": "ST JULIEN DE CASSAGNAS" }, { - "codePostal": "62144", - "codeCommune": "62415", - "libelleAcheminement": "HAUTE AVESNES", - "nomCommune": "HAUTE AVESNES" + "codePostal": "30440", + "codeCommune": "30280", + "libelleAcheminement": "ST LAURENT LE MINIER", + "nomCommune": "ST LAURENT LE MINIER" }, { - "codePostal": "57580", - "codeCommune": "57728", - "libelleAcheminement": "VOIMHAUT", - "nomCommune": "VOIMHAUT" + "codePostal": "19300", + "codeCommune": "19145", + "libelleAcheminement": "MOUSTIER VENTADOUR", + "nomCommune": "MOUSTIER VENTADOUR" }, { - "codePostal": "24510", - "codeCommune": "24407", - "libelleAcheminement": "STE FOY DE LONGAS", - "nomCommune": "STE FOY DE LONGAS" + "codePostal": "21800", + "codeCommune": "21452", + "libelleAcheminement": "NEUILLY CRIMOLOIS", + "nomCommune": "NEUILLY CRIMOLOIS" }, { - "codePostal": "25111", - "codeCommune": "25400", - "libelleAcheminement": "MONTGESOYE", - "nomCommune": "MONTGESOYE" + "codePostal": "30340", + "codeCommune": "30274", + "libelleAcheminement": "ST JULIEN LES ROSIERS", + "nomCommune": "ST JULIEN LES ROSIERS" }, { - "codePostal": "62130", - "codeCommune": "62416", - "libelleAcheminement": "HAUTECLOQUE", - "nomCommune": "HAUTECLOQUE" + "codePostal": "30700", + "codeCommune": "30286", + "libelleAcheminement": "ST MAXIMIN", + "nomCommune": "ST MAXIMIN" }, { - "codePostal": "57940", - "codeCommune": "57733", - "libelleAcheminement": "VOLSTROFF", - "nomCommune": "VOLSTROFF" + "codePostal": "19380", + "codeCommune": "19149", + "libelleAcheminement": "NEUVILLE", + "nomCommune": "NEUVILLE" }, { - "codePostal": "24400", - "codeCommune": "24409", - "libelleAcheminement": "ST FRONT DE PRADOUX", - "nomCommune": "ST FRONT DE PRADOUX" + "codePostal": "21400", + "codeCommune": "21455", + "libelleAcheminement": "NOD SUR SEINE", + "nomCommune": "NOD SUR SEINE" }, { - "codePostal": "25240", - "codeCommune": "25413", - "libelleAcheminement": "MOUTHE", - "nomCommune": "MOUTHE" + "codePostal": "30220", + "codeCommune": "30276", + "libelleAcheminement": "ST LAURENT D AIGOUZE", + "nomCommune": "ST LAURENT D AIGOUZE" }, { - "codePostal": "62810", - "codeCommune": "62418", - "libelleAcheminement": "HAUTEVILLE", - "nomCommune": "HAUTEVILLE" + "codePostal": "30480", + "codeCommune": "30291", + "libelleAcheminement": "ST PAUL LA COSTE", + "nomCommune": "ST PAUL LA COSTE" }, { - "codePostal": "57320", - "codeCommune": "57739", - "libelleAcheminement": "WALDWEISTROFF", - "nomCommune": "WALDWEISTROFF" + "codePostal": "19150", + "codeCommune": "19158", + "libelleAcheminement": "PANDRIGNES", + "nomCommune": "PANDRIGNES" }, { - "codePostal": "24130", - "codeCommune": "24413", - "libelleAcheminement": "ST GEORGES BLANCANEIX", - "nomCommune": "ST GEORGES BLANCANEIX" + "codePostal": "21910", + "codeCommune": "21458", + "libelleAcheminement": "NOIRON SOUS GEVREY", + "nomCommune": "NOIRON SOUS GEVREY" }, { - "codePostal": "25440", - "codeCommune": "25416", - "libelleAcheminement": "MYON", - "nomCommune": "MYON" + "codePostal": "30200", + "codeCommune": "30277", + "libelleAcheminement": "ST LAURENT DE CARNOLS", + "nomCommune": "ST LAURENT DE CARNOLS" }, { - "codePostal": "62850", - "codeCommune": "62419", - "libelleAcheminement": "HAUT LOQUIN", - "nomCommune": "HAUT LOQUIN" + "codePostal": "30430", + "codeCommune": "30293", + "libelleAcheminement": "ST PRIVAT DE CHAMPCLOS", + "nomCommune": "ST PRIVAT DE CHAMPCLOS" }, { - "codePostal": "57200", - "codeCommune": "57745", - "libelleAcheminement": "WIESVILLER", - "nomCommune": "WIESVILLER" + "codePostal": "19310", + "codeCommune": "19161", + "libelleAcheminement": "PERPEZAC LE BLANC", + "nomCommune": "PERPEZAC LE BLANC" }, { - "codePostal": "24140", - "codeCommune": "24414", - "libelleAcheminement": "ST GEORGES DE MONTCLARD", - "nomCommune": "ST GEORGES DE MONTCLARD" + "codePostal": "21700", + "codeCommune": "21464", + "libelleAcheminement": "NUITS ST GEORGES", + "nomCommune": "NUITS ST GEORGES" }, { - "codePostal": "25580", - "codeCommune": "25424", - "libelleAcheminement": "LES PREMIERS SAPINS", - "nomCommune": "LES PREMIERS SAPINS" + "codePostal": "30700", + "codeCommune": "30295", + "libelleAcheminement": "ST QUENTIN LA POTERIE", + "nomCommune": "ST QUENTIN LA POTERIE" }, { - "codePostal": "62175", - "codeCommune": "62425", - "libelleAcheminement": "HENDECOURT LES RANSART", - "nomCommune": "HENDECOURT LES RANSART" + "codePostal": "30750", + "codeCommune": "30297", + "libelleAcheminement": "ST SAUVEUR CAMPRIEU", + "nomCommune": "ST SAUVEUR CAMPRIEU" }, { - "codePostal": "57200", - "codeCommune": "57750", - "libelleAcheminement": "WOELFLING LES SARREGUEMINES", - "nomCommune": "WOELFLING LES SARREGUEMINES" + "codePostal": "19190", + "codeCommune": "19163", + "libelleAcheminement": "LE PESCHER", + "nomCommune": "LE PESCHER" }, { - "codePostal": "24160", - "codeCommune": "24417", - "libelleAcheminement": "ST GERMAIN DES PRES", - "nomCommune": "ST GERMAIN DES PRES" + "codePostal": "21490", + "codeCommune": "21469", + "libelleAcheminement": "ORGEUX", + "nomCommune": "ORGEUX" }, { - "codePostal": "25530", - "codeCommune": "25441", - "libelleAcheminement": "OUVANS", - "nomCommune": "OUVANS" + "codePostal": "30440", + "codeCommune": "30296", + "libelleAcheminement": "ST ROMAN DE CODIERES", + "nomCommune": "ST ROMAN DE CODIERES" }, { - "codePostal": "62110", - "codeCommune": "62427", - "libelleAcheminement": "HENIN BEAUMONT", - "nomCommune": "HENIN BEAUMONT" + "codePostal": "30700", + "codeCommune": "30301", + "libelleAcheminement": "ST VICTOR DES OULES", + "nomCommune": "ST VICTOR DES OULES" }, { - "codePostal": "57140", - "codeCommune": "57751", - "libelleAcheminement": "WOIPPY", - "nomCommune": "WOIPPY" + "codePostal": "19120", + "codeCommune": "19169", + "libelleAcheminement": "PUY D ARNAC", + "nomCommune": "PUY D ARNAC" }, { - "codePostal": "24500", - "codeCommune": "24423", - "libelleAcheminement": "ST JULIEN INNOCENCE EULALIE", - "nomCommune": "ST JULIEN INNOCENCE EULALIE" + "codePostal": "21450", + "codeCommune": "21471", + "libelleAcheminement": "ORRET", + "nomCommune": "ORRET" }, { - "codePostal": "25440", - "codeCommune": "25450", - "libelleAcheminement": "PESSANS", - "nomCommune": "PESSANS" + "codePostal": "30340", + "codeCommune": "30305", + "libelleAcheminement": "SALINDRES", + "nomCommune": "SALINDRES" }, { - "codePostal": "62128", - "codeCommune": "62428", - "libelleAcheminement": "HENIN SUR COJEUL", - "nomCommune": "HENIN SUR COJEUL" + "codePostal": "30110", + "codeCommune": "30307", + "libelleAcheminement": "LES SALLES DU GARDON", + "nomCommune": "LES SALLES DU GARDON" }, { - "codePostal": "57590", - "codeCommune": "57755", - "libelleAcheminement": "XOCOURT", - "nomCommune": "XOCOURT" + "codePostal": "19220", + "codeCommune": "19173", + "libelleAcheminement": "RILHAC XAINTRIE", + "nomCommune": "RILHAC XAINTRIE" }, { - "codePostal": "24540", - "codeCommune": "24446", - "libelleAcheminement": "ST MARCORY", - "nomCommune": "ST MARCORY" + "codePostal": "21260", + "codeCommune": "21472", + "libelleAcheminement": "ORVILLE", + "nomCommune": "ORVILLE" }, { - "codePostal": "25470", - "codeCommune": "25458", - "libelleAcheminement": "LES PLAINS ET GRANDS ESSARTS", - "nomCommune": "LES PLAINS ET GRANDS ESSARTS" + "codePostal": "30250", + "codeCommune": "30306", + "libelleAcheminement": "SALINELLES", + "nomCommune": "SALINELLES" }, { - "codePostal": "62130", - "codeCommune": "62433", - "libelleAcheminement": "HERICOURT", - "nomCommune": "HERICOURT" + "codePostal": "30150", + "codeCommune": "30312", + "libelleAcheminement": "SAUVETERRE", + "nomCommune": "SAUVETERRE" }, { - "codePostal": "57340", - "codeCommune": "57759", - "libelleAcheminement": "ZARBELING", - "nomCommune": "ZARBELING" + "codePostal": "19270", + "codeCommune": "19178", + "libelleAcheminement": "SADROC", + "nomCommune": "SADROC" }, { - "codePostal": "24700", - "codeCommune": "24449", - "libelleAcheminement": "ST MARTIAL D ARTENSET", - "nomCommune": "ST MARTIAL D ARTENSET" + "codePostal": "21370", + "codeCommune": "21478", + "libelleAcheminement": "PASQUES", + "nomCommune": "PASQUES" }, { - "codePostal": "25340", - "codeCommune": "25461", - "libelleAcheminement": "POMPIERRE SUR DOUBS", - "nomCommune": "POMPIERRE SUR DOUBS" + "codePostal": "30350", + "codeCommune": "30314", + "libelleAcheminement": "SAVIGNARGUES", + "nomCommune": "SAVIGNARGUES" }, { - "codePostal": "62530", - "codeCommune": "62443", - "libelleAcheminement": "HERSIN COUPIGNY", - "nomCommune": "HERSIN COUPIGNY" + "codePostal": "30650", + "codeCommune": "30315", + "libelleAcheminement": "SAZE", + "nomCommune": "SAZE" }, { - "codePostal": "58200", - "codeCommune": "58002", - "libelleAcheminement": "ALLIGNY COSNE", - "nomCommune": "ALLIGNY COSNE" + "codePostal": "19200", + "codeCommune": "19180", + "libelleAcheminement": "ST ANGEL", + "nomCommune": "ST ANGEL" }, { - "codePostal": "24300", - "codeCommune": "24458", - "libelleAcheminement": "ST MARTIN LE PIN", - "nomCommune": "ST MARTIN LE PIN" + "codePostal": "21120", + "codeCommune": "21491", + "libelleAcheminement": "POISEUL LES SAULX", + "nomCommune": "POISEUL LES SAULX" }, { - "codePostal": "25380", - "codeCommune": "25471", - "libelleAcheminement": "PROVENCHERE", - "nomCommune": "PROVENCHERE" + "codePostal": "30210", + "codeCommune": "30317", + "libelleAcheminement": "SERNHAC", + "nomCommune": "SERNHAC" }, { - "codePostal": "62360", - "codeCommune": "62448", - "libelleAcheminement": "HESDIN L ABBE", - "nomCommune": "HESDIN L ABBE" + "codePostal": "30580", + "codeCommune": "30320", + "libelleAcheminement": "SEYNES", + "nomCommune": "SEYNES" }, { - "codePostal": "58310", - "codeCommune": "58012", - "libelleAcheminement": "ARQUIAN", - "nomCommune": "ARQUIAN" + "codePostal": "19130", + "codeCommune": "19182", + "libelleAcheminement": "ST AULAIRE", + "nomCommune": "ST AULAIRE" }, { - "codePostal": "24610", - "codeCommune": "24461", - "libelleAcheminement": "ST MEARD DE GURCON", - "nomCommune": "ST MEARD DE GURCON" + "codePostal": "21270", + "codeCommune": "21496", + "libelleAcheminement": "PONTAILLER SUR SAONE", + "nomCommune": "PONTAILLER SUR SAONE" }, { - "codePostal": "25150", - "codeCommune": "25485", - "libelleAcheminement": "REMONDANS VAIVRE", - "nomCommune": "REMONDANS VAIVRE" + "codePostal": "30250", + "codeCommune": "30321", + "libelleAcheminement": "SOMMIERES", + "nomCommune": "SOMMIERES" }, { - "codePostal": "62550", - "codeCommune": "62450", - "libelleAcheminement": "HESTRUS", - "nomCommune": "HESTRUS" + "codePostal": "30440", + "codeCommune": "30325", + "libelleAcheminement": "SUMENE", + "nomCommune": "SUMENE" }, { - "codePostal": "58110", - "codeCommune": "58024", - "libelleAcheminement": "BAZOLLES", - "nomCommune": "BAZOLLES" + "codePostal": "19130", + "codeCommune": "19187", + "libelleAcheminement": "ST BONNET LA RIVIERE", + "nomCommune": "ST BONNET LA RIVIERE" }, { - "codePostal": "24160", - "codeCommune": "24463", - "libelleAcheminement": "ST MEDARD D EXCIDEUIL", - "nomCommune": "ST MEDARD D EXCIDEUIL" + "codePostal": "21140", + "codeCommune": "21497", + "libelleAcheminement": "PONT ET MASSENE", + "nomCommune": "PONT ET MASSENE" }, { - "codePostal": "25440", - "codeCommune": "25488", - "libelleAcheminement": "RENNES SUR LOUE", - "nomCommune": "RENNES SUR LOUE" + "codePostal": "30330", + "codeCommune": "30331", + "libelleAcheminement": "TRESQUES", + "nomCommune": "TRESQUES" }, { - "codePostal": "62158", - "codeCommune": "62465", - "libelleAcheminement": "HUMBERCAMPS", - "nomCommune": "HUMBERCAMPS" + "codePostal": "30390", + "codeCommune": "30328", + "libelleAcheminement": "THEZIERS", + "nomCommune": "THEZIERS" }, { - "codePostal": "58270", - "codeCommune": "58028", - "libelleAcheminement": "BEAUMONT SARDOLLES", - "nomCommune": "BEAUMONT SARDOLLES" + "codePostal": "19200", + "codeCommune": "19190", + "libelleAcheminement": "ST BONNET PRES BORT", + "nomCommune": "ST BONNET PRES BORT" }, { - "codePostal": "24210", - "codeCommune": "24473", - "libelleAcheminement": "STE ORSE", - "nomCommune": "STE ORSE" + "codePostal": "21350", + "codeCommune": "21498", + "libelleAcheminement": "POSANGES", + "nomCommune": "POSANGES" }, { - "codePostal": "25560", - "codeCommune": "25493", - "libelleAcheminement": "LA RIVIERE DRUGEON", - "nomCommune": "LA RIVIERE DRUGEON" + "codePostal": "30700", + "codeCommune": "30334", + "libelleAcheminement": "UZES", + "nomCommune": "UZES" }, { - "codePostal": "62300", - "codeCommune": "62498", - "libelleAcheminement": "LENS", - "nomCommune": "LENS" + "codePostal": "30750", + "codeCommune": "30332", + "libelleAcheminement": "TREVES", + "nomCommune": "TREVES" }, { - "codePostal": "58460", - "codeCommune": "58038", - "libelleAcheminement": "BREUGNON", - "nomCommune": "BREUGNON" + "codePostal": "19490", + "codeCommune": "19203", + "libelleAcheminement": "STE FORTUNADE", + "nomCommune": "STE FORTUNADE" }, { - "codePostal": "24170", - "codeCommune": "24478", - "libelleAcheminement": "ST PARDOUX ET VIELVIC", - "nomCommune": "ST PARDOUX ET VIELVIC" + "codePostal": "21150", + "codeCommune": "21500", + "libelleAcheminement": "POUILLENAY", + "nomCommune": "POUILLENAY" }, { - "codePostal": "25370", - "codeCommune": "25494", - "libelleAcheminement": "ROCHEJEAN", - "nomCommune": "ROCHEJEAN" + "codePostal": "30600", + "codeCommune": "30341", + "libelleAcheminement": "VAUVERT", + "nomCommune": "VAUVERT" }, { - "codePostal": "62800", - "codeCommune": "62510", - "libelleAcheminement": "LIEVIN", - "nomCommune": "LIEVIN" + "codePostal": "30460", + "codeCommune": "30335", + "libelleAcheminement": "VABRES", + "nomCommune": "VABRES" }, { - "codePostal": "58420", - "codeCommune": "58041", - "libelleAcheminement": "BRINON SUR BEUVRON", - "nomCommune": "BRINON SUR BEUVRON" + "codePostal": "19290", + "codeCommune": "19206", + "libelleAcheminement": "ST GERMAIN LAVOLPS", + "nomCommune": "ST GERMAIN LAVOLPS" }, { - "codePostal": "24330", - "codeCommune": "24484", - "libelleAcheminement": "ST PIERRE DE CHIGNAC", - "nomCommune": "ST PIERRE DE CHIGNAC" + "codePostal": "21320", + "codeCommune": "21501", + "libelleAcheminement": "POUILLY EN AUXOIS", + "nomCommune": "POUILLY EN AUXOIS" }, { - "codePostal": "25680", - "codeCommune": "25498", - "libelleAcheminement": "ROGNON", - "nomCommune": "ROGNON" + "codePostal": "30630", + "codeCommune": "30343", + "libelleAcheminement": "VERFEUIL", + "nomCommune": "VERFEUIL" }, { - "codePostal": "62450", - "codeCommune": "62515", - "libelleAcheminement": "LIGNY THILLOY", - "nomCommune": "LIGNY THILLOY" + "codePostal": "30300", + "codeCommune": "30336", + "libelleAcheminement": "VALLABREGUES", + "nomCommune": "VALLABREGUES" }, { - "codePostal": "58420", - "codeCommune": "58052", - "libelleAcheminement": "CHAMPALLEMENT", - "nomCommune": "CHAMPALLEMENT" + "codePostal": "19550", + "codeCommune": "19208", + "libelleAcheminement": "ST HILAIRE FOISSAC", + "nomCommune": "ST HILAIRE FOISSAC" }, { - "codePostal": "24170", - "codeCommune": "24488", - "libelleAcheminement": "ST POMPONT", - "nomCommune": "ST POMPONT" + "codePostal": "21390", + "codeCommune": "21505", + "libelleAcheminement": "PRECY SOUS THIL", + "nomCommune": "PRECY SOUS THIL" }, { - "codePostal": "25680", - "codeCommune": "25505", - "libelleAcheminement": "ROUGEMONT", - "nomCommune": "ROUGEMONT" + "codePostal": "30310", + "codeCommune": "30344", + "libelleAcheminement": "VERGEZE", + "nomCommune": "VERGEZE" }, { - "codePostal": "62130", - "codeCommune": "62539", - "libelleAcheminement": "MAISNIL", - "nomCommune": "MAISNIL" + "codePostal": "30600", + "codeCommune": "30341", + "libelleAcheminement": "VAUVERT", + "nomCommune": "VAUVERT" }, { - "codePostal": "58240", - "codeCommune": "58057", - "libelleAcheminement": "CHANTENAY ST IMBERT", - "nomCommune": "CHANTENAY ST IMBERT" + "codePostal": "19560", + "codeCommune": "19211", + "libelleAcheminement": "ST HILAIRE PEYROUX", + "nomCommune": "ST HILAIRE PEYROUX" }, { - "codePostal": "24450", - "codeCommune": "24489", - "libelleAcheminement": "ST PRIEST LES FOUGERES", - "nomCommune": "ST PRIEST LES FOUGERES" + "codePostal": "21190", + "codeCommune": "21512", + "libelleAcheminement": "PULIGNY MONTRACHET", + "nomCommune": "PULIGNY MONTRACHET" }, { - "codePostal": "25360", - "codeCommune": "25520", - "libelleAcheminement": "ST JUAN", - "nomCommune": "ST JUAN" + "codePostal": "31440", + "codeCommune": "31015", + "libelleAcheminement": "ARGUT DESSOUS", + "nomCommune": "ARGUT DESSOUS" }, { - "codePostal": "62140", - "codeCommune": "62549", - "libelleAcheminement": "MARCONNE", - "nomCommune": "MARCONNE" + "codePostal": "30600", + "codeCommune": "30341", + "libelleAcheminement": "VAUVERT", + "nomCommune": "VAUVERT" }, { - "codePostal": "58300", - "codeCommune": "58060", - "libelleAcheminement": "CHARRIN", - "nomCommune": "CHARRIN" + "codePostal": "19700", + "codeCommune": "19213", + "libelleAcheminement": "ST JAL", + "nomCommune": "ST JAL" }, { - "codePostal": "24410", - "codeCommune": "24490", - "libelleAcheminement": "ST PRIVAT EN PERIGORD", - "nomCommune": "ST PRIVAT EN PERIGORD" + "codePostal": "21540", + "codeCommune": "21520", + "libelleAcheminement": "REMILLY EN MONTAGNE", + "nomCommune": "REMILLY EN MONTAGNE" }, { - "codePostal": "25430", - "codeCommune": "25529", - "libelleAcheminement": "SANCEY", - "nomCommune": "SANCEY" + "codePostal": "31460", + "codeCommune": "31026", + "libelleAcheminement": "AURIAC SUR VENDINELLE", + "nomCommune": "AURIAC SUR VENDINELLE" }, { - "codePostal": "62550", - "codeCommune": "62553", - "libelleAcheminement": "MAREST", - "nomCommune": "MAREST" + "codePostal": "30200", + "codeCommune": "30342", + "libelleAcheminement": "VENEJAN", + "nomCommune": "VENEJAN" }, { - "codePostal": "58110", - "codeCommune": "58065", - "libelleAcheminement": "CHATILLON EN BAZOIS", - "nomCommune": "CHATILLON EN BAZOIS" + "codePostal": "19170", + "codeCommune": "19226", + "libelleAcheminement": "ST MERD LES OUSSINES", + "nomCommune": "ST MERD LES OUSSINES" }, { - "codePostal": "24210", - "codeCommune": "24491", - "libelleAcheminement": "ST RABIER", - "nomCommune": "ST RABIER" + "codePostal": "21220", + "codeCommune": "21523", + "libelleAcheminement": "REULLE VERGY", + "nomCommune": "REULLE VERGY" }, { - "codePostal": "25510", - "codeCommune": "25550", - "libelleAcheminement": "LA SOMMETTE", - "nomCommune": "LA SOMMETTE" + "codePostal": "31130", + "codeCommune": "31044", + "libelleAcheminement": "BALMA", + "nomCommune": "BALMA" }, { - "codePostal": "62670", - "codeCommune": "62563", - "libelleAcheminement": "MAZINGARBE", - "nomCommune": "MAZINGARBE" + "codePostal": "30250", + "codeCommune": "30352", + "libelleAcheminement": "VILLEVIEILLE", + "nomCommune": "VILLEVIEILLE" }, { - "codePostal": "58120", - "codeCommune": "58068", - "libelleAcheminement": "CHAUMARD", - "nomCommune": "CHAUMARD" + "codePostal": "19600", + "codeCommune": "19229", + "libelleAcheminement": "ST PANTALEON DE LARCHE", + "nomCommune": "ST PANTALEON DE LARCHE" }, { - "codePostal": "24520", - "codeCommune": "24499", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "21570", + "codeCommune": "21524", + "libelleAcheminement": "RIEL LES EAUX", + "nomCommune": "RIEL LES EAUX" }, { - "codePostal": "25250", - "codeCommune": "25553", - "libelleAcheminement": "SOYE", - "nomCommune": "SOYE" + "codePostal": "31290", + "codeCommune": "31054", + "libelleAcheminement": "BEAUTEVILLE", + "nomCommune": "BEAUTEVILLE" }, { - "codePostal": "62120", - "codeCommune": "62564", - "libelleAcheminement": "MAZINGHEM", - "nomCommune": "MAZINGHEM" + "codePostal": "31230", + "codeCommune": "31001", + "libelleAcheminement": "AGASSAC", + "nomCommune": "AGASSAC" }, { - "codePostal": "58800", - "codeCommune": "58069", - "libelleAcheminement": "CHAUMOT", - "nomCommune": "CHAUMOT" + "codePostal": "19800", + "codeCommune": "19236", + "libelleAcheminement": "ST PRIEST DE GIMEL", + "nomCommune": "ST PRIEST DE GIMEL" }, { - "codePostal": "24190", - "codeCommune": "24502", - "libelleAcheminement": "ST SEVERIN D ESTISSAC", - "nomCommune": "ST SEVERIN D ESTISSAC" + "codePostal": "21530", + "codeCommune": "21525", + "libelleAcheminement": "LA ROCHE EN BRENIL", + "nomCommune": "LA ROCHE EN BRENIL" }, { - "codePostal": "25680", - "codeCommune": "25556", - "libelleAcheminement": "TALLANS", - "nomCommune": "TALLANS" + "codePostal": "31480", + "codeCommune": "31062", + "libelleAcheminement": "BELLESSERRE", + "nomCommune": "BELLESSERRE" }, { - "codePostal": "62217", - "codeCommune": "62568", - "libelleAcheminement": "MERCATEL", - "nomCommune": "MERCATEL" + "codePostal": "31550", + "codeCommune": "31002", + "libelleAcheminement": "AIGNES", + "nomCommune": "AIGNES" }, { - "codePostal": "58700", - "codeCommune": "58070", - "libelleAcheminement": "CHAZEUIL", - "nomCommune": "CHAZEUIL" + "codePostal": "19290", + "codeCommune": "19238", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "24800", - "codeCommune": "24505", - "libelleAcheminement": "ST SULPICE D EXCIDEUIL", - "nomCommune": "ST SULPICE D EXCIDEUIL" + "codePostal": "21350", + "codeCommune": "21537", + "libelleAcheminement": "SAFFRES", + "nomCommune": "SAFFRES" }, { - "codePostal": "25220", - "codeCommune": "25560", - "libelleAcheminement": "THISE", - "nomCommune": "THISE" + "codePostal": "31420", + "codeCommune": "31063", + "libelleAcheminement": "BENQUE", + "nomCommune": "BENQUE" }, { - "codePostal": "62270", - "codeCommune": "62577", - "libelleAcheminement": "MONCHEL SUR CANCHE", - "nomCommune": "MONCHEL SUR CANCHE" + "codePostal": "31420", + "codeCommune": "31005", + "libelleAcheminement": "ALAN", + "nomCommune": "ALAN" }, { - "codePostal": "58500", - "codeCommune": "58073", - "libelleAcheminement": "CHEVROCHES", - "nomCommune": "CHEVROCHES" + "codePostal": "19290", + "codeCommune": "19241", + "libelleAcheminement": "ST SETIERS", + "nomCommune": "ST SETIERS" }, { - "codePostal": "24160", - "codeCommune": "24507", - "libelleAcheminement": "STE TRIE", - "nomCommune": "STE TRIE" + "codePostal": "21510", + "codeCommune": "21549", + "libelleAcheminement": "ST GERMAIN LE ROCHEUX", + "nomCommune": "ST GERMAIN LE ROCHEUX" }, { - "codePostal": "25310", - "codeCommune": "25562", - "libelleAcheminement": "THULAY", - "nomCommune": "THULAY" + "codePostal": "31210", + "codeCommune": "31076", + "libelleAcheminement": "BORDES DE RIVIERE", + "nomCommune": "BORDES DE RIVIERE" }, { - "codePostal": "62118", - "codeCommune": "62582", - "libelleAcheminement": "MONCHY LE PREUX", - "nomCommune": "MONCHY LE PREUX" + "codePostal": "31160", + "codeCommune": "31014", + "libelleAcheminement": "ARGUENOS", + "nomCommune": "ARGUENOS" }, { - "codePostal": "58110", - "codeCommune": "58076", - "libelleAcheminement": "CHOUGNY", - "nomCommune": "CHOUGNY" + "codePostal": "19130", + "codeCommune": "19242", + "libelleAcheminement": "ST SOLVE", + "nomCommune": "ST SOLVE" }, { - "codePostal": "24350", - "codeCommune": "24508", - "libelleAcheminement": "ST VICTOR", - "nomCommune": "ST VICTOR" + "codePostal": "21230", + "codeCommune": "21566", + "libelleAcheminement": "ST PIERRE EN VAUX", + "nomCommune": "ST PIERRE EN VAUX" }, { - "codePostal": "25640", - "codeCommune": "25566", - "libelleAcheminement": "LA TOUR DE SCAY", - "nomCommune": "LA TOUR DE SCAY" + "codePostal": "31570", + "codeCommune": "31082", + "libelleAcheminement": "BOURG ST BERNARD", + "nomCommune": "BOURG ST BERNARD" }, { - "codePostal": "62130", - "codeCommune": "62590", - "libelleAcheminement": "MONTS EN TERNOIS", - "nomCommune": "MONTS EN TERNOIS" + "codePostal": "31190", + "codeCommune": "31024", + "libelleAcheminement": "AURAGNE", + "nomCommune": "AURAGNE" }, { - "codePostal": "58270", - "codeCommune": "58078", - "libelleAcheminement": "CIZELY", - "nomCommune": "CIZELY" + "codePostal": "19230", + "codeCommune": "19243", + "libelleAcheminement": "ST SORNIN LAVOLPS", + "nomCommune": "ST SORNIN LAVOLPS" }, { - "codePostal": "24200", - "codeCommune": "24512", - "libelleAcheminement": "ST VINCENT LE PALUEL", - "nomCommune": "ST VINCENT LE PALUEL" + "codePostal": "21500", + "codeCommune": "21568", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "25620", - "codeCommune": "25569", - "libelleAcheminement": "TREPOT", - "nomCommune": "TREPOT" + "codePostal": "31330", + "codeCommune": "31093", + "libelleAcheminement": "LE BURGAUD", + "nomCommune": "LE BURGAUD" }, { - "codePostal": "62550", - "codeCommune": "62601", - "libelleAcheminement": "NEDONCHEL", - "nomCommune": "NEDONCHEL" + "codePostal": "31320", + "codeCommune": "31025", + "libelleAcheminement": "AUREVILLE", + "nomCommune": "AUREVILLE" }, { - "codePostal": "58500", - "codeCommune": "58079", - "libelleAcheminement": "CLAMECY", - "nomCommune": "CLAMECY" + "codePostal": "19510", + "codeCommune": "19250", + "libelleAcheminement": "SALON LA TOUR", + "nomCommune": "SALON LA TOUR" }, { - "codePostal": "24160", - "codeCommune": "24515", - "libelleAcheminement": "SALAGNAC", - "nomCommune": "SALAGNAC" + "codePostal": "21320", + "codeCommune": "21570", + "libelleAcheminement": "STE SABINE", + "nomCommune": "STE SABINE" }, { - "codePostal": "25680", - "codeCommune": "25570", - "libelleAcheminement": "TRESSANDANS", - "nomCommune": "TRESSANDANS" + "codePostal": "31660", + "codeCommune": "31094", + "libelleAcheminement": "BUZET SUR TARN", + "nomCommune": "BUZET SUR TARN" }, { - "codePostal": "62217", - "codeCommune": "62611", - "libelleAcheminement": "NEUVILLE VITASSE", - "nomCommune": "NEUVILLE VITASSE" + "codePostal": "31190", + "codeCommune": "31027", + "libelleAcheminement": "AURIBAIL", + "nomCommune": "AURIBAIL" }, { - "codePostal": "58500", - "codeCommune": "58079", - "libelleAcheminement": "CLAMECY", - "nomCommune": "CLAMECY" + "codePostal": "19230", + "codeCommune": "19254", + "libelleAcheminement": "SEGUR LE CHATEAU", + "nomCommune": "SEGUR LE CHATEAU" }, { - "codePostal": "24160", - "codeCommune": "24515", - "libelleAcheminement": "SALAGNAC", - "nomCommune": "SALAGNAC" + "codePostal": "21130", + "codeCommune": "21572", + "libelleAcheminement": "ST SEINE EN BACHE", + "nomCommune": "ST SEINE EN BACHE" }, { - "codePostal": "25190", - "codeCommune": "25583", - "libelleAcheminement": "VALONNE", - "nomCommune": "VALONNE" + "codePostal": "31350", + "codeCommune": "31108", + "libelleAcheminement": "CARDEILHAC", + "nomCommune": "CARDEILHAC" }, { - "codePostal": "62580", - "codeCommune": "62612", - "libelleAcheminement": "NEUVIREUIL", - "nomCommune": "NEUVIREUIL" + "codePostal": "31570", + "codeCommune": "31029", + "libelleAcheminement": "AURIN", + "nomCommune": "AURIN" }, { - "codePostal": "58800", - "codeCommune": "58083", - "libelleAcheminement": "CORBIGNY", - "nomCommune": "CORBIGNY" + "codePostal": "19700", + "codeCommune": "19255", + "libelleAcheminement": "SEILHAC", + "nomCommune": "SEILHAC" }, { - "codePostal": "24500", - "codeCommune": "24532", - "libelleAcheminement": "SERRES ET MONTGUYARD", - "nomCommune": "SERRES ET MONTGUYARD" + "codePostal": "21170", + "codeCommune": "21581", + "libelleAcheminement": "SAMEREY", + "nomCommune": "SAMEREY" }, { - "codePostal": "25380", - "codeCommune": "25589", - "libelleAcheminement": "VAUCLUSOTTE", - "nomCommune": "VAUCLUSOTTE" + "codePostal": "31230", + "codeCommune": "31115", + "libelleAcheminement": "CASTELGAILLARD", + "nomCommune": "CASTELGAILLARD" }, { - "codePostal": "62390", - "codeCommune": "62616", - "libelleAcheminement": "NOEUX LES AUXI", - "nomCommune": "NOEUX LES AUXI" + "codePostal": "31190", + "codeCommune": "31033", + "libelleAcheminement": "AUTERIVE", + "nomCommune": "AUTERIVE" }, { - "codePostal": "58300", - "codeCommune": "58095", - "libelleAcheminement": "DECIZE", - "nomCommune": "DECIZE" + "codePostal": "19190", + "codeCommune": "19257", + "libelleAcheminement": "SERILHAC", + "nomCommune": "SERILHAC" }, { - "codePostal": "24600", - "codeCommune": "24537", - "libelleAcheminement": "SIORAC DE RIBERAC", - "nomCommune": "SIORAC DE RIBERAC" + "codePostal": "21910", + "codeCommune": "21586", + "libelleAcheminement": "SAULON LA RUE", + "nomCommune": "SAULON LA RUE" }, { - "codePostal": "25190", - "codeCommune": "25591", - "libelleAcheminement": "VAUFREY", - "nomCommune": "VAUFREY" + "codePostal": "31480", + "codeCommune": "31126", + "libelleAcheminement": "CAUBIAC", + "nomCommune": "CAUBIAC" }, { - "codePostal": "62120", - "codeCommune": "62620", - "libelleAcheminement": "NORRENT FONTES", - "nomCommune": "NORRENT FONTES" + "codePostal": "31320", + "codeCommune": "31035", + "libelleAcheminement": "AUZEVILLE TOLOSANE", + "nomCommune": "AUZEVILLE TOLOSANE" }, { - "codePostal": "58190", - "codeCommune": "58098", - "libelleAcheminement": "DIROL", - "nomCommune": "DIROL" + "codePostal": "19260", + "codeCommune": "19269", + "libelleAcheminement": "TREIGNAC", + "nomCommune": "TREIGNAC" }, { - "codePostal": "24390", - "codeCommune": "24546", - "libelleAcheminement": "TEMPLE LAGUYON", - "nomCommune": "TEMPLE LAGUYON" + "codePostal": "21120", + "codeCommune": "21587", + "libelleAcheminement": "SAULX LE DUC", + "nomCommune": "SAULX LE DUC" }, { - "codePostal": "25530", - "codeCommune": "25596", - "libelleAcheminement": "VELLEROT LES VERCEL", - "nomCommune": "VELLEROT LES VERCEL" + "codePostal": "31440", + "codeCommune": "31132", + "libelleAcheminement": "CAZAUX LAYRISSE", + "nomCommune": "CAZAUX LAYRISSE" }, { - "codePostal": "62890", - "codeCommune": "62622", - "libelleAcheminement": "NORT LEULINGHEM", - "nomCommune": "NORT LEULINGHEM" + "codePostal": "31440", + "codeCommune": "31040", + "libelleAcheminement": "BACHOS", + "nomCommune": "BACHOS" }, { - "codePostal": "58800", - "codeCommune": "58110", - "libelleAcheminement": "EPIRY", - "nomCommune": "EPIRY" + "codePostal": "19200", + "codeCommune": "19275", + "libelleAcheminement": "USSEL", + "nomCommune": "USSEL" }, { - "codePostal": "24120", - "codeCommune": "24547", - "libelleAcheminement": "TERRASSON LAVILLEDIEU", - "nomCommune": "TERRASSON LAVILLEDIEU" + "codePostal": "21380", + "codeCommune": "21591", + "libelleAcheminement": "SAVIGNY LE SEC", + "nomCommune": "SAVIGNY LE SEC" }, { - "codePostal": "25640", - "codeCommune": "25599", - "libelleAcheminement": "VENNANS", - "nomCommune": "VENNANS" + "codePostal": "31510", + "codeCommune": "31143", + "libelleAcheminement": "CIER DE RIVIERE", + "nomCommune": "CIER DE RIVIERE" }, { - "codePostal": "62770", - "codeCommune": "62625", - "libelleAcheminement": "NOYELLES LES HUMIERES", - "nomCommune": "NOYELLES LES HUMIERES" + "codePostal": "31580", + "codeCommune": "31043", + "libelleAcheminement": "BALESTA", + "nomCommune": "BALESTA" }, { - "codePostal": "58160", - "codeCommune": "58112", - "libelleAcheminement": "LA FERMETE", - "nomCommune": "LA FERMETE" + "codePostal": "19800", + "codeCommune": "19287", + "libelleAcheminement": "VITRAC SUR MONTANE", + "nomCommune": "VITRAC SUR MONTANE" }, { - "codePostal": "24480", - "codeCommune": "24560", - "libelleAcheminement": "URVAL", - "nomCommune": "URVAL" + "codePostal": "21430", + "codeCommune": "21593", + "libelleAcheminement": "SAVILLY", + "nomCommune": "SAVILLY" }, { - "codePostal": "25530", - "codeCommune": "25601", - "libelleAcheminement": "VERCEL VILLEDIEU LE CAMP", - "nomCommune": "VERCEL VILLEDIEU LE CAMP" + "codePostal": "31440", + "codeCommune": "31144", + "libelleAcheminement": "CIERP GAUD", + "nomCommune": "CIERP GAUD" }, { - "codePostal": "62270", - "codeCommune": "62631", - "libelleAcheminement": "NUNCQ HAUTECOTE", - "nomCommune": "NUNCQ HAUTECOTE" + "codePostal": "31370", + "codeCommune": "31051", + "libelleAcheminement": "BEAUFORT", + "nomCommune": "BEAUFORT" }, { - "codePostal": "58240", - "codeCommune": "58115", - "libelleAcheminement": "FLEURY SUR LOIRE", - "nomCommune": "FLEURY SUR LOIRE" + "codePostal": "21410", + "codeCommune": "21002", + "libelleAcheminement": "AGEY", + "nomCommune": "AGEY" }, { - "codePostal": "24360", - "codeCommune": "24565", - "libelleAcheminement": "VARAIGNES", - "nomCommune": "VARAIGNES" + "codePostal": "21310", + "codeCommune": "21595", + "libelleAcheminement": "SAVOLLES", + "nomCommune": "SAVOLLES" }, { - "codePostal": "25110", - "codeCommune": "25602", - "libelleAcheminement": "VERGRANNE", - "nomCommune": "VERGRANNE" + "codePostal": "31210", + "codeCommune": "31147", + "libelleAcheminement": "CLARAC", + "nomCommune": "CLARAC" }, { - "codePostal": "62370", - "codeCommune": "62634", - "libelleAcheminement": "OFFEKERQUE", - "nomCommune": "OFFEKERQUE" + "codePostal": "31870", + "codeCommune": "31052", + "libelleAcheminement": "BEAUMONT SUR LEZE", + "nomCommune": "BEAUMONT SUR LEZE" }, { - "codePostal": "58320", - "codeCommune": "58124", - "libelleAcheminement": "GERMIGNY SUR LOIRE", - "nomCommune": "GERMIGNY SUR LOIRE" + "codePostal": "21110", + "codeCommune": "21005", + "libelleAcheminement": "AISEREY", + "nomCommune": "AISEREY" }, { - "codePostal": "24520", - "codeCommune": "24570", - "libelleAcheminement": "VERDON", - "nomCommune": "VERDON" + "codePostal": "21110", + "codeCommune": "21609", + "libelleAcheminement": "SOIRANS", + "nomCommune": "SOIRANS" }, { - "codePostal": "25110", - "codeCommune": "25604", - "libelleAcheminement": "VERNE", - "nomCommune": "VERNE" + "codePostal": "31450", + "codeCommune": "31151", + "libelleAcheminement": "CORRONSAC", + "nomCommune": "CORRONSAC" }, { - "codePostal": "62860", - "codeCommune": "62638", - "libelleAcheminement": "OISY LE VERGER", - "nomCommune": "OISY LE VERGER" + "codePostal": "31260", + "codeCommune": "31059", + "libelleAcheminement": "BELBEZE EN COMMINGES", + "nomCommune": "BELBEZE EN COMMINGES" }, { - "codePostal": "58700", - "codeCommune": "58127", - "libelleAcheminement": "GIRY", - "nomCommune": "GIRY" + "codePostal": "21400", + "codeCommune": "21006", + "libelleAcheminement": "AISEY SUR SEINE", + "nomCommune": "AISEY SUR SEINE" }, { - "codePostal": "24140", - "codeCommune": "24581", - "libelleAcheminement": "VILLAMBLARD", - "nomCommune": "VILLAMBLARD" + "codePostal": "21350", + "codeCommune": "21613", + "libelleAcheminement": "SOUSSEY SUR BRIONNE", + "nomCommune": "SOUSSEY SUR BRIONNE" }, { - "codePostal": "25580", - "codeCommune": "25605", - "libelleAcheminement": "VERNIERFONTAINE", - "nomCommune": "VERNIERFONTAINE" + "codePostal": "31480", + "codeCommune": "31156", + "libelleAcheminement": "COX", + "nomCommune": "COX" }, { - "codePostal": "62460", - "codeCommune": "62642", - "libelleAcheminement": "OURTON", - "nomCommune": "OURTON" + "codePostal": "31540", + "codeCommune": "31060", + "libelleAcheminement": "BELESTA EN LAURAGAIS", + "nomCommune": "BELESTA EN LAURAGAIS" }, { - "codePostal": "58420", - "codeCommune": "58132", - "libelleAcheminement": "GUIPY", - "nomCommune": "GUIPY" + "codePostal": "21390", + "codeCommune": "21007", + "libelleAcheminement": "AISY SOUS THIL", + "nomCommune": "AISY SOUS THIL" }, { - "codePostal": "24610", - "codeCommune": "24584", - "libelleAcheminement": "VILLEFRANCHE DE LONCHAT", - "nomCommune": "VILLEFRANCHE DE LONCHAT" + "codePostal": "21430", + "codeCommune": "21615", + "libelleAcheminement": "SUSSEY", + "nomCommune": "SUSSEY" }, { - "codePostal": "25430", - "codeCommune": "25607", - "libelleAcheminement": "VERNOIS LES BELVOIR", - "nomCommune": "VERNOIS LES BELVOIR" + "codePostal": "31210", + "codeCommune": "31159", + "libelleAcheminement": "LE CUING", + "nomCommune": "LE CUING" }, { - "codePostal": "62118", - "codeCommune": "62650", - "libelleAcheminement": "PELVES", - "nomCommune": "PELVES" + "codePostal": "31660", + "codeCommune": "31066", + "libelleAcheminement": "BESSIERES", + "nomCommune": "BESSIERES" }, { - "codePostal": "58160", - "codeCommune": "58134", - "libelleAcheminement": "IMPHY", - "nomCommune": "IMPHY" + "codePostal": "21150", + "codeCommune": "21008", + "libelleAcheminement": "ALISE STE REINE", + "nomCommune": "ALISE STE REINE" }, { - "codePostal": "24600", - "codeCommune": "24586", - "libelleAcheminement": "VILLETOUREIX", - "nomCommune": "VILLETOUREIX" + "codePostal": "21190", + "codeCommune": "21616", + "libelleAcheminement": "TAILLY", + "nomCommune": "TAILLY" }, { - "codePostal": "25870", - "codeCommune": "25612", - "libelleAcheminement": "VIEILLEY", - "nomCommune": "VIEILLEY" + "codePostal": "31450", + "codeCommune": "31161", + "libelleAcheminement": "DEYME", + "nomCommune": "DEYME" }, { - "codePostal": "62231", - "codeCommune": "62654", - "libelleAcheminement": "PEUPLINGUES", - "nomCommune": "PEUPLINGUES" + "codePostal": "31440", + "codeCommune": "31067", + "libelleAcheminement": "BEZINS GARRAUX", + "nomCommune": "BEZINS GARRAUX" }, { - "codePostal": "58290", - "codeCommune": "58135", - "libelleAcheminement": "ISENAY", - "nomCommune": "ISENAY" + "codePostal": "21400", + "codeCommune": "21012", + "libelleAcheminement": "AMPILLY LE SEC", + "nomCommune": "AMPILLY LE SEC" }, { - "codePostal": "25340", - "codeCommune": "25003", - "libelleAcheminement": "ABBENANS", - "nomCommune": "ABBENANS" + "codePostal": "21270", + "codeCommune": "21624", + "libelleAcheminement": "TELLECEY", + "nomCommune": "TELLECEY" }, { - "codePostal": "25600", - "codeCommune": "25614", - "libelleAcheminement": "VIEUX CHARMONT", - "nomCommune": "VIEUX CHARMONT" + "codePostal": "31450", + "codeCommune": "31162", + "libelleAcheminement": "DONNEVILLE", + "nomCommune": "DONNEVILLE" }, { - "codePostal": "62126", - "codeCommune": "62658", - "libelleAcheminement": "PITTEFAUX", - "nomCommune": "PITTEFAUX" + "codePostal": "31700", + "codeCommune": "31069", + "libelleAcheminement": "BLAGNAC", + "nomCommune": "BLAGNAC" }, { - "codePostal": "58250", - "codeCommune": "58139", - "libelleAcheminement": "LANTY", - "nomCommune": "LANTY" + "codePostal": "21410", + "codeCommune": "21013", + "libelleAcheminement": "ANCEY", + "nomCommune": "ANCEY" }, { - "codePostal": "25310", - "codeCommune": "25004", - "libelleAcheminement": "ABBEVILLERS", - "nomCommune": "ABBEVILLERS" + "codePostal": "21220", + "codeCommune": "21625", + "libelleAcheminement": "TERNANT", + "nomCommune": "TERNANT" }, { - "codePostal": "50250", - "codeCommune": "50236", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "31480", + "codeCommune": "31164", + "libelleAcheminement": "DRUDAS", + "nomCommune": "DRUDAS" }, { - "codePostal": "62760", - "codeCommune": "62663", - "libelleAcheminement": "POMMERA", - "nomCommune": "POMMERA" + "codePostal": "31350", + "codeCommune": "31070", + "libelleAcheminement": "BLAJAN", + "nomCommune": "BLAJAN" }, { - "codePostal": "58380", - "codeCommune": "58146", - "libelleAcheminement": "LUCENAY LES AIX", - "nomCommune": "LUCENAY LES AIX" + "codePostal": "21320", + "codeCommune": "21020", + "libelleAcheminement": "ARCONCEY", + "nomCommune": "ARCONCEY" }, { - "codePostal": "25550", - "codeCommune": "25013", - "libelleAcheminement": "ALLONDANS", - "nomCommune": "ALLONDANS" + "codePostal": "21570", + "codeCommune": "21628", + "libelleAcheminement": "THOIRES", + "nomCommune": "THOIRES" }, { - "codePostal": "50250", - "codeCommune": "50236", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "31600", + "codeCommune": "31165", + "libelleAcheminement": "EAUNES", + "nomCommune": "EAUNES" }, { - "codePostal": "62880", - "codeCommune": "62666", - "libelleAcheminement": "PONT A VENDIN", - "nomCommune": "PONT A VENDIN" + "codePostal": "31110", + "codeCommune": "31081", + "libelleAcheminement": "BOURG D OUEIL", + "nomCommune": "BOURG D OUEIL" }, { - "codePostal": "58800", - "codeCommune": "58153", - "libelleAcheminement": "MAGNY LORMES", - "nomCommune": "MAGNY LORMES" + "codePostal": "21130", + "codeCommune": "21028", + "libelleAcheminement": "ATHEE", + "nomCommune": "ATHEE" }, { - "codePostal": "25330", - "codeCommune": "25017", - "libelleAcheminement": "AMONDANS", - "nomCommune": "AMONDANS" + "codePostal": "21340", + "codeCommune": "21636", + "libelleAcheminement": "THURY", + "nomCommune": "THURY" }, { - "codePostal": "50250", - "codeCommune": "50236", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "31800", + "codeCommune": "31175", + "libelleAcheminement": "ESTANCARBON", + "nomCommune": "ESTANCARBON" }, { - "codePostal": "62860", - "codeCommune": "62671", - "libelleAcheminement": "PRONVILLE EN ARTOIS", - "nomCommune": "PRONVILLE EN ARTOIS" + "codePostal": "31470", + "codeCommune": "31087", + "libelleAcheminement": "BRAGAYRAC", + "nomCommune": "BRAGAYRAC" }, { - "codePostal": "58240", - "codeCommune": "58158", - "libelleAcheminement": "MARS SUR ALLIER", - "nomCommune": "MARS SUR ALLIER" + "codePostal": "21570", + "codeCommune": "21034", + "libelleAcheminement": "AUTRICOURT", + "nomCommune": "AUTRICOURT" }, { - "codePostal": "25340", - "codeCommune": "25018", - "libelleAcheminement": "ANTEUIL", - "nomCommune": "ANTEUIL" + "codePostal": "21130", + "codeCommune": "21639", + "libelleAcheminement": "TILLENAY", + "nomCommune": "TILLENAY" }, { - "codePostal": "50570", - "codeCommune": "50239", - "libelleAcheminement": "THEREVAL", - "nomCommune": "THEREVAL" + "codePostal": "31260", + "codeCommune": "31195", + "libelleAcheminement": "FRANCAZAL", + "nomCommune": "FRANCAZAL" }, { - "codePostal": "62116", - "codeCommune": "62672", - "libelleAcheminement": "PUISIEUX", - "nomCommune": "PUISIEUX" + "codePostal": "31530", + "codeCommune": "31089", + "libelleAcheminement": "BRETX", + "nomCommune": "BRETX" }, { - "codePostal": "58800", - "codeCommune": "58179", - "libelleAcheminement": "MONTREUILLON", - "nomCommune": "MONTREUILLON" + "codePostal": "21250", + "codeCommune": "21035", + "libelleAcheminement": "AUVILLARS SUR SAONE", + "nomCommune": "AUVILLARS SUR SAONE" }, { - "codePostal": "25170", - "codeCommune": "25030", - "libelleAcheminement": "AUDEUX", - "nomCommune": "AUDEUX" + "codePostal": "21440", + "codeCommune": "21646", + "libelleAcheminement": "TROUHAUT", + "nomCommune": "TROUHAUT" }, { - "codePostal": "50540", - "codeCommune": "50256", - "libelleAcheminement": "ISIGNY LE BUAT", - "nomCommune": "ISIGNY LE BUAT" + "codePostal": "31150", + "codeCommune": "31205", + "libelleAcheminement": "GAGNAC SUR GARONNE", + "nomCommune": "GAGNAC SUR GARONNE" }, { - "codePostal": "62310", - "codeCommune": "62685", - "libelleAcheminement": "RADINGHEM", - "nomCommune": "RADINGHEM" + "codePostal": "31480", + "codeCommune": "31098", + "libelleAcheminement": "CADOURS", + "nomCommune": "CADOURS" }, { - "codePostal": "58350", - "codeCommune": "58188", - "libelleAcheminement": "NANNAY", - "nomCommune": "NANNAY" + "codePostal": "21190", + "codeCommune": "21037", + "libelleAcheminement": "AUXEY DURESSES", + "nomCommune": "AUXEY DURESSES" }, { - "codePostal": "25870", - "codeCommune": "25035", - "libelleAcheminement": "LES AUXONS", - "nomCommune": "LES AUXONS" + "codePostal": "21220", + "codeCommune": "21650", + "libelleAcheminement": "URCY", + "nomCommune": "URCY" }, { - "codePostal": "50310", - "codeCommune": "50258", - "libelleAcheminement": "JOGANVILLE", - "nomCommune": "JOGANVILLE" + "codePostal": "31160", + "codeCommune": "31208", + "libelleAcheminement": "GANTIES", + "nomCommune": "GANTIES" }, { - "codePostal": "62270", - "codeCommune": "62695", - "libelleAcheminement": "REBREUVIETTE", - "nomCommune": "REBREUVIETTE" + "codePostal": "31310", + "codeCommune": "31103", + "libelleAcheminement": "CANENS", + "nomCommune": "CANENS" }, { - "codePostal": "58400", - "codeCommune": "58189", - "libelleAcheminement": "NARCY", - "nomCommune": "NARCY" + "codePostal": "21350", + "codeCommune": "21040", + "libelleAcheminement": "AVOSNES", + "nomCommune": "AVOSNES" }, { - "codePostal": "25690", - "codeCommune": "25039", - "libelleAcheminement": "AVOUDREY", - "nomCommune": "AVOUDREY" + "codePostal": "21400", + "codeCommune": "21653", + "libelleAcheminement": "VANNAIRE", + "nomCommune": "VANNAIRE" }, { - "codePostal": "50520", - "codeCommune": "50260", - "libelleAcheminement": "JUVIGNY LES VALLEES", - "nomCommune": "JUVIGNY LES VALLEES" + "codePostal": "31330", + "codeCommune": "31232", + "libelleAcheminement": "GRENADE", + "nomCommune": "GRENADE" }, { - "codePostal": "62860", - "codeCommune": "62697", - "libelleAcheminement": "RECOURT", - "nomCommune": "RECOURT" + "codePostal": "31460", + "codeCommune": "31106", + "libelleAcheminement": "CARAMAN", + "nomCommune": "CARAMAN" }, { - "codePostal": "58450", - "codeCommune": "58193", - "libelleAcheminement": "NEUVY SUR LOIRE", - "nomCommune": "NEUVY SUR LOIRE" + "codePostal": "21700", + "codeCommune": "21042", + "libelleAcheminement": "BAGNOT", + "nomCommune": "BAGNOT" }, { - "codePostal": "25490", - "codeCommune": "25040", - "libelleAcheminement": "BADEVEL", - "nomCommune": "BADEVEL" + "codePostal": "21400", + "codeCommune": "21655", + "libelleAcheminement": "VANVEY", + "nomCommune": "VANVEY" }, { - "codePostal": "50520", - "codeCommune": "50260", - "libelleAcheminement": "JUVIGNY LES VALLEES", - "nomCommune": "JUVIGNY LES VALLEES" + "codePostal": "31260", + "codeCommune": "31237", + "libelleAcheminement": "HIS", + "nomCommune": "HIS" }, { - "codePostal": "62140", - "codeCommune": "62700", - "libelleAcheminement": "REGNAUVILLE", - "nomCommune": "REGNAUVILLE" + "codePostal": "31420", + "codeCommune": "31109", + "libelleAcheminement": "CASSAGNABERE TOURNAS", + "nomCommune": "CASSAGNABERE TOURNAS" }, { - "codePostal": "58130", - "codeCommune": "58204", - "libelleAcheminement": "VAUX D AMOGNES", - "nomCommune": "VAUX D AMOGNES" + "codePostal": "21430", + "codeCommune": "21046", + "libelleAcheminement": "BARD LE REGULIER", + "nomCommune": "BARD LE REGULIER" }, { - "codePostal": "25560", - "codeCommune": "25041", - "libelleAcheminement": "BANNANS", - "nomCommune": "BANNANS" + "codePostal": "21370", + "codeCommune": "21661", + "libelleAcheminement": "VELARS SUR OUCHE", + "nomCommune": "VELARS SUR OUCHE" }, { - "codePostal": "50520", - "codeCommune": "50260", - "libelleAcheminement": "JUVIGNY LES VALLEES", - "nomCommune": "JUVIGNY LES VALLEES" + "codePostal": "31450", + "codeCommune": "31240", + "libelleAcheminement": "ISSUS", + "nomCommune": "ISSUS" }, { - "codePostal": "62450", - "codeCommune": "62708", - "libelleAcheminement": "RIENCOURT LES BAPAUME", - "nomCommune": "RIENCOURT LES BAPAUME" + "codePostal": "31320", + "codeCommune": "31113", + "libelleAcheminement": "CASTANET TOLOSAN", + "nomCommune": "CASTANET TOLOSAN" }, { - "codePostal": "58500", - "codeCommune": "58217", - "libelleAcheminement": "POUSSEAUX", - "nomCommune": "POUSSEAUX" + "codePostal": "21580", + "codeCommune": "21049", + "libelleAcheminement": "BARJON", + "nomCommune": "BARJON" }, { - "codePostal": "25210", - "codeCommune": "25042", - "libelleAcheminement": "LE BARBOUX", - "nomCommune": "LE BARBOUX" + "codePostal": "21390", + "codeCommune": "21678", + "libelleAcheminement": "VIC SOUS THIL", + "nomCommune": "VIC SOUS THIL" }, { - "codePostal": "50600", - "codeCommune": "50263", - "libelleAcheminement": "LAPENTY", - "nomCommune": "LAPENTY" + "codePostal": "31190", + "codeCommune": "31256", + "libelleAcheminement": "LABRUYERE DORSA", + "nomCommune": "LABRUYERE DORSA" }, { - "codePostal": "62350", - "codeCommune": "62713", - "libelleAcheminement": "ROBECQ", - "nomCommune": "ROBECQ" + "codePostal": "31160", + "codeCommune": "31114", + "libelleAcheminement": "CASTELBIAGUE", + "nomCommune": "CASTELBIAGUE" }, { - "codePostal": "58360", - "codeCommune": "58219", - "libelleAcheminement": "PREPORCHE", - "nomCommune": "PREPORCHE" + "codePostal": "21510", + "codeCommune": "21055", + "libelleAcheminement": "BEAUNOTTE", + "nomCommune": "BEAUNOTTE" }, { - "codePostal": "25440", - "codeCommune": "25044", - "libelleAcheminement": "BARTHERANS", - "nomCommune": "BARTHERANS" + "codePostal": "21270", + "codeCommune": "21680", + "libelleAcheminement": "VIELVERGE", + "nomCommune": "VIELVERGE" }, { - "codePostal": "50700", - "codeCommune": "50270", - "libelleAcheminement": "LIEUSAINT", - "nomCommune": "LIEUSAINT" + "codePostal": "31480", + "codeCommune": "31265", + "libelleAcheminement": "LAGRAULET ST NICOLAS", + "nomCommune": "LAGRAULET ST NICOLAS" }, { - "codePostal": "62610", - "codeCommune": "62716", - "libelleAcheminement": "RODELINGHEM", - "nomCommune": "RODELINGHEM" + "codePostal": "31350", + "codeCommune": "31121", + "libelleAcheminement": "CASTERA VIGNOLES", + "nomCommune": "CASTERA VIGNOLES" }, { - "codePostal": "58400", - "codeCommune": "58220", - "libelleAcheminement": "RAVEAU", - "nomCommune": "RAVEAU" + "codePostal": "21110", + "codeCommune": "21057", + "libelleAcheminement": "BEIRE LE FORT", + "nomCommune": "BEIRE LE FORT" }, { - "codePostal": "25640", - "codeCommune": "25045", - "libelleAcheminement": "BATTENANS LES MINES", - "nomCommune": "BATTENANS LES MINES" + "codePostal": "21700", + "codeCommune": "21688", + "libelleAcheminement": "VILLARS FONTAINE", + "nomCommune": "VILLARS FONTAINE" }, { - "codePostal": "50670", - "codeCommune": "50271", - "libelleAcheminement": "LINGEARD", - "nomCommune": "LINGEARD" + "codePostal": "31180", + "codeCommune": "31273", + "libelleAcheminement": "LAPEYROUSE FOSSAT", + "nomCommune": "LAPEYROUSE FOSSAT" }, { - "codePostal": "62770", - "codeCommune": "62719", - "libelleAcheminement": "ROLLANCOURT", - "nomCommune": "ROLLANCOURT" + "codePostal": "31580", + "codeCommune": "31130", + "libelleAcheminement": "CAZARIL TAMBOURES", + "nomCommune": "CAZARIL TAMBOURES" }, { - "codePostal": "58190", - "codeCommune": "58224", - "libelleAcheminement": "RUAGES", - "nomCommune": "RUAGES" + "codePostal": "21320", + "codeCommune": "21068", + "libelleAcheminement": "BEUREY BAUGUAY", + "nomCommune": "BEUREY BAUGUAY" }, { - "codePostal": "25110", - "codeCommune": "25047", - "libelleAcheminement": "BAUME LES DAMES", - "nomCommune": "BAUME LES DAMES" + "codePostal": "21140", + "codeCommune": "21689", + "libelleAcheminement": "VILLARS ET VILLENOTTE", + "nomCommune": "VILLARS ET VILLENOTTE" }, { - "codePostal": "50250", - "codeCommune": "50273", - "libelleAcheminement": "MONTSENELLE", - "nomCommune": "MONTSENELLE" + "codePostal": "31800", + "codeCommune": "31274", + "libelleAcheminement": "LARCAN", + "nomCommune": "LARCAN" }, { - "codePostal": "62120", - "codeCommune": "62720", - "libelleAcheminement": "ROMBLY", - "nomCommune": "ROMBLY" + "codePostal": "31160", + "codeCommune": "31131", + "libelleAcheminement": "CAZAUNOUS", + "nomCommune": "CAZAUNOUS" }, { - "codePostal": "58230", - "codeCommune": "58226", - "libelleAcheminement": "ST AGNAN", - "nomCommune": "ST AGNAN" + "codePostal": "21520", + "codeCommune": "21077", + "libelleAcheminement": "BISSEY LA COTE", + "nomCommune": "BISSEY LA COTE" }, { - "codePostal": "25470", - "codeCommune": "25049", - "libelleAcheminement": "BELFAYS", - "nomCommune": "BELFAYS" + "codePostal": "21120", + "codeCommune": "21692", + "libelleAcheminement": "VILLECOMTE", + "nomCommune": "VILLECOMTE" }, { - "codePostal": "50600", - "codeCommune": "50274", - "libelleAcheminement": "LES LOGES MARCHIS", - "nomCommune": "LES LOGES MARCHIS" + "codePostal": "31310", + "codeCommune": "31279", + "libelleAcheminement": "LATOUR", + "nomCommune": "LATOUR" }, { - "codePostal": "62620", - "codeCommune": "62727", - "libelleAcheminement": "RUITZ", - "nomCommune": "RUITZ" + "codePostal": "31620", + "codeCommune": "31136", + "libelleAcheminement": "CEPET", + "nomCommune": "CEPET" }, { - "codePostal": "58140", - "codeCommune": "58229", - "libelleAcheminement": "ST ANDRE EN MORVAN", - "nomCommune": "ST ANDRE EN MORVAN" + "codePostal": "21310", + "codeCommune": "21079", + "libelleAcheminement": "BLAGNY SUR VINGEANNE", + "nomCommune": "BLAGNY SUR VINGEANNE" }, { - "codePostal": "25530", - "codeCommune": "25052", - "libelleAcheminement": "BELMONT", - "nomCommune": "BELMONT" + "codePostal": "21450", + "codeCommune": "21695", + "libelleAcheminement": "LA VILLENEUVE LES CONVERS", + "nomCommune": "LA VILLENEUVE LES CONVERS" }, { - "codePostal": "50410", - "codeCommune": "50295", - "libelleAcheminement": "MAUPERTUIS", - "nomCommune": "MAUPERTUIS" + "codePostal": "31590", + "codeCommune": "31285", + "libelleAcheminement": "LAVALETTE", + "nomCommune": "LAVALETTE" }, { - "codePostal": "62550", - "codeCommune": "62740", - "libelleAcheminement": "SAINS LES PERNES", - "nomCommune": "SAINS LES PERNES" + "codePostal": "31350", + "codeCommune": "31138", + "libelleAcheminement": "CHARLAS", + "nomCommune": "CHARLAS" }, { - "codePostal": "58330", - "codeCommune": "58233", - "libelleAcheminement": "ST BENIN DES BOIS", - "nomCommune": "ST BENIN DES BOIS" + "codePostal": "21430", + "codeCommune": "21083", + "libelleAcheminement": "BLANOT", + "nomCommune": "BLANOT" }, { - "codePostal": "25210", - "codeCommune": "25062", - "libelleAcheminement": "LE BIZOT", - "nomCommune": "LE BIZOT" + "codePostal": "21140", + "codeCommune": "21696", + "libelleAcheminement": "VILLENEUVE SOUS CHARIGNY", + "nomCommune": "VILLENEUVE SOUS CHARIGNY" }, { - "codePostal": "50880", - "codeCommune": "50297", - "libelleAcheminement": "LA MEAUFFE", - "nomCommune": "LA MEAUFFE" + "codePostal": "31410", + "codeCommune": "31287", + "libelleAcheminement": "LAVERNOSE LACASSE", + "nomCommune": "LAVERNOSE LACASSE" }, { - "codePostal": "62350", - "codeCommune": "62747", - "libelleAcheminement": "ST FLORIS", - "nomCommune": "ST FLORIS" + "codePostal": "31350", + "codeCommune": "31141", + "libelleAcheminement": "CIADOUX", + "nomCommune": "CIADOUX" }, { - "codePostal": "58190", - "codeCommune": "58237", - "libelleAcheminement": "ST DIDIER", - "nomCommune": "ST DIDIER" + "codePostal": "21700", + "codeCommune": "21088", + "libelleAcheminement": "BONCOURT LE BOIS", + "nomCommune": "BONCOURT LE BOIS" }, { - "codePostal": "25310", - "codeCommune": "25063", - "libelleAcheminement": "BLAMONT", - "nomCommune": "BLAMONT" + "codePostal": "21120", + "codeCommune": "21702", + "libelleAcheminement": "VILLEY SUR TILLE", + "nomCommune": "VILLEY SUR TILLE" }, { - "codePostal": "50570", - "codeCommune": "50302", - "libelleAcheminement": "LE MESNIL AMEY", - "nomCommune": "LE MESNIL AMEY" + "codePostal": "31530", + "codeCommune": "31297", + "libelleAcheminement": "LEVIGNAC", + "nomCommune": "LEVIGNAC" }, { - "codePostal": "62250", - "codeCommune": "62751", - "libelleAcheminement": "ST INGLEVERT", - "nomCommune": "ST INGLEVERT" + "codePostal": "31750", + "codeCommune": "31169", + "libelleAcheminement": "ESCALQUENS", + "nomCommune": "ESCALQUENS" }, { - "codePostal": "58000", - "codeCommune": "58238", - "libelleAcheminement": "ST ELOI", - "nomCommune": "ST ELOI" + "codePostal": "21420", + "codeCommune": "21092", + "libelleAcheminement": "BOUILLAND", + "nomCommune": "BOUILLAND" }, { - "codePostal": "25320", - "codeCommune": "25084", - "libelleAcheminement": "BOUSSIERES", - "nomCommune": "BOUSSIERES" + "codePostal": "21690", + "codeCommune": "21705", + "libelleAcheminement": "VILLOTTE ST SEINE", + "nomCommune": "VILLOTTE ST SEINE" }, { - "codePostal": "50570", - "codeCommune": "50310", - "libelleAcheminement": "LE MESNIL EURY", - "nomCommune": "LE MESNIL EURY" + "codePostal": "31510", + "codeCommune": "31308", + "libelleAcheminement": "LUSCAN", + "nomCommune": "LUSCAN" }, { - "codePostal": "62170", - "codeCommune": "62752", - "libelleAcheminement": "ST JOSSE", - "nomCommune": "ST JOSSE" + "codePostal": "31260", + "codeCommune": "31183", + "libelleAcheminement": "FIGAROL", + "nomCommune": "FIGAROL" }, { - "codePostal": "58300", - "codeCommune": "58241", - "libelleAcheminement": "ST GERMAIN CHASSENAY", - "nomCommune": "ST GERMAIN CHASSENAY" + "codePostal": "21470", + "codeCommune": "21103", + "libelleAcheminement": "BRAZEY EN PLAINE", + "nomCommune": "BRAZEY EN PLAINE" }, { - "codePostal": "25110", - "codeCommune": "25094", - "libelleAcheminement": "BRETIGNEY NOTRE DAME", - "nomCommune": "BRETIGNEY NOTRE DAME" + "codePostal": "21500", + "codeCommune": "21709", + "libelleAcheminement": "VISERNY", + "nomCommune": "VISERNY" }, { - "codePostal": "50670", - "codeCommune": "50312", - "libelleAcheminement": "LE MESNIL GILBERT", - "nomCommune": "LE MESNIL GILBERT" + "codePostal": "31430", + "codeCommune": "31309", + "libelleAcheminement": "LUSSAN ADEILHAC", + "nomCommune": "LUSSAN ADEILHAC" }, { - "codePostal": "62280", - "codeCommune": "62758", - "libelleAcheminement": "ST MARTIN BOULOGNE", - "nomCommune": "ST MARTIN BOULOGNE" + "codePostal": "31140", + "codeCommune": "31186", + "libelleAcheminement": "FONBEAUZARD", + "nomCommune": "FONBEAUZARD" }, { - "codePostal": "58150", - "codeCommune": "58248", - "libelleAcheminement": "ST LAURENT L ABBAYE", - "nomCommune": "ST LAURENT L ABBAYE" + "codePostal": "21110", + "codeCommune": "21106", + "libelleAcheminement": "BRETENIERE", + "nomCommune": "BRETENIERE" }, { - "codePostal": "25170", - "codeCommune": "25101", - "libelleAcheminement": "BURGILLE", - "nomCommune": "BURGILLE" + "codePostal": "21700", + "codeCommune": "21714", + "libelleAcheminement": "VOSNE ROMANEE", + "nomCommune": "VOSNE ROMANEE" }, { - "codePostal": "50510", - "codeCommune": "50327", - "libelleAcheminement": "LA MEURDRAQUIERE", - "nomCommune": "LA MEURDRAQUIERE" + "codePostal": "31310", + "codeCommune": "31312", + "libelleAcheminement": "MAILHOLAS", + "nomCommune": "MAILHOLAS" }, { - "codePostal": "62500", - "codeCommune": "62772", - "libelleAcheminement": "SALPERWICK", - "nomCommune": "SALPERWICK" + "codePostal": "31470", + "codeCommune": "31188", + "libelleAcheminement": "FONTENILLES", + "nomCommune": "FONTENILLES" }, { - "codePostal": "58120", - "codeCommune": "58249", - "libelleAcheminement": "ST LEGER DE FOUGERET", - "nomCommune": "ST LEGER DE FOUGERET" + "codePostal": "21290", + "codeCommune": "21116", + "libelleAcheminement": "BURE LES TEMPLIERS", + "nomCommune": "BURE LES TEMPLIERS" }, { - "codePostal": "25470", - "codeCommune": "25102", - "libelleAcheminement": "BURNEVILLERS", - "nomCommune": "BURNEVILLERS" + "codePostal": "21290", + "codeCommune": "21717", + "libelleAcheminement": "VOULAINES LES TEMPLIERS", + "nomCommune": "VOULAINES LES TEMPLIERS" }, { - "codePostal": "50700", - "codeCommune": "50335", - "libelleAcheminement": "MONTAIGU LA BRISETTE", - "nomCommune": "MONTAIGU LA BRISETTE" + "codePostal": "31510", + "codeCommune": "31313", + "libelleAcheminement": "MALVEZIE", + "nomCommune": "MALVEZIE" }, { - "codePostal": "62870", - "codeCommune": "62783", - "libelleAcheminement": "SAULCHOY", - "nomCommune": "SAULCHOY" + "codePostal": "31160", + "codeCommune": "31191", + "libelleAcheminement": "FOUGARON", + "nomCommune": "FOUGARON" }, { - "codePostal": "58300", - "codeCommune": "58250", - "libelleAcheminement": "ST LEGER DES VIGNES", - "nomCommune": "ST LEGER DES VIGNES" + "codePostal": "21580", + "codeCommune": "21119", + "libelleAcheminement": "BUSSIERES", + "nomCommune": "BUSSIERES" }, { - "codePostal": "25320", - "codeCommune": "25105", - "libelleAcheminement": "BYANS SUR DOUBS", - "nomCommune": "BYANS SUR DOUBS" + "codePostal": "22400", + "codeCommune": "22002", + "libelleAcheminement": "ANDEL", + "nomCommune": "ANDEL" }, { - "codePostal": "50200", - "codeCommune": "50345", - "libelleAcheminement": "MONTHUCHON", - "nomCommune": "MONTHUCHON" + "codePostal": "31260", + "codeCommune": "31315", + "libelleAcheminement": "MANE", + "nomCommune": "MANE" }, { - "codePostal": "62240", - "codeCommune": "62786", - "libelleAcheminement": "SELLES", - "nomCommune": "SELLES" + "codePostal": "31460", + "codeCommune": "31194", + "libelleAcheminement": "FRANCARVILLE", + "nomCommune": "FRANCARVILLE" }, { - "codePostal": "58350", - "codeCommune": "58252", - "libelleAcheminement": "ST MALO EN DONZIOIS", - "nomCommune": "ST MALO EN DONZIOIS" + "codePostal": "21540", + "codeCommune": "21121", + "libelleAcheminement": "BUSSY LA PESLE", + "nomCommune": "BUSSY LA PESLE" }, { - "codePostal": "25290", - "codeCommune": "25106", - "libelleAcheminement": "CADEMENE", - "nomCommune": "CADEMENE" + "codePostal": "22130", + "codeCommune": "22014", + "libelleAcheminement": "BOURSEUL", + "nomCommune": "BOURSEUL" }, { - "codePostal": "50240", - "codeCommune": "50347", - "libelleAcheminement": "MONTJOIE ST MARTIN", - "nomCommune": "MONTJOIE ST MARTIN" + "codePostal": "31260", + "codeCommune": "31321", + "libelleAcheminement": "MARSOULAS", + "nomCommune": "MARSOULAS" }, { - "codePostal": "62270", - "codeCommune": "62795", - "libelleAcheminement": "SIBIVILLE", - "nomCommune": "SIBIVILLE" + "codePostal": "31440", + "codeCommune": "31199", + "libelleAcheminement": "FRONSAC", + "nomCommune": "FRONSAC" }, { - "codePostal": "58150", - "codeCommune": "58265", - "libelleAcheminement": "ST QUENTIN SUR NOHAIN", - "nomCommune": "ST QUENTIN SUR NOHAIN" + "codePostal": "21290", + "codeCommune": "21123", + "libelleAcheminement": "BUXEROLLES", + "nomCommune": "BUXEROLLES" }, { - "codePostal": "25170", - "codeCommune": "25115", - "libelleAcheminement": "CHAMPAGNEY", - "nomCommune": "CHAMPAGNEY" + "codePostal": "22870", + "codeCommune": "22016", + "libelleAcheminement": "ILE DE BREHAT", + "nomCommune": "ILE DE BREHAT" }, { - "codePostal": "50210", - "codeCommune": "50350", - "libelleAcheminement": "MONTPINCHON", - "nomCommune": "MONTPINCHON" + "codePostal": "31310", + "codeCommune": "31326", + "libelleAcheminement": "MASSABRAC", + "nomCommune": "MASSABRAC" }, { - "codePostal": "62130", - "codeCommune": "62797", - "libelleAcheminement": "SIRACOURT", - "nomCommune": "SIRACOURT" + "codePostal": "31230", + "codeCommune": "31201", + "libelleAcheminement": "FRONTIGNAN SAVES", + "nomCommune": "FRONTIGNAN SAVES" }, { - "codePostal": "58250", - "codeCommune": "58268", - "libelleAcheminement": "ST SEINE", - "nomCommune": "ST SEINE" + "codePostal": "21250", + "codeCommune": "21131", + "libelleAcheminement": "CHAMBLANC", + "nomCommune": "CHAMBLANC" }, { - "codePostal": "25840", - "codeCommune": "25130", - "libelleAcheminement": "CHATEAUVIEUX LES FOSSES", - "nomCommune": "CHATEAUVIEUX LES FOSSES" + "codePostal": "22250", + "codeCommune": "22020", + "libelleAcheminement": "BROONS", + "nomCommune": "BROONS" }, { - "codePostal": "50810", - "codeCommune": "50351", - "libelleAcheminement": "MONTRABOT", - "nomCommune": "MONTRABOT" + "codePostal": "31290", + "codeCommune": "31328", + "libelleAcheminement": "MAUREMONT", + "nomCommune": "MAUREMONT" }, { - "codePostal": "62810", - "codeCommune": "62802", - "libelleAcheminement": "LE SOUICH", - "nomCommune": "LE SOUICH" + "codePostal": "31620", + "codeCommune": "31202", + "libelleAcheminement": "FRONTON", + "nomCommune": "FRONTON" }, { - "codePostal": "58160", - "codeCommune": "58273", - "libelleAcheminement": "SAUVIGNY LES BOIS", - "nomCommune": "SAUVIGNY LES BOIS" + "codePostal": "21220", + "codeCommune": "21133", + "libelleAcheminement": "CHAMBOLLE MUSIGNY", + "nomCommune": "CHAMBOLLE MUSIGNY" }, { - "codePostal": "25240", - "codeCommune": "25131", - "libelleAcheminement": "CHATELBLANC", - "nomCommune": "CHATELBLANC" + "codePostal": "22160", + "codeCommune": "22023", + "libelleAcheminement": "BULAT PESTIVIEN", + "nomCommune": "BULAT PESTIVIEN" }, { - "codePostal": "50410", - "codeCommune": "50357", - "libelleAcheminement": "MORIGNY", - "nomCommune": "MORIGNY" + "codePostal": "31160", + "codeCommune": "31348", + "libelleAcheminement": "MONCAUP", + "nomCommune": "MONCAUP" }, { - "codePostal": "62129", - "codeCommune": "62811", - "libelleAcheminement": "THEROUANNE", - "nomCommune": "THEROUANNE" + "codePostal": "31270", + "codeCommune": "31203", + "libelleAcheminement": "FROUZINS", + "nomCommune": "FROUZINS" }, { - "codePostal": "58150", - "codeCommune": "58281", - "libelleAcheminement": "SUILLY LA TOUR", - "nomCommune": "SUILLY LA TOUR" + "codePostal": "21310", + "codeCommune": "21135", + "libelleAcheminement": "CHAMPAGNE SUR VINGEANNE", + "nomCommune": "CHAMPAGNE SUR VINGEANNE" }, { - "codePostal": "25190", - "codeCommune": "25138", - "libelleAcheminement": "LES TERRES DE CHAUX", - "nomCommune": "LES TERRES DE CHAUX" + "codePostal": "22160", + "codeCommune": "22025", + "libelleAcheminement": "CALLAC DE BRETAGNE", + "nomCommune": "CALLAC" }, { - "codePostal": "50140", - "codeCommune": "50359", - "libelleAcheminement": "MORTAIN BOCAGE", - "nomCommune": "MORTAIN BOCAGE" + "codePostal": "31350", + "codeCommune": "31350", + "libelleAcheminement": "MONDILHAN", + "nomCommune": "MONDILHAN" }, { - "codePostal": "62134", - "codeCommune": "62818", - "libelleAcheminement": "TILLY CAPELLE", - "nomCommune": "TILLY CAPELLE" + "codePostal": "31430", + "codeCommune": "31204", + "libelleAcheminement": "FUSTIGNAC", + "nomCommune": "FUSTIGNAC" }, { - "codePostal": "58240", - "codeCommune": "58294", - "libelleAcheminement": "TOURY SUR JOUR", - "nomCommune": "TOURY SUR JOUR" + "codePostal": "21440", + "codeCommune": "21136", + "libelleAcheminement": "CHAMPAGNY", + "nomCommune": "CHAMPAGNY" }, { - "codePostal": "25650", - "codeCommune": "25139", - "libelleAcheminement": "LA CHAUX", - "nomCommune": "LA CHAUX" + "codePostal": "22350", + "codeCommune": "22032", + "libelleAcheminement": "CAULNES", + "nomCommune": "CAULNES" }, { - "codePostal": "50600", - "codeCommune": "50362", - "libelleAcheminement": "MOULINES", - "nomCommune": "MOULINES" + "codePostal": "31370", + "codeCommune": "31359", + "libelleAcheminement": "MONTASTRUC SAVES", + "nomCommune": "MONTASTRUC SAVES" }, { - "codePostal": "62830", - "codeCommune": "62821", - "libelleAcheminement": "TINGRY", - "nomCommune": "TINGRY" + "codePostal": "31550", + "codeCommune": "31206", + "libelleAcheminement": "GAILLAC TOULZA", + "nomCommune": "GAILLAC TOULZA" }, { - "codePostal": "58400", - "codeCommune": "58298", - "libelleAcheminement": "TRONSANGES", - "nomCommune": "TRONSANGES" + "codePostal": "21130", + "codeCommune": "21138", + "libelleAcheminement": "CHAMPDOTRE", + "nomCommune": "CHAMPDOTRE" }, { - "codePostal": "25170", - "codeCommune": "25150", - "libelleAcheminement": "CHEVIGNEY SUR L OGNON", - "nomCommune": "CHEVIGNEY SUR L OGNON" + "codePostal": "22210", + "codeCommune": "22039", + "libelleAcheminement": "LA CHEZE", + "nomCommune": "LA CHEZE" }, { - "codePostal": "50490", - "codeCommune": "50364", - "libelleAcheminement": "MUNEVILLE LE BINGARD", - "nomCommune": "MUNEVILLE LE BINGARD" + "codePostal": "31110", + "codeCommune": "31360", + "libelleAcheminement": "MONTAUBAN DE LUCHON", + "nomCommune": "MONTAUBAN DE LUCHON" }, { - "codePostal": "62390", - "codeCommune": "62822", - "libelleAcheminement": "TOLLENT", - "nomCommune": "TOLLENT" + "codePostal": "31380", + "codeCommune": "31212", + "libelleAcheminement": "GARIDECH", + "nomCommune": "GARIDECH" }, { - "codePostal": "58130", - "codeCommune": "58300", - "libelleAcheminement": "URZY", - "nomCommune": "URZY" + "codePostal": "21140", + "codeCommune": "21145", + "libelleAcheminement": "CHARIGNY", + "nomCommune": "CHARIGNY" }, { - "codePostal": "25300", - "codeCommune": "25157", - "libelleAcheminement": "LA CLUSE ET MIJOUX", - "nomCommune": "LA CLUSE ET MIJOUX" + "codePostal": "22140", + "codeCommune": "22041", + "libelleAcheminement": "COATASCORN", + "nomCommune": "COATASCORN" }, { - "codePostal": "50390", - "codeCommune": "50370", - "libelleAcheminement": "NEHOU", - "nomCommune": "NEHOU" + "codePostal": "31220", + "codeCommune": "31362", + "libelleAcheminement": "MONTBERAUD", + "nomCommune": "MONTBERAUD" }, { - "codePostal": "62890", - "codeCommune": "62827", - "libelleAcheminement": "TOURNEHEM SUR LA HEM", - "nomCommune": "TOURNEHEM SUR LA HEM" + "codePostal": "31510", + "codeCommune": "31217", + "libelleAcheminement": "GENOS", + "nomCommune": "GENOS" }, { - "codePostal": "58290", - "codeCommune": "58301", - "libelleAcheminement": "VANDENESSE", - "nomCommune": "VANDENESSE" + "codePostal": "21190", + "codeCommune": "21150", + "libelleAcheminement": "CHASSAGNE MONTRACHET", + "nomCommune": "CHASSAGNE MONTRACHET" }, { - "codePostal": "25260", - "codeCommune": "25159", - "libelleAcheminement": "COLOMBIER FONTAINE", - "nomCommune": "COLOMBIER FONTAINE" + "codePostal": "22400", + "codeCommune": "22044", + "libelleAcheminement": "COETMIEUX", + "nomCommune": "COETMIEUX" }, { - "codePostal": "50250", - "codeCommune": "50372", - "libelleAcheminement": "NEUFMESNIL", - "nomCommune": "NEUFMESNIL" + "codePostal": "31220", + "codeCommune": "31367", + "libelleAcheminement": "MONTCLAR DE COMMINGES", + "nomCommune": "MONTCLAR DE COMMINGES" }, { - "codePostal": "62310", - "codeCommune": "62828", - "libelleAcheminement": "TRAMECOURT", - "nomCommune": "TRAMECOURT" + "codePostal": "31110", + "codeCommune": "31222", + "libelleAcheminement": "GOUAUX DE LUCHON", + "nomCommune": "GOUAUX DE LUCHON" }, { - "codePostal": "58150", - "codeCommune": "58307", - "libelleAcheminement": "VIELMANAY", - "nomCommune": "VIELMANAY" + "codePostal": "21360", + "codeCommune": "21155", + "libelleAcheminement": "CHAUDENAY LA VILLE", + "nomCommune": "CHAUDENAY LA VILLE" }, { - "codePostal": "25410", - "codeCommune": "25164", - "libelleAcheminement": "CORCONDRAY", - "nomCommune": "CORCONDRAY" + "codePostal": "22330", + "codeCommune": "22046", + "libelleAcheminement": "LE MENE", + "nomCommune": "LE MENE" }, { - "codePostal": "50250", - "codeCommune": "50374", - "libelleAcheminement": "NEUVILLE EN BEAUMONT", - "nomCommune": "NEUVILLE EN BEAUMONT" + "codePostal": "31510", + "codeCommune": "31369", + "libelleAcheminement": "MONT DE GALIE", + "nomCommune": "MONT DE GALIE" }, { - "codePostal": "62130", - "codeCommune": "62831", - "libelleAcheminement": "TROISVAUX", - "nomCommune": "TROISVAUX" + "codePostal": "31230", + "codeCommune": "31223", + "libelleAcheminement": "GOUDEX", + "nomCommune": "GOUDEX" }, { - "codePostal": "59251", - "codeCommune": "59005", - "libelleAcheminement": "ALLENNES LES MARAIS", - "nomCommune": "ALLENNES LES MARAIS" + "codePostal": "21320", + "codeCommune": "21164", + "libelleAcheminement": "CHAZILLY", + "nomCommune": "CHAZILLY" }, { - "codePostal": "25360", - "codeCommune": "25166", - "libelleAcheminement": "COTEBRUNE", - "nomCommune": "COTEBRUNE" + "codePostal": "22330", + "codeCommune": "22046", + "libelleAcheminement": "LE MENE", + "nomCommune": "LE MENE" }, { - "codePostal": "50630", - "codeCommune": "50384", - "libelleAcheminement": "OCTEVILLE L AVENEL", - "nomCommune": "OCTEVILLE L AVENEL" + "codePostal": "31560", + "codeCommune": "31380", + "libelleAcheminement": "MONTGEARD", + "nomCommune": "MONTGEARD" }, { - "codePostal": "62630", - "codeCommune": "62832", - "libelleAcheminement": "TUBERSENT", - "nomCommune": "TUBERSENT" + "codePostal": "31210", + "codeCommune": "31224", + "libelleAcheminement": "GOURDAN POLIGNAN", + "nomCommune": "GOURDAN POLIGNAN" }, { - "codePostal": "59144", - "codeCommune": "59006", - "libelleAcheminement": "AMFROIPRET", - "nomCommune": "AMFROIPRET" + "codePostal": "21300", + "codeCommune": "21166", + "libelleAcheminement": "CHENOVE", + "nomCommune": "CHENOVE" }, { - "codePostal": "25170", - "codeCommune": "25172", - "libelleAcheminement": "COURCHAPON", - "nomCommune": "COURCHAPON" + "codePostal": "22320", + "codeCommune": "22047", + "libelleAcheminement": "CORLAY", + "nomCommune": "CORLAY" }, { - "codePostal": "50660", - "codeCommune": "50388", - "libelleAcheminement": "ORVAL SUR SIENNE", - "nomCommune": "ORVAL SUR SIENNE" + "codePostal": "31450", + "codeCommune": "31381", + "libelleAcheminement": "MONTGISCARD", + "nomCommune": "MONTGISCARD" }, { - "codePostal": "62550", - "codeCommune": "62835", - "libelleAcheminement": "VALHUON", - "nomCommune": "VALHUON" + "codePostal": "31150", + "codeCommune": "31230", + "libelleAcheminement": "GRATENTOUR", + "nomCommune": "GRATENTOUR" }, { - "codePostal": "59650", - "codeCommune": "59009", - "libelleAcheminement": "VILLENEUVE D ASCQ", - "nomCommune": "VILLENEUVE D ASCQ" + "codePostal": "21200", + "codeCommune": "21170", + "libelleAcheminement": "CHEVIGNY EN VALIERE", + "nomCommune": "CHEVIGNY EN VALIERE" }, { - "codePostal": "25380", - "codeCommune": "25173", - "libelleAcheminement": "COUR ST MAURICE", - "nomCommune": "COUR ST MAURICE" + "codePostal": "22100", + "codeCommune": "22050", + "libelleAcheminement": "DINAN", + "nomCommune": "DINAN" }, { - "codePostal": "50210", - "codeCommune": "50389", - "libelleAcheminement": "OUVILLE", - "nomCommune": "OUVILLE" + "codePostal": "31540", + "codeCommune": "31393", + "libelleAcheminement": "MOURVILLES HAUTES", + "nomCommune": "MOURVILLES HAUTES" }, { - "codePostal": "62124", - "codeCommune": "62840", - "libelleAcheminement": "VELU", - "nomCommune": "VELU" + "codePostal": "31190", + "codeCommune": "31231", + "libelleAcheminement": "GRAZAC", + "nomCommune": "GRAZAC" }, { - "codePostal": "59400", - "codeCommune": "59010", - "libelleAcheminement": "ANNEUX", - "nomCommune": "ANNEUX" + "codePostal": "21200", + "codeCommune": "21173", + "libelleAcheminement": "CHOREY LES BEAUNE", + "nomCommune": "CHOREY LES BEAUNE" }, { - "codePostal": "25530", - "codeCommune": "25175", - "libelleAcheminement": "COURTETAIN ET SALANS", - "nomCommune": "COURTETAIN ET SALANS" + "codePostal": "22430", + "codeCommune": "22054", + "libelleAcheminement": "ERQUY", + "nomCommune": "ERQUY" }, { - "codePostal": "50600", - "codeCommune": "50391", - "libelleAcheminement": "GRANDPARIGNY", - "nomCommune": "GRANDPARIGNY" + "codePostal": "31410", + "codeCommune": "31399", + "libelleAcheminement": "NOE", + "nomCommune": "NOE" }, { - "codePostal": "62830", - "codeCommune": "62845", - "libelleAcheminement": "VERLINCTHUN", - "nomCommune": "VERLINCTHUN" + "codePostal": "31190", + "codeCommune": "31233", + "libelleAcheminement": "GREPIAC", + "nomCommune": "GREPIAC" }, { - "codePostal": "59410", - "codeCommune": "59014", - "libelleAcheminement": "ANZIN", - "nomCommune": "ANZIN" + "codePostal": "21320", + "codeCommune": "21176", + "libelleAcheminement": "CIVRY EN MONTAGNE", + "nomCommune": "CIVRY EN MONTAGNE" }, { - "codePostal": "25870", - "codeCommune": "25186", - "libelleAcheminement": "CUSSEY SUR L OGNON", - "nomCommune": "CUSSEY SUR L OGNON" + "codePostal": "22430", + "codeCommune": "22054", + "libelleAcheminement": "ERQUY", + "nomCommune": "ERQUY" }, { - "codePostal": "50410", - "codeCommune": "50393", - "libelleAcheminement": "PERCY EN NORMANDIE", - "nomCommune": "PERCY EN NORMANDIE" + "codePostal": "31450", + "codeCommune": "31402", + "libelleAcheminement": "ODARS", + "nomCommune": "ODARS" }, { - "codePostal": "62240", - "codeCommune": "62853", - "libelleAcheminement": "VIEIL MOUTIER", - "nomCommune": "VIEIL MOUTIER" + "codePostal": "31110", + "codeCommune": "31242", + "libelleAcheminement": "JURVIELLE", + "nomCommune": "JURVIELLE" }, { - "codePostal": "59494", - "codeCommune": "59027", - "libelleAcheminement": "AUBRY DU HAINAUT", - "nomCommune": "AUBRY DU HAINAUT" + "codePostal": "21220", + "codeCommune": "21178", + "libelleAcheminement": "VALFORET", + "nomCommune": "VALFORET" }, { - "codePostal": "25150", - "codeCommune": "25187", - "libelleAcheminement": "DAMBELIN", - "nomCommune": "DAMBELIN" + "codePostal": "22290", + "codeCommune": "22063", + "libelleAcheminement": "GOMMENEC H", + "nomCommune": "GOMMENEC H" }, { - "codePostal": "50410", - "codeCommune": "50393", - "libelleAcheminement": "PERCY EN NORMANDIE", - "nomCommune": "PERCY EN NORMANDIE" + "codePostal": "31320", + "codeCommune": "31409", + "libelleAcheminement": "PECHABOU", + "nomCommune": "PECHABOU" }, { - "codePostal": "62580", - "codeCommune": "62861", - "libelleAcheminement": "VIMY", - "nomCommune": "VIMY" + "codePostal": "31540", + "codeCommune": "31243", + "libelleAcheminement": "JUZES", + "nomCommune": "JUZES" }, { - "codePostal": "59620", - "codeCommune": "59033", - "libelleAcheminement": "AULNOYE AYMERIES", - "nomCommune": "AULNOYE AYMERIES" + "codePostal": "21360", + "codeCommune": "21184", + "libelleAcheminement": "COLOMBIER", + "nomCommune": "COLOMBIER" }, { - "codePostal": "25190", - "codeCommune": "25192", - "libelleAcheminement": "DAMPJOUX", - "nomCommune": "DAMPJOUX" + "codePostal": "22200", + "codeCommune": "22067", + "libelleAcheminement": "GRACES", + "nomCommune": "GRACES" }, { - "codePostal": "50220", - "codeCommune": "50407", - "libelleAcheminement": "POILLEY", - "nomCommune": "POILLEY" + "codePostal": "31140", + "codeCommune": "31410", + "libelleAcheminement": "PECHBONNIEU", + "nomCommune": "PECHBONNIEU" }, { - "codePostal": "62120", - "codeCommune": "62875", - "libelleAcheminement": "WARDRECQUES", - "nomCommune": "WARDRECQUES" + "codePostal": "31160", + "codeCommune": "31245", + "libelleAcheminement": "JUZET D IZAUT", + "nomCommune": "JUZET D IZAUT" }, { - "codePostal": "59570", - "codeCommune": "59053", - "libelleAcheminement": "BAVAY", - "nomCommune": "BAVAY" + "codePostal": "21400", + "codeCommune": "21201", + "libelleAcheminement": "COULMIER LE SEC", + "nomCommune": "COULMIER LE SEC" }, { - "codePostal": "25410", - "codeCommune": "25195", - "libelleAcheminement": "DANNEMARIE SUR CRETE", - "nomCommune": "DANNEMARIE SUR CRETE" + "codePostal": "22550", + "codeCommune": "22076", + "libelleAcheminement": "HENANBIHEN", + "nomCommune": "HENANBIHEN" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "31350", + "codeCommune": "31412", + "libelleAcheminement": "PEGUILHAN", + "nomCommune": "PEGUILHAN" }, { - "codePostal": "62960", - "codeCommune": "62885", - "libelleAcheminement": "WESTREHEM", - "nomCommune": "WESTREHEM" + "codePostal": "31800", + "codeCommune": "31246", + "libelleAcheminement": "LABARTHE INARD", + "nomCommune": "LABARTHE INARD" }, { - "codePostal": "59360", - "codeCommune": "59055", - "libelleAcheminement": "BAZUEL", - "nomCommune": "BAZUEL" + "codePostal": "21140", + "codeCommune": "21205", + "libelleAcheminement": "COURCELLES LES SEMUR", + "nomCommune": "COURCELLES LES SEMUR" }, { - "codePostal": "25750", - "codeCommune": "25198", - "libelleAcheminement": "DESANDANS", - "nomCommune": "DESANDANS" + "codePostal": "22270", + "codeCommune": "22084", + "libelleAcheminement": "JUGON LES LACS COMMUNE NOUVELLE", + "nomCommune": "JUGON LES LACS COMMUNE NOUVELLE" }, { - "codePostal": "50300", - "codeCommune": "50411", - "libelleAcheminement": "PONTS", - "nomCommune": "PONTS" + "codePostal": "31860", + "codeCommune": "31421", + "libelleAcheminement": "PINS JUSTARET", + "nomCommune": "PINS JUSTARET" }, { - "codePostal": "62720", - "codeCommune": "62889", - "libelleAcheminement": "WIERRE EFFROY", - "nomCommune": "WIERRE EFFROY" + "codePostal": "31450", + "codeCommune": "31249", + "libelleAcheminement": "LABASTIDE BEAUVOIR", + "nomCommune": "LABASTIDE BEAUVOIR" }, { - "codePostal": "59540", - "codeCommune": "59059", - "libelleAcheminement": "BEAUMONT EN CAMBRESIS", - "nomCommune": "BEAUMONT EN CAMBRESIS" + "codePostal": "21580", + "codeCommune": "21207", + "libelleAcheminement": "COURLON", + "nomCommune": "COURLON" }, { - "codePostal": "25330", - "codeCommune": "25199", - "libelleAcheminement": "DESERVILLERS", - "nomCommune": "DESERVILLERS" + "codePostal": "22270", + "codeCommune": "22084", + "libelleAcheminement": "JUGON LES LACS COMMUNE NOUVELLE", + "nomCommune": "JUGON LES LACS COMMUNE NOUVELLE" }, { - "codePostal": "50660", - "codeCommune": "50419", - "libelleAcheminement": "QUETTREVILLE SUR SIENNE", - "nomCommune": "QUETTREVILLE SUR SIENNE" + "codePostal": "31220", + "codeCommune": "31422", + "libelleAcheminement": "PLAGNE", + "nomCommune": "PLAGNE" }, { - "codePostal": "62580", - "codeCommune": "62892", - "libelleAcheminement": "WILLERVAL", - "nomCommune": "WILLERVAL" + "codePostal": "31370", + "codeCommune": "31250", + "libelleAcheminement": "LABASTIDE CLERMONT", + "nomCommune": "LABASTIDE CLERMONT" }, { - "codePostal": "59157", - "codeCommune": "59063", - "libelleAcheminement": "BEAUVOIS EN CAMBRESIS", - "nomCommune": "BEAUVOIS EN CAMBRESIS" + "codePostal": "21310", + "codeCommune": "21225", + "libelleAcheminement": "DAMPIERRE ET FLEE", + "nomCommune": "DAMPIERRE ET FLEE" }, { - "codePostal": "25870", - "codeCommune": "25200", - "libelleAcheminement": "DEVECEY", - "nomCommune": "DEVECEY" + "codePostal": "22110", + "codeCommune": "22087", + "libelleAcheminement": "KERGRIST MOELOU", + "nomCommune": "KERGRIST MOELOU" }, { - "codePostal": "50660", - "codeCommune": "50419", - "libelleAcheminement": "QUETTREVILLE SUR SIENNE", - "nomCommune": "QUETTREVILLE SUR SIENNE" + "codePostal": "31110", + "codeCommune": "31432", + "libelleAcheminement": "PORTET DE LUCHON", + "nomCommune": "PORTET DE LUCHON" }, { - "codePostal": "62930", - "codeCommune": "62893", - "libelleAcheminement": "WIMEREUX", - "nomCommune": "WIMEREUX" + "codePostal": "31230", + "codeCommune": "31251", + "libelleAcheminement": "LABASTIDE PAUMES", + "nomCommune": "LABASTIDE PAUMES" }, { - "codePostal": "59135", - "codeCommune": "59064", - "libelleAcheminement": "BELLAING", - "nomCommune": "BELLAING" + "codePostal": "21150", + "codeCommune": "21226", + "libelleAcheminement": "DARCEY", + "nomCommune": "DARCEY" }, { - "codePostal": "25560", - "codeCommune": "25202", - "libelleAcheminement": "DOMPIERRE LES TILLEULS", - "nomCommune": "DOMPIERRE LES TILLEULS" + "codePostal": "22450", + "codeCommune": "22090", + "libelleAcheminement": "KERMARIA SULARD", + "nomCommune": "KERMARIA SULARD" }, { - "codePostal": "50310", - "codeCommune": "50421", - "libelleAcheminement": "QUINEVILLE", - "nomCommune": "QUINEVILLE" + "codePostal": "31450", + "codeCommune": "31437", + "libelleAcheminement": "POUZE", + "nomCommune": "POUZE" }, { - "codePostal": "62126", - "codeCommune": "62894", - "libelleAcheminement": "WIMILLE", - "nomCommune": "WIMILLE" + "codePostal": "31620", + "codeCommune": "31252", + "libelleAcheminement": "LABASTIDE ST SERNIN", + "nomCommune": "LABASTIDE ST SERNIN" }, { - "codePostal": "59570", - "codeCommune": "59065", - "libelleAcheminement": "BELLIGNIES", - "nomCommune": "BELLIGNIES" + "codePostal": "21420", + "codeCommune": "21241", + "libelleAcheminement": "ECHEVRONNE", + "nomCommune": "ECHEVRONNE" }, { - "codePostal": "25510", - "codeCommune": "25203", - "libelleAcheminement": "DOMPREL", - "nomCommune": "DOMPREL" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "50260", - "codeCommune": "50425", - "libelleAcheminement": "RAUVILLE LA BIGOT", - "nomCommune": "RAUVILLE LA BIGOT" + "codePostal": "31190", + "codeCommune": "31442", + "libelleAcheminement": "PUYDANIEL", + "nomCommune": "PUYDANIEL" }, { - "codePostal": "62240", - "codeCommune": "62896", - "libelleAcheminement": "WIRWIGNES", - "nomCommune": "WIRWIGNES" + "codePostal": "31800", + "codeCommune": "31270", + "libelleAcheminement": "LANDORTHE", + "nomCommune": "LANDORTHE" }, { - "codePostal": "59145", - "codeCommune": "59068", - "libelleAcheminement": "BERLAIMONT", - "nomCommune": "BERLAIMONT" + "codePostal": "21110", + "codeCommune": "21242", + "libelleAcheminement": "ECHIGEY", + "nomCommune": "ECHIGEY" }, { - "codePostal": "25440", - "codeCommune": "25209", - "libelleAcheminement": "ECHAY", - "nomCommune": "ECHAY" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "50390", - "codeCommune": "50426", - "libelleAcheminement": "RAUVILLE LA PLACE", - "nomCommune": "RAUVILLE LA PLACE" + "codePostal": "31520", + "codeCommune": "31446", + "libelleAcheminement": "RAMONVILLE ST AGNE", + "nomCommune": "RAMONVILLE ST AGNE" }, { - "codePostal": "62179", - "codeCommune": "62899", - "libelleAcheminement": "WISSANT", - "nomCommune": "WISSANT" + "codePostal": "31480", + "codeCommune": "31275", + "libelleAcheminement": "LAREOLE", + "nomCommune": "LAREOLE" }, { - "codePostal": "59235", - "codeCommune": "59071", - "libelleAcheminement": "BERSEE", - "nomCommune": "BERSEE" + "codePostal": "21460", + "codeCommune": "21247", + "libelleAcheminement": "EPOISSES", + "nomCommune": "EPOISSES" }, { - "codePostal": "25550", - "codeCommune": "25210", - "libelleAcheminement": "ECHENANS", - "nomCommune": "ECHENANS" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "50520", - "codeCommune": "50428", - "libelleAcheminement": "REFFUVEILLE", - "nomCommune": "REFFUVEILLE" + "codePostal": "31310", + "codeCommune": "31455", + "libelleAcheminement": "RIEUX VOLVESTRE", + "nomCommune": "RIEUX VOLVESTRE" }, { - "codePostal": "62120", - "codeCommune": "62900", - "libelleAcheminement": "WITTERNESSE", - "nomCommune": "WITTERNESSE" + "codePostal": "31530", + "codeCommune": "31277", + "libelleAcheminement": "LASSERRE PRADERE", + "nomCommune": "LASSERRE PRADERE" }, { - "codePostal": "59270", - "codeCommune": "59073", - "libelleAcheminement": "BERTHEN", - "nomCommune": "BERTHEN" + "codePostal": "21320", + "codeCommune": "21251", + "libelleAcheminement": "ESSEY", + "nomCommune": "ESSEY" }, { - "codePostal": "25480", - "codeCommune": "25212", - "libelleAcheminement": "ECOLE VALENTIN", - "nomCommune": "ECOLE VALENTIN" + "codePostal": "22980", + "codeCommune": "22097", + "libelleAcheminement": "LA LANDEC", + "nomCommune": "LA LANDEC" }, { - "codePostal": "50570", - "codeCommune": "50431", - "libelleAcheminement": "REMILLY LES MARAIS", - "nomCommune": "REMILLY LES MARAIS" + "codePostal": "31230", + "codeCommune": "31456", + "libelleAcheminement": "RIOLAS", + "nomCommune": "RIOLAS" }, { - "codePostal": "62120", - "codeCommune": "62901", - "libelleAcheminement": "WITTES", - "nomCommune": "WITTES" + "codePostal": "31440", + "codeCommune": "31290", + "libelleAcheminement": "LEGE", + "nomCommune": "LEGE" }, { - "codePostal": "59540", - "codeCommune": "59075", - "libelleAcheminement": "BETHENCOURT", - "nomCommune": "BETHENCOURT" + "codePostal": "21500", + "codeCommune": "21259", + "libelleAcheminement": "FAIN LES MONTBARD", + "nomCommune": "FAIN LES MONTBARD" }, { - "codePostal": "25150", - "codeCommune": "25214", - "libelleAcheminement": "ECOT", - "nomCommune": "ECOT" + "codePostal": "22980", + "codeCommune": "22104", + "libelleAcheminement": "LANGUEDIAS", + "nomCommune": "LANGUEDIAS" }, { - "codePostal": "50760", - "codeCommune": "50433", - "libelleAcheminement": "REVILLE", - "nomCommune": "REVILLE" + "codePostal": "31380", + "codeCommune": "31459", + "libelleAcheminement": "ROQUESERIERE", + "nomCommune": "ROQUESERIERE" }, { - "codePostal": "62650", - "codeCommune": "62903", - "libelleAcheminement": "ZOTEUX", - "nomCommune": "ZOTEUX" + "codePostal": "31800", + "codeCommune": "31300", + "libelleAcheminement": "LIEOUX", + "nomCommune": "LIEOUX" }, { - "codePostal": "59570", - "codeCommune": "59077", - "libelleAcheminement": "BETTRECHIES", - "nomCommune": "BETTRECHIES" + "codePostal": "21500", + "codeCommune": "21260", + "libelleAcheminement": "FAIN LES MOUTIERS", + "nomCommune": "FAIN LES MOUTIERS" }, { - "codePostal": "25800", - "codeCommune": "25219", - "libelleAcheminement": "EPENOY", - "nomCommune": "EPENOY" + "codePostal": "22570", + "codeCommune": "22107", + "libelleAcheminement": "BON REPOS SUR BLAVET", + "nomCommune": "BON REPOS SUR BLAVET" }, { - "codePostal": "50210", - "codeCommune": "50437", - "libelleAcheminement": "RONCEY", - "nomCommune": "RONCEY" + "codePostal": "31180", + "codeCommune": "31462", + "libelleAcheminement": "ROUFFIAC TOLOSAN", + "nomCommune": "ROUFFIAC TOLOSAN" }, { - "codePostal": "62360", - "codeCommune": "62908", - "libelleAcheminement": "LA CAPELLE LES BOULOGNE", - "nomCommune": "LA CAPELLE LES BOULOGNE" + "codePostal": "31410", + "codeCommune": "31303", + "libelleAcheminement": "LONGAGES", + "nomCommune": "LONGAGES" }, { - "codePostal": "59217", - "codeCommune": "59081", - "libelleAcheminement": "BEVILLERS", - "nomCommune": "BEVILLERS" + "codePostal": "21230", + "codeCommune": "21264", + "libelleAcheminement": "LE FETE", + "nomCommune": "LE FETE" }, { - "codePostal": "25800", - "codeCommune": "25227", - "libelleAcheminement": "ETRAY", - "nomCommune": "ETRAY" + "codePostal": "22480", + "codeCommune": "22115", + "libelleAcheminement": "LANRIVAIN", + "nomCommune": "LANRIVAIN" }, { - "codePostal": "50500", - "codeCommune": "50445", - "libelleAcheminement": "ST ANDRE DE BOHON", - "nomCommune": "ST ANDRE DE BOHON" + "codePostal": "31420", + "codeCommune": "31468", + "libelleAcheminement": "ST ANDRE", + "nomCommune": "ST ANDRE" }, { - "codePostal": "63600", - "codeCommune": "63003", - "libelleAcheminement": "AMBERT", - "nomCommune": "AMBERT" + "codePostal": "31290", + "codeCommune": "31310", + "libelleAcheminement": "LUX", + "nomCommune": "LUX" }, { - "codePostal": "59470", - "codeCommune": "59089", - "libelleAcheminement": "BOLLEZEELE", - "nomCommune": "BOLLEZEELE" + "codePostal": "21130", + "codeCommune": "21269", + "libelleAcheminement": "FLAMMERANS", + "nomCommune": "FLAMMERANS" }, { - "codePostal": "25530", - "codeCommune": "25231", - "libelleAcheminement": "EYSSON", - "nomCommune": "EYSSON" + "codePostal": "22170", + "codeCommune": "22116", + "libelleAcheminement": "LANRODEC", + "nomCommune": "LANRODEC" }, { - "codePostal": "50140", - "codeCommune": "50456", - "libelleAcheminement": "ST CLEMENT RANCOUDRAY", - "nomCommune": "ST CLEMENT RANCOUDRAY" + "codePostal": "31440", + "codeCommune": "31471", + "libelleAcheminement": "ST BEAT LEZ", + "nomCommune": "ST BEAT LEZ" }, { - "codePostal": "63770", - "codeCommune": "63004", - "libelleAcheminement": "LES ANCIZES COMPS", - "nomCommune": "LES ANCIZES COMPS" + "codePostal": "31360", + "codeCommune": "31314", + "libelleAcheminement": "MANCIOUX", + "nomCommune": "MANCIOUX" }, { - "codePostal": "59166", - "codeCommune": "59098", - "libelleAcheminement": "BOUSBECQUE", - "nomCommune": "BOUSBECQUE" + "codePostal": "21390", + "codeCommune": "21272", + "libelleAcheminement": "LE VAL LARREY", + "nomCommune": "LE VAL LARREY" }, { - "codePostal": "25250", - "codeCommune": "25232", - "libelleAcheminement": "FAIMBE", - "nomCommune": "FAIMBE" + "codePostal": "22410", + "codeCommune": "22117", + "libelleAcheminement": "LANTIC", + "nomCommune": "LANTIC" }, { - "codePostal": "50310", - "codeCommune": "50461", - "libelleAcheminement": "ST CYR", - "nomCommune": "ST CYR" + "codePostal": "31540", + "codeCommune": "31478", + "libelleAcheminement": "ST FELIX LAURAGAIS", + "nomCommune": "ST FELIX LAURAGAIS" }, { - "codePostal": "63170", - "codeCommune": "63014", - "libelleAcheminement": "AUBIERE", - "nomCommune": "AUBIERE" + "codePostal": "31220", + "codeCommune": "31318", + "libelleAcheminement": "MARIGNAC LASPEYRES", + "nomCommune": "MARIGNAC LASPEYRES" }, { - "codePostal": "59178", - "codeCommune": "59100", - "libelleAcheminement": "BOUSIGNIES", - "nomCommune": "BOUSIGNIES" + "codePostal": "21610", + "codeCommune": "21277", + "libelleAcheminement": "FONTAINE FRANCAISE", + "nomCommune": "FONTAINE FRANCAISE" }, { - "codePostal": "25470", - "codeCommune": "25238", - "libelleAcheminement": "FESSEVILLERS", - "nomCommune": "FESSEVILLERS" + "codePostal": "22100", + "codeCommune": "22118", + "libelleAcheminement": "LANVALLAY", + "nomCommune": "LANVALLAY" }, { - "codePostal": "50760", - "codeCommune": "50469", - "libelleAcheminement": "STE GENEVIEVE", - "nomCommune": "STE GENEVIEVE" + "codePostal": "31570", + "codeCommune": "31480", + "libelleAcheminement": "STE FOY D AIGREFEUILLE", + "nomCommune": "STE FOY D AIGREFEUILLE" }, { - "codePostal": "63690", - "codeCommune": "63024", - "libelleAcheminement": "AVEZE", - "nomCommune": "AVEZE" + "codePostal": "31210", + "codeCommune": "31323", + "libelleAcheminement": "MARTRES DE RIVIERE", + "nomCommune": "MARTRES DE RIVIERE" }, { - "codePostal": "59149", - "codeCommune": "59101", - "libelleAcheminement": "BOUSIGNIES SUR ROC", - "nomCommune": "BOUSIGNIES SUR ROC" + "codePostal": "21390", + "codeCommune": "21280", + "libelleAcheminement": "FONTANGY", + "nomCommune": "FONTANGY" }, { - "codePostal": "25500", - "codeCommune": "25240", - "libelleAcheminement": "LES FINS", - "nomCommune": "LES FINS" + "codePostal": "22290", + "codeCommune": "22121", + "libelleAcheminement": "LANVOLLON", + "nomCommune": "LANVOLLON" }, { - "codePostal": "50370", - "codeCommune": "50472", - "libelleAcheminement": "ST GEORGES DE LIVOYE", - "nomCommune": "ST GEORGES DE LIVOYE" + "codePostal": "31470", + "codeCommune": "31481", + "libelleAcheminement": "STE FOY DE PEYROLIERES", + "nomCommune": "STE FOY DE PEYROLIERES" }, { - "codePostal": "63390", - "codeCommune": "63025", - "libelleAcheminement": "AYAT SUR SIOULE", - "nomCommune": "AYAT SUR SIOULE" + "codePostal": "31220", + "codeCommune": "31324", + "libelleAcheminement": "MARTRES TOLOSANE", + "nomCommune": "MARTRES TOLOSANE" }, { - "codePostal": "59217", - "codeCommune": "59102", - "libelleAcheminement": "BOUSSIERES EN CAMBRESIS", - "nomCommune": "BOUSSIERES EN CAMBRESIS" + "codePostal": "21610", + "codeCommune": "21281", + "libelleAcheminement": "FONTENELLE", + "nomCommune": "FONTENELLE" }, { - "codePostal": "25340", - "codeCommune": "25247", - "libelleAcheminement": "FONTENELLE MONTBY", - "nomCommune": "FONTENELLE MONTBY" + "codePostal": "22540", + "codeCommune": "22135", + "libelleAcheminement": "LOUARGAT", + "nomCommune": "LOUARGAT" }, { - "codePostal": "50180", - "codeCommune": "50483", - "libelleAcheminement": "ST GILLES", - "nomCommune": "ST GILLES" + "codePostal": "31800", + "codeCommune": "31483", + "libelleAcheminement": "ST GAUDENS", + "nomCommune": "ST GAUDENS" }, { - "codePostal": "63970", - "codeCommune": "63026", - "libelleAcheminement": "AYDAT", - "nomCommune": "AYDAT" + "codePostal": "31220", + "codeCommune": "31327", + "libelleAcheminement": "MAURAN", + "nomCommune": "MAURAN" }, { - "codePostal": "59178", - "codeCommune": "59109", - "libelleAcheminement": "BRILLON", - "nomCommune": "BRILLON" + "codePostal": "21580", + "codeCommune": "21283", + "libelleAcheminement": "FRAIGNOT ET VESVROTTE", + "nomCommune": "FRAIGNOT ET VESVROTTE" }, { - "codePostal": "25210", - "codeCommune": "25248", - "libelleAcheminement": "LES FONTENELLES", - "nomCommune": "LES FONTENELLES" + "codePostal": "22480", + "codeCommune": "22139", + "libelleAcheminement": "MAGOAR", + "nomCommune": "MAGOAR" }, { - "codePostal": "50390", - "codeCommune": "50486", - "libelleAcheminement": "ST JACQUES DE NEHOU", - "nomCommune": "ST JACQUES DE NEHOU" + "codePostal": "31800", + "codeCommune": "31487", + "libelleAcheminement": "ST IGNAN", + "nomCommune": "ST IGNAN" }, { - "codePostal": "63810", - "codeCommune": "63028", - "libelleAcheminement": "BAGNOLS", - "nomCommune": "BAGNOLS" + "codePostal": "31110", + "codeCommune": "31335", + "libelleAcheminement": "MAYREGNE", + "nomCommune": "MAYREGNE" }, { - "codePostal": "59490", - "codeCommune": "59113", - "libelleAcheminement": "BRUILLE LEZ MARCHIENNES", - "nomCommune": "BRUILLE LEZ MARCHIENNES" + "codePostal": "21440", + "codeCommune": "21284", + "libelleAcheminement": "FRANCHEVILLE", + "nomCommune": "FRANCHEVILLE" }, { - "codePostal": "25110", - "codeCommune": "25249", - "libelleAcheminement": "FONTENOTTE", - "nomCommune": "FONTENOTTE" + "codePostal": "22450", + "codeCommune": "22141", + "libelleAcheminement": "MANTALLOT", + "nomCommune": "MANTALLOT" }, { - "codePostal": "50240", - "codeCommune": "50487", - "libelleAcheminement": "ST JAMES", - "nomCommune": "ST JAMES" + "codePostal": "31240", + "codeCommune": "31488", + "libelleAcheminement": "ST JEAN", + "nomCommune": "ST JEAN" }, { - "codePostal": "63570", - "codeCommune": "63031", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "31800", + "codeCommune": "31344", + "libelleAcheminement": "MIRAMONT DE COMMINGES", + "nomCommune": "MIRAMONT DE COMMINGES" }, { - "codePostal": "59144", - "codeCommune": "59116", - "libelleAcheminement": "BRY", - "nomCommune": "BRY" + "codePostal": "21170", + "codeCommune": "21285", + "libelleAcheminement": "FRANXAULT", + "nomCommune": "FRANXAULT" }, { - "codePostal": "25770", - "codeCommune": "25258", - "libelleAcheminement": "FRANOIS", - "nomCommune": "FRANOIS" + "codePostal": "22550", + "codeCommune": "22143", + "libelleAcheminement": "MATIGNON", + "nomCommune": "MATIGNON" }, { - "codePostal": "50810", - "codeCommune": "50492", - "libelleAcheminement": "ST JEAN D ELLE", - "nomCommune": "ST JEAN D ELLE" + "codePostal": "31560", + "codeCommune": "31495", + "libelleAcheminement": "ST LEON", + "nomCommune": "ST LEON" }, { - "codePostal": "63610", - "codeCommune": "63038", - "libelleAcheminement": "BESSE ET ST ANASTAISE", - "nomCommune": "BESSE ET ST ANASTAISE" + "codePostal": "31230", + "codeCommune": "31347", + "libelleAcheminement": "MOLAS", + "nomCommune": "MOLAS" }, { - "codePostal": "59285", - "codeCommune": "59119", - "libelleAcheminement": "BUYSSCHEURE", - "nomCommune": "BUYSSCHEURE" + "codePostal": "21120", + "codeCommune": "21286", + "libelleAcheminement": "FRENOIS", + "nomCommune": "FRENOIS" }, { - "codePostal": "25560", - "codeCommune": "25259", - "libelleAcheminement": "FRASNE", - "nomCommune": "FRASNE" + "codePostal": "22440", + "codeCommune": "22144", + "libelleAcheminement": "LA MEAUGON", + "nomCommune": "LA MEAUGON" }, { - "codePostal": "50810", - "codeCommune": "50492", - "libelleAcheminement": "ST JEAN D ELLE", - "nomCommune": "ST JEAN D ELLE" + "codePostal": "31140", + "codeCommune": "31497", + "libelleAcheminement": "ST LOUP CAMMAS", + "nomCommune": "ST LOUP CAMMAS" }, { - "codePostal": "63220", - "codeCommune": "63039", - "libelleAcheminement": "BEURIERES", - "nomCommune": "BEURIERES" + "codePostal": "31700", + "codeCommune": "31351", + "libelleAcheminement": "MONDONVILLE", + "nomCommune": "MONDONVILLE" }, { - "codePostal": "59780", - "codeCommune": "59124", - "libelleAcheminement": "CAMPHIN EN PEVELE", - "nomCommune": "CAMPHIN EN PEVELE" + "codePostal": "21120", + "codeCommune": "21290", + "libelleAcheminement": "GEMEAUX", + "nomCommune": "GEMEAUX" }, { - "codePostal": "25190", - "codeCommune": "25261", - "libelleAcheminement": "FROIDEVAUX", - "nomCommune": "FROIDEVAUX" + "codePostal": "22400", + "codeCommune": "22160", + "libelleAcheminement": "NOYAL", + "nomCommune": "NOYAL" }, { - "codePostal": "50320", - "codeCommune": "50493", - "libelleAcheminement": "ST JEAN DES CHAMPS", - "nomCommune": "ST JEAN DES CHAMPS" + "codePostal": "31350", + "codeCommune": "31498", + "libelleAcheminement": "ST LOUP EN COMMINGES", + "nomCommune": "ST LOUP EN COMMINGES" }, { - "codePostal": "63160", - "codeCommune": "63044", - "libelleAcheminement": "BONGHEAT", - "nomCommune": "BONGHEAT" + "codePostal": "31370", + "codeCommune": "31353", + "libelleAcheminement": "MONES", + "nomCommune": "MONES" }, { - "codePostal": "59242", - "codeCommune": "59129", - "libelleAcheminement": "CAPPELLE EN PEVELE", - "nomCommune": "CAPPELLE EN PEVELE" + "codePostal": "21410", + "codeCommune": "21293", + "libelleAcheminement": "GERGUEIL", + "nomCommune": "GERGUEIL" }, { - "codePostal": "25870", - "codeCommune": "25265", - "libelleAcheminement": "GENEUILLE", - "nomCommune": "GENEUILLE" + "codePostal": "22540", + "codeCommune": "22164", + "libelleAcheminement": "PEDERNEC", + "nomCommune": "PEDERNEC" }, { - "codePostal": "50420", - "codeCommune": "50504", - "libelleAcheminement": "ST LOUET SUR VIRE", - "nomCommune": "ST LOUET SUR VIRE" + "codePostal": "31470", + "codeCommune": "31499", + "libelleAcheminement": "ST LYS", + "nomCommune": "ST LYS" }, { - "codePostal": "63190", - "codeCommune": "63045", - "libelleAcheminement": "BORT L ETANG", - "nomCommune": "BORT L ETANG" + "codePostal": "31560", + "codeCommune": "31354", + "libelleAcheminement": "MONESTROL", + "nomCommune": "MONESTROL" }, { - "codePostal": "59217", - "codeCommune": "59132", - "libelleAcheminement": "CARNIERES", - "nomCommune": "CARNIERES" + "codePostal": "21350", + "codeCommune": "21298", + "libelleAcheminement": "GISSEY LE VIEIL", + "nomCommune": "GISSEY LE VIEIL" }, { - "codePostal": "25650", - "codeCommune": "25271", - "libelleAcheminement": "GILLEY", - "nomCommune": "GILLEY" + "codePostal": "22510", + "codeCommune": "22165", + "libelleAcheminement": "PENGUILY", + "nomCommune": "PENGUILY" }, { - "codePostal": "50750", - "codeCommune": "50512", - "libelleAcheminement": "ST MARTIN DE BONFOSSE", - "nomCommune": "ST MARTIN DE BONFOSSE" + "codePostal": "31110", + "codeCommune": "31500", + "libelleAcheminement": "ST MAMET", + "nomCommune": "ST MAMET" }, { - "codePostal": "63340", - "codeCommune": "63046", - "libelleAcheminement": "BOUDES", - "nomCommune": "BOUDES" + "codePostal": "31280", + "codeCommune": "31355", + "libelleAcheminement": "MONS", + "nomCommune": "MONS" }, { - "codePostal": "59540", - "codeCommune": "59139", - "libelleAcheminement": "CAUDRY", - "nomCommune": "CAUDRY" + "codePostal": "21150", + "codeCommune": "21299", + "libelleAcheminement": "GISSEY SOUS FLAVIGNY", + "nomCommune": "GISSEY SOUS FLAVIGNY" }, { - "codePostal": "25680", - "codeCommune": "25277", - "libelleAcheminement": "GONDENANS LES MOULINS", - "nomCommune": "GONDENANS LES MOULINS" + "codePostal": "22700", + "codeCommune": "22168", + "libelleAcheminement": "PERROS GUIREC", + "nomCommune": "PERROS GUIREC" }, { - "codePostal": "50150", - "codeCommune": "50514", - "libelleAcheminement": "CHAULIEU", - "nomCommune": "CHAULIEU" + "codePostal": "31360", + "codeCommune": "31503", + "libelleAcheminement": "ST MARTORY", + "nomCommune": "ST MARTORY" }, { - "codePostal": "63150", - "codeCommune": "63047", - "libelleAcheminement": "LA BOURBOULE", - "nomCommune": "LA BOURBOULE" + "codePostal": "31140", + "codeCommune": "31364", + "libelleAcheminement": "MONTBERON", + "nomCommune": "MONTBERON" }, { - "codePostal": "59230", - "codeCommune": "59144", - "libelleAcheminement": "CHATEAU L ABBAYE", - "nomCommune": "CHATEAU L ABBAYE" + "codePostal": "21410", + "codeCommune": "21300", + "libelleAcheminement": "GISSEY SUR OUCHE", + "nomCommune": "GISSEY SUR OUCHE" }, { - "codePostal": "25150", - "codeCommune": "25281", - "libelleAcheminement": "GOUX LES DAMBELIN", - "nomCommune": "GOUX LES DAMBELIN" + "codePostal": "22290", + "codeCommune": "22177", + "libelleAcheminement": "PLEGUIEN", + "nomCommune": "PLEGUIEN" }, { - "codePostal": "50480", - "codeCommune": "50523", - "libelleAcheminement": "STE MERE EGLISE", - "nomCommune": "STE MERE EGLISE" + "codePostal": "31360", + "codeCommune": "31504", + "libelleAcheminement": "ST MEDARD", + "nomCommune": "ST MEDARD" }, { - "codePostal": "63760", - "codeCommune": "63048", - "libelleAcheminement": "BOURG LASTIC", - "nomCommune": "BOURG LASTIC" + "codePostal": "31230", + "codeCommune": "31373", + "libelleAcheminement": "MONTESQUIEU GUITTAUT", + "nomCommune": "MONTESQUIEU GUITTAUT" }, { - "codePostal": "59147", - "codeCommune": "59145", - "libelleAcheminement": "CHEMY", - "nomCommune": "CHEMY" + "codePostal": "21400", + "codeCommune": "21302", + "libelleAcheminement": "GOMMEVILLE", + "nomCommune": "GOMMEVILLE" }, { - "codePostal": "25200", - "codeCommune": "25284", - "libelleAcheminement": "GRAND CHARMONT", - "nomCommune": "GRAND CHARMONT" + "codePostal": "22210", + "codeCommune": "22183", + "libelleAcheminement": "PLEMET", + "nomCommune": "PLEMET" }, { - "codePostal": "50480", - "codeCommune": "50523", - "libelleAcheminement": "STE MERE EGLISE", - "nomCommune": "STE MERE EGLISE" + "codePostal": "31650", + "codeCommune": "31506", + "libelleAcheminement": "ST ORENS DE GAMEVILLE", + "nomCommune": "ST ORENS DE GAMEVILLE" }, { - "codePostal": "63490", - "codeCommune": "63056", - "libelleAcheminement": "BROUSSE", - "nomCommune": "BROUSSE" + "codePostal": "31450", + "codeCommune": "31374", + "libelleAcheminement": "MONTESQUIEU LAURAGAIS", + "nomCommune": "MONTESQUIEU LAURAGAIS" }, { - "codePostal": "59740", - "codeCommune": "59147", - "libelleAcheminement": "CHOISIES", - "nomCommune": "CHOISIES" + "codePostal": "21580", + "codeCommune": "21304", + "libelleAcheminement": "GRANCEY LE CHATEAU", + "nomCommune": "GRANCEY LE CHATEAU NEUVELLE" }, { - "codePostal": "25390", - "codeCommune": "25288", - "libelleAcheminement": "FOURNETS LUISANS", - "nomCommune": "FOURNETS LUISANS" + "codePostal": "22150", + "codeCommune": "22184", + "libelleAcheminement": "PLEMY", + "nomCommune": "PLEMY" }, { - "codePostal": "50480", - "codeCommune": "50523", - "libelleAcheminement": "STE MERE EGLISE", - "nomCommune": "STE MERE EGLISE" + "codePostal": "31570", + "codeCommune": "31512", + "libelleAcheminement": "ST PIERRE DE LAGES", + "nomCommune": "ST PIERRE DE LAGES" }, { - "codePostal": "63260", - "codeCommune": "63061", - "libelleAcheminement": "BUSSIERES ET PRUNS", - "nomCommune": "BUSSIERES ET PRUNS" + "codePostal": "31410", + "codeCommune": "31379", + "libelleAcheminement": "MONTGAZIN", + "nomCommune": "MONTGAZIN" }, { - "codePostal": "59210", - "codeCommune": "59155", - "libelleAcheminement": "COUDEKERQUE BRANCHE", - "nomCommune": "COUDEKERQUE BRANCHE" + "codePostal": "21150", + "codeCommune": "21308", + "libelleAcheminement": "GRIGNON", + "nomCommune": "GRIGNON" }, { - "codePostal": "25380", - "codeCommune": "25290", - "libelleAcheminement": "LA GRANGE", - "nomCommune": "LA GRANGE" + "codePostal": "22310", + "codeCommune": "22194", + "libelleAcheminement": "PLESTIN LES GREVES", + "nomCommune": "PLESTIN LES GREVES" }, { - "codePostal": "50370", - "codeCommune": "50529", - "libelleAcheminement": "ST NICOLAS DES BOIS", - "nomCommune": "ST NICOLAS DES BOIS" + "codePostal": "31580", + "codeCommune": "31513", + "libelleAcheminement": "ST PLANCARD", + "nomCommune": "ST PLANCARD" }, { - "codePostal": "63620", - "codeCommune": "63064", - "libelleAcheminement": "LA CELLE", - "nomCommune": "LA CELLE" + "codePostal": "31450", + "codeCommune": "31384", + "libelleAcheminement": "MONTLAUR", + "nomCommune": "MONTLAUR" }, { - "codePostal": "59149", - "codeCommune": "59157", - "libelleAcheminement": "COUSOLRE", - "nomCommune": "COUSOLRE" + "codePostal": "21540", + "codeCommune": "21310", + "libelleAcheminement": "GROSBOIS EN MONTAGNE", + "nomCommune": "GROSBOIS EN MONTAGNE" }, { - "codePostal": "25110", - "codeCommune": "25298", - "libelleAcheminement": "GROSBOIS", - "nomCommune": "GROSBOIS" + "codePostal": "22610", + "codeCommune": "22195", + "libelleAcheminement": "PLEUBIAN", + "nomCommune": "PLEUBIAN" }, { - "codePostal": "50870", - "codeCommune": "50535", - "libelleAcheminement": "LE PARC", - "nomCommune": "LE PARC" + "codePostal": "31620", + "codeCommune": "31515", + "libelleAcheminement": "ST RUSTICE", + "nomCommune": "ST RUSTICE" }, { - "codePostal": "63670", - "codeCommune": "63069", - "libelleAcheminement": "LE CENDRE", - "nomCommune": "LE CENDRE" + "codePostal": "31420", + "codeCommune": "31386", + "libelleAcheminement": "MONTOULIEU ST BERNARD", + "nomCommune": "MONTOULIEU ST BERNARD" }, { - "codePostal": "59279", - "codeCommune": "59159", - "libelleAcheminement": "CRAYWICK", - "nomCommune": "CRAYWICK" + "codePostal": "21110", + "codeCommune": "21319", + "libelleAcheminement": "IZEURE", + "nomCommune": "IZEURE" }, { - "codePostal": "25650", - "codeCommune": "25303", - "libelleAcheminement": "HAUTERIVE LA FRESSE", - "nomCommune": "HAUTERIVE LA FRESSE" + "codePostal": "22690", + "codeCommune": "22197", + "libelleAcheminement": "PLEUDIHEN SUR RANCE", + "nomCommune": "PLEUDIHEN SUR RANCE" }, { - "codePostal": "50220", - "codeCommune": "50543", - "libelleAcheminement": "ST QUENTIN SUR LE HOMME", - "nomCommune": "ST QUENTIN SUR LE HOMME" + "codePostal": "31350", + "codeCommune": "31532", + "libelleAcheminement": "SARREMEZAN", + "nomCommune": "SARREMEZAN" }, { - "codePostal": "63320", - "codeCommune": "63073", - "libelleAcheminement": "CHADELEUF", - "nomCommune": "CHADELEUF" + "codePostal": "31850", + "codeCommune": "31389", + "libelleAcheminement": "MONTRABE", + "nomCommune": "MONTRABE" }, { - "codePostal": "59553", - "codeCommune": "59165", - "libelleAcheminement": "CUINCY", - "nomCommune": "CUINCY" + "codePostal": "21820", + "codeCommune": "21332", + "libelleAcheminement": "LABERGEMENT LES SEURRE", + "nomCommune": "LABERGEMENT LES SEURRE" }, { - "codePostal": "25110", - "codeCommune": "25312", - "libelleAcheminement": "HYEVRE MAGNY", - "nomCommune": "HYEVRE MAGNY" + "codePostal": "22240", + "codeCommune": "22201", + "libelleAcheminement": "PLEVENON", + "nomCommune": "PLEVENON" }, { - "codePostal": "50750", - "codeCommune": "50546", - "libelleAcheminement": "BOURGVALLEES", - "nomCommune": "BOURGVALLEES" + "codePostal": "31600", + "codeCommune": "31533", + "libelleAcheminement": "SAUBENS", + "nomCommune": "SAUBENS" }, { - "codePostal": "63980", - "codeCommune": "63076", - "libelleAcheminement": "CHAMBON SUR DOLORE", - "nomCommune": "CHAMBON SUR DOLORE" + "codePostal": "31460", + "codeCommune": "31392", + "libelleAcheminement": "MOURVILLES BASSES", + "nomCommune": "MOURVILLES BASSES" }, { - "codePostal": "59220", - "codeCommune": "59172", - "libelleAcheminement": "DENAIN", - "nomCommune": "DENAIN" + "codePostal": "21210", + "codeCommune": "21335", + "libelleAcheminement": "LACOUR D ARCENAY", + "nomCommune": "LACOUR D ARCENAY" }, { - "codePostal": "25110", - "codeCommune": "25313", - "libelleAcheminement": "HYEVRE PAROISSE", - "nomCommune": "HYEVRE PAROISSE" + "codePostal": "22130", + "codeCommune": "22205", + "libelleAcheminement": "PLOREC SUR ARGUENON", + "nomCommune": "PLOREC SUR ARGUENON" }, { - "codePostal": "50750", - "codeCommune": "50546", - "libelleAcheminement": "BOURGVALLEES", - "nomCommune": "BOURGVALLEES" + "codePostal": "31510", + "codeCommune": "31535", + "libelleAcheminement": "SAUVETERRE DE COMMINGES", + "nomCommune": "SAUVETERRE DE COMMINGES" }, { - "codePostal": "63790", - "codeCommune": "63077", - "libelleAcheminement": "CHAMBON SUR LAC", - "nomCommune": "CHAMBON SUR LAC" + "codePostal": "31110", + "codeCommune": "31394", + "libelleAcheminement": "MOUSTAJON", + "nomCommune": "MOUSTAJON" }, { - "codePostal": "59500", - "codeCommune": "59178", - "libelleAcheminement": "DOUAI", - "nomCommune": "DOUAI" + "codePostal": "21330", + "codeCommune": "21336", + "libelleAcheminement": "LAIGNES", + "nomCommune": "LAIGNES" }, { - "codePostal": "25250", - "codeCommune": "25315", - "libelleAcheminement": "L ISLE SUR LE DOUBS", - "nomCommune": "L ISLE SUR LE DOUBS" + "codePostal": "22620", + "codeCommune": "22210", + "libelleAcheminement": "PLOUBAZLANEC", + "nomCommune": "PLOUBAZLANEC" }, { - "codePostal": "50490", - "codeCommune": "50550", - "libelleAcheminement": "ST SAUVEUR VILLAGES", - "nomCommune": "ST SAUVEUR VILLAGES" + "codePostal": "31460", + "codeCommune": "31540", + "libelleAcheminement": "SEGREVILLE", + "nomCommune": "SEGREVILLE" }, { - "codePostal": "63530", - "codeCommune": "63083", - "libelleAcheminement": "CHANAT LA MOUTEYRE", - "nomCommune": "CHANAT LA MOUTEYRE" + "codePostal": "31600", + "codeCommune": "31395", + "libelleAcheminement": "MURET", + "nomCommune": "MURET" }, { - "codePostal": "59630", - "codeCommune": "59182", - "libelleAcheminement": "DRINCHAM", - "nomCommune": "DRINCHAM" + "codePostal": "21200", + "codeCommune": "21347", + "libelleAcheminement": "LEVERNOIS", + "nomCommune": "LEVERNOIS" }, { - "codePostal": "25170", - "codeCommune": "25317", - "libelleAcheminement": "JALLERANGE", - "nomCommune": "JALLERANGE" + "codePostal": "22440", + "codeCommune": "22215", + "libelleAcheminement": "PLOUFRAGAN", + "nomCommune": "PLOUFRAGAN" }, { - "codePostal": "50490", - "codeCommune": "50550", - "libelleAcheminement": "ST SAUVEUR VILLAGES", - "nomCommune": "ST SAUVEUR VILLAGES" + "codePostal": "31170", + "codeCommune": "31557", + "libelleAcheminement": "TOURNEFEUILLE", + "nomCommune": "TOURNEFEUILLE" }, { - "codePostal": "63450", - "codeCommune": "63084", - "libelleAcheminement": "CHANONAT", - "nomCommune": "CHANONAT" + "codePostal": "31350", + "codeCommune": "31397", + "libelleAcheminement": "NENIGAN", + "nomCommune": "NENIGAN" }, { - "codePostal": "59240", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "21610", + "codeCommune": "21348", + "libelleAcheminement": "LICEY SUR VINGEANNE", + "nomCommune": "LICEY SUR VINGEANNE" }, { - "codePostal": "25270", - "codeCommune": "25334", - "libelleAcheminement": "LEVIER", - "nomCommune": "LEVIER" + "codePostal": "22440", + "codeCommune": "22215", + "libelleAcheminement": "PLOUFRAGAN", + "nomCommune": "PLOUFRAGAN" }, { - "codePostal": "50750", - "codeCommune": "50556", - "libelleAcheminement": "STE SUZANNE SUR VIRE", - "nomCommune": "STE SUZANNE SUR VIRE" + "codePostal": "31260", + "codeCommune": "31562", + "libelleAcheminement": "URAU", + "nomCommune": "URAU" }, { - "codePostal": "63140", - "codeCommune": "63103", - "libelleAcheminement": "CHATEL GUYON", - "nomCommune": "CHATEL GUYON" + "codePostal": "31330", + "codeCommune": "31403", + "libelleAcheminement": "ONDES", + "nomCommune": "ONDES" }, { - "codePostal": "59114", - "codeCommune": "59189", - "libelleAcheminement": "EECKE", - "nomCommune": "EECKE" + "codePostal": "21430", + "codeCommune": "21349", + "libelleAcheminement": "LIERNAIS", + "nomCommune": "LIERNAIS" }, { - "codePostal": "25190", - "codeCommune": "25335", - "libelleAcheminement": "LIEBVILLERS", - "nomCommune": "LIEBVILLERS" + "codePostal": "22220", + "codeCommune": "22221", + "libelleAcheminement": "PLOUGUIEL", + "nomCommune": "PLOUGUIEL" }, { - "codePostal": "50530", - "codeCommune": "50565", - "libelleAcheminement": "SARTILLY BAIE BOCAGE", - "nomCommune": "SARTILLY BAIE BOCAGE" + "codePostal": "31540", + "codeCommune": "31570", + "libelleAcheminement": "VAUX", + "nomCommune": "VAUX" }, { - "codePostal": "63720", - "codeCommune": "63107", - "libelleAcheminement": "CHAVAROUX", - "nomCommune": "CHAVAROUX" + "codePostal": "31220", + "codeCommune": "31406", + "libelleAcheminement": "PALAMINY", + "nomCommune": "PALAMINY" }, { - "codePostal": "59320", - "codeCommune": "59193", - "libelleAcheminement": "EMMERIN", - "nomCommune": "EMMERIN" + "codePostal": "21230", + "codeCommune": "21354", + "libelleAcheminement": "LONGECOURT LES CULETRE", + "nomCommune": "LONGECOURT LES CULETRE" }, { - "codePostal": "25930", - "codeCommune": "25339", - "libelleAcheminement": "LODS", - "nomCommune": "LODS" + "codePostal": "22290", + "codeCommune": "22236", + "libelleAcheminement": "PLUDUAL", + "nomCommune": "PLUDUAL" }, { - "codePostal": "50480", - "codeCommune": "50571", - "libelleAcheminement": "SEBEVILLE", - "nomCommune": "SEBEVILLE" + "codePostal": "31860", + "codeCommune": "31580", + "libelleAcheminement": "VILLATE", + "nomCommune": "VILLATE" }, { - "codePostal": "63610", - "codeCommune": "63117", - "libelleAcheminement": "COMPAINS", - "nomCommune": "COMPAINS" + "codePostal": "31420", + "codeCommune": "31414", + "libelleAcheminement": "PEYRISSAS", + "nomCommune": "PEYRISSAS" }, { - "codePostal": "59320", - "codeCommune": "59196", - "libelleAcheminement": "ENNETIERES EN WEPPES", - "nomCommune": "ENNETIERES EN WEPPES" + "codePostal": "21360", + "codeCommune": "21360", + "libelleAcheminement": "LUSIGNY SUR OUCHE", + "nomCommune": "LUSIGNY SUR OUCHE" }, { - "codePostal": "25380", - "codeCommune": "25344", - "libelleAcheminement": "LONGEVELLE LES RUSSEY", - "nomCommune": "LONGEVELLE LES RUSSEY" + "codePostal": "22390", + "codeCommune": "22249", + "libelleAcheminement": "PONT MELVEZ", + "nomCommune": "PONT MELVEZ" }, { - "codePostal": "50150", - "codeCommune": "50582", - "libelleAcheminement": "SOURDEVAL", - "nomCommune": "SOURDEVAL" + "codePostal": "31580", + "codeCommune": "31586", + "libelleAcheminement": "VILLENEUVE LECUSSAN", + "nomCommune": "VILLENEUVE LECUSSAN" }, { - "codePostal": "63114", - "codeCommune": "63121", - "libelleAcheminement": "COUDES", - "nomCommune": "COUDES" + "codePostal": "31390", + "codeCommune": "31416", + "libelleAcheminement": "PEYSSIES", + "nomCommune": "PEYSSIES" }, { - "codePostal": "59132", - "codeCommune": "59198", - "libelleAcheminement": "EPPE SAUVAGE", - "nomCommune": "EPPE SAUVAGE" + "codePostal": "21110", + "codeCommune": "21370", + "libelleAcheminement": "MAGNY SUR TILLE", + "nomCommune": "MAGNY SUR TILLE" }, { - "codePostal": "25260", - "codeCommune": "25345", - "libelleAcheminement": "LONGEVELLE SUR DOUBS", - "nomCommune": "LONGEVELLE SUR DOUBS" + "codePostal": "22450", + "codeCommune": "22257", + "libelleAcheminement": "QUEMPERVEN", + "nomCommune": "QUEMPERVEN" }, { - "codePostal": "50320", - "codeCommune": "50590", - "libelleAcheminement": "LE TANU", - "nomCommune": "LE TANU" + "codePostal": "31290", + "codeCommune": "31589", + "libelleAcheminement": "VILLENOUVELLE", + "nomCommune": "VILLENOUVELLE" }, { - "codePostal": "63320", - "codeCommune": "63122", - "libelleAcheminement": "COURGOUL", - "nomCommune": "COURGOUL" + "codePostal": "31130", + "codeCommune": "31418", + "libelleAcheminement": "PIN BALMA", + "nomCommune": "PIN BALMA" }, { - "codePostal": "59161", - "codeCommune": "59206", - "libelleAcheminement": "ESCAUDOEUVRES", - "nomCommune": "ESCAUDOEUVRES" + "codePostal": "21110", + "codeCommune": "21388", + "libelleAcheminement": "MARLIENS", + "nomCommune": "MARLIENS" }, { - "codePostal": "25330", - "codeCommune": "25346", - "libelleAcheminement": "LONGEVILLE", - "nomCommune": "LONGEVILLE" + "codePostal": "22300", + "codeCommune": "22265", + "libelleAcheminement": "ROSPEZ", + "nomCommune": "ROSPEZ" }, { - "codePostal": "50640", - "codeCommune": "50591", - "libelleAcheminement": "LE TEILLEUL", - "nomCommune": "LE TEILLEUL" + "codePostal": "31260", + "codeCommune": "31591", + "libelleAcheminement": "ESCOULIS", + "nomCommune": "ESCOULIS" }, { - "codePostal": "63800", - "codeCommune": "63124", - "libelleAcheminement": "COURNON D AUVERGNE", - "nomCommune": "COURNON D AUVERGNE" + "codePostal": "31120", + "codeCommune": "31433", + "libelleAcheminement": "PORTET SUR GARONNE", + "nomCommune": "PORTET SUR GARONNE" }, { - "codePostal": "59161", - "codeCommune": "59216", - "libelleAcheminement": "ESWARS", - "nomCommune": "ESWARS" + "codePostal": "21160", + "codeCommune": "21390", + "libelleAcheminement": "MARSANNAY LA COTE", + "nomCommune": "MARSANNAY LA COTE" }, { - "codePostal": "25650", - "codeCommune": "25347", - "libelleAcheminement": "LA LONGEVILLE", - "nomCommune": "LA LONGEVILLE" + "codePostal": "22390", + "codeCommune": "22271", + "libelleAcheminement": "ST ADRIEN", + "nomCommune": "ST ADRIEN" }, { - "codePostal": "50640", - "codeCommune": "50591", - "libelleAcheminement": "LE TEILLEUL", - "nomCommune": "LE TEILLEUL" + "codePostal": "31230", + "codeCommune": "31593", + "libelleAcheminement": "CAZAC", + "nomCommune": "CAZAC" }, { - "codePostal": "63350", - "codeCommune": "63131", - "libelleAcheminement": "CULHAT", - "nomCommune": "CULHAT" + "codePostal": "31230", + "codeCommune": "31443", + "libelleAcheminement": "PUYMAURIN", + "nomCommune": "PUYMAURIN" }, { - "codePostal": "59155", - "codeCommune": "59220", - "libelleAcheminement": "FACHES THUMESNIL", - "nomCommune": "FACHES THUMESNIL" + "codePostal": "21400", + "codeCommune": "21393", + "libelleAcheminement": "MASSINGY", + "nomCommune": "MASSINGY" }, { - "codePostal": "25640", - "codeCommune": "25368", - "libelleAcheminement": "MARCHAUX CHAUDEFONTAINE", - "nomCommune": "MARCHAUX CHAUDEFONTAINE" + "codePostal": "22400", + "codeCommune": "22273", + "libelleAcheminement": "ST ALBAN", + "nomCommune": "ST ALBAN" }, { - "codePostal": "50420", - "codeCommune": "50592", - "libelleAcheminement": "TESSY BOCAGE", - "nomCommune": "TESSY BOCAGE" + "codePostal": "32430", + "codeCommune": "32007", + "libelleAcheminement": "ARDIZAS", + "nomCommune": "ARDIZAS" }, { - "codePostal": "63220", - "codeCommune": "63137", - "libelleAcheminement": "DORANGES", - "nomCommune": "DORANGES" + "codePostal": "31130", + "codeCommune": "31445", + "libelleAcheminement": "QUINT FONSEGRIVES", + "nomCommune": "QUINT FONSEGRIVES" }, { - "codePostal": "59300", - "codeCommune": "59221", - "libelleAcheminement": "FAMARS", - "nomCommune": "FAMARS" + "codePostal": "21220", + "codeCommune": "21407", + "libelleAcheminement": "MESSANGES", + "nomCommune": "MESSANGES" }, { - "codePostal": "25410", - "codeCommune": "25374", - "libelleAcheminement": "MERCEY LE GRAND", - "nomCommune": "MERCEY LE GRAND" + "codePostal": "22150", + "codeCommune": "22281", + "libelleAcheminement": "ST CARREUC", + "nomCommune": "ST CARREUC" }, { - "codePostal": "50420", - "codeCommune": "50592", - "libelleAcheminement": "TESSY BOCAGE", - "nomCommune": "TESSY BOCAGE" + "codePostal": "32450", + "codeCommune": "32018", + "libelleAcheminement": "AURIMONT", + "nomCommune": "AURIMONT" }, { - "codePostal": "63840", - "codeCommune": "63147", - "libelleAcheminement": "EGLISOLLES", - "nomCommune": "EGLISOLLES" + "codePostal": "31250", + "codeCommune": "31451", + "libelleAcheminement": "REVEL", + "nomCommune": "REVEL" }, { - "codePostal": "59550", - "codeCommune": "59223", - "libelleAcheminement": "LE FAVRIL", - "nomCommune": "LE FAVRIL" + "codePostal": "21380", + "codeCommune": "21408", + "libelleAcheminement": "MESSIGNY ET VANTOUX", + "nomCommune": "MESSIGNY ET VANTOUX" }, { - "codePostal": "25680", - "codeCommune": "25377", - "libelleAcheminement": "MESANDANS", - "nomCommune": "MESANDANS" + "codePostal": "22380", + "codeCommune": "22282", + "libelleAcheminement": "ST CAST LE GUILDO", + "nomCommune": "ST CAST LE GUILDO" }, { - "codePostal": "50470", - "codeCommune": "50599", - "libelleAcheminement": "TOLLEVAST", - "nomCommune": "TOLLEVAST" + "codePostal": "32120", + "codeCommune": "32026", + "libelleAcheminement": "BAJONNETTE", + "nomCommune": "BAJONNETTE" }, { - "codePostal": "63300", - "codeCommune": "63151", - "libelleAcheminement": "ESCOUTOUX", - "nomCommune": "ESCOUTOUX" + "codePostal": "31120", + "codeCommune": "31458", + "libelleAcheminement": "ROQUES", + "nomCommune": "ROQUES" }, { - "codePostal": "59128", - "codeCommune": "59234", - "libelleAcheminement": "FLERS EN ESCREBIEUX", - "nomCommune": "FLERS EN ESCREBIEUX" + "codePostal": "21510", + "codeCommune": "21410", + "libelleAcheminement": "MEULSON", + "nomCommune": "MEULSON" }, { - "codePostal": "25370", - "codeCommune": "25380", - "libelleAcheminement": "METABIEF", - "nomCommune": "METABIEF" + "codePostal": "22260", + "codeCommune": "22283", + "libelleAcheminement": "ST CLET", + "nomCommune": "ST CLET" }, { - "codePostal": "50760", - "codeCommune": "50613", - "libelleAcheminement": "VALCANVILLE", - "nomCommune": "VALCANVILLE" + "codePostal": "32190", + "codeCommune": "32031", + "libelleAcheminement": "BASCOUS", + "nomCommune": "BASCOUS" }, { - "codePostal": "63570", - "codeCommune": "63156", - "libelleAcheminement": "ESTEIL", - "nomCommune": "ESTEIL" + "codePostal": "31120", + "codeCommune": "31460", + "libelleAcheminement": "ROQUETTES", + "nomCommune": "ROQUETTES" }, { - "codePostal": "59222", - "codeCommune": "59246", - "libelleAcheminement": "FOREST EN CAMBRESIS", - "nomCommune": "FOREST EN CAMBRESIS" + "codePostal": "21200", + "codeCommune": "21411", + "libelleAcheminement": "MEURSANGES", + "nomCommune": "MEURSANGES" }, { - "codePostal": "25870", - "codeCommune": "25382", - "libelleAcheminement": "MONCEY", - "nomCommune": "MONCEY" + "codePostal": "22720", + "codeCommune": "22289", + "libelleAcheminement": "ST FIACRE", + "nomCommune": "ST FIACRE" }, { - "codePostal": "50310", - "codeCommune": "50621", - "libelleAcheminement": "VAUDREVILLE", - "nomCommune": "VAUDREVILLE" + "codePostal": "32160", + "codeCommune": "32036", + "libelleAcheminement": "BEAUMARCHES", + "nomCommune": "BEAUMARCHES" }, { - "codePostal": "63630", - "codeCommune": "63158", - "libelleAcheminement": "FAYET RONAYE", - "nomCommune": "FAYET RONAYE" + "codePostal": "31470", + "codeCommune": "31466", + "libelleAcheminement": "SAIGUEDE", + "nomCommune": "SAIGUEDE" }, { - "codePostal": "59510", - "codeCommune": "59247", - "libelleAcheminement": "FOREST SUR MARQUE", - "nomCommune": "FOREST SUR MARQUE" + "codePostal": "21230", + "codeCommune": "21414", + "libelleAcheminement": "MIMEURE", + "nomCommune": "MIMEURE" }, { - "codePostal": "25170", - "codeCommune": "25383", - "libelleAcheminement": "MONCLEY", - "nomCommune": "MONCLEY" + "codePostal": "22290", + "codeCommune": "22293", + "libelleAcheminement": "ST GILLES LES BOIS", + "nomCommune": "ST GILLES LES BOIS" }, { - "codePostal": "50450", - "codeCommune": "50626", - "libelleAcheminement": "VER", - "nomCommune": "VER" + "codePostal": "32400", + "codeCommune": "32046", + "libelleAcheminement": "BERNEDE", + "nomCommune": "BERNEDE" }, { - "codePostal": "63210", - "codeCommune": "63176", - "libelleAcheminement": "HEUME L EGLISE", - "nomCommune": "HEUME L EGLISE" + "codePostal": "31110", + "codeCommune": "31470", + "libelleAcheminement": "ST AVENTIN", + "nomCommune": "ST AVENTIN" }, { - "codePostal": "59234", - "codeCommune": "59254", - "libelleAcheminement": "FRESSAIN", - "nomCommune": "FRESSAIN" + "codePostal": "21250", + "codeCommune": "21424", + "libelleAcheminement": "MONTAGNY LES SEURRE", + "nomCommune": "MONTAGNY LES SEURRE" }, { - "codePostal": "25190", - "codeCommune": "25386", - "libelleAcheminement": "MONTANCY", - "nomCommune": "MONTANCY" + "codePostal": "22980", + "codeCommune": "22317", + "libelleAcheminement": "ST MELOIR DES BOIS", + "nomCommune": "ST MELOIR DES BOIS" }, { - "codePostal": "50430", - "codeCommune": "50629", - "libelleAcheminement": "VESLY", - "nomCommune": "VESLY" + "codePostal": "32310", + "codeCommune": "32052", + "libelleAcheminement": "BEZOLLES", + "nomCommune": "BEZOLLES" }, { - "codePostal": "63350", - "codeCommune": "63180", - "libelleAcheminement": "JOZE", - "nomCommune": "JOZE" + "codePostal": "31330", + "codeCommune": "31473", + "libelleAcheminement": "ST CEZERT", + "nomCommune": "ST CEZERT" }, { - "codePostal": "59268", - "codeCommune": "59255", - "libelleAcheminement": "FRESSIES", - "nomCommune": "FRESSIES" + "codePostal": "21250", + "codeCommune": "21436", + "libelleAcheminement": "MONTMAIN", + "nomCommune": "MONTMAIN" }, { - "codePostal": "25190", - "codeCommune": "25387", - "libelleAcheminement": "MONTANDON", - "nomCommune": "MONTANDON" + "codePostal": "22300", + "codeCommune": "22319", + "libelleAcheminement": "ST MICHEL EN GREVE", + "nomCommune": "ST MICHEL EN GREVE" }, { - "codePostal": "50630", - "codeCommune": "50634", - "libelleAcheminement": "VIDECOSVILLE", - "nomCommune": "VIDECOSVILLE" + "codePostal": "32550", + "codeCommune": "32060", + "libelleAcheminement": "BOUCAGNERES", + "nomCommune": "BOUCAGNERES" }, { - "codePostal": "63700", - "codeCommune": "63187", - "libelleAcheminement": "LAPEYROUSE", - "nomCommune": "LAPEYROUSE" + "codePostal": "31310", + "codeCommune": "31474", + "libelleAcheminement": "ST CHRISTAUD", + "nomCommune": "ST CHRISTAUD" }, { - "codePostal": "59249", - "codeCommune": "59257", - "libelleAcheminement": "FROMELLES", - "nomCommune": "FROMELLES" + "codePostal": "21270", + "codeCommune": "21437", + "libelleAcheminement": "MONTMANCON", + "nomCommune": "MONTMANCON" }, { - "codePostal": "25210", - "codeCommune": "25389", - "libelleAcheminement": "MONTBELIARDOT", - "nomCommune": "MONTBELIARDOT" + "codePostal": "22100", + "codeCommune": "22327", + "libelleAcheminement": "ST SAMSON SUR RANCE", + "nomCommune": "ST SAMSON SUR RANCE" }, { - "codePostal": "50700", - "codeCommune": "50648", - "libelleAcheminement": "YVETOT BOCAGE", - "nomCommune": "YVETOT BOCAGE" + "codePostal": "32800", + "codeCommune": "32064", + "libelleAcheminement": "BRETAGNE D ARMAGNAC", + "nomCommune": "BRETAGNE D ARMAGNAC" }, { - "codePostal": "63200", - "codeCommune": "63203", - "libelleAcheminement": "MALAUZAT", - "nomCommune": "MALAUZAT" + "codePostal": "31180", + "codeCommune": "31484", + "libelleAcheminement": "ST GENIES BELLEVUE", + "nomCommune": "ST GENIES BELLEVUE" }, { - "codePostal": "59169", - "codeCommune": "59263", - "libelleAcheminement": "GOEULZIN", - "nomCommune": "GOEULZIN" + "codePostal": "21230", + "codeCommune": "21447", + "libelleAcheminement": "MUSIGNY", + "nomCommune": "MUSIGNY" }, { - "codePostal": "25650", - "codeCommune": "25390", - "libelleAcheminement": "MONTBENOIT", - "nomCommune": "MONTBENOIT" + "codePostal": "22230", + "codeCommune": "22333", + "libelleAcheminement": "ST VRAN", + "nomCommune": "ST VRAN" }, { - "codePostal": "51150", - "codeCommune": "51007", - "libelleAcheminement": "AMBONNAY", - "nomCommune": "AMBONNAY" + "codePostal": "32500", + "codeCommune": "32066", + "libelleAcheminement": "BRUGNENS", + "nomCommune": "BRUGNENS" }, { - "codePostal": "63510", - "codeCommune": "63204", - "libelleAcheminement": "MALINTRAT", - "nomCommune": "MALINTRAT" + "codePostal": "31380", + "codeCommune": "31489", + "libelleAcheminement": "ST JEAN LHERM", + "nomCommune": "ST JEAN LHERM" }, { - "codePostal": "59231", - "codeCommune": "59269", - "libelleAcheminement": "GOUZEAUCOURT", - "nomCommune": "GOUZEAUCOURT" + "codePostal": "21500", + "codeCommune": "21456", + "libelleAcheminement": "NOGENT LES MONTBARD", + "nomCommune": "NOGENT LES MONTBARD" }, { - "codePostal": "25160", - "codeCommune": "25405", - "libelleAcheminement": "MONTPERREUX", - "nomCommune": "MONTPERREUX" + "codePostal": "22570", + "codeCommune": "22334", + "libelleAcheminement": "ST IGEAUX", + "nomCommune": "ST IGEAUX" }, { - "codePostal": "51160", - "codeCommune": "51028", - "libelleAcheminement": "AVENAY VAL D OR", - "nomCommune": "AVENAY VAL D OR" + "codePostal": "32320", + "codeCommune": "32077", + "libelleAcheminement": "CASTELNAU D ANGLES", + "nomCommune": "CASTELNAU D ANGLES" }, { - "codePostal": "63480", - "codeCommune": "63207", - "libelleAcheminement": "MARAT", - "nomCommune": "MARAT" + "codePostal": "31590", + "codeCommune": "31501", + "libelleAcheminement": "ST MARCEL PAULEL", + "nomCommune": "ST MARCEL PAULEL" }, { - "codePostal": "59153", - "codeCommune": "59272", - "libelleAcheminement": "GRAND FORT PHILIPPE", - "nomCommune": "GRAND FORT PHILIPPE" + "codePostal": "21310", + "codeCommune": "21459", + "libelleAcheminement": "NOIRON SUR BEZE", + "nomCommune": "NOIRON SUR BEZE" }, { - "codePostal": "25920", - "codeCommune": "25415", - "libelleAcheminement": "MOUTHIER HAUTE PIERRE", - "nomCommune": "MOUTHIER HAUTE PIERRE" + "codePostal": "22510", + "codeCommune": "22346", + "libelleAcheminement": "TREDANIEL", + "nomCommune": "TREDANIEL" }, { - "codePostal": "51160", - "codeCommune": "51030", - "libelleAcheminement": "AY CHAMPAGNE", - "nomCommune": "AY CHAMPAGNE" + "codePostal": "32410", + "codeCommune": "32083", + "libelleAcheminement": "CASTERA VERDUZAN", + "nomCommune": "CASTERA VERDUZAN" }, { - "codePostal": "63350", - "codeCommune": "63210", - "libelleAcheminement": "MARINGUES", - "nomCommune": "MARINGUES" + "codePostal": "31220", + "codeCommune": "31505", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "59138", - "codeCommune": "59283", - "libelleAcheminement": "HARGNIES", - "nomCommune": "HARGNIES" + "codePostal": "21400", + "codeCommune": "21465", + "libelleAcheminement": "OBTREE", + "nomCommune": "OBTREE" }, { - "codePostal": "25680", - "codeCommune": "25419", - "libelleAcheminement": "NANS", - "nomCommune": "NANS" + "codePostal": "22630", + "codeCommune": "22352", + "libelleAcheminement": "TREFUMEL", + "nomCommune": "TREFUMEL" }, { - "codePostal": "51270", - "codeCommune": "51034", - "libelleAcheminement": "BANNAY", - "nomCommune": "BANNAY" + "codePostal": "32170", + "codeCommune": "32086", + "libelleAcheminement": "CASTEX", + "nomCommune": "CASTEX" }, { - "codePostal": "63160", - "codeCommune": "63216", - "libelleAcheminement": "MAUZUN", - "nomCommune": "MAUZUN" + "codePostal": "31530", + "codeCommune": "31507", + "libelleAcheminement": "ST PAUL SUR SAVE", + "nomCommune": "ST PAUL SUR SAVE" }, { - "codePostal": "59191", - "codeCommune": "59287", - "libelleAcheminement": "HAUCOURT EN CAMBRESIS", - "nomCommune": "HAUCOURT EN CAMBRESIS" + "codePostal": "21250", + "codeCommune": "21475", + "libelleAcheminement": "PAGNY LE CHATEAU", + "nomCommune": "PAGNY LE CHATEAU" }, { - "codePostal": "25580", - "codeCommune": "25424", - "libelleAcheminement": "LES PREMIERS SAPINS", - "nomCommune": "LES PREMIERS SAPINS" + "codePostal": "22730", + "codeCommune": "22353", + "libelleAcheminement": "TREGASTEL", + "nomCommune": "TREGASTEL" }, { - "codePostal": "51270", - "codeCommune": "51042", - "libelleAcheminement": "BAYE", - "nomCommune": "BAYE" + "codePostal": "32810", + "codeCommune": "32091", + "libelleAcheminement": "CASTIN", + "nomCommune": "CASTIN" }, { - "codePostal": "63750", - "codeCommune": "63225", - "libelleAcheminement": "MESSEIX", - "nomCommune": "MESSEIX" + "codePostal": "31510", + "codeCommune": "31509", + "libelleAcheminement": "ST PE D ARDET", + "nomCommune": "ST PE D ARDET" }, { - "codePostal": "59199", - "codeCommune": "59301", - "libelleAcheminement": "HERGNIES", - "nomCommune": "HERGNIES" + "codePostal": "21540", + "codeCommune": "21477", + "libelleAcheminement": "PANGES", + "nomCommune": "PANGES" }, { - "codePostal": "25580", - "codeCommune": "25424", - "libelleAcheminement": "LES PREMIERS SAPINS", - "nomCommune": "LES PREMIERS SAPINS" + "codePostal": "22660", + "codeCommune": "22363", + "libelleAcheminement": "TRELEVERN", + "nomCommune": "TRELEVERN" }, { - "codePostal": "51300", - "codeCommune": "51059", - "libelleAcheminement": "BIGNICOURT SUR MARNE", - "nomCommune": "BIGNICOURT SUR MARNE" + "codePostal": "32100", + "codeCommune": "32095", + "libelleAcheminement": "CAUSSENS", + "nomCommune": "CAUSSENS" }, { - "codePostal": "63730", - "codeCommune": "63227", - "libelleAcheminement": "MIREFLEURS", - "nomCommune": "MIREFLEURS" + "codePostal": "31590", + "codeCommune": "31511", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "59570", - "codeCommune": "59310", - "libelleAcheminement": "HON HERGIES", - "nomCommune": "HON HERGIES" + "codePostal": "21440", + "codeCommune": "21479", + "libelleAcheminement": "PELLEREY", + "nomCommune": "PELLEREY" }, { - "codePostal": "25390", - "codeCommune": "25432", - "libelleAcheminement": "ORCHAMPS VENNES", - "nomCommune": "ORCHAMPS VENNES" + "codePostal": "22110", + "codeCommune": "22365", + "libelleAcheminement": "TREMARGAT", + "nomCommune": "TREMARGAT" }, { - "codePostal": "51340", - "codeCommune": "51060", - "libelleAcheminement": "BIGNICOURT SUR SAULX", - "nomCommune": "BIGNICOURT SUR SAULX" + "codePostal": "32800", + "codeCommune": "32100", + "libelleAcheminement": "CAZENEUVE", + "nomCommune": "CAZENEUVE" }, { - "codePostal": "63160", - "codeCommune": "63239", - "libelleAcheminement": "MONTMORIN", - "nomCommune": "MONTMORIN" + "codePostal": "31260", + "codeCommune": "31521", + "libelleAcheminement": "SALEICH", + "nomCommune": "SALEICH" }, { - "codePostal": "59460", - "codeCommune": "59324", - "libelleAcheminement": "JEUMONT", - "nomCommune": "JEUMONT" + "codePostal": "21420", + "codeCommune": "21480", + "libelleAcheminement": "PERNAND VERGELESSES", + "nomCommune": "PERNAND VERGELESSES" }, { - "codePostal": "25620", - "codeCommune": "25434", - "libelleAcheminement": "ORNANS", - "nomCommune": "ORNANS" + "codePostal": "22310", + "codeCommune": "22366", + "libelleAcheminement": "TREMEL", + "nomCommune": "TREMEL" }, { - "codePostal": "51800", - "codeCommune": "51062", - "libelleAcheminement": "BINARVILLE", - "nomCommune": "BINARVILLE" + "codePostal": "32430", + "codeCommune": "32106", + "libelleAcheminement": "COLOGNE", + "nomCommune": "COLOGNE" }, { - "codePostal": "63830", - "codeCommune": "63254", - "libelleAcheminement": "NOHANENT", - "nomCommune": "NOHANENT" + "codePostal": "31390", + "codeCommune": "31525", + "libelleAcheminement": "SALLES SUR GARONNE", + "nomCommune": "SALLES SUR GARONNE" }, { - "codePostal": "59390", - "codeCommune": "59332", - "libelleAcheminement": "LANNOY", - "nomCommune": "LANNOY" + "codePostal": "21160", + "codeCommune": "21481", + "libelleAcheminement": "PERRIGNY LES DIJON", + "nomCommune": "PERRIGNY LES DIJON" }, { - "codePostal": "25320", - "codeCommune": "25438", - "libelleAcheminement": "OSSELLE ROUTELLE", - "nomCommune": "OSSELLE ROUTELLE" + "codePostal": "22290", + "codeCommune": "22378", + "libelleAcheminement": "TREVEREC", + "nomCommune": "TREVEREC" }, { - "codePostal": "51390", - "codeCommune": "51072", - "libelleAcheminement": "BOUILLY", - "nomCommune": "BOUILLY" + "codePostal": "32330", + "codeCommune": "32110", + "libelleAcheminement": "COURRENSAN", + "nomCommune": "COURRENSAN" }, { - "codePostal": "63340", - "codeCommune": "63255", - "libelleAcheminement": "NONETTE ORSONNETTE", - "nomCommune": "NONETTE ORSONNETTE" + "codePostal": "31430", + "codeCommune": "31543", + "libelleAcheminement": "SENARENS", + "nomCommune": "SENARENS" }, { - "codePostal": "59553", - "codeCommune": "59334", - "libelleAcheminement": "LAUWIN PLANQUE", - "nomCommune": "LAUWIN PLANQUE" + "codePostal": "21370", + "codeCommune": "21485", + "libelleAcheminement": "PLOMBIERES LES DIJON", + "nomCommune": "PLOMBIERES LES DIJON" }, { - "codePostal": "25690", - "codeCommune": "25447", - "libelleAcheminement": "PASSONFONTAINE", - "nomCommune": "PASSONFONTAINE" + "codePostal": "22660", + "codeCommune": "22379", + "libelleAcheminement": "TREVOU TREGUIGNEC", + "nomCommune": "TREVOU TREGUIGNEC" }, { - "codePostal": "51170", - "codeCommune": "51073", - "libelleAcheminement": "BOULEUSE", - "nomCommune": "BOULEUSE" + "codePostal": "32190", + "codeCommune": "32115", + "libelleAcheminement": "DEMU", + "nomCommune": "DEMU" }, { - "codePostal": "63550", - "codeCommune": "63267", - "libelleAcheminement": "PALLADUC", - "nomCommune": "PALLADUC" + "codePostal": "31560", + "codeCommune": "31546", + "libelleAcheminement": "SEYRE", + "nomCommune": "SEYRE" }, { - "codePostal": "59226", - "codeCommune": "59335", - "libelleAcheminement": "LECELLES", - "nomCommune": "LECELLES" + "codePostal": "21110", + "codeCommune": "21487", + "libelleAcheminement": "PLUVET", + "nomCommune": "PLUVET" }, { - "codePostal": "25210", - "codeCommune": "25456", - "libelleAcheminement": "PLAIMBOIS DU MIROIR", - "nomCommune": "PLAIMBOIS DU MIROIR" + "codePostal": "22450", + "codeCommune": "22381", + "libelleAcheminement": "TREZENY", + "nomCommune": "TREZENY" }, { - "codePostal": "51110", - "codeCommune": "51075", - "libelleAcheminement": "BOURGOGNE FRESNE", - "nomCommune": "BOURGOGNE FRESNE" + "codePostal": "32430", + "codeCommune": "32120", + "libelleAcheminement": "ENCAUSSE", + "nomCommune": "ENCAUSSE" }, { - "codePostal": "63500", - "codeCommune": "63270", - "libelleAcheminement": "PARENTIGNAT", - "nomCommune": "PARENTIGNAT" + "codePostal": "31160", + "codeCommune": "31550", + "libelleAcheminement": "SOUEICH", + "nomCommune": "SOUEICH" }, { - "codePostal": "59143", - "codeCommune": "59337", - "libelleAcheminement": "LEDERZEELE", - "nomCommune": "LEDERZEELE" + "codePostal": "21330", + "codeCommune": "21488", + "libelleAcheminement": "POINCON LES LARREY", + "nomCommune": "POINCON LES LARREY" }, { - "codePostal": "25390", - "codeCommune": "25457", - "libelleAcheminement": "PLAIMBOIS VENNES", - "nomCommune": "PLAIMBOIS VENNES" + "codePostal": "22690", + "codeCommune": "22385", + "libelleAcheminement": "LA VICOMTE SUR RANCE", + "nomCommune": "LA VICOMTE SUR RANCE" }, { - "codePostal": "51400", - "codeCommune": "51078", - "libelleAcheminement": "BOUY", - "nomCommune": "BOUY" + "codePostal": "32370", + "codeCommune": "32125", + "libelleAcheminement": "ESPAS", + "nomCommune": "ESPAS" }, { - "codePostal": "63290", - "codeCommune": "63271", - "libelleAcheminement": "PASLIERES", - "nomCommune": "PASLIERES" + "codePostal": "31500", + "codeCommune": "31555", + "libelleAcheminement": "TOULOUSE", + "nomCommune": "TOULOUSE" }, { - "codePostal": "59470", - "codeCommune": "59338", - "libelleAcheminement": "LEDRINGHEM", - "nomCommune": "LEDRINGHEM" + "codePostal": "21440", + "codeCommune": "21489", + "libelleAcheminement": "POISEUL LA GRANGE", + "nomCommune": "POISEUL LA GRANGE" }, { - "codePostal": "25160", - "codeCommune": "25459", - "libelleAcheminement": "LA PLANEE", - "nomCommune": "LA PLANEE" + "codePostal": "22980", + "codeCommune": "22388", + "libelleAcheminement": "VILDE GUINGALAN", + "nomCommune": "VILDE GUINGALAN" }, { - "codePostal": "51150", - "codeCommune": "51079", - "libelleAcheminement": "BOUZY", - "nomCommune": "BOUZY" + "codePostal": "32490", + "codeCommune": "32134", + "libelleAcheminement": "FREGOUVILLE", + "nomCommune": "FREGOUVILLE" }, { - "codePostal": "63210", - "codeCommune": "63274", - "libelleAcheminement": "PERPEZAT", - "nomCommune": "PERPEZAT" + "codePostal": "31460", + "codeCommune": "31558", + "libelleAcheminement": "TOUTENS", + "nomCommune": "TOUTENS" }, { - "codePostal": "59115", - "codeCommune": "59339", - "libelleAcheminement": "LEERS", - "nomCommune": "LEERS" + "codePostal": "21400", + "codeCommune": "21499", + "libelleAcheminement": "POTHIERES", + "nomCommune": "POTHIERES" }, { - "codePostal": "25115", - "codeCommune": "25467", - "libelleAcheminement": "POUILLEY LES VIGNES", - "nomCommune": "POUILLEY LES VIGNES" + "codePostal": "22120", + "codeCommune": "22389", + "libelleAcheminement": "YFFINIAC", + "nomCommune": "YFFINIAC" }, { - "codePostal": "51800", - "codeCommune": "51083", - "libelleAcheminement": "BRAUX ST REMY", - "nomCommune": "BRAUX ST REMY" + "codePostal": "32400", + "codeCommune": "32135", + "libelleAcheminement": "FUSTEROUAU", + "nomCommune": "FUSTEROUAU" }, { - "codePostal": "63920", - "codeCommune": "63276", - "libelleAcheminement": "PESCHADOIRES", - "nomCommune": "PESCHADOIRES" + "codePostal": "31510", + "codeCommune": "31564", + "libelleAcheminement": "VALCABRERE", + "nomCommune": "VALCABRERE" }, { - "codePostal": "59740", - "codeCommune": "59342", - "libelleAcheminement": "LEZ FONTAINE", - "nomCommune": "LEZ FONTAINE" + "codePostal": "21410", + "codeCommune": "21504", + "libelleAcheminement": "PRALON", + "nomCommune": "PRALON" }, { - "codePostal": "25680", - "codeCommune": "25472", - "libelleAcheminement": "PUESSANS", - "nomCommune": "PUESSANS" + "codePostal": "23380", + "codeCommune": "23002", + "libelleAcheminement": "AJAIN", + "nomCommune": "AJAIN" }, { - "codePostal": "51230", - "codeCommune": "51090", - "libelleAcheminement": "BROUSSY LE GRAND", - "nomCommune": "BROUSSY LE GRAND" + "codePostal": "32200", + "codeCommune": "32148", + "libelleAcheminement": "GISCARO", + "nomCommune": "GISCARO" }, { - "codePostal": "63580", - "codeCommune": "63277", - "libelleAcheminement": "PESLIERES", - "nomCommune": "PESLIERES" + "codePostal": "31290", + "codeCommune": "31566", + "libelleAcheminement": "VALLEGUE", + "nomCommune": "VALLEGUE" }, { - "codePostal": "59810", - "codeCommune": "59343", - "libelleAcheminement": "LESQUIN", - "nomCommune": "LESQUIN" + "codePostal": "21400", + "codeCommune": "21511", + "libelleAcheminement": "PUITS", + "nomCommune": "PUITS" }, { - "codePostal": "25640", - "codeCommune": "25474", - "libelleAcheminement": "LE PUY", - "nomCommune": "LE PUY" + "codePostal": "23200", + "codeCommune": "23028", + "libelleAcheminement": "BOSROGER", + "nomCommune": "BOSROGER" }, { - "codePostal": "51120", - "codeCommune": "51092", - "libelleAcheminement": "BROYES", - "nomCommune": "BROYES" + "codePostal": "32400", + "codeCommune": "32151", + "libelleAcheminement": "GOUX", + "nomCommune": "GOUX" }, { - "codePostal": "63470", - "codeCommune": "63292", - "libelleAcheminement": "PUY ST GULMIER", - "nomCommune": "PUY ST GULMIER" + "codePostal": "31450", + "codeCommune": "31568", + "libelleAcheminement": "VARENNES", + "nomCommune": "VARENNES" }, { - "codePostal": "59000", - "codeCommune": "59350", - "libelleAcheminement": "LILLE", - "nomCommune": "LILLE" + "codePostal": "21510", + "codeCommune": "21514", + "libelleAcheminement": "QUEMIGNY SUR SEINE", + "nomCommune": "QUEMIGNY SUR SEINE" }, { - "codePostal": "25520", - "codeCommune": "25487", - "libelleAcheminement": "RENEDALE", - "nomCommune": "RENEDALE" + "codePostal": "23320", + "codeCommune": "23036", + "libelleAcheminement": "BUSSIERE DUNOISE", + "nomCommune": "BUSSIERE DUNOISE" }, { - "codePostal": "51320", - "codeCommune": "51099", - "libelleAcheminement": "BUSSY LETTREE", - "nomCommune": "BUSSY LETTREE" + "codePostal": "32730", + "codeCommune": "32152", + "libelleAcheminement": "HAGET", + "nomCommune": "HAGET" }, { - "codePostal": "63190", - "codeCommune": "63296", - "libelleAcheminement": "RAVEL", - "nomCommune": "RAVEL" + "codePostal": "31460", + "codeCommune": "31571", + "libelleAcheminement": "VENDINE", + "nomCommune": "VENDINE" }, { - "codePostal": "59800", - "codeCommune": "59350", - "libelleAcheminement": "LILLE", - "nomCommune": "LILLE" + "codePostal": "21510", + "codeCommune": "21526", + "libelleAcheminement": "ROCHEFORT SUR BREVON", + "nomCommune": "ROCHEFORT SUR BREVON" }, { - "codePostal": "25330", - "codeCommune": "25489", - "libelleAcheminement": "REUGNEY", - "nomCommune": "REUGNEY" + "codePostal": "23700", + "codeCommune": "23037", + "libelleAcheminement": "BUSSIERE NOUVELLE", + "nomCommune": "BUSSIERE NOUVELLE" }, { - "codePostal": "51800", - "codeCommune": "51104", - "libelleAcheminement": "CERNAY EN DORMOIS", - "nomCommune": "CERNAY EN DORMOIS" + "codePostal": "32120", + "codeCommune": "32154", + "libelleAcheminement": "HOMPS", + "nomCommune": "HOMPS" }, { - "codePostal": "63200", - "codeCommune": "63300", - "libelleAcheminement": "RIOM", - "nomCommune": "RIOM" + "codePostal": "31340", + "codeCommune": "31584", + "libelleAcheminement": "VILLEMUR SUR TARN", + "nomCommune": "VILLEMUR SUR TARN" }, { - "codePostal": "59720", - "codeCommune": "59365", - "libelleAcheminement": "LOUVROIL", - "nomCommune": "LOUVROIL" + "codePostal": "21340", + "codeCommune": "21527", + "libelleAcheminement": "LA ROCHEPOT", + "nomCommune": "LA ROCHEPOT" }, { - "codePostal": "25640", - "codeCommune": "25491", - "libelleAcheminement": "RIGNOSOT", - "nomCommune": "RIGNOSOT" + "codePostal": "23220", + "codeCommune": "23044", + "libelleAcheminement": "CHAMBON STE CROIX", + "nomCommune": "CHAMBON STE CROIX" }, { - "codePostal": "51130", - "codeCommune": "51110", - "libelleAcheminement": "CHALTRAIT", - "nomCommune": "CHALTRAIT" + "codePostal": "32380", + "codeCommune": "32158", + "libelleAcheminement": "L ISLE BOUZON", + "nomCommune": "L ISLE BOUZON" }, { - "codePostal": "63670", - "codeCommune": "63302", - "libelleAcheminement": "LA ROCHE BLANCHE", - "nomCommune": "LA ROCHE BLANCHE" + "codePostal": "31620", + "codeCommune": "31587", + "libelleAcheminement": "VILLENEUVE LES BOULOC", + "nomCommune": "VILLENEUVE LES BOULOC" }, { - "codePostal": "59173", - "codeCommune": "59366", - "libelleAcheminement": "LYNDE", - "nomCommune": "LYNDE" + "codePostal": "21490", + "codeCommune": "21535", + "libelleAcheminement": "RUFFEY LES ECHIREY", + "nomCommune": "RUFFEY LES ECHIREY" }, { - "codePostal": "25110", - "codeCommune": "25492", - "libelleAcheminement": "RILLANS", - "nomCommune": "RILLANS" + "codePostal": "23170", + "codeCommune": "23045", + "libelleAcheminement": "CHAMBON SUR VOUEIZE", + "nomCommune": "CHAMBON SUR VOUEIZE" }, { - "codePostal": "51330", - "codeCommune": "51133", - "libelleAcheminement": "LE CHATELIER", - "nomCommune": "LE CHATELIER" + "codePostal": "32600", + "codeCommune": "32160", + "libelleAcheminement": "L ISLE JOURDAIN", + "nomCommune": "L ISLE JOURDAIN" }, { - "codePostal": "63410", - "codeCommune": "63318", - "libelleAcheminement": "ST ANGEL", - "nomCommune": "ST ANGEL" + "codePostal": "31270", + "codeCommune": "31588", + "libelleAcheminement": "VILLENEUVE TOLOSANE", + "nomCommune": "VILLENEUVE TOLOSANE" }, { - "codePostal": "59980", - "codeCommune": "59394", - "libelleAcheminement": "MAUROIS", - "nomCommune": "MAUROIS" + "codePostal": "21850", + "codeCommune": "21540", + "libelleAcheminement": "ST APOLLINAIRE", + "nomCommune": "ST APOLLINAIRE" }, { - "codePostal": "25220", - "codeCommune": "25495", - "libelleAcheminement": "ROCHE LEZ BEAUPRE", - "nomCommune": "ROCHE LEZ BEAUPRE" + "codePostal": "23240", + "codeCommune": "23047", + "libelleAcheminement": "CHAMBORAND", + "nomCommune": "CHAMBORAND" }, { - "codePostal": "51300", - "codeCommune": "51134", - "libelleAcheminement": "CHATELRAOULD ST LOUVENT", - "nomCommune": "CHATELRAOULD ST LOUVENT" + "codePostal": "32360", + "codeCommune": "32162", + "libelleAcheminement": "JEGUN", + "nomCommune": "JEGUN" }, { - "codePostal": "63660", - "codeCommune": "63319", - "libelleAcheminement": "ST ANTHEME", - "nomCommune": "ST ANTHEME" + "codePostal": "31440", + "codeCommune": "31590", + "libelleAcheminement": "BINOS", + "nomCommune": "BINOS" }, { - "codePostal": "59570", - "codeCommune": "59396", - "libelleAcheminement": "MECQUIGNIES", - "nomCommune": "MECQUIGNIES" + "codePostal": "21190", + "codeCommune": "21541", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "25680", - "codeCommune": "25499", - "libelleAcheminement": "ROMAIN", - "nomCommune": "ROMAIN" + "codePostal": "23220", + "codeCommune": "23049", + "libelleAcheminement": "CHAMPSANGLARD", + "nomCommune": "CHAMPSANGLARD" }, { - "codePostal": "51310", - "codeCommune": "51137", - "libelleAcheminement": "CHATILLON SUR MORIN", - "nomCommune": "CHATILLON SUR MORIN" + "codePostal": "32810", + "codeCommune": "32183", + "libelleAcheminement": "LAHITTE", + "nomCommune": "LAHITTE" }, { - "codePostal": "63630", - "codeCommune": "63323", - "libelleAcheminement": "ST BONNET LE BOURG", - "nomCommune": "ST BONNET LE BOURG" + "codePostal": "32000", + "codeCommune": "32013", + "libelleAcheminement": "AUCH", + "nomCommune": "AUCH" }, { - "codePostal": "59710", - "codeCommune": "59398", - "libelleAcheminement": "MERIGNIES", - "nomCommune": "MERIGNIES" + "codePostal": "21210", + "codeCommune": "21546", + "libelleAcheminement": "ST DIDIER", + "nomCommune": "ST DIDIER" }, { - "codePostal": "25680", - "codeCommune": "25505", - "libelleAcheminement": "ROUGEMONT", - "nomCommune": "ROUGEMONT" + "codePostal": "23700", + "codeCommune": "23054", + "libelleAcheminement": "CHARRON", + "nomCommune": "CHARRON" }, { - "codePostal": "51800", - "codeCommune": "51143", - "libelleAcheminement": "LE CHEMIN", - "nomCommune": "LE CHEMIN" + "codePostal": "32500", + "codeCommune": "32184", + "libelleAcheminement": "LALANNE", + "nomCommune": "LALANNE" }, { - "codePostal": "63320", - "codeCommune": "63330", - "libelleAcheminement": "ST CIRGUES SUR COUZE", - "nomCommune": "ST CIRGUES SUR COUZE" + "codePostal": "32120", + "codeCommune": "32021", + "libelleAcheminement": "AVENSAC", + "nomCommune": "AVENSAC" }, { - "codePostal": "59218", - "codeCommune": "59425", - "libelleAcheminement": "NEUVILLE EN AVESNOIS", - "nomCommune": "NEUVILLE EN AVESNOIS" + "codePostal": "21140", + "codeCommune": "21547", + "libelleAcheminement": "ST EUPHRONE", + "nomCommune": "ST EUPHRONE" }, { - "codePostal": "25640", - "codeCommune": "25506", - "libelleAcheminement": "ROUGEMONTOT", - "nomCommune": "ROUGEMONTOT" + "codePostal": "23500", + "codeCommune": "23071", + "libelleAcheminement": "CROZE", + "nomCommune": "CROZE" }, { - "codePostal": "51300", - "codeCommune": "51156", - "libelleAcheminement": "CLOYES SUR MARNE", - "nomCommune": "CLOYES SUR MARNE" + "codePostal": "32240", + "codeCommune": "32189", + "libelleAcheminement": "LANNEMAIGNAN", + "nomCommune": "LANNEMAIGNAN" }, { - "codePostal": "63660", - "codeCommune": "63331", - "libelleAcheminement": "ST CLEMENT DE VALORGUE", - "nomCommune": "ST CLEMENT DE VALORGUE" + "codePostal": "32380", + "codeCommune": "32023", + "libelleAcheminement": "AVEZAN", + "nomCommune": "AVEZAN" }, { - "codePostal": "59400", - "codeCommune": "59432", - "libelleAcheminement": "NIERGNIES", - "nomCommune": "NIERGNIES" + "codePostal": "21270", + "codeCommune": "21556", + "libelleAcheminement": "ST LEGER TRIEY", + "nomCommune": "ST LEGER TRIEY" }, { - "codePostal": "25440", - "codeCommune": "25507", - "libelleAcheminement": "ROUHE", - "nomCommune": "ROUHE" + "codePostal": "23100", + "codeCommune": "23080", + "libelleAcheminement": "FENIERS", + "nomCommune": "FENIERS" }, { - "codePostal": "51130", - "codeCommune": "51158", - "libelleAcheminement": "VAL DES MARAIS", - "nomCommune": "VAL DES MARAIS" + "codePostal": "32400", + "codeCommune": "32192", + "libelleAcheminement": "LANNUX", + "nomCommune": "LANNUX" }, { - "codePostal": "63320", - "codeCommune": "63335", - "libelleAcheminement": "ST DIERY", - "nomCommune": "ST DIERY" + "codePostal": "32300", + "codeCommune": "32030", + "libelleAcheminement": "BARS", + "nomCommune": "BARS" }, { - "codePostal": "59159", - "codeCommune": "59438", - "libelleAcheminement": "NOYELLES SUR ESCAUT", - "nomCommune": "NOYELLES SUR ESCAUT" + "codePostal": "21410", + "codeCommune": "21559", + "libelleAcheminement": "STE MARIE SUR OUCHE", + "nomCommune": "STE MARIE SUR OUCHE" }, { - "codePostal": "25170", - "codeCommune": "25510", - "libelleAcheminement": "RUFFEY LE CHATEAU", - "nomCommune": "RUFFEY LE CHATEAU" + "codePostal": "23340", + "codeCommune": "23090", + "libelleAcheminement": "GENTIOUX PIGEROLLES", + "nomCommune": "GENTIOUX PIGEROLLES" }, { - "codePostal": "51510", - "codeCommune": "51160", - "libelleAcheminement": "COMPERTRIX", - "nomCommune": "COMPERTRIX" + "codePostal": "32330", + "codeCommune": "32203", + "libelleAcheminement": "LAURAET", + "nomCommune": "LAURAET" }, { - "codePostal": "63122", - "codeCommune": "63345", - "libelleAcheminement": "ST GENES CHAMPANELLE", - "nomCommune": "ST GENES CHAMPANELLE" + "codePostal": "32320", + "codeCommune": "32033", + "libelleAcheminement": "BAZIAN", + "nomCommune": "BAZIAN" }, { - "codePostal": "59550", - "codeCommune": "59439", - "libelleAcheminement": "NOYELLES SUR SAMBRE", - "nomCommune": "NOYELLES SUR SAMBRE" + "codePostal": "21220", + "codeCommune": "21565", + "libelleAcheminement": "ST PHILIBERT", + "nomCommune": "ST PHILIBERT" }, { - "codePostal": "25640", - "codeCommune": "25518", - "libelleAcheminement": "ST HILAIRE", - "nomCommune": "ST HILAIRE" + "codePostal": "23500", + "codeCommune": "23091", + "libelleAcheminement": "GIOUX", + "nomCommune": "GIOUX" }, { - "codePostal": "51270", - "codeCommune": "51174", - "libelleAcheminement": "CORRIBERT", - "nomCommune": "CORRIBERT" + "codePostal": "32360", + "codeCommune": "32204", + "libelleAcheminement": "LAVARDENS", + "nomCommune": "LAVARDENS" }, { - "codePostal": "63122", - "codeCommune": "63345", - "libelleAcheminement": "ST GENES CHAMPANELLE", - "nomCommune": "ST GENES CHAMPANELLE" + "codePostal": "32410", + "codeCommune": "32035", + "libelleAcheminement": "BEAUCAIRE", + "nomCommune": "BEAUCAIRE" }, { - "codePostal": "59132", - "codeCommune": "59445", - "libelleAcheminement": "OHAIN", - "nomCommune": "OHAIN" + "codePostal": "21230", + "codeCommune": "21567", + "libelleAcheminement": "ST PRIX LES ARNAY", + "nomCommune": "ST PRIX LES ARNAY" }, { - "codePostal": "25113", - "codeCommune": "25523", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "23000", + "codeCommune": "23096", + "libelleAcheminement": "GUERET", + "nomCommune": "GUERET" }, { - "codePostal": "51230", - "codeCommune": "51176", - "libelleAcheminement": "CORROY", - "nomCommune": "CORROY" + "codePostal": "32400", + "codeCommune": "32209", + "libelleAcheminement": "LELIN LAPUJOLLE", + "nomCommune": "LELIN LAPUJOLLE" }, { - "codePostal": "63390", - "codeCommune": "63354", - "libelleAcheminement": "ST GERVAIS D AUVERGNE", - "nomCommune": "ST GERVAIS D AUVERGNE" + "codePostal": "32100", + "codeCommune": "32037", + "libelleAcheminement": "BEAUMONT", + "nomCommune": "BEAUMONT" }, { - "codePostal": "59310", - "codeCommune": "59449", - "libelleAcheminement": "ORCHIES", - "nomCommune": "ORCHIES" + "codePostal": "21610", + "codeCommune": "21574", + "libelleAcheminement": "ST SEINE SUR VINGEANNE", + "nomCommune": "ST SEINE SUR VINGEANNE" }, { - "codePostal": "25410", - "codeCommune": "25527", - "libelleAcheminement": "ST VIT", - "nomCommune": "ST VIT" + "codePostal": "23150", + "codeCommune": "23105", + "libelleAcheminement": "LAVAVEIX LES MINES", + "nomCommune": "LAVAVEIX LES MINES" }, { - "codePostal": "51240", - "codeCommune": "51178", - "libelleAcheminement": "COUPETZ", - "nomCommune": "COUPETZ" + "codePostal": "32220", + "codeCommune": "32213", + "libelleAcheminement": "LOMBEZ", + "nomCommune": "LOMBEZ" }, { - "codePostal": "63720", - "codeCommune": "63362", - "libelleAcheminement": "ST IGNAT", - "nomCommune": "ST IGNAT" + "codePostal": "32100", + "codeCommune": "32044", + "libelleAcheminement": "BERAUT", + "nomCommune": "BERAUT" }, { - "codePostal": "59295", - "codeCommune": "59455", - "libelleAcheminement": "PAILLENCOURT", - "nomCommune": "PAILLENCOURT" + "codePostal": "21350", + "codeCommune": "21576", + "libelleAcheminement": "ST THIBAULT", + "nomCommune": "ST THIBAULT" }, { - "codePostal": "25660", - "codeCommune": "25532", - "libelleAcheminement": "SAONE", - "nomCommune": "SAONE" + "codePostal": "23220", + "codeCommune": "23109", + "libelleAcheminement": "LINARD MALVAL", + "nomCommune": "LINARD MALVAL" }, { - "codePostal": "51270", - "codeCommune": "51186", - "libelleAcheminement": "COURJEONNET", - "nomCommune": "COURJEONNET" + "codePostal": "32230", + "codeCommune": "32217", + "libelleAcheminement": "LOUSLITGES", + "nomCommune": "LOUSLITGES" }, { - "codePostal": "63230", - "codeCommune": "63363", - "libelleAcheminement": "ST JACQUES D AMBUR", - "nomCommune": "ST JACQUES D AMBUR" + "codePostal": "32300", + "codeCommune": "32045", + "libelleAcheminement": "BERDOUES", + "nomCommune": "BERDOUES" }, { - "codePostal": "59494", - "codeCommune": "59459", - "libelleAcheminement": "PETITE FORET", - "nomCommune": "PETITE FORET" + "codePostal": "21410", + "codeCommune": "21578", + "libelleAcheminement": "ST VICTOR SUR OUCHE", + "nomCommune": "ST VICTOR SUR OUCHE" }, { - "codePostal": "25330", - "codeCommune": "25533", - "libelleAcheminement": "SARAZ", - "nomCommune": "SARAZ" + "codePostal": "23220", + "codeCommune": "23109", + "libelleAcheminement": "LINARD MALVAL", + "nomCommune": "LINARD MALVAL" }, { - "codePostal": "51390", - "codeCommune": "51188", - "libelleAcheminement": "COURMAS", - "nomCommune": "COURMAS" + "codePostal": "32290", + "codeCommune": "32219", + "libelleAcheminement": "LUPIAC", + "nomCommune": "LUPIAC" }, { - "codePostal": "63330", - "codeCommune": "63373", - "libelleAcheminement": "ST MAIGNER", - "nomCommune": "ST MAIGNER" + "codePostal": "32420", + "codeCommune": "32048", + "libelleAcheminement": "BETCAVE AGUIN", + "nomCommune": "BETCAVE AGUIN" }, { - "codePostal": "59710", - "codeCommune": "59466", - "libelleAcheminement": "PONT A MARCQ", - "nomCommune": "PONT A MARCQ" + "codePostal": "21210", + "codeCommune": "21584", + "libelleAcheminement": "SAULIEU", + "nomCommune": "SAULIEU" }, { - "codePostal": "25240", - "codeCommune": "25534", - "libelleAcheminement": "SARRAGEOIS", - "nomCommune": "SARRAGEOIS" + "codePostal": "23700", + "codeCommune": "23110", + "libelleAcheminement": "LIOUX LES MONGES", + "nomCommune": "LIOUX LES MONGES" }, { - "codePostal": "51800", - "codeCommune": "51191", - "libelleAcheminement": "COURTEMONT", - "nomCommune": "COURTEMONT" + "codePostal": "32110", + "codeCommune": "32220", + "libelleAcheminement": "LUPPE VIOLLES", + "nomCommune": "LUPPE VIOLLES" }, { - "codePostal": "63310", - "codeCommune": "63387", - "libelleAcheminement": "ST PRIEST BRAMEFANT", - "nomCommune": "ST PRIEST BRAMEFANT" + "codePostal": "32350", + "codeCommune": "32054", + "libelleAcheminement": "BIRAN", + "nomCommune": "BIRAN" }, { - "codePostal": "59990", - "codeCommune": "59471", - "libelleAcheminement": "PRESEAU", - "nomCommune": "PRESEAU" + "codePostal": "21910", + "codeCommune": "21585", + "libelleAcheminement": "SAULON LA CHAPELLE", + "nomCommune": "SAULON LA CHAPELLE" }, { - "codePostal": "25110", - "codeCommune": "25538", - "libelleAcheminement": "SECHIN", - "nomCommune": "SECHIN" + "codePostal": "23700", + "codeCommune": "23123", + "libelleAcheminement": "LES MARS", + "nomCommune": "LES MARS" }, { - "codePostal": "51700", - "codeCommune": "51192", - "libelleAcheminement": "COURTHIEZY", - "nomCommune": "COURTHIEZY" + "codePostal": "32380", + "codeCommune": "32223", + "libelleAcheminement": "MAGNAS", + "nomCommune": "MAGNAS" }, { - "codePostal": "63760", - "codeCommune": "63399", - "libelleAcheminement": "ST SULPICE", - "nomCommune": "ST SULPICE" + "codePostal": "32450", + "codeCommune": "32061", + "libelleAcheminement": "BOULAUR", + "nomCommune": "BOULAUR" }, { - "codePostal": "59267", - "codeCommune": "59476", - "libelleAcheminement": "PROVILLE", - "nomCommune": "PROVILLE" + "codePostal": "21500", + "codeCommune": "21594", + "libelleAcheminement": "SAVOISY", + "nomCommune": "SAVOISY" }, { - "codePostal": "25190", - "codeCommune": "25548", - "libelleAcheminement": "SOLEMONT", - "nomCommune": "SOLEMONT" + "codePostal": "23210", + "codeCommune": "23124", + "libelleAcheminement": "MARSAC", + "nomCommune": "MARSAC" }, { - "codePostal": "51600", - "codeCommune": "51197", - "libelleAcheminement": "LA CROIX EN CHAMPAGNE", - "nomCommune": "LA CROIX EN CHAMPAGNE" + "codePostal": "32140", + "codeCommune": "32228", + "libelleAcheminement": "MANENT MONTANE", + "nomCommune": "MANENT MONTANE" }, { - "codePostal": "63310", - "codeCommune": "63400", - "libelleAcheminement": "ST SYLVESTRE PRAGOULIN", - "nomCommune": "ST SYLVESTRE PRAGOULIN" + "codePostal": "32350", + "codeCommune": "32065", + "libelleAcheminement": "LE BROUILH MONBERT", + "nomCommune": "LE BROUILH MONBERT" }, { - "codePostal": "59161", - "codeCommune": "59492", - "libelleAcheminement": "RAMILLIES", - "nomCommune": "RAMILLIES" + "codePostal": "21250", + "codeCommune": "21607", + "libelleAcheminement": "SEURRE", + "nomCommune": "SEURRE" }, { - "codePostal": "25520", - "codeCommune": "25549", - "libelleAcheminement": "SOMBACOUR", - "nomCommune": "SOMBACOUR" + "codePostal": "23190", + "codeCommune": "23127", + "libelleAcheminement": "MAUTES", + "nomCommune": "MAUTES" }, { - "codePostal": "51400", - "codeCommune": "51205", - "libelleAcheminement": "DAMPIERRE AU TEMPLE", - "nomCommune": "DAMPIERRE AU TEMPLE" + "codePostal": "32190", + "codeCommune": "32231", + "libelleAcheminement": "MARAMBAT", + "nomCommune": "MARAMBAT" }, { - "codePostal": "63550", - "codeCommune": "63402", - "libelleAcheminement": "ST VICTOR MONTVIANEIX", - "nomCommune": "ST VICTOR MONTVIANEIX" + "codePostal": "32440", + "codeCommune": "32079", + "libelleAcheminement": "CASTELNAU D AUZAN LABARRERE", + "nomCommune": "CASTELNAU D AUZAN LABARRERE" }, { - "codePostal": "59360", - "codeCommune": "59496", - "libelleAcheminement": "REJET DE BEAULIEU", - "nomCommune": "REJET DE BEAULIEU" + "codePostal": "21120", + "codeCommune": "21614", + "libelleAcheminement": "SPOY", + "nomCommune": "SPOY" }, { - "codePostal": "25470", - "codeCommune": "25571", - "libelleAcheminement": "TREVILLERS", - "nomCommune": "TREVILLERS" + "codePostal": "23260", + "codeCommune": "23129", + "libelleAcheminement": "MAZIERE AUX BONS HOMMES", + "nomCommune": "LA MAZIERE AUX BONS HOMMES" }, { - "codePostal": "51300", - "codeCommune": "51215", - "libelleAcheminement": "DOMPREMY", - "nomCommune": "DOMPREMY" + "codePostal": "32150", + "codeCommune": "32236", + "libelleAcheminement": "MARGUESTAU", + "nomCommune": "MARGUESTAU" }, { - "codePostal": "63970", - "codeCommune": "63407", - "libelleAcheminement": "SAULZET LE FROID", - "nomCommune": "SAULZET LE FROID" + "codePostal": "32190", + "codeCommune": "32088", + "libelleAcheminement": "CASTILLON DEBATS", + "nomCommune": "CASTILLON DEBATS" }, { - "codePostal": "59122", - "codeCommune": "59499", - "libelleAcheminement": "REXPOEDE", - "nomCommune": "REXPOEDE" + "codePostal": "21240", + "codeCommune": "21617", + "libelleAcheminement": "TALANT", + "nomCommune": "TALANT" }, { - "codePostal": "25470", - "codeCommune": "25573", - "libelleAcheminement": "URTIERE", - "nomCommune": "URTIERE" + "codePostal": "23300", + "codeCommune": "23143", + "libelleAcheminement": "NOTH", + "nomCommune": "NOTH" }, { - "codePostal": "51340", - "codeCommune": "51218", - "libelleAcheminement": "VAL DE VIERE", - "nomCommune": "VAL DE VIERE" + "codePostal": "32170", + "codeCommune": "32238", + "libelleAcheminement": "MARSEILLAN", + "nomCommune": "MARSEILLAN" }, { - "codePostal": "63560", - "codeCommune": "63428", - "libelleAcheminement": "TEILHET", - "nomCommune": "TEILHET" + "codePostal": "32360", + "codeCommune": "32089", + "libelleAcheminement": "CASTILLON MASSAS", + "nomCommune": "CASTILLON MASSAS" }, { - "codePostal": "59159", - "codeCommune": "59500", - "libelleAcheminement": "RIBECOURT LA TOUR", - "nomCommune": "RIBECOURT LA TOUR" + "codePostal": "21290", + "codeCommune": "21626", + "libelleAcheminement": "TERREFONDREE", + "nomCommune": "TERREFONDREE" }, { - "codePostal": "25160", - "codeCommune": "25592", - "libelleAcheminement": "VAUX ET CHANTEGRUE", - "nomCommune": "VAUX ET CHANTEGRUE" + "codePostal": "23170", + "codeCommune": "23145", + "libelleAcheminement": "NOUHANT", + "nomCommune": "NOUHANT" }, { - "codePostal": "51300", - "codeCommune": "51224", - "libelleAcheminement": "ECRIENNES", - "nomCommune": "ECRIENNES" + "codePostal": "32700", + "codeCommune": "32239", + "libelleAcheminement": "MARSOLAN", + "nomCommune": "MARSOLAN" }, { - "codePostal": "63600", - "codeCommune": "63431", - "libelleAcheminement": "THIOLIERES", - "nomCommune": "THIOLIERES" + "codePostal": "32400", + "codeCommune": "32093", + "libelleAcheminement": "CAUMONT", + "nomCommune": "CAUMONT" }, { - "codePostal": "59870", - "codeCommune": "59501", - "libelleAcheminement": "RIEULAY", - "nomCommune": "RIEULAY" + "codePostal": "21350", + "codeCommune": "21633", + "libelleAcheminement": "THOREY SOUS CHARNY", + "nomCommune": "THOREY SOUS CHARNY" }, { - "codePostal": "25660", - "codeCommune": "25611", - "libelleAcheminement": "LA VEZE", - "nomCommune": "LA VEZE" + "codePostal": "23130", + "codeCommune": "23152", + "libelleAcheminement": "PIERREFITTE", + "nomCommune": "PIERREFITTE" }, { - "codePostal": "51240", - "codeCommune": "51227", - "libelleAcheminement": "ECURY SUR COOLE", - "nomCommune": "ECURY SUR COOLE" + "codePostal": "32400", + "codeCommune": "32244", + "libelleAcheminement": "MAULICHERES", + "nomCommune": "MAULICHERES" }, { - "codePostal": "63470", - "codeCommune": "63433", - "libelleAcheminement": "TORTEBESSE", - "nomCommune": "TORTEBESSE" + "codePostal": "32110", + "codeCommune": "32094", + "libelleAcheminement": "CAUPENNE D ARMAGNAC", + "nomCommune": "CAUPENNE D ARMAGNAC" }, { - "codePostal": "59172", - "codeCommune": "59504", - "libelleAcheminement": "ROEULX", - "nomCommune": "ROEULX" + "codePostal": "21360", + "codeCommune": "21634", + "libelleAcheminement": "THOREY SUR OUCHE", + "nomCommune": "THOREY SUR OUCHE" }, { - "codePostal": "25340", - "codeCommune": "25613", - "libelleAcheminement": "VIETHOREY", - "nomCommune": "VIETHOREY" + "codePostal": "23250", + "codeCommune": "23157", + "libelleAcheminement": "LA POUGE", + "nomCommune": "LA POUGE" }, { - "codePostal": "51200", - "codeCommune": "51230", - "libelleAcheminement": "EPERNAY", - "nomCommune": "EPERNAY" + "codePostal": "32240", + "codeCommune": "32246", + "libelleAcheminement": "MAUPAS", + "nomCommune": "MAUPAS" }, { - "codePostal": "63490", - "codeCommune": "63439", - "libelleAcheminement": "USSON", - "nomCommune": "USSON" + "codePostal": "32140", + "codeCommune": "32103", + "libelleAcheminement": "CHELAN", + "nomCommune": "CHELAN" }, { - "codePostal": "59790", - "codeCommune": "59507", - "libelleAcheminement": "RONCHIN", - "nomCommune": "RONCHIN" + "codePostal": "21500", + "codeCommune": "21641", + "libelleAcheminement": "TOUILLON", + "nomCommune": "TOUILLON" }, { - "codePostal": "25240", - "codeCommune": "25619", - "libelleAcheminement": "LES VILLEDIEU", - "nomCommune": "LES VILLEDIEU" + "codePostal": "23500", + "codeCommune": "23158", + "libelleAcheminement": "POUSSANGES", + "nomCommune": "POUSSANGES" }, { - "codePostal": "51320", - "codeCommune": "51244", - "libelleAcheminement": "FAUX VESIGNEUL", - "nomCommune": "FAUX VESIGNEUL" + "codePostal": "32420", + "codeCommune": "32250", + "libelleAcheminement": "MEILHAN", + "nomCommune": "MEILHAN" }, { - "codePostal": "63610", - "codeCommune": "63440", - "libelleAcheminement": "VALBELEIX", - "nomCommune": "VALBELEIX" + "codePostal": "32300", + "codeCommune": "32104", + "libelleAcheminement": "CLERMONT POUYGUILLES", + "nomCommune": "CLERMONT POUYGUILLES" }, { - "codePostal": "59230", - "codeCommune": "59526", - "libelleAcheminement": "ST AMAND LES EAUX", - "nomCommune": "ST AMAND LES EAUX" + "codePostal": "21130", + "codeCommune": "21643", + "libelleAcheminement": "TRECLUN", + "nomCommune": "TRECLUN" }, { - "codePostal": "25530", - "codeCommune": "25623", - "libelleAcheminement": "VILLERS CHIEF", - "nomCommune": "VILLERS CHIEF" + "codePostal": "23460", + "codeCommune": "23165", + "libelleAcheminement": "ROYERE DE VASSIVIERE", + "nomCommune": "ROYERE DE VASSIVIERE" }, { - "codePostal": "51190", - "codeCommune": "51251", - "libelleAcheminement": "FLAVIGNY", - "nomCommune": "FLAVIGNY" + "codePostal": "32360", + "codeCommune": "32251", + "libelleAcheminement": "MERENS", + "nomCommune": "MERENS" }, { - "codePostal": "63720", - "codeCommune": "63443", - "libelleAcheminement": "VARENNES SUR MORGE", - "nomCommune": "VARENNES SUR MORGE" + "codePostal": "32220", + "codeCommune": "32124", + "libelleAcheminement": "ESPAON", + "nomCommune": "ESPAON" }, { - "codePostal": "59188", - "codeCommune": "59528", - "libelleAcheminement": "ST AUBERT", - "nomCommune": "ST AUBERT" + "codePostal": "21440", + "codeCommune": "21659", + "libelleAcheminement": "VAUX SAULES", + "nomCommune": "VAUX SAULES" }, { - "codePostal": "25510", - "codeCommune": "25625", - "libelleAcheminement": "VILLERS LA COMBE", - "nomCommune": "VILLERS LA COMBE" + "codePostal": "23400", + "codeCommune": "23181", + "libelleAcheminement": "ST AMAND JARTOUDEIX", + "nomCommune": "ST AMAND JARTOUDEIX" }, { - "codePostal": "51120", - "codeCommune": "51254", - "libelleAcheminement": "FONTAINE DENIS NUISY", - "nomCommune": "FONTAINE DENIS NUISY" + "codePostal": "32390", + "codeCommune": "32255", + "libelleAcheminement": "MIRAMONT LATOUR", + "nomCommune": "MIRAMONT LATOUR" }, { - "codePostal": "63260", - "codeCommune": "63446", - "libelleAcheminement": "VENSAT", - "nomCommune": "VENSAT" + "codePostal": "32170", + "codeCommune": "32126", + "libelleAcheminement": "ESTAMPES", + "nomCommune": "ESTAMPES" }, { - "codePostal": "59163", - "codeCommune": "59530", - "libelleAcheminement": "ST AYBERT", - "nomCommune": "ST AYBERT" + "codePostal": "21350", + "codeCommune": "21662", + "libelleAcheminement": "VELOGNY", + "nomCommune": "VELOGNY" }, { - "codePostal": "25270", - "codeCommune": "25627", - "libelleAcheminement": "VILLERS SOUS CHALAMONT", - "nomCommune": "VILLERS SOUS CHALAMONT" + "codePostal": "23130", + "codeCommune": "23187", + "libelleAcheminement": "ST DIZIER LA TOUR", + "nomCommune": "ST DIZIER LA TOUR" }, { - "codePostal": "51300", - "codeCommune": "51262", - "libelleAcheminement": "FRIGNICOURT", - "nomCommune": "FRIGNICOURT" + "codePostal": "32350", + "codeCommune": "32257", + "libelleAcheminement": "MIRANNES", + "nomCommune": "MIRANNES" }, { - "codePostal": "63580", - "codeCommune": "63448", - "libelleAcheminement": "LE VERNET CHAMEANE", - "nomCommune": "LE VERNET CHAMEANE" + "codePostal": "32240", + "codeCommune": "32127", + "libelleAcheminement": "ESTANG", + "nomCommune": "ESTANG" }, { - "codePostal": "59820", - "codeCommune": "59532", - "libelleAcheminement": "ST GEORGES SUR L AA", - "nomCommune": "ST GEORGES SUR L AA" + "codePostal": "21150", + "codeCommune": "21663", + "libelleAcheminement": "VENAREY LES LAUMES", + "nomCommune": "VENAREY LES LAUMES" }, { - "codePostal": "25420", - "codeCommune": "25632", - "libelleAcheminement": "VOUJEAUCOURT", - "nomCommune": "VOUJEAUCOURT" + "codePostal": "23290", + "codeCommune": "23192", + "libelleAcheminement": "FURSAC", + "nomCommune": "FURSAC" }, { - "codePostal": "51210", - "codeCommune": "51264", - "libelleAcheminement": "LE GAULT SOIGNY", - "nomCommune": "LE GAULT SOIGNY" + "codePostal": "32390", + "codeCommune": "32258", + "libelleAcheminement": "MIREPOIX", + "nomCommune": "MIREPOIX" }, { - "codePostal": "63250", - "codeCommune": "63463", - "libelleAcheminement": "VISCOMTAT", - "nomCommune": "VISCOMTAT" + "codePostal": "32400", + "codeCommune": "32161", + "libelleAcheminement": "IZOTGES", + "nomCommune": "IZOTGES" }, { - "codePostal": "59292", - "codeCommune": "59533", - "libelleAcheminement": "ST HILAIRE LEZ CAMBRAI", - "nomCommune": "ST HILAIRE LEZ CAMBRAI" + "codePostal": "21120", + "codeCommune": "21666", + "libelleAcheminement": "VERNOT", + "nomCommune": "VERNOT" }, { - "codePostal": "25300", - "codeCommune": "25634", - "libelleAcheminement": "VUILLECIN", - "nomCommune": "VUILLECIN" + "codePostal": "23500", + "codeCommune": "23196", + "libelleAcheminement": "ST FRION", + "nomCommune": "ST FRION" }, { - "codePostal": "51290", - "codeCommune": "51277", - "libelleAcheminement": "STE MARIE DU LAC NUISEMENT", - "nomCommune": "STE MARIE DU LAC NUISEMENT" + "codePostal": "32420", + "codeCommune": "32260", + "libelleAcheminement": "MONBARDON", + "nomCommune": "MONBARDON" }, { - "codePostal": "63120", - "codeCommune": "63468", - "libelleAcheminement": "VOLLORE MONTAGNE", - "nomCommune": "VOLLORE MONTAGNE" + "codePostal": "32300", + "codeCommune": "32177", + "libelleAcheminement": "LAGARDE HACHAN", + "nomCommune": "LAGARDE HACHAN" }, { - "codePostal": "59440", - "codeCommune": "59534", - "libelleAcheminement": "ST HILAIRE SUR HELPE", - "nomCommune": "ST HILAIRE SUR HELPE" + "codePostal": "21330", + "codeCommune": "21671", + "libelleAcheminement": "VERTAULT", + "nomCommune": "VERTAULT" }, { - "codePostal": "26800", - "codeCommune": "26007", - "libelleAcheminement": "AMBONIL", - "nomCommune": "AMBONIL" + "codePostal": "23500", + "codeCommune": "23198", + "libelleAcheminement": "ST GEORGES NIGREMONT", + "nomCommune": "ST GEORGES NIGREMONT" }, { - "codePostal": "51800", - "codeCommune": "51280", - "libelleAcheminement": "GRATREUIL", - "nomCommune": "GRATREUIL" + "codePostal": "32130", + "codeCommune": "32261", + "libelleAcheminement": "MONBLANC", + "nomCommune": "MONBLANC" }, { - "codePostal": "63700", - "codeCommune": "63471", - "libelleAcheminement": "YOUX", - "nomCommune": "YOUX" + "codePostal": "32450", + "codeCommune": "32198", + "libelleAcheminement": "LARTIGUE", + "nomCommune": "LARTIGUE" }, { - "codePostal": "59330", - "codeCommune": "59543", - "libelleAcheminement": "ST REMY DU NORD", - "nomCommune": "ST REMY DU NORD" + "codePostal": "21360", + "codeCommune": "21673", + "libelleAcheminement": "VEUVEY SUR OUCHE", + "nomCommune": "VEUVEY SUR OUCHE" }, { - "codePostal": "26470", - "codeCommune": "26012", - "libelleAcheminement": "ARNAYON", - "nomCommune": "ARNAYON" + "codePostal": "23110", + "codeCommune": "23203", + "libelleAcheminement": "ST JULIEN LA GENETE", + "nomCommune": "ST JULIEN LA GENETE" }, { - "codePostal": "51110", - "codeCommune": "51299", - "libelleAcheminement": "ISLES SUR SUIPPE", - "nomCommune": "ISLES SUR SUIPPE" + "codePostal": "32220", + "codeCommune": "32277", + "libelleAcheminement": "MONTAMAT", + "nomCommune": "MONTAMAT" }, { - "codePostal": "64210", - "codeCommune": "64009", - "libelleAcheminement": "AHETZE", - "nomCommune": "AHETZE" + "codePostal": "32550", + "codeCommune": "32201", + "libelleAcheminement": "LASSEUBE PROPRE", + "nomCommune": "LASSEUBE PROPRE" }, { - "codePostal": "59360", - "codeCommune": "59545", - "libelleAcheminement": "ST SOUPLET", - "nomCommune": "ST SOUPLET" + "codePostal": "21140", + "codeCommune": "21676", + "libelleAcheminement": "VIC DE CHASSENAY", + "nomCommune": "VIC DE CHASSENAY" }, { - "codePostal": "26340", - "codeCommune": "26019", - "libelleAcheminement": "AUREL", - "nomCommune": "AUREL" + "codePostal": "23130", + "codeCommune": "23204", + "libelleAcheminement": "ST JULIEN LE CHATEL", + "nomCommune": "ST JULIEN LE CHATEL" }, { - "codePostal": "51390", - "codeCommune": "51310", - "libelleAcheminement": "JOUY LES REIMS", - "nomCommune": "JOUY LES REIMS" + "codePostal": "32300", + "codeCommune": "32278", + "libelleAcheminement": "MONTAUT", + "nomCommune": "MONTAUT" }, { - "codePostal": "64130", - "codeCommune": "64012", - "libelleAcheminement": "AINHARP", - "nomCommune": "AINHARP" + "codePostal": "32700", + "codeCommune": "32208", + "libelleAcheminement": "LECTOURE", + "nomCommune": "LECTOURE" }, { - "codePostal": "59496", - "codeCommune": "59550", - "libelleAcheminement": "SALOME", - "nomCommune": "SALOME" + "codePostal": "21450", + "codeCommune": "21685", + "libelleAcheminement": "VILLAINES EN DUESMOIS", + "nomCommune": "VILLAINES EN DUESMOIS" }, { - "codePostal": "26400", - "codeCommune": "26021", - "libelleAcheminement": "AUTICHAMP", - "nomCommune": "AUTICHAMP" + "codePostal": "23460", + "codeCommune": "23216", + "libelleAcheminement": "ST MARTIN CHATEAU", + "nomCommune": "ST MARTIN CHATEAU" }, { - "codePostal": "51150", - "codeCommune": "51312", - "libelleAcheminement": "JUVIGNY", - "nomCommune": "JUVIGNY" + "codePostal": "32170", + "codeCommune": "32281", + "libelleAcheminement": "MONT DE MARRAST", + "nomCommune": "MONT DE MARRAST" }, { - "codePostal": "64120", - "codeCommune": "64018", - "libelleAcheminement": "AMENDEUIX ONEIX", - "nomCommune": "AMENDEUIX ONEIX" + "codePostal": "32140", + "codeCommune": "32216", + "libelleAcheminement": "LOURTIES MONBRUN", + "nomCommune": "LOURTIES MONBRUN" }, { - "codePostal": "59310", - "codeCommune": "59551", - "libelleAcheminement": "SAMEON", - "nomCommune": "SAMEON" + "codePostal": "21500", + "codeCommune": "21686", + "libelleAcheminement": "VILLAINES LES PREVOTES", + "nomCommune": "VILLAINES LES PREVOTES" }, { - "codePostal": "26310", - "codeCommune": "26025", - "libelleAcheminement": "BARNAVE", - "nomCommune": "BARNAVE" + "codePostal": "23100", + "codeCommune": "23221", + "libelleAcheminement": "ST MERD LA BREUILLE", + "nomCommune": "ST MERD LA BREUILLE" }, { - "codePostal": "51290", - "codeCommune": "51315", - "libelleAcheminement": "LANDRICOURT", - "nomCommune": "LANDRICOURT" + "codePostal": "32550", + "codeCommune": "32282", + "libelleAcheminement": "MONTEGUT", + "nomCommune": "MONTEGUT" }, { - "codePostal": "64120", - "codeCommune": "64019", - "libelleAcheminement": "AMOROTS SUCCOS", - "nomCommune": "AMOROTS SUCCOS" + "codePostal": "32270", + "codeCommune": "32221", + "libelleAcheminement": "LUSSAN", + "nomCommune": "LUSSAN" }, { - "codePostal": "59211", - "codeCommune": "59553", - "libelleAcheminement": "SANTES", - "nomCommune": "SANTES" + "codePostal": "21700", + "codeCommune": "21691", + "libelleAcheminement": "VILLEBICHOT", + "nomCommune": "VILLEBICHOT" }, { - "codePostal": "26310", - "codeCommune": "26036", - "libelleAcheminement": "BEAUMONT EN DIOIS", - "nomCommune": "BEAUMONT EN DIOIS" + "codePostal": "23400", + "codeCommune": "23227", + "libelleAcheminement": "ST PARDOUX MORTEROLLES", + "nomCommune": "ST PARDOUX MORTEROLLES" }, { - "codePostal": "51600", - "codeCommune": "51317", - "libelleAcheminement": "LAVAL SUR TOURBE", - "nomCommune": "LAVAL SUR TOURBE" + "codePostal": "32110", + "codeCommune": "32296", + "libelleAcheminement": "NOGARO", + "nomCommune": "NOGARO" }, { - "codePostal": "64420", - "codeCommune": "64021", - "libelleAcheminement": "ANDOINS", - "nomCommune": "ANDOINS" + "codePostal": "32110", + "codeCommune": "32222", + "libelleAcheminement": "MAGNAN", + "nomCommune": "MAGNAN" }, { - "codePostal": "59174", - "codeCommune": "59564", - "libelleAcheminement": "LA SENTINELLE", - "nomCommune": "LA SENTINELLE" + "codePostal": "21350", + "codeCommune": "21694", + "libelleAcheminement": "VILLEFERRY", + "nomCommune": "VILLEFERRY" }, { - "codePostal": "26760", - "codeCommune": "26037", - "libelleAcheminement": "BEAUMONT LES VALENCE", - "nomCommune": "BEAUMONT LES VALENCE" + "codePostal": "23200", + "codeCommune": "23228", + "libelleAcheminement": "ST PARDOUX LE NEUF", + "nomCommune": "ST PARDOUX LE NEUF" }, { - "codePostal": "51300", - "codeCommune": "51328", - "libelleAcheminement": "LOISY SUR MARNE", - "nomCommune": "LOISY SUR MARNE" + "codePostal": "32260", + "codeCommune": "32302", + "libelleAcheminement": "ORNEZAN", + "nomCommune": "ORNEZAN" }, { - "codePostal": "64510", - "codeCommune": "64023", - "libelleAcheminement": "ANGAIS", - "nomCommune": "ANGAIS" + "codePostal": "32310", + "codeCommune": "32224", + "libelleAcheminement": "MAIGNAUT TAUZIA", + "nomCommune": "MAIGNAUT TAUZIA" }, { - "codePostal": "59173", - "codeCommune": "59568", - "libelleAcheminement": "SERCUS", - "nomCommune": "SERCUS" + "codePostal": "21400", + "codeCommune": "21706", + "libelleAcheminement": "VILLOTTE SUR OURCE", + "nomCommune": "VILLOTTE SUR OURCE" }, { - "codePostal": "26300", - "codeCommune": "26039", - "libelleAcheminement": "BEAUREGARD BARET", - "nomCommune": "BEAUREGARD BARET" + "codePostal": "23240", + "codeCommune": "23236", + "libelleAcheminement": "ST PRIEST LA PLAINE", + "nomCommune": "ST PRIEST LA PLAINE" }, { - "codePostal": "51300", - "codeCommune": "51334", - "libelleAcheminement": "LUXEMONT ET VILLOTTE", - "nomCommune": "LUXEMONT ET VILLOTTE" + "codePostal": "32500", + "codeCommune": "32306", + "libelleAcheminement": "PAUILHAC", + "nomCommune": "PAUILHAC" }, { - "codePostal": "64220", - "codeCommune": "64026", - "libelleAcheminement": "ANHAUX", - "nomCommune": "ANHAUX" + "codePostal": "32730", + "codeCommune": "32225", + "libelleAcheminement": "MALABAT", + "nomCommune": "MALABAT" }, { - "codePostal": "59450", - "codeCommune": "59569", - "libelleAcheminement": "SIN LE NOBLE", - "nomCommune": "SIN LE NOBLE" + "codePostal": "22100", + "codeCommune": "22003", + "libelleAcheminement": "AUCALEUC", + "nomCommune": "AUCALEUC" }, { - "codePostal": "26310", - "codeCommune": "26040", - "libelleAcheminement": "BEAURIERES", - "nomCommune": "BEAURIERES" + "codePostal": "23600", + "codeCommune": "23240", + "libelleAcheminement": "ST SILVAIN BAS LE ROC", + "nomCommune": "ST SILVAIN BAS LE ROC" }, { - "codePostal": "51170", - "codeCommune": "51337", - "libelleAcheminement": "MAGNEUX", - "nomCommune": "MAGNEUX" + "codePostal": "32550", + "codeCommune": "32307", + "libelleAcheminement": "PAVIE", + "nomCommune": "PAVIE" }, { - "codePostal": "64190", - "codeCommune": "64033", - "libelleAcheminement": "ARAUX", - "nomCommune": "ARAUX" + "codePostal": "32170", + "codeCommune": "32226", + "libelleAcheminement": "MANAS BASTANOUS", + "nomCommune": "MANAS BASTANOUS" }, { - "codePostal": "59380", - "codeCommune": "59570", - "libelleAcheminement": "SOCX", - "nomCommune": "SOCX" + "codePostal": "22140", + "codeCommune": "22004", + "libelleAcheminement": "BEGARD", + "nomCommune": "BEGARD" }, { - "codePostal": "26800", - "codeCommune": "26042", - "libelleAcheminement": "BEAUVALLON", - "nomCommune": "BEAUVALLON" + "codePostal": "23000", + "codeCommune": "23248", + "libelleAcheminement": "ST VICTOR EN MARCHE", + "nomCommune": "ST VICTOR EN MARCHE" }, { - "codePostal": "51340", - "codeCommune": "51358", - "libelleAcheminement": "MAURUPT LE MONTOIS", - "nomCommune": "MAURUPT LE MONTOIS" + "codePostal": "32130", + "codeCommune": "32308", + "libelleAcheminement": "PEBEES", + "nomCommune": "PEBEES" }, { - "codePostal": "64120", - "codeCommune": "64045", - "libelleAcheminement": "ARHANSUS", - "nomCommune": "ARHANSUS" + "codePostal": "32200", + "codeCommune": "32247", + "libelleAcheminement": "MAURENS", + "nomCommune": "MAURENS" }, { - "codePostal": "59189", - "codeCommune": "59578", - "libelleAcheminement": "STEENBECQUE", - "nomCommune": "STEENBECQUE" + "codePostal": "22810", + "codeCommune": "22005", + "libelleAcheminement": "BELLE ISLE EN TERRE", + "nomCommune": "BELLE ISLE EN TERRE" }, { - "codePostal": "26170", - "codeCommune": "26043", - "libelleAcheminement": "BEAUVOISIN", - "nomCommune": "BEAUVOISIN" + "codePostal": "23460", + "codeCommune": "23249", + "libelleAcheminement": "ST YRIEIX LA MONTAGNE", + "nomCommune": "ST YRIEIX LA MONTAGNE" }, { - "codePostal": "51800", - "codeCommune": "51368", - "libelleAcheminement": "MINAUCOURT LE MESNIL LES HURLUS", - "nomCommune": "MINAUCOURT LE MESNIL LES HURLUS" + "codePostal": "32230", + "codeCommune": "32317", + "libelleAcheminement": "PEYRUSSE VIEILLE", + "nomCommune": "PEYRUSSE VIEILLE" }, { - "codePostal": "64370", - "codeCommune": "64057", - "libelleAcheminement": "ARTHEZ DE BEARN", - "nomCommune": "ARTHEZ DE BEARN" + "codePostal": "32340", + "codeCommune": "32253", + "libelleAcheminement": "MIRADOUX", + "nomCommune": "MIRADOUX" }, { - "codePostal": "59114", - "codeCommune": "59580", - "libelleAcheminement": "STEENVOORDE", - "nomCommune": "STEENVOORDE" + "codePostal": "22170", + "codeCommune": "22011", + "libelleAcheminement": "BOQUEHO", + "nomCommune": "BOQUEHO" }, { - "codePostal": "26160", - "codeCommune": "26052", - "libelleAcheminement": "BONLIEU SUR ROUBION", - "nomCommune": "BONLIEU SUR ROUBION" + "codePostal": "23170", + "codeCommune": "23261", + "libelleAcheminement": "VIERSAT", + "nomCommune": "VIERSAT" }, { - "codePostal": "51800", - "codeCommune": "51370", - "libelleAcheminement": "MOIREMONT", - "nomCommune": "MOIREMONT" + "codePostal": "32130", + "codeCommune": "32321", + "libelleAcheminement": "POLASTRON", + "nomCommune": "POLASTRON" }, { - "codePostal": "64800", - "codeCommune": "64058", - "libelleAcheminement": "ARTHEZ D ASSON", - "nomCommune": "ARTHEZ D ASSON" + "codePostal": "32300", + "codeCommune": "32254", + "libelleAcheminement": "MIRAMONT D ASTARAC", + "nomCommune": "MIRAMONT D ASTARAC" }, { - "codePostal": "59181", - "codeCommune": "59581", - "libelleAcheminement": "STEENWERCK", - "nomCommune": "STEENWERCK" + "codePostal": "22510", + "codeCommune": "22015", + "libelleAcheminement": "BREHAND", + "nomCommune": "BREHAND" }, { - "codePostal": "26410", - "codeCommune": "26055", - "libelleAcheminement": "BOULC", - "nomCommune": "BOULC" + "codePostal": "24300", + "codeCommune": "24001", + "libelleAcheminement": "ABJAT SUR BANDIAT", + "nomCommune": "ABJAT SUR BANDIAT" }, { - "codePostal": "51120", - "codeCommune": "51374", - "libelleAcheminement": "MONDEMENT MONTGIVROUX", - "nomCommune": "MONDEMENT MONTGIVROUX" + "codePostal": "32800", + "codeCommune": "32338", + "libelleAcheminement": "RAMOUZENS", + "nomCommune": "RAMOUZENS" }, { - "codePostal": "64260", - "codeCommune": "64062", - "libelleAcheminement": "ARUDY", - "nomCommune": "ARUDY" + "codePostal": "32300", + "codeCommune": "32256", + "libelleAcheminement": "MIRANDE", + "nomCommune": "MIRANDE" }, { - "codePostal": "59270", - "codeCommune": "59582", - "libelleAcheminement": "STRAZEELE", - "nomCommune": "STRAZEELE" + "codePostal": "22100", + "codeCommune": "22026", + "libelleAcheminement": "CALORGUEN", + "nomCommune": "CALORGUEN" }, { - "codePostal": "26190", - "codeCommune": "26059", - "libelleAcheminement": "BOUVANTE", - "nomCommune": "BOUVANTE" + "codePostal": "24210", + "codeCommune": "24004", + "libelleAcheminement": "AJAT", + "nomCommune": "AJAT" }, { - "codePostal": "51500", - "codeCommune": "51375", - "libelleAcheminement": "MONTBRE", - "nomCommune": "MONTBRE" + "codePostal": "32390", + "codeCommune": "32341", + "libelleAcheminement": "REJAUMONT", + "nomCommune": "REJAUMONT" }, { - "codePostal": "64310", - "codeCommune": "64065", - "libelleAcheminement": "ASCAIN", - "nomCommune": "ASCAIN" + "codePostal": "32600", + "codeCommune": "32262", + "libelleAcheminement": "MONBRUN", + "nomCommune": "MONBRUN" }, { - "codePostal": "59114", - "codeCommune": "59587", - "libelleAcheminement": "TERDEGHEM", - "nomCommune": "TERDEGHEM" + "codePostal": "22480", + "codeCommune": "22029", + "libelleAcheminement": "CANIHUEL", + "nomCommune": "CANIHUEL" }, { - "codePostal": "26170", - "codeCommune": "26063", - "libelleAcheminement": "BUIS LES BARONNIES", - "nomCommune": "BUIS LES BARONNIES" + "codePostal": "24260", + "codeCommune": "24015", + "libelleAcheminement": "AUDRIX", + "nomCommune": "AUDRIX" }, { - "codePostal": "51210", - "codeCommune": "51380", - "libelleAcheminement": "MONTMIRAIL", - "nomCommune": "MONTMIRAIL" + "codePostal": "32400", + "codeCommune": "32344", + "libelleAcheminement": "RISCLE", + "nomCommune": "RISCLE" }, { - "codePostal": "64450", - "codeCommune": "64070", - "libelleAcheminement": "ASTIS", - "nomCommune": "ASTIS" + "codePostal": "32300", + "codeCommune": "32263", + "libelleAcheminement": "MONCASSIN", + "nomCommune": "MONCASSIN" }, { - "codePostal": "59380", - "codeCommune": "59588", - "libelleAcheminement": "TETEGHEM COUDEKERQUE VILLAGE", - "nomCommune": "TETEGHEM COUDEKERQUE VILLAGE" + "codePostal": "22970", + "codeCommune": "22040", + "libelleAcheminement": "COADOUT", + "nomCommune": "COADOUT" }, { - "codePostal": "26190", - "codeCommune": "26066", - "libelleAcheminement": "LE CHAFFAL", - "nomCommune": "LE CHAFFAL" + "codePostal": "24210", + "codeCommune": "24019", + "libelleAcheminement": "AZERAT", + "nomCommune": "AZERAT" }, { - "codePostal": "51270", - "codeCommune": "51381", - "libelleAcheminement": "MONTMORT LUCY", - "nomCommune": "MONTMORT LUCY" + "codePostal": "32430", + "codeCommune": "32349", + "libelleAcheminement": "ROQUELAURE ST AUBIN", + "nomCommune": "ROQUELAURE ST AUBIN" }, { - "codePostal": "64390", - "codeCommune": "64071", - "libelleAcheminement": "ATHOS ASPIS", - "nomCommune": "ATHOS ASPIS" + "codePostal": "32300", + "codeCommune": "32265", + "libelleAcheminement": "MONCLAR SUR LOSSE", + "nomCommune": "MONCLAR SUR LOSSE" }, { - "codePostal": "59189", - "codeCommune": "59590", - "libelleAcheminement": "THIENNES", - "nomCommune": "THIENNES" + "codePostal": "22330", + "codeCommune": "22046", + "libelleAcheminement": "LE MENE", + "nomCommune": "LE MENE" }, { - "codePostal": "26470", - "codeCommune": "26067", - "libelleAcheminement": "CHALANCON", - "nomCommune": "CHALANCON" + "codePostal": "24150", + "codeCommune": "24022", + "libelleAcheminement": "BADEFOLS SUR DORDOGNE", + "nomCommune": "BADEFOLS SUR DORDOGNE" }, { - "codePostal": "51400", - "codeCommune": "51389", - "libelleAcheminement": "MOURMELON LE PETIT", - "nomCommune": "MOURMELON LE PETIT" + "codePostal": "32100", + "codeCommune": "32350", + "libelleAcheminement": "ROQUEPINE", + "nomCommune": "ROQUEPINE" }, { - "codePostal": "64270", - "codeCommune": "64082", - "libelleAcheminement": "AUTERRIVE", - "nomCommune": "AUTERRIVE" + "codePostal": "32240", + "codeCommune": "32274", + "libelleAcheminement": "MONLEZUN D ARMAGNAC", + "nomCommune": "MONLEZUN D ARMAGNAC" }, { - "codePostal": "59163", - "codeCommune": "59591", - "libelleAcheminement": "THIVENCELLE", - "nomCommune": "THIVENCELLE" + "codePostal": "22330", + "codeCommune": "22046", + "libelleAcheminement": "LE MENE", + "nomCommune": "LE MENE" }, { - "codePostal": "26350", - "codeCommune": "26068", - "libelleAcheminement": "LE CHALON", - "nomCommune": "LE CHALON" + "codePostal": "24330", + "codeCommune": "24026", + "libelleAcheminement": "BASSILLAC ET AUBEROCHE", + "nomCommune": "BASSILLAC ET AUBEROCHE" }, { - "codePostal": "51530", - "codeCommune": "51390", - "libelleAcheminement": "MOUSSY", - "nomCommune": "MOUSSY" + "codePostal": "32170", + "codeCommune": "32355", + "libelleAcheminement": "SADEILLAN", + "nomCommune": "SADEILLAN" }, { - "codePostal": "64520", - "codeCommune": "64094", - "libelleAcheminement": "BARDOS", - "nomCommune": "BARDOS" + "codePostal": "32730", + "codeCommune": "32283", + "libelleAcheminement": "MONTEGUT ARROS", + "nomCommune": "MONTEGUT ARROS" }, { - "codePostal": "59239", - "codeCommune": "59592", - "libelleAcheminement": "THUMERIES", - "nomCommune": "THUMERIES" + "codePostal": "22100", + "codeCommune": "22050", + "libelleAcheminement": "DINAN", + "nomCommune": "DINAN" }, { - "codePostal": "26300", - "codeCommune": "26079", - "libelleAcheminement": "CHARPEY", - "nomCommune": "CHARPEY" + "codePostal": "24440", + "codeCommune": "24028", + "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", + "nomCommune": "BEAUMONTOIS EN PERIGORD" }, { - "codePostal": "51160", - "codeCommune": "51392", - "libelleAcheminement": "MUTIGNY", - "nomCommune": "MUTIGNY" + "codePostal": "32430", + "codeCommune": "32357", + "libelleAcheminement": "STE ANNE", + "nomCommune": "STE ANNE" }, { - "codePostal": "64200", - "codeCommune": "64100", - "libelleAcheminement": "BASSUSSARRY", - "nomCommune": "BASSUSSARRY" + "codePostal": "32200", + "codeCommune": "32288", + "libelleAcheminement": "MONTIRON", + "nomCommune": "MONTIRON" }, { - "codePostal": "59158", - "codeCommune": "59594", - "libelleAcheminement": "THUN ST AMAND", - "nomCommune": "THUN ST AMAND" + "codePostal": "22290", + "codeCommune": "22057", + "libelleAcheminement": "LE FAOUET", + "nomCommune": "LE FAOUET" }, { - "codePostal": "26120", - "codeCommune": "26081", - "libelleAcheminement": "CHATEAUDOUBLE", - "nomCommune": "CHATEAUDOUBLE" + "codePostal": "24400", + "codeCommune": "24029", + "libelleAcheminement": "BEAUPOUYET", + "nomCommune": "BEAUPOUYET" }, { - "codePostal": "51480", - "codeCommune": "51393", - "libelleAcheminement": "NANTEUIL LA FORET", - "nomCommune": "NANTEUIL LA FORET" + "codePostal": "32120", + "codeCommune": "32359", + "libelleAcheminement": "ST ANTONIN", + "nomCommune": "ST ANTONIN" }, { - "codePostal": "64100", - "codeCommune": "64102", - "libelleAcheminement": "BAYONNE", - "nomCommune": "BAYONNE" + "codePostal": "32240", + "codeCommune": "32291", + "libelleAcheminement": "MORMES", + "nomCommune": "MORMES" }, { - "codePostal": "59218", - "codeCommune": "59607", - "libelleAcheminement": "VENDEGIES AU BOIS", - "nomCommune": "VENDEGIES AU BOIS" + "codePostal": "22800", + "codeCommune": "22059", + "libelleAcheminement": "LE FOEIL", + "nomCommune": "LE FOEIL" }, { - "codePostal": "26300", - "codeCommune": "26088", - "libelleAcheminement": "CHATUZANGE LE GOUBET", - "nomCommune": "CHATUZANGE LE GOUBET" + "codePostal": "24140", + "codeCommune": "24034", + "libelleAcheminement": "BELEYMAS", + "nomCommune": "BELEYMAS" }, { - "codePostal": "51330", - "codeCommune": "51397", - "libelleAcheminement": "LA NEUVILLE AUX BOIS", - "nomCommune": "LA NEUVILLE AUX BOIS" + "codePostal": "32700", + "codeCommune": "32364", + "libelleAcheminement": "ST AVIT FRANDAT", + "nomCommune": "ST AVIT FRANDAT" }, { - "codePostal": "64120", - "codeCommune": "64106", - "libelleAcheminement": "BEHASQUE LAPISTE", - "nomCommune": "BEHASQUE LAPISTE" + "codePostal": "32130", + "codeCommune": "32297", + "libelleAcheminement": "NOILHAN", + "nomCommune": "NOILHAN" }, { - "codePostal": "59175", - "codeCommune": "59609", - "libelleAcheminement": "VENDEVILLE", - "nomCommune": "VENDEVILLE" + "codePostal": "22110", + "codeCommune": "22061", + "libelleAcheminement": "GLOMEL", + "nomCommune": "GLOMEL" }, { - "codePostal": "26300", - "codeCommune": "26088", - "libelleAcheminement": "CHATUZANGE LE GOUBET", - "nomCommune": "CHATUZANGE LE GOUBET" + "codePostal": "24170", + "codeCommune": "24035", + "libelleAcheminement": "PAYS DE BELVES", + "nomCommune": "PAYS DE BELVES" }, { - "codePostal": "51480", - "codeCommune": "51398", - "libelleAcheminement": "LA NEUVILLE AUX LARRIS", - "nomCommune": "LA NEUVILLE AUX LARRIS" + "codePostal": "32120", + "codeCommune": "32366", + "libelleAcheminement": "ST BRES", + "nomCommune": "ST BRES" }, { - "codePostal": "64160", - "codeCommune": "64114", - "libelleAcheminement": "BERNADETS", - "nomCommune": "BERNADETS" + "codePostal": "32800", + "codeCommune": "32299", + "libelleAcheminement": "NOULENS", + "nomCommune": "NOULENS" }, { - "codePostal": "59227", - "codeCommune": "59610", - "libelleAcheminement": "VERCHAIN MAUGRE", - "nomCommune": "VERCHAIN MAUGRE" + "codePostal": "22570", + "codeCommune": "22064", + "libelleAcheminement": "GOUAREC", + "nomCommune": "GOUAREC" }, { - "codePostal": "26220", - "codeCommune": "26101", - "libelleAcheminement": "COMPS", - "nomCommune": "COMPS" + "codePostal": "24220", + "codeCommune": "24036", + "libelleAcheminement": "BERBIGUIERES", + "nomCommune": "BERBIGUIERES" }, { - "codePostal": "51480", - "codeCommune": "51410", - "libelleAcheminement": "OEUILLY", - "nomCommune": "OEUILLY" + "codePostal": "32380", + "codeCommune": "32370", + "libelleAcheminement": "ST CLAR", + "nomCommune": "ST CLAR" }, { - "codePostal": "64260", - "codeCommune": "64128", - "libelleAcheminement": "BILHERES", - "nomCommune": "BILHERES" + "codePostal": "32260", + "codeCommune": "32300", + "libelleAcheminement": "ORBESSAN", + "nomCommune": "ORBESSAN" }, { - "codePostal": "59730", - "codeCommune": "59612", - "libelleAcheminement": "VERTAIN", - "nomCommune": "VERTAIN" + "codePostal": "22390", + "codeCommune": "22072", + "libelleAcheminement": "GURUNHUEL", + "nomCommune": "GURUNHUEL" }, { - "codePostal": "26510", - "codeCommune": "26104", - "libelleAcheminement": "CORNILLAC", - "nomCommune": "CORNILLAC" + "codePostal": "24320", + "codeCommune": "24038", + "libelleAcheminement": "BERTRIC BUREE", + "nomCommune": "BERTRIC BUREE" }, { - "codePostal": "51530", - "codeCommune": "51413", - "libelleAcheminement": "OIRY", - "nomCommune": "OIRY" + "codePostal": "32380", + "codeCommune": "32371", + "libelleAcheminement": "ST CREAC", + "nomCommune": "ST CREAC" }, { - "codePostal": "64320", - "codeCommune": "64132", - "libelleAcheminement": "BIZANOS", - "nomCommune": "BIZANOS" + "codePostal": "32420", + "codeCommune": "32309", + "libelleAcheminement": "PELLEFIGUE", + "nomCommune": "PELLEFIGUE" }, { - "codePostal": "59970", - "codeCommune": "59613", - "libelleAcheminement": "VICQ", - "nomCommune": "VICQ" + "codePostal": "22320", + "codeCommune": "22073", + "libelleAcheminement": "LA HARMOYE", + "nomCommune": "LA HARMOYE" }, { - "codePostal": "26400", - "codeCommune": "26115", - "libelleAcheminement": "DIVAJEU", - "nomCommune": "DIVAJEU" + "codePostal": "24220", + "codeCommune": "24040", + "libelleAcheminement": "BEYNAC ET CAZENAC", + "nomCommune": "BEYNAC ET CAZENAC" }, { - "codePostal": "51270", - "codeCommune": "51416", - "libelleAcheminement": "ORBAIS L ABBAYE", - "nomCommune": "ORBAIS L ABBAYE" + "codePostal": "32300", + "codeCommune": "32375", + "libelleAcheminement": "ST ELIX THEUX", + "nomCommune": "ST ELIX THEUX" }, { - "codePostal": "64290", - "codeCommune": "64139", - "libelleAcheminement": "BOSDARROS", - "nomCommune": "BOSDARROS" + "codePostal": "32550", + "codeCommune": "32312", + "libelleAcheminement": "PESSAN", + "nomCommune": "PESSAN" }, { - "codePostal": "59271", - "codeCommune": "59614", - "libelleAcheminement": "VIESLY", - "nomCommune": "VIESLY" + "codePostal": "22600", + "codeCommune": "22075", + "libelleAcheminement": "HEMONSTOIR", + "nomCommune": "HEMONSTOIR" }, { - "codePostal": "26600", - "codeCommune": "26119", - "libelleAcheminement": "EROME", - "nomCommune": "EROME" + "codePostal": "24310", + "codeCommune": "24042", + "libelleAcheminement": "BIRAS", + "nomCommune": "BIRAS" }, { - "codePostal": "51140", - "codeCommune": "51429", - "libelleAcheminement": "PEVY", - "nomCommune": "PEVY" + "codePostal": "32430", + "codeCommune": "32377", + "libelleAcheminement": "ST GEORGES", + "nomCommune": "ST GEORGES" }, { - "codePostal": "64190", - "codeCommune": "64149", - "libelleAcheminement": "BUGNEIN", - "nomCommune": "BUGNEIN" + "codePostal": "32360", + "codeCommune": "32316", + "libelleAcheminement": "PEYRUSSE MASSAS", + "nomCommune": "PEYRUSSE MASSAS" }, { - "codePostal": "59530", - "codeCommune": "59619", - "libelleAcheminement": "VILLEREAU", - "nomCommune": "VILLEREAU" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "26560", - "codeCommune": "26126", - "libelleAcheminement": "EYGALAYES", - "nomCommune": "EYGALAYES" + "codePostal": "24540", + "codeCommune": "24043", + "libelleAcheminement": "BIRON", + "nomCommune": "BIRON" }, { - "codePostal": "51220", - "codeCommune": "51444", - "libelleAcheminement": "POUILLON", - "nomCommune": "POUILLON" + "codePostal": "32400", + "codeCommune": "32378", + "libelleAcheminement": "ST GERME", + "nomCommune": "ST GERME" }, { - "codePostal": "64220", - "codeCommune": "64154", - "libelleAcheminement": "BUSSUNARITS SARRASQUETTE", - "nomCommune": "BUSSUNARITS SARRASQUETTE" + "codePostal": "32300", + "codeCommune": "32323", + "libelleAcheminement": "PONSAMPERE", + "nomCommune": "PONSAMPERE" }, { - "codePostal": "59234", - "codeCommune": "59620", - "libelleAcheminement": "VILLERS AU TERTRE", - "nomCommune": "VILLERS AU TERTRE" + "codePostal": "22770", + "codeCommune": "22094", + "libelleAcheminement": "LANCIEUX", + "nomCommune": "LANCIEUX" }, { - "codePostal": "26730", - "codeCommune": "26129", - "libelleAcheminement": "EYMEUX", - "nomCommune": "EYMEUX" + "codePostal": "24330", + "codeCommune": "24053", + "libelleAcheminement": "BOULAZAC ISLE MANOIRE", + "nomCommune": "BOULAZAC ISLE MANOIRE" }, { - "codePostal": "51400", - "codeCommune": "51447", - "libelleAcheminement": "PROSNES", - "nomCommune": "PROSNES" + "codePostal": "32230", + "codeCommune": "32383", + "libelleAcheminement": "ST JUSTIN", + "nomCommune": "ST JUSTIN" }, { - "codePostal": "64220", - "codeCommune": "64155", - "libelleAcheminement": "BUSTINCE IRIBERRY", - "nomCommune": "BUSTINCE IRIBERRY" + "codePostal": "32260", + "codeCommune": "32327", + "libelleAcheminement": "POUY LOUBRIN", + "nomCommune": "POUY LOUBRIN" }, { - "codePostal": "59188", - "codeCommune": "59622", - "libelleAcheminement": "VILLERS EN CAUCHIES", - "nomCommune": "VILLERS EN CAUCHIES" + "codePostal": "22130", + "codeCommune": "22105", + "libelleAcheminement": "LANGUENAN", + "nomCommune": "LANGUENAN" }, { - "codePostal": "26160", - "codeCommune": "26131", - "libelleAcheminement": "EYZAHUT", - "nomCommune": "EYZAHUT" + "codePostal": "24310", + "codeCommune": "24064", + "libelleAcheminement": "BRANTOME EN PERIGORD", + "nomCommune": "BRANTOME EN PERIGORD" }, { - "codePostal": "51100", - "codeCommune": "51454", - "libelleAcheminement": "REIMS", - "nomCommune": "REIMS" + "codePostal": "32360", + "codeCommune": "32384", + "libelleAcheminement": "ST LARY", + "nomCommune": "ST LARY" }, { - "codePostal": "64680", - "codeCommune": "64156", - "libelleAcheminement": "BUZIET", - "nomCommune": "BUZIET" + "codePostal": "32190", + "codeCommune": "32332", + "libelleAcheminement": "PRENERON", + "nomCommune": "PRENERON" }, { - "codePostal": "59530", - "codeCommune": "59626", - "libelleAcheminement": "VILLERS POL", - "nomCommune": "VILLERS POL" + "codePostal": "22570", + "codeCommune": "22107", + "libelleAcheminement": "BON REPOS SUR BLAVET", + "nomCommune": "BON REPOS SUR BLAVET" }, { - "codePostal": "26310", - "codeCommune": "26136", - "libelleAcheminement": "VAL MARAVEL", - "nomCommune": "VAL MARAVEL" + "codePostal": "24310", + "codeCommune": "24064", + "libelleAcheminement": "BRANTOME EN PERIGORD", + "nomCommune": "BRANTOME EN PERIGORD" }, { - "codePostal": "51210", - "codeCommune": "51460", - "libelleAcheminement": "RIEUX", - "nomCommune": "RIEUX" + "codePostal": "32480", + "codeCommune": "32391", + "libelleAcheminement": "ST MARTIN DE GOYNE", + "nomCommune": "ST MARTIN DE GOYNE" }, { - "codePostal": "64330", - "codeCommune": "64159", - "libelleAcheminement": "CADILLON", - "nomCommune": "CADILLON" + "codePostal": "32120", + "codeCommune": "32335", + "libelleAcheminement": "PUYCASQUIER", + "nomCommune": "PUYCASQUIER" }, { - "codePostal": "59135", - "codeCommune": "59632", - "libelleAcheminement": "WALLERS", - "nomCommune": "WALLERS" + "codePostal": "22580", + "codeCommune": "22109", + "libelleAcheminement": "LANLOUP", + "nomCommune": "LANLOUP" }, { - "codePostal": "26310", - "codeCommune": "26136", - "libelleAcheminement": "VAL MARAVEL", - "nomCommune": "VAL MARAVEL" + "codePostal": "24310", + "codeCommune": "24064", + "libelleAcheminement": "BRANTOME EN PERIGORD", + "nomCommune": "BRANTOME EN PERIGORD" }, { - "codePostal": "52100", - "codeCommune": "51478", - "libelleAcheminement": "ST EULIEN", - "nomCommune": "ST EULIEN" + "codePostal": "32450", + "codeCommune": "32392", + "libelleAcheminement": "ST MARTIN GIMOIS", + "nomCommune": "ST MARTIN GIMOIS" }, { - "codePostal": "64370", - "codeCommune": "64172", - "libelleAcheminement": "CASTEIDE CANDAU", - "nomCommune": "CASTEIDE CANDAU" + "codePostal": "32160", + "codeCommune": "32362", + "libelleAcheminement": "ST AUNIX LENGROS", + "nomCommune": "ST AUNIX LENGROS" }, { - "codePostal": "59135", - "codeCommune": "59632", - "libelleAcheminement": "WALLERS", - "nomCommune": "WALLERS" + "codePostal": "22290", + "codeCommune": "22112", + "libelleAcheminement": "LANNEBERT", + "nomCommune": "LANNEBERT" }, { - "codePostal": "26400", - "codeCommune": "26137", - "libelleAcheminement": "FRANCILLON SUR ROUBION", - "nomCommune": "FRANCILLON SUR ROUBION" + "codePostal": "24210", + "codeCommune": "24066", + "libelleAcheminement": "BROUCHAUD", + "nomCommune": "BROUCHAUD" }, { - "codePostal": "51510", - "codeCommune": "51483", - "libelleAcheminement": "ST GIBRIEN", - "nomCommune": "ST GIBRIEN" + "codePostal": "32300", + "codeCommune": "32393", + "libelleAcheminement": "ST MAUR", + "nomCommune": "ST MAUR" }, { - "codePostal": "64330", - "codeCommune": "64180", - "libelleAcheminement": "CASTETPUGON", - "nomCommune": "CASTETPUGON" + "codePostal": "32390", + "codeCommune": "32368", + "libelleAcheminement": "STE CHRISTIE", + "nomCommune": "STE CHRISTIE" }, { - "codePostal": "59132", - "codeCommune": "59633", - "libelleAcheminement": "WALLERS EN FAGNE", - "nomCommune": "WALLERS EN FAGNE" + "codePostal": "22300", + "codeCommune": "22113", + "libelleAcheminement": "LANNION", + "nomCommune": "LANNION" }, { - "codePostal": "26700", - "codeCommune": "26138", - "libelleAcheminement": "LA GARDE ADHEMAR", - "nomCommune": "LA GARDE ADHEMAR" + "codePostal": "24360", + "codeCommune": "24071", + "libelleAcheminement": "BUSSIERE BADIL", + "nomCommune": "BUSSIERE BADIL" }, { - "codePostal": "51600", - "codeCommune": "51486", - "libelleAcheminement": "ST HILAIRE LE GRAND", - "nomCommune": "ST HILAIRE LE GRAND" + "codePostal": "32400", + "codeCommune": "32398", + "libelleAcheminement": "ST MONT", + "nomCommune": "ST MONT" }, { - "codePostal": "64190", - "codeCommune": "64186", - "libelleAcheminement": "CHARRE", - "nomCommune": "CHARRE" + "codePostal": "32430", + "codeCommune": "32372", + "libelleAcheminement": "ST CRICQ", + "nomCommune": "ST CRICQ" }, { - "codePostal": "59144", - "codeCommune": "59639", - "libelleAcheminement": "WARGNIES LE GRAND", - "nomCommune": "WARGNIES LE GRAND" + "codePostal": "22410", + "codeCommune": "22117", + "libelleAcheminement": "LANTIC", + "nomCommune": "LANTIC" }, { - "codePostal": "26750", - "codeCommune": "26140", - "libelleAcheminement": "GEYSSANS", - "nomCommune": "GEYSSANS" + "codePostal": "24550", + "codeCommune": "24075", + "libelleAcheminement": "CAMPAGNAC LES QUERCY", + "nomCommune": "CAMPAGNAC LES QUERCY" }, { - "codePostal": "51130", - "codeCommune": "51499", - "libelleAcheminement": "ST MARD LES ROUFFY", - "nomCommune": "ST MARD LES ROUFFY" + "codePostal": "32220", + "codeCommune": "32407", + "libelleAcheminement": "ST SOULAN", + "nomCommune": "ST SOULAN" }, { - "codePostal": "64330", - "codeCommune": "64190", - "libelleAcheminement": "CLARACQ", - "nomCommune": "CLARACQ" + "codePostal": "32170", + "codeCommune": "32373", + "libelleAcheminement": "STE DODE", + "nomCommune": "STE DODE" }, { - "codePostal": "59144", - "codeCommune": "59640", - "libelleAcheminement": "WARGNIES LE PETIT", - "nomCommune": "WARGNIES LE PETIT" + "codePostal": "22420", + "codeCommune": "22119", + "libelleAcheminement": "LANVELLEC", + "nomCommune": "LANVELLEC" }, { - "codePostal": "26560", - "codeCommune": "26154", - "libelleAcheminement": "LACHAU", - "nomCommune": "LACHAU" + "codePostal": "24170", + "codeCommune": "24084", + "libelleAcheminement": "CARVES", + "nomCommune": "CARVES" }, { - "codePostal": "51240", - "codeCommune": "51502", - "libelleAcheminement": "ST MARTIN AUX CHAMPS", - "nomCommune": "ST MARTIN AUX CHAMPS" + "codePostal": "32140", + "codeCommune": "32409", + "libelleAcheminement": "SAMARAN", + "nomCommune": "SAMARAN" }, { - "codePostal": "64360", - "codeCommune": "64197", - "libelleAcheminement": "CUQUERON", - "nomCommune": "CUQUERON" + "codePostal": "32450", + "codeCommune": "32374", + "libelleAcheminement": "ST ELIX D ASTARAC", + "nomCommune": "ST ELIX D ASTARAC" }, { - "codePostal": "59380", - "codeCommune": "59641", - "libelleAcheminement": "WARHEM", - "nomCommune": "WARHEM" + "codePostal": "22810", + "codeCommune": "22129", + "libelleAcheminement": "LOC ENVEL", + "nomCommune": "LOC ENVEL" }, { - "codePostal": "26210", - "codeCommune": "26155", - "libelleAcheminement": "LAPEYROUSE MORNAY", - "nomCommune": "LAPEYROUSE MORNAY" + "codePostal": "24250", + "codeCommune": "24086", + "libelleAcheminement": "CASTELNAUD LA CHAPELLE", + "nomCommune": "CASTELNAUD LA CHAPELLE" }, { - "codePostal": "51470", - "codeCommune": "51506", - "libelleAcheminement": "ST MEMMIE", - "nomCommune": "ST MEMMIE" + "codePostal": "32400", + "codeCommune": "32414", + "libelleAcheminement": "SARRAGACHIES", + "nomCommune": "SARRAGACHIES" }, { - "codePostal": "64330", - "codeCommune": "64199", - "libelleAcheminement": "DIUSSE", - "nomCommune": "DIUSSE" + "codePostal": "32550", + "codeCommune": "32381", + "libelleAcheminement": "ST JEAN LE COMTAL", + "nomCommune": "ST JEAN LE COMTAL" }, { - "codePostal": "59870", - "codeCommune": "59642", - "libelleAcheminement": "WARLAING", - "nomCommune": "WARLAING" + "codePostal": "22540", + "codeCommune": "22135", + "libelleAcheminement": "LOUARGAT", + "nomCommune": "LOUARGAT" }, { - "codePostal": "26270", - "codeCommune": "26166", - "libelleAcheminement": "LORIOL SUR DROME", - "nomCommune": "LORIOL SUR DROME" + "codePostal": "24320", + "codeCommune": "24097", + "libelleAcheminement": "CHAMPAGNE ET FONTAINE", + "nomCommune": "CHAMPAGNE ET FONTAINE" }, { - "codePostal": "51800", - "codeCommune": "51507", - "libelleAcheminement": "STE MENEHOULD", - "nomCommune": "STE MENEHOULD" + "codePostal": "32500", + "codeCommune": "32417", + "libelleAcheminement": "LA SAUVETAT", + "nomCommune": "LA SAUVETAT" }, { - "codePostal": "64440", - "codeCommune": "64204", - "libelleAcheminement": "EAUX BONNES", - "nomCommune": "EAUX BONNES" + "codePostal": "32380", + "codeCommune": "32385", + "libelleAcheminement": "ST LEONARD", + "nomCommune": "ST LEONARD" }, { - "codePostal": "59560", - "codeCommune": "59643", - "libelleAcheminement": "WARNETON", - "nomCommune": "WARNETON" + "codePostal": "22600", + "codeCommune": "22136", + "libelleAcheminement": "LOUDEAC", + "nomCommune": "LOUDEAC" }, { - "codePostal": "26740", - "codeCommune": "26176", - "libelleAcheminement": "MARSANNE", - "nomCommune": "MARSANNE" + "codePostal": "24650", + "codeCommune": "24102", + "libelleAcheminement": "CHANCELADE", + "nomCommune": "CHANCELADE" }, { - "codePostal": "51320", - "codeCommune": "51508", - "libelleAcheminement": "ST OUEN DOMPROT", - "nomCommune": "ST OUEN DOMPROT" + "codePostal": "32450", + "codeCommune": "32428", + "libelleAcheminement": "SEMEZIES CACHAN", + "nomCommune": "SEMEZIES CACHAN" }, { - "codePostal": "64160", - "codeCommune": "64212", - "libelleAcheminement": "ESPECHEDE", - "nomCommune": "ESPECHEDE" + "codePostal": "32220", + "codeCommune": "32386", + "libelleAcheminement": "ST LIZIER DU PLANTE", + "nomCommune": "ST LIZIER DU PLANTE" }, { - "codePostal": "59143", - "codeCommune": "59647", - "libelleAcheminement": "WATTEN", - "nomCommune": "WATTEN" + "codePostal": "22640", + "codeCommune": "22140", + "libelleAcheminement": "LA MALHOURE", + "nomCommune": "LA MALHOURE" }, { - "codePostal": "26410", - "codeCommune": "26178", - "libelleAcheminement": "MENGLON", - "nomCommune": "MENGLON" + "codePostal": "24320", + "codeCommune": "24110", + "libelleAcheminement": "LA CHAPELLE MONTABOURLET", + "nomCommune": "LA CHAPELLE MONTABOURLET" }, { - "codePostal": "51290", - "codeCommune": "51513", - "libelleAcheminement": "ST REMY EN BOUZEMONT ST GENEST", - "nomCommune": "ST REMY EN BOUZEMONT ST GENEST ISSON" + "codePostal": "32130", + "codeCommune": "32432", + "libelleAcheminement": "SEYSSES SAVES", + "nomCommune": "SEYSSES SAVES" }, { - "codePostal": "64400", - "codeCommune": "64217", - "libelleAcheminement": "ESQUIULE", - "nomCommune": "ESQUIULE" + "codePostal": "32300", + "codeCommune": "32401", + "libelleAcheminement": "ST OST", + "nomCommune": "ST OST" }, { - "codePostal": "59136", - "codeCommune": "59653", - "libelleAcheminement": "WAVRIN", - "nomCommune": "WAVRIN" + "codePostal": "22200", + "codeCommune": "22150", + "libelleAcheminement": "LE MERZER", + "nomCommune": "LE MERZER" }, { - "codePostal": "26170", - "codeCommune": "26180", - "libelleAcheminement": "MERINDOL LES OLIVIERS", - "nomCommune": "MERINDOL LES OLIVIERS" + "codePostal": "24640", + "codeCommune": "24121", + "libelleAcheminement": "CHOURGNAC", + "nomCommune": "CHOURGNAC" }, { - "codePostal": "51600", - "codeCommune": "51517", - "libelleAcheminement": "ST SOUPLET SUR PY", - "nomCommune": "ST SOUPLET SUR PY" + "codePostal": "32420", + "codeCommune": "32433", + "libelleAcheminement": "SIMORRE", + "nomCommune": "SIMORRE" }, { - "codePostal": "64120", - "codeCommune": "64221", - "libelleAcheminement": "ETCHARRY", - "nomCommune": "ETCHARRY" + "codePostal": "32500", + "codeCommune": "32405", + "libelleAcheminement": "STE RADEGONDE", + "nomCommune": "STE RADEGONDE" }, { - "codePostal": "59670", - "codeCommune": "59655", - "libelleAcheminement": "WEMAERS CAPPEL", - "nomCommune": "WEMAERS CAPPEL" + "codePostal": "22600", + "codeCommune": "22155", + "libelleAcheminement": "LA MOTTE", + "nomCommune": "LA MOTTE" }, { - "codePostal": "26560", - "codeCommune": "26181", - "libelleAcheminement": "MEVOUILLON", - "nomCommune": "MEVOUILLON" + "codePostal": "24560", + "codeCommune": "24132", + "libelleAcheminement": "CONNE DE LABARDE", + "nomCommune": "CONNE DE LABARDE" }, { - "codePostal": "51340", - "codeCommune": "51521", - "libelleAcheminement": "ST VRAIN", - "nomCommune": "ST VRAIN" + "codePostal": "32430", + "codeCommune": "32435", + "libelleAcheminement": "SIRAC", + "nomCommune": "SIRAC" }, { - "codePostal": "64410", - "codeCommune": "64226", - "libelleAcheminement": "FICHOUS RIUMAYOU", - "nomCommune": "FICHOUS RIUMAYOU" + "codePostal": "32370", + "codeCommune": "32408", + "libelleAcheminement": "SALLES D ARMAGNAC", + "nomCommune": "SALLES D ARMAGNAC" }, { - "codePostal": "60690", - "codeCommune": "60004", - "libelleAcheminement": "ACHY", - "nomCommune": "ACHY" + "codePostal": "22200", + "codeCommune": "22156", + "libelleAcheminement": "MOUSTERU", + "nomCommune": "MOUSTERU" }, { - "codePostal": "26310", - "codeCommune": "26186", - "libelleAcheminement": "MISCON", - "nomCommune": "MISCON" + "codePostal": "24220", + "codeCommune": "24142", + "libelleAcheminement": "COUX ET BIGAROQUE MOUZENS", + "nomCommune": "COUX ET BIGAROQUE MOUZENS" }, { - "codePostal": "51120", - "codeCommune": "51526", - "libelleAcheminement": "SAUDOY", - "nomCommune": "SAUDOY" + "codePostal": "32450", + "codeCommune": "32447", + "libelleAcheminement": "TIRENT PONTEJAC", + "nomCommune": "TIRENT PONTEJAC" }, { - "codePostal": "64120", - "codeCommune": "64228", - "libelleAcheminement": "GABAT", - "nomCommune": "GABAT" + "codePostal": "32130", + "codeCommune": "32410", + "libelleAcheminement": "SAMATAN", + "nomCommune": "SAMATAN" }, { - "codePostal": "60700", - "codeCommune": "60006", - "libelleAcheminement": "LES AGEUX", - "nomCommune": "LES AGEUX" + "codePostal": "22200", + "codeCommune": "22161", + "libelleAcheminement": "PABU", + "nomCommune": "PABU" }, { - "codePostal": "26760", - "codeCommune": "26196", - "libelleAcheminement": "MONTELEGER", - "nomCommune": "MONTELEGER" + "codePostal": "24380", + "codeCommune": "24146", + "libelleAcheminement": "CREYSSENSAC ET PISSOT", + "nomCommune": "CREYSSENSAC ET PISSOT" }, { - "codePostal": "51400", - "codeCommune": "51530", - "libelleAcheminement": "SEPT SAULX", - "nomCommune": "SEPT SAULX" + "codePostal": "32400", + "codeCommune": "32461", + "libelleAcheminement": "VERLUS", + "nomCommune": "VERLUS" }, { - "codePostal": "64450", - "codeCommune": "64232", - "libelleAcheminement": "GARLEDE MONDEBAT", - "nomCommune": "GARLEDE MONDEBAT" + "codePostal": "32220", + "codeCommune": "32420", + "libelleAcheminement": "SAUVIMONT", + "nomCommune": "SAUVIMONT" }, { - "codePostal": "60130", - "codeCommune": "60014", - "libelleAcheminement": "ANGIVILLERS", - "nomCommune": "ANGIVILLERS" + "codePostal": "22340", + "codeCommune": "22163", + "libelleAcheminement": "PAULE", + "nomCommune": "PAULE" }, { - "codePostal": "26120", - "codeCommune": "26197", - "libelleAcheminement": "MONTELIER", - "nomCommune": "MONTELIER" + "codePostal": "24170", + "codeCommune": "24151", + "libelleAcheminement": "DOISSAT", + "nomCommune": "DOISSAT" }, { - "codePostal": "51800", - "codeCommune": "51533", - "libelleAcheminement": "SERVON MELZICOURT", - "nomCommune": "SERVON MELZICOURT" + "codePostal": "32400", + "codeCommune": "32463", + "libelleAcheminement": "VIELLA", + "nomCommune": "VIELLA" }, { - "codePostal": "64530", - "codeCommune": "64238", - "libelleAcheminement": "GER", - "nomCommune": "GER" + "codePostal": "32600", + "codeCommune": "32425", + "libelleAcheminement": "SEGOUFIELLE", + "nomCommune": "SEGOUFIELLE" }, { - "codePostal": "60880", - "codeCommune": "60023", - "libelleAcheminement": "ARMANCOURT", - "nomCommune": "ARMANCOURT" + "codePostal": "22550", + "codeCommune": "22174", + "libelleAcheminement": "PLEBOULLE", + "nomCommune": "PLEBOULLE" }, { - "codePostal": "26150", - "codeCommune": "26205", - "libelleAcheminement": "MONTMAUR EN DIOIS", - "nomCommune": "MONTMAUR EN DIOIS" + "codePostal": "24250", + "codeCommune": "24152", + "libelleAcheminement": "DOMME", + "nomCommune": "DOMME" }, { - "codePostal": "51340", - "codeCommune": "51539", - "libelleAcheminement": "SOGNY EN L ANGLE", - "nomCommune": "SOGNY EN L ANGLE" + "codePostal": "32300", + "codeCommune": "32466", + "libelleAcheminement": "VIOZAN", + "nomCommune": "VIOZAN" }, { - "codePostal": "64190", - "codeCommune": "64242", - "libelleAcheminement": "GESTAS", - "nomCommune": "GESTAS" + "codePostal": "32260", + "codeCommune": "32426", + "libelleAcheminement": "SEISSAN", + "nomCommune": "SEISSAN" }, { - "codePostal": "60190", - "codeCommune": "60024", - "libelleAcheminement": "ARSY", - "nomCommune": "ARSY" + "codePostal": "22270", + "codeCommune": "22175", + "libelleAcheminement": "PLEDELIAC", + "nomCommune": "PLEDELIAC" }, { - "codePostal": "26130", - "codeCommune": "26211", - "libelleAcheminement": "MONTSEGUR SUR LAUZON", - "nomCommune": "MONTSEGUR SUR LAUZON" + "codePostal": "24140", + "codeCommune": "24155", + "libelleAcheminement": "DOUVILLE", + "nomCommune": "DOUVILLE" }, { - "codePostal": "51240", - "codeCommune": "51552", - "libelleAcheminement": "SONGY", - "nomCommune": "SONGY" + "codePostal": "32140", + "codeCommune": "32468", + "libelleAcheminement": "AUSSOS", + "nomCommune": "AUSSOS" }, { - "codePostal": "64370", - "codeCommune": "64243", - "libelleAcheminement": "GEUS D ARZACQ", - "nomCommune": "GEUS D ARZACQ" + "codePostal": "32700", + "codeCommune": "32429", + "libelleAcheminement": "SEMPESSERRE", + "nomCommune": "SEMPESSERRE" }, { - "codePostal": "60350", - "codeCommune": "60025", - "libelleAcheminement": "ATTICHY", - "nomCommune": "ATTICHY" + "codePostal": "22170", + "codeCommune": "22182", + "libelleAcheminement": "PLELO", + "nomCommune": "PLELO" }, { - "codePostal": "26210", - "codeCommune": "26213", - "libelleAcheminement": "MORAS EN VALLOIRE", - "nomCommune": "MORAS EN VALLOIRE" + "codePostal": "24160", + "codeCommune": "24164", + "libelleAcheminement": "EXCIDEUIL", + "nomCommune": "EXCIDEUIL" }, { - "codePostal": "51600", - "codeCommune": "51553", - "libelleAcheminement": "SOUAIN PERTHES LES HURLUS", - "nomCommune": "SOUAIN PERTHES LES HURLUS" + "codePostal": "33230", + "codeCommune": "33001", + "libelleAcheminement": "ABZAC", + "nomCommune": "ABZAC" }, { - "codePostal": "64800", - "codeCommune": "64257", - "libelleAcheminement": "HAUT DE BOSDARROS", - "nomCommune": "HAUT DE BOSDARROS" + "codePostal": "32260", + "codeCommune": "32438", + "libelleAcheminement": "TACHOIRES", + "nomCommune": "TACHOIRES" }, { - "codePostal": "60390", - "codeCommune": "60029", - "libelleAcheminement": "AUNEUIL", - "nomCommune": "AUNEUIL" + "codePostal": "22190", + "codeCommune": "22187", + "libelleAcheminement": "PLERIN", + "nomCommune": "PLERIN" }, { - "codePostal": "26220", - "codeCommune": "26222", - "libelleAcheminement": "ORCINAS", - "nomCommune": "ORCINAS" + "codePostal": "24560", + "codeCommune": "24168", + "libelleAcheminement": "PLAISANCE", + "nomCommune": "PLAISANCE" }, { - "codePostal": "51320", - "codeCommune": "51555", - "libelleAcheminement": "SOUDE", - "nomCommune": "SOUDE" + "codePostal": "33440", + "codeCommune": "33003", + "libelleAcheminement": "AMBARES ET LAGRAVE", + "nomCommune": "AMBARES ET LAGRAVE" }, { - "codePostal": "64470", - "codeCommune": "64258", - "libelleAcheminement": "HAUX", - "nomCommune": "HAUX" + "codePostal": "32400", + "codeCommune": "32439", + "libelleAcheminement": "TARSAC", + "nomCommune": "TARSAC" }, { - "codePostal": "60400", - "codeCommune": "60055", - "libelleAcheminement": "BEAURAINS LES NOYON", - "nomCommune": "BEAURAINS LES NOYON" + "codePostal": "22190", + "codeCommune": "22187", + "libelleAcheminement": "PLERIN", + "nomCommune": "PLERIN" }, { - "codePostal": "26190", - "codeCommune": "26223", - "libelleAcheminement": "ORIOL EN ROYANS", - "nomCommune": "ORIOL EN ROYANS" + "codePostal": "24560", + "codeCommune": "24168", + "libelleAcheminement": "PLAISANCE", + "nomCommune": "PLAISANCE" }, { - "codePostal": "51320", - "codeCommune": "51556", - "libelleAcheminement": "SOUDRON", - "nomCommune": "SOUDRON" + "codePostal": "33510", + "codeCommune": "33005", + "libelleAcheminement": "ANDERNOS LES BAINS", + "nomCommune": "ANDERNOS LES BAINS" }, { - "codePostal": "64780", - "codeCommune": "64273", - "libelleAcheminement": "IRISSARRY", - "nomCommune": "IRISSARRY" + "codePostal": "32160", + "codeCommune": "32440", + "libelleAcheminement": "TASQUE", + "nomCommune": "TASQUE" }, { - "codePostal": "60390", - "codeCommune": "60063", - "libelleAcheminement": "BERNEUIL EN BRAY", - "nomCommune": "BERNEUIL EN BRAY" + "codePostal": "22640", + "codeCommune": "22193", + "libelleAcheminement": "PLESTAN", + "nomCommune": "PLESTAN" }, { - "codePostal": "26750", - "codeCommune": "26225", - "libelleAcheminement": "PARNANS", - "nomCommune": "PARNANS" + "codePostal": "24620", + "codeCommune": "24172", + "libelleAcheminement": "LES EYZIES", + "nomCommune": "LES EYZIES" }, { - "codePostal": "51600", - "codeCommune": "51559", - "libelleAcheminement": "SUIPPES", - "nomCommune": "SUIPPES" + "codePostal": "33760", + "codeCommune": "33008", + "libelleAcheminement": "PORTE DE BENAUGE", + "nomCommune": "PORTE DE BENAUGE" }, { - "codePostal": "64110", - "codeCommune": "64284", - "libelleAcheminement": "JURANCON", - "nomCommune": "JURANCON" + "codePostal": "32700", + "codeCommune": "32442", + "libelleAcheminement": "TERRAUBE", + "nomCommune": "TERRAUBE" }, { - "codePostal": "60490", - "codeCommune": "60071", - "libelleAcheminement": "BIERMONT", - "nomCommune": "BIERMONT" + "codePostal": "22610", + "codeCommune": "22195", + "libelleAcheminement": "PLEUBIAN", + "nomCommune": "PLEUBIAN" }, { - "codePostal": "26380", - "codeCommune": "26231", - "libelleAcheminement": "PEYRINS", - "nomCommune": "PEYRINS" + "codePostal": "24560", + "codeCommune": "24177", + "libelleAcheminement": "FAUX", + "nomCommune": "FAUX" }, { - "codePostal": "51150", - "codeCommune": "51564", - "libelleAcheminement": "VAL DE LIVRE", - "nomCommune": "VAL DE LIVRE" + "codePostal": "33760", + "codeCommune": "33008", + "libelleAcheminement": "PORTE DE BENAUGE", + "nomCommune": "PORTE DE BENAUGE" }, { - "codePostal": "64300", - "codeCommune": "64286", - "libelleAcheminement": "LAA MONDRANS", - "nomCommune": "LAA MONDRANS" + "codePostal": "32170", + "codeCommune": "32446", + "libelleAcheminement": "TILLAC", + "nomCommune": "TILLAC" }, { - "codePostal": "60860", - "codeCommune": "60077", - "libelleAcheminement": "BLICOURT", - "nomCommune": "BLICOURT" + "codePostal": "22560", + "codeCommune": "22198", + "libelleAcheminement": "PLEUMEUR BODOU", + "nomCommune": "PLEUMEUR BODOU" }, { - "codePostal": "26110", - "codeCommune": "26233", - "libelleAcheminement": "PIEGON", - "nomCommune": "PIEGON" + "codePostal": "24250", + "codeCommune": "24184", + "libelleAcheminement": "FLORIMONT GAUMIER", + "nomCommune": "FLORIMONT GAUMIER" }, { - "codePostal": "51240", - "codeCommune": "51574", - "libelleAcheminement": "TOGNY AUX BOEUFS", - "nomCommune": "TOGNY AUX BOEUFS" + "codePostal": "33740", + "codeCommune": "33011", + "libelleAcheminement": "ARES", + "nomCommune": "ARES" }, { - "codePostal": "64990", - "codeCommune": "64304", - "libelleAcheminement": "LAHONCE", - "nomCommune": "LAHONCE" + "codePostal": "32430", + "codeCommune": "32448", + "libelleAcheminement": "TOUGET", + "nomCommune": "TOUGET" }, { - "codePostal": "60190", - "codeCommune": "60078", - "libelleAcheminement": "BLINCOURT", - "nomCommune": "BLINCOURT" + "codePostal": "22560", + "codeCommune": "22198", + "libelleAcheminement": "PLEUMEUR BODOU", + "nomCommune": "PLEUMEUR BODOU" }, { - "codePostal": "26170", - "codeCommune": "26242", - "libelleAcheminement": "LE POET EN PERCIP", - "nomCommune": "LE POET EN PERCIP" + "codePostal": "33220", + "codeCommune": "24189", + "libelleAcheminement": "FOUGUEYROLLES", + "nomCommune": "FOUGUEYROLLES" }, { - "codePostal": "51210", - "codeCommune": "51579", - "libelleAcheminement": "TREFOLS", - "nomCommune": "TREFOLS" + "codePostal": "33790", + "codeCommune": "33020", + "libelleAcheminement": "AURIOLLES", + "nomCommune": "AURIOLLES" }, { - "codePostal": "64350", - "codeCommune": "64307", - "libelleAcheminement": "LALONGUE", - "nomCommune": "LALONGUE" + "codePostal": "32230", + "codeCommune": "32455", + "libelleAcheminement": "TRONCENS", + "nomCommune": "TRONCENS" }, { - "codePostal": "60820", - "codeCommune": "60086", - "libelleAcheminement": "BORAN SUR OISE", - "nomCommune": "BORAN SUR OISE" + "codePostal": "22130", + "codeCommune": "22200", + "libelleAcheminement": "PLEVEN", + "nomCommune": "PLEVEN" }, { - "codePostal": "26150", - "codeCommune": "26246", - "libelleAcheminement": "PONET ET ST AUBAN", - "nomCommune": "PONET ET ST AUBAN" + "codePostal": "24240", + "codeCommune": "24193", + "libelleAcheminement": "GAGEAC ET ROUILLAC", + "nomCommune": "GAGEAC ET ROUILLAC" }, { - "codePostal": "51140", - "codeCommune": "51582", - "libelleAcheminement": "TRIGNY", - "nomCommune": "TRIGNY" + "codePostal": "33480", + "codeCommune": "33022", + "libelleAcheminement": "AVENSAN", + "nomCommune": "AVENSAN" }, { - "codePostal": "64350", - "codeCommune": "64311", - "libelleAcheminement": "LANNECAUBE", - "nomCommune": "LANNECAUBE" + "codePostal": "32720", + "codeCommune": "32460", + "libelleAcheminement": "VERGOIGNAN", + "nomCommune": "VERGOIGNAN" }, { - "codePostal": "60490", - "codeCommune": "60093", - "libelleAcheminement": "BOULOGNE LA GRASSE", - "nomCommune": "BOULOGNE LA GRASSE" + "codePostal": "22340", + "codeCommune": "22202", + "libelleAcheminement": "PLEVIN", + "nomCommune": "PLEVIN" }, { - "codePostal": "26240", - "codeCommune": "26247", - "libelleAcheminement": "PONSAS", - "nomCommune": "PONSAS" + "codePostal": "24300", + "codeCommune": "24209", + "libelleAcheminement": "HAUTEFAYE", + "nomCommune": "HAUTEFAYE" }, { - "codePostal": "51800", - "codeCommune": "51588", - "libelleAcheminement": "VALMY", - "nomCommune": "VALMY" + "codePostal": "33640", + "codeCommune": "33023", + "libelleAcheminement": "AYGUEMORTE LES GRAVES", + "nomCommune": "AYGUEMORTE LES GRAVES" }, { - "codePostal": "64410", - "codeCommune": "64318", - "libelleAcheminement": "LARREULE", - "nomCommune": "LARREULE" + "codePostal": "33124", + "codeCommune": "33002", + "libelleAcheminement": "AILLAS", + "nomCommune": "AILLAS" }, { - "codePostal": "60113", - "codeCommune": "60099", - "libelleAcheminement": "BRAISNES SUR ARONDE", - "nomCommune": "BRAISNES SUR ARONDE" + "codePostal": "22170", + "codeCommune": "22206", + "libelleAcheminement": "CHATELAUDREN PLOUAGAT", + "nomCommune": "CHATELAUDREN PLOUAGAT" }, { - "codePostal": "26150", - "codeCommune": "26248", - "libelleAcheminement": "PONTAIX", - "nomCommune": "PONTAIX" + "codePostal": "24260", + "codeCommune": "24217", + "libelleAcheminement": "JOURNIAC", + "nomCommune": "JOURNIAC" }, { - "codePostal": "51600", - "codeCommune": "51600", - "libelleAcheminement": "VAUDESINCOURT", - "nomCommune": "VAUDESINCOURT" + "codePostal": "33190", + "codeCommune": "33024", + "libelleAcheminement": "BAGAS", + "nomCommune": "BAGAS" }, { - "codePostal": "64190", - "codeCommune": "64326", - "libelleAcheminement": "LAY LAMIDOU", - "nomCommune": "LAY LAMIDOU" + "codePostal": "33810", + "codeCommune": "33004", + "libelleAcheminement": "AMBES", + "nomCommune": "AMBES" }, { - "codePostal": "60600", - "codeCommune": "60107", - "libelleAcheminement": "BREUIL LE VERT", - "nomCommune": "BREUIL LE VERT" + "codePostal": "22650", + "codeCommune": "22209", + "libelleAcheminement": "BEAUSSAIS SUR MER", + "nomCommune": "BEAUSSAIS SUR MER" }, { - "codePostal": "26600", - "codeCommune": "26250", - "libelleAcheminement": "PONT DE L ISERE", - "nomCommune": "PONT DE L ISERE" + "codePostal": "24520", + "codeCommune": "24224", + "libelleAcheminement": "LAMONZIE MONTASTRUC", + "nomCommune": "LAMONZIE MONTASTRUC" }, { - "codePostal": "51480", - "codeCommune": "51605", - "libelleAcheminement": "VENTEUIL", - "nomCommune": "VENTEUIL" + "codePostal": "33114", + "codeCommune": "33029", + "libelleAcheminement": "LE BARP", + "nomCommune": "LE BARP" }, { - "codePostal": "64320", - "codeCommune": "64329", - "libelleAcheminement": "LEE", - "nomCommune": "LEE" + "codePostal": "33390", + "codeCommune": "33006", + "libelleAcheminement": "ANGLADE", + "nomCommune": "ANGLADE" }, { - "codePostal": "60380", - "codeCommune": "60114", - "libelleAcheminement": "BUICOURT", - "nomCommune": "BUICOURT" + "codePostal": "22300", + "codeCommune": "22211", + "libelleAcheminement": "PLOUBEZRE", + "nomCommune": "PLOUBEZRE" }, { - "codePostal": "26310", - "codeCommune": "26253", - "libelleAcheminement": "POYOLS", - "nomCommune": "POYOLS" + "codePostal": "24400", + "codeCommune": "24234", + "libelleAcheminement": "LES LECHES", + "nomCommune": "LES LECHES" }, { - "codePostal": "51330", - "codeCommune": "51608", - "libelleAcheminement": "VERNANCOURT", - "nomCommune": "VERNANCOURT" + "codePostal": "33390", + "codeCommune": "33047", + "libelleAcheminement": "BERSON", + "nomCommune": "BERSON" }, { - "codePostal": "64130", - "codeCommune": "64341", - "libelleAcheminement": "LICHOS", - "nomCommune": "LICHOS" + "codePostal": "33640", + "codeCommune": "33007", + "libelleAcheminement": "ARBANATS", + "nomCommune": "ARBANATS" }, { - "codePostal": "60290", - "codeCommune": "60120", - "libelleAcheminement": "CAMBRONNE LES CLERMONT", - "nomCommune": "CAMBRONNE LES CLERMONT" + "codePostal": "22490", + "codeCommune": "22213", + "libelleAcheminement": "PLOUER SUR RANCE", + "nomCommune": "PLOUER SUR RANCE" }, { - "codePostal": "26340", - "codeCommune": "26254", - "libelleAcheminement": "PRADELLE", - "nomCommune": "PRADELLE" + "codePostal": "24110", + "codeCommune": "24236", + "libelleAcheminement": "LEGUILLAC DE L AUCHE", + "nomCommune": "LEGUILLAC DE L AUCHE" }, { - "codePostal": "51130", - "codeCommune": "51611", - "libelleAcheminement": "VERT TOULON", - "nomCommune": "VERT TOULON" + "codePostal": "33124", + "codeCommune": "33048", + "libelleAcheminement": "BERTHEZ", + "nomCommune": "BERTHEZ" }, { - "codePostal": "64300", - "codeCommune": "64349", - "libelleAcheminement": "LOUBIENG", - "nomCommune": "LOUBIENG" + "codePostal": "33460", + "codeCommune": "33010", + "libelleAcheminement": "ARCINS", + "nomCommune": "ARCINS" }, { - "codePostal": "60640", - "codeCommune": "60121", - "libelleAcheminement": "CAMPAGNE", - "nomCommune": "CAMPAGNE" + "codePostal": "22470", + "codeCommune": "22214", + "libelleAcheminement": "PLOUEZEC", + "nomCommune": "PLOUEZEC" }, { - "codePostal": "26170", - "codeCommune": "26256", - "libelleAcheminement": "PROPIAC", - "nomCommune": "PROPIAC" + "codePostal": "24100", + "codeCommune": "24237", + "libelleAcheminement": "LEMBRAS", + "nomCommune": "LEMBRAS" }, { - "codePostal": "51130", - "codeCommune": "51612", - "libelleAcheminement": "BLANCS COTEAUX", - "nomCommune": "BLANCS COTEAUX" + "codePostal": "33500", + "codeCommune": "33052", + "libelleAcheminement": "LES BILLAUX", + "nomCommune": "LES BILLAUX" }, { - "codePostal": "64250", - "codeCommune": "64350", - "libelleAcheminement": "LOUHOSSOA", - "nomCommune": "LOUHOSSOA" + "codePostal": "33500", + "codeCommune": "33015", + "libelleAcheminement": "ARVEYRES", + "nomCommune": "ARVEYRES" }, { - "codePostal": "60170", - "codeCommune": "60129", - "libelleAcheminement": "CARLEPONT", - "nomCommune": "CARLEPONT" + "codePostal": "22780", + "codeCommune": "22217", + "libelleAcheminement": "PLOUGRAS", + "nomCommune": "PLOUGRAS" }, { - "codePostal": "26450", - "codeCommune": "26258", - "libelleAcheminement": "PUY ST MARTIN", - "nomCommune": "PUY ST MARTIN" + "codePostal": "24510", + "codeCommune": "24240", + "libelleAcheminement": "LIMEUIL", + "nomCommune": "LIMEUIL" }, { - "codePostal": "51240", - "codeCommune": "51616", - "libelleAcheminement": "VESIGNEUL SUR MARNE", - "nomCommune": "VESIGNEUL SUR MARNE" + "codePostal": "33340", + "codeCommune": "33055", + "libelleAcheminement": "BLAIGNAN PRIGNAC", + "nomCommune": "BLAIGNAN PRIGNAC" }, { - "codePostal": "64350", - "codeCommune": "64356", - "libelleAcheminement": "LUC ARMAU", - "nomCommune": "LUC ARMAU" + "codePostal": "33430", + "codeCommune": "33017", + "libelleAcheminement": "AUBIAC", + "nomCommune": "AUBIAC" }, { - "codePostal": "60300", - "codeCommune": "60138", - "libelleAcheminement": "CHAMANT", - "nomCommune": "CHAMANT" + "codePostal": "22580", + "codeCommune": "22222", + "libelleAcheminement": "PLOUHA", + "nomCommune": "PLOUHA" }, { - "codePostal": "26770", - "codeCommune": "26276", - "libelleAcheminement": "ROCHE ST SECRET BECONNE", - "nomCommune": "ROCHE ST SECRET BECONNE" + "codePostal": "24540", + "codeCommune": "24244", + "libelleAcheminement": "LOLME", + "nomCommune": "LOLME" }, { - "codePostal": "51330", - "codeCommune": "51619", - "libelleAcheminement": "LE VIEIL DAMPIERRE", - "nomCommune": "LE VIEIL DAMPIERRE" + "codePostal": "33480", + "codeCommune": "33070", + "libelleAcheminement": "BRACH", + "nomCommune": "BRACH" }, { - "codePostal": "64120", - "codeCommune": "64368", - "libelleAcheminement": "MASPARRAUTE", - "nomCommune": "MASPARRAUTE" + "codePostal": "33240", + "codeCommune": "33018", + "libelleAcheminement": "VAL DE VIRVEE", + "nomCommune": "VAL DE VIRVEE" }, { - "codePostal": "60520", - "codeCommune": "60142", - "libelleAcheminement": "LA CHAPELLE EN SERVAL", - "nomCommune": "LA CHAPELLE EN SERVAL" + "codePostal": "22420", + "codeCommune": "22235", + "libelleAcheminement": "PLOUZELAMBRE", + "nomCommune": "PLOUZELAMBRE" }, { - "codePostal": "26470", - "codeCommune": "26283", - "libelleAcheminement": "ROTTIER", - "nomCommune": "ROTTIER" + "codePostal": "24550", + "codeCommune": "24245", + "libelleAcheminement": "LOUBEJAC", + "nomCommune": "LOUBEJAC" }, { - "codePostal": "51800", - "codeCommune": "51620", - "libelleAcheminement": "VIENNE LA VILLE", - "nomCommune": "VIENNE LA VILLE" + "codePostal": "33720", + "codeCommune": "33076", + "libelleAcheminement": "BUDOS", + "nomCommune": "BUDOS" }, { - "codePostal": "64460", - "codeCommune": "64372", - "libelleAcheminement": "MAURE", - "nomCommune": "MAURE" + "codePostal": "33750", + "codeCommune": "33028", + "libelleAcheminement": "BARON", + "nomCommune": "BARON" }, { - "codePostal": "60150", - "codeCommune": "60147", - "libelleAcheminement": "CHEVINCOURT", - "nomCommune": "CHEVINCOURT" + "codePostal": "22130", + "codeCommune": "22237", + "libelleAcheminement": "PLUDUNO", + "nomCommune": "PLUDUNO" }, { - "codePostal": "26450", - "codeCommune": "26287", - "libelleAcheminement": "ROYNAC", - "nomCommune": "ROYNAC" + "codePostal": "24110", + "codeCommune": "24251", + "libelleAcheminement": "MANZAC SUR VERN", + "nomCommune": "MANZAC SUR VERN" }, { - "codePostal": "51310", - "codeCommune": "51625", - "libelleAcheminement": "VILLENEUVE LA LIONNE", - "nomCommune": "VILLENEUVE LA LIONNE" + "codePostal": "33410", + "codeCommune": "33081", + "libelleAcheminement": "CADILLAC", + "nomCommune": "CADILLAC" }, { - "codePostal": "64350", - "codeCommune": "64390", - "libelleAcheminement": "MONCAUP", - "nomCommune": "MONCAUP" + "codePostal": "33340", + "codeCommune": "33038", + "libelleAcheminement": "BEGADAN", + "nomCommune": "BEGADAN" }, { - "codePostal": "60750", - "codeCommune": "60151", - "libelleAcheminement": "CHOISY AU BAC", - "nomCommune": "CHOISY AU BAC" + "codePostal": "22210", + "codeCommune": "22241", + "libelleAcheminement": "PLUMIEUX", + "nomCommune": "PLUMIEUX" }, { - "codePostal": "26340", - "codeCommune": "26289", - "libelleAcheminement": "SAILLANS", - "nomCommune": "SAILLANS" + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { - "codePostal": "51270", - "codeCommune": "51639", - "libelleAcheminement": "LA VILLE SOUS ORBAIS", - "nomCommune": "LA VILLE SOUS ORBAIS" + "codePostal": "33190", + "codeCommune": "33087", + "libelleAcheminement": "CAMIRAN", + "nomCommune": "CAMIRAN" }, { - "codePostal": "64360", - "codeCommune": "64393", - "libelleAcheminement": "MONEIN", - "nomCommune": "MONEIN" + "codePostal": "33350", + "codeCommune": "33045", + "libelleAcheminement": "BELVES DE CASTILLON", + "nomCommune": "BELVES DE CASTILLON" }, { - "codePostal": "60940", - "codeCommune": "60154", - "libelleAcheminement": "CINQUEUX", - "nomCommune": "CINQUEUX" + "codePostal": "22120", + "codeCommune": "22246", + "libelleAcheminement": "POMMERET", + "nomCommune": "POMMERET" }, { - "codePostal": "26190", - "codeCommune": "26311", - "libelleAcheminement": "ST LAURENT EN ROYANS", - "nomCommune": "ST LAURENT EN ROYANS" + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { - "codePostal": "51800", - "codeCommune": "51646", - "libelleAcheminement": "VIRGINY", - "nomCommune": "VIRGINY" + "codePostal": "33121", + "codeCommune": "33097", + "libelleAcheminement": "CARCANS", + "nomCommune": "CARCANS" }, { - "codePostal": "64350", - "codeCommune": "64394", - "libelleAcheminement": "MONPEZAT", - "nomCommune": "MONPEZAT" + "codePostal": "33380", + "codeCommune": "33051", + "libelleAcheminement": "BIGANOS", + "nomCommune": "BIGANOS" }, { - "codePostal": "60420", - "codeCommune": "60158", - "libelleAcheminement": "COIVREL", - "nomCommune": "COIVREL" + "codePostal": "22260", + "codeCommune": "22250", + "libelleAcheminement": "PONTRIEUX", + "nomCommune": "PONTRIEUX" }, { - "codePostal": "26510", - "codeCommune": "26318", - "libelleAcheminement": "ST MAY", - "nomCommune": "ST MAY" + "codePostal": "24540", + "codeCommune": "24257", + "libelleAcheminement": "MARSALES", + "nomCommune": "MARSALES" }, { - "codePostal": "51800", - "codeCommune": "51659", - "libelleAcheminement": "WARGEMOULIN HURLUS", - "nomCommune": "WARGEMOULIN HURLUS" + "codePostal": "33360", + "codeCommune": "33099", + "libelleAcheminement": "CARIGNAN DE BORDEAUX", + "nomCommune": "CARIGNAN DE BORDEAUX" }, { - "codePostal": "64460", - "codeCommune": "64395", - "libelleAcheminement": "MONSEGUR", - "nomCommune": "MONSEGUR" + "codePostal": "33430", + "codeCommune": "33053", + "libelleAcheminement": "BIRAC", + "nomCommune": "BIRAC" }, { - "codePostal": "60200", - "codeCommune": "60159", - "libelleAcheminement": "COMPIEGNE", - "nomCommune": "COMPIEGNE" + "codePostal": "22120", + "codeCommune": "22258", + "libelleAcheminement": "QUESSOY", + "nomCommune": "QUESSOY" }, { - "codePostal": "26190", - "codeCommune": "26320", - "libelleAcheminement": "ST NAZAIRE EN ROYANS", - "nomCommune": "ST NAZAIRE EN ROYANS" + "codePostal": "24540", + "codeCommune": "24280", + "libelleAcheminement": "MONPAZIER", + "nomCommune": "MONPAZIER" }, { - "codePostal": "52120", - "codeCommune": "52005", - "libelleAcheminement": "AIZANVILLE", - "nomCommune": "AIZANVILLE" + "codePostal": "33540", + "codeCommune": "33112", + "libelleAcheminement": "CAUMONT", + "nomCommune": "CAUMONT" }, { - "codePostal": "64300", - "codeCommune": "64396", - "libelleAcheminement": "MONT", - "nomCommune": "MONT" + "codePostal": "33190", + "codeCommune": "33054", + "libelleAcheminement": "BLAIGNAC", + "nomCommune": "BLAIGNAC" }, { - "codePostal": "60490", - "codeCommune": "60160", - "libelleAcheminement": "CONCHY LES POTS", - "nomCommune": "CONCHY LES POTS" + "codePostal": "22460", + "codeCommune": "22260", + "libelleAcheminement": "LE QUILLIO", + "nomCommune": "LE QUILLIO" }, { - "codePostal": "26750", - "codeCommune": "26323", - "libelleAcheminement": "ST PAUL LES ROMANS", - "nomCommune": "ST PAUL LES ROMANS" + "codePostal": "24140", + "codeCommune": "24285", + "libelleAcheminement": "MONTAGNAC LA CREMPSE", + "nomCommune": "MONTAGNAC LA CREMPSE" }, { - "codePostal": "52110", - "codeCommune": "52007", - "libelleAcheminement": "AMBONVILLE", - "nomCommune": "AMBONVILLE" + "codePostal": "33113", + "codeCommune": "33115", + "libelleAcheminement": "CAZALIS", + "nomCommune": "CAZALIS" }, { - "codePostal": "64470", - "codeCommune": "64404", - "libelleAcheminement": "MONTORY", - "nomCommune": "MONTORY" + "codePostal": "33290", + "codeCommune": "33056", + "libelleAcheminement": "BLANQUEFORT", + "nomCommune": "BLANQUEFORT" }, { - "codePostal": "60120", - "codeCommune": "60163", - "libelleAcheminement": "CORMEILLES", - "nomCommune": "CORMEILLES" + "codePostal": "22200", + "codeCommune": "22272", + "libelleAcheminement": "ST AGATHON", + "nomCommune": "ST AGATHON" }, { - "codePostal": "26210", - "codeCommune": "26330", - "libelleAcheminement": "ST SORLIN EN VALLOIRE", - "nomCommune": "ST SORLIN EN VALLOIRE" + "codePostal": "24560", + "codeCommune": "24287", + "libelleAcheminement": "MONTAUT", + "nomCommune": "MONTAUT" }, { - "codePostal": "52310", - "codeCommune": "52011", - "libelleAcheminement": "ANNEVILLE LA PRAIRIE", - "nomCommune": "ANNEVILLE LA PRAIRIE" + "codePostal": "33360", + "codeCommune": "33118", + "libelleAcheminement": "CENAC", + "nomCommune": "CENAC" }, { - "codePostal": "64370", - "codeCommune": "64406", - "libelleAcheminement": "MORLANNE", - "nomCommune": "MORLANNE" + "codePostal": "33210", + "codeCommune": "33060", + "libelleAcheminement": "BOMMES", + "nomCommune": "BOMMES" }, { - "codePostal": "60850", - "codeCommune": "60164", - "libelleAcheminement": "LE COUDRAY ST GERMER", - "nomCommune": "LE COUDRAY ST GERMER" + "codePostal": "22100", + "codeCommune": "22280", + "libelleAcheminement": "ST CARNE", + "nomCommune": "ST CARNE" }, { - "codePostal": "26190", - "codeCommune": "26331", - "libelleAcheminement": "ST THOMAS EN ROYANS", - "nomCommune": "ST THOMAS EN ROYANS" + "codePostal": "24230", + "codeCommune": "24288", + "libelleAcheminement": "MONTAZEAU", + "nomCommune": "MONTAZEAU" }, { - "codePostal": "52160", - "codeCommune": "52016", - "libelleAcheminement": "ARBOT", - "nomCommune": "ARBOT" + "codePostal": "33150", + "codeCommune": "33119", + "libelleAcheminement": "CENON", + "nomCommune": "CENON" }, { - "codePostal": "64990", - "codeCommune": "64407", - "libelleAcheminement": "MOUGUERRE", - "nomCommune": "MOUGUERRE" + "codePostal": "33270", + "codeCommune": "33065", + "libelleAcheminement": "BOULIAC", + "nomCommune": "BOULIAC" }, { - "codePostal": "60240", - "codeCommune": "60169", - "libelleAcheminement": "COURCELLES LES GISORS", - "nomCommune": "COURCELLES LES GISORS" + "codePostal": "22380", + "codeCommune": "22282", + "libelleAcheminement": "ST CAST LE GUILDO", + "nomCommune": "ST CAST LE GUILDO" }, { - "codePostal": "26240", - "codeCommune": "26333", - "libelleAcheminement": "ST VALLIER", - "nomCommune": "ST VALLIER" + "codePostal": "24290", + "codeCommune": "24291", + "libelleAcheminement": "MONTIGNAC LASCAUX", + "nomCommune": "MONTIGNAC LASCAUX" }, { - "codePostal": "52110", - "codeCommune": "52019", - "libelleAcheminement": "ARNANCOURT", - "nomCommune": "ARNANCOURT" + "codePostal": "33760", + "codeCommune": "33121", + "libelleAcheminement": "CESSAC", + "nomCommune": "CESSAC" }, { - "codePostal": "64450", - "codeCommune": "64415", - "libelleAcheminement": "NAVAILLES ANGOS", - "nomCommune": "NAVAILLES ANGOS" + "codePostal": "33420", + "codeCommune": "33071", + "libelleAcheminement": "BRANNE", + "nomCommune": "BRANNE" }, { - "codePostal": "60300", - "codeCommune": "60170", - "libelleAcheminement": "COURTEUIL", - "nomCommune": "COURTEUIL" + "codePostal": "22510", + "codeCommune": "22296", + "libelleAcheminement": "ST GLEN", + "nomCommune": "ST GLEN" }, { - "codePostal": "26560", - "codeCommune": "26340", - "libelleAcheminement": "SEDERON", - "nomCommune": "SEDERON" + "codePostal": "24170", + "codeCommune": "24293", + "libelleAcheminement": "MONPLAISANT", + "nomCommune": "MONPLAISANT" }, { - "codePostal": "52130", - "codeCommune": "52021", - "libelleAcheminement": "ATTANCOURT", - "nomCommune": "ATTANCOURT" + "codePostal": "33620", + "codeCommune": "33123", + "libelleAcheminement": "CEZAC", + "nomCommune": "CEZAC" }, { - "codePostal": "64150", - "codeCommune": "64418", - "libelleAcheminement": "NOGUERES", - "nomCommune": "NOGUERES" + "codePostal": "33124", + "codeCommune": "33074", + "libelleAcheminement": "BROUQUEYRAN", + "nomCommune": "BROUQUEYRAN" }, { - "codePostal": "60310", - "codeCommune": "60174", - "libelleAcheminement": "CRAPEAUMESNIL", - "nomCommune": "CRAPEAUMESNIL" + "codePostal": "22630", + "codeCommune": "22306", + "libelleAcheminement": "ST JUDOCE", + "nomCommune": "ST JUDOCE" }, { - "codePostal": "26600", - "codeCommune": "26341", - "libelleAcheminement": "SERVES SUR RHONE", - "nomCommune": "SERVES SUR RHONE" + "codePostal": "24400", + "codeCommune": "24299", + "libelleAcheminement": "MUSSIDAN", + "nomCommune": "MUSSIDAN" }, { - "codePostal": "52190", - "codeCommune": "52027", - "libelleAcheminement": "AUJEURRES", - "nomCommune": "AUJEURRES" + "codePostal": "33210", + "codeCommune": "33130", + "libelleAcheminement": "COIMERES", + "nomCommune": "COIMERES" }, { - "codePostal": "64300", - "codeCommune": "64430", - "libelleAcheminement": "ORTHEZ", - "nomCommune": "ORTHEZ" + "codePostal": "33750", + "codeCommune": "33083", + "libelleAcheminement": "CAMARSAC", + "nomCommune": "CAMARSAC" }, { - "codePostal": "60190", - "codeCommune": "60177", - "libelleAcheminement": "CRESSONSACQ", - "nomCommune": "CRESSONSACQ" + "codePostal": "22940", + "codeCommune": "22307", + "libelleAcheminement": "ST JULIEN", + "nomCommune": "ST JULIEN" }, { - "codePostal": "26000", - "codeCommune": "26362", - "libelleAcheminement": "VALENCE", - "nomCommune": "VALENCE" + "codePostal": "24320", + "codeCommune": "24303", + "libelleAcheminement": "NANTEUIL AURIAC DE BOURZAC", + "nomCommune": "NANTEUIL AURIAC DE BOURZAC" }, { - "codePostal": "52160", - "codeCommune": "52028", - "libelleAcheminement": "AULNOY SUR AUBE", - "nomCommune": "AULNOY SUR AUBE" + "codePostal": "33460", + "codeCommune": "33146", + "libelleAcheminement": "CUSSAC FORT MEDOC", + "nomCommune": "CUSSAC FORT MEDOC" }, { - "codePostal": "64780", - "codeCommune": "64436", - "libelleAcheminement": "OSSES", - "nomCommune": "OSSES" + "codePostal": "33420", + "codeCommune": "33086", + "libelleAcheminement": "CAMIAC ET ST DENIS", + "nomCommune": "CAMIAC ET ST DENIS" }, { - "codePostal": "60400", - "codeCommune": "60181", - "libelleAcheminement": "CRISOLLES", - "nomCommune": "CRISOLLES" + "codePostal": "22320", + "codeCommune": "22316", + "libelleAcheminement": "ST MAYEUX", + "nomCommune": "ST MAYEUX" }, { - "codePostal": "26420", - "codeCommune": "26364", - "libelleAcheminement": "VASSIEUX EN VERCORS", - "nomCommune": "VASSIEUX EN VERCORS" + "codePostal": "24440", + "codeCommune": "24307", + "libelleAcheminement": "NAUSSANNES", + "nomCommune": "NAUSSANNES" }, { - "codePostal": "52250", - "codeCommune": "52035", - "libelleAcheminement": "BAISSEY", - "nomCommune": "BAISSEY" + "codePostal": "33420", + "codeCommune": "33147", + "libelleAcheminement": "DAIGNAC", + "nomCommune": "DAIGNAC" }, { - "codePostal": "64120", - "codeCommune": "64437", - "libelleAcheminement": "OSTABAT ASME", - "nomCommune": "OSTABAT ASME" + "codePostal": "33610", + "codeCommune": "33090", + "libelleAcheminement": "CANEJAN", + "nomCommune": "CANEJAN" }, { - "codePostal": "60120", - "codeCommune": "60183", - "libelleAcheminement": "CROISSY SUR CELLE", - "nomCommune": "CROISSY SUR CELLE" + "codePostal": "22270", + "codeCommune": "22326", + "libelleAcheminement": "ST RIEUL", + "nomCommune": "ST RIEUL" }, { - "codePostal": "26400", - "codeCommune": "26365", - "libelleAcheminement": "VAUNAVEYS LA ROCHETTE", - "nomCommune": "VAUNAVEYS LA ROCHETTE" + "codePostal": "24190", + "codeCommune": "24309", + "libelleAcheminement": "NEUVIC", + "nomCommune": "NEUVIC" }, { - "codePostal": "52110", - "codeCommune": "52039", - "libelleAcheminement": "BAUDRECOURT", - "nomCommune": "BAUDRECOURT" + "codePostal": "33580", + "codeCommune": "33150", + "libelleAcheminement": "DIEULIVOL", + "nomCommune": "DIEULIVOL" }, { - "codePostal": "64120", - "codeCommune": "64441", - "libelleAcheminement": "PAGOLLE", - "nomCommune": "PAGOLLE" + "codePostal": "33121", + "codeCommune": "33097", + "libelleAcheminement": "CARCANS", + "nomCommune": "CARCANS" }, { - "codePostal": "60210", - "codeCommune": "60193", - "libelleAcheminement": "DAMERAUCOURT", - "nomCommune": "DAMERAUCOURT" + "codePostal": "22220", + "codeCommune": "22347", + "libelleAcheminement": "TREDARZEC", + "nomCommune": "TREDARZEC" }, { - "codePostal": "05700", - "codeCommune": "26374", - "libelleAcheminement": "VILLEBOIS LES PINS", - "nomCommune": "VILLEBOIS LES PINS" + "codePostal": "24410", + "codeCommune": "24316", + "libelleAcheminement": "PARCOUL CHENAUD", + "nomCommune": "PARCOUL CHENAUD" }, { - "codePostal": "52260", - "codeCommune": "52042", - "libelleAcheminement": "BEAUCHEMIN", - "nomCommune": "BEAUCHEMIN" + "codePostal": "33860", + "codeCommune": "33151", + "libelleAcheminement": "DONNEZAC", + "nomCommune": "DONNEZAC" }, { - "codePostal": "64190", - "codeCommune": "64458", - "libelleAcheminement": "PRECHACQ JOSBAIG", - "nomCommune": "PRECHACQ JOSBAIG" + "codePostal": "33190", + "codeCommune": "33102", + "libelleAcheminement": "CASSEUIL", + "nomCommune": "CASSEUIL" }, { - "codePostal": "60310", - "codeCommune": "60198", - "libelleAcheminement": "DIVES", - "nomCommune": "DIVES" + "codePostal": "22300", + "codeCommune": "22349", + "libelleAcheminement": "TREDREZ LOCQUEMEAU", + "nomCommune": "TREDREZ LOCQUEMEAU" }, { - "codePostal": "26470", - "codeCommune": "26378", - "libelleAcheminement": "VOLVENT", - "nomCommune": "VOLVENT" + "codePostal": "24310", + "codeCommune": "24319", + "libelleAcheminement": "PAUSSAC ET ST VIVIEN", + "nomCommune": "PAUSSAC ET ST VIVIEN" }, { - "codePostal": "52270", - "codeCommune": "52044", - "libelleAcheminement": "ROCHES BETTAINCOURT", - "nomCommune": "ROCHES BETTAINCOURT" + "codePostal": "33410", + "codeCommune": "33152", + "libelleAcheminement": "DONZAC", + "nomCommune": "DONZAC" }, { - "codePostal": "64260", - "codeCommune": "64463", - "libelleAcheminement": "REBENACQ", - "nomCommune": "REBENACQ" + "codePostal": "33540", + "codeCommune": "33103", + "libelleAcheminement": "CASTELMORON D ALBRET", + "nomCommune": "CASTELMORON D ALBRET" }, { - "codePostal": "60590", - "codeCommune": "60211", - "libelleAcheminement": "ERAGNY SUR EPTE", - "nomCommune": "ERAGNY SUR EPTE" + "codePostal": "22310", + "codeCommune": "22350", + "libelleAcheminement": "TREDUDER", + "nomCommune": "TREDUDER" }, { - "codePostal": "26300", - "codeCommune": "26381", - "libelleAcheminement": "JAILLANS", - "nomCommune": "JAILLANS" + "codePostal": "24370", + "codeCommune": "24325", + "libelleAcheminement": "PECHS DE L ESPERANCE", + "nomCommune": "PECHS DE L ESPERANCE" }, { - "codePostal": "52110", - "codeCommune": "52047", - "libelleAcheminement": "BEURVILLE", - "nomCommune": "BEURVILLE" + "codePostal": "33390", + "codeCommune": "33161", + "libelleAcheminement": "EYRANS", + "nomCommune": "EYRANS" }, { - "codePostal": "64330", - "codeCommune": "64464", - "libelleAcheminement": "RIBARROUY", - "nomCommune": "RIBARROUY" + "codePostal": "33230", + "codeCommune": "33124", + "libelleAcheminement": "CHAMADELLE", + "nomCommune": "CHAMADELLE" }, { - "codePostal": "60600", - "codeCommune": "60215", - "libelleAcheminement": "ERQUERY", - "nomCommune": "ERQUERY" + "codePostal": "22590", + "codeCommune": "22356", + "libelleAcheminement": "TREGOMEUR", + "nomCommune": "TREGOMEUR" }, { - "codePostal": "26300", - "codeCommune": "26382", - "libelleAcheminement": "ST VINCENT LA COMMANDERIE", - "nomCommune": "ST VINCENT LA COMMANDERIE" + "codePostal": "24360", + "codeCommune": "24328", + "libelleAcheminement": "PIEGUT PLUVIERS", + "nomCommune": "PIEGUT PLUVIERS" }, { - "codePostal": "52340", - "codeCommune": "52050", - "libelleAcheminement": "BIESLES", - "nomCommune": "BIESLES" + "codePostal": "33210", + "codeCommune": "33164", + "libelleAcheminement": "FARGUES", + "nomCommune": "FARGUES" }, { - "codePostal": "64160", - "codeCommune": "64482", - "libelleAcheminement": "ST JAMMES", - "nomCommune": "ST JAMMES" + "codePostal": "33540", + "codeCommune": "33131", + "libelleAcheminement": "COIRAC", + "nomCommune": "COIRAC" }, { - "codePostal": "60120", - "codeCommune": "60221", - "libelleAcheminement": "ESQUENNOY", - "nomCommune": "ESQUENNOY" + "codePostal": "22420", + "codeCommune": "22359", + "libelleAcheminement": "TREGROM", + "nomCommune": "TREGROM" }, { - "codePostal": "27120", - "codeCommune": "27004", - "libelleAcheminement": "AIGLEVILLE", - "nomCommune": "AIGLEVILLE" + "codePostal": "24580", + "codeCommune": "24330", + "libelleAcheminement": "PLAZAC", + "nomCommune": "PLAZAC" }, { - "codePostal": "52200", - "codeCommune": "52062", - "libelleAcheminement": "BOURG", - "nomCommune": "BOURG" + "codePostal": "33270", + "codeCommune": "33167", + "libelleAcheminement": "FLOIRAC", + "nomCommune": "FLOIRAC" }, { - "codePostal": "64310", - "codeCommune": "64495", - "libelleAcheminement": "ST PEE SUR NIVELLE", - "nomCommune": "ST PEE SUR NIVELLE" + "codePostal": "33340", + "codeCommune": "33134", + "libelleAcheminement": "COUQUEQUES", + "nomCommune": "COUQUEQUES" }, { - "codePostal": "60190", - "codeCommune": "60223", - "libelleAcheminement": "ESTREES ST DENIS", - "nomCommune": "ESTREES ST DENIS" + "codePostal": "22950", + "codeCommune": "22360", + "libelleAcheminement": "TREGUEUX", + "nomCommune": "TREGUEUX" }, { - "codePostal": "27250", - "codeCommune": "27009", - "libelleAcheminement": "AMBENAY", - "nomCommune": "AMBENAY" + "codePostal": "24160", + "codeCommune": "24339", + "libelleAcheminement": "PREYSSAC D EXCIDEUIL", + "nomCommune": "PREYSSAC D EXCIDEUIL" }, { - "codePostal": "52320", - "codeCommune": "52091", - "libelleAcheminement": "CERISIERES", - "nomCommune": "CERISIERES" + "codePostal": "33190", + "codeCommune": "33170", + "libelleAcheminement": "FONTET", + "nomCommune": "FONTET" }, { - "codePostal": "64390", - "codeCommune": "64513", - "libelleAcheminement": "SAUVETERRE DE BEARN", - "nomCommune": "SAUVETERRE DE BEARN" + "codePostal": "33580", + "codeCommune": "33136", + "libelleAcheminement": "COURS DE MONSEGUR", + "nomCommune": "COURS DE MONSEGUR" }, { - "codePostal": "60330", - "codeCommune": "60226", - "libelleAcheminement": "EVE", - "nomCommune": "EVE" + "codePostal": "22250", + "codeCommune": "22369", + "libelleAcheminement": "TREMEUR", + "nomCommune": "TREMEUR" }, { - "codePostal": "27700", - "codeCommune": "27016", - "libelleAcheminement": "LES ANDELYS", - "nomCommune": "LES ANDELYS" + "codePostal": "24130", + "codeCommune": "24340", + "libelleAcheminement": "PRIGONRIEUX", + "nomCommune": "PRIGONRIEUX" }, { - "codePostal": "52160", - "codeCommune": "52094", - "libelleAcheminement": "VALS DES TILLES", - "nomCommune": "VALS DES TILLES" + "codePostal": "33570", + "codeCommune": "33173", + "libelleAcheminement": "FRANCS", + "nomCommune": "FRANCS" }, { - "codePostal": "64160", - "codeCommune": "64520", - "libelleAcheminement": "SERRES MORLAAS", - "nomCommune": "SERRES MORLAAS" + "codePostal": "33760", + "codeCommune": "33156", + "libelleAcheminement": "ESCOUSSANS", + "nomCommune": "ESCOUSSANS" }, { - "codePostal": "60310", - "codeCommune": "60227", - "libelleAcheminement": "EVRICOURT", - "nomCommune": "EVRICOURT" + "codePostal": "22230", + "codeCommune": "22371", + "libelleAcheminement": "TREMOREL", + "nomCommune": "TREMOREL" }, { - "codePostal": "27130", - "codeCommune": "27038", - "libelleAcheminement": "LES BARILS", - "nomCommune": "LES BARILS" + "codePostal": "24440", + "codeCommune": "24347", + "libelleAcheminement": "RAMPIEUX", + "nomCommune": "RAMPIEUX" }, { - "codePostal": "52160", - "codeCommune": "52094", - "libelleAcheminement": "VALS DES TILLES", - "nomCommune": "VALS DES TILLES" + "codePostal": "33340", + "codeCommune": "33177", + "libelleAcheminement": "GAILLAN EN MEDOC", + "nomCommune": "GAILLAN EN MEDOC" }, { - "codePostal": "64190", - "codeCommune": "64530", - "libelleAcheminement": "SUSMIOU", - "nomCommune": "SUSMIOU" + "codePostal": "33420", + "codeCommune": "33157", + "libelleAcheminement": "ESPIET", + "nomCommune": "ESPIET" }, { - "codePostal": "60240", - "codeCommune": "60228", - "libelleAcheminement": "FAY LES ETANGS", - "nomCommune": "FAY LES ETANGS" + "codePostal": "22440", + "codeCommune": "22372", + "libelleAcheminement": "TREMUSON", + "nomCommune": "TREMUSON" }, { - "codePostal": "27160", - "codeCommune": "27043", - "libelleAcheminement": "LES BAUX DE BRETEUIL", - "nomCommune": "LES BAUX DE BRETEUIL" + "codePostal": "24240", + "codeCommune": "24349", + "libelleAcheminement": "RAZAC DE SAUSSIGNAC", + "nomCommune": "RAZAC DE SAUSSIGNAC" }, { - "codePostal": "52700", - "codeCommune": "52095", - "libelleAcheminement": "CHALVRAINES", - "nomCommune": "CHALVRAINES" + "codePostal": "33430", + "codeCommune": "33178", + "libelleAcheminement": "GAJAC", + "nomCommune": "GAJAC" }, { - "codePostal": "64190", - "codeCommune": "64531", - "libelleAcheminement": "TABAILLE USQUAIN", - "nomCommune": "TABAILLE USQUAIN" + "codePostal": "33760", + "codeCommune": "33163", + "libelleAcheminement": "FALEYRAS", + "nomCommune": "FALEYRAS" }, { - "codePostal": "60680", - "codeCommune": "60229", - "libelleAcheminement": "LE FAYEL", - "nomCommune": "LE FAYEL" + "codePostal": "22930", + "codeCommune": "22390", + "libelleAcheminement": "YVIAS", + "nomCommune": "YVIAS" }, { - "codePostal": "27330", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "24500", + "codeCommune": "24359", + "libelleAcheminement": "SADILLAC", + "nomCommune": "SADILLAC" }, { - "codePostal": "52410", - "codeCommune": "52099", - "libelleAcheminement": "CHAMOUILLEY", - "nomCommune": "CHAMOUILLEY" + "codePostal": "33430", + "codeCommune": "33180", + "libelleAcheminement": "GANS", + "nomCommune": "GANS" }, { - "codePostal": "64220", - "codeCommune": "64538", - "libelleAcheminement": "UHART CIZE", - "nomCommune": "UHART CIZE" + "codePostal": "33840", + "codeCommune": "33190", + "libelleAcheminement": "GOUALADE", + "nomCommune": "GOUALADE" }, { - "codePostal": "60510", - "codeCommune": "60230", - "libelleAcheminement": "LE FAY ST QUENTIN", - "nomCommune": "LE FAY ST QUENTIN" + "codePostal": "22350", + "codeCommune": "22391", + "libelleAcheminement": "YVIGNAC LA TOUR", + "nomCommune": "YVIGNAC LA TOUR" }, { - "codePostal": "27330", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "24510", + "codeCommune": "24362", + "libelleAcheminement": "VAL DE LOUYRE ET CAUDEAU", + "nomCommune": "VAL DE LOUYRE ET CAUDEAU" }, { - "codePostal": "52200", - "codeCommune": "52102", - "libelleAcheminement": "CHAMPIGNY LES LANGRES", - "nomCommune": "CHAMPIGNY LES LANGRES" + "codePostal": "33840", + "codeCommune": "33188", + "libelleAcheminement": "GISCOS", + "nomCommune": "GISCOS" }, { - "codePostal": "64120", - "codeCommune": "64539", - "libelleAcheminement": "UHART MIXE", - "nomCommune": "UHART MIXE" + "codePostal": "33420", + "codeCommune": "33194", + "libelleAcheminement": "GREZILLAC", + "nomCommune": "GREZILLAC" }, { - "codePostal": "60590", - "codeCommune": "60235", - "libelleAcheminement": "FLAVACOURT", - "nomCommune": "FLAVACOURT" + "codePostal": "23210", + "codeCommune": "23006", + "libelleAcheminement": "ARRENES", + "nomCommune": "ARRENES" }, { - "codePostal": "27330", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "24120", + "codeCommune": "24364", + "libelleAcheminement": "COLY ST AMAND", + "nomCommune": "COLY ST AMAND" }, { - "codePostal": "52260", - "codeCommune": "52106", - "libelleAcheminement": "CHANOY", - "nomCommune": "CHANOY" + "codePostal": "33690", + "codeCommune": "33195", + "libelleAcheminement": "GRIGNOLS", + "nomCommune": "GRIGNOLS" }, { - "codePostal": "64990", - "codeCommune": "64540", - "libelleAcheminement": "URCUIT", - "nomCommune": "URCUIT" + "codePostal": "33230", + "codeCommune": "33198", + "libelleAcheminement": "GUITRES", + "nomCommune": "GUITRES" }, { - "codePostal": "60300", - "codeCommune": "60241", - "libelleAcheminement": "FONTAINE CHAALIS", - "nomCommune": "FONTAINE CHAALIS" + "codePostal": "23200", + "codeCommune": "23008", + "libelleAcheminement": "AUBUSSON", + "nomCommune": "AUBUSSON" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "24380", + "codeCommune": "24365", + "libelleAcheminement": "ST AMAND DE VERGT", + "nomCommune": "ST AMAND DE VERGT" }, { - "codePostal": "52110", - "codeCommune": "52109", - "libelleAcheminement": "CHARMES EN L ANGLE", - "nomCommune": "CHARMES EN L ANGLE" + "codePostal": "33550", + "codeCommune": "33201", + "libelleAcheminement": "HAUX", + "nomCommune": "HAUX" }, { - "codePostal": "64130", - "codeCommune": "64559", - "libelleAcheminement": "VIODOS ABENSE DE BAS", - "nomCommune": "VIODOS ABENSE DE BAS" + "codePostal": "33190", + "codeCommune": "33204", + "libelleAcheminement": "HURE", + "nomCommune": "HURE" }, { - "codePostal": "60480", - "codeCommune": "60243", - "libelleAcheminement": "FONTAINE ST LUCIEN", - "nomCommune": "FONTAINE ST LUCIEN" + "codePostal": "23210", + "codeCommune": "23011", + "libelleAcheminement": "AULON", + "nomCommune": "AULON" }, { - "codePostal": "27110", - "codeCommune": "27055", - "libelleAcheminement": "BERENGEVILLE LA CAMPAGNE", - "nomCommune": "BERENGEVILLE LA CAMPAGNE" + "codePostal": "24110", + "codeCommune": "24371", + "libelleAcheminement": "ST AQUILIN", + "nomCommune": "ST AQUILIN" }, { - "codePostal": "52200", - "codeCommune": "52115", - "libelleAcheminement": "CHATENAY MACHERON", - "nomCommune": "CHATENAY MACHERON" + "codePostal": "33720", + "codeCommune": "33205", + "libelleAcheminement": "ILLATS", + "nomCommune": "ILLATS" }, { - "codePostal": "64450", - "codeCommune": "64560", - "libelleAcheminement": "VIVEN", - "nomCommune": "VIVEN" + "codePostal": "33420", + "codeCommune": "33209", + "libelleAcheminement": "JUGAZAN", + "nomCommune": "JUGAZAN" }, { - "codePostal": "60510", - "codeCommune": "60251", - "libelleAcheminement": "FOUQUEROLLES", - "nomCommune": "FOUQUEROLLES" + "codePostal": "23210", + "codeCommune": "23021", + "libelleAcheminement": "BENEVENT L ABBAYE", + "nomCommune": "BENEVENT L ABBAYE" }, { - "codePostal": "27800", - "codeCommune": "27061", - "libelleAcheminement": "BERTHOUVILLE", - "nomCommune": "BERTHOUVILLE" + "codePostal": "24560", + "codeCommune": "24374", + "libelleAcheminement": "ST AUBIN DE LANQUAIS", + "nomCommune": "ST AUBIN DE LANQUAIS" }, { - "codePostal": "52300", - "codeCommune": "52118", - "libelleAcheminement": "CHATONRUPT SOMMERMONT", - "nomCommune": "CHATONRUPT SOMMERMONT" + "codePostal": "33450", + "codeCommune": "33207", + "libelleAcheminement": "IZON", + "nomCommune": "IZON" }, { - "codePostal": "65260", - "codeCommune": "65001", - "libelleAcheminement": "ADAST", - "nomCommune": "ADAST" + "codePostal": "33720", + "codeCommune": "33225", + "libelleAcheminement": "LANDIRAS", + "nomCommune": "LANDIRAS" }, { - "codePostal": "60800", - "codeCommune": "60261", - "libelleAcheminement": "FRESNOY LE LUAT", - "nomCommune": "FRESNOY LE LUAT" + "codePostal": "23270", + "codeCommune": "23022", + "libelleAcheminement": "BETETE", + "nomCommune": "BETETE" }, { - "codePostal": "27210", - "codeCommune": "27064", - "libelleAcheminement": "BERVILLE SUR MER", - "nomCommune": "BERVILLE SUR MER" + "codePostal": "24250", + "codeCommune": "24375", + "libelleAcheminement": "ST AUBIN DE NABIRAT", + "nomCommune": "ST AUBIN DE NABIRAT" }, { - "codePostal": "52170", - "codeCommune": "52123", - "libelleAcheminement": "CHEVILLON", - "nomCommune": "CHEVILLON" + "codePostal": "33690", + "codeCommune": "33212", + "libelleAcheminement": "LABESCAU", + "nomCommune": "LABESCAU" }, { - "codePostal": "65560", - "codeCommune": "65018", - "libelleAcheminement": "ARBEOST", - "nomCommune": "ARBEOST" + "codePostal": "33690", + "codeCommune": "33235", + "libelleAcheminement": "LAVAZAN", + "nomCommune": "LAVAZAN" }, { - "codePostal": "60210", - "codeCommune": "60269", - "libelleAcheminement": "GAUDECHART", - "nomCommune": "GAUDECHART" + "codePostal": "23230", + "codeCommune": "23026", + "libelleAcheminement": "BORD ST GEORGES", + "nomCommune": "BORD ST GEORGES" }, { - "codePostal": "27660", - "codeCommune": "27067", - "libelleAcheminement": "BEZU ST ELOI", - "nomCommune": "BEZU ST ELOI" + "codePostal": "24360", + "codeCommune": "24381", + "libelleAcheminement": "ST BARTHELEMY DE BUSSIERE", + "nomCommune": "ST BARTHELEMY DE BUSSIERE" }, { - "codePostal": "52000", - "codeCommune": "52125", - "libelleAcheminement": "CHAMARANDES CHOIGNES", - "nomCommune": "CHAMARANDES CHOIGNES" + "codePostal": "33210", + "codeCommune": "33227", + "libelleAcheminement": "LANGON", + "nomCommune": "LANGON" }, { - "codePostal": "65100", - "codeCommune": "65038", - "libelleAcheminement": "ARTIGUES", - "nomCommune": "ARTIGUES" + "codePostal": "33950", + "codeCommune": "33236", + "libelleAcheminement": "LEGE CAP FERRET", + "nomCommune": "LEGE CAP FERRET" }, { - "codePostal": "60129", - "codeCommune": "60274", - "libelleAcheminement": "GLAIGNES", - "nomCommune": "GLAIGNES" + "codePostal": "23700", + "codeCommune": "23034", + "libelleAcheminement": "BROUSSE", + "nomCommune": "BROUSSE" }, { - "codePostal": "27150", - "codeCommune": "27070", - "libelleAcheminement": "FRENELLES EN VEXIN", - "nomCommune": "FRENELLES EN VEXIN" + "codePostal": "24270", + "codeCommune": "24397", + "libelleAcheminement": "ST CYR LES CHAMPAGNES", + "nomCommune": "ST CYR LES CHAMPAGNES" }, { - "codePostal": "52000", - "codeCommune": "52125", - "libelleAcheminement": "CHAMARANDES CHOIGNES", - "nomCommune": "CHAMARANDES CHOIGNES" + "codePostal": "33710", + "codeCommune": "33228", + "libelleAcheminement": "LANSAC", + "nomCommune": "LANSAC" }, { - "codePostal": "65380", - "codeCommune": "65052", - "libelleAcheminement": "AVERAN", - "nomCommune": "AVERAN" + "codePostal": "33840", + "codeCommune": "33239", + "libelleAcheminement": "LERM ET MUSSET", + "nomCommune": "LERM ET MUSSET" }, { - "codePostal": "60420", - "codeCommune": "60276", - "libelleAcheminement": "GODENVILLERS", - "nomCommune": "GODENVILLERS" + "codePostal": "23110", + "codeCommune": "23046", + "libelleAcheminement": "CHAMBONCHARD", + "nomCommune": "CHAMBONCHARD" }, { - "codePostal": "27520", - "codeCommune": "27077", - "libelleAcheminement": "BOISSEY LE CHATEL", - "nomCommune": "BOISSEY LE CHATEL" + "codePostal": "24340", + "codeCommune": "24403", + "libelleAcheminement": "ST FELIX DE BOURDEILLES", + "nomCommune": "ST FELIX DE BOURDEILLES" }, { - "codePostal": "52190", - "codeCommune": "52126", - "libelleAcheminement": "CHOILLEY DARDENAY", - "nomCommune": "CHOILLEY DARDENAY" + "codePostal": "33138", + "codeCommune": "33229", + "libelleAcheminement": "LANTON", + "nomCommune": "LANTON" }, { - "codePostal": "65200", - "codeCommune": "65059", - "libelleAcheminement": "BAGNERES DE BIGORRE", - "nomCommune": "BAGNERES DE BIGORRE" + "codePostal": "33220", + "codeCommune": "33242", + "libelleAcheminement": "LES LEVES ET THOUMEYRAGUES", + "nomCommune": "LES LEVES ET THOUMEYRAGUES" }, { - "codePostal": "60117", - "codeCommune": "60279", - "libelleAcheminement": "GONDREVILLE", - "nomCommune": "GONDREVILLE" + "codePostal": "23700", + "codeCommune": "23055", + "libelleAcheminement": "CHATELARD", + "nomCommune": "CHATELARD" }, { - "codePostal": "27290", - "codeCommune": "27083", - "libelleAcheminement": "BONNEVILLE APTOT", - "nomCommune": "BONNEVILLE APTOT" + "codePostal": "24300", + "codeCommune": "24411", + "libelleAcheminement": "ST FRONT SUR NIZONNE", + "nomCommune": "ST FRONT SUR NIZONNE" }, { - "codePostal": "52700", - "codeCommune": "52128", - "libelleAcheminement": "CIREY LES MAREILLES", - "nomCommune": "CIREY LES MAREILLES" + "codePostal": "33210", + "codeCommune": "33237", + "libelleAcheminement": "LEOGEATS", + "nomCommune": "LEOGEATS" }, { - "codePostal": "65690", - "codeCommune": "65062", - "libelleAcheminement": "BARBAZAN DEBAT", - "nomCommune": "BARBAZAN DEBAT" + "codePostal": "33430", + "codeCommune": "33244", + "libelleAcheminement": "LIGNAN DE BAZAS", + "nomCommune": "LIGNAN DE BAZAS" }, { - "codePostal": "60270", - "codeCommune": "60282", - "libelleAcheminement": "GOUVIEUX", - "nomCommune": "GOUVIEUX" + "codePostal": "23270", + "codeCommune": "23057", + "libelleAcheminement": "CHATELUS MALVALEIX", + "nomCommune": "CHATELUS MALVALEIX" }, { - "codePostal": "27230", - "codeCommune": "27106", - "libelleAcheminement": "BOURNAINVILLE FAVEROLLES", - "nomCommune": "BOURNAINVILLE FAVEROLLES" + "codePostal": "24170", + "codeCommune": "24416", + "libelleAcheminement": "ST GERMAIN DE BELVES", + "nomCommune": "ST GERMAIN DE BELVES" }, { - "codePostal": "52110", - "codeCommune": "52129", - "libelleAcheminement": "CIREY SUR BLAISE", - "nomCommune": "CIREY SUR BLAISE" + "codePostal": "33190", + "codeCommune": "33250", + "libelleAcheminement": "LOUBENS", + "nomCommune": "LOUBENS" }, { - "codePostal": "65240", - "codeCommune": "65064", - "libelleAcheminement": "BAREILLES", - "nomCommune": "BAREILLES" + "codePostal": "33220", + "codeCommune": "33246", + "libelleAcheminement": "LIGUEUX", + "nomCommune": "LIGUEUX" }, { - "codePostal": "60210", - "codeCommune": "60297", - "libelleAcheminement": "LE HAMEL", - "nomCommune": "LE HAMEL" + "codePostal": "23130", + "codeCommune": "23058", + "libelleAcheminement": "LE CHAUCHET", + "nomCommune": "LE CHAUCHET" }, { - "codePostal": "27350", - "codeCommune": "27110", - "libelleAcheminement": "BRESTOT", - "nomCommune": "BRESTOT" + "codePostal": "24190", + "codeCommune": "24418", + "libelleAcheminement": "ST GERMAIN DU SALEMBRE", + "nomCommune": "ST GERMAIN DU SALEMBRE" }, { - "codePostal": "52400", - "codeCommune": "52135", - "libelleAcheminement": "COIFFY LE BAS", - "nomCommune": "COIFFY LE BAS" + "codePostal": "33670", + "codeCommune": "33263", + "libelleAcheminement": "MADIRAC", + "nomCommune": "MADIRAC" }, { - "codePostal": "65250", - "codeCommune": "65069", - "libelleAcheminement": "LA BARTHE DE NESTE", - "nomCommune": "LA BARTHE DE NESTE" + "codePostal": "33480", + "codeCommune": "33248", + "libelleAcheminement": "LISTRAC MEDOC", + "nomCommune": "LISTRAC MEDOC" }, { - "codePostal": "60210", - "codeCommune": "60303", - "libelleAcheminement": "HAUTBOS", - "nomCommune": "HAUTBOS" + "codePostal": "23250", + "codeCommune": "23060", + "libelleAcheminement": "CHAVANAT", + "nomCommune": "CHAVANAT" }, { - "codePostal": "27220", - "codeCommune": "27111", - "libelleAcheminement": "BRETAGNOLLES", - "nomCommune": "BRETAGNOLLES" + "codePostal": "24400", + "codeCommune": "24420", + "libelleAcheminement": "ST GERY", + "nomCommune": "ST GERY" }, { - "codePostal": "52160", - "codeCommune": "52137", - "libelleAcheminement": "COLMIER LE BAS", - "nomCommune": "COLMIER LE BAS" + "codePostal": "33620", + "codeCommune": "33266", + "libelleAcheminement": "MARCENAIS", + "nomCommune": "MARCENAIS" }, { - "codePostal": "65140", - "codeCommune": "65073", - "libelleAcheminement": "BAZILLAC", - "nomCommune": "BAZILLAC" + "codePostal": "33125", + "codeCommune": "33251", + "libelleAcheminement": "LOUCHATS", + "nomCommune": "LOUCHATS" }, { - "codePostal": "60190", - "codeCommune": "60308", - "libelleAcheminement": "HEMEVILLERS", - "nomCommune": "HEMEVILLERS" + "codePostal": "23130", + "codeCommune": "23061", + "libelleAcheminement": "CHENERAILLES", + "nomCommune": "CHENERAILLES" }, { - "codePostal": "27160", - "codeCommune": "27112", - "libelleAcheminement": "BRETEUIL", - "nomCommune": "BRETEUIL" + "codePostal": "24330", + "codeCommune": "24421", + "libelleAcheminement": "ST GEYRAC", + "nomCommune": "ST GEYRAC" }, { - "codePostal": "52160", - "codeCommune": "52138", - "libelleAcheminement": "COLMIER LE HAUT", - "nomCommune": "COLMIER LE HAUT" + "codePostal": "33690", + "codeCommune": "33271", + "libelleAcheminement": "MARIONS", + "nomCommune": "MARIONS" }, { - "codePostal": "65670", - "codeCommune": "65074", - "libelleAcheminement": "BAZORDAN", - "nomCommune": "BAZORDAN" + "codePostal": "33840", + "codeCommune": "33255", + "libelleAcheminement": "LUCMAU", + "nomCommune": "LUCMAU" }, { - "codePostal": "60119", - "codeCommune": "60309", - "libelleAcheminement": "HENONVILLE", - "nomCommune": "HENONVILLE" + "codePostal": "23270", + "codeCommune": "23064", + "libelleAcheminement": "CLUGNAT", + "nomCommune": "CLUGNAT" }, { - "codePostal": "27160", - "codeCommune": "27112", - "libelleAcheminement": "BRETEUIL", - "nomCommune": "BRETEUIL" + "codePostal": "24110", + "codeCommune": "24442", + "libelleAcheminement": "ST LEON SUR L ISLE", + "nomCommune": "ST LEON SUR L ISLE" }, { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "33350", + "codeCommune": "33282", + "libelleAcheminement": "MERIGNAS", + "nomCommune": "MERIGNAS" }, { - "codePostal": "65170", - "codeCommune": "65075", - "libelleAcheminement": "BAZUS AURE", - "nomCommune": "BAZUS AURE" + "codePostal": "33290", + "codeCommune": "33256", + "libelleAcheminement": "LUDON MEDOC", + "nomCommune": "LUDON MEDOC" }, { - "codePostal": "60360", - "codeCommune": "60314", - "libelleAcheminement": "HETOMESNIL", - "nomCommune": "HETOMESNIL" + "codePostal": "23700", + "codeCommune": "23066", + "libelleAcheminement": "LE COMPAS", + "nomCommune": "LE COMPAS" }, { - "codePostal": "27930", - "codeCommune": "27118", - "libelleAcheminement": "BROSVILLE", - "nomCommune": "BROSVILLE" + "codePostal": "24160", + "codeCommune": "24448", + "libelleAcheminement": "ST MARTIAL D ALBAREDE", + "nomCommune": "ST MARTIAL D ALBAREDE" }, { - "codePostal": "52000", - "codeCommune": "52141", - "libelleAcheminement": "CONDES", - "nomCommune": "CONDES" + "codePostal": "33380", + "codeCommune": "33284", + "libelleAcheminement": "MIOS", + "nomCommune": "MIOS" }, { - "codePostal": "65190", - "codeCommune": "65079", - "libelleAcheminement": "BEGOLE", - "nomCommune": "BEGOLE" + "codePostal": "33420", + "codeCommune": "33257", + "libelleAcheminement": "LUGAIGNAC", + "nomCommune": "LUGAIGNAC" }, { - "codePostal": "60250", - "codeCommune": "60317", - "libelleAcheminement": "HONDAINVILLE", - "nomCommune": "HONDAINVILLE" + "codePostal": "23100", + "codeCommune": "23067", + "libelleAcheminement": "LA COURTINE", + "nomCommune": "LA COURTINE" }, { - "codePostal": "27800", - "codeCommune": "27125", - "libelleAcheminement": "CALLEVILLE", - "nomCommune": "CALLEVILLE" + "codePostal": "24210", + "codeCommune": "24473", + "libelleAcheminement": "STE ORSE", + "nomCommune": "STE ORSE" }, { - "codePostal": "52700", - "codeCommune": "52142", - "libelleAcheminement": "CONSIGNY", - "nomCommune": "CONSIGNY" + "codePostal": "33710", + "codeCommune": "33285", + "libelleAcheminement": "MOMBRIER", + "nomCommune": "MOMBRIER" }, { - "codePostal": "65230", - "codeCommune": "65090", - "libelleAcheminement": "BETPOUY", - "nomCommune": "BETPOUY" + "codePostal": "33620", + "codeCommune": "33272", + "libelleAcheminement": "MARSAS", + "nomCommune": "MARSAS" }, { - "codePostal": "60710", - "codeCommune": "60318", - "libelleAcheminement": "HOUDANCOURT", - "nomCommune": "HOUDANCOURT" + "codePostal": "23140", + "codeCommune": "23072", + "libelleAcheminement": "DOMEYROT", + "nomCommune": "DOMEYROT" }, { - "codePostal": "27500", - "codeCommune": "27126", - "libelleAcheminement": "CAMPIGNY", - "nomCommune": "CAMPIGNY" + "codePostal": "24470", + "codeCommune": "24479", + "libelleAcheminement": "ST PARDOUX LA RIVIERE", + "nomCommune": "ST PARDOUX LA RIVIERE" }, { - "codePostal": "52500", - "codeCommune": "52145", - "libelleAcheminement": "COUBLANC", - "nomCommune": "COUBLANC" + "codePostal": "33190", + "codeCommune": "33287", + "libelleAcheminement": "MONGAUZY", + "nomCommune": "MONGAUZY" }, { - "codePostal": "65220", - "codeCommune": "65095", - "libelleAcheminement": "BONNEFONT", - "nomCommune": "BONNEFONT" + "codePostal": "33700", + "codeCommune": "33281", + "libelleAcheminement": "MERIGNAC", + "nomCommune": "MERIGNAC" }, { - "codePostal": "60240", - "codeCommune": "60327", - "libelleAcheminement": "JOUY SOUS THELLE", - "nomCommune": "JOUY SOUS THELLE" + "codePostal": "23340", + "codeCommune": "23077", + "libelleAcheminement": "FAUX LA MONTAGNE", + "nomCommune": "FAUX LA MONTAGNE" }, { - "codePostal": "27600", - "codeCommune": "27142", - "libelleAcheminement": "CHAMPENARD", - "nomCommune": "CHAMPENARD" + "codePostal": "24130", + "codeCommune": "24487", + "libelleAcheminement": "ST PIERRE D EYRAUD", + "nomCommune": "ST PIERRE D EYRAUD" }, { - "codePostal": "52190", - "codeCommune": "52158", - "libelleAcheminement": "CUSEY", - "nomCommune": "CUSEY" + "codePostal": "33450", + "codeCommune": "33293", + "libelleAcheminement": "MONTUSSAN", + "nomCommune": "MONTUSSAN" }, { - "codePostal": "65130", - "codeCommune": "65096", - "libelleAcheminement": "BONNEMAZON", - "nomCommune": "BONNEMAZON" + "codePostal": "33410", + "codeCommune": "33288", + "libelleAcheminement": "MONPRIMBLANC", + "nomCommune": "MONPRIMBLANC" }, { - "codePostal": "60590", - "codeCommune": "60331", - "libelleAcheminement": "LABOSSE", - "nomCommune": "LABOSSE" + "codePostal": "23500", + "codeCommune": "23079", + "libelleAcheminement": "FELLETIN", + "nomCommune": "FELLETIN" }, { - "codePostal": "27230", - "codeCommune": "27149", - "libelleAcheminement": "LA CHAPELLE HARENG", - "nomCommune": "LA CHAPELLE HARENG" + "codePostal": "24170", + "codeCommune": "24488", + "libelleAcheminement": "ST POMPONT", + "nomCommune": "ST POMPONT" }, { - "codePostal": "52130", - "codeCommune": "52169", - "libelleAcheminement": "DOMBLAIN", - "nomCommune": "DOMBLAIN" + "codePostal": "33420", + "codeCommune": "33298", + "libelleAcheminement": "MOULON", + "nomCommune": "MOULON" }, { - "codePostal": "65100", - "codeCommune": "65107", - "libelleAcheminement": "BOURREAC", - "nomCommune": "BOURREAC" + "codePostal": "33580", + "codeCommune": "33289", + "libelleAcheminement": "MONSEGUR", + "nomCommune": "MONSEGUR" }, { - "codePostal": "60480", - "codeCommune": "60336", - "libelleAcheminement": "LACHAUSSEE DU BOIS D ECU", - "nomCommune": "LACHAUSSEE DU BOIS D ECU" + "codePostal": "23360", + "codeCommune": "23084", + "libelleAcheminement": "LA FORET DU TEMPLE", + "nomCommune": "LA FORET DU TEMPLE" }, { - "codePostal": "27150", - "codeCommune": "27153", - "libelleAcheminement": "CHAUVINCOURT PROVEMONT", - "nomCommune": "CHAUVINCOURT PROVEMONT" + "codePostal": "24450", + "codeCommune": "24489", + "libelleAcheminement": "ST PRIEST LES FOUGERES", + "nomCommune": "ST PRIEST LES FOUGERES" }, { - "codePostal": "52270", - "codeCommune": "52177", - "libelleAcheminement": "DOULAINCOURT SAUCOURT", - "nomCommune": "DOULAINCOURT SAUCOURT" + "codePostal": "33730", + "codeCommune": "33307", + "libelleAcheminement": "NOAILLAN", + "nomCommune": "NOAILLAN" }, { - "codePostal": "65240", - "codeCommune": "65116", - "libelleAcheminement": "CADEAC", - "nomCommune": "CADEAC" + "codePostal": "33240", + "codeCommune": "33295", + "libelleAcheminement": "MOUILLAC", + "nomCommune": "MOUILLAC" }, { - "codePostal": "60400", - "codeCommune": "60348", - "libelleAcheminement": "LARBROYE", - "nomCommune": "LARBROYE" + "codePostal": "23350", + "codeCommune": "23089", + "libelleAcheminement": "GENOUILLAC", + "nomCommune": "GENOUILLAC" }, { - "codePostal": "27220", - "codeCommune": "27154", - "libelleAcheminement": "CHAVIGNY BAILLEUL", - "nomCommune": "CHAVIGNY BAILLEUL" + "codePostal": "24410", + "codeCommune": "24490", + "libelleAcheminement": "ST PRIVAT EN PERIGORD", + "nomCommune": "ST PRIVAT EN PERIGORD" }, { - "codePostal": "52410", - "codeCommune": "52194", - "libelleAcheminement": "EURVILLE BIENVILLE", - "nomCommune": "EURVILLE BIENVILLE" + "codePostal": "33113", + "codeCommune": "33310", + "libelleAcheminement": "ORIGNE", + "nomCommune": "ORIGNE" }, { - "codePostal": "65710", - "codeCommune": "65123", - "libelleAcheminement": "CAMPAN", - "nomCommune": "CAMPAN" + "codePostal": "33990", + "codeCommune": "33300", + "libelleAcheminement": "NAUJAC SUR MER", + "nomCommune": "NAUJAC SUR MER" }, { - "codePostal": "60120", - "codeCommune": "60353", - "libelleAcheminement": "LAVACQUERIE", - "nomCommune": "LAVACQUERIE" + "codePostal": "23600", + "codeCommune": "23104", + "libelleAcheminement": "LAVAUFRANCHE", + "nomCommune": "LAVAUFRANCHE" }, { - "codePostal": "27160", - "codeCommune": "27157", - "libelleAcheminement": "MARBOIS", - "nomCommune": "MARBOIS" + "codePostal": "24560", + "codeCommune": "24492", + "libelleAcheminement": "STE RADEGONDE", + "nomCommune": "STE RADEGONDE" }, { - "codePostal": "52500", - "codeCommune": "52195", - "libelleAcheminement": "FARINCOURT", - "nomCommune": "FARINCOURT" + "codePostal": "33240", + "codeCommune": "33321", + "libelleAcheminement": "PEUJARD", + "nomCommune": "PEUJARD" }, { - "codePostal": "65170", - "codeCommune": "65124", - "libelleAcheminement": "CAMPARAN", - "nomCommune": "CAMPARAN" + "codePostal": "33500", + "codeCommune": "33302", + "libelleAcheminement": "NEAC", + "nomCommune": "NEAC" }, { - "codePostal": "60210", - "codeCommune": "60354", - "libelleAcheminement": "LAVERRIERE", - "nomCommune": "LAVERRIERE" + "codePostal": "23150", + "codeCommune": "23107", + "libelleAcheminement": "LEPINAS", + "nomCommune": "LEPINAS" }, { - "codePostal": "27290", - "codeCommune": "27167", - "libelleAcheminement": "CONDE SUR RISLE", - "nomCommune": "CONDE SUR RISLE" + "codePostal": "24470", + "codeCommune": "24498", + "libelleAcheminement": "ST SAUD LACOUSSIERE", + "nomCommune": "ST SAUD LACOUSSIERE" }, { - "codePostal": "52800", - "codeCommune": "52205", - "libelleAcheminement": "FOULAIN", - "nomCommune": "FOULAIN" + "codePostal": "33500", + "codeCommune": "33328", + "libelleAcheminement": "POMEROL", + "nomCommune": "POMEROL" }, { - "codePostal": "65230", - "codeCommune": "65126", - "libelleAcheminement": "CAMPUZAN", - "nomCommune": "CAMPUZAN" + "codePostal": "33580", + "codeCommune": "33304", + "libelleAcheminement": "NEUFFONS", + "nomCommune": "NEUFFONS" }, { - "codePostal": "60800", - "codeCommune": "60358", - "libelleAcheminement": "LEVIGNEN", - "nomCommune": "LEVIGNEN" + "codePostal": "23240", + "codeCommune": "23111", + "libelleAcheminement": "LIZIERES", + "nomCommune": "LIZIERES" }, { - "codePostal": "27120", - "codeCommune": "27171", - "libelleAcheminement": "LE CORMIER", - "nomCommune": "LE CORMIER" + "codePostal": "24520", + "codeCommune": "24499", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "52360", - "codeCommune": "52207", - "libelleAcheminement": "FRECOURT", - "nomCommune": "FRECOURT" + "codePostal": "33730", + "codeCommune": "33329", + "libelleAcheminement": "POMPEJAC", + "nomCommune": "POMPEJAC" }, { - "codePostal": "65130", - "codeCommune": "65127", - "libelleAcheminement": "CAPVERN LES BAINS", - "nomCommune": "CAPVERN" + "codePostal": "33430", + "codeCommune": "33305", + "libelleAcheminement": "LE NIZAN", + "nomCommune": "LE NIZAN" }, { - "codePostal": "60240", - "codeCommune": "60361", - "libelleAcheminement": "LIANCOURT ST PIERRE", - "nomCommune": "LIANCOURT ST PIERRE" + "codePostal": "23360", + "codeCommune": "23112", + "libelleAcheminement": "LOURDOUEIX ST PIERRE", + "nomCommune": "LOURDOUEIX ST PIERRE" }, { - "codePostal": "27150", - "codeCommune": "27176", - "libelleAcheminement": "COUDRAY", - "nomCommune": "COUDRAY" + "codePostal": "24230", + "codeCommune": "24501", + "libelleAcheminement": "ST SEURIN DE PRATS", + "nomCommune": "ST SEURIN DE PRATS" }, { - "codePostal": "52210", - "codeCommune": "52220", - "libelleAcheminement": "GIEY SUR AUJON", - "nomCommune": "GIEY SUR AUJON" + "codePostal": "33660", + "codeCommune": "33332", + "libelleAcheminement": "PORCHERES", + "nomCommune": "PORCHERES" }, { - "codePostal": "65700", - "codeCommune": "65130", - "libelleAcheminement": "CASTELNAU RIVIERE BASSE", - "nomCommune": "CASTELNAU RIVIERE BASSE" + "codePostal": "33340", + "codeCommune": "33309", + "libelleAcheminement": "ORDONNAC", + "nomCommune": "ORDONNAC" }, { - "codePostal": "60640", - "codeCommune": "60362", - "libelleAcheminement": "LIBERMONT", - "nomCommune": "LIBERMONT" + "codePostal": "23360", + "codeCommune": "23112", + "libelleAcheminement": "LOURDOUEIX ST PIERRE", + "nomCommune": "LOURDOUEIX ST PIERRE" }, { - "codePostal": "27120", - "codeCommune": "27190", - "libelleAcheminement": "CROISY SUR EURE", - "nomCommune": "CROISY SUR EURE" + "codePostal": "24600", + "codeCommune": "24504", + "libelleAcheminement": "ST SULPICE DE ROUMAGNAC", + "nomCommune": "ST SULPICE DE ROUMAGNAC" }, { - "codePostal": "52320", - "codeCommune": "52230", - "libelleAcheminement": "GUDMONT VILLIERS", - "nomCommune": "GUDMONT VILLIERS" + "codePostal": "33730", + "codeCommune": "33336", + "libelleAcheminement": "PRECHAC", + "nomCommune": "PRECHAC" }, { - "codePostal": "65350", - "codeCommune": "65133", - "libelleAcheminement": "CASTERA LOU", - "nomCommune": "CASTERA LOU" + "codePostal": "33370", + "codeCommune": "33330", + "libelleAcheminement": "POMPIGNAC", + "nomCommune": "POMPIGNAC" }, { - "codePostal": "60510", - "codeCommune": "60366", - "libelleAcheminement": "LITZ", - "nomCommune": "LITZ" + "codePostal": "23260", + "codeCommune": "23115", + "libelleAcheminement": "MAGNAT L ETRANGE", + "nomCommune": "MAGNAT L ETRANGE" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "24160", + "codeCommune": "24507", + "libelleAcheminement": "STE TRIE", + "nomCommune": "STE TRIE" }, { - "codePostal": "52600", - "codeCommune": "52242", - "libelleAcheminement": "HAUTE AMANCE", - "nomCommune": "HAUTE AMANCE" + "codePostal": "33710", + "codeCommune": "33341", + "libelleAcheminement": "PUGNAC", + "nomCommune": "PUGNAC" }, { - "codePostal": "65230", - "codeCommune": "65136", - "libelleAcheminement": "CAUBOUS", - "nomCommune": "CAUBOUS" + "codePostal": "33710", + "codeCommune": "33341", + "libelleAcheminement": "PUGNAC", + "nomCommune": "PUGNAC" }, { - "codePostal": "60126", - "codeCommune": "60369", - "libelleAcheminement": "LONGUEIL STE MARIE", - "nomCommune": "LONGUEIL STE MARIE" + "codePostal": "23800", + "codeCommune": "23117", + "libelleAcheminement": "MAISON FEYNE", + "nomCommune": "MAISON FEYNE" }, { - "codePostal": "27120", - "codeCommune": "27203", - "libelleAcheminement": "DOUAINS", - "nomCommune": "DOUAINS" + "codePostal": "24420", + "codeCommune": "24513", + "libelleAcheminement": "ST VINCENT SUR L ISLE", + "nomCommune": "ST VINCENT SUR L ISLE" }, { - "codePostal": "52600", - "codeCommune": "52242", - "libelleAcheminement": "HAUTE AMANCE", - "nomCommune": "HAUTE AMANCE" + "codePostal": "33141", + "codeCommune": "33364", + "libelleAcheminement": "SAILLANS", + "nomCommune": "SAILLANS" }, { - "codePostal": "65200", - "codeCommune": "65147", - "libelleAcheminement": "CIEUTAT", - "nomCommune": "CIEUTAT" + "codePostal": "33660", + "codeCommune": "33347", + "libelleAcheminement": "PUYNORMAND", + "nomCommune": "PUYNORMAND" }, { - "codePostal": "60600", - "codeCommune": "60375", - "libelleAcheminement": "MAIMBEVILLE", - "nomCommune": "MAIMBEVILLE" + "codePostal": "23600", + "codeCommune": "23120", + "libelleAcheminement": "MALLERET BOUSSAC", + "nomCommune": "MALLERET BOUSSAC" }, { - "codePostal": "27320", - "codeCommune": "27206", - "libelleAcheminement": "DROISY", - "nomCommune": "DROISY" + "codePostal": "24160", + "codeCommune": "24515", + "libelleAcheminement": "SALAGNAC", + "nomCommune": "SALAGNAC" }, { - "codePostal": "52600", - "codeCommune": "52242", - "libelleAcheminement": "HAUTE AMANCE", - "nomCommune": "HAUTE AMANCE" + "codePostal": "33490", + "codeCommune": "33367", + "libelleAcheminement": "ST ANDRE DU BOIS", + "nomCommune": "ST ANDRE DU BOIS" }, { - "codePostal": "65350", - "codeCommune": "65151", - "libelleAcheminement": "COLLONGUES", - "nomCommune": "COLLONGUES" + "codePostal": "33340", + "codeCommune": "33348", + "libelleAcheminement": "QUEYRAC", + "nomCommune": "QUEYRAC" }, { - "codePostal": "60310", - "codeCommune": "60381", - "libelleAcheminement": "MARGNY AUX CERISES", - "nomCommune": "MARGNY AUX CERISES" + "codePostal": "23400", + "codeCommune": "23133", + "libelleAcheminement": "MONTBOUCHER", + "nomCommune": "MONTBOUCHER" }, { - "codePostal": "27510", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "24170", + "codeCommune": "24517", + "libelleAcheminement": "SALLES DE BELVES", + "nomCommune": "SALLES DE BELVES" }, { - "codePostal": "52150", - "codeCommune": "52243", - "libelleAcheminement": "HUILLIECOURT", - "nomCommune": "HUILLIECOURT" + "codePostal": "33820", + "codeCommune": "33374", + "libelleAcheminement": "ST AUBIN DE BLAYE", + "nomCommune": "ST AUBIN DE BLAYE" }, { - "codePostal": "65370", - "codeCommune": "65158", - "libelleAcheminement": "ESBAREICH", - "nomCommune": "ESBAREICH" + "codePostal": "33420", + "codeCommune": "33350", + "libelleAcheminement": "RAUZAN", + "nomCommune": "RAUZAN" }, { - "codePostal": "60890", - "codeCommune": "60385", - "libelleAcheminement": "MAROLLES", - "nomCommune": "MAROLLES" + "codePostal": "23220", + "codeCommune": "23136", + "libelleAcheminement": "MORTROUX", + "nomCommune": "MORTROUX" }, { - "codePostal": "27630", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "24380", + "codeCommune": "24518", + "libelleAcheminement": "SALON", + "nomCommune": "SALON" }, { - "codePostal": "52150", - "codeCommune": "52247", - "libelleAcheminement": "ILLOUD", - "nomCommune": "ILLOUD" + "codePostal": "33420", + "codeCommune": "33375", + "libelleAcheminement": "ST AUBIN DE BRANNE", + "nomCommune": "ST AUBIN DE BRANNE" }, { - "codePostal": "65370", - "codeCommune": "65175", - "libelleAcheminement": "FERRERE", - "nomCommune": "FERRERE" + "codePostal": "33190", + "codeCommune": "33352", + "libelleAcheminement": "LA REOLE", + "nomCommune": "LA REOLE" }, { - "codePostal": "60660", - "codeCommune": "60393", - "libelleAcheminement": "MELLO", - "nomCommune": "MELLO" + "codePostal": "23150", + "codeCommune": "23138", + "libelleAcheminement": "MOUTIER D AHUN", + "nomCommune": "MOUTIER D AHUN" }, { - "codePostal": "27440", - "codeCommune": "27214", - "libelleAcheminement": "ECOUIS", - "nomCommune": "ECOUIS" + "codePostal": "24420", + "codeCommune": "24540", + "libelleAcheminement": "SORGES ET LIGUEUX EN PERIGORD", + "nomCommune": "SORGES ET LIGUEUX EN PERIGORD" }, { - "codePostal": "52220", - "codeCommune": "52266", - "libelleAcheminement": "LANEUVILLE A REMY", - "nomCommune": "LANEUVILLE A REMY" + "codePostal": "33220", + "codeCommune": "33377", + "libelleAcheminement": "ST AVIT DE SOULEGE", + "nomCommune": "ST AVIT DE SOULEGE" }, { - "codePostal": "65220", - "codeCommune": "65178", - "libelleAcheminement": "FRECHEDE", - "nomCommune": "FRECHEDE" + "codePostal": "33410", + "codeCommune": "33355", + "libelleAcheminement": "RIONS", + "nomCommune": "RIONS" }, { - "codePostal": "60240", - "codeCommune": "60401", - "libelleAcheminement": "LE MESNIL THERIBUS", - "nomCommune": "LE MESNIL THERIBUS" + "codePostal": "23130", + "codeCommune": "23151", + "libelleAcheminement": "PEYRAT LA NONIERE", + "nomCommune": "PEYRAT LA NONIERE" }, { - "codePostal": "27110", - "codeCommune": "27215", - "libelleAcheminement": "ECQUETOT", - "nomCommune": "ECQUETOT" + "codePostal": "24240", + "codeCommune": "24549", + "libelleAcheminement": "THENAC", + "nomCommune": "THENAC" }, { - "codePostal": "52200", - "codeCommune": "52269", - "libelleAcheminement": "LANGRES", - "nomCommune": "LANGRES" + "codePostal": "33710", + "codeCommune": "33388", + "libelleAcheminement": "ST CIERS DE CANESSE", + "nomCommune": "ST CIERS DE CANESSE" }, { - "codePostal": "65120", - "codeCommune": "65192", - "libelleAcheminement": "GAVARNIE GEDRE", - "nomCommune": "GAVARNIE GEDRE" + "codePostal": "33760", + "codeCommune": "33358", + "libelleAcheminement": "ROMAGNE", + "nomCommune": "ROMAGNE" }, { - "codePostal": "60880", - "codeCommune": "60402", - "libelleAcheminement": "LE MEUX", - "nomCommune": "LE MEUX" + "codePostal": "23250", + "codeCommune": "23155", + "libelleAcheminement": "PONTARION", + "nomCommune": "PONTARION" }, { - "codePostal": "27560", - "codeCommune": "27222", - "libelleAcheminement": "EPREVILLE EN LIEUVIN", - "nomCommune": "EPREVILLE EN LIEUVIN" + "codePostal": "24800", + "codeCommune": "24567", + "libelleAcheminement": "VAUNAC", + "nomCommune": "VAUNAC" }, { - "codePostal": "52800", - "codeCommune": "52271", - "libelleAcheminement": "LANQUES SUR ROGNON", - "nomCommune": "LANQUES SUR ROGNON" + "codePostal": "33350", + "codeCommune": "33390", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "65240", - "codeCommune": "65199", - "libelleAcheminement": "GERM", - "nomCommune": "GERM" + "codePostal": "33580", + "codeCommune": "33359", + "libelleAcheminement": "ROQUEBRUNE", + "nomCommune": "ROQUEBRUNE" }, { - "codePostal": "60220", - "codeCommune": "60405", - "libelleAcheminement": "MOLIENS", - "nomCommune": "MOLIENS" + "codePostal": "23800", + "codeCommune": "23166", + "libelleAcheminement": "SAGNAT", + "nomCommune": "SAGNAT" }, { - "codePostal": "27190", - "codeCommune": "27238", - "libelleAcheminement": "FERRIERES HAUT CLOCHER", - "nomCommune": "FERRIERES HAUT CLOCHER" + "codePostal": "24540", + "codeCommune": "24572", + "libelleAcheminement": "VERGT DE BIRON", + "nomCommune": "VERGT DE BIRON" }, { - "codePostal": "52000", - "codeCommune": "52276", - "libelleAcheminement": "LAVILLE AUX BOIS", - "nomCommune": "LAVILLE AUX BOIS" + "codePostal": "33330", + "codeCommune": "33394", + "libelleAcheminement": "ST EMILION", + "nomCommune": "ST EMILION" }, { - "codePostal": "65400", - "codeCommune": "65202", - "libelleAcheminement": "GEZ", - "nomCommune": "GEZ" + "codePostal": "33220", + "codeCommune": "33360", + "libelleAcheminement": "LA ROQUILLE", + "nomCommune": "LA ROQUILLE" }, { - "codePostal": "60113", - "codeCommune": "60408", - "libelleAcheminement": "MONCHY HUMIERES", - "nomCommune": "MONCHY HUMIERES" + "codePostal": "23110", + "codeCommune": "23167", + "libelleAcheminement": "SANNAT", + "nomCommune": "SANNAT" }, { - "codePostal": "27270", - "codeCommune": "27239", - "libelleAcheminement": "FERRIERES ST HILAIRE", - "nomCommune": "FERRIERES ST HILAIRE" + "codePostal": "24140", + "codeCommune": "24581", + "libelleAcheminement": "VILLAMBLARD", + "nomCommune": "VILLAMBLARD" }, { - "codePostal": "52700", - "codeCommune": "52286", - "libelleAcheminement": "LEURVILLE", - "nomCommune": "LEURVILLE" + "codePostal": "33350", + "codeCommune": "33401", + "libelleAcheminement": "STE FLORENCE", + "nomCommune": "STE FLORENCE" }, { - "codePostal": "65100", - "codeCommune": "65203", - "libelleAcheminement": "GEZ EZ ANGLES", - "nomCommune": "GEZ EZ ANGLES" + "codePostal": "33910", + "codeCommune": "33362", + "libelleAcheminement": "SABLONS", + "nomCommune": "SABLONS" }, { - "codePostal": "60240", - "codeCommune": "60411", - "libelleAcheminement": "MONNEVILLE", - "nomCommune": "MONNEVILLE" + "codePostal": "23600", + "codeCommune": "23174", + "libelleAcheminement": "SOUMANS", + "nomCommune": "SOUMANS" }, { - "codePostal": "27470", - "codeCommune": "27251", - "libelleAcheminement": "FONTAINE L ABBE", - "nomCommune": "FONTAINE L ABBE" + "codePostal": "25320", + "codeCommune": "25001", + "libelleAcheminement": "ABBANS DESSOUS", + "nomCommune": "ABBANS DESSOUS" }, { - "codePostal": "52230", - "codeCommune": "52288", - "libelleAcheminement": "LEZEVILLE", - "nomCommune": "LEZEVILLE" + "codePostal": "33490", + "codeCommune": "33411", + "libelleAcheminement": "ST GERMAIN DE GRAVE", + "nomCommune": "ST GERMAIN DE GRAVE" }, { - "codePostal": "65130", - "codeCommune": "65207", - "libelleAcheminement": "GOURGUE", - "nomCommune": "GOURGUE" + "codePostal": "33126", + "codeCommune": "33365", + "libelleAcheminement": "ST AIGNAN", + "nomCommune": "ST AIGNAN" }, { - "codePostal": "60950", - "codeCommune": "60413", - "libelleAcheminement": "MONTAGNY STE FELICITE", - "nomCommune": "MONTAGNY STE FELICITE" + "codePostal": "23150", + "codeCommune": "23175", + "libelleAcheminement": "SOUS PARSAT", + "nomCommune": "SOUS PARSAT" }, { - "codePostal": "27500", - "codeCommune": "27263", - "libelleAcheminement": "LE PERREY", - "nomCommune": "LE PERREY" + "codePostal": "25310", + "codeCommune": "25004", + "libelleAcheminement": "ABBEVILLERS", + "nomCommune": "ABBEVILLERS" }, { - "codePostal": "52300", - "codeCommune": "52302", - "libelleAcheminement": "MAIZIERES", - "nomCommune": "MAIZIERES" + "codePostal": "33340", + "codeCommune": "33412", + "libelleAcheminement": "ST GERMAIN D ESTEUIL", + "nomCommune": "ST GERMAIN D ESTEUIL" }, { - "codePostal": "65240", - "codeCommune": "65209", - "libelleAcheminement": "GREZIAN", - "nomCommune": "GREZIAN" + "codePostal": "33860", + "codeCommune": "33380", + "libelleAcheminement": "VAL DE LIVENNE", + "nomCommune": "VAL DE LIVENNE" }, { - "codePostal": "60300", - "codeCommune": "60421", - "libelleAcheminement": "MONT L EVEQUE", - "nomCommune": "MONT L EVEQUE" + "codePostal": "23200", + "codeCommune": "23182", + "libelleAcheminement": "ST AVIT DE TARDES", + "nomCommune": "ST AVIT DE TARDES" }, { - "codePostal": "27680", - "codeCommune": "27263", - "libelleAcheminement": "LE PERREY", - "nomCommune": "LE PERREY" + "codePostal": "25270", + "codeCommune": "25026", + "libelleAcheminement": "ARC SOUS MONTENOT", + "nomCommune": "ARC SOUS MONTENOT" }, { - "codePostal": "52500", - "codeCommune": "52303", - "libelleAcheminement": "MAIZIERES SUR AMANCE", - "nomCommune": "MAIZIERES SUR AMANCE" + "codePostal": "33240", + "codeCommune": "33414", + "libelleAcheminement": "ST GERMAIN DE LA RIVIERE", + "nomCommune": "ST GERMAIN DE LA RIVIERE" }, { - "codePostal": "65120", - "codeCommune": "65210", - "libelleAcheminement": "GRUST", - "nomCommune": "GRUST" + "codePostal": "33920", + "codeCommune": "33382", + "libelleAcheminement": "ST CHRISTOLY DE BLAYE", + "nomCommune": "ST CHRISTOLY DE BLAYE" }, { - "codePostal": "60650", - "codeCommune": "60428", - "libelleAcheminement": "LE MONT ST ADRIEN", - "nomCommune": "LE MONT ST ADRIEN" + "codePostal": "23400", + "codeCommune": "23189", + "libelleAcheminement": "ST DIZIER MASBARAUD", + "nomCommune": "ST DIZIER MASBARAUD" }, { - "codePostal": "27290", - "codeCommune": "27267", - "libelleAcheminement": "FRENEUSE SUR RISLE", - "nomCommune": "FRENEUSE SUR RISLE" + "codePostal": "25150", + "codeCommune": "25033", + "libelleAcheminement": "AUTECHAUX ROIDE", + "nomCommune": "AUTECHAUX ROIDE" }, { - "codePostal": "52800", - "codeCommune": "52315", - "libelleAcheminement": "MARNAY SUR MARNE", - "nomCommune": "MARNAY SUR MARNE" + "codePostal": "33480", + "codeCommune": "33417", + "libelleAcheminement": "STE HELENE", + "nomCommune": "STE HELENE" }, { - "codePostal": "65200", - "codeCommune": "65216", - "libelleAcheminement": "HAUBAN", - "nomCommune": "HAUBAN" + "codePostal": "33230", + "codeCommune": "33385", + "libelleAcheminement": "ST CHRISTOPHE DE DOUBLE", + "nomCommune": "ST CHRISTOPHE DE DOUBLE" }, { - "codePostal": "60128", - "codeCommune": "60432", - "libelleAcheminement": "MORTEFONTAINE", - "nomCommune": "MORTEFONTAINE" + "codePostal": "23190", + "codeCommune": "23190", + "libelleAcheminement": "ST DOMET", + "nomCommune": "ST DOMET" }, { - "codePostal": "27220", - "codeCommune": "27277", - "libelleAcheminement": "LA BARONNIE", - "nomCommune": "LA BARONNIE" + "codePostal": "25720", + "codeCommune": "25036", + "libelleAcheminement": "AVANNE AVENEY", + "nomCommune": "AVANNE AVENEY" }, { - "codePostal": "52300", - "codeCommune": "52316", - "libelleAcheminement": "MATHONS", - "nomCommune": "MATHONS" + "codePostal": "33127", + "codeCommune": "33422", + "libelleAcheminement": "ST JEAN D ILLAC", + "nomCommune": "ST JEAN D ILLAC" }, { - "codePostal": "65150", - "codeCommune": "65217", - "libelleAcheminement": "HAUTAGET", - "nomCommune": "HAUTAGET" + "codePostal": "33180", + "codeCommune": "33395", + "libelleAcheminement": "ST ESTEPHE", + "nomCommune": "ST ESTEPHE" }, { - "codePostal": "60190", - "codeCommune": "60441", - "libelleAcheminement": "MOYVILLERS", - "nomCommune": "MOYVILLERS" + "codePostal": "23000", + "codeCommune": "23191", + "libelleAcheminement": "ST ELOI", + "nomCommune": "ST ELOI" }, { - "codePostal": "27190", - "codeCommune": "27281", - "libelleAcheminement": "GAUDREVILLE LA RIVIERE", - "nomCommune": "GAUDREVILLE LA RIVIERE" + "codePostal": "25110", + "codeCommune": "25047", + "libelleAcheminement": "BAUME LES DAMES", + "nomCommune": "BAUME LES DAMES" }, { - "codePostal": "52110", - "codeCommune": "52321", - "libelleAcheminement": "MERTRUD", - "nomCommune": "MERTRUD" + "codePostal": "33112", + "codeCommune": "33424", + "libelleAcheminement": "ST LAURENT MEDOC", + "nomCommune": "ST LAURENT MEDOC" }, { - "codePostal": "65190", - "codeCommune": "65222", - "libelleAcheminement": "HITTE", - "nomCommune": "HITTE" + "codePostal": "33190", + "codeCommune": "33398", + "libelleAcheminement": "ST EXUPERY", + "nomCommune": "ST EXUPERY" }, { - "codePostal": "60400", - "codeCommune": "60445", - "libelleAcheminement": "NAMPCEL", - "nomCommune": "NAMPCEL" + "codePostal": "23500", + "codeCommune": "23194", + "libelleAcheminement": "STE FEYRE LA MONTAGNE", + "nomCommune": "STE FEYRE LA MONTAGNE" }, { - "codePostal": "27930", - "codeCommune": "27282", - "libelleAcheminement": "GAUVILLE LA CAMPAGNE", - "nomCommune": "GAUVILLE LA CAMPAGNE" + "codePostal": "25380", + "codeCommune": "25051", + "libelleAcheminement": "BELLEHERBE", + "nomCommune": "BELLEHERBE" }, { - "codePostal": "52100", - "codeCommune": "52327", - "libelleAcheminement": "MOESLAINS", - "nomCommune": "MOESLAINS" + "codePostal": "33540", + "codeCommune": "33427", + "libelleAcheminement": "ST LAURENT DU BOIS", + "nomCommune": "ST LAURENT DU BOIS" }, { - "codePostal": "65350", - "codeCommune": "65232", - "libelleAcheminement": "JACQUE", - "nomCommune": "JACQUE" + "codePostal": "33540", + "codeCommune": "33399", + "libelleAcheminement": "ST FELIX DE FONCAUDE", + "nomCommune": "ST FELIX DE FONCAUDE" }, { - "codePostal": "60890", - "codeCommune": "60448", - "libelleAcheminement": "NEUFCHELLES", - "nomCommune": "NEUFCHELLES" + "codePostal": "23000", + "codeCommune": "23195", + "libelleAcheminement": "ST FIEL", + "nomCommune": "ST FIEL" }, { - "codePostal": "27620", - "codeCommune": "27285", - "libelleAcheminement": "GIVERNY", - "nomCommune": "GIVERNY" + "codePostal": "25430", + "codeCommune": "25053", + "libelleAcheminement": "BELVOIR", + "nomCommune": "BELVOIR" }, { - "codePostal": "52140", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "33670", + "codeCommune": "33431", + "libelleAcheminement": "ST LEON", + "nomCommune": "ST LEON" }, { - "codePostal": "65200", - "codeCommune": "65238", - "libelleAcheminement": "LABASSERE", - "nomCommune": "LABASSERE" + "codePostal": "33125", + "codeCommune": "33436", + "libelleAcheminement": "ST MAGNE", + "nomCommune": "ST MAGNE" }, { - "codePostal": "60290", - "codeCommune": "60451", - "libelleAcheminement": "NEUILLY SOUS CLERMONT", - "nomCommune": "NEUILLY SOUS CLERMONT" + "codePostal": "23250", + "codeCommune": "23197", + "libelleAcheminement": "ST GEORGES LA POUGE", + "nomCommune": "ST GEORGES LA POUGE" }, { - "codePostal": "27290", - "codeCommune": "27288", - "libelleAcheminement": "GLOS SUR RISLE", - "nomCommune": "GLOS SUR RISLE" + "codePostal": "25420", + "codeCommune": "25054", + "libelleAcheminement": "BERCHE", + "nomCommune": "BERCHE" }, { - "codePostal": "52140", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "33450", + "codeCommune": "33433", + "libelleAcheminement": "ST LOUBES", + "nomCommune": "ST LOUBES" }, { - "codePostal": "65130", - "codeCommune": "65239", - "libelleAcheminement": "LABASTIDE", - "nomCommune": "LABASTIDE" + "codePostal": "33490", + "codeCommune": "33438", + "libelleAcheminement": "ST MAIXANT", + "nomCommune": "ST MAIXANT" }, { - "codePostal": "60119", - "codeCommune": "60452", - "libelleAcheminement": "NEUVILLE BOSC", - "nomCommune": "NEUVILLE BOSC" + "codePostal": "23400", + "codeCommune": "23205", + "libelleAcheminement": "ST JUNIEN LA BREGERE", + "nomCommune": "ST JUNIEN LA BREGERE" }, { - "codePostal": "27170", - "codeCommune": "27290", - "libelleAcheminement": "GOUPIL OTHON", - "nomCommune": "GOUPIL OTHON" + "codePostal": "25410", + "codeCommune": "25055", + "libelleAcheminement": "BERTHELANGE", + "nomCommune": "BERTHELANGE" }, { - "codePostal": "52130", - "codeCommune": "52336", - "libelleAcheminement": "MONTREUIL SUR BLAISE", - "nomCommune": "MONTREUIL SUR BLAISE" + "codePostal": "33490", + "codeCommune": "33435", + "libelleAcheminement": "ST MACAIRE", + "nomCommune": "ST MACAIRE" }, { - "codePostal": "65310", - "codeCommune": "65251", - "libelleAcheminement": "LALOUBERE", - "nomCommune": "LALOUBERE" + "codePostal": "33390", + "codeCommune": "33441", + "libelleAcheminement": "ST MARTIN LACAUSSADE", + "nomCommune": "ST MARTIN LACAUSSADE" }, { - "codePostal": "60180", - "codeCommune": "60463", - "libelleAcheminement": "NOGENT SUR OISE", - "nomCommune": "NOGENT SUR OISE" + "codePostal": "23460", + "codeCommune": "23212", + "libelleAcheminement": "ST MARC A LOUBAUD", + "nomCommune": "ST MARC A LOUBAUD" }, { - "codePostal": "27270", - "codeCommune": "27295", - "libelleAcheminement": "GRAND CAMP", - "nomCommune": "GRAND CAMP" + "codePostal": "25000", + "codeCommune": "25056", + "libelleAcheminement": "BESANCON", + "nomCommune": "BESANCON" }, { - "codePostal": "52110", - "codeCommune": "52341", - "libelleAcheminement": "MORANCOURT", - "nomCommune": "MORANCOURT" + "codePostal": "33490", + "codeCommune": "33440", + "libelleAcheminement": "ST MARTIAL", + "nomCommune": "ST MARTIAL" }, { - "codePostal": "65380", - "codeCommune": "65252", - "libelleAcheminement": "LAMARQUE PONTACQ", - "nomCommune": "LAMARQUE PONTACQ" + "codePostal": "33330", + "codeCommune": "33459", + "libelleAcheminement": "ST PEY D ARMENS", + "nomCommune": "ST PEY D ARMENS" }, { - "codePostal": "60130", - "codeCommune": "60468", - "libelleAcheminement": "NOURARD LE FRANC", - "nomCommune": "NOURARD LE FRANC" + "codePostal": "23100", + "codeCommune": "23215", + "libelleAcheminement": "ST MARTIAL LE VIEUX", + "nomCommune": "ST MARTIAL LE VIEUX" }, { - "codePostal": "27700", - "codeCommune": "27307", - "libelleAcheminement": "GUISENIERS", - "nomCommune": "GUISENIERS" + "codePostal": "25640", + "codeCommune": "25065", + "libelleAcheminement": "BLARIANS", + "nomCommune": "BLARIANS" }, { - "codePostal": "52600", - "codeCommune": "52354", - "libelleAcheminement": "NOIDANT CHATENOY", - "nomCommune": "NOIDANT CHATENOY" + "codePostal": "33540", + "codeCommune": "33443", + "libelleAcheminement": "ST MARTIN DE LERM", + "nomCommune": "ST MARTIN DE LERM" }, { - "codePostal": "65300", - "codeCommune": "65258", - "libelleAcheminement": "LANNEMEZAN", - "nomCommune": "LANNEMEZAN" + "codePostal": "33220", + "codeCommune": "33462", + "libelleAcheminement": "ST PHILIPPE DU SEIGNAL", + "nomCommune": "ST PHILIPPE DU SEIGNAL" }, { - "codePostal": "60730", - "codeCommune": "60469", - "libelleAcheminement": "NOVILLERS", - "nomCommune": "NOVILLERS" + "codePostal": "23430", + "codeCommune": "23217", + "libelleAcheminement": "ST MARTIN STE CATHERINE", + "nomCommune": "ST MARTIN STE CATHERINE" }, { - "codePostal": "27150", - "codeCommune": "27310", - "libelleAcheminement": "HACQUEVILLE", - "nomCommune": "HACQUEVILLE" + "codePostal": "25210", + "codeCommune": "25077", + "libelleAcheminement": "LA BOSSE", + "nomCommune": "LA BOSSE" }, { - "codePostal": "52200", - "codeCommune": "52355", - "libelleAcheminement": "NOIDANT LE ROCHEUX", - "nomCommune": "NOIDANT LE ROCHEUX" + "codePostal": "33650", + "codeCommune": "33454", + "libelleAcheminement": "ST MORILLON", + "nomCommune": "ST MORILLON" }, { - "codePostal": "65350", - "codeCommune": "65259", - "libelleAcheminement": "LANSAC", - "nomCommune": "LANSAC" + "codePostal": "33250", + "codeCommune": "33471", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "60220", - "codeCommune": "60476", - "libelleAcheminement": "OMECOURT", - "nomCommune": "OMECOURT" + "codePostal": "23260", + "codeCommune": "23218", + "libelleAcheminement": "ST MAURICE PRES CROCQ", + "nomCommune": "ST MAURICE PRES CROCQ" }, { - "codePostal": "27400", - "codeCommune": "27322", - "libelleAcheminement": "LA HAYE MALHERBE", - "nomCommune": "LA HAYE MALHERBE" + "codePostal": "25360", + "codeCommune": "25078", + "libelleAcheminement": "BOUCLANS", + "nomCommune": "BOUCLANS" }, { - "codePostal": "52200", - "codeCommune": "52366", - "libelleAcheminement": "ORMANCEY", - "nomCommune": "ORMANCEY" + "codePostal": "33820", + "codeCommune": "33456", + "libelleAcheminement": "ST PALAIS", + "nomCommune": "ST PALAIS" }, { - "codePostal": "65350", - "codeCommune": "65265", - "libelleAcheminement": "LASLADES", - "nomCommune": "LASLADES" + "codePostal": "33660", + "codeCommune": "33472", + "libelleAcheminement": "ST SAUVEUR DE PUYNORMAND", + "nomCommune": "ST SAUVEUR DE PUYNORMAND" }, { - "codePostal": "60860", - "codeCommune": "60484", - "libelleAcheminement": "OUDEUIL", - "nomCommune": "OUDEUIL" + "codePostal": "23200", + "codeCommune": "23220", + "libelleAcheminement": "ST MEDARD LA ROCHETTE", + "nomCommune": "ST MEDARD LA ROCHETTE" }, { - "codePostal": "27430", - "codeCommune": "27330", - "libelleAcheminement": "HERQUEVILLE", - "nomCommune": "HERQUEVILLE" + "codePostal": "25250", + "codeCommune": "25083", + "libelleAcheminement": "BOURNOIS", + "nomCommune": "BOURNOIS" }, { - "codePostal": "52400", - "codeCommune": "52377", - "libelleAcheminement": "PARNOY EN BASSIGNY", - "nomCommune": "PARNOY EN BASSIGNY" + "codePostal": "33350", + "codeCommune": "33460", + "libelleAcheminement": "ST PEY DE CASTETS", + "nomCommune": "ST PEY DE CASTETS" }, { - "codePostal": "65140", - "codeCommune": "65269", - "libelleAcheminement": "LESCURRY", - "nomCommune": "LESCURRY" + "codePostal": "33710", + "codeCommune": "33475", + "libelleAcheminement": "ST SEURIN DE BOURG", + "nomCommune": "ST SEURIN DE BOURG" }, { - "codePostal": "60170", - "codeCommune": "60492", - "libelleAcheminement": "PIMPREZ", - "nomCommune": "PIMPREZ" + "codePostal": "23110", + "codeCommune": "23234", + "libelleAcheminement": "ST PRIEST", + "nomCommune": "ST PRIEST" }, { - "codePostal": "27400", - "codeCommune": "27332", - "libelleAcheminement": "HEUDEBOUVILLE", - "nomCommune": "HEUDEBOUVILLE" + "codePostal": "25320", + "codeCommune": "25084", + "libelleAcheminement": "BOUSSIERES", + "nomCommune": "BOUSSIERES" }, { - "codePostal": "52100", - "codeCommune": "52386", - "libelleAcheminement": "PERTHES", - "nomCommune": "PERTHES" + "codePostal": "33350", + "codeCommune": "33461", + "libelleAcheminement": "ST PHILIPPE D AIGUILLE", + "nomCommune": "ST PHILIPPE D AIGUILLE" }, { - "codePostal": "65150", - "codeCommune": "65277", - "libelleAcheminement": "LOMBRES", - "nomCommune": "LOMBRES" + "codePostal": "33420", + "codeCommune": "33488", + "libelleAcheminement": "ST VINCENT DE PERTIGNAS", + "nomCommune": "ST VINCENT DE PERTIGNAS" }, { - "codePostal": "60130", - "codeCommune": "60497", - "libelleAcheminement": "LE PLESSIER SUR BULLES", - "nomCommune": "LE PLESSIER SUR BULLES" + "codePostal": "23480", + "codeCommune": "23246", + "libelleAcheminement": "ST SULPICE LES CHAMPS", + "nomCommune": "ST SULPICE LES CHAMPS" }, { - "codePostal": "27400", - "codeCommune": "27335", - "libelleAcheminement": "HEUDREVILLE SUR EURE", - "nomCommune": "HEUDREVILLE SUR EURE" + "codePostal": "25640", + "codeCommune": "25086", + "libelleAcheminement": "BRAILLANS", + "nomCommune": "BRAILLANS" }, { - "codePostal": "52360", - "codeCommune": "52392", - "libelleAcheminement": "PLESNOY", - "nomCommune": "PLESNOY" + "codePostal": "33490", + "codeCommune": "33463", + "libelleAcheminement": "ST PIERRE D AURILLAC", + "nomCommune": "ST PIERRE D AURILLAC" }, { - "codePostal": "65200", - "codeCommune": "65281", - "libelleAcheminement": "LOUCRUP", - "nomCommune": "LOUCRUP" + "codePostal": "33580", + "codeCommune": "33491", + "libelleAcheminement": "ST VIVIEN DE MONSEGUR", + "nomCommune": "ST VIVIEN DE MONSEGUR" }, { - "codePostal": "60310", - "codeCommune": "60499", - "libelleAcheminement": "PLESSIS DE ROYE", - "nomCommune": "PLESSIS DE ROYE" + "codePostal": "23320", + "codeCommune": "23247", + "libelleAcheminement": "ST VAURY", + "nomCommune": "ST VAURY" }, { - "codePostal": "27700", - "codeCommune": "27337", - "libelleAcheminement": "HEUQUEVILLE", - "nomCommune": "HEUQUEVILLE" + "codePostal": "25440", + "codeCommune": "25090", + "libelleAcheminement": "BRERES", + "nomCommune": "BRERES" }, { - "codePostal": "52160", - "codeCommune": "52393", - "libelleAcheminement": "POINSENOT", - "nomCommune": "POINSENOT" + "codePostal": "33390", + "codeCommune": "33477", + "libelleAcheminement": "ST SEURIN DE CURSAC", + "nomCommune": "ST SEURIN DE CURSAC" }, { - "codePostal": "65510", - "codeCommune": "65282", - "libelleAcheminement": "LOUDENVIELLE", - "nomCommune": "LOUDENVIELLE" + "codePostal": "33340", + "codeCommune": "33493", + "libelleAcheminement": "ST YZANS DE MEDOC", + "nomCommune": "ST YZANS DE MEDOC" }, { - "codePostal": "60430", - "codeCommune": "60504", - "libelleAcheminement": "PONCHON", - "nomCommune": "PONCHON" + "codePostal": "23170", + "codeCommune": "23251", + "libelleAcheminement": "TARDES", + "nomCommune": "TARDES" }, { - "codePostal": "27570", - "codeCommune": "27341", - "libelleAcheminement": "L HOSMES", - "nomCommune": "L HOSMES" + "codePostal": "25380", + "codeCommune": "25095", + "libelleAcheminement": "BRETONVILLERS", + "nomCommune": "BRETONVILLERS" }, { - "codePostal": "52800", - "codeCommune": "52396", - "libelleAcheminement": "POINSON LES NOGENT", - "nomCommune": "POINSON LES NOGENT" + "codePostal": "33113", + "codeCommune": "33484", + "libelleAcheminement": "ST SYMPHORIEN", + "nomCommune": "ST SYMPHORIEN" }, { - "codePostal": "65290", - "codeCommune": "65284", - "libelleAcheminement": "LOUEY", - "nomCommune": "LOUEY" + "codePostal": "33370", + "codeCommune": "33496", + "libelleAcheminement": "SALLEBOEUF", + "nomCommune": "SALLEBOEUF" }, { - "codePostal": "60520", - "codeCommune": "60505", - "libelleAcheminement": "PONTARME", - "nomCommune": "PONTARME" + "codePostal": "23260", + "codeCommune": "23266", + "libelleAcheminement": "LA VILLETELLE", + "nomCommune": "LA VILLETELLE" }, { - "codePostal": "27410", - "codeCommune": "27345", - "libelleAcheminement": "LA HOUSSAYE", - "nomCommune": "LA HOUSSAYE" + "codePostal": "25240", + "codeCommune": "25096", + "libelleAcheminement": "BREY ET MAISON DU BOIS", + "nomCommune": "BREY ET MAISON DU BOIS" }, { - "codePostal": "52190", - "codeCommune": "52405", - "libelleAcheminement": "LE MONTSAUGEONNAIS", - "nomCommune": "LE MONTSAUGEONNAIS" + "codePostal": "33920", + "codeCommune": "33489", + "libelleAcheminement": "ST VIVIEN DE BLAYE", + "nomCommune": "ST VIVIEN DE BLAYE" }, { - "codePostal": "65370", - "codeCommune": "65287", - "libelleAcheminement": "LOURES BAROUSSE", - "nomCommune": "LOURES BAROUSSE" + "codePostal": "33920", + "codeCommune": "33502", + "libelleAcheminement": "SAUGON", + "nomCommune": "SAUGON" }, { - "codePostal": "60400", - "codeCommune": "60506", - "libelleAcheminement": "PONT L EVEQUE", - "nomCommune": "PONT L EVEQUE" + "codePostal": "24590", + "codeCommune": "24012", + "libelleAcheminement": "ARCHIGNAC", + "nomCommune": "ARCHIGNAC" }, { - "codePostal": "27930", - "codeCommune": "27347", - "libelleAcheminement": "HUEST", - "nomCommune": "HUEST" + "codePostal": "25640", + "codeCommune": "25107", + "libelleAcheminement": "CENDREY", + "nomCommune": "CENDREY" }, { - "codePostal": "52220", - "codeCommune": "52411", - "libelleAcheminement": "RIVES DERVOISES", - "nomCommune": "RIVES DERVOISES" + "codePostal": "33770", + "codeCommune": "33498", + "libelleAcheminement": "SALLES", + "nomCommune": "SALLES" }, { - "codePostal": "65190", - "codeCommune": "65290", - "libelleAcheminement": "LUC", - "nomCommune": "LUC" + "codePostal": "33490", + "codeCommune": "33510", + "libelleAcheminement": "SEMENS", + "nomCommune": "SEMENS" }, { - "codePostal": "60700", - "codeCommune": "60508", - "libelleAcheminement": "PONTPOINT", - "nomCommune": "PONTPOINT" + "codePostal": "24290", + "codeCommune": "24018", + "libelleAcheminement": "AURIAC DU PERIGORD", + "nomCommune": "AURIAC DU PERIGORD" }, { - "codePostal": "27290", - "codeCommune": "27349", - "libelleAcheminement": "ILLEVILLE SUR MONTFORT", - "nomCommune": "ILLEVILLE SUR MONTFORT" + "codePostal": "25220", + "codeCommune": "25112", + "libelleAcheminement": "CHALEZEULE", + "nomCommune": "CHALEZEULE" }, { - "codePostal": "52220", - "codeCommune": "52411", - "libelleAcheminement": "RIVES DERVOISES", - "nomCommune": "RIVES DERVOISES" + "codePostal": "33650", + "codeCommune": "33501", + "libelleAcheminement": "SAUCATS", + "nomCommune": "SAUCATS" }, { - "codePostal": "65100", - "codeCommune": "65291", - "libelleAcheminement": "LUGAGNAN", - "nomCommune": "LUGAGNAN" + "codePostal": "33690", + "codeCommune": "33513", + "libelleAcheminement": "SILLAS", + "nomCommune": "SILLAS" }, { - "codePostal": "60700", - "codeCommune": "60509", - "libelleAcheminement": "PONT STE MAXENCE", - "nomCommune": "PONT STE MAXENCE" + "codePostal": "24210", + "codeCommune": "24020", + "libelleAcheminement": "LA BACHELLERIE", + "nomCommune": "LA BACHELLERIE" }, { - "codePostal": "27210", - "codeCommune": "27361", - "libelleAcheminement": "LA LANDE ST LEGER", - "nomCommune": "LA LANDE ST LEGER" + "codePostal": "25170", + "codeCommune": "25115", + "libelleAcheminement": "CHAMPAGNEY", + "nomCommune": "CHAMPAGNEY" }, { - "codePostal": "52140", - "codeCommune": "52416", - "libelleAcheminement": "RANGECOURT", - "nomCommune": "RANGECOURT" + "codePostal": "33210", + "codeCommune": "33504", + "libelleAcheminement": "SAUTERNES", + "nomCommune": "SAUTERNES" }, { - "codePostal": "65320", - "codeCommune": "65292", - "libelleAcheminement": "LUQUET", - "nomCommune": "LUQUET" + "codePostal": "33590", + "codeCommune": "33521", + "libelleAcheminement": "TALAIS", + "nomCommune": "TALAIS" }, { - "codePostal": "60850", - "codeCommune": "60516", - "libelleAcheminement": "PUISEUX EN BRAY", - "nomCommune": "PUISEUX EN BRAY" + "codePostal": "24390", + "codeCommune": "24021", + "libelleAcheminement": "BADEFOLS D ANS", + "nomCommune": "BADEFOLS D ANS" }, { - "codePostal": "27350", - "codeCommune": "27363", - "libelleAcheminement": "LE LANDIN", - "nomCommune": "LE LANDIN" + "codePostal": "25240", + "codeCommune": "25121", + "libelleAcheminement": "CHAPELLE DES BOIS", + "nomCommune": "CHAPELLE DES BOIS" }, { - "codePostal": "52700", - "codeCommune": "52423", - "libelleAcheminement": "RIMAUCOURT", - "nomCommune": "RIMAUCOURT" + "codePostal": "33540", + "codeCommune": "33506", + "libelleAcheminement": "SAUVETERRE DE GUYENNE", + "nomCommune": "SAUVETERRE DE GUYENNE" }, { - "codePostal": "65140", - "codeCommune": "65297", - "libelleAcheminement": "MANSAN", - "nomCommune": "MANSAN" + "codePostal": "33710", + "codeCommune": "33525", + "libelleAcheminement": "TAURIAC", + "nomCommune": "TAURIAC" }, { - "codePostal": "60480", - "codeCommune": "60518", - "libelleAcheminement": "PUITS LA VALLEE", - "nomCommune": "PUITS LA VALLEE" + "codePostal": "24210", + "codeCommune": "24025", + "libelleAcheminement": "BARS", + "nomCommune": "BARS" }, { - "codePostal": "27400", - "codeCommune": "27375", - "libelleAcheminement": "LOUVIERS", - "nomCommune": "LOUVIERS" + "codePostal": "25140", + "codeCommune": "25127", + "libelleAcheminement": "CHARQUEMONT", + "nomCommune": "CHARQUEMONT" }, { - "codePostal": "52260", - "codeCommune": "52432", - "libelleAcheminement": "ROLAMPONT", - "nomCommune": "ROLAMPONT" + "codePostal": "33430", + "codeCommune": "33507", + "libelleAcheminement": "SAUVIAC", + "nomCommune": "SAUVIAC" }, { - "codePostal": "65200", - "codeCommune": "65300", - "libelleAcheminement": "MARSAS", - "nomCommune": "MARSAS" + "codePostal": "33710", + "codeCommune": "33530", + "libelleAcheminement": "TEUILLAC", + "nomCommune": "TEUILLAC" }, { - "codePostal": "60220", - "codeCommune": "60521", - "libelleAcheminement": "QUINCAMPOIX FLEUZY", - "nomCommune": "QUINCAMPOIX FLEUZY" + "codePostal": "24330", + "codeCommune": "24026", + "libelleAcheminement": "BASSILLAC ET AUBEROCHE", + "nomCommune": "BASSILLAC ET AUBEROCHE" }, { - "codePostal": "27210", - "codeCommune": "27384", - "libelleAcheminement": "MANNEVILLE LA RAOULT", - "nomCommune": "MANNEVILLE LA RAOULT" + "codePostal": "25140", + "codeCommune": "25127", + "libelleAcheminement": "CHARQUEMONT", + "nomCommune": "CHARQUEMONT" }, { - "codePostal": "52150", - "codeCommune": "52433", - "libelleAcheminement": "ROMAIN SUR MEUSE", - "nomCommune": "ROMAIN SUR MEUSE" + "codePostal": "33910", + "codeCommune": "33509", + "libelleAcheminement": "SAVIGNAC DE L ISLE", + "nomCommune": "SAVIGNAC DE L ISLE" }, { - "codePostal": "65350", - "codeCommune": "65301", - "libelleAcheminement": "MARSEILLAN", - "nomCommune": "MARSEILLAN" + "codePostal": "33370", + "codeCommune": "33535", + "libelleAcheminement": "TRESSES", + "nomCommune": "TRESSES" }, { - "codePostal": "60130", - "codeCommune": "60522", - "libelleAcheminement": "QUINQUEMPOIX", - "nomCommune": "QUINQUEMPOIX" + "codePostal": "24330", + "codeCommune": "24026", + "libelleAcheminement": "BASSILLAC ET AUBEROCHE", + "nomCommune": "BASSILLAC ET AUBEROCHE" }, { - "codePostal": "27390", - "codeCommune": "27395", - "libelleAcheminement": "MELICOURT", - "nomCommune": "MELICOURT" + "codePostal": "25290", + "codeCommune": "25129", + "libelleAcheminement": "CHASSAGNE ST DENIS", + "nomCommune": "CHASSAGNE ST DENIS" }, { - "codePostal": "52320", - "codeCommune": "52436", - "libelleAcheminement": "ROUECOURT", - "nomCommune": "ROUECOURT" + "codePostal": "33780", + "codeCommune": "33514", + "libelleAcheminement": "SOULAC SUR MER", + "nomCommune": "SOULAC SUR MER" }, { - "codePostal": "65360", - "codeCommune": "65313", - "libelleAcheminement": "MOMERES", - "nomCommune": "MOMERES" + "codePostal": "33930", + "codeCommune": "33540", + "libelleAcheminement": "VENDAYS MONTALIVET", + "nomCommune": "VENDAYS MONTALIVET" }, { - "codePostal": "60290", - "codeCommune": "60524", - "libelleAcheminement": "RANTIGNY", - "nomCommune": "RANTIGNY" + "codePostal": "24440", + "codeCommune": "24028", + "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", + "nomCommune": "BEAUMONTOIS EN PERIGORD" }, { - "codePostal": "27850", - "codeCommune": "27396", - "libelleAcheminement": "MENESQUEVILLE", - "nomCommune": "MENESQUEVILLE" + "codePostal": "25650", + "codeCommune": "25139", + "libelleAcheminement": "LA CHAUX", + "nomCommune": "LA CHAUX" }, { - "codePostal": "52160", - "codeCommune": "52437", - "libelleAcheminement": "ROUELLES", - "nomCommune": "ROUELLES" + "codePostal": "33760", + "codeCommune": "33523", + "libelleAcheminement": "TARGON", + "nomCommune": "TARGON" }, { - "codePostal": "65330", - "codeCommune": "65318", - "libelleAcheminement": "MONTASTRUC", - "nomCommune": "MONTASTRUC" + "codePostal": "33490", + "codeCommune": "33543", + "libelleAcheminement": "VERDELAIS", + "nomCommune": "VERDELAIS" }, { - "codePostal": "60240", - "codeCommune": "60528", - "libelleAcheminement": "REILLY", - "nomCommune": "REILLY" + "codePostal": "24170", + "codeCommune": "24035", + "libelleAcheminement": "PAYS DE BELVES", + "nomCommune": "PAYS DE BELVES" }, { - "codePostal": "27120", - "codeCommune": "27397", - "libelleAcheminement": "MENILLES", - "nomCommune": "MENILLES" + "codePostal": "25440", + "codeCommune": "25149", + "libelleAcheminement": "CHENECEY BUILLON", + "nomCommune": "CHENECEY BUILLON" }, { - "codePostal": "52190", - "codeCommune": "52446", - "libelleAcheminement": "ST BROINGT LES FOSSES", - "nomCommune": "ST BROINGT LES FOSSES" + "codePostal": "33260", + "codeCommune": "33529", + "libelleAcheminement": "LA TESTE DE BUCH", + "nomCommune": "LA TESTE DE BUCH" }, { - "codePostal": "65150", - "codeCommune": "65319", - "libelleAcheminement": "MONTEGUT", - "nomCommune": "MONTEGUT" + "codePostal": "33180", + "codeCommune": "33545", + "libelleAcheminement": "VERTHEUIL", + "nomCommune": "VERTHEUIL" }, { - "codePostal": "60190", - "codeCommune": "60531", - "libelleAcheminement": "REMY", - "nomCommune": "REMY" + "codePostal": "24100", + "codeCommune": "24037", + "libelleAcheminement": "BERGERAC", + "nomCommune": "BERGERAC" }, { - "codePostal": "27930", - "codeCommune": "27401", - "libelleAcheminement": "LE MESNIL FUGUET", - "nomCommune": "LE MESNIL FUGUET" + "codePostal": "25620", + "codeCommune": "25152", + "libelleAcheminement": "LA CHEVILLOTTE", + "nomCommune": "LA CHEVILLOTTE" }, { - "codePostal": "52200", - "codeCommune": "52447", - "libelleAcheminement": "ST CIERGUES", - "nomCommune": "ST CIERGUES" + "codePostal": "33141", + "codeCommune": "33548", + "libelleAcheminement": "VILLEGOUGE", + "nomCommune": "VILLEGOUGE" }, { - "codePostal": "65350", - "codeCommune": "65326", - "libelleAcheminement": "MUN", - "nomCommune": "MUN" + "codePostal": "33140", + "codeCommune": "33550", + "libelleAcheminement": "VILLENAVE D ORNON", + "nomCommune": "VILLENAVE D ORNON" }, { - "codePostal": "60490", - "codeCommune": "60533", - "libelleAcheminement": "RESSONS SUR MATZ", - "nomCommune": "RESSONS SUR MATZ" + "codePostal": "24550", + "codeCommune": "24039", + "libelleAcheminement": "BESSE", + "nomCommune": "BESSE" }, { - "codePostal": "27320", - "codeCommune": "27411", - "libelleAcheminement": "MOISVILLE", - "nomCommune": "MOISVILLE" + "codePostal": "25870", + "codeCommune": "25153", + "libelleAcheminement": "CHEVROZ", + "nomCommune": "CHEVROZ" }, { - "codePostal": "52300", - "codeCommune": "52456", - "libelleAcheminement": "ST URBAIN MACONCOURT", - "nomCommune": "ST URBAIN MACONCOURT" + "codePostal": "33720", + "codeCommune": "33552", + "libelleAcheminement": "VIRELADE", + "nomCommune": "VIRELADE" }, { - "codePostal": "65100", - "codeCommune": "65334", - "libelleAcheminement": "OMEX", - "nomCommune": "OMEX" + "codePostal": "33370", + "codeCommune": "33554", + "libelleAcheminement": "YVRAC", + "nomCommune": "YVRAC" }, { - "codePostal": "60170", - "codeCommune": "60537", - "libelleAcheminement": "RIBECOURT DRESLINCOURT", - "nomCommune": "RIBECOURT DRESLINCOURT" + "codePostal": "24390", + "codeCommune": "24046", + "libelleAcheminement": "BOISSEUILH", + "nomCommune": "BOISSEUILH" }, { - "codePostal": "27150", - "codeCommune": "27417", - "libelleAcheminement": "MORGNY", - "nomCommune": "MORGNY" + "codePostal": "25420", + "codeCommune": "25170", + "libelleAcheminement": "COURCELLES LES MONTBELIARD", + "nomCommune": "COURCELLES LES MONTBELIARD" }, { - "codePostal": "52400", - "codeCommune": "52470", - "libelleAcheminement": "SERQUEUX", - "nomCommune": "SERQUEUX" + "codePostal": "34800", + "codeCommune": "34013", + "libelleAcheminement": "ASPIRAN", + "nomCommune": "ASPIRAN" }, { - "codePostal": "65800", - "codeCommune": "65340", - "libelleAcheminement": "ORLEIX", - "nomCommune": "ORLEIX" + "codePostal": "34290", + "codeCommune": "34001", + "libelleAcheminement": "ABEILHAN", + "nomCommune": "ABEILHAN" }, { - "codePostal": "60800", - "codeCommune": "60543", - "libelleAcheminement": "ROCQUEMONT", - "nomCommune": "ROCQUEMONT" + "codePostal": "24590", + "codeCommune": "24050", + "libelleAcheminement": "BORREZE", + "nomCommune": "BORREZE" }, { - "codePostal": "27420", - "codeCommune": "27420", - "libelleAcheminement": "MOUFLAINES", - "nomCommune": "MOUFLAINES" + "codePostal": "25240", + "codeCommune": "25179", + "libelleAcheminement": "LE CROUZET", + "nomCommune": "LE CROUZET" }, { - "codePostal": "52220", - "codeCommune": "52479", - "libelleAcheminement": "SOMMEVOIRE", - "nomCommune": "SOMMEVOIRE" + "codePostal": "34530", + "codeCommune": "34017", + "libelleAcheminement": "AUMES", + "nomCommune": "AUMES" }, { - "codePostal": "65100", - "codeCommune": "65345", - "libelleAcheminement": "OSSUN EZ ANGLES", - "nomCommune": "OSSUN EZ ANGLES" + "codePostal": "34230", + "codeCommune": "34002", + "libelleAcheminement": "ADISSAN", + "nomCommune": "ADISSAN" }, { - "codePostal": "60660", - "codeCommune": "60551", - "libelleAcheminement": "ROUSSELOY", - "nomCommune": "ROUSSELOY" + "codePostal": "24560", + "codeCommune": "24054", + "libelleAcheminement": "BOUNIAGUES", + "nomCommune": "BOUNIAGUES" }, { - "codePostal": "27800", - "codeCommune": "27433", - "libelleAcheminement": "NEUVILLE SUR AUTHOU", - "nomCommune": "NEUVILLE SUR AUTHOU" + "codePostal": "25680", + "codeCommune": "25184", + "libelleAcheminement": "CUSE ET ADRISANS", + "nomCommune": "CUSE ET ADRISANS" }, { - "codePostal": "52150", - "codeCommune": "52482", - "libelleAcheminement": "SOULAUCOURT SUR MOUZON", - "nomCommune": "SOULAUCOURT SUR MOUZON" + "codePostal": "34360", + "codeCommune": "34021", + "libelleAcheminement": "BABEAU BOULDOUX", + "nomCommune": "BABEAU BOULDOUX" }, { - "codePostal": "65490", - "codeCommune": "65350", - "libelleAcheminement": "OURSBELILLE", - "nomCommune": "OURSBELILLE" + "codePostal": "34210", + "codeCommune": "34004", + "libelleAcheminement": "AGEL", + "nomCommune": "AGEL" }, { - "codePostal": "60190", - "codeCommune": "60553", - "libelleAcheminement": "ROUVILLERS", - "nomCommune": "ROUVILLERS" + "codePostal": "24300", + "codeCommune": "24056", + "libelleAcheminement": "LE BOURDEIX", + "nomCommune": "LE BOURDEIX" }, { - "codePostal": "27150", - "codeCommune": "27437", - "libelleAcheminement": "NOJEON EN VEXIN", - "nomCommune": "NOJEON EN VEXIN" + "codePostal": "25150", + "codeCommune": "25187", + "libelleAcheminement": "DAMBELIN", + "nomCommune": "DAMBELIN" }, { - "codePostal": "52210", - "codeCommune": "52486", - "libelleAcheminement": "TERNAT", - "nomCommune": "TERNAT" + "codePostal": "34210", + "codeCommune": "34026", + "libelleAcheminement": "BEAUFORT", + "nomCommune": "BEAUFORT" }, { - "codePostal": "65100", - "codeCommune": "65355", - "libelleAcheminement": "PAREAC", - "nomCommune": "PAREAC" + "codePostal": "34190", + "codeCommune": "34005", + "libelleAcheminement": "AGONES", + "nomCommune": "AGONES" }, { - "codePostal": "60120", - "codeCommune": "60555", - "libelleAcheminement": "ROUVROY LES MERLES", - "nomCommune": "ROUVROY LES MERLES" + "codePostal": "24600", + "codeCommune": "24058", + "libelleAcheminement": "BOURG DU BOST", + "nomCommune": "BOURG DU BOST" }, { - "codePostal": "27410", - "codeCommune": "27444", - "libelleAcheminement": "LE NOYER EN OUCHE", - "nomCommune": "LE NOYER EN OUCHE" + "codePostal": "25490", + "codeCommune": "25190", + "libelleAcheminement": "DAMPIERRE LES BOIS", + "nomCommune": "DAMPIERRE LES BOIS" }, { - "codePostal": "52220", - "codeCommune": "52487", - "libelleAcheminement": "THILLEUX", - "nomCommune": "THILLEUX" + "codePostal": "34230", + "codeCommune": "34029", + "libelleAcheminement": "BELARGA", + "nomCommune": "BELARGA" }, { - "codePostal": "65190", - "codeCommune": "65357", - "libelleAcheminement": "PEYRAUBE", - "nomCommune": "PEYRAUBE" + "codePostal": "34150", + "codeCommune": "34010", + "libelleAcheminement": "ANIANE", + "nomCommune": "ANIANE" }, { - "codePostal": "60510", - "codeCommune": "60559", - "libelleAcheminement": "LA RUE ST PIERRE", - "nomCommune": "LA RUE ST PIERRE" + "codePostal": "24250", + "codeCommune": "24063", + "libelleAcheminement": "BOUZIC", + "nomCommune": "BOUZIC" }, { - "codePostal": "27230", - "codeCommune": "27455", - "libelleAcheminement": "PIENCOURT", - "nomCommune": "PIENCOURT" + "codePostal": "25560", + "codeCommune": "25202", + "libelleAcheminement": "DOMPIERRE LES TILLEULS", + "nomCommune": "DOMPIERRE LES TILLEULS" }, { - "codePostal": "52230", - "codeCommune": "52491", - "libelleAcheminement": "THONNANCE LES MOULINS", - "nomCommune": "THONNANCE LES MOULINS" + "codePostal": "34500", + "codeCommune": "34032", + "libelleAcheminement": "BEZIERS", + "nomCommune": "BEZIERS" }, { - "codePostal": "65100", - "codeCommune": "65366", - "libelleAcheminement": "POUEYFERRE", - "nomCommune": "POUEYFERRE" + "codePostal": "34150", + "codeCommune": "34011", + "libelleAcheminement": "ARBORAS", + "nomCommune": "ARBORAS" }, { - "codePostal": "60117", - "codeCommune": "60561", - "libelleAcheminement": "RUSSY BEMONT", - "nomCommune": "RUSSY BEMONT" + "codePostal": "24260", + "codeCommune": "24067", + "libelleAcheminement": "LE BUGUE", + "nomCommune": "LE BUGUE" }, { - "codePostal": "27130", - "codeCommune": "27457", - "libelleAcheminement": "PISEUX", - "nomCommune": "PISEUX" + "codePostal": "25550", + "codeCommune": "25207", + "libelleAcheminement": "DUNG", + "nomCommune": "DUNG" }, { - "codePostal": "52600", - "codeCommune": "52492", - "libelleAcheminement": "TORCENAY", - "nomCommune": "TORCENAY" + "codePostal": "34160", + "codeCommune": "34033", + "libelleAcheminement": "BOISSERON", + "nomCommune": "BOISSERON" }, { - "codePostal": "65590", - "codeCommune": "65379", - "libelleAcheminement": "RIS", - "nomCommune": "RIS" + "codePostal": "34820", + "codeCommune": "34014", + "libelleAcheminement": "ASSAS", + "nomCommune": "ASSAS" }, { - "codePostal": "60790", - "codeCommune": "60570", - "libelleAcheminement": "ST CREPIN IBOUVILLERS", - "nomCommune": "ST CREPIN IBOUVILLERS" + "codePostal": "24480", + "codeCommune": "24068", + "libelleAcheminement": "LE BUISSON DE CADOUIN", + "nomCommune": "LE BUISSON DE CADOUIN" }, { - "codePostal": "27170", - "codeCommune": "27466", - "libelleAcheminement": "LE PLESSIS STE OPPORTUNE", - "nomCommune": "LE PLESSIS STE OPPORTUNE" + "codePostal": "25580", + "codeCommune": "25211", + "libelleAcheminement": "ECHEVANNES", + "nomCommune": "ECHEVANNES" }, { - "codePostal": "52110", - "codeCommune": "52495", - "libelleAcheminement": "TREMILLY", - "nomCommune": "TREMILLY" + "codePostal": "34150", + "codeCommune": "34035", + "libelleAcheminement": "LA BOISSIERE", + "nomCommune": "LA BOISSIERE" }, { - "codePostal": "65700", - "codeCommune": "65387", - "libelleAcheminement": "ST LANNE", - "nomCommune": "ST LANNE" + "codePostal": "34230", + "codeCommune": "34016", + "libelleAcheminement": "AUMELAS", + "nomCommune": "AUMELAS" }, { - "codePostal": "60155", - "codeCommune": "60583", - "libelleAcheminement": "ST LEGER EN BRAY", - "nomCommune": "ST LEGER EN BRAY" + "codePostal": "24140", + "codeCommune": "24077", + "libelleAcheminement": "CAMPSEGRET", + "nomCommune": "CAMPSEGRET" }, { - "codePostal": "27500", - "codeCommune": "27467", - "libelleAcheminement": "PONT AUDEMER", - "nomCommune": "PONT AUDEMER" + "codePostal": "25640", + "codeCommune": "25215", + "libelleAcheminement": "L ECOUVOTTE", + "nomCommune": "L ECOUVOTTE" }, { - "codePostal": "52130", - "codeCommune": "52497", - "libelleAcheminement": "TROISFONTAINES LA VILLE", - "nomCommune": "TROISFONTAINES LA VILLE" + "codePostal": "34310", + "codeCommune": "34052", + "libelleAcheminement": "CAPESTANG", + "nomCommune": "CAPESTANG" }, { - "codePostal": "65150", - "codeCommune": "65389", - "libelleAcheminement": "ST LAURENT DE NESTE", - "nomCommune": "ST LAURENT DE NESTE" + "codePostal": "34260", + "codeCommune": "34019", + "libelleAcheminement": "AVENE", + "nomCommune": "AVENE" }, { - "codePostal": "60700", - "codeCommune": "60587", - "libelleAcheminement": "ST MARTIN LONGUEAU", - "nomCommune": "ST MARTIN LONGUEAU" + "codePostal": "24540", + "codeCommune": "24080", + "libelleAcheminement": "CAPDROT", + "nomCommune": "CAPDROT" }, { - "codePostal": "27500", - "codeCommune": "27467", - "libelleAcheminement": "PONT AUDEMER", - "nomCommune": "PONT AUDEMER" + "codePostal": "25530", + "codeCommune": "25218", + "libelleAcheminement": "EPENOUSE", + "nomCommune": "EPENOUSE" }, { - "codePostal": "52400", - "codeCommune": "52504", - "libelleAcheminement": "VARENNES SUR AMANCE", - "nomCommune": "VARENNES SUR AMANCE" + "codePostal": "34490", + "codeCommune": "34061", + "libelleAcheminement": "CAUSSES ET VEYRAN", + "nomCommune": "CAUSSES ET VEYRAN" }, { - "codePostal": "65400", - "codeCommune": "65393", - "libelleAcheminement": "ST PASTOUS", - "nomCommune": "ST PASTOUS" + "codePostal": "34290", + "codeCommune": "34025", + "libelleAcheminement": "BASSAN", + "nomCommune": "BASSAN" }, { - "codePostal": "60130", - "codeCommune": "60595", - "libelleAcheminement": "ST REMY EN L EAU", - "nomCommune": "ST REMY EN L EAU" + "codePostal": "24370", + "codeCommune": "24081", + "libelleAcheminement": "CARLUX", + "nomCommune": "CARLUX" }, { - "codePostal": "27290", - "codeCommune": "27468", - "libelleAcheminement": "PONT AUTHOU", - "nomCommune": "PONT AUTHOU" + "codePostal": "25110", + "codeCommune": "25221", + "libelleAcheminement": "ESNANS", + "nomCommune": "ESNANS" }, { - "codePostal": "52150", - "codeCommune": "52505", - "libelleAcheminement": "VAUDRECOURT", - "nomCommune": "VAUDRECOURT" + "codePostal": "34360", + "codeCommune": "34070", + "libelleAcheminement": "CEBAZAN", + "nomCommune": "CEBAZAN" }, { - "codePostal": "65140", - "codeCommune": "65397", - "libelleAcheminement": "ST SEVER DE RUSTAN", - "nomCommune": "ST SEVER DE RUSTAN" + "codePostal": "34360", + "codeCommune": "34030", + "libelleAcheminement": "BERLOU", + "nomCommune": "BERLOU" }, { - "codePostal": "60320", - "codeCommune": "60597", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "24610", + "codeCommune": "24083", + "libelleAcheminement": "CARSAC DE GURSON", + "nomCommune": "CARSAC DE GURSON" }, { - "codePostal": "27360", - "codeCommune": "27470", - "libelleAcheminement": "PONT ST PIERRE", - "nomCommune": "PONT ST PIERRE" + "codePostal": "25580", + "codeCommune": "25222", + "libelleAcheminement": "ETALANS", + "nomCommune": "ETALANS" }, { - "codePostal": "52300", - "codeCommune": "52511", - "libelleAcheminement": "VAUX SUR ST URBAIN", - "nomCommune": "VAUX SUR ST URBAIN" + "codePostal": "34830", + "codeCommune": "34077", + "libelleAcheminement": "CLAPIERS", + "nomCommune": "CLAPIERS" }, { - "codePostal": "65500", - "codeCommune": "65403", - "libelleAcheminement": "SANOUS", - "nomCommune": "SANOUS" + "codePostal": "34550", + "codeCommune": "34031", + "libelleAcheminement": "BESSAN", + "nomCommune": "BESSAN" }, { - "codePostal": "60210", - "codeCommune": "60605", - "libelleAcheminement": "SARNOIS", - "nomCommune": "SARNOIS" + "codePostal": "24220", + "codeCommune": "24087", + "libelleAcheminement": "CASTELS ET BEZENAC", + "nomCommune": "CASTELS ET BEZENAC" }, { - "codePostal": "27190", - "codeCommune": "27472", - "libelleAcheminement": "PORTES", - "nomCommune": "PORTES" + "codePostal": "25460", + "codeCommune": "25228", + "libelleAcheminement": "ETUPES", + "nomCommune": "ETUPES" }, { - "codePostal": "52300", - "codeCommune": "52512", - "libelleAcheminement": "VECQUEVILLE", - "nomCommune": "VECQUEVILLE" + "codePostal": "34270", + "codeCommune": "34078", + "libelleAcheminement": "CLARET", + "nomCommune": "CLARET" }, { - "codePostal": "65410", - "codeCommune": "65408", - "libelleAcheminement": "SARRANCOLIN", - "nomCommune": "SARRANCOLIN" + "codePostal": "34760", + "codeCommune": "34037", + "libelleAcheminement": "BOUJAN SUR LIBRON", + "nomCommune": "BOUJAN SUR LIBRON" }, { - "codePostal": "60650", - "codeCommune": "60611", - "libelleAcheminement": "SENANTES", - "nomCommune": "SENANTES" + "codePostal": "24150", + "codeCommune": "24088", + "libelleAcheminement": "CAUSE DE CLERANS", + "nomCommune": "CAUSE DE CLERANS" }, { - "codePostal": "27560", - "codeCommune": "27475", - "libelleAcheminement": "LA POTERIE MATHIEU", - "nomCommune": "LA POTERIE MATHIEU" + "codePostal": "25330", + "codeCommune": "25241", + "libelleAcheminement": "FLAGEY", + "nomCommune": "FLAGEY" }, { - "codePostal": "52500", - "codeCommune": "52513", - "libelleAcheminement": "VELLES", - "nomCommune": "VELLES" + "codePostal": "34360", + "codeCommune": "34100", + "libelleAcheminement": "FERRIERES POUSSAROU", + "nomCommune": "FERRIERES POUSSAROU" }, { - "codePostal": "65140", - "codeCommune": "65409", - "libelleAcheminement": "SARRIAC BIGORRE", - "nomCommune": "SARRIAC BIGORRE" + "codePostal": "34650", + "codeCommune": "34040", + "libelleAcheminement": "BRENAS", + "nomCommune": "BRENAS" }, { - "codePostal": "60240", - "codeCommune": "60614", - "libelleAcheminement": "SERANS", - "nomCommune": "SERANS" + "codePostal": "24190", + "codeCommune": "24104", + "libelleAcheminement": "CHANTERAC", + "nomCommune": "CHANTERAC" }, { - "codePostal": "27150", - "codeCommune": "27480", - "libelleAcheminement": "PUCHAY", - "nomCommune": "PUCHAY" + "codePostal": "25660", + "codeCommune": "25245", + "libelleAcheminement": "FONTAIN", + "nomCommune": "FONTAIN" }, { - "codePostal": "52800", - "codeCommune": "52518", - "libelleAcheminement": "VESAIGNES SUR MARNE", - "nomCommune": "VESAIGNES SUR MARNE" + "codePostal": "34510", + "codeCommune": "34101", + "libelleAcheminement": "FLORENSAC", + "nomCommune": "FLORENSAC" }, { - "codePostal": "65600", - "codeCommune": "65417", - "libelleAcheminement": "SEMEAC", - "nomCommune": "SEMEAC" + "codePostal": "34190", + "codeCommune": "34042", + "libelleAcheminement": "BRISSAC", + "nomCommune": "BRISSAC" }, { - "codePostal": "60120", - "codeCommune": "60615", - "libelleAcheminement": "SEREVILLERS", - "nomCommune": "SEREVILLERS" + "codePostal": "24350", + "codeCommune": "24108", + "libelleAcheminement": "LA CHAPELLE GONAGUET", + "nomCommune": "LA CHAPELLE GONAGUET" }, { - "codePostal": "27400", - "codeCommune": "27483", - "libelleAcheminement": "QUATREMARE", - "nomCommune": "QUATREMARE" + "codePostal": "25140", + "codeCommune": "25256", + "libelleAcheminement": "FRAMBOUHANS", + "nomCommune": "FRAMBOUHANS" }, { - "codePostal": "52160", - "codeCommune": "52526", - "libelleAcheminement": "VILLARS SANTENOGE", - "nomCommune": "VILLARS SANTENOGE" + "codePostal": "34320", + "codeCommune": "34104", + "libelleAcheminement": "FOS", + "nomCommune": "FOS" }, { - "codePostal": "65140", - "codeCommune": "65418", - "libelleAcheminement": "SENAC", - "nomCommune": "SENAC" + "codePostal": "34800", + "codeCommune": "34045", + "libelleAcheminement": "CABRIERES", + "nomCommune": "CABRIERES" }, { - "codePostal": "60590", - "codeCommune": "60616", - "libelleAcheminement": "SERIFONTAINE", - "nomCommune": "SERIFONTAINE" + "codePostal": "24120", + "codeCommune": "24117", + "libelleAcheminement": "LES COTEAUX PERIGOURDINS", + "nomCommune": "LES COTEAUX PERIGOURDINS" }, { - "codePostal": "27110", - "codeCommune": "27486", - "libelleAcheminement": "QUITTEBEUF", - "nomCommune": "QUITTEBEUF" + "codePostal": "25770", + "codeCommune": "25258", + "libelleAcheminement": "FRANOIS", + "nomCommune": "FRANOIS" }, { - "codePostal": "52160", - "codeCommune": "52542", - "libelleAcheminement": "VIVEY", - "nomCommune": "VIVEY" + "codePostal": "34110", + "codeCommune": "34108", + "libelleAcheminement": "FRONTIGNAN", + "nomCommune": "FRONTIGNAN" }, { - "codePostal": "65330", - "codeCommune": "65419", - "libelleAcheminement": "SENTOUS", - "nomCommune": "SENTOUS" + "codePostal": "34610", + "codeCommune": "34055", + "libelleAcheminement": "CASTANET LE HAUT", + "nomCommune": "CASTANET LE HAUT" }, { - "codePostal": "60430", - "codeCommune": "60620", - "libelleAcheminement": "SILLY TILLARD", - "nomCommune": "SILLY TILLARD" + "codePostal": "24140", + "codeCommune": "24123", + "libelleAcheminement": "CLERMONT DE BEAUREGARD", + "nomCommune": "CLERMONT DE BEAUREGARD" }, { - "codePostal": "27220", - "codeCommune": "27507", - "libelleAcheminement": "ST ANDRE DE L EURE", - "nomCommune": "ST ANDRE DE L EURE" + "codePostal": "25250", + "codeCommune": "25266", + "libelleAcheminement": "GENEY", + "nomCommune": "GENEY" }, { - "codePostal": "52500", - "codeCommune": "52546", - "libelleAcheminement": "VONCOURT", - "nomCommune": "VONCOURT" + "codePostal": "34790", + "codeCommune": "34116", + "libelleAcheminement": "GRABELS", + "nomCommune": "GRABELS" }, { - "codePostal": "65400", - "codeCommune": "65420", - "libelleAcheminement": "SERE EN LAVEDAN", - "nomCommune": "SERE EN LAVEDAN" + "codePostal": "34160", + "codeCommune": "34058", + "libelleAcheminement": "CASTRIES", + "nomCommune": "CASTRIES" }, { - "codePostal": "60210", - "codeCommune": "60622", - "libelleAcheminement": "SOMMEREUX", - "nomCommune": "SOMMEREUX" + "codePostal": "24570", + "codeCommune": "24130", + "libelleAcheminement": "CONDAT SUR VEZERE", + "nomCommune": "CONDAT SUR VEZERE" }, { - "codePostal": "27110", - "codeCommune": "27511", - "libelleAcheminement": "ST AUBIN D ECROSVILLE", - "nomCommune": "ST AUBIN D ECROSVILLE" + "codePostal": "25640", + "codeCommune": "25269", + "libelleAcheminement": "GERMONDANS", + "nomCommune": "GERMONDANS" }, { - "codePostal": "52310", - "codeCommune": "52548", - "libelleAcheminement": "VRAINCOURT", - "nomCommune": "VRAINCOURT" + "codePostal": "34260", + "codeCommune": "34117", + "libelleAcheminement": "GRAISSESSAC", + "nomCommune": "GRAISSESSAC" }, { - "codePostal": "65190", - "codeCommune": "65426", - "libelleAcheminement": "SINZOS", - "nomCommune": "SINZOS" + "codePostal": "34720", + "codeCommune": "34063", + "libelleAcheminement": "CAUX", + "nomCommune": "CAUX" }, { - "codePostal": "60380", - "codeCommune": "60624", - "libelleAcheminement": "SULLY", - "nomCommune": "SULLY" + "codePostal": "24450", + "codeCommune": "24133", + "libelleAcheminement": "LA COQUILLE", + "nomCommune": "LA COQUILLE" }, { - "codePostal": "27300", - "codeCommune": "27516", - "libelleAcheminement": "TREIS SANTS EN OUCHE", - "nomCommune": "TREIS SANTS EN OUCHE" + "codePostal": "25190", + "codeCommune": "25275", + "libelleAcheminement": "GLERE", + "nomCommune": "GLERE" }, { - "codePostal": "53230", - "codeCommune": "53011", - "libelleAcheminement": "ASTILLE", - "nomCommune": "ASTILLE" + "codePostal": "34650", + "codeCommune": "34121", + "libelleAcheminement": "JONCELS", + "nomCommune": "JONCELS" }, { - "codePostal": "65700", - "codeCommune": "65432", - "libelleAcheminement": "SOUBLECAUSE", - "nomCommune": "SOUBLECAUSE" + "codePostal": "34520", + "codeCommune": "34064", + "libelleAcheminement": "LE CAYLAR", + "nomCommune": "LE CAYLAR" }, { - "codePostal": "60510", - "codeCommune": "60628", - "libelleAcheminement": "THERDONNE", - "nomCommune": "THERDONNE" + "codePostal": "24800", + "codeCommune": "24134", + "libelleAcheminement": "CORGNAC SUR L ISLE", + "nomCommune": "CORGNAC SUR L ISLE" }, { - "codePostal": "27680", - "codeCommune": "27518", - "libelleAcheminement": "ST AUBIN SUR QUILLEBEUF", - "nomCommune": "ST AUBIN SUR QUILLEBEUF" + "codePostal": "25680", + "codeCommune": "25279", + "libelleAcheminement": "GOUHELANS", + "nomCommune": "GOUHELANS" }, { - "codePostal": "53160", - "codeCommune": "53016", - "libelleAcheminement": "BAIS", - "nomCommune": "BAIS" + "codePostal": "34150", + "codeCommune": "34125", + "libelleAcheminement": "LAGAMAS", + "nomCommune": "LAGAMAS" }, { - "codePostal": "65260", - "codeCommune": "65435", - "libelleAcheminement": "SOULOM", - "nomCommune": "SOULOM" + "codePostal": "34270", + "codeCommune": "34066", + "libelleAcheminement": "CAZEVIEILLE", + "nomCommune": "CAZEVIEILLE" }, { - "codePostal": "60150", - "codeCommune": "60636", - "libelleAcheminement": "THOUROTTE", - "nomCommune": "THOUROTTE" + "codePostal": "24390", + "codeCommune": "24136", + "libelleAcheminement": "COUBJOURS", + "nomCommune": "COUBJOURS" }, { - "codePostal": "27450", - "codeCommune": "27522", - "libelleAcheminement": "ST CHRISTOPHE SUR CONDE", - "nomCommune": "ST CHRISTOPHE SUR CONDE" + "codePostal": "25520", + "codeCommune": "25282", + "libelleAcheminement": "GOUX LES USIERS", + "nomCommune": "GOUX LES USIERS" }, { - "codePostal": "53470", - "codeCommune": "53023", - "libelleAcheminement": "LA BAZOUGE DES ALLEUX", - "nomCommune": "LA BAZOUGE DES ALLEUX" + "codePostal": "34700", + "codeCommune": "34133", + "libelleAcheminement": "LAVALETTE", + "nomCommune": "LAVALETTE" }, { - "codePostal": "65320", - "codeCommune": "65439", - "libelleAcheminement": "TARASTEIX", - "nomCommune": "TARASTEIX" + "codePostal": "34190", + "codeCommune": "34067", + "libelleAcheminement": "CAZILHAC", + "nomCommune": "CAZILHAC" }, { - "codePostal": "60890", - "codeCommune": "60637", - "libelleAcheminement": "THURY EN VALOIS", - "nomCommune": "THURY EN VALOIS" + "codePostal": "24420", + "codeCommune": "24137", + "libelleAcheminement": "COULAURES", + "nomCommune": "COULAURES" }, { - "codePostal": "27800", - "codeCommune": "27527", - "libelleAcheminement": "ST CYR DE SALERNE", - "nomCommune": "ST CYR DE SALERNE" + "codePostal": "25160", + "codeCommune": "25295", + "libelleAcheminement": "LES GRANGETTES", + "nomCommune": "LES GRANGETTES" }, { - "codePostal": "53320", - "codeCommune": "53026", - "libelleAcheminement": "BEAULIEU SUR OUDON", - "nomCommune": "BEAULIEU SUR OUDON" + "codePostal": "34210", + "codeCommune": "34141", + "libelleAcheminement": "LA LIVINIERE", + "nomCommune": "LA LIVINIERE" }, { - "codePostal": "65330", - "codeCommune": "65449", - "libelleAcheminement": "TOURNOUS DEVANT", - "nomCommune": "TOURNOUS DEVANT" + "codePostal": "34120", + "codeCommune": "34068", + "libelleAcheminement": "CAZOULS D HERAULT", + "nomCommune": "CAZOULS D HERAULT" }, { - "codePostal": "60170", - "codeCommune": "60641", - "libelleAcheminement": "TRACY LE MONT", - "nomCommune": "TRACY LE MONT" + "codePostal": "24320", + "codeCommune": "24141", + "libelleAcheminement": "COUTURES", + "nomCommune": "COUTURES" }, { - "codePostal": "27370", - "codeCommune": "27529", - "libelleAcheminement": "ST CYR LA CAMPAGNE", - "nomCommune": "ST CYR LA CAMPAGNE" + "codePostal": "25110", + "codeCommune": "25299", + "libelleAcheminement": "GUILLON LES BAINS", + "nomCommune": "GUILLON LES BAINS" }, { - "codePostal": "53290", - "codeCommune": "53029", - "libelleAcheminement": "BIERNE LES VILLAGES", - "nomCommune": "BIERNE LES VILLAGES" + "codePostal": "34650", + "codeCommune": "34144", + "libelleAcheminement": "LUNAS", + "nomCommune": "LUNAS" }, { - "codePostal": "65200", - "codeCommune": "65451", - "libelleAcheminement": "TREBONS", - "nomCommune": "TREBONS" + "codePostal": "34370", + "codeCommune": "34069", + "libelleAcheminement": "CAZOULS LES BEZIERS", + "nomCommune": "CAZOULS LES BEZIERS" }, { - "codePostal": "60590", - "codeCommune": "60644", - "libelleAcheminement": "TRIE CHATEAU", - "nomCommune": "TRIE CHATEAU" + "codePostal": "24150", + "codeCommune": "24143", + "libelleAcheminement": "COUZE ET ST FRONT", + "nomCommune": "COUZE ET ST FRONT" }, { - "codePostal": "27190", - "codeCommune": "27535", - "libelleAcheminement": "ST ELIER", - "nomCommune": "ST ELIER" + "codePostal": "25580", + "codeCommune": "25300", + "libelleAcheminement": "GUYANS DURNES", + "nomCommune": "GUYANS DURNES" }, { - "codePostal": "53170", - "codeCommune": "53030", - "libelleAcheminement": "LE BIGNON DU MAINE", - "nomCommune": "LE BIGNON DU MAINE" + "codePostal": "34370", + "codeCommune": "34148", + "libelleAcheminement": "MARAUSSAN", + "nomCommune": "MARAUSSAN" }, { - "codePostal": "65370", - "codeCommune": "65453", - "libelleAcheminement": "TROUBAT", - "nomCommune": "TROUBAT" + "codePostal": "34420", + "codeCommune": "34073", + "libelleAcheminement": "CERS", + "nomCommune": "CERS" }, { - "codePostal": "60112", - "codeCommune": "60646", - "libelleAcheminement": "TROISSEREUX", - "nomCommune": "TROISSEREUX" + "codePostal": "24640", + "codeCommune": "24147", + "libelleAcheminement": "CUBJAC AUVEZERE VAL D ANS", + "nomCommune": "CUBJAC AUVEZERE VAL D ANS" }, { - "codePostal": "27560", - "codeCommune": "27541", - "libelleAcheminement": "LE MESNIL ST JEAN", - "nomCommune": "LE MESNIL ST JEAN" + "codePostal": "25390", + "codeCommune": "25301", + "libelleAcheminement": "GUYANS VENNES", + "nomCommune": "GUYANS VENNES" }, { - "codePostal": "53150", - "codeCommune": "53043", - "libelleAcheminement": "BREE", - "nomCommune": "BREE" + "codePostal": "34590", + "codeCommune": "34151", + "libelleAcheminement": "MARSILLARGUES", + "nomCommune": "MARSILLARGUES" }, { - "codePostal": "65150", - "codeCommune": "65455", - "libelleAcheminement": "TUZAGUET", - "nomCommune": "TUZAGUET" + "codePostal": "34370", + "codeCommune": "34089", + "libelleAcheminement": "CREISSAN", + "nomCommune": "CREISSAN" }, { - "codePostal": "60350", - "codeCommune": "60647", - "libelleAcheminement": "TROSLY BREUIL", - "nomCommune": "TROSLY BREUIL" + "codePostal": "24330", + "codeCommune": "24156", + "libelleAcheminement": "LA DOUZE", + "nomCommune": "LA DOUZE" }, { - "codePostal": "27710", - "codeCommune": "27543", - "libelleAcheminement": "ST GEORGES MOTEL", - "nomCommune": "ST GEORGES MOTEL" + "codePostal": "25300", + "codeCommune": "25309", + "libelleAcheminement": "HOUTAUD", + "nomCommune": "HOUTAUD" }, { - "codePostal": "53420", - "codeCommune": "53048", - "libelleAcheminement": "CHAILLAND", - "nomCommune": "CHAILLAND" + "codePostal": "34310", + "codeCommune": "34161", + "libelleAcheminement": "MONTADY", + "nomCommune": "MONTADY" }, { - "codePostal": "65220", - "codeCommune": "65461", - "libelleAcheminement": "VIDOU", - "nomCommune": "VIDOU" + "codePostal": "34210", + "codeCommune": "34097", + "libelleAcheminement": "FELINES MINERVOIS", + "nomCommune": "FELINES MINERVOIS" }, { - "codePostal": "60730", - "codeCommune": "60651", - "libelleAcheminement": "ULLY ST GEORGES", - "nomCommune": "ULLY ST GEORGES" + "codePostal": "24270", + "codeCommune": "24158", + "libelleAcheminement": "DUSSAC", + "nomCommune": "DUSSAC" }, { - "codePostal": "27230", - "codeCommune": "27547", - "libelleAcheminement": "ST GERMAIN LA CAMPAGNE", - "nomCommune": "ST GERMAIN LA CAMPAGNE" + "codePostal": "25110", + "codeCommune": "25313", + "libelleAcheminement": "HYEVRE PAROISSE", + "nomCommune": "HYEVRE PAROISSE" }, { - "codePostal": "53440", - "codeCommune": "53057", - "libelleAcheminement": "LA CHAPELLE AU RIBOUL", - "nomCommune": "LA CHAPELLE AU RIBOUL" + "codePostal": "34530", + "codeCommune": "34162", + "libelleAcheminement": "MONTAGNAC", + "nomCommune": "MONTAGNAC" }, { - "codePostal": "65230", - "codeCommune": "65468", - "libelleAcheminement": "VIEUZOS", - "nomCommune": "VIEUZOS" + "codePostal": "34210", + "codeCommune": "34098", + "libelleAcheminement": "FERRALS LES MONTAGNES", + "nomCommune": "FERRALS LES MONTAGNES" }, { - "codePostal": "60120", - "codeCommune": "60664", - "libelleAcheminement": "VENDEUIL CAPLY", - "nomCommune": "VENDEUIL CAPLY" + "codePostal": "24410", + "codeCommune": "24159", + "libelleAcheminement": "ECHOURGNAC", + "nomCommune": "ECHOURGNAC" }, { - "codePostal": "27270", - "codeCommune": "27552", - "libelleAcheminement": "ST JEAN DU THENNEY", - "nomCommune": "ST JEAN DU THENNEY" + "codePostal": "25110", + "codeCommune": "25313", + "libelleAcheminement": "HYEVRE PAROISSE", + "nomCommune": "HYEVRE PAROISSE" }, { - "codePostal": "53200", - "codeCommune": "53062", - "libelleAcheminement": "CHATEAU GONTIER SUR MAYENNE", - "nomCommune": "CHATEAU GONTIER SUR MAYENNE" + "codePostal": "34320", + "codeCommune": "34168", + "libelleAcheminement": "MONTESQUIEU", + "nomCommune": "MONTESQUIEU" }, { - "codePostal": "65230", - "codeCommune": "65475", - "libelleAcheminement": "VILLEMUR", - "nomCommune": "VILLEMUR" + "codePostal": "34480", + "codeCommune": "34105", + "libelleAcheminement": "FOUZILHON", + "nomCommune": "FOUZILHON" }, { - "codePostal": "60950", - "codeCommune": "60666", - "libelleAcheminement": "VER SUR LAUNETTE", - "nomCommune": "VER SUR LAUNETTE" + "codePostal": "24400", + "codeCommune": "24161", + "libelleAcheminement": "EGLISE NEUVE D ISSAC", + "nomCommune": "EGLISE NEUVE D ISSAC" }, { - "codePostal": "27930", - "codeCommune": "27560", - "libelleAcheminement": "ST LUC", - "nomCommune": "ST LUC" + "codePostal": "25720", + "codeCommune": "25328", + "libelleAcheminement": "LARNOD", + "nomCommune": "LARNOD" }, { - "codePostal": "53100", - "codeCommune": "53064", - "libelleAcheminement": "CHATILLON SUR COLMONT", - "nomCommune": "CHATILLON SUR COLMONT" + "codePostal": "34980", + "codeCommune": "34169", + "libelleAcheminement": "MONTFERRIER SUR LEZ", + "nomCommune": "MONTFERRIER SUR LEZ" }, { - "codePostal": "65500", - "codeCommune": "65476", - "libelleAcheminement": "VILLENAVE PRES BEARN", - "nomCommune": "VILLENAVE PRES BEARN" + "codePostal": "34330", + "codeCommune": "34107", + "libelleAcheminement": "FRAISSE SUR AGOUT", + "nomCommune": "FRAISSE SUR AGOUT" }, { - "codePostal": "60140", - "codeCommune": "60669", - "libelleAcheminement": "VERDERONNE", - "nomCommune": "VERDERONNE" + "codePostal": "24560", + "codeCommune": "24168", + "libelleAcheminement": "PLAISANCE", + "nomCommune": "PLAISANCE" }, { - "codePostal": "27500", - "codeCommune": "27563", - "libelleAcheminement": "ST MARDS DE BLACARVILLE", - "nomCommune": "ST MARDS DE BLACARVILLE" + "codePostal": "25580", + "codeCommune": "25331", + "libelleAcheminement": "LAVANS VUILLAFANS", + "nomCommune": "LAVANS VUILLAFANS" }, { - "codePostal": "53200", - "codeCommune": "53066", - "libelleAcheminement": "CHEMAZE", - "nomCommune": "CHEMAZE" + "codePostal": "34310", + "codeCommune": "34170", + "libelleAcheminement": "MONTOULIERS", + "nomCommune": "MONTOULIERS" }, { - "codePostal": "65200", - "codeCommune": "65479", - "libelleAcheminement": "VISKER", - "nomCommune": "VISKER" + "codePostal": "34320", + "codeCommune": "34109", + "libelleAcheminement": "GABIAN", + "nomCommune": "GABIAN" }, { - "codePostal": "60550", - "codeCommune": "60670", - "libelleAcheminement": "VERNEUIL EN HALATTE", - "nomCommune": "VERNEUIL EN HALATTE" + "codePostal": "24800", + "codeCommune": "24171", + "libelleAcheminement": "EYZERAC", + "nomCommune": "EYZERAC" }, { - "codePostal": "27370", - "codeCommune": "27579", - "libelleAcheminement": "ST OUEN DE PONTCHEUIL", - "nomCommune": "ST OUEN DE PONTCHEUIL" + "codePostal": "25270", + "codeCommune": "25334", + "libelleAcheminement": "LEVIER", + "nomCommune": "LEVIER" }, { - "codePostal": "53800", - "codeCommune": "53073", - "libelleAcheminement": "CONGRIER", - "nomCommune": "CONGRIER" + "codePostal": "34190", + "codeCommune": "34171", + "libelleAcheminement": "MONTOULIEU", + "nomCommune": "MONTOULIEU" }, { - "codePostal": "65120", - "codeCommune": "65481", - "libelleAcheminement": "BAREGES", - "nomCommune": "BAREGES" + "codePostal": "34190", + "codeCommune": "34115", + "libelleAcheminement": "GORNIES", + "nomCommune": "GORNIES" }, { - "codePostal": "60440", - "codeCommune": "60671", - "libelleAcheminement": "VERSIGNY", - "nomCommune": "VERSIGNY" + "codePostal": "24120", + "codeCommune": "24179", + "libelleAcheminement": "LA FEUILLADE", + "nomCommune": "LA FEUILLADE" }, { - "codePostal": "27950", - "codeCommune": "27612", - "libelleAcheminement": "ST VINCENT DES BOIS", - "nomCommune": "ST VINCENT DES BOIS" + "codePostal": "25390", + "codeCommune": "25349", + "libelleAcheminement": "LORAY", + "nomCommune": "LORAY" }, { - "codePostal": "53100", - "codeCommune": "53074", - "libelleAcheminement": "CONTEST", - "nomCommune": "CONTEST" + "codePostal": "34980", + "codeCommune": "34177", + "libelleAcheminement": "MURLES", + "nomCommune": "MURLES" }, { - "codePostal": "66760", - "codeCommune": "66005", - "libelleAcheminement": "ANGOUSTRINE VILLENEUVE ESCALDES", - "nomCommune": "ANGOUSTRINE VILLENEUVE DES ESCALDES" + "codePostal": "34820", + "codeCommune": "34118", + "libelleAcheminement": "GUZARGUES", + "nomCommune": "GUZARGUES" }, { - "codePostal": "60117", - "codeCommune": "60672", - "libelleAcheminement": "VEZ", - "nomCommune": "VEZ" + "codePostal": "24580", + "codeCommune": "24183", + "libelleAcheminement": "FLEURAC", + "nomCommune": "FLEURAC" }, { - "codePostal": "27400", - "codeCommune": "27624", - "libelleAcheminement": "SURVILLE", - "nomCommune": "SURVILLE" + "codePostal": "25260", + "codeCommune": "25350", + "libelleAcheminement": "LOUGRES", + "nomCommune": "LOUGRES" }, { - "codePostal": "53230", - "codeCommune": "53075", - "libelleAcheminement": "COSMES", - "nomCommune": "COSMES" + "codePostal": "34310", + "codeCommune": "34206", + "libelleAcheminement": "POILHES", + "nomCommune": "POILHES" }, { - "codePostal": "66760", - "codeCommune": "66005", - "libelleAcheminement": "ANGOUSTRINE VILLENEUVE ESCALDES", - "nomCommune": "ANGOUSTRINE VILLENEUVE DES ESCALDES" + "codePostal": "34600", + "codeCommune": "34119", + "libelleAcheminement": "HEREPIAN", + "nomCommune": "HEREPIAN" }, { - "codePostal": "60162", - "codeCommune": "60675", - "libelleAcheminement": "VIGNEMONT", - "nomCommune": "VIGNEMONT" + "codePostal": "24380", + "codeCommune": "24190", + "libelleAcheminement": "FOULEIX", + "nomCommune": "FOULEIX" }, { - "codePostal": "27420", - "codeCommune": "27633", - "libelleAcheminement": "LES THILLIERS EN VEXIN", - "nomCommune": "LES THILLIERS EN VEXIN" + "codePostal": "25650", + "codeCommune": "25357", + "libelleAcheminement": "MAISONS DU BOIS LIEVREMONT", + "nomCommune": "MAISONS DU BOIS LIEVREMONT" }, { - "codePostal": "53400", - "codeCommune": "53084", - "libelleAcheminement": "CRAON", - "nomCommune": "CRAON" + "codePostal": "34230", + "codeCommune": "34208", + "libelleAcheminement": "POPIAN", + "nomCommune": "POPIAN" }, { - "codePostal": "66700", - "codeCommune": "66008", - "libelleAcheminement": "ARGELES SUR MER", - "nomCommune": "ARGELES SUR MER" + "codePostal": "34725", + "codeCommune": "34122", + "libelleAcheminement": "JONQUIERES", + "nomCommune": "JONQUIERES" }, { - "codePostal": "60175", - "codeCommune": "60678", - "libelleAcheminement": "VILLENEUVE LES SABLONS", - "nomCommune": "VILLENEUVE LES SABLONS" + "codePostal": "24210", + "codeCommune": "24192", + "libelleAcheminement": "GABILLOU", + "nomCommune": "GABILLOU" }, { - "codePostal": "27700", - "codeCommune": "27635", - "libelleAcheminement": "LE THUIT", - "nomCommune": "LE THUIT" + "codePostal": "25650", + "codeCommune": "25357", + "libelleAcheminement": "MAISONS DU BOIS LIEVREMONT", + "nomCommune": "MAISONS DU BOIS LIEVREMONT" }, { - "codePostal": "53380", - "codeCommune": "53086", - "libelleAcheminement": "LA CROIXILLE", - "nomCommune": "LA CROIXILLE" + "codePostal": "34420", + "codeCommune": "34209", + "libelleAcheminement": "PORTIRAGNES", + "nomCommune": "PORTIRAGNES" }, { - "codePostal": "66670", - "codeCommune": "66011", - "libelleAcheminement": "BAGES", - "nomCommune": "BAGES" + "codePostal": "34990", + "codeCommune": "34123", + "libelleAcheminement": "JUVIGNAC", + "nomCommune": "JUVIGNAC" }, { - "codePostal": "60870", - "codeCommune": "60684", - "libelleAcheminement": "VILLERS ST PAUL", - "nomCommune": "VILLERS ST PAUL" + "codePostal": "24110", + "codeCommune": "24205", + "libelleAcheminement": "GRIGNOLS", + "nomCommune": "GRIGNOLS" }, { - "codePostal": "27370", - "codeCommune": "27638", - "libelleAcheminement": "LE THUIT DE L OISON", - "nomCommune": "LE THUIT DE L OISON" + "codePostal": "25120", + "codeCommune": "25366", + "libelleAcheminement": "MANCENANS LIZERNE", + "nomCommune": "MANCENANS LIZERNE" }, { - "codePostal": "53190", - "codeCommune": "53091", - "libelleAcheminement": "DESERTINES", - "nomCommune": "DESERTINES" + "codePostal": "34230", + "codeCommune": "34215", + "libelleAcheminement": "POUZOLS", + "nomCommune": "POUZOLS" }, { - "codePostal": "66650", - "codeCommune": "66016", - "libelleAcheminement": "BANYULS SUR MER", - "nomCommune": "BANYULS SUR MER" + "codePostal": "34240", + "codeCommune": "34126", + "libelleAcheminement": "LAMALOU LES BAINS", + "nomCommune": "LAMALOU LES BAINS" }, { - "codePostal": "60500", - "codeCommune": "60695", - "libelleAcheminement": "VINEUIL ST FIRMIN", - "nomCommune": "VINEUIL ST FIRMIN" + "codePostal": "24390", + "codeCommune": "24210", + "libelleAcheminement": "HAUTEFORT", + "nomCommune": "HAUTEFORT" }, { - "codePostal": "27930", - "codeCommune": "27652", - "libelleAcheminement": "TOURNEVILLE", - "nomCommune": "TOURNEVILLE" + "codePostal": "25170", + "codeCommune": "25371", + "libelleAcheminement": "MAZEROLLES LE SALIN", + "nomCommune": "MAZEROLLES LE SALIN" }, { - "codePostal": "53260", - "codeCommune": "53094", - "libelleAcheminement": "ENTRAMMES", - "nomCommune": "ENTRAMMES" + "codePostal": "34730", + "codeCommune": "34217", + "libelleAcheminement": "PRADES LE LEZ", + "nomCommune": "PRADES LE LEZ" }, { - "codePostal": "66130", - "codeCommune": "66022", - "libelleAcheminement": "BOULE D AMONT", - "nomCommune": "BOULE D AMONT" + "codePostal": "34190", + "codeCommune": "34128", + "libelleAcheminement": "LAROQUE", + "nomCommune": "LAROQUE" }, { - "codePostal": "60380", - "codeCommune": "60699", - "libelleAcheminement": "WAMBEZ", - "nomCommune": "WAMBEZ" + "codePostal": "24560", + "codeCommune": "24212", + "libelleAcheminement": "ISSIGEAC", + "nomCommune": "ISSIGEAC" }, { - "codePostal": "27500", - "codeCommune": "27656", - "libelleAcheminement": "TOUTAINVILLE", - "nomCommune": "TOUTAINVILLE" + "codePostal": "25250", + "codeCommune": "25372", + "libelleAcheminement": "MEDIERE", + "nomCommune": "MEDIERE" }, { - "codePostal": "53600", - "codeCommune": "53097", - "libelleAcheminement": "EVRON", - "nomCommune": "EVRON" + "codePostal": "34390", + "codeCommune": "34219", + "libelleAcheminement": "PREMIAN", + "nomCommune": "PREMIAN" }, { - "codePostal": "66600", - "codeCommune": "66030", - "libelleAcheminement": "CALCE", - "nomCommune": "CALCE" + "codePostal": "34880", + "codeCommune": "34134", + "libelleAcheminement": "LAVERUNE", + "nomCommune": "LAVERUNE" }, { - "codePostal": "60430", - "codeCommune": "60700", - "libelleAcheminement": "WARLUIS", - "nomCommune": "WARLUIS" + "codePostal": "24630", + "codeCommune": "24218", + "libelleAcheminement": "JUMILHAC LE GRAND", + "nomCommune": "JUMILHAC LE GRAND" }, { - "codePostal": "27310", - "codeCommune": "27661", - "libelleAcheminement": "LA TRINITE DE THOUBERVILLE", - "nomCommune": "LA TRINITE DE THOUBERVILLE" + "codePostal": "25660", + "codeCommune": "25375", + "libelleAcheminement": "LES MONTS RONDS", + "nomCommune": "LES MONTS RONDS" }, { - "codePostal": "53600", - "codeCommune": "53097", - "libelleAcheminement": "EVRON", - "nomCommune": "EVRON" + "codePostal": "34150", + "codeCommune": "34221", + "libelleAcheminement": "PUECHABON", + "nomCommune": "PUECHABON" }, { - "codePostal": "66300", - "codeCommune": "66033", - "libelleAcheminement": "CAMELAS", - "nomCommune": "CAMELAS" + "codePostal": "34800", + "codeCommune": "34137", + "libelleAcheminement": "LIAUSSON", + "nomCommune": "LIAUSSON" }, { - "codePostal": "61570", - "codeCommune": "61002", - "libelleAcheminement": "ALMENECHES", - "nomCommune": "ALMENECHES" + "codePostal": "24170", + "codeCommune": "24230", + "libelleAcheminement": "LARZAC", + "nomCommune": "LARZAC" }, { - "codePostal": "27110", - "codeCommune": "27663", - "libelleAcheminement": "LE TRONCQ", - "nomCommune": "LE TRONCQ" + "codePostal": "25870", + "codeCommune": "25382", + "libelleAcheminement": "MONCEY", + "nomCommune": "MONCEY" }, { - "codePostal": "53350", - "codeCommune": "53098", - "libelleAcheminement": "FONTAINE COUVERTE", - "nomCommune": "FONTAINE COUVERTE" + "codePostal": "34230", + "codeCommune": "34222", + "libelleAcheminement": "PUILACHER", + "nomCommune": "PUILACHER" }, { - "codePostal": "66140", - "codeCommune": "66037", - "libelleAcheminement": "CANET EN ROUSSILLON", - "nomCommune": "CANET EN ROUSSILLON" + "codePostal": "34290", + "codeCommune": "34139", + "libelleAcheminement": "LIEURAN LES BEZIERS", + "nomCommune": "LIEURAN LES BEZIERS" }, { - "codePostal": "61130", - "codeCommune": "61005", - "libelleAcheminement": "APPENAI SOUS BELLEME", - "nomCommune": "APPENAI SOUS BELLEME" + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { - "codePostal": "27680", - "codeCommune": "27665", - "libelleAcheminement": "TROUVILLE LA HAULE", - "nomCommune": "TROUVILLE LA HAULE" + "codePostal": "25680", + "codeCommune": "25384", + "libelleAcheminement": "MONDON", + "nomCommune": "MONDON" }, { - "codePostal": "53190", - "codeCommune": "53100", - "libelleAcheminement": "FOUGEROLLES DU PLESSIS", - "nomCommune": "FOUGEROLLES DU PLESSIS" + "codePostal": "34360", + "codeCommune": "34245", + "libelleAcheminement": "ST CHINIAN", + "nomCommune": "ST CHINIAN" }, { - "codePostal": "66680", - "codeCommune": "66038", - "libelleAcheminement": "CANOHES", - "nomCommune": "CANOHES" + "codePostal": "34140", + "codeCommune": "34143", + "libelleAcheminement": "LOUPIAN", + "nomCommune": "LOUPIAN" }, { - "codePostal": "61100", - "codeCommune": "61007", - "libelleAcheminement": "ATHIS VAL DE ROUVRE", - "nomCommune": "ATHIS VAL DE ROUVRE" + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { - "codePostal": "27300", - "codeCommune": "27667", - "libelleAcheminement": "VALAILLES", - "nomCommune": "VALAILLES" + "codePostal": "25190", + "codeCommune": "25393", + "libelleAcheminement": "MONTECHEROUX", + "nomCommune": "MONTECHEROUX" }, { - "codePostal": "53540", - "codeCommune": "53102", - "libelleAcheminement": "GASTINES", - "nomCommune": "GASTINES" + "codePostal": "34980", + "codeCommune": "34247", + "libelleAcheminement": "ST CLEMENT DE RIVIERE", + "nomCommune": "ST CLEMENT DE RIVIERE" }, { - "codePostal": "66600", - "codeCommune": "66041", - "libelleAcheminement": "CASES DE PENE", - "nomCommune": "CASES DE PENE" + "codePostal": "34340", + "codeCommune": "34150", + "libelleAcheminement": "MARSEILLAN", + "nomCommune": "MARSEILLAN" }, { - "codePostal": "61100", - "codeCommune": "61007", - "libelleAcheminement": "ATHIS VAL DE ROUVRE", - "nomCommune": "ATHIS VAL DE ROUVRE" + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { - "codePostal": "27910", - "codeCommune": "27672", - "libelleAcheminement": "VASCOEUIL", - "nomCommune": "VASCOEUIL" + "codePostal": "25110", + "codeCommune": "25401", + "libelleAcheminement": "MONTIVERNAGE", + "nomCommune": "MONTIVERNAGE" }, { - "codePostal": "53940", - "codeCommune": "53103", - "libelleAcheminement": "LE GENEST ST ISLE", - "nomCommune": "LE GENEST ST ISLE" + "codePostal": "34725", + "codeCommune": "34254", + "libelleAcheminement": "ST FELIX DE LODEZ", + "nomCommune": "ST FELIX DE LODEZ" }, { - "codePostal": "66820", - "codeCommune": "66043", - "libelleAcheminement": "CASTEIL", - "nomCommune": "CASTEIL" + "codePostal": "34340", + "codeCommune": "34150", + "libelleAcheminement": "MARSEILLAN", + "nomCommune": "MARSEILLAN" }, { - "codePostal": "61270", - "codeCommune": "61012", - "libelleAcheminement": "AUGUAISE", - "nomCommune": "AUGUAISE" + "codePostal": "24430", + "codeCommune": "24256", + "libelleAcheminement": "MARSAC SUR L ISLE", + "nomCommune": "MARSAC SUR L ISLE" }, { - "codePostal": "27430", - "codeCommune": "27673", - "libelleAcheminement": "VATTEVILLE", - "nomCommune": "VATTEVILLE" + "codePostal": "25190", + "codeCommune": "25402", + "libelleAcheminement": "MONTJOIE LE CHATEAU", + "nomCommune": "MONTJOIE LE CHATEAU" }, { - "codePostal": "53290", - "codeCommune": "53110", - "libelleAcheminement": "GREZ EN BOUERE", - "nomCommune": "GREZ EN BOUERE" + "codePostal": "34980", + "codeCommune": "34255", + "libelleAcheminement": "ST GELY DU FESC", + "nomCommune": "ST GELY DU FESC" }, { - "codePostal": "66500", - "codeCommune": "66045", - "libelleAcheminement": "CATLLAR", - "nomCommune": "CATLLAR" + "codePostal": "34380", + "codeCommune": "34152", + "libelleAcheminement": "MAS DE LONDRES", + "nomCommune": "MAS DE LONDRES" }, { - "codePostal": "61500", - "codeCommune": "61015", - "libelleAcheminement": "AUNOU SUR ORNE", - "nomCommune": "AUNOU SUR ORNE" + "codePostal": "24140", + "codeCommune": "24259", + "libelleAcheminement": "EYRAUD CREMPSE MAURENS", + "nomCommune": "EYRAUD CREMPSE MAURENS" }, { - "codePostal": "27180", - "codeCommune": "27678", - "libelleAcheminement": "LES VENTES", - "nomCommune": "LES VENTES" + "codePostal": "25270", + "codeCommune": "25404", + "libelleAcheminement": "MONTMAHOUX", + "nomCommune": "MONTMAHOUX" }, { - "codePostal": "53640", - "codeCommune": "53116", - "libelleAcheminement": "LE HORPS", - "nomCommune": "LE HORPS" + "codePostal": "34725", + "codeCommune": "34262", + "libelleAcheminement": "ST GUIRAUD", + "nomCommune": "ST GUIRAUD" }, { - "codePostal": "66190", - "codeCommune": "66053", - "libelleAcheminement": "COLLIOURE", - "nomCommune": "COLLIOURE" + "codePostal": "34270", + "codeCommune": "34153", + "libelleAcheminement": "LES MATELLES", + "nomCommune": "LES MATELLES" }, { - "codePostal": "61500", - "codeCommune": "61056", - "libelleAcheminement": "LE BOUILLON", - "nomCommune": "LE BOUILLON" + "codePostal": "24140", + "codeCommune": "24259", + "libelleAcheminement": "EYRAUD CREMPSE MAURENS", + "nomCommune": "EYRAUD CREMPSE MAURENS" }, { - "codePostal": "27130", - "codeCommune": "27679", - "libelleAcheminement": "VERNEUIL D AVRE ET D ITON", - "nomCommune": "VERNEUIL D AVRE ET D ITON" + "codePostal": "25160", + "codeCommune": "25405", + "libelleAcheminement": "MONTPERREUX", + "nomCommune": "MONTPERREUX" }, { - "codePostal": "53360", - "codeCommune": "53117", - "libelleAcheminement": "HOUSSAY", - "nomCommune": "HOUSSAY" + "codePostal": "34380", + "codeCommune": "34264", + "libelleAcheminement": "ST JEAN DE BUEGES", + "nomCommune": "ST JEAN DE BUEGES" }, { - "codePostal": "66200", - "codeCommune": "66065", - "libelleAcheminement": "ELNE", - "nomCommune": "ELNE" + "codePostal": "34130", + "codeCommune": "34154", + "libelleAcheminement": "MAUGUIO", + "nomCommune": "MAUGUIO" }, { - "codePostal": "61390", - "codeCommune": "61064", - "libelleAcheminement": "BRULLEMAIL", - "nomCommune": "BRULLEMAIL" + "codePostal": "24260", + "codeCommune": "24261", + "libelleAcheminement": "MAUZENS ET MIREMONT", + "nomCommune": "MAUZENS ET MIREMONT" }, { - "codePostal": "27870", - "codeCommune": "27682", - "libelleAcheminement": "VESLY", - "nomCommune": "VESLY" + "codePostal": "25440", + "codeCommune": "25416", + "libelleAcheminement": "MYON", + "nomCommune": "MYON" }, { - "codePostal": "53110", - "codeCommune": "53127", - "libelleAcheminement": "LASSAY LES CHATEAUX", - "nomCommune": "LASSAY LES CHATEAUX" + "codePostal": "34380", + "codeCommune": "34274", + "libelleAcheminement": "ST MARTIN DE LONDRES", + "nomCommune": "ST MARTIN DE LONDRES" }, { - "codePostal": "66800", - "codeCommune": "66067", - "libelleAcheminement": "ERR", - "nomCommune": "ERR" + "codePostal": "34800", + "codeCommune": "34156", + "libelleAcheminement": "MERIFONS", + "nomCommune": "MERIFONS" }, { - "codePostal": "61320", - "codeCommune": "61074", - "libelleAcheminement": "CARROUGES", - "nomCommune": "CARROUGES" + "codePostal": "24420", + "codeCommune": "24262", + "libelleAcheminement": "MAYAC", + "nomCommune": "MAYAC" }, { - "codePostal": "27330", - "codeCommune": "27685", - "libelleAcheminement": "LA VIEILLE LYRE", - "nomCommune": "LA VIEILLE LYRE" + "codePostal": "25360", + "codeCommune": "25417", + "libelleAcheminement": "NAISEY LES GRANGES", + "nomCommune": "NAISEY LES GRANGES" }, { - "codePostal": "53110", - "codeCommune": "53127", - "libelleAcheminement": "LASSAY LES CHATEAUX", - "nomCommune": "LASSAY LES CHATEAUX" + "codePostal": "34570", + "codeCommune": "34282", + "libelleAcheminement": "ST PAUL ET VALMALLE", + "nomCommune": "ST PAUL ET VALMALLE" }, { - "codePostal": "66360", - "codeCommune": "66068", - "libelleAcheminement": "ESCARO", - "nomCommune": "ESCARO" + "codePostal": "34140", + "codeCommune": "34157", + "libelleAcheminement": "MEZE", + "nomCommune": "MEZE" }, { - "codePostal": "61330", - "codeCommune": "61075", - "libelleAcheminement": "CEAUCE", - "nomCommune": "CEAUCE" + "codePostal": "24350", + "codeCommune": "24266", + "libelleAcheminement": "MENSIGNAC", + "nomCommune": "MENSIGNAC" }, { - "codePostal": "27940", - "codeCommune": "27691", - "libelleAcheminement": "VILLERS SUR LE ROULE", - "nomCommune": "VILLERS SUR LE ROULE" + "codePostal": "25360", + "codeCommune": "25418", + "libelleAcheminement": "NANCRAY", + "nomCommune": "NANCRAY" }, { - "codePostal": "53410", - "codeCommune": "53129", - "libelleAcheminement": "LAUNAY VILLIERS", - "nomCommune": "LAUNAY VILLIERS" + "codePostal": "34630", + "codeCommune": "34289", + "libelleAcheminement": "ST THIBERY", + "nomCommune": "ST THIBERY" }, { - "codePostal": "66600", - "codeCommune": "66069", - "libelleAcheminement": "ESPIRA DE L AGLY", - "nomCommune": "ESPIRA DE L AGLY" + "codePostal": "34310", + "codeCommune": "34167", + "libelleAcheminement": "MONTELS", + "nomCommune": "MONTELS" }, { - "codePostal": "61500", - "codeCommune": "61076", - "libelleAcheminement": "LE CERCUEIL", - "nomCommune": "LE CERCUEIL" + "codePostal": "24610", + "codeCommune": "24272", + "libelleAcheminement": "MINZAC", + "nomCommune": "MINZAC" }, { - "codePostal": "27640", - "codeCommune": "27696", - "libelleAcheminement": "VILLIERS EN DESOEUVRE", - "nomCommune": "VILLIERS EN DESOEUVRE" + "codePostal": "25680", + "codeCommune": "25419", + "libelleAcheminement": "NANS", + "nomCommune": "NANS" }, { - "codePostal": "53120", - "codeCommune": "53132", - "libelleAcheminement": "LEVARE", - "nomCommune": "LEVARE" + "codePostal": "34390", + "codeCommune": "34291", + "libelleAcheminement": "ST VINCENT D OLARGUES", + "nomCommune": "ST VINCENT D OLARGUES" }, { - "codePostal": "66320", - "codeCommune": "66073", - "libelleAcheminement": "ESTOHER", - "nomCommune": "ESTOHER" + "codePostal": "34150", + "codeCommune": "34173", + "libelleAcheminement": "MONTPEYROUX", + "nomCommune": "MONTPEYROUX" }, { - "codePostal": "61000", - "codeCommune": "61077", - "libelleAcheminement": "CERISE", - "nomCommune": "CERISE" + "codePostal": "24560", + "codeCommune": "24278", + "libelleAcheminement": "MONMADALES", + "nomCommune": "MONMADALES" }, { - "codePostal": "27110", - "codeCommune": "27698", - "libelleAcheminement": "VITOT", - "nomCommune": "VITOT" + "codePostal": "25500", + "codeCommune": "25425", + "libelleAcheminement": "NOEL CERNEUX", + "nomCommune": "NOEL CERNEUX" }, { - "codePostal": "53140", - "codeCommune": "53133", - "libelleAcheminement": "LIGNIERES ORGERES", - "nomCommune": "LIGNIERES ORGERES" + "codePostal": "34800", + "codeCommune": "34292", + "libelleAcheminement": "SALASC", + "nomCommune": "SALASC" }, { - "codePostal": "66500", - "codeCommune": "66074", - "libelleAcheminement": "EUS", - "nomCommune": "EUS" + "codePostal": "34800", + "codeCommune": "34175", + "libelleAcheminement": "MOUREZE", + "nomCommune": "MOUREZE" }, { - "codePostal": "61240", - "codeCommune": "61081", - "libelleAcheminement": "CHAILLOUE", - "nomCommune": "CHAILLOUE" + "codePostal": "24560", + "codeCommune": "24279", + "libelleAcheminement": "MONMARVES", + "nomCommune": "MONMARVES" }, { - "codePostal": "28290", - "codeCommune": "28012", - "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", - "nomCommune": "COMMUNE NOUVELLE D ARROU" + "codePostal": "25640", + "codeCommune": "25430", + "libelleAcheminement": "OLLANS", + "nomCommune": "OLLANS" }, { - "codePostal": "53700", - "codeCommune": "53139", - "libelleAcheminement": "LOUPFOUGERES", - "nomCommune": "LOUPFOUGERES" + "codePostal": "34400", + "codeCommune": "34294", + "libelleAcheminement": "SATURARGUES", + "nomCommune": "SATURARGUES" }, { - "codePostal": "66220", - "codeCommune": "66077", - "libelleAcheminement": "FENOUILLET", - "nomCommune": "FENOUILLET" - }, - { - "codePostal": "61120", - "codeCommune": "61086", - "libelleAcheminement": "LES CHAMPEAUX", - "nomCommune": "LES CHAMPEAUX" - }, - { - "codePostal": "28290", - "codeCommune": "28012", - "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", - "nomCommune": "COMMUNE NOUVELLE D ARROU" - }, - { - "codePostal": "53950", - "codeCommune": "53140", - "libelleAcheminement": "LOUVERNE", - "nomCommune": "LOUVERNE" - }, - { - "codePostal": "66320", - "codeCommune": "66079", - "libelleAcheminement": "FINESTRET", - "nomCommune": "FINESTRET" - }, - { - "codePostal": "61120", - "codeCommune": "61089", - "libelleAcheminement": "CHAMPOSOULT", - "nomCommune": "CHAMPOSOULT" - }, - { - "codePostal": "28700", - "codeCommune": "28013", - "libelleAcheminement": "AUNAY SOUS AUNEAU", - "nomCommune": "AUNAY SOUS AUNEAU" - }, - { - "codePostal": "53250", - "codeCommune": "53142", - "libelleAcheminement": "MADRE", - "nomCommune": "MADRE" - }, - { - "codePostal": "66210", - "codeCommune": "66082", - "libelleAcheminement": "FORMIGUERES", - "nomCommune": "FORMIGUERES" - }, - { - "codePostal": "61700", - "codeCommune": "61091", - "libelleAcheminement": "CHAMPSECRET", - "nomCommune": "CHAMPSECRET" - }, - { - "codePostal": "28300", - "codeCommune": "28022", - "libelleAcheminement": "BAILLEAU L EVEQUE", - "nomCommune": "BAILLEAU L EVEQUE" - }, - { - "codePostal": "53170", - "codeCommune": "53143", - "libelleAcheminement": "MAISONCELLES DU MAINE", - "nomCommune": "MAISONCELLES DU MAINE" - }, - { - "codePostal": "66220", - "codeCommune": "66083", - "libelleAcheminement": "FOSSE", - "nomCommune": "FOSSE" - }, - { - "codePostal": "61140", - "codeCommune": "61096", - "libelleAcheminement": "RIVES D ANDAINE", - "nomCommune": "RIVES D ANDAINE" - }, - { - "codePostal": "28140", - "codeCommune": "28028", - "libelleAcheminement": "BAZOCHES EN DUNOIS", - "nomCommune": "BAZOCHES EN DUNOIS" - }, - { - "codePostal": "53200", - "codeCommune": "53145", - "libelleAcheminement": "MARIGNE PEUTON", - "nomCommune": "MARIGNE PEUTON" - }, - { - "codePostal": "66820", - "codeCommune": "66085", - "libelleAcheminement": "FUILLA", - "nomCommune": "FUILLA" - }, - { - "codePostal": "61410", - "codeCommune": "61096", - "libelleAcheminement": "RIVES D ANDAINE", - "nomCommune": "RIVES D ANDAINE" - }, - { - "codePostal": "28270", - "codeCommune": "28030", - "libelleAcheminement": "BEAUCHE", - "nomCommune": "BEAUCHE" + "codePostal": "34570", + "codeCommune": "34179", + "libelleAcheminement": "MURVIEL LES MONTPELLIER", + "nomCommune": "MURVIEL LES MONTPELLIER" }, { - "codePostal": "53100", - "codeCommune": "53147", - "libelleAcheminement": "MAYENNE", - "nomCommune": "MAYENNE" + "codePostal": "24350", + "codeCommune": "24286", + "libelleAcheminement": "MONTAGRIER", + "nomCommune": "MONTAGRIER" }, { - "codePostal": "66320", - "codeCommune": "66086", - "libelleAcheminement": "GLORIANES", - "nomCommune": "GLORIANES" + "codePostal": "25120", + "codeCommune": "25433", + "libelleAcheminement": "ORGEANS BLANCHEFONTAINE", + "nomCommune": "ORGEANS BLANCHEFONTAINE" }, { - "codePostal": "61230", - "codeCommune": "61103", - "libelleAcheminement": "CHAUMONT", - "nomCommune": "CHAUMONT" + "codePostal": "34270", + "codeCommune": "34297", + "libelleAcheminement": "SAUTEYRARGUES", + "nomCommune": "SAUTEYRARGUES" }, { - "codePostal": "28480", - "codeCommune": "28031", - "libelleAcheminement": "BEAUMONT LES AUTELS", - "nomCommune": "BEAUMONT LES AUTELS" + "codePostal": "34800", + "codeCommune": "34180", + "libelleAcheminement": "NEBIAN", + "nomCommune": "NEBIAN" }, { - "codePostal": "53200", - "codeCommune": "53150", - "libelleAcheminement": "MENIL", - "nomCommune": "MENIL" + "codePostal": "24230", + "codeCommune": "24289", + "libelleAcheminement": "MONTCARET", + "nomCommune": "MONTCARET" }, { - "codePostal": "66360", - "codeCommune": "66102", - "libelleAcheminement": "MANTET", - "nomCommune": "MANTET" + "codePostal": "25440", + "codeCommune": "25450", + "libelleAcheminement": "PESSANS", + "nomCommune": "PESSANS" }, { - "codePostal": "61110", - "codeCommune": "61116", - "libelleAcheminement": "SABLONS SUR HUISNE", - "nomCommune": "SABLONS SUR HUISNE" + "codePostal": "34330", + "codeCommune": "34305", + "libelleAcheminement": "LE SOULIE", + "nomCommune": "LE SOULIE" }, { - "codePostal": "28150", - "codeCommune": "28032", - "libelleAcheminement": "BEAUVILLIERS", - "nomCommune": "BEAUVILLIERS" + "codePostal": "34320", + "codeCommune": "34181", + "libelleAcheminement": "NEFFIES", + "nomCommune": "NEFFIES" }, { - "codePostal": "53220", - "codeCommune": "53154", - "libelleAcheminement": "MONTAUDIN", - "nomCommune": "MONTAUDIN" + "codePostal": "24700", + "codeCommune": "24294", + "libelleAcheminement": "MONTPON MENESTEROL", + "nomCommune": "MONTPON MENESTEROL" }, { - "codePostal": "66320", - "codeCommune": "66103", - "libelleAcheminement": "MARQUIXANES", - "nomCommune": "MARQUIXANES" + "codePostal": "25160", + "codeCommune": "25459", + "libelleAcheminement": "LA PLANEE", + "nomCommune": "LA PLANEE" }, { - "codePostal": "61230", - "codeCommune": "61122", - "libelleAcheminement": "COULMER", - "nomCommune": "COULMER" + "codePostal": "34700", + "codeCommune": "34316", + "libelleAcheminement": "USCLAS DU BOSC", + "nomCommune": "USCLAS DU BOSC" }, { - "codePostal": "28190", - "codeCommune": "28040", - "libelleAcheminement": "BILLANCELLES", - "nomCommune": "BILLANCELLES" + "codePostal": "34440", + "codeCommune": "34183", + "libelleAcheminement": "NISSAN LEZ ENSERUNE", + "nomCommune": "NISSAN LEZ ENSERUNE" }, { - "codePostal": "53320", - "codeCommune": "53158", - "libelleAcheminement": "MONTJEAN", - "nomCommune": "MONTJEAN" + "codePostal": "24110", + "codeCommune": "24295", + "libelleAcheminement": "MONTREM", + "nomCommune": "MONTREM" }, { - "codePostal": "66200", - "codeCommune": "66114", - "libelleAcheminement": "MONTESCOT", - "nomCommune": "MONTESCOT" + "codePostal": "25150", + "codeCommune": "25463", + "libelleAcheminement": "PONT DE ROIDE VERMONDANS", + "nomCommune": "PONT DE ROIDE VERMONDANS" }, { - "codePostal": "61160", - "codeCommune": "61123", - "libelleAcheminement": "COULONCES", - "nomCommune": "COULONCES" + "codePostal": "34270", + "codeCommune": "34318", + "libelleAcheminement": "VACQUIERES", + "nomCommune": "VACQUIERES" }, { - "codePostal": "28120", - "codeCommune": "28041", - "libelleAcheminement": "BLANDAINVILLE", - "nomCommune": "BLANDAINVILLE" + "codePostal": "34390", + "codeCommune": "34187", + "libelleAcheminement": "OLARGUES", + "nomCommune": "OLARGUES" }, { - "codePostal": "53150", - "codeCommune": "53161", - "libelleAcheminement": "MONTSURS", - "nomCommune": "MONTSURS" + "codePostal": "24250", + "codeCommune": "24300", + "libelleAcheminement": "NABIRAT", + "nomCommune": "NABIRAT" }, { - "codePostal": "66360", - "codeCommune": "66125", - "libelleAcheminement": "OLETTE", - "nomCommune": "OLETTE" + "codePostal": "25410", + "codeCommune": "25466", + "libelleAcheminement": "POUILLEY FRANCAIS", + "nomCommune": "POUILLEY FRANCAIS" }, { - "codePostal": "61170", - "codeCommune": "61126", - "libelleAcheminement": "COULONGES SUR SARTHE", - "nomCommune": "COULONGES SUR SARTHE" + "codePostal": "34270", + "codeCommune": "34322", + "libelleAcheminement": "VALFLAUNES", + "nomCommune": "VALFLAUNES" }, { - "codePostal": "28340", - "codeCommune": "28046", - "libelleAcheminement": "BOISSY LES PERCHE", - "nomCommune": "BOISSY LES PERCHE" + "codePostal": "34250", + "codeCommune": "34192", + "libelleAcheminement": "PALAVAS LES FLOTS", + "nomCommune": "PALAVAS LES FLOTS" }, { - "codePostal": "53150", - "codeCommune": "53163", - "libelleAcheminement": "NEAU", - "nomCommune": "NEAU" + "codePostal": "24460", + "codeCommune": "24308", + "libelleAcheminement": "NEGRONDES", + "nomCommune": "NEGRONDES" }, { - "codePostal": "66000", - "codeCommune": "66136", - "libelleAcheminement": "PERPIGNAN", - "nomCommune": "PERPIGNAN" + "codePostal": "25550", + "codeCommune": "25469", + "libelleAcheminement": "PRESENTEVILLERS", + "nomCommune": "PRESENTEVILLERS" }, { - "codePostal": "61120", - "codeCommune": "61139", - "libelleAcheminement": "CROUTTES", - "nomCommune": "CROUTTES" + "codePostal": "34800", + "codeCommune": "34323", + "libelleAcheminement": "VALMASCLE", + "nomCommune": "VALMASCLE" }, { - "codePostal": "28360", - "codeCommune": "28048", - "libelleAcheminement": "LA BOURDINIERE ST LOUP", - "nomCommune": "LA BOURDINIERE ST LOUP" + "codePostal": "34800", + "codeCommune": "34197", + "libelleAcheminement": "PERET", + "nomCommune": "PERET" }, { - "codePostal": "53400", - "codeCommune": "53165", - "libelleAcheminement": "NIAFLES", - "nomCommune": "NIAFLES" + "codePostal": "24510", + "codeCommune": "24318", + "libelleAcheminement": "PAUNAT", + "nomCommune": "PAUNAT" }, { - "codePostal": "66480", - "codeCommune": "66137", - "libelleAcheminement": "LE PERTHUS", - "nomCommune": "LE PERTHUS" + "codePostal": "25250", + "codeCommune": "25470", + "libelleAcheminement": "LA PRETIERE", + "nomCommune": "LA PRETIERE" }, { - "codePostal": "61300", - "codeCommune": "61140", - "libelleAcheminement": "CRULAI", - "nomCommune": "CRULAI" + "codePostal": "34290", + "codeCommune": "34325", + "libelleAcheminement": "VALROS", + "nomCommune": "VALROS" }, { - "codePostal": "28170", - "codeCommune": "28053", - "libelleAcheminement": "LE BOULLAY LES DEUX EGLISES", - "nomCommune": "LE BOULLAY LES DEUX EGLISES" + "codePostal": "34470", + "codeCommune": "34198", + "libelleAcheminement": "PEROLS", + "nomCommune": "PEROLS" }, { - "codePostal": "53970", - "codeCommune": "53168", - "libelleAcheminement": "NUILLE SUR VICOIN", - "nomCommune": "NUILLE SUR VICOIN" + "codePostal": "24600", + "codeCommune": "24323", + "libelleAcheminement": "PETIT BERSAC", + "nomCommune": "PETIT BERSAC" }, { - "codePostal": "66730", - "codeCommune": "66139", - "libelleAcheminement": "PEZILLA DE CONFLENT", - "nomCommune": "PEZILLA DE CONFLENT" + "codePostal": "25640", + "codeCommune": "25474", + "libelleAcheminement": "LE PUY", + "nomCommune": "LE PUY" }, { - "codePostal": "61150", - "codeCommune": "61153", - "libelleAcheminement": "ECOUCHE LES VALLEES", - "nomCommune": "ECOUCHE LES VALLEES" + "codePostal": "34230", + "codeCommune": "34328", + "libelleAcheminement": "VENDEMIAN", + "nomCommune": "VENDEMIAN" }, { - "codePostal": "28210", - "codeCommune": "28055", - "libelleAcheminement": "LE BOULLAY THIERRY", - "nomCommune": "LE BOULLAY THIERRY" + "codePostal": "34700", + "codeCommune": "34205", + "libelleAcheminement": "LES PLANS", + "nomCommune": "LES PLANS" }, { - "codePostal": "53100", - "codeCommune": "53174", - "libelleAcheminement": "PARIGNE SUR BRAYE", - "nomCommune": "PARIGNE SUR BRAYE" + "codePostal": "33220", + "codeCommune": "24335", + "libelleAcheminement": "PORT STE FOY ET PONCHAPT", + "nomCommune": "PORT STE FOY ET PONCHAPT" }, { - "codePostal": "66370", - "codeCommune": "66140", - "libelleAcheminement": "PEZILLA LA RIVIERE", - "nomCommune": "PEZILLA LA RIVIERE" + "codePostal": "25440", + "codeCommune": "25475", + "libelleAcheminement": "QUINGEY", + "nomCommune": "QUINGEY" }, { - "codePostal": "61150", - "codeCommune": "61153", - "libelleAcheminement": "ECOUCHE LES VALLEES", - "nomCommune": "ECOUCHE LES VALLEES" + "codePostal": "34500", + "codeCommune": "34336", + "libelleAcheminement": "VILLENEUVE LES BEZIERS", + "nomCommune": "VILLENEUVE LES BEZIERS" }, { - "codePostal": "28410", - "codeCommune": "28056", - "libelleAcheminement": "BOUTIGNY PROUAIS", - "nomCommune": "BOUTIGNY PROUAIS" + "codePostal": "34230", + "codeCommune": "34210", + "libelleAcheminement": "LE POUGET", + "nomCommune": "LE POUGET" }, { - "codePostal": "53360", - "codeCommune": "53186", - "libelleAcheminement": "QUELAINES ST GAULT", - "nomCommune": "QUELAINES ST GAULT" + "codePostal": "24150", + "codeCommune": "24338", + "libelleAcheminement": "PRESSIGNAC VICQ", + "nomCommune": "PRESSIGNAC VICQ" }, { - "codePostal": "66500", - "codeCommune": "66149", - "libelleAcheminement": "PRADES", - "nomCommune": "PRADES" + "codePostal": "25430", + "codeCommune": "25478", + "libelleAcheminement": "RANDEVILLERS", + "nomCommune": "RANDEVILLERS" }, { - "codePostal": "61150", - "codeCommune": "61153", - "libelleAcheminement": "ECOUCHE LES VALLEES", - "nomCommune": "ECOUCHE LES VALLEES" + "codePostal": "34800", + "codeCommune": "34338", + "libelleAcheminement": "VILLENEUVETTE", + "nomCommune": "VILLENEUVETTE" }, { - "codePostal": "28210", - "codeCommune": "28058", - "libelleAcheminement": "BRECHAMPS", - "nomCommune": "BRECHAMPS" + "codePostal": "34700", + "codeCommune": "34212", + "libelleAcheminement": "POUJOLS", + "nomCommune": "POUJOLS" }, { - "codePostal": "53110", - "codeCommune": "53189", - "libelleAcheminement": "RENNES EN GRENOUILLES", - "nomCommune": "RENNES EN GRENOUILLES" + "codePostal": "24140", + "codeCommune": "24345", + "libelleAcheminement": "QUEYSSAC", + "nomCommune": "QUEYSSAC" }, { - "codePostal": "66730", - "codeCommune": "66151", - "libelleAcheminement": "PRATS DE SOURNIA", - "nomCommune": "PRATS DE SOURNIA" + "codePostal": "25370", + "codeCommune": "25494", + "libelleAcheminement": "ROCHEJEAN", + "nomCommune": "ROCHEJEAN" }, { - "codePostal": "61500", - "codeCommune": "61164", - "libelleAcheminement": "LA FERRIERE BECHET", - "nomCommune": "LA FERRIERE BECHET" + "codePostal": "34360", + "codeCommune": "34339", + "libelleAcheminement": "VILLESPASSANS", + "nomCommune": "VILLESPASSANS" }, { - "codePostal": "28160", - "codeCommune": "28061", - "libelleAcheminement": "BROU", - "nomCommune": "BROU" + "codePostal": "34560", + "codeCommune": "34213", + "libelleAcheminement": "POUSSAN", + "nomCommune": "POUSSAN" }, { - "codePostal": "53300", - "codeCommune": "53216", - "libelleAcheminement": "ST FRAIMBAULT DE PRIERES", - "nomCommune": "ST FRAIMBAULT DE PRIERES" + "codePostal": "24500", + "codeCommune": "24348", + "libelleAcheminement": "RAZAC D EYMET", + "nomCommune": "RAZAC D EYMET" }, { - "codePostal": "66210", - "codeCommune": "66154", - "libelleAcheminement": "PUYVALADOR", - "nomCommune": "PUYVALADOR" + "codePostal": "25440", + "codeCommune": "25500", + "libelleAcheminement": "RONCHAUX", + "nomCommune": "RONCHAUX" }, { - "codePostal": "61420", - "codeCommune": "61165", - "libelleAcheminement": "LA FERRIERE BOCHARD", - "nomCommune": "LA FERRIERE BOCHARD" + "codePostal": "34380", + "codeCommune": "34343", + "libelleAcheminement": "VIOLS LE FORT", + "nomCommune": "VIOLS LE FORT" }, { - "codePostal": "28240", - "codeCommune": "28071", - "libelleAcheminement": "CHAMPROND EN GATINE", - "nomCommune": "CHAMPROND EN GATINE" + "codePostal": "34480", + "codeCommune": "34214", + "libelleAcheminement": "POUZOLLES", + "nomCommune": "POUZOLLES" }, { - "codePostal": "53240", - "codeCommune": "53224", - "libelleAcheminement": "ST GERMAIN LE FOUILLOUX", - "nomCommune": "ST GERMAIN LE FOUILLOUX" + "codePostal": "24430", + "codeCommune": "24350", + "libelleAcheminement": "RAZAC SUR L ISLE", + "nomCommune": "RAZAC SUR L ISLE" }, { - "codePostal": "66360", - "codeCommune": "66157", - "libelleAcheminement": "RAILLEU", - "nomCommune": "RAILLEU" + "codePostal": "25410", + "codeCommune": "25502", + "libelleAcheminement": "ROSET FLUANS", + "nomCommune": "ROSET FLUANS" }, { - "codePostal": "61390", - "codeCommune": "61166", - "libelleAcheminement": "FERRIERES LA VERRERIE", - "nomCommune": "FERRIERES LA VERRERIE" + "codePostal": "35150", + "codeCommune": "35002", + "libelleAcheminement": "AMANLIS", + "nomCommune": "AMANLIS" }, { - "codePostal": "28700", - "codeCommune": "28073", - "libelleAcheminement": "CHAMPSERU", - "nomCommune": "CHAMPSERU" + "codePostal": "34600", + "codeCommune": "34216", + "libelleAcheminement": "LE PRADAL", + "nomCommune": "LE PRADAL" }, { - "codePostal": "53110", - "codeCommune": "53235", - "libelleAcheminement": "STE MARIE DU BOIS", - "nomCommune": "STE MARIE DU BOIS" + "codePostal": "24600", + "codeCommune": "24352", + "libelleAcheminement": "RIBERAC", + "nomCommune": "RIBERAC" }, { - "codePostal": "66750", - "codeCommune": "66171", - "libelleAcheminement": "ST CYPRIEN", - "nomCommune": "ST CYPRIEN" + "codePostal": "25680", + "codeCommune": "25505", + "libelleAcheminement": "ROUGEMONT", + "nomCommune": "ROUGEMONT" }, { - "codePostal": "61470", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" + "codePostal": "35560", + "codeCommune": "35004", + "libelleAcheminement": "VAL COUESNON", + "nomCommune": "VAL COUESNON" }, { - "codePostal": "28330", - "codeCommune": "28080", - "libelleAcheminement": "CHARBONNIERES", - "nomCommune": "CHARBONNIERES" + "codePostal": "34220", + "codeCommune": "34228", + "libelleAcheminement": "RIEUSSEC", + "nomCommune": "RIEUSSEC" }, { - "codePostal": "53500", - "codeCommune": "53245", - "libelleAcheminement": "ST PIERRE DES LANDES", - "nomCommune": "ST PIERRE DES LANDES" + "codePostal": "24170", + "codeCommune": "24360", + "libelleAcheminement": "SAGELAT", + "nomCommune": "SAGELAT" }, { - "codePostal": "66510", - "codeCommune": "66176", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "25210", + "codeCommune": "25512", + "libelleAcheminement": "LE RUSSEY", + "nomCommune": "LE RUSSEY" }, { - "codePostal": "61550", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" + "codePostal": "35600", + "codeCommune": "35013", + "libelleAcheminement": "BAINS SUR OUST", + "nomCommune": "BAINS SUR OUST" }, { - "codePostal": "28500", - "codeCommune": "28082", - "libelleAcheminement": "CHARPONT", - "nomCommune": "CHARPONT" + "codePostal": "34220", + "codeCommune": "34229", + "libelleAcheminement": "RIOLS", + "nomCommune": "RIOLS" }, { - "codePostal": "53270", - "codeCommune": "53248", - "libelleAcheminement": "ST PIERRE SUR ERVE", - "nomCommune": "ST PIERRE SUR ERVE" + "codePostal": "24520", + "codeCommune": "24361", + "libelleAcheminement": "ST AGNE", + "nomCommune": "ST AGNE" }, { - "codePostal": "66260", - "codeCommune": "66179", - "libelleAcheminement": "ST LAURENT DE CERDANS", - "nomCommune": "ST LAURENT DE CERDANS" + "codePostal": "25270", + "codeCommune": "25513", + "libelleAcheminement": "STE ANNE", + "nomCommune": "STE ANNE" }, { - "codePostal": "61550", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" + "codePostal": "35680", + "codeCommune": "35014", + "libelleAcheminement": "BAIS", + "nomCommune": "BAIS" }, { - "codePostal": "28130", - "codeCommune": "28084", - "libelleAcheminement": "CHARTAINVILLIERS", - "nomCommune": "CHARTAINVILLIERS" + "codePostal": "34650", + "codeCommune": "34233", + "libelleAcheminement": "ROQUEREDONDE", + "nomCommune": "ROQUEREDONDE" }, { - "codePostal": "53160", - "codeCommune": "53249", - "libelleAcheminement": "VIMARTIN SUR ORTHE", - "nomCommune": "VIMARTIN SUR ORTHE" + "codePostal": "24260", + "codeCommune": "24377", + "libelleAcheminement": "ST AVIT DE VIALARD", + "nomCommune": "ST AVIT DE VIALARD" }, { - "codePostal": "66800", - "codeCommune": "66181", - "libelleAcheminement": "STE LEOCADIE", - "nomCommune": "STE LEOCADIE" + "codePostal": "25520", + "codeCommune": "25517", + "libelleAcheminement": "ST GORGON MAIN", + "nomCommune": "ST GORGON MAIN" }, { - "codePostal": "61550", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" + "codePostal": "35500", + "codeCommune": "35015", + "libelleAcheminement": "BALAZE", + "nomCommune": "BALAZE" }, { - "codePostal": "28120", - "codeCommune": "28095", - "libelleAcheminement": "CHAUFFOURS", - "nomCommune": "CHAUFFOURS" + "codePostal": "34320", + "codeCommune": "34237", + "libelleAcheminement": "ROUJAN", + "nomCommune": "ROUJAN" }, { - "codePostal": "53540", - "codeCommune": "53250", - "libelleAcheminement": "ST POIX", - "nomCommune": "ST POIX" + "codePostal": "24540", + "codeCommune": "24378", + "libelleAcheminement": "ST AVIT RIVIERE", + "nomCommune": "ST AVIT RIVIERE" }, { - "codePostal": "66130", - "codeCommune": "66185", - "libelleAcheminement": "ST MICHEL DE LLOTES", - "nomCommune": "ST MICHEL DE LLOTES" + "codePostal": "25113", + "codeCommune": "25523", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "61210", - "codeCommune": "61189", - "libelleAcheminement": "GIEL COURTEILLES", - "nomCommune": "GIEL COURTEILLES" + "codePostal": "35420", + "codeCommune": "35018", + "libelleAcheminement": "LA BAZOUGE DU DESERT", + "nomCommune": "LA BAZOUGE DU DESERT" }, { - "codePostal": "28500", - "codeCommune": "28098", - "libelleAcheminement": "CHERISY", - "nomCommune": "CHERISY" + "codePostal": "34190", + "codeCommune": "34238", + "libelleAcheminement": "ST ANDRE DE BUEGES", + "nomCommune": "ST ANDRE DE BUEGES" }, { - "codePostal": "53160", - "codeCommune": "53256", - "libelleAcheminement": "ST THOMAS DE COURCERIERS", - "nomCommune": "ST THOMAS DE COURCERIERS" + "codePostal": "24700", + "codeCommune": "24380", + "libelleAcheminement": "ST BARTHELEMY DE BELLEGARDE", + "nomCommune": "ST BARTHELEMY DE BELLEGARDE" }, { - "codePostal": "66280", - "codeCommune": "66189", - "libelleAcheminement": "SALEILLES", - "nomCommune": "SALEILLES" + "codePostal": "25260", + "codeCommune": "25524", + "libelleAcheminement": "ST MAURICE COLOMBIER", + "nomCommune": "ST MAURICE COLOMBIER" }, { - "codePostal": "61310", - "codeCommune": "61190", - "libelleAcheminement": "GINAI", - "nomCommune": "GINAI" + "codePostal": "35830", + "codeCommune": "35024", + "libelleAcheminement": "BETTON", + "nomCommune": "BETTON" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "34160", + "codeCommune": "34242", + "libelleAcheminement": "ST BAUZILLE DE MONTMEL", + "nomCommune": "ST BAUZILLE DE MONTMEL" }, { - "codePostal": "53390", - "codeCommune": "53259", - "libelleAcheminement": "SENONNES", - "nomCommune": "SENONNES" + "codePostal": "24560", + "codeCommune": "24385", + "libelleAcheminement": "ST CERNIN DE LABARDE", + "nomCommune": "ST CERNIN DE LABARDE" }, { - "codePostal": "66360", - "codeCommune": "66193", - "libelleAcheminement": "SERDINYA", - "nomCommune": "SERDINYA" + "codePostal": "25430", + "codeCommune": "25529", + "libelleAcheminement": "SANCEY", + "nomCommune": "SANCEY" }, { - "codePostal": "61240", - "codeCommune": "61192", - "libelleAcheminement": "GODISSON", - "nomCommune": "GODISSON" + "codePostal": "35360", + "codeCommune": "35027", + "libelleAcheminement": "BOISGERVILLY", + "nomCommune": "BOISGERVILLY" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "34670", + "codeCommune": "34244", + "libelleAcheminement": "ST BRES", + "nomCommune": "ST BRES" }, { - "codePostal": "53210", - "codeCommune": "53262", - "libelleAcheminement": "SOULGE SUR OUETTE", - "nomCommune": "SOULGE SUR OUETTE" + "codePostal": "24550", + "codeCommune": "24386", + "libelleAcheminement": "ST CERNIN DE L HERM", + "nomCommune": "ST CERNIN DE L HERM" }, { - "codePostal": "66400", - "codeCommune": "66199", - "libelleAcheminement": "TAILLET", - "nomCommune": "TAILLET" + "codePostal": "25330", + "codeCommune": "25533", + "libelleAcheminement": "SARAZ", + "nomCommune": "SARAZ" }, { - "codePostal": "61550", - "codeCommune": "61193", - "libelleAcheminement": "LA GONFRIERE", - "nomCommune": "LA GONFRIERE" + "codePostal": "35270", + "codeCommune": "35029", + "libelleAcheminement": "BONNEMAIN", + "nomCommune": "BONNEMAIN" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "34400", + "codeCommune": "34246", + "libelleAcheminement": "ENTRE VIGNES", + "nomCommune": "ENTRE VIGNES" }, { - "codePostal": "53270", - "codeCommune": "53264", - "libelleAcheminement": "THORIGNE EN CHARNIE", - "nomCommune": "THORIGNE EN CHARNIE" + "codePostal": "24250", + "codeCommune": "24395", + "libelleAcheminement": "ST CYBRANET", + "nomCommune": "ST CYBRANET" }, { - "codePostal": "66320", - "codeCommune": "66201", - "libelleAcheminement": "TARERACH", - "nomCommune": "TARERACH" + "codePostal": "25110", + "codeCommune": "25538", + "libelleAcheminement": "SECHIN", + "nomCommune": "SECHIN" }, { - "codePostal": "61150", - "codeCommune": "61194", - "libelleAcheminement": "MONTS SUR ORNE", - "nomCommune": "MONTS SUR ORNE" + "codePostal": "35320", + "codeCommune": "35030", + "libelleAcheminement": "LA BOSSE DE BRETAGNE", + "nomCommune": "LA BOSSE DE BRETAGNE" }, { - "codePostal": "28480", - "codeCommune": "28105", - "libelleAcheminement": "COMBRES", - "nomCommune": "COMBRES" + "codePostal": "34270", + "codeCommune": "34248", + "libelleAcheminement": "STE CROIX DE QUINTILLARGUES", + "nomCommune": "STE CROIX DE QUINTILLARGUES" }, { - "codePostal": "53120", - "codeCommune": "53270", - "libelleAcheminement": "VIEUVY", - "nomCommune": "VIEUVY" + "codePostal": "24360", + "codeCommune": "24398", + "libelleAcheminement": "ST ESTEPHE", + "nomCommune": "ST ESTEPHE" }, { - "codePostal": "66720", - "codeCommune": "66205", - "libelleAcheminement": "TAUTAVEL", - "nomCommune": "TAUTAVEL" + "codePostal": "25230", + "codeCommune": "25539", + "libelleAcheminement": "SELONCOURT", + "nomCommune": "SELONCOURT" }, { - "codePostal": "61130", - "codeCommune": "61196", - "libelleAcheminement": "BELFORET EN PERCHE", - "nomCommune": "BELFORET EN PERCHE" + "codePostal": "35230", + "codeCommune": "35032", + "libelleAcheminement": "BOURGBARRE", + "nomCommune": "BOURGBARRE" }, { - "codePostal": "28200", - "codeCommune": "28106", - "libelleAcheminement": "CONIE MOLITARD", - "nomCommune": "CONIE MOLITARD" + "codePostal": "34160", + "codeCommune": "34256", + "libelleAcheminement": "ST GENIES DES MOURGUES", + "nomCommune": "ST GENIES DES MOURGUES" }, { - "codePostal": "54260", - "codeCommune": "54011", - "libelleAcheminement": "ALLONDRELLE LA MALMAISON", - "nomCommune": "ALLONDRELLE LA MALMAISON" + "codePostal": "24460", + "codeCommune": "24408", + "libelleAcheminement": "ST FRONT D ALEMPS", + "nomCommune": "ST FRONT D ALEMPS" }, { - "codePostal": "66440", - "codeCommune": "66212", - "libelleAcheminement": "TORREILLES", - "nomCommune": "TORREILLES" + "codePostal": "25330", + "codeCommune": "25545", + "libelleAcheminement": "SILLEY AMANCEY", + "nomCommune": "SILLEY AMANCEY" }, { - "codePostal": "61320", - "codeCommune": "61209", - "libelleAcheminement": "JOUE DU BOIS", - "nomCommune": "JOUE DU BOIS" + "codePostal": "35370", + "codeCommune": "35038", + "libelleAcheminement": "BREAL SOUS VITRE", + "nomCommune": "BREAL SOUS VITRE" }, { - "codePostal": "28630", - "codeCommune": "28107", - "libelleAcheminement": "CORANCEZ", - "nomCommune": "CORANCEZ" + "codePostal": "34610", + "codeCommune": "34260", + "libelleAcheminement": "ST GERVAIS SUR MARE", + "nomCommune": "ST GERVAIS SUR MARE" }, { - "codePostal": "54470", - "codeCommune": "54019", - "libelleAcheminement": "ANSAUVILLE", - "nomCommune": "ANSAUVILLE" + "codePostal": "24130", + "codeCommune": "24413", + "libelleAcheminement": "ST GEORGES BLANCANEIX", + "nomCommune": "ST GEORGES BLANCANEIX" }, { - "codePostal": "66340", - "codeCommune": "66220", - "libelleAcheminement": "VALCEBOLLERE", - "nomCommune": "VALCEBOLLERE" + "codePostal": "25470", + "codeCommune": "25559", + "libelleAcheminement": "THIEBOUHANS", + "nomCommune": "THIEBOUHANS" }, { - "codePostal": "61150", - "codeCommune": "61210", - "libelleAcheminement": "JOUE DU PLAIN", - "nomCommune": "JOUE DU PLAIN" + "codePostal": "35530", + "codeCommune": "35039", + "libelleAcheminement": "BRECE", + "nomCommune": "BRECE" }, { - "codePostal": "28140", - "codeCommune": "28108", - "libelleAcheminement": "CORMAINVILLE", - "nomCommune": "CORMAINVILLE" + "codePostal": "34150", + "codeCommune": "34261", + "libelleAcheminement": "ST GUILHEM LE DESERT", + "nomCommune": "ST GUILHEM LE DESERT" }, { - "codePostal": "54530", - "codeCommune": "54022", - "libelleAcheminement": "ARNAVILLE", - "nomCommune": "ARNAVILLE" + "codePostal": "24140", + "codeCommune": "24422", + "libelleAcheminement": "ST HILAIRE D ESTISSAC", + "nomCommune": "ST HILAIRE D ESTISSAC" }, { - "codePostal": "66320", - "codeCommune": "66221", - "libelleAcheminement": "VALMANYA", - "nomCommune": "VALMANYA" + "codePostal": "25640", + "codeCommune": "25566", + "libelleAcheminement": "LA TOUR DE SCAY", + "nomCommune": "LA TOUR DE SCAY" }, { - "codePostal": "61320", - "codeCommune": "61216", - "libelleAcheminement": "LA LANDE DE GOULT", - "nomCommune": "LA LANDE DE GOULT" + "codePostal": "35330", + "codeCommune": "35046", + "libelleAcheminement": "LES BRULAIS", + "nomCommune": "LES BRULAIS" }, { - "codePostal": "28500", - "codeCommune": "28117", - "libelleAcheminement": "CRECY COUVE", - "nomCommune": "CRECY COUVE" + "codePostal": "34360", + "codeCommune": "34269", + "libelleAcheminement": "ST JEAN DE MINERVOIS", + "nomCommune": "ST JEAN DE MINERVOIS" }, { - "codePostal": "54760", - "codeCommune": "54024", - "libelleAcheminement": "ARRAYE ET HAN", - "nomCommune": "ARRAYE ET HAN" + "codePostal": "24500", + "codeCommune": "24423", + "libelleAcheminement": "ST JULIEN INNOCENCE EULALIE", + "nomCommune": "ST JULIEN INNOCENCE EULALIE" }, { - "codePostal": "66300", - "codeCommune": "66226", - "libelleAcheminement": "VILLEMOLAQUE", - "nomCommune": "VILLEMOLAQUE" + "codePostal": "25620", + "codeCommune": "25569", + "libelleAcheminement": "TREPOT", + "nomCommune": "TREPOT" }, { - "codePostal": "61100", - "codeCommune": "61221", - "libelleAcheminement": "LANDIGOU", - "nomCommune": "LANDIGOU" + "codePostal": "35500", + "codeCommune": "35052", + "libelleAcheminement": "CHAMPEAUX", + "nomCommune": "CHAMPEAUX" }, { - "codePostal": "28160", - "codeCommune": "28127", - "libelleAcheminement": "DANGEAU", - "nomCommune": "DANGEAU" + "codePostal": "34390", + "codeCommune": "34273", + "libelleAcheminement": "ST MARTIN DE L ARCON", + "nomCommune": "ST MARTIN DE L ARCON" }, { - "codePostal": "54510", - "codeCommune": "54025", - "libelleAcheminement": "ART SUR MEURTHE", - "nomCommune": "ART SUR MEURTHE" + "codePostal": "24400", + "codeCommune": "24436", + "libelleAcheminement": "ST LAURENT DES HOMMES", + "nomCommune": "ST LAURENT DES HOMMES" }, { - "codePostal": "66610", - "codeCommune": "66228", - "libelleAcheminement": "VILLENEUVE LA RIVIERE", - "nomCommune": "VILLENEUVE LA RIVIERE" + "codePostal": "25680", + "codeCommune": "25572", + "libelleAcheminement": "TROUVANS", + "nomCommune": "TROUVANS" }, { - "codePostal": "61100", - "codeCommune": "61222", - "libelleAcheminement": "LANDISACQ", - "nomCommune": "LANDISACQ" + "codePostal": "35330", + "codeCommune": "35057", + "libelleAcheminement": "LA CHAPELLE BOUEXIC", + "nomCommune": "LA CHAPELLE BOUEXIC" }, { - "codePostal": "28200", - "codeCommune": "28132", - "libelleAcheminement": "DONNEMAIN ST MAMES", - "nomCommune": "DONNEMAIN ST MAMES" + "codePostal": "34520", + "codeCommune": "34278", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "54560", - "codeCommune": "54029", - "libelleAcheminement": "AUDUN LE ROMAN", - "nomCommune": "AUDUN LE ROMAN" + "codePostal": "24290", + "codeCommune": "24443", + "libelleAcheminement": "ST LEON SUR VEZERE", + "nomCommune": "ST LEON SUR VEZERE" }, { - "codePostal": "67490", - "codeCommune": "67006", - "libelleAcheminement": "ALTENHEIM", - "nomCommune": "ALTENHEIM" + "codePostal": "25340", + "codeCommune": "25574", + "libelleAcheminement": "UZELLE", + "nomCommune": "UZELLE" }, { - "codePostal": "61320", - "codeCommune": "61228", - "libelleAcheminement": "L OREE D ECOUVES", - "nomCommune": "L OREE D ECOUVES" + "codePostal": "35360", + "codeCommune": "35060", + "libelleAcheminement": "LA CHAPELLE DU LOU DU LAC", + "nomCommune": "LA CHAPELLE DU LOU DU LAC" }, { - "codePostal": "28230", - "codeCommune": "28135", - "libelleAcheminement": "DROUE SUR DROUETTE", - "nomCommune": "DROUE SUR DROUETTE" + "codePostal": "34230", + "codeCommune": "34281", + "libelleAcheminement": "ST PARGOIRE", + "nomCommune": "ST PARGOIRE" }, { - "codePostal": "54385", - "codeCommune": "54034", - "libelleAcheminement": "AVRAINVILLE", - "nomCommune": "AVRAINVILLE" + "codePostal": "24300", + "codeCommune": "24451", + "libelleAcheminement": "ST MARTIAL DE VALETTE", + "nomCommune": "ST MARTIAL DE VALETTE" }, { - "codePostal": "67130", - "codeCommune": "67027", - "libelleAcheminement": "BELMONT", - "nomCommune": "BELMONT" + "codePostal": "25220", + "codeCommune": "25575", + "libelleAcheminement": "VAIRE", + "nomCommune": "VAIRE" }, { - "codePostal": "61400", - "codeCommune": "61229", - "libelleAcheminement": "LOISAIL", - "nomCommune": "LOISAIL" + "codePostal": "35660", + "codeCommune": "35064", + "libelleAcheminement": "LA CHAPELLE DE BRAIN", + "nomCommune": "LA CHAPELLE DE BRAIN" }, { - "codePostal": "28500", - "codeCommune": "28136", - "libelleAcheminement": "ECLUZELLES", - "nomCommune": "ECLUZELLES" + "codePostal": "34520", + "codeCommune": "34283", + "libelleAcheminement": "ST PIERRE DE LA FAGE", + "nomCommune": "ST PIERRE DE LA FAGE" }, { - "codePostal": "54210", - "codeCommune": "54037", - "libelleAcheminement": "AZELOT", - "nomCommune": "AZELOT" + "codePostal": "24610", + "codeCommune": "24454", + "libelleAcheminement": "ST MARTIN DE GURSON", + "nomCommune": "ST MARTIN DE GURSON" }, { - "codePostal": "67210", - "codeCommune": "67031", - "libelleAcheminement": "BERNARDSWILLER", - "nomCommune": "BERNARDSWILLER" + "codePostal": "25220", + "codeCommune": "25575", + "libelleAcheminement": "VAIRE", + "nomCommune": "VAIRE" }, { - "codePostal": "61290", - "codeCommune": "61230", - "libelleAcheminement": "LONGNY LES VILLAGES", - "nomCommune": "LONGNY LES VILLAGES" + "codePostal": "35590", + "codeCommune": "35065", + "libelleAcheminement": "LA CHAPELLE THOUARAULT", + "nomCommune": "LA CHAPELLE THOUARAULT" }, { - "codePostal": "28230", - "codeCommune": "28140", - "libelleAcheminement": "EPERNON", - "nomCommune": "EPERNON" + "codePostal": "34400", + "codeCommune": "34288", + "libelleAcheminement": "ST SERIES", + "nomCommune": "ST SERIES" }, { - "codePostal": "54170", - "codeCommune": "54041", - "libelleAcheminement": "BAGNEUX", - "nomCommune": "BAGNEUX" + "codePostal": "24600", + "codeCommune": "24460", + "libelleAcheminement": "ST MEARD DE DRONE", + "nomCommune": "ST MEARD DE DRONE" }, { - "codePostal": "67370", - "codeCommune": "67034", - "libelleAcheminement": "BERSTETT", - "nomCommune": "BERSTETT" + "codePostal": "25640", + "codeCommune": "25579", + "libelleAcheminement": "VAL DE ROULANS", + "nomCommune": "VAL DE ROULANS" }, { - "codePostal": "61290", - "codeCommune": "61230", - "libelleAcheminement": "LONGNY LES VILLAGES", - "nomCommune": "LONGNY LES VILLAGES" + "codePostal": "35250", + "codeCommune": "35067", + "libelleAcheminement": "CHASNE SUR ILLET", + "nomCommune": "CHASNE SUR ILLET" }, { - "codePostal": "28120", - "codeCommune": "28141", - "libelleAcheminement": "ERMENONVILLE LA GRANDE", - "nomCommune": "ERMENONVILLE LA GRANDE" + "codePostal": "34330", + "codeCommune": "34293", + "libelleAcheminement": "LA SALVETAT SUR AGOUT", + "nomCommune": "LA SALVETAT SUR AGOUT" }, { - "codePostal": "54170", - "codeCommune": "54047", - "libelleAcheminement": "BARISEY LA COTE", - "nomCommune": "BARISEY LA COTE" + "codePostal": "24610", + "codeCommune": "24461", + "libelleAcheminement": "ST MEARD DE GURCON", + "nomCommune": "ST MEARD DE GURCON" }, { - "codePostal": "67360", - "codeCommune": "67037", - "libelleAcheminement": "BIBLISHEIM", - "nomCommune": "BIBLISHEIM" + "codePostal": "25380", + "codeCommune": "25588", + "libelleAcheminement": "VAUCLUSE", + "nomCommune": "VAUCLUSE" }, { - "codePostal": "61150", - "codeCommune": "61237", - "libelleAcheminement": "LOUGE SUR MAIRE", - "nomCommune": "LOUGE SUR MAIRE" + "codePostal": "35220", + "codeCommune": "35068", + "libelleAcheminement": "CHATEAUBOURG", + "nomCommune": "CHATEAUBOURG" }, { - "codePostal": "28800", - "codeCommune": "28153", - "libelleAcheminement": "FLACEY", - "nomCommune": "FLACEY" + "codePostal": "34410", + "codeCommune": "34299", + "libelleAcheminement": "SERIGNAN", + "nomCommune": "SERIGNAN" }, { - "codePostal": "54370", - "codeCommune": "54050", - "libelleAcheminement": "BATHELEMONT", - "nomCommune": "BATHELEMONT" + "codePostal": "24400", + "codeCommune": "24462", + "libelleAcheminement": "ST MEDARD DE MUSSIDAN", + "nomCommune": "ST MEDARD DE MUSSIDAN" }, { - "codePostal": "67170", - "codeCommune": "67039", - "libelleAcheminement": "BILWISHEIM", - "nomCommune": "BILWISHEIM" + "codePostal": "25360", + "codeCommune": "25590", + "libelleAcheminement": "VAUDRIVILLERS", + "nomCommune": "VAUDRIVILLERS" }, { - "codePostal": "61500", - "codeCommune": "61240", - "libelleAcheminement": "MACE", - "nomCommune": "MACE" + "codePostal": "35220", + "codeCommune": "35068", + "libelleAcheminement": "CHATEAUBOURG", + "nomCommune": "CHATEAUBOURG" }, { - "codePostal": "28240", - "codeCommune": "28156", - "libelleAcheminement": "FONTAINE SIMON", - "nomCommune": "FONTAINE SIMON" + "codePostal": "34600", + "codeCommune": "34308", + "libelleAcheminement": "TAUSSAC LA BILLIERE", + "nomCommune": "TAUSSAC LA BILLIERE" }, { - "codePostal": "54800", - "codeCommune": "54058", - "libelleAcheminement": "BECHAMPS", - "nomCommune": "BECHAMPS" + "codePostal": "24380", + "codeCommune": "24468", + "libelleAcheminement": "ST MICHEL DE VILLADEIX", + "nomCommune": "ST MICHEL DE VILLADEIX" }, { - "codePostal": "67600", - "codeCommune": "67040", - "libelleAcheminement": "BINDERNHEIM", - "nomCommune": "BINDERNHEIM" + "codePostal": "25110", + "codeCommune": "25604", + "libelleAcheminement": "VERNE", + "nomCommune": "VERNE" }, { - "codePostal": "61600", - "codeCommune": "61243", - "libelleAcheminement": "MAGNY LE DESERT", - "nomCommune": "MAGNY LE DESERT" + "codePostal": "35133", + "codeCommune": "35071", + "libelleAcheminement": "LE CHATELLIER", + "nomCommune": "LE CHATELLIER" }, { - "codePostal": "28630", - "codeCommune": "28158", - "libelleAcheminement": "FONTENAY SUR EURE", - "nomCommune": "FONTENAY SUR EURE" + "codePostal": "34820", + "codeCommune": "34309", + "libelleAcheminement": "TEYRAN", + "nomCommune": "TEYRAN" }, { - "codePostal": "54610", - "codeCommune": "54059", - "libelleAcheminement": "BELLEAU", - "nomCommune": "BELLEAU" + "codePostal": "24520", + "codeCommune": "24472", + "libelleAcheminement": "ST NEXANS", + "nomCommune": "ST NEXANS" }, { - "codePostal": "67140", - "codeCommune": "67060", - "libelleAcheminement": "BOURGHEIM", - "nomCommune": "BOURGHEIM" + "codePostal": "25580", + "codeCommune": "25605", + "libelleAcheminement": "VERNIERFONTAINE", + "nomCommune": "VERNIERFONTAINE" }, { - "codePostal": "61230", - "codeCommune": "61252", - "libelleAcheminement": "MARDILLY", - "nomCommune": "MARDILLY" + "codePostal": "35310", + "codeCommune": "35080", + "libelleAcheminement": "CINTRE", + "nomCommune": "CINTRE" }, { - "codePostal": "28300", - "codeCommune": "28163", - "libelleAcheminement": "FRESNAY LE GILMERT", - "nomCommune": "FRESNAY LE GILMERT" + "codePostal": "34490", + "codeCommune": "34310", + "libelleAcheminement": "THEZAN LES BEZIERS", + "nomCommune": "THEZAN LES BEZIERS" }, { - "codePostal": "54610", - "codeCommune": "54059", - "libelleAcheminement": "BELLEAU", - "nomCommune": "BELLEAU" + "codePostal": "24600", + "codeCommune": "24477", + "libelleAcheminement": "ST PARDOUX DE DRONE", + "nomCommune": "ST PARDOUX DE DRONE" }, { - "codePostal": "67220", - "codeCommune": "67063", - "libelleAcheminement": "BREITENBACH", - "nomCommune": "BREITENBACH" + "codePostal": "25430", + "codeCommune": "25607", + "libelleAcheminement": "VERNOIS LES BELVOIR", + "nomCommune": "VERNOIS LES BELVOIR" }, { - "codePostal": "61170", - "codeCommune": "61258", - "libelleAcheminement": "LE MELE SUR SARTHE", - "nomCommune": "LE MELE SUR SARTHE" + "codePostal": "35134", + "codeCommune": "35082", + "libelleAcheminement": "COESMES", + "nomCommune": "COESMES" }, { - "codePostal": "28500", - "codeCommune": "28170", - "libelleAcheminement": "GARANCIERES EN DROUAIS", - "nomCommune": "GARANCIERES EN DROUAIS" + "codePostal": "34230", + "codeCommune": "34313", + "libelleAcheminement": "TRESSAN", + "nomCommune": "TRESSAN" }, { - "codePostal": "54120", - "codeCommune": "54065", - "libelleAcheminement": "BERTRICHAMPS", - "nomCommune": "BERTRICHAMPS" + "codePostal": "24380", + "codeCommune": "24480", + "libelleAcheminement": "ST PAUL DE SERRE", + "nomCommune": "ST PAUL DE SERRE" }, { - "codePostal": "67160", - "codeCommune": "67074", - "libelleAcheminement": "CLEEBOURG", - "nomCommune": "CLEEBOURG" + "codePostal": "25270", + "codeCommune": "25621", + "libelleAcheminement": "VILLENEUVE D AMONT", + "nomCommune": "VILLENEUVE D AMONT" }, { - "codePostal": "61270", - "codeCommune": "61259", - "libelleAcheminement": "LE MENIL BERARD", - "nomCommune": "LE MENIL BERARD" + "codePostal": "35270", + "codeCommune": "35085", + "libelleAcheminement": "COMBOURG", + "nomCommune": "COMBOURG" }, { - "codePostal": "28140", - "codeCommune": "28190", - "libelleAcheminement": "GUILLONVILLE", - "nomCommune": "GUILLONVILLE" + "codePostal": "34520", + "codeCommune": "34317", + "libelleAcheminement": "LA VACQUERIE ST MARTIN CASTRIES", + "nomCommune": "LA VACQUERIE ET ST MARTIN DE CASTRIES" }, { - "codePostal": "54540", - "codeCommune": "54075", - "libelleAcheminement": "BIONVILLE", - "nomCommune": "BIONVILLE" + "codePostal": "24330", + "codeCommune": "24484", + "libelleAcheminement": "ST PIERRE DE CHIGNAC", + "nomCommune": "ST PIERRE DE CHIGNAC" }, { - "codePostal": "67510", - "codeCommune": "67075", - "libelleAcheminement": "CLIMBACH", - "nomCommune": "CLIMBACH" + "codePostal": "25110", + "codeCommune": "25626", + "libelleAcheminement": "VILLERS ST MARTIN", + "nomCommune": "VILLERS ST MARTIN" }, { - "codePostal": "61210", - "codeCommune": "61265", - "libelleAcheminement": "MENIL GONDOUIN", - "nomCommune": "MENIL GONDOUIN" + "codePostal": "35500", + "codeCommune": "35087", + "libelleAcheminement": "CORNILLE", + "nomCommune": "CORNILLE" }, { - "codePostal": "28480", - "codeCommune": "28192", - "libelleAcheminement": "HAPPONVILLIERS", - "nomCommune": "HAPPONVILLIERS" + "codePostal": "34320", + "codeCommune": "34319", + "libelleAcheminement": "VAILHAN", + "nomCommune": "VAILHAN" }, { - "codePostal": "54360", - "codeCommune": "54076", - "libelleAcheminement": "BLAINVILLE SUR L EAU", - "nomCommune": "BLAINVILLE SUR L EAU" + "codePostal": "24700", + "codeCommune": "24494", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "67310", - "codeCommune": "67085", - "libelleAcheminement": "DANGOLSHEIM", - "nomCommune": "DANGOLSHEIM" + "codePostal": "25110", + "codeCommune": "25629", + "libelleAcheminement": "VOILLANS", + "nomCommune": "VOILLANS" }, { - "codePostal": "61160", - "codeCommune": "61276", - "libelleAcheminement": "MERRI", - "nomCommune": "MERRI" + "codePostal": "35320", + "codeCommune": "35089", + "libelleAcheminement": "LA COUYERE", + "nomCommune": "LA COUYERE" }, { - "codePostal": "28310", - "codeCommune": "28199", - "libelleAcheminement": "JANVILLE EN BEAUCE", - "nomCommune": "JANVILLE EN BEAUCE" + "codePostal": "34570", + "codeCommune": "34320", + "libelleAcheminement": "VAILHAUQUES", + "nomCommune": "VAILHAUQUES" }, { - "codePostal": "54800", - "codeCommune": "54093", - "libelleAcheminement": "BRAINVILLE", - "nomCommune": "BRAINVILLE" + "codePostal": "24190", + "codeCommune": "24502", + "libelleAcheminement": "ST SEVERIN D ESTISSAC", + "nomCommune": "ST SEVERIN D ESTISSAC" }, { - "codePostal": "67350", - "codeCommune": "67087", - "libelleAcheminement": "DAUENDORF", - "nomCommune": "DAUENDORF" + "codePostal": "25320", + "codeCommune": "25631", + "libelleAcheminement": "VORGES LES PINS", + "nomCommune": "VORGES LES PINS" }, { - "codePostal": "61570", - "codeCommune": "61288", - "libelleAcheminement": "MONTMERREI", - "nomCommune": "MONTMERREI" + "codePostal": "35640", + "codeCommune": "35103", + "libelleAcheminement": "EANCE", + "nomCommune": "EANCE" }, { - "codePostal": "28250", - "codeCommune": "28200", - "libelleAcheminement": "JAUDRAIS", - "nomCommune": "JAUDRAIS" + "codePostal": "34350", + "codeCommune": "34324", + "libelleAcheminement": "VALRAS PLAGE", + "nomCommune": "VALRAS PLAGE" }, { - "codePostal": "54540", - "codeCommune": "54097", - "libelleAcheminement": "BREMENIL", - "nomCommune": "BREMENIL" + "codePostal": "24410", + "codeCommune": "24511", + "libelleAcheminement": "ST VINCENT JALMOUTIERS", + "nomCommune": "ST VINCENT JALMOUTIERS" }, { - "codePostal": "67490", - "codeCommune": "67089", - "libelleAcheminement": "DETTWILLER", - "nomCommune": "DETTWILLER" + "codePostal": "26150", + "codeCommune": "26001", + "libelleAcheminement": "SOLAURE EN DIOIS", + "nomCommune": "SOLAURE EN DIOIS" }, { - "codePostal": "61800", - "codeCommune": "61292", - "libelleAcheminement": "MONTSECRET CLAIREFOUGERE", - "nomCommune": "MONTSECRET CLAIREFOUGERE" + "codePostal": "35370", + "codeCommune": "35109", + "libelleAcheminement": "ETRELLES", + "nomCommune": "ETRELLES" }, { - "codePostal": "28310", - "codeCommune": "28210", - "libelleAcheminement": "LEVESVILLE LA CHENARD", - "nomCommune": "LEVESVILLE LA CHENARD" + "codePostal": "34220", + "codeCommune": "34326", + "libelleAcheminement": "VELIEUX", + "nomCommune": "VELIEUX" }, { - "codePostal": "54150", - "codeCommune": "54099", - "libelleAcheminement": "VAL DE BRIEY", - "nomCommune": "VAL DE BRIEY" + "codePostal": "24240", + "codeCommune": "24523", + "libelleAcheminement": "SAUSSIGNAC", + "nomCommune": "SAUSSIGNAC" }, { - "codePostal": "67360", - "codeCommune": "67093", - "libelleAcheminement": "DIEFFENBACH LES WOERTH", - "nomCommune": "DIEFFENBACH LES WOERTH" + "codePostal": "26140", + "codeCommune": "26002", + "libelleAcheminement": "ALBON", + "nomCommune": "ALBON" }, { - "codePostal": "61600", - "codeCommune": "61295", - "libelleAcheminement": "LA MOTTE FOUQUET", - "nomCommune": "LA MOTTE FOUQUET" + "codePostal": "35440", + "codeCommune": "35110", + "libelleAcheminement": "FEINS", + "nomCommune": "FEINS" }, { - "codePostal": "28210", - "codeCommune": "28213", - "libelleAcheminement": "LORMAYE", - "nomCommune": "LORMAYE" + "codePostal": "34110", + "codeCommune": "34333", + "libelleAcheminement": "VIC LA GARDIOLE", + "nomCommune": "VIC LA GARDIOLE" }, { - "codePostal": "54120", - "codeCommune": "54101", - "libelleAcheminement": "BROUVILLE", - "nomCommune": "BROUVILLE" + "codePostal": "24420", + "codeCommune": "24527", + "libelleAcheminement": "SAVIGNAC LES EGLISES", + "nomCommune": "SAVIGNAC LES EGLISES" }, { - "codePostal": "67430", - "codeCommune": "67095", - "libelleAcheminement": "DIEMERINGEN", - "nomCommune": "DIEMERINGEN" + "codePostal": "26300", + "codeCommune": "26004", + "libelleAcheminement": "ALIXAN", + "nomCommune": "ALIXAN" }, { - "codePostal": "61120", - "codeCommune": "61307", - "libelleAcheminement": "NEUVILLE SUR TOUQUES", - "nomCommune": "NEUVILLE SUR TOUQUES" + "codePostal": "35850", + "codeCommune": "35120", + "libelleAcheminement": "GEVEZE", + "nomCommune": "GEVEZE" }, { - "codePostal": "28240", - "codeCommune": "28214", - "libelleAcheminement": "LA LOUPE", - "nomCommune": "LA LOUPE" + "codePostal": "34750", + "codeCommune": "34337", + "libelleAcheminement": "VILLENEUVE LES MAGUELONE", + "nomCommune": "VILLENEUVE LES MAGUELONE" }, { - "codePostal": "54800", - "codeCommune": "54103", - "libelleAcheminement": "BRUVILLE", - "nomCommune": "BRUVILLE" + "codePostal": "24240", + "codeCommune": "24534", + "libelleAcheminement": "SIGOULES ET FLAUGEAC", + "nomCommune": "SIGOULES ET FLAUGEAC" }, { - "codePostal": "67117", - "codeCommune": "67102", - "libelleAcheminement": "DOSSENHEIM KOCHERSBERG", - "nomCommune": "DOSSENHEIM KOCHERSBERG" + "codePostal": "26400", + "codeCommune": "26006", + "libelleAcheminement": "ALLEX", + "nomCommune": "ALLEX" }, { - "codePostal": "61340", - "codeCommune": "61309", - "libelleAcheminement": "PERCHE EN NOCE", - "nomCommune": "PERCHE EN NOCE" + "codePostal": "35140", + "codeCommune": "35121", + "libelleAcheminement": "GOSNE", + "nomCommune": "GOSNE" }, { - "codePostal": "28480", - "codeCommune": "28219", - "libelleAcheminement": "LUIGNY", - "nomCommune": "LUIGNY" + "codePostal": "34400", + "codeCommune": "34340", + "libelleAcheminement": "VILLETELLE", + "nomCommune": "VILLETELLE" }, { - "codePostal": "54113", - "codeCommune": "54105", - "libelleAcheminement": "BULLIGNY", - "nomCommune": "BULLIGNY" + "codePostal": "24370", + "codeCommune": "24535", + "libelleAcheminement": "SIMEYROLS", + "nomCommune": "SIMEYROLS" }, { - "codePostal": "67160", - "codeCommune": "67104", - "libelleAcheminement": "DRACHENBRONN BIRLENBACH", - "nomCommune": "DRACHENBRONN BIRLENBACH" + "codePostal": "26200", + "codeCommune": "26008", + "libelleAcheminement": "ANCONE", + "nomCommune": "ANCONE" }, { - "codePostal": "61200", - "codeCommune": "61314", - "libelleAcheminement": "OCCAGNES", - "nomCommune": "OCCAGNES" + "codePostal": "35350", + "codeCommune": "35122", + "libelleAcheminement": "LA GOUESNIERE", + "nomCommune": "LA GOUESNIERE" }, { - "codePostal": "28360", - "codeCommune": "28222", - "libelleAcheminement": "LUPLANTE", - "nomCommune": "LUPLANTE" + "codePostal": "35250", + "codeCommune": "35003", + "libelleAcheminement": "ANDOUILLE NEUVILLE", + "nomCommune": "ANDOUILLE NEUVILLE" }, { - "codePostal": "54230", - "codeCommune": "54111", - "libelleAcheminement": "CHALIGNY", - "nomCommune": "CHALIGNY" + "codePostal": "24400", + "codeCommune": "24543", + "libelleAcheminement": "SOURZAC", + "nomCommune": "SOURZAC" }, { - "codePostal": "67410", - "codeCommune": "67106", - "libelleAcheminement": "DRUSENHEIM", - "nomCommune": "DRUSENHEIM" + "codePostal": "26340", + "codeCommune": "26015", + "libelleAcheminement": "AUBENASSON", + "nomCommune": "AUBENASSON" }, { - "codePostal": "61160", - "codeCommune": "61316", - "libelleAcheminement": "OMMOY", - "nomCommune": "OMMOY" + "codePostal": "35440", + "codeCommune": "35128", + "libelleAcheminement": "GUIPEL", + "nomCommune": "GUIPEL" }, { - "codePostal": "28170", - "codeCommune": "28226", - "libelleAcheminement": "MAILLEBOIS", - "nomCommune": "MAILLEBOIS" + "codePostal": "35370", + "codeCommune": "35006", + "libelleAcheminement": "ARGENTRE DU PLESSIS", + "nomCommune": "ARGENTRE DU PLESSIS" }, { - "codePostal": "54450", - "codeCommune": "54124", - "libelleAcheminement": "CHAZELLES SUR ALBE", - "nomCommune": "CHAZELLES SUR ALBE" + "codePostal": "24620", + "codeCommune": "24544", + "libelleAcheminement": "TAMNIES", + "nomCommune": "TAMNIES" }, { - "codePostal": "67360", - "codeCommune": "67110", - "libelleAcheminement": "DURRENBACH", - "nomCommune": "DURRENBACH" + "codePostal": "26340", + "codeCommune": "26017", + "libelleAcheminement": "AUCELON", + "nomCommune": "AUCELON" }, { - "codePostal": "61360", - "codeCommune": "61327", - "libelleAcheminement": "PERVENCHERES", - "nomCommune": "PERVENCHERES" + "codePostal": "35630", + "codeCommune": "35130", + "libelleAcheminement": "HEDE BAZOUGES", + "nomCommune": "HEDE BAZOUGES" }, { - "codePostal": "28170", - "codeCommune": "28226", - "libelleAcheminement": "MAILLEBOIS", - "nomCommune": "MAILLEBOIS" + "codePostal": "35560", + "codeCommune": "35019", + "libelleAcheminement": "BAZOUGES LA PEROUSE", + "nomCommune": "BAZOUGES LA PEROUSE" }, { - "codePostal": "54720", - "codeCommune": "54127", - "libelleAcheminement": "CHENIERES", - "nomCommune": "CHENIERES" + "codePostal": "24240", + "codeCommune": "24549", + "libelleAcheminement": "THENAC", + "nomCommune": "THENAC" }, { - "codePostal": "67120", - "codeCommune": "67112", - "libelleAcheminement": "DUTTLENHEIM", - "nomCommune": "DUTTLENHEIM" + "codePostal": "26340", + "codeCommune": "26019", + "libelleAcheminement": "AUREL", + "nomCommune": "AUREL" }, { - "codePostal": "61310", - "codeCommune": "61328", - "libelleAcheminement": "LE PIN AU HARAS", - "nomCommune": "LE PIN AU HARAS" + "codePostal": "35630", + "codeCommune": "35130", + "libelleAcheminement": "HEDE BAZOUGES", + "nomCommune": "HEDE BAZOUGES" }, { - "codePostal": "28700", - "codeCommune": "28230", - "libelleAcheminement": "MAISONS", - "nomCommune": "MAISONS" + "codePostal": "35190", + "codeCommune": "35022", + "libelleAcheminement": "BECHEREL", + "nomCommune": "BECHEREL" }, { - "codePostal": "54290", - "codeCommune": "54130", - "libelleAcheminement": "CLAYEURES", - "nomCommune": "CLAYEURES" + "codePostal": "24210", + "codeCommune": "24550", + "libelleAcheminement": "THENON", + "nomCommune": "THENON" }, { - "codePostal": "67600", - "codeCommune": "67115", - "libelleAcheminement": "EBERSHEIM", - "nomCommune": "EBERSHEIM" + "codePostal": "26300", + "codeCommune": "26023", + "libelleAcheminement": "BARBIERES", + "nomCommune": "BARBIERES" }, { - "codePostal": "61120", - "codeCommune": "61333", - "libelleAcheminement": "PONTCHARDON", - "nomCommune": "PONTCHARDON" + "codePostal": "35750", + "codeCommune": "35133", + "libelleAcheminement": "IFFENDIC", + "nomCommune": "IFFENDIC" }, { - "codePostal": "28270", - "codeCommune": "28231", - "libelleAcheminement": "LA MANCELIERE", - "nomCommune": "LA MANCELIERE" + "codePostal": "35890", + "codeCommune": "35033", + "libelleAcheminement": "BOURG DES COMPTES", + "nomCommune": "BOURG DES COMPTES" }, { - "codePostal": "54260", - "codeCommune": "54134", - "libelleAcheminement": "COLMEY", - "nomCommune": "COLMEY" + "codePostal": "24320", + "codeCommune": "24554", + "libelleAcheminement": "LA TOUR BLANCHE CERCLES", + "nomCommune": "LA TOUR BLANCHE CERCLES" }, { - "codePostal": "67550", - "codeCommune": "67119", - "libelleAcheminement": "ECKWERSHEIM", - "nomCommune": "ECKWERSHEIM" + "codePostal": "26160", + "codeCommune": "26045", + "libelleAcheminement": "LA BEGUDE DE MAZENC", + "nomCommune": "LA BEGUDE DE MAZENC" }, { - "codePostal": "61320", - "codeCommune": "61357", - "libelleAcheminement": "ROUPERROUX", - "nomCommune": "ROUPERROUX" + "codePostal": "35450", + "codeCommune": "35154", + "libelleAcheminement": "LIVRE SUR CHANGEON", + "nomCommune": "LIVRE SUR CHANGEON" }, { - "codePostal": "28410", - "codeCommune": "28235", - "libelleAcheminement": "MARCHEZAIS", - "nomCommune": "MARCHEZAIS" + "codePostal": "35120", + "codeCommune": "35034", + "libelleAcheminement": "LA BOUSSAC", + "nomCommune": "LA BOUSSAC" }, { - "codePostal": "54800", - "codeCommune": "54136", - "libelleAcheminement": "CONFLANS EN JARNISY", - "nomCommune": "CONFLANS EN JARNISY" + "codePostal": "24750", + "codeCommune": "24557", + "libelleAcheminement": "TRELISSAC", + "nomCommune": "TRELISSAC" }, { - "codePostal": "67390", - "codeCommune": "67121", - "libelleAcheminement": "ELSENHEIM", - "nomCommune": "ELSENHEIM" + "codePostal": "26110", + "codeCommune": "26046", + "libelleAcheminement": "BELLECOMBE TARENDOL", + "nomCommune": "BELLECOMBE TARENDOL" }, { - "codePostal": "61470", - "codeCommune": "61392", - "libelleAcheminement": "ST GERMAIN D AUNAY", - "nomCommune": "ST GERMAIN D AUNAY" + "codePostal": "35560", + "codeCommune": "35164", + "libelleAcheminement": "MARCILLE RAOUL", + "nomCommune": "MARCILLE RAOUL" }, { - "codePostal": "28250", - "codeCommune": "28248", - "libelleAcheminement": "LE MESNIL THOMAS", - "nomCommune": "LE MESNIL THOMAS" + "codePostal": "35310", + "codeCommune": "35037", + "libelleAcheminement": "BREAL SOUS MONTFORT", + "nomCommune": "BREAL SOUS MONTFORT" }, { - "codePostal": "54870", - "codeCommune": "54137", - "libelleAcheminement": "CONS LA GRANDVILLE", - "nomCommune": "CONS LA GRANDVILLE" + "codePostal": "24510", + "codeCommune": "24558", + "libelleAcheminement": "TREMOLAT", + "nomCommune": "TREMOLAT" }, { - "codePostal": "67710", - "codeCommune": "67122", - "libelleAcheminement": "WANGENBOURG ENGENTHAL", - "nomCommune": "WANGENBOURG ENGENTHAL" + "codePostal": "26470", + "codeCommune": "26047", + "libelleAcheminement": "BELLEGARDE EN DIOIS", + "nomCommune": "BELLEGARDE EN DIOIS" }, { - "codePostal": "61240", - "codeCommune": "61393", - "libelleAcheminement": "ST GERMAIN DE CLAIREFEUILLE", - "nomCommune": "ST GERMAIN DE CLAIREFEUILLE" + "codePostal": "35330", + "codeCommune": "35168", + "libelleAcheminement": "VAL D ANAST", + "nomCommune": "VAL D ANAST" }, { - "codePostal": "28800", - "codeCommune": "28259", - "libelleAcheminement": "MONTBOISSIER", - "nomCommune": "MONTBOISSIER" + "codePostal": "35135", + "codeCommune": "35055", + "libelleAcheminement": "CHANTEPIE", + "nomCommune": "CHANTEPIE" }, { - "codePostal": "54400", - "codeCommune": "54138", - "libelleAcheminement": "COSNES ET ROMAIN", - "nomCommune": "COSNES ET ROMAIN" + "codePostal": "24480", + "codeCommune": "24560", + "libelleAcheminement": "URVAL", + "nomCommune": "URVAL" }, { - "codePostal": "67350", - "codeCommune": "67123", - "libelleAcheminement": "ENGWILLER", - "nomCommune": "ENGWILLER" + "codePostal": "26300", + "codeCommune": "26057", + "libelleAcheminement": "BOURG DE PEAGE", + "nomCommune": "BOURG DE PEAGE" }, { - "codePostal": "61130", - "codeCommune": "61394", - "libelleAcheminement": "ST GERMAIN DE LA COUDRE", - "nomCommune": "ST GERMAIN DE LA COUDRE" + "codePostal": "35450", + "codeCommune": "35170", + "libelleAcheminement": "MECE", + "nomCommune": "MECE" }, { - "codePostal": "28700", - "codeCommune": "28268", - "libelleAcheminement": "MORAINVILLE", - "nomCommune": "MORAINVILLE" + "codePostal": "35520", + "codeCommune": "35059", + "libelleAcheminement": "LA CHAPELLE DES FOUGERETZ", + "nomCommune": "LA CHAPELLE DES FOUGERETZ" }, { - "codePostal": "54120", - "codeCommune": "54154", - "libelleAcheminement": "DENEUVRE", - "nomCommune": "DENEUVRE" + "codePostal": "24360", + "codeCommune": "24565", + "libelleAcheminement": "VARAIGNES", + "nomCommune": "VARAIGNES" }, { - "codePostal": "67680", - "codeCommune": "67125", - "libelleAcheminement": "EPFIG", - "nomCommune": "EPFIG" + "codePostal": "26190", + "codeCommune": "26066", + "libelleAcheminement": "LE CHAFFAL", + "nomCommune": "LE CHAFFAL" }, { - "codePostal": "61110", - "codeCommune": "61395", - "libelleAcheminement": "ST GERMAIN DES GROIS", - "nomCommune": "ST GERMAIN DES GROIS" + "codePostal": "35420", + "codeCommune": "35174", + "libelleAcheminement": "MELLE", + "nomCommune": "MELLE" }, { - "codePostal": "28150", - "codeCommune": "28274", - "libelleAcheminement": "MOUTIERS", - "nomCommune": "MOUTIERS" + "codePostal": "35500", + "codeCommune": "35061", + "libelleAcheminement": "LA CHAPELLE ERBREE", + "nomCommune": "LA CHAPELLE ERBREE" }, { - "codePostal": "54200", - "codeCommune": "54167", - "libelleAcheminement": "DOMMARTIN LES TOUL", - "nomCommune": "DOMMARTIN LES TOUL" + "codePostal": "24320", + "codeCommune": "24569", + "libelleAcheminement": "VENDOIRE", + "nomCommune": "VENDOIRE" }, { - "codePostal": "67290", - "codeCommune": "67126", - "libelleAcheminement": "ERCKARTSWILLER", - "nomCommune": "ERCKARTSWILLER" + "codePostal": "26600", + "codeCommune": "26072", + "libelleAcheminement": "CHANTEMERLE LES BLES", + "nomCommune": "CHANTEMERLE LES BLES" }, { - "codePostal": "61160", - "codeCommune": "61399", - "libelleAcheminement": "ST GERVAIS DES SABLONS", - "nomCommune": "ST GERVAIS DES SABLONS" + "codePostal": "35480", + "codeCommune": "35176", + "libelleAcheminement": "GUIPRY MESSAC", + "nomCommune": "GUIPRY MESSAC" }, { - "codePostal": "28800", - "codeCommune": "28277", - "libelleAcheminement": "NEUVY EN DUNOIS", - "nomCommune": "NEUVY EN DUNOIS" + "codePostal": "35410", + "codeCommune": "35069", + "libelleAcheminement": "CHATEAUGIRON", + "nomCommune": "CHATEAUGIRON" }, { - "codePostal": "54370", - "codeCommune": "54176", - "libelleAcheminement": "EINVILLE AU JARD", - "nomCommune": "EINVILLE AU JARD" + "codePostal": "24220", + "codeCommune": "24577", + "libelleAcheminement": "VEZAC", + "nomCommune": "VEZAC" }, { - "codePostal": "67330", - "codeCommune": "67129", - "libelleAcheminement": "ERNOLSHEIM LES SAVERNE", - "nomCommune": "ERNOLSHEIM LES SAVERNE" + "codePostal": "26230", + "codeCommune": "26073", + "libelleAcheminement": "CHANTEMERLE LES GRIGNAN", + "nomCommune": "CHANTEMERLE LES GRIGNAN" }, { - "codePostal": "61500", - "codeCommune": "61400", - "libelleAcheminement": "ST GERVAIS DU PERRON", - "nomCommune": "ST GERVAIS DU PERRON" + "codePostal": "35480", + "codeCommune": "35176", + "libelleAcheminement": "GUIPRY MESSAC", + "nomCommune": "GUIPRY MESSAC" }, { - "codePostal": "28120", - "codeCommune": "28286", - "libelleAcheminement": "OLLE", - "nomCommune": "OLLE" + "codePostal": "35490", + "codeCommune": "35075", + "libelleAcheminement": "CHAUVIGNE", + "nomCommune": "CHAUVIGNE" }, { - "codePostal": "54280", - "codeCommune": "54180", - "libelleAcheminement": "ERBEVILLER SUR AMEZULE", - "nomCommune": "ERBEVILLER SUR AMEZULE" + "codePostal": "24530", + "codeCommune": "24582", + "libelleAcheminement": "VILLARS", + "nomCommune": "VILLARS" }, { - "codePostal": "67114", - "codeCommune": "67131", - "libelleAcheminement": "ESCHAU", - "nomCommune": "ESCHAU" + "codePostal": "26420", + "codeCommune": "26074", + "libelleAcheminement": "LA CHAPELLE EN VERCORS", + "nomCommune": "LA CHAPELLE EN VERCORS" }, { - "codePostal": "61360", - "codeCommune": "61411", - "libelleAcheminement": "ST JOUIN DE BLAVOU", - "nomCommune": "ST JOUIN DE BLAVOU" + "codePostal": "35520", + "codeCommune": "35177", + "libelleAcheminement": "LA MEZIERE", + "nomCommune": "LA MEZIERE" }, { - "codePostal": "28260", - "codeCommune": "28293", - "libelleAcheminement": "OULINS", - "nomCommune": "OULINS" + "codePostal": "35640", + "codeCommune": "35077", + "libelleAcheminement": "CHELUN", + "nomCommune": "CHELUN" }, { - "codePostal": "54680", - "codeCommune": "54181", - "libelleAcheminement": "ERROUVILLE", - "nomCommune": "ERROUVILLE" + "codePostal": "24200", + "codeCommune": "24587", + "libelleAcheminement": "VITRAC", + "nomCommune": "VITRAC" }, { - "codePostal": "67860", - "codeCommune": "67146", - "libelleAcheminement": "FRIESENHEIM", - "nomCommune": "FRIESENHEIM" + "codePostal": "26120", + "codeCommune": "26081", + "libelleAcheminement": "CHATEAUDOUBLE", + "nomCommune": "CHATEAUDOUBLE" }, { - "codePostal": "61350", - "codeCommune": "61421", - "libelleAcheminement": "ST MARS D EGRENNE", - "nomCommune": "ST MARS D EGRENNE" + "codePostal": "35360", + "codeCommune": "35184", + "libelleAcheminement": "MONTAUBAN DE BRETAGNE", + "nomCommune": "MONTAUBAN DE BRETAGNE" }, { - "codePostal": "28310", - "codeCommune": "28300", - "libelleAcheminement": "POINVILLE", - "nomCommune": "POINVILLE" + "codePostal": "35120", + "codeCommune": "35078", + "libelleAcheminement": "CHERRUEIX", + "nomCommune": "CHERRUEIX" }, { - "codePostal": "54470", - "codeCommune": "54182", - "libelleAcheminement": "ESSEY ET MAIZERAIS", - "nomCommune": "ESSEY ET MAIZERAIS" + "codePostal": "25440", + "codeCommune": "25002", + "libelleAcheminement": "ABBANS DESSUS", + "nomCommune": "ABBANS DESSUS" }, { - "codePostal": "67360", - "codeCommune": "67160", - "libelleAcheminement": "GOERSDORF", - "nomCommune": "GOERSDORF" + "codePostal": "26300", + "codeCommune": "26084", + "libelleAcheminement": "CHATEAUNEUF SUR ISERE", + "nomCommune": "CHATEAUNEUF SUR ISERE" }, { - "codePostal": "61270", - "codeCommune": "61422", - "libelleAcheminement": "LES ASPRES", - "nomCommune": "LES ASPRES" + "codePostal": "35120", + "codeCommune": "35186", + "libelleAcheminement": "MONT DOL", + "nomCommune": "MONT DOL" }, { - "codePostal": "28300", - "codeCommune": "28301", - "libelleAcheminement": "POISVILLIERS", - "nomCommune": "POISVILLIERS" + "codePostal": "35330", + "codeCommune": "35084", + "libelleAcheminement": "COMBLESSAC", + "nomCommune": "COMBLESSAC" }, { - "codePostal": "54540", - "codeCommune": "54191", - "libelleAcheminement": "FENNEVILLER", - "nomCommune": "FENNEVILLER" + "codePostal": "25250", + "codeCommune": "25005", + "libelleAcheminement": "ACCOLANS", + "nomCommune": "ACCOLANS" }, { - "codePostal": "67490", - "codeCommune": "67162", - "libelleAcheminement": "GOTTESHEIM", - "nomCommune": "GOTTESHEIM" + "codePostal": "26410", + "codeCommune": "26086", + "libelleAcheminement": "CHATILLON EN DIOIS", + "nomCommune": "CHATILLON EN DIOIS" }, { - "codePostal": "61100", - "codeCommune": "61443", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "35160", + "codeCommune": "35187", + "libelleAcheminement": "MONTERFIL", + "nomCommune": "MONTERFIL" }, { - "codePostal": "28250", - "codeCommune": "28310", - "libelleAcheminement": "LA PUISAYE", - "nomCommune": "LA PUISAYE" + "codePostal": "35210", + "codeCommune": "35086", + "libelleAcheminement": "COMBOURTILLE", + "nomCommune": "COMBOURTILLE" }, { - "codePostal": "54260", - "codeCommune": "54212", - "libelleAcheminement": "FRESNOIS LA MONTAGNE", - "nomCommune": "FRESNOIS LA MONTAGNE" + "codePostal": "25220", + "codeCommune": "25014", + "libelleAcheminement": "AMAGNEY", + "nomCommune": "AMAGNEY" }, { - "codePostal": "67270", - "codeCommune": "67163", - "libelleAcheminement": "GOUGENHEIM", - "nomCommune": "GOUGENHEIM" + "codePostal": "26510", + "codeCommune": "26091", + "libelleAcheminement": "CHAUVAC LAUX MONTAUX", + "nomCommune": "CHAUVAC LAUX MONTAUX" }, { - "codePostal": "61340", - "codeCommune": "61448", - "libelleAcheminement": "ST PIERRE LA BRUYERE", - "nomCommune": "ST PIERRE LA BRUYERE" + "codePostal": "35760", + "codeCommune": "35189", + "libelleAcheminement": "MONTGERMONT", + "nomCommune": "MONTGERMONT" }, { - "codePostal": "28170", - "codeCommune": "28312", - "libelleAcheminement": "PUISEUX", - "nomCommune": "PUISEUX" + "codePostal": "35270", + "codeCommune": "35092", + "libelleAcheminement": "CUGUEN", + "nomCommune": "CUGUEN" }, { - "codePostal": "54800", - "codeCommune": "54213", - "libelleAcheminement": "FRIAUVILLE", - "nomCommune": "FRIAUVILLE" + "codePostal": "25330", + "codeCommune": "25015", + "libelleAcheminement": "AMANCEY", + "nomCommune": "AMANCEY" }, { - "codePostal": "67110", - "codeCommune": "67176", - "libelleAcheminement": "GUNDERSHOFFEN", - "nomCommune": "GUNDERSHOFFEN" + "codePostal": "26450", + "codeCommune": "26095", + "libelleAcheminement": "CLEON D ANDRAN", + "nomCommune": "CLEON D ANDRAN" }, { - "codePostal": "61170", - "codeCommune": "61454", - "libelleAcheminement": "STE SCOLASSE SUR SARTHE", - "nomCommune": "STE SCOLASSE SUR SARTHE" + "codePostal": "35210", + "codeCommune": "35192", + "libelleAcheminement": "MONTREUIL DES LANDES", + "nomCommune": "MONTREUIL DES LANDES" }, { - "codePostal": "28150", - "codeCommune": "28313", - "libelleAcheminement": "RECLAINVILLE", - "nomCommune": "RECLAINVILLE" + "codePostal": "35450", + "codeCommune": "35101", + "libelleAcheminement": "DOURDAIN", + "nomCommune": "DOURDAIN" }, { - "codePostal": "54740", - "codeCommune": "54221", - "libelleAcheminement": "GERBECOURT ET HAPLEMONT", - "nomCommune": "GERBECOURT ET HAPLEMONT" + "codePostal": "25340", + "codeCommune": "25018", + "libelleAcheminement": "ANTEUIL", + "nomCommune": "ANTEUIL" }, { - "codePostal": "67110", - "codeCommune": "67176", - "libelleAcheminement": "GUNDERSHOFFEN", - "nomCommune": "GUNDERSHOFFEN" + "codePostal": "26120", + "codeCommune": "26100", + "libelleAcheminement": "COMBOVIN", + "nomCommune": "COMBOVIN" }, { - "codePostal": "61300", - "codeCommune": "61456", - "libelleAcheminement": "ST SULPICE SUR RISLE", - "nomCommune": "ST SULPICE SUR RISLE" + "codePostal": "35520", + "codeCommune": "35193", + "libelleAcheminement": "MONTREUIL LE GAST", + "nomCommune": "MONTREUIL LE GAST" }, { - "codePostal": "28340", - "codeCommune": "28314", - "libelleAcheminement": "LES RESSUINTES", - "nomCommune": "LES RESSUINTES" + "codePostal": "35620", + "codeCommune": "35106", + "libelleAcheminement": "ERCE EN LAMEE", + "nomCommune": "ERCE EN LAMEE" }, { - "codePostal": "54450", - "codeCommune": "54230", - "libelleAcheminement": "GOGNEY", - "nomCommune": "GOGNEY" + "codePostal": "25400", + "codeCommune": "25031", + "libelleAcheminement": "AUDINCOURT", + "nomCommune": "AUDINCOURT" }, { - "codePostal": "67110", - "codeCommune": "67176", - "libelleAcheminement": "GUNDERSHOFFEN", - "nomCommune": "GUNDERSHOFFEN" + "codePostal": "26740", + "codeCommune": "26106", + "libelleAcheminement": "LA COUCOURDE", + "nomCommune": "LA COUCOURDE" }, { - "codePostal": "61230", - "codeCommune": "61461", - "libelleAcheminement": "LE SAP ANDRE", - "nomCommune": "LE SAP ANDRE" + "codePostal": "35310", + "codeCommune": "35196", + "libelleAcheminement": "MORDELLES", + "nomCommune": "MORDELLES" }, { - "codePostal": "28270", - "codeCommune": "28315", - "libelleAcheminement": "REVERCOURT", - "nomCommune": "REVERCOURT" + "codePostal": "35133", + "codeCommune": "35112", + "libelleAcheminement": "FLEURIGNE", + "nomCommune": "FLEURIGNE" }, { - "codePostal": "54800", - "codeCommune": "54231", - "libelleAcheminement": "GONDRECOURT AIX", - "nomCommune": "GONDRECOURT AIX" + "codePostal": "25870", + "codeCommune": "25035", + "libelleAcheminement": "LES AUXONS", + "nomCommune": "LES AUXONS" }, { - "codePostal": "67320", - "codeCommune": "67178", - "libelleAcheminement": "GUNGWILLER", - "nomCommune": "GUNGWILLER" + "codePostal": "26780", + "codeCommune": "26121", + "libelleAcheminement": "ESPELUCHE", + "nomCommune": "ESPELUCHE" }, { - "codePostal": "61100", - "codeCommune": "61466", - "libelleAcheminement": "LA SELLE LA FORGE", - "nomCommune": "LA SELLE LA FORGE" + "codePostal": "35680", + "codeCommune": "35198", + "libelleAcheminement": "MOULINS", + "nomCommune": "MOULINS" }, { - "codePostal": "28340", - "codeCommune": "28316", - "libelleAcheminement": "ROHAIRE", - "nomCommune": "ROHAIRE" + "codePostal": "35390", + "codeCommune": "35124", + "libelleAcheminement": "GRAND FOUGERAY", + "nomCommune": "GRAND FOUGERAY" }, { - "codePostal": "54380", - "codeCommune": "54239", - "libelleAcheminement": "GRISCOURT", - "nomCommune": "GRISCOURT" + "codePostal": "25680", + "codeCommune": "25038", + "libelleAcheminement": "AVILLEY", + "nomCommune": "AVILLEY" }, { - "codePostal": "67500", - "codeCommune": "67180", - "libelleAcheminement": "HAGUENAU", - "nomCommune": "HAGUENAU" + "codePostal": "26470", + "codeCommune": "26123", + "libelleAcheminement": "ESTABLET", + "nomCommune": "ESTABLET" }, { - "codePostal": "61250", - "codeCommune": "61467", - "libelleAcheminement": "SEMALLE", - "nomCommune": "SEMALLE" + "codePostal": "35410", + "codeCommune": "35204", + "libelleAcheminement": "NOUVOITOU", + "nomCommune": "NOUVOITOU" }, { - "codePostal": "28330", - "codeCommune": "28327", - "libelleAcheminement": "ST BOMER", - "nomCommune": "ST BOMER" + "codePostal": "35130", + "codeCommune": "35125", + "libelleAcheminement": "LA GUERCHE DE BRETAGNE", + "nomCommune": "LA GUERCHE DE BRETAGNE" }, { - "codePostal": "54470", - "codeCommune": "54244", - "libelleAcheminement": "HAGEVILLE", - "nomCommune": "HAGEVILLE" + "codePostal": "25690", + "codeCommune": "25039", + "libelleAcheminement": "AVOUDREY", + "nomCommune": "AVOUDREY" }, { - "codePostal": "67500", - "codeCommune": "67180", - "libelleAcheminement": "HAGUENAU", - "nomCommune": "HAGUENAU" + "codePostal": "26240", + "codeCommune": "26133", + "libelleAcheminement": "FAY LE CLOS", + "nomCommune": "FAY LE CLOS" }, { - "codePostal": "61160", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "35740", + "codeCommune": "35210", + "libelleAcheminement": "PACE", + "nomCommune": "PACE" }, { - "codePostal": "28210", - "codeCommune": "28343", - "libelleAcheminement": "ST LAURENT LA GATINE", - "nomCommune": "ST LAURENT LA GATINE" + "codePostal": "35580", + "codeCommune": "35126", + "libelleAcheminement": "GUICHEN", + "nomCommune": "GUICHEN" }, { - "codePostal": "54470", - "codeCommune": "54248", - "libelleAcheminement": "HAMONVILLE", - "nomCommune": "HAMONVILLE" + "codePostal": "25420", + "codeCommune": "25043", + "libelleAcheminement": "BART", + "nomCommune": "BART" }, { - "codePostal": "67230", - "codeCommune": "67192", - "libelleAcheminement": "HERBSHEIM", - "nomCommune": "HERBSHEIM" + "codePostal": "26310", + "codeCommune": "26136", + "libelleAcheminement": "VAL MARAVEL", + "nomCommune": "VAL MARAVEL" }, { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "35210", + "codeCommune": "35214", + "libelleAcheminement": "PARCE", + "nomCommune": "PARCE" }, { - "codePostal": "28170", - "codeCommune": "28351", - "libelleAcheminement": "ST MAIXME HAUTERIVE", - "nomCommune": "ST MAIXME HAUTERIVE" + "codePostal": "35150", + "codeCommune": "35136", + "libelleAcheminement": "JANZE", + "nomCommune": "JANZE" }, { - "codePostal": "54180", - "codeCommune": "54257", - "libelleAcheminement": "HEILLECOURT", - "nomCommune": "HEILLECOURT" + "codePostal": "25440", + "codeCommune": "25044", + "libelleAcheminement": "BARTHERANS", + "nomCommune": "BARTHERANS" }, { - "codePostal": "67150", - "codeCommune": "67200", - "libelleAcheminement": "HIPSHEIM", - "nomCommune": "HIPSHEIM" + "codePostal": "26400", + "codeCommune": "26141", + "libelleAcheminement": "GIGORS ET LOZERON", + "nomCommune": "GIGORS ET LOZERON" }, { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "35470", + "codeCommune": "35221", + "libelleAcheminement": "PLECHATEL", + "nomCommune": "PLECHATEL" }, { - "codePostal": "28260", - "codeCommune": "28371", - "libelleAcheminement": "SAUSSAY", - "nomCommune": "SAUSSAY" + "codePostal": "35660", + "codeCommune": "35145", + "libelleAcheminement": "LANGON", + "nomCommune": "LANGON" }, { - "codePostal": "54370", - "codeCommune": "54258", - "libelleAcheminement": "HENAMENIL", - "nomCommune": "HENAMENIL" + "codePostal": "25520", + "codeCommune": "25060", + "libelleAcheminement": "BIANS LES USIERS", + "nomCommune": "BIANS LES USIERS" }, { - "codePostal": "67270", - "codeCommune": "67202", - "libelleAcheminement": "HOCHFELDEN", - "nomCommune": "HOCHFELDEN" + "codePostal": "26530", + "codeCommune": "26143", + "libelleAcheminement": "LE GRAND SERRE", + "nomCommune": "LE GRAND SERRE" }, { - "codePostal": "61410", - "codeCommune": "61482", - "libelleAcheminement": "TESSE FROULAY", - "nomCommune": "TESSE FROULAY" + "codePostal": "35470", + "codeCommune": "35221", + "libelleAcheminement": "PLECHATEL", + "nomCommune": "PLECHATEL" }, { - "codePostal": "28240", - "codeCommune": "28385", - "libelleAcheminement": "LE THIEULIN", - "nomCommune": "LE THIEULIN" + "codePostal": "35630", + "codeCommune": "35146", + "libelleAcheminement": "LANGOUET", + "nomCommune": "LANGOUET" }, { - "codePostal": "54930", - "codeCommune": "54268", - "libelleAcheminement": "HOUSSEVILLE", - "nomCommune": "HOUSSEVILLE" + "codePostal": "25210", + "codeCommune": "25062", + "libelleAcheminement": "LE BIZOT", + "nomCommune": "LE BIZOT" }, { - "codePostal": "67170", - "codeCommune": "67203", - "libelleAcheminement": "HOCHSTETT", - "nomCommune": "HOCHSTETT" + "codePostal": "26560", + "codeCommune": "26153", + "libelleAcheminement": "LABOREL", + "nomCommune": "LABOREL" }, { - "codePostal": "61260", - "codeCommune": "61484", - "libelleAcheminement": "VAL AU PERCHE", - "nomCommune": "VAL AU PERCHE" + "codePostal": "35137", + "codeCommune": "35227", + "libelleAcheminement": "PLEUMELEUC", + "nomCommune": "PLEUMELEUC" }, { - "codePostal": "28170", - "codeCommune": "28393", - "libelleAcheminement": "TREMBLAY LES VILLAGES", - "nomCommune": "TREMBLAY LES VILLAGES" + "codePostal": "35580", + "codeCommune": "35149", + "libelleAcheminement": "LASSY", + "nomCommune": "LASSY" }, { - "codePostal": "54740", - "codeCommune": "54278", - "libelleAcheminement": "JEVONCOURT", - "nomCommune": "JEVONCOURT" + "codePostal": "25230", + "codeCommune": "25071", + "libelleAcheminement": "BONDEVAL", + "nomCommune": "BONDEVAL" }, { - "codePostal": "67250", - "codeCommune": "67206", - "libelleAcheminement": "HOFFEN", - "nomCommune": "HOFFEN" + "codePostal": "26740", + "codeCommune": "26157", + "libelleAcheminement": "LA LAUPIE", + "nomCommune": "LA LAUPIE" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "35290", + "codeCommune": "35234", + "libelleAcheminement": "QUEDILLAC", + "nomCommune": "QUEDILLAC" }, { - "codePostal": "28170", - "codeCommune": "28393", - "libelleAcheminement": "TREMBLAY LES VILLAGES", - "nomCommune": "TREMBLAY LES VILLAGES" + "codePostal": "35133", + "codeCommune": "35150", + "libelleAcheminement": "LECOUSSE", + "nomCommune": "LECOUSSE" }, { - "codePostal": "54240", - "codeCommune": "54280", - "libelleAcheminement": "JOEUF", - "nomCommune": "JOEUF" + "codePostal": "25560", + "codeCommune": "25075", + "libelleAcheminement": "BONNEVAUX", + "nomCommune": "BONNEVAUX" }, { - "codePostal": "67270", - "codeCommune": "67209", - "libelleAcheminement": "HOHFRANKENHEIM", - "nomCommune": "HOHFRANKENHEIM" + "codePostal": "26510", + "codeCommune": "26161", + "libelleAcheminement": "LEMPS", + "nomCommune": "LEMPS" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "35780", + "codeCommune": "35241", + "libelleAcheminement": "LA RICHARDAIS", + "nomCommune": "LA RICHARDAIS" }, { - "codePostal": "28150", - "codeCommune": "28411", - "libelleAcheminement": "VILLARS", - "nomCommune": "VILLARS" + "codePostal": "35340", + "codeCommune": "35152", + "libelleAcheminement": "LIFFRE", + "nomCommune": "LIFFRE" }, { - "codePostal": "54300", - "codeCommune": "54281", - "libelleAcheminement": "JOLIVET", - "nomCommune": "JOLIVET" + "codePostal": "25640", + "codeCommune": "25092", + "libelleAcheminement": "LA BRETENIERE", + "nomCommune": "LA BRETENIERE" }, { - "codePostal": "67250", - "codeCommune": "67213", - "libelleAcheminement": "HUNSPACH", - "nomCommune": "HUNSPACH" + "codePostal": "26260", + "codeCommune": "26177", + "libelleAcheminement": "MARSAZ", + "nomCommune": "MARSAZ" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "35850", + "codeCommune": "35245", + "libelleAcheminement": "ROMILLE", + "nomCommune": "ROMILLE" }, { - "codePostal": "28150", - "codeCommune": "28422", - "libelleAcheminement": "LES VILLAGES VOVEENS", - "nomCommune": "LES VILLAGES VOVEENS" + "codePostal": "35190", + "codeCommune": "35156", + "libelleAcheminement": "LONGAULNAY", + "nomCommune": "LONGAULNAY" }, { - "codePostal": "54620", - "codeCommune": "54282", - "libelleAcheminement": "JOPPECOURT", - "nomCommune": "JOPPECOURT" + "codePostal": "25560", + "codeCommune": "25100", + "libelleAcheminement": "BULLE", + "nomCommune": "BULLE" }, { - "codePostal": "67230", - "codeCommune": "67216", - "libelleAcheminement": "HUTTENHEIM", - "nomCommune": "HUTTENHEIM" + "codePostal": "26600", + "codeCommune": "26179", + "libelleAcheminement": "MERCUROL VEAUNES", + "nomCommune": "MERCUROL VEAUNES" }, { - "codePostal": "61110", - "codeCommune": "61501", - "libelleAcheminement": "VERRIERES", - "nomCommune": "VERRIERES" + "codePostal": "35610", + "codeCommune": "35247", + "libelleAcheminement": "ROZ SUR COUESNON", + "nomCommune": "ROZ SUR COUESNON" }, { - "codePostal": "28320", - "codeCommune": "28425", - "libelleAcheminement": "YMERAY", - "nomCommune": "YMERAY" + "codePostal": "35420", + "codeCommune": "35162", + "libelleAcheminement": "LOUVIGNE DU DESERT", + "nomCommune": "LOUVIGNE DU DESERT" }, { - "codePostal": "54300", - "codeCommune": "54292", - "libelleAcheminement": "LAMATH", - "nomCommune": "LAMATH" + "codePostal": "25470", + "codeCommune": "25102", + "libelleAcheminement": "BURNEVILLERS", + "nomCommune": "BURNEVILLERS" }, { - "codePostal": "67270", - "codeCommune": "67220", - "libelleAcheminement": "INGENHEIM", - "nomCommune": "INGENHEIM" + "codePostal": "26310", + "codeCommune": "26186", + "libelleAcheminement": "MISCON", + "nomCommune": "MISCON" }, { - "codePostal": "61120", - "codeCommune": "61508", - "libelleAcheminement": "VIMOUTIERS", - "nomCommune": "VIMOUTIERS" + "codePostal": "35390", + "codeCommune": "35249", + "libelleAcheminement": "STE ANNE SUR VILAINE", + "nomCommune": "STE ANNE SUR VILAINE" }, { - "codePostal": "28150", - "codeCommune": "28426", - "libelleAcheminement": "YMONVILLE", - "nomCommune": "YMONVILLE" + "codePostal": "35210", + "codeCommune": "35163", + "libelleAcheminement": "LUITRE DOMPIERRE", + "nomCommune": "LUITRE DOMPIERRE" }, { - "codePostal": "54570", - "codeCommune": "54306", - "libelleAcheminement": "LAY ST REMY", - "nomCommune": "LAY ST REMY" + "codePostal": "25440", + "codeCommune": "25109", + "libelleAcheminement": "CESSEY", + "nomCommune": "CESSEY" }, { - "codePostal": "67340", - "codeCommune": "67222", - "libelleAcheminement": "INGWILLER", - "nomCommune": "INGWILLER" + "codePostal": "26170", + "codeCommune": "26188", + "libelleAcheminement": "MOLLANS SUR OUVEZE", + "nomCommune": "MOLLANS SUR OUVEZE" }, { - "codePostal": "62121", - "codeCommune": "62006", - "libelleAcheminement": "ACHIET LE PETIT", - "nomCommune": "ACHIET LE PETIT" + "codePostal": "35800", + "codeCommune": "35256", + "libelleAcheminement": "ST BRIAC SUR MER", + "nomCommune": "ST BRIAC SUR MER" }, { - "codePostal": "29950", - "codeCommune": "29006", - "libelleAcheminement": "BENODET", - "nomCommune": "BENODET" + "codePostal": "35640", + "codeCommune": "35167", + "libelleAcheminement": "MARTIGNE FERCHAUD", + "nomCommune": "MARTIGNE FERCHAUD" }, { - "codePostal": "54810", - "codeCommune": "54321", - "libelleAcheminement": "LONGLAVILLE", - "nomCommune": "LONGLAVILLE" + "codePostal": "25190", + "codeCommune": "25114", + "libelleAcheminement": "CHAMESOL", + "nomCommune": "CHAMESOL" }, { - "codePostal": "67880", - "codeCommune": "67223", - "libelleAcheminement": "INNENHEIM", - "nomCommune": "INNENHEIM" + "codePostal": "26170", + "codeCommune": "26189", + "libelleAcheminement": "MONTAUBAN SUR L OUVEZE", + "nomCommune": "MONTAUBAN SUR L OUVEZE" }, { - "codePostal": "62380", - "codeCommune": "62010", - "libelleAcheminement": "AFFRINGUES", - "nomCommune": "AFFRINGUES" + "codePostal": "35460", + "codeCommune": "35257", + "libelleAcheminement": "MAEN ROCH", + "nomCommune": "MAEN ROCH" }, { - "codePostal": "29640", - "codeCommune": "29012", - "libelleAcheminement": "BOLAZEC", - "nomCommune": "BOLAZEC" + "codePostal": "35330", + "codeCommune": "35168", + "libelleAcheminement": "VAL D ANAST", + "nomCommune": "VAL D ANAST" }, { - "codePostal": "54710", - "codeCommune": "54328", - "libelleAcheminement": "LUDRES", - "nomCommune": "LUDRES" + "codePostal": "25360", + "codeCommune": "25116", + "libelleAcheminement": "CHAMPLIVE", + "nomCommune": "CHAMPLIVE" }, { - "codePostal": "67117", - "codeCommune": "67226", - "libelleAcheminement": "ITTENHEIM", - "nomCommune": "ITTENHEIM" + "codePostal": "26570", + "codeCommune": "26193", + "libelleAcheminement": "MONTBRUN LES BAINS", + "nomCommune": "MONTBRUN LES BAINS" }, { - "codePostal": "62650", - "codeCommune": "62021", - "libelleAcheminement": "ALETTE", - "nomCommune": "ALETTE" + "codePostal": "35210", + "codeCommune": "35260", + "libelleAcheminement": "ST CHRISTOPHE DES BOIS", + "nomCommune": "ST CHRISTOPHE DES BOIS" }, { - "codePostal": "29190", - "codeCommune": "29016", - "libelleAcheminement": "BRASPARTS", - "nomCommune": "BRASPARTS" + "codePostal": "35360", + "codeCommune": "35171", + "libelleAcheminement": "MEDREAC", + "nomCommune": "MEDREAC" }, { - "codePostal": "54300", - "codeCommune": "54329", - "libelleAcheminement": "LUNEVILLE", - "nomCommune": "LUNEVILLE" + "codePostal": "25240", + "codeCommune": "25142", + "libelleAcheminement": "CHAUX NEUVE", + "nomCommune": "CHAUX NEUVE" }, { - "codePostal": "67370", - "codeCommune": "67228", - "libelleAcheminement": "NEUGARTHEIM ITTLENHEIM", - "nomCommune": "NEUGARTHEIM ITTLENHEIM" + "codePostal": "26350", + "codeCommune": "26194", + "libelleAcheminement": "MONTCHENU", + "nomCommune": "MONTCHENU" }, { - "codePostal": "62149", - "codeCommune": "62034", - "libelleAcheminement": "ANNEQUIN", - "nomCommune": "ANNEQUIN" + "codePostal": "35350", + "codeCommune": "35263", + "libelleAcheminement": "ST COULOMB", + "nomCommune": "ST COULOMB" }, { - "codePostal": "29510", - "codeCommune": "29020", - "libelleAcheminement": "BRIEC", - "nomCommune": "BRIEC" + "codePostal": "35330", + "codeCommune": "35175", + "libelleAcheminement": "MERNEL", + "nomCommune": "MERNEL" }, { - "codePostal": "54150", - "codeCommune": "54334", - "libelleAcheminement": "MAIRY MAINVILLE", - "nomCommune": "MAIRY MAINVILLE" + "codePostal": "25260", + "codeCommune": "25159", + "libelleAcheminement": "COLOMBIER FONTAINE", + "nomCommune": "COLOMBIER FONTAINE" }, { - "codePostal": "67370", - "codeCommune": "67228", - "libelleAcheminement": "NEUGARTHEIM ITTLENHEIM", - "nomCommune": "NEUGARTHEIM ITTLENHEIM" + "codePostal": "26120", + "codeCommune": "26206", + "libelleAcheminement": "MONTMEYRAN", + "nomCommune": "MONTMEYRAN" }, { - "codePostal": "62232", - "codeCommune": "62035", - "libelleAcheminement": "ANNEZIN", - "nomCommune": "ANNEZIN" + "codePostal": "35630", + "codeCommune": "35276", + "libelleAcheminement": "ST GONDRAN", + "nomCommune": "ST GONDRAN" }, { - "codePostal": "29660", - "codeCommune": "29023", - "libelleAcheminement": "CARANTEC", - "nomCommune": "CARANTEC" + "codePostal": "35140", + "codeCommune": "35178", + "libelleAcheminement": "MEZIERES SUR COUESNON", + "nomCommune": "MEZIERES SUR COUESNON" }, { - "codePostal": "54550", - "codeCommune": "54336", - "libelleAcheminement": "MAIZIERES", - "nomCommune": "MAIZIERES" + "codePostal": "25640", + "codeCommune": "25163", + "libelleAcheminement": "CORCELLE MIESLOT", + "nomCommune": "CORCELLE MIESLOT" }, { - "codePostal": "67440", - "codeCommune": "67229", - "libelleAcheminement": "JETTERSWILLER", - "nomCommune": "JETTERSWILLER" + "codePostal": "26350", + "codeCommune": "26210", + "libelleAcheminement": "VALHERBASSE", + "nomCommune": "VALHERBASSE" }, { - "codePostal": "62610", - "codeCommune": "62038", - "libelleAcheminement": "ARDRES", - "nomCommune": "ARDRES" + "codePostal": "35750", + "codeCommune": "35277", + "libelleAcheminement": "ST GONLAY", + "nomCommune": "ST GONLAY" }, { - "codePostal": "29520", - "codeCommune": "29027", - "libelleAcheminement": "CHATEAUNEUF DU FAOU", - "nomCommune": "CHATEAUNEUF DU FAOU" + "codePostal": "35460", + "codeCommune": "35191", + "libelleAcheminement": "LES PORTES DU COGLAIS", + "nomCommune": "LES PORTES DU COGLAIS" }, { - "codePostal": "54220", - "codeCommune": "54339", - "libelleAcheminement": "MALZEVILLE", - "nomCommune": "MALZEVILLE" + "codePostal": "25360", + "codeCommune": "25166", + "libelleAcheminement": "COTEBRUNE", + "nomCommune": "COTEBRUNE" }, { - "codePostal": "67240", - "codeCommune": "67252", - "libelleAcheminement": "KURTZENHOUSE", - "nomCommune": "KURTZENHOUSE" + "codePostal": "26240", + "codeCommune": "26216", + "libelleAcheminement": "ST JEAN DE GALAURE", + "nomCommune": "ST JEAN DE GALAURE" }, { - "codePostal": "62140", - "codeCommune": "62046", - "libelleAcheminement": "AUBIN ST VAAST", - "nomCommune": "AUBIN ST VAAST" + "codePostal": "35430", + "codeCommune": "35279", + "libelleAcheminement": "ST GUINOUX", + "nomCommune": "ST GUINOUX" }, { - "codePostal": "29360", - "codeCommune": "29031", - "libelleAcheminement": "CLOHARS CARNOET", - "nomCommune": "CLOHARS CARNOET" + "codePostal": "35440", + "codeCommune": "35195", + "libelleAcheminement": "MONTREUIL SUR ILLE", + "nomCommune": "MONTREUIL SUR ILLE" }, { - "codePostal": "54470", - "codeCommune": "54343", - "libelleAcheminement": "MANDRES AUX QUATRE TOURS", - "nomCommune": "MANDRES AUX QUATRE TOURS" + "codePostal": "25470", + "codeCommune": "25174", + "libelleAcheminement": "COURTEFONTAINE", + "nomCommune": "COURTEFONTAINE" }, { - "codePostal": "67220", - "codeCommune": "67255", - "libelleAcheminement": "LALAYE", - "nomCommune": "LALAYE" + "codePostal": "26190", + "codeCommune": "26217", + "libelleAcheminement": "LA MOTTE FANJAS", + "nomCommune": "LA MOTTE FANJAS" }, { - "codePostal": "62890", - "codeCommune": "62055", - "libelleAcheminement": "AUDREHEM", - "nomCommune": "AUDREHEM" + "codePostal": "35140", + "codeCommune": "35282", + "libelleAcheminement": "RIVES DU COUESNON", + "nomCommune": "RIVES DU COUESNON" }, { - "codePostal": "29190", - "codeCommune": "29033", - "libelleAcheminement": "LE CLOITRE PLEYBEN", - "nomCommune": "LE CLOITRE PLEYBEN" + "codePostal": "35560", + "codeCommune": "35205", + "libelleAcheminement": "NOYAL SOUS BAZOUGES", + "nomCommune": "NOYAL SOUS BAZOUGES" }, { - "codePostal": "54385", - "codeCommune": "54348", - "libelleAcheminement": "MANONVILLE", - "nomCommune": "MANONVILLE" + "codePostal": "25560", + "codeCommune": "25176", + "libelleAcheminement": "COURVIERES", + "nomCommune": "COURVIERES" }, { - "codePostal": "67430", - "codeCommune": "67278", - "libelleAcheminement": "MACKWILLER", - "nomCommune": "MACKWILLER" + "codePostal": "26120", + "codeCommune": "26232", + "libelleAcheminement": "PEYRUS", + "nomCommune": "PEYRUS" }, { - "codePostal": "62610", - "codeCommune": "62059", - "libelleAcheminement": "AUTINGUES", - "nomCommune": "AUTINGUES" + "codePostal": "35480", + "codeCommune": "35289", + "libelleAcheminement": "ST MALO DE PHILY", + "nomCommune": "ST MALO DE PHILY" }, { - "codePostal": "29160", - "codeCommune": "29042", - "libelleAcheminement": "CROZON", - "nomCommune": "CROZON" + "codePostal": "35230", + "codeCommune": "35206", + "libelleAcheminement": "NOYAL CHATILLON SUR SEICHE", + "nomCommune": "NOYAL CHATILLON SUR SEICHE" }, { - "codePostal": "54230", - "codeCommune": "54352", - "libelleAcheminement": "MARON", - "nomCommune": "MARON" + "codePostal": "25340", + "codeCommune": "25178", + "libelleAcheminement": "CROSEY LE PETIT", + "nomCommune": "CROSEY LE PETIT" }, { - "codePostal": "67220", - "codeCommune": "67280", - "libelleAcheminement": "MAISONSGOUTTE", - "nomCommune": "MAISONSGOUTTE" + "codePostal": "26400", + "codeCommune": "26240", + "libelleAcheminement": "PLAN DE BAIX", + "nomCommune": "PLAN DE BAIX" }, { - "codePostal": "62390", - "codeCommune": "62060", - "libelleAcheminement": "AUXI LE CHATEAU", - "nomCommune": "AUXI LE CHATEAU" + "codePostal": "35133", + "codeCommune": "35310", + "libelleAcheminement": "ST SAUVEUR DES LANDES", + "nomCommune": "ST SAUVEUR DES LANDES" }, { - "codePostal": "29100", - "codeCommune": "29046", - "libelleAcheminement": "DOUARNENEZ", - "nomCommune": "DOUARNENEZ" + "codePostal": "35230", + "codeCommune": "35206", + "libelleAcheminement": "NOYAL CHATILLON SUR SEICHE", + "nomCommune": "NOYAL CHATILLON SUR SEICHE" }, { - "codePostal": "54830", - "codeCommune": "54356", - "libelleAcheminement": "MATTEXEY", - "nomCommune": "MATTEXEY" + "codePostal": "25110", + "codeCommune": "25183", + "libelleAcheminement": "CUSANCE", + "nomCommune": "CUSANCE" }, { - "codePostal": "67250", - "codeCommune": "67288", - "libelleAcheminement": "MEMMELSHOFFEN", - "nomCommune": "MEMMELSHOFFEN" + "codePostal": "26110", + "codeCommune": "26244", + "libelleAcheminement": "LE POET SIGILLAT", + "nomCommune": "LE POET SIGILLAT" }, { - "codePostal": "62650", - "codeCommune": "62062", - "libelleAcheminement": "AVESNES", - "nomCommune": "AVESNES" + "codePostal": "35580", + "codeCommune": "35312", + "libelleAcheminement": "ST SENOUX", + "nomCommune": "ST SENOUX" }, { - "codePostal": "29100", - "codeCommune": "29046", - "libelleAcheminement": "DOUARNENEZ", - "nomCommune": "DOUARNENEZ" + "codePostal": "35530", + "codeCommune": "35207", + "libelleAcheminement": "NOYAL SUR VILAINE", + "nomCommune": "NOYAL SUR VILAINE" }, { - "codePostal": "54320", - "codeCommune": "54357", - "libelleAcheminement": "MAXEVILLE", - "nomCommune": "MAXEVILLE" + "codePostal": "25600", + "codeCommune": "25188", + "libelleAcheminement": "DAMBENOIS", + "nomCommune": "DAMBENOIS" }, { - "codePostal": "67580", - "codeCommune": "67292", - "libelleAcheminement": "MIETESHEIM", - "nomCommune": "MIETESHEIM" + "codePostal": "26470", + "codeCommune": "26245", + "libelleAcheminement": "POMMEROL", + "nomCommune": "POMMEROL" }, { - "codePostal": "62450", - "codeCommune": "62064", - "libelleAcheminement": "AVESNES LES BAPAUME", - "nomCommune": "AVESNES LES BAPAUME" + "codePostal": "35190", + "codeCommune": "35318", + "libelleAcheminement": "ST THUAL", + "nomCommune": "ST THUAL" }, { - "codePostal": "29590", - "codeCommune": "29053", - "libelleAcheminement": "LE FAOU", - "nomCommune": "LE FAOU" + "codePostal": "35610", + "codeCommune": "35222", + "libelleAcheminement": "PLEINE FOUGERES", + "nomCommune": "PLEINE FOUGERES" }, { - "codePostal": "54560", - "codeCommune": "54363", - "libelleAcheminement": "MERCY LE HAUT", - "nomCommune": "MERCY LE HAUT" + "codePostal": "25310", + "codeCommune": "25194", + "libelleAcheminement": "DANNEMARIE", + "nomCommune": "DANNEMARIE" }, { - "codePostal": "67270", - "codeCommune": "67293", - "libelleAcheminement": "MINVERSHEIM", - "nomCommune": "MINVERSHEIM" + "codePostal": "26600", + "codeCommune": "26250", + "libelleAcheminement": "PONT DE L ISERE", + "nomCommune": "PONT DE L ISERE" }, { - "codePostal": "62310", - "codeCommune": "62066", - "libelleAcheminement": "AVONDANCE", - "nomCommune": "AVONDANCE" + "codePostal": "35320", + "codeCommune": "35321", + "libelleAcheminement": "SAULNIERES", + "nomCommune": "SAULNIERES" }, { - "codePostal": "29940", - "codeCommune": "29057", - "libelleAcheminement": "LA FORET FOUESNANT", - "nomCommune": "LA FORET FOUESNANT" + "codePostal": "35380", + "codeCommune": "35223", + "libelleAcheminement": "PLELAN LE GRAND", + "nomCommune": "PLELAN LE GRAND" }, { - "codePostal": "54560", - "codeCommune": "54363", - "libelleAcheminement": "MERCY LE HAUT", - "nomCommune": "MERCY LE HAUT" + "codePostal": "25960", + "codeCommune": "25197", + "libelleAcheminement": "DELUZ", + "nomCommune": "DELUZ" }, { - "codePostal": "67140", - "codeCommune": "67295", - "libelleAcheminement": "MITTELBERGHEIM", - "nomCommune": "MITTELBERGHEIM" + "codePostal": "26310", + "codeCommune": "26253", + "libelleAcheminement": "POYOLS", + "nomCommune": "POYOLS" }, { - "codePostal": "62310", - "codeCommune": "62069", - "libelleAcheminement": "AZINCOURT", - "nomCommune": "AZINCOURT" + "codePostal": "35130", + "codeCommune": "35325", + "libelleAcheminement": "LA SELLE GUERCHAISE", + "nomCommune": "LA SELLE GUERCHAISE" }, { - "codePostal": "29410", - "codeCommune": "29068", - "libelleAcheminement": "GUICLAN", - "nomCommune": "GUICLAN" + "codePostal": "35730", + "codeCommune": "35228", + "libelleAcheminement": "PLEURTUIT", + "nomCommune": "PLEURTUIT" }, { - "codePostal": "54580", - "codeCommune": "54371", - "libelleAcheminement": "MOINEVILLE", - "nomCommune": "MOINEVILLE" + "codePostal": "25300", + "codeCommune": "25201", + "libelleAcheminement": "DOMMARTIN", + "nomCommune": "DOMMARTIN" }, { - "codePostal": "67350", - "codeCommune": "67307", - "libelleAcheminement": "MULHAUSEN", - "nomCommune": "MULHAUSEN" + "codePostal": "26340", + "codeCommune": "26254", + "libelleAcheminement": "PRADELLE", + "nomCommune": "PRADELLE" }, { - "codePostal": "62550", - "codeCommune": "62071", - "libelleAcheminement": "BAILLEUL LES PERNES", - "nomCommune": "BAILLEUL LES PERNES" + "codePostal": "35620", + "codeCommune": "35332", + "libelleAcheminement": "TEILLAY", + "nomCommune": "TEILLAY" }, { - "codePostal": "29400", - "codeCommune": "29074", - "libelleAcheminement": "GUIMILIAU", - "nomCommune": "GUIMILIAU" + "codePostal": "35190", + "codeCommune": "35233", + "libelleAcheminement": "QUEBRIAC", + "nomCommune": "QUEBRIAC" }, { - "codePostal": "54300", - "codeCommune": "54373", - "libelleAcheminement": "MONCEL LES LUNEVILLE", - "nomCommune": "MONCEL LES LUNEVILLE" + "codePostal": "25150", + "codeCommune": "25214", + "libelleAcheminement": "ECOT", + "nomCommune": "ECOT" }, { - "codePostal": "67480", - "codeCommune": "67319", - "libelleAcheminement": "NEUHAEUSEL", - "nomCommune": "NEUHAEUSEL" + "codePostal": "26310", + "codeCommune": "26255", + "libelleAcheminement": "LES PRES", + "nomCommune": "LES PRES" }, { - "codePostal": "62580", - "codeCommune": "62073", - "libelleAcheminement": "BAILLEUL SIR BERTHOULT", - "nomCommune": "BAILLEUL SIR BERTHOULT" + "codePostal": "35680", + "codeCommune": "35350", + "libelleAcheminement": "VERGEAL", + "nomCommune": "VERGEAL" }, { - "codePostal": "29670", - "codeCommune": "29079", - "libelleAcheminement": "HENVIC", - "nomCommune": "HENVIC" + "codePostal": "35700", + "codeCommune": "35238", + "libelleAcheminement": "RENNES", + "nomCommune": "RENNES" }, { - "codePostal": "54870", - "codeCommune": "54378", - "libelleAcheminement": "MONTIGNY SUR CHIERS", - "nomCommune": "MONTIGNY SUR CHIERS" + "codePostal": "25330", + "codeCommune": "25223", + "libelleAcheminement": "ETERNOZ", + "nomCommune": "ETERNOZ" }, { - "codePostal": "67130", - "codeCommune": "67321", - "libelleAcheminement": "NEUVILLER LA ROCHE", - "nomCommune": "NEUVILLER LA ROCHE" + "codePostal": "26170", + "codeCommune": "26256", + "libelleAcheminement": "PROPIAC", + "nomCommune": "PROPIAC" }, { - "codePostal": "62860", - "codeCommune": "62081", - "libelleAcheminement": "BARALLE", - "nomCommune": "BARALLE" + "codePostal": "35610", + "codeCommune": "35354", + "libelleAcheminement": "VIEUX VIEL", + "nomCommune": "VIEUX VIEL" }, { - "codePostal": "29890", - "codeCommune": "29091", - "libelleAcheminement": "KERLOUAN", - "nomCommune": "KERLOUAN" + "codePostal": "35240", + "codeCommune": "35239", + "libelleAcheminement": "RETIERS", + "nomCommune": "RETIERS" }, { - "codePostal": "54370", - "codeCommune": "54388", - "libelleAcheminement": "MOUACOURT", - "nomCommune": "MOUACOURT" + "codePostal": "25170", + "codeCommune": "25225", + "libelleAcheminement": "ETRABONNE", + "nomCommune": "ETRABONNE" }, { - "codePostal": "67330", - "codeCommune": "67322", - "libelleAcheminement": "NEUWILLER LES SAVERNE", - "nomCommune": "NEUWILLER LES SAVERNE" + "codePostal": "26340", + "codeCommune": "26266", + "libelleAcheminement": "RIMON ET SAVEL", + "nomCommune": "RIMON ET SAVEL" }, { - "codePostal": "62124", - "codeCommune": "62082", - "libelleAcheminement": "BARASTRE", - "nomCommune": "BARASTRE" + "codePostal": "35420", + "codeCommune": "35357", + "libelleAcheminement": "VILLAMEE", + "nomCommune": "VILLAMEE" }, { - "codePostal": "29860", - "codeCommune": "29095", - "libelleAcheminement": "KERSAINT PLABENNEC", - "nomCommune": "KERSAINT PLABENNEC" + "codePostal": "35650", + "codeCommune": "35240", + "libelleAcheminement": "LE RHEU", + "nomCommune": "LE RHEU" }, { - "codePostal": "54450", - "codeCommune": "54401", - "libelleAcheminement": "NONHIGNY", - "nomCommune": "NONHIGNY" + "codePostal": "25400", + "codeCommune": "25230", + "libelleAcheminement": "EXINCOURT", + "nomCommune": "EXINCOURT" }, { - "codePostal": "67207", - "codeCommune": "67326", - "libelleAcheminement": "NIEDERHAUSBERGEN", - "nomCommune": "NIEDERHAUSBERGEN" + "codePostal": "26170", + "codeCommune": "26267", + "libelleAcheminement": "RIOMS", + "nomCommune": "RIOMS" }, { - "codePostal": "62158", - "codeCommune": "62086", - "libelleAcheminement": "BAVINCOURT", - "nomCommune": "BAVINCOURT" + "codePostal": "35960", + "codeCommune": "35361", + "libelleAcheminement": "LE VIVIER SUR MER", + "nomCommune": "LE VIVIER SUR MER" }, { - "codePostal": "29400", - "codeCommune": "29097", - "libelleAcheminement": "LAMPAUL GUIMILIAU", - "nomCommune": "LAMPAUL GUIMILIAU" + "codePostal": "35230", + "codeCommune": "35250", + "libelleAcheminement": "ST ARMEL", + "nomCommune": "ST ARMEL" }, { - "codePostal": "54330", - "codeCommune": "54409", - "libelleAcheminement": "OMELMONT", - "nomCommune": "OMELMONT" + "codePostal": "25530", + "codeCommune": "25231", + "libelleAcheminement": "EYSSON", + "nomCommune": "EYSSON" }, { - "codePostal": "67630", - "codeCommune": "67327", - "libelleAcheminement": "NIEDERLAUTERBACH", - "nomCommune": "NIEDERLAUTERBACH" + "codePostal": "26110", + "codeCommune": "26269", + "libelleAcheminement": "ROCHEBRUNE", + "nomCommune": "ROCHEBRUNE" }, { - "codePostal": "62770", - "codeCommune": "62090", - "libelleAcheminement": "BEALENCOURT", - "nomCommune": "BEALENCOURT" + "codePostal": "36110", + "codeCommune": "36013", + "libelleAcheminement": "BAUDRES", + "nomCommune": "BAUDRES" }, { - "codePostal": "29530", - "codeCommune": "29102", - "libelleAcheminement": "LANDELEAU", - "nomCommune": "LANDELEAU" + "codePostal": "35190", + "codeCommune": "35265", + "libelleAcheminement": "ST DOMINEUC", + "nomCommune": "ST DOMINEUC" }, { - "codePostal": "54740", - "codeCommune": "54411", - "libelleAcheminement": "ORMES ET VILLE", - "nomCommune": "ORMES ET VILLE" + "codePostal": "25410", + "codeCommune": "25235", + "libelleAcheminement": "FERRIERES LES BOIS", + "nomCommune": "FERRIERES LES BOIS" }, { - "codePostal": "67330", - "codeCommune": "67333", - "libelleAcheminement": "NIEDERSOULTZBACH", - "nomCommune": "NIEDERSOULTZBACH" + "codePostal": "26160", + "codeCommune": "26272", + "libelleAcheminement": "ROCHEFORT EN VALDAINE", + "nomCommune": "ROCHEFORT EN VALDAINE" }, { - "codePostal": "62450", - "codeCommune": "62093", - "libelleAcheminement": "BEAULENCOURT", - "nomCommune": "BEAULENCOURT" + "codePostal": "36310", + "codeCommune": "36015", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "29560", - "codeCommune": "29104", - "libelleAcheminement": "LANDEVENNEC", - "nomCommune": "LANDEVENNEC" + "codePostal": "35610", + "codeCommune": "35270", + "libelleAcheminement": "ST GEORGES DE GREHAIGNE", + "nomCommune": "ST GEORGES DE GREHAIGNE" }, { - "codePostal": "54150", - "codeCommune": "54413", - "libelleAcheminement": "OZERAILLES", - "nomCommune": "OZERAILLES" + "codePostal": "25440", + "codeCommune": "25253", + "libelleAcheminement": "FOURG", + "nomCommune": "FOURG" }, { - "codePostal": "67660", - "codeCommune": "67339", - "libelleAcheminement": "BETSCHDORF", - "nomCommune": "BETSCHDORF" + "codePostal": "26340", + "codeCommune": "26274", + "libelleAcheminement": "ROCHEFOURCHAT", + "nomCommune": "ROCHEFOURCHAT" }, { - "codePostal": "62600", - "codeCommune": "62108", - "libelleAcheminement": "BERCK", - "nomCommune": "BERCK" + "codePostal": "36100", + "codeCommune": "36021", + "libelleAcheminement": "LES BORDES", + "nomCommune": "LES BORDES" }, { - "codePostal": "29510", - "codeCommune": "29107", - "libelleAcheminement": "LANDUDAL", - "nomCommune": "LANDUDAL" + "codePostal": "35370", + "codeCommune": "35272", + "libelleAcheminement": "ST GERMAIN DU PINEL", + "nomCommune": "ST GERMAIN DU PINEL" }, { - "codePostal": "54480", - "codeCommune": "54419", - "libelleAcheminement": "PARUX", - "nomCommune": "PARUX" + "codePostal": "25250", + "codeCommune": "25264", + "libelleAcheminement": "GEMONVAL", + "nomCommune": "GEMONVAL" }, { - "codePostal": "67660", - "codeCommune": "67339", - "libelleAcheminement": "BETSCHDORF", - "nomCommune": "BETSCHDORF" + "codePostal": "26790", + "codeCommune": "26275", + "libelleAcheminement": "ROCHEGUDE", + "nomCommune": "ROCHEGUDE" }, { - "codePostal": "62123", - "codeCommune": "62115", - "libelleAcheminement": "BERNEVILLE", - "nomCommune": "BERNEVILLE" + "codePostal": "36100", + "codeCommune": "36027", + "libelleAcheminement": "BRIVES", + "nomCommune": "BRIVES" }, { - "codePostal": "29840", - "codeCommune": "29109", - "libelleAcheminement": "LANDUNVEZ", - "nomCommune": "LANDUNVEZ" + "codePostal": "35590", + "codeCommune": "35275", + "libelleAcheminement": "ST GILLES", + "nomCommune": "ST GILLES" }, { - "codePostal": "54260", - "codeCommune": "54420", - "libelleAcheminement": "PETIT FAILLY", - "nomCommune": "PETIT FAILLY" + "codePostal": "25310", + "codeCommune": "25274", + "libelleAcheminement": "GLAY", + "nomCommune": "GLAY" }, { - "codePostal": "67660", - "codeCommune": "67339", - "libelleAcheminement": "BETSCHDORF", - "nomCommune": "BETSCHDORF" + "codePostal": "26150", + "codeCommune": "26282", + "libelleAcheminement": "ROMEYER", + "nomCommune": "ROMEYER" }, { - "codePostal": "62400", - "codeCommune": "62119", - "libelleAcheminement": "BETHUNE", - "nomCommune": "BETHUNE" + "codePostal": "36150", + "codeCommune": "36029", + "libelleAcheminement": "BUXEUIL", + "nomCommune": "BUXEUIL" }, { - "codePostal": "29430", - "codeCommune": "29111", - "libelleAcheminement": "LANHOUARNEAU", - "nomCommune": "LANHOUARNEAU" + "codePostal": "35140", + "codeCommune": "35282", + "libelleAcheminement": "RIVES DU COUESNON", + "nomCommune": "RIVES DU COUESNON" }, { - "codePostal": "54200", - "codeCommune": "54426", - "libelleAcheminement": "PIERRE LA TREICHE", - "nomCommune": "PIERRE LA TREICHE" + "codePostal": "25340", + "codeCommune": "25276", + "libelleAcheminement": "GONDENANS MONTBY", + "nomCommune": "GONDENANS MONTBY" }, { - "codePostal": "67110", - "codeCommune": "67340", - "libelleAcheminement": "OBERBRONN", - "nomCommune": "OBERBRONN" + "codePostal": "26420", + "codeCommune": "26290", + "libelleAcheminement": "ST AGNAN EN VERCORS", + "nomCommune": "ST AGNAN EN VERCORS" }, { - "codePostal": "62150", - "codeCommune": "62120", - "libelleAcheminement": "BEUGIN", - "nomCommune": "BEUGIN" + "codePostal": "36500", + "codeCommune": "36031", + "libelleAcheminement": "BUZANCAIS", + "nomCommune": "BUZANCAIS" }, { - "codePostal": "29190", - "codeCommune": "29115", - "libelleAcheminement": "LANNEDERN", - "nomCommune": "LANNEDERN" + "codePostal": "35140", + "codeCommune": "35282", + "libelleAcheminement": "RIVES DU COUESNON", + "nomCommune": "RIVES DU COUESNON" }, { - "codePostal": "54160", - "codeCommune": "54429", - "libelleAcheminement": "PIERREVILLE", - "nomCommune": "PIERREVILLE" + "codePostal": "25200", + "codeCommune": "25284", + "libelleAcheminement": "GRAND CHARMONT", + "nomCommune": "GRAND CHARMONT" }, { - "codePostal": "67280", - "codeCommune": "67342", - "libelleAcheminement": "OBERHASLACH", - "nomCommune": "OBERHASLACH" + "codePostal": "26260", + "codeCommune": "26301", + "libelleAcheminement": "ST DONAT SUR L HERBASSE", + "nomCommune": "ST DONAT SUR L HERBASSE" }, { - "codePostal": "62124", - "codeCommune": "62122", - "libelleAcheminement": "BEUGNY", - "nomCommune": "BEUGNY" + "codePostal": "36200", + "codeCommune": "36033", + "libelleAcheminement": "CELON", + "nomCommune": "CELON" }, { - "codePostal": "29400", - "codeCommune": "29116", - "libelleAcheminement": "LANNEUFFRET", - "nomCommune": "LANNEUFFRET" + "codePostal": "35270", + "codeCommune": "35286", + "libelleAcheminement": "ST LEGER DES PRES", + "nomCommune": "ST LEGER DES PRES" }, { - "codePostal": "54340", - "codeCommune": "54430", - "libelleAcheminement": "POMPEY", - "nomCommune": "POMPEY" + "codePostal": "25320", + "codeCommune": "25287", + "libelleAcheminement": "GRANDFONTAINE", + "nomCommune": "GRANDFONTAINE" }, { - "codePostal": "67160", - "codeCommune": "67344", - "libelleAcheminement": "OBERHOFFEN LES WISSEMBOURG", - "nomCommune": "OBERHOFFEN LES WISSEMBOURG" + "codePostal": "26170", + "codeCommune": "26303", + "libelleAcheminement": "STE EUPHEMIE SUR OUVEZE", + "nomCommune": "STE EUPHEMIE SUR OUVEZE" }, { - "codePostal": "62660", - "codeCommune": "62126", - "libelleAcheminement": "BEUVRY", - "nomCommune": "BEUVRY" + "codePostal": "36370", + "codeCommune": "36036", + "libelleAcheminement": "CHALAIS", + "nomCommune": "CHALAIS" }, { - "codePostal": "29870", - "codeCommune": "29117", - "libelleAcheminement": "LANNILIS", - "nomCommune": "LANNILIS" + "codePostal": "35400", + "codeCommune": "35288", + "libelleAcheminement": "ST MALO", + "nomCommune": "ST MALO" }, { - "codePostal": "54425", - "codeCommune": "54439", - "libelleAcheminement": "PULNOY", - "nomCommune": "PULNOY" + "codePostal": "25390", + "codeCommune": "25288", + "libelleAcheminement": "FOURNETS LUISANS", + "nomCommune": "FOURNETS LUISANS" }, { - "codePostal": "67330", - "codeCommune": "67347", - "libelleAcheminement": "OBERMODERN ZUTZENDORF", - "nomCommune": "OBERMODERN ZUTZENDORF" + "codePostal": "26350", + "codeCommune": "26310", + "libelleAcheminement": "ST LAURENT D ONAY", + "nomCommune": "ST LAURENT D ONAY" }, { - "codePostal": "62380", - "codeCommune": "62140", - "libelleAcheminement": "BLEQUIN", - "nomCommune": "BLEQUIN" + "codePostal": "36400", + "codeCommune": "36046", + "libelleAcheminement": "LA CHATRE", + "nomCommune": "LA CHATRE" }, { - "codePostal": "29190", - "codeCommune": "29123", - "libelleAcheminement": "LENNON", - "nomCommune": "LENNON" + "codePostal": "35750", + "codeCommune": "35290", + "libelleAcheminement": "ST MALON SUR MEL", + "nomCommune": "ST MALON SUR MEL" }, { - "codePostal": "54800", - "codeCommune": "54440", - "libelleAcheminement": "PUXE", - "nomCommune": "PUXE" + "codePostal": "25300", + "codeCommune": "25293", + "libelleAcheminement": "GRANGES NARBOZ", + "nomCommune": "GRANGES NARBOZ" }, { - "codePostal": "67203", - "codeCommune": "67350", - "libelleAcheminement": "OBERSCHAEFFOLSHEIM", - "nomCommune": "OBERSCHAEFFOLSHEIM" + "codePostal": "26330", + "codeCommune": "26314", + "libelleAcheminement": "ST MARTIN D AOUT", + "nomCommune": "ST MARTIN D AOUT" }, { - "codePostal": "62120", - "codeCommune": "62141", - "libelleAcheminement": "BLESSY", - "nomCommune": "BLESSY" + "codePostal": "36800", + "codeCommune": "36051", + "libelleAcheminement": "CHITRAY", + "nomCommune": "CHITRAY" }, { - "codePostal": "29260", - "codeCommune": "29124", - "libelleAcheminement": "LESNEVEN", - "nomCommune": "LESNEVEN" + "codePostal": "35460", + "codeCommune": "35292", + "libelleAcheminement": "ST MARC LE BLANC", + "nomCommune": "ST MARC LE BLANC" }, { - "codePostal": "54800", - "codeCommune": "54441", - "libelleAcheminement": "PUXIEUX", - "nomCommune": "PUXIEUX" + "codePostal": "25790", + "codeCommune": "25296", + "libelleAcheminement": "LES GRAS", + "nomCommune": "LES GRAS" }, { - "codePostal": "67160", - "codeCommune": "67351", - "libelleAcheminement": "SEEBACH", - "nomCommune": "SEEBACH" + "codePostal": "26190", + "codeCommune": "26316", + "libelleAcheminement": "ST MARTIN LE COLONEL", + "nomCommune": "ST MARTIN LE COLONEL" }, { - "codePostal": "62128", - "codeCommune": "62144", - "libelleAcheminement": "BOIRY BECQUERELLE", - "nomCommune": "BOIRY BECQUERELLE" + "codePostal": "36340", + "codeCommune": "36056", + "libelleAcheminement": "CLUIS", + "nomCommune": "CLUIS" }, { - "codePostal": "29390", - "codeCommune": "29125", - "libelleAcheminement": "LEUHAN", - "nomCommune": "LEUHAN" + "codePostal": "35140", + "codeCommune": "35304", + "libelleAcheminement": "ST OUEN DES ALLEUX", + "nomCommune": "ST OUEN DES ALLEUX" }, { - "codePostal": "54540", - "codeCommune": "54443", - "libelleAcheminement": "RAON LES LEAU", - "nomCommune": "RAON LES LEAU" + "codePostal": "25620", + "codeCommune": "25297", + "libelleAcheminement": "LE GRATTERIS", + "nomCommune": "LE GRATTERIS" }, { - "codePostal": "67850", - "codeCommune": "67356", - "libelleAcheminement": "OFFENDORF", - "nomCommune": "OFFENDORF" + "codePostal": "26510", + "codeCommune": "26318", + "libelleAcheminement": "ST MAY", + "nomCommune": "ST MAY" }, { - "codePostal": "62500", - "codeCommune": "62149", - "libelleAcheminement": "BOISDINGHEM", - "nomCommune": "BOISDINGHEM" + "codePostal": "36300", + "codeCommune": "36058", + "libelleAcheminement": "CONCREMIERS", + "nomCommune": "CONCREMIERS" }, { - "codePostal": "29280", - "codeCommune": "29130", - "libelleAcheminement": "LOCMARIA PLOUZANE", - "nomCommune": "LOCMARIA PLOUZANE" + "codePostal": "35560", + "codeCommune": "35309", + "libelleAcheminement": "ST REMY DU PLAIN", + "nomCommune": "ST REMY DU PLAIN" }, { - "codePostal": "54610", - "codeCommune": "54444", - "libelleAcheminement": "RAUCOURT", - "nomCommune": "RAUCOURT" + "codePostal": "25370", + "codeCommune": "25307", + "libelleAcheminement": "LES HOPITAUX NEUFS", + "nomCommune": "LES HOPITAUX NEUFS" }, { - "codePostal": "67170", - "codeCommune": "67361", - "libelleAcheminement": "OLWISHEIM", - "nomCommune": "OLWISHEIM" + "codePostal": "26340", + "codeCommune": "26321", + "libelleAcheminement": "ST NAZAIRE LE DESERT", + "nomCommune": "ST NAZAIRE LE DESERT" }, { - "codePostal": "62175", - "codeCommune": "62151", - "libelleAcheminement": "BOISLEUX AU MONT", - "nomCommune": "BOISLEUX AU MONT" + "codePostal": "36260", + "codeCommune": "36065", + "libelleAcheminement": "DIOU", + "nomCommune": "DIOU" }, { - "codePostal": "29180", - "codeCommune": "29134", - "libelleAcheminement": "LOCRONAN", - "nomCommune": "LOCRONAN" + "codePostal": "35630", + "codeCommune": "35317", + "libelleAcheminement": "ST SYMPHORIEN", + "nomCommune": "ST SYMPHORIEN" }, { - "codePostal": "54120", - "codeCommune": "54450", - "libelleAcheminement": "REHERREY", - "nomCommune": "REHERREY" + "codePostal": "25680", + "codeCommune": "25310", + "libelleAcheminement": "HUANNE MONTMARTIN", + "nomCommune": "HUANNE MONTMARTIN" }, { - "codePostal": "67990", - "codeCommune": "67363", - "libelleAcheminement": "OSTHOFFEN", - "nomCommune": "OSTHOFFEN" + "codePostal": "26770", + "codeCommune": "26335", + "libelleAcheminement": "SALLES SOUS BOIS", + "nomCommune": "SALLES SOUS BOIS" }, { - "codePostal": "62175", - "codeCommune": "62152", - "libelleAcheminement": "BOISLEUX ST MARC", - "nomCommune": "BOISLEUX ST MARC" + "codePostal": "36180", + "codeCommune": "36080", + "libelleAcheminement": "FREDILLE", + "nomCommune": "FREDILLE" }, { - "codePostal": "29460", - "codeCommune": "29137", - "libelleAcheminement": "LOGONNA DAOULAS", - "nomCommune": "LOGONNA DAOULAS" + "codePostal": "35320", + "codeCommune": "35322", + "libelleAcheminement": "LE SEL DE BRETAGNE", + "nomCommune": "LE SEL DE BRETAGNE" }, { - "codePostal": "54430", - "codeCommune": "54451", - "libelleAcheminement": "REHON", - "nomCommune": "REHON" + "codePostal": "25470", + "codeCommune": "25314", + "libelleAcheminement": "INDEVILLERS", + "nomCommune": "INDEVILLERS" }, { - "codePostal": "67530", - "codeCommune": "67368", - "libelleAcheminement": "OTTROTT", - "nomCommune": "OTTROTT" + "codePostal": "26400", + "codeCommune": "26336", + "libelleAcheminement": "SAOU", + "nomCommune": "SAOU" }, { - "codePostal": "62270", - "codeCommune": "62154", - "libelleAcheminement": "BONNIERES", - "nomCommune": "BONNIERES" + "codePostal": "36180", + "codeCommune": "36086", + "libelleAcheminement": "HEUGNES", + "nomCommune": "HEUGNES" }, { - "codePostal": "29190", - "codeCommune": "29142", - "libelleAcheminement": "LOTHEY", - "nomCommune": "LOTHEY" + "codePostal": "35530", + "codeCommune": "35327", + "libelleAcheminement": "SERVON SUR VILAINE", + "nomCommune": "SERVON SUR VILAINE" }, { - "codePostal": "54450", - "codeCommune": "54458", - "libelleAcheminement": "REPAIX", - "nomCommune": "REPAIX" + "codePostal": "25250", + "codeCommune": "25315", + "libelleAcheminement": "L ISLE SUR LE DOUBS", + "nomCommune": "L ISLE SUR LE DOUBS" }, { - "codePostal": "67370", - "codeCommune": "67375", - "libelleAcheminement": "PFULGRIESHEIM", - "nomCommune": "PFULGRIESHEIM" + "codePostal": "26270", + "codeCommune": "26337", + "libelleAcheminement": "SAULCE SUR RHONE", + "nomCommune": "SAULCE SUR RHONE" }, { - "codePostal": "62890", - "codeCommune": "62155", - "libelleAcheminement": "BONNINGUES LES ARDRES", - "nomCommune": "BONNINGUES LES ARDRES" + "codePostal": "36240", + "codeCommune": "36090", + "libelleAcheminement": "JEU MALOCHES", + "nomCommune": "JEU MALOCHES" }, { - "codePostal": "29790", - "codeCommune": "29145", - "libelleAcheminement": "CONFORT MEILARS", - "nomCommune": "CONFORT MEILARS" + "codePostal": "35550", + "codeCommune": "35328", + "libelleAcheminement": "SIXT SUR AFF", + "nomCommune": "SIXT SUR AFF" }, { - "codePostal": "54610", - "codeCommune": "54464", - "libelleAcheminement": "ROUVES", - "nomCommune": "ROUVES" + "codePostal": "25360", + "codeCommune": "25324", + "libelleAcheminement": "LANANS", + "nomCommune": "LANANS" }, { - "codePostal": "67420", - "codeCommune": "67377", - "libelleAcheminement": "PLAINE", - "nomCommune": "PLAINE" + "codePostal": "26560", + "codeCommune": "26340", + "libelleAcheminement": "SEDERON", + "nomCommune": "SEDERON" }, { - "codePostal": "62340", - "codeCommune": "62156", - "libelleAcheminement": "BONNINGUES LES CALAIS", - "nomCommune": "BONNINGUES LES CALAIS" + "codePostal": "36370", + "codeCommune": "36094", + "libelleAcheminement": "LIGNAC", + "nomCommune": "LIGNAC" }, { - "codePostal": "29140", - "codeCommune": "29146", - "libelleAcheminement": "MELGVEN", - "nomCommune": "MELGVEN" + "codePostal": "35500", + "codeCommune": "35330", + "libelleAcheminement": "TAILLIS", + "nomCommune": "TAILLIS" }, { - "codePostal": "54580", - "codeCommune": "54469", - "libelleAcheminement": "ST AIL", - "nomCommune": "ST AIL" + "codePostal": "25250", + "codeCommune": "25327", + "libelleAcheminement": "LANTHENANS", + "nomCommune": "LANTHENANS" }, { - "codePostal": "67350", - "codeCommune": "67403", - "libelleAcheminement": "RINGENDORF", - "nomCommune": "RINGENDORF" + "codePostal": "26600", + "codeCommune": "26347", + "libelleAcheminement": "TAIN L HERMITAGE", + "nomCommune": "TAIN L HERMITAGE" }, { - "codePostal": "62270", - "codeCommune": "62158", - "libelleAcheminement": "BOUBERS SUR CANCHE", - "nomCommune": "BOUBERS SUR CANCHE" + "codePostal": "36400", + "codeCommune": "36109", + "libelleAcheminement": "LE MAGNY", + "nomCommune": "LE MAGNY" }, { - "codePostal": "29270", - "codeCommune": "29152", - "libelleAcheminement": "MOTREFF", - "nomCommune": "MOTREFF" + "codePostal": "35370", + "codeCommune": "35338", + "libelleAcheminement": "TORCE", + "nomCommune": "TORCE" }, { - "codePostal": "54470", - "codeCommune": "54470", - "libelleAcheminement": "ST BAUSSANT", - "nomCommune": "ST BAUSSANT" + "codePostal": "25110", + "codeCommune": "25341", + "libelleAcheminement": "LOMONT SUR CRETE", + "nomCommune": "LOMONT SUR CRETE" }, { - "codePostal": "67270", - "codeCommune": "67406", - "libelleAcheminement": "ROHR", - "nomCommune": "ROHR" + "codePostal": "26460", + "codeCommune": "26351", + "libelleAcheminement": "LES TONILS", + "nomCommune": "LES TONILS" }, { - "codePostal": "62550", - "codeCommune": "62166", - "libelleAcheminement": "BOURS", - "nomCommune": "BOURS" + "codePostal": "36500", + "codeCommune": "36118", + "libelleAcheminement": "MEOBECQ", + "nomCommune": "MEOBECQ" }, { - "codePostal": "29710", - "codeCommune": "29159", - "libelleAcheminement": "PEUMERIT", - "nomCommune": "PEUMERIT" + "codePostal": "35610", + "codeCommune": "35339", + "libelleAcheminement": "TRANS LA FORET", + "nomCommune": "TRANS LA FORET" }, { - "codePostal": "54700", - "codeCommune": "54474", - "libelleAcheminement": "STE GENEVIEVE", - "nomCommune": "STE GENEVIEVE" + "codePostal": "25210", + "codeCommune": "25351", + "libelleAcheminement": "LE LUHIER", + "nomCommune": "LE LUHIER" }, { - "codePostal": "67560", - "codeCommune": "67410", - "libelleAcheminement": "ROSENWILLER", - "nomCommune": "ROSENWILLER" + "codePostal": "26510", + "codeCommune": "26376", + "libelleAcheminement": "VILLEPERDRIX", + "nomCommune": "VILLEPERDRIX" }, { - "codePostal": "62380", - "codeCommune": "62169", - "libelleAcheminement": "BOUVELINGHEM", - "nomCommune": "BOUVELINGHEM" + "codePostal": "36290", + "codeCommune": "36123", + "libelleAcheminement": "MEZIERES EN BRENNE", + "nomCommune": "MEZIERES EN BRENNE" }, { - "codePostal": "29550", - "codeCommune": "29166", - "libelleAcheminement": "PLOEVEN", - "nomCommune": "PLOEVEN" + "codePostal": "35190", + "codeCommune": "35345", + "libelleAcheminement": "TREVERIEN", + "nomCommune": "TREVERIEN" }, { - "codePostal": "54210", - "codeCommune": "54483", - "libelleAcheminement": "ST NICOLAS DE PORT", - "nomCommune": "ST NICOLAS DE PORT" + "codePostal": "25640", + "codeCommune": "25368", + "libelleAcheminement": "MARCHAUX CHAUDEFONTAINE", + "nomCommune": "MARCHAUX CHAUDEFONTAINE" }, { - "codePostal": "67170", - "codeCommune": "67417", - "libelleAcheminement": "ROTTELSHEIM", - "nomCommune": "ROTTELSHEIM" + "codePostal": "27400", + "codeCommune": "27003", + "libelleAcheminement": "ACQUIGNY", + "nomCommune": "ACQUIGNY" }, { - "codePostal": "62170", - "codeCommune": "62177", - "libelleAcheminement": "BRIMEUX", - "nomCommune": "BRIMEUX" + "codePostal": "36800", + "codeCommune": "36124", + "libelleAcheminement": "MIGNE", + "nomCommune": "MIGNE" }, { - "codePostal": "29700", - "codeCommune": "29170", - "libelleAcheminement": "PLOMELIN", - "nomCommune": "PLOMELIN" + "codePostal": "35132", + "codeCommune": "35353", + "libelleAcheminement": "VEZIN LE COQUET", + "nomCommune": "VEZIN LE COQUET" }, { - "codePostal": "54740", - "codeCommune": "54486", - "libelleAcheminement": "ST REMIMONT", - "nomCommune": "ST REMIMONT" + "codePostal": "25620", + "codeCommune": "25375", + "libelleAcheminement": "LES MONTS RONDS", + "nomCommune": "LES MONTS RONDS" }, { - "codePostal": "67420", - "codeCommune": "67424", - "libelleAcheminement": "ST BLAISE LA ROCHE", - "nomCommune": "ST BLAISE LA ROCHE" + "codePostal": "27400", + "codeCommune": "27003", + "libelleAcheminement": "ACQUIGNY", + "nomCommune": "ACQUIGNY" }, { - "codePostal": "62240", - "codeCommune": "62179", - "libelleAcheminement": "BRUNEMBERT", - "nomCommune": "BRUNEMBERT" + "codePostal": "36140", + "codeCommune": "36126", + "libelleAcheminement": "MONTCHEVRIER", + "nomCommune": "MONTCHEVRIER" }, { - "codePostal": "29720", - "codeCommune": "29174", - "libelleAcheminement": "PLONEOUR LANVERN", - "nomCommune": "PLONEOUR LANVERN" + "codePostal": "35490", + "codeCommune": "35355", + "libelleAcheminement": "VIEUX VY SUR COUESNON", + "nomCommune": "VIEUX VY SUR COUESNON" }, { - "codePostal": "54380", - "codeCommune": "54490", - "libelleAcheminement": "SAIZERAIS", - "nomCommune": "SAIZERAIS" + "codePostal": "25310", + "codeCommune": "25378", + "libelleAcheminement": "MESLIERES", + "nomCommune": "MESLIERES" }, { - "codePostal": "67220", - "codeCommune": "67430", - "libelleAcheminement": "ST PIERRE BOIS", - "nomCommune": "ST PIERRE BOIS" + "codePostal": "27500", + "codeCommune": "27006", + "libelleAcheminement": "AIZIER", + "nomCommune": "AIZIER" }, { - "codePostal": "62860", - "codeCommune": "62184", - "libelleAcheminement": "BUISSY", - "nomCommune": "BUISSY" + "codePostal": "36400", + "codeCommune": "36127", + "libelleAcheminement": "MONTGIVRAY", + "nomCommune": "MONTGIVRAY" }, { - "codePostal": "29550", - "codeCommune": "29176", - "libelleAcheminement": "PLONEVEZ PORZAY", - "nomCommune": "PLONEVEZ PORZAY" + "codePostal": "35630", + "codeCommune": "35356", + "libelleAcheminement": "VIGNOC", + "nomCommune": "VIGNOC" }, { - "codePostal": "54115", - "codeCommune": "54494", - "libelleAcheminement": "SAULXEROTTE", - "nomCommune": "SAULXEROTTE" + "codePostal": "25440", + "codeCommune": "25379", + "libelleAcheminement": "MESMAY", + "nomCommune": "MESMAY" }, { - "codePostal": "67160", - "codeCommune": "67432", - "libelleAcheminement": "SALMBACH", - "nomCommune": "SALMBACH" + "codePostal": "27380", + "codeCommune": "27013", + "libelleAcheminement": "AMFREVILLE SOUS LES MONTS", + "nomCommune": "AMFREVILLE SOUS LES MONTS" }, { - "codePostal": "62310", - "codeCommune": "62209", - "libelleAcheminement": "CANLERS", - "nomCommune": "CANLERS" + "codePostal": "36130", + "codeCommune": "36128", + "libelleAcheminement": "MONTIERCHAUME", + "nomCommune": "MONTIERCHAUME" }, { - "codePostal": "29810", - "codeCommune": "29177", - "libelleAcheminement": "PLOUARZEL", - "nomCommune": "PLOUARZEL" + "codePostal": "35540", + "codeCommune": "35362", + "libelleAcheminement": "LE TRONCHET", + "nomCommune": "LE TRONCHET" }, { - "codePostal": "54280", - "codeCommune": "54498", - "libelleAcheminement": "SEICHAMPS", - "nomCommune": "SEICHAMPS" + "codePostal": "25480", + "codeCommune": "25381", + "libelleAcheminement": "MISEREY SALINES", + "nomCommune": "MISEREY SALINES" }, { - "codePostal": "67260", - "codeCommune": "67435", - "libelleAcheminement": "SARREWERDEN", - "nomCommune": "SARREWERDEN" + "codePostal": "27430", + "codeCommune": "27015", + "libelleAcheminement": "ANDE", + "nomCommune": "ANDE" }, { - "codePostal": "62220", - "codeCommune": "62215", - "libelleAcheminement": "CARVIN", - "nomCommune": "CARVIN" + "codePostal": "36400", + "codeCommune": "36130", + "libelleAcheminement": "MONTLEVICQ", + "nomCommune": "MONTLEVICQ" }, { - "codePostal": "29800", - "codeCommune": "29180", - "libelleAcheminement": "PLOUDIRY", - "nomCommune": "PLOUDIRY" + "codePostal": "35131", + "codeCommune": "35363", + "libelleAcheminement": "PONT PEAN", + "nomCommune": "PONT PEAN" }, { - "codePostal": "54170", - "codeCommune": "54500", - "libelleAcheminement": "SELAINCOURT", - "nomCommune": "SELAINCOURT" + "codePostal": "25680", + "codeCommune": "25385", + "libelleAcheminement": "MONTAGNEY SERVIGNEY", + "nomCommune": "MONTAGNEY SERVIGNEY" }, { - "codePostal": "67260", - "codeCommune": "67435", - "libelleAcheminement": "SARREWERDEN", - "nomCommune": "SARREWERDEN" + "codePostal": "27700", + "codeCommune": "27016", + "libelleAcheminement": "LES ANDELYS", + "nomCommune": "LES ANDELYS" }, { - "codePostal": "62158", - "codeCommune": "62216", - "libelleAcheminement": "LA CAUCHIE", - "nomCommune": "LA CAUCHIE" + "codePostal": "36230", + "codeCommune": "36141", + "libelleAcheminement": "NEUVY ST SEPULCHRE", + "nomCommune": "NEUVY ST SEPULCHRE" }, { - "codePostal": "29420", - "codeCommune": "29184", - "libelleAcheminement": "PLOUENAN", - "nomCommune": "PLOUENAN" + "codePostal": "36500", + "codeCommune": "36007", + "libelleAcheminement": "ARGY", + "nomCommune": "ARGY" }, { - "codePostal": "54830", - "codeCommune": "54501", - "libelleAcheminement": "SERANVILLE", - "nomCommune": "SERANVILLE" + "codePostal": "25200", + "codeCommune": "25388", + "libelleAcheminement": "MONTBELIARD", + "nomCommune": "MONTBELIARD" }, { - "codePostal": "67310", - "codeCommune": "67442", - "libelleAcheminement": "SCHARRACHBERGHEIM IRMSTETT", - "nomCommune": "SCHARRACHBERGHEIM IRMSTETT" + "codePostal": "27600", + "codeCommune": "27022", + "libelleAcheminement": "LE VAL D HAZEY", + "nomCommune": "LE VAL D HAZEY" }, { - "codePostal": "62140", - "codeCommune": "62220", - "libelleAcheminement": "CAVRON ST MARTIN", - "nomCommune": "CAVRON ST MARTIN" + "codePostal": "36210", + "codeCommune": "36147", + "libelleAcheminement": "ORVILLE", + "nomCommune": "ORVILLE" }, { - "codePostal": "29440", - "codeCommune": "29187", - "libelleAcheminement": "PLOUGAR", - "nomCommune": "PLOUGAR" + "codePostal": "36110", + "codeCommune": "36023", + "libelleAcheminement": "BOUGES LE CHATEAU", + "nomCommune": "BOUGES LE CHATEAU" }, { - "codePostal": "54560", - "codeCommune": "54504", - "libelleAcheminement": "SERROUVILLE", - "nomCommune": "SERROUVILLE" + "codePostal": "25210", + "codeCommune": "25389", + "libelleAcheminement": "MONTBELIARDOT", + "nomCommune": "MONTBELIARDOT" }, { - "codePostal": "67750", - "codeCommune": "67445", - "libelleAcheminement": "SCHERWILLER", - "nomCommune": "SCHERWILLER" + "codePostal": "27420", + "codeCommune": "27026", + "libelleAcheminement": "AUTHEVERNES", + "nomCommune": "AUTHEVERNES" }, { - "codePostal": "62128", - "codeCommune": "62223", - "libelleAcheminement": "CHERISY", - "nomCommune": "CHERISY" + "codePostal": "36500", + "codeCommune": "36149", + "libelleAcheminement": "PALLUAU SUR INDRE", + "nomCommune": "PALLUAU SUR INDRE" }, { - "codePostal": "29630", - "codeCommune": "29188", - "libelleAcheminement": "PLOUGASNOU", - "nomCommune": "PLOUGASNOU" + "codePostal": "36000", + "codeCommune": "36044", + "libelleAcheminement": "CHATEAUROUX", + "nomCommune": "CHATEAUROUX" }, { - "codePostal": "54610", - "codeCommune": "54508", - "libelleAcheminement": "SIVRY", - "nomCommune": "SIVRY" + "codePostal": "25120", + "codeCommune": "25392", + "libelleAcheminement": "MONT DE VOUGNEY", + "nomCommune": "MONT DE VOUGNEY" }, { - "codePostal": "67240", - "codeCommune": "67450", - "libelleAcheminement": "SCHIRRHOFFEN", - "nomCommune": "SCHIRRHOFFEN" + "codePostal": "27220", + "codeCommune": "27027", + "libelleAcheminement": "LES AUTHIEUX", + "nomCommune": "LES AUTHIEUX" }, { - "codePostal": "62150", - "codeCommune": "62232", - "libelleAcheminement": "LA COMTE", - "nomCommune": "LA COMTE" + "codePostal": "36300", + "codeCommune": "36165", + "libelleAcheminement": "POULIGNY ST PIERRE", + "nomCommune": "POULIGNY ST PIERRE" }, { - "codePostal": "29810", - "codeCommune": "29201", - "libelleAcheminement": "PLOUMOGUER", - "nomCommune": "PLOUMOGUER" + "codePostal": "36700", + "codeCommune": "36045", + "libelleAcheminement": "CHATILLON SUR INDRE", + "nomCommune": "CHATILLON SUR INDRE" }, { - "codePostal": "54110", - "codeCommune": "54509", - "libelleAcheminement": "SOMMERVILLER", - "nomCommune": "SOMMERVILLER" + "codePostal": "25360", + "codeCommune": "25417", + "libelleAcheminement": "NAISEY LES GRANGES", + "nomCommune": "NAISEY LES GRANGES" }, { - "codePostal": "67390", - "codeCommune": "67453", - "libelleAcheminement": "SCHOENAU", - "nomCommune": "SCHOENAU" + "codePostal": "27260", + "codeCommune": "27035", + "libelleAcheminement": "BAILLEUL LA VALLEE", + "nomCommune": "BAILLEUL LA VALLEE" }, { - "codePostal": "62990", - "codeCommune": "62236", - "libelleAcheminement": "CONTES", - "nomCommune": "CONTES" + "codePostal": "36240", + "codeCommune": "36166", + "libelleAcheminement": "PREAUX", + "nomCommune": "PREAUX" }, { - "codePostal": "29400", - "codeCommune": "29204", - "libelleAcheminement": "PLOUNEVENTER", - "nomCommune": "PLOUNEVENTER" + "codePostal": "36170", + "codeCommune": "36049", + "libelleAcheminement": "CHAZELET", + "nomCommune": "CHAZELET" }, { - "codePostal": "54480", - "codeCommune": "54512", - "libelleAcheminement": "TANCONVILLE", - "nomCommune": "TANCONVILLE" + "codePostal": "25210", + "codeCommune": "25421", + "libelleAcheminement": "NARBIEF", + "nomCommune": "NARBIEF" }, { - "codePostal": "67590", - "codeCommune": "67458", - "libelleAcheminement": "SCHWEIGHOUSE SUR MODER", - "nomCommune": "SCHWEIGHOUSE SUR MODER" + "codePostal": "27270", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "62126", - "codeCommune": "62237", - "libelleAcheminement": "CONTEVILLE LES BOULOGNE", - "nomCommune": "CONTEVILLE LES BOULOGNE" + "codePostal": "36170", + "codeCommune": "36174", + "libelleAcheminement": "ROUSSINES", + "nomCommune": "ROUSSINES" }, { - "codePostal": "29270", - "codeCommune": "29205", - "libelleAcheminement": "PLOUNEVEZEL", - "nomCommune": "PLOUNEVEZEL" + "codePostal": "36300", + "codeCommune": "36053", + "libelleAcheminement": "CIRON", + "nomCommune": "CIRON" }, { - "codePostal": "54330", - "codeCommune": "54515", - "libelleAcheminement": "THELOD", - "nomCommune": "THELOD" + "codePostal": "25150", + "codeCommune": "25422", + "libelleAcheminement": "NEUCHATEL URTIERE", + "nomCommune": "NEUCHATEL URTIERE" }, { - "codePostal": "67260", - "codeCommune": "67468", - "libelleAcheminement": "SILTZHEIM", - "nomCommune": "SILTZHEIM" + "codePostal": "27330", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "62112", - "codeCommune": "62240", - "libelleAcheminement": "CORBEHEM", - "nomCommune": "CORBEHEM" + "codePostal": "36110", + "codeCommune": "36175", + "libelleAcheminement": "ROUVRES LES BOIS", + "nomCommune": "ROUVRES LES BOIS" }, { - "codePostal": "29430", - "codeCommune": "29206", - "libelleAcheminement": "PLOUNEVEZ LOCHRIST", - "nomCommune": "PLOUNEVEZ LOCHRIST" + "codePostal": "36300", + "codeCommune": "36053", + "libelleAcheminement": "CIRON", + "nomCommune": "CIRON" }, { - "codePostal": "54610", - "codeCommune": "54517", - "libelleAcheminement": "THEZEY ST MARTIN", - "nomCommune": "THEZEY ST MARTIN" + "codePostal": "25580", + "codeCommune": "25424", + "libelleAcheminement": "LES PREMIERS SAPINS", + "nomCommune": "LES PREMIERS SAPINS" }, { - "codePostal": "67460", - "codeCommune": "67471", - "libelleAcheminement": "SOUFFELWEYERSHEIM", - "nomCommune": "SOUFFELWEYERSHEIM" + "codePostal": "27330", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "62970", - "codeCommune": "62249", - "libelleAcheminement": "COURCELLES LES LENS", - "nomCommune": "COURCELLES LES LENS" + "codePostal": "36170", + "codeCommune": "36177", + "libelleAcheminement": "SACIERGES ST MARTIN", + "nomCommune": "SACIERGES ST MARTIN" }, { - "codePostal": "29800", - "codeCommune": "29237", - "libelleAcheminement": "LA ROCHE MAURICE", - "nomCommune": "LA ROCHE MAURICE" + "codePostal": "36100", + "codeCommune": "36059", + "libelleAcheminement": "CONDE", + "nomCommune": "CONDE" }, { - "codePostal": "54470", - "codeCommune": "54518", - "libelleAcheminement": "THIAUCOURT REGNIEVILLE", - "nomCommune": "THIAUCOURT REGNIEVILLE" + "codePostal": "25580", + "codeCommune": "25424", + "libelleAcheminement": "LES PREMIERS SAPINS", + "nomCommune": "LES PREMIERS SAPINS" }, { - "codePostal": "67620", - "codeCommune": "67472", - "libelleAcheminement": "SOUFFLENHEIM", - "nomCommune": "SOUFFLENHEIM" + "codePostal": "27170", + "codeCommune": "27051", + "libelleAcheminement": "BEAUMONT LE ROGER", + "nomCommune": "BEAUMONT LE ROGER" }, { - "codePostal": "62780", - "codeCommune": "62261", - "libelleAcheminement": "CUCQ", - "nomCommune": "CUCQ" + "codePostal": "36100", + "codeCommune": "36181", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "29570", - "codeCommune": "29238", - "libelleAcheminement": "ROSCANVEL", - "nomCommune": "ROSCANVEL" + "codePostal": "36130", + "codeCommune": "36063", + "libelleAcheminement": "DEOLS", + "nomCommune": "DEOLS" }, { - "codePostal": "54300", - "codeCommune": "54520", - "libelleAcheminement": "THIEBAUMENIL", - "nomCommune": "THIEBAUMENIL" + "codePostal": "25580", + "codeCommune": "25424", + "libelleAcheminement": "LES PREMIERS SAPINS", + "nomCommune": "LES PREMIERS SAPINS" }, { - "codePostal": "67790", - "codeCommune": "67478", - "libelleAcheminement": "STEINBOURG", - "nomCommune": "STEINBOURG" + "codePostal": "27160", + "codeCommune": "27054", + "libelleAcheminement": "BEMECOURT", + "nomCommune": "BEMECOURT" }, { - "codePostal": "62780", - "codeCommune": "62261", - "libelleAcheminement": "CUCQ", - "nomCommune": "CUCQ" + "codePostal": "36400", + "codeCommune": "36186", + "libelleAcheminement": "ST CHRISTOPHE EN BOUCHERIE", + "nomCommune": "ST CHRISTOPHE EN BOUCHERIE" }, { - "codePostal": "29140", - "codeCommune": "29241", - "libelleAcheminement": "ROSPORDEN", - "nomCommune": "ROSPORDEN" + "codePostal": "36300", + "codeCommune": "36066", + "libelleAcheminement": "DOUADIC", + "nomCommune": "DOUADIC" }, { - "codePostal": "54115", - "codeCommune": "54529", - "libelleAcheminement": "TRAMONT EMY", - "nomCommune": "TRAMONT EMY" + "codePostal": "25580", + "codeCommune": "25424", + "libelleAcheminement": "LES PREMIERS SAPINS", + "nomCommune": "LES PREMIERS SAPINS" }, { - "codePostal": "67190", - "codeCommune": "67480", - "libelleAcheminement": "STILL", - "nomCommune": "STILL" + "codePostal": "27940", + "codeCommune": "27058", + "libelleAcheminement": "LES TROIS LACS", + "nomCommune": "LES TROIS LACS" }, { - "codePostal": "62149", - "codeCommune": "62262", - "libelleAcheminement": "CUINCHY", - "nomCommune": "CUINCHY" + "codePostal": "36170", + "codeCommune": "36187", + "libelleAcheminement": "ST CIVRAN", + "nomCommune": "ST CIVRAN" }, { - "codePostal": "29460", - "codeCommune": "29246", - "libelleAcheminement": "ST ELOY", - "nomCommune": "ST ELOY" + "codePostal": "36270", + "codeCommune": "36070", + "libelleAcheminement": "EGUZON CHANTOME", + "nomCommune": "EGUZON CHANTOME" }, { - "codePostal": "54115", - "codeCommune": "54530", - "libelleAcheminement": "TRAMONT LASSUS", - "nomCommune": "TRAMONT LASSUS" + "codePostal": "25600", + "codeCommune": "25428", + "libelleAcheminement": "NOMMAY", + "nomCommune": "NOMMAY" }, { - "codePostal": "67250", - "codeCommune": "67484", - "libelleAcheminement": "STUNDWILLER", - "nomCommune": "STUNDWILLER" + "codePostal": "27370", + "codeCommune": "27062", + "libelleAcheminement": "LES MONTS DU ROUMOIS", + "nomCommune": "LES MONTS DU ROUMOIS" }, { - "codePostal": "62129", - "codeCommune": "62265", - "libelleAcheminement": "DELETTES", - "nomCommune": "DELETTES" + "codePostal": "36500", + "codeCommune": "36193", + "libelleAcheminement": "STE GEMME", + "nomCommune": "STE GEMME" }, { - "codePostal": "29260", - "codeCommune": "29248", - "libelleAcheminement": "ST FREGANT", - "nomCommune": "ST FREGANT" + "codePostal": "36220", + "codeCommune": "36076", + "libelleAcheminement": "FONTGOMBAULT", + "nomCommune": "FONTGOMBAULT" }, { - "codePostal": "54870", - "codeCommune": "54537", - "libelleAcheminement": "UGNY", - "nomCommune": "UGNY" + "codePostal": "25250", + "codeCommune": "25431", + "libelleAcheminement": "ONANS", + "nomCommune": "ONANS" }, { - "codePostal": "67470", - "codeCommune": "67494", - "libelleAcheminement": "TRIMBACH", - "nomCommune": "TRIMBACH" + "codePostal": "27170", + "codeCommune": "27063", + "libelleAcheminement": "BERVILLE LA CAMPAGNE", + "nomCommune": "BERVILLE LA CAMPAGNE" }, { - "codePostal": "62810", - "codeCommune": "62266", - "libelleAcheminement": "DENIER", - "nomCommune": "DENIER" + "codePostal": "36370", + "codeCommune": "36197", + "libelleAcheminement": "ST HILAIRE SUR BENAIZE", + "nomCommune": "ST HILAIRE SUR BENAIZE" }, { - "codePostal": "29260", - "codeCommune": "29255", - "libelleAcheminement": "ST MEEN", - "nomCommune": "ST MEEN" + "codePostal": "36240", + "codeCommune": "36082", + "libelleAcheminement": "GEHEE", + "nomCommune": "GEHEE" }, { - "codePostal": "54540", - "codeCommune": "54539", - "libelleAcheminement": "VACQUEVILLE", - "nomCommune": "VACQUEVILLE" + "codePostal": "25430", + "codeCommune": "25436", + "libelleAcheminement": "ORVE", + "nomCommune": "ORVE" }, { - "codePostal": "67350", - "codeCommune": "67497", - "libelleAcheminement": "UHLWILLER", - "nomCommune": "UHLWILLER" + "codePostal": "27210", + "codeCommune": "27064", + "libelleAcheminement": "BERVILLE SUR MER", + "nomCommune": "BERVILLE SUR MER" }, { - "codePostal": "62460", - "codeCommune": "62269", - "libelleAcheminement": "DIEVAL", - "nomCommune": "DIEVAL" + "codePostal": "36500", + "codeCommune": "36198", + "libelleAcheminement": "ST LACTENCIN", + "nomCommune": "ST LACTENCIN" }, { - "codePostal": "29400", - "codeCommune": "29262", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "36300", + "codeCommune": "36087", + "libelleAcheminement": "INGRANDES", + "nomCommune": "INGRANDES" }, { - "codePostal": "54370", - "codeCommune": "54541", - "libelleAcheminement": "VALHEY", - "nomCommune": "VALHEY" + "codePostal": "25410", + "codeCommune": "25438", + "libelleAcheminement": "OSSELLE ROUTELLE", + "nomCommune": "OSSELLE ROUTELLE" }, { - "codePostal": "67220", - "codeCommune": "67499", - "libelleAcheminement": "URBEIS", - "nomCommune": "URBEIS" + "codePostal": "27660", + "codeCommune": "27067", + "libelleAcheminement": "BEZU ST ELOI", + "nomCommune": "BEZU ST ELOI" }, { - "codePostal": "62138", - "codeCommune": "62276", - "libelleAcheminement": "DOUVRIN", - "nomCommune": "DOUVRIN" + "codePostal": "36260", + "codeCommune": "36205", + "libelleAcheminement": "ST PIERRE DE JARDS", + "nomCommune": "ST PIERRE DE JARDS" }, { - "codePostal": "29410", - "codeCommune": "29266", - "libelleAcheminement": "ST THEGONNEC LOC EGUINER", - "nomCommune": "ST THEGONNEC LOC EGUINER" + "codePostal": "36100", + "codeCommune": "36098", + "libelleAcheminement": "LIZERAY", + "nomCommune": "LIZERAY" }, { - "codePostal": "54830", - "codeCommune": "54543", - "libelleAcheminement": "VALLOIS", - "nomCommune": "VALLOIS" + "codePostal": "25440", + "codeCommune": "25445", + "libelleAcheminement": "PAROY", + "nomCommune": "PAROY" }, { - "codePostal": "67150", - "codeCommune": "67501", - "libelleAcheminement": "UTTENHEIM", - "nomCommune": "UTTENHEIM" + "codePostal": "27330", + "codeCommune": "27068", + "libelleAcheminement": "BOIS ANZERAY", + "nomCommune": "BOIS ANZERAY" }, { - "codePostal": "62131", - "codeCommune": "62278", - "libelleAcheminement": "DROUVIN LE MARAIS", - "nomCommune": "DROUVIN LE MARAIS" + "codePostal": "36220", + "codeCommune": "36213", + "libelleAcheminement": "SAUZELLES", + "nomCommune": "SAUZELLES" }, { - "codePostal": "29800", - "codeCommune": "29268", - "libelleAcheminement": "ST THONAN", - "nomCommune": "ST THONAN" + "codePostal": "36140", + "codeCommune": "36099", + "libelleAcheminement": "LOURDOUEIX ST MICHEL", + "nomCommune": "LOURDOUEIX ST MICHEL" }, { - "codePostal": "54112", - "codeCommune": "54548", - "libelleAcheminement": "VANNES LE CHATEL", - "nomCommune": "VANNES LE CHATEL" + "codePostal": "25170", + "codeCommune": "25448", + "libelleAcheminement": "PELOUSEY", + "nomCommune": "PELOUSEY" }, { - "codePostal": "67220", - "codeCommune": "67507", - "libelleAcheminement": "VILLE", - "nomCommune": "VILLE" + "codePostal": "27250", + "codeCommune": "27069", + "libelleAcheminement": "BOIS ARNAULT", + "nomCommune": "BOIS ARNAULT" }, { - "codePostal": "62145", - "codeCommune": "62295", - "libelleAcheminement": "ENQUIN LEZ GUINEGATTE", - "nomCommune": "ENQUIN LEZ GUINEGATTE" + "codePostal": "36210", + "codeCommune": "36217", + "libelleAcheminement": "SEMBLECAY", + "nomCommune": "SEMBLECAY" }, { - "codePostal": "29450", - "codeCommune": "29277", - "libelleAcheminement": "SIZUN", - "nomCommune": "SIZUN" + "codePostal": "36340", + "codeCommune": "36110", + "libelleAcheminement": "MAILLET", + "nomCommune": "MAILLET" }, { - "codePostal": "54370", - "codeCommune": "54551", - "libelleAcheminement": "VAUCOURT", - "nomCommune": "VAUCOURT" + "codePostal": "25240", + "codeCommune": "25451", + "libelleAcheminement": "PETITE CHAUX", + "nomCommune": "PETITE CHAUX" }, { - "codePostal": "67430", - "codeCommune": "67508", - "libelleAcheminement": "VOELLERDINGEN", - "nomCommune": "VOELLERDINGEN" + "codePostal": "27700", + "codeCommune": "27070", + "libelleAcheminement": "FRENELLES EN VEXIN", + "nomCommune": "FRENELLES EN VEXIN" }, { - "codePostal": "62650", - "codeCommune": "62296", - "libelleAcheminement": "ENQUIN SUR BAILLONS", - "nomCommune": "ENQUIN SUR BAILLONS" + "codePostal": "36210", + "codeCommune": "36229", + "libelleAcheminement": "VAL FOUZON", + "nomCommune": "VAL FOUZON" }, { - "codePostal": "29140", - "codeCommune": "29281", - "libelleAcheminement": "TOURCH", - "nomCommune": "TOURCH" + "codePostal": "36160", + "codeCommune": "36132", + "libelleAcheminement": "LA MOTTE FEUILLY", + "nomCommune": "LA MOTTE FEUILLY" }, { - "codePostal": "54330", - "codeCommune": "54552", - "libelleAcheminement": "VAUDEMONT", - "nomCommune": "VAUDEMONT" + "codePostal": "25480", + "codeCommune": "25454", + "libelleAcheminement": "PIREY", + "nomCommune": "PIREY" }, { - "codePostal": "67130", - "codeCommune": "67513", - "libelleAcheminement": "WALDERSBACH", - "nomCommune": "WALDERSBACH" + "codePostal": "27220", + "codeCommune": "27073", + "libelleAcheminement": "BOIS LE ROI", + "nomCommune": "BOIS LE ROI" }, { - "codePostal": "62121", - "codeCommune": "62306", - "libelleAcheminement": "ERVILLERS", - "nomCommune": "ERVILLERS" + "codePostal": "36400", + "codeCommune": "36234", + "libelleAcheminement": "VERNEUIL SUR IGNERAIE", + "nomCommune": "VERNEUIL SUR IGNERAIE" }, { - "codePostal": "29260", - "codeCommune": "29288", - "libelleAcheminement": "TREGARANTEC", - "nomCommune": "TREGARANTEC" + "codePostal": "36500", + "codeCommune": "36139", + "libelleAcheminement": "NEUILLAY LES BOIS", + "nomCommune": "NEUILLAY LES BOIS" }, { - "codePostal": "54740", - "codeCommune": "54554", - "libelleAcheminement": "VAUDIGNY", - "nomCommune": "VAUDIGNY" + "codePostal": "25470", + "codeCommune": "25458", + "libelleAcheminement": "LES PLAINS ET GRANDS ESSARTS", + "nomCommune": "LES PLAINS ET GRANDS ESSARTS" }, { - "codePostal": "67520", - "codeCommune": "67517", - "libelleAcheminement": "WANGEN", - "nomCommune": "WANGEN" + "codePostal": "27330", + "codeCommune": "27075", + "libelleAcheminement": "BOIS NORMAND PRES LYRE", + "nomCommune": "BOIS NORMAND PRES LYRE" }, { - "codePostal": "62179", - "codeCommune": "62307", - "libelleAcheminement": "ESCALLES", - "nomCommune": "ESCALLES" + "codePostal": "36320", + "codeCommune": "36241", + "libelleAcheminement": "VILLEDIEU SUR INDRE", + "nomCommune": "VILLEDIEU SUR INDRE" }, { - "codePostal": "29800", - "codeCommune": "29295", - "libelleAcheminement": "TREMAOUEZAN", - "nomCommune": "TREMAOUEZAN" + "codePostal": "36100", + "codeCommune": "36140", + "libelleAcheminement": "NEUVY PAILLOUX", + "nomCommune": "NEUVY PAILLOUX" }, { - "codePostal": "54450", - "codeCommune": "54556", - "libelleAcheminement": "VEHO", - "nomCommune": "VEHO" + "codePostal": "25150", + "codeCommune": "25463", + "libelleAcheminement": "PONT DE ROIDE VERMONDANS", + "nomCommune": "PONT DE ROIDE VERMONDANS" }, { - "codePostal": "67500", - "codeCommune": "67523", - "libelleAcheminement": "WEITBRUCH", - "nomCommune": "WEITBRUCH" + "codePostal": "27290", + "codeCommune": "27083", + "libelleAcheminement": "BONNEVILLE APTOT", + "nomCommune": "BONNEVILLE APTOT" }, { - "codePostal": "62850", - "codeCommune": "62308", - "libelleAcheminement": "ESCOEUILLES", - "nomCommune": "ESCOEUILLES" + "codePostal": "36360", + "codeCommune": "36244", + "libelleAcheminement": "VILLENTROIS FAVEROLLES EN BERRY", + "nomCommune": "VILLENTROIS FAVEROLLES EN BERRY" }, { - "codePostal": "29300", - "codeCommune": "29297", - "libelleAcheminement": "TREMEVEN", - "nomCommune": "TREMEVEN" + "codePostal": "36800", + "codeCommune": "36148", + "libelleAcheminement": "OULCHES", + "nomCommune": "OULCHES" }, { - "codePostal": "54840", - "codeCommune": "54557", - "libelleAcheminement": "BOIS DE HAYE", - "nomCommune": "BOIS DE HAYE" + "codePostal": "25640", + "codeCommune": "25468", + "libelleAcheminement": "POULIGNEY LUSANS", + "nomCommune": "POULIGNEY LUSANS" }, { - "codePostal": "67270", - "codeCommune": "67530", - "libelleAcheminement": "WICKERSHEIM WILSHAUSEN", - "nomCommune": "WICKERSHEIM WILSHAUSEN" + "codePostal": "27670", + "codeCommune": "27090", + "libelleAcheminement": "BOSROUMOIS", + "nomCommune": "BOSROUMOIS" }, { - "codePostal": "62170", - "codeCommune": "62315", - "libelleAcheminement": "ESTREELLES", - "nomCommune": "ESTREELLES" + "codePostal": "36600", + "codeCommune": "36244", + "libelleAcheminement": "VILLENTROIS FAVEROLLES EN BERRY", + "nomCommune": "VILLENTROIS FAVEROLLES EN BERRY" }, { - "codePostal": "29590", - "codeCommune": "29302", - "libelleAcheminement": "PONT DE BUIS LES QUIMERCH", - "nomCommune": "PONT DE BUIS LES QUIMERCH" + "codePostal": "36290", + "codeCommune": "36153", + "libelleAcheminement": "PAULNAY", + "nomCommune": "PAULNAY" }, { - "codePostal": "54540", - "codeCommune": "54560", - "libelleAcheminement": "VENEY", - "nomCommune": "VENEY" + "codePostal": "25720", + "codeCommune": "25473", + "libelleAcheminement": "PUGEY", + "nomCommune": "PUGEY" }, { - "codePostal": "67370", - "codeCommune": "67532", - "libelleAcheminement": "WILLGOTTHEIM", - "nomCommune": "WILLGOTTHEIM" + "codePostal": "27250", + "codeCommune": "27096", + "libelleAcheminement": "LES BOTTEREAUX", + "nomCommune": "LES BOTTEREAUX" }, { - "codePostal": "62630", - "codeCommune": "62318", - "libelleAcheminement": "ETAPLES", - "nomCommune": "ETAPLES" + "codePostal": "37270", + "codeCommune": "37008", + "libelleAcheminement": "ATHEE SUR CHER", + "nomCommune": "ATHEE SUR CHER" }, { - "codePostal": "29590", - "codeCommune": "29302", - "libelleAcheminement": "PONT DE BUIS LES QUIMERCH", - "nomCommune": "PONT DE BUIS LES QUIMERCH" + "codePostal": "36200", + "codeCommune": "36154", + "libelleAcheminement": "LE PECHEREAU", + "nomCommune": "LE PECHEREAU" }, { - "codePostal": "54470", - "codeCommune": "54564", - "libelleAcheminement": "VIEVILLE EN HAYE", - "nomCommune": "VIEVILLE EN HAYE" + "codePostal": "25320", + "codeCommune": "25477", + "libelleAcheminement": "RANCENAY", + "nomCommune": "RANCENAY" }, { - "codePostal": "67370", - "codeCommune": "67532", - "libelleAcheminement": "WILLGOTTHEIM", - "nomCommune": "WILLGOTTHEIM" + "codePostal": "27520", + "codeCommune": "27105", + "libelleAcheminement": "GRAND BOURGTHEROULDE", + "nomCommune": "GRAND BOURGTHEROULDE" }, { - "codePostal": "62156", - "codeCommune": "62319", - "libelleAcheminement": "ETERPIGNY", - "nomCommune": "ETERPIGNY" + "codePostal": "37270", + "codeCommune": "37015", + "libelleAcheminement": "AZAY SUR CHER", + "nomCommune": "AZAY SUR CHER" }, { - "codePostal": "20167", - "codeCommune": "2A004", - "libelleAcheminement": "AJACCIO", - "nomCommune": "AJACCIO" + "codePostal": "36350", + "codeCommune": "36157", + "libelleAcheminement": "LA PEROUILLE", + "nomCommune": "LA PEROUILLE" }, { - "codePostal": "54360", - "codeCommune": "54565", - "libelleAcheminement": "VIGNEULLES", - "nomCommune": "VIGNEULLES" + "codePostal": "25550", + "codeCommune": "25481", + "libelleAcheminement": "RAYNANS", + "nomCommune": "RAYNANS" }, { - "codePostal": "67110", - "codeCommune": "67536", - "libelleAcheminement": "WINDSTEIN", - "nomCommune": "WINDSTEIN" + "codePostal": "27500", + "codeCommune": "27107", + "libelleAcheminement": "BOURNEVILLE STE CROIX", + "nomCommune": "BOURNEVILLE STE CROIX" }, { - "codePostal": "62840", - "codeCommune": "62338", - "libelleAcheminement": "FLEURBAIX", - "nomCommune": "FLEURBAIX" + "codePostal": "37370", + "codeCommune": "37021", + "libelleAcheminement": "BEAUMONT LOUESTAULT", + "nomCommune": "BEAUMONT LOUESTAULT" + }, + { + "codePostal": "36300", + "codeCommune": "36176", + "libelleAcheminement": "RUFFEC", + "nomCommune": "RUFFEC" }, { - "codePostal": "20112", - "codeCommune": "2A011", - "libelleAcheminement": "ALTAGENE", - "nomCommune": "ALTAGENE" + "codePostal": "25170", + "codeCommune": "25482", + "libelleAcheminement": "RECOLOGNE", + "nomCommune": "RECOLOGNE" }, { - "codePostal": "54890", - "codeCommune": "54570", - "libelleAcheminement": "VILLECEY SUR MAD", - "nomCommune": "VILLECEY SUR MAD" + "codePostal": "27800", + "codeCommune": "27113", + "libelleAcheminement": "BRETIGNY", + "nomCommune": "BRETIGNY" }, { - "codePostal": "67470", - "codeCommune": "67541", - "libelleAcheminement": "WINTZENBACH", - "nomCommune": "WINTZENBACH" + "codePostal": "37510", + "codeCommune": "37025", + "libelleAcheminement": "BERTHENAY", + "nomCommune": "BERTHENAY" }, { - "codePostal": "62550", - "codeCommune": "62340", - "libelleAcheminement": "FLORINGHEM", - "nomCommune": "FLORINGHEM" + "codePostal": "36210", + "codeCommune": "36185", + "libelleAcheminement": "ST CHRISTOPHE EN BAZELLE", + "nomCommune": "ST CHRISTOPHE EN BAZELLE" }, { - "codePostal": "20121", - "codeCommune": "2A027", - "libelleAcheminement": "AZZANA", - "nomCommune": "AZZANA" + "codePostal": "25160", + "codeCommune": "25486", + "libelleAcheminement": "REMORAY BOUJEONS", + "nomCommune": "REMORAY BOUJEONS" }, { - "codePostal": "54260", - "codeCommune": "54576", - "libelleAcheminement": "VILLERS LE ROND", - "nomCommune": "VILLERS LE ROND" + "codePostal": "27640", + "codeCommune": "27114", + "libelleAcheminement": "BREUILPONT", + "nomCommune": "BREUILPONT" }, { - "codePostal": "67160", - "codeCommune": "67544", - "libelleAcheminement": "WISSEMBOURG", - "nomCommune": "WISSEMBOURG" + "codePostal": "37240", + "codeCommune": "37029", + "libelleAcheminement": "BOSSEE", + "nomCommune": "BOSSEE" }, { - "codePostal": "62810", - "codeCommune": "62347", - "libelleAcheminement": "FOSSEUX", - "nomCommune": "FOSSEUX" + "codePostal": "36700", + "codeCommune": "36188", + "libelleAcheminement": "ST CYRAN DU JAMBOT", + "nomCommune": "ST CYRAN DU JAMBOT" }, { - "codePostal": "20100", - "codeCommune": "2A038", - "libelleAcheminement": "BILIA", - "nomCommune": "BILIA" + "codePostal": "25520", + "codeCommune": "25487", + "libelleAcheminement": "RENEDALE", + "nomCommune": "RENEDALE" }, { - "codePostal": "54700", - "codeCommune": "54579", - "libelleAcheminement": "VILLERS SOUS PRENY", - "nomCommune": "VILLERS SOUS PRENY" + "codePostal": "27270", + "codeCommune": "27130", + "libelleAcheminement": "CAPELLE LES GRANDS", + "nomCommune": "CAPELLE LES GRANDS" }, { - "codePostal": "67160", - "codeCommune": "67544", - "libelleAcheminement": "WISSEMBOURG", - "nomCommune": "WISSEMBOURG" + "codePostal": "37240", + "codeCommune": "37032", + "libelleAcheminement": "BOURNAN", + "nomCommune": "BOURNAN" }, { - "codePostal": "62140", - "codeCommune": "62359", - "libelleAcheminement": "FRESSIN", - "nomCommune": "FRESSIN" + "codePostal": "36170", + "codeCommune": "36196", + "libelleAcheminement": "ST GILLES", + "nomCommune": "ST GILLES" }, { - "codePostal": "20140", - "codeCommune": "2A071", - "libelleAcheminement": "CASALABRIVA", - "nomCommune": "CASALABRIVA" + "codePostal": "25440", + "codeCommune": "25488", + "libelleAcheminement": "RENNES SUR LOUE", + "nomCommune": "RENNES SUR LOUE" }, { - "codePostal": "54190", - "codeCommune": "54580", - "libelleAcheminement": "VILLERUPT", - "nomCommune": "VILLERUPT" + "codePostal": "27180", + "codeCommune": "27132", + "libelleAcheminement": "CAUGE", + "nomCommune": "CAUGE" }, { - "codePostal": "67160", - "codeCommune": "67544", - "libelleAcheminement": "WISSEMBOURG", - "nomCommune": "WISSEMBOURG" + "codePostal": "37290", + "codeCommune": "37033", + "libelleAcheminement": "BOUSSAY", + "nomCommune": "BOUSSAY" }, { - "codePostal": "62185", - "codeCommune": "62360", - "libelleAcheminement": "FRETHUN", - "nomCommune": "FRETHUN" + "codePostal": "36250", + "codeCommune": "36202", + "libelleAcheminement": "ST MAUR", + "nomCommune": "ST MAUR" }, { - "codePostal": "20117", - "codeCommune": "2A085", - "libelleAcheminement": "CAURO", - "nomCommune": "CAURO" + "codePostal": "25640", + "codeCommune": "25490", + "libelleAcheminement": "RIGNEY", + "nomCommune": "RIGNEY" }, { - "codePostal": "54123", - "codeCommune": "54586", - "libelleAcheminement": "VITERNE", - "nomCommune": "VITERNE" + "codePostal": "27190", + "codeCommune": "27141", + "libelleAcheminement": "CHAMP DOLENT", + "nomCommune": "CHAMP DOLENT" }, { - "codePostal": "67230", - "codeCommune": "67545", - "libelleAcheminement": "WITTERNHEIM", - "nomCommune": "WITTERNHEIM" + "codePostal": "37120", + "codeCommune": "37035", + "libelleAcheminement": "BRAYE SOUS FAYE", + "nomCommune": "BRAYE SOUS FAYE" }, { - "codePostal": "62690", - "codeCommune": "62363", - "libelleAcheminement": "FREVIN CAPELLE", - "nomCommune": "FREVIN CAPELLE" + "codePostal": "36700", + "codeCommune": "36203", + "libelleAcheminement": "ST MEDARD", + "nomCommune": "ST MEDARD" }, { - "codePostal": "20117", - "codeCommune": "2A104", - "libelleAcheminement": "ECCICA SUARELLA", - "nomCommune": "ECCICA SUARELLA" + "codePostal": "25190", + "codeCommune": "25503", + "libelleAcheminement": "ROSIERES SUR BARBECHE", + "nomCommune": "ROSIERES SUR BARBECHE" }, { - "codePostal": "54330", - "codeCommune": "54587", - "libelleAcheminement": "VITREY", - "nomCommune": "VITREY" + "codePostal": "27220", + "codeCommune": "27154", + "libelleAcheminement": "CHAVIGNY BAILLEUL", + "nomCommune": "CHAVIGNY BAILLEUL" }, { - "codePostal": "67820", - "codeCommune": "67547", - "libelleAcheminement": "WITTISHEIM", - "nomCommune": "WITTISHEIM" + "codePostal": "37500", + "codeCommune": "37042", + "libelleAcheminement": "CANDES ST MARTIN", + "nomCommune": "CANDES ST MARTIN" }, { - "codePostal": "62580", - "codeCommune": "62369", - "libelleAcheminement": "GAVRELLE", - "nomCommune": "GAVRELLE" + "codePostal": "36290", + "codeCommune": "36204", + "libelleAcheminement": "ST MICHEL EN BRENNE", + "nomCommune": "ST MICHEL EN BRENNE" }, { - "codePostal": "20126", - "codeCommune": "2A108", - "libelleAcheminement": "EVISA", - "nomCommune": "EVISA" + "codePostal": "25680", + "codeCommune": "25505", + "libelleAcheminement": "ROUGEMONT", + "nomCommune": "ROUGEMONT" }, { - "codePostal": "54134", - "codeCommune": "54591", - "libelleAcheminement": "VOINEMONT", - "nomCommune": "VOINEMONT" + "codePostal": "27820", + "codeCommune": "27155", + "libelleAcheminement": "CHENNEBRUN", + "nomCommune": "CHENNEBRUN" }, { - "codePostal": "68210", - "codeCommune": "68002", - "libelleAcheminement": "ALTENACH", - "nomCommune": "ALTENACH" + "codePostal": "37350", + "codeCommune": "37044", + "libelleAcheminement": "LA CELLE GUENAND", + "nomCommune": "LA CELLE GUENAND" }, { - "codePostal": "62111", - "codeCommune": "62375", - "libelleAcheminement": "GOMMECOURT", - "nomCommune": "GOMMECOURT" + "codePostal": "36290", + "codeCommune": "36212", + "libelleAcheminement": "SAULNAY", + "nomCommune": "SAULNAY" }, { - "codePostal": "20137", - "codeCommune": "2A139", - "libelleAcheminement": "LECCI", - "nomCommune": "LECCI" + "codePostal": "25680", + "codeCommune": "25505", + "libelleAcheminement": "ROUGEMONT", + "nomCommune": "ROUGEMONT" }, { - "codePostal": "54890", - "codeCommune": "54593", - "libelleAcheminement": "WAVILLE", - "nomCommune": "WAVILLE" + "codePostal": "27160", + "codeCommune": "27157", + "libelleAcheminement": "MARBOIS", + "nomCommune": "MARBOIS" }, { - "codePostal": "68410", - "codeCommune": "68005", - "libelleAcheminement": "AMMERSCHWIHR", - "nomCommune": "AMMERSCHWIHR" + "codePostal": "37390", + "codeCommune": "37047", + "libelleAcheminement": "CERELLES", + "nomCommune": "CERELLES" }, { - "codePostal": "62330", - "codeCommune": "62391", - "libelleAcheminement": "GUARBECQUE", - "nomCommune": "GUARBECQUE" + "codePostal": "36500", + "codeCommune": "36218", + "libelleAcheminement": "SOUGE", + "nomCommune": "SOUGE" }, { - "codePostal": "20170", - "codeCommune": "2A142", - "libelleAcheminement": "LEVIE", - "nomCommune": "LEVIE" + "codePostal": "25170", + "codeCommune": "25510", + "libelleAcheminement": "RUFFEY LE CHATEAU", + "nomCommune": "RUFFEY LE CHATEAU" }, { - "codePostal": "54300", - "codeCommune": "54595", - "libelleAcheminement": "XERMAMENIL", - "nomCommune": "XERMAMENIL" + "codePostal": "27180", + "codeCommune": "27161", + "libelleAcheminement": "CLAVILLE", + "nomCommune": "CLAVILLE" }, { - "codePostal": "68210", - "codeCommune": "68006", - "libelleAcheminement": "BERNWILLER", - "nomCommune": "BERNWILLER" + "codePostal": "37290", + "codeCommune": "37048", + "libelleAcheminement": "CHAMBON", + "nomCommune": "CHAMBON" }, { - "codePostal": "62130", - "codeCommune": "62396", - "libelleAcheminement": "GUINECOURT", - "nomCommune": "GUINECOURT" + "codePostal": "36800", + "codeCommune": "36220", + "libelleAcheminement": "THENAY", + "nomCommune": "THENAY" }, { - "codePostal": "20112", - "codeCommune": "2A158", - "libelleAcheminement": "MELA", - "nomCommune": "MELA" + "codePostal": "25300", + "codeCommune": "25515", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "54490", - "codeCommune": "54598", - "libelleAcheminement": "XIVRY CIRCOURT", - "nomCommune": "XIVRY CIRCOURT" + "codePostal": "27260", + "codeCommune": "27170", + "libelleAcheminement": "CORMEILLES", + "nomCommune": "CORMEILLES" }, { - "codePostal": "68210", - "codeCommune": "68006", - "libelleAcheminement": "BERNWILLER", - "nomCommune": "BERNWILLER" + "codePostal": "37120", + "codeCommune": "37051", + "libelleAcheminement": "CHAMPIGNY SUR VEUDE", + "nomCommune": "CHAMPIGNY SUR VEUDE" }, { - "codePostal": "62340", - "codeCommune": "62397", - "libelleAcheminement": "GUINES", - "nomCommune": "GUINES" + "codePostal": "36310", + "codeCommune": "36223", + "libelleAcheminement": "TILLY", + "nomCommune": "TILLY" }, { - "codePostal": "20171", - "codeCommune": "2A163", - "libelleAcheminement": "MONACIA D AULLENE", - "nomCommune": "MONACIA D AULLENE" + "codePostal": "25190", + "codeCommune": "25519", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "55400", - "codeCommune": "55002", - "libelleAcheminement": "ABAUCOURT HAUTECOURT", - "nomCommune": "ABAUCOURT HAUTECOURT" + "codePostal": "27120", + "codeCommune": "27171", + "libelleAcheminement": "LE CORMIER", + "nomCommune": "LE CORMIER" }, { - "codePostal": "68210", - "codeCommune": "68017", - "libelleAcheminement": "BALLERSDORF", - "nomCommune": "BALLERSDORF" + "codePostal": "37240", + "codeCommune": "37057", + "libelleAcheminement": "LA CHAPELLE BLANCHE ST MARTIN", + "nomCommune": "LA CHAPELLE BLANCHE ST MARTIN" }, { - "codePostal": "62570", - "codeCommune": "62403", - "libelleAcheminement": "HALLINES", - "nomCommune": "HALLINES" + "codePostal": "36210", + "codeCommune": "36229", + "libelleAcheminement": "VAL FOUZON", + "nomCommune": "VAL FOUZON" }, { - "codePostal": "20150", - "codeCommune": "2A198", - "libelleAcheminement": "OTA", - "nomCommune": "OTA" + "codePostal": "25210", + "codeCommune": "25522", + "libelleAcheminement": "ST JULIEN LES RUSSEY", + "nomCommune": "ST JULIEN LES RUSSEY" }, { - "codePostal": "55130", - "codeCommune": "55005", - "libelleAcheminement": "AMANTY", - "nomCommune": "AMANTY" + "codePostal": "27300", + "codeCommune": "27173", + "libelleAcheminement": "CORNEVILLE LA FOUQUETIERE", + "nomCommune": "CORNEVILLE LA FOUQUETIERE" }, { - "codePostal": "68320", - "codeCommune": "68019", - "libelleAcheminement": "BALTZENHEIM", - "nomCommune": "BALTZENHEIM" + "codePostal": "37140", + "codeCommune": "37058", + "libelleAcheminement": "LA CHAPELLE SUR LOIRE", + "nomCommune": "LA CHAPELLE SUR LOIRE" }, { - "codePostal": "62132", - "codeCommune": "62412", - "libelleAcheminement": "HARDINGHEN", - "nomCommune": "HARDINGHEN" + "codePostal": "36210", + "codeCommune": "36229", + "libelleAcheminement": "VAL FOUZON", + "nomCommune": "VAL FOUZON" }, { - "codePostal": "20121", - "codeCommune": "2A204", - "libelleAcheminement": "PASTRICCIOLA", - "nomCommune": "PASTRICCIOLA" + "codePostal": "25410", + "codeCommune": "25527", + "libelleAcheminement": "ST VIT", + "nomCommune": "ST VIT" }, { - "codePostal": "55300", - "codeCommune": "55012", - "libelleAcheminement": "APREMONT LA FORET", - "nomCommune": "APREMONT LA FORET" + "codePostal": "27130", + "codeCommune": "27182", + "libelleAcheminement": "COURTEILLES", + "nomCommune": "COURTEILLES" }, { - "codePostal": "68127", - "codeCommune": "68037", - "libelleAcheminement": "BILTZHEIM", - "nomCommune": "BILTZHEIM" + "codePostal": "37290", + "codeCommune": "37061", + "libelleAcheminement": "CHARNIZAY", + "nomCommune": "CHARNIZAY" }, { - "codePostal": "62111", - "codeCommune": "62422", - "libelleAcheminement": "HEBUTERNE", - "nomCommune": "HEBUTERNE" + "codePostal": "36330", + "codeCommune": "36231", + "libelleAcheminement": "VELLES", + "nomCommune": "VELLES" }, { - "codePostal": "20123", - "codeCommune": "2A232", - "libelleAcheminement": "PILA CANALE", - "nomCommune": "PILA CANALE" + "codePostal": "25660", + "codeCommune": "25532", + "libelleAcheminement": "SAONE", + "nomCommune": "SAONE" }, { - "codePostal": "55230", - "codeCommune": "55013", - "libelleAcheminement": "ARRANCY SUR CRUSNE", - "nomCommune": "ARRANCY SUR CRUSNE" + "codePostal": "27400", + "codeCommune": "27184", + "libelleAcheminement": "CRASVILLE", + "nomCommune": "CRASVILLE" }, { - "codePostal": "68620", - "codeCommune": "68040", - "libelleAcheminement": "BITSCHWILLER LES THANN", - "nomCommune": "BITSCHWILLER LES THANN" + "codePostal": "37330", + "codeCommune": "37062", + "libelleAcheminement": "CHATEAU LA VALLIERE", + "nomCommune": "CHATEAU LA VALLIERE" }, { - "codePostal": "62182", - "codeCommune": "62424", - "libelleAcheminement": "HENDECOURT LES CAGNICOURT", - "nomCommune": "HENDECOURT LES CAGNICOURT" + "codePostal": "36100", + "codeCommune": "36248", + "libelleAcheminement": "VOUILLON", + "nomCommune": "VOUILLON" }, { - "codePostal": "20125", - "codeCommune": "2A240", - "libelleAcheminement": "POGGIOLO", - "nomCommune": "POGGIOLO" + "codePostal": "25290", + "codeCommune": "25537", + "libelleAcheminement": "SCEY MAISIERES", + "nomCommune": "SCEY MAISIERES" }, { - "codePostal": "55700", - "codeCommune": "55025", - "libelleAcheminement": "BAALON", - "nomCommune": "BAALON" + "codePostal": "27530", + "codeCommune": "27193", + "libelleAcheminement": "CROTH", + "nomCommune": "CROTH" }, { - "codePostal": "68380", - "codeCommune": "68051", - "libelleAcheminement": "BREITENBACH", - "nomCommune": "BREITENBACH HAUT RHIN" + "codePostal": "37370", + "codeCommune": "37068", + "libelleAcheminement": "CHEMILLE SUR DEME", + "nomCommune": "CHEMILLE SUR DEME" }, { - "codePostal": "62690", - "codeCommune": "62438", - "libelleAcheminement": "HERMAVILLE", - "nomCommune": "HERMAVILLE" + "codePostal": "37400", + "codeCommune": "37003", + "libelleAcheminement": "AMBOISE", + "nomCommune": "AMBOISE" }, { - "codePostal": "20121", - "codeCommune": "2A259", - "libelleAcheminement": "REZZA", - "nomCommune": "REZZA" + "codePostal": "25290", + "codeCommune": "25537", + "libelleAcheminement": "SCEY MAISIERES", + "nomCommune": "SCEY MAISIERES" }, { - "codePostal": "55110", - "codeCommune": "55028", - "libelleAcheminement": "BANTHEVILLE", - "nomCommune": "BANTHEVILLE" + "codePostal": "27160", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "68440", - "codeCommune": "68055", - "libelleAcheminement": "BRUEBACH", - "nomCommune": "BRUEBACH" + "codePostal": "37220", + "codeCommune": "37071", + "libelleAcheminement": "CHEZELLES", + "nomCommune": "CHEZELLES" }, { - "codePostal": "62140", - "codeCommune": "62447", - "libelleAcheminement": "HESDIN", - "nomCommune": "HESDIN" + "codePostal": "37420", + "codeCommune": "37011", + "libelleAcheminement": "AVOINE", + "nomCommune": "AVOINE" }, { - "codePostal": "20121", - "codeCommune": "2A266", - "libelleAcheminement": "SALICE", - "nomCommune": "SALICE" + "codePostal": "25190", + "codeCommune": "25551", + "libelleAcheminement": "SOULCE CERNAY", + "nomCommune": "SOULCE CERNAY" }, { - "codePostal": "55270", - "codeCommune": "55033", - "libelleAcheminement": "BAULNY", - "nomCommune": "BAULNY" + "codePostal": "27720", + "codeCommune": "27199", + "libelleAcheminement": "DANGU", + "nomCommune": "DANGU" }, { - "codePostal": "68530", - "codeCommune": "68058", - "libelleAcheminement": "BUHL", - "nomCommune": "BUHL" + "codePostal": "37500", + "codeCommune": "37072", + "libelleAcheminement": "CHINON", + "nomCommune": "CHINON" }, { - "codePostal": "62990", - "codeCommune": "62449", - "libelleAcheminement": "HESMOND", - "nomCommune": "HESMOND" + "codePostal": "37510", + "codeCommune": "37018", + "libelleAcheminement": "BALLAN MIRE", + "nomCommune": "BALLAN MIRE" }, { - "codePostal": "20147", - "codeCommune": "2A279", - "libelleAcheminement": "SERRIERA", - "nomCommune": "SERRIERA" + "codePostal": "25250", + "codeCommune": "25552", + "libelleAcheminement": "SOURANS", + "nomCommune": "SOURANS" }, { - "codePostal": "55170", - "codeCommune": "55035", - "libelleAcheminement": "BAZINCOURT SUR SAULX", - "nomCommune": "BAZINCOURT SUR SAULX" + "codePostal": "27150", + "codeCommune": "27204", + "libelleAcheminement": "DOUDEAUVILLE EN VEXIN", + "nomCommune": "DOUDEAUVILLE EN VEXIN" }, { - "codePostal": "68700", - "codeCommune": "68063", - "libelleAcheminement": "CERNAY", - "nomCommune": "CERNAY" + "codePostal": "37150", + "codeCommune": "37073", + "libelleAcheminement": "CHISSEAUX", + "nomCommune": "CHISSEAUX" }, { - "codePostal": "62310", - "codeCommune": "62453", - "libelleAcheminement": "HEZECQUES", - "nomCommune": "HEZECQUES" + "codePostal": "37140", + "codeCommune": "37024", + "libelleAcheminement": "BENAIS", + "nomCommune": "BENAIS" }, { - "codePostal": "20125", - "codeCommune": "2A282", - "libelleAcheminement": "SOCCIA", - "nomCommune": "SOCCIA" + "codePostal": "25620", + "codeCommune": "25558", + "libelleAcheminement": "TARCENAY FOUCHERANS", + "nomCommune": "TARCENAY FOUCHERANS" }, { - "codePostal": "55100", - "codeCommune": "55039", - "libelleAcheminement": "BEAUMONT EN VERDUNOIS", - "nomCommune": "BEAUMONT EN VERDUNOIS" + "codePostal": "27320", + "codeCommune": "27206", + "libelleAcheminement": "DROISY", + "nomCommune": "DROISY" }, { - "codePostal": "68490", - "codeCommune": "68064", - "libelleAcheminement": "CHALAMPE", - "nomCommune": "CHALAMPE" + "codePostal": "37240", + "codeCommune": "37094", + "libelleAcheminement": "CUSSAY", + "nomCommune": "CUSSAY" }, { - "codePostal": "62232", - "codeCommune": "62454", - "libelleAcheminement": "HINGES", - "nomCommune": "HINGES" + "codePostal": "37600", + "codeCommune": "37026", + "libelleAcheminement": "BETZ LE CHATEAU", + "nomCommune": "BETZ LE CHATEAU" }, { - "codePostal": "20112", - "codeCommune": "2A308", - "libelleAcheminement": "STE LUCIE DE TALLANO", - "nomCommune": "STE LUCIE DE TALLANO" + "codePostal": "25870", + "codeCommune": "25563", + "libelleAcheminement": "THUREY LE MONT", + "nomCommune": "THUREY LE MONT" }, { - "codePostal": "55250", - "codeCommune": "55040", - "libelleAcheminement": "BEAUSITE", - "nomCommune": "BEAUSITE" + "codePostal": "27230", + "codeCommune": "27208", + "libelleAcheminement": "DURANVILLE", + "nomCommune": "DURANVILLE" }, { - "codePostal": "68480", - "codeCommune": "68075", - "libelleAcheminement": "DURMENACH", - "nomCommune": "DURMENACH" + "codePostal": "37190", + "codeCommune": "37099", + "libelleAcheminement": "DRUYE", + "nomCommune": "DRUYE" }, { - "codePostal": "62150", - "codeCommune": "62457", - "libelleAcheminement": "HOUDAIN", - "nomCommune": "HOUDAIN" + "codePostal": "37140", + "codeCommune": "37031", + "libelleAcheminement": "BOURGUEIL", + "nomCommune": "BOURGUEIL" }, { - "codePostal": "20167", - "codeCommune": "2A323", - "libelleAcheminement": "TAVACO", - "nomCommune": "TAVACO" + "codePostal": "25680", + "codeCommune": "25570", + "libelleAcheminement": "TRESSANDANS", + "nomCommune": "TRESSANDANS" }, { - "codePostal": "55210", - "codeCommune": "55046", - "libelleAcheminement": "BENEY EN WOEVRE", - "nomCommune": "BENEY EN WOEVRE" + "codePostal": "27630", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "68720", - "codeCommune": "68081", - "libelleAcheminement": "ST BERNARD", - "nomCommune": "ST BERNARD" + "codePostal": "37370", + "codeCommune": "37101", + "libelleAcheminement": "EPEIGNE SUR DEME", + "nomCommune": "EPEIGNE SUR DEME" }, { - "codePostal": "62270", - "codeCommune": "62459", - "libelleAcheminement": "HOUVIN HOUVIGNEUL", - "nomCommune": "HOUVIN HOUVIGNEUL" + "codePostal": "37220", + "codeCommune": "37040", + "libelleAcheminement": "BRIZAY", + "nomCommune": "BRIZAY" }, { - "codePostal": "20163", - "codeCommune": "2A324", - "libelleAcheminement": "TAVERA", - "nomCommune": "TAVERA" + "codePostal": "25800", + "codeCommune": "25578", + "libelleAcheminement": "VALDAHON", + "nomCommune": "VALDAHON" }, { - "codePostal": "55400", - "codeCommune": "55057", - "libelleAcheminement": "BOINVILLE EN WOEVRE", - "nomCommune": "BOINVILLE EN WOEVRE" + "codePostal": "27630", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "68190", - "codeCommune": "68082", - "libelleAcheminement": "ENSISHEIM", - "nomCommune": "ENSISHEIM" + "codePostal": "37240", + "codeCommune": "37103", + "libelleAcheminement": "ESVES LE MOUTIER", + "nomCommune": "ESVES LE MOUTIER" }, { - "codePostal": "62330", - "codeCommune": "62473", - "libelleAcheminement": "ISBERGUES", - "nomCommune": "ISBERGUES" + "codePostal": "37170", + "codeCommune": "37050", + "libelleAcheminement": "CHAMBRAY LES TOURS", + "nomCommune": "CHAMBRAY LES TOURS" }, { - "codePostal": "20133", - "codeCommune": "2A330", - "libelleAcheminement": "UCCIANI", - "nomCommune": "UCCIANI" + "codePostal": "25410", + "codeCommune": "25594", + "libelleAcheminement": "VELESMES ESSARTS", + "nomCommune": "VELESMES ESSARTS" }, { - "codePostal": "55160", - "codeCommune": "55060", - "libelleAcheminement": "BONZEE", - "nomCommune": "BONZEE" + "codePostal": "27630", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "68740", - "codeCommune": "68091", - "libelleAcheminement": "FESSENHEIM", - "nomCommune": "FESSENHEIM" + "codePostal": "37350", + "codeCommune": "37107", + "libelleAcheminement": "FERRIERE LARCON", + "nomCommune": "FERRIERE LARCON" }, { - "codePostal": "62610", - "codeCommune": "62488", - "libelleAcheminement": "LANDRETHUN LES ARDRES", - "nomCommune": "LANDRETHUN LES ARDRES" + "codePostal": "37600", + "codeCommune": "37053", + "libelleAcheminement": "CHANCEAUX PRES LOCHES", + "nomCommune": "CHANCEAUX PRES LOCHES" }, { - "codePostal": "20118", - "codeCommune": "2A348", - "libelleAcheminement": "VICO", - "nomCommune": "VICO" + "codePostal": "25430", + "codeCommune": "25597", + "libelleAcheminement": "VELLEVANS", + "nomCommune": "VELLEVANS" }, { - "codePostal": "55160", - "codeCommune": "55060", - "libelleAcheminement": "BONZEE", - "nomCommune": "BONZEE" + "codePostal": "27440", + "codeCommune": "27214", + "libelleAcheminement": "ECOUIS", + "nomCommune": "ECOUIS" }, { - "codePostal": "68320", - "codeCommune": "68095", - "libelleAcheminement": "FORTSCHWIHR", - "nomCommune": "FORTSCHWIHR" + "codePostal": "37340", + "codeCommune": "37112", + "libelleAcheminement": "GIZEUX", + "nomCommune": "GIZEUX" }, { - "codePostal": "62122", - "codeCommune": "62489", - "libelleAcheminement": "LAPUGNOY", - "nomCommune": "LAPUGNOY" + "codePostal": "37130", + "codeCommune": "37056", + "libelleAcheminement": "LA CHAPELLE AUX NAUX", + "nomCommune": "LA CHAPELLE AUX NAUX" }, { - "codePostal": "20132", - "codeCommune": "2A359", - "libelleAcheminement": "ZICAVO", - "nomCommune": "ZICAVO" + "codePostal": "25530", + "codeCommune": "25601", + "libelleAcheminement": "VERCEL VILLEDIEU LE CAMP", + "nomCommune": "VERCEL VILLEDIEU LE CAMP" }, { - "codePostal": "55300", - "codeCommune": "55062", - "libelleAcheminement": "BOUCONVILLE SUR MADT", - "nomCommune": "BOUCONVILLE SUR MADT" + "codePostal": "27260", + "codeCommune": "27218", + "libelleAcheminement": "EPAIGNES", + "nomCommune": "EPAIGNES" }, { - "codePostal": "68990", - "codeCommune": "68101", - "libelleAcheminement": "GALFINGUE", - "nomCommune": "GALFINGUE" + "codePostal": "37160", + "codeCommune": "37115", + "libelleAcheminement": "DESCARTES", + "nomCommune": "DESCARTES" }, { - "codePostal": "62840", - "codeCommune": "62491", - "libelleAcheminement": "LAVENTIE", - "nomCommune": "LAVENTIE" + "codePostal": "37110", + "codeCommune": "37063", + "libelleAcheminement": "CHATEAU RENAULT", + "nomCommune": "CHATEAU RENAULT" }, { - "codePostal": "20270", - "codeCommune": "2B009", - "libelleAcheminement": "ALERIA", - "nomCommune": "ALERIA" + "codePostal": "25340", + "codeCommune": "25613", + "libelleAcheminement": "VIETHOREY", + "nomCommune": "VIETHOREY" }, { - "codePostal": "55150", - "codeCommune": "55071", - "libelleAcheminement": "BRANDEVILLE", - "nomCommune": "BRANDEVILLE" + "codePostal": "27560", + "codeCommune": "27222", + "libelleAcheminement": "EPREVILLE EN LIEUVIN", + "nomCommune": "EPREVILLE EN LIEUVIN" }, { - "codePostal": "68690", - "codeCommune": "68102", - "libelleAcheminement": "GEISHOUSE", - "nomCommune": "GEISHOUSE" + "codePostal": "37500", + "codeCommune": "37126", + "libelleAcheminement": "LERNE", + "nomCommune": "LERNE" }, { - "codePostal": "62990", - "codeCommune": "62492", - "libelleAcheminement": "LEBIEZ", - "nomCommune": "LEBIEZ" + "codePostal": "37190", + "codeCommune": "37067", + "libelleAcheminement": "CHEILLE", + "nomCommune": "CHEILLE" }, { - "codePostal": "20251", - "codeCommune": "2B012", - "libelleAcheminement": "ALTIANI", - "nomCommune": "ALTIANI" + "codePostal": "25310", + "codeCommune": "25615", + "libelleAcheminement": "VILLARS LES BLAMONT", + "nomCommune": "VILLARS LES BLAMONT" }, { - "codePostal": "55140", - "codeCommune": "55080", - "libelleAcheminement": "BRIXEY AUX CHANOINES", - "nomCommune": "BRIXEY AUX CHANOINES" + "codePostal": "27350", + "codeCommune": "27227", + "libelleAcheminement": "ETREVILLE", + "nomCommune": "ETREVILLE" }, { - "codePostal": "68600", - "codeCommune": "68104", - "libelleAcheminement": "GEISWASSER", - "nomCommune": "GEISWASSER" + "codePostal": "37130", + "codeCommune": "37128", + "libelleAcheminement": "LIGNIERES DE TOURAINE", + "nomCommune": "LIGNIERES DE TOURAINE" }, { - "codePostal": "62790", - "codeCommune": "62497", - "libelleAcheminement": "LEFOREST", - "nomCommune": "LEFOREST" + "codePostal": "37160", + "codeCommune": "37080", + "libelleAcheminement": "CIVRAY SUR ESVES", + "nomCommune": "CIVRAY SUR ESVES" }, { - "codePostal": "20226", - "codeCommune": "2B034", - "libelleAcheminement": "BELGODERE", - "nomCommune": "BELGODERE" + "codePostal": "25240", + "codeCommune": "25619", + "libelleAcheminement": "LES VILLEDIEU", + "nomCommune": "LES VILLEDIEU" }, { - "codePostal": "55140", - "codeCommune": "55088", - "libelleAcheminement": "BUREY EN VAUX", - "nomCommune": "BUREY EN VAUX" + "codePostal": "27350", + "codeCommune": "27228", + "libelleAcheminement": "ETURQUERAYE", + "nomCommune": "ETURQUERAYE" }, { - "codePostal": "68760", - "codeCommune": "68106", - "libelleAcheminement": "GOLDBACH ALTENBACH", - "nomCommune": "GOLDBACH ALTENBACH" + "codePostal": "37530", + "codeCommune": "37131", + "libelleAcheminement": "LIMERAY", + "nomCommune": "LIMERAY" }, { - "codePostal": "62500", - "codeCommune": "62504", - "libelleAcheminement": "LEULINGHEM", - "nomCommune": "LEULINGHEM" + "codePostal": "37500", + "codeCommune": "37088", + "libelleAcheminement": "COUZIERS", + "nomCommune": "COUZIERS" }, { - "codePostal": "20290", - "codeCommune": "2B042", - "libelleAcheminement": "BORGO", - "nomCommune": "BORGO" + "codePostal": "25170", + "codeCommune": "25622", + "libelleAcheminement": "VILLERS BUZON", + "nomCommune": "VILLERS BUZON" }, { - "codePostal": "55140", - "codeCommune": "55100", - "libelleAcheminement": "CHAMPOUGNY", - "nomCommune": "CHAMPOUGNY" + "codePostal": "27190", + "codeCommune": "27235", + "libelleAcheminement": "FAVEROLLES LA CAMPAGNE", + "nomCommune": "FAVEROLLES LA CAMPAGNE" }, { - "codePostal": "68760", - "codeCommune": "68106", - "libelleAcheminement": "GOLDBACH ALTENBACH", - "nomCommune": "GOLDBACH ALTENBACH" + "codePostal": "37320", + "codeCommune": "37134", + "libelleAcheminement": "LOUANS", + "nomCommune": "LOUANS" }, { - "codePostal": "62810", - "codeCommune": "62511", - "libelleAcheminement": "LIGNEREUIL", - "nomCommune": "LIGNEREUIL" + "codePostal": "37380", + "codeCommune": "37092", + "libelleAcheminement": "CROTELLES", + "nomCommune": "CROTELLES" }, { - "codePostal": "20212", - "codeCommune": "2B045", - "libelleAcheminement": "BUSTANICO", - "nomCommune": "BUSTANICO" + "codePostal": "25510", + "codeCommune": "25625", + "libelleAcheminement": "VILLERS LA COMBE", + "nomCommune": "VILLERS LA COMBE" }, { - "codePostal": "55400", - "codeCommune": "55105", - "libelleAcheminement": "CHATILLON SOUS LES COTES", - "nomCommune": "CHATILLON SOUS LES COTES" + "codePostal": "27190", + "codeCommune": "27238", + "libelleAcheminement": "FERRIERES HAUT CLOCHER", + "nomCommune": "FERRIERES HAUT CLOCHER" }, { - "codePostal": "68580", - "codeCommune": "68137", - "libelleAcheminement": "HINDLINGEN", - "nomCommune": "HINDLINGEN" + "codePostal": "37530", + "codeCommune": "37158", + "libelleAcheminement": "MONTREUIL EN TOURAINE", + "nomCommune": "MONTREUIL EN TOURAINE" }, { - "codePostal": "62127", - "codeCommune": "62514", - "libelleAcheminement": "LIGNY ST FLOCHEL", - "nomCommune": "LIGNY ST FLOCHEL" + "codePostal": "37150", + "codeCommune": "37100", + "libelleAcheminement": "EPEIGNE LES BOIS", + "nomCommune": "EPEIGNE LES BOIS" }, { - "codePostal": "20214", - "codeCommune": "2B049", - "libelleAcheminement": "CALENZANA", - "nomCommune": "CALENZANA" + "codePostal": "25270", + "codeCommune": "25627", + "libelleAcheminement": "VILLERS SOUS CHALAMONT", + "nomCommune": "VILLERS SOUS CHALAMONT" }, { - "codePostal": "55200", - "codeCommune": "55114", - "libelleAcheminement": "CHONVILLE MALAUMONT", - "nomCommune": "CHONVILLE MALAUMONT" + "codePostal": "27760", + "codeCommune": "27240", + "libelleAcheminement": "LA FERRIERE SUR RISLE", + "nomCommune": "LA FERRIERE SUR RISLE" }, { - "codePostal": "68720", - "codeCommune": "68141", - "libelleAcheminement": "HOCHSTATT", - "nomCommune": "HOCHSTATT" + "codePostal": "37190", + "codeCommune": "37165", + "libelleAcheminement": "NEUIL", + "nomCommune": "NEUIL" }, { - "codePostal": "62190", - "codeCommune": "62516", - "libelleAcheminement": "LILLERS", - "nomCommune": "LILLERS" + "codePostal": "37110", + "codeCommune": "37106", + "libelleAcheminement": "LA FERRIERE", + "nomCommune": "LA FERRIERE" }, { - "codePostal": "20229", - "codeCommune": "2B052", - "libelleAcheminement": "CAMPANA", - "nomCommune": "CAMPANA" + "codePostal": "25420", + "codeCommune": "25632", + "libelleAcheminement": "VOUJEAUCOURT", + "nomCommune": "VOUJEAUCOURT" }, { - "codePostal": "55120", - "codeCommune": "55116", - "libelleAcheminement": "LE CLAON", - "nomCommune": "LE CLAON" + "codePostal": "27190", + "codeCommune": "27242", + "libelleAcheminement": "LE FIDELAIRE", + "nomCommune": "LE FIDELAIRE" }, { - "codePostal": "68125", - "codeCommune": "68146", - "libelleAcheminement": "HOUSSEN", - "nomCommune": "HOUSSEN" + "codePostal": "37360", + "codeCommune": "37167", + "libelleAcheminement": "NEUILLE PONT PIERRE", + "nomCommune": "NEUILLE PONT PIERRE" }, { - "codePostal": "62870", - "codeCommune": "62538", - "libelleAcheminement": "MAINTENAY", - "nomCommune": "MAINTENAY" + "codePostal": "37230", + "codeCommune": "37109", + "libelleAcheminement": "FONDETTES", + "nomCommune": "FONDETTES" }, { - "codePostal": "20290", - "codeCommune": "2B054", - "libelleAcheminement": "CAMPILE", - "nomCommune": "CAMPILE" + "codePostal": "26780", + "codeCommune": "26005", + "libelleAcheminement": "ALLAN", + "nomCommune": "ALLAN" }, { - "codePostal": "55000", - "codeCommune": "55123", - "libelleAcheminement": "LES HAUTS DE CHEE", - "nomCommune": "LES HAUTS DE CHEE" + "codePostal": "27470", + "codeCommune": "27251", + "libelleAcheminement": "FONTAINE L ABBE", + "nomCommune": "FONTAINE L ABBE" }, { - "codePostal": "68130", - "codeCommune": "68148", - "libelleAcheminement": "HUNDSBACH", - "nomCommune": "HUNDSBACH" + "codePostal": "37370", + "codeCommune": "37170", + "libelleAcheminement": "NEUVY LE ROI", + "nomCommune": "NEUVY LE ROI" }, { - "codePostal": "62310", - "codeCommune": "62541", - "libelleAcheminement": "MAISONCELLE", - "nomCommune": "MAISONCELLE" + "codePostal": "37150", + "codeCommune": "37110", + "libelleAcheminement": "FRANCUEIL", + "nomCommune": "FRANCUEIL" }, { - "codePostal": "20230", - "codeCommune": "2B057", - "libelleAcheminement": "CANALE DI VERDE", - "nomCommune": "CANALE DI VERDE" + "codePostal": "26470", + "codeCommune": "26012", + "libelleAcheminement": "ARNAYON", + "nomCommune": "ARNAYON" }, { - "codePostal": "55000", - "codeCommune": "55123", - "libelleAcheminement": "LES HAUTS DE CHEE", - "nomCommune": "LES HAUTS DE CHEE" + "codePostal": "27220", + "codeCommune": "27256", + "libelleAcheminement": "LA FORET DU PARC", + "nomCommune": "LA FORET DU PARC" }, { - "codePostal": "68040", - "codeCommune": "68155", - "libelleAcheminement": "INGERSHEIM", - "nomCommune": "INGERSHEIM" + "codePostal": "37800", + "codeCommune": "37174", + "libelleAcheminement": "NOUATRE", + "nomCommune": "NOUATRE" }, { - "codePostal": "62810", - "codeCommune": "62544", - "libelleAcheminement": "MANIN", - "nomCommune": "MANIN" + "codePostal": "37110", + "codeCommune": "37116", + "libelleAcheminement": "LES HERMITES", + "nomCommune": "LES HERMITES" }, { - "codePostal": "20218", - "codeCommune": "2B080", - "libelleAcheminement": "CASTIFAO", - "nomCommune": "CASTIFAO" + "codePostal": "26570", + "codeCommune": "26018", + "libelleAcheminement": "AULAN", + "nomCommune": "AULAN" }, { - "codePostal": "55260", - "codeCommune": "55128", - "libelleAcheminement": "COURCELLES SUR AIRE", - "nomCommune": "COURCELLES SUR AIRE" + "codePostal": "27220", + "codeCommune": "27259", + "libelleAcheminement": "FOUCRAINVILLE", + "nomCommune": "FOUCRAINVILLE" }, { - "codePostal": "68680", - "codeCommune": "68163", - "libelleAcheminement": "KEMBS", - "nomCommune": "KEMBS" + "codePostal": "37230", + "codeCommune": "37182", + "libelleAcheminement": "PERNAY", + "nomCommune": "PERNAY" }, { - "codePostal": "62170", - "codeCommune": "62547", - "libelleAcheminement": "MARANT", - "nomCommune": "MARANT" + "codePostal": "37420", + "codeCommune": "37118", + "libelleAcheminement": "HUISMES", + "nomCommune": "HUISMES" }, { - "codePostal": "20218", - "codeCommune": "2B081", - "libelleAcheminement": "CASTIGLIONE", - "nomCommune": "CASTIGLIONE" + "codePostal": "26310", + "codeCommune": "26025", + "libelleAcheminement": "BARNAVE", + "nomCommune": "BARNAVE" }, { - "codePostal": "55100", - "codeCommune": "55139", - "libelleAcheminement": "CUMIERES LE MORT HOMME", - "nomCommune": "CUMIERES LE MORT HOMME" + "codePostal": "27370", + "codeCommune": "27261", + "libelleAcheminement": "FOUQUEVILLE", + "nomCommune": "FOUQUEVILLE" }, { - "codePostal": "68480", - "codeCommune": "68165", - "libelleAcheminement": "KIFFIS", - "nomCommune": "KIFFIS" + "codePostal": "37800", + "codeCommune": "37190", + "libelleAcheminement": "PUSSIGNY", + "nomCommune": "PUSSIGNY" }, { - "codePostal": "62630", - "codeCommune": "62554", - "libelleAcheminement": "MARESVILLE", - "nomCommune": "MARESVILLE" + "codePostal": "37220", + "codeCommune": "37119", + "libelleAcheminement": "L ILE BOUCHARD", + "nomCommune": "L ILE BOUCHARD" }, { - "codePostal": "20238", - "codeCommune": "2B086", - "libelleAcheminement": "CENTURI", - "nomCommune": "CENTURI" + "codePostal": "26310", + "codeCommune": "26030", + "libelleAcheminement": "LA BATIE DES FONDS", + "nomCommune": "LA BATIE DES FONDS" }, { - "codePostal": "55110", - "codeCommune": "55140", - "libelleAcheminement": "CUNEL", - "nomCommune": "CUNEL" + "codePostal": "27500", + "codeCommune": "27263", + "libelleAcheminement": "LE PERREY", + "nomCommune": "LE PERREY" }, { - "codePostal": "68290", - "codeCommune": "68167", - "libelleAcheminement": "KIRCHBERG", - "nomCommune": "KIRCHBERG" + "codePostal": "37120", + "codeCommune": "37191", + "libelleAcheminement": "RAZINES", + "nomCommune": "RAZINES" }, { - "codePostal": "62170", - "codeCommune": "62556", - "libelleAcheminement": "MARLES SUR CANCHE", - "nomCommune": "MARLES SUR CANCHE" + "codePostal": "37120", + "codeCommune": "37121", + "libelleAcheminement": "JAULNAY", + "nomCommune": "JAULNAY" }, { - "codePostal": "20221", - "codeCommune": "2B087", - "libelleAcheminement": "CERVIONE", - "nomCommune": "CERVIONE" + "codePostal": "26790", + "codeCommune": "26054", + "libelleAcheminement": "BOUCHET", + "nomCommune": "BOUCHET" }, { - "codePostal": "55130", - "codeCommune": "55142", - "libelleAcheminement": "DAINVILLE BERTHELEVILLE", - "nomCommune": "DAINVILLE BERTHELEVILLE" + "codePostal": "27680", + "codeCommune": "27263", + "libelleAcheminement": "LE PERREY", + "nomCommune": "LE PERREY" }, { - "codePostal": "68440", - "codeCommune": "68174", - "libelleAcheminement": "LANDSER", - "nomCommune": "LANDSER" + "codePostal": "37420", + "codeCommune": "37197", + "libelleAcheminement": "RIGNY USSE", + "nomCommune": "RIGNY USSE" }, { - "codePostal": "62240", - "codeCommune": "62566", - "libelleAcheminement": "MENNEVILLE", - "nomCommune": "MENNEVILLE" + "codePostal": "37300", + "codeCommune": "37122", + "libelleAcheminement": "JOUE LES TOURS", + "nomCommune": "JOUE LES TOURS" }, { - "codePostal": "20212", - "codeCommune": "2B110", - "libelleAcheminement": "FAVALELLO DE BOZIO", - "nomCommune": "FAVALELLO" + "codePostal": "26410", + "codeCommune": "26055", + "libelleAcheminement": "BOULC", + "nomCommune": "BOULC" }, { - "codePostal": "55320", - "codeCommune": "55154", - "libelleAcheminement": "DIEUE SUR MEUSE", - "nomCommune": "DIEUE SUR MEUSE" + "codePostal": "27800", + "codeCommune": "27266", + "libelleAcheminement": "FRANQUEVILLE", + "nomCommune": "FRANQUEVILLE" }, { - "codePostal": "68580", - "codeCommune": "68176", - "libelleAcheminement": "LARGITZEN", - "nomCommune": "LARGITZEN" + "codePostal": "37190", + "codeCommune": "37200", + "libelleAcheminement": "RIVARENNES", + "nomCommune": "RIVARENNES" }, { - "codePostal": "62890", - "codeCommune": "62567", - "libelleAcheminement": "MENTQUE NORTBECOURT", - "nomCommune": "MENTQUE NORTBECOURT" + "codePostal": "37270", + "codeCommune": "37124", + "libelleAcheminement": "LARCAY", + "nomCommune": "LARCAY" }, { - "codePostal": "20251", - "codeCommune": "2B126", - "libelleAcheminement": "GIUNCAGGIO", - "nomCommune": "GIUNCAGGIO" + "codePostal": "26410", + "codeCommune": "26055", + "libelleAcheminement": "BOULC", + "nomCommune": "BOULC" }, { - "codePostal": "55150", - "codeCommune": "55156", - "libelleAcheminement": "DOMBRAS", - "nomCommune": "DOMBRAS" + "codePostal": "27600", + "codeCommune": "27275", + "libelleAcheminement": "GAILLON", + "nomCommune": "GAILLON" }, { - "codePostal": "68610", - "codeCommune": "68177", - "libelleAcheminement": "LAUTENBACH", - "nomCommune": "LAUTENBACH" + "codePostal": "37360", + "codeCommune": "37204", + "libelleAcheminement": "ROUZIERS DE TOURAINE", + "nomCommune": "ROUZIERS DE TOURAINE" }, { - "codePostal": "62560", - "codeCommune": "62569", - "libelleAcheminement": "MERCK ST LIEVIN", - "nomCommune": "MERCK ST LIEVIN" + "codePostal": "37240", + "codeCommune": "37130", + "libelleAcheminement": "LIGUEIL", + "nomCommune": "LIGUEIL" }, { - "codePostal": "20220", - "codeCommune": "2B134", - "libelleAcheminement": "L ILE ROUSSE", - "nomCommune": "L ILE ROUSSE" + "codePostal": "26500", + "codeCommune": "26058", + "libelleAcheminement": "BOURG LES VALENCE", + "nomCommune": "BOURG LES VALENCE" }, { - "codePostal": "55240", - "codeCommune": "55158", - "libelleAcheminement": "DOMMARY BARONCOURT", - "nomCommune": "DOMMARY BARONCOURT" + "codePostal": "27140", + "codeCommune": "27284", + "libelleAcheminement": "GISORS", + "nomCommune": "GISORS" }, { - "codePostal": "68610", - "codeCommune": "68178", - "libelleAcheminement": "LAUTENBACHZELL", - "nomCommune": "LAUTENBACHZELL" + "codePostal": "37190", + "codeCommune": "37205", + "libelleAcheminement": "SACHE", + "nomCommune": "SACHE" }, { - "codePostal": "62680", - "codeCommune": "62570", - "libelleAcheminement": "MERICOURT", - "nomCommune": "MERICOURT" + "codePostal": "37160", + "codeCommune": "37145", + "libelleAcheminement": "MARCE SUR ESVES", + "nomCommune": "MARCE SUR ESVES" }, { - "codePostal": "20215", - "codeCommune": "2B145", - "libelleAcheminement": "LORETO DI CASINCA", - "nomCommune": "LORETO DI CASINCA" + "codePostal": "26400", + "codeCommune": "26065", + "libelleAcheminement": "CHABRILLAN", + "nomCommune": "CHABRILLAN" }, { - "codePostal": "55150", - "codeCommune": "55170", - "libelleAcheminement": "ECUREY EN VERDUNOIS", - "nomCommune": "ECUREY EN VERDUNOIS" + "codePostal": "27560", + "codeCommune": "27286", + "libelleAcheminement": "GIVERVILLE", + "nomCommune": "GIVERVILLE" }, { - "codePostal": "68480", - "codeCommune": "68181", - "libelleAcheminement": "LEVONCOURT", - "nomCommune": "LEVONCOURT" + "codePostal": "37140", + "codeCommune": "37228", + "libelleAcheminement": "ST NICOLAS DE BOURGUEIL", + "nomCommune": "ST NICOLAS DE BOURGUEIL" }, { - "codePostal": "62155", - "codeCommune": "62571", - "libelleAcheminement": "MERLIMONT", - "nomCommune": "MERLIMONT" + "codePostal": "37120", + "codeCommune": "37148", + "libelleAcheminement": "MARIGNY MARMANDE", + "nomCommune": "MARIGNY MARMANDE" }, { - "codePostal": "20290", - "codeCommune": "2B148", - "libelleAcheminement": "LUCCIANA", - "nomCommune": "LUCCIANA" + "codePostal": "26190", + "codeCommune": "26066", + "libelleAcheminement": "LE CHAFFAL", + "nomCommune": "LE CHAFFAL" }, { - "codePostal": "55140", - "codeCommune": "55173", - "libelleAcheminement": "EPIEZ SUR MEUSE", - "nomCommune": "EPIEZ SUR MEUSE" + "codePostal": "27390", + "codeCommune": "27289", + "libelleAcheminement": "LA GOULAFRIERE", + "nomCommune": "LA GOULAFRIERE" }, { - "codePostal": "68280", - "codeCommune": "68189", - "libelleAcheminement": "LOGELHEIM", - "nomCommune": "LOGELHEIM" + "codePostal": "37140", + "codeCommune": "37232", + "libelleAcheminement": "COTEAUX SUR LOIRE", + "nomCommune": "COTEAUX SUR LOIRE" }, { - "codePostal": "62124", - "codeCommune": "62572", - "libelleAcheminement": "METZ EN COUTURE", - "nomCommune": "METZ EN COUTURE" + "codePostal": "37460", + "codeCommune": "37157", + "libelleAcheminement": "MONTRESOR", + "nomCommune": "MONTRESOR" }, { - "codePostal": "20240", - "codeCommune": "2B149", - "libelleAcheminement": "LUGO DI NAZZA", - "nomCommune": "LUGO DI NAZZA" + "codePostal": "26150", + "codeCommune": "26069", + "libelleAcheminement": "CHAMALOC", + "nomCommune": "CHAMALOC" }, { - "codePostal": "55500", - "codeCommune": "55179", - "libelleAcheminement": "ERNEVILLE AUX BOIS", - "nomCommune": "ERNEVILLE AUX BOIS" + "codePostal": "27170", + "codeCommune": "27290", + "libelleAcheminement": "GOUPIL OTHON", + "nomCommune": "GOUPIL OTHON" }, { - "codePostal": "68720", - "codeCommune": "68191", - "libelleAcheminement": "LUEMSCHWILLER", - "nomCommune": "LUEMSCHWILLER" + "codePostal": "37340", + "codeCommune": "37241", + "libelleAcheminement": "SAVIGNE SUR LATHAN", + "nomCommune": "SAVIGNE SUR LATHAN" }, { - "codePostal": "62123", - "codeCommune": "62578", - "libelleAcheminement": "MONCHIET", - "nomCommune": "MONCHIET" + "codePostal": "37110", + "codeCommune": "37160", + "libelleAcheminement": "MORAND", + "nomCommune": "MORAND" }, { - "codePostal": "20270", - "codeCommune": "2B161", - "libelleAcheminement": "MOITA", - "nomCommune": "MOITA" + "codePostal": "26230", + "codeCommune": "26070", + "libelleAcheminement": "CHAMARET", + "nomCommune": "CHAMARET" }, { - "codePostal": "55400", - "codeCommune": "55181", - "libelleAcheminement": "ETAIN", - "nomCommune": "ETAIN" + "codePostal": "27380", + "codeCommune": "27294", + "libelleAcheminement": "VAL D ORGER", + "nomCommune": "VAL D ORGER" }, { - "codePostal": "68210", - "codeCommune": "68196", - "libelleAcheminement": "MAGNY", - "nomCommune": "MAGNY" + "codePostal": "37510", + "codeCommune": "37243", + "libelleAcheminement": "SAVONNIERES", + "nomCommune": "SAVONNIERES" }, { - "codePostal": "62140", - "codeCommune": "62596", - "libelleAcheminement": "MOURIEZ", - "nomCommune": "MOURIEZ" + "codePostal": "37210", + "codeCommune": "37171", + "libelleAcheminement": "NOIZAY", + "nomCommune": "NOIZAY" }, { - "codePostal": "20218", - "codeCommune": "2B162", - "libelleAcheminement": "MOLTIFAO", - "nomCommune": "MOLTIFAO" + "codePostal": "26600", + "codeCommune": "26071", + "libelleAcheminement": "CHANOS CURSON", + "nomCommune": "CHANOS CURSON" }, { - "codePostal": "55200", - "codeCommune": "55184", - "libelleAcheminement": "EUVILLE", - "nomCommune": "EUVILLE" + "codePostal": "27270", + "codeCommune": "27295", + "libelleAcheminement": "GRAND CAMP", + "nomCommune": "GRAND CAMP" }, { - "codePostal": "68510", - "codeCommune": "68198", - "libelleAcheminement": "MAGSTATT LE HAUT", - "nomCommune": "MAGSTATT LE HAUT" + "codePostal": "37220", + "codeCommune": "37244", + "libelleAcheminement": "SAZILLY", + "nomCommune": "SAZILLY" }, { - "codePostal": "62121", - "codeCommune": "62597", - "libelleAcheminement": "MOYENNEVILLE", - "nomCommune": "MOYENNEVILLE" + "codePostal": "37460", + "codeCommune": "37173", + "libelleAcheminement": "NOUANS LES FONTAINES", + "nomCommune": "NOUANS LES FONTAINES" }, { - "codePostal": "20214", - "codeCommune": "2B167", - "libelleAcheminement": "MONTEGROSSO", - "nomCommune": "MONTEGROSSO" + "codePostal": "26470", + "codeCommune": "26075", + "libelleAcheminement": "LA CHARCE", + "nomCommune": "LA CHARCE" }, { - "codePostal": "55200", - "codeCommune": "55184", - "libelleAcheminement": "EUVILLE", - "nomCommune": "EUVILLE" + "codePostal": "27170", + "codeCommune": "27300", + "libelleAcheminement": "GROSLEY SUR RISLE", + "nomCommune": "GROSLEY SUR RISLE" }, { - "codePostal": "68630", - "codeCommune": "68209", - "libelleAcheminement": "MITTELWIHR", - "nomCommune": "MITTELWIHR" + "codePostal": "37360", + "codeCommune": "37249", + "libelleAcheminement": "SONZAY", + "nomCommune": "SONZAY" }, { - "codePostal": "62142", - "codeCommune": "62599", - "libelleAcheminement": "NABRINGHEN", - "nomCommune": "NABRINGHEN" + "codePostal": "37460", + "codeCommune": "37177", + "libelleAcheminement": "ORBIGNY", + "nomCommune": "ORBIGNY" }, { - "codePostal": "20259", - "codeCommune": "2B190", - "libelleAcheminement": "OLMI CAPPELLA", - "nomCommune": "OLMI CAPPELLA" + "codePostal": "26300", + "codeCommune": "26079", + "libelleAcheminement": "CHARPEY", + "nomCommune": "CHARPEY" }, { - "codePostal": "55110", - "codeCommune": "55193", - "libelleAcheminement": "FORGES SUR MEUSE", - "nomCommune": "FORGES SUR MEUSE" + "codePostal": "27700", + "codeCommune": "27307", + "libelleAcheminement": "GUISENIERS", + "nomCommune": "GUISENIERS" }, { - "codePostal": "68580", - "codeCommune": "68216", - "libelleAcheminement": "MOOSLARGUE", - "nomCommune": "MOOSLARGUE" + "codePostal": "37310", + "codeCommune": "37253", + "libelleAcheminement": "SUBLAINES", + "nomCommune": "SUBLAINES" }, { - "codePostal": "62130", - "codeCommune": "62607", - "libelleAcheminement": "NEUVILLE AU CORNET", - "nomCommune": "NEUVILLE AU CORNET" + "codePostal": "37600", + "codeCommune": "37183", + "libelleAcheminement": "PERRUSSON", + "nomCommune": "PERRUSSON" }, { - "codePostal": "20236", - "codeCommune": "2B193", - "libelleAcheminement": "OMESSA", - "nomCommune": "OMESSA" + "codePostal": "26340", + "codeCommune": "26080", + "libelleAcheminement": "CHASTEL ARNAUD", + "nomCommune": "CHASTEL ARNAUD" }, { - "codePostal": "55400", - "codeCommune": "55201", - "libelleAcheminement": "FROMEZEY", - "nomCommune": "FROMEZEY" + "codePostal": "27800", + "codeCommune": "27318", + "libelleAcheminement": "LA HAYE DE CALLEVILLE", + "nomCommune": "LA HAYE DE CALLEVILLE" }, { - "codePostal": "68640", - "codeCommune": "68222", - "libelleAcheminement": "MUESPACH LE HAUT", - "nomCommune": "MUESPACH LE HAUT" + "codePostal": "37000", + "codeCommune": "37261", + "libelleAcheminement": "TOURS", + "nomCommune": "TOURS" }, { - "codePostal": "62610", - "codeCommune": "62614", - "libelleAcheminement": "NIELLES LES ARDRES", - "nomCommune": "NIELLES LES ARDRES" + "codePostal": "37340", + "codeCommune": "37198", + "libelleAcheminement": "RILLE", + "nomCommune": "RILLE" }, { - "codePostal": "20226", - "codeCommune": "2B199", - "libelleAcheminement": "PALASCA", - "nomCommune": "PALASCA" + "codePostal": "26780", + "codeCommune": "26085", + "libelleAcheminement": "CHATEAUNEUF DU RHONE", + "nomCommune": "CHATEAUNEUF DU RHONE" }, { - "codePostal": "55000", - "codeCommune": "55207", - "libelleAcheminement": "GERY", - "nomCommune": "GERY" + "codePostal": "27370", + "codeCommune": "27320", + "libelleAcheminement": "LA HAYE DU THEIL", + "nomCommune": "LA HAYE DU THEIL" }, { - "codePostal": "68740", - "codeCommune": "68225", - "libelleAcheminement": "MUNCHHOUSE", - "nomCommune": "MUNCHHOUSE" + "codePostal": "37600", + "codeCommune": "37265", + "libelleAcheminement": "VARENNES", + "nomCommune": "VARENNES" }, { - "codePostal": "62890", - "codeCommune": "62618", - "libelleAcheminement": "NORDAUSQUES", - "nomCommune": "NORDAUSQUES" + "codePostal": "37220", + "codeCommune": "37199", + "libelleAcheminement": "RILLY SUR VIENNE", + "nomCommune": "RILLY SUR VIENNE" }, { - "codePostal": "20229", - "codeCommune": "2B221", - "libelleAcheminement": "PIEDIPARTINO", - "nomCommune": "PIEDIPARTINO" + "codePostal": "26410", + "codeCommune": "26086", + "libelleAcheminement": "CHATILLON EN DIOIS", + "nomCommune": "CHATILLON EN DIOIS" }, { - "codePostal": "55260", - "codeCommune": "55210", - "libelleAcheminement": "GIMECOURT", - "nomCommune": "GIMECOURT" + "codePostal": "27700", + "codeCommune": "27329", + "libelleAcheminement": "HENNEZIS", + "nomCommune": "HENNEZIS" }, { - "codePostal": "68250", - "codeCommune": "68228", - "libelleAcheminement": "MUNWILLER", - "nomCommune": "MUNWILLER" + "codePostal": "37460", + "codeCommune": "37275", + "libelleAcheminement": "VILLEDOMAIN", + "nomCommune": "VILLEDOMAIN" }, { - "codePostal": "62128", - "codeCommune": "62619", - "libelleAcheminement": "NOREUIL", - "nomCommune": "NOREUIL" + "codePostal": "37500", + "codeCommune": "37202", + "libelleAcheminement": "LA ROCHE CLERMAULT", + "nomCommune": "LA ROCHE CLERMAULT" }, { - "codePostal": "20233", - "codeCommune": "2B224", - "libelleAcheminement": "PIETRACORBARA", - "nomCommune": "PIETRACORBARA" + "codePostal": "26110", + "codeCommune": "26089", + "libelleAcheminement": "CHAUDEBONNE", + "nomCommune": "CHAUDEBONNE" }, { - "codePostal": "55400", - "codeCommune": "55211", - "libelleAcheminement": "GINCREY", - "nomCommune": "GINCREY" + "codePostal": "27400", + "codeCommune": "27332", + "libelleAcheminement": "HEUDEBOUVILLE", + "nomCommune": "HEUDEBOUVILLE" }, { - "codePostal": "68960", - "codeCommune": "68240", - "libelleAcheminement": "ILLTAL", - "nomCommune": "ILLTAL" + "codePostal": "37290", + "codeCommune": "37282", + "libelleAcheminement": "YZEURES SUR CREUSE", + "nomCommune": "YZEURES SUR CREUSE" }, { - "codePostal": "62370", - "codeCommune": "62623", - "libelleAcheminement": "NOUVELLE EGLISE", - "nomCommune": "NOUVELLE EGLISE" + "codePostal": "37360", + "codeCommune": "37206", + "libelleAcheminement": "ST ANTOINE DU ROCHER", + "nomCommune": "ST ANTOINE DU ROCHER" }, { - "codePostal": "20251", - "codeCommune": "2B226", - "libelleAcheminement": "PIETRASERENA", - "nomCommune": "PIETRASERENA" + "codePostal": "26260", + "codeCommune": "26092", + "libelleAcheminement": "CHAVANNES", + "nomCommune": "CHAVANNES" }, { - "codePostal": "55140", - "codeCommune": "55217", - "libelleAcheminement": "GOUSSAINCOURT", - "nomCommune": "GOUSSAINCOURT" + "codePostal": "27230", + "codeCommune": "27334", + "libelleAcheminement": "HEUDREVILLE EN LIEUVIN", + "nomCommune": "HEUDREVILLE EN LIEUVIN" }, { - "codePostal": "68960", - "codeCommune": "68240", - "libelleAcheminement": "ILLTAL", - "nomCommune": "ILLTAL" + "codePostal": "38490", + "codeCommune": "38001", + "libelleAcheminement": "LES ABRETS EN DAUPHINE", + "nomCommune": "LES ABRETS EN DAUPHINE" }, { - "codePostal": "62123", - "codeCommune": "62629", - "libelleAcheminement": "NOYELLETTE", - "nomCommune": "NOYELLETTE" + "codePostal": "37550", + "codeCommune": "37208", + "libelleAcheminement": "ST AVERTIN", + "nomCommune": "ST AVERTIN" }, { - "codePostal": "20234", - "codeCommune": "2B234", - "libelleAcheminement": "PIOBETTA", - "nomCommune": "PIOBETTA" + "codePostal": "26240", + "codeCommune": "26094", + "libelleAcheminement": "CLAVEYSON", + "nomCommune": "CLAVEYSON" }, { - "codePostal": "55000", - "codeCommune": "55221", - "libelleAcheminement": "GUERPONT", - "nomCommune": "GUERPONT" + "codePostal": "27950", + "codeCommune": "27336", + "libelleAcheminement": "LA HEUNIERE", + "nomCommune": "LA HEUNIERE" }, { - "codePostal": "68130", - "codeCommune": "68245", - "libelleAcheminement": "OBERMORSCHWILLER", - "nomCommune": "OBERMORSCHWILLER" + "codePostal": "38114", + "codeCommune": "38005", + "libelleAcheminement": "ALLEMOND", + "nomCommune": "ALLEMOND" }, { - "codePostal": "62810", - "codeCommune": "62630", - "libelleAcheminement": "NOYELLE VION", - "nomCommune": "NOYELLE VION" + "codePostal": "37800", + "codeCommune": "37212", + "libelleAcheminement": "STE CATHERINE DE FIERBOIS", + "nomCommune": "STE CATHERINE DE FIERBOIS" }, { - "codePostal": "20259", - "codeCommune": "2B235", - "libelleAcheminement": "PIOGGIOLA", - "nomCommune": "PIOGGIOLA" + "codePostal": "26260", + "codeCommune": "26096", + "libelleAcheminement": "CLERIEUX", + "nomCommune": "CLERIEUX" }, { - "codePostal": "55400", - "codeCommune": "55222", - "libelleAcheminement": "GUSSAINVILLE", - "nomCommune": "GUSSAINVILLE" + "codePostal": "27570", + "codeCommune": "27341", + "libelleAcheminement": "L HOSMES", + "nomCommune": "L HOSMES" }, { - "codePostal": "68370", - "codeCommune": "68249", - "libelleAcheminement": "ORBEY", - "nomCommune": "ORBEY" + "codePostal": "38140", + "codeCommune": "38013", + "libelleAcheminement": "APPRIEU", + "nomCommune": "APPRIEU" }, { - "codePostal": "62270", - "codeCommune": "62631", - "libelleAcheminement": "NUNCQ HAUTECOTE", - "nomCommune": "NUNCQ HAUTECOTE" + "codePostal": "37370", + "codeCommune": "37213", + "libelleAcheminement": "ST CHRISTOPHE SUR LE NAIS", + "nomCommune": "ST CHRISTOPHE SUR LE NAIS" }, { - "codePostal": "20229", - "codeCommune": "2B243", - "libelleAcheminement": "POLVEROSO", - "nomCommune": "POLVEROSO" + "codePostal": "26220", + "codeCommune": "26101", + "libelleAcheminement": "COMPS", + "nomCommune": "COMPS" }, { - "codePostal": "55600", - "codeCommune": "55226", - "libelleAcheminement": "HAN LES JUVIGNY", - "nomCommune": "HAN LES JUVIGNY" + "codePostal": "27400", + "codeCommune": "27342", + "libelleAcheminement": "HOUETTEVILLE", + "nomCommune": "HOUETTEVILLE" }, { - "codePostal": "68490", - "codeCommune": "68254", - "libelleAcheminement": "PETIT LANDAU", - "nomCommune": "PETIT LANDAU" + "codePostal": "38440", + "codeCommune": "38015", + "libelleAcheminement": "ARTAS", + "nomCommune": "ARTAS" }, { - "codePostal": "62920", - "codeCommune": "62632", - "libelleAcheminement": "OBLINGHEM", - "nomCommune": "OBLINGHEM" + "codePostal": "37600", + "codeCommune": "37218", + "libelleAcheminement": "ST FLOVIER", + "nomCommune": "ST FLOVIER" }, { - "codePostal": "20243", - "codeCommune": "2B251", - "libelleAcheminement": "PRUNELLI DI FIUMORBO", - "nomCommune": "PRUNELLI DI FIUMORBO" + "codePostal": "26600", + "codeCommune": "26110", + "libelleAcheminement": "CROZES HERMITAGE", + "nomCommune": "CROZES HERMITAGE" }, { - "codePostal": "55210", - "codeCommune": "55228", - "libelleAcheminement": "HANNONVILLE SOUS LES COTES", - "nomCommune": "HANNONVILLE SOUS LES COTES" + "codePostal": "27120", + "codeCommune": "27343", + "libelleAcheminement": "HOULBEC COCHEREL", + "nomCommune": "HOULBEC COCHEREL" }, { - "codePostal": "68480", - "codeCommune": "68259", - "libelleAcheminement": "RAEDERSDORF", - "nomCommune": "RAEDERSDORF" + "codePostal": "38630", + "codeCommune": "38022", + "libelleAcheminement": "LES AVENIERES VEYRINS THUELLIN", + "nomCommune": "LES AVENIERES VEYRINS THUELLIN" }, { - "codePostal": "62760", - "codeCommune": "62640", - "libelleAcheminement": "ORVILLE", - "nomCommune": "ORVILLE" + "codePostal": "37500", + "codeCommune": "37220", + "libelleAcheminement": "ST GERMAIN SUR VIENNE", + "nomCommune": "ST GERMAIN SUR VIENNE" }, { - "codePostal": "20213", - "codeCommune": "2B252", - "libelleAcheminement": "PRUNO", - "nomCommune": "PRUNO" + "codePostal": "26220", + "codeCommune": "26114", + "libelleAcheminement": "DIEULEFIT", + "nomCommune": "DIEULEFIT" }, { - "codePostal": "55160", - "codeCommune": "55242", - "libelleAcheminement": "HENNEMONT", - "nomCommune": "HENNEMONT" + "codePostal": "27440", + "codeCommune": "27346", + "libelleAcheminement": "HOUVILLE EN VEXIN", + "nomCommune": "HOUVILLE EN VEXIN" }, { - "codePostal": "68470", - "codeCommune": "68262", - "libelleAcheminement": "RANSPACH", - "nomCommune": "RANSPACH" + "codePostal": "38530", + "codeCommune": "38027", + "libelleAcheminement": "BARRAUX", + "nomCommune": "BARRAUX" }, { - "codePostal": "62230", - "codeCommune": "62643", - "libelleAcheminement": "OUTREAU", - "nomCommune": "OUTREAU" + "codePostal": "37330", + "codeCommune": "37223", + "libelleAcheminement": "ST LAURENT DE LIN", + "nomCommune": "ST LAURENT DE LIN" }, { - "codePostal": "20213", - "codeCommune": "2B252", - "libelleAcheminement": "PRUNO", - "nomCommune": "PRUNO" + "codePostal": "26190", + "codeCommune": "26117", + "libelleAcheminement": "ECHEVIS", + "nomCommune": "ECHEVIS" }, { - "codePostal": "55130", - "codeCommune": "55248", - "libelleAcheminement": "HOUDELAINCOURT", - "nomCommune": "HOUDELAINCOURT" + "codePostal": "27460", + "codeCommune": "27348", + "libelleAcheminement": "IGOVILLE", + "nomCommune": "IGOVILLE" }, { - "codePostal": "68220", - "codeCommune": "68264", - "libelleAcheminement": "RANSPACH LE HAUT", - "nomCommune": "RANSPACH LE HAUT" + "codePostal": "38470", + "codeCommune": "38033", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "62650", - "codeCommune": "62648", - "libelleAcheminement": "PARENTY", - "nomCommune": "PARENTY" + "codePostal": "37380", + "codeCommune": "37224", + "libelleAcheminement": "ST LAURENT EN GATINES", + "nomCommune": "ST LAURENT EN GATINES" }, { - "codePostal": "20242", - "codeCommune": "2B263", - "libelleAcheminement": "ROSPIGLIANI", - "nomCommune": "ROSPIGLIANI" + "codePostal": "26800", + "codeCommune": "26124", + "libelleAcheminement": "ETOILE SUR RHONE", + "nomCommune": "ETOILE SUR RHONE" }, { - "codePostal": "55200", - "codeCommune": "55258", - "libelleAcheminement": "GEVILLE", - "nomCommune": "GEVILLE" + "codePostal": "27400", + "codeCommune": "27351", + "libelleAcheminement": "INCARVILLE", + "nomCommune": "INCARVILLE" }, { - "codePostal": "68890", - "codeCommune": "68266", - "libelleAcheminement": "REGUISHEIM", - "nomCommune": "REGUISHEIM" + "codePostal": "38270", + "codeCommune": "38037", + "libelleAcheminement": "BELLEGARDE POUSSIEU", + "nomCommune": "BELLEGARDE POUSSIEU" }, { - "codePostal": "62130", - "codeCommune": "62655", - "libelleAcheminement": "PIERREMONT", - "nomCommune": "PIERREMONT" + "codePostal": "37270", + "codeCommune": "37225", + "libelleAcheminement": "ST MARTIN LE BEAU", + "nomCommune": "ST MARTIN LE BEAU" }, { - "codePostal": "20290", - "codeCommune": "2B274", - "libelleAcheminement": "SCOLCA", - "nomCommune": "SCOLCA" + "codePostal": "26800", + "codeCommune": "26124", + "libelleAcheminement": "ETOILE SUR RHONE", + "nomCommune": "ETOILE SUR RHONE" }, { - "codePostal": "55120", - "codeCommune": "55260", - "libelleAcheminement": "JULVECOURT", - "nomCommune": "JULVECOURT" + "codePostal": "27540", + "codeCommune": "27355", + "libelleAcheminement": "IVRY LA BATAILLE", + "nomCommune": "IVRY LA BATAILLE" }, { - "codePostal": "68150", - "codeCommune": "68269", - "libelleAcheminement": "RIBEAUVILLE", - "nomCommune": "RIBEAUVILLE" + "codePostal": "38190", + "codeCommune": "38039", + "libelleAcheminement": "BERNIN", + "nomCommune": "BERNIN" }, { - "codePostal": "62390", - "codeCommune": "62665", - "libelleAcheminement": "LE PONCHEL", - "nomCommune": "LE PONCHEL" + "codePostal": "37310", + "codeCommune": "37234", + "libelleAcheminement": "ST QUENTIN SUR INDROIS", + "nomCommune": "ST QUENTIN SUR INDROIS" }, { - "codePostal": "20213", - "codeCommune": "2B286", - "libelleAcheminement": "SORBO OCAGNANO", - "nomCommune": "SORBO OCAGNANO" + "codePostal": "26560", + "codeCommune": "26126", + "libelleAcheminement": "EYGALAYES", + "nomCommune": "EYGALAYES" }, { - "codePostal": "55300", - "codeCommune": "55264", - "libelleAcheminement": "KOEUR LA PETITE", - "nomCommune": "KOEUR LA PETITE" + "codePostal": "27120", + "codeCommune": "27358", + "libelleAcheminement": "JOUY SUR EURE", + "nomCommune": "JOUY SUR EURE" }, { - "codePostal": "68640", - "codeCommune": "68273", - "libelleAcheminement": "RIESPACH", - "nomCommune": "RIESPACH" + "codePostal": "38330", + "codeCommune": "38045", + "libelleAcheminement": "BIVIERS", + "nomCommune": "BIVIERS" }, { - "codePostal": "62480", - "codeCommune": "62667", - "libelleAcheminement": "LE PORTEL", - "nomCommune": "LE PORTEL" + "codePostal": "37390", + "codeCommune": "37237", + "libelleAcheminement": "ST ROCH", + "nomCommune": "ST ROCH" }, { - "codePostal": "20217", - "codeCommune": "2B298", - "libelleAcheminement": "ST FLORENT", - "nomCommune": "ST FLORENT" + "codePostal": "26170", + "codeCommune": "26127", + "libelleAcheminement": "EYGALIERS", + "nomCommune": "EYGALIERS" }, { - "codePostal": "55160", - "codeCommune": "55265", - "libelleAcheminement": "LABEUVILLE", - "nomCommune": "LABEUVILLE" + "codePostal": "27690", + "codeCommune": "27365", + "libelleAcheminement": "LERY", + "nomCommune": "LERY" }, { - "codePostal": "68210", - "codeCommune": "68282", - "libelleAcheminement": "ROMAGNY", - "nomCommune": "ROMAGNY" + "codePostal": "38690", + "codeCommune": "38046", + "libelleAcheminement": "BIZONNES", + "nomCommune": "BIZONNES" }, { - "codePostal": "62550", - "codeCommune": "62669", - "libelleAcheminement": "PRESSY", - "nomCommune": "PRESSY" + "codePostal": "37600", + "codeCommune": "37238", + "libelleAcheminement": "ST SENOCH", + "nomCommune": "ST SENOCH" }, { - "codePostal": "20200", - "codeCommune": "2B309", - "libelleAcheminement": "SANTA MARIA DI LOTA", - "nomCommune": "SANTA MARIA DI LOTA" + "codePostal": "26730", + "codeCommune": "26129", + "libelleAcheminement": "EYMEUX", + "nomCommune": "EYMEUX" }, { - "codePostal": "55210", - "codeCommune": "55267", - "libelleAcheminement": "LACHAUSSEE", - "nomCommune": "LACHAUSSEE" + "codePostal": "27190", + "codeCommune": "27374", + "libelleAcheminement": "LOUVERSEY", + "nomCommune": "LOUVERSEY" }, { - "codePostal": "68660", - "codeCommune": "68283", - "libelleAcheminement": "ROMBACH LE FRANC", - "nomCommune": "ROMBACH LE FRANC" + "codePostal": "38510", + "codeCommune": "38050", + "libelleAcheminement": "LE BOUCHAGE", + "nomCommune": "LE BOUCHAGE" }, { - "codePostal": "62830", - "codeCommune": "62679", - "libelleAcheminement": "QUESTRECQUES", - "nomCommune": "QUESTRECQUES" + "codePostal": "37420", + "codeCommune": "37242", + "libelleAcheminement": "SAVIGNY EN VERON", + "nomCommune": "SAVIGNY EN VERON" }, { - "codePostal": "20221", - "codeCommune": "2B311", - "libelleAcheminement": "SANTA MARIA POGGIO", - "nomCommune": "SANTA MARIA POGGIO" + "codePostal": "26730", + "codeCommune": "26129", + "libelleAcheminement": "EYMEUX", + "nomCommune": "EYMEUX" }, { - "codePostal": "55210", - "codeCommune": "55267", - "libelleAcheminement": "LACHAUSSEE", - "nomCommune": "LACHAUSSEE" + "codePostal": "27320", + "codeCommune": "27378", + "libelleAcheminement": "LA MADELEINE DE NONANCOURT", + "nomCommune": "LA MADELEINE DE NONANCOURT" }, { - "codePostal": "68590", - "codeCommune": "68285", - "libelleAcheminement": "RORSCHWIHR", - "nomCommune": "RORSCHWIHR" + "codePostal": "38150", + "codeCommune": "38051", + "libelleAcheminement": "BOUGE CHAMBALUD", + "nomCommune": "BOUGE CHAMBALUD" }, { - "codePostal": "62390", - "codeCommune": "62683", - "libelleAcheminement": "QUOEUX HAUT MAINIL", - "nomCommune": "QUOEUX HAUT MAINIL" + "codePostal": "37600", + "codeCommune": "37246", + "libelleAcheminement": "SENNEVIERES", + "nomCommune": "SENNEVIERES" }, { - "codePostal": "20246", - "codeCommune": "2B314", - "libelleAcheminement": "SANTO PIETRO DI TENDA", - "nomCommune": "SANTO PIETRO DI TENDA" + "codePostal": "26160", + "codeCommune": "26134", + "libelleAcheminement": "FELINES SUR RIMANDOULE", + "nomCommune": "FELINES SUR RIMANDOULE" }, { - "codePostal": "55800", - "codeCommune": "55272", - "libelleAcheminement": "LAIMONT", - "nomCommune": "LAIMONT" + "codePostal": "27130", + "codeCommune": "27383", + "libelleAcheminement": "MANDRES", + "nomCommune": "MANDRES" }, { - "codePostal": "68128", - "codeCommune": "68286", - "libelleAcheminement": "ROSENAU", - "nomCommune": "ROSENAU" + "codePostal": "38590", + "codeCommune": "38058", + "libelleAcheminement": "BREZINS", + "nomCommune": "BREZINS" }, { - "codePostal": "62120", - "codeCommune": "62684", - "libelleAcheminement": "RACQUINGHEM", - "nomCommune": "RACQUINGHEM" + "codePostal": "37220", + "codeCommune": "37255", + "libelleAcheminement": "TAVANT", + "nomCommune": "TAVANT" }, { - "codePostal": "20230", - "codeCommune": "2B319", - "libelleAcheminement": "TALASANI", - "nomCommune": "TALASANI" + "codePostal": "26730", + "codeCommune": "26149", + "libelleAcheminement": "HOSTUN", + "nomCommune": "HOSTUN" }, { - "codePostal": "55300", - "codeCommune": "55274", - "libelleAcheminement": "LAMORVILLE", - "nomCommune": "LAMORVILLE" + "codePostal": "27210", + "codeCommune": "27384", + "libelleAcheminement": "MANNEVILLE LA RAOULT", + "nomCommune": "MANNEVILLE LA RAOULT" }, { - "codePostal": "68300", - "codeCommune": "68297", - "libelleAcheminement": "ST LOUIS", - "nomCommune": "ST LOUIS" + "codePostal": "38500", + "codeCommune": "38061", + "libelleAcheminement": "LA BUISSE", + "nomCommune": "LA BUISSE" }, { - "codePostal": "62129", - "codeCommune": "62691", - "libelleAcheminement": "ST AUGUSTIN", - "nomCommune": "ST AUGUSTIN" + "codePostal": "37220", + "codeCommune": "37256", + "libelleAcheminement": "THENEUIL", + "nomCommune": "THENEUIL" }, { - "codePostal": "20234", - "codeCommune": "2B321", - "libelleAcheminement": "TARRANO", - "nomCommune": "TARRANO" + "codePostal": "26210", + "codeCommune": "26162", + "libelleAcheminement": "LENS LESTANG", + "nomCommune": "LENS LESTANG" }, { - "codePostal": "55170", - "codeCommune": "55284", - "libelleAcheminement": "LAVINCOURT", - "nomCommune": "LAVINCOURT" + "codePostal": "27930", + "codeCommune": "27401", + "libelleAcheminement": "LE MESNIL FUGUET", + "nomCommune": "LE MESNIL FUGUET" }, { - "codePostal": "68520", - "codeCommune": "68302", - "libelleAcheminement": "SCHWEIGHOUSE THANN", - "nomCommune": "SCHWEIGHOUSE THANN" + "codePostal": "38150", + "codeCommune": "38072", + "libelleAcheminement": "CHANAS", + "nomCommune": "CHANAS" }, { - "codePostal": "62380", - "codeCommune": "62702", - "libelleAcheminement": "REMILLY WIRQUIN", - "nomCommune": "REMILLY WIRQUIN" + "codePostal": "37120", + "codeCommune": "37268", + "libelleAcheminement": "VERNEUIL LE CHATEAU", + "nomCommune": "VERNEUIL LE CHATEAU" }, { - "codePostal": "20270", - "codeCommune": "2B328", - "libelleAcheminement": "TOX", - "nomCommune": "TOX" + "codePostal": "26250", + "codeCommune": "26165", + "libelleAcheminement": "LIVRON SUR DROME", + "nomCommune": "LIVRON SUR DROME" }, { - "codePostal": "55200", - "codeCommune": "55288", - "libelleAcheminement": "LEROUVILLE", - "nomCommune": "LEROUVILLE" + "codePostal": "27290", + "codeCommune": "27413", + "libelleAcheminement": "MONTFORT SUR RISLE", + "nomCommune": "MONTFORT SUR RISLE" }, { - "codePostal": "68130", - "codeCommune": "68303", - "libelleAcheminement": "SCHWOBEN", - "nomCommune": "SCHWOBEN" + "codePostal": "38740", + "codeCommune": "38073", + "libelleAcheminement": "CHANTEPERIER", + "nomCommune": "CHANTEPERIER" }, { - "codePostal": "62990", - "codeCommune": "62710", - "libelleAcheminement": "RIMBOVAL", - "nomCommune": "RIMBOVAL" + "codePostal": "37700", + "codeCommune": "37273", + "libelleAcheminement": "LA VILLE AUX DAMES", + "nomCommune": "LA VILLE AUX DAMES" }, { - "codePostal": "20235", - "codeCommune": "2B337", - "libelleAcheminement": "VALLE DI ROSTINO", - "nomCommune": "VALLE DI ROSTINO" + "codePostal": "26270", + "codeCommune": "26166", + "libelleAcheminement": "LORIOL SUR DROME", + "nomCommune": "LORIOL SUR DROME" }, { - "codePostal": "55260", - "codeCommune": "55289", - "libelleAcheminement": "LEVONCOURT", - "nomCommune": "LEVONCOURT" + "codePostal": "27390", + "codeCommune": "27414", + "libelleAcheminement": "MONTREUIL L ARGILLE", + "nomCommune": "MONTREUIL L ARGILLE" }, { - "codePostal": "68580", - "codeCommune": "68305", - "libelleAcheminement": "SEPPOIS LE BAS", - "nomCommune": "SEPPOIS LE BAS" + "codePostal": "38580", + "codeCommune": "38078", + "libelleAcheminement": "LA CHAPELLE DU BARD", + "nomCommune": "LA CHAPELLE DU BARD" }, { - "codePostal": "62130", - "codeCommune": "62717", - "libelleAcheminement": "ROELLECOURT", - "nomCommune": "ROELLECOURT" + "codePostal": "37370", + "codeCommune": "37274", + "libelleAcheminement": "VILLEBOURG", + "nomCommune": "VILLEBOURG" }, { - "codePostal": "20229", - "codeCommune": "2B338", - "libelleAcheminement": "VALLE D OREZZA", - "nomCommune": "VALLE D OREZZA" + "codePostal": "26310", + "codeCommune": "26167", + "libelleAcheminement": "LUC EN DIOIS", + "nomCommune": "LUC EN DIOIS" }, { - "codePostal": "55110", - "codeCommune": "55292", - "libelleAcheminement": "LINY DEVANT DUN", - "nomCommune": "LINY DEVANT DUN" + "codePostal": "27170", + "codeCommune": "27425", + "libelleAcheminement": "NASSANDRES SUR RISLE", + "nomCommune": "NASSANDRES SUR RISLE" }, { - "codePostal": "68580", - "codeCommune": "68306", - "libelleAcheminement": "SEPPOIS LE HAUT", - "nomCommune": "SEPPOIS LE HAUT" + "codePostal": "38850", + "codeCommune": "38082", + "libelleAcheminement": "CHARAVINES", + "nomCommune": "CHARAVINES" }, { - "codePostal": "62870", - "codeCommune": "62723", - "libelleAcheminement": "ROUSSENT", - "nomCommune": "ROUSSENT" + "codePostal": "37460", + "codeCommune": "37277", + "libelleAcheminement": "VILLELOIN COULANGE", + "nomCommune": "VILLELOIN COULANGE" }, { - "codePostal": "20219", - "codeCommune": "2B354", - "libelleAcheminement": "VIVARIO", - "nomCommune": "VIVARIO" + "codePostal": "26120", + "codeCommune": "26170", + "libelleAcheminement": "MALISSARD", + "nomCommune": "MALISSARD" }, { - "codePostal": "55000", - "codeCommune": "55296", - "libelleAcheminement": "L ISLE EN RIGAULT", - "nomCommune": "L ISLE EN RIGAULT" + "codePostal": "27830", + "codeCommune": "27426", + "libelleAcheminement": "NEAUFLES ST MARTIN", + "nomCommune": "NEAUFLES ST MARTIN" }, { - "codePostal": "68290", - "codeCommune": "68308", - "libelleAcheminement": "SICKERT", - "nomCommune": "SICKERT" + "codePostal": "38140", + "codeCommune": "38084", + "libelleAcheminement": "CHARNECLES", + "nomCommune": "CHARNECLES" }, { - "codePostal": "62860", - "codeCommune": "62728", - "libelleAcheminement": "RUMAUCOURT", - "nomCommune": "RUMAUCOURT" + "codePostal": "38490", + "codeCommune": "38001", + "libelleAcheminement": "LES ABRETS EN DAUPHINE", + "nomCommune": "LES ABRETS EN DAUPHINE" }, { - "codePostal": "20219", - "codeCommune": "2B354", - "libelleAcheminement": "VIVARIO", - "nomCommune": "VIVARIO" + "codePostal": "26260", + "codeCommune": "26174", + "libelleAcheminement": "MARGES", + "nomCommune": "MARGES" }, { - "codePostal": "55000", - "codeCommune": "55298", - "libelleAcheminement": "LOISEY", - "nomCommune": "LOISEY" + "codePostal": "27250", + "codeCommune": "27427", + "libelleAcheminement": "NEAUFLES AUVERGNY", + "nomCommune": "NEAUFLES AUVERGNY" }, { - "codePostal": "68850", - "codeCommune": "68321", - "libelleAcheminement": "STAFFELFELDEN", - "nomCommune": "STAFFELFELDEN" + "codePostal": "38230", + "codeCommune": "38085", + "libelleAcheminement": "CHARVIEU CHAVAGNEUX", + "nomCommune": "CHARVIEU CHAVAGNEUX" }, { - "codePostal": "62124", - "codeCommune": "62731", - "libelleAcheminement": "RUYAULCOURT", - "nomCommune": "RUYAULCOURT" + "codePostal": "38460", + "codeCommune": "38010", + "libelleAcheminement": "ANNOISIN CHATELANS", + "nomCommune": "ANNOISIN CHATELANS" }, { - "codePostal": "20214", - "codeCommune": "2B361", - "libelleAcheminement": "ZILIA", - "nomCommune": "ZILIA" + "codePostal": "26510", + "codeCommune": "26199", + "libelleAcheminement": "MONTFERRAND LA FARE", + "nomCommune": "MONTFERRAND LA FARE" }, { - "codePostal": "55230", - "codeCommune": "55299", - "libelleAcheminement": "LOISON", - "nomCommune": "LOISON" + "codePostal": "27250", + "codeCommune": "27427", + "libelleAcheminement": "NEAUFLES AUVERGNY", + "nomCommune": "NEAUFLES AUVERGNY" }, { - "codePostal": "68440", - "codeCommune": "68323", - "libelleAcheminement": "STEINBRUNN LE BAS", - "nomCommune": "STEINBRUNN LE BAS" + "codePostal": "38230", + "codeCommune": "38085", + "libelleAcheminement": "CHARVIEU CHAVAGNEUX", + "nomCommune": "CHARVIEU CHAVAGNEUX" }, { - "codePostal": "62111", - "codeCommune": "62733", - "libelleAcheminement": "SAILLY AU BOIS", - "nomCommune": "SAILLY AU BOIS" + "codePostal": "38550", + "codeCommune": "38019", + "libelleAcheminement": "AUBERIVES SUR VAREZE", + "nomCommune": "AUBERIVES SUR VAREZE" }, { - "codePostal": "20272", - "codeCommune": "2B364", - "libelleAcheminement": "ZUANI", - "nomCommune": "ZUANI" + "codePostal": "26560", + "codeCommune": "26200", + "libelleAcheminement": "MONTFROC", + "nomCommune": "MONTFROC" }, { - "codePostal": "55500", - "codeCommune": "55300", - "libelleAcheminement": "LONGEAUX", - "nomCommune": "LONGEAUX" + "codePostal": "27150", + "codeCommune": "27430", + "libelleAcheminement": "LA NEUVE GRANGE", + "nomCommune": "LA NEUVE GRANGE" }, { - "codePostal": "68580", - "codeCommune": "68330", - "libelleAcheminement": "STRUETH", - "nomCommune": "STRUETH" + "codePostal": "38470", + "codeCommune": "38086", + "libelleAcheminement": "CHASSELAY", + "nomCommune": "CHASSELAY" }, { - "codePostal": "62490", - "codeCommune": "62734", - "libelleAcheminement": "SAILLY EN OSTREVENT", - "nomCommune": "SAILLY EN OSTREVENT" + "codePostal": "38142", + "codeCommune": "38020", + "libelleAcheminement": "AURIS", + "nomCommune": "AURIS" }, { - "codePostal": "30100", - "codeCommune": "30007", - "libelleAcheminement": "ALES", - "nomCommune": "ALES" + "codePostal": "26220", + "codeCommune": "26202", + "libelleAcheminement": "MONTJOUX", + "nomCommune": "MONTJOUX" }, { - "codePostal": "55260", - "codeCommune": "55301", - "libelleAcheminement": "LONGCHAMPS SUR AIRE", - "nomCommune": "LONGCHAMPS SUR AIRE" + "codePostal": "27890", + "codeCommune": "27432", + "libelleAcheminement": "LA NEUVILLE DU BOSC", + "nomCommune": "LA NEUVILLE DU BOSC" }, { - "codePostal": "01300", - "codeCommune": "01006", - "libelleAcheminement": "AMBLEON", - "nomCommune": "AMBLEON" + "codePostal": "38550", + "codeCommune": "38101", + "libelleAcheminement": "CHEYSSIEU", + "nomCommune": "CHEYSSIEU" }, { - "codePostal": "62860", - "codeCommune": "62739", - "libelleAcheminement": "SAINS LES MARQUION", - "nomCommune": "SAINS LES MARQUION" + "codePostal": "38390", + "codeCommune": "38026", + "libelleAcheminement": "LA BALME LES GROTTES", + "nomCommune": "LA BALME LES GROTTES" }, { - "codePostal": "30700", - "codeCommune": "30014", - "libelleAcheminement": "ARPAILLARGUES ET AUREILLAC", - "nomCommune": "ARPAILLARGUES ET AUREILLAC" + "codePostal": "26150", + "codeCommune": "26205", + "libelleAcheminement": "MONTMAUR EN DIOIS", + "nomCommune": "MONTMAUR EN DIOIS" }, { - "codePostal": "55700", - "codeCommune": "55310", - "libelleAcheminement": "LUZY ST MARTIN", - "nomCommune": "LUZY ST MARTIN" + "codePostal": "27560", + "codeCommune": "27435", + "libelleAcheminement": "LA NOE POULAIN", + "nomCommune": "LA NOE POULAIN" }, { - "codePostal": "01500", - "codeCommune": "01007", - "libelleAcheminement": "AMBRONAY", - "nomCommune": "AMBRONAY" + "codePostal": "38930", + "codeCommune": "38103", + "libelleAcheminement": "CHICHILIANNE", + "nomCommune": "CHICHILIANNE" }, { - "codePostal": "62370", - "codeCommune": "62748", - "libelleAcheminement": "ST FOLQUIN", - "nomCommune": "ST FOLQUIN" + "codePostal": "38140", + "codeCommune": "38030", + "libelleAcheminement": "BEAUCROISSANT", + "nomCommune": "BEAUCROISSANT" }, { - "codePostal": "30120", - "codeCommune": "30015", - "libelleAcheminement": "ARPHY", - "nomCommune": "ARPHY" + "codePostal": "26800", + "codeCommune": "26208", + "libelleAcheminement": "MONTOISON", + "nomCommune": "MONTOISON" }, { - "codePostal": "55270", - "codeCommune": "55313", - "libelleAcheminement": "MALANCOURT", - "nomCommune": "MALANCOURT" + "codePostal": "27150", + "codeCommune": "27437", + "libelleAcheminement": "NOJEON EN VEXIN", + "nomCommune": "NOJEON EN VEXIN" }, { - "codePostal": "01100", - "codeCommune": "01014", - "libelleAcheminement": "ARBENT", - "nomCommune": "ARBENT" + "codePostal": "38690", + "codeCommune": "38118", + "libelleAcheminement": "COLOMBE", + "nomCommune": "COLOMBE" }, { - "codePostal": "62128", - "codeCommune": "62754", - "libelleAcheminement": "ST LEGER", - "nomCommune": "ST LEGER" + "codePostal": "38440", + "codeCommune": "38035", + "libelleAcheminement": "BEAUVOIR DE MARC", + "nomCommune": "BEAUVOIR DE MARC" }, { - "codePostal": "30120", - "codeCommune": "30016", - "libelleAcheminement": "ARRE", - "nomCommune": "ARRE" + "codePostal": "26510", + "codeCommune": "26209", + "libelleAcheminement": "MONTREAL LES SOURCES", + "nomCommune": "MONTREAL LES SOURCES" }, { - "codePostal": "55700", - "codeCommune": "55323", - "libelleAcheminement": "MARTINCOURT SUR MEUSE", - "nomCommune": "MARTINCOURT SUR MEUSE" + "codePostal": "27190", + "codeCommune": "27447", + "libelleAcheminement": "LE VAL DORE", + "nomCommune": "LE VAL DORE" }, { - "codePostal": "01300", - "codeCommune": "01015", - "libelleAcheminement": "ARBOYS EN BUGEY", - "nomCommune": "ARBOYS EN BUGEY" + "codePostal": "38710", + "codeCommune": "38127", + "libelleAcheminement": "CORNILLON EN TRIEVES", + "nomCommune": "CORNILLON EN TRIEVES" }, { - "codePostal": "62360", - "codeCommune": "62755", - "libelleAcheminement": "ST LEONARD", - "nomCommune": "ST LEONARD" + "codePostal": "38690", + "codeCommune": "38038", + "libelleAcheminement": "BELMONT", + "nomCommune": "BELMONT" }, { - "codePostal": "30250", - "codeCommune": "30023", - "libelleAcheminement": "AUJARGUES", - "nomCommune": "AUJARGUES" + "codePostal": "26130", + "codeCommune": "26211", + "libelleAcheminement": "MONTSEGUR SUR LAUZON", + "nomCommune": "MONTSEGUR SUR LAUZON" }, { - "codePostal": "55600", - "codeCommune": "55324", - "libelleAcheminement": "MARVILLE", - "nomCommune": "MARVILLE" + "codePostal": "27180", + "codeCommune": "27451", + "libelleAcheminement": "PARVILLE", + "nomCommune": "PARVILLE" }, { - "codePostal": "01190", - "codeCommune": "01016", - "libelleAcheminement": "ARBIGNY", - "nomCommune": "ARBIGNY" + "codePostal": "38250", + "codeCommune": "38129", + "libelleAcheminement": "CORRENCON EN VERCORS", + "nomCommune": "CORRENCON EN VERCORS" }, { - "codePostal": "62130", - "codeCommune": "62767", - "libelleAcheminement": "ST POL SUR TERNOISE", - "nomCommune": "ST POL SUR TERNOISE" + "codePostal": "38730", + "codeCommune": "38047", + "libelleAcheminement": "BLANDIN", + "nomCommune": "BLANDIN" }, { - "codePostal": "30160", - "codeCommune": "30037", - "libelleAcheminement": "BESSEGES", - "nomCommune": "BESSEGES" + "codePostal": "26210", + "codeCommune": "26213", + "libelleAcheminement": "MORAS EN VALLOIRE", + "nomCommune": "MORAS EN VALLOIRE" }, { - "codePostal": "55140", - "codeCommune": "55328", - "libelleAcheminement": "MAXEY SUR VAISE", - "nomCommune": "MAXEY SUR VAISE" + "codePostal": "27300", + "codeCommune": "27460", + "libelleAcheminement": "PLAINVILLE", + "nomCommune": "PLAINVILLE" }, { - "codePostal": "01380", - "codeCommune": "01026", - "libelleAcheminement": "BAGE LE CHATEL", - "nomCommune": "BAGE LE CHATEL" + "codePostal": "38970", + "codeCommune": "38132", + "libelleAcheminement": "LES COTES DE CORPS", + "nomCommune": "LES COTES DE CORPS" }, { - "codePostal": "62850", - "codeCommune": "62775", - "libelleAcheminement": "SANGHEN", - "nomCommune": "SANGHEN" + "codePostal": "38090", + "codeCommune": "38048", + "libelleAcheminement": "BONNEFAMILLE", + "nomCommune": "BONNEFAMILLE" }, { - "codePostal": "30580", - "codeCommune": "30048", - "libelleAcheminement": "BOUQUET", - "nomCommune": "BOUQUET" + "codePostal": "26460", + "codeCommune": "26214", + "libelleAcheminement": "MORNANS", + "nomCommune": "MORNANS" }, { - "codePostal": "55300", - "codeCommune": "55329", - "libelleAcheminement": "MECRIN", - "nomCommune": "MECRIN" + "codePostal": "27500", + "codeCommune": "27467", + "libelleAcheminement": "PONT AUDEMER", + "nomCommune": "PONT AUDEMER" }, { - "codePostal": "01360", - "codeCommune": "01027", - "libelleAcheminement": "BALAN", - "nomCommune": "BALAN" + "codePostal": "38460", + "codeCommune": "38138", + "libelleAcheminement": "CREMIEU", + "nomCommune": "CREMIEU" }, { - "codePostal": "62121", - "codeCommune": "62776", - "libelleAcheminement": "SAPIGNIES", - "nomCommune": "SAPIGNIES" + "codePostal": "38510", + "codeCommune": "38055", + "libelleAcheminement": "BRANGUES", + "nomCommune": "BRANGUES" }, { - "codePostal": "30210", - "codeCommune": "30057", - "libelleAcheminement": "CABRIERES", - "nomCommune": "CABRIERES" + "codePostal": "26470", + "codeCommune": "26215", + "libelleAcheminement": "LA MOTTE CHALANCON", + "nomCommune": "LA MOTTE CHALANCON" }, { - "codePostal": "55190", - "codeCommune": "55330", - "libelleAcheminement": "MELIGNY LE GRAND", - "nomCommune": "MELIGNY LE GRAND" + "codePostal": "27500", + "codeCommune": "27467", + "libelleAcheminement": "PONT AUDEMER", + "nomCommune": "PONT AUDEMER" }, { - "codePostal": "01300", - "codeCommune": "01034", - "libelleAcheminement": "BELLEY", - "nomCommune": "BELLEY" + "codePostal": "38510", + "codeCommune": "38139", + "libelleAcheminement": "CREYS MEPIEU", + "nomCommune": "CREYS MEPIEU" }, { - "codePostal": "62450", - "codeCommune": "62777", - "libelleAcheminement": "LE SARS", - "nomCommune": "LE SARS" + "codePostal": "38870", + "codeCommune": "38056", + "libelleAcheminement": "BRESSIEUX", + "nomCommune": "BRESSIEUX" }, { - "codePostal": "30132", - "codeCommune": "30060", - "libelleAcheminement": "CAISSARGUES", - "nomCommune": "CAISSARGUES" + "codePostal": "26240", + "codeCommune": "26216", + "libelleAcheminement": "ST JEAN DE GALAURE", + "nomCommune": "ST JEAN DE GALAURE" }, { - "codePostal": "55500", - "codeCommune": "55332", - "libelleAcheminement": "MENAUCOURT", - "nomCommune": "MENAUCOURT" + "codePostal": "27340", + "codeCommune": "27469", + "libelleAcheminement": "PONT DE L ARCHE", + "nomCommune": "PONT DE L ARCHE" }, { - "codePostal": "01260", - "codeCommune": "01036", - "libelleAcheminement": "VALROMEY SUR SERAN", - "nomCommune": "VALROMEY SUR SERAN" + "codePostal": "38300", + "codeCommune": "38141", + "libelleAcheminement": "CULIN", + "nomCommune": "CULIN" }, { - "codePostal": "62760", - "codeCommune": "62779", - "libelleAcheminement": "SARTON", - "nomCommune": "SARTON" + "codePostal": "38320", + "codeCommune": "38057", + "libelleAcheminement": "BRESSON", + "nomCommune": "BRESSON" }, { - "codePostal": "30420", - "codeCommune": "30062", - "libelleAcheminement": "CALVISSON", - "nomCommune": "CALVISSON" + "codePostal": "26540", + "codeCommune": "26218", + "libelleAcheminement": "MOURS ST EUSEBE", + "nomCommune": "MOURS ST EUSEBE" }, { - "codePostal": "55150", - "codeCommune": "55336", - "libelleAcheminement": "MERLES SUR LOISON", - "nomCommune": "MERLES SUR LOISON" + "codePostal": "27100", + "codeCommune": "27471", + "libelleAcheminement": "PORTE DE SEINE", + "nomCommune": "PORTE DE SEINE" }, { - "codePostal": "01260", - "codeCommune": "01036", - "libelleAcheminement": "VALROMEY SUR SERAN", - "nomCommune": "VALROMEY SUR SERAN" + "codePostal": "38790", + "codeCommune": "38144", + "libelleAcheminement": "DIEMOZ", + "nomCommune": "DIEMOZ" }, { - "codePostal": "62860", - "codeCommune": "62781", - "libelleAcheminement": "SAUCHY LESTREE", - "nomCommune": "SAUCHY LESTREE" + "codePostal": "38530", + "codeCommune": "38062", + "libelleAcheminement": "LA BUISSIERE", + "nomCommune": "LA BUISSIERE" }, { - "codePostal": "30770", - "codeCommune": "30064", - "libelleAcheminement": "CAMPESTRE ET LUC", - "nomCommune": "CAMPESTRE ET LUC" + "codePostal": "26120", + "codeCommune": "26224", + "libelleAcheminement": "OURCHES", + "nomCommune": "OURCHES" }, { - "codePostal": "55150", - "codeCommune": "55341", - "libelleAcheminement": "MOIREY FLABAS CREPION", - "nomCommune": "MOIREY FLABAS CREPION" + "codePostal": "27740", + "codeCommune": "27474", + "libelleAcheminement": "POSES", + "nomCommune": "POSES" }, { - "codePostal": "01470", - "codeCommune": "01037", - "libelleAcheminement": "BENONCES", - "nomCommune": "BENONCES" + "codePostal": "38360", + "codeCommune": "38153", + "libelleAcheminement": "ENGINS", + "nomCommune": "ENGINS" }, { - "codePostal": "62158", - "codeCommune": "62784", - "libelleAcheminement": "SAULTY", - "nomCommune": "SAULTY" + "codePostal": "38110", + "codeCommune": "38064", + "libelleAcheminement": "CESSIEU", + "nomCommune": "CESSIEU" }, { - "codePostal": "30350", - "codeCommune": "30065", - "libelleAcheminement": "CANAULES ET ARGENTIERES", - "nomCommune": "CANAULES ET ARGENTIERES" + "codePostal": "26170", + "codeCommune": "26236", + "libelleAcheminement": "PIERRELONGUE", + "nomCommune": "PIERRELONGUE" }, { - "codePostal": "55270", - "codeCommune": "55343", - "libelleAcheminement": "MONTBLAINVILLE", - "nomCommune": "MONTBLAINVILLE" + "codePostal": "27560", + "codeCommune": "27475", + "libelleAcheminement": "LA POTERIE MATHIEU", + "nomCommune": "LA POTERIE MATHIEU" }, { - "codePostal": "01350", - "codeCommune": "01039", - "libelleAcheminement": "BEON", - "nomCommune": "BEON" + "codePostal": "38780", + "codeCommune": "38160", + "libelleAcheminement": "EYZIN PINET", + "nomCommune": "EYZIN PINET" }, { - "codePostal": "62380", - "codeCommune": "62788", - "libelleAcheminement": "SENINGHEM", - "nomCommune": "SENINGHEM" + "codePostal": "38122", + "codeCommune": "38066", + "libelleAcheminement": "CHALON", + "nomCommune": "CHALON" }, { - "codePostal": "30350", - "codeCommune": "30068", - "libelleAcheminement": "CARDET", - "nomCommune": "CARDET" + "codePostal": "26110", + "codeCommune": "26238", + "libelleAcheminement": "LES PILLES", + "nomCommune": "LES PILLES" }, { - "codePostal": "55600", - "codeCommune": "55351", - "libelleAcheminement": "MONTMEDY", - "nomCommune": "MONTMEDY" + "codePostal": "27220", + "codeCommune": "27478", + "libelleAcheminement": "PREY", + "nomCommune": "PREY" }, { - "codePostal": "01380", - "codeCommune": "01050", - "libelleAcheminement": "BOISSEY", - "nomCommune": "BOISSEY" + "codePostal": "38290", + "codeCommune": "38176", + "libelleAcheminement": "FRONTONAS", + "nomCommune": "FRONTONAS" }, { - "codePostal": "62910", - "codeCommune": "62792", - "libelleAcheminement": "SERQUES", - "nomCommune": "SERQUES" + "codePostal": "38460", + "codeCommune": "38067", + "libelleAcheminement": "CHAMAGNIEU", + "nomCommune": "CHAMAGNIEU" }, { - "codePostal": "30920", - "codeCommune": "30083", - "libelleAcheminement": "CODOGNAN", - "nomCommune": "CODOGNAN" + "codePostal": "26450", + "codeCommune": "26258", + "libelleAcheminement": "PUY ST MARTIN", + "nomCommune": "PUY ST MARTIN" }, { - "codePostal": "55110", - "codeCommune": "55365", - "libelleAcheminement": "MURVAUX", - "nomCommune": "MURVAUX" + "codePostal": "27150", + "codeCommune": "27480", + "libelleAcheminement": "PUCHAY", + "nomCommune": "PUCHAY" }, { - "codePostal": "01360", - "codeCommune": "01062", - "libelleAcheminement": "BRESSOLLES", - "nomCommune": "BRESSOLLES" + "codePostal": "38520", + "codeCommune": "38177", + "libelleAcheminement": "LA GARDE", + "nomCommune": "LA GARDE" }, { - "codePostal": "62530", - "codeCommune": "62793", - "libelleAcheminement": "SERVINS", - "nomCommune": "SERVINS" + "codePostal": "38460", + "codeCommune": "38067", + "libelleAcheminement": "CHAMAGNIEU", + "nomCommune": "CHAMAGNIEU" }, { - "codePostal": "30140", - "codeCommune": "30094", - "libelleAcheminement": "CORBES", - "nomCommune": "CORBES" + "codePostal": "26230", + "codeCommune": "26261", + "libelleAcheminement": "REAUVILLE", + "nomCommune": "REAUVILLE" }, { - "codePostal": "55000", - "codeCommune": "55366", - "libelleAcheminement": "VAL D ORNAIN", - "nomCommune": "VAL D ORNAIN" + "codePostal": "27130", + "codeCommune": "27481", + "libelleAcheminement": "PULLAY", + "nomCommune": "PULLAY" }, { - "codePostal": "01460", - "codeCommune": "01063", - "libelleAcheminement": "BRION", - "nomCommune": "BRION" + "codePostal": "38750", + "codeCommune": "38191", + "libelleAcheminement": "HUEZ", + "nomCommune": "HUEZ" }, { - "codePostal": "62380", - "codeCommune": "62794", - "libelleAcheminement": "SETQUES", - "nomCommune": "SETQUES" + "codePostal": "38560", + "codeCommune": "38071", + "libelleAcheminement": "CHAMP SUR DRAC", + "nomCommune": "CHAMP SUR DRAC" }, { - "codePostal": "30170", - "codeCommune": "30099", - "libelleAcheminement": "CROS", - "nomCommune": "CROS" + "codePostal": "26310", + "codeCommune": "26262", + "libelleAcheminement": "RECOUBEAU JANSAC", + "nomCommune": "RECOUBEAU JANSAC" }, { - "codePostal": "55000", - "codeCommune": "55369", - "libelleAcheminement": "NAIVES ROSIERES", - "nomCommune": "NAIVES ROSIERES" + "codePostal": "27370", + "codeCommune": "27482", + "libelleAcheminement": "LA PYLE", + "nomCommune": "LA PYLE" }, { - "codePostal": "01430", - "codeCommune": "01067", - "libelleAcheminement": "CEIGNES", - "nomCommune": "CEIGNES" + "codePostal": "38570", + "codeCommune": "38192", + "libelleAcheminement": "HURTIERES", + "nomCommune": "HURTIERES" }, { - "codePostal": "62123", - "codeCommune": "62796", - "libelleAcheminement": "SIMENCOURT", - "nomCommune": "SIMENCOURT" + "codePostal": "38470", + "codeCommune": "38074", + "libelleAcheminement": "CHANTESSE", + "nomCommune": "CHANTESSE" }, { - "codePostal": "30360", - "codeCommune": "30101", - "libelleAcheminement": "DEAUX", - "nomCommune": "DEAUX" + "codePostal": "26160", + "codeCommune": "26268", + "libelleAcheminement": "ROCHEBAUDIN", + "nomCommune": "ROCHEBAUDIN" }, { - "codePostal": "55700", - "codeCommune": "55377", - "libelleAcheminement": "NEPVANT", - "nomCommune": "NEPVANT" + "codePostal": "27400", + "codeCommune": "27483", + "libelleAcheminement": "QUATREMARE", + "nomCommune": "QUATREMARE" }, { - "codePostal": "01450", - "codeCommune": "01068", - "libelleAcheminement": "CERDON", - "nomCommune": "CERDON" + "codePostal": "38080", + "codeCommune": "38193", + "libelleAcheminement": "L ISLE D ABEAU", + "nomCommune": "L ISLE D ABEAU" }, { - "codePostal": "62153", - "codeCommune": "62801", - "libelleAcheminement": "SOUCHEZ", - "nomCommune": "SOUCHEZ" + "codePostal": "38110", + "codeCommune": "38076", + "libelleAcheminement": "LA CHAPELLE DE LA TOUR", + "nomCommune": "LA CHAPELLE DE LA TOUR" }, { - "codePostal": "30350", - "codeCommune": "30104", - "libelleAcheminement": "DOMESSARGUES", - "nomCommune": "DOMESSARGUES" + "codePostal": "26770", + "codeCommune": "26276", + "libelleAcheminement": "ROCHE ST SECRET BECONNE", + "nomCommune": "ROCHE ST SECRET BECONNE" }, { - "codePostal": "55260", - "codeCommune": "55380", - "libelleAcheminement": "NEUVILLE EN VERDUNOIS", - "nomCommune": "NEUVILLE EN VERDUNOIS" + "codePostal": "27680", + "codeCommune": "27485", + "libelleAcheminement": "QUILLEBEUF SUR SEINE", + "nomCommune": "QUILLEBEUF SUR SEINE" }, { - "codePostal": "01240", - "codeCommune": "01069", - "libelleAcheminement": "CERTINES", - "nomCommune": "CERTINES" + "codePostal": "38190", + "codeCommune": "38206", + "libelleAcheminement": "LAVAL EN BELLEDONNE", + "nomCommune": "LAVAL EN BELLEDONNE" }, { - "codePostal": "62850", - "codeCommune": "62803", - "libelleAcheminement": "SURQUES", - "nomCommune": "SURQUES" + "codePostal": "38150", + "codeCommune": "38077", + "libelleAcheminement": "LA CHAPELLE DE SURIEU", + "nomCommune": "LA CHAPELLE DE SURIEU" }, { - "codePostal": "30170", - "codeCommune": "30106", - "libelleAcheminement": "DURFORT ET ST MARTIN DE SOSSENAC", - "nomCommune": "DURFORT ET ST MARTIN DE SOSSENAC" + "codePostal": "26100", + "codeCommune": "26281", + "libelleAcheminement": "ROMANS SUR ISERE", + "nomCommune": "ROMANS SUR ISERE" }, { - "codePostal": "55800", - "codeCommune": "55382", - "libelleAcheminement": "NEUVILLE SUR ORNAIN", - "nomCommune": "NEUVILLE SUR ORNAIN" + "codePostal": "27350", + "codeCommune": "27497", + "libelleAcheminement": "ROUGEMONTIERS", + "nomCommune": "ROUGEMONTIERS" }, { - "codePostal": "01170", - "codeCommune": "01071", - "libelleAcheminement": "CESSY", - "nomCommune": "CESSY" + "codePostal": "38350", + "codeCommune": "38207", + "libelleAcheminement": "LAVALDENS", + "nomCommune": "LAVALDENS" }, { - "codePostal": "62179", - "codeCommune": "62806", - "libelleAcheminement": "TARDINGHEN", - "nomCommune": "TARDINGHEN" + "codePostal": "38790", + "codeCommune": "38081", + "libelleAcheminement": "CHARANTONNAY", + "nomCommune": "CHARANTONNAY" }, { - "codePostal": "30700", - "codeCommune": "30110", - "libelleAcheminement": "FLAUX", - "nomCommune": "FLAUX" + "codePostal": "26470", + "codeCommune": "26283", + "libelleAcheminement": "ROTTIER", + "nomCommune": "ROTTIER" }, { - "codePostal": "55260", - "codeCommune": "55384", - "libelleAcheminement": "NICEY SUR AIRE", - "nomCommune": "NICEY SUR AIRE" + "codePostal": "27120", + "codeCommune": "27501", + "libelleAcheminement": "ROUVRAY", + "nomCommune": "ROUVRAY" }, { - "codePostal": "01350", - "codeCommune": "01073", - "libelleAcheminement": "CEYZERIEU", - "nomCommune": "CEYZERIEU" + "codePostal": "38710", + "codeCommune": "38208", + "libelleAcheminement": "LAVARS", + "nomCommune": "LAVARS" }, { - "codePostal": "62134", - "codeCommune": "62808", - "libelleAcheminement": "TENEUR", - "nomCommune": "TENEUR" + "codePostal": "38680", + "codeCommune": "38092", + "libelleAcheminement": "CHATELUS", + "nomCommune": "CHATELUS" }, { - "codePostal": "30730", - "codeCommune": "30112", - "libelleAcheminement": "FONS", - "nomCommune": "FONS" + "codePostal": "26510", + "codeCommune": "26286", + "libelleAcheminement": "ROUSSIEUX", + "nomCommune": "ROUSSIEUX" }, { - "codePostal": "55250", - "codeCommune": "55389", - "libelleAcheminement": "NUBECOURT", - "nomCommune": "NUBECOURT" + "codePostal": "27110", + "codeCommune": "27511", + "libelleAcheminement": "ST AUBIN D ECROSVILLE", + "nomCommune": "ST AUBIN D ECROSVILLE" }, { - "codePostal": "01320", - "codeCommune": "01074", - "libelleAcheminement": "CHALAMONT", - "nomCommune": "CHALAMONT" + "codePostal": "38440", + "codeCommune": "38211", + "libelleAcheminement": "LIEUDIEU", + "nomCommune": "LIEUDIEU" }, { - "codePostal": "62130", - "codeCommune": "62813", - "libelleAcheminement": "LA THIEULOYE", - "nomCommune": "LA THIEULOYE" + "codePostal": "38440", + "codeCommune": "38094", + "libelleAcheminement": "CHATONNAY", + "nomCommune": "CHATONNAY" }, { - "codePostal": "30300", - "codeCommune": "30117", - "libelleAcheminement": "FOURQUES", - "nomCommune": "FOURQUES" + "codePostal": "26170", + "codeCommune": "26292", + "libelleAcheminement": "ST AUBAN SUR L OUVEZE", + "nomCommune": "ST AUBAN SUR L OUVEZE" }, { - "codePostal": "55250", - "codeCommune": "55389", - "libelleAcheminement": "NUBECOURT", - "nomCommune": "NUBECOURT" + "codePostal": "27270", + "codeCommune": "27516", + "libelleAcheminement": "TREIS SANTS EN OUCHE", + "nomCommune": "TREIS SANTS EN OUCHE" }, { - "codePostal": "01230", - "codeCommune": "01076", - "libelleAcheminement": "CHALEY", - "nomCommune": "CHALEY" + "codePostal": "38220", + "codeCommune": "38212", + "libelleAcheminement": "LIVET ET GAVET", + "nomCommune": "LIVET ET GAVET" }, { - "codePostal": "62760", - "codeCommune": "62814", - "libelleAcheminement": "THIEVRES", - "nomCommune": "THIEVRES" + "codePostal": "38300", + "codeCommune": "38102", + "libelleAcheminement": "CHEZENEUVE", + "nomCommune": "CHEZENEUVE" }, { - "codePostal": "30170", - "codeCommune": "30119", - "libelleAcheminement": "FRESSAC", - "nomCommune": "FRESSAC" + "codePostal": "26330", + "codeCommune": "26293", + "libelleAcheminement": "ST AVIT", + "nomCommune": "ST AVIT" }, { - "codePostal": "55190", - "codeCommune": "55396", - "libelleAcheminement": "OURCHES SUR MEUSE", - "nomCommune": "OURCHES SUR MEUSE" + "codePostal": "27110", + "codeCommune": "27524", + "libelleAcheminement": "STE COLOMBE LA COMMANDERIE", + "nomCommune": "STE COLOMBE LA COMMANDERIE" }, { - "codePostal": "01450", - "codeCommune": "01077", - "libelleAcheminement": "CHALLES LA MONTAGNE", - "nomCommune": "CHALLES LA MONTAGNE" + "codePostal": "38470", + "codeCommune": "38216", + "libelleAcheminement": "MALLEVAL EN VERCORS", + "nomCommune": "MALLEVAL EN VERCORS" }, { - "codePostal": "62690", - "codeCommune": "62816", - "libelleAcheminement": "TILLOY LES HERMAVILLE", - "nomCommune": "TILLOY LES HERMAVILLE" + "codePostal": "38490", + "codeCommune": "38104", + "libelleAcheminement": "CHIMILIN", + "nomCommune": "CHIMILIN" }, { - "codePostal": "30260", - "codeCommune": "30121", - "libelleAcheminement": "GAILHAN", - "nomCommune": "GAILHAN" + "codePostal": "26240", + "codeCommune": "26295", + "libelleAcheminement": "ST BARTHELEMY DE VALS", + "nomCommune": "ST BARTHELEMY DE VALS" }, { - "codePostal": "55160", - "codeCommune": "55406", - "libelleAcheminement": "PINTHEVILLE", - "nomCommune": "PINTHEVILLE" + "codePostal": "27140", + "codeCommune": "27533", + "libelleAcheminement": "ST DENIS LE FERMENT", + "nomCommune": "ST DENIS LE FERMENT" }, { - "codePostal": "01110", - "codeCommune": "01080", - "libelleAcheminement": "CHAMPDOR CORCELLES", - "nomCommune": "CHAMPDOR CORCELLES" + "codePostal": "38980", + "codeCommune": "38221", + "libelleAcheminement": "MARNANS", + "nomCommune": "MARNANS" }, { - "codePostal": "62217", - "codeCommune": "62817", - "libelleAcheminement": "TILLOY LES MOFFLAINES", - "nomCommune": "TILLOY LES MOFFLAINES" + "codePostal": "38460", + "codeCommune": "38109", + "libelleAcheminement": "CHOZEAU", + "nomCommune": "CHOZEAU" }, { - "codePostal": "30730", - "codeCommune": "30122", - "libelleAcheminement": "GAJAN", - "nomCommune": "GAJAN" + "codePostal": "26150", + "codeCommune": "26299", + "libelleAcheminement": "STE CROIX", + "nomCommune": "STE CROIX" }, { - "codePostal": "55200", - "codeCommune": "55407", - "libelleAcheminement": "PONT SUR MEUSE", - "nomCommune": "PONT SUR MEUSE" + "codePostal": "27800", + "codeCommune": "27536", + "libelleAcheminement": "ST ELOI DE FOURQUES", + "nomCommune": "ST ELOI DE FOURQUES" }, { - "codePostal": "01800", - "codeCommune": "01088", - "libelleAcheminement": "CHARNOZ SUR AIN", - "nomCommune": "CHARNOZ SUR AIN" + "codePostal": "38620", + "codeCommune": "38222", + "libelleAcheminement": "MASSIEU", + "nomCommune": "MASSIEU" }, { - "codePostal": "62520", - "codeCommune": "62826", - "libelleAcheminement": "LE TOUQUET PARIS PLAGE", - "nomCommune": "LE TOUQUET PARIS PLAGE" + "codePostal": "38142", + "codeCommune": "38112", + "libelleAcheminement": "CLAVANS EN HAUT OISANS", + "nomCommune": "CLAVANS EN HAUT OISANS" }, { - "codePostal": "30300", - "codeCommune": "30135", - "libelleAcheminement": "JONQUIERES ST VINCENT", - "nomCommune": "JONQUIERES ST VINCENT" + "codePostal": "26420", + "codeCommune": "26309", + "libelleAcheminement": "ST JULIEN EN VERCORS", + "nomCommune": "ST JULIEN EN VERCORS" }, { - "codePostal": "55220", - "codeCommune": "55411", - "libelleAcheminement": "RAMBLUZIN ET BENOITE VAUX", - "nomCommune": "RAMBLUZIN ET BENOITE VAUX" + "codePostal": "27230", + "codeCommune": "27547", + "libelleAcheminement": "ST GERMAIN LA CAMPAGNE", + "nomCommune": "ST GERMAIN LA CAMPAGNE" }, { - "codePostal": "01500", - "codeCommune": "01089", - "libelleAcheminement": "CHATEAU GAILLARD", - "nomCommune": "CHATEAU GAILLARD" + "codePostal": "38880", + "codeCommune": "38225", + "libelleAcheminement": "AUTRANS MEAUDRE EN VERCORS", + "nomCommune": "AUTRANS MEAUDRE EN VERCORS" }, { - "codePostal": "62450", - "codeCommune": "62829", - "libelleAcheminement": "LE TRANSLOY", - "nomCommune": "LE TRANSLOY" + "codePostal": "38930", + "codeCommune": "38113", + "libelleAcheminement": "CLELLES EN TRIEVES", + "nomCommune": "CLELLES" }, { - "codePostal": "30250", - "codeCommune": "30136", - "libelleAcheminement": "JUNAS", - "nomCommune": "JUNAS" + "codePostal": "26740", + "codeCommune": "26312", + "libelleAcheminement": "ST MARCEL LES SAUZET", + "nomCommune": "ST MARCEL LES SAUZET" }, { - "codePostal": "55300", - "codeCommune": "55415", - "libelleAcheminement": "RANZIERES", - "nomCommune": "RANZIERES" + "codePostal": "27320", + "codeCommune": "27548", + "libelleAcheminement": "ST GERMAIN SUR AVRE", + "nomCommune": "ST GERMAIN SUR AVRE" }, { - "codePostal": "01250", - "codeCommune": "01095", - "libelleAcheminement": "NIVIGNE ET SURAN", - "nomCommune": "NIVIGNE ET SURAN" + "codePostal": "38710", + "codeCommune": "38226", + "libelleAcheminement": "MENS", + "nomCommune": "MENS" }, { - "codePostal": "62140", - "codeCommune": "62834", - "libelleAcheminement": "VACQUERIETTE ERQUIERES", - "nomCommune": "VACQUERIETTE ERQUIERES" + "codePostal": "38550", + "codeCommune": "38114", + "libelleAcheminement": "CLONAS SUR VAREZE", + "nomCommune": "CLONAS SUR VAREZE" }, { - "codePostal": "30980", - "codeCommune": "30138", - "libelleAcheminement": "LANGLADE", - "nomCommune": "LANGLADE" + "codePostal": "26770", + "codeCommune": "26322", + "libelleAcheminement": "ST PANTALEON LES VIGNES", + "nomCommune": "ST PANTALEON LES VIGNES" }, { - "codePostal": "55120", - "codeCommune": "55416", - "libelleAcheminement": "RARECOURT", - "nomCommune": "RARECOURT" + "codePostal": "27270", + "codeCommune": "27552", + "libelleAcheminement": "ST JEAN DU THENNEY", + "nomCommune": "ST JEAN DU THENNEY" }, { - "codePostal": "01300", - "codeCommune": "01098", - "libelleAcheminement": "CHAZEY BONS", - "nomCommune": "CHAZEY BONS" + "codePostal": "38240", + "codeCommune": "38229", + "libelleAcheminement": "MEYLAN", + "nomCommune": "MEYLAN" }, { - "codePostal": "62182", - "codeCommune": "62858", - "libelleAcheminement": "VILLERS LES CAGNICOURT", - "nomCommune": "VILLERS LES CAGNICOURT" + "codePostal": "38700", + "codeCommune": "38126", + "libelleAcheminement": "CORENC", + "nomCommune": "CORENC" }, { - "codePostal": "30760", - "codeCommune": "30143", - "libelleAcheminement": "LAVAL ST ROMAN", - "nomCommune": "LAVAL ST ROMAN" + "codePostal": "26110", + "codeCommune": "26329", + "libelleAcheminement": "ST SAUVEUR GOUVERNET", + "nomCommune": "ST SAUVEUR GOUVERNET" }, { - "codePostal": "55190", - "codeCommune": "55421", - "libelleAcheminement": "REFFROY", - "nomCommune": "REFFROY" + "codePostal": "27950", + "codeCommune": "27554", + "libelleAcheminement": "LA CHAPELLE LONGUEVILLE", + "nomCommune": "LA CHAPELLE LONGUEVILLE" }, { - "codePostal": "01190", - "codeCommune": "01102", - "libelleAcheminement": "CHEVROUX", - "nomCommune": "CHEVROUX" + "codePostal": "38450", + "codeCommune": "38235", + "libelleAcheminement": "MIRIBEL LANCHATRE", + "nomCommune": "MIRIBEL LANCHATRE" }, { - "codePostal": "62127", - "codeCommune": "62860", - "libelleAcheminement": "VILLERS SIR SIMON", - "nomCommune": "VILLERS SIR SIMON" + "codePostal": "38500", + "codeCommune": "38133", + "libelleAcheminement": "COUBLEVIE", + "nomCommune": "COUBLEVIE" }, { - "codePostal": "30610", - "codeCommune": "30150", - "libelleAcheminement": "LOGRIAN FLORIAN", - "nomCommune": "LOGRIAN FLORIAN" + "codePostal": "26740", + "codeCommune": "26338", + "libelleAcheminement": "SAUZET", + "nomCommune": "SAUZET" }, { - "codePostal": "55600", - "codeCommune": "55425", - "libelleAcheminement": "REMOIVILLE", - "nomCommune": "REMOIVILLE" + "codePostal": "27950", + "codeCommune": "27554", + "libelleAcheminement": "LA CHAPELLE LONGUEVILLE", + "nomCommune": "LA CHAPELLE LONGUEVILLE" }, { - "codePostal": "01410", - "codeCommune": "01104", - "libelleAcheminement": "CHEZERY FORENS", - "nomCommune": "CHEZERY FORENS" + "codePostal": "38270", + "codeCommune": "38240", + "libelleAcheminement": "MOISSIEU SUR DOLON", + "nomCommune": "MOISSIEU SUR DOLON" }, { - "codePostal": "62770", - "codeCommune": "62872", - "libelleAcheminement": "WAMIN", - "nomCommune": "WAMIN" + "codePostal": "38300", + "codeCommune": "38136", + "libelleAcheminement": "CRACHIER", + "nomCommune": "CRACHIER" }, { - "codePostal": "30140", - "codeCommune": "30168", - "libelleAcheminement": "MIALET", - "nomCommune": "MIALET" + "codePostal": "26160", + "codeCommune": "26343", + "libelleAcheminement": "SOUSPIERRE", + "nomCommune": "SOUSPIERRE" }, { - "codePostal": "55130", - "codeCommune": "55436", - "libelleAcheminement": "LES ROISES", - "nomCommune": "LES ROISES" + "codePostal": "27300", + "codeCommune": "27557", + "libelleAcheminement": "ST LEGER DE ROTES", + "nomCommune": "ST LEGER DE ROTES" }, { - "codePostal": "01250", - "codeCommune": "01106", - "libelleAcheminement": "CIZE", - "nomCommune": "CIZE" + "codePostal": "38970", + "codeCommune": "38241", + "libelleAcheminement": "MONESTIER D AMBEL", + "nomCommune": "MONESTIER D AMBEL" }, { - "codePostal": "62123", - "codeCommune": "62878", - "libelleAcheminement": "WARLUS", - "nomCommune": "WARLUS" + "codePostal": "38920", + "codeCommune": "38140", + "libelleAcheminement": "CROLLES", + "nomCommune": "CROLLES" }, { - "codePostal": "30410", - "codeCommune": "30171", - "libelleAcheminement": "MOLIERES SUR CEZE", - "nomCommune": "MOLIERES SUR CEZE" + "codePostal": "26770", + "codeCommune": "26348", + "libelleAcheminement": "TAULIGNAN", + "nomCommune": "TAULIGNAN" }, { - "codePostal": "55160", - "codeCommune": "55457", - "libelleAcheminement": "ST HILAIRE EN WOEVRE", - "nomCommune": "ST HILAIRE EN WOEVRE" + "codePostal": "27520", + "codeCommune": "27558", + "libelleAcheminement": "ST LEGER DU GENNETEY", + "nomCommune": "ST LEGER DU GENNETEY" }, { - "codePostal": "01300", - "codeCommune": "01110", - "libelleAcheminement": "COLOMIEU", - "nomCommune": "COLOMIEU" + "codePostal": "38160", + "codeCommune": "38245", + "libelleAcheminement": "MONTAGNE", + "nomCommune": "MONTAGNE" }, { - "codePostal": "62390", - "codeCommune": "62891", - "libelleAcheminement": "WILLENCOURT", - "nomCommune": "WILLENCOURT" + "codePostal": "38460", + "codeCommune": "38146", + "libelleAcheminement": "DIZIMIEU", + "nomCommune": "DIZIMIEU" }, { - "codePostal": "30700", - "codeCommune": "30174", - "libelleAcheminement": "MONTAREN ET ST MEDIERS", - "nomCommune": "MONTAREN ET ST MEDIERS" + "codePostal": "26220", + "codeCommune": "26350", + "libelleAcheminement": "TEYSSIERES", + "nomCommune": "TEYSSIERES" }, { - "codePostal": "55150", - "codeCommune": "55461", - "libelleAcheminement": "ST LAURENT SUR OTHAIN", - "nomCommune": "ST LAURENT SUR OTHAIN" + "codePostal": "27210", + "codeCommune": "27561", + "libelleAcheminement": "ST MACLOU", + "nomCommune": "ST MACLOU" }, { - "codePostal": "01400", - "codeCommune": "01113", - "libelleAcheminement": "CONDEISSIAT", - "nomCommune": "CONDEISSIAT" + "codePostal": "38620", + "codeCommune": "38256", + "libelleAcheminement": "MONTFERRAT", + "nomCommune": "MONTFERRAT" }, { - "codePostal": "62219", - "codeCommune": "62898", - "libelleAcheminement": "WISQUES", - "nomCommune": "WISQUES" + "codePostal": "38130", + "codeCommune": "38151", + "libelleAcheminement": "ECHIROLLES", + "nomCommune": "ECHIROLLES" }, { - "codePostal": "30490", - "codeCommune": "30179", - "libelleAcheminement": "MONTFRIN", - "nomCommune": "MONTFRIN" + "codePostal": "26740", + "codeCommune": "26353", + "libelleAcheminement": "LES TOURRETTES", + "nomCommune": "LES TOURRETTES" }, { - "codePostal": "55500", - "codeCommune": "55472", - "libelleAcheminement": "SAULVAUX", - "nomCommune": "SAULVAUX" + "codePostal": "27150", + "codeCommune": "27567", + "libelleAcheminement": "STE MARIE DE VATIMESNIL", + "nomCommune": "STE MARIE DE VATIMESNIL" }, { - "codePostal": "01420", - "codeCommune": "01118", - "libelleAcheminement": "CORBONOD", - "nomCommune": "CORBONOD" + "codePostal": "38122", + "codeCommune": "38259", + "libelleAcheminement": "MONTSEVEROUX", + "nomCommune": "MONTSEVEROUX" }, { - "codePostal": "63260", - "codeCommune": "63001", - "libelleAcheminement": "AIGUEPERSE", - "nomCommune": "AIGUEPERSE" + "codePostal": "38300", + "codeCommune": "38152", + "libelleAcheminement": "ECLOSE BADINIERES", + "nomCommune": "ECLOSE BADINIERES" }, { - "codePostal": "30730", - "codeCommune": "30182", - "libelleAcheminement": "MONTPEZAT", - "nomCommune": "MONTPEZAT" + "codePostal": "26120", + "codeCommune": "26358", + "libelleAcheminement": "UPIE", + "nomCommune": "UPIE" }, { - "codePostal": "55000", - "codeCommune": "55488", - "libelleAcheminement": "SILMONT", - "nomCommune": "SILMONT" + "codePostal": "27190", + "codeCommune": "27568", + "libelleAcheminement": "STE MARTHE", + "nomCommune": "STE MARTHE" }, { - "codePostal": "01110", - "codeCommune": "01121", - "libelleAcheminement": "CORLIER", - "nomCommune": "CORLIER" + "codePostal": "38580", + "codeCommune": "38268", + "libelleAcheminement": "LE MOUTARET", + "nomCommune": "LE MOUTARET" }, { - "codePostal": "63700", - "codeCommune": "63011", - "libelleAcheminement": "ARS LES FAVETS", - "nomCommune": "ARS LES FAVETS" + "codePostal": "38740", + "codeCommune": "38154", + "libelleAcheminement": "ENTRAIGUES", + "nomCommune": "ENTRAIGUES" }, { - "codePostal": "30350", - "codeCommune": "30183", - "libelleAcheminement": "MOULEZAN", - "nomCommune": "MOULEZAN" + "codePostal": "26000", + "codeCommune": "26362", + "libelleAcheminement": "VALENCE", + "nomCommune": "VALENCE" }, { - "codePostal": "55100", - "codeCommune": "55489", - "libelleAcheminement": "SIVRY LA PERCHE", - "nomCommune": "SIVRY LA PERCHE" + "codePostal": "27300", + "codeCommune": "27569", + "libelleAcheminement": "ST MARTIN DU TILLEUL", + "nomCommune": "ST MARTIN DU TILLEUL" }, { - "codePostal": "01560", - "codeCommune": "01124", - "libelleAcheminement": "CORMOZ", - "nomCommune": "CORMOZ" + "codePostal": "38360", + "codeCommune": "38281", + "libelleAcheminement": "NOYAREY", + "nomCommune": "NOYAREY" }, { - "codePostal": "63590", - "codeCommune": "63023", - "libelleAcheminement": "AUZELLES", - "nomCommune": "AUZELLES" + "codePostal": "38780", + "codeCommune": "38157", + "libelleAcheminement": "ESTRABLIN", + "nomCommune": "ESTRABLIN" }, { - "codePostal": "30190", - "codeCommune": "30184", - "libelleAcheminement": "MOUSSAC", - "nomCommune": "MOUSSAC" + "codePostal": "26420", + "codeCommune": "26364", + "libelleAcheminement": "VASSIEUX EN VERCORS", + "nomCommune": "VASSIEUX EN VERCORS" }, { - "codePostal": "55800", - "codeCommune": "55493", - "libelleAcheminement": "SOMMEILLES", - "nomCommune": "SOMMEILLES" + "codePostal": "27110", + "codeCommune": "27576", + "libelleAcheminement": "STE OPPORTUNE DU BOSC", + "nomCommune": "STE OPPORTUNE DU BOSC" }, { - "codePostal": "01560", - "codeCommune": "01128", - "libelleAcheminement": "COURTES", - "nomCommune": "COURTES" + "codePostal": "38460", + "codeCommune": "38282", + "libelleAcheminement": "OPTEVOZ", + "nomCommune": "OPTEVOZ" }, { - "codePostal": "63600", - "codeCommune": "63027", - "libelleAcheminement": "BAFFIE", - "nomCommune": "BAFFIE" + "codePostal": "38260", + "codeCommune": "38161", + "libelleAcheminement": "FARAMANS", + "nomCommune": "FARAMANS" }, { - "codePostal": "30580", - "codeCommune": "30187", - "libelleAcheminement": "NAVACELLES", - "nomCommune": "NAVACELLES" + "codePostal": "26510", + "codeCommune": "26369", + "libelleAcheminement": "VERCLAUSE", + "nomCommune": "VERCLAUSE" }, { - "codePostal": "55220", - "codeCommune": "55497", - "libelleAcheminement": "LES SOUHESMES RAMPONT", - "nomCommune": "LES SOUHESMES RAMPONT" + "codePostal": "27680", + "codeCommune": "27577", + "libelleAcheminement": "STE OPPORTUNE LA MARE", + "nomCommune": "STE OPPORTUNE LA MARE" }, { - "codePostal": "01350", - "codeCommune": "01133", - "libelleAcheminement": "CRESSIN ROCHEFORT", - "nomCommune": "CRESSIN ROCHEFORT" + "codePostal": "38114", + "codeCommune": "38289", + "libelleAcheminement": "OZ", + "nomCommune": "OZ" }, { - "codePostal": "63570", - "codeCommune": "63029", - "libelleAcheminement": "BANSAT", - "nomCommune": "BANSAT" + "codePostal": "38580", + "codeCommune": "38163", + "libelleAcheminement": "LE HAUT BREDA", + "nomCommune": "LE HAUT BREDA" }, { - "codePostal": "30900", - "codeCommune": "30189", - "libelleAcheminement": "NIMES", - "nomCommune": "NIMES" + "codePostal": "26340", + "codeCommune": "26371", + "libelleAcheminement": "VERONNE", + "nomCommune": "VERONNE" }, { - "codePostal": "55230", - "codeCommune": "55500", - "libelleAcheminement": "SPINCOURT", - "nomCommune": "SPINCOURT" + "codePostal": "27260", + "codeCommune": "27591", + "libelleAcheminement": "ST PIERRE DE CORMEILLES", + "nomCommune": "ST PIERRE DE CORMEILLES" }, { - "codePostal": "01290", - "codeCommune": "01134", - "libelleAcheminement": "CROTTET", - "nomCommune": "CROTTET" + "codePostal": "38460", + "codeCommune": "38294", + "libelleAcheminement": "PANOSSAS", + "nomCommune": "PANOSSAS" }, { - "codePostal": "63110", - "codeCommune": "63032", - "libelleAcheminement": "BEAUMONT", - "nomCommune": "BEAUMONT" + "codePostal": "38690", + "codeCommune": "38167", + "libelleAcheminement": "FLACHERES", + "nomCommune": "FLACHERES" }, { - "codePostal": "30340", - "codeCommune": "30197", - "libelleAcheminement": "LES PLANS", - "nomCommune": "LES PLANS" + "codePostal": "26470", + "codeCommune": "26378", + "libelleAcheminement": "VOLVENT", + "nomCommune": "VOLVENT" }, { - "codePostal": "55230", - "codeCommune": "55500", - "libelleAcheminement": "SPINCOURT", - "nomCommune": "SPINCOURT" + "codePostal": "27450", + "codeCommune": "27594", + "libelleAcheminement": "ST PIERRE DES IFS", + "nomCommune": "ST PIERRE DES IFS" }, { - "codePostal": "01290", - "codeCommune": "01136", - "libelleAcheminement": "CRUZILLES LES MEPILLAT", - "nomCommune": "CRUZILLES LES MEPILLAT" + "codePostal": "38590", + "codeCommune": "38308", + "libelleAcheminement": "PLAN", + "nomCommune": "PLAN" }, { - "codePostal": "63116", - "codeCommune": "63034", - "libelleAcheminement": "BEAUREGARD L EVEQUE", - "nomCommune": "BEAUREGARD L EVEQUE" + "codePostal": "38600", + "codeCommune": "38169", + "libelleAcheminement": "FONTAINE", + "nomCommune": "FONTAINE" }, { - "codePostal": "30450", - "codeCommune": "30201", - "libelleAcheminement": "PONTEILS ET BRESIS", - "nomCommune": "PONTEILS ET BRESIS" + "codePostal": "26300", + "codeCommune": "26381", + "libelleAcheminement": "JAILLANS", + "nomCommune": "JAILLANS" }, { - "codePostal": "55700", - "codeCommune": "55502", - "libelleAcheminement": "STENAY", - "nomCommune": "STENAY" + "codePostal": "27680", + "codeCommune": "27601", + "libelleAcheminement": "ST SAMSON DE LA ROQUE", + "nomCommune": "ST SAMSON DE LA ROQUE" }, { - "codePostal": "01340", - "codeCommune": "01163", - "libelleAcheminement": "FOISSIAT", - "nomCommune": "FOISSIAT" + "codePostal": "38320", + "codeCommune": "38309", + "libelleAcheminement": "POISAT", + "nomCommune": "POISAT" }, { - "codePostal": "63480", - "codeCommune": "63037", - "libelleAcheminement": "BERTIGNAT", - "nomCommune": "BERTIGNAT" + "codePostal": "38120", + "codeCommune": "38170", + "libelleAcheminement": "FONTANIL CORNILLON", + "nomCommune": "FONTANIL CORNILLON" }, { - "codePostal": "30130", - "codeCommune": "30202", - "libelleAcheminement": "PONT ST ESPRIT", - "nomCommune": "PONT ST ESPRIT" + "codePostal": "27120", + "codeCommune": "27004", + "libelleAcheminement": "AIGLEVILLE", + "nomCommune": "AIGLEVILLE" }, { - "codePostal": "55140", - "codeCommune": "55503", - "libelleAcheminement": "TAILLANCOURT", - "nomCommune": "TAILLANCOURT" + "codePostal": "27150", + "codeCommune": "27614", + "libelleAcheminement": "SANCOURT", + "nomCommune": "SANCOURT" }, { - "codePostal": "01090", - "codeCommune": "01165", - "libelleAcheminement": "FRANCHELEINS", - "nomCommune": "FRANCHELEINS" + "codePostal": "38530", + "codeCommune": "38314", + "libelleAcheminement": "PONTCHARRA", + "nomCommune": "PONTCHARRA" }, { - "codePostal": "63610", - "codeCommune": "63038", - "libelleAcheminement": "BESSE ET ST ANASTAISE", - "nomCommune": "BESSE ET ST ANASTAISE" + "codePostal": "38590", + "codeCommune": "38171", + "libelleAcheminement": "LA FORTERESSE", + "nomCommune": "LA FORTERESSE" }, { - "codePostal": "30500", - "codeCommune": "30204", - "libelleAcheminement": "POTELIERES", - "nomCommune": "POTELIERES" + "codePostal": "27600", + "codeCommune": "27005", + "libelleAcheminement": "AILLY", + "nomCommune": "AILLY" }, { - "codePostal": "55260", - "codeCommune": "55506", - "libelleAcheminement": "THILLOMBOIS", - "nomCommune": "THILLOMBOIS" + "codePostal": "27220", + "codeCommune": "27621", + "libelleAcheminement": "SEREZ", + "nomCommune": "SEREZ" }, { - "codePostal": "01140", - "codeCommune": "01167", - "libelleAcheminement": "GARNERANS", - "nomCommune": "GARNERANS" + "codePostal": "38230", + "codeCommune": "38316", + "libelleAcheminement": "PONT DE CHERUY", + "nomCommune": "PONT DE CHERUY" }, { - "codePostal": "63160", - "codeCommune": "63040", - "libelleAcheminement": "BILLOM", - "nomCommune": "BILLOM" + "codePostal": "38260", + "codeCommune": "38174", + "libelleAcheminement": "LA FRETTE", + "nomCommune": "LA FRETTE" }, { - "codePostal": "30320", - "codeCommune": "30206", - "libelleAcheminement": "POULX", - "nomCommune": "POULX" + "codePostal": "27380", + "codeCommune": "27012", + "libelleAcheminement": "AMFREVILLE LES CHAMPS", + "nomCommune": "AMFREVILLE LES CHAMPS" }, { - "codePostal": "55600", - "codeCommune": "55508", - "libelleAcheminement": "THONNE LA LONG", - "nomCommune": "THONNE LA LONG" + "codePostal": "27230", + "codeCommune": "27629", + "libelleAcheminement": "THIBERVILLE", + "nomCommune": "THIBERVILLE" }, { - "codePostal": "01100", - "codeCommune": "01171", - "libelleAcheminement": "GEOVREISSET", - "nomCommune": "GEOVREISSET" + "codePostal": "38800", + "codeCommune": "38317", + "libelleAcheminement": "LE PONT DE CLAIX", + "nomCommune": "LE PONT DE CLAIX" }, { - "codePostal": "63350", - "codeCommune": "63058", - "libelleAcheminement": "BULHON", - "nomCommune": "BULHON" + "codePostal": "38190", + "codeCommune": "38175", + "libelleAcheminement": "FROGES", + "nomCommune": "FROGES" }, { - "codePostal": "30210", - "codeCommune": "30207", - "libelleAcheminement": "POUZILHAC", - "nomCommune": "POUZILHAC" + "codePostal": "27930", + "codeCommune": "27017", + "libelleAcheminement": "ANGERVILLE LA CAMPAGNE", + "nomCommune": "ANGERVILLE LA CAMPAGNE" }, { - "codePostal": "55600", - "codeCommune": "55509", - "libelleAcheminement": "THONNE LE THIL", - "nomCommune": "THONNE LE THIL" + "codePostal": "27370", + "codeCommune": "27638", + "libelleAcheminement": "LE THUIT DE L OISON", + "nomCommune": "LE THUIT DE L OISON" }, { - "codePostal": "01100", - "codeCommune": "01181", - "libelleAcheminement": "GROISSIAT", - "nomCommune": "GROISSIAT" + "codePostal": "38680", + "codeCommune": "38319", + "libelleAcheminement": "PONT EN ROYANS", + "nomCommune": "PONT EN ROYANS" }, { - "codePostal": "63700", - "codeCommune": "63062", - "libelleAcheminement": "BUXIERES SOUS MONTAIGUT", - "nomCommune": "BUXIERES SOUS MONTAIGUT" + "codePostal": "38540", + "codeCommune": "38189", + "libelleAcheminement": "HEYRIEUX", + "nomCommune": "HEYRIEUX" }, { - "codePostal": "30129", - "codeCommune": "30211", - "libelleAcheminement": "REDESSAN", - "nomCommune": "REDESSAN" + "codePostal": "27290", + "codeCommune": "27018", + "libelleAcheminement": "APPEVILLE ANNEBAULT", + "nomCommune": "APPEVILLE ANNEBAULT" }, { - "codePostal": "55600", - "codeCommune": "55510", - "libelleAcheminement": "THONNE LES PRES", - "nomCommune": "THONNE LES PRES" + "codePostal": "27570", + "codeCommune": "27643", + "libelleAcheminement": "TILLIERES SUR AVRE", + "nomCommune": "TILLIERES SUR AVRE" }, { - "codePostal": "01260", - "codeCommune": "01187", - "libelleAcheminement": "HAUT VALROMEY", - "nomCommune": "HAUT VALROMEY" + "codePostal": "38390", + "codeCommune": "38320", + "libelleAcheminement": "PORCIEU AMBLAGNIEU", + "nomCommune": "PORCIEU AMBLAGNIEU" }, { - "codePostal": "63520", - "codeCommune": "63065", - "libelleAcheminement": "CEILLOUX", - "nomCommune": "CEILLOUX" + "codePostal": "38118", + "codeCommune": "38190", + "libelleAcheminement": "HIERES SUR AMBY", + "nomCommune": "HIERES SUR AMBY" }, { - "codePostal": "30750", - "codeCommune": "30213", - "libelleAcheminement": "REVENS", - "nomCommune": "REVENS" + "codePostal": "27260", + "codeCommune": "27021", + "libelleAcheminement": "ASNIERES", + "nomCommune": "ASNIERES" }, { - "codePostal": "55600", - "codeCommune": "55511", - "libelleAcheminement": "THONNELLE", - "nomCommune": "THONNELLE" + "codePostal": "27930", + "codeCommune": "27659", + "libelleAcheminement": "LA TRINITE", + "nomCommune": "LA TRINITE" }, { - "codePostal": "01200", - "codeCommune": "01189", - "libelleAcheminement": "INJOUX GENISSIAT", - "nomCommune": "INJOUX GENISSIAT" + "codePostal": "38350", + "codeCommune": "38326", + "libelleAcheminement": "PRUNIERES", + "nomCommune": "PRUNIERES" }, { - "codePostal": "63122", - "codeCommune": "63070", - "libelleAcheminement": "CEYRAT", - "nomCommune": "CEYRAT" + "codePostal": "38750", + "codeCommune": "38191", + "libelleAcheminement": "HUEZ", + "nomCommune": "HUEZ" }, { - "codePostal": "30720", - "codeCommune": "30214", - "libelleAcheminement": "RIBAUTE LES TAVERNES", - "nomCommune": "RIBAUTE LES TAVERNES" + "codePostal": "27940", + "codeCommune": "27022", + "libelleAcheminement": "LE VAL D HAZEY", + "nomCommune": "LE VAL D HAZEY" }, { - "codePostal": "55220", - "codeCommune": "55512", - "libelleAcheminement": "TILLY SUR MEUSE", - "nomCommune": "TILLY SUR MEUSE" + "codePostal": "27270", + "codeCommune": "27660", + "libelleAcheminement": "LA TRINITE DE REVILLE", + "nomCommune": "LA TRINITE DE REVILLE" }, { - "codePostal": "01640", - "codeCommune": "01199", - "libelleAcheminement": "JUJURIEUX", - "nomCommune": "JUJURIEUX" + "codePostal": "38470", + "codeCommune": "38345", + "libelleAcheminement": "ROVON", + "nomCommune": "ROVON" }, { - "codePostal": "63250", - "codeCommune": "63072", - "libelleAcheminement": "CHABRELOCHE", - "nomCommune": "CHABRELOCHE" + "codePostal": "38200", + "codeCommune": "38199", + "libelleAcheminement": "JARDIN", + "nomCommune": "JARDIN" }, { - "codePostal": "30650", - "codeCommune": "30217", - "libelleAcheminement": "ROCHEFORT DU GARD", - "nomCommune": "ROCHEFORT DU GARD" + "codePostal": "27290", + "codeCommune": "27028", + "libelleAcheminement": "AUTHOU", + "nomCommune": "AUTHOU" }, { - "codePostal": "55250", - "codeCommune": "55517", - "libelleAcheminement": "SEUIL D ARGONNE", - "nomCommune": "SEUIL D ARGONNE" + "codePostal": "27120", + "codeCommune": "27668", + "libelleAcheminement": "LE VAL DAVID", + "nomCommune": "LE VAL DAVID" }, { - "codePostal": "01450", - "codeCommune": "01214", - "libelleAcheminement": "LEYSSARD", - "nomCommune": "LEYSSARD" + "codePostal": "38370", + "codeCommune": "38353", + "libelleAcheminement": "ST ALBAN DU RHONE", + "nomCommune": "ST ALBAN DU RHONE" }, { - "codePostal": "63410", - "codeCommune": "63092", - "libelleAcheminement": "CHARBONNIERES LES VARENNES", - "nomCommune": "CHARBONNIERES LES VARENNES" + "codePostal": "38200", + "codeCommune": "38215", + "libelleAcheminement": "LUZINAY", + "nomCommune": "LUZINAY" }, { - "codePostal": "30190", - "codeCommune": "30224", - "libelleAcheminement": "LA ROUVIERE", - "nomCommune": "LA ROUVIERE" + "codePostal": "27440", + "codeCommune": "27034", + "libelleAcheminement": "BACQUEVILLE", + "nomCommune": "BACQUEVILLE" }, { - "codePostal": "55310", - "codeCommune": "55519", - "libelleAcheminement": "TRONVILLE EN BARROIS", - "nomCommune": "TRONVILLE EN BARROIS" + "codePostal": "27910", + "codeCommune": "27672", + "libelleAcheminement": "VASCOEUIL", + "nomCommune": "VASCOEUIL" }, { - "codePostal": "01430", - "codeCommune": "01228", - "libelleAcheminement": "MAILLAT", - "nomCommune": "MAILLAT" + "codePostal": "38380", + "codeCommune": "38376", + "libelleAcheminement": "ST CHRISTOPHE SUR GUIERS", + "nomCommune": "ST CHRISTOPHE SUR GUIERS" }, { - "codePostal": "63160", - "codeCommune": "63096", - "libelleAcheminement": "CHAS", - "nomCommune": "CHAS" + "codePostal": "38270", + "codeCommune": "38219", + "libelleAcheminement": "MARCOLLIN", + "nomCommune": "MARCOLLIN" }, { - "codePostal": "30130", - "codeCommune": "30226", - "libelleAcheminement": "ST ALEXANDRE", - "nomCommune": "ST ALEXANDRE" + "codePostal": "27170", + "codeCommune": "27037", + "libelleAcheminement": "BARC", + "nomCommune": "BARC" }, { - "codePostal": "55230", - "codeCommune": "55535", - "libelleAcheminement": "VAUDONCOURT", - "nomCommune": "VAUDONCOURT" + "codePostal": "27930", + "codeCommune": "27684", + "libelleAcheminement": "LE VIEIL EVREUX", + "nomCommune": "LE VIEIL EVREUX" }, { - "codePostal": "01240", - "codeCommune": "01235", - "libelleAcheminement": "MARLIEUX", - "nomCommune": "MARLIEUX" + "codePostal": "38690", + "codeCommune": "38380", + "libelleAcheminement": "ST DIDIER DE BIZONNES", + "nomCommune": "ST DIDIER DE BIZONNES" }, { - "codePostal": "63320", - "codeCommune": "63097", - "libelleAcheminement": "CHASSAGNE", - "nomCommune": "CHASSAGNE" + "codePostal": "38300", + "codeCommune": "38223", + "libelleAcheminement": "MAUBEC", + "nomCommune": "MAUBEC" }, { - "codePostal": "30190", - "codeCommune": "30228", - "libelleAcheminement": "STE ANASTASIE", - "nomCommune": "STE ANASTASIE" + "codePostal": "27310", + "codeCommune": "27039", + "libelleAcheminement": "BARNEVILLE SUR SEINE", + "nomCommune": "BARNEVILLE SUR SEINE" }, { - "codePostal": "55300", - "codeCommune": "55540", - "libelleAcheminement": "VAUX LES PALAMEIX", - "nomCommune": "VAUX LES PALAMEIX" + "codePostal": "27110", + "codeCommune": "27692", + "libelleAcheminement": "VILLETTES", + "nomCommune": "VILLETTES" }, { - "codePostal": "01250", - "codeCommune": "01245", - "libelleAcheminement": "BOHAS MEYRIAT RIGNAT", - "nomCommune": "BOHAS MEYRIAT RIGNAT" + "codePostal": "38450", + "codeCommune": "38388", + "libelleAcheminement": "ST GEORGES DE COMMIERS", + "nomCommune": "ST GEORGES DE COMMIERS" }, { - "codePostal": "63119", - "codeCommune": "63099", - "libelleAcheminement": "CHATEAUGAY", - "nomCommune": "CHATEAUGAY" + "codePostal": "38620", + "codeCommune": "38228", + "libelleAcheminement": "MERLAS", + "nomCommune": "MERLAS" }, { - "codePostal": "30630", - "codeCommune": "30230", - "libelleAcheminement": "ST ANDRE DE ROQUEPERTUIS", - "nomCommune": "ST ANDRE DE ROQUEPERTUIS" + "codePostal": "27170", + "codeCommune": "27040", + "libelleAcheminement": "BARQUET", + "nomCommune": "BARQUET" }, { - "codePostal": "55600", - "codeCommune": "55544", - "libelleAcheminement": "VELOSNES", - "nomCommune": "VELOSNES" + "codePostal": "27240", + "codeCommune": "27693", + "libelleAcheminement": "SYLVAINS LES MOULINS", + "nomCommune": "SYLVAINS LES MOULINS" }, { - "codePostal": "01660", - "codeCommune": "01246", - "libelleAcheminement": "MEZERIAT", - "nomCommune": "MEZERIAT" + "codePostal": "38790", + "codeCommune": "38389", + "libelleAcheminement": "ST GEORGES D ESPERANCHE", + "nomCommune": "ST GEORGES D ESPERANCHE" }, { - "codePostal": "63140", - "codeCommune": "63103", - "libelleAcheminement": "CHATEL GUYON", - "nomCommune": "CHATEL GUYON" + "codePostal": "38380", + "codeCommune": "38236", + "libelleAcheminement": "MIRIBEL LES ECHELLES", + "nomCommune": "MIRIBEL LES ECHELLES" }, { - "codePostal": "30330", - "codeCommune": "30232", - "libelleAcheminement": "ST ANDRE D OLERARGUES", - "nomCommune": "ST ANDRE D OLERARGUES" + "codePostal": "27330", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "55800", - "codeCommune": "55560", - "libelleAcheminement": "VILLERS AUX VENTS", - "nomCommune": "VILLERS AUX VENTS" + "codePostal": "27950", + "codeCommune": "27694", + "libelleAcheminement": "VILLEZ SOUS BAILLEUL", + "nomCommune": "VILLEZ SOUS BAILLEUL" }, { - "codePostal": "01170", - "codeCommune": "01247", - "libelleAcheminement": "MIJOUX", - "nomCommune": "MIJOUX" + "codePostal": "38650", + "codeCommune": "38391", + "libelleAcheminement": "ST GUILLAUME", + "nomCommune": "ST GUILLAUME" }, { - "codePostal": "63320", - "codeCommune": "63109", - "libelleAcheminement": "CHIDRAC", - "nomCommune": "CHIDRAC" + "codePostal": "38220", + "codeCommune": "38252", + "libelleAcheminement": "MONTCHABOUD", + "nomCommune": "MONTCHABOUD" }, { - "codePostal": "30730", - "codeCommune": "30233", - "libelleAcheminement": "ST BAUZELY", - "nomCommune": "ST BAUZELY" + "codePostal": "27370", + "codeCommune": "27053", + "libelleAcheminement": "LE BEC THOMAS", + "nomCommune": "LE BEC THOMAS" }, { - "codePostal": "55500", - "codeCommune": "55562", - "libelleAcheminement": "VILLERS LE SEC", - "nomCommune": "VILLERS LE SEC" + "codePostal": "28500", + "codeCommune": "28003", + "libelleAcheminement": "ALLAINVILLE", + "nomCommune": "ALLAINVILLE" }, { - "codePostal": "01250", - "codeCommune": "01254", - "libelleAcheminement": "MONTAGNAT", - "nomCommune": "MONTAGNAT" + "codePostal": "38660", + "codeCommune": "38395", + "libelleAcheminement": "PLATEAU DES PETITES ROCHES", + "nomCommune": "PLATEAU DES PETITES ROCHES" }, { - "codePostal": "63740", - "codeCommune": "63110", - "libelleAcheminement": "CISTERNES LA FORET", - "nomCommune": "CISTERNES LA FORET" + "codePostal": "38520", + "codeCommune": "38253", + "libelleAcheminement": "LES DEUX ALPES", + "nomCommune": "LES DEUX ALPES" }, { - "codePostal": "30350", - "codeCommune": "30234", - "libelleAcheminement": "ST BENEZET", - "nomCommune": "ST BENEZET" + "codePostal": "27300", + "codeCommune": "27056", + "libelleAcheminement": "BERNAY", + "nomCommune": "BERNAY" }, { - "codePostal": "55160", - "codeCommune": "55565", - "libelleAcheminement": "VILLERS SOUS PAREID", - "nomCommune": "VILLERS SOUS PAREID" + "codePostal": "28260", + "codeCommune": "28007", + "libelleAcheminement": "ANET", + "nomCommune": "ANET" }, { - "codePostal": "01470", - "codeCommune": "01255", - "libelleAcheminement": "MONTAGNIEU", - "nomCommune": "MONTAGNIEU" + "codePostal": "38340", + "codeCommune": "38407", + "libelleAcheminement": "LA SURE EN CHARTREUSE", + "nomCommune": "LA SURE EN CHARTREUSE" }, { - "codePostal": "63320", - "codeCommune": "63111", - "libelleAcheminement": "CLEMENSAT", - "nomCommune": "CLEMENSAT" + "codePostal": "38770", + "codeCommune": "38254", + "libelleAcheminement": "MONTEYNARD", + "nomCommune": "MONTEYNARD" }, { - "codePostal": "30210", - "codeCommune": "30235", - "libelleAcheminement": "ST BONNET DU GARD", - "nomCommune": "ST BONNET DU GARD" + "codePostal": "27520", + "codeCommune": "27062", + "libelleAcheminement": "LES MONTS DU ROUMOIS", + "nomCommune": "LES MONTS DU ROUMOIS" }, { - "codePostal": "55250", - "codeCommune": "55569", - "libelleAcheminement": "VILLOTTE DEVANT LOUPPY", - "nomCommune": "VILLOTTE DEVANT LOUPPY" + "codePostal": "28220", + "codeCommune": "28012", + "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", + "nomCommune": "COMMUNE NOUVELLE D ARROU" }, { - "codePostal": "01120", - "codeCommune": "01262", - "libelleAcheminement": "MONTLUEL", - "nomCommune": "MONTLUEL" + "codePostal": "38680", + "codeCommune": "38409", + "libelleAcheminement": "ST JUST DE CLAIX", + "nomCommune": "ST JUST DE CLAIX" }, { - "codePostal": "63720", - "codeCommune": "63112", - "libelleAcheminement": "CLERLANDE", - "nomCommune": "CLERLANDE" + "codePostal": "38940", + "codeCommune": "38255", + "libelleAcheminement": "MONTFALCON", + "nomCommune": "MONTFALCON" }, { - "codePostal": "30150", - "codeCommune": "30254", - "libelleAcheminement": "ST GENIES DE COMOLAS", - "nomCommune": "ST GENIES DE COMOLAS" + "codePostal": "27800", + "codeCommune": "27074", + "libelleAcheminement": "BOISNEY", + "nomCommune": "BOISNEY" }, { - "codePostal": "55150", - "codeCommune": "55580", - "libelleAcheminement": "WAVRILLE", - "nomCommune": "WAVRILLE" + "codePostal": "28290", + "codeCommune": "28012", + "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", + "nomCommune": "COMMUNE NOUVELLE D ARROU" }, { - "codePostal": "01310", - "codeCommune": "01264", - "libelleAcheminement": "MONTRACOL", - "nomCommune": "MONTRACOL" + "codePostal": "38970", + "codeCommune": "38414", + "libelleAcheminement": "STE LUCE", + "nomCommune": "STE LUCE" }, { - "codePostal": "63340", - "codeCommune": "63114", - "libelleAcheminement": "COLLANGES", - "nomCommune": "COLLANGES" + "codePostal": "38460", + "codeCommune": "38260", + "libelleAcheminement": "MORAS", + "nomCommune": "MORAS" }, { - "codePostal": "30190", - "codeCommune": "30255", - "libelleAcheminement": "ST GENIES DE MALGOIRES", - "nomCommune": "ST GENIES DE MALGOIRES" + "codePostal": "27310", + "codeCommune": "27085", + "libelleAcheminement": "FLANCOURT CRESCY EN ROUMOIS", + "nomCommune": "FLANCOURT CRESCY EN ROUMOIS" }, { - "codePostal": "56640", - "codeCommune": "56005", - "libelleAcheminement": "ARZON", - "nomCommune": "ARZON" + "codePostal": "28330", + "codeCommune": "28018", + "libelleAcheminement": "AUTHON DU PERCHE", + "nomCommune": "AUTHON DU PERCHE" }, { - "codePostal": "01300", - "codeCommune": "01268", - "libelleAcheminement": "MURS ET GELIGNIEUX", - "nomCommune": "MURS ET GELIGNIEUX" + "codePostal": "38930", + "codeCommune": "38419", + "libelleAcheminement": "ST MARTIN DE CLELLES", + "nomCommune": "ST MARTIN DE CLELLES" }, { - "codePostal": "63380", - "codeCommune": "63118", - "libelleAcheminement": "CONDAT EN COMBRAILLE", - "nomCommune": "CONDAT EN COMBRAILLE" + "codePostal": "38770", + "codeCommune": "38266", + "libelleAcheminement": "LA MOTTE ST MARTIN", + "nomCommune": "LA MOTTE ST MARTIN" }, { - "codePostal": "30170", - "codeCommune": "30263", - "libelleAcheminement": "ST HIPPOLYTE DU FORT", - "nomCommune": "ST HIPPOLYTE DU FORT" + "codePostal": "27310", + "codeCommune": "27085", + "libelleAcheminement": "FLANCOURT CRESCY EN ROUMOIS", + "nomCommune": "FLANCOURT CRESCY EN ROUMOIS" }, { - "codePostal": "56800", - "codeCommune": "56006", - "libelleAcheminement": "AUGAN", - "nomCommune": "AUGAN" + "codePostal": "28120", + "codeCommune": "28021", + "libelleAcheminement": "BAILLEAU LE PIN", + "nomCommune": "BAILLEAU LE PIN" }, { - "codePostal": "01210", - "codeCommune": "01281", - "libelleAcheminement": "ORNEX", - "nomCommune": "ORNEX" + "codePostal": "38410", + "codeCommune": "38422", + "libelleAcheminement": "ST MARTIN D URIAGE", + "nomCommune": "ST MARTIN D URIAGE" }, { - "codePostal": "63730", - "codeCommune": "63120", - "libelleAcheminement": "CORENT", - "nomCommune": "CORENT" + "codePostal": "38420", + "codeCommune": "38271", + "libelleAcheminement": "MURIANETTE", + "nomCommune": "MURIANETTE" }, { - "codePostal": "30350", - "codeCommune": "30267", - "libelleAcheminement": "ST JEAN DE SERRES", - "nomCommune": "ST JEAN DE SERRES" + "codePostal": "27670", + "codeCommune": "27090", + "libelleAcheminement": "BOSROUMOIS", + "nomCommune": "BOSROUMOIS" }, { - "codePostal": "56360", - "codeCommune": "56009", - "libelleAcheminement": "BANGOR", - "nomCommune": "BANGOR" + "codePostal": "28270", + "codeCommune": "28037", + "libelleAcheminement": "BEROU LA MULOTIERE", + "nomCommune": "BEROU LA MULOTIERE" }, { - "codePostal": "01430", - "codeCommune": "01282", - "libelleAcheminement": "OUTRIAZ", - "nomCommune": "OUTRIAZ" + "codePostal": "38950", + "codeCommune": "38423", + "libelleAcheminement": "ST MARTIN LE VINOUX", + "nomCommune": "ST MARTIN LE VINOUX" }, { - "codePostal": "63450", - "codeCommune": "63126", - "libelleAcheminement": "LE CREST", - "nomCommune": "LE CREST" + "codePostal": "38300", + "codeCommune": "38276", + "libelleAcheminement": "NIVOLAS VERMELLE", + "nomCommune": "NIVOLAS VERMELLE" }, { - "codePostal": "30580", - "codeCommune": "30275", - "libelleAcheminement": "ST JUST ET VACQUIERES", - "nomCommune": "ST JUST ET VACQUIERES" + "codePostal": "27210", + "codeCommune": "27100", + "libelleAcheminement": "BOULLEVILLE", + "nomCommune": "BOULLEVILLE" }, { - "codePostal": "56420", - "codeCommune": "56019", - "libelleAcheminement": "BILLIO", - "nomCommune": "BILLIO" + "codePostal": "28330", + "codeCommune": "28038", + "libelleAcheminement": "BETHONVILLIERS", + "nomCommune": "BETHONVILLIERS" }, { - "codePostal": "01100", - "codeCommune": "01283", - "libelleAcheminement": "OYONNAX", - "nomCommune": "OYONNAX" + "codePostal": "38570", + "codeCommune": "38439", + "libelleAcheminement": "CRETS EN BELLEDONNE", + "nomCommune": "CRETS EN BELLEDONNE" }, { - "codePostal": "63350", - "codeCommune": "63128", - "libelleAcheminement": "CREVANT LAVEINE", - "nomCommune": "CREVANT LAVEINE" + "codePostal": "38270", + "codeCommune": "38290", + "libelleAcheminement": "PACT", + "nomCommune": "PACT" }, { - "codePostal": "30200", - "codeCommune": "30277", - "libelleAcheminement": "ST LAURENT DE CARNOLS", - "nomCommune": "ST LAURENT DE CARNOLS" + "codePostal": "27500", + "codeCommune": "27101", + "libelleAcheminement": "BOUQUELON", + "nomCommune": "BOUQUELON" }, { - "codePostal": "56420", - "codeCommune": "56027", - "libelleAcheminement": "BULEON", - "nomCommune": "BULEON" + "codePostal": "28700", + "codeCommune": "28039", + "libelleAcheminement": "BEVILLE LE COMTE", + "nomCommune": "BEVILLE LE COMTE" }, { - "codePostal": "01430", - "codeCommune": "01293", - "libelleAcheminement": "PEYRIAT", - "nomCommune": "PEYRIAT" + "codePostal": "38380", + "codeCommune": "38442", + "libelleAcheminement": "ST PIERRE DE CHARTREUSE", + "nomCommune": "ST PIERRE DE CHARTREUSE" }, { - "codePostal": "63830", - "codeCommune": "63141", - "libelleAcheminement": "DURTOL", - "nomCommune": "DURTOL" + "codePostal": "38550", + "codeCommune": "38298", + "libelleAcheminement": "LE PEAGE DE ROUSSILLON", + "nomCommune": "LE PEAGE DE ROUSSILLON" }, { - "codePostal": "30440", - "codeCommune": "30280", - "libelleAcheminement": "ST LAURENT LE MINIER", - "nomCommune": "ST LAURENT LE MINIER" + "codePostal": "27220", + "codeCommune": "27111", + "libelleAcheminement": "BRETAGNOLLES", + "nomCommune": "BRETAGNOLLES" }, { - "codePostal": "56620", - "codeCommune": "56040", - "libelleAcheminement": "CLEGUER", - "nomCommune": "CLEGUER" + "codePostal": "28360", + "codeCommune": "28048", + "libelleAcheminement": "LA BOURDINIERE ST LOUP", + "nomCommune": "LA BOURDINIERE ST LOUP" }, { - "codePostal": "01270", - "codeCommune": "01296", - "libelleAcheminement": "PIRAJOUX", - "nomCommune": "PIRAJOUX" + "codePostal": "38160", + "codeCommune": "38443", + "libelleAcheminement": "ST PIERRE DE CHERENNES", + "nomCommune": "ST PIERRE DE CHERENNES" }, { - "codePostal": "63980", - "codeCommune": "63142", - "libelleAcheminement": "ECHANDELYS", - "nomCommune": "ECHANDELYS" + "codePostal": "38260", + "codeCommune": "38300", + "libelleAcheminement": "PENOL", + "nomCommune": "PENOL" }, { - "codePostal": "30700", - "codeCommune": "30299", - "libelleAcheminement": "ST SIFFRET", - "nomCommune": "ST SIFFRET" + "codePostal": "27160", + "codeCommune": "27112", + "libelleAcheminement": "BRETEUIL", + "nomCommune": "BRETEUIL" }, { - "codePostal": "56120", - "codeCommune": "56050", - "libelleAcheminement": "LA CROIX HELLEAN", - "nomCommune": "LA CROIX HELLEAN" + "codePostal": "28270", + "codeCommune": "28059", + "libelleAcheminement": "BREZOLLES", + "nomCommune": "BREZOLLES" }, { - "codePostal": "01120", - "codeCommune": "01297", - "libelleAcheminement": "PIZAY", - "nomCommune": "PIZAY" + "codePostal": "38380", + "codeCommune": "38446", + "libelleAcheminement": "ST PIERRE D ENTREMONT", + "nomCommune": "ST PIERRE D ENTREMONT" }, { - "codePostal": "63260", - "codeCommune": "63143", - "libelleAcheminement": "EFFIAT", - "nomCommune": "EFFIAT" + "codePostal": "38119", + "codeCommune": "38304", + "libelleAcheminement": "PIERRE CHATEL", + "nomCommune": "PIERRE CHATEL" }, { - "codePostal": "30290", - "codeCommune": "30302", - "libelleAcheminement": "ST VICTOR LA COSTE", - "nomCommune": "ST VICTOR LA COSTE" + "codePostal": "27270", + "codeCommune": "27117", + "libelleAcheminement": "BROGLIE", + "nomCommune": "BROGLIE" }, { - "codePostal": "56750", - "codeCommune": "56052", - "libelleAcheminement": "DAMGAN", - "nomCommune": "DAMGAN" + "codePostal": "28160", + "codeCommune": "28061", + "libelleAcheminement": "BROU", + "nomCommune": "BROU" }, { - "codePostal": "01450", - "codeCommune": "01303", - "libelleAcheminement": "PONCIN", - "nomCommune": "PONCIN" + "codePostal": "38370", + "codeCommune": "38448", + "libelleAcheminement": "ST PRIM", + "nomCommune": "ST PRIM" }, { - "codePostal": "63850", - "codeCommune": "63144", - "libelleAcheminement": "EGLISENEUVE D ENTRAIGUES", - "nomCommune": "EGLISENEUVE D ENTRAIGUES" + "codePostal": "38210", + "codeCommune": "38310", + "libelleAcheminement": "POLIENAS", + "nomCommune": "POLIENAS" }, { - "codePostal": "30500", - "codeCommune": "30303", - "libelleAcheminement": "ST VICTOR DE MALCAP", - "nomCommune": "ST VICTOR DE MALCAP" + "codePostal": "27930", + "codeCommune": "27118", + "libelleAcheminement": "BROSVILLE", + "nomCommune": "BROSVILLE" }, { - "codePostal": "56530", - "codeCommune": "56063", - "libelleAcheminement": "GESTEL", - "nomCommune": "GESTEL" + "codePostal": "28120", + "codeCommune": "28067", + "libelleAcheminement": "CERNAY", + "nomCommune": "CERNAY" }, { - "codePostal": "01290", - "codeCommune": "01306", - "libelleAcheminement": "PONT DE VEYLE", - "nomCommune": "PONT DE VEYLE" + "codePostal": "38160", + "codeCommune": "38453", + "libelleAcheminement": "ST ROMANS", + "nomCommune": "ST ROMANS" }, { - "codePostal": "63160", - "codeCommune": "63154", - "libelleAcheminement": "ESPIRAT", - "nomCommune": "ESPIRAT" + "codePostal": "38350", + "codeCommune": "38313", + "libelleAcheminement": "PONSONNAS", + "nomCommune": "PONSONNAS" }, { - "codePostal": "30760", - "codeCommune": "30304", - "libelleAcheminement": "SALAZAC", - "nomCommune": "SALAZAC" + "codePostal": "27730", + "codeCommune": "27119", + "libelleAcheminement": "BUEIL", + "nomCommune": "BUEIL" }, { - "codePostal": "56120", - "codeCommune": "56068", - "libelleAcheminement": "LA GREE ST LAURENT", - "nomCommune": "LA GREE ST LAURENT" + "codePostal": "28300", + "codeCommune": "28068", + "libelleAcheminement": "CHALLET", + "nomCommune": "CHALLET" }, { - "codePostal": "01110", - "codeCommune": "01311", - "libelleAcheminement": "PREMILLIEU", - "nomCommune": "PREMILLIEU" + "codePostal": "38300", + "codeCommune": "38455", + "libelleAcheminement": "ST SAVIN", + "nomCommune": "ST SAVIN" }, { - "codePostal": "63520", - "codeCommune": "63155", - "libelleAcheminement": "ESTANDEUIL", - "nomCommune": "ESTANDEUIL" + "codePostal": "38680", + "codeCommune": "38322", + "libelleAcheminement": "PRESLES", + "nomCommune": "PRESLES" }, { - "codePostal": "30700", - "codeCommune": "30308", - "libelleAcheminement": "SANILHAC SAGRIES", - "nomCommune": "SANILHAC SAGRIES" + "codePostal": "27190", + "codeCommune": "27120", + "libelleAcheminement": "BUREY", + "nomCommune": "BUREY" }, { - "codePostal": "56150", - "codeCommune": "56074", - "libelleAcheminement": "GUENIN", - "nomCommune": "GUENIN" + "codePostal": "28700", + "codeCommune": "28074", + "libelleAcheminement": "LA CHAPELLE D AUNAINVILLE", + "nomCommune": "LA CHAPELLE D AUNAINVILLE" }, { - "codePostal": "01160", - "codeCommune": "01314", - "libelleAcheminement": "PRIAY", - "nomCommune": "PRIAY" + "codePostal": "38710", + "codeCommune": "38456", + "libelleAcheminement": "CHATEL EN TRIEVES", + "nomCommune": "CHATEL EN TRIEVES" }, { - "codePostal": "63500", - "codeCommune": "63160", - "libelleAcheminement": "AULHAT FLAT", - "nomCommune": "AULHAT FLAT" + "codePostal": "38270", + "codeCommune": "38324", + "libelleAcheminement": "PRIMARETTE", + "nomCommune": "PRIMARETTE" }, { - "codePostal": "30150", - "codeCommune": "30312", - "libelleAcheminement": "SAUVETERRE", - "nomCommune": "SAUVETERRE" + "codePostal": "27490", + "codeCommune": "27124", + "libelleAcheminement": "CAILLY SUR EURE", + "nomCommune": "CAILLY SUR EURE" }, { - "codePostal": "56380", - "codeCommune": "56075", - "libelleAcheminement": "GUER", - "nomCommune": "GUER" + "codePostal": "28340", + "codeCommune": "28077", + "libelleAcheminement": "LA CHAPELLE FORTIN", + "nomCommune": "LA CHAPELLE FORTIN" }, { - "codePostal": "01250", - "codeCommune": "01321", - "libelleAcheminement": "REVONNAS", - "nomCommune": "REVONNAS" + "codePostal": "38780", + "codeCommune": "38480", + "libelleAcheminement": "SEPTEME", + "nomCommune": "SEPTEME" }, { - "codePostal": "63500", - "codeCommune": "63160", - "libelleAcheminement": "AULHAT FLAT", - "nomCommune": "AULHAT FLAT" + "codePostal": "38120", + "codeCommune": "38325", + "libelleAcheminement": "PROVEYSIEUX", + "nomCommune": "PROVEYSIEUX" }, { - "codePostal": "30650", - "codeCommune": "30315", - "libelleAcheminement": "SAZE", - "nomCommune": "SAZE" + "codePostal": "27500", + "codeCommune": "27126", + "libelleAcheminement": "CAMPIGNY", + "nomCommune": "CAMPIGNY" }, { - "codePostal": "56310", - "codeCommune": "56076", - "libelleAcheminement": "GUERN", - "nomCommune": "GUERN" + "codePostal": "28130", + "codeCommune": "28084", + "libelleAcheminement": "CHARTAINVILLIERS", + "nomCommune": "CHARTAINVILLIERS" }, { - "codePostal": "01390", - "codeCommune": "01333", - "libelleAcheminement": "ST ANDRE DE CORCY", - "nomCommune": "ST ANDRE DE CORCY" + "codePostal": "38510", + "codeCommune": "38483", + "libelleAcheminement": "SERMERIEU", + "nomCommune": "SERMERIEU" }, { - "codePostal": "63620", - "codeCommune": "63165", - "libelleAcheminement": "GIAT", - "nomCommune": "GIAT" + "codePostal": "38420", + "codeCommune": "38334", + "libelleAcheminement": "REVEL", + "nomCommune": "REVEL" }, { - "codePostal": "30210", - "codeCommune": "30317", - "libelleAcheminement": "SERNHAC", - "nomCommune": "SERNHAC" + "codePostal": "27120", + "codeCommune": "27136", + "libelleAcheminement": "CHAIGNES", + "nomCommune": "CHAIGNES" }, { - "codePostal": "56490", - "codeCommune": "56080", - "libelleAcheminement": "GUILLIERS", - "nomCommune": "GUILLIERS" + "codePostal": "28270", + "codeCommune": "28090", + "libelleAcheminement": "LES CHATELETS", + "nomCommune": "LES CHATELETS" }, { - "codePostal": "01290", - "codeCommune": "01334", - "libelleAcheminement": "ST ANDRE D HUIRIAT", - "nomCommune": "ST ANDRE D HUIRIAT" + "codePostal": "38460", + "codeCommune": "38488", + "libelleAcheminement": "SICCIEU ST JULIEN ET CARISIEU", + "nomCommune": "SICCIEU ST JULIEN ET CARISIEU" }, { - "codePostal": "63340", - "codeCommune": "63166", - "libelleAcheminement": "GIGNAT", - "nomCommune": "GIGNAT" + "codePostal": "38140", + "codeCommune": "38337", + "libelleAcheminement": "RIVES SUR FURE", + "nomCommune": "RIVES" }, { - "codePostal": "30460", - "codeCommune": "30322", - "libelleAcheminement": "SOUDORGUES", - "nomCommune": "SOUDORGUES" + "codePostal": "27270", + "codeCommune": "27138", + "libelleAcheminement": "CHAMBLAC", + "nomCommune": "CHAMBLAC" }, { - "codePostal": "56120", - "codeCommune": "56082", - "libelleAcheminement": "HELLEAN", - "nomCommune": "HELLEAN" + "codePostal": "28120", + "codeCommune": "28091", + "libelleAcheminement": "LES CHATELLIERS NOTRE DAME", + "nomCommune": "LES CHATELLIERS NOTRE DAME" }, { - "codePostal": "01300", - "codeCommune": "01338", - "libelleAcheminement": "GROSLEE ST BENOIT", - "nomCommune": "GROSLEE ST BENOIT" + "codePostal": "38570", + "codeCommune": "38501", + "libelleAcheminement": "TENCIN", + "nomCommune": "TENCIN" }, { - "codePostal": "63160", - "codeCommune": "63168", - "libelleAcheminement": "GLAINE MONTAIGUT", - "nomCommune": "GLAINE MONTAIGUT" + "codePostal": "38090", + "codeCommune": "38339", + "libelleAcheminement": "ROCHE", + "nomCommune": "ROCHE" }, { - "codePostal": "30750", - "codeCommune": "30332", - "libelleAcheminement": "TREVES", - "nomCommune": "TREVES" + "codePostal": "27600", + "codeCommune": "27142", + "libelleAcheminement": "CHAMPENARD", + "nomCommune": "CHAMPENARD" }, { - "codePostal": "56840", - "codeCommune": "56088", - "libelleAcheminement": "ILE D ARZ", - "nomCommune": "ILE D ARZ" + "codePostal": "28210", + "codeCommune": "28094", + "libelleAcheminement": "CHAUDON", + "nomCommune": "CHAUDON" }, { - "codePostal": "01120", - "codeCommune": "01342", - "libelleAcheminement": "STE CROIX", - "nomCommune": "STE CROIX" + "codePostal": "38460", + "codeCommune": "38515", + "libelleAcheminement": "TREPT", + "nomCommune": "TREPT" }, { - "codePostal": "63230", - "codeCommune": "63170", - "libelleAcheminement": "LA GOUTELLE", - "nomCommune": "LA GOUTELLE" + "codePostal": "38090", + "codeCommune": "38339", + "libelleAcheminement": "ROCHE", + "nomCommune": "ROCHE" }, { - "codePostal": "30700", - "codeCommune": "30337", - "libelleAcheminement": "VALLABRIX", - "nomCommune": "VALLABRIX" + "codePostal": "27220", + "codeCommune": "27144", + "libelleAcheminement": "CHAMPIGNY LA FUTELAYE", + "nomCommune": "CHAMPIGNY LA FUTELAYE" }, { - "codePostal": "56300", - "codeCommune": "56093", - "libelleAcheminement": "KERGRIST", - "nomCommune": "KERGRIST" + "codePostal": "28260", + "codeCommune": "28096", + "libelleAcheminement": "LA CHAUSSEE D IVRY", + "nomCommune": "LA CHAUSSEE D IVRY" }, { - "codePostal": "01380", - "codeCommune": "01343", - "libelleAcheminement": "ST CYR SUR MENTHON", - "nomCommune": "ST CYR SUR MENTHON" + "codePostal": "38210", + "codeCommune": "38517", + "libelleAcheminement": "TULLINS", + "nomCommune": "TULLINS" }, { - "codePostal": "63390", - "codeCommune": "63171", - "libelleAcheminement": "GOUTTIERES", - "nomCommune": "GOUTTIERES" + "codePostal": "38370", + "codeCommune": "38340", + "libelleAcheminement": "LES ROCHES DE CONDRIEU", + "nomCommune": "LES ROCHES DE CONDRIEU" }, { - "codePostal": "30570", - "codeCommune": "30339", - "libelleAcheminement": "VAL D AIGOUAL", - "nomCommune": "VAL D AIGOUAL" + "codePostal": "27230", + "codeCommune": "27149", + "libelleAcheminement": "LA CHAPELLE HARENG", + "nomCommune": "LA CHAPELLE HARENG" }, { - "codePostal": "56160", - "codeCommune": "56099", - "libelleAcheminement": "LANGOELAN", - "nomCommune": "LANGOELAN" + "codePostal": "28190", + "codeCommune": "28099", + "libelleAcheminement": "CHUISNES", + "nomCommune": "CHUISNES" }, { - "codePostal": "01190", - "codeCommune": "01352", - "libelleAcheminement": "ST ETIENNE SUR REYSSOUZE", - "nomCommune": "ST ETIENNE SUR REYSSOUZE" + "codePostal": "38210", + "codeCommune": "38517", + "libelleAcheminement": "TULLINS", + "nomCommune": "TULLINS" }, { - "codePostal": "63500", - "codeCommune": "63178", - "libelleAcheminement": "ISSOIRE", - "nomCommune": "ISSOIRE" + "codePostal": "38150", + "codeCommune": "38344", + "libelleAcheminement": "ROUSSILLON", + "nomCommune": "ROUSSILLON" }, { - "codePostal": "30210", - "codeCommune": "30340", - "libelleAcheminement": "VALLIGUIERES", - "nomCommune": "VALLIGUIERES" + "codePostal": "27250", + "codeCommune": "27156", + "libelleAcheminement": "CHERONVILLIERS", + "nomCommune": "CHERONVILLIERS" }, { - "codePostal": "56260", - "codeCommune": "56107", - "libelleAcheminement": "LARMOR PLAGE", - "nomCommune": "LARMOR PLAGE" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "01290", - "codeCommune": "01365", - "libelleAcheminement": "ST JEAN SUR VEYLE", - "nomCommune": "ST JEAN SUR VEYLE" + "codePostal": "38740", + "codeCommune": "38518", + "libelleAcheminement": "VALBONNAIS", + "nomCommune": "VALBONNAIS" }, { - "codePostal": "63460", - "codeCommune": "63181", - "libelleAcheminement": "JOZERAND", - "nomCommune": "JOZERAND" + "codePostal": "38940", + "codeCommune": "38347", + "libelleAcheminement": "ROYBON", + "nomCommune": "ROYBON" }, { - "codePostal": "30600", - "codeCommune": "30341", - "libelleAcheminement": "VAUVERT", - "nomCommune": "VAUVERT" + "codePostal": "27160", + "codeCommune": "27157", + "libelleAcheminement": "MARBOIS", + "nomCommune": "MARBOIS" }, { - "codePostal": "56500", - "codeCommune": "56117", - "libelleAcheminement": "LOCMINE", - "nomCommune": "LOCMINE" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "01500", - "codeCommune": "01379", - "libelleAcheminement": "ST MAURICE DE REMENS", - "nomCommune": "ST MAURICE DE REMENS" + "codePostal": "38730", + "codeCommune": "38520", + "libelleAcheminement": "VALENCOGNE", + "nomCommune": "VALENCOGNE" }, { - "codePostal": "63570", - "codeCommune": "63182", - "libelleAcheminement": "JUMEAUX", - "nomCommune": "JUMEAUX" + "codePostal": "38080", + "codeCommune": "38352", + "libelleAcheminement": "ST ALBAN DE ROCHE", + "nomCommune": "ST ALBAN DE ROCHE" }, { - "codePostal": "30200", - "codeCommune": "30342", - "libelleAcheminement": "VENEJAN", - "nomCommune": "VENEJAN" + "codePostal": "27240", + "codeCommune": "27157", + "libelleAcheminement": "MARBOIS", + "nomCommune": "MARBOIS" }, { - "codePostal": "56570", - "codeCommune": "56118", - "libelleAcheminement": "LOCMIQUELIC", - "nomCommune": "LOCMIQUELIC" + "codePostal": "28240", + "codeCommune": "28109", + "libelleAcheminement": "LES CORVEES LES YYS", + "nomCommune": "LES CORVEES LES YYS" }, { - "codePostal": "01320", - "codeCommune": "01381", - "libelleAcheminement": "ST NIZIER LE DESERT", - "nomCommune": "ST NIZIER LE DESERT" + "codePostal": "38350", + "codeCommune": "38521", + "libelleAcheminement": "LA VALETTE", + "nomCommune": "LA VALETTE" }, { - "codePostal": "63570", - "codeCommune": "63185", - "libelleAcheminement": "LAMONTGIE", - "nomCommune": "LAMONTGIE" + "codePostal": "38650", + "codeCommune": "38355", + "libelleAcheminement": "ST ANDEOL", + "nomCommune": "ST ANDEOL" }, { - "codePostal": "30210", - "codeCommune": "30346", - "libelleAcheminement": "VERS PONT DU GARD", - "nomCommune": "VERS PONT DU GARD" + "codePostal": "27500", + "codeCommune": "27163", + "libelleAcheminement": "COLLETOT", + "nomCommune": "COLLETOT" }, { - "codePostal": "56430", - "codeCommune": "56127", - "libelleAcheminement": "MAURON", - "nomCommune": "MAURON" + "codePostal": "28630", + "codeCommune": "28110", + "libelleAcheminement": "LE COUDRAY", + "nomCommune": "LE COUDRAY" }, { - "codePostal": "01250", - "codeCommune": "01408", - "libelleAcheminement": "SIMANDRE SUR SURAN", - "nomCommune": "SIMANDRE SUR SURAN" + "codePostal": "38410", + "codeCommune": "38529", + "libelleAcheminement": "VAULNAVEYS LE HAUT", + "nomCommune": "VAULNAVEYS LE HAUT" }, { - "codePostal": "63820", - "codeCommune": "63189", - "libelleAcheminement": "LAQUEUILLE", - "nomCommune": "LAQUEUILLE" + "codePostal": "38440", + "codeCommune": "38358", + "libelleAcheminement": "STE ANNE SUR GERVONDE", + "nomCommune": "STE ANNE SUR GERVONDE" }, { - "codePostal": "30360", - "codeCommune": "30348", - "libelleAcheminement": "VEZENOBRES", - "nomCommune": "VEZENOBRES" + "codePostal": "27150", + "codeCommune": "27176", + "libelleAcheminement": "COUDRAY", + "nomCommune": "COUDRAY" }, { - "codePostal": "56890", - "codeCommune": "56132", - "libelleAcheminement": "MEUCON", - "nomCommune": "MEUCON" + "codePostal": "28330", + "codeCommune": "28111", + "libelleAcheminement": "COUDRAY AU PERCHE", + "nomCommune": "COUDRAY AU PERCHE" }, { - "codePostal": "01510", - "codeCommune": "01415", - "libelleAcheminement": "TALISSIEU", - "nomCommune": "TALISSIEU" + "codePostal": "38290", + "codeCommune": "38537", + "libelleAcheminement": "LA VERPILLIERE", + "nomCommune": "LA VERPILLIERE" }, { - "codePostal": "63440", - "codeCommune": "63197", - "libelleAcheminement": "LISSEUIL", - "nomCommune": "LISSEUIL" + "codePostal": "38160", + "codeCommune": "38359", + "libelleAcheminement": "ST ANTOINE L ABBAYE", + "nomCommune": "ST ANTOINE L ABBAYE" }, { - "codePostal": "30230", - "codeCommune": "30356", - "libelleAcheminement": "RODILHAN", - "nomCommune": "RODILHAN" + "codePostal": "27320", + "codeCommune": "27181", + "libelleAcheminement": "COURDEMANCHE", + "nomCommune": "COURDEMANCHE" }, { - "codePostal": "56490", - "codeCommune": "56134", - "libelleAcheminement": "MOHON", - "nomCommune": "MOHON" + "codePostal": "28500", + "codeCommune": "28117", + "libelleAcheminement": "CRECY COUVE", + "nomCommune": "CRECY COUVE" }, { - "codePostal": "01140", - "codeCommune": "01420", - "libelleAcheminement": "THOISSEY", - "nomCommune": "THOISSEY" + "codePostal": "38510", + "codeCommune": "38543", + "libelleAcheminement": "VEZERONCE CURTIN", + "nomCommune": "VEZERONCE CURTIN" }, { - "codePostal": "63350", - "codeCommune": "63201", - "libelleAcheminement": "LUZILLAT", - "nomCommune": "LUZILLAT" + "codePostal": "38270", + "codeCommune": "38363", + "libelleAcheminement": "ST BARTHELEMY DE BEAUREPAIRE", + "nomCommune": "ST BARTHELEMY" }, { - "codePostal": "31450", - "codeCommune": "31004", - "libelleAcheminement": "AYGUESVIVES", - "nomCommune": "AYGUESVIVES" + "codePostal": "27110", + "codeCommune": "27185", + "libelleAcheminement": "CRESTOT", + "nomCommune": "CRESTOT" }, { - "codePostal": "56500", - "codeCommune": "56141", - "libelleAcheminement": "MOUSTOIR AC", - "nomCommune": "MOUSTOIR AC" + "codePostal": "28270", + "codeCommune": "28120", + "libelleAcheminement": "CRUCEY VILLAGES", + "nomCommune": "CRUCEY VILLAGES" }, { - "codePostal": "01370", - "codeCommune": "01426", - "libelleAcheminement": "VAL REVERMONT", - "nomCommune": "VAL REVERMONT" + "codePostal": "38510", + "codeCommune": "38543", + "libelleAcheminement": "VEZERONCE CURTIN", + "nomCommune": "VEZERONCE CURTIN" }, { - "codePostal": "63270", - "codeCommune": "63205", - "libelleAcheminement": "MANGLIEU", - "nomCommune": "MANGLIEU" + "codePostal": "38220", + "codeCommune": "38364", + "libelleAcheminement": "ST BARTHELEMY DE SECHILIENNE", + "nomCommune": "ST BARTHELEMY DE SECHILIENNE" }, { - "codePostal": "31230", - "codeCommune": "31008", - "libelleAcheminement": "ANAN", - "nomCommune": "ANAN" + "codePostal": "27120", + "codeCommune": "27190", + "libelleAcheminement": "CROISY SUR EURE", + "nomCommune": "CROISY SUR EURE" }, { - "codePostal": "56300", - "codeCommune": "56146", - "libelleAcheminement": "NEULLIAC", - "nomCommune": "NEULLIAC" + "codePostal": "28160", + "codeCommune": "28123", + "libelleAcheminement": "DAMPIERRE SOUS BROU", + "nomCommune": "DAMPIERRE SOUS BROU" }, { - "codePostal": "01140", - "codeCommune": "01428", - "libelleAcheminement": "VALEINS", - "nomCommune": "VALEINS" + "codePostal": "38890", + "codeCommune": "38546", + "libelleAcheminement": "VIGNIEU", + "nomCommune": "VIGNIEU" }, { - "codePostal": "63410", - "codeCommune": "63206", - "libelleAcheminement": "MANZAT", - "nomCommune": "MANZAT" + "codePostal": "38840", + "codeCommune": "38370", + "libelleAcheminement": "ST BONNET DE CHAVAGNE", + "nomCommune": "ST BONNET DE CHAVAGNE" }, { - "codePostal": "31510", - "codeCommune": "31009", - "libelleAcheminement": "ANTICHAN DE FRONTIGNES", - "nomCommune": "ANTICHAN DE FRONTIGNES" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "56140", - "codeCommune": "56159", - "libelleAcheminement": "PLEUCADEUC", - "nomCommune": "PLEUCADEUC" + "codePostal": "28700", + "codeCommune": "28129", + "libelleAcheminement": "DENONVILLE", + "nomCommune": "DENONVILLE" }, { - "codePostal": "01560", - "codeCommune": "01433", - "libelleAcheminement": "VERNOUX", - "nomCommune": "VERNOUX" + "codePostal": "38190", + "codeCommune": "38547", + "libelleAcheminement": "VILLARD BONNOT", + "nomCommune": "VILLARD BONNOT" }, { - "codePostal": "63340", - "codeCommune": "63209", - "libelleAcheminement": "MAREUGHEOL", - "nomCommune": "MAREUGHEOL" + "codePostal": "38620", + "codeCommune": "38372", + "libelleAcheminement": "ST BUEIL", + "nomCommune": "ST BUEIL" }, { - "codePostal": "31210", - "codeCommune": "31013", - "libelleAcheminement": "ARDIEGE", - "nomCommune": "ARDIEGE" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "56310", - "codeCommune": "56173", - "libelleAcheminement": "PLUMELIAU BIEUZY", - "nomCommune": "PLUMELIAU BIEUZY" + "codePostal": "28200", + "codeCommune": "28132", + "libelleAcheminement": "DONNEMAIN ST MAMES", + "nomCommune": "DONNEMAIN ST MAMES" }, { - "codePostal": "01330", - "codeCommune": "01434", - "libelleAcheminement": "VERSAILLEUX", - "nomCommune": "VERSAILLEUX" + "codePostal": "38250", + "codeCommune": "38548", + "libelleAcheminement": "VILLARD DE LANS", + "nomCommune": "VILLARD DE LANS" }, { - "codePostal": "63720", - "codeCommune": "63215", - "libelleAcheminement": "MARTRES SUR MORGE", - "nomCommune": "MARTRES SUR MORGE" + "codePostal": "38110", + "codeCommune": "38377", + "libelleAcheminement": "ST CLAIR DE LA TOUR", + "nomCommune": "ST CLAIR DE LA TOUR" }, { - "codePostal": "31160", - "codeCommune": "31014", - "libelleAcheminement": "ARGUENOS", - "nomCommune": "ARGUENOS" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "56330", - "codeCommune": "56177", - "libelleAcheminement": "PLUVIGNER", - "nomCommune": "PLUVIGNER" + "codePostal": "28500", + "codeCommune": "28136", + "libelleAcheminement": "ECLUZELLES", + "nomCommune": "ECLUZELLES" }, { - "codePostal": "01560", - "codeCommune": "01437", - "libelleAcheminement": "VESCOURS", - "nomCommune": "VESCOURS" + "codePostal": "38114", + "codeCommune": "38550", + "libelleAcheminement": "VILLARD RECULAS", + "nomCommune": "VILLARD RECULAS" }, { - "codePostal": "63560", - "codeCommune": "63223", - "libelleAcheminement": "MENAT", - "nomCommune": "MENAT" + "codePostal": "38940", + "codeCommune": "38379", + "libelleAcheminement": "ST CLAIR SUR GALAURE", + "nomCommune": "ST CLAIR SUR GALAURE" }, { - "codePostal": "31110", - "codeCommune": "31019", - "libelleAcheminement": "ARTIGUE", - "nomCommune": "ARTIGUE" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "56300", - "codeCommune": "56178", - "libelleAcheminement": "PONTIVY", - "nomCommune": "PONTIVY" + "codePostal": "28330", + "codeCommune": "28144", + "libelleAcheminement": "LES ETILLEUX", + "nomCommune": "LES ETILLEUX" }, { - "codePostal": "01570", - "codeCommune": "01439", - "libelleAcheminement": "VESINES", - "nomCommune": "VESINES" + "codePostal": "38440", + "codeCommune": "38555", + "libelleAcheminement": "VILLENEUVE DE MARC", + "nomCommune": "VILLENEUVE DE MARC" }, { - "codePostal": "63750", - "codeCommune": "63225", - "libelleAcheminement": "MESSEIX", - "nomCommune": "MESSEIX" + "codePostal": "38590", + "codeCommune": "38384", + "libelleAcheminement": "ST ETIENNE DE ST GEOIRS", + "nomCommune": "ST ETIENNE DE ST GEOIRS" }, { - "codePostal": "31800", - "codeCommune": "31021", - "libelleAcheminement": "ASPRET SARRAT", - "nomCommune": "ASPRET SARRAT" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "56620", - "codeCommune": "56179", - "libelleAcheminement": "PONT SCORFF", - "nomCommune": "PONT SCORFF" + "codePostal": "28210", + "codeCommune": "28146", + "libelleAcheminement": "FAVEROLLES", + "nomCommune": "FAVEROLLES" }, { - "codePostal": "01430", - "codeCommune": "01441", - "libelleAcheminement": "VIEU D IZENAVE", - "nomCommune": "VIEU D IZENAVE" + "codePostal": "38730", + "codeCommune": "38560", + "libelleAcheminement": "VAL DE VIRIEU", + "nomCommune": "VAL DE VIRIEU" }, { - "codePostal": "63111", - "codeCommune": "63226", - "libelleAcheminement": "MUR SUR ALLIER", - "nomCommune": "MUR SUR ALLIER" + "codePostal": "38620", + "codeCommune": "38386", + "libelleAcheminement": "ST GEOIRE EN VALDAINE", + "nomCommune": "ST GEOIRE EN VALDAINE" }, { - "codePostal": "31420", - "codeCommune": "31023", - "libelleAcheminement": "AULON", - "nomCommune": "AULON" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "56500", - "codeCommune": "56190", - "libelleAcheminement": "REGUINY", - "nomCommune": "REGUINY" + "codePostal": "28190", + "codeCommune": "28154", + "libelleAcheminement": "FONTAINE LA GUYON", + "nomCommune": "FONTAINE LA GUYON" }, { - "codePostal": "01800", - "codeCommune": "01450", - "libelleAcheminement": "VILLIEU LOYES MOLLON", - "nomCommune": "VILLIEU LOYES MOLLON" + "codePostal": "38210", + "codeCommune": "38566", + "libelleAcheminement": "VOUREY", + "nomCommune": "VOUREY" }, { - "codePostal": "63380", - "codeCommune": "63228", - "libelleAcheminement": "MIREMONT", - "nomCommune": "MIREMONT" + "codePostal": "38470", + "codeCommune": "38390", + "libelleAcheminement": "ST GERVAIS", + "nomCommune": "ST GERVAIS" }, { - "codePostal": "31460", - "codeCommune": "31026", - "libelleAcheminement": "AURIAC SUR VENDINELLE", - "nomCommune": "AURIAC SUR VENDINELLE" + "codePostal": "27110", + "codeCommune": "27201", + "libelleAcheminement": "DAUBEUF LA CAMPAGNE", + "nomCommune": "DAUBEUF LA CAMPAGNE" }, { - "codePostal": "56670", - "codeCommune": "56193", - "libelleAcheminement": "RIANTEC", - "nomCommune": "RIANTEC" + "codePostal": "28170", + "codeCommune": "28155", + "libelleAcheminement": "FONTAINE LES RIBOUTS", + "nomCommune": "FONTAINE LES RIBOUTS" }, { - "codePostal": "01300", - "codeCommune": "01454", - "libelleAcheminement": "VIRIGNIN", - "nomCommune": "VIRIGNIN" + "codePostal": "38410", + "codeCommune": "38567", + "libelleAcheminement": "CHAMROUSSE", + "nomCommune": "CHAMROUSSE" }, { - "codePostal": "63650", - "codeCommune": "63231", - "libelleAcheminement": "LA MONNERIE LE MONTEL", - "nomCommune": "LA MONNERIE LE MONTEL" + "codePostal": "38260", + "codeCommune": "38393", + "libelleAcheminement": "ST HILAIRE DE LA COTE", + "nomCommune": "ST HILAIRE DE LA COTE" }, { - "codePostal": "31850", - "codeCommune": "31053", - "libelleAcheminement": "BEAUPUY", - "nomCommune": "BEAUPUY" + "codePostal": "27320", + "codeCommune": "27206", + "libelleAcheminement": "DROISY", + "nomCommune": "DROISY" }, { - "codePostal": "56350", - "codeCommune": "56194", - "libelleAcheminement": "RIEUX", - "nomCommune": "RIEUX" + "codePostal": "28250", + "codeCommune": "28159", + "libelleAcheminement": "LA FRAMBOISIERE", + "nomCommune": "LA FRAMBOISIERE" }, { - "codePostal": "01350", - "codeCommune": "01456", - "libelleAcheminement": "VONGNES", - "nomCommune": "VONGNES" + "codePostal": "39800", + "codeCommune": "39003", + "libelleAcheminement": "ABERGEMENT LE PETIT", + "nomCommune": "ABERGEMENT LE PETIT" }, { - "codePostal": "63114", - "codeCommune": "63241", - "libelleAcheminement": "MONTPEYROUX", - "nomCommune": "MONTPEYROUX" + "codePostal": "38330", + "codeCommune": "38397", + "libelleAcheminement": "ST ISMIER", + "nomCommune": "ST ISMIER" }, { - "codePostal": "31460", - "codeCommune": "31055", - "libelleAcheminement": "BEAUVILLE", - "nomCommune": "BEAUVILLE" + "codePostal": "27170", + "codeCommune": "27210", + "libelleAcheminement": "ECARDENVILLE LA CAMPAGNE", + "nomCommune": "ECARDENVILLE LA CAMPAGNE" }, { - "codePostal": "56110", - "codeCommune": "56201", - "libelleAcheminement": "LE SAINT", - "nomCommune": "LE SAINT" + "codePostal": "28360", + "codeCommune": "28162", + "libelleAcheminement": "FRESNAY LE COMTE", + "nomCommune": "FRESNAY LE COMTE" }, { - "codePostal": "02200", - "codeCommune": "02003", - "libelleAcheminement": "ACY", - "nomCommune": "ACY" + "codePostal": "39110", + "codeCommune": "39004", + "libelleAcheminement": "ABERGEMENT LES THESY", + "nomCommune": "ABERGEMENT LES THESY" }, { - "codePostal": "63160", - "codeCommune": "63252", - "libelleAcheminement": "NEUVILLE", - "nomCommune": "NEUVILLE" + "codePostal": "38710", + "codeCommune": "38403", + "libelleAcheminement": "ST JEAN D HERANS", + "nomCommune": "ST JEAN D HERANS" }, { - "codePostal": "31450", - "codeCommune": "31057", - "libelleAcheminement": "BELBERAUD", - "nomCommune": "BELBERAUD" + "codePostal": "27510", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "56140", - "codeCommune": "56211", - "libelleAcheminement": "ST CONGARD", - "nomCommune": "ST CONGARD" + "codePostal": "28320", + "codeCommune": "28168", + "libelleAcheminement": "GALLARDON", + "nomCommune": "GALLARDON" }, { - "codePostal": "02190", - "codeCommune": "02005", - "libelleAcheminement": "AGUILCOURT", - "nomCommune": "AGUILCOURT" + "codePostal": "39700", + "codeCommune": "39008", + "libelleAcheminement": "AMANGE", + "nomCommune": "AMANGE" }, { - "codePostal": "63450", - "codeCommune": "63259", - "libelleAcheminement": "OLLOIX", - "nomCommune": "OLLOIX" + "codePostal": "38420", + "codeCommune": "38404", + "libelleAcheminement": "ST JEAN LE VIEUX", + "nomCommune": "ST JEAN LE VIEUX" }, { - "codePostal": "31260", - "codeCommune": "31059", - "libelleAcheminement": "BELBEZE EN COMMINGES", - "nomCommune": "BELBEZE EN COMMINGES" + "codePostal": "27630", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "56430", - "codeCommune": "56225", - "libelleAcheminement": "ST LERY", - "nomCommune": "ST LERY" + "codePostal": "28300", + "codeCommune": "28173", + "libelleAcheminement": "GASVILLE OISEME", + "nomCommune": "GASVILLE OISEME" }, { - "codePostal": "02320", - "codeCommune": "02018", - "libelleAcheminement": "ANIZY LE GRAND", - "nomCommune": "ANIZY LE GRAND" + "codePostal": "39290", + "codeCommune": "39014", + "libelleAcheminement": "ARCHELANGE", + "nomCommune": "ARCHELANGE" }, { - "codePostal": "63880", - "codeCommune": "63260", - "libelleAcheminement": "OLMET", - "nomCommune": "OLMET" + "codePostal": "38160", + "codeCommune": "38416", + "libelleAcheminement": "ST MARCELLIN", + "nomCommune": "ST MARCELLIN" }, { - "codePostal": "31390", - "codeCommune": "31071", - "libelleAcheminement": "BOIS DE LA PIERRE", - "nomCommune": "BOIS DE LA PIERRE" + "codePostal": "27150", + "codeCommune": "27226", + "libelleAcheminement": "ETREPAGNY", + "nomCommune": "ETREPAGNY" }, { - "codePostal": "56350", - "codeCommune": "56232", - "libelleAcheminement": "ST PERREUX", - "nomCommune": "ST PERREUX" + "codePostal": "28630", + "codeCommune": "28177", + "libelleAcheminement": "GELLAINVILLE", + "nomCommune": "GELLAINVILLE" }, { - "codePostal": "02130", - "codeCommune": "02022", - "libelleAcheminement": "ARCY STE RESTITUE", - "nomCommune": "ARCY STE RESTITUE" + "codePostal": "39240", + "codeCommune": "39018", + "libelleAcheminement": "AROMAS", + "nomCommune": "AROMAS" }, { - "codePostal": "63210", - "codeCommune": "63264", - "libelleAcheminement": "ORCIVAL", - "nomCommune": "ORCIVAL" + "codePostal": "38660", + "codeCommune": "38418", + "libelleAcheminement": "STE MARIE DU MONT", + "nomCommune": "STE MARIE DU MONT" }, { - "codePostal": "31580", - "codeCommune": "31078", - "libelleAcheminement": "BOUDRAC", - "nomCommune": "BOUDRAC" + "codePostal": "27530", + "codeCommune": "27230", + "libelleAcheminement": "EZY SUR EURE", + "nomCommune": "EZY SUR EURE" }, { - "codePostal": "56250", - "codeCommune": "56247", - "libelleAcheminement": "SULNIAC", - "nomCommune": "SULNIAC" + "codePostal": "28500", + "codeCommune": "28178", + "libelleAcheminement": "GERMAINVILLE", + "nomCommune": "GERMAINVILLE" }, { - "codePostal": "02270", - "codeCommune": "02027", - "libelleAcheminement": "ASSIS SUR SERRE", - "nomCommune": "ASSIS SUR SERRE" + "codePostal": "39120", + "codeCommune": "39022", + "libelleAcheminement": "ASNANS BEAUVOISIN", + "nomCommune": "ASNANS BEAUVOISIN" }, { - "codePostal": "63270", - "codeCommune": "63269", - "libelleAcheminement": "PARENT", - "nomCommune": "PARENT" + "codePostal": "38930", + "codeCommune": "38424", + "libelleAcheminement": "ST MAURICE EN TRIEVES", + "nomCommune": "ST MAURICE EN TRIEVES" }, { - "codePostal": "31110", - "codeCommune": "31081", - "libelleAcheminement": "BOURG D OUEIL", - "nomCommune": "BOURG D OUEIL" + "codePostal": "27930", + "codeCommune": "27234", + "libelleAcheminement": "FAUVILLE", + "nomCommune": "FAUVILLE" }, { - "codePostal": "56450", - "codeCommune": "56248", - "libelleAcheminement": "SURZUR", - "nomCommune": "SURZUR" + "codePostal": "28260", + "codeCommune": "28180", + "libelleAcheminement": "GILLES", + "nomCommune": "GILLES" }, { - "codePostal": "02420", - "codeCommune": "02030", - "libelleAcheminement": "AUBENCHEUL AUX BOIS", - "nomCommune": "AUBENCHEUL AUX BOIS" + "codePostal": "39120", + "codeCommune": "39022", + "libelleAcheminement": "ASNANS BEAUVOISIN", + "nomCommune": "ASNANS BEAUVOISIN" }, { - "codePostal": "63170", - "codeCommune": "63272", - "libelleAcheminement": "PERIGNAT LES SARLIEVE", - "nomCommune": "PERIGNAT LES SARLIEVE" + "codePostal": "38590", + "codeCommune": "38427", + "libelleAcheminement": "ST MICHEL DE ST GEOIRS", + "nomCommune": "ST MICHEL DE ST GEOIRS" }, { - "codePostal": "31360", - "codeCommune": "31084", - "libelleAcheminement": "BOUSSENS", - "nomCommune": "BOUSSENS" + "codePostal": "27110", + "codeCommune": "27241", + "libelleAcheminement": "FEUGUEROLLES", + "nomCommune": "FEUGUEROLLES" }, { - "codePostal": "56370", - "codeCommune": "56252", - "libelleAcheminement": "LE TOUR DU PARC", - "nomCommune": "LE TOUR DU PARC" + "codePostal": "28700", + "codeCommune": "28188", + "libelleAcheminement": "LE GUE DE LONGROI", + "nomCommune": "LE GUE DE LONGROI" }, { - "codePostal": "02300", - "codeCommune": "02041", - "libelleAcheminement": "AUTREVILLE", - "nomCommune": "AUTREVILLE" + "codePostal": "39700", + "codeCommune": "39024", + "libelleAcheminement": "AUDELANGE", + "nomCommune": "AUDELANGE" }, { - "codePostal": "63380", - "codeCommune": "63283", - "libelleAcheminement": "PONTAUMUR", - "nomCommune": "PONTAUMUR" + "codePostal": "38190", + "codeCommune": "38430", + "libelleAcheminement": "ST MURY MONTEYMOND", + "nomCommune": "ST MURY MONTEYMOND" }, { - "codePostal": "31440", - "codeCommune": "31085", - "libelleAcheminement": "BOUTX", - "nomCommune": "BOUTX" + "codePostal": "27600", + "codeCommune": "27249", + "libelleAcheminement": "FONTAINE BELLENGER", + "nomCommune": "FONTAINE BELLENGER" }, { - "codePostal": "56400", - "codeCommune": "56263", - "libelleAcheminement": "STE ANNE D AURAY", - "nomCommune": "STE ANNE D AURAY" + "codePostal": "28130", + "codeCommune": "28191", + "libelleAcheminement": "HANCHES", + "nomCommune": "HANCHES" }, { - "codePostal": "02000", - "codeCommune": "02047", - "libelleAcheminement": "BARENTON CEL", - "nomCommune": "BARENTON CEL" + "codePostal": "39380", + "codeCommune": "39026", + "libelleAcheminement": "AUGERANS", + "nomCommune": "AUGERANS" }, { - "codePostal": "63470", - "codeCommune": "63289", - "libelleAcheminement": "PRONDINES", - "nomCommune": "PRONDINES" + "codePostal": "38250", + "codeCommune": "38433", + "libelleAcheminement": "ST NIZIER DU MOUCHEROTTE", + "nomCommune": "ST NIZIER DU MOUCHEROTTE" }, { - "codePostal": "31490", - "codeCommune": "31088", - "libelleAcheminement": "BRAX", - "nomCommune": "BRAX" + "codePostal": "27220", + "codeCommune": "27271", + "libelleAcheminement": "FRESNEY", + "nomCommune": "FRESNEY" }, { - "codePostal": "56540", - "codeCommune": "56264", - "libelleAcheminement": "KERNASCLEDEN", - "nomCommune": "KERNASCLEDEN" + "codePostal": "28310", + "codeCommune": "28199", + "libelleAcheminement": "JANVILLE EN BEAUCE", + "nomCommune": "JANVILLE EN BEAUCE" }, { - "codePostal": "02850", - "codeCommune": "02051", - "libelleAcheminement": "BARZY SUR MARNE", - "nomCommune": "BARZY SUR MARNE" + "codePostal": "39160", + "codeCommune": "39035", + "libelleAcheminement": "BALANOD", + "nomCommune": "BALANOD" }, { - "codePostal": "63290", - "codeCommune": "63301", - "libelleAcheminement": "RIS", - "nomCommune": "RIS" + "codePostal": "38870", + "codeCommune": "38440", + "libelleAcheminement": "ST PIERRE DE BRESSIEUX", + "nomCommune": "ST PIERRE DE BRESSIEUX" }, { - "codePostal": "31420", - "codeCommune": "31109", - "libelleAcheminement": "CASSAGNABERE TOURNAS", - "nomCommune": "CASSAGNABERE TOURNAS" + "codePostal": "27620", + "codeCommune": "27279", + "libelleAcheminement": "GASNY", + "nomCommune": "GASNY" }, { - "codePostal": "57560", - "codeCommune": "57003", - "libelleAcheminement": "ABRESCHVILLER", - "nomCommune": "ABRESCHVILLER" + "codePostal": "28340", + "codeCommune": "28202", + "libelleAcheminement": "LAMBLORE", + "nomCommune": "LAMBLORE" }, { - "codePostal": "02330", - "codeCommune": "02053", - "libelleAcheminement": "VALLEES EN CHAMPAGNE", - "nomCommune": "VALLEES EN CHAMPAGNE" + "codePostal": "39700", + "codeCommune": "39039", + "libelleAcheminement": "LA BARRE", + "nomCommune": "LA BARRE" }, { - "codePostal": "63210", - "codeCommune": "63305", - "libelleAcheminement": "ROCHEFORT MONTAGNE", - "nomCommune": "ROCHEFORT MONTAGNE" + "codePostal": "38070", + "codeCommune": "38449", + "libelleAcheminement": "ST QUENTIN FALLAVIER", + "nomCommune": "ST QUENTIN FALLAVIER" }, { - "codePostal": "31320", - "codeCommune": "31113", - "libelleAcheminement": "CASTANET TOLOSAN", - "nomCommune": "CASTANET TOLOSAN" + "codePostal": "27290", + "codeCommune": "27288", + "libelleAcheminement": "GLOS SUR RISLE", + "nomCommune": "GLOS SUR RISLE" }, { - "codePostal": "57340", - "codeCommune": "57004", - "libelleAcheminement": "ACHAIN", - "nomCommune": "ACHAIN" + "codePostal": "28190", + "codeCommune": "28203", + "libelleAcheminement": "LANDELLES", + "nomCommune": "LANDELLES" }, { - "codePostal": "02160", - "codeCommune": "02058", - "libelleAcheminement": "BEAURIEUX", - "nomCommune": "BEAURIEUX" + "codePostal": "39570", + "codeCommune": "39041", + "libelleAcheminement": "BAUME LES MESSIEURS", + "nomCommune": "BAUME LES MESSIEURS" }, { - "codePostal": "63540", - "codeCommune": "63307", - "libelleAcheminement": "ROMAGNAT", - "nomCommune": "ROMAGNAT" + "codePostal": "38070", + "codeCommune": "38449", + "libelleAcheminement": "ST QUENTIN FALLAVIER", + "nomCommune": "ST QUENTIN FALLAVIER" }, { - "codePostal": "31160", - "codeCommune": "31114", - "libelleAcheminement": "CASTELBIAGUE", - "nomCommune": "CASTELBIAGUE" + "codePostal": "27930", + "codeCommune": "27299", + "libelleAcheminement": "GRAVIGNY", + "nomCommune": "GRAVIGNY" }, { - "codePostal": "57580", - "codeCommune": "57007", - "libelleAcheminement": "ADAINCOURT", - "nomCommune": "ADAINCOURT" + "codePostal": "28200", + "codeCommune": "28211", + "libelleAcheminement": "LOGRON", + "nomCommune": "LOGRON" }, { - "codePostal": "02200", - "codeCommune": "02064", - "libelleAcheminement": "BELLEU", - "nomCommune": "BELLEU" + "codePostal": "39800", + "codeCommune": "39049", + "libelleAcheminement": "BERSAILLIN", + "nomCommune": "BERSAILLIN" }, { - "codePostal": "63540", - "codeCommune": "63307", - "libelleAcheminement": "ROMAGNAT", - "nomCommune": "ROMAGNAT" + "codePostal": "38210", + "codeCommune": "38450", + "libelleAcheminement": "ST QUENTIN SUR ISERE", + "nomCommune": "ST QUENTIN SUR ISERE" }, { - "codePostal": "31180", - "codeCommune": "31117", - "libelleAcheminement": "CASTELMAUROU", - "nomCommune": "CASTELMAUROU" + "codePostal": "27220", + "codeCommune": "27301", + "libelleAcheminement": "GROSSOEUVRE", + "nomCommune": "GROSSOEUVRE" }, { - "codePostal": "57170", - "codeCommune": "57018", - "libelleAcheminement": "AMELECOURT", - "nomCommune": "AMELECOURT" + "codePostal": "28140", + "codeCommune": "28212", + "libelleAcheminement": "LOIGNY LA BATAILLE", + "nomCommune": "LOIGNY LA BATAILLE" }, { - "codePostal": "02250", - "codeCommune": "02068", - "libelleAcheminement": "BERLANCOURT", - "nomCommune": "BERLANCOURT" + "codePostal": "39800", + "codeCommune": "39054", + "libelleAcheminement": "BIEFMORIN", + "nomCommune": "BIEFMORIN" }, { - "codePostal": "63130", - "codeCommune": "63308", - "libelleAcheminement": "ROYAT", - "nomCommune": "ROYAT" + "codePostal": "38460", + "codeCommune": "38451", + "libelleAcheminement": "ST ROMAIN DE JALIONAS", + "nomCommune": "ST ROMAIN DE JALIONAS" }, { - "codePostal": "31110", - "codeCommune": "31123", - "libelleAcheminement": "CASTILLON DE LARBOUST", - "nomCommune": "CASTILLON DE LARBOUST" + "codePostal": "27370", + "codeCommune": "27302", + "libelleAcheminement": "LE BOSC DU THEIL", + "nomCommune": "LE BOSC DU THEIL" }, { - "codePostal": "57320", - "codeCommune": "57025", - "libelleAcheminement": "ANZELING", - "nomCommune": "ANZELING" + "codePostal": "28140", + "codeCommune": "28221", + "libelleAcheminement": "LUMEAU", + "nomCommune": "LUMEAU" }, { - "codePostal": "02290", - "codeCommune": "02071", - "libelleAcheminement": "BERNY RIVIERE", - "nomCommune": "BERNY RIVIERE" + "codePostal": "39130", + "codeCommune": "39058", + "libelleAcheminement": "BLYE", + "nomCommune": "BLYE" }, { - "codePostal": "63840", - "codeCommune": "63309", - "libelleAcheminement": "SAILLANT", - "nomCommune": "SAILLANT" + "codePostal": "38150", + "codeCommune": "38452", + "libelleAcheminement": "ST ROMAIN DE SURIEU", + "nomCommune": "ST ROMAIN DE SURIEU" }, { - "codePostal": "31160", - "codeCommune": "31131", - "libelleAcheminement": "CAZAUNOUS", - "nomCommune": "CAZAUNOUS" + "codePostal": "27150", + "codeCommune": "27324", + "libelleAcheminement": "HEBECOURT", + "nomCommune": "HEBECOURT" }, { - "codePostal": "57130", - "codeCommune": "57032", - "libelleAcheminement": "ARS SUR MOSELLE", - "nomCommune": "ARS SUR MOSELLE" + "codePostal": "28170", + "codeCommune": "28226", + "libelleAcheminement": "MAILLEBOIS", + "nomCommune": "MAILLEBOIS" }, { - "codePostal": "02200", - "codeCommune": "02077", - "libelleAcheminement": "BERZY LE SEC", - "nomCommune": "BERZY LE SEC" + "codePostal": "39220", + "codeCommune": "39059", + "libelleAcheminement": "BOIS D AMONT", + "nomCommune": "BOIS D AMONT" }, { - "codePostal": "63120", - "codeCommune": "63310", - "libelleAcheminement": "STE AGATHE", - "nomCommune": "STE AGATHE" + "codePostal": "38160", + "codeCommune": "38454", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "31220", - "codeCommune": "31135", - "libelleAcheminement": "CAZERES", - "nomCommune": "CAZERES" + "codePostal": "27110", + "codeCommune": "27327", + "libelleAcheminement": "HECTOMARE", + "nomCommune": "HECTOMARE" }, { - "codePostal": "57170", - "codeCommune": "57036", - "libelleAcheminement": "ATTILLONCOURT", - "nomCommune": "ATTILLONCOURT" + "codePostal": "28400", + "codeCommune": "28236", + "libelleAcheminement": "ARCISSES", + "nomCommune": "ARCISSES" }, { - "codePostal": "02300", - "codeCommune": "02086", - "libelleAcheminement": "BICHANCOURT", - "nomCommune": "BICHANCOURT" + "codePostal": "39230", + "codeCommune": "39060", + "libelleAcheminement": "BOIS DE GAND", + "nomCommune": "BOIS DE GAND" }, { - "codePostal": "63220", - "codeCommune": "63312", - "libelleAcheminement": "ST ALYRE D ARLANC", - "nomCommune": "ST ALYRE D ARLANC" + "codePostal": "38200", + "codeCommune": "38459", + "libelleAcheminement": "ST SORLIN DE VIENNE", + "nomCommune": "ST SORLIN DE VIENNE" }, { - "codePostal": "31510", - "codeCommune": "31143", - "libelleAcheminement": "CIER DE RIVIERE", - "nomCommune": "CIER DE RIVIERE" + "codePostal": "27630", + "codeCommune": "27331", + "libelleAcheminement": "HEUBECOURT HARICOURT", + "nomCommune": "HEUBECOURT HARICOURT" }, { - "codePostal": "57685", - "codeCommune": "57039", - "libelleAcheminement": "AUGNY", - "nomCommune": "AUGNY" + "codePostal": "28400", + "codeCommune": "28237", + "libelleAcheminement": "MAROLLES LES BUIS", + "nomCommune": "MAROLLES LES BUIS" }, { - "codePostal": "02160", - "codeCommune": "02091", - "libelleAcheminement": "BLANZY LES FISMES", - "nomCommune": "BLANZY LES FISMES" + "codePostal": "39240", + "codeCommune": "39062", + "libelleAcheminement": "LA BOISSIERE", + "nomCommune": "LA BOISSIERE" }, { - "codePostal": "63890", - "codeCommune": "63314", - "libelleAcheminement": "ST AMANT ROCHE SAVINE", - "nomCommune": "ST AMANT ROCHE SAVINE" + "codePostal": "38620", + "codeCommune": "38460", + "libelleAcheminement": "ST SULPICE DES RIVOIRES", + "nomCommune": "ST SULPICE DES RIVOIRES" }, { - "codePostal": "31440", - "codeCommune": "31144", - "libelleAcheminement": "CIERP GAUD", - "nomCommune": "CIERP GAUD" + "codePostal": "27600", + "codeCommune": "27332", + "libelleAcheminement": "HEUDEBOUVILLE", + "nomCommune": "HEUDEBOUVILLE" }, { - "codePostal": "57810", - "codeCommune": "57042", - "libelleAcheminement": "AVRICOURT", - "nomCommune": "AVRICOURT" + "codePostal": "28500", + "codeCommune": "28239", + "libelleAcheminement": "MARVILLE MOUTIERS BRULE", + "nomCommune": "MARVILLE MOUTIERS BRULE" }, { - "codePostal": "02220", - "codeCommune": "02120", - "libelleAcheminement": "BRENELLE", - "nomCommune": "BRENELLE" + "codePostal": "39800", + "codeCommune": "39065", + "libelleAcheminement": "BONNEFONTAINE", + "nomCommune": "BONNEFONTAINE" }, { - "codePostal": "63630", - "codeCommune": "63324", - "libelleAcheminement": "ST BONNET LE CHASTEL", - "nomCommune": "ST BONNET LE CHASTEL" + "codePostal": "38110", + "codeCommune": "38464", + "libelleAcheminement": "ST VICTOR DE CESSIEU", + "nomCommune": "ST VICTOR DE CESSIEU" }, { - "codePostal": "31700", - "codeCommune": "31150", - "libelleAcheminement": "CORNEBARRIEU", - "nomCommune": "CORNEBARRIEU" + "codePostal": "27400", + "codeCommune": "27335", + "libelleAcheminement": "HEUDREVILLE SUR EURE", + "nomCommune": "HEUDREVILLE SUR EURE" }, { - "codePostal": "57050", - "codeCommune": "57049", - "libelleAcheminement": "LE BAN ST MARTIN", - "nomCommune": "LE BAN ST MARTIN" + "codePostal": "28120", + "codeCommune": "28245", + "libelleAcheminement": "MESLAY LE GRENET", + "nomCommune": "MESLAY LE GRENET" }, { - "codePostal": "02870", - "codeCommune": "02122", - "libelleAcheminement": "BRIE", - "nomCommune": "BRIE" + "codePostal": "39290", + "codeCommune": "39074", + "libelleAcheminement": "BRANS", + "nomCommune": "BRANS" }, { - "codePostal": "63580", - "codeCommune": "63328", - "libelleAcheminement": "STE CATHERINE", - "nomCommune": "STE CATHERINE" + "codePostal": "38890", + "codeCommune": "38467", + "libelleAcheminement": "SALAGNON", + "nomCommune": "SALAGNON" }, { - "codePostal": "31450", - "codeCommune": "31151", - "libelleAcheminement": "CORRONSAC", - "nomCommune": "CORRONSAC" + "codePostal": "27290", + "codeCommune": "27349", + "libelleAcheminement": "ILLEVILLE SUR MONTFORT", + "nomCommune": "ILLEVILLE SUR MONTFORT" }, { - "codePostal": "57580", - "codeCommune": "57057", - "libelleAcheminement": "BECHY", - "nomCommune": "BECHY" + "codePostal": "28260", + "codeCommune": "28247", + "libelleAcheminement": "LE MESNIL SIMON", + "nomCommune": "LE MESNIL SIMON" }, { - "codePostal": "02240", - "codeCommune": "02124", - "libelleAcheminement": "BRISSY HAMEGICOURT", - "nomCommune": "BRISSY HAMEGICOURT" + "codePostal": "39100", + "codeCommune": "39078", + "libelleAcheminement": "BREVANS", + "nomCommune": "BREVANS" }, { - "codePostal": "63310", - "codeCommune": "63333", - "libelleAcheminement": "ST DENIS COMBARNAZAT", - "nomCommune": "ST DENIS COMBARNAZAT" + "codePostal": "38290", + "codeCommune": "38475", + "libelleAcheminement": "SATOLAS ET BONCE", + "nomCommune": "SATOLAS ET BONCE" }, { - "codePostal": "31480", - "codeCommune": "31156", - "libelleAcheminement": "COX", - "nomCommune": "COX" + "codePostal": "27250", + "codeCommune": "27359", + "libelleAcheminement": "JUIGNETTES", + "nomCommune": "JUIGNETTES" }, { - "codePostal": "57460", - "codeCommune": "57058", - "libelleAcheminement": "BEHREN LES FORBACH", - "nomCommune": "BEHREN LES FORBACH" + "codePostal": "28630", + "codeCommune": "28253", + "libelleAcheminement": "MIGNIERES", + "nomCommune": "MIGNIERES" }, { - "codePostal": "02810", - "codeCommune": "02125", - "libelleAcheminement": "BRUMETZ", - "nomCommune": "BRUMETZ" + "codePostal": "39570", + "codeCommune": "39079", + "libelleAcheminement": "BRIOD", + "nomCommune": "BRIOD" }, { - "codePostal": "63700", - "codeCommune": "63338", - "libelleAcheminement": "ST ELOY LES MINES", - "nomCommune": "ST ELOY LES MINES" + "codePostal": "38290", + "codeCommune": "38475", + "libelleAcheminement": "SATOLAS ET BONCE", + "nomCommune": "SATOLAS ET BONCE" }, { - "codePostal": "31160", - "codeCommune": "31174", - "libelleAcheminement": "ESTADENS", - "nomCommune": "ESTADENS" + "codePostal": "27210", + "codeCommune": "27361", + "libelleAcheminement": "LA LANDE ST LEGER", + "nomCommune": "LA LANDE ST LEGER" }, { - "codePostal": "57800", - "codeCommune": "57061", - "libelleAcheminement": "BENING LES ST AVOLD", - "nomCommune": "BENING LES ST AVOLD" + "codePostal": "28700", + "codeCommune": "28255", + "libelleAcheminement": "MOINVILLE LA JEULIN", + "nomCommune": "MOINVILLE LA JEULIN" }, { - "codePostal": "02870", - "codeCommune": "02132", - "libelleAcheminement": "BUCY LES CERNY", - "nomCommune": "BUCY LES CERNY" + "codePostal": "39320", + "codeCommune": "39080", + "libelleAcheminement": "BROISSIA", + "nomCommune": "BROISSIA" }, { - "codePostal": "63320", - "codeCommune": "63342", - "libelleAcheminement": "ST FLORET", - "nomCommune": "ST FLORET" + "codePostal": "38260", + "codeCommune": "38479", + "libelleAcheminement": "PORTE DES BONNEVAUX", + "nomCommune": "PORTE DES BONNEVAUX" }, { - "codePostal": "31260", - "codeCommune": "31183", - "libelleAcheminement": "FIGAROL", - "nomCommune": "FIGAROL" + "codePostal": "27470", + "codeCommune": "27364", + "libelleAcheminement": "LAUNAY", + "nomCommune": "LAUNAY" }, { - "codePostal": "57370", - "codeCommune": "57064", - "libelleAcheminement": "BERLING", - "nomCommune": "BERLING" + "codePostal": "28700", + "codeCommune": "28257", + "libelleAcheminement": "MONDONVILLE ST JEAN", + "nomCommune": "MONDONVILLE ST JEAN" }, { - "codePostal": "02500", - "codeCommune": "02134", - "libelleAcheminement": "BUIRE", - "nomCommune": "BUIRE" + "codePostal": "39120", + "codeCommune": "39090", + "libelleAcheminement": "CHAINEE DES COUPIS", + "nomCommune": "CHAINEE DES COUPIS" }, { - "codePostal": "63440", - "codeCommune": "63344", - "libelleAcheminement": "ST GAL SUR SIOULE", - "nomCommune": "ST GAL SUR SIOULE" + "codePostal": "38780", + "codeCommune": "38480", + "libelleAcheminement": "SEPTEME", + "nomCommune": "SEPTEME" }, { - "codePostal": "31290", - "codeCommune": "31185", - "libelleAcheminement": "FOLCARDE", - "nomCommune": "FOLCARDE" + "codePostal": "27650", + "codeCommune": "27376", + "libelleAcheminement": "LOUYE", + "nomCommune": "LOUYE" }, { - "codePostal": "57220", - "codeCommune": "57070", - "libelleAcheminement": "BETTANGE", - "nomCommune": "BETTANGE" + "codePostal": "28800", + "codeCommune": "28260", + "libelleAcheminement": "MONTHARVILLE", + "nomCommune": "MONTHARVILLE" }, { - "codePostal": "02200", - "codeCommune": "02138", - "libelleAcheminement": "BUZANCY", - "nomCommune": "BUZANCY" + "codePostal": "39600", + "codeCommune": "39095", + "libelleAcheminement": "CHAMPAGNE SUR LOUE", + "nomCommune": "CHAMPAGNE SUR LOUE" }, { - "codePostal": "63850", - "codeCommune": "63346", - "libelleAcheminement": "ST GENES CHAMPESPE", - "nomCommune": "ST GENES CHAMPESPE" + "codePostal": "38780", + "codeCommune": "38480", + "libelleAcheminement": "SEPTEME", + "nomCommune": "SEPTEME" }, { - "codePostal": "31470", - "codeCommune": "31187", - "libelleAcheminement": "FONSORBES", - "nomCommune": "FONSORBES" + "codePostal": "27480", + "codeCommune": "27377", + "libelleAcheminement": "LYONS LA FORET", + "nomCommune": "LYONS LA FORET" }, { - "codePostal": "57930", - "codeCommune": "57071", - "libelleAcheminement": "BETTBORN", - "nomCommune": "BETTBORN" + "codePostal": "28270", + "codeCommune": "28263", + "libelleAcheminement": "MONTIGNY SUR AVRE", + "nomCommune": "MONTIGNY SUR AVRE" }, { - "codePostal": "02260", - "codeCommune": "02141", - "libelleAcheminement": "LA CAPELLE", - "nomCommune": "LA CAPELLE" + "codePostal": "01590", + "codeCommune": "39102", + "libelleAcheminement": "CHANCIA", + "nomCommune": "CHANCIA" }, { - "codePostal": "63260", - "codeCommune": "63347", - "libelleAcheminement": "ST GENES DU RETZ", - "nomCommune": "ST GENES DU RETZ" + "codePostal": "38350", + "codeCommune": "38489", + "libelleAcheminement": "SIEVOZ", + "nomCommune": "SIEVOZ" }, { - "codePostal": "31550", - "codeCommune": "31206", - "libelleAcheminement": "GAILLAC TOULZA", - "nomCommune": "GAILLAC TOULZA" + "codePostal": "27460", + "codeCommune": "27386", + "libelleAcheminement": "LE MANOIR", + "nomCommune": "LE MANOIR" }, { - "codePostal": "57580", - "codeCommune": "57075", - "libelleAcheminement": "BEUX", - "nomCommune": "BEUX" + "codePostal": "28240", + "codeCommune": "28264", + "libelleAcheminement": "MONTIREAU", + "nomCommune": "MONTIREAU" }, { - "codePostal": "02490", - "codeCommune": "02144", - "libelleAcheminement": "CAULAINCOURT", - "nomCommune": "CAULAINCOURT" + "codePostal": "39700", + "codeCommune": "39121", + "libelleAcheminement": "CHATENOIS", + "nomCommune": "CHATENOIS" }, { - "codePostal": "63470", - "codeCommune": "63351", - "libelleAcheminement": "ST GERMAIN PRES HERMENT", - "nomCommune": "ST GERMAIN PRES HERMENT" + "codePostal": "38460", + "codeCommune": "38494", + "libelleAcheminement": "SOLEYMIEU", + "nomCommune": "SOLEYMIEU" }, { - "codePostal": "31160", - "codeCommune": "31208", - "libelleAcheminement": "GANTIES", - "nomCommune": "GANTIES" + "codePostal": "27390", + "codeCommune": "27395", + "libelleAcheminement": "MELICOURT", + "nomCommune": "MELICOURT" }, { - "codePostal": "57570", - "codeCommune": "57076", - "libelleAcheminement": "BEYREN LES SIERCK", - "nomCommune": "BEYREN LES SIERCK" + "codePostal": "28800", + "codeCommune": "28270", + "libelleAcheminement": "MORIERS", + "nomCommune": "MORIERS" }, { - "codePostal": "02860", - "codeCommune": "02150", - "libelleAcheminement": "CERNY EN LAONNOIS", - "nomCommune": "CERNY EN LAONNOIS" + "codePostal": "39150", + "codeCommune": "39130", + "libelleAcheminement": "NANCHEZ", + "nomCommune": "NANCHEZ" }, { - "codePostal": "63330", - "codeCommune": "63360", - "libelleAcheminement": "ST HILAIRE PRES PIONSAT", - "nomCommune": "ST HILAIRE" + "codePostal": "38350", + "codeCommune": "38499", + "libelleAcheminement": "SUSVILLE", + "nomCommune": "SUSVILLE" }, { - "codePostal": "31560", - "codeCommune": "31220", - "libelleAcheminement": "GIBEL", - "nomCommune": "GIBEL" + "codePostal": "27850", + "codeCommune": "27396", + "libelleAcheminement": "MENESQUEVILLE", + "nomCommune": "MENESQUEVILLE" }, { - "codePostal": "57410", - "codeCommune": "57083", - "libelleAcheminement": "BINING", - "nomCommune": "BINING" + "codePostal": "28340", + "codeCommune": "28271", + "libelleAcheminement": "MORVILLIERS", + "nomCommune": "MORVILLIERS" }, { - "codePostal": "02270", - "codeCommune": "02169", - "libelleAcheminement": "CHATILLON LES SONS", - "nomCommune": "CHATILLON LES SONS" + "codePostal": "39240", + "codeCommune": "39137", + "libelleAcheminement": "ST HYMETIERE SUR VALOUSE", + "nomCommune": "ST HYMETIERE SUR VALOUSE" }, { - "codePostal": "63580", - "codeCommune": "63376", - "libelleAcheminement": "ST MARTIN D OLLIERES", - "nomCommune": "ST MARTIN D OLLIERES" + "codePostal": "38110", + "codeCommune": "38509", + "libelleAcheminement": "LA TOUR DU PIN", + "nomCommune": "LA TOUR DU PIN" }, { - "codePostal": "31540", - "codeCommune": "31243", - "libelleAcheminement": "JUZES", - "nomCommune": "JUZES" + "codePostal": "27120", + "codeCommune": "27397", + "libelleAcheminement": "MENILLES", + "nomCommune": "MENILLES" }, { - "codePostal": "57930", - "codeCommune": "57086", - "libelleAcheminement": "BELLES FORETS", - "nomCommune": "BELLES FORETS" + "codePostal": "28160", + "codeCommune": "28272", + "libelleAcheminement": "MOTTEREAU", + "nomCommune": "MOTTEREAU" }, { - "codePostal": "02160", - "codeCommune": "02171", - "libelleAcheminement": "CHAUDARDES", - "nomCommune": "CHAUDARDES" + "codePostal": "39570", + "codeCommune": "39146", + "libelleAcheminement": "CHILLY LE VIGNOBLE", + "nomCommune": "CHILLY LE VIGNOBLE" }, { - "codePostal": "63330", - "codeCommune": "63377", - "libelleAcheminement": "ST MAURICE PRES PIONSAT", - "nomCommune": "ST MAURICE PRES PIONSAT" + "codePostal": "38300", + "codeCommune": "38512", + "libelleAcheminement": "TRAMOLE", + "nomCommune": "TRAMOLE" }, { - "codePostal": "31160", - "codeCommune": "31245", - "libelleAcheminement": "JUZET D IZAUT", - "nomCommune": "JUZET D IZAUT" + "codePostal": "27640", + "codeCommune": "27400", + "libelleAcheminement": "MEREY", + "nomCommune": "MEREY" }, { - "codePostal": "57230", - "codeCommune": "57089", - "libelleAcheminement": "BITCHE", - "nomCommune": "BITCHE" + "codePostal": "28310", + "codeCommune": "28276", + "libelleAcheminement": "NEUVY EN BEAUCE", + "nomCommune": "NEUVY EN BEAUCE" }, { - "codePostal": "02860", - "codeCommune": "02177", - "libelleAcheminement": "CHERET", - "nomCommune": "CHERET" + "codePostal": "39300", + "codeCommune": "39153", + "libelleAcheminement": "CIZE", + "nomCommune": "CIZE" }, { - "codePostal": "63460", - "codeCommune": "63379", - "libelleAcheminement": "ST MYON", - "nomCommune": "ST MYON" + "codePostal": "38470", + "codeCommune": "38523", + "libelleAcheminement": "VARACIEUX", + "nomCommune": "VARACIEUX" }, { - "codePostal": "31620", - "codeCommune": "31252", - "libelleAcheminement": "LABASTIDE ST SERNIN", - "nomCommune": "LABASTIDE ST SERNIN" + "codePostal": "27930", + "codeCommune": "27410", + "libelleAcheminement": "MISEREY", + "nomCommune": "MISEREY" }, { - "codePostal": "57720", - "codeCommune": "57108", - "libelleAcheminement": "BREIDENBACH", - "nomCommune": "BREIDENBACH" + "codePostal": "28210", + "codeCommune": "28279", + "libelleAcheminement": "NOGENT LE ROI", + "nomCommune": "NOGENT LE ROI" }, { - "codePostal": "02000", - "codeCommune": "02183", - "libelleAcheminement": "CHEVREGNY", - "nomCommune": "CHEVREGNY" + "codePostal": "39200", + "codeCommune": "39157", + "libelleAcheminement": "COISERETTE", + "nomCommune": "COISERETTE" }, { - "codePostal": "63210", - "codeCommune": "63386", - "libelleAcheminement": "ST PIERRE ROCHE", - "nomCommune": "ST PIERRE ROCHE" + "codePostal": "38410", + "codeCommune": "38528", + "libelleAcheminement": "VAULNAVEYS LE BAS", + "nomCommune": "VAULNAVEYS LE BAS" }, { - "codePostal": "31670", - "codeCommune": "31254", - "libelleAcheminement": "LABEGE", - "nomCommune": "LABEGE" + "codePostal": "27390", + "codeCommune": "27414", + "libelleAcheminement": "MONTREUIL L ARGILLE", + "nomCommune": "MONTREUIL L ARGILLE" }, { - "codePostal": "57570", - "codeCommune": "57109", - "libelleAcheminement": "BREISTROFF LA GRANDE", - "nomCommune": "BREISTROFF LA GRANDE" + "codePostal": "28400", + "codeCommune": "28280", + "libelleAcheminement": "NOGENT LE ROTROU", + "nomCommune": "NOGENT LE ROTROU" }, { - "codePostal": "02570", - "codeCommune": "02186", - "libelleAcheminement": "CHEZY SUR MARNE", - "nomCommune": "CHEZY SUR MARNE" + "codePostal": "39570", + "codeCommune": "39162", + "libelleAcheminement": "CONDAMINE", + "nomCommune": "CONDAMINE" }, { - "codePostal": "63500", - "codeCommune": "63404", - "libelleAcheminement": "ST YVOINE", - "nomCommune": "ST YVOINE" + "codePostal": "38610", + "codeCommune": "38533", + "libelleAcheminement": "VENON", + "nomCommune": "VENON" }, { - "codePostal": "31800", - "codeCommune": "31268", - "libelleAcheminement": "LALOURET LAFFITEAU", - "nomCommune": "LALOURET LAFFITEAU" + "codePostal": "27260", + "codeCommune": "27415", + "libelleAcheminement": "MORAINVILLE JOUVEAUX", + "nomCommune": "MORAINVILLE JOUVEAUX" }, { - "codePostal": "57535", - "codeCommune": "57111", - "libelleAcheminement": "BRONVAUX", - "nomCommune": "BRONVAUX" + "codePostal": "28140", + "codeCommune": "28287", + "libelleAcheminement": "ORGERES EN BEAUCE", + "nomCommune": "ORGERES EN BEAUCE" }, { - "codePostal": "02880", - "codeCommune": "02190", - "libelleAcheminement": "CHIVRES VAL", - "nomCommune": "CHIVRES VAL" + "codePostal": "39240", + "codeCommune": "39163", + "libelleAcheminement": "CONDES", + "nomCommune": "CONDES" }, { - "codePostal": "63500", - "codeCommune": "63411", - "libelleAcheminement": "SAUVAGNAT STE MARTHE", - "nomCommune": "SAUVAGNAT STE MARTHE" + "codePostal": "38113", + "codeCommune": "38540", + "libelleAcheminement": "VEUREY VOROIZE", + "nomCommune": "VEUREY VOROIZE" }, { - "codePostal": "31140", - "codeCommune": "31282", - "libelleAcheminement": "LAUNAGUET", - "nomCommune": "LAUNAGUET" + "codePostal": "27150", + "codeCommune": "27417", + "libelleAcheminement": "MORGNY", + "nomCommune": "MORGNY" }, { - "codePostal": "57220", - "codeCommune": "57112", - "libelleAcheminement": "BROUCK", - "nomCommune": "BROUCK" + "codePostal": "28300", + "codeCommune": "28301", + "libelleAcheminement": "POISVILLIERS", + "nomCommune": "POISVILLIERS" }, { - "codePostal": "02340", - "codeCommune": "02200", - "libelleAcheminement": "CLERMONT LES FERMES", - "nomCommune": "CLERMONT LES FERMES" + "codePostal": "39570", + "codeCommune": "39164", + "libelleAcheminement": "CONLIEGE", + "nomCommune": "CONLIEGE" }, { - "codePostal": "63120", - "codeCommune": "63414", - "libelleAcheminement": "SAUVIAT", - "nomCommune": "SAUVIAT" + "codePostal": "38190", + "codeCommune": "38547", + "libelleAcheminement": "VILLARD BONNOT", + "nomCommune": "VILLARD BONNOT" }, { - "codePostal": "31530", - "codeCommune": "31297", - "libelleAcheminement": "LEVIGNAC", - "nomCommune": "LEVIGNAC" + "codePostal": "27550", + "codeCommune": "27425", + "libelleAcheminement": "NASSANDRES SUR RISLE", + "nomCommune": "NASSANDRES SUR RISLE" }, { - "codePostal": "57565", - "codeCommune": "57113", - "libelleAcheminement": "BROUDERDORFF", - "nomCommune": "BROUDERDORFF" + "codePostal": "28190", + "codeCommune": "28302", + "libelleAcheminement": "PONTGOUIN", + "nomCommune": "PONTGOUIN" }, { - "codePostal": "02370", - "codeCommune": "02210", - "libelleAcheminement": "CONDE SUR AISNE", - "nomCommune": "CONDE SUR AISNE" + "codePostal": "39240", + "codeCommune": "39166", + "libelleAcheminement": "CORNOD", + "nomCommune": "CORNOD" }, { - "codePostal": "63690", - "codeCommune": "63426", - "libelleAcheminement": "TAUVES", - "nomCommune": "TAUVES" + "codePostal": "38190", + "codeCommune": "38547", + "libelleAcheminement": "VILLARD BONNOT", + "nomCommune": "VILLARD BONNOT" }, { - "codePostal": "31800", - "codeCommune": "31302", - "libelleAcheminement": "LODES", - "nomCommune": "LODES" + "codePostal": "27250", + "codeCommune": "27427", + "libelleAcheminement": "NEAUFLES AUVERGNY", + "nomCommune": "NEAUFLES AUVERGNY" }, { - "codePostal": "57635", - "codeCommune": "57114", - "libelleAcheminement": "BROUVILLER", - "nomCommune": "BROUVILLER" + "codePostal": "28140", + "codeCommune": "28303", + "libelleAcheminement": "POUPRY", + "nomCommune": "POUPRY" }, { - "codePostal": "02700", - "codeCommune": "02212", - "libelleAcheminement": "CONDREN", - "nomCommune": "CONDREN" + "codePostal": "39570", + "codeCommune": "39170", + "libelleAcheminement": "COURLANS", + "nomCommune": "COURLANS" }, { - "codePostal": "63460", - "codeCommune": "63427", - "libelleAcheminement": "TEILHEDE", - "nomCommune": "TEILHEDE" + "codePostal": "38520", + "codeCommune": "38549", + "libelleAcheminement": "VILLARD NOTRE DAME", + "nomCommune": "VILLARD NOTRE DAME" }, { - "codePostal": "31260", - "codeCommune": "31315", - "libelleAcheminement": "MANE", - "nomCommune": "MANE" + "codePostal": "27110", + "codeCommune": "27428", + "libelleAcheminement": "LE NEUBOURG", + "nomCommune": "LE NEUBOURG" }, { - "codePostal": "57450", - "codeCommune": "57122", - "libelleAcheminement": "CAPPEL", - "nomCommune": "CAPPEL" + "codePostal": "28360", + "codeCommune": "28309", + "libelleAcheminement": "PRUNAY LE GILLON", + "nomCommune": "PRUNAY LE GILLON" }, { - "codePostal": "02310", - "codeCommune": "02221", - "libelleAcheminement": "COUPRU", - "nomCommune": "COUPRU" + "codePostal": "39190", + "codeCommune": "39173", + "libelleAcheminement": "COUSANCE", + "nomCommune": "COUSANCE" }, { - "codePostal": "63340", - "codeCommune": "63429", - "libelleAcheminement": "TERNANT LES EAUX", - "nomCommune": "TERNANT LES EAUX" + "codePostal": "38460", + "codeCommune": "38554", + "libelleAcheminement": "VILLEMOIRIEU", + "nomCommune": "VILLEMOIRIEU" }, { - "codePostal": "31460", - "codeCommune": "31325", - "libelleAcheminement": "MASCARVILLE", - "nomCommune": "MASCARVILLE" + "codePostal": "27930", + "codeCommune": "27439", + "libelleAcheminement": "NORMANVILLE", + "nomCommune": "NORMANVILLE" }, { - "codePostal": "57365", - "codeCommune": "57125", - "libelleAcheminement": "CHAILLY LES ENNERY", - "nomCommune": "CHAILLY LES ENNERY" + "codePostal": "28250", + "codeCommune": "28310", + "libelleAcheminement": "LA PUISAYE", + "nomCommune": "LA PUISAYE" }, { - "codePostal": "02350", - "codeCommune": "02248", - "libelleAcheminement": "CUIRIEUX", - "nomCommune": "CUIRIEUX" + "codePostal": "39570", + "codeCommune": "39177", + "libelleAcheminement": "HAUTEROCHE", + "nomCommune": "HAUTEROCHE" }, { - "codePostal": "63300", - "codeCommune": "63430", - "libelleAcheminement": "THIERS", - "nomCommune": "THIERS" + "codePostal": "38280", + "codeCommune": "38557", + "libelleAcheminement": "VILLETTE D ANTHON", + "nomCommune": "VILLETTE D ANTHON" }, { - "codePostal": "31410", - "codeCommune": "31334", - "libelleAcheminement": "MAUZAC", - "nomCommune": "MAUZAC" + "codePostal": "27720", + "codeCommune": "27445", + "libelleAcheminement": "NOYERS", + "nomCommune": "NOYERS" }, { - "codePostal": "57170", - "codeCommune": "57133", - "libelleAcheminement": "CHATEAU VOUE", - "nomCommune": "CHATEAU VOUE" + "codePostal": "28170", + "codeCommune": "28323", + "libelleAcheminement": "ST ANGE ET TORCAY", + "nomCommune": "ST ANGE ET TORCAY" }, { - "codePostal": "02220", - "codeCommune": "02249", - "libelleAcheminement": "CUIRY HOUSSE", - "nomCommune": "CUIRY HOUSSE" + "codePostal": "39190", + "codeCommune": "39185", + "libelleAcheminement": "CUISIA", + "nomCommune": "CUISIA" }, { - "codePostal": "63810", - "codeCommune": "63437", - "libelleAcheminement": "TREMOUILLE ST LOUP", - "nomCommune": "TREMOUILLE ST LOUP" + "codePostal": "38730", + "codeCommune": "38560", + "libelleAcheminement": "VAL DE VIRIEU", + "nomCommune": "VAL DE VIRIEU" }, { - "codePostal": "31260", - "codeCommune": "31336", - "libelleAcheminement": "MAZERES SUR SALAT", - "nomCommune": "MAZERES SUR SALAT" + "codePostal": "27190", + "codeCommune": "27446", + "libelleAcheminement": "ORMES", + "nomCommune": "ORMES" }, { - "codePostal": "57245", - "codeCommune": "57140", - "libelleAcheminement": "CHESNY", - "nomCommune": "CHESNY" + "codePostal": "28120", + "codeCommune": "28336", + "libelleAcheminement": "ST EMAN", + "nomCommune": "ST EMAN" }, { - "codePostal": "02200", - "codeCommune": "02253", - "libelleAcheminement": "CUISY EN ALMONT", - "nomCommune": "CUISY EN ALMONT" + "codePostal": "39290", + "codeCommune": "39188", + "libelleAcheminement": "DAMMARTIN MARPAIN", + "nomCommune": "DAMMARTIN MARPAIN" }, { - "codePostal": "63500", - "codeCommune": "63444", - "libelleAcheminement": "VARENNES SUR USSON", - "nomCommune": "VARENNES SUR USSON" + "codePostal": "38340", + "codeCommune": "38565", + "libelleAcheminement": "VOREPPE", + "nomCommune": "VOREPPE" }, { - "codePostal": "31230", - "codeCommune": "31343", - "libelleAcheminement": "MIRAMBEAU", - "nomCommune": "MIRAMBEAU" + "codePostal": "27190", + "codeCommune": "27447", + "libelleAcheminement": "LE VAL DORE", + "nomCommune": "LE VAL DORE" }, { - "codePostal": "57420", - "codeCommune": "57146", - "libelleAcheminement": "COIN LES CUVRY", - "nomCommune": "COIN LES CUVRY" + "codePostal": "28190", + "codeCommune": "28339", + "libelleAcheminement": "ST GERMAIN LE GAILLARD", + "nomCommune": "ST GERMAIN LE GAILLARD" }, { - "codePostal": "02270", - "codeCommune": "02261", - "libelleAcheminement": "DERCY", - "nomCommune": "DERCY" + "codePostal": "39350", + "codeCommune": "39190", + "libelleAcheminement": "DAMPIERRE", + "nomCommune": "DAMPIERRE" }, { - "codePostal": "63580", - "codeCommune": "63448", - "libelleAcheminement": "LE VERNET CHAMEANE", - "nomCommune": "LE VERNET CHAMEANE" + "codePostal": "39140", + "codeCommune": "39017", + "libelleAcheminement": "ARLAY", + "nomCommune": "ARLAY" }, { - "codePostal": "31160", - "codeCommune": "31348", - "libelleAcheminement": "MONCAUP", - "nomCommune": "MONCAUP" + "codePostal": "27400", + "codeCommune": "27456", + "libelleAcheminement": "PINTERVILLE", + "nomCommune": "PINTERVILLE" }, { - "codePostal": "57220", - "codeCommune": "57154", - "libelleAcheminement": "COUME", - "nomCommune": "COUME" + "codePostal": "28700", + "codeCommune": "28344", + "libelleAcheminement": "ST LEGER DES AUBEES", + "nomCommune": "ST LEGER DES AUBEES" }, { - "codePostal": "02700", - "codeCommune": "02262", - "libelleAcheminement": "DEUILLET", - "nomCommune": "DEUILLET" + "codePostal": "39700", + "codeCommune": "39205", + "libelleAcheminement": "ECLANS NENON", + "nomCommune": "ECLANS NENON" }, { - "codePostal": "63910", - "codeCommune": "63453", - "libelleAcheminement": "VERTAIZON", - "nomCommune": "VERTAIZON" + "codePostal": "39240", + "codeCommune": "39018", + "libelleAcheminement": "AROMAS", + "nomCommune": "AROMAS" }, { - "codePostal": "31530", - "codeCommune": "31356", - "libelleAcheminement": "MONTAIGUT SUR SAVE", - "nomCommune": "MONTAIGUT SUR SAVE" + "codePostal": "27500", + "codeCommune": "27467", + "libelleAcheminement": "PONT AUDEMER", + "nomCommune": "PONT AUDEMER" }, { - "codePostal": "57260", - "codeCommune": "57161", - "libelleAcheminement": "CUTTING", - "nomCommune": "CUTTING" + "codePostal": "28270", + "codeCommune": "28346", + "libelleAcheminement": "ST LUBIN DE CRAVANT", + "nomCommune": "ST LUBIN DE CRAVANT" }, { - "codePostal": "02310", - "codeCommune": "02268", - "libelleAcheminement": "DOMPTIN", - "nomCommune": "DOMPTIN" + "codePostal": "39120", + "codeCommune": "39211", + "libelleAcheminement": "LES ESSARDS TAIGNEVAUX", + "nomCommune": "LES ESSARDS TAIGNEVAUX" }, { - "codePostal": "63480", - "codeCommune": "63454", - "libelleAcheminement": "VERTOLAYE", - "nomCommune": "VERTOLAYE" + "codePostal": "39250", + "codeCommune": "39020", + "libelleAcheminement": "ARSURE ARSURETTE", + "nomCommune": "ARSURE ARSURETTE" }, { - "codePostal": "31370", - "codeCommune": "31359", - "libelleAcheminement": "MONTASTRUC SAVES", - "nomCommune": "MONTASTRUC SAVES" + "codePostal": "27290", + "codeCommune": "27468", + "libelleAcheminement": "PONT AUTHOU", + "nomCommune": "PONT AUTHOU" }, { - "codePostal": "57830", - "codeCommune": "57175", - "libelleAcheminement": "DIANE CAPELLE", - "nomCommune": "DIANE CAPELLE" + "codePostal": "28410", + "codeCommune": "28347", + "libelleAcheminement": "ST LUBIN DE LA HAYE", + "nomCommune": "ST LUBIN DE LA HAYE" }, { - "codePostal": "02130", - "codeCommune": "02271", - "libelleAcheminement": "DRAVEGNY", - "nomCommune": "DRAVEGNY" + "codePostal": "39700", + "codeCommune": "39219", + "libelleAcheminement": "EVANS", + "nomCommune": "EVANS" }, { - "codePostal": "63270", - "codeCommune": "63457", - "libelleAcheminement": "VIC LE COMTE", - "nomCommune": "VIC LE COMTE" + "codePostal": "39570", + "codeCommune": "39021", + "libelleAcheminement": "LA CHAILLEUSE", + "nomCommune": "LA CHAILLEUSE" }, { - "codePostal": "31220", - "codeCommune": "31362", - "libelleAcheminement": "MONTBERAUD", - "nomCommune": "MONTBERAUD" + "codePostal": "27420", + "codeCommune": "27490", + "libelleAcheminement": "RICHEVILLE", + "nomCommune": "RICHEVILLE" }, { - "codePostal": "57980", - "codeCommune": "57176", - "libelleAcheminement": "DIEBLING", - "nomCommune": "DIEBLING" + "codePostal": "28130", + "codeCommune": "28352", + "libelleAcheminement": "ST MARTIN DE NIGELLES", + "nomCommune": "ST MARTIN DE NIGELLES" }, { - "codePostal": "02210", - "codeCommune": "02272", - "libelleAcheminement": "DROIZY", - "nomCommune": "DROIZY" + "codePostal": "39800", + "codeCommune": "39225", + "libelleAcheminement": "LE FIED", + "nomCommune": "LE FIED" }, { - "codePostal": "63310", - "codeCommune": "63459", - "libelleAcheminement": "VILLENEUVE LES CERFS", - "nomCommune": "VILLENEUVE LES CERFS" + "codePostal": "39410", + "codeCommune": "39029", + "libelleAcheminement": "AUMUR", + "nomCommune": "AUMUR" }, { - "codePostal": "31290", - "codeCommune": "31368", - "libelleAcheminement": "MONTCLAR LAURAGAIS", - "nomCommune": "MONTCLAR LAURAGAIS" + "codePostal": "27170", + "codeCommune": "27492", + "libelleAcheminement": "ROMILLY LA PUTHENAYE", + "nomCommune": "ROMILLY LA PUTHENAYE" }, { - "codePostal": "57810", - "codeCommune": "57183", - "libelleAcheminement": "DONNELAY", - "nomCommune": "DONNELAY" + "codePostal": "28380", + "codeCommune": "28359", + "libelleAcheminement": "ST REMY SUR AVRE", + "nomCommune": "ST REMY SUR AVRE" }, { - "codePostal": "02000", - "codeCommune": "02294", - "libelleAcheminement": "ETOUVELLES", - "nomCommune": "ETOUVELLES" + "codePostal": "39140", + "codeCommune": "39229", + "libelleAcheminement": "FONTAINEBRUX", + "nomCommune": "FONTAINEBRUX" }, { - "codePostal": "63380", - "codeCommune": "63460", - "libelleAcheminement": "VILLOSSANGES", - "nomCommune": "VILLOSSANGES" + "codePostal": "39190", + "codeCommune": "39043", + "libelleAcheminement": "BEAUFORT ORBAGNA", + "nomCommune": "BEAUFORT ORBAGNA" }, { - "codePostal": "31540", - "codeCommune": "31371", - "libelleAcheminement": "MONTEGUT LAURAGAIS", - "nomCommune": "MONTEGUT LAURAGAIS" + "codePostal": "27790", + "codeCommune": "27496", + "libelleAcheminement": "ROSAY SUR LIEURE", + "nomCommune": "ROSAY SUR LIEURE" }, { - "codePostal": "57415", - "codeCommune": "57192", - "libelleAcheminement": "ENCHENBERG", - "nomCommune": "ENCHENBERG" + "codePostal": "28800", + "codeCommune": "28370", + "libelleAcheminement": "SAUMERAY", + "nomCommune": "SAUMERAY" }, { - "codePostal": "02460", - "codeCommune": "02307", - "libelleAcheminement": "LA FERTE MILON", - "nomCommune": "LA FERTE MILON" + "codePostal": "39150", + "codeCommune": "39232", + "libelleAcheminement": "FORT DU PLASNE", + "nomCommune": "FORT DU PLASNE" }, { - "codePostal": "63330", - "codeCommune": "63462", - "libelleAcheminement": "VIRLET", - "nomCommune": "VIRLET" + "codePostal": "39310", + "codeCommune": "39046", + "libelleAcheminement": "BELLECOMBE", + "nomCommune": "BELLECOMBE" }, { - "codePostal": "31450", - "codeCommune": "31374", - "libelleAcheminement": "MONTESQUIEU LAURAGAIS", - "nomCommune": "MONTESQUIEU LAURAGAIS" + "codePostal": "27450", + "codeCommune": "27520", + "libelleAcheminement": "ST BENOIT DES OMBRES", + "nomCommune": "ST BENOIT DES OMBRES" }, { - "codePostal": "57720", - "codeCommune": "57196", - "libelleAcheminement": "ERCHING", - "nomCommune": "ERCHING" + "codePostal": "28250", + "codeCommune": "28373", + "libelleAcheminement": "SENONCHES", + "nomCommune": "SENONCHES" }, { - "codePostal": "02760", - "codeCommune": "02330", - "libelleAcheminement": "FRANCILLY SELENCY", - "nomCommune": "FRANCILLY SELENCY" + "codePostal": "39100", + "codeCommune": "39233", + "libelleAcheminement": "FOUCHERANS", + "nomCommune": "FOUCHERANS" }, { - "codePostal": "63270", - "codeCommune": "63472", - "libelleAcheminement": "YRONDE ET BURON", - "nomCommune": "YRONDE ET BURON" + "codePostal": "39290", + "codeCommune": "39051", + "libelleAcheminement": "BIARNE", + "nomCommune": "BIARNE" }, { - "codePostal": "31310", - "codeCommune": "31375", - "libelleAcheminement": "MONTESQUIEU VOLVESTRE", - "nomCommune": "MONTESQUIEU VOLVESTRE" + "codePostal": "27820", + "codeCommune": "27521", + "libelleAcheminement": "ST CHRISTOPHE SUR AVRE", + "nomCommune": "ST CHRISTOPHE SUR AVRE" }, { - "codePostal": "57570", - "codeCommune": "57203", - "libelleAcheminement": "EVRANGE", - "nomCommune": "EVRANGE" + "codePostal": "28170", + "codeCommune": "28374", + "libelleAcheminement": "SERAZEREUX", + "nomCommune": "SERAZEREUX" }, { - "codePostal": "02230", - "codeCommune": "02334", - "libelleAcheminement": "FRESNOY LE GRAND", - "nomCommune": "FRESNOY LE GRAND" + "codePostal": "39700", + "codeCommune": "39235", + "libelleAcheminement": "FRAISANS", + "nomCommune": "FRAISANS" }, { - "codePostal": "64160", - "codeCommune": "64002", - "libelleAcheminement": "ABERE", - "nomCommune": "ABERE" + "codePostal": "39250", + "codeCommune": "39055", + "libelleAcheminement": "BILLECUL", + "nomCommune": "BILLECUL" }, { - "codePostal": "31350", - "codeCommune": "31378", - "libelleAcheminement": "MONTGAILLARD SUR SAVE", - "nomCommune": "MONTGAILLARD SUR SAVE" + "codePostal": "27100", + "codeCommune": "27528", + "libelleAcheminement": "LE VAUDREUIL", + "nomCommune": "LE VAUDREUIL" }, { - "codePostal": "57640", - "codeCommune": "57204", - "libelleAcheminement": "FAILLY", - "nomCommune": "FAILLY" + "codePostal": "28240", + "codeCommune": "28385", + "libelleAcheminement": "LE THIEULIN", + "nomCommune": "LE THIEULIN" }, { - "codePostal": "02430", - "codeCommune": "02340", - "libelleAcheminement": "GAUCHY", - "nomCommune": "GAUCHY" + "codePostal": "39290", + "codeCommune": "39238", + "libelleAcheminement": "FRASNE LES MEULIERES", + "nomCommune": "FRASNE LES MEULIERES" }, { - "codePostal": "64150", - "codeCommune": "64003", - "libelleAcheminement": "ABIDOS", - "nomCommune": "ABIDOS" + "codePostal": "39370", + "codeCommune": "39068", + "libelleAcheminement": "LES BOUCHOUX", + "nomCommune": "LES BOUCHOUX" }, { - "codePostal": "31560", - "codeCommune": "31380", - "libelleAcheminement": "MONTGEARD", - "nomCommune": "MONTGEARD" + "codePostal": "27520", + "codeCommune": "27531", + "libelleAcheminement": "ST DENIS DES MONTS", + "nomCommune": "ST DENIS DES MONTS" }, { - "codePostal": "57450", - "codeCommune": "57208", - "libelleAcheminement": "FARSCHVILLER", - "nomCommune": "FARSCHVILLER" + "codePostal": "28170", + "codeCommune": "28386", + "libelleAcheminement": "THIMERT GATELLES", + "nomCommune": "THIMERT GATELLES" }, { - "codePostal": "02590", - "codeCommune": "02343", - "libelleAcheminement": "GERMAINE", - "nomCommune": "GERMAINE" + "codePostal": "39120", + "codeCommune": "39245", + "libelleAcheminement": "GATEY", + "nomCommune": "GATEY" }, { - "codePostal": "64390", - "codeCommune": "64004", - "libelleAcheminement": "ABITAIN", - "nomCommune": "ABITAIN" + "codePostal": "39700", + "codeCommune": "39076", + "libelleAcheminement": "LA BRETENIERE", + "nomCommune": "LA BRETENIERE" }, { - "codePostal": "31560", - "codeCommune": "31396", - "libelleAcheminement": "NAILLOUX", - "nomCommune": "NAILLOUX" + "codePostal": "27370", + "codeCommune": "27534", + "libelleAcheminement": "ST DIDIER DES BOIS", + "nomCommune": "ST DIDIER DES BOIS" }, { - "codePostal": "57380", - "codeCommune": "57209", - "libelleAcheminement": "FAULQUEMONT", - "nomCommune": "FAULQUEMONT" + "codePostal": "28170", + "codeCommune": "28393", + "libelleAcheminement": "TREMBLAY LES VILLAGES", + "nomCommune": "TREMBLAY LES VILLAGES" }, { - "codePostal": "02350", - "codeCommune": "02346", - "libelleAcheminement": "GIZY", - "nomCommune": "GIZY" + "codePostal": "39800", + "codeCommune": "39263", + "libelleAcheminement": "GROZON", + "nomCommune": "GROZON" }, { - "codePostal": "64220", - "codeCommune": "64011", - "libelleAcheminement": "AINCILLE", - "nomCommune": "AINCILLE" + "codePostal": "39120", + "codeCommune": "39077", + "libelleAcheminement": "BRETENIERES", + "nomCommune": "BRETENIERES" }, { - "codePostal": "31350", - "codeCommune": "31398", - "libelleAcheminement": "NIZAN GESSE", - "nomCommune": "NIZAN GESSE" + "codePostal": "27920", + "codeCommune": "27539", + "libelleAcheminement": "ST ETIENNE SOUS BAILLEUL", + "nomCommune": "ST ETIENNE SOUS BAILLEUL" }, { - "codePostal": "57190", - "codeCommune": "57221", - "libelleAcheminement": "FLORANGE", - "nomCommune": "FLORANGE" + "codePostal": "28170", + "codeCommune": "28393", + "libelleAcheminement": "TREMBLAY LES VILLAGES", + "nomCommune": "TREMBLAY LES VILLAGES" }, { - "codePostal": "02350", - "codeCommune": "02353", - "libelleAcheminement": "GRANDLUP ET FAY", - "nomCommune": "GRANDLUP ET FAY" + "codePostal": "39320", + "codeCommune": "39273", + "libelleAcheminement": "MONTLAINSIA", + "nomCommune": "MONTLAINSIA" }, { - "codePostal": "64220", - "codeCommune": "64013", - "libelleAcheminement": "AINHICE MONGELOS", - "nomCommune": "AINHICE MONGELOS" + "codePostal": "39250", + "codeCommune": "39085", + "libelleAcheminement": "CERNIEBAUD", + "nomCommune": "CERNIEBAUD" }, { - "codePostal": "31350", - "codeCommune": "31412", - "libelleAcheminement": "PEGUILHAN", - "nomCommune": "PEGUILHAN" + "codePostal": "27620", + "codeCommune": "27540", + "libelleAcheminement": "STE GENEVIEVE LES GASNY", + "nomCommune": "STE GENEVIEVE LES GASNY" }, { - "codePostal": "57650", - "codeCommune": "57226", - "libelleAcheminement": "FONTOY", - "nomCommune": "FONTOY" + "codePostal": "28700", + "codeCommune": "28397", + "libelleAcheminement": "UMPEAU", + "nomCommune": "UMPEAU" }, { - "codePostal": "02360", - "codeCommune": "02354", - "libelleAcheminement": "GRANDRIEUX", - "nomCommune": "GRANDRIEUX" + "codePostal": "39130", + "codeCommune": "39278", + "libelleAcheminement": "LARGILLAY MARSONNAY", + "nomCommune": "LARGILLAY MARSONNAY" }, { - "codePostal": "64160", - "codeCommune": "64027", - "libelleAcheminement": "ANOS", - "nomCommune": "ANOS" + "codePostal": "39800", + "codeCommune": "39094", + "libelleAcheminement": "CHAMOLE", + "nomCommune": "CHAMOLE" }, { - "codePostal": "31390", - "codeCommune": "31416", - "libelleAcheminement": "PEYSSIES", - "nomCommune": "PEYSSIES" + "codePostal": "27560", + "codeCommune": "27541", + "libelleAcheminement": "LE MESNIL ST JEAN", + "nomCommune": "LE MESNIL ST JEAN" }, { - "codePostal": "57600", - "codeCommune": "57227", - "libelleAcheminement": "FORBACH", - "nomCommune": "FORBACH" + "codePostal": "28240", + "codeCommune": "28401", + "libelleAcheminement": "VAUPILLON", + "nomCommune": "VAUPILLON" }, { - "codePostal": "02210", - "codeCommune": "02356", - "libelleAcheminement": "GRISOLLES", - "nomCommune": "GRISOLLES" + "codePostal": "39700", + "codeCommune": "39285", + "libelleAcheminement": "LAVANS LES DOLE", + "nomCommune": "LAVANS LES DOLE" }, { - "codePostal": "64120", - "codeCommune": "64034", - "libelleAcheminement": "ARBERATS SILLEGUE", - "nomCommune": "ARBERATS SILLEGUE" + "codePostal": "39100", + "codeCommune": "39101", + "libelleAcheminement": "CHAMPVANS", + "nomCommune": "CHAMPVANS" }, { - "codePostal": "31370", - "codeCommune": "31423", - "libelleAcheminement": "PLAGNOLE", - "nomCommune": "PLAGNOLE" + "codePostal": "27370", + "codeCommune": "27545", + "libelleAcheminement": "ST GERMAIN DE PASQUIER", + "nomCommune": "ST GERMAIN DE PASQUIER" }, { - "codePostal": "57660", - "codeCommune": "57237", - "libelleAcheminement": "FREMESTROFF", - "nomCommune": "FREMESTROFF" + "codePostal": "28150", + "codeCommune": "28406", + "libelleAcheminement": "EOLE EN BEAUCE", + "nomCommune": "EOLE EN BEAUCE" }, { - "codePostal": "02140", - "codeCommune": "02369", - "libelleAcheminement": "HARCIGNY", - "nomCommune": "HARCIGNY" + "codePostal": "39170", + "codeCommune": "39286", + "libelleAcheminement": "LAVANS LES ST CLAUDE", + "nomCommune": "LAVANS LES ST CLAUDE" }, { - "codePostal": "64120", - "codeCommune": "64036", - "libelleAcheminement": "ARBOUET SUSSAUTE", - "nomCommune": "ARBOUET SUSSAUTE" + "codePostal": "39260", + "codeCommune": "39106", + "libelleAcheminement": "CHARCHILLA", + "nomCommune": "CHARCHILLA" }, { - "codePostal": "31830", - "codeCommune": "31424", - "libelleAcheminement": "PLAISANCE DU TOUCH", - "nomCommune": "PLAISANCE DU TOUCH" + "codePostal": "27950", + "codeCommune": "27554", + "libelleAcheminement": "LA CHAPELLE LONGUEVILLE", + "nomCommune": "LA CHAPELLE LONGUEVILLE" }, { - "codePostal": "57170", - "codeCommune": "57238", - "libelleAcheminement": "FRESNES EN SAULNOIS", - "nomCommune": "FRESNES EN SAULNOIS" + "codePostal": "28150", + "codeCommune": "28406", + "libelleAcheminement": "EOLE EN BEAUCE", + "nomCommune": "EOLE EN BEAUCE" }, { - "codePostal": "02420", - "codeCommune": "02370", - "libelleAcheminement": "HARGICOURT", - "nomCommune": "HARGICOURT" + "codePostal": "39170", + "codeCommune": "39293", + "libelleAcheminement": "LESCHERES", + "nomCommune": "LESCHERES" }, { - "codePostal": "64200", - "codeCommune": "64038", - "libelleAcheminement": "ARCANGUES", - "nomCommune": "ARCANGUES" + "codePostal": "39240", + "codeCommune": "39111", + "libelleAcheminement": "CHARNOD", + "nomCommune": "CHARNOD" }, { - "codePostal": "31800", - "codeCommune": "31427", - "libelleAcheminement": "POINTIS INARD", - "nomCommune": "POINTIS INARD" + "codePostal": "27220", + "codeCommune": "27555", + "libelleAcheminement": "ST LAURENT DES BOIS", + "nomCommune": "ST LAURENT DES BOIS" }, { - "codePostal": "57820", - "codeCommune": "57244", - "libelleAcheminement": "GARREBOURG", - "nomCommune": "GARREBOURG" + "codePostal": "28150", + "codeCommune": "28411", + "libelleAcheminement": "VILLARS", + "nomCommune": "VILLARS" }, { - "codePostal": "02140", - "codeCommune": "02373", - "libelleAcheminement": "HARY", - "nomCommune": "HARY" + "codePostal": "39320", + "codeCommune": "39295", + "libelleAcheminement": "LOISIA", + "nomCommune": "LOISIA" }, { - "codePostal": "64320", - "codeCommune": "64041", - "libelleAcheminement": "ARESSY", - "nomCommune": "ARESSY" + "codePostal": "39380", + "codeCommune": "39117", + "libelleAcheminement": "CHATELAY", + "nomCommune": "CHATELAY" }, { - "codePostal": "31210", - "codeCommune": "31430", - "libelleAcheminement": "PONLAT TAILLEBOURG", - "nomCommune": "PONLAT TAILLEBOURG" + "codePostal": "27930", + "codeCommune": "27570", + "libelleAcheminement": "ST MARTIN LA CAMPAGNE", + "nomCommune": "ST MARTIN LA CAMPAGNE" }, { - "codePostal": "57260", - "codeCommune": "57246", - "libelleAcheminement": "GELUCOURT", - "nomCommune": "GELUCOURT" + "codePostal": "28210", + "codeCommune": "28415", + "libelleAcheminement": "VILLEMEUX SUR EURE", + "nomCommune": "VILLEMEUX SUR EURE" }, { - "codePostal": "02120", - "codeCommune": "02376", - "libelleAcheminement": "HAUTEVILLE", - "nomCommune": "HAUTEVILLE" + "codePostal": "39230", + "codeCommune": "39296", + "libelleAcheminement": "LOMBARD", + "nomCommune": "LOMBARD" }, { - "codePostal": "64410", - "codeCommune": "64044", - "libelleAcheminement": "ARGET", - "nomCommune": "ARGET" + "codePostal": "39230", + "codeCommune": "39124", + "libelleAcheminement": "CHAUMERGY", + "nomCommune": "CHAUMERGY" }, { - "codePostal": "31110", - "codeCommune": "31432", - "libelleAcheminement": "PORTET DE LUCHON", - "nomCommune": "PORTET DE LUCHON" + "codePostal": "27450", + "codeCommune": "27571", + "libelleAcheminement": "ST MARTIN ST FIRMIN", + "nomCommune": "ST MARTIN ST FIRMIN" }, { - "codePostal": "57170", - "codeCommune": "57247", - "libelleAcheminement": "GERBECOURT", - "nomCommune": "GERBECOURT" + "codePostal": "28130", + "codeCommune": "28423", + "libelleAcheminement": "YERMENONVILLE", + "nomCommune": "YERMENONVILLE" }, { - "codePostal": "02440", - "codeCommune": "02380", - "libelleAcheminement": "HINACOURT", - "nomCommune": "HINACOURT" + "codePostal": "39120", + "codeCommune": "39299", + "libelleAcheminement": "LONGWY SUR LE DOUBS", + "nomCommune": "LONGWY SUR LE DOUBS" }, { - "codePostal": "64640", - "codeCommune": "64046", - "libelleAcheminement": "ARMENDARITS", - "nomCommune": "ARMENDARITS" + "codePostal": "39800", + "codeCommune": "39127", + "libelleAcheminement": "CHAUSSENANS", + "nomCommune": "CHAUSSENANS" }, { - "codePostal": "31120", - "codeCommune": "31433", - "libelleAcheminement": "PORTET SUR GARONNE", - "nomCommune": "PORTET SUR GARONNE" + "codePostal": "27160", + "codeCommune": "27578", + "libelleAcheminement": "STE MARIE D ATTEZ", + "nomCommune": "STE MARIE D ATTEZ" }, { - "codePostal": "57530", - "codeCommune": "57249", - "libelleAcheminement": "GLATIGNY", - "nomCommune": "GLATIGNY" + "codePostal": "28320", + "codeCommune": "28425", + "libelleAcheminement": "YMERAY", + "nomCommune": "YMERAY" }, { - "codePostal": "02420", - "codeCommune": "02392", - "libelleAcheminement": "JONCOURT", - "nomCommune": "JONCOURT" + "codePostal": "39210", + "codeCommune": "39317", + "libelleAcheminement": "LA MARRE", + "nomCommune": "LA MARRE" }, { - "codePostal": "64220", - "codeCommune": "64047", - "libelleAcheminement": "ARNEGUY", - "nomCommune": "ARNEGUY" + "codePostal": "39150", + "codeCommune": "39130", + "libelleAcheminement": "NANCHEZ", + "nomCommune": "NANCHEZ" }, { - "codePostal": "31320", - "codeCommune": "31448", - "libelleAcheminement": "REBIGUE", - "nomCommune": "REBIGUE" + "codePostal": "27800", + "codeCommune": "27584", + "libelleAcheminement": "ST PAUL DE FOURQUES", + "nomCommune": "ST PAUL DE FOURQUES" }, { - "codePostal": "57220", - "codeCommune": "57252", - "libelleAcheminement": "GOMELANGE", - "nomCommune": "GOMELANGE" + "codePostal": "29650", + "codeCommune": "29014", + "libelleAcheminement": "BOTSORHEL", + "nomCommune": "BOTSORHEL" }, { - "codePostal": "02380", - "codeCommune": "02395", - "libelleAcheminement": "JUMENCOURT", - "nomCommune": "JUMENCOURT" + "codePostal": "39260", + "codeCommune": "39318", + "libelleAcheminement": "MARTIGNA", + "nomCommune": "MARTIGNA" }, { - "codePostal": "64120", - "codeCommune": "64049", - "libelleAcheminement": "AROUE ITHOROTS OLHAIBY", - "nomCommune": "AROUE ITHOROTS OLHAIBY" + "codePostal": "39150", + "codeCommune": "39130", + "libelleAcheminement": "NANCHEZ", + "nomCommune": "NANCHEZ" }, { - "codePostal": "31800", - "codeCommune": "31449", - "libelleAcheminement": "REGADES", - "nomCommune": "REGADES" + "codePostal": "27920", + "codeCommune": "27589", + "libelleAcheminement": "ST PIERRE DE BAILLEUL", + "nomCommune": "ST PIERRE DE BAILLEUL" }, { - "codePostal": "57815", - "codeCommune": "57253", - "libelleAcheminement": "GONDREXANGE", - "nomCommune": "GONDREXANGE" + "codePostal": "29160", + "codeCommune": "29042", + "libelleAcheminement": "CROZON", + "nomCommune": "CROZON" }, { - "codePostal": "02600", - "codeCommune": "02410", - "libelleAcheminement": "LARGNY SUR AUTOMNE", - "nomCommune": "LARGNY SUR AUTOMNE" + "codePostal": "39190", + "codeCommune": "39320", + "libelleAcheminement": "MAYNAL", + "nomCommune": "MAYNAL" }, { - "codePostal": "64350", - "codeCommune": "64052", - "libelleAcheminement": "ARRICAU BORDES", - "nomCommune": "ARRICAU BORDES" + "codePostal": "39110", + "codeCommune": "39133", + "libelleAcheminement": "CHAUX CHAMPAGNY", + "nomCommune": "CHAUX CHAMPAGNY" }, { - "codePostal": "31800", - "codeCommune": "31452", - "libelleAcheminement": "RIEUCAZE", - "nomCommune": "RIEUCAZE" + "codePostal": "27800", + "codeCommune": "27592", + "libelleAcheminement": "ST PIERRE DE SALERNE", + "nomCommune": "ST PIERRE DE SALERNE" }, { - "codePostal": "57680", - "codeCommune": "57254", - "libelleAcheminement": "GORZE", - "nomCommune": "GORZE" + "codePostal": "29460", + "codeCommune": "29043", + "libelleAcheminement": "DAOULAS", + "nomCommune": "DAOULAS" }, { - "codePostal": "02210", - "codeCommune": "02411", - "libelleAcheminement": "LATILLY", - "nomCommune": "LATILLY" + "codePostal": "39260", + "codeCommune": "39328", + "libelleAcheminement": "MEUSSIA", + "nomCommune": "MEUSSIA" }, { - "codePostal": "64420", - "codeCommune": "64053", - "libelleAcheminement": "ARRIEN", - "nomCommune": "ARRIEN" + "codePostal": "39230", + "codeCommune": "39136", + "libelleAcheminement": "CHEMENOT", + "nomCommune": "CHEMENOT" }, { - "codePostal": "31120", - "codeCommune": "31460", - "libelleAcheminement": "ROQUETTES", - "nomCommune": "ROQUETTES" + "codePostal": "27600", + "codeCommune": "27599", + "libelleAcheminement": "ST PIERRE LA GARENNE", + "nomCommune": "ST PIERRE LA GARENNE" }, { - "codePostal": "57170", - "codeCommune": "57257", - "libelleAcheminement": "GREMECEY", - "nomCommune": "GREMECEY" + "codePostal": "29100", + "codeCommune": "29046", + "libelleAcheminement": "DOUARNENEZ", + "nomCommune": "DOUARNENEZ" }, { - "codePostal": "02220", - "codeCommune": "02421", - "libelleAcheminement": "LESGES", - "nomCommune": "LESGES" + "codePostal": "39250", + "codeCommune": "39329", + "libelleAcheminement": "MIEGES", + "nomCommune": "MIEGES" }, { - "codePostal": "64660", - "codeCommune": "64064", - "libelleAcheminement": "ASASP ARROS", - "nomCommune": "ASASP ARROS" + "codePostal": "39120", + "codeCommune": "39138", + "libelleAcheminement": "CHEMIN", + "nomCommune": "CHEMIN" }, { - "codePostal": "31540", - "codeCommune": "31463", - "libelleAcheminement": "ROUMENS", - "nomCommune": "ROUMENS" + "codePostal": "27560", + "codeCommune": "27603", + "libelleAcheminement": "ST SIMEON", + "nomCommune": "ST SIMEON" }, { - "codePostal": "57510", - "codeCommune": "57263", - "libelleAcheminement": "GRUNDVILLER", - "nomCommune": "GRUNDVILLER" + "codePostal": "29860", + "codeCommune": "29047", + "libelleAcheminement": "LE DRENNEC", + "nomCommune": "LE DRENNEC" }, { - "codePostal": "02350", - "codeCommune": "02430", - "libelleAcheminement": "LIESSE NOTRE DAME", - "nomCommune": "LIESSE NOTRE DAME" + "codePostal": "39800", + "codeCommune": "39330", + "libelleAcheminement": "MIERY", + "nomCommune": "MIERY" }, { - "codePostal": "64290", - "codeCommune": "64072", - "libelleAcheminement": "AUBERTIN", - "nomCommune": "AUBERTIN" + "codePostal": "39120", + "codeCommune": "39139", + "libelleAcheminement": "CHENE BERNARD", + "nomCommune": "CHENE BERNARD" }, { - "codePostal": "31470", - "codeCommune": "31466", - "libelleAcheminement": "SAIGUEDE", - "nomCommune": "SAIGUEDE" + "codePostal": "27260", + "codeCommune": "27605", + "libelleAcheminement": "ST SYLVESTRE DE CORMEILLES", + "nomCommune": "ST SYLVESTRE DE CORMEILLES" }, { - "codePostal": "57260", - "codeCommune": "57268", - "libelleAcheminement": "GUEBLING", - "nomCommune": "GUEBLING" + "codePostal": "29590", + "codeCommune": "29053", + "libelleAcheminement": "LE FAOU", + "nomCommune": "LE FAOU" }, { - "codePostal": "02220", - "codeCommune": "02432", - "libelleAcheminement": "LIME", - "nomCommune": "LIME" + "codePostal": "39570", + "codeCommune": "39334", + "libelleAcheminement": "MOIRON", + "nomCommune": "MOIRON" }, { - "codePostal": "64330", - "codeCommune": "64074", - "libelleAcheminement": "AUBOUS", - "nomCommune": "AUBOUS" + "codePostal": "39290", + "codeCommune": "39141", + "libelleAcheminement": "CHEVIGNY", + "nomCommune": "CHEVIGNY" }, { - "codePostal": "31420", - "codeCommune": "31468", - "libelleAcheminement": "ST ANDRE", - "nomCommune": "ST ANDRE" + "codePostal": "27930", + "codeCommune": "27611", + "libelleAcheminement": "ST VIGOR", + "nomCommune": "ST VIGOR" }, { - "codePostal": "57690", - "codeCommune": "57276", - "libelleAcheminement": "GUINGLANGE", - "nomCommune": "GUINGLANGE" + "codePostal": "29690", + "codeCommune": "29054", + "libelleAcheminement": "LA FEUILLEE", + "nomCommune": "LA FEUILLEE" }, { - "codePostal": "02600", - "codeCommune": "02438", - "libelleAcheminement": "LONGPONT", - "nomCommune": "LONGPONT" + "codePostal": "39260", + "codeCommune": "39351", + "libelleAcheminement": "MONTCUSEL", + "nomCommune": "MONTCUSEL" }, { - "codePostal": "64390", - "codeCommune": "64083", - "libelleAcheminement": "AUTEVIELLE ST MARTIN BIDEREN", - "nomCommune": "AUTEVIELLE ST MARTIN BIDEREN" + "codePostal": "39110", + "codeCommune": "39155", + "libelleAcheminement": "CLUCY", + "nomCommune": "CLUCY" }, { - "codePostal": "31110", - "codeCommune": "31470", - "libelleAcheminement": "ST AVENTIN", - "nomCommune": "ST AVENTIN" + "codePostal": "27400", + "codeCommune": "27623", + "libelleAcheminement": "SURTAUVILLE", + "nomCommune": "SURTAUVILLE" }, { - "codePostal": "57570", - "codeCommune": "57282", - "libelleAcheminement": "HAGEN", - "nomCommune": "HAGEN" + "codePostal": "29260", + "codeCommune": "29055", + "libelleAcheminement": "LE FOLGOET", + "nomCommune": "LE FOLGOET" }, { - "codePostal": "02160", - "codeCommune": "02439", - "libelleAcheminement": "LES SEPTVALLONS", - "nomCommune": "LES SEPTVALLONS" + "codePostal": "39320", + "codeCommune": "39353", + "libelleAcheminement": "MONTFLEUR", + "nomCommune": "MONTFLEUR" }, { - "codePostal": "64300", - "codeCommune": "64087", - "libelleAcheminement": "BAIGTS DE BEARN", - "nomCommune": "BAIGTS DE BEARN" + "codePostal": "39140", + "codeCommune": "39167", + "libelleAcheminement": "COSGES", + "nomCommune": "COSGES" }, { - "codePostal": "31540", - "codeCommune": "31478", - "libelleAcheminement": "ST FELIX LAURAGAIS", - "nomCommune": "ST FELIX LAURAGAIS" + "codePostal": "27400", + "codeCommune": "27624", + "libelleAcheminement": "SURVILLE", + "nomCommune": "SURVILLE" }, { - "codePostal": "57870", - "codeCommune": "57298", - "libelleAcheminement": "HARREBERG", - "nomCommune": "HARREBERG" + "codePostal": "29940", + "codeCommune": "29057", + "libelleAcheminement": "LA FORET FOUESNANT", + "nomCommune": "LA FORET FOUESNANT" }, { - "codePostal": "02190", - "codeCommune": "02440", - "libelleAcheminement": "LOR", - "nomCommune": "LOR" + "codePostal": "39110", + "codeCommune": "39359", + "libelleAcheminement": "MONTMARLON", + "nomCommune": "MONTMARLON" }, { - "codePostal": "64160", - "codeCommune": "64095", - "libelleAcheminement": "BARINQUE", - "nomCommune": "BARINQUE" + "codePostal": "39570", + "codeCommune": "39169", + "libelleAcheminement": "COURBOUZON", + "nomCommune": "COURBOUZON" }, { - "codePostal": "31380", - "codeCommune": "31489", - "libelleAcheminement": "ST JEAN LHERM", - "nomCommune": "ST JEAN LHERM" + "codePostal": "27800", + "codeCommune": "27630", + "libelleAcheminement": "THIBOUVILLE", + "nomCommune": "THIBOUVILLE" }, { - "codePostal": "57700", - "codeCommune": "57306", - "libelleAcheminement": "HAYANGE", - "nomCommune": "HAYANGE" + "codePostal": "29710", + "codeCommune": "29065", + "libelleAcheminement": "GOURLIZON", + "nomCommune": "GOURLIZON" }, { - "codePostal": "02440", - "codeCommune": "02446", - "libelleAcheminement": "LY FONTAINE", - "nomCommune": "LY FONTAINE" + "codePostal": "39570", + "codeCommune": "39362", + "libelleAcheminement": "MONTMOROT", + "nomCommune": "MONTMOROT" }, { - "codePostal": "64220", - "codeCommune": "64107", - "libelleAcheminement": "BEHORLEGUY", - "nomCommune": "BEHORLEGUY" + "codePostal": "39200", + "codeCommune": "39174", + "libelleAcheminement": "COYRIERE", + "nomCommune": "COYRIERE" }, { - "codePostal": "31540", - "codeCommune": "31491", - "libelleAcheminement": "ST JULIA", - "nomCommune": "ST JULIA" + "codePostal": "27510", + "codeCommune": "27644", + "libelleAcheminement": "TILLY", + "nomCommune": "TILLY" }, { - "codePostal": "57820", - "codeCommune": "57315", - "libelleAcheminement": "HENRIDORFF", - "nomCommune": "HENRIDORFF" + "codePostal": "29180", + "codeCommune": "29066", + "libelleAcheminement": "GUENGAT", + "nomCommune": "GUENGAT" }, { - "codePostal": "02120", - "codeCommune": "02455", - "libelleAcheminement": "MALZY", - "nomCommune": "MALZY" + "codePostal": "39300", + "codeCommune": "39366", + "libelleAcheminement": "MONT SUR MONNET", + "nomCommune": "MONT SUR MONNET" }, { - "codePostal": "64800", - "codeCommune": "64109", - "libelleAcheminement": "BENEJACQ", - "nomCommune": "BENEJACQ" + "codePostal": "39600", + "codeCommune": "39176", + "libelleAcheminement": "CRAMANS", + "nomCommune": "CRAMANS" }, { - "codePostal": "31350", - "codeCommune": "31493", - "libelleAcheminement": "ST LARY BOUJEAN", - "nomCommune": "ST LARY BOUJEAN" + "codePostal": "27210", + "codeCommune": "27646", + "libelleAcheminement": "LE TORPT", + "nomCommune": "LE TORPT" }, { - "codePostal": "57830", - "codeCommune": "57320", - "libelleAcheminement": "HERTZING", - "nomCommune": "HERTZING" + "codePostal": "29300", + "codeCommune": "29071", + "libelleAcheminement": "GUILLIGOMARC H", + "nomCommune": "GUILLIGOMARC H" }, { - "codePostal": "02350", - "codeCommune": "02457", - "libelleAcheminement": "MARCHAIS", - "nomCommune": "MARCHAIS" + "codePostal": "39330", + "codeCommune": "39370", + "libelleAcheminement": "MOUCHARD", + "nomCommune": "MOUCHARD" }, { - "codePostal": "64270", - "codeCommune": "64113", - "libelleAcheminement": "BERGOUEY VIELLENAVE", - "nomCommune": "BERGOUEY VIELLENAVE" + "codePostal": "39570", + "codeCommune": "39177", + "libelleAcheminement": "HAUTEROCHE", + "nomCommune": "HAUTEROCHE" }, { - "codePostal": "31560", - "codeCommune": "31495", - "libelleAcheminement": "ST LEON", - "nomCommune": "ST LEON" + "codePostal": "27180", + "codeCommune": "27650", + "libelleAcheminement": "TOURNEDOS BOIS HUBERT", + "nomCommune": "TOURNEDOS BOIS HUBERT" }, { - "codePostal": "57320", - "codeCommune": "57322", - "libelleAcheminement": "HESTROFF", - "nomCommune": "HESTROFF" + "codePostal": "29290", + "codeCommune": "29076", + "libelleAcheminement": "MILIZAC GUIPRONVEL", + "nomCommune": "MILIZAC GUIPRONVEL" }, { - "codePostal": "02300", - "codeCommune": "02461", - "libelleAcheminement": "MAREST DAMPCOURT", - "nomCommune": "MAREST DAMPCOURT" + "codePostal": "39160", + "codeCommune": "39378", + "libelleAcheminement": "LES TROIS CHATEAUX", + "nomCommune": "LES TROIS CHATEAUX" }, { - "codePostal": "64350", - "codeCommune": "64118", - "libelleAcheminement": "BETRACQ", - "nomCommune": "BETRACQ" + "codePostal": "39290", + "codeCommune": "39188", + "libelleAcheminement": "DAMMARTIN MARPAIN", + "nomCommune": "DAMMARTIN MARPAIN" }, { - "codePostal": "31470", - "codeCommune": "31499", - "libelleAcheminement": "ST LYS", - "nomCommune": "ST LYS" + "codePostal": "27110", + "codeCommune": "27658", + "libelleAcheminement": "LE TREMBLAY OMONVILLE", + "nomCommune": "LE TREMBLAY OMONVILLE" }, { - "codePostal": "57920", - "codeCommune": "57331", - "libelleAcheminement": "HOMBOURG BUDANGE", - "nomCommune": "HOMBOURG BUDANGE" + "codePostal": "29460", + "codeCommune": "29078", + "libelleAcheminement": "HANVEC", + "nomCommune": "HANVEC" }, { - "codePostal": "02130", - "codeCommune": "02462", - "libelleAcheminement": "MAREUIL EN DOLE", - "nomCommune": "MAREUIL EN DOLE" + "codePostal": "39570", + "codeCommune": "39390", + "libelleAcheminement": "NOGNA", + "nomCommune": "NOGNA" }, { - "codePostal": "64230", - "codeCommune": "64121", - "libelleAcheminement": "BEYRIE EN BEARN", - "nomCommune": "BEYRIE EN BEARN" + "codePostal": "39500", + "codeCommune": "39189", + "libelleAcheminement": "DAMPARIS", + "nomCommune": "DAMPARIS" }, { - "codePostal": "31590", - "codeCommune": "31501", - "libelleAcheminement": "ST MARCEL PAULEL", - "nomCommune": "ST MARCEL PAULEL" + "codePostal": "27110", + "codeCommune": "27663", + "libelleAcheminement": "LE TRONCQ", + "nomCommune": "LE TRONCQ" }, { - "codePostal": "57510", - "codeCommune": "57337", - "libelleAcheminement": "HOSTE", - "nomCommune": "HOSTE" + "codePostal": "29810", + "codeCommune": "29098", + "libelleAcheminement": "LAMPAUL PLOUARZEL", + "nomCommune": "LAMPAUL PLOUARZEL" }, { - "codePostal": "02140", - "codeCommune": "02463", - "libelleAcheminement": "MARFONTAINE", - "nomCommune": "MARFONTAINE" + "codePostal": "39250", + "codeCommune": "39393", + "libelleAcheminement": "ONGLIERES", + "nomCommune": "ONGLIERES" }, { - "codePostal": "64520", - "codeCommune": "64123", - "libelleAcheminement": "BIDACHE", - "nomCommune": "BIDACHE" + "codePostal": "39100", + "codeCommune": "39198", + "libelleAcheminement": "DOLE", + "nomCommune": "DOLE" }, { - "codePostal": "31110", - "codeCommune": "31508", - "libelleAcheminement": "ST PAUL D OUEIL", - "nomCommune": "ST PAUL D OUEIL" + "codePostal": "27480", + "codeCommune": "27664", + "libelleAcheminement": "LE TRONQUAY", + "nomCommune": "LE TRONQUAY" }, { - "codePostal": "57970", - "codeCommune": "57345", - "libelleAcheminement": "INGLANGE", - "nomCommune": "INGLANGE" + "codePostal": "29260", + "codeCommune": "29100", + "libelleAcheminement": "LANARVILY", + "nomCommune": "LANARVILY" }, { - "codePostal": "02250", - "codeCommune": "02468", - "libelleAcheminement": "MARLE", - "nomCommune": "MARLE" + "codePostal": "39700", + "codeCommune": "39396", + "libelleAcheminement": "ORCHAMPS", + "nomCommune": "ORCHAMPS" }, { - "codePostal": "64780", - "codeCommune": "64124", - "libelleAcheminement": "BIDARRAY", - "nomCommune": "BIDARRAY" + "codePostal": "39210", + "codeCommune": "39199", + "libelleAcheminement": "DOMBLANS", + "nomCommune": "DOMBLANS" }, { - "codePostal": "31590", - "codeCommune": "31511", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "27300", + "codeCommune": "27667", + "libelleAcheminement": "VALAILLES", + "nomCommune": "VALAILLES" }, { - "codePostal": "57590", - "codeCommune": "57349", - "libelleAcheminement": "JALLAUCOURT", - "nomCommune": "JALLAUCOURT" + "codePostal": "29560", + "codeCommune": "29104", + "libelleAcheminement": "LANDEVENNEC", + "nomCommune": "LANDEVENNEC" }, { - "codePostal": "02800", - "codeCommune": "02473", - "libelleAcheminement": "MAYOT", - "nomCommune": "MAYOT" + "codePostal": "39350", + "codeCommune": "39398", + "libelleAcheminement": "OUGNEY", + "nomCommune": "OUGNEY" }, { - "codePostal": "64300", - "codeCommune": "64131", - "libelleAcheminement": "BIRON", - "nomCommune": "BIRON" + "codePostal": "39130", + "codeCommune": "39201", + "libelleAcheminement": "DOUCIER", + "nomCommune": "DOUCIER" }, { - "codePostal": "31290", - "codeCommune": "31514", - "libelleAcheminement": "ST ROME", - "nomCommune": "ST ROME" + "codePostal": "27110", + "codeCommune": "27677", + "libelleAcheminement": "VENON", + "nomCommune": "VENON" }, { - "codePostal": "57590", - "codeCommune": "57354", - "libelleAcheminement": "JUVILLE", - "nomCommune": "JUVILLE" + "codePostal": "29400", + "codeCommune": "29105", + "libelleAcheminement": "LANDIVISIAU", + "nomCommune": "LANDIVISIAU" }, { - "codePostal": "02270", - "codeCommune": "02491", - "libelleAcheminement": "MONCEAU LE NEUF ET FAUCOUZY", - "nomCommune": "MONCEAU LE NEUF ET FAUCOUZY" + "codePostal": "39380", + "codeCommune": "39399", + "libelleAcheminement": "OUNANS", + "nomCommune": "OUNANS" }, { - "codePostal": "64510", - "codeCommune": "64133", - "libelleAcheminement": "BOEIL BEZING", - "nomCommune": "BOEIL BEZING" + "codePostal": "39250", + "codeCommune": "39203", + "libelleAcheminement": "DOYE", + "nomCommune": "DOYE" }, { - "codePostal": "31470", - "codeCommune": "31518", - "libelleAcheminement": "ST THOMAS", - "nomCommune": "ST THOMAS" + "codePostal": "27180", + "codeCommune": "27678", + "libelleAcheminement": "LES VENTES", + "nomCommune": "LES VENTES" }, { - "codePostal": "57920", - "codeCommune": "57358", - "libelleAcheminement": "KEDANGE SUR CANNER", - "nomCommune": "KEDANGE SUR CANNER" + "codePostal": "29510", + "codeCommune": "29106", + "libelleAcheminement": "LANDREVARZEC", + "nomCommune": "LANDREVARZEC" }, { - "codePostal": "02120", - "codeCommune": "02494", - "libelleAcheminement": "MONCEAU SUR OISE", - "nomCommune": "MONCEAU SUR OISE" + "codePostal": "39570", + "codeCommune": "39411", + "libelleAcheminement": "PERRIGNY", + "nomCommune": "PERRIGNY" }, { - "codePostal": "64490", - "codeCommune": "64136", - "libelleAcheminement": "BORCE", - "nomCommune": "BORCE" + "codePostal": "39700", + "codeCommune": "39205", + "libelleAcheminement": "ECLANS NENON", + "nomCommune": "ECLANS NENON" }, { - "codePostal": "31260", - "codeCommune": "31523", - "libelleAcheminement": "SALIES DU SALAT", - "nomCommune": "SALIES DU SALAT" + "codePostal": "27110", + "codeCommune": "27695", + "libelleAcheminement": "VILLEZ SUR LE NEUBOURG", + "nomCommune": "VILLEZ SUR LE NEUBOURG" }, { - "codePostal": "57830", - "codeCommune": "57362", - "libelleAcheminement": "KERPRICH AUX BOIS", - "nomCommune": "KERPRICH AUX BOIS" + "codePostal": "29710", + "codeCommune": "29108", + "libelleAcheminement": "LANDUDEC", + "nomCommune": "LANDUDEC" }, { - "codePostal": "02470", - "codeCommune": "02496", - "libelleAcheminement": "MONNES", - "nomCommune": "MONNES" + "codePostal": "39300", + "codeCommune": "39419", + "libelleAcheminement": "PILLEMOINE", + "nomCommune": "PILLEMOINE" }, { - "codePostal": "64510", - "codeCommune": "64138", - "libelleAcheminement": "BORDES", - "nomCommune": "BORDES" + "codePostal": "39600", + "codeCommune": "39206", + "libelleAcheminement": "ECLEUX", + "nomCommune": "ECLEUX" }, { - "codePostal": "31390", - "codeCommune": "31525", - "libelleAcheminement": "SALLES SUR GARONNE", - "nomCommune": "SALLES SUR GARONNE" + "codePostal": "27400", + "codeCommune": "27697", + "libelleAcheminement": "VIRONVAY", + "nomCommune": "VIRONVAY" }, { - "codePostal": "57970", - "codeCommune": "57370", - "libelleAcheminement": "KOENIGSMACKER", - "nomCommune": "KOENIGSMACKER" + "codePostal": "29840", + "codeCommune": "29109", + "libelleAcheminement": "LANDUNVEZ", + "nomCommune": "LANDUNVEZ" }, { - "codePostal": "02340", - "codeCommune": "02502", - "libelleAcheminement": "MONTCORNET", - "nomCommune": "MONTCORNET" + "codePostal": "39150", + "codeCommune": "39424", + "libelleAcheminement": "LES PLANCHES EN MONTAGNE", + "nomCommune": "LES PLANCHES EN MONTAGNE" }, { - "codePostal": "64370", - "codeCommune": "64144", - "libelleAcheminement": "BOUMOURT", - "nomCommune": "BOUMOURT" + "codePostal": "39160", + "codeCommune": "39209", + "libelleAcheminement": "VAL D EPY", + "nomCommune": "VAL D EPY" }, { - "codePostal": "31300", - "codeCommune": "31555", - "libelleAcheminement": "TOULOUSE", - "nomCommune": "TOULOUSE" + "codePostal": "28700", + "codeCommune": "28013", + "libelleAcheminement": "AUNAY SOUS AUNEAU", + "nomCommune": "AUNAY SOUS AUNEAU" }, { - "codePostal": "57410", - "codeCommune": "57376", - "libelleAcheminement": "LAMBACH", - "nomCommune": "LAMBACH" + "codePostal": "29190", + "codeCommune": "29115", + "libelleAcheminement": "LANNEDERN", + "nomCommune": "LANNEDERN" }, { - "codePostal": "02810", - "codeCommune": "02512", - "libelleAcheminement": "MONTIGNY L ALLIER", - "nomCommune": "MONTIGNY L ALLIER" + "codePostal": "39250", + "codeCommune": "39428", + "libelleAcheminement": "PLENISETTE", + "nomCommune": "PLENISETTE" }, { - "codePostal": "64450", - "codeCommune": "64146", - "libelleAcheminement": "BOURNOS", - "nomCommune": "BOURNOS" + "codePostal": "39250", + "codeCommune": "39214", + "libelleAcheminement": "ESSERVAL TARTRE", + "nomCommune": "ESSERVAL TARTRE" }, { - "codePostal": "31510", - "codeCommune": "31564", - "libelleAcheminement": "VALCABRERE", - "nomCommune": "VALCABRERE" + "codePostal": "28700", + "codeCommune": "28015", + "libelleAcheminement": "AUNEAU BLEURY ST SYMPHORIEN", + "nomCommune": "AUNEAU BLEURY ST SYMPHORIEN" }, { - "codePostal": "57810", - "codeCommune": "57383", - "libelleAcheminement": "LANGUIMBERG", - "nomCommune": "LANGUIMBERG" + "codePostal": "29280", + "codeCommune": "29130", + "libelleAcheminement": "LOCMARIA PLOUZANE", + "nomCommune": "LOCMARIA PLOUZANE" }, { - "codePostal": "02330", - "codeCommune": "02515", - "libelleAcheminement": "MONTIGNY LES CONDE", - "nomCommune": "MONTIGNY LES CONDE" + "codePostal": "39120", + "codeCommune": "39429", + "libelleAcheminement": "PLEURE", + "nomCommune": "PLEURE" }, { - "codePostal": "64390", - "codeCommune": "64151", - "libelleAcheminement": "BURGARONNE", - "nomCommune": "BURGARONNE" + "codePostal": "39130", + "codeCommune": "39216", + "libelleAcheminement": "ETIVAL", + "nomCommune": "ETIVAL" }, { - "codePostal": "31570", - "codeCommune": "31567", - "libelleAcheminement": "VALLESVILLES", - "nomCommune": "VALLESVILLES" + "codePostal": "28300", + "codeCommune": "28022", + "libelleAcheminement": "BAILLEAU L EVEQUE", + "nomCommune": "BAILLEAU L EVEQUE" }, { - "codePostal": "57630", - "codeCommune": "57399", - "libelleAcheminement": "LEZEY", - "nomCommune": "LEZEY" + "codePostal": "29241", + "codeCommune": "29133", + "libelleAcheminement": "LOCQUIREC", + "nomCommune": "LOCQUIREC" }, { - "codePostal": "02270", - "codeCommune": "02517", - "libelleAcheminement": "MONTIGNY SUR CRECY", - "nomCommune": "MONTIGNY SUR CRECY" + "codePostal": "39270", + "codeCommune": "39455", + "libelleAcheminement": "REITHOUSE", + "nomCommune": "REITHOUSE" }, { - "codePostal": "64330", - "codeCommune": "64153", - "libelleAcheminement": "BUROSSE MENDOUSSE", - "nomCommune": "BUROSSE MENDOUSSE" + "codePostal": "39700", + "codeCommune": "39218", + "libelleAcheminement": "ETREPIGNEY", + "nomCommune": "ETREPIGNEY" }, { - "codePostal": "31450", - "codeCommune": "31568", - "libelleAcheminement": "VARENNES", - "nomCommune": "VARENNES" + "codePostal": "28310", + "codeCommune": "28025", + "libelleAcheminement": "BARMAINVILLE", + "nomCommune": "BARMAINVILLE" }, { - "codePostal": "57420", - "codeCommune": "57422", - "libelleAcheminement": "LOUVIGNY", - "nomCommune": "LOUVIGNY" + "codePostal": "29750", + "codeCommune": "29135", + "libelleAcheminement": "LOCTUDY", + "nomCommune": "LOCTUDY" }, { - "codePostal": "02160", - "codeCommune": "02530", - "libelleAcheminement": "MOULINS", - "nomCommune": "MOULINS" + "codePostal": "39400", + "codeCommune": "39470", + "libelleAcheminement": "LES ROUSSES", + "nomCommune": "LES ROUSSES" }, { - "codePostal": "64260", - "codeCommune": "64157", - "libelleAcheminement": "BUZY", - "nomCommune": "BUZY" + "codePostal": "39250", + "codeCommune": "39221", + "libelleAcheminement": "LA FAVIERE", + "nomCommune": "LA FAVIERE" }, { - "codePostal": "31460", - "codeCommune": "31571", - "libelleAcheminement": "VENDINE", - "nomCommune": "VENDINE" + "codePostal": "28480", + "codeCommune": "28031", + "libelleAcheminement": "BEAUMONT LES AUTELS", + "nomCommune": "BEAUMONT LES AUTELS" }, { - "codePostal": "57170", - "codeCommune": "57423", - "libelleAcheminement": "LUBECOURT", - "nomCommune": "LUBECOURT" + "codePostal": "29460", + "codeCommune": "29137", + "libelleAcheminement": "LOGONNA DAOULAS", + "nomCommune": "LOGONNA DAOULAS" }, { - "codePostal": "02400", - "codeCommune": "02540", - "libelleAcheminement": "NESLES LA MONTAGNE", - "nomCommune": "NESLES LA MONTAGNE" + "codePostal": "39140", + "codeCommune": "39471", + "libelleAcheminement": "RUFFEY SUR SEILLE", + "nomCommune": "RUFFEY SUR SEILLE" }, { - "codePostal": "64520", - "codeCommune": "64161", - "libelleAcheminement": "CAME", - "nomCommune": "CAME" + "codePostal": "39460", + "codeCommune": "39228", + "libelleAcheminement": "FONCINE LE HAUT", + "nomCommune": "FONCINE LE HAUT" }, { - "codePostal": "31290", - "codeCommune": "31576", - "libelleAcheminement": "VIEILLEVIGNE", - "nomCommune": "VIEILLEVIGNE" + "codePostal": "28300", + "codeCommune": "28034", + "libelleAcheminement": "BERCHERES ST GERMAIN", + "nomCommune": "BERCHERES ST GERMAIN" }, { - "codePostal": "57530", - "codeCommune": "57431", - "libelleAcheminement": "MAIZEROY", - "nomCommune": "MAIZEROY" + "codePostal": "29590", + "codeCommune": "29139", + "libelleAcheminement": "LOPEREC", + "nomCommune": "LOPEREC" }, { - "codePostal": "02250", - "codeCommune": "02545", - "libelleAcheminement": "LA NEUVILLE BOSMONT", - "nomCommune": "LA NEUVILLE BOSMONT" + "codePostal": "39230", + "codeCommune": "39489", + "libelleAcheminement": "ST LOTHAIN", + "nomCommune": "ST LOTHAIN" }, { - "codePostal": "64220", - "codeCommune": "64166", - "libelleAcheminement": "CARO", - "nomCommune": "CARO" + "codePostal": "39230", + "codeCommune": "39234", + "libelleAcheminement": "FOULENAY", + "nomCommune": "FOULENAY" }, { - "codePostal": "31860", - "codeCommune": "31580", - "libelleAcheminement": "VILLATE", - "nomCommune": "VILLATE" + "codePostal": "28340", + "codeCommune": "28046", + "libelleAcheminement": "BOISSY LES PERCHE", + "nomCommune": "BOISSY LES PERCHE" }, { - "codePostal": "57660", - "codeCommune": "57453", - "libelleAcheminement": "MAXSTADT", - "nomCommune": "MAXSTADT" + "codePostal": "29800", + "codeCommune": "29144", + "libelleAcheminement": "LA MARTYRE", + "nomCommune": "LA MARTYRE" }, { - "codePostal": "02100", - "codeCommune": "02549", - "libelleAcheminement": "NEUVILLE ST AMAND", - "nomCommune": "NEUVILLE ST AMAND" + "codePostal": "39170", + "codeCommune": "39491", + "libelleAcheminement": "COTEAUX DU LIZON", + "nomCommune": "COTEAUX DU LIZON" }, { - "codePostal": "64160", - "codeCommune": "64167", - "libelleAcheminement": "CARRERE", - "nomCommune": "CARRERE" + "codePostal": "39570", + "codeCommune": "39250", + "libelleAcheminement": "GERUGE", + "nomCommune": "GERUGE" }, { - "codePostal": "31620", - "codeCommune": "31581", - "libelleAcheminement": "VILLAUDRIC", - "nomCommune": "VILLAUDRIC" + "codePostal": "28210", + "codeCommune": "28054", + "libelleAcheminement": "LE BOULLAY MIVOYE", + "nomCommune": "LE BOULLAY MIVOYE" }, { - "codePostal": "57960", - "codeCommune": "57456", - "libelleAcheminement": "MEISENTHAL", - "nomCommune": "MEISENTHAL" + "codePostal": "29300", + "codeCommune": "29147", + "libelleAcheminement": "MELLAC", + "nomCommune": "MELLAC" }, { - "codePostal": "02880", - "codeCommune": "02551", - "libelleAcheminement": "NEUVILLE SUR MARGIVAL", - "nomCommune": "NEUVILLE SUR MARGIVAL" + "codePostal": "39130", + "codeCommune": "39493", + "libelleAcheminement": "ST MAURICE CRILLAT", + "nomCommune": "ST MAURICE CRILLAT" }, { - "codePostal": "64270", - "codeCommune": "64170", - "libelleAcheminement": "CASTAGNEDE", - "nomCommune": "CASTAGNEDE" + "codePostal": "39250", + "codeCommune": "39254", + "libelleAcheminement": "GILLOIS", + "nomCommune": "GILLOIS" }, { - "codePostal": "31800", - "codeCommune": "31585", - "libelleAcheminement": "VILLENEUVE DE RIVIERE", - "nomCommune": "VILLENEUVE DE RIVIERE" + "codePostal": "28410", + "codeCommune": "28056", + "libelleAcheminement": "BOUTIGNY PROUAIS", + "nomCommune": "BOUTIGNY PROUAIS" }, { - "codePostal": "57560", - "codeCommune": "57461", - "libelleAcheminement": "METAIRIES ST QUIRIN", - "nomCommune": "METAIRIES ST QUIRIN" + "codePostal": "29350", + "codeCommune": "29150", + "libelleAcheminement": "MOELAN SUR MER", + "nomCommune": "MOELAN SUR MER" }, { - "codePostal": "02170", - "codeCommune": "02558", - "libelleAcheminement": "LE NOUVION EN THIERACHE", - "nomCommune": "LE NOUVION EN THIERACHE" + "codePostal": "39110", + "codeCommune": "39500", + "libelleAcheminement": "SALINS LES BAINS", + "nomCommune": "SALINS LES BAINS" }, { - "codePostal": "64170", - "codeCommune": "64171", - "libelleAcheminement": "CASTEIDE CAMI", - "nomCommune": "CASTEIDE CAMI" + "codePostal": "39190", + "codeCommune": "39255", + "libelleAcheminement": "GIZIA", + "nomCommune": "GIZIA" }, { - "codePostal": "31620", - "codeCommune": "31587", - "libelleAcheminement": "VILLENEUVE LES BOULOC", - "nomCommune": "VILLENEUVE LES BOULOC" + "codePostal": "28800", + "codeCommune": "28057", + "libelleAcheminement": "BOUVILLE", + "nomCommune": "BOUVILLE" }, { - "codePostal": "57980", - "codeCommune": "57466", - "libelleAcheminement": "METZING", - "nomCommune": "METZING" + "codePostal": "29920", + "codeCommune": "29153", + "libelleAcheminement": "NEVEZ", + "nomCommune": "NEVEZ" }, { - "codePostal": "02120", - "codeCommune": "02563", - "libelleAcheminement": "NOYALES", - "nomCommune": "NOYALES" + "codePostal": "39300", + "codeCommune": "39503", + "libelleAcheminement": "SAPOIS", + "nomCommune": "SAPOIS" }, { - "codePostal": "64460", - "codeCommune": "64173", - "libelleAcheminement": "CASTEIDE DOAT", - "nomCommune": "CASTEIDE DOAT" + "codePostal": "39150", + "codeCommune": "39258", + "libelleAcheminement": "GRANDE RIVIERE CHATEAU", + "nomCommune": "GRANDE RIVIERE CHATEAU" }, { - "codePostal": "32720", - "codeCommune": "32004", - "libelleAcheminement": "ARBLADE LE BAS", - "nomCommune": "ARBLADE LE BAS" + "codePostal": "28300", + "codeCommune": "28060", + "libelleAcheminement": "BRICONVILLE", + "nomCommune": "BRICONVILLE" }, { - "codePostal": "57300", - "codeCommune": "57474", - "libelleAcheminement": "MONDELANGE", - "nomCommune": "MONDELANGE" + "codePostal": "29550", + "codeCommune": "29166", + "libelleAcheminement": "PLOEVEN", + "nomCommune": "PLOEVEN" }, { - "codePostal": "02160", - "codeCommune": "02565", - "libelleAcheminement": "OEUILLY", - "nomCommune": "OEUILLY" + "codePostal": "39270", + "codeCommune": "39504", + "libelleAcheminement": "SARROGNA", + "nomCommune": "SARROGNA" }, { - "codePostal": "64300", - "codeCommune": "64179", - "libelleAcheminement": "CASTETNER", - "nomCommune": "CASTETNER" + "codePostal": "39600", + "codeCommune": "39259", + "libelleAcheminement": "GRANGE DE VAIVRE", + "nomCommune": "GRANGE DE VAIVRE" }, { - "codePostal": "32430", - "codeCommune": "32007", - "libelleAcheminement": "ARDIZAS", - "nomCommune": "ARDIZAS" + "codePostal": "28410", + "codeCommune": "28064", + "libelleAcheminement": "BU", + "nomCommune": "BU" }, { - "codePostal": "57670", - "codeCommune": "57478", - "libelleAcheminement": "MONTDIDIER", - "nomCommune": "MONTDIDIER" + "codePostal": "29120", + "codeCommune": "29171", + "libelleAcheminement": "PLOMEUR", + "nomCommune": "PLOMEUR" }, { - "codePostal": "02860", - "codeCommune": "02573", - "libelleAcheminement": "ORGEVAL", - "nomCommune": "ORGEVAL" + "codePostal": "39270", + "codeCommune": "39504", + "libelleAcheminement": "SARROGNA", + "nomCommune": "SARROGNA" }, { - "codePostal": "64370", - "codeCommune": "64181", - "libelleAcheminement": "CASTILLON D ARTHEZ", - "nomCommune": "CASTILLON D ARTHEZ" + "codePostal": "39130", + "codeCommune": "39265", + "libelleAcheminement": "HAUTECOUR", + "nomCommune": "HAUTECOUR" }, { - "codePostal": "32230", - "codeCommune": "32008", - "libelleAcheminement": "ARMENTIEUX", - "nomCommune": "ARMENTIEUX" + "codePostal": "28240", + "codeCommune": "28071", + "libelleAcheminement": "CHAMPROND EN GATINE", + "nomCommune": "CHAMPROND EN GATINE" }, { - "codePostal": "57645", - "codeCommune": "57482", - "libelleAcheminement": "OGY MONTOY FLANVILLE", - "nomCommune": "OGY MONTOY FLANVILLE" + "codePostal": "29810", + "codeCommune": "29177", + "libelleAcheminement": "PLOUARZEL", + "nomCommune": "PLOUARZEL" }, { - "codePostal": "02550", - "codeCommune": "02574", - "libelleAcheminement": "ORIGNY EN THIERACHE", - "nomCommune": "ORIGNY EN THIERACHE" + "codePostal": "39230", + "codeCommune": "39508", + "libelleAcheminement": "SELLIERES", + "nomCommune": "SELLIERES" }, { - "codePostal": "64130", - "codeCommune": "64187", - "libelleAcheminement": "CHARRITTE DE BAS", - "nomCommune": "CHARRITTE DE BAS" + "codePostal": "39360", + "codeCommune": "39269", + "libelleAcheminement": "JEURRE", + "nomCommune": "JEURRE" }, { - "codePostal": "32300", - "codeCommune": "32015", - "libelleAcheminement": "AUJAN MOURNEDE", - "nomCommune": "AUJAN MOURNEDE" + "codePostal": "28200", + "codeCommune": "28075", + "libelleAcheminement": "LA CHAPELLE DU NOYER", + "nomCommune": "LA CHAPELLE DU NOYER" }, { - "codePostal": "57170", - "codeCommune": "57485", - "libelleAcheminement": "MORVILLE LES VIC", - "nomCommune": "MORVILLE LES VIC" + "codePostal": "29620", + "codeCommune": "29182", + "libelleAcheminement": "PLOUEGAT GUERAND", + "nomCommune": "PLOUEGAT GUERAND" }, { - "codePostal": "02160", - "codeCommune": "02582", - "libelleAcheminement": "PAISSY", - "nomCommune": "PAISSY" + "codePostal": "39310", + "codeCommune": "39510", + "libelleAcheminement": "SEPTMONCEL LES MOLUNES", + "nomCommune": "SEPTMONCEL LES MOLUNES" }, { - "codePostal": "64130", - "codeCommune": "64188", - "libelleAcheminement": "CHERAUTE", - "nomCommune": "CHERAUTE" + "codePostal": "39320", + "codeCommune": "39273", + "libelleAcheminement": "MONTLAINSIA", + "nomCommune": "MONTLAINSIA" }, { - "codePostal": "32120", - "codeCommune": "32026", - "libelleAcheminement": "BAJONNETTE", - "nomCommune": "BAJONNETTE" + "codePostal": "28500", + "codeCommune": "28076", + "libelleAcheminement": "LA CHAPELLE FORAINVILLIERS", + "nomCommune": "LA CHAPELLE FORAINVILLIERS" }, { - "codePostal": "57770", - "codeCommune": "57488", - "libelleAcheminement": "MOUSSEY", - "nomCommune": "MOUSSEY" + "codePostal": "29780", + "codeCommune": "29197", + "libelleAcheminement": "PLOUHINEC", + "nomCommune": "PLOUHINEC" }, { - "codePostal": "02260", - "codeCommune": "02584", - "libelleAcheminement": "PAPLEUX", - "nomCommune": "PAPLEUX" + "codePostal": "39230", + "codeCommune": "39511", + "libelleAcheminement": "SERGENAUX", + "nomCommune": "SERGENAUX" }, { - "codePostal": "64350", - "codeCommune": "64196", - "libelleAcheminement": "CROUSEILLES", - "nomCommune": "CROUSEILLES" + "codePostal": "39300", + "codeCommune": "39277", + "libelleAcheminement": "LE LARDERET", + "nomCommune": "LE LARDERET" }, { - "codePostal": "32100", - "codeCommune": "32037", - "libelleAcheminement": "BEAUMONT", - "nomCommune": "BEAUMONT" + "codePostal": "28330", + "codeCommune": "28080", + "libelleAcheminement": "CHARBONNIERES", + "nomCommune": "CHARBONNIERES" }, { - "codePostal": "57620", - "codeCommune": "57489", - "libelleAcheminement": "MOUTERHOUSE", - "nomCommune": "MOUTERHOUSE" + "codePostal": "29610", + "codeCommune": "29199", + "libelleAcheminement": "PLOUIGNEAU", + "nomCommune": "PLOUIGNEAU" }, { - "codePostal": "02200", - "codeCommune": "02598", - "libelleAcheminement": "PERNANT", - "nomCommune": "PERNANT" + "codePostal": "39700", + "codeCommune": "39513", + "libelleAcheminement": "SERMANGE", + "nomCommune": "SERMANGE" }, { - "codePostal": "64370", - "codeCommune": "64200", - "libelleAcheminement": "DOAZON", - "nomCommune": "DOAZON" + "codePostal": "39700", + "codeCommune": "39284", + "libelleAcheminement": "LAVANGEOT", + "nomCommune": "LAVANGEOT" }, { - "codePostal": "32450", - "codeCommune": "32040", - "libelleAcheminement": "BEDECHAN", - "nomCommune": "BEDECHAN" + "codePostal": "28000", + "codeCommune": "28085", + "libelleAcheminement": "CHARTRES", + "nomCommune": "CHARTRES" }, { - "codePostal": "57910", - "codeCommune": "57499", - "libelleAcheminement": "NEUFGRANGE", - "nomCommune": "NEUFGRANGE" + "codePostal": "29270", + "codeCommune": "29205", + "libelleAcheminement": "PLOUNEVEZEL", + "nomCommune": "PLOUNEVEZEL" }, { - "codePostal": "02300", - "codeCommune": "02599", - "libelleAcheminement": "PIERREMANDE", - "nomCommune": "PIERREMANDE" + "codePostal": "39300", + "codeCommune": "39517", + "libelleAcheminement": "SIROD", + "nomCommune": "SIROD" }, { - "codePostal": "64450", - "codeCommune": "64203", - "libelleAcheminement": "DOUMY", - "nomCommune": "DOUMY" + "codePostal": "39240", + "codeCommune": "39290", + "libelleAcheminement": "VALZIN EN PETITE MONTAGNE", + "nomCommune": "VALZIN EN PETITE MONTAGNE" }, { - "codePostal": "32140", - "codeCommune": "32041", - "libelleAcheminement": "BELLEGARDE", - "nomCommune": "BELLEGARDE" + "codePostal": "28270", + "codeCommune": "28087", + "libelleAcheminement": "CHATAINCOURT", + "nomCommune": "CHATAINCOURT" }, { - "codePostal": "57830", - "codeCommune": "57500", - "libelleAcheminement": "NEUFMOULINS", - "nomCommune": "NEUFMOULINS" + "codePostal": "29280", + "codeCommune": "29212", + "libelleAcheminement": "PLOUZANE", + "nomCommune": "PLOUZANE" }, { - "codePostal": "02350", - "codeCommune": "02600", - "libelleAcheminement": "PIERREPONT", - "nomCommune": "PIERREPONT" + "codePostal": "39350", + "codeCommune": "39527", + "libelleAcheminement": "TAXENNE", + "nomCommune": "TAXENNE" }, { - "codePostal": "64270", - "codeCommune": "64205", - "libelleAcheminement": "ESCOS", - "nomCommune": "ESCOS" + "codePostal": "39300", + "codeCommune": "39301", + "libelleAcheminement": "LOULLE", + "nomCommune": "LOULLE" }, { - "codePostal": "32100", - "codeCommune": "32044", - "libelleAcheminement": "BERAUT", - "nomCommune": "BERAUT" + "codePostal": "28120", + "codeCommune": "28095", + "libelleAcheminement": "CHAUFFOURS", + "nomCommune": "CHAUFFOURS" }, { - "codePostal": "57790", - "codeCommune": "57509", - "libelleAcheminement": "NITTING", - "nomCommune": "NITTING" + "codePostal": "29440", + "codeCommune": "29213", + "libelleAcheminement": "PLOUZEVEDE", + "nomCommune": "PLOUZEVEDE" }, { - "codePostal": "02480", - "codeCommune": "02604", - "libelleAcheminement": "PITHON", - "nomCommune": "PITHON" + "codePostal": "39160", + "codeCommune": "39532", + "libelleAcheminement": "THOISSIA", + "nomCommune": "THOISSIA" }, { - "codePostal": "64420", - "codeCommune": "64216", - "libelleAcheminement": "ESPOEY", - "nomCommune": "ESPOEY" + "codePostal": "39350", + "codeCommune": "39302", + "libelleAcheminement": "LOUVATANGE", + "nomCommune": "LOUVATANGE" }, { - "codePostal": "32300", - "codeCommune": "32045", - "libelleAcheminement": "BERDOUES", - "nomCommune": "BERDOUES" + "codePostal": "28500", + "codeCommune": "28098", + "libelleAcheminement": "CHERISY", + "nomCommune": "CHERISY" }, { - "codePostal": "57140", - "codeCommune": "57511", - "libelleAcheminement": "NORROY LE VENEUR", - "nomCommune": "NORROY LE VENEUR" + "codePostal": "29710", + "codeCommune": "29225", + "libelleAcheminement": "POULDREUZIC", + "nomCommune": "POULDREUZIC" }, { - "codePostal": "02860", - "codeCommune": "02609", - "libelleAcheminement": "PLOYART ET VAURSEINE", - "nomCommune": "PLOYART ET VAURSEINE" + "codePostal": "39160", + "codeCommune": "39551", + "libelleAcheminement": "VERIA", + "nomCommune": "VERIA" }, { - "codePostal": "64490", - "codeCommune": "64223", - "libelleAcheminement": "ETSAUT", - "nomCommune": "ETSAUT" + "codePostal": "39210", + "codeCommune": "39304", + "libelleAcheminement": "LE LOUVEROT", + "nomCommune": "LE LOUVEROT" }, { - "codePostal": "32130", - "codeCommune": "32051", - "libelleAcheminement": "BEZERIL", - "nomCommune": "BEZERIL" + "codePostal": "28300", + "codeCommune": "28100", + "libelleAcheminement": "CINTRAY", + "nomCommune": "CINTRAY" }, { - "codePostal": "57990", - "codeCommune": "57514", - "libelleAcheminement": "NOUSSEVILLER ST NABOR", - "nomCommune": "NOUSSEVILLER ST NABOR" + "codePostal": "29690", + "codeCommune": "29227", + "libelleAcheminement": "POULLAOUEN", + "nomCommune": "POULLAOUEN" }, { - "codePostal": "02200", - "codeCommune": "02610", - "libelleAcheminement": "POMMIERS", - "nomCommune": "POMMIERS" + "codePostal": "39210", + "codeCommune": "39553", + "libelleAcheminement": "LE VERNOIS", + "nomCommune": "LE VERNOIS" }, { - "codePostal": "64290", - "codeCommune": "64230", - "libelleAcheminement": "GAN", - "nomCommune": "GAN" + "codePostal": "39570", + "codeCommune": "39306", + "libelleAcheminement": "MACORNAY", + "nomCommune": "MACORNAY" }, { - "codePostal": "32350", - "codeCommune": "32054", - "libelleAcheminement": "BIRAN", - "nomCommune": "BIRAN" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "57720", - "codeCommune": "57517", - "libelleAcheminement": "OBERGAILBACH", - "nomCommune": "OBERGAILBACH" + "codePostal": "29310", + "codeCommune": "29230", + "libelleAcheminement": "QUERRIEN", + "nomCommune": "QUERRIEN" }, { - "codePostal": "02320", - "codeCommune": "02619", - "libelleAcheminement": "PREMONTRE", - "nomCommune": "PREMONTRE" + "codePostal": "39230", + "codeCommune": "39555", + "libelleAcheminement": "VERS SOUS SELLIERES", + "nomCommune": "VERS SOUS SELLIERES" }, { - "codePostal": "64350", - "codeCommune": "64236", - "libelleAcheminement": "GAYON", - "nomCommune": "GAYON" + "codePostal": "39260", + "codeCommune": "39307", + "libelleAcheminement": "MAISOD", + "nomCommune": "MAISOD" }, { - "codePostal": "32380", - "codeCommune": "32055", - "libelleAcheminement": "BIVES", - "nomCommune": "BIVES" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "57420", - "codeCommune": "57527", - "libelleAcheminement": "ORNY", - "nomCommune": "ORNY" + "codePostal": "29340", + "codeCommune": "29236", + "libelleAcheminement": "RIEC SUR BELON", + "nomCommune": "RIEC SUR BELON" }, { - "codePostal": "02860", - "codeCommune": "02621", - "libelleAcheminement": "PRESLES ET THIERNY", - "nomCommune": "PRESLES ET THIERNY" + "codePostal": "39130", + "codeCommune": "39556", + "libelleAcheminement": "VERTAMBOZ", + "nomCommune": "VERTAMBOZ" }, { - "codePostal": "64110", - "codeCommune": "64237", - "libelleAcheminement": "GELOS", - "nomCommune": "GELOS" + "codePostal": "39130", + "codeCommune": "39322", + "libelleAcheminement": "MENETRUX EN JOUX", + "nomCommune": "MENETRUX EN JOUX" }, { - "codePostal": "32410", - "codeCommune": "32059", - "libelleAcheminement": "BONAS", - "nomCommune": "BONAS" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "57660", - "codeCommune": "57536", - "libelleAcheminement": "PETIT TENQUIN", - "nomCommune": "PETIT TENQUIN" + "codePostal": "29150", + "codeCommune": "29243", + "libelleAcheminement": "ST COULITZ", + "nomCommune": "ST COULITZ" }, { - "codePostal": "02120", - "codeCommune": "02625", - "libelleAcheminement": "PROIX", - "nomCommune": "PROIX" + "codePostal": "39380", + "codeCommune": "39559", + "libelleAcheminement": "LA VIEILLE LOYE", + "nomCommune": "LA VIEILLE LOYE" }, { - "codePostal": "64640", - "codeCommune": "64259", - "libelleAcheminement": "HELETTE", - "nomCommune": "HELETTE" + "codePostal": "39270", + "codeCommune": "39324", + "libelleAcheminement": "MERONA", + "nomCommune": "MERONA" }, { - "codePostal": "32450", - "codeCommune": "32061", - "libelleAcheminement": "BOULAUR", - "nomCommune": "BOULAUR" + "codePostal": "28210", + "codeCommune": "28118", + "libelleAcheminement": "CROISILLES", + "nomCommune": "CROISILLES" }, { - "codePostal": "57670", - "codeCommune": "57573", - "libelleAcheminement": "RENING", - "nomCommune": "RENING" + "codePostal": "29120", + "codeCommune": "29252", + "libelleAcheminement": "ST JEAN TROLIMON", + "nomCommune": "ST JEAN TROLIMON" }, { - "codePostal": "02300", - "codeCommune": "02631", - "libelleAcheminement": "QUIERZY", - "nomCommune": "QUIERZY" + "codePostal": "39200", + "codeCommune": "39560", + "libelleAcheminement": "VILLARD ST SAUVEUR", + "nomCommune": "VILLARD ST SAUVEUR" }, { - "codePostal": "64270", - "codeCommune": "64263", - "libelleAcheminement": "L HOPITAL D ORION", - "nomCommune": "L HOPITAL D ORION" + "codePostal": "39600", + "codeCommune": "39337", + "libelleAcheminement": "MOLAMBOZ", + "nomCommune": "MOLAMBOZ" }, { - "codePostal": "32800", - "codeCommune": "32073", - "libelleAcheminement": "CAMPAGNE D ARMAGNAC", - "nomCommune": "CAMPAGNE D ARMAGNAC" + "codePostal": "28160", + "codeCommune": "28127", + "libelleAcheminement": "DANGEAU", + "nomCommune": "DANGEAU" }, { - "codePostal": "57720", - "codeCommune": "57584", - "libelleAcheminement": "RIMLING", - "nomCommune": "RIMLING" + "codePostal": "29410", + "codeCommune": "29266", + "libelleAcheminement": "ST THEGONNEC LOC EGUINER", + "nomCommune": "ST THEGONNEC LOC EGUINER" }, { - "codePostal": "02100", - "codeCommune": "02637", - "libelleAcheminement": "REMAUCOURT", - "nomCommune": "REMAUCOURT" + "codePostal": "39120", + "codeCommune": "39571", + "libelleAcheminement": "VILLERS ROBERT", + "nomCommune": "VILLERS ROBERT" }, { - "codePostal": "64320", - "codeCommune": "64269", - "libelleAcheminement": "IDRON", - "nomCommune": "IDRON" + "codePostal": "39300", + "codeCommune": "39344", + "libelleAcheminement": "MONNET LA VILLE", + "nomCommune": "MONNET LA VILLE" }, { - "codePostal": "32250", - "codeCommune": "32079", - "libelleAcheminement": "CASTELNAU D AUZAN LABARRERE", - "nomCommune": "CASTELNAU D AUZAN LABARRERE" + "codePostal": "28230", + "codeCommune": "28135", + "libelleAcheminement": "DROUE SUR DROUETTE", + "nomCommune": "DROUE SUR DROUETTE" }, { - "codePostal": "57570", - "codeCommune": "57588", - "libelleAcheminement": "RODEMACK", - "nomCommune": "RODEMACK" + "codePostal": "29410", + "codeCommune": "29266", + "libelleAcheminement": "ST THEGONNEC LOC EGUINER", + "nomCommune": "ST THEGONNEC LOC EGUINER" }, { - "codePostal": "02440", - "codeCommune": "02639", - "libelleAcheminement": "REMIGNY", - "nomCommune": "REMIGNY" + "codePostal": "39100", + "codeCommune": "39573", + "libelleAcheminement": "VILLETTE LES DOLE", + "nomCommune": "VILLETTE LES DOLE" }, { - "codePostal": "64220", - "codeCommune": "64275", - "libelleAcheminement": "ISPOURE", - "nomCommune": "ISPOURE" + "codePostal": "39570", + "codeCommune": "39348", + "libelleAcheminement": "MONTAIGU", + "nomCommune": "MONTAIGU" }, { - "codePostal": "32100", - "codeCommune": "32080", - "libelleAcheminement": "CASTELNAU SUR L AUVIGNON", - "nomCommune": "CASTELNAU SUR L AUVIGNON" + "codePostal": "28170", + "codeCommune": "28147", + "libelleAcheminement": "FAVIERES", + "nomCommune": "FAVIERES" }, { - "codePostal": "57410", - "codeCommune": "57589", - "libelleAcheminement": "ROHRBACH LES BITCHE", - "nomCommune": "ROHRBACH LES BITCHE" + "codePostal": "29800", + "codeCommune": "29268", + "libelleAcheminement": "ST THONAN", + "nomCommune": "ST THONAN" }, { - "codePostal": "02340", - "codeCommune": "02641", - "libelleAcheminement": "RENNEVAL", - "nomCommune": "RENNEVAL" + "codePostal": "39140", + "codeCommune": "39574", + "libelleAcheminement": "VILLEVIEUX", + "nomCommune": "VILLEVIEUX" }, { - "codePostal": "64250", - "codeCommune": "64279", - "libelleAcheminement": "ITXASSOU", - "nomCommune": "ITXASSOU" + "codePostal": "39320", + "codeCommune": "39363", + "libelleAcheminement": "MONTREVEL", + "nomCommune": "MONTREVEL" }, { - "codePostal": "32380", - "codeCommune": "32084", - "libelleAcheminement": "CASTERON", - "nomCommune": "CASTERON" + "codePostal": "28800", + "codeCommune": "28176", + "libelleAcheminement": "LE GAULT ST DENIS", + "nomCommune": "LE GAULT ST DENIS" }, { - "codePostal": "57480", - "codeCommune": "57604", - "libelleAcheminement": "RUSTROFF", - "nomCommune": "RUSTROFF" + "codePostal": "29250", + "codeCommune": "29273", + "libelleAcheminement": "SANTEC", + "nomCommune": "SANTEC" }, { - "codePostal": "02240", - "codeCommune": "02648", - "libelleAcheminement": "RIBEMONT", - "nomCommune": "RIBEMONT" + "codePostal": "39350", + "codeCommune": "39581", + "libelleAcheminement": "VITREUX", + "nomCommune": "VITREUX" }, { - "codePostal": "64260", - "codeCommune": "64280", - "libelleAcheminement": "IZESTE", - "nomCommune": "IZESTE" + "codePostal": "39400", + "codeCommune": "39368", + "libelleAcheminement": "HAUTS DE BIENNE", + "nomCommune": "HAUTS DE BIENNE" }, { - "codePostal": "32170", - "codeCommune": "32086", - "libelleAcheminement": "CASTEX", - "nomCommune": "CASTEX" + "codePostal": "28310", + "codeCommune": "28183", + "libelleAcheminement": "GOMMERVILLE", + "nomCommune": "GOMMERVILLE" }, { - "codePostal": "57510", - "codeCommune": "57615", - "libelleAcheminement": "ST JEAN ROHRBACH", - "nomCommune": "ST JEAN ROHRBACH" + "codePostal": "29560", + "codeCommune": "29280", + "libelleAcheminement": "TELGRUC SUR MER", + "nomCommune": "TELGRUC SUR MER" }, { - "codePostal": "02120", - "codeCommune": "02668", - "libelleAcheminement": "SAINS RICHAUMONT", - "nomCommune": "SAINS RICHAUMONT" + "codePostal": "39360", + "codeCommune": "39585", + "libelleAcheminement": "VULVOZ", + "nomCommune": "VULVOZ" }, { - "codePostal": "64480", - "codeCommune": "64282", - "libelleAcheminement": "JATXOU", - "nomCommune": "JATXOU" + "codePostal": "39120", + "codeCommune": "39385", + "libelleAcheminement": "NEUBLANS ABERGEMENT", + "nomCommune": "NEUBLANS ABERGEMENT" }, { - "codePostal": "32490", - "codeCommune": "32090", - "libelleAcheminement": "CASTILLON SAVES", - "nomCommune": "CASTILLON SAVES" + "codePostal": "28700", + "codeCommune": "28183", + "libelleAcheminement": "GOMMERVILLE", + "nomCommune": "GOMMERVILLE" }, { - "codePostal": "57560", - "codeCommune": "57623", - "libelleAcheminement": "ST QUIRIN", - "nomCommune": "ST QUIRIN" + "codePostal": "29140", + "codeCommune": "29281", + "libelleAcheminement": "TOURCH", + "nomCommune": "TOURCH" }, { - "codePostal": "02360", - "codeCommune": "02674", - "libelleAcheminement": "ST CLEMENT", - "nomCommune": "ST CLEMENT" + "codePostal": "39110", + "codeCommune": "39586", + "libelleAcheminement": "ARESCHES", + "nomCommune": "ARESCHES" }, { - "codePostal": "64220", - "codeCommune": "64283", - "libelleAcheminement": "JAXU", - "nomCommune": "JAXU" + "codePostal": "39800", + "codeCommune": "39386", + "libelleAcheminement": "NEUVILLEY", + "nomCommune": "NEUVILLEY" }, { - "codePostal": "32200", - "codeCommune": "32092", - "libelleAcheminement": "CATONVIELLE", - "nomCommune": "CATONVIELLE" + "codePostal": "28410", + "codeCommune": "28185", + "libelleAcheminement": "GOUSSAINVILLE", + "nomCommune": "GOUSSAINVILLE" }, { - "codePostal": "57905", - "codeCommune": "57633", - "libelleAcheminement": "SARREINSMING", - "nomCommune": "SARREINSMING" + "codePostal": "29800", + "codeCommune": "29295", + "libelleAcheminement": "TREMAOUEZAN", + "nomCommune": "TREMAOUEZAN" }, { - "codePostal": "02330", - "codeCommune": "02677", - "libelleAcheminement": "ST EUGENE", - "nomCommune": "ST EUGENE" + "codePostal": "40800", + "codeCommune": "40001", + "libelleAcheminement": "AIRE SUR L ADOUR", + "nomCommune": "AIRE SUR L ADOUR" }, { - "codePostal": "64270", - "codeCommune": "64291", - "libelleAcheminement": "LABASTIDE VILLEFRANCHE", - "nomCommune": "LABASTIDE VILLEFRANCHE" + "codePostal": "39330", + "codeCommune": "39403", + "libelleAcheminement": "PAGNOZ", + "nomCommune": "PAGNOZ" }, { - "codePostal": "32100", - "codeCommune": "32095", - "libelleAcheminement": "CAUSSENS", - "nomCommune": "CAUSSENS" + "codePostal": "28260", + "codeCommune": "28187", + "libelleAcheminement": "GUAINVILLE", + "nomCommune": "GUAINVILLE" }, { - "codePostal": "57140", - "codeCommune": "57634", - "libelleAcheminement": "SAULNY", - "nomCommune": "SAULNY" + "codePostal": "20000", + "codeCommune": "2A004", + "libelleAcheminement": "AJACCIO", + "nomCommune": "AJACCIO" }, { - "codePostal": "02140", - "codeCommune": "02688", - "libelleAcheminement": "ST PIERRE LES FRANQUEVILLE", - "nomCommune": "ST PIERRE LES FRANQUEVILLE" + "codePostal": "40140", + "codeCommune": "40021", + "libelleAcheminement": "AZUR", + "nomCommune": "AZUR" }, { - "codePostal": "64460", - "codeCommune": "64293", - "libelleAcheminement": "LABATUT", - "nomCommune": "LABATUT" + "codePostal": "39570", + "codeCommune": "39404", + "libelleAcheminement": "PANNESSIERES", + "nomCommune": "PANNESSIERES" }, { - "codePostal": "32130", - "codeCommune": "32098", - "libelleAcheminement": "CAZAUX SAVES", - "nomCommune": "CAZAUX SAVES" + "codePostal": "28310", + "codeCommune": "28189", + "libelleAcheminement": "GUILLEVILLE", + "nomCommune": "GUILLEVILLE" }, { - "codePostal": "57400", - "codeCommune": "57637", - "libelleAcheminement": "SCHNECKENBUSCH", - "nomCommune": "SCHNECKENBUSCH" + "codePostal": "20090", + "codeCommune": "2A004", + "libelleAcheminement": "AJACCIO", + "nomCommune": "AJACCIO" }, { - "codePostal": "02100", - "codeCommune": "02691", - "libelleAcheminement": "ST QUENTIN", - "nomCommune": "ST QUENTIN" + "codePostal": "40320", + "codeCommune": "40022", + "libelleAcheminement": "BAHUS SOUBIRAN", + "nomCommune": "BAHUS SOUBIRAN" }, { - "codePostal": "64120", - "codeCommune": "64294", - "libelleAcheminement": "LABETS BISCAY", - "nomCommune": "LABETS BISCAY" + "codePostal": "39100", + "codeCommune": "39405", + "libelleAcheminement": "PARCEY", + "nomCommune": "PARCEY" }, { - "codePostal": "32230", - "codeCommune": "32099", - "libelleAcheminement": "CAZAUX VILLECOMTAL", - "nomCommune": "CAZAUX VILLECOMTAL" + "codePostal": "28410", + "codeCommune": "28193", + "libelleAcheminement": "HAVELU", + "nomCommune": "HAVELU" }, { - "codePostal": "57350", - "codeCommune": "57638", - "libelleAcheminement": "SCHOENECK", - "nomCommune": "SCHOENECK" + "codePostal": "20128", + "codeCommune": "2A008", + "libelleAcheminement": "ALBITRECCIA", + "nomCommune": "ALBITRECCIA" }, { - "codePostal": "02130", - "codeCommune": "02713", - "libelleAcheminement": "SERINGES ET NESLES", - "nomCommune": "SERINGES ET NESLES" + "codePostal": "40500", + "codeCommune": "40024", + "libelleAcheminement": "BANOS", + "nomCommune": "BANOS" }, { - "codePostal": "64300", - "codeCommune": "64295", - "libelleAcheminement": "LABEYRIE", - "nomCommune": "LABEYRIE" + "codePostal": "39120", + "codeCommune": "39415", + "libelleAcheminement": "PETIT NOIR", + "nomCommune": "PETIT NOIR" }, { - "codePostal": "32800", - "codeCommune": "32100", - "libelleAcheminement": "CAZENEUVE", - "nomCommune": "CAZENEUVE" + "codePostal": "28200", + "codeCommune": "28198", + "libelleAcheminement": "JALLANS", + "nomCommune": "JALLANS" }, { - "codePostal": "57420", - "codeCommune": "57643", - "libelleAcheminement": "SECOURT", - "nomCommune": "SECOURT" + "codePostal": "20166", + "codeCommune": "2A008", + "libelleAcheminement": "ALBITRECCIA", + "nomCommune": "ALBITRECCIA" }, { - "codePostal": "02220", - "codeCommune": "02714", - "libelleAcheminement": "SERMOISE", - "nomCommune": "SERMOISE" + "codePostal": "40360", + "codeCommune": "40028", + "libelleAcheminement": "BASTENNES", + "nomCommune": "BASTENNES" }, { - "codePostal": "64220", - "codeCommune": "64297", - "libelleAcheminement": "LACARRE", - "nomCommune": "LACARRE" + "codePostal": "39270", + "codeCommune": "39423", + "libelleAcheminement": "PLAISIA", + "nomCommune": "PLAISIA" }, { - "codePostal": "32140", - "codeCommune": "32103", - "libelleAcheminement": "CHELAN", - "nomCommune": "CHELAN" + "codePostal": "28250", + "codeCommune": "28200", + "libelleAcheminement": "JAUDRAIS", + "nomCommune": "JAUDRAIS" }, { - "codePostal": "57280", - "codeCommune": "57645", - "libelleAcheminement": "SEMECOURT", - "nomCommune": "SEMECOURT" + "codePostal": "20112", + "codeCommune": "2A011", + "libelleAcheminement": "ALTAGENE", + "nomCommune": "ALTAGENE" }, { - "codePostal": "02240", - "codeCommune": "02717", - "libelleAcheminement": "SERY LES MEZIERES", - "nomCommune": "SERY LES MEZIERES" + "codePostal": "40320", + "codeCommune": "40029", + "libelleAcheminement": "BATS", + "nomCommune": "BATS" }, { - "codePostal": "64470", - "codeCommune": "64298", - "libelleAcheminement": "LACARRY ARHAN CHARRITTE DE HAUT", - "nomCommune": "LACARRY ARHAN CHARRITTE DE HAUT" + "codePostal": "39150", + "codeCommune": "39424", + "libelleAcheminement": "LES PLANCHES EN MONTAGNE", + "nomCommune": "LES PLANCHES EN MONTAGNE" }, { - "codePostal": "32300", - "codeCommune": "32114", - "libelleAcheminement": "CUELAS", - "nomCommune": "CUELAS" + "codePostal": "28300", + "codeCommune": "28201", + "libelleAcheminement": "JOUY", + "nomCommune": "JOUY" }, { - "codePostal": "57480", - "codeCommune": "57650", - "libelleAcheminement": "SIERCK LES BAINS", - "nomCommune": "SIERCK LES BAINS" + "codePostal": "20140", + "codeCommune": "2A021", + "libelleAcheminement": "ARGIUSTA MORICCIO", + "nomCommune": "ARGIUSTA MORICCIO" }, { - "codePostal": "02240", - "codeCommune": "02721", - "libelleAcheminement": "SISSY", - "nomCommune": "SISSY" + "codePostal": "40240", + "codeCommune": "40039", + "libelleAcheminement": "BETBEZER D ARMAGNAC", + "nomCommune": "BETBEZER D ARMAGNAC" }, { - "codePostal": "64360", - "codeCommune": "64299", - "libelleAcheminement": "LACOMMANDE", - "nomCommune": "LACOMMANDE" + "codePostal": "39600", + "codeCommune": "39425", + "libelleAcheminement": "LES PLANCHES PRES ARBOIS", + "nomCommune": "LES PLANCHES PRES ARBOIS" }, { - "codePostal": "32190", - "codeCommune": "32115", - "libelleAcheminement": "DEMU", - "nomCommune": "DEMU" + "codePostal": "28210", + "codeCommune": "28213", + "libelleAcheminement": "LORMAYE", + "nomCommune": "LORMAYE" }, { - "codePostal": "57230", - "codeCommune": "57661", - "libelleAcheminement": "STURZELBRONN", - "nomCommune": "STURZELBRONN" + "codePostal": "20151", + "codeCommune": "2A060", + "libelleAcheminement": "CANNELLE", + "nomCommune": "CANNELLE" }, { - "codePostal": "02200", - "codeCommune": "02722", - "libelleAcheminement": "SOISSONS", - "nomCommune": "SOISSONS" + "codePostal": "40390", + "codeCommune": "40042", + "libelleAcheminement": "BIARROTTE", + "nomCommune": "BIARROTTE" }, { - "codePostal": "64170", - "codeCommune": "64300", - "libelleAcheminement": "LACQ", - "nomCommune": "LACQ" + "codePostal": "39210", + "codeCommune": "39426", + "libelleAcheminement": "PLASNE", + "nomCommune": "PLASNE" }, { - "codePostal": "32800", - "codeCommune": "32119", - "libelleAcheminement": "EAUZE", - "nomCommune": "EAUZE" + "codePostal": "28240", + "codeCommune": "28214", + "libelleAcheminement": "LA LOUPE", + "nomCommune": "LA LOUPE" }, { - "codePostal": "57380", - "codeCommune": "57670", - "libelleAcheminement": "THICOURT", - "nomCommune": "THICOURT" + "codePostal": "20190", + "codeCommune": "2A064", + "libelleAcheminement": "CARDO TORGIA", + "nomCommune": "CARDO TORGIA" }, { - "codePostal": "02470", - "codeCommune": "02724", - "libelleAcheminement": "SOMMELANS", - "nomCommune": "SOMMELANS" + "codePostal": "40390", + "codeCommune": "40044", + "libelleAcheminement": "BIAUDOS", + "nomCommune": "BIAUDOS" }, { - "codePostal": "64170", - "codeCommune": "64300", - "libelleAcheminement": "LACQ", - "nomCommune": "LACQ" + "codePostal": "39700", + "codeCommune": "39430", + "libelleAcheminement": "PLUMONT", + "nomCommune": "PLUMONT" }, { - "codePostal": "32140", - "codeCommune": "32122", - "libelleAcheminement": "ESCLASSAN LABASTIDE", - "nomCommune": "ESCLASSAN LABASTIDE" + "codePostal": "28500", + "codeCommune": "28216", + "libelleAcheminement": "LOUVILLIERS EN DROUAIS", + "nomCommune": "LOUVILLIERS EN DROUAIS" }, { - "codePostal": "57580", - "codeCommune": "57676", - "libelleAcheminement": "TRAGNY", - "nomCommune": "TRAGNY" + "codePostal": "20111", + "codeCommune": "2A070", + "libelleAcheminement": "CASAGLIONE", + "nomCommune": "CASAGLIONE" }, { - "codePostal": "02480", - "codeCommune": "02726", - "libelleAcheminement": "SOMMETTE EAUCOURT", - "nomCommune": "SOMMETTE EAUCOURT" + "codePostal": "40330", + "codeCommune": "40047", + "libelleAcheminement": "BONNEGARDE", + "nomCommune": "BONNEGARDE" }, { - "codePostal": "64150", - "codeCommune": "64301", - "libelleAcheminement": "LAGOR", - "nomCommune": "LAGOR" + "codePostal": "39110", + "codeCommune": "39436", + "libelleAcheminement": "PONT D HERY", + "nomCommune": "PONT D HERY" }, { - "codePostal": "32240", - "codeCommune": "32127", - "libelleAcheminement": "ESTANG", - "nomCommune": "ESTANG" + "codePostal": "28250", + "codeCommune": "28217", + "libelleAcheminement": "LOUVILLIERS LES PERCHE", + "nomCommune": "LOUVILLIERS LES PERCHE" }, { - "codePostal": "57560", - "codeCommune": "57682", - "libelleAcheminement": "TURQUESTEIN BLANCRUPT", - "nomCommune": "TURQUESTEIN BLANCRUPT" + "codePostal": "20140", + "codeCommune": "2A071", + "libelleAcheminement": "CASALABRIVA", + "nomCommune": "CASALABRIVA" }, { - "codePostal": "02270", - "codeCommune": "02727", - "libelleAcheminement": "SONS ET RONCHERES", - "nomCommune": "SONS ET RONCHERES" + "codePostal": "40090", + "codeCommune": "40050", + "libelleAcheminement": "BOSTENS", + "nomCommune": "BOSTENS" }, { - "codePostal": "64800", - "codeCommune": "64302", - "libelleAcheminement": "LAGOS", - "nomCommune": "LAGOS" + "codePostal": "39600", + "codeCommune": "39439", + "libelleAcheminement": "PORT LESNEY", + "nomCommune": "PORT LESNEY" }, { - "codePostal": "32300", - "codeCommune": "32128", - "libelleAcheminement": "ESTIPOUY", - "nomCommune": "ESTIPOUY" + "codePostal": "28110", + "codeCommune": "28218", + "libelleAcheminement": "LUCE", + "nomCommune": "LUCE" }, { - "codePostal": "57270", - "codeCommune": "57683", - "libelleAcheminement": "UCKANGE", - "nomCommune": "UCKANGE" + "codePostal": "20117", + "codeCommune": "2A085", + "libelleAcheminement": "CAURO", + "nomCommune": "CAURO" }, { - "codePostal": "02160", - "codeCommune": "02730", - "libelleAcheminement": "SOUPIR", - "nomCommune": "SOUPIR" + "codePostal": "40180", + "codeCommune": "40063", + "libelleAcheminement": "CANDRESSE", + "nomCommune": "CANDRESSE" }, { - "codePostal": "64270", - "codeCommune": "64305", - "libelleAcheminement": "LAHONTAN", - "nomCommune": "LAHONTAN" + "codePostal": "39700", + "codeCommune": "39452", + "libelleAcheminement": "RANS", + "nomCommune": "RANS" }, { - "codePostal": "32380", - "codeCommune": "32129", - "libelleAcheminement": "ESTRAMIAC", - "nomCommune": "ESTRAMIAC" + "codePostal": "28360", + "codeCommune": "28222", + "libelleAcheminement": "LUPLANTE", + "nomCommune": "LUPLANTE" }, { - "codePostal": "57660", - "codeCommune": "57684", - "libelleAcheminement": "VAHL EBERSING", - "nomCommune": "VAHL EBERSING" + "codePostal": "20118", + "codeCommune": "2A090", + "libelleAcheminement": "COGGIA", + "nomCommune": "COGGIA" }, { - "codePostal": "02140", - "codeCommune": "02731", - "libelleAcheminement": "LE SOURD", - "nomCommune": "LE SOURD" + "codePostal": "40400", + "codeCommune": "40067", + "libelleAcheminement": "CARCEN PONSON", + "nomCommune": "CARCEN PONSON" }, { - "codePostal": "64460", - "codeCommune": "64309", - "libelleAcheminement": "LAMAYOU", - "nomCommune": "LAMAYOU" + "codePostal": "39230", + "codeCommune": "39454", + "libelleAcheminement": "RECANOZ", + "nomCommune": "RECANOZ" }, { - "codePostal": "32340", - "codeCommune": "32131", - "libelleAcheminement": "FLAMARENS", - "nomCommune": "FLAMARENS" + "codePostal": "28240", + "codeCommune": "28232", + "libelleAcheminement": "MANOU", + "nomCommune": "MANOU" }, { - "codePostal": "57970", - "codeCommune": "57689", - "libelleAcheminement": "VALMESTROFF", - "nomCommune": "VALMESTROFF" + "codePostal": "20138", + "codeCommune": "2A098", + "libelleAcheminement": "COTI CHIAVARI", + "nomCommune": "COTI CHIAVARI" }, { - "codePostal": "02240", - "codeCommune": "02732", - "libelleAcheminement": "SURFONTAINE", - "nomCommune": "SURFONTAINE" + "codePostal": "40360", + "codeCommune": "40071", + "libelleAcheminement": "CASTELNAU CHALOSSE", + "nomCommune": "CASTELNAU CHALOSSE" }, { - "codePostal": "64570", - "codeCommune": "64310", - "libelleAcheminement": "LANNE EN BARETOUS", - "nomCommune": "LANNE EN BARETOUS" + "codePostal": "39140", + "codeCommune": "39457", + "libelleAcheminement": "LES REPOTS", + "nomCommune": "LES REPOTS" }, { - "codePostal": "32390", - "codeCommune": "32142", - "libelleAcheminement": "GAVARRET SUR AULOUSTE", - "nomCommune": "GAVARRET SUR AULOUSTE" + "codePostal": "28400", + "codeCommune": "28236", + "libelleAcheminement": "ARCISSES", + "nomCommune": "ARCISSES" }, { - "codePostal": "57340", - "codeCommune": "57692", - "libelleAcheminement": "VANNECOURT", - "nomCommune": "VANNECOURT" + "codePostal": "20117", + "codeCommune": "2A104", + "libelleAcheminement": "ECCICA SUARELLA", + "nomCommune": "ECCICA SUARELLA" }, { - "codePostal": "02700", - "codeCommune": "02738", - "libelleAcheminement": "TERGNIER", - "nomCommune": "TERGNIER" + "codePostal": "40300", + "codeCommune": "40077", + "libelleAcheminement": "CAUNEILLE", + "nomCommune": "CAUNEILLE" }, { - "codePostal": "64480", - "codeCommune": "64317", - "libelleAcheminement": "LARRESSORE", - "nomCommune": "LARRESSORE" + "codePostal": "39570", + "codeCommune": "39458", + "libelleAcheminement": "REVIGNY", + "nomCommune": "REVIGNY" }, { - "codePostal": "32400", - "codeCommune": "32151", - "libelleAcheminement": "GOUX", - "nomCommune": "GOUX" + "codePostal": "28250", + "codeCommune": "28248", + "libelleAcheminement": "LE MESNIL THOMAS", + "nomCommune": "LE MESNIL THOMAS" }, { - "codePostal": "57070", - "codeCommune": "57693", - "libelleAcheminement": "VANTOUX", - "nomCommune": "VANTOUX" + "codePostal": "20140", + "codeCommune": "2A160", + "libelleAcheminement": "MOCA CROCE", + "nomCommune": "MOCA CROCE" }, { - "codePostal": "02700", - "codeCommune": "02738", - "libelleAcheminement": "TERGNIER", - "nomCommune": "TERGNIER" + "codePostal": "40250", + "codeCommune": "40078", + "libelleAcheminement": "CAUPENNE", + "nomCommune": "CAUPENNE" }, { - "codePostal": "64350", - "codeCommune": "64331", - "libelleAcheminement": "LEMBEYE", - "nomCommune": "LEMBEYE" + "codePostal": "39220", + "codeCommune": "39470", + "libelleAcheminement": "LES ROUSSES", + "nomCommune": "LES ROUSSES" }, { - "codePostal": "32730", - "codeCommune": "32152", - "libelleAcheminement": "HAGET", - "nomCommune": "HAGET" + "codePostal": "28130", + "codeCommune": "28249", + "libelleAcheminement": "MEVOISINS", + "nomCommune": "MEVOISINS" }, { - "codePostal": "57130", - "codeCommune": "57707", - "libelleAcheminement": "VERNEVILLE", - "nomCommune": "VERNEVILLE" + "codePostal": "20125", + "codeCommune": "2A196", + "libelleAcheminement": "ORTO", + "nomCommune": "ORTO" }, { - "codePostal": "02390", - "codeCommune": "02741", - "libelleAcheminement": "THENELLES", - "nomCommune": "THENELLES" + "codePostal": "40320", + "codeCommune": "40083", + "libelleAcheminement": "CLEDES", + "nomCommune": "CLEDES" }, { - "codePostal": "64230", - "codeCommune": "64335", - "libelleAcheminement": "LESCAR", - "nomCommune": "LESCAR" + "codePostal": "39400", + "codeCommune": "39470", + "libelleAcheminement": "LES ROUSSES", + "nomCommune": "LES ROUSSES" }, { - "codePostal": "32460", - "codeCommune": "32155", - "libelleAcheminement": "LE HOUGA", - "nomCommune": "LE HOUGA" + "codePostal": "28120", + "codeCommune": "28261", + "libelleAcheminement": "MONTIGNY LE CHARTIF", + "nomCommune": "MONTIGNY LE CHARTIF" }, { - "codePostal": "57370", - "codeCommune": "57709", - "libelleAcheminement": "VESCHEIM", - "nomCommune": "VESCHEIM" + "codePostal": "20147", + "codeCommune": "2A203", + "libelleAcheminement": "PARTINELLO", + "nomCommune": "PARTINELLO" }, { - "codePostal": "02490", - "codeCommune": "02747", - "libelleAcheminement": "TREFCON", - "nomCommune": "TREFCON" + "codePostal": "40500", + "codeCommune": "40092", + "libelleAcheminement": "DUMES", + "nomCommune": "DUMES" }, { - "codePostal": "64530", - "codeCommune": "64344", - "libelleAcheminement": "LIVRON", - "nomCommune": "LIVRON" + "codePostal": "39120", + "codeCommune": "39477", + "libelleAcheminement": "ST BARAING", + "nomCommune": "ST BARAING" }, { - "codePostal": "32300", - "codeCommune": "32156", - "libelleAcheminement": "IDRAC RESPAILLES", - "nomCommune": "IDRAC RESPAILLES" + "codePostal": "28700", + "codeCommune": "28268", + "libelleAcheminement": "MORAINVILLE", + "nomCommune": "MORAINVILLE" }, { - "codePostal": "57340", - "codeCommune": "57719", - "libelleAcheminement": "VILLERS SUR NIED", - "nomCommune": "VILLERS SUR NIED" + "codePostal": "20167", + "codeCommune": "2A209", + "libelleAcheminement": "PERI", + "nomCommune": "PERI" }, { - "codePostal": "02860", - "codeCommune": "02751", - "libelleAcheminement": "TRUCY", - "nomCommune": "TRUCY" + "codePostal": "40310", + "codeCommune": "40093", + "libelleAcheminement": "ESCALANS", + "nomCommune": "ESCALANS" }, { - "codePostal": "64420", - "codeCommune": "64352", - "libelleAcheminement": "LOURENTIES", - "nomCommune": "LOURENTIES" + "codePostal": "39200", + "codeCommune": "39478", + "libelleAcheminement": "ST CLAUDE", + "nomCommune": "ST CLAUDE" }, { - "codePostal": "32270", - "codeCommune": "32157", - "libelleAcheminement": "L ISLE ARNE", - "nomCommune": "L ISLE ARNE" + "codePostal": "28630", + "codeCommune": "28269", + "libelleAcheminement": "MORANCEZ", + "nomCommune": "MORANCEZ" }, { - "codePostal": "57370", - "codeCommune": "57721", - "libelleAcheminement": "VILSBERG", - "nomCommune": "VILSBERG" + "codePostal": "20131", + "codeCommune": "2A215", + "libelleAcheminement": "PIANOTTOLI CALDARELLO", + "nomCommune": "PIANOTTOLI CALDARELLO" }, { - "codePostal": "02120", - "codeCommune": "02753", - "libelleAcheminement": "TUPIGNY", - "nomCommune": "TUPIGNY" + "codePostal": "40320", + "codeCommune": "40097", + "libelleAcheminement": "EUGENIE LES BAINS", + "nomCommune": "EUGENIE LES BAINS" }, { - "codePostal": "64410", - "codeCommune": "64355", - "libelleAcheminement": "LOUVIGNY", - "nomCommune": "LOUVIGNY" + "codePostal": "39200", + "codeCommune": "39478", + "libelleAcheminement": "ST CLAUDE", + "nomCommune": "ST CLAUDE" }, { - "codePostal": "32300", - "codeCommune": "32159", - "libelleAcheminement": "L ISLE DE NOE", - "nomCommune": "L ISLE DE NOE" + "codePostal": "28160", + "codeCommune": "28273", + "libelleAcheminement": "MOULHARD", + "nomCommune": "MOULHARD" }, { - "codePostal": "57560", - "codeCommune": "57734", - "libelleAcheminement": "VOYER", - "nomCommune": "VOYER" + "codePostal": "20166", + "codeCommune": "2A228", + "libelleAcheminement": "PIETROSELLA", + "nomCommune": "PIETROSELLA" }, { - "codePostal": "02000", - "codeCommune": "02755", - "libelleAcheminement": "URCEL", - "nomCommune": "URCEL" + "codePostal": "40380", + "codeCommune": "40104", + "libelleAcheminement": "GAMARDE LES BAINS", + "nomCommune": "GAMARDE LES BAINS" }, { - "codePostal": "64420", - "codeCommune": "64358", - "libelleAcheminement": "LUCGARIER", - "nomCommune": "LUCGARIER" + "codePostal": "39200", + "codeCommune": "39478", + "libelleAcheminement": "ST CLAUDE", + "nomCommune": "ST CLAUDE" }, { - "codePostal": "32260", - "codeCommune": "32169", - "libelleAcheminement": "LABARTHE", - "nomCommune": "LABARTHE" + "codePostal": "28150", + "codeCommune": "28274", + "libelleAcheminement": "MOUTIERS", + "nomCommune": "MOUTIERS" }, { - "codePostal": "57420", - "codeCommune": "57737", - "libelleAcheminement": "VULMONT", - "nomCommune": "VULMONT" + "codePostal": "20121", + "codeCommune": "2A259", + "libelleAcheminement": "REZZA", + "nomCommune": "REZZA" }, { - "codePostal": "02120", - "codeCommune": "02757", - "libelleAcheminement": "VADENCOURT", - "nomCommune": "VADENCOURT" + "codePostal": "40330", + "codeCommune": "40109", + "libelleAcheminement": "GAUJACQ", + "nomCommune": "GAUJACQ" }, { - "codePostal": "64660", - "codeCommune": "64360", - "libelleAcheminement": "LURBE ST CHRISTAU", - "nomCommune": "LURBE ST CHRISTAU" + "codePostal": "39600", + "codeCommune": "39479", + "libelleAcheminement": "ST CYR MONTMALIN", + "nomCommune": "ST CYR MONTMALIN" }, { - "codePostal": "32130", - "codeCommune": "32171", - "libelleAcheminement": "LABASTIDE SAVES", - "nomCommune": "LABASTIDE SAVES" + "codePostal": "28800", + "codeCommune": "28277", + "libelleAcheminement": "NEUVY EN DUNOIS", + "nomCommune": "NEUVY EN DUNOIS" }, { - "codePostal": "57480", - "codeCommune": "57740", - "libelleAcheminement": "WALDWISSE", - "nomCommune": "WALDWISSE" + "codePostal": "20140", + "codeCommune": "2A276", + "libelleAcheminement": "SERRA DI FERRO", + "nomCommune": "SERRA DI FERRO" }, { - "codePostal": "02110", - "codeCommune": "02760", - "libelleAcheminement": "LA VALLEE MULATRE", - "nomCommune": "LA VALLEE MULATRE" + "codePostal": "40400", + "codeCommune": "40116", + "libelleAcheminement": "GOUTS", + "nomCommune": "GOUTS" }, { - "codePostal": "64190", - "codeCommune": "64381", - "libelleAcheminement": "MERITEIN", - "nomCommune": "MERITEIN" + "codePostal": "39100", + "codeCommune": "39501", + "libelleAcheminement": "SAMPANS", + "nomCommune": "SAMPANS" }, { - "codePostal": "32170", - "codeCommune": "32181", - "libelleAcheminement": "LAGUIAN MAZOUS", - "nomCommune": "LAGUIAN MAZOUS" + "codePostal": "28630", + "codeCommune": "28278", + "libelleAcheminement": "NOGENT LE PHAYE", + "nomCommune": "NOGENT LE PHAYE" }, { - "codePostal": "57720", - "codeCommune": "57741", - "libelleAcheminement": "WALSCHBRONN", - "nomCommune": "WALSCHBRONN" + "codePostal": "20127", + "codeCommune": "2A278", + "libelleAcheminement": "SERRA DI SCOPAMENE", + "nomCommune": "SERRA DI SCOPAMENE" }, { - "codePostal": "02190", - "codeCommune": "02761", - "libelleAcheminement": "VARISCOURT", - "nomCommune": "VARISCOURT" + "codePostal": "40250", + "codeCommune": "40121", + "libelleAcheminement": "HAURIET", + "nomCommune": "HAURIET" }, { - "codePostal": "64370", - "codeCommune": "64382", - "libelleAcheminement": "MESPLEDE", - "nomCommune": "MESPLEDE" + "codePostal": "39270", + "codeCommune": "39504", + "libelleAcheminement": "SARROGNA", + "nomCommune": "SARROGNA" }, { - "codePostal": "32260", - "codeCommune": "32186", - "libelleAcheminement": "LAMAGUERE", - "nomCommune": "LAMAGUERE" + "codePostal": "28120", + "codeCommune": "28281", + "libelleAcheminement": "NOGENT SUR EURE", + "nomCommune": "NOGENT SUR EURE" }, { - "codePostal": "57320", - "codeCommune": "57749", - "libelleAcheminement": "VOELFLING LES BOUZONVILLE", - "nomCommune": "VOELFLING LES BOUZONVILLE" + "codePostal": "20125", + "codeCommune": "2A282", + "libelleAcheminement": "SOCCIA", + "nomCommune": "SOCCIA" }, { - "codePostal": "02320", - "codeCommune": "02766", - "libelleAcheminement": "VAUDESSON", - "nomCommune": "VAUDESSON" + "codePostal": "40180", + "codeCommune": "40126", + "libelleAcheminement": "HINX", + "nomCommune": "HINX" }, { - "codePostal": "64300", - "codeCommune": "64396", - "libelleAcheminement": "MONT", - "nomCommune": "MONT" + "codePostal": "39130", + "codeCommune": "39505", + "libelleAcheminement": "SAUGEOT", + "nomCommune": "SAUGEOT" }, { - "codePostal": "32240", - "codeCommune": "32189", - "libelleAcheminement": "LANNEMAIGNAN", - "nomCommune": "LANNEMAIGNAN" + "codePostal": "28310", + "codeCommune": "28284", + "libelleAcheminement": "OINVILLE ST LIPHARD", + "nomCommune": "OINVILLE ST LIPHARD" }, { - "codePostal": "57330", - "codeCommune": "57764", - "libelleAcheminement": "ZOUFFTGEN", - "nomCommune": "ZOUFFTGEN" + "codePostal": "20134", + "codeCommune": "2A322", + "libelleAcheminement": "TASSO", + "nomCommune": "TASSO" }, { - "codePostal": "02320", - "codeCommune": "02768", - "libelleAcheminement": "VAUXAILLON", - "nomCommune": "VAUXAILLON" + "codePostal": "40240", + "codeCommune": "40131", + "libelleAcheminement": "LABASTIDE D ARMAGNAC", + "nomCommune": "LABASTIDE D ARMAGNAC" }, { - "codePostal": "64800", - "codeCommune": "64400", - "libelleAcheminement": "MONTAUT", - "nomCommune": "MONTAUT" + "codePostal": "39310", + "codeCommune": "39510", + "libelleAcheminement": "SEPTMONCEL LES MOLUNES", + "nomCommune": "SEPTMONCEL LES MOLUNES" }, { - "codePostal": "32190", - "codeCommune": "32190", - "libelleAcheminement": "LANNEPAX", - "nomCommune": "LANNEPAX" + "codePostal": "28150", + "codeCommune": "28313", + "libelleAcheminement": "RECLAINVILLE", + "nomCommune": "RECLAINVILLE" }, { - "codePostal": "57970", - "codeCommune": "57767", - "libelleAcheminement": "STUCKANGE", - "nomCommune": "STUCKANGE" + "codePostal": "20118", + "codeCommune": "2A348", + "libelleAcheminement": "VICO", + "nomCommune": "VICO" }, { - "codePostal": "02350", - "codeCommune": "02790", - "libelleAcheminement": "VESLES ET CAUMONT", - "nomCommune": "VESLES ET CAUMONT" + "codePostal": "40530", + "codeCommune": "40133", + "libelleAcheminement": "LABENNE", + "nomCommune": "LABENNE" }, { - "codePostal": "64190", - "codeCommune": "64403", - "libelleAcheminement": "MONTFORT", - "nomCommune": "MONTFORT" + "codePostal": "39700", + "codeCommune": "39514", + "libelleAcheminement": "SERRE LES MOULIERES", + "nomCommune": "SERRE LES MOULIERES" }, { - "codePostal": "32220", - "codeCommune": "32206", - "libelleAcheminement": "LAYMONT", - "nomCommune": "LAYMONT" + "codePostal": "28340", + "codeCommune": "28316", + "libelleAcheminement": "ROHAIRE", + "nomCommune": "ROHAIRE" }, { - "codePostal": "58110", - "codeCommune": "58004", - "libelleAcheminement": "ALLUY", - "nomCommune": "ALLUY" + "codePostal": "20167", + "codeCommune": "2A351", + "libelleAcheminement": "VILLANOVA", + "nomCommune": "VILLANOVA" }, { - "codePostal": "02290", - "codeCommune": "02795", - "libelleAcheminement": "VIC SUR AISNE", - "nomCommune": "VIC SUR AISNE" + "codePostal": "40210", + "codeCommune": "40134", + "libelleAcheminement": "LABOUHEYRE", + "nomCommune": "LABOUHEYRE" }, { - "codePostal": "64330", - "codeCommune": "64408", - "libelleAcheminement": "MOUHOUS", - "nomCommune": "MOUHOUS" + "codePostal": "39300", + "codeCommune": "39517", + "libelleAcheminement": "SIROD", + "nomCommune": "SIROD" }, { - "codePostal": "32240", - "codeCommune": "32211", - "libelleAcheminement": "LIAS D ARMAGNAC", - "nomCommune": "LIAS D ARMAGNAC" + "codePostal": "28700", + "codeCommune": "28317", + "libelleAcheminement": "ROINVILLE", + "nomCommune": "ROINVILLE" }, { - "codePostal": "58190", - "codeCommune": "58005", - "libelleAcheminement": "AMAZY", - "nomCommune": "AMAZY" + "codePostal": "20270", + "codeCommune": "2B002", + "libelleAcheminement": "AGHIONE", + "nomCommune": "AGHIONE" }, { - "codePostal": "02160", - "codeCommune": "02797", - "libelleAcheminement": "VIEL ARCY", - "nomCommune": "VIEL ARCY" + "codePostal": "40120", + "codeCommune": "40137", + "libelleAcheminement": "LACQUY", + "nomCommune": "LACQUY" }, { - "codePostal": "64190", - "codeCommune": "64412", - "libelleAcheminement": "NABAS", - "nomCommune": "NABAS" + "codePostal": "39130", + "codeCommune": "39538", + "libelleAcheminement": "UXELLES", + "nomCommune": "UXELLES" }, { - "codePostal": "32110", - "codeCommune": "32214", - "libelleAcheminement": "LOUBEDAT", - "nomCommune": "LOUBEDAT" + "codePostal": "28300", + "codeCommune": "28325", + "libelleAcheminement": "ST AUBIN DES BOIS", + "nomCommune": "ST AUBIN DES BOIS" }, { - "codePostal": "58430", - "codeCommune": "58010", - "libelleAcheminement": "ARLEUF", - "nomCommune": "ARLEUF" + "codePostal": "20212", + "codeCommune": "2B013", + "libelleAcheminement": "ALZI", + "nomCommune": "ALZI" }, { - "codePostal": "02210", - "codeCommune": "02799", - "libelleAcheminement": "VIERZY", - "nomCommune": "VIERZY" + "codePostal": "40090", + "codeCommune": "40139", + "libelleAcheminement": "LAGLORIEUSE", + "nomCommune": "LAGLORIEUSE" }, { - "codePostal": "64190", - "codeCommune": "64414", - "libelleAcheminement": "NARP", - "nomCommune": "NARP" + "codePostal": "39380", + "codeCommune": "39546", + "libelleAcheminement": "VAUDREY", + "nomCommune": "VAUDREY" }, { - "codePostal": "32230", - "codeCommune": "32217", - "libelleAcheminement": "LOUSLITGES", - "nomCommune": "LOUSLITGES" + "codePostal": "28330", + "codeCommune": "28327", + "libelleAcheminement": "ST BOMER", + "nomCommune": "ST BOMER" }, { - "codePostal": "58700", - "codeCommune": "58013", - "libelleAcheminement": "ARTHEL", - "nomCommune": "ARTHEL" + "codePostal": "20276", + "codeCommune": "2B023", + "libelleAcheminement": "ASCO", + "nomCommune": "ASCO" }, { - "codePostal": "02540", - "codeCommune": "02800", - "libelleAcheminement": "VIFFORT", - "nomCommune": "VIFFORT" + "codePostal": "40465", + "codeCommune": "40142", + "libelleAcheminement": "LALUQUE", + "nomCommune": "LALUQUE" }, { - "codePostal": "64800", - "codeCommune": "64417", - "libelleAcheminement": "NAY", - "nomCommune": "NAY" + "codePostal": "39600", + "codeCommune": "39565", + "libelleAcheminement": "VILLENEUVE D AVAL", + "nomCommune": "VILLENEUVE D AVAL" }, { - "codePostal": "32290", - "codeCommune": "32218", - "libelleAcheminement": "LOUSSOUS DEBAT", - "nomCommune": "LOUSSOUS DEBAT" + "codePostal": "28200", + "codeCommune": "28330", + "libelleAcheminement": "VILLEMAURY", + "nomCommune": "VILLEMAURY" }, { - "codePostal": "58190", - "codeCommune": "58016", - "libelleAcheminement": "ASNOIS", - "nomCommune": "ASNOIS" + "codePostal": "20200", + "codeCommune": "2B033", + "libelleAcheminement": "BASTIA", + "nomCommune": "BASTIA" }, { - "codePostal": "02420", - "codeCommune": "02808", - "libelleAcheminement": "VILLERET", - "nomCommune": "VILLERET" + "codePostal": "40250", + "codeCommune": "40144", + "libelleAcheminement": "LARBEY", + "nomCommune": "LARBEY" }, { - "codePostal": "64120", - "codeCommune": "64425", - "libelleAcheminement": "OREGUE", - "nomCommune": "OREGUE" + "codePostal": "39800", + "codeCommune": "39570", + "libelleAcheminement": "VILLERS LES BOIS", + "nomCommune": "VILLERS LES BOIS" }, { - "codePostal": "32370", - "codeCommune": "32227", - "libelleAcheminement": "MANCIET", - "nomCommune": "MANCIET" + "codePostal": "28200", + "codeCommune": "28330", + "libelleAcheminement": "VILLEMAURY", + "nomCommune": "VILLEMAURY" }, { - "codePostal": "58110", - "codeCommune": "58024", - "libelleAcheminement": "BAZOLLES", - "nomCommune": "BAZOLLES" + "codePostal": "20226", + "codeCommune": "2B034", + "libelleAcheminement": "BELGODERE", + "nomCommune": "BELGODERE" }, { - "codePostal": "02600", - "codeCommune": "02810", - "libelleAcheminement": "VILLERS COTTERETS", - "nomCommune": "VILLERS COTTERETS" + "codePostal": "40400", + "codeCommune": "40151", + "libelleAcheminement": "LESGOR", + "nomCommune": "LESGOR" }, { - "codePostal": "64490", - "codeCommune": "64433", - "libelleAcheminement": "OSSE EN ASPE", - "nomCommune": "OSSE EN ASPE" + "codePostal": "39190", + "codeCommune": "39576", + "libelleAcheminement": "VAL SONNETTE", + "nomCommune": "VAL SONNETTE" }, { - "codePostal": "32140", - "codeCommune": "32228", - "libelleAcheminement": "MANENT MONTANE", - "nomCommune": "MANENT MONTANE" + "codePostal": "28480", + "codeCommune": "28331", + "libelleAcheminement": "SAINTIGNY", + "nomCommune": "SAINTIGNY" }, { - "codePostal": "58160", - "codeCommune": "58025", - "libelleAcheminement": "BEARD", - "nomCommune": "BEARD" + "codePostal": "20212", + "codeCommune": "2B045", + "libelleAcheminement": "BUSTANICO", + "nomCommune": "BUSTANICO" }, { - "codePostal": "02240", - "codeCommune": "02813", - "libelleAcheminement": "VILLERS LE SEC", - "nomCommune": "VILLERS LE SEC" + "codePostal": "40170", + "codeCommune": "40157", + "libelleAcheminement": "LIT ET MIXE", + "nomCommune": "LIT ET MIXE" }, { - "codePostal": "64160", - "codeCommune": "64438", - "libelleAcheminement": "OUILLON", - "nomCommune": "OUILLON" + "codePostal": "39240", + "codeCommune": "39583", + "libelleAcheminement": "VOSBLES VALFIN", + "nomCommune": "VOSBLES VALFIN" }, { - "codePostal": "32290", - "codeCommune": "32235", - "libelleAcheminement": "MARGOUET MEYMES", - "nomCommune": "MARGOUET MEYMES" + "codePostal": "28170", + "codeCommune": "28341", + "libelleAcheminement": "ST JEAN DE REBERVILLIERS", + "nomCommune": "ST JEAN DE REBERVILLIERS" }, { - "codePostal": "58420", - "codeCommune": "58026", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "20229", + "codeCommune": "2B063", + "libelleAcheminement": "CARCHETO BRUSTICO", + "nomCommune": "CARCHETO BRUSTICO" }, { - "codePostal": "02120", - "codeCommune": "02814", - "libelleAcheminement": "VILLERS LES GUISE", - "nomCommune": "VILLERS LES GUISE" + "codePostal": "40120", + "codeCommune": "40164", + "libelleAcheminement": "RETJONS", + "nomCommune": "RETJONS" }, { - "codePostal": "64150", - "codeCommune": "64443", - "libelleAcheminement": "PARDIES", - "nomCommune": "PARDIES" + "codePostal": "40700", + "codeCommune": "40007", + "libelleAcheminement": "ARGELOS", + "nomCommune": "ARGELOS" }, { - "codePostal": "32140", - "codeCommune": "32242", - "libelleAcheminement": "MASSEUBE", - "nomCommune": "MASSEUBE" + "codePostal": "28210", + "codeCommune": "28343", + "libelleAcheminement": "ST LAURENT LA GATINE", + "nomCommune": "ST LAURENT LA GATINE" }, { - "codePostal": "58700", - "codeCommune": "58027", - "libelleAcheminement": "BEAUMONT LA FERRIERE", - "nomCommune": "BEAUMONT LA FERRIERE" + "codePostal": "20237", + "codeCommune": "2B069", + "libelleAcheminement": "CASABIANCA", + "nomCommune": "CASABIANCA" }, { - "codePostal": "02300", - "codeCommune": "02820", - "libelleAcheminement": "VIRY NOUREUIL", - "nomCommune": "VIRY NOUREUIL" + "codePostal": "40320", + "codeCommune": "40174", + "libelleAcheminement": "MAURIES", + "nomCommune": "MAURIES" }, { - "codePostal": "64370", - "codeCommune": "64450", - "libelleAcheminement": "POMPS", - "nomCommune": "POMPS" + "codePostal": "40430", + "codeCommune": "40008", + "libelleAcheminement": "ARGELOUSE", + "nomCommune": "ARGELOUSE" }, { - "codePostal": "32220", - "codeCommune": "32276", - "libelleAcheminement": "MONTADET", - "nomCommune": "MONTADET" + "codePostal": "28210", + "codeCommune": "28349", + "libelleAcheminement": "ST LUCIEN", + "nomCommune": "ST LUCIEN" }, { - "codePostal": "58120", - "codeCommune": "58034", - "libelleAcheminement": "BLISMES", - "nomCommune": "BLISMES" + "codePostal": "20213", + "codeCommune": "2B077", + "libelleAcheminement": "CASTELLARE DI CASINCA", + "nomCommune": "CASTELLARE DI CASINCA" }, { - "codePostal": "02870", - "codeCommune": "02821", - "libelleAcheminement": "VIVAISE", - "nomCommune": "VIVAISE" + "codePostal": "40270", + "codeCommune": "40175", + "libelleAcheminement": "MAURRIN", + "nomCommune": "MAURRIN" }, { - "codePostal": "64460", - "codeCommune": "64451", - "libelleAcheminement": "PONSON DEBAT POUTS", - "nomCommune": "PONSON DEBAT POUTS" + "codePostal": "40700", + "codeCommune": "40016", + "libelleAcheminement": "AUBAGNAN", + "nomCommune": "AUBAGNAN" }, { - "codePostal": "32300", - "codeCommune": "32278", - "libelleAcheminement": "MONTAUT", - "nomCommune": "MONTAUT" + "codePostal": "28170", + "codeCommune": "28351", + "libelleAcheminement": "ST MAIXME HAUTERIVE", + "nomCommune": "ST MAIXME HAUTERIVE" }, { - "codePostal": "58310", - "codeCommune": "58036", - "libelleAcheminement": "BOUHY", - "nomCommune": "BOUHY" + "codePostal": "20218", + "codeCommune": "2B081", + "libelleAcheminement": "CASTIGLIONE", + "nomCommune": "CASTIGLIONE" }, { - "codePostal": "02880", - "codeCommune": "02828", - "libelleAcheminement": "VREGNY", - "nomCommune": "VREGNY" + "codePostal": "40240", + "codeCommune": "40176", + "libelleAcheminement": "MAUVEZIN D ARMAGNAC", + "nomCommune": "MAUVEZIN D ARMAGNAC" }, { - "codePostal": "64300", - "codeCommune": "64471", - "libelleAcheminement": "ST BOES", - "nomCommune": "ST BOES" + "codePostal": "40500", + "codeCommune": "40026", + "libelleAcheminement": "BAS MAUCO", + "nomCommune": "BAS MAUCO" }, { - "codePostal": "32810", - "codeCommune": "32279", - "libelleAcheminement": "MONTAUT LES CRENEAUX", - "nomCommune": "MONTAUT LES CRENEAUX" + "codePostal": "28120", + "codeCommune": "28365", + "libelleAcheminement": "SANDARVILLE", + "nomCommune": "SANDARVILLE" }, { - "codePostal": "58140", - "codeCommune": "58037", - "libelleAcheminement": "BRASSY", - "nomCommune": "BRASSY" + "codePostal": "20225", + "codeCommune": "2B084", + "libelleAcheminement": "CATERI", + "nomCommune": "CATERI" }, { - "codePostal": "02880", - "codeCommune": "02829", - "libelleAcheminement": "VUILLERY", - "nomCommune": "VUILLERY" + "codePostal": "40660", + "codeCommune": "40181", + "libelleAcheminement": "MESSANGES", + "nomCommune": "MESSANGES" }, { - "codePostal": "64500", - "codeCommune": "64483", - "libelleAcheminement": "ST JEAN DE LUZ", - "nomCommune": "ST JEAN DE LUZ" + "codePostal": "40300", + "codeCommune": "40034", + "libelleAcheminement": "BELUS", + "nomCommune": "BELUS" }, { - "codePostal": "32550", - "codeCommune": "32282", - "libelleAcheminement": "MONTEGUT", - "nomCommune": "MONTEGUT" + "codePostal": "28250", + "codeCommune": "28373", + "libelleAcheminement": "SENONCHES", + "nomCommune": "SENONCHES" }, { - "codePostal": "58800", - "codeCommune": "58047", - "libelleAcheminement": "CERVON", - "nomCommune": "CERVON" + "codePostal": "20237", + "codeCommune": "2B113", + "libelleAcheminement": "FICAJA", + "nomCommune": "FICAJA" }, { - "codePostal": "02500", - "codeCommune": "02833", - "libelleAcheminement": "WIMY", - "nomCommune": "WIMY" + "codePostal": "40290", + "codeCommune": "40186", + "libelleAcheminement": "MISSON", + "nomCommune": "MISSON" }, { - "codePostal": "64780", - "codeCommune": "64490", - "libelleAcheminement": "ST MARTIN D ARROSSA", - "nomCommune": "ST MARTIN D ARROSSA" + "codePostal": "40280", + "codeCommune": "40037", + "libelleAcheminement": "BENQUET", + "nomCommune": "BENQUET" }, { - "codePostal": "32240", - "codeCommune": "32291", - "libelleAcheminement": "MORMES", - "nomCommune": "MORMES" + "codePostal": "28260", + "codeCommune": "28377", + "libelleAcheminement": "SOREL MOUSSEL", + "nomCommune": "SOREL MOUSSEL" }, { - "codePostal": "58220", - "codeCommune": "58048", - "libelleAcheminement": "CESSY LES BOIS", - "nomCommune": "CESSY LES BOIS" + "codePostal": "20245", + "codeCommune": "2B121", + "libelleAcheminement": "GALERIA", + "nomCommune": "GALERIA" }, { - "codePostal": "03360", - "codeCommune": "03003", - "libelleAcheminement": "AINAY LE CHATEAU", - "nomCommune": "AINAY LE CHATEAU" + "codePostal": "40700", + "codeCommune": "40190", + "libelleAcheminement": "MONSEGUR", + "nomCommune": "MONSEGUR" }, { - "codePostal": "64780", - "codeCommune": "64490", - "libelleAcheminement": "ST MARTIN D ARROSSA", - "nomCommune": "ST MARTIN D ARROSSA" + "codePostal": "40370", + "codeCommune": "40040", + "libelleAcheminement": "BEYLONGUE", + "nomCommune": "BEYLONGUE" }, { - "codePostal": "32500", - "codeCommune": "32306", - "libelleAcheminement": "PAUILHAC", - "nomCommune": "PAUILHAC" + "codePostal": "28130", + "codeCommune": "28379", + "libelleAcheminement": "SOULAIRES", + "nomCommune": "SOULAIRES" }, { - "codePostal": "58700", - "codeCommune": "58054", - "libelleAcheminement": "CHAMPLIN", - "nomCommune": "CHAMPLIN" + "codePostal": "20240", + "codeCommune": "2B123", + "libelleAcheminement": "GHISONACCIA", + "nomCommune": "GHISONACCIA" }, { - "codePostal": "03420", - "codeCommune": "03007", - "libelleAcheminement": "ARPHEUILLES ST PRIEST", - "nomCommune": "ARPHEUILLES ST PRIEST" + "codePostal": "40190", + "codeCommune": "40193", + "libelleAcheminement": "MONTEGUT", + "nomCommune": "MONTEGUT" }, { - "codePostal": "64120", - "codeCommune": "64493", - "libelleAcheminement": "ST PALAIS", - "nomCommune": "ST PALAIS" + "codePostal": "40270", + "codeCommune": "40049", + "libelleAcheminement": "BORDERES ET LAMENSANS", + "nomCommune": "BORDERES ET LAMENSANS" }, { - "codePostal": "32550", - "codeCommune": "32312", - "libelleAcheminement": "PESSAN", - "nomCommune": "PESSAN" + "codePostal": "28630", + "codeCommune": "28380", + "libelleAcheminement": "SOURS", + "nomCommune": "SOURS" }, { - "codePostal": "58350", - "codeCommune": "58061", - "libelleAcheminement": "CHASNAY", - "nomCommune": "CHASNAY" + "codePostal": "20237", + "codeCommune": "2B125", + "libelleAcheminement": "GIOCATOJO", + "nomCommune": "GIOCATOJO" }, { - "codePostal": "03140", - "codeCommune": "03016", - "libelleAcheminement": "BARBERIER", - "nomCommune": "BARBERIER" + "codePostal": "40380", + "codeCommune": "40194", + "libelleAcheminement": "MONTFORT EN CHALOSSE", + "nomCommune": "MONTFORT EN CHALOSSE" }, { - "codePostal": "64270", - "codeCommune": "64494", - "libelleAcheminement": "ST PE DE LEREN", - "nomCommune": "ST PE DE LEREN" + "codePostal": "40120", + "codeCommune": "40053", + "libelleAcheminement": "BOURRIOT BERGONCE", + "nomCommune": "BOURRIOT BERGONCE" }, { - "codePostal": "32340", - "codeCommune": "32314", - "libelleAcheminement": "PEYRECAVE", - "nomCommune": "PEYRECAVE" + "codePostal": "28360", + "codeCommune": "28383", + "libelleAcheminement": "THEUVILLE", + "nomCommune": "THEUVILLE" }, { - "codePostal": "58120", - "codeCommune": "58063", - "libelleAcheminement": "CHATEAU CHINON CAMPAGNE", - "nomCommune": "CHATEAU CHINON CAMPAGNE" + "codePostal": "20252", + "codeCommune": "2B140", + "libelleAcheminement": "LENTO", + "nomCommune": "LENTO" }, { - "codePostal": "03500", - "codeCommune": "03018", - "libelleAcheminement": "BAYET", - "nomCommune": "BAYET" + "codePostal": "40300", + "codeCommune": "40211", + "libelleAcheminement": "ORIST", + "nomCommune": "ORIST" }, { - "codePostal": "64800", - "codeCommune": "64498", - "libelleAcheminement": "ST VINCENT", - "nomCommune": "ST VINCENT" + "codePostal": "40280", + "codeCommune": "40055", + "libelleAcheminement": "BRETAGNE DE MARSAN", + "nomCommune": "BRETAGNE DE MARSAN" }, { - "codePostal": "32230", - "codeCommune": "32317", - "libelleAcheminement": "PEYRUSSE VIEILLE", - "nomCommune": "PEYRUSSE VIEILLE" + "codePostal": "28170", + "codeCommune": "28386", + "libelleAcheminement": "THIMERT GATELLES", + "nomCommune": "THIMERT GATELLES" }, { - "codePostal": "58170", - "codeCommune": "58074", - "libelleAcheminement": "CHIDDES", - "nomCommune": "CHIDDES" + "codePostal": "20230", + "codeCommune": "2B143", + "libelleAcheminement": "LINGUIZZETTA", + "nomCommune": "LINGUIZZETTA" }, { - "codePostal": "03230", - "codeCommune": "03019", - "libelleAcheminement": "BEAULON", - "nomCommune": "BEAULON" + "codePostal": "40410", + "codeCommune": "40227", + "libelleAcheminement": "PISSOS", + "nomCommune": "PISSOS" }, { - "codePostal": "64300", - "codeCommune": "64500", - "libelleAcheminement": "SALLES MONGISCARD", - "nomCommune": "SALLES MONGISCARD" + "codePostal": "40120", + "codeCommune": "40058", + "libelleAcheminement": "CACHEN", + "nomCommune": "CACHEN" }, { - "codePostal": "32340", - "codeCommune": "32320", - "libelleAcheminement": "PLIEUX", - "nomCommune": "PLIEUX" + "codePostal": "28140", + "codeCommune": "28390", + "libelleAcheminement": "TILLAY LE PENEUX", + "nomCommune": "TILLAY LE PENEUX" }, { - "codePostal": "58120", - "codeCommune": "58082", - "libelleAcheminement": "CORANCY", - "nomCommune": "CORANCY" + "codePostal": "20224", + "codeCommune": "2B147", + "libelleAcheminement": "LOZZI", + "nomCommune": "LOZZI" }, { - "codePostal": "03130", - "codeCommune": "03024", - "libelleAcheminement": "BERT", - "nomCommune": "BERT" + "codePostal": "40380", + "codeCommune": "40236", + "libelleAcheminement": "POYARTIN", + "nomCommune": "POYARTIN" }, { - "codePostal": "64490", - "codeCommune": "64506", - "libelleAcheminement": "SARRANCE", - "nomCommune": "SARRANCE" + "codePostal": "40090", + "codeCommune": "40061", + "libelleAcheminement": "CAMPAGNE", + "nomCommune": "CAMPAGNE" }, { - "codePostal": "32130", - "codeCommune": "32321", - "libelleAcheminement": "POLASTRON", - "nomCommune": "POLASTRON" + "codePostal": "28310", + "codeCommune": "28392", + "libelleAcheminement": "TRANCRAINVILLE", + "nomCommune": "TRANCRAINVILLE" }, { - "codePostal": "58210", - "codeCommune": "58084", - "libelleAcheminement": "CORVOL D EMBERNARD", - "nomCommune": "CORVOL D EMBERNARD" + "codePostal": "20290", + "codeCommune": "2B148", + "libelleAcheminement": "LUCCIANA", + "nomCommune": "LUCCIANA" }, { - "codePostal": "03170", - "codeCommune": "03027", - "libelleAcheminement": "BEZENET", - "nomCommune": "BEZENET" + "codePostal": "40190", + "codeCommune": "40238", + "libelleAcheminement": "PUJO LE PLAN", + "nomCommune": "PUJO LE PLAN" }, { - "codePostal": "64420", - "codeCommune": "64507", - "libelleAcheminement": "SAUBOLE", - "nomCommune": "SAUBOLE" + "codePostal": "40380", + "codeCommune": "40068", + "libelleAcheminement": "CASSEN", + "nomCommune": "CASSEN" }, { - "codePostal": "32160", - "codeCommune": "32330", - "libelleAcheminement": "PRECHAC SUR ADOUR", - "nomCommune": "PRECHAC SUR ADOUR" + "codePostal": "28170", + "codeCommune": "28393", + "libelleAcheminement": "TREMBLAY LES VILLAGES", + "nomCommune": "TREMBLAY LES VILLAGES" }, { - "codePostal": "58300", - "codeCommune": "58087", - "libelleAcheminement": "COSSAYE", - "nomCommune": "COSSAYE" + "codePostal": "20259", + "codeCommune": "2B156", + "libelleAcheminement": "MAUSOLEO", + "nomCommune": "MAUSOLEO" }, { - "codePostal": "03170", - "codeCommune": "03031", - "libelleAcheminement": "BIZENEUILLE", - "nomCommune": "BIZENEUILLE" + "codePostal": "40320", + "codeCommune": "40239", + "libelleAcheminement": "PUYOL CAZALET", + "nomCommune": "PUYOL CAZALET" }, { - "codePostal": "64400", - "codeCommune": "64508", - "libelleAcheminement": "SAUCEDE", - "nomCommune": "SAUCEDE" + "codePostal": "40330", + "codeCommune": "40074", + "libelleAcheminement": "CASTEL SARRAZIN", + "nomCommune": "CASTEL SARRAZIN" }, { - "codePostal": "32800", - "codeCommune": "32338", - "libelleAcheminement": "RAMOUZENS", - "nomCommune": "RAMOUZENS" + "codePostal": "28800", + "codeCommune": "28396", + "libelleAcheminement": "TRIZAY LES BONNEVAL", + "nomCommune": "TRIZAY LES BONNEVAL" }, { - "codePostal": "58350", - "codeCommune": "58101", - "libelleAcheminement": "DOMPIERRE SUR NIEVRE", - "nomCommune": "DOMPIERRE SUR NIEVRE" + "codePostal": "20214", + "codeCommune": "2B167", + "libelleAcheminement": "MONTEGROSSO", + "nomCommune": "MONTEGROSSO" }, { - "codePostal": "03360", - "codeCommune": "03037", - "libelleAcheminement": "BRAIZE", - "nomCommune": "BRAIZE" + "codePostal": "40270", + "codeCommune": "40240", + "libelleAcheminement": "RENUNG", + "nomCommune": "RENUNG" }, { - "codePostal": "64230", - "codeCommune": "64511", - "libelleAcheminement": "SAUVAGNON", - "nomCommune": "SAUVAGNON" + "codePostal": "40260", + "codeCommune": "40075", + "libelleAcheminement": "CASTETS", + "nomCommune": "CASTETS" }, { - "codePostal": "32800", - "codeCommune": "32340", - "libelleAcheminement": "REANS", - "nomCommune": "REANS" + "codePostal": "28630", + "codeCommune": "28403", + "libelleAcheminement": "VER LES CHARTRES", + "nomCommune": "VER LES CHARTRES" }, { - "codePostal": "58530", - "codeCommune": "58103", - "libelleAcheminement": "DORNECY", - "nomCommune": "DORNECY" + "codePostal": "20214", + "codeCommune": "2B167", + "libelleAcheminement": "MONTEGROSSO", + "nomCommune": "MONTEGROSSO" }, { - "codePostal": "03500", - "codeCommune": "03038", - "libelleAcheminement": "BRANSAT", - "nomCommune": "BRANSAT" + "codePostal": "40180", + "codeCommune": "40244", + "libelleAcheminement": "RIVIERE SAAS ET GOURBY", + "nomCommune": "RIVIERE SAAS ET GOURBY" }, { - "codePostal": "64350", - "codeCommune": "64517", - "libelleAcheminement": "SEMEACQ BLACHON", - "nomCommune": "SEMEACQ BLACHON" + "codePostal": "40310", + "codeCommune": "40102", + "libelleAcheminement": "GABARRET", + "nomCommune": "GABARRET" }, { - "codePostal": "32390", - "codeCommune": "32341", - "libelleAcheminement": "REJAUMONT", - "nomCommune": "REJAUMONT" + "codePostal": "28500", + "codeCommune": "28405", + "libelleAcheminement": "VERT EN DROUAIS", + "nomCommune": "VERT EN DROUAIS" }, { - "codePostal": "58430", - "codeCommune": "58111", - "libelleAcheminement": "FACHIN", - "nomCommune": "FACHIN" + "codePostal": "20218", + "codeCommune": "2B169", + "libelleAcheminement": "MOROSAGLIA", + "nomCommune": "MOROSAGLIA" }, { - "codePostal": "03110", - "codeCommune": "03043", - "libelleAcheminement": "BROUT VERNET", - "nomCommune": "BROUT VERNET" + "codePostal": "40090", + "codeCommune": "40250", + "libelleAcheminement": "ST AVIT", + "nomCommune": "ST AVIT" }, { - "codePostal": "64420", - "codeCommune": "64526", - "libelleAcheminement": "SOUMOULOU", - "nomCommune": "SOUMOULOU" + "codePostal": "40420", + "codeCommune": "40105", + "libelleAcheminement": "GAREIN", + "nomCommune": "GAREIN" }, { - "codePostal": "32390", - "codeCommune": "32347", - "libelleAcheminement": "ROQUEFORT", - "nomCommune": "ROQUEFORT" + "codePostal": "28150", + "codeCommune": "28406", + "libelleAcheminement": "EOLE EN BEAUCE", + "nomCommune": "EOLE EN BEAUCE" }, { - "codePostal": "58170", - "codeCommune": "58114", - "libelleAcheminement": "FLETY", - "nomCommune": "FLETY" + "codePostal": "20225", + "codeCommune": "2B175", + "libelleAcheminement": "NESSA", + "nomCommune": "NESSA" }, { - "codePostal": "03440", - "codeCommune": "03046", - "libelleAcheminement": "BUXIERES LES MINES", - "nomCommune": "BUXIERES LES MINES" + "codePostal": "40190", + "codeCommune": "40255", + "libelleAcheminement": "ST CRICQ VILLENEUVE", + "nomCommune": "ST CRICQ VILLENEUVE" }, { - "codePostal": "64250", - "codeCommune": "64527", - "libelleAcheminement": "SOURAIDE", - "nomCommune": "SOURAIDE" + "codePostal": "40180", + "codeCommune": "40106", + "libelleAcheminement": "GARREY", + "nomCommune": "GARREY" }, { - "codePostal": "32310", - "codeCommune": "32351", - "libelleAcheminement": "ROQUES", - "nomCommune": "ROQUES" + "codePostal": "28480", + "codeCommune": "28407", + "libelleAcheminement": "VICHERES", + "nomCommune": "VICHERES" }, { - "codePostal": "58600", - "codeCommune": "58117", - "libelleAcheminement": "FOURCHAMBAULT", - "nomCommune": "FOURCHAMBAULT" + "codePostal": "20242", + "codeCommune": "2B177", + "libelleAcheminement": "NOCETA", + "nomCommune": "NOCETA" }, { - "codePostal": "03250", - "codeCommune": "03050", - "libelleAcheminement": "LA CHABANNE", - "nomCommune": "LA CHABANNE" + "codePostal": "40200", + "codeCommune": "40257", + "libelleAcheminement": "STE EULALIE EN BORN", + "nomCommune": "STE EULALIE EN BORN" }, { - "codePostal": "64360", - "codeCommune": "64535", - "libelleAcheminement": "TARSACQ", - "nomCommune": "TARSACQ" + "codePostal": "40090", + "codeCommune": "40111", + "libelleAcheminement": "GELOUX", + "nomCommune": "GELOUX" }, { - "codePostal": "32200", - "codeCommune": "32356", - "libelleAcheminement": "ST ANDRE", - "nomCommune": "ST ANDRE" + "codePostal": "28130", + "codeCommune": "28417", + "libelleAcheminement": "VILLIERS LE MORHIER", + "nomCommune": "VILLIERS LE MORHIER" }, { - "codePostal": "58270", - "codeCommune": "58119", - "libelleAcheminement": "FRASNAY REUGNY", - "nomCommune": "FRASNAY REUGNY" + "codePostal": "20234", + "codeCommune": "2B179", + "libelleAcheminement": "NOVALE", + "nomCommune": "NOVALE" }, { - "codePostal": "03140", - "codeCommune": "03053", - "libelleAcheminement": "CHANTELLE", - "nomCommune": "CHANTELLE" + "codePostal": "40190", + "codeCommune": "40258", + "libelleAcheminement": "STE FOY", + "nomCommune": "STE FOY" }, { - "codePostal": "64470", - "codeCommune": "64537", - "libelleAcheminement": "TROIS VILLES", - "nomCommune": "TROIS VILLES" + "codePostal": "40380", + "codeCommune": "40112", + "libelleAcheminement": "GIBRET", + "nomCommune": "GIBRET" }, { - "codePostal": "32340", - "codeCommune": "32358", - "libelleAcheminement": "ST ANTOINE", - "nomCommune": "ST ANTOINE" + "codePostal": "28150", + "codeCommune": "28422", + "libelleAcheminement": "LES VILLAGES VOVEENS", + "nomCommune": "LES VILLAGES VOVEENS" }, { - "codePostal": "58230", - "codeCommune": "58129", - "libelleAcheminement": "GOULOUX", - "nomCommune": "GOULOUX" + "codePostal": "20272", + "codeCommune": "2B213", + "libelleAcheminement": "PIANELLO", + "nomCommune": "PIANELLO" }, { - "codePostal": "03380", - "codeCommune": "03055", - "libelleAcheminement": "LA CHAPELAUDE", - "nomCommune": "LA CHAPELAUDE" + "codePostal": "40240", + "codeCommune": "40267", + "libelleAcheminement": "ST JUSTIN", + "nomCommune": "ST JUSTIN" }, { - "codePostal": "64160", - "codeCommune": "64544", - "libelleAcheminement": "UROST", - "nomCommune": "UROST" + "codePostal": "40465", + "codeCommune": "40115", + "libelleAcheminement": "GOUSSE", + "nomCommune": "GOUSSE" }, { - "codePostal": "32160", - "codeCommune": "32362", - "libelleAcheminement": "ST AUNIX LENGROS", - "nomCommune": "ST AUNIX LENGROS" + "codePostal": "29300", + "codeCommune": "29002", + "libelleAcheminement": "ARZANO", + "nomCommune": "ARZANO" }, { - "codePostal": "58330", - "codeCommune": "58136", - "libelleAcheminement": "JAILLY", - "nomCommune": "JAILLY" + "codePostal": "20215", + "codeCommune": "2B214", + "libelleAcheminement": "PIANO", + "nomCommune": "PIANO" }, { - "codePostal": "03390", - "codeCommune": "03058", - "libelleAcheminement": "CHAPPES", - "nomCommune": "CHAPPES" + "codePostal": "40300", + "codeCommune": "40269", + "libelleAcheminement": "ST LON LES MINES", + "nomCommune": "ST LON LES MINES" }, { - "codePostal": "64122", - "codeCommune": "64545", - "libelleAcheminement": "URRUGNE", - "nomCommune": "URRUGNE" + "codePostal": "40290", + "codeCommune": "40118", + "libelleAcheminement": "HABAS", + "nomCommune": "HABAS" }, { - "codePostal": "32300", - "codeCommune": "32363", - "libelleAcheminement": "STE AURENCE CAZAUX", - "nomCommune": "STE AURENCE CAZAUX" + "codePostal": "29770", + "codeCommune": "29003", + "libelleAcheminement": "AUDIERNE", + "nomCommune": "AUDIERNE" }, { - "codePostal": "58240", - "codeCommune": "58148", - "libelleAcheminement": "LUTHENAY UXELOUP", - "nomCommune": "LUTHENAY UXELOUP" + "codePostal": "20251", + "codeCommune": "2B218", + "libelleAcheminement": "PIEDICORTE DI GAGGIO", + "nomCommune": "PIEDICORTE DI GAGGIO" }, { - "codePostal": "03800", - "codeCommune": "03061", - "libelleAcheminement": "CHARMES", - "nomCommune": "CHARMES" + "codePostal": "40390", + "codeCommune": "40272", + "libelleAcheminement": "ST MARTIN DE HINX", + "nomCommune": "ST MARTIN DE HINX" }, { - "codePostal": "64480", - "codeCommune": "64547", - "libelleAcheminement": "USTARITZ", - "nomCommune": "USTARITZ" + "codePostal": "40310", + "codeCommune": "40124", + "libelleAcheminement": "HERRE", + "nomCommune": "HERRE" }, { - "codePostal": "32320", - "codeCommune": "32367", - "libelleAcheminement": "ST CHRISTAUD", - "nomCommune": "ST CHRISTAUD" + "codePostal": "29690", + "codeCommune": "29013", + "libelleAcheminement": "BOTMEUR", + "nomCommune": "BOTMEUR" }, { - "codePostal": "58260", - "codeCommune": "58151", - "libelleAcheminement": "LA MACHINE", - "nomCommune": "LA MACHINE" + "codePostal": "20233", + "codeCommune": "2B224", + "libelleAcheminement": "PIETRACORBARA", + "nomCommune": "PIETRACORBARA" }, { - "codePostal": "03140", - "codeCommune": "03062", - "libelleAcheminement": "CHARROUX", - "nomCommune": "CHARROUX" + "codePostal": "40280", + "codeCommune": "40281", + "libelleAcheminement": "ST PIERRE DU MONT", + "nomCommune": "ST PIERRE DU MONT" }, { - "codePostal": "64230", - "codeCommune": "64549", - "libelleAcheminement": "UZEIN", - "nomCommune": "UZEIN" + "codePostal": "40180", + "codeCommune": "40125", + "libelleAcheminement": "HEUGAS", + "nomCommune": "HEUGAS" }, { - "codePostal": "32380", - "codeCommune": "32371", - "libelleAcheminement": "ST CREAC", - "nomCommune": "ST CREAC" + "codePostal": "29860", + "codeCommune": "29015", + "libelleAcheminement": "BOURG BLANC", + "nomCommune": "BOURG BLANC" }, { - "codePostal": "58140", - "codeCommune": "58166", - "libelleAcheminement": "MHERE", - "nomCommune": "MHERE" + "codePostal": "20237", + "codeCommune": "2B246", + "libelleAcheminement": "LA PORTA", + "nomCommune": "LA PORTA" }, { - "codePostal": "03510", - "codeCommune": "03063", - "libelleAcheminement": "CHASSENARD", - "nomCommune": "CHASSENARD" + "codePostal": "40990", + "codeCommune": "40283", + "libelleAcheminement": "ST VINCENT DE PAUL", + "nomCommune": "ST VINCENT DE PAUL" }, { - "codePostal": "64110", - "codeCommune": "64550", - "libelleAcheminement": "UZOS", - "nomCommune": "UZOS" + "codePostal": "40700", + "codeCommune": "40128", + "libelleAcheminement": "HORSARRIEU", + "nomCommune": "HORSARRIEU" }, { - "codePostal": "32170", - "codeCommune": "32373", - "libelleAcheminement": "STE DODE", - "nomCommune": "STE DODE" + "codePostal": "29190", + "codeCommune": "29016", + "libelleAcheminement": "BRASPARTS", + "nomCommune": "BRASPARTS" }, { - "codePostal": "58250", - "codeCommune": "58173", - "libelleAcheminement": "MONTARON", - "nomCommune": "MONTARON" + "codePostal": "20213", + "codeCommune": "2B252", + "libelleAcheminement": "PRUNO", + "nomCommune": "PRUNO" }, { - "codePostal": "03250", - "codeCommune": "03066", - "libelleAcheminement": "CHATEL MONTAGNE", - "nomCommune": "CHATEL MONTAGNE" + "codePostal": "40320", + "codeCommune": "40286", + "libelleAcheminement": "SAMADET", + "nomCommune": "SAMADET" }, { - "codePostal": "64400", - "codeCommune": "64551", - "libelleAcheminement": "VERDETS", - "nomCommune": "VERDETS" + "codePostal": "40230", + "codeCommune": "40129", + "libelleAcheminement": "JOSSE", + "nomCommune": "JOSSE" }, { - "codePostal": "32110", - "codeCommune": "32380", - "libelleAcheminement": "ST GRIEDE", - "nomCommune": "ST GRIEDE" + "codePostal": "29810", + "codeCommune": "29017", + "libelleAcheminement": "BRELES", + "nomCommune": "BRELES" }, { - "codePostal": "58110", - "codeCommune": "58175", - "libelleAcheminement": "MONT ET MARRE", - "nomCommune": "MONT ET MARRE" + "codePostal": "20250", + "codeCommune": "2B260", + "libelleAcheminement": "RIVENTOSA", + "nomCommune": "RIVENTOSA" }, { - "codePostal": "03210", - "codeCommune": "03069", - "libelleAcheminement": "CHATILLON", - "nomCommune": "CHATILLON" + "codePostal": "40500", + "codeCommune": "40289", + "libelleAcheminement": "SARRAZIET", + "nomCommune": "SARRAZIET" }, { - "codePostal": "64170", - "codeCommune": "64554", - "libelleAcheminement": "VIELLENAVE D ARTHEZ", - "nomCommune": "VIELLENAVE D ARTHEZ" + "codePostal": "40700", + "codeCommune": "40130", + "libelleAcheminement": "LABASTIDE CHALOSSE", + "nomCommune": "LABASTIDE CHALOSSE" }, { - "codePostal": "32190", - "codeCommune": "32382", - "libelleAcheminement": "ST JEAN POUTGE", - "nomCommune": "ST JEAN POUTGE" + "codePostal": "29200", + "codeCommune": "29019", + "libelleAcheminement": "BREST", + "nomCommune": "BREST" }, { - "codePostal": "58340", - "codeCommune": "58178", - "libelleAcheminement": "MONTIGNY SUR CANNE", - "nomCommune": "MONTIGNY SUR CANNE" + "codePostal": "20246", + "codeCommune": "2B287", + "libelleAcheminement": "SORIO", + "nomCommune": "SORIO" }, { - "codePostal": "03230", - "codeCommune": "03074", - "libelleAcheminement": "CHEVAGNES", - "nomCommune": "CHEVAGNES" + "codePostal": "40420", + "codeCommune": "40297", + "libelleAcheminement": "LE SEN", + "nomCommune": "LE SEN" }, { - "codePostal": "65390", - "codeCommune": "65007", - "libelleAcheminement": "ANDREST", - "nomCommune": "ANDREST" + "codePostal": "40240", + "codeCommune": "40140", + "libelleAcheminement": "LAGRANGE", + "nomCommune": "LAGRANGE" }, { - "codePostal": "32360", - "codeCommune": "32384", - "libelleAcheminement": "ST LARY", - "nomCommune": "ST LARY" + "codePostal": "29270", + "codeCommune": "29024", + "libelleAcheminement": "CARHAIX PLOUGUER", + "nomCommune": "CARHAIX PLOUGUER" }, { - "codePostal": "58290", - "codeCommune": "58182", - "libelleAcheminement": "MOULINS ENGILBERT", - "nomCommune": "MOULINS ENGILBERT" + "codePostal": "20250", + "codeCommune": "2B289", + "libelleAcheminement": "SOVERIA", + "nomCommune": "SOVERIA" }, { - "codePostal": "03230", - "codeCommune": "03076", - "libelleAcheminement": "CHEZY", - "nomCommune": "CHEZY" + "codePostal": "40700", + "codeCommune": "40298", + "libelleAcheminement": "SERRES GASTON", + "nomCommune": "SERRES GASTON" }, { - "codePostal": "65100", - "codeCommune": "65011", - "libelleAcheminement": "LES ANGLES", - "nomCommune": "LES ANGLES" + "codePostal": "40250", + "codeCommune": "40141", + "libelleAcheminement": "LAHOSSE", + "nomCommune": "LAHOSSE" }, { - "codePostal": "32450", - "codeCommune": "32428", - "libelleAcheminement": "SEMEZIES CACHAN", - "nomCommune": "SEMEZIES CACHAN" + "codePostal": "29150", + "codeCommune": "29026", + "libelleAcheminement": "CHATEAULIN", + "nomCommune": "CHATEAULIN" }, { - "codePostal": "58190", - "codeCommune": "58190", - "libelleAcheminement": "NEUFFONTAINES", - "nomCommune": "NEUFFONTAINES" + "codePostal": "20226", + "codeCommune": "2B290", + "libelleAcheminement": "SPELONCATO", + "nomCommune": "SPELONCATO" }, { - "codePostal": "03240", - "codeCommune": "03092", - "libelleAcheminement": "CRESSANGES", - "nomCommune": "CRESSANGES" + "codePostal": "40300", + "codeCommune": "40306", + "libelleAcheminement": "SORDE L ABBAYE", + "nomCommune": "SORDE L ABBAYE" }, { - "codePostal": "65200", - "codeCommune": "65016", - "libelleAcheminement": "ANTIST", - "nomCommune": "ANTIST" + "codePostal": "40250", + "codeCommune": "40147", + "libelleAcheminement": "LAUREDE", + "nomCommune": "LAUREDE" }, { - "codePostal": "32130", - "codeCommune": "32432", - "libelleAcheminement": "SEYSSES SAVES", - "nomCommune": "SEYSSES SAVES" + "codePostal": "29233", + "codeCommune": "29030", + "libelleAcheminement": "CLEDER", + "nomCommune": "CLEDER" }, { - "codePostal": "58000", - "codeCommune": "58194", - "libelleAcheminement": "NEVERS", - "nomCommune": "NEVERS" + "codePostal": "20221", + "codeCommune": "2B293", + "libelleAcheminement": "SANT ANDREA DI COTONE", + "nomCommune": "SANT ANDREA DI COTONE" }, { - "codePostal": "03140", - "codeCommune": "03096", - "libelleAcheminement": "DENEUILLE LES CHANTELLE", - "nomCommune": "DENEUILLE LES CHANTELLE" + "codePostal": "40430", + "codeCommune": "40307", + "libelleAcheminement": "SORE", + "nomCommune": "SORE" }, { - "codePostal": "65360", - "codeCommune": "65019", - "libelleAcheminement": "ARCIZAC ADOUR", - "nomCommune": "ARCIZAC ADOUR" + "codePostal": "40120", + "codeCommune": "40149", + "libelleAcheminement": "LENCOUACQ", + "nomCommune": "LENCOUACQ" }, { - "codePostal": "32110", - "codeCommune": "32434", - "libelleAcheminement": "SION", - "nomCommune": "SION" + "codePostal": "29950", + "codeCommune": "29032", + "libelleAcheminement": "CLOHARS FOUESNANT", + "nomCommune": "CLOHARS FOUESNANT" }, { - "codePostal": "58250", - "codeCommune": "58195", - "libelleAcheminement": "LA NOCLE MAULAIX", - "nomCommune": "LA NOCLE MAULAIX" + "codePostal": "20220", + "codeCommune": "2B296", + "libelleAcheminement": "SANT ANTONINO", + "nomCommune": "SANT ANTONINO" }, { - "codePostal": "03310", - "codeCommune": "03106", - "libelleAcheminement": "DURDAT LAREQUILLE", - "nomCommune": "DURDAT LAREQUILLE" + "codePostal": "40250", + "codeCommune": "40309", + "libelleAcheminement": "SOUPROSSE", + "nomCommune": "SOUPROSSE" }, { - "codePostal": "65400", - "codeCommune": "65021", - "libelleAcheminement": "ARCIZANS AVANT", - "nomCommune": "ARCIZANS AVANT" + "codePostal": "40260", + "codeCommune": "40152", + "libelleAcheminement": "LESPERON", + "nomCommune": "LESPERON" }, { - "codePostal": "32430", - "codeCommune": "32435", - "libelleAcheminement": "SIRAC", - "nomCommune": "SIRAC" + "codePostal": "29870", + "codeCommune": "29035", + "libelleAcheminement": "COAT MEAL", + "nomCommune": "COAT MEAL" }, { - "codePostal": "58210", - "codeCommune": "58201", - "libelleAcheminement": "OUDAN", - "nomCommune": "OUDAN" + "codePostal": "20244", + "codeCommune": "2B304", + "libelleAcheminement": "SAN LORENZO", + "nomCommune": "SAN LORENZO" }, { - "codePostal": "03800", - "codeCommune": "03118", - "libelleAcheminement": "GANNAT", - "nomCommune": "GANNAT" + "codePostal": "40400", + "codeCommune": "40313", + "libelleAcheminement": "TARTAS", + "nomCommune": "TARTAS" }, { - "codePostal": "65240", - "codeCommune": "65023", - "libelleAcheminement": "ARDENGOST", - "nomCommune": "ARDENGOST" + "codePostal": "40250", + "codeCommune": "40153", + "libelleAcheminement": "LE LEUY", + "nomCommune": "LE LEUY" }, { - "codePostal": "32190", - "codeCommune": "32456", - "libelleAcheminement": "TUDELLE", - "nomCommune": "TUDELLE" + "codePostal": "29160", + "codeCommune": "29042", + "libelleAcheminement": "CROZON", + "nomCommune": "CROZON" }, { - "codePostal": "58700", - "codeCommune": "58203", - "libelleAcheminement": "OULON", - "nomCommune": "OULON" + "codePostal": "20230", + "codeCommune": "2B307", + "libelleAcheminement": "SANTA LUCIA DI MORIANI", + "nomCommune": "SANTA LUCIA DI MORIANI" }, { - "codePostal": "03270", - "codeCommune": "03126", - "libelleAcheminement": "HAUTERIVE", - "nomCommune": "HAUTERIVE" + "codePostal": "40320", + "codeCommune": "40321", + "libelleAcheminement": "URGONS", + "nomCommune": "URGONS" }, { - "codePostal": "65230", - "codeCommune": "65026", - "libelleAcheminement": "ARIES ESPENAN", - "nomCommune": "ARIES ESPENAN" + "codePostal": "40410", + "codeCommune": "40156", + "libelleAcheminement": "LIPOSTHEY", + "nomCommune": "LIPOSTHEY" }, { - "codePostal": "32400", - "codeCommune": "32461", - "libelleAcheminement": "VERLUS", - "nomCommune": "VERLUS" + "codePostal": "29800", + "codeCommune": "29056", + "libelleAcheminement": "LA FOREST LANDERNEAU", + "nomCommune": "LA FOREST LANDERNEAU" }, { - "codePostal": "58130", - "codeCommune": "58204", - "libelleAcheminement": "VAUX D AMOGNES", - "nomCommune": "VAUX D AMOGNES" + "codePostal": "20200", + "codeCommune": "2B309", + "libelleAcheminement": "SANTA MARIA DI LOTA", + "nomCommune": "SANTA MARIA DI LOTA" }, { - "codePostal": "03360", - "codeCommune": "03130", - "libelleAcheminement": "ISLE ET BARDAIS", - "nomCommune": "ISLE ET BARDAIS" + "codePostal": "40420", + "codeCommune": "40323", + "libelleAcheminement": "VERT", + "nomCommune": "VERT" }, { - "codePostal": "65100", - "codeCommune": "65033", - "libelleAcheminement": "ARRODETS EZ ANGLES", - "nomCommune": "ARRODETS EZ ANGLES" + "codePostal": "40250", + "codeCommune": "40160", + "libelleAcheminement": "LOURQUEN", + "nomCommune": "LOURQUEN" }, { - "codePostal": "33124", - "codeCommune": "33002", - "libelleAcheminement": "AILLAS", - "nomCommune": "AILLAS" + "codePostal": "29170", + "codeCommune": "29058", + "libelleAcheminement": "FOUESNANT", + "nomCommune": "FOUESNANT" }, { - "codePostal": "58800", - "codeCommune": "58208", - "libelleAcheminement": "PAZY", - "nomCommune": "PAZY" + "codePostal": "20221", + "codeCommune": "2B311", + "libelleAcheminement": "SANTA MARIA POGGIO", + "nomCommune": "SANTA MARIA POGGIO" }, { - "codePostal": "03130", - "codeCommune": "03144", - "libelleAcheminement": "LIERNOLLES", - "nomCommune": "LIERNOLLES" + "codePostal": "40380", + "codeCommune": "40324", + "libelleAcheminement": "VICQ D AURIBAT", + "nomCommune": "VICQ D AURIBAT" }, { - "codePostal": "65400", - "codeCommune": "65036", - "libelleAcheminement": "ARTALENS SOUIN", - "nomCommune": "ARTALENS SOUIN" + "codePostal": "40630", + "codeCommune": "40165", + "libelleAcheminement": "LUGLON", + "nomCommune": "LUGLON" }, { - "codePostal": "33510", - "codeCommune": "33005", - "libelleAcheminement": "ANDERNOS LES BAINS", - "nomCommune": "ANDERNOS LES BAINS" + "codePostal": "29190", + "codeCommune": "29062", + "libelleAcheminement": "GOUEZEC", + "nomCommune": "GOUEZEC" }, { - "codePostal": "58700", - "codeCommune": "58218", - "libelleAcheminement": "PREMERY", - "nomCommune": "PREMERY" + "codePostal": "20230", + "codeCommune": "2B313", + "libelleAcheminement": "SAN NICOLAO", + "nomCommune": "SAN NICOLAO" }, { - "codePostal": "03500", - "codeCommune": "03149", - "libelleAcheminement": "LOUCHY MONTFAND", - "nomCommune": "LOUCHY MONTFAND" + "codePostal": "40560", + "codeCommune": "40326", + "libelleAcheminement": "VIELLE ST GIRONS", + "nomCommune": "VIELLE ST GIRONS" }, { - "codePostal": "65130", - "codeCommune": "65041", - "libelleAcheminement": "ASQUE", - "nomCommune": "ASQUE" + "codePostal": "40140", + "codeCommune": "40168", + "libelleAcheminement": "MAGESCQ", + "nomCommune": "MAGESCQ" }, { - "codePostal": "33460", - "codeCommune": "33010", - "libelleAcheminement": "ARCINS", - "nomCommune": "ARCINS" + "codePostal": "29820", + "codeCommune": "29069", + "libelleAcheminement": "GUILERS", + "nomCommune": "GUILERS" }, { - "codePostal": "58190", - "codeCommune": "58230", - "libelleAcheminement": "ST AUBIN DES CHAUMES", - "nomCommune": "ST AUBIN DES CHAUMES" + "codePostal": "20217", + "codeCommune": "2B314", + "libelleAcheminement": "SANTO PIETRO DI TENDA", + "nomCommune": "SANTO PIETRO DI TENDA" }, { - "codePostal": "03320", - "codeCommune": "03155", - "libelleAcheminement": "LURCY LEVIS", - "nomCommune": "LURCY LEVIS" + "codePostal": "40480", + "codeCommune": "40328", + "libelleAcheminement": "VIEUX BOUCAU LES BAINS", + "nomCommune": "VIEUX BOUCAU LES BAINS" }, { - "codePostal": "65200", - "codeCommune": "65043", - "libelleAcheminement": "ASTUGUE", - "nomCommune": "ASTUGUE" + "codePostal": "40120", + "codeCommune": "40169", + "libelleAcheminement": "MAILLAS", + "nomCommune": "MAILLAS" }, { - "codePostal": "33240", - "codeCommune": "33018", - "libelleAcheminement": "VAL DE VIRVEE", - "nomCommune": "VAL DE VIRVEE" + "codePostal": "29880", + "codeCommune": "29077", + "libelleAcheminement": "GUISSENY", + "nomCommune": "GUISSENY" }, { - "codePostal": "58270", - "codeCommune": "58232", - "libelleAcheminement": "ST BENIN D AZY", - "nomCommune": "ST BENIN D AZY" + "codePostal": "20220", + "codeCommune": "2B316", + "libelleAcheminement": "SANTA REPARATA DI BALAGNA", + "nomCommune": "SANTA REPARATA DI BALAGNA" }, { - "codePostal": "03260", - "codeCommune": "03157", - "libelleAcheminement": "MAGNET", - "nomCommune": "MAGNET" + "codePostal": "40110", + "codeCommune": "40330", + "libelleAcheminement": "VILLENAVE", + "nomCommune": "VILLENAVE" }, { - "codePostal": "65390", - "codeCommune": "65048", - "libelleAcheminement": "AURENSAN", - "nomCommune": "AURENSAN" + "codePostal": "40250", + "codeCommune": "40177", + "libelleAcheminement": "MAYLIS", + "nomCommune": "MAYLIS" }, { - "codePostal": "33124", - "codeCommune": "33021", - "libelleAcheminement": "AUROS", - "nomCommune": "AUROS" + "codePostal": "29990", + "codeCommune": "29083", + "libelleAcheminement": "ILE DE SEIN", + "nomCommune": "ILE DE SEIN" }, { - "codePostal": "58230", - "codeCommune": "58235", - "libelleAcheminement": "ST BRISSON", - "nomCommune": "ST BRISSON" + "codePostal": "20230", + "codeCommune": "2B319", + "libelleAcheminement": "TALASANI", + "nomCommune": "TALASANI" }, { - "codePostal": "03210", - "codeCommune": "03162", - "libelleAcheminement": "MARIGNY", - "nomCommune": "MARIGNY" + "codePostal": "40110", + "codeCommune": "40333", + "libelleAcheminement": "YGOS ST SATURNIN", + "nomCommune": "YGOS ST SATURNIN" }, { - "codePostal": "65370", - "codeCommune": "65053", - "libelleAcheminement": "AVEUX", - "nomCommune": "AVEUX" + "codePostal": "40350", + "codeCommune": "40183", + "libelleAcheminement": "MIMBASTE", + "nomCommune": "MIMBASTE" }, { - "codePostal": "33830", - "codeCommune": "33042", - "libelleAcheminement": "BELIN BELIET", - "nomCommune": "BELIN BELIET" + "codePostal": "29400", + "codeCommune": "29097", + "libelleAcheminement": "LAMPAUL GUIMILIAU", + "nomCommune": "LAMPAUL GUIMILIAU" }, { - "codePostal": "58220", - "codeCommune": "58236", - "libelleAcheminement": "STE COLOMBE DES BOIS", - "nomCommune": "STE COLOMBE DES BOIS" + "codePostal": "20248", + "codeCommune": "2B327", + "libelleAcheminement": "TOMINO", + "nomCommune": "TOMINO" }, { - "codePostal": "03360", - "codeCommune": "03168", - "libelleAcheminement": "MEAULNE VITRAY", - "nomCommune": "MEAULNE VITRAY" + "codePostal": "40180", + "codeCommune": "40334", + "libelleAcheminement": "YZOSSE", + "nomCommune": "YZOSSE" }, { - "codePostal": "65170", - "codeCommune": "65058", - "libelleAcheminement": "AZET", - "nomCommune": "AZET" + "codePostal": "40660", + "codeCommune": "40187", + "libelleAcheminement": "MOLIETS ET MAA", + "nomCommune": "MOLIETS ET MAA" }, { - "codePostal": "33830", - "codeCommune": "33042", - "libelleAcheminement": "BELIN BELIET", - "nomCommune": "BELIN BELIET" + "codePostal": "29870", + "codeCommune": "29101", + "libelleAcheminement": "LANDEDA", + "nomCommune": "LANDEDA" }, { - "codePostal": "58270", - "codeCommune": "58239", - "libelleAcheminement": "ST FIRMIN", - "nomCommune": "ST FIRMIN" + "codePostal": "20221", + "codeCommune": "2B335", + "libelleAcheminement": "VALLE DI CAMPOLORO", + "nomCommune": "VALLE DI CAMPOLORO" }, { - "codePostal": "03510", - "codeCommune": "03173", - "libelleAcheminement": "MOLINET", - "nomCommune": "MOLINET" + "codePostal": "41000", + "codeCommune": "41018", + "libelleAcheminement": "BLOIS", + "nomCommune": "BLOIS" }, { - "codePostal": "65140", - "codeCommune": "65061", - "libelleAcheminement": "BARBACHEN", - "nomCommune": "BARBACHEN" + "codePostal": "40410", + "codeCommune": "40200", + "libelleAcheminement": "MOUSTEY", + "nomCommune": "MOUSTEY" }, { - "codePostal": "33500", - "codeCommune": "33052", - "libelleAcheminement": "LES BILLAUX", - "nomCommune": "LES BILLAUX" + "codePostal": "29530", + "codeCommune": "29102", + "libelleAcheminement": "LANDELEAU", + "nomCommune": "LANDELEAU" }, { - "codePostal": "58360", - "codeCommune": "58246", - "libelleAcheminement": "ST HONORE LES BAINS", - "nomCommune": "ST HONORE LES BAINS" + "codePostal": "20215", + "codeCommune": "2B346", + "libelleAcheminement": "VESCOVATO", + "nomCommune": "VESCOVATO" }, { - "codePostal": "03470", - "codeCommune": "03177", - "libelleAcheminement": "MONETAY SUR LOIRE", - "nomCommune": "MONETAY SUR LOIRE" + "codePostal": "41250", + "codeCommune": "41025", + "libelleAcheminement": "BRACIEUX", + "nomCommune": "BRACIEUX" }, { - "codePostal": "65100", - "codeCommune": "65065", - "libelleAcheminement": "BARLEST", - "nomCommune": "BARLEST" + "codePostal": "40250", + "codeCommune": "40204", + "libelleAcheminement": "NERBIS", + "nomCommune": "NERBIS" }, { - "codePostal": "33390", - "codeCommune": "33058", - "libelleAcheminement": "BLAYE", - "nomCommune": "BLAYE" + "codePostal": "29510", + "codeCommune": "29107", + "libelleAcheminement": "LANDUDAL", + "nomCommune": "LANDUDAL" }, { - "codePostal": "58130", - "codeCommune": "58254", - "libelleAcheminement": "ST MARTIN D HEUILLE", - "nomCommune": "ST MARTIN D HEUILLE" + "codePostal": "20290", + "codeCommune": "2B350", + "libelleAcheminement": "VIGNALE", + "nomCommune": "VIGNALE" }, { - "codePostal": "03130", - "codeCommune": "03178", - "libelleAcheminement": "MONTAIGUET EN FOREZ", - "nomCommune": "MONTAIGUET EN FOREZ" + "codePostal": "41160", + "codeCommune": "41026", + "libelleAcheminement": "BREVAINVILLE", + "nomCommune": "BREVAINVILLE" }, { - "codePostal": "65130", - "codeCommune": "65071", - "libelleAcheminement": "BATSERE", - "nomCommune": "BATSERE" + "codePostal": "40300", + "codeCommune": "40206", + "libelleAcheminement": "OEYREGAVE", + "nomCommune": "OEYREGAVE" }, { - "codePostal": "33670", - "codeCommune": "33059", - "libelleAcheminement": "BLESIGNAC", - "nomCommune": "BLESIGNAC" + "codePostal": "29160", + "codeCommune": "29120", + "libelleAcheminement": "LANVEOC", + "nomCommune": "LANVEOC" }, { - "codePostal": "58300", - "codeCommune": "58259", - "libelleAcheminement": "ST PARIZE EN VIRY", - "nomCommune": "ST PARIZE EN VIRY" + "codePostal": "20214", + "codeCommune": "2B361", + "libelleAcheminement": "ZILIA", + "nomCommune": "ZILIA" }, { - "codePostal": "03100", - "codeCommune": "03185", - "libelleAcheminement": "MONTLUCON", - "nomCommune": "MONTLUCON" + "codePostal": "41160", + "codeCommune": "41028", + "libelleAcheminement": "BUSLOUP", + "nomCommune": "BUSLOUP" }, { - "codePostal": "65130", - "codeCommune": "65081", - "libelleAcheminement": "BENQUE MOLERE", - "nomCommune": "BENQUE MOLERE" + "codePostal": "40440", + "codeCommune": "40209", + "libelleAcheminement": "ONDRES", + "nomCommune": "ONDRES" }, { - "codePostal": "33370", - "codeCommune": "33061", - "libelleAcheminement": "BONNETAN", - "nomCommune": "BONNETAN" + "codePostal": "29190", + "codeCommune": "29123", + "libelleAcheminement": "LENNON", + "nomCommune": "LENNON" }, { - "codePostal": "58270", - "codeCommune": "58269", - "libelleAcheminement": "ST SULPICE", - "nomCommune": "ST SULPICE" + "codePostal": "30700", + "codeCommune": "30001", + "libelleAcheminement": "AIGALIERS", + "nomCommune": "AIGALIERS" }, { - "codePostal": "03390", - "codeCommune": "03191", - "libelleAcheminement": "MURAT", - "nomCommune": "MURAT" + "codePostal": "41120", + "codeCommune": "41031", + "libelleAcheminement": "CELLETTES", + "nomCommune": "CELLETTES" }, { - "codePostal": "65230", - "codeCommune": "65088", - "libelleAcheminement": "BETBEZE", - "nomCommune": "BETBEZE" + "codePostal": "40380", + "codeCommune": "40216", + "libelleAcheminement": "OZOURT", + "nomCommune": "OZOURT" }, { - "codePostal": "33000", - "codeCommune": "33063", - "libelleAcheminement": "BORDEAUX", - "nomCommune": "BORDEAUX" + "codePostal": "29530", + "codeCommune": "29141", + "libelleAcheminement": "LOQUEFFRET", + "nomCommune": "LOQUEFFRET" }, { - "codePostal": "58310", - "codeCommune": "58270", - "libelleAcheminement": "ST VERAIN", - "nomCommune": "ST VERAIN" + "codePostal": "30770", + "codeCommune": "30009", + "libelleAcheminement": "ALZON", + "nomCommune": "ALZON" }, { - "codePostal": "03000", - "codeCommune": "03200", - "libelleAcheminement": "NEUVY", - "nomCommune": "NEUVY" + "codePostal": "41320", + "codeCommune": "41038", + "libelleAcheminement": "LA CHAPELLE MONTMARTIN", + "nomCommune": "LA CHAPELLE MONTMARTIN" }, { - "codePostal": "65330", - "codeCommune": "65097", - "libelleAcheminement": "BONREPOS", - "nomCommune": "BONREPOS" + "codePostal": "40160", + "codeCommune": "40217", + "libelleAcheminement": "PARENTIS EN BORN", + "nomCommune": "PARENTIS EN BORN" }, { - "codePostal": "33190", - "codeCommune": "33066", - "libelleAcheminement": "BOURDELLES", - "nomCommune": "BOURDELLES" + "codePostal": "29790", + "codeCommune": "29143", + "libelleAcheminement": "MAHALON", + "nomCommune": "MAHALON" }, { - "codePostal": "58330", - "codeCommune": "58275", - "libelleAcheminement": "SAXI BOURDON", - "nomCommune": "SAXI BOURDON" + "codePostal": "30133", + "codeCommune": "30011", + "libelleAcheminement": "LES ANGLES", + "nomCommune": "LES ANGLES" }, { - "codePostal": "03230", - "codeCommune": "03203", - "libelleAcheminement": "PARAY LE FRESIL", - "nomCommune": "PARAY LE FRESIL" + "codePostal": "41320", + "codeCommune": "41044", + "libelleAcheminement": "CHATRES SUR CHER", + "nomCommune": "CHATRES SUR CHER" }, { - "codePostal": "65130", - "codeCommune": "65105", - "libelleAcheminement": "BOURG DE BIGORRE", - "nomCommune": "BOURG DE BIGORRE" + "codePostal": "40190", + "codeCommune": "40221", + "libelleAcheminement": "PERQUIE", + "nomCommune": "PERQUIE" }, { - "codePostal": "33750", - "codeCommune": "33079", - "libelleAcheminement": "CADARSAC", - "nomCommune": "CADARSAC" + "codePostal": "29350", + "codeCommune": "29150", + "libelleAcheminement": "MOELAN SUR MER", + "nomCommune": "MOELAN SUR MER" }, { - "codePostal": "58290", - "codeCommune": "58277", - "libelleAcheminement": "SERMAGES", - "nomCommune": "SERMAGES" + "codePostal": "30210", + "codeCommune": "30013", + "libelleAcheminement": "ARGILLIERS", + "nomCommune": "ARGILLIERS" }, { - "codePostal": "03500", - "codeCommune": "03204", - "libelleAcheminement": "PARAY SOUS BRIAILLES", - "nomCommune": "PARAY SOUS BRIAILLES" + "codePostal": "41170", + "codeCommune": "41053", + "libelleAcheminement": "CHOUE", + "nomCommune": "CHOUE" }, { - "codePostal": "65370", - "codeCommune": "65109", - "libelleAcheminement": "BRAMEVAQUE", - "nomCommune": "BRAMEVAQUE" + "codePostal": "40300", + "codeCommune": "40222", + "libelleAcheminement": "PEY", + "nomCommune": "PEY" }, { - "codePostal": "33240", - "codeCommune": "33082", - "libelleAcheminement": "CADILLAC EN FRONSADAIS", - "nomCommune": "CADILLAC EN FRONSADAIS" + "codePostal": "29270", + "codeCommune": "29152", + "libelleAcheminement": "MOTREFF", + "nomCommune": "MOTREFF" }, { - "codePostal": "58700", - "codeCommune": "58279", - "libelleAcheminement": "SICHAMPS", - "nomCommune": "SICHAMPS" + "codePostal": "30770", + "codeCommune": "30025", + "libelleAcheminement": "AUMESSAS", + "nomCommune": "AUMESSAS" }, { - "codePostal": "03470", - "codeCommune": "03207", - "libelleAcheminement": "PIERREFITTE SUR LOIRE", - "nomCommune": "PIERREFITTE SUR LOIRE" + "codePostal": "41150", + "codeCommune": "41055", + "libelleAcheminement": "VALLOIRE SUR CISSE", + "nomCommune": "VALLOIRE SUR CISSE" }, { - "codePostal": "65190", - "codeCommune": "65113", - "libelleAcheminement": "BURG", - "nomCommune": "BURG" + "codePostal": "40200", + "codeCommune": "40229", + "libelleAcheminement": "PONTENX LES FORGES", + "nomCommune": "PONTENX LES FORGES" }, { - "codePostal": "33750", - "codeCommune": "33083", - "libelleAcheminement": "CAMARSAC", - "nomCommune": "CAMARSAC" + "codePostal": "29920", + "codeCommune": "29153", + "libelleAcheminement": "NEVEZ", + "nomCommune": "NEVEZ" }, { - "codePostal": "58300", - "codeCommune": "58280", - "libelleAcheminement": "SOUGY SUR LOIRE", - "nomCommune": "SOUGY SUR LOIRE" + "codePostal": "30140", + "codeCommune": "30027", + "libelleAcheminement": "BAGARD", + "nomCommune": "BAGARD" }, { - "codePostal": "03800", - "codeCommune": "03209", - "libelleAcheminement": "POEZAT", - "nomCommune": "POEZAT" + "codePostal": "41120", + "codeCommune": "41059", + "libelleAcheminement": "LE CONTROIS EN SOLOGNE", + "nomCommune": "LE CONTROIS EN SOLOGNE" }, { - "codePostal": "65350", - "codeCommune": "65115", - "libelleAcheminement": "CABANAC", - "nomCommune": "CABANAC" + "codePostal": "40120", + "codeCommune": "40234", + "libelleAcheminement": "POUYDESSEAUX", + "nomCommune": "POUYDESSEAUX" }, { - "codePostal": "33360", - "codeCommune": "33085", - "libelleAcheminement": "CAMBLANES ET MEYNAC", - "nomCommune": "CAMBLANES ET MEYNAC" + "codePostal": "29190", + "codeCommune": "29162", + "libelleAcheminement": "PLEYBEN", + "nomCommune": "PLEYBEN" }, { - "codePostal": "58420", - "codeCommune": "58283", - "libelleAcheminement": "TACONNAY", - "nomCommune": "TACONNAY" + "codePostal": "30300", + "codeCommune": "30032", + "libelleAcheminement": "BEAUCAIRE", + "nomCommune": "BEAUCAIRE" }, { - "codePostal": "03410", - "codeCommune": "03211", - "libelleAcheminement": "PREMILHAT", - "nomCommune": "PREMILHAT" + "codePostal": "41100", + "codeCommune": "41065", + "libelleAcheminement": "COULOMMIERS LA TOUR", + "nomCommune": "COULOMMIERS LA TOUR" }, { - "codePostal": "65710", - "codeCommune": "65123", - "libelleAcheminement": "CAMPAN", - "nomCommune": "CAMPAN" + "codePostal": "40370", + "codeCommune": "40243", + "libelleAcheminement": "RION DES LANDES", + "nomCommune": "RION DES LANDES" }, { - "codePostal": "33840", - "codeCommune": "33095", - "libelleAcheminement": "CAPTIEUX", - "nomCommune": "CAPTIEUX" + "codePostal": "29770", + "codeCommune": "29168", + "libelleAcheminement": "PLOGOFF", + "nomCommune": "PLOGOFF" }, { - "codePostal": "58110", - "codeCommune": "58285", - "libelleAcheminement": "TAMNAY EN BAZOIS", - "nomCommune": "TAMNAY EN BAZOIS" + "codePostal": "30700", + "codeCommune": "30041", + "libelleAcheminement": "BLAUZAC", + "nomCommune": "BLAUZAC" }, { - "codePostal": "03420", - "codeCommune": "03216", - "libelleAcheminement": "RONNET", - "nomCommune": "RONNET" + "codePostal": "41220", + "codeCommune": "41085", + "libelleAcheminement": "LA FERTE ST CYR", + "nomCommune": "LA FERTE ST CYR" }, { - "codePostal": "65710", - "codeCommune": "65123", - "libelleAcheminement": "CAMPAN", - "nomCommune": "CAMPAN" + "codePostal": "40370", + "codeCommune": "40243", + "libelleAcheminement": "RION DES LANDES", + "nomCommune": "RION DES LANDES" }, { - "codePostal": "33121", - "codeCommune": "33097", - "libelleAcheminement": "CARCANS", - "nomCommune": "CARCANS" + "codePostal": "29830", + "codeCommune": "29178", + "libelleAcheminement": "PLOUDALMEZEAU", + "nomCommune": "PLOUDALMEZEAU" }, { - "codePostal": "58110", - "codeCommune": "58292", - "libelleAcheminement": "TINTURY", - "nomCommune": "TINTURY" + "codePostal": "30140", + "codeCommune": "30042", + "libelleAcheminement": "BOISSET ET GAUJAC", + "nomCommune": "BOISSET ET GAUJAC" }, { - "codePostal": "03170", - "codeCommune": "03217", - "libelleAcheminement": "ST ANGEL", - "nomCommune": "ST ANGEL" + "codePostal": "41270", + "codeCommune": "41088", + "libelleAcheminement": "FONTAINE RAOUL", + "nomCommune": "FONTAINE RAOUL" }, { - "codePostal": "65230", - "codeCommune": "65134", - "libelleAcheminement": "CASTERETS", - "nomCommune": "CASTERETS" + "codePostal": "40120", + "codeCommune": "40245", + "libelleAcheminement": "ROQUEFORT", + "nomCommune": "ROQUEFORT" }, { - "codePostal": "33360", - "codeCommune": "33099", - "libelleAcheminement": "CARIGNAN DE BORDEAUX", - "nomCommune": "CARIGNAN DE BORDEAUX" + "codePostal": "29800", + "codeCommune": "29181", + "libelleAcheminement": "PLOUEDERN", + "nomCommune": "PLOUEDERN" }, { - "codePostal": "58300", - "codeCommune": "58293", - "libelleAcheminement": "TOURY LURCY", - "nomCommune": "TOURY LURCY" + "codePostal": "30190", + "codeCommune": "30049", + "libelleAcheminement": "BOURDIC", + "nomCommune": "BOURDIC" }, { - "codePostal": "03360", - "codeCommune": "03221", - "libelleAcheminement": "ST BONNET TRONCAIS", - "nomCommune": "ST BONNET TRONCAIS" + "codePostal": "41230", + "codeCommune": "41099", + "libelleAcheminement": "GY EN SOLOGNE", + "nomCommune": "GY EN SOLOGNE" }, { - "codePostal": "65130", - "codeCommune": "65135", - "libelleAcheminement": "CASTILLON", - "nomCommune": "CASTILLON" + "codePostal": "40800", + "codeCommune": "40247", + "libelleAcheminement": "ST AGNET", + "nomCommune": "ST AGNET" }, { - "codePostal": "33540", - "codeCommune": "33105", - "libelleAcheminement": "CASTELVIEL", - "nomCommune": "CASTELVIEL" + "codePostal": "29252", + "codeCommune": "29186", + "libelleAcheminement": "PLOUEZOC H", + "nomCommune": "PLOUEZOC H" }, { - "codePostal": "58260", - "codeCommune": "58297", - "libelleAcheminement": "TROIS VEVRES", - "nomCommune": "TROIS VEVRES" + "codePostal": "30110", + "codeCommune": "30051", + "libelleAcheminement": "BRANOUX LES TAILLADES", + "nomCommune": "BRANOUX LES TAILLADES" }, { - "codePostal": "03260", - "codeCommune": "03232", - "libelleAcheminement": "ST FELIX", - "nomCommune": "ST FELIX" + "codePostal": "41230", + "codeCommune": "41112", + "libelleAcheminement": "LASSAY SUR CROISNE", + "nomCommune": "LASSAY SUR CROISNE" }, { - "codePostal": "65370", - "codeCommune": "65139", - "libelleAcheminement": "CAZARILH", - "nomCommune": "CAZARILH" + "codePostal": "40390", + "codeCommune": "40248", + "libelleAcheminement": "ST ANDRE DE SEIGNANX", + "nomCommune": "ST ANDRE DE SEIGNANX" }, { - "codePostal": "33350", - "codeCommune": "33108", - "libelleAcheminement": "CASTILLON LA BATAILLE", - "nomCommune": "CASTILLON LA BATAILLE" + "codePostal": "29260", + "codeCommune": "29198", + "libelleAcheminement": "PLOUIDER", + "nomCommune": "PLOUIDER" }, { - "codePostal": "58460", - "codeCommune": "58299", - "libelleAcheminement": "TRUCY L ORGUEILLEUX", - "nomCommune": "TRUCY L ORGUEILLEUX" + "codePostal": "30580", + "codeCommune": "30055", + "libelleAcheminement": "BROUZET LES ALES", + "nomCommune": "BROUZET LES ALES" }, { - "codePostal": "03260", - "codeCommune": "03236", - "libelleAcheminement": "ST GERMAIN DES FOSSES", - "nomCommune": "ST GERMAIN DES FOSSES" + "codePostal": "41360", + "codeCommune": "41120", + "libelleAcheminement": "LUNAY", + "nomCommune": "LUNAY" }, { - "codePostal": "65240", - "codeCommune": "65141", - "libelleAcheminement": "CAZAUX FRECHET ANERAN CAMORS", - "nomCommune": "CAZAUX FRECHET ANERAN CAMORS" + "codePostal": "40390", + "codeCommune": "40251", + "libelleAcheminement": "ST BARTHELEMY", + "nomCommune": "ST BARTHELEMY" }, { - "codePostal": "33540", - "codeCommune": "33112", - "libelleAcheminement": "CAUMONT", - "nomCommune": "CAUMONT" + "codePostal": "29650", + "codeCommune": "29199", + "libelleAcheminement": "PLOUIGNEAU", + "nomCommune": "PLOUIGNEAU" }, { - "codePostal": "58370", - "codeCommune": "58309", - "libelleAcheminement": "VILLAPOURCON", - "nomCommune": "VILLAPOURCON" + "codePostal": "30210", + "codeCommune": "30057", + "libelleAcheminement": "CABRIERES", + "nomCommune": "CABRIERES" }, { - "codePostal": "03220", - "codeCommune": "03240", - "libelleAcheminement": "ST LEON", - "nomCommune": "ST LEON" + "codePostal": "41100", + "codeCommune": "41124", + "libelleAcheminement": "MARCILLY EN BEAUCE", + "nomCommune": "MARCILLY EN BEAUCE" }, { - "codePostal": "65240", - "codeCommune": "65141", - "libelleAcheminement": "CAZAUX FRECHET ANERAN CAMORS", - "nomCommune": "CAZAUX FRECHET ANERAN CAMORS" + "codePostal": "40380", + "codeCommune": "40260", + "libelleAcheminement": "ST GEOURS D AURIBAT", + "nomCommune": "ST GEOURS D AURIBAT" }, { - "codePostal": "33430", - "codeCommune": "33116", - "libelleAcheminement": "CAZATS", - "nomCommune": "CAZATS" + "codePostal": "29410", + "codeCommune": "29202", + "libelleAcheminement": "PLOUNEOUR MENEZ", + "nomCommune": "PLOUNEOUR MENEZ" }, { - "codePostal": "58210", - "codeCommune": "58310", - "libelleAcheminement": "VILLIERS LE SEC", - "nomCommune": "VILLIERS LE SEC" + "codePostal": "30740", + "codeCommune": "30059", + "libelleAcheminement": "LE CAILAR", + "nomCommune": "LE CAILAR" }, { - "codePostal": "03150", - "codeCommune": "03242", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "41330", + "codeCommune": "41128", + "libelleAcheminement": "MAROLLES", + "nomCommune": "MAROLLES" }, { - "codePostal": "65190", - "codeCommune": "65149", - "libelleAcheminement": "CLARAC", - "nomCommune": "CLARAC" + "codePostal": "40230", + "codeCommune": "40261", + "libelleAcheminement": "ST GEOURS DE MAREMNE", + "nomCommune": "ST GEOURS DE MAREMNE" }, { - "codePostal": "33620", - "codeCommune": "33123", - "libelleAcheminement": "CEZAC", - "nomCommune": "CEZAC" + "codePostal": "29830", + "codeCommune": "29208", + "libelleAcheminement": "PLOURIN", + "nomCommune": "PLOURIN" }, { - "codePostal": "58420", - "codeCommune": "58313", - "libelleAcheminement": "VITRY LACHE", - "nomCommune": "VITRY LACHE" + "codePostal": "30132", + "codeCommune": "30060", + "libelleAcheminement": "CAISSARGUES", + "nomCommune": "CAISSARGUES" }, { - "codePostal": "03420", - "codeCommune": "03244", - "libelleAcheminement": "ST MARCEL EN MARCILLAT", - "nomCommune": "ST MARCEL EN MARCILLAT" + "codePostal": "41500", + "codeCommune": "41134", + "libelleAcheminement": "MENARS", + "nomCommune": "MENARS" }, { - "codePostal": "65130", - "codeCommune": "65166", - "libelleAcheminement": "ESPECHE", - "nomCommune": "ESPECHE" + "codePostal": "40240", + "codeCommune": "40265", + "libelleAcheminement": "ST JULIEN D ARMAGNAC", + "nomCommune": "ST JULIEN D ARMAGNAC" }, { - "codePostal": "33920", - "codeCommune": "33126", - "libelleAcheminement": "CIVRAC DE BLAYE", - "nomCommune": "CIVRAC DE BLAYE" + "codePostal": "29120", + "codeCommune": "29220", + "libelleAcheminement": "PONT L ABBE", + "nomCommune": "PONT L ABBE" }, { - "codePostal": "59268", - "codeCommune": "59001", - "libelleAcheminement": "ABANCOURT", - "nomCommune": "ABANCOURT" + "codePostal": "30350", + "codeCommune": "30065", + "libelleAcheminement": "CANAULES ET ARGENTIERES", + "nomCommune": "CANAULES ET ARGENTIERES" }, { - "codePostal": "03250", - "codeCommune": "03248", - "libelleAcheminement": "ST NICOLAS DES BIEFS", - "nomCommune": "ST NICOLAS DES BIEFS" + "codePostal": "41320", + "codeCommune": "41135", + "libelleAcheminement": "MENNETOU SUR CHER", + "nomCommune": "MENNETOU SUR CHER" }, { - "codePostal": "65120", - "codeCommune": "65173", - "libelleAcheminement": "ESTERRE", - "nomCommune": "ESTERRE" + "codePostal": "40170", + "codeCommune": "40266", + "libelleAcheminement": "ST JULIEN EN BORN", + "nomCommune": "ST JULIEN EN BORN" }, { - "codePostal": "33670", - "codeCommune": "33145", - "libelleAcheminement": "CURSAN", - "nomCommune": "CURSAN" + "codePostal": "29840", + "codeCommune": "29221", + "libelleAcheminement": "PORSPODER", + "nomCommune": "PORSPODER" }, { - "codePostal": "59580", - "codeCommune": "59008", - "libelleAcheminement": "ANICHE", - "nomCommune": "ANICHE" + "codePostal": "30260", + "codeCommune": "30066", + "libelleAcheminement": "CANNES ET CLAIRAN", + "nomCommune": "CANNES ET CLAIRAN" }, { - "codePostal": "03390", - "codeCommune": "03256", - "libelleAcheminement": "ST PRIEST EN MURAT", - "nomCommune": "ST PRIEST EN MURAT" + "codePostal": "41170", + "codeCommune": "41143", + "libelleAcheminement": "MONDOUBLEAU", + "nomCommune": "MONDOUBLEAU" }, { - "codePostal": "65240", - "codeCommune": "65180", - "libelleAcheminement": "FRECHET AURE", - "nomCommune": "FRECHET AURE" + "codePostal": "40390", + "codeCommune": "40273", + "libelleAcheminement": "ST MARTIN DE SEIGNANX", + "nomCommune": "ST MARTIN DE SEIGNANX" }, { - "codePostal": "33420", - "codeCommune": "33148", - "libelleAcheminement": "DARDENAC", - "nomCommune": "DARDENAC" + "codePostal": "29100", + "codeCommune": "29224", + "libelleAcheminement": "POULDERGAT", + "nomCommune": "POULDERGAT" }, { - "codePostal": "59280", - "codeCommune": "59017", - "libelleAcheminement": "ARMENTIERES", - "nomCommune": "ARMENTIERES" + "codePostal": "30700", + "codeCommune": "30067", + "libelleAcheminement": "LA CAPELLE ET MASMOLENE", + "nomCommune": "LA CAPELLE ET MASMOLENE" }, { - "codePostal": "03120", - "codeCommune": "03257", - "libelleAcheminement": "ST PRIX", - "nomCommune": "ST PRIX" + "codePostal": "41800", + "codeCommune": "41149", + "libelleAcheminement": "MONTOIRE SUR LE LOIR", + "nomCommune": "MONTOIRE SUR LE LOIR" }, { - "codePostal": "65330", - "codeCommune": "65183", - "libelleAcheminement": "GALAN", - "nomCommune": "GALAN" + "codePostal": "40270", + "codeCommune": "40275", + "libelleAcheminement": "ST MAURICE SUR ADOUR", + "nomCommune": "ST MAURICE SUR ADOUR" }, { - "codePostal": "33860", - "codeCommune": "33151", - "libelleAcheminement": "DONNEZAC", - "nomCommune": "DONNEZAC" + "codePostal": "29246", + "codeCommune": "29227", + "libelleAcheminement": "POULLAOUEN", + "nomCommune": "POULLAOUEN" }, { - "codePostal": "59551", - "codeCommune": "59022", - "libelleAcheminement": "ATTICHES", - "nomCommune": "ATTICHES" + "codePostal": "30190", + "codeCommune": "30072", + "libelleAcheminement": "CASTELNAU VALENCE", + "nomCommune": "CASTELNAU VALENCE" }, { - "codePostal": "03240", - "codeCommune": "03260", - "libelleAcheminement": "ST SORNIN", - "nomCommune": "ST SORNIN" + "codePostal": "41500", + "codeCommune": "41156", + "libelleAcheminement": "MULSANS", + "nomCommune": "MULSANS" }, { - "codePostal": "65330", - "codeCommune": "65184", - "libelleAcheminement": "GALEZ", - "nomCommune": "GALEZ" + "codePostal": "40200", + "codeCommune": "40278", + "libelleAcheminement": "ST PAUL EN BORN", + "nomCommune": "ST PAUL EN BORN" }, { - "codePostal": "33840", - "codeCommune": "33155", - "libelleAcheminement": "ESCAUDES", - "nomCommune": "ESCAUDES" + "codePostal": "29770", + "codeCommune": "29228", + "libelleAcheminement": "PRIMELIN", + "nomCommune": "PRIMELIN" }, { - "codePostal": "59165", - "codeCommune": "59024", - "libelleAcheminement": "AUBERCHICOURT", - "nomCommune": "AUBERCHICOURT" + "codePostal": "30480", + "codeCommune": "30077", + "libelleAcheminement": "CENDRAS", + "nomCommune": "CENDRAS" }, { - "codePostal": "03220", - "codeCommune": "03263", - "libelleAcheminement": "ST VOIR", - "nomCommune": "ST VOIR" + "codePostal": "41100", + "codeCommune": "41158", + "libelleAcheminement": "NAVEIL", + "nomCommune": "NAVEIL" }, { - "codePostal": "65670", - "codeCommune": "65187", - "libelleAcheminement": "GAUSSAN", - "nomCommune": "GAUSSAN" + "codePostal": "40990", + "codeCommune": "40279", + "libelleAcheminement": "ST PAUL LES DAX", + "nomCommune": "ST PAUL LES DAX" }, { - "codePostal": "33760", - "codeCommune": "33156", - "libelleAcheminement": "ESCOUSSANS", - "nomCommune": "ESCOUSSANS" + "codePostal": "29000", + "codeCommune": "29232", + "libelleAcheminement": "QUIMPER", + "nomCommune": "QUIMPER" }, { - "codePostal": "59249", - "codeCommune": "59025", - "libelleAcheminement": "AUBERS", - "nomCommune": "AUBERS" + "codePostal": "30210", + "codeCommune": "30085", + "libelleAcheminement": "COLLIAS", + "nomCommune": "COLLIAS" }, { - "codePostal": "03430", - "codeCommune": "03269", - "libelleAcheminement": "SAUVAGNY", - "nomCommune": "SAUVAGNY" + "codePostal": "41210", + "codeCommune": "41159", + "libelleAcheminement": "NEUNG SUR BEUVRON", + "nomCommune": "NEUNG SUR BEUVRON" }, { - "codePostal": "65120", - "codeCommune": "65192", - "libelleAcheminement": "GAVARNIE GEDRE", - "nomCommune": "GAVARNIE GEDRE" + "codePostal": "40400", + "codeCommune": "40285", + "libelleAcheminement": "ST YAGUEN", + "nomCommune": "ST YAGUEN" }, { - "codePostal": "33370", - "codeCommune": "33165", - "libelleAcheminement": "FARGUES ST HILAIRE", - "nomCommune": "FARGUES ST HILAIRE" + "codePostal": "29300", + "codeCommune": "29234", + "libelleAcheminement": "REDENE", + "nomCommune": "REDENE" }, { - "codePostal": "59400", - "codeCommune": "59039", - "libelleAcheminement": "AWOINGT", - "nomCommune": "AWOINGT" + "codePostal": "30250", + "codeCommune": "30088", + "libelleAcheminement": "COMBAS", + "nomCommune": "COMBAS" }, { - "codePostal": "03410", - "codeCommune": "03279", - "libelleAcheminement": "TEILLET ARGENTY", - "nomCommune": "TEILLET ARGENTY" + "codePostal": "41150", + "codeCommune": "41167", + "libelleAcheminement": "VEUZAIN SUR LOIRE", + "nomCommune": "VEUZAIN SUR LOIRE" }, { - "codePostal": "65140", - "codeCommune": "65196", - "libelleAcheminement": "GENSAC", - "nomCommune": "GENSAC" + "codePostal": "40230", + "codeCommune": "40291", + "libelleAcheminement": "SAUBION", + "nomCommune": "SAUBION" }, { - "codePostal": "33270", - "codeCommune": "33167", - "libelleAcheminement": "FLOIRAC", - "nomCommune": "FLOIRAC" + "codePostal": "29260", + "codeCommune": "29248", + "libelleAcheminement": "ST FREGANT", + "nomCommune": "ST FREGANT" }, { - "codePostal": "59138", - "codeCommune": "59041", - "libelleAcheminement": "BACHANT", - "nomCommune": "BACHANT" + "codePostal": "30630", + "codeCommune": "30096", + "libelleAcheminement": "CORNILLON", + "nomCommune": "CORNILLON" }, { - "codePostal": "03240", - "codeCommune": "03281", - "libelleAcheminement": "LE THEIL", - "nomCommune": "LE THEIL" + "codePostal": "41300", + "codeCommune": "41176", + "libelleAcheminement": "PIERREFITTE SUR SAULDRE", + "nomCommune": "PIERREFITTE SUR SAULDRE" }, { - "codePostal": "65100", - "codeCommune": "65197", - "libelleAcheminement": "GER", - "nomCommune": "GER" + "codePostal": "40320", + "codeCommune": "40305", + "libelleAcheminement": "SORBETS", + "nomCommune": "SORBETS" }, { - "codePostal": "33430", - "codeCommune": "33180", - "libelleAcheminement": "GANS", - "nomCommune": "GANS" + "codePostal": "29270", + "codeCommune": "29250", + "libelleAcheminement": "ST HERNIN", + "nomCommune": "ST HERNIN" }, { - "codePostal": "59830", - "codeCommune": "59042", - "libelleAcheminement": "BACHY", - "nomCommune": "BACHY" + "codePostal": "30450", + "codeCommune": "30130", + "libelleAcheminement": "GENOLHAC", + "nomCommune": "GENOLHAC" }, { - "codePostal": "03350", - "codeCommune": "03282", - "libelleAcheminement": "THENEUILLE", - "nomCommune": "THENEUILLE" + "codePostal": "41190", + "codeCommune": "41182", + "libelleAcheminement": "PRAY", + "nomCommune": "PRAY" }, { - "codePostal": "65100", - "codeCommune": "65201", - "libelleAcheminement": "GEU", - "nomCommune": "GEU" + "codePostal": "40220", + "codeCommune": "40312", + "libelleAcheminement": "TARNOS", + "nomCommune": "TARNOS" }, { - "codePostal": "33920", - "codeCommune": "33184", - "libelleAcheminement": "GENERAC", - "nomCommune": "GENERAC" + "codePostal": "29630", + "codeCommune": "29251", + "libelleAcheminement": "ST JEAN DU DOIGT", + "nomCommune": "ST JEAN DU DOIGT" }, { - "codePostal": "59270", - "codeCommune": "59043", - "libelleAcheminement": "BAILLEUL", - "nomCommune": "BAILLEUL" + "codePostal": "30110", + "codeCommune": "30132", + "libelleAcheminement": "LA GRAND COMBE", + "nomCommune": "LA GRAND COMBE" }, { - "codePostal": "03220", - "codeCommune": "03291", - "libelleAcheminement": "TREZELLES", - "nomCommune": "TREZELLES" + "codePostal": "41800", + "codeCommune": "41201", + "libelleAcheminement": "ST ARNOULT", + "nomCommune": "ST ARNOULT" }, { - "codePostal": "65350", - "codeCommune": "65204", - "libelleAcheminement": "GONEZ", - "nomCommune": "GONEZ" + "codePostal": "40360", + "codeCommune": "40316", + "libelleAcheminement": "TILH", + "nomCommune": "TILH" }, { - "codePostal": "33890", - "codeCommune": "33186", - "libelleAcheminement": "GENSAC", - "nomCommune": "GENSAC" + "codePostal": "29550", + "codeCommune": "29256", + "libelleAcheminement": "ST NIC", + "nomCommune": "ST NIC" }, { - "codePostal": "59132", - "codeCommune": "59045", - "libelleAcheminement": "BAIVES", - "nomCommune": "BAIVES" + "codePostal": "30240", + "codeCommune": "30133", + "libelleAcheminement": "LE GRAU DU ROI", + "nomCommune": "LE GRAU DU ROI" }, { - "codePostal": "03330", - "codeCommune": "03295", - "libelleAcheminement": "VALIGNAT", - "nomCommune": "VALIGNAT" + "codePostal": "41350", + "codeCommune": "41204", + "libelleAcheminement": "ST CLAUDE DE DIRAY", + "nomCommune": "ST CLAUDE DE DIRAY" }, { - "codePostal": "65230", - "codeCommune": "65213", - "libelleAcheminement": "GUIZERIX", - "nomCommune": "GUIZERIX" + "codePostal": "40270", + "codeCommune": "40329", + "libelleAcheminement": "LE VIGNAU", + "nomCommune": "LE VIGNAU" }, { - "codePostal": "33190", - "codeCommune": "33187", - "libelleAcheminement": "GIRONDE SUR DROPT", - "nomCommune": "GIRONDE SUR DROPT" + "codePostal": "29190", + "codeCommune": "29261", + "libelleAcheminement": "ST RIVOAL", + "nomCommune": "ST RIVOAL" }, { - "codePostal": "59470", - "codeCommune": "59046", - "libelleAcheminement": "BAMBECQUE", - "nomCommune": "BAMBECQUE" + "codePostal": "30760", + "codeCommune": "30134", + "libelleAcheminement": "ISSIRAC", + "nomCommune": "ISSIRAC" }, { - "codePostal": "03450", - "codeCommune": "03302", - "libelleAcheminement": "VEAUCE", - "nomCommune": "VEAUCE" + "codePostal": "41500", + "codeCommune": "41207", + "libelleAcheminement": "ST DYE SUR LOIRE", + "nomCommune": "ST DYE SUR LOIRE" }, { - "codePostal": "65250", - "codeCommune": "65218", - "libelleAcheminement": "HECHES", - "nomCommune": "HECHES" + "codePostal": "40190", + "codeCommune": "40331", + "libelleAcheminement": "VILLENEUVE DE MARSAN", + "nomCommune": "VILLENEUVE DE MARSAN" }, { - "codePostal": "33720", - "codeCommune": "33197", - "libelleAcheminement": "GUILLOS", - "nomCommune": "GUILLOS" + "codePostal": "29400", + "codeCommune": "29262", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "59554", - "codeCommune": "59048", - "libelleAcheminement": "BANTIGNY", - "nomCommune": "BANTIGNY" + "codePostal": "30290", + "codeCommune": "30141", + "libelleAcheminement": "LAUDUN L ARDOISE", + "nomCommune": "LAUDUN L ARDOISE" }, { - "codePostal": "03110", - "codeCommune": "03304", - "libelleAcheminement": "VENDAT", - "nomCommune": "VENDAT" + "codePostal": "41220", + "codeCommune": "41220", + "libelleAcheminement": "ST LAURENT NOUAN", + "nomCommune": "ST LAURENT NOUAN" }, { - "codePostal": "65100", - "codeCommune": "65237", - "libelleAcheminement": "JUNCALAS", - "nomCommune": "JUNCALAS" + "codePostal": "41100", + "codeCommune": "41003", + "libelleAcheminement": "AREINES", + "nomCommune": "AREINES" }, { - "codePostal": "33640", - "codeCommune": "33206", - "libelleAcheminement": "ISLE ST GEORGES", - "nomCommune": "ISLE ST GEORGES" + "codePostal": "29600", + "codeCommune": "29265", + "libelleAcheminement": "STE SEVE", + "nomCommune": "STE SEVE" }, { - "codePostal": "59440", - "codeCommune": "59050", - "libelleAcheminement": "BAS LIEU", - "nomCommune": "BAS LIEU" + "codePostal": "30260", + "codeCommune": "30148", + "libelleAcheminement": "LIOUC", + "nomCommune": "LIOUC" }, { - "codePostal": "03190", - "codeCommune": "03305", - "libelleAcheminement": "VERNEIX", - "nomCommune": "VERNEIX" + "codePostal": "41500", + "codeCommune": "41245", + "libelleAcheminement": "SERIS", + "nomCommune": "SERIS" }, { - "codePostal": "65130", - "codeCommune": "65241", - "libelleAcheminement": "LABORDE", - "nomCommune": "LABORDE" + "codePostal": "41800", + "codeCommune": "41004", + "libelleAcheminement": "ARTINS", + "nomCommune": "ARTINS" }, { - "codePostal": "33124", - "codeCommune": "33216", - "libelleAcheminement": "LADOS", - "nomCommune": "LADOS" + "codePostal": "29380", + "codeCommune": "29269", + "libelleAcheminement": "ST THURIEN", + "nomCommune": "ST THURIEN" }, { - "codePostal": "59730", - "codeCommune": "59060", - "libelleAcheminement": "BEAURAIN", - "nomCommune": "BEAURAIN" + "codePostal": "30610", + "codeCommune": "30150", + "libelleAcheminement": "LOGRIAN FLORIAN", + "nomCommune": "LOGRIAN FLORIAN" }, { - "codePostal": "03350", - "codeCommune": "03313", - "libelleAcheminement": "LE VILHAIN", - "nomCommune": "LE VILHAIN" + "codePostal": "41170", + "codeCommune": "41248", + "libelleAcheminement": "COUETRON AU PERCHE", + "nomCommune": "COUETRON AU PERCHE" }, { - "codePostal": "65320", - "codeCommune": "65244", - "libelleAcheminement": "LAGARDE", - "nomCommune": "LAGARDE" + "codePostal": "41130", + "codeCommune": "41016", + "libelleAcheminement": "BILLY", + "nomCommune": "BILLY" }, { - "codePostal": "33190", - "codeCommune": "33221", - "libelleAcheminement": "LAMOTHE LANDERRON", - "nomCommune": "LAMOTHE LANDERRON" + "codePostal": "29800", + "codeCommune": "29286", + "libelleAcheminement": "TREFLEVENEZ", + "nomCommune": "TREFLEVENEZ" }, { - "codePostal": "59740", - "codeCommune": "59062", - "libelleAcheminement": "BEAURIEUX", - "nomCommune": "BEAURIEUX" + "codePostal": "30960", + "codeCommune": "30159", + "libelleAcheminement": "LE MARTINET", + "nomCommune": "LE MARTINET" }, { - "codePostal": "04420", - "codeCommune": "04009", - "libelleAcheminement": "ARCHAIL", - "nomCommune": "ARCHAIL" + "codePostal": "41800", + "codeCommune": "41255", + "libelleAcheminement": "TERNAY", + "nomCommune": "TERNAY" }, { - "codePostal": "65230", - "codeCommune": "65249", - "libelleAcheminement": "LALANNE", - "nomCommune": "LALANNE" + "codePostal": "41270", + "codeCommune": "41022", + "libelleAcheminement": "BOUFFRY", + "nomCommune": "BOUFFRY" }, { - "codePostal": "33840", - "codeCommune": "33232", - "libelleAcheminement": "LARTIGUE", - "nomCommune": "LARTIGUE" + "codePostal": "29870", + "codeCommune": "29290", + "libelleAcheminement": "TREGLONOU", + "nomCommune": "TREGLONOU" }, { - "codePostal": "59600", - "codeCommune": "59072", - "libelleAcheminement": "BERSILLIES", - "nomCommune": "BERSILLIES" + "codePostal": "30350", + "codeCommune": "30160", + "libelleAcheminement": "MARUEJOLS LES GARDON", + "nomCommune": "MARUEJOLS LES GARDON" }, { - "codePostal": "04110", - "codeCommune": "04012", - "libelleAcheminement": "AUBENAS LES ALPES", - "nomCommune": "AUBENAS LES ALPES" + "codePostal": "41300", + "codeCommune": "41256", + "libelleAcheminement": "THEILLAY", + "nomCommune": "THEILLAY" }, { - "codePostal": "65190", - "codeCommune": "65270", - "libelleAcheminement": "LESPOUEY", - "nomCommune": "LESPOUEY" + "codePostal": "41360", + "codeCommune": "41030", + "libelleAcheminement": "CELLE", + "nomCommune": "CELLE" }, { - "codePostal": "33850", - "codeCommune": "33238", - "libelleAcheminement": "LEOGNAN", - "nomCommune": "LEOGNAN" + "codePostal": "29970", + "codeCommune": "29291", + "libelleAcheminement": "TREGOUREZ", + "nomCommune": "TREGOUREZ" }, { - "codePostal": "59270", - "codeCommune": "59073", - "libelleAcheminement": "BERTHEN", - "nomCommune": "BERTHEN" + "codePostal": "30840", + "codeCommune": "30166", + "libelleAcheminement": "MEYNES", + "nomCommune": "MEYNES" }, { - "codePostal": "04270", - "codeCommune": "04028", - "libelleAcheminement": "BEYNES", - "nomCommune": "BEYNES" + "codePostal": "41250", + "codeCommune": "41262", + "libelleAcheminement": "TOUR EN SOLOGNE", + "nomCommune": "TOUR EN SOLOGNE" }, { - "codePostal": "65350", - "codeCommune": "65276", - "libelleAcheminement": "LIZOS", - "nomCommune": "LIZOS" + "codePostal": "41250", + "codeCommune": "41034", + "libelleAcheminement": "CHAMBORD", + "nomCommune": "CHAMBORD" }, { - "codePostal": "33840", - "codeCommune": "33239", - "libelleAcheminement": "LERM ET MUSSET", - "nomCommune": "LERM ET MUSSET" + "codePostal": "20167", + "codeCommune": "2A004", + "libelleAcheminement": "AJACCIO", + "nomCommune": "AJACCIO" }, { - "codePostal": "59190", - "codeCommune": "59091", - "libelleAcheminement": "BORRE", - "nomCommune": "BORRE" + "codePostal": "30410", + "codeCommune": "30171", + "libelleAcheminement": "MOLIERES SUR CEZE", + "nomCommune": "MOLIERES SUR CEZE" }, { - "codePostal": "04270", - "codeCommune": "04031", - "libelleAcheminement": "BRAS D ASSE", - "nomCommune": "BRAS D ASSE" + "codePostal": "41230", + "codeCommune": "41268", + "libelleAcheminement": "VEILLEINS", + "nomCommune": "VEILLEINS" }, { - "codePostal": "65220", - "codeCommune": "65293", - "libelleAcheminement": "LUSTAR", - "nomCommune": "LUSTAR" + "codePostal": "41270", + "codeCommune": "41041", + "libelleAcheminement": "LA CHAPELLE VICOMTESSE", + "nomCommune": "LA CHAPELLE VICOMTESSE" }, { - "codePostal": "33220", - "codeCommune": "33242", - "libelleAcheminement": "LES LEVES ET THOUMEYRAGUES", - "nomCommune": "LES LEVES ET THOUMEYRAGUES" + "codePostal": "20100", + "codeCommune": "2A038", + "libelleAcheminement": "BILIA", + "nomCommune": "BILIA" }, { - "codePostal": "59111", - "codeCommune": "59092", - "libelleAcheminement": "BOUCHAIN", - "nomCommune": "BOUCHAIN" + "codePostal": "30700", + "codeCommune": "30174", + "libelleAcheminement": "MONTAREN ET ST MEDIERS", + "nomCommune": "MONTAREN ET ST MEDIERS" }, { - "codePostal": "04700", - "codeCommune": "04034", - "libelleAcheminement": "LA BRILLANNE", - "nomCommune": "LA BRILLANNE" + "codePostal": "41290", + "codeCommune": "41273", + "libelleAcheminement": "VIEVY LE RAYE", + "nomCommune": "VIEVY LE RAYE" }, { - "codePostal": "65350", - "codeCommune": "65298", - "libelleAcheminement": "MARQUERIE", - "nomCommune": "MARQUERIE" + "codePostal": "41260", + "codeCommune": "41047", + "libelleAcheminement": "LA CHAUSSEE ST VICTOR", + "nomCommune": "LA CHAUSSEE ST VICTOR" }, { - "codePostal": "33790", - "codeCommune": "33247", - "libelleAcheminement": "LISTRAC DE DUREZE", - "nomCommune": "LISTRAC DE DUREZE" + "codePostal": "20111", + "codeCommune": "2A048", + "libelleAcheminement": "CALCATOGGIO", + "nomCommune": "CALCATOGGIO" }, { - "codePostal": "59630", - "codeCommune": "59094", - "libelleAcheminement": "BOURBOURG", - "nomCommune": "BOURBOURG" + "codePostal": "30360", + "codeCommune": "30177", + "libelleAcheminement": "MONTEILS", + "nomCommune": "MONTEILS" }, { - "codePostal": "04210", - "codeCommune": "04035", - "libelleAcheminement": "BRUNET", - "nomCommune": "BRUNET" + "codePostal": "41800", + "codeCommune": "41274", + "libelleAcheminement": "VILLAVARD", + "nomCommune": "VILLAVARD" }, { - "codePostal": "65500", - "codeCommune": "65299", - "libelleAcheminement": "MARSAC", - "nomCommune": "MARSAC" + "codePostal": "41700", + "codeCommune": "41049", + "libelleAcheminement": "CHEMERY", + "nomCommune": "CHEMERY" }, { - "codePostal": "33310", - "codeCommune": "33249", - "libelleAcheminement": "LORMONT", - "nomCommune": "LORMONT" + "codePostal": "20123", + "codeCommune": "2A091", + "libelleAcheminement": "COGNOCOLI MONTICCHI", + "nomCommune": "COGNOCOLI MONTICCHI" }, { - "codePostal": "59222", - "codeCommune": "59099", - "libelleAcheminement": "BOUSIES", - "nomCommune": "BOUSIES" + "codePostal": "30490", + "codeCommune": "30179", + "libelleAcheminement": "MONTFRIN", + "nomCommune": "MONTFRIN" }, { - "codePostal": "04250", - "codeCommune": "04037", - "libelleAcheminement": "LE CAIRE", - "nomCommune": "LE CAIRE" + "codePostal": "41160", + "codeCommune": "41275", + "libelleAcheminement": "LA VILLE AUX CLERCS", + "nomCommune": "LA VILLE AUX CLERCS" }, { - "codePostal": "65150", - "codeCommune": "65307", - "libelleAcheminement": "MAZERES DE NESTE", - "nomCommune": "MAZERES DE NESTE" + "codePostal": "41700", + "codeCommune": "41059", + "libelleAcheminement": "LE CONTROIS EN SOLOGNE", + "nomCommune": "LE CONTROIS EN SOLOGNE" }, { - "codePostal": "33370", - "codeCommune": "33252", - "libelleAcheminement": "LOUPES", - "nomCommune": "LOUPES" + "codePostal": "20135", + "codeCommune": "2A092", + "libelleAcheminement": "CONCA", + "nomCommune": "CONCA" }, { - "codePostal": "59730", - "codeCommune": "59108", - "libelleAcheminement": "BRIASTRE", - "nomCommune": "BRIASTRE" + "codePostal": "30190", + "codeCommune": "30184", + "libelleAcheminement": "MOUSSAC", + "nomCommune": "MOUSSAC" }, { - "codePostal": "04120", - "codeCommune": "04039", - "libelleAcheminement": "CASTELLANE", - "nomCommune": "CASTELLANE" + "codePostal": "41000", + "codeCommune": "41276", + "libelleAcheminement": "VILLEBAROU", + "nomCommune": "VILLEBAROU" }, { - "codePostal": "65200", - "codeCommune": "65310", - "libelleAcheminement": "MERILHEU", - "nomCommune": "MERILHEU" + "codePostal": "41700", + "codeCommune": "41062", + "libelleAcheminement": "COUDDES", + "nomCommune": "COUDDES" }, { - "codePostal": "33410", - "codeCommune": "33253", - "libelleAcheminement": "LOUPIAC", - "nomCommune": "LOUPIAC" + "codePostal": "20148", + "codeCommune": "2A099", + "libelleAcheminement": "COZZANO", + "nomCommune": "COZZANO" }, { - "codePostal": "59630", - "codeCommune": "59110", - "libelleAcheminement": "BROUCKERQUE", - "nomCommune": "BROUCKERQUE" + "codePostal": "30360", + "codeCommune": "30188", + "libelleAcheminement": "NERS", + "nomCommune": "NERS" }, { - "codePostal": "04380", - "codeCommune": "04040", - "libelleAcheminement": "LE CASTELLARD MELAN", - "nomCommune": "LE CASTELLARD MELAN" + "codePostal": "41310", + "codeCommune": "41278", + "libelleAcheminement": "VILLECHAUVE", + "nomCommune": "VILLECHAUVE" }, { - "codePostal": "65140", - "codeCommune": "65311", - "libelleAcheminement": "MINGOT", - "nomCommune": "MINGOT" + "codePostal": "41110", + "codeCommune": "41063", + "libelleAcheminement": "COUFFY", + "nomCommune": "COUFFY" }, { - "codePostal": "33840", - "codeCommune": "33255", - "libelleAcheminement": "LUCMAU", - "nomCommune": "LUCMAU" + "codePostal": "20190", + "codeCommune": "2A117", + "libelleAcheminement": "FORCIOLO", + "nomCommune": "FORCIOLO" }, { - "codePostal": "59151", - "codeCommune": "59117", - "libelleAcheminement": "BUGNICOURT", - "nomCommune": "BUGNICOURT" + "codePostal": "30120", + "codeCommune": "30199", + "libelleAcheminement": "POMMIERS", + "nomCommune": "POMMIERS" }, { - "codePostal": "04320", - "codeCommune": "04043", - "libelleAcheminement": "VAL DE CHALVAGNE", - "nomCommune": "VAL DE CHALVAGNE" + "codePostal": "41200", + "codeCommune": "41280", + "libelleAcheminement": "VILLEFRANCHE SUR CHER", + "nomCommune": "VILLEFRANCHE SUR CHER" }, { - "codePostal": "65140", - "codeCommune": "65314", - "libelleAcheminement": "MONFAUCON", - "nomCommune": "MONFAUCON" + "codePostal": "41800", + "codeCommune": "41070", + "libelleAcheminement": "VALLEE DE RONSARD", + "nomCommune": "VALLEE DE RONSARD" }, { - "codePostal": "33290", - "codeCommune": "33256", - "libelleAcheminement": "LUDON MEDOC", - "nomCommune": "LUDON MEDOC" + "codePostal": "20100", + "codeCommune": "2A127", + "libelleAcheminement": "GIUNCHETO", + "nomCommune": "GIUNCHETO" }, { - "codePostal": "59217", - "codeCommune": "59138", - "libelleAcheminement": "CATTENIERES", - "nomCommune": "CATTENIERES" + "codePostal": "30131", + "codeCommune": "30209", + "libelleAcheminement": "PUJAUT", + "nomCommune": "PUJAUT" }, { - "codePostal": "04510", - "codeCommune": "04046", - "libelleAcheminement": "LE CHAFFAUT ST JURSON", - "nomCommune": "LE CHAFFAUT ST JURSON" + "codePostal": "41100", + "codeCommune": "41287", + "libelleAcheminement": "VILLERABLE", + "nomCommune": "VILLERABLE" }, { - "codePostal": "65150", - "codeCommune": "65323", - "libelleAcheminement": "MONTSERIE", - "nomCommune": "MONTSERIE" + "codePostal": "41220", + "codeCommune": "41071", + "libelleAcheminement": "CROUY SUR COSSON", + "nomCommune": "CROUY SUR COSSON" }, { - "codePostal": "33620", - "codeCommune": "33266", - "libelleAcheminement": "MARCENAIS", - "nomCommune": "MARCENAIS" + "codePostal": "20160", + "codeCommune": "2A131", + "libelleAcheminement": "GUAGNO", + "nomCommune": "GUAGNO" }, { - "codePostal": "59191", - "codeCommune": "59140", - "libelleAcheminement": "CAULLERY", - "nomCommune": "CAULLERY" + "codePostal": "30260", + "codeCommune": "30210", + "libelleAcheminement": "QUISSAC", + "nomCommune": "QUISSAC" }, { - "codePostal": "04510", - "codeCommune": "04046", - "libelleAcheminement": "LE CHAFFAUT ST JURSON", - "nomCommune": "LE CHAFFAUT ST JURSON" + "codePostal": "42820", + "codeCommune": "42003", + "libelleAcheminement": "AMBIERLE", + "nomCommune": "AMBIERLE" }, { - "codePostal": "65150", - "codeCommune": "65329", - "libelleAcheminement": "NISTOS", - "nomCommune": "NISTOS" + "codePostal": "41100", + "codeCommune": "41072", + "libelleAcheminement": "CRUCHERAY", + "nomCommune": "CRUCHERAY" }, { - "codePostal": "33460", - "codeCommune": "33268", - "libelleAcheminement": "MARGAUX CANTENAC", - "nomCommune": "MARGAUX CANTENAC" + "codePostal": "20160", + "codeCommune": "2A141", + "libelleAcheminement": "LETIA", + "nomCommune": "LETIA" }, { - "codePostal": "59400", - "codeCommune": "59141", - "libelleAcheminement": "CAUROIR", - "nomCommune": "CAUROIR" + "codePostal": "30650", + "codeCommune": "30217", + "libelleAcheminement": "ROCHEFORT DU GARD", + "nomCommune": "ROCHEFORT DU GARD" }, { - "codePostal": "04200", - "codeCommune": "04053", - "libelleAcheminement": "CHATEAUNEUF VAL ST DONAT", - "nomCommune": "CHATEAUNEUF VAL ST DONAT" + "codePostal": "42460", + "codeCommune": "42007", + "libelleAcheminement": "ARCINGES", + "nomCommune": "ARCINGES" }, { - "codePostal": "65200", - "codeCommune": "65338", - "libelleAcheminement": "ORIGNAC", - "nomCommune": "ORIGNAC" + "codePostal": "41360", + "codeCommune": "41090", + "libelleAcheminement": "FORTAN", + "nomCommune": "FORTAN" }, { - "codePostal": "33210", - "codeCommune": "33279", - "libelleAcheminement": "MAZERES", - "nomCommune": "MAZERES" + "codePostal": "20170", + "codeCommune": "2A142", + "libelleAcheminement": "LEVIE", + "nomCommune": "LEVIE" }, { - "codePostal": "59740", - "codeCommune": "59148", - "libelleAcheminement": "CLAIRFAYTS", - "nomCommune": "CLAIRFAYTS" + "codePostal": "30440", + "codeCommune": "30220", + "libelleAcheminement": "ROQUEDUR", + "nomCommune": "ROQUEDUR" }, { - "codePostal": "04330", - "codeCommune": "04055", - "libelleAcheminement": "CHAUDON NORANTE", - "nomCommune": "CHAUDON NORANTE" + "codePostal": "42370", + "codeCommune": "42008", + "libelleAcheminement": "ARCON", + "nomCommune": "ARCON" }, { - "codePostal": "65380", - "codeCommune": "65339", - "libelleAcheminement": "ORINCLES", - "nomCommune": "ORINCLES" + "codePostal": "41310", + "codeCommune": "41098", + "libelleAcheminement": "GOMBERGEAN", + "nomCommune": "GOMBERGEAN" }, { - "codePostal": "33700", - "codeCommune": "33281", - "libelleAcheminement": "MERIGNAC", - "nomCommune": "MERIGNAC" + "codePostal": "20139", + "codeCommune": "2A144", + "libelleAcheminement": "LOPIGNA", + "nomCommune": "LOPIGNA" }, { - "codePostal": "59560", - "codeCommune": "59152", - "libelleAcheminement": "COMINES", - "nomCommune": "COMINES" + "codePostal": "30150", + "codeCommune": "30221", + "libelleAcheminement": "ROQUEMAURE", + "nomCommune": "ROQUEMAURE" }, { - "codePostal": "05110", - "codeCommune": "04058", - "libelleAcheminement": "CLARET", - "nomCommune": "CLARET" + "codePostal": "42720", + "codeCommune": "42016", + "libelleAcheminement": "LA BENISSON DIEU", + "nomCommune": "LA BENISSON DIEU" }, { - "codePostal": "65320", - "codeCommune": "65341", - "libelleAcheminement": "OROIX", - "nomCommune": "OROIX" + "codePostal": "41310", + "codeCommune": "41107", + "libelleAcheminement": "LANCE", + "nomCommune": "LANCE" }, { - "codePostal": "33450", - "codeCommune": "33293", - "libelleAcheminement": "MONTUSSAN", - "nomCommune": "MONTUSSAN" + "codePostal": "20112", + "codeCommune": "2A158", + "libelleAcheminement": "MELA", + "nomCommune": "MELA" }, { - "codePostal": "59380", - "codeCommune": "59162", - "libelleAcheminement": "CROCHTE", - "nomCommune": "CROCHTE" + "codePostal": "30190", + "codeCommune": "30241", + "libelleAcheminement": "ST CHAPTES", + "nomCommune": "ST CHAPTES" }, { - "codePostal": "05110", - "codeCommune": "04066", - "libelleAcheminement": "CURBANS", - "nomCommune": "CURBANS" + "codePostal": "42460", + "codeCommune": "42033", + "libelleAcheminement": "LE CERGNE", + "nomCommune": "LE CERGNE" }, { - "codePostal": "65100", - "codeCommune": "65343", - "libelleAcheminement": "OSSEN", - "nomCommune": "OSSEN" + "codePostal": "41190", + "codeCommune": "41108", + "libelleAcheminement": "LANCOME", + "nomCommune": "LANCOME" }, { - "codePostal": "33240", - "codeCommune": "33295", - "libelleAcheminement": "MOUILLAC", - "nomCommune": "MOUILLAC" + "codePostal": "20117", + "codeCommune": "2A181", + "libelleAcheminement": "OCANA", + "nomCommune": "OCANA" }, { - "codePostal": "59222", - "codeCommune": "59164", - "libelleAcheminement": "CROIX CALUYAU", - "nomCommune": "CROIX CALUYAU" + "codePostal": "30760", + "codeCommune": "30242", + "libelleAcheminement": "ST CHRISTOL DE RODIERES", + "nomCommune": "ST CHRISTOL DE RODIERES" }, { - "codePostal": "04400", - "codeCommune": "04073", - "libelleAcheminement": "ENCHASTRAYES", - "nomCommune": "ENCHASTRAYES" + "codePostal": "42800", + "codeCommune": "42036", + "libelleAcheminement": "CHAGNON", + "nomCommune": "CHAGNON" }, { - "codePostal": "65100", - "codeCommune": "65351", - "libelleAcheminement": "OUSTE", - "nomCommune": "OUSTE" + "codePostal": "41190", + "codeCommune": "41109", + "libelleAcheminement": "LANDES LE GAULOIS", + "nomCommune": "LANDES LE GAULOIS" }, { - "codePostal": "33480", - "codeCommune": "33297", - "libelleAcheminement": "MOULIS EN MEDOC", - "nomCommune": "MOULIS EN MEDOC" + "codePostal": "20113", + "codeCommune": "2A189", + "libelleAcheminement": "OLMETO", + "nomCommune": "OLMETO" }, { - "codePostal": "59830", - "codeCommune": "59168", - "libelleAcheminement": "CYSOING", - "nomCommune": "CYSOING" + "codePostal": "30140", + "codeCommune": "30252", + "libelleAcheminement": "ST FELIX DE PALLIERES", + "nomCommune": "ST FELIX DE PALLIERES" }, { - "codePostal": "04200", - "codeCommune": "04075", - "libelleAcheminement": "ENTREPIERRES", - "nomCommune": "ENTREPIERRES" + "codePostal": "42920", + "codeCommune": "42039", + "libelleAcheminement": "CHALMAZEL JEANSAGNIERE", + "nomCommune": "CHALMAZEL JEANSAGNIERE" }, { - "codePostal": "65130", - "codeCommune": "65356", - "libelleAcheminement": "PERE", - "nomCommune": "PERE" + "codePostal": "41320", + "codeCommune": "41110", + "libelleAcheminement": "LANGON SUR CHER", + "nomCommune": "LANGON SUR CHER" }, { - "codePostal": "33990", - "codeCommune": "33300", - "libelleAcheminement": "NAUJAC SUR MER", - "nomCommune": "NAUJAC SUR MER" + "codePostal": "20134", + "codeCommune": "2A200", + "libelleAcheminement": "PALNECA", + "nomCommune": "PALNECA" }, { - "codePostal": "59440", - "codeCommune": "59181", - "libelleAcheminement": "DOURLERS", - "nomCommune": "DOURLERS" + "codePostal": "30150", + "codeCommune": "30254", + "libelleAcheminement": "ST GENIES DE COMOLAS", + "nomCommune": "ST GENIES DE COMOLAS" }, { - "codePostal": "04800", - "codeCommune": "04081", - "libelleAcheminement": "ESPARRON DE VERDON", - "nomCommune": "ESPARRON DE VERDON" + "codePostal": "42920", + "codeCommune": "42039", + "libelleAcheminement": "CHALMAZEL JEANSAGNIERE", + "nomCommune": "CHALMAZEL JEANSAGNIERE" }, { - "codePostal": "65270", - "codeCommune": "65360", - "libelleAcheminement": "PEYROUSE", - "nomCommune": "PEYROUSE" + "codePostal": "41500", + "codeCommune": "41130", + "libelleAcheminement": "MAVES", + "nomCommune": "MAVES" }, { - "codePostal": "33420", - "codeCommune": "33301", - "libelleAcheminement": "NAUJAN ET POSTIAC", - "nomCommune": "NAUJAN ET POSTIAC" + "codePostal": "20121", + "codeCommune": "2A204", + "libelleAcheminement": "PASTRICCIOLA", + "nomCommune": "PASTRICCIOLA" }, { - "codePostal": "59430", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "30320", + "codeCommune": "30257", + "libelleAcheminement": "ST GERVASY", + "nomCommune": "ST GERVASY" }, { - "codePostal": "04250", - "codeCommune": "04085", - "libelleAcheminement": "FAUCON DU CAIRE", - "nomCommune": "FAUCON DU CAIRE" + "codePostal": "42440", + "codeCommune": "42040", + "libelleAcheminement": "LA CHAMBA", + "nomCommune": "LA CHAMBA" }, { - "codePostal": "65300", - "codeCommune": "65363", - "libelleAcheminement": "PINAS", - "nomCommune": "PINAS" + "codePostal": "41100", + "codeCommune": "41138", + "libelleAcheminement": "MESLAY", + "nomCommune": "MESLAY" }, { - "codePostal": "33410", - "codeCommune": "33308", - "libelleAcheminement": "OMET", - "nomCommune": "OMET" + "codePostal": "20140", + "codeCommune": "2A211", + "libelleAcheminement": "PETRETO BICCHISANO", + "nomCommune": "PETRETO BICCHISANO" }, { - "codePostal": "59640", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "30210", + "codeCommune": "30260", + "libelleAcheminement": "ST HILAIRE D OZILHAN", + "nomCommune": "ST HILAIRE D OZILHAN" }, { - "codePostal": "04240", - "codeCommune": "04090", - "libelleAcheminement": "LE FUGERET", - "nomCommune": "LE FUGERET" + "codePostal": "42110", + "codeCommune": "42041", + "libelleAcheminement": "CHAMBEON", + "nomCommune": "CHAMBEON" }, { - "codePostal": "65220", - "codeCommune": "65374", - "libelleAcheminement": "PUYDARRIEUX", - "nomCommune": "PUYDARRIEUX" + "codePostal": "41160", + "codeCommune": "41141", + "libelleAcheminement": "MOISY", + "nomCommune": "MOISY" }, { - "codePostal": "33340", - "codeCommune": "33309", - "libelleAcheminement": "ORDONNAC", - "nomCommune": "ORDONNAC" + "codePostal": "20123", + "codeCommune": "2A232", + "libelleAcheminement": "PILA CANALE", + "nomCommune": "PILA CANALE" }, { - "codePostal": "59530", - "codeCommune": "59194", - "libelleAcheminement": "ENGLEFONTAINE", - "nomCommune": "ENGLEFONTAINE" + "codePostal": "30360", + "codeCommune": "30264", + "libelleAcheminement": "ST JEAN DE CEYRARGUES", + "nomCommune": "ST JEAN DE CEYRARGUES" }, { - "codePostal": "04310", - "codeCommune": "04091", - "libelleAcheminement": "GANAGOBIE", - "nomCommune": "GANAGOBIE" + "codePostal": "42600", + "codeCommune": "42046", + "libelleAcheminement": "CHAMPDIEU", + "nomCommune": "CHAMPDIEU" }, { - "codePostal": "65140", - "codeCommune": "65375", - "libelleAcheminement": "RABASTENS DE BIGORRE", - "nomCommune": "RABASTENS DE BIGORRE" + "codePostal": "41230", + "codeCommune": "41157", + "libelleAcheminement": "MUR DE SOLOGNE", + "nomCommune": "MUR DE SOLOGNE" }, { - "codePostal": "33250", - "codeCommune": "33314", - "libelleAcheminement": "PAUILLAC", - "nomCommune": "PAUILLAC" + "codePostal": "20137", + "codeCommune": "2A247", + "libelleAcheminement": "PORTO VECCHIO", + "nomCommune": "PORTO VECCHIO" }, { - "codePostal": "59169", - "codeCommune": "59199", - "libelleAcheminement": "ERCHIN", - "nomCommune": "ERCHIN" + "codePostal": "30960", + "codeCommune": "30268", + "libelleAcheminement": "ST JEAN DE VALERISCLE", + "nomCommune": "ST JEAN DE VALERISCLE" }, { - "codePostal": "04150", - "codeCommune": "04095", - "libelleAcheminement": "L HOSPITALET", - "nomCommune": "L HOSPITALET" + "codePostal": "42380", + "codeCommune": "42050", + "libelleAcheminement": "LA CHAPELLE EN LAFAYE", + "nomCommune": "LA CHAPELLE EN LAFAYE" }, { - "codePostal": "65330", - "codeCommune": "65376", - "libelleAcheminement": "RECURT", - "nomCommune": "RECURT" + "codePostal": "41290", + "codeCommune": "41171", + "libelleAcheminement": "OUCQUES LA NOUVELLE", + "nomCommune": "OUCQUES LA NOUVELLE" }, { - "codePostal": "33490", - "codeCommune": "33323", - "libelleAcheminement": "LE PIAN SUR GARONNE", - "nomCommune": "LE PIAN SUR GARONNE" + "codePostal": "20110", + "codeCommune": "2A249", + "libelleAcheminement": "PROPRIANO", + "nomCommune": "PROPRIANO" }, { - "codePostal": "59470", - "codeCommune": "59200", - "libelleAcheminement": "ERINGHEM", - "nomCommune": "ERINGHEM" + "codePostal": "30140", + "codeCommune": "30270", + "libelleAcheminement": "ST JEAN DU PIN", + "nomCommune": "ST JEAN DU PIN" }, { - "codePostal": "04170", - "codeCommune": "04099", - "libelleAcheminement": "LAMBRUISSE", - "nomCommune": "LAMBRUISSE" + "codePostal": "42140", + "codeCommune": "42062", + "libelleAcheminement": "CHEVRIERES", + "nomCommune": "CHEVRIERES" }, { - "codePostal": "65300", - "codeCommune": "65377", - "libelleAcheminement": "REJAUMONT", - "nomCommune": "REJAUMONT" + "codePostal": "41240", + "codeCommune": "41173", + "libelleAcheminement": "BEAUCE LA ROMAINE", + "nomCommune": "BEAUCE LA ROMAINE" }, { - "codePostal": "33720", - "codeCommune": "33327", - "libelleAcheminement": "PODENSAC", - "nomCommune": "PODENSAC" + "codePostal": "20145", + "codeCommune": "2A269", + "libelleAcheminement": "SARI SOLENZARA", + "nomCommune": "SARI SOLENZARA" }, { - "codePostal": "59320", - "codeCommune": "59201", - "libelleAcheminement": "ERQUINGHEM LE SEC", - "nomCommune": "ERQUINGHEM LE SEC" + "codePostal": "30580", + "codeCommune": "30275", + "libelleAcheminement": "ST JUST ET VACQUIERES", + "nomCommune": "ST JUST ET VACQUIERES" }, { - "codePostal": "04700", - "codeCommune": "04106", - "libelleAcheminement": "LURS", - "nomCommune": "LURS" + "codePostal": "42110", + "codeCommune": "42065", + "libelleAcheminement": "CIVENS", + "nomCommune": "CIVENS" }, { - "codePostal": "65370", - "codeCommune": "65382", - "libelleAcheminement": "SACOUE", - "nomCommune": "SACOUE" + "codePostal": "41240", + "codeCommune": "41173", + "libelleAcheminement": "BEAUCE LA ROMAINE", + "nomCommune": "BEAUCE LA ROMAINE" }, { - "codePostal": "33190", - "codeCommune": "33331", - "libelleAcheminement": "PONDAURAT", - "nomCommune": "PONDAURAT" + "codePostal": "20100", + "codeCommune": "2A272", + "libelleAcheminement": "SARTENE", + "nomCommune": "SARTENE" }, { - "codePostal": "59193", - "codeCommune": "59202", - "libelleAcheminement": "ERQUINGHEM LYS", - "nomCommune": "ERQUINGHEM LYS" + "codePostal": "30126", + "codeCommune": "30278", + "libelleAcheminement": "ST LAURENT DES ARBRES", + "nomCommune": "ST LAURENT DES ARBRES" }, { - "codePostal": "04300", - "codeCommune": "04111", - "libelleAcheminement": "MANE", - "nomCommune": "MANE" + "codePostal": "42120", + "codeCommune": "42071", + "libelleAcheminement": "LE COTEAU", + "nomCommune": "LE COTEAU" }, { - "codePostal": "65220", - "codeCommune": "65383", - "libelleAcheminement": "SADOURNIN", - "nomCommune": "SADOURNIN" + "codePostal": "41240", + "codeCommune": "41173", + "libelleAcheminement": "BEAUCE LA ROMAINE", + "nomCommune": "BEAUCE LA ROMAINE" }, { - "codePostal": "33570", - "codeCommune": "33342", - "libelleAcheminement": "PUISSEGUIN", - "nomCommune": "PUISSEGUIN" + "codePostal": "20112", + "codeCommune": "2A308", + "libelleAcheminement": "STE LUCIE DE TALLANO", + "nomCommune": "STE LUCIE DE TALLANO" }, { - "codePostal": "59171", - "codeCommune": "59203", - "libelleAcheminement": "ERRE", - "nomCommune": "ERRE" + "codePostal": "30360", + "codeCommune": "30285", + "libelleAcheminement": "ST MAURICE DE CAZEVIEILLE", + "nomCommune": "ST MAURICE DE CAZEVIEILLE" }, { - "codePostal": "04110", - "codeCommune": "04129", - "libelleAcheminement": "MONTJUSTIN", - "nomCommune": "MONTJUSTIN" + "codePostal": "42111", + "codeCommune": "42072", + "libelleAcheminement": "LA COTE EN COUZAN", + "nomCommune": "LA COTE EN COUZAN" }, { - "codePostal": "65250", - "codeCommune": "65385", - "libelleAcheminement": "ST ARROMAN", - "nomCommune": "ST ARROMAN" + "codePostal": "41100", + "codeCommune": "41175", + "libelleAcheminement": "PEZOU", + "nomCommune": "PEZOU" }, { - "codePostal": "33580", - "codeCommune": "33345", - "libelleAcheminement": "LE PUY", - "nomCommune": "LE PUY" + "codePostal": "20128", + "codeCommune": "2A331", + "libelleAcheminement": "URBALACONE", + "nomCommune": "URBALACONE" }, { - "codePostal": "59320", - "codeCommune": "59208", - "libelleAcheminement": "ESCOBECQUES", - "nomCommune": "ESCOBECQUES" + "codePostal": "30610", + "codeCommune": "30289", + "libelleAcheminement": "ST NAZAIRE DES GARDIES", + "nomCommune": "ST NAZAIRE DES GARDIES" }, { - "codePostal": "04150", - "codeCommune": "04132", - "libelleAcheminement": "MONTSALIER", - "nomCommune": "MONTSALIER" + "codePostal": "42460", + "codeCommune": "42074", + "libelleAcheminement": "COUTOUVRE", + "nomCommune": "COUTOUVRE" }, { - "codePostal": "65500", - "codeCommune": "65390", - "libelleAcheminement": "ST LEZER", - "nomCommune": "ST LEZER" + "codePostal": "41170", + "codeCommune": "41177", + "libelleAcheminement": "LE PLESSIS DORIN", + "nomCommune": "LE PLESSIS DORIN" }, { - "codePostal": "33420", - "codeCommune": "33350", - "libelleAcheminement": "RAUZAN", - "nomCommune": "RAUZAN" + "codePostal": "20116", + "codeCommune": "2A357", + "libelleAcheminement": "ZERUBIA", + "nomCommune": "ZERUBIA" }, { - "codePostal": "59470", - "codeCommune": "59210", - "libelleAcheminement": "ESQUELBECQ", - "nomCommune": "ESQUELBECQ" + "codePostal": "30700", + "codeCommune": "30299", + "libelleAcheminement": "ST SIFFRET", + "nomCommune": "ST SIFFRET" }, { - "codePostal": "04250", - "codeCommune": "04134", - "libelleAcheminement": "LA MOTTE DU CAIRE", - "nomCommune": "LA MOTTE DU CAIRE" + "codePostal": "42800", + "codeCommune": "42083", + "libelleAcheminement": "DARGOIRE", + "nomCommune": "DARGOIRE" }, { - "codePostal": "65370", - "codeCommune": "65391", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "41370", + "codeCommune": "41178", + "libelleAcheminement": "LE PLESSIS L ECHELLE", + "nomCommune": "LE PLESSIS L ECHELLE" }, { - "codePostal": "33220", - "codeCommune": "33354", - "libelleAcheminement": "RIOCAUD", - "nomCommune": "RIOCAUD" + "codePostal": "20190", + "codeCommune": "2A360", + "libelleAcheminement": "ZIGLIARA", + "nomCommune": "ZIGLIARA" }, { - "codePostal": "59151", - "codeCommune": "59214", - "libelleAcheminement": "ESTREES", - "nomCommune": "ESTREES" + "codePostal": "30500", + "codeCommune": "30303", + "libelleAcheminement": "ST VICTOR DE MALCAP", + "nomCommune": "ST VICTOR DE MALCAP" }, { - "codePostal": "04300", - "codeCommune": "04138", - "libelleAcheminement": "NIOZELLES", - "nomCommune": "NIOZELLES" + "codePostal": "42130", + "codeCommune": "42084", + "libelleAcheminement": "DEBATS RIVIERE D ORPRA", + "nomCommune": "DEBATS RIVIERE D ORPRA" }, { - "codePostal": "65400", - "codeCommune": "65396", - "libelleAcheminement": "ST SAVIN", - "nomCommune": "ST SAVIN" + "codePostal": "41310", + "codeCommune": "41184", + "libelleAcheminement": "PRUNAY CASSEREAU", + "nomCommune": "PRUNAY CASSEREAU" }, { - "codePostal": "33760", - "codeCommune": "33358", - "libelleAcheminement": "ROMAGNE", - "nomCommune": "ROMAGNE" + "codePostal": "20124", + "codeCommune": "2A362", + "libelleAcheminement": "ZONZA", + "nomCommune": "ZONZA" }, { - "codePostal": "59219", - "codeCommune": "59218", - "libelleAcheminement": "ETROEUNGT", - "nomCommune": "ETROEUNGT" + "codePostal": "30125", + "codeCommune": "30310", + "libelleAcheminement": "SAUMANE", + "nomCommune": "SAUMANE" }, { - "codePostal": "04310", - "codeCommune": "04149", - "libelleAcheminement": "PEYRUIS", - "nomCommune": "PEYRUIS" + "codePostal": "42670", + "codeCommune": "42086", + "libelleAcheminement": "ECOCHE", + "nomCommune": "ECOCHE" }, { - "codePostal": "65120", - "codeCommune": "65399", - "libelleAcheminement": "SALIGOS", - "nomCommune": "SALIGOS" + "codePostal": "41100", + "codeCommune": "41187", + "libelleAcheminement": "RENAY", + "nomCommune": "RENAY" }, { - "codePostal": "33670", - "codeCommune": "33363", - "libelleAcheminement": "SADIRAC", - "nomCommune": "SADIRAC" + "codePostal": "20244", + "codeCommune": "2B003", + "libelleAcheminement": "AITI", + "nomCommune": "AITI" }, { - "codePostal": "59295", - "codeCommune": "59219", - "libelleAcheminement": "ESTRUN", - "nomCommune": "ESTRUN" + "codePostal": "30450", + "codeCommune": "30316", + "libelleAcheminement": "SENECHAS", + "nomCommune": "SENECHAS" }, { - "codePostal": "04420", - "codeCommune": "04155", - "libelleAcheminement": "PRADS HAUTE BLEONE", - "nomCommune": "PRADS HAUTE BLEONE" + "codePostal": "42320", + "codeCommune": "42093", + "libelleAcheminement": "FARNAY", + "nomCommune": "FARNAY" }, { - "codePostal": "65360", - "codeCommune": "65401", - "libelleAcheminement": "SALLES ADOUR", - "nomCommune": "SALLES ADOUR" + "codePostal": "41100", + "codeCommune": "41200", + "libelleAcheminement": "STE ANNE", + "nomCommune": "STE ANNE" }, { - "codePostal": "33220", - "codeCommune": "33369", - "libelleAcheminement": "ST ANDRE ET APPELLES", - "nomCommune": "ST ANDRE ET APPELLES" + "codePostal": "20270", + "codeCommune": "2B009", + "libelleAcheminement": "ALERIA", + "nomCommune": "ALERIA" }, { - "codePostal": "59750", - "codeCommune": "59225", - "libelleAcheminement": "FEIGNIES", - "nomCommune": "FEIGNIES" + "codePostal": "30700", + "codeCommune": "30319", + "libelleAcheminement": "SERVIERS ET LABAUME", + "nomCommune": "SERVIERS ET LABAUME" }, { - "codePostal": "04420", - "codeCommune": "04155", - "libelleAcheminement": "PRADS HAUTE BLEONE", - "nomCommune": "PRADS HAUTE BLEONE" + "codePostal": "42700", + "codeCommune": "42095", + "libelleAcheminement": "FIRMINY", + "nomCommune": "FIRMINY" }, { - "codePostal": "65370", - "codeCommune": "65402", - "libelleAcheminement": "SAMURAN", - "nomCommune": "SAMURAN" + "codePostal": "41190", + "codeCommune": "41208", + "libelleAcheminement": "ST ETIENNE DES GUERETS", + "nomCommune": "ST ETIENNE DES GUERETS" }, { - "codePostal": "33390", - "codeCommune": "33370", - "libelleAcheminement": "ST ANDRONY", - "nomCommune": "ST ANDRONY" + "codePostal": "20220", + "codeCommune": "2B020", + "libelleAcheminement": "AREGNO", + "nomCommune": "AREGNO" }, { - "codePostal": "59740", - "codeCommune": "59226", - "libelleAcheminement": "FELLERIES", - "nomCommune": "FELLERIES" + "codePostal": "30110", + "codeCommune": "30323", + "libelleAcheminement": "SOUSTELLE", + "nomCommune": "SOUSTELLE" }, { - "codePostal": "04700", - "codeCommune": "04156", - "libelleAcheminement": "PUIMICHEL", - "nomCommune": "PUIMICHEL" + "codePostal": "42470", + "codeCommune": "42098", + "libelleAcheminement": "FOURNEAUX", + "nomCommune": "FOURNEAUX" }, { - "codePostal": "65100", - "codeCommune": "65415", - "libelleAcheminement": "SEGUS", - "nomCommune": "SEGUS" + "codePostal": "41160", + "codeCommune": "41214", + "libelleAcheminement": "ST HILAIRE LA GRAVELLE", + "nomCommune": "ST HILAIRE LA GRAVELLE" }, { - "codePostal": "33220", - "codeCommune": "33377", - "libelleAcheminement": "ST AVIT DE SOULEGE", - "nomCommune": "ST AVIT DE SOULEGE" + "codePostal": "20225", + "codeCommune": "2B025", + "libelleAcheminement": "AVAPESSA", + "nomCommune": "AVAPESSA" }, { - "codePostal": "59680", - "codeCommune": "59231", - "libelleAcheminement": "FERRIERE LA PETITE", - "nomCommune": "FERRIERE LA PETITE" + "codePostal": "30430", + "codeCommune": "30327", + "libelleAcheminement": "THARAUX", + "nomCommune": "THARAUX" }, { - "codePostal": "04150", - "codeCommune": "04162", - "libelleAcheminement": "REVEST DES BROUSSES", - "nomCommune": "REVEST DES BROUSSES" + "codePostal": "42140", + "codeCommune": "42102", + "libelleAcheminement": "GRAMMOND", + "nomCommune": "GRAMMOND" }, { - "codePostal": "65100", - "codeCommune": "65421", - "libelleAcheminement": "SERE LANSO", - "nomCommune": "SERE LANSO" + "codePostal": "41800", + "codeCommune": "41215", + "libelleAcheminement": "ST JACQUES DES GUERETS", + "nomCommune": "ST JACQUES DES GUERETS" }, { - "codePostal": "33220", - "codeCommune": "33378", - "libelleAcheminement": "ST AVIT ST NAZAIRE", - "nomCommune": "ST AVIT ST NAZAIRE" + "codePostal": "20200", + "codeCommune": "2B033", + "libelleAcheminement": "BASTIA", + "nomCommune": "BASTIA" }, { - "codePostal": "59550", - "codeCommune": "59242", - "libelleAcheminement": "FONTAINE AU BOIS", - "nomCommune": "FONTAINE AU BOIS" + "codePostal": "30570", + "codeCommune": "30339", + "libelleAcheminement": "VAL D AIGOUAL", + "nomCommune": "VAL D AIGOUAL" }, { - "codePostal": "04150", - "codeCommune": "04169", - "libelleAcheminement": "LA ROCHEGIRON", - "nomCommune": "LA ROCHEGIRON" + "codePostal": "42460", + "codeCommune": "42104", + "libelleAcheminement": "LA GRESLE", + "nomCommune": "LA GRESLE" }, { - "codePostal": "65320", - "codeCommune": "65422", - "libelleAcheminement": "SERON", - "nomCommune": "SERON" + "codePostal": "41320", + "codeCommune": "41218", + "libelleAcheminement": "ST JULIEN SUR CHER", + "nomCommune": "ST JULIEN SUR CHER" }, { - "codePostal": "33920", - "codeCommune": "33382", - "libelleAcheminement": "ST CHRISTOLY DE BLAYE", - "nomCommune": "ST CHRISTOLY DE BLAYE" + "codePostal": "20252", + "codeCommune": "2B036", + "libelleAcheminement": "BIGORNO", + "nomCommune": "BIGORNO" }, { - "codePostal": "59610", - "codeCommune": "59249", - "libelleAcheminement": "FOURMIES", - "nomCommune": "FOURMIES" + "codePostal": "30570", + "codeCommune": "30339", + "libelleAcheminement": "VAL D AIGOUAL", + "nomCommune": "VAL D AIGOUAL" }, { - "codePostal": "04500", - "codeCommune": "04172", - "libelleAcheminement": "ROUMOULES", - "nomCommune": "ROUMOULES" + "codePostal": "42260", + "codeCommune": "42106", + "libelleAcheminement": "GREZOLLES", + "nomCommune": "GREZOLLES" }, { - "codePostal": "65500", - "codeCommune": "65425", - "libelleAcheminement": "SIARROUY", - "nomCommune": "SIARROUY" + "codePostal": "41170", + "codeCommune": "41224", + "libelleAcheminement": "ST MARC DU COR", + "nomCommune": "ST MARC DU COR" }, { - "codePostal": "33820", - "codeCommune": "33389", - "libelleAcheminement": "ST CIERS SUR GIRONDE", - "nomCommune": "ST CIERS SUR GIRONDE" + "codePostal": "20235", + "codeCommune": "2B039", + "libelleAcheminement": "BISINCHI", + "nomCommune": "BISINCHI" }, { - "codePostal": "59236", - "codeCommune": "59252", - "libelleAcheminement": "FRELINGHIEN", - "nomCommune": "FRELINGHIEN" + "codePostal": "30210", + "codeCommune": "30340", + "libelleAcheminement": "VALLIGUIERES", + "nomCommune": "VALLIGUIERES" }, { - "codePostal": "04170", - "codeCommune": "04173", - "libelleAcheminement": "ST ANDRE LES ALPES", - "nomCommune": "ST ANDRE LES ALPES" + "codePostal": "42600", + "codeCommune": "42122", + "libelleAcheminement": "LEZIGNEUX", + "nomCommune": "LEZIGNEUX" }, { - "codePostal": "65000", - "codeCommune": "65440", - "libelleAcheminement": "TARBES", - "nomCommune": "TARBES" + "codePostal": "41000", + "codeCommune": "41230", + "libelleAcheminement": "ST SULPICE DE POMMERAY", + "nomCommune": "ST SULPICE DE POMMERAY" }, { - "codePostal": "33350", - "codeCommune": "33390", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "20290", + "codeCommune": "2B042", + "libelleAcheminement": "BORGO", + "nomCommune": "BORGO" }, { - "codePostal": "59273", - "codeCommune": "59256", - "libelleAcheminement": "FRETIN", - "nomCommune": "FRETIN" + "codePostal": "30530", + "codeCommune": "30345", + "libelleAcheminement": "LA VERNAREDE", + "nomCommune": "LA VERNAREDE" }, { - "codePostal": "04500", - "codeCommune": "04176", - "libelleAcheminement": "STE CROIX DU VERDON", - "nomCommune": "STE CROIX DU VERDON" + "codePostal": "42420", + "codeCommune": "42123", + "libelleAcheminement": "LORETTE", + "nomCommune": "LORETTE" }, { - "codePostal": "65350", - "codeCommune": "65443", - "libelleAcheminement": "THUY", - "nomCommune": "THUY" + "codePostal": "41120", + "codeCommune": "41233", + "libelleAcheminement": "SAMBIN", + "nomCommune": "SAMBIN" }, { - "codePostal": "33430", - "codeCommune": "33391", - "libelleAcheminement": "ST COME", - "nomCommune": "ST COME" + "codePostal": "20222", + "codeCommune": "2B043", + "libelleAcheminement": "BRANDO", + "nomCommune": "BRANDO" }, { - "codePostal": "59242", - "codeCommune": "59258", - "libelleAcheminement": "GENECH", - "nomCommune": "GENECH" + "codePostal": "30210", + "codeCommune": "30346", + "libelleAcheminement": "VERS PONT DU GARD", + "nomCommune": "VERS PONT DU GARD" }, { - "codePostal": "04270", - "codeCommune": "04182", - "libelleAcheminement": "ST JULIEN D ASSE", - "nomCommune": "ST JULIEN D ASSE" + "codePostal": "42300", + "codeCommune": "42127", + "libelleAcheminement": "MABLY", + "nomCommune": "MABLY" }, { - "codePostal": "65300", - "codeCommune": "65456", - "libelleAcheminement": "UGLAS", - "nomCommune": "UGLAS" + "codePostal": "41310", + "codeCommune": "41236", + "libelleAcheminement": "SASNIERES", + "nomCommune": "SASNIERES" }, { - "codePostal": "33490", - "codeCommune": "33403", - "libelleAcheminement": "STE FOY LA LONGUE", - "nomCommune": "STE FOY LA LONGUE" + "codePostal": "20222", + "codeCommune": "2B043", + "libelleAcheminement": "BRANDO", + "nomCommune": "BRANDO" }, { - "codePostal": "59530", - "codeCommune": "59259", - "libelleAcheminement": "GHISSIGNIES", - "nomCommune": "GHISSIGNIES" + "codePostal": "30600", + "codeCommune": "30347", + "libelleAcheminement": "VESTRIC ET CANDIAC", + "nomCommune": "VESTRIC ET CANDIAC" }, { - "codePostal": "04300", - "codeCommune": "04188", - "libelleAcheminement": "ST MAIME", - "nomCommune": "ST MAIME" + "codePostal": "42520", + "codeCommune": "42132", + "libelleAcheminement": "MALLEVAL", + "nomCommune": "MALLEVAL" }, { - "codePostal": "65140", - "codeCommune": "65457", - "libelleAcheminement": "UGNOUAS", - "nomCommune": "UGNOUAS" + "codePostal": "41130", + "codeCommune": "41242", + "libelleAcheminement": "SELLES SUR CHER", + "nomCommune": "SELLES SUR CHER" }, { - "codePostal": "33490", - "codeCommune": "33411", - "libelleAcheminement": "ST GERMAIN DE GRAVE", - "nomCommune": "ST GERMAIN DE GRAVE" + "codePostal": "20214", + "codeCommune": "2B049", + "libelleAcheminement": "CALENZANA", + "nomCommune": "CALENZANA" }, { - "codePostal": "59122", - "codeCommune": "59260", - "libelleAcheminement": "GHYVELDE", - "nomCommune": "GHYVELDE" + "codePostal": "30360", + "codeCommune": "30348", + "libelleAcheminement": "VEZENOBRES", + "nomCommune": "VEZENOBRES" }, { - "codePostal": "04870", - "codeCommune": "04192", - "libelleAcheminement": "ST MICHEL L OBSERVATOIRE", - "nomCommune": "ST MICHEL L OBSERVATOIRE" + "codePostal": "42140", + "codeCommune": "42133", + "libelleAcheminement": "MARCENOD", + "nomCommune": "MARCENOD" }, { - "codePostal": "66200", - "codeCommune": "66002", - "libelleAcheminement": "ALENYA", - "nomCommune": "ALENYA" + "codePostal": "41300", + "codeCommune": "41249", + "libelleAcheminement": "SOUESMES", + "nomCommune": "SOUESMES" }, { - "codePostal": "33340", - "codeCommune": "33412", - "libelleAcheminement": "ST GERMAIN D ESTEUIL", - "nomCommune": "ST GERMAIN D ESTEUIL" + "codePostal": "20214", + "codeCommune": "2B049", + "libelleAcheminement": "CALENZANA", + "nomCommune": "CALENZANA" }, { - "codePostal": "59144", - "codeCommune": "59265", - "libelleAcheminement": "GOMMEGNIES", - "nomCommune": "GOMMEGNIES" + "codePostal": "30260", + "codeCommune": "30349", + "libelleAcheminement": "VIC LE FESQ", + "nomCommune": "VIC LE FESQ" }, { - "codePostal": "06260", - "codeCommune": "04194", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "42140", + "codeCommune": "42138", + "libelleAcheminement": "MARINGES", + "nomCommune": "MARINGES" }, { - "codePostal": "66320", - "codeCommune": "66013", - "libelleAcheminement": "BAILLESTAVY", - "nomCommune": "BAILLESTAVY" + "codePostal": "41800", + "codeCommune": "41250", + "libelleAcheminement": "SOUGE", + "nomCommune": "SOUGE" }, { - "codePostal": "33750", - "codeCommune": "33413", - "libelleAcheminement": "ST GERMAIN DU PUCH", - "nomCommune": "ST GERMAIN DU PUCH" + "codePostal": "20244", + "codeCommune": "2B051", + "libelleAcheminement": "CAMBIA", + "nomCommune": "CAMBIA" }, { - "codePostal": "59760", - "codeCommune": "59271", - "libelleAcheminement": "GRANDE SYNTHE", - "nomCommune": "GRANDE SYNTHE" + "codePostal": "30400", + "codeCommune": "30351", + "libelleAcheminement": "VILLENEUVE LES AVIGNON", + "nomCommune": "VILLENEUVE LES AVIGNON" }, { - "codePostal": "04220", - "codeCommune": "04197", - "libelleAcheminement": "STE TULLE", - "nomCommune": "STE TULLE" + "codePostal": "42660", + "codeCommune": "42139", + "libelleAcheminement": "MARLHES", + "nomCommune": "MARLHES" }, { - "codePostal": "66420", - "codeCommune": "66017", - "libelleAcheminement": "LE BARCARES", - "nomCommune": "LE BARCARES" + "codePostal": "41370", + "codeCommune": "41253", + "libelleAcheminement": "TALCY", + "nomCommune": "TALCY" }, { - "codePostal": "33480", - "codeCommune": "33417", - "libelleAcheminement": "STE HELENE", - "nomCommune": "STE HELENE" + "codePostal": "20252", + "codeCommune": "2B055", + "libelleAcheminement": "CAMPITELLO", + "nomCommune": "CAMPITELLO" }, { - "codePostal": "59198", - "codeCommune": "59285", - "libelleAcheminement": "HASPRES", - "nomCommune": "HASPRES" + "codePostal": "30770", + "codeCommune": "30353", + "libelleAcheminement": "VISSEC", + "nomCommune": "VISSEC" }, { - "codePostal": "04150", - "codeCommune": "04201", - "libelleAcheminement": "SAUMANE", - "nomCommune": "SAUMANE" + "codePostal": "42380", + "codeCommune": "42146", + "libelleAcheminement": "MONTARCHER", + "nomCommune": "MONTARCHER" }, { - "codePostal": "66420", - "codeCommune": "66017", - "libelleAcheminement": "LE BARCARES", - "nomCommune": "LE BARCARES" + "codePostal": "41190", + "codeCommune": "41261", + "libelleAcheminement": "TOURAILLES", + "nomCommune": "TOURAILLES" }, { - "codePostal": "33540", - "codeCommune": "33419", - "libelleAcheminement": "ST HILAIRE DU BOIS", - "nomCommune": "ST HILAIRE DU BOIS" + "codePostal": "20270", + "codeCommune": "2B075", + "libelleAcheminement": "CASEVECCHIE", + "nomCommune": "CASEVECCHIE" }, { - "codePostal": "59320", - "codeCommune": "59286", - "libelleAcheminement": "HAUBOURDIN", - "nomCommune": "HAUBOURDIN" + "codePostal": "30350", + "codeCommune": "30354", + "libelleAcheminement": "MONTAGNAC", + "nomCommune": "MONTAGNAC" }, { - "codePostal": "04300", - "codeCommune": "04206", - "libelleAcheminement": "SIGONCE", - "nomCommune": "SIGONCE" + "codePostal": "42130", + "codeCommune": "42150", + "libelleAcheminement": "MONTVERDUN", + "nomCommune": "MONTVERDUN" }, { - "codePostal": "66110", - "codeCommune": "66018", - "libelleAcheminement": "LA BASTIDE", - "nomCommune": "LA BASTIDE" + "codePostal": "41290", + "codeCommune": "41273", + "libelleAcheminement": "VIEVY LE RAYE", + "nomCommune": "VIEVY LE RAYE" }, { - "codePostal": "33112", - "codeCommune": "33424", - "libelleAcheminement": "ST LAURENT MEDOC", - "nomCommune": "ST LAURENT MEDOC" + "codePostal": "20218", + "codeCommune": "2B082", + "libelleAcheminement": "CASTINETA", + "nomCommune": "CASTINETA" }, { - "codePostal": "59171", - "codeCommune": "59297", - "libelleAcheminement": "HELESMES", - "nomCommune": "HELESMES" + "codePostal": "31280", + "codeCommune": "31003", + "libelleAcheminement": "AIGREFEUILLE", + "nomCommune": "AIGREFEUILLE" }, { - "codePostal": "04200", - "codeCommune": "04209", - "libelleAcheminement": "SISTERON", - "nomCommune": "SISTERON" + "codePostal": "42510", + "codeCommune": "42155", + "libelleAcheminement": "NERVIEUX", + "nomCommune": "NERVIEUX" }, { - "codePostal": "66720", - "codeCommune": "66019", - "libelleAcheminement": "BELESTA", - "nomCommune": "BELESTA" + "codePostal": "41200", + "codeCommune": "41282", + "libelleAcheminement": "VILLEHERVIERS", + "nomCommune": "VILLEHERVIERS" }, { - "codePostal": "33670", - "codeCommune": "33431", - "libelleAcheminement": "ST LEON", - "nomCommune": "ST LEON" + "codePostal": "20221", + "codeCommune": "2B087", + "libelleAcheminement": "CERVIONE", + "nomCommune": "CERVIONE" }, { - "codePostal": "59190", - "codeCommune": "59308", - "libelleAcheminement": "HONDEGHEM", - "nomCommune": "HONDEGHEM" + "codePostal": "31460", + "codeCommune": "31006", + "libelleAcheminement": "ALBIAC", + "nomCommune": "ALBIAC" }, { - "codePostal": "04170", - "codeCommune": "04218", - "libelleAcheminement": "THORAME BASSE", - "nomCommune": "THORAME BASSE" + "codePostal": "42990", + "codeCommune": "42164", + "libelleAcheminement": "PALOGNEUX", + "nomCommune": "PALOGNEUX" }, { - "codePostal": "66160", - "codeCommune": "66024", - "libelleAcheminement": "LE BOULOU", - "nomCommune": "LE BOULOU" + "codePostal": "41100", + "codeCommune": "41290", + "libelleAcheminement": "VILLEROMAIN", + "nomCommune": "VILLEROMAIN" }, { - "codePostal": "33490", - "codeCommune": "33438", - "libelleAcheminement": "ST MAIXANT", - "nomCommune": "ST MAIXANT" + "codePostal": "20224", + "codeCommune": "2B095", + "libelleAcheminement": "CORSCIA", + "nomCommune": "CORSCIA" }, { - "codePostal": "59111", - "codeCommune": "59313", - "libelleAcheminement": "HORDAIN", - "nomCommune": "HORDAIN" + "codePostal": "31160", + "codeCommune": "31011", + "libelleAcheminement": "ARBAS", + "nomCommune": "ARBAS" }, { - "codePostal": "04400", - "codeCommune": "04220", - "libelleAcheminement": "LES THUILES", - "nomCommune": "LES THUILES" + "codePostal": "42360", + "codeCommune": "42165", + "libelleAcheminement": "PANISSIERES", + "nomCommune": "PANISSIERES" }, { - "codePostal": "66330", - "codeCommune": "66028", - "libelleAcheminement": "CABESTANY", - "nomCommune": "CABESTANY" + "codePostal": "41350", + "codeCommune": "41295", + "libelleAcheminement": "VINEUIL", + "nomCommune": "VINEUIL" }, { - "codePostal": "33160", - "codeCommune": "33449", - "libelleAcheminement": "ST MEDARD EN JALLES", - "nomCommune": "ST MEDARD EN JALLES" + "codePostal": "20212", + "codeCommune": "2B105", + "libelleAcheminement": "ERBAJOLO", + "nomCommune": "ERBAJOLO" }, { - "codePostal": "59171", - "codeCommune": "59314", - "libelleAcheminement": "HORNAING", - "nomCommune": "HORNAING" + "codePostal": "31420", + "codeCommune": "31023", + "libelleAcheminement": "AULON", + "nomCommune": "AULON" }, { - "codePostal": "04200", - "codeCommune": "04233", - "libelleAcheminement": "VAUMEILH", - "nomCommune": "VAUMEILH" + "codePostal": "42260", + "codeCommune": "42173", + "libelleAcheminement": "POMMIERS EN FOREZ", + "nomCommune": "POMMIERS EN FOREZ" }, { - "codePostal": "66300", - "codeCommune": "66029", - "libelleAcheminement": "CAIXAS", - "nomCommune": "CAIXAS" + "codePostal": "41600", + "codeCommune": "41296", + "libelleAcheminement": "VOUZON", + "nomCommune": "VOUZON" }, { - "codePostal": "33126", - "codeCommune": "33451", - "libelleAcheminement": "ST MICHEL DE FRONSAC", - "nomCommune": "ST MICHEL DE FRONSAC" + "codePostal": "20212", + "codeCommune": "2B116", + "libelleAcheminement": "FOCICCHIA", + "nomCommune": "FOCICCHIA" }, { - "codePostal": "59552", - "codeCommune": "59329", - "libelleAcheminement": "LAMBRES LEZ DOUAI", - "nomCommune": "LAMBRES LEZ DOUAI" + "codePostal": "31290", + "codeCommune": "31037", + "libelleAcheminement": "AVIGNONET LAURAGAIS", + "nomCommune": "AVIGNONET LAURAGAIS" }, { - "codePostal": "04170", - "codeCommune": "04236", - "libelleAcheminement": "VERGONS", - "nomCommune": "VERGONS" + "codePostal": "42600", + "codeCommune": "42180", + "libelleAcheminement": "PRECIEUX", + "nomCommune": "PRECIEUX" }, { - "codePostal": "66130", - "codeCommune": "66040", - "libelleAcheminement": "CASEFABRE", - "nomCommune": "CASEFABRE" + "codePostal": "41600", + "codeCommune": "41297", + "libelleAcheminement": "YVOY LE MARRON", + "nomCommune": "YVOY LE MARRON" }, { - "codePostal": "33820", - "codeCommune": "33456", - "libelleAcheminement": "ST PALAIS", - "nomCommune": "ST PALAIS" + "codePostal": "20218", + "codeCommune": "2B122", + "libelleAcheminement": "GAVIGNANO", + "nomCommune": "GAVIGNANO" }, { - "codePostal": "59219", - "codeCommune": "59333", - "libelleAcheminement": "LAROUILLIES", - "nomCommune": "LAROUILLIES" + "codePostal": "31420", + "codeCommune": "31039", + "libelleAcheminement": "BACHAS", + "nomCommune": "BACHAS" }, { - "codePostal": "04110", - "codeCommune": "04241", - "libelleAcheminement": "VILLEMUS", - "nomCommune": "VILLEMUS" + "codePostal": "42340", + "codeCommune": "42185", + "libelleAcheminement": "RIVAS", + "nomCommune": "RIVAS" }, { - "codePostal": "66300", - "codeCommune": "66044", - "libelleAcheminement": "CASTELNOU", - "nomCommune": "CASTELNOU" + "codePostal": "42160", + "codeCommune": "42005", + "libelleAcheminement": "ANDREZIEUX BOUTHEON", + "nomCommune": "ANDREZIEUX BOUTHEON" }, { - "codePostal": "33390", - "codeCommune": "33458", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "20220", + "codeCommune": "2B134", + "libelleAcheminement": "L ILE ROUSSE", + "nomCommune": "L ILE ROUSSE" }, { - "codePostal": "59259", - "codeCommune": "59336", - "libelleAcheminement": "LECLUSE", - "nomCommune": "LECLUSE" + "codePostal": "31510", + "codeCommune": "31041", + "libelleAcheminement": "BAGIRY", + "nomCommune": "BAGIRY" }, { - "codePostal": "05460", - "codeCommune": "05001", - "libelleAcheminement": "ABRIES RISTOLAS", - "nomCommune": "ABRIES RISTOLAS" + "codePostal": "42890", + "codeCommune": "42195", + "libelleAcheminement": "SAIL SOUS COUZAN", + "nomCommune": "SAIL SOUS COUZAN" }, { - "codePostal": "66220", - "codeCommune": "66046", - "libelleAcheminement": "CAUDIES DE FENOUILLEDES", - "nomCommune": "CAUDIES DE FENOUILLEDES" + "codePostal": "42510", + "codeCommune": "42011", + "libelleAcheminement": "BALBIGNY", + "nomCommune": "BALBIGNY" }, { - "codePostal": "33330", - "codeCommune": "33459", - "libelleAcheminement": "ST PEY D ARMENS", - "nomCommune": "ST PEY D ARMENS" + "codePostal": "20243", + "codeCommune": "2B135", + "libelleAcheminement": "ISOLACCIO DI FIUMORBO", + "nomCommune": "ISOLACCIO DI FIUMORBO" }, { - "codePostal": "59495", - "codeCommune": "59340", - "libelleAcheminement": "LEFFRINCKOUCKE", - "nomCommune": "LEFFRINCKOUCKE" + "codePostal": "31110", + "codeCommune": "31042", + "libelleAcheminement": "BAGNERES DE LUCHON", + "nomCommune": "BAGNERES DE LUCHON" }, { - "codePostal": "05120", - "codeCommune": "05006", - "libelleAcheminement": "L ARGENTIERE LA BESSEE", - "nomCommune": "L ARGENTIERE LA BESSEE" + "codePostal": "42310", + "codeCommune": "42203", + "libelleAcheminement": "ST BONNET DES QUARTS", + "nomCommune": "ST BONNET DES QUARTS" }, { - "codePostal": "66500", - "codeCommune": "66051", - "libelleAcheminement": "CLARA VILLERACH", - "nomCommune": "CLARA VILLERACH" + "codePostal": "42210", + "codeCommune": "42013", + "libelleAcheminement": "BELLEGARDE EN FOREZ", + "nomCommune": "BELLEGARDE EN FOREZ" }, { - "codePostal": "33490", - "codeCommune": "33463", - "libelleAcheminement": "ST PIERRE D AURILLAC", - "nomCommune": "ST PIERRE D AURILLAC" + "codePostal": "20230", + "codeCommune": "2B143", + "libelleAcheminement": "LINGUIZZETTA", + "nomCommune": "LINGUIZZETTA" }, { - "codePostal": "59287", - "codeCommune": "59345", - "libelleAcheminement": "LEWARDE", - "nomCommune": "LEWARDE" + "codePostal": "31510", + "codeCommune": "31045", + "libelleAcheminement": "BARBAZAN", + "nomCommune": "BARBAZAN" }, { - "codePostal": "05800", - "codeCommune": "05009", - "libelleAcheminement": "ASPRES LES CORPS", - "nomCommune": "ASPRES LES CORPS" + "codePostal": "42380", + "codeCommune": "42204", + "libelleAcheminement": "ST BONNET LE CHATEAU", + "nomCommune": "ST BONNET LE CHATEAU" }, { - "codePostal": "66500", - "codeCommune": "66052", - "libelleAcheminement": "CODALET", - "nomCommune": "CODALET" + "codePostal": "42670", + "codeCommune": "42014", + "libelleAcheminement": "BELLEROCHE", + "nomCommune": "BELLEROCHE" }, { - "codePostal": "33760", - "codeCommune": "33464", - "libelleAcheminement": "ST PIERRE DE BAT", - "nomCommune": "ST PIERRE DE BAT" + "codePostal": "20290", + "codeCommune": "2B148", + "libelleAcheminement": "LUCCIANA", + "nomCommune": "LUCCIANA" }, { - "codePostal": "59260", - "codeCommune": "59346", - "libelleAcheminement": "LEZENNES", - "nomCommune": "LEZENNES" + "codePostal": "31450", + "codeCommune": "31048", + "libelleAcheminement": "BAZIEGE", + "nomCommune": "BAZIEGE" }, { - "codePostal": "05140", - "codeCommune": "05010", - "libelleAcheminement": "ASPRES SUR BUECH", - "nomCommune": "ASPRES SUR BUECH" + "codePostal": "42400", + "codeCommune": "42207", + "libelleAcheminement": "ST CHAMOND", + "nomCommune": "ST CHAMOND" }, { - "codePostal": "66200", - "codeCommune": "66059", - "libelleAcheminement": "CORNEILLA DEL VERCOL", - "nomCommune": "CORNEILLA DEL VERCOL" + "codePostal": "42220", + "codeCommune": "42023", + "libelleAcheminement": "BOURG ARGENTAL", + "nomCommune": "BOURG ARGENTAL" }, { - "codePostal": "33750", - "codeCommune": "33466", - "libelleAcheminement": "ST QUENTIN DE BARON", - "nomCommune": "ST QUENTIN DE BARON" + "codePostal": "20228", + "codeCommune": "2B152", + "libelleAcheminement": "LURI", + "nomCommune": "LURI" }, { - "codePostal": "59260", - "codeCommune": "59350", - "libelleAcheminement": "LILLE", - "nomCommune": "LILLE" + "codePostal": "31380", + "codeCommune": "31049", + "libelleAcheminement": "BAZUS", + "nomCommune": "BAZUS" }, { - "codePostal": "05230", - "codeCommune": "05011", - "libelleAcheminement": "AVANCON", - "nomCommune": "AVANCON" + "codePostal": "42320", + "codeCommune": "42208", + "libelleAcheminement": "ST CHRISTO EN JAREZ", + "nomCommune": "ST CHRISTO EN JAREZ" }, { - "codePostal": "66260", - "codeCommune": "66061", - "libelleAcheminement": "COUSTOUGES", - "nomCommune": "COUSTOUGES" + "codePostal": "42220", + "codeCommune": "42028", + "libelleAcheminement": "BURDIGNES", + "nomCommune": "BURDIGNES" }, { - "codePostal": "33350", - "codeCommune": "33468", - "libelleAcheminement": "STE RADEGONDE", - "nomCommune": "STE RADEGONDE" + "codePostal": "20228", + "codeCommune": "2B152", + "libelleAcheminement": "LURI", + "nomCommune": "LURI" }, { - "codePostal": "59777", - "codeCommune": "59350", - "libelleAcheminement": "LILLE", - "nomCommune": "LILLE" + "codePostal": "31450", + "codeCommune": "31057", + "libelleAcheminement": "BELBERAUD", + "nomCommune": "BELBERAUD" }, { - "codePostal": "05200", - "codeCommune": "05012", - "libelleAcheminement": "BARATIER", - "nomCommune": "BARATIER" + "codePostal": "42160", + "codeCommune": "42211", + "libelleAcheminement": "ST CYPRIEN", + "nomCommune": "ST CYPRIEN" }, { - "codePostal": "66320", - "codeCommune": "66070", - "libelleAcheminement": "ESPIRA DE CONFLENT", - "nomCommune": "ESPIRA DE CONFLENT" + "codePostal": "42600", + "codeCommune": "42037", + "libelleAcheminement": "CHALAIN D UZORE", + "nomCommune": "CHALAIN D UZORE" }, { - "codePostal": "33250", - "codeCommune": "33471", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "20214", + "codeCommune": "2B165", + "libelleAcheminement": "MONCALE", + "nomCommune": "MONCALE" }, { - "codePostal": "59570", - "codeCommune": "59357", - "libelleAcheminement": "LA LONGUEVILLE", - "nomCommune": "LA LONGUEVILLE" + "codePostal": "31110", + "codeCommune": "31064", + "libelleAcheminement": "BENQUE DESSOUS ET DESSUS", + "nomCommune": "BENQUE DESSOUS ET DESSUS" }, { - "codePostal": "05230", - "codeCommune": "05017", - "libelleAcheminement": "LA BATIE NEUVE", - "nomCommune": "LA BATIE NEUVE" + "codePostal": "42140", + "codeCommune": "42216", + "libelleAcheminement": "ST DENIS SUR COISE", + "nomCommune": "ST DENIS SUR COISE" }, { - "codePostal": "66800", - "codeCommune": "66072", - "libelleAcheminement": "ESTAVAR", - "nomCommune": "ESTAVAR" + "codePostal": "42140", + "codeCommune": "42055", + "libelleAcheminement": "CHATELUS", + "nomCommune": "CHATELUS" }, { - "codePostal": "33390", - "codeCommune": "33477", - "libelleAcheminement": "ST SEURIN DE CURSAC", - "nomCommune": "ST SEURIN DE CURSAC" + "codePostal": "20238", + "codeCommune": "2B170", + "libelleAcheminement": "MORSIGLIA", + "nomCommune": "MORSIGLIA" }, { - "codePostal": "59830", - "codeCommune": "59364", - "libelleAcheminement": "LOUVIL", - "nomCommune": "LOUVIL" + "codePostal": "31340", + "codeCommune": "31073", + "libelleAcheminement": "BONDIGOUX", + "nomCommune": "BONDIGOUX" }, { - "codePostal": "05000", - "codeCommune": "05018", - "libelleAcheminement": "LA BATIE VIEILLE", - "nomCommune": "LA BATIE VIEILLE" + "codePostal": "42800", + "codeCommune": "42225", + "libelleAcheminement": "GENILAC", + "nomCommune": "GENILAC" }, { - "codePostal": "66800", - "codeCommune": "66075", - "libelleAcheminement": "EYNE", - "nomCommune": "EYNE" + "codePostal": "42114", + "codeCommune": "42063", + "libelleAcheminement": "CHIRASSIMONT", + "nomCommune": "CHIRASSIMONT" }, { - "codePostal": "33540", - "codeCommune": "33482", - "libelleAcheminement": "ST SULPICE DE POMMIERS", - "nomCommune": "ST SULPICE DE POMMIERS" + "codePostal": "20239", + "codeCommune": "2B172", + "libelleAcheminement": "MURATO", + "nomCommune": "MURATO" }, { - "codePostal": "59134", - "codeCommune": "59371", - "libelleAcheminement": "LE MAISNIL", - "nomCommune": "LE MAISNIL" + "codePostal": "31590", + "codeCommune": "31074", + "libelleAcheminement": "BONREPOS RIQUET", + "nomCommune": "BONREPOS RIQUET" }, { - "codePostal": "05700", - "codeCommune": "05021", - "libelleAcheminement": "LE BERSAC", - "nomCommune": "LE BERSAC" + "codePostal": "42800", + "codeCommune": "42225", + "libelleAcheminement": "GENILAC", + "nomCommune": "GENILAC" }, { - "codePostal": "66320", - "codeCommune": "66089", - "libelleAcheminement": "JOCH", - "nomCommune": "JOCH" + "codePostal": "42410", + "codeCommune": "42064", + "libelleAcheminement": "CHUYER", + "nomCommune": "CHUYER" }, { - "codePostal": "33710", - "codeCommune": "33486", - "libelleAcheminement": "ST TROJAN", - "nomCommune": "ST TROJAN" + "codePostal": "20225", + "codeCommune": "2B173", + "libelleAcheminement": "MURO", + "nomCommune": "MURO" }, { - "codePostal": "59127", - "codeCommune": "59372", - "libelleAcheminement": "MALINCOURT", - "nomCommune": "MALINCOURT" + "codePostal": "31350", + "codeCommune": "31080", + "libelleAcheminement": "BOULOGNE SUR GESSE", + "nomCommune": "BOULOGNE SUR GESSE" }, { - "codePostal": "05600", - "codeCommune": "05026", - "libelleAcheminement": "CEILLAC", - "nomCommune": "CEILLAC" + "codePostal": "42510", + "codeCommune": "42226", + "libelleAcheminement": "ST GEORGES DE BAROILLE", + "nomCommune": "ST GEORGES DE BAROILLE" }, { - "codePostal": "66230", - "codeCommune": "66091", - "libelleAcheminement": "LAMANERE", - "nomCommune": "LAMANERE" + "codePostal": "42110", + "codeCommune": "42066", + "libelleAcheminement": "CLEPPE", + "nomCommune": "CLEPPE" }, { - "codePostal": "33440", - "codeCommune": "33487", - "libelleAcheminement": "ST VINCENT DE PAUL", - "nomCommune": "ST VINCENT DE PAUL" + "codePostal": "20232", + "codeCommune": "2B188", + "libelleAcheminement": "OLMETA DI TUDA", + "nomCommune": "OLMETA DI TUDA" }, { - "codePostal": "59440", - "codeCommune": "59374", - "libelleAcheminement": "MARBAIX", - "nomCommune": "MARBAIX" + "codePostal": "31440", + "codeCommune": "31085", + "libelleAcheminement": "BOUTX", + "nomCommune": "BOUTX" }, { - "codePostal": "05260", - "codeCommune": "05029", - "libelleAcheminement": "CHABOTTES", - "nomCommune": "CHABOTTES" + "codePostal": "42560", + "codeCommune": "42240", + "libelleAcheminement": "ST JEAN SOLEYMIEUX", + "nomCommune": "ST JEAN SOLEYMIEUX" }, { - "codePostal": "66200", - "codeCommune": "66094", - "libelleAcheminement": "LATOUR BAS ELNE", - "nomCommune": "LATOUR BAS ELNE" + "codePostal": "42220", + "codeCommune": "42067", + "libelleAcheminement": "COLOMBIER", + "nomCommune": "COLOMBIER" }, { - "codePostal": "33920", - "codeCommune": "33489", - "libelleAcheminement": "ST VIVIEN DE BLAYE", - "nomCommune": "ST VIVIEN DE BLAYE" + "codePostal": "20270", + "codeCommune": "2B201", + "libelleAcheminement": "PANCHERACCIA", + "nomCommune": "PANCHERACCIA" }, { - "codePostal": "59252", - "codeCommune": "59379", - "libelleAcheminement": "MARCQ EN OSTREVENT", - "nomCommune": "MARCQ EN OSTREVENT" + "codePostal": "31420", + "codeCommune": "31086", + "libelleAcheminement": "BOUZIN", + "nomCommune": "BOUZIN" }, { - "codePostal": "05000", - "codeCommune": "05037", - "libelleAcheminement": "CHATEAUVIEUX", - "nomCommune": "CHATEAUVIEUX" + "codePostal": "42590", + "codeCommune": "42241", + "libelleAcheminement": "ST JODARD", + "nomCommune": "ST JODARD" }, { - "codePostal": "66220", - "codeCommune": "66097", - "libelleAcheminement": "LESQUERDE", - "nomCommune": "LESQUERDE" + "codePostal": "42120", + "codeCommune": "42069", + "libelleAcheminement": "COMMELLE VERNAY", + "nomCommune": "COMMELLE VERNAY" }, { - "codePostal": "33340", - "codeCommune": "33493", - "libelleAcheminement": "ST YZANS DE MEDOC", - "nomCommune": "ST YZANS DE MEDOC" + "codePostal": "20253", + "codeCommune": "2B205", + "libelleAcheminement": "PATRIMONIO", + "nomCommune": "PATRIMONIO" }, { - "codePostal": "59360", - "codeCommune": "59395", - "libelleAcheminement": "MAZINGHIEN", - "nomCommune": "MAZINGHIEN" + "codePostal": "31490", + "codeCommune": "31088", + "libelleAcheminement": "BRAX", + "nomCommune": "BRAX" }, { - "codePostal": "05350", - "codeCommune": "05038", - "libelleAcheminement": "CHATEAU VILLE VIEILLE", - "nomCommune": "CHATEAU VILLE VIEILLE" + "codePostal": "42111", + "codeCommune": "42245", + "libelleAcheminement": "VETRE SUR ANZON", + "nomCommune": "VETRE SUR ANZON" }, { - "codePostal": "66210", - "codeCommune": "66098", - "libelleAcheminement": "LA LLAGONNE", - "nomCommune": "LA LLAGONNE" + "codePostal": "42210", + "codeCommune": "42075", + "libelleAcheminement": "CRAINTILLEUX", + "nomCommune": "CRAINTILLEUX" }, { - "codePostal": "33670", - "codeCommune": "33505", - "libelleAcheminement": "LA SAUVE", - "nomCommune": "LA SAUVE" + "codePostal": "20229", + "codeCommune": "2B219", + "libelleAcheminement": "PIEDICROCE", + "nomCommune": "PIEDICROCE" }, { - "codePostal": "59660", - "codeCommune": "59400", - "libelleAcheminement": "MERVILLE", - "nomCommune": "MERVILLE" + "codePostal": "31460", + "codeCommune": "31097", + "libelleAcheminement": "LE CABANIAL", + "nomCommune": "LE CABANIAL" }, { - "codePostal": "05110", - "codeCommune": "05049", - "libelleAcheminement": "ESPARRON", - "nomCommune": "ESPARRON" + "codePostal": "42680", + "codeCommune": "42256", + "libelleAcheminement": "ST MARCELLIN EN FOREZ", + "nomCommune": "ST MARCELLIN EN FOREZ" }, { - "codePostal": "66500", - "codeCommune": "66104", - "libelleAcheminement": "LOS MASOS", - "nomCommune": "LOS MASOS" + "codePostal": "42460", + "codeCommune": "42079", + "libelleAcheminement": "CUINZIER", + "nomCommune": "CUINZIER" }, { - "codePostal": "33690", - "codeCommune": "33511", - "libelleAcheminement": "SENDETS", - "nomCommune": "SENDETS" + "codePostal": "20251", + "codeCommune": "2B226", + "libelleAcheminement": "PIETRASERENA", + "nomCommune": "PIETRASERENA" }, { - "codePostal": "59143", - "codeCommune": "59402", - "libelleAcheminement": "MILLAM", - "nomCommune": "MILLAM" + "codePostal": "31460", + "codeCommune": "31102", + "libelleAcheminement": "CAMBIAC", + "nomCommune": "CAMBIAC" }, { - "codePostal": "05130", - "codeCommune": "05057", - "libelleAcheminement": "FOUILLOUSE", - "nomCommune": "FOUILLOUSE" + "codePostal": "42190", + "codeCommune": "42273", + "libelleAcheminement": "ST PIERRE LA NOAILLE", + "nomCommune": "ST PIERRE LA NOAILLE" }, { - "codePostal": "66210", - "codeCommune": "66105", - "libelleAcheminement": "MATEMALE", - "nomCommune": "MATEMALE" + "codePostal": "42110", + "codeCommune": "42094", + "libelleAcheminement": "FEURS", + "nomCommune": "FEURS" }, { - "codePostal": "33400", - "codeCommune": "33522", - "libelleAcheminement": "TALENCE", - "nomCommune": "TALENCE" + "codePostal": "20240", + "codeCommune": "2B236", + "libelleAcheminement": "POGGIO DI NAZZA", + "nomCommune": "POGGIO DI NAZZA" }, { - "codePostal": "59178", - "codeCommune": "59403", - "libelleAcheminement": "MILLONFOSSE", - "nomCommune": "MILLONFOSSE" + "codePostal": "31430", + "codeCommune": "31119", + "libelleAcheminement": "CASTELNAU PICAMPEAU", + "nomCommune": "CASTELNAU PICAMPEAU" }, { - "codePostal": "05130", - "codeCommune": "05068", - "libelleAcheminement": "JARJAYES", - "nomCommune": "JARJAYES" + "codePostal": "42440", + "codeCommune": "42295", + "libelleAcheminement": "LES SALLES", + "nomCommune": "LES SALLES" }, { - "codePostal": "66480", - "codeCommune": "66106", - "libelleAcheminement": "MAUREILLAS LAS ILLAS", - "nomCommune": "MAUREILLAS LAS ILLAS" + "codePostal": "42480", + "codeCommune": "42097", + "libelleAcheminement": "LA FOUILLOUSE", + "nomCommune": "LA FOUILLOUSE" }, { - "codePostal": "33710", - "codeCommune": "33525", - "libelleAcheminement": "TAURIAC", - "nomCommune": "TAURIAC" + "codePostal": "20250", + "codeCommune": "2B238", + "libelleAcheminement": "POGGIO DI VENACO", + "nomCommune": "POGGIO DI VENACO" }, { - "codePostal": "59620", - "codeCommune": "59406", - "libelleAcheminement": "MONCEAU ST WAAST", - "nomCommune": "MONCEAU ST WAAST" + "codePostal": "31360", + "codeCommune": "31124", + "libelleAcheminement": "CASTILLON DE ST MARTORY", + "nomCommune": "CASTILLON DE ST MARTORY" }, { - "codePostal": "05110", - "codeCommune": "05071", - "libelleAcheminement": "LARDIER ET VALENCA", - "nomCommune": "LARDIER ET VALENCA" + "codePostal": "42450", + "codeCommune": "42304", + "libelleAcheminement": "SURY LE COMTAL", + "nomCommune": "SURY LE COMTAL" }, { - "codePostal": "66480", - "codeCommune": "66106", - "libelleAcheminement": "MAUREILLAS LAS ILLAS", - "nomCommune": "MAUREILLAS LAS ILLAS" + "codePostal": "42220", + "codeCommune": "42101", + "libelleAcheminement": "GRAIX", + "nomCommune": "GRAIX" }, { - "codePostal": "33470", - "codeCommune": "33527", - "libelleAcheminement": "LE TEICH", - "nomCommune": "LE TEICH" + "codePostal": "20218", + "codeCommune": "2B244", + "libelleAcheminement": "POPOLASCA", + "nomCommune": "POPOLASCA" }, { - "codePostal": "59370", - "codeCommune": "59410", - "libelleAcheminement": "MONS EN BAROEUL", - "nomCommune": "MONS EN BAROEUL" + "codePostal": "31110", + "codeCommune": "31127", + "libelleAcheminement": "CAUBOUS", + "nomCommune": "CAUBOUS" }, { - "codePostal": "05220", - "codeCommune": "05079", - "libelleAcheminement": "LE MONETIER LES BAINS", - "nomCommune": "LE MONETIER LES BAINS" + "codePostal": "42740", + "codeCommune": "42308", + "libelleAcheminement": "LA TERRASSE SUR DORLAY", + "nomCommune": "LA TERRASSE SUR DORLAY" }, { - "codePostal": "66500", - "codeCommune": "66109", - "libelleAcheminement": "MOLITG LES BAINS", - "nomCommune": "MOLITG LES BAINS" + "codePostal": "42560", + "codeCommune": "42107", + "libelleAcheminement": "GUMIERES", + "nomCommune": "GUMIERES" }, { - "codePostal": "33260", - "codeCommune": "33529", - "libelleAcheminement": "LA TESTE DE BUCH", - "nomCommune": "LA TESTE DE BUCH" + "codePostal": "20243", + "codeCommune": "2B251", + "libelleAcheminement": "PRUNELLI DI FIUMORBO", + "nomCommune": "PRUNELLI DI FIUMORBO" }, { - "codePostal": "59190", - "codeCommune": "59416", - "libelleAcheminement": "MORBECQUE", - "nomCommune": "MORBECQUE" + "codePostal": "31110", + "codeCommune": "31133", + "libelleAcheminement": "CAZEAUX DE LARBOUST", + "nomCommune": "CAZEAUX DE LARBOUST" }, { - "codePostal": "05700", - "codeCommune": "05094", - "libelleAcheminement": "NOSSAGE ET BENEVENT", - "nomCommune": "NOSSAGE ET BENEVENT" + "codePostal": "42210", + "codeCommune": "42315", + "libelleAcheminement": "UNIAS", + "nomCommune": "UNIAS" }, { - "codePostal": "66150", - "codeCommune": "66116", - "libelleAcheminement": "MONTFERRER", - "nomCommune": "MONTFERRER" + "codePostal": "42130", + "codeCommune": "42109", + "libelleAcheminement": "L HOPITAL SOUS ROCHEFORT", + "nomCommune": "L HOPITAL SOUS ROCHEFORT" }, { - "codePostal": "33710", - "codeCommune": "33530", - "libelleAcheminement": "TEUILLAC", - "nomCommune": "TEUILLAC" + "codePostal": "20243", + "codeCommune": "2B251", + "libelleAcheminement": "PRUNELLI DI FIUMORBO", + "nomCommune": "PRUNELLI DI FIUMORBO" }, { - "codePostal": "59330", - "codeCommune": "59424", - "libelleAcheminement": "NEUF MESNIL", - "nomCommune": "NEUF MESNIL" + "codePostal": "31220", + "codeCommune": "31135", + "libelleAcheminement": "CAZERES", + "nomCommune": "CAZERES" }, { - "codePostal": "05170", - "codeCommune": "05096", - "libelleAcheminement": "ORCIERES", - "nomCommune": "ORCIERES" + "codePostal": "42390", + "codeCommune": "42330", + "libelleAcheminement": "VILLARS", + "nomCommune": "VILLARS" }, { - "codePostal": "66720", - "codeCommune": "66118", - "libelleAcheminement": "MONTNER", - "nomCommune": "MONTNER" + "codePostal": "42460", + "codeCommune": "42112", + "libelleAcheminement": "JARNOSSE", + "nomCommune": "JARNOSSE" }, { - "codePostal": "33370", - "codeCommune": "33535", - "libelleAcheminement": "TRESSES", - "nomCommune": "TRESSES" + "codePostal": "20229", + "codeCommune": "2B256", + "libelleAcheminement": "RAPAGGIO", + "nomCommune": "RAPAGGIO" }, { - "codePostal": "59239", - "codeCommune": "59427", - "libelleAcheminement": "LA NEUVILLE", - "nomCommune": "LA NEUVILLE" + "codePostal": "31290", + "codeCommune": "31137", + "libelleAcheminement": "CESSALES", + "nomCommune": "CESSALES" }, { - "codePostal": "05700", - "codeCommune": "05097", - "libelleAcheminement": "ORPIERRE", - "nomCommune": "ORPIERRE" + "codePostal": "42780", + "codeCommune": "42334", + "libelleAcheminement": "VIOLAY", + "nomCommune": "VIOLAY" }, { - "codePostal": "66500", - "codeCommune": "66119", - "libelleAcheminement": "MOSSET", - "nomCommune": "MOSSET" + "codePostal": "42130", + "codeCommune": "42119", + "libelleAcheminement": "LEIGNEUX", + "nomCommune": "LEIGNEUX" }, { - "codePostal": "33340", - "codeCommune": "33538", - "libelleAcheminement": "VALEYRAC", - "nomCommune": "VALEYRAC" + "codePostal": "20290", + "codeCommune": "2B274", + "libelleAcheminement": "SCOLCA", + "nomCommune": "SCOLCA" }, { - "codePostal": "59680", - "codeCommune": "59442", - "libelleAcheminement": "OBRECHIES", - "nomCommune": "OBRECHIES" + "codePostal": "31440", + "codeCommune": "31144", + "libelleAcheminement": "CIERP GAUD", + "nomCommune": "CIERP GAUD" }, { - "codePostal": "05340", - "codeCommune": "05101", - "libelleAcheminement": "VALLOUISE PELVOUX", - "nomCommune": "VALLOUISE PELVOUX" + "codePostal": "43000", + "codeCommune": "43002", + "libelleAcheminement": "AIGUILHE", + "nomCommune": "AIGUILHE" }, { - "codePostal": "66400", - "codeCommune": "66126", - "libelleAcheminement": "OMS", - "nomCommune": "OMS" + "codePostal": "42114", + "codeCommune": "42128", + "libelleAcheminement": "MACHEZAL", + "nomCommune": "MACHEZAL" }, { - "codePostal": "33240", - "codeCommune": "33542", - "libelleAcheminement": "VERAC", - "nomCommune": "VERAC" + "codePostal": "20243", + "codeCommune": "2B277", + "libelleAcheminement": "SERRA DI FIUMORBO", + "nomCommune": "SERRA DI FIUMORBO" }, { - "codePostal": "59195", - "codeCommune": "59446", - "libelleAcheminement": "OISY", - "nomCommune": "OISY" + "codePostal": "31770", + "codeCommune": "31149", + "libelleAcheminement": "COLOMIERS", + "nomCommune": "COLOMIERS" }, { - "codePostal": "05340", - "codeCommune": "05101", - "libelleAcheminement": "VALLOUISE PELVOUX", - "nomCommune": "VALLOUISE PELVOUX" + "codePostal": "43380", + "codeCommune": "43011", + "libelleAcheminement": "AUBAZAT", + "nomCommune": "AUBAZAT" }, { - "codePostal": "66600", - "codeCommune": "66127", - "libelleAcheminement": "OPOUL PERILLOS", - "nomCommune": "OPOUL PERILLOS" + "codePostal": "42520", + "codeCommune": "42129", + "libelleAcheminement": "MACLAS", + "nomCommune": "MACLAS" }, { - "codePostal": "33141", - "codeCommune": "33548", - "libelleAcheminement": "VILLEGOUGE", - "nomCommune": "VILLEGOUGE" + "codePostal": "20213", + "codeCommune": "2B297", + "libelleAcheminement": "SAN DAMIANO", + "nomCommune": "SAN DAMIANO" }, { - "codePostal": "59264", - "codeCommune": "59447", - "libelleAcheminement": "ONNAING", - "nomCommune": "ONNAING" + "codePostal": "31230", + "codeCommune": "31152", + "libelleAcheminement": "COUEILLES", + "nomCommune": "COUEILLES" }, { - "codePostal": "05300", - "codeCommune": "05103", - "libelleAcheminement": "LE POET", - "nomCommune": "LE POET" + "codePostal": "43300", + "codeCommune": "43013", + "libelleAcheminement": "VISSAC AUTEYRAC", + "nomCommune": "VISSAC AUTEYRAC" }, { - "codePostal": "66360", - "codeCommune": "66128", - "libelleAcheminement": "OREILLA", - "nomCommune": "OREILLA" + "codePostal": "42600", + "codeCommune": "42130", + "libelleAcheminement": "MAGNEUX HAUTE RIVE", + "nomCommune": "MAGNEUX HAUTE RIVE" }, { - "codePostal": "33140", - "codeCommune": "33550", - "libelleAcheminement": "VILLENAVE D ORNON", - "nomCommune": "VILLENAVE D ORNON" + "codePostal": "20230", + "codeCommune": "2B313", + "libelleAcheminement": "SAN NICOLAO", + "nomCommune": "SAN NICOLAO" }, { - "codePostal": "59530", - "codeCommune": "59451", - "libelleAcheminement": "ORSINVAL", - "nomCommune": "ORSINVAL" + "codePostal": "31220", + "codeCommune": "31153", + "libelleAcheminement": "COULADERE", + "nomCommune": "COULADERE" }, { - "codePostal": "05100", - "codeCommune": "05107", - "libelleAcheminement": "PUY ST ANDRE", - "nomCommune": "PUY ST ANDRE" + "codePostal": "43450", + "codeCommune": "43014", + "libelleAcheminement": "AUTRAC", + "nomCommune": "AUTRAC" }, { - "codePostal": "66560", - "codeCommune": "66129", - "libelleAcheminement": "ORTAFFA", - "nomCommune": "ORTAFFA" + "codePostal": "42110", + "codeCommune": "42143", + "libelleAcheminement": "MIZERIEUX", + "nomCommune": "MIZERIEUX" }, { - "codePostal": "33240", - "codeCommune": "33553", - "libelleAcheminement": "VIRSAC", - "nomCommune": "VIRSAC" + "codePostal": "20234", + "codeCommune": "2B321", + "libelleAcheminement": "TARRANO", + "nomCommune": "TARRANO" }, { - "codePostal": "59840", - "codeCommune": "59457", - "libelleAcheminement": "PERENCHIES", - "nomCommune": "PERENCHIES" + "codePostal": "31700", + "codeCommune": "31160", + "libelleAcheminement": "DAUX", + "nomCommune": "DAUX" }, { - "codePostal": "05200", - "codeCommune": "05108", - "libelleAcheminement": "PUY ST EUSEBE", - "nomCommune": "PUY ST EUSEBE" + "codePostal": "43390", + "codeCommune": "43017", + "libelleAcheminement": "AZERAT", + "nomCommune": "AZERAT" }, { - "codePostal": "66340", - "codeCommune": "66132", - "libelleAcheminement": "PALAU DE CERDAGNE", - "nomCommune": "PALAU DE CERDAGNE" + "codePostal": "42440", + "codeCommune": "42159", + "libelleAcheminement": "NOIRETABLE", + "nomCommune": "NOIRETABLE" }, { - "codePostal": "33380", - "codeCommune": "33555", - "libelleAcheminement": "MARCHEPRIME", - "nomCommune": "MARCHEPRIME" + "codePostal": "20234", + "codeCommune": "2B334", + "libelleAcheminement": "VALLE D ALESANI", + "nomCommune": "VALLE D ALESANI" }, { - "codePostal": "59273", - "codeCommune": "59458", - "libelleAcheminement": "PERONNE EN MELANTOIS", - "nomCommune": "PERONNE EN MELANTOIS" + "codePostal": "31230", + "codeCommune": "31178", + "libelleAcheminement": "FABAS", + "nomCommune": "FABAS" }, { - "codePostal": "05290", - "codeCommune": "05110", - "libelleAcheminement": "PUY ST VINCENT", - "nomCommune": "PUY ST VINCENT" + "codePostal": "43350", + "codeCommune": "43026", + "libelleAcheminement": "BELLEVUE LA MONTAGNE", + "nomCommune": "BELLEVUE LA MONTAGNE" }, { - "codePostal": "66380", - "codeCommune": "66141", - "libelleAcheminement": "PIA", - "nomCommune": "PIA" + "codePostal": "42155", + "codeCommune": "42162", + "libelleAcheminement": "OUCHES", + "nomCommune": "OUCHES" }, { - "codePostal": "34800", - "codeCommune": "34013", - "libelleAcheminement": "ASPIRAN", - "nomCommune": "ASPIRAN" + "codePostal": "20235", + "codeCommune": "2B337", + "libelleAcheminement": "VALLE DI ROSTINO", + "nomCommune": "VALLE DI ROSTINO" }, { - "codePostal": "59244", - "codeCommune": "59461", - "libelleAcheminement": "PETIT FAYT", - "nomCommune": "PETIT FAYT" + "codePostal": "31470", + "codeCommune": "31187", + "libelleAcheminement": "FONSORBES", + "nomCommune": "FONSORBES" }, { - "codePostal": "05150", - "codeCommune": "05117", - "libelleAcheminement": "RIBEYRET", - "nomCommune": "RIBEYRET" + "codePostal": "43350", + "codeCommune": "43030", + "libelleAcheminement": "BLANZAC", + "nomCommune": "BLANZAC" }, { - "codePostal": "66720", - "codeCommune": "66143", - "libelleAcheminement": "PLANEZES", - "nomCommune": "PLANEZES" + "codePostal": "42310", + "codeCommune": "42163", + "libelleAcheminement": "LA PACAUDIERE", + "nomCommune": "LA PACAUDIERE" }, { - "codePostal": "34230", - "codeCommune": "34016", - "libelleAcheminement": "AUMELAS", - "nomCommune": "AUMELAS" + "codePostal": "20229", + "codeCommune": "2B338", + "libelleAcheminement": "VALLE D OREZZA", + "nomCommune": "VALLE D OREZZA" }, { - "codePostal": "59133", - "codeCommune": "59462", - "libelleAcheminement": "PHALEMPIN", - "nomCommune": "PHALEMPIN" + "codePostal": "31430", + "codeCommune": "31193", + "libelleAcheminement": "LE FOUSSERET", + "nomCommune": "LE FOUSSERET" }, { - "codePostal": "05300", - "codeCommune": "05118", - "libelleAcheminement": "VAL BUECH MEOUGE", - "nomCommune": "VAL BUECH MEOUGE" + "codePostal": "43370", + "codeCommune": "43039", + "libelleAcheminement": "LE BRIGNON", + "nomCommune": "LE BRIGNON" }, { - "codePostal": "66760", - "codeCommune": "66146", - "libelleAcheminement": "PORTA", - "nomCommune": "PORTA" + "codePostal": "42590", + "codeCommune": "42171", + "libelleAcheminement": "PINAY", + "nomCommune": "PINAY" }, { - "codePostal": "34210", - "codeCommune": "34020", - "libelleAcheminement": "AZILLANET", - "nomCommune": "AZILLANET" + "codePostal": "20240", + "codeCommune": "2B342", + "libelleAcheminement": "VENTISERI", + "nomCommune": "VENTISERI" }, { - "codePostal": "59218", - "codeCommune": "59464", - "libelleAcheminement": "POIX DU NORD", - "nomCommune": "POIX DU NORD" + "codePostal": "31420", + "codeCommune": "31196", + "libelleAcheminement": "FRANCON", + "nomCommune": "FRANCON" }, { - "codePostal": "05600", - "codeCommune": "05119", - "libelleAcheminement": "RISOUL", - "nomCommune": "RISOUL" + "codePostal": "43510", + "codeCommune": "43042", + "libelleAcheminement": "CAYRES", + "nomCommune": "CAYRES" }, { - "codePostal": "66230", - "codeCommune": "66150", - "libelleAcheminement": "PRATS DE MOLLO LA PRESTE", - "nomCommune": "PRATS DE MOLLO LA PRESTE" + "codePostal": "42660", + "codeCommune": "42172", + "libelleAcheminement": "PLANFOY", + "nomCommune": "PLANFOY" }, { - "codePostal": "34600", - "codeCommune": "34028", - "libelleAcheminement": "BEDARIEUX", - "nomCommune": "BEDARIEUX" + "codePostal": "20242", + "codeCommune": "2B347", + "libelleAcheminement": "VEZZANI", + "nomCommune": "VEZZANI" }, { - "codePostal": "59360", - "codeCommune": "59465", - "libelleAcheminement": "POMMEREUIL", - "nomCommune": "POMMEREUIL" + "codePostal": "31510", + "codeCommune": "31207", + "libelleAcheminement": "GALIE", + "nomCommune": "GALIE" }, { - "codePostal": "05190", - "codeCommune": "05121", - "libelleAcheminement": "ROCHEBRUNE", - "nomCommune": "ROCHEBRUNE" + "codePostal": "43000", + "codeCommune": "43045", + "libelleAcheminement": "CEYSSAC", + "nomCommune": "CEYSSAC" }, { - "codePostal": "66130", - "codeCommune": "66153", - "libelleAcheminement": "PRUNET ET BELPUIG", - "nomCommune": "PRUNET ET BELPUIG" + "codePostal": "42110", + "codeCommune": "42175", + "libelleAcheminement": "POUILLY LES FEURS", + "nomCommune": "POUILLY LES FEURS" }, { - "codePostal": "34160", - "codeCommune": "34033", - "libelleAcheminement": "BOISSERON", - "nomCommune": "BOISSERON" + "codePostal": "20279", + "codeCommune": "2B352", + "libelleAcheminement": "VILLE DI PARASO", + "nomCommune": "VILLE DI PARASO" }, { - "codePostal": "59550", - "codeCommune": "59474", - "libelleAcheminement": "PRISCHES", - "nomCommune": "PRISCHES" + "codePostal": "31290", + "codeCommune": "31210", + "libelleAcheminement": "GARDOUCH", + "nomCommune": "GARDOUCH" }, { - "codePostal": "05150", - "codeCommune": "05126", - "libelleAcheminement": "ROSANS", - "nomCommune": "ROSANS" + "codePostal": "43160", + "codeCommune": "43048", + "libelleAcheminement": "LA CHAISE DIEU", + "nomCommune": "LA CHAISE DIEU" }, { - "codePostal": "66400", - "codeCommune": "66160", - "libelleAcheminement": "REYNES", - "nomCommune": "REYNES" + "codePostal": "42155", + "codeCommune": "42176", + "libelleAcheminement": "POUILLY LES NONAINS", + "nomCommune": "POUILLY LES NONAINS" }, { - "codePostal": "34800", - "codeCommune": "34041", - "libelleAcheminement": "BRIGNAC", - "nomCommune": "BRIGNAC" + "codePostal": "20219", + "codeCommune": "2B354", + "libelleAcheminement": "VIVARIO", + "nomCommune": "VIVARIO" }, { - "codePostal": "59890", - "codeCommune": "59482", - "libelleAcheminement": "QUESNOY SUR DEULE", - "nomCommune": "QUESNOY SUR DEULE" + "codePostal": "31110", + "codeCommune": "31213", + "libelleAcheminement": "GARIN", + "nomCommune": "GARIN" }, { - "codePostal": "05160", - "codeCommune": "05130", - "libelleAcheminement": "ST APOLLINAIRE", - "nomCommune": "ST APOLLINAIRE" + "codePostal": "43400", + "codeCommune": "43051", + "libelleAcheminement": "LE CHAMBON SUR LIGNON", + "nomCommune": "LE CHAMBON SUR LIGNON" }, { - "codePostal": "66320", - "codeCommune": "66162", - "libelleAcheminement": "RIGARDA", - "nomCommune": "RIGARDA" + "codePostal": "42630", + "codeCommune": "42178", + "libelleAcheminement": "PRADINES", + "nomCommune": "PRADINES" }, { - "codePostal": "34160", - "codeCommune": "34048", - "libelleAcheminement": "CAMPAGNE", - "nomCommune": "CAMPAGNE" + "codePostal": "20290", + "codeCommune": "2B355", + "libelleAcheminement": "VOLPAJOLA", + "nomCommune": "VOLPAJOLA" }, { - "codePostal": "59920", - "codeCommune": "59484", - "libelleAcheminement": "QUIEVRECHAIN", - "nomCommune": "QUIEVRECHAIN" + "codePostal": "31350", + "codeCommune": "31218", + "libelleAcheminement": "GENSAC DE BOULOGNE", + "nomCommune": "GENSAC DE BOULOGNE" }, { - "codePostal": "05250", - "codeCommune": "05139", - "libelleAcheminement": "LE DEVOLUY", - "nomCommune": "LE DEVOLUY" + "codePostal": "43100", + "codeCommune": "43055", + "libelleAcheminement": "CHANIAT", + "nomCommune": "CHANIAT" }, { - "codePostal": "66170", - "codeCommune": "66174", - "libelleAcheminement": "ST FELIU D AVALL", - "nomCommune": "ST FELIU D AVALL" + "codePostal": "42230", + "codeCommune": "42189", + "libelleAcheminement": "ROCHE LA MOLIERE", + "nomCommune": "ROCHE LA MOLIERE" }, { - "codePostal": "34420", - "codeCommune": "34073", - "libelleAcheminement": "CERS", - "nomCommune": "CERS" + "codePostal": "20243", + "codeCommune": "2B365", + "libelleAcheminement": "SAN GAVINO DI FIUMORBO", + "nomCommune": "SAN GAVINO DI FIUMORBO" }, { - "codePostal": "59920", - "codeCommune": "59484", - "libelleAcheminement": "QUIEVRECHAIN", - "nomCommune": "QUIEVRECHAIN" + "codePostal": "31380", + "codeCommune": "31228", + "libelleAcheminement": "GRAGNAGUE", + "nomCommune": "GRAGNAGUE" }, { - "codePostal": "05260", - "codeCommune": "05145", - "libelleAcheminement": "ST JEAN ST NICOLAS", - "nomCommune": "ST JEAN ST NICOLAS" + "codePostal": "43230", + "codeCommune": "43067", + "libelleAcheminement": "CHAVANIAC LAFAYETTE", + "nomCommune": "CHAVANIAC LAFAYETTE" }, { - "codePostal": "66600", - "codeCommune": "66190", - "libelleAcheminement": "SALSES LE CHATEAU", - "nomCommune": "SALSES LE CHATEAU" + "codePostal": "42520", + "codeCommune": "42191", + "libelleAcheminement": "ROISEY", + "nomCommune": "ROISEY" }, { - "codePostal": "34830", - "codeCommune": "34077", - "libelleAcheminement": "CLAPIERS", - "nomCommune": "CLAPIERS" + "codePostal": "30350", + "codeCommune": "30002", + "libelleAcheminement": "AIGREMONT", + "nomCommune": "AIGREMONT" }, { - "codePostal": "59214", - "codeCommune": "59485", - "libelleAcheminement": "QUIEVY", - "nomCommune": "QUIEVY" + "codePostal": "31160", + "codeCommune": "31236", + "libelleAcheminement": "HERRAN", + "nomCommune": "HERRAN" }, { - "codePostal": "05260", - "codeCommune": "05145", - "libelleAcheminement": "ST JEAN ST NICOLAS", - "nomCommune": "ST JEAN ST NICOLAS" + "codePostal": "43500", + "codeCommune": "43071", + "libelleAcheminement": "CHOMELIX", + "nomCommune": "CHOMELIX" }, { - "codePostal": "66230", - "codeCommune": "66206", - "libelleAcheminement": "LE TECH", - "nomCommune": "LE TECH" + "codePostal": "42380", + "codeCommune": "42192", + "libelleAcheminement": "ROZIER COTES D AUREC", + "nomCommune": "ROZIER COTES D AUREC" }, { - "codePostal": "34270", - "codeCommune": "34078", - "libelleAcheminement": "CLARET", - "nomCommune": "CLARET" + "codePostal": "30220", + "codeCommune": "30003", + "libelleAcheminement": "AIGUES MORTES", + "nomCommune": "AIGUES MORTES" }, { - "codePostal": "59194", - "codeCommune": "59486", - "libelleAcheminement": "RACHES", - "nomCommune": "RACHES" + "codePostal": "31210", + "codeCommune": "31238", + "libelleAcheminement": "HUOS", + "nomCommune": "HUOS" }, { - "codePostal": "05140", - "codeCommune": "05146", - "libelleAcheminement": "ST JULIEN EN BEAUCHENE", - "nomCommune": "ST JULIEN EN BEAUCHENE" + "codePostal": "43100", + "codeCommune": "43074", + "libelleAcheminement": "COHADE", + "nomCommune": "COHADE" }, { - "codePostal": "66500", - "codeCommune": "66219", - "libelleAcheminement": "URBANYA", - "nomCommune": "URBANYA" + "codePostal": "42810", + "codeCommune": "42193", + "libelleAcheminement": "ROZIER EN DONZY", + "nomCommune": "ROZIER EN DONZY" }, { - "codePostal": "34800", - "codeCommune": "34079", - "libelleAcheminement": "CLERMONT L HERAULT", - "nomCommune": "CLERMONT L HERAULT" + "codePostal": "30470", + "codeCommune": "30006", + "libelleAcheminement": "AIMARGUES", + "nomCommune": "AIMARGUES" }, { - "codePostal": "59530", - "codeCommune": "59494", - "libelleAcheminement": "RAUCOURT AU BOIS", - "nomCommune": "RAUCOURT AU BOIS" + "codePostal": "31230", + "codeCommune": "31239", + "libelleAcheminement": "L ISLE EN DODON", + "nomCommune": "L ISLE EN DODON" }, { - "codePostal": "05120", - "codeCommune": "05151", - "libelleAcheminement": "ST MARTIN DE QUEYRIERES", - "nomCommune": "ST MARTIN DE QUEYRIERES" + "codePostal": "43230", + "codeCommune": "43079", + "libelleAcheminement": "COUTEUGES", + "nomCommune": "COUTEUGES" }, { - "codePostal": "66500", - "codeCommune": "66223", - "libelleAcheminement": "VILLEFRANCHE DE CONFLENT", - "nomCommune": "VILLEFRANCHE DE CONFLENT" + "codePostal": "42310", + "codeCommune": "42194", + "libelleAcheminement": "SAIL LES BAINS", + "nomCommune": "SAIL LES BAINS" }, { - "codePostal": "34440", - "codeCommune": "34081", - "libelleAcheminement": "COLOMBIERS", - "nomCommune": "COLOMBIERS" + "codePostal": "30390", + "codeCommune": "30012", + "libelleAcheminement": "ARAMON", + "nomCommune": "ARAMON" }, { - "codePostal": "59980", - "codeCommune": "59498", - "libelleAcheminement": "REUMONT", - "nomCommune": "REUMONT" + "codePostal": "31160", + "codeCommune": "31241", + "libelleAcheminement": "IZAUT DE L HOTEL", + "nomCommune": "IZAUT DE L HOTEL" }, { - "codePostal": "05260", - "codeCommune": "05153", - "libelleAcheminement": "ST MICHEL DE CHAILLOL", - "nomCommune": "ST MICHEL DE CHAILLOL" + "codePostal": "43370", + "codeCommune": "43084", + "libelleAcheminement": "CUSSAC SUR LOIRE", + "nomCommune": "CUSSAC SUR LOIRE" }, { - "codePostal": "66180", - "codeCommune": "66227", - "libelleAcheminement": "VILLENEUVE DE LA RAHO", - "nomCommune": "VILLENEUVE DE LA RAHO" + "codePostal": "42510", + "codeCommune": "42196", + "libelleAcheminement": "STE AGATHE EN DONZY", + "nomCommune": "STE AGATHE EN DONZY" }, { - "codePostal": "34290", - "codeCommune": "34085", - "libelleAcheminement": "COULOBRES", - "nomCommune": "COULOBRES" + "codePostal": "30700", + "codeCommune": "30014", + "libelleAcheminement": "ARPAILLARGUES ET AUREILLAC", + "nomCommune": "ARPAILLARGUES ET AUREILLAC" }, { - "codePostal": "59286", - "codeCommune": "59509", - "libelleAcheminement": "ROOST WARENDIN", - "nomCommune": "ROOST WARENDIN" + "codePostal": "31870", + "codeCommune": "31263", + "libelleAcheminement": "LAGARDELLE SUR LEZE", + "nomCommune": "LAGARDELLE SUR LEZE" }, { - "codePostal": "05400", - "codeCommune": "05158", - "libelleAcheminement": "LE SAIX", - "nomCommune": "LE SAIX" + "codePostal": "43220", + "codeCommune": "43087", + "libelleAcheminement": "DUNIERES", + "nomCommune": "DUNIERES" }, { - "codePostal": "66600", - "codeCommune": "66231", - "libelleAcheminement": "VINGRAU", - "nomCommune": "VINGRAU" + "codePostal": "42370", + "codeCommune": "42199", + "libelleAcheminement": "ST ANDRE D APCHON", + "nomCommune": "ST ANDRE D APCHON" }, { - "codePostal": "34660", - "codeCommune": "34087", - "libelleAcheminement": "COURNONSEC", - "nomCommune": "COURNONSEC" + "codePostal": "30120", + "codeCommune": "30015", + "libelleAcheminement": "ARPHY", + "nomCommune": "ARPHY" }, { - "codePostal": "59131", - "codeCommune": "59514", - "libelleAcheminement": "ROUSIES", - "nomCommune": "ROUSIES" + "codePostal": "31310", + "codeCommune": "31267", + "libelleAcheminement": "LAHITERE", + "nomCommune": "LAHITERE" }, { - "codePostal": "05300", - "codeCommune": "05160", - "libelleAcheminement": "SALERANS", - "nomCommune": "SALERANS" + "codePostal": "43320", + "codeCommune": "43095", + "libelleAcheminement": "FIX ST GENEYS", + "nomCommune": "FIX ST GENEYS" }, { - "codePostal": "66220", - "codeCommune": "66232", - "libelleAcheminement": "VIRA", - "nomCommune": "VIRA" + "codePostal": "42210", + "codeCommune": "42200", + "libelleAcheminement": "ST ANDRE LE PUY", + "nomCommune": "ST ANDRE LE PUY" }, { - "codePostal": "34700", - "codeCommune": "34106", - "libelleAcheminement": "FOZIERES", - "nomCommune": "FOZIERES" + "codePostal": "30250", + "codeCommune": "30018", + "libelleAcheminement": "ASPERES", + "nomCommune": "ASPERES" }, { - "codePostal": "59281", - "codeCommune": "59520", - "libelleAcheminement": "RUMILLY EN CAMBRESIS", - "nomCommune": "RUMILLY EN CAMBRESIS" + "codePostal": "31800", + "codeCommune": "31268", + "libelleAcheminement": "LALOURET LAFFITEAU", + "nomCommune": "LALOURET LAFFITEAU" }, { - "codePostal": "05130", - "codeCommune": "05170", - "libelleAcheminement": "TALLARD", - "nomCommune": "TALLARD" + "codePostal": "43150", + "codeCommune": "43101", + "libelleAcheminement": "GOUDET", + "nomCommune": "GOUDET" }, { - "codePostal": "67270", - "codeCommune": "67005", - "libelleAcheminement": "ALTECKENDORF", - "nomCommune": "ALTECKENDORF" + "codePostal": "42100", + "codeCommune": "42218", + "libelleAcheminement": "ST ETIENNE", + "nomCommune": "ST ETIENNE" }, { - "codePostal": "34160", - "codeCommune": "34110", - "libelleAcheminement": "GALARGUES", - "nomCommune": "GALARGUES" + "codePostal": "30450", + "codeCommune": "30022", + "libelleAcheminement": "AUJAC", + "nomCommune": "AUJAC" }, { - "codePostal": "59440", - "codeCommune": "59529", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "31580", + "codeCommune": "31276", + "libelleAcheminement": "LARROQUE", + "nomCommune": "LARROQUE" }, { - "codePostal": "05190", - "codeCommune": "05171", - "libelleAcheminement": "THEUS", - "nomCommune": "THEUS" + "codePostal": "43200", + "codeCommune": "43102", + "libelleAcheminement": "GRAZAC", + "nomCommune": "GRAZAC" }, { - "codePostal": "67260", - "codeCommune": "67009", - "libelleAcheminement": "ALTWILLER", - "nomCommune": "ALTWILLER" + "codePostal": "42100", + "codeCommune": "42218", + "libelleAcheminement": "ST ETIENNE", + "nomCommune": "ST ETIENNE" }, { - "codePostal": "34150", - "codeCommune": "34114", - "libelleAcheminement": "GIGNAC", - "nomCommune": "GIGNAC" + "codePostal": "30120", + "codeCommune": "30024", + "libelleAcheminement": "AULAS", + "nomCommune": "AULAS" }, { - "codePostal": "59270", - "codeCommune": "59535", - "libelleAcheminement": "ST JANS CAPPEL", - "nomCommune": "ST JANS CAPPEL" + "codePostal": "31800", + "codeCommune": "31278", + "libelleAcheminement": "LATOUE", + "nomCommune": "LATOUE" }, { - "codePostal": "05300", - "codeCommune": "05173", - "libelleAcheminement": "UPAIX", - "nomCommune": "UPAIX" + "codePostal": "43230", + "codeCommune": "43107", + "libelleAcheminement": "JOSAT", + "nomCommune": "JOSAT" }, { - "codePostal": "67320", - "codeCommune": "67017", - "libelleAcheminement": "BAERENDORF", - "nomCommune": "BAERENDORF" + "codePostal": "42640", + "codeCommune": "42220", + "libelleAcheminement": "ST FORGEUX LESPINASSE", + "nomCommune": "ST FORGEUX LESPINASSE" }, { - "codePostal": "34480", - "codeCommune": "34130", - "libelleAcheminement": "LAURENS", - "nomCommune": "LAURENS" + "codePostal": "30120", + "codeCommune": "30026", + "libelleAcheminement": "AVEZE", + "nomCommune": "AVEZE" }, { - "codePostal": "59670", - "codeCommune": "59536", - "libelleAcheminement": "STE MARIE CAPPEL", - "nomCommune": "STE MARIE CAPPEL" + "codePostal": "31330", + "codeCommune": "31281", + "libelleAcheminement": "LAUNAC", + "nomCommune": "LAUNAC" }, { - "codePostal": "05110", - "codeCommune": "05184", - "libelleAcheminement": "VITROLLES", - "nomCommune": "VITROLLES" + "codePostal": "43340", + "codeCommune": "43111", + "libelleAcheminement": "LANDOS", + "nomCommune": "LANDOS" }, { - "codePostal": "67220", - "codeCommune": "67022", - "libelleAcheminement": "BASSEMBERG", - "nomCommune": "BASSEMBERG" + "codePostal": "42260", + "codeCommune": "42230", + "libelleAcheminement": "ST GERMAIN LAVAL", + "nomCommune": "ST GERMAIN LAVAL" }, { - "codePostal": "34270", - "codeCommune": "34131", - "libelleAcheminement": "LAURET", - "nomCommune": "LAURET" + "codePostal": "30200", + "codeCommune": "30028", + "libelleAcheminement": "BAGNOLS SUR CEZE", + "nomCommune": "BAGNOLS SUR CEZE" }, { - "codePostal": "59630", - "codeCommune": "59539", - "libelleAcheminement": "ST PIERRE BROUCK", - "nomCommune": "ST PIERRE BROUCK" + "codePostal": "31370", + "codeCommune": "31283", + "libelleAcheminement": "LAUTIGNAC", + "nomCommune": "LAUTIGNAC" }, { - "codePostal": "06910", - "codeCommune": "06001", - "libelleAcheminement": "AIGLUN", - "nomCommune": "AIGLUN" + "codePostal": "43200", + "codeCommune": "43114", + "libelleAcheminement": "LAPTE", + "nomCommune": "LAPTE" }, { - "codePostal": "67310", - "codeCommune": "67030", - "libelleAcheminement": "BERGBIETEN", - "nomCommune": "BERGBIETEN" + "codePostal": "42640", + "codeCommune": "42231", + "libelleAcheminement": "ST GERMAIN LESPINASSE", + "nomCommune": "ST GERMAIN LESPINASSE" }, { - "codePostal": "34710", - "codeCommune": "34135", - "libelleAcheminement": "LESPIGNAN", - "nomCommune": "LESPIGNAN" + "codePostal": "30580", + "codeCommune": "30035", + "libelleAcheminement": "BELVEZET", + "nomCommune": "BELVEZET" }, { - "codePostal": "59880", - "codeCommune": "59544", - "libelleAcheminement": "ST SAULVE", - "nomCommune": "ST SAULVE" + "codePostal": "31650", + "codeCommune": "31284", + "libelleAcheminement": "LAUZERVILLE", + "nomCommune": "LAUZERVILLE" }, { - "codePostal": "06750", - "codeCommune": "06003", - "libelleAcheminement": "ANDON", - "nomCommune": "ANDON" + "codePostal": "43150", + "codeCommune": "43115", + "libelleAcheminement": "LAUSSONNE", + "nomCommune": "LAUSSONNE" }, { - "codePostal": "67170", - "codeCommune": "67033", - "libelleAcheminement": "BERNOLSHEIM", - "nomCommune": "BERNOLSHEIM" + "codePostal": "42650", + "codeCommune": "42237", + "libelleAcheminement": "ST JEAN BONNEFONDS", + "nomCommune": "ST JEAN BONNEFONDS" }, { - "codePostal": "34800", - "codeCommune": "34137", - "libelleAcheminement": "LIAUSSON", - "nomCommune": "LIAUSSON" + "codePostal": "30620", + "codeCommune": "30036", + "libelleAcheminement": "BERNIS", + "nomCommune": "BERNIS" }, { - "codePostal": "59188", - "codeCommune": "59547", - "libelleAcheminement": "ST VAAST EN CAMBRESIS", - "nomCommune": "ST VAAST EN CAMBRESIS" + "codePostal": "31220", + "codeCommune": "31286", + "libelleAcheminement": "LAVELANET DE COMMINGES", + "nomCommune": "LAVELANET DE COMMINGES" }, { - "codePostal": "06260", - "codeCommune": "06008", - "libelleAcheminement": "AUVARE", - "nomCommune": "AUVARE" + "codePostal": "43380", + "codeCommune": "43118", + "libelleAcheminement": "LAVOUTE CHILHAC", + "nomCommune": "LAVOUTE CHILHAC" }, { - "codePostal": "67370", - "codeCommune": "67034", - "libelleAcheminement": "BERSTETT", - "nomCommune": "BERSTETT" + "codePostal": "42440", + "codeCommune": "42245", + "libelleAcheminement": "VETRE SUR ANZON", + "nomCommune": "VETRE SUR ANZON" }, { - "codePostal": "34290", - "codeCommune": "34139", - "libelleAcheminement": "LIEURAN LES BEZIERS", - "nomCommune": "LIEURAN LES BEZIERS" + "codePostal": "30160", + "codeCommune": "30037", + "libelleAcheminement": "BESSEGES", + "nomCommune": "BESSEGES" }, { - "codePostal": "59218", - "codeCommune": "59549", - "libelleAcheminement": "SALESCHES", - "nomCommune": "SALESCHES" + "codePostal": "31340", + "codeCommune": "31288", + "libelleAcheminement": "LAYRAC SUR TARN", + "nomCommune": "LAYRAC SUR TARN" }, { - "codePostal": "06420", - "codeCommune": "06009", - "libelleAcheminement": "BAIROLS", - "nomCommune": "BAIROLS" + "codePostal": "43350", + "codeCommune": "43122", + "libelleAcheminement": "LISSAC", + "nomCommune": "LISSAC" }, { - "codePostal": "67170", - "codeCommune": "67035", - "libelleAcheminement": "BERSTHEIM", - "nomCommune": "BERSTHEIM" + "codePostal": "42220", + "codeCommune": "42246", + "libelleAcheminement": "ST JULIEN MOLIN MOLETTE", + "nomCommune": "ST JULIEN MOLIN MOLETTE" }, { - "codePostal": "34490", - "codeCommune": "34140", - "libelleAcheminement": "LIGNAN SUR ORB", - "nomCommune": "LIGNAN SUR ORB" + "codePostal": "30160", + "codeCommune": "30037", + "libelleAcheminement": "BESSEGES", + "nomCommune": "BESSEGES" }, { - "codePostal": "59230", - "codeCommune": "59554", - "libelleAcheminement": "SARS ET ROSIERES", - "nomCommune": "SARS ET ROSIERES" + "codePostal": "31490", + "codeCommune": "31291", + "libelleAcheminement": "LEGUEVIN", + "nomCommune": "LEGUEVIN" }, { - "codePostal": "06390", - "codeCommune": "06015", - "libelleAcheminement": "BERRE LES ALPES", - "nomCommune": "BERRE LES ALPES" + "codePostal": "43100", + "codeCommune": "43125", + "libelleAcheminement": "LUBILHAC", + "nomCommune": "LUBILHAC" }, { - "codePostal": "67720", - "codeCommune": "67038", - "libelleAcheminement": "BIETLENHEIM", - "nomCommune": "BIETLENHEIM" + "codePostal": "42430", + "codeCommune": "42248", + "libelleAcheminement": "ST JUST EN CHEVALET", + "nomCommune": "ST JUST EN CHEVALET" }, { - "codePostal": "34700", - "codeCommune": "34142", - "libelleAcheminement": "LODEVE", - "nomCommune": "LODEVE" + "codePostal": "30114", + "codeCommune": "30043", + "libelleAcheminement": "BOISSIERES", + "nomCommune": "BOISSIERES" }, { - "codePostal": "59145", - "codeCommune": "59556", - "libelleAcheminement": "SASSEGNIES", - "nomCommune": "SASSEGNIES" + "codePostal": "31360", + "codeCommune": "31296", + "libelleAcheminement": "LESTELLE DE ST MARTORY", + "nomCommune": "LESTELLE DE ST MARTORY" }, { - "codePostal": "06530", - "codeCommune": "06026", - "libelleAcheminement": "CABRIS", - "nomCommune": "CABRIS" + "codePostal": "43800", + "codeCommune": "43126", + "libelleAcheminement": "MALREVERS", + "nomCommune": "MALREVERS" }, { - "codePostal": "67800", - "codeCommune": "67043", - "libelleAcheminement": "BISCHHEIM", - "nomCommune": "BISCHHEIM" + "codePostal": "42210", + "codeCommune": "42251", + "libelleAcheminement": "ST LAURENT LA CONCHE", + "nomCommune": "ST LAURENT LA CONCHE" }, { - "codePostal": "34130", - "codeCommune": "34154", - "libelleAcheminement": "MAUGUIO", - "nomCommune": "MAUGUIO" + "codePostal": "30230", + "codeCommune": "30047", + "libelleAcheminement": "BOUILLARGUES", + "nomCommune": "BOUILLARGUES" }, { - "codePostal": "59990", - "codeCommune": "59559", - "libelleAcheminement": "SEBOURG", - "nomCommune": "SEBOURG" + "codePostal": "31230", + "codeCommune": "31301", + "libelleAcheminement": "LILHAC", + "nomCommune": "LILHAC" }, { - "codePostal": "06800", - "codeCommune": "06027", - "libelleAcheminement": "CAGNES SUR MER", - "nomCommune": "CAGNES SUR MER" + "codePostal": "43700", + "codeCommune": "43140", + "libelleAcheminement": "LE MONTEIL", + "nomCommune": "LE MONTEIL" }, { - "codePostal": "67340", - "codeCommune": "67044", - "libelleAcheminement": "BISCHHOLTZ", - "nomCommune": "BISCHHOLTZ" + "codePostal": "42260", + "codeCommune": "42268", + "libelleAcheminement": "VEZELIN SUR LOIRE", + "nomCommune": "VEZELIN SUR LOIRE" }, { - "codePostal": "34800", - "codeCommune": "34156", - "libelleAcheminement": "MERIFONS", - "nomCommune": "MERIFONS" + "codePostal": "30120", + "codeCommune": "30052", + "libelleAcheminement": "BREAU MARS", + "nomCommune": "BREAU MARS" }, { - "codePostal": "59113", - "codeCommune": "59560", - "libelleAcheminement": "SECLIN", - "nomCommune": "SECLIN" + "codePostal": "31440", + "codeCommune": "31316", + "libelleAcheminement": "MARIGNAC", + "nomCommune": "MARIGNAC" }, { - "codePostal": "06150", - "codeCommune": "06029", - "libelleAcheminement": "CANNES", - "nomCommune": "CANNES" + "codePostal": "43260", + "codeCommune": "43143", + "libelleAcheminement": "MONTUSCLAT", + "nomCommune": "MONTUSCLAT" }, { - "codePostal": "67870", - "codeCommune": "67045", - "libelleAcheminement": "BISCHOFFSHEIM", - "nomCommune": "BISCHOFFSHEIM" + "codePostal": "42740", + "codeCommune": "42271", + "libelleAcheminement": "ST PAUL EN JAREZ", + "nomCommune": "ST PAUL EN JAREZ" }, { - "codePostal": "34140", - "codeCommune": "34157", - "libelleAcheminement": "MEZE", - "nomCommune": "MEZE" + "codePostal": "30120", + "codeCommune": "30052", + "libelleAcheminement": "BREAU MARS", + "nomCommune": "BREAU MARS" }, { - "codePostal": "59440", - "codeCommune": "59562", - "libelleAcheminement": "SEMERIES", - "nomCommune": "SEMERIES" + "codePostal": "31550", + "codeCommune": "31319", + "libelleAcheminement": "MARLIAC", + "nomCommune": "MARLIAC" }, { - "codePostal": "06510", - "codeCommune": "06033", - "libelleAcheminement": "CARROS", - "nomCommune": "CARROS" + "codePostal": "43200", + "codeCommune": "43150", + "libelleAcheminement": "LE PERTUIS", + "nomCommune": "LE PERTUIS" }, { - "codePostal": "67113", - "codeCommune": "67049", - "libelleAcheminement": "BLAESHEIM", - "nomCommune": "BLAESHEIM" + "codePostal": "42260", + "codeCommune": "42274", + "libelleAcheminement": "ST POLGUES", + "nomCommune": "ST POLGUES" }, { - "codePostal": "34110", - "codeCommune": "34159", - "libelleAcheminement": "MIREVAL", - "nomCommune": "MIREVAL" + "codePostal": "30260", + "codeCommune": "30054", + "libelleAcheminement": "BROUZET LES QUISSAC", + "nomCommune": "BROUZET LES QUISSAC" }, { - "codePostal": "59440", - "codeCommune": "59563", - "libelleAcheminement": "SEMOUSIES", - "nomCommune": "SEMOUSIES" + "codePostal": "31390", + "codeCommune": "31320", + "libelleAcheminement": "MARQUEFAVE", + "nomCommune": "MARQUEFAVE" }, { - "codePostal": "06460", - "codeCommune": "06037", - "libelleAcheminement": "CAUSSOLS", - "nomCommune": "CAUSSOLS" + "codePostal": "43220", + "codeCommune": "43163", + "libelleAcheminement": "RIOTORD", + "nomCommune": "RIOTORD" }, { - "codePostal": "67650", - "codeCommune": "67051", - "libelleAcheminement": "BLIENSCHWILLER", - "nomCommune": "BLIENSCHWILLER" + "codePostal": "42270", + "codeCommune": "42275", + "libelleAcheminement": "ST PRIEST EN JAREZ", + "nomCommune": "ST PRIEST EN JAREZ" }, { - "codePostal": "34390", - "codeCommune": "34160", - "libelleAcheminement": "MONS", - "nomCommune": "MONS" + "codePostal": "30260", + "codeCommune": "30069", + "libelleAcheminement": "CARNAS", + "nomCommune": "CARNAS" }, { - "codePostal": "59213", - "codeCommune": "59575", - "libelleAcheminement": "SOMMAING", - "nomCommune": "SOMMAING" + "codePostal": "31460", + "codeCommune": "31325", + "libelleAcheminement": "MASCARVILLE", + "nomCommune": "MASCARVILLE" }, { - "codePostal": "06470", - "codeCommune": "06040", - "libelleAcheminement": "CHATEAUNEUF D ENTRAUNES", - "nomCommune": "CHATEAUNEUF D ENTRAUNES" + "codePostal": "43810", + "codeCommune": "43164", + "libelleAcheminement": "ROCHE EN REGNIER", + "nomCommune": "ROCHE EN REGNIER" }, { - "codePostal": "67730", - "codeCommune": "67073", - "libelleAcheminement": "CHATENOIS", - "nomCommune": "CHATENOIS" + "codePostal": "42590", + "codeCommune": "42277", + "libelleAcheminement": "ST PRIEST LA ROCHE", + "nomCommune": "ST PRIEST LA ROCHE" }, { - "codePostal": "34570", - "codeCommune": "34163", - "libelleAcheminement": "MONTARNAUD", - "nomCommune": "MONTARNAUD" + "codePostal": "30130", + "codeCommune": "30070", + "libelleAcheminement": "CARSAN", + "nomCommune": "CARSAN" }, { - "codePostal": "59550", - "codeCommune": "59583", - "libelleAcheminement": "TAISNIERES EN THIERACHE", - "nomCommune": "TAISNIERES EN THIERACHE" + "codePostal": "31190", + "codeCommune": "31332", + "libelleAcheminement": "MAUVAISIN", + "nomCommune": "MAUVAISIN" }, { - "codePostal": "06420", - "codeCommune": "06042", - "libelleAcheminement": "CLANS", - "nomCommune": "CLANS" + "codePostal": "43800", + "codeCommune": "43165", + "libelleAcheminement": "ROSIERES", + "nomCommune": "ROSIERES" }, { - "codePostal": "67650", - "codeCommune": "67094", - "libelleAcheminement": "DIEFFENTHAL", - "nomCommune": "DIEFFENTHAL" + "codePostal": "42430", + "codeCommune": "42282", + "libelleAcheminement": "ST ROMAIN D URFE", + "nomCommune": "ST ROMAIN D URFE" }, { - "codePostal": "34560", - "codeCommune": "34165", - "libelleAcheminement": "MONTBAZIN", - "nomCommune": "MONTBAZIN" + "codePostal": "30750", + "codeCommune": "30074", + "libelleAcheminement": "CAUSSE BEGON", + "nomCommune": "CAUSSE BEGON" }, { - "codePostal": "59175", - "codeCommune": "59585", - "libelleAcheminement": "TEMPLEMARS", - "nomCommune": "TEMPLEMARS" + "codePostal": "31230", + "codeCommune": "31333", + "libelleAcheminement": "MAUVEZIN", + "nomCommune": "MAUVEZIN" }, { - "codePostal": "06390", - "codeCommune": "06043", - "libelleAcheminement": "COARAZE", - "nomCommune": "COARAZE" + "codePostal": "43130", + "codeCommune": "43166", + "libelleAcheminement": "ST ANDRE DE CHALENCON", + "nomCommune": "ST ANDRE DE CHALENCON" }, { - "codePostal": "67190", - "codeCommune": "67098", - "libelleAcheminement": "DINSHEIM SUR BRUCHE", - "nomCommune": "DINSHEIM SUR BRUCHE" + "codePostal": "42660", + "codeCommune": "42286", + "libelleAcheminement": "ST ROMAIN LES ATHEUX", + "nomCommune": "ST ROMAIN LES ATHEUX" }, { - "codePostal": "34310", - "codeCommune": "34170", - "libelleAcheminement": "MONTOULIERS", - "nomCommune": "MONTOULIERS" + "codePostal": "30820", + "codeCommune": "30075", + "libelleAcheminement": "CAVEIRAC", + "nomCommune": "CAVEIRAC" }, { - "codePostal": "59200", - "codeCommune": "59599", - "libelleAcheminement": "TOURCOING", - "nomCommune": "TOURCOING" + "codePostal": "31160", + "codeCommune": "31342", + "libelleAcheminement": "MILHAS", + "nomCommune": "MILHAS" }, { - "codePostal": "06390", - "codeCommune": "06048", - "libelleAcheminement": "CONTES", - "nomCommune": "CONTES" + "codePostal": "43420", + "codeCommune": "43168", + "libelleAcheminement": "ST ARCONS DE BARGES", + "nomCommune": "ST ARCONS DE BARGES" }, { - "codePostal": "67120", - "codeCommune": "67101", - "libelleAcheminement": "DORLISHEIM", - "nomCommune": "DORLISHEIM" + "codePostal": "42110", + "codeCommune": "42297", + "libelleAcheminement": "SALVIZINET", + "nomCommune": "SALVIZINET" }, { - "codePostal": "34190", - "codeCommune": "34171", - "libelleAcheminement": "MONTOULIEU", - "nomCommune": "MONTOULIEU" + "codePostal": "30530", + "codeCommune": "30080", + "libelleAcheminement": "CHAMBORIGAUD", + "nomCommune": "CHAMBORIGAUD" }, { - "codePostal": "59152", - "codeCommune": "59602", - "libelleAcheminement": "TRESSIN", - "nomCommune": "TRESSIN" + "codePostal": "31850", + "codeCommune": "31352", + "libelleAcheminement": "MONDOUZIL", + "nomCommune": "MONDOUZIL" }, { - "codePostal": "06910", - "codeCommune": "06052", - "libelleAcheminement": "CUEBRIS", - "nomCommune": "CUEBRIS" + "codePostal": "43290", + "codeCommune": "43172", + "libelleAcheminement": "ST BONNET LE FROID", + "nomCommune": "ST BONNET LE FROID" }, { - "codePostal": "67320", - "codeCommune": "67111", - "libelleAcheminement": "DURSTEL", - "nomCommune": "DURSTEL" + "codePostal": "42600", + "codeCommune": "42299", + "libelleAcheminement": "SAVIGNEUX", + "nomCommune": "SAVIGNEUX" }, { - "codePostal": "34000", - "codeCommune": "34172", - "libelleAcheminement": "MONTPELLIER", - "nomCommune": "MONTPELLIER" + "codePostal": "30200", + "codeCommune": "30081", + "libelleAcheminement": "CHUSCLAN", + "nomCommune": "CHUSCLAN" }, { - "codePostal": "59125", - "codeCommune": "59603", - "libelleAcheminement": "TRITH ST LEGER", - "nomCommune": "TRITH ST LEGER" + "codePostal": "31230", + "codeCommune": "31363", + "libelleAcheminement": "MONTBERNARD", + "nomCommune": "MONTBERNARD" }, { - "codePostal": "06470", - "codeCommune": "06053", - "libelleAcheminement": "DALUIS", - "nomCommune": "DALUIS" + "codePostal": "43260", + "codeCommune": "43181", + "libelleAcheminement": "ST ETIENNE LARDEYROL", + "nomCommune": "ST ETIENNE LARDEYROL" }, { - "codePostal": "67140", - "codeCommune": "67120", - "libelleAcheminement": "EICHHOFFEN", - "nomCommune": "EICHHOFFEN" + "codePostal": "42260", + "codeCommune": "42303", + "libelleAcheminement": "SOUTERNON", + "nomCommune": "SOUTERNON" }, { - "codePostal": "34190", - "codeCommune": "34174", - "libelleAcheminement": "MOULES ET BAUCELS", - "nomCommune": "MOULES ET BAUCELS" + "codePostal": "30190", + "codeCommune": "30086", + "libelleAcheminement": "COLLORGUES", + "nomCommune": "COLLORGUES" }, { - "codePostal": "59232", - "codeCommune": "59615", - "libelleAcheminement": "VIEUX BERQUIN", - "nomCommune": "VIEUX BERQUIN" + "codePostal": "31310", + "codeCommune": "31365", + "libelleAcheminement": "MONTBRUN BOCAGE", + "nomCommune": "MONTBRUN BOCAGE" }, { - "codePostal": "06340", - "codeCommune": "06054", - "libelleAcheminement": "DRAP", - "nomCommune": "DRAP" + "codePostal": "43450", + "codeCommune": "43182", + "libelleAcheminement": "ST ETIENNE SUR BLESLE", + "nomCommune": "ST ETIENNE SUR BLESLE" }, { - "codePostal": "67710", - "codeCommune": "67122", - "libelleAcheminement": "WANGENBOURG ENGENTHAL", - "nomCommune": "WANGENBOURG ENGENTHAL" + "codePostal": "42660", + "codeCommune": "42306", + "libelleAcheminement": "TARENTAISE", + "nomCommune": "TARENTAISE" }, { - "codePostal": "34800", - "codeCommune": "34175", - "libelleAcheminement": "MOUREZE", - "nomCommune": "MOUREZE" + "codePostal": "30111", + "codeCommune": "30091", + "libelleAcheminement": "CONGENIES", + "nomCommune": "CONGENIES" }, { - "codePostal": "59142", - "codeCommune": "59624", - "libelleAcheminement": "VILLERS OUTREAUX", - "nomCommune": "VILLERS OUTREAUX" + "codePostal": "31450", + "codeCommune": "31366", + "libelleAcheminement": "MONTBRUN LAURAGAIS", + "nomCommune": "MONTBRUN LAURAGAIS" }, { - "codePostal": "06670", - "codeCommune": "06055", - "libelleAcheminement": "DURANUS", - "nomCommune": "DURANUS" + "codePostal": "43250", + "codeCommune": "43185", + "libelleAcheminement": "STE FLORINE", + "nomCommune": "STE FLORINE" }, { - "codePostal": "67710", - "codeCommune": "67122", - "libelleAcheminement": "WANGENBOURG ENGENTHAL", - "nomCommune": "WANGENBOURG ENGENTHAL" + "codePostal": "42800", + "codeCommune": "42307", + "libelleAcheminement": "TARTARAS", + "nomCommune": "TARTARAS" }, { - "codePostal": "34490", - "codeCommune": "34178", - "libelleAcheminement": "MURVIEL LES BEZIERS", - "nomCommune": "MURVIEL LES BEZIERS" + "codePostal": "30330", + "codeCommune": "30092", + "libelleAcheminement": "CONNAUX", + "nomCommune": "CONNAUX" }, { - "codePostal": "59231", - "codeCommune": "59625", - "libelleAcheminement": "VILLERS PLOUICH", - "nomCommune": "VILLERS PLOUICH" + "codePostal": "31310", + "codeCommune": "31375", + "libelleAcheminement": "MONTESQUIEU VOLVESTRE", + "nomCommune": "MONTESQUIEU VOLVESTRE" }, { - "codePostal": "06440", - "codeCommune": "06057", - "libelleAcheminement": "L ESCARENE", - "nomCommune": "L ESCARENE" + "codePostal": "43350", + "codeCommune": "43187", + "libelleAcheminement": "ST GENEYS PRES ST PAULIEN", + "nomCommune": "ST GENEYS PRES ST PAULIEN" }, { - "codePostal": "67360", - "codeCommune": "67132", - "libelleAcheminement": "ESCHBACH", - "nomCommune": "ESCHBACH" + "codePostal": "42380", + "codeCommune": "42312", + "libelleAcheminement": "LA TOURETTE", + "nomCommune": "LA TOURETTE" }, { - "codePostal": "34440", - "codeCommune": "34183", - "libelleAcheminement": "NISSAN LEZ ENSERUNE", - "nomCommune": "NISSAN LEZ ENSERUNE" + "codePostal": "30170", + "codeCommune": "30093", + "libelleAcheminement": "CONQUEYRAC", + "nomCommune": "CONQUEYRAC" }, { - "codePostal": "59830", - "codeCommune": "59638", - "libelleAcheminement": "WANNEHAIN", - "nomCommune": "WANNEHAIN" + "codePostal": "31260", + "codeCommune": "31376", + "libelleAcheminement": "MONTGAILLARD DE SALIES", + "nomCommune": "MONTGAILLARD DE SALIES" }, { - "codePostal": "06850", - "codeCommune": "06063", - "libelleAcheminement": "GARS", - "nomCommune": "GARS" + "codePostal": "43500", + "codeCommune": "43189", + "libelleAcheminement": "ST GEORGES LAGRICOL", + "nomCommune": "ST GEORGES LAGRICOL" }, { - "codePostal": "67320", - "codeCommune": "67136", - "libelleAcheminement": "EYWILLER", - "nomCommune": "EYWILLER" + "codePostal": "42130", + "codeCommune": "42313", + "libelleAcheminement": "TRELINS", + "nomCommune": "TRELINS" }, { - "codePostal": "34230", - "codeCommune": "34194", - "libelleAcheminement": "PAULHAN", - "nomCommune": "PAULHAN" + "codePostal": "30260", + "codeCommune": "30095", + "libelleAcheminement": "CORCONNE", + "nomCommune": "CORCONNE" }, { - "codePostal": "59290", - "codeCommune": "59646", - "libelleAcheminement": "WASQUEHAL", - "nomCommune": "WASQUEHAL" + "codePostal": "31350", + "codeCommune": "31378", + "libelleAcheminement": "MONTGAILLARD SUR SAVE", + "nomCommune": "MONTGAILLARD SUR SAVE" }, { - "codePostal": "06130", - "codeCommune": "06069", - "libelleAcheminement": "GRASSE", - "nomCommune": "GRASSE" + "codePostal": "43700", + "codeCommune": "43190", + "libelleAcheminement": "ST GERMAIN LAPRADE", + "nomCommune": "ST GERMAIN LAPRADE" }, { - "codePostal": "67640", - "codeCommune": "67137", - "libelleAcheminement": "FEGERSHEIM", - "nomCommune": "FEGERSHEIM" + "codePostal": "42310", + "codeCommune": "42317", + "libelleAcheminement": "URBISE", + "nomCommune": "URBISE" }, { - "codePostal": "34600", - "codeCommune": "34200", - "libelleAcheminement": "PEZENES LES MINES", - "nomCommune": "PEZENES LES MINES" + "codePostal": "30360", + "codeCommune": "30101", + "libelleAcheminement": "DEAUX", + "nomCommune": "DEAUX" }, { - "codePostal": "59380", - "codeCommune": "59657", - "libelleAcheminement": "WEST CAPPEL", - "nomCommune": "WEST CAPPEL" + "codePostal": "31350", + "codeCommune": "31385", + "libelleAcheminement": "MONTMAURIN", + "nomCommune": "MONTMAURIN" }, { - "codePostal": "06520", - "codeCommune": "06069", - "libelleAcheminement": "GRASSE", - "nomCommune": "GRASSE" + "codePostal": "43320", + "codeCommune": "43197", + "libelleAcheminement": "ST JEAN DE NAY", + "nomCommune": "ST JEAN DE NAY" }, { - "codePostal": "67580", - "codeCommune": "67141", - "libelleAcheminement": "FORSTHEIM", - "nomCommune": "FORSTHEIM" + "codePostal": "42320", + "codeCommune": "42320", + "libelleAcheminement": "VALFLEURY", + "nomCommune": "VALFLEURY" }, { - "codePostal": "34360", - "codeCommune": "34201", - "libelleAcheminement": "PIERRERUE", - "nomCommune": "PIERRERUE" + "codePostal": "30580", + "codeCommune": "30115", + "libelleAcheminement": "FONTARECHES", + "nomCommune": "FONTARECHES" }, { - "codePostal": "59470", - "codeCommune": "59663", - "libelleAcheminement": "WORMHOUT", - "nomCommune": "WORMHOUT" + "codePostal": "31430", + "codeCommune": "31387", + "libelleAcheminement": "MONTOUSSIN", + "nomCommune": "MONTOUSSIN" }, { - "codePostal": "06440", - "codeCommune": "06077", - "libelleAcheminement": "LUCERAM", - "nomCommune": "LUCERAM" + "codePostal": "43260", + "codeCommune": "43200", + "libelleAcheminement": "ST JULIEN CHAPTEUIL", + "nomCommune": "ST JULIEN CHAPTEUIL" }, { - "codePostal": "67140", - "codeCommune": "67155", - "libelleAcheminement": "GERTWILLER", - "nomCommune": "GERTWILLER" + "codePostal": "42111", + "codeCommune": "42321", + "libelleAcheminement": "LA VALLA SUR ROCHEFORT", + "nomCommune": "LA VALLA SUR ROCHEFORT" }, { - "codePostal": "34230", - "codeCommune": "34204", - "libelleAcheminement": "PLAISSAN", - "nomCommune": "PLAISSAN" + "codePostal": "30210", + "codeCommune": "30116", + "libelleAcheminement": "FOURNES", + "nomCommune": "FOURNES" }, { - "codePostal": "59380", - "codeCommune": "59665", - "libelleAcheminement": "WYLDER", - "nomCommune": "WYLDER" + "codePostal": "31210", + "codeCommune": "31390", + "libelleAcheminement": "MONTREJEAU", + "nomCommune": "MONTREJEAU" }, { - "codePostal": "06000", - "codeCommune": "06088", - "libelleAcheminement": "NICE", - "nomCommune": "NICE" + "codePostal": "43500", + "codeCommune": "43201", + "libelleAcheminement": "ST JULIEN D ANCE", + "nomCommune": "ST JULIEN D ANCE" }, { - "codePostal": "67170", - "codeCommune": "67156", - "libelleAcheminement": "GEUDERTHEIM", - "nomCommune": "GEUDERTHEIM" + "codePostal": "42340", + "codeCommune": "42324", + "libelleAcheminement": "VEAUCHETTE", + "nomCommune": "VEAUCHETTE" }, { - "codePostal": "34230", - "codeCommune": "34208", - "libelleAcheminement": "POPIAN", - "nomCommune": "POPIAN" + "codePostal": "30260", + "codeCommune": "30121", + "libelleAcheminement": "GAILHAN", + "nomCommune": "GAILHAN" }, { - "codePostal": "60480", - "codeCommune": "60003", - "libelleAcheminement": "ABBEVILLE ST LUCIEN", - "nomCommune": "ABBEVILLE ST LUCIEN" + "codePostal": "31260", + "codeCommune": "31391", + "libelleAcheminement": "MONTSAUNES", + "nomCommune": "MONTSAUNES" }, { - "codePostal": "06300", - "codeCommune": "06088", - "libelleAcheminement": "NICE", - "nomCommune": "NICE" + "codePostal": "43810", + "codeCommune": "43217", + "libelleAcheminement": "ST PIERRE DU CHAMP", + "nomCommune": "ST PIERRE DU CHAMP" }, { - "codePostal": "67700", - "codeCommune": "67161", - "libelleAcheminement": "GOTTENHOUSE", - "nomCommune": "GOTTENHOUSE" + "codePostal": "42590", + "codeCommune": "42325", + "libelleAcheminement": "VENDRANGES", + "nomCommune": "VENDRANGES" }, { - "codePostal": "34560", - "codeCommune": "34213", - "libelleAcheminement": "POUSSAN", - "nomCommune": "POUSSAN" + "codePostal": "30510", + "codeCommune": "30128", + "libelleAcheminement": "GENERAC", + "nomCommune": "GENERAC" }, { - "codePostal": "60250", - "codeCommune": "60015", - "libelleAcheminement": "ANGY", - "nomCommune": "ANGY" + "codePostal": "31350", + "codeCommune": "31398", + "libelleAcheminement": "NIZAN GESSE", + "nomCommune": "NIZAN GESSE" }, { - "codePostal": "06440", - "codeCommune": "06091", - "libelleAcheminement": "PEILLE", - "nomCommune": "PEILLE" + "codePostal": "43260", + "codeCommune": "43218", + "libelleAcheminement": "ST PIERRE EYNAC", + "nomCommune": "ST PIERRE EYNAC" }, { - "codePostal": "67190", - "codeCommune": "67167", - "libelleAcheminement": "GRENDELBRUCH", - "nomCommune": "GRENDELBRUCH" + "codePostal": "42410", + "codeCommune": "42327", + "libelleAcheminement": "VERIN", + "nomCommune": "VERIN" }, { - "codePostal": "34160", - "codeCommune": "34227", - "libelleAcheminement": "RESTINCLIERES", - "nomCommune": "RESTINCLIERES" + "codePostal": "30140", + "codeCommune": "30129", + "libelleAcheminement": "GENERARGUES", + "nomCommune": "GENERARGUES" }, { - "codePostal": "60250", - "codeCommune": "60016", - "libelleAcheminement": "ANSACQ", - "nomCommune": "ANSACQ" + "codePostal": "31450", + "codeCommune": "31401", + "libelleAcheminement": "NOUEILLES", + "nomCommune": "NOUEILLES" }, { - "codePostal": "06260", - "codeCommune": "06093", - "libelleAcheminement": "LA PENNE", - "nomCommune": "LA PENNE" + "codePostal": "43580", + "codeCommune": "43225", + "libelleAcheminement": "ST VENERAND", + "nomCommune": "ST VENERAND" }, { - "codePostal": "67190", - "codeCommune": "67168", - "libelleAcheminement": "GRESSWILLER", - "nomCommune": "GRESSWILLER" + "codePostal": "42220", + "codeCommune": "42329", + "libelleAcheminement": "LA VERSANNE", + "nomCommune": "LA VERSANNE" }, { - "codePostal": "34220", - "codeCommune": "34228", - "libelleAcheminement": "RIEUSSEC", - "nomCommune": "RIEUSSEC" + "codePostal": "30630", + "codeCommune": "30131", + "libelleAcheminement": "GOUDARGUES", + "nomCommune": "GOUDARGUES" }, { - "codePostal": "60300", - "codeCommune": "60022", - "libelleAcheminement": "APREMONT", - "nomCommune": "APREMONT" + "codePostal": "31510", + "codeCommune": "31405", + "libelleAcheminement": "ORE", + "nomCommune": "ORE" }, { - "codePostal": "06470", - "codeCommune": "06094", - "libelleAcheminement": "PEONE", - "nomCommune": "PEONE" + "codePostal": "43440", + "codeCommune": "43226", + "libelleAcheminement": "ST VERT", + "nomCommune": "ST VERT" }, { - "codePostal": "67240", - "codeCommune": "67169", - "libelleAcheminement": "GRIES", - "nomCommune": "GRIES" + "codePostal": "42155", + "codeCommune": "42331", + "libelleAcheminement": "VILLEMONTAIS", + "nomCommune": "VILLEMONTAIS" }, { - "codePostal": "34650", - "codeCommune": "34233", - "libelleAcheminement": "ROQUEREDONDE", - "nomCommune": "ROQUEREDONDE" + "codePostal": "30110", + "codeCommune": "30132", + "libelleAcheminement": "LA GRAND COMBE", + "nomCommune": "LA GRAND COMBE" }, { - "codePostal": "60390", - "codeCommune": "60029", - "libelleAcheminement": "AUNEUIL", - "nomCommune": "AUNEUIL" + "codePostal": "31320", + "codeCommune": "31411", + "libelleAcheminement": "PECHBUSQUE", + "nomCommune": "PECHBUSQUE" }, { - "codePostal": "06260", - "codeCommune": "06096", - "libelleAcheminement": "PIERLAS", - "nomCommune": "PIERLAS" + "codePostal": "43140", + "codeCommune": "43227", + "libelleAcheminement": "ST VICTOR MALESCOURS", + "nomCommune": "ST VICTOR MALESCOURS" }, { - "codePostal": "67110", - "codeCommune": "67176", - "libelleAcheminement": "GUNDERSHOFFEN", - "nomCommune": "GUNDERSHOFFEN" + "codePostal": "42720", + "codeCommune": "42338", + "libelleAcheminement": "VOUGY", + "nomCommune": "VOUGY" }, { - "codePostal": "34610", - "codeCommune": "34235", - "libelleAcheminement": "ROSIS", - "nomCommune": "ROSIS" + "codePostal": "30760", + "codeCommune": "30143", + "libelleAcheminement": "LAVAL ST ROMAN", + "nomCommune": "LAVAL ST ROMAN" }, { - "codePostal": "60390", - "codeCommune": "60030", - "libelleAcheminement": "AUTEUIL", - "nomCommune": "AUTEUIL" + "codePostal": "31480", + "codeCommune": "31413", + "libelleAcheminement": "PELLEPORT", + "nomCommune": "PELLEPORT" }, { - "codePostal": "06550", - "codeCommune": "06108", - "libelleAcheminement": "LA ROQUETTE SUR SIAGNE", - "nomCommune": "LA ROQUETTE SUR SIAGNE" + "codePostal": "43150", + "codeCommune": "43231", + "libelleAcheminement": "SALETTES", + "nomCommune": "SALETTES" }, { - "codePostal": "67360", - "codeCommune": "67177", - "libelleAcheminement": "GUNSTETT", - "nomCommune": "GUNSTETT" + "codePostal": "42430", + "codeCommune": "42339", + "libelleAcheminement": "CHAUSSETERRE", + "nomCommune": "CHAUSSETERRE" }, { - "codePostal": "34130", - "codeCommune": "34240", - "libelleAcheminement": "ST AUNES", - "nomCommune": "ST AUNES" + "codePostal": "30250", + "codeCommune": "30144", + "libelleAcheminement": "LECQUES", + "nomCommune": "LECQUES" }, { - "codePostal": "60890", - "codeCommune": "60031", - "libelleAcheminement": "AUTHEUIL EN VALOIS", - "nomCommune": "AUTHEUIL EN VALOIS" + "codePostal": "31820", + "codeCommune": "31417", + "libelleAcheminement": "PIBRAC", + "nomCommune": "PIBRAC" }, { - "codePostal": "06650", - "codeCommune": "06112", - "libelleAcheminement": "LE ROURET", - "nomCommune": "LE ROURET" + "codePostal": "43170", + "codeCommune": "43234", + "libelleAcheminement": "SAUGUES", + "nomCommune": "SAUGUES" }, { - "codePostal": "67600", - "codeCommune": "67196", - "libelleAcheminement": "HILSENHEIM", - "nomCommune": "HILSENHEIM" + "codePostal": "43100", + "codeCommune": "43001", + "libelleAcheminement": "AGNAT", + "nomCommune": "AGNAT" }, { - "codePostal": "34670", - "codeCommune": "34244", - "libelleAcheminement": "ST BRES", - "nomCommune": "ST BRES" + "codePostal": "30350", + "codeCommune": "30147", + "libelleAcheminement": "LEZAN", + "nomCommune": "LEZAN" }, { - "codePostal": "60130", - "codeCommune": "60034", - "libelleAcheminement": "AVRECHY", - "nomCommune": "AVRECHY" + "codePostal": "31370", + "codeCommune": "31423", + "libelleAcheminement": "PLAGNOLE", + "nomCommune": "PLAGNOLE" }, { - "codePostal": "06530", - "codeCommune": "06137", - "libelleAcheminement": "SPERACEDES", - "nomCommune": "SPERACEDES" + "codePostal": "43300", + "codeCommune": "43239", + "libelleAcheminement": "SIAUGUES STE MARIE", + "nomCommune": "SIAUGUES STE MARIE" }, { - "codePostal": "67270", - "codeCommune": "67202", - "libelleAcheminement": "HOCHFELDEN", - "nomCommune": "HOCHFELDEN" + "codePostal": "43580", + "codeCommune": "43005", + "libelleAcheminement": "ALLEYRAS", + "nomCommune": "ALLEYRAS" }, { - "codePostal": "34390", - "codeCommune": "34250", - "libelleAcheminement": "ST ETIENNE D ALBAGNAN", - "nomCommune": "ST ETIENNE D ALBAGNAN" + "codePostal": "30126", + "codeCommune": "30149", + "libelleAcheminement": "LIRAC", + "nomCommune": "LIRAC" }, { - "codePostal": "60190", - "codeCommune": "60036", - "libelleAcheminement": "AVRIGNY", - "nomCommune": "AVRIGNY" + "codePostal": "31830", + "codeCommune": "31424", + "libelleAcheminement": "PLAISANCE DU TOUCH", + "nomCommune": "PLAISANCE DU TOUCH" }, { - "codePostal": "06750", - "codeCommune": "06154", - "libelleAcheminement": "VALDEROURE", - "nomCommune": "VALDEROURE" + "codePostal": "43230", + "codeCommune": "43250", + "libelleAcheminement": "VALS LE CHASTEL", + "nomCommune": "VALS LE CHASTEL" }, { - "codePostal": "67310", - "codeCommune": "67208", - "libelleAcheminement": "HOHENGOEFT", - "nomCommune": "HOHENGOEFT" + "codePostal": "43380", + "codeCommune": "43006", + "libelleAcheminement": "ALLY", + "nomCommune": "ALLY" }, { - "codePostal": "34610", - "codeCommune": "34257", - "libelleAcheminement": "ST GENIES DE VARENSAL", - "nomCommune": "ST GENIES DE VARENSAL" + "codePostal": "30320", + "codeCommune": "30156", + "libelleAcheminement": "MARGUERITTES", + "nomCommune": "MARGUERITTES" }, { - "codePostal": "60120", - "codeCommune": "60039", - "libelleAcheminement": "BACOUEL", - "nomCommune": "BACOUEL" + "codePostal": "31800", + "codeCommune": "31427", + "libelleAcheminement": "POINTIS INARD", + "nomCommune": "POINTIS INARD" }, { - "codePostal": "06710", - "codeCommune": "06158", - "libelleAcheminement": "VILLARS SUR VAR", - "nomCommune": "VILLARS SUR VAR" + "codePostal": "43800", + "codeCommune": "43267", + "libelleAcheminement": "VOREY", + "nomCommune": "VOREY" }, { - "codePostal": "67140", - "codeCommune": "67227", - "libelleAcheminement": "ITTERSWILLER", - "nomCommune": "ITTERSWILLER" + "codePostal": "43700", + "codeCommune": "43010", + "libelleAcheminement": "ARSAC EN VELAY", + "nomCommune": "ARSAC EN VELAY" }, { - "codePostal": "34700", - "codeCommune": "34268", - "libelleAcheminement": "ST JEAN DE LA BLAQUIERE", - "nomCommune": "ST JEAN DE LA BLAQUIERE" + "codePostal": "30140", + "codeCommune": "30168", + "libelleAcheminement": "MIALET", + "nomCommune": "MIALET" }, { - "codePostal": "60190", - "codeCommune": "60040", - "libelleAcheminement": "BAILLEUL LE SOC", - "nomCommune": "BAILLEUL LE SOC" + "codePostal": "31450", + "codeCommune": "31429", + "libelleAcheminement": "POMPERTUZAT", + "nomCommune": "POMPERTUZAT" }, { - "codePostal": "06270", - "codeCommune": "06161", - "libelleAcheminement": "VILLENEUVE LOUBET", - "nomCommune": "VILLENEUVE LOUBET" + "codePostal": "44320", + "codeCommune": "44005", + "libelleAcheminement": "CHAUMES EN RETZ", + "nomCommune": "CHAUMES EN RETZ" }, { - "codePostal": "67230", - "codeCommune": "67233", - "libelleAcheminement": "KERTZFELD", - "nomCommune": "KERTZFELD" + "codePostal": "43110", + "codeCommune": "43012", + "libelleAcheminement": "AUREC SUR LOIRE", + "nomCommune": "AUREC SUR LOIRE" }, { - "codePostal": "34360", - "codeCommune": "34269", - "libelleAcheminement": "ST JEAN DE MINERVOIS", - "nomCommune": "ST JEAN DE MINERVOIS" + "codePostal": "30540", + "codeCommune": "30169", + "libelleAcheminement": "MILHAUD", + "nomCommune": "MILHAUD" }, { - "codePostal": "60170", - "codeCommune": "60043", - "libelleAcheminement": "BAILLY", - "nomCommune": "BAILLY" + "codePostal": "31210", + "codeCommune": "31430", + "libelleAcheminement": "PONLAT TAILLEBOURG", + "nomCommune": "PONLAT TAILLEBOURG" }, { - "codePostal": "07440", - "codeCommune": "07007", - "libelleAcheminement": "ALBOUSSIERE", - "nomCommune": "ALBOUSSIERE" + "codePostal": "44740", + "codeCommune": "44010", + "libelleAcheminement": "BATZ SUR MER", + "nomCommune": "BATZ SUR MER" }, { - "codePostal": "67930", - "codeCommune": "67235", - "libelleAcheminement": "KESSELDORF", - "nomCommune": "KESSELDORF" + "codePostal": "43210", + "codeCommune": "43020", + "libelleAcheminement": "BAS EN BASSET", + "nomCommune": "BAS EN BASSET" }, { - "codePostal": "34190", - "codeCommune": "34277", - "libelleAcheminement": "ST MAURICE NAVACELLES", - "nomCommune": "ST MAURICE NAVACELLES" + "codePostal": "30340", + "codeCommune": "30173", + "libelleAcheminement": "MONS", + "nomCommune": "MONS" }, { - "codePostal": "60210", - "codeCommune": "60051", - "libelleAcheminement": "BEAUDEDUIT", - "nomCommune": "BEAUDEDUIT" + "codePostal": "31160", + "codeCommune": "31431", + "libelleAcheminement": "PORTET D ASPET", + "nomCommune": "PORTET D ASPET" }, { - "codePostal": "07210", - "codeCommune": "07008", - "libelleAcheminement": "ALISSAS", - "nomCommune": "ALISSAS" + "codePostal": "44580", + "codeCommune": "44021", + "libelleAcheminement": "VILLENEUVE EN RETZ", + "nomCommune": "VILLENEUVE EN RETZ" }, { - "codePostal": "67230", - "codeCommune": "67246", - "libelleAcheminement": "KOGENHEIM", - "nomCommune": "KOGENHEIM" + "codePostal": "43200", + "codeCommune": "43028", + "libelleAcheminement": "BESSAMOREL", + "nomCommune": "BESSAMOREL" }, { - "codePostal": "34490", - "codeCommune": "34279", - "libelleAcheminement": "ST NAZAIRE DE LADAREZ", - "nomCommune": "ST NAZAIRE DE LADAREZ" + "codePostal": "30350", + "codeCommune": "30183", + "libelleAcheminement": "MOULEZAN", + "nomCommune": "MOULEZAN" }, { - "codePostal": "60390", - "codeCommune": "60054", - "libelleAcheminement": "LES HAUTS TALICAN", - "nomCommune": "LES HAUTS TALICAN" + "codePostal": "31430", + "codeCommune": "31436", + "libelleAcheminement": "POUY DE TOUGES", + "nomCommune": "POUY DE TOUGES" }, { - "codePostal": "07530", - "codeCommune": "07011", - "libelleAcheminement": "VALLEES D ANTRAIGUES ASPERJOC", - "nomCommune": "VALLEES D ANTRAIGUES ASPERJOC" + "codePostal": "44850", + "codeCommune": "44028", + "libelleAcheminement": "LE CELLIER", + "nomCommune": "LE CELLIER" }, { - "codePostal": "67520", - "codeCommune": "67253", - "libelleAcheminement": "KUTTOLSHEIM", - "nomCommune": "KUTTOLSHEIM" + "codePostal": "43700", + "codeCommune": "43032", + "libelleAcheminement": "BLAVOZY", + "nomCommune": "BLAVOZY" }, { - "codePostal": "34725", - "codeCommune": "34287", - "libelleAcheminement": "ST SATURNIN DE LUCIAN", - "nomCommune": "ST SATURNIN DE LUCIAN" + "codePostal": "30114", + "codeCommune": "30186", + "libelleAcheminement": "NAGES ET SOLORGUES", + "nomCommune": "NAGES ET SOLORGUES" }, { - "codePostal": "60129", - "codeCommune": "60066", - "libelleAcheminement": "BETHANCOURT EN VALOIS", - "nomCommune": "BETHANCOURT EN VALOIS" + "codePostal": "31460", + "codeCommune": "31441", + "libelleAcheminement": "PRUNET", + "nomCommune": "PRUNET" }, { - "codePostal": "07600", - "codeCommune": "07011", - "libelleAcheminement": "VALLEES D ANTRAIGUES ASPERJOC", - "nomCommune": "VALLEES D ANTRAIGUES ASPERJOC" + "codePostal": "44450", + "codeCommune": "44029", + "libelleAcheminement": "DIVATTE SUR LOIRE", + "nomCommune": "DIVATTE SUR LOIRE" }, { - "codePostal": "67250", - "codeCommune": "67254", - "libelleAcheminement": "KUTZENHAUSEN", - "nomCommune": "KUTZENHAUSEN" + "codePostal": "43500", + "codeCommune": "43034", + "libelleAcheminement": "BOISSET", + "nomCommune": "BOISSET" }, { - "codePostal": "34390", - "codeCommune": "34291", - "libelleAcheminement": "ST VINCENT D OLARGUES", - "nomCommune": "ST VINCENT D OLARGUES" + "codePostal": "30580", + "codeCommune": "30187", + "libelleAcheminement": "NAVACELLES", + "nomCommune": "NAVACELLES" }, { - "codePostal": "60320", - "codeCommune": "60067", - "libelleAcheminement": "BETHISY ST MARTIN", - "nomCommune": "BETHISY ST MARTIN" + "codePostal": "31160", + "codeCommune": "31447", + "libelleAcheminement": "RAZECUEILLE", + "nomCommune": "RAZECUEILLE" }, { - "codePostal": "07330", - "codeCommune": "07018", - "libelleAcheminement": "ASTET", - "nomCommune": "ASTET" + "codePostal": "44450", + "codeCommune": "44029", + "libelleAcheminement": "DIVATTE SUR LOIRE", + "nomCommune": "DIVATTE SUR LOIRE" }, { - "codePostal": "67220", - "codeCommune": "67255", - "libelleAcheminement": "LALAYE", - "nomCommune": "LALAYE" + "codePostal": "43350", + "codeCommune": "43036", + "libelleAcheminement": "BORNE", + "nomCommune": "BORNE" }, { - "codePostal": "34270", - "codeCommune": "34297", - "libelleAcheminement": "SAUTEYRARGUES", - "nomCommune": "SAUTEYRARGUES" + "codePostal": "30900", + "codeCommune": "30189", + "libelleAcheminement": "NIMES", + "nomCommune": "NIMES" }, { - "codePostal": "60350", - "codeCommune": "60072", - "libelleAcheminement": "BITRY", - "nomCommune": "BITRY" + "codePostal": "31320", + "codeCommune": "31448", + "libelleAcheminement": "REBIGUE", + "nomCommune": "REBIGUE" }, { - "codePostal": "07330", - "codeCommune": "07025", - "libelleAcheminement": "BARNAS", - "nomCommune": "BARNAS" + "codePostal": "44410", + "codeCommune": "44030", + "libelleAcheminement": "LA CHAPELLE DES MARAIS", + "nomCommune": "LA CHAPELLE DES MARAIS" }, { - "codePostal": "67700", - "codeCommune": "67258", - "libelleAcheminement": "LANDERSHEIM", - "nomCommune": "LANDERSHEIM" + "codePostal": "43510", + "codeCommune": "43037", + "libelleAcheminement": "LE BOUCHET ST NICOLAS", + "nomCommune": "LE BOUCHET ST NICOLAS" }, { - "codePostal": "34700", - "codeCommune": "34306", - "libelleAcheminement": "SOUMONT", - "nomCommune": "SOUMONT" + "codePostal": "30124", + "codeCommune": "30195", + "libelleAcheminement": "PEYROLLES", + "nomCommune": "PEYROLLES" }, { - "codePostal": "60510", - "codeCommune": "60081", - "libelleAcheminement": "BONLIER", - "nomCommune": "BONLIER" + "codePostal": "31800", + "codeCommune": "31452", + "libelleAcheminement": "RIEUCAZE", + "nomCommune": "RIEUCAZE" }, { - "codePostal": "07630", - "codeCommune": "07026", - "libelleAcheminement": "LE BEAGE", - "nomCommune": "LE BEAGE" + "codePostal": "44690", + "codeCommune": "44037", + "libelleAcheminement": "CHATEAU THEBAUD", + "nomCommune": "CHATEAU THEBAUD" }, { - "codePostal": "67510", - "codeCommune": "67263", - "libelleAcheminement": "LEMBACH", - "nomCommune": "LEMBACH" + "codePostal": "43100", + "codeCommune": "43040", + "libelleAcheminement": "BRIOUDE", + "nomCommune": "BRIOUDE" }, { - "codePostal": "34490", - "codeCommune": "34310", - "libelleAcheminement": "THEZAN LES BEZIERS", - "nomCommune": "THEZAN LES BEZIERS" + "codePostal": "30122", + "codeCommune": "30198", + "libelleAcheminement": "LES PLANTIERS", + "nomCommune": "LES PLANTIERS" }, { - "codePostal": "60540", - "codeCommune": "60088", - "libelleAcheminement": "BORNEL", - "nomCommune": "BORNEL" + "codePostal": "31540", + "codeCommune": "31463", + "libelleAcheminement": "ROUMENS", + "nomCommune": "ROUMENS" }, { - "codePostal": "07190", - "codeCommune": "07030", - "libelleAcheminement": "BEAUVENE", - "nomCommune": "BEAUVENE" + "codePostal": "44118", + "codeCommune": "44041", + "libelleAcheminement": "LA CHEVROLIERE", + "nomCommune": "LA CHEVROLIERE" }, { - "codePostal": "67440", - "codeCommune": "67272", - "libelleAcheminement": "LOCHWILLER", - "nomCommune": "LOCHWILLER" + "codePostal": "43440", + "codeCommune": "43052", + "libelleAcheminement": "CHAMPAGNAC LE VIEUX", + "nomCommune": "CHAMPAGNAC LE VIEUX" }, { - "codePostal": "34120", - "codeCommune": "34311", - "libelleAcheminement": "TOURBES", - "nomCommune": "TOURBES" + "codePostal": "30330", + "codeCommune": "30205", + "libelleAcheminement": "POUGNADORESSE", + "nomCommune": "POUGNADORESSE" }, { - "codePostal": "60240", - "codeCommune": "60090", - "libelleAcheminement": "BOUCONVILLERS", - "nomCommune": "BOUCONVILLERS" + "codePostal": "31370", + "codeCommune": "31464", + "libelleAcheminement": "SABONNERES", + "nomCommune": "SABONNERES" }, { - "codePostal": "07460", - "codeCommune": "07031", - "libelleAcheminement": "BERRIAS ET CASTELJAU", - "nomCommune": "BERRIAS ET CASTELJAU" + "codePostal": "44560", + "codeCommune": "44046", + "libelleAcheminement": "CORSEPT", + "nomCommune": "CORSEPT" }, { - "codePostal": "67290", - "codeCommune": "67273", - "libelleAcheminement": "LOHR", - "nomCommune": "LOHR" + "codePostal": "43170", + "codeCommune": "43054", + "libelleAcheminement": "CHANALEILLES", + "nomCommune": "CHANALEILLES" }, { - "codePostal": "34270", - "codeCommune": "34314", - "libelleAcheminement": "LE TRIADOU", - "nomCommune": "LE TRIADOU" + "codePostal": "30320", + "codeCommune": "30206", + "libelleAcheminement": "POULX", + "nomCommune": "POULX" }, { - "codePostal": "60440", - "codeCommune": "60101", - "libelleAcheminement": "BREGY", - "nomCommune": "BREGY" + "codePostal": "31440", + "codeCommune": "31471", + "libelleAcheminement": "ST BEAT LEZ", + "nomCommune": "ST BEAT LEZ" }, { - "codePostal": "07700", - "codeCommune": "07034", - "libelleAcheminement": "BIDON", - "nomCommune": "BIDON" + "codePostal": "44530", + "codeCommune": "44053", + "libelleAcheminement": "DREFFEAC", + "nomCommune": "DREFFEAC" }, { - "codePostal": "67390", - "codeCommune": "67281", - "libelleAcheminement": "MARCKOLSHEIM", - "nomCommune": "MARCKOLSHEIM" + "codePostal": "43300", + "codeCommune": "43065", + "libelleAcheminement": "CHASTEL", + "nomCommune": "CHASTEL" }, { - "codePostal": "34230", - "codeCommune": "34315", - "libelleAcheminement": "USCLAS D HERAULT", - "nomCommune": "USCLAS D HERAULT" + "codePostal": "30210", + "codeCommune": "30212", + "libelleAcheminement": "REMOULINS", + "nomCommune": "REMOULINS" }, { - "codePostal": "60510", - "codeCommune": "60103", - "libelleAcheminement": "BRESLES", - "nomCommune": "BRESLES" + "codePostal": "31430", + "codeCommune": "31476", + "libelleAcheminement": "ST ELIX LE CHATEAU", + "nomCommune": "ST ELIX LE CHATEAU" }, { - "codePostal": "07440", - "codeCommune": "07035", - "libelleAcheminement": "BOFFRES", - "nomCommune": "BOFFRES" + "codePostal": "44660", + "codeCommune": "44058", + "libelleAcheminement": "FERCE", + "nomCommune": "FERCE" }, { - "codePostal": "67520", - "codeCommune": "67282", - "libelleAcheminement": "MARLENHEIM", - "nomCommune": "MARLENHEIM" + "codePostal": "43380", + "codeCommune": "43070", + "libelleAcheminement": "CHILHAC", + "nomCommune": "CHILHAC" }, { - "codePostal": "34220", - "codeCommune": "34331", - "libelleAcheminement": "VERRERIES DE MOUSSANS", - "nomCommune": "VERRERIES DE MOUSSANS" + "codePostal": "30430", + "codeCommune": "30218", + "libelleAcheminement": "ROCHEGUDE", + "nomCommune": "ROCHEGUDE" }, { - "codePostal": "60400", - "codeCommune": "60117", - "libelleAcheminement": "BUSSY", - "nomCommune": "BUSSY" + "codePostal": "31290", + "codeCommune": "31514", + "libelleAcheminement": "ST ROME", + "nomCommune": "ST ROME" }, { - "codePostal": "07590", - "codeCommune": "07038", - "libelleAcheminement": "BORNE", - "nomCommune": "BORNE" + "codePostal": "44320", + "codeCommune": "44061", + "libelleAcheminement": "FROSSAY", + "nomCommune": "FROSSAY" }, { - "codePostal": "67440", - "codeCommune": "67283", - "libelleAcheminement": "MARMOUTIER", - "nomCommune": "MARMOUTIER" + "codePostal": "43230", + "codeCommune": "43075", + "libelleAcheminement": "COLLAT", + "nomCommune": "COLLAT" }, { - "codePostal": "34420", - "codeCommune": "34336", - "libelleAcheminement": "VILLENEUVE LES BEZIERS", - "nomCommune": "VILLENEUVE LES BEZIERS" + "codePostal": "30340", + "codeCommune": "30223", + "libelleAcheminement": "ROUSSON", + "nomCommune": "ROUSSON" }, { - "codePostal": "60400", - "codeCommune": "60118", - "libelleAcheminement": "CAISNES", - "nomCommune": "CAISNES" + "codePostal": "31470", + "codeCommune": "31518", + "libelleAcheminement": "ST THOMAS", + "nomCommune": "ST THOMAS" }, { - "codePostal": "07100", - "codeCommune": "07041", - "libelleAcheminement": "BOULIEU LES ANNONAY", - "nomCommune": "BOULIEU LES ANNONAY" + "codePostal": "44130", + "codeCommune": "44062", + "libelleAcheminement": "LE GAVRE", + "nomCommune": "LE GAVRE" }, { - "codePostal": "67210", - "codeCommune": "67286", - "libelleAcheminement": "MEISTRATZHEIM", - "nomCommune": "MEISTRATZHEIM" + "codePostal": "43700", + "codeCommune": "43078", + "libelleAcheminement": "COUBON", + "nomCommune": "COUBON" }, { - "codePostal": "34560", - "codeCommune": "34341", - "libelleAcheminement": "VILLEVEYRAC", - "nomCommune": "VILLEVEYRAC" + "codePostal": "30190", + "codeCommune": "30228", + "libelleAcheminement": "STE ANASTASIE", + "nomCommune": "STE ANASTASIE" }, { - "codePostal": "60220", - "codeCommune": "60122", - "libelleAcheminement": "CAMPEAUX", - "nomCommune": "CAMPEAUX" + "codePostal": "31260", + "codeCommune": "31523", + "libelleAcheminement": "SALIES DU SALAT", + "nomCommune": "SALIES DU SALAT" }, { - "codePostal": "07590", - "codeCommune": "07047", - "libelleAcheminement": "CELLIER DU LUC", - "nomCommune": "CELLIER DU LUC" + "codePostal": "44290", + "codeCommune": "44067", + "libelleAcheminement": "GUEMENE PENFAO", + "nomCommune": "GUEMENE PENFAO" }, { - "codePostal": "67340", - "codeCommune": "67289", - "libelleAcheminement": "MENCHHOFFEN", - "nomCommune": "MENCHHOFFEN" + "codePostal": "43000", + "codeCommune": "43089", + "libelleAcheminement": "ESPALY ST MARCEL", + "nomCommune": "ESPALY ST MARCEL" }, { - "codePostal": "35250", - "codeCommune": "35007", - "libelleAcheminement": "AUBIGNE", - "nomCommune": "AUBIGNE" + "codePostal": "30500", + "codeCommune": "30237", + "libelleAcheminement": "ST BRES", + "nomCommune": "ST BRES" }, { - "codePostal": "60480", - "codeCommune": "60123", - "libelleAcheminement": "CAMPREMY", - "nomCommune": "CAMPREMY" + "codePostal": "31220", + "codeCommune": "31530", + "libelleAcheminement": "SANA", + "nomCommune": "SANA" }, { - "codePostal": "07240", - "codeCommune": "07048", - "libelleAcheminement": "CHALENCON", - "nomCommune": "CHALENCON" + "codePostal": "44115", + "codeCommune": "44071", + "libelleAcheminement": "HAUTE GOULAINE", + "nomCommune": "HAUTE GOULAINE" }, { - "codePostal": "67190", - "codeCommune": "67299", - "libelleAcheminement": "MOLLKIRCH", - "nomCommune": "MOLLKIRCH" + "codePostal": "43580", + "codeCommune": "43090", + "libelleAcheminement": "ESPLANTAS VAZEILLES", + "nomCommune": "ESPLANTAS VAZEILLES" }, { - "codePostal": "35470", - "codeCommune": "35012", - "libelleAcheminement": "BAIN DE BRETAGNE", - "nomCommune": "BAIN DE BRETAGNE" + "codePostal": "30360", + "codeCommune": "30250", + "libelleAcheminement": "ST ETIENNE DE L OLM", + "nomCommune": "ST ETIENNE DE L OLM" }, { - "codePostal": "60310", - "codeCommune": "60127", - "libelleAcheminement": "CANNY SUR MATZ", - "nomCommune": "CANNY SUR MATZ" + "codePostal": "31800", + "codeCommune": "31536", + "libelleAcheminement": "SAUX ET POMAREDE", + "nomCommune": "SAUX ET POMAREDE" }, { - "codePostal": "07120", - "codeCommune": "07061", - "libelleAcheminement": "CHAUZON", - "nomCommune": "CHAUZON" + "codePostal": "44410", + "codeCommune": "44072", + "libelleAcheminement": "HERBIGNAC", + "nomCommune": "HERBIGNAC" }, { - "codePostal": "67600", - "codeCommune": "67310", - "libelleAcheminement": "MUSSIG", - "nomCommune": "MUSSIG" + "codePostal": "43150", + "codeCommune": "43097", + "libelleAcheminement": "FREYCENET LA CUCHE", + "nomCommune": "FREYCENET LA CUCHE" }, { - "codePostal": "35600", - "codeCommune": "35013", - "libelleAcheminement": "BAINS SUR OUST", - "nomCommune": "BAINS SUR OUST" + "codePostal": "30200", + "codeCommune": "30256", + "libelleAcheminement": "ST GERVAIS", + "nomCommune": "ST GERVAIS" }, { - "codePostal": "60130", - "codeCommune": "60133", - "libelleAcheminement": "CATILLON FUMECHON", - "nomCommune": "CATILLON FUMECHON" + "codePostal": "31800", + "codeCommune": "31537", + "libelleAcheminement": "SAVARTHES", + "nomCommune": "SAVARTHES" }, { - "codePostal": "07270", - "codeCommune": "07068", - "libelleAcheminement": "COLOMBIER LE JEUNE", - "nomCommune": "COLOMBIER LE JEUNE" + "codePostal": "44610", + "codeCommune": "44074", + "libelleAcheminement": "INDRE", + "nomCommune": "INDRE" }, { - "codePostal": "67600", - "codeCommune": "67311", - "libelleAcheminement": "MUTTERSHOLTZ", - "nomCommune": "MUTTERSHOLTZ" + "codePostal": "43490", + "codeCommune": "43109", + "libelleAcheminement": "LAFARRE", + "nomCommune": "LAFARRE" }, { - "codePostal": "35190", - "codeCommune": "35017", - "libelleAcheminement": "LA BAUSSAINE", - "nomCommune": "LA BAUSSAINE" + "codePostal": "30800", + "codeCommune": "30258", + "libelleAcheminement": "ST GILLES", + "nomCommune": "ST GILLES" }, { - "codePostal": "60500", - "codeCommune": "60141", - "libelleAcheminement": "CHANTILLY", - "nomCommune": "CHANTILLY" + "codePostal": "31440", + "codeCommune": "31548", + "libelleAcheminement": "SIGNAC", + "nomCommune": "SIGNAC" }, { - "codePostal": "07510", - "codeCommune": "07075", - "libelleAcheminement": "CROS DE GEORAND", - "nomCommune": "CROS DE GEORAND" + "codePostal": "44520", + "codeCommune": "44075", + "libelleAcheminement": "ISSE", + "nomCommune": "ISSE" }, { - "codePostal": "67190", - "codeCommune": "67313", - "libelleAcheminement": "MUTZIG", - "nomCommune": "MUTZIG" + "codePostal": "43100", + "codeCommune": "43110", + "libelleAcheminement": "LAMOTHE", + "nomCommune": "LAMOTHE" }, { - "codePostal": "35750", - "codeCommune": "35026", - "libelleAcheminement": "BLERUAIS", - "nomCommune": "BLERUAIS" + "codePostal": "30560", + "codeCommune": "30259", + "libelleAcheminement": "ST HILAIRE DE BRETHMAS", + "nomCommune": "ST HILAIRE DE BRETHMAS" }, { - "codePostal": "60710", - "codeCommune": "60149", - "libelleAcheminement": "CHEVRIERES", - "nomCommune": "CHEVRIERES" + "codePostal": "31110", + "codeCommune": "31549", + "libelleAcheminement": "SODE", + "nomCommune": "SODE" }, { - "codePostal": "07270", - "codeCommune": "07095", - "libelleAcheminement": "GILHOC SUR ORMEZE", - "nomCommune": "GILHOC SUR ORMEZE" + "codePostal": "44170", + "codeCommune": "44076", + "libelleAcheminement": "JANS", + "nomCommune": "JANS" }, { - "codePostal": "67630", - "codeCommune": "67315", - "libelleAcheminement": "NEEWILLER PRES LAUTERBOURG", - "nomCommune": "NEEWILLER PRES LAUTERBOURG" + "codePostal": "43340", + "codeCommune": "43111", + "libelleAcheminement": "LANDOS", + "nomCommune": "LANDOS" }, { - "codePostal": "35320", - "codeCommune": "35030", - "libelleAcheminement": "LA BOSSE DE BRETAGNE", - "nomCommune": "LA BOSSE DE BRETAGNE" + "codePostal": "30170", + "codeCommune": "30263", + "libelleAcheminement": "ST HIPPOLYTE DU FORT", + "nomCommune": "ST HIPPOLYTE DU FORT" }, { - "codePostal": "60138", - "codeCommune": "60150", - "libelleAcheminement": "CHIRY OURSCAMP", - "nomCommune": "CHIRY OURSCAMP" + "codePostal": "31570", + "codeCommune": "31551", + "libelleAcheminement": "TARABEL", + "nomCommune": "TARABEL" }, { - "codePostal": "07500", - "codeCommune": "07102", - "libelleAcheminement": "GUILHERAND GRANGES", - "nomCommune": "GUILHERAND GRANGES" + "codePostal": "44290", + "codeCommune": "44092", + "libelleAcheminement": "MASSERAC", + "nomCommune": "MASSERAC" }, { - "codePostal": "67130", - "codeCommune": "67321", - "libelleAcheminement": "NEUVILLER LA ROCHE", - "nomCommune": "NEUVILLER LA ROCHE" + "codePostal": "43300", + "codeCommune": "43112", + "libelleAcheminement": "LANGEAC", + "nomCommune": "LANGEAC" }, { - "codePostal": "35330", - "codeCommune": "35035", - "libelleAcheminement": "BOVEL", - "nomCommune": "BOVEL" + "codePostal": "30440", + "codeCommune": "30272", + "libelleAcheminement": "ST JULIEN DE LA NEF", + "nomCommune": "ST JULIEN DE LA NEF" }, { - "codePostal": "60660", - "codeCommune": "60155", - "libelleAcheminement": "CIRES LES MELLO", - "nomCommune": "CIRES LES MELLO" + "codePostal": "31420", + "codeCommune": "31552", + "libelleAcheminement": "TERREBASSE", + "nomCommune": "TERREBASSE" }, { - "codePostal": "07310", - "codeCommune": "07103", - "libelleAcheminement": "ST JULIEN D INTRES", - "nomCommune": "ST JULIEN D INTRES" + "codePostal": "44520", + "codeCommune": "44095", + "libelleAcheminement": "LA MEILLERAYE DE BRETAGNE", + "nomCommune": "LA MEILLERAYE DE BRETAGNE" }, { - "codePostal": "67110", - "codeCommune": "67324", - "libelleAcheminement": "NIEDERBRONN LES BAINS", - "nomCommune": "NIEDERBRONN LES BAINS" + "codePostal": "43360", + "codeCommune": "43123", + "libelleAcheminement": "LORLANGES", + "nomCommune": "LORLANGES" }, { - "codePostal": "35170", - "codeCommune": "35047", - "libelleAcheminement": "BRUZ", - "nomCommune": "BRUZ" + "codePostal": "30330", + "codeCommune": "30282", + "libelleAcheminement": "ST MARCEL DE CAREIRET", + "nomCommune": "ST MARCEL DE CAREIRET" }, { - "codePostal": "60280", - "codeCommune": "60156", - "libelleAcheminement": "CLAIROIX", - "nomCommune": "CLAIROIX" + "codePostal": "31000", + "codeCommune": "31555", + "libelleAcheminement": "TOULOUSE", + "nomCommune": "TOULOUSE" }, { - "codePostal": "07110", - "codeCommune": "07118", - "libelleAcheminement": "LABOULE", - "nomCommune": "LABOULE" + "codePostal": "44140", + "codeCommune": "44102", + "libelleAcheminement": "MONTBERT", + "nomCommune": "MONTBERT" }, { - "codePostal": "67350", - "codeCommune": "67328", - "libelleAcheminement": "NIEDERMODERN", - "nomCommune": "NIEDERMODERN" + "codePostal": "43520", + "codeCommune": "43130", + "libelleAcheminement": "MAZET ST VOY", + "nomCommune": "MAZET ST VOY" }, { - "codePostal": "35135", - "codeCommune": "35055", - "libelleAcheminement": "CHANTEPIE", - "nomCommune": "CHANTEPIE" + "codePostal": "30440", + "codeCommune": "30283", + "libelleAcheminement": "ST MARTIAL", + "nomCommune": "ST MARTIAL" }, { - "codePostal": "60360", - "codeCommune": "60161", - "libelleAcheminement": "CONTEVILLE", - "nomCommune": "CONTEVILLE" + "codePostal": "31200", + "codeCommune": "31555", + "libelleAcheminement": "TOULOUSE", + "nomCommune": "TOULOUSE" }, { - "codePostal": "07380", - "codeCommune": "07127", - "libelleAcheminement": "LALEVADE D ARDECHE", - "nomCommune": "LALEVADE D ARDECHE" + "codePostal": "44300", + "codeCommune": "44109", + "libelleAcheminement": "NANTES", + "nomCommune": "NANTES" }, { - "codePostal": "67470", - "codeCommune": "67330", - "libelleAcheminement": "NIEDERROEDERN", - "nomCommune": "NIEDERROEDERN" + "codePostal": "43300", + "codeCommune": "43132", + "libelleAcheminement": "MAZEYRAT D ALLIER", + "nomCommune": "MAZEYRAT D ALLIER" }, { - "codePostal": "35630", - "codeCommune": "35058", - "libelleAcheminement": "LA CHAPELLE CHAUSSEE", - "nomCommune": "LA CHAPELLE CHAUSSEE" + "codePostal": "30200", + "codeCommune": "30287", + "libelleAcheminement": "ST MICHEL D EUZET", + "nomCommune": "ST MICHEL D EUZET" }, { - "codePostal": "60350", - "codeCommune": "60171", - "libelleAcheminement": "COURTIEUX", - "nomCommune": "COURTIEUX" + "codePostal": "31210", + "codeCommune": "31556", + "libelleAcheminement": "LES TOURREILLES", + "nomCommune": "LES TOURREILLES" }, { - "codePostal": "07520", - "codeCommune": "07128", - "libelleAcheminement": "LALOUVESC", - "nomCommune": "LALOUVESC" + "codePostal": "44330", + "codeCommune": "44117", + "libelleAcheminement": "LE PALLET", + "nomCommune": "LE PALLET" }, { - "codePostal": "67240", - "codeCommune": "67345", - "libelleAcheminement": "OBERHOFFEN SUR MODER", - "nomCommune": "OBERHOFFEN SUR MODER" + "codePostal": "43580", + "codeCommune": "43136", + "libelleAcheminement": "MONISTROL D ALLIER", + "nomCommune": "MONISTROL D ALLIER" }, { - "codePostal": "35660", - "codeCommune": "35064", - "libelleAcheminement": "LA CHAPELLE DE BRAIN", - "nomCommune": "LA CHAPELLE DE BRAIN" + "codePostal": "30200", + "codeCommune": "30288", + "libelleAcheminement": "ST NAZAIRE", + "nomCommune": "ST NAZAIRE" }, { - "codePostal": "60420", - "codeCommune": "60179", - "libelleAcheminement": "CREVECOEUR LE PETIT", - "nomCommune": "CREVECOEUR LE PETIT" + "codePostal": "31240", + "codeCommune": "31561", + "libelleAcheminement": "L UNION", + "nomCommune": "L UNION" }, { - "codePostal": "07660", - "codeCommune": "07130", - "libelleAcheminement": "LANARCE", - "nomCommune": "LANARCE" + "codePostal": "44670", + "codeCommune": "44121", + "libelleAcheminement": "PETIT AUVERNE", + "nomCommune": "PETIT AUVERNE" }, { - "codePostal": "67330", - "codeCommune": "67347", - "libelleAcheminement": "OBERMODERN ZUTZENDORF", - "nomCommune": "OBERMODERN ZUTZENDORF" + "codePostal": "43300", + "codeCommune": "43151", + "libelleAcheminement": "PINOLS", + "nomCommune": "PINOLS" }, { - "codePostal": "35220", - "codeCommune": "35068", - "libelleAcheminement": "CHATEAUBOURG", - "nomCommune": "CHATEAUBOURG" + "codePostal": "30330", + "codeCommune": "30292", + "libelleAcheminement": "ST PONS LA CALM", + "nomCommune": "ST PONS LA CALM" }, { - "codePostal": "60530", - "codeCommune": "60185", - "libelleAcheminement": "CROUY EN THELLE", - "nomCommune": "CROUY EN THELLE" + "codePostal": "31340", + "codeCommune": "31563", + "libelleAcheminement": "VACQUIERS", + "nomCommune": "VACQUIERS" }, { - "codePostal": "07110", - "codeCommune": "07132", - "libelleAcheminement": "LARGENTIERE", - "nomCommune": "LARGENTIERE" + "codePostal": "44770", + "codeCommune": "44126", + "libelleAcheminement": "LA PLAINE SUR MER", + "nomCommune": "LA PLAINE SUR MER" }, { - "codePostal": "67330", - "codeCommune": "67352", - "libelleAcheminement": "OBERSOULTZBACH", - "nomCommune": "OBERSOULTZBACH" + "codePostal": "43000", + "codeCommune": "43152", + "libelleAcheminement": "POLIGNAC", + "nomCommune": "POLIGNAC" }, { - "codePostal": "35410", - "codeCommune": "35069", - "libelleAcheminement": "CHATEAUGIRON", - "nomCommune": "CHATEAUGIRON" + "codePostal": "30340", + "codeCommune": "30294", + "libelleAcheminement": "ST PRIVAT DES VIEUX", + "nomCommune": "ST PRIVAT DES VIEUX" }, { - "codePostal": "60850", - "codeCommune": "60187", - "libelleAcheminement": "CUIGY EN BRAY", - "nomCommune": "CUIGY EN BRAY" + "codePostal": "31340", + "codeCommune": "31583", + "libelleAcheminement": "VILLEMATIER", + "nomCommune": "VILLEMATIER" }, { - "codePostal": "07190", - "codeCommune": "07149", - "libelleAcheminement": "MARCOLS LES EAUX", - "nomCommune": "MARCOLS LES EAUX" + "codePostal": "44160", + "codeCommune": "44129", + "libelleAcheminement": "PONTCHATEAU", + "nomCommune": "PONTCHATEAU" }, { - "codePostal": "67170", - "codeCommune": "67359", - "libelleAcheminement": "OHLUNGEN", - "nomCommune": "OHLUNGEN" + "codePostal": "43420", + "codeCommune": "43154", + "libelleAcheminement": "PRADELLES", + "nomCommune": "PRADELLES" }, { - "codePostal": "35133", - "codeCommune": "35071", - "libelleAcheminement": "LE CHATELLIER", - "nomCommune": "LE CHATELLIER" + "codePostal": "30750", + "codeCommune": "30297", + "libelleAcheminement": "ST SAUVEUR CAMPRIEU", + "nomCommune": "ST SAUVEUR CAMPRIEU" }, { - "codePostal": "60490", - "codeCommune": "60191", - "libelleAcheminement": "CUVILLY", - "nomCommune": "CUVILLY" + "codePostal": "32270", + "codeCommune": "32002", + "libelleAcheminement": "ANSAN", + "nomCommune": "ANSAN" }, { - "codePostal": "07300", - "codeCommune": "07152", - "libelleAcheminement": "MAUVES", - "nomCommune": "MAUVES" + "codePostal": "44210", + "codeCommune": "44131", + "libelleAcheminement": "PORNIC", + "nomCommune": "PORNIC" }, { - "codePostal": "67350", - "codeCommune": "67372", - "libelleAcheminement": "VAL DE MODER", - "nomCommune": "VAL DE MODER" + "codePostal": "43420", + "codeCommune": "43180", + "libelleAcheminement": "ST ETIENNE DU VIGAN", + "nomCommune": "ST ETIENNE DU VIGAN" }, { - "codePostal": "35330", - "codeCommune": "35084", - "libelleAcheminement": "COMBLESSAC", - "nomCommune": "COMBLESSAC" + "codePostal": "30260", + "codeCommune": "30300", + "libelleAcheminement": "ST THEODORIT", + "nomCommune": "ST THEODORIT" }, { - "codePostal": "60790", - "codeCommune": "60196", - "libelleAcheminement": "LA DRENNE", - "nomCommune": "LA DRENNE" + "codePostal": "32720", + "codeCommune": "32004", + "libelleAcheminement": "ARBLADE LE BAS", + "nomCommune": "ARBLADE LE BAS" }, { - "codePostal": "07330", - "codeCommune": "07153", - "libelleAcheminement": "MAYRES", - "nomCommune": "MAYRES" + "codePostal": "44390", + "codeCommune": "44138", + "libelleAcheminement": "PUCEUL", + "nomCommune": "PUCEUL" }, { - "codePostal": "67320", - "codeCommune": "67373", - "libelleAcheminement": "PFALZWEYER", - "nomCommune": "PFALZWEYER" + "codePostal": "43390", + "codeCommune": "43193", + "libelleAcheminement": "ST HILAIRE", + "nomCommune": "ST HILAIRE" }, { - "codePostal": "35270", - "codeCommune": "35085", - "libelleAcheminement": "COMBOURG", - "nomCommune": "COMBOURG" + "codePostal": "30700", + "codeCommune": "30308", + "libelleAcheminement": "SANILHAC SAGRIES", + "nomCommune": "SANILHAC SAGRIES" }, { - "codePostal": "60360", - "codeCommune": "60199", - "libelleAcheminement": "DOMELIERS", - "nomCommune": "DOMELIERS" + "codePostal": "32110", + "codeCommune": "32005", + "libelleAcheminement": "ARBLADE LE HAUT", + "nomCommune": "ARBLADE LE HAUT" }, { - "codePostal": "07690", - "codeCommune": "07160", - "libelleAcheminement": "MONESTIER", - "nomCommune": "MONESTIER" + "codePostal": "44117", + "codeCommune": "44151", + "libelleAcheminement": "ST ANDRE DES EAUX", + "nomCommune": "ST ANDRE DES EAUX" }, { - "codePostal": "67115", - "codeCommune": "67378", - "libelleAcheminement": "PLOBSHEIM", - "nomCommune": "PLOBSHEIM" + "codePostal": "43240", + "codeCommune": "43205", + "libelleAcheminement": "ST JUST MALMONT", + "nomCommune": "ST JUST MALMONT" }, { - "codePostal": "35210", - "codeCommune": "35086", - "libelleAcheminement": "COMBOURTILLE", - "nomCommune": "COMBOURTILLE" + "codePostal": "30260", + "codeCommune": "30309", + "libelleAcheminement": "SARDAN", + "nomCommune": "SARDAN" }, { - "codePostal": "60590", - "codeCommune": "60208", - "libelleAcheminement": "ENENCOURT LEAGE", - "nomCommune": "ENENCOURT LEAGE" + "codePostal": "32300", + "codeCommune": "32015", + "libelleAcheminement": "AUJAN MOURNEDE", + "nomCommune": "AUJAN MOURNEDE" }, { - "codePostal": "07410", - "codeCommune": "07170", - "libelleAcheminement": "PAILHARES", - "nomCommune": "PAILHARES" + "codePostal": "44650", + "codeCommune": "44156", + "libelleAcheminement": "CORCOUE SUR LOGNE", + "nomCommune": "CORCOUE SUR LOGNE" }, { - "codePostal": "67250", - "codeCommune": "67379", - "libelleAcheminement": "PREUSCHDORF", - "nomCommune": "PREUSCHDORF" + "codePostal": "43620", + "codeCommune": "43213", + "libelleAcheminement": "ST PAL DE MONS", + "nomCommune": "ST PAL DE MONS" }, { - "codePostal": "35320", - "codeCommune": "35090", - "libelleAcheminement": "CREVIN", - "nomCommune": "CREVIN" + "codePostal": "30610", + "codeCommune": "30311", + "libelleAcheminement": "SAUVE", + "nomCommune": "SAUVE" }, { - "codePostal": "60380", - "codeCommune": "60214", - "libelleAcheminement": "ERNEMONT BOUTAVENT", - "nomCommune": "ERNEMONT BOUTAVENT" + "codePostal": "32600", + "codeCommune": "32016", + "libelleAcheminement": "AURADE", + "nomCommune": "AURADE" }, { - "codePostal": "07230", - "codeCommune": "07171", - "libelleAcheminement": "PAYZAC", - "nomCommune": "PAYZAC" + "codePostal": "44650", + "codeCommune": "44156", + "libelleAcheminement": "CORCOUE SUR LOGNE", + "nomCommune": "CORCOUE SUR LOGNE" }, { - "codePostal": "67117", - "codeCommune": "67382", - "libelleAcheminement": "QUATZENHEIM", - "nomCommune": "QUATZENHEIM" + "codePostal": "43420", + "codeCommune": "43215", + "libelleAcheminement": "ST PAUL DE TARTAS", + "nomCommune": "ST PAUL DE TARTAS" }, { - "codePostal": "35680", - "codeCommune": "35097", - "libelleAcheminement": "DOMALAIN", - "nomCommune": "DOMALAIN" + "codePostal": "30190", + "codeCommune": "30313", + "libelleAcheminement": "SAUZET", + "nomCommune": "SAUZET" }, { - "codePostal": "60600", - "codeCommune": "60225", - "libelleAcheminement": "ETOUY", - "nomCommune": "ETOUY" + "codePostal": "32170", + "codeCommune": "32020", + "libelleAcheminement": "AUX AUSSAT", + "nomCommune": "AUX AUSSAT" }, { - "codePostal": "07340", - "codeCommune": "07172", - "libelleAcheminement": "PEAUGRES", - "nomCommune": "PEAUGRES" + "codePostal": "44530", + "codeCommune": "44161", + "libelleAcheminement": "ST GILDAS DES BOIS", + "nomCommune": "ST GILDAS DES BOIS" }, { - "codePostal": "67116", - "codeCommune": "67389", - "libelleAcheminement": "REICHSTETT", - "nomCommune": "REICHSTETT" + "codePostal": "43230", + "codeCommune": "43219", + "libelleAcheminement": "ST PREJET ARMANDON", + "nomCommune": "ST PREJET ARMANDON" }, { - "codePostal": "35450", - "codeCommune": "35101", - "libelleAcheminement": "DOURDAIN", - "nomCommune": "DOURDAIN" + "codePostal": "30340", + "codeCommune": "30318", + "libelleAcheminement": "SERVAS", + "nomCommune": "SERVAS" }, { - "codePostal": "60800", - "codeCommune": "60231", - "libelleAcheminement": "FEIGNEUX", - "nomCommune": "FEIGNEUX" + "codePostal": "32480", + "codeCommune": "32047", + "libelleAcheminement": "BERRAC", + "nomCommune": "BERRAC" }, { - "codePostal": "07380", - "codeCommune": "07178", - "libelleAcheminement": "PONT DE LABEAUME", - "nomCommune": "PONT DE LABEAUME" + "codePostal": "44150", + "codeCommune": "44163", + "libelleAcheminement": "VAIR SUR LOIRE", + "nomCommune": "VAIR SUR LOIRE" }, { - "codePostal": "67440", - "codeCommune": "67395", - "libelleAcheminement": "REUTENBOURG", - "nomCommune": "REUTENBOURG" + "codePostal": "43600", + "codeCommune": "43224", + "libelleAcheminement": "STE SIGOLENE", + "nomCommune": "STE SIGOLENE" }, { - "codePostal": "35120", - "codeCommune": "35104", - "libelleAcheminement": "EPINIAC", - "nomCommune": "EPINIAC" + "codePostal": "30460", + "codeCommune": "30322", + "libelleAcheminement": "SOUDORGUES", + "nomCommune": "SOUDORGUES" }, { - "codePostal": "60600", - "codeCommune": "60234", - "libelleAcheminement": "FITZ JAMES", - "nomCommune": "FITZ JAMES" + "codePostal": "32110", + "codeCommune": "32049", + "libelleAcheminement": "BETOUS", + "nomCommune": "BETOUS" }, { - "codePostal": "07250", - "codeCommune": "07181", - "libelleAcheminement": "LE POUZIN", - "nomCommune": "LE POUZIN" + "codePostal": "44640", + "codeCommune": "44166", + "libelleAcheminement": "ST JEAN DE BOISEAU", + "nomCommune": "ST JEAN DE BOISEAU" }, { - "codePostal": "67860", - "codeCommune": "67397", - "libelleAcheminement": "RHINAU", - "nomCommune": "RHINAU" + "codePostal": "43230", + "codeCommune": "43232", + "libelleAcheminement": "SALZUIT", + "nomCommune": "SALZUIT" }, { - "codePostal": "35150", - "codeCommune": "35108", - "libelleAcheminement": "ESSE", - "nomCommune": "ESSE" + "codePostal": "30250", + "codeCommune": "30324", + "libelleAcheminement": "SOUVIGNARGUES", + "nomCommune": "SOUVIGNARGUES" }, { - "codePostal": "60690", - "codeCommune": "60242", - "libelleAcheminement": "FONTAINE LAVAGANNE", - "nomCommune": "FONTAINE LAVAGANNE" + "codePostal": "32130", + "codeCommune": "32051", + "libelleAcheminement": "BEZERIL", + "nomCommune": "BEZERIL" }, { - "codePostal": "07000", - "codeCommune": "07186", - "libelleAcheminement": "PRIVAS", - "nomCommune": "PRIVAS" + "codePostal": "44720", + "codeCommune": "44168", + "libelleAcheminement": "ST JOACHIM", + "nomCommune": "ST JOACHIM" }, { - "codePostal": "67560", - "codeCommune": "67411", - "libelleAcheminement": "ROSHEIM", - "nomCommune": "ROSHEIM" + "codePostal": "43320", + "codeCommune": "43233", + "libelleAcheminement": "SANSSAC L EGLISE", + "nomCommune": "SANSSAC L EGLISE" }, { - "codePostal": "35140", - "codeCommune": "35121", - "libelleAcheminement": "GOSNE", - "nomCommune": "GOSNE" + "codePostal": "30126", + "codeCommune": "30326", + "libelleAcheminement": "TAVEL", + "nomCommune": "TAVEL" }, { - "codePostal": "60220", - "codeCommune": "60245", - "libelleAcheminement": "FORMERIE", - "nomCommune": "FORMERIE" + "codePostal": "32140", + "codeCommune": "32053", + "libelleAcheminement": "BEZUES BAJON", + "nomCommune": "BEZUES BAJON" }, { - "codePostal": "07110", - "codeCommune": "07193", - "libelleAcheminement": "ROCHER", - "nomCommune": "ROCHER" + "codePostal": "44190", + "codeCommune": "44173", + "libelleAcheminement": "ST LUMINE DE CLISSON", + "nomCommune": "ST LUMINE DE CLISSON" }, { - "codePostal": "67290", - "codeCommune": "67413", - "libelleAcheminement": "ROSTEIG", - "nomCommune": "ROSTEIG" + "codePostal": "43190", + "codeCommune": "43244", + "libelleAcheminement": "TENCE", + "nomCommune": "TENCE" }, { - "codePostal": "35350", - "codeCommune": "35122", - "libelleAcheminement": "LA GOUESNIERE", - "nomCommune": "LA GOUESNIERE" + "codePostal": "30140", + "codeCommune": "30329", + "libelleAcheminement": "THOIRAS", + "nomCommune": "THOIRAS" }, { - "codePostal": "60220", - "codeCommune": "60248", - "libelleAcheminement": "FOUILLOY", - "nomCommune": "FOUILLOY" + "codePostal": "32380", + "codeCommune": "32055", + "libelleAcheminement": "BIVES", + "nomCommune": "BIVES" }, { - "codePostal": "07560", - "codeCommune": "07200", - "libelleAcheminement": "LE ROUX", - "nomCommune": "LE ROUX" + "codePostal": "44310", + "codeCommune": "44174", + "libelleAcheminement": "ST LUMINE DE COUTAIS", + "nomCommune": "ST LUMINE DE COUTAIS" }, { - "codePostal": "67340", - "codeCommune": "67415", - "libelleAcheminement": "ROTHBACH", - "nomCommune": "ROTHBACH" + "codePostal": "43430", + "codeCommune": "43253", + "libelleAcheminement": "LES VASTRES", + "nomCommune": "LES VASTRES" }, { - "codePostal": "35580", - "codeCommune": "35126", - "libelleAcheminement": "GUICHEN", - "nomCommune": "GUICHEN" + "codePostal": "30620", + "codeCommune": "30333", + "libelleAcheminement": "UCHAUD", + "nomCommune": "UCHAUD" }, { - "codePostal": "60250", - "codeCommune": "60249", - "libelleAcheminement": "FOULANGUES", - "nomCommune": "FOULANGUES" + "codePostal": "32370", + "codeCommune": "32062", + "libelleAcheminement": "BOURROUILLAN", + "nomCommune": "BOURROUILLAN" }, { - "codePostal": "07320", - "codeCommune": "07204", - "libelleAcheminement": "ST AGREVE", - "nomCommune": "ST AGREVE" + "codePostal": "44410", + "codeCommune": "44175", + "libelleAcheminement": "ST LYPHARD", + "nomCommune": "ST LYPHARD" }, { - "codePostal": "67130", - "codeCommune": "67420", - "libelleAcheminement": "RUSS", - "nomCommune": "RUSS" + "codePostal": "43360", + "codeCommune": "43258", + "libelleAcheminement": "VERGONGHEON", + "nomCommune": "VERGONGHEON" }, { - "codePostal": "35440", - "codeCommune": "35128", - "libelleAcheminement": "GUIPEL", - "nomCommune": "GUIPEL" + "codePostal": "30580", + "codeCommune": "30338", + "libelleAcheminement": "VALLERARGUES", + "nomCommune": "VALLERARGUES" }, { - "codePostal": "60480", - "codeCommune": "60253", - "libelleAcheminement": "FRANCASTEL", - "nomCommune": "FRANCASTEL" + "codePostal": "32350", + "codeCommune": "32065", + "libelleAcheminement": "LE BROUILH MONBERT", + "nomCommune": "LE BROUILH MONBERT" }, { - "codePostal": "07120", - "codeCommune": "07207", - "libelleAcheminement": "ST ALBAN AURIOLLES", - "nomCommune": "ST ALBAN AURIOLLES" + "codePostal": "44540", + "codeCommune": "44180", + "libelleAcheminement": "VALLONS DE L ERDRE", + "nomCommune": "VALLONS DE L ERDRE" }, { - "codePostal": "67220", - "codeCommune": "67430", - "libelleAcheminement": "ST PIERRE BOIS", - "nomCommune": "ST PIERRE BOIS" + "codePostal": "43320", + "codeCommune": "43260", + "libelleAcheminement": "LE VERNET", + "nomCommune": "LE VERNET" }, { - "codePostal": "35890", - "codeCommune": "35139", - "libelleAcheminement": "LAILLE", - "nomCommune": "LAILLE" + "codePostal": "30570", + "codeCommune": "30339", + "libelleAcheminement": "VAL D AIGOUAL", + "nomCommune": "VAL D AIGOUAL" }, { - "codePostal": "60240", - "codeCommune": "60256", - "libelleAcheminement": "MONTCHEVREUIL", - "nomCommune": "MONTCHEVREUIL" + "codePostal": "32380", + "codeCommune": "32068", + "libelleAcheminement": "CADEILHAN", + "nomCommune": "CADEILHAN" }, { - "codePostal": "07160", - "codeCommune": "07209", - "libelleAcheminement": "ST ANDEOL DE FOURCHADES", - "nomCommune": "ST ANDEOL DE FOURCHADES" + "codePostal": "44460", + "codeCommune": "44185", + "libelleAcheminement": "ST NICOLAS DE REDON", + "nomCommune": "ST NICOLAS DE REDON" }, { - "codePostal": "67700", - "codeCommune": "67437", - "libelleAcheminement": "SAVERNE", - "nomCommune": "SAVERNE" + "codePostal": "43490", + "codeCommune": "43263", + "libelleAcheminement": "VIELPRAT", + "nomCommune": "VIELPRAT" }, { - "codePostal": "35320", - "codeCommune": "35140", - "libelleAcheminement": "LALLEU", - "nomCommune": "LALLEU" + "codePostal": "30120", + "codeCommune": "30350", + "libelleAcheminement": "LE VIGAN", + "nomCommune": "LE VIGAN" }, { - "codePostal": "60240", - "codeCommune": "60257", - "libelleAcheminement": "FRESNE LEGUILLON", - "nomCommune": "FRESNE LEGUILLON" + "codePostal": "32400", + "codeCommune": "32070", + "libelleAcheminement": "CAHUZAC SUR ADOUR", + "nomCommune": "CAHUZAC SUR ADOUR" }, { - "codePostal": "07690", - "codeCommune": "07212", - "libelleAcheminement": "ST ANDRE EN VIVARAIS", - "nomCommune": "ST ANDRE EN VIVARAIS" + "codePostal": "44160", + "codeCommune": "44189", + "libelleAcheminement": "STE REINE DE BRETAGNE", + "nomCommune": "STE REINE DE BRETAGNE" }, { - "codePostal": "67150", - "codeCommune": "67438", - "libelleAcheminement": "SCHAEFFERSHEIM", - "nomCommune": "SCHAEFFERSHEIM" + "codePostal": "44320", + "codeCommune": "44005", + "libelleAcheminement": "CHAUMES EN RETZ", + "nomCommune": "CHAUMES EN RETZ" }, { - "codePostal": "35450", - "codeCommune": "35154", - "libelleAcheminement": "LIVRE SUR CHANGEON", - "nomCommune": "LIVRE SUR CHANGEON" + "codePostal": "30230", + "codeCommune": "30356", + "libelleAcheminement": "RODILHAN", + "nomCommune": "RODILHAN" }, { - "codePostal": "60640", - "codeCommune": "60263", - "libelleAcheminement": "FRETOY LE CHATEAU", - "nomCommune": "FRETOY LE CHATEAU" + "codePostal": "32190", + "codeCommune": "32071", + "libelleAcheminement": "CAILLAVET", + "nomCommune": "CAILLAVET" }, { - "codePostal": "07800", - "codeCommune": "07221", - "libelleAcheminement": "ST CIERGE LA SERRE", - "nomCommune": "ST CIERGE LA SERRE" + "codePostal": "44530", + "codeCommune": "44196", + "libelleAcheminement": "SEVERAC", + "nomCommune": "SEVERAC" }, { - "codePostal": "67270", - "codeCommune": "67444", - "libelleAcheminement": "SCHERLENHEIM", - "nomCommune": "SCHERLENHEIM" + "codePostal": "44160", + "codeCommune": "44013", + "libelleAcheminement": "BESNE", + "nomCommune": "BESNE" }, { - "codePostal": "35270", - "codeCommune": "35159", - "libelleAcheminement": "LOURMAIS", - "nomCommune": "LOURMAIS" + "codePostal": "31450", + "codeCommune": "31004", + "libelleAcheminement": "AYGUESVIVES", + "nomCommune": "AYGUESVIVES" }, { - "codePostal": "60220", - "codeCommune": "60280", - "libelleAcheminement": "GOURCHELLES", - "nomCommune": "GOURCHELLES" + "codePostal": "32500", + "codeCommune": "32078", + "libelleAcheminement": "CASTELNAU D ARBIEU", + "nomCommune": "CASTELNAU D ARBIEU" }, { - "codePostal": "07510", - "codeCommune": "07224", - "libelleAcheminement": "ST CIRGUES EN MONTAGNE", - "nomCommune": "ST CIRGUES EN MONTAGNE" + "codePostal": "44660", + "codeCommune": "44200", + "libelleAcheminement": "SOULVACHE", + "nomCommune": "SOULVACHE" }, { - "codePostal": "67750", - "codeCommune": "67445", - "libelleAcheminement": "SCHERWILLER", - "nomCommune": "SCHERWILLER" + "codePostal": "44130", + "codeCommune": "44015", + "libelleAcheminement": "BLAIN", + "nomCommune": "BLAIN" }, { - "codePostal": "35560", - "codeCommune": "35164", - "libelleAcheminement": "MARCILLE RAOUL", - "nomCommune": "MARCILLE RAOUL" + "codePostal": "31230", + "codeCommune": "31007", + "libelleAcheminement": "AMBAX", + "nomCommune": "AMBAX" }, { - "codePostal": "60120", - "codeCommune": "60283", - "libelleAcheminement": "GOUY LES GROSEILLERS", - "nomCommune": "GOUY LES GROSEILLERS" + "codePostal": "32100", + "codeCommune": "32080", + "libelleAcheminement": "CASTELNAU SUR L AUVIGNON", + "nomCommune": "CASTELNAU SUR L AUVIGNON" }, { - "codePostal": "07310", - "codeCommune": "07226", - "libelleAcheminement": "ST CLEMENT", - "nomCommune": "ST CLEMENT" + "codePostal": "44420", + "codeCommune": "44211", + "libelleAcheminement": "LA TURBALLE", + "nomCommune": "LA TURBALLE" }, { - "codePostal": "67600", - "codeCommune": "67462", - "libelleAcheminement": "SELESTAT", - "nomCommune": "SELESTAT" + "codePostal": "44430", + "codeCommune": "44016", + "libelleAcheminement": "LA BOISSIERE DU DORE", + "nomCommune": "LA BOISSIERE DU DORE" }, { - "codePostal": "35330", - "codeCommune": "35168", - "libelleAcheminement": "VAL D ANAST", - "nomCommune": "VAL D ANAST" + "codePostal": "31160", + "codeCommune": "31012", + "libelleAcheminement": "ARBON", + "nomCommune": "ARBON" }, { - "codePostal": "60680", - "codeCommune": "60284", - "libelleAcheminement": "GRANDFRESNOY", - "nomCommune": "GRANDFRESNOY" + "codePostal": "32240", + "codeCommune": "32087", + "libelleAcheminement": "CASTEX D ARMAGNAC", + "nomCommune": "CASTEX D ARMAGNAC" }, { - "codePostal": "07190", - "codeCommune": "07233", - "libelleAcheminement": "ST ETIENNE DE SERRE", - "nomCommune": "ST ETIENNE DE SERRE" + "codePostal": "44370", + "codeCommune": "44213", + "libelleAcheminement": "LOIREAUXENCE", + "nomCommune": "LOIREAUXENCE" }, { - "codePostal": "67130", - "codeCommune": "67470", - "libelleAcheminement": "SOLBACH", - "nomCommune": "SOLBACH" + "codePostal": "44130", + "codeCommune": "44023", + "libelleAcheminement": "BOUVRON", + "nomCommune": "BOUVRON" }, { - "codePostal": "35460", - "codeCommune": "35191", - "libelleAcheminement": "LES PORTES DU COGLAIS", - "nomCommune": "LES PORTES DU COGLAIS" + "codePostal": "31210", + "codeCommune": "31013", + "libelleAcheminement": "ARDIEGE", + "nomCommune": "ARDIEGE" }, { - "codePostal": "60380", - "codeCommune": "60288", - "libelleAcheminement": "GREMEVILLERS", - "nomCommune": "GREMEVILLERS" + "codePostal": "32130", + "codeCommune": "32098", + "libelleAcheminement": "CAZAUX SAVES", + "nomCommune": "CAZAUX SAVES" }, { - "codePostal": "07410", - "codeCommune": "07236", - "libelleAcheminement": "ST FELICIEN", - "nomCommune": "ST FELICIEN" + "codePostal": "44170", + "codeCommune": "44214", + "libelleAcheminement": "VAY", + "nomCommune": "VAY" }, { - "codePostal": "67250", - "codeCommune": "67474", - "libelleAcheminement": "SOULTZ SOUS FORETS", - "nomCommune": "SOULTZ SOUS FORETS" + "codePostal": "44750", + "codeCommune": "44025", + "libelleAcheminement": "CAMPBON", + "nomCommune": "CAMPBON" }, { - "codePostal": "35460", - "codeCommune": "35191", - "libelleAcheminement": "LES PORTES DU COGLAIS", - "nomCommune": "LES PORTES DU COGLAIS" + "codePostal": "31440", + "codeCommune": "31017", + "libelleAcheminement": "ARLOS", + "nomCommune": "ARLOS" }, { - "codePostal": "60650", - "codeCommune": "60296", - "libelleAcheminement": "HANNACHES", - "nomCommune": "HANNACHES" + "codePostal": "32410", + "codeCommune": "32102", + "libelleAcheminement": "CEZAN", + "nomCommune": "CEZAN" }, { - "codePostal": "07160", - "codeCommune": "07239", - "libelleAcheminement": "ST GENEST LACHAMP", - "nomCommune": "ST GENEST LACHAMP" + "codePostal": "44116", + "codeCommune": "44216", + "libelleAcheminement": "VIEILLEVIGNE", + "nomCommune": "VIEILLEVIGNE" }, { - "codePostal": "67200", - "codeCommune": "67482", - "libelleAcheminement": "STRASBOURG", - "nomCommune": "STRASBOURG" + "codePostal": "44240", + "codeCommune": "44035", + "libelleAcheminement": "LA CHAPELLE SUR ERDRE", + "nomCommune": "LA CHAPELLE SUR ERDRE" }, { - "codePostal": "35250", - "codeCommune": "35197", - "libelleAcheminement": "MOUAZE", - "nomCommune": "MOUAZE" + "codePostal": "31360", + "codeCommune": "31018", + "libelleAcheminement": "ARNAUD GUILHEM", + "nomCommune": "ARNAUD GUILHEM" }, { - "codePostal": "60650", - "codeCommune": "60298", - "libelleAcheminement": "HANVOILE", - "nomCommune": "HANVOILE" + "codePostal": "32230", + "codeCommune": "32111", + "libelleAcheminement": "COURTIES", + "nomCommune": "COURTIES" }, { - "codePostal": "07190", - "codeCommune": "07239", - "libelleAcheminement": "ST GENEST LACHAMP", - "nomCommune": "ST GENEST LACHAMP" + "codePostal": "44810", + "codeCommune": "44221", + "libelleAcheminement": "LA CHEVALLERAIS", + "nomCommune": "LA CHEVALLERAIS" }, { - "codePostal": "67370", - "codeCommune": "67485", - "libelleAcheminement": "STUTZHEIM OFFENHEIM", - "nomCommune": "STUTZHEIM OFFENHEIM" + "codePostal": "44110", + "codeCommune": "44036", + "libelleAcheminement": "CHATEAUBRIANT", + "nomCommune": "CHATEAUBRIANT" }, { - "codePostal": "35680", - "codeCommune": "35198", - "libelleAcheminement": "MOULINS", - "nomCommune": "MOULINS" + "codePostal": "31110", + "codeCommune": "31019", + "libelleAcheminement": "ARTIGUE", + "nomCommune": "ARTIGUE" }, { - "codePostal": "60510", - "codeCommune": "60302", - "libelleAcheminement": "HAUDIVILLERS", - "nomCommune": "HAUDIVILLERS" + "codePostal": "32110", + "codeCommune": "32113", + "libelleAcheminement": "CRAVENCERES", + "nomCommune": "CRAVENCERES" }, { - "codePostal": "07800", - "codeCommune": "07240", - "libelleAcheminement": "ST GEORGES LES BAINS", - "nomCommune": "ST GEORGES LES BAINS" + "codePostal": "45480", + "codeCommune": "45005", + "libelleAcheminement": "ANDONVILLE", + "nomCommune": "ANDONVILLE" }, { - "codePostal": "67350", - "codeCommune": "67498", - "libelleAcheminement": "UHRWILLER", - "nomCommune": "UHRWILLER" + "codePostal": "44360", + "codeCommune": "44045", + "libelleAcheminement": "CORDEMAIS", + "nomCommune": "CORDEMAIS" }, { - "codePostal": "35130", - "codeCommune": "35200", - "libelleAcheminement": "MOUTIERS", - "nomCommune": "MOUTIERS" + "codePostal": "31800", + "codeCommune": "31021", + "libelleAcheminement": "ASPRET SARRAT", + "nomCommune": "ASPRET SARRAT" }, { - "codePostal": "60350", - "codeCommune": "60305", - "libelleAcheminement": "HAUTEFONTAINE", - "nomCommune": "HAUTEFONTAINE" + "codePostal": "32800", + "codeCommune": "32119", + "libelleAcheminement": "EAUZE", + "nomCommune": "EAUZE" }, { - "codePostal": "07300", - "codeCommune": "07245", - "libelleAcheminement": "ST JEAN DE MUZOLS", - "nomCommune": "ST JEAN DE MUZOLS" + "codePostal": "45160", + "codeCommune": "45006", + "libelleAcheminement": "ARDON", + "nomCommune": "ARDON" }, { - "codePostal": "67290", - "codeCommune": "67509", - "libelleAcheminement": "VOLKSBERG", - "nomCommune": "VOLKSBERG" + "codePostal": "44590", + "codeCommune": "44051", + "libelleAcheminement": "DERVAL", + "nomCommune": "DERVAL" }, { - "codePostal": "35230", - "codeCommune": "35206", - "libelleAcheminement": "NOYAL CHATILLON SUR SEICHE", - "nomCommune": "NOYAL CHATILLON SUR SEICHE" + "codePostal": "31420", + "codeCommune": "31028", + "libelleAcheminement": "AURIGNAC", + "nomCommune": "AURIGNAC" }, { - "codePostal": "60120", - "codeCommune": "60311", - "libelleAcheminement": "LA HERELLE", - "nomCommune": "LA HERELLE" + "codePostal": "32300", + "codeCommune": "32128", + "libelleAcheminement": "ESTIPOUY", + "nomCommune": "ESTIPOUY" }, { - "codePostal": "07290", - "codeCommune": "07250", - "libelleAcheminement": "ST JEURE D AY", - "nomCommune": "ST JEURE D AY" + "codePostal": "45340", + "codeCommune": "45018", + "libelleAcheminement": "AUXY", + "nomCommune": "AUXY" }, { - "codePostal": "67700", - "codeCommune": "67515", - "libelleAcheminement": "WALDOLWISHEIM", - "nomCommune": "WALDOLWISHEIM" + "codePostal": "44130", + "codeCommune": "44056", + "libelleAcheminement": "FAY DE BRETAGNE", + "nomCommune": "FAY DE BRETAGNE" }, { - "codePostal": "35540", - "codeCommune": "35224", - "libelleAcheminement": "PLERGUER", - "nomCommune": "PLERGUER" + "codePostal": "31840", + "codeCommune": "31032", + "libelleAcheminement": "AUSSONNE", + "nomCommune": "AUSSONNE" }, { - "codePostal": "60650", - "codeCommune": "60315", - "libelleAcheminement": "HODENC EN BRAY", - "nomCommune": "HODENC EN BRAY" + "codePostal": "32250", + "codeCommune": "32133", + "libelleAcheminement": "FOURCES", + "nomCommune": "FOURCES" }, { - "codePostal": "07210", - "codeCommune": "07260", - "libelleAcheminement": "ST LAGER BRESSAC", - "nomCommune": "ST LAGER BRESSAC" + "codePostal": "45130", + "codeCommune": "45020", + "libelleAcheminement": "LE BARDON", + "nomCommune": "LE BARDON" }, { - "codePostal": "67610", - "codeCommune": "67519", - "libelleAcheminement": "LA WANTZENAU", - "nomCommune": "LA WANTZENAU" + "codePostal": "44810", + "codeCommune": "44073", + "libelleAcheminement": "HERIC", + "nomCommune": "HERIC" }, { - "codePostal": "35720", - "codeCommune": "35225", - "libelleAcheminement": "PLESDER", - "nomCommune": "PLESDER" + "codePostal": "31360", + "codeCommune": "31034", + "libelleAcheminement": "AUZAS", + "nomCommune": "AUZAS" }, { - "codePostal": "60141", - "codeCommune": "60320", - "libelleAcheminement": "IVORS", - "nomCommune": "IVORS" + "codePostal": "32420", + "codeCommune": "32141", + "libelleAcheminement": "GAUJAN", + "nomCommune": "GAUJAN" }, { - "codePostal": "07200", - "codeCommune": "07272", - "libelleAcheminement": "ST MAURICE D ARDECHE", - "nomCommune": "ST MAURICE D ARDECHE" + "codePostal": "45340", + "codeCommune": "45021", + "libelleAcheminement": "BARVILLE EN GATINAIS", + "nomCommune": "BARVILLE EN GATINAIS" }, { - "codePostal": "67310", - "codeCommune": "67520", - "libelleAcheminement": "WASSELONNE", - "nomCommune": "WASSELONNE" + "codePostal": "44650", + "codeCommune": "44081", + "libelleAcheminement": "LEGE", + "nomCommune": "LEGE" }, { - "codePostal": "35720", - "codeCommune": "35226", - "libelleAcheminement": "PLEUGUENEUC", - "nomCommune": "PLEUGUENEUC" + "codePostal": "31650", + "codeCommune": "31036", + "libelleAcheminement": "AUZIELLE", + "nomCommune": "AUZIELLE" }, { - "codePostal": "60173", - "codeCommune": "60321", - "libelleAcheminement": "IVRY LE TEMPLE", - "nomCommune": "IVRY LE TEMPLE" + "codePostal": "32390", + "codeCommune": "32142", + "libelleAcheminement": "GAVARRET SUR AULOUSTE", + "nomCommune": "GAVARRET SUR AULOUSTE" }, { - "codePostal": "07450", - "codeCommune": "07282", - "libelleAcheminement": "ST PIERRE DE COLOMBIER", - "nomCommune": "ST PIERRE DE COLOMBIER" + "codePostal": "45340", + "codeCommune": "45022", + "libelleAcheminement": "BATILLY EN GATINAIS", + "nomCommune": "BATILLY EN GATINAIS" }, { - "codePostal": "67720", - "codeCommune": "67529", - "libelleAcheminement": "WEYERSHEIM", - "nomCommune": "WEYERSHEIM" + "codePostal": "44430", + "codeCommune": "44084", + "libelleAcheminement": "LE LOROUX BOTTEREAU", + "nomCommune": "LE LOROUX BOTTEREAU" }, { - "codePostal": "35137", - "codeCommune": "35227", - "libelleAcheminement": "PLEUMELEUC", - "nomCommune": "PLEUMELEUC" + "codePostal": "31310", + "codeCommune": "31047", + "libelleAcheminement": "BAX", + "nomCommune": "BAX" }, { - "codePostal": "60850", - "codeCommune": "60344", - "libelleAcheminement": "LALANDELLE", - "nomCommune": "LALANDELLE" + "codePostal": "32480", + "codeCommune": "32143", + "libelleAcheminement": "GAZAUPOUY", + "nomCommune": "GAZAUPOUY" }, { - "codePostal": "07140", - "codeCommune": "07284", - "libelleAcheminement": "ST PIERRE ST JEAN", - "nomCommune": "ST PIERRE ST JEAN" + "codePostal": "45480", + "codeCommune": "45025", + "libelleAcheminement": "BAZOCHES LES GALLERANDES", + "nomCommune": "BAZOCHES LES GALLERANDES" }, { - "codePostal": "67270", - "codeCommune": "67530", - "libelleAcheminement": "WICKERSHEIM WILSHAUSEN", - "nomCommune": "WICKERSHEIM WILSHAUSEN" + "codePostal": "44270", + "codeCommune": "44090", + "libelleAcheminement": "LA MARNE", + "nomCommune": "LA MARNE" }, { - "codePostal": "35730", - "codeCommune": "35228", - "libelleAcheminement": "PLEURTUIT", - "nomCommune": "PLEURTUIT" + "codePostal": "31360", + "codeCommune": "31050", + "libelleAcheminement": "BEAUCHALOT", + "nomCommune": "BEAUCHALOT" }, { - "codePostal": "60600", - "codeCommune": "60345", - "libelleAcheminement": "LAMECOURT", - "nomCommune": "LAMECOURT" + "codePostal": "32230", + "codeCommune": "32144", + "libelleAcheminement": "GAZAX ET BACCARISSE", + "nomCommune": "GAZAX ET BACCARISSE" }, { - "codePostal": "07700", - "codeCommune": "07291", - "libelleAcheminement": "ST REMEZE", - "nomCommune": "ST REMEZE" + "codePostal": "45190", + "codeCommune": "45028", + "libelleAcheminement": "BEAUGENCY", + "nomCommune": "BEAUGENCY" }, { - "codePostal": "67110", - "codeCommune": "67536", - "libelleAcheminement": "WINDSTEIN", - "nomCommune": "WINDSTEIN" + "codePostal": "44550", + "codeCommune": "44103", + "libelleAcheminement": "MONTOIR DE BRETAGNE", + "nomCommune": "MONTOIR DE BRETAGNE" }, { - "codePostal": "35240", - "codeCommune": "35239", - "libelleAcheminement": "RETIERS", - "nomCommune": "RETIERS" + "codePostal": "31850", + "codeCommune": "31053", + "libelleAcheminement": "BEAUPUY", + "nomCommune": "BEAUPUY" }, { - "codePostal": "60420", - "codeCommune": "60357", - "libelleAcheminement": "LEGLANTIERS", - "nomCommune": "LEGLANTIERS" + "codePostal": "32720", + "codeCommune": "32145", + "libelleAcheminement": "GEE RIVIERE", + "nomCommune": "GEE RIVIERE" }, { - "codePostal": "07290", - "codeCommune": "07292", - "libelleAcheminement": "ST ROMAIN D AY", - "nomCommune": "ST ROMAIN D AY" + "codePostal": "45340", + "codeCommune": "45030", + "libelleAcheminement": "BEAUNE LA ROLANDE", + "nomCommune": "BEAUNE LA ROLANDE" }, { - "codePostal": "67170", - "codeCommune": "67539", - "libelleAcheminement": "WINGERSHEIM LES QUATRE BANS", - "nomCommune": "WINGERSHEIM LES QUATRE BANS" + "codePostal": "44760", + "codeCommune": "44106", + "libelleAcheminement": "LES MOUTIERS EN RETZ", + "nomCommune": "LES MOUTIERS EN RETZ" }, { - "codePostal": "35650", - "codeCommune": "35240", - "libelleAcheminement": "LE RHEU", - "nomCommune": "LE RHEU" + "codePostal": "31460", + "codeCommune": "31055", + "libelleAcheminement": "BEAUVILLE", + "nomCommune": "BEAUVILLE" }, { - "codePostal": "60650", - "codeCommune": "60359", - "libelleAcheminement": "LHERAULE", - "nomCommune": "LHERAULE" + "codePostal": "32500", + "codeCommune": "32150", + "libelleAcheminement": "GOUTZ", + "nomCommune": "GOUTZ" }, { - "codePostal": "07210", - "codeCommune": "07298", - "libelleAcheminement": "ST SYMPHORIEN SOUS CHOMERAC", - "nomCommune": "ST SYMPHORIEN SOUS CHOMERAC" + "codePostal": "45210", + "codeCommune": "45032", + "libelleAcheminement": "LE BIGNON MIRABEAU", + "nomCommune": "LE BIGNON MIRABEAU" }, { - "codePostal": "67130", - "codeCommune": "67543", - "libelleAcheminement": "WISCHES", - "nomCommune": "WISCHES" + "codePostal": "44330", + "codeCommune": "44108", + "libelleAcheminement": "MOUZILLON", + "nomCommune": "MOUZILLON" }, { - "codePostal": "35390", - "codeCommune": "35249", - "libelleAcheminement": "STE ANNE SUR VILAINE", - "nomCommune": "STE ANNE SUR VILAINE" + "codePostal": "31450", + "codeCommune": "31058", + "libelleAcheminement": "BELBEZE DE LAURAGAIS", + "nomCommune": "BELBEZE DE LAURAGAIS" }, { - "codePostal": "60480", - "codeCommune": "60377", - "libelleAcheminement": "MAISONCELLE TUILERIE", - "nomCommune": "MAISONCELLE TUILERIE" + "codePostal": "32550", + "codeCommune": "32153", + "libelleAcheminement": "HAULIES", + "nomCommune": "HAULIES" }, { - "codePostal": "07210", - "codeCommune": "07302", - "libelleAcheminement": "ST VINCENT DE BARRES", - "nomCommune": "ST VINCENT DE BARRES" + "codePostal": "45340", + "codeCommune": "45035", + "libelleAcheminement": "BOISCOMMUN", + "nomCommune": "BOISCOMMUN" }, { - "codePostal": "67670", - "codeCommune": "67546", - "libelleAcheminement": "WITTERSHEIM", - "nomCommune": "WITTERSHEIM" + "codePostal": "44000", + "codeCommune": "44109", + "libelleAcheminement": "NANTES", + "nomCommune": "NANTES" }, { - "codePostal": "35133", - "codeCommune": "35273", - "libelleAcheminement": "ST GERMAIN EN COGLES", - "nomCommune": "ST GERMAIN EN COGLES" + "codePostal": "31370", + "codeCommune": "31065", + "libelleAcheminement": "BERAT", + "nomCommune": "BERAT" }, { - "codePostal": "60490", - "codeCommune": "60386", - "libelleAcheminement": "MARQUEGLISE", - "nomCommune": "MARQUEGLISE" + "codePostal": "32460", + "codeCommune": "32155", + "libelleAcheminement": "LE HOUGA", + "nomCommune": "LE HOUGA" }, { - "codePostal": "07150", - "codeCommune": "07304", - "libelleAcheminement": "SALAVAS", - "nomCommune": "SALAVAS" + "codePostal": "45460", + "codeCommune": "45042", + "libelleAcheminement": "LES BORDES", + "nomCommune": "LES BORDES" }, { - "codePostal": "67700", - "codeCommune": "67553", - "libelleAcheminement": "WOLSCHHEIM", - "nomCommune": "WOLSCHHEIM" + "codePostal": "44390", + "codeCommune": "44110", + "libelleAcheminement": "NORT SUR ERDRE", + "nomCommune": "NORT SUR ERDRE" }, { - "codePostal": "35590", - "codeCommune": "35275", - "libelleAcheminement": "ST GILLES", - "nomCommune": "ST GILLES" + "codePostal": "31110", + "codeCommune": "31068", + "libelleAcheminement": "BILLIERE", + "nomCommune": "BILLIERE" }, { - "codePostal": "60110", - "codeCommune": "60395", - "libelleAcheminement": "MERU", - "nomCommune": "MERU" + "codePostal": "32300", + "codeCommune": "32156", + "libelleAcheminement": "IDRAC RESPAILLES", + "nomCommune": "IDRAC RESPAILLES" }, { - "codePostal": "07140", - "codeCommune": "07305", - "libelleAcheminement": "LES SALELLES", - "nomCommune": "LES SALELLES" + "codePostal": "45460", + "codeCommune": "45051", + "libelleAcheminement": "BRAY ST AIGNAN", + "nomCommune": "BRAY ST AIGNAN" }, { - "codePostal": "67310", - "codeCommune": "67556", - "libelleAcheminement": "ZEINHEIM", - "nomCommune": "ZEINHEIM" + "codePostal": "44170", + "codeCommune": "44113", + "libelleAcheminement": "NOZAY", + "nomCommune": "NOZAY" }, { - "codePostal": "35750", - "codeCommune": "35277", - "libelleAcheminement": "ST GONLAY", - "nomCommune": "ST GONLAY" + "codePostal": "31470", + "codeCommune": "31075", + "libelleAcheminement": "BONREPOS SUR AUSSONNELLE", + "nomCommune": "BONREPOS SUR AUSSONNELLE" }, { - "codePostal": "60130", - "codeCommune": "60400", - "libelleAcheminement": "LE MESNIL SUR BULLES", - "nomCommune": "LE MESNIL SUR BULLES" + "codePostal": "32190", + "codeCommune": "32166", + "libelleAcheminement": "JUSTIAN", + "nomCommune": "JUSTIAN" }, { - "codePostal": "07120", - "codeCommune": "07306", - "libelleAcheminement": "SAMPZON", - "nomCommune": "SAMPZON" + "codePostal": "45410", + "codeCommune": "45058", + "libelleAcheminement": "BUCY LE ROI", + "nomCommune": "BUCY LE ROI" }, { - "codePostal": "68320", - "codeCommune": "68009", - "libelleAcheminement": "ARTZENHEIM", - "nomCommune": "ARTZENHEIM" + "codePostal": "44390", + "codeCommune": "44122", + "libelleAcheminement": "PETIT MARS", + "nomCommune": "PETIT MARS" }, { - "codePostal": "35430", - "codeCommune": "35279", - "libelleAcheminement": "ST GUINOUX", - "nomCommune": "ST GUINOUX" + "codePostal": "31340", + "codeCommune": "31077", + "libelleAcheminement": "LE BORN", + "nomCommune": "LE BORN" }, { - "codePostal": "60140", - "codeCommune": "60404", - "libelleAcheminement": "MOGNEVILLE", - "nomCommune": "MOGNEVILLE" + "codePostal": "32260", + "codeCommune": "32169", + "libelleAcheminement": "LABARTHE", + "nomCommune": "LABARTHE" }, { - "codePostal": "07380", - "codeCommune": "07315", - "libelleAcheminement": "LA SOUCHE", - "nomCommune": "LA SOUCHE" + "codePostal": "45120", + "codeCommune": "45061", + "libelleAcheminement": "CEPOY", + "nomCommune": "CEPOY" }, { - "codePostal": "68490", - "codeCommune": "68020", - "libelleAcheminement": "BANTZENHEIM", - "nomCommune": "BANTZENHEIM" + "codePostal": "44290", + "codeCommune": "44123", + "libelleAcheminement": "PIERRIC", + "nomCommune": "PIERRIC" }, { - "codePostal": "35140", - "codeCommune": "35280", - "libelleAcheminement": "ST HILAIRE DES LANDES", - "nomCommune": "ST HILAIRE DES LANDES" + "codePostal": "31580", + "codeCommune": "31078", + "libelleAcheminement": "BOUDRAC", + "nomCommune": "BOUDRAC" }, { - "codePostal": "60290", - "codeCommune": "60409", - "libelleAcheminement": "MONCHY ST ELOI", - "nomCommune": "MONCHY ST ELOI" + "codePostal": "32400", + "codeCommune": "32170", + "libelleAcheminement": "LABARTHETE", + "nomCommune": "LABARTHETE" }, { - "codePostal": "07340", - "codeCommune": "07321", - "libelleAcheminement": "THORRENC", - "nomCommune": "THORRENC" + "codePostal": "45340", + "codeCommune": "45069", + "libelleAcheminement": "CHAMBON LA FORET", + "nomCommune": "CHAMBON LA FORET" }, { - "codePostal": "68870", - "codeCommune": "68021", - "libelleAcheminement": "BARTENHEIM", - "nomCommune": "BARTENHEIM" + "codePostal": "44420", + "codeCommune": "44125", + "libelleAcheminement": "PIRIAC SUR MER", + "nomCommune": "PIRIAC SUR MER" }, { - "codePostal": "35550", - "codeCommune": "35285", - "libelleAcheminement": "ST JUST", - "nomCommune": "ST JUST" + "codePostal": "31620", + "codeCommune": "31079", + "libelleAcheminement": "BOULOC", + "nomCommune": "BOULOC" }, { - "codePostal": "60160", - "codeCommune": "60414", - "libelleAcheminement": "MONTATAIRE", - "nomCommune": "MONTATAIRE" + "codePostal": "32700", + "codeCommune": "32176", + "libelleAcheminement": "LAGARDE FIMARCON", + "nomCommune": "LAGARDE" }, { - "codePostal": "07330", - "codeCommune": "07322", - "libelleAcheminement": "THUEYTS", - "nomCommune": "THUEYTS" + "codePostal": "45270", + "codeCommune": "45078", + "libelleAcheminement": "CHAPELON", + "nomCommune": "CHAPELON" }, { - "codePostal": "68980", - "codeCommune": "68023", - "libelleAcheminement": "BEBLENHEIM", - "nomCommune": "BEBLENHEIM" + "codePostal": "44140", + "codeCommune": "44127", + "libelleAcheminement": "LA PLANCHE", + "nomCommune": "LA PLANCHE" }, { - "codePostal": "35400", - "codeCommune": "35288", - "libelleAcheminement": "ST MALO", - "nomCommune": "ST MALO" + "codePostal": "31420", + "codeCommune": "31083", + "libelleAcheminement": "BOUSSAN", + "nomCommune": "BOUSSAN" }, { - "codePostal": "60190", - "codeCommune": "60418", - "libelleAcheminement": "MONTIERS", - "nomCommune": "MONTIERS" + "codePostal": "32330", + "codeCommune": "32180", + "libelleAcheminement": "LAGRAULET DU GERS", + "nomCommune": "LAGRAULET DU GERS" }, { - "codePostal": "07300", - "codeCommune": "07324", - "libelleAcheminement": "TOURNON SUR RHONE", - "nomCommune": "TOURNON SUR RHONE" + "codePostal": "45480", + "codeCommune": "45080", + "libelleAcheminement": "CHARMONT EN BEAUCE", + "nomCommune": "CHARMONT EN BEAUCE" }, { - "codePostal": "68210", - "codeCommune": "68024", - "libelleAcheminement": "BELLEMAGNY", - "nomCommune": "BELLEMAGNY" + "codePostal": "44860", + "codeCommune": "44130", + "libelleAcheminement": "PONT ST MARTIN", + "nomCommune": "PONT ST MARTIN" }, { - "codePostal": "35750", - "codeCommune": "35290", - "libelleAcheminement": "ST MALON SUR MEL", - "nomCommune": "ST MALON SUR MEL" + "codePostal": "31360", + "codeCommune": "31084", + "libelleAcheminement": "BOUSSENS", + "nomCommune": "BOUSSENS" }, { - "codePostal": "60300", - "codeCommune": "60422", - "libelleAcheminement": "MONTLOGNON", - "nomCommune": "MONTLOGNON" + "codePostal": "32140", + "codeCommune": "32185", + "libelleAcheminement": "LALANNE ARQUE", + "nomCommune": "LALANNE ARQUE" }, { - "codePostal": "07600", - "codeCommune": "07331", - "libelleAcheminement": "VALS LES BAINS", - "nomCommune": "VALS LES BAINS" + "codePostal": "45360", + "codeCommune": "45087", + "libelleAcheminement": "CHATILLON SUR LOIRE", + "nomCommune": "CHATILLON SUR LOIRE" }, { - "codePostal": "68500", - "codeCommune": "68032", - "libelleAcheminement": "BERRWILLER", - "nomCommune": "BERRWILLER" + "codePostal": "44210", + "codeCommune": "44131", + "libelleAcheminement": "PORNIC", + "nomCommune": "PORNIC" }, { - "codePostal": "35560", - "codeCommune": "35309", - "libelleAcheminement": "ST REMY DU PLAIN", - "nomCommune": "ST REMY DU PLAIN" + "codePostal": "31160", + "codeCommune": "31085", + "libelleAcheminement": "BOUTX", + "nomCommune": "BOUTX" }, { - "codePostal": "60134", - "codeCommune": "60426", - "libelleAcheminement": "MONTREUIL SUR THERAIN", - "nomCommune": "MONTREUIL SUR THERAIN" + "codePostal": "32190", + "codeCommune": "32190", + "libelleAcheminement": "LANNEPAX", + "nomCommune": "LANNEPAX" }, { - "codePostal": "07690", - "codeCommune": "07333", - "libelleAcheminement": "VANOSC", - "nomCommune": "VANOSC" + "codePostal": "45700", + "codeCommune": "45102", + "libelleAcheminement": "CONFLANS SUR LOING", + "nomCommune": "CONFLANS SUR LOING" }, { - "codePostal": "68480", - "codeCommune": "68034", - "libelleAcheminement": "BETTLACH", - "nomCommune": "BETTLACH" + "codePostal": "44510", + "codeCommune": "44135", + "libelleAcheminement": "LE POULIGUEN", + "nomCommune": "LE POULIGUEN" }, { - "codePostal": "35330", - "codeCommune": "35311", - "libelleAcheminement": "ST SEGLIN", - "nomCommune": "ST SEGLIN" + "codePostal": "31160", + "codeCommune": "31085", + "libelleAcheminement": "BOUTX", + "nomCommune": "BOUTX" }, { - "codePostal": "60570", - "codeCommune": "60433", - "libelleAcheminement": "MORTEFONTAINE EN THELLE", - "nomCommune": "MORTEFONTAINE EN THELLE" + "codePostal": "32110", + "codeCommune": "32191", + "libelleAcheminement": "LANNE SOUBIRAN", + "nomCommune": "LANNE SOUBIRAN" }, { - "codePostal": "07000", - "codeCommune": "07340", - "libelleAcheminement": "VEYRAS", - "nomCommune": "VEYRAS" + "codePostal": "45130", + "codeCommune": "45109", + "libelleAcheminement": "COULMIERS", + "nomCommune": "COULMIERS" }, { - "codePostal": "68600", - "codeCommune": "68036", - "libelleAcheminement": "BIESHEIM", - "nomCommune": "BIESHEIM" + "codePostal": "44770", + "codeCommune": "44136", + "libelleAcheminement": "PREFAILLES", + "nomCommune": "PREFAILLES" }, { - "codePostal": "35250", - "codeCommune": "35315", - "libelleAcheminement": "ST SULPICE LA FORET", - "nomCommune": "ST SULPICE LA FORET" + "codePostal": "31160", + "codeCommune": "31095", + "libelleAcheminement": "CABANAC CAZAUX", + "nomCommune": "CABANAC CAZAUX" }, { - "codePostal": "60490", - "codeCommune": "60434", - "libelleAcheminement": "MORTEMER", - "nomCommune": "MORTEMER" + "codePostal": "32480", + "codeCommune": "32195", + "libelleAcheminement": "LARROQUE ENGALIN", + "nomCommune": "LARROQUE ENGALIN" }, { - "codePostal": "08310", - "codeCommune": "08005", - "libelleAcheminement": "ALINCOURT", - "nomCommune": "ALINCOURT" + "codePostal": "45490", + "codeCommune": "45114", + "libelleAcheminement": "COURTEMPIERRE", + "nomCommune": "COURTEMPIERRE" }, { - "codePostal": "68580", - "codeCommune": "68039", - "libelleAcheminement": "BISEL", - "nomCommune": "BISEL" + "codePostal": "44140", + "codeCommune": "44142", + "libelleAcheminement": "REMOUILLE", + "nomCommune": "REMOUILLE" }, { - "codePostal": "35360", - "codeCommune": "35320", - "libelleAcheminement": "ST UNIAC", - "nomCommune": "ST UNIAC" + "codePostal": "31480", + "codeCommune": "31096", + "libelleAcheminement": "CABANAC SEGUENVILLE", + "nomCommune": "CABANAC SEGUENVILLE" }, { - "codePostal": "60380", - "codeCommune": "60435", - "libelleAcheminement": "MORVILLERS", - "nomCommune": "MORVILLERS" + "codePostal": "32110", + "codeCommune": "32202", + "libelleAcheminement": "LAUJUZAN", + "nomCommune": "LAUJUZAN" }, { - "codePostal": "08300", - "codeCommune": "08021", - "libelleAcheminement": "ARNICOURT", - "nomCommune": "ARNICOURT" + "codePostal": "45420", + "codeCommune": "45120", + "libelleAcheminement": "DAMMARIE EN PUISAYE", + "nomCommune": "DAMMARIE EN PUISAYE" }, { - "codePostal": "68290", - "codeCommune": "68045", - "libelleAcheminement": "BOURBACH LE BAS", - "nomCommune": "BOURBACH LE BAS" + "codePostal": "44440", + "codeCommune": "44144", + "libelleAcheminement": "RIAILLE", + "nomCommune": "RIAILLE" }, { - "codePostal": "35610", - "codeCommune": "35339", - "libelleAcheminement": "TRANS LA FORET", - "nomCommune": "TRANS LA FORET" + "codePostal": "31560", + "codeCommune": "31100", + "libelleAcheminement": "CALMONT", + "nomCommune": "CALMONT" }, { - "codePostal": "60250", - "codeCommune": "60437", - "libelleAcheminement": "MOUCHY LE CHATEL", - "nomCommune": "MOUCHY LE CHATEL" + "codePostal": "32230", + "codeCommune": "32205", + "libelleAcheminement": "LAVERAET", + "nomCommune": "LAVERAET" }, { - "codePostal": "08150", - "codeCommune": "08026", - "libelleAcheminement": "AUBIGNY LES POTHEES", - "nomCommune": "AUBIGNY LES POTHEES" + "codePostal": "45230", + "codeCommune": "45121", + "libelleAcheminement": "DAMMARIE SUR LOING", + "nomCommune": "DAMMARIE SUR LOING" }, { - "codePostal": "68870", - "codeCommune": "68054", - "libelleAcheminement": "BRINCKHEIM", - "nomCommune": "BRINCKHEIM" + "codePostal": "44110", + "codeCommune": "44153", + "libelleAcheminement": "ST AUBIN DES CHATEAUX", + "nomCommune": "ST AUBIN DES CHATEAUX" }, { - "codePostal": "36140", - "codeCommune": "36001", - "libelleAcheminement": "AIGURANDE", - "nomCommune": "AIGURANDE" + "codePostal": "31410", + "codeCommune": "31104", + "libelleAcheminement": "CAPENS", + "nomCommune": "CAPENS" }, { - "codePostal": "60190", - "codeCommune": "60440", - "libelleAcheminement": "MOYENNEVILLE", - "nomCommune": "MOYENNEVILLE" + "codePostal": "32600", + "codeCommune": "32210", + "libelleAcheminement": "LIAS", + "nomCommune": "LIAS" }, { - "codePostal": "08240", - "codeCommune": "08035", - "libelleAcheminement": "AUTRUCHE", - "nomCommune": "AUTRUCHE" + "codePostal": "45390", + "codeCommune": "45124", + "libelleAcheminement": "DESMONTS", + "nomCommune": "DESMONTS" }, { - "codePostal": "68600", - "codeCommune": "68069", - "libelleAcheminement": "DESSENHEIM", - "nomCommune": "DESSENHEIM" + "codePostal": "44310", + "codeCommune": "44155", + "libelleAcheminement": "ST COLOMBAN", + "nomCommune": "ST COLOMBAN" }, { - "codePostal": "36200", - "codeCommune": "36006", - "libelleAcheminement": "ARGENTON SUR CREUSE", - "nomCommune": "ARGENTON SUR CREUSE" + "codePostal": "31390", + "codeCommune": "31107", + "libelleAcheminement": "CARBONNE", + "nomCommune": "CARBONNE" }, { - "codePostal": "60480", - "codeCommune": "60442", - "libelleAcheminement": "MUIDORGE", - "nomCommune": "MUIDORGE" + "codePostal": "32480", + "codeCommune": "32212", + "libelleAcheminement": "LIGARDES", + "nomCommune": "LIGARDES" }, { - "codePostal": "08260", - "codeCommune": "08037", - "libelleAcheminement": "AUVILLERS LES FORGES", - "nomCommune": "AUVILLERS LES FORGES" + "codePostal": "45370", + "codeCommune": "45130", + "libelleAcheminement": "DRY", + "nomCommune": "DRY" }, { - "codePostal": "68440", - "codeCommune": "68072", - "libelleAcheminement": "DIETWILLER", - "nomCommune": "DIETWILLER" + "codePostal": "44360", + "codeCommune": "44158", + "libelleAcheminement": "ST ETIENNE DE MONTLUC", + "nomCommune": "ST ETIENNE DE MONTLUC" }, { - "codePostal": "36290", - "codeCommune": "36010", - "libelleAcheminement": "AZAY LE FERRON", - "nomCommune": "AZAY LE FERRON" + "codePostal": "31260", + "codeCommune": "31110", + "libelleAcheminement": "CASSAGNE", + "nomCommune": "CASSAGNE" }, { - "codePostal": "60220", - "codeCommune": "60444", - "libelleAcheminement": "MUREAUMONT", - "nomCommune": "MUREAUMONT" + "codePostal": "32300", + "codeCommune": "32215", + "libelleAcheminement": "LOUBERSAN", + "nomCommune": "LOUBERSAN" }, { - "codePostal": "08190", - "codeCommune": "08039", - "libelleAcheminement": "AVAUX", - "nomCommune": "AVAUX" + "codePostal": "45340", + "codeCommune": "45132", + "libelleAcheminement": "EGRY", + "nomCommune": "EGRY" }, { - "codePostal": "68480", - "codeCommune": "68074", - "libelleAcheminement": "DURLINSDORF", - "nomCommune": "DURLINSDORF" + "codePostal": "44540", + "codeCommune": "44180", + "libelleAcheminement": "VALLONS DE L ERDRE", + "nomCommune": "VALLONS DE L ERDRE" }, { - "codePostal": "36310", - "codeCommune": "36020", - "libelleAcheminement": "BONNEUIL", - "nomCommune": "BONNEUIL" + "codePostal": "31780", + "codeCommune": "31116", + "libelleAcheminement": "CASTELGINEST", + "nomCommune": "CASTELGINEST" }, { - "codePostal": "60190", - "codeCommune": "60449", - "libelleAcheminement": "NEUFVY SUR ARONDE", - "nomCommune": "NEUFVY SUR ARONDE" + "codePostal": "32290", + "codeCommune": "32218", + "libelleAcheminement": "LOUSSOUS DEBAT", + "nomCommune": "LOUSSOUS DEBAT" }, { - "codePostal": "08200", - "codeCommune": "08043", - "libelleAcheminement": "BALAN", - "nomCommune": "BALAN" + "codePostal": "45300", + "codeCommune": "45133", + "libelleAcheminement": "ENGENVILLE", + "nomCommune": "ENGENVILLE" }, { - "codePostal": "68720", - "codeCommune": "68077", - "libelleAcheminement": "EGLINGEN", - "nomCommune": "EGLINGEN" + "codePostal": "44320", + "codeCommune": "44187", + "libelleAcheminement": "ST PERE EN RETZ", + "nomCommune": "ST PERE EN RETZ" }, { - "codePostal": "36200", - "codeCommune": "36022", - "libelleAcheminement": "BOUESSE", - "nomCommune": "BOUESSE" + "codePostal": "31620", + "codeCommune": "31118", + "libelleAcheminement": "CASTELNAU D ESTRETEFONDS", + "nomCommune": "CASTELNAU D ESTRETEFONDS" }, { - "codePostal": "60400", - "codeCommune": "60471", - "libelleAcheminement": "NOYON", - "nomCommune": "NOYON" + "codePostal": "32370", + "codeCommune": "32227", + "libelleAcheminement": "MANCIET", + "nomCommune": "MANCIET" }, { - "codePostal": "08220", - "codeCommune": "08046", - "libelleAcheminement": "BANOGNE RECOUVRANCE", - "nomCommune": "BANOGNE RECOUVRANCE" + "codePostal": "45300", + "codeCommune": "45139", + "libelleAcheminement": "ESTOUY", + "nomCommune": "ESTOUY" }, { - "codePostal": "68130", - "codeCommune": "68080", - "libelleAcheminement": "EMLINGEN", - "nomCommune": "EMLINGEN" + "codePostal": "44110", + "codeCommune": "44199", + "libelleAcheminement": "SOUDAN", + "nomCommune": "SOUDAN" }, { - "codePostal": "36110", - "codeCommune": "36024", - "libelleAcheminement": "BRETAGNE", - "nomCommune": "BRETAGNE" + "codePostal": "31530", + "codeCommune": "31120", + "libelleAcheminement": "LE CASTERA", + "nomCommune": "LE CASTERA" }, { - "codePostal": "60560", - "codeCommune": "60482", - "libelleAcheminement": "ORRY LA VILLE", - "nomCommune": "ORRY LA VILLE" + "codePostal": "32230", + "codeCommune": "32233", + "libelleAcheminement": "MARCIAC", + "nomCommune": "MARCIAC" }, { - "codePostal": "08210", - "codeCommune": "08055", - "libelleAcheminement": "BEAUMONT EN ARGONNE", - "nomCommune": "BEAUMONT EN ARGONNE" + "codePostal": "45230", + "codeCommune": "45143", + "libelleAcheminement": "FEINS EN GATINAIS", + "nomCommune": "FEINS EN GATINAIS" }, { - "codePostal": "68440", - "codeCommune": "68084", - "libelleAcheminement": "ESCHENTZWILLER", - "nomCommune": "ESCHENTZWILLER" + "codePostal": "44240", + "codeCommune": "44201", + "libelleAcheminement": "SUCE SUR ERDRE", + "nomCommune": "SUCE SUR ERDRE" }, { - "codePostal": "36140", - "codeCommune": "36028", - "libelleAcheminement": "LA BUXERETTE", - "nomCommune": "LA BUXERETTE" + "codePostal": "31430", + "codeCommune": "31122", + "libelleAcheminement": "CASTIES LABRANDE", + "nomCommune": "CASTIES LABRANDE" }, { - "codePostal": "60490", - "codeCommune": "60483", - "libelleAcheminement": "ORVILLERS SOREL", - "nomCommune": "ORVILLERS SOREL" + "codePostal": "32230", + "codeCommune": "32240", + "libelleAcheminement": "MASCARAS", + "nomCommune": "MASCARAS" }, { - "codePostal": "08240", - "codeCommune": "08057", - "libelleAcheminement": "BELLEVILLE ET CHATILLON SUR BAR", - "nomCommune": "BELLEVILLE ET CHATILLON SUR BAR" + "codePostal": "45210", + "codeCommune": "45148", + "libelleAcheminement": "FONTENAY SUR LOING", + "nomCommune": "FONTENAY SUR LOING" }, { - "codePostal": "68210", - "codeCommune": "68086", - "libelleAcheminement": "FALKWILLER", - "nomCommune": "FALKWILLER" + "codePostal": "44360", + "codeCommune": "44203", + "libelleAcheminement": "LE TEMPLE DE BRETAGNE", + "nomCommune": "LE TEMPLE DE BRETAGNE" }, { - "codePostal": "36200", - "codeCommune": "36032", - "libelleAcheminement": "CEAULMONT", - "nomCommune": "CEAULMONT" + "codePostal": "31190", + "codeCommune": "31128", + "libelleAcheminement": "CAUJAC", + "nomCommune": "CAUJAC" }, { - "codePostal": "60400", - "codeCommune": "60488", - "libelleAcheminement": "PASSEL", - "nomCommune": "PASSEL" + "codePostal": "32140", + "codeCommune": "32242", + "libelleAcheminement": "MASSEUBE", + "nomCommune": "MASSEUBE" }, { - "codePostal": "08090", - "codeCommune": "08058", - "libelleAcheminement": "BELVAL", - "nomCommune": "BELVAL" + "codePostal": "45320", + "codeCommune": "45149", + "libelleAcheminement": "FOUCHEROLLES", + "nomCommune": "FOUCHEROLLES" }, { - "codePostal": "68640", - "codeCommune": "68087", - "libelleAcheminement": "FELDBACH", - "nomCommune": "FELDBACH" + "codePostal": "44570", + "codeCommune": "44210", + "libelleAcheminement": "TRIGNAC", + "nomCommune": "TRIGNAC" }, { - "codePostal": "36310", - "codeCommune": "36035", - "libelleAcheminement": "CHAILLAC", - "nomCommune": "CHAILLAC" + "codePostal": "31110", + "codeCommune": "31129", + "libelleAcheminement": "CAZARILH LASPENES", + "nomCommune": "CAZARILH LASPENES" }, { - "codePostal": "60860", - "codeCommune": "60493", - "libelleAcheminement": "PISSELEU", - "nomCommune": "PISSELEU" + "codePostal": "32150", + "codeCommune": "32264", + "libelleAcheminement": "MONCLAR D ARMAGNAC", + "nomCommune": "MONCLAR" }, { - "codePostal": "08240", - "codeCommune": "08059", - "libelleAcheminement": "BELVAL BOIS DES DAMES", - "nomCommune": "BELVAL BOIS DES DAMES" + "codePostal": "45310", + "codeCommune": "45152", + "libelleAcheminement": "GEMIGNY", + "nomCommune": "GEMIGNY" }, { - "codePostal": "68540", - "codeCommune": "68088", - "libelleAcheminement": "FELDKIRCH", - "nomCommune": "FELDKIRCH" + "codePostal": "44370", + "codeCommune": "44213", + "libelleAcheminement": "LOIREAUXENCE", + "nomCommune": "LOIREAUXENCE" }, { - "codePostal": "36100", - "codeCommune": "36037", - "libelleAcheminement": "LA CHAMPENOISE", - "nomCommune": "LA CHAMPENOISE" + "codePostal": "31420", + "codeCommune": "31134", + "libelleAcheminement": "CAZENEUVE MONTAUT", + "nomCommune": "CAZENEUVE MONTAUT" }, { - "codePostal": "60640", - "codeCommune": "60519", - "libelleAcheminement": "QUESMY", - "nomCommune": "QUESMY" + "codePostal": "32490", + "codeCommune": "32268", + "libelleAcheminement": "MONFERRAN SAVES", + "nomCommune": "MONFERRAN SAVES" }, { - "codePostal": "08450", - "codeCommune": "08063", - "libelleAcheminement": "LA BESACE", - "nomCommune": "LA BESACE" + "codePostal": "45480", + "codeCommune": "45160", + "libelleAcheminement": "GRENEVILLE EN BEAUCE", + "nomCommune": "GRENEVILLE EN BEAUCE" }, { - "codePostal": "68220", - "codeCommune": "68094", - "libelleAcheminement": "FOLGENSBOURG", - "nomCommune": "FOLGENSBOURG" + "codePostal": "44120", + "codeCommune": "44215", + "libelleAcheminement": "VERTOU", + "nomCommune": "VERTOU" }, { - "codePostal": "36000", - "codeCommune": "36044", - "libelleAcheminement": "CHATEAUROUX", - "nomCommune": "CHATEAUROUX" + "codePostal": "31160", + "codeCommune": "31140", + "libelleAcheminement": "CHEIN DESSUS", + "nomCommune": "CHEIN DESSUS" }, { - "codePostal": "60155", - "codeCommune": "60523", - "libelleAcheminement": "RAINVILLERS", - "nomCommune": "RAINVILLERS" + "codePostal": "32240", + "codeCommune": "32271", + "libelleAcheminement": "MONGUILHEM", + "nomCommune": "MONGUILHEM" }, { - "codePostal": "08430", - "codeCommune": "08080", - "libelleAcheminement": "BOUVELLEMONT", - "nomCommune": "BOUVELLEMONT" + "codePostal": "45300", + "codeCommune": "45162", + "libelleAcheminement": "GUIGNEVILLE", + "nomCommune": "GUIGNEVILLE" }, { - "codePostal": "68210", - "codeCommune": "68100", - "libelleAcheminement": "FULLEREN", - "nomCommune": "FULLEREN" + "codePostal": "44360", + "codeCommune": "44217", + "libelleAcheminement": "VIGNEUX DE BRETAGNE", + "nomCommune": "VIGNEUX DE BRETAGNE" }, { - "codePostal": "36340", - "codeCommune": "36056", - "libelleAcheminement": "CLUIS", - "nomCommune": "CLUIS" + "codePostal": "31110", + "codeCommune": "31142", + "libelleAcheminement": "CIER DE LUCHON", + "nomCommune": "CIER DE LUCHON" }, { - "codePostal": "60130", - "codeCommune": "60526", - "libelleAcheminement": "RAVENEL", - "nomCommune": "RAVENEL" + "codePostal": "32140", + "codeCommune": "32272", + "libelleAcheminement": "MONLAUR BERNET", + "nomCommune": "MONLAUR BERNET" }, { - "codePostal": "08400", - "codeCommune": "08082", - "libelleAcheminement": "BRECY BRIERES", - "nomCommune": "BRECY BRIERES" + "codePostal": "45600", + "codeCommune": "45164", + "libelleAcheminement": "GUILLY", + "nomCommune": "GUILLY" }, { - "codePostal": "68210", - "codeCommune": "68114", - "libelleAcheminement": "GUEVENATTEN", - "nomCommune": "GUEVENATTEN" + "codePostal": "45200", + "codeCommune": "45004", + "libelleAcheminement": "AMILLY", + "nomCommune": "AMILLY" }, { - "codePostal": "36100", - "codeCommune": "36059", - "libelleAcheminement": "CONDE", - "nomCommune": "CONDE" + "codePostal": "31810", + "codeCommune": "31148", + "libelleAcheminement": "CLERMONT LE FORT", + "nomCommune": "CLERMONT LE FORT" }, { - "codePostal": "60600", - "codeCommune": "60529", - "libelleAcheminement": "REMECOURT", - "nomCommune": "REMECOURT" + "codePostal": "32170", + "codeCommune": "32275", + "libelleAcheminement": "MONPARDIAC", + "nomCommune": "MONPARDIAC" }, { - "codePostal": "08190", - "codeCommune": "08084", - "libelleAcheminement": "BRIENNE SUR AISNE", - "nomCommune": "BRIENNE SUR AISNE" + "codePostal": "45140", + "codeCommune": "45169", + "libelleAcheminement": "INGRE", + "nomCommune": "INGRE" }, { - "codePostal": "68116", - "codeCommune": "68115", - "libelleAcheminement": "GUEWENHEIM", - "nomCommune": "GUEWENHEIM" + "codePostal": "45330", + "codeCommune": "45013", + "libelleAcheminement": "AUGERVILLE LA RIVIERE", + "nomCommune": "AUGERVILLE LA RIVIERE" }, { - "codePostal": "36130", - "codeCommune": "36064", - "libelleAcheminement": "DIORS", - "nomCommune": "DIORS" + "codePostal": "31700", + "codeCommune": "31150", + "libelleAcheminement": "CORNEBARRIEU", + "nomCommune": "CORNEBARRIEU" }, { - "codePostal": "60510", - "codeCommune": "60530", - "libelleAcheminement": "REMERANGLES", - "nomCommune": "REMERANGLES" + "codePostal": "32220", + "codeCommune": "32276", + "libelleAcheminement": "MONTADET", + "nomCommune": "MONTADET" }, { - "codePostal": "08240", - "codeCommune": "08089", - "libelleAcheminement": "BUZANCY", - "nomCommune": "BUZANCY" + "codePostal": "45480", + "codeCommune": "45174", + "libelleAcheminement": "JOUY EN PITHIVERAIS", + "nomCommune": "JOUY EN PITHIVERAIS" }, { - "codePostal": "68140", - "codeCommune": "68117", - "libelleAcheminement": "GUNSBACH", - "nomCommune": "GUNSBACH" + "codePostal": "45500", + "codeCommune": "45016", + "libelleAcheminement": "AUTRY LE CHATEL", + "nomCommune": "AUTRY LE CHATEL" }, { - "codePostal": "36260", - "codeCommune": "36065", - "libelleAcheminement": "DIOU", - "nomCommune": "DIOU" + "codePostal": "31160", + "codeCommune": "31155", + "libelleAcheminement": "COURET", + "nomCommune": "COURET" }, { - "codePostal": "60410", - "codeCommune": "60536", - "libelleAcheminement": "RHUIS", - "nomCommune": "RHUIS" + "codePostal": "32810", + "codeCommune": "32279", + "libelleAcheminement": "MONTAUT LES CRENEAUX", + "nomCommune": "MONTAUT LES CRENEAUX" }, { - "codePostal": "08240", - "codeCommune": "08089", - "libelleAcheminement": "BUZANCY", - "nomCommune": "BUZANCY" + "codePostal": "45370", + "codeCommune": "45175", + "libelleAcheminement": "JOUY LE POTIER", + "nomCommune": "JOUY LE POTIER" }, { - "codePostal": "68420", - "codeCommune": "68123", - "libelleAcheminement": "HATTSTATT", - "nomCommune": "HATTSTATT" + "codePostal": "45130", + "codeCommune": "45019", + "libelleAcheminement": "BACCON", + "nomCommune": "BACCON" }, { - "codePostal": "36700", - "codeCommune": "36074", - "libelleAcheminement": "FLERE LA RIVIERE", - "nomCommune": "FLERE LA RIVIERE" + "codePostal": "31270", + "codeCommune": "31157", + "libelleAcheminement": "CUGNAUX", + "nomCommune": "CUGNAUX" }, { - "codePostal": "60126", - "codeCommune": "60540", - "libelleAcheminement": "RIVECOURT", - "nomCommune": "RIVECOURT" + "codePostal": "32390", + "codeCommune": "32286", + "libelleAcheminement": "MONTESTRUC SUR GERS", + "nomCommune": "MONTESTRUC SUR GERS" }, { - "codePostal": "08200", - "codeCommune": "08101", - "libelleAcheminement": "LA CHAPELLE", - "nomCommune": "LA CHAPELLE" + "codePostal": "45270", + "codeCommune": "45178", + "libelleAcheminement": "LADON", + "nomCommune": "LADON" }, { - "codePostal": "68130", - "codeCommune": "68124", - "libelleAcheminement": "HAUSGAUEN", - "nomCommune": "HAUSGAUEN" + "codePostal": "45480", + "codeCommune": "45025", + "libelleAcheminement": "BAZOCHES LES GALLERANDES", + "nomCommune": "BAZOCHES LES GALLERANDES" }, { - "codePostal": "36180", - "codeCommune": "36080", - "libelleAcheminement": "FREDILLE", - "nomCommune": "FREDILLE" + "codePostal": "31160", + "codeCommune": "31167", + "libelleAcheminement": "ENCAUSSE LES THERMES", + "nomCommune": "ENCAUSSE LES THERMES" }, { - "codePostal": "60120", - "codeCommune": "60544", - "libelleAcheminement": "ROCQUENCOURT", - "nomCommune": "ROCQUENCOURT" + "codePostal": "32250", + "codeCommune": "32290", + "libelleAcheminement": "MONTREAL DU GERS", + "nomCommune": "MONTREAL" }, { - "codePostal": "08220", - "codeCommune": "08102", - "libelleAcheminement": "CHAPPES", - "nomCommune": "CHAPPES" + "codePostal": "45410", + "codeCommune": "45183", + "libelleAcheminement": "LION EN BEAUCE", + "nomCommune": "LION EN BEAUCE" }, { - "codePostal": "68720", - "codeCommune": "68127", - "libelleAcheminement": "HEIDWILLER", - "nomCommune": "HEIDWILLER" + "codePostal": "45270", + "codeCommune": "45027", + "libelleAcheminement": "BEAUCHAMPS SUR HUILLARD", + "nomCommune": "BEAUCHAMPS SUR HUILLARD" }, { - "codePostal": "36190", - "codeCommune": "36081", - "libelleAcheminement": "GARGILESSE DAMPIERRE", - "nomCommune": "GARGILESSE DAMPIERRE" + "codePostal": "31450", + "codeCommune": "31171", + "libelleAcheminement": "ESPANES", + "nomCommune": "ESPANES" }, { - "codePostal": "60440", - "codeCommune": "60546", - "libelleAcheminement": "ROSIERES", - "nomCommune": "ROSIERES" + "codePostal": "32330", + "codeCommune": "32292", + "libelleAcheminement": "MOUCHAN", + "nomCommune": "MOUCHAN" }, { - "codePostal": "08250", - "codeCommune": "08109", - "libelleAcheminement": "CHATEL CHEHERY", - "nomCommune": "CHATEL CHEHERY" + "codePostal": "45700", + "codeCommune": "45185", + "libelleAcheminement": "LOMBREUIL", + "nomCommune": "LOMBREUIL" }, { - "codePostal": "68600", - "codeCommune": "68130", - "libelleAcheminement": "HEITEREN", - "nomCommune": "HEITEREN" + "codePostal": "45630", + "codeCommune": "45029", + "libelleAcheminement": "BEAULIEU SUR LOIRE", + "nomCommune": "BEAULIEU SUR LOIRE" }, { - "codePostal": "36600", - "codeCommune": "36092", - "libelleAcheminement": "LANGE", - "nomCommune": "LANGE" + "codePostal": "31160", + "codeCommune": "31174", + "libelleAcheminement": "ESTADENS", + "nomCommune": "ESTADENS" }, { - "codePostal": "60800", - "codeCommune": "60552", - "libelleAcheminement": "ROUVILLE", - "nomCommune": "ROUVILLE" + "codePostal": "32190", + "codeCommune": "32294", + "libelleAcheminement": "MOUREDE", + "nomCommune": "MOUREDE" }, { - "codePostal": "08450", - "codeCommune": "08115", - "libelleAcheminement": "CHEMERY CHEHERY", - "nomCommune": "CHEMERY CHEHERY" + "codePostal": "45260", + "codeCommune": "45187", + "libelleAcheminement": "LORRIS", + "nomCommune": "LORRIS" }, { - "codePostal": "68600", - "codeCommune": "68136", - "libelleAcheminement": "HETTENSCHLAG", - "nomCommune": "HETTENSCHLAG" + "codePostal": "45340", + "codeCommune": "45035", + "libelleAcheminement": "BOISCOMMUN", + "nomCommune": "BOISCOMMUN" }, { - "codePostal": "36400", - "codeCommune": "36100", - "libelleAcheminement": "LOUROUER ST LAURENT", - "nomCommune": "LOUROUER ST LAURENT" + "codePostal": "31440", + "codeCommune": "31176", + "libelleAcheminement": "ESTENOS", + "nomCommune": "ESTENOS" }, { - "codePostal": "60810", - "codeCommune": "60560", - "libelleAcheminement": "RULLY", - "nomCommune": "RULLY" + "codePostal": "32140", + "codeCommune": "32304", + "libelleAcheminement": "PANASSAC", + "nomCommune": "PANASSAC" }, { - "codePostal": "08390", - "codeCommune": "08116", - "libelleAcheminement": "BAIRON ET SES ENVIRONS", - "nomCommune": "BAIRON ET SES ENVIRONS" + "codePostal": "45470", + "codeCommune": "45188", + "libelleAcheminement": "LOURY", + "nomCommune": "LOURY" }, { - "codePostal": "68118", - "codeCommune": "68139", - "libelleAcheminement": "HIRTZBACH", - "nomCommune": "HIRTZBACH" + "codePostal": "45480", + "codeCommune": "45037", + "libelleAcheminement": "BOISSEAUX", + "nomCommune": "BOISSEAUX" }, { - "codePostal": "36220", - "codeCommune": "36105", - "libelleAcheminement": "LUREUIL", - "nomCommune": "LUREUIL" + "codePostal": "31440", + "codeCommune": "31177", + "libelleAcheminement": "EUP", + "nomCommune": "EUP" }, { - "codePostal": "60700", - "codeCommune": "60562", - "libelleAcheminement": "SACY LE GRAND", - "nomCommune": "SACY LE GRAND" + "codePostal": "32110", + "codeCommune": "32305", + "libelleAcheminement": "PANJAS", + "nomCommune": "PANJAS" }, { - "codePostal": "08390", - "codeCommune": "08116", - "libelleAcheminement": "BAIRON ET SES ENVIRONS", - "nomCommune": "BAIRON ET SES ENVIRONS" + "codePostal": "45210", + "codeCommune": "45189", + "libelleAcheminement": "LOUZOUER", + "nomCommune": "LOUZOUER" }, { - "codePostal": "68740", - "codeCommune": "68140", - "libelleAcheminement": "HIRTZFELDEN", - "nomCommune": "HIRTZFELDEN" + "codePostal": "45460", + "codeCommune": "45039", + "libelleAcheminement": "BONNEE", + "nomCommune": "BONNEE" }, { - "codePostal": "36800", - "codeCommune": "36106", - "libelleAcheminement": "LUZERET", - "nomCommune": "LUZERET" + "codePostal": "31540", + "codeCommune": "31180", + "libelleAcheminement": "FALGA", + "nomCommune": "FALGA" }, { - "codePostal": "60170", - "codeCommune": "60569", - "libelleAcheminement": "ST CREPIN AUX BOIS", - "nomCommune": "ST CREPIN AUX BOIS" + "codePostal": "32460", + "codeCommune": "32310", + "libelleAcheminement": "PERCHEDE", + "nomCommune": "PERCHEDE" }, { - "codePostal": "08400", - "codeCommune": "08116", - "libelleAcheminement": "BAIRON ET SES ENVIRONS", - "nomCommune": "BAIRON ET SES ENVIRONS" + "codePostal": "45330", + "codeCommune": "45191", + "libelleAcheminement": "LE MALESHERBOIS", + "nomCommune": "LE MALESHERBOIS" }, { - "codePostal": "68140", - "codeCommune": "68142", - "libelleAcheminement": "HOHROD", - "nomCommune": "HOHROD" + "codePostal": "45420", + "codeCommune": "45040", + "libelleAcheminement": "BONNY SUR LOIRE", + "nomCommune": "BONNY SUR LOIRE" }, { - "codePostal": "36400", - "codeCommune": "36109", - "libelleAcheminement": "LE MAGNY", - "nomCommune": "LE MAGNY" + "codePostal": "31290", + "codeCommune": "31185", + "libelleAcheminement": "FOLCARDE", + "nomCommune": "FOLCARDE" }, { - "codePostal": "60380", - "codeCommune": "60571", - "libelleAcheminement": "ST DENISCOURT", - "nomCommune": "ST DENISCOURT" + "codePostal": "32320", + "codeCommune": "32315", + "libelleAcheminement": "PEYRUSSE GRANDE", + "nomCommune": "PEYRUSSE GRANDE" }, { - "codePostal": "08250", - "codeCommune": "08120", - "libelleAcheminement": "CHEVIERES", - "nomCommune": "CHEVIERES" + "codePostal": "45220", + "codeCommune": "45199", + "libelleAcheminement": "MELLEROY", + "nomCommune": "MELLEROY" }, { - "codePostal": "68320", - "codeCommune": "68143", - "libelleAcheminement": "PORTE DU RIED", - "nomCommune": "PORTE DU RIED" + "codePostal": "45170", + "codeCommune": "45044", + "libelleAcheminement": "BOUGY LEZ NEUVILLE", + "nomCommune": "BOUGY LEZ NEUVILLE" }, { - "codePostal": "36340", - "codeCommune": "36110", - "libelleAcheminement": "MAILLET", - "nomCommune": "MAILLET" + "codePostal": "31370", + "codeCommune": "31189", + "libelleAcheminement": "FORGUES", + "nomCommune": "FORGUES" }, { - "codePostal": "60370", - "codeCommune": "60574", - "libelleAcheminement": "ST FELIX", - "nomCommune": "ST FELIX" + "codePostal": "32500", + "codeCommune": "32318", + "libelleAcheminement": "PIS", + "nomCommune": "PIS" }, { - "codePostal": "08250", - "codeCommune": "08128", - "libelleAcheminement": "CONDE LES AUTRY", - "nomCommune": "CONDE LES AUTRY" + "codePostal": "45240", + "codeCommune": "45200", + "libelleAcheminement": "MENESTREAU EN VILLETTE", + "nomCommune": "MENESTREAU EN VILLETTE" }, { - "codePostal": "68490", - "codeCommune": "68144", - "libelleAcheminement": "HOMBOURG", - "nomCommune": "HOMBOURG" + "codePostal": "45140", + "codeCommune": "45059", + "libelleAcheminement": "BUCY ST LIPHARD", + "nomCommune": "BUCY ST LIPHARD" }, { - "codePostal": "36340", - "codeCommune": "36111", - "libelleAcheminement": "MALICORNAY", - "nomCommune": "MALICORNAY" + "codePostal": "31440", + "codeCommune": "31190", + "libelleAcheminement": "FOS", + "nomCommune": "FOS" }, { - "codePostal": "60340", - "codeCommune": "60584", - "libelleAcheminement": "ST LEU D ESSERENT", - "nomCommune": "ST LEU D ESSERENT" + "codePostal": "32160", + "codeCommune": "32319", + "libelleAcheminement": "PLAISANCE", + "nomCommune": "PLAISANCE" }, { - "codePostal": "08250", - "codeCommune": "08131", - "libelleAcheminement": "CORNAY", - "nomCommune": "CORNAY" + "codePostal": "45370", + "codeCommune": "45204", + "libelleAcheminement": "MEZIERES LEZ CLERY", + "nomCommune": "MEZIERES LEZ CLERY" }, { - "codePostal": "68180", - "codeCommune": "68145", - "libelleAcheminement": "HORBOURG WIHR", - "nomCommune": "HORBOURG WIHR" + "codePostal": "45230", + "codeCommune": "45060", + "libelleAcheminement": "LA BUSSIERE", + "nomCommune": "LA BUSSIERE" }, { - "codePostal": "36220", - "codeCommune": "36119", - "libelleAcheminement": "MERIGNY", - "nomCommune": "MERIGNY" + "codePostal": "31210", + "codeCommune": "31197", + "libelleAcheminement": "FRANQUEVIELLE", + "nomCommune": "FRANQUEVIELLE" }, { - "codePostal": "60420", - "codeCommune": "60585", - "libelleAcheminement": "ST MARTIN AUX BOIS", - "nomCommune": "ST MARTIN AUX BOIS" + "codePostal": "32300", + "codeCommune": "32324", + "libelleAcheminement": "PONSAN SOUBIRAN", + "nomCommune": "PONSAN SOUBIRAN" }, { - "codePostal": "08140", - "codeCommune": "08136", - "libelleAcheminement": "DAIGNY", - "nomCommune": "DAIGNY" + "codePostal": "45230", + "codeCommune": "45210", + "libelleAcheminement": "MONTBOUY", + "nomCommune": "MONTBOUY" }, { - "codePostal": "68180", - "codeCommune": "68145", - "libelleAcheminement": "HORBOURG WIHR", - "nomCommune": "HORBOURG WIHR" + "codePostal": "45260", + "codeCommune": "45066", + "libelleAcheminement": "CHAILLY EN GATINAIS", + "nomCommune": "CHAILLY EN GATINAIS" }, { - "codePostal": "36230", - "codeCommune": "36120", - "libelleAcheminement": "MERS SUR INDRE", - "nomCommune": "MERS SUR INDRE" + "codePostal": "31510", + "codeCommune": "31200", + "libelleAcheminement": "FRONTIGNAN DE COMMINGES", + "nomCommune": "FRONTIGNAN DE COMMINGES" }, { - "codePostal": "60860", - "codeCommune": "60590", - "libelleAcheminement": "ST OMER EN CHAUSSEE", - "nomCommune": "ST OMER EN CHAUSSEE" + "codePostal": "32320", + "codeCommune": "32326", + "libelleAcheminement": "POUYLEBON", + "nomCommune": "POUYLEBON" }, { - "codePostal": "08110", - "codeCommune": "08138", - "libelleAcheminement": "LES DEUX VILLES", - "nomCommune": "LES DEUX VILLES" + "codePostal": "45210", + "codeCommune": "45222", + "libelleAcheminement": "NARGIS", + "nomCommune": "NARGIS" }, { - "codePostal": "68420", - "codeCommune": "68150", - "libelleAcheminement": "HUSSEREN LES CHATEAUX", - "nomCommune": "HUSSEREN LES CHATEAUX" + "codePostal": "45420", + "codeCommune": "45070", + "libelleAcheminement": "CHAMPOULET", + "nomCommune": "CHAMPOULET" }, { - "codePostal": "36100", - "codeCommune": "36121", - "libelleAcheminement": "MEUNET PLANCHES", - "nomCommune": "MEUNET PLANCHES" + "codePostal": "31310", + "codeCommune": "31219", + "libelleAcheminement": "GENSAC SUR GARONNE", + "nomCommune": "GENSAC SUR GARONNE" }, { - "codePostal": "60850", - "codeCommune": "60592", - "libelleAcheminement": "ST PIERRE ES CHAMPS", - "nomCommune": "ST PIERRE ES CHAMPS" + "codePostal": "32480", + "codeCommune": "32328", + "libelleAcheminement": "POUY ROQUELAURE", + "nomCommune": "POUY ROQUELAURE" }, { - "codePostal": "08160", - "codeCommune": "08140", - "libelleAcheminement": "DOM LE MESNIL", - "nomCommune": "DOM LE MESNIL" + "codePostal": "45170", + "codeCommune": "45224", + "libelleAcheminement": "NEUVILLE AUX BOIS", + "nomCommune": "NEUVILLE AUX BOIS" }, { - "codePostal": "68720", - "codeCommune": "68152", - "libelleAcheminement": "ILLFURTH", - "nomCommune": "ILLFURTH" + "codePostal": "45380", + "codeCommune": "45075", + "libelleAcheminement": "LA CHAPELLE ST MESMIN", + "nomCommune": "LA CHAPELLE ST MESMIN" }, { - "codePostal": "36290", - "codeCommune": "36123", - "libelleAcheminement": "MEZIERES EN BRENNE", - "nomCommune": "MEZIERES EN BRENNE" + "codePostal": "31560", + "codeCommune": "31220", + "libelleAcheminement": "GIBEL", + "nomCommune": "GIBEL" }, { - "codePostal": "60210", - "codeCommune": "60599", - "libelleAcheminement": "ST THIBAULT", - "nomCommune": "ST THIBAULT" + "codePostal": "32390", + "codeCommune": "32329", + "libelleAcheminement": "PRECHAC", + "nomCommune": "PRECHAC" }, { - "codePostal": "08350", - "codeCommune": "08142", - "libelleAcheminement": "DONCHERY", - "nomCommune": "DONCHERY" + "codePostal": "45510", + "codeCommune": "45226", + "libelleAcheminement": "NEUVY EN SULLIAS", + "nomCommune": "NEUVY EN SULLIAS" }, { - "codePostal": "68110", - "codeCommune": "68154", - "libelleAcheminement": "ILLZACH", - "nomCommune": "ILLZACH" + "codePostal": "45230", + "codeCommune": "45077", + "libelleAcheminement": "LA CHAPELLE SUR AVEYRON", + "nomCommune": "LA CHAPELLE SUR AVEYRON" }, { - "codePostal": "36140", - "codeCommune": "36126", - "libelleAcheminement": "MONTCHEVRIER", - "nomCommune": "MONTCHEVRIER" + "codePostal": "31310", + "codeCommune": "31225", + "libelleAcheminement": "GOUTEVERNISSE", + "nomCommune": "GOUTEVERNISSE" }, { - "codePostal": "60410", - "codeCommune": "60600", - "libelleAcheminement": "ST VAAST DE LONGMONT", - "nomCommune": "ST VAAST DE LONGMONT" + "codePostal": "32810", + "codeCommune": "32331", + "libelleAcheminement": "PREIGNAN", + "nomCommune": "PREIGNAN" }, { - "codePostal": "08220", - "codeCommune": "08143", - "libelleAcheminement": "DOUMELY BEGNY", - "nomCommune": "DOUMELY BEGNY" + "codePostal": "45390", + "codeCommune": "45237", + "libelleAcheminement": "ORVILLE", + "nomCommune": "ORVILLE" }, { - "codePostal": "68230", - "codeCommune": "68161", - "libelleAcheminement": "KATZENTHAL", - "nomCommune": "KATZENTHAL" + "codePostal": "45130", + "codeCommune": "45081", + "libelleAcheminement": "CHARSONVILLE", + "nomCommune": "CHARSONVILLE" }, { - "codePostal": "36400", - "codeCommune": "36127", - "libelleAcheminement": "MONTGIVRAY", - "nomCommune": "MONTGIVRAY" + "codePostal": "31120", + "codeCommune": "31227", + "libelleAcheminement": "GOYRANS", + "nomCommune": "GOYRANS" }, { - "codePostal": "60220", - "codeCommune": "60602", - "libelleAcheminement": "ST VALERY", - "nomCommune": "ST VALERY" + "codePostal": "32400", + "codeCommune": "32333", + "libelleAcheminement": "PROJAN", + "nomCommune": "PROJAN" }, { - "codePostal": "08220", - "codeCommune": "08146", - "libelleAcheminement": "DRAIZE", - "nomCommune": "DRAIZE" + "codePostal": "45480", + "codeCommune": "45240", + "libelleAcheminement": "OUTARVILLE", + "nomCommune": "OUTARVILLE" }, { - "codePostal": "68240", - "codeCommune": "68162", - "libelleAcheminement": "KAYSERSBERG VIGNOBLE", - "nomCommune": "KAYSERSBERG VIGNOBLE" + "codePostal": "45230", + "codeCommune": "45085", + "libelleAcheminement": "CHATILLON COLIGNY", + "nomCommune": "CHATILLON COLIGNY" }, { - "codePostal": "36230", - "codeCommune": "36129", - "libelleAcheminement": "MONTIPOURET", - "nomCommune": "MONTIPOURET" + "codePostal": "31480", + "codeCommune": "31234", + "libelleAcheminement": "LE GRES", + "nomCommune": "LE GRES" }, { - "codePostal": "60120", - "codeCommune": "60627", - "libelleAcheminement": "TARTIGNY", - "nomCommune": "TARTIGNY" + "codePostal": "32600", + "codeCommune": "32334", + "libelleAcheminement": "PUJAUDRAN", + "nomCommune": "PUJAUDRAN" }, { - "codePostal": "08300", - "codeCommune": "08150", - "libelleAcheminement": "ECLY", - "nomCommune": "ECLY" + "codePostal": "45480", + "codeCommune": "45240", + "libelleAcheminement": "OUTARVILLE", + "nomCommune": "OUTARVILLE" }, { - "codePostal": "68240", - "codeCommune": "68162", - "libelleAcheminement": "KAYSERSBERG VIGNOBLE", - "nomCommune": "KAYSERSBERG VIGNOBLE" + "codePostal": "45480", + "codeCommune": "45088", + "libelleAcheminement": "CHAUSSY", + "nomCommune": "CHAUSSY" }, { - "codePostal": "36350", - "codeCommune": "36157", - "libelleAcheminement": "LA PEROUILLE", - "nomCommune": "LA PEROUILLE" + "codePostal": "31440", + "codeCommune": "31235", + "libelleAcheminement": "GURAN", + "nomCommune": "GURAN" }, { - "codePostal": "60520", - "codeCommune": "60631", - "libelleAcheminement": "THIERS SUR THEVE", - "nomCommune": "THIERS SUR THEVE" + "codePostal": "32230", + "codeCommune": "32342", + "libelleAcheminement": "RICOURT", + "nomCommune": "RICOURT" }, { - "codePostal": "08260", - "codeCommune": "08155", - "libelleAcheminement": "ETALLE", - "nomCommune": "ETALLE" + "codePostal": "45150", + "codeCommune": "45241", + "libelleAcheminement": "OUVROUER LES CHAMPS", + "nomCommune": "OUVROUER LES CHAMPS" }, { - "codePostal": "68680", - "codeCommune": "68163", - "libelleAcheminement": "KEMBS", - "nomCommune": "KEMBS" + "codePostal": "45800", + "codeCommune": "45100", + "libelleAcheminement": "COMBLEUX", + "nomCommune": "COMBLEUX" }, { - "codePostal": "36160", - "codeCommune": "36163", - "libelleAcheminement": "POULIGNY NOTRE DAME", - "nomCommune": "POULIGNY NOTRE DAME" + "codePostal": "31110", + "codeCommune": "31244", + "libelleAcheminement": "JUZET DE LUCHON", + "nomCommune": "JUZET DE LUCHON" }, { - "codePostal": "60160", - "codeCommune": "60635", - "libelleAcheminement": "THIVERNY", - "nomCommune": "THIVERNY" + "codePostal": "32400", + "codeCommune": "32344", + "libelleAcheminement": "RISCLE", + "nomCommune": "RISCLE" }, { - "codePostal": "08160", - "codeCommune": "08158", - "libelleAcheminement": "ETREPIGNY", - "nomCommune": "ETREPIGNY" + "codePostal": "45310", + "codeCommune": "45248", + "libelleAcheminement": "PATAY", + "nomCommune": "PATAY" }, { - "codePostal": "68290", - "codeCommune": "68179", - "libelleAcheminement": "LAUW", - "nomCommune": "LAUW" + "codePostal": "45320", + "codeCommune": "45113", + "libelleAcheminement": "COURTEMAUX", + "nomCommune": "COURTEMAUX" }, { - "codePostal": "36300", - "codeCommune": "36165", - "libelleAcheminement": "POULIGNY ST PIERRE", - "nomCommune": "POULIGNY ST PIERRE" + "codePostal": "31390", + "codeCommune": "31261", + "libelleAcheminement": "LAFITTE VIGORDANE", + "nomCommune": "LAFITTE VIGORDANE" }, { - "codePostal": "60250", - "codeCommune": "60638", - "libelleAcheminement": "THURY SOUS CLERMONT", - "nomCommune": "THURY SOUS CLERMONT" + "codePostal": "32810", + "codeCommune": "32348", + "libelleAcheminement": "ROQUELAURE", + "nomCommune": "ROQUELAURE" }, { - "codePostal": "08210", - "codeCommune": "08159", - "libelleAcheminement": "EUILLY ET LOMBUT", - "nomCommune": "EUILLY ET LOMBUT" + "codePostal": "45270", + "codeCommune": "45259", + "libelleAcheminement": "QUIERS SUR BEZONDE", + "nomCommune": "QUIERS SUR BEZONDE" }, { - "codePostal": "68220", - "codeCommune": "68182", - "libelleAcheminement": "LEYMEN", - "nomCommune": "LEYMEN" + "codePostal": "45170", + "codeCommune": "45118", + "libelleAcheminement": "CROTTES EN PITHIVERAIS", + "nomCommune": "CROTTES EN PITHIVERAIS" }, { - "codePostal": "36220", - "codeCommune": "36167", - "libelleAcheminement": "PREUILLY LA VILLE", - "nomCommune": "PREUILLY LA VILLE" + "codePostal": "31190", + "codeCommune": "31264", + "libelleAcheminement": "LAGRACE DIEU", + "nomCommune": "LAGRACE DIEU" }, { - "codePostal": "60000", - "codeCommune": "60639", - "libelleAcheminement": "TILLE", - "nomCommune": "TILLE" + "codePostal": "32310", + "codeCommune": "32351", + "libelleAcheminement": "ROQUES", + "nomCommune": "ROQUES" }, { - "codePostal": "08090", - "codeCommune": "08160", - "libelleAcheminement": "EVIGNY", - "nomCommune": "EVIGNY" + "codePostal": "45590", + "codeCommune": "45272", + "libelleAcheminement": "ST CYR EN VAL", + "nomCommune": "ST CYR EN VAL" }, { - "codePostal": "68610", - "codeCommune": "68188", - "libelleAcheminement": "LINTHAL", - "nomCommune": "LINTHAL" + "codePostal": "45390", + "codeCommune": "45125", + "libelleAcheminement": "DIMANCHEVILLE", + "nomCommune": "DIMANCHEVILLE" }, { - "codePostal": "36800", - "codeCommune": "36192", - "libelleAcheminement": "ST GAULTIER", - "nomCommune": "ST GAULTIER" + "codePostal": "31600", + "codeCommune": "31269", + "libelleAcheminement": "LAMASQUERE", + "nomCommune": "LAMASQUERE" }, { - "codePostal": "60590", - "codeCommune": "60645", - "libelleAcheminement": "TRIE LA VILLE", - "nomCommune": "TRIE LA VILLE" + "codePostal": "32340", + "codeCommune": "32358", + "libelleAcheminement": "ST ANTOINE", + "nomCommune": "ST ANTOINE" }, { - "codePostal": "08250", - "codeCommune": "08161", - "libelleAcheminement": "EXERMONT", - "nomCommune": "EXERMONT" + "codePostal": "45360", + "codeCommune": "45276", + "libelleAcheminement": "ST FIRMIN SUR LOIRE", + "nomCommune": "ST FIRMIN SUR LOIRE" }, { - "codePostal": "68210", - "codeCommune": "68192", - "libelleAcheminement": "VALDIEU LUTRAN", - "nomCommune": "VALDIEU LUTRAN" + "codePostal": "45680", + "codeCommune": "45127", + "libelleAcheminement": "DORDIVES", + "nomCommune": "DORDIVES" }, { - "codePostal": "36250", - "codeCommune": "36202", - "libelleAcheminement": "ST MAUR", - "nomCommune": "ST MAUR" + "codePostal": "31570", + "codeCommune": "31271", + "libelleAcheminement": "LANTA", + "nomCommune": "LANTA" }, { - "codePostal": "60120", - "codeCommune": "60648", - "libelleAcheminement": "TROUSSENCOURT", - "nomCommune": "TROUSSENCOURT" + "codePostal": "32300", + "codeCommune": "32361", + "libelleAcheminement": "ST ARROMAN", + "nomCommune": "ST ARROMAN" }, { - "codePostal": "08400", - "codeCommune": "08164", - "libelleAcheminement": "FALAISE", - "nomCommune": "FALAISE" + "codePostal": "45800", + "codeCommune": "45284", + "libelleAcheminement": "ST JEAN DE BRAYE", + "nomCommune": "ST JEAN DE BRAYE" }, { - "codePostal": "68480", - "codeCommune": "68194", - "libelleAcheminement": "LUTTER", - "nomCommune": "LUTTER" + "codePostal": "45390", + "codeCommune": "45131", + "libelleAcheminement": "ECHILLEUSES", + "nomCommune": "ECHILLEUSES" }, { - "codePostal": "36700", - "codeCommune": "36203", - "libelleAcheminement": "ST MEDARD", - "nomCommune": "ST MEDARD" + "codePostal": "31530", + "codeCommune": "31277", + "libelleAcheminement": "LASSERRE PRADERE", + "nomCommune": "LASSERRE PRADERE" }, { - "codePostal": "60790", - "codeCommune": "60652", - "libelleAcheminement": "VALDAMPIERRE", - "nomCommune": "VALDAMPIERRE" + "codePostal": "32370", + "codeCommune": "32369", + "libelleAcheminement": "STE CHRISTIE D ARMAGNAC", + "nomCommune": "STE CHRISTIE D ARMAGNAC" }, { - "codePostal": "08290", - "codeCommune": "08167", - "libelleAcheminement": "LA FEREE", - "nomCommune": "LA FEREE" + "codePostal": "45650", + "codeCommune": "45286", + "libelleAcheminement": "ST JEAN LE BLANC", + "nomCommune": "ST JEAN LE BLANC" }, { - "codePostal": "68290", - "codeCommune": "68201", - "libelleAcheminement": "MASEVAUX NIEDERBRUCK", - "nomCommune": "MASEVAUX NIEDERBRUCK" + "codePostal": "45250", + "codeCommune": "45138", + "libelleAcheminement": "ESCRIGNELLES", + "nomCommune": "ESCRIGNELLES" }, { - "codePostal": "36260", - "codeCommune": "36205", - "libelleAcheminement": "ST PIERRE DE JARDS", - "nomCommune": "ST PIERRE DE JARDS" + "codePostal": "31310", + "codeCommune": "31280", + "libelleAcheminement": "LATRAPE", + "nomCommune": "LATRAPE" }, { - "codePostal": "60400", - "codeCommune": "60657", - "libelleAcheminement": "VAUCHELLES", - "nomCommune": "VAUCHELLES" + "codePostal": "32120", + "codeCommune": "32376", + "libelleAcheminement": "STE GEMME", + "nomCommune": "STE GEMME" }, { - "codePostal": "08260", - "codeCommune": "08169", - "libelleAcheminement": "FLAIGNES HAVYS", - "nomCommune": "FLAIGNES HAVYS" + "codePostal": "45340", + "codeCommune": "45294", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "68470", - "codeCommune": "68211", - "libelleAcheminement": "MITZACH", - "nomCommune": "MITZACH" + "codePostal": "45420", + "codeCommune": "45141", + "libelleAcheminement": "FAVERELLES", + "nomCommune": "FAVERELLES" }, { - "codePostal": "36190", - "codeCommune": "36207", - "libelleAcheminement": "ST PLANTAIRE", - "nomCommune": "ST PLANTAIRE" + "codePostal": "31220", + "codeCommune": "31292", + "libelleAcheminement": "LESCUNS", + "nomCommune": "LESCUNS" }, { - "codePostal": "60410", - "codeCommune": "60667", - "libelleAcheminement": "VERBERIE", - "nomCommune": "VERBERIE" + "codePostal": "32700", + "codeCommune": "32396", + "libelleAcheminement": "ST MEZARD", + "nomCommune": "ST MEZARD" }, { - "codePostal": "08160", - "codeCommune": "08173", - "libelleAcheminement": "FLIZE", - "nomCommune": "FLIZE" + "codePostal": "45310", + "codeCommune": "45296", + "libelleAcheminement": "ST PERAVY LA COLOMBE", + "nomCommune": "ST PERAVY LA COLOMBE" }, { - "codePostal": "68210", - "codeCommune": "68214", - "libelleAcheminement": "MONTREUX JEUNE", - "nomCommune": "MONTREUX JEUNE" + "codePostal": "45450", + "codeCommune": "45142", + "libelleAcheminement": "FAY AUX LOGES", + "nomCommune": "FAY AUX LOGES" }, { - "codePostal": "36290", - "codeCommune": "36212", - "libelleAcheminement": "SAULNAY", - "nomCommune": "SAULNAY" + "codePostal": "31160", + "codeCommune": "31294", + "libelleAcheminement": "LESPITEAU", + "nomCommune": "LESPITEAU" }, { - "codePostal": "60112", - "codeCommune": "60668", - "libelleAcheminement": "VERDEREL LES SAUQUEUSE", - "nomCommune": "VERDEREL LES SAUQUEUSE" + "codePostal": "32100", + "codeCommune": "32400", + "libelleAcheminement": "ST ORENS POUY PETIT", + "nomCommune": "ST ORENS POUY PETIT" }, { - "codePostal": "08260", - "codeCommune": "08189", - "libelleAcheminement": "GIRONDELLE", - "nomCommune": "GIRONDELLE" + "codePostal": "45310", + "codeCommune": "45299", + "libelleAcheminement": "ST SIGISMOND", + "nomCommune": "ST SIGISMOND" }, { - "codePostal": "68640", - "codeCommune": "68221", - "libelleAcheminement": "MUESPACH", - "nomCommune": "MUESPACH" + "codePostal": "45150", + "codeCommune": "45144", + "libelleAcheminement": "FEROLLES", + "nomCommune": "FEROLLES" }, { - "codePostal": "36160", - "codeCommune": "36214", - "libelleAcheminement": "SAZERAY", - "nomCommune": "SAZERAY" + "codePostal": "31800", + "codeCommune": "31302", + "libelleAcheminement": "LODES", + "nomCommune": "LODES" }, { - "codePostal": "60400", - "codeCommune": "60676", - "libelleAcheminement": "VILLE", - "nomCommune": "VILLE" + "codePostal": "32260", + "codeCommune": "32411", + "libelleAcheminement": "SANSAN", + "nomCommune": "SANSAN" }, { - "codePostal": "08250", - "codeCommune": "08197", - "libelleAcheminement": "GRANDHAM", - "nomCommune": "GRANDHAM" + "codePostal": "45170", + "codeCommune": "45301", + "libelleAcheminement": "SANTEAU", + "nomCommune": "SANTEAU" }, { - "codePostal": "68380", - "codeCommune": "68223", - "libelleAcheminement": "MUHLBACH SUR MUNSTER", - "nomCommune": "MUHLBACH SUR MUNSTER" + "codePostal": "45240", + "codeCommune": "45146", + "libelleAcheminement": "LA FERTE ST AUBIN", + "nomCommune": "LA FERTE ST AUBIN" }, { - "codePostal": "36500", - "codeCommune": "36218", - "libelleAcheminement": "SOUGE", - "nomCommune": "SOUGE" + "codePostal": "31460", + "codeCommune": "31304", + "libelleAcheminement": "LOUBENS LAURAGAIS", + "nomCommune": "LOUBENS LAURAGAIS" }, { - "codePostal": "60340", - "codeCommune": "60686", - "libelleAcheminement": "VILLERS SOUS ST LEU", - "nomCommune": "VILLERS SOUS ST LEU" + "codePostal": "32120", + "codeCommune": "32416", + "libelleAcheminement": "SARRANT", + "nomCommune": "SARRANT" }, { - "codePostal": "08700", - "codeCommune": "08199", - "libelleAcheminement": "LA GRANDVILLE", - "nomCommune": "LA GRANDVILLE" + "codePostal": "45240", + "codeCommune": "45309", + "libelleAcheminement": "SENNELY", + "nomCommune": "SENNELY" }, { - "codePostal": "68320", - "codeCommune": "68227", - "libelleAcheminement": "MUNTZENHEIM", - "nomCommune": "MUNTZENHEIM" + "codePostal": "45270", + "codeCommune": "45150", + "libelleAcheminement": "FREVILLE DU GATINAIS", + "nomCommune": "FREVILLE DU GATINAIS" }, { - "codePostal": "36400", - "codeCommune": "36221", - "libelleAcheminement": "THEVET ST JULIEN", - "nomCommune": "THEVET ST JULIEN" + "codePostal": "31580", + "codeCommune": "31305", + "libelleAcheminement": "LOUDET", + "nomCommune": "LOUDET" }, { - "codePostal": "60120", - "codeCommune": "60692", - "libelleAcheminement": "VILLERS VICOMTE", - "nomCommune": "VILLERS VICOMTE" + "codePostal": "32220", + "codeCommune": "32418", + "libelleAcheminement": "SAUVETERRE", + "nomCommune": "SAUVETERRE" }, { - "codePostal": "08160", - "codeCommune": "08209", - "libelleAcheminement": "HANNOGNE ST MARTIN", - "nomCommune": "HANNOGNE ST MARTIN" + "codePostal": "45700", + "codeCommune": "45312", + "libelleAcheminement": "SOLTERRE", + "nomCommune": "SOLTERRE" }, { - "codePostal": "68290", - "codeCommune": "68239", - "libelleAcheminement": "OBERBRUCK", - "nomCommune": "OBERBRUCK" + "codePostal": "45500", + "codeCommune": "45155", + "libelleAcheminement": "GIEN", + "nomCommune": "GIEN" }, { - "codePostal": "36330", - "codeCommune": "36231", - "libelleAcheminement": "VELLES", - "nomCommune": "VELLES" + "codePostal": "31510", + "codeCommune": "31306", + "libelleAcheminement": "LOURDE", + "nomCommune": "LOURDE" }, { - "codePostal": "61100", - "codeCommune": "61007", - "libelleAcheminement": "ATHIS VAL DE ROUVRE", - "nomCommune": "ATHIS VAL DE ROUVRE" + "codePostal": "32130", + "codeCommune": "32421", + "libelleAcheminement": "SAVIGNAC MONA", + "nomCommune": "SAVIGNAC MONA" }, { - "codePostal": "08220", - "codeCommune": "08210", - "libelleAcheminement": "HANNOGNE ST REMY", - "nomCommune": "HANNOGNE ST REMY" + "codePostal": "45190", + "codeCommune": "45317", + "libelleAcheminement": "TAVERS", + "nomCommune": "TAVERS" }, { - "codePostal": "68127", - "codeCommune": "68241", - "libelleAcheminement": "OBERENTZEN", - "nomCommune": "OBERENTZEN" + "codePostal": "45120", + "codeCommune": "45156", + "libelleAcheminement": "GIROLLES", + "nomCommune": "GIROLLES" }, { - "codePostal": "36600", - "codeCommune": "36235", - "libelleAcheminement": "VEUIL", - "nomCommune": "VEUIL" + "codePostal": "31430", + "codeCommune": "31317", + "libelleAcheminement": "MARIGNAC LASCLARES", + "nomCommune": "MARIGNAC LASCLARES" }, { - "codePostal": "61100", - "codeCommune": "61007", - "libelleAcheminement": "ATHIS VAL DE ROUVRE", - "nomCommune": "ATHIS VAL DE ROUVRE" + "codePostal": "32230", + "codeCommune": "32422", + "libelleAcheminement": "SCIEURAC ET FLOURES", + "nomCommune": "SCIEURAC ET FLOURES" }, { - "codePostal": "08800", - "codeCommune": "08217", - "libelleAcheminement": "HAULME", - "nomCommune": "HAULME" + "codePostal": "45510", + "codeCommune": "45324", + "libelleAcheminement": "TIGY", + "nomCommune": "TIGY" }, { - "codePostal": "68800", - "codeCommune": "68261", - "libelleAcheminement": "RAMMERSMATT", - "nomCommune": "RAMMERSMATT" + "codePostal": "45300", + "codeCommune": "45162", + "libelleAcheminement": "GUIGNEVILLE", + "nomCommune": "GUIGNEVILLE" }, { - "codePostal": "36160", - "codeCommune": "36240", - "libelleAcheminement": "VIJON", - "nomCommune": "VIJON" + "codePostal": "31230", + "codeCommune": "31322", + "libelleAcheminement": "MARTISSERRE", + "nomCommune": "MARTISSERRE" }, { - "codePostal": "61100", - "codeCommune": "61007", - "libelleAcheminement": "ATHIS VAL DE ROUVRE", - "nomCommune": "ATHIS VAL DE ROUVRE" + "codePostal": "32120", + "codeCommune": "32431", + "libelleAcheminement": "SEREMPUY", + "nomCommune": "SEREMPUY" }, { - "codePostal": "08310", - "codeCommune": "08239", - "libelleAcheminement": "JUNIVILLE", - "nomCommune": "JUNIVILLE" + "codePostal": "45760", + "codeCommune": "45333", + "libelleAcheminement": "VENNECY", + "nomCommune": "VENNECY" }, { - "codePostal": "68950", - "codeCommune": "68267", - "libelleAcheminement": "REININGUE", - "nomCommune": "REININGUE" + "codePostal": "45220", + "codeCommune": "45165", + "libelleAcheminement": "GY LES NONAINS", + "nomCommune": "GY LES NONAINS" }, { - "codePostal": "36500", - "codeCommune": "36243", - "libelleAcheminement": "VILLEGOUIN", - "nomCommune": "VILLEGOUIN" + "codePostal": "31460", + "codeCommune": "31331", + "libelleAcheminement": "MAUREVILLE", + "nomCommune": "MAUREVILLE" }, { - "codePostal": "61430", - "codeCommune": "61007", - "libelleAcheminement": "ATHIS VAL DE ROUVRE", - "nomCommune": "ATHIS VAL DE ROUVRE" + "codePostal": "32110", + "codeCommune": "32437", + "libelleAcheminement": "SORBETS", + "nomCommune": "SORBETS" }, { - "codePostal": "08110", - "codeCommune": "08255", - "libelleAcheminement": "LINAY", - "nomCommune": "LINAY" + "codePostal": "45700", + "codeCommune": "45338", + "libelleAcheminement": "VILLEMANDEUR", + "nomCommune": "VILLEMANDEUR" }, { - "codePostal": "68210", - "codeCommune": "68268", - "libelleAcheminement": "RETZWILLER", - "nomCommune": "RETZWILLER" + "codePostal": "45330", + "codeCommune": "45191", + "libelleAcheminement": "LE MALESHERBOIS", + "nomCommune": "LE MALESHERBOIS" }, { - "codePostal": "36360", - "codeCommune": "36244", - "libelleAcheminement": "VILLENTROIS FAVEROLLES EN BERRY", - "nomCommune": "VILLENTROIS FAVEROLLES EN BERRY" + "codePostal": "31320", + "codeCommune": "31340", + "libelleAcheminement": "MERVILLA", + "nomCommune": "MERVILLA" }, { - "codePostal": "61500", - "codeCommune": "61013", - "libelleAcheminement": "AUNAY LES BOIS", - "nomCommune": "AUNAY LES BOIS" + "codePostal": "32120", + "codeCommune": "32441", + "libelleAcheminement": "TAYBOSC", + "nomCommune": "TAYBOSC" }, { - "codePostal": "08440", - "codeCommune": "08263", - "libelleAcheminement": "LUMES", - "nomCommune": "LUMES" + "codePostal": "45530", + "codeCommune": "45346", + "libelleAcheminement": "VITRY AUX LOGES", + "nomCommune": "VITRY AUX LOGES" }, { - "codePostal": "68290", - "codeCommune": "68275", - "libelleAcheminement": "RIMBACH PRES MASEVAUX", - "nomCommune": "RIMBACH PRES MASEVAUX" + "codePostal": "45330", + "codeCommune": "45191", + "libelleAcheminement": "LE MALESHERBOIS", + "nomCommune": "LE MALESHERBOIS" }, { - "codePostal": "36110", - "codeCommune": "36247", - "libelleAcheminement": "VINEUIL", - "nomCommune": "VINEUIL" + "codePostal": "31230", + "codeCommune": "31343", + "libelleAcheminement": "MIRAMBEAU", + "nomCommune": "MIRAMBEAU" }, { - "codePostal": "61700", - "codeCommune": "61021", - "libelleAcheminement": "AVRILLY", - "nomCommune": "AVRILLY" + "codePostal": "32430", + "codeCommune": "32444", + "libelleAcheminement": "THOUX", + "nomCommune": "THOUX" }, { - "codePostal": "08310", - "codeCommune": "08264", - "libelleAcheminement": "MACHAULT", - "nomCommune": "MACHAULT" + "codePostal": "46090", + "codeCommune": "46007", + "libelleAcheminement": "ARCAMBAL", + "nomCommune": "ARCAMBAL" }, { - "codePostal": "68340", - "codeCommune": "68277", - "libelleAcheminement": "RIQUEWIHR", - "nomCommune": "RIQUEWIHR" + "codePostal": "45240", + "codeCommune": "45193", + "libelleAcheminement": "MARCILLY EN VILLETTE", + "nomCommune": "MARCILLY EN VILLETTE" }, { - "codePostal": "37340", - "codeCommune": "37002", - "libelleAcheminement": "AMBILLOU", - "nomCommune": "AMBILLOU" + "codePostal": "31220", + "codeCommune": "31349", + "libelleAcheminement": "MONDAVEZAN", + "nomCommune": "MONDAVEZAN" }, { - "codePostal": "61450", - "codeCommune": "61024", - "libelleAcheminement": "BANVOU", - "nomCommune": "BANVOU" + "codePostal": "32230", + "codeCommune": "32450", + "libelleAcheminement": "TOURDUN", + "nomCommune": "TOURDUN" }, { - "codePostal": "08370", - "codeCommune": "08269", - "libelleAcheminement": "MALANDRY", - "nomCommune": "MALANDRY" + "codePostal": "46250", + "codeCommune": "46008", + "libelleAcheminement": "LES ARQUES", + "nomCommune": "LES ARQUES" }, { - "codePostal": "68170", - "codeCommune": "68278", - "libelleAcheminement": "RIXHEIM", - "nomCommune": "RIXHEIM" + "codePostal": "45430", + "codeCommune": "45194", + "libelleAcheminement": "MARDIE", + "nomCommune": "MARDIE" }, { - "codePostal": "37290", - "codeCommune": "37028", - "libelleAcheminement": "BOSSAY SUR CLAISE", - "nomCommune": "BOSSAY SUR CLAISE" + "codePostal": "31160", + "codeCommune": "31357", + "libelleAcheminement": "MONTASTRUC DE SALIES", + "nomCommune": "MONTASTRUC DE SALIES" }, { - "codePostal": "61170", - "codeCommune": "61026", - "libelleAcheminement": "BARVILLE", - "nomCommune": "BARVILLE" + "codePostal": "32190", + "codeCommune": "32456", + "libelleAcheminement": "TUDELLE", + "nomCommune": "TUDELLE" }, { - "codePostal": "08400", - "codeCommune": "08271", - "libelleAcheminement": "MANRE", - "nomCommune": "MANRE" + "codePostal": "46270", + "codeCommune": "46015", + "libelleAcheminement": "BAGNAC SUR CELE", + "nomCommune": "BAGNAC SUR CELE" }, { - "codePostal": "68560", - "codeCommune": "68288", - "libelleAcheminement": "RUEDERBACH", - "nomCommune": "RUEDERBACH" + "codePostal": "45490", + "codeCommune": "45206", + "libelleAcheminement": "MIGNERES", + "nomCommune": "MIGNERES" }, { - "codePostal": "37240", - "codeCommune": "37029", - "libelleAcheminement": "BOSSEE", - "nomCommune": "BOSSEE" + "codePostal": "31380", + "codeCommune": "31358", + "libelleAcheminement": "MONTASTRUC LA CONSEILLERE", + "nomCommune": "MONTASTRUC LA CONSEILLERE" }, { - "codePostal": "61100", - "codeCommune": "61030", - "libelleAcheminement": "LA BAZOQUE", - "nomCommune": "LA BAZOQUE" + "codePostal": "32110", + "codeCommune": "32458", + "libelleAcheminement": "URGOSSE", + "nomCommune": "URGOSSE" }, { - "codePostal": "08430", - "codeCommune": "08283", - "libelleAcheminement": "MAZERNY", - "nomCommune": "MAZERNY" + "codePostal": "46500", + "codeCommune": "46018", + "libelleAcheminement": "LE BASTIT", + "nomCommune": "LE BASTIT" }, { - "codePostal": "68270", - "codeCommune": "68289", - "libelleAcheminement": "RUELISHEIM", - "nomCommune": "RUELISHEIM" + "codePostal": "45490", + "codeCommune": "45207", + "libelleAcheminement": "MIGNERETTE", + "nomCommune": "MIGNERETTE" }, { - "codePostal": "37110", - "codeCommune": "37030", - "libelleAcheminement": "LE BOULAY", - "nomCommune": "LE BOULAY" + "codePostal": "31290", + "codeCommune": "31368", + "libelleAcheminement": "MONTCLAR LAURAGAIS", + "nomCommune": "MONTCLAR LAURAGAIS" }, { - "codePostal": "61570", - "codeCommune": "61039", - "libelleAcheminement": "LA BELLIERE", - "nomCommune": "LA BELLIERE" + "codePostal": "32190", + "codeCommune": "32462", + "libelleAcheminement": "VIC FEZENSAC", + "nomCommune": "VIC FEZENSAC" }, { - "codePostal": "08310", - "codeCommune": "08287", - "libelleAcheminement": "MENIL LEPINOIS", - "nomCommune": "MENIL LEPINOIS" + "codePostal": "46260", + "codeCommune": "46020", + "libelleAcheminement": "BEAUREGARD", + "nomCommune": "BEAUREGARD" }, { - "codePostal": "68740", - "codeCommune": "68291", - "libelleAcheminement": "RUMERSHEIM LE HAUT", - "nomCommune": "RUMERSHEIM LE HAUT" + "codePostal": "45340", + "codeCommune": "45209", + "libelleAcheminement": "MONTBARROIS", + "nomCommune": "MONTBARROIS" }, { - "codePostal": "37240", - "codeCommune": "37032", - "libelleAcheminement": "BOURNAN", - "nomCommune": "BOURNAN" + "codePostal": "31540", + "codeCommune": "31371", + "libelleAcheminement": "MONTEGUT LAURAGAIS", + "nomCommune": "MONTEGUT LAURAGAIS" }, { - "codePostal": "61290", - "codeCommune": "61046", - "libelleAcheminement": "BIZOU", - "nomCommune": "BIZOU" + "codePostal": "32730", + "codeCommune": "32464", + "libelleAcheminement": "VILLECOMTAL SUR ARROS", + "nomCommune": "VILLECOMTAL SUR ARROS" }, { - "codePostal": "08110", - "codeCommune": "08289", - "libelleAcheminement": "MESSINCOURT", - "nomCommune": "MESSINCOURT" + "codePostal": "46090", + "codeCommune": "46027", + "libelleAcheminement": "BERGANTY", + "nomCommune": "BERGANTY" }, { - "codePostal": "68210", - "codeCommune": "68293", - "libelleAcheminement": "ST COSME", - "nomCommune": "ST COSME" + "codePostal": "45300", + "codeCommune": "45217", + "libelleAcheminement": "MORVILLE EN BEAUCE", + "nomCommune": "MORVILLE EN BEAUCE" }, { - "codePostal": "37130", - "codeCommune": "37038", - "libelleAcheminement": "BREHEMONT", - "nomCommune": "BREHEMONT" + "codePostal": "31370", + "codeCommune": "31382", + "libelleAcheminement": "MONTGRAS", + "nomCommune": "MONTGRAS" }, { - "codePostal": "61560", - "codeCommune": "61048", - "libelleAcheminement": "BOECE", - "nomCommune": "BOECE" + "codePostal": "32420", + "codeCommune": "32465", + "libelleAcheminement": "VILLEFRANCHE", + "nomCommune": "VILLEFRANCHE" }, { - "codePostal": "08090", - "codeCommune": "08297", - "libelleAcheminement": "MONTCORNET", - "nomCommune": "MONTCORNET" + "codePostal": "46800", + "codeCommune": "46033", + "libelleAcheminement": "PORTE DU QUERCY", + "nomCommune": "PORTE DU QUERCY" }, { - "codePostal": "68300", - "codeCommune": "68297", - "libelleAcheminement": "ST LOUIS", - "nomCommune": "ST LOUIS" + "codePostal": "45340", + "codeCommune": "45228", + "libelleAcheminement": "NIBELLE", + "nomCommune": "NIBELLE" }, { - "codePostal": "37220", - "codeCommune": "37040", - "libelleAcheminement": "BRIZAY", - "nomCommune": "BRIZAY" + "codePostal": "31560", + "codeCommune": "31396", + "libelleAcheminement": "NAILLOUX", + "nomCommune": "NAILLOUX" }, { - "codePostal": "61570", - "codeCommune": "61049", - "libelleAcheminement": "BOISSEI LA LANDE", - "nomCommune": "BOISSEI LA LANDE" + "codePostal": "32200", + "codeCommune": "32467", + "libelleAcheminement": "ST CAPRAIS", + "nomCommune": "ST CAPRAIS" }, { - "codePostal": "08390", - "codeCommune": "08300", - "libelleAcheminement": "LE MONT DIEU", - "nomCommune": "LE MONT DIEU" + "codePostal": "46160", + "codeCommune": "46041", + "libelleAcheminement": "CADRIEU", + "nomCommune": "CADRIEU" }, { - "codePostal": "68160", - "codeCommune": "68298", - "libelleAcheminement": "STE MARIE AUX MINES", - "nomCommune": "STE MARIE AUX MINES" + "codePostal": "45250", + "codeCommune": "45238", + "libelleAcheminement": "OUSSON SUR LOIRE", + "nomCommune": "OUSSON SUR LOIRE" }, { - "codePostal": "37390", - "codeCommune": "37047", - "libelleAcheminement": "CERELLES", - "nomCommune": "CERELLES" + "codePostal": "31540", + "codeCommune": "31400", + "libelleAcheminement": "NOGARET", + "nomCommune": "NOGARET" }, { - "codePostal": "61110", - "codeCommune": "61050", - "libelleAcheminement": "COUR MAUGIS SUR HUISNE", - "nomCommune": "COUR MAUGIS SUR HUISNE" + "codePostal": "33370", + "codeCommune": "33013", + "libelleAcheminement": "ARTIGUES PRES BORDEAUX", + "nomCommune": "ARTIGUES PRES BORDEAUX" }, { - "codePostal": "08800", - "codeCommune": "08302", - "libelleAcheminement": "MONTHERME", - "nomCommune": "MONTHERME" + "codePostal": "46130", + "codeCommune": "46043", + "libelleAcheminement": "CAHUS", + "nomCommune": "CAHUS" }, { - "codePostal": "68480", - "codeCommune": "68312", - "libelleAcheminement": "SONDERSDORF", - "nomCommune": "SONDERSDORF" + "codePostal": "45290", + "codeCommune": "45239", + "libelleAcheminement": "OUSSOY EN GATINAIS", + "nomCommune": "OUSSOY EN GATINAIS" }, { - "codePostal": "37310", - "codeCommune": "37049", - "libelleAcheminement": "CHAMBOURG SUR INDRE", - "nomCommune": "CHAMBOURG SUR INDRE" + "codePostal": "31370", + "codeCommune": "31419", + "libelleAcheminement": "LE PIN MURELET", + "nomCommune": "LE PIN MURELET" }, { - "codePostal": "61340", - "codeCommune": "61050", - "libelleAcheminement": "COUR MAUGIS SUR HUISNE", - "nomCommune": "COUR MAUGIS SUR HUISNE" + "codePostal": "33124", + "codeCommune": "33021", + "libelleAcheminement": "AUROS", + "nomCommune": "AUROS" }, { - "codePostal": "08400", - "codeCommune": "08308", - "libelleAcheminement": "MONT ST MARTIN", - "nomCommune": "MONT ST MARTIN" + "codePostal": "46160", + "codeCommune": "46056", + "libelleAcheminement": "CARAYAC", + "nomCommune": "CARAYAC" }, { - "codePostal": "68230", - "codeCommune": "68316", - "libelleAcheminement": "SOULTZBACH LES BAINS", - "nomCommune": "SOULTZBACH LES BAINS" + "codePostal": "45480", + "codeCommune": "45240", + "libelleAcheminement": "OUTARVILLE", + "nomCommune": "OUTARVILLE" }, { - "codePostal": "37170", - "codeCommune": "37050", - "libelleAcheminement": "CHAMBRAY LES TOURS", - "nomCommune": "CHAMBRAY LES TOURS" + "codePostal": "31120", + "codeCommune": "31420", + "libelleAcheminement": "PINSAGUEL", + "nomCommune": "PINSAGUEL" }, { - "codePostal": "61270", - "codeCommune": "61052", - "libelleAcheminement": "BONNEFOI", - "nomCommune": "BONNEFOI" + "codePostal": "33730", + "codeCommune": "33026", + "libelleAcheminement": "BALIZAC", + "nomCommune": "BALIZAC" }, { - "codePostal": "08460", - "codeCommune": "08315", - "libelleAcheminement": "NEUFMAISON", - "nomCommune": "NEUFMAISON" + "codePostal": "46500", + "codeCommune": "46059", + "libelleAcheminement": "CARLUCET", + "nomCommune": "CARLUCET" }, { - "codePostal": "68570", - "codeCommune": "68318", - "libelleAcheminement": "SOULTZMATT", - "nomCommune": "SOULTZMATT" + "codePostal": "45290", + "codeCommune": "45242", + "libelleAcheminement": "OUZOUER DES CHAMPS", + "nomCommune": "OUZOUER DES CHAMPS" }, { - "codePostal": "37240", - "codeCommune": "37057", - "libelleAcheminement": "LA CHAPELLE BLANCHE ST MARTIN", - "nomCommune": "LA CHAPELLE BLANCHE ST MARTIN" + "codePostal": "31220", + "codeCommune": "31425", + "libelleAcheminement": "LE PLAN", + "nomCommune": "LE PLAN" }, { - "codePostal": "61380", - "codeCommune": "61053", - "libelleAcheminement": "BONSMOULINS", - "nomCommune": "BONSMOULINS" + "codePostal": "33190", + "codeCommune": "33027", + "libelleAcheminement": "BARIE", + "nomCommune": "BARIE" }, { - "codePostal": "08380", - "codeCommune": "08319", - "libelleAcheminement": "NEUVILLE LEZ BEAULIEU", - "nomCommune": "NEUVILLE LEZ BEAULIEU" + "codePostal": "46140", + "codeCommune": "46060", + "libelleAcheminement": "CARNAC ROUFFIAC", + "nomCommune": "CARNAC ROUFFIAC" }, { - "codePostal": "25410", - "codeCommune": "25616", - "libelleAcheminement": "VILLARS ST GEORGES", - "nomCommune": "VILLARS ST GEORGES" + "codePostal": "45270", + "codeCommune": "45243", + "libelleAcheminement": "OUZOUER SOUS BELLEGARDE", + "nomCommune": "OUZOUER SOUS BELLEGARDE" }, { - "codePostal": "37140", - "codeCommune": "37058", - "libelleAcheminement": "LA CHAPELLE SUR LOIRE", - "nomCommune": "LA CHAPELLE SUR LOIRE" + "codePostal": "31430", + "codeCommune": "31428", + "libelleAcheminement": "POLASTRON", + "nomCommune": "POLASTRON" }, { - "codePostal": "61470", - "codeCommune": "61054", - "libelleAcheminement": "LE BOSC RENOULT", - "nomCommune": "LE BOSC RENOULT" + "codePostal": "33720", + "codeCommune": "33030", + "libelleAcheminement": "BARSAC", + "nomCommune": "BARSAC" }, { - "codePostal": "08240", - "codeCommune": "08326", - "libelleAcheminement": "NOUART", - "nomCommune": "NOUART" + "codePostal": "46150", + "codeCommune": "46064", + "libelleAcheminement": "CATUS", + "nomCommune": "CATUS" }, { - "codePostal": "25190", - "codeCommune": "25617", - "libelleAcheminement": "VILLARS SOUS DAMPJOUX", - "nomCommune": "VILLARS SOUS DAMPJOUX" + "codePostal": "45700", + "codeCommune": "45247", + "libelleAcheminement": "PANNES", + "nomCommune": "PANNES" }, { - "codePostal": "37110", - "codeCommune": "37063", - "libelleAcheminement": "CHATEAU RENAULT", - "nomCommune": "CHATEAU RENAULT" + "codePostal": "31570", + "codeCommune": "31439", + "libelleAcheminement": "PRESERVILLE", + "nomCommune": "PRESERVILLE" }, { - "codePostal": "61270", - "codeCommune": "61060", - "libelleAcheminement": "BRETHEL", - "nomCommune": "BRETHEL" + "codePostal": "33880", + "codeCommune": "33033", + "libelleAcheminement": "BAURECH", + "nomCommune": "BAURECH" }, { - "codePostal": "08700", - "codeCommune": "08328", - "libelleAcheminement": "NOUZONVILLE", - "nomCommune": "NOUZONVILLE" + "codePostal": "46110", + "codeCommune": "46065", + "libelleAcheminement": "CAVAGNAC", + "nomCommune": "CAVAGNAC" }, { - "codePostal": "25150", - "codeCommune": "25618", - "libelleAcheminement": "VILLARS SOUS ECOT", - "nomCommune": "VILLARS SOUS ECOT" + "codePostal": "45300", + "codeCommune": "45253", + "libelleAcheminement": "PITHIVIERS LE VIEIL", + "nomCommune": "PITHIVIERS LE VIEIL" }, { - "codePostal": "37310", - "codeCommune": "37066", - "libelleAcheminement": "CHEDIGNY", - "nomCommune": "CHEDIGNY" + "codePostal": "31480", + "codeCommune": "31444", + "libelleAcheminement": "PUYSSEGUR", + "nomCommune": "PUYSSEGUR" }, { - "codePostal": "61160", - "codeCommune": "61062", - "libelleAcheminement": "BRIEUX", - "nomCommune": "BRIEUX" + "codePostal": "33430", + "codeCommune": "33036", + "libelleAcheminement": "BAZAS", + "nomCommune": "BAZAS" }, { - "codePostal": "08310", - "codeCommune": "08338", - "libelleAcheminement": "PAUVRES", - "nomCommune": "PAUVRES" + "codePostal": "46170", + "codeCommune": "46069", + "libelleAcheminement": "CEZAC", + "nomCommune": "CEZAC" }, { - "codePostal": "25270", - "codeCommune": "25621", - "libelleAcheminement": "VILLENEUVE D AMONT", - "nomCommune": "VILLENEUVE D AMONT" + "codePostal": "45500", + "codeCommune": "45254", + "libelleAcheminement": "POILLY LEZ GIEN", + "nomCommune": "POILLY LEZ GIEN" }, { - "codePostal": "37190", - "codeCommune": "37067", - "libelleAcheminement": "CHEILLE", - "nomCommune": "CHEILLE" + "codePostal": "31800", + "codeCommune": "31449", + "libelleAcheminement": "REGADES", + "nomCommune": "REGADES" }, { - "codePostal": "61170", - "codeCommune": "61066", - "libelleAcheminement": "BURE", - "nomCommune": "BURE" + "codePostal": "33640", + "codeCommune": "33037", + "libelleAcheminement": "BEAUTIRAN", + "nomCommune": "BEAUTIRAN" }, { - "codePostal": "08190", - "codeCommune": "08340", - "libelleAcheminement": "POILCOURT SYDNEY", - "nomCommune": "POILCOURT SYDNEY" + "codePostal": "46260", + "codeCommune": "46073", + "libelleAcheminement": "CONCOTS", + "nomCommune": "CONCOTS" }, { - "codePostal": "25840", - "codeCommune": "25633", - "libelleAcheminement": "VUILLAFANS", - "nomCommune": "VUILLAFANS" + "codePostal": "45260", + "codeCommune": "45256", + "libelleAcheminement": "PRESNOY", + "nomCommune": "PRESNOY" }, { - "codePostal": "37150", - "codeCommune": "37070", - "libelleAcheminement": "CHENONCEAUX", - "nomCommune": "CHENONCEAUX" + "codePostal": "31290", + "codeCommune": "31450", + "libelleAcheminement": "RENNEVILLE", + "nomCommune": "RENNEVILLE" }, { - "codePostal": "61500", - "codeCommune": "61068", - "libelleAcheminement": "BURSARD", - "nomCommune": "BURSARD" + "codePostal": "33830", + "codeCommune": "33042", + "libelleAcheminement": "BELIN BELIET", + "nomCommune": "BELIN BELIET" }, { - "codePostal": "08430", - "codeCommune": "08352", - "libelleAcheminement": "RAILLICOURT", - "nomCommune": "RAILLICOURT" + "codePostal": "46330", + "codeCommune": "46081", + "libelleAcheminement": "CREGOLS", + "nomCommune": "CREGOLS" }, { - "codePostal": "26140", - "codeCommune": "26002", - "libelleAcheminement": "ALBON", - "nomCommune": "ALBON" + "codePostal": "45390", + "codeCommune": "45258", + "libelleAcheminement": "PUISEAUX", + "nomCommune": "PUISEAUX" }, { - "codePostal": "37150", - "codeCommune": "37073", - "libelleAcheminement": "CHISSEAUX", - "nomCommune": "CHISSEAUX" + "codePostal": "31250", + "codeCommune": "31451", + "libelleAcheminement": "REVEL", + "nomCommune": "REVEL" }, { - "codePostal": "61430", - "codeCommune": "61069", - "libelleAcheminement": "CAHAN", - "nomCommune": "CAHAN" + "codePostal": "33760", + "codeCommune": "33044", + "libelleAcheminement": "BELLEFOND", + "nomCommune": "BELLEFOND" }, { - "codePostal": "08150", - "codeCommune": "08361", - "libelleAcheminement": "RENWEZ", - "nomCommune": "RENWEZ" + "codePostal": "46600", + "codeCommune": "46084", + "libelleAcheminement": "CREYSSE", + "nomCommune": "CREYSSE" }, { - "codePostal": "26300", - "codeCommune": "26004", - "libelleAcheminement": "ALIXAN", - "nomCommune": "ALIXAN" + "codePostal": "45220", + "codeCommune": "45279", + "libelleAcheminement": "ST GERMAIN DES PRES", + "nomCommune": "ST GERMAIN DES PRES" }, { - "codePostal": "37150", - "codeCommune": "37079", - "libelleAcheminement": "CIVRAY DE TOURAINE", - "nomCommune": "CIVRAY DE TOURAINE" + "codePostal": "31360", + "codeCommune": "31457", + "libelleAcheminement": "ROQUEFORT SUR GARONNE", + "nomCommune": "ROQUEFORT SUR GARONNE" }, { - "codePostal": "61120", - "codeCommune": "61072", - "libelleAcheminement": "CANAPVILLE", - "nomCommune": "CANAPVILLE" + "codePostal": "33430", + "codeCommune": "33046", + "libelleAcheminement": "BERNOS BEAULAC", + "nomCommune": "BERNOS BEAULAC" }, { - "codePostal": "08300", - "codeCommune": "08362", - "libelleAcheminement": "RETHEL", - "nomCommune": "RETHEL" + "codePostal": "46270", + "codeCommune": "46085", + "libelleAcheminement": "CUZAC", + "nomCommune": "CUZAC" }, { - "codePostal": "26780", - "codeCommune": "26005", - "libelleAcheminement": "ALLAN", - "nomCommune": "ALLAN" + "codePostal": "45320", + "codeCommune": "45281", + "libelleAcheminement": "ST HILAIRE LES ANDRESIS", + "nomCommune": "ST HILAIRE LES ANDRESIS" }, { - "codePostal": "37340", - "codeCommune": "37081", - "libelleAcheminement": "CLERE LES PINS", - "nomCommune": "CLERE LES PINS" + "codePostal": "31110", + "codeCommune": "31465", + "libelleAcheminement": "SACCOURVIELLE", + "nomCommune": "SACCOURVIELLE" }, { - "codePostal": "61500", - "codeCommune": "61081", - "libelleAcheminement": "CHAILLOUE", - "nomCommune": "CHAILLOUE" + "codePostal": "33370", + "codeCommune": "33061", + "libelleAcheminement": "BONNETAN", + "nomCommune": "BONNETAN" }, { - "codePostal": "08500", - "codeCommune": "08363", - "libelleAcheminement": "REVIN", - "nomCommune": "REVIN" + "codePostal": "46700", + "codeCommune": "46089", + "libelleAcheminement": "DURAVEL", + "nomCommune": "DURAVEL" }, { - "codePostal": "26570", - "codeCommune": "26026", - "libelleAcheminement": "BARRET DE LIOURE", - "nomCommune": "BARRET DE LIOURE" + "codePostal": "45500", + "codeCommune": "45291", + "libelleAcheminement": "ST MARTIN SUR OCRE", + "nomCommune": "ST MARTIN SUR OCRE" }, { - "codePostal": "37340", - "codeCommune": "37082", - "libelleAcheminement": "CONTINVOIR", - "nomCommune": "CONTINVOIR" + "codePostal": "31420", + "codeCommune": "31477", + "libelleAcheminement": "ST ELIX SEGLAN", + "nomCommune": "ST ELIX SEGLAN" }, { - "codePostal": "61320", - "codeCommune": "61085", - "libelleAcheminement": "LE CHAMP DE LA PIERRE", - "nomCommune": "LE CHAMP DE LA PIERRE" + "codePostal": "33910", + "codeCommune": "33062", + "libelleAcheminement": "BONZAC", + "nomCommune": "BONZAC" }, { - "codePostal": "08130", - "codeCommune": "08364", - "libelleAcheminement": "RILLY SUR AISNE", - "nomCommune": "RILLY SUR AISNE" + "codePostal": "46230", + "codeCommune": "46091", + "libelleAcheminement": "ESCAMPS", + "nomCommune": "ESCAMPS" }, { - "codePostal": "26110", - "codeCommune": "26050", - "libelleAcheminement": "BESIGNAN", - "nomCommune": "BESIGNAN" + "codePostal": "45490", + "codeCommune": "45303", + "libelleAcheminement": "SCEAUX DU GATINAIS", + "nomCommune": "SCEAUX DU GATINAIS" }, { - "codePostal": "37120", - "codeCommune": "37087", - "libelleAcheminement": "COURCOUE", - "nomCommune": "COURCOUE" + "codePostal": "31350", + "codeCommune": "31479", + "libelleAcheminement": "ST FERREOL DE COMMINGES", + "nomCommune": "ST FERREOL DE COMMINGES" }, { - "codePostal": "61240", - "codeCommune": "61088", - "libelleAcheminement": "CHAMP HAUT", - "nomCommune": "CHAMP HAUT" + "codePostal": "33000", + "codeCommune": "33063", + "libelleAcheminement": "BORDEAUX", + "nomCommune": "BORDEAUX" }, { - "codePostal": "08230", - "codeCommune": "08367", - "libelleAcheminement": "ROCROI", - "nomCommune": "ROCROI" + "codePostal": "46090", + "codeCommune": "46092", + "libelleAcheminement": "ESCLAUZELS", + "nomCommune": "ESCLAUZELS" }, { - "codePostal": "26460", - "codeCommune": "26051", - "libelleAcheminement": "BEZAUDUN SUR BINE", - "nomCommune": "BEZAUDUN SUR BINE" + "codePostal": "45110", + "codeCommune": "45311", + "libelleAcheminement": "SIGLOY", + "nomCommune": "SIGLOY" }, { - "codePostal": "37500", - "codeCommune": "37088", - "libelleAcheminement": "COUZIERS", - "nomCommune": "COUZIERS" + "codePostal": "31290", + "codeCommune": "31485", + "libelleAcheminement": "ST GERMIER", + "nomCommune": "ST GERMIER" }, { - "codePostal": "61140", - "codeCommune": "61096", - "libelleAcheminement": "RIVES D ANDAINE", - "nomCommune": "RIVES D ANDAINE" + "codePostal": "33350", + "codeCommune": "33064", + "libelleAcheminement": "BOSSUGAN", + "nomCommune": "BOSSUGAN" }, { - "codePostal": "08110", - "codeCommune": "08376", - "libelleAcheminement": "SAILLY", - "nomCommune": "SAILLY" + "codePostal": "46170", + "codeCommune": "46103", + "libelleAcheminement": "ST PAUL FLAUGNAC", + "nomCommune": "ST PAUL FLAUGNAC" }, { - "codePostal": "26410", - "codeCommune": "26055", - "libelleAcheminement": "BOULC", - "nomCommune": "BOULC" + "codePostal": "45260", + "codeCommune": "45321", + "libelleAcheminement": "THIMORY", + "nomCommune": "THIMORY" }, { - "codePostal": "37220", - "codeCommune": "37090", - "libelleAcheminement": "CRISSAY SUR MANSE", - "nomCommune": "CRISSAY SUR MANSE" + "codePostal": "31790", + "codeCommune": "31490", + "libelleAcheminement": "ST JORY", + "nomCommune": "ST JORY" }, { - "codePostal": "61400", - "codeCommune": "61097", - "libelleAcheminement": "LA CHAPELLE MONTLIGEON", - "nomCommune": "LA CHAPELLE MONTLIGEON" + "codePostal": "33124", + "codeCommune": "33072", + "libelleAcheminement": "BRANNENS", + "nomCommune": "BRANNENS" }, { - "codePostal": "08350", - "codeCommune": "08377", - "libelleAcheminement": "ST AIGNAN", - "nomCommune": "ST AIGNAN" + "codePostal": "46090", + "codeCommune": "46105", + "libelleAcheminement": "FLAUJAC POUJOLS", + "nomCommune": "FLAUJAC POUJOLS" }, { - "codePostal": "26410", - "codeCommune": "26055", - "libelleAcheminement": "BOULC", - "nomCommune": "BOULC" + "codePostal": "45310", + "codeCommune": "45326", + "libelleAcheminement": "TOURNOISIS", + "nomCommune": "TOURNOISIS" }, { - "codePostal": "37220", - "codeCommune": "37093", - "libelleAcheminement": "CROUZILLES", - "nomCommune": "CROUZILLES" + "codePostal": "31220", + "codeCommune": "31492", + "libelleAcheminement": "ST JULIEN SUR GARONNE", + "nomCommune": "ST JULIEN SUR GARONNE" }, { - "codePostal": "61270", - "codeCommune": "61100", - "libelleAcheminement": "LA CHAPELLE VIEL", - "nomCommune": "LA CHAPELLE VIEL" + "codePostal": "33820", + "codeCommune": "33073", + "libelleAcheminement": "BRAUD ET ST LOUIS", + "nomCommune": "BRAUD ET ST LOUIS" }, { - "codePostal": "08310", - "codeCommune": "08379", - "libelleAcheminement": "ST ETIENNE A ARNES", - "nomCommune": "ST ETIENNE A ARNES" + "codePostal": "46600", + "codeCommune": "46106", + "libelleAcheminement": "FLOIRAC", + "nomCommune": "FLOIRAC" }, { - "codePostal": "26300", - "codeCommune": "26057", - "libelleAcheminement": "BOURG DE PEAGE", - "nomCommune": "BOURG DE PEAGE" + "codePostal": "45300", + "codeCommune": "45348", + "libelleAcheminement": "YEVRE LA VILLE", + "nomCommune": "YEVRE LA VILLE" }, { - "codePostal": "37320", - "codeCommune": "37104", - "libelleAcheminement": "ESVRES", - "nomCommune": "ESVRES" + "codePostal": "31230", + "codeCommune": "31494", + "libelleAcheminement": "ST LAURENT", + "nomCommune": "ST LAURENT" }, { - "codePostal": "61320", - "codeCommune": "61107", - "libelleAcheminement": "CIRAL", - "nomCommune": "CIRAL" + "codePostal": "33750", + "codeCommune": "33079", + "libelleAcheminement": "CADARSAC", + "nomCommune": "CADARSAC" }, { - "codePostal": "08360", - "codeCommune": "08380", - "libelleAcheminement": "ST FERGEUX", - "nomCommune": "ST FERGEUX" + "codePostal": "46250", + "codeCommune": "46114", + "libelleAcheminement": "FRAYSSINET LE GELAT", + "nomCommune": "FRAYSSINET LE GELAT" }, { - "codePostal": "26400", - "codeCommune": "26065", - "libelleAcheminement": "CHABRILLAN", - "nomCommune": "CHABRILLAN" + "codePostal": "45300", + "codeCommune": "45348", + "libelleAcheminement": "YEVRE LA VILLE", + "nomCommune": "YEVRE LA VILLE" }, { - "codePostal": "37460", - "codeCommune": "37111", - "libelleAcheminement": "GENILLE", - "nomCommune": "GENILLE" + "codePostal": "31530", + "codeCommune": "31496", + "libelleAcheminement": "STE LIVRADE", + "nomCommune": "STE LIVRADE" }, { - "codePostal": "61250", - "codeCommune": "61111", - "libelleAcheminement": "COLOMBIERS", - "nomCommune": "COLOMBIERS" + "codePostal": "33360", + "codeCommune": "33085", + "libelleAcheminement": "CAMBLANES ET MEYNAC", + "nomCommune": "CAMBLANES ET MEYNAC" }, { - "codePostal": "08130", - "codeCommune": "08398", - "libelleAcheminement": "STE VAUBOURG", - "nomCommune": "STE VAUBOURG" + "codePostal": "46150", + "codeCommune": "46119", + "libelleAcheminement": "GIGOUZAC", + "nomCommune": "GIGOUZAC" }, { - "codePostal": "26190", - "codeCommune": "26066", - "libelleAcheminement": "LE CHAFFAL", - "nomCommune": "LE CHAFFAL" + "codePostal": "46140", + "codeCommune": "46005", + "libelleAcheminement": "ANGLARS JUILLAC", + "nomCommune": "ANGLARS JUILLAC" }, { - "codePostal": "37350", - "codeCommune": "37114", - "libelleAcheminement": "LA GUERCHE", - "nomCommune": "LA GUERCHE" + "codePostal": "31110", + "codeCommune": "31508", + "libelleAcheminement": "ST PAUL D OUEIL", + "nomCommune": "ST PAUL D OUEIL" }, { - "codePostal": "61110", - "codeCommune": "61116", - "libelleAcheminement": "SABLONS SUR HUISNE", - "nomCommune": "SABLONS SUR HUISNE" + "codePostal": "33550", + "codeCommune": "33093", + "libelleAcheminement": "CAPIAN", + "nomCommune": "CAPIAN" }, { - "codePostal": "08370", - "codeCommune": "08399", - "libelleAcheminement": "SAPOGNE SUR MARCHE", - "nomCommune": "SAPOGNE SUR MARCHE" + "codePostal": "46130", + "codeCommune": "46122", + "libelleAcheminement": "GINTRAC", + "nomCommune": "GINTRAC" }, { - "codePostal": "26150", - "codeCommune": "26069", - "libelleAcheminement": "CHAMALOC", - "nomCommune": "CHAMALOC" + "codePostal": "46090", + "codeCommune": "46010", + "libelleAcheminement": "AUJOLS", + "nomCommune": "AUJOLS" }, { - "codePostal": "37120", - "codeCommune": "37121", - "libelleAcheminement": "JAULNAY", - "nomCommune": "JAULNAY" + "codePostal": "31230", + "codeCommune": "31522", + "libelleAcheminement": "SALERM", + "nomCommune": "SALERM" }, { - "codePostal": "61110", - "codeCommune": "61116", - "libelleAcheminement": "SABLONS SUR HUISNE", - "nomCommune": "SABLONS SUR HUISNE" + "codePostal": "33840", + "codeCommune": "33095", + "libelleAcheminement": "CAPTIEUX", + "nomCommune": "CAPTIEUX" }, { - "codePostal": "08400", - "codeCommune": "08410", - "libelleAcheminement": "SEMIDE", - "nomCommune": "SEMIDE" + "codePostal": "46320", + "codeCommune": "46131", + "libelleAcheminement": "GREZES", + "nomCommune": "GREZES" }, { - "codePostal": "26230", - "codeCommune": "26073", - "libelleAcheminement": "CHANTEMERLE LES GRIGNAN", - "nomCommune": "CHANTEMERLE LES GRIGNAN" + "codePostal": "46600", + "codeCommune": "46016", + "libelleAcheminement": "BALADOU", + "nomCommune": "BALADOU" }, { - "codePostal": "37300", - "codeCommune": "37122", - "libelleAcheminement": "JOUE LES TOURS", - "nomCommune": "JOUE LES TOURS" + "codePostal": "31110", + "codeCommune": "31524", + "libelleAcheminement": "SALLES ET PRATVIEL", + "nomCommune": "SALLES ET PRATVIEL" }, { - "codePostal": "61250", - "codeCommune": "61117", - "libelleAcheminement": "CONDE SUR SARTHE", - "nomCommune": "CONDE SUR SARTHE" + "codePostal": "33540", + "codeCommune": "33105", + "libelleAcheminement": "CASTELVIEL", + "nomCommune": "CASTELVIEL" }, { - "codePostal": "08300", - "codeCommune": "08416", - "libelleAcheminement": "SEUIL", - "nomCommune": "SEUIL" + "codePostal": "46240", + "codeCommune": "46138", + "libelleAcheminement": "COEUR DE CAUSSE", + "nomCommune": "COEUR DE CAUSSE" }, { - "codePostal": "26260", - "codeCommune": "26077", - "libelleAcheminement": "CHARMES SUR L HERBASSE", - "nomCommune": "CHARMES SUR L HERBASSE" + "codePostal": "46130", + "codeCommune": "46029", + "libelleAcheminement": "BIARS SUR CERE", + "nomCommune": "BIARS SUR CERE" }, { - "codePostal": "37130", - "codeCommune": "37123", - "libelleAcheminement": "LANGEAIS", - "nomCommune": "LANGEAIS" + "codePostal": "31350", + "codeCommune": "31528", + "libelleAcheminement": "SAMAN", + "nomCommune": "SAMAN" }, { - "codePostal": "61160", - "codeCommune": "61120", - "libelleAcheminement": "COUDEHARD", - "nomCommune": "COUDEHARD" + "codePostal": "33640", + "codeCommune": "33109", + "libelleAcheminement": "CASTRES GIRONDE", + "nomCommune": "CASTRES GIRONDE" }, { - "codePostal": "08380", - "codeCommune": "08420", - "libelleAcheminement": "SIGNY LE PETIT", - "nomCommune": "SIGNY LE PETIT" + "codePostal": "46120", + "codeCommune": "46139", + "libelleAcheminement": "LABATHUDE", + "nomCommune": "LABATHUDE" }, { - "codePostal": "26410", - "codeCommune": "26086", - "libelleAcheminement": "CHATILLON EN DIOIS", - "nomCommune": "CHATILLON EN DIOIS" + "codePostal": "46800", + "codeCommune": "46033", + "libelleAcheminement": "PORTE DU QUERCY", + "nomCommune": "PORTE DU QUERCY" }, { - "codePostal": "37460", - "codeCommune": "37127", - "libelleAcheminement": "LE LIEGE", - "nomCommune": "LE LIEGE" + "codePostal": "31420", + "codeCommune": "31529", + "libelleAcheminement": "SAMOUILLAN", + "nomCommune": "SAMOUILLAN" }, { - "codePostal": "61220", - "codeCommune": "61124", - "libelleAcheminement": "LA COULONCHE", - "nomCommune": "LA COULONCHE" + "codePostal": "33490", + "codeCommune": "33111", + "libelleAcheminement": "CAUDROT", + "nomCommune": "CAUDROT" }, { - "codePostal": "08240", - "codeCommune": "08424", - "libelleAcheminement": "SOMMAUTHE", - "nomCommune": "SOMMAUTHE" + "codePostal": "46700", + "codeCommune": "46142", + "libelleAcheminement": "LACAPELLE CABANAC", + "nomCommune": "LACAPELLE CABANAC" }, { - "codePostal": "26410", - "codeCommune": "26086", - "libelleAcheminement": "CHATILLON EN DIOIS", - "nomCommune": "CHATILLON EN DIOIS" + "codePostal": "46120", + "codeCommune": "46036", + "libelleAcheminement": "LE BOUYSSOU", + "nomCommune": "LE BOUYSSOU" }, { - "codePostal": "37320", - "codeCommune": "37134", - "libelleAcheminement": "LOUANS", - "nomCommune": "LOUANS" + "codePostal": "31460", + "codeCommune": "31534", + "libelleAcheminement": "SAUSSENS", + "nomCommune": "SAUSSENS" }, { - "codePostal": "61560", - "codeCommune": "61130", - "libelleAcheminement": "COURGEOUT", - "nomCommune": "COURGEOUT" + "codePostal": "33690", + "codeCommune": "33113", + "libelleAcheminement": "CAUVIGNAC", + "nomCommune": "CAUVIGNAC" }, { - "codePostal": "08250", - "codeCommune": "08425", - "libelleAcheminement": "SOMMERANCE", - "nomCommune": "SOMMERANCE" + "codePostal": "46230", + "codeCommune": "46148", + "libelleAcheminement": "LALBENQUE", + "nomCommune": "LALBENQUE" }, { - "codePostal": "26240", - "codeCommune": "26094", - "libelleAcheminement": "CLAVEYSON", - "nomCommune": "CLAVEYSON" + "codePostal": "46100", + "codeCommune": "46052", + "libelleAcheminement": "CAMBOULIT", + "nomCommune": "CAMBOULIT" }, { - "codePostal": "37120", - "codeCommune": "37140", - "libelleAcheminement": "LUZE", - "nomCommune": "LUZE" + "codePostal": "31370", + "codeCommune": "31538", + "libelleAcheminement": "SAVERES", + "nomCommune": "SAVERES" }, { - "codePostal": "61220", - "codeCommune": "61137", - "libelleAcheminement": "CRAMENIL", - "nomCommune": "CRAMENIL" + "codePostal": "33620", + "codeCommune": "33114", + "libelleAcheminement": "CAVIGNAC", + "nomCommune": "CAVIGNAC" }, { - "codePostal": "08300", - "codeCommune": "08426", - "libelleAcheminement": "SON", - "nomCommune": "SON" + "codePostal": "46260", + "codeCommune": "46154", + "libelleAcheminement": "LARAMIERE", + "nomCommune": "LARAMIERE" }, { - "codePostal": "26110", - "codeCommune": "26103", - "libelleAcheminement": "CONDORCET", - "nomCommune": "CONDORCET" + "codePostal": "46240", + "codeCommune": "46054", + "libelleAcheminement": "CANIAC DU CAUSSE", + "nomCommune": "CANIAC DU CAUSSE" }, { - "codePostal": "37110", - "codeCommune": "37155", - "libelleAcheminement": "MONTHODON", - "nomCommune": "MONTHODON" + "codePostal": "31580", + "codeCommune": "31539", + "libelleAcheminement": "SEDEILHAC", + "nomCommune": "SEDEILHAC" }, { - "codePostal": "61130", - "codeCommune": "61142", - "libelleAcheminement": "DAME MARIE", - "nomCommune": "DAME MARIE" + "codePostal": "33430", + "codeCommune": "33116", + "libelleAcheminement": "CAZATS", + "nomCommune": "CAZATS" }, { - "codePostal": "08390", - "codeCommune": "08430", - "libelleAcheminement": "STONNE", - "nomCommune": "STONNE" + "codePostal": "46100", + "codeCommune": "46168", + "libelleAcheminement": "LENTILLAC ST BLAISE", + "nomCommune": "LENTILLAC ST BLAISE" }, { - "codePostal": "26740", - "codeCommune": "26106", - "libelleAcheminement": "LA COUCOURDE", - "nomCommune": "LA COUCOURDE" + "codePostal": "46100", + "codeCommune": "46057", + "libelleAcheminement": "CARDAILLAC", + "nomCommune": "CARDAILLAC" }, { - "codePostal": "37260", - "codeCommune": "37159", - "libelleAcheminement": "MONTS", - "nomCommune": "MONTS" + "codePostal": "31840", + "codeCommune": "31541", + "libelleAcheminement": "SEILH", + "nomCommune": "SEILH" }, { - "codePostal": "61270", - "codeCommune": "61151", - "libelleAcheminement": "ECORCEI", - "nomCommune": "ECORCEI" + "codePostal": "33790", + "codeCommune": "33117", + "libelleAcheminement": "CAZAUGITAT", + "nomCommune": "CAZAUGITAT" }, { - "codePostal": "08240", - "codeCommune": "08437", - "libelleAcheminement": "TAILLY", - "nomCommune": "TAILLY" + "codePostal": "46260", + "codeCommune": "46179", + "libelleAcheminement": "LUGAGNAC", + "nomCommune": "LUGAGNAC" }, { - "codePostal": "26220", - "codeCommune": "26114", - "libelleAcheminement": "DIEULEFIT", - "nomCommune": "DIEULEFIT" + "codePostal": "46110", + "codeCommune": "46058", + "libelleAcheminement": "CARENNAC", + "nomCommune": "CARENNAC" }, { - "codePostal": "37110", - "codeCommune": "37160", - "libelleAcheminement": "MORAND", - "nomCommune": "MORAND" + "codePostal": "31160", + "codeCommune": "31544", + "libelleAcheminement": "SENGOUAGNET", + "nomCommune": "SENGOUAGNET" }, { - "codePostal": "61500", - "codeCommune": "61156", - "libelleAcheminement": "ESSAY", - "nomCommune": "ESSAY" + "codePostal": "33610", + "codeCommune": "33122", + "libelleAcheminement": "CESTAS", + "nomCommune": "CESTAS" }, { - "codePostal": "08430", - "codeCommune": "08454", - "libelleAcheminement": "TOULIGNY", - "nomCommune": "TOULIGNY" + "codePostal": "46140", + "codeCommune": "46182", + "libelleAcheminement": "LUZECH", + "nomCommune": "LUZECH" }, { - "codePostal": "26780", - "codeCommune": "26121", - "libelleAcheminement": "ESPELUCHE", - "nomCommune": "ESPELUCHE" + "codePostal": "46500", + "codeCommune": "46078", + "libelleAcheminement": "COUZOU", + "nomCommune": "COUZOU" }, { - "codePostal": "37380", - "codeCommune": "37166", - "libelleAcheminement": "NEUILLE LE LIERRE", - "nomCommune": "NEUILLE LE LIERRE" + "codePostal": "31260", + "codeCommune": "31554", + "libelleAcheminement": "TOUILLE", + "nomCommune": "TOUILLE" }, { - "codePostal": "61160", - "codeCommune": "61171", - "libelleAcheminement": "FONTAINE LES BASSETS", - "nomCommune": "FONTAINE LES BASSETS" + "codePostal": "33920", + "codeCommune": "33126", + "libelleAcheminement": "CIVRAC DE BLAYE", + "nomCommune": "CIVRAC DE BLAYE" }, { - "codePostal": "08800", - "codeCommune": "08456", - "libelleAcheminement": "TOURNAVAUX", - "nomCommune": "TOURNAVAUX" + "codePostal": "46160", + "codeCommune": "46183", + "libelleAcheminement": "MARCILHAC SUR CELE", + "nomCommune": "MARCILHAC SUR CELE" }, { - "codePostal": "26340", - "codeCommune": "26122", - "libelleAcheminement": "ESPENEL", - "nomCommune": "ESPENEL" + "codePostal": "46090", + "codeCommune": "46095", + "libelleAcheminement": "ESPERE", + "nomCommune": "ESPERE" }, { - "codePostal": "37360", - "codeCommune": "37167", - "libelleAcheminement": "NEUILLE PONT PIERRE", - "nomCommune": "NEUILLE PONT PIERRE" + "codePostal": "31400", + "codeCommune": "31555", + "libelleAcheminement": "TOULOUSE", + "nomCommune": "TOULOUSE" }, { - "codePostal": "61230", - "codeCommune": "61178", - "libelleAcheminement": "LA FRESNAIE FAYEL", - "nomCommune": "LA FRESNAIE FAYEL" + "codePostal": "33350", + "codeCommune": "33127", + "libelleAcheminement": "CIVRAC SUR DORDOGNE", + "nomCommune": "CIVRAC SUR DORDOGNE" }, { - "codePostal": "08110", - "codeCommune": "08459", - "libelleAcheminement": "TREMBLOIS LES CARIGNAN", - "nomCommune": "TREMBLOIS LES CARIGNAN" + "codePostal": "46350", + "codeCommune": "46186", + "libelleAcheminement": "MASCLAT", + "nomCommune": "MASCLAT" }, { - "codePostal": "26800", - "codeCommune": "26124", - "libelleAcheminement": "ETOILE SUR RHONE", - "nomCommune": "ETOILE SUR RHONE" + "codePostal": "46120", + "codeCommune": "46096", + "libelleAcheminement": "ESPEYROUX", + "nomCommune": "ESPEYROUX" }, { - "codePostal": "37230", - "codeCommune": "37182", - "libelleAcheminement": "PERNAY", - "nomCommune": "PERNAY" + "codePostal": "31810", + "codeCommune": "31572", + "libelleAcheminement": "VENERQUE", + "nomCommune": "VENERQUE" }, { - "codePostal": "61420", - "codeCommune": "61182", - "libelleAcheminement": "GANDELAIN", - "nomCommune": "GANDELAIN" + "codePostal": "33340", + "codeCommune": "33128", + "libelleAcheminement": "CIVRAC EN MEDOC", + "nomCommune": "CIVRAC EN MEDOC" }, { - "codePostal": "08150", - "codeCommune": "08460", - "libelleAcheminement": "TREMBLOIS LES ROCROI", - "nomCommune": "TREMBLOIS LES ROCROI" + "codePostal": "46700", + "codeCommune": "46187", + "libelleAcheminement": "MAUROUX", + "nomCommune": "MAUROUX" }, { - "codePostal": "26730", - "codeCommune": "26129", - "libelleAcheminement": "EYMEUX", - "nomCommune": "EYMEUX" + "codePostal": "46100", + "codeCommune": "46100", + "libelleAcheminement": "FAYCELLES", + "nomCommune": "FAYCELLES" }, { - "codePostal": "37260", - "codeCommune": "37186", - "libelleAcheminement": "PONT DE RUAN", - "nomCommune": "PONT DE RUAN" + "codePostal": "31320", + "codeCommune": "31575", + "libelleAcheminement": "VIEILLE TOULOUSE", + "nomCommune": "VIEILLE TOULOUSE" }, { - "codePostal": "61390", - "codeCommune": "61183", - "libelleAcheminement": "GAPREE", - "nomCommune": "GAPREE" + "codePostal": "33540", + "codeCommune": "33129", + "libelleAcheminement": "CLEYRAC", + "nomCommune": "CLEYRAC" }, { - "codePostal": "08400", - "codeCommune": "08461", - "libelleAcheminement": "VANDY", - "nomCommune": "VANDY" + "codePostal": "46090", + "codeCommune": "46188", + "libelleAcheminement": "MAXOU", + "nomCommune": "MAXOU" }, { - "codePostal": "26240", - "codeCommune": "26133", - "libelleAcheminement": "FAY LE CLOS", - "nomCommune": "FAY LE CLOS" + "codePostal": "46100", + "codeCommune": "46111", + "libelleAcheminement": "FOURMAGNAC", + "nomCommune": "FOURMAGNAC" }, { - "codePostal": "37800", - "codeCommune": "37188", - "libelleAcheminement": "POUZAY", - "nomCommune": "POUZAY" + "codePostal": "31290", + "codeCommune": "31576", + "libelleAcheminement": "VIEILLEVIGNE", + "nomCommune": "VIEILLEVIGNE" }, { - "codePostal": "61130", - "codeCommune": "61196", - "libelleAcheminement": "BELFORET EN PERCHE", - "nomCommune": "BELFORET EN PERCHE" + "codePostal": "33230", + "codeCommune": "33138", + "libelleAcheminement": "COUTRAS", + "nomCommune": "COUTRAS" }, { - "codePostal": "08240", - "codeCommune": "08470", - "libelleAcheminement": "VERPEL", - "nomCommune": "VERPEL" + "codePostal": "46090", + "codeCommune": "46191", + "libelleAcheminement": "MERCUES", + "nomCommune": "MERCUES" }, { - "codePostal": "26750", - "codeCommune": "26139", - "libelleAcheminement": "GENISSIEUX", - "nomCommune": "GENISSIEUX" + "codePostal": "46700", + "codeCommune": "46130", + "libelleAcheminement": "GREZELS", + "nomCommune": "GREZELS" }, { - "codePostal": "37140", - "codeCommune": "37193", - "libelleAcheminement": "RESTIGNE", - "nomCommune": "RESTIGNE" + "codePostal": "31480", + "codeCommune": "31577", + "libelleAcheminement": "VIGNAUX", + "nomCommune": "VIGNAUX" }, { - "codePostal": "61400", - "codeCommune": "61196", - "libelleAcheminement": "BELFORET EN PERCHE", - "nomCommune": "BELFORET EN PERCHE" + "codePostal": "33240", + "codeCommune": "33143", + "libelleAcheminement": "CUBZAC LES PONTS", + "nomCommune": "CUBZAC LES PONTS" }, { - "codePostal": "08270", - "codeCommune": "08472", - "libelleAcheminement": "VIEL ST REMY", - "nomCommune": "VIEL ST REMY" + "codePostal": "46500", + "codeCommune": "46193", + "libelleAcheminement": "MIERS", + "nomCommune": "MIERS" }, { - "codePostal": "26530", - "codeCommune": "26143", - "libelleAcheminement": "LE GRAND SERRE", - "nomCommune": "LE GRAND SERRE" + "codePostal": "46240", + "codeCommune": "46138", + "libelleAcheminement": "COEUR DE CAUSSE", + "nomCommune": "COEUR DE CAUSSE" }, { - "codePostal": "37210", - "codeCommune": "37203", - "libelleAcheminement": "ROCHECORBON", - "nomCommune": "ROCHECORBON" + "codePostal": "31320", + "codeCommune": "31578", + "libelleAcheminement": "VIGOULET AUZIL", + "nomCommune": "VIGOULET AUZIL" }, { - "codePostal": "61210", - "codeCommune": "61199", - "libelleAcheminement": "HABLOVILLE", - "nomCommune": "HABLOVILLE" + "codePostal": "33540", + "codeCommune": "33149", + "libelleAcheminement": "DAUBEZE", + "nomCommune": "DAUBEZE" }, { - "codePostal": "08190", - "codeCommune": "08476", - "libelleAcheminement": "VILLERS DEVANT LE THOUR", - "nomCommune": "VILLERS DEVANT LE THOUR" + "codePostal": "46120", + "codeCommune": "46195", + "libelleAcheminement": "MOLIERES", + "nomCommune": "MOLIERES" }, { - "codePostal": "26190", - "codeCommune": "26163", - "libelleAcheminement": "LEONCEL", - "nomCommune": "LEONCEL" + "codePostal": "46240", + "codeCommune": "46138", + "libelleAcheminement": "COEUR DE CAUSSE", + "nomCommune": "COEUR DE CAUSSE" }, { - "codePostal": "37320", - "codeCommune": "37211", - "libelleAcheminement": "ST BRANCHS", - "nomCommune": "ST BRANCHS" + "codePostal": "31380", + "codeCommune": "31579", + "libelleAcheminement": "VILLARIES", + "nomCommune": "VILLARIES" }, { - "codePostal": "61130", - "codeCommune": "61207", - "libelleAcheminement": "IGE", - "nomCommune": "IGE" + "codePostal": "33230", + "codeCommune": "33154", + "libelleAcheminement": "LES EGLISOTTES ET CHALAURES", + "nomCommune": "LES EGLISOTTES ET CHALAURES" }, { - "codePostal": "08440", - "codeCommune": "08483", - "libelleAcheminement": "VILLE SUR LUMES", - "nomCommune": "VILLE SUR LUMES" + "codePostal": "46230", + "codeCommune": "46202", + "libelleAcheminement": "MONTDOUMERC", + "nomCommune": "MONTDOUMERC" }, { - "codePostal": "26250", - "codeCommune": "26165", - "libelleAcheminement": "LIVRON SUR DROME", - "nomCommune": "LIVRON SUR DROME" + "codePostal": "46120", + "codeCommune": "46143", + "libelleAcheminement": "LACAPELLE MARIVAL", + "nomCommune": "LACAPELLE MARIVAL" }, { - "codePostal": "37600", - "codeCommune": "37221", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "31620", + "codeCommune": "31581", + "libelleAcheminement": "VILLAUDRIC", + "nomCommune": "VILLAUDRIC" }, { - "codePostal": "61140", - "codeCommune": "61211", - "libelleAcheminement": "JUVIGNY VAL D ANDAINE", - "nomCommune": "JUVIGNY VAL D ANDAINE" + "codePostal": "33840", + "codeCommune": "33155", + "libelleAcheminement": "ESCAUDES", + "nomCommune": "ESCAUDES" }, { - "codePostal": "08400", - "codeCommune": "08490", - "libelleAcheminement": "VOUZIERS", - "nomCommune": "VOUZIERS" + "codePostal": "46150", + "codeCommune": "46205", + "libelleAcheminement": "MONTGESTY", + "nomCommune": "MONTGESTY" }, { - "codePostal": "26300", - "codeCommune": "26173", - "libelleAcheminement": "MARCHES", - "nomCommune": "MARCHES" + "codePostal": "46200", + "codeCommune": "46145", + "libelleAcheminement": "LACHAPELLE AUZAC", + "nomCommune": "LACHAPELLE AUZAC" }, { - "codePostal": "37380", - "codeCommune": "37224", - "libelleAcheminement": "ST LAURENT EN GATINES", - "nomCommune": "ST LAURENT EN GATINES" + "codePostal": "31800", + "codeCommune": "31585", + "libelleAcheminement": "VILLENEUVE DE RIVIERE", + "nomCommune": "VILLENEUVE DE RIVIERE" }, { - "codePostal": "61200", - "codeCommune": "61212", - "libelleAcheminement": "JUVIGNY SUR ORNE", - "nomCommune": "JUVIGNY SUR ORNE" + "codePostal": "33820", + "codeCommune": "33159", + "libelleAcheminement": "ETAULIERS", + "nomCommune": "ETAULIERS" }, { - "codePostal": "08000", - "codeCommune": "08497", - "libelleAcheminement": "WARCQ", - "nomCommune": "WARCQ" + "codePostal": "46330", + "codeCommune": "46212", + "libelleAcheminement": "ORNIAC", + "nomCommune": "ORNIAC" }, { - "codePostal": "26260", - "codeCommune": "26174", - "libelleAcheminement": "MARGES", - "nomCommune": "MARGES" + "codePostal": "46240", + "codeCommune": "46151", + "libelleAcheminement": "LAMOTHE CASSEL", + "nomCommune": "LAMOTHE CASSEL" }, { - "codePostal": "37270", - "codeCommune": "37225", - "libelleAcheminement": "ST MARTIN LE BEAU", - "nomCommune": "ST MARTIN LE BEAU" + "codePostal": "32360", + "codeCommune": "32003", + "libelleAcheminement": "ANTRAS", + "nomCommune": "ANTRAS" }, { - "codePostal": "61320", - "codeCommune": "61213", - "libelleAcheminement": "LALACELLE", - "nomCommune": "LALACELLE" + "codePostal": "33350", + "codeCommune": "33168", + "libelleAcheminement": "FLAUJAGUES", + "nomCommune": "FLAUJAGUES" }, { - "codePostal": "09800", - "codeCommune": "09014", - "libelleAcheminement": "ARGEIN", - "nomCommune": "ARGEIN" + "codePostal": "46300", + "codeCommune": "46241", + "libelleAcheminement": "ROUFFILHAC", + "nomCommune": "ROUFFILHAC" }, { - "codePostal": "26270", - "codeCommune": "26185", - "libelleAcheminement": "MIRMANDE", - "nomCommune": "MIRMANDE" + "codePostal": "46160", + "codeCommune": "46155", + "libelleAcheminement": "LARNAGOL", + "nomCommune": "LARNAGOL" }, { - "codePostal": "37140", - "codeCommune": "37228", - "libelleAcheminement": "ST NICOLAS DE BOURGUEIL", - "nomCommune": "ST NICOLAS DE BOURGUEIL" + "codePostal": "32230", + "codeCommune": "32008", + "libelleAcheminement": "ARMENTIEUX", + "nomCommune": "ARMENTIEUX" }, { - "codePostal": "61250", - "codeCommune": "61224", - "libelleAcheminement": "LARRE", - "nomCommune": "LARRE" + "codePostal": "33126", + "codeCommune": "33174", + "libelleAcheminement": "FRONSAC", + "nomCommune": "FRONSAC" }, { - "codePostal": "09460", - "codeCommune": "09020", - "libelleAcheminement": "ARTIGUES", - "nomCommune": "ARTIGUES" + "codePostal": "46120", + "codeCommune": "46243", + "libelleAcheminement": "RUEYRES", + "nomCommune": "RUEYRES" }, { - "codePostal": "26740", - "codeCommune": "26191", - "libelleAcheminement": "MONTBOUCHER SUR JABRON", - "nomCommune": "MONTBOUCHER SUR JABRON" + "codePostal": "46090", + "codeCommune": "46156", + "libelleAcheminement": "BELLEFONT LA RAUZE", + "nomCommune": "BELLEFONT LA RAUZE" }, { - "codePostal": "37110", - "codeCommune": "37229", - "libelleAcheminement": "ST NICOLAS DES MOTETS", - "nomCommune": "ST NICOLAS DES MOTETS" + "codePostal": "32230", + "codeCommune": "32009", + "libelleAcheminement": "ARMOUS ET CAU", + "nomCommune": "ARMOUS ET CAU" }, { - "codePostal": "61420", - "codeCommune": "61228", - "libelleAcheminement": "L OREE D ECOUVES", - "nomCommune": "L OREE D ECOUVES" + "codePostal": "33240", + "codeCommune": "33183", + "libelleAcheminement": "GAURIAGUET", + "nomCommune": "GAURIAGUET" }, { - "codePostal": "09100", - "codeCommune": "09022", - "libelleAcheminement": "ARVIGNA", - "nomCommune": "ARVIGNA" + "codePostal": "46260", + "codeCommune": "46247", + "libelleAcheminement": "SAILLAC", + "nomCommune": "SAILLAC" }, { - "codePostal": "26570", - "codeCommune": "26193", - "libelleAcheminement": "MONTBRUN LES BAINS", - "nomCommune": "MONTBRUN LES BAINS" + "codePostal": "46360", + "codeCommune": "46162", + "libelleAcheminement": "LAUZES", + "nomCommune": "LAUZES" }, { - "codePostal": "37130", - "codeCommune": "37232", - "libelleAcheminement": "COTEAUX SUR LOIRE", - "nomCommune": "COTEAUX SUR LOIRE" + "codePostal": "32140", + "codeCommune": "32010", + "libelleAcheminement": "ARROUEDE", + "nomCommune": "ARROUEDE" }, { - "codePostal": "61420", - "codeCommune": "61228", - "libelleAcheminement": "L OREE D ECOUVES", - "nomCommune": "L OREE D ECOUVES" + "codePostal": "33920", + "codeCommune": "33184", + "libelleAcheminement": "GENERAC", + "nomCommune": "GENERAC" }, { - "codePostal": "09800", - "codeCommune": "09025", - "libelleAcheminement": "AUCAZEIN", - "nomCommune": "AUCAZEIN" + "codePostal": "46360", + "codeCommune": "46252", + "libelleAcheminement": "LES PECHS DU VERS", + "nomCommune": "LES PECHS DU VERS" }, { - "codePostal": "26350", - "codeCommune": "26194", - "libelleAcheminement": "MONTCHENU", - "nomCommune": "MONTCHENU" + "codePostal": "46500", + "codeCommune": "46165", + "libelleAcheminement": "LAVERGNE", + "nomCommune": "LAVERGNE" }, { - "codePostal": "37140", - "codeCommune": "37232", - "libelleAcheminement": "COTEAUX SUR LOIRE", - "nomCommune": "COTEAUX SUR LOIRE" + "codePostal": "32410", + "codeCommune": "32024", + "libelleAcheminement": "AYGUETINTE", + "nomCommune": "AYGUETINTE" }, { - "codePostal": "61290", - "codeCommune": "61230", - "libelleAcheminement": "LONGNY LES VILLAGES", - "nomCommune": "LONGNY LES VILLAGES" + "codePostal": "33190", + "codeCommune": "33187", + "libelleAcheminement": "GIRONDE SUR DROPT", + "nomCommune": "GIRONDE SUR DROPT" }, { - "codePostal": "09220", - "codeCommune": "09030", - "libelleAcheminement": "AUZAT", - "nomCommune": "AUZAT" + "codePostal": "46300", + "codeCommune": "46257", + "libelleAcheminement": "ST CIRQ MADELON", + "nomCommune": "ST CIRQ MADELON" }, { - "codePostal": "26120", - "codeCommune": "26206", - "libelleAcheminement": "MONTMEYRAN", - "nomCommune": "MONTMEYRAN" + "codePostal": "46270", + "codeCommune": "46174", + "libelleAcheminement": "LINAC", + "nomCommune": "LINAC" }, { - "codePostal": "37530", - "codeCommune": "37236", - "libelleAcheminement": "ST REGLE", - "nomCommune": "ST REGLE" + "codePostal": "32800", + "codeCommune": "32025", + "libelleAcheminement": "AYZIEU", + "nomCommune": "AYZIEU" }, { - "codePostal": "61290", - "codeCommune": "61230", - "libelleAcheminement": "LONGNY LES VILLAGES", - "nomCommune": "LONGNY LES VILLAGES" + "codePostal": "33590", + "codeCommune": "33193", + "libelleAcheminement": "GRAYAN ET L HOPITAL", + "nomCommune": "GRAYAN ET L HOPITAL" }, { - "codePostal": "09800", - "codeCommune": "09034", - "libelleAcheminement": "BALACET", - "nomCommune": "BALACET" + "codePostal": "46600", + "codeCommune": "46265", + "libelleAcheminement": "ST DENIS LES MARTEL", + "nomCommune": "ST DENIS LES MARTEL" }, { - "codePostal": "26800", - "codeCommune": "26208", - "libelleAcheminement": "MONTOISON", - "nomCommune": "MONTOISON" + "codePostal": "46130", + "codeCommune": "46177", + "libelleAcheminement": "LOUBRESSAC", + "nomCommune": "LOUBRESSAC" }, { - "codePostal": "37310", - "codeCommune": "37254", - "libelleAcheminement": "TAUXIGNY ST BAULD", - "nomCommune": "TAUXIGNY ST BAULD" + "codePostal": "32720", + "codeCommune": "32027", + "libelleAcheminement": "BARCELONNE DU GERS", + "nomCommune": "BARCELONNE DU GERS" }, { - "codePostal": "61290", - "codeCommune": "61230", - "libelleAcheminement": "LONGNY LES VILLAGES", - "nomCommune": "LONGNY LES VILLAGES" + "codePostal": "33420", + "codeCommune": "33196", + "libelleAcheminement": "GUILLAC", + "nomCommune": "GUILLAC" }, { - "codePostal": "09800", - "codeCommune": "09035", - "libelleAcheminement": "BALAGUERES", - "nomCommune": "BALAGUERES" + "codePostal": "46210", + "codeCommune": "46269", + "libelleAcheminement": "ST HILAIRE", + "nomCommune": "ST HILAIRE" }, { - "codePostal": "26510", - "codeCommune": "26209", - "libelleAcheminement": "MONTREAL LES SOURCES", - "nomCommune": "MONTREAL LES SOURCES" + "codePostal": "46500", + "codeCommune": "46189", + "libelleAcheminement": "MAYRINHAC LENTOUR", + "nomCommune": "MAYRINHAC LENTOUR" }, { - "codePostal": "37260", - "codeCommune": "37257", - "libelleAcheminement": "THILOUZE", - "nomCommune": "THILOUZE" + "codePostal": "32350", + "codeCommune": "32029", + "libelleAcheminement": "BARRAN", + "nomCommune": "BARRAN" }, { - "codePostal": "61380", - "codeCommune": "61244", - "libelleAcheminement": "MAHERU", - "nomCommune": "MAHERU" + "codePostal": "33720", + "codeCommune": "33197", + "libelleAcheminement": "GUILLOS", + "nomCommune": "GUILLOS" }, { - "codePostal": "09000", - "codeCommune": "09044", - "libelleAcheminement": "BAULOU", - "nomCommune": "BAULOU" + "codePostal": "46700", + "codeCommune": "46277", + "libelleAcheminement": "ST MARTIN LE REDON", + "nomCommune": "ST MARTIN LE REDON" }, { - "codePostal": "26240", - "codeCommune": "26216", - "libelleAcheminement": "ST JEAN DE GALAURE", - "nomCommune": "ST JEAN DE GALAURE" + "codePostal": "46300", + "codeCommune": "46194", + "libelleAcheminement": "MILHAC", + "nomCommune": "MILHAC" }, { - "codePostal": "37120", - "codeCommune": "37260", - "libelleAcheminement": "LA TOUR ST GELIN", - "nomCommune": "LA TOUR ST GELIN" + "codePostal": "32320", + "codeCommune": "32032", + "libelleAcheminement": "BASSOUES", + "nomCommune": "BASSOUES" }, { - "codePostal": "61230", - "codeCommune": "61268", - "libelleAcheminement": "MENIL HUBERT EN EXMES", - "nomCommune": "MENIL HUBERT EN EXMES" + "codePostal": "33185", + "codeCommune": "33200", + "libelleAcheminement": "LE HAILLAN", + "nomCommune": "LE HAILLAN" }, { - "codePostal": "09000", - "codeCommune": "09066", - "libelleAcheminement": "BRASSAC", - "nomCommune": "BRASSAC" + "codePostal": "46150", + "codeCommune": "46280", + "libelleAcheminement": "ST MEDARD", + "nomCommune": "ST MEDARD" }, { - "codePostal": "26240", - "codeCommune": "26216", - "libelleAcheminement": "ST JEAN DE GALAURE", - "nomCommune": "ST JEAN DE GALAURE" + "codePostal": "46310", + "codeCommune": "46196", + "libelleAcheminement": "MONTAMEL", + "nomCommune": "MONTAMEL" }, { - "codePostal": "37120", - "codeCommune": "37268", - "libelleAcheminement": "VERNEUIL LE CHATEAU", - "nomCommune": "VERNEUIL LE CHATEAU" + "codePostal": "32140", + "codeCommune": "32041", + "libelleAcheminement": "BELLEGARDE", + "nomCommune": "BELLEGARDE" }, { - "codePostal": "61560", - "codeCommune": "61277", - "libelleAcheminement": "LA MESNIERE", - "nomCommune": "LA MESNIERE" + "codePostal": "33640", + "codeCommune": "33206", + "libelleAcheminement": "ISLE ST GEORGES", + "nomCommune": "ISLE ST GEORGES" }, { - "codePostal": "09350", - "codeCommune": "09075", - "libelleAcheminement": "CAMPAGNE SUR ARIZE", - "nomCommune": "CAMPAGNE SUR ARIZE" + "codePostal": "46130", + "codeCommune": "46284", + "libelleAcheminement": "ST MICHEL LOUBEJOU", + "nomCommune": "ST MICHEL LOUBEJOU" }, { - "codePostal": "26190", - "codeCommune": "26217", - "libelleAcheminement": "LA MOTTE FANJAS", - "nomCommune": "LA MOTTE FANJAS" + "codePostal": "46800", + "codeCommune": "46201", + "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", + "nomCommune": "MONTCUQ EN QUERCY BLANC" }, { - "codePostal": "37510", - "codeCommune": "37272", - "libelleAcheminement": "VILLANDRY", - "nomCommune": "VILLANDRY" + "codePostal": "32100", + "codeCommune": "32057", + "libelleAcheminement": "BLAZIERT", + "nomCommune": "BLAZIERT" }, { - "codePostal": "61440", - "codeCommune": "61278", - "libelleAcheminement": "MESSEI", - "nomCommune": "MESSEI" + "codePostal": "33230", + "codeCommune": "33218", + "libelleAcheminement": "LAGORCE", + "nomCommune": "LAGORCE" }, { - "codePostal": "09250", - "codeCommune": "09088", - "libelleAcheminement": "CAYCHAX", - "nomCommune": "CAYCHAX" + "codePostal": "46200", + "codeCommune": "46293", + "libelleAcheminement": "ST SOZY", + "nomCommune": "ST SOZY" }, { - "codePostal": "26110", - "codeCommune": "26220", - "libelleAcheminement": "NYONS", - "nomCommune": "NYONS" + "codePostal": "46210", + "codeCommune": "46203", + "libelleAcheminement": "MONTET ET BOUXAL", + "nomCommune": "MONTET ET BOUXAL" }, { - "codePostal": "37700", - "codeCommune": "37273", - "libelleAcheminement": "LA VILLE AUX DAMES", - "nomCommune": "LA VILLE AUX DAMES" + "codePostal": "32230", + "codeCommune": "32058", + "libelleAcheminement": "BLOUSSON SERIAN", + "nomCommune": "BLOUSSON SERIAN" }, { - "codePostal": "61100", - "codeCommune": "61287", - "libelleAcheminement": "MONTILLY SUR NOIREAU", - "nomCommune": "MONTILLY SUR NOIREAU" + "codePostal": "33500", + "codeCommune": "33222", + "libelleAcheminement": "LALANDE DE POMEROL", + "nomCommune": "LALANDE DE POMEROL" }, { - "codePostal": "09500", - "codeCommune": "09089", - "libelleAcheminement": "CAZALS DES BAYLES", - "nomCommune": "CAZALS DES BAYLES" + "codePostal": "46400", + "codeCommune": "46295", + "libelleAcheminement": "ST VINCENT DU PENDIT", + "nomCommune": "ST VINCENT DU PENDIT" }, { - "codePostal": "26400", - "codeCommune": "26221", - "libelleAcheminement": "OMBLEZE", - "nomCommune": "OMBLEZE" + "codePostal": "46500", + "codeCommune": "46213", + "libelleAcheminement": "PADIRAC", + "nomCommune": "PADIRAC" }, { - "codePostal": "37460", - "codeCommune": "37275", - "libelleAcheminement": "VILLEDOMAIN", - "nomCommune": "VILLEDOMAIN" + "codePostal": "32290", + "codeCommune": "32063", + "libelleAcheminement": "BOUZON GELLENAVE", + "nomCommune": "BOUZON GELLENAVE" }, { - "codePostal": "61160", - "codeCommune": "61289", - "libelleAcheminement": "MONT ORMEL", - "nomCommune": "MONT ORMEL" + "codePostal": "33790", + "codeCommune": "33223", + "libelleAcheminement": "LANDERROUAT", + "nomCommune": "LANDERROUAT" }, { - "codePostal": "09230", - "codeCommune": "09094", - "libelleAcheminement": "CERIZOLS", - "nomCommune": "CERIZOLS" + "codePostal": "46140", + "codeCommune": "46296", + "libelleAcheminement": "ST VINCENT RIVE D OLT", + "nomCommune": "ST VINCENT RIVE D OLT" }, { - "codePostal": "26770", - "codeCommune": "26226", - "libelleAcheminement": "LE PEGUE", - "nomCommune": "LE PEGUE" + "codePostal": "46300", + "codeCommune": "46216", + "libelleAcheminement": "PAYRIGNAC", + "nomCommune": "PAYRIGNAC" }, { - "codePostal": "37210", - "codeCommune": "37281", - "libelleAcheminement": "VOUVRAY", - "nomCommune": "VOUVRAY" + "codePostal": "32140", + "codeCommune": "32067", + "libelleAcheminement": "CABAS LOUMASSES", + "nomCommune": "CABAS LOUMASSES" }, { - "codePostal": "61380", - "codeCommune": "61297", - "libelleAcheminement": "MOULINS LA MARCHE", - "nomCommune": "MOULINS LA MARCHE" + "codePostal": "33540", + "codeCommune": "33224", + "libelleAcheminement": "LANDERROUET SUR SEGUR", + "nomCommune": "LANDERROUET SUR SEGUR" }, { - "codePostal": "09600", - "codeCommune": "09107", - "libelleAcheminement": "DUN", - "nomCommune": "DUN" + "codePostal": "46340", + "codeCommune": "46297", + "libelleAcheminement": "SALVIAC", + "nomCommune": "SALVIAC" }, { - "codePostal": "26170", - "codeCommune": "26229", - "libelleAcheminement": "LA PENNE SUR L OUVEZE", - "nomCommune": "LA PENNE SUR L OUVEZE" + "codePostal": "46220", + "codeCommune": "46218", + "libelleAcheminement": "PESCADOIRES", + "nomCommune": "PESCADOIRES" }, { - "codePostal": "38490", - "codeCommune": "38001", - "libelleAcheminement": "LES ABRETS EN DAUPHINE", - "nomCommune": "LES ABRETS EN DAUPHINE" + "codePostal": "32800", + "codeCommune": "32073", + "libelleAcheminement": "CAMPAGNE D ARMAGNAC", + "nomCommune": "CAMPAGNE D ARMAGNAC" }, { - "codePostal": "61200", - "codeCommune": "61298", - "libelleAcheminement": "MOULINS SUR ORNE", - "nomCommune": "MOULINS SUR ORNE" + "codePostal": "33550", + "codeCommune": "33226", + "libelleAcheminement": "LANGOIRAN", + "nomCommune": "LANGOIRAN" }, { - "codePostal": "09600", - "codeCommune": "09115", - "libelleAcheminement": "ESCLAGNE", - "nomCommune": "ESCLAGNE" + "codePostal": "46140", + "codeCommune": "46301", + "libelleAcheminement": "SAUZET", + "nomCommune": "SAUZET" }, { - "codePostal": "26120", - "codeCommune": "26232", - "libelleAcheminement": "PEYRUS", - "nomCommune": "PEYRUS" + "codePostal": "46310", + "codeCommune": "46219", + "libelleAcheminement": "PEYRILLES", + "nomCommune": "PEYRILLES" }, { - "codePostal": "38490", - "codeCommune": "38001", - "libelleAcheminement": "LES ABRETS EN DAUPHINE", - "nomCommune": "LES ABRETS EN DAUPHINE" + "codePostal": "32290", + "codeCommune": "32081", + "libelleAcheminement": "CASTELNAVET", + "nomCommune": "CASTELNAVET" }, { - "codePostal": "61210", - "codeCommune": "61308", - "libelleAcheminement": "NEUVY AU HOULME", - "nomCommune": "NEUVY AU HOULME" + "codePostal": "33138", + "codeCommune": "33229", + "libelleAcheminement": "LANTON", + "nomCommune": "LANTON" }, { - "codePostal": "09230", - "codeCommune": "09120", - "libelleAcheminement": "FABAS", - "nomCommune": "FABAS" + "codePostal": "46190", + "codeCommune": "46311", + "libelleAcheminement": "SOUSCEYRAC EN QUERCY", + "nomCommune": "SOUSCEYRAC EN QUERCY" }, { - "codePostal": "26110", - "codeCommune": "26238", - "libelleAcheminement": "LES PILLES", - "nomCommune": "LES PILLES" + "codePostal": "46100", + "codeCommune": "46221", + "libelleAcheminement": "PLANIOLES", + "nomCommune": "PLANIOLES" }, { - "codePostal": "38190", - "codeCommune": "38002", - "libelleAcheminement": "LES ADRETS", - "nomCommune": "LES ADRETS" + "codePostal": "32700", + "codeCommune": "32082", + "libelleAcheminement": "CASTERA LECTOUROIS", + "nomCommune": "CASTERA LECTOUROIS" }, { - "codePostal": "61340", - "codeCommune": "61309", - "libelleAcheminement": "PERCHE EN NOCE", - "nomCommune": "PERCHE EN NOCE" + "codePostal": "33410", + "codeCommune": "33231", + "libelleAcheminement": "LAROQUE", + "nomCommune": "LAROQUE" }, { - "codePostal": "09300", - "codeCommune": "09125", - "libelleAcheminement": "FOUGAX ET BARRINEUF", - "nomCommune": "FOUGAX ET BARRINEUF" + "codePostal": "46130", + "codeCommune": "46313", + "libelleAcheminement": "TAURIAC", + "nomCommune": "TAURIAC" }, { - "codePostal": "26110", - "codeCommune": "26244", - "libelleAcheminement": "LE POET SIGILLAT", - "nomCommune": "LE POET SIGILLAT" + "codePostal": "46260", + "codeCommune": "46230", + "libelleAcheminement": "PUYJOURDES", + "nomCommune": "PUYJOURDES" }, { - "codePostal": "38190", - "codeCommune": "38002", - "libelleAcheminement": "LES ADRETS", - "nomCommune": "LES ADRETS" + "codePostal": "32340", + "codeCommune": "32085", + "libelleAcheminement": "CASTET ARROUY", + "nomCommune": "CASTET ARROUY" }, { - "codePostal": "61340", - "codeCommune": "61309", - "libelleAcheminement": "PERCHE EN NOCE", - "nomCommune": "PERCHE EN NOCE" + "codePostal": "33840", + "codeCommune": "33232", + "libelleAcheminement": "LARTIGUE", + "nomCommune": "LARTIGUE" }, { - "codePostal": "09800", - "codeCommune": "09129", - "libelleAcheminement": "GALEY", - "nomCommune": "GALEY" + "codePostal": "46190", + "codeCommune": "46315", + "libelleAcheminement": "TEYSSIEU", + "nomCommune": "TEYSSIEU" }, { - "codePostal": "26160", - "codeCommune": "26251", - "libelleAcheminement": "PORTES EN VALDAINE", - "nomCommune": "PORTES EN VALDAINE" + "codePostal": "46700", + "codeCommune": "46231", + "libelleAcheminement": "PUY L EVEQUE", + "nomCommune": "PUY L EVEQUE" }, { - "codePostal": "38470", - "codeCommune": "38004", - "libelleAcheminement": "L ALBENC", - "nomCommune": "L ALBENC" + "codePostal": "32490", + "codeCommune": "32090", + "libelleAcheminement": "CASTILLON SAVES", + "nomCommune": "CASTILLON SAVES" }, { - "codePostal": "61370", - "codeCommune": "61330", - "libelleAcheminement": "PLANCHES", - "nomCommune": "PLANCHES" + "codePostal": "33950", + "codeCommune": "33236", + "libelleAcheminement": "LEGE CAP FERRET", + "nomCommune": "LEGE CAP FERRET" }, { - "codePostal": "09110", - "codeCommune": "09140", - "libelleAcheminement": "IGNAUX", - "nomCommune": "IGNAUX" + "codePostal": "46330", + "codeCommune": "46320", + "libelleAcheminement": "TOUR DE FAURE", + "nomCommune": "TOUR DE FAURE" }, { - "codePostal": "26230", - "codeCommune": "26261", - "libelleAcheminement": "REAUVILLE", - "nomCommune": "REAUVILLE" + "codePostal": "46320", + "codeCommune": "46233", + "libelleAcheminement": "QUISSAC", + "nomCommune": "QUISSAC" }, { - "codePostal": "38970", - "codeCommune": "38008", - "libelleAcheminement": "AMBEL", - "nomCommune": "AMBEL" + "codePostal": "32150", + "codeCommune": "32096", + "libelleAcheminement": "CAZAUBON", + "nomCommune": "CAZAUBON" }, { - "codePostal": "61220", - "codeCommune": "61332", - "libelleAcheminement": "POINTEL", - "nomCommune": "POINTEL" + "codePostal": "33340", + "codeCommune": "33240", + "libelleAcheminement": "LESPARRE MEDOC", + "nomCommune": "LESPARRE MEDOC" }, { - "codePostal": "09100", - "codeCommune": "09145", - "libelleAcheminement": "LES ISSARDS", - "nomCommune": "LES ISSARDS" + "codePostal": "47000", + "codeCommune": "47001", + "libelleAcheminement": "AGEN", + "nomCommune": "AGEN" }, { - "codePostal": "26570", - "codeCommune": "26263", - "libelleAcheminement": "REILHANETTE", - "nomCommune": "REILHANETTE" + "codePostal": "46500", + "codeCommune": "46238", + "libelleAcheminement": "RIGNAC", + "nomCommune": "RIGNAC" }, { - "codePostal": "38150", - "codeCommune": "38009", - "libelleAcheminement": "ANJOU", - "nomCommune": "ANJOU" + "codePostal": "32190", + "codeCommune": "32097", + "libelleAcheminement": "CAZAUX D ANGLES", + "nomCommune": "CAZAUX D ANGLES" }, { - "codePostal": "61130", - "codeCommune": "61336", - "libelleAcheminement": "POUVRAI", - "nomCommune": "POUVRAI" + "codePostal": "33360", + "codeCommune": "33245", + "libelleAcheminement": "LIGNAN DE BORDEAUX", + "nomCommune": "LIGNAN DE BORDEAUX" }, { - "codePostal": "09700", - "codeCommune": "09147", - "libelleAcheminement": "LABATUT", - "nomCommune": "LABATUT" + "codePostal": "47190", + "codeCommune": "47004", + "libelleAcheminement": "AIGUILLON", + "nomCommune": "AIGUILLON" }, { - "codePostal": "26340", - "codeCommune": "26274", - "libelleAcheminement": "ROCHEFOURCHAT", - "nomCommune": "ROCHEFOURCHAT" + "codePostal": "46120", + "codeCommune": "46242", + "libelleAcheminement": "RUDELLE", + "nomCommune": "RUDELLE" }, { - "codePostal": "38460", - "codeCommune": "38010", - "libelleAcheminement": "ANNOISIN CHATELANS", - "nomCommune": "ANNOISIN CHATELANS" + "codePostal": "32500", + "codeCommune": "32101", + "libelleAcheminement": "CERAN", + "nomCommune": "CERAN" }, { - "codePostal": "61210", - "codeCommune": "61339", - "libelleAcheminement": "PUTANGES LE LAC", - "nomCommune": "PUTANGES LE LAC" + "codePostal": "33790", + "codeCommune": "33247", + "libelleAcheminement": "LISTRAC DE DUREZE", + "nomCommune": "LISTRAC DE DUREZE" }, { - "codePostal": "09200", - "codeCommune": "09149", - "libelleAcheminement": "LACOURT", - "nomCommune": "LACOURT" + "codePostal": "47420", + "codeCommune": "47007", + "libelleAcheminement": "ALLONS", + "nomCommune": "ALLONS" }, { - "codePostal": "26170", - "codeCommune": "26278", - "libelleAcheminement": "LA ROCHE SUR LE BUIS", - "nomCommune": "LA ROCHE SUR LE BUIS" + "codePostal": "46400", + "codeCommune": "46251", + "libelleAcheminement": "ST CERE", + "nomCommune": "ST CERE" }, { - "codePostal": "38630", - "codeCommune": "38022", - "libelleAcheminement": "LES AVENIERES VEYRINS THUELLIN", - "nomCommune": "LES AVENIERES VEYRINS THUELLIN" + "codePostal": "32100", + "codeCommune": "32107", + "libelleAcheminement": "CONDOM", + "nomCommune": "CONDOM" }, { - "codePostal": "61210", - "codeCommune": "61339", - "libelleAcheminement": "PUTANGES LE LAC", - "nomCommune": "PUTANGES LE LAC" + "codePostal": "33410", + "codeCommune": "33253", + "libelleAcheminement": "LOUPIAC", + "nomCommune": "LOUPIAC" }, { - "codePostal": "09500", - "codeCommune": "09150", - "libelleAcheminement": "LAGARDE", - "nomCommune": "LAGARDE" + "codePostal": "47160", + "codeCommune": "47008", + "libelleAcheminement": "AMBRUS", + "nomCommune": "AMBRUS" }, { - "codePostal": "26510", - "codeCommune": "26286", - "libelleAcheminement": "ROUSSIEUX", - "nomCommune": "ROUSSIEUX" + "codePostal": "46160", + "codeCommune": "46254", + "libelleAcheminement": "ST CHELS", + "nomCommune": "ST CHELS" }, { - "codePostal": "38530", - "codeCommune": "38027", - "libelleAcheminement": "BARRAUX", - "nomCommune": "BARRAUX" + "codePostal": "32400", + "codeCommune": "32108", + "libelleAcheminement": "CORNEILLAN", + "nomCommune": "CORNEILLAN" }, { - "codePostal": "61210", - "codeCommune": "61339", - "libelleAcheminement": "PUTANGES LE LAC", - "nomCommune": "PUTANGES LE LAC" + "codePostal": "33190", + "codeCommune": "33254", + "libelleAcheminement": "LOUPIAC DE LA REOLE", + "nomCommune": "LOUPIAC DE LA REOLE" }, { - "codePostal": "09310", - "codeCommune": "09155", - "libelleAcheminement": "LARCAT", - "nomCommune": "LARCAT" + "codePostal": "47370", + "codeCommune": "47011", + "libelleAcheminement": "ANTHE", + "nomCommune": "ANTHE" }, { - "codePostal": "26420", - "codeCommune": "26290", - "libelleAcheminement": "ST AGNAN EN VERCORS", - "nomCommune": "ST AGNAN EN VERCORS" + "codePostal": "46100", + "codeCommune": "46266", + "libelleAcheminement": "ST FELIX", + "nomCommune": "ST FELIX" }, { - "codePostal": "38110", - "codeCommune": "38029", - "libelleAcheminement": "LA BATIE MONTGASCON", - "nomCommune": "LA BATIE MONTGASCON" + "codePostal": "32160", + "codeCommune": "32109", + "libelleAcheminement": "COULOUME MONDEBAT", + "nomCommune": "COULOUME MONDEBAT" }, { - "codePostal": "61250", - "codeCommune": "61341", - "libelleAcheminement": "ECOUVES", - "nomCommune": "ECOUVES" + "codePostal": "33760", + "codeCommune": "33258", + "libelleAcheminement": "LUGASSON", + "nomCommune": "LUGASSON" }, { - "codePostal": "09310", - "codeCommune": "09156", - "libelleAcheminement": "LARNAT", - "nomCommune": "LARNAT" + "codePostal": "47250", + "codeCommune": "47013", + "libelleAcheminement": "ARGENTON", + "nomCommune": "ARGENTON" }, { - "codePostal": "26350", - "codeCommune": "26298", - "libelleAcheminement": "ST CHRISTOPHE ET LE LARIS", - "nomCommune": "ST CHRISTOPHE ET LE LARIS" + "codePostal": "46400", + "codeCommune": "46271", + "libelleAcheminement": "ST JEAN LESPINASSE", + "nomCommune": "ST JEAN LESPINASSE" }, { - "codePostal": "38140", - "codeCommune": "38030", - "libelleAcheminement": "BEAUCROISSANT", - "nomCommune": "BEAUCROISSANT" + "codePostal": "32170", + "codeCommune": "32116", + "libelleAcheminement": "DUFFORT", + "nomCommune": "DUFFORT" }, { - "codePostal": "61270", - "codeCommune": "61342", - "libelleAcheminement": "RAI", - "nomCommune": "RAI" + "codePostal": "33230", + "codeCommune": "33264", + "libelleAcheminement": "MARANSIN", + "nomCommune": "MARANSIN" }, { - "codePostal": "09230", - "codeCommune": "09158", - "libelleAcheminement": "LASSERRE", - "nomCommune": "LASSERRE" + "codePostal": "47800", + "codeCommune": "47014", + "libelleAcheminement": "ARMILLAC", + "nomCommune": "ARMILLAC" }, { - "codePostal": "26310", - "codeCommune": "26300", - "libelleAcheminement": "ST DIZIER EN DIOIS", - "nomCommune": "ST DIZIER EN DIOIS" + "codePostal": "46120", + "codeCommune": "46279", + "libelleAcheminement": "ST MAURICE EN QUERCY", + "nomCommune": "ST MAURICE EN QUERCY" }, { - "codePostal": "38160", - "codeCommune": "38036", - "libelleAcheminement": "BEAUVOIR EN ROYANS", - "nomCommune": "BEAUVOIR EN ROYANS" + "codePostal": "32810", + "codeCommune": "32117", + "libelleAcheminement": "DURAN", + "nomCommune": "DURAN" }, { - "codePostal": "61150", - "codeCommune": "61344", - "libelleAcheminement": "RANES", - "nomCommune": "RANES" + "codePostal": "33460", + "codeCommune": "33268", + "libelleAcheminement": "MARGAUX CANTENAC", + "nomCommune": "MARGAUX CANTENAC" }, { - "codePostal": "09350", - "codeCommune": "09172", - "libelleAcheminement": "LOUBAUT", - "nomCommune": "LOUBAUT" + "codePostal": "47120", + "codeCommune": "47018", + "libelleAcheminement": "AURIAC SUR DROPT", + "nomCommune": "AURIAC SUR DROPT" }, { - "codePostal": "26190", - "codeCommune": "26302", - "libelleAcheminement": "STE EULALIE EN ROYANS", - "nomCommune": "STE EULALIE EN ROYANS" + "codePostal": "46110", + "codeCommune": "46283", + "libelleAcheminement": "ST MICHEL DE BANNIERES", + "nomCommune": "ST MICHEL DE BANNIERES" }, { - "codePostal": "38690", - "codeCommune": "38038", - "libelleAcheminement": "BELMONT", - "nomCommune": "BELMONT" + "codePostal": "32260", + "codeCommune": "32118", + "libelleAcheminement": "DURBAN", + "nomCommune": "DURBAN" }, { - "codePostal": "61210", - "codeCommune": "61349", - "libelleAcheminement": "RI", - "nomCommune": "RI" + "codePostal": "33790", + "codeCommune": "33277", + "libelleAcheminement": "MASSUGAS", + "nomCommune": "MASSUGAS" }, { - "codePostal": "09120", - "codeCommune": "09173", - "libelleAcheminement": "LOUBENS", - "nomCommune": "LOUBENS" + "codePostal": "47480", + "codeCommune": "47019", + "libelleAcheminement": "BAJAMONT", + "nomCommune": "BAJAMONT" }, { - "codePostal": "26420", - "codeCommune": "26315", - "libelleAcheminement": "ST MARTIN EN VERCORS", - "nomCommune": "ST MARTIN EN VERCORS" + "codePostal": "46210", + "codeCommune": "46302", + "libelleAcheminement": "SENAILLAC LATRONQUIERE", + "nomCommune": "SENAILLAC LATRONQUIERE" }, { - "codePostal": "38142", - "codeCommune": "38040", - "libelleAcheminement": "BESSE", - "nomCommune": "BESSE" + "codePostal": "32140", + "codeCommune": "32122", + "libelleAcheminement": "ESCLASSAN LABASTIDE", + "nomCommune": "ESCLASSAN LABASTIDE" }, { - "codePostal": "61160", - "codeCommune": "61352", - "libelleAcheminement": "RONAI", - "nomCommune": "RONAI" + "codePostal": "33210", + "codeCommune": "33279", + "libelleAcheminement": "MAZERES", + "nomCommune": "MAZERES" }, { - "codePostal": "09250", - "codeCommune": "09176", - "libelleAcheminement": "LUZENAC", - "nomCommune": "LUZENAC" + "codePostal": "47370", + "codeCommune": "47036", + "libelleAcheminement": "BOURLENS", + "nomCommune": "BOURLENS" }, { - "codePostal": "26750", - "codeCommune": "26319", - "libelleAcheminement": "ST MICHEL SUR SAVASSE", - "nomCommune": "ST MICHEL SUR SAVASSE" + "codePostal": "46240", + "codeCommune": "46304", + "libelleAcheminement": "SENIERGUES", + "nomCommune": "SENIERGUES" }, { - "codePostal": "38690", - "codeCommune": "38042", - "libelleAcheminement": "BEVENAIS", - "nomCommune": "BEVENAIS" + "codePostal": "32200", + "codeCommune": "32123", + "libelleAcheminement": "ESCORNEBOEUF", + "nomCommune": "ESCORNEBOEUF" }, { - "codePostal": "61220", - "codeCommune": "61361", - "libelleAcheminement": "ST ANDRE DE BRIOUZE", - "nomCommune": "ST ANDRE DE BRIOUZE" + "codePostal": "33390", + "codeCommune": "33280", + "libelleAcheminement": "MAZION", + "nomCommune": "MAZION" }, { - "codePostal": "09100", - "codeCommune": "09177", - "libelleAcheminement": "MADIERE", - "nomCommune": "MADIERE" + "codePostal": "47210", + "codeCommune": "47037", + "libelleAcheminement": "BOURNEL", + "nomCommune": "BOURNEL" }, { - "codePostal": "26140", - "codeCommune": "26325", - "libelleAcheminement": "ST RAMBERT D ALBON", - "nomCommune": "ST RAMBERT D ALBON" + "codePostal": "46190", + "codeCommune": "46311", + "libelleAcheminement": "SOUSCEYRAC EN QUERCY", + "nomCommune": "SOUSCEYRAC EN QUERCY" }, { - "codePostal": "38690", - "codeCommune": "38046", - "libelleAcheminement": "BIZONNES", - "nomCommune": "BIZONNES" + "codePostal": "32220", + "codeCommune": "32138", + "libelleAcheminement": "GARRAVET", + "nomCommune": "GARRAVET" }, { - "codePostal": "61150", - "codeCommune": "61371", - "libelleAcheminement": "ST BRICE SOUS RANES", - "nomCommune": "ST BRICE SOUS RANES" + "codePostal": "33540", + "codeCommune": "33283", + "libelleAcheminement": "MESTERRIEUX", + "nomCommune": "MESTERRIEUX" }, { - "codePostal": "09500", - "codeCommune": "09178", - "libelleAcheminement": "MALEGOUDE", - "nomCommune": "MALEGOUDE" + "codePostal": "47420", + "codeCommune": "47039", + "libelleAcheminement": "BOUSSES", + "nomCommune": "BOUSSES" }, { - "codePostal": "26410", - "codeCommune": "26327", - "libelleAcheminement": "ST ROMAN", - "nomCommune": "ST ROMAN" + "codePostal": "46120", + "codeCommune": "46319", + "libelleAcheminement": "THEMINETTES", + "nomCommune": "THEMINETTES" }, { - "codePostal": "38590", - "codeCommune": "38058", - "libelleAcheminement": "BREZINS", - "nomCommune": "BREZINS" + "codePostal": "32380", + "codeCommune": "32139", + "libelleAcheminement": "GAUDONVILLE", + "nomCommune": "GAUDONVILLE" }, { - "codePostal": "61490", - "codeCommune": "61376", - "libelleAcheminement": "ST CLAIR DE HALOUZE", - "nomCommune": "ST CLAIR DE HALOUZE" + "codePostal": "33380", + "codeCommune": "33284", + "libelleAcheminement": "MIOS", + "nomCommune": "MIOS" }, { - "codePostal": "09350", - "codeCommune": "09186", - "libelleAcheminement": "MERAS", - "nomCommune": "MERAS" + "codePostal": "47600", + "codeCommune": "47045", + "libelleAcheminement": "CALIGNAC", + "nomCommune": "CALIGNAC" }, { - "codePostal": "26770", - "codeCommune": "26335", - "libelleAcheminement": "SALLES SOUS BOIS", - "nomCommune": "SALLES SOUS BOIS" + "codePostal": "46700", + "codeCommune": "46321", + "libelleAcheminement": "TOUZAC", + "nomCommune": "TOUZAC" }, { - "codePostal": "38460", - "codeCommune": "38067", - "libelleAcheminement": "CHAMAGNIEU", - "nomCommune": "CHAMAGNIEU" + "codePostal": "32220", + "codeCommune": "32140", + "libelleAcheminement": "GAUJAC", + "nomCommune": "GAUJAC" }, { - "codePostal": "61320", - "codeCommune": "61384", - "libelleAcheminement": "ST ELLIER LES BOIS", - "nomCommune": "ST ELLIER LES BOIS" + "codePostal": "33190", + "codeCommune": "33294", + "libelleAcheminement": "MORIZES", + "nomCommune": "MORIZES" }, { - "codePostal": "09400", - "codeCommune": "09192", - "libelleAcheminement": "MIGLOS", - "nomCommune": "MIGLOS" + "codePostal": "47430", + "codeCommune": "47046", + "libelleAcheminement": "CALONGES", + "nomCommune": "CALONGES" }, { - "codePostal": "26270", - "codeCommune": "26337", - "libelleAcheminement": "SAULCE SUR RHONE", - "nomCommune": "SAULCE SUR RHONE" + "codePostal": "46240", + "codeCommune": "46323", + "libelleAcheminement": "USSEL", + "nomCommune": "USSEL" }, { - "codePostal": "38530", - "codeCommune": "38075", - "libelleAcheminement": "CHAPAREILLAN", - "nomCommune": "CHAPAREILLAN" + "codePostal": "32340", + "codeCommune": "32146", + "libelleAcheminement": "GIMBREDE", + "nomCommune": "GIMBREDE" }, { - "codePostal": "61100", - "codeCommune": "61391", - "libelleAcheminement": "ST GEORGES DES GROSEILLERS", - "nomCommune": "ST GEORGES DES GROSEILLERS" + "codePostal": "33420", + "codeCommune": "33301", + "libelleAcheminement": "NAUJAN ET POSTIAC", + "nomCommune": "NAUJAN ET POSTIAC" }, { - "codePostal": "09130", - "codeCommune": "09195", - "libelleAcheminement": "MONESPLE", - "nomCommune": "MONESPLE" + "codePostal": "47440", + "codeCommune": "47049", + "libelleAcheminement": "CASSENEUIL", + "nomCommune": "CASSENEUIL" }, { - "codePostal": "26740", - "codeCommune": "26338", - "libelleAcheminement": "SAUZET", - "nomCommune": "SAUZET" + "codePostal": "46110", + "codeCommune": "46330", + "libelleAcheminement": "VAYRAC", + "nomCommune": "VAYRAC" }, { - "codePostal": "38490", - "codeCommune": "38080", - "libelleAcheminement": "CHARANCIEU", - "nomCommune": "CHARANCIEU" + "codePostal": "32200", + "codeCommune": "32147", + "libelleAcheminement": "GIMONT", + "nomCommune": "GIMONT" }, { - "codePostal": "61390", - "codeCommune": "61398", - "libelleAcheminement": "ST GERMAIN LE VIEUX", - "nomCommune": "ST GERMAIN LE VIEUX" + "codePostal": "33250", + "codeCommune": "33314", + "libelleAcheminement": "PAUILLAC", + "nomCommune": "PAUILLAC" }, { - "codePostal": "09350", - "codeCommune": "09205", - "libelleAcheminement": "MONTFA", - "nomCommune": "MONTFA" + "codePostal": "47180", + "codeCommune": "47056", + "libelleAcheminement": "CASTELNAU SUR GUPIE", + "nomCommune": "CASTELNAU SUR GUPIE" }, { - "codePostal": "26400", - "codeCommune": "26346", - "libelleAcheminement": "SUZE", - "nomCommune": "SUZE" + "codePostal": "47310", + "codeCommune": "47016", + "libelleAcheminement": "AUBIAC", + "nomCommune": "AUBIAC" }, { - "codePostal": "38790", - "codeCommune": "38081", - "libelleAcheminement": "CHARANTONNAY", - "nomCommune": "CHARANTONNAY" + "codePostal": "32160", + "codeCommune": "32163", + "libelleAcheminement": "JU BELLOC", + "nomCommune": "JU BELLOC" }, { - "codePostal": "61270", - "codeCommune": "61406", - "libelleAcheminement": "ST HILAIRE SUR RISLE", - "nomCommune": "ST HILAIRE SUR RISLE" + "codePostal": "33240", + "codeCommune": "33317", + "libelleAcheminement": "PERISSAC", + "nomCommune": "PERISSAC" }, { - "codePostal": "09330", - "codeCommune": "09207", - "libelleAcheminement": "MONTGAILLARD", - "nomCommune": "MONTGAILLARD" + "codePostal": "47370", + "codeCommune": "47064", + "libelleAcheminement": "CAZIDEROQUE", + "nomCommune": "CAZIDEROQUE" }, { - "codePostal": "26770", - "codeCommune": "26348", - "libelleAcheminement": "TAULIGNAN", - "nomCommune": "TAULIGNAN" + "codePostal": "47140", + "codeCommune": "47017", + "libelleAcheminement": "AURADOU", + "nomCommune": "AURADOU" }, { - "codePostal": "38470", - "codeCommune": "38086", - "libelleAcheminement": "CHASSELAY", - "nomCommune": "CHASSELAY" + "codePostal": "32200", + "codeCommune": "32165", + "libelleAcheminement": "JUILLES", + "nomCommune": "JUILLES" }, { - "codePostal": "61390", - "codeCommune": "61416", - "libelleAcheminement": "ST LEONARD DES PARCS", - "nomCommune": "ST LEONARD DES PARCS" + "codePostal": "33600", + "codeCommune": "33318", + "libelleAcheminement": "PESSAC", + "nomCommune": "PESSAC" }, { - "codePostal": "09300", - "codeCommune": "09211", - "libelleAcheminement": "MONTSEGUR", - "nomCommune": "MONTSEGUR" + "codePostal": "47270", + "codeCommune": "47067", + "libelleAcheminement": "CLERMONT SOUBIRAN", + "nomCommune": "CLERMONT SOUBIRAN" }, { - "codePostal": "26390", - "codeCommune": "26349", - "libelleAcheminement": "TERSANNE", - "nomCommune": "TERSANNE" + "codePostal": "47130", + "codeCommune": "47022", + "libelleAcheminement": "BAZENS", + "nomCommune": "BAZENS" }, { - "codePostal": "38550", - "codeCommune": "38101", - "libelleAcheminement": "CHEYSSIEU", - "nomCommune": "CHEYSSIEU" + "codePostal": "32130", + "codeCommune": "32171", + "libelleAcheminement": "LABASTIDE SAVES", + "nomCommune": "LABASTIDE SAVES" }, { - "codePostal": "61380", - "codeCommune": "61425", - "libelleAcheminement": "ST MARTIN DES PEZERITS", - "nomCommune": "ST MARTIN DES PEZERITS" + "codePostal": "33890", + "codeCommune": "33319", + "libelleAcheminement": "PESSAC SUR DORDOGNE", + "nomCommune": "PESSAC SUR DORDOGNE" }, { - "codePostal": "09500", - "codeCommune": "09213", - "libelleAcheminement": "MOULIN NEUF", - "nomCommune": "MOULIN NEUF" + "codePostal": "47220", + "codeCommune": "47076", + "libelleAcheminement": "CUQ", + "nomCommune": "CUQ" }, { - "codePostal": "26220", - "codeCommune": "26350", - "libelleAcheminement": "TEYSSIERES", - "nomCommune": "TEYSSIERES" + "codePostal": "47290", + "codeCommune": "47023", + "libelleAcheminement": "BEAUGAS", + "nomCommune": "BEAUGAS" }, { - "codePostal": "38850", - "codeCommune": "38105", - "libelleAcheminement": "CHIRENS", - "nomCommune": "CHIRENS" + "codePostal": "32310", + "codeCommune": "32178", + "libelleAcheminement": "LAGARDERE", + "nomCommune": "LAGARDERE" }, { - "codePostal": "61190", - "codeCommune": "61429", - "libelleAcheminement": "CHARENCEY", - "nomCommune": "CHARENCEY" + "codePostal": "33570", + "codeCommune": "33320", + "libelleAcheminement": "PETIT PALAIS ET CORNEMPS", + "nomCommune": "PETIT PALAIS ET CORNEMPS" }, { - "codePostal": "09100", - "codeCommune": "09225", - "libelleAcheminement": "PAMIERS", - "nomCommune": "PAMIERS" + "codePostal": "47500", + "codeCommune": "47077", + "libelleAcheminement": "CUZORN", + "nomCommune": "CUZORN" }, { - "codePostal": "26160", - "codeCommune": "26352", - "libelleAcheminement": "LA TOUCHE", - "nomCommune": "LA TOUCHE" + "codePostal": "47500", + "codeCommune": "47029", + "libelleAcheminement": "BLANQUEFORT SUR BRIOLANCE", + "nomCommune": "BLANQUEFORT SUR BRIOLANCE" }, { - "codePostal": "38460", - "codeCommune": "38109", - "libelleAcheminement": "CHOZEAU", - "nomCommune": "CHOZEAU" + "codePostal": "32170", + "codeCommune": "32181", + "libelleAcheminement": "LAGUIAN MAZOUS", + "nomCommune": "LAGUIAN MAZOUS" }, { - "codePostal": "61410", - "codeCommune": "61439", - "libelleAcheminement": "ST OUEN LE BRISOULT", - "nomCommune": "ST OUEN LE BRISOULT" + "codePostal": "33290", + "codeCommune": "33322", + "libelleAcheminement": "LE PIAN MEDOC", + "nomCommune": "LE PIAN MEDOC" }, { - "codePostal": "09310", - "codeCommune": "09226", - "libelleAcheminement": "PECH", - "nomCommune": "PECH" + "codePostal": "47350", + "codeCommune": "47088", + "libelleAcheminement": "ESCASSEFORT", + "nomCommune": "ESCASSEFORT" }, { - "codePostal": "26340", - "codeCommune": "26368", - "libelleAcheminement": "VERCHENY", - "nomCommune": "VERCHENY" + "codePostal": "47470", + "codeCommune": "47030", + "libelleAcheminement": "BLAYMONT", + "nomCommune": "BLAYMONT" }, { - "codePostal": "38470", - "codeCommune": "38117", - "libelleAcheminement": "COGNIN LES GORGES", - "nomCommune": "COGNIN LES GORGES" + "codePostal": "32300", + "codeCommune": "32187", + "libelleAcheminement": "LAMAZERE", + "nomCommune": "LAMAZERE" }, { - "codePostal": "61800", - "codeCommune": "61451", - "libelleAcheminement": "ST QUENTIN LES CHARDONNETS", - "nomCommune": "ST QUENTIN LES CHARDONNETS" + "codePostal": "33720", + "codeCommune": "33327", + "libelleAcheminement": "PODENSAC", + "nomCommune": "PODENSAC" }, { - "codePostal": "09300", - "codeCommune": "09227", - "libelleAcheminement": "PEREILLE", - "nomCommune": "PEREILLE" + "codePostal": "47310", + "codeCommune": "47091", + "libelleAcheminement": "ESTILLAC", + "nomCommune": "ESTILLAC" }, { - "codePostal": "26220", - "codeCommune": "26373", - "libelleAcheminement": "VESC", - "nomCommune": "VESC" + "codePostal": "47240", + "codeCommune": "47032", + "libelleAcheminement": "BON ENCONTRE", + "nomCommune": "BON ENCONTRE" }, { - "codePostal": "38138", - "codeCommune": "38131", - "libelleAcheminement": "LES COTES D AREY", - "nomCommune": "LES COTES D AREY" + "codePostal": "32100", + "codeCommune": "32194", + "libelleAcheminement": "LARRESSINGLE", + "nomCommune": "LARRESSINGLE" }, { - "codePostal": "61120", - "codeCommune": "61460", - "libelleAcheminement": "SAP EN AUGE", - "nomCommune": "SAP EN AUGE" + "codePostal": "33570", + "codeCommune": "33342", + "libelleAcheminement": "PUISSEGUIN", + "nomCommune": "PUISSEGUIN" }, { - "codePostal": "09460", - "codeCommune": "09237", - "libelleAcheminement": "LE PUCH", - "nomCommune": "LE PUCH" + "codePostal": "47400", + "codeCommune": "47095", + "libelleAcheminement": "FAUILLET", + "nomCommune": "FAUILLET" }, { - "codePostal": "26560", - "codeCommune": "26375", - "libelleAcheminement": "VILLEFRANCHE LE CHATEAU", - "nomCommune": "VILLEFRANCHE LE CHATEAU" + "codePostal": "47290", + "codeCommune": "47033", + "libelleAcheminement": "BOUDY DE BEAUREGARD", + "nomCommune": "BOUDY DE BEAUREGARD" }, { - "codePostal": "38500", - "codeCommune": "38133", - "libelleAcheminement": "COUBLEVIE", - "nomCommune": "COUBLEVIE" + "codePostal": "32410", + "codeCommune": "32196", + "libelleAcheminement": "LARROQUE ST SERNIN", + "nomCommune": "LARROQUE ST SERNIN" }, { - "codePostal": "61500", - "codeCommune": "61464", - "libelleAcheminement": "SEES", - "nomCommune": "SEES" + "codePostal": "33360", + "codeCommune": "33349", + "libelleAcheminement": "QUINSAC", + "nomCommune": "QUINSAC" }, { - "codePostal": "09400", - "codeCommune": "09241", - "libelleAcheminement": "RABAT LES TROIS SEIGNEURS", - "nomCommune": "RABAT LES TROIS SEIGNEURS" + "codePostal": "47230", + "codeCommune": "47097", + "libelleAcheminement": "FEUGAROLLES", + "nomCommune": "FEUGAROLLES" }, { - "codePostal": "26510", - "codeCommune": "26376", - "libelleAcheminement": "VILLEPERDRIX", - "nomCommune": "VILLEPERDRIX" + "codePostal": "47310", + "codeCommune": "47040", + "libelleAcheminement": "BRAX", + "nomCommune": "BRAX" }, { - "codePostal": "38110", - "codeCommune": "38148", - "libelleAcheminement": "DOLOMIEU", - "nomCommune": "DOLOMIEU" + "codePostal": "32100", + "codeCommune": "32197", + "libelleAcheminement": "LARROQUE SUR L OSSE", + "nomCommune": "LARROQUE SUR L OSSE" }, { - "codePostal": "61160", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "33860", + "codeCommune": "33351", + "libelleAcheminement": "REIGNAC", + "nomCommune": "REIGNAC" }, { - "codePostal": "09200", - "codeCommune": "09247", - "libelleAcheminement": "RIVERENERT", - "nomCommune": "RIVERENERT" + "codePostal": "47200", + "codeCommune": "47101", + "libelleAcheminement": "FOURQUES SUR GARONNE", + "nomCommune": "FOURQUES SUR GARONNE" }, { - "codePostal": "27400", - "codeCommune": "27003", - "libelleAcheminement": "ACQUIGNY", - "nomCommune": "ACQUIGNY" + "codePostal": "47350", + "codeCommune": "47047", + "libelleAcheminement": "CAMBES", + "nomCommune": "CAMBES" }, { - "codePostal": "38420", - "codeCommune": "38150", - "libelleAcheminement": "DOMENE", - "nomCommune": "DOMENE" + "codePostal": "32220", + "codeCommune": "32206", + "libelleAcheminement": "LAYMONT", + "nomCommune": "LAYMONT" }, { - "codePostal": "61160", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "33580", + "codeCommune": "33353", + "libelleAcheminement": "RIMONS", + "nomCommune": "RIMONS" }, { - "codePostal": "09350", - "codeCommune": "09253", - "libelleAcheminement": "SABARAT", - "nomCommune": "SABARAT" + "codePostal": "47600", + "codeCommune": "47102", + "libelleAcheminement": "FRANCESCAS", + "nomCommune": "FRANCESCAS" }, { - "codePostal": "27600", - "codeCommune": "27005", - "libelleAcheminement": "AILLY", - "nomCommune": "AILLY" + "codePostal": "47340", + "codeCommune": "47053", + "libelleAcheminement": "CASTELLA", + "nomCommune": "CASTELLA" }, { - "codePostal": "38380", - "codeCommune": "38155", - "libelleAcheminement": "ENTRE DEUX GUIERS", - "nomCommune": "ENTRE DEUX GUIERS" + "codePostal": "32240", + "codeCommune": "32211", + "libelleAcheminement": "LIAS D ARMAGNAC", + "nomCommune": "LIAS D ARMAGNAC" }, { - "codePostal": "61160", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "33390", + "codeCommune": "33370", + "libelleAcheminement": "ST ANDRONY", + "nomCommune": "ST ANDRONY" }, { - "codePostal": "09120", - "codeCommune": "09256", - "libelleAcheminement": "ST BAUZEIL", - "nomCommune": "ST BAUZEIL" + "codePostal": "47600", + "codeCommune": "47103", + "libelleAcheminement": "FRECHOU", + "nomCommune": "FRECHOU" }, { - "codePostal": "27460", - "codeCommune": "27008", - "libelleAcheminement": "ALIZAY", - "nomCommune": "ALIZAY" + "codePostal": "47330", + "codeCommune": "47057", + "libelleAcheminement": "CASTILLONNES", + "nomCommune": "CASTILLONNES" }, { - "codePostal": "38300", - "codeCommune": "38156", - "libelleAcheminement": "LES EPARRES", - "nomCommune": "LES EPARRES" + "codePostal": "32120", + "codeCommune": "32229", + "libelleAcheminement": "MANSEMPUY", + "nomCommune": "MANSEMPUY" }, { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "33220", + "codeCommune": "33378", + "libelleAcheminement": "ST AVIT ST NAZAIRE", + "nomCommune": "ST AVIT ST NAZAIRE" }, { - "codePostal": "09100", - "codeCommune": "09265", - "libelleAcheminement": "ST JEAN DU FALGA", - "nomCommune": "ST JEAN DU FALGA" + "codePostal": "47190", + "codeCommune": "47107", + "libelleAcheminement": "GALAPIAN", + "nomCommune": "GALAPIAN" }, { - "codePostal": "27400", - "codeCommune": "27014", - "libelleAcheminement": "AMFREVILLE SUR ITON", - "nomCommune": "AMFREVILLE SUR ITON" + "codePostal": "47250", + "codeCommune": "47068", + "libelleAcheminement": "COCUMONT", + "nomCommune": "COCUMONT" }, { - "codePostal": "38320", - "codeCommune": "38158", - "libelleAcheminement": "EYBENS", - "nomCommune": "EYBENS" + "codePostal": "32120", + "codeCommune": "32232", + "libelleAcheminement": "MARAVAT", + "nomCommune": "MARAVAT" }, { - "codePostal": "61390", - "codeCommune": "61481", - "libelleAcheminement": "TELLIERES LE PLESSIS", - "nomCommune": "TELLIERES LE PLESSIS" + "codePostal": "33540", + "codeCommune": "33379", + "libelleAcheminement": "ST BRICE", + "nomCommune": "ST BRICE" }, { - "codePostal": "09800", - "codeCommune": "09267", - "libelleAcheminement": "ST LARY", - "nomCommune": "ST LARY" + "codePostal": "47150", + "codeCommune": "47109", + "libelleAcheminement": "GAVAUDUN", + "nomCommune": "GAVAUDUN" }, { - "codePostal": "27600", - "codeCommune": "27022", - "libelleAcheminement": "LE VAL D HAZEY", - "nomCommune": "LE VAL D HAZEY" + "codePostal": "47180", + "codeCommune": "47074", + "libelleAcheminement": "COUTHURES SUR GARONNE", + "nomCommune": "COUTHURES SUR GARONNE" }, { - "codePostal": "38260", - "codeCommune": "38161", - "libelleAcheminement": "FARAMANS", - "nomCommune": "FARAMANS" + "codePostal": "32290", + "codeCommune": "32235", + "libelleAcheminement": "MARGOUET MEYMES", + "nomCommune": "MARGOUET MEYMES" }, { - "codePostal": "61800", - "codeCommune": "61486", - "libelleAcheminement": "TINCHEBRAY BOCAGE", - "nomCommune": "TINCHEBRAY BOCAGE" + "codePostal": "33910", + "codeCommune": "33393", + "libelleAcheminement": "ST DENIS DE PILE", + "nomCommune": "ST DENIS DE PILE" }, { - "codePostal": "09300", - "codeCommune": "09281", - "libelleAcheminement": "SAUTEL", - "nomCommune": "SAUTEL" + "codePostal": "47260", + "codeCommune": "47111", + "libelleAcheminement": "GRANGES SUR LOT", + "nomCommune": "GRANGES SUR LOT" }, { - "codePostal": "27490", - "codeCommune": "27025", - "libelleAcheminement": "AUTHEUIL AUTHOUILLET", - "nomCommune": "AUTHEUIL AUTHOUILLET" + "codePostal": "47160", + "codeCommune": "47078", + "libelleAcheminement": "DAMAZAN", + "nomCommune": "DAMAZAN" }, { - "codePostal": "38110", - "codeCommune": "38162", - "libelleAcheminement": "FAVERGES DE LA TOUR", - "nomCommune": "FAVERGES DE LA TOUR" + "codePostal": "32270", + "codeCommune": "32237", + "libelleAcheminement": "MARSAN", + "nomCommune": "MARSAN" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "33560", + "codeCommune": "33397", + "libelleAcheminement": "STE EULALIE", + "nomCommune": "STE EULALIE" }, { - "codePostal": "09700", - "codeCommune": "09282", - "libelleAcheminement": "SAVERDUN", - "nomCommune": "SAVERDUN" + "codePostal": "47400", + "codeCommune": "47118", + "libelleAcheminement": "HAUTESVIGNES", + "nomCommune": "HAUTESVIGNES" }, { - "codePostal": "27290", - "codeCommune": "27028", - "libelleAcheminement": "AUTHOU", - "nomCommune": "AUTHOU" + "codePostal": "47140", + "codeCommune": "47079", + "libelleAcheminement": "DAUSSE", + "nomCommune": "DAUSSE" }, { - "codePostal": "38530", - "codeCommune": "38166", - "libelleAcheminement": "LA FLACHERE", - "nomCommune": "LA FLACHERE" + "codePostal": "32400", + "codeCommune": "32245", + "libelleAcheminement": "MAUMUSSON LAGUIAN", + "nomCommune": "MAUMUSSON LAGUIAN" }, { - "codePostal": "61390", - "codeCommune": "61492", - "libelleAcheminement": "TREMONT", - "nomCommune": "TREMONT" + "codePostal": "33220", + "codeCommune": "33402", + "libelleAcheminement": "STE FOY LA GRANDE", + "nomCommune": "STE FOY LA GRANDE" }, { - "codePostal": "09110", - "codeCommune": "09283", - "libelleAcheminement": "SAVIGNAC LES ORMEAUX", - "nomCommune": "SAVIGNAC LES ORMEAUX" + "codePostal": "47360", + "codeCommune": "47125", + "libelleAcheminement": "LACEPEDE", + "nomCommune": "LACEPEDE" }, { - "codePostal": "27930", - "codeCommune": "27031", - "libelleAcheminement": "AVIRON", - "nomCommune": "AVIRON" + "codePostal": "47220", + "codeCommune": "47092", + "libelleAcheminement": "FALS", + "nomCommune": "FALS" }, { - "codePostal": "38690", - "codeCommune": "38167", - "libelleAcheminement": "FLACHERES", - "nomCommune": "FLACHERES" + "codePostal": "32120", + "codeCommune": "32249", + "libelleAcheminement": "MAUVEZIN", + "nomCommune": "MAUVEZIN" }, { - "codePostal": "61160", - "codeCommune": "61494", - "libelleAcheminement": "TRUN", - "nomCommune": "TRUN" + "codePostal": "33390", + "codeCommune": "33405", + "libelleAcheminement": "ST GENES DE BLAYE", + "nomCommune": "ST GENES DE BLAYE" }, { - "codePostal": "09110", - "codeCommune": "09298", - "libelleAcheminement": "SORGEAT", - "nomCommune": "SORGEAT" + "codePostal": "47400", + "codeCommune": "47130", + "libelleAcheminement": "LAGRUERE", + "nomCommune": "LAGRUERE" }, { - "codePostal": "27170", - "codeCommune": "27040", - "libelleAcheminement": "BARQUET", - "nomCommune": "BARQUET" + "codePostal": "47400", + "codeCommune": "47110", + "libelleAcheminement": "GONTAUD DE NOGARET", + "nomCommune": "GONTAUD DE NOGARET" }, { - "codePostal": "38080", - "codeCommune": "38172", - "libelleAcheminement": "FOUR", - "nomCommune": "FOUR" + "codePostal": "32170", + "codeCommune": "32252", + "libelleAcheminement": "MIELAN", + "nomCommune": "MIELAN" }, { - "codePostal": "61250", - "codeCommune": "61497", - "libelleAcheminement": "VALFRAMBERT", - "nomCommune": "VALFRAMBERT" + "codePostal": "33350", + "codeCommune": "33406", + "libelleAcheminement": "ST GENES DE CASTILLON", + "nomCommune": "ST GENES DE CASTILLON" }, { - "codePostal": "09240", - "codeCommune": "09304", - "libelleAcheminement": "SUZAN", - "nomCommune": "SUZAN" + "codePostal": "47230", + "codeCommune": "47143", + "libelleAcheminement": "LAVARDAC", + "nomCommune": "LAVARDAC" }, { - "codePostal": "27230", - "codeCommune": "27042", - "libelleAcheminement": "BARVILLE", - "nomCommune": "BARVILLE" + "codePostal": "47250", + "codeCommune": "47121", + "libelleAcheminement": "LABASTIDE CASTEL AMOUROUX", + "nomCommune": "LABASTIDE CASTEL AMOUROUX" }, { - "codePostal": "38490", - "codeCommune": "38183", - "libelleAcheminement": "GRANIEU", - "nomCommune": "GRANIEU" + "codePostal": "32260", + "codeCommune": "32267", + "libelleAcheminement": "MONFERRAN PLAVES", + "nomCommune": "MONFERRAN PLAVES" }, { - "codePostal": "62121", - "codeCommune": "62005", - "libelleAcheminement": "ACHIET LE GRAND", - "nomCommune": "ACHIET LE GRAND" + "codePostal": "33670", + "codeCommune": "33408", + "libelleAcheminement": "ST GENES DE LOMBAUD", + "nomCommune": "ST GENES DE LOMBAUD" }, { - "codePostal": "09160", - "codeCommune": "09307", - "libelleAcheminement": "TAURIGNAN CASTET", - "nomCommune": "TAURIGNAN CASTET" + "codePostal": "47800", + "codeCommune": "47144", + "libelleAcheminement": "LAVERGNE", + "nomCommune": "LAVERGNE" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "47350", + "codeCommune": "47122", + "libelleAcheminement": "LABRETONIE", + "nomCommune": "LABRETONIE" }, { - "codePostal": "38540", - "codeCommune": "38184", - "libelleAcheminement": "GRENAY", - "nomCommune": "GRENAY" + "codePostal": "32230", + "codeCommune": "32273", + "libelleAcheminement": "MONLEZUN", + "nomCommune": "MONLEZUN" }, { - "codePostal": "62650", - "codeCommune": "62017", - "libelleAcheminement": "AIX EN ERGNY", - "nomCommune": "AIX EN ERGNY" + "codePostal": "33760", + "codeCommune": "33409", + "libelleAcheminement": "ST GENIS DU BOIS", + "nomCommune": "ST GENIS DU BOIS" }, { - "codePostal": "09500", - "codeCommune": "09314", - "libelleAcheminement": "TOURTROL", - "nomCommune": "TOURTROL" + "codePostal": "47390", + "codeCommune": "47145", + "libelleAcheminement": "LAYRAC", + "nomCommune": "LAYRAC" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "47350", + "codeCommune": "47126", + "libelleAcheminement": "LACHAPELLE", + "nomCommune": "LACHAPELLE" }, { - "codePostal": "38320", - "codeCommune": "38188", - "libelleAcheminement": "HERBEYS", - "nomCommune": "HERBEYS" + "codePostal": "32220", + "codeCommune": "32284", + "libelleAcheminement": "MONTEGUT SAVES", + "nomCommune": "MONTEGUT SAVES" }, { - "codePostal": "62170", - "codeCommune": "62018", - "libelleAcheminement": "AIX EN ISSART", - "nomCommune": "AIX EN ISSART" + "codePostal": "33190", + "codeCommune": "33428", + "libelleAcheminement": "ST LAURENT DU PLAN", + "nomCommune": "ST LAURENT DU PLAN" }, { - "codePostal": "09500", - "codeCommune": "09323", - "libelleAcheminement": "VALS", - "nomCommune": "VALS" + "codePostal": "47360", + "codeCommune": "47155", + "libelleAcheminement": "MADAILLAN", + "nomCommune": "MADAILLAN" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "47320", + "codeCommune": "47127", + "libelleAcheminement": "LAFITTE SUR LOT", + "nomCommune": "LAFITTE SUR LOT" }, { - "codePostal": "38118", - "codeCommune": "38190", - "libelleAcheminement": "HIERES SUR AMBY", - "nomCommune": "HIERES SUR AMBY" + "codePostal": "32320", + "codeCommune": "32285", + "libelleAcheminement": "MONTESQUIOU", + "nomCommune": "MONTESQUIOU" }, { - "codePostal": "62157", - "codeCommune": "62023", - "libelleAcheminement": "ALLOUAGNE", - "nomCommune": "ALLOUAGNE" + "codePostal": "33113", + "codeCommune": "33429", + "libelleAcheminement": "ST LEGER DE BALSON", + "nomCommune": "ST LEGER DE BALSON" }, { - "codePostal": "09700", - "codeCommune": "09331", - "libelleAcheminement": "LE VERNET", - "nomCommune": "LE VERNET" + "codePostal": "47200", + "codeCommune": "47157", + "libelleAcheminement": "MARMANDE", + "nomCommune": "MARMANDE" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "47170", + "codeCommune": "47134", + "libelleAcheminement": "LANNES", + "nomCommune": "LANNES" }, { - "codePostal": "38750", - "codeCommune": "38191", - "libelleAcheminement": "HUEZ", - "nomCommune": "HUEZ" + "codePostal": "32220", + "codeCommune": "32289", + "libelleAcheminement": "MONTPEZAT", + "nomCommune": "MONTPEZAT" }, { - "codePostal": "62164", - "codeCommune": "62025", - "libelleAcheminement": "AMBLETEUSE", - "nomCommune": "AMBLETEUSE" + "codePostal": "33620", + "codeCommune": "33439", + "libelleAcheminement": "ST MARIENS", + "nomCommune": "ST MARIENS" }, { - "codePostal": "09130", - "codeCommune": "09338", - "libelleAcheminement": "VILLENEUVE DU LATOU", - "nomCommune": "VILLENEUVE DU LATOU" + "codePostal": "47220", + "codeCommune": "47158", + "libelleAcheminement": "MARMONT PACHAS", + "nomCommune": "MARMONT PACHAS" }, { - "codePostal": "27300", - "codeCommune": "27056", - "libelleAcheminement": "BERNAY", - "nomCommune": "BERNAY" + "codePostal": "47340", + "codeCommune": "47138", + "libelleAcheminement": "LAROQUE TIMBAUT", + "nomCommune": "LAROQUE TIMBAUT" }, { - "codePostal": "38080", - "codeCommune": "38193", - "libelleAcheminement": "L ISLE D ABEAU", - "nomCommune": "L ISLE D ABEAU" + "codePostal": "32300", + "codeCommune": "32293", + "libelleAcheminement": "MOUCHES", + "nomCommune": "MOUCHES" }, { - "codePostal": "62260", - "codeCommune": "62029", - "libelleAcheminement": "AMETTES", - "nomCommune": "AMETTES" + "codePostal": "33490", + "codeCommune": "33444", + "libelleAcheminement": "ST MARTIN DE SESCAS", + "nomCommune": "ST MARTIN DE SESCAS" }, { - "codePostal": "10140", - "codeCommune": "10005", - "libelleAcheminement": "AMANCE", - "nomCommune": "AMANCE" + "codePostal": "47800", + "codeCommune": "47168", + "libelleAcheminement": "MIRAMONT DE GUYENNE", + "nomCommune": "MIRAMONT DE GUYENNE" }, { - "codePostal": "27940", - "codeCommune": "27058", - "libelleAcheminement": "LES TROIS LACS", - "nomCommune": "LES TROIS LACS" + "codePostal": "47360", + "codeCommune": "47140", + "libelleAcheminement": "LAUGNAC", + "nomCommune": "LAUGNAC" }, { - "codePostal": "38270", - "codeCommune": "38198", - "libelleAcheminement": "JARCIEU", - "nomCommune": "JARCIEU" + "codePostal": "32130", + "codeCommune": "32295", + "libelleAcheminement": "NIZAS", + "nomCommune": "NIZAS" }, { - "codePostal": "62223", - "codeCommune": "62037", - "libelleAcheminement": "ANZIN ST AUBIN", - "nomCommune": "ANZIN ST AUBIN" + "codePostal": "33210", + "codeCommune": "33457", + "libelleAcheminement": "ST PARDON DE CONQUES", + "nomCommune": "ST PARDON DE CONQUES" }, { - "codePostal": "10320", - "codeCommune": "10013", - "libelleAcheminement": "ASSENAY", - "nomCommune": "ASSENAY" + "codePostal": "47600", + "codeCommune": "47174", + "libelleAcheminement": "MONCRABEAU", + "nomCommune": "MONCRABEAU" }, { - "codePostal": "27660", - "codeCommune": "27059", - "libelleAcheminement": "BERNOUVILLE", - "nomCommune": "BERNOUVILLE" + "codePostal": "47200", + "codeCommune": "47150", + "libelleAcheminement": "LONGUEVILLE", + "nomCommune": "LONGUEVILLE" }, { - "codePostal": "38560", - "codeCommune": "38200", - "libelleAcheminement": "JARRIE", - "nomCommune": "JARRIE" + "codePostal": "32380", + "codeCommune": "32313", + "libelleAcheminement": "PESSOULENS", + "nomCommune": "PESSOULENS" }, { - "codePostal": "62610", - "codeCommune": "62038", - "libelleAcheminement": "ARDRES", - "nomCommune": "ARDRES" + "codePostal": "33760", + "codeCommune": "33464", + "libelleAcheminement": "ST PIERRE DE BAT", + "nomCommune": "ST PIERRE DE BAT" }, { - "codePostal": "10150", - "codeCommune": "10015", - "libelleAcheminement": "AUBETERRE", - "nomCommune": "AUBETERRE" + "codePostal": "47600", + "codeCommune": "47180", + "libelleAcheminement": "MONTAGNAC SUR AUVIGNON", + "nomCommune": "MONTAGNAC SUR AUVIGNON" }, { - "codePostal": "27520", - "codeCommune": "27062", - "libelleAcheminement": "LES MONTS DU ROUMOIS", - "nomCommune": "LES MONTS DU ROUMOIS" + "codePostal": "47140", + "codeCommune": "47161", + "libelleAcheminement": "MASSELS", + "nomCommune": "MASSELS" }, { - "codePostal": "38250", - "codeCommune": "38205", - "libelleAcheminement": "LANS EN VERCORS", - "nomCommune": "LANS EN VERCORS" + "codePostal": "32130", + "codeCommune": "32322", + "libelleAcheminement": "POMPIAC", + "nomCommune": "POMPIAC" }, { - "codePostal": "62000", - "codeCommune": "62041", - "libelleAcheminement": "ARRAS", - "nomCommune": "ARRAS" + "codePostal": "33750", + "codeCommune": "33466", + "libelleAcheminement": "ST QUENTIN DE BARON", + "nomCommune": "ST QUENTIN DE BARON" }, { - "codePostal": "10340", - "codeCommune": "10025", - "libelleAcheminement": "BAGNEUX LA FOSSE", - "nomCommune": "BAGNEUX LA FOSSE" + "codePostal": "47130", + "codeCommune": "47186", + "libelleAcheminement": "MONTESQUIEU", + "nomCommune": "MONTESQUIEU" }, { - "codePostal": "27170", - "codeCommune": "27063", - "libelleAcheminement": "BERVILLE LA CAMPAGNE", - "nomCommune": "BERVILLE LA CAMPAGNE" + "codePostal": "47210", + "codeCommune": "47164", + "libelleAcheminement": "MAZIERES NARESSE", + "nomCommune": "MAZIERES NARESSE" }, { - "codePostal": "38660", - "codeCommune": "38214", - "libelleAcheminement": "LUMBIN", - "nomCommune": "LUMBIN" + "codePostal": "32390", + "codeCommune": "32337", + "libelleAcheminement": "PUYSEGUR", + "nomCommune": "PUYSEGUR" }, { - "codePostal": "62170", - "codeCommune": "62044", - "libelleAcheminement": "ATTIN", - "nomCommune": "ATTIN" + "codePostal": "33220", + "codeCommune": "33467", + "libelleAcheminement": "ST QUENTIN DE CAPLONG", + "nomCommune": "ST QUENTIN DE CAPLONG" }, { - "codePostal": "10110", - "codeCommune": "10034", - "libelleAcheminement": "BAR SUR SEINE", - "nomCommune": "BAR SUR SEINE" + "codePostal": "47200", + "codeCommune": "47191", + "libelleAcheminement": "MONTPOUILLAN", + "nomCommune": "MONTPOUILLAN" }, { - "codePostal": "27210", - "codeCommune": "27065", - "libelleAcheminement": "BEUZEVILLE", - "nomCommune": "BEUZEVILLE" + "codePostal": "47180", + "codeCommune": "47165", + "libelleAcheminement": "MEILHAN SUR GARONNE", + "nomCommune": "MEILHAN SUR GARONNE" }, { - "codePostal": "38470", - "codeCommune": "38216", - "libelleAcheminement": "MALLEVAL EN VERCORS", - "nomCommune": "MALLEVAL EN VERCORS" + "codePostal": "32800", + "codeCommune": "32340", + "libelleAcheminement": "REANS", + "nomCommune": "REANS" }, { - "codePostal": "62390", - "codeCommune": "62047", - "libelleAcheminement": "AUBROMETZ", - "nomCommune": "AUBROMETZ" + "codePostal": "33240", + "codeCommune": "33470", + "libelleAcheminement": "ST ROMAIN LA VIRVEE", + "nomCommune": "ST ROMAIN LA VIRVEE" }, { - "codePostal": "10290", - "codeCommune": "10038", - "libelleAcheminement": "BERCENAY LE HAYER", - "nomCommune": "BERCENAY LE HAYER" + "codePostal": "47190", + "codeCommune": "47196", + "libelleAcheminement": "NICOLE", + "nomCommune": "NICOLE" }, { - "codePostal": "27480", - "codeCommune": "27066", - "libelleAcheminement": "BEZU LA FORET", - "nomCommune": "BEZU LA FORET" + "codePostal": "47310", + "codeCommune": "47169", + "libelleAcheminement": "MOIRAX", + "nomCommune": "MOIRAX" }, { - "codePostal": "38270", - "codeCommune": "38219", - "libelleAcheminement": "MARCOLLIN", - "nomCommune": "MARCOLLIN" + "codePostal": "32190", + "codeCommune": "32346", + "libelleAcheminement": "ROQUEBRUNE", + "nomCommune": "ROQUEBRUNE" }, { - "codePostal": "62179", - "codeCommune": "62054", - "libelleAcheminement": "AUDINGHEN", - "nomCommune": "AUDINGHEN" + "codePostal": "33650", + "codeCommune": "33474", + "libelleAcheminement": "ST SELVE", + "nomCommune": "ST SELVE" }, { - "codePostal": "10200", - "codeCommune": "10039", - "libelleAcheminement": "BERGERES", - "nomCommune": "BERGERES" + "codePostal": "47600", + "codeCommune": "47197", + "libelleAcheminement": "NOMDIEU", + "nomCommune": "NOMDIEU" }, { - "codePostal": "27700", - "codeCommune": "27070", - "libelleAcheminement": "FRENELLES EN VEXIN", - "nomCommune": "FRENELLES EN VEXIN" + "codePostal": "47290", + "codeCommune": "47170", + "libelleAcheminement": "MONBAHUS", + "nomCommune": "MONBAHUS" }, { - "codePostal": "38300", - "codeCommune": "38223", - "libelleAcheminement": "MAUBEC", - "nomCommune": "MAUBEC" + "codePostal": "32390", + "codeCommune": "32347", + "libelleAcheminement": "ROQUEFORT", + "nomCommune": "ROQUEFORT" }, { - "codePostal": "62370", - "codeCommune": "62057", - "libelleAcheminement": "AUDRUICQ", - "nomCommune": "AUDRUICQ" + "codePostal": "33440", + "codeCommune": "33487", + "libelleAcheminement": "ST VINCENT DE PAUL", + "nomCommune": "ST VINCENT DE PAUL" }, { - "codePostal": "10500", - "codeCommune": "10046", - "libelleAcheminement": "BLAINCOURT SUR AUBE", - "nomCommune": "BLAINCOURT SUR AUBE" + "codePostal": "47120", + "codeCommune": "47199", + "libelleAcheminement": "PARDAILLAN", + "nomCommune": "PARDAILLAN" }, { - "codePostal": "27620", - "codeCommune": "27072", - "libelleAcheminement": "BOIS JEROME ST OUEN", - "nomCommune": "BOIS JEROME ST OUEN" + "codePostal": "47160", + "codeCommune": "47177", + "libelleAcheminement": "MONHEURT", + "nomCommune": "MONHEURT" }, { - "codePostal": "38880", - "codeCommune": "38225", - "libelleAcheminement": "AUTRANS MEAUDRE EN VERCORS", - "nomCommune": "AUTRANS MEAUDRE EN VERCORS" + "codePostal": "32200", + "codeCommune": "32356", + "libelleAcheminement": "ST ANDRE", + "nomCommune": "ST ANDRE" }, { - "codePostal": "62127", - "codeCommune": "62061", - "libelleAcheminement": "AVERDOINGT", - "nomCommune": "AVERDOINGT" + "codePostal": "33690", + "codeCommune": "33512", + "libelleAcheminement": "SIGALENS", + "nomCommune": "SIGALENS" }, { - "codePostal": "10200", - "codeCommune": "10048", - "libelleAcheminement": "BLIGNY", - "nomCommune": "BLIGNY" + "codePostal": "47210", + "codeCommune": "47200", + "libelleAcheminement": "PARRANQUET", + "nomCommune": "PARRANQUET" }, { - "codePostal": "27330", - "codeCommune": "27075", - "libelleAcheminement": "BOIS NORMAND PRES LYRE", - "nomCommune": "BOIS NORMAND PRES LYRE" + "codePostal": "47150", + "codeCommune": "47178", + "libelleAcheminement": "MONSEGUR", + "nomCommune": "MONSEGUR" }, { - "codePostal": "38440", - "codeCommune": "38238", - "libelleAcheminement": "MOIDIEU DETOURBE", - "nomCommune": "MOIDIEU DETOURBE" + "codePostal": "32300", + "codeCommune": "32363", + "libelleAcheminement": "STE AURENCE CAZAUX", + "nomCommune": "STE AURENCE CAZAUX" }, { - "codePostal": "62127", - "codeCommune": "62070", - "libelleAcheminement": "BAILLEUL AUX CORNAILLES", - "nomCommune": "BAILLEUL AUX CORNAILLES" + "codePostal": "33760", + "codeCommune": "33515", + "libelleAcheminement": "SOULIGNAC", + "nomCommune": "SOULIGNAC" }, { - "codePostal": "10320", - "codeCommune": "10051", - "libelleAcheminement": "BOUILLY", - "nomCommune": "BOUILLY" + "codePostal": "47140", + "codeCommune": "47203", + "libelleAcheminement": "PENNE D AGENAIS", + "nomCommune": "PENNE D AGENAIS" }, { - "codePostal": "27120", - "codeCommune": "27081", - "libelleAcheminement": "BONCOURT", - "nomCommune": "BONCOURT" + "codePostal": "47350", + "codeCommune": "47189", + "libelleAcheminement": "MONTIGNAC TOUPINERIE", + "nomCommune": "MONTIGNAC TOUPINERIE" }, { - "codePostal": "38650", - "codeCommune": "38242", - "libelleAcheminement": "MONESTIER DE CLERMONT", - "nomCommune": "MONESTIER DE CLERMONT" + "codePostal": "32140", + "codeCommune": "32365", + "libelleAcheminement": "ST BLANCARD", + "nomCommune": "ST BLANCARD" }, { - "codePostal": "62123", - "codeCommune": "62072", - "libelleAcheminement": "BAILLEULMONT", - "nomCommune": "BAILLEULMONT" + "codePostal": "33790", + "codeCommune": "33516", + "libelleAcheminement": "SOUSSAC", + "nomCommune": "SOUSSAC" }, { - "codePostal": "10340", - "codeCommune": "10058", - "libelleAcheminement": "BRAGELOGNE BEAUVOIR", - "nomCommune": "BRAGELOGNE BEAUVOIR" + "codePostal": "47380", + "codeCommune": "47206", + "libelleAcheminement": "PINEL HAUTERIVE", + "nomCommune": "PINEL HAUTERIVE" }, { - "codePostal": "27190", - "codeCommune": "27082", - "libelleAcheminement": "LA BONNEVILLE SUR ITON", - "nomCommune": "LA BONNEVILLE SUR ITON" + "codePostal": "47350", + "codeCommune": "47204", + "libelleAcheminement": "PEYRIERE", + "nomCommune": "PEYRIERE" }, { - "codePostal": "38122", - "codeCommune": "38244", - "libelleAcheminement": "MONSTEROUX MILIEU", - "nomCommune": "MONSTEROUX MILIEU" + "codePostal": "32320", + "codeCommune": "32367", + "libelleAcheminement": "ST CHRISTAUD", + "nomCommune": "ST CHRISTAUD" }, { - "codePostal": "62123", - "codeCommune": "62074", - "libelleAcheminement": "BAILLEULVAL", - "nomCommune": "BAILLEULVAL" + "codePostal": "33460", + "codeCommune": "33517", + "libelleAcheminement": "SOUSSANS", + "nomCommune": "SOUSSANS" }, { - "codePostal": "10220", - "codeCommune": "10061", - "libelleAcheminement": "BREVONNES", - "nomCommune": "BREVONNES" + "codePostal": "47230", + "codeCommune": "47207", + "libelleAcheminement": "POMPIEY", + "nomCommune": "POMPIEY" }, { - "codePostal": "27520", - "codeCommune": "27089", - "libelleAcheminement": "THENOUVILLE", - "nomCommune": "THENOUVILLE" + "codePostal": "47700", + "codeCommune": "47205", + "libelleAcheminement": "PINDERES", + "nomCommune": "PINDERES" }, { - "codePostal": "38210", - "codeCommune": "38248", - "libelleAcheminement": "MONTAUD", - "nomCommune": "MONTAUD" + "codePostal": "32220", + "codeCommune": "32387", + "libelleAcheminement": "ST LOUBE", + "nomCommune": "ST LOUBE" }, { - "codePostal": "62610", - "codeCommune": "62078", - "libelleAcheminement": "BALINGHEM", - "nomCommune": "BALINGHEM" + "codePostal": "33320", + "codeCommune": "33519", + "libelleAcheminement": "LE TAILLAN MEDOC", + "nomCommune": "LE TAILLAN MEDOC" }, { - "codePostal": "10140", - "codeCommune": "10062", - "libelleAcheminement": "BRIEL SUR BARSE", - "nomCommune": "BRIEL SUR BARSE" + "codePostal": "47360", + "codeCommune": "47213", + "libelleAcheminement": "PRAYSSAS", + "nomCommune": "PRAYSSAS" }, { - "codePostal": "27670", - "codeCommune": "27090", - "libelleAcheminement": "BOSROUMOIS", - "nomCommune": "BOSROUMOIS" + "codePostal": "47170", + "codeCommune": "47211", + "libelleAcheminement": "POUDENAS", + "nomCommune": "POUDENAS" }, { - "codePostal": "38890", - "codeCommune": "38250", - "libelleAcheminement": "MONTCARRA", - "nomCommune": "MONTCARRA" + "codePostal": "32700", + "codeCommune": "32395", + "libelleAcheminement": "STE MERE", + "nomCommune": "STE MERE" }, { - "codePostal": "62620", - "codeCommune": "62083", - "libelleAcheminement": "BARLIN", - "nomCommune": "BARLIN" + "codePostal": "33580", + "codeCommune": "33520", + "libelleAcheminement": "TAILLECAVAT", + "nomCommune": "TAILLECAVAT" }, { - "codePostal": "10110", - "codeCommune": "10068", - "libelleAcheminement": "BUXEUIL", - "nomCommune": "BUXEUIL" + "codePostal": "47250", + "codeCommune": "47224", + "libelleAcheminement": "ROMESTAING", + "nomCommune": "ROMESTAING" }, { - "codePostal": "27250", - "codeCommune": "27096", - "libelleAcheminement": "LES BOTTEREAUX", - "nomCommune": "LES BOTTEREAUX" + "codePostal": "47800", + "codeCommune": "47218", + "libelleAcheminement": "PUYSSERAMPION", + "nomCommune": "PUYSSERAMPION" }, { - "codePostal": "38520", - "codeCommune": "38253", - "libelleAcheminement": "LES DEUX ALPES", - "nomCommune": "LES DEUX ALPES" + "codePostal": "32190", + "codeCommune": "32402", + "libelleAcheminement": "ST PAUL DE BAISE", + "nomCommune": "ST PAUL DE BAISE" }, { - "codePostal": "62250", - "codeCommune": "62089", - "libelleAcheminement": "BAZINGHEN", - "nomCommune": "BAZINGHEN" + "codePostal": "33470", + "codeCommune": "33527", + "libelleAcheminement": "LE TEICH", + "nomCommune": "LE TEICH" }, { - "codePostal": "10500", - "codeCommune": "10073", - "libelleAcheminement": "CHALETTE SUR VOIRE", - "nomCommune": "CHALETTE SUR VOIRE" + "codePostal": "47700", + "codeCommune": "47227", + "libelleAcheminement": "RUFFIAC", + "nomCommune": "RUFFIAC" }, { - "codePostal": "27930", - "codeCommune": "27099", - "libelleAcheminement": "LE BOULAY MORIN", - "nomCommune": "LE BOULAY MORIN" + "codePostal": "47210", + "codeCommune": "47219", + "libelleAcheminement": "RAYET", + "nomCommune": "RAYET" }, { - "codePostal": "38770", - "codeCommune": "38254", - "libelleAcheminement": "MONTEYNARD", - "nomCommune": "MONTEYNARD" + "codePostal": "32450", + "codeCommune": "32412", + "libelleAcheminement": "SARAMON", + "nomCommune": "SARAMON" }, { - "codePostal": "62124", - "codeCommune": "62096", - "libelleAcheminement": "BEAUMETZ LES CAMBRAI", - "nomCommune": "BEAUMETZ LES CAMBRAI" + "codePostal": "33420", + "codeCommune": "33531", + "libelleAcheminement": "TIZAC DE CURTON", + "nomCommune": "TIZAC DE CURTON" }, { - "codePostal": "10100", - "codeCommune": "10114", - "libelleAcheminement": "CRANCEY", - "nomCommune": "CRANCEY" + "codePostal": "47310", + "codeCommune": "47238", + "libelleAcheminement": "STE COLOMBE EN BRUILHOIS", + "nomCommune": "STE COLOMBE EN BRUILHOIS" }, { - "codePostal": "27310", - "codeCommune": "27102", - "libelleAcheminement": "BOUQUETOT", - "nomCommune": "BOUQUETOT" + "codePostal": "47160", + "codeCommune": "47220", + "libelleAcheminement": "RAZIMET", + "nomCommune": "RAZIMET" }, { - "codePostal": "38350", - "codeCommune": "38264", - "libelleAcheminement": "LA MORTE", - "nomCommune": "LA MORTE" + "codePostal": "32420", + "codeCommune": "32413", + "libelleAcheminement": "SARCOS", + "nomCommune": "SARCOS" }, { - "codePostal": "62217", - "codeCommune": "62099", - "libelleAcheminement": "BEAURAINS", - "nomCommune": "BEAURAINS" + "codePostal": "33550", + "codeCommune": "33534", + "libelleAcheminement": "LE TOURNE", + "nomCommune": "LE TOURNE" }, { - "codePostal": "10150", - "codeCommune": "10115", - "libelleAcheminement": "CRENEY PRES TROYES", - "nomCommune": "CRENEY PRES TROYES" + "codePostal": "47450", + "codeCommune": "47246", + "libelleAcheminement": "ST HILAIRE DE LUSIGNAN", + "nomCommune": "ST HILAIRE DE LUSIGNAN" }, { - "codePostal": "27310", - "codeCommune": "27103", - "libelleAcheminement": "BOURG ACHARD", - "nomCommune": "BOURG ACHARD" + "codePostal": "47170", + "codeCommune": "47221", + "libelleAcheminement": "REAUP LISSE", + "nomCommune": "REAUP LISSE" }, { - "codePostal": "38350", - "codeCommune": "38269", - "libelleAcheminement": "LA MURE D ISERE", - "nomCommune": "LA MURE" + "codePostal": "32300", + "codeCommune": "32419", + "libelleAcheminement": "SAUVIAC", + "nomCommune": "SAUVIAC" }, { - "codePostal": "62690", - "codeCommune": "62113", - "libelleAcheminement": "BERLES MONCHEL", - "nomCommune": "BERLES MONCHEL" + "codePostal": "33125", + "codeCommune": "33536", + "libelleAcheminement": "LE TUZAN", + "nomCommune": "LE TUZAN" }, { - "codePostal": "10130", - "codeCommune": "10118", - "libelleAcheminement": "LES CROUTES", - "nomCommune": "LES CROUTES" + "codePostal": "47120", + "codeCommune": "47247", + "libelleAcheminement": "ST JEAN DE DURAS", + "nomCommune": "ST JEAN DE DURAS" }, { - "codePostal": "27230", - "codeCommune": "27106", - "libelleAcheminement": "BOURNAINVILLE FAVEROLLES", - "nomCommune": "BOURNAINVILLE FAVEROLLES" + "codePostal": "47700", + "codeCommune": "47222", + "libelleAcheminement": "LA REUNION", + "nomCommune": "LA REUNION" }, { - "codePostal": "38160", - "codeCommune": "38272", - "libelleAcheminement": "MURINAIS", - "nomCommune": "MURINAIS" + "codePostal": "32260", + "codeCommune": "32426", + "libelleAcheminement": "SEISSAN", + "nomCommune": "SEISSAN" }, { - "codePostal": "62130", - "codeCommune": "62114", - "libelleAcheminement": "BERMICOURT", - "nomCommune": "BERMICOURT" + "codePostal": "33730", + "codeCommune": "33537", + "libelleAcheminement": "UZESTE", + "nomCommune": "UZESTE" }, { - "codePostal": "10200", - "codeCommune": "10126", - "libelleAcheminement": "DOLANCOURT", - "nomCommune": "DOLANCOURT" + "codePostal": "47210", + "codeCommune": "47256", + "libelleAcheminement": "ST MARTIN DE VILLEREAL", + "nomCommune": "ST MARTIN DE VILLEREAL" }, { - "codePostal": "27580", - "codeCommune": "27108", - "libelleAcheminement": "BOURTH", - "nomCommune": "BOURTH" + "codePostal": "47210", + "codeCommune": "47223", + "libelleAcheminement": "RIVES", + "nomCommune": "RIVES" }, { - "codePostal": "38220", - "codeCommune": "38279", - "libelleAcheminement": "NOTRE DAME DE MESAGE", - "nomCommune": "NOTRE DAME DE MESAGE" + "codePostal": "32230", + "codeCommune": "32427", + "libelleAcheminement": "SEMBOUES", + "nomCommune": "SEMBOUES" }, { - "codePostal": "62170", - "codeCommune": "62116", - "libelleAcheminement": "BERNIEULLES", - "nomCommune": "BERNIEULLES" + "codePostal": "33240", + "codeCommune": "33542", + "libelleAcheminement": "VERAC", + "nomCommune": "VERAC" }, { - "codePostal": "10220", - "codeCommune": "10129", - "libelleAcheminement": "DOSCHES", - "nomCommune": "DOSCHES" + "codePostal": "47270", + "codeCommune": "47269", + "libelleAcheminement": "ST PIERRE DE CLAIRAC", + "nomCommune": "ST PIERRE DE CLAIRAC" }, { - "codePostal": "27570", - "codeCommune": "27115", - "libelleAcheminement": "BREUX SUR AVRE", - "nomCommune": "BREUX SUR AVRE" + "codePostal": "47310", + "codeCommune": "47225", + "libelleAcheminement": "ROQUEFORT", + "nomCommune": "ROQUEFORT" }, { - "codePostal": "38144", - "codeCommune": "38280", - "libelleAcheminement": "NOTRE DAME DE VAULX", - "nomCommune": "NOTRE DAME DE VAULX" + "codePostal": "32120", + "codeCommune": "32436", + "libelleAcheminement": "SOLOMIAC", + "nomCommune": "SOLOMIAC" }, { - "codePostal": "62170", - "codeCommune": "62123", - "libelleAcheminement": "BEUSSENT", - "nomCommune": "BEUSSENT" + "codePostal": "33123", + "codeCommune": "33544", + "libelleAcheminement": "LE VERDON SUR MER", + "nomCommune": "LE VERDON SUR MER" }, { - "codePostal": "10500", - "codeCommune": "10139", - "libelleAcheminement": "EPOTHEMONT", - "nomCommune": "EPOTHEMONT" + "codePostal": "47120", + "codeCommune": "47271", + "libelleAcheminement": "ST PIERRE SUR DROPT", + "nomCommune": "ST PIERRE SUR DROPT" }, { - "codePostal": "27800", - "codeCommune": "27116", - "libelleAcheminement": "BRIONNE", - "nomCommune": "BRIONNE" + "codePostal": "47800", + "codeCommune": "47226", + "libelleAcheminement": "ROUMAGNE", + "nomCommune": "ROUMAGNE" }, { - "codePostal": "38260", - "codeCommune": "38284", - "libelleAcheminement": "ORNACIEUX BALBINS", - "nomCommune": "ORNACIEUX BALBINS" + "codePostal": "32400", + "codeCommune": "32443", + "libelleAcheminement": "TERMES D ARMAGNAC", + "nomCommune": "TERMES D ARMAGNAC" }, { - "codePostal": "62250", - "codeCommune": "62125", - "libelleAcheminement": "BEUVREQUEN", - "nomCommune": "BEUVREQUEN" + "codePostal": "33240", + "codeCommune": "33553", + "libelleAcheminement": "VIRSAC", + "nomCommune": "VIRSAC" }, { - "codePostal": "10360", - "codeCommune": "10141", - "libelleAcheminement": "ESSOYES", - "nomCommune": "ESSOYES" + "codePostal": "47120", + "codeCommune": "47278", + "libelleAcheminement": "ST SERNIN", + "nomCommune": "ST SERNIN" }, { - "codePostal": "27120", - "codeCommune": "27123", - "libelleAcheminement": "CAILLOUET ORGEVILLE", - "nomCommune": "CAILLOUET ORGEVILLE" + "codePostal": "47120", + "codeCommune": "47236", + "libelleAcheminement": "STE COLOMBE DE DURAS", + "nomCommune": "STE COLOMBE DE DURAS" }, { - "codePostal": "38520", - "codeCommune": "38285", - "libelleAcheminement": "ORNON", - "nomCommune": "ORNON" + "codePostal": "32420", + "codeCommune": "32451", + "libelleAcheminement": "TOURNAN", + "nomCommune": "TOURNAN" }, { - "codePostal": "62650", - "codeCommune": "62127", - "libelleAcheminement": "BEZINGHEM", - "nomCommune": "BEZINGHEM" + "codePostal": "34360", + "codeCommune": "34015", + "libelleAcheminement": "ASSIGNAN", + "nomCommune": "ASSIGNAN" }, { - "codePostal": "10190", - "codeCommune": "10142", - "libelleAcheminement": "ESTISSAC", - "nomCommune": "ESTISSAC" + "codePostal": "47600", + "codeCommune": "47287", + "libelleAcheminement": "SAUMONT", + "nomCommune": "SAUMONT" }, { - "codePostal": "27180", - "codeCommune": "27132", - "libelleAcheminement": "CAUGE", - "nomCommune": "CAUGE" + "codePostal": "47210", + "codeCommune": "47240", + "libelleAcheminement": "ST ETIENNE DE VILLEREAL", + "nomCommune": "ST ETIENNE DE VILLEREAL" }, { - "codePostal": "38260", - "codeCommune": "38291", - "libelleAcheminement": "PAJAY", - "nomCommune": "PAJAY" + "codePostal": "32380", + "codeCommune": "32452", + "libelleAcheminement": "TOURNECOUPE", + "nomCommune": "TOURNECOUPE" }, { - "codePostal": "62450", - "codeCommune": "62129", - "libelleAcheminement": "BIEFVILLERS LES BAPAUME", - "nomCommune": "BIEFVILLERS LES BAPAUME" + "codePostal": "34480", + "codeCommune": "34018", + "libelleAcheminement": "AUTIGNAC", + "nomCommune": "AUTIGNAC" }, { - "codePostal": "10150", - "codeCommune": "10149", - "libelleAcheminement": "FEUGES", - "nomCommune": "FEUGES" + "codePostal": "47270", + "codeCommune": "47289", + "libelleAcheminement": "LA SAUVETAT DE SAVERES", + "nomCommune": "LA SAUVETAT DE SAVERES" }, { - "codePostal": "27270", - "codeCommune": "27138", - "libelleAcheminement": "CHAMBLAC", - "nomCommune": "CHAMBLAC" + "codePostal": "47210", + "codeCommune": "47241", + "libelleAcheminement": "ST EUTROPE DE BORN", + "nomCommune": "ST EUTROPE DE BORN" }, { - "codePostal": "38730", - "codeCommune": "38292", - "libelleAcheminement": "VILLAGES DU LAC DE PALADRU", - "nomCommune": "VILLAGES DU LAC DE PALADRU" + "codePostal": "32500", + "codeCommune": "32457", + "libelleAcheminement": "URDENS", + "nomCommune": "URDENS" }, { - "codePostal": "62121", - "codeCommune": "62131", - "libelleAcheminement": "BIHUCOURT", - "nomCommune": "BIHUCOURT" + "codePostal": "34600", + "codeCommune": "34028", + "libelleAcheminement": "BEDARIEUX", + "nomCommune": "BEDARIEUX" }, { - "codePostal": "10220", - "codeCommune": "10165", - "libelleAcheminement": "GERAUDOT", - "nomCommune": "GERAUDOT" + "codePostal": "47150", + "codeCommune": "47291", + "libelleAcheminement": "LA SAUVETAT SUR LEDE", + "nomCommune": "LA SAUVETAT SUR LEDE" }, { - "codePostal": "27270", - "codeCommune": "27138", - "libelleAcheminement": "CHAMBLAC", - "nomCommune": "CHAMBLAC" + "codePostal": "47250", + "codeCommune": "47244", + "libelleAcheminement": "STE GEMME MARTAILLAC", + "nomCommune": "STE GEMME MARTAILLAC" }, { - "codePostal": "38490", - "codeCommune": "38296", - "libelleAcheminement": "LE PASSAGE", - "nomCommune": "LE PASSAGE" + "codePostal": "32190", + "codeCommune": "32462", + "libelleAcheminement": "VIC FEZENSAC", + "nomCommune": "VIC FEZENSAC" }, { - "codePostal": "62270", - "codeCommune": "62137", - "libelleAcheminement": "BLANGERVAL BLANGERMONT", - "nomCommune": "BLANGERVAL BLANGERMONT" + "codePostal": "34220", + "codeCommune": "34034", + "libelleAcheminement": "BOISSET", + "nomCommune": "BOISSET" }, { - "codePostal": "10500", - "codeCommune": "10171", - "libelleAcheminement": "HAMPIGNY", - "nomCommune": "HAMPIGNY" + "codePostal": "47220", + "codeCommune": "47293", + "libelleAcheminement": "SAUVETERRE ST DENIS", + "nomCommune": "SAUVETERRE ST DENIS" }, { - "codePostal": "27250", - "codeCommune": "27156", - "libelleAcheminement": "CHERONVILLIERS", - "nomCommune": "CHERONVILLIERS" + "codePostal": "47120", + "codeCommune": "47245", + "libelleAcheminement": "ST GERAUD", + "nomCommune": "ST GERAUD" }, { - "codePostal": "38270", - "codeCommune": "38307", - "libelleAcheminement": "PISIEU", - "nomCommune": "PISIEU" + "codePostal": "33120", + "codeCommune": "33009", + "libelleAcheminement": "ARCACHON", + "nomCommune": "ARCACHON" }, { - "codePostal": "62770", - "codeCommune": "62138", - "libelleAcheminement": "BLANGY SUR TERNOISE", - "nomCommune": "BLANGY SUR TERNOISE" + "codePostal": "34700", + "codeCommune": "34036", + "libelleAcheminement": "LE BOSC", + "nomCommune": "LE BOSC" }, { - "codePostal": "10330", - "codeCommune": "10180", - "libelleAcheminement": "JONCREUIL", - "nomCommune": "JONCREUIL" + "codePostal": "47310", + "codeCommune": "47300", + "libelleAcheminement": "SERIGNAC SUR GARONNE", + "nomCommune": "SERIGNAC SUR GARONNE" }, { - "codePostal": "27160", - "codeCommune": "27157", - "libelleAcheminement": "MARBOIS", - "nomCommune": "MARBOIS" + "codePostal": "47270", + "codeCommune": "47248", + "libelleAcheminement": "ST JEAN DE THURAC", + "nomCommune": "ST JEAN DE THURAC" }, { - "codePostal": "38590", - "codeCommune": "38308", - "libelleAcheminement": "PLAN", - "nomCommune": "PLAN" + "codePostal": "33240", + "codeCommune": "33018", + "libelleAcheminement": "VAL DE VIRVEE", + "nomCommune": "VAL DE VIRVEE" }, { - "codePostal": "62170", - "codeCommune": "62150", - "libelleAcheminement": "BOISJEAN", - "nomCommune": "BOISJEAN" + "codePostal": "34160", + "codeCommune": "34043", + "libelleAcheminement": "BUZIGNARGUES", + "nomCommune": "BUZIGNARGUES" }, { - "codePostal": "10140", - "codeCommune": "10183", - "libelleAcheminement": "JUVANZE", - "nomCommune": "JUVANZE" + "codePostal": "47170", + "codeCommune": "47302", + "libelleAcheminement": "SOS", + "nomCommune": "SOS" }, { - "codePostal": "27400", - "codeCommune": "27184", - "libelleAcheminement": "CRASVILLE", - "nomCommune": "CRASVILLE" + "codePostal": "47160", + "codeCommune": "47251", + "libelleAcheminement": "ST LEON", + "nomCommune": "ST LEON" }, { - "codePostal": "38350", - "codeCommune": "38313", - "libelleAcheminement": "PONSONNAS", - "nomCommune": "PONSONNAS" + "codePostal": "33980", + "codeCommune": "33019", + "libelleAcheminement": "AUDENGE", + "nomCommune": "AUDENGE" }, { - "codePostal": "62270", - "codeCommune": "62154", - "libelleAcheminement": "BONNIERES", - "nomCommune": "BONNIERES" + "codePostal": "34330", + "codeCommune": "34046", + "libelleAcheminement": "CAMBON ET SALVERGUES", + "nomCommune": "CAMBON ET SALVERGUES" }, { - "codePostal": "10500", - "codeCommune": "10189", - "libelleAcheminement": "LASSICOURT", - "nomCommune": "LASSICOURT" + "codePostal": "47110", + "codeCommune": "47306", + "libelleAcheminement": "LE TEMPLE SUR LOT", + "nomCommune": "LE TEMPLE SUR LOT" }, { - "codePostal": "27490", - "codeCommune": "27191", - "libelleAcheminement": "CLEF VALLEE D EURE", - "nomCommune": "CLEF VALLEE D EURE" + "codePostal": "47170", + "codeCommune": "47258", + "libelleAcheminement": "STE MAURE DE PEYRIAC", + "nomCommune": "STE MAURE DE PEYRIAC" }, { - "codePostal": "38390", - "codeCommune": "38320", - "libelleAcheminement": "PORCIEU AMBLAGNIEU", - "nomCommune": "PORCIEU AMBLAGNIEU" + "codePostal": "33190", + "codeCommune": "33031", + "libelleAcheminement": "BASSANNE", + "nomCommune": "BASSANNE" }, { - "codePostal": "62860", - "codeCommune": "62164", - "libelleAcheminement": "BOURLON", - "nomCommune": "BOURLON" + "codePostal": "34260", + "codeCommune": "34049", + "libelleAcheminement": "CAMPLONG", + "nomCommune": "CAMPLONG" }, { - "codePostal": "10700", - "codeCommune": "10195", - "libelleAcheminement": "LHUITRE", - "nomCommune": "LHUITRE" + "codePostal": "47400", + "codeCommune": "47310", + "libelleAcheminement": "TONNEINS", + "nomCommune": "TONNEINS" }, { - "codePostal": "27490", - "codeCommune": "27191", - "libelleAcheminement": "CLEF VALLEE D EURE", - "nomCommune": "CLEF VALLEE D EURE" + "codePostal": "47220", + "codeCommune": "47262", + "libelleAcheminement": "ST NICOLAS DE LA BALERME", + "nomCommune": "ST NICOLAS DE LA BALERME" }, { - "codePostal": "38470", - "codeCommune": "38330", - "libelleAcheminement": "QUINCIEU", - "nomCommune": "QUINCIEU" + "codePostal": "33230", + "codeCommune": "33034", + "libelleAcheminement": "BAYAS", + "nomCommune": "BAYAS" }, { - "codePostal": "62172", - "codeCommune": "62170", - "libelleAcheminement": "BOUVIGNY BOYEFFLES", - "nomCommune": "BOUVIGNY BOYEFFLES" + "codePostal": "34210", + "codeCommune": "34054", + "libelleAcheminement": "CASSAGNOLES", + "nomCommune": "CASSAGNOLES" }, { - "codePostal": "10320", - "codeCommune": "10198", - "libelleAcheminement": "LIREY", - "nomCommune": "LIREY" + "codePostal": "47380", + "codeCommune": "47319", + "libelleAcheminement": "VILLEBRAMAR", + "nomCommune": "VILLEBRAMAR" }, { - "codePostal": "27490", - "codeCommune": "27191", - "libelleAcheminement": "CLEF VALLEE D EURE", - "nomCommune": "CLEF VALLEE D EURE" + "codePostal": "47200", + "codeCommune": "47263", + "libelleAcheminement": "ST PARDOUX DU BREUIL", + "nomCommune": "ST PARDOUX DU BREUIL" }, { - "codePostal": "38110", - "codeCommune": "38341", - "libelleAcheminement": "ROCHETOIRIN", - "nomCommune": "ROCHETOIRIN" + "codePostal": "33130", + "codeCommune": "33039", + "libelleAcheminement": "BEGLES", + "nomCommune": "BEGLES" }, { - "codePostal": "62128", - "codeCommune": "62172", - "libelleAcheminement": "BOYELLES", - "nomCommune": "BOYELLES" + "codePostal": "34170", + "codeCommune": "34057", + "libelleAcheminement": "CASTELNAU LE LEZ", + "nomCommune": "CASTELNAU LE LEZ" }, { - "codePostal": "10140", - "codeCommune": "10200", - "libelleAcheminement": "LA LOGE AUX CHEVRES", - "nomCommune": "LA LOGE AUX CHEVRES" + "codePostal": "48800", + "codeCommune": "48004", + "libelleAcheminement": "ALTIER", + "nomCommune": "ALTIER" }, { - "codePostal": "27700", - "codeCommune": "27194", - "libelleAcheminement": "CUVERVILLE", - "nomCommune": "CUVERVILLE" + "codePostal": "47800", + "codeCommune": "47264", + "libelleAcheminement": "ST PARDOUX ISAAC", + "nomCommune": "ST PARDOUX ISAAC" }, { - "codePostal": "38150", - "codeCommune": "38344", - "libelleAcheminement": "ROUSSILLON", - "nomCommune": "ROUSSILLON" + "codePostal": "33410", + "codeCommune": "33040", + "libelleAcheminement": "BEGUEY", + "nomCommune": "BEGUEY" }, { - "codePostal": "62117", - "codeCommune": "62173", - "libelleAcheminement": "BREBIERES", - "nomCommune": "BREBIERES" + "codePostal": "34460", + "codeCommune": "34074", + "libelleAcheminement": "CESSENON SUR ORB", + "nomCommune": "CESSENON SUR ORB" }, { - "codePostal": "10170", - "codeCommune": "10207", - "libelleAcheminement": "LONGUEVILLE SUR AUBE", - "nomCommune": "LONGUEVILLE SUR AUBE" + "codePostal": "48130", + "codeCommune": "48009", + "libelleAcheminement": "PEYRE EN AUBRAC", + "nomCommune": "PEYRE EN AUBRAC" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "47270", + "codeCommune": "47274", + "libelleAcheminement": "ST ROMAIN LE NOBLE", + "nomCommune": "ST ROMAIN LE NOBLE" }, { - "codePostal": "38940", - "codeCommune": "38347", - "libelleAcheminement": "ROYBON", - "nomCommune": "ROYBON" + "codePostal": "33750", + "codeCommune": "33049", + "libelleAcheminement": "BEYCHAC ET CAILLAU", + "nomCommune": "BEYCHAC ET CAILLAU" }, { - "codePostal": "62170", - "codeCommune": "62176", - "libelleAcheminement": "BREXENT ENOCQ", - "nomCommune": "BREXENT ENOCQ" + "codePostal": "34210", + "codeCommune": "34075", + "libelleAcheminement": "CESSERAS", + "nomCommune": "CESSERAS" }, { - "codePostal": "10140", - "codeCommune": "10217", - "libelleAcheminement": "MAISON DES CHAMPS", - "nomCommune": "MAISON DES CHAMPS" + "codePostal": "48130", + "codeCommune": "48009", + "libelleAcheminement": "PEYRE EN AUBRAC", + "nomCommune": "PEYRE EN AUBRAC" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "47220", + "codeCommune": "47279", + "libelleAcheminement": "ST SIXTE", + "nomCommune": "ST SIXTE" }, { - "codePostal": "38300", - "codeCommune": "38348", - "libelleAcheminement": "RUY MONTCEAU", - "nomCommune": "RUY MONTCEAU" + "codePostal": "33340", + "codeCommune": "33055", + "libelleAcheminement": "BLAIGNAN PRIGNAC", + "nomCommune": "BLAIGNAN PRIGNAC" }, { - "codePostal": "62130", - "codeCommune": "62180", - "libelleAcheminement": "BRIAS", - "nomCommune": "BRIAS" + "codePostal": "34980", + "codeCommune": "34082", + "libelleAcheminement": "COMBAILLAUX", + "nomCommune": "COMBAILLAUX" }, { - "codePostal": "10200", - "codeCommune": "10219", - "libelleAcheminement": "MAISONS LES SOULAINES", - "nomCommune": "MAISONS LES SOULAINES" + "codePostal": "48130", + "codeCommune": "48009", + "libelleAcheminement": "PEYRE EN AUBRAC", + "nomCommune": "PEYRE EN AUBRAC" }, { - "codePostal": "27230", - "codeCommune": "27208", - "libelleAcheminement": "DURANVILLE", - "nomCommune": "DURANVILLE" + "codePostal": "47420", + "codeCommune": "47286", + "libelleAcheminement": "SAUMEJAN", + "nomCommune": "SAUMEJAN" }, { - "codePostal": "38680", - "codeCommune": "38356", - "libelleAcheminement": "ST ANDRE EN ROYANS", - "nomCommune": "ST ANDRE EN ROYANS" + "codePostal": "33540", + "codeCommune": "33057", + "libelleAcheminement": "BLASIMON", + "nomCommune": "BLASIMON" }, { - "codePostal": "62390", - "codeCommune": "62182", - "libelleAcheminement": "BUIRE AU BOIS", - "nomCommune": "BUIRE AU BOIS" + "codePostal": "34920", + "codeCommune": "34090", + "libelleAcheminement": "LE CRES", + "nomCommune": "LE CRES" }, { - "codePostal": "10500", - "codeCommune": "10221", - "libelleAcheminement": "MAIZIERES LES BRIENNE", - "nomCommune": "MAIZIERES LES BRIENNE" + "codePostal": "48800", + "codeCommune": "48015", + "libelleAcheminement": "PIED DE BORNE", + "nomCommune": "PIED DE BORNE" }, { - "codePostal": "27110", - "codeCommune": "27212", - "libelleAcheminement": "ECAUVILLE", - "nomCommune": "ECAUVILLE" + "codePostal": "47410", + "codeCommune": "47296", + "libelleAcheminement": "SEGALAS", + "nomCommune": "SEGALAS" }, { - "codePostal": "38350", - "codeCommune": "38361", - "libelleAcheminement": "ST AREY", - "nomCommune": "ST AREY" + "codePostal": "33670", + "codeCommune": "33059", + "libelleAcheminement": "BLESIGNAC", + "nomCommune": "BLESIGNAC" }, { - "codePostal": "62870", - "codeCommune": "62183", - "libelleAcheminement": "BUIRE LE SEC", - "nomCommune": "BUIRE LE SEC" + "codePostal": "34190", + "codeCommune": "34099", + "libelleAcheminement": "FERRIERES LES VERRERIES", + "nomCommune": "FERRIERES LES VERRERIES" }, { - "codePostal": "10170", - "codeCommune": "10233", - "libelleAcheminement": "MERY SUR SEINE", - "nomCommune": "MERY SUR SEINE" + "codePostal": "48190", + "codeCommune": "48027", + "libelleAcheminement": "MONT LOZERE ET GOULET", + "nomCommune": "MONT LOZERE ET GOULET" }, { - "codePostal": "27510", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "47360", + "codeCommune": "47297", + "libelleAcheminement": "SEMBAS", + "nomCommune": "SEMBAS" }, { - "codePostal": "38118", - "codeCommune": "38365", - "libelleAcheminement": "ST BAUDILLE DE LA TOUR", - "nomCommune": "ST BAUDILLE DE LA TOUR" + "codePostal": "33100", + "codeCommune": "33063", + "libelleAcheminement": "BORDEAUX", + "nomCommune": "BORDEAUX" }, { - "codePostal": "62350", - "codeCommune": "62195", - "libelleAcheminement": "CALONNE SUR LA LYS", - "nomCommune": "CALONNE SUR LA LYS" + "codePostal": "34320", + "codeCommune": "34103", + "libelleAcheminement": "FONTES", + "nomCommune": "FONTES" }, { - "codePostal": "10190", - "codeCommune": "10237", - "libelleAcheminement": "MESNIL ST LOUP", - "nomCommune": "MESNIL ST LOUP" + "codePostal": "48000", + "codeCommune": "48029", + "libelleAcheminement": "LE BORN", + "nomCommune": "LE BORN" }, { - "codePostal": "27630", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "47430", + "codeCommune": "47298", + "libelleAcheminement": "SENESTIS", + "nomCommune": "SENESTIS" }, { - "codePostal": "38710", - "codeCommune": "38366", - "libelleAcheminement": "ST BAUDILLE ET PIPET", - "nomCommune": "ST BAUDILLE ET PIPET" + "codePostal": "33200", + "codeCommune": "33063", + "libelleAcheminement": "BORDEAUX", + "nomCommune": "BORDEAUX" }, { - "codePostal": "62690", - "codeCommune": "62199", - "libelleAcheminement": "CAMBLAIN L ABBE", - "nomCommune": "CAMBLAIN L ABBE" + "codePostal": "34700", + "codeCommune": "34106", + "libelleAcheminement": "FOZIERES", + "nomCommune": "FOZIERES" }, { - "codePostal": "10210", - "codeCommune": "10241", - "libelleAcheminement": "METZ ROBERT", - "nomCommune": "METZ ROBERT" + "codePostal": "48310", + "codeCommune": "48031", + "libelleAcheminement": "BRION", + "nomCommune": "BRION" }, { - "codePostal": "27150", - "codeCommune": "27226", - "libelleAcheminement": "ETREPAGNY", - "nomCommune": "ETREPAGNY" + "codePostal": "47410", + "codeCommune": "47299", + "libelleAcheminement": "SERIGNAC PEBOUDOU", + "nomCommune": "SERIGNAC PEBOUDOU" }, { - "codePostal": "38110", - "codeCommune": "38369", - "libelleAcheminement": "STE BLANDINE", - "nomCommune": "STE BLANDINE" + "codePostal": "33300", + "codeCommune": "33063", + "libelleAcheminement": "BORDEAUX", + "nomCommune": "BORDEAUX" }, { - "codePostal": "62270", - "codeCommune": "62208", - "libelleAcheminement": "CANETTEMONT", - "nomCommune": "CANETTEMONT" + "codePostal": "34110", + "codeCommune": "34108", + "libelleAcheminement": "FRONTIGNAN", + "nomCommune": "FRONTIGNAN" }, { - "codePostal": "10140", - "codeCommune": "10252", - "libelleAcheminement": "MONTMARTIN LE HAUT", - "nomCommune": "MONTMARTIN LE HAUT" + "codePostal": "48500", + "codeCommune": "48034", + "libelleAcheminement": "LA CANOURGUE", + "nomCommune": "LA CANOURGUE" }, { - "codePostal": "27110", - "codeCommune": "27241", - "libelleAcheminement": "FEUGUEROLLES", - "nomCommune": "FEUGUEROLLES" + "codePostal": "47370", + "codeCommune": "47312", + "libelleAcheminement": "TOURNON D AGENAIS", + "nomCommune": "TOURNON D AGENAIS" }, { - "codePostal": "38620", - "codeCommune": "38386", - "libelleAcheminement": "ST GEOIRE EN VALDAINE", - "nomCommune": "ST GEOIRE EN VALDAINE" + "codePostal": "33190", + "codeCommune": "33066", + "libelleAcheminement": "BOURDELLES", + "nomCommune": "BOURDELLES" }, { - "codePostal": "62140", - "codeCommune": "62212", - "libelleAcheminement": "CAPELLE LES HESDIN", - "nomCommune": "CAPELLE LES HESDIN" + "codePostal": "34190", + "codeCommune": "34111", + "libelleAcheminement": "GANGES", + "nomCommune": "GANGES" }, { - "codePostal": "10330", - "codeCommune": "10253", - "libelleAcheminement": "MONTMORENCY BEAUFORT", - "nomCommune": "MONTMORENCY BEAUFORT" + "codePostal": "48500", + "codeCommune": "48034", + "libelleAcheminement": "LA CANOURGUE", + "nomCommune": "LA CANOURGUE" }, { - "codePostal": "27480", - "codeCommune": "27245", - "libelleAcheminement": "FLEURY LA FORET", - "nomCommune": "FLEURY LA FORET" + "codePostal": "47380", + "codeCommune": "47313", + "libelleAcheminement": "TOURTRES", + "nomCommune": "TOURTRES" }, { - "codePostal": "38790", - "codeCommune": "38389", - "libelleAcheminement": "ST GEORGES D ESPERANCHE", - "nomCommune": "ST GEORGES D ESPERANCHE" + "codePostal": "33710", + "codeCommune": "33067", + "libelleAcheminement": "BOURG SUR GIRONDE", + "nomCommune": "BOURG" }, { - "codePostal": "62260", - "codeCommune": "62217", - "libelleAcheminement": "CAUCHY A LA TOUR", - "nomCommune": "CAUCHY A LA TOUR" + "codePostal": "34130", + "codeCommune": "34127", + "libelleAcheminement": "LANSARGUES", + "nomCommune": "LANSARGUES" }, { - "codePostal": "10150", - "codeCommune": "10256", - "libelleAcheminement": "MONTSUZAIN", - "nomCommune": "MONTSUZAIN" + "codePostal": "48600", + "codeCommune": "48038", + "libelleAcheminement": "BEL AIR VAL D ANCE", + "nomCommune": "BEL AIR VAL D ANCE" }, { - "codePostal": "27380", - "codeCommune": "27247", - "libelleAcheminement": "FLIPOU", - "nomCommune": "FLIPOU" + "codePostal": "47140", + "codeCommune": "47315", + "libelleAcheminement": "TRENTELS", + "nomCommune": "TRENTELS" }, { - "codePostal": "38460", - "codeCommune": "38392", - "libelleAcheminement": "ST HILAIRE DE BRENS", - "nomCommune": "ST HILAIRE DE BRENS" + "codePostal": "33113", + "codeCommune": "33068", + "libelleAcheminement": "BOURIDEYS", + "nomCommune": "BOURIDEYS" }, { - "codePostal": "62140", - "codeCommune": "62219", - "libelleAcheminement": "CAUMONT", - "nomCommune": "CAUMONT" + "codePostal": "34480", + "codeCommune": "34130", + "libelleAcheminement": "LAURENS", + "nomCommune": "LAURENS" }, { - "codePostal": "10250", - "codeCommune": "10261", - "libelleAcheminement": "MUSSY SUR SEINE", - "nomCommune": "MUSSY SUR SEINE" + "codePostal": "48230", + "codeCommune": "48039", + "libelleAcheminement": "CHANAC", + "nomCommune": "CHANAC" }, { - "codePostal": "27260", - "codeCommune": "27269", - "libelleAcheminement": "FRESNE CAUVERVILLE", - "nomCommune": "FRESNE CAUVERVILLE" + "codePostal": "47400", + "codeCommune": "47316", + "libelleAcheminement": "VARES", + "nomCommune": "VARES" }, { - "codePostal": "38710", - "codeCommune": "38403", - "libelleAcheminement": "ST JEAN D HERANS", - "nomCommune": "ST JEAN D HERANS" + "codePostal": "33240", + "codeCommune": "33082", + "libelleAcheminement": "CADILLAC EN FRONSADAIS", + "nomCommune": "CADILLAC EN FRONSADAIS" }, { - "codePostal": "62140", - "codeCommune": "62222", - "libelleAcheminement": "CHERIENNES", - "nomCommune": "CHERIENNES" + "codePostal": "34710", + "codeCommune": "34135", + "libelleAcheminement": "LESPIGNAN", + "nomCommune": "LESPIGNAN" }, { - "codePostal": "10700", - "codeCommune": "10269", - "libelleAcheminement": "NOZAY", - "nomCommune": "NOZAY" + "codePostal": "48000", + "codeCommune": "48042", + "libelleAcheminement": "CHASTEL NOUVEL", + "nomCommune": "CHASTEL NOUVEL" }, { - "codePostal": "27560", - "codeCommune": "27286", - "libelleAcheminement": "GIVERVILLE", - "nomCommune": "GIVERVILLE" + "codePostal": "47120", + "codeCommune": "47321", + "libelleAcheminement": "VILLENEUVE DE DURAS", + "nomCommune": "VILLENEUVE DE DURAS" }, { - "codePostal": "38350", - "codeCommune": "38413", - "libelleAcheminement": "ST LAURENT EN BEAUMONT", - "nomCommune": "ST LAURENT EN BEAUMONT" + "codePostal": "33660", + "codeCommune": "33088", + "libelleAcheminement": "CAMPS SUR L ISLE", + "nomCommune": "CAMPS SUR L ISLE" }, { - "codePostal": "62180", - "codeCommune": "62233", - "libelleAcheminement": "CONCHIL LE TEMPLE", - "nomCommune": "CONCHIL LE TEMPLE" + "codePostal": "34120", + "codeCommune": "34136", + "libelleAcheminement": "LEZIGNAN LA CEBE", + "nomCommune": "LEZIGNAN LA CEBE" }, { - "codePostal": "10700", - "codeCommune": "10273", - "libelleAcheminement": "ORTILLON", - "nomCommune": "ORTILLON" + "codePostal": "48300", + "codeCommune": "48048", + "libelleAcheminement": "CHEYLARD L EVEQUE", + "nomCommune": "CHEYLARD L EVEQUE" }, { - "codePostal": "27190", - "codeCommune": "27287", - "libelleAcheminement": "GLISOLLES", - "nomCommune": "GLISOLLES" + "codePostal": "47300", + "codeCommune": "47323", + "libelleAcheminement": "VILLENEUVE SUR LOT", + "nomCommune": "VILLENEUVE SUR LOT" }, { - "codePostal": "38970", - "codeCommune": "38414", - "libelleAcheminement": "STE LUCE", - "nomCommune": "STE LUCE" + "codePostal": "33220", + "codeCommune": "33094", + "libelleAcheminement": "CAPLONG", + "nomCommune": "CAPLONG" }, { - "codePostal": "62630", - "codeCommune": "62241", - "libelleAcheminement": "CORMONT", - "nomCommune": "CORMONT" + "codePostal": "34400", + "codeCommune": "34145", + "libelleAcheminement": "LUNEL", + "nomCommune": "LUNEL" }, { - "codePostal": "10100", - "codeCommune": "10275", - "libelleAcheminement": "OSSEY LES TROIS MAISONS", - "nomCommune": "OSSEY LES TROIS MAISONS" + "codePostal": "48190", + "codeCommune": "48053", + "libelleAcheminement": "CUBIERES", + "nomCommune": "CUBIERES" }, { - "codePostal": "27580", - "codeCommune": "27291", - "libelleAcheminement": "GOURNAY LE GUERIN", - "nomCommune": "GOURNAY LE GUERIN" + "codePostal": "48310", + "codeCommune": "48007", + "libelleAcheminement": "ARZENC D APCHER", + "nomCommune": "ARZENC D APCHER" }, { - "codePostal": "38080", - "codeCommune": "38415", - "libelleAcheminement": "ST MARCEL BEL ACCUEIL", - "nomCommune": "ST MARCEL BEL ACCUEIL" + "codePostal": "33410", + "codeCommune": "33098", + "libelleAcheminement": "CARDAN", + "nomCommune": "CARDAN" }, { - "codePostal": "62380", - "codeCommune": "62245", - "libelleAcheminement": "COULOMBY", - "nomCommune": "COULOMBY" + "codePostal": "34400", + "codeCommune": "34146", + "libelleAcheminement": "LUNEL VIEL", + "nomCommune": "LUNEL VIEL" }, { - "codePostal": "10160", - "codeCommune": "10276", - "libelleAcheminement": "PAISY COSDON", - "nomCommune": "PAISY COSDON" + "codePostal": "48230", + "codeCommune": "48055", + "libelleAcheminement": "CULTURES", + "nomCommune": "CULTURES" }, { - "codePostal": "27170", - "codeCommune": "27300", - "libelleAcheminement": "GROSLEY SUR RISLE", - "nomCommune": "GROSLEY SUR RISLE" + "codePostal": "48130", + "codeCommune": "48009", + "libelleAcheminement": "PEYRE EN AUBRAC", + "nomCommune": "PEYRE EN AUBRAC" }, { - "codePostal": "38660", - "codeCommune": "38417", - "libelleAcheminement": "STE MARIE D ALLOIX", - "nomCommune": "STE MARIE D ALLOIX" + "codePostal": "33390", + "codeCommune": "33100", + "libelleAcheminement": "CARS", + "nomCommune": "CARS" }, { - "codePostal": "62121", - "codeCommune": "62248", - "libelleAcheminement": "COURCELLES LE COMTE", - "nomCommune": "COURCELLES LE COMTE" + "codePostal": "34480", + "codeCommune": "34147", + "libelleAcheminement": "MAGALAS", + "nomCommune": "MAGALAS" }, { - "codePostal": "10350", - "codeCommune": "10281", - "libelleAcheminement": "LE PAVILLON STE JULIE", - "nomCommune": "LE PAVILLON STE JULIE" + "codePostal": "48310", + "codeCommune": "48064", + "libelleAcheminement": "FOURNELS", + "nomCommune": "FOURNELS" }, { - "codePostal": "27220", - "codeCommune": "27301", - "libelleAcheminement": "GROSSOEUVRE", - "nomCommune": "GROSSOEUVRE" + "codePostal": "48200", + "codeCommune": "48012", + "libelleAcheminement": "LES MONTS VERTS", + "nomCommune": "LES MONTS VERTS" }, { - "codePostal": "38550", - "codeCommune": "38425", - "libelleAcheminement": "ST MAURICE L EXIL", - "nomCommune": "ST MAURICE L EXIL" + "codePostal": "33390", + "codeCommune": "33101", + "libelleAcheminement": "CARTELEGUE", + "nomCommune": "CARTELEGUE" }, { - "codePostal": "62136", - "codeCommune": "62252", - "libelleAcheminement": "LA COUTURE", - "nomCommune": "LA COUTURE" + "codePostal": "34560", + "codeCommune": "34165", + "libelleAcheminement": "MONTBAZIN", + "nomCommune": "MONTBAZIN" }, { - "codePostal": "10600", - "codeCommune": "10282", - "libelleAcheminement": "PAYNS", - "nomCommune": "PAYNS" + "codePostal": "48150", + "codeCommune": "48069", + "libelleAcheminement": "GATUZIERES", + "nomCommune": "GATUZIERES" }, { - "codePostal": "27370", - "codeCommune": "27302", - "libelleAcheminement": "LE BOSC DU THEIL", - "nomCommune": "LE BOSC DU THEIL" + "codePostal": "48400", + "codeCommune": "48019", + "libelleAcheminement": "BARRE DES CEVENNES", + "nomCommune": "BARRE DES CEVENNES" }, { - "codePostal": "38350", - "codeCommune": "38428", - "libelleAcheminement": "ST MICHEL EN BEAUMONT", - "nomCommune": "ST MICHEL EN BEAUMONT" + "codePostal": "33480", + "codeCommune": "33104", + "libelleAcheminement": "CASTELNAU DE MEDOC", + "nomCommune": "CASTELNAU DE MEDOC" }, { - "codePostal": "62130", - "codeCommune": "62258", - "libelleAcheminement": "CROISETTE", - "nomCommune": "CROISETTE" + "codePostal": "34290", + "codeCommune": "34166", + "libelleAcheminement": "MONTBLANC", + "nomCommune": "MONTBLANC" }, { - "codePostal": "10500", - "codeCommune": "10283", - "libelleAcheminement": "PEL ET DER", - "nomCommune": "PEL ET DER" + "codePostal": "48260", + "codeCommune": "48071", + "libelleAcheminement": "GRANDVALS", + "nomCommune": "GRANDVALS" }, { - "codePostal": "27720", - "codeCommune": "27304", - "libelleAcheminement": "GUERNY", - "nomCommune": "GUERNY" + "codePostal": "48400", + "codeCommune": "48020", + "libelleAcheminement": "BASSURELS", + "nomCommune": "BASSURELS" }, { - "codePostal": "38330", - "codeCommune": "38431", - "libelleAcheminement": "ST NAZAIRE LES EYMES", - "nomCommune": "ST NAZAIRE LES EYMES" + "codePostal": "33210", + "codeCommune": "33106", + "libelleAcheminement": "CASTETS ET CASTILLON", + "nomCommune": "CASTETS ET CASTILLON" }, { - "codePostal": "62000", - "codeCommune": "62263", - "libelleAcheminement": "DAINVILLE", - "nomCommune": "DAINVILLE" + "codePostal": "34080", + "codeCommune": "34172", + "libelleAcheminement": "MONTPELLIER", + "nomCommune": "MONTPELLIER" }, { - "codePostal": "10500", - "codeCommune": "10286", - "libelleAcheminement": "PETIT MESNIL", - "nomCommune": "PETIT MESNIL" + "codePostal": "48320", + "codeCommune": "48075", + "libelleAcheminement": "ISPAGNAC", + "nomCommune": "ISPAGNAC" }, { - "codePostal": "27370", - "codeCommune": "27313", - "libelleAcheminement": "LA HARENGERE", - "nomCommune": "LA HARENGERE" + "codePostal": "48250", + "codeCommune": "48021", + "libelleAcheminement": "LA BASTIDE PUYLAURENT", + "nomCommune": "LA BASTIDE PUYLAURENT" }, { - "codePostal": "38250", - "codeCommune": "38433", - "libelleAcheminement": "ST NIZIER DU MOUCHEROTTE", - "nomCommune": "ST NIZIER DU MOUCHEROTTE" + "codePostal": "33720", + "codeCommune": "33120", + "libelleAcheminement": "CERONS", + "nomCommune": "CERONS" }, { - "codePostal": "62119", - "codeCommune": "62274", - "libelleAcheminement": "DOURGES", - "nomCommune": "DOURGES" + "codePostal": "34320", + "codeCommune": "34184", + "libelleAcheminement": "NIZAS", + "nomCommune": "NIZAS" }, { - "codePostal": "10380", - "codeCommune": "10289", - "libelleAcheminement": "PLANCY L ABBAYE", - "nomCommune": "PLANCY L ABBAYE" + "codePostal": "48300", + "codeCommune": "48080", + "libelleAcheminement": "LANGOGNE", + "nomCommune": "LANGOGNE" }, { - "codePostal": "27120", - "codeCommune": "27326", - "libelleAcheminement": "HECOURT", - "nomCommune": "HECOURT" + "codePostal": "48190", + "codeCommune": "48027", + "libelleAcheminement": "MONT LOZERE ET GOULET", + "nomCommune": "MONT LOZERE ET GOULET" }, { - "codePostal": "38650", - "codeCommune": "38438", - "libelleAcheminement": "ST PAUL LES MONESTIER", - "nomCommune": "ST PAUL LES MONESTIER" + "codePostal": "33610", + "codeCommune": "33122", + "libelleAcheminement": "CESTAS", + "nomCommune": "CESTAS" }, { - "codePostal": "62870", - "codeCommune": "62275", - "libelleAcheminement": "DOURIEZ", - "nomCommune": "DOURIEZ" + "codePostal": "34380", + "codeCommune": "34185", + "libelleAcheminement": "NOTRE DAME DE LONDRES", + "nomCommune": "NOTRE DAME DE LONDRES" }, { - "codePostal": "10400", - "codeCommune": "10291", - "libelleAcheminement": "PLESSIS BARBUISE", - "nomCommune": "PLESSIS BARBUISE" + "codePostal": "48170", + "codeCommune": "48082", + "libelleAcheminement": "LAUBERT", + "nomCommune": "LAUBERT" }, { - "codePostal": "27860", - "codeCommune": "27333", - "libelleAcheminement": "HEUDICOURT", - "nomCommune": "HEUDICOURT" + "codePostal": "48190", + "codeCommune": "48027", + "libelleAcheminement": "MONT LOZERE ET GOULET", + "nomCommune": "MONT LOZERE ET GOULET" }, { - "codePostal": "38570", - "codeCommune": "38439", - "libelleAcheminement": "CRETS EN BELLEDONNE", - "nomCommune": "CRETS EN BELLEDONNE" + "codePostal": "33250", + "codeCommune": "33125", + "libelleAcheminement": "CISSAC MEDOC", + "nomCommune": "CISSAC MEDOC" }, { - "codePostal": "62161", - "codeCommune": "62279", - "libelleAcheminement": "DUISANS", - "nomCommune": "DUISANS" + "codePostal": "34700", + "codeCommune": "34188", + "libelleAcheminement": "OLMET ET VILLECUN", + "nomCommune": "OLMET ET VILLECUN" }, { - "codePostal": "10110", - "codeCommune": "10296", - "libelleAcheminement": "POLISY", - "nomCommune": "POLISY" + "codePostal": "48140", + "codeCommune": "48089", + "libelleAcheminement": "LE MALZIEU FORAIN", + "nomCommune": "LE MALZIEU FORAIN" }, { - "codePostal": "27310", - "codeCommune": "27340", - "libelleAcheminement": "HONGUEMARE GUENOUVILLE", - "nomCommune": "HONGUEMARE GUENOUVILLE" + "codePostal": "48000", + "codeCommune": "48030", + "libelleAcheminement": "BRENOUX", + "nomCommune": "BRENOUX" }, { - "codePostal": "38070", - "codeCommune": "38449", - "libelleAcheminement": "ST QUENTIN FALLAVIER", - "nomCommune": "ST QUENTIN FALLAVIER" + "codePostal": "33580", + "codeCommune": "33139", + "libelleAcheminement": "COUTURES", + "nomCommune": "COUTURES" }, { - "codePostal": "62360", - "codeCommune": "62281", - "libelleAcheminement": "ECHINGHEN", - "nomCommune": "ECHINGHEN" + "codePostal": "34210", + "codeCommune": "34190", + "libelleAcheminement": "OUPIA", + "nomCommune": "OUPIA" }, { - "codePostal": "10700", - "codeCommune": "10299", - "libelleAcheminement": "POUAN LES VALLEES", - "nomCommune": "POUAN LES VALLEES" + "codePostal": "48100", + "codeCommune": "48092", + "libelleAcheminement": "MARVEJOLS", + "nomCommune": "MARVEJOLS" }, { - "codePostal": "27400", - "codeCommune": "27351", - "libelleAcheminement": "INCARVILLE", - "nomCommune": "INCARVILLE" + "codePostal": "48100", + "codeCommune": "48032", + "libelleAcheminement": "LE BUISSON", + "nomCommune": "LE BUISSON" }, { - "codePostal": "38070", - "codeCommune": "38449", - "libelleAcheminement": "ST QUENTIN FALLAVIER", - "nomCommune": "ST QUENTIN FALLAVIER" + "codePostal": "33750", + "codeCommune": "33141", + "libelleAcheminement": "CROIGNON", + "nomCommune": "CROIGNON" }, { - "codePostal": "62190", - "codeCommune": "62286", - "libelleAcheminement": "ECQUEDECQUES", - "nomCommune": "ECQUEDECQUES" + "codePostal": "34230", + "codeCommune": "34194", + "libelleAcheminement": "PAULHAN", + "nomCommune": "PAULHAN" }, { - "codePostal": "10170", - "codeCommune": "10305", - "libelleAcheminement": "PREMIERFAIT", - "nomCommune": "PREMIERFAIT" + "codePostal": "48100", + "codeCommune": "48099", + "libelleAcheminement": "BOURGS SUR COLAGNE", + "nomCommune": "BOURGS SUR COLAGNE" }, { - "codePostal": "27540", - "codeCommune": "27355", - "libelleAcheminement": "IVRY LA BATAILLE", - "nomCommune": "IVRY LA BATAILLE" + "codePostal": "48170", + "codeCommune": "48043", + "libelleAcheminement": "CHATEAUNEUF DE RANDON", + "nomCommune": "CHATEAUNEUF DE RANDON" }, { - "codePostal": "38150", - "codeCommune": "38452", - "libelleAcheminement": "ST ROMAIN DE SURIEU", - "nomCommune": "ST ROMAIN DE SURIEU" + "codePostal": "33430", + "codeCommune": "33144", + "libelleAcheminement": "CUDOS", + "nomCommune": "CUDOS" }, { - "codePostal": "62380", - "codeCommune": "62309", - "libelleAcheminement": "ESQUERDES", - "nomCommune": "ESQUERDES" + "codePostal": "34380", + "codeCommune": "34195", + "libelleAcheminement": "PEGAIROLLES DE BUEGES", + "nomCommune": "PEGAIROLLES DE BUEGES" }, { - "codePostal": "10190", - "codeCommune": "10307", - "libelleAcheminement": "PRUGNY", - "nomCommune": "PRUGNY" + "codePostal": "48300", + "codeCommune": "48105", + "libelleAcheminement": "NAUSSAC FONTANES", + "nomCommune": "NAUSSAC FONTANES" }, { - "codePostal": "27120", - "codeCommune": "27358", - "libelleAcheminement": "JOUY SUR EURE", - "nomCommune": "JOUY SUR EURE" + "codePostal": "48170", + "codeCommune": "48045", + "libelleAcheminement": "CHAUDEYRAC", + "nomCommune": "CHAUDEYRAC" }, { - "codePostal": "38290", - "codeCommune": "38475", - "libelleAcheminement": "SATOLAS ET BONCE", - "nomCommune": "SATOLAS ET BONCE" + "codePostal": "33670", + "codeCommune": "33145", + "libelleAcheminement": "CURSAN", + "nomCommune": "CURSAN" }, { - "codePostal": "62400", - "codeCommune": "62310", - "libelleAcheminement": "ESSARS", - "nomCommune": "ESSARS" + "codePostal": "34600", + "codeCommune": "34200", + "libelleAcheminement": "PEZENES LES MINES", + "nomCommune": "PEZENES LES MINES" }, { - "codePostal": "10430", - "codeCommune": "10325", - "libelleAcheminement": "ROSIERES PRES TROYES", - "nomCommune": "ROSIERES PRES TROYES" + "codePostal": "48800", + "codeCommune": "48117", + "libelleAcheminement": "POURCHARESSES", + "nomCommune": "POURCHARESSES" }, { - "codePostal": "27220", - "codeCommune": "27368", - "libelleAcheminement": "LIGNEROLLES", - "nomCommune": "LIGNEROLLES" + "codePostal": "48310", + "codeCommune": "48058", + "libelleAcheminement": "LA FAGE MONTIVERNOUX", + "nomCommune": "LA FAGE MONTIVERNOUX" }, { - "codePostal": "38260", - "codeCommune": "38479", - "libelleAcheminement": "PORTE DES BONNEVAUX", - "nomCommune": "PORTE DES BONNEVAUX" + "codePostal": "33420", + "codeCommune": "33148", + "libelleAcheminement": "DARDENAC", + "nomCommune": "DARDENAC" }, { - "codePostal": "62161", - "codeCommune": "62320", - "libelleAcheminement": "ETRUN", - "nomCommune": "ETRUN" + "codePostal": "34850", + "codeCommune": "34203", + "libelleAcheminement": "PINET", + "nomCommune": "PINET" }, { - "codePostal": "10160", - "codeCommune": "10335", - "libelleAcheminement": "ST BENOIST SUR VANNE", - "nomCommune": "ST BENOIST SUR VANNE" + "codePostal": "48200", + "codeCommune": "48121", + "libelleAcheminement": "PRUNIERES", + "nomCommune": "PRUNIERES" }, { - "codePostal": "27150", - "codeCommune": "27372", - "libelleAcheminement": "LONGCHAMPS", - "nomCommune": "LONGCHAMPS" + "codePostal": "48400", + "codeCommune": "48061", + "libelleAcheminement": "FLORAC TROIS RIVIERES", + "nomCommune": "FLORAC TROIS RIVIERES" }, { - "codePostal": "38780", - "codeCommune": "38480", - "libelleAcheminement": "SEPTEME", - "nomCommune": "SEPTEME" + "codePostal": "33220", + "codeCommune": "33160", + "libelleAcheminement": "EYNESSE", + "nomCommune": "EYNESSE" }, { - "codePostal": "62580", - "codeCommune": "62324", - "libelleAcheminement": "FARBUS", - "nomCommune": "FARBUS" + "codePostal": "34230", + "codeCommune": "34204", + "libelleAcheminement": "PLAISSAN", + "nomCommune": "PLAISSAN" }, { - "codePostal": "10700", - "codeCommune": "10338", - "libelleAcheminement": "ST ETIENNE SOUS BARBUISE", - "nomCommune": "ST ETIENNE SOUS BARBUISE" + "codePostal": "48100", + "codeCommune": "48126", + "libelleAcheminement": "LACHAMP RIBENNES", + "nomCommune": "LACHAMP RIBENNES" }, { - "codePostal": "27190", - "codeCommune": "27374", - "libelleAcheminement": "LOUVERSEY", - "nomCommune": "LOUVERSEY" + "codePostal": "48400", + "codeCommune": "48061", + "libelleAcheminement": "FLORAC TROIS RIVIERES", + "nomCommune": "FLORAC TROIS RIVIERES" }, { - "codePostal": "38300", - "codeCommune": "38481", - "libelleAcheminement": "SEREZIN DE LA TOUR", - "nomCommune": "SEREZIN DE LA TOUR" + "codePostal": "33190", + "codeCommune": "33169", + "libelleAcheminement": "FLOUDES", + "nomCommune": "FLOUDES" }, { - "codePostal": "62450", - "codeCommune": "62326", - "libelleAcheminement": "FAVREUIL", - "nomCommune": "FAVREUIL" + "codePostal": "34310", + "codeCommune": "34226", + "libelleAcheminement": "QUARANTE", + "nomCommune": "QUARANTE" }, { - "codePostal": "10100", - "codeCommune": "10341", - "libelleAcheminement": "ST HILAIRE SOUS ROMILLY", - "nomCommune": "ST HILAIRE SOUS ROMILLY" + "codePostal": "48110", + "codeCommune": "48144", + "libelleAcheminement": "STE CROIX VALLEE FRANCAISE", + "nomCommune": "STE CROIX VALLEE FRANCAISE" }, { - "codePostal": "27480", - "codeCommune": "27377", - "libelleAcheminement": "LYONS LA FORET", - "nomCommune": "LYONS LA FORET" + "codePostal": "48400", + "codeCommune": "48065", + "libelleAcheminement": "FRAISSINET DE FOURQUES", + "nomCommune": "FRAISSINET DE FOURQUES" }, { - "codePostal": "38170", - "codeCommune": "38485", - "libelleAcheminement": "SEYSSINET PARISET", - "nomCommune": "SEYSSINET PARISET" + "codePostal": "33760", + "codeCommune": "33175", + "libelleAcheminement": "FRONTENAC", + "nomCommune": "FRONTENAC" }, { - "codePostal": "62960", - "codeCommune": "62327", - "libelleAcheminement": "FEBVIN PALFART", - "nomCommune": "FEBVIN PALFART" + "codePostal": "34650", + "codeCommune": "34231", + "libelleAcheminement": "ROMIGUIERES", + "nomCommune": "ROMIGUIERES" }, { - "codePostal": "10350", - "codeCommune": "10348", - "libelleAcheminement": "ST LUPIEN", - "nomCommune": "ST LUPIEN" + "codePostal": "48210", + "codeCommune": "48146", + "libelleAcheminement": "GORGES DU TARN CAUSSES", + "nomCommune": "GORGES DU TARN CAUSSES" }, { - "codePostal": "27300", - "codeCommune": "27381", - "libelleAcheminement": "MALOUY", - "nomCommune": "MALOUY" + "codePostal": "48000", + "codeCommune": "48081", + "libelleAcheminement": "LANUEJOLS", + "nomCommune": "LANUEJOLS" }, { - "codePostal": "38180", - "codeCommune": "38486", - "libelleAcheminement": "SEYSSINS", - "nomCommune": "SEYSSINS" + "codePostal": "33410", + "codeCommune": "33176", + "libelleAcheminement": "GABARNAC", + "nomCommune": "GABARNAC" }, { - "codePostal": "62250", - "codeCommune": "62329", - "libelleAcheminement": "FERQUES", - "nomCommune": "FERQUES" + "codePostal": "34320", + "codeCommune": "34234", + "libelleAcheminement": "ROQUESSELS", + "nomCommune": "ROQUESSELS" }, { - "codePostal": "10180", - "codeCommune": "10349", - "libelleAcheminement": "ST LYE", - "nomCommune": "ST LYE" + "codePostal": "48310", + "codeCommune": "48161", + "libelleAcheminement": "ST JUERY", + "nomCommune": "ST JUERY" }, { - "codePostal": "27460", - "codeCommune": "27386", - "libelleAcheminement": "LE MANOIR", - "nomCommune": "LE MANOIR" + "codePostal": "48500", + "codeCommune": "48094", + "libelleAcheminement": "MASSEGROS CAUSSES GORGES", + "nomCommune": "MASSEGROS CAUSSES GORGES" }, { - "codePostal": "38660", - "codeCommune": "38503", - "libelleAcheminement": "LA TERRASSE", - "nomCommune": "LA TERRASSE" + "codePostal": "33133", + "codeCommune": "33179", + "libelleAcheminement": "GALGON", + "nomCommune": "GALGON" }, { - "codePostal": "62173", - "codeCommune": "62332", - "libelleAcheminement": "FICHEUX", - "nomCommune": "FICHEUX" + "codePostal": "34380", + "codeCommune": "34236", + "libelleAcheminement": "LE ROUET", + "nomCommune": "ROUET" }, { - "codePostal": "10130", - "codeCommune": "10359", - "libelleAcheminement": "ST PHAL", - "nomCommune": "ST PHAL" + "codePostal": "48160", + "codeCommune": "48163", + "libelleAcheminement": "ST JULIEN DES POINTS", + "nomCommune": "ST JULIEN DES POINTS" }, { - "codePostal": "27110", - "codeCommune": "27389", - "libelleAcheminement": "MARBEUF", - "nomCommune": "MARBEUF" + "codePostal": "48110", + "codeCommune": "48098", + "libelleAcheminement": "MOLEZON", + "nomCommune": "MOLEZON" }, { - "codePostal": "38570", - "codeCommune": "38504", - "libelleAcheminement": "THEYS", - "nomCommune": "THEYS" + "codePostal": "33350", + "codeCommune": "33181", + "libelleAcheminement": "GARDEGAN ET TOURTIRAC", + "nomCommune": "GARDEGAN ET TOURTIRAC" }, { - "codePostal": "62134", - "codeCommune": "62333", - "libelleAcheminement": "FIEFS", - "nomCommune": "FIEFS" + "codePostal": "34725", + "codeCommune": "34239", + "libelleAcheminement": "ST ANDRE DE SANGONIS", + "nomCommune": "ST ANDRE DE SANGONIS" }, { - "codePostal": "10120", - "codeCommune": "10360", - "libelleAcheminement": "ST POUANGE", - "nomCommune": "ST POUANGE" + "codePostal": "48600", + "codeCommune": "48174", + "libelleAcheminement": "ST PAUL LE FROID", + "nomCommune": "ST PAUL LE FROID" }, { - "codePostal": "27300", - "codeCommune": "27398", - "libelleAcheminement": "MENNEVAL", - "nomCommune": "MENNEVAL" + "codePostal": "48100", + "codeCommune": "48107", + "libelleAcheminement": "PALHERS", + "nomCommune": "PALHERS" }, { - "codePostal": "38260", - "codeCommune": "38505", - "libelleAcheminement": "THODURE", - "nomCommune": "THODURE" + "codePostal": "33710", + "codeCommune": "33182", + "libelleAcheminement": "GAURIAC", + "nomCommune": "GAURIAC" }, { - "codePostal": "62960", - "codeCommune": "62336", - "libelleAcheminement": "FLECHIN", - "nomCommune": "FLECHIN" + "codePostal": "34610", + "codeCommune": "34257", + "libelleAcheminement": "ST GENIES DE VARENSAL", + "nomCommune": "ST GENIES DE VARENSAL" }, { - "codePostal": "10360", - "codeCommune": "10364", - "libelleAcheminement": "ST USAGE", - "nomCommune": "ST USAGE" + "codePostal": "48340", + "codeCommune": "48175", + "libelleAcheminement": "ST PIERRE DE NOGARET", + "nomCommune": "ST PIERRE DE NOGARET" }, { - "codePostal": "27440", - "codeCommune": "27407", - "libelleAcheminement": "MESNIL VERCLIVES", - "nomCommune": "MESNIL VERCLIVES" + "codePostal": "48600", + "codeCommune": "48108", + "libelleAcheminement": "LA PANOUSE", + "nomCommune": "LA PANOUSE" }, { - "codePostal": "38650", - "codeCommune": "38513", - "libelleAcheminement": "TREFFORT", - "nomCommune": "TREFFORT" + "codePostal": "33660", + "codeCommune": "33191", + "libelleAcheminement": "GOURS", + "nomCommune": "GOURS" }, { - "codePostal": "62134", - "codeCommune": "62339", - "libelleAcheminement": "FLEURY", - "nomCommune": "FLEURY" + "codePostal": "34680", + "codeCommune": "34259", + "libelleAcheminement": "ST GEORGES D ORQUES", + "nomCommune": "ST GEORGES D ORQUES" }, { - "codePostal": "10400", - "codeCommune": "10370", - "libelleAcheminement": "SOLIGNY LES ETANGS", - "nomCommune": "SOLIGNY LES ETANGS" + "codePostal": "48100", + "codeCommune": "48187", + "libelleAcheminement": "LES SALCES", + "nomCommune": "LES SALCES" }, { - "codePostal": "27510", - "codeCommune": "27408", - "libelleAcheminement": "MEZIERES EN VEXIN", - "nomCommune": "MEZIERES EN VEXIN" + "codePostal": "48000", + "codeCommune": "48111", + "libelleAcheminement": "PELOUSE", + "nomCommune": "PELOUSE" }, { - "codePostal": "38210", - "codeCommune": "38517", - "libelleAcheminement": "TULLINS", - "nomCommune": "TULLINS" + "codePostal": "33170", + "codeCommune": "33192", + "libelleAcheminement": "GRADIGNAN", + "nomCommune": "GRADIGNAN" }, { - "codePostal": "62134", - "codeCommune": "62342", - "libelleAcheminement": "FONTAINE LES BOULANS", - "nomCommune": "FONTAINE LES BOULANS" + "codePostal": "34430", + "codeCommune": "34270", + "libelleAcheminement": "ST JEAN DE VEDAS", + "nomCommune": "ST JEAN DE VEDAS" }, { - "codePostal": "10140", - "codeCommune": "10376", - "libelleAcheminement": "THIEFFRAIN", - "nomCommune": "THIEFFRAIN" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "27800", - "codeCommune": "27418", - "libelleAcheminement": "MORSAN", - "nomCommune": "MORSAN" + "codePostal": "48220", + "codeCommune": "48116", + "libelleAcheminement": "PONT DE MONTVERT SUD MONT LOZERE", + "nomCommune": "PONT DE MONTVERT SUD MONT LOZERE" }, { - "codePostal": "38730", - "codeCommune": "38520", - "libelleAcheminement": "VALENCOGNE", - "nomCommune": "VALENCOGNE" + "codePostal": "33125", + "codeCommune": "33202", + "libelleAcheminement": "HOSTENS", + "nomCommune": "HOSTENS" }, { - "codePostal": "62150", - "codeCommune": "62356", - "libelleAcheminement": "FRESNICOURT LE DOLMEN", - "nomCommune": "FRESNICOURT LE DOLMEN" + "codePostal": "34270", + "codeCommune": "34276", + "libelleAcheminement": "ST MATHIEU DE TREVIERS", + "nomCommune": "ST MATHIEU DE TREVIERS" }, { - "codePostal": "10700", - "codeCommune": "10386", - "libelleAcheminement": "TROUANS", - "nomCommune": "TROUANS" + "codePostal": "49250", + "codeCommune": "49021", + "libelleAcheminement": "BEAUFORT EN ANJOU", + "nomCommune": "BEAUFORT EN ANJOU" }, { - "codePostal": "27430", - "codeCommune": "27422", - "libelleAcheminement": "MUIDS", - "nomCommune": "MUIDS" + "codePostal": "48400", + "codeCommune": "48130", + "libelleAcheminement": "ROUSSES", + "nomCommune": "ROUSSES" }, { - "codePostal": "38470", - "codeCommune": "38523", - "libelleAcheminement": "VARACIEUX", - "nomCommune": "VARACIEUX" + "codePostal": "33990", + "codeCommune": "33203", + "libelleAcheminement": "HOURTIN", + "nomCommune": "HOURTIN" }, { - "codePostal": "62770", - "codeCommune": "62365", - "libelleAcheminement": "GALAMETZ", - "nomCommune": "GALAMETZ" + "codePostal": "34490", + "codeCommune": "34279", + "libelleAcheminement": "ST NAZAIRE DE LADAREZ", + "nomCommune": "ST NAZAIRE DE LADAREZ" }, { - "codePostal": "10170", - "codeCommune": "10392", - "libelleAcheminement": "VALLANT ST GEORGES", - "nomCommune": "VALLANT ST GEORGES" + "codePostal": "49750", + "codeCommune": "49022", + "libelleAcheminement": "BEAULIEU SUR LAYON", + "nomCommune": "BEAULIEU SUR LAYON" }, { - "codePostal": "27170", - "codeCommune": "27425", - "libelleAcheminement": "NASSANDRES SUR RISLE", - "nomCommune": "NASSANDRES SUR RISLE" + "codePostal": "48800", + "codeCommune": "48135", + "libelleAcheminement": "ST ANDRE CAPCEZE", + "nomCommune": "ST ANDRE CAPCEZE" }, { - "codePostal": "38890", - "codeCommune": "38525", - "libelleAcheminement": "VASSELIN", - "nomCommune": "VASSELIN" + "codePostal": "33590", + "codeCommune": "33208", + "libelleAcheminement": "JAU DIGNAC ET LOIRAC", + "nomCommune": "JAU DIGNAC ET LOIRAC" }, { - "codePostal": "62150", - "codeCommune": "62366", - "libelleAcheminement": "GAUCHIN LEGAL", - "nomCommune": "GAUCHIN LEGAL" + "codePostal": "34700", + "codeCommune": "34286", + "libelleAcheminement": "ST PRIVAT", + "nomCommune": "ST PRIVAT" }, { - "codePostal": "10260", - "codeCommune": "10399", - "libelleAcheminement": "VAUDES", - "nomCommune": "VAUDES" + "codePostal": "49600", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "27300", - "codeCommune": "27425", - "libelleAcheminement": "NASSANDRES SUR RISLE", - "nomCommune": "NASSANDRES SUR RISLE" + "codePostal": "48600", + "codeCommune": "48139", + "libelleAcheminement": "ST BONNET LAVAL", + "nomCommune": "ST BONNET LAVAL" }, { - "codePostal": "38620", - "codeCommune": "38531", - "libelleAcheminement": "VELANNE", - "nomCommune": "VELANNE" + "codePostal": "33460", + "codeCommune": "33211", + "libelleAcheminement": "LABARDE", + "nomCommune": "LABARDE" }, { - "codePostal": "62130", - "codeCommune": "62367", - "libelleAcheminement": "GAUCHIN VERLOINGT", - "nomCommune": "GAUCHIN VERLOINGT" + "codePostal": "34570", + "codeCommune": "34295", + "libelleAcheminement": "SAUSSAN", + "nomCommune": "SAUSSAN" }, { - "codePostal": "10390", - "codeCommune": "10406", - "libelleAcheminement": "VERRIERES", - "nomCommune": "VERRIERES" + "codePostal": "49600", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "27550", - "codeCommune": "27425", - "libelleAcheminement": "NASSANDRES SUR RISLE", - "nomCommune": "NASSANDRES SUR RISLE" + "codePostal": "48300", + "codeCommune": "48150", + "libelleAcheminement": "ST FLOUR DE MERCOIRE", + "nomCommune": "ST FLOUR DE MERCOIRE" }, { - "codePostal": "38460", - "codeCommune": "38532", - "libelleAcheminement": "VENERIEU", - "nomCommune": "VENERIEU" + "codePostal": "33760", + "codeCommune": "33215", + "libelleAcheminement": "LADAUX", + "nomCommune": "LADAUX" }, { - "codePostal": "62810", - "codeCommune": "62372", - "libelleAcheminement": "GIVENCHY LE NOBLE", - "nomCommune": "GIVENCHY LE NOBLE" + "codePostal": "34290", + "codeCommune": "34300", + "libelleAcheminement": "SERVIAN", + "nomCommune": "SERVIAN" }, { - "codePostal": "10410", - "codeCommune": "10412", - "libelleAcheminement": "VILLECHETIF", - "nomCommune": "VILLECHETIF" + "codePostal": "49370", + "codeCommune": "49026", + "libelleAcheminement": "BECON LES GRANITS", + "nomCommune": "BECON LES GRANITS" }, { - "codePostal": "27830", - "codeCommune": "27426", - "libelleAcheminement": "NEAUFLES ST MARTIN", - "nomCommune": "NEAUFLES ST MARTIN" + "codePostal": "48150", + "codeCommune": "48176", + "libelleAcheminement": "ST PIERRE DES TRIPIERS", + "nomCommune": "ST PIERRE DES TRIPIERS" }, { - "codePostal": "38113", - "codeCommune": "38540", - "libelleAcheminement": "VEUREY VOROIZE", - "nomCommune": "VEUREY VOROIZE" + "codePostal": "33124", + "codeCommune": "33216", + "libelleAcheminement": "LADOS", + "nomCommune": "LADOS" }, { - "codePostal": "62920", - "codeCommune": "62376", - "libelleAcheminement": "GONNEHEM", - "nomCommune": "GONNEHEM" + "codePostal": "34700", + "codeCommune": "34306", + "libelleAcheminement": "SOUMONT", + "nomCommune": "SOUMONT" }, { - "codePostal": "10700", - "codeCommune": "10429", - "libelleAcheminement": "VILLETTE SUR AUBE", - "nomCommune": "VILLETTE SUR AUBE" + "codePostal": "49080", + "codeCommune": "49035", + "libelleAcheminement": "BOUCHEMAINE", + "nomCommune": "BOUCHEMAINE" }, { - "codePostal": "27250", - "codeCommune": "27427", - "libelleAcheminement": "NEAUFLES AUVERGNY", - "nomCommune": "NEAUFLES AUVERGNY" + "codePostal": "48140", + "codeCommune": "48179", + "libelleAcheminement": "ST PRIVAT DU FAU", + "nomCommune": "ST PRIVAT DU FAU" }, { - "codePostal": "38510", - "codeCommune": "38543", - "libelleAcheminement": "VEZERONCE CURTIN", - "nomCommune": "VEZERONCE CURTIN" + "codePostal": "33240", + "codeCommune": "33219", + "libelleAcheminement": "LA LANDE DE FRONSAC", + "nomCommune": "LA LANDE DE FRONSAC" }, { - "codePostal": "62530", - "codeCommune": "62380", - "libelleAcheminement": "GOUY SERVINS", - "nomCommune": "GOUY SERVINS" + "codePostal": "34160", + "codeCommune": "34307", + "libelleAcheminement": "SUSSARGUES", + "nomCommune": "SUSSARGUES" }, { - "codePostal": "10210", - "codeCommune": "10432", - "libelleAcheminement": "VILLIERS SOUS PRASLIN", - "nomCommune": "VILLIERS SOUS PRASLIN" + "codePostal": "49520", + "codeCommune": "49036", + "libelleAcheminement": "BOUILLE MENARD", + "nomCommune": "BOUILLE MENARD" }, { - "codePostal": "27250", - "codeCommune": "27427", - "libelleAcheminement": "NEAUFLES AUVERGNY", - "nomCommune": "NEAUFLES AUVERGNY" + "codePostal": "48230", + "codeCommune": "48185", + "libelleAcheminement": "LES SALELLES", + "nomCommune": "LES SALELLES" }, { - "codePostal": "38510", - "codeCommune": "38543", - "libelleAcheminement": "VEZERONCE CURTIN", - "nomCommune": "VEZERONCE CURTIN" + "codePostal": "33460", + "codeCommune": "33220", + "libelleAcheminement": "LAMARQUE", + "nomCommune": "LAMARQUE" }, { - "codePostal": "62450", - "codeCommune": "62387", - "libelleAcheminement": "GREVILLERS", - "nomCommune": "GREVILLERS" + "codePostal": "34120", + "codeCommune": "34311", + "libelleAcheminement": "TOURBES", + "nomCommune": "TOURBES" }, { - "codePostal": "10800", - "codeCommune": "10435", - "libelleAcheminement": "VILLY LE MARECHAL", - "nomCommune": "VILLY LE MARECHAL" + "codePostal": "49520", + "codeCommune": "49038", + "libelleAcheminement": "BOURG L EVEQUE", + "nomCommune": "BOURG L EVEQUE" }, { - "codePostal": "27890", - "codeCommune": "27432", - "libelleAcheminement": "LA NEUVILLE DU BOSC", - "nomCommune": "LA NEUVILLE DU BOSC" + "codePostal": "48400", + "codeCommune": "48193", + "libelleAcheminement": "VEBRON", + "nomCommune": "VEBRON" }, { - "codePostal": "38190", - "codeCommune": "38547", - "libelleAcheminement": "VILLARD BONNOT", - "nomCommune": "VILLARD BONNOT" + "codePostal": "33620", + "codeCommune": "33233", + "libelleAcheminement": "LARUSCADE", + "nomCommune": "LARUSCADE" }, { - "codePostal": "62760", - "codeCommune": "62389", - "libelleAcheminement": "GRINCOURT LES PAS", - "nomCommune": "GRINCOURT LES PAS" + "codePostal": "34270", + "codeCommune": "34314", + "libelleAcheminement": "LE TRIADOU", + "nomCommune": "LE TRIADOU" }, { - "codePostal": "11120", - "codeCommune": "11012", - "libelleAcheminement": "ARGELIERS", - "nomCommune": "ARGELIERS" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "27560", - "codeCommune": "27434", - "libelleAcheminement": "NOARDS", - "nomCommune": "NOARDS" + "codePostal": "48220", + "codeCommune": "48194", + "libelleAcheminement": "VIALAS", + "nomCommune": "VIALAS" }, { - "codePostal": "38520", - "codeCommune": "38551", - "libelleAcheminement": "VILLARD REYMOND", - "nomCommune": "VILLARD REYMOND" + "codePostal": "33550", + "codeCommune": "33241", + "libelleAcheminement": "LESTIAC SUR GARONNE", + "nomCommune": "LESTIAC SUR GARONNE" }, { - "codePostal": "62128", - "codeCommune": "62392", - "libelleAcheminement": "GUEMAPPE", - "nomCommune": "GUEMAPPE" + "codePostal": "34130", + "codeCommune": "34321", + "libelleAcheminement": "VALERGUES", + "nomCommune": "VALERGUES" }, { - "codePostal": "11220", - "codeCommune": "11016", - "libelleAcheminement": "ARQUETTES EN VAL", - "nomCommune": "ARQUETTES EN VAL" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "27190", - "codeCommune": "27446", - "libelleAcheminement": "ORMES", - "nomCommune": "ORMES" + "codePostal": "49700", + "codeCommune": "49003", + "libelleAcheminement": "TUFFALUN", + "nomCommune": "TUFFALUN" }, { - "codePostal": "38280", - "codeCommune": "38557", - "libelleAcheminement": "VILLETTE D ANTHON", - "nomCommune": "VILLETTE D ANTHON" + "codePostal": "33370", + "codeCommune": "33252", + "libelleAcheminement": "LOUPES", + "nomCommune": "LOUPES" }, { - "codePostal": "62138", - "codeCommune": "62401", - "libelleAcheminement": "HAISNES", - "nomCommune": "HAISNES" + "codePostal": "34350", + "codeCommune": "34329", + "libelleAcheminement": "VENDRES", + "nomCommune": "VENDRES" }, { - "codePostal": "11140", - "codeCommune": "11019", - "libelleAcheminement": "AUNAT", - "nomCommune": "AUNAT" + "codePostal": "49400", + "codeCommune": "49060", + "libelleAcheminement": "BELLEVIGNE LES CHATEAUX", + "nomCommune": "BELLEVIGNE LES CHATEAUX" }, { - "codePostal": "27190", - "codeCommune": "27447", - "libelleAcheminement": "LE VAL DORE", - "nomCommune": "LE VAL DORE" + "codePostal": "49100", + "codeCommune": "49007", + "libelleAcheminement": "ANGERS", + "nomCommune": "ANGERS" }, { - "codePostal": "38340", - "codeCommune": "38565", - "libelleAcheminement": "VOREPPE", - "nomCommune": "VOREPPE" + "codePostal": "33240", + "codeCommune": "33259", + "libelleAcheminement": "LUGON ET L ILE DU CARNAY", + "nomCommune": "LUGON ET L ILE DU CARNAY" }, { - "codePostal": "62190", - "codeCommune": "62407", - "libelleAcheminement": "HAM EN ARTOIS", - "nomCommune": "HAM EN ARTOIS" + "codePostal": "34380", + "codeCommune": "34342", + "libelleAcheminement": "VIOLS EN LAVAL", + "nomCommune": "VIOLS EN LAVAL" }, { - "codePostal": "11340", - "codeCommune": "11028", - "libelleAcheminement": "BELCAIRE", - "nomCommune": "BELCAIRE" + "codePostal": "49340", + "codeCommune": "49070", + "libelleAcheminement": "CHANTELOUP LES BOIS", + "nomCommune": "CHANTELOUP LES BOIS" }, { - "codePostal": "27190", - "codeCommune": "27447", - "libelleAcheminement": "LE VAL DORE", - "nomCommune": "LE VAL DORE" + "codePostal": "49420", + "codeCommune": "49010", + "libelleAcheminement": "ARMAILLE", + "nomCommune": "ARMAILLE" }, { - "codePostal": "39500", - "codeCommune": "39001", - "libelleAcheminement": "ABERGEMENT LA RONCE", - "nomCommune": "ABERGEMENT LA RONCE" + "codePostal": "33830", + "codeCommune": "33260", + "libelleAcheminement": "LUGOS", + "nomCommune": "LUGOS" }, { - "codePostal": "62111", - "codeCommune": "62409", - "libelleAcheminement": "HANNESCAMPS", - "nomCommune": "HANNESCAMPS" + "codePostal": "34280", + "codeCommune": "34344", + "libelleAcheminement": "LA GRANDE MOTTE", + "nomCommune": "LA GRANDE MOTTE" }, { - "codePostal": "11410", - "codeCommune": "11030", - "libelleAcheminement": "BELFLOU", - "nomCommune": "BELFLOU" + "codePostal": "49330", + "codeCommune": "49080", + "libelleAcheminement": "LES HAUTS D ANJOU", + "nomCommune": "LES HAUTS D ANJOU" }, { - "codePostal": "27230", - "codeCommune": "27459", - "libelleAcheminement": "LES PLACES", - "nomCommune": "LES PLACES" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "39600", - "codeCommune": "39002", - "libelleAcheminement": "ABERGEMENT LE GRAND", - "nomCommune": "ABERGEMENT LE GRAND" + "codePostal": "33460", + "codeCommune": "33268", + "libelleAcheminement": "MARGAUX CANTENAC", + "nomCommune": "MARGAUX CANTENAC" }, { - "codePostal": "62124", - "codeCommune": "62410", - "libelleAcheminement": "HAPLINCOURT", - "nomCommune": "HAPLINCOURT" + "codePostal": "35250", + "codeCommune": "35007", + "libelleAcheminement": "AUBIGNE", + "nomCommune": "AUBIGNE" }, { - "codePostal": "11140", - "codeCommune": "11031", - "libelleAcheminement": "BELFORT SUR REBENTY", - "nomCommune": "BELFORT SUR REBENTY" + "codePostal": "49330", + "codeCommune": "49080", + "libelleAcheminement": "LES HAUTS D ANJOU", + "nomCommune": "LES HAUTS D ANJOU" }, { - "codePostal": "27180", - "codeCommune": "27464", - "libelleAcheminement": "LE PLESSIS GROHAN", - "nomCommune": "LE PLESSIS GROHAN" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "39700", - "codeCommune": "39008", - "libelleAcheminement": "AMANGE", - "nomCommune": "AMANGE" + "codePostal": "33220", + "codeCommune": "33269", + "libelleAcheminement": "MARGUERON", + "nomCommune": "MARGUERON" }, { - "codePostal": "62156", - "codeCommune": "62414", - "libelleAcheminement": "HAUCOURT", - "nomCommune": "HAUCOURT" + "codePostal": "35137", + "codeCommune": "35023", + "libelleAcheminement": "BEDEE", + "nomCommune": "BEDEE" }, { - "codePostal": "11240", - "codeCommune": "11032", - "libelleAcheminement": "BELLEGARDE DU RAZES", - "nomCommune": "BELLEGARDE DU RAZES" + "codePostal": "49380", + "codeCommune": "49086", + "libelleAcheminement": "TERRANJOU", + "nomCommune": "TERRANJOU" }, { - "codePostal": "27100", - "codeCommune": "27471", - "libelleAcheminement": "PORTE DE SEINE", - "nomCommune": "PORTE DE SEINE" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "39240", - "codeCommune": "39016", - "libelleAcheminement": "ARINTHOD", - "nomCommune": "ARINTHOD" + "codePostal": "33430", + "codeCommune": "33270", + "libelleAcheminement": "MARIMBAULT", + "nomCommune": "MARIMBAULT" }, { - "codePostal": "62142", - "codeCommune": "62429", - "libelleAcheminement": "HENNEVEUX", - "nomCommune": "HENNEVEUX" + "codePostal": "35150", + "codeCommune": "35028", + "libelleAcheminement": "BOISTRUDAN", + "nomCommune": "BOISTRUDAN" }, { - "codePostal": "11340", - "codeCommune": "11036", - "libelleAcheminement": "BELVIS", - "nomCommune": "BELVIS" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "27220", - "codeCommune": "27478", - "libelleAcheminement": "PREY", - "nomCommune": "PREY" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "39270", - "codeCommune": "39021", - "libelleAcheminement": "LA CHAILLEUSE", - "nomCommune": "LA CHAILLEUSE" + "codePostal": "33650", + "codeCommune": "33274", + "libelleAcheminement": "MARTILLAC", + "nomCommune": "MARTILLAC" }, { - "codePostal": "62130", - "codeCommune": "62436", - "libelleAcheminement": "HERLIN LE SEC", - "nomCommune": "HERLIN LE SEC" + "codePostal": "35340", + "codeCommune": "35031", + "libelleAcheminement": "LA BOUEXIERE", + "nomCommune": "LA BOUEXIERE" }, { - "codePostal": "11000", - "codeCommune": "11037", - "libelleAcheminement": "BERRIAC", - "nomCommune": "BERRIAC" + "codePostal": "49140", + "codeCommune": "49110", + "libelleAcheminement": "CORZE", + "nomCommune": "CORZE" }, { - "codePostal": "27130", - "codeCommune": "27481", - "libelleAcheminement": "PULLAY", - "nomCommune": "PULLAY" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "39270", - "codeCommune": "39021", - "libelleAcheminement": "LA CHAILLEUSE", - "nomCommune": "LA CHAILLEUSE" + "codePostal": "33540", + "codeCommune": "33278", + "libelleAcheminement": "MAURIAC", + "nomCommune": "MAURIAC" }, { - "codePostal": "62150", - "codeCommune": "62441", - "libelleAcheminement": "HERMIN", - "nomCommune": "HERMIN" + "codePostal": "35330", + "codeCommune": "35035", + "libelleAcheminement": "BOVEL", + "nomCommune": "BOVEL" }, { - "codePostal": "11200", - "codeCommune": "11040", - "libelleAcheminement": "BIZANET", - "nomCommune": "BIZANET" + "codePostal": "49260", + "codeCommune": "49112", + "libelleAcheminement": "LE COUDRAY MACOUARD", + "nomCommune": "LE COUDRAY MACOUARD" }, { - "codePostal": "27370", - "codeCommune": "27482", - "libelleAcheminement": "LA PYLE", - "nomCommune": "LA PYLE" + "codePostal": "49110", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "39570", - "codeCommune": "39021", - "libelleAcheminement": "LA CHAILLEUSE", - "nomCommune": "LA CHAILLEUSE" + "codePostal": "33570", + "codeCommune": "33290", + "libelleAcheminement": "MONTAGNE", + "nomCommune": "MONTAGNE" }, { - "codePostal": "62196", - "codeCommune": "62445", - "libelleAcheminement": "HESDIGNEUL LES BETHUNE", - "nomCommune": "HESDIGNEUL LES BETHUNE" + "codePostal": "35370", + "codeCommune": "35042", + "libelleAcheminement": "BRIELLES", + "nomCommune": "BRIELLES" }, { - "codePostal": "11800", - "codeCommune": "11043", - "libelleAcheminement": "BOUILHONNAC", - "nomCommune": "BOUILHONNAC" + "codePostal": "49700", + "codeCommune": "49125", + "libelleAcheminement": "DOUE EN ANJOU", + "nomCommune": "DOUE EN ANJOU" }, { - "codePostal": "27610", - "codeCommune": "27493", - "libelleAcheminement": "ROMILLY SUR ANDELLE", - "nomCommune": "ROMILLY SUR ANDELLE" + "codePostal": "49450", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "39120", - "codeCommune": "39022", - "libelleAcheminement": "ASNANS BEAUVOISIN", - "nomCommune": "ASNANS BEAUVOISIN" + "codePostal": "33350", + "codeCommune": "33296", + "libelleAcheminement": "MOULIETS ET VILLEMARTIN", + "nomCommune": "MOULIETS ET VILLEMARTIN" }, { - "codePostal": "62360", - "codeCommune": "62446", - "libelleAcheminement": "HESDIGNEUL LES BOULOGNE", - "nomCommune": "HESDIGNEUL LES BOULOGNE" + "codePostal": "35260", + "codeCommune": "35049", + "libelleAcheminement": "CANCALE", + "nomCommune": "CANCALE" }, { - "codePostal": "11140", - "codeCommune": "11047", - "libelleAcheminement": "LE BOUSQUET", - "nomCommune": "LE BOUSQUET" + "codePostal": "49700", + "codeCommune": "49125", + "libelleAcheminement": "DOUE EN ANJOU", + "nomCommune": "DOUE EN ANJOU" }, { - "codePostal": "27700", - "codeCommune": "27495", - "libelleAcheminement": "LA ROQUETTE", - "nomCommune": "LA ROQUETTE" + "codePostal": "49510", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "39120", - "codeCommune": "39022", - "libelleAcheminement": "ASNANS BEAUVOISIN", - "nomCommune": "ASNANS BEAUVOISIN" + "codePostal": "33480", + "codeCommune": "33297", + "libelleAcheminement": "MOULIS EN MEDOC", + "nomCommune": "MOULIS EN MEDOC" }, { - "codePostal": "62630", - "codeCommune": "62460", - "libelleAcheminement": "HUBERSENT", - "nomCommune": "HUBERSENT" + "codePostal": "35150", + "codeCommune": "35054", + "libelleAcheminement": "CHANTELOUP", + "nomCommune": "CHANTELOUP" }, { - "codePostal": "11240", - "codeCommune": "11059", - "libelleAcheminement": "CAILHAVEL", - "nomCommune": "CAILHAVEL" + "codePostal": "49260", + "codeCommune": "49131", + "libelleAcheminement": "EPIEDS", + "nomCommune": "EPIEDS" }, { - "codePostal": "27250", - "codeCommune": "27502", - "libelleAcheminement": "RUGLES", - "nomCommune": "RUGLES" + "codePostal": "49510", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "39120", - "codeCommune": "39034", - "libelleAcheminement": "BALAISEAUX", - "nomCommune": "BALAISEAUX" + "codePostal": "33410", + "codeCommune": "33299", + "libelleAcheminement": "MOURENS", + "nomCommune": "MOURENS" }, { - "codePostal": "62650", - "codeCommune": "62463", - "libelleAcheminement": "HUCQUELIERS", - "nomCommune": "HUCQUELIERS" + "codePostal": "35410", + "codeCommune": "35069", + "libelleAcheminement": "CHATEAUGIRON", + "nomCommune": "CHATEAUGIRON" }, { - "codePostal": "11200", - "codeCommune": "11064", - "libelleAcheminement": "CAMPLONG D AUDE", - "nomCommune": "CAMPLONG D AUDE" + "codePostal": "49460", + "codeCommune": "49135", + "libelleAcheminement": "FENEU", + "nomCommune": "FENEU" }, { - "codePostal": "27930", - "codeCommune": "27504", - "libelleAcheminement": "SACQUENVILLE", - "nomCommune": "SACQUENVILLE" + "codePostal": "49600", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "39570", - "codeCommune": "39041", - "libelleAcheminement": "BAUME LES MESSIEURS", - "nomCommune": "BAUME LES MESSIEURS" + "codePostal": "33750", + "codeCommune": "33303", + "libelleAcheminement": "NERIGEAN", + "nomCommune": "NERIGEAN" }, { - "codePostal": "62410", - "codeCommune": "62464", - "libelleAcheminement": "HULLUCH", - "nomCommune": "HULLUCH" + "codePostal": "35250", + "codeCommune": "35079", + "libelleAcheminement": "CHEVAIGNE", + "nomCommune": "CHEVAIGNE" }, { - "codePostal": "11000", - "codeCommune": "11069", - "libelleAcheminement": "CARCASSONNE", - "nomCommune": "CARCASSONNE" + "codePostal": "49123", + "codeCommune": "49160", + "libelleAcheminement": "INGRANDES LE FRESNE SUR LOIRE", + "nomCommune": "INGRANDES LE FRESNE SUR LOIRE" }, { - "codePostal": "27250", - "codeCommune": "27508", - "libelleAcheminement": "ST ANTONIN DE SOMMAIRE", - "nomCommune": "ST ANTONIN DE SOMMAIRE" + "codePostal": "49320", + "codeCommune": "49029", + "libelleAcheminement": "BLAISON ST SULPICE", + "nomCommune": "BLAISON ST SULPICE" }, { - "codePostal": "39190", - "codeCommune": "39043", - "libelleAcheminement": "BEAUFORT ORBAGNA", - "nomCommune": "BEAUFORT ORBAGNA" + "codePostal": "33550", + "codeCommune": "33311", + "libelleAcheminement": "PAILLET", + "nomCommune": "PAILLET" }, { - "codePostal": "62130", - "codeCommune": "62467", - "libelleAcheminement": "HUMEROEUILLE", - "nomCommune": "HUMEROEUILLE" + "codePostal": "35150", + "codeCommune": "35088", + "libelleAcheminement": "CORPS NUDS", + "nomCommune": "CORPS NUDS" }, { - "codePostal": "11360", - "codeCommune": "11071", - "libelleAcheminement": "CASCASTEL DES CORBIERES", - "nomCommune": "CASCASTEL DES CORBIERES" + "codePostal": "49220", + "codeCommune": "49161", + "libelleAcheminement": "LA JAILLE YVON", + "nomCommune": "LA JAILLE YVON" }, { - "codePostal": "27300", - "codeCommune": "27516", - "libelleAcheminement": "TREIS SANTS EN OUCHE", - "nomCommune": "TREIS SANTS EN OUCHE" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "39210", - "codeCommune": "39057", - "libelleAcheminement": "BLOIS SUR SEILLE", - "nomCommune": "BLOIS SUR SEILLE" + "codePostal": "33290", + "codeCommune": "33312", + "libelleAcheminement": "PAREMPUYRE", + "nomCommune": "PAREMPUYRE" }, { - "codePostal": "62130", - "codeCommune": "62468", - "libelleAcheminement": "HUMIERES", - "nomCommune": "HUMIERES" + "codePostal": "35320", + "codeCommune": "35090", + "libelleAcheminement": "CREVIN", + "nomCommune": "CREVIN" }, { - "codePostal": "11160", - "codeCommune": "11075", - "libelleAcheminement": "CASTANS", - "nomCommune": "CASTANS" + "codePostal": "49140", + "codeCommune": "49163", + "libelleAcheminement": "JARZE VILLAGES", + "nomCommune": "JARZE VILLAGES" }, { - "codePostal": "27110", - "codeCommune": "27524", - "libelleAcheminement": "STE COLOMBE LA COMMANDERIE", - "nomCommune": "STE COLOMBE LA COMMANDERIE" + "codePostal": "49310", + "codeCommune": "49057", + "libelleAcheminement": "CERNUSSON", + "nomCommune": "CERNUSSON" }, { - "codePostal": "39110", - "codeCommune": "39072", - "libelleAcheminement": "BRACON", - "nomCommune": "BRACON" + "codePostal": "33790", + "codeCommune": "33316", + "libelleAcheminement": "PELLEGRUE", + "nomCommune": "PELLEGRUE" }, { - "codePostal": "62770", - "codeCommune": "62470", - "libelleAcheminement": "INCOURT", - "nomCommune": "INCOURT" + "codePostal": "35113", + "codeCommune": "35096", + "libelleAcheminement": "DOMAGNE", + "nomCommune": "DOMAGNE" }, { - "codePostal": "11700", - "codeCommune": "11077", - "libelleAcheminement": "CASTELNAU D AUDE", - "nomCommune": "CASTELNAU D AUDE" + "codePostal": "49140", + "codeCommune": "49163", + "libelleAcheminement": "JARZE VILLAGES", + "nomCommune": "JARZE VILLAGES" }, { - "codePostal": "27390", - "codeCommune": "27530", - "libelleAcheminement": "ST DENIS D AUGERONS", - "nomCommune": "ST DENIS D AUGERONS" + "codePostal": "49440", + "codeCommune": "49061", + "libelleAcheminement": "CHALLAIN LA POTHERIE", + "nomCommune": "CHALLAIN LA POTHERIE" }, { - "codePostal": "39120", - "codeCommune": "39077", - "libelleAcheminement": "BRETENIERES", - "nomCommune": "BRETENIERES" + "codePostal": "33390", + "codeCommune": "33325", + "libelleAcheminement": "PLASSAC", + "nomCommune": "PLASSAC" }, { - "codePostal": "62330", - "codeCommune": "62473", - "libelleAcheminement": "ISBERGUES", - "nomCommune": "ISBERGUES" + "codePostal": "35130", + "codeCommune": "35102", + "libelleAcheminement": "DROUGES", + "nomCommune": "DROUGES" }, { - "codePostal": "11390", - "codeCommune": "11079", - "libelleAcheminement": "CAUDEBRONDE", - "nomCommune": "CAUDEBRONDE" + "codePostal": "49440", + "codeCommune": "49178", + "libelleAcheminement": "LOIRE", + "nomCommune": "LOIRE" }, { - "codePostal": "27370", - "codeCommune": "27534", - "libelleAcheminement": "ST DIDIER DES BOIS", - "nomCommune": "ST DIDIER DES BOIS" + "codePostal": "49290", + "codeCommune": "49063", + "libelleAcheminement": "CHALONNES SUR LOIRE", + "nomCommune": "CHALONNES SUR LOIRE" }, { - "codePostal": "39380", - "codeCommune": "39093", - "libelleAcheminement": "CHAMBLAY", - "nomCommune": "CHAMBLAY" + "codePostal": "33680", + "codeCommune": "33333", + "libelleAcheminement": "LE PORGE", + "nomCommune": "LE PORGE" }, { - "codePostal": "62330", - "codeCommune": "62473", - "libelleAcheminement": "ISBERGUES", - "nomCommune": "ISBERGUES" + "codePostal": "35120", + "codeCommune": "35104", + "libelleAcheminement": "EPINIAC", + "nomCommune": "EPINIAC" }, { - "codePostal": "11230", - "codeCommune": "11080", - "libelleAcheminement": "VAL DE LAMBRONNE", - "nomCommune": "VAL DE LAMBRONNE" + "codePostal": "49370", + "codeCommune": "49183", + "libelleAcheminement": "VAL D ERDRE AUXENCE", + "nomCommune": "VAL D ERDRE AUXENCE" }, { - "codePostal": "27920", - "codeCommune": "27539", - "libelleAcheminement": "ST ETIENNE SOUS BAILLEUL", - "nomCommune": "ST ETIENNE SOUS BAILLEUL" + "codePostal": "49220", + "codeCommune": "49067", + "libelleAcheminement": "CHENILLE CHAMPTEUSSE", + "nomCommune": "CHENILLE CHAMPTEUSSE" }, { - "codePostal": "39300", - "codeCommune": "39097", - "libelleAcheminement": "CHAMPAGNOLE", - "nomCommune": "CHAMPAGNOLE" + "codePostal": "33640", + "codeCommune": "33334", + "libelleAcheminement": "PORTETS", + "nomCommune": "PORTETS" }, { - "codePostal": "62360", - "codeCommune": "62474", - "libelleAcheminement": "ISQUES", - "nomCommune": "ISQUES" + "codePostal": "35500", + "codeCommune": "35105", + "libelleAcheminement": "ERBREE", + "nomCommune": "ERBREE" }, { - "codePostal": "11220", - "codeCommune": "11083", - "libelleAcheminement": "CAUNETTES EN VAL", - "nomCommune": "CAUNETTES EN VAL" + "codePostal": "49250", + "codeCommune": "49201", + "libelleAcheminement": "LA MENITRE", + "nomCommune": "LA MENITRE" }, { - "codePostal": "27450", - "codeCommune": "27542", - "libelleAcheminement": "ST GEORGES DU VIEVRE", - "nomCommune": "ST GEORGES DU VIEVRE" + "codePostal": "49123", + "codeCommune": "49068", + "libelleAcheminement": "CHAMPTOCE SUR LOIRE", + "nomCommune": "CHAMPTOCE SUR LOIRE" }, { - "codePostal": "01590", - "codeCommune": "39102", - "libelleAcheminement": "CHANCIA", - "nomCommune": "CHANCIA" + "codePostal": "33670", + "codeCommune": "33335", + "libelleAcheminement": "LE POUT", + "nomCommune": "LE POUT" }, { - "codePostal": "62490", - "codeCommune": "62476", - "libelleAcheminement": "IZEL LES EQUERCHIN", - "nomCommune": "IZEL LES EQUERCHIN" + "codePostal": "35150", + "codeCommune": "35108", + "libelleAcheminement": "ESSE", + "nomCommune": "ESSE" }, { - "codePostal": "11270", - "codeCommune": "11087", - "libelleAcheminement": "CAZALRENOUX", - "nomCommune": "CAZALRENOUX" + "codePostal": "49330", + "codeCommune": "49205", + "libelleAcheminement": "MIRE", + "nomCommune": "MIRE" }, { - "codePostal": "27370", - "codeCommune": "27545", - "libelleAcheminement": "ST GERMAIN DE PASQUIER", - "nomCommune": "ST GERMAIN DE PASQUIER" + "codePostal": "49270", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "39110", - "codeCommune": "39103", - "libelleAcheminement": "LA CHAPELLE SUR FURIEUSE", - "nomCommune": "LA CHAPELLE SUR FURIEUSE" + "codePostal": "33710", + "codeCommune": "33339", + "libelleAcheminement": "PRIGNAC ET MARCAMPS", + "nomCommune": "PRIGNAC ET MARCAMPS" }, { - "codePostal": "62690", - "codeCommune": "62477", - "libelleAcheminement": "IZEL LES HAMEAU", - "nomCommune": "IZEL LES HAMEAU" + "codePostal": "35111", + "codeCommune": "35116", + "libelleAcheminement": "LA FRESNAIS", + "nomCommune": "LA FRESNAIS" }, { - "codePostal": "11140", - "codeCommune": "11093", - "libelleAcheminement": "LE CLAT", - "nomCommune": "LE CLAT" + "codePostal": "49110", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "27160", - "codeCommune": "27565", - "libelleAcheminement": "LE LESME", - "nomCommune": "LE LESME" + "codePostal": "49270", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "39140", - "codeCommune": "39104", - "libelleAcheminement": "CHAPELLE VOLAND", - "nomCommune": "CHAPELLE VOLAND" + "codePostal": "33350", + "codeCommune": "33344", + "libelleAcheminement": "PUJOLS", + "nomCommune": "PUJOLS" }, { - "codePostal": "62850", - "codeCommune": "62478", - "libelleAcheminement": "JOURNY", - "nomCommune": "JOURNY" + "codePostal": "35580", + "codeCommune": "35123", + "libelleAcheminement": "GOVEN", + "nomCommune": "GOVEN" }, { - "codePostal": "11340", - "codeCommune": "11096", - "libelleAcheminement": "COMUS", - "nomCommune": "COMUS" + "codePostal": "49600", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "27150", - "codeCommune": "27567", - "libelleAcheminement": "STE MARIE DE VATIMESNIL", - "nomCommune": "STE MARIE DE VATIMESNIL" + "codePostal": "49530", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "39130", - "codeCommune": "39118", - "libelleAcheminement": "CHATEL DE JOUX", - "nomCommune": "CHATEL DE JOUX" + "codePostal": "33190", + "codeCommune": "33346", + "libelleAcheminement": "PUYBARBAN", + "nomCommune": "PUYBARBAN" }, { - "codePostal": "62113", - "codeCommune": "62480", - "libelleAcheminement": "LABOURSE", - "nomCommune": "LABOURSE" + "codePostal": "35580", + "codeCommune": "35126", + "libelleAcheminement": "GUICHEN", + "nomCommune": "GUICHEN" }, { - "codePostal": "11200", - "codeCommune": "11098", - "libelleAcheminement": "CONILHAC CORBIERES", - "nomCommune": "CONILHAC CORBIERES" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "27370", - "codeCommune": "27572", - "libelleAcheminement": "ST MESLIN DU BOSC", - "nomCommune": "ST MESLIN DU BOSC" + "codePostal": "49330", + "codeCommune": "49080", + "libelleAcheminement": "LES HAUTS D ANJOU", + "nomCommune": "LES HAUTS D ANJOU" }, { - "codePostal": "39150", - "codeCommune": "39130", - "libelleAcheminement": "NANCHEZ", - "nomCommune": "NANCHEZ" + "codePostal": "33220", + "codeCommune": "33354", + "libelleAcheminement": "RIOCAUD", + "nomCommune": "RIOCAUD" }, { - "codePostal": "62159", - "codeCommune": "62484", - "libelleAcheminement": "LAGNICOURT MARCEL", - "nomCommune": "LAGNICOURT MARCEL" + "codePostal": "35580", + "codeCommune": "35127", + "libelleAcheminement": "GUIGNEN", + "nomCommune": "GUIGNEN" }, { - "codePostal": "11600", - "codeCommune": "11099", - "libelleAcheminement": "CONQUES SUR ORBIEL", - "nomCommune": "CONQUES SUR ORBIEL" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "27450", - "codeCommune": "27594", - "libelleAcheminement": "ST PIERRE DES IFS", - "nomCommune": "ST PIERRE DES IFS" + "codePostal": "49330", + "codeCommune": "49080", + "libelleAcheminement": "LES HAUTS D ANJOU", + "nomCommune": "LES HAUTS D ANJOU" }, { - "codePostal": "39150", - "codeCommune": "39131", - "libelleAcheminement": "CHAUX DU DOMBIEF", - "nomCommune": "LA CHAUX DU DOMBIEF" + "codePostal": "33126", + "codeCommune": "33356", + "libelleAcheminement": "LA RIVIERE", + "nomCommune": "LA RIVIERE" }, { - "codePostal": "62630", - "codeCommune": "62496", - "libelleAcheminement": "LEFAUX", - "nomCommune": "LEFAUX" + "codePostal": "35590", + "codeCommune": "35131", + "libelleAcheminement": "L HERMITAGE", + "nomCommune": "L HERMITAGE" }, { - "codePostal": "11250", - "codeCommune": "11102", - "libelleAcheminement": "COUFFOULENS", - "nomCommune": "COUFFOULENS" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "27370", - "codeCommune": "27595", - "libelleAcheminement": "ST PIERRE DU BOSGUERARD", - "nomCommune": "ST PIERRE DU BOSGUERARD" + "codePostal": "49330", + "codeCommune": "49080", + "libelleAcheminement": "LES HAUTS D ANJOU", + "nomCommune": "LES HAUTS D ANJOU" }, { - "codePostal": "39240", - "codeCommune": "39137", - "libelleAcheminement": "ST HYMETIERE SUR VALOUSE", - "nomCommune": "ST HYMETIERE SUR VALOUSE" + "codePostal": "33670", + "codeCommune": "33363", + "libelleAcheminement": "SADIRAC", + "nomCommune": "SADIRAC" }, { - "codePostal": "62136", - "codeCommune": "62502", - "libelleAcheminement": "LESTREM", - "nomCommune": "LESTREM" + "codePostal": "35890", + "codeCommune": "35139", + "libelleAcheminement": "LAILLE", + "nomCommune": "LAILLE" }, { - "codePostal": "11190", - "codeCommune": "11103", - "libelleAcheminement": "COUIZA", - "nomCommune": "COUIZA" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "27430", - "codeCommune": "27598", - "libelleAcheminement": "ST PIERRE DU VAUVRAY", - "nomCommune": "ST PIERRE DU VAUVRAY" + "codePostal": "49540", + "codeCommune": "49086", + "libelleAcheminement": "TERRANJOU", + "nomCommune": "TERRANJOU" }, { - "codePostal": "39190", - "codeCommune": "39142", - "libelleAcheminement": "CHEVREAUX", - "nomCommune": "CHEVREAUX" + "codePostal": "33790", + "codeCommune": "33372", + "libelleAcheminement": "ST ANTOINE DU QUEYRET", + "nomCommune": "ST ANTOINE DU QUEYRET" }, { - "codePostal": "62250", - "codeCommune": "62503", - "libelleAcheminement": "LEUBRINGHEN", - "nomCommune": "LEUBRINGHEN" + "codePostal": "35850", + "codeCommune": "35144", + "libelleAcheminement": "LANGAN", + "nomCommune": "LANGAN" }, { - "codePostal": "11190", - "codeCommune": "11112", - "libelleAcheminement": "CUBIERES SUR CINOBLE", - "nomCommune": "CUBIERES SUR CINOBLE" + "codePostal": "49410", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "27560", - "codeCommune": "27603", - "libelleAcheminement": "ST SIMEON", - "nomCommune": "ST SIMEON" + "codePostal": "49750", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "39570", - "codeCommune": "39145", - "libelleAcheminement": "CHILLE", - "nomCommune": "CHILLE" + "codePostal": "33660", + "codeCommune": "33373", + "libelleAcheminement": "ST ANTOINE SUR L ISLE", + "nomCommune": "ST ANTOINE SUR L ISLE" }, { - "codePostal": "62250", - "codeCommune": "62505", - "libelleAcheminement": "LEULINGHEN BERNES", - "nomCommune": "LEULINGHEN BERNES" + "codePostal": "35550", + "codeCommune": "35151", + "libelleAcheminement": "LIEURON", + "nomCommune": "LIEURON" }, { - "codePostal": "11240", - "codeCommune": "11121", - "libelleAcheminement": "DONAZAC", - "nomCommune": "DONAZAC" + "codePostal": "49410", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "27210", - "codeCommune": "27604", - "libelleAcheminement": "ST SULPICE DE GRIMBOUVILLE", - "nomCommune": "ST SULPICE DE GRIMBOUVILLE" + "codePostal": "49700", + "codeCommune": "49100", + "libelleAcheminement": "CIZAY LA MADELEINE", + "nomCommune": "CIZAY LA MADELEINE" }, { - "codePostal": "39380", - "codeCommune": "39149", - "libelleAcheminement": "CHISSEY SUR LOUE", - "nomCommune": "CHISSEY SUR LOUE" + "codePostal": "33160", + "codeCommune": "33376", + "libelleAcheminement": "ST AUBIN DE MEDOC", + "nomCommune": "ST AUBIN DE MEDOC" }, { - "codePostal": "62850", - "codeCommune": "62506", - "libelleAcheminement": "LICQUES", - "nomCommune": "LICQUES" + "codePostal": "35133", + "codeCommune": "35163", + "libelleAcheminement": "LUITRE DOMPIERRE", + "nomCommune": "LUITRE DOMPIERRE" }, { - "codePostal": "11360", - "codeCommune": "11125", - "libelleAcheminement": "EMBRES ET CASTELMAURE", - "nomCommune": "EMBRES ET CASTELMAURE" + "codePostal": "49420", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "27500", - "codeCommune": "27606", - "libelleAcheminement": "ST SYMPHORIEN", - "nomCommune": "ST SYMPHORIEN" + "codePostal": "49560", + "codeCommune": "49102", + "libelleAcheminement": "CLERE SUR LAYON", + "nomCommune": "CLERE SUR LAYON" }, { - "codePostal": "39100", - "codeCommune": "39150", - "libelleAcheminement": "CHOISEY", - "nomCommune": "CHOISEY" + "codePostal": "33340", + "codeCommune": "33383", + "libelleAcheminement": "ST CHRISTOLY MEDOC", + "nomCommune": "ST CHRISTOLY MEDOC" }, { - "codePostal": "62190", - "codeCommune": "62508", - "libelleAcheminement": "LIERES", - "nomCommune": "LIERES" + "codePostal": "35520", + "codeCommune": "35173", + "libelleAcheminement": "MELESSE", + "nomCommune": "MELESSE" }, { - "codePostal": "11240", - "codeCommune": "11128", - "libelleAcheminement": "ESCUEILLENS ET ST JUST", - "nomCommune": "ESCUEILLENS ET ST JUST DE BELENGARD" + "codePostal": "49430", + "codeCommune": "49257", + "libelleAcheminement": "LES RAIRIES", + "nomCommune": "LES RAIRIES" }, { - "codePostal": "27800", - "codeCommune": "27609", - "libelleAcheminement": "ST VICTOR D EPINE", - "nomCommune": "ST VICTOR D EPINE" + "codePostal": "49260", + "codeCommune": "49113", + "libelleAcheminement": "COURCHAMPS", + "nomCommune": "COURCHAMPS" }, { - "codePostal": "39370", - "codeCommune": "39151", - "libelleAcheminement": "CHOUX", - "nomCommune": "CHOUX" + "codePostal": "33570", + "codeCommune": "33386", + "libelleAcheminement": "ST CIBARD", + "nomCommune": "ST CIBARD" }, { - "codePostal": "62145", - "codeCommune": "62509", - "libelleAcheminement": "LIETTRES", - "nomCommune": "LIETTRES" + "codePostal": "35360", + "codeCommune": "35184", + "libelleAcheminement": "MONTAUBAN DE BRETAGNE", + "nomCommune": "MONTAUBAN DE BRETAGNE" }, { - "codePostal": "11270", - "codeCommune": "11136", - "libelleAcheminement": "FANJEAUX", - "nomCommune": "FANJEAUX" + "codePostal": "49190", + "codeCommune": "49259", + "libelleAcheminement": "ROCHEFORT SUR LOIRE", + "nomCommune": "ROCHEFORT SUR LOIRE" }, { - "codePostal": "27370", - "codeCommune": "27616", - "libelleAcheminement": "LA SAUSSAYE", - "nomCommune": "LA SAUSSAYE" + "codePostal": "49390", + "codeCommune": "49114", + "libelleAcheminement": "COURLEON", + "nomCommune": "COURLEON" }, { - "codePostal": "39800", - "codeCommune": "39159", - "libelleAcheminement": "COLONNE", - "nomCommune": "COLONNE" + "codePostal": "33430", + "codeCommune": "33391", + "libelleAcheminement": "ST COME", + "nomCommune": "ST COME" }, { - "codePostal": "62960", - "codeCommune": "62512", - "libelleAcheminement": "LIGNY LES AIRE", - "nomCommune": "LIGNY LES AIRE" + "codePostal": "35290", + "codeCommune": "35201", + "libelleAcheminement": "MUEL", + "nomCommune": "MUEL" }, { - "codePostal": "11330", - "codeCommune": "11137", - "libelleAcheminement": "FELINES TERMENES", - "nomCommune": "FELINES TERMENES" + "codePostal": "49740", + "codeCommune": "49260", + "libelleAcheminement": "LA ROMAGNE", + "nomCommune": "LA ROMAGNE" }, { - "codePostal": "27400", - "codeCommune": "27623", - "libelleAcheminement": "SURTAUVILLE", - "nomCommune": "SURTAUVILLE" + "codePostal": "49700", + "codeCommune": "49125", + "libelleAcheminement": "DOUE EN ANJOU", + "nomCommune": "DOUE EN ANJOU" }, { - "codePostal": "39300", - "codeCommune": "39165", - "libelleAcheminement": "CONTE", - "nomCommune": "CONTE" + "codePostal": "33410", + "codeCommune": "33392", + "libelleAcheminement": "STE CROIX DU MONT", + "nomCommune": "STE CROIX DU MONT" }, { - "codePostal": "62270", - "codeCommune": "62513", - "libelleAcheminement": "LIGNY SUR CANCHE", - "nomCommune": "LIGNY SUR CANCHE" + "codePostal": "35230", + "codeCommune": "35208", + "libelleAcheminement": "ORGERES", + "nomCommune": "ORGERES" }, { - "codePostal": "11510", - "codeCommune": "11143", - "libelleAcheminement": "FEUILLA", - "nomCommune": "FEUILLA" + "codePostal": "49124", + "codeCommune": "49267", + "libelleAcheminement": "ST BARTHELEMY D ANJOU", + "nomCommune": "ST BARTHELEMY D ANJOU" }, { - "codePostal": "27800", - "codeCommune": "27630", - "libelleAcheminement": "THIBOUVILLE", - "nomCommune": "THIBOUVILLE" + "codePostal": "49700", + "codeCommune": "49125", + "libelleAcheminement": "DOUE EN ANJOU", + "nomCommune": "DOUE EN ANJOU" }, { - "codePostal": "39240", - "codeCommune": "39166", - "libelleAcheminement": "CORNOD", - "nomCommune": "CORNOD" + "codePostal": "33580", + "codeCommune": "33400", + "libelleAcheminement": "ST FERME", + "nomCommune": "ST FERME" }, { - "codePostal": "62270", - "codeCommune": "62518", - "libelleAcheminement": "LINZEUX", - "nomCommune": "LINZEUX" + "codePostal": "35320", + "codeCommune": "35212", + "libelleAcheminement": "PANCE", + "nomCommune": "PANCE" }, { - "codePostal": "11510", - "codeCommune": "11144", - "libelleAcheminement": "FITOU", - "nomCommune": "FITOU" + "codePostal": "49130", + "codeCommune": "49288", + "libelleAcheminement": "ST JEAN DE LA CROIX", + "nomCommune": "ST JEAN DE LA CROIX" }, { - "codePostal": "27290", - "codeCommune": "27631", - "libelleAcheminement": "THIERVILLE", - "nomCommune": "THIERVILLE" + "codePostal": "49700", + "codeCommune": "49125", + "libelleAcheminement": "DOUE EN ANJOU", + "nomCommune": "DOUE EN ANJOU" }, { - "codePostal": "39700", - "codeCommune": "39172", - "libelleAcheminement": "COURTEFONTAINE", - "nomCommune": "COURTEFONTAINE" + "codePostal": "33490", + "codeCommune": "33403", + "libelleAcheminement": "STE FOY LA LONGUE", + "nomCommune": "STE FOY LA LONGUE" }, { - "codePostal": "62140", - "codeCommune": "62521", - "libelleAcheminement": "LA LOGE", - "nomCommune": "LA LOGE" + "codePostal": "35133", + "codeCommune": "35215", + "libelleAcheminement": "PARIGNE", + "nomCommune": "PARIGNE" }, { - "codePostal": "11140", - "codeCommune": "11147", - "libelleAcheminement": "FONTANES DE SAULT", - "nomCommune": "FONTANES DE SAULT" + "codePostal": "49070", + "codeCommune": "49294", + "libelleAcheminement": "ST LAMBERT LA POTHERIE", + "nomCommune": "ST LAMBERT LA POTHERIE" }, { - "codePostal": "27170", - "codeCommune": "27640", - "libelleAcheminement": "TILLEUL DAME AGNES", - "nomCommune": "TILLEUL DAME AGNES" + "codePostal": "49250", + "codeCommune": "49138", + "libelleAcheminement": "LES BOIS D ANJOU", + "nomCommune": "LES BOIS D ANJOU" }, { - "codePostal": "39270", - "codeCommune": "39180", - "libelleAcheminement": "CRESSIA", - "nomCommune": "CRESSIA" + "codePostal": "33580", + "codeCommune": "33404", + "libelleAcheminement": "STE GEMME", + "nomCommune": "STE GEMME" }, { - "codePostal": "62610", - "codeCommune": "62531", - "libelleAcheminement": "LOUCHES", - "nomCommune": "LOUCHES" + "codePostal": "35370", + "codeCommune": "35217", + "libelleAcheminement": "LE PERTRE", + "nomCommune": "LE PERTRE" }, { - "codePostal": "11360", - "codeCommune": "11157", - "libelleAcheminement": "FRAISSE DES CORBIERES", - "nomCommune": "FRAISSE DES CORBIERES" + "codePostal": "49070", + "codeCommune": "49298", + "libelleAcheminement": "ST LEGER DE LINIERES", + "nomCommune": "ST LEGER DE LINIERES" }, { - "codePostal": "27400", - "codeCommune": "27666", - "libelleAcheminement": "LA VACHERIE", - "nomCommune": "LA VACHERIE" + "codePostal": "49700", + "codeCommune": "49182", + "libelleAcheminement": "LOURESSE ROCHEMENIER", + "nomCommune": "LOURESSE ROCHEMENIER" }, { - "codePostal": "39300", - "codeCommune": "39183", - "libelleAcheminement": "CROTENAY", - "nomCommune": "CROTENAY" + "codePostal": "33920", + "codeCommune": "33416", + "libelleAcheminement": "ST GIRONS D AIGUEVIVES", + "nomCommune": "ST GIRONS D AIGUEVIVES" }, { - "codePostal": "62540", - "codeCommune": "62532", - "libelleAcheminement": "LOZINGHEM", - "nomCommune": "LOZINGHEM" + "codePostal": "35320", + "codeCommune": "35218", + "libelleAcheminement": "LE PETIT FOUGERAY", + "nomCommune": "LE PETIT FOUGERAY" }, { - "codePostal": "11270", - "codeCommune": "11162", - "libelleAcheminement": "GENERVILLE", - "nomCommune": "GENERVILLE" + "codePostal": "49230", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "27380", - "codeCommune": "27670", - "libelleAcheminement": "VANDRIMARE", - "nomCommune": "VANDRIMARE" + "codePostal": "49440", + "codeCommune": "49183", + "libelleAcheminement": "VAL D ERDRE AUXENCE", + "nomCommune": "VAL D ERDRE AUXENCE" }, { - "codePostal": "39190", - "codeCommune": "39185", - "libelleAcheminement": "CUISIA", - "nomCommune": "CUISIA" + "codePostal": "33540", + "codeCommune": "33419", + "libelleAcheminement": "ST HILAIRE DU BOIS", + "nomCommune": "ST HILAIRE DU BOIS" }, { - "codePostal": "62270", - "codeCommune": "62537", - "libelleAcheminement": "MAGNICOURT SUR CANCHE", - "nomCommune": "MAGNICOURT SUR CANCHE" + "codePostal": "35550", + "codeCommune": "35219", + "libelleAcheminement": "PIPRIAC", + "nomCommune": "PIPRIAC" }, { - "codePostal": "11430", - "codeCommune": "11170", - "libelleAcheminement": "GRUISSAN", - "nomCommune": "GRUISSAN" + "codePostal": "49800", + "codeCommune": "49307", + "libelleAcheminement": "LOIRE AUTHION", + "nomCommune": "LOIRE AUTHION" }, { - "codePostal": "27120", - "codeCommune": "27674", - "libelleAcheminement": "VAUX SUR EURE", - "nomCommune": "VAUX SUR EURE" + "codePostal": "49140", + "codeCommune": "49188", + "libelleAcheminement": "MARCE", + "nomCommune": "MARCE" }, { - "codePostal": "39120", - "codeCommune": "39193", - "libelleAcheminement": "LE DESCHAUX", - "nomCommune": "LE DESCHAUX" + "codePostal": "33240", + "codeCommune": "33425", + "libelleAcheminement": "ST LAURENT D ARCE", + "nomCommune": "ST LAURENT D ARCE" }, { - "codePostal": "62990", - "codeCommune": "62552", - "libelleAcheminement": "MARESQUEL ECQUEMICOURT", - "nomCommune": "MARESQUEL ECQUEMICOURT" + "codePostal": "35150", + "codeCommune": "35220", + "libelleAcheminement": "PIRE CHANCE", + "nomCommune": "PIRE CHANCE" }, { - "codePostal": "11200", - "codeCommune": "11172", - "libelleAcheminement": "HOMPS", - "nomCommune": "HOMPS" + "codePostal": "49400", + "codeCommune": "49328", + "libelleAcheminement": "SAUMUR", + "nomCommune": "SAUMUR" }, { - "codePostal": "27160", - "codeCommune": "27679", - "libelleAcheminement": "VERNEUIL D AVRE ET D ITON", - "nomCommune": "VERNEUIL D AVRE ET D ITON" + "codePostal": "49122", + "codeCommune": "49193", + "libelleAcheminement": "LE MAY SUR EVRE", + "nomCommune": "LE MAY SUR EVRE" }, { - "codePostal": "39160", - "codeCommune": "39209", - "libelleAcheminement": "VAL D EPY", - "nomCommune": "VAL D EPY" + "codePostal": "33440", + "codeCommune": "33434", + "libelleAcheminement": "ST LOUIS DE MONTFERRAND", + "nomCommune": "ST LOUIS DE MONTFERRAND" }, { - "codePostal": "62127", - "codeCommune": "62558", - "libelleAcheminement": "MARQUAY", - "nomCommune": "MARQUAY" + "codePostal": "35680", + "codeCommune": "35220", + "libelleAcheminement": "PIRE CHANCE", + "nomCommune": "PIRE CHANCE" }, { - "codePostal": "11220", - "codeCommune": "11185", - "libelleAcheminement": "LAGRASSE", - "nomCommune": "LAGRASSE" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "27700", - "codeCommune": "27683", - "libelleAcheminement": "VEZILLON", - "nomCommune": "VEZILLON" + "codePostal": "49220", + "codeCommune": "49200", + "libelleAcheminement": "LONGUENEE EN ANJOU", + "nomCommune": "LONGUENEE EN ANJOU" }, { - "codePostal": "39160", - "codeCommune": "39209", - "libelleAcheminement": "VAL D EPY", - "nomCommune": "VAL D EPY" + "codePostal": "33910", + "codeCommune": "33442", + "libelleAcheminement": "ST MARTIN DE LAYE", + "nomCommune": "ST MARTIN DE LAYE" }, { - "codePostal": "62250", - "codeCommune": "62560", - "libelleAcheminement": "MARQUISE", - "nomCommune": "MARQUISE" + "codePostal": "35540", + "codeCommune": "35224", + "libelleAcheminement": "PLERGUER", + "nomCommune": "PLERGUER" }, { - "codePostal": "11330", - "codeCommune": "11186", - "libelleAcheminement": "LAIRIERE", - "nomCommune": "LAIRIERE" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "27330", - "codeCommune": "27685", - "libelleAcheminement": "LA VIEILLE LYRE", - "nomCommune": "LA VIEILLE LYRE" + "codePostal": "49770", + "codeCommune": "49200", + "libelleAcheminement": "LONGUENEE EN ANJOU", + "nomCommune": "LONGUENEE EN ANJOU" }, { - "codePostal": "39120", - "codeCommune": "39211", - "libelleAcheminement": "LES ESSARDS TAIGNEVAUX", - "nomCommune": "LES ESSARDS TAIGNEVAUX" + "codePostal": "33910", + "codeCommune": "33445", + "libelleAcheminement": "ST MARTIN DU BOIS", + "nomCommune": "ST MARTIN DU BOIS" }, { - "codePostal": "62310", - "codeCommune": "62565", - "libelleAcheminement": "MENCAS", - "nomCommune": "MENCAS" + "codePostal": "35500", + "codeCommune": "35229", + "libelleAcheminement": "POCE LES BOIS", + "nomCommune": "POCE LES BOIS" }, { - "codePostal": "11600", - "codeCommune": "11194", - "libelleAcheminement": "LASTOURS", - "nomCommune": "LASTOURS" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "27110", - "codeCommune": "27692", - "libelleAcheminement": "VILLETTES", - "nomCommune": "VILLETTES" + "codePostal": "49460", + "codeCommune": "49214", + "libelleAcheminement": "MONTREUIL JUIGNE", + "nomCommune": "MONTREUIL JUIGNE" }, { - "codePostal": "39250", - "codeCommune": "39221", - "libelleAcheminement": "LA FAVIERE", - "nomCommune": "LA FAVIERE" + "codePostal": "33650", + "codeCommune": "33448", + "libelleAcheminement": "ST MEDARD D EYRANS", + "nomCommune": "ST MEDARD D EYRANS" }, { - "codePostal": "62127", - "codeCommune": "62580", - "libelleAcheminement": "MONCHY BRETON", - "nomCommune": "MONCHY BRETON" + "codePostal": "35650", + "codeCommune": "35240", + "libelleAcheminement": "LE RHEU", + "nomCommune": "LE RHEU" }, { - "codePostal": "11370", - "codeCommune": "11202", - "libelleAcheminement": "LEUCATE", - "nomCommune": "LEUCATE" + "codePostal": "49360", + "codeCommune": "49336", + "libelleAcheminement": "SOMLOIRE", + "nomCommune": "SOMLOIRE" }, { - "codePostal": "27110", - "codeCommune": "27695", - "libelleAcheminement": "VILLEZ SUR LE NEUBOURG", - "nomCommune": "VILLEZ SUR LE NEUBOURG" + "codePostal": "49220", + "codeCommune": "49217", + "libelleAcheminement": "MONTREUIL SUR MAINE", + "nomCommune": "MONTREUIL SUR MAINE" }, { - "codePostal": "39460", - "codeCommune": "39228", - "libelleAcheminement": "FONCINE LE HAUT", - "nomCommune": "FONCINE LE HAUT" + "codePostal": "33160", + "codeCommune": "33449", + "libelleAcheminement": "ST MEDARD EN JALLES", + "nomCommune": "ST MEDARD EN JALLES" }, { - "codePostal": "62134", - "codeCommune": "62581", - "libelleAcheminement": "MONCHY CAYEUX", - "nomCommune": "MONCHY CAYEUX" + "codePostal": "35250", + "codeCommune": "35251", + "libelleAcheminement": "ST AUBIN D AUBIGNE", + "nomCommune": "ST AUBIN D AUBIGNE" }, { - "codePostal": "11600", - "codeCommune": "11205", - "libelleAcheminement": "LIMOUSIS", - "nomCommune": "LIMOUSIS" + "codePostal": "49460", + "codeCommune": "49339", + "libelleAcheminement": "SOULAIRE ET BOURG", + "nomCommune": "SOULAIRE ET BOURG" }, { - "codePostal": "27370", - "codeCommune": "27700", - "libelleAcheminement": "VRAIVILLE", - "nomCommune": "VRAIVILLE" + "codePostal": "49110", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "39130", - "codeCommune": "39230", - "libelleAcheminement": "FONTENU", - "nomCommune": "FONTENU" + "codePostal": "33840", + "codeCommune": "33450", + "libelleAcheminement": "ST MICHEL DE CASTELNAU", + "nomCommune": "ST MICHEL DE CASTELNAU" }, { - "codePostal": "62170", - "codeCommune": "62585", - "libelleAcheminement": "MONTCAVREL", - "nomCommune": "MONTCAVREL" + "codePostal": "35500", + "codeCommune": "35252", + "libelleAcheminement": "ST AUBIN DES LANDES", + "nomCommune": "ST AUBIN DES LANDES" }, { - "codePostal": "11120", - "codeCommune": "11217", - "libelleAcheminement": "MARCORIGNAN", - "nomCommune": "MARCORIGNAN" + "codePostal": "49220", + "codeCommune": "49344", + "libelleAcheminement": "THORIGNE D ANJOU", + "nomCommune": "THORIGNE D ANJOU" }, { - "codePostal": "27100", - "codeCommune": "27701", - "libelleAcheminement": "VAL DE REUIL", - "nomCommune": "VAL DE REUIL" + "codePostal": "49110", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "39250", - "codeCommune": "39237", - "libelleAcheminement": "FRAROZ", - "nomCommune": "FRAROZ" + "codePostal": "33390", + "codeCommune": "33458", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "62124", - "codeCommune": "62591", - "libelleAcheminement": "MORCHIES", - "nomCommune": "MORCHIES" + "codePostal": "35140", + "codeCommune": "35253", + "libelleAcheminement": "ST AUBIN DU CORMIER", + "nomCommune": "ST AUBIN DU CORMIER" }, { - "codePostal": "11140", - "codeCommune": "11219", - "libelleAcheminement": "MARSA", - "nomCommune": "MARSA" + "codePostal": "49125", + "codeCommune": "49347", + "libelleAcheminement": "TIERCE", + "nomCommune": "TIERCE" }, { - "codePostal": "28800", - "codeCommune": "28005", - "libelleAcheminement": "ALLUYES", - "nomCommune": "ALLUYES" + "codePostal": "49110", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "39240", - "codeCommune": "39247", - "libelleAcheminement": "GENOD", - "nomCommune": "GENOD" + "codePostal": "33330", + "codeCommune": "33480", + "libelleAcheminement": "ST SULPICE DE FALEYRENS", + "nomCommune": "ST SULPICE DE FALEYRENS" }, { - "codePostal": "62910", - "codeCommune": "62592", - "libelleAcheminement": "MORINGHEM", - "nomCommune": "MORINGHEM" + "codePostal": "35630", + "codeCommune": "35258", + "libelleAcheminement": "ST BRIEUC DES IFFS", + "nomCommune": "ST BRIEUC DES IFFS" }, { - "codePostal": "11390", - "codeCommune": "11221", - "libelleAcheminement": "LES MARTYS", - "nomCommune": "LES MARTYS" + "codePostal": "49800", + "codeCommune": "49353", + "libelleAcheminement": "TRELAZE", + "nomCommune": "TRELAZE" }, { - "codePostal": "28700", - "codeCommune": "28009", - "libelleAcheminement": "ARDELU", - "nomCommune": "ARDELU" + "codePostal": "49110", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "39190", - "codeCommune": "39255", - "libelleAcheminement": "GIZIA", - "nomCommune": "GIZIA" + "codePostal": "33540", + "codeCommune": "33482", + "libelleAcheminement": "ST SULPICE DE POMMIERS", + "nomCommune": "ST SULPICE DE POMMIERS" }, { - "codePostal": "62450", - "codeCommune": "62593", - "libelleAcheminement": "MORVAL", - "nomCommune": "MORVAL" + "codePostal": "35134", + "codeCommune": "35262", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "11380", - "codeCommune": "11222", - "libelleAcheminement": "MAS CABARDES", - "nomCommune": "MAS CABARDES" + "codePostal": "49730", + "codeCommune": "49361", + "libelleAcheminement": "VARENNES SUR LOIRE", + "nomCommune": "VARENNES SUR LOIRE" }, { - "codePostal": "28700", - "codeCommune": "28015", - "libelleAcheminement": "AUNEAU BLEURY ST SYMPHORIEN", - "nomCommune": "AUNEAU BLEURY ST SYMPHORIEN" + "codePostal": "49640", + "codeCommune": "49220", + "libelleAcheminement": "MORANNES SUR SARTHE DAUMERAY", + "nomCommune": "MORANNES SUR SARTHE DAUMERAY" }, { - "codePostal": "39360", - "codeCommune": "39269", - "libelleAcheminement": "JEURRE", - "nomCommune": "JEURRE" + "codePostal": "33450", + "codeCommune": "33483", + "libelleAcheminement": "ST SULPICE ET CAMEYRAC", + "nomCommune": "ST SULPICE ET CAMEYRAC" }, { - "codePostal": "62159", - "codeCommune": "62594", - "libelleAcheminement": "MORY", - "nomCommune": "MORY" + "codePostal": "35133", + "codeCommune": "35273", + "libelleAcheminement": "ST GERMAIN EN COGLES", + "nomCommune": "ST GERMAIN EN COGLES" }, { - "codePostal": "11330", - "codeCommune": "11224", - "libelleAcheminement": "MASSAC", - "nomCommune": "MASSAC" + "codePostal": "49370", + "codeCommune": "49367", + "libelleAcheminement": "ERDRE EN ANJOU", + "nomCommune": "ERDRE EN ANJOU" }, { - "codePostal": "28330", - "codeCommune": "28016", - "libelleAcheminement": "LES AUTELS VILLEVILLON", - "nomCommune": "LES AUTELS VILLEVILLON" + "codePostal": "49390", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "39320", - "codeCommune": "39273", - "libelleAcheminement": "MONTLAINSIA", - "nomCommune": "MONTLAINSIA" + "codePostal": "33710", + "codeCommune": "33486", + "libelleAcheminement": "ST TROJAN", + "nomCommune": "ST TROJAN" }, { - "codePostal": "62550", - "codeCommune": "62600", - "libelleAcheminement": "NEDON", - "nomCommune": "NEDON" + "codePostal": "35220", + "codeCommune": "35283", + "libelleAcheminement": "ST JEAN SUR VILAINE", + "nomCommune": "ST JEAN SUR VILAINE" }, { - "codePostal": "11410", - "codeCommune": "11231", - "libelleAcheminement": "MEZERVILLE", - "nomCommune": "MEZERVILLE" + "codePostal": "49390", + "codeCommune": "49368", + "libelleAcheminement": "VERNANTES", + "nomCommune": "VERNANTES" }, { - "codePostal": "28330", - "codeCommune": "28018", - "libelleAcheminement": "AUTHON DU PERCHE", - "nomCommune": "AUTHON DU PERCHE" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "01410", - "codeCommune": "39274", - "libelleAcheminement": "LAJOUX", - "nomCommune": "LAJOUX" + "codePostal": "33920", + "codeCommune": "33492", + "libelleAcheminement": "ST YZAN DE SOUDIAC", + "nomCommune": "ST YZAN DE SOUDIAC" }, { - "codePostal": "62152", - "codeCommune": "62604", - "libelleAcheminement": "NEUFCHATEL HARDELOT", - "nomCommune": "NEUFCHATEL HARDELOT" + "codePostal": "35800", + "codeCommune": "35287", + "libelleAcheminement": "ST LUNAIRE", + "nomCommune": "ST LUNAIRE" }, { - "codePostal": "11420", - "codeCommune": "11236", - "libelleAcheminement": "MOLANDIER", - "nomCommune": "MOLANDIER" + "codePostal": "49310", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "28630", - "codeCommune": "28024", - "libelleAcheminement": "BARJOUVILLE", - "nomCommune": "BARJOUVILLE" + "codePostal": "49490", + "codeCommune": "49237", + "libelleAcheminement": "LA PELLERINE", + "nomCommune": "LA PELLERINE" }, { - "codePostal": "39130", - "codeCommune": "39278", - "libelleAcheminement": "LARGILLAY MARSONNAY", - "nomCommune": "LARGILLAY MARSONNAY" + "codePostal": "33160", + "codeCommune": "33494", + "libelleAcheminement": "SALAUNES", + "nomCommune": "SALAUNES" }, { - "codePostal": "62580", - "codeCommune": "62609", - "libelleAcheminement": "NEUVILLE ST VAAST", - "nomCommune": "NEUVILLE ST VAAST" + "codePostal": "35500", + "codeCommune": "35300", + "libelleAcheminement": "ST M HERVE", + "nomCommune": "ST M HERVE" }, { - "codePostal": "11250", - "codeCommune": "11242", - "libelleAcheminement": "MONTCLAR", - "nomCommune": "MONTCLAR" + "codePostal": "49540", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "28300", - "codeCommune": "28034", - "libelleAcheminement": "BERCHERES ST GERMAIN", - "nomCommune": "BERCHERES ST GERMAIN" + "codePostal": "49410", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "39140", - "codeCommune": "39279", - "libelleAcheminement": "LARNAUD", - "nomCommune": "LARNAUD" + "codePostal": "33550", + "codeCommune": "33518", + "libelleAcheminement": "TABANAC", + "nomCommune": "TABANAC" }, { - "codePostal": "62170", - "codeCommune": "62610", - "libelleAcheminement": "NEUVILLE SOUS MONTREUIL", - "nomCommune": "NEUVILLE SOUS MONTREUIL" + "codePostal": "35190", + "codeCommune": "35307", + "libelleAcheminement": "ST PERN", + "nomCommune": "ST PERN" }, { - "codePostal": "11330", - "codeCommune": "11245", - "libelleAcheminement": "MONTGAILLARD", - "nomCommune": "MONTGAILLARD" + "codePostal": "49540", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "28260", - "codeCommune": "28036", - "libelleAcheminement": "BERCHERES SUR VESGRE", - "nomCommune": "BERCHERES SUR VESGRE" + "codePostal": "49170", + "codeCommune": "49247", + "libelleAcheminement": "LA POSSONNIERE", + "nomCommune": "LA POSSONNIERE" }, { - "codePostal": "39700", - "codeCommune": "39284", - "libelleAcheminement": "LAVANGEOT", - "nomCommune": "LAVANGEOT" + "codePostal": "33240", + "codeCommune": "33524", + "libelleAcheminement": "TARNES", + "nomCommune": "TARNES" }, { - "codePostal": "62950", - "codeCommune": "62624", - "libelleAcheminement": "NOYELLES GODAULT", - "nomCommune": "NOYELLES GODAULT" + "codePostal": "35720", + "codeCommune": "35308", + "libelleAcheminement": "MESNIL ROC H", + "nomCommune": "MESNIL ROC H" }, { - "codePostal": "11240", - "codeCommune": "11246", - "libelleAcheminement": "MONTGRADAIL", - "nomCommune": "MONTGRADAIL" + "codePostal": "49140", + "codeCommune": "49377", + "libelleAcheminement": "RIVES DU LOIR EN ANJOU", + "nomCommune": "RIVES DU LOIR EN ANJOU" }, { - "codePostal": "28360", - "codeCommune": "28048", - "libelleAcheminement": "LA BOURDINIERE ST LOUP", - "nomCommune": "LA BOURDINIERE ST LOUP" + "codePostal": "49420", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "39170", - "codeCommune": "39286", - "libelleAcheminement": "LAVANS LES ST CLAUDE", - "nomCommune": "LAVANS LES ST CLAUDE" + "codePostal": "33210", + "codeCommune": "33533", + "libelleAcheminement": "TOULENNE", + "nomCommune": "TOULENNE" }, { - "codePostal": "62130", - "codeCommune": "62633", - "libelleAcheminement": "OEUF EN TERNOIS", - "nomCommune": "OEUF EN TERNOIS" + "codePostal": "35133", + "codeCommune": "35324", + "libelleAcheminement": "LA SELLE EN LUITRE", + "nomCommune": "LA SELLE EN LUITRE" }, { - "codePostal": "11170", - "codeCommune": "11253", - "libelleAcheminement": "MONTOLIEU", - "nomCommune": "MONTOLIEU" + "codePostal": "49680", + "codeCommune": "49378", + "libelleAcheminement": "VIVY", + "nomCommune": "VIVY" }, { - "codePostal": "28150", - "codeCommune": "28049", - "libelleAcheminement": "BONCE", - "nomCommune": "BONCE" + "codePostal": "49420", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "39170", - "codeCommune": "39286", - "libelleAcheminement": "LAVANS LES ST CLAUDE", - "nomCommune": "LAVANS LES ST CLAUDE" + "codePostal": "33330", + "codeCommune": "33546", + "libelleAcheminement": "VIGNONET", + "nomCommune": "VIGNONET" }, { - "codePostal": "62990", - "codeCommune": "62635", - "libelleAcheminement": "OFFIN", - "nomCommune": "OFFIN" + "codePostal": "35235", + "codeCommune": "35334", + "libelleAcheminement": "THORIGNE FOUILLARD", + "nomCommune": "THORIGNE FOUILLARD" }, { - "codePostal": "11200", - "codeCommune": "11256", - "libelleAcheminement": "MONTSERET", - "nomCommune": "MONTSERET" + "codePostal": "50230", + "codeCommune": "50003", + "libelleAcheminement": "AGON COUTAINVILLE", + "nomCommune": "AGON COUTAINVILLE" }, { - "codePostal": "28800", - "codeCommune": "28051", - "libelleAcheminement": "BONNEVAL", - "nomCommune": "BONNEVAL" + "codePostal": "49520", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "39240", - "codeCommune": "39290", - "libelleAcheminement": "VALZIN EN PETITE MONTAGNE", - "nomCommune": "VALZIN EN PETITE MONTAGNE" + "codePostal": "33730", + "codeCommune": "33547", + "libelleAcheminement": "VILLANDRAUT", + "nomCommune": "VILLANDRAUT" }, { - "codePostal": "62250", - "codeCommune": "62636", - "libelleAcheminement": "OFFRETHUN", - "nomCommune": "OFFRETHUN" + "codePostal": "35460", + "codeCommune": "35336", + "libelleAcheminement": "LE TIERCENT", + "nomCommune": "LE TIERCENT" }, { - "codePostal": "11700", - "codeCommune": "11261", - "libelleAcheminement": "MOUX", - "nomCommune": "MOUX" + "codePostal": "50170", + "codeCommune": "50019", + "libelleAcheminement": "AUCEY LA PLAINE", + "nomCommune": "AUCEY LA PLAINE" }, { - "codePostal": "28120", - "codeCommune": "28067", - "libelleAcheminement": "CERNAY", - "nomCommune": "CERNAY" + "codePostal": "49520", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "39170", - "codeCommune": "39293", - "libelleAcheminement": "LESCHERES", - "nomCommune": "LESCHERES" + "codePostal": "33380", + "codeCommune": "33555", + "libelleAcheminement": "MARCHEPRIME", + "nomCommune": "MARCHEPRIME" }, { - "codePostal": "62580", - "codeCommune": "62639", - "libelleAcheminement": "OPPY", - "nomCommune": "OPPY" + "codePostal": "35380", + "codeCommune": "35340", + "libelleAcheminement": "TREFFENDEL", + "nomCommune": "TREFFENDEL" }, { - "codePostal": "11100", - "codeCommune": "11262", - "libelleAcheminement": "NARBONNE", - "nomCommune": "NARBONNE" + "codePostal": "50480", + "codeCommune": "50021", + "libelleAcheminement": "AUDOUVILLE LA HUBERT", + "nomCommune": "AUDOUVILLE LA HUBERT" }, { - "codePostal": "28300", - "codeCommune": "28070", - "libelleAcheminement": "CHAMPHOL", - "nomCommune": "CHAMPHOL" + "codePostal": "49260", + "codeCommune": "49253", + "libelleAcheminement": "LE PUY NOTRE DAME", + "nomCommune": "LE PUY NOTRE DAME" }, { - "codePostal": "39230", - "codeCommune": "39296", - "libelleAcheminement": "LOMBARD", - "nomCommune": "LOMBARD" + "codePostal": "34300", + "codeCommune": "34003", + "libelleAcheminement": "AGDE", + "nomCommune": "AGDE" }, { - "codePostal": "62860", - "codeCommune": "62646", - "libelleAcheminement": "PALLUEL", - "nomCommune": "PALLUEL" + "codePostal": "35270", + "codeCommune": "35342", + "libelleAcheminement": "TREMEHEUC", + "nomCommune": "TREMEHEUC" }, { - "codePostal": "11140", - "codeCommune": "11265", - "libelleAcheminement": "NIORT DE SAULT", - "nomCommune": "NIORT DE SAULT" + "codePostal": "50270", + "codeCommune": "50031", + "libelleAcheminement": "BARNEVILLE CARTERET", + "nomCommune": "BARNEVILLE CARTERET" }, { - "codePostal": "28200", - "codeCommune": "28075", - "libelleAcheminement": "LA CHAPELLE DU NOYER", - "nomCommune": "LA CHAPELLE DU NOYER" + "codePostal": "49160", + "codeCommune": "49261", + "libelleAcheminement": "GENNES VAL DE LOIRE", + "nomCommune": "GENNES VAL DE LOIRE" }, { - "codePostal": "39400", - "codeCommune": "39297", - "libelleAcheminement": "LONGCHAUMOIS", - "nomCommune": "LONGCHAUMOIS" + "codePostal": "34300", + "codeCommune": "34003", + "libelleAcheminement": "AGDE", + "nomCommune": "AGDE" }, { - "codePostal": "62570", - "codeCommune": "62656", - "libelleAcheminement": "PIHEM", - "nomCommune": "PIHEM" + "codePostal": "35450", + "codeCommune": "35347", + "libelleAcheminement": "VAL D IZE", + "nomCommune": "VAL D IZE" }, { - "codePostal": "11570", - "codeCommune": "11272", - "libelleAcheminement": "PALAJA", - "nomCommune": "PALAJA" + "codePostal": "50420", + "codeCommune": "50039", + "libelleAcheminement": "BEAUCOUDRAY", + "nomCommune": "BEAUCOUDRAY" }, { - "codePostal": "28500", - "codeCommune": "28076", - "libelleAcheminement": "LA CHAPELLE FORAINVILLIERS", - "nomCommune": "LA CHAPELLE FORAINVILLIERS" + "codePostal": "49350", + "codeCommune": "49261", + "libelleAcheminement": "GENNES VAL DE LOIRE", + "nomCommune": "GENNES VAL DE LOIRE" }, { - "codePostal": "39210", - "codeCommune": "39304", - "libelleAcheminement": "LE LOUVEROT", - "nomCommune": "LE LOUVEROT" + "codePostal": "34210", + "codeCommune": "34006", + "libelleAcheminement": "AIGNE", + "nomCommune": "AIGNE" }, { - "codePostal": "62310", - "codeCommune": "62659", - "libelleAcheminement": "PLANQUES", - "nomCommune": "PLANQUES" + "codePostal": "35160", + "codeCommune": "35351", + "libelleAcheminement": "LE VERGER", + "nomCommune": "LE VERGER" }, { - "codePostal": "11420", - "codeCommune": "11277", - "libelleAcheminement": "PECHARIC ET LE PY", - "nomCommune": "PECHARIC ET LE PY" + "codePostal": "50150", + "codeCommune": "50040", + "libelleAcheminement": "BEAUFICEL", + "nomCommune": "BEAUFICEL" }, { - "codePostal": "28480", - "codeCommune": "28086", - "libelleAcheminement": "CHASSANT", - "nomCommune": "CHASSANT" + "codePostal": "49350", + "codeCommune": "49261", + "libelleAcheminement": "GENNES VAL DE LOIRE", + "nomCommune": "GENNES VAL DE LOIRE" }, { - "codePostal": "39380", - "codeCommune": "39305", - "libelleAcheminement": "LA LOYE", - "nomCommune": "LA LOYE" + "codePostal": "34210", + "codeCommune": "34007", + "libelleAcheminement": "AIGUES VIVES", + "nomCommune": "AIGUES VIVES" }, { - "codePostal": "62370", - "codeCommune": "62662", - "libelleAcheminement": "POLINCOVE", - "nomCommune": "POLINCOVE" + "codePostal": "35770", + "codeCommune": "35352", + "libelleAcheminement": "VERN SUR SEICHE", + "nomCommune": "VERN SUR SEICHE" }, { - "codePostal": "11420", - "codeCommune": "11290", - "libelleAcheminement": "PLAIGNE", - "nomCommune": "PLAIGNE" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "28300", - "codeCommune": "28102", - "libelleAcheminement": "CLEVILLIERS", - "nomCommune": "CLEVILLIERS" + "codePostal": "49170", + "codeCommune": "49283", + "libelleAcheminement": "ST GEORGES SUR LOIRE", + "nomCommune": "ST GEORGES SUR LOIRE" }, { - "codePostal": "39210", - "codeCommune": "39317", - "libelleAcheminement": "LA MARRE", - "nomCommune": "LA MARRE" + "codePostal": "34600", + "codeCommune": "34008", + "libelleAcheminement": "LES AIRES", + "nomCommune": "LES AIRES" }, { - "codePostal": "62380", - "codeCommune": "62675", - "libelleAcheminement": "QUERCAMPS", - "nomCommune": "QUERCAMPS" + "codePostal": "35130", + "codeCommune": "35359", + "libelleAcheminement": "VISSEICHE", + "nomCommune": "VISSEICHE" }, { - "codePostal": "11250", - "codeCommune": "11293", - "libelleAcheminement": "POMAS", - "nomCommune": "POMAS" + "codePostal": "50160", + "codeCommune": "50054", + "libelleAcheminement": "BIEVILLE", + "nomCommune": "BIEVILLE" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "49280", + "codeCommune": "49299", + "libelleAcheminement": "ST LEGER SOUS CHOLET", + "nomCommune": "ST LEGER SOUS CHOLET" }, { - "codePostal": "39210", - "codeCommune": "39321", - "libelleAcheminement": "MENETRU LE VIGNOBLE", - "nomCommune": "MENETRU LE VIGNOBLE" + "codePostal": "34290", + "codeCommune": "34009", + "libelleAcheminement": "ALIGNAN DU VENT", + "nomCommune": "ALIGNAN DU VENT" }, { - "codePostal": "62120", - "codeCommune": "62676", - "libelleAcheminement": "QUERNES", - "nomCommune": "QUERNES" + "codePostal": "36120", + "codeCommune": "36003", + "libelleAcheminement": "AMBRAULT", + "nomCommune": "AMBRAULT" }, { - "codePostal": "11300", - "codeCommune": "11294", - "libelleAcheminement": "POMY", - "nomCommune": "POMY" + "codePostal": "50360", + "codeCommune": "50064", + "libelleAcheminement": "LA BONNEVILLE", + "nomCommune": "LA BONNEVILLE" }, { - "codePostal": "28630", - "codeCommune": "28110", - "libelleAcheminement": "LE COUDRAY", - "nomCommune": "LE COUDRAY" + "codePostal": "49230", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "39800", - "codeCommune": "39336", - "libelleAcheminement": "MOLAIN", - "nomCommune": "MOLAIN" + "codePostal": "34540", + "codeCommune": "34024", + "libelleAcheminement": "BALARUC LE VIEUX", + "nomCommune": "BALARUC LE VIEUX" }, { - "codePostal": "62240", - "codeCommune": "62678", - "libelleAcheminement": "QUESQUES", - "nomCommune": "QUESQUES" + "codePostal": "36210", + "codeCommune": "36004", + "libelleAcheminement": "ANJOUIN", + "nomCommune": "ANJOUIN" }, { - "codePostal": "11700", - "codeCommune": "11301", - "libelleAcheminement": "PUICHERIC", - "nomCommune": "PUICHERIC" + "codePostal": "50480", + "codeCommune": "50070", + "libelleAcheminement": "BOUTTEVILLE", + "nomCommune": "BOUTTEVILLE" }, { - "codePostal": "28210", - "codeCommune": "28113", - "libelleAcheminement": "COULOMBS", - "nomCommune": "COULOMBS" + "codePostal": "49710", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "39320", - "codeCommune": "39343", - "libelleAcheminement": "MONNETAY", - "nomCommune": "MONNETAY" + "codePostal": "34140", + "codeCommune": "34039", + "libelleAcheminement": "BOUZIGUES", + "nomCommune": "BOUZIGUES" }, { - "codePostal": "62120", - "codeCommune": "62681", - "libelleAcheminement": "QUIESTEDE", - "nomCommune": "QUIESTEDE" + "codePostal": "36330", + "codeCommune": "36009", + "libelleAcheminement": "ARTHON", + "nomCommune": "ARTHON" }, { - "codePostal": "11140", - "codeCommune": "11302", - "libelleAcheminement": "PUILAURENS", - "nomCommune": "PUILAURENS" + "codePostal": "50260", + "codeCommune": "50082", + "libelleAcheminement": "BRICQUEBEC EN COTENTIN", + "nomCommune": "BRICQUEBEC EN COTENTIN" }, { - "codePostal": "28140", - "codeCommune": "28114", - "libelleAcheminement": "COURBEHAYE", - "nomCommune": "COURBEHAYE" + "codePostal": "49260", + "codeCommune": "49302", + "libelleAcheminement": "ST MACAIRE DU BOIS", + "nomCommune": "ST MACAIRE DU BOIS" }, { - "codePostal": "39160", - "codeCommune": "39346", - "libelleAcheminement": "MONTAGNA LE RECONDUIT", - "nomCommune": "MONTAGNA LE RECONDUIT" + "codePostal": "34800", + "codeCommune": "34041", + "libelleAcheminement": "BRIGNAC", + "nomCommune": "BRIGNAC" }, { - "codePostal": "62130", - "codeCommune": "62686", - "libelleAcheminement": "RAMECOURT", - "nomCommune": "RAMECOURT" + "codePostal": "36270", + "codeCommune": "36012", + "libelleAcheminement": "BARAIZE", + "nomCommune": "BARAIZE" }, { - "codePostal": "11230", - "codeCommune": "11303", - "libelleAcheminement": "PUIVERT", - "nomCommune": "PUIVERT" + "codePostal": "50750", + "codeCommune": "50095", + "libelleAcheminement": "CANISY", + "nomCommune": "CANISY" }, { - "codePostal": "28270", - "codeCommune": "28120", - "libelleAcheminement": "CRUCEY VILLAGES", - "nomCommune": "CRUCEY VILLAGES" + "codePostal": "49170", + "codeCommune": "49306", + "libelleAcheminement": "ST MARTIN DU FOUILLOUX", + "nomCommune": "ST MARTIN DU FOUILLOUX" }, { - "codePostal": "39570", - "codeCommune": "39348", - "libelleAcheminement": "MONTAIGU", - "nomCommune": "MONTAIGU" + "codePostal": "34230", + "codeCommune": "34047", + "libelleAcheminement": "CAMPAGNAN", + "nomCommune": "CAMPAGNAN" }, { - "codePostal": "62173", - "codeCommune": "62689", - "libelleAcheminement": "RANSART", - "nomCommune": "RANSART" + "codePostal": "36400", + "codeCommune": "36025", + "libelleAcheminement": "BRIANTES", + "nomCommune": "BRIANTES" }, { - "codePostal": "11190", - "codeCommune": "11309", - "libelleAcheminement": "RENNES LE CHATEAU", - "nomCommune": "RENNES LE CHATEAU" + "codePostal": "50570", + "codeCommune": "50098", + "libelleAcheminement": "CARANTILLY", + "nomCommune": "CARANTILLY" }, { - "codePostal": "28270", - "codeCommune": "28120", - "libelleAcheminement": "CRUCEY VILLAGES", - "nomCommune": "CRUCEY VILLAGES" + "codePostal": "49250", + "codeCommune": "49307", + "libelleAcheminement": "LOIRE AUTHION", + "nomCommune": "LOIRE AUTHION" }, { - "codePostal": "39700", - "codeCommune": "39352", - "libelleAcheminement": "MONTEPLAIN", - "nomCommune": "MONTEPLAIN" + "codePostal": "34600", + "codeCommune": "34053", + "libelleAcheminement": "CARLENCAS ET LEVAS", + "nomCommune": "CARLENCAS ET LEVAS" }, { - "codePostal": "62850", - "codeCommune": "62692", - "libelleAcheminement": "REBERGUES", - "nomCommune": "REBERGUES" + "codePostal": "36230", + "codeCommune": "36030", + "libelleAcheminement": "BUXIERES D AILLAC", + "nomCommune": "BUXIERES D AILLAC" }, { - "codePostal": "11190", - "codeCommune": "11310", - "libelleAcheminement": "RENNES LES BAINS", - "nomCommune": "RENNES LES BAINS" + "codePostal": "50480", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "28350", - "codeCommune": "28124", - "libelleAcheminement": "DAMPIERRE SUR AVRE", - "nomCommune": "DAMPIERRE SUR AVRE" + "codePostal": "49800", + "codeCommune": "49307", + "libelleAcheminement": "LOIRE AUTHION", + "nomCommune": "LOIRE AUTHION" }, { - "codePostal": "39320", - "codeCommune": "39363", - "libelleAcheminement": "MONTREVEL", - "nomCommune": "MONTREVEL" + "codePostal": "34380", + "codeCommune": "34060", + "libelleAcheminement": "CAUSSE DE LA SELLE", + "nomCommune": "CAUSSE DE LA SELLE" }, { - "codePostal": "62150", - "codeCommune": "62693", - "libelleAcheminement": "REBREUVE RANCHICOURT", - "nomCommune": "REBREUVE RANCHICOURT" + "codePostal": "36200", + "codeCommune": "36032", + "libelleAcheminement": "CEAULMONT", + "nomCommune": "CEAULMONT" }, { - "codePostal": "11270", - "codeCommune": "11312", - "libelleAcheminement": "RIBOUISSE", - "nomCommune": "RIBOUISSE" + "codePostal": "50500", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "28190", - "codeCommune": "28128", - "libelleAcheminement": "DANGERS", - "nomCommune": "DANGERS" + "codePostal": "49800", + "codeCommune": "49307", + "libelleAcheminement": "LOIRE AUTHION", + "nomCommune": "LOIRE AUTHION" }, { - "codePostal": "39400", - "codeCommune": "39367", - "libelleAcheminement": "MORBIER", - "nomCommune": "MORBIER" + "codePostal": "34600", + "codeCommune": "34062", + "libelleAcheminement": "CAUSSINIOJOULS", + "nomCommune": "CAUSSINIOJOULS" }, { - "codePostal": "62270", - "codeCommune": "62694", - "libelleAcheminement": "REBREUVE SUR CANCHE", - "nomCommune": "REBREUVE SUR CANCHE" + "codePostal": "36210", + "codeCommune": "36034", + "libelleAcheminement": "CHABRIS", + "nomCommune": "CHABRIS" }, { - "codePostal": "11220", - "codeCommune": "11314", - "libelleAcheminement": "RIEUX EN VAL", - "nomCommune": "RIEUX EN VAL" + "codePostal": "50330", + "codeCommune": "50101", + "libelleAcheminement": "CARNEVILLE", + "nomCommune": "CARNEVILLE" }, { - "codePostal": "28100", - "codeCommune": "28134", - "libelleAcheminement": "DREUX", - "nomCommune": "DREUX" + "codePostal": "49310", + "codeCommune": "49310", + "libelleAcheminement": "ST PAUL DU BOIS", + "nomCommune": "ST PAUL DU BOIS" }, { - "codePostal": "39330", - "codeCommune": "39370", - "libelleAcheminement": "MOUCHARD", - "nomCommune": "MOUCHARD" + "codePostal": "34700", + "codeCommune": "34072", + "libelleAcheminement": "CELLES", + "nomCommune": "CELLES" }, { - "codePostal": "62560", - "codeCommune": "62696", - "libelleAcheminement": "RECLINGHEM", - "nomCommune": "RECLINGHEM" + "codePostal": "36160", + "codeCommune": "36038", + "libelleAcheminement": "CHAMPILLET", + "nomCommune": "CHAMPILLET" }, { - "codePostal": "11290", - "codeCommune": "11327", - "libelleAcheminement": "ROULLENS", - "nomCommune": "ROULLENS" + "codePostal": "50620", + "codeCommune": "50106", + "libelleAcheminement": "CAVIGNY", + "nomCommune": "CAVIGNY" }, { - "codePostal": "28190", - "codeCommune": "28148", - "libelleAcheminement": "LE FAVRIL", - "nomCommune": "LE FAVRIL" + "codePostal": "49400", + "codeCommune": "49328", + "libelleAcheminement": "SAUMUR", + "nomCommune": "SAUMUR" }, { - "codePostal": "39310", - "codeCommune": "39373", - "libelleAcheminement": "LES MOUSSIERES", - "nomCommune": "LES MOUSSIERES" + "codePostal": "34800", + "codeCommune": "34079", + "libelleAcheminement": "CLERMONT L HERAULT", + "nomCommune": "CLERMONT L HERAULT" }, { - "codePostal": "62560", - "codeCommune": "62704", - "libelleAcheminement": "RENTY", - "nomCommune": "RENTY" + "codePostal": "36150", + "codeCommune": "36041", + "libelleAcheminement": "LA CHAPELLE ST LAURIAN", + "nomCommune": "LA CHAPELLE ST LAURIAN" }, { - "codePostal": "11800", - "codeCommune": "11330", - "libelleAcheminement": "RUSTIQUES", - "nomCommune": "RUSTIQUES" + "codePostal": "50220", + "codeCommune": "50108", + "libelleAcheminement": "CEAUX", + "nomCommune": "CEAUX" }, { - "codePostal": "28190", - "codeCommune": "28154", - "libelleAcheminement": "FONTAINE LA GUYON", - "nomCommune": "FONTAINE LA GUYON" + "codePostal": "49400", + "codeCommune": "49328", + "libelleAcheminement": "SAUMUR", + "nomCommune": "SAUMUR" }, { - "codePostal": "39270", - "codeCommune": "39375", - "libelleAcheminement": "MOUTONNE", - "nomCommune": "MOUTONNE" + "codePostal": "34390", + "codeCommune": "34080", + "libelleAcheminement": "COLOMBIERES SUR ORB", + "nomCommune": "COLOMBIERES SUR ORB" }, { - "codePostal": "62136", - "codeCommune": "62706", - "libelleAcheminement": "RICHEBOURG", - "nomCommune": "RICHEBOURG" + "codePostal": "36800", + "codeCommune": "36042", + "libelleAcheminement": "CHASSENEUIL", + "nomCommune": "CHASSENEUIL" }, { - "codePostal": "11200", - "codeCommune": "11332", - "libelleAcheminement": "ST ANDRE DE ROQUELONGUE", - "nomCommune": "ST ANDRE DE ROQUELONGUE" + "codePostal": "50680", + "codeCommune": "50110", + "libelleAcheminement": "CERISY LA FORET", + "nomCommune": "CERISY LA FORET" }, { - "codePostal": "28190", - "codeCommune": "28167", - "libelleAcheminement": "FRUNCE", - "nomCommune": "FRUNCE" + "codePostal": "49170", + "codeCommune": "49329", + "libelleAcheminement": "SAVENNIERES", + "nomCommune": "SAVENNIERES" }, { - "codePostal": "39160", - "codeCommune": "39378", - "libelleAcheminement": "LES TROIS CHATEAUX", - "nomCommune": "LES TROIS CHATEAUX" + "codePostal": "34440", + "codeCommune": "34081", + "libelleAcheminement": "COLOMBIERS", + "nomCommune": "COLOMBIERS" }, { - "codePostal": "62182", - "codeCommune": "62709", - "libelleAcheminement": "RIENCOURT LES CAGNICOURT", - "nomCommune": "RIENCOURT LES CAGNICOURT" + "codePostal": "36100", + "codeCommune": "36052", + "libelleAcheminement": "CHOUDAY", + "nomCommune": "CHOUDAY" }, { - "codePostal": "11300", - "codeCommune": "11338", - "libelleAcheminement": "ST COUAT DU RAZES", - "nomCommune": "ST COUAT DU RAZES" + "codePostal": "50100", + "codeCommune": "50129", + "libelleAcheminement": "CHERBOURG EN COTENTIN", + "nomCommune": "CHERBOURG EN COTENTIN" }, { - "codePostal": "28320", - "codeCommune": "28168", - "libelleAcheminement": "GALLARDON", - "nomCommune": "GALLARDON" + "codePostal": "49170", + "codeCommune": "49329", + "libelleAcheminement": "SAVENNIERES", + "nomCommune": "SAVENNIERES" }, { - "codePostal": "39140", - "codeCommune": "39379", - "libelleAcheminement": "NANCE", - "nomCommune": "NANCE" + "codePostal": "34490", + "codeCommune": "34084", + "libelleAcheminement": "CORNEILHAN", + "nomCommune": "CORNEILHAN" }, { - "codePostal": "62173", - "codeCommune": "62712", - "libelleAcheminement": "RIVIERE", - "nomCommune": "RIVIERE" + "codePostal": "36130", + "codeCommune": "36057", + "libelleAcheminement": "COINGS", + "nomCommune": "COINGS" }, { - "codePostal": "11310", - "codeCommune": "11339", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "50460", + "codeCommune": "50129", + "libelleAcheminement": "CHERBOURG EN COTENTIN", + "nomCommune": "CHERBOURG EN COTENTIN" }, { - "codePostal": "28700", - "codeCommune": "28169", - "libelleAcheminement": "GARANCIERES EN BEAUCE", - "nomCommune": "GARANCIERES EN BEAUCE" + "codePostal": "49330", + "codeCommune": "49330", + "libelleAcheminement": "SCEAUX D ANJOU", + "nomCommune": "SCEAUX D ANJOU" }, { - "codePostal": "39270", - "codeCommune": "39380", - "libelleAcheminement": "NANCUISE", - "nomCommune": "NANCUISE" + "codePostal": "34660", + "codeCommune": "34088", + "libelleAcheminement": "COURNONTERRAL", + "nomCommune": "COURNONTERRAL" }, { - "codePostal": "62450", - "codeCommune": "62715", - "libelleAcheminement": "ROCQUIGNY", - "nomCommune": "ROCQUIGNY" + "codePostal": "36240", + "codeCommune": "36069", + "libelleAcheminement": "ECUEILLE", + "nomCommune": "ECUEILLE" }, { - "codePostal": "11170", - "codeCommune": "11340", - "libelleAcheminement": "STE EULALIE", - "nomCommune": "STE EULALIE" + "codePostal": "50330", + "codeCommune": "50142", + "libelleAcheminement": "VICQ SUR MER", + "nomCommune": "VICQ SUR MER" }, { - "codePostal": "28500", - "codeCommune": "28178", - "libelleAcheminement": "GERMAINVILLE", - "nomCommune": "GERMAINVILLE" + "codePostal": "49140", + "codeCommune": "49333", + "libelleAcheminement": "SEICHES SUR LE LOIR", + "nomCommune": "SEICHES SUR LE LOIR" }, { - "codePostal": "39380", - "codeCommune": "39387", - "libelleAcheminement": "NEVY LES DOLE", - "nomCommune": "NEVY LES DOLE" + "codePostal": "34650", + "codeCommune": "34093", + "libelleAcheminement": "DIO ET VALQUIERES", + "nomCommune": "DIO ET VALQUIERES" }, { - "codePostal": "62320", - "codeCommune": "62724", - "libelleAcheminement": "ROUVROY", - "nomCommune": "ROUVROY" + "codePostal": "36150", + "codeCommune": "36075", + "libelleAcheminement": "FONTENAY", + "nomCommune": "FONTENAY" }, { - "codePostal": "11250", - "codeCommune": "11344", - "libelleAcheminement": "ST HILAIRE", - "nomCommune": "ST HILAIRE" + "codePostal": "50670", + "codeCommune": "50144", + "libelleAcheminement": "COULOUVRAY BOISBENATRE", + "nomCommune": "COULOUVRAY BOISBENATRE" }, { - "codePostal": "28310", - "codeCommune": "28183", - "libelleAcheminement": "GOMMERVILLE", - "nomCommune": "GOMMERVILLE" + "codePostal": "49400", + "codeCommune": "49341", + "libelleAcheminement": "SOUZAY CHAMPIGNY", + "nomCommune": "SOUZAY CHAMPIGNY" }, { - "codePostal": "39210", - "codeCommune": "39388", - "libelleAcheminement": "NEVY SUR SEILLE", - "nomCommune": "NEVY SUR SEILLE" + "codePostal": "34270", + "codeCommune": "34102", + "libelleAcheminement": "FONTANES", + "nomCommune": "FONTANES" }, { - "codePostal": "62113", - "codeCommune": "62735", - "libelleAcheminement": "SAILLY LABOURSE", - "nomCommune": "SAILLY LABOURSE" + "codePostal": "36150", + "codeCommune": "36083", + "libelleAcheminement": "GIROUX", + "nomCommune": "GIROUX" }, { - "codePostal": "11500", - "codeCommune": "11352", - "libelleAcheminement": "ST LOUIS ET PARAHOU", - "nomCommune": "ST LOUIS ET PARAHOU" + "codePostal": "50630", + "codeCommune": "50150", + "libelleAcheminement": "CRASVILLE", + "nomCommune": "CRASVILLE" }, { - "codePostal": "28700", - "codeCommune": "28183", - "libelleAcheminement": "GOMMERVILLE", - "nomCommune": "GOMMERVILLE" + "codePostal": "49380", + "codeCommune": "49345", + "libelleAcheminement": "BELLEVIGNE EN LAYON", + "nomCommune": "BELLEVIGNE EN LAYON" }, { - "codePostal": "39570", - "codeCommune": "39390", - "libelleAcheminement": "NOGNA", - "nomCommune": "NOGNA" + "codePostal": "34160", + "codeCommune": "34110", + "libelleAcheminement": "GALARGUES", + "nomCommune": "GALARGUES" }, { - "codePostal": "62840", - "codeCommune": "62736", - "libelleAcheminement": "SAILLY SUR LA LYS", - "nomCommune": "SAILLY SUR LA LYS" + "codePostal": "36110", + "codeCommune": "36093", + "libelleAcheminement": "LEVROUX", + "nomCommune": "LEVROUX" }, { - "codePostal": "11300", - "codeCommune": "11355", - "libelleAcheminement": "ST MARTIN DE VILLEREGLAN", - "nomCommune": "ST MARTIN DE VILLEREGLAN" + "codePostal": "50670", + "codeCommune": "50158", + "libelleAcheminement": "CUVES", + "nomCommune": "CUVES" }, { - "codePostal": "28310", - "codeCommune": "28184", - "libelleAcheminement": "GOUILLONS", - "nomCommune": "GOUILLONS" + "codePostal": "49380", + "codeCommune": "49345", + "libelleAcheminement": "BELLEVIGNE EN LAYON", + "nomCommune": "BELLEVIGNE EN LAYON" }, { - "codePostal": "39290", - "codeCommune": "39392", - "libelleAcheminement": "OFFLANGES", - "nomCommune": "OFFLANGES" + "codePostal": "34160", + "codeCommune": "34112", + "libelleAcheminement": "GARRIGUES", + "nomCommune": "GARRIGUES" }, { - "codePostal": "62114", - "codeCommune": "62737", - "libelleAcheminement": "SAINS EN GOHELLE", - "nomCommune": "SAINS EN GOHELLE" + "codePostal": "36110", + "codeCommune": "36093", + "libelleAcheminement": "LEVROUX", + "nomCommune": "LEVROUX" }, { - "codePostal": "11220", - "codeCommune": "11363", - "libelleAcheminement": "ST PIERRE DES CHAMPS", - "nomCommune": "ST PIERRE DES CHAMPS" + "codePostal": "50350", + "codeCommune": "50165", + "libelleAcheminement": "DONVILLE LES BAINS", + "nomCommune": "DONVILLE LES BAINS" }, { - "codePostal": "28130", - "codeCommune": "28195", - "libelleAcheminement": "HOUX", - "nomCommune": "HOUX" + "codePostal": "49750", + "codeCommune": "49345", + "libelleAcheminement": "BELLEVIGNE EN LAYON", + "nomCommune": "BELLEVIGNE EN LAYON" }, { - "codePostal": "39800", - "codeCommune": "39401", - "libelleAcheminement": "OUSSIERES", - "nomCommune": "OUSSIERES" + "codePostal": "34830", + "codeCommune": "34120", + "libelleAcheminement": "JACOU", + "nomCommune": "JACOU" }, { - "codePostal": "62760", - "codeCommune": "62741", - "libelleAcheminement": "ST AMAND", - "nomCommune": "ST AMAND" + "codePostal": "36150", + "codeCommune": "36097", + "libelleAcheminement": "LINIEZ", + "nomCommune": "LINIEZ" }, { - "codePostal": "11310", - "codeCommune": "11367", - "libelleAcheminement": "SAISSAC", - "nomCommune": "SAISSAC" + "codePostal": "50250", + "codeCommune": "50166", + "libelleAcheminement": "DOVILLE", + "nomCommune": "DOVILLE" }, { - "codePostal": "28200", - "codeCommune": "28198", - "libelleAcheminement": "JALLANS", - "nomCommune": "JALLANS" + "codePostal": "49340", + "codeCommune": "49355", + "libelleAcheminement": "TREMENTINES", + "nomCommune": "TREMENTINES" }, { - "codePostal": "39570", - "codeCommune": "39404", - "libelleAcheminement": "PANNESSIERES", - "nomCommune": "PANNESSIERES" + "codePostal": "34270", + "codeCommune": "34131", + "libelleAcheminement": "LAURET", + "nomCommune": "LAURET" }, { - "codePostal": "62170", - "codeCommune": "62742", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "36400", + "codeCommune": "36100", + "libelleAcheminement": "LOUROUER ST LAURENT", + "nomCommune": "LOUROUER ST LAURENT" }, { - "codePostal": "11190", - "codeCommune": "11376", - "libelleAcheminement": "LA SERPENT", - "nomCommune": "LA SERPENT" + "codePostal": "50530", + "codeCommune": "50167", + "libelleAcheminement": "DRAGEY RONTHON", + "nomCommune": "DRAGEY RONTHON" }, { - "codePostal": "28310", - "codeCommune": "28199", - "libelleAcheminement": "JANVILLE EN BEAUCE", - "nomCommune": "JANVILLE EN BEAUCE" + "codePostal": "49730", + "codeCommune": "49358", + "libelleAcheminement": "TURQUANT", + "nomCommune": "TURQUANT" }, { - "codePostal": "39230", - "codeCommune": "39407", - "libelleAcheminement": "PASSENANS", - "nomCommune": "PASSENANS" + "codePostal": "34700", + "codeCommune": "34132", + "libelleAcheminement": "LAUROUX", + "nomCommune": "LAUROUX" }, { - "codePostal": "62140", - "codeCommune": "62743", - "libelleAcheminement": "STE AUSTREBERTHE", - "nomCommune": "STE AUSTREBERTHE" + "codePostal": "36350", + "codeCommune": "36101", + "libelleAcheminement": "LUANT", + "nomCommune": "LUANT" }, { - "codePostal": "11400", - "codeCommune": "11382", - "libelleAcheminement": "SOUILHANELS", - "nomCommune": "SOUILHANELS" + "codePostal": "50260", + "codeCommune": "50176", + "libelleAcheminement": "L ETANG BERTRAND", + "nomCommune": "L ETANG BERTRAND" }, { - "codePostal": "28300", - "codeCommune": "28201", - "libelleAcheminement": "JOUY", - "nomCommune": "JOUY" + "codePostal": "49400", + "codeCommune": "49370", + "libelleAcheminement": "VERRIE", + "nomCommune": "VERRIE" }, { - "codePostal": "39290", - "codeCommune": "39409", - "libelleAcheminement": "PEINTRE", - "nomCommune": "PEINTRE" + "codePostal": "34800", + "codeCommune": "34138", + "libelleAcheminement": "LIEURAN CABRIERES", + "nomCommune": "LIEURAN CABRIERES" }, { - "codePostal": "62990", - "codeCommune": "62745", - "libelleAcheminement": "ST DENOEUX", - "nomCommune": "ST DENOEUX" + "codePostal": "36150", + "codeCommune": "36102", + "libelleAcheminement": "LUCAY LE LIBRE", + "nomCommune": "LUCAY LE LIBRE" }, { - "codePostal": "11320", - "codeCommune": "11385", - "libelleAcheminement": "SOUPEX", - "nomCommune": "SOUPEX" + "codePostal": "50190", + "codeCommune": "50182", + "libelleAcheminement": "LA FEUILLIE", + "nomCommune": "LA FEUILLIE" }, { - "codePostal": "28700", - "codeCommune": "28208", - "libelleAcheminement": "LEVAINVILLE", - "nomCommune": "LEVAINVILLE" + "codePostal": "49310", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "39210", - "codeCommune": "39422", - "libelleAcheminement": "PLAINOISEAU", - "nomCommune": "PLAINOISEAU" + "codePostal": "34490", + "codeCommune": "34140", + "libelleAcheminement": "LIGNAN SUR ORB", + "nomCommune": "LIGNAN SUR ORB" }, { - "codePostal": "62360", - "codeCommune": "62746", - "libelleAcheminement": "PONT DE BRIQUES ST ETIENNE", - "nomCommune": "ST ETIENNE AU MONT" + "codePostal": "36220", + "codeCommune": "36104", + "libelleAcheminement": "LURAIS", + "nomCommune": "LURAIS" }, { - "codePostal": "11380", - "codeCommune": "11391", - "libelleAcheminement": "LA TOURETTE CABARDES", - "nomCommune": "LA TOURETTE CABARDES" + "codePostal": "50580", + "codeCommune": "50183", + "libelleAcheminement": "FIERVILLE LES MINES", + "nomCommune": "FIERVILLE LES MINES" }, { - "codePostal": "28500", - "codeCommune": "28216", - "libelleAcheminement": "LOUVILLIERS EN DROUAIS", - "nomCommune": "LOUVILLIERS EN DROUAIS" + "codePostal": "49310", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "39150", - "codeCommune": "39424", - "libelleAcheminement": "LES PLANCHES EN MONTAGNE", - "nomCommune": "LES PLANCHES EN MONTAGNE" + "codePostal": "34700", + "codeCommune": "34142", + "libelleAcheminement": "LODEVE", + "nomCommune": "LODEVE" }, { - "codePostal": "62500", - "codeCommune": "62757", - "libelleAcheminement": "ST MARTIN LEZ TATINGHEM", - "nomCommune": "ST MARTIN LEZ TATINGHEM" + "codePostal": "36600", + "codeCommune": "36107", + "libelleAcheminement": "LYE", + "nomCommune": "LYE" }, { - "codePostal": "11200", - "codeCommune": "11393", - "libelleAcheminement": "TOUROUZELLE", - "nomCommune": "TOUROUZELLE" + "codePostal": "50700", + "codeCommune": "50186", + "libelleAcheminement": "FLOTTEMANVILLE", + "nomCommune": "FLOTTEMANVILLE" }, { - "codePostal": "28120", - "codeCommune": "28234", - "libelleAcheminement": "MARCHEVILLE", - "nomCommune": "MARCHEVILLE" + "codePostal": "49310", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "39250", - "codeCommune": "39427", - "libelleAcheminement": "PLENISE", - "nomCommune": "PLENISE" + "codePostal": "34320", + "codeCommune": "34149", + "libelleAcheminement": "MARGON", + "nomCommune": "MARGON" }, { - "codePostal": "62650", - "codeCommune": "62762", - "libelleAcheminement": "ST MICHEL SOUS BOIS", - "nomCommune": "ST MICHEL SOUS BOIS" + "codePostal": "36120", + "codeCommune": "36112", + "libelleAcheminement": "MARON", + "nomCommune": "MARON" }, { - "codePostal": "11510", - "codeCommune": "11398", - "libelleAcheminement": "TREILLES", - "nomCommune": "TREILLES" + "codePostal": "50320", + "codeCommune": "50188", + "libelleAcheminement": "FOLLIGNY", + "nomCommune": "FOLLIGNY" }, { - "codePostal": "28500", - "codeCommune": "28239", - "libelleAcheminement": "MARVILLE MOUTIERS BRULE", - "nomCommune": "MARVILLE MOUTIERS BRULE" + "codePostal": "49310", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "39800", - "codeCommune": "39434", - "libelleAcheminement": "POLIGNY", - "nomCommune": "POLIGNY" + "codePostal": "34130", + "codeCommune": "34154", + "libelleAcheminement": "MAUGUIO", + "nomCommune": "MAUGUIO" }, { - "codePostal": "62130", - "codeCommune": "62763", - "libelleAcheminement": "ST MICHEL SUR TERNOISE", - "nomCommune": "ST MICHEL SUR TERNOISE" + "codePostal": "36370", + "codeCommune": "36114", + "libelleAcheminement": "MAUVIERES", + "nomCommune": "MAUVIERES" }, { - "codePostal": "11580", - "codeCommune": "11402", - "libelleAcheminement": "VALMIGERE", - "nomCommune": "VALMIGERE" + "codePostal": "50450", + "codeCommune": "50197", + "libelleAcheminement": "GAVRAY SUR SIENNE", + "nomCommune": "GAVRAY SUR SIENNE" }, { - "codePostal": "28700", - "codeCommune": "28257", - "libelleAcheminement": "MONDONVILLE ST JEAN", - "nomCommune": "MONDONVILLE ST JEAN" + "codePostal": "49310", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "39110", - "codeCommune": "39436", - "libelleAcheminement": "PONT D HERY", - "nomCommune": "PONT D HERY" + "codePostal": "34370", + "codeCommune": "34155", + "libelleAcheminement": "MAUREILHAN", + "nomCommune": "MAUREILHAN" }, { - "codePostal": "62185", - "codeCommune": "62769", - "libelleAcheminement": "ST TRICAT", - "nomCommune": "ST TRICAT" + "codePostal": "36100", + "codeCommune": "36121", + "libelleAcheminement": "MEUNET PLANCHES", + "nomCommune": "MEUNET PLANCHES" }, { - "codePostal": "11610", - "codeCommune": "11404", - "libelleAcheminement": "VENTENAC CABARDES", - "nomCommune": "VENTENAC CABARDES" + "codePostal": "50560", + "codeCommune": "50198", + "libelleAcheminement": "GEFFOSSES", + "nomCommune": "GEFFOSSES" }, { - "codePostal": "28120", - "codeCommune": "28261", - "libelleAcheminement": "MONTIGNY LE CHARTIF", - "nomCommune": "MONTIGNY LE CHARTIF" + "codePostal": "49400", + "codeCommune": "49374", + "libelleAcheminement": "VILLEBERNIER", + "nomCommune": "VILLEBERNIER" }, { - "codePostal": "39110", - "codeCommune": "39436", - "libelleAcheminement": "PONT D HERY", - "nomCommune": "PONT D HERY" + "codePostal": "34210", + "codeCommune": "34158", + "libelleAcheminement": "MINERVE", + "nomCommune": "MINERVE" }, { - "codePostal": "62430", - "codeCommune": "62771", - "libelleAcheminement": "SALLAUMINES", - "nomCommune": "SALLAUMINES" + "codePostal": "36170", + "codeCommune": "36134", + "libelleAcheminement": "MOUHET", + "nomCommune": "MOUHET" }, { - "codePostal": "11600", - "codeCommune": "11410", - "libelleAcheminement": "VILLALIER", - "nomCommune": "VILLALIER" + "codePostal": "50190", + "codeCommune": "50208", + "libelleAcheminement": "GONFREVILLE", + "nomCommune": "GONFREVILLE" }, { - "codePostal": "28240", - "codeCommune": "28265", - "libelleAcheminement": "MONTLANDON", - "nomCommune": "MONTLANDON" + "codePostal": "50180", + "codeCommune": "50002", + "libelleAcheminement": "AGNEAUX", + "nomCommune": "AGNEAUX" }, { - "codePostal": "39400", - "codeCommune": "39441", - "libelleAcheminement": "PREMANON", - "nomCommune": "PREMANON" + "codePostal": "34110", + "codeCommune": "34159", + "libelleAcheminement": "MIREVAL", + "nomCommune": "MIREVAL" }, { - "codePostal": "62231", - "codeCommune": "62774", - "libelleAcheminement": "SANGATTE", - "nomCommune": "SANGATTE" + "codePostal": "36110", + "codeCommune": "36135", + "libelleAcheminement": "MOULINS SUR CEPHONS", + "nomCommune": "MOULINS SUR CEPHONS" }, { - "codePostal": "11580", - "codeCommune": "11412", - "libelleAcheminement": "VILLARDEBELLE", - "nomCommune": "VILLARDEBELLE" + "codePostal": "50330", + "codeCommune": "50209", + "libelleAcheminement": "GONNEVILLE LE THEIL", + "nomCommune": "GONNEVILLE LE THEIL" }, { - "codePostal": "28630", - "codeCommune": "28269", - "libelleAcheminement": "MORANCEZ", - "nomCommune": "MORANCEZ" + "codePostal": "50400", + "codeCommune": "50008", + "libelleAcheminement": "ANCTOVILLE SUR BOSCQ", + "nomCommune": "ANCTOVILLE SUR BOSCQ" }, { - "codePostal": "39270", - "codeCommune": "39443", - "libelleAcheminement": "PRESILLY", - "nomCommune": "PRESILLY" + "codePostal": "34390", + "codeCommune": "34160", + "libelleAcheminement": "MONS", + "nomCommune": "MONS" }, { - "codePostal": "62690", - "codeCommune": "62785", - "libelleAcheminement": "SAVY BERLETTE", - "nomCommune": "SAVY BERLETTE" + "codePostal": "36700", + "codeCommune": "36136", + "libelleAcheminement": "MURS", + "nomCommune": "MURS" }, { - "codePostal": "11220", - "codeCommune": "11414", - "libelleAcheminement": "VILLAR EN VAL", - "nomCommune": "VILLAR EN VAL" + "codePostal": "50420", + "codeCommune": "50214", + "libelleAcheminement": "GOUVETS", + "nomCommune": "GOUVETS" }, { - "codePostal": "28800", - "codeCommune": "28270", - "libelleAcheminement": "MORIERS", - "nomCommune": "MORIERS" + "codePostal": "50500", + "codeCommune": "50016", + "libelleAcheminement": "APPEVILLE", + "nomCommune": "APPEVILLE" }, { - "codePostal": "39230", - "codeCommune": "39454", - "libelleAcheminement": "RECANOZ", - "nomCommune": "RECANOZ" + "codePostal": "34570", + "codeCommune": "34163", + "libelleAcheminement": "MONTARNAUD", + "nomCommune": "MONTARNAUD" }, { - "codePostal": "62240", - "codeCommune": "62789", - "libelleAcheminement": "SENLECQUES", - "nomCommune": "SENLECQUES" + "codePostal": "36250", + "codeCommune": "36142", + "libelleAcheminement": "NIHERNE", + "nomCommune": "NIHERNE" }, { - "codePostal": "11230", - "codeCommune": "11424", - "libelleAcheminement": "VILLEFORT", - "nomCommune": "VILLEFORT" + "codePostal": "50620", + "codeCommune": "50216", + "libelleAcheminement": "GRAIGNES MESNIL ANGOT", + "nomCommune": "GRAIGNES MESNIL ANGOT" }, { - "codePostal": "28340", - "codeCommune": "28271", - "libelleAcheminement": "MORVILLIERS", - "nomCommune": "MORVILLIERS" + "codePostal": "50630", + "codeCommune": "50022", + "libelleAcheminement": "AUMEVILLE LESTRE", + "nomCommune": "AUMEVILLE LESTRE" }, { - "codePostal": "39360", - "codeCommune": "39463", - "libelleAcheminement": "ROGNA", - "nomCommune": "ROGNA" + "codePostal": "34160", + "codeCommune": "34164", + "libelleAcheminement": "MONTAUD", + "nomCommune": "MONTAUD" }, { - "codePostal": "62270", - "codeCommune": "62791", - "libelleAcheminement": "SERICOURT", - "nomCommune": "SERICOURT" + "codePostal": "36800", + "codeCommune": "36144", + "libelleAcheminement": "NURET LE FERRON", + "nomCommune": "NURET LE FERRON" }, { - "codePostal": "11360", - "codeCommune": "11431", - "libelleAcheminement": "VILLENEUVE LES CORBIERES", - "nomCommune": "VILLENEUVE LES CORBIERES" + "codePostal": "50200", + "codeCommune": "50219", + "libelleAcheminement": "GRATOT", + "nomCommune": "GRATOT" }, { - "codePostal": "28160", - "codeCommune": "28272", - "libelleAcheminement": "MOTTEREAU", - "nomCommune": "MOTTEREAU" + "codePostal": "50300", + "codeCommune": "50025", + "libelleAcheminement": "AVRANCHES", + "nomCommune": "AVRANCHES" }, { - "codePostal": "39270", - "codeCommune": "39468", - "libelleAcheminement": "ROTHONAY", - "nomCommune": "ROTHONAY" + "codePostal": "34090", + "codeCommune": "34172", + "libelleAcheminement": "MONTPELLIER", + "nomCommune": "MONTPELLIER" }, { - "codePostal": "62810", - "codeCommune": "62798", - "libelleAcheminement": "SOMBRIN", - "nomCommune": "SOMBRIN" + "codePostal": "36200", + "codeCommune": "36158", + "libelleAcheminement": "BADECON LE PIN", + "nomCommune": "BADECON LE PIN" }, { - "codePostal": "11170", - "codeCommune": "11437", - "libelleAcheminement": "VILLESEQUELANDE", - "nomCommune": "VILLESEQUELANDE" + "codePostal": "50410", + "codeCommune": "50225", + "libelleAcheminement": "LE GUISLAIN", + "nomCommune": "LE GUISLAIN" }, { - "codePostal": "28210", - "codeCommune": "28275", - "libelleAcheminement": "NERON", - "nomCommune": "NERON" + "codePostal": "50310", + "codeCommune": "50026", + "libelleAcheminement": "AZEVILLE", + "nomCommune": "AZEVILLE" }, { - "codePostal": "39220", - "codeCommune": "39470", - "libelleAcheminement": "LES ROUSSES", - "nomCommune": "LES ROUSSES" + "codePostal": "34490", + "codeCommune": "34178", + "libelleAcheminement": "MURVIEL LES BEZIERS", + "nomCommune": "MURVIEL LES BEZIERS" }, { - "codePostal": "62170", - "codeCommune": "62799", - "libelleAcheminement": "SORRUS", - "nomCommune": "SORRUS" + "codePostal": "36120", + "codeCommune": "36169", + "libelleAcheminement": "PRUNIERS", + "nomCommune": "PRUNIERS" }, { - "codePostal": "11220", - "codeCommune": "11440", - "libelleAcheminement": "VILLETRITOULS", - "nomCommune": "VILLETRITOULS" + "codePostal": "50410", + "codeCommune": "50234", + "libelleAcheminement": "LA HAYE BELLEFOND", + "nomCommune": "LA HAYE BELLEFOND" }, { - "codePostal": "28210", - "codeCommune": "28279", - "libelleAcheminement": "NOGENT LE ROI", - "nomCommune": "NOGENT LE ROI" + "codePostal": "50720", + "codeCommune": "50029", + "libelleAcheminement": "BARENTON", + "nomCommune": "BARENTON" }, { - "codePostal": "39400", - "codeCommune": "39470", - "libelleAcheminement": "LES ROUSSES", - "nomCommune": "LES ROUSSES" + "codePostal": "34800", + "codeCommune": "34186", + "libelleAcheminement": "OCTON", + "nomCommune": "OCTON" }, { - "codePostal": "62550", - "codeCommune": "62805", - "libelleAcheminement": "TANGRY", - "nomCommune": "TANGRY" + "codePostal": "36260", + "codeCommune": "36171", + "libelleAcheminement": "REUILLY", + "nomCommune": "REUILLY" }, { - "codePostal": "12220", - "codeCommune": "12003", - "libelleAcheminement": "LES ALBRES", - "nomCommune": "LES ALBRES" + "codePostal": "50170", + "codeCommune": "50253", + "libelleAcheminement": "HUISNES SUR MER", + "nomCommune": "HUISNES SUR MER" }, { - "codePostal": "28120", - "codeCommune": "28281", - "libelleAcheminement": "NOGENT SUR EURE", - "nomCommune": "NOGENT SUR EURE" + "codePostal": "50810", + "codeCommune": "50032", + "libelleAcheminement": "LA BARRE DE SEMILLY", + "nomCommune": "LA BARRE DE SEMILLY" }, { - "codePostal": "39200", - "codeCommune": "39478", - "libelleAcheminement": "ST CLAUDE", - "nomCommune": "ST CLAUDE" + "codePostal": "34210", + "codeCommune": "34189", + "libelleAcheminement": "OLONZAC", + "nomCommune": "OLONZAC" }, { - "codePostal": "62127", - "codeCommune": "62809", - "libelleAcheminement": "TERNAS", - "nomCommune": "TERNAS" + "codePostal": "36300", + "codeCommune": "36178", + "libelleAcheminement": "ST AIGNY", + "nomCommune": "ST AIGNY" }, { - "codePostal": "12260", - "codeCommune": "12007", - "libelleAcheminement": "AMBEYRAC", - "nomCommune": "AMBEYRAC" + "codePostal": "50540", + "codeCommune": "50256", + "libelleAcheminement": "ISIGNY LE BUAT", + "nomCommune": "ISIGNY LE BUAT" }, { - "codePostal": "28120", - "codeCommune": "28282", - "libelleAcheminement": "NONVILLIERS GRANDHOUX", - "nomCommune": "NONVILLIERS GRANDHOUX" + "codePostal": "50270", + "codeCommune": "50033", + "libelleAcheminement": "BAUBIGNY", + "nomCommune": "BAUBIGNY" }, { - "codePostal": "39200", - "codeCommune": "39478", - "libelleAcheminement": "ST CLAUDE", - "nomCommune": "ST CLAUDE" + "codePostal": "34490", + "codeCommune": "34191", + "libelleAcheminement": "PAILHES", + "nomCommune": "PAILHES" }, { - "codePostal": "62580", - "codeCommune": "62810", - "libelleAcheminement": "THELUS", - "nomCommune": "THELUS" + "codePostal": "36100", + "codeCommune": "36179", + "libelleAcheminement": "ST AOUSTRILLE", + "nomCommune": "ST AOUSTRILLE" }, { - "codePostal": "12360", - "codeCommune": "12009", - "libelleAcheminement": "ARNAC SUR DOURDOU", - "nomCommune": "ARNAC SUR DOURDOU" + "codePostal": "50540", + "codeCommune": "50256", + "libelleAcheminement": "ISIGNY LE BUAT", + "nomCommune": "ISIGNY LE BUAT" }, { - "codePostal": "28150", - "codeCommune": "28291", - "libelleAcheminement": "OUARVILLE", - "nomCommune": "OUARVILLE" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "39600", - "codeCommune": "39479", - "libelleAcheminement": "ST CYR MONTMALIN", - "nomCommune": "ST CYR MONTMALIN" + "codePostal": "34360", + "codeCommune": "34193", + "libelleAcheminement": "PARDAILHAN", + "nomCommune": "PARDAILHAN" }, { - "codePostal": "62180", - "codeCommune": "62815", - "libelleAcheminement": "TIGNY NOYELLE", - "nomCommune": "TIGNY NOYELLE" + "codePostal": "36400", + "codeCommune": "36184", + "libelleAcheminement": "ST CHARTIER", + "nomCommune": "ST CHARTIER" }, { - "codePostal": "12120", - "codeCommune": "12011", - "libelleAcheminement": "ARVIEU", - "nomCommune": "ARVIEU" + "codePostal": "50220", + "codeCommune": "50259", + "libelleAcheminement": "JUILLEY", + "nomCommune": "JUILLEY" }, { - "codePostal": "28130", - "codeCommune": "28298", - "libelleAcheminement": "PIERRES", - "nomCommune": "PIERRES" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "39170", - "codeCommune": "39491", - "libelleAcheminement": "COTEAUX DU LIZON", - "nomCommune": "COTEAUX DU LIZON" + "codePostal": "34120", + "codeCommune": "34199", + "libelleAcheminement": "PEZENAS", + "nomCommune": "PEZENAS" }, { - "codePostal": "62127", - "codeCommune": "62820", - "libelleAcheminement": "TINCQUES", - "nomCommune": "TINCQUES" + "codePostal": "36100", + "codeCommune": "36190", + "libelleAcheminement": "STE FAUSTE", + "nomCommune": "STE FAUSTE" }, { - "codePostal": "12110", - "codeCommune": "12013", - "libelleAcheminement": "AUBIN", - "nomCommune": "AUBIN" + "codePostal": "50520", + "codeCommune": "50260", + "libelleAcheminement": "JUVIGNY LES VALLEES", + "nomCommune": "JUVIGNY LES VALLEES" }, { - "codePostal": "28140", - "codeCommune": "28303", - "libelleAcheminement": "POUPRY", - "nomCommune": "POUPRY" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "39270", - "codeCommune": "39504", - "libelleAcheminement": "SARROGNA", - "nomCommune": "SARROGNA" + "codePostal": "34570", + "codeCommune": "34202", + "libelleAcheminement": "PIGNAN", + "nomCommune": "PIGNAN" }, { - "codePostal": "62490", - "codeCommune": "62825", - "libelleAcheminement": "TORTEQUESNE", - "nomCommune": "TORTEQUESNE" + "codePostal": "36800", + "codeCommune": "36192", + "libelleAcheminement": "ST GAULTIER", + "nomCommune": "ST GAULTIER" }, { - "codePostal": "12390", - "codeCommune": "12016", - "libelleAcheminement": "AUZITS", - "nomCommune": "AUZITS" + "codePostal": "50160", + "codeCommune": "50261", + "libelleAcheminement": "LAMBERVILLE", + "nomCommune": "LAMBERVILLE" }, { - "codePostal": "28150", - "codeCommune": "28304", - "libelleAcheminement": "PRASVILLE", - "nomCommune": "PRASVILLE" + "codePostal": "50690", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "39230", - "codeCommune": "39508", - "libelleAcheminement": "SELLIERES", - "nomCommune": "SELLIERES" + "codePostal": "34810", + "codeCommune": "34207", + "libelleAcheminement": "POMEROLS", + "nomCommune": "POMEROLS" }, { - "codePostal": "62147", - "codeCommune": "62830", - "libelleAcheminement": "TRESCAULT", - "nomCommune": "TRESCAULT" + "codePostal": "36500", + "codeCommune": "36194", + "libelleAcheminement": "ST GENOU", + "nomCommune": "ST GENOU" }, { - "codePostal": "12200", - "codeCommune": "12021", - "libelleAcheminement": "LE BAS SEGALA", - "nomCommune": "LE BAS SEGALA" + "codePostal": "50480", + "codeCommune": "50269", + "libelleAcheminement": "LIESVILLE SUR DOUVE", + "nomCommune": "LIESVILLE SUR DOUVE" }, { - "codePostal": "28270", - "codeCommune": "28308", - "libelleAcheminement": "PRUDEMANCHE", - "nomCommune": "PRUDEMANCHE" + "codePostal": "50170", + "codeCommune": "50042", + "libelleAcheminement": "BEAUVOIR", + "nomCommune": "BEAUVOIR" }, { - "codePostal": "39310", - "codeCommune": "39510", - "libelleAcheminement": "SEPTMONCEL LES MOLUNES", - "nomCommune": "SEPTMONCEL LES MOLUNES" + "codePostal": "34480", + "codeCommune": "34223", + "libelleAcheminement": "PUIMISSON", + "nomCommune": "PUIMISSON" }, { - "codePostal": "62880", - "codeCommune": "62842", - "libelleAcheminement": "VENDIN LE VIEIL", - "nomCommune": "VENDIN LE VIEIL" + "codePostal": "36260", + "codeCommune": "36199", + "libelleAcheminement": "STE LIZAIGNE", + "nomCommune": "STE LIZAIGNE" }, { - "codePostal": "12490", - "codeCommune": "12022", - "libelleAcheminement": "LA BASTIDE PRADINES", - "nomCommune": "LA BASTIDE PRADINES" + "codePostal": "50700", + "codeCommune": "50270", + "libelleAcheminement": "LIEUSAINT", + "nomCommune": "LIEUSAINT" }, { - "codePostal": "28360", - "codeCommune": "28309", - "libelleAcheminement": "PRUNAY LE GILLON", - "nomCommune": "PRUNAY LE GILLON" + "codePostal": "50210", + "codeCommune": "50044", + "libelleAcheminement": "BELVAL", + "nomCommune": "BELVAL" }, { - "codePostal": "39300", - "codeCommune": "39522", - "libelleAcheminement": "SUPT", - "nomCommune": "SUPT" + "codePostal": "34160", + "codeCommune": "34227", + "libelleAcheminement": "RESTINCLIERES", + "nomCommune": "RESTINCLIERES" }, { - "codePostal": "62980", - "codeCommune": "62846", - "libelleAcheminement": "VERMELLES", - "nomCommune": "VERMELLES" + "codePostal": "36250", + "codeCommune": "36202", + "libelleAcheminement": "ST MAUR", + "nomCommune": "ST MAUR" }, { - "codePostal": "12390", - "codeCommune": "12031", - "libelleAcheminement": "BOURNAZEL", - "nomCommune": "BOURNAZEL" + "codePostal": "50290", + "codeCommune": "50277", + "libelleAcheminement": "LONGUEVILLE", + "nomCommune": "LONGUEVILLE" }, { - "codePostal": "28700", - "codeCommune": "28317", - "libelleAcheminement": "ROINVILLE", - "nomCommune": "ROINVILLE" + "codePostal": "50420", + "codeCommune": "50050", + "libelleAcheminement": "BEUVRIGNY", + "nomCommune": "BEUVRIGNY" }, { - "codePostal": "39350", - "codeCommune": "39527", - "libelleAcheminement": "TAXENNE", - "nomCommune": "TAXENNE" + "codePostal": "34460", + "codeCommune": "34232", + "libelleAcheminement": "ROQUEBRUN", + "nomCommune": "ROQUEBRUN" }, { - "codePostal": "62180", - "codeCommune": "62849", - "libelleAcheminement": "VERTON", - "nomCommune": "VERTON" + "codePostal": "36120", + "codeCommune": "36211", + "libelleAcheminement": "SASSIERGES ST GERMAIN", + "nomCommune": "SASSIERGES ST GERMAIN" }, { - "codePostal": "12800", - "codeCommune": "12041", - "libelleAcheminement": "CABANES", - "nomCommune": "CABANES" + "codePostal": "50320", + "codeCommune": "50281", + "libelleAcheminement": "LA LUCERNE D OUTREMER", + "nomCommune": "LA LUCERNE D OUTREMER" }, { - "codePostal": "28310", - "codeCommune": "28319", - "libelleAcheminement": "ROUVRAY ST DENIS", - "nomCommune": "ROUVRAY ST DENIS" + "codePostal": "50360", + "codeCommune": "50052", + "libelleAcheminement": "BEUZEVILLE LA BASTILLE", + "nomCommune": "BEUZEVILLE LA BASTILLE" }, { - "codePostal": "39110", - "codeCommune": "39529", - "libelleAcheminement": "THESY", - "nomCommune": "THESY" + "codePostal": "34230", + "codeCommune": "34241", + "libelleAcheminement": "ST BAUZILLE DE LA SYLVE", + "nomCommune": "ST BAUZILLE DE LA SYLVE" }, { - "codePostal": "62450", - "codeCommune": "62855", - "libelleAcheminement": "VILLERS AU FLOS", - "nomCommune": "VILLERS AU FLOS" + "codePostal": "36160", + "codeCommune": "36214", + "libelleAcheminement": "SAZERAY", + "nomCommune": "SAZERAY" }, { - "codePostal": "12160", - "codeCommune": "12045", - "libelleAcheminement": "CAMBOULAZET", - "nomCommune": "CAMBOULAZET" + "codePostal": "50410", + "codeCommune": "50291", + "libelleAcheminement": "MARGUERAY", + "nomCommune": "MARGUERAY" }, { - "codePostal": "28270", - "codeCommune": "28322", - "libelleAcheminement": "RUEIL LA GADELIERE", - "nomCommune": "RUEIL LA GADELIERE" + "codePostal": "50390", + "codeCommune": "50055", + "libelleAcheminement": "BINIVILLE", + "nomCommune": "BINIVILLE" }, { - "codePostal": "39240", - "codeCommune": "39530", - "libelleAcheminement": "THOIRETTE COISIA", - "nomCommune": "THOIRETTE COISIA" + "codePostal": "34400", + "codeCommune": "34246", + "libelleAcheminement": "ENTRE VIGNES", + "nomCommune": "ENTRE VIGNES" }, { - "codePostal": "62690", - "codeCommune": "62856", - "libelleAcheminement": "VILLERS BRULIN", - "nomCommune": "VILLERS BRULIN" + "codePostal": "36400", + "codeCommune": "36221", + "libelleAcheminement": "THEVET ST JULIEN", + "nomCommune": "THEVET ST JULIEN" }, { - "codePostal": "12420", - "codeCommune": "12051", - "libelleAcheminement": "CANTOIN", - "nomCommune": "CANTOIN" + "codePostal": "50570", + "codeCommune": "50292", + "libelleAcheminement": "MARIGNY LE LOZON", + "nomCommune": "MARIGNY LE LOZON" }, { - "codePostal": "28190", - "codeCommune": "28324", - "libelleAcheminement": "ST ARNOULT DES BOIS", - "nomCommune": "ST ARNOULT DES BOIS" + "codePostal": "50800", + "codeCommune": "50062", + "libelleAcheminement": "BOISYVON", + "nomCommune": "BOISYVON" }, { - "codePostal": "39270", - "codeCommune": "39534", - "libelleAcheminement": "LA TOUR DU MEIX", - "nomCommune": "LA TOUR DU MEIX" + "codePostal": "34160", + "codeCommune": "34249", + "libelleAcheminement": "ST DREZERY", + "nomCommune": "ST DREZERY" }, { - "codePostal": "62390", - "codeCommune": "62859", - "libelleAcheminement": "VILLERS L HOPITAL", - "nomCommune": "VILLERS L HOPITAL" + "codePostal": "36220", + "codeCommune": "36224", + "libelleAcheminement": "TOURNON ST MARTIN", + "nomCommune": "TOURNON ST MARTIN" }, { - "codePostal": "12120", - "codeCommune": "12057", - "libelleAcheminement": "CASSAGNES BEGONHES", - "nomCommune": "CASSAGNES BEGONHES" + "codePostal": "50570", + "codeCommune": "50292", + "libelleAcheminement": "MARIGNY LE LOZON", + "nomCommune": "MARIGNY LE LOZON" }, { - "codePostal": "28120", - "codeCommune": "28326", - "libelleAcheminement": "ST AVIT LES GUESPIERES", - "nomCommune": "ST AVIT LES GUESPIERES" + "codePostal": "50610", + "codeCommune": "50066", + "libelleAcheminement": "JULLOUVILLE", + "nomCommune": "JULLOUVILLE" }, { - "codePostal": "39380", - "codeCommune": "39546", - "libelleAcheminement": "VAUDREY", - "nomCommune": "VAUDREY" + "codePostal": "34390", + "codeCommune": "34250", + "libelleAcheminement": "ST ETIENNE D ALBAGNAN", + "nomCommune": "ST ETIENNE D ALBAGNAN" }, { - "codePostal": "62310", - "codeCommune": "62862", - "libelleAcheminement": "VINCLY", - "nomCommune": "VINCLY" + "codePostal": "36230", + "codeCommune": "36226", + "libelleAcheminement": "TRANZAULT", + "nomCommune": "TRANZAULT" }, { - "codePostal": "12800", - "codeCommune": "12060", - "libelleAcheminement": "CASTELMARY", - "nomCommune": "CASTELMARY" + "codePostal": "50570", + "codeCommune": "50302", + "libelleAcheminement": "LE MESNIL AMEY", + "nomCommune": "LE MESNIL AMEY" }, { - "codePostal": "28200", - "codeCommune": "28329", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "50200", + "codeCommune": "50072", + "libelleAcheminement": "BRAINVILLE", + "nomCommune": "BRAINVILLE" }, { - "codePostal": "39380", - "codeCommune": "39559", - "libelleAcheminement": "LA VIEILLE LOYE", - "nomCommune": "LA VIEILLE LOYE" + "codePostal": "34260", + "codeCommune": "34252", + "libelleAcheminement": "ST ETIENNE ESTRECHOUX", + "nomCommune": "ST ETIENNE ESTRECHOUX" }, { - "codePostal": "62138", - "codeCommune": "62863", - "libelleAcheminement": "VIOLAINES", - "nomCommune": "VIOLAINES" + "codePostal": "36600", + "codeCommune": "36228", + "libelleAcheminement": "VALENCAY", + "nomCommune": "VALENCAY" }, { - "codePostal": "12500", - "codeCommune": "12061", - "libelleAcheminement": "CASTELNAU DE MANDAILLES", - "nomCommune": "CASTELNAU DE MANDAILLES" + "codePostal": "50220", + "codeCommune": "50317", + "libelleAcheminement": "LE MESNIL OZENNE", + "nomCommune": "LE MESNIL OZENNE" }, { - "codePostal": "28200", - "codeCommune": "28330", - "libelleAcheminement": "VILLEMAURY", - "nomCommune": "VILLEMAURY" + "codePostal": "50370", + "codeCommune": "50074", + "libelleAcheminement": "BRECEY", + "nomCommune": "BRECEY" }, { - "codePostal": "39100", - "codeCommune": "39573", - "libelleAcheminement": "VILLETTE LES DOLE", - "nomCommune": "VILLETTE LES DOLE" + "codePostal": "34480", + "codeCommune": "34258", + "libelleAcheminement": "ST GENIES DE FONTEDIT", + "nomCommune": "ST GENIES DE FONTEDIT" }, { - "codePostal": "62180", - "codeCommune": "62866", - "libelleAcheminement": "WABEN", - "nomCommune": "WABEN" + "codePostal": "36400", + "codeCommune": "36236", + "libelleAcheminement": "VICQ EXEMPLET", + "nomCommune": "VICQ EXEMPLET" }, { - "codePostal": "12620", - "codeCommune": "12062", - "libelleAcheminement": "CASTELNAU PEGAYROLS", - "nomCommune": "CASTELNAU PEGAYROLS" + "codePostal": "50000", + "codeCommune": "50321", + "libelleAcheminement": "LE MESNIL ROUXELIN", + "nomCommune": "LE MESNIL ROUXELIN" }, { - "codePostal": "28240", - "codeCommune": "28335", - "libelleAcheminement": "ST ELIPH", - "nomCommune": "ST ELIPH" + "codePostal": "50290", + "codeCommune": "50081", + "libelleAcheminement": "BREVILLE SUR MER", + "nomCommune": "BREVILLE SUR MER" }, { - "codePostal": "39190", - "codeCommune": "39576", - "libelleAcheminement": "VAL SONNETTE", - "nomCommune": "VAL SONNETTE" + "codePostal": "34160", + "codeCommune": "34265", + "libelleAcheminement": "ST JEAN DE CORNIES", + "nomCommune": "ST JEAN DE CORNIES" }, { - "codePostal": "62250", - "codeCommune": "62867", - "libelleAcheminement": "WACQUINGHEN", - "nomCommune": "WACQUINGHEN" + "codePostal": "36600", + "codeCommune": "36237", + "libelleAcheminement": "VICQ SUR NAHON", + "nomCommune": "VICQ SUR NAHON" }, { - "codePostal": "12330", - "codeCommune": "12066", - "libelleAcheminement": "CLAIRVAUX D AVEYRON", - "nomCommune": "CLAIRVAUX D AVEYRON" + "codePostal": "50450", + "codeCommune": "50326", + "libelleAcheminement": "LE MESNIL VILLEMAN", + "nomCommune": "LE MESNIL VILLEMAN" }, { - "codePostal": "28170", - "codeCommune": "28341", - "libelleAcheminement": "ST JEAN DE REBERVILLIERS", - "nomCommune": "ST JEAN DE REBERVILLIERS" + "codePostal": "50260", + "codeCommune": "50082", + "libelleAcheminement": "BRICQUEBEC EN COTENTIN", + "nomCommune": "BRICQUEBEC EN COTENTIN" }, { - "codePostal": "39190", - "codeCommune": "39576", - "libelleAcheminement": "VAL SONNETTE", - "nomCommune": "VAL SONNETTE" + "codePostal": "34150", + "codeCommune": "34267", + "libelleAcheminement": "ST JEAN DE FOS", + "nomCommune": "ST JEAN DE FOS" }, { - "codePostal": "62140", - "codeCommune": "62871", - "libelleAcheminement": "WAMBERCOURT", - "nomCommune": "WAMBERCOURT" + "codePostal": "36160", + "codeCommune": "36238", + "libelleAcheminement": "VIGOULANT", + "nomCommune": "VIGOULANT" }, { - "codePostal": "12540", - "codeCommune": "12067", - "libelleAcheminement": "LE CLAPIER", - "nomCommune": "LE CLAPIER" + "codePostal": "50190", + "codeCommune": "50328", + "libelleAcheminement": "MILLIERES", + "nomCommune": "MILLIERES" }, { - "codePostal": "28350", - "codeCommune": "28348", - "libelleAcheminement": "ST LUBIN DES JONCHERETS", - "nomCommune": "ST LUBIN DES JONCHERETS" + "codePostal": "50260", + "codeCommune": "50082", + "libelleAcheminement": "BRICQUEBEC EN COTENTIN", + "nomCommune": "BRICQUEBEC EN COTENTIN" }, { - "codePostal": "39190", - "codeCommune": "39576", - "libelleAcheminement": "VAL SONNETTE", - "nomCommune": "VAL SONNETTE" + "codePostal": "34400", + "codeCommune": "34280", + "libelleAcheminement": "ST NAZAIRE DE PEZAN", + "nomCommune": "ST NAZAIRE DE PEZAN" }, { - "codePostal": "62128", - "codeCommune": "62873", - "libelleAcheminement": "WANCOURT", - "nomCommune": "WANCOURT" + "codePostal": "36170", + "codeCommune": "36239", + "libelleAcheminement": "VIGOUX", + "nomCommune": "VIGOUX" }, { - "codePostal": "12370", - "codeCommune": "12069", - "libelleAcheminement": "COMBRET", - "nomCommune": "COMBRET" + "codePostal": "50700", + "codeCommune": "50335", + "libelleAcheminement": "MONTAIGU LA BRISETTE", + "nomCommune": "MONTAIGU LA BRISETTE" }, { - "codePostal": "28130", - "codeCommune": "28352", - "libelleAcheminement": "ST MARTIN DE NIGELLES", - "nomCommune": "ST MARTIN DE NIGELLES" + "codePostal": "50260", + "codeCommune": "50082", + "libelleAcheminement": "BRICQUEBEC EN COTENTIN", + "nomCommune": "BRICQUEBEC EN COTENTIN" }, { - "codePostal": "39350", - "codeCommune": "39581", - "libelleAcheminement": "VITREUX", - "nomCommune": "VITREUX" + "codePostal": "34220", + "codeCommune": "34284", + "libelleAcheminement": "ST PONS DE THOMIERES", + "nomCommune": "ST PONS DE THOMIERES" }, { - "codePostal": "62760", - "codeCommune": "62877", - "libelleAcheminement": "WARLINCOURT LES PAS", - "nomCommune": "WARLINCOURT LES PAS" + "codePostal": "36160", + "codeCommune": "36240", + "libelleAcheminement": "VIJON", + "nomCommune": "VIJON" }, { - "codePostal": "12100", - "codeCommune": "12072", - "libelleAcheminement": "COMPREGNAC", - "nomCommune": "COMPREGNAC" + "codePostal": "50760", + "codeCommune": "50342", + "libelleAcheminement": "MONTFARVILLE", + "nomCommune": "MONTFARVILLE" }, { - "codePostal": "28380", - "codeCommune": "28359", - "libelleAcheminement": "ST REMY SUR AVRE", - "nomCommune": "ST REMY SUR AVRE" + "codePostal": "50340", + "codeCommune": "50083", + "libelleAcheminement": "BRICQUEBOSQ", + "nomCommune": "BRICQUEBOSQ" }, { - "codePostal": "39240", - "codeCommune": "39583", - "libelleAcheminement": "VOSBLES VALFIN", - "nomCommune": "VOSBLES VALFIN" + "codePostal": "34230", + "codeCommune": "34285", + "libelleAcheminement": "ST PONS DE MAUCHIENS", + "nomCommune": "ST PONS DE MAUCHIENS" }, { - "codePostal": "62390", - "codeCommune": "62881", - "libelleAcheminement": "BEAUVOIR WAVANS", - "nomCommune": "BEAUVOIR WAVANS" + "codePostal": "36110", + "codeCommune": "36247", + "libelleAcheminement": "VINEUIL", + "nomCommune": "VINEUIL" }, { - "codePostal": "12320", - "codeCommune": "12076", - "libelleAcheminement": "CONQUES EN ROUERGUE", - "nomCommune": "CONQUES EN ROUERGUE" + "codePostal": "50140", + "codeCommune": "50359", + "libelleAcheminement": "MORTAIN BOCAGE", + "nomCommune": "MORTAIN BOCAGE" }, { - "codePostal": "28170", - "codeCommune": "28360", - "libelleAcheminement": "ST SAUVEUR MARVILLE", - "nomCommune": "ST SAUVEUR MARVILLE" + "codePostal": "50290", + "codeCommune": "50085", + "libelleAcheminement": "BRICQUEVILLE SUR MER", + "nomCommune": "BRICQUEVILLE SUR MER" }, { - "codePostal": "39110", - "codeCommune": "39586", - "libelleAcheminement": "ARESCHES", - "nomCommune": "ARESCHES" + "codePostal": "34725", + "codeCommune": "34287", + "libelleAcheminement": "ST SATURNIN DE LUCIAN", + "nomCommune": "ST SATURNIN DE LUCIAN" }, { - "codePostal": "62410", - "codeCommune": "62895", - "libelleAcheminement": "WINGLES", - "nomCommune": "WINGLES" + "codePostal": "37160", + "codeCommune": "37001", + "libelleAcheminement": "ABILLY", + "nomCommune": "ABILLY" }, { - "codePostal": "12550", - "codeCommune": "12080", - "libelleAcheminement": "COUPIAC", - "nomCommune": "COUPIAC" + "codePostal": "50490", + "codeCommune": "50364", + "libelleAcheminement": "MUNEVILLE LE BINGARD", + "nomCommune": "MUNEVILLE LE BINGARD" }, { - "codePostal": "28700", - "codeCommune": "28366", - "libelleAcheminement": "SANTEUIL", - "nomCommune": "SANTEUIL" + "codePostal": "50640", + "codeCommune": "50090", + "libelleAcheminement": "BUAIS LES MONTS", + "nomCommune": "BUAIS LES MONTS" }, { - "codePostal": "40990", - "codeCommune": "40003", - "libelleAcheminement": "ANGOUME", - "nomCommune": "ANGOUME" + "codePostal": "34730", + "codeCommune": "34290", + "libelleAcheminement": "ST VINCENT DE BARBEYRARGUES", + "nomCommune": "ST VINCENT DE BARBEYRARGUES" }, { - "codePostal": "62890", - "codeCommune": "62904", - "libelleAcheminement": "ZOUAFQUES", - "nomCommune": "ZOUAFQUES" + "codePostal": "37500", + "codeCommune": "37004", + "libelleAcheminement": "ANCHE", + "nomCommune": "ANCHE" }, { - "codePostal": "12300", - "codeCommune": "12089", - "libelleAcheminement": "DECAZEVILLE", - "nomCommune": "DECAZEVILLE" + "codePostal": "50390", + "codeCommune": "50370", + "libelleAcheminement": "NEHOU", + "nomCommune": "NEHOU" }, { - "codePostal": "28310", - "codeCommune": "28367", - "libelleAcheminement": "SANTILLY", - "nomCommune": "SANTILLY" + "codePostal": "50570", + "codeCommune": "50093", + "libelleAcheminement": "CAMETOURS", + "nomCommune": "CAMETOURS" }, { - "codePostal": "40150", - "codeCommune": "40004", - "libelleAcheminement": "ANGRESSE", - "nomCommune": "ANGRESSE" + "codePostal": "34410", + "codeCommune": "34298", + "libelleAcheminement": "SAUVIAN", + "nomCommune": "SAUVIAN" }, { - "codePostal": "63980", - "codeCommune": "63002", - "libelleAcheminement": "AIX LA FAYETTE", - "nomCommune": "AIX LA FAYETTE" + "codePostal": "37260", + "codeCommune": "37006", + "libelleAcheminement": "ARTANNES SUR INDRE", + "nomCommune": "ARTANNES SUR INDRE" }, { - "codePostal": "12140", - "codeCommune": "12094", - "libelleAcheminement": "ENTRAYGUES SUR TRUYERE", - "nomCommune": "ENTRAYGUES SUR TRUYERE" + "codePostal": "50140", + "codeCommune": "50371", + "libelleAcheminement": "LE NEUFBOURG", + "nomCommune": "LE NEUFBOURG" }, { - "codePostal": "28500", - "codeCommune": "28369", - "libelleAcheminement": "SAULNIERES", - "nomCommune": "SAULNIERES" + "codePostal": "50480", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "40700", - "codeCommune": "40016", - "libelleAcheminement": "AUBAGNAN", - "nomCommune": "AUBAGNAN" + "codePostal": "34200", + "codeCommune": "34301", + "libelleAcheminement": "SETE", + "nomCommune": "SETE" }, { - "codePostal": "63340", - "codeCommune": "63005", - "libelleAcheminement": "ANTOINGT", - "nomCommune": "ANTOINGT" + "codePostal": "37110", + "codeCommune": "37010", + "libelleAcheminement": "AUZOUER EN TOURAINE", + "nomCommune": "AUZOUER EN TOURAINE" }, { - "codePostal": "12500", - "codeCommune": "12096", - "libelleAcheminement": "ESPALION", - "nomCommune": "ESPALION" + "codePostal": "50480", + "codeCommune": "50373", + "libelleAcheminement": "NEUVILLE AU PLAIN", + "nomCommune": "NEUVILLE AU PLAIN" }, { - "codePostal": "28400", - "codeCommune": "28378", - "libelleAcheminement": "SOUANCE AU PERCHE", - "nomCommune": "SOUANCE AU PERCHE" + "codePostal": "50500", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "40200", - "codeCommune": "40019", - "libelleAcheminement": "AUREILHAN", - "nomCommune": "AUREILHAN" + "codePostal": "34700", + "codeCommune": "34304", + "libelleAcheminement": "SOUBES", + "nomCommune": "SOUBES" }, { - "codePostal": "63460", - "codeCommune": "63012", - "libelleAcheminement": "ARTONNE", - "nomCommune": "ARTONNE" + "codePostal": "37340", + "codeCommune": "37013", + "libelleAcheminement": "AVRILLE LES PONCEAUX", + "nomCommune": "AVRILLE LES PONCEAUX" }, { - "codePostal": "12140", - "codeCommune": "12103", - "libelleAcheminement": "FLORENTIN LA CAPELLE", - "nomCommune": "FLORENTIN LA CAPELLE" + "codePostal": "50370", + "codeCommune": "50379", + "libelleAcheminement": "NOTRE DAME DE LIVOYE", + "nomCommune": "NOTRE DAME DE LIVOYE" }, { - "codePostal": "28170", - "codeCommune": "28386", - "libelleAcheminement": "THIMERT GATELLES", - "nomCommune": "THIMERT GATELLES" + "codePostal": "50390", + "codeCommune": "50105", + "libelleAcheminement": "CATTEVILLE", + "nomCommune": "CATTEVILLE" }, { - "codePostal": "40140", - "codeCommune": "40021", - "libelleAcheminement": "AZUR", - "nomCommune": "AZUR" + "codePostal": "34260", + "codeCommune": "34312", + "libelleAcheminement": "LA TOUR SUR ORB", + "nomCommune": "LA TOUR SUR ORB" }, { - "codePostal": "63260", - "codeCommune": "63013", - "libelleAcheminement": "AUBIAT", - "nomCommune": "AUBIAT" + "codePostal": "37310", + "codeCommune": "37016", + "libelleAcheminement": "AZAY SUR INDRE", + "nomCommune": "AZAY SUR INDRE" }, { - "codePostal": "12340", - "codeCommune": "12106", - "libelleAcheminement": "GABRIAC", - "nomCommune": "GABRIAC" + "codePostal": "50210", + "codeCommune": "50389", + "libelleAcheminement": "OUVILLE", + "nomCommune": "OUVILLE" }, { - "codePostal": "28170", - "codeCommune": "28393", - "libelleAcheminement": "TREMBLAY LES VILLAGES", - "nomCommune": "TREMBLAY LES VILLAGES" + "codePostal": "50320", + "codeCommune": "50115", + "libelleAcheminement": "LE GRIPPON", + "nomCommune": "LE GRIPPON" }, { - "codePostal": "40320", - "codeCommune": "40022", - "libelleAcheminement": "BAHUS SOUBIRAN", - "nomCommune": "BAHUS SOUBIRAN" + "codePostal": "34220", + "codeCommune": "34331", + "libelleAcheminement": "VERRERIES DE MOUSSANS", + "nomCommune": "VERRERIES DE MOUSSANS" }, { - "codePostal": "63120", - "codeCommune": "63015", - "libelleAcheminement": "AUBUSSON D AUVERGNE", - "nomCommune": "AUBUSSON D AUVERGNE" + "codePostal": "37110", + "codeCommune": "37030", + "libelleAcheminement": "LE BOULAY", + "nomCommune": "LE BOULAY" }, { - "codePostal": "12210", - "codeCommune": "12119", - "libelleAcheminement": "LAGUIOLE", - "nomCommune": "LAGUIOLE" + "codePostal": "50600", + "codeCommune": "50391", + "libelleAcheminement": "GRANDPARIGNY", + "nomCommune": "GRANDPARIGNY" }, { - "codePostal": "28800", - "codeCommune": "28396", - "libelleAcheminement": "TRIZAY LES BONNEVAL", - "nomCommune": "TRIZAY LES BONNEVAL" + "codePostal": "50370", + "codeCommune": "50124", + "libelleAcheminement": "LA CHAPELLE UREE", + "nomCommune": "LA CHAPELLE UREE" }, { - "codePostal": "40090", - "codeCommune": "40025", - "libelleAcheminement": "BASCONS", - "nomCommune": "BASCONS" + "codePostal": "34560", + "codeCommune": "34341", + "libelleAcheminement": "VILLEVEYRAC", + "nomCommune": "VILLEVEYRAC" }, { - "codePostal": "63340", - "codeCommune": "63017", - "libelleAcheminement": "AUGNAT", - "nomCommune": "AUGNAT" + "codePostal": "37330", + "codeCommune": "37036", + "libelleAcheminement": "BRAYE SUR MAULNE", + "nomCommune": "BRAYE SUR MAULNE" }, { - "codePostal": "12310", - "codeCommune": "12120", - "libelleAcheminement": "LAISSAC SEVERAC L EGLISE", - "nomCommune": "LAISSAC SEVERAC L EGLISE" + "codePostal": "50160", + "codeCommune": "50398", + "libelleAcheminement": "LE PERRON", + "nomCommune": "LE PERRON" }, { - "codePostal": "28240", - "codeCommune": "28401", - "libelleAcheminement": "VAUPILLON", - "nomCommune": "VAUPILLON" + "codePostal": "50330", + "codeCommune": "50135", + "libelleAcheminement": "CLITOURPS", + "nomCommune": "CLITOURPS" }, { - "codePostal": "40180", - "codeCommune": "40035", - "libelleAcheminement": "BENESSE LES DAX", - "nomCommune": "BENESSE LES DAX" + "codePostal": "35460", + "codeCommune": "35004", + "libelleAcheminement": "VAL COUESNON", + "nomCommune": "VAL COUESNON" }, { - "codePostal": "63510", - "codeCommune": "63019", - "libelleAcheminement": "AULNAT", - "nomCommune": "AULNAT" + "codePostal": "37600", + "codeCommune": "37039", + "libelleAcheminement": "BRIDORE", + "nomCommune": "BRIDORE" }, { - "codePostal": "12230", - "codeCommune": "12122", - "libelleAcheminement": "LAPANOUSE DE CERNON", - "nomCommune": "LAPANOUSE DE CERNON" + "codePostal": "50340", + "codeCommune": "50402", + "libelleAcheminement": "LES PIEUX", + "nomCommune": "LES PIEUX" }, { - "codePostal": "28500", - "codeCommune": "28404", - "libelleAcheminement": "VERNOUILLET", - "nomCommune": "VERNOUILLET" + "codePostal": "50800", + "codeCommune": "50137", + "libelleAcheminement": "LA COLOMBE", + "nomCommune": "LA COLOMBE" }, { - "codePostal": "40240", - "codeCommune": "40039", - "libelleAcheminement": "BETBEZER D ARMAGNAC", - "nomCommune": "BETBEZER D ARMAGNAC" + "codePostal": "35460", + "codeCommune": "35004", + "libelleAcheminement": "VAL COUESNON", + "nomCommune": "VAL COUESNON" }, { - "codePostal": "63210", - "codeCommune": "63020", - "libelleAcheminement": "AURIERES", - "nomCommune": "AURIERES" + "codePostal": "37160", + "codeCommune": "37045", + "libelleAcheminement": "LA CELLE ST AVANT", + "nomCommune": "LA CELLE ST AVANT" }, { - "codePostal": "12170", - "codeCommune": "12127", - "libelleAcheminement": "LEDERGUES", - "nomCommune": "LEDERGUES" + "codePostal": "50250", + "codeCommune": "50405", + "libelleAcheminement": "LE PLESSIS LASTELLE", + "nomCommune": "LE PLESSIS LASTELLE" }, { - "codePostal": "28140", - "codeCommune": "28406", - "libelleAcheminement": "EOLE EN BEAUCE", - "nomCommune": "EOLE EN BEAUCE" + "codePostal": "50290", + "codeCommune": "50143", + "libelleAcheminement": "COUDEVILLE SUR MER", + "nomCommune": "COUDEVILLE SUR MER" }, { - "codePostal": "40700", - "codeCommune": "40041", - "libelleAcheminement": "BEYRIES", - "nomCommune": "BEYRIES" + "codePostal": "35130", + "codeCommune": "35005", + "libelleAcheminement": "ARBRISSEL", + "nomCommune": "ARBRISSEL" }, { - "codePostal": "63570", - "codeCommune": "63022", - "libelleAcheminement": "AUZAT LA COMBELLE", - "nomCommune": "AUZAT LA COMBELLE" + "codePostal": "37460", + "codeCommune": "37046", + "libelleAcheminement": "CERE LA RONDE", + "nomCommune": "CERE LA RONDE" }, { - "codePostal": "12540", - "codeCommune": "12139", - "libelleAcheminement": "MARNHAGUES ET LATOUR", - "nomCommune": "MARNHAGUES ET LATOUR" + "codePostal": "50620", + "codeCommune": "50409", + "libelleAcheminement": "PONT HEBERT", + "nomCommune": "PONT HEBERT" }, { - "codePostal": "28200", - "codeCommune": "28410", - "libelleAcheminement": "VILLAMPUY", - "nomCommune": "VILLAMPUY" + "codePostal": "50690", + "codeCommune": "50149", + "libelleAcheminement": "COUVILLE", + "nomCommune": "COUVILLE" }, { - "codePostal": "40390", - "codeCommune": "40042", - "libelleAcheminement": "BIARROTTE", - "nomCommune": "BIARROTTE" + "codePostal": "35130", + "codeCommune": "35008", + "libelleAcheminement": "AVAILLES SUR SEICHE", + "nomCommune": "AVAILLES SUR SEICHE" }, { - "codePostal": "63310", - "codeCommune": "63033", - "libelleAcheminement": "BEAUMONT LES RANDAN", - "nomCommune": "BEAUMONT LES RANDAN" + "codePostal": "37310", + "codeCommune": "37049", + "libelleAcheminement": "CHAMBOURG SUR INDRE", + "nomCommune": "CHAMBOURG SUR INDRE" }, { - "codePostal": "12200", - "codeCommune": "12140", - "libelleAcheminement": "MARTIEL", - "nomCommune": "MARTIEL" + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { - "codePostal": "28360", - "codeCommune": "28419", - "libelleAcheminement": "VITRAY EN BEAUCE", - "nomCommune": "VITRAY EN BEAUCE" + "codePostal": "50220", + "codeCommune": "50155", + "libelleAcheminement": "CROLLON", + "nomCommune": "CROLLON" }, { - "codePostal": "40090", - "codeCommune": "40050", - "libelleAcheminement": "BOSTENS", - "nomCommune": "BOSTENS" + "codePostal": "35120", + "codeCommune": "35009", + "libelleAcheminement": "BAGUER MORVAN", + "nomCommune": "BAGUER MORVAN" }, { - "codePostal": "63460", - "codeCommune": "63035", - "libelleAcheminement": "BEAUREGARD VENDON", - "nomCommune": "BEAUREGARD VENDON" + "codePostal": "37210", + "codeCommune": "37052", + "libelleAcheminement": "CHANCAY", + "nomCommune": "CHANCAY" }, { - "codePostal": "12360", - "codeCommune": "12147", - "libelleAcheminement": "MONTAGNOL", - "nomCommune": "MONTAGNOL" + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { - "codePostal": "28150", - "codeCommune": "28422", - "libelleAcheminement": "LES VILLAGES VOVEENS", - "nomCommune": "LES VILLAGES VOVEENS" + "codePostal": "50360", + "codeCommune": "50156", + "libelleAcheminement": "CROSVILLE SUR DOUVE", + "nomCommune": "CROSVILLE SUR DOUVE" }, { - "codePostal": "40090", - "codeCommune": "40064", - "libelleAcheminement": "CANENX ET REAUT", - "nomCommune": "CANENX ET REAUT" + "codePostal": "35470", + "codeCommune": "35012", + "libelleAcheminement": "BAIN DE BRETAGNE", + "nomCommune": "BAIN DE BRETAGNE" }, { - "codePostal": "63610", - "codeCommune": "63038", - "libelleAcheminement": "BESSE ET ST ANASTAISE", - "nomCommune": "BESSE ET ST ANASTAISE" + "codePostal": "37120", + "codeCommune": "37065", + "libelleAcheminement": "CHAVEIGNES", + "nomCommune": "CHAVEIGNES" }, { - "codePostal": "12550", - "codeCommune": "12149", - "libelleAcheminement": "MONTCLAR", - "nomCommune": "MONTCLAR" + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { - "codePostal": "28130", - "codeCommune": "28423", - "libelleAcheminement": "YERMENONVILLE", - "nomCommune": "YERMENONVILLE" + "codePostal": "50620", + "codeCommune": "50161", + "libelleAcheminement": "LE DEZERT", + "nomCommune": "LE DEZERT" }, { - "codePostal": "40130", - "codeCommune": "40065", - "libelleAcheminement": "CAPBRETON", - "nomCommune": "CAPBRETON" + "codePostal": "35750", + "codeCommune": "35026", + "libelleAcheminement": "BLERUAIS", + "nomCommune": "BLERUAIS" }, { - "codePostal": "63640", - "codeCommune": "63041", - "libelleAcheminement": "BIOLLET", - "nomCommune": "BIOLLET" + "codePostal": "37460", + "codeCommune": "37069", + "libelleAcheminement": "CHEMILLE SUR INDROIS", + "nomCommune": "CHEMILLE SUR INDROIS" }, { - "codePostal": "12460", - "codeCommune": "12151", - "libelleAcheminement": "MONTEZIC", - "nomCommune": "MONTEZIC" + "codePostal": "50660", + "codeCommune": "50419", + "libelleAcheminement": "QUETTREVILLE SUR SIENNE", + "nomCommune": "QUETTREVILLE SUR SIENNE" }, { - "codePostal": "28160", - "codeCommune": "28424", - "libelleAcheminement": "YEVRES", - "nomCommune": "YEVRES" + "codePostal": "50320", + "codeCommune": "50174", + "libelleAcheminement": "EQUILLY", + "nomCommune": "EQUILLY" }, { - "codePostal": "40270", - "codeCommune": "40070", - "libelleAcheminement": "CASTANDET", - "nomCommune": "CASTANDET" + "codePostal": "35160", + "codeCommune": "35040", + "libelleAcheminement": "BRETEIL", + "nomCommune": "BRETEIL" }, { - "codePostal": "63112", - "codeCommune": "63042", - "libelleAcheminement": "BLANZAT", - "nomCommune": "BLANZAT" + "codePostal": "37140", + "codeCommune": "37074", + "libelleAcheminement": "CHOUZE SUR LOIRE", + "nomCommune": "CHOUZE SUR LOIRE" }, { - "codePostal": "12540", - "codeCommune": "12155", - "libelleAcheminement": "FONDAMENTE", - "nomCommune": "FONDAMENTE" + "codePostal": "50660", + "codeCommune": "50419", + "libelleAcheminement": "QUETTREVILLE SUR SIENNE", + "nomCommune": "QUETTREVILLE SUR SIENNE" }, { - "codePostal": "29300", - "codeCommune": "29002", - "libelleAcheminement": "ARZANO", - "nomCommune": "ARZANO" + "codePostal": "50360", + "codeCommune": "50177", + "libelleAcheminement": "ETIENVILLE", + "nomCommune": "ETIENVILLE" }, { - "codePostal": "40360", - "codeCommune": "40071", - "libelleAcheminement": "CASTELNAU CHALOSSE", - "nomCommune": "CASTELNAU CHALOSSE" + "codePostal": "35150", + "codeCommune": "35041", + "libelleAcheminement": "BRIE", + "nomCommune": "BRIE" }, { - "codePostal": "63820", - "codeCommune": "63053", - "libelleAcheminement": "BRIFFONS", - "nomCommune": "BRIFFONS" + "codePostal": "37240", + "codeCommune": "37078", + "libelleAcheminement": "CIRAN", + "nomCommune": "CIRAN" }, { - "codePostal": "12330", - "codeCommune": "12165", - "libelleAcheminement": "MURET LE CHATEAU", - "nomCommune": "MURET LE CHATEAU" + "codePostal": "50310", + "codeCommune": "50421", + "libelleAcheminement": "QUINEVILLE", + "nomCommune": "QUINEVILLE" }, { - "codePostal": "29300", - "codeCommune": "29005", - "libelleAcheminement": "BAYE", - "nomCommune": "BAYE" + "codePostal": "50760", + "codeCommune": "50196", + "libelleAcheminement": "GATTEVILLE LE PHARE", + "nomCommune": "GATTEVILLE LE PHARE" }, { - "codePostal": "40500", - "codeCommune": "40076", - "libelleAcheminement": "CAUNA", - "nomCommune": "CAUNA" + "codePostal": "35170", + "codeCommune": "35047", + "libelleAcheminement": "BRUZ", + "nomCommune": "BRUZ" }, { - "codePostal": "63500", - "codeCommune": "63054", - "libelleAcheminement": "LE BROC", - "nomCommune": "LE BROC" + "codePostal": "37500", + "codeCommune": "37089", + "libelleAcheminement": "CRAVANT LES COTEAUX", + "nomCommune": "CRAVANT LES COTEAUX" }, { - "codePostal": "12330", - "codeCommune": "12171", - "libelleAcheminement": "NAUVIALE", - "nomCommune": "NAUVIALE" + "codePostal": "50760", + "codeCommune": "50433", + "libelleAcheminement": "REVILLE", + "nomCommune": "REVILLE" }, { - "codePostal": "29820", - "codeCommune": "29011", - "libelleAcheminement": "BOHARS", - "nomCommune": "BOHARS" + "codePostal": "50330", + "codeCommune": "50209", + "libelleAcheminement": "GONNEVILLE LE THEIL", + "nomCommune": "GONNEVILLE LE THEIL" }, { - "codePostal": "40700", - "codeCommune": "40089", - "libelleAcheminement": "DOAZIT", - "nomCommune": "DOAZIT" + "codePostal": "35190", + "codeCommune": "35050", + "libelleAcheminement": "CARDROC", + "nomCommune": "CARDROC" }, { - "codePostal": "63230", - "codeCommune": "63055", - "libelleAcheminement": "BROMONT LAMOTHE", - "nomCommune": "BROMONT LAMOTHE" + "codePostal": "37220", + "codeCommune": "37093", + "libelleAcheminement": "CROUZILLES", + "nomCommune": "CROUZILLES" }, { - "codePostal": "12000", - "codeCommune": "12176", - "libelleAcheminement": "ONET LE CHATEAU", - "nomCommune": "ONET LE CHATEAU" + "codePostal": "50160", + "codeCommune": "50444", + "libelleAcheminement": "ST AMAND VILLAGES", + "nomCommune": "ST AMAND VILLAGES" }, { - "codePostal": "29200", - "codeCommune": "29019", - "libelleAcheminement": "BREST", - "nomCommune": "BREST" + "codePostal": "50190", + "codeCommune": "50210", + "libelleAcheminement": "GORGES", + "nomCommune": "GORGES" }, { - "codePostal": "40360", - "codeCommune": "40090", - "libelleAcheminement": "DONZACQ", - "nomCommune": "DONZACQ" + "codePostal": "35133", + "codeCommune": "35062", + "libelleAcheminement": "LA CHAPELLE JANSON", + "nomCommune": "LA CHAPELLE JANSON" }, { - "codePostal": "63250", - "codeCommune": "63066", - "libelleAcheminement": "CELLES SUR DUROLLE", - "nomCommune": "CELLES SUR DUROLLE" + "codePostal": "37110", + "codeCommune": "37095", + "libelleAcheminement": "DAME MARIE LES BOIS", + "nomCommune": "DAME MARIE LES BOIS" }, { - "codePostal": "12850", - "codeCommune": "12176", - "libelleAcheminement": "ONET LE CHATEAU", - "nomCommune": "ONET LE CHATEAU" + "codePostal": "50160", + "codeCommune": "50444", + "libelleAcheminement": "ST AMAND VILLAGES", + "nomCommune": "ST AMAND VILLAGES" }, { - "codePostal": "29570", - "codeCommune": "29022", - "libelleAcheminement": "CAMARET SUR MER", - "nomCommune": "CAMARET SUR MER" + "codePostal": "50200", + "codeCommune": "50215", + "libelleAcheminement": "GOUVILLE SUR MER", + "nomCommune": "GOUVILLE SUR MER" }, { - "codePostal": "40210", - "codeCommune": "40094", - "libelleAcheminement": "ESCOURCE", - "nomCommune": "ESCOURCE" + "codePostal": "35660", + "codeCommune": "35064", + "libelleAcheminement": "LA CHAPELLE DE BRAIN", + "nomCommune": "LA CHAPELLE DE BRAIN" }, { - "codePostal": "63330", - "codeCommune": "63067", - "libelleAcheminement": "LA CELLETTE", - "nomCommune": "LA CELLETTE" + "codePostal": "37150", + "codeCommune": "37096", + "libelleAcheminement": "DIERRE", + "nomCommune": "DIERRE" }, { - "codePostal": "12520", - "codeCommune": "12178", - "libelleAcheminement": "PAULHE", - "nomCommune": "PAULHE" + "codePostal": "50380", + "codeCommune": "50447", + "libelleAcheminement": "ST AUBIN DES PREAUX", + "nomCommune": "ST AUBIN DES PREAUX" }, { - "codePostal": "29150", - "codeCommune": "29026", - "libelleAcheminement": "CHATEAULIN", - "nomCommune": "CHATEAULIN" + "codePostal": "50730", + "codeCommune": "50229", + "libelleAcheminement": "HAMELIN", + "nomCommune": "HAMELIN" }, { - "codePostal": "40500", - "codeCommune": "40098", - "libelleAcheminement": "EYRES MONCUBE", - "nomCommune": "EYRES MONCUBE" + "codePostal": "35410", + "codeCommune": "35069", + "libelleAcheminement": "CHATEAUGIRON", + "nomCommune": "CHATEAUGIRON" }, { - "codePostal": "63210", - "codeCommune": "63071", - "libelleAcheminement": "CEYSSAT", - "nomCommune": "CEYSSAT" + "codePostal": "37120", + "codeCommune": "37105", + "libelleAcheminement": "FAYE LA VINEUSE", + "nomCommune": "FAYE LA VINEUSE" }, { - "codePostal": "12360", - "codeCommune": "12179", - "libelleAcheminement": "PEUX ET COUFFOULEUX", - "nomCommune": "PEUX ET COUFFOULEUX" + "codePostal": "50800", + "codeCommune": "50453", + "libelleAcheminement": "STE CECILE", + "nomCommune": "STE CECILE" }, { - "codePostal": "29410", - "codeCommune": "29034", - "libelleAcheminement": "LE CLOITRE ST THEGONNEC", - "nomCommune": "LE CLOITRE ST THEGONNEC" + "codePostal": "50570", + "codeCommune": "50232", + "libelleAcheminement": "HAUTEVILLE LA GUICHARD", + "nomCommune": "HAUTEVILLE LA GUICHARD" }, { - "codePostal": "40500", - "codeCommune": "40099", - "libelleAcheminement": "FARGUES", - "nomCommune": "FARGUES" + "codePostal": "35430", + "codeCommune": "35070", + "libelleAcheminement": "CHATEAUNEUF D ILLE ET VILAINE", + "nomCommune": "CHATEAUNEUF D ILLE ET VILAINE" }, { - "codePostal": "63580", - "codeCommune": "63088", - "libelleAcheminement": "LA CHAPELLE SUR USSON", - "nomCommune": "LA CHAPELLE SUR USSON" + "codePostal": "37130", + "codeCommune": "37123", + "libelleAcheminement": "LANGEAIS", + "nomCommune": "LANGEAIS" }, { - "codePostal": "12550", - "codeCommune": "12183", - "libelleAcheminement": "PLAISANCE", - "nomCommune": "PLAISANCE" + "codePostal": "50310", + "codeCommune": "50461", + "libelleAcheminement": "ST CYR", + "nomCommune": "ST CYR" }, { - "codePostal": "29120", - "codeCommune": "29037", - "libelleAcheminement": "COMBRIT", - "nomCommune": "COMBRIT" + "codePostal": "50250", + "codeCommune": "50236", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "40190", - "codeCommune": "40100", - "libelleAcheminement": "LE FRECHE", - "nomCommune": "LE FRECHE" + "codePostal": "35590", + "codeCommune": "35081", + "libelleAcheminement": "CLAYES", + "nomCommune": "CLAYES" }, { - "codePostal": "63720", - "codeCommune": "63089", - "libelleAcheminement": "CHAPPES", - "nomCommune": "CHAPPES" + "codePostal": "37600", + "codeCommune": "37132", + "libelleAcheminement": "LOCHES", + "nomCommune": "LOCHES" }, { - "codePostal": "12290", - "codeCommune": "12185", - "libelleAcheminement": "PONT DE SALARS", - "nomCommune": "PONT DE SALARS" + "codePostal": "50720", + "codeCommune": "50474", + "libelleAcheminement": "ST GEORGES DE ROUELLEY", + "nomCommune": "ST GEORGES DE ROUELLEY" }, { - "codePostal": "29500", - "codeCommune": "29051", - "libelleAcheminement": "ERGUE GABERIC", - "nomCommune": "ERGUE GABERIC" + "codePostal": "50250", + "codeCommune": "50236", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "40350", - "codeCommune": "40101", - "libelleAcheminement": "GAAS", - "nomCommune": "GAAS" + "codePostal": "35440", + "codeCommune": "35094", + "libelleAcheminement": "DINGE", + "nomCommune": "DINGE" }, { - "codePostal": "63260", - "codeCommune": "63090", - "libelleAcheminement": "CHAPTUZAT", - "nomCommune": "CHAPTUZAT" + "codePostal": "37330", + "codeCommune": "37137", + "libelleAcheminement": "LUBLE", + "nomCommune": "LUBLE" }, { - "codePostal": "12380", - "codeCommune": "12186", - "libelleAcheminement": "POUSTHOMY", - "nomCommune": "POUSTHOMY" + "codePostal": "50340", + "codeCommune": "50480", + "libelleAcheminement": "ST GERMAIN LE GAILLARD", + "nomCommune": "ST GERMAIN LE GAILLARD" }, { - "codePostal": "29690", - "codeCommune": "29054", - "libelleAcheminement": "LA FEUILLEE", - "nomCommune": "LA FEUILLEE" + "codePostal": "50250", + "codeCommune": "50236", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "40380", - "codeCommune": "40104", - "libelleAcheminement": "GAMARDE LES BAINS", - "nomCommune": "GAMARDE LES BAINS" + "codePostal": "35120", + "codeCommune": "35095", + "libelleAcheminement": "DOL DE BRETAGNE", + "nomCommune": "DOL DE BRETAGNE" }, { - "codePostal": "63410", - "codeCommune": "63092", - "libelleAcheminement": "CHARBONNIERES LES VARENNES", - "nomCommune": "CHARBONNIERES LES VARENNES" + "codePostal": "37230", + "codeCommune": "37139", + "libelleAcheminement": "LUYNES", + "nomCommune": "LUYNES" }, { - "codePostal": "12350", - "codeCommune": "12191", - "libelleAcheminement": "PRIVEZAC", - "nomCommune": "PRIVEZAC" + "codePostal": "50190", + "codeCommune": "50482", + "libelleAcheminement": "ST GERMAIN SUR SEVES", + "nomCommune": "ST GERMAIN SUR SEVES" }, { - "codePostal": "29610", - "codeCommune": "29059", - "libelleAcheminement": "GARLAN", - "nomCommune": "GARLAN" + "codePostal": "50180", + "codeCommune": "50239", + "libelleAcheminement": "THEREVAL", + "nomCommune": "THEREVAL" }, { - "codePostal": "40160", - "codeCommune": "40108", - "libelleAcheminement": "GASTES", - "nomCommune": "GASTES" + "codePostal": "35113", + "codeCommune": "35096", + "libelleAcheminement": "DOMAGNE", + "nomCommune": "DOMAGNE" }, { - "codePostal": "63680", - "codeCommune": "63098", - "libelleAcheminement": "CHASTREIX", - "nomCommune": "CHASTREIX" + "codePostal": "37330", + "codeCommune": "37146", + "libelleAcheminement": "MARCILLY SUR MAULNE", + "nomCommune": "MARCILLY SUR MAULNE" }, { - "codePostal": "12320", - "codeCommune": "12193", - "libelleAcheminement": "PRUINES", - "nomCommune": "PRUINES" + "codePostal": "50730", + "codeCommune": "50484", + "libelleAcheminement": "ST HILAIRE DU HARCOUET", + "nomCommune": "ST HILAIRE DU HARCOUET" }, { - "codePostal": "29710", - "codeCommune": "29065", - "libelleAcheminement": "GOURLIZON", - "nomCommune": "GOURLIZON" + "codePostal": "50700", + "codeCommune": "50251", + "libelleAcheminement": "HUBERVILLE", + "nomCommune": "HUBERVILLE" }, { - "codePostal": "40280", - "codeCommune": "40122", - "libelleAcheminement": "HAUT MAUCO", - "nomCommune": "HAUT MAUCO" + "codePostal": "35390", + "codeCommune": "35098", + "libelleAcheminement": "LA DOMINELAIS", + "nomCommune": "LA DOMINELAIS" }, { - "codePostal": "63290", - "codeCommune": "63102", - "libelleAcheminement": "CHATELDON", - "nomCommune": "CHATELDON" + "codePostal": "37370", + "codeCommune": "37149", + "libelleAcheminement": "MARRAY", + "nomCommune": "MARRAY" }, { - "codePostal": "12800", - "codeCommune": "12194", - "libelleAcheminement": "QUINS", - "nomCommune": "QUINS" + "codePostal": "50390", + "codeCommune": "50486", + "libelleAcheminement": "ST JACQUES DE NEHOU", + "nomCommune": "ST JACQUES DE NEHOU" }, { - "codePostal": "29180", - "codeCommune": "29066", - "libelleAcheminement": "GUENGAT", - "nomCommune": "GUENGAT" + "codePostal": "50540", + "codeCommune": "50256", + "libelleAcheminement": "ISIGNY LE BUAT", + "nomCommune": "ISIGNY LE BUAT" }, { - "codePostal": "40300", - "codeCommune": "40132", - "libelleAcheminement": "LABATUT", - "nomCommune": "LABATUT" + "codePostal": "35420", + "codeCommune": "35111", + "libelleAcheminement": "LE FERRE", + "nomCommune": "LE FERRE" }, { - "codePostal": "63220", - "codeCommune": "63105", - "libelleAcheminement": "CHAUMONT LE BOURG", - "nomCommune": "CHAUMONT LE BOURG" + "codePostal": "37390", + "codeCommune": "37152", + "libelleAcheminement": "METTRAY", + "nomCommune": "METTRAY" }, { - "codePostal": "12240", - "codeCommune": "12198", - "libelleAcheminement": "RIEUPEYROUX", - "nomCommune": "RIEUPEYROUX" + "codePostal": "50240", + "codeCommune": "50487", + "libelleAcheminement": "ST JAMES", + "nomCommune": "ST JAMES" }, { - "codePostal": "29620", - "codeCommune": "29073", - "libelleAcheminement": "GUIMAEC", - "nomCommune": "GUIMAEC" + "codePostal": "50540", + "codeCommune": "50256", + "libelleAcheminement": "ISIGNY LE BUAT", + "nomCommune": "ISIGNY LE BUAT" }, { - "codePostal": "40320", - "codeCommune": "40136", - "libelleAcheminement": "LACAJUNTE", - "nomCommune": "LACAJUNTE" + "codePostal": "35300", + "codeCommune": "35115", + "libelleAcheminement": "FOUGERES", + "nomCommune": "FOUGERES" }, { - "codePostal": "63117", - "codeCommune": "63106", - "libelleAcheminement": "CHAURIAT", - "nomCommune": "CHAURIAT" + "codePostal": "37380", + "codeCommune": "37153", + "libelleAcheminement": "MONNAIE", + "nomCommune": "MONNAIE" }, { - "codePostal": "12640", - "codeCommune": "12200", - "libelleAcheminement": "RIVIERE SUR TARN", - "nomCommune": "RIVIERE SUR TARN" + "codePostal": "50240", + "codeCommune": "50487", + "libelleAcheminement": "ST JAMES", + "nomCommune": "ST JAMES" }, { - "codePostal": "29490", - "codeCommune": "29075", - "libelleAcheminement": "GUIPAVAS", - "nomCommune": "GUIPAVAS" + "codePostal": "50540", + "codeCommune": "50256", + "libelleAcheminement": "ISIGNY LE BUAT", + "nomCommune": "ISIGNY LE BUAT" }, { - "codePostal": "40250", - "codeCommune": "40141", - "libelleAcheminement": "LAHOSSE", - "nomCommune": "LAHOSSE" + "codePostal": "35490", + "codeCommune": "35118", + "libelleAcheminement": "GAHARD", + "nomCommune": "GAHARD" }, { - "codePostal": "63200", - "codeCommune": "63108", - "libelleAcheminement": "LE CHEIX", - "nomCommune": "LE CHEIX" + "codePostal": "37380", + "codeCommune": "37166", + "libelleAcheminement": "NEUILLE LE LIERRE", + "nomCommune": "NEUILLE LE LIERRE" }, { - "codePostal": "12460", - "codeCommune": "12209", - "libelleAcheminement": "ST AMANS DES COTS", - "nomCommune": "ST AMANS DES COTS" + "codePostal": "50240", + "codeCommune": "50487", + "libelleAcheminement": "ST JAMES", + "nomCommune": "ST JAMES" }, { - "codePostal": "29290", - "codeCommune": "29076", - "libelleAcheminement": "MILIZAC GUIPRONVEL", - "nomCommune": "MILIZAC GUIPRONVEL" + "codePostal": "50520", + "codeCommune": "50260", + "libelleAcheminement": "JUVIGNY LES VALLEES", + "nomCommune": "JUVIGNY LES VALLEES" }, { - "codePostal": "40250", - "codeCommune": "40143", - "libelleAcheminement": "LAMOTHE", - "nomCommune": "LAMOTHE" + "codePostal": "35630", + "codeCommune": "35134", + "libelleAcheminement": "LES IFFS", + "nomCommune": "LES IFFS" }, { - "codePostal": "63160", - "codeCommune": "63157", - "libelleAcheminement": "FAYET LE CHATEAU", - "nomCommune": "FAYET LE CHATEAU" + "codePostal": "37160", + "codeCommune": "37168", + "libelleAcheminement": "NEUILLY LE BRIGNON", + "nomCommune": "NEUILLY LE BRIGNON" }, { - "codePostal": "12720", - "codeCommune": "12211", - "libelleAcheminement": "ST ANDRE DE VEZINES", - "nomCommune": "ST ANDRE DE VEZINES" + "codePostal": "50680", + "codeCommune": "50491", + "libelleAcheminement": "ST JEAN DE SAVIGNY", + "nomCommune": "ST JEAN DE SAVIGNY" }, { - "codePostal": "29260", - "codeCommune": "29093", - "libelleAcheminement": "KERNILIS", - "nomCommune": "KERNILIS" + "codePostal": "50520", + "codeCommune": "50260", + "libelleAcheminement": "JUVIGNY LES VALLEES", + "nomCommune": "JUVIGNY LES VALLEES" }, { - "codePostal": "40250", - "codeCommune": "40144", - "libelleAcheminement": "LARBEY", - "nomCommune": "LARBEY" + "codePostal": "35850", + "codeCommune": "35135", + "libelleAcheminement": "IRODOUER", + "nomCommune": "IRODOUER" }, { - "codePostal": "63740", - "codeCommune": "63163", - "libelleAcheminement": "GELLES", - "nomCommune": "GELLES" + "codePostal": "37220", + "codeCommune": "37178", + "libelleAcheminement": "PANZOULT", + "nomCommune": "PANZOULT" }, { - "codePostal": "12470", - "codeCommune": "12214", - "libelleAcheminement": "ST CHELY D AUBRAC", - "nomCommune": "ST CHELY D AUBRAC" + "codePostal": "50810", + "codeCommune": "50492", + "libelleAcheminement": "ST JEAN D ELLE", + "nomCommune": "ST JEAN D ELLE" }, { - "codePostal": "29260", - "codeCommune": "29094", - "libelleAcheminement": "KERNOUES", - "nomCommune": "KERNOUES" + "codePostal": "50430", + "codeCommune": "50267", + "libelleAcheminement": "LESSAY", + "nomCommune": "LESSAY" }, { - "codePostal": "40120", - "codeCommune": "40149", - "libelleAcheminement": "LENCOUACQ", - "nomCommune": "LENCOUACQ" + "codePostal": "35133", + "codeCommune": "35137", + "libelleAcheminement": "JAVENE", + "nomCommune": "JAVENE" }, { - "codePostal": "63850", - "codeCommune": "63169", - "libelleAcheminement": "LA GODIVELLE", - "nomCommune": "LA GODIVELLE" + "codePostal": "37520", + "codeCommune": "37195", + "libelleAcheminement": "LA RICHE", + "nomCommune": "LA RICHE" }, { - "codePostal": "12130", - "codeCommune": "12219", - "libelleAcheminement": "STE EULALIE D OLT", - "nomCommune": "STE EULALIE D OLT" + "codePostal": "50810", + "codeCommune": "50492", + "libelleAcheminement": "ST JEAN D ELLE", + "nomCommune": "ST JEAN D ELLE" }, { - "codePostal": "29870", - "codeCommune": "29101", - "libelleAcheminement": "LANDEDA", - "nomCommune": "LANDEDA" + "codePostal": "50250", + "codeCommune": "50273", + "libelleAcheminement": "MONTSENELLE", + "nomCommune": "MONTSENELLE" }, { - "codePostal": "40170", - "codeCommune": "40157", - "libelleAcheminement": "LIT ET MIXE", - "nomCommune": "LIT ET MIXE" + "codePostal": "35450", + "codeCommune": "35141", + "libelleAcheminement": "LANDAVRAN", + "nomCommune": "LANDAVRAN" }, { - "codePostal": "63320", - "codeCommune": "63172", - "libelleAcheminement": "GRANDEYROLLES", - "nomCommune": "GRANDEYROLLES" + "codePostal": "37370", + "codeCommune": "37207", + "libelleAcheminement": "ST AUBIN LE DEPEINT", + "nomCommune": "ST AUBIN LE DEPEINT" }, { - "codePostal": "12400", - "codeCommune": "12222", - "libelleAcheminement": "ST FELIX DE SORGUES", - "nomCommune": "ST FELIX DE SORGUES" + "codePostal": "50200", + "codeCommune": "50506", + "libelleAcheminement": "ST MALO DE LA LANDE", + "nomCommune": "ST MALO DE LA LANDE" }, { - "codePostal": "29800", - "codeCommune": "29103", - "libelleAcheminement": "LANDERNEAU", - "nomCommune": "LANDERNEAU" + "codePostal": "50510", + "codeCommune": "50278", + "libelleAcheminement": "LE LOREUR", + "nomCommune": "LE LOREUR" }, { - "codePostal": "40250", - "codeCommune": "40160", - "libelleAcheminement": "LOURQUEN", - "nomCommune": "LOURQUEN" + "codePostal": "35133", + "codeCommune": "35142", + "libelleAcheminement": "LANDEAN", + "nomCommune": "LANDEAN" }, { - "codePostal": "63890", - "codeCommune": "63174", - "libelleAcheminement": "GRANDVAL", - "nomCommune": "GRANDVAL" + "codePostal": "37500", + "codeCommune": "37210", + "libelleAcheminement": "ST BENOIT LA FORET", + "nomCommune": "ST BENOIT LA FORET" }, { - "codePostal": "12420", - "codeCommune": "12223", - "libelleAcheminement": "ARGENCES EN AUBRAC", - "nomCommune": "ARGENCES EN AUBRAC" + "codePostal": "50480", + "codeCommune": "50517", + "libelleAcheminement": "ST MARTIN DE VARREVILLE", + "nomCommune": "ST MARTIN DE VARREVILLE" }, { - "codePostal": "29710", - "codeCommune": "29108", - "libelleAcheminement": "LANDUDEC", - "nomCommune": "LANDUDEC" + "codePostal": "50690", + "codeCommune": "50294", + "libelleAcheminement": "MARTINVAST", + "nomCommune": "MARTINVAST" }, { - "codePostal": "40210", - "codeCommune": "40163", - "libelleAcheminement": "LUE", - "nomCommune": "LUE" + "codePostal": "35360", + "codeCommune": "35143", + "libelleAcheminement": "LANDUJAN", + "nomCommune": "LANDUJAN" }, { - "codePostal": "63290", - "codeCommune": "63184", - "libelleAcheminement": "LACHAUX", - "nomCommune": "LACHAUX" + "codePostal": "37800", + "codeCommune": "37216", + "libelleAcheminement": "ST EPAIN", + "nomCommune": "ST EPAIN" }, { - "codePostal": "12140", - "codeCommune": "12226", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "50800", + "codeCommune": "50518", + "libelleAcheminement": "ST MARTIN LE BOUILLANT", + "nomCommune": "ST MARTIN LE BOUILLANT" }, { - "codePostal": "29160", - "codeCommune": "29120", - "libelleAcheminement": "LANVEOC", - "nomCommune": "LANVEOC" + "codePostal": "50880", + "codeCommune": "50297", + "libelleAcheminement": "LA MEAUFFE", + "nomCommune": "LA MEAUFFE" }, { - "codePostal": "40140", - "codeCommune": "40168", - "libelleAcheminement": "MAGESCQ", - "nomCommune": "MAGESCQ" + "codePostal": "35111", + "codeCommune": "35153", + "libelleAcheminement": "LILLEMER", + "nomCommune": "LILLEMER" }, { - "codePostal": "63380", - "codeCommune": "63186", - "libelleAcheminement": "LANDOGNE", - "nomCommune": "LANDOGNE" + "codePostal": "37110", + "codeCommune": "37229", + "libelleAcheminement": "ST NICOLAS DES MOTETS", + "nomCommune": "ST NICOLAS DES MOTETS" }, { - "codePostal": "12850", - "codeCommune": "12241", - "libelleAcheminement": "STE RADEGONDE", - "nomCommune": "STE RADEGONDE" + "codePostal": "50480", + "codeCommune": "50523", + "libelleAcheminement": "STE MERE EGLISE", + "nomCommune": "STE MERE EGLISE" }, { - "codePostal": "29260", - "codeCommune": "29126", - "libelleAcheminement": "LOC BREVALAIRE", - "nomCommune": "LOC BREVALAIRE" + "codePostal": "50510", + "codeCommune": "50304", + "libelleAcheminement": "LE MESNIL AUBERT", + "nomCommune": "LE MESNIL AUBERT" }, { - "codePostal": "40090", - "codeCommune": "40178", - "libelleAcheminement": "MAZEROLLES", - "nomCommune": "MAZEROLLES" + "codePostal": "35270", + "codeCommune": "35159", + "libelleAcheminement": "LOURMAIS", + "nomCommune": "LOURMAIS" }, { - "codePostal": "63760", - "codeCommune": "63191", - "libelleAcheminement": "LASTIC", - "nomCommune": "LASTIC" + "codePostal": "37370", + "codeCommune": "37231", + "libelleAcheminement": "ST PATERNE RACAN", + "nomCommune": "ST PATERNE RACAN" }, { - "codePostal": "12490", - "codeCommune": "12243", - "libelleAcheminement": "ST ROME DE CERNON", - "nomCommune": "ST ROME DE CERNON" + "codePostal": "50300", + "codeCommune": "50531", + "libelleAcheminement": "ST OVIN", + "nomCommune": "ST OVIN" }, { - "codePostal": "29470", - "codeCommune": "29140", - "libelleAcheminement": "LOPERHET", - "nomCommune": "LOPERHET" + "codePostal": "50600", + "codeCommune": "50315", + "libelleAcheminement": "LE MESNILLARD", + "nomCommune": "LE MESNILLARD" }, { - "codePostal": "40700", - "codeCommune": "40188", - "libelleAcheminement": "MOMUY", - "nomCommune": "MOMUY" + "codePostal": "35680", + "codeCommune": "35161", + "libelleAcheminement": "LOUVIGNE DE BAIS", + "nomCommune": "LOUVIGNE DE BAIS" }, { - "codePostal": "63190", - "codeCommune": "63195", - "libelleAcheminement": "LEZOUX", - "nomCommune": "LEZOUX" + "codePostal": "37130", + "codeCommune": "37232", + "libelleAcheminement": "COTEAUX SUR LOIRE", + "nomCommune": "COTEAUX SUR LOIRE" }, { - "codePostal": "12700", - "codeCommune": "12257", - "libelleAcheminement": "CAUSSE ET DIEGE", - "nomCommune": "CAUSSE ET DIEGE" + "codePostal": "50380", + "codeCommune": "50532", + "libelleAcheminement": "ST PAIR SUR MER", + "nomCommune": "ST PAIR SUR MER" }, { - "codePostal": "29920", - "codeCommune": "29153", - "libelleAcheminement": "NEVEZ", - "nomCommune": "NEVEZ" + "codePostal": "50200", + "codeCommune": "50345", + "libelleAcheminement": "MONTHUCHON", + "nomCommune": "MONTHUCHON" }, { - "codePostal": "40700", - "codeCommune": "40190", - "libelleAcheminement": "MONSEGUR", - "nomCommune": "MONSEGUR" + "codePostal": "35240", + "codeCommune": "35165", + "libelleAcheminement": "MARCILLE ROBERT", + "nomCommune": "MARCILLE ROBERT" }, { - "codePostal": "63340", - "codeCommune": "63202", - "libelleAcheminement": "MADRIAT", - "nomCommune": "MADRIAT" + "codePostal": "37130", + "codeCommune": "37232", + "libelleAcheminement": "COTEAUX SUR LOIRE", + "nomCommune": "COTEAUX SUR LOIRE" }, { - "codePostal": "12200", - "codeCommune": "12259", - "libelleAcheminement": "SANVENSA", - "nomCommune": "SANVENSA" + "codePostal": "50870", + "codeCommune": "50535", + "libelleAcheminement": "LE PARC", + "nomCommune": "LE PARC" }, { - "codePostal": "29170", - "codeCommune": "29161", - "libelleAcheminement": "PLEUVEN", - "nomCommune": "PLEUVEN" + "codePostal": "50680", + "codeCommune": "50356", + "libelleAcheminement": "MOON SUR ELLE", + "nomCommune": "MOON SUR ELLE" }, { - "codePostal": "40380", - "codeCommune": "40194", - "libelleAcheminement": "MONTFORT EN CHALOSSE", - "nomCommune": "MONTFORT EN CHALOSSE" + "codePostal": "35220", + "codeCommune": "35166", + "libelleAcheminement": "MARPIRE", + "nomCommune": "MARPIRE" }, { - "codePostal": "63440", - "codeCommune": "63208", - "libelleAcheminement": "MARCILLAT", - "nomCommune": "MARCILLAT" + "codePostal": "37360", + "codeCommune": "37245", + "libelleAcheminement": "SEMBLANCAY", + "nomCommune": "SEMBLANCAY" }, { - "codePostal": "12260", - "codeCommune": "12261", - "libelleAcheminement": "SAUJAC", - "nomCommune": "SAUJAC" + "codePostal": "50870", + "codeCommune": "50535", + "libelleAcheminement": "LE PARC", + "nomCommune": "LE PARC" }, { - "codePostal": "29410", - "codeCommune": "29163", - "libelleAcheminement": "PLEYBER CHRIST", - "nomCommune": "PLEYBER CHRIST" + "codePostal": "50600", + "codeCommune": "50362", + "libelleAcheminement": "MOULINES", + "nomCommune": "MOULINES" }, { - "codePostal": "40330", - "codeCommune": "40203", - "libelleAcheminement": "NASSIET", - "nomCommune": "NASSIET" + "codePostal": "35270", + "codeCommune": "35172", + "libelleAcheminement": "MEILLAC", + "nomCommune": "MEILLAC" }, { - "codePostal": "63940", - "codeCommune": "63211", - "libelleAcheminement": "MARSAC EN LIVRADOIS", - "nomCommune": "MARSAC EN LIVRADOIS" + "codePostal": "37800", + "codeCommune": "37247", + "libelleAcheminement": "SEPMES", + "nomCommune": "SEPMES" }, { - "codePostal": "12200", - "codeCommune": "12263", - "libelleAcheminement": "SAVIGNAC", - "nomCommune": "SAVIGNAC" + "codePostal": "50270", + "codeCommune": "50536", + "libelleAcheminement": "ST PIERRE D ARTHEGLISE", + "nomCommune": "ST PIERRE D ARTHEGLISE" }, { - "codePostal": "29710", - "codeCommune": "29167", - "libelleAcheminement": "PLOGASTEL ST GERMAIN", - "nomCommune": "PLOGASTEL ST GERMAIN" + "codePostal": "50420", + "codeCommune": "50363", + "libelleAcheminement": "MOYON VILLAGES", + "nomCommune": "MOYON VILLAGES" }, { - "codePostal": "40300", - "codeCommune": "40206", - "libelleAcheminement": "OEYREGAVE", - "nomCommune": "OEYREGAVE" + "codePostal": "35540", + "codeCommune": "35179", + "libelleAcheminement": "MINIAC MORVAN", + "nomCommune": "MINIAC MORVAN" }, { - "codePostal": "63430", - "codeCommune": "63213", - "libelleAcheminement": "LES MARTRES D ARTIERE", - "nomCommune": "LES MARTRES D ARTIERE" + "codePostal": "37500", + "codeCommune": "37248", + "libelleAcheminement": "SEUILLY", + "nomCommune": "SEUILLY" }, { - "codePostal": "12150", - "codeCommune": "12270", - "libelleAcheminement": "SEVERAC D AVEYRON", - "nomCommune": "SEVERAC D AVEYRON" + "codePostal": "50200", + "codeCommune": "50537", + "libelleAcheminement": "ST PIERRE DE COUTANCES", + "nomCommune": "ST PIERRE DE COUTANCES" }, { - "codePostal": "29710", - "codeCommune": "29173", - "libelleAcheminement": "PLONEIS", - "nomCommune": "PLONEIS" + "codePostal": "50860", + "codeCommune": "50363", + "libelleAcheminement": "MOYON VILLAGES", + "nomCommune": "MOYON VILLAGES" }, { - "codePostal": "40160", - "codeCommune": "40217", - "libelleAcheminement": "PARENTIS EN BORN", - "nomCommune": "PARENTIS EN BORN" + "codePostal": "35540", + "codeCommune": "35179", + "libelleAcheminement": "MINIAC MORVAN", + "nomCommune": "MINIAC MORVAN" }, { - "codePostal": "63730", - "codeCommune": "63214", - "libelleAcheminement": "LES MARTRES DE VEYRE", - "nomCommune": "LES MARTRES DE VEYRE" + "codePostal": "37330", + "codeCommune": "37251", + "libelleAcheminement": "SOUVIGNE", + "nomCommune": "SOUVIGNE" }, { - "codePostal": "12440", - "codeCommune": "12278", - "libelleAcheminement": "TAYRAC", - "nomCommune": "TAYRAC" + "codePostal": "50510", + "codeCommune": "50549", + "libelleAcheminement": "ST SAUVEUR LA POMMERAYE", + "nomCommune": "ST SAUVEUR LA POMMERAYE" }, { - "codePostal": "29530", - "codeCommune": "29175", - "libelleAcheminement": "PLONEVEZ DU FAOU", - "nomCommune": "PLONEVEZ DU FAOU" + "codePostal": "50190", + "codeCommune": "50368", + "libelleAcheminement": "NAY", + "nomCommune": "NAY" }, { - "codePostal": "40190", - "codeCommune": "40221", - "libelleAcheminement": "PERQUIE", - "nomCommune": "PERQUIE" + "codePostal": "35190", + "codeCommune": "35180", + "libelleAcheminement": "MINIAC SOUS BECHEREL", + "nomCommune": "MINIAC SOUS BECHEREL" }, { - "codePostal": "63220", - "codeCommune": "63221", - "libelleAcheminement": "MEDEYROLLES", - "nomCommune": "MEDEYROLLES" + "codePostal": "37190", + "codeCommune": "37264", + "libelleAcheminement": "VALLERES", + "nomCommune": "VALLERES" }, { - "codePostal": "12400", - "codeCommune": "12286", - "libelleAcheminement": "VABRES L ABBAYE", - "nomCommune": "VABRES L ABBAYE" + "codePostal": "50300", + "codeCommune": "50554", + "libelleAcheminement": "ST SENIER SOUS AVRANCHES", + "nomCommune": "ST SENIER SOUS AVRANCHES" }, { - "codePostal": "29260", - "codeCommune": "29179", - "libelleAcheminement": "PLOUDANIEL", - "nomCommune": "PLOUDANIEL" + "codePostal": "50200", + "codeCommune": "50376", + "libelleAcheminement": "NICORPS", + "nomCommune": "NICORPS" }, { - "codePostal": "40300", - "codeCommune": "40222", - "libelleAcheminement": "PEY", - "nomCommune": "PEY" + "codePostal": "35870", + "codeCommune": "35181", + "libelleAcheminement": "LE MINIHIC SUR RANCE", + "nomCommune": "LE MINIHIC SUR RANCE" }, { - "codePostal": "63115", - "codeCommune": "63226", - "libelleAcheminement": "MUR SUR ALLIER", - "nomCommune": "MUR SUR ALLIER" + "codePostal": "37270", + "codeCommune": "37267", + "libelleAcheminement": "VERETZ", + "nomCommune": "VERETZ" }, { - "codePostal": "12490", - "codeCommune": "12296", - "libelleAcheminement": "VIALA DU TARN", - "nomCommune": "VIALA DU TARN" + "codePostal": "50700", + "codeCommune": "50567", + "libelleAcheminement": "SAUSSEMESNIL", + "nomCommune": "SAUSSEMESNIL" }, - { - "codePostal": "29252", - "codeCommune": "29186", - "libelleAcheminement": "PLOUEZOC H", - "nomCommune": "PLOUEZOC H" + { + "codePostal": "50600", + "codeCommune": "50391", + "libelleAcheminement": "GRANDPARIGNY", + "nomCommune": "GRANDPARIGNY" }, { - "codePostal": "40700", - "codeCommune": "40223", - "libelleAcheminement": "PEYRE", - "nomCommune": "PEYRE" + "codePostal": "35370", + "codeCommune": "35183", + "libelleAcheminement": "MONDEVERT", + "nomCommune": "MONDEVERT" }, { - "codePostal": "63700", - "codeCommune": "63233", - "libelleAcheminement": "MONTAIGUT EN COMBRAILLE", - "nomCommune": "MONTAIGUT" + "codePostal": "37600", + "codeCommune": "37269", + "libelleAcheminement": "VERNEUIL SUR INDRE", + "nomCommune": "VERNEUIL SUR INDRE" }, { - "codePostal": "12310", - "codeCommune": "12303", - "libelleAcheminement": "VIMENET", - "nomCommune": "VIMENET" + "codePostal": "50640", + "codeCommune": "50570", + "libelleAcheminement": "SAVIGNY LE VIEUX", + "nomCommune": "SAVIGNY LE VIEUX" }, { - "codePostal": "29630", - "codeCommune": "29188", - "libelleAcheminement": "PLOUGASNOU", - "nomCommune": "PLOUGASNOU" + "codePostal": "50410", + "codeCommune": "50393", + "libelleAcheminement": "PERCY EN NORMANDIE", + "nomCommune": "PERCY EN NORMANDIE" }, { - "codePostal": "40300", - "codeCommune": "40224", - "libelleAcheminement": "PEYREHORADE", - "nomCommune": "PEYREHORADE" + "codePostal": "35460", + "codeCommune": "35191", + "libelleAcheminement": "LES PORTES DU COGLAIS", + "nomCommune": "LES PORTES DU COGLAIS" }, { - "codePostal": "63230", - "codeCommune": "63238", - "libelleAcheminement": "MONTFERMY", - "nomCommune": "MONTFERMY" + "codePostal": "37510", + "codeCommune": "37272", + "libelleAcheminement": "VILLANDRY", + "nomCommune": "VILLANDRY" }, { - "codePostal": "13100", - "codeCommune": "13001", - "libelleAcheminement": "AIX EN PROVENCE", - "nomCommune": "AIX EN PROVENCE" + "codePostal": "50480", + "codeCommune": "50571", + "libelleAcheminement": "SEBEVILLE", + "nomCommune": "SEBEVILLE" }, { - "codePostal": "29880", - "codeCommune": "29195", - "libelleAcheminement": "PLOUGUERNEAU", - "nomCommune": "PLOUGUERNEAU" + "codePostal": "50150", + "codeCommune": "50397", + "libelleAcheminement": "PERRIERS EN BEAUFICEL", + "nomCommune": "PERRIERS EN BEAUFICEL" }, { - "codePostal": "40200", - "codeCommune": "40229", - "libelleAcheminement": "PONTENX LES FORGES", - "nomCommune": "PONTENX LES FORGES" + "codePostal": "35460", + "codeCommune": "35191", + "libelleAcheminement": "LES PORTES DU COGLAIS", + "nomCommune": "LES PORTES DU COGLAIS" }, { - "codePostal": "63260", - "codeCommune": "63240", - "libelleAcheminement": "MONTPENSIER", - "nomCommune": "MONTPENSIER" + "codePostal": "37110", + "codeCommune": "37276", + "libelleAcheminement": "VILLEDOMER", + "nomCommune": "VILLEDOMER" }, { - "codePostal": "13190", - "codeCommune": "13002", - "libelleAcheminement": "ALLAUCH", - "nomCommune": "ALLAUCH" + "codePostal": "50640", + "codeCommune": "50591", + "libelleAcheminement": "LE TEILLEUL", + "nomCommune": "LE TEILLEUL" }, { - "codePostal": "29780", - "codeCommune": "29197", - "libelleAcheminement": "PLOUHINEC", - "nomCommune": "PLOUHINEC" + "codePostal": "50360", + "codeCommune": "50400", + "libelleAcheminement": "PICAUVILLE", + "nomCommune": "PICAUVILLE" }, { - "codePostal": "40120", - "codeCommune": "40234", - "libelleAcheminement": "POUYDESSEAUX", - "nomCommune": "POUYDESSEAUX" + "codePostal": "35500", + "codeCommune": "35194", + "libelleAcheminement": "MONTREUIL SOUS PEROUSE", + "nomCommune": "MONTREUIL SOUS PEROUSE" }, { - "codePostal": "63200", - "codeCommune": "63244", - "libelleAcheminement": "CHAMBARON SUR MORGE", - "nomCommune": "CHAMBARON SUR MORGE" + "codePostal": "37260", + "codeCommune": "37278", + "libelleAcheminement": "VILLEPERDUE", + "nomCommune": "VILLEPERDUE" }, { - "codePostal": "13980", - "codeCommune": "13003", - "libelleAcheminement": "ALLEINS", - "nomCommune": "ALLEINS" + "codePostal": "50640", + "codeCommune": "50591", + "libelleAcheminement": "LE TEILLEUL", + "nomCommune": "LE TEILLEUL" }, { - "codePostal": "29830", - "codeCommune": "29208", - "libelleAcheminement": "PLOURIN", - "nomCommune": "PLOURIN" + "codePostal": "50220", + "codeCommune": "50407", + "libelleAcheminement": "POILLEY", + "nomCommune": "POILLEY" }, { - "codePostal": "40380", - "codeCommune": "40236", - "libelleAcheminement": "POYARTIN", - "nomCommune": "POYARTIN" + "codePostal": "35250", + "codeCommune": "35197", + "libelleAcheminement": "MOUAZE", + "nomCommune": "MOUAZE" }, { - "codePostal": "63150", - "codeCommune": "63246", - "libelleAcheminement": "MURAT LE QUAIRE", - "nomCommune": "MURAT LE QUAIRE" + "codePostal": "37330", + "codeCommune": "37279", + "libelleAcheminement": "VILLIERS AU BOUIN", + "nomCommune": "VILLIERS AU BOUIN" }, { - "codePostal": "13400", - "codeCommune": "13005", - "libelleAcheminement": "AUBAGNE", - "nomCommune": "AUBAGNE" + "codePostal": "50470", + "codeCommune": "50599", + "libelleAcheminement": "TOLLEVAST", + "nomCommune": "TOLLEVAST" }, { - "codePostal": "29280", - "codeCommune": "29212", - "libelleAcheminement": "PLOUZANE", - "nomCommune": "PLOUZANE" + "codePostal": "50880", + "codeCommune": "50409", + "libelleAcheminement": "PONT HEBERT", + "nomCommune": "PONT HEBERT" }, { - "codePostal": "40190", - "codeCommune": "40238", - "libelleAcheminement": "PUJO LE PLAN", - "nomCommune": "PUJO LE PLAN" + "codePostal": "35130", + "codeCommune": "35199", + "libelleAcheminement": "MOUSSE", + "nomCommune": "MOUSSE" }, { - "codePostal": "63210", - "codeCommune": "63248", - "libelleAcheminement": "NEBOUZAT", - "nomCommune": "NEBOUZAT" + "codePostal": "38150", + "codeCommune": "38009", + "libelleAcheminement": "ANJOU", + "nomCommune": "ANJOU" }, { - "codePostal": "13121", - "codeCommune": "13008", - "libelleAcheminement": "AURONS", - "nomCommune": "AURONS" + "codePostal": "50340", + "codeCommune": "50604", + "libelleAcheminement": "TREAUVILLE", + "nomCommune": "TREAUVILLE" }, { - "codePostal": "29440", - "codeCommune": "29213", - "libelleAcheminement": "PLOUZEVEDE", - "nomCommune": "PLOUZEVEDE" + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { - "codePostal": "40320", - "codeCommune": "40239", - "libelleAcheminement": "PUYOL CAZALET", - "nomCommune": "PUYOL CAZALET" + "codePostal": "35380", + "codeCommune": "35211", + "libelleAcheminement": "PAIMPONT", + "nomCommune": "PAIMPONT" }, { - "codePostal": "63290", - "codeCommune": "63253", - "libelleAcheminement": "NOALHAT", - "nomCommune": "NOALHAT" + "codePostal": "38140", + "codeCommune": "38013", + "libelleAcheminement": "APPRIEU", + "nomCommune": "APPRIEU" }, { - "codePostal": "13520", - "codeCommune": "13011", - "libelleAcheminement": "LES BAUX DE PROVENCE", - "nomCommune": "LES BAUX DE PROVENCE" + "codePostal": "50620", + "codeCommune": "50606", + "libelleAcheminement": "TRIBEHOU", + "nomCommune": "TRIBEHOU" }, { - "codePostal": "29700", - "codeCommune": "29216", - "libelleAcheminement": "PLUGUFFAN", - "nomCommune": "PLUGUFFAN" + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { - "codePostal": "40370", - "codeCommune": "40243", - "libelleAcheminement": "RION DES LANDES", - "nomCommune": "RION DES LANDES" + "codePostal": "35320", + "codeCommune": "35231", + "libelleAcheminement": "POLIGNE", + "nomCommune": "POLIGNE" }, { - "codePostal": "63220", - "codeCommune": "63256", - "libelleAcheminement": "NOVACELLES", - "nomCommune": "NOVACELLES" + "codePostal": "38270", + "codeCommune": "38034", + "libelleAcheminement": "BEAUREPAIRE", + "nomCommune": "BEAUREPAIRE" }, { - "codePostal": "13320", - "codeCommune": "13015", - "libelleAcheminement": "BOUC BEL AIR", - "nomCommune": "BOUC BEL AIR" + "codePostal": "50300", + "codeCommune": "50612", + "libelleAcheminement": "VAINS", + "nomCommune": "VAINS" }, { - "codePostal": "29840", - "codeCommune": "29221", - "libelleAcheminement": "PORSPODER", - "nomCommune": "PORSPODER" + "codePostal": "50630", + "codeCommune": "50417", + "libelleAcheminement": "QUETTEHOU", + "nomCommune": "QUETTEHOU" }, { - "codePostal": "40120", - "codeCommune": "40245", - "libelleAcheminement": "ROQUEFORT", - "nomCommune": "ROQUEFORT" + "codePostal": "35000", + "codeCommune": "35238", + "libelleAcheminement": "RENNES", + "nomCommune": "RENNES" }, { - "codePostal": "63880", - "codeCommune": "63258", - "libelleAcheminement": "OLLIERGUES", - "nomCommune": "OLLIERGUES" + "codePostal": "38260", + "codeCommune": "38049", + "libelleAcheminement": "BOSSIEU", + "nomCommune": "BOSSIEU" }, { - "codePostal": "13620", - "codeCommune": "13021", - "libelleAcheminement": "CARRY LE ROUET", - "nomCommune": "CARRY LE ROUET" + "codePostal": "50330", + "codeCommune": "50618", + "libelleAcheminement": "VAROUVILLE", + "nomCommune": "VAROUVILLE" }, { - "codePostal": "29100", - "codeCommune": "29224", - "libelleAcheminement": "POULDERGAT", - "nomCommune": "POULDERGAT" + "codePostal": "50660", + "codeCommune": "50419", + "libelleAcheminement": "QUETTREVILLE SUR SIENNE", + "nomCommune": "QUETTREVILLE SUR SIENNE" }, { - "codePostal": "40190", - "codeCommune": "40258", - "libelleAcheminement": "STE FOY", - "nomCommune": "STE FOY" + "codePostal": "35200", + "codeCommune": "35238", + "libelleAcheminement": "RENNES", + "nomCommune": "RENNES" }, { - "codePostal": "63500", - "codeCommune": "63261", - "libelleAcheminement": "ORBEIL", - "nomCommune": "ORBEIL" + "codePostal": "38520", + "codeCommune": "38052", + "libelleAcheminement": "LE BOURG D OISANS", + "nomCommune": "LE BOURG D OISANS" }, { - "codePostal": "13160", - "codeCommune": "13027", - "libelleAcheminement": "CHATEAURENARD", - "nomCommune": "CHATEAURENARD" + "codePostal": "50800", + "codeCommune": "50639", + "libelleAcheminement": "VILLEDIEU LES POELES ROUFFIGNY", + "nomCommune": "VILLEDIEU LES POELES ROUFFIGNY" }, { - "codePostal": "29710", - "codeCommune": "29225", - "libelleAcheminement": "POULDREUZIC", - "nomCommune": "POULDREUZIC" + "codePostal": "50260", + "codeCommune": "50425", + "libelleAcheminement": "RAUVILLE LA BIGOT", + "nomCommune": "RAUVILLE LA BIGOT" }, { - "codePostal": "40320", - "codeCommune": "40270", - "libelleAcheminement": "ST LOUBOUER", - "nomCommune": "ST LOUBOUER" + "codePostal": "35560", + "codeCommune": "35242", + "libelleAcheminement": "RIMOU", + "nomCommune": "RIMOU" }, { - "codePostal": "63500", - "codeCommune": "63268", - "libelleAcheminement": "PARDINES", - "nomCommune": "PARDINES" + "codePostal": "38300", + "codeCommune": "38053", + "libelleAcheminement": "BOURGOIN JALLIEU", + "nomCommune": "BOURGOIN JALLIEU" }, { - "codePostal": "13850", - "codeCommune": "13046", - "libelleAcheminement": "GREASQUE", - "nomCommune": "GREASQUE" + "codePostal": "50690", + "codeCommune": "50643", + "libelleAcheminement": "VIRANDEVILLE", + "nomCommune": "VIRANDEVILLE" }, { - "codePostal": "29180", - "codeCommune": "29229", - "libelleAcheminement": "QUEMENEVEN", - "nomCommune": "QUEMENEVEN" + "codePostal": "50570", + "codeCommune": "50431", + "libelleAcheminement": "REMILLY LES MARAIS", + "nomCommune": "REMILLY LES MARAIS" }, { - "codePostal": "40390", - "codeCommune": "40271", - "libelleAcheminement": "STE MARIE DE GOSSE", - "nomCommune": "STE MARIE DE GOSSE" + "codePostal": "35490", + "codeCommune": "35244", + "libelleAcheminement": "ROMAZY", + "nomCommune": "ROMAZY" }, { - "codePostal": "63800", - "codeCommune": "63273", - "libelleAcheminement": "PERIGNAT SUR ALLIER", - "nomCommune": "PERIGNAT SUR ALLIER" + "codePostal": "38320", + "codeCommune": "38059", + "libelleAcheminement": "BRIE ET ANGONNES", + "nomCommune": "BRIE ET ANGONNES" }, { - "codePostal": "13118", - "codeCommune": "13047", - "libelleAcheminement": "ISTRES", - "nomCommune": "ISTRES" + "codePostal": "51530", + "codeCommune": "51002", + "libelleAcheminement": "ST MARTIN D ABLOIS", + "nomCommune": "ST MARTIN D ABLOIS" }, { - "codePostal": "29340", - "codeCommune": "29236", - "libelleAcheminement": "RIEC SUR BELON", - "nomCommune": "RIEC SUR BELON" + "codePostal": "50570", + "codeCommune": "50431", + "libelleAcheminement": "REMILLY LES MARAIS", + "nomCommune": "REMILLY LES MARAIS" }, { - "codePostal": "40550", - "codeCommune": "40276", - "libelleAcheminement": "ST MICHEL ESCALUS", - "nomCommune": "ST MICHEL ESCALUS" + "codePostal": "35120", + "codeCommune": "35246", + "libelleAcheminement": "ROZ LANDRIEUX", + "nomCommune": "ROZ LANDRIEUX" }, { - "codePostal": "63200", - "codeCommune": "63278", - "libelleAcheminement": "PESSAT VILLENEUVE", - "nomCommune": "PESSAT VILLENEUVE" + "codePostal": "38590", + "codeCommune": "38060", + "libelleAcheminement": "BRION", + "nomCommune": "BRION" }, { - "codePostal": "13800", - "codeCommune": "13047", - "libelleAcheminement": "ISTRES", - "nomCommune": "ISTRES" + "codePostal": "51170", + "codeCommune": "51013", + "libelleAcheminement": "AOUGNY", + "nomCommune": "AOUGNY" }, { - "codePostal": "29800", - "codeCommune": "29245", - "libelleAcheminement": "ST DIVY", - "nomCommune": "ST DIVY" + "codePostal": "50620", + "codeCommune": "50431", + "libelleAcheminement": "REMILLY LES MARAIS", + "nomCommune": "REMILLY LES MARAIS" }, { - "codePostal": "40090", - "codeCommune": "40280", - "libelleAcheminement": "ST PERDON", - "nomCommune": "ST PERDON" + "codePostal": "35610", + "codeCommune": "35248", + "libelleAcheminement": "SAINS", + "nomCommune": "SAINS" }, { - "codePostal": "63730", - "codeCommune": "63282", - "libelleAcheminement": "PLAUZAT", - "nomCommune": "PLAUZAT" + "codePostal": "38690", + "codeCommune": "38063", + "libelleAcheminement": "BURCIN", + "nomCommune": "BURCIN" }, { - "codePostal": "13500", - "codeCommune": "13056", - "libelleAcheminement": "MARTIGUES", - "nomCommune": "MARTIGUES" + "codePostal": "51170", + "codeCommune": "51014", + "libelleAcheminement": "ARCIS LE PONSART", + "nomCommune": "ARCIS LE PONSART" }, { - "codePostal": "29520", - "codeCommune": "29249", - "libelleAcheminement": "ST GOAZEC", - "nomCommune": "ST GOAZEC" + "codePostal": "50340", + "codeCommune": "50442", + "libelleAcheminement": "LE ROZEL", + "nomCommune": "LE ROZEL" }, { - "codePostal": "40230", - "codeCommune": "40284", - "libelleAcheminement": "ST VINCENT DE TYROSSE", - "nomCommune": "ST VINCENT DE TYROSSE" + "codePostal": "35120", + "codeCommune": "35259", + "libelleAcheminement": "ST BROLADRE", + "nomCommune": "ST BROLADRE" }, { - "codePostal": "63430", - "codeCommune": "63284", - "libelleAcheminement": "PONT DU CHATEAU", - "nomCommune": "PONT DU CHATEAU" + "codePostal": "38190", + "codeCommune": "38070", + "libelleAcheminement": "LE CHAMP PRES FROGES", + "nomCommune": "LE CHAMP PRES FROGES" }, { - "codePostal": "13650", - "codeCommune": "13059", - "libelleAcheminement": "MEYRARGUES", - "nomCommune": "MEYRARGUES" + "codePostal": "51290", + "codeCommune": "51017", + "libelleAcheminement": "ARZILLIERES NEUVILLE", + "nomCommune": "ARZILLIERES NEUVILLE" }, { - "codePostal": "29630", - "codeCommune": "29251", - "libelleAcheminement": "ST JEAN DU DOIGT", - "nomCommune": "ST JEAN DU DOIGT" + "codePostal": "50160", + "codeCommune": "50444", + "libelleAcheminement": "ST AMAND VILLAGES", + "nomCommune": "ST AMAND VILLAGES" }, { - "codePostal": "40400", - "codeCommune": "40285", - "libelleAcheminement": "ST YAGUEN", - "nomCommune": "ST YAGUEN" + "codePostal": "35140", + "codeCommune": "35261", + "libelleAcheminement": "ST CHRISTOPHE DE VALAINS", + "nomCommune": "ST CHRISTOPHE DE VALAINS" }, { - "codePostal": "63440", - "codeCommune": "63286", - "libelleAcheminement": "POUZOL", - "nomCommune": "POUZOL" + "codePostal": "38740", + "codeCommune": "38073", + "libelleAcheminement": "CHANTEPERIER", + "nomCommune": "CHANTEPERIER" }, { - "codePostal": "13150", - "codeCommune": "13061", - "libelleAcheminement": "ST PIERRE DE MEZOARGUES", - "nomCommune": "ST PIERRE DE MEZOARGUES" + "codePostal": "51160", + "codeCommune": "51028", + "libelleAcheminement": "AVENAY VAL D OR", + "nomCommune": "AVENAY VAL D OR" }, { - "codePostal": "29600", - "codeCommune": "29254", - "libelleAcheminement": "ST MARTIN DES CHAMPS", - "nomCommune": "ST MARTIN DES CHAMPS" + "codePostal": "50450", + "codeCommune": "50463", + "libelleAcheminement": "ST DENIS LE GAST", + "nomCommune": "ST DENIS LE GAST" }, { - "codePostal": "40230", - "codeCommune": "40292", - "libelleAcheminement": "SAUBRIGUES", - "nomCommune": "SAUBRIGUES" + "codePostal": "35230", + "codeCommune": "35266", + "libelleAcheminement": "ST ERBLON", + "nomCommune": "ST ERBLON" }, { - "codePostal": "63230", - "codeCommune": "63290", - "libelleAcheminement": "PULVERIERES", - "nomCommune": "PULVERIERES" + "codePostal": "38670", + "codeCommune": "38087", + "libelleAcheminement": "CHASSE SUR RHONE", + "nomCommune": "CHASSE SUR RHONE" }, { - "codePostal": "13890", - "codeCommune": "13065", - "libelleAcheminement": "MOURIES", - "nomCommune": "MOURIES" + "codePostal": "51190", + "codeCommune": "51029", + "libelleAcheminement": "AVIZE", + "nomCommune": "AVIZE" }, { - "codePostal": "29290", - "codeCommune": "29260", - "libelleAcheminement": "ST RENAN", - "nomCommune": "ST RENAN" + "codePostal": "50210", + "codeCommune": "50464", + "libelleAcheminement": "ST DENIS LE VETU", + "nomCommune": "ST DENIS LE VETU" }, { - "codePostal": "40410", - "codeCommune": "40295", - "libelleAcheminement": "SAUGNACQ ET MURET", - "nomCommune": "SAUGNACQ ET MURET" + "codePostal": "35420", + "codeCommune": "35271", + "libelleAcheminement": "ST GEORGES DE REINTEMBAULT", + "nomCommune": "ST GEORGES DE REINTEMBAULT" }, { - "codePostal": "63160", - "codeCommune": "63297", - "libelleAcheminement": "REIGNAT", - "nomCommune": "REIGNAT" + "codePostal": "38980", + "codeCommune": "38093", + "libelleAcheminement": "CHATENAY", + "nomCommune": "CHATENAY" }, { - "codePostal": "13520", - "codeCommune": "13068", - "libelleAcheminement": "PARADOU", - "nomCommune": "PARADOU" + "codePostal": "51160", + "codeCommune": "51030", + "libelleAcheminement": "AY CHAMPAGNE", + "nomCommune": "AY CHAMPAGNE" }, { - "codePostal": "29520", - "codeCommune": "29267", - "libelleAcheminement": "ST THOIS", - "nomCommune": "ST THOIS" + "codePostal": "50620", + "codeCommune": "50468", + "libelleAcheminement": "ST FROMOND", + "nomCommune": "ST FROMOND" }, { - "codePostal": "40210", - "codeCommune": "40303", - "libelleAcheminement": "SOLFERINO", - "nomCommune": "SOLFERINO" + "codePostal": "35430", + "codeCommune": "35284", + "libelleAcheminement": "ST JOUAN DES GUERETS", + "nomCommune": "ST JOUAN DES GUERETS" }, { - "codePostal": "63330", - "codeCommune": "63304", - "libelleAcheminement": "ROCHE D AGOUX", - "nomCommune": "ROCHE D AGOUX" + "codePostal": "38160", + "codeCommune": "38099", + "libelleAcheminement": "CHEVRIERES", + "nomCommune": "CHEVRIERES" }, { - "codePostal": "13821", - "codeCommune": "13070", - "libelleAcheminement": "LA PENNE SUR HUVEAUNE", - "nomCommune": "LA PENNE SUR HUVEAUNE" + "codePostal": "51400", + "codeCommune": "51031", + "libelleAcheminement": "BACONNES", + "nomCommune": "BACONNES" }, { - "codePostal": "29800", - "codeCommune": "29270", - "libelleAcheminement": "ST URBAIN", - "nomCommune": "ST URBAIN" + "codePostal": "50760", + "codeCommune": "50469", + "libelleAcheminement": "STE GENEVIEVE", + "nomCommune": "STE GENEVIEVE" }, { - "codePostal": "40180", - "codeCommune": "40308", - "libelleAcheminement": "SORT EN CHALOSSE", - "nomCommune": "SORT EN CHALOSSE" + "codePostal": "35400", + "codeCommune": "35288", + "libelleAcheminement": "ST MALO", + "nomCommune": "ST MALO" }, { - "codePostal": "63420", - "codeCommune": "63313", - "libelleAcheminement": "ST ALYRE ES MONTAGNE", - "nomCommune": "ST ALYRE ES MONTAGNE" + "codePostal": "38640", + "codeCommune": "38111", + "libelleAcheminement": "CLAIX", + "nomCommune": "CLAIX" }, { - "codePostal": "13170", - "codeCommune": "13071", - "libelleAcheminement": "LES PENNES MIRABEAU", - "nomCommune": "LES PENNES MIRABEAU" + "codePostal": "51270", + "codeCommune": "51033", + "libelleAcheminement": "LE BAIZIL", + "nomCommune": "LE BAIZIL" }, { - "codePostal": "29390", - "codeCommune": "29274", - "libelleAcheminement": "SCAER", - "nomCommune": "SCAER" + "codePostal": "50270", + "codeCommune": "50471", + "libelleAcheminement": "ST GEORGES DE LA RIVIERE", + "nomCommune": "ST GEORGES DE LA RIVIERE" }, { - "codePostal": "40170", - "codeCommune": "40322", - "libelleAcheminement": "UZA", - "nomCommune": "UZA" + "codePostal": "35460", + "codeCommune": "35292", + "libelleAcheminement": "ST MARC LE BLANC", + "nomCommune": "ST MARC LE BLANC" }, { - "codePostal": "63450", - "codeCommune": "63315", - "libelleAcheminement": "ST AMANT TALLENDE", - "nomCommune": "ST AMANT TALLENDE" + "codePostal": "38470", + "codeCommune": "38117", + "libelleAcheminement": "COGNIN LES GORGES", + "nomCommune": "COGNIN LES GORGES" }, { - "codePostal": "13790", - "codeCommune": "13072", - "libelleAcheminement": "PEYNIER", - "nomCommune": "PEYNIER" + "codePostal": "51270", + "codeCommune": "51045", + "libelleAcheminement": "BEAUNAY", + "nomCommune": "BEAUNAY" }, { - "codePostal": "29250", - "codeCommune": "29276", - "libelleAcheminement": "SIBIRIL", - "nomCommune": "SIBIRIL" + "codePostal": "50600", + "codeCommune": "50484", + "libelleAcheminement": "ST HILAIRE DU HARCOUET", + "nomCommune": "ST HILAIRE DU HARCOUET" }, { - "codePostal": "40420", - "codeCommune": "40323", - "libelleAcheminement": "VERT", - "nomCommune": "VERT" + "codePostal": "35750", + "codeCommune": "35295", + "libelleAcheminement": "ST MAUGAN", + "nomCommune": "ST MAUGAN" }, { - "codePostal": "63310", - "codeCommune": "63317", - "libelleAcheminement": "ST ANDRE LE COQ", - "nomCommune": "ST ANDRE LE COQ" + "codePostal": "38190", + "codeCommune": "38120", + "libelleAcheminement": "LA COMBE DE LANCEY", + "nomCommune": "LA COMBE DE LANCEY" }, { - "codePostal": "13380", - "codeCommune": "13075", - "libelleAcheminement": "PLAN DE CUQUES", - "nomCommune": "PLAN DE CUQUES" + "codePostal": "51220", + "codeCommune": "51051", + "libelleAcheminement": "BERMERICOURT", + "nomCommune": "BERMERICOURT" }, { - "codePostal": "29217", - "codeCommune": "29282", - "libelleAcheminement": "TREBABU", - "nomCommune": "TREBABU" + "codePostal": "50240", + "codeCommune": "50487", + "libelleAcheminement": "ST JAMES", + "nomCommune": "ST JAMES" }, { - "codePostal": "41240", - "codeCommune": "41006", - "libelleAcheminement": "AUTAINVILLE", - "nomCommune": "AUTAINVILLE" + "codePostal": "35350", + "codeCommune": "35299", + "libelleAcheminement": "ST MELOIR DES ONDES", + "nomCommune": "ST MELOIR DES ONDES" }, { - "codePostal": "63380", - "codeCommune": "63320", - "libelleAcheminement": "ST AVIT", - "nomCommune": "ST AVIT" + "codePostal": "38630", + "codeCommune": "38124", + "libelleAcheminement": "CORBELIN", + "nomCommune": "CORBELIN" }, { - "codePostal": "13110", - "codeCommune": "13077", - "libelleAcheminement": "PORT DE BOUC", - "nomCommune": "PORT DE BOUC" + "codePostal": "51450", + "codeCommune": "51055", + "libelleAcheminement": "BETHENY", + "nomCommune": "BETHENY" }, { - "codePostal": "29800", - "codeCommune": "29286", - "libelleAcheminement": "TREFLEVENEZ", - "nomCommune": "TREFLEVENEZ" + "codePostal": "50320", + "codeCommune": "50493", + "libelleAcheminement": "ST JEAN DES CHAMPS", + "nomCommune": "ST JEAN DES CHAMPS" }, { - "codePostal": "41170", - "codeCommune": "41012", - "libelleAcheminement": "BAILLOU", - "nomCommune": "BAILLOU" + "codePostal": "35290", + "codeCommune": "35302", + "libelleAcheminement": "ST ONEN LA CHAPELLE", + "nomCommune": "ST ONEN LA CHAPELLE" }, { - "codePostal": "63800", - "codeCommune": "63325", - "libelleAcheminement": "ST BONNET LES ALLIER", - "nomCommune": "ST BONNET LES ALLIER" + "codePostal": "38970", + "codeCommune": "38128", + "libelleAcheminement": "CORPS", + "nomCommune": "CORPS" }, { - "codePostal": "13114", - "codeCommune": "13079", - "libelleAcheminement": "PUYLOUBIER", - "nomCommune": "PUYLOUBIER" + "codePostal": "51260", + "codeCommune": "51056", + "libelleAcheminement": "BETHON", + "nomCommune": "BETHON" }, { - "codePostal": "29560", - "codeCommune": "29289", - "libelleAcheminement": "TREGARVAN", - "nomCommune": "TREGARVAN" + "codePostal": "50750", + "codeCommune": "50512", + "libelleAcheminement": "ST MARTIN DE BONFOSSE", + "nomCommune": "ST MARTIN DE BONFOSSE" }, { - "codePostal": "41270", - "codeCommune": "41022", - "libelleAcheminement": "BOUFFRY", - "nomCommune": "BOUFFRY" + "codePostal": "35330", + "codeCommune": "35311", + "libelleAcheminement": "ST SEGLIN", + "nomCommune": "ST SEGLIN" }, { - "codePostal": "63210", - "codeCommune": "63326", - "libelleAcheminement": "ST BONNET PRES ORCIVAL", - "nomCommune": "ST BONNET PRES ORCIVAL" + "codePostal": "38510", + "codeCommune": "38139", + "libelleAcheminement": "CREYS MEPIEU", + "nomCommune": "CREYS MEPIEU" }, { - "codePostal": "13114", - "codeCommune": "13079", - "libelleAcheminement": "PUYLOUBIER", - "nomCommune": "PUYLOUBIER" + "codePostal": "51330", + "codeCommune": "51057", + "libelleAcheminement": "BETTANCOURT LA LONGUE", + "nomCommune": "BETTANCOURT LA LONGUE" }, { - "codePostal": "29870", - "codeCommune": "29290", - "libelleAcheminement": "TREGLONOU", - "nomCommune": "TREGLONOU" + "codePostal": "50150", + "codeCommune": "50514", + "libelleAcheminement": "CHAULIEU", + "nomCommune": "CHAULIEU" }, { - "codePostal": "41120", - "codeCommune": "41029", - "libelleAcheminement": "CANDE SUR BEUVRON", - "nomCommune": "CANDE SUR BEUVRON" + "codePostal": "35430", + "codeCommune": "35314", + "libelleAcheminement": "ST SULIAC", + "nomCommune": "ST SULIAC" }, { - "codePostal": "63390", - "codeCommune": "63329", - "libelleAcheminement": "STE CHRISTINE", - "nomCommune": "STE CHRISTINE" + "codePostal": "38510", + "codeCommune": "38139", + "libelleAcheminement": "CREYS MEPIEU", + "nomCommune": "CREYS MEPIEU" }, { - "codePostal": "13610", - "codeCommune": "13080", - "libelleAcheminement": "LE PUY STE REPARADE", - "nomCommune": "LE PUY STE REPARADE" + "codePostal": "51400", + "codeCommune": "51061", + "libelleAcheminement": "BILLY LE GRAND", + "nomCommune": "BILLY LE GRAND" }, { - "codePostal": "29970", - "codeCommune": "29291", - "libelleAcheminement": "TREGOUREZ", - "nomCommune": "TREGOUREZ" + "codePostal": "50150", + "codeCommune": "50514", + "libelleAcheminement": "CHAULIEU", + "nomCommune": "CHAULIEU" }, { - "codePostal": "41120", - "codeCommune": "41032", - "libelleAcheminement": "CHAILLES", - "nomCommune": "CHAILLES" + "codePostal": "35310", + "codeCommune": "35319", + "libelleAcheminement": "ST THURIAL", + "nomCommune": "ST THURIAL" }, { - "codePostal": "63310", - "codeCommune": "63332", - "libelleAcheminement": "ST CLEMENT DE REGNAT", - "nomCommune": "ST CLEMENT DE REGNAT" + "codePostal": "38300", + "codeCommune": "38149", + "libelleAcheminement": "DOMARIN", + "nomCommune": "DOMARIN" }, { - "codePostal": "13870", - "codeCommune": "13083", - "libelleAcheminement": "ROGNONAS", - "nomCommune": "ROGNONAS" + "codePostal": "51700", + "codeCommune": "51063", + "libelleAcheminement": "BINSON ET ORQUIGNY", + "nomCommune": "BINSON ET ORQUIGNY" }, { - "codePostal": "29450", - "codeCommune": "29294", - "libelleAcheminement": "LE TREHOU", - "nomCommune": "LE TREHOU" + "codePostal": "50690", + "codeCommune": "50519", + "libelleAcheminement": "ST MARTIN LE GREARD", + "nomCommune": "ST MARTIN LE GREARD" }, { - "codePostal": "41250", - "codeCommune": "41034", - "libelleAcheminement": "CHAMBORD", - "nomCommune": "CHAMBORD" + "codePostal": "35610", + "codeCommune": "35329", + "libelleAcheminement": "SOUGEAL", + "nomCommune": "SOUGEAL" }, { - "codePostal": "63380", - "codeCommune": "63339", - "libelleAcheminement": "ST ETIENNE DES CHAMPS", - "nomCommune": "ST ETIENNE DES CHAMPS" + "codePostal": "38420", + "codeCommune": "38150", + "libelleAcheminement": "DOMENE", + "nomCommune": "DOMENE" }, { - "codePostal": "13790", - "codeCommune": "13087", - "libelleAcheminement": "ROUSSET", - "nomCommune": "ROUSSET" + "codePostal": "51300", + "codeCommune": "51066", + "libelleAcheminement": "BLAISE SOUS ARZILLIERES", + "nomCommune": "BLAISE SOUS ARZILLIERES" }, { - "codePostal": "20167", - "codeCommune": "2A006", - "libelleAcheminement": "ALATA", - "nomCommune": "ALATA" + "codePostal": "50270", + "codeCommune": "50522", + "libelleAcheminement": "ST MAURICE EN COTENTIN", + "nomCommune": "ST MAURICE EN COTENTIN" }, { - "codePostal": "41270", - "codeCommune": "41041", - "libelleAcheminement": "LA CHAPELLE VICOMTESSE", - "nomCommune": "LA CHAPELLE VICOMTESSE" + "codePostal": "35160", + "codeCommune": "35331", + "libelleAcheminement": "TALENSAC", + "nomCommune": "TALENSAC" }, { - "codePostal": "63122", - "codeCommune": "63345", - "libelleAcheminement": "ST GENES CHAMPANELLE", - "nomCommune": "ST GENES CHAMPANELLE" + "codePostal": "38300", + "codeCommune": "38156", + "libelleAcheminement": "LES EPARRES", + "nomCommune": "LES EPARRES" }, { - "codePostal": "13100", - "codeCommune": "13090", - "libelleAcheminement": "ST ANTONIN SUR BAYON", - "nomCommune": "ST ANTONIN SUR BAYON" + "codePostal": "51340", + "codeCommune": "51068", + "libelleAcheminement": "BLESME", + "nomCommune": "BLESME" }, { - "codePostal": "20151", - "codeCommune": "2A060", - "libelleAcheminement": "CANNELLE", - "nomCommune": "CANNELLE" + "codePostal": "50480", + "codeCommune": "50523", + "libelleAcheminement": "STE MERE EGLISE", + "nomCommune": "STE MERE EGLISE" }, { - "codePostal": "41110", - "codeCommune": "41042", - "libelleAcheminement": "CHATEAUVIEUX", - "nomCommune": "CHATEAUVIEUX" + "codePostal": "35240", + "codeCommune": "35333", + "libelleAcheminement": "LE THEIL DE BRETAGNE", + "nomCommune": "LE THEIL DE BRETAGNE" }, { - "codePostal": "63580", - "codeCommune": "63348", - "libelleAcheminement": "ST GENES LA TOURETTE", - "nomCommune": "ST GENES LA TOURETTE" + "codePostal": "38320", + "codeCommune": "38158", + "libelleAcheminement": "EYBENS", + "nomCommune": "EYBENS" }, { - "codePostal": "13240", - "codeCommune": "13106", - "libelleAcheminement": "SEPTEMES LES VALLONS", - "nomCommune": "SEPTEMES LES VALLONS" + "codePostal": "51310", + "codeCommune": "51071", + "libelleAcheminement": "BOUCHY ST GENEST", + "nomCommune": "BOUCHY ST GENEST" }, { - "codePostal": "20111", - "codeCommune": "2A070", - "libelleAcheminement": "CASAGLIONE", - "nomCommune": "CASAGLIONE" + "codePostal": "50480", + "codeCommune": "50523", + "libelleAcheminement": "STE MERE EGLISE", + "nomCommune": "STE MERE EGLISE" }, { - "codePostal": "41320", - "codeCommune": "41044", - "libelleAcheminement": "CHATRES SUR CHER", - "nomCommune": "CHATRES SUR CHER" + "codePostal": "35190", + "codeCommune": "35337", + "libelleAcheminement": "TINTENIAC", + "nomCommune": "TINTENIAC" }, { - "codePostal": "63780", - "codeCommune": "63349", - "libelleAcheminement": "ST GEORGES DE MONS", - "nomCommune": "ST GEORGES DE MONS" + "codePostal": "38290", + "codeCommune": "38176", + "libelleAcheminement": "FRONTONAS", + "nomCommune": "FRONTONAS" }, { - "codePostal": "13530", - "codeCommune": "13110", - "libelleAcheminement": "TRETS", - "nomCommune": "TRETS" + "codePostal": "51170", + "codeCommune": "51073", + "libelleAcheminement": "BOULEUSE", + "nomCommune": "BOULEUSE" }, { - "codePostal": "20148", - "codeCommune": "2A099", - "libelleAcheminement": "COZZANO", - "nomCommune": "COZZANO" + "codePostal": "50670", + "codeCommune": "50525", + "libelleAcheminement": "ST MICHEL DE MONTJOIE", + "nomCommune": "ST MICHEL DE MONTJOIE" }, { - "codePostal": "41400", - "codeCommune": "41051", - "libelleAcheminement": "CHISSAY EN TOURAINE", - "nomCommune": "CHISSAY EN TOURAINE" + "codePostal": "35320", + "codeCommune": "35343", + "libelleAcheminement": "TRESBOEUF", + "nomCommune": "TRESBOEUF" }, { - "codePostal": "63880", - "codeCommune": "63355", - "libelleAcheminement": "ST GERVAIS SOUS MEYMONT", - "nomCommune": "ST GERVAIS SOUS MEYMONT" + "codePostal": "38260", + "codeCommune": "38180", + "libelleAcheminement": "GILLONNAY", + "nomCommune": "GILLONNAY" }, { - "codePostal": "13004", - "codeCommune": "13204", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 04" + "codePostal": "51110", + "codeCommune": "51074", + "libelleAcheminement": "BOULT SUR SUIPPE", + "nomCommune": "BOULT SUR SUIPPE" }, { - "codePostal": "20157", - "codeCommune": "2A119", - "libelleAcheminement": "FRASSETO", - "nomCommune": "FRASSETO" + "codePostal": "50250", + "codeCommune": "50528", + "libelleAcheminement": "ST NICOLAS DE PIERREPONT", + "nomCommune": "ST NICOLAS DE PIERREPONT" }, { - "codePostal": "41150", - "codeCommune": "41055", - "libelleAcheminement": "VALLOIRE SUR CISSE", - "nomCommune": "VALLOIRE SUR CISSE" + "codePostal": "35430", + "codeCommune": "35358", + "libelleAcheminement": "LA VILLE ES NONAIS", + "nomCommune": "LA VILLE ES NONAIS" }, { - "codePostal": "63340", - "codeCommune": "63357", - "libelleAcheminement": "ST HERENT", - "nomCommune": "ST HERENT" + "codePostal": "38540", + "codeCommune": "38184", + "libelleAcheminement": "GRENAY", + "nomCommune": "GRENAY" }, { - "codePostal": "13008", - "codeCommune": "13208", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 08" + "codePostal": "51110", + "codeCommune": "51075", + "libelleAcheminement": "BOURGOGNE FRESNE", + "nomCommune": "BOURGOGNE FRESNE" }, { - "codePostal": "20140", - "codeCommune": "2A160", - "libelleAcheminement": "MOCA CROCE", - "nomCommune": "MOCA CROCE" + "codePostal": "50190", + "codeCommune": "50533", + "libelleAcheminement": "ST PATRICE DE CLAIDS", + "nomCommune": "ST PATRICE DE CLAIDS" }, { - "codePostal": "41700", - "codeCommune": "41059", - "libelleAcheminement": "LE CONTROIS EN SOLOGNE", - "nomCommune": "LE CONTROIS EN SOLOGNE" + "codePostal": "35500", + "codeCommune": "35360", + "libelleAcheminement": "VITRE", + "nomCommune": "VITRE" }, { - "codePostal": "63570", - "codeCommune": "63367", - "libelleAcheminement": "ST JEAN ST GERVAIS", - "nomCommune": "ST JEAN ST GERVAIS" + "codePostal": "38100", + "codeCommune": "38185", + "libelleAcheminement": "GRENOBLE", + "nomCommune": "GRENOBLE" }, { - "codePostal": "13009", - "codeCommune": "13209", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 09" + "codePostal": "51800", + "codeCommune": "51082", + "libelleAcheminement": "BRAUX STE COHIERE", + "nomCommune": "BRAUX STE COHIERE" }, { - "codePostal": "20160", - "codeCommune": "2A174", - "libelleAcheminement": "MURZO", - "nomCommune": "MURZO" + "codePostal": "50870", + "codeCommune": "50535", + "libelleAcheminement": "LE PARC", + "nomCommune": "LE PARC" }, { - "codePostal": "41120", - "codeCommune": "41061", - "libelleAcheminement": "CORMERAY", - "nomCommune": "CORMERAY" + "codePostal": "36150", + "codeCommune": "36002", + "libelleAcheminement": "AIZE", + "nomCommune": "AIZE" }, { - "codePostal": "63820", - "codeCommune": "63370", - "libelleAcheminement": "ST JULIEN PUY LAVEZE", - "nomCommune": "ST JULIEN PUY LAVEZE" + "codePostal": "38650", + "codeCommune": "38186", + "libelleAcheminement": "GRESSE EN VERCORS", + "nomCommune": "GRESSE EN VERCORS" }, { - "codePostal": "13010", - "codeCommune": "13210", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 10" + "codePostal": "51120", + "codeCommune": "51092", + "libelleAcheminement": "BROYES", + "nomCommune": "BROYES" }, { - "codePostal": "20125", - "codeCommune": "2A196", - "libelleAcheminement": "ORTO", - "nomCommune": "ORTO" + "codePostal": "50530", + "codeCommune": "50540", + "libelleAcheminement": "ST PIERRE LANGERS", + "nomCommune": "ST PIERRE LANGERS" }, { - "codePostal": "41110", - "codeCommune": "41063", - "libelleAcheminement": "COUFFY", - "nomCommune": "COUFFY" + "codePostal": "36210", + "codeCommune": "36011", + "libelleAcheminement": "BAGNEUX", + "nomCommune": "BAGNEUX" }, { - "codePostal": "63230", - "codeCommune": "63381", - "libelleAcheminement": "ST OURS", - "nomCommune": "ST OURS" + "codePostal": "38320", + "codeCommune": "38188", + "libelleAcheminement": "HERBEYS", + "nomCommune": "HERBEYS" }, { - "codePostal": "13013", - "codeCommune": "13213", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 13" + "codePostal": "51300", + "codeCommune": "51094", + "libelleAcheminement": "BRUSSON", + "nomCommune": "BRUSSON" }, { - "codePostal": "20140", - "codeCommune": "2A211", - "libelleAcheminement": "PETRETO BICCHISANO", - "nomCommune": "PETRETO BICCHISANO" + "codePostal": "50670", + "codeCommune": "50542", + "libelleAcheminement": "ST POIS", + "nomCommune": "ST POIS" }, { - "codePostal": "41230", - "codeCommune": "41068", - "libelleAcheminement": "COURMEMIN", - "nomCommune": "COURMEMIN" + "codePostal": "36120", + "codeCommune": "36019", + "libelleAcheminement": "BOMMIERS", + "nomCommune": "BOMMIERS" }, { - "codePostal": "63230", - "codeCommune": "63385", - "libelleAcheminement": "ST PIERRE LE CHASTEL", - "nomCommune": "ST PIERRE LE CHASTEL" + "codePostal": "38160", + "codeCommune": "38195", + "libelleAcheminement": "IZERON", + "nomCommune": "IZERON" }, { - "codePostal": "13016", - "codeCommune": "13216", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 16" + "codePostal": "51320", + "codeCommune": "51099", + "libelleAcheminement": "BUSSY LETTREE", + "nomCommune": "BUSSY LETTREE" }, { - "codePostal": "20115", - "codeCommune": "2A212", - "libelleAcheminement": "PIANA", - "nomCommune": "PIANA" + "codePostal": "50750", + "codeCommune": "50546", + "libelleAcheminement": "BOURGVALLEES", + "nomCommune": "BOURGVALLEES" }, { - "codePostal": "41500", - "codeCommune": "41069", - "libelleAcheminement": "COUR SUR LOIRE", - "nomCommune": "COUR SUR LOIRE" + "codePostal": "36110", + "codeCommune": "36024", + "libelleAcheminement": "BRETAGNE", + "nomCommune": "BRETAGNE" }, { - "codePostal": "63640", - "codeCommune": "63388", - "libelleAcheminement": "ST PRIEST DES CHAMPS", - "nomCommune": "ST PRIEST DES CHAMPS" + "codePostal": "38280", + "codeCommune": "38197", + "libelleAcheminement": "JANNEYRIAS", + "nomCommune": "JANNEYRIAS" }, { - "codePostal": "14600", - "codeCommune": "14001", - "libelleAcheminement": "ABLON", - "nomCommune": "ABLON" + "codePostal": "51130", + "codeCommune": "51110", + "libelleAcheminement": "CHALTRAIT", + "nomCommune": "CHALTRAIT" }, { - "codePostal": "20145", - "codeCommune": "2A269", - "libelleAcheminement": "SARI SOLENZARA", - "nomCommune": "SARI SOLENZARA" + "codePostal": "50250", + "codeCommune": "50548", + "libelleAcheminement": "ST SAUVEUR DE PIERREPONT", + "nomCommune": "ST SAUVEUR DE PIERREPONT" }, { - "codePostal": "41800", - "codeCommune": "41070", - "libelleAcheminement": "VALLEE DE RONSARD", - "nomCommune": "VALLEE DE RONSARD" + "codePostal": "36140", + "codeCommune": "36028", + "libelleAcheminement": "LA BUXERETTE", + "nomCommune": "LA BUXERETTE" }, { - "codePostal": "63440", - "codeCommune": "63391", - "libelleAcheminement": "ST REMY DE BLOT", - "nomCommune": "ST REMY DE BLOT" + "codePostal": "38270", + "codeCommune": "38198", + "libelleAcheminement": "JARCIEU", + "nomCommune": "JARCIEU" }, { - "codePostal": "14370", - "codeCommune": "14005", - "libelleAcheminement": "VALAMBRAY", - "nomCommune": "VALAMBRAY" + "codePostal": "51500", + "codeCommune": "51115", + "libelleAcheminement": "CHAMPFLEURY", + "nomCommune": "CHAMPFLEURY" }, { - "codePostal": "20167", - "codeCommune": "2A271", - "libelleAcheminement": "SARROLA CARCOPINO", - "nomCommune": "SARROLA CARCOPINO" + "codePostal": "50490", + "codeCommune": "50550", + "libelleAcheminement": "ST SAUVEUR VILLAGES", + "nomCommune": "ST SAUVEUR VILLAGES" }, { - "codePostal": "41360", - "codeCommune": "41078", - "libelleAcheminement": "EPUISAY", - "nomCommune": "EPUISAY" + "codePostal": "36310", + "codeCommune": "36035", + "libelleAcheminement": "CHAILLAC", + "nomCommune": "CHAILLAC" }, { - "codePostal": "63660", - "codeCommune": "63394", - "libelleAcheminement": "ST ROMAIN", - "nomCommune": "ST ROMAIN" + "codePostal": "38460", + "codeCommune": "38210", + "libelleAcheminement": "LEYRIEU", + "nomCommune": "LEYRIEU" }, { - "codePostal": "14640", - "codeCommune": "14024", - "libelleAcheminement": "AUBERVILLE", - "nomCommune": "AUBERVILLE" + "codePostal": "51310", + "codeCommune": "51116", + "libelleAcheminement": "CHAMPGUYON", + "nomCommune": "CHAMPGUYON" }, { - "codePostal": "20127", - "codeCommune": "2A278", - "libelleAcheminement": "SERRA DI SCOPAMENE", - "nomCommune": "SERRA DI SCOPAMENE" + "codePostal": "50530", + "codeCommune": "50565", + "libelleAcheminement": "SARTILLY BAIE BOCAGE", + "nomCommune": "SARTILLY BAIE BOCAGE" }, { - "codePostal": "41800", - "codeCommune": "41087", - "libelleAcheminement": "FONTAINE LES COTEAUX", - "nomCommune": "FONTAINE LES COTEAUX" + "codePostal": "36100", + "codeCommune": "36037", + "libelleAcheminement": "LA CHAMPENOISE", + "nomCommune": "LA CHAMPENOISE" }, { - "codePostal": "63450", - "codeCommune": "63396", - "libelleAcheminement": "ST SATURNIN", - "nomCommune": "ST SATURNIN" + "codePostal": "38690", + "codeCommune": "38213", + "libelleAcheminement": "LONGECHENAL", + "nomCommune": "LONGECHENAL" }, { - "codePostal": "14770", - "codeCommune": "14027", - "libelleAcheminement": "LES MONTS D AUNAY", - "nomCommune": "LES MONTS D AUNAY" + "codePostal": "51260", + "codeCommune": "51124", + "libelleAcheminement": "CHANTEMERLE", + "nomCommune": "CHANTEMERLE" }, { - "codePostal": "20151", - "codeCommune": "2A295", - "libelleAcheminement": "SANT ANDREA D ORCINO", - "nomCommune": "SANT ANDREA D ORCINO" + "codePostal": "50530", + "codeCommune": "50565", + "libelleAcheminement": "SARTILLY BAIE BOCAGE", + "nomCommune": "SARTILLY BAIE BOCAGE" }, { - "codePostal": "41270", - "codeCommune": "41089", - "libelleAcheminement": "LA FONTENELLE", - "nomCommune": "LA FONTENELLE" + "codePostal": "36400", + "codeCommune": "36043", + "libelleAcheminement": "CHASSIGNOLLES", + "nomCommune": "CHASSIGNOLLES" }, { - "codePostal": "63790", - "codeCommune": "63401", - "libelleAcheminement": "ST VICTOR LA RIVIERE", - "nomCommune": "ST VICTOR LA RIVIERE" + "codePostal": "38660", + "codeCommune": "38214", + "libelleAcheminement": "LUMBIN", + "nomCommune": "LUMBIN" }, { - "codePostal": "14340", - "codeCommune": "14033", - "libelleAcheminement": "AUVILLARS", - "nomCommune": "AUVILLARS" + "codePostal": "51120", + "codeCommune": "51129", + "libelleAcheminement": "CHARLEVILLE", + "nomCommune": "CHARLEVILLE" }, { - "codePostal": "20137", - "codeCommune": "2A300", - "libelleAcheminement": "SAN GAVINO DI CARBINI", - "nomCommune": "SAN GAVINO DI CARBINI" + "codePostal": "50270", + "codeCommune": "50572", + "libelleAcheminement": "SENOVILLE", + "nomCommune": "SENOVILLE" }, { - "codePostal": "41330", - "codeCommune": "41091", - "libelleAcheminement": "FOSSE", - "nomCommune": "FOSSE" + "codePostal": "36170", + "codeCommune": "36047", + "libelleAcheminement": "LA CHATRE LANGLIN", + "nomCommune": "LA CHATRE LANGLIN" }, { - "codePostal": "63470", - "codeCommune": "63410", - "libelleAcheminement": "SAUVAGNAT", - "nomCommune": "SAUVAGNAT" + "codePostal": "38350", + "codeCommune": "38217", + "libelleAcheminement": "MARCIEU", + "nomCommune": "MARCIEU" }, { - "codePostal": "14490", - "codeCommune": "14035", - "libelleAcheminement": "BALLEROY SUR DROME", - "nomCommune": "BALLEROY SUR DROME" + "codePostal": "51330", + "codeCommune": "51133", + "libelleAcheminement": "LE CHATELIER", + "nomCommune": "LE CHATELIER" }, { - "codePostal": "20128", - "codeCommune": "2A331", - "libelleAcheminement": "URBALACONE", - "nomCommune": "URBALACONE" + "codePostal": "50340", + "codeCommune": "50576", + "libelleAcheminement": "SIOUVILLE HAGUE", + "nomCommune": "SIOUVILLE HAGUE" }, { - "codePostal": "41160", - "codeCommune": "41095", - "libelleAcheminement": "FRETEVAL", - "nomCommune": "FRETEVAL" + "codePostal": "36200", + "codeCommune": "36048", + "libelleAcheminement": "CHAVIN", + "nomCommune": "CHAVIN" }, { - "codePostal": "63490", - "codeCommune": "63415", - "libelleAcheminement": "SAUXILLANGES", - "nomCommune": "SAUXILLANGES" + "codePostal": "38112", + "codeCommune": "38225", + "libelleAcheminement": "AUTRANS MEAUDRE EN VERCORS", + "nomCommune": "AUTRANS MEAUDRE EN VERCORS" }, { - "codePostal": "14940", - "codeCommune": "14036", - "libelleAcheminement": "BANNEVILLE LA CAMPAGNE", - "nomCommune": "BANNEVILLE LA CAMPAGNE" + "codePostal": "51290", + "codeCommune": "51135", + "libelleAcheminement": "CHATILLON SUR BROUE", + "nomCommune": "CHATILLON SUR BROUE" }, { - "codePostal": "20167", - "codeCommune": "2A351", - "libelleAcheminement": "VILLANOVA", - "nomCommune": "VILLANOVA" + "codePostal": "50270", + "codeCommune": "50577", + "libelleAcheminement": "SORTOSVILLE EN BEAUMONT", + "nomCommune": "SORTOSVILLE EN BEAUMONT" }, { - "codePostal": "41310", - "codeCommune": "41098", - "libelleAcheminement": "GOMBERGEAN", - "nomCommune": "GOMBERGEAN" + "codePostal": "36310", + "codeCommune": "36067", + "libelleAcheminement": "DUNET", + "nomCommune": "DUNET" }, { - "codePostal": "63720", - "codeCommune": "63424", - "libelleAcheminement": "SURAT", - "nomCommune": "SURAT" + "codePostal": "38440", + "codeCommune": "38231", + "libelleAcheminement": "MEYRIEU LES ETANGS", + "nomCommune": "MEYRIEU LES ETANGS" }, { - "codePostal": "14400", - "codeCommune": "14040", - "libelleAcheminement": "BARBEVILLE", - "nomCommune": "BARBEVILLE" + "codePostal": "51700", + "codeCommune": "51136", + "libelleAcheminement": "CHATILLON SUR MARNE", + "nomCommune": "CHATILLON SUR MARNE" }, { - "codePostal": "20124", - "codeCommune": "2A362", - "libelleAcheminement": "ZONZA", - "nomCommune": "ZONZA" + "codePostal": "50260", + "codeCommune": "50579", + "libelleAcheminement": "SOTTEVAST", + "nomCommune": "SOTTEVAST" }, { - "codePostal": "41310", - "codeCommune": "41103", - "libelleAcheminement": "HUISSEAU EN BEAUCE", - "nomCommune": "HUISSEAU EN BEAUCE" + "codePostal": "36210", + "codeCommune": "36068", + "libelleAcheminement": "DUN LE POELIER", + "nomCommune": "DUN LE POELIER" }, { - "codePostal": "63380", - "codeCommune": "63436", - "libelleAcheminement": "TRALAIGUES", - "nomCommune": "TRALAIGUES" + "codePostal": "38440", + "codeCommune": "38232", + "libelleAcheminement": "MEYSSIEZ", + "nomCommune": "MEYSSIEZ" }, { - "codePostal": "14600", - "codeCommune": "14041", - "libelleAcheminement": "BARNEVILLE LA BERTRAN", - "nomCommune": "BARNEVILLE LA BERTRAN" + "codePostal": "51140", + "codeCommune": "51145", + "libelleAcheminement": "CHENAY", + "nomCommune": "CHENAY" }, { - "codePostal": "20270", - "codeCommune": "2B002", - "libelleAcheminement": "AGHIONE", - "nomCommune": "AGHIONE" + "codePostal": "50870", + "codeCommune": "50584", + "libelleAcheminement": "SUBLIGNY", + "nomCommune": "SUBLIGNY" }, { - "codePostal": "41370", - "codeCommune": "41123", - "libelleAcheminement": "MARCHENOIR", - "nomCommune": "MARCHENOIR" + "codePostal": "36120", + "codeCommune": "36071", + "libelleAcheminement": "ETRECHET", + "nomCommune": "ETRECHET" }, { - "codePostal": "63710", - "codeCommune": "63449", - "libelleAcheminement": "LE VERNET STE MARGUERITE", - "nomCommune": "LE VERNET STE MARGUERITE" + "codePostal": "38142", + "codeCommune": "38237", + "libelleAcheminement": "MIZOEN", + "nomCommune": "MIZOEN" }, { - "codePostal": "14620", - "codeCommune": "14043", - "libelleAcheminement": "BAROU EN AUGE", - "nomCommune": "BAROU EN AUGE" + "codePostal": "51300", + "codeCommune": "51156", + "libelleAcheminement": "CLOYES SUR MARNE", + "nomCommune": "CLOYES SUR MARNE" }, { - "codePostal": "20244", - "codeCommune": "2B003", - "libelleAcheminement": "AITI", - "nomCommune": "AITI" + "codePostal": "50410", + "codeCommune": "50637", + "libelleAcheminement": "VILLEBAUDON", + "nomCommune": "VILLEBAUDON" }, { - "codePostal": "41110", - "codeCommune": "41126", - "libelleAcheminement": "MAREUIL SUR CHER", - "nomCommune": "MAREUIL SUR CHER" + "codePostal": "36160", + "codeCommune": "36073", + "libelleAcheminement": "FEUSINES", + "nomCommune": "FEUSINES" }, { - "codePostal": "63320", - "codeCommune": "63452", - "libelleAcheminement": "VERRIERES", - "nomCommune": "VERRIERES" + "codePostal": "38440", + "codeCommune": "38238", + "libelleAcheminement": "MOIDIEU DETOURBE", + "nomCommune": "MOIDIEU DETOURBE" }, { - "codePostal": "14610", - "codeCommune": "14044", - "libelleAcheminement": "BASLY", - "nomCommune": "BASLY" + "codePostal": "51510", + "codeCommune": "51160", + "libelleAcheminement": "COMPERTRIX", + "nomCommune": "COMPERTRIX" }, { - "codePostal": "20224", - "codeCommune": "2B007", - "libelleAcheminement": "ALBERTACCE", - "nomCommune": "ALBERTACCE" + "codePostal": "50700", + "codeCommune": "50648", + "libelleAcheminement": "YVETOT BOCAGE", + "nomCommune": "YVETOT BOCAGE" }, { - "codePostal": "41100", - "codeCommune": "41131", - "libelleAcheminement": "MAZANGE", - "nomCommune": "MAZANGE" + "codePostal": "36700", + "codeCommune": "36074", + "libelleAcheminement": "FLERE LA RIVIERE", + "nomCommune": "FLERE LA RIVIERE" }, { - "codePostal": "63120", - "codeCommune": "63469", - "libelleAcheminement": "VOLLORE VILLE", - "nomCommune": "VOLLORE VILLE" + "codePostal": "38930", + "codeCommune": "38243", + "libelleAcheminement": "LE MONESTIER DU PERCY", + "nomCommune": "LE MONESTIER DU PERCY" }, { - "codePostal": "14380", - "codeCommune": "14054", - "libelleAcheminement": "BEAUMESNIL", - "nomCommune": "BEAUMESNIL" + "codePostal": "51150", + "codeCommune": "51161", + "libelleAcheminement": "CONDE SUR MARNE", + "nomCommune": "CONDE SUR MARNE" }, { - "codePostal": "20270", - "codeCommune": "2B009", - "libelleAcheminement": "ALERIA", - "nomCommune": "ALERIA" + "codePostal": "51240", + "codeCommune": "51001", + "libelleAcheminement": "ABLANCOURT", + "nomCommune": "ABLANCOURT" }, { - "codePostal": "41500", - "codeCommune": "41136", - "libelleAcheminement": "MER", - "nomCommune": "MER" + "codePostal": "36230", + "codeCommune": "36084", + "libelleAcheminement": "GOURNAY", + "nomCommune": "GOURNAY" }, { - "codePostal": "63700", - "codeCommune": "63471", - "libelleAcheminement": "YOUX", - "nomCommune": "YOUX" + "codePostal": "38110", + "codeCommune": "38246", + "libelleAcheminement": "MONTAGNIEU", + "nomCommune": "MONTAGNIEU" }, { - "codePostal": "14950", - "codeCommune": "14055", - "libelleAcheminement": "BEAUMONT EN AUGE", - "nomCommune": "BEAUMONT EN AUGE" + "codePostal": "51270", + "codeCommune": "51163", + "libelleAcheminement": "CONGY", + "nomCommune": "CONGY" }, { - "codePostal": "20220", - "codeCommune": "2B020", - "libelleAcheminement": "AREGNO", - "nomCommune": "AREGNO" + "codePostal": "51260", + "codeCommune": "51004", + "libelleAcheminement": "ALLEMANCHE LAUNAY ET SOYER", + "nomCommune": "ALLEMANCHE LAUNAY ET SOYER" }, { - "codePostal": "41120", - "codeCommune": "41145", - "libelleAcheminement": "MONTHOU SUR BIEVRE", - "nomCommune": "MONTHOU SUR BIEVRE" + "codePostal": "36150", + "codeCommune": "36085", + "libelleAcheminement": "GUILLY", + "nomCommune": "GUILLY" }, { - "codePostal": "63200", - "codeCommune": "63473", - "libelleAcheminement": "YSSAC LA TOURETTE", - "nomCommune": "YSSAC LA TOURETTE" + "codePostal": "38210", + "codeCommune": "38248", + "libelleAcheminement": "MONTAUD", + "nomCommune": "MONTAUD" }, { - "codePostal": "14370", - "codeCommune": "14057", - "libelleAcheminement": "BELLENGREVILLE", - "nomCommune": "BELLENGREVILLE" + "codePostal": "51320", + "codeCommune": "51167", + "libelleAcheminement": "COOLE", + "nomCommune": "COOLE" }, { - "codePostal": "20225", - "codeCommune": "2B025", - "libelleAcheminement": "AVAPESSA", - "nomCommune": "AVAPESSA" + "codePostal": "51150", + "codeCommune": "51018", + "libelleAcheminement": "ATHIS", + "nomCommune": "ATHIS" }, { - "codePostal": "41400", - "codeCommune": "41146", - "libelleAcheminement": "MONTHOU SUR CHER", - "nomCommune": "MONTHOU SUR CHER" + "codePostal": "36600", + "codeCommune": "36092", + "libelleAcheminement": "LANGE", + "nomCommune": "LANGE" }, { - "codePostal": "64120", - "codeCommune": "64010", - "libelleAcheminement": "AICIRITS CAMOU SUHAST", - "nomCommune": "AICIRITS CAMOU SUHAST" + "codePostal": "38690", + "codeCommune": "38257", + "libelleAcheminement": "MONTREVEL", + "nomCommune": "MONTREVEL" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "51350", + "codeCommune": "51172", + "libelleAcheminement": "CORMONTREUIL", + "nomCommune": "CORMONTREUIL" }, { - "codePostal": "20253", - "codeCommune": "2B029", - "libelleAcheminement": "BARBAGGIO", - "nomCommune": "BARBAGGIO" + "codePostal": "51240", + "codeCommune": "51022", + "libelleAcheminement": "AULNAY L AITRE", + "nomCommune": "AULNAY L AITRE" }, { - "codePostal": "41800", - "codeCommune": "41149", - "libelleAcheminement": "MONTOIRE SUR LE LOIR", - "nomCommune": "MONTOIRE SUR LE LOIR" + "codePostal": "36160", + "codeCommune": "36095", + "libelleAcheminement": "LIGNEROLLES", + "nomCommune": "LIGNEROLLES" }, { - "codePostal": "64250", - "codeCommune": "64014", - "libelleAcheminement": "AINHOA", - "nomCommune": "AINHOA" + "codePostal": "38210", + "codeCommune": "38263", + "libelleAcheminement": "MORETTE", + "nomCommune": "MORETTE" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "51210", + "codeCommune": "51175", + "libelleAcheminement": "CORROBERT", + "nomCommune": "CORROBERT" }, { - "codePostal": "20228", - "codeCommune": "2B030", - "libelleAcheminement": "BARRETTALI", - "nomCommune": "BARRETTALI" + "codePostal": "51700", + "codeCommune": "51038", + "libelleAcheminement": "BASLIEUX SOUS CHATILLON", + "nomCommune": "BASLIEUX SOUS CHATILLON" }, { - "codePostal": "41400", - "codeCommune": "41151", - "libelleAcheminement": "MONTRICHARD VAL DE CHER", - "nomCommune": "MONTRICHARD VAL DE CHER" + "codePostal": "36220", + "codeCommune": "36096", + "libelleAcheminement": "LINGE", + "nomCommune": "LINGE" }, { - "codePostal": "64470", - "codeCommune": "64015", - "libelleAcheminement": "ALCAY ALCABEHETY SUNHARETTE", - "nomCommune": "ALCAY ALCABEHETY SUNHARETTE" + "codePostal": "38350", + "codeCommune": "38273", + "libelleAcheminement": "NANTES EN RATIER", + "nomCommune": "NANTES EN RATIER" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "51240", + "codeCommune": "51178", + "libelleAcheminement": "COUPETZ", + "nomCommune": "COUPETZ" }, { - "codePostal": "20200", - "codeCommune": "2B033", - "libelleAcheminement": "BASTIA", - "nomCommune": "BASTIA" + "codePostal": "51300", + "codeCommune": "51039", + "libelleAcheminement": "BASSU", + "nomCommune": "BASSU" }, { - "codePostal": "41400", - "codeCommune": "41151", - "libelleAcheminement": "MONTRICHARD VAL DE CHER", - "nomCommune": "MONTRICHARD VAL DE CHER" + "codePostal": "36220", + "codeCommune": "36105", + "libelleAcheminement": "LUREUIL", + "nomCommune": "LUREUIL" }, { - "codePostal": "64470", - "codeCommune": "64017", - "libelleAcheminement": "ALOS SIBAS ABENSE", - "nomCommune": "ALOS SIBAS ABENSE" + "codePostal": "38470", + "codeCommune": "38275", + "libelleAcheminement": "SERRE NERPOL", + "nomCommune": "SERRE NERPOL" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "51700", + "codeCommune": "51192", + "libelleAcheminement": "COURTHIEZY", + "nomCommune": "COURTHIEZY" }, { - "codePostal": "20200", - "codeCommune": "2B033", - "libelleAcheminement": "BASTIA", - "nomCommune": "BASTIA" + "codePostal": "51300", + "codeCommune": "51040", + "libelleAcheminement": "BASSUET", + "nomCommune": "BASSUET" }, { - "codePostal": "41500", - "codeCommune": "41155", - "libelleAcheminement": "MUIDES SUR LOIRE", - "nomCommune": "MUIDES SUR LOIRE" + "codePostal": "36800", + "codeCommune": "36106", + "libelleAcheminement": "LUZERET", + "nomCommune": "LUZERET" }, { - "codePostal": "64600", - "codeCommune": "64024", - "libelleAcheminement": "ANGLET", - "nomCommune": "ANGLET" + "codePostal": "38144", + "codeCommune": "38280", + "libelleAcheminement": "NOTRE DAME DE VAULX", + "nomCommune": "NOTRE DAME DE VAULX" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "51460", + "codeCommune": "51193", + "libelleAcheminement": "COURTISOLS", + "nomCommune": "COURTISOLS" }, { - "codePostal": "20252", - "codeCommune": "2B036", - "libelleAcheminement": "BIGORNO", - "nomCommune": "BIGORNO" + "codePostal": "51360", + "codeCommune": "51044", + "libelleAcheminement": "BEAUMONT SUR VESLE", + "nomCommune": "BEAUMONT SUR VESLE" }, { - "codePostal": "41250", - "codeCommune": "41160", - "libelleAcheminement": "NEUVY", - "nomCommune": "NEUVY" + "codePostal": "36230", + "codeCommune": "36108", + "libelleAcheminement": "LYS ST GEORGES", + "nomCommune": "LYS ST GEORGES" }, { - "codePostal": "64350", - "codeCommune": "64028", - "libelleAcheminement": "ANOYE", - "nomCommune": "ANOYE" + "codePostal": "38520", + "codeCommune": "38286", + "libelleAcheminement": "OULLES", + "nomCommune": "OULLES" }, { - "codePostal": "14112", - "codeCommune": "14068", - "libelleAcheminement": "BIEVILLE BEUVILLE", - "nomCommune": "BIEVILLE BEUVILLE" + "codePostal": "51530", + "codeCommune": "51196", + "libelleAcheminement": "CRAMANT", + "nomCommune": "CRAMANT" }, { - "codePostal": "20222", - "codeCommune": "2B043", - "libelleAcheminement": "BRANDO", - "nomCommune": "BRANDO" + "codePostal": "51130", + "codeCommune": "51049", + "libelleAcheminement": "BERGERES LES VERTUS", + "nomCommune": "BERGERES LES VERTUS" }, { - "codePostal": "41600", - "codeCommune": "41161", - "libelleAcheminement": "NOUAN LE FUZELIER", - "nomCommune": "NOUAN LE FUZELIER" + "codePostal": "36150", + "codeCommune": "36116", + "libelleAcheminement": "MENETREOLS SOUS VATAN", + "nomCommune": "MENETREOLS SOUS VATAN" }, { - "codePostal": "64270", - "codeCommune": "64031", - "libelleAcheminement": "ARANCOU", - "nomCommune": "ARANCOU" + "codePostal": "38260", + "codeCommune": "38291", + "libelleAcheminement": "PAJAY", + "nomCommune": "PAJAY" }, { - "codePostal": "14100", - "codeCommune": "14069", - "libelleAcheminement": "BEUVILLERS", - "nomCommune": "BEUVILLERS" + "codePostal": "51240", + "codeCommune": "51208", + "libelleAcheminement": "DAMPIERRE SUR MOIVRE", + "nomCommune": "DAMPIERRE SUR MOIVRE" }, { - "codePostal": "20222", - "codeCommune": "2B043", - "libelleAcheminement": "BRANDO", - "nomCommune": "BRANDO" + "codePostal": "51340", + "codeCommune": "51060", + "libelleAcheminement": "BIGNICOURT SUR SAULX", + "nomCommune": "BIGNICOURT SUR SAULX" }, { - "codePostal": "41140", - "codeCommune": "41164", - "libelleAcheminement": "NOYERS SUR CHER", - "nomCommune": "NOYERS SUR CHER" + "codePostal": "36200", + "codeCommune": "36117", + "libelleAcheminement": "LE MENOUX", + "nomCommune": "LE MENOUX" }, { - "codePostal": "64190", - "codeCommune": "64032", - "libelleAcheminement": "ARAUJUZON", - "nomCommune": "ARAUJUZON" + "codePostal": "38730", + "codeCommune": "38292", + "libelleAcheminement": "VILLAGES DU LAC DE PALADRU", + "nomCommune": "VILLAGES DU LAC DE PALADRU" }, { - "codePostal": "14550", - "codeCommune": "14076", - "libelleAcheminement": "BLAINVILLE SUR ORNE", - "nomCommune": "BLAINVILLE SUR ORNE" + "codePostal": "51700", + "codeCommune": "51217", + "libelleAcheminement": "DORMANS", + "nomCommune": "DORMANS" }, { - "codePostal": "20224", - "codeCommune": "2B047", - "libelleAcheminement": "CALACUCCIA", - "nomCommune": "CALACUCCIA" + "codePostal": "51110", + "codeCommune": "51075", + "libelleAcheminement": "BOURGOGNE FRESNE", + "nomCommune": "BOURGOGNE FRESNE" }, { - "codePostal": "41150", - "codeCommune": "41167", - "libelleAcheminement": "VEUZAIN SUR LOIRE", - "nomCommune": "VEUZAIN SUR LOIRE" + "codePostal": "36150", + "codeCommune": "36122", + "libelleAcheminement": "MEUNET SUR VATAN", + "nomCommune": "MEUNET SUR VATAN" }, { - "codePostal": "64230", - "codeCommune": "64037", - "libelleAcheminement": "ARBUS", - "nomCommune": "ARBUS" + "codePostal": "38390", + "codeCommune": "38295", + "libelleAcheminement": "PARMILIEU", + "nomCommune": "PARMILIEU" }, { - "codePostal": "14690", - "codeCommune": "14080", - "libelleAcheminement": "LE BO", - "nomCommune": "LE BO" + "codePostal": "51290", + "codeCommune": "51219", + "libelleAcheminement": "DROSNAY", + "nomCommune": "DROSNAY" }, { - "codePostal": "20260", - "codeCommune": "2B049", - "libelleAcheminement": "CALENZANA", - "nomCommune": "CALENZANA" + "codePostal": "51290", + "codeCommune": "51080", + "libelleAcheminement": "BRANDONVILLERS", + "nomCommune": "BRANDONVILLERS" }, { - "codePostal": "41290", - "codeCommune": "41171", - "libelleAcheminement": "OUCQUES LA NOUVELLE", - "nomCommune": "OUCQUES LA NOUVELLE" + "codePostal": "36340", + "codeCommune": "36133", + "libelleAcheminement": "MOUHERS", + "nomCommune": "MOUHERS" }, { - "codePostal": "64400", - "codeCommune": "64039", - "libelleAcheminement": "AREN", - "nomCommune": "AREN" + "codePostal": "38490", + "codeCommune": "38296", + "libelleAcheminement": "LE PASSAGE", + "nomCommune": "LE PASSAGE" }, { - "codePostal": "14340", - "codeCommune": "14083", - "libelleAcheminement": "BONNEBOSQ", - "nomCommune": "BONNEBOSQ" + "codePostal": "51290", + "codeCommune": "51223", + "libelleAcheminement": "ECOLLEMONT", + "nomCommune": "ECOLLEMONT" }, { - "codePostal": "20260", - "codeCommune": "2B050", - "libelleAcheminement": "CALVI", - "nomCommune": "CALVI" + "codePostal": "51800", + "codeCommune": "51083", + "libelleAcheminement": "BRAUX ST REMY", + "nomCommune": "BRAUX ST REMY" }, { - "codePostal": "41160", - "codeCommune": "41172", - "libelleAcheminement": "OUZOUER LE DOYEN", - "nomCommune": "OUZOUER LE DOYEN" + "codePostal": "36400", + "codeCommune": "36138", + "libelleAcheminement": "NERET", + "nomCommune": "NERET" }, { - "codePostal": "64450", - "codeCommune": "64043", - "libelleAcheminement": "ARGELOS", - "nomCommune": "ARGELOS" + "codePostal": "38930", + "codeCommune": "38301", + "libelleAcheminement": "LE PERCY", + "nomCommune": "PERCY" }, { - "codePostal": "14420", - "codeCommune": "14088", - "libelleAcheminement": "BONS TASSILLY", - "nomCommune": "BONS TASSILLY" + "codePostal": "51230", + "codeCommune": "51226", + "libelleAcheminement": "ECURY LE REPOS", + "nomCommune": "ECURY LE REPOS" }, { - "codePostal": "20270", - "codeCommune": "2B053", - "libelleAcheminement": "CAMPI", - "nomCommune": "CAMPI" + "codePostal": "51140", + "codeCommune": "51086", + "libelleAcheminement": "BREUIL SUR VESLE", + "nomCommune": "BREUIL SUR VESLE" }, { - "codePostal": "41160", - "codeCommune": "41173", - "libelleAcheminement": "BEAUCE LA ROMAINE", - "nomCommune": "BEAUCE LA ROMAINE" + "codePostal": "36290", + "codeCommune": "36145", + "libelleAcheminement": "OBTERRE", + "nomCommune": "OBTERRE" }, { - "codePostal": "64350", - "codeCommune": "64056", - "libelleAcheminement": "ARROSES", - "nomCommune": "ARROSES" + "codePostal": "38270", + "codeCommune": "38307", + "libelleAcheminement": "PISIEU", + "nomCommune": "PISIEU" }, { - "codePostal": "14430", - "codeCommune": "14093", - "libelleAcheminement": "BRANVILLE", - "nomCommune": "BRANVILLE" + "codePostal": "51800", + "codeCommune": "51228", + "libelleAcheminement": "ELISE DAUCOURT", + "nomCommune": "ELISE DAUCOURT" }, { - "codePostal": "20215", - "codeCommune": "2B072", - "libelleAcheminement": "CASALTA", - "nomCommune": "CASALTA" + "codePostal": "51240", + "codeCommune": "51087", + "libelleAcheminement": "BREUVERY SUR COOLE", + "nomCommune": "BREUVERY SUR COOLE" }, { - "codePostal": "41300", - "codeCommune": "41176", - "libelleAcheminement": "PIERREFITTE SUR SAULDRE", - "nomCommune": "PIERREFITTE SUR SAULDRE" + "codePostal": "36260", + "codeCommune": "36152", + "libelleAcheminement": "PAUDY", + "nomCommune": "PAUDY" }, { - "codePostal": "64170", - "codeCommune": "64061", - "libelleAcheminement": "ARTIX", - "nomCommune": "ARTIX" + "codePostal": "38260", + "codeCommune": "38311", + "libelleAcheminement": "POMMIER DE BEAUREPAIRE", + "nomCommune": "POMMIER DE BEAUREPAIRE" }, { - "codePostal": "14260", - "codeCommune": "14096", - "libelleAcheminement": "BREMOY", - "nomCommune": "BREMOY" + "codePostal": "51330", + "codeCommune": "51229", + "libelleAcheminement": "EPENSE", + "nomCommune": "EPENSE" }, { - "codePostal": "20270", - "codeCommune": "2B075", - "libelleAcheminement": "CASEVECCHIE", - "nomCommune": "CASEVECCHIE" + "codePostal": "51220", + "codeCommune": "51088", + "libelleAcheminement": "BRIMONT", + "nomCommune": "BRIMONT" }, { - "codePostal": "41270", - "codeCommune": "41179", - "libelleAcheminement": "LE POISLAY", - "nomCommune": "LE POISLAY" + "codePostal": "36800", + "codeCommune": "36161", + "libelleAcheminement": "LE PONT CHRETIEN CHABENET", + "nomCommune": "LE PONT CHRETIEN CHABENET" }, { - "codePostal": "64660", - "codeCommune": "64064", - "libelleAcheminement": "ASASP ARROS", - "nomCommune": "ASASP ARROS" + "codePostal": "38470", + "codeCommune": "38330", + "libelleAcheminement": "QUINCIEU", + "nomCommune": "QUINCIEU" }, { - "codePostal": "14250", - "codeCommune": "14098", - "libelleAcheminement": "THUE ET MUE", - "nomCommune": "THUE ET MUE" + "codePostal": "51270", + "codeCommune": "51247", + "libelleAcheminement": "FEREBRIANGES", + "nomCommune": "FEREBRIANGES" }, { - "codePostal": "20212", - "codeCommune": "2B078", - "libelleAcheminement": "CASTELLARE DI MERCURIO", - "nomCommune": "CASTELLARE DI MERCURIO" + "codePostal": "51170", + "codeCommune": "51089", + "libelleAcheminement": "BROUILLET", + "nomCommune": "BROUILLET" }, { - "codePostal": "41400", - "codeCommune": "41180", - "libelleAcheminement": "PONTLEVOY", - "nomCommune": "PONTLEVOY" + "codePostal": "36210", + "codeCommune": "36162", + "libelleAcheminement": "POULAINES", + "nomCommune": "POULAINES" }, { - "codePostal": "64510", - "codeCommune": "64067", - "libelleAcheminement": "ASSAT", - "nomCommune": "ASSAT" + "codePostal": "38121", + "codeCommune": "38336", + "libelleAcheminement": "REVENTIN VAUGRIS", + "nomCommune": "REVENTIN VAUGRIS" }, { - "codePostal": "14160", - "codeCommune": "14110", - "libelleAcheminement": "BRUCOURT", - "nomCommune": "BRUCOURT" + "codePostal": "51700", + "codeCommune": "51249", + "libelleAcheminement": "FESTIGNY", + "nomCommune": "FESTIGNY" }, { - "codePostal": "20235", - "codeCommune": "2B079", - "libelleAcheminement": "CASTELLO DI ROSTINO", - "nomCommune": "CASTELLO DI ROSTINO" + "codePostal": "51600", + "codeCommune": "51097", + "libelleAcheminement": "BUSSY LE CHATEAU", + "nomCommune": "BUSSY LE CHATEAU" }, { - "codePostal": "41190", - "codeCommune": "41182", - "libelleAcheminement": "PRAY", - "nomCommune": "PRAY" + "codePostal": "36160", + "codeCommune": "36163", + "libelleAcheminement": "POULIGNY NOTRE DAME", + "nomCommune": "POULIGNY NOTRE DAME" }, { - "codePostal": "64190", - "codeCommune": "64075", - "libelleAcheminement": "AUDAUX", - "nomCommune": "AUDAUX" + "codePostal": "38210", + "codeCommune": "38338", + "libelleAcheminement": "LA RIVIERE", + "nomCommune": "LA RIVIERE" }, { - "codePostal": "14250", - "codeCommune": "14111", - "libelleAcheminement": "BUCEELS", - "nomCommune": "BUCEELS" + "codePostal": "51170", + "codeCommune": "51250", + "libelleAcheminement": "FISMES", + "nomCommune": "FISMES" }, { - "codePostal": "20236", - "codeCommune": "2B083", - "libelleAcheminement": "CASTIRLA", - "nomCommune": "CASTIRLA" + "codePostal": "51110", + "codeCommune": "51101", + "libelleAcheminement": "CAUREL", + "nomCommune": "CAUREL" }, { - "codePostal": "41230", - "codeCommune": "41195", - "libelleAcheminement": "ROUGEOU", - "nomCommune": "ROUGEOU" + "codePostal": "36370", + "codeCommune": "36168", + "libelleAcheminement": "PRISSAC", + "nomCommune": "PRISSAC" }, { - "codePostal": "64450", - "codeCommune": "64077", - "libelleAcheminement": "AUGA", - "nomCommune": "AUGA" + "codePostal": "38480", + "codeCommune": "38343", + "libelleAcheminement": "ROMAGNIEU", + "nomCommune": "ROMAGNIEU" }, { - "codePostal": "14190", - "codeCommune": "14116", - "libelleAcheminement": "LE BU SUR ROUVRES", - "nomCommune": "LE BU SUR ROUVRES" + "codePostal": "51190", + "codeCommune": "51251", + "libelleAcheminement": "FLAVIGNY", + "nomCommune": "FLAVIGNY" }, { - "codePostal": "20224", - "codeCommune": "2B095", - "libelleAcheminement": "CORSCIA", - "nomCommune": "CORSCIA" + "codePostal": "51260", + "codeCommune": "51103", + "libelleAcheminement": "LA CELLE SOUS CHANTEMERLE", + "nomCommune": "LA CELLE SOUS CHANTEMERLE" }, { - "codePostal": "41330", - "codeCommune": "41203", - "libelleAcheminement": "ST BOHAIRE", - "nomCommune": "ST BOHAIRE" + "codePostal": "36800", + "codeCommune": "36172", + "libelleAcheminement": "RIVARENNES", + "nomCommune": "RIVARENNES" }, { - "codePostal": "64330", - "codeCommune": "64084", - "libelleAcheminement": "AYDIE", - "nomCommune": "AYDIE" + "codePostal": "38440", + "codeCommune": "38346", + "libelleAcheminement": "ROYAS", + "nomCommune": "ROYAS" }, { - "codePostal": "14630", - "codeCommune": "14119", - "libelleAcheminement": "CAGNY", - "nomCommune": "CAGNY" + "codePostal": "51800", + "codeCommune": "51255", + "libelleAcheminement": "FONTAINE EN DORMOIS", + "nomCommune": "FONTAINE EN DORMOIS" }, { - "codePostal": "20212", - "codeCommune": "2B116", - "libelleAcheminement": "FOCICCHIA", - "nomCommune": "FOCICCHIA" + "codePostal": "51150", + "codeCommune": "51117", + "libelleAcheminement": "CHAMPIGNEUL CHAMPAGNE", + "nomCommune": "CHAMPIGNEUL CHAMPAGNE" }, { - "codePostal": "41350", - "codeCommune": "41204", - "libelleAcheminement": "ST CLAUDE DE DIRAY", - "nomCommune": "ST CLAUDE DE DIRAY" + "codePostal": "36300", + "codeCommune": "36173", + "libelleAcheminement": "ROSNAY", + "nomCommune": "ROSNAY" }, { - "codePostal": "64490", - "codeCommune": "64085", - "libelleAcheminement": "AYDIUS", - "nomCommune": "AYDIUS" + "codePostal": "38300", + "codeCommune": "38348", + "libelleAcheminement": "RUY MONTCEAU", + "nomCommune": "RUY MONTCEAU" }, { - "codePostal": "14490", - "codeCommune": "14121", - "libelleAcheminement": "CAHAGNOLLES", - "nomCommune": "CAHAGNOLLES" + "codePostal": "51160", + "codeCommune": "51266", + "libelleAcheminement": "GERMAINE", + "nomCommune": "GERMAINE" }, { - "codePostal": "20245", - "codeCommune": "2B121", - "libelleAcheminement": "GALERIA", - "nomCommune": "GALERIA" + "codePostal": "51480", + "codeCommune": "51120", + "libelleAcheminement": "CHAMPLAT ET BOUJACOURT", + "nomCommune": "CHAMPLAT ET BOUJACOURT" }, { - "codePostal": "41190", - "codeCommune": "41208", - "libelleAcheminement": "ST ETIENNE DES GUERETS", - "nomCommune": "ST ETIENNE DES GUERETS" + "codePostal": "36120", + "codeCommune": "36180", + "libelleAcheminement": "ST AOUT", + "nomCommune": "ST AOUT" }, { - "codePostal": "64240", - "codeCommune": "64086", - "libelleAcheminement": "AYHERRE", - "nomCommune": "AYHERRE" + "codePostal": "38300", + "codeCommune": "38348", + "libelleAcheminement": "RUY MONTCEAU", + "nomCommune": "RUY MONTCEAU" }, { - "codePostal": "14230", - "codeCommune": "14124", - "libelleAcheminement": "LA CAMBE", - "nomCommune": "LA CAMBE" + "codePostal": "51400", + "codeCommune": "51278", + "libelleAcheminement": "LES GRANDES LOGES", + "nomCommune": "LES GRANDES LOGES" }, { - "codePostal": "20240", - "codeCommune": "2B123", - "libelleAcheminement": "GHISONACCIA", - "nomCommune": "GHISONACCIA" + "codePostal": "51330", + "codeCommune": "51130", + "libelleAcheminement": "CHARMONT", + "nomCommune": "CHARMONT" }, { - "codePostal": "41320", - "codeCommune": "41222", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "36170", + "codeCommune": "36182", + "libelleAcheminement": "ST BENOIT DU SAULT", + "nomCommune": "ST BENOIT DU SAULT" }, { - "codePostal": "64300", - "codeCommune": "64088", - "libelleAcheminement": "BALANSUN", - "nomCommune": "BALANSUN" + "codePostal": "38190", + "codeCommune": "38350", + "libelleAcheminement": "STE AGNES", + "nomCommune": "STE AGNES" }, { - "codePostal": "14490", - "codeCommune": "14130", - "libelleAcheminement": "CAMPIGNY", - "nomCommune": "CAMPIGNY" + "codePostal": "51390", + "codeCommune": "51282", + "libelleAcheminement": "GUEUX", + "nomCommune": "GUEUX" }, { - "codePostal": "20240", - "codeCommune": "2B123", - "libelleAcheminement": "GHISONACCIA", - "nomCommune": "GHISONACCIA" + "codePostal": "51800", + "codeCommune": "51139", + "libelleAcheminement": "CHAUDEFONTAINE", + "nomCommune": "CHAUDEFONTAINE" }, { - "codePostal": "41100", - "codeCommune": "41226", - "libelleAcheminement": "ST OUEN", - "nomCommune": "ST OUEN" + "codePostal": "36160", + "codeCommune": "36208", + "libelleAcheminement": "STE SEVERE SUR INDRE", + "nomCommune": "STE SEVERE SUR INDRE" }, { - "codePostal": "64390", - "codeCommune": "64096", - "libelleAcheminement": "BARRAUTE CAMU", - "nomCommune": "BARRAUTE CAMU" + "codePostal": "38680", + "codeCommune": "38356", + "libelleAcheminement": "ST ANDRE EN ROYANS", + "nomCommune": "ST ANDRE EN ROYANS" }, { - "codePostal": "14460", - "codeCommune": "14167", - "libelleAcheminement": "COLOMBELLES", - "nomCommune": "COLOMBELLES" + "codePostal": "51300", + "codeCommune": "51284", + "libelleAcheminement": "HAUSSIGNEMONT", + "nomCommune": "HAUSSIGNEMONT" }, { - "codePostal": "20225", - "codeCommune": "2B138", - "libelleAcheminement": "LAVATOGGIO", - "nomCommune": "LAVATOGGIO" + "codePostal": "51130", + "codeCommune": "51154", + "libelleAcheminement": "CLAMANGES", + "nomCommune": "CLAMANGES" }, { - "codePostal": "41210", - "codeCommune": "41231", - "libelleAcheminement": "ST VIATRE", - "nomCommune": "ST VIATRE" + "codePostal": "36100", + "codeCommune": "36209", + "libelleAcheminement": "ST VALENTIN", + "nomCommune": "ST VALENTIN" }, { - "codePostal": "64350", - "codeCommune": "64098", - "libelleAcheminement": "BASSILLON VAUZE", - "nomCommune": "BASSILLON VAUZE" + "codePostal": "38160", + "codeCommune": "38359", + "libelleAcheminement": "ST ANTOINE L ABBAYE", + "nomCommune": "ST ANTOINE L ABBAYE" }, { - "codePostal": "14110", - "codeCommune": "14174", - "libelleAcheminement": "CONDE EN NORMANDIE", - "nomCommune": "CONDE EN NORMANDIE" + "codePostal": "51320", + "codeCommune": "51285", + "libelleAcheminement": "HAUSSIMONT", + "nomCommune": "HAUSSIMONT" }, { - "codePostal": "20252", - "codeCommune": "2B140", - "libelleAcheminement": "LENTO", - "nomCommune": "LENTO" + "codePostal": "51130", + "codeCommune": "51158", + "libelleAcheminement": "VAL DES MARAIS", + "nomCommune": "VAL DES MARAIS" }, { - "codePostal": "41300", - "codeCommune": "41232", - "libelleAcheminement": "SALBRIS", - "nomCommune": "SALBRIS" + "codePostal": "36100", + "codeCommune": "36215", + "libelleAcheminement": "SEGRY", + "nomCommune": "SEGRY" }, { - "codePostal": "64260", - "codeCommune": "64116", - "libelleAcheminement": "BESCAT", - "nomCommune": "BESCAT" + "codePostal": "38350", + "codeCommune": "38361", + "libelleAcheminement": "ST AREY", + "nomCommune": "ST AREY" }, { - "codePostal": "14110", - "codeCommune": "14174", - "libelleAcheminement": "CONDE EN NORMANDIE", - "nomCommune": "CONDE EN NORMANDIE" + "codePostal": "51290", + "codeCommune": "51286", + "libelleAcheminement": "HAUTEVILLE", + "nomCommune": "HAUTEVILLE" }, { - "codePostal": "20230", - "codeCommune": "2B143", - "libelleAcheminement": "LINGUIZZETTA", - "nomCommune": "LINGUIZZETTA" + "codePostal": "51130", + "codeCommune": "51158", + "libelleAcheminement": "VAL DES MARAIS", + "nomCommune": "VAL DES MARAIS" }, { - "codePostal": "41170", - "codeCommune": "41235", - "libelleAcheminement": "SARGE SUR BRAYE", - "nomCommune": "SARGE SUR BRAYE" + "codePostal": "36180", + "codeCommune": "36216", + "libelleAcheminement": "SELLES SUR NAHON", + "nomCommune": "SELLES SUR NAHON" }, { - "codePostal": "64200", - "codeCommune": "64122", - "libelleAcheminement": "BIARRITZ", - "nomCommune": "BIARRITZ" + "codePostal": "38710", + "codeCommune": "38366", + "libelleAcheminement": "ST BAUDILLE ET PIPET", + "nomCommune": "ST BAUDILLE ET PIPET" }, { - "codePostal": "14770", - "codeCommune": "14174", - "libelleAcheminement": "CONDE EN NORMANDIE", - "nomCommune": "CONDE EN NORMANDIE" + "codePostal": "51290", + "codeCommune": "51300", + "libelleAcheminement": "ISLE SUR MARNE", + "nomCommune": "ISLE SUR MARNE" }, { - "codePostal": "20290", - "codeCommune": "2B166", - "libelleAcheminement": "MONTE", - "nomCommune": "MONTE" + "codePostal": "51260", + "codeCommune": "51162", + "libelleAcheminement": "CONFLANS SUR SEINE", + "nomCommune": "CONFLANS SUR SEINE" }, { - "codePostal": "41700", - "codeCommune": "41237", - "libelleAcheminement": "SASSAY", - "nomCommune": "SASSAY" + "codePostal": "36100", + "codeCommune": "36222", + "libelleAcheminement": "THIZAY", + "nomCommune": "THIZAY" }, { - "codePostal": "64210", - "codeCommune": "64125", - "libelleAcheminement": "BIDART", - "nomCommune": "BIDART" + "codePostal": "38140", + "codeCommune": "38368", + "libelleAcheminement": "ST BLAISE DU BUIS", + "nomCommune": "ST BLAISE DU BUIS" }, { - "codePostal": "14100", - "codeCommune": "14179", - "libelleAcheminement": "CORDEBUGLE", - "nomCommune": "CORDEBUGLE" + "codePostal": "51150", + "codeCommune": "51303", + "libelleAcheminement": "JALONS", + "nomCommune": "JALONS" }, { - "codePostal": "20217", - "codeCommune": "2B178", - "libelleAcheminement": "NONZA", - "nomCommune": "NONZA" + "codePostal": "51230", + "codeCommune": "51164", + "libelleAcheminement": "CONNANTRAY VAUREFROY", + "nomCommune": "CONNANTRAY VAUREFROY" }, { - "codePostal": "41360", - "codeCommune": "41238", - "libelleAcheminement": "SAVIGNY SUR BRAYE", - "nomCommune": "SAVIGNY SUR BRAYE" + "codePostal": "36700", + "codeCommune": "36225", + "libelleAcheminement": "LE TRANGER", + "nomCommune": "LE TRANGER" }, { - "codePostal": "64400", - "codeCommune": "64126", - "libelleAcheminement": "BIDOS", - "nomCommune": "BIDOS" + "codePostal": "38960", + "codeCommune": "38383", + "libelleAcheminement": "ST ETIENNE DE CROSSEY", + "nomCommune": "ST ETIENNE DE CROSSEY" }, { - "codePostal": "14123", - "codeCommune": "14181", - "libelleAcheminement": "CORMELLES LE ROYAL", - "nomCommune": "CORMELLES LE ROYAL" + "codePostal": "51150", + "codeCommune": "51312", + "libelleAcheminement": "JUVIGNY", + "nomCommune": "JUVIGNY" }, { - "codePostal": "20226", - "codeCommune": "2B180", - "libelleAcheminement": "NOVELLA", - "nomCommune": "NOVELLA" + "codePostal": "51210", + "codeCommune": "51170", + "libelleAcheminement": "CORFELIX", + "nomCommune": "CORFELIX" }, { - "codePostal": "41500", - "codeCommune": "41245", - "libelleAcheminement": "SERIS", - "nomCommune": "SERIS" + "codePostal": "36160", + "codeCommune": "36227", + "libelleAcheminement": "URCIERS", + "nomCommune": "URCIERS" }, { - "codePostal": "64140", - "codeCommune": "64129", - "libelleAcheminement": "BILLERE", - "nomCommune": "BILLERE" + "codePostal": "38790", + "codeCommune": "38389", + "libelleAcheminement": "ST GEORGES D ESPERANCHE", + "nomCommune": "ST GEORGES D ESPERANCHE" }, { - "codePostal": "14400", - "codeCommune": "14184", - "libelleAcheminement": "COTTUN", - "nomCommune": "COTTUN" + "codePostal": "51290", + "codeCommune": "51316", + "libelleAcheminement": "LARZICOURT", + "nomCommune": "LARZICOURT" }, { - "codePostal": "20217", - "codeCommune": "2B183", - "libelleAcheminement": "OGLIASTRO", - "nomCommune": "OGLIASTRO" + "codePostal": "51480", + "codeCommune": "51173", + "libelleAcheminement": "CORMOYEUX", + "nomCommune": "CORMOYEUX" }, { - "codePostal": "41120", - "codeCommune": "41246", - "libelleAcheminement": "SEUR", - "nomCommune": "SEUR" + "codePostal": "36150", + "codeCommune": "36230", + "libelleAcheminement": "VATAN", + "nomCommune": "VATAN" }, { - "codePostal": "64700", - "codeCommune": "64130", - "libelleAcheminement": "BIRIATOU", - "nomCommune": "BIRIATOU" + "codePostal": "38430", + "codeCommune": "38400", + "libelleAcheminement": "ST JEAN DE MOIRANS", + "nomCommune": "ST JEAN DE MOIRANS" }, { - "codePostal": "14290", - "codeCommune": "14194", - "libelleAcheminement": "COURTONNE LES DEUX EGLISES", - "nomCommune": "COURTONNE LES DEUX EGLISES" + "codePostal": "51600", + "codeCommune": "51317", + "libelleAcheminement": "LAVAL SUR TOURBE", + "nomCommune": "LAVAL SUR TOURBE" }, { - "codePostal": "20236", - "codeCommune": "2B193", - "libelleAcheminement": "OMESSA", - "nomCommune": "OMESSA" + "codePostal": "51240", + "codeCommune": "51179", + "libelleAcheminement": "COUPEVILLE", + "nomCommune": "COUPEVILLE" }, { - "codePostal": "41230", - "codeCommune": "41247", - "libelleAcheminement": "SOINGS EN SOLOGNE", - "nomCommune": "SOINGS EN SOLOGNE" + "codePostal": "36600", + "codeCommune": "36233", + "libelleAcheminement": "LA VERNELLE", + "nomCommune": "LA VERNELLE" }, { - "codePostal": "64800", - "codeCommune": "64137", - "libelleAcheminement": "BORDERES", - "nomCommune": "BORDERES" + "codePostal": "38134", + "codeCommune": "38405", + "libelleAcheminement": "ST JOSEPH DE RIVIERE", + "nomCommune": "ST JOSEPH DE RIVIERE" }, { - "codePostal": "14440", - "codeCommune": "14197", - "libelleAcheminement": "CRESSERONS", - "nomCommune": "CRESSERONS" + "codePostal": "51170", + "codeCommune": "51321", + "libelleAcheminement": "LHERY", + "nomCommune": "LHERY" }, { - "codePostal": "20270", - "codeCommune": "2B201", - "libelleAcheminement": "PANCHERACCIA", - "nomCommune": "PANCHERACCIA" + "codePostal": "51310", + "codeCommune": "51185", + "libelleAcheminement": "COURGIVAUX", + "nomCommune": "COURGIVAUX" }, { - "codePostal": "41170", - "codeCommune": "41248", - "libelleAcheminement": "COUETRON AU PERCHE", - "nomCommune": "COUETRON AU PERCHE" + "codePostal": "36600", + "codeCommune": "36235", + "libelleAcheminement": "VEUIL", + "nomCommune": "VEUIL" }, { - "codePostal": "64330", - "codeCommune": "64141", - "libelleAcheminement": "BOUEILH BOUEILHO LASQUE", - "nomCommune": "BOUEILH BOUEILHO LASQUE" + "codePostal": "38134", + "codeCommune": "38407", + "libelleAcheminement": "LA SURE EN CHARTREUSE", + "nomCommune": "LA SURE EN CHARTREUSE" }, { - "codePostal": "14400", - "codeCommune": "14209", - "libelleAcheminement": "CROUAY", - "nomCommune": "CROUAY" + "codePostal": "51400", + "codeCommune": "51326", + "libelleAcheminement": "LIVRY LOUVERCY", + "nomCommune": "LIVRY LOUVERCY" }, { - "codePostal": "20213", - "codeCommune": "2B207", - "libelleAcheminement": "PENTA DI CASINCA", - "nomCommune": "PENTA DI CASINCA" + "codePostal": "51270", + "codeCommune": "51186", + "libelleAcheminement": "COURJEONNET", + "nomCommune": "COURJEONNET" }, { - "codePostal": "41300", - "codeCommune": "41256", - "libelleAcheminement": "THEILLAY", - "nomCommune": "THEILLAY" + "codePostal": "36500", + "codeCommune": "36243", + "libelleAcheminement": "VILLEGOUIN", + "nomCommune": "VILLEGOUIN" }, { - "codePostal": "64120", - "codeCommune": "64150", - "libelleAcheminement": "BUNUS", - "nomCommune": "BUNUS" + "codePostal": "38650", + "codeCommune": "38429", + "libelleAcheminement": "ST MICHEL LES PORTES", + "nomCommune": "ST MICHEL LES PORTES" }, { - "codePostal": "14840", - "codeCommune": "14215", - "libelleAcheminement": "CUVERVILLE", - "nomCommune": "CUVERVILLE" + "codePostal": "51220", + "codeCommune": "51329", + "libelleAcheminement": "LOIVRE", + "nomCommune": "LOIVRE" }, { - "codePostal": "20272", - "codeCommune": "2B213", - "libelleAcheminement": "PIANELLO", - "nomCommune": "PIANELLO" + "codePostal": "51170", + "codeCommune": "51187", + "libelleAcheminement": "COURLANDON", + "nomCommune": "COURLANDON" }, { - "codePostal": "41220", - "codeCommune": "41260", - "libelleAcheminement": "THOURY", - "nomCommune": "THOURY" + "codePostal": "37340", + "codeCommune": "37002", + "libelleAcheminement": "AMBILLOU", + "nomCommune": "AMBILLOU" }, { - "codePostal": "64160", - "codeCommune": "64152", - "libelleAcheminement": "BUROS", - "nomCommune": "BUROS" + "codePostal": "38490", + "codeCommune": "38434", + "libelleAcheminement": "ST ONDRAS", + "nomCommune": "ST ONDRAS" }, { - "codePostal": "14220", - "codeCommune": "14226", - "libelleAcheminement": "DONNAY", - "nomCommune": "DONNAY" + "codePostal": "51800", + "codeCommune": "51368", + "libelleAcheminement": "MINAUCOURT LE MESNIL LES HURLUS", + "nomCommune": "MINAUCOURT LE MESNIL LES HURLUS" }, { - "codePostal": "20229", - "codeCommune": "2B222", - "libelleAcheminement": "PIE D OREZZA", - "nomCommune": "PIE D OREZZA" + "codePostal": "51170", + "codeCommune": "51198", + "libelleAcheminement": "CRUGNY", + "nomCommune": "CRUGNY" }, { - "codePostal": "41230", - "codeCommune": "41271", - "libelleAcheminement": "VERNOU EN SOLOGNE", - "nomCommune": "VERNOU EN SOLOGNE" + "codePostal": "37120", + "codeCommune": "37007", + "libelleAcheminement": "ASSAY", + "nomCommune": "ASSAY" }, { - "codePostal": "64250", - "codeCommune": "64160", - "libelleAcheminement": "CAMBO LES BAINS", - "nomCommune": "CAMBO LES BAINS" + "codePostal": "38760", + "codeCommune": "38436", + "libelleAcheminement": "ST PAUL DE VARCES", + "nomCommune": "ST PAUL DE VARCES" }, { - "codePostal": "14600", - "codeCommune": "14243", - "libelleAcheminement": "EQUEMAUVILLE", - "nomCommune": "EQUEMAUVILLE" + "codePostal": "51470", + "codeCommune": "51372", + "libelleAcheminement": "MONCETZ LONGEVAS", + "nomCommune": "MONCETZ LONGEVAS" }, { - "codePostal": "20218", - "codeCommune": "2B223", - "libelleAcheminement": "PIETRALBA", - "nomCommune": "PIETRALBA" + "codePostal": "51530", + "codeCommune": "51200", + "libelleAcheminement": "CUIS", + "nomCommune": "CUIS" }, { - "codePostal": "41160", - "codeCommune": "41275", - "libelleAcheminement": "LA VILLE AUX CLERCS", - "nomCommune": "LA VILLE AUX CLERCS" + "codePostal": "37190", + "codeCommune": "37014", + "libelleAcheminement": "AZAY LE RIDEAU", + "nomCommune": "AZAY LE RIDEAU" }, { - "codePostal": "64270", - "codeCommune": "64168", - "libelleAcheminement": "CARRESSE CASSABER", - "nomCommune": "CARRESSE CASSABER" + "codePostal": "38870", + "codeCommune": "38457", + "libelleAcheminement": "ST SIMEON DE BRESSIEUX", + "nomCommune": "ST SIMEON DE BRESSIEUX" }, { - "codePostal": "14220", - "codeCommune": "14248", - "libelleAcheminement": "ESPINS", - "nomCommune": "ESPINS" + "codePostal": "51170", + "codeCommune": "51382", + "libelleAcheminement": "MONT SUR COURVILLE", + "nomCommune": "MONT SUR COURVILLE" }, { - "codePostal": "20250", - "codeCommune": "2B238", - "libelleAcheminement": "POGGIO DI VENACO", - "nomCommune": "POGGIO DI VENACO" + "codePostal": "51480", + "codeCommune": "51204", + "libelleAcheminement": "DAMERY", + "nomCommune": "DAMERY" }, { - "codePostal": "41270", - "codeCommune": "41277", - "libelleAcheminement": "VILLEBOUT", - "nomCommune": "VILLEBOUT" + "codePostal": "37350", + "codeCommune": "37019", + "libelleAcheminement": "BARROU", + "nomCommune": "BARROU" }, { - "codePostal": "64460", - "codeCommune": "64174", - "libelleAcheminement": "CASTERA LOUBIX", - "nomCommune": "CASTERA LOUBIX" + "codePostal": "38119", + "codeCommune": "38462", + "libelleAcheminement": "ST THEOFFREY", + "nomCommune": "ST THEOFFREY" }, { - "codePostal": "14210", - "codeCommune": "14257", - "libelleAcheminement": "EVRECY", - "nomCommune": "EVRECY" + "codePostal": "51210", + "codeCommune": "51386", + "libelleAcheminement": "MORSAINS", + "nomCommune": "MORSAINS" }, { - "codePostal": "20237", - "codeCommune": "2B241", - "libelleAcheminement": "POGGIO MARINACCIO", - "nomCommune": "POGGIO MARINACCIO" + "codePostal": "51400", + "codeCommune": "51205", + "libelleAcheminement": "DAMPIERRE AU TEMPLE", + "nomCommune": "DAMPIERRE AU TEMPLE" }, { - "codePostal": "41310", - "codeCommune": "41278", - "libelleAcheminement": "VILLECHAUVE", - "nomCommune": "VILLECHAUVE" + "codePostal": "37600", + "codeCommune": "37020", + "libelleAcheminement": "BEAULIEU LES LOCHES", + "nomCommune": "BEAULIEU LES LOCHES" }, { - "codePostal": "64260", - "codeCommune": "64175", - "libelleAcheminement": "CASTET", - "nomCommune": "CASTET" + "codePostal": "38160", + "codeCommune": "38463", + "libelleAcheminement": "ST VERAND", + "nomCommune": "ST VERAND" }, { - "codePostal": "14320", - "codeCommune": "14266", - "libelleAcheminement": "FEUGUEROLLES BULLY", - "nomCommune": "FEUGUEROLLES BULLY" + "codePostal": "51160", + "codeCommune": "51392", + "libelleAcheminement": "MUTIGNY", + "nomCommune": "MUTIGNY" }, { - "codePostal": "20246", - "codeCommune": "2B257", - "libelleAcheminement": "RAPALE", - "nomCommune": "RAPALE" + "codePostal": "51300", + "codeCommune": "51215", + "libelleAcheminement": "DOMPREMY", + "nomCommune": "DOMPREMY" }, { - "codePostal": "41200", - "codeCommune": "41280", - "libelleAcheminement": "VILLEFRANCHE SUR CHER", - "nomCommune": "VILLEFRANCHE SUR CHER" + "codePostal": "37420", + "codeCommune": "37022", + "libelleAcheminement": "BEAUMONT EN VERON", + "nomCommune": "BEAUMONT EN VERON" }, { - "codePostal": "64170", - "codeCommune": "64184", - "libelleAcheminement": "CESCAU", - "nomCommune": "CESCAU" + "codePostal": "38510", + "codeCommune": "38465", + "libelleAcheminement": "ST VICTOR DE MORESTEL", + "nomCommune": "ST VICTOR DE MORESTEL" }, { - "codePostal": "14290", - "codeCommune": "14273", - "libelleAcheminement": "LA FOLLETIERE ABENON", - "nomCommune": "LA FOLLETIERE ABENON" + "codePostal": "51480", + "codeCommune": "51393", + "libelleAcheminement": "NANTEUIL LA FORET", + "nomCommune": "NANTEUIL LA FORET" }, { - "codePostal": "20250", - "codeCommune": "2B260", - "libelleAcheminement": "RIVENTOSA", - "nomCommune": "RIVENTOSA" + "codePostal": "51340", + "codeCommune": "51218", + "libelleAcheminement": "VAL DE VIERE", + "nomCommune": "VAL DE VIERE" }, { - "codePostal": "41000", - "codeCommune": "41288", - "libelleAcheminement": "VILLERBON", - "nomCommune": "VILLERBON" + "codePostal": "37460", + "codeCommune": "37023", + "libelleAcheminement": "BEAUMONT VILLAGE", + "nomCommune": "BEAUMONT VILLAGE" }, { - "codePostal": "64800", - "codeCommune": "64191", - "libelleAcheminement": "COARRAZE", - "nomCommune": "COARRAZE" + "codePostal": "38970", + "codeCommune": "38469", + "libelleAcheminement": "LA SALETTE FALLAVAUX", + "nomCommune": "LA SALETTE FALLAVAUX" }, { - "codePostal": "14710", - "codeCommune": "14281", - "libelleAcheminement": "FORMIGNY LA BATAILLE", - "nomCommune": "FORMIGNY LA BATAILLE" + "codePostal": "51480", + "codeCommune": "51398", + "libelleAcheminement": "LA NEUVILLE AUX LARRIS", + "nomCommune": "LA NEUVILLE AUX LARRIS" }, { - "codePostal": "20247", - "codeCommune": "2B261", - "libelleAcheminement": "ROGLIANO", - "nomCommune": "ROGLIANO" + "codePostal": "51300", + "codeCommune": "51224", + "libelleAcheminement": "ECRIENNES", + "nomCommune": "ECRIENNES" }, { - "codePostal": "41100", - "codeCommune": "41290", - "libelleAcheminement": "VILLEROMAIN", - "nomCommune": "VILLEROMAIN" + "codePostal": "37120", + "codeCommune": "37034", + "libelleAcheminement": "BRASLOU", + "nomCommune": "BRASLOU" }, { - "codePostal": "64350", - "codeCommune": "64193", - "libelleAcheminement": "CORBERE ABERES", - "nomCommune": "CORBERE ABERES" + "codePostal": "38700", + "codeCommune": "38471", + "libelleAcheminement": "LE SAPPEY EN CHARTREUSE", + "nomCommune": "LE SAPPEY EN CHARTREUSE" }, { - "codePostal": "14710", - "codeCommune": "14281", - "libelleAcheminement": "FORMIGNY LA BATAILLE", - "nomCommune": "FORMIGNY LA BATAILLE" + "codePostal": "51800", + "codeCommune": "51399", + "libelleAcheminement": "LA NEUVILLE AU PONT", + "nomCommune": "LA NEUVILLE AU PONT" }, { - "codePostal": "20244", - "codeCommune": "2B264", - "libelleAcheminement": "RUSIO", - "nomCommune": "RUSIO" + "codePostal": "51240", + "codeCommune": "51227", + "libelleAcheminement": "ECURY SUR COOLE", + "nomCommune": "ECURY SUR COOLE" }, { - "codePostal": "42460", - "codeCommune": "42007", - "libelleAcheminement": "ARCINGES", - "nomCommune": "ARCINGES" + "codePostal": "37330", + "codeCommune": "37037", + "libelleAcheminement": "BRECHES", + "nomCommune": "BRECHES" }, { - "codePostal": "64410", - "codeCommune": "64195", - "libelleAcheminement": "COUBLUCQ", - "nomCommune": "COUBLUCQ" + "codePostal": "38440", + "codeCommune": "38476", + "libelleAcheminement": "SAVAS MEPIN", + "nomCommune": "SAVAS MEPIN" }, { - "codePostal": "14710", - "codeCommune": "14281", - "libelleAcheminement": "FORMIGNY LA BATAILLE", - "nomCommune": "FORMIGNY LA BATAILLE" + "codePostal": "51330", + "codeCommune": "51404", + "libelleAcheminement": "NOIRLIEU", + "nomCommune": "NOIRLIEU" }, { - "codePostal": "20215", - "codeCommune": "2B280", - "libelleAcheminement": "SILVARECCIO", - "nomCommune": "SILVARECCIO" + "codePostal": "51490", + "codeCommune": "51232", + "libelleAcheminement": "EPOYE", + "nomCommune": "EPOYE" }, { - "codePostal": "42670", - "codeCommune": "42014", - "libelleAcheminement": "BELLEROCHE", - "nomCommune": "BELLEROCHE" + "codePostal": "37130", + "codeCommune": "37038", + "libelleAcheminement": "BREHEMONT", + "nomCommune": "BREHEMONT" }, { - "codePostal": "64190", - "codeCommune": "64201", - "libelleAcheminement": "DOGNEN", - "nomCommune": "DOGNEN" + "codePostal": "38260", + "codeCommune": "38479", + "libelleAcheminement": "PORTE DES BONNEVAUX", + "nomCommune": "PORTE DES BONNEVAUX" }, { - "codePostal": "14700", - "codeCommune": "14284", - "libelleAcheminement": "FOURNEAUX LE VAL", - "nomCommune": "FOURNEAUX LE VAL" + "codePostal": "51240", + "codeCommune": "51409", + "libelleAcheminement": "NUISEMENT SUR COOLE", + "nomCommune": "NUISEMENT SUR COOLE" }, { - "codePostal": "20213", - "codeCommune": "2B286", - "libelleAcheminement": "SORBO OCAGNANO", - "nomCommune": "SORBO OCAGNANO" + "codePostal": "51310", + "codeCommune": "51236", + "libelleAcheminement": "LES ESSARTS LE VICOMTE", + "nomCommune": "LES ESSARTS LE VICOMTE" }, { - "codePostal": "42130", - "codeCommune": "42019", - "libelleAcheminement": "BOEN SUR LIGNON", - "nomCommune": "BOEN SUR LIGNON" + "codePostal": "37530", + "codeCommune": "37060", + "libelleAcheminement": "CHARGE", + "nomCommune": "CHARGE" }, { - "codePostal": "64390", - "codeCommune": "64215", - "libelleAcheminement": "ESPIUTE", - "nomCommune": "ESPIUTE" + "codePostal": "38200", + "codeCommune": "38484", + "libelleAcheminement": "SERPAIZE", + "nomCommune": "SERPAIZE" }, { - "codePostal": "14700", - "codeCommune": "14289", - "libelleAcheminement": "FRESNE LA MERE", - "nomCommune": "FRESNE LA MERE" + "codePostal": "51370", + "codeCommune": "51418", + "libelleAcheminement": "ORMES", + "nomCommune": "ORMES" }, { - "codePostal": "20246", - "codeCommune": "2B301", - "libelleAcheminement": "SAN GAVINO DI TENDA", - "nomCommune": "SAN GAVINO DI TENDA" + "codePostal": "51130", + "codeCommune": "51239", + "libelleAcheminement": "ETRECHY", + "nomCommune": "ETRECHY" }, { - "codePostal": "42720", - "codeCommune": "42026", - "libelleAcheminement": "BRIENNON", - "nomCommune": "BRIENNON" + "codePostal": "37310", + "codeCommune": "37075", + "libelleAcheminement": "CIGOGNE", + "nomCommune": "CIGOGNE" }, { - "codePostal": "64410", - "codeCommune": "64234", - "libelleAcheminement": "GAROS", - "nomCommune": "GAROS" + "codePostal": "38180", + "codeCommune": "38486", + "libelleAcheminement": "SEYSSINS", + "nomCommune": "SEYSSINS" }, { - "codePostal": "14680", - "codeCommune": "14290", - "libelleAcheminement": "FRESNEY LE PUCEUX", - "nomCommune": "FRESNEY LE PUCEUX" + "codePostal": "51390", + "codeCommune": "51422", + "libelleAcheminement": "PARGNY LES REIMS", + "nomCommune": "PARGNY LES REIMS" }, { - "codePostal": "20200", - "codeCommune": "2B305", - "libelleAcheminement": "SAN MARTINO DI LOTA", - "nomCommune": "SAN MARTINO DI LOTA" + "codePostal": "51510", + "codeCommune": "51242", + "libelleAcheminement": "FAGNIERES", + "nomCommune": "FAGNIERES" }, { - "codePostal": "42510", - "codeCommune": "42029", - "libelleAcheminement": "BUSSIERES", - "nomCommune": "BUSSIERES" + "codePostal": "37500", + "codeCommune": "37076", + "libelleAcheminement": "CINAIS", + "nomCommune": "CINAIS" }, { - "codePostal": "64120", - "codeCommune": "64235", - "libelleAcheminement": "GARRIS", - "nomCommune": "GARRIS" + "codePostal": "38650", + "codeCommune": "38492", + "libelleAcheminement": "SINARD", + "nomCommune": "SINARD" }, { - "codePostal": "14600", - "codeCommune": "14299", - "libelleAcheminement": "GENNEVILLE", - "nomCommune": "GENNEVILLE" + "codePostal": "51800", + "codeCommune": "51424", + "libelleAcheminement": "PASSAVANT EN ARGONNE", + "nomCommune": "PASSAVANT EN ARGONNE" }, { - "codePostal": "20230", - "codeCommune": "2B307", - "libelleAcheminement": "SANTA LUCIA DI MORIANI", - "nomCommune": "SANTA LUCIA DI MORIANI" + "codePostal": "51230", + "codeCommune": "51243", + "libelleAcheminement": "FAUX FRESNAY", + "nomCommune": "FAUX FRESNAY" }, { - "codePostal": "42240", - "codeCommune": "42031", - "libelleAcheminement": "CALOIRE", - "nomCommune": "CALOIRE" + "codePostal": "37130", + "codeCommune": "37077", + "libelleAcheminement": "CINQ MARS LA PILE", + "nomCommune": "CINQ MARS LA PILE" }, { - "codePostal": "64400", - "codeCommune": "64241", - "libelleAcheminement": "GERONCE", - "nomCommune": "GERONCE" + "codePostal": "38300", + "codeCommune": "38498", + "libelleAcheminement": "SUCCIEU", + "nomCommune": "SUCCIEU" }, { - "codePostal": "14600", - "codeCommune": "14304", - "libelleAcheminement": "GONNEVILLE SUR HONFLEUR", - "nomCommune": "GONNEVILLE SUR HONFLEUR" + "codePostal": "51120", + "codeCommune": "51426", + "libelleAcheminement": "PEAS", + "nomCommune": "PEAS" }, { - "codePostal": "20200", - "codeCommune": "2B309", - "libelleAcheminement": "SANTA MARIA DI LOTA", - "nomCommune": "SANTA MARIA DI LOTA" + "codePostal": "51320", + "codeCommune": "51244", + "libelleAcheminement": "FAUX VESIGNEUL", + "nomCommune": "FAUX VESIGNEUL" }, { - "codePostal": "42320", - "codeCommune": "42032", - "libelleAcheminement": "CELLIEU", - "nomCommune": "CELLIEU" + "codePostal": "37340", + "codeCommune": "37082", + "libelleAcheminement": "CONTINVOIR", + "nomCommune": "CONTINVOIR" }, { - "codePostal": "64400", - "codeCommune": "64244", - "libelleAcheminement": "GEUS D OLORON", - "nomCommune": "GEUS D OLORON" + "codePostal": "38570", + "codeCommune": "38504", + "libelleAcheminement": "THEYS", + "nomCommune": "THEYS" }, { - "codePostal": "14880", - "codeCommune": "14325", - "libelleAcheminement": "HERMANVILLE SUR MER", - "nomCommune": "HERMANVILLE SUR MER" + "codePostal": "51300", + "codeCommune": "51433", + "libelleAcheminement": "PLICHANCOURT", + "nomCommune": "PLICHANCOURT" }, { - "codePostal": "20230", - "codeCommune": "2B319", - "libelleAcheminement": "TALASANI", - "nomCommune": "TALASANI" + "codePostal": "51170", + "codeCommune": "51245", + "libelleAcheminement": "FAVEROLLES ET COEMY", + "nomCommune": "FAVEROLLES ET COEMY" }, { - "codePostal": "42130", - "codeCommune": "42035", - "libelleAcheminement": "CEZAY", - "nomCommune": "CEZAY" + "codePostal": "37330", + "codeCommune": "37084", + "libelleAcheminement": "COUESMES", + "nomCommune": "COUESMES" }, { - "codePostal": "64420", - "codeCommune": "64246", - "libelleAcheminement": "GOMER", - "nomCommune": "GOMER" + "codePostal": "38230", + "codeCommune": "38507", + "libelleAcheminement": "TIGNIEU JAMEYZIEU", + "nomCommune": "TIGNIEU JAMEYZIEU" }, { - "codePostal": "14850", - "codeCommune": "14328", - "libelleAcheminement": "HEROUVILLETTE", - "nomCommune": "HEROUVILLETTE" + "codePostal": "51240", + "codeCommune": "51436", + "libelleAcheminement": "POGNY", + "nomCommune": "POGNY" }, { - "codePostal": "20250", - "codeCommune": "2B329", - "libelleAcheminement": "TRALONCA", - "nomCommune": "TRALONCA" + "codePostal": "51120", + "codeCommune": "51254", + "libelleAcheminement": "FONTAINE DENIS NUISY", + "nomCommune": "FONTAINE DENIS NUISY" }, { - "codePostal": "42800", - "codeCommune": "42053", - "libelleAcheminement": "CHATEAUNEUF", - "nomCommune": "CHATEAUNEUF" + "codePostal": "37310", + "codeCommune": "37085", + "libelleAcheminement": "COURCAY", + "nomCommune": "COURCAY" }, { - "codePostal": "64520", - "codeCommune": "64250", - "libelleAcheminement": "GUICHE", - "nomCommune": "GUICHE" + "codePostal": "38700", + "codeCommune": "38516", + "libelleAcheminement": "LA TRONCHE", + "nomCommune": "LA TRONCHE" }, { - "codePostal": "14430", - "codeCommune": "14335", - "libelleAcheminement": "HOTOT EN AUGE", - "nomCommune": "HOTOT EN AUGE" + "codePostal": "51480", + "codeCommune": "51457", + "libelleAcheminement": "REUIL", + "nomCommune": "REUIL" }, { - "codePostal": "20218", - "codeCommune": "2B332", - "libelleAcheminement": "URTACA", - "nomCommune": "URTACA" + "codePostal": "51240", + "codeCommune": "51260", + "libelleAcheminement": "LE FRESNE", + "nomCommune": "LE FRESNE" }, { - "codePostal": "42410", - "codeCommune": "42064", - "libelleAcheminement": "CHUYER", - "nomCommune": "CHUYER" + "codePostal": "37220", + "codeCommune": "37090", + "libelleAcheminement": "CRISSAY SUR MANSE", + "nomCommune": "CRISSAY SUR MANSE" }, { - "codePostal": "64400", - "codeCommune": "64252", - "libelleAcheminement": "GURMENCON", - "nomCommune": "GURMENCON" + "codePostal": "38740", + "codeCommune": "38522", + "libelleAcheminement": "VALJOUFFREY", + "nomCommune": "VALJOUFFREY" }, { - "codePostal": "14340", - "codeCommune": "14337", - "libelleAcheminement": "LA HOUBLONNIERE", - "nomCommune": "LA HOUBLONNIERE" + "codePostal": "51500", + "codeCommune": "51461", + "libelleAcheminement": "RILLY LA MONTAGNE", + "nomCommune": "RILLY LA MONTAGNE" }, { - "codePostal": "20221", - "codeCommune": "2B335", - "libelleAcheminement": "VALLE DI CAMPOLORO", - "nomCommune": "VALLE DI CAMPOLORO" + "codePostal": "51120", + "codeCommune": "51265", + "libelleAcheminement": "GAYE", + "nomCommune": "GAYE" }, { - "codePostal": "42110", - "codeCommune": "42065", - "libelleAcheminement": "CIVENS", - "nomCommune": "CIVENS" + "codePostal": "37310", + "codeCommune": "37097", + "libelleAcheminement": "DOLUS LE SEC", + "nomCommune": "DOLUS LE SEC" }, { - "codePostal": "64190", - "codeCommune": "64253", - "libelleAcheminement": "GURS", - "nomCommune": "GURS" + "codePostal": "38890", + "codeCommune": "38525", + "libelleAcheminement": "VASSELIN", + "nomCommune": "VASSELIN" }, { - "codePostal": "14230", - "codeCommune": "14342", - "libelleAcheminement": "ISIGNY SUR MER", - "nomCommune": "ISIGNY SUR MER" + "codePostal": "51300", + "codeCommune": "51463", + "libelleAcheminement": "LES RIVIERES HENRUEL", + "nomCommune": "LES RIVIERES HENRUEL" }, { - "codePostal": "20240", - "codeCommune": "2B342", - "libelleAcheminement": "VENTISERI", - "nomCommune": "VENTISERI" + "codePostal": "51290", + "codeCommune": "51277", + "libelleAcheminement": "STE MARIE DU LAC NUISEMENT", + "nomCommune": "STE MARIE DU LAC NUISEMENT" }, { - "codePostal": "42840", - "codeCommune": "42068", - "libelleAcheminement": "COMBRE", - "nomCommune": "COMBRE" + "codePostal": "37350", + "codeCommune": "37113", + "libelleAcheminement": "LE GRAND PRESSIGNY", + "nomCommune": "LE GRAND PRESSIGNY" }, { - "codePostal": "64370", - "codeCommune": "64254", - "libelleAcheminement": "HAGETAUBIN", - "nomCommune": "HAGETAUBIN" + "codePostal": "38470", + "codeCommune": "38526", + "libelleAcheminement": "VATILIEU", + "nomCommune": "VATILIEU" }, { - "codePostal": "14380", - "codeCommune": "14352", - "libelleAcheminement": "LANDELLES ET COUPIGNY", - "nomCommune": "LANDELLES ET COUPIGNY" + "codePostal": "51170", + "codeCommune": "51466", + "libelleAcheminement": "ROMIGNY", + "nomCommune": "ROMIGNY" }, { - "codePostal": "20279", - "codeCommune": "2B352", - "libelleAcheminement": "VILLE DI PARASO", - "nomCommune": "VILLE DI PARASO" + "codePostal": "51300", + "codeCommune": "51288", + "libelleAcheminement": "HEILTZ LE HUTIER", + "nomCommune": "HEILTZ LE HUTIER" }, { - "codePostal": "42460", - "codeCommune": "42074", - "libelleAcheminement": "COUTOUVRE", - "nomCommune": "COUTOUVRE" + "codePostal": "37350", + "codeCommune": "37114", + "libelleAcheminement": "LA GUERCHE", + "nomCommune": "LA GUERCHE" }, { - "codePostal": "64240", - "codeCommune": "64256", - "libelleAcheminement": "HASPARREN", - "nomCommune": "HASPARREN" + "codePostal": "38114", + "codeCommune": "38527", + "libelleAcheminement": "VAUJANY", + "nomCommune": "VAUJANY" }, { - "codePostal": "14830", - "codeCommune": "14354", - "libelleAcheminement": "LANGRUNE SUR MER", - "nomCommune": "LANGRUNE SUR MER" + "codePostal": "51300", + "codeCommune": "51472", + "libelleAcheminement": "ST AMAND SUR FION", + "nomCommune": "ST AMAND SUR FION" }, { - "codePostal": "20200", - "codeCommune": "2B353", - "libelleAcheminement": "VILLE DI PIETRABUGNO", - "nomCommune": "VILLE DI PIETRABUGNO" + "codePostal": "51340", + "codeCommune": "51289", + "libelleAcheminement": "HEILTZ LE MAURUPT", + "nomCommune": "HEILTZ LE MAURUPT" }, { - "codePostal": "42260", - "codeCommune": "42076", - "libelleAcheminement": "CREMEAUX", - "nomCommune": "CREMEAUX" + "codePostal": "37340", + "codeCommune": "37117", + "libelleAcheminement": "HOMMES", + "nomCommune": "HOMMES" }, { - "codePostal": "64700", - "codeCommune": "64260", - "libelleAcheminement": "HENDAYE", - "nomCommune": "HENDAYE" + "codePostal": "38620", + "codeCommune": "38531", + "libelleAcheminement": "VELANNE", + "nomCommune": "VELANNE" }, { - "codePostal": "14340", - "codeCommune": "14358", - "libelleAcheminement": "LEAUPARTIE", - "nomCommune": "LEAUPARTIE" + "codePostal": "52100", + "codeCommune": "51478", + "libelleAcheminement": "ST EULIEN", + "nomCommune": "ST EULIEN" }, { - "codePostal": "30500", - "codeCommune": "30008", - "libelleAcheminement": "ALLEGRE LES FUMADES", - "nomCommune": "ALLEGRE LES FUMADES" + "codePostal": "51220", + "codeCommune": "51291", + "libelleAcheminement": "HERMONVILLE", + "nomCommune": "HERMONVILLE" }, { - "codePostal": "42460", - "codeCommune": "42079", - "libelleAcheminement": "CUINZIER", - "nomCommune": "CUINZIER" + "codePostal": "37120", + "codeCommune": "37125", + "libelleAcheminement": "LEMERE", + "nomCommune": "LEMERE" }, { - "codePostal": "64680", - "codeCommune": "64261", - "libelleAcheminement": "HERRERE", - "nomCommune": "HERRERE" + "codePostal": "38460", + "codeCommune": "38542", + "libelleAcheminement": "VEYSSILIEU", + "nomCommune": "VEYSSILIEU" }, { - "codePostal": "14700", - "codeCommune": "14360", - "libelleAcheminement": "LEFFARD", - "nomCommune": "LEFFARD" + "codePostal": "51260", + "codeCommune": "51492", + "libelleAcheminement": "ST JUST SAUVAGE", + "nomCommune": "ST JUST SAUVAGE" }, { - "codePostal": "30140", - "codeCommune": "30010", - "libelleAcheminement": "ANDUZE", - "nomCommune": "ANDUZE" + "codePostal": "51210", + "codeCommune": "51304", + "libelleAcheminement": "JANVILLIERS", + "nomCommune": "JANVILLIERS" }, { - "codePostal": "42580", - "codeCommune": "42092", - "libelleAcheminement": "L ETRAT", - "nomCommune": "L ETRAT" + "codePostal": "37460", + "codeCommune": "37127", + "libelleAcheminement": "LE LIEGE", + "nomCommune": "LE LIEGE" }, { - "codePostal": "64130", - "codeCommune": "64264", - "libelleAcheminement": "L HOPITAL ST BLAISE", - "nomCommune": "L HOPITAL ST BLAISE" + "codePostal": "38450", + "codeCommune": "38545", + "libelleAcheminement": "VIF", + "nomCommune": "VIF" }, { - "codePostal": "14140", - "codeCommune": "14362", - "libelleAcheminement": "LESSARD ET LE CHENE", - "nomCommune": "LESSARD ET LE CHENE" + "codePostal": "51300", + "codeCommune": "51496", + "libelleAcheminement": "ST LUMIER EN CHAMPAGNE", + "nomCommune": "ST LUMIER EN CHAMPAGNE" }, { - "codePostal": "30133", - "codeCommune": "30011", - "libelleAcheminement": "LES ANGLES", - "nomCommune": "LES ANGLES" + "codePostal": "51700", + "codeCommune": "51309", + "libelleAcheminement": "JONQUERY", + "nomCommune": "JONQUERY" }, { - "codePostal": "42140", - "codeCommune": "42096", - "libelleAcheminement": "FONTANES", - "nomCommune": "FONTANES" + "codePostal": "37500", + "codeCommune": "37129", + "libelleAcheminement": "LIGRE", + "nomCommune": "LIGRE" }, { - "codePostal": "64220", - "codeCommune": "64274", - "libelleAcheminement": "IROULEGUY", - "nomCommune": "IROULEGUY" + "codePostal": "38520", + "codeCommune": "38551", + "libelleAcheminement": "VILLARD REYMOND", + "nomCommune": "VILLARD REYMOND" }, { - "codePostal": "14780", - "codeCommune": "14365", - "libelleAcheminement": "LION SUR MER", - "nomCommune": "LION SUR MER" + "codePostal": "51520", + "codeCommune": "51504", + "libelleAcheminement": "ST MARTIN SUR LE PRE", + "nomCommune": "ST MARTIN SUR LE PRE" }, { - "codePostal": "30250", - "codeCommune": "30019", - "libelleAcheminement": "AUBAIS", - "nomCommune": "AUBAIS" + "codePostal": "51120", + "codeCommune": "51313", + "libelleAcheminement": "LACHY", + "nomCommune": "LACHY" }, { - "codePostal": "42480", - "codeCommune": "42097", - "libelleAcheminement": "LA FOUILLOUSE", - "nomCommune": "LA FOUILLOUSE" + "codePostal": "37240", + "codeCommune": "37136", + "libelleAcheminement": "LE LOUROUX", + "nomCommune": "LE LOUROUX" }, { - "codePostal": "64390", - "codeCommune": "64287", - "libelleAcheminement": "LAAS", - "nomCommune": "LAAS" + "codePostal": "38119", + "codeCommune": "38552", + "libelleAcheminement": "VILLARD ST CHRISTOPHE", + "nomCommune": "VILLARD ST CHRISTOPHE" }, { - "codePostal": "14330", - "codeCommune": "14370", - "libelleAcheminement": "LE MOLAY LITTRY", - "nomCommune": "LE MOLAY LITTRY" + "codePostal": "51290", + "codeCommune": "51513", + "libelleAcheminement": "ST REMY EN BOUZEMONT ST GENEST", + "nomCommune": "ST REMY EN BOUZEMONT ST GENEST ISSON" }, { - "codePostal": "30620", - "codeCommune": "30020", - "libelleAcheminement": "AUBORD", - "nomCommune": "AUBORD" + "codePostal": "51230", + "codeCommune": "51323", + "libelleAcheminement": "LINTHELLES", + "nomCommune": "LINTHELLES" }, { - "codePostal": "42600", - "codeCommune": "42105", - "libelleAcheminement": "GREZIEUX LE FROMENTAL", - "nomCommune": "GREZIEUX LE FROMENTAL" + "codePostal": "37400", + "codeCommune": "37138", + "libelleAcheminement": "LUSSAULT SUR LOIRE", + "nomCommune": "LUSSAULT SUR LOIRE" }, { - "codePostal": "64240", - "codeCommune": "64289", - "libelleAcheminement": "LA BASTIDE CLAIRENCE", - "nomCommune": "LA BASTIDE CLAIRENCE" + "codePostal": "38150", + "codeCommune": "38556", + "libelleAcheminement": "VILLE SOUS ANJOU", + "nomCommune": "VILLE SOUS ANJOU" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "51220", + "codeCommune": "51518", + "libelleAcheminement": "ST THIERRY", + "nomCommune": "ST THIERRY" }, { - "codePostal": "30190", - "codeCommune": "30021", - "libelleAcheminement": "AUBUSSARGUES", - "nomCommune": "AUBUSSARGUES" + "codePostal": "51230", + "codeCommune": "51324", + "libelleAcheminement": "LINTHES", + "nomCommune": "LINTHES" }, { - "codePostal": "42110", - "codeCommune": "42113", - "libelleAcheminement": "JAS", - "nomCommune": "JAS" + "codePostal": "37150", + "codeCommune": "37141", + "libelleAcheminement": "LUZILLE", + "nomCommune": "LUZILLE" }, { - "codePostal": "64300", - "codeCommune": "64312", - "libelleAcheminement": "LANNEPLAA", - "nomCommune": "LANNEPLAA" + "codePostal": "38280", + "codeCommune": "38557", + "libelleAcheminement": "VILLETTE D ANTHON", + "nomCommune": "VILLETTE D ANTHON" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "52100", + "codeCommune": "51522", + "libelleAcheminement": "SAPIGNICOURT", + "nomCommune": "SAPIGNICOURT" }, { - "codePostal": "30140", - "codeCommune": "30027", - "libelleAcheminement": "BAGARD", - "nomCommune": "BAGARD" + "codePostal": "51240", + "codeCommune": "51339", + "libelleAcheminement": "MAIRY SUR MARNE", + "nomCommune": "MAIRY SUR MARNE" }, { - "codePostal": "42430", - "codeCommune": "42116", - "libelleAcheminement": "JURE", - "nomCommune": "JURE" + "codePostal": "37800", + "codeCommune": "37142", + "libelleAcheminement": "MAILLE", + "nomCommune": "MAILLE" }, { - "codePostal": "64440", - "codeCommune": "64320", - "libelleAcheminement": "LARUNS", - "nomCommune": "LARUNS" + "codePostal": "38200", + "codeCommune": "38558", + "libelleAcheminement": "VILLETTE DE VIENNE", + "nomCommune": "VILLETTE DE VIENNE" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "51400", + "codeCommune": "51530", + "libelleAcheminement": "SEPT SAULX", + "nomCommune": "SEPT SAULX" }, { - "codePostal": "30127", - "codeCommune": "30034", - "libelleAcheminement": "BELLEGARDE", - "nomCommune": "BELLEGARDE" + "codePostal": "51270", + "codeCommune": "51345", + "libelleAcheminement": "MAREUIL EN BRIE", + "nomCommune": "MAREUIL EN BRIE" }, { - "codePostal": "42560", - "codeCommune": "42117", - "libelleAcheminement": "LAVIEU", - "nomCommune": "LAVIEU" + "codePostal": "37240", + "codeCommune": "37143", + "libelleAcheminement": "MANTHELAN", + "nomCommune": "MANTHELAN" }, { - "codePostal": "64220", - "codeCommune": "64322", - "libelleAcheminement": "LASSE", - "nomCommune": "LASSE" + "codePostal": "38470", + "codeCommune": "38559", + "libelleAcheminement": "VINAY", + "nomCommune": "VINAY" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "51500", + "codeCommune": "51536", + "libelleAcheminement": "SILLERY", + "nomCommune": "SILLERY" }, { - "codePostal": "30580", - "codeCommune": "30035", - "libelleAcheminement": "BELVEZET", - "nomCommune": "BELVEZET" + "codePostal": "51700", + "codeCommune": "51346", + "libelleAcheminement": "MAREUIL LE PORT", + "nomCommune": "MAREUIL LE PORT" }, { - "codePostal": "42600", - "codeCommune": "42122", - "libelleAcheminement": "LEZIGNEUX", - "nomCommune": "LEZIGNEUX" + "codePostal": "37500", + "codeCommune": "37144", + "libelleAcheminement": "MARCAY", + "nomCommune": "MARCAY" }, { - "codePostal": "64490", - "codeCommune": "64330", - "libelleAcheminement": "LEES ATHAS", - "nomCommune": "LEES ATHAS" + "codePostal": "39600", + "codeCommune": "39002", + "libelleAcheminement": "ABERGEMENT LE GRAND", + "nomCommune": "ABERGEMENT LE GRAND" }, { - "codePostal": "14290", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "51800", + "codeCommune": "51543", + "libelleAcheminement": "SOMME BIONNE", + "nomCommune": "SOMME BIONNE" }, { - "codePostal": "30160", - "codeCommune": "30037", - "libelleAcheminement": "BESSEGES", - "nomCommune": "BESSEGES" + "codePostal": "51170", + "codeCommune": "51348", + "libelleAcheminement": "MARFAUX", + "nomCommune": "MARFAUX" }, { - "codePostal": "42380", - "codeCommune": "42126", - "libelleAcheminement": "LURIECQ", - "nomCommune": "LURIECQ" + "codePostal": "37250", + "codeCommune": "37154", + "libelleAcheminement": "MONTBAZON", + "nomCommune": "MONTBAZON" }, { - "codePostal": "64490", - "codeCommune": "64336", - "libelleAcheminement": "LESCUN", - "nomCommune": "LESCUN" + "codePostal": "39320", + "codeCommune": "39010", + "libelleAcheminement": "ANDELOT MORVAL", + "nomCommune": "ANDELOT MORVAL" }, { - "codePostal": "14230", - "codeCommune": "14378", - "libelleAcheminement": "LONGUEVILLE", - "nomCommune": "LONGUEVILLE" + "codePostal": "51600", + "codeCommune": "51544", + "libelleAcheminement": "SOMMEPY TAHURE", + "nomCommune": "SOMMEPY TAHURE" }, { - "codePostal": "30320", - "codeCommune": "30039", - "libelleAcheminement": "BEZOUCE", - "nomCommune": "BEZOUCE" + "codePostal": "51240", + "codeCommune": "51354", + "libelleAcheminement": "MARSON", + "nomCommune": "MARSON" }, { - "codePostal": "42140", - "codeCommune": "42133", - "libelleAcheminement": "MARCENOD", - "nomCommune": "MARCENOD" + "codePostal": "37260", + "codeCommune": "37159", + "libelleAcheminement": "MONTS", + "nomCommune": "MONTS" }, { - "codePostal": "64160", - "codeCommune": "64338", - "libelleAcheminement": "LESPOURCY", - "nomCommune": "LESPOURCY" + "codePostal": "39320", + "codeCommune": "39010", + "libelleAcheminement": "ANDELOT MORVAL", + "nomCommune": "ANDELOT MORVAL" }, { - "codePostal": "14250", - "codeCommune": "14380", - "libelleAcheminement": "LOUCELLES", - "nomCommune": "LOUCELLES" + "codePostal": "51460", + "codeCommune": "51548", + "libelleAcheminement": "SOMME VESLE", + "nomCommune": "SOMME VESLE" }, { - "codePostal": "30700", - "codeCommune": "30041", - "libelleAcheminement": "BLAUZAC", - "nomCommune": "BLAUZAC" + "codePostal": "51300", + "codeCommune": "51356", + "libelleAcheminement": "MATIGNICOURT GONCOURT", + "nomCommune": "MATIGNICOURT GONCOURT" }, { - "codePostal": "42130", - "codeCommune": "42136", - "libelleAcheminement": "MARCOUX", - "nomCommune": "MARCOUX" + "codePostal": "37530", + "codeCommune": "37163", + "libelleAcheminement": "NAZELLES NEGRON", + "nomCommune": "NAZELLES NEGRON" }, { - "codePostal": "64420", - "codeCommune": "64343", - "libelleAcheminement": "LIMENDOUS", - "nomCommune": "LIMENDOUS" + "codePostal": "39240", + "codeCommune": "39018", + "libelleAcheminement": "AROMAS", + "nomCommune": "AROMAS" }, { - "codePostal": "14930", - "codeCommune": "14396", - "libelleAcheminement": "MALTOT", - "nomCommune": "MALTOT" + "codePostal": "51300", + "codeCommune": "51567", + "libelleAcheminement": "THIEBLEMONT FAREMONT", + "nomCommune": "THIEBLEMONT FAREMONT" }, { - "codePostal": "30140", - "codeCommune": "30042", - "libelleAcheminement": "BOISSET ET GAUJAC", - "nomCommune": "BOISSET ET GAUJAC" + "codePostal": "51510", + "codeCommune": "51357", + "libelleAcheminement": "MATOUGUES", + "nomCommune": "MATOUGUES" }, { - "codePostal": "42560", - "codeCommune": "42137", - "libelleAcheminement": "MARGERIE CHANTAGRET", - "nomCommune": "MARGERIE CHANTAGRET" + "codePostal": "37110", + "codeCommune": "37169", + "libelleAcheminement": "NEUVILLE SUR BRENNE", + "nomCommune": "NEUVILLE SUR BRENNE" }, { - "codePostal": "64140", - "codeCommune": "64348", - "libelleAcheminement": "LONS", - "nomCommune": "LONS" + "codePostal": "39270", + "codeCommune": "39021", + "libelleAcheminement": "LA CHAILLEUSE", + "nomCommune": "LA CHAILLEUSE" }, { - "codePostal": "14710", - "codeCommune": "14397", - "libelleAcheminement": "MANDEVILLE EN BESSIN", - "nomCommune": "MANDEVILLE EN BESSIN" + "codePostal": "51370", + "codeCommune": "51569", + "libelleAcheminement": "THILLOIS", + "nomCommune": "THILLOIS" }, { - "codePostal": "30120", - "codeCommune": "30052", - "libelleAcheminement": "BREAU MARS", - "nomCommune": "BREAU MARS" + "codePostal": "51800", + "codeCommune": "51370", + "libelleAcheminement": "MOIREMONT", + "nomCommune": "MOIREMONT" }, { - "codePostal": "42510", - "codeCommune": "42154", - "libelleAcheminement": "NERONDE", - "nomCommune": "NERONDE" + "codePostal": "37530", + "codeCommune": "37185", + "libelleAcheminement": "POCE SUR CISSE", + "nomCommune": "POCE SUR CISSE" }, { - "codePostal": "64570", - "codeCommune": "64351", - "libelleAcheminement": "LOURDIOS ICHERE", - "nomCommune": "LOURDIOS ICHERE" + "codePostal": "39120", + "codeCommune": "39034", + "libelleAcheminement": "BALAISEAUX", + "nomCommune": "BALAISEAUX" }, { - "codePostal": "14340", - "codeCommune": "14398", - "libelleAcheminement": "MANERBE", - "nomCommune": "MANERBE" + "codePostal": "51140", + "codeCommune": "51582", + "libelleAcheminement": "TRIGNY", + "nomCommune": "TRIGNY" }, { - "codePostal": "30260", - "codeCommune": "30066", - "libelleAcheminement": "CANNES ET CLAIRAN", - "nomCommune": "CANNES ET CLAIRAN" + "codePostal": "51240", + "codeCommune": "51371", + "libelleAcheminement": "MOIVRE", + "nomCommune": "MOIVRE" }, { - "codePostal": "42120", - "codeCommune": "42166", - "libelleAcheminement": "PARIGNY", - "nomCommune": "PARIGNY" + "codePostal": "37260", + "codeCommune": "37186", + "libelleAcheminement": "PONT DE RUAN", + "nomCommune": "PONT DE RUAN" }, { - "codePostal": "64260", - "codeCommune": "64353", - "libelleAcheminement": "LOUVIE JUZON", - "nomCommune": "LOUVIE JUZON" + "codePostal": "39800", + "codeCommune": "39040", + "libelleAcheminement": "BARRETAINE", + "nomCommune": "BARRETAINE" }, { - "codePostal": "14130", - "codeCommune": "14399", - "libelleAcheminement": "MANNEVILLE LA PIPARD", - "nomCommune": "MANNEVILLE LA PIPARD" + "codePostal": "51700", + "codeCommune": "51585", + "libelleAcheminement": "TROISSY", + "nomCommune": "TROISSY" }, { - "codePostal": "30350", - "codeCommune": "30071", - "libelleAcheminement": "CASSAGNOLES", - "nomCommune": "CASSAGNOLES" + "codePostal": "51120", + "codeCommune": "51374", + "libelleAcheminement": "MONDEMENT MONTGIVROUX", + "nomCommune": "MONDEMENT MONTGIVROUX" }, { - "codePostal": "42600", - "codeCommune": "42180", - "libelleAcheminement": "PRECIEUX", - "nomCommune": "PRECIEUX" + "codePostal": "37800", + "codeCommune": "37187", + "libelleAcheminement": "PORTS SUR VIENNE", + "nomCommune": "PORTS SUR VIENNE" }, { - "codePostal": "64120", - "codeCommune": "64362", - "libelleAcheminement": "LUXE SUMBERRAUTE", - "nomCommune": "LUXE SUMBERRAUTE" + "codePostal": "39210", + "codeCommune": "39041", + "libelleAcheminement": "BAUME LES MESSIEURS", + "nomCommune": "BAUME LES MESSIEURS" }, { - "codePostal": "14400", - "codeCommune": "14400", - "libelleAcheminement": "LE MANOIR", - "nomCommune": "LE MANOIR" + "codePostal": "51400", + "codeCommune": "51587", + "libelleAcheminement": "VADENAY", + "nomCommune": "VADENAY" }, { - "codePostal": "30820", - "codeCommune": "30075", - "libelleAcheminement": "CAVEIRAC", - "nomCommune": "CAVEIRAC" + "codePostal": "51210", + "codeCommune": "51380", + "libelleAcheminement": "MONTMIRAIL", + "nomCommune": "MONTMIRAIL" }, { - "codePostal": "42630", - "codeCommune": "42181", - "libelleAcheminement": "REGNY", - "nomCommune": "REGNY" + "codePostal": "37140", + "codeCommune": "37193", + "libelleAcheminement": "RESTIGNE", + "nomCommune": "RESTIGNE" }, { - "codePostal": "64260", - "codeCommune": "64363", - "libelleAcheminement": "LYS", - "nomCommune": "LYS" + "codePostal": "39270", + "codeCommune": "39045", + "libelleAcheminement": "BEFFIA", + "nomCommune": "BEFFIA" }, { - "codePostal": "14700", - "codeCommune": "14405", - "libelleAcheminement": "MARTIGNY SUR L ANTE", - "nomCommune": "MARTIGNY SUR L ANTE" + "codePostal": "51340", + "codeCommune": "51590", + "libelleAcheminement": "VANAULT LES DAMES", + "nomCommune": "VANAULT LES DAMES" }, { - "codePostal": "30530", - "codeCommune": "30080", - "libelleAcheminement": "CHAMBORIGAUD", - "nomCommune": "CHAMBORIGAUD" + "codePostal": "51530", + "codeCommune": "51390", + "libelleAcheminement": "MOUSSY", + "nomCommune": "MOUSSY" }, { - "codePostal": "42800", - "codeCommune": "42186", - "libelleAcheminement": "RIVE DE GIER", - "nomCommune": "RIVE DE GIER" + "codePostal": "37380", + "codeCommune": "37194", + "libelleAcheminement": "REUGNY", + "nomCommune": "REUGNY" }, { - "codePostal": "64240", - "codeCommune": "64364", - "libelleAcheminement": "MACAYE", - "nomCommune": "MACAYE" + "codePostal": "39800", + "codeCommune": "39050", + "libelleAcheminement": "BESAIN", + "nomCommune": "BESAIN" }, { - "codePostal": "14480", - "codeCommune": "14406", - "libelleAcheminement": "MOULINS EN BESSIN", - "nomCommune": "MOULINS EN BESSIN" + "codePostal": "51320", + "codeCommune": "51594", + "libelleAcheminement": "VASSIMONT ET CHAPELAINE", + "nomCommune": "VASSIMONT ET CHAPELAINE" }, { - "codePostal": "30870", - "codeCommune": "30082", - "libelleAcheminement": "CLARENSAC", - "nomCommune": "CLARENSAC" + "codePostal": "51700", + "codeCommune": "51396", + "libelleAcheminement": "NESLE LE REPONS", + "nomCommune": "NESLE LE REPONS" }, { - "codePostal": "42110", - "codeCommune": "42202", - "libelleAcheminement": "ST BARTHELEMY LESTRA", - "nomCommune": "ST BARTHELEMY LESTRA" + "codePostal": "37120", + "codeCommune": "37196", + "libelleAcheminement": "RICHELIEU", + "nomCommune": "RICHELIEU" }, { - "codePostal": "64410", - "codeCommune": "64365", - "libelleAcheminement": "MALAUSSANNE", - "nomCommune": "MALAUSSANNE" + "codePostal": "39150", + "codeCommune": "39052", + "libelleAcheminement": "BIEF DES MAISONS", + "nomCommune": "BIEF DES MAISONS" }, { - "codePostal": "14100", - "codeCommune": "14421", - "libelleAcheminement": "LE MESNIL GUILLAUME", - "nomCommune": "LE MESNIL GUILLAUME" + "codePostal": "51210", + "codeCommune": "51596", + "libelleAcheminement": "VAUCHAMPS", + "nomCommune": "VAUCHAMPS" }, { - "codePostal": "30200", - "codeCommune": "30084", - "libelleAcheminement": "CODOLET", - "nomCommune": "CODOLET" + "codePostal": "51700", + "codeCommune": "51414", + "libelleAcheminement": "OLIZY", + "nomCommune": "OLIZY" }, { - "codePostal": "42940", - "codeCommune": "42205", - "libelleAcheminement": "ST BONNET LE COURREAU", - "nomCommune": "ST BONNET LE COURREAU" + "codePostal": "37500", + "codeCommune": "37201", + "libelleAcheminement": "RIVIERE", + "nomCommune": "RIVIERE" }, { - "codePostal": "64350", - "codeCommune": "64369", - "libelleAcheminement": "MASPIE LALONQUERE JUILLACQ", - "nomCommune": "MASPIE LALONQUERE JUILLACQ" + "codePostal": "39210", + "codeCommune": "39057", + "libelleAcheminement": "BLOIS SUR SEILLE", + "nomCommune": "BLOIS SUR SEILLE" }, { - "codePostal": "14380", - "codeCommune": "14424", - "libelleAcheminement": "LE MESNIL ROBERT", - "nomCommune": "LE MESNIL ROBERT" + "codePostal": "51300", + "codeCommune": "51598", + "libelleAcheminement": "VAUCLERC", + "nomCommune": "VAUCLERC" }, { - "codePostal": "30300", - "codeCommune": "30089", - "libelleAcheminement": "COMPS", - "nomCommune": "COMPS" + "codePostal": "51270", + "codeCommune": "51416", + "libelleAcheminement": "ORBAIS L ABBAYE", + "nomCommune": "ORBAIS L ABBAYE" }, { - "codePostal": "42400", - "codeCommune": "42207", - "libelleAcheminement": "ST CHAMOND", - "nomCommune": "ST CHAMOND" + "codePostal": "37540", + "codeCommune": "37214", + "libelleAcheminement": "ST CYR SUR LOIRE", + "nomCommune": "ST CYR SUR LOIRE" }, { - "codePostal": "64130", - "codeCommune": "64371", - "libelleAcheminement": "MAULEON SOULE", - "nomCommune": "MAULEON LICHARRE" + "codePostal": "39130", + "codeCommune": "39063", + "libelleAcheminement": "BONLIEU", + "nomCommune": "BONLIEU" }, { - "codePostal": "14690", - "codeCommune": "14427", - "libelleAcheminement": "LE MESNIL VILLEMENT", - "nomCommune": "LE MESNIL VILLEMENT" + "codePostal": "51130", + "codeCommune": "51612", + "libelleAcheminement": "BLANCS COTEAUX", + "nomCommune": "BLANCS COTEAUX" }, { - "codePostal": "30190", - "codeCommune": "30102", - "libelleAcheminement": "DIONS", - "nomCommune": "DIONS" + "codePostal": "51700", + "codeCommune": "51425", + "libelleAcheminement": "PASSY GRIGNY", + "nomCommune": "PASSY GRIGNY" }, { - "codePostal": "42000", - "codeCommune": "42218", - "libelleAcheminement": "ST ETIENNE", - "nomCommune": "ST ETIENNE" + "codePostal": "37230", + "codeCommune": "37217", + "libelleAcheminement": "ST ETIENNE DE CHIGNY", + "nomCommune": "ST ETIENNE DE CHIGNY" }, { - "codePostal": "64220", - "codeCommune": "64379", - "libelleAcheminement": "MENDIVE", - "nomCommune": "MENDIVE" + "codePostal": "39570", + "codeCommune": "39066", + "libelleAcheminement": "BORNAY", + "nomCommune": "BORNAY" }, { - "codePostal": "14960", - "codeCommune": "14430", - "libelleAcheminement": "MEUVAINES", - "nomCommune": "MEUVAINES" + "codePostal": "51360", + "codeCommune": "51613", + "libelleAcheminement": "VERZENAY", + "nomCommune": "VERZENAY" }, { - "codePostal": "30750", - "codeCommune": "30105", - "libelleAcheminement": "DOURBIES", - "nomCommune": "DOURBIES" + "codePostal": "51230", + "codeCommune": "51432", + "libelleAcheminement": "PLEURS", + "nomCommune": "PLEURS" }, { - "codePostal": "42230", - "codeCommune": "42218", - "libelleAcheminement": "ST ETIENNE", - "nomCommune": "ST ETIENNE" + "codePostal": "37510", + "codeCommune": "37219", + "libelleAcheminement": "ST GENOUPH", + "nomCommune": "ST GENOUPH" }, { - "codePostal": "64410", - "codeCommune": "64380", - "libelleAcheminement": "MERACQ", - "nomCommune": "MERACQ" + "codePostal": "39300", + "codeCommune": "39070", + "libelleAcheminement": "BOURG DE SIROD", + "nomCommune": "BOURG DE SIROD" }, { - "codePostal": "14140", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "51380", + "codeCommune": "51614", + "libelleAcheminement": "VERZY", + "nomCommune": "VERZY" }, { - "codePostal": "30660", - "codeCommune": "30123", - "libelleAcheminement": "GALLARGUES LE MONTUEUX", - "nomCommune": "GALLARGUES LE MONTUEUX" + "codePostal": "51300", + "codeCommune": "51446", + "libelleAcheminement": "PRINGY", + "nomCommune": "PRINGY" }, { - "codePostal": "42660", - "codeCommune": "42224", - "libelleAcheminement": "ST GENEST MALIFAUX", - "nomCommune": "ST GENEST MALIFAUX" + "codePostal": "37600", + "codeCommune": "37222", + "libelleAcheminement": "ST JEAN ST GERMAIN", + "nomCommune": "ST JEAN ST GERMAIN" }, { - "codePostal": "64410", - "codeCommune": "64383", - "libelleAcheminement": "MIALOS", - "nomCommune": "MIALOS" + "codePostal": "39250", + "codeCommune": "39083", + "libelleAcheminement": "CENSEAU", + "nomCommune": "CENSEAU" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "51520", + "codeCommune": "51617", + "libelleAcheminement": "LA VEUVE", + "nomCommune": "LA VEUVE" }, { - "codePostal": "30760", - "codeCommune": "30134", - "libelleAcheminement": "ISSIRAC", - "nomCommune": "ISSIRAC" + "codePostal": "51120", + "codeCommune": "51451", + "libelleAcheminement": "QUEUDES", + "nomCommune": "QUEUDES" }, { - "codePostal": "42800", - "codeCommune": "42225", - "libelleAcheminement": "GENILAC", - "nomCommune": "GENILAC" + "codePostal": "37800", + "codeCommune": "37226", + "libelleAcheminement": "STE MAURE DE TOURAINE", + "nomCommune": "STE MAURE DE TOURAINE" }, { - "codePostal": "64330", - "codeCommune": "64392", - "libelleAcheminement": "MONCLA", - "nomCommune": "MONCLA" + "codePostal": "39240", + "codeCommune": "39086", + "libelleAcheminement": "CERNON", + "nomCommune": "CERNON" }, { - "codePostal": "14400", - "codeCommune": "14436", - "libelleAcheminement": "MONCEAUX EN BESSIN", - "nomCommune": "MONCEAUX EN BESSIN" + "codePostal": "51330", + "codeCommune": "51619", + "libelleAcheminement": "LE VIEIL DAMPIERRE", + "nomCommune": "LE VIEIL DAMPIERRE" }, { - "codePostal": "30350", - "codeCommune": "30147", - "libelleAcheminement": "LEZAN", - "nomCommune": "LEZAN" + "codePostal": "51520", + "codeCommune": "51453", + "libelleAcheminement": "RECY", + "nomCommune": "RECY" }, { - "codePostal": "42380", - "codeCommune": "42235", - "libelleAcheminement": "ST HILAIRE CUSSON LA VALMITTE", - "nomCommune": "ST HILAIRE CUSSON LA VALMITTE" + "codePostal": "37530", + "codeCommune": "37230", + "libelleAcheminement": "ST OUEN LES VIGNES", + "nomCommune": "ST OUEN LES VIGNES" }, { - "codePostal": "64410", - "codeCommune": "64397", - "libelleAcheminement": "MONTAGUT", - "nomCommune": "MONTAGUT" + "codePostal": "39270", + "codeCommune": "39092", + "libelleAcheminement": "CHAMBERIA", + "nomCommune": "CHAMBERIA" }, { - "codePostal": "14120", - "codeCommune": "14437", - "libelleAcheminement": "MONDEVILLE", - "nomCommune": "MONDEVILLE" + "codePostal": "51250", + "codeCommune": "51635", + "libelleAcheminement": "VILLERS LE SEC", + "nomCommune": "VILLERS LE SEC" }, { - "codePostal": "30320", - "codeCommune": "30156", - "libelleAcheminement": "MARGUERITTES", - "nomCommune": "MARGUERITTES" + "codePostal": "51100", + "codeCommune": "51454", + "libelleAcheminement": "REIMS", + "nomCommune": "REIMS" }, { - "codePostal": "42560", - "codeCommune": "42240", - "libelleAcheminement": "ST JEAN SOLEYMIEUX", - "nomCommune": "ST JEAN SOLEYMIEUX" + "codePostal": "37700", + "codeCommune": "37233", + "libelleAcheminement": "ST PIERRE DES CORPS", + "nomCommune": "ST PIERRE DES CORPS" }, { - "codePostal": "64330", - "codeCommune": "64401", - "libelleAcheminement": "MONT DISSE", - "nomCommune": "MONT DISSE" + "codePostal": "39110", + "codeCommune": "39103", + "libelleAcheminement": "LA CHAPELLE SUR FURIEUSE", + "nomCommune": "LA CHAPELLE SUR FURIEUSE" }, { - "codePostal": "14620", - "codeCommune": "14452", - "libelleAcheminement": "MORTEAUX COULIBOEUF", - "nomCommune": "MORTEAUX COULIBOEUF" + "codePostal": "51530", + "codeCommune": "51643", + "libelleAcheminement": "VINAY", + "nomCommune": "VINAY" }, { - "codePostal": "30410", - "codeCommune": "30167", - "libelleAcheminement": "MEYRANNES", - "nomCommune": "MEYRANNES" + "codePostal": "51140", + "codeCommune": "51464", + "libelleAcheminement": "ROMAIN", + "nomCommune": "ROMAIN" }, { - "codePostal": "42590", - "codeCommune": "42241", - "libelleAcheminement": "ST JODARD", - "nomCommune": "ST JODARD" + "codePostal": "37110", + "codeCommune": "37240", + "libelleAcheminement": "SAUNAY", + "nomCommune": "SAUNAY" }, { - "codePostal": "64160", - "codeCommune": "64405", - "libelleAcheminement": "MORLAAS", - "nomCommune": "MORLAAS" + "codePostal": "39140", + "codeCommune": "39104", + "libelleAcheminement": "CHAPELLE VOLAND", + "nomCommune": "CHAPELLE VOLAND" }, { - "codePostal": "14400", - "codeCommune": "14453", - "libelleAcheminement": "MOSLES", - "nomCommune": "MOSLES" + "codePostal": "51240", + "codeCommune": "51648", + "libelleAcheminement": "VITRY LA VILLE", + "nomCommune": "VITRY LA VILLE" }, { - "codePostal": "30120", - "codeCommune": "30176", - "libelleAcheminement": "MONTDARDIER", - "nomCommune": "MONTDARDIER" + "codePostal": "51800", + "codeCommune": "51470", + "libelleAcheminement": "ROUVROY RIPONT", + "nomCommune": "ROUVROY RIPONT" }, { - "codePostal": "42220", - "codeCommune": "42246", - "libelleAcheminement": "ST JULIEN MOLIN MOLETTE", - "nomCommune": "ST JULIEN MOLIN MOLETTE" + "codePostal": "37530", + "codeCommune": "37252", + "libelleAcheminement": "SOUVIGNY DE TOURAINE", + "nomCommune": "SOUVIGNY DE TOURAINE" }, { - "codePostal": "64400", - "codeCommune": "64409", - "libelleAcheminement": "MOUMOUR", - "nomCommune": "MOUMOUR" + "codePostal": "39300", + "codeCommune": "39105", + "libelleAcheminement": "CHAPOIS", + "nomCommune": "CHAPOIS" }, { - "codePostal": "14790", - "codeCommune": "14454", - "libelleAcheminement": "MOUEN", - "nomCommune": "MOUEN" + "codePostal": "51150", + "codeCommune": "51656", + "libelleAcheminement": "VRAUX", + "nomCommune": "VRAUX" }, { - "codePostal": "30150", - "codeCommune": "30178", - "libelleAcheminement": "MONTFAUCON", - "nomCommune": "MONTFAUCON" + "codePostal": "51500", + "codeCommune": "51471", + "libelleAcheminement": "SACY", + "nomCommune": "SACY" }, { - "codePostal": "42540", - "codeCommune": "42249", - "libelleAcheminement": "ST JUST LA PENDUE", - "nomCommune": "ST JUST LA PENDUE" + "codePostal": "37310", + "codeCommune": "37254", + "libelleAcheminement": "TAUXIGNY ST BAULD", + "nomCommune": "TAUXIGNY ST BAULD" }, { - "codePostal": "64150", - "codeCommune": "64410", - "libelleAcheminement": "MOURENX", - "nomCommune": "MOURENX" + "codePostal": "39130", + "codeCommune": "39107", + "libelleAcheminement": "CHARCIER", + "nomCommune": "CHARCIER" }, { - "codePostal": "14370", - "codeCommune": "14456", - "libelleAcheminement": "MOULT CHICHEBOVILLE", - "nomCommune": "MOULT CHICHEBOVILLE" + "codePostal": "51110", + "codeCommune": "51660", + "libelleAcheminement": "WARMERIVILLE", + "nomCommune": "WARMERIVILLE" }, { - "codePostal": "30190", - "codeCommune": "30180", - "libelleAcheminement": "MONTIGNARGUES", - "nomCommune": "MONTIGNARGUES" + "codePostal": "51310", + "codeCommune": "51473", + "libelleAcheminement": "ST BON", + "nomCommune": "ST BON" }, { - "codePostal": "42800", - "codeCommune": "42259", - "libelleAcheminement": "ST MARTIN LA PLAINE", - "nomCommune": "ST MARTIN LA PLAINE" + "codePostal": "37120", + "codeCommune": "37260", + "libelleAcheminement": "LA TOUR ST GELIN", + "nomCommune": "LA TOUR ST GELIN" }, { - "codePostal": "64130", - "codeCommune": "64411", - "libelleAcheminement": "MUSCULDY", - "nomCommune": "MUSCULDY" + "codePostal": "39230", + "codeCommune": "39110", + "libelleAcheminement": "LA CHARME", + "nomCommune": "LA CHARME" }, { - "codePostal": "14620", - "codeCommune": "14457", - "libelleAcheminement": "LES MOUTIERS EN AUGE", - "nomCommune": "LES MOUTIERS EN AUGE" + "codePostal": "51530", + "codeCommune": "51663", + "libelleAcheminement": "MAGENTA", + "nomCommune": "MAGENTA" }, { - "codePostal": "30260", - "codeCommune": "30181", - "libelleAcheminement": "MONTMIRAT", - "nomCommune": "MONTMIRAT" + "codePostal": "51240", + "codeCommune": "51482", + "libelleAcheminement": "ST GERMAIN LA VILLE", + "nomCommune": "ST GERMAIN LA VILLE" }, { - "codePostal": "42260", - "codeCommune": "42260", - "libelleAcheminement": "ST MARTIN LA SAUVETE", - "nomCommune": "ST MARTIN LA SAUVETE" + "codePostal": "37200", + "codeCommune": "37261", + "libelleAcheminement": "TOURS", + "nomCommune": "TOURS" }, { - "codePostal": "64190", - "codeCommune": "64416", - "libelleAcheminement": "NAVARRENX", - "nomCommune": "NAVARRENX" + "codePostal": "39600", + "codeCommune": "39116", + "libelleAcheminement": "LA CHATELAINE", + "nomCommune": "LA CHATELAINE" }, { - "codePostal": "14340", - "codeCommune": "14474", - "libelleAcheminement": "NOTRE DAME D ESTREES CORBON", - "nomCommune": "NOTRE DAME D ESTREES CORBON" + "codePostal": "52400", + "codeCommune": "52002", + "libelleAcheminement": "AIGREMONT", + "nomCommune": "AIGREMONT" }, { - "codePostal": "30000", - "codeCommune": "30189", - "libelleAcheminement": "NIMES", - "nomCommune": "NIMES" + "codePostal": "51490", + "codeCommune": "51487", + "libelleAcheminement": "ST HILAIRE LE PETIT", + "nomCommune": "ST HILAIRE LE PETIT" }, { - "codePostal": "42380", - "codeCommune": "42266", - "libelleAcheminement": "ST NIZIER DE FORNAS", - "nomCommune": "ST NIZIER DE FORNAS" + "codePostal": "37210", + "codeCommune": "37270", + "libelleAcheminement": "VERNOU SUR BRENNE", + "nomCommune": "VERNOU SUR BRENNE" }, { - "codePostal": "64400", - "codeCommune": "64422", - "libelleAcheminement": "OLORON STE MARIE", - "nomCommune": "OLORON STE MARIE" + "codePostal": "39300", + "codeCommune": "39120", + "libelleAcheminement": "CHATELNEUF", + "nomCommune": "CHATELNEUF" }, { - "codePostal": "14310", - "codeCommune": "14475", - "libelleAcheminement": "VAL D ARRY", - "nomCommune": "VAL D ARRY" + "codePostal": "52360", + "codeCommune": "52009", + "libelleAcheminement": "ANDILLY EN BASSIGNY", + "nomCommune": "ANDILLY EN BASSIGNY" }, { - "codePostal": "30530", - "codeCommune": "30203", - "libelleAcheminement": "PORTES", - "nomCommune": "PORTES" + "codePostal": "51600", + "codeCommune": "51491", + "libelleAcheminement": "ST JEAN SUR TOURBE", + "nomCommune": "ST JEAN SUR TOURBE" }, { - "codePostal": "42190", - "codeCommune": "42267", - "libelleAcheminement": "ST NIZIER SOUS CHARLIEU", - "nomCommune": "ST NIZIER SOUS CHARLIEU" + "codePostal": "37190", + "codeCommune": "37271", + "libelleAcheminement": "VILLAINES LES ROCHERS", + "nomCommune": "VILLAINES LES ROCHERS" }, { - "codePostal": "64130", - "codeCommune": "64424", - "libelleAcheminement": "ORDIARP", - "nomCommune": "ORDIARP" + "codePostal": "39120", + "codeCommune": "39128", + "libelleAcheminement": "CHAUSSIN", + "nomCommune": "CHAUSSIN" }, { - "codePostal": "14270", - "codeCommune": "14482", - "libelleAcheminement": "OUEZY", - "nomCommune": "OUEZY" + "codePostal": "52230", + "codeCommune": "52012", + "libelleAcheminement": "ANNONVILLE", + "nomCommune": "ANNONVILLE" }, { - "codePostal": "30120", - "codeCommune": "30219", - "libelleAcheminement": "ROGUES", - "nomCommune": "ROGUES" + "codePostal": "51340", + "codeCommune": "51497", + "libelleAcheminement": "ST LUMIER LA POPULEUSE", + "nomCommune": "ST LUMIER LA POPULEUSE" }, { - "codePostal": "42270", - "codeCommune": "42275", - "libelleAcheminement": "ST PRIEST EN JAREZ", - "nomCommune": "ST PRIEST EN JAREZ" + "codePostal": "37210", + "codeCommune": "37281", + "libelleAcheminement": "VOUVRAY", + "nomCommune": "VOUVRAY" }, { - "codePostal": "64190", - "codeCommune": "64434", - "libelleAcheminement": "OSSENX", - "nomCommune": "OSSENX" + "codePostal": "39150", + "codeCommune": "39131", + "libelleAcheminement": "CHAUX DU DOMBIEF", + "nomCommune": "LA CHAUX DU DOMBIEF" }, { - "codePostal": "14190", - "codeCommune": "14486", - "libelleAcheminement": "OUILLY LE TESSON", - "nomCommune": "OUILLY LE TESSON" + "codePostal": "52500", + "codeCommune": "52015", + "libelleAcheminement": "ARBIGNY SOUS VARENNES", + "nomCommune": "ARBIGNY SOUS VARENNES" }, { - "codePostal": "30200", - "codeCommune": "30225", - "libelleAcheminement": "SABRAN", - "nomCommune": "SABRAN" + "codePostal": "51800", + "codeCommune": "51498", + "libelleAcheminement": "ST MARD SUR AUVE", + "nomCommune": "ST MARD SUR AUVE" }, { - "codePostal": "42800", - "codeCommune": "42283", - "libelleAcheminement": "ST ROMAIN EN JAREZ", - "nomCommune": "ST ROMAIN EN JAREZ" + "codePostal": "38190", + "codeCommune": "38002", + "libelleAcheminement": "LES ADRETS", + "nomCommune": "LES ADRETS" }, { - "codePostal": "64300", - "codeCommune": "64440", - "libelleAcheminement": "OZENX MONTESTRUCQ", - "nomCommune": "OZENX MONTESTRUCQ" + "codePostal": "39230", + "codeCommune": "39132", + "libelleAcheminement": "LA CHAUX EN BRESSE", + "nomCommune": "LA CHAUX EN BRESSE" }, { - "codePostal": "14160", - "codeCommune": "14494", - "libelleAcheminement": "PERIERS EN AUGE", - "nomCommune": "PERIERS EN AUGE" + "codePostal": "52160", + "codeCommune": "52016", + "libelleAcheminement": "ARBOT", + "nomCommune": "ARBOT" }, { - "codePostal": "30570", - "codeCommune": "30229", - "libelleAcheminement": "ST ANDRE DE MAJENCOULES", - "nomCommune": "ST ANDRE DE MAJENCOULES" + "codePostal": "51330", + "codeCommune": "51500", + "libelleAcheminement": "ST MARD SUR LE MONT", + "nomCommune": "ST MARD SUR LE MONT" }, { - "codePostal": "42600", - "codeCommune": "42290", - "libelleAcheminement": "ST THOMAS LA GARDE", - "nomCommune": "ST THOMAS LA GARDE" + "codePostal": "38190", + "codeCommune": "38002", + "libelleAcheminement": "LES ADRETS", + "nomCommune": "LES ADRETS" }, { - "codePostal": "64360", - "codeCommune": "64442", - "libelleAcheminement": "PARBAYSE", - "nomCommune": "PARBAYSE" + "codePostal": "39270", + "codeCommune": "39134", + "libelleAcheminement": "CHAVERIA", + "nomCommune": "CHAVERIA" }, { - "codePostal": "14170", - "codeCommune": "14497", - "libelleAcheminement": "PERRIERES", - "nomCommune": "PERRIERES" + "codePostal": "52130", + "codeCommune": "52021", + "libelleAcheminement": "ATTANCOURT", + "nomCommune": "ATTANCOURT" }, { - "codePostal": "30260", - "codeCommune": "30244", - "libelleAcheminement": "ST CLEMENT", - "nomCommune": "ST CLEMENT" + "codePostal": "51490", + "codeCommune": "51503", + "libelleAcheminement": "ST MARTIN L HEUREUX", + "nomCommune": "ST MARTIN L HEUREUX" }, { - "codePostal": "42120", - "codeCommune": "42294", - "libelleAcheminement": "ST VINCENT DE BOISSET", - "nomCommune": "ST VINCENT DE BOISSET" + "codePostal": "38470", + "codeCommune": "38004", + "libelleAcheminement": "L ALBENC", + "nomCommune": "L ALBENC" }, { - "codePostal": "64800", - "codeCommune": "64444", - "libelleAcheminement": "PARDIES PIETAT", - "nomCommune": "PARDIES PIETAT" + "codePostal": "39230", + "codeCommune": "39140", + "libelleAcheminement": "CHENE SEC", + "nomCommune": "CHENE SEC" }, { - "codePostal": "14700", - "codeCommune": "14498", - "libelleAcheminement": "PERTHEVILLE NERS", - "nomCommune": "PERTHEVILLE NERS" + "codePostal": "52120", + "codeCommune": "52031", + "libelleAcheminement": "AUTREVILLE SUR LA RENNE", + "nomCommune": "AUTREVILLE SUR LA RENNE" }, { - "codePostal": "30190", - "codeCommune": "30248", - "libelleAcheminement": "ST DEZERY", - "nomCommune": "ST DEZERY" + "codePostal": "51800", + "codeCommune": "51507", + "libelleAcheminement": "STE MENEHOULD", + "nomCommune": "STE MENEHOULD" }, { - "codePostal": "42550", - "codeCommune": "42318", - "libelleAcheminement": "USSON EN FOREZ", - "nomCommune": "USSON EN FOREZ" + "codePostal": "38280", + "codeCommune": "38011", + "libelleAcheminement": "ANTHON", + "nomCommune": "ANTHON" }, { - "codePostal": "64000", - "codeCommune": "64445", - "libelleAcheminement": "PAU", - "nomCommune": "PAU" + "codePostal": "39100", + "codeCommune": "39150", + "libelleAcheminement": "CHOISEY", + "nomCommune": "CHOISEY" }, { - "codePostal": "14690", - "codeCommune": "14510", - "libelleAcheminement": "LA POMMERAYE", - "nomCommune": "LA POMMERAYE" + "codePostal": "52360", + "codeCommune": "52037", + "libelleAcheminement": "BANNES", + "nomCommune": "BANNES" }, { - "codePostal": "30140", - "codeCommune": "30252", - "libelleAcheminement": "ST FELIX DE PALLIERES", - "nomCommune": "ST FELIX DE PALLIERES" + "codePostal": "51240", + "codeCommune": "51512", + "libelleAcheminement": "ST QUENTIN SUR COOLE", + "nomCommune": "ST QUENTIN SUR COOLE" }, { - "codePostal": "42140", - "codeCommune": "42336", - "libelleAcheminement": "VIRIGNEUX", - "nomCommune": "VIRIGNEUX" + "codePostal": "38490", + "codeCommune": "38012", + "libelleAcheminement": "AOSTE", + "nomCommune": "AOSTE" }, { - "codePostal": "64530", - "codeCommune": "64453", - "libelleAcheminement": "PONTACQ", - "nomCommune": "PONTACQ" + "codePostal": "39130", + "codeCommune": "39154", + "libelleAcheminement": "CLAIRVAUX LES LACS", + "nomCommune": "CLAIRVAUX LES LACS" }, { - "codePostal": "14130", - "codeCommune": "14514", - "libelleAcheminement": "PONT L EVEQUE", - "nomCommune": "PONT L EVEQUE" + "codePostal": "52240", + "codeCommune": "52038", + "libelleAcheminement": "BASSONCOURT", + "nomCommune": "BASSONCOURT" }, { - "codePostal": "30960", - "codeCommune": "30253", - "libelleAcheminement": "ST FLORENT SUR AUZONNET", - "nomCommune": "ST FLORENT SUR AUZONNET" + "codePostal": "51800", + "codeCommune": "51519", + "libelleAcheminement": "ST THOMAS EN ARGONNE", + "nomCommune": "ST THOMAS EN ARGONNE" }, { - "codePostal": "43380", - "codeCommune": "43006", - "libelleAcheminement": "ALLY", - "nomCommune": "ALLY" + "codePostal": "38680", + "codeCommune": "38018", + "libelleAcheminement": "AUBERIVES EN ROYANS", + "nomCommune": "AUBERIVES EN ROYANS" }, { - "codePostal": "64410", - "codeCommune": "64457", - "libelleAcheminement": "POURSIUGUES BOUCOUE", - "nomCommune": "POURSIUGUES BOUCOUE" + "codePostal": "39130", + "codeCommune": "39156", + "libelleAcheminement": "COGNA", + "nomCommune": "COGNA" }, { - "codePostal": "14210", - "codeCommune": "14519", - "libelleAcheminement": "PREAUX BOCAGE", - "nomCommune": "PREAUX BOCAGE" + "codePostal": "52270", + "codeCommune": "52044", + "libelleAcheminement": "ROCHES BETTAINCOURT", + "nomCommune": "ROCHES BETTAINCOURT" }, { - "codePostal": "30200", - "codeCommune": "30256", - "libelleAcheminement": "ST GERVAIS", - "nomCommune": "ST GERVAIS" + "codePostal": "51340", + "codeCommune": "51521", + "libelleAcheminement": "ST VRAIN", + "nomCommune": "ST VRAIN" }, { - "codePostal": "43200", - "codeCommune": "43007", - "libelleAcheminement": "ARAULES", - "nomCommune": "ARAULES" + "codePostal": "38630", + "codeCommune": "38022", + "libelleAcheminement": "LES AVENIERES VEYRINS THUELLIN", + "nomCommune": "LES AVENIERES VEYRINS THUELLIN" }, { - "codePostal": "64190", - "codeCommune": "64459", - "libelleAcheminement": "PRECHACQ NAVARRENX", - "nomCommune": "PRECHACQ NAVARRENX" + "codePostal": "39800", + "codeCommune": "39159", + "libelleAcheminement": "COLONNE", + "nomCommune": "COLONNE" }, { - "codePostal": "14690", - "codeCommune": "14531", - "libelleAcheminement": "RAPILLY", - "nomCommune": "RAPILLY" + "codePostal": "52300", + "codeCommune": "52055", + "libelleAcheminement": "BLECOURT", + "nomCommune": "BLECOURT" }, { - "codePostal": "30700", - "codeCommune": "30262", - "libelleAcheminement": "ST HIPPOLYTE DE MONTAIGU", - "nomCommune": "ST HIPPOLYTE DE MONTAIGU" + "codePostal": "51120", + "codeCommune": "51526", + "libelleAcheminement": "SAUDOY", + "nomCommune": "SAUDOY" }, { - "codePostal": "43380", - "codeCommune": "43011", - "libelleAcheminement": "AUBAZAT", - "nomCommune": "AUBAZAT" + "codePostal": "38630", + "codeCommune": "38022", + "libelleAcheminement": "LES AVENIERES VEYRINS THUELLIN", + "nomCommune": "LES AVENIERES VEYRINS THUELLIN" }, { - "codePostal": "64270", - "codeCommune": "64462", - "libelleAcheminement": "RAMOUS", - "nomCommune": "RAMOUS" + "codePostal": "39300", + "codeCommune": "39165", + "libelleAcheminement": "CONTE", + "nomCommune": "CONTE" }, { - "codePostal": "14600", - "codeCommune": "14536", - "libelleAcheminement": "LA RIVIERE ST SAUVEUR", - "nomCommune": "LA RIVIERE ST SAUVEUR" + "codePostal": "52310", + "codeCommune": "52058", + "libelleAcheminement": "BOLOGNE", + "nomCommune": "BOLOGNE" }, { - "codePostal": "30270", - "codeCommune": "30269", - "libelleAcheminement": "ST JEAN DU GARD", - "nomCommune": "ST JEAN DU GARD" + "codePostal": "51340", + "codeCommune": "51528", + "libelleAcheminement": "SCRUPT", + "nomCommune": "SCRUPT" }, { - "codePostal": "43340", - "codeCommune": "43019", - "libelleAcheminement": "BARGES", - "nomCommune": "BARGES" + "codePostal": "38160", + "codeCommune": "38036", + "libelleAcheminement": "BEAUVOIR EN ROYANS", + "nomCommune": "BEAUVOIR EN ROYANS" }, { - "codePostal": "64190", - "codeCommune": "64466", - "libelleAcheminement": "RIVEHAUTE", - "nomCommune": "RIVEHAUTE" + "codePostal": "39300", + "codeCommune": "39183", + "libelleAcheminement": "CROTENAY", + "nomCommune": "CROTENAY" }, { - "codePostal": "14340", - "codeCommune": "14541", - "libelleAcheminement": "LA ROQUE BAIGNARD", - "nomCommune": "LA ROQUE BAIGNARD" + "codePostal": "52310", + "codeCommune": "52058", + "libelleAcheminement": "BOLOGNE", + "nomCommune": "BOLOGNE" }, { - "codePostal": "30500", - "codeCommune": "30271", - "libelleAcheminement": "ST JULIEN DE CASSAGNAS", - "nomCommune": "ST JULIEN DE CASSAGNAS" + "codePostal": "51520", + "codeCommune": "51538", + "libelleAcheminement": "SOGNY AUX MOULINS", + "nomCommune": "SOGNY AUX MOULINS" }, { - "codePostal": "43800", - "codeCommune": "43021", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "38142", + "codeCommune": "38040", + "libelleAcheminement": "BESSE", + "nomCommune": "BESSE" }, { - "codePostal": "64160", - "codeCommune": "64472", - "libelleAcheminement": "ST CASTIN", - "nomCommune": "ST CASTIN" + "codePostal": "39260", + "codeCommune": "39184", + "libelleAcheminement": "LES CROZETS", + "nomCommune": "LES CROZETS" }, { - "codePostal": "14980", - "codeCommune": "14543", - "libelleAcheminement": "ROTS", - "nomCommune": "ROTS" + "codePostal": "52360", + "codeCommune": "52059", + "libelleAcheminement": "BONNECOURT", + "nomCommune": "BONNECOURT" }, { - "codePostal": "30760", - "codeCommune": "30273", - "libelleAcheminement": "ST JULIEN DE PEYROLAS", - "nomCommune": "ST JULIEN DE PEYROLAS" + "codePostal": "51340", + "codeCommune": "51539", + "libelleAcheminement": "SOGNY EN L ANGLE", + "nomCommune": "SOGNY EN L ANGLE" }, { - "codePostal": "43500", - "codeCommune": "43023", - "libelleAcheminement": "BEAUNE SUR ARZON", - "nomCommune": "BEAUNE SUR ARZON" + "codePostal": "38690", + "codeCommune": "38042", + "libelleAcheminement": "BEVENAIS", + "nomCommune": "BEVENAIS" }, { - "codePostal": "64640", - "codeCommune": "64476", - "libelleAcheminement": "ST ESTEBEN", - "nomCommune": "ST ESTEBEN" + "codePostal": "39250", + "codeCommune": "39187", + "libelleAcheminement": "CUVIER", + "nomCommune": "CUVIER" }, { - "codePostal": "14540", - "codeCommune": "14554", - "libelleAcheminement": "LE CASTELET", - "nomCommune": "LE CASTELET" + "codePostal": "52400", + "codeCommune": "52060", + "libelleAcheminement": "BOURBONNE LES BAINS", + "nomCommune": "BOURBONNE LES BAINS" }, { - "codePostal": "30130", - "codeCommune": "30290", - "libelleAcheminement": "ST PAULET DE CAISSON", - "nomCommune": "ST PAULET DE CAISSON" + "codePostal": "51320", + "codeCommune": "51545", + "libelleAcheminement": "SOMMESOUS", + "nomCommune": "SOMMESOUS" }, { - "codePostal": "43200", - "codeCommune": "43028", - "libelleAcheminement": "BESSAMOREL", - "nomCommune": "BESSAMOREL" + "codePostal": "38300", + "codeCommune": "38053", + "libelleAcheminement": "BOURGOIN JALLIEU", + "nomCommune": "BOURGOIN JALLIEU" }, { - "codePostal": "64430", - "codeCommune": "64477", - "libelleAcheminement": "ST ETIENNE DE BAIGORRY", - "nomCommune": "ST ETIENNE DE BAIGORRY" + "codePostal": "39700", + "codeCommune": "39190", + "libelleAcheminement": "DAMPIERRE", + "nomCommune": "DAMPIERRE" }, { - "codePostal": "14290", - "codeCommune": "14570", - "libelleAcheminement": "VALORBIQUET", - "nomCommune": "VALORBIQUET" + "codePostal": "52700", + "codeCommune": "52061", + "libelleAcheminement": "BOURDONS SUR ROGNON", + "nomCommune": "BOURDONS SUR ROGNON" }, { - "codePostal": "30480", - "codeCommune": "30291", - "libelleAcheminement": "ST PAUL LA COSTE", - "nomCommune": "ST PAUL LA COSTE" + "codePostal": "51330", + "codeCommune": "51549", + "libelleAcheminement": "SOMME YEVRE", + "nomCommune": "SOMME YEVRE" }, { - "codePostal": "43380", - "codeCommune": "43031", - "libelleAcheminement": "BLASSAC", - "nomCommune": "BLASSAC" + "codePostal": "38800", + "codeCommune": "38068", + "libelleAcheminement": "CHAMPAGNIER", + "nomCommune": "CHAMPAGNIER" }, { - "codePostal": "64110", - "codeCommune": "64478", - "libelleAcheminement": "ST FAUST", - "nomCommune": "ST FAUST" + "codePostal": "39100", + "codeCommune": "39198", + "libelleAcheminement": "DOLE", + "nomCommune": "DOLE" }, { - "codePostal": "14100", - "codeCommune": "14571", - "libelleAcheminement": "ST DENIS DE MAILLOC", - "nomCommune": "ST DENIS DE MAILLOC" + "codePostal": "52150", + "codeCommune": "52064", + "libelleAcheminement": "BOURMONT ENTRE MEUSE ET MOUZON", + "nomCommune": "BOURMONT ENTRE MEUSE ET MOUZON" }, { - "codePostal": "30340", - "codeCommune": "30294", - "libelleAcheminement": "ST PRIVAT DES VIEUX", - "nomCommune": "ST PRIVAT DES VIEUX" + "codePostal": "51320", + "codeCommune": "51550", + "libelleAcheminement": "SOMPUIS", + "nomCommune": "SOMPUIS" }, { - "codePostal": "43510", - "codeCommune": "43037", - "libelleAcheminement": "LE BOUCHET ST NICOLAS", - "nomCommune": "LE BOUCHET ST NICOLAS" + "codePostal": "38530", + "codeCommune": "38075", + "libelleAcheminement": "CHAPAREILLAN", + "nomCommune": "CHAPAREILLAN" }, { - "codePostal": "64390", - "codeCommune": "64480", - "libelleAcheminement": "ST GLADIE ARRIVE MUNEIN", - "nomCommune": "ST GLADIE ARRIVE MUNEIN" + "codePostal": "39110", + "codeCommune": "39202", + "libelleAcheminement": "DOURNON", + "nomCommune": "DOURNON" }, { - "codePostal": "14100", - "codeCommune": "14574", - "libelleAcheminement": "ST DESIR", - "nomCommune": "ST DESIR" + "codePostal": "52110", + "codeCommune": "52066", + "libelleAcheminement": "BRACHAY", + "nomCommune": "BRACHAY" }, { - "codePostal": "30750", - "codeCommune": "30297", - "libelleAcheminement": "ST SAUVEUR CAMPRIEU", - "nomCommune": "ST SAUVEUR CAMPRIEU" + "codePostal": "51600", + "codeCommune": "51559", + "libelleAcheminement": "SUIPPES", + "nomCommune": "SUIPPES" }, { - "codePostal": "43380", - "codeCommune": "43044", - "libelleAcheminement": "CERZAT", - "nomCommune": "CERZAT" + "codePostal": "38490", + "codeCommune": "38080", + "libelleAcheminement": "CHARANCIEU", + "nomCommune": "CHARANCIEU" }, { - "codePostal": "64330", - "codeCommune": "64486", - "libelleAcheminement": "ST JEAN POUDGE", - "nomCommune": "ST JEAN POUDGE" + "codePostal": "39150", + "codeCommune": "39208", + "libelleAcheminement": "ENTRE DEUX MONTS", + "nomCommune": "ENTRE DEUX MONTS" }, { - "codePostal": "14140", - "codeCommune": "14576", - "libelleAcheminement": "VAL DE VIE", - "nomCommune": "VAL DE VIE" + "codePostal": "52120", + "codeCommune": "52069", + "libelleAcheminement": "BRAUX LE CHATEL", + "nomCommune": "BRAUX LE CHATEL" }, { - "codePostal": "30260", - "codeCommune": "30300", - "libelleAcheminement": "ST THEODORIT", - "nomCommune": "ST THEODORIT" + "codePostal": "51500", + "codeCommune": "51562", + "libelleAcheminement": "TAISSY", + "nomCommune": "TAISSY" }, { - "codePostal": "43000", - "codeCommune": "43045", - "libelleAcheminement": "CEYSSAC", - "nomCommune": "CEYSSAC" + "codePostal": "38390", + "codeCommune": "38083", + "libelleAcheminement": "CHARETTE", + "nomCommune": "CHARETTE" }, { - "codePostal": "64160", - "codeCommune": "64488", - "libelleAcheminement": "ST LAURENT BRETAGNE", - "nomCommune": "ST LAURENT BRETAGNE" + "codePostal": "39160", + "codeCommune": "39209", + "libelleAcheminement": "VAL D EPY", + "nomCommune": "VAL D EPY" }, { - "codePostal": "14130", - "codeCommune": "14578", - "libelleAcheminement": "ST GATIEN DES BOIS", - "nomCommune": "ST GATIEN DES BOIS" + "codePostal": "52000", + "codeCommune": "52072", + "libelleAcheminement": "BRETHENAY", + "nomCommune": "BRETHENAY" }, { - "codePostal": "30700", - "codeCommune": "30301", - "libelleAcheminement": "ST VICTOR DES OULES", - "nomCommune": "ST VICTOR DES OULES" + "codePostal": "51150", + "codeCommune": "51564", + "libelleAcheminement": "VAL DE LIVRE", + "nomCommune": "VAL DE LIVRE" }, { - "codePostal": "43800", - "codeCommune": "43049", - "libelleAcheminement": "CHAMALIERES SUR LOIRE", - "nomCommune": "CHAMALIERES SUR LOIRE" + "codePostal": "38230", + "codeCommune": "38097", + "libelleAcheminement": "CHAVANOZ", + "nomCommune": "CHAVANOZ" }, { - "codePostal": "64640", - "codeCommune": "64489", - "libelleAcheminement": "ST MARTIN D ARBEROUE", - "nomCommune": "ST MARTIN D ARBEROUE" + "codePostal": "39160", + "codeCommune": "39209", + "libelleAcheminement": "VAL D EPY", + "nomCommune": "VAL D EPY" }, { - "codePostal": "14190", - "codeCommune": "14589", - "libelleAcheminement": "ST GERMAIN LE VASSON", - "nomCommune": "ST GERMAIN LE VASSON" + "codePostal": "52500", + "codeCommune": "52083", + "libelleAcheminement": "CHAMPSEVRAINE", + "nomCommune": "CHAMPSEVRAINE" }, { - "codePostal": "30340", - "codeCommune": "30305", - "libelleAcheminement": "SALINDRES", - "nomCommune": "SALINDRES" + "codePostal": "51220", + "codeCommune": "51568", + "libelleAcheminement": "THIL", + "nomCommune": "THIL" }, { - "codePostal": "43400", - "codeCommune": "43051", - "libelleAcheminement": "LE CHAMBON SUR LIGNON", - "nomCommune": "LE CHAMBON SUR LIGNON" + "codePostal": "38730", + "codeCommune": "38098", + "libelleAcheminement": "CHELIEU", + "nomCommune": "CHELIEU" }, { - "codePostal": "64370", - "codeCommune": "64491", - "libelleAcheminement": "ST MEDARD", - "nomCommune": "ST MEDARD" + "codePostal": "39520", + "codeCommune": "39227", + "libelleAcheminement": "FONCINE LE BAS", + "nomCommune": "FONCINE LE BAS" }, { - "codePostal": "14130", - "codeCommune": "14593", - "libelleAcheminement": "ST HYMER", - "nomCommune": "ST HYMER" + "codePostal": "52500", + "codeCommune": "52083", + "libelleAcheminement": "CHAMPSEVRAINE", + "nomCommune": "CHAMPSEVRAINE" }, { - "codePostal": "30450", - "codeCommune": "30316", - "libelleAcheminement": "SENECHAS", - "nomCommune": "SENECHAS" + "codePostal": "51210", + "codeCommune": "51570", + "libelleAcheminement": "LE THOULT TROSNAY", + "nomCommune": "LE THOULT TROSNAY" }, { - "codePostal": "43120", - "codeCommune": "43058", - "libelleAcheminement": "LA CHAPELLE D AUREC", - "nomCommune": "LA CHAPELLE D AUREC" + "codePostal": "38121", + "codeCommune": "38107", + "libelleAcheminement": "CHONAS L AMBALLAN", + "nomCommune": "CHONAS L AMBALLAN" }, { - "codePostal": "64220", - "codeCommune": "64492", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "39130", + "codeCommune": "39239", + "libelleAcheminement": "LA FRASNEE", + "nomCommune": "LA FRASNEE" }, { - "codePostal": "14430", - "codeCommune": "14598", - "libelleAcheminement": "ST JOUIN", - "nomCommune": "ST JOUIN" + "codePostal": "52000", + "codeCommune": "52087", + "libelleAcheminement": "BUXIERES LES VILLIERS", + "nomCommune": "BUXIERES LES VILLIERS" }, { - "codePostal": "30340", - "codeCommune": "30318", - "libelleAcheminement": "SERVAS", - "nomCommune": "SERVAS" + "codePostal": "51360", + "codeCommune": "51571", + "libelleAcheminement": "VAL DE VESLE", + "nomCommune": "VAL DE VESLE" }, { - "codePostal": "43160", - "codeCommune": "43059", - "libelleAcheminement": "LA CHAPELLE GENESTE", - "nomCommune": "LA CHAPELLE GENESTE" + "codePostal": "38680", + "codeCommune": "38108", + "libelleAcheminement": "CHORANCHE", + "nomCommune": "CHORANCHE" }, { - "codePostal": "64990", - "codeCommune": "64496", - "libelleAcheminement": "ST PIERRE D IRUBE", - "nomCommune": "ST PIERRE D IRUBE" + "codePostal": "39570", + "codeCommune": "39241", + "libelleAcheminement": "FREBUANS", + "nomCommune": "FREBUANS" }, { - "codePostal": "14430", - "codeCommune": "14606", - "libelleAcheminement": "ST LEGER DUBOSQ", - "nomCommune": "ST LEGER DUBOSQ" + "codePostal": "52220", + "codeCommune": "52088", + "libelleAcheminement": "CEFFONDS", + "nomCommune": "CEFFONDS" }, - { - "codePostal": "30110", - "codeCommune": "30323", - "libelleAcheminement": "SOUSTELLE", - "nomCommune": "SOUSTELLE" + { + "codePostal": "51150", + "codeCommune": "51576", + "libelleAcheminement": "TOURS SUR MARNE", + "nomCommune": "TOURS SUR MARNE" }, { - "codePostal": "43300", - "codeCommune": "43060", - "libelleAcheminement": "CHARRAIX", - "nomCommune": "CHARRAIX" + "codePostal": "38200", + "codeCommune": "38110", + "libelleAcheminement": "CHUZELLES", + "nomCommune": "CHUZELLES" }, { - "codePostal": "64300", - "codeCommune": "64510", - "libelleAcheminement": "SAULT DE NAVAILLES", - "nomCommune": "SAULT DE NAVAILLES" + "codePostal": "39350", + "codeCommune": "39246", + "libelleAcheminement": "GENDREY", + "nomCommune": "GENDREY" }, { - "codePostal": "14290", - "codeCommune": "14621", - "libelleAcheminement": "ST MARTIN BIENFAITE CRESSONNIERE", - "nomCommune": "ST MARTIN DE BIENFAITE LA CRESSONNIERE" + "codePostal": "52360", + "codeCommune": "52089", + "libelleAcheminement": "CELLES EN BASSIGNY", + "nomCommune": "CELLES EN BASSIGNY" }, { - "codePostal": "30126", - "codeCommune": "30326", - "libelleAcheminement": "TAVEL", - "nomCommune": "TAVEL" + "codePostal": "51170", + "codeCommune": "51577", + "libelleAcheminement": "TRAMERY", + "nomCommune": "TRAMERY" }, { - "codePostal": "43230", - "codeCommune": "43072", - "libelleAcheminement": "LA CHOMETTE", - "nomCommune": "LA CHOMETTE" + "codePostal": "38650", + "codeCommune": "38115", + "libelleAcheminement": "ST MARTIN DE LA CLUZE", + "nomCommune": "ST MARTIN DE LA CLUZE" }, { - "codePostal": "64150", - "codeCommune": "64512", - "libelleAcheminement": "SAUVELADE", - "nomCommune": "SAUVELADE" + "codePostal": "39240", + "codeCommune": "39247", + "libelleAcheminement": "GENOD", + "nomCommune": "GENOD" }, { - "codePostal": "14100", - "codeCommune": "14625", - "libelleAcheminement": "ST MARTIN DE LA LIEUE", - "nomCommune": "ST MARTIN DE LA LIEUE" + "codePostal": "52160", + "codeCommune": "52092", + "libelleAcheminement": "CHALANCEY", + "nomCommune": "CHALANCEY" }, { - "codePostal": "30140", - "codeCommune": "30329", - "libelleAcheminement": "THOIRAS", - "nomCommune": "THOIRAS" + "codePostal": "51340", + "codeCommune": "51583", + "libelleAcheminement": "TROIS FONTAINES L ABBAYE", + "nomCommune": "TROIS FONTAINES L ABBAYE" }, { - "codePostal": "43230", - "codeCommune": "43079", - "libelleAcheminement": "COUTEUGES", - "nomCommune": "COUTEUGES" + "codePostal": "38350", + "codeCommune": "38116", + "libelleAcheminement": "COGNET", + "nomCommune": "COGNET" }, { - "codePostal": "64410", - "codeCommune": "64514", - "libelleAcheminement": "SEBY", - "nomCommune": "SEBY" + "codePostal": "39100", + "codeCommune": "39252", + "libelleAcheminement": "GEVRY", + "nomCommune": "GEVRY" }, { - "codePostal": "14100", - "codeCommune": "14626", - "libelleAcheminement": "ST MARTIN DE MAILLOC", - "nomCommune": "ST MARTIN DE MAILLOC" + "codePostal": "52160", + "codeCommune": "52094", + "libelleAcheminement": "VALS DES TILLES", + "nomCommune": "VALS DES TILLES" }, { - "codePostal": "30700", - "codeCommune": "30334", - "libelleAcheminement": "UZES", - "nomCommune": "UZES" + "codePostal": "51500", + "codeCommune": "51584", + "libelleAcheminement": "TROIS PUITS", + "nomCommune": "TROIS PUITS" }, { - "codePostal": "43580", - "codeCommune": "43090", - "libelleAcheminement": "ESPLANTAS VAZEILLES", - "nomCommune": "ESPLANTAS VAZEILLES" + "codePostal": "38260", + "codeCommune": "38130", + "libelleAcheminement": "LA COTE ST ANDRE", + "nomCommune": "LA COTE ST ANDRE" }, { - "codePostal": "64260", - "codeCommune": "64522", - "libelleAcheminement": "SEVIGNACQ MEYRACQ", - "nomCommune": "SEVIGNACQ MEYRACQ" + "codePostal": "39290", + "codeCommune": "39262", + "libelleAcheminement": "GREDISANS", + "nomCommune": "GREDISANS" }, { - "codePostal": "14700", - "codeCommune": "14627", - "libelleAcheminement": "ST MARTIN DE MIEUX", - "nomCommune": "ST MARTIN DE MIEUX" + "codePostal": "52160", + "codeCommune": "52094", + "libelleAcheminement": "VALS DES TILLES", + "nomCommune": "VALS DES TILLES" }, { - "codePostal": "30570", - "codeCommune": "30339", - "libelleAcheminement": "VAL D AIGOUAL", - "nomCommune": "VAL D AIGOUAL" + "codePostal": "51800", + "codeCommune": "51588", + "libelleAcheminement": "VALMY", + "nomCommune": "VALMY" }, { - "codePostal": "43430", - "codeCommune": "43092", - "libelleAcheminement": "FAY SUR LIGNON", - "nomCommune": "FAY SUR LIGNON" + "codePostal": "38138", + "codeCommune": "38131", + "libelleAcheminement": "LES COTES D AREY", + "nomCommune": "LES COTES D AREY" }, { - "codePostal": "64470", - "codeCommune": "64533", - "libelleAcheminement": "TARDETS SORHOLUS", - "nomCommune": "TARDETS SORHOLUS" + "codePostal": "39100", + "codeCommune": "39270", + "libelleAcheminement": "JOUHE", + "nomCommune": "JOUHE" }, { - "codePostal": "14670", - "codeCommune": "14637", - "libelleAcheminement": "ST OUEN DU MESNIL OGER", - "nomCommune": "ST OUEN DU MESNIL OGER" + "codePostal": "52160", + "codeCommune": "52094", + "libelleAcheminement": "VALS DES TILLES", + "nomCommune": "VALS DES TILLES" }, { - "codePostal": "30600", - "codeCommune": "30341", - "libelleAcheminement": "VAUVERT", - "nomCommune": "VAUVERT" + "codePostal": "51140", + "codeCommune": "51591", + "libelleAcheminement": "VANDEUIL", + "nomCommune": "VANDEUIL" }, { - "codePostal": "43160", - "codeCommune": "43093", - "libelleAcheminement": "FELINES", - "nomCommune": "FELINES" + "codePostal": "38210", + "codeCommune": "38137", + "libelleAcheminement": "CRAS", + "nomCommune": "CRAS" }, { - "codePostal": "64330", - "codeCommune": "64534", - "libelleAcheminement": "TARON SADIRAC VIELLENAVE", - "nomCommune": "TARON SADIRAC VIELLENAVE" + "codePostal": "39150", + "codeCommune": "39271", + "libelleAcheminement": "LAC DES ROUGES TRUITES", + "nomCommune": "LAC DES ROUGES TRUITES" }, { - "codePostal": "14100", - "codeCommune": "14648", - "libelleAcheminement": "ST PIERRE DES IFS", - "nomCommune": "ST PIERRE DES IFS" + "codePostal": "52160", + "codeCommune": "52094", + "libelleAcheminement": "VALS DES TILLES", + "nomCommune": "VALS DES TILLES" }, { - "codePostal": "31110", - "codeCommune": "31010", - "libelleAcheminement": "ANTIGNAC", - "nomCommune": "ANTIGNAC" + "codePostal": "51210", + "codeCommune": "51607", + "libelleAcheminement": "VERDON", + "nomCommune": "VERDON" }, { - "codePostal": "43300", - "codeCommune": "43094", - "libelleAcheminement": "FERRUSSAC", - "nomCommune": "FERRUSSAC" + "codePostal": "38110", + "codeCommune": "38148", + "libelleAcheminement": "DOLOMIEU", + "nomCommune": "DOLOMIEU" }, { - "codePostal": "64700", - "codeCommune": "64545", - "libelleAcheminement": "URRUGNE", - "nomCommune": "URRUGNE" + "codePostal": "39320", + "codeCommune": "39273", + "libelleAcheminement": "MONTLAINSIA", + "nomCommune": "MONTLAINSIA" }, { - "codePostal": "14450", - "codeCommune": "14652", - "libelleAcheminement": "ST PIERRE DU MONT", - "nomCommune": "ST PIERRE DU MONT" + "codePostal": "52160", + "codeCommune": "52094", + "libelleAcheminement": "VALS DES TILLES", + "nomCommune": "VALS DES TILLES" }, { - "codePostal": "31160", - "codeCommune": "31012", - "libelleAcheminement": "ARBON", - "nomCommune": "ARBON" + "codePostal": "51800", + "codeCommune": "51610", + "libelleAcheminement": "VERRIERES", + "nomCommune": "VERRIERES" }, { - "codePostal": "43150", - "codeCommune": "43098", - "libelleAcheminement": "FREYCENET LA TOUR", - "nomCommune": "FREYCENET LA TOUR" + "codePostal": "38380", + "codeCommune": "38155", + "libelleAcheminement": "ENTRE DEUX GUIERS", + "nomCommune": "ENTRE DEUX GUIERS" }, { - "codePostal": "65100", - "codeCommune": "65002", - "libelleAcheminement": "ADE", - "nomCommune": "ADE" + "codePostal": "39310", + "codeCommune": "39274", + "libelleAcheminement": "LAJOUX", + "nomCommune": "LAJOUX" }, { - "codePostal": "14140", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "52410", + "codeCommune": "52099", + "libelleAcheminement": "CHAMOUILLEY", + "nomCommune": "CHAMOUILLEY" }, { - "codePostal": "31360", - "codeCommune": "31018", - "libelleAcheminement": "ARNAUD GUILHEM", - "nomCommune": "ARNAUD GUILHEM" + "codePostal": "51130", + "codeCommune": "51611", + "libelleAcheminement": "VERT TOULON", + "nomCommune": "VERT TOULON" }, { - "codePostal": "43230", - "codeCommune": "43100", - "libelleAcheminement": "FRUGIERES LE PIN", - "nomCommune": "FRUGIERES LE PIN" + "codePostal": "38690", + "codeCommune": "38159", + "libelleAcheminement": "EYDOCHE", + "nomCommune": "EYDOCHE" }, { - "codePostal": "65400", - "codeCommune": "65004", - "libelleAcheminement": "AGOS VIDALOS", - "nomCommune": "AGOS VIDALOS" + "codePostal": "39310", + "codeCommune": "39275", + "libelleAcheminement": "LAMOURA", + "nomCommune": "LAMOURA" }, { - "codePostal": "14140", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "52100", + "codeCommune": "52104", + "libelleAcheminement": "CHANCENAY", + "nomCommune": "CHANCENAY" }, { - "codePostal": "31190", - "codeCommune": "31024", - "libelleAcheminement": "AURAGNE", - "nomCommune": "AURAGNE" + "codePostal": "51800", + "codeCommune": "51621", + "libelleAcheminement": "VIENNE LE CHATEAU", + "nomCommune": "VIENNE LE CHATEAU" }, { - "codePostal": "43150", - "codeCommune": "43101", - "libelleAcheminement": "GOUDET", - "nomCommune": "GOUDET" + "codePostal": "38110", + "codeCommune": "38162", + "libelleAcheminement": "FAVERGES DE LA TOUR", + "nomCommune": "FAVERGES DE LA TOUR" }, { - "codePostal": "65150", - "codeCommune": "65009", - "libelleAcheminement": "ANERES", - "nomCommune": "ANERES" + "codePostal": "39300", + "codeCommune": "39281", + "libelleAcheminement": "LE LATET", + "nomCommune": "LE LATET" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "52190", + "codeCommune": "52113", + "libelleAcheminement": "CHASSIGNY", + "nomCommune": "CHASSIGNY" }, { - "codePostal": "31260", - "codeCommune": "31030", - "libelleAcheminement": "AUSSEING", - "nomCommune": "AUSSEING" + "codePostal": "51310", + "codeCommune": "51625", + "libelleAcheminement": "VILLENEUVE LA LIONNE", + "nomCommune": "VILLENEUVE LA LIONNE" }, { - "codePostal": "43200", - "codeCommune": "43114", - "libelleAcheminement": "LAPTE", - "nomCommune": "LAPTE" + "codePostal": "38530", + "codeCommune": "38166", + "libelleAcheminement": "LA FLACHERE", + "nomCommune": "LA FLACHERE" }, { - "codePostal": "65140", - "codeCommune": "65013", - "libelleAcheminement": "ANSOST", - "nomCommune": "ANSOST" + "codePostal": "39240", + "codeCommune": "39290", + "libelleAcheminement": "VALZIN EN PETITE MONTAGNE", + "nomCommune": "VALZIN EN PETITE MONTAGNE" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "52120", + "codeCommune": "52114", + "libelleAcheminement": "CHATEAUVILLAIN", + "nomCommune": "CHATEAUVILLAIN" }, { - "codePostal": "31840", - "codeCommune": "31032", - "libelleAcheminement": "AUSSONNE", - "nomCommune": "AUSSONNE" + "codePostal": "51500", + "codeCommune": "51629", + "libelleAcheminement": "VILLERS ALLERAND", + "nomCommune": "VILLERS ALLERAND" }, { - "codePostal": "43440", - "codeCommune": "43116", - "libelleAcheminement": "LAVAL SUR DOULON", - "nomCommune": "LAVAL SUR DOULON" + "codePostal": "38080", + "codeCommune": "38172", + "libelleAcheminement": "FOUR", + "nomCommune": "FOUR" }, { - "codePostal": "65370", - "codeCommune": "65014", - "libelleAcheminement": "ANTICHAN", - "nomCommune": "ANTICHAN" + "codePostal": "39240", + "codeCommune": "39290", + "libelleAcheminement": "VALZIN EN PETITE MONTAGNE", + "nomCommune": "VALZIN EN PETITE MONTAGNE" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "52200", + "codeCommune": "52115", + "libelleAcheminement": "CHATENAY MACHERON", + "nomCommune": "CHATENAY MACHERON" }, { - "codePostal": "31360", - "codeCommune": "31034", - "libelleAcheminement": "AUZAS", - "nomCommune": "AUZAS" + "codePostal": "51500", + "codeCommune": "51631", + "libelleAcheminement": "VILLERS AUX NOEUDS", + "nomCommune": "VILLERS AUX NOEUDS" }, { - "codePostal": "43580", - "codeCommune": "43136", - "libelleAcheminement": "MONISTROL D ALLIER", - "nomCommune": "MONISTROL D ALLIER" + "codePostal": "38610", + "codeCommune": "38179", + "libelleAcheminement": "GIERES", + "nomCommune": "GIERES" }, { - "codePostal": "65220", - "codeCommune": "65015", - "libelleAcheminement": "ANTIN", - "nomCommune": "ANTIN" + "codePostal": "39110", + "codeCommune": "39315", + "libelleAcheminement": "MARNOZ", + "nomCommune": "MARNOZ" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "52170", + "codeCommune": "52123", + "libelleAcheminement": "CHEVILLON", + "nomCommune": "CHEVILLON" }, { - "codePostal": "31320", - "codeCommune": "31035", - "libelleAcheminement": "AUZEVILLE TOLOSANE", - "nomCommune": "AUZEVILLE TOLOSANE" + "codePostal": "51270", + "codeCommune": "51639", + "libelleAcheminement": "LA VILLE SOUS ORBAIS", + "nomCommune": "LA VILLE SOUS ORBAIS" }, { - "codePostal": "43120", - "codeCommune": "43137", - "libelleAcheminement": "MONISTROL SUR LOIRE", - "nomCommune": "MONISTROL SUR LOIRE" + "codePostal": "38570", + "codeCommune": "38181", + "libelleAcheminement": "GONCELIN", + "nomCommune": "GONCELIN" }, { - "codePostal": "65170", - "codeCommune": "65017", - "libelleAcheminement": "ARAGNOUET", - "nomCommune": "ARAGNOUET" + "codePostal": "39210", + "codeCommune": "39321", + "libelleAcheminement": "MENETRU LE VIGNOBLE", + "nomCommune": "MENETRU LE VIGNOBLE" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "52400", + "codeCommune": "52124", + "libelleAcheminement": "CHEZEAUX", + "nomCommune": "CHEZEAUX" }, { - "codePostal": "31510", - "codeCommune": "31041", - "libelleAcheminement": "BAGIRY", - "nomCommune": "BAGIRY" + "codePostal": "51330", + "codeCommune": "51658", + "libelleAcheminement": "VROIL", + "nomCommune": "VROIL" }, { - "codePostal": "43230", - "codeCommune": "43139", - "libelleAcheminement": "MONTCLARD", - "nomCommune": "MONTCLARD" + "codePostal": "38000", + "codeCommune": "38185", + "libelleAcheminement": "GRENOBLE", + "nomCommune": "GRENOBLE" }, { - "codePostal": "65100", - "codeCommune": "65020", - "libelleAcheminement": "ARCIZAC EZ ANGLES", - "nomCommune": "ARCIZAC EZ ANGLES" + "codePostal": "39290", + "codeCommune": "39323", + "libelleAcheminement": "MENOTEY", + "nomCommune": "MENOTEY" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "52240", + "codeCommune": "52127", + "libelleAcheminement": "CHOISEUL", + "nomCommune": "CHOISEUL" }, { - "codePostal": "31110", - "codeCommune": "31042", - "libelleAcheminement": "BAGNERES DE LUCHON", - "nomCommune": "BAGNERES DE LUCHON" + "codePostal": "52700", + "codeCommune": "52008", + "libelleAcheminement": "ANDELOT BLANCHEVILLE", + "nomCommune": "ANDELOT BLANCHEVILLE" }, { - "codePostal": "43290", - "codeCommune": "43141", - "libelleAcheminement": "MONTFAUCON EN VELAY", - "nomCommune": "MONTFAUCON EN VELAY" + "codePostal": "38220", + "codeCommune": "38212", + "libelleAcheminement": "LIVET ET GAVET", + "nomCommune": "LIVET ET GAVET" }, { - "codePostal": "65400", - "codeCommune": "65025", - "libelleAcheminement": "ARGELES GAZOST", - "nomCommune": "ARGELES GAZOST" + "codePostal": "39250", + "codeCommune": "39331", + "libelleAcheminement": "MIGNOVILLARD", + "nomCommune": "MIGNOVILLARD" }, { - "codePostal": "14121", - "codeCommune": "14665", - "libelleAcheminement": "SALLENELLES", - "nomCommune": "SALLENELLES" + "codePostal": "52600", + "codeCommune": "52134", + "libelleAcheminement": "COHONS", + "nomCommune": "COHONS" }, { - "codePostal": "31580", - "codeCommune": "31043", - "libelleAcheminement": "BALESTA", - "nomCommune": "BALESTA" + "codePostal": "52700", + "codeCommune": "52008", + "libelleAcheminement": "ANDELOT BLANCHEVILLE", + "nomCommune": "ANDELOT BLANCHEVILLE" }, { - "codePostal": "43300", - "codeCommune": "43151", - "libelleAcheminement": "PINOLS", - "nomCommune": "PINOLS" + "codePostal": "38220", + "codeCommune": "38212", + "libelleAcheminement": "LIVET ET GAVET", + "nomCommune": "LIVET ET GAVET" }, { - "codePostal": "65240", - "codeCommune": "65031", - "libelleAcheminement": "ARREAU", - "nomCommune": "ARREAU" + "codePostal": "39260", + "codeCommune": "39333", + "libelleAcheminement": "MOIRANS EN MONTAGNE", + "nomCommune": "MOIRANS EN MONTAGNE" }, { - "codePostal": "14940", - "codeCommune": "14666", - "libelleAcheminement": "SANNERVILLE", - "nomCommune": "SANNERVILLE" + "codePostal": "52160", + "codeCommune": "52137", + "libelleAcheminement": "COLMIER LE BAS", + "nomCommune": "COLMIER LE BAS" }, { - "codePostal": "31310", - "codeCommune": "31047", - "libelleAcheminement": "BAX", - "nomCommune": "BAX" + "codePostal": "52500", + "codeCommune": "52013", + "libelleAcheminement": "ANROSEY", + "nomCommune": "ANROSEY" }, { - "codePostal": "43260", - "codeCommune": "43158", - "libelleAcheminement": "QUEYRIERES", - "nomCommune": "QUEYRIERES" + "codePostal": "38260", + "codeCommune": "38218", + "libelleAcheminement": "MARCILLOLES", + "nomCommune": "MARCILLOLES" }, { - "codePostal": "65500", - "codeCommune": "65035", - "libelleAcheminement": "ARTAGNAN", - "nomCommune": "ARTAGNAN" + "codePostal": "39360", + "codeCommune": "39339", + "libelleAcheminement": "CHASSAL MOLINGES", + "nomCommune": "CHASSAL MOLINGES" }, { - "codePostal": "14170", - "codeCommune": "14669", - "libelleAcheminement": "SASSY", - "nomCommune": "SASSY" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "31450", - "codeCommune": "31048", - "libelleAcheminement": "BAZIEGE", - "nomCommune": "BAZIEGE" + "codePostal": "52250", + "codeCommune": "52014", + "libelleAcheminement": "APREY", + "nomCommune": "APREY" }, { - "codePostal": "43340", - "codeCommune": "43160", - "libelleAcheminement": "RAURET", - "nomCommune": "RAURET" + "codePostal": "38350", + "codeCommune": "38224", + "libelleAcheminement": "MAYRES SAVEL", + "nomCommune": "MAYRES SAVEL" }, { - "codePostal": "65100", - "codeCommune": "65040", - "libelleAcheminement": "ASPIN EN LAVEDAN", - "nomCommune": "ASPIN EN LAVEDAN" + "codePostal": "39160", + "codeCommune": "39346", + "libelleAcheminement": "MONTAGNA LE RECONDUIT", + "nomCommune": "MONTAGNA LE RECONDUIT" }, { - "codePostal": "14400", - "codeCommune": "14676", - "libelleAcheminement": "SOMMERVIEU", - "nomCommune": "SOMMERVIEU" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "31480", - "codeCommune": "31062", - "libelleAcheminement": "BELLESSERRE", - "nomCommune": "BELLESSERRE" + "codePostal": "52160", + "codeCommune": "52023", + "libelleAcheminement": "AUBERIVE", + "nomCommune": "AUBERIVE" }, { - "codePostal": "43380", - "codeCommune": "43169", - "libelleAcheminement": "ST AUSTREMOINE", - "nomCommune": "ST AUSTREMOINE" + "codePostal": "38300", + "codeCommune": "38230", + "libelleAcheminement": "MEYRIE", + "nomCommune": "MEYRIE" }, { - "codePostal": "65350", - "codeCommune": "65044", - "libelleAcheminement": "AUBAREDE", - "nomCommune": "AUBAREDE" + "codePostal": "39380", + "codeCommune": "39350", + "libelleAcheminement": "MONTBARREY", + "nomCommune": "MONTBARREY" }, { - "codePostal": "14610", - "codeCommune": "14685", - "libelleAcheminement": "THAON", - "nomCommune": "THAON" + "codePostal": "52300", + "codeCommune": "52156", + "libelleAcheminement": "CUREL", + "nomCommune": "CUREL" }, { - "codePostal": "31420", - "codeCommune": "31063", - "libelleAcheminement": "BENQUE", - "nomCommune": "BENQUE" + "codePostal": "52160", + "codeCommune": "52028", + "libelleAcheminement": "AULNOY SUR AUBE", + "nomCommune": "AULNOY SUR AUBE" }, { - "codePostal": "43380", - "codeCommune": "43175", - "libelleAcheminement": "ST CIRGUES", - "nomCommune": "ST CIRGUES" + "codePostal": "38430", + "codeCommune": "38239", + "libelleAcheminement": "MOIRANS", + "nomCommune": "MOIRANS" }, { - "codePostal": "65240", - "codeCommune": "65046", - "libelleAcheminement": "AULON", - "nomCommune": "AULON" + "codePostal": "39700", + "codeCommune": "39352", + "libelleAcheminement": "MONTEPLAIN", + "nomCommune": "MONTEPLAIN" }, { - "codePostal": "14220", - "codeCommune": "14689", - "libelleAcheminement": "LE HOM", - "nomCommune": "LE HOM" + "codePostal": "52110", + "codeCommune": "52160", + "libelleAcheminement": "DAILLANCOURT", + "nomCommune": "DAILLANCOURT" }, { - "codePostal": "31110", - "codeCommune": "31064", - "libelleAcheminement": "BENQUE DESSOUS ET DESSUS", - "nomCommune": "BENQUE DESSOUS ET DESSUS" + "codePostal": "52300", + "codeCommune": "52030", + "libelleAcheminement": "AUTIGNY LE PETIT", + "nomCommune": "AUTIGNY LE PETIT" }, { - "codePostal": "43450", - "codeCommune": "43182", - "libelleAcheminement": "ST ETIENNE SUR BLESLE", - "nomCommune": "ST ETIENNE SUR BLESLE" + "codePostal": "38390", + "codeCommune": "38247", + "libelleAcheminement": "MONTALIEU VERCIEU", + "nomCommune": "MONTALIEU VERCIEU" }, { - "codePostal": "65800", - "codeCommune": "65047", - "libelleAcheminement": "AUREILHAN", - "nomCommune": "AUREILHAN" + "codePostal": "39570", + "codeCommune": "39362", + "libelleAcheminement": "MONTMOROT", + "nomCommune": "MONTMOROT" }, { - "codePostal": "14130", - "codeCommune": "14694", - "libelleAcheminement": "LE TORQUESNE", - "nomCommune": "LE TORQUESNE" + "codePostal": "52400", + "codeCommune": "52164", + "libelleAcheminement": "DAMREMONT", + "nomCommune": "DAMREMONT" }, { - "codePostal": "31370", - "codeCommune": "31065", - "libelleAcheminement": "BERAT", - "nomCommune": "BERAT" + "codePostal": "52130", + "codeCommune": "52034", + "libelleAcheminement": "BAILLY AUX FORGES", + "nomCommune": "BAILLY AUX FORGES" }, { - "codePostal": "43230", - "codeCommune": "43183", - "libelleAcheminement": "STE EUGENIE DE VILLENEUVE", - "nomCommune": "STE EUGENIE DE VILLENEUVE" + "codePostal": "38330", + "codeCommune": "38249", + "libelleAcheminement": "MONTBONNOT ST MARTIN", + "nomCommune": "MONTBONNOT ST MARTIN" }, { - "codePostal": "65700", - "codeCommune": "65049", - "libelleAcheminement": "AURIEBAT", - "nomCommune": "AURIEBAT" + "codePostal": "39380", + "codeCommune": "39365", + "libelleAcheminement": "MONT SOUS VAUDREY", + "nomCommune": "MONT SOUS VAUDREY" }, { - "codePostal": "14940", - "codeCommune": "14698", - "libelleAcheminement": "TOUFFREVILLE", - "nomCommune": "TOUFFREVILLE" + "codePostal": "52110", + "codeCommune": "52171", + "libelleAcheminement": "DOMMARTIN LE FRANC", + "nomCommune": "DOMMARTIN LE FRANC" }, { - "codePostal": "31230", - "codeCommune": "31072", - "libelleAcheminement": "BOISSEDE", - "nomCommune": "BOISSEDE" + "codePostal": "52260", + "codeCommune": "52042", + "libelleAcheminement": "BEAUCHEMIN", + "nomCommune": "BEAUCHEMIN" }, { - "codePostal": "43510", - "codeCommune": "43198", - "libelleAcheminement": "ST JEAN LACHALM", - "nomCommune": "ST JEAN LACHALM" + "codePostal": "38890", + "codeCommune": "38250", + "libelleAcheminement": "MONTCARRA", + "nomCommune": "MONTCARRA" }, { - "codePostal": "65240", - "codeCommune": "65050", - "libelleAcheminement": "AVAJAN", - "nomCommune": "AVAJAN" + "codePostal": "39400", + "codeCommune": "39368", + "libelleAcheminement": "HAUTS DE BIENNE", + "nomCommune": "HAUTS DE BIENNE" }, { - "codePostal": "14310", - "codeCommune": "14708", - "libelleAcheminement": "TRACY BOCAGE", - "nomCommune": "TRACY BOCAGE" + "codePostal": "52270", + "codeCommune": "52173", + "libelleAcheminement": "DOMREMY LANDEVILLE", + "nomCommune": "DOMREMY LANDEVILLE" }, { - "codePostal": "31470", - "codeCommune": "31075", - "libelleAcheminement": "BONREPOS SUR AUSSONNELLE", - "nomCommune": "BONREPOS SUR AUSSONNELLE" + "codePostal": "52150", + "codeCommune": "52067", + "libelleAcheminement": "BRAINVILLE SUR MEUSE", + "nomCommune": "BRAINVILLE SUR MEUSE" }, { - "codePostal": "43260", - "codeCommune": "43200", - "libelleAcheminement": "ST JULIEN CHAPTEUIL", - "nomCommune": "ST JULIEN CHAPTEUIL" + "codePostal": "38860", + "codeCommune": "38253", + "libelleAcheminement": "LES DEUX ALPES", + "nomCommune": "LES DEUX ALPES" }, { - "codePostal": "65660", - "codeCommune": "65051", - "libelleAcheminement": "AVENTIGNAN", - "nomCommune": "AVENTIGNAN" + "codePostal": "39290", + "codeCommune": "39377", + "libelleAcheminement": "MUTIGNEY", + "nomCommune": "MUTIGNEY" }, { - "codePostal": "14117", - "codeCommune": "14709", - "libelleAcheminement": "TRACY SUR MER", - "nomCommune": "TRACY SUR MER" + "codePostal": "52230", + "codeCommune": "52181", + "libelleAcheminement": "ECHENAY", + "nomCommune": "ECHENAY" }, { - "codePostal": "31350", - "codeCommune": "31080", - "libelleAcheminement": "BOULOGNE SUR GESSE", - "nomCommune": "BOULOGNE SUR GESSE" + "codePostal": "52240", + "codeCommune": "52074", + "libelleAcheminement": "BREUVANNES EN BASSIGNY", + "nomCommune": "BREUVANNES EN BASSIGNY" }, { - "codePostal": "43100", - "codeCommune": "43207", - "libelleAcheminement": "ST LAURENT CHABREUGES", - "nomCommune": "ST LAURENT CHABREUGES" + "codePostal": "38860", + "codeCommune": "38253", + "libelleAcheminement": "LES DEUX ALPES", + "nomCommune": "LES DEUX ALPES" }, { - "codePostal": "65130", - "codeCommune": "65054", - "libelleAcheminement": "AVEZAC PRAT LAHITTE", - "nomCommune": "AVEZAC PRAT LAHITTE" + "codePostal": "39160", + "codeCommune": "39378", + "libelleAcheminement": "LES TROIS CHATEAUX", + "nomCommune": "LES TROIS CHATEAUX" }, { - "codePostal": "14670", - "codeCommune": "14712", - "libelleAcheminement": "TROARN", - "nomCommune": "TROARN" + "codePostal": "52190", + "codeCommune": "52189", + "libelleAcheminement": "LE VAL D ESNOMS", + "nomCommune": "LE VAL D ESNOMS" }, { - "codePostal": "31440", - "codeCommune": "31085", - "libelleAcheminement": "BOUTX", - "nomCommune": "BOUTX" + "codePostal": "52500", + "codeCommune": "52083", + "libelleAcheminement": "CHAMPSEVRAINE", + "nomCommune": "CHAMPSEVRAINE" }, { - "codePostal": "43500", - "codeCommune": "43212", - "libelleAcheminement": "ST PAL DE CHALENCON", - "nomCommune": "ST PAL DE CHALENCON" + "codePostal": "38510", + "codeCommune": "38261", + "libelleAcheminement": "MORESTEL", + "nomCommune": "MORESTEL" }, { - "codePostal": "65710", - "codeCommune": "65059", - "libelleAcheminement": "BAGNERES DE BIGORRE", - "nomCommune": "BAGNERES DE BIGORRE" + "codePostal": "39300", + "codeCommune": "39389", + "libelleAcheminement": "NEY", + "nomCommune": "NEY" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "52340", + "codeCommune": "52190", + "libelleAcheminement": "ESNOUVEAUX", + "nomCommune": "ESNOUVEAUX" }, { - "codePostal": "31530", - "codeCommune": "31089", - "libelleAcheminement": "BRETX", - "nomCommune": "BRETX" + "codePostal": "52220", + "codeCommune": "52088", + "libelleAcheminement": "CEFFONDS", + "nomCommune": "CEFFONDS" }, { - "codePostal": "43620", - "codeCommune": "43213", - "libelleAcheminement": "ST PAL DE MONS", - "nomCommune": "ST PAL DE MONS" + "codePostal": "38350", + "codeCommune": "38264", + "libelleAcheminement": "LA MORTE", + "nomCommune": "LA MORTE" }, { - "codePostal": "65200", - "codeCommune": "65060", - "libelleAcheminement": "BANIOS", - "nomCommune": "BANIOS" + "codePostal": "39800", + "codeCommune": "39401", + "libelleAcheminement": "OUSSIERES", + "nomCommune": "OUSSIERES" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "52500", + "codeCommune": "52197", + "libelleAcheminement": "FAYL BILLOT", + "nomCommune": "FAYL BILLOT" }, { - "codePostal": "31560", - "codeCommune": "31100", - "libelleAcheminement": "CALMONT", - "nomCommune": "CALMONT" + "codePostal": "52320", + "codeCommune": "52091", + "libelleAcheminement": "CERISIERES", + "nomCommune": "CERISIERES" }, { - "codePostal": "43810", - "codeCommune": "43217", - "libelleAcheminement": "ST PIERRE DU CHAMP", - "nomCommune": "ST PIERRE DU CHAMP" + "codePostal": "38770", + "codeCommune": "38265", + "libelleAcheminement": "LA MOTTE D AVEILLANS", + "nomCommune": "LA MOTTE D AVEILLANS" }, { - "codePostal": "65240", - "codeCommune": "65066", - "libelleAcheminement": "BARRANCOUEU", - "nomCommune": "BARRANCOUEU" + "codePostal": "39370", + "codeCommune": "39413", + "libelleAcheminement": "LA PESSE", + "nomCommune": "LA PESSE" }, { - "codePostal": "14170", - "codeCommune": "14735", - "libelleAcheminement": "VENDEUVRE", - "nomCommune": "VENDEUVRE" + "codePostal": "52130", + "codeCommune": "52198", + "libelleAcheminement": "FAYS", + "nomCommune": "FAYS" }, { - "codePostal": "31460", - "codeCommune": "31106", - "libelleAcheminement": "CARAMAN", - "nomCommune": "CARAMAN" + "codePostal": "52600", + "codeCommune": "52093", + "libelleAcheminement": "CHALINDREY", + "nomCommune": "CHALINDREY" }, { - "codePostal": "43580", - "codeCommune": "43220", - "libelleAcheminement": "ST PREJET D ALLIER", - "nomCommune": "ST PREJET D ALLIER" + "codePostal": "38140", + "codeCommune": "38270", + "libelleAcheminement": "LA MURETTE", + "nomCommune": "LA MURETTE" }, { - "codePostal": "65460", - "codeCommune": "65072", - "libelleAcheminement": "BAZET", - "nomCommune": "BAZET" + "codePostal": "39210", + "codeCommune": "39421", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "14570", - "codeCommune": "14741", - "libelleAcheminement": "LE VEY", - "nomCommune": "LE VEY" + "codePostal": "52320", + "codeCommune": "52211", + "libelleAcheminement": "FRONCLES", + "nomCommune": "FRONCLES" }, { - "codePostal": "31260", - "codeCommune": "31112", - "libelleAcheminement": "CASTAGNEDE", - "nomCommune": "CASTAGNEDE" + "codePostal": "52110", + "codeCommune": "52110", + "libelleAcheminement": "CHARMES LA GRANDE", + "nomCommune": "CHARMES LA GRANDE" }, { - "codePostal": "43620", - "codeCommune": "43223", - "libelleAcheminement": "ST ROMAIN LACHALM", - "nomCommune": "ST ROMAIN LACHALM" + "codePostal": "38160", + "codeCommune": "38272", + "libelleAcheminement": "MURINAIS", + "nomCommune": "MURINAIS" }, { - "codePostal": "65100", - "codeCommune": "65082", - "libelleAcheminement": "BERBERUST LIAS", - "nomCommune": "BERBERUST LIAS" + "codePostal": "39250", + "codeCommune": "39427", + "libelleAcheminement": "PLENISE", + "nomCommune": "PLENISE" }, { - "codePostal": "14430", - "codeCommune": "14743", - "libelleAcheminement": "VICTOT PONTFOL", - "nomCommune": "VICTOT PONTFOL" + "codePostal": "52150", + "codeCommune": "52227", + "libelleAcheminement": "GRAFFIGNY CHEMIN", + "nomCommune": "GRAFFIGNY CHEMIN" }, { - "codePostal": "31430", - "codeCommune": "31119", - "libelleAcheminement": "CASTELNAU PICAMPEAU", - "nomCommune": "CASTELNAU PICAMPEAU" + "codePostal": "52120", + "codeCommune": "52114", + "libelleAcheminement": "CHATEAUVILLAIN", + "nomCommune": "CHATEAUVILLAIN" }, { - "codePostal": "43440", - "codeCommune": "43226", - "libelleAcheminement": "ST VERT", - "nomCommune": "ST VERT" + "codePostal": "38450", + "codeCommune": "38277", + "libelleAcheminement": "NOTRE DAME DE COMMIERS", + "nomCommune": "NOTRE DAME DE COMMIERS" }, { - "codePostal": "65190", - "codeCommune": "65086", - "libelleAcheminement": "BERNADETS DESSUS", - "nomCommune": "BERNADETS DESSUS" + "codePostal": "39290", + "codeCommune": "39432", + "libelleAcheminement": "POINTRE", + "nomCommune": "POINTRE" }, { - "codePostal": "14570", - "codeCommune": "14756", - "libelleAcheminement": "LA VILLETTE", - "nomCommune": "LA VILLETTE" + "codePostal": "52320", + "codeCommune": "52230", + "libelleAcheminement": "GUDMONT VILLIERS", + "nomCommune": "GUDMONT VILLIERS" }, { - "codePostal": "31350", - "codeCommune": "31121", - "libelleAcheminement": "CASTERA VIGNOLES", - "nomCommune": "CASTERA VIGNOLES" + "codePostal": "52170", + "codeCommune": "52123", + "libelleAcheminement": "CHEVILLON", + "nomCommune": "CHEVILLON" }, { - "codePostal": "43300", - "codeCommune": "43239", - "libelleAcheminement": "SIAUGUES STE MARIE", - "nomCommune": "SIAUGUES STE MARIE" + "codePostal": "38220", + "codeCommune": "38279", + "libelleAcheminement": "NOTRE DAME DE MESAGE", + "nomCommune": "NOTRE DAME DE MESAGE" }, { - "codePostal": "65120", - "codeCommune": "65089", - "libelleAcheminement": "BETPOUEY", - "nomCommune": "BETPOUEY" + "codePostal": "39330", + "codeCommune": "39439", + "libelleAcheminement": "PORT LESNEY", + "nomCommune": "PORT LESNEY" }, { - "codePostal": "14310", - "codeCommune": "14760", - "libelleAcheminement": "VILLY BOCAGE", - "nomCommune": "VILLY BOCAGE" + "codePostal": "52300", + "codeCommune": "52231", + "libelleAcheminement": "GUINDRECOURT AUX ORMES", + "nomCommune": "GUINDRECOURT AUX ORMES" }, { - "codePostal": "31190", - "codeCommune": "31128", - "libelleAcheminement": "CAUJAC", - "nomCommune": "CAUJAC" + "codePostal": "52000", + "codeCommune": "52125", + "libelleAcheminement": "CHAMARANDES CHOIGNES", + "nomCommune": "CHAMARANDES CHOIGNES" }, { - "codePostal": "43300", - "codeCommune": "43239", - "libelleAcheminement": "SIAUGUES STE MARIE", - "nomCommune": "SIAUGUES STE MARIE" + "codePostal": "38350", + "codeCommune": "38283", + "libelleAcheminement": "ORIS EN RATTIER", + "nomCommune": "ORIS EN RATTIER" }, { - "codePostal": "65410", - "codeCommune": "65092", - "libelleAcheminement": "BEYREDE JUMET CAMOUS", - "nomCommune": "BEYREDE JUMET CAMOUS" + "codePostal": "39220", + "codeCommune": "39441", + "libelleAcheminement": "PREMANON", + "nomCommune": "PREMANON" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "52100", + "codeCommune": "52235", + "libelleAcheminement": "HALLIGNICOURT", + "nomCommune": "HALLIGNICOURT" }, { - "codePostal": "31110", - "codeCommune": "31129", - "libelleAcheminement": "CAZARILH LASPENES", - "nomCommune": "CAZARILH LASPENES" + "codePostal": "52190", + "codeCommune": "52126", + "libelleAcheminement": "CHOILLEY DARDENAY", + "nomCommune": "CHOILLEY DARDENAY" }, { - "codePostal": "43130", - "codeCommune": "43240", - "libelleAcheminement": "SOLIGNAC SOUS ROCHE", - "nomCommune": "SOLIGNAC SOUS ROCHE" + "codePostal": "38260", + "codeCommune": "38284", + "libelleAcheminement": "ORNACIEUX BALBINS", + "nomCommune": "ORNACIEUX BALBINS" }, { - "codePostal": "65400", - "codeCommune": "65098", - "libelleAcheminement": "BOO SILHEN", - "nomCommune": "BOO SILHEN" + "codePostal": "39400", + "codeCommune": "39441", + "libelleAcheminement": "PREMANON", + "nomCommune": "PREMANON" }, { - "codePostal": "15160", - "codeCommune": "15001", - "libelleAcheminement": "ALLANCHE", - "nomCommune": "ALLANCHE" + "codePostal": "52150", + "codeCommune": "52237", + "libelleAcheminement": "HARREVILLE LES CHANTEURS", + "nomCommune": "HARREVILLE LES CHANTEURS" }, { - "codePostal": "31470", - "codeCommune": "31166", - "libelleAcheminement": "EMPEAUX", - "nomCommune": "EMPEAUX" + "codePostal": "52700", + "codeCommune": "52128", + "libelleAcheminement": "CIREY LES MAREILLES", + "nomCommune": "CIREY LES MAREILLES" }, { - "codePostal": "43300", - "codeCommune": "43242", - "libelleAcheminement": "TAILHAC", - "nomCommune": "TAILHAC" + "codePostal": "38520", + "codeCommune": "38285", + "libelleAcheminement": "ORNON", + "nomCommune": "ORNON" }, { - "codePostal": "65320", - "codeCommune": "65100", - "libelleAcheminement": "BORDERES SUR L ECHEZ", - "nomCommune": "BORDERES SUR L ECHEZ" + "codePostal": "39400", + "codeCommune": "39441", + "libelleAcheminement": "PREMANON", + "nomCommune": "PREMANON" }, { - "codePostal": "15100", - "codeCommune": "15002", - "libelleAcheminement": "ALLEUZE", - "nomCommune": "ALLEUZE" + "codePostal": "52000", + "codeCommune": "52251", + "libelleAcheminement": "JONCHERY", + "nomCommune": "JONCHERY" }, { - "codePostal": "31160", - "codeCommune": "31167", - "libelleAcheminement": "ENCAUSSE LES THERMES", - "nomCommune": "ENCAUSSE LES THERMES" + "codePostal": "52230", + "codeCommune": "52131", + "libelleAcheminement": "CIRFONTAINES EN ORNOIS", + "nomCommune": "CIRFONTAINES EN ORNOIS" }, { - "codePostal": "43430", - "codeCommune": "43253", - "libelleAcheminement": "LES VASTRES", - "nomCommune": "LES VASTRES" + "codePostal": "38780", + "codeCommune": "38288", + "libelleAcheminement": "OYTIER ST OBLAS", + "nomCommune": "OYTIER ST OBLAS" }, { - "codePostal": "65460", - "codeCommune": "65108", - "libelleAcheminement": "BOURS", - "nomCommune": "BOURS" + "codePostal": "39570", + "codeCommune": "39445", + "libelleAcheminement": "PUBLY", + "nomCommune": "PUBLY" }, { - "codePostal": "15000", - "codeCommune": "15014", - "libelleAcheminement": "AURILLAC", - "nomCommune": "AURILLAC" + "codePostal": "52330", + "codeCommune": "52254", + "libelleAcheminement": "LACHAPELLE EN BLAISY", + "nomCommune": "LACHAPELLE EN BLAISY" }, { - "codePostal": "31450", - "codeCommune": "31171", - "libelleAcheminement": "ESPANES", - "nomCommune": "ESPANES" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "43320", - "codeCommune": "43260", - "libelleAcheminement": "LE VERNET", - "nomCommune": "LE VERNET" + "codePostal": "38970", + "codeCommune": "38299", + "libelleAcheminement": "PELLAFOL", + "nomCommune": "PELLAFOL" }, { - "codePostal": "65130", - "codeCommune": "65111", - "libelleAcheminement": "BULAN", - "nomCommune": "BULAN" + "codePostal": "39700", + "codeCommune": "39451", + "libelleAcheminement": "RANCHOT", + "nomCommune": "RANCHOT" }, { - "codePostal": "15240", - "codeCommune": "15019", - "libelleAcheminement": "BASSIGNAC", - "nomCommune": "BASSIGNAC" + "codePostal": "52700", + "codeCommune": "52256", + "libelleAcheminement": "LAFAUCHE", + "nomCommune": "LAFAUCHE" }, { - "codePostal": "31190", - "codeCommune": "31173", - "libelleAcheminement": "ESPERCE", - "nomCommune": "ESPERCE" + "codePostal": "52200", + "codeCommune": "52147", + "libelleAcheminement": "COURCELLES EN MONTAGNE", + "nomCommune": "COURCELLES EN MONTAGNE" }, { - "codePostal": "43600", - "codeCommune": "43265", - "libelleAcheminement": "LES VILLETTES", - "nomCommune": "LES VILLETTES" + "codePostal": "38710", + "codeCommune": "38321", + "libelleAcheminement": "PREBOIS", + "nomCommune": "PREBOIS" }, { - "codePostal": "65190", - "codeCommune": "65118", - "libelleAcheminement": "CAHARET", - "nomCommune": "CAHARET" + "codePostal": "39170", + "codeCommune": "39453", + "libelleAcheminement": "RAVILLOLES", + "nomCommune": "RAVILLOLES" }, { - "codePostal": "15230", - "codeCommune": "15026", - "libelleAcheminement": "BREZONS", - "nomCommune": "BREZONS" + "codePostal": "52200", + "codeCommune": "52269", + "libelleAcheminement": "LANGRES", + "nomCommune": "LANGRES" }, { - "codePostal": "31800", - "codeCommune": "31175", - "libelleAcheminement": "ESTANCARBON", - "nomCommune": "ESTANCARBON" + "codePostal": "52210", + "codeCommune": "52151", + "libelleAcheminement": "COUR L EVEQUE", + "nomCommune": "COUR L EVEQUE" }, { - "codePostal": "43800", - "codeCommune": "43267", - "libelleAcheminement": "VOREY", - "nomCommune": "VOREY" + "codePostal": "38950", + "codeCommune": "38328", + "libelleAcheminement": "QUAIX EN CHARTREUSE", + "nomCommune": "QUAIX EN CHARTREUSE" }, { - "codePostal": "65500", - "codeCommune": "65121", - "libelleAcheminement": "CAMALES", - "nomCommune": "CAMALES" + "codePostal": "39140", + "codeCommune": "39456", + "libelleAcheminement": "RELANS", + "nomCommune": "RELANS" }, { - "codePostal": "15340", - "codeCommune": "15027", - "libelleAcheminement": "PUYCAPEL", - "nomCommune": "PUYCAPEL" + "codePostal": "52140", + "codeCommune": "52275", + "libelleAcheminement": "LAVERNOY", + "nomCommune": "LAVERNOY" }, { - "codePostal": "31540", - "codeCommune": "31180", - "libelleAcheminement": "FALGA", - "nomCommune": "FALGA" + "codePostal": "52240", + "codeCommune": "52161", + "libelleAcheminement": "DAILLECOURT", + "nomCommune": "DAILLECOURT" }, { - "codePostal": "43200", - "codeCommune": "43268", - "libelleAcheminement": "YSSINGEAUX", - "nomCommune": "YSSINGEAUX" + "codePostal": "38970", + "codeCommune": "38329", + "libelleAcheminement": "QUET EN BEAUMONT", + "nomCommune": "QUET EN BEAUMONT" }, { - "codePostal": "65710", - "codeCommune": "65123", - "libelleAcheminement": "CAMPAN", - "nomCommune": "CAMPAN" + "codePostal": "39200", + "codeCommune": "39460", + "libelleAcheminement": "LA RIXOUSE", + "nomCommune": "LA RIXOUSE" }, { - "codePostal": "15230", - "codeCommune": "15033", - "libelleAcheminement": "CEZENS", - "nomCommune": "CEZENS" + "codePostal": "52000", + "codeCommune": "52276", + "libelleAcheminement": "LAVILLE AUX BOIS", + "nomCommune": "LAVILLE AUX BOIS" }, { - "codePostal": "31410", - "codeCommune": "31181", - "libelleAcheminement": "LE FAUGA", - "nomCommune": "LE FAUGA" + "codePostal": "52360", + "codeCommune": "52163", + "libelleAcheminement": "DAMPIERRE", + "nomCommune": "DAMPIERRE" }, { - "codePostal": "44320", - "codeCommune": "44005", - "libelleAcheminement": "CHAUMES EN RETZ", - "nomCommune": "CHAUMES EN RETZ" + "codePostal": "38140", + "codeCommune": "38331", + "libelleAcheminement": "REAUMONT", + "nomCommune": "REAUMONT" }, { - "codePostal": "65350", - "codeCommune": "65131", - "libelleAcheminement": "CASTELVIEILH", - "nomCommune": "CASTELVIEILH" + "codePostal": "39250", + "codeCommune": "39461", + "libelleAcheminement": "RIX", + "nomCommune": "RIX" }, { - "codePostal": "15200", - "codeCommune": "15036", - "libelleAcheminement": "CHALVIGNAC", - "nomCommune": "CHALVIGNAC" + "codePostal": "52210", + "codeCommune": "52282", + "libelleAcheminement": "LEFFONDS", + "nomCommune": "LEFFONDS" }, { - "codePostal": "31370", - "codeCommune": "31189", - "libelleAcheminement": "FORGUES", - "nomCommune": "FORGUES" + "codePostal": "52210", + "codeCommune": "52165", + "libelleAcheminement": "DANCEVOIR", + "nomCommune": "DANCEVOIR" }, { - "codePostal": "44680", - "codeCommune": "44005", - "libelleAcheminement": "CHAUMES EN RETZ", - "nomCommune": "CHAUMES EN RETZ" + "codePostal": "38140", + "codeCommune": "38332", + "libelleAcheminement": "RENAGE", + "nomCommune": "RENAGE" }, { - "codePostal": "65190", - "codeCommune": "65132", - "libelleAcheminement": "CASTERA LANUSSE", - "nomCommune": "CASTERA LANUSSE" + "codePostal": "39700", + "codeCommune": "39462", + "libelleAcheminement": "ROCHEFORT SUR NENON", + "nomCommune": "ROCHEFORT SUR NENON" }, { - "codePostal": "15350", - "codeCommune": "15037", - "libelleAcheminement": "CHAMPAGNAC", - "nomCommune": "CHAMPAGNAC" + "codePostal": "52190", + "codeCommune": "52285", + "libelleAcheminement": "LEUCHEY", + "nomCommune": "LEUCHEY" }, { - "codePostal": "31430", - "codeCommune": "31193", - "libelleAcheminement": "LE FOUSSERET", - "nomCommune": "LE FOUSSERET" + "codePostal": "52120", + "codeCommune": "52168", + "libelleAcheminement": "DINTEVILLE", + "nomCommune": "DINTEVILLE" }, { - "codePostal": "44460", - "codeCommune": "44007", - "libelleAcheminement": "AVESSAC", - "nomCommune": "AVESSAC" + "codePostal": "38680", + "codeCommune": "38333", + "libelleAcheminement": "RENCUREL", + "nomCommune": "RENCUREL" }, { - "codePostal": "65110", - "codeCommune": "65138", - "libelleAcheminement": "CAUTERETS", - "nomCommune": "CAUTERETS" + "codePostal": "39360", + "codeCommune": "39463", + "libelleAcheminement": "ROGNA", + "nomCommune": "ROGNA" }, { - "codePostal": "15500", - "codeCommune": "15043", - "libelleAcheminement": "CHARMENSAC", - "nomCommune": "CHARMENSAC" + "codePostal": "52700", + "codeCommune": "52286", + "libelleAcheminement": "LEURVILLE", + "nomCommune": "LEURVILLE" }, { - "codePostal": "31430", - "codeCommune": "31204", - "libelleAcheminement": "FUSTIGNAC", - "nomCommune": "FUSTIGNAC" + "codePostal": "52110", + "codeCommune": "52172", + "libelleAcheminement": "DOMMARTIN LE ST PERE", + "nomCommune": "DOMMARTIN LE ST PERE" }, { - "codePostal": "44160", - "codeCommune": "44013", - "libelleAcheminement": "BESNE", - "nomCommune": "BESNE" + "codePostal": "38270", + "codeCommune": "38335", + "libelleAcheminement": "REVEL TOURDAN", + "nomCommune": "REVEL TOURDAN" }, { - "codePostal": "65130", - "codeCommune": "65143", - "libelleAcheminement": "CHELLE SPOU", - "nomCommune": "CHELLE SPOU" + "codePostal": "39350", + "codeCommune": "39464", + "libelleAcheminement": "ROMAIN", + "nomCommune": "ROMAIN" }, { - "codePostal": "15500", - "codeCommune": "15048", - "libelleAcheminement": "CHAZELLES", - "nomCommune": "CHAZELLES" + "codePostal": "52230", + "codeCommune": "52288", + "libelleAcheminement": "LEZEVILLE", + "nomCommune": "LEZEVILLE" }, { - "codePostal": "31290", - "codeCommune": "31210", - "libelleAcheminement": "GARDOUCH", - "nomCommune": "GARDOUCH" + "codePostal": "52270", + "codeCommune": "52173", + "libelleAcheminement": "DOMREMY LANDEVILLE", + "nomCommune": "DOMREMY LANDEVILLE" }, { - "codePostal": "44140", - "codeCommune": "44014", - "libelleAcheminement": "LE BIGNON", - "nomCommune": "LE BIGNON" + "codePostal": "38300", + "codeCommune": "38351", + "libelleAcheminement": "ST AGNIN SUR BION", + "nomCommune": "ST AGNIN SUR BION" }, { - "codePostal": "65350", - "codeCommune": "65156", - "libelleAcheminement": "DOURS", - "nomCommune": "DOURS" + "codePostal": "39700", + "codeCommune": "39465", + "libelleAcheminement": "ROMANGE", + "nomCommune": "ROMANGE" }, { - "codePostal": "15400", - "codeCommune": "15050", - "libelleAcheminement": "LE CLAUX", - "nomCommune": "LE CLAUX" + "codePostal": "52250", + "codeCommune": "52292", + "libelleAcheminement": "LONGEAU PERCEY", + "nomCommune": "LONGEAU PERCEY" }, { - "codePostal": "31620", - "codeCommune": "31211", - "libelleAcheminement": "GARGAS", - "nomCommune": "GARGAS" + "codePostal": "52270", + "codeCommune": "52177", + "libelleAcheminement": "DOULAINCOURT SAUCOURT", + "nomCommune": "DOULAINCOURT SAUCOURT" }, { - "codePostal": "44430", - "codeCommune": "44016", - "libelleAcheminement": "LA BOISSIERE DU DORE", - "nomCommune": "LA BOISSIERE DU DORE" + "codePostal": "38490", + "codeCommune": "38357", + "libelleAcheminement": "ST ANDRE LE GAZ", + "nomCommune": "ST ANDRE LE GAZ" }, { - "codePostal": "65170", - "codeCommune": "65157", - "libelleAcheminement": "ENS", - "nomCommune": "ENS" + "codePostal": "39190", + "codeCommune": "39466", + "libelleAcheminement": "ROSAY", + "nomCommune": "ROSAY" }, { - "codePostal": "15130", - "codeCommune": "15058", - "libelleAcheminement": "CROS DE RONESQUE", - "nomCommune": "CROS DE RONESQUE" + "codePostal": "52130", + "codeCommune": "52294", + "libelleAcheminement": "LOUVEMONT", + "nomCommune": "LOUVEMONT" }, { - "codePostal": "31350", - "codeCommune": "31218", - "libelleAcheminement": "GENSAC DE BOULOGNE", - "nomCommune": "GENSAC DE BOULOGNE" + "codePostal": "52110", + "codeCommune": "52178", + "libelleAcheminement": "DOULEVANT LE CHATEAU", + "nomCommune": "DOULEVANT LE CHATEAU" }, { - "codePostal": "44340", - "codeCommune": "44020", - "libelleAcheminement": "BOUGUENAIS", - "nomCommune": "BOUGUENAIS" + "codePostal": "38118", + "codeCommune": "38365", + "libelleAcheminement": "ST BAUDILLE DE LA TOUR", + "nomCommune": "ST BAUDILLE DE LA TOUR" }, { - "codePostal": "65250", - "codeCommune": "65159", - "libelleAcheminement": "ESCALA", - "nomCommune": "ESCALA" + "codePostal": "39130", + "codeCommune": "39473", + "libelleAcheminement": "SAFFLOZ", + "nomCommune": "SAFFLOZ" }, { - "codePostal": "15110", - "codeCommune": "15073", - "libelleAcheminement": "FRIDEFONT", - "nomCommune": "FRIDEFONT" + "codePostal": "52130", + "codeCommune": "52300", + "libelleAcheminement": "MAGNEUX", + "nomCommune": "MAGNEUX" }, { - "codePostal": "31230", - "codeCommune": "31223", - "libelleAcheminement": "GOUDEX", - "nomCommune": "GOUDEX" + "codePostal": "52700", + "codeCommune": "52183", + "libelleAcheminement": "ECOT LA COMBE", + "nomCommune": "ECOT LA COMBE" }, { - "codePostal": "44580", - "codeCommune": "44021", - "libelleAcheminement": "VILLENEUVE EN RETZ", - "nomCommune": "VILLENEUVE EN RETZ" + "codePostal": "38520", + "codeCommune": "38375", + "libelleAcheminement": "ST CHRISTOPHE EN OISANS", + "nomCommune": "ST CHRISTOPHE EN OISANS" }, { - "codePostal": "65130", - "codeCommune": "65165", - "libelleAcheminement": "ESPARROS", - "nomCommune": "ESPARROS" + "codePostal": "39160", + "codeCommune": "39475", + "libelleAcheminement": "ST AMOUR", + "nomCommune": "ST AMOUR" }, { - "codePostal": "15310", - "codeCommune": "15075", - "libelleAcheminement": "GIRGOLS", - "nomCommune": "GIRGOLS" + "codePostal": "52500", + "codeCommune": "52303", + "libelleAcheminement": "MAIZIERES SUR AMANCE", + "nomCommune": "MAIZIERES SUR AMANCE" }, { - "codePostal": "31210", - "codeCommune": "31224", - "libelleAcheminement": "GOURDAN POLIGNAN", - "nomCommune": "GOURDAN POLIGNAN" + "codePostal": "52400", + "codeCommune": "52185", + "libelleAcheminement": "ENFONVELLE", + "nomCommune": "ENFONVELLE" }, { - "codePostal": "44580", - "codeCommune": "44021", - "libelleAcheminement": "VILLENEUVE EN RETZ", - "nomCommune": "VILLENEUVE EN RETZ" + "codePostal": "38110", + "codeCommune": "38381", + "libelleAcheminement": "ST DIDIER DE LA TOUR", + "nomCommune": "ST DIDIER DE LA TOUR" }, { - "codePostal": "65400", - "codeCommune": "65169", - "libelleAcheminement": "ESTAING", - "nomCommune": "ESTAING" + "codePostal": "39200", + "codeCommune": "39478", + "libelleAcheminement": "ST CLAUDE", + "nomCommune": "ST CLAUDE" }, { - "codePostal": "15230", - "codeCommune": "15086", - "libelleAcheminement": "LACAPELLE BARRES", - "nomCommune": "LACAPELLE BARRES" + "codePostal": "52240", + "codeCommune": "52320", + "libelleAcheminement": "MERREY", + "nomCommune": "MERREY" }, { - "codePostal": "31380", - "codeCommune": "31228", - "libelleAcheminement": "GRAGNAGUE", - "nomCommune": "GRAGNAGUE" + "codePostal": "52230", + "codeCommune": "52187", + "libelleAcheminement": "EPIZON", + "nomCommune": "EPIZON" }, { - "codePostal": "44850", - "codeCommune": "44028", - "libelleAcheminement": "LE CELLIER", - "nomCommune": "LE CELLIER" + "codePostal": "38590", + "codeCommune": "38387", + "libelleAcheminement": "ST GEOIRS", + "nomCommune": "ST GEOIRS" }, { - "codePostal": "65220", - "codeCommune": "65177", - "libelleAcheminement": "FONTRAILLES", - "nomCommune": "FONTRAILLES" + "codePostal": "39200", + "codeCommune": "39478", + "libelleAcheminement": "ST CLAUDE", + "nomCommune": "ST CLAUDE" }, { - "codePostal": "15150", - "codeCommune": "15094", - "libelleAcheminement": "LAROQUEBROU", - "nomCommune": "LAROQUEBROU" + "codePostal": "52320", + "codeCommune": "52326", + "libelleAcheminement": "MIRBEL", + "nomCommune": "MIRBEL" }, { - "codePostal": "31480", - "codeCommune": "31234", - "libelleAcheminement": "LE GRES", - "nomCommune": "LE GRES" + "codePostal": "52190", + "codeCommune": "52189", + "libelleAcheminement": "LE VAL D ESNOMS", + "nomCommune": "LE VAL D ESNOMS" }, { - "codePostal": "44670", - "codeCommune": "44031", - "libelleAcheminement": "LA CHAPELLE GLAIN", - "nomCommune": "LA CHAPELLE GLAIN" + "codePostal": "38840", + "codeCommune": "38394", + "libelleAcheminement": "ST HILAIRE DU ROSIER", + "nomCommune": "ST HILAIRE DU ROSIER" }, { - "codePostal": "65190", - "codeCommune": "65181", - "libelleAcheminement": "FRECHOU FRECHET", - "nomCommune": "FRECHOU FRECHET" + "codePostal": "39320", + "codeCommune": "39485", + "libelleAcheminement": "VAL SURAN", + "nomCommune": "VAL SURAN" }, { - "codePostal": "15250", - "codeCommune": "15095", - "libelleAcheminement": "LAROQUEVIEILLE", - "nomCommune": "LAROQUEVIEILLE" + "codePostal": "52700", + "codeCommune": "52335", + "libelleAcheminement": "MONTOT SUR ROGNON", + "nomCommune": "MONTOT SUR ROGNON" }, { - "codePostal": "31160", - "codeCommune": "31241", - "libelleAcheminement": "IZAUT DE L HOTEL", - "nomCommune": "IZAUT DE L HOTEL" + "codePostal": "52190", + "codeCommune": "52189", + "libelleAcheminement": "LE VAL D ESNOMS", + "nomCommune": "LE VAL D ESNOMS" }, { - "codePostal": "44320", - "codeCommune": "44038", - "libelleAcheminement": "CHAUVE", - "nomCommune": "CHAUVE" + "codePostal": "38660", + "codeCommune": "38395", + "libelleAcheminement": "PLATEAU DES PETITES ROCHES", + "nomCommune": "PLATEAU DES PETITES ROCHES" }, { - "codePostal": "65400", - "codeCommune": "65182", - "libelleAcheminement": "GAILLAGOS", - "nomCommune": "GAILLAGOS" + "codePostal": "39350", + "codeCommune": "39499", + "libelleAcheminement": "SALIGNEY", + "nomCommune": "SALIGNEY" }, { - "codePostal": "15120", - "codeCommune": "15103", - "libelleAcheminement": "LEUCAMP", - "nomCommune": "LEUCAMP" + "codePostal": "52360", + "codeCommune": "52362", + "libelleAcheminement": "ORBIGNY AU MONT", + "nomCommune": "ORBIGNY AU MONT" }, { - "codePostal": "31110", - "codeCommune": "31244", - "libelleAcheminement": "JUZET DE LUCHON", - "nomCommune": "JUZET DE LUCHON" + "codePostal": "52410", + "codeCommune": "52194", + "libelleAcheminement": "EURVILLE BIENVILLE", + "nomCommune": "EURVILLE BIENVILLE" }, { - "codePostal": "44220", - "codeCommune": "44047", - "libelleAcheminement": "COUERON", - "nomCommune": "COUERON" + "codePostal": "38660", + "codeCommune": "38395", + "libelleAcheminement": "PLATEAU DES PETITES ROCHES", + "nomCommune": "PLATEAU DES PETITES ROCHES" }, { - "codePostal": "65370", - "codeCommune": "65186", - "libelleAcheminement": "GAUDENT", - "nomCommune": "GAUDENT" + "codePostal": "39120", + "codeCommune": "39512", + "libelleAcheminement": "SERGENON", + "nomCommune": "SERGENON" }, { - "codePostal": "15210", - "codeCommune": "15111", - "libelleAcheminement": "MADIC", - "nomCommune": "MADIC" + "codePostal": "52120", + "codeCommune": "52365", + "libelleAcheminement": "ORGES", + "nomCommune": "ORGES" }, { - "codePostal": "31800", - "codeCommune": "31247", - "libelleAcheminement": "LABARTHE RIVIERE", - "nomCommune": "LABARTHE RIVIERE" + "codePostal": "52300", + "codeCommune": "52199", + "libelleAcheminement": "FERRIERE ET LAFOLIE", + "nomCommune": "FERRIERE ET LAFOLIE" }, { - "codePostal": "44130", - "codeCommune": "44056", - "libelleAcheminement": "FAY DE BRETAGNE", - "nomCommune": "FAY DE BRETAGNE" + "codePostal": "38350", + "codeCommune": "38396", + "libelleAcheminement": "ST HONORE", + "nomCommune": "ST HONORE" }, { - "codePostal": "65250", - "codeCommune": "65190", - "libelleAcheminement": "GAZAVE", - "nomCommune": "GAZAVE" + "codePostal": "39290", + "codeCommune": "39528", + "libelleAcheminement": "THERVAY", + "nomCommune": "THERVAY" }, { - "codePostal": "15590", - "codeCommune": "15113", - "libelleAcheminement": "MANDAILLES ST JULIEN", - "nomCommune": "MANDAILLES ST JULIEN" + "codePostal": "52310", + "codeCommune": "52367", + "libelleAcheminement": "ORMOY LES SEXFONTAINES", + "nomCommune": "ORMOY LES SEXFONTAINES" }, { - "codePostal": "31450", - "codeCommune": "31249", - "libelleAcheminement": "LABASTIDE BEAUVOIR", - "nomCommune": "LABASTIDE BEAUVOIR" + "codePostal": "52110", + "codeCommune": "52201", + "libelleAcheminement": "FLAMMERECOURT", + "nomCommune": "FLAMMERECOURT" }, { - "codePostal": "44190", - "codeCommune": "44063", - "libelleAcheminement": "GETIGNE", - "nomCommune": "GETIGNE" + "codePostal": "38440", + "codeCommune": "38399", + "libelleAcheminement": "ST JEAN DE BOURNAY", + "nomCommune": "ST JEAN DE BOURNAY" }, { - "codePostal": "65240", - "codeCommune": "65195", - "libelleAcheminement": "GENOS", - "nomCommune": "GENOS" + "codePostal": "39130", + "codeCommune": "39531", + "libelleAcheminement": "THOIRIA", + "nomCommune": "THOIRIA" }, { - "codePostal": "15590", - "codeCommune": "15113", - "libelleAcheminement": "MANDAILLES ST JULIEN", - "nomCommune": "MANDAILLES ST JULIEN" + "codePostal": "52700", + "codeCommune": "52369", + "libelleAcheminement": "ORQUEVAUX", + "nomCommune": "ORQUEVAUX" }, { - "codePostal": "31600", - "codeCommune": "31253", - "libelleAcheminement": "LABASTIDETTE", - "nomCommune": "LABASTIDETTE" + "codePostal": "52000", + "codeCommune": "52205", + "libelleAcheminement": "FOULAIN", + "nomCommune": "FOULAIN" }, { - "codePostal": "44530", - "codeCommune": "44068", - "libelleAcheminement": "GUENROUET", - "nomCommune": "GUENROUET" + "codePostal": "38110", + "codeCommune": "38401", + "libelleAcheminement": "ST JEAN DE SOUDAIN", + "nomCommune": "ST JEAN DE SOUDAIN" }, { - "codePostal": "65170", - "codeCommune": "65208", - "libelleAcheminement": "GRAILHEN", - "nomCommune": "GRAILHEN" + "codePostal": "39230", + "codeCommune": "39533", + "libelleAcheminement": "TOULOUSE LE CHATEAU", + "nomCommune": "TOULOUSE LE CHATEAU" }, { - "codePostal": "15110", - "codeCommune": "15121", - "libelleAcheminement": "MAURINES", - "nomCommune": "MAURINES" + "codePostal": "52300", + "codeCommune": "52370", + "libelleAcheminement": "OSNE LE VAL", + "nomCommune": "OSNE LE VAL" }, { - "codePostal": "31290", - "codeCommune": "31262", - "libelleAcheminement": "LAGARDE", - "nomCommune": "LAGARDE" + "codePostal": "52800", + "codeCommune": "52205", + "libelleAcheminement": "FOULAIN", + "nomCommune": "FOULAIN" }, { - "codePostal": "44520", - "codeCommune": "44075", - "libelleAcheminement": "ISSE", - "nomCommune": "ISSE" + "codePostal": "38122", + "codeCommune": "38406", + "libelleAcheminement": "ST JULIEN DE L HERMS", + "nomCommune": "ST JULIEN DE L HERMS" }, { - "codePostal": "65230", - "codeCommune": "65214", - "libelleAcheminement": "HACHAN", - "nomCommune": "HACHAN" + "codePostal": "39800", + "codeCommune": "39535", + "libelleAcheminement": "TOURMONT", + "nomCommune": "TOURMONT" }, { - "codePostal": "15100", - "codeCommune": "15125", - "libelleAcheminement": "MENTIERES", - "nomCommune": "MENTIERES" + "codePostal": "52400", + "codeCommune": "52377", + "libelleAcheminement": "PARNOY EN BASSIGNY", + "nomCommune": "PARNOY EN BASSIGNY" }, { - "codePostal": "31600", - "codeCommune": "31269", - "libelleAcheminement": "LAMASQUERE", - "nomCommune": "LAMASQUERE" + "codePostal": "52220", + "codeCommune": "52206", + "libelleAcheminement": "FRAMPAS", + "nomCommune": "FRAMPAS" }, { - "codePostal": "44310", - "codeCommune": "44083", - "libelleAcheminement": "LA LIMOUZINIERE", - "nomCommune": "LA LIMOUZINIERE" + "codePostal": "38540", + "codeCommune": "38408", + "libelleAcheminement": "ST JUST CHALEYSSIN", + "nomCommune": "ST JUST CHALEYSSIN" }, { - "codePostal": "65380", - "codeCommune": "65220", - "libelleAcheminement": "HIBARETTE", - "nomCommune": "HIBARETTE" + "codePostal": "39190", + "codeCommune": "39537", + "libelleAcheminement": "TRENAL", + "nomCommune": "TRENAL" }, { - "codePostal": "15100", - "codeCommune": "15130", - "libelleAcheminement": "MONTCHAMP", - "nomCommune": "MONTCHAMP" + "codePostal": "52240", + "codeCommune": "52385", + "libelleAcheminement": "PERRUSSE", + "nomCommune": "PERRUSSE" }, { - "codePostal": "31180", - "codeCommune": "31273", - "libelleAcheminement": "LAPEYROUSE FOSSAT", - "nomCommune": "LAPEYROUSE FOSSAT" + "codePostal": "52150", + "codeCommune": "52217", + "libelleAcheminement": "GERMAINVILLIERS", + "nomCommune": "GERMAINVILLIERS" }, { - "codePostal": "44270", - "codeCommune": "44087", - "libelleAcheminement": "MACHECOUL ST MEME", - "nomCommune": "MACHECOUL ST MEME" + "codePostal": "38840", + "codeCommune": "38410", + "libelleAcheminement": "ST LATTIER", + "nomCommune": "ST LATTIER" }, { - "codePostal": "65200", - "codeCommune": "65221", - "libelleAcheminement": "HIIS", - "nomCommune": "HIIS" + "codePostal": "39360", + "codeCommune": "39547", + "libelleAcheminement": "VAUX LES ST CLAUDE", + "nomCommune": "VAUX LES ST CLAUDE" }, { - "codePostal": "15380", - "codeCommune": "15137", - "libelleAcheminement": "MOUSSAGES", - "nomCommune": "MOUSSAGES" + "codePostal": "52160", + "codeCommune": "52395", + "libelleAcheminement": "POINSON LES GRANCEY", + "nomCommune": "POINSON LES GRANCEY" }, { - "codePostal": "31530", - "codeCommune": "31277", - "libelleAcheminement": "LASSERRE PRADERE", - "nomCommune": "LASSERRE PRADERE" + "codePostal": "52230", + "codeCommune": "52219", + "libelleAcheminement": "GERMISAY", + "nomCommune": "GERMISAY" }, { - "codePostal": "44260", - "codeCommune": "44089", - "libelleAcheminement": "MALVILLE", - "nomCommune": "MALVILLE" + "codePostal": "38080", + "codeCommune": "38415", + "libelleAcheminement": "ST MARCEL BEL ACCUEIL", + "nomCommune": "ST MARCEL BEL ACCUEIL" }, { - "codePostal": "65420", - "codeCommune": "65226", - "libelleAcheminement": "IBOS", - "nomCommune": "IBOS" + "codePostal": "39300", + "codeCommune": "39554", + "libelleAcheminement": "VERS EN MONTAGNE", + "nomCommune": "VERS EN MONTAGNE" }, { - "codePostal": "15300", - "codeCommune": "15138", - "libelleAcheminement": "MURAT", - "nomCommune": "MURAT" + "codePostal": "52120", + "codeCommune": "52399", + "libelleAcheminement": "PONT LA VILLE", + "nomCommune": "PONT LA VILLE" }, { - "codePostal": "31330", - "codeCommune": "31281", - "libelleAcheminement": "LAUNAC", - "nomCommune": "LAUNAC" + "codePostal": "52600", + "codeCommune": "52228", + "libelleAcheminement": "GRANDCHAMP", + "nomCommune": "GRANDCHAMP" }, { - "codePostal": "44760", - "codeCommune": "44106", - "libelleAcheminement": "LES MOUTIERS EN RETZ", - "nomCommune": "LES MOUTIERS EN RETZ" + "codePostal": "38550", + "codeCommune": "38425", + "libelleAcheminement": "ST MAURICE L EXIL", + "nomCommune": "ST MAURICE L EXIL" }, { - "codePostal": "65240", - "codeCommune": "65234", - "libelleAcheminement": "JEZEAU", - "nomCommune": "JEZEAU" + "codePostal": "39120", + "codeCommune": "39570", + "libelleAcheminement": "VILLERS LES BOIS", + "nomCommune": "VILLERS LES BOIS" }, { - "codePostal": "15230", - "codeCommune": "15139", - "libelleAcheminement": "NARNHAC", - "nomCommune": "NARNHAC" + "codePostal": "52190", + "codeCommune": "52405", + "libelleAcheminement": "LE MONTSAUGEONNAIS", + "nomCommune": "LE MONTSAUGEONNAIS" }, { - "codePostal": "31650", - "codeCommune": "31284", - "libelleAcheminement": "LAUZERVILLE", - "nomCommune": "LAUZERVILLE" + "codePostal": "52320", + "codeCommune": "52230", + "libelleAcheminement": "GUDMONT VILLIERS", + "nomCommune": "GUDMONT VILLIERS" }, { - "codePostal": "44000", - "codeCommune": "44109", - "libelleAcheminement": "NANTES", - "nomCommune": "NANTES" + "codePostal": "38330", + "codeCommune": "38431", + "libelleAcheminement": "ST NAZAIRE LES EYMES", + "nomCommune": "ST NAZAIRE LES EYMES" }, { - "codePostal": "65700", - "codeCommune": "65243", - "libelleAcheminement": "LAFITOLE", - "nomCommune": "LAFITOLE" + "codePostal": "39190", + "codeCommune": "39576", + "libelleAcheminement": "VAL SONNETTE", + "nomCommune": "VAL SONNETTE" }, { - "codePostal": "15260", - "codeCommune": "15142", - "libelleAcheminement": "NEUVEGLISE SUR TRUYERE", - "nomCommune": "NEUVEGLISE SUR TRUYERE" + "codePostal": "52220", + "codeCommune": "52411", + "libelleAcheminement": "RIVES DERVOISES", + "nomCommune": "RIVES DERVOISES" }, { - "codePostal": "31160", - "codeCommune": "31294", - "libelleAcheminement": "LESPITEAU", - "nomCommune": "LESPITEAU" + "codePostal": "52400", + "codeCommune": "52233", + "libelleAcheminement": "GUYONVELLE", + "nomCommune": "GUYONVELLE" }, { - "codePostal": "44100", - "codeCommune": "44109", - "libelleAcheminement": "NANTES", - "nomCommune": "NANTES" + "codePostal": "38500", + "codeCommune": "38432", + "libelleAcheminement": "ST NICOLAS DE MACHERIN", + "nomCommune": "ST NICOLAS DE MACHERIN" }, { - "codePostal": "65220", - "codeCommune": "65253", - "libelleAcheminement": "LAMARQUE RUSTAING", - "nomCommune": "LAMARQUE RUSTAING" + "codePostal": "39360", + "codeCommune": "39579", + "libelleAcheminement": "VIRY", + "nomCommune": "VIRY" }, { - "codePostal": "15150", - "codeCommune": "15143", - "libelleAcheminement": "NIEUDAN", - "nomCommune": "NIEUDAN" + "codePostal": "52370", + "codeCommune": "52419", + "libelleAcheminement": "RENNEPONT", + "nomCommune": "RENNEPONT" }, { - "codePostal": "31460", - "codeCommune": "31304", - "libelleAcheminement": "LOUBENS LAURAGAIS", - "nomCommune": "LOUBENS LAURAGAIS" + "codePostal": "52150", + "codeCommune": "52234", + "libelleAcheminement": "HACOURT", + "nomCommune": "HACOURT" }, { - "codePostal": "44170", - "codeCommune": "44113", - "libelleAcheminement": "NOZAY", - "nomCommune": "NOZAY" + "codePostal": "38140", + "codeCommune": "38437", + "libelleAcheminement": "ST PAUL D IZEAUX", + "nomCommune": "ST PAUL D IZEAUX" }, { - "codePostal": "65240", - "codeCommune": "65255", - "libelleAcheminement": "LANCON", - "nomCommune": "LANCON" + "codePostal": "40330", + "codeCommune": "40002", + "libelleAcheminement": "AMOU", + "nomCommune": "AMOU" }, { - "codePostal": "15170", - "codeCommune": "15161", - "libelleAcheminement": "REZENTIERES", - "nomCommune": "REZENTIERES" + "codePostal": "52330", + "codeCommune": "52426", + "libelleAcheminement": "RIZAUCOURT BUCHEY", + "nomCommune": "RIZAUCOURT BUCHEY" }, { - "codePostal": "31510", - "codeCommune": "31306", - "libelleAcheminement": "LOURDE", - "nomCommune": "LOURDE" + "codePostal": "52600", + "codeCommune": "52242", + "libelleAcheminement": "HAUTE AMANCE", + "nomCommune": "HAUTE AMANCE" }, { - "codePostal": "44270", - "codeCommune": "44119", - "libelleAcheminement": "PAULX", - "nomCommune": "PAULX" + "codePostal": "38350", + "codeCommune": "38444", + "libelleAcheminement": "ST PIERRE DE MEAROZ", + "nomCommune": "ST PIERRE DE MEAROZ" }, { - "codePostal": "65670", - "codeCommune": "65261", - "libelleAcheminement": "LARAN", - "nomCommune": "LARAN" + "codePostal": "40990", + "codeCommune": "40003", + "libelleAcheminement": "ANGOUME", + "nomCommune": "ANGOUME" }, { - "codePostal": "15600", - "codeCommune": "15167", - "libelleAcheminement": "ROUZIERS", - "nomCommune": "ROUZIERS" + "codePostal": "52700", + "codeCommune": "52428", + "libelleAcheminement": "ROCHEFORT SUR LA COTE", + "nomCommune": "ROCHEFORT SUR LA COTE" }, { - "codePostal": "31510", - "codeCommune": "31313", - "libelleAcheminement": "MALVEZIE", - "nomCommune": "MALVEZIE" + "codePostal": "52190", + "codeCommune": "52249", + "libelleAcheminement": "ISOMES", + "nomCommune": "ISOMES" }, { - "codePostal": "44640", - "codeCommune": "44120", - "libelleAcheminement": "LE PELLERIN", - "nomCommune": "LE PELLERIN" + "codePostal": "38220", + "codeCommune": "38445", + "libelleAcheminement": "ST PIERRE DE MESAGE", + "nomCommune": "ST PIERRE DE MESAGE" }, { - "codePostal": "65700", - "codeCommune": "65264", - "libelleAcheminement": "LASCAZERES", - "nomCommune": "LASCAZERES" + "codePostal": "40110", + "codeCommune": "40006", + "libelleAcheminement": "ARENGOSSE", + "nomCommune": "ARENGOSSE" }, { - "codePostal": "15320", - "codeCommune": "15168", - "libelleAcheminement": "RUYNES EN MARGERIDE", - "nomCommune": "RUYNES EN MARGERIDE" + "codePostal": "52210", + "codeCommune": "52431", + "libelleAcheminement": "ROCHETAILLEE", + "nomCommune": "ROCHETAILLEE" }, { - "codePostal": "31390", - "codeCommune": "31320", - "libelleAcheminement": "MARQUEFAVE", - "nomCommune": "MARQUEFAVE" + "codePostal": "52000", + "codeCommune": "52251", + "libelleAcheminement": "JONCHERY", + "nomCommune": "JONCHERY" }, { - "codePostal": "44210", - "codeCommune": "44131", - "libelleAcheminement": "PORNIC", - "nomCommune": "PORNIC" + "codePostal": "38510", + "codeCommune": "38458", + "libelleAcheminement": "ST SORLIN DE MORESTEL", + "nomCommune": "ST SORLIN DE MORESTEL" }, { - "codePostal": "65670", - "codeCommune": "65266", - "libelleAcheminement": "LASSALES", - "nomCommune": "LASSALES" + "codePostal": "40090", + "codeCommune": "40012", + "libelleAcheminement": "ARTASSENX", + "nomCommune": "ARTASSENX" }, { - "codePostal": "15140", - "codeCommune": "15174", - "libelleAcheminement": "ST BONNET DE SALERS", - "nomCommune": "ST BONNET DE SALERS" + "codePostal": "52200", + "codeCommune": "52449", + "libelleAcheminement": "SAINTS GEOSMES", + "nomCommune": "SAINTS GEOSMES" }, { - "codePostal": "31260", - "codeCommune": "31321", - "libelleAcheminement": "MARSOULAS", - "nomCommune": "MARSOULAS" + "codePostal": "52310", + "codeCommune": "52260", + "libelleAcheminement": "LAMANCINE", + "nomCommune": "LAMANCINE" }, { - "codePostal": "44640", - "codeCommune": "44145", - "libelleAcheminement": "ROUANS", - "nomCommune": "ROUANS" + "codePostal": "38660", + "codeCommune": "38466", + "libelleAcheminement": "ST VINCENT DE MERCUZE", + "nomCommune": "ST VINCENT DE MERCUZE" }, { - "codePostal": "65400", - "codeCommune": "65267", - "libelleAcheminement": "LAU BALAGNAS", - "nomCommune": "LAU BALAGNAS" + "codePostal": "40120", + "codeCommune": "40014", + "libelleAcheminement": "ARUE", + "nomCommune": "ARUE" }, { - "codePostal": "15600", - "codeCommune": "15184", - "libelleAcheminement": "ST ETIENNE DE MAURS", - "nomCommune": "ST ETIENNE DE MAURS" + "codePostal": "52210", + "codeCommune": "52450", + "libelleAcheminement": "ST LOUP SUR AUJON", + "nomCommune": "ST LOUP SUR AUJON" }, { - "codePostal": "31230", - "codeCommune": "31322", - "libelleAcheminement": "MARTISSERRE", - "nomCommune": "MARTISSERRE" + "codePostal": "52220", + "codeCommune": "52266", + "libelleAcheminement": "LANEUVILLE A REMY", + "nomCommune": "LANEUVILLE A REMY" }, { - "codePostal": "44690", - "codeCommune": "44159", - "libelleAcheminement": "ST FIACRE SUR MAINE", - "nomCommune": "ST FIACRE SUR MAINE" + "codePostal": "38260", + "codeCommune": "38473", + "libelleAcheminement": "SARDIEU", + "nomCommune": "SARDIEU" }, { - "codePostal": "65380", - "codeCommune": "65268", - "libelleAcheminement": "LAYRISSE", - "nomCommune": "LAYRISSE" + "codePostal": "40500", + "codeCommune": "40020", + "libelleAcheminement": "AURICE", + "nomCommune": "AURICE" }, { - "codePostal": "15100", - "codeCommune": "15187", - "libelleAcheminement": "ST FLOUR", - "nomCommune": "ST FLOUR" + "codePostal": "52210", + "codeCommune": "52450", + "libelleAcheminement": "ST LOUP SUR AUJON", + "nomCommune": "ST LOUP SUR AUJON" }, { - "codePostal": "31310", - "codeCommune": "31326", - "libelleAcheminement": "MASSABRAC", - "nomCommune": "MASSABRAC" + "codePostal": "52230", + "codeCommune": "52288", + "libelleAcheminement": "LEZEVILLE", + "nomCommune": "LEZEVILLE" }, { - "codePostal": "44190", - "codeCommune": "44173", - "libelleAcheminement": "ST LUMINE DE CLISSON", - "nomCommune": "ST LUMINE DE CLISSON" + "codePostal": "38290", + "codeCommune": "38475", + "libelleAcheminement": "SATOLAS ET BONCE", + "nomCommune": "SATOLAS ET BONCE" }, { - "codePostal": "65100", - "codeCommune": "65271", - "libelleAcheminement": "LEZIGNAN", - "nomCommune": "LEZIGNAN" + "codePostal": "40380", + "codeCommune": "40023", + "libelleAcheminement": "BAIGTS", + "nomCommune": "BAIGTS" }, { - "codePostal": "15100", - "codeCommune": "15188", - "libelleAcheminement": "ST GEORGES", - "nomCommune": "ST GEORGES" + "codePostal": "52200", + "codeCommune": "52452", + "libelleAcheminement": "ST MARTIN LES LANGRES", + "nomCommune": "ST MARTIN LES LANGRES" }, { - "codePostal": "31290", - "codeCommune": "31328", - "libelleAcheminement": "MAUREMONT", - "nomCommune": "MAUREMONT" + "codePostal": "52500", + "codeCommune": "52290", + "libelleAcheminement": "LES LOGES", + "nomCommune": "LES LOGES" }, { - "codePostal": "44550", - "codeCommune": "44176", - "libelleAcheminement": "ST MALO DE GUERSAC", - "nomCommune": "ST MALO DE GUERSAC" + "codePostal": "38290", + "codeCommune": "38475", + "libelleAcheminement": "SATOLAS ET BONCE", + "nomCommune": "SATOLAS ET BONCE" }, { - "codePostal": "65250", - "codeCommune": "65279", - "libelleAcheminement": "LORTET", - "nomCommune": "LORTET" + "codePostal": "40170", + "codeCommune": "40043", + "libelleAcheminement": "BIAS", + "nomCommune": "BIAS" }, { - "codePostal": "15150", - "codeCommune": "15189", - "libelleAcheminement": "ST GERONS", - "nomCommune": "ST GERONS" + "codePostal": "52140", + "codeCommune": "52461", + "libelleAcheminement": "SARREY", + "nomCommune": "SARREY" }, { - "codePostal": "31190", - "codeCommune": "31330", - "libelleAcheminement": "MAURESSAC", - "nomCommune": "MAURESSAC" + "codePostal": "52240", + "codeCommune": "52291", + "libelleAcheminement": "LONGCHAMP", + "nomCommune": "LONGCHAMP" }, { - "codePostal": "44540", - "codeCommune": "44180", - "libelleAcheminement": "VALLONS DE L ERDRE", - "nomCommune": "VALLONS DE L ERDRE" + "codePostal": "38260", + "codeCommune": "38479", + "libelleAcheminement": "PORTE DES BONNEVAUX", + "nomCommune": "PORTE DES BONNEVAUX" }, { - "codePostal": "65100", - "codeCommune": "65286", - "libelleAcheminement": "LOURDES", - "nomCommune": "LOURDES" + "codePostal": "40600", + "codeCommune": "40046", + "libelleAcheminement": "BISCARROSSE", + "nomCommune": "BISCARROSSE" }, { - "codePostal": "15310", - "codeCommune": "15191", - "libelleAcheminement": "ST ILLIDE", - "nomCommune": "ST ILLIDE" + "codePostal": "52700", + "codeCommune": "52468", + "libelleAcheminement": "SEMILLY", + "nomCommune": "SEMILLY" }, { - "codePostal": "31440", - "codeCommune": "31337", - "libelleAcheminement": "MELLES", - "nomCommune": "MELLES" + "codePostal": "52250", + "codeCommune": "52292", + "libelleAcheminement": "LONGEAU PERCEY", + "nomCommune": "LONGEAU PERCEY" }, { - "codePostal": "44600", - "codeCommune": "44184", - "libelleAcheminement": "ST NAZAIRE", - "nomCommune": "ST NAZAIRE" + "codePostal": "38300", + "codeCommune": "38481", + "libelleAcheminement": "SEREZIN DE LA TOUR", + "nomCommune": "SEREZIN DE LA TOUR" }, { - "codePostal": "65120", - "codeCommune": "65295", - "libelleAcheminement": "LUZ ST SAUVEUR", - "nomCommune": "LUZ ST SAUVEUR" + "codePostal": "40090", + "codeCommune": "40051", + "libelleAcheminement": "BOUGUE", + "nomCommune": "BOUGUE" }, { - "codePostal": "15140", - "codeCommune": "15200", - "libelleAcheminement": "ST MARTIN CANTALES", - "nomCommune": "ST MARTIN CANTALES" + "codePostal": "52000", + "codeCommune": "52469", + "libelleAcheminement": "SEMOUTIERS MONTSAON", + "nomCommune": "SEMOUTIERS MONTSAON" }, { - "codePostal": "31160", - "codeCommune": "31342", - "libelleAcheminement": "MILHAS", - "nomCommune": "MILHAS" + "codePostal": "52250", + "codeCommune": "52292", + "libelleAcheminement": "LONGEAU PERCEY", + "nomCommune": "LONGEAU PERCEY" }, { - "codePostal": "44310", - "codeCommune": "44188", - "libelleAcheminement": "ST PHILBERT DE GRAND LIEU", - "nomCommune": "ST PHILBERT DE GRAND LIEU" + "codePostal": "38200", + "codeCommune": "38487", + "libelleAcheminement": "SEYSSUEL", + "nomCommune": "SEYSSUEL" }, { - "codePostal": "65120", - "codeCommune": "65295", - "libelleAcheminement": "LUZ ST SAUVEUR", - "nomCommune": "LUZ ST SAUVEUR" + "codePostal": "40330", + "codeCommune": "40054", + "libelleAcheminement": "BRASSEMPOUY", + "nomCommune": "BRASSEMPOUY" }, { - "codePostal": "15140", - "codeCommune": "15202", - "libelleAcheminement": "ST MARTIN VALMEROUX", - "nomCommune": "ST MARTIN VALMEROUX" + "codePostal": "52400", + "codeCommune": "52470", + "libelleAcheminement": "SERQUEUX", + "nomCommune": "SERQUEUX" }, { - "codePostal": "31340", - "codeCommune": "31346", - "libelleAcheminement": "MIREPOIX SUR TARN", - "nomCommune": "MIREPOIX SUR TARN" + "codePostal": "52150", + "codeCommune": "52304", + "libelleAcheminement": "MALAINCOURT SUR MEUSE", + "nomCommune": "MALAINCOURT SUR MEUSE" }, { - "codePostal": "44590", - "codeCommune": "44197", - "libelleAcheminement": "SION LES MINES", - "nomCommune": "SION LES MINES" + "codePostal": "38590", + "codeCommune": "38490", + "libelleAcheminement": "SILLANS", + "nomCommune": "SILLANS" }, { - "codePostal": "65700", - "codeCommune": "65304", - "libelleAcheminement": "MAUBOURGUET", - "nomCommune": "MAUBOURGUET" + "codePostal": "40090", + "codeCommune": "40064", + "libelleAcheminement": "CANENX ET REAUT", + "nomCommune": "CANENX ET REAUT" }, { - "codePostal": "15350", - "codeCommune": "15206", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "52120", + "codeCommune": "52474", + "libelleAcheminement": "SILVAROUVRES", + "nomCommune": "SILVAROUVRES" }, { - "codePostal": "31850", - "codeCommune": "31352", - "libelleAcheminement": "MONDOUZIL", - "nomCommune": "MONDOUZIL" + "codePostal": "52800", + "codeCommune": "52305", + "libelleAcheminement": "MANDRES LA COTE", + "nomCommune": "MANDRES LA COTE" }, { - "codePostal": "44840", - "codeCommune": "44198", - "libelleAcheminement": "LES SORINIERES", - "nomCommune": "LES SORINIERES" + "codePostal": "38660", + "codeCommune": "38503", + "libelleAcheminement": "LA TERRASSE", + "nomCommune": "LA TERRASSE" }, { - "codePostal": "65130", - "codeCommune": "65306", - "libelleAcheminement": "MAUVEZIN", - "nomCommune": "MAUVEZIN" + "codePostal": "40320", + "codeCommune": "40082", + "libelleAcheminement": "CLASSUN", + "nomCommune": "CLASSUN" }, { - "codePostal": "15140", - "codeCommune": "15208", - "libelleAcheminement": "ST PROJET DE SALERS", - "nomCommune": "ST PROJET DE SALERS" + "codePostal": "52150", + "codeCommune": "52476", + "libelleAcheminement": "SOMMERECOURT", + "nomCommune": "SOMMERECOURT" }, { - "codePostal": "31560", - "codeCommune": "31354", - "libelleAcheminement": "MONESTROL", - "nomCommune": "MONESTROL" + "codePostal": "52260", + "codeCommune": "52307", + "libelleAcheminement": "MARAC", + "nomCommune": "MARAC" }, { - "codePostal": "44470", - "codeCommune": "44204", - "libelleAcheminement": "THOUARE SUR LOIRE", - "nomCommune": "THOUARE SUR LOIRE" + "codePostal": "38260", + "codeCommune": "38505", + "libelleAcheminement": "THODURE", + "nomCommune": "THODURE" }, { - "codePostal": "65240", - "codeCommune": "65317", - "libelleAcheminement": "MONT", - "nomCommune": "MONT" + "codePostal": "40210", + "codeCommune": "40085", + "libelleAcheminement": "COMMENSACQ", + "nomCommune": "COMMENSACQ" }, { - "codePostal": "15600", - "codeCommune": "15212", - "libelleAcheminement": "ST SANTIN DE MAURS", - "nomCommune": "ST SANTIN DE MAURS" + "codePostal": "52230", + "codeCommune": "52491", + "libelleAcheminement": "THONNANCE LES MOULINS", + "nomCommune": "THONNANCE LES MOULINS" }, { - "codePostal": "31380", - "codeCommune": "31358", - "libelleAcheminement": "MONTASTRUC LA CONSEILLERE", - "nomCommune": "MONTASTRUC LA CONSEILLERE" + "codePostal": "52300", + "codeCommune": "52316", + "libelleAcheminement": "MATHONS", + "nomCommune": "MATHONS" }, { - "codePostal": "44390", - "codeCommune": "44205", - "libelleAcheminement": "LES TOUCHES", - "nomCommune": "LES TOUCHES" + "codePostal": "38230", + "codeCommune": "38507", + "libelleAcheminement": "TIGNIEU JAMEYZIEU", + "nomCommune": "TIGNIEU JAMEYZIEU" }, { - "codePostal": "65140", - "codeCommune": "65325", - "libelleAcheminement": "MOUMOULOUS", - "nomCommune": "MOUMOULOUS" + "codePostal": "40100", + "codeCommune": "40088", + "libelleAcheminement": "DAX", + "nomCommune": "DAX" }, { - "codePostal": "15110", - "codeCommune": "15216", - "libelleAcheminement": "ST URCIZE", - "nomCommune": "ST URCIZE" + "codePostal": "52600", + "codeCommune": "52492", + "libelleAcheminement": "TORCENAY", + "nomCommune": "TORCENAY" }, { - "codePostal": "31110", - "codeCommune": "31360", - "libelleAcheminement": "MONTAUBAN DE LUCHON", - "nomCommune": "MONTAUBAN DE LUCHON" + "codePostal": "52110", + "codeCommune": "52321", + "libelleAcheminement": "MERTRUD", + "nomCommune": "MERTRUD" }, { - "codePostal": "44570", - "codeCommune": "44210", - "libelleAcheminement": "TRIGNAC", - "nomCommune": "TRIGNAC" + "codePostal": "38690", + "codeCommune": "38508", + "libelleAcheminement": "TORCHEFELON", + "nomCommune": "TORCHEFELON" }, { - "codePostal": "65200", - "codeCommune": "65328", - "libelleAcheminement": "NEUILH", - "nomCommune": "NEUILH" + "codePostal": "40800", + "codeCommune": "40091", + "libelleAcheminement": "DUHORT BACHEN", + "nomCommune": "DUHORT BACHEN" }, { - "codePostal": "15140", - "codeCommune": "15219", - "libelleAcheminement": "SALERS", - "nomCommune": "SALERS" + "codePostal": "52130", + "codeCommune": "52497", + "libelleAcheminement": "TROISFONTAINES LA VILLE", + "nomCommune": "TROISFONTAINES LA VILLE" }, { - "codePostal": "31410", - "codeCommune": "31361", - "libelleAcheminement": "MONTAUT", - "nomCommune": "MONTAUT" + "codePostal": "52400", + "codeCommune": "52328", + "libelleAcheminement": "MONTCHARVOT", + "nomCommune": "MONTCHARVOT" }, { - "codePostal": "44640", - "codeCommune": "44220", - "libelleAcheminement": "VUE", - "nomCommune": "VUE" + "codePostal": "38660", + "codeCommune": "38511", + "libelleAcheminement": "LE TOUVET", + "nomCommune": "LE TOUVET" }, { - "codePostal": "65190", - "codeCommune": "65333", - "libelleAcheminement": "OLEAC DESSUS", - "nomCommune": "OLEAC DESSUS" + "codePostal": "40240", + "codeCommune": "40096", + "libelleAcheminement": "ESTIGARDE", + "nomCommune": "ESTIGARDE" }, { - "codePostal": "15290", - "codeCommune": "15224", - "libelleAcheminement": "LA SEGALASSIERE", - "nomCommune": "LA SEGALASSIERE" + "codePostal": "52130", + "codeCommune": "52497", + "libelleAcheminement": "TROISFONTAINES LA VILLE", + "nomCommune": "TROISFONTAINES LA VILLE" }, { - "codePostal": "31230", - "codeCommune": "31363", - "libelleAcheminement": "MONTBERNARD", - "nomCommune": "MONTBERNARD" + "codePostal": "52330", + "codeCommune": "52330", + "libelleAcheminement": "MONTHERIES", + "nomCommune": "MONTHERIES" }, { - "codePostal": "44810", - "codeCommune": "44221", - "libelleAcheminement": "LA CHEVALLERAIS", - "nomCommune": "LA CHEVALLERAIS" + "codePostal": "38710", + "codeCommune": "38514", + "libelleAcheminement": "TREMINIS", + "nomCommune": "TREMINIS" }, { - "codePostal": "65190", - "codeCommune": "65337", - "libelleAcheminement": "ORIEUX", - "nomCommune": "ORIEUX" + "codePostal": "40500", + "codeCommune": "40099", + "libelleAcheminement": "FARGUES", + "nomCommune": "FARGUES" }, { - "codePostal": "15100", - "codeCommune": "15235", - "libelleAcheminement": "LES TERNES", - "nomCommune": "LES TERNES" + "codePostal": "52300", + "codeCommune": "52512", + "libelleAcheminement": "VECQUEVILLE", + "nomCommune": "VECQUEVILLE" }, { - "codePostal": "31510", - "codeCommune": "31369", - "libelleAcheminement": "MONT DE GALIE", - "nomCommune": "MONT DE GALIE" + "codePostal": "52220", + "codeCommune": "52331", + "libelleAcheminement": "LA PORTE DU DER", + "nomCommune": "LA PORTE DU DER" }, { - "codePostal": "45480", - "codeCommune": "45005", - "libelleAcheminement": "ANDONVILLE", - "nomCommune": "ANDONVILLE" + "codePostal": "38460", + "codeCommune": "38532", + "libelleAcheminement": "VENERIEU", + "nomCommune": "VENERIEU" }, { - "codePostal": "65350", - "codeCommune": "65342", - "libelleAcheminement": "OSMETS", - "nomCommune": "OSMETS" + "codePostal": "40190", + "codeCommune": "40100", + "libelleAcheminement": "LE FRECHE", + "nomCommune": "LE FRECHE" }, { - "codePostal": "15100", - "codeCommune": "15237", - "libelleAcheminement": "TIVIERS", - "nomCommune": "TIVIERS" + "codePostal": "52800", + "codeCommune": "52518", + "libelleAcheminement": "VESAIGNES SUR MARNE", + "nomCommune": "VESAIGNES SUR MARNE" }, { - "codePostal": "31430", - "codeCommune": "31370", - "libelleAcheminement": "MONTEGUT BOURJAC", - "nomCommune": "MONTEGUT BOURJAC" + "codePostal": "52140", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "45170", - "codeCommune": "45009", - "libelleAcheminement": "ASCHERES LE MARCHE", - "nomCommune": "ASCHERES LE MARCHE" + "codePostal": "38460", + "codeCommune": "38535", + "libelleAcheminement": "VERNAS", + "nomCommune": "VERNAS" }, { - "codePostal": "65370", - "codeCommune": "65347", - "libelleAcheminement": "OURDE", - "nomCommune": "OURDE" + "codePostal": "40270", + "codeCommune": "40117", + "libelleAcheminement": "GRENADE SUR L ADOUR", + "nomCommune": "GRENADE SUR L ADOUR" }, { - "codePostal": "15400", - "codeCommune": "15243", - "libelleAcheminement": "TRIZAC", - "nomCommune": "TRIZAC" + "codePostal": "52190", + "codeCommune": "52519", + "libelleAcheminement": "VESVRES SOUS CHALANCEY", + "nomCommune": "VESVRES SOUS CHALANCEY" }, { - "codePostal": "31230", - "codeCommune": "31373", - "libelleAcheminement": "MONTESQUIEU GUITTAUT", - "nomCommune": "MONTESQUIEU GUITTAUT" + "codePostal": "52140", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "45500", - "codeCommune": "45016", - "libelleAcheminement": "AUTRY LE CHATEL", - "nomCommune": "AUTRY LE CHATEL" + "codePostal": "38150", + "codeCommune": "38536", + "libelleAcheminement": "VERNIOZ", + "nomCommune": "VERNIOZ" }, { - "codePostal": "65100", - "codeCommune": "65349", - "libelleAcheminement": "OURDON", - "nomCommune": "OURDON" + "codePostal": "40300", + "codeCommune": "40120", + "libelleAcheminement": "HASTINGUES", + "nomCommune": "HASTINGUES" }, { - "codePostal": "15240", - "codeCommune": "15250", - "libelleAcheminement": "VEBRET", - "nomCommune": "VEBRET" + "codePostal": "52310", + "codeCommune": "52522", + "libelleAcheminement": "VIEVILLE", + "nomCommune": "VIEVILLE" }, { - "codePostal": "31450", - "codeCommune": "31384", - "libelleAcheminement": "MONTLAUR", - "nomCommune": "MONTLAUR" + "codePostal": "52130", + "codeCommune": "52336", + "libelleAcheminement": "MONTREUIL SUR BLAISE", + "nomCommune": "MONTREUIL SUR BLAISE" }, { - "codePostal": "45270", - "codeCommune": "45017", - "libelleAcheminement": "AUVILLIERS EN GATINAIS", - "nomCommune": "AUVILLIERS EN GATINAIS" + "codePostal": "38420", + "codeCommune": "38538", + "libelleAcheminement": "LE VERSOUD", + "nomCommune": "LE VERSOUD" }, { - "codePostal": "65400", - "codeCommune": "65352", - "libelleAcheminement": "OUZOUS", - "nomCommune": "OUZOUS" + "codePostal": "40280", + "codeCommune": "40122", + "libelleAcheminement": "HAUT MAUCO", + "nomCommune": "HAUT MAUCO" }, { - "codePostal": "15100", - "codeCommune": "15251", - "libelleAcheminement": "VEDRINES ST LOUP", - "nomCommune": "VEDRINES ST LOUP" + "codePostal": "52130", + "codeCommune": "52528", + "libelleAcheminement": "VILLE EN BLAISOIS", + "nomCommune": "VILLE EN BLAISOIS" }, { - "codePostal": "31260", - "codeCommune": "31391", - "libelleAcheminement": "MONTSAUNES", - "nomCommune": "MONTSAUNES" + "codePostal": "52230", + "codeCommune": "52337", + "libelleAcheminement": "MONTREUIL SUR THONNANCE", + "nomCommune": "MONTREUIL SUR THONNANCE" }, { - "codePostal": "45130", - "codeCommune": "45024", - "libelleAcheminement": "BAULE", - "nomCommune": "BAULE" + "codePostal": "38390", + "codeCommune": "38539", + "libelleAcheminement": "VERTRIEU", + "nomCommune": "VERTRIEU" }, { - "codePostal": "65190", - "codeCommune": "65353", - "libelleAcheminement": "OZON", - "nomCommune": "OZON" + "codePostal": "40300", + "codeCommune": "40132", + "libelleAcheminement": "LABATUT", + "nomCommune": "LABATUT" }, { - "codePostal": "15800", - "codeCommune": "15258", - "libelleAcheminement": "VIC SUR CERE", - "nomCommune": "VIC SUR CERE" + "codePostal": "52190", + "codeCommune": "52529", + "libelleAcheminement": "VILLEGUSIEN LE LAC", + "nomCommune": "VILLEGUSIEN LE LAC" }, { - "codePostal": "31350", - "codeCommune": "31397", - "libelleAcheminement": "NENIGAN", - "nomCommune": "NENIGAN" + "codePostal": "52360", + "codeCommune": "52348", + "libelleAcheminement": "NEUILLY L EVEQUE", + "nomCommune": "NEUILLY L EVEQUE" }, { - "codePostal": "45290", - "codeCommune": "45036", - "libelleAcheminement": "BOISMORAND", - "nomCommune": "BOISMORAND" + "codePostal": "38090", + "codeCommune": "38553", + "libelleAcheminement": "VILLEFONTAINE", + "nomCommune": "VILLEFONTAINE" }, { - "codePostal": "65240", - "codeCommune": "65354", - "libelleAcheminement": "PAILHAC", - "nomCommune": "PAILHAC" + "codePostal": "40250", + "codeCommune": "40143", + "libelleAcheminement": "LAMOTHE", + "nomCommune": "LAMOTHE" }, { - "codePostal": "15120", - "codeCommune": "15260", - "libelleAcheminement": "VIEILLEVIE", - "nomCommune": "VIEILLEVIE" + "codePostal": "52000", + "codeCommune": "52535", + "libelleAcheminement": "VILLIERS LE SEC", + "nomCommune": "VILLIERS LE SEC" }, { - "codePostal": "31410", - "codeCommune": "31399", - "libelleAcheminement": "NOE", - "nomCommune": "NOE" + "codePostal": "52800", + "codeCommune": "52352", + "libelleAcheminement": "NINVILLE", + "nomCommune": "NINVILLE" }, { - "codePostal": "45460", - "codeCommune": "45039", - "libelleAcheminement": "BONNEE", - "nomCommune": "BONNEE" + "codePostal": "38280", + "codeCommune": "38557", + "libelleAcheminement": "VILLETTE D ANTHON", + "nomCommune": "VILLETTE D ANTHON" }, { - "codePostal": "65350", - "codeCommune": "65359", - "libelleAcheminement": "PEYRIGUERE", - "nomCommune": "PEYRIGUERE" + "codePostal": "40170", + "codeCommune": "40154", + "libelleAcheminement": "LEVIGNACQ", + "nomCommune": "LEVIGNACQ" }, { - "codePostal": "15130", - "codeCommune": "15266", - "libelleAcheminement": "YOLET", - "nomCommune": "YOLET" + "codePostal": "52400", + "codeCommune": "52544", + "libelleAcheminement": "VOISEY", + "nomCommune": "VOISEY" }, { - "codePostal": "31450", - "codeCommune": "31402", - "libelleAcheminement": "ODARS", - "nomCommune": "ODARS" + "codePostal": "52800", + "codeCommune": "52353", + "libelleAcheminement": "NOGENT", + "nomCommune": "NOGENT" }, { - "codePostal": "45460", - "codeCommune": "45042", - "libelleAcheminement": "LES BORDES", - "nomCommune": "LES BORDES" + "codePostal": "38500", + "codeCommune": "38563", + "libelleAcheminement": "VOIRON", + "nomCommune": "VOIRON" }, { - "codePostal": "65140", - "codeCommune": "65361", - "libelleAcheminement": "PEYRUN", - "nomCommune": "PEYRUN" + "codePostal": "40260", + "codeCommune": "40155", + "libelleAcheminement": "LINXE", + "nomCommune": "LINXE" }, { - "codePostal": "16140", - "codeCommune": "16005", - "libelleAcheminement": "AIGRE", - "nomCommune": "AIGRE" + "codePostal": "52500", + "codeCommune": "52546", + "libelleAcheminement": "VONCOURT", + "nomCommune": "VONCOURT" }, { - "codePostal": "31510", - "codeCommune": "31408", - "libelleAcheminement": "PAYSSOUS", - "nomCommune": "PAYSSOUS" + "codePostal": "52800", + "codeCommune": "52353", + "libelleAcheminement": "NOGENT", + "nomCommune": "NOGENT" }, { - "codePostal": "45430", - "codeCommune": "45043", - "libelleAcheminement": "BOU", - "nomCommune": "BOU" + "codePostal": "39500", + "codeCommune": "39001", + "libelleAcheminement": "ABERGEMENT LA RONCE", + "nomCommune": "ABERGEMENT LA RONCE" }, { - "codePostal": "65230", - "codeCommune": "65368", - "libelleAcheminement": "POUY", - "nomCommune": "POUY" + "codePostal": "40240", + "codeCommune": "40158", + "libelleAcheminement": "LOSSE", + "nomCommune": "LOSSE" }, { - "codePostal": "16490", - "codeCommune": "16009", - "libelleAcheminement": "AMBERNAC", - "nomCommune": "AMBERNAC" + "codePostal": "52310", + "codeCommune": "52548", + "libelleAcheminement": "VRAINCOURT", + "nomCommune": "VRAINCOURT" }, { - "codePostal": "31140", - "codeCommune": "31410", - "libelleAcheminement": "PECHBONNIEU", - "nomCommune": "PECHBONNIEU" + "codePostal": "52800", + "codeCommune": "52353", + "libelleAcheminement": "NOGENT", + "nomCommune": "NOGENT" }, { - "codePostal": "45300", - "codeCommune": "45045", - "libelleAcheminement": "BOUILLY EN GATINAIS", - "nomCommune": "BOUILLY EN GATINAIS" + "codePostal": "39110", + "codeCommune": "39006", + "libelleAcheminement": "AIGLEPIERRE", + "nomCommune": "AIGLEPIERRE" }, { - "codePostal": "65350", - "codeCommune": "65380", - "libelleAcheminement": "SABALOS", - "nomCommune": "SABALOS" + "codePostal": "40380", + "codeCommune": "40159", + "libelleAcheminement": "LOUER", + "nomCommune": "LOUER" }, { - "codePostal": "16300", - "codeCommune": "16014", - "libelleAcheminement": "ANGEDUC", - "nomCommune": "ANGEDUC" + "codePostal": "53940", + "codeCommune": "53001", + "libelleAcheminement": "AHUILLE", + "nomCommune": "AHUILLE" }, { - "codePostal": "31820", - "codeCommune": "31417", - "libelleAcheminement": "PIBRAC", - "nomCommune": "PIBRAC" + "codePostal": "52600", + "codeCommune": "52354", + "libelleAcheminement": "NOIDANT CHATENOY", + "nomCommune": "NOIDANT CHATENOY" }, { - "codePostal": "45300", - "codeCommune": "45047", - "libelleAcheminement": "BOUZONVILLE AUX BOIS", - "nomCommune": "BOUZONVILLE AUX BOIS" + "codePostal": "39110", + "codeCommune": "39009", + "libelleAcheminement": "ANDELOT EN MONTAGNE", + "nomCommune": "ANDELOT EN MONTAGNE" }, { - "codePostal": "65170", - "codeCommune": "65388", - "libelleAcheminement": "ST LARY SOULAN", - "nomCommune": "ST LARY SOULAN" + "codePostal": "40240", + "codeCommune": "40161", + "libelleAcheminement": "LUBBON", + "nomCommune": "LUBBON" }, { - "codePostal": "16130", - "codeCommune": "16018", - "libelleAcheminement": "ARS", - "nomCommune": "ARS" + "codePostal": "53300", + "codeCommune": "53003", + "libelleAcheminement": "AMBRIERES LES VALLEES", + "nomCommune": "AMBRIERES LES VALLEES" }, { - "codePostal": "31130", - "codeCommune": "31418", - "libelleAcheminement": "PIN BALMA", - "nomCommune": "PIN BALMA" + "codePostal": "52200", + "codeCommune": "52355", + "libelleAcheminement": "NOIDANT LE ROCHEUX", + "nomCommune": "NOIDANT LE ROCHEUX" }, { - "codePostal": "45250", - "codeCommune": "45053", - "libelleAcheminement": "BRIARE", - "nomCommune": "BRIARE" + "codePostal": "39120", + "codeCommune": "39011", + "libelleAcheminement": "ANNOIRE", + "nomCommune": "ANNOIRE" }, { - "codePostal": "65230", - "codeCommune": "65404", - "libelleAcheminement": "SARIAC MAGNOAC", - "nomCommune": "SARIAC MAGNOAC" + "codePostal": "40700", + "codeCommune": "40172", + "libelleAcheminement": "MANT", + "nomCommune": "MANT" }, { - "codePostal": "16460", - "codeCommune": "16023", - "libelleAcheminement": "AUNAC SUR CHARENTE", - "nomCommune": "AUNAC SUR CHARENTE" + "codePostal": "53240", + "codeCommune": "53005", + "libelleAcheminement": "ANDOUILLE", + "nomCommune": "ANDOUILLE" }, { - "codePostal": "31370", - "codeCommune": "31419", - "libelleAcheminement": "LE PIN MURELET", - "nomCommune": "LE PIN MURELET" + "codePostal": "52300", + "codeCommune": "52356", + "libelleAcheminement": "NOMECOURT", + "nomCommune": "NOMECOURT" }, { - "codePostal": "45620", - "codeCommune": "45063", - "libelleAcheminement": "CERDON", - "nomCommune": "CERDON" + "codePostal": "39600", + "codeCommune": "39013", + "libelleAcheminement": "ARBOIS", + "nomCommune": "ARBOIS" }, { - "codePostal": "65370", - "codeCommune": "65407", - "libelleAcheminement": "SARP", - "nomCommune": "SARP" + "codePostal": "40400", + "codeCommune": "40180", + "libelleAcheminement": "MEILHAN", + "nomCommune": "MEILHAN" }, { - "codePostal": "16460", - "codeCommune": "16023", - "libelleAcheminement": "AUNAC SUR CHARENTE", - "nomCommune": "AUNAC SUR CHARENTE" + "codePostal": "53440", + "codeCommune": "53008", + "libelleAcheminement": "ARON", + "nomCommune": "ARON" }, { - "codePostal": "31120", - "codeCommune": "31420", - "libelleAcheminement": "PINSAGUEL", - "nomCommune": "PINSAGUEL" + "codePostal": "52250", + "codeCommune": "52364", + "libelleAcheminement": "ORCEVAUX", + "nomCommune": "ORCEVAUX" }, { - "codePostal": "45260", - "codeCommune": "45066", - "libelleAcheminement": "CHAILLY EN GATINAIS", - "nomCommune": "CHAILLY EN GATINAIS" + "codePostal": "39300", + "codeCommune": "39015", + "libelleAcheminement": "ARDON", + "nomCommune": "ARDON" }, { - "codePostal": "65700", - "codeCommune": "65412", - "libelleAcheminement": "SAUVETERRE", - "nomCommune": "SAUVETERRE" + "codePostal": "40320", + "codeCommune": "40185", + "libelleAcheminement": "MIRAMONT SENSACQ", + "nomCommune": "MIRAMONT SENSACQ" }, { - "codePostal": "16300", - "codeCommune": "16028", - "libelleAcheminement": "BARBEZIEUX ST HILAIRE", - "nomCommune": "BARBEZIEUX ST HILAIRE" + "codePostal": "53700", + "codeCommune": "53013", + "libelleAcheminement": "AVERTON", + "nomCommune": "AVERTON" }, { - "codePostal": "31450", - "codeCommune": "31437", - "libelleAcheminement": "POUZE", - "nomCommune": "POUZE" + "codePostal": "52230", + "codeCommune": "52376", + "libelleAcheminement": "PANSEY", + "nomCommune": "PANSEY" }, { - "codePostal": "45340", - "codeCommune": "45069", - "libelleAcheminement": "CHAMBON LA FORET", - "nomCommune": "CHAMBON LA FORET" + "codePostal": "39240", + "codeCommune": "39016", + "libelleAcheminement": "ARINTHOD", + "nomCommune": "ARINTHOD" }, { - "codePostal": "65220", - "codeCommune": "65423", - "libelleAcheminement": "SERE RUSTAING", - "nomCommune": "SERE RUSTAING" + "codePostal": "40700", + "codeCommune": "40188", + "libelleAcheminement": "MOMUY", + "nomCommune": "MOMUY" }, { - "codePostal": "16450", - "codeCommune": "16035", - "libelleAcheminement": "BEAULIEU SUR SONNETTE", - "nomCommune": "BEAULIEU SUR SONNETTE" + "codePostal": "53440", + "codeCommune": "53028", + "libelleAcheminement": "BELGEARD", + "nomCommune": "BELGEARD" }, { - "codePostal": "31230", - "codeCommune": "31443", - "libelleAcheminement": "PUYMAURIN", - "nomCommune": "PUYMAURIN" + "codePostal": "52400", + "codeCommune": "52377", + "libelleAcheminement": "PARNOY EN BASSIGNY", + "nomCommune": "PARNOY EN BASSIGNY" }, { - "codePostal": "45230", - "codeCommune": "45077", - "libelleAcheminement": "LA CHAPELLE SUR AVEYRON", - "nomCommune": "LA CHAPELLE SUR AVEYRON" + "codePostal": "39600", + "codeCommune": "39019", + "libelleAcheminement": "LES ARSURES", + "nomCommune": "LES ARSURES" }, { - "codePostal": "65370", - "codeCommune": "65427", - "libelleAcheminement": "SIRADAN", - "nomCommune": "SIRADAN" + "codePostal": "40500", + "codeCommune": "40191", + "libelleAcheminement": "MONTAUT", + "nomCommune": "MONTAUT" }, { - "codePostal": "16250", - "codeCommune": "16046", - "libelleAcheminement": "COTEAUX DU BLANZACAIS", - "nomCommune": "COTEAUX DU BLANZACAIS" + "codePostal": "53800", + "codeCommune": "53035", + "libelleAcheminement": "BOUCHAMPS LES CRAON", + "nomCommune": "BOUCHAMPS LES CRAON" }, { - "codePostal": "31290", - "codeCommune": "31450", - "libelleAcheminement": "RENNEVILLE", - "nomCommune": "RENNEVILLE" + "codePostal": "52200", + "codeCommune": "52380", + "libelleAcheminement": "PEIGNEY", + "nomCommune": "PEIGNEY" }, { - "codePostal": "45480", - "codeCommune": "45080", - "libelleAcheminement": "CHARMONT EN BEAUCE", - "nomCommune": "CHARMONT EN BEAUCE" + "codePostal": "39270", + "codeCommune": "39021", + "libelleAcheminement": "LA CHAILLEUSE", + "nomCommune": "LA CHAILLEUSE" }, { - "codePostal": "65700", - "codeCommune": "65429", - "libelleAcheminement": "SOMBRUN", - "nomCommune": "SOMBRUN" + "codePostal": "40500", + "codeCommune": "40196", + "libelleAcheminement": "MONTSOUE", + "nomCommune": "MONTSOUE" }, { - "codePostal": "16250", - "codeCommune": "16046", - "libelleAcheminement": "COTEAUX DU BLANZACAIS", - "nomCommune": "COTEAUX DU BLANZACAIS" + "codePostal": "53120", + "codeCommune": "53042", + "libelleAcheminement": "BRECE", + "nomCommune": "BRECE" }, { - "codePostal": "31250", - "codeCommune": "31451", - "libelleAcheminement": "REVEL", - "nomCommune": "REVEL" + "codePostal": "52500", + "codeCommune": "52406", + "libelleAcheminement": "PRESSIGNY", + "nomCommune": "PRESSIGNY" }, { - "codePostal": "45110", - "codeCommune": "45082", - "libelleAcheminement": "CHATEAUNEUF SUR LOIRE", - "nomCommune": "CHATEAUNEUF SUR LOIRE" + "codePostal": "39190", + "codeCommune": "39025", + "libelleAcheminement": "AUGEA", + "nomCommune": "AUGEA" }, { - "codePostal": "65350", - "codeCommune": "65430", - "libelleAcheminement": "SOREAC", - "nomCommune": "SOREAC" + "codePostal": "40110", + "codeCommune": "40197", + "libelleAcheminement": "MORCENX LA NOUVELLE", + "nomCommune": "MORCENX LA NOUVELLE" }, { - "codePostal": "16190", - "codeCommune": "16052", - "libelleAcheminement": "BORS DE MONTMOREAU", - "nomCommune": "BORS DE MONTMOREAU" + "codePostal": "53150", + "codeCommune": "53043", + "libelleAcheminement": "BREE", + "nomCommune": "BREE" }, { - "codePostal": "31230", - "codeCommune": "31456", - "libelleAcheminement": "RIOLAS", - "nomCommune": "RIOLAS" + "codePostal": "52700", + "codeCommune": "52407", + "libelleAcheminement": "PREZ SOUS LAFAUCHE", + "nomCommune": "PREZ SOUS LAFAUCHE" }, { - "codePostal": "45210", - "codeCommune": "45091", - "libelleAcheminement": "CHEVANNES", - "nomCommune": "CHEVANNES" + "codePostal": "39270", + "codeCommune": "39027", + "libelleAcheminement": "AUGISEY", + "nomCommune": "AUGISEY" }, { - "codePostal": "65430", - "codeCommune": "65433", - "libelleAcheminement": "SOUES", - "nomCommune": "SOUES" + "codePostal": "40110", + "codeCommune": "40197", + "libelleAcheminement": "MORCENX LA NOUVELLE", + "nomCommune": "MORCENX LA NOUVELLE" }, { - "codePostal": "16300", - "codeCommune": "16062", - "libelleAcheminement": "BRIE SOUS BARBEZIEUX", - "nomCommune": "BRIE SOUS BARBEZIEUX" + "codePostal": "53420", + "codeCommune": "53048", + "libelleAcheminement": "CHAILLAND", + "nomCommune": "CHAILLAND" }, { - "codePostal": "31360", - "codeCommune": "31457", - "libelleAcheminement": "ROQUEFORT SUR GARONNE", - "nomCommune": "ROQUEFORT SUR GARONNE" + "codePostal": "52220", + "codeCommune": "52411", + "libelleAcheminement": "RIVES DERVOISES", + "nomCommune": "RIVES DERVOISES" }, { - "codePostal": "45700", - "codeCommune": "45092", - "libelleAcheminement": "CHEVILLON SUR HUILLARD", - "nomCommune": "CHEVILLON SUR HUILLARD" + "codePostal": "39100", + "codeCommune": "39030", + "libelleAcheminement": "AUTHUME", + "nomCommune": "AUTHUME" }, { - "codePostal": "65350", - "codeCommune": "65436", - "libelleAcheminement": "SOUYEAUX", - "nomCommune": "SOUYEAUX" + "codePostal": "40110", + "codeCommune": "40197", + "libelleAcheminement": "MORCENX LA NOUVELLE", + "nomCommune": "MORCENX LA NOUVELLE" }, { - "codePostal": "16480", - "codeCommune": "16066", - "libelleAcheminement": "BROSSAC", - "nomCommune": "BROSSAC" + "codePostal": "53470", + "codeCommune": "53049", + "libelleAcheminement": "CHALONS DU MAINE", + "nomCommune": "CHALONS DU MAINE" }, { - "codePostal": "31430", - "codeCommune": "31469", - "libelleAcheminement": "ST ARAILLE", - "nomCommune": "ST ARAILLE" + "codePostal": "52140", + "codeCommune": "52415", + "libelleAcheminement": "RANCONNIERES", + "nomCommune": "RANCONNIERES" }, { - "codePostal": "45170", - "codeCommune": "45095", - "libelleAcheminement": "CHILLEURS AUX BOIS", - "nomCommune": "CHILLEURS AUX BOIS" + "codePostal": "39130", + "codeCommune": "39038", + "libelleAcheminement": "BARESIA SUR L AIN", + "nomCommune": "BARESIA SUR L AIN" }, { - "codePostal": "65300", - "codeCommune": "65437", - "libelleAcheminement": "TAJAN", - "nomCommune": "TAJAN" + "codePostal": "40700", + "codeCommune": "40198", + "libelleAcheminement": "MORGANX", + "nomCommune": "MORGANX" }, { - "codePostal": "16150", - "codeCommune": "16070", - "libelleAcheminement": "CHABANAIS", - "nomCommune": "CHABANAIS" + "codePostal": "53640", + "codeCommune": "53051", + "libelleAcheminement": "CHAMPEON", + "nomCommune": "CHAMPEON" }, { - "codePostal": "31420", - "codeCommune": "31477", - "libelleAcheminement": "ST ELIX SEGLAN", - "nomCommune": "ST ELIX SEGLAN" + "codePostal": "52000", + "codeCommune": "52421", + "libelleAcheminement": "RIAUCOURT", + "nomCommune": "RIAUCOURT" }, { - "codePostal": "45300", - "codeCommune": "45110", - "libelleAcheminement": "COURCELLES LE ROI", - "nomCommune": "COURCELLES LE ROI" + "codePostal": "39800", + "codeCommune": "39049", + "libelleAcheminement": "BERSAILLIN", + "nomCommune": "BERSAILLIN" }, { - "codePostal": "65370", - "codeCommune": "65441", - "libelleAcheminement": "THEBE", - "nomCommune": "THEBE" + "codePostal": "40110", + "codeCommune": "40210", + "libelleAcheminement": "ONESSE LAHARIE", + "nomCommune": "ONESSE LAHARIE" }, { - "codePostal": "16210", - "codeCommune": "16073", - "libelleAcheminement": "CHALAIS", - "nomCommune": "CHALAIS" + "codePostal": "53200", + "codeCommune": "53063", + "libelleAcheminement": "CHATELAIN", + "nomCommune": "CHATELAIN" }, { - "codePostal": "31470", - "codeCommune": "31481", - "libelleAcheminement": "STE FOY DE PEYROLIERES", - "nomCommune": "STE FOY DE PEYROLIERES" + "codePostal": "52190", + "codeCommune": "52425", + "libelleAcheminement": "RIVIERE LES FOSSES", + "nomCommune": "RIVIERE LES FOSSES" }, { - "codePostal": "45170", - "codeCommune": "45118", - "libelleAcheminement": "CROTTES EN PITHIVERAIS", - "nomCommune": "CROTTES EN PITHIVERAIS" + "codePostal": "39250", + "codeCommune": "39053", + "libelleAcheminement": "BIEF DU FOURG", + "nomCommune": "BIEF DU FOURG" }, { - "codePostal": "65230", - "codeCommune": "65442", - "libelleAcheminement": "THERMES MAGNOAC", - "nomCommune": "THERMES MAGNOAC" + "codePostal": "40300", + "codeCommune": "40212", + "libelleAcheminement": "ORTHEVIELLE", + "nomCommune": "ORTHEVIELLE" }, { - "codePostal": "16210", - "codeCommune": "16073", - "libelleAcheminement": "CHALAIS", - "nomCommune": "CHALAIS" + "codePostal": "53120", + "codeCommune": "53071", + "libelleAcheminement": "COLOMBIERS DU PLESSIS", + "nomCommune": "COLOMBIERS DU PLESSIS" }, { - "codePostal": "31800", - "codeCommune": "31487", - "libelleAcheminement": "ST IGNAN", - "nomCommune": "ST IGNAN" + "codePostal": "52260", + "codeCommune": "52432", + "libelleAcheminement": "ROLAMPONT", + "nomCommune": "ROLAMPONT" }, { - "codePostal": "45300", - "codeCommune": "45119", - "libelleAcheminement": "DADONVILLE", - "nomCommune": "DADONVILLE" + "codePostal": "39140", + "codeCommune": "39056", + "libelleAcheminement": "BLETTERANS", + "nomCommune": "BLETTERANS" }, { - "codePostal": "65150", - "codeCommune": "65444", - "libelleAcheminement": "TIBIRAN JAUNAC", - "nomCommune": "TIBIRAN JAUNAC" + "codePostal": "40290", + "codeCommune": "40214", + "libelleAcheminement": "OSSAGES", + "nomCommune": "OSSAGES" }, { - "codePostal": "16350", - "codeCommune": "16076", - "libelleAcheminement": "CHAMPAGNE MOUTON", - "nomCommune": "CHAMPAGNE MOUTON" + "codePostal": "53200", + "codeCommune": "53078", + "libelleAcheminement": "COUDRAY", + "nomCommune": "COUDRAY" }, { - "codePostal": "31240", - "codeCommune": "31488", - "libelleAcheminement": "ST JEAN", - "nomCommune": "ST JEAN" + "codePostal": "52150", + "codeCommune": "52433", + "libelleAcheminement": "ROMAIN SUR MEUSE", + "nomCommune": "ROMAIN SUR MEUSE" }, { - "codePostal": "45150", - "codeCommune": "45123", - "libelleAcheminement": "DARVOY", - "nomCommune": "DARVOY" + "codePostal": "39130", + "codeCommune": "39061", + "libelleAcheminement": "BOISSIA", + "nomCommune": "BOISSIA" }, { - "codePostal": "65130", - "codeCommune": "65445", - "libelleAcheminement": "TILHOUSE", - "nomCommune": "TILHOUSE" + "codePostal": "40410", + "codeCommune": "40227", + "libelleAcheminement": "PISSOS", + "nomCommune": "PISSOS" }, { - "codePostal": "16350", - "codeCommune": "16087", - "libelleAcheminement": "CHASSIECQ", - "nomCommune": "CHASSIECQ" + "codePostal": "53700", + "codeCommune": "53085", + "libelleAcheminement": "CRENNES SUR FRAUBEE", + "nomCommune": "CRENNES SUR FRAUBEE" }, { - "codePostal": "31530", - "codeCommune": "31496", - "libelleAcheminement": "STE LIVRADE", - "nomCommune": "STE LIVRADE" + "codePostal": "52300", + "codeCommune": "52440", + "libelleAcheminement": "ROUVROY SUR MARNE", + "nomCommune": "ROUVROY SUR MARNE" }, { - "codePostal": "45680", - "codeCommune": "45127", - "libelleAcheminement": "DORDIVES", - "nomCommune": "DORDIVES" + "codePostal": "39800", + "codeCommune": "39073", + "libelleAcheminement": "BRAINANS", + "nomCommune": "BRAINANS" }, { - "codePostal": "65140", - "codeCommune": "65446", - "libelleAcheminement": "TOSTAT", - "nomCommune": "TOSTAT" + "codePostal": "40700", + "codeCommune": "40232", + "libelleAcheminement": "POUDENX", + "nomCommune": "POUDENX" }, { - "codePostal": "16120", - "codeCommune": "16090", - "libelleAcheminement": "CHATEAUNEUF SUR CHARENTE", - "nomCommune": "CHATEAUNEUF SUR CHARENTE" + "codePostal": "53380", + "codeCommune": "53086", + "libelleAcheminement": "LA CROIXILLE", + "nomCommune": "LA CROIXILLE" }, { - "codePostal": "31140", - "codeCommune": "31497", - "libelleAcheminement": "ST LOUP CAMMAS", - "nomCommune": "ST LOUP CAMMAS" + "codePostal": "52200", + "codeCommune": "52453", + "libelleAcheminement": "ST MAURICE", + "nomCommune": "ST MAURICE" }, { - "codePostal": "45220", - "codeCommune": "45129", - "libelleAcheminement": "DOUCHY MONTCORBON", - "nomCommune": "DOUCHY MONTCORBON" + "codePostal": "39110", + "codeCommune": "39084", + "libelleAcheminement": "CERNANS", + "nomCommune": "CERNANS" }, { - "codePostal": "65260", - "codeCommune": "65473", - "libelleAcheminement": "VILLELONGUE", - "nomCommune": "VILLELONGUE" + "codePostal": "40380", + "codeCommune": "40235", + "libelleAcheminement": "POYANNE", + "nomCommune": "POYANNE" }, { - "codePostal": "16500", - "codeCommune": "16106", - "libelleAcheminement": "CONFOLENS", - "nomCommune": "CONFOLENS" + "codePostal": "53600", + "codeCommune": "53097", + "libelleAcheminement": "EVRON", + "nomCommune": "EVRON" }, { - "codePostal": "31360", - "codeCommune": "31503", - "libelleAcheminement": "ST MARTORY", - "nomCommune": "ST MARTORY" + "codePostal": "52800", + "codeCommune": "52459", + "libelleAcheminement": "SARCEY", + "nomCommune": "SARCEY" }, { - "codePostal": "45390", - "codeCommune": "45131", - "libelleAcheminement": "ECHILLEUSES", - "nomCommune": "ECHILLEUSES" + "codePostal": "39570", + "codeCommune": "39088", + "libelleAcheminement": "CESANCEY", + "nomCommune": "CESANCEY" }, { - "codePostal": "65500", - "codeCommune": "65477", - "libelleAcheminement": "VILLENAVE PRES MARSAC", - "nomCommune": "VILLENAVE PRES MARSAC" + "codePostal": "40465", + "codeCommune": "40237", + "libelleAcheminement": "PRECHACQ LES BAINS", + "nomCommune": "PRECHACQ LES BAINS" }, { - "codePostal": "16330", - "codeCommune": "16108", - "libelleAcheminement": "COULONGES", - "nomCommune": "COULONGES" + "codePostal": "53540", + "codeCommune": "53102", + "libelleAcheminement": "GASTINES", + "nomCommune": "GASTINES" }, { - "codePostal": "31510", - "codeCommune": "31509", - "libelleAcheminement": "ST PE D ARDET", - "nomCommune": "ST PE D ARDET" + "codePostal": "52700", + "codeCommune": "52473", + "libelleAcheminement": "SIGNEVILLE", + "nomCommune": "SIGNEVILLE" }, { - "codePostal": "45300", - "codeCommune": "45137", - "libelleAcheminement": "ESCRENNES", - "nomCommune": "ESCRENNES" + "codePostal": "39380", + "codeCommune": "39093", + "libelleAcheminement": "CHAMBLAY", + "nomCommune": "CHAMBLAY" }, { - "codePostal": "65120", - "codeCommune": "65478", - "libelleAcheminement": "VISCOS", - "nomCommune": "VISCOS" + "codePostal": "40630", + "codeCommune": "40246", + "libelleAcheminement": "SABRES", + "nomCommune": "SABRES" }, { - "codePostal": "16700", - "codeCommune": "16110", - "libelleAcheminement": "COURCOME", - "nomCommune": "COURCOME" + "codePostal": "53370", + "codeCommune": "53106", + "libelleAcheminement": "GESVRES", + "nomCommune": "GESVRES" }, { - "codePostal": "31350", - "codeCommune": "31510", - "libelleAcheminement": "ST PE DELBOSC", - "nomCommune": "ST PE DELBOSC" + "codePostal": "52400", + "codeCommune": "52483", + "libelleAcheminement": "SOYERS", + "nomCommune": "SOYERS" }, { - "codePostal": "45240", - "codeCommune": "45146", - "libelleAcheminement": "LA FERTE ST AUBIN", - "nomCommune": "LA FERTE ST AUBIN" + "codePostal": "39290", + "codeCommune": "39096", + "libelleAcheminement": "CHAMPAGNEY", + "nomCommune": "CHAMPAGNEY" }, { - "codePostal": "65150", - "codeCommune": "65482", - "libelleAcheminement": "CANTAOUS", - "nomCommune": "CANTAOUS" + "codePostal": "40300", + "codeCommune": "40254", + "libelleAcheminement": "ST CRICQ DU GAVE", + "nomCommune": "ST CRICQ DU GAVE" }, { - "codePostal": "16190", - "codeCommune": "16111", - "libelleAcheminement": "COURGEAC", - "nomCommune": "COURGEAC" + "codePostal": "53300", + "codeCommune": "53111", + "libelleAcheminement": "LA HAIE TRAVERSAINE", + "nomCommune": "LA HAIE TRAVERSAINE" }, { - "codePostal": "31410", - "codeCommune": "31517", - "libelleAcheminement": "ST SULPICE SUR LEZE", - "nomCommune": "ST SULPICE SUR LEZE" + "codePostal": "52110", + "codeCommune": "52495", + "libelleAcheminement": "TREMILLY", + "nomCommune": "TREMILLY" }, { - "codePostal": "45320", - "codeCommune": "45149", - "libelleAcheminement": "FOUCHEROLLES", - "nomCommune": "FOUCHEROLLES" + "codePostal": "39300", + "codeCommune": "39097", + "libelleAcheminement": "CHAMPAGNOLE", + "nomCommune": "CHAMPAGNOLE" }, { - "codePostal": "66360", - "codeCommune": "66010", - "libelleAcheminement": "AYGUATEBIA TALAU", - "nomCommune": "AYGUATEBIA TALAU" + "codePostal": "40300", + "codeCommune": "40256", + "libelleAcheminement": "ST ETIENNE D ORTHE", + "nomCommune": "ST ETIENNE D ORTHE" }, { - "codePostal": "16300", - "codeCommune": "16116", - "libelleAcheminement": "CRITEUIL LA MAGDELEINE", - "nomCommune": "CRITEUIL LA MAGDELEINE" + "codePostal": "53110", + "codeCommune": "53118", + "libelleAcheminement": "LE HOUSSEAU BRETIGNOLLES", + "nomCommune": "LE HOUSSEAU BRETIGNOLLES" }, { - "codePostal": "31260", - "codeCommune": "31521", - "libelleAcheminement": "SALEICH", - "nomCommune": "SALEICH" + "codePostal": "52100", + "codeCommune": "52500", + "libelleAcheminement": "VALCOURT", + "nomCommune": "VALCOURT" }, { - "codePostal": "45520", - "codeCommune": "45154", - "libelleAcheminement": "GIDY", - "nomCommune": "GIDY" + "codePostal": "39500", + "codeCommune": "39099", + "libelleAcheminement": "CHAMPDIVERS", + "nomCommune": "CHAMPDIVERS" }, { - "codePostal": "66300", - "codeCommune": "66015", - "libelleAcheminement": "BANYULS DELS ASPRES", - "nomCommune": "BANYULS DELS ASPRES" + "codePostal": "40190", + "codeCommune": "40259", + "libelleAcheminement": "ST GEIN", + "nomCommune": "ST GEIN" }, { - "codePostal": "16190", - "codeCommune": "16118", - "libelleAcheminement": "DEVIAT", - "nomCommune": "DEVIAT" + "codePostal": "53250", + "codeCommune": "53121", + "libelleAcheminement": "JAVRON LES CHAPELLES", + "nomCommune": "JAVRON LES CHAPELLES" }, { - "codePostal": "31230", - "codeCommune": "31522", - "libelleAcheminement": "SALERM", - "nomCommune": "SALERM" + "codePostal": "52200", + "codeCommune": "52507", + "libelleAcheminement": "VAUXBONS", + "nomCommune": "VAUXBONS" }, { - "codePostal": "45490", - "codeCommune": "45158", - "libelleAcheminement": "GONDREVILLE", - "nomCommune": "GONDREVILLE" + "codePostal": "39230", + "codeCommune": "39100", + "libelleAcheminement": "CHAMPROUGIER", + "nomCommune": "CHAMPROUGIER" }, { - "codePostal": "66210", - "codeCommune": "66020", - "libelleAcheminement": "BOLQUERE", - "nomCommune": "BOLQUERE" + "codePostal": "40120", + "codeCommune": "40262", + "libelleAcheminement": "ST GOR", + "nomCommune": "ST GOR" }, { - "codePostal": "16140", - "codeCommune": "16122", - "libelleAcheminement": "EBREON", - "nomCommune": "EBREON" + "codePostal": "53110", + "codeCommune": "53127", + "libelleAcheminement": "LASSAY LES CHATEAUX", + "nomCommune": "LASSAY LES CHATEAUX" }, { - "codePostal": "31800", - "codeCommune": "31537", - "libelleAcheminement": "SAVARTHES", - "nomCommune": "SAVARTHES" + "codePostal": "52250", + "codeCommune": "52516", + "libelleAcheminement": "VERSEILLES LE HAUT", + "nomCommune": "VERSEILLES LE HAUT" }, { - "codePostal": "45480", - "codeCommune": "45160", - "libelleAcheminement": "GRENEVILLE EN BEAUCE", - "nomCommune": "GRENEVILLE EN BEAUCE" + "codePostal": "39230", + "codeCommune": "39112", + "libelleAcheminement": "LA CHASSAGNE", + "nomCommune": "LA CHASSAGNE" }, { - "codePostal": "66760", - "codeCommune": "66025", - "libelleAcheminement": "BOURG MADAME", - "nomCommune": "BOURG MADAME" + "codePostal": "40230", + "codeCommune": "40264", + "libelleAcheminement": "ST JEAN DE MARSACQ", + "nomCommune": "ST JEAN DE MARSACQ" }, { - "codePostal": "16490", - "codeCommune": "16128", - "libelleAcheminement": "EPENEDE", - "nomCommune": "EPENEDE" + "codePostal": "53110", + "codeCommune": "53127", + "libelleAcheminement": "LASSAY LES CHATEAUX", + "nomCommune": "LASSAY LES CHATEAUX" }, { - "codePostal": "31840", - "codeCommune": "31541", - "libelleAcheminement": "SEILH", - "nomCommune": "SEILH" + "codePostal": "52160", + "codeCommune": "52526", + "libelleAcheminement": "VILLARS SANTENOGE", + "nomCommune": "VILLARS SANTENOGE" }, { - "codePostal": "45620", - "codeCommune": "45171", - "libelleAcheminement": "ISDES", - "nomCommune": "ISDES" + "codePostal": "39130", + "codeCommune": "39118", + "libelleAcheminement": "CHATEL DE JOUX", + "nomCommune": "CHATEL DE JOUX" }, { - "codePostal": "66620", - "codeCommune": "66026", - "libelleAcheminement": "BROUILLA", - "nomCommune": "BROUILLA" + "codePostal": "40320", + "codeCommune": "40270", + "libelleAcheminement": "ST LOUBOUER", + "nomCommune": "ST LOUBOUER" }, { - "codePostal": "16500", - "codeCommune": "16131", - "libelleAcheminement": "ESSE", - "nomCommune": "ESSE" + "codePostal": "53410", + "codeCommune": "53129", + "libelleAcheminement": "LAUNAY VILLIERS", + "nomCommune": "LAUNAY VILLIERS" }, { - "codePostal": "31360", - "codeCommune": "31545", - "libelleAcheminement": "SEPX", - "nomCommune": "SEPX" + "codePostal": "52600", + "codeCommune": "52529", + "libelleAcheminement": "VILLEGUSIEN LE LAC", + "nomCommune": "VILLEGUSIEN LE LAC" }, { - "codePostal": "45480", - "codeCommune": "45174", - "libelleAcheminement": "JOUY EN PITHIVERAIS", - "nomCommune": "JOUY EN PITHIVERAIS" + "codePostal": "39150", + "codeCommune": "39126", + "libelleAcheminement": "LA CHAUMUSSE", + "nomCommune": "LA CHAUMUSSE" }, { - "codePostal": "66500", - "codeCommune": "66034", - "libelleAcheminement": "CAMPOME", - "nomCommune": "CAMPOME" + "codePostal": "40390", + "codeCommune": "40271", + "libelleAcheminement": "STE MARIE DE GOSSE", + "nomCommune": "STE MARIE DE GOSSE" }, { - "codePostal": "16730", - "codeCommune": "16138", - "libelleAcheminement": "FLEAC", - "nomCommune": "FLEAC" + "codePostal": "53120", + "codeCommune": "53132", + "libelleAcheminement": "LEVARE", + "nomCommune": "LEVARE" }, { - "codePostal": "31440", - "codeCommune": "31548", - "libelleAcheminement": "SIGNAC", - "nomCommune": "SIGNAC" + "codePostal": "52210", + "codeCommune": "52538", + "libelleAcheminement": "VILLIERS SUR SUIZE", + "nomCommune": "VILLIERS SUR SUIZE" }, { - "codePostal": "45370", - "codeCommune": "45175", - "libelleAcheminement": "JOUY LE POTIER", - "nomCommune": "JOUY LE POTIER" + "codePostal": "39150", + "codeCommune": "39129", + "libelleAcheminement": "CHAUX DES CROTENAY", + "nomCommune": "CHAUX DES CROTENAY" }, { - "codePostal": "66720", - "codeCommune": "66042", - "libelleAcheminement": "CASSAGNES", - "nomCommune": "CASSAGNES" + "codePostal": "40230", + "codeCommune": "40284", + "libelleAcheminement": "ST VINCENT DE TYROSSE", + "nomCommune": "ST VINCENT DE TYROSSE" }, { - "codePostal": "16410", - "codeCommune": "16143", - "libelleAcheminement": "FOUQUEBRUNE", - "nomCommune": "FOUQUEBRUNE" + "codePostal": "53200", + "codeCommune": "53136", + "libelleAcheminement": "LA ROCHE NEUVILLE", + "nomCommune": "LA ROCHE NEUVILLE" }, { - "codePostal": "31500", - "codeCommune": "31555", - "libelleAcheminement": "TOULOUSE", - "nomCommune": "TOULOUSE" + "codePostal": "52320", + "codeCommune": "52547", + "libelleAcheminement": "VOUECOURT", + "nomCommune": "VOUECOURT" }, { - "codePostal": "45270", - "codeCommune": "45178", - "libelleAcheminement": "LADON", - "nomCommune": "LADON" + "codePostal": "39150", + "codeCommune": "39130", + "libelleAcheminement": "NANCHEZ", + "nomCommune": "NANCHEZ" }, { - "codePostal": "66360", - "codeCommune": "66047", - "libelleAcheminement": "CAUDIES DE CONFLENT", - "nomCommune": "CAUDIES DE CONFLENT" + "codePostal": "40120", + "codeCommune": "40288", + "libelleAcheminement": "SARBAZAN", + "nomCommune": "SARBAZAN" }, { - "codePostal": "16320", - "codeCommune": "16147", - "libelleAcheminement": "GARDES LE PONTAROUX", - "nomCommune": "GARDES LE PONTAROUX" + "codePostal": "53700", + "codeCommune": "53139", + "libelleAcheminement": "LOUPFOUGERES", + "nomCommune": "LOUPFOUGERES" }, { - "codePostal": "31170", - "codeCommune": "31557", - "libelleAcheminement": "TOURNEFEUILLE", - "nomCommune": "TOURNEFEUILLE" + "codePostal": "53400", + "codeCommune": "53012", + "libelleAcheminement": "ATHEE", + "nomCommune": "ATHEE" }, { - "codePostal": "45290", - "codeCommune": "45180", - "libelleAcheminement": "LANGESSE", - "nomCommune": "LANGESSE" + "codePostal": "39240", + "codeCommune": "39137", + "libelleAcheminement": "ST HYMETIERE SUR VALOUSE", + "nomCommune": "ST HYMETIERE SUR VALOUSE" }, { - "codePostal": "66400", - "codeCommune": "66049", - "libelleAcheminement": "CERET", - "nomCommune": "CERET" + "codePostal": "40180", + "codeCommune": "40294", + "libelleAcheminement": "SAUGNAC ET CAMBRAN", + "nomCommune": "SAUGNAC ET CAMBRAN" }, { - "codePostal": "16200", - "codeCommune": "16153", - "libelleAcheminement": "MAINXE GONDEVILLE", - "nomCommune": "MAINXE GONDEVILLE" + "codePostal": "53170", + "codeCommune": "53143", + "libelleAcheminement": "MAISONCELLES DU MAINE", + "nomCommune": "MAISONCELLES DU MAINE" }, { - "codePostal": "31290", - "codeCommune": "31560", - "libelleAcheminement": "TREBONS SUR LA GRASSE", - "nomCommune": "TREBONS SUR LA GRASSE" + "codePostal": "53160", + "codeCommune": "53016", + "libelleAcheminement": "BAIS", + "nomCommune": "BAIS" }, { - "codePostal": "45480", - "codeCommune": "45181", - "libelleAcheminement": "LEOUVILLE", - "nomCommune": "LEOUVILLE" + "codePostal": "39240", + "codeCommune": "39137", + "libelleAcheminement": "ST HYMETIERE SUR VALOUSE", + "nomCommune": "ST HYMETIERE SUR VALOUSE" }, { - "codePostal": "66550", - "codeCommune": "66058", - "libelleAcheminement": "CORNEILLA LA RIVIERE", - "nomCommune": "CORNEILLA LA RIVIERE" + "codePostal": "40410", + "codeCommune": "40295", + "libelleAcheminement": "SAUGNAC ET MURET", + "nomCommune": "SAUGNAC ET MURET" }, { - "codePostal": "16450", - "codeCommune": "16157", - "libelleAcheminement": "LE GRAND MADIEU", - "nomCommune": "LE GRAND MADIEU" + "codePostal": "53240", + "codeCommune": "53156", + "libelleAcheminement": "MONTFLOURS", + "nomCommune": "MONTFLOURS" }, { - "codePostal": "31250", - "codeCommune": "31569", - "libelleAcheminement": "VAUDREUILLE", - "nomCommune": "VAUDREUILLE" + "codePostal": "53340", + "codeCommune": "53017", + "libelleAcheminement": "VAL DU MAINE", + "nomCommune": "VAL DU MAINE" }, { - "codePostal": "45240", - "codeCommune": "45182", - "libelleAcheminement": "LIGNY LE RIBAULT", - "nomCommune": "LIGNY LE RIBAULT" + "codePostal": "39240", + "codeCommune": "39137", + "libelleAcheminement": "ST HYMETIERE SUR VALOUSE", + "nomCommune": "ST HYMETIERE SUR VALOUSE" }, { - "codePostal": "66480", - "codeCommune": "66063", - "libelleAcheminement": "LES CLUSES", - "nomCommune": "LES CLUSES" + "codePostal": "40510", + "codeCommune": "40296", + "libelleAcheminement": "SEIGNOSSE", + "nomCommune": "SEIGNOSSE" }, { - "codePostal": "16100", - "codeCommune": "16169", - "libelleAcheminement": "JAVREZAC", - "nomCommune": "JAVREZAC" + "codePostal": "53150", + "codeCommune": "53161", + "libelleAcheminement": "MONTSURS", + "nomCommune": "MONTSURS" }, { - "codePostal": "31810", - "codeCommune": "31572", - "libelleAcheminement": "VENERQUE", - "nomCommune": "VENERQUE" + "codePostal": "53340", + "codeCommune": "53019", + "libelleAcheminement": "BANNES", + "nomCommune": "BANNES" }, { - "codePostal": "45700", - "codeCommune": "45185", - "libelleAcheminement": "LOMBREUIL", - "nomCommune": "LOMBREUIL" + "codePostal": "39190", + "codeCommune": "39142", + "libelleAcheminement": "CHEVREAUX", + "nomCommune": "CHEVREAUX" }, { - "codePostal": "66310", - "codeCommune": "66071", - "libelleAcheminement": "ESTAGEL", - "nomCommune": "ESTAGEL" + "codePostal": "40150", + "codeCommune": "40304", + "libelleAcheminement": "SOORTS HOSSEGOR", + "nomCommune": "SOORTS HOSSEGOR" }, { - "codePostal": "16190", - "codeCommune": "16170", - "libelleAcheminement": "JUIGNAC", - "nomCommune": "JUIGNAC" + "codePostal": "53100", + "codeCommune": "53162", + "libelleAcheminement": "MOULAY", + "nomCommune": "MOULAY" }, { - "codePostal": "31290", - "codeCommune": "31582", - "libelleAcheminement": "VILLEFRANCHE DE LAURAGAIS", - "nomCommune": "VILLEFRANCHE DE LAURAGAIS" + "codePostal": "53470", + "codeCommune": "53023", + "libelleAcheminement": "LA BAZOUGE DES ALLEUX", + "nomCommune": "LA BAZOUGE DES ALLEUX" }, { - "codePostal": "45330", - "codeCommune": "45191", - "libelleAcheminement": "LE MALESHERBOIS", - "nomCommune": "LE MALESHERBOIS" + "codePostal": "39130", + "codeCommune": "39143", + "libelleAcheminement": "CHEVROTAINE", + "nomCommune": "CHEVROTAINE" }, { - "codePostal": "66730", - "codeCommune": "66076", - "libelleAcheminement": "FEILLUNS", - "nomCommune": "FEILLUNS" + "codePostal": "40180", + "codeCommune": "40308", + "libelleAcheminement": "SORT EN CHALOSSE", + "nomCommune": "SORT EN CHALOSSE" }, { - "codePostal": "16130", - "codeCommune": "16171", - "libelleAcheminement": "JUILLAC LE COQ", - "nomCommune": "JUILLAC LE COQ" + "codePostal": "53150", + "codeCommune": "53163", + "libelleAcheminement": "NEAU", + "nomCommune": "NEAU" }, { - "codePostal": "31330", - "codeCommune": "31592", - "libelleAcheminement": "LARRA", - "nomCommune": "LARRA" + "codePostal": "53290", + "codeCommune": "53029", + "libelleAcheminement": "BIERNE LES VILLAGES", + "nomCommune": "BIERNE LES VILLAGES" }, { - "codePostal": "45330", - "codeCommune": "45191", - "libelleAcheminement": "LE MALESHERBOIS", - "nomCommune": "LE MALESHERBOIS" + "codePostal": "39370", + "codeCommune": "39151", + "libelleAcheminement": "CHOUX", + "nomCommune": "CHOUX" }, { - "codePostal": "66360", - "codeCommune": "66080", - "libelleAcheminement": "FONTPEDROUSE", - "nomCommune": "FONTPEDROUSE" + "codePostal": "40260", + "codeCommune": "40311", + "libelleAcheminement": "TALLER", + "nomCommune": "TALLER" }, { - "codePostal": "16230", - "codeCommune": "16173", - "libelleAcheminement": "JUILLE", - "nomCommune": "JUILLE" + "codePostal": "53400", + "codeCommune": "53165", + "libelleAcheminement": "NIAFLES", + "nomCommune": "NIAFLES" }, { - "codePostal": "32270", - "codeCommune": "32002", - "libelleAcheminement": "ANSAN", - "nomCommune": "ANSAN" + "codePostal": "53290", + "codeCommune": "53037", + "libelleAcheminement": "BOUESSAY", + "nomCommune": "BOUESSAY" }, { - "codePostal": "45190", - "codeCommune": "45202", - "libelleAcheminement": "MESSAS", - "nomCommune": "MESSAS" + "codePostal": "39570", + "codeCommune": "39168", + "libelleAcheminement": "COURBETTE", + "nomCommune": "COURBETTE" }, { - "codePostal": "66300", - "codeCommune": "66084", - "libelleAcheminement": "FOURQUES", - "nomCommune": "FOURQUES" + "codePostal": "40630", + "codeCommune": "40319", + "libelleAcheminement": "TRENSACQ", + "nomCommune": "TRENSACQ" }, { - "codePostal": "16250", - "codeCommune": "16175", - "libelleAcheminement": "VAL DES VIGNES", - "nomCommune": "VAL DES VIGNES" + "codePostal": "53140", + "codeCommune": "53173", + "libelleAcheminement": "LA PALLU", + "nomCommune": "LA PALLU" }, { - "codePostal": "32120", - "codeCommune": "32021", - "libelleAcheminement": "AVENSAC", - "nomCommune": "AVENSAC" + "codePostal": "53230", + "codeCommune": "53058", + "libelleAcheminement": "LA CHAPELLE CRAONNAISE", + "nomCommune": "LA CHAPELLE CRAONNAISE" }, { - "codePostal": "45370", - "codeCommune": "45204", - "libelleAcheminement": "MEZIERES LEZ CLERY", - "nomCommune": "MEZIERES LEZ CLERY" + "codePostal": "39300", + "codeCommune": "39178", + "libelleAcheminement": "CRANS", + "nomCommune": "CRANS" }, { - "codePostal": "66360", - "codeCommune": "66090", - "libelleAcheminement": "JUJOLS", - "nomCommune": "JUJOLS" + "codePostal": "40090", + "codeCommune": "40320", + "libelleAcheminement": "UCHACQ ET PARENTIS", + "nomCommune": "UCHACQ ET PARENTIS" }, { - "codePostal": "16130", - "codeCommune": "16186", - "libelleAcheminement": "LIGNIERES AMBLEVILLE", - "nomCommune": "LIGNIERES AMBLEVILLE" + "codePostal": "53360", + "codeCommune": "53186", + "libelleAcheminement": "QUELAINES ST GAULT", + "nomCommune": "QUELAINES ST GAULT" }, { - "codePostal": "32290", - "codeCommune": "32022", - "libelleAcheminement": "AVERON BERGELLE", - "nomCommune": "AVERON BERGELLE" + "codePostal": "53150", + "codeCommune": "53059", + "libelleAcheminement": "LA CHAPELLE RAINSOUIN", + "nomCommune": "LA CHAPELLE RAINSOUIN" }, { - "codePostal": "45700", - "codeCommune": "45212", - "libelleAcheminement": "MONTCRESSON", - "nomCommune": "MONTCRESSON" + "codePostal": "39270", + "codeCommune": "39180", + "libelleAcheminement": "CRESSIA", + "nomCommune": "CRESSIA" }, { - "codePostal": "66760", - "codeCommune": "66095", - "libelleAcheminement": "LATOUR DE CAROL", - "nomCommune": "LATOUR DE CAROL" + "codePostal": "40240", + "codeCommune": "40327", + "libelleAcheminement": "VIELLE SOUBIRAN", + "nomCommune": "VIELLE SOUBIRAN" }, { - "codePostal": "16270", - "codeCommune": "16192", - "libelleAcheminement": "TERRES DE HAUTE CHARENTE", - "nomCommune": "TERRES DE HAUTE CHARENTE" + "codePostal": "53370", + "codeCommune": "53187", + "libelleAcheminement": "RAVIGNY", + "nomCommune": "RAVIGNY" }, { - "codePostal": "32160", - "codeCommune": "32036", - "libelleAcheminement": "BEAUMARCHES", - "nomCommune": "BEAUMARCHES" + "codePostal": "53250", + "codeCommune": "53061", + "libelleAcheminement": "CHARCHIGNE", + "nomCommune": "CHARCHIGNE" }, { - "codePostal": "45300", - "codeCommune": "45217", - "libelleAcheminement": "MORVILLE EN BEAUCE", - "nomCommune": "MORVILLE EN BEAUCE" + "codePostal": "39230", + "codeCommune": "39191", + "libelleAcheminement": "DARBONNAY", + "nomCommune": "DARBONNAY" }, { - "codePostal": "66800", - "codeCommune": "66100", - "libelleAcheminement": "LLO", - "nomCommune": "LLO" + "codePostal": "41240", + "codeCommune": "41006", + "libelleAcheminement": "AUTAINVILLE", + "nomCommune": "AUTAINVILLE" }, { - "codePostal": "16140", - "codeCommune": "16194", - "libelleAcheminement": "LUPSAULT", - "nomCommune": "LUPSAULT" + "codePostal": "53110", + "codeCommune": "53189", + "libelleAcheminement": "RENNES EN GRENOUILLES", + "nomCommune": "RENNES EN GRENOUILLES" }, { - "codePostal": "32400", - "codeCommune": "32046", - "libelleAcheminement": "BERNEDE", - "nomCommune": "BERNEDE" + "codePostal": "53800", + "codeCommune": "53073", + "libelleAcheminement": "CONGRIER", + "nomCommune": "CONGRIER" }, { - "codePostal": "45270", - "codeCommune": "45219", - "libelleAcheminement": "MOULON", - "nomCommune": "MOULON" + "codePostal": "39140", + "codeCommune": "39194", + "libelleAcheminement": "DESNES", + "nomCommune": "DESNES" }, { - "codePostal": "66480", - "codeCommune": "66106", - "libelleAcheminement": "MAUREILLAS LAS ILLAS", - "nomCommune": "MAUREILLAS LAS ILLAS" + "codePostal": "41330", + "codeCommune": "41009", + "libelleAcheminement": "AVERDON", + "nomCommune": "AVERDON" }, { - "codePostal": "16450", - "codeCommune": "16195", - "libelleAcheminement": "LUSSAC", - "nomCommune": "LUSSAC" + "codePostal": "53640", + "codeCommune": "53190", + "libelleAcheminement": "LE RIBAY", + "nomCommune": "LE RIBAY" }, { - "codePostal": "32420", - "codeCommune": "32048", - "libelleAcheminement": "BETCAVE AGUIN", - "nomCommune": "BETCAVE AGUIN" + "codePostal": "53230", + "codeCommune": "53075", + "libelleAcheminement": "COSMES", + "nomCommune": "COSMES" }, { - "codePostal": "45480", - "codeCommune": "45240", - "libelleAcheminement": "OUTARVILLE", - "nomCommune": "OUTARVILLE" + "codePostal": "39230", + "codeCommune": "39199", + "libelleAcheminement": "DOMBLANS", + "nomCommune": "DOMBLANS" }, { - "codePostal": "66460", - "codeCommune": "66107", - "libelleAcheminement": "MAURY", - "nomCommune": "MAURY" + "codePostal": "41250", + "codeCommune": "41013", + "libelleAcheminement": "BAUZY", + "nomCommune": "BAUZY" }, { - "codePostal": "16230", - "codeCommune": "16196", - "libelleAcheminement": "LUXE", - "nomCommune": "LUXE" + "codePostal": "53390", + "codeCommune": "53192", + "libelleAcheminement": "LA ROUAUDIERE", + "nomCommune": "LA ROUAUDIERE" }, { - "codePostal": "32110", - "codeCommune": "32049", - "libelleAcheminement": "BETOUS", - "nomCommune": "BETOUS" + "codePostal": "53700", + "codeCommune": "53083", + "libelleAcheminement": "COURCITE", + "nomCommune": "COURCITE" }, { - "codePostal": "45570", - "codeCommune": "45244", - "libelleAcheminement": "OUZOUER SUR LOIRE", - "nomCommune": "OUZOUER SUR LOIRE" + "codePostal": "39270", + "codeCommune": "39207", + "libelleAcheminement": "ECRILLE", + "nomCommune": "ECRILLE" }, { - "codePostal": "66170", - "codeCommune": "66121", - "libelleAcheminement": "NEFIACH", - "nomCommune": "NEFIACH" + "codePostal": "41170", + "codeCommune": "41014", + "libelleAcheminement": "BEAUCHENE", + "nomCommune": "BEAUCHENE" }, { - "codePostal": "16380", - "codeCommune": "16203", - "libelleAcheminement": "MAINZAC", - "nomCommune": "MAINZAC" + "codePostal": "53290", + "codeCommune": "53203", + "libelleAcheminement": "ST BRICE", + "nomCommune": "ST BRICE" }, { - "codePostal": "32550", - "codeCommune": "32060", - "libelleAcheminement": "BOUCAGNERES", - "nomCommune": "BOUCAGNERES" + "codePostal": "53260", + "codeCommune": "53094", + "libelleAcheminement": "ENTRAMMES", + "nomCommune": "ENTRAMMES" }, { - "codePostal": "45310", - "codeCommune": "45248", - "libelleAcheminement": "PATAY", - "nomCommune": "PATAY" + "codePostal": "39160", + "codeCommune": "39209", + "libelleAcheminement": "VAL D EPY", + "nomCommune": "VAL D EPY" }, { - "codePostal": "66120", - "codeCommune": "66124", - "libelleAcheminement": "FONT ROMEU ODEILLO VIA", - "nomCommune": "FONT ROMEU ODEILLO VIA" + "codePostal": "41290", + "codeCommune": "41019", + "libelleAcheminement": "BOISSEAU", + "nomCommune": "BOISSEAU" }, { - "codePostal": "16120", - "codeCommune": "16204", - "libelleAcheminement": "BELLEVIGNE", - "nomCommune": "BELLEVIGNE" + "codePostal": "53700", + "codeCommune": "53223", + "libelleAcheminement": "ST GERMAIN DE COULAMER", + "nomCommune": "ST GERMAIN DE COULAMER" }, { - "codePostal": "32290", - "codeCommune": "32063", - "libelleAcheminement": "BOUZON GELLENAVE", - "nomCommune": "BOUZON GELLENAVE" + "codePostal": "53600", + "codeCommune": "53097", + "libelleAcheminement": "EVRON", + "nomCommune": "EVRON" }, { - "codePostal": "45260", - "codeCommune": "45256", - "libelleAcheminement": "PRESNOY", - "nomCommune": "PRESNOY" + "codePostal": "39320", + "codeCommune": "39209", + "libelleAcheminement": "VAL D EPY", + "nomCommune": "VAL D EPY" }, { - "codePostal": "66450", - "codeCommune": "66144", - "libelleAcheminement": "POLLESTRES", - "nomCommune": "POLLESTRES" + "codePostal": "41800", + "codeCommune": "41020", + "libelleAcheminement": "BONNEVEAU", + "nomCommune": "BONNEVEAU" }, { - "codePostal": "16120", - "codeCommune": "16204", - "libelleAcheminement": "BELLEVIGNE", - "nomCommune": "BELLEVIGNE" + "codePostal": "53240", + "codeCommune": "53224", + "libelleAcheminement": "ST GERMAIN LE FOUILLOUX", + "nomCommune": "ST GERMAIN LE FOUILLOUX" }, { - "codePostal": "32500", - "codeCommune": "32066", - "libelleAcheminement": "BRUGNENS", - "nomCommune": "BRUGNENS" + "codePostal": "53260", + "codeCommune": "53099", + "libelleAcheminement": "FORCE", + "nomCommune": "FORCE" }, { - "codePostal": "45470", - "codeCommune": "45261", - "libelleAcheminement": "REBRECHIEN", - "nomCommune": "REBRECHIEN" + "codePostal": "39570", + "codeCommune": "39217", + "libelleAcheminement": "L ETOILE", + "nomCommune": "L ETOILE" }, { - "codePostal": "66300", - "codeCommune": "66145", - "libelleAcheminement": "PONTEILLA", - "nomCommune": "PONTEILLA" + "codePostal": "41270", + "codeCommune": "41024", + "libelleAcheminement": "BOURSAY", + "nomCommune": "BOURSAY" }, { - "codePostal": "16120", - "codeCommune": "16204", - "libelleAcheminement": "BELLEVIGNE", - "nomCommune": "BELLEVIGNE" + "codePostal": "53800", + "codeCommune": "53240", + "libelleAcheminement": "ST MARTIN DU LIMET", + "nomCommune": "ST MARTIN DU LIMET" }, { - "codePostal": "32220", - "codeCommune": "32069", - "libelleAcheminement": "CADEILLAN", - "nomCommune": "CADEILLAN" + "codePostal": "53200", + "codeCommune": "53101", + "libelleAcheminement": "FROMENTIERES", + "nomCommune": "FROMENTIERES" }, { - "codePostal": "45300", - "codeCommune": "45263", - "libelleAcheminement": "ROUVRES ST JEAN", - "nomCommune": "ROUVRES ST JEAN" + "codePostal": "39700", + "codeCommune": "39220", + "libelleAcheminement": "FALLETANS", + "nomCommune": "FALLETANS" }, { - "codePostal": "66220", - "codeCommune": "66152", - "libelleAcheminement": "PRUGNANES", - "nomCommune": "PRUGNANES" + "codePostal": "41120", + "codeCommune": "41032", + "libelleAcheminement": "CHAILLES", + "nomCommune": "CHAILLES" }, { - "codePostal": "16500", - "codeCommune": "16205", - "libelleAcheminement": "MANOT", - "nomCommune": "MANOT" + "codePostal": "53160", + "codeCommune": "53249", + "libelleAcheminement": "VIMARTIN SUR ORTHE", + "nomCommune": "VIMARTIN SUR ORTHE" }, { - "codePostal": "32410", - "codeCommune": "32083", - "libelleAcheminement": "CASTERA VERDUZAN", - "nomCommune": "CASTERA VERDUZAN" + "codePostal": "53200", + "codeCommune": "53104", + "libelleAcheminement": "GENNES LONGUEFUYE", + "nomCommune": "GENNES LONGUEFUYE" }, { - "codePostal": "45600", - "codeCommune": "45277", - "libelleAcheminement": "ST FLORENT", - "nomCommune": "ST FLORENT" + "codePostal": "39800", + "codeCommune": "39222", + "libelleAcheminement": "FAY EN MONTAGNE", + "nomCommune": "FAY EN MONTAGNE" }, { - "codePostal": "66720", - "codeCommune": "66158", - "libelleAcheminement": "RASIGUERES", - "nomCommune": "RASIGUERES" + "codePostal": "41600", + "codeCommune": "41036", + "libelleAcheminement": "CHAON", + "nomCommune": "CHAON" }, { - "codePostal": "16310", - "codeCommune": "16212", - "libelleAcheminement": "MASSIGNAC", - "nomCommune": "MASSIGNAC" + "codePostal": "53540", + "codeCommune": "53250", + "libelleAcheminement": "ST POIX", + "nomCommune": "ST POIX" }, { - "codePostal": "32340", - "codeCommune": "32085", - "libelleAcheminement": "CASTET ARROUY", - "nomCommune": "CASTET ARROUY" + "codePostal": "53150", + "codeCommune": "53105", + "libelleAcheminement": "GESNES", + "nomCommune": "GESNES" }, { - "codePostal": "45500", - "codeCommune": "45280", - "libelleAcheminement": "ST GONDON", - "nomCommune": "ST GONDON" + "codePostal": "39600", + "codeCommune": "39223", + "libelleAcheminement": "LA FERTE", + "nomCommune": "LA FERTE" }, { - "codePostal": "66210", - "codeCommune": "66159", - "libelleAcheminement": "REAL", - "nomCommune": "REAL" + "codePostal": "41500", + "codeCommune": "41039", + "libelleAcheminement": "LA CHAPELLE ST MARTIN EN PLAINE", + "nomCommune": "LA CHAPELLE ST MARTIN EN PLAINE" }, { - "codePostal": "16200", - "codeCommune": "16216", - "libelleAcheminement": "MERIGNAC", - "nomCommune": "MERIGNAC" + "codePostal": "53270", + "codeCommune": "53255", + "libelleAcheminement": "STE SUZANNE ET CHAMMES", + "nomCommune": "STE SUZANNE ET CHAMMES" }, { - "codePostal": "32240", - "codeCommune": "32087", - "libelleAcheminement": "CASTEX D ARMAGNAC", - "nomCommune": "CASTEX D ARMAGNAC" + "codePostal": "53250", + "codeCommune": "53112", + "libelleAcheminement": "LE HAM", + "nomCommune": "LE HAM" }, { - "codePostal": "45160", - "codeCommune": "45282", - "libelleAcheminement": "ST HILAIRE ST MESMIN", - "nomCommune": "ST HILAIRE ST MESMIN" + "codePostal": "39130", + "codeCommune": "39230", + "libelleAcheminement": "FONTENU", + "nomCommune": "FONTENU" }, { - "codePostal": "66360", - "codeCommune": "66166", - "libelleAcheminement": "SAHORRE", - "nomCommune": "SAHORRE" + "codePostal": "41110", + "codeCommune": "41042", + "libelleAcheminement": "CHATEAUVIEUX", + "nomCommune": "CHATEAUVIEUX" }, { - "codePostal": "16300", - "codeCommune": "16224", - "libelleAcheminement": "MONTMERAC", - "nomCommune": "MONTMERAC" + "codePostal": "53160", + "codeCommune": "53256", + "libelleAcheminement": "ST THOMAS DE COURCERIERS", + "nomCommune": "ST THOMAS DE COURCERIERS" }, { - "codePostal": "32360", - "codeCommune": "32089", - "libelleAcheminement": "CASTILLON MASSAS", - "nomCommune": "CASTILLON MASSAS" + "codePostal": "53160", + "codeCommune": "53113", + "libelleAcheminement": "HAMBERS", + "nomCommune": "HAMBERS" }, { - "codePostal": "45800", - "codeCommune": "45284", - "libelleAcheminement": "ST JEAN DE BRAYE", - "nomCommune": "ST JEAN DE BRAYE" + "codePostal": "39250", + "codeCommune": "39237", + "libelleAcheminement": "FRAROZ", + "nomCommune": "FRAROZ" }, { - "codePostal": "66690", - "codeCommune": "66168", - "libelleAcheminement": "ST ANDRE", - "nomCommune": "ST ANDRE" + "codePostal": "41400", + "codeCommune": "41051", + "libelleAcheminement": "CHISSAY EN TOURAINE", + "nomCommune": "CHISSAY EN TOURAINE" }, { - "codePostal": "16300", - "codeCommune": "16224", - "libelleAcheminement": "MONTMERAC", - "nomCommune": "MONTMERAC" + "codePostal": "53340", + "codeCommune": "53257", + "libelleAcheminement": "SAULGES", + "nomCommune": "SAULGES" }, { - "codePostal": "32190", - "codeCommune": "32097", - "libelleAcheminement": "CAZAUX D ANGLES", - "nomCommune": "CAZAUX D ANGLES" + "codePostal": "53640", + "codeCommune": "53116", + "libelleAcheminement": "LE HORPS", + "nomCommune": "LE HORPS" }, { - "codePostal": "45140", - "codeCommune": "45285", - "libelleAcheminement": "ST JEAN DE LA RUELLE", - "nomCommune": "ST JEAN DE LA RUELLE" + "codePostal": "39210", + "codeCommune": "39244", + "libelleAcheminement": "FRONTENAY", + "nomCommune": "FRONTENAY" }, { - "codePostal": "66750", - "codeCommune": "66171", - "libelleAcheminement": "ST CYPRIEN", - "nomCommune": "ST CYPRIEN" + "codePostal": "41120", + "codeCommune": "41052", + "libelleAcheminement": "CHITENAY", + "nomCommune": "CHITENAY" }, { - "codePostal": "16390", - "codeCommune": "16227", - "libelleAcheminement": "MONTIGNAC LE COQ", - "nomCommune": "MONTIGNAC LE COQ" + "codePostal": "53300", + "codeCommune": "53261", + "libelleAcheminement": "SOUCE", + "nomCommune": "SOUCE" }, { - "codePostal": "32400", - "codeCommune": "32108", - "libelleAcheminement": "CORNEILLAN", - "nomCommune": "CORNEILLAN" + "codePostal": "53360", + "codeCommune": "53117", + "libelleAcheminement": "HOUSSAY", + "nomCommune": "HOUSSAY" }, { - "codePostal": "45340", - "codeCommune": "45288", - "libelleAcheminement": "ST LOUP DES VIGNES", - "nomCommune": "ST LOUP DES VIGNES" + "codePostal": "39320", + "codeCommune": "39253", + "libelleAcheminement": "GIGNY", + "nomCommune": "GIGNY" }, { - "codePostal": "66470", - "codeCommune": "66182", - "libelleAcheminement": "STE MARIE LA MER", - "nomCommune": "STE MARIE LA MER" + "codePostal": "41150", + "codeCommune": "41055", + "libelleAcheminement": "VALLOIRE SUR CISSE", + "nomCommune": "VALLOIRE SUR CISSE" }, { - "codePostal": "16460", - "codeCommune": "16238", - "libelleAcheminement": "MOUTONNEAU", - "nomCommune": "MOUTONNEAU" + "codePostal": "53210", + "codeCommune": "53262", + "libelleAcheminement": "SOULGE SUR OUETTE", + "nomCommune": "SOULGE SUR OUETTE" }, { - "codePostal": "32110", - "codeCommune": "32113", - "libelleAcheminement": "CRAVENCERES", - "nomCommune": "CRAVENCERES" + "codePostal": "53110", + "codeCommune": "53118", + "libelleAcheminement": "LE HOUSSEAU BRETIGNOLLES", + "nomCommune": "LE HOUSSEAU BRETIGNOLLES" }, { - "codePostal": "45170", - "codeCommune": "45289", - "libelleAcheminement": "ST LYE LA FORET", - "nomCommune": "ST LYE LA FORET" + "codePostal": "39150", + "codeCommune": "39258", + "libelleAcheminement": "GRANDE RIVIERE CHATEAU", + "nomCommune": "GRANDE RIVIERE CHATEAU" }, { - "codePostal": "66220", - "codeCommune": "66187", - "libelleAcheminement": "ST PAUL DE FENOUILLET", - "nomCommune": "ST PAUL DE FENOUILLET" + "codePostal": "41290", + "codeCommune": "41057", + "libelleAcheminement": "CONAN", + "nomCommune": "CONAN" }, { - "codePostal": "16700", - "codeCommune": "16242", - "libelleAcheminement": "NANTEUIL EN VALLEE", - "nomCommune": "NANTEUIL EN VALLEE" + "codePostal": "53270", + "codeCommune": "53264", + "libelleAcheminement": "THORIGNE EN CHARNIE", + "nomCommune": "THORIGNE EN CHARNIE" }, { - "codePostal": "32600", - "codeCommune": "32121", - "libelleAcheminement": "ENDOUFIELLE", - "nomCommune": "ENDOUFIELLE" + "codePostal": "53190", + "codeCommune": "53125", + "libelleAcheminement": "LANDIVY", + "nomCommune": "LANDIVY" }, { - "codePostal": "45340", - "codeCommune": "45294", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "39120", + "codeCommune": "39266", + "libelleAcheminement": "LES HAYS", + "nomCommune": "LES HAYS" }, { - "codePostal": "66360", - "codeCommune": "66191", - "libelleAcheminement": "SANSA", - "nomCommune": "SANSA" + "codePostal": "41120", + "codeCommune": "41059", + "libelleAcheminement": "LE CONTROIS EN SOLOGNE", + "nomCommune": "LE CONTROIS EN SOLOGNE" }, { - "codePostal": "16700", - "codeCommune": "16242", - "libelleAcheminement": "NANTEUIL EN VALLEE", - "nomCommune": "NANTEUIL EN VALLEE" + "codePostal": "53120", + "codeCommune": "53270", + "libelleAcheminement": "VIEUVY", + "nomCommune": "VIEUVY" }, { - "codePostal": "32450", - "codeCommune": "32130", - "libelleAcheminement": "FAGET ABBATIAL", - "nomCommune": "FAGET ABBATIAL" + "codePostal": "53220", + "codeCommune": "53126", + "libelleAcheminement": "LARCHAMP", + "nomCommune": "LARCHAMP" }, { - "codePostal": "45310", - "codeCommune": "45296", - "libelleAcheminement": "ST PERAVY LA COLOMBE", - "nomCommune": "ST PERAVY LA COLOMBE" + "codePostal": "39110", + "codeCommune": "39267", + "libelleAcheminement": "IVORY", + "nomCommune": "IVORY" }, { - "codePostal": "66230", - "codeCommune": "66194", - "libelleAcheminement": "SERRALONGUE", - "nomCommune": "SERRALONGUE" + "codePostal": "41500", + "codeCommune": "41069", + "libelleAcheminement": "COUR SUR LOIRE", + "nomCommune": "COUR SUR LOIRE" }, { - "codePostal": "16190", - "codeCommune": "16246", - "libelleAcheminement": "NONAC", - "nomCommune": "NONAC" + "codePostal": "54800", + "codeCommune": "54004", + "libelleAcheminement": "AFFLEVILLE", + "nomCommune": "AFFLEVILLE" }, { - "codePostal": "32490", - "codeCommune": "32134", - "libelleAcheminement": "FREGOUVILLE", - "nomCommune": "FREGOUVILLE" + "codePostal": "53000", + "codeCommune": "53130", + "libelleAcheminement": "LAVAL", + "nomCommune": "LAVAL" }, { - "codePostal": "45110", - "codeCommune": "45311", - "libelleAcheminement": "SIGLOY", - "nomCommune": "SIGLOY" + "codePostal": "39360", + "codeCommune": "39280", + "libelleAcheminement": "LARRIVOIRE", + "nomCommune": "LARRIVOIRE" }, { - "codePostal": "66270", - "codeCommune": "66195", - "libelleAcheminement": "LE SOLER", - "nomCommune": "LE SOLER" + "codePostal": "41800", + "codeCommune": "41070", + "libelleAcheminement": "VALLEE DE RONSARD", + "nomCommune": "VALLEE DE RONSARD" }, { - "codePostal": "16140", - "codeCommune": "16248", - "libelleAcheminement": "ORADOUR", - "nomCommune": "ORADOUR" + "codePostal": "54170", + "codeCommune": "54008", + "libelleAcheminement": "ALLAIN", + "nomCommune": "ALLAIN" }, { - "codePostal": "32380", - "codeCommune": "32139", - "libelleAcheminement": "GAUDONVILLE", - "nomCommune": "GAUDONVILLE" + "codePostal": "53150", + "codeCommune": "53134", + "libelleAcheminement": "LIVET", + "nomCommune": "LIVET" }, { - "codePostal": "45530", - "codeCommune": "45316", - "libelleAcheminement": "SURY AUX BOIS", - "nomCommune": "SURY AUX BOIS" + "codePostal": "01590", + "codeCommune": "39283", + "libelleAcheminement": "LAVANCIA EPERCY", + "nomCommune": "LAVANCIA EPERCY" }, { - "codePostal": "66730", - "codeCommune": "66198", - "libelleAcheminement": "SOURNIA", - "nomCommune": "SOURNIA" + "codePostal": "41220", + "codeCommune": "41074", + "libelleAcheminement": "DHUIZON", + "nomCommune": "DHUIZON" }, { - "codePostal": "16480", - "codeCommune": "16251", - "libelleAcheminement": "ORIOLLES", - "nomCommune": "ORIOLLES" + "codePostal": "54800", + "codeCommune": "54009", + "libelleAcheminement": "ALLAMONT", + "nomCommune": "ALLAMONT" }, { - "codePostal": "32480", - "codeCommune": "32143", - "libelleAcheminement": "GAZAUPOUY", - "nomCommune": "GAZAUPOUY" + "codePostal": "53320", + "codeCommune": "53137", + "libelleAcheminement": "LOIRON RUILLE", + "nomCommune": "LOIRON RUILLE" }, { - "codePostal": "45260", - "codeCommune": "45321", - "libelleAcheminement": "THIMORY", - "nomCommune": "THIMORY" + "codePostal": "39260", + "codeCommune": "39289", + "libelleAcheminement": "LECT", + "nomCommune": "LECT" }, { - "codePostal": "66350", - "codeCommune": "66213", - "libelleAcheminement": "TOULOUGES", - "nomCommune": "TOULOUGES" + "codePostal": "41360", + "codeCommune": "41078", + "libelleAcheminement": "EPUISAY", + "nomCommune": "EPUISAY" }, { - "codePostal": "16700", - "codeCommune": "16268", - "libelleAcheminement": "POURSAC", - "nomCommune": "POURSAC" + "codePostal": "54260", + "codeCommune": "54011", + "libelleAcheminement": "ALLONDRELLE LA MALMAISON", + "nomCommune": "ALLONDRELLE LA MALMAISON" }, { - "codePostal": "32330", - "codeCommune": "32149", - "libelleAcheminement": "GONDRIN", - "nomCommune": "GONDRIN" + "codePostal": "53320", + "codeCommune": "53137", + "libelleAcheminement": "LOIRON RUILLE", + "nomCommune": "LOIRON RUILLE" }, { - "codePostal": "45470", - "codeCommune": "45327", - "libelleAcheminement": "TRAINOU", - "nomCommune": "TRAINOU" + "codePostal": "39240", + "codeCommune": "39290", + "libelleAcheminement": "VALZIN EN PETITE MONTAGNE", + "nomCommune": "VALZIN EN PETITE MONTAGNE" }, { - "codePostal": "66300", - "codeCommune": "66214", - "libelleAcheminement": "TRESSERRE", - "nomCommune": "TRESSERRE" + "codePostal": "41300", + "codeCommune": "41084", + "libelleAcheminement": "LA FERTE IMBAULT", + "nomCommune": "LA FERTE IMBAULT" }, { - "codePostal": "16110", - "codeCommune": "16269", - "libelleAcheminement": "PRANZAC", - "nomCommune": "PRANZAC" + "codePostal": "54760", + "codeCommune": "54021", + "libelleAcheminement": "ARMAUCOURT", + "nomCommune": "ARMAUCOURT" }, { - "codePostal": "32400", - "codeCommune": "32161", - "libelleAcheminement": "IZOTGES", - "nomCommune": "IZOTGES" + "codePostal": "53470", + "codeCommune": "53146", + "libelleAcheminement": "MARTIGNE SUR MAYENNE", + "nomCommune": "MARTIGNE SUR MAYENNE" }, { - "codePostal": "45510", - "codeCommune": "45331", - "libelleAcheminement": "VANNES SUR COSSON", - "nomCommune": "VANNES SUR COSSON" + "codePostal": "39400", + "codeCommune": "39297", + "libelleAcheminement": "LONGCHAUMOIS", + "nomCommune": "LONGCHAUMOIS" }, { - "codePostal": "66820", - "codeCommune": "66222", - "libelleAcheminement": "VERNET LES BAINS", - "nomCommune": "VERNET LES BAINS" + "codePostal": "41250", + "codeCommune": "41086", + "libelleAcheminement": "FONTAINES EN SOLOGNE", + "nomCommune": "FONTAINES EN SOLOGNE" }, { - "codePostal": "16360", - "codeCommune": "16276", - "libelleAcheminement": "REIGNAC", - "nomCommune": "REIGNAC" + "codePostal": "54510", + "codeCommune": "54025", + "libelleAcheminement": "ART SUR MEURTHE", + "nomCommune": "ART SUR MEURTHE" }, { - "codePostal": "32230", - "codeCommune": "32164", - "libelleAcheminement": "JUILLAC", - "nomCommune": "JUILLAC" + "codePostal": "53600", + "codeCommune": "53153", + "libelleAcheminement": "MEZANGERS", + "nomCommune": "MEZANGERS" }, { - "codePostal": "45600", - "codeCommune": "45336", - "libelleAcheminement": "VIGLAIN", - "nomCommune": "VIGLAIN" + "codePostal": "39000", + "codeCommune": "39300", + "libelleAcheminement": "LONS LE SAUNIER", + "nomCommune": "LONS LE SAUNIER" }, { - "codePostal": "66320", - "codeCommune": "66230", - "libelleAcheminement": "VINCA", - "nomCommune": "VINCA" + "codePostal": "41190", + "codeCommune": "41093", + "libelleAcheminement": "FRANCAY", + "nomCommune": "FRANCAY" }, { - "codePostal": "16170", - "codeCommune": "16286", - "libelleAcheminement": "ROUILLAC", - "nomCommune": "ROUILLAC" + "codePostal": "54385", + "codeCommune": "54034", + "libelleAcheminement": "AVRAINVILLE", + "nomCommune": "AVRAINVILLE" }, { - "codePostal": "32200", - "codeCommune": "32165", - "libelleAcheminement": "JUILLES", - "nomCommune": "JUILLES" + "codePostal": "53220", + "codeCommune": "53154", + "libelleAcheminement": "MONTAUDIN", + "nomCommune": "MONTAUDIN" }, { - "codePostal": "45270", - "codeCommune": "45339", - "libelleAcheminement": "VILLEMOUTIERS", - "nomCommune": "VILLEMOUTIERS" + "codePostal": "39700", + "codeCommune": "39308", + "libelleAcheminement": "MALANGE", + "nomCommune": "MALANGE" }, { - "codePostal": "66730", - "codeCommune": "66234", - "libelleAcheminement": "LE VIVIER", - "nomCommune": "LE VIVIER" + "codePostal": "41160", + "codeCommune": "41095", + "libelleAcheminement": "FRETEVAL", + "nomCommune": "FRETEVAL" }, { - "codePostal": "16600", - "codeCommune": "16291", - "libelleAcheminement": "RUELLE SUR TOUVRE", - "nomCommune": "RUELLE SUR TOUVRE" + "codePostal": "54170", + "codeCommune": "54046", + "libelleAcheminement": "BARISEY AU PLAIN", + "nomCommune": "BARISEY AU PLAIN" }, { - "codePostal": "32400", - "codeCommune": "32170", - "libelleAcheminement": "LABARTHETE", - "nomCommune": "LABARTHETE" + "codePostal": "53300", + "codeCommune": "53176", + "libelleAcheminement": "LE PAS", + "nomCommune": "LE PAS" }, { - "codePostal": "45190", - "codeCommune": "45344", - "libelleAcheminement": "VILLORCEAU", - "nomCommune": "VILLORCEAU" + "codePostal": "39230", + "codeCommune": "39310", + "libelleAcheminement": "MANTRY", + "nomCommune": "MANTRY" }, { - "codePostal": "67440", - "codeCommune": "67004", - "libelleAcheminement": "SOMMERAU", - "nomCommune": "SOMMERAU" + "codePostal": "41130", + "codeCommune": "41097", + "libelleAcheminement": "GIEVRES", + "nomCommune": "GIEVRES" }, { - "codePostal": "16230", - "codeCommune": "16300", - "libelleAcheminement": "VAL DE BONNIEURE", - "nomCommune": "VAL DE BONNIEURE" + "codePostal": "54370", + "codeCommune": "54050", + "libelleAcheminement": "BATHELEMONT", + "nomCommune": "BATHELEMONT" }, { - "codePostal": "32310", - "codeCommune": "32178", - "libelleAcheminement": "LAGARDERE", - "nomCommune": "LAGARDERE" + "codePostal": "53220", + "codeCommune": "53177", + "libelleAcheminement": "LA PELLERINE", + "nomCommune": "LA PELLERINE" }, { - "codePostal": "46500", - "codeCommune": "46003", - "libelleAcheminement": "ALVIGNAC", - "nomCommune": "ALVIGNAC" + "codePostal": "39240", + "codeCommune": "39312", + "libelleAcheminement": "MARIGNA SUR VALOUSE", + "nomCommune": "MARIGNA SUR VALOUSE" }, { - "codePostal": "67140", - "codeCommune": "67010", - "libelleAcheminement": "ANDLAU", - "nomCommune": "ANDLAU" + "codePostal": "41800", + "codeCommune": "41100", + "libelleAcheminement": "LES HAYES", + "nomCommune": "LES HAYES" }, { - "codePostal": "16100", - "codeCommune": "16304", - "libelleAcheminement": "ST BRICE", - "nomCommune": "ST BRICE" + "codePostal": "54370", + "codeCommune": "54053", + "libelleAcheminement": "BAUZEMONT", + "nomCommune": "BAUZEMONT" }, { - "codePostal": "32130", - "codeCommune": "32182", - "libelleAcheminement": "LAHAS", - "nomCommune": "LAHAS" + "codePostal": "53360", + "codeCommune": "53178", + "libelleAcheminement": "PEUTON", + "nomCommune": "PEUTON" }, { - "codePostal": "46250", - "codeCommune": "46008", - "libelleAcheminement": "LES ARQUES", - "nomCommune": "LES ARQUES" + "codePostal": "39130", + "codeCommune": "39313", + "libelleAcheminement": "MARIGNY", + "nomCommune": "MARIGNY" }, { - "codePostal": "67320", - "codeCommune": "67013", - "libelleAcheminement": "ASSWILLER", - "nomCommune": "ASSWILLER" + "codePostal": "41310", + "codeCommune": "41103", + "libelleAcheminement": "HUISSEAU EN BEAUCE", + "nomCommune": "HUISSEAU EN BEAUCE" }, { - "codePostal": "16130", - "codeCommune": "16316", - "libelleAcheminement": "ST FORT SUR LE NE", - "nomCommune": "ST FORT SUR LE NE" + "codePostal": "54800", + "codeCommune": "54058", + "libelleAcheminement": "BECHAMPS", + "nomCommune": "BECHAMPS" }, { - "codePostal": "32110", - "codeCommune": "32191", - "libelleAcheminement": "LANNE SOUBIRAN", - "nomCommune": "LANNE SOUBIRAN" + "codePostal": "53400", + "codeCommune": "53180", + "libelleAcheminement": "POMMERIEUX", + "nomCommune": "POMMERIEUX" }, { - "codePostal": "46230", - "codeCommune": "46013", - "libelleAcheminement": "BACH", - "nomCommune": "BACH" + "codePostal": "39600", + "codeCommune": "39319", + "libelleAcheminement": "MATHENAY", + "nomCommune": "MATHENAY" }, { - "codePostal": "67120", - "codeCommune": "67016", - "libelleAcheminement": "AVOLSHEIM", - "nomCommune": "AVOLSHEIM" + "codePostal": "41800", + "codeCommune": "41113", + "libelleAcheminement": "LAVARDIN", + "nomCommune": "LAVARDIN" }, { - "codePostal": "16460", - "codeCommune": "16318", - "libelleAcheminement": "ST FRONT", - "nomCommune": "ST FRONT" + "codePostal": "54740", + "codeCommune": "54062", + "libelleAcheminement": "BENNEY", + "nomCommune": "BENNEY" }, { - "codePostal": "32150", - "codeCommune": "32193", - "libelleAcheminement": "LAREE", - "nomCommune": "LAREE" + "codePostal": "53800", + "codeCommune": "53188", + "libelleAcheminement": "RENAZE", + "nomCommune": "RENAZE" }, { - "codePostal": "46400", - "codeCommune": "46017", - "libelleAcheminement": "BANNES", - "nomCommune": "BANNES" + "codePostal": "39130", + "codeCommune": "39326", + "libelleAcheminement": "MESNOIS", + "nomCommune": "MESNOIS" }, { - "codePostal": "67130", - "codeCommune": "67020", - "libelleAcheminement": "BAREMBACH", - "nomCommune": "BAREMBACH" + "codePostal": "41500", + "codeCommune": "41114", + "libelleAcheminement": "LESTIOU", + "nomCommune": "LESTIOU" }, { - "codePostal": "16570", - "codeCommune": "16320", - "libelleAcheminement": "ST GENIS D HIERSAC", - "nomCommune": "ST GENIS D HIERSAC" + "codePostal": "54470", + "codeCommune": "54063", + "libelleAcheminement": "BERNECOURT", + "nomCommune": "BERNECOURT" }, { - "codePostal": "32410", - "codeCommune": "32196", - "libelleAcheminement": "LARROQUE ST SERNIN", - "nomCommune": "LARROQUE ST SERNIN" + "codePostal": "53170", + "codeCommune": "53193", + "libelleAcheminement": "RUILLE FROID FONDS", + "nomCommune": "RUILLE FROID FONDS" }, { - "codePostal": "46500", - "codeCommune": "46018", - "libelleAcheminement": "LE BASTIT", - "nomCommune": "LE BASTIT" + "codePostal": "39570", + "codeCommune": "39327", + "libelleAcheminement": "MESSIA SUR SORNE", + "nomCommune": "MESSIA SUR SORNE" }, { - "codePostal": "67230", - "codeCommune": "67028", - "libelleAcheminement": "BENFELD", - "nomCommune": "BENFELD" + "codePostal": "41370", + "codeCommune": "41121", + "libelleAcheminement": "LA MADELEINE VILLEFROUIN", + "nomCommune": "LA MADELEINE VILLEFROUIN" }, { - "codePostal": "16480", - "codeCommune": "16331", - "libelleAcheminement": "ST LAURENT DES COMBES", - "nomCommune": "ST LAURENT DES COMBES" + "codePostal": "54640", + "codeCommune": "54066", + "libelleAcheminement": "BETTAINVILLERS", + "nomCommune": "BETTAINVILLERS" }, { - "codePostal": "32450", - "codeCommune": "32198", - "libelleAcheminement": "LARTIGUE", - "nomCommune": "LARTIGUE" + "codePostal": "53470", + "codeCommune": "53195", + "libelleAcheminement": "SACE", + "nomCommune": "SACE" }, { - "codePostal": "46230", - "codeCommune": "46026", - "libelleAcheminement": "BELMONT STE FOI", - "nomCommune": "BELMONT STE FOI" + "codePostal": "39250", + "codeCommune": "39329", + "libelleAcheminement": "MIEGES", + "nomCommune": "MIEGES" }, { - "codePostal": "67350", - "codeCommune": "67048", - "libelleAcheminement": "BITSCHHOFFEN", - "nomCommune": "BITSCHHOFFEN" + "codePostal": "41110", + "codeCommune": "41126", + "libelleAcheminement": "MAREUIL SUR CHER", + "nomCommune": "MAREUIL SUR CHER" }, { - "codePostal": "16700", - "codeCommune": "16335", - "libelleAcheminement": "ST MARTIN DU CLOCHER", - "nomCommune": "ST MARTIN DU CLOCHER" + "codePostal": "54620", + "codeCommune": "54067", + "libelleAcheminement": "BEUVEILLE", + "nomCommune": "BEUVEILLE" }, { - "codePostal": "32550", - "codeCommune": "32201", - "libelleAcheminement": "LASSEUBE PROPRE", - "nomCommune": "LASSEUBE PROPRE" + "codePostal": "53100", + "codeCommune": "53219", + "libelleAcheminement": "ST GEORGES BUTTAVENT", + "nomCommune": "ST GEORGES BUTTAVENT" }, { - "codePostal": "46110", - "codeCommune": "46028", - "libelleAcheminement": "BETAILLE", - "nomCommune": "BETAILLE" + "codePostal": "39250", + "codeCommune": "39329", + "libelleAcheminement": "MIEGES", + "nomCommune": "MIEGES" }, { - "codePostal": "67530", - "codeCommune": "67052", - "libelleAcheminement": "BOERSCH", - "nomCommune": "BOERSCH" + "codePostal": "41210", + "codeCommune": "41127", + "libelleAcheminement": "LA MAROLLE EN SOLOGNE", + "nomCommune": "LA MAROLLE EN SOLOGNE" }, { - "codePostal": "16300", - "codeCommune": "16338", - "libelleAcheminement": "ST MEDARD DE BARBEZIEUX", - "nomCommune": "ST MEDARD" + "codePostal": "54115", + "codeCommune": "54068", + "libelleAcheminement": "BEUVEZIN", + "nomCommune": "BEUVEZIN" }, { - "codePostal": "32230", - "codeCommune": "32205", - "libelleAcheminement": "LAVERAET", - "nomCommune": "LAVERAET" + "codePostal": "53600", + "codeCommune": "53221", + "libelleAcheminement": "ST GEORGES SUR ERVE", + "nomCommune": "ST GEORGES SUR ERVE" }, { - "codePostal": "46130", - "codeCommune": "46029", - "libelleAcheminement": "BIARS SUR CERE", - "nomCommune": "BIARS SUR CERE" + "codePostal": "39250", + "codeCommune": "39331", + "libelleAcheminement": "MIGNOVILLARD", + "nomCommune": "MIGNOVILLARD" }, { - "codePostal": "67420", - "codeCommune": "67059", - "libelleAcheminement": "BOURG BRUCHE", - "nomCommune": "BOURG BRUCHE" + "codePostal": "41250", + "codeCommune": "41129", + "libelleAcheminement": "MASLIVES", + "nomCommune": "MASLIVES" }, { - "codePostal": "16170", - "codeCommune": "16339", - "libelleAcheminement": "VAL D AUGE", - "nomCommune": "VAL D AUGE" + "codePostal": "54560", + "codeCommune": "54069", + "libelleAcheminement": "BEUVILLERS", + "nomCommune": "BEUVILLERS" }, { - "codePostal": "32300", - "codeCommune": "32215", - "libelleAcheminement": "LOUBERSAN", - "nomCommune": "LOUBERSAN" + "codePostal": "53240", + "codeCommune": "53222", + "libelleAcheminement": "ST GERMAIN D ANXURE", + "nomCommune": "ST GERMAIN D ANXURE" }, { - "codePostal": "46500", - "codeCommune": "46030", - "libelleAcheminement": "BIO", - "nomCommune": "BIO" + "codePostal": "39290", + "codeCommune": "39335", + "libelleAcheminement": "MOISSEY", + "nomCommune": "MOISSEY" }, { - "codePostal": "67330", - "codeCommune": "67061", - "libelleAcheminement": "BOUXWILLER", - "nomCommune": "BOUXWILLER" + "codePostal": "41190", + "codeCommune": "41142", + "libelleAcheminement": "VALENCISSE", + "nomCommune": "VALENCISSE" }, { - "codePostal": "16150", - "codeCommune": "16345", - "libelleAcheminement": "ST QUENTIN SUR CHARENTE", - "nomCommune": "ST QUENTIN SUR CHARENTE" + "codePostal": "54200", + "codeCommune": "54073", + "libelleAcheminement": "BICQUELEY", + "nomCommune": "BICQUELEY" }, { - "codePostal": "32120", - "codeCommune": "32229", - "libelleAcheminement": "MANSEMPUY", - "nomCommune": "MANSEMPUY" + "codePostal": "53240", + "codeCommune": "53225", + "libelleAcheminement": "ST GERMAIN LE GUILLAUME", + "nomCommune": "ST GERMAIN LE GUILLAUME" }, { - "codePostal": "46000", - "codeCommune": "46042", - "libelleAcheminement": "CAHORS", - "nomCommune": "CAHORS" + "codePostal": "39360", + "codeCommune": "39339", + "libelleAcheminement": "CHASSAL MOLINGES", + "nomCommune": "CHASSAL MOLINGES" }, { - "codePostal": "67330", - "codeCommune": "67061", - "libelleAcheminement": "BOUXWILLER", - "nomCommune": "BOUXWILLER" + "codePostal": "41400", + "codeCommune": "41146", + "libelleAcheminement": "MONTHOU SUR CHER", + "nomCommune": "MONTHOU SUR CHER" }, { - "codePostal": "16350", - "codeCommune": "16389", - "libelleAcheminement": "TURGON", - "nomCommune": "TURGON" + "codePostal": "54700", + "codeCommune": "54079", + "libelleAcheminement": "BLENOD LES PONT A MOUSSON", + "nomCommune": "BLENOD LES PONT A MOUSSON" }, { - "codePostal": "32120", - "codeCommune": "32232", - "libelleAcheminement": "MARAVAT", - "nomCommune": "MARAVAT" + "codePostal": "53700", + "codeCommune": "53236", + "libelleAcheminement": "ST MARS DU DESERT", + "nomCommune": "ST MARS DU DESERT" }, { - "codePostal": "46160", - "codeCommune": "46045", - "libelleAcheminement": "CAJARC", - "nomCommune": "CAJARC" + "codePostal": "39320", + "codeCommune": "39343", + "libelleAcheminement": "MONNETAY", + "nomCommune": "MONNETAY" }, { - "codePostal": "67130", - "codeCommune": "67066", - "libelleAcheminement": "LA BROQUE", - "nomCommune": "LA BROQUE" + "codePostal": "41350", + "codeCommune": "41148", + "libelleAcheminement": "MONTLIVAULT", + "nomCommune": "MONTLIVAULT" }, { - "codePostal": "16140", - "codeCommune": "16390", - "libelleAcheminement": "TUSSON", - "nomCommune": "TUSSON" + "codePostal": "54113", + "codeCommune": "54080", + "libelleAcheminement": "BLENOD LES TOUL", + "nomCommune": "BLENOD LES TOUL" }, { - "codePostal": "32230", - "codeCommune": "32240", - "libelleAcheminement": "MASCARAS", - "nomCommune": "MASCARAS" + "codePostal": "53500", + "codeCommune": "53245", + "libelleAcheminement": "ST PIERRE DES LANDES", + "nomCommune": "ST PIERRE DES LANDES" }, { - "codePostal": "46100", - "codeCommune": "46053", - "libelleAcheminement": "CAMBURAT", - "nomCommune": "CAMBURAT" + "codePostal": "39210", + "codeCommune": "39349", + "libelleAcheminement": "MONTAIN", + "nomCommune": "MONTAIN" }, { - "codePostal": "67570", - "codeCommune": "67066", - "libelleAcheminement": "LA BROQUE", - "nomCommune": "LA BROQUE" + "codePostal": "41250", + "codeCommune": "41150", + "libelleAcheminement": "MONT PRES CHAMBORD", + "nomCommune": "MONT PRES CHAMBORD" }, { - "codePostal": "16460", - "codeCommune": "16392", - "libelleAcheminement": "VALENCE", - "nomCommune": "VALENCE" + "codePostal": "54620", + "codeCommune": "54081", + "libelleAcheminement": "BOISMONT", + "nomCommune": "BOISMONT" }, { - "codePostal": "32380", - "codeCommune": "32248", - "libelleAcheminement": "MAUROUX", - "nomCommune": "MAUROUX" + "codePostal": "53370", + "codeCommune": "53246", + "libelleAcheminement": "ST PIERRE DES NIDS", + "nomCommune": "ST PIERRE DES NIDS" }, { - "codePostal": "46110", - "codeCommune": "46058", - "libelleAcheminement": "CARENNAC", - "nomCommune": "CARENNAC" + "codePostal": "39400", + "codeCommune": "39367", + "libelleAcheminement": "MORBIER", + "nomCommune": "MORBIER" }, { - "codePostal": "67320", - "codeCommune": "67071", - "libelleAcheminement": "BUST", - "nomCommune": "BUST" + "codePostal": "41600", + "codeCommune": "41161", + "libelleAcheminement": "NOUAN LE FUZELIER", + "nomCommune": "NOUAN LE FUZELIER" }, { - "codePostal": "16320", - "codeCommune": "16394", - "libelleAcheminement": "VAUX LAVALETTE", - "nomCommune": "VAUX LAVALETTE" + "codePostal": "54290", + "codeCommune": "54085", + "libelleAcheminement": "BORVILLE", + "nomCommune": "BORVILLE" }, { - "codePostal": "32120", - "codeCommune": "32249", - "libelleAcheminement": "MAUVEZIN", - "nomCommune": "MAUVEZIN" + "codePostal": "53160", + "codeCommune": "53249", + "libelleAcheminement": "VIMARTIN SUR ORTHE", + "nomCommune": "VIMARTIN SUR ORTHE" }, { - "codePostal": "46500", - "codeCommune": "46059", - "libelleAcheminement": "CARLUCET", - "nomCommune": "CARLUCET" + "codePostal": "39400", + "codeCommune": "39368", + "libelleAcheminement": "HAUTS DE BIENNE", + "nomCommune": "HAUTS DE BIENNE" }, { - "codePostal": "67160", - "codeCommune": "67074", - "libelleAcheminement": "CLEEBOURG", - "nomCommune": "CLEEBOURG" + "codePostal": "41140", + "codeCommune": "41164", + "libelleAcheminement": "NOYERS SUR CHER", + "nomCommune": "NOYERS SUR CHER" }, { - "codePostal": "16350", - "codeCommune": "16404", - "libelleAcheminement": "VIEUX RUFFEC", - "nomCommune": "VIEUX RUFFEC" + "codePostal": "54200", + "codeCommune": "54088", + "libelleAcheminement": "BOUVRON", + "nomCommune": "BOUVRON" }, { - "codePostal": "32420", - "codeCommune": "32250", - "libelleAcheminement": "MEILHAN", - "nomCommune": "MEILHAN" + "codePostal": "53800", + "codeCommune": "53258", + "libelleAcheminement": "LA SELLE CRAONNAISE", + "nomCommune": "LA SELLE CRAONNAISE" }, { - "codePostal": "46310", - "codeCommune": "46072", - "libelleAcheminement": "CONCORES", - "nomCommune": "CONCORES" + "codePostal": "39330", + "codeCommune": "39370", + "libelleAcheminement": "MOUCHARD", + "nomCommune": "MOUCHARD" }, { - "codePostal": "67120", - "codeCommune": "67080", - "libelleAcheminement": "DACHSTEIN", - "nomCommune": "DACHSTEIN" + "codePostal": "41700", + "codeCommune": "41166", + "libelleAcheminement": "OISLY", + "nomCommune": "OISLY" }, { - "codePostal": "16310", - "codeCommune": "16416", - "libelleAcheminement": "VITRAC ST VINCENT", - "nomCommune": "VITRAC ST VINCENT" + "codePostal": "54740", + "codeCommune": "54094", + "libelleAcheminement": "BRALLEVILLE", + "nomCommune": "BRALLEVILLE" }, { - "codePostal": "32360", - "codeCommune": "32251", - "libelleAcheminement": "MERENS", - "nomCommune": "MERENS" + "codePostal": "53270", + "codeCommune": "53265", + "libelleAcheminement": "TORCE VIVIERS EN CHARNIE", + "nomCommune": "TORCE VIVIERS EN CHARNIE" }, { - "codePostal": "46260", - "codeCommune": "46073", - "libelleAcheminement": "CONCOTS", - "nomCommune": "CONCOTS" + "codePostal": "39270", + "codeCommune": "39375", + "libelleAcheminement": "MOUTONNE", + "nomCommune": "MOUTONNE" }, { - "codePostal": "67110", - "codeCommune": "67083", - "libelleAcheminement": "DAMBACH", - "nomCommune": "DAMBACH" + "codePostal": "41290", + "codeCommune": "41171", + "libelleAcheminement": "OUCQUES LA NOUVELLE", + "nomCommune": "OUCQUES LA NOUVELLE" }, { - "codePostal": "16400", - "codeCommune": "16418", - "libelleAcheminement": "VOEUIL ET GIGET", - "nomCommune": "VOEUIL ET GIGET" + "codePostal": "54610", + "codeCommune": "54095", + "libelleAcheminement": "BRATTE", + "nomCommune": "BRATTE" }, { - "codePostal": "32170", - "codeCommune": "32252", - "libelleAcheminement": "MIELAN", - "nomCommune": "MIELAN" + "codePostal": "53160", + "codeCommune": "53266", + "libelleAcheminement": "TRANS", + "nomCommune": "TRANS" }, { - "codePostal": "46130", - "codeCommune": "46076", - "libelleAcheminement": "CORNAC", - "nomCommune": "CORNAC" + "codePostal": "39160", + "codeCommune": "39378", + "libelleAcheminement": "LES TROIS CHATEAUX", + "nomCommune": "LES TROIS CHATEAUX" }, { - "codePostal": "67150", - "codeCommune": "67086", - "libelleAcheminement": "DAUBENSAND", - "nomCommune": "DAUBENSAND" + "codePostal": "41240", + "codeCommune": "41173", + "libelleAcheminement": "BEAUCE LA ROMAINE", + "nomCommune": "BEAUCE LA ROMAINE" }, { - "codePostal": "16330", - "codeCommune": "16419", - "libelleAcheminement": "VOUHARTE", - "nomCommune": "VOUHARTE" + "codePostal": "54120", + "codeCommune": "54101", + "libelleAcheminement": "BROUVILLE", + "nomCommune": "BROUVILLE" }, { - "codePostal": "32340", - "codeCommune": "32253", - "libelleAcheminement": "MIRADOUX", - "nomCommune": "MIRADOUX" + "codePostal": "53250", + "codeCommune": "53272", + "libelleAcheminement": "VILLEPAIL", + "nomCommune": "VILLEPAIL" }, { - "codePostal": "46150", - "codeCommune": "46080", - "libelleAcheminement": "CRAYSSAC", - "nomCommune": "CRAYSSAC" + "codePostal": "39140", + "codeCommune": "39379", + "libelleAcheminement": "NANCE", + "nomCommune": "NANCE" }, { - "codePostal": "67230", - "codeCommune": "67090", - "libelleAcheminement": "DIEBOLSHEIM", - "nomCommune": "DIEBOLSHEIM" + "codePostal": "41270", + "codeCommune": "41179", + "libelleAcheminement": "LE POISLAY", + "nomCommune": "LE POISLAY" }, { - "codePostal": "16330", - "codeCommune": "16423", - "libelleAcheminement": "XAMBES", - "nomCommune": "XAMBES" + "codePostal": "54280", + "codeCommune": "54113", + "libelleAcheminement": "CHAMPENOUX", + "nomCommune": "CHAMPENOUX" }, { - "codePostal": "32350", - "codeCommune": "32257", - "libelleAcheminement": "MIRANNES", - "nomCommune": "MIRANNES" + "codePostal": "53170", + "codeCommune": "53273", + "libelleAcheminement": "VILLIERS CHARLEMAGNE", + "nomCommune": "VILLIERS CHARLEMAGNE" }, { - "codePostal": "46230", - "codeCommune": "46082", - "libelleAcheminement": "CREMPS", - "nomCommune": "CREMPS" + "codePostal": "39120", + "codeCommune": "39385", + "libelleAcheminement": "NEUBLANS ABERGEMENT", + "nomCommune": "NEUBLANS ABERGEMENT" }, { - "codePostal": "67260", - "codeCommune": "67091", - "libelleAcheminement": "DIEDENDORF", - "nomCommune": "DIEDENDORF" + "codePostal": "41400", + "codeCommune": "41180", + "libelleAcheminement": "PONTLEVOY", + "nomCommune": "PONTLEVOY" }, { - "codePostal": "16210", - "codeCommune": "16424", - "libelleAcheminement": "YVIERS", - "nomCommune": "YVIERS" + "codePostal": "54260", + "codeCommune": "54118", + "libelleAcheminement": "CHARENCY VEZIN", + "nomCommune": "CHARENCY VEZIN" }, { - "codePostal": "32130", - "codeCommune": "32261", - "libelleAcheminement": "MONBLANC", - "nomCommune": "MONBLANC" + "codePostal": "54610", + "codeCommune": "54001", + "libelleAcheminement": "ABAUCOURT SUR SEILLE", + "nomCommune": "ABAUCOURT" }, { - "codePostal": "46340", - "codeCommune": "46087", - "libelleAcheminement": "DEGAGNAC", - "nomCommune": "DEGAGNAC" + "codePostal": "39250", + "codeCommune": "39391", + "libelleAcheminement": "NOZEROY", + "nomCommune": "NOZEROY" }, { - "codePostal": "67170", - "codeCommune": "67100", - "libelleAcheminement": "DONNENHEIM", - "nomCommune": "DONNENHEIM" + "codePostal": "41110", + "codeCommune": "41181", + "libelleAcheminement": "POUILLE", + "nomCommune": "POUILLE" }, { - "codePostal": "17540", - "codeCommune": "17007", - "libelleAcheminement": "ANAIS", - "nomCommune": "ANAIS" + "codePostal": "54230", + "codeCommune": "54123", + "libelleAcheminement": "CHAVIGNY", + "nomCommune": "CHAVIGNY" }, { - "codePostal": "32260", - "codeCommune": "32267", - "libelleAcheminement": "MONFERRAN PLAVES", - "nomCommune": "MONFERRAN PLAVES" + "codePostal": "54770", + "codeCommune": "54006", + "libelleAcheminement": "AGINCOURT", + "nomCommune": "AGINCOURT" }, { - "codePostal": "46140", - "codeCommune": "46088", - "libelleAcheminement": "DOUELLE", - "nomCommune": "DOUELLE" + "codePostal": "39270", + "codeCommune": "39397", + "libelleAcheminement": "ORGELET", + "nomCommune": "ORGELET" }, { - "codePostal": "67330", - "codeCommune": "67103", - "libelleAcheminement": "DOSSENHEIM SUR ZINSEL", - "nomCommune": "DOSSENHEIM SUR ZINSEL" + "codePostal": "41200", + "codeCommune": "41185", + "libelleAcheminement": "PRUNIERS EN SOLOGNE", + "nomCommune": "PRUNIERS EN SOLOGNE" }, { - "codePostal": "17540", - "codeCommune": "17009", - "libelleAcheminement": "ANGLIERS", - "nomCommune": "ANGLIERS" + "codePostal": "54200", + "codeCommune": "54128", + "libelleAcheminement": "CHOLOY MENILLOT", + "nomCommune": "CHOLOY MENILLOT" }, { - "codePostal": "32140", - "codeCommune": "32272", - "libelleAcheminement": "MONLAUR BERNET", - "nomCommune": "MONLAUR BERNET" + "codePostal": "54460", + "codeCommune": "54007", + "libelleAcheminement": "AINGERAY", + "nomCommune": "AINGERAY" }, { - "codePostal": "46120", - "codeCommune": "46096", - "libelleAcheminement": "ESPEYROUX", - "nomCommune": "ESPEYROUX" + "codePostal": "39700", + "codeCommune": "39400", + "libelleAcheminement": "OUR", + "nomCommune": "OUR" }, { - "codePostal": "67160", - "codeCommune": "67104", - "libelleAcheminement": "DRACHENBRONN BIRLENBACH", - "nomCommune": "DRACHENBRONN BIRLENBACH" + "codePostal": "41270", + "codeCommune": "41196", + "libelleAcheminement": "RUAN SUR EGVONNE", + "nomCommune": "RUAN SUR EGVONNE" }, { - "codePostal": "17690", - "codeCommune": "17010", - "libelleAcheminement": "ANGOULINS", - "nomCommune": "ANGOULINS" + "codePostal": "54290", + "codeCommune": "54130", + "libelleAcheminement": "CLAYEURES", + "nomCommune": "CLAYEURES" }, { - "codePostal": "32140", - "codeCommune": "32280", - "libelleAcheminement": "MONT D ASTARAC", - "nomCommune": "MONT D ASTARAC" + "codePostal": "54450", + "codeCommune": "54013", + "libelleAcheminement": "AMENONCOURT", + "nomCommune": "AMENONCOURT" }, { - "codePostal": "46400", - "codeCommune": "46115", - "libelleAcheminement": "FRAYSSINHES", - "nomCommune": "FRAYSSINHES" + "codePostal": "39300", + "codeCommune": "39406", + "libelleAcheminement": "LE PASQUIER", + "nomCommune": "LE PASQUIER" }, { - "codePostal": "67270", - "codeCommune": "67109", - "libelleAcheminement": "DURNINGEN", - "nomCommune": "DURNINGEN" + "codePostal": "41310", + "codeCommune": "41199", + "libelleAcheminement": "ST AMAND LONGPRE", + "nomCommune": "ST AMAND LONGPRE" }, { - "codePostal": "17380", - "codeCommune": "17012", - "libelleAcheminement": "ANNEZAY", - "nomCommune": "ANNEZAY" + "codePostal": "54170", + "codeCommune": "54135", + "libelleAcheminement": "COLOMBEY LES BELLES", + "nomCommune": "COLOMBEY LES BELLES" }, { - "codePostal": "32170", - "codeCommune": "32281", - "libelleAcheminement": "MONT DE MARRAST", - "nomCommune": "MONT DE MARRAST" + "codePostal": "54560", + "codeCommune": "54015", + "libelleAcheminement": "ANDERNY", + "nomCommune": "ANDERNY" }, { - "codePostal": "46210", - "codeCommune": "46125", - "libelleAcheminement": "GORSES", - "nomCommune": "GORSES" + "codePostal": "39130", + "codeCommune": "39408", + "libelleAcheminement": "PATORNAY", + "nomCommune": "PATORNAY" }, { - "codePostal": "67470", - "codeCommune": "67113", - "libelleAcheminement": "EBERBACH SELTZ", - "nomCommune": "EBERBACH SELTZ" + "codePostal": "41330", + "codeCommune": "41203", + "libelleAcheminement": "ST BOHAIRE", + "nomCommune": "ST BOHAIRE" }, { - "codePostal": "17400", - "codeCommune": "17013", - "libelleAcheminement": "ANTEZANT LA CHAPELLE", - "nomCommune": "ANTEZANT LA CHAPELLE" + "codePostal": "54210", + "codeCommune": "54141", + "libelleAcheminement": "COYVILLER", + "nomCommune": "COYVILLER" }, { - "codePostal": "32220", - "codeCommune": "32284", - "libelleAcheminement": "MONTEGUT SAVES", - "nomCommune": "MONTEGUT SAVES" + "codePostal": "54200", + "codeCommune": "54016", + "libelleAcheminement": "ANDILLY", + "nomCommune": "ANDILLY" }, { - "codePostal": "46160", - "codeCommune": "46129", - "libelleAcheminement": "GREALOU", - "nomCommune": "GREALOU" + "codePostal": "39290", + "codeCommune": "39409", + "libelleAcheminement": "PEINTRE", + "nomCommune": "PEINTRE" }, { - "codePostal": "67600", - "codeCommune": "67116", - "libelleAcheminement": "EBERSMUNSTER", - "nomCommune": "EBERSMUNSTER" + "codePostal": "41000", + "codeCommune": "41206", + "libelleAcheminement": "ST DENIS SUR LOIRE", + "nomCommune": "ST DENIS SUR LOIRE" }, { - "codePostal": "17770", - "codeCommune": "17025", - "libelleAcheminement": "AUMAGNE", - "nomCommune": "AUMAGNE" + "codePostal": "54740", + "codeCommune": "54142", + "libelleAcheminement": "CRANTENOY", + "nomCommune": "CRANTENOY" }, { - "codePostal": "32300", - "codeCommune": "32293", - "libelleAcheminement": "MOUCHES", - "nomCommune": "MOUCHES" + "codePostal": "54540", + "codeCommune": "54017", + "libelleAcheminement": "ANGOMONT", + "nomCommune": "ANGOMONT" }, { - "codePostal": "46700", - "codeCommune": "46130", - "libelleAcheminement": "GREZELS", - "nomCommune": "GREZELS" + "codePostal": "39270", + "codeCommune": "39420", + "libelleAcheminement": "PIMORIN", + "nomCommune": "PIMORIN" }, { - "codePostal": "67960", - "codeCommune": "67124", - "libelleAcheminement": "ENTZHEIM", - "nomCommune": "ENTZHEIM" + "codePostal": "41160", + "codeCommune": "41216", + "libelleAcheminement": "ST JEAN FROIDMENTEL", + "nomCommune": "ST JEAN FROIDMENTEL" }, { - "codePostal": "17120", - "codeCommune": "17034", - "libelleAcheminement": "BARZAN", - "nomCommune": "BARZAN" + "codePostal": "54113", + "codeCommune": "54146", + "libelleAcheminement": "CREZILLES", + "nomCommune": "CREZILLES" }, { - "codePostal": "32270", - "codeCommune": "32298", - "libelleAcheminement": "NOUGAROULET", - "nomCommune": "NOUGAROULET" + "codePostal": "54530", + "codeCommune": "54022", + "libelleAcheminement": "ARNAVILLE", + "nomCommune": "ARNAVILLE" }, { - "codePostal": "46150", - "codeCommune": "46136", - "libelleAcheminement": "LABASTIDE DU VERT", - "nomCommune": "LABASTIDE DU VERT" + "codePostal": "39210", + "codeCommune": "39422", + "libelleAcheminement": "PLAINOISEAU", + "nomCommune": "PLAINOISEAU" }, { - "codePostal": "67120", - "codeCommune": "67127", - "libelleAcheminement": "ERGERSHEIM", - "nomCommune": "ERGERSHEIM" + "codePostal": "41220", + "codeCommune": "41220", + "libelleAcheminement": "ST LAURENT NOUAN", + "nomCommune": "ST LAURENT NOUAN" }, { - "codePostal": "17490", - "codeCommune": "17037", - "libelleAcheminement": "BEAUVAIS SUR MATHA", - "nomCommune": "BEAUVAIS SUR MATHA" + "codePostal": "54300", + "codeCommune": "54147", + "libelleAcheminement": "CRION", + "nomCommune": "CRION" }, { - "codePostal": "32550", - "codeCommune": "32307", - "libelleAcheminement": "PAVIE", - "nomCommune": "PAVIE" + "codePostal": "54760", + "codeCommune": "54024", + "libelleAcheminement": "ARRAYE ET HAN", + "nomCommune": "ARRAYE ET HAN" }, { - "codePostal": "46240", - "codeCommune": "46138", - "libelleAcheminement": "COEUR DE CAUSSE", - "nomCommune": "COEUR DE CAUSSE" + "codePostal": "39130", + "codeCommune": "39435", + "libelleAcheminement": "PONT DE POITTE", + "nomCommune": "PONT DE POITTE" }, { - "codePostal": "67150", - "codeCommune": "67130", - "libelleAcheminement": "ERSTEIN", - "nomCommune": "ERSTEIN" + "codePostal": "41370", + "codeCommune": "41221", + "libelleAcheminement": "ST LEONARD EN BEAUCE", + "nomCommune": "ST LEONARD EN BEAUCE" }, { - "codePostal": "17800", - "codeCommune": "17039", - "libelleAcheminement": "BELLUIRE", - "nomCommune": "BELLUIRE" + "codePostal": "54720", + "codeCommune": "54151", + "libelleAcheminement": "CUTRY", + "nomCommune": "CUTRY" }, { - "codePostal": "32130", - "codeCommune": "32308", - "libelleAcheminement": "PEBEES", - "nomCommune": "PEBEES" + "codePostal": "54490", + "codeCommune": "54033", + "libelleAcheminement": "AVILLERS", + "nomCommune": "AVILLERS" }, { - "codePostal": "46090", - "codeCommune": "46156", - "libelleAcheminement": "BELLEFONT LA RAUZE", - "nomCommune": "BELLEFONT LA RAUZE" + "codePostal": "39110", + "codeCommune": "39436", + "libelleAcheminement": "PONT D HERY", + "nomCommune": "PONT D HERY" }, { - "codePostal": "67150", - "codeCommune": "67130", - "libelleAcheminement": "ERSTEIN", - "nomCommune": "ERSTEIN" + "codePostal": "41110", + "codeCommune": "41239", + "libelleAcheminement": "SEIGY", + "nomCommune": "SEIGY" }, { - "codePostal": "17770", - "codeCommune": "17042", - "libelleAcheminement": "BERCLOUX", - "nomCommune": "BERCLOUX" + "codePostal": "54930", + "codeCommune": "54156", + "libelleAcheminement": "DIARVILLE", + "nomCommune": "DIARVILLE" }, { - "codePostal": "32420", - "codeCommune": "32309", - "libelleAcheminement": "PELLEFIGUE", - "nomCommune": "PELLEFIGUE" + "codePostal": "54150", + "codeCommune": "54036", + "libelleAcheminement": "AVRIL", + "nomCommune": "AVRIL" }, { - "codePostal": "46090", - "codeCommune": "46156", - "libelleAcheminement": "BELLEFONT LA RAUZE", - "nomCommune": "BELLEFONT LA RAUZE" + "codePostal": "39110", + "codeCommune": "39436", + "libelleAcheminement": "PONT D HERY", + "nomCommune": "PONT D HERY" }, { - "codePostal": "67117", - "codeCommune": "67138", - "libelleAcheminement": "FESSENHEIM LE BAS", - "nomCommune": "FESSENHEIM LE BAS" + "codePostal": "41120", + "codeCommune": "41246", + "libelleAcheminement": "SEUR", + "nomCommune": "SEUR" }, { - "codePostal": "17330", - "codeCommune": "17043", - "libelleAcheminement": "BERNAY ST MARTIN", - "nomCommune": "BERNAY ST MARTIN" + "codePostal": "54770", + "codeCommune": "54168", + "libelleAcheminement": "DOMMARTIN SOUS AMANCE", + "nomCommune": "DOMMARTIN SOUS AMANCE" }, { - "codePostal": "32380", - "codeCommune": "32313", - "libelleAcheminement": "PESSOULENS", - "nomCommune": "PESSOULENS" + "codePostal": "54210", + "codeCommune": "54037", + "libelleAcheminement": "AZELOT", + "nomCommune": "AZELOT" }, { - "codePostal": "46400", - "codeCommune": "46159", - "libelleAcheminement": "LATOUILLE LENTILLAC", - "nomCommune": "LATOUILLE LENTILLAC" + "codePostal": "39270", + "codeCommune": "39443", + "libelleAcheminement": "PRESILLY", + "nomCommune": "PRESILLY" }, { - "codePostal": "67310", - "codeCommune": "67139", - "libelleAcheminement": "FLEXBOURG", - "nomCommune": "FLEXBOURG" + "codePostal": "41170", + "codeCommune": "41248", + "libelleAcheminement": "COUETRON AU PERCHE", + "nomCommune": "COUETRON AU PERCHE" }, { - "codePostal": "17330", - "codeCommune": "17043", - "libelleAcheminement": "BERNAY ST MARTIN", - "nomCommune": "BERNAY ST MARTIN" + "codePostal": "54490", + "codeCommune": "54169", + "libelleAcheminement": "DOMPRIX", + "nomCommune": "DOMPRIX" }, { - "codePostal": "32360", - "codeCommune": "32316", - "libelleAcheminement": "PEYRUSSE MASSAS", - "nomCommune": "PEYRUSSE MASSAS" + "codePostal": "54120", + "codeCommune": "54039", + "libelleAcheminement": "BACCARAT", + "nomCommune": "BACCARAT" }, { - "codePostal": "46150", - "codeCommune": "46171", - "libelleAcheminement": "LHERM", - "nomCommune": "LHERM" + "codePostal": "39110", + "codeCommune": "39444", + "libelleAcheminement": "PRETIN", + "nomCommune": "PRETIN" }, { - "codePostal": "67290", - "codeCommune": "67148", - "libelleAcheminement": "FROHMUHL", - "nomCommune": "FROHMUHL" + "codePostal": "41170", + "codeCommune": "41248", + "libelleAcheminement": "COUETRON AU PERCHE", + "nomCommune": "COUETRON AU PERCHE" }, { - "codePostal": "17700", - "codeCommune": "17063", - "libelleAcheminement": "BREUIL LA REORTE", - "nomCommune": "BREUIL LA REORTE" + "codePostal": "54370", + "codeCommune": "54173", + "libelleAcheminement": "DROUVILLE", + "nomCommune": "DROUVILLE" }, { - "codePostal": "32500", - "codeCommune": "32318", - "libelleAcheminement": "PIS", - "nomCommune": "PIS" + "codePostal": "54170", + "codeCommune": "54041", + "libelleAcheminement": "BAGNEUX", + "nomCommune": "BAGNEUX" }, { - "codePostal": "46100", - "codeCommune": "46175", - "libelleAcheminement": "LISSAC ET MOURET", - "nomCommune": "LISSAC ET MOURET" + "codePostal": "39600", + "codeCommune": "39446", + "libelleAcheminement": "PUPILLIN", + "nomCommune": "PUPILLIN" }, { - "codePostal": "67760", - "codeCommune": "67151", - "libelleAcheminement": "GAMBSHEIM", - "nomCommune": "GAMBSHEIM" + "codePostal": "41170", + "codeCommune": "41254", + "libelleAcheminement": "LE TEMPLE", + "nomCommune": "LE TEMPLE" }, { - "codePostal": "17160", - "codeCommune": "17067", - "libelleAcheminement": "BRIE SOUS MATHA", - "nomCommune": "BRIE SOUS MATHA" + "codePostal": "54200", + "codeCommune": "54174", + "libelleAcheminement": "ECROUVES", + "nomCommune": "ECROUVES" }, { - "codePostal": "32130", - "codeCommune": "32322", - "libelleAcheminement": "POMPIAC", - "nomCommune": "POMPIAC" + "codePostal": "54290", + "codeCommune": "54042", + "libelleAcheminement": "BAINVILLE AUX MIROIRS", + "nomCommune": "BAINVILLE AUX MIROIRS" }, { - "codePostal": "46100", - "codeCommune": "46180", - "libelleAcheminement": "LUNAN", - "nomCommune": "LUNAN" + "codePostal": "39570", + "codeCommune": "39447", + "libelleAcheminement": "QUINTIGNY", + "nomCommune": "QUINTIGNY" }, { - "codePostal": "67360", - "codeCommune": "67160", - "libelleAcheminement": "GOERSDORF", - "nomCommune": "GOERSDORF" + "codePostal": "41140", + "codeCommune": "41258", + "libelleAcheminement": "THESEE", + "nomCommune": "THESEE" }, { - "codePostal": "17210", - "codeCommune": "17074", - "libelleAcheminement": "BUSSAC FORET", - "nomCommune": "BUSSAC FORET" + "codePostal": "54370", + "codeCommune": "54176", + "libelleAcheminement": "EINVILLE AU JARD", + "nomCommune": "EINVILLE AU JARD" }, { - "codePostal": "32320", - "codeCommune": "32326", - "libelleAcheminement": "POUYLEBON", - "nomCommune": "POUYLEBON" + "codePostal": "54150", + "codeCommune": "54048", + "libelleAcheminement": "LES BAROCHES", + "nomCommune": "LES BAROCHES" }, { - "codePostal": "46090", - "codeCommune": "46188", - "libelleAcheminement": "MAXOU", - "nomCommune": "MAXOU" + "codePostal": "39290", + "codeCommune": "39449", + "libelleAcheminement": "RAINANS", + "nomCommune": "RAINANS" }, { - "codePostal": "67210", - "codeCommune": "67164", - "libelleAcheminement": "GOXWILLER", - "nomCommune": "GOXWILLER" + "codePostal": "41100", + "codeCommune": "41259", + "libelleAcheminement": "THORE LA ROCHETTE", + "nomCommune": "THORE LA ROCHETTE" }, { - "codePostal": "17130", - "codeCommune": "17092", - "libelleAcheminement": "CHARTUZAC", - "nomCommune": "CHARTUZAC" + "codePostal": "54610", + "codeCommune": "54179", + "libelleAcheminement": "EPLY", + "nomCommune": "EPLY" }, { - "codePostal": "32100", - "codeCommune": "32350", - "libelleAcheminement": "ROQUEPINE", - "nomCommune": "ROQUEPINE" + "codePostal": "54980", + "codeCommune": "54051", + "libelleAcheminement": "BATILLY", + "nomCommune": "BATILLY" }, { - "codePostal": "46310", - "codeCommune": "46196", - "libelleAcheminement": "MONTAMEL", - "nomCommune": "MONTAMEL" + "codePostal": "39230", + "codeCommune": "39472", + "libelleAcheminement": "RYE", + "nomCommune": "RYE" }, { - "codePostal": "67870", - "codeCommune": "67172", - "libelleAcheminement": "GRIESHEIM PRES MOLSHEIM", - "nomCommune": "GRIESHEIM PRES MOLSHEIM" + "codePostal": "41220", + "codeCommune": "41260", + "libelleAcheminement": "THOURY", + "nomCommune": "THOURY" }, { - "codePostal": "17600", - "codeCommune": "17097", - "libelleAcheminement": "LE CHAY", - "nomCommune": "LE CHAY" + "codePostal": "54680", + "codeCommune": "54181", + "libelleAcheminement": "ERROUVILLE", + "nomCommune": "ERROUVILLE" }, { - "codePostal": "32390", - "codeCommune": "32368", - "libelleAcheminement": "STE CHRISTIE", - "nomCommune": "STE CHRISTIE" + "codePostal": "54290", + "codeCommune": "54054", + "libelleAcheminement": "BAYON", + "nomCommune": "BAYON" }, { - "codePostal": "46250", - "codeCommune": "46200", - "libelleAcheminement": "MONTCLERA", - "nomCommune": "MONTCLERA" + "codePostal": "39410", + "codeCommune": "39476", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "67370", - "codeCommune": "67173", - "libelleAcheminement": "GRIESHEIM SUR SOUFFEL", - "nomCommune": "GRIESHEIM SUR SOUFFEL" + "codePostal": "41100", + "codeCommune": "41269", + "libelleAcheminement": "VENDOME", + "nomCommune": "VENDOME" }, { - "codePostal": "17610", - "codeCommune": "17100", - "libelleAcheminement": "CHERAC", - "nomCommune": "CHERAC" + "codePostal": "54830", + "codeCommune": "54183", + "libelleAcheminement": "ESSEY LA COTE", + "nomCommune": "ESSEY LA COTE" }, { - "codePostal": "32430", - "codeCommune": "32372", - "libelleAcheminement": "ST CRICQ", - "nomCommune": "ST CRICQ" + "codePostal": "54610", + "codeCommune": "54059", + "libelleAcheminement": "BELLEAU", + "nomCommune": "BELLEAU" }, { - "codePostal": "46800", - "codeCommune": "46201", - "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", - "nomCommune": "MONTCUQ EN QUERCY BLANC" + "codePostal": "39300", + "codeCommune": "39481", + "libelleAcheminement": "ST GERMAIN EN MONTAGNE", + "nomCommune": "ST GERMAIN EN MONTAGNE" }, { - "codePostal": "67500", - "codeCommune": "67180", - "libelleAcheminement": "HAGUENAU", - "nomCommune": "HAGUENAU" + "codePostal": "41270", + "codeCommune": "41277", + "libelleAcheminement": "VILLEBOUT", + "nomCommune": "VILLEBOUT" }, { - "codePostal": "17270", - "codeCommune": "17110", - "libelleAcheminement": "CLERAC", - "nomCommune": "CLERAC" + "codePostal": "54470", + "codeCommune": "54187", + "libelleAcheminement": "EUVEZIN", + "nomCommune": "EUVEZIN" }, { - "codePostal": "32300", - "codeCommune": "32375", - "libelleAcheminement": "ST ELIX THEUX", - "nomCommune": "ST ELIX THEUX" + "codePostal": "54480", + "codeCommune": "54064", + "libelleAcheminement": "BERTRAMBOIS", + "nomCommune": "BERTRAMBOIS" }, { - "codePostal": "46270", - "codeCommune": "46207", - "libelleAcheminement": "MONTREDON", - "nomCommune": "MONTREDON" + "codePostal": "39320", + "codeCommune": "39485", + "libelleAcheminement": "VAL SURAN", + "nomCommune": "VAL SURAN" }, { - "codePostal": "67117", - "codeCommune": "67181", - "libelleAcheminement": "HANDSCHUHEIM", - "nomCommune": "HANDSCHUHEIM" + "codePostal": "41100", + "codeCommune": "41283", + "libelleAcheminement": "VILLEMARDY", + "nomCommune": "VILLEMARDY" }, { - "codePostal": "17130", - "codeCommune": "17129", - "libelleAcheminement": "COURPIGNAC", - "nomCommune": "COURPIGNAC" + "codePostal": "54210", + "codeCommune": "54192", + "libelleAcheminement": "FERRIERES", + "nomCommune": "FERRIERES" }, { - "codePostal": "32200", - "codeCommune": "32379", - "libelleAcheminement": "ST GERMIER", - "nomCommune": "ST GERMIER" + "codePostal": "54380", + "codeCommune": "54072", + "libelleAcheminement": "BEZAUMONT", + "nomCommune": "BEZAUMONT" }, { - "codePostal": "46600", - "codeCommune": "46208", - "libelleAcheminement": "MONTVALENT", - "nomCommune": "MONTVALENT" + "codePostal": "39230", + "codeCommune": "39486", + "libelleAcheminement": "ST LAMAIN", + "nomCommune": "ST LAMAIN" }, { - "codePostal": "67260", - "codeCommune": "67191", - "libelleAcheminement": "HERBITZHEIM", - "nomCommune": "HERBITZHEIM" + "codePostal": "41220", + "codeCommune": "41285", + "libelleAcheminement": "VILLENY", + "nomCommune": "VILLENY" }, { - "codePostal": "17260", - "codeCommune": "17133", - "libelleAcheminement": "CRAVANS", - "nomCommune": "CRAVANS" + "codePostal": "54150", + "codeCommune": "54198", + "libelleAcheminement": "FLEVILLE LIXIERES", + "nomCommune": "FLEVILLE LIXIERES" }, { - "codePostal": "32550", - "codeCommune": "32381", - "libelleAcheminement": "ST JEAN LE COMTAL", - "nomCommune": "ST JEAN LE COMTAL" + "codePostal": "54450", + "codeCommune": "54077", + "libelleAcheminement": "BLAMONT", + "nomCommune": "BLAMONT" }, { - "codePostal": "46150", - "codeCommune": "46211", - "libelleAcheminement": "NUZEJOULS", - "nomCommune": "NUZEJOULS" + "codePostal": "39150", + "codeCommune": "39487", + "libelleAcheminement": "ST LAURENT EN GRANDVAUX", + "nomCommune": "ST LAURENT EN GRANDVAUX" }, { - "codePostal": "67290", - "codeCommune": "67198", - "libelleAcheminement": "HINSBOURG", - "nomCommune": "HINSBOURG" + "codePostal": "41100", + "codeCommune": "41291", + "libelleAcheminement": "VILLETRUN", + "nomCommune": "VILLETRUN" }, { - "codePostal": "17550", - "codeCommune": "17140", - "libelleAcheminement": "DOLUS D OLERON", - "nomCommune": "DOLUS D OLERON" + "codePostal": "54122", + "codeCommune": "54201", + "libelleAcheminement": "FONTENOY LA JOUTE", + "nomCommune": "FONTENOY LA JOUTE" }, { - "codePostal": "32230", - "codeCommune": "32383", - "libelleAcheminement": "ST JUSTIN", - "nomCommune": "ST JUSTIN" + "codePostal": "54450", + "codeCommune": "54078", + "libelleAcheminement": "BLEMEREY", + "nomCommune": "BLEMEREY" }, { - "codePostal": "46330", - "codeCommune": "46212", - "libelleAcheminement": "ORNIAC", - "nomCommune": "ORNIAC" + "codePostal": "39120", + "codeCommune": "39490", + "libelleAcheminement": "ST LOUP", + "nomCommune": "ST LOUP" }, { - "codePostal": "67320", - "codeCommune": "67201", - "libelleAcheminement": "HIRSCHLAND", - "nomCommune": "HIRSCHLAND" + "codePostal": "41500", + "codeCommune": "41292", + "libelleAcheminement": "VILLEXANTON", + "nomCommune": "VILLEXANTON" }, { - "codePostal": "17810", - "codeCommune": "17148", - "libelleAcheminement": "ECURAT", - "nomCommune": "ECURAT" + "codePostal": "54300", + "codeCommune": "54206", + "libelleAcheminement": "FRAIMBOIS", + "nomCommune": "FRAIMBOIS" }, { - "codePostal": "32220", - "codeCommune": "32386", - "libelleAcheminement": "ST LIZIER DU PLANTE", - "nomCommune": "ST LIZIER DU PLANTE" + "codePostal": "54111", + "codeCommune": "54084", + "libelleAcheminement": "MONT BONVILLERS", + "nomCommune": "MONT BONVILLERS" }, { - "codePostal": "46140", - "codeCommune": "46214", - "libelleAcheminement": "PARNAC", - "nomCommune": "PARNAC" + "codePostal": "39150", + "codeCommune": "39494", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "67250", - "codeCommune": "67206", - "libelleAcheminement": "HOFFEN", - "nomCommune": "HOFFEN" + "codePostal": "41100", + "codeCommune": "41293", + "libelleAcheminement": "VILLIERSFAUX", + "nomCommune": "VILLIERSFAUX" }, { - "codePostal": "17400", - "codeCommune": "17150", - "libelleAcheminement": "LES EGLISES D ARGENTEUIL", - "nomCommune": "LES EGLISES D ARGENTEUIL" + "codePostal": "54200", + "codeCommune": "54208", + "libelleAcheminement": "FRANCHEVILLE", + "nomCommune": "FRANCHEVILLE" }, { - "codePostal": "32300", - "codeCommune": "32397", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "54136", + "codeCommune": "54090", + "libelleAcheminement": "BOUXIERES AUX DAMES", + "nomCommune": "BOUXIERES AUX DAMES" }, { - "codePostal": "46220", - "codeCommune": "46218", - "libelleAcheminement": "PESCADOIRES", - "nomCommune": "PESCADOIRES" + "codePostal": "39110", + "codeCommune": "39495", + "libelleAcheminement": "ST THIEBAUD", + "nomCommune": "ST THIEBAUD" }, { - "codePostal": "67117", - "codeCommune": "67214", - "libelleAcheminement": "HURTIGHEIM", - "nomCommune": "HURTIGHEIM" + "codePostal": "41100", + "codeCommune": "41294", + "libelleAcheminement": "VILLIERS SUR LOIR", + "nomCommune": "VILLIERS SUR LOIR" }, { - "codePostal": "17250", - "codeCommune": "17154", - "libelleAcheminement": "LES ESSARDS", - "nomCommune": "LES ESSARDS" + "codePostal": "54380", + "codeCommune": "54225", + "libelleAcheminement": "GEZONCOURT", + "nomCommune": "GEZONCOURT" }, { - "codePostal": "32100", - "codeCommune": "32400", - "libelleAcheminement": "ST ORENS POUY PETIT", - "nomCommune": "ST ORENS POUY PETIT" + "codePostal": "54540", + "codeCommune": "54097", + "libelleAcheminement": "BREMENIL", + "nomCommune": "BREMENIL" }, { - "codePostal": "46310", - "codeCommune": "46219", - "libelleAcheminement": "PEYRILLES", - "nomCommune": "PEYRILLES" + "codePostal": "39110", + "codeCommune": "39497", + "libelleAcheminement": "SAIZENAY", + "nomCommune": "SAIZENAY" }, { - "codePostal": "67270", - "codeCommune": "67215", - "libelleAcheminement": "HUTTENDORF", - "nomCommune": "HUTTENDORF" + "codePostal": "42550", + "codeCommune": "42006", + "libelleAcheminement": "APINAC", + "nomCommune": "APINAC" }, { - "codePostal": "17270", - "codeCommune": "17167", - "libelleAcheminement": "LE FOUILLOUX", - "nomCommune": "LE FOUILLOUX" + "codePostal": "54450", + "codeCommune": "54233", + "libelleAcheminement": "GONDREXON", + "nomCommune": "GONDREXON" }, { - "codePostal": "32190", - "codeCommune": "32402", - "libelleAcheminement": "ST PAUL DE BAISE", - "nomCommune": "ST PAUL DE BAISE" + "codePostal": "54790", + "codeCommune": "54099", + "libelleAcheminement": "VAL DE BRIEY", + "nomCommune": "VAL DE BRIEY" }, { - "codePostal": "46360", - "codeCommune": "46245", - "libelleAcheminement": "SABADEL LAUZES", - "nomCommune": "SABADEL LAUZES" + "codePostal": "39120", + "codeCommune": "39507", + "libelleAcheminement": "SELIGNEY", + "nomCommune": "SELIGNEY" }, { - "codePostal": "67480", - "codeCommune": "67231", - "libelleAcheminement": "KAUFFENHEIM", - "nomCommune": "KAUFFENHEIM" + "codePostal": "42130", + "codeCommune": "42009", + "libelleAcheminement": "ARTHUN", + "nomCommune": "ARTHUN" }, { - "codePostal": "17430", - "codeCommune": "17174", - "libelleAcheminement": "GENOUILLE", - "nomCommune": "GENOUILLE" + "codePostal": "54470", + "codeCommune": "54244", + "libelleAcheminement": "HAGEVILLE", + "nomCommune": "HAGEVILLE" }, { - "codePostal": "32290", - "codeCommune": "32403", - "libelleAcheminement": "ST PIERRE D AUBEZIES", - "nomCommune": "ST PIERRE D AUBEZIES" + "codePostal": "54110", + "codeCommune": "54104", + "libelleAcheminement": "BUISSONCOURT", + "nomCommune": "BUISSONCOURT" }, { - "codePostal": "46360", - "codeCommune": "46252", - "libelleAcheminement": "LES PECHS DU VERS", - "nomCommune": "LES PECHS DU VERS" + "codePostal": "39300", + "codeCommune": "39522", + "libelleAcheminement": "SUPT", + "nomCommune": "SUPT" }, { - "codePostal": "67260", - "codeCommune": "67234", - "libelleAcheminement": "KESKASTEL", - "nomCommune": "KESKASTEL" + "codePostal": "42600", + "codeCommune": "42012", + "libelleAcheminement": "BARD", + "nomCommune": "BARD" }, { - "codePostal": "17160", - "codeCommune": "17177", - "libelleAcheminement": "LE GICQ", - "nomCommune": "LE GICQ" + "codePostal": "54290", + "codeCommune": "54245", + "libelleAcheminement": "HAIGNEVILLE", + "nomCommune": "HAIGNEVILLE" }, { - "codePostal": "32420", - "codeCommune": "32413", - "libelleAcheminement": "SARCOS", - "nomCommune": "SARCOS" + "codePostal": "54113", + "codeCommune": "54105", + "libelleAcheminement": "BULLIGNY", + "nomCommune": "BULLIGNY" }, { - "codePostal": "46310", - "codeCommune": "46253", - "libelleAcheminement": "ST CHAMARAND", - "nomCommune": "ST CHAMARAND" + "codePostal": "39300", + "codeCommune": "39523", + "libelleAcheminement": "SYAM", + "nomCommune": "SYAM" }, { - "codePostal": "67320", - "codeCommune": "67241", - "libelleAcheminement": "KIRRBERG", - "nomCommune": "KIRRBERG" + "codePostal": "42130", + "codeCommune": "42019", + "libelleAcheminement": "BOEN SUR LIGNON", + "nomCommune": "BOEN SUR LIGNON" }, { - "codePostal": "17520", - "codeCommune": "17192", - "libelleAcheminement": "JARNAC CHAMPAGNE", - "nomCommune": "JARNAC CHAMPAGNE" + "codePostal": "54860", + "codeCommune": "54254", + "libelleAcheminement": "HAUCOURT MOULAINE", + "nomCommune": "HAUCOURT MOULAINE" }, { - "codePostal": "32400", - "codeCommune": "32414", - "libelleAcheminement": "SARRAGACHIES", - "nomCommune": "SARRAGACHIES" + "codePostal": "54134", + "codeCommune": "54109", + "libelleAcheminement": "CEINTREY", + "nomCommune": "CEINTREY" }, { - "codePostal": "46800", - "codeCommune": "46262", - "libelleAcheminement": "LENDOU EN QUERCY", - "nomCommune": "LENDOU EN QUERCY" + "codePostal": "39500", + "codeCommune": "39526", + "libelleAcheminement": "TAVAUX", + "nomCommune": "TAVAUX" }, { - "codePostal": "67330", - "codeCommune": "67242", - "libelleAcheminement": "KIRRWILLER", - "nomCommune": "KIRRWILLER" + "codePostal": "42460", + "codeCommune": "42025", + "libelleAcheminement": "BOYER", + "nomCommune": "BOYER" }, { - "codePostal": "17770", - "codeCommune": "17198", - "libelleAcheminement": "JUICQ", - "nomCommune": "JUICQ" + "codePostal": "54440", + "codeCommune": "54261", + "libelleAcheminement": "HERSERANGE", + "nomCommune": "HERSERANGE" }, { - "codePostal": "32120", - "codeCommune": "32416", - "libelleAcheminement": "SARRANT", - "nomCommune": "SARRANT" + "codePostal": "54300", + "codeCommune": "54116", + "libelleAcheminement": "CHANTEHEUX", + "nomCommune": "CHANTEHEUX" }, { - "codePostal": "46800", - "codeCommune": "46263", - "libelleAcheminement": "BARGUELONNE EN QUERCY", - "nomCommune": "BARGUELONNE EN QUERCY" + "codePostal": "39110", + "codeCommune": "39529", + "libelleAcheminement": "THESY", + "nomCommune": "THESY" }, { - "codePostal": "67170", - "codeCommune": "67249", - "libelleAcheminement": "KRAUTWILLER", - "nomCommune": "KRAUTWILLER" + "codePostal": "42240", + "codeCommune": "42031", + "libelleAcheminement": "CALOIRE", + "nomCommune": "CALOIRE" }, { - "codePostal": "17140", - "codeCommune": "17200", - "libelleAcheminement": "LAGORD", - "nomCommune": "LAGORD" + "codePostal": "54330", + "codeCommune": "54264", + "libelleAcheminement": "HOUDELMONT", + "nomCommune": "HOUDELMONT" }, { - "codePostal": "32220", - "codeCommune": "32418", - "libelleAcheminement": "SAUVETERRE", - "nomCommune": "SAUVETERRE" + "codePostal": "54720", + "codeCommune": "54127", + "libelleAcheminement": "CHENIERES", + "nomCommune": "CHENIERES" }, { - "codePostal": "46800", - "codeCommune": "46263", - "libelleAcheminement": "BARGUELONNE EN QUERCY", - "nomCommune": "BARGUELONNE EN QUERCY" + "codePostal": "39240", + "codeCommune": "39530", + "libelleAcheminement": "THOIRETTE COISIA", + "nomCommune": "THOIRETTE COISIA" }, { - "codePostal": "67450", - "codeCommune": "67256", - "libelleAcheminement": "LAMPERTHEIM", - "nomCommune": "LAMPERTHEIM" + "codePostal": "42130", + "codeCommune": "42035", + "libelleAcheminement": "CEZAY", + "nomCommune": "CEZAY" }, { - "codePostal": "17330", - "codeCommune": "17211", - "libelleAcheminement": "LOULAY", - "nomCommune": "LOULAY" + "codePostal": "54330", + "codeCommune": "54266", + "libelleAcheminement": "HOUDREVILLE", + "nomCommune": "HOUDREVILLE" }, { - "codePostal": "32300", - "codeCommune": "32419", - "libelleAcheminement": "SAUVIAC", - "nomCommune": "SAUVIAC" + "codePostal": "54480", + "codeCommune": "54129", + "libelleAcheminement": "CIREY SUR VEZOUZE", + "nomCommune": "CIREY SUR VEZOUZE" }, { - "codePostal": "46210", - "codeCommune": "46269", - "libelleAcheminement": "ST HILAIRE", - "nomCommune": "ST HILAIRE" + "codePostal": "39240", + "codeCommune": "39530", + "libelleAcheminement": "THOIRETTE COISIA", + "nomCommune": "THOIRETTE COISIA" }, { - "codePostal": "67380", - "codeCommune": "67267", - "libelleAcheminement": "LINGOLSHEIM", - "nomCommune": "LINGOLSHEIM" + "codePostal": "42600", + "codeCommune": "42038", + "libelleAcheminement": "CHALAIN LE COMTAL", + "nomCommune": "CHALAIN LE COMTAL" }, { - "codePostal": "17160", - "codeCommune": "17212", - "libelleAcheminement": "LOUZIGNAC", - "nomCommune": "LOUZIGNAC" + "codePostal": "54450", + "codeCommune": "54271", + "libelleAcheminement": "IGNEY", + "nomCommune": "IGNEY" }, { - "codePostal": "32130", - "codeCommune": "32421", - "libelleAcheminement": "SAVIGNAC MONA", - "nomCommune": "SAVIGNAC MONA" + "codePostal": "54400", + "codeCommune": "54138", + "libelleAcheminement": "COSNES ET ROMAIN", + "nomCommune": "COSNES ET ROMAIN" }, { - "codePostal": "46400", - "codeCommune": "46271", - "libelleAcheminement": "ST JEAN LESPINASSE", - "nomCommune": "ST JEAN LESPINASSE" + "codePostal": "39600", + "codeCommune": "39539", + "libelleAcheminement": "VADANS", + "nomCommune": "VADANS" }, { - "codePostal": "67430", - "codeCommune": "67274", - "libelleAcheminement": "LORENTZEN", - "nomCommune": "LORENTZEN" + "codePostal": "42410", + "codeCommune": "42051", + "libelleAcheminement": "LA CHAPELLE VILLARS", + "nomCommune": "LA CHAPELLE VILLARS" }, { - "codePostal": "17330", - "codeCommune": "17213", - "libelleAcheminement": "LOZAY", - "nomCommune": "LOZAY" + "codePostal": "54200", + "codeCommune": "54272", + "libelleAcheminement": "JAILLON", + "nomCommune": "JAILLON" }, { - "codePostal": "32600", - "codeCommune": "32425", - "libelleAcheminement": "SEGOUFIELLE", - "nomCommune": "SEGOUFIELLE" + "codePostal": "54680", + "codeCommune": "54149", + "libelleAcheminement": "CRUSNES", + "nomCommune": "CRUSNES" }, { - "codePostal": "46150", - "codeCommune": "46280", - "libelleAcheminement": "ST MEDARD", - "nomCommune": "ST MEDARD" + "codePostal": "39300", + "codeCommune": "39540", + "libelleAcheminement": "VALEMPOULIERES", + "nomCommune": "VALEMPOULIERES" }, { - "codePostal": "67490", - "codeCommune": "67275", - "libelleAcheminement": "LUPSTEIN", - "nomCommune": "LUPSTEIN" + "codePostal": "42940", + "codeCommune": "42054", + "libelleAcheminement": "CHATELNEUF", + "nomCommune": "CHATELNEUF" }, { - "codePostal": "17160", - "codeCommune": "17224", - "libelleAcheminement": "MATHA", - "nomCommune": "MATHA" + "codePostal": "54300", + "codeCommune": "54281", + "libelleAcheminement": "JOLIVET", + "nomCommune": "JOLIVET" }, { - "codePostal": "32700", - "codeCommune": "32429", - "libelleAcheminement": "SEMPESSERRE", - "nomCommune": "SEMPESSERRE" + "codePostal": "54670", + "codeCommune": "54150", + "libelleAcheminement": "CUSTINES", + "nomCommune": "CUSTINES" }, { - "codePostal": "46300", - "codeCommune": "46290", - "libelleAcheminement": "ST PROJET", - "nomCommune": "ST PROJET" + "codePostal": "39300", + "codeCommune": "39543", + "libelleAcheminement": "VANNOZ", + "nomCommune": "VANNOZ" }, { - "codePostal": "67130", - "codeCommune": "67276", - "libelleAcheminement": "LUTZELHOUSE", - "nomCommune": "LUTZELHOUSE" + "codePostal": "42410", + "codeCommune": "42056", + "libelleAcheminement": "CHAVANAY", + "nomCommune": "CHAVANAY" }, { - "codePostal": "17120", - "codeCommune": "17232", - "libelleAcheminement": "MEURSAC", - "nomCommune": "MEURSAC" + "codePostal": "54360", + "codeCommune": "54293", + "libelleAcheminement": "LANDECOURT", + "nomCommune": "LANDECOURT" }, { - "codePostal": "32140", - "codeCommune": "32430", - "libelleAcheminement": "SERE", - "nomCommune": "SERE" + "codePostal": "54470", + "codeCommune": "54153", + "libelleAcheminement": "DAMPVITOUX", + "nomCommune": "DAMPVITOUX" }, { - "codePostal": "46200", - "codeCommune": "46293", - "libelleAcheminement": "ST SOZY", - "nomCommune": "ST SOZY" + "codePostal": "39300", + "codeCommune": "39545", + "libelleAcheminement": "LE VAUDIOUX", + "nomCommune": "LE VAUDIOUX" }, { - "codePostal": "67580", - "codeCommune": "67291", - "libelleAcheminement": "MERTZWILLER", - "nomCommune": "MERTZWILLER" + "codePostal": "42140", + "codeCommune": "42059", + "libelleAcheminement": "CHAZELLES SUR LYON", + "nomCommune": "CHAZELLES SUR LYON" }, { - "codePostal": "17500", - "codeCommune": "17233", - "libelleAcheminement": "MEUX", - "nomCommune": "MEUX" + "codePostal": "54370", + "codeCommune": "54297", + "libelleAcheminement": "LANEUVEVILLE AUX BOIS", + "nomCommune": "LANEUVEVILLE AUX BOIS" }, { - "codePostal": "32110", - "codeCommune": "32437", - "libelleAcheminement": "SORBETS", - "nomCommune": "SORBETS" + "codePostal": "54380", + "codeCommune": "54157", + "libelleAcheminement": "DIEULOUARD", + "nomCommune": "DIEULOUARD" }, { - "codePostal": "46140", - "codeCommune": "46296", - "libelleAcheminement": "ST VINCENT RIVE D OLT", - "nomCommune": "ST VINCENT RIVE D OLT" + "codePostal": "39800", + "codeCommune": "39548", + "libelleAcheminement": "VAUX SUR POLIGNY", + "nomCommune": "VAUX SUR POLIGNY" }, { - "codePostal": "67600", - "codeCommune": "67311", - "libelleAcheminement": "MUTTERSHOLTZ", - "nomCommune": "MUTTERSHOLTZ" + "codePostal": "42600", + "codeCommune": "42087", + "libelleAcheminement": "ECOTAY L OLME", + "nomCommune": "ECOTAY L OLME" }, { - "codePostal": "17120", - "codeCommune": "17248", - "libelleAcheminement": "MORTAGNE SUR GIRONDE", - "nomCommune": "MORTAGNE SUR GIRONDE" + "codePostal": "54740", + "codeCommune": "54299", + "libelleAcheminement": "LANEUVEVILLE DEVANT BAYON", + "nomCommune": "LANEUVEVILLE DEVANT BAYON" }, { - "codePostal": "32430", - "codeCommune": "32444", - "libelleAcheminement": "THOUX", - "nomCommune": "THOUX" + "codePostal": "54450", + "codeCommune": "54161", + "libelleAcheminement": "DOMEVRE SUR VEZOUZE", + "nomCommune": "DOMEVRE SUR VEZOUZE" }, { - "codePostal": "46210", - "codeCommune": "46302", - "libelleAcheminement": "SENAILLAC LATRONQUIERE", - "nomCommune": "SENAILLAC LATRONQUIERE" + "codePostal": "39570", + "codeCommune": "39552", + "libelleAcheminement": "VERNANTOIS", + "nomCommune": "VERNANTOIS" }, { - "codePostal": "67130", - "codeCommune": "67314", - "libelleAcheminement": "NATZWILLER", - "nomCommune": "NATZWILLER" + "codePostal": "42600", + "codeCommune": "42089", + "libelleAcheminement": "ESSERTINES EN CHATELNEUF", + "nomCommune": "ESSERTINES EN CHATELNEUF" }, { - "codePostal": "17600", - "codeCommune": "17255", - "libelleAcheminement": "NANCRAS", - "nomCommune": "NANCRAS" + "codePostal": "54760", + "codeCommune": "54301", + "libelleAcheminement": "LANFROICOURT", + "nomCommune": "LANFROICOURT" }, { - "codePostal": "32380", - "codeCommune": "32452", - "libelleAcheminement": "TOURNECOUPE", - "nomCommune": "TOURNECOUPE" + "codePostal": "54119", + "codeCommune": "54162", + "libelleAcheminement": "DOMGERMAIN", + "nomCommune": "DOMGERMAIN" }, { - "codePostal": "46120", - "codeCommune": "46314", - "libelleAcheminement": "TERROU", - "nomCommune": "TERROU" + "codePostal": "39240", + "codeCommune": "39557", + "libelleAcheminement": "VESCLES", + "nomCommune": "VESCLES" }, { - "codePostal": "67220", - "codeCommune": "67317", - "libelleAcheminement": "NEUBOIS", - "nomCommune": "NEUBOIS" + "codePostal": "42430", + "codeCommune": "42116", + "libelleAcheminement": "JURE", + "nomCommune": "JURE" }, { - "codePostal": "17520", - "codeCommune": "17258", - "libelleAcheminement": "NEUILLAC", - "nomCommune": "NEUILLAC" + "codePostal": "54150", + "codeCommune": "54302", + "libelleAcheminement": "LANTEFONTAINE", + "nomCommune": "LANTEFONTAINE" }, { - "codePostal": "32110", - "codeCommune": "32458", - "libelleAcheminement": "URGOSSE", - "nomCommune": "URGOSSE" + "codePostal": "54800", + "codeCommune": "54171", + "libelleAcheminement": "DONCOURT LES CONFLANS", + "nomCommune": "DONCOURT LES CONFLANS" }, { - "codePostal": "46500", - "codeCommune": "46317", - "libelleAcheminement": "THEGRA", - "nomCommune": "THEGRA" + "codePostal": "39570", + "codeCommune": "39558", + "libelleAcheminement": "VEVY", + "nomCommune": "VEVY" }, { - "codePostal": "67500", - "codeCommune": "67331", - "libelleAcheminement": "NIEDERSCHAEFFOLSHEIM", - "nomCommune": "NIEDERSCHAEFFOLSHEIM" + "codePostal": "42560", + "codeCommune": "42117", + "libelleAcheminement": "LAVIEU", + "nomCommune": "LAVIEU" }, { - "codePostal": "17490", - "codeCommune": "17261", - "libelleAcheminement": "NEUVICQ LE CHATEAU", - "nomCommune": "NEUVICQ LE CHATEAU" + "codePostal": "54520", + "codeCommune": "54304", + "libelleAcheminement": "LAXOU", + "nomCommune": "LAXOU" }, { - "codePostal": "33440", - "codeCommune": "33003", - "libelleAcheminement": "AMBARES ET LAGRAVE", - "nomCommune": "AMBARES ET LAGRAVE" + "codePostal": "54360", + "codeCommune": "54175", + "libelleAcheminement": "EINVAUX", + "nomCommune": "EINVAUX" }, { - "codePostal": "46330", - "codeCommune": "46320", - "libelleAcheminement": "TOUR DE FAURE", - "nomCommune": "TOUR DE FAURE" + "codePostal": "39260", + "codeCommune": "39561", + "libelleAcheminement": "VILLARDS D HERIA", + "nomCommune": "VILLARDS D HERIA" }, { - "codePostal": "67660", - "codeCommune": "67339", - "libelleAcheminement": "BETSCHDORF", - "nomCommune": "BETSCHDORF" + "codePostal": "42470", + "codeCommune": "42118", + "libelleAcheminement": "LAY", + "nomCommune": "LAY" }, { - "codePostal": "17540", - "codeCommune": "17267", - "libelleAcheminement": "NUAILLE D AUNIS", - "nomCommune": "NUAILLE D AUNIS" + "codePostal": "54690", + "codeCommune": "54305", + "libelleAcheminement": "LAY ST CHRISTOPHE", + "nomCommune": "LAY ST CHRISTOPHE" }, { - "codePostal": "33460", - "codeCommune": "33012", - "libelleAcheminement": "ARSAC", - "nomCommune": "ARSAC" + "codePostal": "54370", + "codeCommune": "54177", + "libelleAcheminement": "EMBERMENIL", + "nomCommune": "EMBERMENIL" }, { - "codePostal": "46310", - "codeCommune": "46324", - "libelleAcheminement": "UZECH", - "nomCommune": "UZECH" + "codePostal": "39570", + "codeCommune": "39567", + "libelleAcheminement": "VILLENEUVE SOUS PYMONT", + "nomCommune": "VILLENEUVE SOUS PYMONT" }, { - "codePostal": "67160", - "codeCommune": "67346", - "libelleAcheminement": "OBERLAUTERBACH", - "nomCommune": "OBERLAUTERBACH" + "codePostal": "42300", + "codeCommune": "42127", + "libelleAcheminement": "MABLY", + "nomCommune": "MABLY" }, { - "codePostal": "17500", - "codeCommune": "17270", - "libelleAcheminement": "OZILLAC", - "nomCommune": "OZILLAC" + "codePostal": "54740", + "codeCommune": "54309", + "libelleAcheminement": "LEMAINVILLE", + "nomCommune": "LEMAINVILLE" }, { - "codePostal": "33980", - "codeCommune": "33019", - "libelleAcheminement": "AUDENGE", - "nomCommune": "AUDENGE" + "codePostal": "54260", + "codeCommune": "54178", + "libelleAcheminement": "EPIEZ SUR CHIERS", + "nomCommune": "EPIEZ SUR CHIERS" }, { - "codePostal": "47170", - "codeCommune": "47009", - "libelleAcheminement": "ANDIRAN", - "nomCommune": "ANDIRAN" + "codePostal": "39600", + "codeCommune": "39569", + "libelleAcheminement": "VILLERS FARLAY", + "nomCommune": "VILLERS FARLAY" }, { - "codePostal": "67510", - "codeCommune": "67353", - "libelleAcheminement": "OBERSTEINBACH", - "nomCommune": "OBERSTEINBACH" + "codePostal": "42750", + "codeCommune": "42131", + "libelleAcheminement": "MAIZILLY", + "nomCommune": "MAIZILLY" }, { - "codePostal": "17800", - "codeCommune": "17273", - "libelleAcheminement": "PERIGNAC", - "nomCommune": "PERIGNAC" + "codePostal": "54740", + "codeCommune": "54310", + "libelleAcheminement": "LEMENIL MITRY", + "nomCommune": "LEMENIL MITRY" }, { - "codePostal": "33114", - "codeCommune": "33029", - "libelleAcheminement": "LE BARP", - "nomCommune": "LE BARP" + "codePostal": "54470", + "codeCommune": "54182", + "libelleAcheminement": "ESSEY ET MAIZERAIS", + "nomCommune": "ESSEY ET MAIZERAIS" }, { - "codePostal": "47700", - "codeCommune": "47010", - "libelleAcheminement": "ANTAGNAC", - "nomCommune": "ANTAGNAC" + "codePostal": "39230", + "codeCommune": "39577", + "libelleAcheminement": "VINCENT FROIDEVILLE", + "nomCommune": "VINCENT FROIDEVILLE" }, { - "codePostal": "67340", - "codeCommune": "67358", - "libelleAcheminement": "OFFWILLER", - "nomCommune": "OFFWILLER" + "codePostal": "42130", + "codeCommune": "42134", + "libelleAcheminement": "MARCILLY LE CHATEL", + "nomCommune": "MARCILLY LE CHATEL" }, { - "codePostal": "17400", - "codeCommune": "17277", - "libelleAcheminement": "ESSOUVERT", - "nomCommune": "ESSOUVERT" + "codePostal": "54110", + "codeCommune": "54311", + "libelleAcheminement": "LENONCOURT", + "nomCommune": "LENONCOURT" }, { - "codePostal": "33720", - "codeCommune": "33030", - "libelleAcheminement": "BARSAC", - "nomCommune": "BARSAC" + "codePostal": "54115", + "codeCommune": "54190", + "libelleAcheminement": "FECOCOURT", + "nomCommune": "FECOCOURT" }, { - "codePostal": "47310", - "codeCommune": "47016", - "libelleAcheminement": "AUBIAC", - "nomCommune": "AUBIAC" + "codePostal": "39210", + "codeCommune": "39582", + "libelleAcheminement": "VOITEUR", + "nomCommune": "VOITEUR" }, { - "codePostal": "67700", - "codeCommune": "67367", - "libelleAcheminement": "OTTERSWILLER", - "nomCommune": "OTTERSWILLER" + "codePostal": "42560", + "codeCommune": "42137", + "libelleAcheminement": "MARGERIE CHANTAGRET", + "nomCommune": "MARGERIE CHANTAGRET" }, { - "codePostal": "17600", - "codeCommune": "17278", - "libelleAcheminement": "PISANY", - "nomCommune": "PISANY" + "codePostal": "54720", + "codeCommune": "54314", + "libelleAcheminement": "LEXY", + "nomCommune": "LEXY" }, { - "codePostal": "33210", - "codeCommune": "33050", - "libelleAcheminement": "BIEUJAC", - "nomCommune": "BIEUJAC" + "codePostal": "54470", + "codeCommune": "54193", + "libelleAcheminement": "FEY EN HAYE", + "nomCommune": "FEY EN HAYE" }, { - "codePostal": "47200", - "codeCommune": "47024", - "libelleAcheminement": "BEAUPUY", - "nomCommune": "BEAUPUY" + "codePostal": "39700", + "codeCommune": "39584", + "libelleAcheminement": "VRIANGE", + "nomCommune": "VRIANGE" }, { - "codePostal": "67290", - "codeCommune": "67370", - "libelleAcheminement": "PETERSBACH", - "nomCommune": "PETERSBACH" + "codePostal": "42840", + "codeCommune": "42145", + "libelleAcheminement": "MONTAGNY", + "nomCommune": "MONTAGNY" }, { - "codePostal": "17240", - "codeCommune": "17279", - "libelleAcheminement": "PLASSAC", - "nomCommune": "PLASSAC" + "codePostal": "54460", + "codeCommune": "54318", + "libelleAcheminement": "LIVERDUN", + "nomCommune": "LIVERDUN" }, { - "codePostal": "33380", - "codeCommune": "33051", - "libelleAcheminement": "BIGANOS", - "nomCommune": "BIGANOS" + "codePostal": "54560", + "codeCommune": "54194", + "libelleAcheminement": "FILLIERES", + "nomCommune": "FILLIERES" }, { - "codePostal": "47500", - "codeCommune": "47029", - "libelleAcheminement": "BLANQUEFORT SUR BRIOLANCE", - "nomCommune": "BLANQUEFORT SUR BRIOLANCE" + "codePostal": "40330", + "codeCommune": "40011", + "libelleAcheminement": "ARSAGUE", + "nomCommune": "ARSAGUE" }, { - "codePostal": "67350", - "codeCommune": "67372", - "libelleAcheminement": "VAL DE MODER", - "nomCommune": "VAL DE MODER" + "codePostal": "42600", + "codeCommune": "42147", + "libelleAcheminement": "MONTBRISON", + "nomCommune": "MONTBRISON" }, { - "codePostal": "17400", - "codeCommune": "17288", - "libelleAcheminement": "POURSAY GARNAUD", - "nomCommune": "POURSAY GARNAUD" + "codePostal": "54810", + "codeCommune": "54321", + "libelleAcheminement": "LONGLAVILLE", + "nomCommune": "LONGLAVILLE" }, { - "codePostal": "33190", - "codeCommune": "33054", - "libelleAcheminement": "BLAIGNAC", - "nomCommune": "BLAIGNAC" + "codePostal": "54840", + "codeCommune": "54202", + "libelleAcheminement": "FONTENOY SUR MOSELLE", + "nomCommune": "FONTENOY SUR MOSELLE" }, { - "codePostal": "47470", - "codeCommune": "47030", - "libelleAcheminement": "BLAYMONT", - "nomCommune": "BLAYMONT" + "codePostal": "40190", + "codeCommune": "40013", + "libelleAcheminement": "ARTHEZ D ARMAGNAC", + "nomCommune": "ARTHEZ D ARMAGNAC" }, { - "codePostal": "67420", - "codeCommune": "67384", - "libelleAcheminement": "RANRUPT", - "nomCommune": "RANRUPT" + "codePostal": "42360", + "codeCommune": "42148", + "libelleAcheminement": "MONTCHAL", + "nomCommune": "MONTCHAL" }, { - "codePostal": "17500", - "codeCommune": "17295", - "libelleAcheminement": "REAUX SUR TREFLE", - "nomCommune": "REAUX SUR TREFLE" + "codePostal": "54400", + "codeCommune": "54323", + "libelleAcheminement": "LONGWY", + "nomCommune": "LONGWY" }, { - "codePostal": "33340", - "codeCommune": "33055", - "libelleAcheminement": "BLAIGNAN PRIGNAC", - "nomCommune": "BLAIGNAN PRIGNAC" + "codePostal": "54160", + "codeCommune": "54214", + "libelleAcheminement": "FROLOIS", + "nomCommune": "FROLOIS" }, { - "codePostal": "47210", - "codeCommune": "47037", - "libelleAcheminement": "BOURNEL", - "nomCommune": "BOURNEL" + "codePostal": "40400", + "codeCommune": "40018", + "libelleAcheminement": "AUDON", + "nomCommune": "AUDON" }, { - "codePostal": "67320", - "codeCommune": "67386", - "libelleAcheminement": "RAUWILLER", - "nomCommune": "RAUWILLER" + "codePostal": "42600", + "codeCommune": "42151", + "libelleAcheminement": "MORNAND EN FOREZ", + "nomCommune": "MORNAND EN FOREZ" }, { - "codePostal": "17300", - "codeCommune": "17299", - "libelleAcheminement": "ROCHEFORT", - "nomCommune": "ROCHEFORT" + "codePostal": "54200", + "codeCommune": "54327", + "libelleAcheminement": "LUCEY", + "nomCommune": "LUCEY" }, { - "codePostal": "33290", - "codeCommune": "33056", - "libelleAcheminement": "BLANQUEFORT", - "nomCommune": "BLANQUEFORT" + "codePostal": "54115", + "codeCommune": "54218", + "libelleAcheminement": "GELAUCOURT", + "nomCommune": "GELAUCOURT" }, { - "codePostal": "47420", - "codeCommune": "47039", - "libelleAcheminement": "BOUSSES", - "nomCommune": "BOUSSES" + "codePostal": "40090", + "codeCommune": "40025", + "libelleAcheminement": "BASCONS", + "nomCommune": "BASCONS" }, { - "codePostal": "67340", - "codeCommune": "67392", - "libelleAcheminement": "REIPERTSWILLER", - "nomCommune": "REIPERTSWILLER" + "codePostal": "42590", + "codeCommune": "42156", + "libelleAcheminement": "NEULISE", + "nomCommune": "NEULISE" }, { - "codePostal": "17200", - "codeCommune": "17306", - "libelleAcheminement": "ROYAN", - "nomCommune": "ROYAN" + "codePostal": "54610", + "codeCommune": "54333", + "libelleAcheminement": "MAILLY SUR SEILLE", + "nomCommune": "MAILLY SUR SEILLE" }, { - "codePostal": "33540", - "codeCommune": "33057", - "libelleAcheminement": "BLASIMON", - "nomCommune": "BLASIMON" + "codePostal": "54110", + "codeCommune": "54219", + "libelleAcheminement": "GELLENONCOURT", + "nomCommune": "GELLENONCOURT" }, { - "codePostal": "47130", - "codeCommune": "47041", - "libelleAcheminement": "BRUCH", - "nomCommune": "BRUCH" + "codePostal": "40700", + "codeCommune": "40027", + "libelleAcheminement": "BASSERCLES", + "nomCommune": "BASSERCLES" }, { - "codePostal": "67250", - "codeCommune": "67394", - "libelleAcheminement": "RETSCHWILLER", - "nomCommune": "RETSCHWILLER" + "codePostal": "42410", + "codeCommune": "42167", + "libelleAcheminement": "PAVEZIN", + "nomCommune": "PAVEZIN" }, { - "codePostal": "17570", - "codeCommune": "17311", - "libelleAcheminement": "ST AUGUSTIN", - "nomCommune": "ST AUGUSTIN" + "codePostal": "54220", + "codeCommune": "54339", + "libelleAcheminement": "MALZEVILLE", + "nomCommune": "MALZEVILLE" }, { - "codePostal": "33100", - "codeCommune": "33063", - "libelleAcheminement": "BORDEAUX", - "nomCommune": "BORDEAUX" + "codePostal": "54730", + "codeCommune": "54234", + "libelleAcheminement": "GORCY", + "nomCommune": "GORCY" }, { - "codePostal": "47350", - "codeCommune": "47047", - "libelleAcheminement": "CAMBES", - "nomCommune": "CAMBES" + "codePostal": "40400", + "codeCommune": "40031", + "libelleAcheminement": "BEGAAR", + "nomCommune": "BEGAAR" }, { - "codePostal": "67160", - "codeCommune": "67400", - "libelleAcheminement": "RIEDSELTZ", - "nomCommune": "RIEDSELTZ" + "codePostal": "42380", + "codeCommune": "42169", + "libelleAcheminement": "PERIGNEUX", + "nomCommune": "PERIGNEUX" }, { - "codePostal": "17770", - "codeCommune": "17314", - "libelleAcheminement": "ST CESAIRE", - "nomCommune": "ST CESAIRE" + "codePostal": "54470", + "codeCommune": "54343", + "libelleAcheminement": "MANDRES AUX QUATRE TOURS", + "nomCommune": "MANDRES AUX QUATRE TOURS" }, { - "codePostal": "33710", - "codeCommune": "33067", - "libelleAcheminement": "BOURG SUR GIRONDE", - "nomCommune": "BOURG" + "codePostal": "54380", + "codeCommune": "54239", + "libelleAcheminement": "GRISCOURT", + "nomCommune": "GRISCOURT" }, { - "codePostal": "47290", - "codeCommune": "47048", - "libelleAcheminement": "CANCON", - "nomCommune": "CANCON" + "codePostal": "40410", + "codeCommune": "40032", + "libelleAcheminement": "BELHADE", + "nomCommune": "BELHADE" }, { - "codePostal": "67570", - "codeCommune": "67414", - "libelleAcheminement": "ROTHAU", - "nomCommune": "ROTHAU" + "codePostal": "42120", + "codeCommune": "42170", + "libelleAcheminement": "PERREUX", + "nomCommune": "PERREUX" }, { - "codePostal": "17380", - "codeCommune": "17321", - "libelleAcheminement": "ST CREPIN", - "nomCommune": "ST CREPIN" + "codePostal": "54120", + "codeCommune": "54365", + "libelleAcheminement": "MERVILLER", + "nomCommune": "MERVILLER" }, { - "codePostal": "33113", - "codeCommune": "33068", - "libelleAcheminement": "BOURIDEYS", - "nomCommune": "BOURIDEYS" + "codePostal": "54930", + "codeCommune": "54241", + "libelleAcheminement": "GUGNEY", + "nomCommune": "GUGNEY" }, { - "codePostal": "47340", - "codeCommune": "47050", - "libelleAcheminement": "CASSIGNAS", - "nomCommune": "CASSIGNAS" + "codePostal": "40230", + "codeCommune": "40036", + "libelleAcheminement": "BENESSE MAREMNE", + "nomCommune": "BENESSE MAREMNE" }, { - "codePostal": "67480", - "codeCommune": "67418", - "libelleAcheminement": "ROUNTZENHEIM AUENHEIM", - "nomCommune": "ROUNTZENHEIM AUENHEIM" + "codePostal": "42720", + "codeCommune": "42177", + "libelleAcheminement": "POUILLY SOUS CHARLIEU", + "nomCommune": "POUILLY SOUS CHARLIEU" }, { - "codePostal": "17330", - "codeCommune": "17327", - "libelleAcheminement": "ST FELIX", - "nomCommune": "ST FELIX" + "codePostal": "54135", + "codeCommune": "54367", + "libelleAcheminement": "MEXY", + "nomCommune": "MEXY" }, { - "codePostal": "33110", - "codeCommune": "33069", - "libelleAcheminement": "LE BOUSCAT", - "nomCommune": "LE BOUSCAT" + "codePostal": "54740", + "codeCommune": "54252", + "libelleAcheminement": "HAROUE", + "nomCommune": "HAROUE" }, { - "codePostal": "47120", - "codeCommune": "47059", - "libelleAcheminement": "CAUBON ST SAUVEUR", - "nomCommune": "CAUBON ST SAUVEUR" + "codePostal": "40600", + "codeCommune": "40046", + "libelleAcheminement": "BISCARROSSE", + "nomCommune": "BISCARROSSE" }, { - "codePostal": "67390", - "codeCommune": "67422", - "libelleAcheminement": "SAASENHEIM", - "nomCommune": "SAASENHEIM" + "codePostal": "42600", + "codeCommune": "42179", + "libelleAcheminement": "PRALONG", + "nomCommune": "PRALONG" }, { - "codePostal": "17250", - "codeCommune": "17330", - "libelleAcheminement": "STE GEMME", - "nomCommune": "STE GEMME" + "codePostal": "54700", + "codeCommune": "54375", + "libelleAcheminement": "MONTAUVILLE", + "nomCommune": "MONTAUVILLE" }, { - "codePostal": "33420", - "codeCommune": "33071", - "libelleAcheminement": "BRANNE", - "nomCommune": "BRANNE" + "codePostal": "54800", + "codeCommune": "54253", + "libelleAcheminement": "HATRIZE", + "nomCommune": "HATRIZE" }, { - "codePostal": "47320", - "codeCommune": "47065", - "libelleAcheminement": "CLAIRAC", - "nomCommune": "CLAIRAC" + "codePostal": "40190", + "codeCommune": "40052", + "libelleAcheminement": "BOURDALAT", + "nomCommune": "BOURDALAT" }, { - "codePostal": "67220", - "codeCommune": "67426", - "libelleAcheminement": "ST MARTIN", - "nomCommune": "ST MARTIN" + "codePostal": "42370", + "codeCommune": "42182", + "libelleAcheminement": "RENAISON", + "nomCommune": "RENAISON" }, { - "codePostal": "17240", - "codeCommune": "17332", - "libelleAcheminement": "ST GEORGES ANTIGNAC", - "nomCommune": "ST GEORGES ANTIGNAC" + "codePostal": "54760", + "codeCommune": "54376", + "libelleAcheminement": "MONTENOY", + "nomCommune": "MONTENOY" }, { - "codePostal": "33820", - "codeCommune": "33073", - "libelleAcheminement": "BRAUD ET ST LOUIS", - "nomCommune": "BRAUD ET ST LOUIS" + "codePostal": "54300", + "codeCommune": "54260", + "libelleAcheminement": "HERIMENIL", + "nomCommune": "HERIMENIL" }, { - "codePostal": "47270", - "codeCommune": "47067", - "libelleAcheminement": "CLERMONT SOUBIRAN", - "nomCommune": "CLERMONT SOUBIRAN" + "codePostal": "40320", + "codeCommune": "40057", + "libelleAcheminement": "BUANES", + "nomCommune": "BUANES" }, { - "codePostal": "67220", - "codeCommune": "67427", - "libelleAcheminement": "ST MAURICE", - "nomCommune": "ST MAURICE" + "codePostal": "42150", + "codeCommune": "42183", + "libelleAcheminement": "LA RICAMARIE", + "nomCommune": "LA RICAMARIE" }, { - "codePostal": "17190", - "codeCommune": "17337", - "libelleAcheminement": "ST GEORGES D OLERON", - "nomCommune": "ST GEORGES D OLERON" + "codePostal": "54350", + "codeCommune": "54382", + "libelleAcheminement": "MONT ST MARTIN", + "nomCommune": "MONT ST MARTIN" }, { - "codePostal": "33720", - "codeCommune": "33076", - "libelleAcheminement": "BUDOS", - "nomCommune": "BUDOS" + "codePostal": "54370", + "codeCommune": "54262", + "libelleAcheminement": "HOEVILLE", + "nomCommune": "HOEVILLE" }, { - "codePostal": "47250", - "codeCommune": "47068", - "libelleAcheminement": "COCUMONT", - "nomCommune": "COCUMONT" + "codePostal": "40700", + "codeCommune": "40073", + "libelleAcheminement": "CASTELNER", + "nomCommune": "CASTELNER" }, { - "codePostal": "67530", - "codeCommune": "67428", - "libelleAcheminement": "ST NABOR", - "nomCommune": "ST NABOR" + "codePostal": "42153", + "codeCommune": "42184", + "libelleAcheminement": "RIORGES", + "nomCommune": "RIORGES" }, { - "codePostal": "17700", - "codeCommune": "17338", - "libelleAcheminement": "ST GEORGES DU BOIS", - "nomCommune": "ST GEORGES DU BOIS" + "codePostal": "54830", + "codeCommune": "54386", + "libelleAcheminement": "MORIVILLER", + "nomCommune": "MORIVILLER" }, { - "codePostal": "33390", - "codeCommune": "33089", - "libelleAcheminement": "CAMPUGNAN", - "nomCommune": "CAMPUGNAN" + "codePostal": "54180", + "codeCommune": "54265", + "libelleAcheminement": "HOUDEMONT", + "nomCommune": "HOUDEMONT" }, { - "codePostal": "47110", - "codeCommune": "47081", - "libelleAcheminement": "DOLMAYRAC", - "nomCommune": "DOLMAYRAC" + "codePostal": "40090", + "codeCommune": "40081", + "libelleAcheminement": "CERE", + "nomCommune": "CERE" }, { - "codePostal": "67140", - "codeCommune": "67429", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "42600", + "codeCommune": "42188", + "libelleAcheminement": "ROCHE", + "nomCommune": "ROCHE" }, { - "codePostal": "17500", - "codeCommune": "17339", - "libelleAcheminement": "ST GERMAIN DE LUSIGNAN", - "nomCommune": "ST GERMAIN DE LUSIGNAN" + "codePostal": "54540", + "codeCommune": "54396", + "libelleAcheminement": "NEUFMAISONS", + "nomCommune": "NEUFMAISONS" }, { - "codePostal": "33560", - "codeCommune": "33096", - "libelleAcheminement": "CARBON BLANC", - "nomCommune": "CARBON BLANC" + "codePostal": "54110", + "codeCommune": "54269", + "libelleAcheminement": "HUDIVILLER", + "nomCommune": "HUDIVILLER" }, { - "codePostal": "47120", - "codeCommune": "47086", - "libelleAcheminement": "DURAS", - "nomCommune": "DURAS" + "codePostal": "40180", + "codeCommune": "40084", + "libelleAcheminement": "CLERMONT", + "nomCommune": "CLERMONT" }, { - "codePostal": "67230", - "codeCommune": "67433", - "libelleAcheminement": "SAND", - "nomCommune": "SAND" + "codePostal": "42130", + "codeCommune": "42197", + "libelleAcheminement": "STE AGATHE LA BOUTERESSE", + "nomCommune": "STE AGATHE LA BOUTERESSE" }, { - "codePostal": "17500", - "codeCommune": "17341", - "libelleAcheminement": "ST GERMAIN DE VIBRAC", - "nomCommune": "ST GERMAIN DE VIBRAC" + "codePostal": "54230", + "codeCommune": "54397", + "libelleAcheminement": "NEUVES MAISONS", + "nomCommune": "NEUVES MAISONS" }, { - "codePostal": "33540", - "codeCommune": "33103", - "libelleAcheminement": "CASTELMORON D ALBRET", - "nomCommune": "CASTELMORON D ALBRET" + "codePostal": "54800", + "codeCommune": "54277", + "libelleAcheminement": "JEANDELIZE", + "nomCommune": "JEANDELIZE" }, { - "codePostal": "47220", - "codeCommune": "47092", - "libelleAcheminement": "FALS", - "nomCommune": "FALS" + "codePostal": "40500", + "codeCommune": "40086", + "libelleAcheminement": "COUDURES", + "nomCommune": "COUDURES" }, { - "codePostal": "67420", - "codeCommune": "67436", - "libelleAcheminement": "SAULXURES", - "nomCommune": "SAULXURES" + "codePostal": "42370", + "codeCommune": "42198", + "libelleAcheminement": "ST ALBAN LES EAUX", + "nomCommune": "ST ALBAN LES EAUX" }, { - "codePostal": "17240", - "codeCommune": "17343", - "libelleAcheminement": "ST GREGOIRE D ARDENNES", - "nomCommune": "ST GREGOIRE D ARDENNES" + "codePostal": "54170", + "codeCommune": "54405", + "libelleAcheminement": "OCHEY", + "nomCommune": "OCHEY" }, { - "codePostal": "33480", - "codeCommune": "33104", - "libelleAcheminement": "CASTELNAU DE MEDOC", - "nomCommune": "CASTELNAU DE MEDOC" + "codePostal": "54740", + "codeCommune": "54278", + "libelleAcheminement": "JEVONCOURT", + "nomCommune": "JEVONCOURT" }, { - "codePostal": "47230", - "codeCommune": "47097", - "libelleAcheminement": "FEUGAROLLES", - "nomCommune": "FEUGAROLLES" + "codePostal": "40700", + "codeCommune": "40089", + "libelleAcheminement": "DOAZIT", + "nomCommune": "DOAZIT" }, { - "codePostal": "67700", - "codeCommune": "67437", - "libelleAcheminement": "SAVERNE", - "nomCommune": "SAVERNE" + "codePostal": "42110", + "codeCommune": "42202", + "libelleAcheminement": "ST BARTHELEMY LESTRA", + "nomCommune": "ST BARTHELEMY LESTRA" }, { - "codePostal": "17430", - "codeCommune": "17346", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "54800", + "codeCommune": "54408", + "libelleAcheminement": "OLLEY", + "nomCommune": "OLLEY" }, { - "codePostal": "33210", - "codeCommune": "33106", - "libelleAcheminement": "CASTETS ET CASTILLON", - "nomCommune": "CASTETS ET CASTILLON" + "codePostal": "54720", + "codeCommune": "54290", + "libelleAcheminement": "LAIX", + "nomCommune": "LAIX" }, { - "codePostal": "47260", - "codeCommune": "47099", - "libelleAcheminement": "FONGRAVE", - "nomCommune": "FONGRAVE" + "codePostal": "40210", + "codeCommune": "40094", + "libelleAcheminement": "ESCOURCE", + "nomCommune": "ESCOURCE" }, { - "codePostal": "67310", - "codeCommune": "67442", - "libelleAcheminement": "SCHARRACHBERGHEIM IRMSTETT", - "nomCommune": "SCHARRACHBERGHEIM IRMSTETT" + "codePostal": "42400", + "codeCommune": "42207", + "libelleAcheminement": "ST CHAMOND", + "nomCommune": "ST CHAMOND" }, { - "codePostal": "17400", - "codeCommune": "17347", - "libelleAcheminement": "ST JEAN D ANGELY", - "nomCommune": "ST JEAN D ANGELY" + "codePostal": "54330", + "codeCommune": "54409", + "libelleAcheminement": "OMELMONT", + "nomCommune": "OMELMONT" }, { - "codePostal": "33210", - "codeCommune": "33106", - "libelleAcheminement": "CASTETS ET CASTILLON", - "nomCommune": "CASTETS ET CASTILLON" + "codePostal": "54970", + "codeCommune": "54295", + "libelleAcheminement": "LANDRES", + "nomCommune": "LANDRES" }, { - "codePostal": "47600", - "codeCommune": "47102", - "libelleAcheminement": "FRANCESCAS", - "nomCommune": "FRANCESCAS" + "codePostal": "40290", + "codeCommune": "40095", + "libelleAcheminement": "ESTIBEAUX", + "nomCommune": "ESTIBEAUX" }, { - "codePostal": "67630", - "codeCommune": "67443", - "libelleAcheminement": "SCHEIBENHARD", - "nomCommune": "SCHEIBENHARD" + "codePostal": "42800", + "codeCommune": "42210", + "libelleAcheminement": "STE CROIX EN JAREZ", + "nomCommune": "STE CROIX EN JAREZ" }, { - "codePostal": "17520", - "codeCommune": "17355", - "libelleAcheminement": "STE LHEURINE", - "nomCommune": "STE LHEURINE" + "codePostal": "54470", + "codeCommune": "54416", + "libelleAcheminement": "PANNES", + "nomCommune": "PANNES" }, { - "codePostal": "33620", - "codeCommune": "33114", - "libelleAcheminement": "CAVIGNAC", - "nomCommune": "CAVIGNAC" + "codePostal": "54280", + "codeCommune": "54296", + "libelleAcheminement": "LANEUVELOTTE", + "nomCommune": "LANEUVELOTTE" }, { - "codePostal": "47600", - "codeCommune": "47103", - "libelleAcheminement": "FRECHOU", - "nomCommune": "FRECHOU" + "codePostal": "40350", + "codeCommune": "40101", + "libelleAcheminement": "GAAS", + "nomCommune": "GAAS" }, { - "codePostal": "67300", - "codeCommune": "67447", - "libelleAcheminement": "SCHILTIGHEIM", - "nomCommune": "SCHILTIGHEIM" + "codePostal": "42000", + "codeCommune": "42218", + "libelleAcheminement": "ST ETIENNE", + "nomCommune": "ST ETIENNE" }, { - "codePostal": "17700", - "codeCommune": "17359", - "libelleAcheminement": "ST MARD", - "nomCommune": "ST MARD" + "codePostal": "54260", + "codeCommune": "54420", + "libelleAcheminement": "PETIT FAILLY", + "nomCommune": "PETIT FAILLY" }, { - "codePostal": "33150", - "codeCommune": "33119", - "libelleAcheminement": "CENON", - "nomCommune": "CENON" + "codePostal": "54410", + "codeCommune": "54300", + "libelleAcheminement": "LANEUVEVILLE DEVANT NANCY", + "nomCommune": "LANEUVEVILLE DEVANT NANCY" }, { - "codePostal": "47200", - "codeCommune": "47108", - "libelleAcheminement": "GAUJAC", - "nomCommune": "GAUJAC" + "codePostal": "40090", + "codeCommune": "40103", + "libelleAcheminement": "GAILLERES", + "nomCommune": "GAILLERES" }, { - "codePostal": "67440", - "codeCommune": "67459", - "libelleAcheminement": "SCHWENHEIM", - "nomCommune": "SCHWENHEIM" + "codePostal": "42100", + "codeCommune": "42218", + "libelleAcheminement": "ST ETIENNE", + "nomCommune": "ST ETIENNE" }, { - "codePostal": "17800", - "codeCommune": "17379", - "libelleAcheminement": "ST PALAIS DE PHIOLIN", - "nomCommune": "ST PALAIS DE PHIOLIN" + "codePostal": "54540", + "codeCommune": "54427", + "libelleAcheminement": "PIERRE PERCEE", + "nomCommune": "PIERRE PERCEE" }, { - "codePostal": "33230", - "codeCommune": "33124", - "libelleAcheminement": "CHAMADELLE", - "nomCommune": "CHAMADELLE" + "codePostal": "54760", + "codeCommune": "54315", + "libelleAcheminement": "LEYR", + "nomCommune": "LEYR" }, { - "codePostal": "47180", - "codeCommune": "47120", - "libelleAcheminement": "JUSIX", - "nomCommune": "JUSIX" + "codePostal": "40990", + "codeCommune": "40114", + "libelleAcheminement": "GOURBERA", + "nomCommune": "GOURBERA" }, { - "codePostal": "67270", - "codeCommune": "67460", - "libelleAcheminement": "SCHWINDRATZHEIM", - "nomCommune": "SCHWINDRATZHEIM" + "codePostal": "42110", + "codeCommune": "42221", + "libelleAcheminement": "STE FOY ST SULPICE", + "nomCommune": "STE FOY ST SULPICE" }, { - "codePostal": "17420", - "codeCommune": "17380", - "libelleAcheminement": "ST PALAIS SUR MER", - "nomCommune": "ST PALAIS SUR MER" + "codePostal": "54620", + "codeCommune": "54428", + "libelleAcheminement": "PIERREPONT", + "nomCommune": "PIERREPONT" }, { - "codePostal": "33340", - "codeCommune": "33128", - "libelleAcheminement": "CIVRAC EN MEDOC", - "nomCommune": "CIVRAC EN MEDOC" + "codePostal": "54700", + "codeCommune": "54320", + "libelleAcheminement": "LOISY", + "nomCommune": "LOISY" }, { - "codePostal": "47350", - "codeCommune": "47122", - "libelleAcheminement": "LABRETONIE", - "nomCommune": "LABRETONIE" + "codePostal": "40190", + "codeCommune": "40127", + "libelleAcheminement": "HONTANX", + "nomCommune": "HONTANX" }, { - "codePostal": "67390", - "codeCommune": "67461", - "libelleAcheminement": "SCHWOBSHEIM", - "nomCommune": "SCHWOBSHEIM" + "codePostal": "42990", + "codeCommune": "42227", + "libelleAcheminement": "ST GEORGES EN COUZAN", + "nomCommune": "ST GEORGES EN COUZAN" }, { - "codePostal": "17400", - "codeCommune": "17381", - "libelleAcheminement": "ST PARDOULT", - "nomCommune": "ST PARDOULT" + "codePostal": "54800", + "codeCommune": "54441", + "libelleAcheminement": "PUXIEUX", + "nomCommune": "PUXIEUX" }, { - "codePostal": "33710", - "codeCommune": "33132", - "libelleAcheminement": "COMPS", - "nomCommune": "COMPS" + "codePostal": "54290", + "codeCommune": "54324", + "libelleAcheminement": "LOREY", + "nomCommune": "LOREY" }, { - "codePostal": "47240", - "codeCommune": "47128", - "libelleAcheminement": "LAFOX", - "nomCommune": "LAFOX" + "codePostal": "40700", + "codeCommune": "40138", + "libelleAcheminement": "LACRABE", + "nomCommune": "LACRABE" }, { - "codePostal": "67770", - "codeCommune": "67465", - "libelleAcheminement": "SESSENHEIM", - "nomCommune": "SESSENHEIM" + "codePostal": "42370", + "codeCommune": "42232", + "libelleAcheminement": "ST HAON LE CHATEL", + "nomCommune": "ST HAON LE CHATEL" }, { - "codePostal": "17700", - "codeCommune": "17382", - "libelleAcheminement": "ST PIERRE D AMILLY", - "nomCommune": "ST PIERRE D AMILLY" + "codePostal": "54540", + "codeCommune": "54443", + "libelleAcheminement": "RAON LES LEAU", + "nomCommune": "RAON LES LEAU" }, { - "codePostal": "33890", - "codeCommune": "33133", - "libelleAcheminement": "COUBEYRAC", - "nomCommune": "COUBEYRAC" + "codePostal": "54290", + "codeCommune": "54325", + "libelleAcheminement": "LOROMONTZEY", + "nomCommune": "LOROMONTZEY" }, { - "codePostal": "47310", - "codeCommune": "47137", - "libelleAcheminement": "LAPLUME", - "nomCommune": "LAPLUME" + "codePostal": "40270", + "codeCommune": "40145", + "libelleAcheminement": "LARRIVIERE ST SAVIN", + "nomCommune": "LARRIVIERE ST SAVIN" }, { - "codePostal": "67320", - "codeCommune": "67467", - "libelleAcheminement": "SIEWILLER", - "nomCommune": "SIEWILLER" + "codePostal": "42570", + "codeCommune": "42234", + "libelleAcheminement": "ST HEAND", + "nomCommune": "ST HEAND" }, { - "codePostal": "17800", - "codeCommune": "17388", - "libelleAcheminement": "ST QUANTIN DE RANCANNE", - "nomCommune": "ST QUANTIN DE RANCANNE" + "codePostal": "54450", + "codeCommune": "54452", + "libelleAcheminement": "REILLON", + "nomCommune": "REILLON" }, { - "codePostal": "33580", - "codeCommune": "33136", - "libelleAcheminement": "COURS DE MONSEGUR", - "nomCommune": "COURS DE MONSEGUR" + "codePostal": "54129", + "codeCommune": "54331", + "libelleAcheminement": "MAGNIERES", + "nomCommune": "MAGNIERES" }, { - "codePostal": "47230", - "codeCommune": "47143", - "libelleAcheminement": "LAVARDAC", - "nomCommune": "LAVARDAC" + "codePostal": "40320", + "codeCommune": "40148", + "libelleAcheminement": "LAURET", + "nomCommune": "LAURET" }, { - "codePostal": "67120", - "codeCommune": "67473", - "libelleAcheminement": "SOULTZ LES BAINS", - "nomCommune": "SOULTZ LES BAINS" + "codePostal": "42380", + "codeCommune": "42235", + "libelleAcheminement": "ST HILAIRE CUSSON LA VALMITTE", + "nomCommune": "ST HILAIRE CUSSON LA VALMITTE" }, { - "codePostal": "17540", - "codeCommune": "17396", - "libelleAcheminement": "ST SAUVEUR D AUNIS", - "nomCommune": "ST SAUVEUR D AUNIS" + "codePostal": "54110", + "codeCommune": "54462", + "libelleAcheminement": "ROSIERES AUX SALINES", + "nomCommune": "ROSIERES AUX SALINES" }, { - "codePostal": "33580", - "codeCommune": "33139", - "libelleAcheminement": "COUTURES", - "nomCommune": "COUTURES" + "codePostal": "54150", + "codeCommune": "54334", + "libelleAcheminement": "MAIRY MAINVILLE", + "nomCommune": "MAIRY MAINVILLE" }, { - "codePostal": "47140", - "codeCommune": "47161", - "libelleAcheminement": "MASSELS", - "nomCommune": "MASSELS" + "codePostal": "40550", + "codeCommune": "40150", + "libelleAcheminement": "LEON", + "nomCommune": "LEON" }, { - "codePostal": "67140", - "codeCommune": "67481", - "libelleAcheminement": "STOTZHEIM", - "nomCommune": "STOTZHEIM" + "codePostal": "42440", + "codeCommune": "42238", + "libelleAcheminement": "ST JEAN LA VETRE", + "nomCommune": "ST JEAN LA VETRE" }, { - "codePostal": "17150", - "codeCommune": "17405", - "libelleAcheminement": "ST SORLIN DE CONAC", - "nomCommune": "ST SORLIN DE CONAC" + "codePostal": "54210", + "codeCommune": "54468", + "libelleAcheminement": "SAFFAIS", + "nomCommune": "SAFFAIS" }, { - "codePostal": "33430", - "codeCommune": "33144", - "libelleAcheminement": "CUDOS", - "nomCommune": "CUDOS" + "codePostal": "54370", + "codeCommune": "54335", + "libelleAcheminement": "MAIXE", + "nomCommune": "MAIXE" }, { - "codePostal": "47140", - "codeCommune": "47162", - "libelleAcheminement": "MASSOULES", - "nomCommune": "MASSOULES" + "codePostal": "40090", + "codeCommune": "40162", + "libelleAcheminement": "LUCBARDEZ ET BARGUES", + "nomCommune": "LUCBARDEZ ET BARGUES" }, { - "codePostal": "67100", - "codeCommune": "67482", - "libelleAcheminement": "STRASBOURG", - "nomCommune": "STRASBOURG" + "codePostal": "42155", + "codeCommune": "42239", + "libelleAcheminement": "ST JEAN ST MAURICE SUR LOIRE", + "nomCommune": "ST JEAN ST MAURICE SUR LOIRE" }, { - "codePostal": "17138", - "codeCommune": "17414", - "libelleAcheminement": "ST XANDRE", - "nomCommune": "ST XANDRE" + "codePostal": "54580", + "codeCommune": "54469", + "libelleAcheminement": "ST AIL", + "nomCommune": "ST AIL" }, { - "codePostal": "33410", - "codeCommune": "33152", - "libelleAcheminement": "DONZAC", - "nomCommune": "DONZAC" + "codePostal": "54300", + "codeCommune": "54350", + "libelleAcheminement": "MARAINVILLER", + "nomCommune": "MARAINVILLER" }, { - "codePostal": "47200", - "codeCommune": "47163", - "libelleAcheminement": "MAUVEZIN SUR GUPIE", - "nomCommune": "MAUVEZIN SUR GUPIE" + "codePostal": "40270", + "codeCommune": "40166", + "libelleAcheminement": "LUSSAGNET", + "nomCommune": "LUSSAGNET" }, { - "codePostal": "67920", - "codeCommune": "67486", - "libelleAcheminement": "SUNDHOUSE", - "nomCommune": "SUNDHOUSE" + "codePostal": "42155", + "codeCommune": "42239", + "libelleAcheminement": "ST JEAN ST MAURICE SUR LOIRE", + "nomCommune": "ST JEAN ST MAURICE SUR LOIRE" }, { - "codePostal": "17510", - "codeCommune": "17416", - "libelleAcheminement": "SALEIGNES", - "nomCommune": "SALEIGNES" + "codePostal": "54470", + "codeCommune": "54477", + "libelleAcheminement": "ST JULIEN LES GORZE", + "nomCommune": "ST JULIEN LES GORZE" }, { - "codePostal": "33350", - "codeCommune": "33153", - "libelleAcheminement": "DOULEZON", - "nomCommune": "DOULEZON" + "codePostal": "54820", + "codeCommune": "54351", + "libelleAcheminement": "MARBACHE", + "nomCommune": "MARBACHE" }, { - "codePostal": "47180", - "codeCommune": "47165", - "libelleAcheminement": "MEILHAN SUR GARONNE", - "nomCommune": "MEILHAN SUR GARONNE" + "codePostal": "40430", + "codeCommune": "40167", + "libelleAcheminement": "LUXEY", + "nomCommune": "LUXEY" }, { - "codePostal": "67320", - "codeCommune": "67488", - "libelleAcheminement": "THAL DRULINGEN", - "nomCommune": "THAL DRULINGEN" + "codePostal": "42990", + "codeCommune": "42247", + "libelleAcheminement": "ST JUST EN BAS", + "nomCommune": "ST JUST EN BAS" }, { - "codePostal": "17800", - "codeCommune": "17418", - "libelleAcheminement": "SALIGNAC SUR CHARENTE", - "nomCommune": "SALIGNAC SUR CHARENTE" + "codePostal": "54540", + "codeCommune": "54481", + "libelleAcheminement": "ST MAURICE AUX FORGES", + "nomCommune": "ST MAURICE AUX FORGES" }, { - "codePostal": "33126", - "codeCommune": "33174", - "libelleAcheminement": "FRONSAC", - "nomCommune": "FRONSAC" + "codePostal": "54380", + "codeCommune": "54355", + "libelleAcheminement": "MARTINCOURT", + "nomCommune": "MARTINCOURT" }, { - "codePostal": "47600", - "codeCommune": "47197", - "libelleAcheminement": "NOMDIEU", - "nomCommune": "NOMDIEU" + "codePostal": "40120", + "codeCommune": "40170", + "libelleAcheminement": "MAILLERES", + "nomCommune": "MAILLERES" }, { - "codePostal": "67440", - "codeCommune": "67489", - "libelleAcheminement": "THAL MARMOUTIER", - "nomCommune": "THAL MARMOUTIER" + "codePostal": "42620", + "codeCommune": "42257", + "libelleAcheminement": "ST MARTIN D ESTREAUX", + "nomCommune": "ST MARTIN D ESTREAUX" }, { - "codePostal": "17150", - "codeCommune": "17423", - "libelleAcheminement": "SEMILLAC", - "nomCommune": "SEMILLAC" + "codePostal": "54740", + "codeCommune": "54486", + "libelleAcheminement": "ST REMIMONT", + "nomCommune": "ST REMIMONT" }, { - "codePostal": "33133", - "codeCommune": "33179", - "libelleAcheminement": "GALGON", - "nomCommune": "GALGON" + "codePostal": "54320", + "codeCommune": "54357", + "libelleAcheminement": "MAXEVILLE", + "nomCommune": "MAXEVILLE" }, { - "codePostal": "47520", - "codeCommune": "47201", - "libelleAcheminement": "LE PASSAGE", - "nomCommune": "LE PASSAGE" + "codePostal": "40090", + "codeCommune": "40178", + "libelleAcheminement": "MAZEROLLES", + "nomCommune": "MAZEROLLES" }, { - "codePostal": "67220", - "codeCommune": "67490", - "libelleAcheminement": "THANVILLE", - "nomCommune": "THANVILLE" + "codePostal": "42260", + "codeCommune": "42268", + "libelleAcheminement": "VEZELIN SUR LOIRE", + "nomCommune": "VEZELIN SUR LOIRE" }, { - "codePostal": "17770", - "codeCommune": "17426", - "libelleAcheminement": "LE SEURE", - "nomCommune": "LE SEURE" + "codePostal": "54290", + "codeCommune": "54487", + "libelleAcheminement": "ST REMY AUX BOIS", + "nomCommune": "ST REMY AUX BOIS" }, { - "codePostal": "33710", - "codeCommune": "33182", - "libelleAcheminement": "GAURIAC", - "nomCommune": "GAURIAC" + "codePostal": "54960", + "codeCommune": "54362", + "libelleAcheminement": "MERCY LE BAS", + "nomCommune": "MERCY LE BAS" }, { - "codePostal": "47140", - "codeCommune": "47203", - "libelleAcheminement": "PENNE D AGENAIS", - "nomCommune": "PENNE D AGENAIS" + "codePostal": "40200", + "codeCommune": "40184", + "libelleAcheminement": "MIMIZAN", + "nomCommune": "MIMIZAN" }, { - "codePostal": "67370", - "codeCommune": "67495", - "libelleAcheminement": "TRUCHTERSHEIM", - "nomCommune": "TRUCHTERSHEIM" + "codePostal": "42170", + "codeCommune": "42279", + "libelleAcheminement": "ST JUST ST RAMBERT", + "nomCommune": "ST JUST ST RAMBERT" }, { - "codePostal": "17780", - "codeCommune": "17429", - "libelleAcheminement": "SOUBISE", - "nomCommune": "SOUBISE" + "codePostal": "54380", + "codeCommune": "54490", + "libelleAcheminement": "SAIZERAIS", + "nomCommune": "SAIZERAIS" }, { - "codePostal": "33240", - "codeCommune": "33183", - "libelleAcheminement": "GAURIAGUET", - "nomCommune": "GAURIAGUET" + "codePostal": "54850", + "codeCommune": "54364", + "libelleAcheminement": "MEREVILLE", + "nomCommune": "MEREVILLE" }, { - "codePostal": "47160", - "codeCommune": "47214", - "libelleAcheminement": "PUCH D AGENAIS", - "nomCommune": "PUCH D AGENAIS" + "codePostal": "40700", + "codeCommune": "40189", + "libelleAcheminement": "MONGET", + "nomCommune": "MONGET" }, { - "codePostal": "67170", - "codeCommune": "67510", - "libelleAcheminement": "WAHLENHEIM", - "nomCommune": "WAHLENHEIM" + "codePostal": "42660", + "codeCommune": "42280", + "libelleAcheminement": "ST REGIS DU COIN", + "nomCommune": "ST REGIS DU COIN" }, { - "codePostal": "17130", - "codeCommune": "17433", - "libelleAcheminement": "SOUSMOULINS", - "nomCommune": "SOUSMOULINS" + "codePostal": "54830", + "codeCommune": "54501", + "libelleAcheminement": "SERANVILLE", + "nomCommune": "SERANVILLE" }, { - "codePostal": "33420", - "codeCommune": "33185", - "libelleAcheminement": "GENISSAC", - "nomCommune": "GENISSAC" + "codePostal": "54850", + "codeCommune": "54366", + "libelleAcheminement": "MESSEIN", + "nomCommune": "MESSEIN" }, { - "codePostal": "47300", - "codeCommune": "47215", - "libelleAcheminement": "PUJOLS", - "nomCommune": "PUJOLS" + "codePostal": "40110", + "codeCommune": "40197", + "libelleAcheminement": "MORCENX LA NOUVELLE", + "nomCommune": "MORCENX LA NOUVELLE" }, { - "codePostal": "67360", - "codeCommune": "67511", - "libelleAcheminement": "WALBOURG", - "nomCommune": "WALBOURG" + "codePostal": "42800", + "codeCommune": "42283", + "libelleAcheminement": "ST ROMAIN EN JAREZ", + "nomCommune": "ST ROMAIN EN JAREZ" }, { - "codePostal": "17600", - "codeCommune": "17445", - "libelleAcheminement": "THEZAC", - "nomCommune": "THEZAC" + "codePostal": "54110", + "codeCommune": "54509", + "libelleAcheminement": "SOMMERVILLER", + "nomCommune": "SOMMERVILLER" }, { - "codePostal": "33840", - "codeCommune": "33188", - "libelleAcheminement": "GISCOS", - "nomCommune": "GISCOS" + "codePostal": "54670", + "codeCommune": "54369", + "libelleAcheminement": "MILLERY", + "nomCommune": "MILLERY" }, { - "codePostal": "47350", - "codeCommune": "47216", - "libelleAcheminement": "PUYMICLAN", - "nomCommune": "PUYMICLAN" + "codePostal": "40180", + "codeCommune": "40202", + "libelleAcheminement": "NARROSSE", + "nomCommune": "NARROSSE" }, { - "codePostal": "67290", - "codeCommune": "67522", - "libelleAcheminement": "WEISLINGEN", - "nomCommune": "WEISLINGEN" + "codePostal": "42640", + "codeCommune": "42284", + "libelleAcheminement": "ST ROMAIN LA MOTTE", + "nomCommune": "ST ROMAIN LA MOTTE" }, { - "codePostal": "17130", - "codeCommune": "17454", - "libelleAcheminement": "TUGERAS ST MAURICE", - "nomCommune": "TUGERAS ST MAURICE" + "codePostal": "54300", + "codeCommune": "54520", + "libelleAcheminement": "THIEBAUMENIL", + "nomCommune": "THIEBAUMENIL" }, { - "codePostal": "33660", - "codeCommune": "33191", - "libelleAcheminement": "GOURS", - "nomCommune": "GOURS" + "codePostal": "54870", + "codeCommune": "54378", + "libelleAcheminement": "MONTIGNY SUR CHIERS", + "nomCommune": "MONTIGNY SUR CHIERS" }, { - "codePostal": "47210", - "codeCommune": "47219", - "libelleAcheminement": "RAYET", - "nomCommune": "RAYET" + "codePostal": "40380", + "codeCommune": "40205", + "libelleAcheminement": "NOUSSE", + "nomCommune": "NOUSSE" }, { - "codePostal": "67320", - "codeCommune": "67528", - "libelleAcheminement": "WEYER", - "nomCommune": "WEYER" + "codePostal": "42610", + "codeCommune": "42285", + "libelleAcheminement": "ST ROMAIN LE PUY", + "nomCommune": "ST ROMAIN LE PUY" }, { - "codePostal": "17250", - "codeCommune": "17455", - "libelleAcheminement": "LA VALLEE", - "nomCommune": "LA VALLEE" + "codePostal": "54115", + "codeCommune": "54522", + "libelleAcheminement": "THOREY LYAUTEY", + "nomCommune": "THOREY LYAUTEY" }, { - "codePostal": "33420", - "codeCommune": "33194", - "libelleAcheminement": "GREZILLAC", - "nomCommune": "GREZILLAC" + "codePostal": "54118", + "codeCommune": "54393", + "libelleAcheminement": "MOYEN", + "nomCommune": "MOYEN" }, { - "codePostal": "47160", - "codeCommune": "47220", - "libelleAcheminement": "RAZIMET", - "nomCommune": "RAZIMET" + "codePostal": "40380", + "codeCommune": "40208", + "libelleAcheminement": "ONARD", + "nomCommune": "ONARD" }, { - "codePostal": "67130", - "codeCommune": "67531", - "libelleAcheminement": "WILDERSBACH", - "nomCommune": "WILDERSBACH" + "codePostal": "42220", + "codeCommune": "42310", + "libelleAcheminement": "THELIS LA COMBE", + "nomCommune": "THELIS LA COMBE" }, { - "codePostal": "17380", - "codeCommune": "17457", - "libelleAcheminement": "LA DEVISE", - "nomCommune": "LA DEVISE" + "codePostal": "54190", + "codeCommune": "54525", + "libelleAcheminement": "TIERCELET", + "nomCommune": "TIERCELET" }, { - "codePostal": "33230", - "codeCommune": "33198", - "libelleAcheminement": "GUITRES", - "nomCommune": "GUITRES" + "codePostal": "54490", + "codeCommune": "54394", + "libelleAcheminement": "MURVILLE", + "nomCommune": "MURVILLE" }, { - "codePostal": "47170", - "codeCommune": "47221", - "libelleAcheminement": "REAUP LISSE", - "nomCommune": "REAUP LISSE" + "codePostal": "40110", + "codeCommune": "40210", + "libelleAcheminement": "ONESSE LAHARIE", + "nomCommune": "ONESSE LAHARIE" }, { - "codePostal": "67270", - "codeCommune": "67534", - "libelleAcheminement": "WILWISHEIM", - "nomCommune": "WILWISHEIM" + "codePostal": "42580", + "codeCommune": "42311", + "libelleAcheminement": "LA TOUR EN JAREZ", + "nomCommune": "LA TOUR EN JAREZ" }, { - "codePostal": "17700", - "codeCommune": "17457", - "libelleAcheminement": "LA DEVISE", - "nomCommune": "LA DEVISE" + "codePostal": "54510", + "codeCommune": "54526", + "libelleAcheminement": "TOMBLAINE", + "nomCommune": "TOMBLAINE" }, { - "codePostal": "33990", - "codeCommune": "33203", - "libelleAcheminement": "HOURTIN", - "nomCommune": "HOURTIN" + "codePostal": "54000", + "codeCommune": "54395", + "libelleAcheminement": "NANCY", + "nomCommune": "NANCY" }, { - "codePostal": "47250", - "codeCommune": "47224", - "libelleAcheminement": "ROMESTAING", - "nomCommune": "ROMESTAING" + "codePostal": "40110", + "codeCommune": "40215", + "libelleAcheminement": "OUSSE SUZAN", + "nomCommune": "OUSSE SUZAN" }, { - "codePostal": "67170", - "codeCommune": "67539", - "libelleAcheminement": "WINGERSHEIM LES QUATRE BANS", - "nomCommune": "WINGERSHEIM LES QUATRE BANS" + "codePostal": "42600", + "codeCommune": "42328", + "libelleAcheminement": "VERRIERES EN FOREZ", + "nomCommune": "VERRIERES EN FOREZ" }, { - "codePostal": "17300", - "codeCommune": "17463", - "libelleAcheminement": "VERGEROUX", - "nomCommune": "VERGEROUX" + "codePostal": "54500", + "codeCommune": "54547", + "libelleAcheminement": "VANDOEUVRE LES NANCY", + "nomCommune": "VANDOEUVRE LES NANCY" }, { - "codePostal": "33790", - "codeCommune": "33223", - "libelleAcheminement": "LANDERROUAT", - "nomCommune": "LANDERROUAT" + "codePostal": "54260", + "codeCommune": "54412", + "libelleAcheminement": "OTHE", + "nomCommune": "OTHE" }, { - "codePostal": "47150", - "codeCommune": "47230", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "40310", + "codeCommune": "40218", + "libelleAcheminement": "PARLEBOSCQ", + "nomCommune": "PARLEBOSCQ" }, { - "codePostal": "67270", - "codeCommune": "67539", - "libelleAcheminement": "WINGERSHEIM LES QUATRE BANS", - "nomCommune": "WINGERSHEIM LES QUATRE BANS" + "codePostal": "42300", + "codeCommune": "42332", + "libelleAcheminement": "VILLEREST", + "nomCommune": "VILLEREST" }, { - "codePostal": "17400", - "codeCommune": "17467", - "libelleAcheminement": "VERVANT", - "nomCommune": "VERVANT" + "codePostal": "54112", + "codeCommune": "54548", + "libelleAcheminement": "VANNES LE CHATEL", + "nomCommune": "VANNES LE CHATEL" }, { - "codePostal": "33138", - "codeCommune": "33229", - "libelleAcheminement": "LANTON", - "nomCommune": "LANTON" + "codePostal": "54540", + "codeCommune": "54423", + "libelleAcheminement": "PEXONNE", + "nomCommune": "PEXONNE" }, { - "codePostal": "47270", - "codeCommune": "47234", - "libelleAcheminement": "ST CAPRAIS DE LERM", - "nomCommune": "ST CAPRAIS DE LERM" + "codePostal": "40700", + "codeCommune": "40223", + "libelleAcheminement": "PEYRE", + "nomCommune": "PEYRE" }, { - "codePostal": "67370", - "codeCommune": "67542", - "libelleAcheminement": "WINTZENHEIM KOCHERSBERG", - "nomCommune": "WINTZENHEIM KOCHERSBERG" + "codePostal": "42140", + "codeCommune": "42335", + "libelleAcheminement": "VIRICELLES", + "nomCommune": "VIRICELLES" }, { - "codePostal": "17130", - "codeCommune": "17468", - "libelleAcheminement": "VIBRAC", - "nomCommune": "VIBRAC" + "codePostal": "54110", + "codeCommune": "54549", + "libelleAcheminement": "VARANGEVILLE", + "nomCommune": "VARANGEVILLE" }, { - "codePostal": "33410", - "codeCommune": "33231", - "libelleAcheminement": "LAROQUE", - "nomCommune": "LAROQUE" + "codePostal": "54200", + "codeCommune": "54426", + "libelleAcheminement": "PIERRE LA TREICHE", + "nomCommune": "PIERRE LA TREICHE" }, { - "codePostal": "47410", - "codeCommune": "47235", - "libelleAcheminement": "ST COLOMB DE LAUZUN", - "nomCommune": "ST COLOMB DE LAUZUN" + "codePostal": "40300", + "codeCommune": "40224", + "libelleAcheminement": "PEYREHORADE", + "nomCommune": "PEYREHORADE" }, { - "codePostal": "67130", - "codeCommune": "67543", - "libelleAcheminement": "WISCHES", - "nomCommune": "WISCHES" + "codePostal": "42140", + "codeCommune": "42336", + "libelleAcheminement": "VIRIGNEUX", + "nomCommune": "VIRIGNEUX" }, { - "codePostal": "17470", - "codeCommune": "17473", - "libelleAcheminement": "VILLEMORIN", - "nomCommune": "VILLEMORIN" + "codePostal": "54540", + "codeCommune": "54560", + "libelleAcheminement": "VENEY", + "nomCommune": "VENEY" }, { - "codePostal": "33620", - "codeCommune": "33233", - "libelleAcheminement": "LARUSCADE", - "nomCommune": "LARUSCADE" + "codePostal": "54160", + "codeCommune": "54429", + "libelleAcheminement": "PIERREVILLE", + "nomCommune": "PIERREVILLE" }, { - "codePostal": "47310", - "codeCommune": "47238", - "libelleAcheminement": "STE COLOMBE EN BRUILHOIS", - "nomCommune": "STE COLOMBE EN BRUILHOIS" + "codePostal": "40320", + "codeCommune": "40226", + "libelleAcheminement": "PIMBO", + "nomCommune": "PIMBO" }, { - "codePostal": "67130", - "codeCommune": "67543", - "libelleAcheminement": "WISCHES", - "nomCommune": "WISCHES" + "codePostal": "43300", + "codeCommune": "43013", + "libelleAcheminement": "VISSAC AUTEYRAC", + "nomCommune": "VISSAC AUTEYRAC" }, { - "codePostal": "18500", - "codeCommune": "18005", - "libelleAcheminement": "ALLOUIS", - "nomCommune": "ALLOUIS" + "codePostal": "54830", + "codeCommune": "54561", + "libelleAcheminement": "VENNEZEY", + "nomCommune": "VENNEZEY" }, { - "codePostal": "33690", - "codeCommune": "33235", - "libelleAcheminement": "LAVAZAN", - "nomCommune": "LAVAZAN" + "codePostal": "54160", + "codeCommune": "54437", + "libelleAcheminement": "PULLIGNY", + "nomCommune": "PULLIGNY" }, { - "codePostal": "47270", - "codeCommune": "47248", - "libelleAcheminement": "ST JEAN DE THURAC", - "nomCommune": "ST JEAN DE THURAC" + "codePostal": "40360", + "codeCommune": "40228", + "libelleAcheminement": "POMAREZ", + "nomCommune": "POMAREZ" }, { - "codePostal": "67120", - "codeCommune": "67554", - "libelleAcheminement": "WOLXHEIM", - "nomCommune": "WOLXHEIM" + "codePostal": "43380", + "codeCommune": "43031", + "libelleAcheminement": "BLASSAC", + "nomCommune": "BLASSAC" }, { - "codePostal": "18340", - "codeCommune": "18006", - "libelleAcheminement": "ANNOIX", - "nomCommune": "ANNOIX" + "codePostal": "54470", + "codeCommune": "54564", + "libelleAcheminement": "VIEVILLE EN HAYE", + "nomCommune": "VIEVILLE EN HAYE" }, { - "codePostal": "33550", - "codeCommune": "33241", - "libelleAcheminement": "LESTIAC SUR GARONNE", - "nomCommune": "LESTIAC SUR GARONNE" + "codePostal": "54115", + "codeCommune": "54438", + "libelleAcheminement": "PULNEY", + "nomCommune": "PULNEY" }, { - "codePostal": "47290", - "codeCommune": "47259", - "libelleAcheminement": "ST MAURICE DE LESTAPEL", - "nomCommune": "ST MAURICE DE LESTAPEL" + "codePostal": "40465", + "codeCommune": "40230", + "libelleAcheminement": "PONTONX SUR L ADOUR", + "nomCommune": "PONTONX SUR L ADOUR" }, { - "codePostal": "67110", - "codeCommune": "67558", - "libelleAcheminement": "ZINSWILLER", - "nomCommune": "ZINSWILLER" + "codePostal": "43700", + "codeCommune": "43041", + "libelleAcheminement": "BRIVES CHARENSAC", + "nomCommune": "BRIVES CHARENSAC" }, { - "codePostal": "18800", - "codeCommune": "18023", - "libelleAcheminement": "BAUGY", - "nomCommune": "BAUGY" + "codePostal": "54360", + "codeCommune": "54565", + "libelleAcheminement": "VIGNEULLES", + "nomCommune": "VIGNEULLES" }, { - "codePostal": "33500", - "codeCommune": "33243", - "libelleAcheminement": "LIBOURNE", - "nomCommune": "LIBOURNE" + "codePostal": "54330", + "codeCommune": "54442", + "libelleAcheminement": "QUEVILLONCOURT", + "nomCommune": "QUEVILLONCOURT" }, { - "codePostal": "47200", - "codeCommune": "47263", - "libelleAcheminement": "ST PARDOUX DU BREUIL", - "nomCommune": "ST PARDOUX DU BREUIL" + "codePostal": "40700", + "codeCommune": "40253", + "libelleAcheminement": "ST CRICQ CHALOSSE", + "nomCommune": "ST CRICQ CHALOSSE" }, { - "codePostal": "68770", - "codeCommune": "68005", - "libelleAcheminement": "AMMERSCHWIHR", - "nomCommune": "AMMERSCHWIHR" + "codePostal": "43380", + "codeCommune": "43044", + "libelleAcheminement": "CERZAT", + "nomCommune": "CERZAT" }, { - "codePostal": "18800", - "codeCommune": "18023", - "libelleAcheminement": "BAUGY", - "nomCommune": "BAUGY" + "codePostal": "54290", + "codeCommune": "54567", + "libelleAcheminement": "VILLACOURT", + "nomCommune": "VILLACOURT" }, { - "codePostal": "33430", - "codeCommune": "33244", - "libelleAcheminement": "LIGNAN DE BAZAS", - "nomCommune": "LIGNAN DE BAZAS" + "codePostal": "54370", + "codeCommune": "54445", + "libelleAcheminement": "RAVILLE SUR SANON", + "nomCommune": "RAVILLE SUR SANON" }, { - "codePostal": "47120", - "codeCommune": "47271", - "libelleAcheminement": "ST PIERRE SUR DROPT", - "nomCommune": "ST PIERRE SUR DROPT" + "codePostal": "40380", + "codeCommune": "40263", + "libelleAcheminement": "ST JEAN DE LIER", + "nomCommune": "ST JEAN DE LIER" }, { - "codePostal": "68280", - "codeCommune": "68007", - "libelleAcheminement": "ANDOLSHEIM", - "nomCommune": "ANDOLSHEIM" + "codePostal": "43410", + "codeCommune": "43050", + "libelleAcheminement": "CHAMBEZON", + "nomCommune": "CHAMBEZON" }, { - "codePostal": "18200", - "codeCommune": "18038", - "libelleAcheminement": "BRUERE ALLICHAMPS", - "nomCommune": "BRUERE ALLICHAMPS" + "codePostal": "54730", + "codeCommune": "54572", + "libelleAcheminement": "VILLE HOUDLEMONT", + "nomCommune": "VILLE HOUDLEMONT" }, { - "codePostal": "33127", - "codeCommune": "33273", - "libelleAcheminement": "MARTIGNAS SUR JALLE", - "nomCommune": "MARTIGNAS SUR JALLE" + "codePostal": "54470", + "codeCommune": "54453", + "libelleAcheminement": "REMBERCOURT SUR MAD", + "nomCommune": "REMBERCOURT SUR MAD" }, { - "codePostal": "47340", - "codeCommune": "47273", - "libelleAcheminement": "ST ROBERT", - "nomCommune": "ST ROBERT" + "codePostal": "40550", + "codeCommune": "40276", + "libelleAcheminement": "ST MICHEL ESCALUS", + "nomCommune": "ST MICHEL ESCALUS" }, { - "codePostal": "68700", - "codeCommune": "68012", - "libelleAcheminement": "ASPACH MICHELBACH", - "nomCommune": "ASPACH MICHELBACH" + "codePostal": "43260", + "codeCommune": "43053", + "libelleAcheminement": "CHAMPCLAUSE", + "nomCommune": "CHAMPCLAUSE" }, { - "codePostal": "18150", - "codeCommune": "18048", - "libelleAcheminement": "LA CHAPELLE HUGON", - "nomCommune": "LA CHAPELLE HUGON" + "codePostal": "54870", + "codeCommune": "54574", + "libelleAcheminement": "VILLERS LA CHEVRE", + "nomCommune": "VILLERS LA CHEVRE" }, { - "codePostal": "33650", - "codeCommune": "33274", - "libelleAcheminement": "MARTILLAC", - "nomCommune": "MARTILLAC" + "codePostal": "54110", + "codeCommune": "54456", + "libelleAcheminement": "REMEREVILLE", + "nomCommune": "REMEREVILLE" }, { - "codePostal": "47120", - "codeCommune": "47278", - "libelleAcheminement": "ST SERNIN", - "nomCommune": "ST SERNIN" + "codePostal": "40180", + "codeCommune": "40277", + "libelleAcheminement": "ST PANDELON", + "nomCommune": "ST PANDELON" }, { - "codePostal": "68390", - "codeCommune": "68015", - "libelleAcheminement": "BALDERSHEIM", - "nomCommune": "BALDERSHEIM" + "codePostal": "43430", + "codeCommune": "43053", + "libelleAcheminement": "CHAMPCLAUSE", + "nomCommune": "CHAMPCLAUSE" }, { - "codePostal": "18350", - "codeCommune": "18060", - "libelleAcheminement": "CHAUMONT", - "nomCommune": "CHAUMONT" + "codePostal": "54800", + "codeCommune": "54581", + "libelleAcheminement": "VILLE SUR YRON", + "nomCommune": "VILLE SUR YRON" }, { - "codePostal": "33540", - "codeCommune": "33278", - "libelleAcheminement": "MAURIAC", - "nomCommune": "MAURIAC" + "codePostal": "54630", + "codeCommune": "54459", + "libelleAcheminement": "RICHARDMENIL", + "nomCommune": "RICHARDMENIL" }, { - "codePostal": "47500", - "codeCommune": "47283", - "libelleAcheminement": "ST VITE", - "nomCommune": "ST VITE" + "codePostal": "40500", + "codeCommune": "40282", + "libelleAcheminement": "ST SEVER", + "nomCommune": "ST SEVER" }, { - "codePostal": "68210", - "codeCommune": "68018", - "libelleAcheminement": "BALSCHWILLER", - "nomCommune": "BALSCHWILLER" + "codePostal": "43300", + "codeCommune": "43056", + "libelleAcheminement": "CHANTEUGES", + "nomCommune": "CHANTEUGES" }, { - "codePostal": "18140", - "codeCommune": "18061", - "libelleAcheminement": "CHAUMOUX MARCILLY", - "nomCommune": "CHAUMOUX MARCILLY" + "codePostal": "54260", + "codeCommune": "54590", + "libelleAcheminement": "VIVIERS SUR CHIERS", + "nomCommune": "VIVIERS SUR CHIERS" }, { - "codePostal": "33390", - "codeCommune": "33280", - "libelleAcheminement": "MAZION", - "nomCommune": "MAZION" + "codePostal": "54610", + "codeCommune": "54464", + "libelleAcheminement": "ROUVES", + "nomCommune": "ROUVES" }, { - "codePostal": "47220", - "codeCommune": "47293", - "libelleAcheminement": "SAUVETERRE ST DENIS", - "nomCommune": "SAUVETERRE ST DENIS" + "codePostal": "40800", + "codeCommune": "40290", + "libelleAcheminement": "SARRON", + "nomCommune": "SARRON" }, { - "codePostal": "68210", - "codeCommune": "68018", - "libelleAcheminement": "BALSCHWILLER", - "nomCommune": "BALSCHWILLER" + "codePostal": "43120", + "codeCommune": "43058", + "libelleAcheminement": "LA CHAPELLE D AUREC", + "nomCommune": "LA CHAPELLE D AUREC" }, { - "codePostal": "18290", - "codeCommune": "18066", - "libelleAcheminement": "CIVRAY", - "nomCommune": "CIVRAY" + "codePostal": "54470", + "codeCommune": "54594", + "libelleAcheminement": "XAMMES", + "nomCommune": "XAMMES" }, { - "codePostal": "33190", - "codeCommune": "33291", - "libelleAcheminement": "MONTAGOUDIN", - "nomCommune": "MONTAGOUDIN" + "codePostal": "54200", + "codeCommune": "54466", + "libelleAcheminement": "ROYAUMEIX", + "nomCommune": "ROYAUMEIX" }, { - "codePostal": "47120", - "codeCommune": "47294", - "libelleAcheminement": "SAVIGNAC DE DURAS", - "nomCommune": "SAVIGNAC DE DURAS" + "codePostal": "40140", + "codeCommune": "40310", + "libelleAcheminement": "SOUSTONS", + "nomCommune": "SOUSTONS" }, { - "codePostal": "68870", - "codeCommune": "68021", - "libelleAcheminement": "BARTENHEIM", - "nomCommune": "BARTENHEIM" + "codePostal": "43160", + "codeCommune": "43059", + "libelleAcheminement": "LA CHAPELLE GENESTE", + "nomCommune": "LA CHAPELLE GENESTE" }, { - "codePostal": "18130", - "codeCommune": "18068", - "libelleAcheminement": "COGNY", - "nomCommune": "COGNY" + "codePostal": "54300", + "codeCommune": "54595", + "libelleAcheminement": "XERMAMENIL", + "nomCommune": "XERMAMENIL" }, { - "codePostal": "33430", - "codeCommune": "33305", - "libelleAcheminement": "LE NIZAN", - "nomCommune": "LE NIZAN" + "codePostal": "54580", + "codeCommune": "54469", + "libelleAcheminement": "ST AIL", + "nomCommune": "ST AIL" }, { - "codePostal": "47170", - "codeCommune": "47302", - "libelleAcheminement": "SOS", - "nomCommune": "SOS" + "codePostal": "40180", + "codeCommune": "40314", + "libelleAcheminement": "TERCIS LES BAINS", + "nomCommune": "TERCIS LES BAINS" }, { - "codePostal": "68480", - "codeCommune": "68025", - "libelleAcheminement": "BENDORF", - "nomCommune": "BENDORF" + "codePostal": "43230", + "codeCommune": "43072", + "libelleAcheminement": "LA CHOMETTE", + "nomCommune": "LA CHOMETTE" }, { - "codePostal": "18190", - "codeCommune": "18073", - "libelleAcheminement": "CORQUOY", - "nomCommune": "CORQUOY" + "codePostal": "54620", + "codeCommune": "54602", + "libelleAcheminement": "HAN DEVANT PIERREPONT", + "nomCommune": "HAN DEVANT PIERREPONT" }, { - "codePostal": "33240", - "codeCommune": "33321", - "libelleAcheminement": "PEUJARD", - "nomCommune": "PEUJARD" + "codePostal": "54470", + "codeCommune": "54470", + "libelleAcheminement": "ST BAUSSANT", + "nomCommune": "ST BAUSSANT" }, { - "codePostal": "47270", - "codeCommune": "47305", - "libelleAcheminement": "TAYRAC", - "nomCommune": "TAYRAC" + "codePostal": "40990", + "codeCommune": "40315", + "libelleAcheminement": "TETHIEU", + "nomCommune": "TETHIEU" }, { - "codePostal": "68130", - "codeCommune": "68027", - "libelleAcheminement": "BERENTZWILLER", - "nomCommune": "BERENTZWILLER" + "codePostal": "43160", + "codeCommune": "43073", + "libelleAcheminement": "CISTRIERES", + "nomCommune": "CISTRIERES" }, { - "codePostal": "18320", - "codeCommune": "18075", - "libelleAcheminement": "COURS LES BARRES", - "nomCommune": "COURS LES BARRES" + "codePostal": "55130", + "codeCommune": "55005", + "libelleAcheminement": "AMANTY", + "nomCommune": "AMANTY" }, { - "codePostal": "33220", - "codeCommune": "33324", - "libelleAcheminement": "PINEUILH", - "nomCommune": "PINEUILH" + "codePostal": "54290", + "codeCommune": "54475", + "libelleAcheminement": "ST GERMAIN", + "nomCommune": "ST GERMAIN" }, { - "codePostal": "47110", - "codeCommune": "47306", - "libelleAcheminement": "LE TEMPLE SUR LOT", - "nomCommune": "LE TEMPLE SUR LOT" + "codePostal": "40230", + "codeCommune": "40317", + "libelleAcheminement": "TOSSE", + "nomCommune": "TOSSE" }, { - "codePostal": "68730", - "codeCommune": "68042", - "libelleAcheminement": "BLOTZHEIM", - "nomCommune": "BLOTZHEIM" + "codePostal": "43170", + "codeCommune": "43083", + "libelleAcheminement": "CUBELLES", + "nomCommune": "CUBELLES" }, { - "codePostal": "18300", - "codeCommune": "18079", - "libelleAcheminement": "CREZANCY EN SANCERRE", - "nomCommune": "CREZANCY EN SANCERRE" + "codePostal": "55230", + "codeCommune": "55008", + "libelleAcheminement": "AMEL SUR L ETANG", + "nomCommune": "AMEL SUR L ETANG" }, { - "codePostal": "33820", - "codeCommune": "33326", - "libelleAcheminement": "PLEINE SELVE", - "nomCommune": "PLEINE SELVE" + "codePostal": "54260", + "codeCommune": "54476", + "libelleAcheminement": "ST JEAN LES LONGUYON", + "nomCommune": "ST JEAN LES LONGUYON" }, { - "codePostal": "47400", - "codeCommune": "47310", - "libelleAcheminement": "TONNEINS", - "nomCommune": "TONNEINS" + "codePostal": "40250", + "codeCommune": "40318", + "libelleAcheminement": "TOULOUZETTE", + "nomCommune": "TOULOUZETTE" }, { - "codePostal": "68210", - "codeCommune": "68050", - "libelleAcheminement": "BRECHAUMONT", - "nomCommune": "BRECHAUMONT" + "codePostal": "43300", + "codeCommune": "43085", + "libelleAcheminement": "DESGES", + "nomCommune": "DESGES" }, { - "codePostal": "18300", - "codeCommune": "18094", - "libelleAcheminement": "FEUX", - "nomCommune": "FEUX" + "codePostal": "55700", + "codeCommune": "55018", + "libelleAcheminement": "AUTREVILLE ST LAMBERT", + "nomCommune": "AUTREVILLE ST LAMBERT" }, { - "codePostal": "33640", - "codeCommune": "33334", - "libelleAcheminement": "PORTETS", - "nomCommune": "PORTETS" + "codePostal": "54730", + "codeCommune": "54485", + "libelleAcheminement": "ST PANCRE", + "nomCommune": "ST PANCRE" }, { - "codePostal": "47210", - "codeCommune": "47311", - "libelleAcheminement": "TOURLIAC", - "nomCommune": "TOURLIAC" + "codePostal": "40320", + "codeCommune": "40325", + "libelleAcheminement": "VIELLE TURSAN", + "nomCommune": "VIELLE TURSAN" }, { - "codePostal": "68350", - "codeCommune": "68056", - "libelleAcheminement": "BRUNSTATT DIDENHEIM", - "nomCommune": "BRUNSTATT DIDENHEIM" + "codePostal": "43230", + "codeCommune": "43086", + "libelleAcheminement": "DOMEYRAT", + "nomCommune": "DOMEYRAT" }, { - "codePostal": "18600", - "codeCommune": "18106", - "libelleAcheminement": "GROSSOUVRE", - "nomCommune": "GROSSOUVRE" + "codePostal": "55210", + "codeCommune": "55021", + "libelleAcheminement": "AVILLERS STE CROIX", + "nomCommune": "AVILLERS STE CROIX" }, { - "codePostal": "33670", - "codeCommune": "33335", - "libelleAcheminement": "LE POUT", - "nomCommune": "LE POUT" + "codePostal": "54480", + "codeCommune": "54488", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "47230", - "codeCommune": "47318", - "libelleAcheminement": "VIANNE", - "nomCommune": "VIANNE" + "codePostal": "40560", + "codeCommune": "40326", + "libelleAcheminement": "VIELLE ST GIRONS", + "nomCommune": "VIELLE ST GIRONS" }, { - "codePostal": "68210", - "codeCommune": "68057", - "libelleAcheminement": "BUETHWILLER", - "nomCommune": "BUETHWILLER" + "codePostal": "43170", + "codeCommune": "43090", + "libelleAcheminement": "ESPLANTAS VAZEILLES", + "nomCommune": "ESPLANTAS VAZEILLES" }, { - "codePostal": "18170", - "codeCommune": "18112", - "libelleAcheminement": "IDS ST ROCH", - "nomCommune": "IDS ST ROCH" + "codePostal": "55270", + "codeCommune": "55023", + "libelleAcheminement": "AVOCOURT", + "nomCommune": "AVOCOURT" }, { - "codePostal": "33710", - "codeCommune": "33339", - "libelleAcheminement": "PRIGNAC ET MARCAMPS", - "nomCommune": "PRIGNAC ET MARCAMPS" + "codePostal": "54115", + "codeCommune": "54494", + "libelleAcheminement": "SAULXEROTTE", + "nomCommune": "SAULXEROTTE" }, { - "codePostal": "47370", - "codeCommune": "47328", - "libelleAcheminement": "ST GEORGES", - "nomCommune": "ST GEORGES" + "codePostal": "40160", + "codeCommune": "40332", + "libelleAcheminement": "YCHOUX", + "nomCommune": "YCHOUX" }, { - "codePostal": "68520", - "codeCommune": "68060", - "libelleAcheminement": "BURNHAUPT LE HAUT", - "nomCommune": "BURNHAUPT LE HAUT" + "codePostal": "43300", + "codeCommune": "43094", + "libelleAcheminement": "FERRUSSAC", + "nomCommune": "FERRUSSAC" }, { - "codePostal": "18340", - "codeCommune": "18129", - "libelleAcheminement": "LISSAY LOCHY", - "nomCommune": "LISSAY LOCHY" + "codePostal": "55150", + "codeCommune": "55024", + "libelleAcheminement": "AZANNES ET SOUMAZANNES", + "nomCommune": "AZANNES ET SOUMAZANNES" }, { - "codePostal": "33710", - "codeCommune": "33341", - "libelleAcheminement": "PUGNAC", - "nomCommune": "PUGNAC" + "codePostal": "54420", + "codeCommune": "54495", + "libelleAcheminement": "SAULXURES LES NANCY", + "nomCommune": "SAULXURES LES NANCY" }, { - "codePostal": "48310", - "codeCommune": "48007", - "libelleAcheminement": "ARZENC D APCHER", - "nomCommune": "ARZENC D APCHER" + "codePostal": "41310", + "codeCommune": "41007", + "libelleAcheminement": "AUTHON", + "nomCommune": "AUTHON" }, { - "codePostal": "68000", - "codeCommune": "68066", - "libelleAcheminement": "COLMAR", - "nomCommune": "COLMAR" + "codePostal": "43230", + "codeCommune": "43100", + "libelleAcheminement": "FRUGIERES LE PIN", + "nomCommune": "FRUGIERES LE PIN" }, { - "codePostal": "18300", - "codeCommune": "18146", - "libelleAcheminement": "MENETREOL SOUS SANCERRE", - "nomCommune": "MENETREOL SOUS SANCERRE" + "codePostal": "55130", + "codeCommune": "55026", + "libelleAcheminement": "BADONVILLIERS GERAUVILLIERS", + "nomCommune": "BADONVILLIERS GERAUVILLIERS" }, { - "codePostal": "33710", - "codeCommune": "33341", - "libelleAcheminement": "PUGNAC", - "nomCommune": "PUGNAC" + "codePostal": "54480", + "codeCommune": "54512", + "libelleAcheminement": "TANCONVILLE", + "nomCommune": "TANCONVILLE" }, { - "codePostal": "48130", - "codeCommune": "48009", - "libelleAcheminement": "PEYRE EN AUBRAC", - "nomCommune": "PEYRE EN AUBRAC" + "codePostal": "41330", + "codeCommune": "41040", + "libelleAcheminement": "LA CHAPELLE VENDOMOISE", + "nomCommune": "LA CHAPELLE VENDOMOISE" }, { - "codePostal": "68210", - "codeCommune": "68068", - "libelleAcheminement": "DANNEMARIE", - "nomCommune": "DANNEMARIE" + "codePostal": "43450", + "codeCommune": "43103", + "libelleAcheminement": "GRENIER MONTGON", + "nomCommune": "GRENIER MONTGON" }, { - "codePostal": "18120", - "codeCommune": "18148", - "libelleAcheminement": "MEREAU", - "nomCommune": "MEREAU" + "codePostal": "55250", + "codeCommune": "55040", + "libelleAcheminement": "BEAUSITE", + "nomCommune": "BEAUSITE" }, { - "codePostal": "33570", - "codeCommune": "33342", - "libelleAcheminement": "PUISSEGUIN", - "nomCommune": "PUISSEGUIN" + "codePostal": "54330", + "codeCommune": "54515", + "libelleAcheminement": "THELOD", + "nomCommune": "THELOD" }, { - "codePostal": "48200", - "codeCommune": "48012", - "libelleAcheminement": "LES MONTS VERTS", - "nomCommune": "LES MONTS VERTS" + "codePostal": "41130", + "codeCommune": "41043", + "libelleAcheminement": "CHATILLON SUR CHER", + "nomCommune": "CHATILLON SUR CHER" }, { - "codePostal": "68780", - "codeCommune": "68071", - "libelleAcheminement": "DIEFMATTEN", - "nomCommune": "DIEFMATTEN" + "codePostal": "43100", + "codeCommune": "43105", + "libelleAcheminement": "JAVAUGUES", + "nomCommune": "JAVAUGUES" }, { - "codePostal": "18250", - "codeCommune": "18151", - "libelleAcheminement": "MONTIGNY", - "nomCommune": "MONTIGNY" + "codePostal": "55210", + "codeCommune": "55046", + "libelleAcheminement": "BENEY EN WOEVRE", + "nomCommune": "BENEY EN WOEVRE" }, { - "codePostal": "33580", - "codeCommune": "33359", - "libelleAcheminement": "ROQUEBRUNE", - "nomCommune": "ROQUEBRUNE" + "codePostal": "54170", + "codeCommune": "54523", + "libelleAcheminement": "THUILLEY AUX GROSEILLES", + "nomCommune": "THUILLEY AUX GROSEILLES" }, { - "codePostal": "48200", - "codeCommune": "48025", - "libelleAcheminement": "LES BESSONS", - "nomCommune": "LES BESSONS" + "codePostal": "41150", + "codeCommune": "41045", + "libelleAcheminement": "CHAUMONT SUR LOIRE", + "nomCommune": "CHAUMONT SUR LOIRE" }, { - "codePostal": "68290", - "codeCommune": "68073", - "libelleAcheminement": "DOLLEREN", - "nomCommune": "DOLLEREN" + "codePostal": "43440", + "codeCommune": "43116", + "libelleAcheminement": "LAVAL SUR DOULON", + "nomCommune": "LAVAL SUR DOULON" }, { - "codePostal": "18220", - "codeCommune": "18156", - "libelleAcheminement": "MOROGUES", - "nomCommune": "MOROGUES" + "codePostal": "55200", + "codeCommune": "55058", + "libelleAcheminement": "BONCOURT SUR MEUSE", + "nomCommune": "BONCOURT SUR MEUSE" }, { - "codePostal": "33910", - "codeCommune": "33362", - "libelleAcheminement": "SABLONS", - "nomCommune": "SABLONS" + "codePostal": "54115", + "codeCommune": "54531", + "libelleAcheminement": "TRAMONT ST ANDRE", + "nomCommune": "TRAMONT ST ANDRE" }, { - "codePostal": "48170", - "codeCommune": "48027", - "libelleAcheminement": "MONT LOZERE ET GOULET", - "nomCommune": "MONT LOZERE ET GOULET" + "codePostal": "41600", + "codeCommune": "41046", + "libelleAcheminement": "CHAUMONT SUR THARONNE", + "nomCommune": "CHAUMONT SUR THARONNE" }, { - "codePostal": "68130", - "codeCommune": "68096", - "libelleAcheminement": "FRANKEN", - "nomCommune": "FRANKEN" + "codePostal": "43100", + "codeCommune": "43117", + "libelleAcheminement": "LAVAUDIEU", + "nomCommune": "LAVAUDIEU" }, { - "codePostal": "18330", - "codeCommune": "18159", - "libelleAcheminement": "NANCAY", - "nomCommune": "NANCAY" + "codePostal": "55160", + "codeCommune": "55060", + "libelleAcheminement": "BONZEE", + "nomCommune": "BONZEE" }, { - "codePostal": "33126", - "codeCommune": "33365", - "libelleAcheminement": "ST AIGNAN", - "nomCommune": "ST AIGNAN" + "codePostal": "54750", + "codeCommune": "54533", + "libelleAcheminement": "TRIEUX", + "nomCommune": "TRIEUX" }, { - "codePostal": "48190", - "codeCommune": "48027", - "libelleAcheminement": "MONT LOZERE ET GOULET", - "nomCommune": "MONT LOZERE ET GOULET" + "codePostal": "41700", + "codeCommune": "41050", + "libelleAcheminement": "CHEVERNY", + "nomCommune": "CHEVERNY" }, { - "codePostal": "68580", - "codeCommune": "68098", - "libelleAcheminement": "FRIESEN", - "nomCommune": "FRIESEN" + "codePostal": "43300", + "codeCommune": "43132", + "libelleAcheminement": "MAZEYRAT D ALLIER", + "nomCommune": "MAZEYRAT D ALLIER" }, { - "codePostal": "18600", - "codeCommune": "18161", - "libelleAcheminement": "NEUILLY EN DUN", - "nomCommune": "NEUILLY EN DUN" + "codePostal": "55190", + "codeCommune": "55066", + "libelleAcheminement": "BOVEE SUR BARBOURE", + "nomCommune": "BOVEE SUR BARBOURE" }, { - "codePostal": "33330", - "codeCommune": "33394", - "libelleAcheminement": "ST EMILION", - "nomCommune": "ST EMILION" + "codePostal": "54640", + "codeCommune": "54536", + "libelleAcheminement": "TUCQUEGNIEUX", + "nomCommune": "TUCQUEGNIEUX" }, { - "codePostal": "48310", - "codeCommune": "48031", - "libelleAcheminement": "BRION", - "nomCommune": "BRION" + "codePostal": "41700", + "codeCommune": "41054", + "libelleAcheminement": "CHOUSSY", + "nomCommune": "CHOUSSY" }, { - "codePostal": "68210", - "codeCommune": "68107", - "libelleAcheminement": "GOMMERSDORF", - "nomCommune": "GOMMERSDORF" + "codePostal": "43150", + "codeCommune": "43135", + "libelleAcheminement": "LE MONASTIER SUR GAZEILLE", + "nomCommune": "LE MONASTIER SUR GAZEILLE" }, { - "codePostal": "18250", - "codeCommune": "18162", - "libelleAcheminement": "NEUILLY EN SANCERRE", - "nomCommune": "NEUILLY EN SANCERRE" + "codePostal": "55400", + "codeCommune": "55072", + "libelleAcheminement": "BRAQUIS", + "nomCommune": "BRAQUIS" }, { - "codePostal": "33190", - "codeCommune": "33398", - "libelleAcheminement": "ST EXUPERY", - "nomCommune": "ST EXUPERY" + "codePostal": "54112", + "codeCommune": "54538", + "libelleAcheminement": "URUFFE", + "nomCommune": "URUFFE" }, { - "codePostal": "48000", - "codeCommune": "48042", - "libelleAcheminement": "CHASTEL NOUVEL", - "nomCommune": "CHASTEL NOUVEL" + "codePostal": "41370", + "codeCommune": "41058", + "libelleAcheminement": "CONCRIERS", + "nomCommune": "CONCRIERS" }, { - "codePostal": "68140", - "codeCommune": "68109", - "libelleAcheminement": "GRIESBACH AU VAL", - "nomCommune": "GRIESBACH AU VAL" + "codePostal": "43290", + "codeCommune": "43142", + "libelleAcheminement": "MONTREGARD", + "nomCommune": "MONTREGARD" }, { - "codePostal": "18600", - "codeCommune": "18164", - "libelleAcheminement": "NEUVY LE BARROIS", - "nomCommune": "NEUVY LE BARROIS" + "codePostal": "55140", + "codeCommune": "55080", + "libelleAcheminement": "BRIXEY AUX CHANOINES", + "nomCommune": "BRIXEY AUX CHANOINES" }, { - "codePostal": "33390", - "codeCommune": "33405", - "libelleAcheminement": "ST GENES DE BLAYE", - "nomCommune": "ST GENES DE BLAYE" + "codePostal": "54540", + "codeCommune": "54539", + "libelleAcheminement": "VACQUEVILLE", + "nomCommune": "VACQUEVILLE" }, { - "codePostal": "48300", - "codeCommune": "48048", - "libelleAcheminement": "CHEYLARD L EVEQUE", - "nomCommune": "CHEYLARD L EVEQUE" + "codePostal": "41120", + "codeCommune": "41059", + "libelleAcheminement": "LE CONTROIS EN SOLOGNE", + "nomCommune": "LE CONTROIS EN SOLOGNE" }, { - "codePostal": "68970", - "codeCommune": "68113", - "libelleAcheminement": "GUEMAR", - "nomCommune": "GUEMAR" + "codePostal": "43150", + "codeCommune": "43144", + "libelleAcheminement": "MOUDEYRES", + "nomCommune": "MOUDEYRES" }, { - "codePostal": "18200", - "codeCommune": "18169", - "libelleAcheminement": "NOZIERES", - "nomCommune": "NOZIERES" + "codePostal": "55140", + "codeCommune": "55089", + "libelleAcheminement": "BUREY LA COTE", + "nomCommune": "BUREY LA COTE" }, { - "codePostal": "33350", - "codeCommune": "33406", - "libelleAcheminement": "ST GENES DE CASTILLON", - "nomCommune": "ST GENES DE CASTILLON" + "codePostal": "54121", + "codeCommune": "54546", + "libelleAcheminement": "VANDIERES", + "nomCommune": "VANDIERES" }, { - "codePostal": "48160", - "codeCommune": "48051", - "libelleAcheminement": "LE COLLET DE DEZE", - "nomCommune": "LE COLLET DE DEZE" + "codePostal": "41170", + "codeCommune": "41060", + "libelleAcheminement": "CORMENON", + "nomCommune": "CORMENON" }, { - "codePostal": "68440", - "codeCommune": "68118", - "libelleAcheminement": "HABSHEIM", - "nomCommune": "HABSHEIM" + "codePostal": "43230", + "codeCommune": "43148", + "libelleAcheminement": "PAULHAGUET", + "nomCommune": "PAULHAGUET" }, { - "codePostal": "18130", - "codeCommune": "18173", - "libelleAcheminement": "OSMERY", - "nomCommune": "OSMERY" + "codePostal": "55700", + "codeCommune": "55095", + "libelleAcheminement": "CESSE", + "nomCommune": "CESSE" }, { - "codePostal": "33190", - "codeCommune": "33418", - "libelleAcheminement": "ST HILAIRE DE LA NOAILLE", - "nomCommune": "ST HILAIRE DE LA NOAILLE" + "codePostal": "54330", + "codeCommune": "54552", + "libelleAcheminement": "VAUDEMONT", + "nomCommune": "VAUDEMONT" }, { - "codePostal": "48230", - "codeCommune": "48055", - "libelleAcheminement": "CULTURES", - "nomCommune": "CULTURES" + "codePostal": "41120", + "codeCommune": "41061", + "libelleAcheminement": "CORMERAY", + "nomCommune": "CORMERAY" }, { - "codePostal": "68210", - "codeCommune": "68119", - "libelleAcheminement": "HAGENBACH", - "nomCommune": "HAGENBACH" + "codePostal": "43330", + "codeCommune": "43153", + "libelleAcheminement": "PONT SALOMON", + "nomCommune": "PONT SALOMON" }, { - "codePostal": "18390", - "codeCommune": "18174", - "libelleAcheminement": "OSMOY", - "nomCommune": "OSMOY" + "codePostal": "55260", + "codeCommune": "55108", + "libelleAcheminement": "CHAUMONT SUR AIRE", + "nomCommune": "CHAUMONT SUR AIRE" }, { - "codePostal": "33240", - "codeCommune": "33425", - "libelleAcheminement": "ST LAURENT D ARCE", - "nomCommune": "ST LAURENT D ARCE" + "codePostal": "54450", + "codeCommune": "54556", + "libelleAcheminement": "VEHO", + "nomCommune": "VEHO" }, { - "codePostal": "48600", - "codeCommune": "48070", - "libelleAcheminement": "GRANDRIEU", - "nomCommune": "GRANDRIEU" + "codePostal": "41500", + "codeCommune": "41066", + "libelleAcheminement": "COURBOUZON", + "nomCommune": "COURBOUZON" }, { - "codePostal": "68220", - "codeCommune": "68120", - "libelleAcheminement": "HAGENTHAL LE BAS", - "nomCommune": "HAGENTHAL LE BAS" + "codePostal": "43300", + "codeCommune": "43155", + "libelleAcheminement": "PRADES", + "nomCommune": "PRADES" }, { - "codePostal": "18290", - "codeCommune": "18181", - "libelleAcheminement": "PLOU", - "nomCommune": "PLOU" + "codePostal": "55000", + "codeCommune": "55123", + "libelleAcheminement": "LES HAUTS DE CHEE", + "nomCommune": "LES HAUTS DE CHEE" }, { - "codePostal": "33490", - "codeCommune": "33440", - "libelleAcheminement": "ST MARTIAL", - "nomCommune": "ST MARTIAL" + "codePostal": "54280", + "codeCommune": "54558", + "libelleAcheminement": "VELAINE SOUS AMANCE", + "nomCommune": "VELAINE SOUS AMANCE" }, { - "codePostal": "48340", - "codeCommune": "48073", - "libelleAcheminement": "LES HERMAUX", - "nomCommune": "LES HERMAUX" + "codePostal": "41700", + "codeCommune": "41067", + "libelleAcheminement": "COUR CHEVERNY", + "nomCommune": "COUR CHEVERNY" }, { - "codePostal": "68500", - "codeCommune": "68122", - "libelleAcheminement": "HARTMANNSWILLER", - "nomCommune": "HARTMANNSWILLER" + "codePostal": "43150", + "codeCommune": "43156", + "libelleAcheminement": "PRESAILLES", + "nomCommune": "PRESAILLES" }, { - "codePostal": "18130", - "codeCommune": "18191", - "libelleAcheminement": "RAYMOND", - "nomCommune": "RAYMOND" + "codePostal": "55110", + "codeCommune": "55124", + "libelleAcheminement": "CONSENVOYE", + "nomCommune": "CONSENVOYE" }, { - "codePostal": "33390", - "codeCommune": "33441", - "libelleAcheminement": "ST MARTIN LACAUSSADE", - "nomCommune": "ST MARTIN LACAUSSADE" + "codePostal": "54450", + "codeCommune": "54562", + "libelleAcheminement": "VERDENAL", + "nomCommune": "VERDENAL" }, { - "codePostal": "48320", - "codeCommune": "48075", - "libelleAcheminement": "ISPAGNAC", - "nomCommune": "ISPAGNAC" + "codePostal": "41230", + "codeCommune": "41068", + "libelleAcheminement": "COURMEMIN", + "nomCommune": "COURMEMIN" }, { - "codePostal": "68210", - "codeCommune": "68125", - "libelleAcheminement": "HECKEN", - "nomCommune": "HECKEN" + "codePostal": "43340", + "codeCommune": "43173", + "libelleAcheminement": "ST CHRISTOPHE D ALLIER", + "nomCommune": "ST CHRISTOPHE D ALLIER" }, { - "codePostal": "18600", - "codeCommune": "18195", - "libelleAcheminement": "SAGONNE", - "nomCommune": "SAGONNE" + "codePostal": "55800", + "codeCommune": "55125", + "libelleAcheminement": "CONTRISSON", + "nomCommune": "CONTRISSON" }, { - "codePostal": "33540", - "codeCommune": "33446", - "libelleAcheminement": "ST MARTIN DU PUY", - "nomCommune": "ST MARTIN DU PUY" + "codePostal": "54920", + "codeCommune": "54575", + "libelleAcheminement": "VILLERS LA MONTAGNE", + "nomCommune": "VILLERS LA MONTAGNE" }, { - "codePostal": "48110", - "codeCommune": "48097", - "libelleAcheminement": "MOISSAC VALLEE FRANCAISE", - "nomCommune": "MOISSAC VALLEE FRANCAISE" + "codePostal": "41160", + "codeCommune": "41073", + "libelleAcheminement": "DANZE", + "nomCommune": "DANZE" }, { - "codePostal": "68130", - "codeCommune": "68131", - "libelleAcheminement": "HEIWILLER", - "nomCommune": "HEIWILLER" + "codePostal": "43370", + "codeCommune": "43174", + "libelleAcheminement": "ST CHRISTOPHE SUR DOLAISON", + "nomCommune": "ST CHRISTOPHE SUR DOLAISON" }, { - "codePostal": "18600", - "codeCommune": "18196", - "libelleAcheminement": "ST AIGNAN DES NOYERS", - "nomCommune": "ST AIGNAN DES NOYERS" + "codePostal": "55290", + "codeCommune": "55133", + "libelleAcheminement": "COUVERTPUIS", + "nomCommune": "COUVERTPUIS" }, { - "codePostal": "33350", - "codeCommune": "33461", - "libelleAcheminement": "ST PHILIPPE D AIGUILLE", - "nomCommune": "ST PHILIPPE D AIGUILLE" + "codePostal": "54260", + "codeCommune": "54576", + "libelleAcheminement": "VILLERS LE ROND", + "nomCommune": "VILLERS LE ROND" }, { - "codePostal": "48100", - "codeCommune": "48103", - "libelleAcheminement": "MONTRODAT", - "nomCommune": "MONTRODAT" + "codePostal": "41270", + "codeCommune": "41075", + "libelleAcheminement": "DROUE", + "nomCommune": "DROUE" }, { - "codePostal": "68510", - "codeCommune": "68132", - "libelleAcheminement": "HELFRANTZKIRCH", - "nomCommune": "HELFRANTZKIRCH" + "codePostal": "43380", + "codeCommune": "43175", + "libelleAcheminement": "ST CIRGUES", + "nomCommune": "ST CIRGUES" }, { - "codePostal": "18270", - "codeCommune": "18203", - "libelleAcheminement": "ST CHRISTOPHE LE CHAUDRY", - "nomCommune": "ST CHRISTOPHE LE CHAUDRY" + "codePostal": "55100", + "codeCommune": "55139", + "libelleAcheminement": "CUMIERES LE MORT HOMME", + "nomCommune": "CUMIERES LE MORT HOMME" }, { - "codePostal": "33220", - "codeCommune": "33462", - "libelleAcheminement": "ST PHILIPPE DU SEIGNAL", - "nomCommune": "ST PHILIPPE DU SEIGNAL" + "codePostal": "54760", + "codeCommune": "54577", + "libelleAcheminement": "VILLERS LES MOIVRONS", + "nomCommune": "VILLERS LES MOIVRONS" }, { - "codePostal": "48110", - "codeCommune": "48115", - "libelleAcheminement": "LE POMPIDOU", - "nomCommune": "LE POMPIDOU" + "codePostal": "41800", + "codeCommune": "41079", + "libelleAcheminement": "LES ESSARTS", + "nomCommune": "LES ESSARTS" }, { - "codePostal": "68320", - "codeCommune": "68143", - "libelleAcheminement": "PORTE DU RIED", - "nomCommune": "PORTE DU RIED" + "codePostal": "43140", + "codeCommune": "43177", + "libelleAcheminement": "ST DIDIER EN VELAY", + "nomCommune": "ST DIDIER EN VELAY" }, { - "codePostal": "18110", - "codeCommune": "18211", - "libelleAcheminement": "ST GEORGES SUR MOULON", - "nomCommune": "ST GEORGES SUR MOULON" + "codePostal": "55130", + "codeCommune": "55142", + "libelleAcheminement": "DAINVILLE BERTHELEVILLE", + "nomCommune": "DAINVILLE BERTHELEVILLE" }, { - "codePostal": "33650", - "codeCommune": "33474", - "libelleAcheminement": "ST SELVE", - "nomCommune": "ST SELVE" + "codePostal": "54190", + "codeCommune": "54580", + "libelleAcheminement": "VILLERUPT", + "nomCommune": "VILLERUPT" }, { - "codePostal": "48800", - "codeCommune": "48117", - "libelleAcheminement": "POURCHARESSES", - "nomCommune": "POURCHARESSES" + "codePostal": "41100", + "codeCommune": "41081", + "libelleAcheminement": "FAYE", + "nomCommune": "FAYE" }, { - "codePostal": "68470", - "codeCommune": "68151", - "libelleAcheminement": "HUSSEREN WESSERLING", - "nomCommune": "HUSSEREN WESSERLING" + "codePostal": "43230", + "codeCommune": "43183", + "libelleAcheminement": "STE EUGENIE DE VILLENEUVE", + "nomCommune": "STE EUGENIE DE VILLENEUVE" }, { - "codePostal": "18160", - "codeCommune": "18216", - "libelleAcheminement": "ST HILAIRE EN LIGNIERES", - "nomCommune": "ST HILAIRE EN LIGNIERES" + "codePostal": "55150", + "codeCommune": "55145", + "libelleAcheminement": "DAMVILLERS", + "nomCommune": "DAMVILLERS" }, { - "codePostal": "33180", - "codeCommune": "33476", - "libelleAcheminement": "ST SEURIN DE CADOURNE", - "nomCommune": "ST SEURIN DE CADOURNE" + "codePostal": "54840", + "codeCommune": "54583", + "libelleAcheminement": "VILLEY LE SEC", + "nomCommune": "VILLEY LE SEC" }, { - "codePostal": "48700", - "codeCommune": "48127", - "libelleAcheminement": "MONTS DE RANDON", - "nomCommune": "MONTS DE RANDON" + "codePostal": "41800", + "codeCommune": "41087", + "libelleAcheminement": "FONTAINE LES COTEAUX", + "nomCommune": "FONTAINE LES COTEAUX" }, { - "codePostal": "68970", - "codeCommune": "68153", - "libelleAcheminement": "ILLHAEUSERN", - "nomCommune": "ILLHAEUSERN" + "codePostal": "43360", + "codeCommune": "43191", + "libelleAcheminement": "ST GERON", + "nomCommune": "ST GERON" }, { - "codePostal": "18340", - "codeCommune": "18218", - "libelleAcheminement": "ST JUST", - "nomCommune": "ST JUST" + "codePostal": "55110", + "codeCommune": "55146", + "libelleAcheminement": "DANNEVOUX", + "nomCommune": "DANNEVOUX" }, { - "codePostal": "33330", - "codeCommune": "33480", - "libelleAcheminement": "ST SULPICE DE FALEYRENS", - "nomCommune": "ST SULPICE DE FALEYRENS" + "codePostal": "54700", + "codeCommune": "54589", + "libelleAcheminement": "VITTONVILLE", + "nomCommune": "VITTONVILLE" }, { - "codePostal": "48200", - "codeCommune": "48128", - "libelleAcheminement": "RIMEIZE", - "nomCommune": "RIMEIZE" + "codePostal": "41700", + "codeCommune": "41094", + "libelleAcheminement": "FRESNES", + "nomCommune": "FRESNES" }, { - "codePostal": "68110", - "codeCommune": "68154", - "libelleAcheminement": "ILLZACH", - "nomCommune": "ILLZACH" + "codePostal": "43260", + "codeCommune": "43194", + "libelleAcheminement": "ST HOSTIEN", + "nomCommune": "ST HOSTIEN" }, { - "codePostal": "18110", - "codeCommune": "18223", - "libelleAcheminement": "ST MARTIN D AUXIGNY", - "nomCommune": "ST MARTIN D AUXIGNY" + "codePostal": "55130", + "codeCommune": "55150", + "libelleAcheminement": "DEMANGE BAUDIGNECOURT", + "nomCommune": "DEMANGE BAUDIGNECOURT" }, { - "codePostal": "33350", - "codeCommune": "33485", - "libelleAcheminement": "STE TERRE", - "nomCommune": "STE TERRE" + "codePostal": "54260", + "codeCommune": "54590", + "libelleAcheminement": "VIVIERS SUR CHIERS", + "nomCommune": "VIVIERS SUR CHIERS" }, { - "codePostal": "48300", - "codeCommune": "48129", - "libelleAcheminement": "ROCLES", - "nomCommune": "ROCLES" + "codePostal": "41270", + "codeCommune": "41096", + "libelleAcheminement": "LE GAULT DU PERCHE", + "nomCommune": "LE GAULT DU PERCHE" }, { - "codePostal": "68260", - "codeCommune": "68166", - "libelleAcheminement": "KINGERSHEIM", - "nomCommune": "KINGERSHEIM" + "codePostal": "43380", + "codeCommune": "43195", + "libelleAcheminement": "ST ILPIZE", + "nomCommune": "ST ILPIZE" }, { - "codePostal": "18390", - "codeCommune": "18226", - "libelleAcheminement": "ST MICHEL DE VOLANGIS", - "nomCommune": "ST MICHEL DE VOLANGIS" + "codePostal": "55150", + "codeCommune": "55156", + "libelleAcheminement": "DOMBRAS", + "nomCommune": "DOMBRAS" }, { - "codePostal": "33770", - "codeCommune": "33498", - "libelleAcheminement": "SALLES", - "nomCommune": "SALLES" + "codePostal": "54330", + "codeCommune": "54592", + "libelleAcheminement": "VRONCOURT", + "nomCommune": "VRONCOURT" }, { - "codePostal": "48200", - "codeCommune": "48140", - "libelleAcheminement": "ST CHELY D APCHER", - "nomCommune": "ST CHELY D APCHER" + "codePostal": "41350", + "codeCommune": "41104", + "libelleAcheminement": "HUISSEAU SUR COSSON", + "nomCommune": "HUISSEAU SUR COSSON" }, { - "codePostal": "68910", - "codeCommune": "68173", - "libelleAcheminement": "LABAROCHE", - "nomCommune": "LABAROCHE" + "codePostal": "43200", + "codeCommune": "43199", + "libelleAcheminement": "ST JEURES", + "nomCommune": "ST JEURES" }, { - "codePostal": "18300", - "codeCommune": "18233", - "libelleAcheminement": "ST SATUR", - "nomCommune": "ST SATUR" + "codePostal": "55300", + "codeCommune": "55160", + "libelleAcheminement": "DOMPIERRE AUX BOIS", + "nomCommune": "DOMPIERRE AUX BOIS" }, { - "codePostal": "33124", - "codeCommune": "33508", - "libelleAcheminement": "SAVIGNAC", - "nomCommune": "SAVIGNAC" + "codePostal": "54890", + "codeCommune": "54593", + "libelleAcheminement": "WAVILLE", + "nomCommune": "WAVILLE" }, { - "codePostal": "48210", - "codeCommune": "48146", - "libelleAcheminement": "GORGES DU TARN CAUSSES", - "nomCommune": "GORGES DU TARN CAUSSES" + "codePostal": "41370", + "codeCommune": "41105", + "libelleAcheminement": "JOSNES", + "nomCommune": "JOSNES" }, { - "codePostal": "68660", - "codeCommune": "68185", - "libelleAcheminement": "LIEPVRE", - "nomCommune": "LIEPVRE" + "codePostal": "43300", + "codeCommune": "43202", + "libelleAcheminement": "ST JULIEN DES CHAZES", + "nomCommune": "ST JULIEN DES CHAZES" }, { - "codePostal": "18220", - "codeCommune": "18235", - "libelleAcheminement": "STE SOLANGE", - "nomCommune": "STE SOLANGE" + "codePostal": "55110", + "codeCommune": "55165", + "libelleAcheminement": "DOULCON", + "nomCommune": "DOULCON" }, { - "codePostal": "33320", - "codeCommune": "33519", - "libelleAcheminement": "LE TAILLAN MEDOC", - "nomCommune": "LE TAILLAN MEDOC" + "codePostal": "54490", + "codeCommune": "54598", + "libelleAcheminement": "XIVRY CIRCOURT", + "nomCommune": "XIVRY CIRCOURT" }, { - "codePostal": "48210", - "codeCommune": "48146", - "libelleAcheminement": "GORGES DU TARN CAUSSES", - "nomCommune": "GORGES DU TARN CAUSSES" + "codePostal": "41600", + "codeCommune": "41106", + "libelleAcheminement": "LAMOTTE BEUVRON", + "nomCommune": "LAMOTTE BEUVRON" }, { - "codePostal": "68480", - "codeCommune": "68190", - "libelleAcheminement": "LUCELLE", - "nomCommune": "LUCELLE" + "codePostal": "43200", + "codeCommune": "43203", + "libelleAcheminement": "ST JULIEN DU PINET", + "nomCommune": "ST JULIEN DU PINET" }, { - "codePostal": "18360", - "codeCommune": "18238", - "libelleAcheminement": "ST VITTE", - "nomCommune": "ST VITTE" + "codePostal": "55230", + "codeCommune": "55168", + "libelleAcheminement": "DUZEY", + "nomCommune": "DUZEY" }, { - "codePostal": "33580", - "codeCommune": "33520", - "libelleAcheminement": "TAILLECAVAT", - "nomCommune": "TAILLECAVAT" + "codePostal": "55320", + "codeCommune": "55009", + "libelleAcheminement": "ANCEMONT", + "nomCommune": "ANCEMONT" }, { - "codePostal": "48300", - "codeCommune": "48150", - "libelleAcheminement": "ST FLOUR DE MERCOIRE", - "nomCommune": "ST FLOUR DE MERCOIRE" + "codePostal": "41160", + "codeCommune": "41115", + "libelleAcheminement": "LIGNIERES", + "nomCommune": "LIGNIERES" }, { - "codePostal": "68210", - "codeCommune": "68200", - "libelleAcheminement": "MANSPACH", - "nomCommune": "MANSPACH" + "codePostal": "43220", + "codeCommune": "43204", + "libelleAcheminement": "ST JULIEN MOLHESABATE", + "nomCommune": "ST JULIEN MOLHESABATE" }, { - "codePostal": "18140", - "codeCommune": "18240", - "libelleAcheminement": "SANCERGUES", - "nomCommune": "SANCERGUES" + "codePostal": "55150", + "codeCommune": "55170", + "libelleAcheminement": "ECUREY EN VERDUNOIS", + "nomCommune": "ECUREY EN VERDUNOIS" }, { - "codePostal": "33210", - "codeCommune": "33533", - "libelleAcheminement": "TOULENNE", - "nomCommune": "TOULENNE" + "codePostal": "55230", + "codeCommune": "55013", + "libelleAcheminement": "ARRANCY SUR CRUSNES", + "nomCommune": "ARRANCY SUR CRUSNES" }, { - "codePostal": "48340", - "codeCommune": "48156", - "libelleAcheminement": "ST GERMAIN DU TEIL", - "nomCommune": "ST GERMAIN DU TEIL" + "codePostal": "41100", + "codeCommune": "41116", + "libelleAcheminement": "LISLE", + "nomCommune": "LISLE" }, { - "codePostal": "68290", - "codeCommune": "68201", - "libelleAcheminement": "MASEVAUX NIEDERBRUCK", - "nomCommune": "MASEVAUX NIEDERBRUCK" + "codePostal": "43100", + "codeCommune": "43206", + "libelleAcheminement": "ST JUST PRES BRIOUDE", + "nomCommune": "ST JUST PRES BRIOUDE" }, { - "codePostal": "18300", - "codeCommune": "18249", - "libelleAcheminement": "SENS BEAUJEU", - "nomCommune": "SENS BEAUJEU" + "codePostal": "55400", + "codeCommune": "55171", + "libelleAcheminement": "EIX", + "nomCommune": "EIX" }, { - "codePostal": "33180", - "codeCommune": "33545", - "libelleAcheminement": "VERTHEUIL", - "nomCommune": "VERTHEUIL" + "codePostal": "55120", + "codeCommune": "55014", + "libelleAcheminement": "AUBREVILLE", + "nomCommune": "AUBREVILLE" }, { - "codePostal": "48140", - "codeCommune": "48169", - "libelleAcheminement": "ST LEGER DU MALZIEU", - "nomCommune": "ST LEGER DU MALZIEU" + "codePostal": "41200", + "codeCommune": "41118", + "libelleAcheminement": "LOREUX", + "nomCommune": "LOREUX" }, { - "codePostal": "68690", - "codeCommune": "68217", - "libelleAcheminement": "MOOSCH", - "nomCommune": "MOOSCH" + "codePostal": "43230", + "codeCommune": "43208", + "libelleAcheminement": "STE MARGUERITE", + "nomCommune": "STE MARGUERITE" }, { - "codePostal": "18220", - "codeCommune": "18253", - "libelleAcheminement": "SOULANGIS", - "nomCommune": "SOULANGIS" + "codePostal": "55500", + "codeCommune": "55179", + "libelleAcheminement": "ERNEVILLE AUX BOIS", + "nomCommune": "ERNEVILLE AUX BOIS" }, { - "codePostal": "34210", - "codeCommune": "34007", - "libelleAcheminement": "AIGUES VIVES", - "nomCommune": "AIGUES VIVES" + "codePostal": "55170", + "codeCommune": "55015", + "libelleAcheminement": "AULNOIS EN PERTHOIS", + "nomCommune": "AULNOIS EN PERTHOIS" }, { - "codePostal": "48110", - "codeCommune": "48171", - "libelleAcheminement": "ST MARTIN DE LANSUSCLE", - "nomCommune": "ST MARTIN DE LANSUSCLE" + "codePostal": "41370", + "codeCommune": "41119", + "libelleAcheminement": "LORGES", + "nomCommune": "LORGES" }, { - "codePostal": "68780", - "codeCommune": "68219", - "libelleAcheminement": "LE HAUT SOULTZBACH", - "nomCommune": "LE HAUT SOULTZBACH" + "codePostal": "43500", + "codeCommune": "43212", + "libelleAcheminement": "ST PAL DE CHALENCON", + "nomCommune": "ST PAL DE CHALENCON" }, { - "codePostal": "18570", - "codeCommune": "18255", - "libelleAcheminement": "LE SUBDRAY", - "nomCommune": "LE SUBDRAY" + "codePostal": "55500", + "codeCommune": "55179", + "libelleAcheminement": "ERNEVILLE AUX BOIS", + "nomCommune": "ERNEVILLE AUX BOIS" }, { - "codePostal": "34600", - "codeCommune": "34008", - "libelleAcheminement": "LES AIRES", - "nomCommune": "LES AIRES" + "codePostal": "55300", + "codeCommune": "55027", + "libelleAcheminement": "BANNONCOURT", + "nomCommune": "BANNONCOURT" }, { - "codePostal": "48160", - "codeCommune": "48173", - "libelleAcheminement": "ST MICHEL DE DEZE", - "nomCommune": "ST MICHEL DE DEZE" + "codePostal": "41370", + "codeCommune": "41123", + "libelleAcheminement": "MARCHENOIR", + "nomCommune": "MARCHENOIR" }, { - "codePostal": "68640", - "codeCommune": "68221", - "libelleAcheminement": "MUESPACH", - "nomCommune": "MUESPACH" + "codePostal": "43350", + "codeCommune": "43216", + "libelleAcheminement": "ST PAULIEN", + "nomCommune": "ST PAULIEN" }, { - "codePostal": "18240", - "codeCommune": "18257", - "libelleAcheminement": "SURY PRES LERE", - "nomCommune": "SURY PRES LERE" + "codePostal": "55200", + "codeCommune": "55184", + "libelleAcheminement": "EUVILLE", + "nomCommune": "EUVILLE" }, { - "codePostal": "34150", - "codeCommune": "34010", - "libelleAcheminement": "ANIANE", - "nomCommune": "ANIANE" + "codePostal": "55000", + "codeCommune": "55041", + "libelleAcheminement": "BEHONNE", + "nomCommune": "BEHONNE" }, { - "codePostal": "48150", - "codeCommune": "48176", - "libelleAcheminement": "ST PIERRE DES TRIPIERS", - "nomCommune": "ST PIERRE DES TRIPIERS" + "codePostal": "41210", + "codeCommune": "41125", + "libelleAcheminement": "MARCILLY EN GAULT", + "nomCommune": "MARCILLY EN GAULT" }, { - "codePostal": "68200", - "codeCommune": "68224", - "libelleAcheminement": "MULHOUSE", - "nomCommune": "MULHOUSE" + "codePostal": "43380", + "codeCommune": "43222", + "libelleAcheminement": "ST PRIVAT DU DRAGON", + "nomCommune": "ST PRIVAT DU DRAGON" }, { - "codePostal": "18260", - "codeCommune": "18264", - "libelleAcheminement": "THOU", - "nomCommune": "THOU" + "codePostal": "55200", + "codeCommune": "55196", + "libelleAcheminement": "FREMEREVILLE SOUS LES COTES", + "nomCommune": "FREMEREVILLE SOUS LES COTES" }, { - "codePostal": "34150", - "codeCommune": "34011", - "libelleAcheminement": "ARBORAS", - "nomCommune": "ARBORAS" + "codePostal": "55100", + "codeCommune": "55047", + "libelleAcheminement": "BETHELAINVILLE", + "nomCommune": "BETHELAINVILLE" }, { - "codePostal": "48200", - "codeCommune": "48177", - "libelleAcheminement": "ST PIERRE LE VIEUX", - "nomCommune": "ST PIERRE LE VIEUX" + "codePostal": "41500", + "codeCommune": "41136", + "libelleAcheminement": "MER", + "nomCommune": "MER" }, { - "codePostal": "68140", - "codeCommune": "68226", - "libelleAcheminement": "MUNSTER", - "nomCommune": "MUNSTER" + "codePostal": "43800", + "codeCommune": "43230", + "libelleAcheminement": "ST VINCENT", + "nomCommune": "ST VINCENT" }, { - "codePostal": "18260", - "codeCommune": "18269", - "libelleAcheminement": "VAILLY SUR SAULDRE", - "nomCommune": "VAILLY SUR SAULDRE" + "codePostal": "55120", + "codeCommune": "55202", + "libelleAcheminement": "FUTEAU", + "nomCommune": "FUTEAU" }, { - "codePostal": "34820", - "codeCommune": "34014", - "libelleAcheminement": "ASSAS", - "nomCommune": "ASSAS" + "codePostal": "55290", + "codeCommune": "55051", + "libelleAcheminement": "BIENCOURT SUR ORGE", + "nomCommune": "BIENCOURT SUR ORGE" }, { - "codePostal": "48140", - "codeCommune": "48179", - "libelleAcheminement": "ST PRIVAT DU FAU", - "nomCommune": "ST PRIVAT DU FAU" + "codePostal": "41200", + "codeCommune": "41140", + "libelleAcheminement": "MILLANCAY", + "nomCommune": "MILLANCAY" }, { - "codePostal": "68600", - "codeCommune": "68231", - "libelleAcheminement": "NEUF BRISACH", - "nomCommune": "NEUF BRISACH" + "codePostal": "43300", + "codeCommune": "43242", + "libelleAcheminement": "TAILHAC", + "nomCommune": "TAILHAC" }, { - "codePostal": "18100", - "codeCommune": "18279", - "libelleAcheminement": "VIERZON", - "nomCommune": "VIERZON" + "codePostal": "55110", + "codeCommune": "55208", + "libelleAcheminement": "GESNES EN ARGONNE", + "nomCommune": "GESNES EN ARGONNE" }, { - "codePostal": "34360", - "codeCommune": "34015", - "libelleAcheminement": "ASSIGNAN", - "nomCommune": "ASSIGNAN" + "codePostal": "55500", + "codeCommune": "55061", + "libelleAcheminement": "LE BOUCHON SUR SAULX", + "nomCommune": "LE BOUCHON SUR SAULX" }, { - "codePostal": "48100", - "codeCommune": "48187", - "libelleAcheminement": "LES SALCES", - "nomCommune": "LES SALCES" + "codePostal": "41190", + "codeCommune": "41142", + "libelleAcheminement": "VALENCISSE", + "nomCommune": "VALENCISSE" }, { - "codePostal": "68127", - "codeCommune": "68234", - "libelleAcheminement": "NIEDERENTZEN", - "nomCommune": "NIEDERENTZEN" + "codePostal": "43210", + "codeCommune": "43249", + "libelleAcheminement": "VALPRIVAS", + "nomCommune": "VALPRIVAS" }, { - "codePostal": "18130", - "codeCommune": "18289", - "libelleAcheminement": "VORNAY", - "nomCommune": "VORNAY" + "codePostal": "55500", + "codeCommune": "55214", + "libelleAcheminement": "GIVRAUVAL", + "nomCommune": "GIVRAUVAL" }, { - "codePostal": "34670", - "codeCommune": "34022", - "libelleAcheminement": "BAILLARGUES", - "nomCommune": "BAILLARGUES" + "codePostal": "55800", + "codeCommune": "55069", + "libelleAcheminement": "BRABANT LE ROI", + "nomCommune": "BRABANT LE ROI" }, { - "codePostal": "48220", - "codeCommune": "48194", - "libelleAcheminement": "VIALAS", - "nomCommune": "VIALAS" + "codePostal": "41150", + "codeCommune": "41144", + "libelleAcheminement": "MONTEAUX", + "nomCommune": "MONTEAUX" }, { - "codePostal": "68960", - "codeCommune": "68240", - "libelleAcheminement": "ILLTAL", - "nomCommune": "ILLTAL" + "codePostal": "43320", + "codeCommune": "43254", + "libelleAcheminement": "VAZEILLES LIMANDRE", + "nomCommune": "VAZEILLES LIMANDRE" }, { - "codePostal": "19220", - "codeCommune": "19014", - "libelleAcheminement": "AURIAC", - "nomCommune": "AURIAC" + "codePostal": "55600", + "codeCommune": "55226", + "libelleAcheminement": "HAN LES JUVIGNY", + "nomCommune": "HAN LES JUVIGNY" }, { - "codePostal": "34150", - "codeCommune": "34035", - "libelleAcheminement": "LA BOISSIERE", - "nomCommune": "LA BOISSIERE" + "codePostal": "55170", + "codeCommune": "55075", + "libelleAcheminement": "BRAUVILLIERS", + "nomCommune": "BRAUVILLIERS" }, { - "codePostal": "49100", - "codeCommune": "49007", - "libelleAcheminement": "ANGERS", - "nomCommune": "ANGERS" + "codePostal": "41120", + "codeCommune": "41145", + "libelleAcheminement": "MONTHOU SUR BIEVRE", + "nomCommune": "MONTHOU SUR BIEVRE" }, { - "codePostal": "68480", - "codeCommune": "68248", - "libelleAcheminement": "OLTINGUE", - "nomCommune": "OLTINGUE" + "codePostal": "43380", + "codeCommune": "43264", + "libelleAcheminement": "VILLENEUVE D ALLIER", + "nomCommune": "VILLENEUVE D ALLIER" }, { - "codePostal": "19310", - "codeCommune": "19015", - "libelleAcheminement": "AYEN", - "nomCommune": "AYEN" + "codePostal": "55100", + "codeCommune": "55236", + "libelleAcheminement": "HAUDAINVILLE", + "nomCommune": "HAUDAINVILLE" }, { - "codePostal": "34650", - "codeCommune": "34040", - "libelleAcheminement": "BRENAS", - "nomCommune": "BRENAS" + "codePostal": "55110", + "codeCommune": "55078", + "libelleAcheminement": "BRIEULLES SUR MEUSE", + "nomCommune": "BRIEULLES SUR MEUSE" }, { - "codePostal": "49420", - "codeCommune": "49010", - "libelleAcheminement": "ARMAILLE", - "nomCommune": "ARMAILLE" + "codePostal": "41400", + "codeCommune": "41151", + "libelleAcheminement": "MONTRICHARD VAL DE CHER", + "nomCommune": "MONTRICHARD VAL DE CHER" }, { - "codePostal": "68490", - "codeCommune": "68253", - "libelleAcheminement": "OTTMARSHEIM", - "nomCommune": "OTTMARSHEIM" + "codePostal": "43200", + "codeCommune": "43268", + "libelleAcheminement": "YSSINGEAUX", + "nomCommune": "YSSINGEAUX" }, { - "codePostal": "19290", - "codeCommune": "19021", - "libelleAcheminement": "BELLECHASSAGNE", - "nomCommune": "BELLECHASSAGNE" + "codePostal": "55100", + "codeCommune": "55239", + "libelleAcheminement": "HAUMONT PRES SAMOGNEUX", + "nomCommune": "HAUMONT PRES SAMOGNEUX" }, { - "codePostal": "34480", - "codeCommune": "34044", - "libelleAcheminement": "CABREROLLES", - "nomCommune": "CABREROLLES" + "codePostal": "55250", + "codeCommune": "55081", + "libelleAcheminement": "BRIZEAUX", + "nomCommune": "BRIZEAUX" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "41800", + "codeCommune": "41153", + "libelleAcheminement": "MONTROUVEAU", + "nomCommune": "MONTROUVEAU" }, { - "codePostal": "68120", - "codeCommune": "68256", - "libelleAcheminement": "PFASTATT", - "nomCommune": "PFASTATT" + "codePostal": "44140", + "codeCommune": "44002", + "libelleAcheminement": "AIGREFEUILLE SUR MAINE", + "nomCommune": "AIGREFEUILLE SUR MAINE" }, { - "codePostal": "19500", - "codeCommune": "19029", - "libelleAcheminement": "BRANCEILLES", - "nomCommune": "BRANCEILLES" + "codePostal": "55220", + "codeCommune": "55241", + "libelleAcheminement": "HEIPPES", + "nomCommune": "HEIPPES" }, { - "codePostal": "34800", - "codeCommune": "34045", - "libelleAcheminement": "CABRIERES", - "nomCommune": "CABRIERES" + "codePostal": "55700", + "codeCommune": "55083", + "libelleAcheminement": "BROUENNES", + "nomCommune": "BROUENNES" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "41500", + "codeCommune": "41155", + "libelleAcheminement": "MUIDES SUR LOIRE", + "nomCommune": "MUIDES SUR LOIRE" }, { - "codePostal": "68840", - "codeCommune": "68258", - "libelleAcheminement": "PULVERSHEIM", - "nomCommune": "PULVERSHEIM" + "codePostal": "44680", + "codeCommune": "44005", + "libelleAcheminement": "CHAUMES EN RETZ", + "nomCommune": "CHAUMES EN RETZ" }, { - "codePostal": "19350", - "codeCommune": "19035", - "libelleAcheminement": "CHABRIGNAC", - "nomCommune": "CHABRIGNAC" + "codePostal": "55210", + "codeCommune": "55245", + "libelleAcheminement": "HEUDICOURT SOUS LES COTES", + "nomCommune": "HEUDICOURT SOUS LES COTES" }, { - "codePostal": "34270", - "codeCommune": "34066", - "libelleAcheminement": "CAZEVIEILLE", - "nomCommune": "CAZEVIEILLE" + "codePostal": "55400", + "codeCommune": "55094", + "libelleAcheminement": "BUZY DARMONT", + "nomCommune": "BUZY DARMONT" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "41250", + "codeCommune": "41160", + "libelleAcheminement": "NEUVY", + "nomCommune": "NEUVY" }, { - "codePostal": "68190", - "codeCommune": "68260", - "libelleAcheminement": "RAEDERSHEIM", - "nomCommune": "RAEDERSHEIM" + "codePostal": "44410", + "codeCommune": "44006", + "libelleAcheminement": "ASSERAC", + "nomCommune": "ASSERAC" }, { - "codePostal": "19370", - "codeCommune": "19036", - "libelleAcheminement": "CHAMBERET", - "nomCommune": "CHAMBERET" + "codePostal": "55600", + "codeCommune": "55252", + "libelleAcheminement": "IRE LE SEC", + "nomCommune": "IRE LE SEC" }, { - "codePostal": "34360", - "codeCommune": "34070", - "libelleAcheminement": "CEBAZAN", - "nomCommune": "CEBAZAN" + "codePostal": "55000", + "codeCommune": "55101", + "libelleAcheminement": "CHARDOGNE", + "nomCommune": "CHARDOGNE" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "41150", + "codeCommune": "41167", + "libelleAcheminement": "VEUZAIN SUR LOIRE", + "nomCommune": "VEUZAIN SUR LOIRE" }, { - "codePostal": "68400", - "codeCommune": "68271", - "libelleAcheminement": "RIEDISHEIM", - "nomCommune": "RIEDISHEIM" + "codePostal": "44580", + "codeCommune": "44021", + "libelleAcheminement": "VILLENEUVE EN RETZ", + "nomCommune": "VILLENEUVE EN RETZ" }, { - "codePostal": "19320", - "codeCommune": "19039", - "libelleAcheminement": "CHAMPAGNAC LA NOAILLE", - "nomCommune": "CHAMPAGNAC LA NOAILLE" + "codePostal": "55220", + "codeCommune": "55254", + "libelleAcheminement": "LES TROIS DOMAINES", + "nomCommune": "LES TROIS DOMAINES" }, { - "codePostal": "34260", - "codeCommune": "34071", - "libelleAcheminement": "CEILHES ET ROCOZELS", - "nomCommune": "CEILHES ET ROCOZELS" + "codePostal": "55130", + "codeCommune": "55104", + "libelleAcheminement": "CHASSEY BEAUPRE", + "nomCommune": "CHASSEY BEAUPRE" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "41300", + "codeCommune": "41168", + "libelleAcheminement": "ORCAY", + "nomCommune": "ORCAY" }, { - "codePostal": "68500", - "codeCommune": "68274", - "libelleAcheminement": "RIMBACH PRES GUEBWILLER", - "nomCommune": "RIMBACH PRES GUEBWILLER" + "codePostal": "44830", + "codeCommune": "44024", + "libelleAcheminement": "BRAINS", + "nomCommune": "BRAINS" }, { - "codePostal": "19150", - "codeCommune": "19041", - "libelleAcheminement": "CHANAC LES MINES", - "nomCommune": "CHANAC LES MINES" + "codePostal": "55200", + "codeCommune": "55258", + "libelleAcheminement": "GEVILLE", + "nomCommune": "GEVILLE" }, { - "codePostal": "34700", - "codeCommune": "34072", - "libelleAcheminement": "CELLES", - "nomCommune": "CELLES" + "codePostal": "55400", + "codeCommune": "55105", + "libelleAcheminement": "CHATILLON SOUS LES COTES", + "nomCommune": "CHATILLON SOUS LES COTES" + }, + { + "codePostal": "41290", + "codeCommune": "41171", + "libelleAcheminement": "OUCQUES LA NOUVELLE", + "nomCommune": "OUCQUES LA NOUVELLE" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "44670", + "codeCommune": "44031", + "libelleAcheminement": "LA CHAPELLE GLAIN", + "nomCommune": "LA CHAPELLE GLAIN" }, { - "codePostal": "68740", - "codeCommune": "68281", - "libelleAcheminement": "ROGGENHOUSE", - "nomCommune": "ROGGENHOUSE" + "codePostal": "55300", + "codeCommune": "55264", + "libelleAcheminement": "KOEUR LA PETITE", + "nomCommune": "KOEUR LA PETITE" }, { - "codePostal": "19360", - "codeCommune": "19043", - "libelleAcheminement": "LA CHAPELLE AUX BROCS", - "nomCommune": "LA CHAPELLE AUX BROCS" + "codePostal": "55600", + "codeCommune": "55109", + "libelleAcheminement": "CHAUVENCY LE CHATEAU", + "nomCommune": "CHAUVENCY LE CHATEAU" }, { - "codePostal": "34210", - "codeCommune": "34075", - "libelleAcheminement": "CESSERAS", - "nomCommune": "CESSERAS" + "codePostal": "41100", + "codeCommune": "41174", + "libelleAcheminement": "PERIGNY", + "nomCommune": "PERIGNY" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "44160", + "codeCommune": "44050", + "libelleAcheminement": "CROSSAC", + "nomCommune": "CROSSAC" }, { - "codePostal": "68480", - "codeCommune": "68284", - "libelleAcheminement": "ROPPENTZWILLER", - "nomCommune": "ROPPENTZWILLER" + "codePostal": "55300", + "codeCommune": "55268", + "libelleAcheminement": "LACROIX SUR MEUSE", + "nomCommune": "LACROIX SUR MEUSE" }, { - "codePostal": "19430", - "codeCommune": "19045", - "libelleAcheminement": "LA CHAPELLE ST GERAUD", - "nomCommune": "LA CHAPELLE ST GERAUD" + "codePostal": "55600", + "codeCommune": "55110", + "libelleAcheminement": "CHAUVENCY ST HUBERT", + "nomCommune": "CHAUVENCY ST HUBERT" }, { - "codePostal": "34220", - "codeCommune": "34086", - "libelleAcheminement": "COURNIOU", - "nomCommune": "COURNIOU" + "codePostal": "41290", + "codeCommune": "41188", + "libelleAcheminement": "RHODON", + "nomCommune": "RHODON" }, { - "codePostal": "49070", - "codeCommune": "49020", - "libelleAcheminement": "BEAUCOUZE", - "nomCommune": "BEAUCOUZE" + "codePostal": "44110", + "codeCommune": "44054", + "libelleAcheminement": "ERBRAY", + "nomCommune": "ERBRAY" }, { - "codePostal": "68740", - "codeCommune": "68290", - "libelleAcheminement": "RUSTENHART", - "nomCommune": "RUSTENHART" + "codePostal": "55800", + "codeCommune": "55271", + "libelleAcheminement": "LAHEYCOURT", + "nomCommune": "LAHEYCOURT" }, { - "codePostal": "19390", - "codeCommune": "19051", - "libelleAcheminement": "CHAUMEIL", - "nomCommune": "CHAUMEIL" + "codePostal": "55200", + "codeCommune": "55114", + "libelleAcheminement": "CHONVILLE MALAUMONT", + "nomCommune": "CHONVILLE MALAUMONT" }, { - "codePostal": "34660", - "codeCommune": "34088", - "libelleAcheminement": "COURNONTERRAL", - "nomCommune": "COURNONTERRAL" + "codePostal": "41270", + "codeCommune": "41193", + "libelleAcheminement": "ROMILLY", + "nomCommune": "ROMILLY" }, { - "codePostal": "49250", - "codeCommune": "49021", - "libelleAcheminement": "BEAUFORT EN ANJOU", - "nomCommune": "BEAUFORT EN ANJOU" + "codePostal": "44460", + "codeCommune": "44057", + "libelleAcheminement": "FEGREAC", + "nomCommune": "FEGREAC" }, { - "codePostal": "68127", - "codeCommune": "68295", - "libelleAcheminement": "STE CROIX EN PLAINE", - "nomCommune": "STE CROIX EN PLAINE" + "codePostal": "55300", + "codeCommune": "55274", + "libelleAcheminement": "LAMORVILLE", + "nomCommune": "LAMORVILLE" }, { - "codePostal": "19320", - "codeCommune": "19056", - "libelleAcheminement": "CLERGOUX", - "nomCommune": "CLERGOUX" + "codePostal": "55120", + "codeCommune": "55117", + "libelleAcheminement": "CLERMONT EN ARGONNE", + "nomCommune": "CLERMONT EN ARGONNE" }, { - "codePostal": "34920", - "codeCommune": "34090", - "libelleAcheminement": "LE CRES", - "nomCommune": "LE CRES" + "codePostal": "41200", + "codeCommune": "41194", + "libelleAcheminement": "ROMORANTIN LANTHENAY", + "nomCommune": "ROMORANTIN LANTHENAY" }, { - "codePostal": "49110", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "44190", + "codeCommune": "44063", + "libelleAcheminement": "GETIGNE", + "nomCommune": "GETIGNE" }, { - "codePostal": "68210", - "codeCommune": "68299", - "libelleAcheminement": "ST ULRICH", - "nomCommune": "ST ULRICH" + "codePostal": "55700", + "codeCommune": "55279", + "libelleAcheminement": "LANEUVILLE SUR MEUSE", + "nomCommune": "LANEUVILLE SUR MEUSE" }, { - "codePostal": "19140", - "codeCommune": "19060", - "libelleAcheminement": "CONDAT SUR GANAVEIX", - "nomCommune": "CONDAT SUR GANAVEIX" + "codePostal": "55110", + "codeCommune": "55118", + "libelleAcheminement": "CLERY LE GRAND", + "nomCommune": "CLERY LE GRAND" }, { - "codePostal": "34210", - "codeCommune": "34097", - "libelleAcheminement": "FELINES MINERVOIS", - "nomCommune": "FELINES MINERVOIS" + "codePostal": "41100", + "codeCommune": "41209", + "libelleAcheminement": "ST FIRMIN DES PRES", + "nomCommune": "ST FIRMIN DES PRES" }, { - "codePostal": "49510", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "44520", + "codeCommune": "44065", + "libelleAcheminement": "GRAND AUVERNE", + "nomCommune": "GRAND AUVERNE" }, { - "codePostal": "68440", - "codeCommune": "68301", - "libelleAcheminement": "SCHLIERBACH", - "nomCommune": "SCHLIERBACH" + "codePostal": "55400", + "codeCommune": "55280", + "libelleAcheminement": "LANHERES", + "nomCommune": "LANHERES" }, { - "codePostal": "19270", - "codeCommune": "19072", - "libelleAcheminement": "DONZENAC", - "nomCommune": "DONZENAC" + "codePostal": "55000", + "codeCommune": "55123", + "libelleAcheminement": "LES HAUTS DE CHEE", + "nomCommune": "LES HAUTS DE CHEE" }, { - "codePostal": "34270", - "codeCommune": "34102", - "libelleAcheminement": "FONTANES", - "nomCommune": "FONTANES" + "codePostal": "41320", + "codeCommune": "41222", + "libelleAcheminement": "ST LOUP", + "nomCommune": "ST LOUP" }, { - "codePostal": "49510", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "44530", + "codeCommune": "44068", + "libelleAcheminement": "GUENROUET", + "nomCommune": "GUENROUET" }, { - "codePostal": "68780", - "codeCommune": "68313", - "libelleAcheminement": "SOPPE LE BAS", - "nomCommune": "SOPPE LE BAS" + "codePostal": "55120", + "codeCommune": "55285", + "libelleAcheminement": "LAVOYE", + "nomCommune": "LAVOYE" }, { - "codePostal": "19600", - "codeCommune": "19077", - "libelleAcheminement": "ESTIVALS", - "nomCommune": "ESTIVALS" + "codePostal": "55260", + "codeCommune": "55128", + "libelleAcheminement": "COURCELLES SUR AIRE", + "nomCommune": "COURCELLES SUR AIRE" }, { - "codePostal": "34320", - "codeCommune": "34103", - "libelleAcheminement": "FONTES", - "nomCommune": "FONTES" + "codePostal": "41800", + "codeCommune": "41225", + "libelleAcheminement": "ST MARTIN DES BOIS", + "nomCommune": "ST MARTIN DES BOIS" }, { - "codePostal": "49370", - "codeCommune": "49026", - "libelleAcheminement": "BECON LES GRANITS", - "nomCommune": "BECON LES GRANITS" + "codePostal": "44350", + "codeCommune": "44069", + "libelleAcheminement": "GUERANDE", + "nomCommune": "GUERANDE" }, { - "codePostal": "68720", - "codeCommune": "68320", - "libelleAcheminement": "SPECHBACH", - "nomCommune": "SPECHBACH" + "codePostal": "55260", + "codeCommune": "55289", + "libelleAcheminement": "LEVONCOURT", + "nomCommune": "LEVONCOURT" }, { - "codePostal": "19140", - "codeCommune": "19079", - "libelleAcheminement": "EYBURIE", - "nomCommune": "EYBURIE" + "codePostal": "55270", + "codeCommune": "55137", + "libelleAcheminement": "CUISY", + "nomCommune": "CUISY" }, { - "codePostal": "34320", - "codeCommune": "34104", - "libelleAcheminement": "FOS", - "nomCommune": "FOS" + "codePostal": "41100", + "codeCommune": "41226", + "libelleAcheminement": "ST OUEN", + "nomCommune": "ST OUEN" }, { - "codePostal": "49320", - "codeCommune": "49029", - "libelleAcheminement": "BLAISON ST SULPICE", - "nomCommune": "BLAISON ST SULPICE" + "codePostal": "44350", + "codeCommune": "44069", + "libelleAcheminement": "GUERANDE", + "nomCommune": "GUERANDE" }, { - "codePostal": "68440", - "codeCommune": "68324", - "libelleAcheminement": "STEINBRUNN LE HAUT", - "nomCommune": "STEINBRUNN LE HAUT" + "codePostal": "55500", + "codeCommune": "55291", + "libelleAcheminement": "LIGNY EN BARROIS", + "nomCommune": "LIGNY EN BARROIS" }, { - "codePostal": "19330", - "codeCommune": "19082", - "libelleAcheminement": "FAVARS", - "nomCommune": "FAVARS" + "codePostal": "55150", + "codeCommune": "55149", + "libelleAcheminement": "DELUT", + "nomCommune": "DELUT" }, { - "codePostal": "34320", - "codeCommune": "34109", - "libelleAcheminement": "GABIAN", - "nomCommune": "GABIAN" + "codePostal": "41800", + "codeCommune": "41228", + "libelleAcheminement": "ST RIMAY", + "nomCommune": "ST RIMAY" }, { - "codePostal": "49390", - "codeCommune": "49045", - "libelleAcheminement": "LA BREILLE LES PINS", - "nomCommune": "LA BREILLE LES PINS" + "codePostal": "44610", + "codeCommune": "44074", + "libelleAcheminement": "INDRE", + "nomCommune": "INDRE" }, { - "codePostal": "25620", - "codeCommune": "25628", - "libelleAcheminement": "VILLERS SOUS MONTROND", - "nomCommune": "VILLERS SOUS MONTROND" + "codePostal": "55000", + "codeCommune": "55296", + "libelleAcheminement": "L ISLE EN RIGAULT", + "nomCommune": "L ISLE EN RIGAULT" }, { - "codePostal": "19320", - "codeCommune": "19097", - "libelleAcheminement": "LAFAGE SUR SOMBRE", - "nomCommune": "LAFAGE SUR SOMBRE" + "codePostal": "55320", + "codeCommune": "55154", + "libelleAcheminement": "DIEUE SUR MEUSE", + "nomCommune": "DIEUE SUR MEUSE" }, { - "codePostal": "34160", - "codeCommune": "34112", - "libelleAcheminement": "GARRIGUES", - "nomCommune": "GARRIGUES" + "codePostal": "41140", + "codeCommune": "41229", + "libelleAcheminement": "ST ROMAIN SUR CHER", + "nomCommune": "ST ROMAIN SUR CHER" }, { - "codePostal": "49250", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "44440", + "codeCommune": "44077", + "libelleAcheminement": "JOUE SUR ERDRE", + "nomCommune": "JOUE SUR ERDRE" }, { - "codePostal": "26150", - "codeCommune": "26001", - "libelleAcheminement": "SOLAURE EN DIOIS", - "nomCommune": "SOLAURE EN DIOIS" + "codePostal": "55150", + "codeCommune": "55297", + "libelleAcheminement": "LISSEY", + "nomCommune": "LISSEY" }, { - "codePostal": "19210", - "codeCommune": "19121", - "libelleAcheminement": "LUBERSAC", - "nomCommune": "LUBERSAC" + "codePostal": "55240", + "codeCommune": "55162", + "libelleAcheminement": "DOMREMY LA CANNE", + "nomCommune": "DOMREMY LA CANNE" }, { - "codePostal": "34790", - "codeCommune": "34116", - "libelleAcheminement": "GRABELS", - "nomCommune": "GRABELS" + "codePostal": "41210", + "codeCommune": "41231", + "libelleAcheminement": "ST VIATRE", + "nomCommune": "ST VIATRE" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "44850", + "codeCommune": "44082", + "libelleAcheminement": "LIGNE", + "nomCommune": "LIGNE" }, { - "codePostal": "26150", - "codeCommune": "26001", - "libelleAcheminement": "SOLAURE EN DIOIS", - "nomCommune": "SOLAURE EN DIOIS" + "codePostal": "55300", + "codeCommune": "55303", + "libelleAcheminement": "LOUPMONT", + "nomCommune": "LOUPMONT" }, { - "codePostal": "19190", - "codeCommune": "19132", - "libelleAcheminement": "MENOIRE", - "nomCommune": "MENOIRE" + "codePostal": "55100", + "codeCommune": "55166", + "libelleAcheminement": "DUGNY SUR MEUSE", + "nomCommune": "DUGNY SUR MEUSE" }, { - "codePostal": "34820", - "codeCommune": "34118", - "libelleAcheminement": "GUZARGUES", - "nomCommune": "GUZARGUES" + "codePostal": "41300", + "codeCommune": "41232", + "libelleAcheminement": "SALBRIS", + "nomCommune": "SALBRIS" }, { - "codePostal": "49460", - "codeCommune": "49055", - "libelleAcheminement": "CANTENAY EPINARD", - "nomCommune": "CANTENAY EPINARD" + "codePostal": "44310", + "codeCommune": "44083", + "libelleAcheminement": "LA LIMOUZINIERE", + "nomCommune": "LA LIMOUZINIERE" }, { - "codePostal": "26400", - "codeCommune": "26006", - "libelleAcheminement": "ALLEX", - "nomCommune": "ALLEX" + "codePostal": "55160", + "codeCommune": "55311", + "libelleAcheminement": "MAIZERAY", + "nomCommune": "MAIZERAY" }, { - "codePostal": "19430", - "codeCommune": "19133", - "libelleAcheminement": "MERCOEUR", - "nomCommune": "MERCOEUR" + "codePostal": "55140", + "codeCommune": "55173", + "libelleAcheminement": "EPIEZ SUR MEUSE", + "nomCommune": "EPIEZ SUR MEUSE" }, { - "codePostal": "34150", - "codeCommune": "34125", - "libelleAcheminement": "LAGAMAS", - "nomCommune": "LAGAMAS" + "codePostal": "41190", + "codeCommune": "41234", + "libelleAcheminement": "SANTENAY", + "nomCommune": "SANTENAY" }, { - "codePostal": "49420", - "codeCommune": "49056", - "libelleAcheminement": "CARBAY", - "nomCommune": "CARBAY" + "codePostal": "44110", + "codeCommune": "44085", + "libelleAcheminement": "LOUISFERT", + "nomCommune": "LOUISFERT" }, { - "codePostal": "26110", - "codeCommune": "26013", - "libelleAcheminement": "ARPAVON", - "nomCommune": "ARPAVON" + "codePostal": "55300", + "codeCommune": "55312", + "libelleAcheminement": "MAIZEY", + "nomCommune": "MAIZEY" }, { - "codePostal": "19340", - "codeCommune": "19134", - "libelleAcheminement": "MERLINES", - "nomCommune": "MERLINES" + "codePostal": "55270", + "codeCommune": "55174", + "libelleAcheminement": "EPINONVILLE", + "nomCommune": "EPINONVILLE" }, { - "codePostal": "34880", - "codeCommune": "34134", - "libelleAcheminement": "LAVERUNE", - "nomCommune": "LAVERUNE" + "codePostal": "41170", + "codeCommune": "41235", + "libelleAcheminement": "SARGE SUR BRAYE", + "nomCommune": "SARGE SUR BRAYE" }, { - "codePostal": "49260", - "codeCommune": "49060", - "libelleAcheminement": "BELLEVIGNE LES CHATEAUX", - "nomCommune": "BELLEVIGNE LES CHATEAUX" + "codePostal": "44590", + "codeCommune": "44086", + "libelleAcheminement": "LUSANGER", + "nomCommune": "LUSANGER" }, { - "codePostal": "26260", - "codeCommune": "26014", - "libelleAcheminement": "ARTHEMONAY", - "nomCommune": "ARTHEMONAY" + "codePostal": "55100", + "codeCommune": "55321", + "libelleAcheminement": "MARRE", + "nomCommune": "MARRE" }, { - "codePostal": "19290", - "codeCommune": "19139", - "libelleAcheminement": "MILLEVACHES", - "nomCommune": "MILLEVACHES" + "codePostal": "55260", + "codeCommune": "55177", + "libelleAcheminement": "ERIZE LA PETITE", + "nomCommune": "ERIZE LA PETITE" }, { - "codePostal": "34650", - "codeCommune": "34144", - "libelleAcheminement": "LUNAS", - "nomCommune": "LUNAS" + "codePostal": "41700", + "codeCommune": "41237", + "libelleAcheminement": "SASSAY", + "nomCommune": "SASSAY" }, { - "codePostal": "49260", - "codeCommune": "49060", - "libelleAcheminement": "BELLEVIGNE LES CHATEAUX", - "nomCommune": "BELLEVIGNE LES CHATEAUX" + "codePostal": "44270", + "codeCommune": "44087", + "libelleAcheminement": "MACHECOUL ST MEME", + "nomCommune": "MACHECOUL ST MEME" }, { - "codePostal": "26340", - "codeCommune": "26017", - "libelleAcheminement": "AUCELON", - "nomCommune": "AUCELON" + "codePostal": "55500", + "codeCommune": "55326", + "libelleAcheminement": "MAULAN", + "nomCommune": "MAULAN" }, { - "codePostal": "19300", - "codeCommune": "19143", - "libelleAcheminement": "MONTAIGNAC SUR DOUSTRE", - "nomCommune": "MONTAIGNAC SUR DOUSTRE" + "codePostal": "55000", + "codeCommune": "55178", + "libelleAcheminement": "ERIZE ST DIZIER", + "nomCommune": "ERIZE ST DIZIER" }, { - "codePostal": "34480", - "codeCommune": "34147", - "libelleAcheminement": "MAGALAS", - "nomCommune": "MAGALAS" + "codePostal": "41360", + "codeCommune": "41238", + "libelleAcheminement": "SAVIGNY SUR BRAYE", + "nomCommune": "SAVIGNY SUR BRAYE" }, { - "codePostal": "49440", - "codeCommune": "49061", - "libelleAcheminement": "CHALLAIN LA POTHERIE", - "nomCommune": "CHALLAIN LA POTHERIE" + "codePostal": "44170", + "codeCommune": "44091", + "libelleAcheminement": "MARSAC SUR DON", + "nomCommune": "MARSAC SUR DON" }, { - "codePostal": "26570", - "codeCommune": "26018", - "libelleAcheminement": "AULAN", - "nomCommune": "AULAN" + "codePostal": "55300", + "codeCommune": "55329", + "libelleAcheminement": "MECRIN", + "nomCommune": "MECRIN" }, { - "codePostal": "19300", - "codeCommune": "19143", - "libelleAcheminement": "MONTAIGNAC SUR DOUSTRE", - "nomCommune": "MONTAIGNAC SUR DOUSTRE" + "codePostal": "55500", + "codeCommune": "55179", + "libelleAcheminement": "ERNEVILLE AUX BOIS", + "nomCommune": "ERNEVILLE AUX BOIS" }, { - "codePostal": "34340", - "codeCommune": "34150", - "libelleAcheminement": "MARSEILLAN", - "nomCommune": "MARSEILLAN" + "codePostal": "41230", + "codeCommune": "41247", + "libelleAcheminement": "SOINGS EN SOLOGNE", + "nomCommune": "SOINGS EN SOLOGNE" }, { - "codePostal": "49290", - "codeCommune": "49063", - "libelleAcheminement": "CHALONNES SUR LOIRE", - "nomCommune": "CHALONNES SUR LOIRE" + "codePostal": "44470", + "codeCommune": "44094", + "libelleAcheminement": "MAUVES SUR LOIRE", + "nomCommune": "MAUVES SUR LOIRE" }, { - "codePostal": "26560", - "codeCommune": "26022", - "libelleAcheminement": "BALLONS", - "nomCommune": "BALLONS" + "codePostal": "55190", + "codeCommune": "55330", + "libelleAcheminement": "MELIGNY LE GRAND", + "nomCommune": "MELIGNY LE GRAND" }, { - "codePostal": "19190", - "codeCommune": "19156", - "libelleAcheminement": "PALAZINGES", - "nomCommune": "PALAZINGES" + "codePostal": "55200", + "codeCommune": "55184", + "libelleAcheminement": "EUVILLE", + "nomCommune": "EUVILLE" }, { - "codePostal": "34270", - "codeCommune": "34153", - "libelleAcheminement": "LES MATELLES", - "nomCommune": "LES MATELLES" + "codePostal": "41170", + "codeCommune": "41248", + "libelleAcheminement": "COUETRON AU PERCHE", + "nomCommune": "COUETRON AU PERCHE" }, { - "codePostal": "49330", - "codeCommune": "49080", - "libelleAcheminement": "LES HAUTS D ANJOU", - "nomCommune": "LES HAUTS D ANJOU" + "codePostal": "44420", + "codeCommune": "44097", + "libelleAcheminement": "MESQUER", + "nomCommune": "MESQUER" }, { - "codePostal": "26310", - "codeCommune": "26030", - "libelleAcheminement": "LA BATIE DES FONDS", - "nomCommune": "LA BATIE DES FONDS" + "codePostal": "55110", + "codeCommune": "55338", + "libelleAcheminement": "MILLY SUR BRADON", + "nomCommune": "MILLY SUR BRADON" }, { - "codePostal": "19200", - "codeCommune": "19180", - "libelleAcheminement": "ST ANGEL", - "nomCommune": "ST ANGEL" + "codePostal": "55000", + "codeCommune": "55186", + "libelleAcheminement": "FAINS VEEL", + "nomCommune": "FAINS VEEL" }, { - "codePostal": "34370", - "codeCommune": "34155", - "libelleAcheminement": "MAUREILHAN", - "nomCommune": "MAUREILHAN" + "codePostal": "41600", + "codeCommune": "41251", + "libelleAcheminement": "SOUVIGNY EN SOLOGNE", + "nomCommune": "SOUVIGNY EN SOLOGNE" }, { - "codePostal": "49540", - "codeCommune": "49086", - "libelleAcheminement": "TERRANJOU", - "nomCommune": "TERRANJOU" + "codePostal": "44200", + "codeCommune": "44109", + "libelleAcheminement": "NANTES", + "nomCommune": "NANTES" }, { - "codePostal": "26730", - "codeCommune": "26034", - "libelleAcheminement": "LA BAUME D HOSTUN", - "nomCommune": "LA BAUME D HOSTUN" + "codePostal": "55400", + "codeCommune": "55339", + "libelleAcheminement": "MOGEVILLE", + "nomCommune": "MOGEVILLE" }, { - "codePostal": "19430", - "codeCommune": "19189", - "libelleAcheminement": "ST BONNET LES TOURS DE MERLE", - "nomCommune": "ST BONNET LES TOURS DE MERLE" + "codePostal": "55400", + "codeCommune": "55191", + "libelleAcheminement": "FOAMEIX ORNEL", + "nomCommune": "FOAMEIX ORNEL" }, { - "codePostal": "34310", - "codeCommune": "34167", - "libelleAcheminement": "MONTELS", - "nomCommune": "MONTELS" + "codePostal": "41800", + "codeCommune": "41265", + "libelleAcheminement": "TROO", + "nomCommune": "TROO" }, { - "codePostal": "49500", - "codeCommune": "49089", - "libelleAcheminement": "CHAZE SUR ARGOS", - "nomCommune": "CHAZE SUR ARGOS" + "codePostal": "44110", + "codeCommune": "44112", + "libelleAcheminement": "NOYAL SUR BRUTZ", + "nomCommune": "NOYAL SUR BRUTZ" }, { - "codePostal": "26600", - "codeCommune": "26038", - "libelleAcheminement": "BEAUMONT MONTEUX", - "nomCommune": "BEAUMONT MONTEUX" + "codePostal": "55110", + "codeCommune": "55345", + "libelleAcheminement": "MONT DEVANT SASSEY", + "nomCommune": "MONT DEVANT SASSEY" }, { - "codePostal": "19600", - "codeCommune": "19191", - "libelleAcheminement": "ST CERNIN DE LARCHE", - "nomCommune": "ST CERNIN DE LARCHE" + "codePostal": "55110", + "codeCommune": "55193", + "libelleAcheminement": "FORGES SUR MEUSE", + "nomCommune": "FORGES SUR MEUSE" }, { - "codePostal": "34980", - "codeCommune": "34169", - "libelleAcheminement": "MONTFERRIER SUR LEZ", - "nomCommune": "MONTFERRIER SUR LEZ" + "codePostal": "41400", + "codeCommune": "41267", + "libelleAcheminement": "VALLIERES LES GRANDES", + "nomCommune": "VALLIERES LES GRANDES" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "44270", + "codeCommune": "44119", + "libelleAcheminement": "PAULX", + "nomCommune": "PAULX" }, { - "codePostal": "26240", - "codeCommune": "26041", - "libelleAcheminement": "BEAUSEMBLANT", - "nomCommune": "BEAUSEMBLANT" + "codePostal": "55320", + "codeCommune": "55347", + "libelleAcheminement": "LES MONTHAIRONS", + "nomCommune": "LES MONTHAIRONS" }, { - "codePostal": "19380", - "codeCommune": "19192", - "libelleAcheminement": "ST CHAMANT", - "nomCommune": "ST CHAMANT" + "codePostal": "55500", + "codeCommune": "55195", + "libelleAcheminement": "FOUCHERES AUX BOIS", + "nomCommune": "FOUCHERES AUX BOIS" }, { - "codePostal": "34130", - "codeCommune": "34176", - "libelleAcheminement": "MUDAISON", - "nomCommune": "MUDAISON" + "codePostal": "41290", + "codeCommune": "41273", + "libelleAcheminement": "VIEVY LE RAYE", + "nomCommune": "VIEVY LE RAYE" }, { - "codePostal": "49750", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "44640", + "codeCommune": "44120", + "libelleAcheminement": "LE PELLERIN", + "nomCommune": "LE PELLERIN" }, { - "codePostal": "26160", - "codeCommune": "26045", - "libelleAcheminement": "LA BEGUDE DE MAZENC", - "nomCommune": "LA BEGUDE DE MAZENC" + "codePostal": "55600", + "codeCommune": "55351", + "libelleAcheminement": "MONTMEDY", + "nomCommune": "MONTMEDY" }, { - "codePostal": "19700", - "codeCommune": "19194", - "libelleAcheminement": "ST CLEMENT", - "nomCommune": "ST CLEMENT" + "codePostal": "55160", + "codeCommune": "55198", + "libelleAcheminement": "FRESNES EN WOEVRE", + "nomCommune": "FRESNES EN WOEVRE" }, { - "codePostal": "34320", - "codeCommune": "34181", - "libelleAcheminement": "NEFFIES", - "nomCommune": "NEFFIES" + "codePostal": "41800", + "codeCommune": "41279", + "libelleAcheminement": "VILLEDIEU LE CHATEAU", + "nomCommune": "VILLEDIEU LE CHATEAU" }, { - "codePostal": "49700", - "codeCommune": "49100", - "libelleAcheminement": "CIZAY LA MADELEINE", - "nomCommune": "CIZAY LA MADELEINE" + "codePostal": "44630", + "codeCommune": "44128", + "libelleAcheminement": "PLESSE", + "nomCommune": "PLESSE" }, { - "codePostal": "26110", - "codeCommune": "26046", - "libelleAcheminement": "BELLECOMBE TARENDOL", - "nomCommune": "BELLECOMBE TARENDOL" + "codePostal": "55700", + "codeCommune": "55364", + "libelleAcheminement": "MOUZAY", + "nomCommune": "MOUZAY" }, { - "codePostal": "19160", - "codeCommune": "19200", - "libelleAcheminement": "ST ETIENNE LA GENESTE", - "nomCommune": "ST ETIENNE LA GENESTE" + "codePostal": "55120", + "codeCommune": "55199", + "libelleAcheminement": "FROIDOS", + "nomCommune": "FROIDOS" }, { - "codePostal": "34380", - "codeCommune": "34195", - "libelleAcheminement": "PEGAIROLLES DE BUEGES", - "nomCommune": "PEGAIROLLES DE BUEGES" + "codePostal": "41330", + "codeCommune": "41281", + "libelleAcheminement": "VILLEFRANCOEUR", + "nomCommune": "VILLEFRANCOEUR" }, { - "codePostal": "49690", - "codeCommune": "49109", - "libelleAcheminement": "CORON", - "nomCommune": "CORON" + "codePostal": "44160", + "codeCommune": "44129", + "libelleAcheminement": "PONTCHATEAU", + "nomCommune": "PONTCHATEAU" }, { - "codePostal": "26170", - "codeCommune": "26048", - "libelleAcheminement": "BENIVAY OLLON", - "nomCommune": "BENIVAY OLLON" + "codePostal": "55700", + "codeCommune": "55377", + "libelleAcheminement": "NEPVANT", + "nomCommune": "NEPVANT" }, { - "codePostal": "19490", - "codeCommune": "19203", - "libelleAcheminement": "STE FORTUNADE", - "nomCommune": "STE FORTUNADE" + "codePostal": "55100", + "codeCommune": "55200", + "libelleAcheminement": "FROMEREVILLE LES VALLONS", + "nomCommune": "FROMEREVILLE LES VALLONS" }, { - "codePostal": "34470", - "codeCommune": "34198", - "libelleAcheminement": "PEROLS", - "nomCommune": "PEROLS" + "codePostal": "41310", + "codeCommune": "41286", + "libelleAcheminement": "VILLEPORCHER", + "nomCommune": "VILLEPORCHER" }, { - "codePostal": "49190", - "codeCommune": "49120", - "libelleAcheminement": "DENEE", - "nomCommune": "DENEE" + "codePostal": "44160", + "codeCommune": "44152", + "libelleAcheminement": "STE ANNE SUR BRIVET", + "nomCommune": "STE ANNE SUR BRIVET" }, { - "codePostal": "26300", - "codeCommune": "26049", - "libelleAcheminement": "BESAYES", - "nomCommune": "BESAYES" + "codePostal": "55140", + "codeCommune": "55381", + "libelleAcheminement": "NEUVILLE LES VAUCOULEURS", + "nomCommune": "NEUVILLE LES VAUCOULEURS" }, { - "codePostal": "19200", - "codeCommune": "19204", - "libelleAcheminement": "ST FREJOUX", - "nomCommune": "ST FREJOUX" + "codePostal": "55320", + "codeCommune": "55204", + "libelleAcheminement": "GENICOURT SUR MEUSE", + "nomCommune": "GENICOURT SUR MEUSE" }, { - "codePostal": "34120", - "codeCommune": "34199", - "libelleAcheminement": "PEZENAS", - "nomCommune": "PEZENAS" + "codePostal": "41000", + "codeCommune": "41288", + "libelleAcheminement": "VILLERBON", + "nomCommune": "VILLERBON" }, { - "codePostal": "49460", - "codeCommune": "49130", - "libelleAcheminement": "ECUILLE", - "nomCommune": "ECUILLE" + "codePostal": "44250", + "codeCommune": "44154", + "libelleAcheminement": "ST BREVIN LES PINS", + "nomCommune": "ST BREVIN LES PINS" }, { - "codePostal": "26790", - "codeCommune": "26054", - "libelleAcheminement": "BOUCHET", - "nomCommune": "BOUCHET" + "codePostal": "55120", + "codeCommune": "55385", + "libelleAcheminement": "NIXEVILLE BLERCOURT", + "nomCommune": "NIXEVILLE BLERCOURT" }, { - "codePostal": "19430", - "codeCommune": "19215", - "libelleAcheminement": "ST JULIEN LE PELERIN", - "nomCommune": "ST JULIEN LE PELERIN" + "codePostal": "55130", + "codeCommune": "55215", + "libelleAcheminement": "GONDRECOURT LE CHATEAU", + "nomCommune": "GONDRECOURT LE CHATEAU" }, { - "codePostal": "34700", - "codeCommune": "34212", - "libelleAcheminement": "POUJOLS", - "nomCommune": "POUJOLS" + "codePostal": "42380", + "codeCommune": "42001", + "libelleAcheminement": "ABOEN", + "nomCommune": "ABOEN" }, { - "codePostal": "49140", - "codeCommune": "49163", - "libelleAcheminement": "JARZE VILLAGES", - "nomCommune": "JARZE VILLAGES" + "codePostal": "44250", + "codeCommune": "44154", + "libelleAcheminement": "ST BREVIN LES PINS", + "nomCommune": "ST BREVIN LES PINS" }, { - "codePostal": "26460", - "codeCommune": "26060", - "libelleAcheminement": "BOUVIERES", - "nomCommune": "BOUVIERES" + "codePostal": "55250", + "codeCommune": "55389", + "libelleAcheminement": "NUBECOURT", + "nomCommune": "NUBECOURT" }, { - "codePostal": "19400", - "codeCommune": "19221", - "libelleAcheminement": "ST MARTIAL ENTRAYGUES", - "nomCommune": "ST MARTIAL ENTRAYGUES" + "codePostal": "55230", + "codeCommune": "55216", + "libelleAcheminement": "GOURAINCOURT", + "nomCommune": "GOURAINCOURT" }, { - "codePostal": "34480", - "codeCommune": "34223", - "libelleAcheminement": "PUIMISSON", - "nomCommune": "PUIMISSON" + "codePostal": "42130", + "codeCommune": "42002", + "libelleAcheminement": "AILLEUX", + "nomCommune": "AILLEUX" }, { - "codePostal": "49150", - "codeCommune": "49171", - "libelleAcheminement": "LA LANDE CHASLES", - "nomCommune": "LA LANDE CHASLES" + "codePostal": "44310", + "codeCommune": "44155", + "libelleAcheminement": "ST COLOMBAN", + "nomCommune": "ST COLOMBAN" }, { - "codePostal": "26600", - "codeCommune": "26071", - "libelleAcheminement": "CHANOS CURSON", - "nomCommune": "CHANOS CURSON" + "codePostal": "55700", + "codeCommune": "55391", + "libelleAcheminement": "OLIZY SUR CHIERS", + "nomCommune": "OLIZY SUR CHIERS" }, { - "codePostal": "19200", - "codeCommune": "19233", - "libelleAcheminement": "ST PARDOUX LE VIEUX", - "nomCommune": "ST PARDOUX LE VIEUX" + "codePostal": "55150", + "codeCommune": "55218", + "libelleAcheminement": "GREMILLY", + "nomCommune": "GREMILLY" }, { - "codePostal": "34480", - "codeCommune": "34224", - "libelleAcheminement": "PUISSALICON", - "nomCommune": "PUISSALICON" + "codePostal": "42330", + "codeCommune": "42010", + "libelleAcheminement": "AVEIZIEUX", + "nomCommune": "AVEIZIEUX" }, { - "codePostal": "49370", - "codeCommune": "49183", - "libelleAcheminement": "VAL D ERDRE AUXENCE", - "nomCommune": "VAL D ERDRE AUXENCE" + "codePostal": "44270", + "codeCommune": "44157", + "libelleAcheminement": "ST ETIENNE DE MER MORTE", + "nomCommune": "ST ETIENNE DE MER MORTE" }, { - "codePostal": "26600", - "codeCommune": "26072", - "libelleAcheminement": "CHANTEMERLE LES BLES", - "nomCommune": "CHANTEMERLE LES BLES" + "codePostal": "55140", + "codeCommune": "55397", + "libelleAcheminement": "PAGNY LA BLANCHE COTE", + "nomCommune": "PAGNY LA BLANCHE COTE" }, { - "codePostal": "19270", - "codeCommune": "19234", - "libelleAcheminement": "ST PARDOUX L ORTIGIER", - "nomCommune": "ST PARDOUX L ORTIGIER" + "codePostal": "55000", + "codeCommune": "55221", + "libelleAcheminement": "GUERPONT", + "nomCommune": "GUERPONT" }, { - "codePostal": "34310", - "codeCommune": "34226", - "libelleAcheminement": "QUARANTE", - "nomCommune": "QUARANTE" + "codePostal": "42670", + "codeCommune": "42015", + "libelleAcheminement": "BELMONT DE LA LOIRE", + "nomCommune": "BELMONT DE LA LOIRE" }, { - "codePostal": "49122", - "codeCommune": "49193", - "libelleAcheminement": "LE MAY SUR EVRE", - "nomCommune": "LE MAY SUR EVRE" + "codePostal": "44690", + "codeCommune": "44159", + "libelleAcheminement": "ST FIACRE SUR MAINE", + "nomCommune": "ST FIACRE SUR MAINE" }, { - "codePostal": "26420", - "codeCommune": "26074", - "libelleAcheminement": "LA CHAPELLE EN VERCORS", - "nomCommune": "LA CHAPELLE EN VERCORS" + "codePostal": "55190", + "codeCommune": "55398", + "libelleAcheminement": "PAGNY SUR MEUSE", + "nomCommune": "PAGNY SUR MEUSE" }, { - "codePostal": "19240", - "codeCommune": "19246", - "libelleAcheminement": "ST VIANCE", - "nomCommune": "ST VIANCE" + "codePostal": "55700", + "codeCommune": "55225", + "libelleAcheminement": "HALLES SOUS LES COTES", + "nomCommune": "HALLES SOUS LES COTES" }, { - "codePostal": "34320", - "codeCommune": "34234", - "libelleAcheminement": "ROQUESSELS", - "nomCommune": "ROQUESSELS" + "codePostal": "42520", + "codeCommune": "42018", + "libelleAcheminement": "BESSEY", + "nomCommune": "BESSEY" }, { - "codePostal": "49310", - "codeCommune": "49211", - "libelleAcheminement": "MONTILLIERS", - "nomCommune": "MONTILLIERS" + "codePostal": "44800", + "codeCommune": "44162", + "libelleAcheminement": "ST HERBLAIN", + "nomCommune": "ST HERBLAIN" }, { - "codePostal": "26470", - "codeCommune": "26075", - "libelleAcheminement": "LA CHARCE", - "nomCommune": "LA CHARCE" + "codePostal": "55300", + "codeCommune": "55401", + "libelleAcheminement": "LES PAROCHES", + "nomCommune": "LES PAROCHES" }, { - "codePostal": "19700", - "codeCommune": "19255", - "libelleAcheminement": "SEILHAC", - "nomCommune": "SEILHAC" + "codePostal": "55300", + "codeCommune": "55229", + "libelleAcheminement": "HAN SUR MEUSE", + "nomCommune": "HAN SUR MEUSE" }, { - "codePostal": "34320", - "codeCommune": "34237", - "libelleAcheminement": "ROUJAN", - "nomCommune": "ROUJAN" + "codePostal": "42210", + "codeCommune": "42020", + "libelleAcheminement": "BOISSET LES MONTROND", + "nomCommune": "BOISSET LES MONTROND" }, { - "codePostal": "49600", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "44190", + "codeCommune": "44165", + "libelleAcheminement": "ST HILAIRE DE CLISSON", + "nomCommune": "ST HILAIRE DE CLISSON" }, { - "codePostal": "26310", - "codeCommune": "26076", - "libelleAcheminement": "CHARENS", - "nomCommune": "CHARENS" + "codePostal": "55800", + "codeCommune": "55414", + "libelleAcheminement": "RANCOURT SUR ORNAIN", + "nomCommune": "RANCOURT SUR ORNAIN" }, { - "codePostal": "19190", - "codeCommune": "19257", - "libelleAcheminement": "SERILHAC", - "nomCommune": "SERILHAC" + "codePostal": "55120", + "codeCommune": "55253", + "libelleAcheminement": "LES ISLETTES", + "nomCommune": "LES ISLETTES" }, { - "codePostal": "34230", - "codeCommune": "34241", - "libelleAcheminement": "ST BAUZILLE DE LA SYLVE", - "nomCommune": "ST BAUZILLE DE LA SYLVE" + "codePostal": "42560", + "codeCommune": "42021", + "libelleAcheminement": "BOISSET ST PRIEST", + "nomCommune": "BOISSET ST PRIEST" }, { - "codePostal": "49640", - "codeCommune": "49220", - "libelleAcheminement": "MORANNES SUR SARTHE DAUMERAY", - "nomCommune": "MORANNES SUR SARTHE DAUMERAY" + "codePostal": "44450", + "codeCommune": "44169", + "libelleAcheminement": "ST JULIEN DE CONCELLES", + "nomCommune": "ST JULIEN DE CONCELLES" }, { - "codePostal": "26110", - "codeCommune": "26082", - "libelleAcheminement": "CHATEAUNEUF DE BORDETTE", - "nomCommune": "CHATEAUNEUF DE BORDETTE" + "codePostal": "55160", + "codeCommune": "55429", + "libelleAcheminement": "RIAVILLE", + "nomCommune": "RIAVILLE" }, { - "codePostal": "19230", - "codeCommune": "19270", - "libelleAcheminement": "TROCHE", - "nomCommune": "TROCHE" + "codePostal": "55220", + "codeCommune": "55254", + "libelleAcheminement": "LES TROIS DOMAINES", + "nomCommune": "LES TROIS DOMAINES" }, { - "codePostal": "34360", - "codeCommune": "34245", - "libelleAcheminement": "ST CHINIAN", - "nomCommune": "ST CHINIAN" + "codePostal": "42720", + "codeCommune": "42026", + "libelleAcheminement": "BRIENNON", + "nomCommune": "BRIENNON" }, { - "codePostal": "49610", - "codeCommune": "49222", - "libelleAcheminement": "MOZE SUR LOUET", - "nomCommune": "MOZE SUR LOUET" + "codePostal": "44550", + "codeCommune": "44176", + "libelleAcheminement": "ST MALO DE GUERSAC", + "nomCommune": "ST MALO DE GUERSAC" }, { - "codePostal": "26750", - "codeCommune": "26087", - "libelleAcheminement": "CHATILLON ST JEAN", - "nomCommune": "CHATILLON ST JEAN" + "codePostal": "55140", + "codeCommune": "55433", + "libelleAcheminement": "RIGNY LA SALLE", + "nomCommune": "RIGNY LA SALLE" }, { - "codePostal": "19000", - "codeCommune": "19272", - "libelleAcheminement": "TULLE", - "nomCommune": "TULLE" + "codePostal": "55120", + "codeCommune": "55257", + "libelleAcheminement": "JOUY EN ARGONNE", + "nomCommune": "JOUY EN ARGONNE" }, { - "codePostal": "34260", - "codeCommune": "34252", - "libelleAcheminement": "ST ETIENNE ESTRECHOUX", - "nomCommune": "ST ETIENNE ESTRECHOUX" + "codePostal": "42260", + "codeCommune": "42027", + "libelleAcheminement": "BULLY", + "nomCommune": "BULLY" }, { - "codePostal": "49680", - "codeCommune": "49224", - "libelleAcheminement": "NEUILLE", - "nomCommune": "NEUILLE" + "codePostal": "44540", + "codeCommune": "44180", + "libelleAcheminement": "VALLONS DE L ERDRE", + "nomCommune": "VALLONS DE L ERDRE" }, { - "codePostal": "26340", - "codeCommune": "26090", - "libelleAcheminement": "LA CHAUDIERE", - "nomCommune": "LA CHAUDIERE" + "codePostal": "55110", + "codeCommune": "55438", + "libelleAcheminement": "ROMAGNE SOUS MONTFAUCON", + "nomCommune": "ROMAGNE SOUS MONTFAUCON" }, { - "codePostal": "19240", - "codeCommune": "19278", - "libelleAcheminement": "VARETZ", - "nomCommune": "VARETZ" + "codePostal": "55120", + "codeCommune": "55260", + "libelleAcheminement": "JULVECOURT", + "nomCommune": "JULVECOURT" }, { - "codePostal": "34520", - "codeCommune": "34253", - "libelleAcheminement": "ST FELIX DE L HERAS", - "nomCommune": "ST FELIX DE L HERAS" + "codePostal": "42510", + "codeCommune": "42029", + "libelleAcheminement": "BUSSIERES", + "nomCommune": "BUSSIERES" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "44600", + "codeCommune": "44184", + "libelleAcheminement": "ST NAZAIRE", + "nomCommune": "ST NAZAIRE" }, { - "codePostal": "26510", - "codeCommune": "26091", - "libelleAcheminement": "CHAUVAC LAUX MONTAUX", - "nomCommune": "CHAUVAC LAUX MONTAUX" + "codePostal": "55000", + "codeCommune": "55446", + "libelleAcheminement": "RUMONT", + "nomCommune": "RUMONT" }, { - "codePostal": "19120", - "codeCommune": "19280", - "libelleAcheminement": "VEGENNES", - "nomCommune": "VEGENNES" + "codePostal": "55300", + "codeCommune": "55263", + "libelleAcheminement": "KOEUR LA GRANDE", + "nomCommune": "KOEUR LA GRANDE" }, { - "codePostal": "34725", - "codeCommune": "34254", - "libelleAcheminement": "ST FELIX DE LODEZ", - "nomCommune": "ST FELIX DE LODEZ" + "codePostal": "42440", + "codeCommune": "42034", + "libelleAcheminement": "CERVIERES", + "nomCommune": "CERVIERES" }, { - "codePostal": "49730", - "codeCommune": "49235", - "libelleAcheminement": "PARNAY", - "nomCommune": "PARNAY" + "codePostal": "44600", + "codeCommune": "44184", + "libelleAcheminement": "ST NAZAIRE", + "nomCommune": "ST NAZAIRE" }, { - "codePostal": "26260", - "codeCommune": "26096", - "libelleAcheminement": "CLERIEUX", - "nomCommune": "CLERIEUX" + "codePostal": "55400", + "codeCommune": "55458", + "libelleAcheminement": "ST JEAN LES BUZY", + "nomCommune": "ST JEAN LES BUZY" }, { - "codePostal": "19260", - "codeCommune": "19281", - "libelleAcheminement": "VEIX", - "nomCommune": "VEIX" + "codePostal": "55210", + "codeCommune": "55267", + "libelleAcheminement": "LACHAUSSEE", + "nomCommune": "LACHAUSSEE" }, { - "codePostal": "34610", - "codeCommune": "34257", - "libelleAcheminement": "ST GENIES DE VARENSAL", - "nomCommune": "ST GENIES DE VARENSAL" + "codePostal": "42500", + "codeCommune": "42044", + "libelleAcheminement": "LE CHAMBON FEUGEROLLES", + "nomCommune": "LE CHAMBON FEUGEROLLES" }, { - "codePostal": "49490", - "codeCommune": "49237", - "libelleAcheminement": "LA PELLERINE", - "nomCommune": "LA PELLERINE" + "codePostal": "44320", + "codeCommune": "44192", + "libelleAcheminement": "ST VIAUD", + "nomCommune": "ST VIAUD" }, { - "codePostal": "26270", - "codeCommune": "26097", - "libelleAcheminement": "CLIOUSCLAT", - "nomCommune": "CLIOUSCLAT" + "codePostal": "55500", + "codeCommune": "55472", + "libelleAcheminement": "SAULVAUX", + "nomCommune": "SAULVAUX" }, { - "codePostal": "19130", - "codeCommune": "19288", - "libelleAcheminement": "VOUTEZAC", - "nomCommune": "VOUTEZAC" + "codePostal": "55800", + "codeCommune": "55272", + "libelleAcheminement": "LAIMONT", + "nomCommune": "LAIMONT" }, { - "codePostal": "34610", - "codeCommune": "34260", - "libelleAcheminement": "ST GERVAIS SUR MARE", - "nomCommune": "ST GERVAIS SUR MARE" + "codePostal": "42310", + "codeCommune": "42049", + "libelleAcheminement": "CHANGY", + "nomCommune": "CHANGY" }, { - "codePostal": "49124", - "codeCommune": "49241", - "libelleAcheminement": "LE PLESSIS GRAMMOIRE", - "nomCommune": "LE PLESSIS GRAMMOIRE" + "codePostal": "44470", + "codeCommune": "44204", + "libelleAcheminement": "THOUARE SUR LOIRE", + "nomCommune": "THOUARE SUR LOIRE" }, { - "codePostal": "26740", - "codeCommune": "26102", - "libelleAcheminement": "CONDILLAC", - "nomCommune": "CONDILLAC" + "codePostal": "55140", + "codeCommune": "55474", + "libelleAcheminement": "SAUVIGNY", + "nomCommune": "SAUVIGNY" }, { - "codePostal": "19310", - "codeCommune": "19289", - "libelleAcheminement": "YSSANDON", - "nomCommune": "YSSANDON" + "codePostal": "55300", + "codeCommune": "55274", + "libelleAcheminement": "LAMORVILLE", + "nomCommune": "LAMORVILLE" }, { - "codePostal": "34270", - "codeCommune": "34266", - "libelleAcheminement": "ST JEAN DE CUCULLES", - "nomCommune": "ST JEAN DE CUCULLES" + "codePostal": "42190", + "codeCommune": "42052", + "libelleAcheminement": "CHARLIEU", + "nomCommune": "CHARLIEU" }, { - "codePostal": "49110", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "44119", + "codeCommune": "44209", + "libelleAcheminement": "TREILLIERES", + "nomCommune": "TREILLIERES" }, { - "codePostal": "26510", - "codeCommune": "26105", - "libelleAcheminement": "CORNILLON SUR L OULE", - "nomCommune": "CORNILLON SUR L OULE" + "codePostal": "55000", + "codeCommune": "55476", + "libelleAcheminement": "SAVONNIERES DEVANT BAR", + "nomCommune": "SAVONNIERES DEVANT BAR" }, { - "codePostal": "21150", - "codeCommune": "21008", - "libelleAcheminement": "ALISE STE REINE", - "nomCommune": "ALISE STE REINE" + "codePostal": "55110", + "codeCommune": "55292", + "libelleAcheminement": "LINY DEVANT DUN", + "nomCommune": "LINY DEVANT DUN" }, { - "codePostal": "34430", - "codeCommune": "34270", - "libelleAcheminement": "ST JEAN DE VEDAS", - "nomCommune": "ST JEAN DE VEDAS" + "codePostal": "42560", + "codeCommune": "42058", + "libelleAcheminement": "CHAZELLES SUR LAVIEU", + "nomCommune": "CHAZELLES SUR LAVIEU" }, { - "codePostal": "49410", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "44370", + "codeCommune": "44213", + "libelleAcheminement": "LOIREAUXENCE", + "nomCommune": "LOIREAUXENCE" }, { - "codePostal": "26350", - "codeCommune": "26107", - "libelleAcheminement": "CREPOL", - "nomCommune": "CREPOL" + "codePostal": "55270", + "codeCommune": "55484", + "libelleAcheminement": "SEPTSARGES", + "nomCommune": "SEPTSARGES" }, { - "codePostal": "21450", - "codeCommune": "21011", - "libelleAcheminement": "AMPILLY LES BORDES", - "nomCommune": "AMPILLY LES BORDES" + "codePostal": "55110", + "codeCommune": "55293", + "libelleAcheminement": "LION DEVANT DUN", + "nomCommune": "LION DEVANT DUN" }, { - "codePostal": "34400", - "codeCommune": "34280", - "libelleAcheminement": "ST NAZAIRE DE PEZAN", - "nomCommune": "ST NAZAIRE DE PEZAN" + "codePostal": "42123", + "codeCommune": "42070", + "libelleAcheminement": "CORDELLE", + "nomCommune": "CORDELLE" }, { - "codePostal": "49420", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "44120", + "codeCommune": "44215", + "libelleAcheminement": "VERTOU", + "nomCommune": "VERTOU" }, { - "codePostal": "26400", - "codeCommune": "26108", - "libelleAcheminement": "CREST", - "nomCommune": "CREST" + "codePostal": "55110", + "codeCommune": "55490", + "libelleAcheminement": "SIVRY SUR MEUSE", + "nomCommune": "SIVRY SUR MEUSE" }, { - "codePostal": "21310", - "codeCommune": "21016", - "libelleAcheminement": "ARCEAU", - "nomCommune": "ARCEAU" + "codePostal": "55230", + "codeCommune": "55299", + "libelleAcheminement": "LOISON", + "nomCommune": "LOISON" }, { - "codePostal": "34700", - "codeCommune": "34286", - "libelleAcheminement": "ST PRIVAT", - "nomCommune": "ST PRIVAT" + "codePostal": "42360", + "codeCommune": "42073", + "libelleAcheminement": "COTTANCE", + "nomCommune": "COTTANCE" }, { - "codePostal": "49260", - "codeCommune": "49253", - "libelleAcheminement": "LE PUY NOTRE DAME", - "nomCommune": "LE PUY NOTRE DAME" + "codePostal": "44140", + "codeCommune": "44223", + "libelleAcheminement": "GENESTON", + "nomCommune": "GENESTON" }, { - "codePostal": "26600", - "codeCommune": "26110", - "libelleAcheminement": "CROZES HERMITAGE", - "nomCommune": "CROZES HERMITAGE" + "codePostal": "55800", + "codeCommune": "55493", + "libelleAcheminement": "SOMMEILLES", + "nomCommune": "SOMMEILLES" }, { - "codePostal": "21320", - "codeCommune": "21020", - "libelleAcheminement": "ARCONCEY", - "nomCommune": "ARCONCEY" + "codePostal": "55600", + "codeCommune": "55306", + "libelleAcheminement": "LOUPPY SUR LOISON", + "nomCommune": "LOUPPY SUR LOISON" }, { - "codePostal": "34800", - "codeCommune": "34292", - "libelleAcheminement": "SALASC", - "nomCommune": "SALASC" + "codePostal": "42540", + "codeCommune": "42077", + "libelleAcheminement": "CROIZET SUR GAND", + "nomCommune": "CROIZET SUR GAND" }, { - "codePostal": "49350", - "codeCommune": "49261", - "libelleAcheminement": "GENNES VAL DE LOIRE", - "nomCommune": "GENNES VAL DE LOIRE" + "codePostal": "45300", + "codeCommune": "45010", + "libelleAcheminement": "ASCOUX", + "nomCommune": "ASCOUX" }, { - "codePostal": "26460", - "codeCommune": "26111", - "libelleAcheminement": "CRUPIES", - "nomCommune": "CRUPIES" + "codePostal": "55230", + "codeCommune": "55500", + "libelleAcheminement": "SPINCOURT", + "nomCommune": "SPINCOURT" }, { - "codePostal": "21500", - "codeCommune": "21026", - "libelleAcheminement": "ASNIERES EN MONTAGNE", - "nomCommune": "ASNIERES EN MONTAGNE" + "codePostal": "55700", + "codeCommune": "55310", + "libelleAcheminement": "LUZY ST MARTIN", + "nomCommune": "LUZY ST MARTIN" }, { - "codePostal": "34330", - "codeCommune": "34293", - "libelleAcheminement": "LA SALVETAT SUR AGOUT", - "nomCommune": "LA SALVETAT SUR AGOUT" + "codePostal": "42330", + "codeCommune": "42081", + "libelleAcheminement": "CUZIEU", + "nomCommune": "CUZIEU" }, { - "codePostal": "49170", - "codeCommune": "49283", - "libelleAcheminement": "ST GEORGES SUR LOIRE", - "nomCommune": "ST GEORGES SUR LOIRE" + "codePostal": "45390", + "codeCommune": "45014", + "libelleAcheminement": "AULNAY LA RIVIERE", + "nomCommune": "AULNAY LA RIVIERE" }, { - "codePostal": "26110", - "codeCommune": "26112", - "libelleAcheminement": "CURNIER", - "nomCommune": "CURNIER" + "codePostal": "55500", + "codeCommune": "55501", + "libelleAcheminement": "STAINVILLE", + "nomCommune": "STAINVILLE" }, { - "codePostal": "21130", - "codeCommune": "21028", - "libelleAcheminement": "ATHEE", - "nomCommune": "ATHEE" + "codePostal": "55270", + "codeCommune": "55313", + "libelleAcheminement": "MALANCOURT", + "nomCommune": "MALANCOURT" }, { - "codePostal": "34400", - "codeCommune": "34294", - "libelleAcheminement": "SATURARGUES", - "nomCommune": "SATURARGUES" + "codePostal": "42110", + "codeCommune": "42088", + "libelleAcheminement": "EPERCIEUX ST PAUL", + "nomCommune": "EPERCIEUX ST PAUL" }, { - "codePostal": "49070", - "codeCommune": "49294", - "libelleAcheminement": "ST LAMBERT LA POTHERIE", - "nomCommune": "ST LAMBERT LA POTHERIE" + "codePostal": "45300", + "codeCommune": "45045", + "libelleAcheminement": "BOUILLY EN GATINAIS", + "nomCommune": "BOUILLY EN GATINAIS" }, { - "codePostal": "26800", - "codeCommune": "26124", - "libelleAcheminement": "ETOILE SUR RHONE", - "nomCommune": "ETOILE SUR RHONE" + "codePostal": "55000", + "codeCommune": "55504", + "libelleAcheminement": "TANNOIS", + "nomCommune": "TANNOIS" }, { - "codePostal": "21170", - "codeCommune": "21031", - "libelleAcheminement": "AUBIGNY EN PLAINE", - "nomCommune": "AUBIGNY EN PLAINE" + "codePostal": "55150", + "codeCommune": "55316", + "libelleAcheminement": "MANGIENNES", + "nomCommune": "MANGIENNES" }, { - "codePostal": "34570", - "codeCommune": "34295", - "libelleAcheminement": "SAUSSAN", - "nomCommune": "SAUSSAN" + "codePostal": "42140", + "codeCommune": "42096", + "libelleAcheminement": "FONTANES", + "nomCommune": "FONTANES" }, { - "codePostal": "49230", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "45300", + "codeCommune": "45047", + "libelleAcheminement": "BOUZONVILLE AUX BOIS", + "nomCommune": "BOUZONVILLE AUX BOIS" }, { - "codePostal": "26170", - "codeCommune": "26127", - "libelleAcheminement": "EYGALIERS", - "nomCommune": "EYGALIERS" + "codePostal": "55600", + "codeCommune": "55511", + "libelleAcheminement": "THONNELLE", + "nomCommune": "THONNELLE" }, { - "codePostal": "21340", - "codeCommune": "21032", - "libelleAcheminement": "AUBIGNY LA RONCE", - "nomCommune": "AUBIGNY LA RONCE" + "codePostal": "55190", + "codeCommune": "55322", + "libelleAcheminement": "MARSON SUR BARBOURE", + "nomCommune": "MARSON SUR BARBOURE" }, { - "codePostal": "34410", - "codeCommune": "34298", - "libelleAcheminement": "SAUVIAN", - "nomCommune": "SAUVIAN" + "codePostal": "42490", + "codeCommune": "42099", + "libelleAcheminement": "FRAISSES", + "nomCommune": "FRAISSES" }, { - "codePostal": "49230", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "45310", + "codeCommune": "45055", + "libelleAcheminement": "BRICY", + "nomCommune": "BRICY" }, { - "codePostal": "26570", - "codeCommune": "26135", - "libelleAcheminement": "FERRASSIERES", - "nomCommune": "FERRASSIERES" + "codePostal": "55500", + "codeCommune": "55518", + "libelleAcheminement": "COUSANCES LES TRICONVILLE", + "nomCommune": "COUSANCES LES TRICONVILLE" }, { - "codePostal": "21250", - "codeCommune": "21035", - "libelleAcheminement": "AUVILLARS SUR SAONE", - "nomCommune": "AUVILLARS SUR SAONE" + "codePostal": "55600", + "codeCommune": "55324", + "libelleAcheminement": "MARVILLE", + "nomCommune": "MARVILLE" }, { - "codePostal": "34200", - "codeCommune": "34301", - "libelleAcheminement": "SETE", - "nomCommune": "SETE" + "codePostal": "42600", + "codeCommune": "42105", + "libelleAcheminement": "GREZIEUX LE FROMENTAL", + "nomCommune": "GREZIEUX LE FROMENTAL" }, { - "codePostal": "49230", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "45390", + "codeCommune": "45056", + "libelleAcheminement": "BROMEILLES", + "nomCommune": "BROMEILLES" }, { - "codePostal": "26400", - "codeCommune": "26141", - "libelleAcheminement": "GIGORS ET LOZERON", - "nomCommune": "GIGORS ET LOZERON" + "codePostal": "55140", + "codeCommune": "55522", + "libelleAcheminement": "UGNY SUR MEUSE", + "nomCommune": "UGNY SUR MEUSE" }, { - "codePostal": "21120", - "codeCommune": "21039", - "libelleAcheminement": "AVELANGES", - "nomCommune": "AVELANGES" + "codePostal": "55190", + "codeCommune": "55331", + "libelleAcheminement": "MELIGNY LE PETIT", + "nomCommune": "MELIGNY LE PETIT" }, { - "codePostal": "34160", - "codeCommune": "34307", - "libelleAcheminement": "SUSSARGUES", - "nomCommune": "SUSSARGUES" + "codePostal": "42210", + "codeCommune": "42108", + "libelleAcheminement": "L HOPITAL LE GRAND", + "nomCommune": "L HOPITAL LE GRAND" }, { - "codePostal": "49450", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "45300", + "codeCommune": "45065", + "libelleAcheminement": "CESARVILLE DOSSAINVILLE", + "nomCommune": "CESARVILLE DOSSAINVILLE" }, { - "codePostal": "26390", - "codeCommune": "26148", - "libelleAcheminement": "HAUTERIVES", - "nomCommune": "HAUTERIVES" + "codePostal": "55300", + "codeCommune": "55528", + "libelleAcheminement": "VARNEVILLE", + "nomCommune": "VARNEVILLE" }, { - "codePostal": "21910", - "codeCommune": "21048", - "libelleAcheminement": "BARGES", - "nomCommune": "BARGES" + "codePostal": "55500", + "codeCommune": "55332", + "libelleAcheminement": "MENAUCOURT", + "nomCommune": "MENAUCOURT" }, { - "codePostal": "34700", - "codeCommune": "34316", - "libelleAcheminement": "USCLAS DU BOSC", - "nomCommune": "USCLAS DU BOSC" + "codePostal": "42110", + "codeCommune": "42113", + "libelleAcheminement": "JAS", + "nomCommune": "JAS" }, { - "codePostal": "49660", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "45220", + "codeCommune": "45083", + "libelleAcheminement": "CHATEAU RENARD", + "nomCommune": "CHATEAU RENARD" }, { - "codePostal": "26600", - "codeCommune": "26156", - "libelleAcheminement": "LARNAGE", - "nomCommune": "LARNAGE" + "codePostal": "55300", + "codeCommune": "55530", + "libelleAcheminement": "VALBOIS", + "nomCommune": "VALBOIS" }, { - "codePostal": "21410", - "codeCommune": "21051", - "libelleAcheminement": "BAULME LA ROCHE", - "nomCommune": "BAULME LA ROCHE" + "codePostal": "55260", + "codeCommune": "55333", + "libelleAcheminement": "MENIL AUX BOIS", + "nomCommune": "MENIL AUX BOIS" }, { - "codePostal": "34270", - "codeCommune": "34318", - "libelleAcheminement": "VACQUIERES", - "nomCommune": "VACQUIERES" + "codePostal": "42155", + "codeCommune": "42120", + "libelleAcheminement": "LENTIGNY", + "nomCommune": "LENTIGNY" }, { - "codePostal": "49800", - "codeCommune": "49307", - "libelleAcheminement": "LOIRE AUTHION", - "nomCommune": "LOIRE AUTHION" + "codePostal": "45210", + "codeCommune": "45091", + "libelleAcheminement": "CHEVANNES", + "nomCommune": "CHEVANNES" }, { - "codePostal": "26740", - "codeCommune": "26157", - "libelleAcheminement": "LA LAUPIE", - "nomCommune": "LA LAUPIE" + "codePostal": "55600", + "codeCommune": "55546", + "libelleAcheminement": "VERNEUIL GRAND", + "nomCommune": "VERNEUIL GRAND" }, { - "codePostal": "21310", - "codeCommune": "21053", - "libelleAcheminement": "BEAUMONT SUR VINGEANNE", - "nomCommune": "BEAUMONT SUR VINGEANNE" + "codePostal": "55190", + "codeCommune": "55334", + "libelleAcheminement": "MENIL LA HORGNE", + "nomCommune": "MENIL LA HORGNE" }, { - "codePostal": "34270", - "codeCommune": "34322", - "libelleAcheminement": "VALFLAUNES", - "nomCommune": "VALFLAUNES" + "codePostal": "42520", + "codeCommune": "42124", + "libelleAcheminement": "LUPE", + "nomCommune": "LUPE" }, { - "codePostal": "49800", - "codeCommune": "49307", - "libelleAcheminement": "LOIRE AUTHION", - "nomCommune": "LOIRE AUTHION" + "codePostal": "45170", + "codeCommune": "45095", + "libelleAcheminement": "CHILLEURS AUX BOIS", + "nomCommune": "CHILLEURS AUX BOIS" }, { - "codePostal": "26150", - "codeCommune": "26159", - "libelleAcheminement": "LAVAL D AIX", - "nomCommune": "LAVAL D AIX" + "codePostal": "55600", + "codeCommune": "55547", + "libelleAcheminement": "VERNEUIL PETIT", + "nomCommune": "VERNEUIL PETIT" }, { - "codePostal": "21510", - "codeCommune": "21055", - "libelleAcheminement": "BEAUNOTTE", - "nomCommune": "BEAUNOTTE" + "codePostal": "55150", + "codeCommune": "55341", + "libelleAcheminement": "MOIREY FLABAS CREPION", + "nomCommune": "MOIREY FLABAS CREPION" }, { - "codePostal": "34290", - "codeCommune": "34325", - "libelleAcheminement": "VALROS", - "nomCommune": "VALROS" + "codePostal": "42210", + "codeCommune": "42135", + "libelleAcheminement": "MARCLOPT", + "nomCommune": "MARCLOPT" }, { - "codePostal": "49800", - "codeCommune": "49307", - "libelleAcheminement": "LOIRE AUTHION", - "nomCommune": "LOIRE AUTHION" + "codePostal": "45310", + "codeCommune": "45099", + "libelleAcheminement": "COINCES", + "nomCommune": "COINCES" }, { - "codePostal": "26240", - "codeCommune": "26160", - "libelleAcheminement": "LAVEYRON", - "nomCommune": "LAVEYRON" + "codePostal": "55210", + "codeCommune": "55551", + "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", + "nomCommune": "VIGNEULLES LES HATTONCHATEL" }, { - "codePostal": "21360", - "codeCommune": "21065", - "libelleAcheminement": "BESSEY EN CHAUME", - "nomCommune": "BESSEY EN CHAUME" + "codePostal": "55270", + "codeCommune": "55346", + "libelleAcheminement": "MONTFAUCON D ARGONNE", + "nomCommune": "MONTFAUCON D ARGONNE" }, { - "codePostal": "34800", - "codeCommune": "34338", - "libelleAcheminement": "VILLENEUVETTE", - "nomCommune": "VILLENEUVETTE" + "codePostal": "42560", + "codeCommune": "42140", + "libelleAcheminement": "MAROLS", + "nomCommune": "MAROLS" }, { - "codePostal": "49160", - "codeCommune": "49311", - "libelleAcheminement": "ST PHILBERT DU PEUPLE", - "nomCommune": "ST PHILBERT DU PEUPLE" + "codePostal": "45300", + "codeCommune": "45111", + "libelleAcheminement": "COURCY AUX LOGES", + "nomCommune": "COURCY AUX LOGES" }, { - "codePostal": "26510", - "codeCommune": "26161", - "libelleAcheminement": "LEMPS", - "nomCommune": "LEMPS" + "codePostal": "55150", + "codeCommune": "55563", + "libelleAcheminement": "VILLERS LES MANGIENNES", + "nomCommune": "VILLERS LES MANGIENNES" }, { - "codePostal": "21360", - "codeCommune": "21066", - "libelleAcheminement": "BESSEY LA COUR", - "nomCommune": "BESSEY LA COUR" + "codePostal": "55110", + "codeCommune": "55349", + "libelleAcheminement": "MONTIGNY DEVANT SASSEY", + "nomCommune": "MONTIGNY DEVANT SASSEY" }, { - "codePostal": "34380", - "codeCommune": "34343", - "libelleAcheminement": "VIOLS LE FORT", - "nomCommune": "VIOLS LE FORT" + "codePostal": "42380", + "codeCommune": "42142", + "libelleAcheminement": "MERLE LEIGNEC", + "nomCommune": "MERLE LEIGNEC" }, { - "codePostal": "49400", - "codeCommune": "49328", - "libelleAcheminement": "SAUMUR", - "nomCommune": "SAUMUR" + "codePostal": "45260", + "codeCommune": "45112", + "libelleAcheminement": "LA COUR MARIGNY", + "nomCommune": "LA COUR MARIGNY" }, { - "codePostal": "26210", - "codeCommune": "26162", - "libelleAcheminement": "LENS LESTANG", - "nomCommune": "LENS LESTANG" + "codePostal": "55110", + "codeCommune": "55571", + "libelleAcheminement": "VILOSNES HARAUMONT", + "nomCommune": "VILOSNES HARAUMONT" }, { - "codePostal": "21320", - "codeCommune": "21082", - "libelleAcheminement": "BLANCEY", - "nomCommune": "BLANCEY" + "codePostal": "55400", + "codeCommune": "55357", + "libelleAcheminement": "MORGEMOULIN", + "nomCommune": "MORGEMOULIN" }, { - "codePostal": "34280", - "codeCommune": "34344", - "libelleAcheminement": "LA GRANDE MOTTE", - "nomCommune": "LA GRANDE MOTTE" + "codePostal": "42720", + "codeCommune": "42152", + "libelleAcheminement": "NANDAX", + "nomCommune": "NANDAX" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "45170", + "codeCommune": "45118", + "libelleAcheminement": "CROTTES EN PITHIVERAIS", + "nomCommune": "CROTTES EN PITHIVERAIS" }, { - "codePostal": "26310", - "codeCommune": "26164", - "libelleAcheminement": "LESCHES EN DIOIS", - "nomCommune": "LESCHES EN DIOIS" + "codePostal": "55190", + "codeCommune": "55573", + "libelleAcheminement": "VOID VACON", + "nomCommune": "VOID VACON" }, { - "codePostal": "21430", - "codeCommune": "21083", - "libelleAcheminement": "BLANOT", - "nomCommune": "BLANOT" + "codePostal": "55500", + "codeCommune": "55358", + "libelleAcheminement": "CHANTERAINE", + "nomCommune": "CHANTERAINE" }, { - "codePostal": "35150", - "codeCommune": "35002", - "libelleAcheminement": "AMANLIS", - "nomCommune": "AMANLIS" + "codePostal": "42470", + "codeCommune": "42153", + "libelleAcheminement": "NEAUX", + "nomCommune": "NEAUX" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "45570", + "codeCommune": "45122", + "libelleAcheminement": "DAMPIERRE EN BURLY", + "nomCommune": "DAMPIERRE EN BURLY" }, { - "codePostal": "26780", - "codeCommune": "26169", - "libelleAcheminement": "MALATAVERNE", - "nomCommune": "MALATAVERNE" + "codePostal": "55400", + "codeCommune": "55578", + "libelleAcheminement": "WARCQ", + "nomCommune": "WARCQ" }, { - "codePostal": "21690", - "codeCommune": "21084", - "libelleAcheminement": "SOURCE SEINE", - "nomCommune": "SOURCE SEINE" + "codePostal": "55400", + "codeCommune": "55361", + "libelleAcheminement": "MOULAINVILLE", + "nomCommune": "MOULAINVILLE" }, { - "codePostal": "35250", - "codeCommune": "35003", - "libelleAcheminement": "ANDOUILLE NEUVILLE", - "nomCommune": "ANDOUILLE NEUVILLE" + "codePostal": "42640", + "codeCommune": "42157", + "libelleAcheminement": "NOAILLY", + "nomCommune": "NOAILLY" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "45450", + "codeCommune": "45126", + "libelleAcheminement": "DONNERY", + "nomCommune": "DONNERY" }, { - "codePostal": "26120", - "codeCommune": "26170", - "libelleAcheminement": "MALISSARD", - "nomCommune": "MALISSARD" + "codePostal": "56350", + "codeCommune": "56001", + "libelleAcheminement": "ALLAIRE", + "nomCommune": "ALLAIRE" }, { - "codePostal": "21690", - "codeCommune": "21084", - "libelleAcheminement": "SOURCE SEINE", - "nomCommune": "SOURCE SEINE" + "codePostal": "55700", + "codeCommune": "55362", + "libelleAcheminement": "MOULINS ST HUBERT", + "nomCommune": "MOULINS ST HUBERT" }, { - "codePostal": "35460", - "codeCommune": "35004", - "libelleAcheminement": "VAL COUESNON", - "nomCommune": "VAL COUESNON" + "codePostal": "42260", + "codeCommune": "42160", + "libelleAcheminement": "NOLLIEUX", + "nomCommune": "NOLLIEUX" }, { - "codePostal": "49140", - "codeCommune": "49334", - "libelleAcheminement": "SERMAISE", - "nomCommune": "SERMAISE" + "codePostal": "45220", + "codeCommune": "45129", + "libelleAcheminement": "DOUCHY MONTCORBON", + "nomCommune": "DOUCHY MONTCORBON" }, { - "codePostal": "26150", - "codeCommune": "26175", - "libelleAcheminement": "MARIGNAC EN DIOIS", - "nomCommune": "MARIGNAC EN DIOIS" + "codePostal": "56190", + "codeCommune": "56002", + "libelleAcheminement": "AMBON", + "nomCommune": "AMBON" }, { - "codePostal": "21520", - "codeCommune": "21090", - "libelleAcheminement": "BOUDREVILLE", - "nomCommune": "BOUDREVILLE" + "codePostal": "55160", + "codeCommune": "55363", + "libelleAcheminement": "MOULOTTE", + "nomCommune": "MOULOTTE" }, { - "codePostal": "35130", - "codeCommune": "35008", - "libelleAcheminement": "AVAILLES SUR SEICHE", - "nomCommune": "AVAILLES SUR SEICHE" + "codePostal": "42120", + "codeCommune": "42161", + "libelleAcheminement": "NOTRE DAME DE BOISSET", + "nomCommune": "NOTRE DAME DE BOISSET" }, { - "codePostal": "49360", - "codeCommune": "49336", - "libelleAcheminement": "SOMLOIRE", - "nomCommune": "SOMLOIRE" + "codePostal": "45400", + "codeCommune": "45147", + "libelleAcheminement": "FLEURY LES AUBRAIS", + "nomCommune": "FLEURY LES AUBRAIS" }, { - "codePostal": "26600", - "codeCommune": "26179", - "libelleAcheminement": "MERCUROL VEAUNES", - "nomCommune": "MERCUROL VEAUNES" + "codePostal": "56610", + "codeCommune": "56003", + "libelleAcheminement": "ARRADON", + "nomCommune": "ARRADON" }, { - "codePostal": "21250", - "codeCommune": "21095", - "libelleAcheminement": "BOUSSELANGE", - "nomCommune": "BOUSSELANGE" + "codePostal": "55000", + "codeCommune": "55366", + "libelleAcheminement": "VAL D ORNAIN", + "nomCommune": "VAL D ORNAIN" }, { - "codePostal": "35500", - "codeCommune": "35015", - "libelleAcheminement": "BALAZE", - "nomCommune": "BALAZE" + "codePostal": "42120", + "codeCommune": "42166", + "libelleAcheminement": "PARIGNY", + "nomCommune": "PARIGNY" }, { - "codePostal": "49380", - "codeCommune": "49345", - "libelleAcheminement": "BELLEVIGNE EN LAYON", - "nomCommune": "BELLEVIGNE EN LAYON" + "codePostal": "45340", + "codeCommune": "45151", + "libelleAcheminement": "GAUBERTIN", + "nomCommune": "GAUBERTIN" }, { - "codePostal": "26170", - "codeCommune": "26188", - "libelleAcheminement": "MOLLANS SUR OUVEZE", - "nomCommune": "MOLLANS SUR OUVEZE" + "codePostal": "56190", + "codeCommune": "56004", + "libelleAcheminement": "ARZAL", + "nomCommune": "ARZAL" }, { - "codePostal": "21200", - "codeCommune": "21099", - "libelleAcheminement": "BOUZE LES BEAUNE", - "nomCommune": "BOUZE LES BEAUNE" + "codePostal": "55190", + "codeCommune": "55368", + "libelleAcheminement": "NAIVES EN BLOIS", + "nomCommune": "NAIVES EN BLOIS" }, { - "codePostal": "35190", - "codeCommune": "35022", - "libelleAcheminement": "BECHEREL", - "nomCommune": "BECHEREL" + "codePostal": "42800", + "codeCommune": "42186", + "libelleAcheminement": "RIVE DE GIER", + "nomCommune": "RIVE DE GIER" }, { - "codePostal": "49380", - "codeCommune": "49345", - "libelleAcheminement": "BELLEVIGNE EN LAYON", - "nomCommune": "BELLEVIGNE EN LAYON" + "codePostal": "45110", + "codeCommune": "45153", + "libelleAcheminement": "GERMIGNY DES PRES", + "nomCommune": "GERMIGNY DES PRES" }, { - "codePostal": "26170", - "codeCommune": "26189", - "libelleAcheminement": "MONTAUBAN SUR L OUVEZE", - "nomCommune": "MONTAUBAN SUR L OUVEZE" + "codePostal": "56800", + "codeCommune": "56006", + "libelleAcheminement": "AUGAN", + "nomCommune": "AUGAN" }, { - "codePostal": "21580", - "codeCommune": "21118", - "libelleAcheminement": "BUSSEROTTE ET MONTENAILLE", - "nomCommune": "BUSSEROTTE ET MONTENAILLE" + "codePostal": "55500", + "codeCommune": "55371", + "libelleAcheminement": "NANCOIS LE GRAND", + "nomCommune": "NANCOIS LE GRAND" }, { - "codePostal": "35830", - "codeCommune": "35024", - "libelleAcheminement": "BETTON", - "nomCommune": "BETTON" + "codePostal": "42300", + "codeCommune": "42187", + "libelleAcheminement": "ROANNE", + "nomCommune": "ROANNE" }, { - "codePostal": "49340", - "codeCommune": "49355", - "libelleAcheminement": "TREMENTINES", - "nomCommune": "TREMENTINES" + "codePostal": "45300", + "codeCommune": "45157", + "libelleAcheminement": "GIVRAINES", + "nomCommune": "GIVRAINES" }, { - "codePostal": "26400", - "codeCommune": "26195", - "libelleAcheminement": "MONTCLAR SUR GERVANNE", - "nomCommune": "MONTCLAR SUR GERVANNE" + "codePostal": "56870", + "codeCommune": "56008", + "libelleAcheminement": "BADEN", + "nomCommune": "BADEN" }, { - "codePostal": "21120", - "codeCommune": "21127", - "libelleAcheminement": "CHAIGNAY", - "nomCommune": "CHAIGNAY" + "codePostal": "55500", + "codeCommune": "55372", + "libelleAcheminement": "NANCOIS SUR ORNAIN", + "nomCommune": "NANCOIS SUR ORNAIN" }, { - "codePostal": "35150", - "codeCommune": "35028", - "libelleAcheminement": "BOISTRUDAN", - "nomCommune": "BOISTRUDAN" + "codePostal": "42330", + "codeCommune": "42206", + "libelleAcheminement": "ST BONNET LES OULES", + "nomCommune": "ST BONNET LES OULES" }, { - "codePostal": "49700", - "codeCommune": "49359", - "libelleAcheminement": "LES ULMES", - "nomCommune": "LES ULMES" + "codePostal": "45480", + "codeCommune": "45160", + "libelleAcheminement": "GRENEVILLE EN BEAUCE", + "nomCommune": "GRENEVILLE EN BEAUCE" }, { - "codePostal": "26310", - "codeCommune": "26204", - "libelleAcheminement": "MONTLAUR EN DIOIS", - "nomCommune": "MONTLAUR EN DIOIS" + "codePostal": "56390", + "codeCommune": "56022", + "libelleAcheminement": "BRANDIVY", + "nomCommune": "BRANDIVY" }, { - "codePostal": "21440", - "codeCommune": "21136", - "libelleAcheminement": "CHAMPAGNY", - "nomCommune": "CHAMPAGNY" + "codePostal": "55500", + "codeCommune": "55374", + "libelleAcheminement": "NANT LE PETIT", + "nomCommune": "NANT LE PETIT" }, { - "codePostal": "35890", - "codeCommune": "35033", - "libelleAcheminement": "BOURG DES COMPTES", - "nomCommune": "BOURG DES COMPTES" + "codePostal": "42400", + "codeCommune": "42207", + "libelleAcheminement": "ST CHAMOND", + "nomCommune": "ST CHAMOND" }, { - "codePostal": "49400", - "codeCommune": "49374", - "libelleAcheminement": "VILLEBERNIER", - "nomCommune": "VILLEBERNIER" + "codePostal": "45130", + "codeCommune": "45167", + "libelleAcheminement": "HUISSEAU SUR MAUVES", + "nomCommune": "HUISSEAU SUR MAUVES" }, { - "codePostal": "26750", - "codeCommune": "26207", - "libelleAcheminement": "MONTMIRAL", - "nomCommune": "MONTMIRAL" + "codePostal": "56800", + "codeCommune": "56032", + "libelleAcheminement": "CAMPENEAC", + "nomCommune": "CAMPENEAC" }, { - "codePostal": "21230", - "codeCommune": "21140", - "libelleAcheminement": "CHAMPIGNOLLES", - "nomCommune": "CHAMPIGNOLLES" + "codePostal": "55500", + "codeCommune": "55376", + "libelleAcheminement": "NANTOIS", + "nomCommune": "NANTOIS" }, { - "codePostal": "35160", - "codeCommune": "35040", - "libelleAcheminement": "BRETEIL", - "nomCommune": "BRETEIL" + "codePostal": "42123", + "codeCommune": "42212", + "libelleAcheminement": "ST CYR DE FAVIERES", + "nomCommune": "ST CYR DE FAVIERES" }, { - "codePostal": "49140", - "codeCommune": "49377", - "libelleAcheminement": "RIVES DU LOIR EN ANJOU", - "nomCommune": "RIVES DU LOIR EN ANJOU" + "codePostal": "45300", + "codeCommune": "45170", + "libelleAcheminement": "INTVILLE LA GUETARD", + "nomCommune": "INTVILLE LA GUETARD" }, { - "codePostal": "26350", - "codeCommune": "26210", - "libelleAcheminement": "VALHERBASSE", - "nomCommune": "VALHERBASSE" + "codePostal": "56140", + "codeCommune": "56035", + "libelleAcheminement": "CARO", + "nomCommune": "CARO" }, { - "codePostal": "21690", - "codeCommune": "21141", - "libelleAcheminement": "CHAMPRENAULT", - "nomCommune": "CHAMPRENAULT" + "codePostal": "55120", + "codeCommune": "55379", + "libelleAcheminement": "LE NEUFOUR", + "nomCommune": "LE NEUFOUR" }, { - "codePostal": "35190", - "codeCommune": "35050", - "libelleAcheminement": "CARDROC", - "nomCommune": "CARDROC" + "codePostal": "42114", + "codeCommune": "42213", + "libelleAcheminement": "ST CYR DE VALORGES", + "nomCommune": "ST CYR DE VALORGES" }, { - "codePostal": "49680", - "codeCommune": "49378", - "libelleAcheminement": "VIVY", - "nomCommune": "VIVY" + "codePostal": "45620", + "codeCommune": "45171", + "libelleAcheminement": "ISDES", + "nomCommune": "ISDES" }, { - "codePostal": "26340", - "codeCommune": "26228", - "libelleAcheminement": "PENNES LE SEC", - "nomCommune": "PENNES LE SEC" + "codePostal": "56580", + "codeCommune": "56047", + "libelleAcheminement": "CREDIN", + "nomCommune": "CREDIN" }, { - "codePostal": "21690", - "codeCommune": "21144", - "libelleAcheminement": "CHARENCEY", - "nomCommune": "CHARENCEY" + "codePostal": "55120", + "codeCommune": "55383", + "libelleAcheminement": "NEUVILLY EN ARGONNE", + "nomCommune": "NEUVILLY EN ARGONNE" }, { - "codePostal": "35500", - "codeCommune": "35061", - "libelleAcheminement": "LA CHAPELLE ERBREE", - "nomCommune": "LA CHAPELLE ERBREE" + "codePostal": "42111", + "codeCommune": "42217", + "libelleAcheminement": "ST DIDIER SUR ROCHEFORT", + "nomCommune": "ST DIDIER SUR ROCHEFORT" }, { - "codePostal": "50760", - "codeCommune": "50013", - "libelleAcheminement": "ANNEVILLE EN SAIRE", - "nomCommune": "ANNEVILLE EN SAIRE" + "codePostal": "45150", + "codeCommune": "45173", + "libelleAcheminement": "JARGEAU", + "nomCommune": "JARGEAU" }, { - "codePostal": "26400", - "codeCommune": "26240", - "libelleAcheminement": "PLAN DE BAIX", - "nomCommune": "PLAN DE BAIX" + "codePostal": "56540", + "codeCommune": "56048", + "libelleAcheminement": "LE CROISTY", + "nomCommune": "LE CROISTY" }, { - "codePostal": "21140", - "codeCommune": "21145", - "libelleAcheminement": "CHARIGNY", - "nomCommune": "CHARIGNY" + "codePostal": "55210", + "codeCommune": "55386", + "libelleAcheminement": "NONSARD LAMARCHE", + "nomCommune": "NONSARD LAMARCHE" }, { - "codePostal": "35150", - "codeCommune": "35088", - "libelleAcheminement": "CORPS NUDS", - "nomCommune": "CORPS NUDS" + "codePostal": "42610", + "codeCommune": "42228", + "libelleAcheminement": "ST GEORGES HAUTE VILLE", + "nomCommune": "ST GEORGES HAUTE VILLE" }, { - "codePostal": "50500", - "codeCommune": "50016", - "libelleAcheminement": "APPEVILLE", - "nomCommune": "APPEVILLE" + "codePostal": "45340", + "codeCommune": "45176", + "libelleAcheminement": "JURANVILLE", + "nomCommune": "JURANVILLE" }, { - "codePostal": "26470", - "codeCommune": "26245", - "libelleAcheminement": "POMMEROL", - "nomCommune": "POMMEROL" + "codePostal": "56420", + "codeCommune": "56051", + "libelleAcheminement": "CRUGUEL", + "nomCommune": "CRUGUEL" }, { - "codePostal": "21310", - "codeCommune": "21146", - "libelleAcheminement": "CHARMES", - "nomCommune": "CHARMES" + "codePostal": "55210", + "codeCommune": "55386", + "libelleAcheminement": "NONSARD LAMARCHE", + "nomCommune": "NONSARD LAMARCHE" }, { - "codePostal": "35290", - "codeCommune": "35091", - "libelleAcheminement": "LE CROUAIS", - "nomCommune": "LE CROUAIS" + "codePostal": "42540", + "codeCommune": "42249", + "libelleAcheminement": "ST JUST LA PENDUE", + "nomCommune": "ST JUST LA PENDUE" }, { - "codePostal": "50480", - "codeCommune": "50021", - "libelleAcheminement": "AUDOUVILLE LA HUBERT", - "nomCommune": "AUDOUVILLE LA HUBERT" + "codePostal": "45290", + "codeCommune": "45180", + "libelleAcheminement": "LANGESSE", + "nomCommune": "LANGESSE" }, { - "codePostal": "26800", - "codeCommune": "26252", - "libelleAcheminement": "PORTES LES VALENCE", - "nomCommune": "PORTES LES VALENCE" + "codePostal": "56410", + "codeCommune": "56054", + "libelleAcheminement": "ERDEVEN", + "nomCommune": "ERDEVEN" }, { - "codePostal": "21400", - "codeCommune": "21149", - "libelleAcheminement": "CHARREY SUR SEINE", - "nomCommune": "CHARREY SUR SEINE" + "codePostal": "55190", + "codeCommune": "55396", + "libelleAcheminement": "OURCHES SUR MEUSE", + "nomCommune": "OURCHES SUR MEUSE" }, { - "codePostal": "35130", - "codeCommune": "35102", - "libelleAcheminement": "DROUGES", - "nomCommune": "DROUGES" + "codePostal": "42800", + "codeCommune": "42259", + "libelleAcheminement": "ST MARTIN LA PLAINE", + "nomCommune": "ST MARTIN LA PLAINE" }, { - "codePostal": "50760", - "codeCommune": "50030", - "libelleAcheminement": "BARFLEUR", - "nomCommune": "BARFLEUR" + "codePostal": "45480", + "codeCommune": "45181", + "libelleAcheminement": "LEOUVILLE", + "nomCommune": "LEOUVILLE" }, { - "codePostal": "26310", - "codeCommune": "26262", - "libelleAcheminement": "RECOUBEAU JANSAC", - "nomCommune": "RECOUBEAU JANSAC" + "codePostal": "56320", + "codeCommune": "56057", + "libelleAcheminement": "LE FAOUET", + "nomCommune": "LE FAOUET" }, { - "codePostal": "21320", - "codeCommune": "21152", - "libelleAcheminement": "CHATEAUNEUF", - "nomCommune": "CHATEAUNEUF" + "codePostal": "55150", + "codeCommune": "55403", + "libelleAcheminement": "PEUVILLERS", + "nomCommune": "PEUVILLERS" }, { - "codePostal": "35620", - "codeCommune": "35106", - "libelleAcheminement": "ERCE EN LAMEE", - "nomCommune": "ERCE EN LAMEE" + "codePostal": "42330", + "codeCommune": "42264", + "libelleAcheminement": "ST MEDARD EN FOREZ", + "nomCommune": "ST MEDARD EN FOREZ" }, { - "codePostal": "50500", - "codeCommune": "50036", - "libelleAcheminement": "BAUPTE", - "nomCommune": "BAUPTE" + "codePostal": "45490", + "codeCommune": "45186", + "libelleAcheminement": "LORCY", + "nomCommune": "LORCY" }, { - "codePostal": "26190", - "codeCommune": "26270", - "libelleAcheminement": "ROCHECHINARD", - "nomCommune": "ROCHECHINARD" + "codePostal": "56130", + "codeCommune": "56058", + "libelleAcheminement": "FEREL", + "nomCommune": "FEREL" }, { - "codePostal": "21610", - "codeCommune": "21158", - "libelleAcheminement": "CHAUME ET COURCHAMP", - "nomCommune": "CHAUME ET COURCHAMP" + "codePostal": "55700", + "codeCommune": "55408", + "libelleAcheminement": "POUILLY SUR MEUSE", + "nomCommune": "POUILLY SUR MEUSE" }, { - "codePostal": "35370", - "codeCommune": "35109", - "libelleAcheminement": "ETRELLES", - "nomCommune": "ETRELLES" + "codePostal": "42410", + "codeCommune": "42265", + "libelleAcheminement": "ST MICHEL SUR RHONE", + "nomCommune": "ST MICHEL SUR RHONE" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "45300", + "codeCommune": "45191", + "libelleAcheminement": "LE MALESHERBOIS", + "nomCommune": "LE MALESHERBOIS" }, { - "codePostal": "26600", - "codeCommune": "26271", - "libelleAcheminement": "LA ROCHE DE GLUN", - "nomCommune": "LA ROCHE DE GLUN" + "codePostal": "56680", + "codeCommune": "56062", + "libelleAcheminement": "GAVRES", + "nomCommune": "GAVRES" }, { - "codePostal": "21520", - "codeCommune": "21159", - "libelleAcheminement": "LA CHAUME", - "nomCommune": "LA CHAUME" + "codePostal": "55300", + "codeCommune": "55415", + "libelleAcheminement": "RANZIERES", + "nomCommune": "RANZIERES" }, { - "codePostal": "35420", - "codeCommune": "35111", - "libelleAcheminement": "LE FERRE", - "nomCommune": "LE FERRE" + "codePostal": "42240", + "codeCommune": "42270", + "libelleAcheminement": "ST PAUL EN CORNILLON", + "nomCommune": "ST PAUL EN CORNILLON" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "45300", + "codeCommune": "45195", + "libelleAcheminement": "MAREAU AUX BOIS", + "nomCommune": "MAREAU AUX BOIS" }, { - "codePostal": "26300", - "codeCommune": "26273", - "libelleAcheminement": "ROCHEFORT SAMSON", - "nomCommune": "ROCHEFORT SAMSON" + "codePostal": "56530", + "codeCommune": "56063", + "libelleAcheminement": "GESTEL", + "nomCommune": "GESTEL" }, { - "codePostal": "21820", - "codeCommune": "21172", - "libelleAcheminement": "CHIVRES", - "nomCommune": "CHIVRES" + "codePostal": "55250", + "codeCommune": "55423", + "libelleAcheminement": "REMBERCOURT SOMMAISNE", + "nomCommune": "REMBERCOURT SOMMAISNE" }, { - "codePostal": "35133", - "codeCommune": "35112", - "libelleAcheminement": "FLEURIGNE", - "nomCommune": "FLEURIGNE" + "codePostal": "42520", + "codeCommune": "42272", + "libelleAcheminement": "ST PIERRE DE BOEUF", + "nomCommune": "ST PIERRE DE BOEUF" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "45370", + "codeCommune": "45196", + "libelleAcheminement": "MAREAU AUX PRES", + "nomCommune": "MAREAU AUX PRES" }, { - "codePostal": "26790", - "codeCommune": "26275", - "libelleAcheminement": "ROCHEGUDE", - "nomCommune": "ROCHEGUDE" + "codePostal": "56800", + "codeCommune": "56065", + "libelleAcheminement": "GOURHEL", + "nomCommune": "GOURHEL" }, { - "codePostal": "21200", - "codeCommune": "21173", - "libelleAcheminement": "CHOREY LES BEAUNE", - "nomCommune": "CHOREY LES BEAUNE" + "codePostal": "55130", + "codeCommune": "55436", + "libelleAcheminement": "LES ROISES", + "nomCommune": "LES ROISES" }, { - "codePostal": "35300", - "codeCommune": "35115", - "libelleAcheminement": "FOUGERES", - "nomCommune": "FOUGERES" + "codePostal": "42830", + "codeCommune": "42276", + "libelleAcheminement": "ST PRIEST LA PRUGNE", + "nomCommune": "ST PRIEST LA PRUGNE" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "45190", + "codeCommune": "45202", + "libelleAcheminement": "MESSAS", + "nomCommune": "MESSAS" }, { - "codePostal": "26260", - "codeCommune": "26294", - "libelleAcheminement": "ST BARDOUX", - "nomCommune": "ST BARDOUX" + "codePostal": "56110", + "codeCommune": "56066", + "libelleAcheminement": "GOURIN", + "nomCommune": "GOURIN" }, { - "codePostal": "21110", - "codeCommune": "21183", - "libelleAcheminement": "COLLONGES ET PREMIERES", - "nomCommune": "COLLONGES ET PREMIERES" + "codePostal": "55320", + "codeCommune": "55449", + "libelleAcheminement": "RUPT EN WOEVRE", + "nomCommune": "RUPT EN WOEVRE" }, { - "codePostal": "35290", - "codeCommune": "35117", - "libelleAcheminement": "GAEL", - "nomCommune": "GAEL" + "codePostal": "42440", + "codeCommune": "42278", + "libelleAcheminement": "ST PRIEST LA VETRE", + "nomCommune": "ST PRIEST LA VETRE" }, { - "codePostal": "50460", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "45200", + "codeCommune": "45208", + "libelleAcheminement": "MONTARGIS", + "nomCommune": "MONTARGIS" }, { - "codePostal": "26260", - "codeCommune": "26301", - "libelleAcheminement": "ST DONAT SUR L HERBASSE", - "nomCommune": "ST DONAT SUR L HERBASSE" + "codePostal": "56590", + "codeCommune": "56069", + "libelleAcheminement": "GROIX", + "nomCommune": "GROIX" }, { - "codePostal": "21200", - "codeCommune": "21185", - "libelleAcheminement": "COMBERTAULT", - "nomCommune": "COMBERTAULT" + "codePostal": "55220", + "codeCommune": "55453", + "libelleAcheminement": "ST ANDRE EN BARROIS", + "nomCommune": "ST ANDRE EN BARROIS" }, { - "codePostal": "35580", - "codeCommune": "35123", - "libelleAcheminement": "GOVEN", - "nomCommune": "GOVEN" + "codePostal": "42370", + "codeCommune": "42281", + "libelleAcheminement": "ST RIRAND", + "nomCommune": "ST RIRAND" }, { - "codePostal": "50460", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "45700", + "codeCommune": "45212", + "libelleAcheminement": "MONTCRESSON", + "nomCommune": "MONTCRESSON" }, { - "codePostal": "26150", - "codeCommune": "26308", - "libelleAcheminement": "ST JULIEN EN QUINT", - "nomCommune": "ST JULIEN EN QUINT" + "codePostal": "56150", + "codeCommune": "56074", + "libelleAcheminement": "GUENIN", + "nomCommune": "GUENIN" }, { - "codePostal": "21700", - "codeCommune": "21186", - "libelleAcheminement": "COMBLANCHIEN", - "nomCommune": "COMBLANCHIEN" + "codePostal": "55160", + "codeCommune": "55457", + "libelleAcheminement": "ST HILAIRE EN WOEVRE", + "nomCommune": "ST HILAIRE EN WOEVRE" }, { - "codePostal": "35580", - "codeCommune": "35127", - "libelleAcheminement": "GUIGNEN", - "nomCommune": "GUIGNEN" + "codePostal": "42470", + "codeCommune": "42289", + "libelleAcheminement": "ST SYMPHORIEN DE LAY", + "nomCommune": "ST SYMPHORIEN DE LAY" }, { - "codePostal": "50800", - "codeCommune": "50048", - "libelleAcheminement": "BESLON", - "nomCommune": "BESLON" + "codePostal": "45260", + "codeCommune": "45213", + "libelleAcheminement": "MONTEREAU", + "nomCommune": "MONTEREAU" }, { - "codePostal": "26420", - "codeCommune": "26309", - "libelleAcheminement": "ST JULIEN EN VERCORS", - "nomCommune": "ST JULIEN EN VERCORS" + "codePostal": "56190", + "codeCommune": "56077", + "libelleAcheminement": "LE GUERNO", + "nomCommune": "LE GUERNO" }, { - "codePostal": "21320", - "codeCommune": "21187", - "libelleAcheminement": "COMMARIN", - "nomCommune": "COMMARIN" + "codePostal": "55160", + "codeCommune": "55457", + "libelleAcheminement": "ST HILAIRE EN WOEVRE", + "nomCommune": "ST HILAIRE EN WOEVRE" }, { - "codePostal": "35120", - "codeCommune": "35132", - "libelleAcheminement": "HIREL", - "nomCommune": "HIREL" + "codePostal": "42600", + "codeCommune": "42290", + "libelleAcheminement": "ST THOMAS LA GARDE", + "nomCommune": "ST THOMAS LA GARDE" }, { - "codePostal": "50610", - "codeCommune": "50066", - "libelleAcheminement": "JULLOUVILLE", - "nomCommune": "JULLOUVILLE" + "codePostal": "45170", + "codeCommune": "45214", + "libelleAcheminement": "MONTIGNY", + "nomCommune": "MONTIGNY" }, { - "codePostal": "26350", - "codeCommune": "26310", - "libelleAcheminement": "ST LAURENT D ONAY", - "nomCommune": "ST LAURENT D ONAY" + "codePostal": "56520", + "codeCommune": "56078", + "libelleAcheminement": "GUIDEL", + "nomCommune": "GUIDEL" }, { - "codePostal": "21190", - "codeCommune": "21190", - "libelleAcheminement": "CORCELLES LES ARTS", - "nomCommune": "CORCELLES LES ARTS" + "codePostal": "55100", + "codeCommune": "55468", + "libelleAcheminement": "SAMOGNEUX", + "nomCommune": "SAMOGNEUX" }, { - "codePostal": "35120", - "codeCommune": "35132", - "libelleAcheminement": "HIREL", - "nomCommune": "HIREL" + "codePostal": "42110", + "codeCommune": "42296", + "libelleAcheminement": "SALT EN DONZY", + "nomCommune": "SALT EN DONZY" }, { - "codePostal": "50200", - "codeCommune": "50072", - "libelleAcheminement": "BRAINVILLE", - "nomCommune": "BRAINVILLE" + "codePostal": "45270", + "codeCommune": "45223", + "libelleAcheminement": "NESPLOY", + "nomCommune": "NESPLOY" }, { - "codePostal": "26740", - "codeCommune": "26312", - "libelleAcheminement": "ST MARCEL LES SAUZET", - "nomCommune": "ST MARCEL LES SAUZET" + "codePostal": "56240", + "codeCommune": "56089", + "libelleAcheminement": "INGUINIEL", + "nomCommune": "INGUINIEL" }, { - "codePostal": "21160", - "codeCommune": "21192", - "libelleAcheminement": "CORCELLES LES MONTS", - "nomCommune": "CORCELLES LES MONTS" + "codePostal": "55000", + "codeCommune": "55470", + "libelleAcheminement": "SAUDRUPT", + "nomCommune": "SAUDRUPT" }, { - "codePostal": "35150", - "codeCommune": "35136", - "libelleAcheminement": "JANZE", - "nomCommune": "JANZE" + "codePostal": "42990", + "codeCommune": "42298", + "libelleAcheminement": "SAUVAIN", + "nomCommune": "SAUVAIN" }, { - "codePostal": "50290", - "codeCommune": "50076", - "libelleAcheminement": "BREHAL", - "nomCommune": "BREHAL" + "codePostal": "45500", + "codeCommune": "45227", + "libelleAcheminement": "NEVOY", + "nomCommune": "NEVOY" }, { - "codePostal": "26330", - "codeCommune": "26314", - "libelleAcheminement": "ST MARTIN D AOUT", - "nomCommune": "ST MARTIN D AOUT" + "codePostal": "56300", + "codeCommune": "56093", + "libelleAcheminement": "KERGRIST", + "nomCommune": "KERGRIST" }, { - "codePostal": "21160", - "codeCommune": "21200", - "libelleAcheminement": "COUCHEY", - "nomCommune": "COUCHEY" + "codePostal": "55110", + "codeCommune": "55471", + "libelleAcheminement": "SAULMORY VILLEFRANCHE", + "nomCommune": "SAULMORY VILLEFRANCHE" }, { - "codePostal": "35450", - "codeCommune": "35141", - "libelleAcheminement": "LANDAVRAN", - "nomCommune": "LANDAVRAN" + "codePostal": "42460", + "codeCommune": "42300", + "libelleAcheminement": "SEVELINGES", + "nomCommune": "SEVELINGES" }, { - "codePostal": "50290", - "codeCommune": "50076", - "libelleAcheminement": "BREHAL", - "nomCommune": "BREHAL" + "codePostal": "45170", + "codeCommune": "45231", + "libelleAcheminement": "OISON", + "nomCommune": "OISON" }, { - "codePostal": "26190", - "codeCommune": "26316", - "libelleAcheminement": "ST MARTIN LE COLONEL", - "nomCommune": "ST MARTIN LE COLONEL" + "codePostal": "56690", + "codeCommune": "56096", + "libelleAcheminement": "LANDAUL", + "nomCommune": "LANDAUL" }, { - "codePostal": "21460", - "codeCommune": "21203", - "libelleAcheminement": "COURCELLES FREMOY", - "nomCommune": "COURCELLES FREMOY" + "codePostal": "55300", + "codeCommune": "55487", + "libelleAcheminement": "SEUZEY", + "nomCommune": "SEUZEY" }, { - "codePostal": "35133", - "codeCommune": "35142", - "libelleAcheminement": "LANDEAN", - "nomCommune": "LANDEAN" + "codePostal": "42290", + "codeCommune": "42302", + "libelleAcheminement": "SORBIERS", + "nomCommune": "SORBIERS" }, { - "codePostal": "50260", - "codeCommune": "50082", - "libelleAcheminement": "BRICQUEBEC EN COTENTIN", - "nomCommune": "BRICQUEBEC EN COTENTIN" + "codePostal": "45390", + "codeCommune": "45233", + "libelleAcheminement": "ONDREVILLE SUR ESSONNE", + "nomCommune": "ONDREVILLE SUR ESSONNE" }, { - "codePostal": "26110", - "codeCommune": "26317", - "libelleAcheminement": "ST MAURICE SUR EYGUES", - "nomCommune": "ST MAURICE SUR EYGUES" + "codePostal": "56120", + "codeCommune": "56102", + "libelleAcheminement": "FORGES DE LANOUEE", + "nomCommune": "FORGES DE LANOUEE" }, { - "codePostal": "21580", - "codeCommune": "21207", - "libelleAcheminement": "COURLON", - "nomCommune": "COURLON" + "codePostal": "55000", + "codeCommune": "55488", + "libelleAcheminement": "SILMONT", + "nomCommune": "SILMONT" }, { - "codePostal": "35850", - "codeCommune": "35144", - "libelleAcheminement": "LANGAN", - "nomCommune": "LANGAN" + "codePostal": "42830", + "codeCommune": "42314", + "libelleAcheminement": "LA TUILIERE", + "nomCommune": "LA TUILIERE" }, { - "codePostal": "50260", - "codeCommune": "50082", - "libelleAcheminement": "BRICQUEBEC EN COTENTIN", - "nomCommune": "BRICQUEBEC EN COTENTIN" + "codePostal": "45000", + "codeCommune": "45234", + "libelleAcheminement": "ORLEANS", + "nomCommune": "ORLEANS" }, { - "codePostal": "26130", - "codeCommune": "26324", - "libelleAcheminement": "ST PAUL TROIS CHATEAUX", - "nomCommune": "ST PAUL TROIS CHATEAUX" + "codePostal": "56240", + "codeCommune": "56104", + "libelleAcheminement": "LANVAUDAN", + "nomCommune": "LANVAUDAN" }, { - "codePostal": "21220", - "codeCommune": "21219", - "libelleAcheminement": "CURTIL VERGY", - "nomCommune": "CURTIL VERGY" + "codePostal": "55190", + "codeCommune": "55496", + "libelleAcheminement": "SORCY ST MARTIN", + "nomCommune": "SORCY ST MARTIN" }, { - "codePostal": "35630", - "codeCommune": "35146", - "libelleAcheminement": "LANGOUET", - "nomCommune": "LANGOUET" + "codePostal": "42240", + "codeCommune": "42316", + "libelleAcheminement": "UNIEUX", + "nomCommune": "UNIEUX" }, { - "codePostal": "50200", - "codeCommune": "50084", - "libelleAcheminement": "BRICQUEVILLE LA BLOUETTE", - "nomCommune": "BRICQUEVILLE LA BLOUETTE" + "codePostal": "45100", + "codeCommune": "45234", + "libelleAcheminement": "ORLEANS", + "nomCommune": "ORLEANS" }, { - "codePostal": "26270", - "codeCommune": "26337", - "libelleAcheminement": "SAULCE SUR RHONE", - "nomCommune": "SAULCE SUR RHONE" + "codePostal": "56190", + "codeCommune": "56109", + "libelleAcheminement": "LAUZACH", + "nomCommune": "LAUZACH" }, { - "codePostal": "21360", - "codeCommune": "21221", - "libelleAcheminement": "CUSSY LA COLONNE", - "nomCommune": "CUSSY LA COLONNE" + "codePostal": "55000", + "codeCommune": "55514", + "libelleAcheminement": "TREMONT SUR SAULX", + "nomCommune": "TREMONT SUR SAULX" }, { - "codePostal": "35580", - "codeCommune": "35149", - "libelleAcheminement": "LASSY", - "nomCommune": "LASSY" + "codePostal": "42131", + "codeCommune": "42322", + "libelleAcheminement": "LA VALLA EN GIER", + "nomCommune": "LA VALLA EN GIER" }, { - "codePostal": "50750", - "codeCommune": "50095", - "libelleAcheminement": "CANISY", - "nomCommune": "CANISY" + "codePostal": "45480", + "codeCommune": "45240", + "libelleAcheminement": "OUTARVILLE", + "nomCommune": "OUTARVILLE" }, { - "codePostal": "26600", - "codeCommune": "26347", - "libelleAcheminement": "TAIN L HERMITAGE", - "nomCommune": "TAIN L HERMITAGE" + "codePostal": "56160", + "codeCommune": "56110", + "libelleAcheminement": "LIGNOL", + "nomCommune": "LIGNOL" }, { - "codePostal": "21150", - "codeCommune": "21226", - "libelleAcheminement": "DARCEY", - "nomCommune": "DARCEY" + "codePostal": "55250", + "codeCommune": "55517", + "libelleAcheminement": "SEUIL D ARGONNE", + "nomCommune": "SEUIL D ARGONNE" }, { - "codePostal": "35133", - "codeCommune": "35150", - "libelleAcheminement": "LECOUSSE", - "nomCommune": "LECOUSSE" + "codePostal": "42520", + "codeCommune": "42326", + "libelleAcheminement": "VERANNE", + "nomCommune": "VERANNE" }, { - "codePostal": "50580", - "codeCommune": "50097", - "libelleAcheminement": "CANVILLE LA ROCQUE", - "nomCommune": "CANVILLE LA ROCQUE" + "codePostal": "45480", + "codeCommune": "45240", + "libelleAcheminement": "OUTARVILLE", + "nomCommune": "OUTARVILLE" }, { - "codePostal": "26750", - "codeCommune": "26355", - "libelleAcheminement": "TRIORS", - "nomCommune": "TRIORS" + "codePostal": "56160", + "codeCommune": "56113", + "libelleAcheminement": "LOCMALO", + "nomCommune": "LOCMALO" }, { - "codePostal": "21540", - "codeCommune": "21234", - "libelleAcheminement": "DREE", - "nomCommune": "DREE" + "codePostal": "55250", + "codeCommune": "55517", + "libelleAcheminement": "SEUIL D ARGONNE", + "nomCommune": "SEUIL D ARGONNE" }, { - "codePostal": "35550", - "codeCommune": "35151", - "libelleAcheminement": "LIEURON", - "nomCommune": "LIEURON" + "codePostal": "43490", + "codeCommune": "43008", + "libelleAcheminement": "ARLEMPDES", + "nomCommune": "ARLEMPDES" }, { - "codePostal": "50570", - "codeCommune": "50098", - "libelleAcheminement": "CARANTILLY", - "nomCommune": "CARANTILLY" + "codePostal": "45200", + "codeCommune": "45249", + "libelleAcheminement": "PAUCOURT", + "nomCommune": "PAUCOURT" }, { - "codePostal": "26230", - "codeCommune": "26360", - "libelleAcheminement": "VALAURIE", - "nomCommune": "VALAURIE" + "codePostal": "56390", + "codeCommune": "56115", + "libelleAcheminement": "LOCMARIA GRAND CHAMP", + "nomCommune": "LOCMARIA GRAND CHAMP" }, { - "codePostal": "21170", - "codeCommune": "21239", - "libelleAcheminement": "ECHENON", - "nomCommune": "ECHENON" + "codePostal": "55500", + "codeCommune": "55518", + "libelleAcheminement": "COUSANCES LES TRICONVILLE", + "nomCommune": "COUSANCES LES TRICONVILLE" }, { - "codePostal": "35111", - "codeCommune": "35153", - "libelleAcheminement": "LILLEMER", - "nomCommune": "LILLEMER" + "codePostal": "43340", + "codeCommune": "43019", + "libelleAcheminement": "BARGES", + "nomCommune": "BARGES" }, { - "codePostal": "50130", - "codeCommune": "50129", - "libelleAcheminement": "CHERBOURG EN COTENTIN", - "nomCommune": "CHERBOURG EN COTENTIN" + "codePostal": "45300", + "codeCommune": "45253", + "libelleAcheminement": "PITHIVIERS LE VIEIL", + "nomCommune": "PITHIVIERS LE VIEIL" }, { - "codePostal": "26310", - "codeCommune": "26361", - "libelleAcheminement": "VALDROME", - "nomCommune": "VALDROME" + "codePostal": "56800", + "codeCommune": "56122", + "libelleAcheminement": "LOYAT", + "nomCommune": "LOYAT" }, { - "codePostal": "21360", - "codeCommune": "21243", - "libelleAcheminement": "ECUTIGNY", - "nomCommune": "ECUTIGNY" + "codePostal": "55310", + "codeCommune": "55519", + "libelleAcheminement": "TRONVILLE EN BARROIS", + "nomCommune": "TRONVILLE EN BARROIS" }, { - "codePostal": "35133", - "codeCommune": "35157", - "libelleAcheminement": "LE LOROUX", - "nomCommune": "LE LOROUX" + "codePostal": "43100", + "codeCommune": "43022", + "libelleAcheminement": "BEAUMONT", + "nomCommune": "BEAUMONT" }, { - "codePostal": "50800", - "codeCommune": "50137", - "libelleAcheminement": "LA COLOMBE", - "nomCommune": "LA COLOMBE" + "codePostal": "45490", + "codeCommune": "45255", + "libelleAcheminement": "PREFONTAINES", + "nomCommune": "PREFONTAINES" }, { - "codePostal": "26600", - "codeCommune": "26379", - "libelleAcheminement": "GRANGES LES BEAUMONT", - "nomCommune": "GRANGES LES BEAUMONT" + "codePostal": "56430", + "codeCommune": "56127", + "libelleAcheminement": "MAURON", + "nomCommune": "MAURON" }, { - "codePostal": "21320", - "codeCommune": "21244", - "libelleAcheminement": "EGUILLY", - "nomCommune": "EGUILLY" + "codePostal": "55190", + "codeCommune": "55520", + "libelleAcheminement": "TROUSSEY", + "nomCommune": "TROUSSEY" }, { - "codePostal": "35133", - "codeCommune": "35163", - "libelleAcheminement": "LUITRE DOMPIERRE", - "nomCommune": "LUITRE DOMPIERRE" + "codePostal": "43500", + "codeCommune": "43023", + "libelleAcheminement": "BEAUNE SUR ARZON", + "nomCommune": "BEAUNE SUR ARZON" }, { - "codePostal": "50420", - "codeCommune": "50139", - "libelleAcheminement": "CONDE SUR VIRE", - "nomCommune": "CONDE SUR VIRE" + "codePostal": "45310", + "codeCommune": "45262", + "libelleAcheminement": "ROUVRAY STE CROIX", + "nomCommune": "ROUVRAY STE CROIX" }, { - "codePostal": "27500", - "codeCommune": "27006", - "libelleAcheminement": "AIZIER", - "nomCommune": "AIZIER" + "codePostal": "56320", + "codeCommune": "56131", + "libelleAcheminement": "MESLAN", + "nomCommune": "MESLAN" }, { - "codePostal": "21500", - "codeCommune": "21259", - "libelleAcheminement": "FAIN LES MONTBARD", - "nomCommune": "FAIN LES MONTBARD" + "codePostal": "55800", + "codeCommune": "55531", + "libelleAcheminement": "VASSINCOURT", + "nomCommune": "VASSINCOURT" }, { - "codePostal": "35210", - "codeCommune": "35163", - "libelleAcheminement": "LUITRE DOMPIERRE", - "nomCommune": "LUITRE DOMPIERRE" + "codePostal": "43590", + "codeCommune": "43025", + "libelleAcheminement": "BEAUZAC", + "nomCommune": "BEAUZAC" }, { - "codePostal": "50330", - "codeCommune": "50142", - "libelleAcheminement": "VICQ SUR MER", - "nomCommune": "VICQ SUR MER" + "codePostal": "45300", + "codeCommune": "45263", + "libelleAcheminement": "ROUVRES ST JEAN", + "nomCommune": "ROUVRES ST JEAN" }, { - "codePostal": "27140", - "codeCommune": "27010", - "libelleAcheminement": "AMECOURT", - "nomCommune": "AMECOURT" + "codePostal": "56890", + "codeCommune": "56132", + "libelleAcheminement": "MEUCON", + "nomCommune": "MEUCON" }, { - "codePostal": "21410", - "codeCommune": "21273", - "libelleAcheminement": "FLEUREY SUR OUCHE", - "nomCommune": "FLEUREY SUR OUCHE" + "codePostal": "55000", + "codeCommune": "55541", + "libelleAcheminement": "VAVINCOURT", + "nomCommune": "VAVINCOURT" }, { - "codePostal": "35240", - "codeCommune": "35165", - "libelleAcheminement": "MARCILLE ROBERT", - "nomCommune": "MARCILLE ROBERT" + "codePostal": "43160", + "codeCommune": "43027", + "libelleAcheminement": "BERBEZIT", + "nomCommune": "BERBEZIT" }, { - "codePostal": "50330", - "codeCommune": "50142", - "libelleAcheminement": "VICQ SUR MER", - "nomCommune": "VICQ SUR MER" + "codePostal": "45210", + "codeCommune": "45265", + "libelleAcheminement": "ROZOY LE VIEIL", + "nomCommune": "ROZOY LE VIEIL" }, { - "codePostal": "27380", - "codeCommune": "27013", - "libelleAcheminement": "AMFREVILLE SOUS LES MONTS", - "nomCommune": "AMFREVILLE SOUS LES MONTS" + "codePostal": "56490", + "codeCommune": "56134", + "libelleAcheminement": "MOHON", + "nomCommune": "MOHON" }, { - "codePostal": "21260", - "codeCommune": "21275", - "libelleAcheminement": "FONCEGRIVE", - "nomCommune": "FONCEGRIVE" + "codePostal": "55210", + "codeCommune": "55551", + "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", + "nomCommune": "VIGNEULLES LES HATTONCHATEL" }, { - "codePostal": "35640", - "codeCommune": "35167", - "libelleAcheminement": "MARTIGNE FERCHAUD", - "nomCommune": "MARTIGNE FERCHAUD" + "codePostal": "43170", + "codeCommune": "43029", + "libelleAcheminement": "LA BESSEYRE ST MARY", + "nomCommune": "LA BESSEYRE ST MARY" }, { - "codePostal": "50630", - "codeCommune": "50150", - "libelleAcheminement": "CRASVILLE", - "nomCommune": "CRASVILLE" + "codePostal": "45410", + "codeCommune": "45266", + "libelleAcheminement": "RUAN", + "nomCommune": "RUAN" }, { - "codePostal": "27290", - "codeCommune": "27018", - "libelleAcheminement": "APPEVILLE ANNEBAULT", - "nomCommune": "APPEVILLE ANNEBAULT" + "codePostal": "56230", + "codeCommune": "56135", + "libelleAcheminement": "MOLAC", + "nomCommune": "MOLAC" }, { - "codePostal": "21121", - "codeCommune": "21278", - "libelleAcheminement": "FONTAINE LES DIJON", - "nomCommune": "FONTAINE LES DIJON" + "codePostal": "55600", + "codeCommune": "55554", + "libelleAcheminement": "VILLECLOYE", + "nomCommune": "VILLECLOYE" }, { - "codePostal": "35330", - "codeCommune": "35168", - "libelleAcheminement": "VAL D ANAST", - "nomCommune": "VAL D ANAST" + "codePostal": "43450", + "codeCommune": "43033", + "libelleAcheminement": "BLESLE", + "nomCommune": "BLESLE" }, { - "codePostal": "50370", - "codeCommune": "50152", - "libelleAcheminement": "LES CRESNAYS", - "nomCommune": "LES CRESNAYS" + "codePostal": "45130", + "codeCommune": "45269", + "libelleAcheminement": "ST AY", + "nomCommune": "ST AY" }, { - "codePostal": "27260", - "codeCommune": "27021", - "libelleAcheminement": "ASNIERES", - "nomCommune": "ASNIERES" + "codePostal": "56250", + "codeCommune": "56137", + "libelleAcheminement": "MONTERBLANC", + "nomCommune": "MONTERBLANC" }, { - "codePostal": "21440", - "codeCommune": "21284", - "libelleAcheminement": "FRANCHEVILLE", - "nomCommune": "FRANCHEVILLE" + "codePostal": "55260", + "codeCommune": "55555", + "libelleAcheminement": "VILLE DEVANT BELRAIN", + "nomCommune": "VILLE DEVANT BELRAIN" }, { - "codePostal": "35450", - "codeCommune": "35170", - "libelleAcheminement": "MECE", - "nomCommune": "MECE" + "codePostal": "43360", + "codeCommune": "43038", + "libelleAcheminement": "BOURNONCLE ST PIERRE", + "nomCommune": "BOURNONCLE ST PIERRE" }, { - "codePostal": "50580", - "codeCommune": "50183", - "libelleAcheminement": "FIERVILLE LES MINES", - "nomCommune": "FIERVILLE LES MINES" + "codePostal": "45550", + "codeCommune": "45273", + "libelleAcheminement": "ST DENIS DE L HOTEL", + "nomCommune": "ST DENIS DE L HOTEL" }, { - "codePostal": "27940", - "codeCommune": "27022", - "libelleAcheminement": "LE VAL D HAZEY", - "nomCommune": "LE VAL D HAZEY" + "codePostal": "56190", + "codeCommune": "56143", + "libelleAcheminement": "MUZILLAC", + "nomCommune": "MUZILLAC" }, { - "codePostal": "21140", - "codeCommune": "21291", - "libelleAcheminement": "GENAY", - "nomCommune": "GENAY" + "codePostal": "55500", + "codeCommune": "55562", + "libelleAcheminement": "VILLERS LE SEC", + "nomCommune": "VILLERS LE SEC" }, { - "codePostal": "35360", - "codeCommune": "35171", - "libelleAcheminement": "MEDREAC", - "nomCommune": "MEDREAC" + "codePostal": "43270", + "codeCommune": "43043", + "libelleAcheminement": "CEAUX D ALLEGRE", + "nomCommune": "CEAUX D ALLEGRE" }, { - "codePostal": "50310", - "codeCommune": "50190", - "libelleAcheminement": "FONTENAY SUR MER", - "nomCommune": "FONTENAY SUR MER" + "codePostal": "45220", + "codeCommune": "45275", + "libelleAcheminement": "ST FIRMIN DES BOIS", + "nomCommune": "ST FIRMIN DES BOIS" }, { - "codePostal": "27930", - "codeCommune": "27033", - "libelleAcheminement": "BACQUEPUIS", - "nomCommune": "BACQUEPUIS" + "codePostal": "56500", + "codeCommune": "56144", + "libelleAcheminement": "EVELLYS", + "nomCommune": "EVELLYS" }, { - "codePostal": "21520", - "codeCommune": "21296", - "libelleAcheminement": "GEVROLLES", - "nomCommune": "GEVROLLES" + "codePostal": "55160", + "codeCommune": "55565", + "libelleAcheminement": "VILLERS SOUS PAREID", + "nomCommune": "VILLERS SOUS PAREID" }, { - "codePostal": "35420", - "codeCommune": "35174", - "libelleAcheminement": "MELLE", - "nomCommune": "MELLE" + "codePostal": "43150", + "codeCommune": "43047", + "libelleAcheminement": "CHADRON", + "nomCommune": "CHADRON" }, { - "codePostal": "50450", - "codeCommune": "50197", - "libelleAcheminement": "GAVRAY SUR SIENNE", - "nomCommune": "GAVRAY SUR SIENNE" + "codePostal": "45600", + "codeCommune": "45277", + "libelleAcheminement": "ST FLORENT", + "nomCommune": "ST FLORENT" }, { - "codePostal": "27140", - "codeCommune": "27045", - "libelleAcheminement": "BAZINCOURT SUR EPTE", - "nomCommune": "BAZINCOURT SUR EPTE" + "codePostal": "56130", + "codeCommune": "56153", + "libelleAcheminement": "PEAULE", + "nomCommune": "PEAULE" }, { - "codePostal": "21150", - "codeCommune": "21299", - "libelleAcheminement": "GISSEY SOUS FLAVIGNY", - "nomCommune": "GISSEY SOUS FLAVIGNY" + "codePostal": "55190", + "codeCommune": "55573", + "libelleAcheminement": "VOID VACON", + "nomCommune": "VOID VACON" }, { - "codePostal": "35360", - "codeCommune": "35184", - "libelleAcheminement": "MONTAUBAN DE BRETAGNE", - "nomCommune": "MONTAUBAN DE BRETAGNE" + "codePostal": "43300", + "codeCommune": "43060", + "libelleAcheminement": "CHARRAIX", + "nomCommune": "CHARRAIX" }, { - "codePostal": "50560", - "codeCommune": "50198", - "libelleAcheminement": "GEFFOSSES", - "nomCommune": "GEFFOSSES" + "codePostal": "45500", + "codeCommune": "45280", + "libelleAcheminement": "ST GONDON", + "nomCommune": "ST GONDON" }, { - "codePostal": "27230", - "codeCommune": "27046", - "libelleAcheminement": "BAZOQUES", - "nomCommune": "BAZOQUES" + "codePostal": "56220", + "codeCommune": "56154", + "libelleAcheminement": "PEILLAC", + "nomCommune": "PEILLAC" }, { - "codePostal": "21400", - "codeCommune": "21302", - "libelleAcheminement": "GOMMEVILLE", - "nomCommune": "GOMMEVILLE" + "codePostal": "55150", + "codeCommune": "55580", + "libelleAcheminement": "WAVRILLE", + "nomCommune": "WAVRILLE" }, { - "codePostal": "35120", - "codeCommune": "35186", - "libelleAcheminement": "MONT DOL", - "nomCommune": "MONT DOL" + "codePostal": "43320", + "codeCommune": "43062", + "libelleAcheminement": "CHASPUZAC", + "nomCommune": "CHASPUZAC" }, { - "codePostal": "50330", - "codeCommune": "50209", - "libelleAcheminement": "GONNEVILLE LE THEIL", - "nomCommune": "GONNEVILLE LE THEIL" + "codePostal": "45160", + "codeCommune": "45282", + "libelleAcheminement": "ST HILAIRE ST MESMIN", + "nomCommune": "ST HILAIRE ST MESMIN" }, { - "codePostal": "27190", - "codeCommune": "27047", - "libelleAcheminement": "BEAUBRAY", - "nomCommune": "BEAUBRAY" + "codePostal": "56160", + "codeCommune": "56156", + "libelleAcheminement": "PERSQUEN", + "nomCommune": "PERSQUEN" }, { - "codePostal": "21290", - "codeCommune": "21312", - "libelleAcheminement": "GURGY LA VILLE", - "nomCommune": "GURGY LA VILLE" + "codePostal": "55210", + "codeCommune": "55583", + "libelleAcheminement": "WOEL", + "nomCommune": "WOEL" }, { - "codePostal": "35760", - "codeCommune": "35189", - "libelleAcheminement": "MONTGERMONT", - "nomCommune": "MONTGERMONT" + "codePostal": "43230", + "codeCommune": "43063", + "libelleAcheminement": "CHASSAGNES", + "nomCommune": "CHASSAGNES" }, { - "codePostal": "50420", - "codeCommune": "50214", - "libelleAcheminement": "GOUVETS", - "nomCommune": "GOUVETS" + "codePostal": "45700", + "codeCommune": "45283", + "libelleAcheminement": "ST HILAIRE SUR PUISEAUX", + "nomCommune": "ST HILAIRE SUR PUISEAUX" }, { - "codePostal": "27330", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "56420", + "codeCommune": "56157", + "libelleAcheminement": "PLAUDREN", + "nomCommune": "PLAUDREN" }, { - "codePostal": "21150", - "codeCommune": "21314", - "libelleAcheminement": "HAUTEROCHE", - "nomCommune": "HAUTEROCHE" + "codePostal": "56640", + "codeCommune": "56005", + "libelleAcheminement": "ARZON", + "nomCommune": "ARZON" }, { - "codePostal": "35520", - "codeCommune": "35193", - "libelleAcheminement": "MONTREUIL LE GAST", - "nomCommune": "MONTREUIL LE GAST" + "codePostal": "43440", + "codeCommune": "43064", + "libelleAcheminement": "CHASSIGNOLLES", + "nomCommune": "CHASSIGNOLLES" }, { - "codePostal": "50200", - "codeCommune": "50215", - "libelleAcheminement": "GOUVILLE SUR MER", - "nomCommune": "GOUVILLE SUR MER" + "codePostal": "45700", + "codeCommune": "45293", + "libelleAcheminement": "ST MAURICE SUR FESSARD", + "nomCommune": "ST MAURICE SUR FESSARD" }, { - "codePostal": "27330", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "56680", + "codeCommune": "56169", + "libelleAcheminement": "PLOUHINEC", + "nomCommune": "PLOUHINEC" }, { - "codePostal": "21110", - "codeCommune": "21330", - "libelleAcheminement": "LABERGEMENT FOIGNEY", - "nomCommune": "LABERGEMENT FOIGNEY" + "codePostal": "56150", + "codeCommune": "56010", + "libelleAcheminement": "BAUD", + "nomCommune": "BAUD" }, { - "codePostal": "35310", - "codeCommune": "35196", - "libelleAcheminement": "MORDELLES", - "nomCommune": "MORDELLES" + "codePostal": "43430", + "codeCommune": "43066", + "libelleAcheminement": "CHAUDEYROLLES", + "nomCommune": "CHAUDEYROLLES" }, { - "codePostal": "50200", - "codeCommune": "50219", - "libelleAcheminement": "GRATOT", - "nomCommune": "GRATOT" + "codePostal": "45300", + "codeCommune": "45320", + "libelleAcheminement": "THIGNONVILLE", + "nomCommune": "THIGNONVILLE" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "56400", + "codeCommune": "56175", + "libelleAcheminement": "PLUMERGAT", + "nomCommune": "PLUMERGAT" }, { - "codePostal": "21330", - "codeCommune": "21336", - "libelleAcheminement": "LAIGNES", - "nomCommune": "LAIGNES" + "codePostal": "56380", + "codeCommune": "56012", + "libelleAcheminement": "BEIGNON", + "nomCommune": "BEIGNON" }, { - "codePostal": "35410", - "codeCommune": "35204", - "libelleAcheminement": "NOUVOITOU", - "nomCommune": "NOUVOITOU" + "codePostal": "43160", + "codeCommune": "43076", + "libelleAcheminement": "CONNANGLES", + "nomCommune": "CONNANGLES" }, { - "codePostal": "50310", - "codeCommune": "50227", - "libelleAcheminement": "LE HAM", - "nomCommune": "LE HAM" + "codePostal": "45210", + "codeCommune": "45322", + "libelleAcheminement": "THORAILLES", + "nomCommune": "THORAILLES" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "56330", + "codeCommune": "56177", + "libelleAcheminement": "PLUVIGNER", + "nomCommune": "PLUVIGNER" }, { - "codePostal": "21760", - "codeCommune": "21337", - "libelleAcheminement": "LAMARCHE SUR SAONE", - "nomCommune": "LAMARCHE SUR SAONE" + "codePostal": "56550", + "codeCommune": "56013", + "libelleAcheminement": "BELZ", + "nomCommune": "BELZ" }, { - "codePostal": "35380", - "codeCommune": "35211", - "libelleAcheminement": "PAIMPONT", - "nomCommune": "PAIMPONT" + "codePostal": "43490", + "codeCommune": "43077", + "libelleAcheminement": "COSTAROS", + "nomCommune": "COSTAROS" }, { - "codePostal": "50690", - "codeCommune": "50230", - "libelleAcheminement": "HARDINVAST", - "nomCommune": "HARDINVAST" + "codePostal": "45170", + "codeCommune": "45325", + "libelleAcheminement": "TIVERNON", + "nomCommune": "TIVERNON" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "56330", + "codeCommune": "56177", + "libelleAcheminement": "PLUVIGNER", + "nomCommune": "PLUVIGNER" }, { - "codePostal": "21140", - "codeCommune": "21341", - "libelleAcheminement": "LANTILLY", - "nomCommune": "LANTILLY" + "codePostal": "56500", + "codeCommune": "56017", + "libelleAcheminement": "BIGNAN", + "nomCommune": "BIGNAN" }, { - "codePostal": "35370", - "codeCommune": "35217", - "libelleAcheminement": "LE PERTRE", - "nomCommune": "LE PERTRE" + "codePostal": "43500", + "codeCommune": "43080", + "libelleAcheminement": "CRAPONNE SUR ARZON", + "nomCommune": "CRAPONNE SUR ARZON" }, { - "codePostal": "50200", - "codeCommune": "50243", - "libelleAcheminement": "HEUGUEVILLE SUR SIENNE", - "nomCommune": "HEUGUEVILLE SUR SIENNE" + "codePostal": "45220", + "codeCommune": "45329", + "libelleAcheminement": "TRIGUERES", + "nomCommune": "TRIGUERES" }, { - "codePostal": "27170", - "codeCommune": "27050", - "libelleAcheminement": "BEAUMONTEL", - "nomCommune": "BEAUMONTEL" + "codePostal": "56380", + "codeCommune": "56180", + "libelleAcheminement": "PORCARO", + "nomCommune": "PORCARO" }, { - "codePostal": "21520", - "codeCommune": "21350", - "libelleAcheminement": "LIGNEROLLES", - "nomCommune": "LIGNEROLLES" + "codePostal": "56700", + "codeCommune": "56021", + "libelleAcheminement": "BRANDERION", + "nomCommune": "BRANDERION" }, { - "codePostal": "35320", - "codeCommune": "35218", - "libelleAcheminement": "LE PETIT FOUGERAY", - "nomCommune": "LE PETIT FOUGERAY" + "codePostal": "43160", + "codeCommune": "43093", + "libelleAcheminement": "FELINES", + "nomCommune": "FELINES" }, { - "codePostal": "50480", - "codeCommune": "50246", - "libelleAcheminement": "HIESVILLE", - "nomCommune": "HIESVILLE" + "codePostal": "45260", + "codeCommune": "45334", + "libelleAcheminement": "VIEILLES MAISONS SUR JOUDRY", + "nomCommune": "VIEILLES MAISONS SUR JOUDRY" }, { - "codePostal": "27800", - "codeCommune": "27052", - "libelleAcheminement": "LE BEC HELLOUIN", - "nomCommune": "LE BEC HELLOUIN" + "codePostal": "56140", + "codeCommune": "56191", + "libelleAcheminement": "REMINIAC", + "nomCommune": "REMINIAC" }, { - "codePostal": "21290", - "codeCommune": "21359", - "libelleAcheminement": "LUCEY", - "nomCommune": "LUCEY" + "codePostal": "56580", + "codeCommune": "56024", + "libelleAcheminement": "BREHAN", + "nomCommune": "BREHAN" }, { - "codePostal": "35680", - "codeCommune": "35220", - "libelleAcheminement": "PIRE CHANCE", - "nomCommune": "PIRE CHANCE" + "codePostal": "43250", + "codeCommune": "43099", + "libelleAcheminement": "FRUGERES LES MINES", + "nomCommune": "FRUGERES LES MINES" }, { - "codePostal": "50320", - "codeCommune": "50247", - "libelleAcheminement": "HOCQUIGNY", - "nomCommune": "HOCQUIGNY" + "codePostal": "45600", + "codeCommune": "45336", + "libelleAcheminement": "VIGLAIN", + "nomCommune": "VIGLAIN" }, { - "codePostal": "27160", - "codeCommune": "27054", - "libelleAcheminement": "BEMECOURT", - "nomCommune": "BEMECOURT" + "codePostal": "56140", + "codeCommune": "56211", + "libelleAcheminement": "ST CONGARD", + "nomCommune": "ST CONGARD" }, { - "codePostal": "21390", - "codeCommune": "21380", - "libelleAcheminement": "MARCIGNY SOUS THIL", - "nomCommune": "MARCIGNY SOUS THIL" + "codePostal": "56330", + "codeCommune": "56031", + "libelleAcheminement": "CAMORS", + "nomCommune": "CAMORS" }, { - "codePostal": "35470", - "codeCommune": "35221", - "libelleAcheminement": "PLECHATEL", - "nomCommune": "PLECHATEL" + "codePostal": "43500", + "codeCommune": "43108", + "libelleAcheminement": "JULLIANGES", + "nomCommune": "JULLIANGES" }, { - "codePostal": "50700", - "codeCommune": "50251", - "libelleAcheminement": "HUBERVILLE", - "nomCommune": "HUBERVILLE" + "codePostal": "45600", + "codeCommune": "45340", + "libelleAcheminement": "VILLEMURLIN", + "nomCommune": "VILLEMURLIN" }, { - "codePostal": "27520", - "codeCommune": "27062", - "libelleAcheminement": "LES MONTS DU ROUMOIS", - "nomCommune": "LES MONTS DU ROUMOIS" + "codePostal": "56920", + "codeCommune": "56213", + "libelleAcheminement": "ST GERAND CROIXANVEC", + "nomCommune": "ST GERAND CROIXANVEC" }, { - "codePostal": "21320", - "codeCommune": "21382", - "libelleAcheminement": "MARCILLY OGNY", - "nomCommune": "MARCILLY OGNY" + "codePostal": "56480", + "codeCommune": "56041", + "libelleAcheminement": "CLEGUEREC", + "nomCommune": "CLEGUEREC" }, { - "codePostal": "35380", - "codeCommune": "35223", - "libelleAcheminement": "PLELAN LE GRAND", - "nomCommune": "PLELAN LE GRAND" + "codePostal": "43260", + "codeCommune": "43113", + "libelleAcheminement": "LANTRIAC", + "nomCommune": "LANTRIAC" }, { - "codePostal": "50510", - "codeCommune": "50252", - "libelleAcheminement": "HUDIMESNIL", - "nomCommune": "HUDIMESNIL" + "codePostal": "45170", + "codeCommune": "45342", + "libelleAcheminement": "VILLEREAU", + "nomCommune": "VILLEREAU" }, { - "codePostal": "27250", - "codeCommune": "27069", - "libelleAcheminement": "BOIS ARNAULT", - "nomCommune": "BOIS ARNAULT" + "codePostal": "56730", + "codeCommune": "56214", + "libelleAcheminement": "ST GILDAS DE RHUYS", + "nomCommune": "ST GILDAS DE RHUYS" }, { - "codePostal": "21320", - "codeCommune": "21392", - "libelleAcheminement": "MARTROIS", - "nomCommune": "MARTROIS" + "codePostal": "56200", + "codeCommune": "56044", + "libelleAcheminement": "COURNON", + "nomCommune": "COURNON" }, { - "codePostal": "35210", - "codeCommune": "35232", - "libelleAcheminement": "PRINCE", - "nomCommune": "PRINCE" + "codePostal": "43800", + "codeCommune": "43119", + "libelleAcheminement": "LAVOUTE SUR LOIRE", + "nomCommune": "LAVOUTE SUR LOIRE" }, { - "codePostal": "50540", - "codeCommune": "50256", - "libelleAcheminement": "ISIGNY LE BUAT", - "nomCommune": "ISIGNY LE BUAT" + "codePostal": "45700", + "codeCommune": "45345", + "libelleAcheminement": "VIMORY", + "nomCommune": "VIMORY" }, { - "codePostal": "27700", - "codeCommune": "27070", - "libelleAcheminement": "FRENELLES EN VEXIN", - "nomCommune": "FRENELLES EN VEXIN" + "codePostal": "56660", + "codeCommune": "56222", + "libelleAcheminement": "ST JEAN BREVELAY", + "nomCommune": "ST JEAN BREVELAY" }, { - "codePostal": "21350", - "codeCommune": "21395", - "libelleAcheminement": "MASSINGY LES VITTEAUX", - "nomCommune": "MASSINGY LES VITTEAUX" + "codePostal": "56950", + "codeCommune": "56046", + "libelleAcheminement": "CRACH", + "nomCommune": "CRACH" }, { - "codePostal": "35130", - "codeCommune": "35235", - "libelleAcheminement": "RANNEE", - "nomCommune": "RANNEE" + "codePostal": "43210", + "codeCommune": "43127", + "libelleAcheminement": "MALVALETTE", + "nomCommune": "MALVALETTE" }, { - "codePostal": "50540", - "codeCommune": "50256", - "libelleAcheminement": "ISIGNY LE BUAT", - "nomCommune": "ISIGNY LE BUAT" + "codePostal": "46120", + "codeCommune": "46004", + "libelleAcheminement": "ANGLARS", + "nomCommune": "ANGLARS" }, { - "codePostal": "27220", - "codeCommune": "27078", - "libelleAcheminement": "LA BOISSIERE", - "nomCommune": "LA BOISSIERE" + "codePostal": "56350", + "codeCommune": "56232", + "libelleAcheminement": "ST PERREUX", + "nomCommune": "ST PERREUX" }, { - "codePostal": "21510", - "codeCommune": "21396", - "libelleAcheminement": "MAUVILLY", - "nomCommune": "MAUVILLY" + "codePostal": "56120", + "codeCommune": "56050", + "libelleAcheminement": "LA CROIX HELLEAN", + "nomCommune": "LA CROIX HELLEAN" }, { - "codePostal": "35600", - "codeCommune": "35236", - "libelleAcheminement": "REDON", - "nomCommune": "REDON" + "codePostal": "43160", + "codeCommune": "43128", + "libelleAcheminement": "MALVIERES", + "nomCommune": "MALVIERES" }, { - "codePostal": "50520", - "codeCommune": "50260", - "libelleAcheminement": "JUVIGNY LES VALLEES", - "nomCommune": "JUVIGNY LES VALLEES" + "codePostal": "46800", + "codeCommune": "46033", + "libelleAcheminement": "PORTE DU QUERCY", + "nomCommune": "PORTE DU QUERCY" }, { - "codePostal": "27310", - "codeCommune": "27085", - "libelleAcheminement": "FLANCOURT CRESCY EN ROUMOIS", - "nomCommune": "FLANCOURT CRESCY EN ROUMOIS" + "codePostal": "56120", + "codeCommune": "56236", + "libelleAcheminement": "ST SERVANT", + "nomCommune": "ST SERVANT" }, { - "codePostal": "21200", - "codeCommune": "21411", - "libelleAcheminement": "MEURSANGES", - "nomCommune": "MEURSANGES" + "codePostal": "56390", + "codeCommune": "56067", + "libelleAcheminement": "GRAND CHAMP", + "nomCommune": "GRAND CHAMP" }, { - "codePostal": "35200", - "codeCommune": "35238", - "libelleAcheminement": "RENNES", - "nomCommune": "RENNES" + "codePostal": "43190", + "codeCommune": "43129", + "libelleAcheminement": "LE MAS DE TENCE", + "nomCommune": "LE MAS DE TENCE" }, { - "codePostal": "50520", - "codeCommune": "50260", - "libelleAcheminement": "JUVIGNY LES VALLEES", - "nomCommune": "JUVIGNY LES VALLEES" + "codePostal": "46100", + "codeCommune": "46035", + "libelleAcheminement": "BOUSSAC", + "nomCommune": "BOUSSAC" }, { - "codePostal": "27670", - "codeCommune": "27090", - "libelleAcheminement": "BOSROUMOIS", - "nomCommune": "BOSROUMOIS" + "codePostal": "56860", + "codeCommune": "56243", + "libelleAcheminement": "SENE", + "nomCommune": "SENE" }, { - "codePostal": "21190", - "codeCommune": "21412", - "libelleAcheminement": "MEURSAULT", - "nomCommune": "MEURSAULT" + "codePostal": "56120", + "codeCommune": "56070", + "libelleAcheminement": "GUEGON", + "nomCommune": "GUEGON" }, { - "codePostal": "35650", - "codeCommune": "35240", - "libelleAcheminement": "LE RHEU", - "nomCommune": "LE RHEU" + "codePostal": "43230", + "codeCommune": "43131", + "libelleAcheminement": "MAZERAT AUROUZE", + "nomCommune": "MAZERAT AUROUZE" }, { - "codePostal": "50520", - "codeCommune": "50260", - "libelleAcheminement": "JUVIGNY LES VALLEES", - "nomCommune": "JUVIGNY LES VALLEES" + "codePostal": "46330", + "codeCommune": "46037", + "libelleAcheminement": "BOUZIES", + "nomCommune": "BOUZIES" }, { - "codePostal": "27480", - "codeCommune": "27094", - "libelleAcheminement": "BOSQUENTIN", - "nomCommune": "BOSQUENTIN" + "codePostal": "56300", + "codeCommune": "56246", + "libelleAcheminement": "LE SOURN", + "nomCommune": "LE SOURN" }, { - "codePostal": "21310", - "codeCommune": "21416", - "libelleAcheminement": "MIREBEAU SUR BEZE", - "nomCommune": "MIREBEAU SUR BEZE" + "codePostal": "56800", + "codeCommune": "56079", + "libelleAcheminement": "GUILLAC", + "nomCommune": "GUILLAC" }, { - "codePostal": "35560", - "codeCommune": "35242", - "libelleAcheminement": "RIMOU", - "nomCommune": "RIMOU" + "codePostal": "43300", + "codeCommune": "43132", + "libelleAcheminement": "MAZEYRAT D ALLIER", + "nomCommune": "MAZEYRAT D ALLIER" }, { - "codePostal": "50430", - "codeCommune": "50265", - "libelleAcheminement": "LAULNE", - "nomCommune": "LAULNE" + "codePostal": "46320", + "codeCommune": "46039", + "libelleAcheminement": "BRENGUES", + "nomCommune": "BRENGUES" }, { - "codePostal": "27250", - "codeCommune": "27096", - "libelleAcheminement": "LES BOTTEREAUX", - "nomCommune": "LES BOTTEREAUX" + "codePostal": "56800", + "codeCommune": "56249", + "libelleAcheminement": "TAUPONT", + "nomCommune": "TAUPONT" }, { - "codePostal": "21210", - "codeCommune": "21417", - "libelleAcheminement": "MISSERY", - "nomCommune": "MISSERY" + "codePostal": "56490", + "codeCommune": "56080", + "libelleAcheminement": "GUILLIERS", + "nomCommune": "GUILLIERS" }, { - "codePostal": "35250", - "codeCommune": "35251", - "libelleAcheminement": "ST AUBIN D AUBIGNE", - "nomCommune": "ST AUBIN D AUBIGNE" + "codePostal": "43100", + "codeCommune": "43133", + "libelleAcheminement": "MERCOEUR", + "nomCommune": "MERCOEUR" }, { - "codePostal": "50310", - "codeCommune": "50268", - "libelleAcheminement": "LESTRE", - "nomCommune": "LESTRE" + "codePostal": "46140", + "codeCommune": "46044", + "libelleAcheminement": "CAILLAC", + "nomCommune": "CAILLAC" }, { - "codePostal": "27700", - "codeCommune": "27097", - "libelleAcheminement": "BOUAFLES", - "nomCommune": "BOUAFLES" + "codePostal": "56450", + "codeCommune": "56251", + "libelleAcheminement": "THEIX NOYALO", + "nomCommune": "THEIX NOYALO" }, { - "codePostal": "21510", - "codeCommune": "21418", - "libelleAcheminement": "MOITRON", - "nomCommune": "MOITRON" + "codePostal": "56450", + "codeCommune": "56084", + "libelleAcheminement": "LE HEZO", + "nomCommune": "LE HEZO" }, { - "codePostal": "35800", - "codeCommune": "35256", - "libelleAcheminement": "ST BRIAC SUR MER", - "nomCommune": "ST BRIAC SUR MER" + "codePostal": "43800", + "codeCommune": "43134", + "libelleAcheminement": "MEZERES", + "nomCommune": "MEZERES" }, { - "codePostal": "50250", - "codeCommune": "50273", - "libelleAcheminement": "MONTSENELLE", - "nomCommune": "MONTSENELLE" + "codePostal": "46160", + "codeCommune": "46045", + "libelleAcheminement": "CAJARC", + "nomCommune": "CAJARC" }, { - "codePostal": "27210", - "codeCommune": "27100", - "libelleAcheminement": "BOULLEVILLE", - "nomCommune": "BOULLEVILLE" + "codePostal": "56140", + "codeCommune": "56253", + "libelleAcheminement": "TREAL", + "nomCommune": "TREAL" }, { - "codePostal": "21140", - "codeCommune": "21431", - "libelleAcheminement": "MONTIGNY SUR ARMANCON", - "nomCommune": "MONTIGNY SUR ARMANCON" + "codePostal": "56170", + "codeCommune": "56085", + "libelleAcheminement": "ILE DE HOEDIC", + "nomCommune": "HOEDIC" }, { - "codePostal": "35460", - "codeCommune": "35257", - "libelleAcheminement": "MAEN ROCH", - "nomCommune": "MAEN ROCH" + "codePostal": "43120", + "codeCommune": "43137", + "libelleAcheminement": "MONISTROL SUR LOIRE", + "nomCommune": "MONISTROL SUR LOIRE" }, { - "codePostal": "50290", - "codeCommune": "50277", - "libelleAcheminement": "LONGUEVILLE", - "nomCommune": "LONGUEVILLE" + "codePostal": "46350", + "codeCommune": "46047", + "libelleAcheminement": "CALES", + "nomCommune": "CALES" }, { - "codePostal": "27210", - "codeCommune": "27100", - "libelleAcheminement": "BOULLEVILLE", - "nomCommune": "BOULLEVILLE" + "codePostal": "56400", + "codeCommune": "56263", + "libelleAcheminement": "STE ANNE D AURAY", + "nomCommune": "STE ANNE D AURAY" }, { - "codePostal": "21220", - "codeCommune": "21442", - "libelleAcheminement": "MOREY ST DENIS", - "nomCommune": "MOREY ST DENIS" + "codePostal": "56840", + "codeCommune": "56088", + "libelleAcheminement": "ILE D ARZ", + "nomCommune": "ILE D ARZ" }, { - "codePostal": "35350", - "codeCommune": "35263", - "libelleAcheminement": "ST COULOMB", - "nomCommune": "ST COULOMB" + "codePostal": "43270", + "codeCommune": "43138", + "libelleAcheminement": "MONLET", + "nomCommune": "MONLET" }, { - "codePostal": "50320", - "codeCommune": "50281", - "libelleAcheminement": "LA LUCERNE D OUTREMER", - "nomCommune": "LA LUCERNE D OUTREMER" + "codePostal": "46160", + "codeCommune": "46049", + "libelleAcheminement": "CALVIGNAC", + "nomCommune": "CALVIGNAC" }, { - "codePostal": "27380", - "codeCommune": "27104", - "libelleAcheminement": "BOURG BEAUDOUIN", - "nomCommune": "BOURG BEAUDOUIN" + "codePostal": "57920", + "codeCommune": "57001", + "libelleAcheminement": "ABONCOURT", + "nomCommune": "ABONCOURT" }, { - "codePostal": "21400", - "codeCommune": "21444", - "libelleAcheminement": "MOSSON", - "nomCommune": "MOSSON" + "codePostal": "56690", + "codeCommune": "56097", + "libelleAcheminement": "LANDEVANT", + "nomCommune": "LANDEVANT" }, { - "codePostal": "35230", - "codeCommune": "35266", - "libelleAcheminement": "ST ERBLON", - "nomCommune": "ST ERBLON" + "codePostal": "43290", + "codeCommune": "43141", + "libelleAcheminement": "MONTFAUCON EN VELAY", + "nomCommune": "MONTFAUCON EN VELAY" }, { - "codePostal": "50870", - "codeCommune": "50282", - "libelleAcheminement": "LE LUOT", - "nomCommune": "LE LUOT" + "codePostal": "46700", + "codeCommune": "46061", + "libelleAcheminement": "CASSAGNES", + "nomCommune": "CASSAGNES" }, { - "codePostal": "27520", - "codeCommune": "27105", - "libelleAcheminement": "GRAND BOURGTHEROULDE", - "nomCommune": "GRAND BOURGTHEROULDE" + "codePostal": "57340", + "codeCommune": "57004", + "libelleAcheminement": "ACHAIN", + "nomCommune": "ACHAIN" }, { - "codePostal": "21500", - "codeCommune": "21446", - "libelleAcheminement": "MOUTIERS ST JEAN", - "nomCommune": "MOUTIERS ST JEAN" + "codePostal": "56120", + "codeCommune": "56102", + "libelleAcheminement": "FORGES DE LANOUEE", + "nomCommune": "FORGES DE LANOUEE" }, { - "codePostal": "35610", - "codeCommune": "35270", - "libelleAcheminement": "ST GEORGES DE GREHAIGNE", - "nomCommune": "ST GEORGES DE GREHAIGNE" + "codePostal": "43300", + "codeCommune": "43149", + "libelleAcheminement": "PEBRAC", + "nomCommune": "PEBRAC" }, { - "codePostal": "50260", - "codeCommune": "50285", - "libelleAcheminement": "MAGNEVILLE", - "nomCommune": "MAGNEVILLE" + "codePostal": "46310", + "codeCommune": "46072", + "libelleAcheminement": "CONCORES", + "nomCommune": "CONCORES" }, { - "codePostal": "27230", - "codeCommune": "27106", - "libelleAcheminement": "BOURNAINVILLE FAVEROLLES", - "nomCommune": "BOURNAINVILLE FAVEROLLES" + "codePostal": "57380", + "codeCommune": "57008", + "libelleAcheminement": "ADELANGE", + "nomCommune": "ADELANGE" }, { - "codePostal": "21390", - "codeCommune": "21449", - "libelleAcheminement": "NAN SOUS THIL", - "nomCommune": "NAN SOUS THIL" + "codePostal": "56870", + "codeCommune": "56106", + "libelleAcheminement": "LARMOR BADEN", + "nomCommune": "LARMOR BADEN" }, { - "codePostal": "35370", - "codeCommune": "35272", - "libelleAcheminement": "ST GERMAIN DU PINEL", - "nomCommune": "ST GERMAIN DU PINEL" + "codePostal": "43000", + "codeCommune": "43157", + "libelleAcheminement": "LE PUY EN VELAY", + "nomCommune": "LE PUY EN VELAY" }, { - "codePostal": "50300", - "codeCommune": "50288", - "libelleAcheminement": "MARCEY LES GREVES", - "nomCommune": "MARCEY LES GREVES" + "codePostal": "46130", + "codeCommune": "46076", + "libelleAcheminement": "CORNAC", + "nomCommune": "CORNAC" }, { - "codePostal": "27800", - "codeCommune": "27113", - "libelleAcheminement": "BRETIGNY", - "nomCommune": "BRETIGNY" + "codePostal": "57590", + "codeCommune": "57009", + "libelleAcheminement": "AJONCOURT", + "nomCommune": "AJONCOURT" }, { - "codePostal": "21800", - "codeCommune": "21452", - "libelleAcheminement": "NEUILLY CRIMOLOIS", - "nomCommune": "NEUILLY CRIMOLOIS" + "codePostal": "56230", + "codeCommune": "56108", + "libelleAcheminement": "LARRE", + "nomCommune": "LARRE" }, { - "codePostal": "35630", - "codeCommune": "35276", - "libelleAcheminement": "ST GONDRAN", - "nomCommune": "ST GONDRAN" + "codePostal": "43290", + "codeCommune": "43159", + "libelleAcheminement": "RAUCOULES", + "nomCommune": "RAUCOULES" }, { - "codePostal": "50190", - "codeCommune": "50289", - "libelleAcheminement": "MARCHESIEUX", - "nomCommune": "MARCHESIEUX" + "codePostal": "46320", + "codeCommune": "46090", + "libelleAcheminement": "DURBANS", + "nomCommune": "DURBANS" }, { - "codePostal": "27270", - "codeCommune": "27117", - "libelleAcheminement": "BROGLIE", - "nomCommune": "BROGLIE" + "codePostal": "57130", + "codeCommune": "57021", + "libelleAcheminement": "ANCY DORNOT", + "nomCommune": "ANCY DORNOT" }, { - "codePostal": "21490", - "codeCommune": "21462", - "libelleAcheminement": "NORGES LA VILLE", - "nomCommune": "NORGES LA VILLE" + "codePostal": "56220", + "codeCommune": "56111", + "libelleAcheminement": "LIMERZEL", + "nomCommune": "LIMERZEL" }, { - "codePostal": "35136", - "codeCommune": "35281", - "libelleAcheminement": "ST JACQUES DE LA LANDE", - "nomCommune": "ST JACQUES DE LA LANDE" + "codePostal": "43340", + "codeCommune": "43160", + "libelleAcheminement": "RAURET", + "nomCommune": "RAURET" }, { - "codePostal": "50410", - "codeCommune": "50291", - "libelleAcheminement": "MARGUERAY", - "nomCommune": "MARGUERAY" + "codePostal": "46320", + "codeCommune": "46093", + "libelleAcheminement": "ESPAGNAC STE EULALIE", + "nomCommune": "ESPAGNAC STE EULALIE" }, { - "codePostal": "27190", - "codeCommune": "27120", - "libelleAcheminement": "BUREY", - "nomCommune": "BUREY" + "codePostal": "57440", + "codeCommune": "57022", + "libelleAcheminement": "ANGEVILLERS", + "nomCommune": "ANGEVILLERS" }, { - "codePostal": "21310", - "codeCommune": "21467", - "libelleAcheminement": "OISILLY", - "nomCommune": "OISILLY" + "codePostal": "56390", + "codeCommune": "56120", + "libelleAcheminement": "LOCQUELTAS", + "nomCommune": "LOCQUELTAS" }, { - "codePostal": "35220", - "codeCommune": "35283", - "libelleAcheminement": "ST JEAN SUR VILAINE", - "nomCommune": "ST JEAN SUR VILAINE" + "codePostal": "43300", + "codeCommune": "43167", + "libelleAcheminement": "ST ARCONS D ALLIER", + "nomCommune": "ST ARCONS D ALLIER" }, { - "codePostal": "50500", - "codeCommune": "50298", - "libelleAcheminement": "MEAUTIS", - "nomCommune": "MEAUTIS" + "codePostal": "46320", + "codeCommune": "46094", + "libelleAcheminement": "ESPEDAILLAC", + "nomCommune": "ESPEDAILLAC" }, { - "codePostal": "27490", - "codeCommune": "27124", - "libelleAcheminement": "CAILLY SUR EURE", - "nomCommune": "CAILLY SUR EURE" + "codePostal": "57640", + "codeCommune": "57024", + "libelleAcheminement": "ANTILLY", + "nomCommune": "ANTILLY" }, { - "codePostal": "21260", - "codeCommune": "21472", - "libelleAcheminement": "ORVILLE", - "nomCommune": "ORVILLE" + "codePostal": "56220", + "codeCommune": "56123", + "libelleAcheminement": "MALANSAC", + "nomCommune": "MALANSAC" }, { - "codePostal": "35270", - "codeCommune": "35286", - "libelleAcheminement": "ST LEGER DES PRES", - "nomCommune": "ST LEGER DES PRES" + "codePostal": "43300", + "codeCommune": "43171", + "libelleAcheminement": "ST BERAIN", + "nomCommune": "ST BERAIN" }, { - "codePostal": "50000", - "codeCommune": "50321", - "libelleAcheminement": "LE MESNIL ROUXELIN", - "nomCommune": "LE MESNIL ROUXELIN" + "codePostal": "46700", + "codeCommune": "46107", + "libelleAcheminement": "FLORESSAS", + "nomCommune": "FLORESSAS" }, { - "codePostal": "27310", - "codeCommune": "27133", - "libelleAcheminement": "CAUMONT", - "nomCommune": "CAUMONT" + "codePostal": "57320", + "codeCommune": "57025", + "libelleAcheminement": "ANZELING", + "nomCommune": "ANZELING" }, { - "codePostal": "21250", - "codeCommune": "21475", - "libelleAcheminement": "PAGNY LE CHATEAU", - "nomCommune": "PAGNY LE CHATEAU" + "codePostal": "56130", + "codeCommune": "56126", + "libelleAcheminement": "MARZAN", + "nomCommune": "MARZAN" }, { - "codePostal": "35400", - "codeCommune": "35288", - "libelleAcheminement": "ST MALO", - "nomCommune": "ST MALO" + "codePostal": "43510", + "codeCommune": "43198", + "libelleAcheminement": "ST JEAN LACHALM", + "nomCommune": "ST JEAN LACHALM" }, { - "codePostal": "50620", - "codeCommune": "50324", - "libelleAcheminement": "LE MESNIL VENERON", - "nomCommune": "LE MESNIL VENERON" + "codePostal": "46400", + "codeCommune": "46115", + "libelleAcheminement": "FRAYSSINHES", + "nomCommune": "FRAYSSINHES" }, { - "codePostal": "27190", - "codeCommune": "27141", - "libelleAcheminement": "CHAMP DOLENT", - "nomCommune": "CHAMP DOLENT" + "codePostal": "57640", + "codeCommune": "57028", + "libelleAcheminement": "ARGANCY", + "nomCommune": "ARGANCY" }, { - "codePostal": "21420", - "codeCommune": "21480", - "libelleAcheminement": "PERNAND VERGELESSES", - "nomCommune": "PERNAND VERGELESSES" + "codePostal": "56310", + "codeCommune": "56128", + "libelleAcheminement": "MELRAND", + "nomCommune": "MELRAND" }, { - "codePostal": "35480", - "codeCommune": "35289", - "libelleAcheminement": "ST MALO DE PHILY", - "nomCommune": "ST MALO DE PHILY" + "codePostal": "43100", + "codeCommune": "43207", + "libelleAcheminement": "ST LAURENT CHABREUGES", + "nomCommune": "ST LAURENT CHABREUGES" }, { - "codePostal": "50450", - "codeCommune": "50336", - "libelleAcheminement": "MONTAIGU LES BOIS", - "nomCommune": "MONTAIGU LES BOIS" + "codePostal": "46160", + "codeCommune": "46116", + "libelleAcheminement": "FRONTENAC", + "nomCommune": "FRONTENAC" }, { - "codePostal": "27220", - "codeCommune": "27144", - "libelleAcheminement": "CHAMPIGNY LA FUTELAYE", - "nomCommune": "CHAMPIGNY LA FUTELAYE" + "codePostal": "57405", + "codeCommune": "57033", + "libelleAcheminement": "ARZVILLER", + "nomCommune": "ARZVILLER" }, { - "codePostal": "21140", - "codeCommune": "21497", - "libelleAcheminement": "PONT ET MASSENE", - "nomCommune": "PONT ET MASSENE" + "codePostal": "56490", + "codeCommune": "56129", + "libelleAcheminement": "MENEAC", + "nomCommune": "MENEAC" }, { - "codePostal": "35120", - "codeCommune": "35291", - "libelleAcheminement": "ST MARCAN", - "nomCommune": "ST MARCAN" + "codePostal": "43150", + "codeCommune": "43210", + "libelleAcheminement": "ST MARTIN DE FUGERES", + "nomCommune": "ST MARTIN DE FUGERES" }, { - "codePostal": "50410", - "codeCommune": "50338", - "libelleAcheminement": "MONTBRAY", - "nomCommune": "MONTBRAY" + "codePostal": "46130", + "codeCommune": "46117", + "libelleAcheminement": "GAGNAC SUR CERE", + "nomCommune": "GAGNAC SUR CERE" }, { - "codePostal": "27260", - "codeCommune": "27146", - "libelleAcheminement": "LA CHAPELLE BAYVEL", - "nomCommune": "LA CHAPELLE BAYVEL" + "codePostal": "57580", + "codeCommune": "57037", + "libelleAcheminement": "AUBE", + "nomCommune": "AUBE" }, { - "codePostal": "21570", - "codeCommune": "21524", - "libelleAcheminement": "RIEL LES EAUX", - "nomCommune": "RIEL LES EAUX" + "codePostal": "56140", + "codeCommune": "56133", + "libelleAcheminement": "MISSIRIAC", + "nomCommune": "MISSIRIAC" }, { - "codePostal": "35600", - "codeCommune": "35294", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "43200", + "codeCommune": "43211", + "libelleAcheminement": "ST MAURICE DE LIGNON", + "nomCommune": "ST MAURICE DE LIGNON" }, { - "codePostal": "50570", - "codeCommune": "50352", - "libelleAcheminement": "MONTREUIL SUR LOZON", - "nomCommune": "MONTREUIL SUR LOZON" + "codePostal": "46130", + "codeCommune": "46124", + "libelleAcheminement": "GLANES", + "nomCommune": "GLANES" }, { - "codePostal": "27930", - "codeCommune": "27147", - "libelleAcheminement": "LA CHAPELLE DU BOIS DES FAULX", - "nomCommune": "LA CHAPELLE DU BOIS DES FAULX" + "codePostal": "57390", + "codeCommune": "57038", + "libelleAcheminement": "AUDUN LE TICHE", + "nomCommune": "AUDUN LE TICHE" }, { - "codePostal": "21350", - "codeCommune": "21537", - "libelleAcheminement": "SAFFRES", - "nomCommune": "SAFFRES" + "codePostal": "56380", + "codeCommune": "56136", + "libelleAcheminement": "MONTENEUF", + "nomCommune": "MONTENEUF" }, { - "codePostal": "35380", - "codeCommune": "35305", - "libelleAcheminement": "ST PERAN", - "nomCommune": "ST PERAN" + "codePostal": "43160", + "codeCommune": "43214", + "libelleAcheminement": "ST PAL DE SENOUIRE", + "nomCommune": "ST PAL DE SENOUIRE" }, { - "codePostal": "50170", - "codeCommune": "50353", - "libelleAcheminement": "LE MONT ST MICHEL", - "nomCommune": "LE MONT ST MICHEL" + "codePostal": "46210", + "codeCommune": "46125", + "libelleAcheminement": "GORSES", + "nomCommune": "GORSES" }, { - "codePostal": "27500", - "codeCommune": "27163", - "libelleAcheminement": "COLLETOT", - "nomCommune": "COLLETOT" + "codePostal": "57810", + "codeCommune": "57042", + "libelleAcheminement": "AVRICOURT", + "nomCommune": "AVRICOURT" }, { - "codePostal": "21850", - "codeCommune": "21540", - "libelleAcheminement": "ST APOLLINAIRE", - "nomCommune": "ST APOLLINAIRE" + "codePostal": "56500", + "codeCommune": "56144", + "libelleAcheminement": "EVELLYS", + "nomCommune": "EVELLYS" }, { - "codePostal": "35630", - "codeCommune": "35317", - "libelleAcheminement": "ST SYMPHORIEN", - "nomCommune": "ST SYMPHORIEN" + "codePostal": "43580", + "codeCommune": "43221", + "libelleAcheminement": "ST PRIVAT D ALLIER", + "nomCommune": "ST PRIVAT D ALLIER" }, { - "codePostal": "50290", - "codeCommune": "50365", - "libelleAcheminement": "MUNEVILLE SUR MER", - "nomCommune": "MUNEVILLE SUR MER" + "codePostal": "46210", + "codeCommune": "46135", + "libelleAcheminement": "LABASTIDE DU HAUT MONT", + "nomCommune": "LABASTIDE DU HAUT MONT" }, { - "codePostal": "27430", - "codeCommune": "27168", - "libelleAcheminement": "CONNELLES", - "nomCommune": "CONNELLES" + "codePostal": "57580", + "codeCommune": "57057", + "libelleAcheminement": "BECHY", + "nomCommune": "BECHY" }, { - "codePostal": "21700", - "codeCommune": "21542", - "libelleAcheminement": "ST BERNARD", - "nomCommune": "ST BERNARD" + "codePostal": "56300", + "codeCommune": "56146", + "libelleAcheminement": "NEULLIAC", + "nomCommune": "NEULLIAC" }, { - "codePostal": "35130", - "codeCommune": "35325", - "libelleAcheminement": "LA SELLE GUERCHAISE", - "nomCommune": "LA SELLE GUERCHAISE" + "codePostal": "43620", + "codeCommune": "43223", + "libelleAcheminement": "ST ROMAIN LACHALM", + "nomCommune": "ST ROMAIN LACHALM" }, { - "codePostal": "50210", - "codeCommune": "50378", - "libelleAcheminement": "NOTRE DAME DE CENILLY", - "nomCommune": "NOTRE DAME DE CENILLY" + "codePostal": "46090", + "codeCommune": "46137", + "libelleAcheminement": "LABASTIDE MARNHAC", + "nomCommune": "LABASTIDE MARNHAC" }, { - "codePostal": "27260", - "codeCommune": "27170", - "libelleAcheminement": "CORMEILLES", - "nomCommune": "CORMEILLES" + "codePostal": "57570", + "codeCommune": "57062", + "libelleAcheminement": "BERG SUR MOSELLE", + "nomCommune": "BERG SUR MOSELLE" }, { - "codePostal": "21400", - "codeCommune": "21545", - "libelleAcheminement": "STE COLOMBE SUR SEINE", - "nomCommune": "STE COLOMBE SUR SEINE" + "codePostal": "56800", + "codeCommune": "56165", + "libelleAcheminement": "PLOERMEL", + "nomCommune": "PLOERMEL" }, { - "codePostal": "35490", - "codeCommune": "35326", - "libelleAcheminement": "SENS DE BRETAGNE", - "nomCommune": "SENS DE BRETAGNE" + "codePostal": "43500", + "codeCommune": "43228", + "libelleAcheminement": "ST VICTOR SUR ARLANC", + "nomCommune": "ST VICTOR SUR ARLANC" }, { - "codePostal": "50690", - "codeCommune": "50382", - "libelleAcheminement": "NOUAINVILLE", - "nomCommune": "NOUAINVILLE" + "codePostal": "46340", + "codeCommune": "46164", + "libelleAcheminement": "LAVERCANTIERE", + "nomCommune": "LAVERCANTIERE" }, { - "codePostal": "27500", - "codeCommune": "27174", - "libelleAcheminement": "CORNEVILLE SUR RISLE", - "nomCommune": "CORNEVILLE SUR RISLE" + "codePostal": "57320", + "codeCommune": "57079", + "libelleAcheminement": "BIBICHE", + "nomCommune": "BIBICHE" }, { - "codePostal": "21270", - "codeCommune": "21556", - "libelleAcheminement": "ST LEGER TRIEY", - "nomCommune": "ST LEGER TRIEY" + "codePostal": "56240", + "codeCommune": "56166", + "libelleAcheminement": "PLOUAY", + "nomCommune": "PLOUAY" }, { - "codePostal": "35530", - "codeCommune": "35327", - "libelleAcheminement": "SERVON SUR VILAINE", - "nomCommune": "SERVON SUR VILAINE" + "codePostal": "43140", + "codeCommune": "43236", + "libelleAcheminement": "LA SEAUVE SUR SEMENE", + "nomCommune": "LA SEAUVE SUR SEMENE" }, { - "codePostal": "50660", - "codeCommune": "50388", - "libelleAcheminement": "ORVAL SUR SIENNE", - "nomCommune": "ORVAL SUR SIENNE" + "codePostal": "46120", + "codeCommune": "46170", + "libelleAcheminement": "LEYME", + "nomCommune": "LEYME" }, { - "codePostal": "27320", - "codeCommune": "27181", - "libelleAcheminement": "COURDEMANCHE", - "nomCommune": "COURDEMANCHE" + "codePostal": "57930", + "codeCommune": "57086", + "libelleAcheminement": "BELLES FORETS", + "nomCommune": "BELLES FORETS" }, { - "codePostal": "21410", - "codeCommune": "21559", - "libelleAcheminement": "STE MARIE SUR OUCHE", - "nomCommune": "STE MARIE SUR OUCHE" + "codePostal": "56400", + "codeCommune": "56167", + "libelleAcheminement": "PLOUGOUMELEN", + "nomCommune": "PLOUGOUMELEN" }, { - "codePostal": "35610", - "codeCommune": "35329", - "libelleAcheminement": "SOUGEAL", - "nomCommune": "SOUGEAL" + "codePostal": "43160", + "codeCommune": "43237", + "libelleAcheminement": "SEMBADEL", + "nomCommune": "SEMBADEL" }, { - "codePostal": "50600", - "codeCommune": "50391", - "libelleAcheminement": "GRANDPARIGNY", - "nomCommune": "GRANDPARIGNY" + "codePostal": "46100", + "codeCommune": "46175", + "libelleAcheminement": "LISSAC ET MOURET", + "nomCommune": "LISSAC ET MOURET" }, { - "codePostal": "27340", - "codeCommune": "27188", - "libelleAcheminement": "CRIQUEBEUF SUR SEINE", - "nomCommune": "CRIQUEBEUF SUR SEINE" + "codePostal": "57660", + "codeCommune": "57088", + "libelleAcheminement": "BISTROFF", + "nomCommune": "BISTROFF" }, { - "codePostal": "21220", - "codeCommune": "21565", - "libelleAcheminement": "ST PHILIBERT", - "nomCommune": "ST PHILIBERT" + "codePostal": "56420", + "codeCommune": "56172", + "libelleAcheminement": "PLUMELEC", + "nomCommune": "PLUMELEC" }, { - "codePostal": "35620", - "codeCommune": "35332", - "libelleAcheminement": "TEILLAY", - "nomCommune": "TEILLAY" + "codePostal": "43510", + "codeCommune": "43238", + "libelleAcheminement": "SENEUJOLS", + "nomCommune": "SENEUJOLS" }, { - "codePostal": "50600", - "codeCommune": "50391", - "libelleAcheminement": "GRANDPARIGNY", - "nomCommune": "GRANDPARIGNY" + "codePostal": "46250", + "codeCommune": "46184", + "libelleAcheminement": "MARMINIAC", + "nomCommune": "MARMINIAC" }, { - "codePostal": "27530", - "codeCommune": "27193", - "libelleAcheminement": "CROTH", - "nomCommune": "CROTH" + "codePostal": "57200", + "codeCommune": "57092", + "libelleAcheminement": "BLIES EBERSING", + "nomCommune": "BLIES EBERSING" }, { - "codePostal": "21230", - "codeCommune": "21566", - "libelleAcheminement": "ST PIERRE EN VAUX", - "nomCommune": "ST PIERRE EN VAUX" + "codePostal": "56310", + "codeCommune": "56173", + "libelleAcheminement": "PLUMELIAU BIEUZY", + "nomCommune": "PLUMELIAU BIEUZY" }, { - "codePostal": "35235", - "codeCommune": "35334", - "libelleAcheminement": "THORIGNE FOUILLARD", - "nomCommune": "THORIGNE FOUILLARD" + "codePostal": "43580", + "codeCommune": "43245", + "libelleAcheminement": "THORAS", + "nomCommune": "THORAS" }, { - "codePostal": "50630", - "codeCommune": "50395", - "libelleAcheminement": "LA PERNELLE", - "nomCommune": "LA PERNELLE" + "codePostal": "46800", + "codeCommune": "46201", + "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", + "nomCommune": "MONTCUQ EN QUERCY BLANC" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "57200", + "codeCommune": "57093", + "libelleAcheminement": "BLIES GUERSVILLER", + "nomCommune": "BLIES GUERSVILLER" }, { - "codePostal": "21610", - "codeCommune": "21574", - "libelleAcheminement": "ST SEINE SUR VINGEANNE", - "nomCommune": "ST SEINE SUR VINGEANNE" + "codePostal": "56300", + "codeCommune": "56178", + "libelleAcheminement": "PONTIVY", + "nomCommune": "PONTIVY" }, { - "codePostal": "35380", - "codeCommune": "35340", - "libelleAcheminement": "TREFFENDEL", - "nomCommune": "TREFFENDEL" + "codePostal": "43530", + "codeCommune": "43246", + "libelleAcheminement": "TIRANGES", + "nomCommune": "TIRANGES" }, { - "codePostal": "50150", - "codeCommune": "50397", - "libelleAcheminement": "PERRIERS EN BEAUFICEL", - "nomCommune": "PERRIERS EN BEAUFICEL" + "codePostal": "46800", + "codeCommune": "46201", + "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", + "nomCommune": "MONTCUQ EN QUERCY BLANC" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "57220", + "codeCommune": "57095", + "libelleAcheminement": "BOUCHEPORN", + "nomCommune": "BOUCHEPORN" }, { - "codePostal": "21170", - "codeCommune": "21575", - "libelleAcheminement": "ST SYMPHORIEN SUR SAONE", - "nomCommune": "ST SYMPHORIEN SUR SAONE" + "codePostal": "56320", + "codeCommune": "56182", + "libelleAcheminement": "PRIZIAC", + "nomCommune": "PRIZIAC" }, { - "codePostal": "35190", - "codeCommune": "35345", - "libelleAcheminement": "TREVERIEN", - "nomCommune": "TREVERIEN" + "codePostal": "43450", + "codeCommune": "43247", + "libelleAcheminement": "TORSIAC", + "nomCommune": "TORSIAC" }, { - "codePostal": "50370", - "codeCommune": "50399", - "libelleAcheminement": "LE PETIT CELLAND", - "nomCommune": "LE PETIT CELLAND" + "codePostal": "46600", + "codeCommune": "46208", + "libelleAcheminement": "MONTVALENT", + "nomCommune": "MONTVALENT" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "57220", + "codeCommune": "57097", + "libelleAcheminement": "BOULAY", + "nomCommune": "BOULAY MOSELLE" }, { - "codePostal": "21580", - "codeCommune": "21579", - "libelleAcheminement": "SALIVES", - "nomCommune": "SALIVES" + "codePostal": "56230", + "codeCommune": "56184", + "libelleAcheminement": "QUESTEMBERT", + "nomCommune": "QUESTEMBERT" }, { - "codePostal": "35132", - "codeCommune": "35353", - "libelleAcheminement": "VEZIN LE COQUET", - "nomCommune": "VEZIN LE COQUET" + "codePostal": "43750", + "codeCommune": "43251", + "libelleAcheminement": "VALS PRES LE PUY", + "nomCommune": "VALS PRES LE PUY" }, { - "codePostal": "50770", - "codeCommune": "50403", - "libelleAcheminement": "PIROU", - "nomCommune": "PIROU" + "codePostal": "46350", + "codeCommune": "46209", + "libelleAcheminement": "NADAILLAC DE ROUGE", + "nomCommune": "NADAILLAC DE ROUGE" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "57230", + "codeCommune": "57103", + "libelleAcheminement": "BOUSSEVILLER", + "nomCommune": "BOUSSEVILLER" }, { - "codePostal": "21210", - "codeCommune": "21584", - "libelleAcheminement": "SAULIEU", - "nomCommune": "SAULIEU" + "codePostal": "56530", + "codeCommune": "56185", + "libelleAcheminement": "QUEVEN", + "nomCommune": "QUEVEN" }, { - "codePostal": "35630", - "codeCommune": "35356", - "libelleAcheminement": "VIGNOC", - "nomCommune": "VIGNOC" + "codePostal": "43170", + "codeCommune": "43256", + "libelleAcheminement": "VENTEUGES", + "nomCommune": "VENTEUGES" }, { - "codePostal": "50220", - "codeCommune": "50408", - "libelleAcheminement": "PONTAUBAULT", - "nomCommune": "PONTAUBAULT" + "codePostal": "46250", + "codeCommune": "46222", + "libelleAcheminement": "POMAREDE", + "nomCommune": "POMAREDE" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "57320", + "codeCommune": "57106", + "libelleAcheminement": "BOUZONVILLE", + "nomCommune": "BOUZONVILLE" }, { - "codePostal": "21910", - "codeCommune": "21586", - "libelleAcheminement": "SAULON LA RUE", - "nomCommune": "SAULON LA RUE" + "codePostal": "56670", + "codeCommune": "56193", + "libelleAcheminement": "RIANTEC", + "nomCommune": "RIANTEC" }, { - "codePostal": "35430", - "codeCommune": "35358", - "libelleAcheminement": "LA VILLE ES NONAIS", - "nomCommune": "LA VILLE ES NONAIS" + "codePostal": "43320", + "codeCommune": "43257", + "libelleAcheminement": "VERGEZAC", + "nomCommune": "VERGEZAC" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "46150", + "codeCommune": "46223", + "libelleAcheminement": "PONTCIRQ", + "nomCommune": "PONTCIRQ" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "57570", + "codeCommune": "57109", + "libelleAcheminement": "BREISTROFF LA GRANDE", + "nomCommune": "BREISTROFF LA GRANDE" }, { - "codePostal": "21360", - "codeCommune": "21588", - "libelleAcheminement": "SAUSSEY", - "nomCommune": "SAUSSEY" + "codePostal": "56130", + "codeCommune": "56195", + "libelleAcheminement": "LA ROCHE BERNARD", + "nomCommune": "LA ROCHE BERNARD" }, { - "codePostal": "35130", - "codeCommune": "35359", - "libelleAcheminement": "VISSEICHE", - "nomCommune": "VISSEICHE" + "codePostal": "43270", + "codeCommune": "43259", + "libelleAcheminement": "VERNASSAL", + "nomCommune": "VERNASSAL" }, { - "codePostal": "50580", - "codeCommune": "50412", - "libelleAcheminement": "PORT BAIL SUR MER", - "nomCommune": "PORT BAIL SUR MER" + "codePostal": "46260", + "codeCommune": "46227", + "libelleAcheminement": "PROMILHANES", + "nomCommune": "PROMILHANES" }, { - "codePostal": "27380", - "codeCommune": "27205", - "libelleAcheminement": "DOUVILLE SUR ANDELLE", - "nomCommune": "DOUVILLE SUR ANDELLE" + "codePostal": "57220", + "codeCommune": "57112", + "libelleAcheminement": "BROUCK", + "nomCommune": "BROUCK" }, { - "codePostal": "21500", - "codeCommune": "21594", - "libelleAcheminement": "SAVOISY", - "nomCommune": "SAVOISY" + "codePostal": "56220", + "codeCommune": "56196", + "libelleAcheminement": "ROCHEFORT EN TERRE", + "nomCommune": "ROCHEFORT EN TERRE" }, { - "codePostal": "36150", - "codeCommune": "36002", - "libelleAcheminement": "AIZE", - "nomCommune": "AIZE" + "codePostal": "43600", + "codeCommune": "43265", + "libelleAcheminement": "LES VILLETTES", + "nomCommune": "LES VILLETTES" }, { - "codePostal": "50660", - "codeCommune": "50419", - "libelleAcheminement": "QUETTREVILLE SUR SIENNE", - "nomCommune": "QUETTREVILLE SUR SIENNE" + "codePostal": "46130", + "codeCommune": "46229", + "libelleAcheminement": "PUYBRUN", + "nomCommune": "PUYBRUN" }, { - "codePostal": "27420", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "57340", + "codeCommune": "57115", + "libelleAcheminement": "BRULANGE", + "nomCommune": "BRULANGE" }, { - "codePostal": "21150", - "codeCommune": "21598", - "libelleAcheminement": "SEIGNY", - "nomCommune": "SEIGNY" + "codePostal": "56140", + "codeCommune": "56200", + "libelleAcheminement": "RUFFIAC", + "nomCommune": "RUFFIAC" }, { - "codePostal": "36500", - "codeCommune": "36007", - "libelleAcheminement": "ARGY", - "nomCommune": "ARGY" + "codePostal": "44150", + "codeCommune": "44003", + "libelleAcheminement": "ANCENIS ST GEREON", + "nomCommune": "ANCENIS ST GEREON" }, { - "codePostal": "50500", - "codeCommune": "50422", - "libelleAcheminement": "RAIDS", - "nomCommune": "RAIDS" + "codePostal": "46110", + "codeCommune": "46232", + "libelleAcheminement": "LE VIGNON EN QUERCY", + "nomCommune": "LE VIGNON EN QUERCY" }, { - "codePostal": "27420", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "57320", + "codeCommune": "57131", + "libelleAcheminement": "CHATEAU ROUGE", + "nomCommune": "CHATEAU ROUGE" }, { - "codePostal": "21220", - "codeCommune": "21601", - "libelleAcheminement": "SEMEZANGES", - "nomCommune": "SEMEZANGES" + "codePostal": "56890", + "codeCommune": "56206", + "libelleAcheminement": "ST AVE", + "nomCommune": "ST AVE" }, { - "codePostal": "36210", - "codeCommune": "36011", - "libelleAcheminement": "BAGNEUX", - "nomCommune": "BAGNEUX" + "codePostal": "44410", + "codeCommune": "44006", + "libelleAcheminement": "ASSERAC", + "nomCommune": "ASSERAC" }, { - "codePostal": "50000", - "codeCommune": "50423", - "libelleAcheminement": "RAMPAN", - "nomCommune": "RAMPAN" + "codePostal": "46600", + "codeCommune": "46232", + "libelleAcheminement": "LE VIGNON EN QUERCY", + "nomCommune": "LE VIGNON EN QUERCY" }, { - "codePostal": "27110", - "codeCommune": "27219", - "libelleAcheminement": "EPEGARD", - "nomCommune": "EPEGARD" + "codePostal": "57170", + "codeCommune": "57133", + "libelleAcheminement": "CHATEAU VOUE", + "nomCommune": "CHATEAU VOUE" }, { - "codePostal": "21500", - "codeCommune": "21604", - "libelleAcheminement": "SENAILLY", - "nomCommune": "SENAILLY" + "codePostal": "56540", + "codeCommune": "56210", + "libelleAcheminement": "ST CARADEC TREGOMEL", + "nomCommune": "ST CARADEC TREGOMEL" }, { - "codePostal": "36100", - "codeCommune": "36021", - "libelleAcheminement": "LES BORDES", - "nomCommune": "LES BORDES" + "codePostal": "44115", + "codeCommune": "44009", + "libelleAcheminement": "BASSE GOULAINE", + "nomCommune": "BASSE GOULAINE" }, { - "codePostal": "50590", - "codeCommune": "50429", - "libelleAcheminement": "REGNEVILLE SUR MER", - "nomCommune": "REGNEVILLE SUR MER" + "codePostal": "46500", + "codeCommune": "46235", + "libelleAcheminement": "REILHAC", + "nomCommune": "REILHAC" }, { - "codePostal": "27110", - "codeCommune": "27224", - "libelleAcheminement": "EPREVILLE PRES LE NEUBOURG", - "nomCommune": "EPREVILLE PRES LE NEUBOURG" + "codePostal": "57420", + "codeCommune": "57139", + "libelleAcheminement": "CHERISEY", + "nomCommune": "CHERISEY" }, { - "codePostal": "21800", - "codeCommune": "21605", - "libelleAcheminement": "SENNECEY LES DIJON", - "nomCommune": "SENNECEY LES DIJON" + "codePostal": "56460", + "codeCommune": "56219", + "libelleAcheminement": "ST GUYOMARD", + "nomCommune": "ST GUYOMARD" }, { - "codePostal": "36110", - "codeCommune": "36026", - "libelleAcheminement": "BRION", - "nomCommune": "BRION" + "codePostal": "44130", + "codeCommune": "44015", + "libelleAcheminement": "BLAIN", + "nomCommune": "BLAIN" }, { - "codePostal": "50140", - "codeCommune": "50436", - "libelleAcheminement": "ROMAGNY FONTENAY", - "nomCommune": "ROMAGNY FONTENAY" + "codePostal": "46350", + "codeCommune": "46236", + "libelleAcheminement": "REILHAGUET", + "nomCommune": "REILHAGUET" }, { - "codePostal": "27000", - "codeCommune": "27229", - "libelleAcheminement": "EVREUX", - "nomCommune": "EVREUX" + "codePostal": "57420", + "codeCommune": "57146", + "libelleAcheminement": "COIN LES CUVRY", + "nomCommune": "COIN LES CUVRY" }, { - "codePostal": "21530", - "codeCommune": "21608", - "libelleAcheminement": "SINCEY LES ROUVRAY", - "nomCommune": "SINCEY LES ROUVRAY" + "codePostal": "56220", + "codeCommune": "56221", + "libelleAcheminement": "ST JACUT LES PINS", + "nomCommune": "ST JACUT LES PINS" }, { - "codePostal": "36150", - "codeCommune": "36029", - "libelleAcheminement": "BUXEUIL", - "nomCommune": "BUXEUIL" + "codePostal": "44830", + "codeCommune": "44018", + "libelleAcheminement": "BOUAYE", + "nomCommune": "BOUAYE" }, { - "codePostal": "50170", - "codeCommune": "50443", - "libelleAcheminement": "SACEY", - "nomCommune": "SACEY" + "codePostal": "46500", + "codeCommune": "46240", + "libelleAcheminement": "ROCAMADOUR", + "nomCommune": "ROCAMADOUR" }, { - "codePostal": "27120", - "codeCommune": "27231", - "libelleAcheminement": "FAINS", - "nomCommune": "FAINS" + "codePostal": "57530", + "codeCommune": "57148", + "libelleAcheminement": "COLLIGNY MAIZERY", + "nomCommune": "COLLIGNY MAIZERY" }, { - "codePostal": "21430", - "codeCommune": "21615", - "libelleAcheminement": "SUSSEY", - "nomCommune": "SUSSEY" + "codePostal": "56140", + "codeCommune": "56224", + "libelleAcheminement": "ST LAURENT SUR OUST", + "nomCommune": "ST LAURENT SUR OUST" }, { - "codePostal": "36230", - "codeCommune": "36030", - "libelleAcheminement": "BUXIERES D AILLAC", - "nomCommune": "BUXIERES D AILLAC" + "codePostal": "44260", + "codeCommune": "44019", + "libelleAcheminement": "BOUEE", + "nomCommune": "BOUEE" }, { - "codePostal": "50160", - "codeCommune": "50444", - "libelleAcheminement": "ST AMAND VILLAGES", - "nomCommune": "ST AMAND VILLAGES" + "codePostal": "46500", + "codeCommune": "46246", + "libelleAcheminement": "SAIGNES", + "nomCommune": "SAIGNES" }, { - "codePostal": "27210", - "codeCommune": "27233", - "libelleAcheminement": "FATOUVILLE GRESTAIN", - "nomCommune": "FATOUVILLE GRESTAIN" + "codePostal": "57480", + "codeCommune": "57152", + "libelleAcheminement": "CONTZ LES BAINS", + "nomCommune": "CONTZ LES BAINS" }, { - "codePostal": "21290", - "codeCommune": "21626", - "libelleAcheminement": "TERREFONDREE", - "nomCommune": "TERREFONDREE" + "codePostal": "56380", + "codeCommune": "56226", + "libelleAcheminement": "ST MALO DE BEIGNON", + "nomCommune": "ST MALO DE BEIGNON" }, { - "codePostal": "36500", - "codeCommune": "36040", - "libelleAcheminement": "LA CHAPELLE ORTHEMALE", - "nomCommune": "LA CHAPELLE ORTHEMALE" + "codePostal": "44340", + "codeCommune": "44020", + "libelleAcheminement": "BOUGUENAIS", + "nomCommune": "BOUGUENAIS" }, { - "codePostal": "50140", - "codeCommune": "50450", - "libelleAcheminement": "ST BARTHELEMY", - "nomCommune": "ST BARTHELEMY" + "codePostal": "46120", + "codeCommune": "46249", + "libelleAcheminement": "ST BRESSOU", + "nomCommune": "ST BRESSOU" }, { - "codePostal": "27930", - "codeCommune": "27234", - "libelleAcheminement": "FAUVILLE", - "nomCommune": "FAUVILLE" + "codePostal": "57530", + "codeCommune": "57155", + "libelleAcheminement": "COURCELLES CHAUSSY", + "nomCommune": "COURCELLES CHAUSSY" }, { - "codePostal": "21250", - "codeCommune": "21637", - "libelleAcheminement": "TICHEY", - "nomCommune": "TICHEY" + "codePostal": "56140", + "codeCommune": "56228", + "libelleAcheminement": "ST MARCEL", + "nomCommune": "ST MARCEL" }, { - "codePostal": "36400", - "codeCommune": "36046", - "libelleAcheminement": "LA CHATRE", - "nomCommune": "LA CHATRE" + "codePostal": "44580", + "codeCommune": "44021", + "libelleAcheminement": "VILLENEUVE EN RETZ", + "nomCommune": "VILLENEUVE EN RETZ" }, { - "codePostal": "50730", - "codeCommune": "50452", - "libelleAcheminement": "ST BRICE DE LANDELLES", - "nomCommune": "ST BRICE DE LANDELLES" + "codePostal": "46360", + "codeCommune": "46252", + "libelleAcheminement": "LES PECHS DU VERS", + "nomCommune": "LES PECHS DU VERS" }, { - "codePostal": "27210", - "codeCommune": "27243", - "libelleAcheminement": "FIQUEFLEUR EQUAINVILLE", - "nomCommune": "FIQUEFLEUR EQUAINVILLE" + "codePostal": "57530", + "codeCommune": "57155", + "libelleAcheminement": "COURCELLES CHAUSSY", + "nomCommune": "COURCELLES CHAUSSY" }, { - "codePostal": "21400", - "codeCommune": "21653", - "libelleAcheminement": "VANNAIRE", - "nomCommune": "VANNAIRE" + "codePostal": "56300", + "codeCommune": "56237", + "libelleAcheminement": "ST THURIAU", + "nomCommune": "ST THURIAU" }, { - "codePostal": "36170", - "codeCommune": "36047", - "libelleAcheminement": "LA CHATRE LANGLIN", - "nomCommune": "LA CHATRE LANGLIN" + "codePostal": "44190", + "codeCommune": "44022", + "libelleAcheminement": "BOUSSAY", + "nomCommune": "BOUSSAY" }, { - "codePostal": "50140", - "codeCommune": "50456", - "libelleAcheminement": "ST CLEMENT RANCOUDRAY", - "nomCommune": "ST CLEMENT RANCOUDRAY" + "codePostal": "46300", + "codeCommune": "46258", + "libelleAcheminement": "ST CIRQ SOUILLAGUET", + "nomCommune": "ST CIRQ SOUILLAGUET" }, { - "codePostal": "27380", - "codeCommune": "27246", - "libelleAcheminement": "FLEURY SUR ANDELLE", - "nomCommune": "FLEURY SUR ANDELLE" + "codePostal": "57850", + "codeCommune": "57163", + "libelleAcheminement": "DABO", + "nomCommune": "DABO" }, { - "codePostal": "21440", - "codeCommune": "21659", - "libelleAcheminement": "VAUX SAULES", - "nomCommune": "VAUX SAULES" + "codePostal": "56370", + "codeCommune": "56240", + "libelleAcheminement": "SARZEAU", + "nomCommune": "SARZEAU" }, { - "codePostal": "36200", - "codeCommune": "36048", - "libelleAcheminement": "CHAVIN", - "nomCommune": "CHAVIN" + "codePostal": "44470", + "codeCommune": "44026", + "libelleAcheminement": "CARQUEFOU", + "nomCommune": "CARQUEFOU" }, { - "codePostal": "50000", - "codeCommune": "50475", - "libelleAcheminement": "ST GEORGES MONTCOCQ", - "nomCommune": "ST GEORGES MONTCOCQ" + "codePostal": "46800", + "codeCommune": "46263", + "libelleAcheminement": "BARGUELONNE EN QUERCY", + "nomCommune": "BARGUELONNE EN QUERCY" }, { - "codePostal": "27220", - "codeCommune": "27259", - "libelleAcheminement": "FOUCRAINVILLE", - "nomCommune": "FOUCRAINVILLE" + "codePostal": "57550", + "codeCommune": "57165", + "libelleAcheminement": "DALEM", + "nomCommune": "DALEM" }, { - "codePostal": "21390", - "codeCommune": "21678", - "libelleAcheminement": "VIC SOUS THIL", - "nomCommune": "VIC SOUS THIL" + "codePostal": "56160", + "codeCommune": "56242", + "libelleAcheminement": "SEGLIEN", + "nomCommune": "SEGLIEN" }, { - "codePostal": "36300", - "codeCommune": "36053", - "libelleAcheminement": "CIRON", - "nomCommune": "CIRON" + "codePostal": "44390", + "codeCommune": "44027", + "libelleAcheminement": "CASSON", + "nomCommune": "CASSON" }, { - "codePostal": "50340", - "codeCommune": "50480", - "libelleAcheminement": "ST GERMAIN LE GAILLARD", - "nomCommune": "ST GERMAIN LE GAILLARD" + "codePostal": "46800", + "codeCommune": "46263", + "libelleAcheminement": "BARGUELONNE EN QUERCY", + "nomCommune": "BARGUELONNE EN QUERCY" }, { - "codePostal": "27120", - "codeCommune": "27273", - "libelleAcheminement": "GADENCOURT", - "nomCommune": "GADENCOURT" + "codePostal": "57370", + "codeCommune": "57168", + "libelleAcheminement": "DANNE ET QUATRE VENTS", + "nomCommune": "DANNE ET QUATRE VENTS" }, { - "codePostal": "21450", - "codeCommune": "21685", - "libelleAcheminement": "VILLAINES EN DUESMOIS", - "nomCommune": "VILLAINES EN DUESMOIS" + "codePostal": "56450", + "codeCommune": "56248", + "libelleAcheminement": "SURZUR", + "nomCommune": "SURZUR" }, { - "codePostal": "36140", - "codeCommune": "36060", - "libelleAcheminement": "CREVANT", - "nomCommune": "CREVANT" + "codePostal": "44640", + "codeCommune": "44039", + "libelleAcheminement": "CHEIX EN RETZ", + "nomCommune": "CHEIX EN RETZ" }, { - "codePostal": "50430", - "codeCommune": "50481", - "libelleAcheminement": "ST GERMAIN SUR AY", - "nomCommune": "ST GERMAIN SUR AY" + "codePostal": "46150", + "codeCommune": "46264", + "libelleAcheminement": "ST DENIS CATUS", + "nomCommune": "ST DENIS CATUS" }, { - "codePostal": "27150", - "codeCommune": "27276", - "libelleAcheminement": "GAMACHES EN VEXIN", - "nomCommune": "GAMACHES EN VEXIN" + "codePostal": "57590", + "codeCommune": "57171", + "libelleAcheminement": "DELME", + "nomCommune": "DELME" }, { - "codePostal": "21130", - "codeCommune": "21699", - "libelleAcheminement": "VILLERS LES POTS", - "nomCommune": "VILLERS LES POTS" + "codePostal": "56190", + "codeCommune": "56259", + "libelleAcheminement": "LA TRINITE SURZUR", + "nomCommune": "LA TRINITE SURZUR" }, { - "codePostal": "36270", - "codeCommune": "36070", - "libelleAcheminement": "EGUZON CHANTOME", - "nomCommune": "EGUZON CHANTOME" + "codePostal": "44190", + "codeCommune": "44043", + "libelleAcheminement": "CLISSON", + "nomCommune": "CLISSON" }, { - "codePostal": "50190", - "codeCommune": "50482", - "libelleAcheminement": "ST GERMAIN SUR SEVES", - "nomCommune": "ST GERMAIN SUR SEVES" + "codePostal": "46260", + "codeCommune": "46270", + "libelleAcheminement": "ST JEAN DE LAUR", + "nomCommune": "ST JEAN DE LAUR" }, { - "codePostal": "27220", - "codeCommune": "27277", - "libelleAcheminement": "LA BARONNIE", - "nomCommune": "LA BARONNIE" + "codePostal": "57810", + "codeCommune": "57183", + "libelleAcheminement": "DONNELAY", + "nomCommune": "DONNELAY" }, { - "codePostal": "21430", - "codeCommune": "21703", - "libelleAcheminement": "VILLIERS EN MORVAN", - "nomCommune": "VILLIERS EN MORVAN" + "codePostal": "57590", + "codeCommune": "57002", + "libelleAcheminement": "ABONCOURT SUR SEILLE", + "nomCommune": "ABONCOURT SUR SEILLE" }, { - "codePostal": "36150", - "codeCommune": "36075", - "libelleAcheminement": "FONTENAY", - "nomCommune": "FONTENAY" + "codePostal": "44220", + "codeCommune": "44047", + "libelleAcheminement": "COUERON", + "nomCommune": "COUERON" }, { - "codePostal": "50240", - "codeCommune": "50487", - "libelleAcheminement": "ST JAMES", - "nomCommune": "ST JAMES" + "codePostal": "46330", + "codeCommune": "46276", + "libelleAcheminement": "ST MARTIN LABOUVAL", + "nomCommune": "ST MARTIN LABOUVAL" }, { - "codePostal": "27440", - "codeCommune": "27294", - "libelleAcheminement": "VAL D ORGER", - "nomCommune": "VAL D ORGER" + "codePostal": "57220", + "codeCommune": "57187", + "libelleAcheminement": "EBLANGE", + "nomCommune": "EBLANGE" }, { - "codePostal": "21270", - "codeCommune": "21713", - "libelleAcheminement": "VONGES", - "nomCommune": "VONGES" + "codePostal": "57560", + "codeCommune": "57003", + "libelleAcheminement": "ABRESCHVILLER", + "nomCommune": "ABRESCHVILLER" }, { - "codePostal": "36600", - "codeCommune": "36077", - "libelleAcheminement": "FONTGUENAND", - "nomCommune": "FONTGUENAND" + "codePostal": "44220", + "codeCommune": "44047", + "libelleAcheminement": "COUERON", + "nomCommune": "COUERON" }, { - "codePostal": "50240", - "codeCommune": "50487", - "libelleAcheminement": "ST JAMES", - "nomCommune": "ST JAMES" + "codePostal": "46330", + "codeCommune": "46299", + "libelleAcheminement": "SAULIAC SUR CELE", + "nomCommune": "SAULIAC SUR CELE" }, { - "codePostal": "27110", - "codeCommune": "27298", - "libelleAcheminement": "GRAVERON SEMERVILLE", - "nomCommune": "GRAVERON SEMERVILLE" + "codePostal": "57970", + "codeCommune": "57191", + "libelleAcheminement": "ELZANGE", + "nomCommune": "ELZANGE" }, { - "codePostal": "21700", - "codeCommune": "21714", - "libelleAcheminement": "VOSNE ROMANEE", - "nomCommune": "VOSNE ROMANEE" + "codePostal": "57412", + "codeCommune": "57006", + "libelleAcheminement": "ACHEN", + "nomCommune": "ACHEN" }, { - "codePostal": "36230", - "codeCommune": "36078", - "libelleAcheminement": "FOUGEROLLES", - "nomCommune": "FOUGEROLLES" + "codePostal": "44521", + "codeCommune": "44048", + "libelleAcheminement": "COUFFE", + "nomCommune": "COUFFE" }, { - "codePostal": "50270", - "codeCommune": "50490", - "libelleAcheminement": "ST JEAN DE LA RIVIERE", - "nomCommune": "ST JEAN DE LA RIVIERE" + "codePostal": "46190", + "codeCommune": "46311", + "libelleAcheminement": "SOUSCEYRAC EN QUERCY", + "nomCommune": "SOUSCEYRAC EN QUERCY" }, { - "codePostal": "27930", - "codeCommune": "27306", - "libelleAcheminement": "GUICHAINVILLE", - "nomCommune": "GUICHAINVILLE" + "codePostal": "57720", + "codeCommune": "57195", + "libelleAcheminement": "EPPING", + "nomCommune": "EPPING" }, { - "codePostal": "22460", - "codeCommune": "22001", - "libelleAcheminement": "ALLINEUC", - "nomCommune": "ALLINEUC" + "codePostal": "57590", + "codeCommune": "57010", + "libelleAcheminement": "ALAINCOURT LA COTE", + "nomCommune": "ALAINCOURT LA COTE" }, { - "codePostal": "36150", - "codeCommune": "36085", - "libelleAcheminement": "GUILLY", - "nomCommune": "GUILLY" + "codePostal": "44480", + "codeCommune": "44052", + "libelleAcheminement": "DONGES", + "nomCommune": "DONGES" }, { - "codePostal": "50680", - "codeCommune": "50491", - "libelleAcheminement": "ST JEAN DE SAVIGNY", - "nomCommune": "ST JEAN DE SAVIGNY" + "codePostal": "46190", + "codeCommune": "46311", + "libelleAcheminement": "SOUSCEYRAC EN QUERCY", + "nomCommune": "SOUSCEYRAC EN QUERCY" }, { - "codePostal": "27220", - "codeCommune": "27309", - "libelleAcheminement": "L HABIT", - "nomCommune": "L HABIT" + "codePostal": "57290", + "codeCommune": "57206", + "libelleAcheminement": "FAMECK", + "nomCommune": "FAMECK" }, { - "codePostal": "22400", - "codeCommune": "22002", - "libelleAcheminement": "ANDEL", - "nomCommune": "ANDEL" + "codePostal": "57670", + "codeCommune": "57011", + "libelleAcheminement": "ALBESTROFF", + "nomCommune": "ALBESTROFF" }, { - "codePostal": "36300", - "codeCommune": "36087", - "libelleAcheminement": "INGRANDES", - "nomCommune": "INGRANDES" + "codePostal": "44500", + "codeCommune": "44055", + "libelleAcheminement": "LA BAULE", + "nomCommune": "LA BAULE ESCOUBLAC" }, { - "codePostal": "50810", - "codeCommune": "50492", - "libelleAcheminement": "ST JEAN D ELLE", - "nomCommune": "ST JEAN D ELLE" + "codePostal": "46190", + "codeCommune": "46311", + "libelleAcheminement": "SOUSCEYRAC EN QUERCY", + "nomCommune": "SOUSCEYRAC EN QUERCY" }, { - "codePostal": "27800", - "codeCommune": "27311", - "libelleAcheminement": "HARCOURT", - "nomCommune": "HARCOURT" + "codePostal": "57450", + "codeCommune": "57208", + "libelleAcheminement": "FARSCHVILLER", + "nomCommune": "FARSCHVILLER" }, { - "codePostal": "22140", - "codeCommune": "22004", - "libelleAcheminement": "BEGARD", - "nomCommune": "BEGARD" + "codePostal": "57660", + "codeCommune": "57014", + "libelleAcheminement": "ALTRIPPE", + "nomCommune": "ALTRIPPE" }, { - "codePostal": "36100", - "codeCommune": "36098", - "libelleAcheminement": "LIZERAY", - "nomCommune": "LIZERAY" + "codePostal": "44190", + "codeCommune": "44064", + "libelleAcheminement": "GORGES", + "nomCommune": "GORGES" }, { - "codePostal": "50810", - "codeCommune": "50492", - "libelleAcheminement": "ST JEAN D ELLE", - "nomCommune": "ST JEAN D ELLE" + "codePostal": "46310", + "codeCommune": "46324", + "libelleAcheminement": "UZECH", + "nomCommune": "UZECH" }, { - "codePostal": "27350", - "codeCommune": "27317", - "libelleAcheminement": "LA HAYE AUBREE", - "nomCommune": "LA HAYE AUBREE" + "codePostal": "57930", + "codeCommune": "57210", + "libelleAcheminement": "FENETRANGE", + "nomCommune": "FENETRANGE" }, { - "codePostal": "22320", - "codeCommune": "22009", - "libelleAcheminement": "LE BODEO", - "nomCommune": "LE BODEO" + "codePostal": "57170", + "codeCommune": "57018", + "libelleAcheminement": "AMELECOURT", + "nomCommune": "AMELECOURT" }, { - "codePostal": "36150", - "codeCommune": "36102", - "libelleAcheminement": "LUCAY LE LIBRE", - "nomCommune": "LUCAY LE LIBRE" + "codePostal": "44119", + "codeCommune": "44066", + "libelleAcheminement": "GRANDCHAMPS DES FONTAINES", + "nomCommune": "GRANDCHAMPS DES FONTAINES" }, { - "codePostal": "50320", - "codeCommune": "50493", - "libelleAcheminement": "ST JEAN DES CHAMPS", - "nomCommune": "ST JEAN DES CHAMPS" + "codePostal": "46230", + "codeCommune": "46329", + "libelleAcheminement": "VAYLATS", + "nomCommune": "VAYLATS" }, { - "codePostal": "27370", - "codeCommune": "27320", - "libelleAcheminement": "LA HAYE DU THEIL", - "nomCommune": "LA HAYE DU THEIL" + "codePostal": "57190", + "codeCommune": "57221", + "libelleAcheminement": "FLORANGE", + "nomCommune": "FLORANGE" }, { - "codePostal": "22240", - "codeCommune": "22012", - "libelleAcheminement": "LA BOUILLIE", - "nomCommune": "LA BOUILLIE" + "codePostal": "57360", + "codeCommune": "57019", + "libelleAcheminement": "AMNEVILLE LES THERMES", + "nomCommune": "AMNEVILLE" }, { - "codePostal": "36220", - "codeCommune": "36104", - "libelleAcheminement": "LURAIS", - "nomCommune": "LURAIS" + "codePostal": "44290", + "codeCommune": "44067", + "libelleAcheminement": "GUEMENE PENFAO", + "nomCommune": "GUEMENE PENFAO" }, { - "codePostal": "50480", - "codeCommune": "50509", - "libelleAcheminement": "STE MARIE DU MONT", - "nomCommune": "STE MARIE DU MONT" + "codePostal": "46700", + "codeCommune": "46336", + "libelleAcheminement": "VIRE SUR LOT", + "nomCommune": "VIRE SUR LOT" }, { - "codePostal": "27400", - "codeCommune": "27321", - "libelleAcheminement": "LA HAYE LE COMTE", - "nomCommune": "LA HAYE LE COMTE" + "codePostal": "57650", + "codeCommune": "57226", + "libelleAcheminement": "FONTOY", + "nomCommune": "FONTOY" }, { - "codePostal": "22870", - "codeCommune": "22016", - "libelleAcheminement": "ILE DE BREHAT", - "nomCommune": "ILE DE BREHAT" + "codePostal": "57580", + "codeCommune": "57020", + "libelleAcheminement": "ANCERVILLE", + "nomCommune": "ANCERVILLE" }, { - "codePostal": "36230", - "codeCommune": "36108", - "libelleAcheminement": "LYS ST GEORGES", - "nomCommune": "LYS ST GEORGES" + "codePostal": "44530", + "codeCommune": "44068", + "libelleAcheminement": "GUENROUET", + "nomCommune": "GUENROUET" }, { - "codePostal": "50800", - "codeCommune": "50518", - "libelleAcheminement": "ST MARTIN LE BOUILLANT", - "nomCommune": "ST MARTIN LE BOUILLANT" + "codePostal": "46090", + "codeCommune": "46340", + "libelleAcheminement": "ST PIERRE LAFEUILLE", + "nomCommune": "ST PIERRE LAFEUILLE" }, { - "codePostal": "27150", - "codeCommune": "27324", - "libelleAcheminement": "HEBECOURT", - "nomCommune": "HEBECOURT" + "codePostal": "57790", + "codeCommune": "57233", + "libelleAcheminement": "FRAQUELFING", + "nomCommune": "FRAQUELFING" }, { - "codePostal": "22250", - "codeCommune": "22020", - "libelleAcheminement": "BROONS", - "nomCommune": "BROONS" + "codePostal": "57810", + "codeCommune": "57044", + "libelleAcheminement": "AZOUDANGE", + "nomCommune": "AZOUDANGE" }, { - "codePostal": "36150", - "codeCommune": "36122", - "libelleAcheminement": "MEUNET SUR VATAN", - "nomCommune": "MEUNET SUR VATAN" + "codePostal": "44410", + "codeCommune": "44072", + "libelleAcheminement": "HERBIGNAC", + "nomCommune": "HERBIGNAC" }, { - "codePostal": "50690", - "codeCommune": "50519", - "libelleAcheminement": "ST MARTIN LE GREARD", - "nomCommune": "ST MARTIN LE GREARD" + "codePostal": "47700", + "codeCommune": "47012", + "libelleAcheminement": "ANZEX", + "nomCommune": "ANZEX" }, { - "codePostal": "27800", - "codeCommune": "27325", - "libelleAcheminement": "HECMANVILLE", - "nomCommune": "HECMANVILLE" + "codePostal": "57820", + "codeCommune": "57244", + "libelleAcheminement": "GARREBOURG", + "nomCommune": "GARREBOURG" }, { - "codePostal": "22160", - "codeCommune": "22023", - "libelleAcheminement": "BULAT PESTIVIEN", - "nomCommune": "BULAT PESTIVIEN" + "codePostal": "57230", + "codeCommune": "57046", + "libelleAcheminement": "BAERENTHAL", + "nomCommune": "BAERENTHAL" }, { - "codePostal": "36260", - "codeCommune": "36125", - "libelleAcheminement": "MIGNY", - "nomCommune": "MIGNY" + "codePostal": "44670", + "codeCommune": "44078", + "libelleAcheminement": "JUIGNE DES MOUTIERS", + "nomCommune": "JUIGNE DES MOUTIERS" }, { - "codePostal": "50480", - "codeCommune": "50523", - "libelleAcheminement": "STE MERE EGLISE", - "nomCommune": "STE MERE EGLISE" + "codePostal": "47220", + "codeCommune": "47015", + "libelleAcheminement": "ASTAFFORT", + "nomCommune": "ASTAFFORT" }, { - "codePostal": "27110", - "codeCommune": "27327", - "libelleAcheminement": "HECTOMARE", - "nomCommune": "HECTOMARE" + "codePostal": "57220", + "codeCommune": "57252", + "libelleAcheminement": "GOMELANGE", + "nomCommune": "GOMELANGE" }, { - "codePostal": "22530", - "codeCommune": "22033", - "libelleAcheminement": "CAUREL", - "nomCommune": "CAUREL" + "codePostal": "57220", + "codeCommune": "57048", + "libelleAcheminement": "BANNAY", + "nomCommune": "BANNAY" }, { - "codePostal": "36160", - "codeCommune": "36132", - "libelleAcheminement": "LA MOTTE FEUILLY", - "nomCommune": "LA MOTTE FEUILLY" + "codePostal": "44430", + "codeCommune": "44079", + "libelleAcheminement": "LE LANDREAU", + "nomCommune": "LE LANDREAU" }, { - "codePostal": "50480", - "codeCommune": "50523", - "libelleAcheminement": "STE MERE EGLISE", - "nomCommune": "STE MERE EGLISE" + "codePostal": "47120", + "codeCommune": "47020", + "libelleAcheminement": "BALEYSSAGUES", + "nomCommune": "BALEYSSAGUES" }, { - "codePostal": "27700", - "codeCommune": "27329", - "libelleAcheminement": "HENNEZIS", - "nomCommune": "HENNEZIS" + "codePostal": "57170", + "codeCommune": "57257", + "libelleAcheminement": "GREMECEY", + "nomCommune": "GREMECEY" }, { - "codePostal": "22210", - "codeCommune": "22043", - "libelleAcheminement": "COETLOGON", - "nomCommune": "COETLOGON" + "codePostal": "57260", + "codeCommune": "57053", + "libelleAcheminement": "BASSING", + "nomCommune": "BASSING" }, { - "codePostal": "36220", - "codeCommune": "36137", - "libelleAcheminement": "NEONS SUR CREUSE", - "nomCommune": "NEONS SUR CREUSE" + "codePostal": "44690", + "codeCommune": "44088", + "libelleAcheminement": "MAISDON SUR SEVRE", + "nomCommune": "MAISDON SUR SEVRE" }, { - "codePostal": "50190", - "codeCommune": "50533", - "libelleAcheminement": "ST PATRICE DE CLAIDS", - "nomCommune": "ST PATRICE DE CLAIDS" + "codePostal": "47250", + "codeCommune": "47034", + "libelleAcheminement": "BOUGLON", + "nomCommune": "BOUGLON" }, { - "codePostal": "27630", - "codeCommune": "27331", - "libelleAcheminement": "HEUBECOURT HARICOURT", - "nomCommune": "HEUBECOURT HARICOURT" + "codePostal": "57260", + "codeCommune": "57265", + "libelleAcheminement": "GUEBESTROFF", + "nomCommune": "GUEBESTROFF" }, { - "codePostal": "22800", - "codeCommune": "22045", - "libelleAcheminement": "COHINIAC", - "nomCommune": "COHINIAC" + "codePostal": "57460", + "codeCommune": "57058", + "libelleAcheminement": "BEHREN LES FORBACH", + "nomCommune": "BEHREN LES FORBACH" }, { - "codePostal": "36230", - "codeCommune": "36141", - "libelleAcheminement": "NEUVY ST SEPULCHRE", - "nomCommune": "NEUVY ST SEPULCHRE" + "codePostal": "44780", + "codeCommune": "44098", + "libelleAcheminement": "MISSILLAC", + "nomCommune": "MISSILLAC" }, { - "codePostal": "50870", - "codeCommune": "50535", - "libelleAcheminement": "LE PARC", - "nomCommune": "LE PARC" + "codePostal": "47410", + "codeCommune": "47035", + "libelleAcheminement": "BOURGOUGNAGUE", + "nomCommune": "BOURGOUGNAGUE" }, { - "codePostal": "27600", - "codeCommune": "27332", - "libelleAcheminement": "HEUDEBOUVILLE", - "nomCommune": "HEUDEBOUVILLE" + "codePostal": "57260", + "codeCommune": "57266", + "libelleAcheminement": "GUEBLANGE LES DIEUZE", + "nomCommune": "GUEBLANGE LES DIEUZE" }, { - "codePostal": "22330", - "codeCommune": "22046", - "libelleAcheminement": "LE MENE", - "nomCommune": "LE MENE" + "codePostal": "57340", + "codeCommune": "57059", + "libelleAcheminement": "BELLANGE", + "nomCommune": "BELLANGE" }, { - "codePostal": "36400", - "codeCommune": "36143", - "libelleAcheminement": "NOHANT VIC", - "nomCommune": "NOHANT VIC" + "codePostal": "44520", + "codeCommune": "44099", + "libelleAcheminement": "MOISDON LA RIVIERE", + "nomCommune": "MOISDON LA RIVIERE" }, { - "codePostal": "50270", - "codeCommune": "50536", - "libelleAcheminement": "ST PIERRE D ARTHEGLISE", - "nomCommune": "ST PIERRE D ARTHEGLISE" + "codePostal": "47260", + "codeCommune": "47054", + "libelleAcheminement": "CASTELMORON SUR LOT", + "nomCommune": "CASTELMORON SUR LOT" }, { - "codePostal": "27910", - "codeCommune": "27338", - "libelleAcheminement": "LES HOGUES", - "nomCommune": "LES HOGUES" + "codePostal": "57260", + "codeCommune": "57270", + "libelleAcheminement": "VAL DE BRIDE", + "nomCommune": "VAL DE BRIDE" }, { - "codePostal": "22330", - "codeCommune": "22046", - "libelleAcheminement": "LE MENE", - "nomCommune": "LE MENE" + "codePostal": "57370", + "codeCommune": "57064", + "libelleAcheminement": "BERLING", + "nomCommune": "BERLING" }, { - "codePostal": "36190", - "codeCommune": "36146", - "libelleAcheminement": "ORSENNES", - "nomCommune": "ORSENNES" + "codePostal": "44690", + "codeCommune": "44100", + "libelleAcheminement": "MONNIERES", + "nomCommune": "MONNIERES" }, { - "codePostal": "50330", - "codeCommune": "50539", - "libelleAcheminement": "ST PIERRE EGLISE", - "nomCommune": "ST PIERRE EGLISE" + "codePostal": "47290", + "codeCommune": "47055", + "libelleAcheminement": "CASTELNAUD DE GRATECAMBE", + "nomCommune": "CASTELNAUD DE GRATECAMBE" }, { - "codePostal": "27400", - "codeCommune": "27342", - "libelleAcheminement": "HOUETTEVILLE", - "nomCommune": "HOUETTEVILLE" + "codePostal": "57405", + "codeCommune": "57280", + "libelleAcheminement": "GUNTZVILLER", + "nomCommune": "GUNTZVILLER" }, { - "codePostal": "22100", - "codeCommune": "22050", - "libelleAcheminement": "DINAN", - "nomCommune": "DINAN" + "codePostal": "57340", + "codeCommune": "57065", + "libelleAcheminement": "BERMERING", + "nomCommune": "BERMERING" }, { - "codePostal": "36800", - "codeCommune": "36148", - "libelleAcheminement": "OULCHES", - "nomCommune": "OULCHES" + "codePostal": "44620", + "codeCommune": "44101", + "libelleAcheminement": "LA MONTAGNE", + "nomCommune": "LA MONTAGNE" }, { - "codePostal": "50400", - "codeCommune": "50541", - "libelleAcheminement": "ST PLANCHERS", - "nomCommune": "ST PLANCHERS" + "codePostal": "47500", + "codeCommune": "47070", + "libelleAcheminement": "CONDEZAYGUES", + "nomCommune": "CONDEZAYGUES" }, { - "codePostal": "27120", - "codeCommune": "27343", - "libelleAcheminement": "HOULBEC COCHEREL", - "nomCommune": "HOULBEC COCHEREL" + "codePostal": "57340", + "codeCommune": "57281", + "libelleAcheminement": "HABOUDANGE", + "nomCommune": "HABOUDANGE" }, { - "codePostal": "22430", - "codeCommune": "22054", - "libelleAcheminement": "ERQUY", - "nomCommune": "ERQUY" + "codePostal": "57930", + "codeCommune": "57071", + "libelleAcheminement": "BETTBORN", + "nomCommune": "BETTBORN" }, { - "codePostal": "36500", - "codeCommune": "36149", - "libelleAcheminement": "PALLUAU SUR INDRE", - "nomCommune": "PALLUAU SUR INDRE" + "codePostal": "44850", + "codeCommune": "44107", + "libelleAcheminement": "MOUZEIL", + "nomCommune": "MOUZEIL" }, { - "codePostal": "50200", - "codeCommune": "50550", - "libelleAcheminement": "ST SAUVEUR VILLAGES", - "nomCommune": "ST SAUVEUR VILLAGES" + "codePostal": "47360", + "codeCommune": "47073", + "libelleAcheminement": "COURS", + "nomCommune": "COURS" }, { - "codePostal": "27910", - "codeCommune": "27366", - "libelleAcheminement": "LETTEGUIVES", - "nomCommune": "LETTEGUIVES" + "codePostal": "57970", + "codeCommune": "57287", + "libelleAcheminement": "BASSE HAM", + "nomCommune": "BASSE HAM" }, { - "codePostal": "22430", - "codeCommune": "22054", - "libelleAcheminement": "ERQUY", - "nomCommune": "ERQUY" + "codePostal": "57800", + "codeCommune": "57073", + "libelleAcheminement": "BETTING", + "nomCommune": "BETTING" }, { - "codePostal": "36290", - "codeCommune": "36153", - "libelleAcheminement": "PAULNAY", - "nomCommune": "PAULNAY" + "codePostal": "44521", + "codeCommune": "44115", + "libelleAcheminement": "OUDON", + "nomCommune": "OUDON" }, { - "codePostal": "50190", - "codeCommune": "50552", - "libelleAcheminement": "ST SEBASTIEN DE RAIDS", - "nomCommune": "ST SEBASTIEN DE RAIDS" + "codePostal": "47470", + "codeCommune": "47082", + "libelleAcheminement": "DONDAS", + "nomCommune": "DONDAS" }, { - "codePostal": "27560", - "codeCommune": "27367", - "libelleAcheminement": "LIEUREY", - "nomCommune": "LIEUREY" + "codePostal": "57910", + "codeCommune": "57289", + "libelleAcheminement": "HAMBACH", + "nomCommune": "HAMBACH" }, { - "codePostal": "22150", - "codeCommune": "22060", - "libelleAcheminement": "GAUSSON", - "nomCommune": "GAUSSON" + "codePostal": "57635", + "codeCommune": "57080", + "libelleAcheminement": "BICKENHOLTZ", + "nomCommune": "BICKENHOLTZ" }, { - "codePostal": "36180", - "codeCommune": "36155", - "libelleAcheminement": "PELLEVOISIN", - "nomCommune": "PELLEVOISIN" + "codePostal": "44560", + "codeCommune": "44116", + "libelleAcheminement": "PAIMBOEUF", + "nomCommune": "PAIMBOEUF" }, { - "codePostal": "50550", - "codeCommune": "50562", - "libelleAcheminement": "ST VAAST LA HOUGUE", - "nomCommune": "ST VAAST LA HOUGUE" + "codePostal": "47210", + "codeCommune": "47083", + "libelleAcheminement": "DOUDRAC", + "nomCommune": "DOUDRAC" }, { - "codePostal": "27800", - "codeCommune": "27371", - "libelleAcheminement": "LIVET SUR AUTHOU", - "nomCommune": "LIVET SUR AUTHOU" + "codePostal": "57370", + "codeCommune": "57291", + "libelleAcheminement": "HANGVILLER", + "nomCommune": "HANGVILLER" }, { - "codePostal": "22200", - "codeCommune": "22067", - "libelleAcheminement": "GRACES", - "nomCommune": "GRACES" + "codePostal": "57410", + "codeCommune": "57083", + "libelleAcheminement": "BINING", + "nomCommune": "BINING" }, { - "codePostal": "36800", - "codeCommune": "36172", - "libelleAcheminement": "RIVARENNES", - "nomCommune": "RIVARENNES" + "codePostal": "44440", + "codeCommune": "44118", + "libelleAcheminement": "PANNECE", + "nomCommune": "PANNECE" }, { - "codePostal": "50500", - "codeCommune": "50564", - "libelleAcheminement": "TERRE ET MARAIS", - "nomCommune": "TERRE ET MARAIS" + "codePostal": "47330", + "codeCommune": "47084", + "libelleAcheminement": "DOUZAINS", + "nomCommune": "DOUZAINS" }, { - "codePostal": "27800", - "codeCommune": "27380", - "libelleAcheminement": "MALLEVILLE SUR LE BEC", - "nomCommune": "MALLEVILLE SUR LE BEC" + "codePostal": "57850", + "codeCommune": "57300", + "libelleAcheminement": "HASELBOURG", + "nomCommune": "HASELBOURG" }, { - "codePostal": "22200", - "codeCommune": "22067", - "libelleAcheminement": "GRACES", - "nomCommune": "GRACES" + "codePostal": "57260", + "codeCommune": "57090", + "libelleAcheminement": "BLANCHE EGLISE", + "nomCommune": "BLANCHE EGLISE" }, { - "codePostal": "36170", - "codeCommune": "36177", - "libelleAcheminement": "SACIERGES ST MARTIN", - "nomCommune": "SACIERGES ST MARTIN" + "codePostal": "44630", + "codeCommune": "44128", + "libelleAcheminement": "PLESSE", + "nomCommune": "PLESSE" }, { - "codePostal": "50530", - "codeCommune": "50565", - "libelleAcheminement": "SARTILLY BAIE BOCAGE", - "nomCommune": "SARTILLY BAIE BOCAGE" + "codePostal": "47420", + "codeCommune": "47085", + "libelleAcheminement": "DURANCE", + "nomCommune": "DURANCE" }, { - "codePostal": "27130", - "codeCommune": "27383", - "libelleAcheminement": "MANDRES", - "nomCommune": "MANDRES" + "codePostal": "57650", + "codeCommune": "57305", + "libelleAcheminement": "HAVANGE", + "nomCommune": "HAVANGE" }, { - "codePostal": "22320", - "codeCommune": "22073", - "libelleAcheminement": "LA HARMOYE", - "nomCommune": "LA HARMOYE" + "codePostal": "57260", + "codeCommune": "57098", + "libelleAcheminement": "BOURGALTROFF", + "nomCommune": "BOURGALTROFF" }, { - "codePostal": "36300", - "codeCommune": "36178", - "libelleAcheminement": "ST AIGNY", - "nomCommune": "ST AIGNY" + "codePostal": "44160", + "codeCommune": "44129", + "libelleAcheminement": "PONTCHATEAU", + "nomCommune": "PONTCHATEAU" }, { - "codePostal": "50270", - "codeCommune": "50577", - "libelleAcheminement": "SORTOSVILLE EN BEAUMONT", - "nomCommune": "SORTOSVILLE EN BEAUMONT" + "codePostal": "47120", + "codeCommune": "47086", + "libelleAcheminement": "DURAS", + "nomCommune": "DURAS" }, { - "codePostal": "27500", - "codeCommune": "27385", - "libelleAcheminement": "MANNEVILLE SUR RISLE", - "nomCommune": "MANNEVILLE SUR RISLE" + "codePostal": "57700", + "codeCommune": "57306", + "libelleAcheminement": "HAYANGE", + "nomCommune": "HAYANGE" }, { - "codePostal": "22320", - "codeCommune": "22074", - "libelleAcheminement": "LE HAUT CORLAY", - "nomCommune": "LE HAUT CORLAY" + "codePostal": "57370", + "codeCommune": "57100", + "libelleAcheminement": "BOURSCHEID", + "nomCommune": "BOURSCHEID" }, { - "codePostal": "36210", - "codeCommune": "36185", - "libelleAcheminement": "ST CHRISTOPHE EN BAZELLE", - "nomCommune": "ST CHRISTOPHE EN BAZELLE" + "codePostal": "44710", + "codeCommune": "44133", + "libelleAcheminement": "PORT ST PERE", + "nomCommune": "PORT ST PERE" }, { - "codePostal": "50270", - "codeCommune": "50585", - "libelleAcheminement": "SURTAINVILLE", - "nomCommune": "SURTAINVILLE" + "codePostal": "47470", + "codeCommune": "47087", + "libelleAcheminement": "ENGAYRAC", + "nomCommune": "ENGAYRAC" }, { - "codePostal": "27680", - "codeCommune": "27388", - "libelleAcheminement": "MARAIS VERNIER", - "nomCommune": "MARAIS VERNIER" + "codePostal": "57930", + "codeCommune": "57310", + "libelleAcheminement": "HELLERING LES FENETRANGE", + "nomCommune": "HELLERING LES FENETRANGE" }, { - "codePostal": "22400", - "codeCommune": "22077", - "libelleAcheminement": "HENANSAL", - "nomCommune": "HENANSAL" + "codePostal": "57340", + "codeCommune": "57107", + "libelleAcheminement": "BREHAIN", + "nomCommune": "BREHAIN" }, { - "codePostal": "36230", - "codeCommune": "36189", - "libelleAcheminement": "ST DENIS DE JOUHET", - "nomCommune": "ST DENIS DE JOUHET" + "codePostal": "44750", + "codeCommune": "44139", + "libelleAcheminement": "QUILLY", + "nomCommune": "QUILLY" }, { - "codePostal": "50700", - "codeCommune": "50588", - "libelleAcheminement": "TAMERVILLE", - "nomCommune": "TAMERVILLE" + "codePostal": "47510", + "codeCommune": "47100", + "libelleAcheminement": "FOULAYRONNES", + "nomCommune": "FOULAYRONNES" }, { - "codePostal": "27320", - "codeCommune": "27390", - "libelleAcheminement": "MARCILLY LA CAMPAGNE", - "nomCommune": "MARCILLY LA CAMPAGNE" + "codePostal": "57220", + "codeCommune": "57312", + "libelleAcheminement": "HELSTROFF", + "nomCommune": "HELSTROFF" }, { - "codePostal": "22150", - "codeCommune": "22079", - "libelleAcheminement": "HENON", - "nomCommune": "HENON" + "codePostal": "57635", + "codeCommune": "57114", + "libelleAcheminement": "BROUVILLER", + "nomCommune": "BROUVILLER" }, { - "codePostal": "36500", - "codeCommune": "36198", - "libelleAcheminement": "ST LACTENCIN", - "nomCommune": "ST LACTENCIN" + "codePostal": "44430", + "codeCommune": "44141", + "libelleAcheminement": "LA REMAUDIERE", + "nomCommune": "LA REMAUDIERE" }, { - "codePostal": "50170", - "codeCommune": "50589", - "libelleAcheminement": "TANIS", - "nomCommune": "TANIS" + "codePostal": "47400", + "codeCommune": "47112", + "libelleAcheminement": "GRATELOUP ST GAYRAND", + "nomCommune": "GRATELOUP ST GAYRAND" }, { - "codePostal": "27150", - "codeCommune": "27392", - "libelleAcheminement": "MARTAGNY", - "nomCommune": "MARTAGNY" + "codePostal": "57330", + "codeCommune": "57323", + "libelleAcheminement": "HETTANGE GRANDE", + "nomCommune": "HETTANGE GRANDE" }, { - "codePostal": "22230", - "codeCommune": "22083", - "libelleAcheminement": "ILLIFAUT", - "nomCommune": "ILLIFAUT" + "codePostal": "57920", + "codeCommune": "57117", + "libelleAcheminement": "BUDING", + "nomCommune": "BUDING" }, { - "codePostal": "36200", - "codeCommune": "36200", - "libelleAcheminement": "ST MARCEL", - "nomCommune": "ST MARCEL" + "codePostal": "44400", + "codeCommune": "44143", + "libelleAcheminement": "REZE", + "nomCommune": "REZE" }, { - "codePostal": "50640", - "codeCommune": "50591", - "libelleAcheminement": "LE TEILLEUL", - "nomCommune": "LE TEILLEUL" + "codePostal": "47270", + "codeCommune": "47113", + "libelleAcheminement": "GRAYSSAS", + "nomCommune": "GRAYSSAS" }, { - "codePostal": "27210", - "codeCommune": "27393", - "libelleAcheminement": "MARTAINVILLE", - "nomCommune": "MARTAINVILLE" + "codePostal": "57510", + "codeCommune": "57325", + "libelleAcheminement": "HILSPRICH", + "nomCommune": "HILSPRICH" }, { - "codePostal": "22270", - "codeCommune": "22084", - "libelleAcheminement": "JUGON LES LACS COMMUNE NOUVELLE", - "nomCommune": "JUGON LES LACS COMMUNE NOUVELLE" + "codePostal": "57970", + "codeCommune": "57118", + "libelleAcheminement": "BUDLING", + "nomCommune": "BUDLING" }, { - "codePostal": "36160", - "codeCommune": "36208", - "libelleAcheminement": "STE SEVERE SUR INDRE", - "nomCommune": "STE SEVERE SUR INDRE" + "codePostal": "44640", + "codeCommune": "44145", + "libelleAcheminement": "ROUANS", + "nomCommune": "ROUANS" }, { - "codePostal": "50160", - "codeCommune": "50601", - "libelleAcheminement": "TORIGNY LES VILLES", - "nomCommune": "TORIGNY LES VILLES" + "codePostal": "47260", + "codeCommune": "47135", + "libelleAcheminement": "LAPARADE", + "nomCommune": "LAPARADE" }, { - "codePostal": "27340", - "codeCommune": "27394", - "libelleAcheminement": "MARTOT", - "nomCommune": "MARTOT" + "codePostal": "57920", + "codeCommune": "57331", + "libelleAcheminement": "HOMBOURG BUDANGE", + "nomCommune": "HOMBOURG BUDANGE" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "57220", + "codeCommune": "57121", + "libelleAcheminement": "BURTONCOURT", + "nomCommune": "BURTONCOURT" }, { - "codePostal": "36230", - "codeCommune": "36210", - "libelleAcheminement": "SARZAY", - "nomCommune": "SARZAY" + "codePostal": "44860", + "codeCommune": "44150", + "libelleAcheminement": "ST AIGNAN GRANDLIEU", + "nomCommune": "ST AIGNAN GRANDLIEU" }, { - "codePostal": "50160", - "codeCommune": "50601", - "libelleAcheminement": "TORIGNY LES VILLES", - "nomCommune": "TORIGNY LES VILLES" + "codePostal": "47300", + "codeCommune": "47146", + "libelleAcheminement": "LEDAT", + "nomCommune": "LEDAT" }, { - "codePostal": "27950", - "codeCommune": "27399", - "libelleAcheminement": "MERCEY", - "nomCommune": "MERCEY" + "codePostal": "57990", + "codeCommune": "57340", + "libelleAcheminement": "HUNDLING", + "nomCommune": "HUNDLING" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "57490", + "codeCommune": "57123", + "libelleAcheminement": "CARLING", + "nomCommune": "CARLING" }, { - "codePostal": "36180", - "codeCommune": "36216", - "libelleAcheminement": "SELLES SUR NAHON", - "nomCommune": "SELLES SUR NAHON" + "codePostal": "44250", + "codeCommune": "44154", + "libelleAcheminement": "ST BREVIN LES PINS", + "nomCommune": "ST BREVIN LES PINS" }, { - "codePostal": "50200", - "codeCommune": "50624", - "libelleAcheminement": "LA VENDELEE", - "nomCommune": "LA VENDELEE" + "codePostal": "47120", + "codeCommune": "47147", + "libelleAcheminement": "LEVIGNAC DE GUYENNE", + "nomCommune": "LEVIGNAC DE GUYENNE" }, { - "codePostal": "27930", - "codeCommune": "27410", - "libelleAcheminement": "MISEREY", - "nomCommune": "MISEREY" + "codePostal": "57480", + "codeCommune": "57341", + "libelleAcheminement": "HUNTING", + "nomCommune": "HUNTING" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "57570", + "codeCommune": "57124", + "libelleAcheminement": "CATTENOM", + "nomCommune": "CATTENOM" }, { - "codePostal": "36200", - "codeCommune": "36219", - "libelleAcheminement": "TENDU", - "nomCommune": "TENDU" + "codePostal": "44150", + "codeCommune": "44163", + "libelleAcheminement": "VAIR SUR LOIRE", + "nomCommune": "VAIR SUR LOIRE" }, { - "codePostal": "50410", - "codeCommune": "50637", - "libelleAcheminement": "VILLEBAUDON", - "nomCommune": "VILLEBAUDON" + "codePostal": "47700", + "codeCommune": "47148", + "libelleAcheminement": "LEYRITZ MONCASSIN", + "nomCommune": "LEYRITZ MONCASSIN" }, { - "codePostal": "27290", - "codeCommune": "27413", - "libelleAcheminement": "MONTFORT SUR RISLE", - "nomCommune": "MONTFORT SUR RISLE" + "codePostal": "57970", + "codeCommune": "57343", + "libelleAcheminement": "ILLANGE", + "nomCommune": "ILLANGE" }, { - "codePostal": "22770", - "codeCommune": "22094", - "libelleAcheminement": "LANCIEUX", - "nomCommune": "LANCIEUX" + "codePostal": "57365", + "codeCommune": "57125", + "libelleAcheminement": "CHAILLY LES ENNERY", + "nomCommune": "CHAILLY LES ENNERY" }, { - "codePostal": "36310", - "codeCommune": "36223", - "libelleAcheminement": "TILLY", - "nomCommune": "TILLY" + "codePostal": "44680", + "codeCommune": "44164", + "libelleAcheminement": "ST HILAIRE DE CHALEONS", + "nomCommune": "ST HILAIRE DE CHALEONS" }, { - "codePostal": "50800", - "codeCommune": "50639", - "libelleAcheminement": "VILLEDIEU LES POELES ROUFFIGNY", - "nomCommune": "VILLEDIEU LES POELES ROUFFIGNY" + "codePostal": "47360", + "codeCommune": "47154", + "libelleAcheminement": "LUSIGNAN PETIT", + "nomCommune": "LUSIGNAN PETIT" }, { - "codePostal": "27390", - "codeCommune": "27414", - "libelleAcheminement": "MONTREUIL L ARGILLE", - "nomCommune": "MONTREUIL L ARGILLE" + "codePostal": "57990", + "codeCommune": "57348", + "libelleAcheminement": "IPPLING", + "nomCommune": "IPPLING" }, { - "codePostal": "22980", - "codeCommune": "22097", - "libelleAcheminement": "LA LANDEC", - "nomCommune": "LA LANDEC" + "codePostal": "57220", + "codeCommune": "57128", + "libelleAcheminement": "CHARLEVILLE SOUS BOIS", + "nomCommune": "CHARLEVILLE SOUS BOIS" }, { - "codePostal": "36220", - "codeCommune": "36224", - "libelleAcheminement": "TOURNON ST MARTIN", - "nomCommune": "TOURNON ST MARTIN" + "codePostal": "44670", + "codeCommune": "44170", + "libelleAcheminement": "ST JULIEN DE VOUVANTES", + "nomCommune": "ST JULIEN DE VOUVANTES" }, { - "codePostal": "51700", - "codeCommune": "51012", - "libelleAcheminement": "ANTHENAY", - "nomCommune": "ANTHENAY" + "codePostal": "47200", + "codeCommune": "47156", + "libelleAcheminement": "MARCELLUS", + "nomCommune": "MARCELLUS" }, { - "codePostal": "27260", - "codeCommune": "27415", - "libelleAcheminement": "MORAINVILLE JOUVEAUX", - "nomCommune": "MORAINVILLE JOUVEAUX" + "codePostal": "57130", + "codeCommune": "57350", + "libelleAcheminement": "JOUY AUX ARCHES", + "nomCommune": "JOUY AUX ARCHES" }, { - "codePostal": "22490", - "codeCommune": "22103", - "libelleAcheminement": "LANGROLAY SUR RANCE", - "nomCommune": "LANGROLAY SUR RANCE" + "codePostal": "57640", + "codeCommune": "57129", + "libelleAcheminement": "CHARLY ORADOUR", + "nomCommune": "CHARLY ORADOUR" }, { - "codePostal": "36500", - "codeCommune": "36232", - "libelleAcheminement": "VENDOEUVRES", - "nomCommune": "VENDOEUVRES" + "codePostal": "44540", + "codeCommune": "44180", + "libelleAcheminement": "VALLONS DE L ERDRE", + "nomCommune": "VALLONS DE L ERDRE" }, { - "codePostal": "51800", - "codeCommune": "51015", - "libelleAcheminement": "ARGERS", - "nomCommune": "ARGERS" + "codePostal": "47140", + "codeCommune": "47162", + "libelleAcheminement": "MASSOULES", + "nomCommune": "MASSOULES" }, { - "codePostal": "27190", - "codeCommune": "27424", - "libelleAcheminement": "NAGEL SEEZ MESNIL", - "nomCommune": "NAGEL SEEZ MESNIL" + "codePostal": "57430", + "codeCommune": "57357", + "libelleAcheminement": "KAPPELKINGER", + "nomCommune": "KAPPELKINGER" }, { - "codePostal": "22360", - "codeCommune": "22106", - "libelleAcheminement": "LANGUEUX", - "nomCommune": "LANGUEUX" + "codePostal": "57340", + "codeCommune": "57130", + "libelleAcheminement": "CHATEAU BREHAIN", + "nomCommune": "CHATEAU BREHAIN" }, { - "codePostal": "36290", - "codeCommune": "36246", - "libelleAcheminement": "VILLIERS", - "nomCommune": "VILLIERS" + "codePostal": "44730", + "codeCommune": "44182", + "libelleAcheminement": "ST MICHEL CHEF CHEF", + "nomCommune": "ST MICHEL CHEF CHEF" }, { - "codePostal": "51290", - "codeCommune": "51016", - "libelleAcheminement": "ARRIGNY", - "nomCommune": "ARRIGNY" + "codePostal": "47200", + "codeCommune": "47163", + "libelleAcheminement": "MAUVEZIN SUR GUPIE", + "nomCommune": "MAUVEZIN SUR GUPIE" }, { - "codePostal": "27150", - "codeCommune": "27430", - "libelleAcheminement": "LA NEUVE GRANGE", - "nomCommune": "LA NEUVE GRANGE" + "codePostal": "57560", + "codeCommune": "57374", + "libelleAcheminement": "LAFRIMBOLLE", + "nomCommune": "LAFRIMBOLLE" }, { - "codePostal": "22570", - "codeCommune": "22107", - "libelleAcheminement": "BON REPOS SUR BLAVET", - "nomCommune": "BON REPOS SUR BLAVET" + "codePostal": "57170", + "codeCommune": "57133", + "libelleAcheminement": "CHATEAU VOUE", + "nomCommune": "CHATEAU VOUE" }, { - "codePostal": "37500", - "codeCommune": "37004", - "libelleAcheminement": "ANCHE", - "nomCommune": "ANCHE" + "codePostal": "44730", + "codeCommune": "44182", + "libelleAcheminement": "ST MICHEL CHEF CHEF", + "nomCommune": "ST MICHEL CHEF CHEF" }, { - "codePostal": "51260", - "codeCommune": "51041", - "libelleAcheminement": "BAUDEMENT", - "nomCommune": "BAUDEMENT" + "codePostal": "47170", + "codeCommune": "47167", + "libelleAcheminement": "MEZIN", + "nomCommune": "MEZIN" }, { - "codePostal": "27190", - "codeCommune": "27436", - "libelleAcheminement": "NOGENT LE SEC", - "nomCommune": "NOGENT LE SEC" + "codePostal": "57410", + "codeCommune": "57376", + "libelleAcheminement": "LAMBACH", + "nomCommune": "LAMBACH" }, { - "codePostal": "22290", - "codeCommune": "22112", - "libelleAcheminement": "LANNEBERT", - "nomCommune": "LANNEBERT" + "codePostal": "57420", + "codeCommune": "57137", + "libelleAcheminement": "CHEMINOT", + "nomCommune": "CHEMINOT" }, { - "codePostal": "37260", - "codeCommune": "37006", - "libelleAcheminement": "ARTANNES SUR INDRE", - "nomCommune": "ARTANNES SUR INDRE" + "codePostal": "44680", + "codeCommune": "44186", + "libelleAcheminement": "STE PAZANNE", + "nomCommune": "STE PAZANNE" }, { - "codePostal": "51110", - "codeCommune": "51043", - "libelleAcheminement": "BAZANCOURT", - "nomCommune": "BAZANCOURT" + "codePostal": "47310", + "codeCommune": "47172", + "libelleAcheminement": "MONCAUT", + "nomCommune": "MONCAUT" }, { - "codePostal": "27930", - "codeCommune": "27439", - "libelleAcheminement": "NORMANVILLE", - "nomCommune": "NORMANVILLE" + "codePostal": "57830", + "codeCommune": "57377", + "libelleAcheminement": "LANDANGE", + "nomCommune": "LANDANGE" }, { - "codePostal": "22300", - "codeCommune": "22113", - "libelleAcheminement": "LANNION", - "nomCommune": "LANNION" + "codePostal": "57185", + "codeCommune": "57143", + "libelleAcheminement": "CLOUANGE", + "nomCommune": "CLOUANGE" }, { - "codePostal": "37340", - "codeCommune": "37013", - "libelleAcheminement": "AVRILLE LES PONCEAUX", - "nomCommune": "AVRILLE LES PONCEAUX" + "codePostal": "44230", + "codeCommune": "44190", + "libelleAcheminement": "ST SEBASTIEN SUR LOIRE", + "nomCommune": "ST SEBASTIEN SUR LOIRE" }, { - "codePostal": "51490", - "codeCommune": "51046", - "libelleAcheminement": "BEINE NAUROY", - "nomCommune": "BEINE NAUROY" + "codePostal": "47230", + "codeCommune": "47176", + "libelleAcheminement": "MONTGAILLARD EN ALBRET", + "nomCommune": "MONTGAILLARD EN ALBRET" }, { - "codePostal": "27800", - "codeCommune": "27441", - "libelleAcheminement": "NOTRE DAME D EPINE", - "nomCommune": "NOTRE DAME D EPINE" + "codePostal": "57340", + "codeCommune": "57379", + "libelleAcheminement": "LANDROFF", + "nomCommune": "LANDROFF" }, { - "codePostal": "22250", - "codeCommune": "22114", - "libelleAcheminement": "LANRELAS", - "nomCommune": "LANRELAS" + "codePostal": "57800", + "codeCommune": "57144", + "libelleAcheminement": "COCHEREN", + "nomCommune": "COCHEREN" }, { - "codePostal": "37360", - "codeCommune": "37021", - "libelleAcheminement": "BEAUMONT LOUESTAULT", - "nomCommune": "BEAUMONT LOUESTAULT" + "codePostal": "44590", + "codeCommune": "44193", + "libelleAcheminement": "ST VINCENT DES LANDES", + "nomCommune": "ST VINCENT DES LANDES" }, { - "codePostal": "51130", - "codeCommune": "51049", - "libelleAcheminement": "BERGERES LES VERTUS", - "nomCommune": "BERGERES LES VERTUS" + "codePostal": "47500", + "codeCommune": "47179", + "libelleAcheminement": "MONSEMPRON LIBOS", + "nomCommune": "MONSEMPRON LIBOS" }, { - "codePostal": "27390", - "codeCommune": "27442", - "libelleAcheminement": "NOTRE DAME DU HAMEL", - "nomCommune": "NOTRE DAME DU HAMEL" + "codePostal": "57660", + "codeCommune": "57389", + "libelleAcheminement": "LELLING", + "nomCommune": "LELLING" }, { - "codePostal": "22570", - "codeCommune": "22124", - "libelleAcheminement": "LESCOUET GOUAREC", - "nomCommune": "LESCOUET GOUAREC" + "codePostal": "57590", + "codeCommune": "57158", + "libelleAcheminement": "CRAINCOURT", + "nomCommune": "CRAINCOURT" }, { - "codePostal": "37460", - "codeCommune": "37023", - "libelleAcheminement": "BEAUMONT VILLAGE", - "nomCommune": "BEAUMONT VILLAGE" + "codePostal": "44880", + "codeCommune": "44194", + "libelleAcheminement": "SAUTRON", + "nomCommune": "SAUTRON" }, { - "codePostal": "51420", - "codeCommune": "51052", - "libelleAcheminement": "BERRU", - "nomCommune": "BERRU" + "codePostal": "47150", + "codeCommune": "47181", + "libelleAcheminement": "MONTAGNAC SUR LEDE", + "nomCommune": "MONTAGNAC SUR LEDE" }, { - "codePostal": "27120", - "codeCommune": "27448", - "libelleAcheminement": "PACY SUR EURE", - "nomCommune": "PACY SUR EURE" + "codePostal": "57810", + "codeCommune": "57397", + "libelleAcheminement": "LEY", + "nomCommune": "LEY" }, { - "codePostal": "22800", - "codeCommune": "22126", - "libelleAcheminement": "LE LESLAY", - "nomCommune": "LE LESLAY" + "codePostal": "57150", + "codeCommune": "57160", + "libelleAcheminement": "CREUTZWALD", + "nomCommune": "CREUTZWALD" }, { - "codePostal": "37600", - "codeCommune": "37026", - "libelleAcheminement": "BETZ LE CHATEAU", - "nomCommune": "BETZ LE CHATEAU" + "codePostal": "44260", + "codeCommune": "44195", + "libelleAcheminement": "SAVENAY", + "nomCommune": "SAVENAY" }, { - "codePostal": "51450", - "codeCommune": "51055", - "libelleAcheminement": "BETHENY", - "nomCommune": "BETHENY" + "codePostal": "47120", + "codeCommune": "47187", + "libelleAcheminement": "MONTETON", + "nomCommune": "MONTETON" }, { - "codePostal": "27180", - "codeCommune": "27451", - "libelleAcheminement": "PARVILLE", - "nomCommune": "PARVILLE" + "codePostal": "57340", + "codeCommune": "57401", + "libelleAcheminement": "LIDREZING", + "nomCommune": "LIDREZING" }, { - "codePostal": "22540", - "codeCommune": "22135", - "libelleAcheminement": "LOUARGAT", - "nomCommune": "LOUARGAT" + "codePostal": "57420", + "codeCommune": "57162", + "libelleAcheminement": "CUVRY", + "nomCommune": "CUVRY" }, { - "codePostal": "37140", - "codeCommune": "37031", - "libelleAcheminement": "BOURGUEIL", - "nomCommune": "BOURGUEIL" + "codePostal": "44840", + "codeCommune": "44198", + "libelleAcheminement": "LES SORINIERES", + "nomCommune": "LES SORINIERES" }, { - "codePostal": "51260", - "codeCommune": "51056", - "libelleAcheminement": "BETHON", - "nomCommune": "BETHON" + "codePostal": "47600", + "codeCommune": "47195", + "libelleAcheminement": "NERAC", + "nomCommune": "NERAC" }, { - "codePostal": "27400", - "codeCommune": "27456", - "libelleAcheminement": "PINTERVILLE", - "nomCommune": "PINTERVILLE" + "codePostal": "57670", + "codeCommune": "57410", + "libelleAcheminement": "LHOR", + "nomCommune": "LHOR" }, { - "codePostal": "22340", - "codeCommune": "22137", - "libelleAcheminement": "MAEL CARHAIX", - "nomCommune": "MAEL CARHAIX" + "codePostal": "57340", + "codeCommune": "57166", + "libelleAcheminement": "DALHAIN", + "nomCommune": "DALHAIN" }, { - "codePostal": "37120", - "codeCommune": "37035", - "libelleAcheminement": "BRAYE SOUS FAYE", - "nomCommune": "BRAYE SOUS FAYE" + "codePostal": "44440", + "codeCommune": "44202", + "libelleAcheminement": "TEILLE", + "nomCommune": "TEILLE" }, { - "codePostal": "51170", - "codeCommune": "51069", - "libelleAcheminement": "BLIGNY", - "nomCommune": "BLIGNY" + "codePostal": "47520", + "codeCommune": "47201", + "libelleAcheminement": "LE PASSAGE", + "nomCommune": "LE PASSAGE" }, { - "codePostal": "27120", - "codeCommune": "27465", - "libelleAcheminement": "LE PLESSIS HEBERT", - "nomCommune": "LE PLESSIS HEBERT" + "codePostal": "57650", + "codeCommune": "57411", + "libelleAcheminement": "LOMMERANGE", + "nomCommune": "LOMMERANGE" }, { - "codePostal": "22440", - "codeCommune": "22144", - "libelleAcheminement": "LA MEAUGON", - "nomCommune": "LA MEAUGON" + "codePostal": "57220", + "codeCommune": "57172", + "libelleAcheminement": "DENTING", + "nomCommune": "DENTING" }, { - "codePostal": "37330", - "codeCommune": "37036", - "libelleAcheminement": "BRAYE SUR MAULNE", - "nomCommune": "BRAYE SUR MAULNE" + "codePostal": "44650", + "codeCommune": "44206", + "libelleAcheminement": "TOUVOIS", + "nomCommune": "TOUVOIS" }, { - "codePostal": "51310", - "codeCommune": "51071", - "libelleAcheminement": "BOUCHY ST GENEST", - "nomCommune": "BOUCHY ST GENEST" + "codePostal": "47130", + "codeCommune": "47210", + "libelleAcheminement": "PORT STE MARIE", + "nomCommune": "PORT STE MARIE" }, { - "codePostal": "27500", - "codeCommune": "27467", - "libelleAcheminement": "PONT AUDEMER", - "nomCommune": "PONT AUDEMER" + "codePostal": "57050", + "codeCommune": "57415", + "libelleAcheminement": "LORRY LES METZ", + "nomCommune": "LORRY LES METZ" }, { - "codePostal": "22270", - "codeCommune": "22145", - "libelleAcheminement": "MEGRIT", - "nomCommune": "MEGRIT" + "codePostal": "57925", + "codeCommune": "57179", + "libelleAcheminement": "DISTROFF", + "nomCommune": "DISTROFF" }, { - "codePostal": "37600", - "codeCommune": "37039", - "libelleAcheminement": "BRIDORE", - "nomCommune": "BRIDORE" + "codePostal": "44440", + "codeCommune": "44207", + "libelleAcheminement": "TRANS SUR ERDRE", + "nomCommune": "TRANS SUR ERDRE" }, { - "codePostal": "51110", - "codeCommune": "51074", - "libelleAcheminement": "BOULT SUR SUIPPE", - "nomCommune": "BOULT SUR SUIPPE" + "codePostal": "47160", + "codeCommune": "47214", + "libelleAcheminement": "PUCH D AGENAIS", + "nomCommune": "PUCH D AGENAIS" }, { - "codePostal": "27500", - "codeCommune": "27476", - "libelleAcheminement": "LES PREAUX", - "nomCommune": "LES PREAUX" + "codePostal": "57720", + "codeCommune": "57421", + "libelleAcheminement": "LOUTZVILLER", + "nomCommune": "LOUTZVILLER" }, { - "codePostal": "22340", - "codeCommune": "22163", - "libelleAcheminement": "PAULE", - "nomCommune": "PAULE" + "codePostal": "57690", + "codeCommune": "57190", + "libelleAcheminement": "ELVANGE", + "nomCommune": "ELVANGE" }, { - "codePostal": "37600", - "codeCommune": "37053", - "libelleAcheminement": "CHANCEAUX PRES LOCHES", - "nomCommune": "CHANCEAUX PRES LOCHES" + "codePostal": "44420", + "codeCommune": "44211", + "libelleAcheminement": "LA TURBALLE", + "nomCommune": "LA TURBALLE" }, { - "codePostal": "51140", - "codeCommune": "51086", - "libelleAcheminement": "BREUIL SUR VESLE", - "nomCommune": "BREUIL SUR VESLE" + "codePostal": "47350", + "codeCommune": "47216", + "libelleAcheminement": "PUYMICLAN", + "nomCommune": "PUYMICLAN" }, { - "codePostal": "27420", - "codeCommune": "27490", - "libelleAcheminement": "RICHEVILLE", - "nomCommune": "RICHEVILLE" + "codePostal": "57170", + "codeCommune": "57423", + "libelleAcheminement": "LUBECOURT", + "nomCommune": "LUBECOURT" }, { - "codePostal": "22540", - "codeCommune": "22164", - "libelleAcheminement": "PEDERNEC", - "nomCommune": "PEDERNEC" + "codePostal": "57720", + "codeCommune": "57196", + "libelleAcheminement": "ERCHING", + "nomCommune": "ERCHING" }, { - "codePostal": "37390", - "codeCommune": "37059", - "libelleAcheminement": "CHARENTILLY", - "nomCommune": "CHARENTILLY" + "codePostal": "44330", + "codeCommune": "44212", + "libelleAcheminement": "VALLET", + "nomCommune": "VALLET" }, { - "codePostal": "51230", - "codeCommune": "51091", - "libelleAcheminement": "BROUSSY LE PETIT", - "nomCommune": "BROUSSY LE PETIT" + "codePostal": "47270", + "codeCommune": "47217", + "libelleAcheminement": "PUYMIROL", + "nomCommune": "PUYMIROL" }, { - "codePostal": "27790", - "codeCommune": "27496", - "libelleAcheminement": "ROSAY SUR LIEURE", - "nomCommune": "ROSAY SUR LIEURE" + "codePostal": "57280", + "codeCommune": "57433", + "libelleAcheminement": "MAIZIERES LES METZ", + "nomCommune": "MAIZIERES LES METZ" }, { - "codePostal": "22540", - "codeCommune": "22164", - "libelleAcheminement": "PEDERNEC", - "nomCommune": "PEDERNEC" + "codePostal": "57660", + "codeCommune": "57198", + "libelleAcheminement": "ERSTROFF", + "nomCommune": "ERSTROFF" }, { - "codePostal": "37220", - "codeCommune": "37071", - "libelleAcheminement": "CHEZELLES", - "nomCommune": "CHEZELLES" + "codePostal": "44370", + "codeCommune": "44213", + "libelleAcheminement": "LOIREAUXENCE", + "nomCommune": "LOIREAUXENCE" }, { - "codePostal": "51270", - "codeCommune": "51100", - "libelleAcheminement": "LA CAURE", - "nomCommune": "LA CAURE" + "codePostal": "47170", + "codeCommune": "47221", + "libelleAcheminement": "REAUP LISSE", + "nomCommune": "REAUP LISSE" }, { - "codePostal": "27230", - "codeCommune": "27512", - "libelleAcheminement": "ST AUBIN DE SCELLON", - "nomCommune": "ST AUBIN DE SCELLON" + "codePostal": "57590", + "codeCommune": "57436", + "libelleAcheminement": "MALAUCOURT SUR SEILLE", + "nomCommune": "MALAUCOURT SUR SEILLE" }, { - "codePostal": "22700", - "codeCommune": "22168", - "libelleAcheminement": "PERROS GUIREC", - "nomCommune": "PERROS GUIREC" + "codePostal": "57640", + "codeCommune": "57204", + "libelleAcheminement": "FAILLY", + "nomCommune": "FAILLY" }, { - "codePostal": "37240", - "codeCommune": "37078", - "libelleAcheminement": "CIRAN", - "nomCommune": "CIRAN" + "codePostal": "44360", + "codeCommune": "44217", + "libelleAcheminement": "VIGNEUX DE BRETAGNE", + "nomCommune": "VIGNEUX DE BRETAGNE" }, { - "codePostal": "51110", - "codeCommune": "51101", - "libelleAcheminement": "CAUREL", - "nomCommune": "CAUREL" + "codePostal": "47180", + "codeCommune": "47233", + "libelleAcheminement": "STE BAZEILLE", + "nomCommune": "STE BAZEILLE" }, { - "codePostal": "27270", - "codeCommune": "27514", - "libelleAcheminement": "ST AUBIN DU THENNEY", - "nomCommune": "ST AUBIN DU THENNEY" + "codePostal": "57670", + "codeCommune": "57446", + "libelleAcheminement": "MARIMONT LES BENESTROFF", + "nomCommune": "MARIMONT LES BENESTROFF" }, { - "codePostal": "22550", - "codeCommune": "22174", - "libelleAcheminement": "PLEBOULLE", - "nomCommune": "PLEBOULLE" + "codePostal": "57640", + "codeCommune": "57204", + "libelleAcheminement": "FAILLY", + "nomCommune": "FAILLY" }, { - "codePostal": "37160", - "codeCommune": "37080", - "libelleAcheminement": "CIVRAY SUR ESVES", - "nomCommune": "CIVRAY SUR ESVES" + "codePostal": "44640", + "codeCommune": "44220", + "libelleAcheminement": "VUE", + "nomCommune": "VUE" }, { - "codePostal": "51260", - "codeCommune": "51103", - "libelleAcheminement": "LA CELLE SOUS CHANTEMERLE", - "nomCommune": "LA CELLE SOUS CHANTEMERLE" + "codePostal": "47410", + "codeCommune": "47235", + "libelleAcheminement": "ST COLOMB DE LAUZUN", + "nomCommune": "ST COLOMB DE LAUZUN" }, { - "codePostal": "27270", - "codeCommune": "27516", - "libelleAcheminement": "TREIS SANTS EN OUCHE", - "nomCommune": "TREIS SANTS EN OUCHE" + "codePostal": "57560", + "codeCommune": "57461", + "libelleAcheminement": "METAIRIES ST QUIRIN", + "nomCommune": "METAIRIES ST QUIRIN" }, { - "codePostal": "22290", - "codeCommune": "22178", - "libelleAcheminement": "PLEHEDEL", - "nomCommune": "PLEHEDEL" + "codePostal": "57450", + "codeCommune": "57207", + "libelleAcheminement": "FAREBERSVILLER", + "nomCommune": "FAREBERSVILLER" }, { - "codePostal": "37320", - "codeCommune": "37083", - "libelleAcheminement": "CORMERY", - "nomCommune": "CORMERY" + "codePostal": "44170", + "codeCommune": "44224", + "libelleAcheminement": "LA GRIGONNAIS", + "nomCommune": "LA GRIGONNAIS" }, { - "codePostal": "51130", - "codeCommune": "51107", - "libelleAcheminement": "CHAINTRIX BIERGES", - "nomCommune": "CHAINTRIX BIERGES" + "codePostal": "47430", + "codeCommune": "47253", + "libelleAcheminement": "STE MARTHE", + "nomCommune": "STE MARTHE" }, { - "codePostal": "27140", - "codeCommune": "27533", - "libelleAcheminement": "ST DENIS LE FERMENT", - "nomCommune": "ST DENIS LE FERMENT" + "codePostal": "57070", + "codeCommune": "57463", + "libelleAcheminement": "METZ", + "nomCommune": "METZ" }, { - "codePostal": "22240", - "codeCommune": "22179", - "libelleAcheminement": "FREHEL", - "nomCommune": "FREHEL" + "codePostal": "57380", + "codeCommune": "57209", + "libelleAcheminement": "FAULQUEMONT", + "nomCommune": "FAULQUEMONT" }, { - "codePostal": "37330", - "codeCommune": "37084", - "libelleAcheminement": "COUESMES", - "nomCommune": "COUESMES" + "codePostal": "45230", + "codeCommune": "45001", + "libelleAcheminement": "ADON", + "nomCommune": "ADON" }, { - "codePostal": "51270", - "codeCommune": "51113", - "libelleAcheminement": "CHAMPAUBERT", - "nomCommune": "CHAMPAUBERT" + "codePostal": "47270", + "codeCommune": "47255", + "libelleAcheminement": "ST MARTIN DE BEAUVILLE", + "nomCommune": "ST MARTIN DE BEAUVILLE" }, { - "codePostal": "27450", - "codeCommune": "27550", - "libelleAcheminement": "ST GREGOIRE DU VIEVRE", - "nomCommune": "ST GREGOIRE DU VIEVRE" + "codePostal": "57670", + "codeCommune": "57470", + "libelleAcheminement": "MOLRING", + "nomCommune": "MOLRING" }, { - "codePostal": "22980", - "codeCommune": "22180", - "libelleAcheminement": "PLELAN LE PETIT", - "nomCommune": "PLELAN LE PETIT" + "codePostal": "57280", + "codeCommune": "57211", + "libelleAcheminement": "FEVES", + "nomCommune": "FEVES" }, { - "codePostal": "37330", - "codeCommune": "37086", - "libelleAcheminement": "COURCELLES DE TOURAINE", - "nomCommune": "COURCELLES DE TOURAINE" + "codePostal": "45170", + "codeCommune": "45009", + "libelleAcheminement": "ASCHERES LE MARCHE", + "nomCommune": "ASCHERES LE MARCHE" }, { - "codePostal": "51310", - "codeCommune": "51116", - "libelleAcheminement": "CHAMPGUYON", - "nomCommune": "CHAMPGUYON" + "codePostal": "47180", + "codeCommune": "47257", + "libelleAcheminement": "ST MARTIN PETIT", + "nomCommune": "ST MARTIN PETIT" }, { - "codePostal": "27950", - "codeCommune": "27554", - "libelleAcheminement": "LA CHAPELLE LONGUEVILLE", - "nomCommune": "LA CHAPELLE LONGUEVILLE" + "codePostal": "57420", + "codeCommune": "57472", + "libelleAcheminement": "MONCHEUX", + "nomCommune": "MONCHEUX" }, { - "codePostal": "22170", - "codeCommune": "22188", - "libelleAcheminement": "PLERNEUF", - "nomCommune": "PLERNEUF" + "codePostal": "57420", + "codeCommune": "57212", + "libelleAcheminement": "FEY", + "nomCommune": "FEY" }, { - "codePostal": "37240", - "codeCommune": "37094", - "libelleAcheminement": "CUSSAY", - "nomCommune": "CUSSAY" + "codePostal": "45170", + "codeCommune": "45011", + "libelleAcheminement": "ATTRAY", + "nomCommune": "ATTRAY" }, { - "codePostal": "51800", - "codeCommune": "51126", - "libelleAcheminement": "LA CHAPELLE FELCOURT", - "nomCommune": "LA CHAPELLE FELCOURT" + "codePostal": "47160", + "codeCommune": "47267", + "libelleAcheminement": "ST PIERRE DE BUZET", + "nomCommune": "ST PIERRE DE BUZET" }, { - "codePostal": "27220", - "codeCommune": "27555", - "libelleAcheminement": "ST LAURENT DES BOIS", - "nomCommune": "ST LAURENT DES BOIS" + "codePostal": "57570", + "codeCommune": "57475", + "libelleAcheminement": "MONDORFF", + "nomCommune": "MONDORFF" }, { - "codePostal": "22310", - "codeCommune": "22194", - "libelleAcheminement": "PLESTIN LES GREVES", - "nomCommune": "PLESTIN LES GREVES" + "codePostal": "57320", + "codeCommune": "57213", + "libelleAcheminement": "FILSTROFF", + "nomCommune": "FILSTROFF" }, { - "codePostal": "37110", - "codeCommune": "37095", - "libelleAcheminement": "DAME MARIE LES BOIS", - "nomCommune": "DAME MARIE LES BOIS" + "codePostal": "45270", + "codeCommune": "45017", + "libelleAcheminement": "AUVILLIERS EN GATINAIS", + "nomCommune": "AUVILLIERS EN GATINAIS" }, { - "codePostal": "51270", - "codeCommune": "51128", - "libelleAcheminement": "LA CHAPELLE SOUS ORBAIS", - "nomCommune": "LA CHAPELLE SOUS ORBAIS" + "codePostal": "47360", + "codeCommune": "47275", + "libelleAcheminement": "ST SALVY", + "nomCommune": "ST SALVY" }, { - "codePostal": "27300", - "codeCommune": "27557", - "libelleAcheminement": "ST LEGER DE ROTES", - "nomCommune": "ST LEGER DE ROTES" + "codePostal": "57670", + "codeCommune": "57478", + "libelleAcheminement": "MONTDIDIER", + "nomCommune": "MONTDIDIER" }, { - "codePostal": "22240", - "codeCommune": "22201", - "libelleAcheminement": "PLEVENON", - "nomCommune": "PLEVENON" + "codePostal": "57420", + "codeCommune": "57218", + "libelleAcheminement": "FLEURY", + "nomCommune": "FLEURY" }, { - "codePostal": "37240", - "codeCommune": "37103", - "libelleAcheminement": "ESVES LE MOUTIER", - "nomCommune": "ESVES LE MOUTIER" + "codePostal": "45420", + "codeCommune": "45023", + "libelleAcheminement": "BATILLY EN PUISAYE", + "nomCommune": "BATILLY EN PUISAYE" }, { - "codePostal": "51120", - "codeCommune": "51129", - "libelleAcheminement": "CHARLEVILLE", - "nomCommune": "CHARLEVILLE" + "codePostal": "47180", + "codeCommune": "47277", + "libelleAcheminement": "ST SAUVEUR DE MEILHAN", + "nomCommune": "ST SAUVEUR DE MEILHAN" }, { - "codePostal": "27190", - "codeCommune": "27568", - "libelleAcheminement": "STE MARTHE", - "nomCommune": "STE MARTHE" + "codePostal": "57620", + "codeCommune": "57489", + "libelleAcheminement": "MOUTERHOUSE", + "nomCommune": "MOUTERHOUSE" }, { - "codePostal": "22150", - "codeCommune": "22203", - "libelleAcheminement": "PLOEUC L HERMITAGE", - "nomCommune": "PLOEUC L HERMITAGE" + "codePostal": "57190", + "codeCommune": "57221", + "libelleAcheminement": "FLORANGE", + "nomCommune": "FLORANGE" }, { - "codePostal": "37230", - "codeCommune": "37109", - "libelleAcheminement": "FONDETTES", - "nomCommune": "FONDETTES" + "codePostal": "45210", + "codeCommune": "45026", + "libelleAcheminement": "BAZOCHES SUR LE BETZ", + "nomCommune": "BAZOCHES SUR LE BETZ" }, { - "codePostal": "51170", - "codeCommune": "51140", - "libelleAcheminement": "CHAUMUZY", - "nomCommune": "CHAUMUZY" + "codePostal": "47500", + "codeCommune": "47283", + "libelleAcheminement": "ST VITE", + "nomCommune": "ST VITE" }, { - "codePostal": "27160", - "codeCommune": "27578", - "libelleAcheminement": "STE MARIE D ATTEZ", - "nomCommune": "STE MARIE D ATTEZ" + "codePostal": "57250", + "codeCommune": "57491", + "libelleAcheminement": "MOYEUVRE GRANDE", + "nomCommune": "MOYEUVRE GRANDE" }, { - "codePostal": "22150", - "codeCommune": "22203", - "libelleAcheminement": "PLOEUC L HERMITAGE", - "nomCommune": "PLOEUC L HERMITAGE" + "codePostal": "57600", + "codeCommune": "57227", + "libelleAcheminement": "FORBACH", + "nomCommune": "FORBACH" }, { - "codePostal": "37350", - "codeCommune": "37113", - "libelleAcheminement": "LE GRAND PRESSIGNY", - "nomCommune": "LE GRAND PRESSIGNY" + "codePostal": "45760", + "codeCommune": "45034", + "libelleAcheminement": "BOIGNY SUR BIONNE", + "nomCommune": "BOIGNY SUR BIONNE" }, { - "codePostal": "51240", - "codeCommune": "51141", - "libelleAcheminement": "LA CHAUSSEE SUR MARNE", - "nomCommune": "LA CHAUSSEE SUR MARNE" + "codePostal": "47250", + "codeCommune": "47285", + "libelleAcheminement": "SAMAZAN", + "nomCommune": "SAMAZAN" }, { - "codePostal": "27310", - "codeCommune": "27580", - "libelleAcheminement": "ST OUEN DE THOUBERVILLE", - "nomCommune": "ST OUEN DE THOUBERVILLE" + "codePostal": "57250", + "codeCommune": "57492", + "libelleAcheminement": "MOYEUVRE PETITE", + "nomCommune": "MOYEUVRE PETITE" }, { - "codePostal": "22130", - "codeCommune": "22205", - "libelleAcheminement": "PLOREC SUR ARGUENON", - "nomCommune": "PLOREC SUR ARGUENON" + "codePostal": "57590", + "codeCommune": "57228", + "libelleAcheminement": "FOSSIEUX", + "nomCommune": "FOSSIEUX" }, { - "codePostal": "37240", - "codeCommune": "37130", - "libelleAcheminement": "LIGUEIL", - "nomCommune": "LIGUEIL" + "codePostal": "45430", + "codeCommune": "45043", + "libelleAcheminement": "BOU", + "nomCommune": "BOU" }, { - "codePostal": "51270", - "codeCommune": "51157", - "libelleAcheminement": "COIZARD JOCHES", - "nomCommune": "COIZARD JOCHES" + "codePostal": "47800", + "codeCommune": "47290", + "libelleAcheminement": "LA SAUVETAT DU DROPT", + "nomCommune": "LA SAUVETAT DU DROPT" }, { - "codePostal": "27370", - "codeCommune": "27593", - "libelleAcheminement": "ST PIERRE DES FLEURS", - "nomCommune": "ST PIERRE DES FLEURS" + "codePostal": "57220", + "codeCommune": "57495", + "libelleAcheminement": "NARBEFONTAINE", + "nomCommune": "NARBEFONTAINE" }, { - "codePostal": "22170", - "codeCommune": "22206", - "libelleAcheminement": "CHATELAUDREN PLOUAGAT", - "nomCommune": "CHATELAUDREN PLOUAGAT" + "codePostal": "57670", + "codeCommune": "57232", + "libelleAcheminement": "FRANCALTROFF", + "nomCommune": "FRANCALTROFF" }, { - "codePostal": "37330", - "codeCommune": "37137", - "libelleAcheminement": "LUBLE", - "nomCommune": "LUBLE" + "codePostal": "45300", + "codeCommune": "45050", + "libelleAcheminement": "BOYNES", + "nomCommune": "BOYNES" }, { - "codePostal": "51230", - "codeCommune": "51165", - "libelleAcheminement": "CONNANTRE", - "nomCommune": "CONNANTRE" + "codePostal": "47500", + "codeCommune": "47292", + "libelleAcheminement": "SAUVETERRE LA LEMANCE", + "nomCommune": "SAUVETERRE LA LEMANCE" }, { - "codePostal": "27210", - "codeCommune": "27597", - "libelleAcheminement": "ST PIERRE DU VAL", - "nomCommune": "ST PIERRE DU VAL" + "codePostal": "57320", + "codeCommune": "57502", + "libelleAcheminement": "NEUNKIRCHEN LES BOUZONVILLE", + "nomCommune": "NEUNKIRCHEN LES BOUZONVILLE" }, { - "codePostal": "22170", - "codeCommune": "22206", - "libelleAcheminement": "CHATELAUDREN PLOUAGAT", - "nomCommune": "CHATELAUDREN PLOUAGAT" + "codePostal": "57320", + "codeCommune": "57235", + "libelleAcheminement": "FREISTROFF", + "nomCommune": "FREISTROFF" }, { - "codePostal": "37150", - "codeCommune": "37141", - "libelleAcheminement": "LUZILLE", - "nomCommune": "LUZILLE" + "codePostal": "45460", + "codeCommune": "45051", + "libelleAcheminement": "BRAY ST AIGNAN", + "nomCommune": "BRAY ST AIGNAN" }, { - "codePostal": "51320", - "codeCommune": "51169", - "libelleAcheminement": "CORBEIL", - "nomCommune": "CORBEIL" + "codePostal": "47150", + "codeCommune": "47295", + "libelleAcheminement": "SAVIGNAC SUR LEYZE", + "nomCommune": "SAVIGNAC SUR LEYZE" }, { - "codePostal": "27680", - "codeCommune": "27601", - "libelleAcheminement": "ST SAMSON DE LA ROQUE", - "nomCommune": "ST SAMSON DE LA ROQUE" + "codePostal": "57930", + "codeCommune": "57506", + "libelleAcheminement": "NIEDERSTINZEL", + "nomCommune": "NIEDERSTINZEL" }, { - "codePostal": "22650", - "codeCommune": "22209", - "libelleAcheminement": "BEAUSSAIS SUR MER", - "nomCommune": "BEAUSSAIS SUR MER" + "codePostal": "57590", + "codeCommune": "57236", + "libelleAcheminement": "FREMERY", + "nomCommune": "FREMERY" }, { - "codePostal": "37240", - "codeCommune": "37143", - "libelleAcheminement": "MANTHELAN", - "nomCommune": "MANTHELAN" + "codePostal": "45250", + "codeCommune": "45052", + "libelleAcheminement": "BRETEAU", + "nomCommune": "BRETEAU" }, { - "codePostal": "51350", - "codeCommune": "51172", - "libelleAcheminement": "CORMONTREUIL", - "nomCommune": "CORMONTREUIL" + "codePostal": "47350", + "codeCommune": "47301", + "libelleAcheminement": "SEYCHES", + "nomCommune": "SEYCHES" }, { - "codePostal": "27260", - "codeCommune": "27605", - "libelleAcheminement": "ST SYLVESTRE DE CORMEILLES", - "nomCommune": "ST SYLVESTRE DE CORMEILLES" + "codePostal": "57645", + "codeCommune": "57510", + "libelleAcheminement": "NOISSEVILLE", + "nomCommune": "NOISSEVILLE" }, { - "codePostal": "22620", - "codeCommune": "22210", - "libelleAcheminement": "PLOUBAZLANEC", - "nomCommune": "PLOUBAZLANEC" + "codePostal": "57170", + "codeCommune": "57238", + "libelleAcheminement": "FRESNES EN SAULNOIS", + "nomCommune": "FRESNES EN SAULNOIS" }, { - "codePostal": "37500", - "codeCommune": "37144", - "libelleAcheminement": "MARCAY", - "nomCommune": "MARCAY" + "codePostal": "45390", + "codeCommune": "45054", + "libelleAcheminement": "BRIARRES SUR ESSONNE", + "nomCommune": "BRIARRES SUR ESSONNE" }, { - "codePostal": "51300", - "codeCommune": "51184", - "libelleAcheminement": "COURDEMANGES", - "nomCommune": "COURDEMANGES" + "codePostal": "47170", + "codeCommune": "47302", + "libelleAcheminement": "SOS", + "nomCommune": "SOS" }, { - "codePostal": "27300", - "codeCommune": "27608", - "libelleAcheminement": "ST VICTOR DE CHRETIENVILLE", - "nomCommune": "ST VICTOR DE CHRETIENVILLE" + "codePostal": "57680", + "codeCommune": "57515", + "libelleAcheminement": "NOVEANT SUR MOSELLE", + "nomCommune": "NOVEANT SUR MOSELLE" }, { - "codePostal": "22620", - "codeCommune": "22210", - "libelleAcheminement": "PLOUBAZLANEC", - "nomCommune": "PLOUBAZLANEC" + "codePostal": "57810", + "codeCommune": "57241", + "libelleAcheminement": "FRIBOURG", + "nomCommune": "FRIBOURG" }, { - "codePostal": "37120", - "codeCommune": "37148", - "libelleAcheminement": "MARIGNY MARMANDE", - "nomCommune": "MARIGNY MARMANDE" + "codePostal": "45520", + "codeCommune": "45062", + "libelleAcheminement": "CERCOTTES", + "nomCommune": "CERCOTTES" }, { - "codePostal": "51310", - "codeCommune": "51185", - "libelleAcheminement": "COURGIVAUX", - "nomCommune": "COURGIVAUX" + "codePostal": "47210", + "codeCommune": "47311", + "libelleAcheminement": "TOURLIAC", + "nomCommune": "TOURLIAC" }, { - "codePostal": "27230", - "codeCommune": "27613", - "libelleAcheminement": "ST VINCENT DU BOULAY", - "nomCommune": "ST VINCENT DU BOULAY" + "codePostal": "57840", + "codeCommune": "57529", + "libelleAcheminement": "OTTANGE", + "nomCommune": "OTTANGE" }, { - "codePostal": "22780", - "codeCommune": "22217", - "libelleAcheminement": "PLOUGRAS", - "nomCommune": "PLOUGRAS" + "codePostal": "57175", + "codeCommune": "57242", + "libelleAcheminement": "GANDRANGE", + "nomCommune": "GANDRANGE" }, { - "codePostal": "37130", - "codeCommune": "37150", - "libelleAcheminement": "MAZIERES DE TOURAINE", - "nomCommune": "MAZIERES DE TOURAINE" + "codePostal": "45620", + "codeCommune": "45063", + "libelleAcheminement": "CERDON", + "nomCommune": "CERDON" }, { - "codePostal": "51480", - "codeCommune": "51190", - "libelleAcheminement": "COURTAGNON", - "nomCommune": "COURTAGNON" + "codePostal": "47140", + "codeCommune": "47314", + "libelleAcheminement": "TREMONS", + "nomCommune": "TREMONS" }, { - "codePostal": "27500", - "codeCommune": "27620", - "libelleAcheminement": "SELLES", - "nomCommune": "SELLES" + "codePostal": "57220", + "codeCommune": "57530", + "libelleAcheminement": "OTTONVILLE", + "nomCommune": "OTTONVILLE" }, { - "codePostal": "22150", - "codeCommune": "22219", - "libelleAcheminement": "PLOUGUENAST LANGAST", - "nomCommune": "PLOUGUENAST LANGAST" + "codePostal": "57260", + "codeCommune": "57246", + "libelleAcheminement": "GELUCOURT", + "nomCommune": "GELUCOURT" }, { - "codePostal": "37530", - "codeCommune": "37161", - "libelleAcheminement": "MOSNES", - "nomCommune": "MOSNES" + "codePostal": "45360", + "codeCommune": "45064", + "libelleAcheminement": "CERNOY EN BERRY", + "nomCommune": "CERNOY EN BERRY" }, { - "codePostal": "51460", - "codeCommune": "51193", - "libelleAcheminement": "COURTISOLS", - "nomCommune": "COURTISOLS" + "codePostal": "47210", + "codeCommune": "47324", + "libelleAcheminement": "VILLEREAL", + "nomCommune": "VILLEREAL" }, { - "codePostal": "27150", - "codeCommune": "27632", - "libelleAcheminement": "LE THIL EN VEXIN", - "nomCommune": "LE THIL" + "codePostal": "57370", + "codeCommune": "57540", + "libelleAcheminement": "PHALSBOURG", + "nomCommune": "PHALSBOURG" }, { - "codePostal": "22220", - "codeCommune": "22221", - "libelleAcheminement": "PLOUGUIEL", - "nomCommune": "PLOUGUIEL" + "codePostal": "57620", + "codeCommune": "57250", + "libelleAcheminement": "GOETZENBRUCK", + "nomCommune": "GOETZENBRUCK" }, { - "codePostal": "37600", - "codeCommune": "37162", - "libelleAcheminement": "MOUZAY", - "nomCommune": "MOUZAY" + "codePostal": "45300", + "codeCommune": "45065", + "libelleAcheminement": "CESARVILLE DOSSAINVILLE", + "nomCommune": "CESARVILLE DOSSAINVILLE" }, { - "codePostal": "51530", - "codeCommune": "51196", - "libelleAcheminement": "CRAMANT", - "nomCommune": "CRAMANT" + "codePostal": "47400", + "codeCommune": "47325", + "libelleAcheminement": "VILLETON", + "nomCommune": "VILLETON" }, { - "codePostal": "27570", - "codeCommune": "27643", - "libelleAcheminement": "TILLIERES SUR AVRE", - "nomCommune": "TILLIERES SUR AVRE" + "codePostal": "57050", + "codeCommune": "57545", + "libelleAcheminement": "PLAPPEVILLE", + "nomCommune": "PLAPPEVILLE" }, { - "codePostal": "22580", - "codeCommune": "22222", - "libelleAcheminement": "PLOUHA", - "nomCommune": "PLOUHA" + "codePostal": "57220", + "codeCommune": "57252", + "libelleAcheminement": "GOMELANGE", + "nomCommune": "GOMELANGE" }, { - "codePostal": "37530", - "codeCommune": "37163", - "libelleAcheminement": "NAZELLES NEGRON", - "nomCommune": "NAZELLES NEGRON" + "codePostal": "45380", + "codeCommune": "45067", + "libelleAcheminement": "CHAINGY", + "nomCommune": "CHAINGY" }, { - "codePostal": "51700", - "codeCommune": "51201", - "libelleAcheminement": "CUISLES", - "nomCommune": "CUISLES" + "codePostal": "48200", + "codeCommune": "48002", + "libelleAcheminement": "ALBARET STE MARIE", + "nomCommune": "ALBARET STE MARIE" }, { - "codePostal": "27500", - "codeCommune": "27645", - "libelleAcheminement": "TOCQUEVILLE", - "nomCommune": "TOCQUEVILLE" + "codePostal": "57420", + "codeCommune": "57548", + "libelleAcheminement": "PONTOY", + "nomCommune": "PONTOY" }, { - "codePostal": "22300", - "codeCommune": "22226", - "libelleAcheminement": "PLOUMILLIAU", - "nomCommune": "PLOUMILLIAU" + "codePostal": "57480", + "codeCommune": "57259", + "libelleAcheminement": "GRINDORFF BIZING", + "nomCommune": "GRINDORFF BIZING" }, { - "codePostal": "37190", - "codeCommune": "37165", - "libelleAcheminement": "NEUIL", - "nomCommune": "NEUIL" + "codePostal": "45400", + "codeCommune": "45072", + "libelleAcheminement": "CHANTEAU", + "nomCommune": "CHANTEAU" }, { - "codePostal": "51400", - "codeCommune": "51203", - "libelleAcheminement": "CUPERLY", - "nomCommune": "CUPERLY" + "codePostal": "48190", + "codeCommune": "48003", + "libelleAcheminement": "ALLENC", + "nomCommune": "ALLENC" }, { - "codePostal": "27210", - "codeCommune": "27646", - "libelleAcheminement": "LE TORPT", - "nomCommune": "LE TORPT" + "codePostal": "57890", + "codeCommune": "57550", + "libelleAcheminement": "PORCELETTE", + "nomCommune": "PORCELETTE" }, { - "codePostal": "22590", - "codeCommune": "22251", - "libelleAcheminement": "PORDIC", - "nomCommune": "PORDIC" + "codePostal": "57510", + "codeCommune": "57264", + "libelleAcheminement": "GUEBENHOUSE", + "nomCommune": "GUEBENHOUSE" }, { - "codePostal": "37370", - "codeCommune": "37170", - "libelleAcheminement": "NEUVY LE ROI", - "nomCommune": "NEUVY LE ROI" + "codePostal": "45310", + "codeCommune": "45074", + "libelleAcheminement": "LA CHAPELLE ONZERAIN", + "nomCommune": "LA CHAPELLE ONZERAIN" }, { - "codePostal": "51240", - "codeCommune": "51208", - "libelleAcheminement": "DAMPIERRE SUR MOIVRE", - "nomCommune": "DAMPIERRE SUR MOIVRE" + "codePostal": "48500", + "codeCommune": "48017", + "libelleAcheminement": "BANASSAC CANILHAC", + "nomCommune": "BANASSAC CANILHAC" }, { - "codePostal": "27370", - "codeCommune": "27654", - "libelleAcheminement": "TOURVILLE LA CAMPAGNE", - "nomCommune": "TOURVILLE LA CAMPAGNE" + "codePostal": "57410", + "codeCommune": "57561", + "libelleAcheminement": "RAHLING", + "nomCommune": "RAHLING" }, { - "codePostal": "22590", - "codeCommune": "22251", - "libelleAcheminement": "PORDIC", - "nomCommune": "PORDIC" + "codePostal": "57220", + "codeCommune": "57277", + "libelleAcheminement": "GUINKIRCHEN", + "nomCommune": "GUINKIRCHEN" }, { - "codePostal": "37800", - "codeCommune": "37176", - "libelleAcheminement": "NOYANT DE TOURAINE", - "nomCommune": "NOYANT DE TOURAINE" + "codePostal": "45230", + "codeCommune": "45079", + "libelleAcheminement": "LE CHARME", + "nomCommune": "LE CHARME" }, { - "codePostal": "51320", - "codeCommune": "51212", - "libelleAcheminement": "DOMMARTIN LETTREE", - "nomCommune": "DOMMARTIN LETTREE" + "codePostal": "48200", + "codeCommune": "48025", + "libelleAcheminement": "LES BESSONS", + "nomCommune": "LES BESSONS" }, { - "codePostal": "27110", - "codeCommune": "27658", - "libelleAcheminement": "LE TREMBLAY OMONVILLE", - "nomCommune": "LE TREMBLAY OMONVILLE" + "codePostal": "57810", + "codeCommune": "57564", + "libelleAcheminement": "RECHICOURT LE CHATEAU", + "nomCommune": "RECHICOURT LE CHATEAU" }, { - "codePostal": "22120", - "codeCommune": "22258", - "libelleAcheminement": "QUESSOY", - "nomCommune": "QUESSOY" + "codePostal": "57300", + "codeCommune": "57283", + "libelleAcheminement": "HAGONDANGE", + "nomCommune": "HAGONDANGE" }, { - "codePostal": "37220", - "codeCommune": "37178", - "libelleAcheminement": "PANZOULT", - "nomCommune": "PANZOULT" + "codePostal": "45260", + "codeCommune": "45084", + "libelleAcheminement": "CHATENOY", + "nomCommune": "CHATENOY" }, { - "codePostal": "51800", - "codeCommune": "51213", - "libelleAcheminement": "DOMMARTIN SOUS HANS", - "nomCommune": "DOMMARTIN SOUS HANS" + "codePostal": "48190", + "codeCommune": "48027", + "libelleAcheminement": "MONT LOZERE ET GOULET", + "nomCommune": "MONT LOZERE ET GOULET" }, { - "codePostal": "27930", - "codeCommune": "27659", - "libelleAcheminement": "LA TRINITE", - "nomCommune": "LA TRINITE" + "codePostal": "57445", + "codeCommune": "57566", + "libelleAcheminement": "REDING", + "nomCommune": "REDING" }, { - "codePostal": "22400", - "codeCommune": "22261", - "libelleAcheminement": "QUINTENIC", - "nomCommune": "QUINTENIC" + "codePostal": "57170", + "codeCommune": "57290", + "libelleAcheminement": "HAMPONT", + "nomCommune": "HAMPONT" }, { - "codePostal": "37350", - "codeCommune": "37184", - "libelleAcheminement": "LE PETIT PRESSIGNY", - "nomCommune": "LE PETIT PRESSIGNY" + "codePostal": "45520", + "codeCommune": "45093", + "libelleAcheminement": "CHEVILLY", + "nomCommune": "CHEVILLY" }, { - "codePostal": "51500", - "codeCommune": "51225", - "libelleAcheminement": "ECUEIL", - "nomCommune": "ECUEIL" + "codePostal": "48310", + "codeCommune": "48031", + "libelleAcheminement": "BRION", + "nomCommune": "BRION" }, { - "codePostal": "27480", - "codeCommune": "27664", - "libelleAcheminement": "LE TRONQUAY", - "nomCommune": "LE TRONQUAY" + "codePostal": "57480", + "codeCommune": "57576", + "libelleAcheminement": "RETTEL", + "nomCommune": "RETTEL" }, { - "codePostal": "22800", - "codeCommune": "22262", - "libelleAcheminement": "QUINTIN", - "nomCommune": "QUINTIN" + "codePostal": "57580", + "codeCommune": "57293", + "libelleAcheminement": "HAN SUR NIED", + "nomCommune": "HAN SUR NIED" }, { - "codePostal": "37530", - "codeCommune": "37185", - "libelleAcheminement": "POCE SUR CISSE", - "nomCommune": "POCE SUR CISSE" + "codePostal": "45290", + "codeCommune": "45096", + "libelleAcheminement": "LES CHOUX", + "nomCommune": "LES CHOUX" }, { - "codePostal": "51460", - "codeCommune": "51231", - "libelleAcheminement": "L EPINE", - "nomCommune": "L EPINE" + "codePostal": "48600", + "codeCommune": "48038", + "libelleAcheminement": "BEL AIR VAL D ANCE", + "nomCommune": "BEL AIR VAL D ANCE" }, { - "codePostal": "27350", - "codeCommune": "27669", - "libelleAcheminement": "VALLETOT", - "nomCommune": "VALLETOT" + "codePostal": "57830", + "codeCommune": "57583", + "libelleAcheminement": "RICHEVAL", + "nomCommune": "RICHEVAL" }, { - "codePostal": "22450", - "codeCommune": "22264", - "libelleAcheminement": "LA ROCHE JAUDY", - "nomCommune": "LA ROCHE JAUDY" + "codePostal": "57630", + "codeCommune": "57295", + "libelleAcheminement": "HARAUCOURT SUR SEILLE", + "nomCommune": "HARAUCOURT SUR SEILLE" }, { - "codePostal": "37380", - "codeCommune": "37194", - "libelleAcheminement": "REUGNY", - "nomCommune": "REUGNY" + "codePostal": "45220", + "codeCommune": "45097", + "libelleAcheminement": "CHUELLES", + "nomCommune": "CHUELLES" }, { - "codePostal": "51310", - "codeCommune": "51237", - "libelleAcheminement": "ESTERNAY", - "nomCommune": "ESTERNAY" + "codePostal": "48300", + "codeCommune": "48041", + "libelleAcheminement": "CHASTANIER", + "nomCommune": "CHASTANIER" }, { - "codePostal": "27200", - "codeCommune": "27681", - "libelleAcheminement": "VERNON", - "nomCommune": "VERNON" + "codePostal": "57840", + "codeCommune": "57586", + "libelleAcheminement": "ROCHONVILLERS", + "nomCommune": "ROCHONVILLERS" }, { - "codePostal": "22100", - "codeCommune": "22280", - "libelleAcheminement": "ST CARNE", - "nomCommune": "ST CARNE" + "codePostal": "57870", + "codeCommune": "57298", + "libelleAcheminement": "HARREBERG", + "nomCommune": "HARREBERG" }, { - "codePostal": "37420", - "codeCommune": "37197", - "libelleAcheminement": "RIGNY USSE", - "nomCommune": "RIGNY USSE" + "codePostal": "45530", + "codeCommune": "45101", + "libelleAcheminement": "COMBREUX", + "nomCommune": "COMBREUX" }, { - "codePostal": "51320", - "codeCommune": "51244", - "libelleAcheminement": "FAUX VESIGNEUL", - "nomCommune": "FAUX VESIGNEUL" + "codePostal": "48140", + "codeCommune": "48046", + "libelleAcheminement": "CHAULHAC", + "nomCommune": "CHAULHAC" }, { - "codePostal": "27240", - "codeCommune": "27693", - "libelleAcheminement": "SYLVAINS LES MOULINS", - "nomCommune": "SYLVAINS LES MOULINS" + "codePostal": "57340", + "codeCommune": "57587", + "libelleAcheminement": "RODALBE", + "nomCommune": "RODALBE" }, { - "codePostal": "22150", - "codeCommune": "22281", - "libelleAcheminement": "ST CARREUC", - "nomCommune": "ST CARREUC" + "codePostal": "57530", + "codeCommune": "57307", + "libelleAcheminement": "HAYES", + "nomCommune": "HAYES" }, { - "codePostal": "37220", - "codeCommune": "37199", - "libelleAcheminement": "RILLY SUR VIENNE", - "nomCommune": "RILLY SUR VIENNE" + "codePostal": "45120", + "codeCommune": "45104", + "libelleAcheminement": "CORQUILLEROY", + "nomCommune": "CORQUILLEROY" }, { - "codePostal": "51300", - "codeCommune": "51246", - "libelleAcheminement": "FAVRESSE", - "nomCommune": "FAVRESSE" + "codePostal": "48160", + "codeCommune": "48051", + "libelleAcheminement": "LE COLLET DE DEZE", + "nomCommune": "LE COLLET DE DEZE" }, { - "codePostal": "28500", - "codeCommune": "28003", - "libelleAcheminement": "ALLAINVILLE", - "nomCommune": "ALLAINVILLE" + "codePostal": "57930", + "codeCommune": "57592", + "libelleAcheminement": "ROMELFING", + "nomCommune": "ROMELFING" }, { - "codePostal": "22260", - "codeCommune": "22283", - "libelleAcheminement": "ST CLET", - "nomCommune": "ST CLET" + "codePostal": "57660", + "codeCommune": "57311", + "libelleAcheminement": "HELLIMER", + "nomCommune": "HELLIMER" }, { - "codePostal": "37190", - "codeCommune": "37200", - "libelleAcheminement": "RIVARENNES", - "nomCommune": "RIVARENNES" + "codePostal": "45720", + "codeCommune": "45108", + "libelleAcheminement": "COULLONS", + "nomCommune": "COULLONS" }, { - "codePostal": "51270", - "codeCommune": "51247", - "libelleAcheminement": "FEREBRIANGES", - "nomCommune": "FEREBRIANGES" + "codePostal": "48190", + "codeCommune": "48054", + "libelleAcheminement": "CUBIERETTES", + "nomCommune": "CUBIERETTES" }, { - "codePostal": "28260", - "codeCommune": "28007", - "libelleAcheminement": "ANET", - "nomCommune": "ANET" + "codePostal": "57230", + "codeCommune": "57594", + "libelleAcheminement": "ROPPEVILLER", + "nomCommune": "ROPPEVILLER" }, { - "codePostal": "22800", - "codeCommune": "22287", - "libelleAcheminement": "ST DONAN", - "nomCommune": "ST DONAN" + "codePostal": "57820", + "codeCommune": "57315", + "libelleAcheminement": "HENRIDORFF", + "nomCommune": "HENRIDORFF" }, { - "codePostal": "37500", - "codeCommune": "37202", - "libelleAcheminement": "LA ROCHE CLERMAULT", - "nomCommune": "LA ROCHE CLERMAULT" + "codePostal": "45300", + "codeCommune": "45110", + "libelleAcheminement": "COURCELLES LE ROI", + "nomCommune": "COURCELLES LE ROI" }, { - "codePostal": "51240", - "codeCommune": "51259", - "libelleAcheminement": "FRANCHEVILLE", - "nomCommune": "FRANCHEVILLE" + "codePostal": "48230", + "codeCommune": "48056", + "libelleAcheminement": "ESCLANEDES", + "nomCommune": "ESCLANEDES" }, { - "codePostal": "28480", - "codeCommune": "28010", - "libelleAcheminement": "ARGENVILLIERS", - "nomCommune": "ARGENVILLIERS" + "codePostal": "57310", + "codeCommune": "57602", + "libelleAcheminement": "RURANGE LES THIONVILLE", + "nomCommune": "RURANGE LES THIONVILLE" }, { - "codePostal": "22350", - "codeCommune": "22312", - "libelleAcheminement": "ST MADEN", - "nomCommune": "ST MADEN" + "codePostal": "57450", + "codeCommune": "57316", + "libelleAcheminement": "HENRIVILLE", + "nomCommune": "HENRIVILLE" }, { - "codePostal": "37370", - "codeCommune": "37207", - "libelleAcheminement": "ST AUBIN LE DEPEINT", - "nomCommune": "ST AUBIN LE DEPEINT" + "codePostal": "45320", + "codeCommune": "45115", + "libelleAcheminement": "COURTENAY", + "nomCommune": "COURTENAY" }, { - "codePostal": "51130", - "codeCommune": "51273", - "libelleAcheminement": "GIVRY LES LOISY", - "nomCommune": "GIVRY LES LOISY" + "codePostal": "48100", + "codeCommune": "48068", + "libelleAcheminement": "GABRIAS", + "nomCommune": "GABRIAS" }, { - "codePostal": "28500", - "codeCommune": "28014", - "libelleAcheminement": "AUNAY SOUS CRECY", - "nomCommune": "AUNAY SOUS CRECY" + "codePostal": "57390", + "codeCommune": "57603", + "libelleAcheminement": "RUSSANGE", + "nomCommune": "RUSSANGE" }, { - "codePostal": "22980", - "codeCommune": "22315", - "libelleAcheminement": "ST MAUDEZ", - "nomCommune": "ST MAUDEZ" + "codePostal": "57400", + "codeCommune": "57321", + "libelleAcheminement": "HESSE", + "nomCommune": "HESSE" }, { - "codePostal": "37550", - "codeCommune": "37208", - "libelleAcheminement": "ST AVERTIN", - "nomCommune": "ST AVERTIN" + "codePostal": "45150", + "codeCommune": "45123", + "libelleAcheminement": "DARVOY", + "nomCommune": "DARVOY" }, { - "codePostal": "51190", - "codeCommune": "51281", - "libelleAcheminement": "GRAUVES", - "nomCommune": "GRAUVES" + "codePostal": "48100", + "codeCommune": "48072", + "libelleAcheminement": "GREZES", + "nomCommune": "GREZES" }, { - "codePostal": "28700", - "codeCommune": "28015", - "libelleAcheminement": "AUNEAU BLEURY ST SYMPHORIEN", - "nomCommune": "AUNEAU BLEURY ST SYMPHORIEN" + "codePostal": "57420", + "codeCommune": "57605", + "libelleAcheminement": "SAILLY ACHATEL", + "nomCommune": "SAILLY ACHATEL" }, { - "codePostal": "22320", - "codeCommune": "22316", - "libelleAcheminement": "ST MAYEUX", - "nomCommune": "ST MAYEUX" + "codePostal": "57400", + "codeCommune": "57324", + "libelleAcheminement": "HILBESHEIM", + "nomCommune": "HILBESHEIM" }, { - "codePostal": "37230", - "codeCommune": "37217", - "libelleAcheminement": "ST ETIENNE DE CHIGNY", - "nomCommune": "ST ETIENNE DE CHIGNY" + "codePostal": "45220", + "codeCommune": "45129", + "libelleAcheminement": "DOUCHY MONTCORBON", + "nomCommune": "DOUCHY MONTCORBON" }, { - "codePostal": "51290", - "codeCommune": "51286", - "libelleAcheminement": "HAUTEVILLE", - "nomCommune": "HAUTEVILLE" + "codePostal": "48120", + "codeCommune": "48079", + "libelleAcheminement": "LAJO", + "nomCommune": "LAJO" }, { - "codePostal": "28320", - "codeCommune": "28023", - "libelleAcheminement": "BAILLEAU ARMENONVILLE", - "nomCommune": "BAILLEAU ARMENONVILLE" + "codePostal": "57580", + "codeCommune": "57609", + "libelleAcheminement": "ST EPVRE", + "nomCommune": "ST EPVRE" }, { - "codePostal": "22300", - "codeCommune": "22319", - "libelleAcheminement": "ST MICHEL EN GREVE", - "nomCommune": "ST MICHEL EN GREVE" + "codePostal": "57670", + "codeCommune": "57335", + "libelleAcheminement": "HONSKIRCH", + "nomCommune": "HONSKIRCH" }, { - "codePostal": "37330", - "codeCommune": "37223", - "libelleAcheminement": "ST LAURENT DE LIN", - "nomCommune": "ST LAURENT DE LIN" + "codePostal": "45480", + "codeCommune": "45135", + "libelleAcheminement": "ERCEVILLE", + "nomCommune": "ERCEVILLE" }, { - "codePostal": "51160", - "codeCommune": "51287", - "libelleAcheminement": "HAUTVILLERS", - "nomCommune": "HAUTVILLERS" + "codePostal": "48700", + "codeCommune": "48083", + "libelleAcheminement": "LES LAUBIES", + "nomCommune": "LES LAUBIES" }, { - "codePostal": "28310", - "codeCommune": "28025", - "libelleAcheminement": "BARMAINVILLE", - "nomCommune": "BARMAINVILLE" + "codePostal": "57830", + "codeCommune": "57611", + "libelleAcheminement": "ST GEORGES", + "nomCommune": "ST GEORGES" }, { - "codePostal": "22480", - "codeCommune": "22321", - "libelleAcheminement": "ST NICOLAS DU PELEM", - "nomCommune": "ST NICOLAS DU PELEM" + "codePostal": "57490", + "codeCommune": "57336", + "libelleAcheminement": "L HOPITAL", + "nomCommune": "L HOPITAL" }, { - "codePostal": "37530", - "codeCommune": "37230", - "libelleAcheminement": "ST OUEN LES VIGNES", - "nomCommune": "ST OUEN LES VIGNES" + "codePostal": "45300", + "codeCommune": "45137", + "libelleAcheminement": "ESCRENNES", + "nomCommune": "ESCRENNES" }, { - "codePostal": "51300", - "codeCommune": "51288", - "libelleAcheminement": "HEILTZ LE HUTIER", - "nomCommune": "HEILTZ LE HUTIER" + "codePostal": "48210", + "codeCommune": "48088", + "libelleAcheminement": "LA MALENE", + "nomCommune": "LA MALENE" }, { - "codePostal": "28700", - "codeCommune": "28039", - "libelleAcheminement": "BEVILLE LE COMTE", - "nomCommune": "BEVILLE LE COMTE" + "codePostal": "57820", + "codeCommune": "57618", + "libelleAcheminement": "ST LOUIS", + "nomCommune": "ST LOUIS" }, { - "codePostal": "22100", - "codeCommune": "22327", - "libelleAcheminement": "ST SAMSON SUR RANCE", - "nomCommune": "ST SAMSON SUR RANCE" + "codePostal": "57720", + "codeCommune": "57338", + "libelleAcheminement": "HOTTVILLER", + "nomCommune": "HOTTVILLER" }, { - "codePostal": "37370", - "codeCommune": "37231", - "libelleAcheminement": "ST PATERNE RACAN", - "nomCommune": "ST PATERNE RACAN" + "codePostal": "45520", + "codeCommune": "45154", + "libelleAcheminement": "GIDY", + "nomCommune": "GIDY" }, { - "codePostal": "51460", - "codeCommune": "51292", - "libelleAcheminement": "HERPONT", - "nomCommune": "HERPONT" + "codePostal": "48500", + "codeCommune": "48094", + "libelleAcheminement": "MASSEGROS CAUSSES GORGES", + "nomCommune": "MASSEGROS CAUSSES GORGES" }, { - "codePostal": "28500", - "codeCommune": "28045", - "libelleAcheminement": "BOISSY EN DROUAIS", - "nomCommune": "BOISSY EN DROUAIS" + "codePostal": "57255", + "codeCommune": "57620", + "libelleAcheminement": "STE MARIE AUX CHENES", + "nomCommune": "STE MARIE AUX CHENES" }, { - "codePostal": "22460", - "codeCommune": "22330", - "libelleAcheminement": "ST THELO", - "nomCommune": "ST THELO" + "codePostal": "57830", + "codeCommune": "57342", + "libelleAcheminement": "IBIGNY", + "nomCommune": "IBIGNY" }, { - "codePostal": "37700", - "codeCommune": "37233", - "libelleAcheminement": "ST PIERRE DES CORPS", - "nomCommune": "ST PIERRE DES CORPS" + "codePostal": "45490", + "codeCommune": "45158", + "libelleAcheminement": "GONDREVILLE", + "nomCommune": "GONDREVILLE" }, { - "codePostal": "51110", - "codeCommune": "51293", - "libelleAcheminement": "HEUTREGIVILLE", - "nomCommune": "HEUTREGIVILLE" + "codePostal": "48500", + "codeCommune": "48094", + "libelleAcheminement": "MASSEGROS CAUSSES GORGES", + "nomCommune": "MASSEGROS CAUSSES GORGES" }, { - "codePostal": "28800", - "codeCommune": "28065", - "libelleAcheminement": "BULLAINVILLE", - "nomCommune": "BULLAINVILLE" + "codePostal": "57260", + "codeCommune": "57621", + "libelleAcheminement": "ST MEDARD", + "nomCommune": "ST MEDARD" }, { - "codePostal": "22480", - "codeCommune": "22331", - "libelleAcheminement": "STE TREPHINE", - "nomCommune": "STE TREPHINE" + "codePostal": "57245", + "codeCommune": "57351", + "libelleAcheminement": "JURY", + "nomCommune": "JURY" }, { - "codePostal": "37390", - "codeCommune": "37237", - "libelleAcheminement": "ST ROCH", - "nomCommune": "ST ROCH" + "codePostal": "45210", + "codeCommune": "45161", + "libelleAcheminement": "GRISELLES", + "nomCommune": "GRISELLES" }, { - "codePostal": "51320", - "codeCommune": "51296", - "libelleAcheminement": "HUMBAUVILLE", - "nomCommune": "HUMBAUVILLE" + "codePostal": "48000", + "codeCommune": "48095", + "libelleAcheminement": "MENDE", + "nomCommune": "MENDE" }, { - "codePostal": "28330", - "codeCommune": "28078", - "libelleAcheminement": "CHAPELLE GUILLAUME", - "nomCommune": "CHAPELLE GUILLAUME" + "codePostal": "57430", + "codeCommune": "57628", + "libelleAcheminement": "SARRALBE", + "nomCommune": "SARRALBE" }, { - "codePostal": "22250", - "codeCommune": "22337", - "libelleAcheminement": "SEVIGNAC", - "nomCommune": "SEVIGNAC" + "codePostal": "57590", + "codeCommune": "57354", + "libelleAcheminement": "JUVILLE", + "nomCommune": "JUVILLE" }, { - "codePostal": "37340", - "codeCommune": "37241", - "libelleAcheminement": "SAVIGNE SUR LATHAN", - "nomCommune": "SAVIGNE SUR LATHAN" + "codePostal": "45520", + "codeCommune": "45166", + "libelleAcheminement": "HUETRE", + "nomCommune": "HUETRE" }, { - "codePostal": "51150", - "codeCommune": "51301", - "libelleAcheminement": "ISSE", - "nomCommune": "ISSE" + "codePostal": "48150", + "codeCommune": "48096", + "libelleAcheminement": "MEYRUEIS", + "nomCommune": "MEYRUEIS" }, { - "codePostal": "28290", - "codeCommune": "28079", - "libelleAcheminement": "CHAPELLE ROYALE", - "nomCommune": "CHAPELLE ROYALE" + "codePostal": "57200", + "codeCommune": "57631", + "libelleAcheminement": "SARREGUEMINES", + "nomCommune": "SARREGUEMINES" }, { - "codePostal": "22200", - "codeCommune": "22338", - "libelleAcheminement": "SQUIFFIEC", - "nomCommune": "SQUIFFIEC" + "codePostal": "57412", + "codeCommune": "57355", + "libelleAcheminement": "KALHAUSEN", + "nomCommune": "KALHAUSEN" }, { - "codePostal": "37220", - "codeCommune": "37244", - "libelleAcheminement": "SAZILLY", - "nomCommune": "SAZILLY" + "codePostal": "45740", + "codeCommune": "45179", + "libelleAcheminement": "LAILLY EN VAL", + "nomCommune": "LAILLY EN VAL" }, { - "codePostal": "51190", - "codeCommune": "51302", - "libelleAcheminement": "LES ISTRES ET BURY", - "nomCommune": "LES ISTRES ET BURY" + "codePostal": "48110", + "codeCommune": "48097", + "libelleAcheminement": "MOISSAC VALLEE FRANCAISE", + "nomCommune": "MOISSAC VALLEE FRANCAISE" }, { - "codePostal": "28120", - "codeCommune": "28081", - "libelleAcheminement": "CHARONVILLE", - "nomCommune": "CHARONVILLE" + "codePostal": "57200", + "codeCommune": "57631", + "libelleAcheminement": "SARREGUEMINES", + "nomCommune": "SARREGUEMINES" }, { - "codePostal": "22340", - "codeCommune": "22344", - "libelleAcheminement": "TREBRIVAN", - "nomCommune": "TREBRIVAN" + "codePostal": "57480", + "codeCommune": "57361", + "libelleAcheminement": "KERLING LES SIERCK", + "nomCommune": "KERLING LES SIERCK" }, { - "codePostal": "37500", - "codeCommune": "37248", - "libelleAcheminement": "SEUILLY", - "nomCommune": "SEUILLY" + "codePostal": "45240", + "codeCommune": "45182", + "libelleAcheminement": "LIGNY LE RIBAULT", + "nomCommune": "LIGNY LE RIBAULT" }, { - "codePostal": "51210", - "codeCommune": "51304", - "libelleAcheminement": "JANVILLIERS", - "nomCommune": "JANVILLIERS" + "codePostal": "48100", + "codeCommune": "48099", + "libelleAcheminement": "BOURGS SUR COLAGNE", + "nomCommune": "BOURGS SUR COLAGNE" }, { - "codePostal": "28270", - "codeCommune": "28087", - "libelleAcheminement": "CHATAINCOURT", - "nomCommune": "CHATAINCOURT" + "codePostal": "57905", + "codeCommune": "57633", + "libelleAcheminement": "SARREINSMING", + "nomCommune": "SARREINSMING" }, { - "codePostal": "22730", - "codeCommune": "22353", - "libelleAcheminement": "TREGASTEL", - "nomCommune": "TREGASTEL" + "codePostal": "57830", + "codeCommune": "57362", + "libelleAcheminement": "KERPRICH AUX BOIS", + "nomCommune": "KERPRICH AUX BOIS" }, { - "codePostal": "37360", - "codeCommune": "37249", - "libelleAcheminement": "SONZAY", - "nomCommune": "SONZAY" + "codePostal": "45600", + "codeCommune": "45184", + "libelleAcheminement": "LION EN SULLIAS", + "nomCommune": "LION EN SULLIAS" }, { - "codePostal": "51390", - "codeCommune": "51305", - "libelleAcheminement": "JANVRY", - "nomCommune": "JANVRY" + "codePostal": "48100", + "codeCommune": "48099", + "libelleAcheminement": "BOURGS SUR COLAGNE", + "nomCommune": "BOURGS SUR COLAGNE" }, { - "codePostal": "28120", - "codeCommune": "28091", - "libelleAcheminement": "LES CHATELLIERS NOTRE DAME", - "nomCommune": "LES CHATELLIERS NOTRE DAME" + "codePostal": "57720", + "codeCommune": "57641", + "libelleAcheminement": "SCHWEYEN", + "nomCommune": "SCHWEYEN" }, { - "codePostal": "22100", - "codeCommune": "22364", - "libelleAcheminement": "TRELIVAN", - "nomCommune": "TRELIVAN" + "codePostal": "57480", + "codeCommune": "57365", + "libelleAcheminement": "KIRSCHNAUMEN", + "nomCommune": "KIRSCHNAUMEN" }, { - "codePostal": "37250", - "codeCommune": "37250", - "libelleAcheminement": "SORIGNY", - "nomCommune": "SORIGNY" + "codePostal": "45330", + "codeCommune": "45191", + "libelleAcheminement": "LE MALESHERBOIS", + "nomCommune": "LE MALESHERBOIS" }, { - "codePostal": "51600", - "codeCommune": "51307", - "libelleAcheminement": "JONCHERY SUR SUIPPE", - "nomCommune": "JONCHERY SUR SUIPPE" + "codePostal": "48100", + "codeCommune": "48103", + "libelleAcheminement": "MONTRODAT", + "nomCommune": "MONTRODAT" }, { - "codePostal": "28260", - "codeCommune": "28096", - "libelleAcheminement": "LA CHAUSSEE D IVRY", - "nomCommune": "LA CHAUSSEE D IVRY" + "codePostal": "57290", + "codeCommune": "57647", + "libelleAcheminement": "SEREMANGE ERZANGE", + "nomCommune": "SEREMANGE ERZANGE" }, { - "codePostal": "22110", - "codeCommune": "22365", - "libelleAcheminement": "TREMARGAT", - "nomCommune": "TREMARGAT" + "codePostal": "57920", + "codeCommune": "57367", + "libelleAcheminement": "KLANG", + "nomCommune": "KLANG" }, { - "codePostal": "37530", - "codeCommune": "37252", - "libelleAcheminement": "SOUVIGNY DE TOURAINE", - "nomCommune": "SOUVIGNY DE TOURAINE" + "codePostal": "45130", + "codeCommune": "45203", + "libelleAcheminement": "MEUNG SUR LOIRE", + "nomCommune": "MEUNG SUR LOIRE" }, { - "codePostal": "51140", - "codeCommune": "51308", - "libelleAcheminement": "JONCHERY SUR VESLE", - "nomCommune": "JONCHERY SUR VESLE" + "codePostal": "48300", + "codeCommune": "48105", + "libelleAcheminement": "NAUSSAC FONTANES", + "nomCommune": "NAUSSAC FONTANES" }, { - "codePostal": "28190", - "codeCommune": "28099", - "libelleAcheminement": "CHUISNES", - "nomCommune": "CHUISNES" + "codePostal": "57410", + "codeCommune": "57651", + "libelleAcheminement": "SIERSTHAL", + "nomCommune": "SIERSTHAL" }, { - "codePostal": "22310", - "codeCommune": "22366", - "libelleAcheminement": "TREMEL", - "nomCommune": "TREMEL" + "codePostal": "57530", + "codeCommune": "57385", + "libelleAcheminement": "LAQUENEXY", + "nomCommune": "LAQUENEXY" }, { - "codePostal": "37310", - "codeCommune": "37254", - "libelleAcheminement": "TAUXIGNY ST BAULD", - "nomCommune": "TAUXIGNY ST BAULD" + "codePostal": "45340", + "codeCommune": "45220", + "libelleAcheminement": "NANCRAY SUR RIMARDE", + "nomCommune": "NANCRAY SUR RIMARDE" }, { - "codePostal": "51110", - "codeCommune": "51318", - "libelleAcheminement": "LAVANNES", - "nomCommune": "LAVANNES" + "codePostal": "48140", + "codeCommune": "48110", + "libelleAcheminement": "PAULHAC EN MARGERIDE", + "nomCommune": "PAULHAC EN MARGERIDE" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "57420", + "codeCommune": "57653", + "libelleAcheminement": "SILLY EN SAULNOIS", + "nomCommune": "SILLY EN SAULNOIS" }, { - "codePostal": "22100", - "codeCommune": "22380", - "libelleAcheminement": "TREVRON", - "nomCommune": "TREVRON" + "codePostal": "57480", + "codeCommune": "57388", + "libelleAcheminement": "LAUNSTROFF", + "nomCommune": "LAUNSTROFF" }, { - "codePostal": "37220", - "codeCommune": "37256", - "libelleAcheminement": "THENEUIL", - "nomCommune": "THENEUIL" + "codePostal": "45390", + "codeCommune": "45225", + "libelleAcheminement": "LA NEUVILLE SUR ESSONNE", + "nomCommune": "LA NEUVILLE SUR ESSONNE" }, { - "codePostal": "51170", - "codeCommune": "51321", - "libelleAcheminement": "LHERY", - "nomCommune": "LHERY" + "codePostal": "48700", + "codeCommune": "48126", + "libelleAcheminement": "LACHAMP RIBENNES", + "nomCommune": "LACHAMP RIBENNES" }, { - "codePostal": "28300", - "codeCommune": "28104", - "libelleAcheminement": "COLTAINVILLE", - "nomCommune": "COLTAINVILLE" + "codePostal": "57420", + "codeCommune": "57655", + "libelleAcheminement": "SOLGNE", + "nomCommune": "SOLGNE" }, { - "codePostal": "22450", - "codeCommune": "22381", - "libelleAcheminement": "TREZENY", - "nomCommune": "TREZENY" + "codePostal": "57590", + "codeCommune": "57391", + "libelleAcheminement": "LEMONCOURT", + "nomCommune": "LEMONCOURT" }, { - "codePostal": "37500", - "codeCommune": "37258", - "libelleAcheminement": "THIZAY", - "nomCommune": "THIZAY" + "codePostal": "45290", + "codeCommune": "45229", + "libelleAcheminement": "NOGENT SUR VERNISSON", + "nomCommune": "NOGENT SUR VERNISSON" }, { - "codePostal": "51290", - "codeCommune": "51322", - "libelleAcheminement": "LIGNON", - "nomCommune": "LIGNON" + "codePostal": "48000", + "codeCommune": "48127", + "libelleAcheminement": "MONTS DE RANDON", + "nomCommune": "MONTS DE RANDON" }, { - "codePostal": "28240", - "codeCommune": "28109", - "libelleAcheminement": "LES CORVEES LES YYS", - "nomCommune": "LES CORVEES LES YYS" + "codePostal": "57350", + "codeCommune": "57660", + "libelleAcheminement": "STIRING WENDEL", + "nomCommune": "STIRING WENDEL" }, { - "codePostal": "22980", - "codeCommune": "22388", - "libelleAcheminement": "VILDE GUINGALAN", - "nomCommune": "VILDE GUINGALAN" + "codePostal": "57580", + "codeCommune": "57395", + "libelleAcheminement": "LESSE", + "nomCommune": "LESSE" }, { - "codePostal": "37290", - "codeCommune": "37259", - "libelleAcheminement": "TOURNON ST PIERRE", - "nomCommune": "TOURNON ST PIERRE" + "codePostal": "45100", + "codeCommune": "45234", + "libelleAcheminement": "ORLEANS", + "nomCommune": "ORLEANS" }, { - "codePostal": "51230", - "codeCommune": "51323", - "libelleAcheminement": "LINTHELLES", - "nomCommune": "LINTHELLES" + "codePostal": "48700", + "codeCommune": "48127", + "libelleAcheminement": "MONTS DE RANDON", + "nomCommune": "MONTS DE RANDON" }, { - "codePostal": "28480", - "codeCommune": "28119", - "libelleAcheminement": "LA CROIX DU PERCHE", - "nomCommune": "LA CROIX DU PERCHE" + "codePostal": "57220", + "codeCommune": "57667", + "libelleAcheminement": "TETERCHEN", + "nomCommune": "TETERCHEN" }, { - "codePostal": "22350", - "codeCommune": "22391", - "libelleAcheminement": "YVIGNAC LA TOUR", - "nomCommune": "YVIGNAC LA TOUR" + "codePostal": "57660", + "codeCommune": "57398", + "libelleAcheminement": "LEYVILLER", + "nomCommune": "LEYVILLER" }, { - "codePostal": "37200", - "codeCommune": "37261", - "libelleAcheminement": "TOURS", - "nomCommune": "TOURS" + "codePostal": "45140", + "codeCommune": "45235", + "libelleAcheminement": "ORMES", + "nomCommune": "ORMES" }, { - "codePostal": "51230", - "codeCommune": "51324", - "libelleAcheminement": "LINTHES", - "nomCommune": "LINTHES" + "codePostal": "48700", + "codeCommune": "48127", + "libelleAcheminement": "MONTS DE RANDON", + "nomCommune": "MONTS DE RANDON" }, { - "codePostal": "28360", - "codeCommune": "28122", - "libelleAcheminement": "DAMMARIE", - "nomCommune": "DAMMARIE" + "codePostal": "57580", + "codeCommune": "57671", + "libelleAcheminement": "THIMONVILLE", + "nomCommune": "THIMONVILLE" }, { - "codePostal": "23200", - "codeCommune": "23003", - "libelleAcheminement": "ALLEYRAT", - "nomCommune": "ALLEYRAT" + "codePostal": "57590", + "codeCommune": "57406", + "libelleAcheminement": "LIOCOURT", + "nomCommune": "LIOCOURT" }, { - "codePostal": "37190", - "codeCommune": "37264", - "libelleAcheminement": "VALLERES", - "nomCommune": "VALLERES" + "codePostal": "45360", + "codeCommune": "45251", + "libelleAcheminement": "PIERREFITTE ES BOIS", + "nomCommune": "PIERREFITTE ES BOIS" }, { - "codePostal": "51400", - "codeCommune": "51326", - "libelleAcheminement": "LIVRY LOUVERCY", - "nomCommune": "LIVRY LOUVERCY" + "codePostal": "48150", + "codeCommune": "48131", + "libelleAcheminement": "LE ROZIER", + "nomCommune": "LE ROZIER" }, { - "codePostal": "28160", - "codeCommune": "28127", - "libelleAcheminement": "DANGEAU", - "nomCommune": "DANGEAU" + "codePostal": "57100", + "codeCommune": "57672", + "libelleAcheminement": "THIONVILLE", + "nomCommune": "THIONVILLE" }, { - "codePostal": "23000", - "codeCommune": "23004", - "libelleAcheminement": "ANZEME", - "nomCommune": "ANZEME" + "codePostal": "57670", + "codeCommune": "57418", + "libelleAcheminement": "LOUDREFING", + "nomCommune": "LOUDREFING" }, { - "codePostal": "37250", - "codeCommune": "37266", - "libelleAcheminement": "VEIGNE", - "nomCommune": "VEIGNE" + "codePostal": "45300", + "codeCommune": "45252", + "libelleAcheminement": "PITHIVIERS", + "nomCommune": "PITHIVIERS" }, { - "codePostal": "51220", - "codeCommune": "51329", - "libelleAcheminement": "LOIVRE", - "nomCommune": "LOIVRE" + "codePostal": "48240", + "codeCommune": "48136", + "libelleAcheminement": "ST ANDRE DE LANCIZE", + "nomCommune": "ST ANDRE DE LANCIZE" }, { - "codePostal": "28700", - "codeCommune": "28129", - "libelleAcheminement": "DENONVILLE", - "nomCommune": "DENONVILLE" + "codePostal": "57100", + "codeCommune": "57672", + "libelleAcheminement": "THIONVILLE", + "nomCommune": "THIONVILLE" }, { - "codePostal": "23480", - "codeCommune": "23007", - "libelleAcheminement": "ARS", - "nomCommune": "ARS" + "codePostal": "57590", + "codeCommune": "57424", + "libelleAcheminement": "LUCY", + "nomCommune": "LUCY" }, { - "codePostal": "38114", - "codeCommune": "38005", - "libelleAcheminement": "ALLEMOND", - "nomCommune": "ALLEMOND" + "codePostal": "45130", + "codeCommune": "45264", + "libelleAcheminement": "ROZIERES EN BEAUCE", + "nomCommune": "ROZIERES EN BEAUCE" }, { - "codePostal": "51800", - "codeCommune": "51341", - "libelleAcheminement": "MALMY", - "nomCommune": "MALMY" + "codePostal": "48600", + "codeCommune": "48139", + "libelleAcheminement": "ST BONNET LAVAL", + "nomCommune": "ST BONNET LAVAL" }, { - "codePostal": "28120", - "codeCommune": "28139", - "libelleAcheminement": "EPEAUTROLLES", - "nomCommune": "EPEAUTROLLES" + "codePostal": "57100", + "codeCommune": "57672", + "libelleAcheminement": "THIONVILLE", + "nomCommune": "THIONVILLE" }, { - "codePostal": "23200", - "codeCommune": "23008", - "libelleAcheminement": "AUBUSSON", - "nomCommune": "AUBUSSON" + "codePostal": "57935", + "codeCommune": "57426", + "libelleAcheminement": "LUTTANGE", + "nomCommune": "LUTTANGE" }, { - "codePostal": "38280", - "codeCommune": "38011", - "libelleAcheminement": "ANTHON", - "nomCommune": "ANTHON" + "codePostal": "45730", + "codeCommune": "45270", + "libelleAcheminement": "ST BENOIT SUR LOIRE", + "nomCommune": "ST BENOIT SUR LOIRE" }, { - "codePostal": "51700", - "codeCommune": "51346", - "libelleAcheminement": "MAREUIL LE PORT", - "nomCommune": "MAREUIL LE PORT" + "codePostal": "48210", + "codeCommune": "48141", + "libelleAcheminement": "MAS ST CHELY", + "nomCommune": "MAS ST CHELY" }, { - "codePostal": "28120", - "codeCommune": "28142", - "libelleAcheminement": "ERMENONVILLE LA PETITE", - "nomCommune": "ERMENONVILLE LA PETITE" + "codePostal": "57380", + "codeCommune": "57673", + "libelleAcheminement": "THONVILLE", + "nomCommune": "THONVILLE" }, { - "codePostal": "23210", - "codeCommune": "23014", - "libelleAcheminement": "AZAT CHATENET", - "nomCommune": "AZAT CHATENET" + "codePostal": "57480", + "codeCommune": "57437", + "libelleAcheminement": "MALLING", + "nomCommune": "MALLING" }, { - "codePostal": "38680", - "codeCommune": "38018", - "libelleAcheminement": "AUBERIVES EN ROYANS", - "nomCommune": "AUBERIVES EN ROYANS" + "codePostal": "45500", + "codeCommune": "45271", + "libelleAcheminement": "ST BRISSON SUR LOIRE", + "nomCommune": "ST BRISSON SUR LOIRE" }, { - "codePostal": "51230", - "codeCommune": "51351", - "libelleAcheminement": "MARIGNY", - "nomCommune": "MARIGNY" + "codePostal": "48700", + "codeCommune": "48145", + "libelleAcheminement": "ST DENIS EN MARGERIDE", + "nomCommune": "ST DENIS EN MARGERIDE" }, { - "codePostal": "28170", - "codeCommune": "28147", - "libelleAcheminement": "FAVIERES", - "nomCommune": "FAVIERES" + "codePostal": "57670", + "codeCommune": "57675", + "libelleAcheminement": "TORCHEVILLE", + "nomCommune": "TORCHEVILLE" }, { - "codePostal": "23160", - "codeCommune": "23015", - "libelleAcheminement": "AZERABLES", - "nomCommune": "AZERABLES" + "codePostal": "57640", + "codeCommune": "57438", + "libelleAcheminement": "MALROY", + "nomCommune": "MALROY" }, { - "codePostal": "38970", - "codeCommune": "38031", - "libelleAcheminement": "BEAUFIN", - "nomCommune": "BEAUFIN" + "codePostal": "45560", + "codeCommune": "45274", + "libelleAcheminement": "ST DENIS EN VAL", + "nomCommune": "ST DENIS EN VAL" }, { - "codePostal": "51240", - "codeCommune": "51354", - "libelleAcheminement": "MARSON", - "nomCommune": "MARSON" + "codePostal": "48330", + "codeCommune": "48148", + "libelleAcheminement": "ST ETIENNE VALLEE FRANCAISE", + "nomCommune": "ST ETIENNE VALLEE FRANCAISE" }, { - "codePostal": "28270", - "codeCommune": "28151", - "libelleAcheminement": "FESSANVILLIERS MATTANVILLIERS", - "nomCommune": "FESSANVILLIERS MATTANVILLIERS" + "codePostal": "57385", + "codeCommune": "57679", + "libelleAcheminement": "TRITTELING REDLACH", + "nomCommune": "TRITTELING REDLACH" }, { - "codePostal": "23270", - "codeCommune": "23022", - "libelleAcheminement": "BETETE", - "nomCommune": "BETETE" + "codePostal": "57380", + "codeCommune": "57442", + "libelleAcheminement": "MANY", + "nomCommune": "MANY" }, { - "codePostal": "38270", - "codeCommune": "38032", - "libelleAcheminement": "BEAUFORT", - "nomCommune": "BEAUFORT" + "codePostal": "45230", + "codeCommune": "45278", + "libelleAcheminement": "STE GENEVIEVE DES BOIS", + "nomCommune": "STE GENEVIEVE DES BOIS" }, { - "codePostal": "51510", - "codeCommune": "51357", - "libelleAcheminement": "MATOUGUES", - "nomCommune": "MATOUGUES" + "codePostal": "48170", + "codeCommune": "48151", + "libelleAcheminement": "ST FREZAL D ALBUGES", + "nomCommune": "ST FREZAL D ALBUGES" }, { - "codePostal": "28170", - "codeCommune": "28155", - "libelleAcheminement": "FONTAINE LES RIBOUTS", - "nomCommune": "FONTAINE LES RIBOUTS" + "codePostal": "57870", + "codeCommune": "57680", + "libelleAcheminement": "TROISFONTAINES", + "nomCommune": "TROISFONTAINES" }, { - "codePostal": "23140", - "codeCommune": "23023", - "libelleAcheminement": "BLAUDEIX", - "nomCommune": "BLAUDEIX" + "codePostal": "57630", + "codeCommune": "57448", + "libelleAcheminement": "MARSAL", + "nomCommune": "MARSAL" }, { - "codePostal": "38440", - "codeCommune": "38035", - "libelleAcheminement": "BEAUVOIR DE MARC", - "nomCommune": "BEAUVOIR DE MARC" + "codePostal": "45170", + "codeCommune": "45289", + "libelleAcheminement": "ST LYE LA FORET", + "nomCommune": "ST LYE LA FORET" }, { - "codePostal": "51120", - "codeCommune": "51360", - "libelleAcheminement": "LE MEIX ST EPOING", - "nomCommune": "LE MEIX ST EPOING" + "codePostal": "48700", + "codeCommune": "48153", + "libelleAcheminement": "ST GAL", + "nomCommune": "ST GAL" }, { - "codePostal": "28360", - "codeCommune": "28162", - "libelleAcheminement": "FRESNAY LE COMTE", - "nomCommune": "FRESNAY LE COMTE" + "codePostal": "57560", + "codeCommune": "57682", + "libelleAcheminement": "TURQUESTEIN BLANCRUPT", + "nomCommune": "TURQUESTEIN BLANCRUPT" }, { - "codePostal": "23230", - "codeCommune": "23040", - "libelleAcheminement": "LA CELLE SOUS GOUZON", - "nomCommune": "LA CELLE SOUS GOUZON" + "codePostal": "57340", + "codeCommune": "57451", + "libelleAcheminement": "MARTHILLE", + "nomCommune": "MARTHILLE" }, { - "codePostal": "38270", - "codeCommune": "38037", - "libelleAcheminement": "BELLEGARDE POUSSIEU", - "nomCommune": "BELLEGARDE POUSSIEU" + "codePostal": "45750", + "codeCommune": "45298", + "libelleAcheminement": "ST PRYVE ST MESMIN", + "nomCommune": "ST PRYVE ST MESMIN" }, { - "codePostal": "51220", - "codeCommune": "51362", - "libelleAcheminement": "MERFY", - "nomCommune": "MERFY" + "codePostal": "48340", + "codeCommune": "48156", + "libelleAcheminement": "ST GERMAIN DU TEIL", + "nomCommune": "ST GERMAIN DU TEIL" }, { - "codePostal": "28310", - "codeCommune": "28164", - "libelleAcheminement": "FRESNAY L EVEQUE", - "nomCommune": "FRESNAY L EVEQUE" + "codePostal": "57660", + "codeCommune": "57684", + "libelleAcheminement": "VAHL EBERSING", + "nomCommune": "VAHL EBERSING" }, { - "codePostal": "23210", - "codeCommune": "23042", - "libelleAcheminement": "CEYROUX", - "nomCommune": "CEYROUX" + "codePostal": "57660", + "codeCommune": "57453", + "libelleAcheminement": "MAXSTADT", + "nomCommune": "MAXSTADT" }, { - "codePostal": "38690", - "codeCommune": "38044", - "libelleAcheminement": "BIOL", - "nomCommune": "BIOL" + "codePostal": "45640", + "codeCommune": "45300", + "libelleAcheminement": "SANDILLON", + "nomCommune": "SANDILLON" }, { - "codePostal": "51370", - "codeCommune": "51365", - "libelleAcheminement": "LES MESNEUX", - "nomCommune": "LES MESNEUX" + "codePostal": "48160", + "codeCommune": "48158", + "libelleAcheminement": "ST HILAIRE DE LAVIT", + "nomCommune": "ST HILAIRE DE LAVIT" }, { - "codePostal": "28240", - "codeCommune": "28166", - "libelleAcheminement": "FRIAIZE", - "nomCommune": "FRIAIZE" + "codePostal": "57220", + "codeCommune": "57695", + "libelleAcheminement": "VARIZE VAUDONCOURT", + "nomCommune": "VARIZE VAUDONCOURT" }, { - "codePostal": "23190", - "codeCommune": "23048", - "libelleAcheminement": "CHAMPAGNAT", - "nomCommune": "CHAMPAGNAT" + "codePostal": "57000", + "codeCommune": "57463", + "libelleAcheminement": "METZ", + "nomCommune": "METZ" }, { - "codePostal": "38330", - "codeCommune": "38045", - "libelleAcheminement": "BIVIERS", - "nomCommune": "BIVIERS" + "codePostal": "45210", + "codeCommune": "45306", + "libelleAcheminement": "LA SELLE EN HERMOY", + "nomCommune": "LA SELLE EN HERMOY" }, { - "codePostal": "51240", - "codeCommune": "51371", - "libelleAcheminement": "MOIVRE", - "nomCommune": "MOIVRE" + "codePostal": "48170", + "codeCommune": "48160", + "libelleAcheminement": "ST JEAN LA FOUILLOUSE", + "nomCommune": "ST JEAN LA FOUILLOUSE" }, { - "codePostal": "28320", - "codeCommune": "28168", - "libelleAcheminement": "GALLARDON", - "nomCommune": "GALLARDON" + "codePostal": "57580", + "codeCommune": "57698", + "libelleAcheminement": "VATIMONT", + "nomCommune": "VATIMONT" }, { - "codePostal": "23220", - "codeCommune": "23049", - "libelleAcheminement": "CHAMPSANGLARD", - "nomCommune": "CHAMPSANGLARD" + "codePostal": "57920", + "codeCommune": "57464", + "libelleAcheminement": "METZERESCHE", + "nomCommune": "METZERESCHE" }, { - "codePostal": "38150", - "codeCommune": "38051", - "libelleAcheminement": "BOUGE CHAMBALUD", - "nomCommune": "BOUGE CHAMBALUD" + "codePostal": "45210", + "codeCommune": "45307", + "libelleAcheminement": "LA SELLE SUR LE BIED", + "nomCommune": "LA SELLE SUR LE BIED" }, { - "codePostal": "51470", - "codeCommune": "51372", - "libelleAcheminement": "MONCETZ LONGEVAS", - "nomCommune": "MONCETZ LONGEVAS" + "codePostal": "48400", + "codeCommune": "48166", + "libelleAcheminement": "CANS ET CEVENNES", + "nomCommune": "CANS ET CEVENNES" }, { - "codePostal": "28320", - "codeCommune": "28172", - "libelleAcheminement": "GAS", - "nomCommune": "GAS" + "codePostal": "57130", + "codeCommune": "57701", + "libelleAcheminement": "VAUX", + "nomCommune": "VAUX" }, { - "codePostal": "23000", - "codeCommune": "23052", - "libelleAcheminement": "LA CHAPELLE TAILLEFERT", - "nomCommune": "LA CHAPELLE TAILLEFERT" + "codePostal": "57070", + "codeCommune": "57467", + "libelleAcheminement": "MEY", + "nomCommune": "MEY" }, { - "codePostal": "38520", - "codeCommune": "38052", - "libelleAcheminement": "LE BOURG D OISANS", - "nomCommune": "LE BOURG D OISANS" + "codePostal": "45400", + "codeCommune": "45308", + "libelleAcheminement": "SEMOY", + "nomCommune": "SEMOY" }, { - "codePostal": "51260", - "codeCommune": "51376", - "libelleAcheminement": "MONTGENOST", - "nomCommune": "MONTGENOST" + "codePostal": "48310", + "codeCommune": "48167", + "libelleAcheminement": "ST LAURENT DE VEYRES", + "nomCommune": "ST LAURENT DE VEYRES" }, { - "codePostal": "28300", - "codeCommune": "28173", - "libelleAcheminement": "GASVILLE OISEME", - "nomCommune": "GASVILLE OISEME" + "codePostal": "57920", + "codeCommune": "57704", + "libelleAcheminement": "VECKRING", + "nomCommune": "VECKRING" }, { - "codePostal": "23700", - "codeCommune": "23054", - "libelleAcheminement": "CHARRON", - "nomCommune": "CHARRON" + "codePostal": "01100", + "codeCommune": "01011", + "libelleAcheminement": "APREMONT", + "nomCommune": "APREMONT" }, { - "codePostal": "38300", - "codeCommune": "38053", - "libelleAcheminement": "BOURGOIN JALLIEU", - "nomCommune": "BOURGOIN JALLIEU" + "codePostal": "57930", + "codeCommune": "57469", + "libelleAcheminement": "MITTERSHEIM", + "nomCommune": "MITTERSHEIM" }, { - "codePostal": "51140", - "codeCommune": "51391", - "libelleAcheminement": "MUIZON", - "nomCommune": "MUIZON" + "codePostal": "45300", + "codeCommune": "45310", + "libelleAcheminement": "SERMAISES", + "nomCommune": "SERMAISES" }, { - "codePostal": "28400", - "codeCommune": "28175", - "libelleAcheminement": "LA GAUDAINE", - "nomCommune": "LA GAUDAINE" + "codePostal": "48110", + "codeCommune": "48171", + "libelleAcheminement": "ST MARTIN DE LANSUSCLE", + "nomCommune": "ST MARTIN DE LANSUSCLE" }, { - "codePostal": "23270", - "codeCommune": "23064", - "libelleAcheminement": "CLUGNAT", - "nomCommune": "CLUGNAT" + "codePostal": "57670", + "codeCommune": "57711", + "libelleAcheminement": "VIBERSVILLER", + "nomCommune": "VIBERSVILLER" }, { - "codePostal": "38390", - "codeCommune": "38054", - "libelleAcheminement": "BOUVESSE QUIRIEU", - "nomCommune": "BOUVESSE QUIRIEU" + "codePostal": "01230", + "codeCommune": "01013", + "libelleAcheminement": "ARANDAS", + "nomCommune": "ARANDAS" }, { - "codePostal": "51300", - "codeCommune": "51406", - "libelleAcheminement": "NORROIS", - "nomCommune": "NORROIS" + "codePostal": "57300", + "codeCommune": "57474", + "libelleAcheminement": "MONDELANGE", + "nomCommune": "MONDELANGE" }, { - "codePostal": "28260", - "codeCommune": "28180", - "libelleAcheminement": "GILLES", - "nomCommune": "GILLES" + "codePostal": "45600", + "codeCommune": "45315", + "libelleAcheminement": "SULLY SUR LOIRE", + "nomCommune": "SULLY SUR LOIRE" }, { - "codePostal": "23160", - "codeCommune": "23070", - "libelleAcheminement": "CROZANT", - "nomCommune": "CROZANT" + "codePostal": "48200", + "codeCommune": "48177", + "libelleAcheminement": "ST PIERRE LE VIEUX", + "nomCommune": "ST PIERRE LE VIEUX" }, { - "codePostal": "38320", - "codeCommune": "38057", - "libelleAcheminement": "BRESSON", - "nomCommune": "BRESSON" + "codePostal": "57630", + "codeCommune": "57712", + "libelleAcheminement": "VIC SUR SEILLE", + "nomCommune": "VIC SUR SEILLE" }, { - "codePostal": "51230", - "codeCommune": "51412", - "libelleAcheminement": "OGNES", - "nomCommune": "OGNES" + "codePostal": "01480", + "codeCommune": "01021", + "libelleAcheminement": "ARS SUR FORMANS", + "nomCommune": "ARS SUR FORMANS" }, { - "codePostal": "28160", - "codeCommune": "28182", - "libelleAcheminement": "GOHORY", - "nomCommune": "GOHORY" + "codePostal": "57340", + "codeCommune": "57483", + "libelleAcheminement": "MORHANGE", + "nomCommune": "MORHANGE" }, { - "codePostal": "23340", - "codeCommune": "23077", - "libelleAcheminement": "FAUX LA MONTAGNE", - "nomCommune": "FAUX LA MONTAGNE" + "codePostal": "45530", + "codeCommune": "45316", + "libelleAcheminement": "SURY AUX BOIS", + "nomCommune": "SURY AUX BOIS" }, { - "codePostal": "38590", - "codeCommune": "38060", - "libelleAcheminement": "BRION", - "nomCommune": "BRION" + "codePostal": "48240", + "codeCommune": "48178", + "libelleAcheminement": "ST PRIVAT DE VALLONGUE", + "nomCommune": "ST PRIVAT DE VALLONGUE" }, { - "codePostal": "51300", - "codeCommune": "51417", - "libelleAcheminement": "ORCONTE", - "nomCommune": "ORCONTE" + "codePostal": "57185", + "codeCommune": "57724", + "libelleAcheminement": "VITRY SUR ORNE", + "nomCommune": "VITRY SUR ORNE" }, { - "codePostal": "28310", - "codeCommune": "28183", - "libelleAcheminement": "GOMMERVILLE", - "nomCommune": "GOMMERVILLE" + "codePostal": "01510", + "codeCommune": "01022", + "libelleAcheminement": "ARTEMARE", + "nomCommune": "ARTEMARE" }, { - "codePostal": "23400", - "codeCommune": "23078", - "libelleAcheminement": "FAUX MAZURAS", - "nomCommune": "FAUX MAZURAS" + "codePostal": "57600", + "codeCommune": "57484", + "libelleAcheminement": "MORSBACH", + "nomCommune": "MORSBACH" }, { - "codePostal": "38690", - "codeCommune": "38063", - "libelleAcheminement": "BURCIN", - "nomCommune": "BURCIN" + "codePostal": "45490", + "codeCommune": "45328", + "libelleAcheminement": "TREILLES EN GATINAIS", + "nomCommune": "TREILLES EN GATINAIS" }, { - "codePostal": "51370", - "codeCommune": "51418", - "libelleAcheminement": "ORMES", - "nomCommune": "ORMES" + "codePostal": "48310", + "codeCommune": "48190", + "libelleAcheminement": "TERMES", + "nomCommune": "TERMES" }, { - "codePostal": "28260", - "codeCommune": "28187", - "libelleAcheminement": "GUAINVILLE", - "nomCommune": "GUAINVILLE" + "codePostal": "57420", + "codeCommune": "57737", + "libelleAcheminement": "VULMONT", + "nomCommune": "VULMONT" }, { - "codePostal": "23260", - "codeCommune": "23081", - "libelleAcheminement": "FLAYAT", - "nomCommune": "FLAYAT" + "codePostal": "01360", + "codeCommune": "01027", + "libelleAcheminement": "BALAN", + "nomCommune": "BALAN" }, { - "codePostal": "38800", - "codeCommune": "38068", - "libelleAcheminement": "CHAMPAGNIER", - "nomCommune": "CHAMPAGNIER" + "codePostal": "57160", + "codeCommune": "57487", + "libelleAcheminement": "MOULINS LES METZ", + "nomCommune": "MOULINS LES METZ" }, { - "codePostal": "51340", - "codeCommune": "51423", - "libelleAcheminement": "PARGNY SUR SAULX", - "nomCommune": "PARGNY SUR SAULX" + "codePostal": "45510", + "codeCommune": "45331", + "libelleAcheminement": "VANNES SUR COSSON", + "nomCommune": "VANNES SUR COSSON" }, { - "codePostal": "28410", - "codeCommune": "28193", - "libelleAcheminement": "HAVELU", - "nomCommune": "HAVELU" + "codePostal": "48800", + "codeCommune": "48198", + "libelleAcheminement": "VILLEFORT", + "nomCommune": "VILLEFORT" }, { - "codePostal": "23360", - "codeCommune": "23084", - "libelleAcheminement": "LA FORET DU TEMPLE", - "nomCommune": "LA FORET DU TEMPLE" + "codePostal": "57480", + "codeCommune": "57740", + "libelleAcheminement": "WALDWISSE", + "nomCommune": "WALDWISSE" }, { - "codePostal": "38260", - "codeCommune": "38069", - "libelleAcheminement": "CHAMPIER", - "nomCommune": "CHAMPIER" + "codePostal": "01990", + "codeCommune": "01028", + "libelleAcheminement": "BANEINS", + "nomCommune": "BANEINS" }, { - "codePostal": "51800", - "codeCommune": "51424", - "libelleAcheminement": "PASSAVANT EN ARGONNE", - "nomCommune": "PASSAVANT EN ARGONNE" + "codePostal": "57160", + "codeCommune": "57487", + "libelleAcheminement": "MOULINS LES METZ", + "nomCommune": "MOULINS LES METZ" }, { - "codePostal": "28700", - "codeCommune": "28194", - "libelleAcheminement": "HOUVILLE LA BRANCHE", - "nomCommune": "HOUVILLE LA BRANCHE" + "codePostal": "45510", + "codeCommune": "45335", + "libelleAcheminement": "VIENNE EN VAL", + "nomCommune": "VIENNE EN VAL" }, { - "codePostal": "23320", - "codeCommune": "23088", - "libelleAcheminement": "GARTEMPE", - "nomCommune": "GARTEMPE" + "codePostal": "49650", + "codeCommune": "49002", + "libelleAcheminement": "ALLONNES", + "nomCommune": "ALLONNES" }, { - "codePostal": "38190", - "codeCommune": "38070", - "libelleAcheminement": "LE CHAMP PRES FROGES", - "nomCommune": "LE CHAMP PRES FROGES" + "codePostal": "57140", + "codeCommune": "57751", + "libelleAcheminement": "WOIPPY", + "nomCommune": "WOIPPY" }, { - "codePostal": "51240", - "codeCommune": "51436", - "libelleAcheminement": "POGNY", - "nomCommune": "POGNY" + "codePostal": "01480", + "codeCommune": "01030", + "libelleAcheminement": "BEAUREGARD", + "nomCommune": "BEAUREGARD" }, { - "codePostal": "28270", - "codeCommune": "28206", - "libelleAcheminement": "LAONS", - "nomCommune": "LAONS" + "codePostal": "57770", + "codeCommune": "57488", + "libelleAcheminement": "MOUSSEY", + "nomCommune": "MOUSSEY" }, { - "codePostal": "23500", - "codeCommune": "23091", - "libelleAcheminement": "GIOUX", - "nomCommune": "GIOUX" + "codePostal": "45310", + "codeCommune": "45337", + "libelleAcheminement": "VILLAMBLAIN", + "nomCommune": "VILLAMBLAIN" }, { - "codePostal": "38740", - "codeCommune": "38073", - "libelleAcheminement": "CHANTEPERIER", - "nomCommune": "CHANTEPERIER" + "codePostal": "49000", + "codeCommune": "49007", + "libelleAcheminement": "ANGERS", + "nomCommune": "ANGERS" }, { - "codePostal": "51460", - "codeCommune": "51438", - "libelleAcheminement": "POIX", - "nomCommune": "POIX" + "codePostal": "57630", + "codeCommune": "57754", + "libelleAcheminement": "XANREY", + "nomCommune": "XANREY" }, { - "codePostal": "28250", - "codeCommune": "28217", - "libelleAcheminement": "LOUVILLIERS LES PERCHE", - "nomCommune": "LOUVILLIERS LES PERCHE" + "codePostal": "01360", + "codeCommune": "01032", + "libelleAcheminement": "BELIGNEUX", + "nomCommune": "BELIGNEUX" }, { - "codePostal": "23380", - "codeCommune": "23092", - "libelleAcheminement": "GLENIC", - "nomCommune": "GLENIC" + "codePostal": "57250", + "codeCommune": "57491", + "libelleAcheminement": "MOYEUVRE GRANDE", + "nomCommune": "MOYEUVRE GRANDE" }, { - "codePostal": "38470", - "codeCommune": "38074", - "libelleAcheminement": "CHANTESSE", - "nomCommune": "CHANTESSE" + "codePostal": "45310", + "codeCommune": "45341", + "libelleAcheminement": "VILLENEUVE SUR CONIE", + "nomCommune": "VILLENEUVE SUR CONIE" }, { - "codePostal": "51110", - "codeCommune": "51439", - "libelleAcheminement": "POMACLE", - "nomCommune": "POMACLE" + "codePostal": "49540", + "codeCommune": "49012", + "libelleAcheminement": "AUBIGNE SUR LAYON", + "nomCommune": "AUBIGNE SUR LAYON" }, { - "codePostal": "28500", - "codeCommune": "28223", - "libelleAcheminement": "LURAY", - "nomCommune": "LURAY" + "codePostal": "57590", + "codeCommune": "57755", + "libelleAcheminement": "XOCOURT", + "nomCommune": "XOCOURT" }, { - "codePostal": "23270", - "codeCommune": "23098", - "libelleAcheminement": "JALESCHES", - "nomCommune": "JALESCHES" + "codePostal": "01200", + "codeCommune": "01033", + "libelleAcheminement": "VALSERHONE", + "nomCommune": "VALSERHONE" }, { - "codePostal": "38850", - "codeCommune": "38082", - "libelleAcheminement": "CHARAVINES", - "nomCommune": "CHARAVINES" + "codePostal": "57910", + "codeCommune": "57499", + "libelleAcheminement": "NEUFGRANGE", + "nomCommune": "NEUFGRANGE" }, { - "codePostal": "51300", - "codeCommune": "51441", - "libelleAcheminement": "PONTHION", - "nomCommune": "PONTHION" + "codePostal": "45700", + "codeCommune": "45343", + "libelleAcheminement": "VILLEVOQUES", + "nomCommune": "VILLEVOQUES" }, { - "codePostal": "28400", - "codeCommune": "28236", - "libelleAcheminement": "ARCISSES", - "nomCommune": "ARCISSES" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "23800", - "codeCommune": "23103", - "libelleAcheminement": "LAFAT", - "nomCommune": "LAFAT" + "codePostal": "57970", + "codeCommune": "57767", + "libelleAcheminement": "STUCKANGE", + "nomCommune": "STUCKANGE" }, { - "codePostal": "38300", - "codeCommune": "38091", - "libelleAcheminement": "CHATEAUVILAIN", - "nomCommune": "CHATEAUVILAIN" + "codePostal": "01300", + "codeCommune": "01034", + "libelleAcheminement": "BELLEY", + "nomCommune": "BELLEY" }, { - "codePostal": "51120", - "codeCommune": "51451", - "libelleAcheminement": "QUEUDES", - "nomCommune": "QUEUDES" + "codePostal": "57720", + "codeCommune": "57513", + "libelleAcheminement": "NOUSSEVILLER LES BITCHE", + "nomCommune": "NOUSSEVILLER LES BITCHE" }, { - "codePostal": "28480", - "codeCommune": "28252", - "libelleAcheminement": "MIERMAIGNE", - "nomCommune": "MIERMAIGNE" + "codePostal": "45190", + "codeCommune": "45344", + "libelleAcheminement": "VILLORCEAU", + "nomCommune": "VILLORCEAU" }, { - "codePostal": "23170", - "codeCommune": "23106", - "libelleAcheminement": "LEPAUD", - "nomCommune": "LEPAUD" + "codePostal": "49250", + "codeCommune": "49021", + "libelleAcheminement": "BEAUFORT EN ANJOU", + "nomCommune": "BEAUFORT EN ANJOU" }, { - "codePostal": "38930", - "codeCommune": "38103", - "libelleAcheminement": "CHICHILIANNE", - "nomCommune": "CHICHILIANNE" + "codePostal": "58270", + "codeCommune": "58006", + "libelleAcheminement": "ANLEZY", + "nomCommune": "ANLEZY" }, { - "codePostal": "51480", - "codeCommune": "51465", - "libelleAcheminement": "ROMERY", - "nomCommune": "ROMERY" + "codePostal": "01260", + "codeCommune": "01036", + "libelleAcheminement": "VALROMEY SUR SERAN", + "nomCommune": "VALROMEY SUR SERAN" }, { - "codePostal": "28190", - "codeCommune": "28254", - "libelleAcheminement": "MITTAINVILLIERS VERIGNY", - "nomCommune": "MITTAINVILLIERS VERIGNY" + "codePostal": "57420", + "codeCommune": "57532", + "libelleAcheminement": "PAGNY LES GOIN", + "nomCommune": "PAGNY LES GOIN" }, { - "codePostal": "23400", - "codeCommune": "23122", - "libelleAcheminement": "MANSAT LA COURRIERE", - "nomCommune": "MANSAT LA COURRIERE" + "codePostal": "46300", + "codeCommune": "46006", + "libelleAcheminement": "ANGLARS NOZAC", + "nomCommune": "ANGLARS NOZAC" }, { - "codePostal": "38220", - "codeCommune": "38106", - "libelleAcheminement": "CHOLONGE", - "nomCommune": "CHOLONGE" + "codePostal": "49510", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "51290", - "codeCommune": "51475", - "libelleAcheminement": "ST CHERON", - "nomCommune": "ST CHERON" + "codePostal": "58800", + "codeCommune": "58008", + "libelleAcheminement": "ANTHIEN", + "nomCommune": "ANTHIEN" }, { - "codePostal": "28700", - "codeCommune": "28255", - "libelleAcheminement": "MOINVILLE LA JEULIN", - "nomCommune": "MOINVILLE LA JEULIN" + "codePostal": "01190", + "codeCommune": "01050", + "libelleAcheminement": "BOISSEY", + "nomCommune": "BOISSEY" }, { - "codePostal": "23190", - "codeCommune": "23127", - "libelleAcheminement": "MAUTES", - "nomCommune": "MAUTES" + "codePostal": "57530", + "codeCommune": "57533", + "libelleAcheminement": "PANGE", + "nomCommune": "PANGE" }, { - "codePostal": "38680", - "codeCommune": "38108", - "libelleAcheminement": "CHORANCHE", - "nomCommune": "CHORANCHE" + "codePostal": "46320", + "codeCommune": "46009", + "libelleAcheminement": "ASSIER", + "nomCommune": "ASSIER" }, { - "codePostal": "51460", - "codeCommune": "51476", - "libelleAcheminement": "ST ETIENNE AU TEMPLE", - "nomCommune": "ST ETIENNE AU TEMPLE" + "codePostal": "49170", + "codeCommune": "49028", + "libelleAcheminement": "BEHUARD", + "nomCommune": "BEHUARD" }, { - "codePostal": "28800", - "codeCommune": "28260", - "libelleAcheminement": "MONTHARVILLE", - "nomCommune": "MONTHARVILLE" + "codePostal": "58430", + "codeCommune": "58010", + "libelleAcheminement": "ARLEUF", + "nomCommune": "ARLEUF" }, { - "codePostal": "23150", - "codeCommune": "23128", - "libelleAcheminement": "MAZEIRAT", - "nomCommune": "MAZEIRAT" + "codePostal": "01000", + "codeCommune": "01053", + "libelleAcheminement": "BOURG EN BRESSE", + "nomCommune": "BOURG EN BRESSE" }, { - "codePostal": "38200", - "codeCommune": "38110", - "libelleAcheminement": "CHUZELLES", - "nomCommune": "CHUZELLES" + "codePostal": "57245", + "codeCommune": "57534", + "libelleAcheminement": "PELTRE", + "nomCommune": "PELTRE" }, { - "codePostal": "51700", - "codeCommune": "51480", - "libelleAcheminement": "STE GEMME", - "nomCommune": "STE GEMME" + "codePostal": "46230", + "codeCommune": "46013", + "libelleAcheminement": "BACH", + "nomCommune": "BACH" }, { - "codePostal": "28270", - "codeCommune": "28263", - "libelleAcheminement": "MONTIGNY SUR AVRE", - "nomCommune": "MONTIGNY SUR AVRE" + "codePostal": "49320", + "codeCommune": "49029", + "libelleAcheminement": "BLAISON ST SULPICE", + "nomCommune": "BLAISON ST SULPICE" }, { - "codePostal": "23210", - "codeCommune": "23137", - "libelleAcheminement": "MOURIOUX VIEILLEVILLE", - "nomCommune": "MOURIOUX VIEILLEVILLE" + "codePostal": "58420", + "codeCommune": "58015", + "libelleAcheminement": "ASNAN", + "nomCommune": "ASNAN" }, { - "codePostal": "38550", - "codeCommune": "38114", - "libelleAcheminement": "CLONAS SUR VAREZE", - "nomCommune": "CLONAS SUR VAREZE" + "codePostal": "01190", + "codeCommune": "01057", + "libelleAcheminement": "BOZ", + "nomCommune": "BOZ" }, { - "codePostal": "51330", - "codeCommune": "51489", - "libelleAcheminement": "ST JEAN DEVANT POSSESSE", - "nomCommune": "ST JEAN DEVANT POSSESSE" + "codePostal": "57170", + "codeCommune": "57538", + "libelleAcheminement": "PETTONCOURT", + "nomCommune": "PETTONCOURT" }, { - "codePostal": "28400", - "codeCommune": "28280", - "libelleAcheminement": "NOGENT LE ROTROU", - "nomCommune": "NOGENT LE ROTROU" + "codePostal": "46400", + "codeCommune": "46017", + "libelleAcheminement": "BANNES", + "nomCommune": "BANNES" }, { - "codePostal": "23170", - "codeCommune": "23145", - "libelleAcheminement": "NOUHANT", - "nomCommune": "NOUHANT" + "codePostal": "49160", + "codeCommune": "49030", + "libelleAcheminement": "BLOU", + "nomCommune": "BLOU" }, { - "codePostal": "38250", - "codeCommune": "38129", - "libelleAcheminement": "CORRENCON EN VERCORS", - "nomCommune": "CORRENCON EN VERCORS" + "codePostal": "58110", + "codeCommune": "58017", + "libelleAcheminement": "AUNAY EN BAZOIS", + "nomCommune": "AUNAY EN BAZOIS" }, { - "codePostal": "51600", - "codeCommune": "51501", - "libelleAcheminement": "STE MARIE A PY", - "nomCommune": "STE MARIE A PY" + "codePostal": "01300", + "codeCommune": "01058", + "libelleAcheminement": "BREGNIER CORDON", + "nomCommune": "BREGNIER CORDON" }, { - "codePostal": "28700", - "codeCommune": "28285", - "libelleAcheminement": "OINVILLE SOUS AUNEAU", - "nomCommune": "OINVILLE SOUS AUNEAU" + "codePostal": "57220", + "codeCommune": "57542", + "libelleAcheminement": "PIBLANGE", + "nomCommune": "PIBLANGE" }, { - "codePostal": "23260", - "codeCommune": "23156", - "libelleAcheminement": "PONTCHARRAUD", - "nomCommune": "PONTCHARRAUD" + "codePostal": "46100", + "codeCommune": "46021", + "libelleAcheminement": "BEDUER", + "nomCommune": "BEDUER" }, { - "codePostal": "38970", - "codeCommune": "38132", - "libelleAcheminement": "LES COTES DE CORPS", - "nomCommune": "LES COTES DE CORPS" + "codePostal": "49650", + "codeCommune": "49041", + "libelleAcheminement": "BRAIN SUR ALLONNES", + "nomCommune": "BRAIN SUR ALLONNES" }, { - "codePostal": "51240", - "codeCommune": "51512", - "libelleAcheminement": "ST QUENTIN SUR COOLE", - "nomCommune": "ST QUENTIN SUR COOLE" + "codePostal": "58110", + "codeCommune": "58030", + "libelleAcheminement": "BICHES", + "nomCommune": "BICHES" }, { - "codePostal": "28190", - "codeCommune": "28290", - "libelleAcheminement": "ORROUER", - "nomCommune": "ORROUER" + "codePostal": "01110", + "codeCommune": "01060", + "libelleAcheminement": "BRENOD", + "nomCommune": "BRENOD" }, { - "codePostal": "23460", - "codeCommune": "23165", - "libelleAcheminement": "ROYERE DE VASSIVIERE", - "nomCommune": "ROYERE DE VASSIVIERE" + "codePostal": "57120", + "codeCommune": "57543", + "libelleAcheminement": "PIERREVILLERS", + "nomCommune": "PIERREVILLERS" }, { - "codePostal": "38510", - "codeCommune": "38135", - "libelleAcheminement": "COURTENAY", - "nomCommune": "COURTENAY" + "codePostal": "46330", + "codeCommune": "46031", + "libelleAcheminement": "BLARS", + "nomCommune": "BLARS" }, { - "codePostal": "52100", - "codeCommune": "51522", - "libelleAcheminement": "SAPIGNICOURT", - "nomCommune": "SAPIGNICOURT" + "codePostal": "49250", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "28700", - "codeCommune": "28294", - "libelleAcheminement": "OYSONVILLE", - "nomCommune": "OYSONVILLE" + "codePostal": "58270", + "codeCommune": "58031", + "libelleAcheminement": "BILLY CHEVANNES", + "nomCommune": "BILLY CHEVANNES" }, { - "codePostal": "23800", - "codeCommune": "23166", - "libelleAcheminement": "SAGNAT", - "nomCommune": "SAGNAT" + "codePostal": "01240", + "codeCommune": "01069", + "libelleAcheminement": "CERTINES", + "nomCommune": "CERTINES" }, { - "codePostal": "38210", - "codeCommune": "38137", - "libelleAcheminement": "CRAS", - "nomCommune": "CRAS" + "codePostal": "57140", + "codeCommune": "57546", + "libelleAcheminement": "PLESNOIS", + "nomCommune": "PLESNOIS" }, { - "codePostal": "51170", - "codeCommune": "51523", - "libelleAcheminement": "SARCY", - "nomCommune": "SARCY" + "codePostal": "46800", + "codeCommune": "46033", + "libelleAcheminement": "PORTE DU QUERCY", + "nomCommune": "PORTE DU QUERCY" }, { - "codePostal": "28140", - "codeCommune": "28296", - "libelleAcheminement": "PERONVILLE", - "nomCommune": "PERONVILLE" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "23250", - "codeCommune": "23173", - "libelleAcheminement": "SOUBREBOST", - "nomCommune": "SOUBREBOST" + "codePostal": "58120", + "codeCommune": "58034", + "libelleAcheminement": "BLISMES", + "nomCommune": "BLISMES" }, { - "codePostal": "38460", - "codeCommune": "38138", - "libelleAcheminement": "CREMIEU", - "nomCommune": "CREMIEU" + "codePostal": "01480", + "codeCommune": "01075", + "libelleAcheminement": "CHALEINS", + "nomCommune": "CHALEINS" }, { - "codePostal": "51170", - "codeCommune": "51534", - "libelleAcheminement": "SERZY ET PRIN", - "nomCommune": "SERZY ET PRIN" + "codePostal": "57570", + "codeCommune": "57557", + "libelleAcheminement": "PUTTELANGE LES THIONVILLE", + "nomCommune": "PUTTELANGE LES THIONVILLE" }, { - "codePostal": "28190", - "codeCommune": "28302", - "libelleAcheminement": "PONTGOUIN", - "nomCommune": "PONTGOUIN" + "codePostal": "46120", + "codeCommune": "46034", + "libelleAcheminement": "LE BOURG", + "nomCommune": "LE BOURG" }, { - "codePostal": "23260", - "codeCommune": "23178", - "libelleAcheminement": "ST AGNANT PRES CROCQ", - "nomCommune": "ST AGNANT PRES CROCQ" + "codePostal": "49440", + "codeCommune": "49054", + "libelleAcheminement": "CANDE", + "nomCommune": "CANDE" }, { - "codePostal": "38510", - "codeCommune": "38139", - "libelleAcheminement": "CREYS MEPIEU", - "nomCommune": "CREYS MEPIEU" + "codePostal": "58530", + "codeCommune": "58039", + "libelleAcheminement": "BREVES", + "nomCommune": "BREVES" }, { - "codePostal": "51500", - "codeCommune": "51536", - "libelleAcheminement": "SILLERY", - "nomCommune": "SILLERY" + "codePostal": "01420", + "codeCommune": "01082", + "libelleAcheminement": "CHANAY", + "nomCommune": "CHANAY" }, { - "codePostal": "28800", - "codeCommune": "28305", - "libelleAcheminement": "PRE ST EVROULT", - "nomCommune": "PRE ST EVROULT" + "codePostal": "57340", + "codeCommune": "57560", + "libelleAcheminement": "RACRANGE", + "nomCommune": "RACRANGE" }, { - "codePostal": "23200", - "codeCommune": "23179", - "libelleAcheminement": "ST ALPINIEN", - "nomCommune": "ST ALPINIEN" + "codePostal": "46130", + "codeCommune": "46038", + "libelleAcheminement": "BRETENOUX", + "nomCommune": "BRETENOUX" }, { - "codePostal": "38920", - "codeCommune": "38140", - "libelleAcheminement": "CROLLES", - "nomCommune": "CROLLES" + "codePostal": "49360", + "codeCommune": "49058", + "libelleAcheminement": "LES CERQUEUX", + "nomCommune": "LES CERQUEUX" }, { - "codePostal": "51800", - "codeCommune": "51537", - "libelleAcheminement": "SIVRY ANTE", - "nomCommune": "SIVRY ANTE" + "codePostal": "58000", + "codeCommune": "58051", + "libelleAcheminement": "CHALLUY", + "nomCommune": "CHALLUY" }, { - "codePostal": "28200", - "codeCommune": "28330", - "libelleAcheminement": "VILLEMAURY", - "nomCommune": "VILLEMAURY" + "codePostal": "01240", + "codeCommune": "01085", + "libelleAcheminement": "LA CHAPELLE DU CHATELARD", + "nomCommune": "LA CHAPELLE DU CHATELARD" }, { - "codePostal": "23130", - "codeCommune": "23187", - "libelleAcheminement": "ST DIZIER LA TOUR", - "nomCommune": "ST DIZIER LA TOUR" + "codePostal": "57390", + "codeCommune": "57565", + "libelleAcheminement": "REDANGE", + "nomCommune": "REDANGE" }, { - "codePostal": "38130", - "codeCommune": "38151", - "libelleAcheminement": "ECHIROLLES", - "nomCommune": "ECHIROLLES" + "codePostal": "46000", + "codeCommune": "46042", + "libelleAcheminement": "CAHORS", + "nomCommune": "CAHORS" }, { - "codePostal": "51800", - "codeCommune": "51543", - "libelleAcheminement": "SOMME BIONNE", - "nomCommune": "SOMME BIONNE" + "codePostal": "49260", + "codeCommune": "49060", + "libelleAcheminement": "BELLEVIGNE LES CHATEAUX", + "nomCommune": "BELLEVIGNE LES CHATEAUX" }, { - "codePostal": "28200", - "codeCommune": "28330", - "libelleAcheminement": "VILLEMAURY", - "nomCommune": "VILLEMAURY" + "codePostal": "58700", + "codeCommune": "58054", + "libelleAcheminement": "CHAMPLIN", + "nomCommune": "CHAMPLIN" }, { - "codePostal": "23290", - "codeCommune": "23192", - "libelleAcheminement": "FURSAC", - "nomCommune": "FURSAC" + "codePostal": "01130", + "codeCommune": "01087", + "libelleAcheminement": "CHARIX", + "nomCommune": "CHARIX" }, { - "codePostal": "38780", - "codeCommune": "38157", - "libelleAcheminement": "ESTRABLIN", - "nomCommune": "ESTRABLIN" + "codePostal": "57510", + "codeCommune": "57571", + "libelleAcheminement": "REMERING LES PUTTELANGE", + "nomCommune": "REMERING LES PUTTELANGE" }, { - "codePostal": "51600", - "codeCommune": "51544", - "libelleAcheminement": "SOMMEPY TAHURE", - "nomCommune": "SOMMEPY TAHURE" + "codePostal": "46150", + "codeCommune": "46046", + "libelleAcheminement": "CALAMANE", + "nomCommune": "CALAMANE" }, { - "codePostal": "28200", - "codeCommune": "28330", - "libelleAcheminement": "VILLEMAURY", - "nomCommune": "VILLEMAURY" + "codePostal": "49270", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "23000", - "codeCommune": "23193", - "libelleAcheminement": "STE FEYRE", - "nomCommune": "STE FEYRE" + "codePostal": "58300", + "codeCommune": "58055", + "libelleAcheminement": "CHAMPVERT", + "nomCommune": "CHAMPVERT" }, { - "codePostal": "38690", - "codeCommune": "38159", - "libelleAcheminement": "EYDOCHE", - "nomCommune": "EYDOCHE" + "codePostal": "01320", + "codeCommune": "01090", + "libelleAcheminement": "CHATENAY", + "nomCommune": "CHATENAY" }, { - "codePostal": "51320", - "codeCommune": "51545", - "libelleAcheminement": "SOMMESOUS", - "nomCommune": "SOMMESOUS" + "codePostal": "57810", + "codeCommune": "57579", + "libelleAcheminement": "RHODES", + "nomCommune": "RHODES" }, { - "codePostal": "28480", - "codeCommune": "28331", - "libelleAcheminement": "SAINTIGNY", - "nomCommune": "SAINTIGNY" + "codePostal": "46140", + "codeCommune": "46050", + "libelleAcheminement": "CAMBAYRAC", + "nomCommune": "CAMBAYRAC" }, { - "codePostal": "23500", - "codeCommune": "23194", - "libelleAcheminement": "STE FEYRE LA MONTAGNE", - "nomCommune": "STE FEYRE LA MONTAGNE" + "codePostal": "49270", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "38580", - "codeCommune": "38163", - "libelleAcheminement": "LE HAUT BREDA", - "nomCommune": "LE HAUT BREDA" + "codePostal": "58800", + "codeCommune": "58069", + "libelleAcheminement": "CHAUMOT", + "nomCommune": "CHAUMOT" }, { - "codePostal": "51600", - "codeCommune": "51547", - "libelleAcheminement": "SOMME TOURBE", - "nomCommune": "SOMME TOURBE" + "codePostal": "01430", + "codeCommune": "01112", + "libelleAcheminement": "CONDAMINE", + "nomCommune": "CONDAMINE" }, { - "codePostal": "28480", - "codeCommune": "28331", - "libelleAcheminement": "SAINTIGNY", - "nomCommune": "SAINTIGNY" + "codePostal": "57340", + "codeCommune": "57580", + "libelleAcheminement": "RICHE", + "nomCommune": "RICHE" }, { - "codePostal": "23500", - "codeCommune": "23196", - "libelleAcheminement": "ST FRION", - "nomCommune": "ST FRION" + "codePostal": "46100", + "codeCommune": "46051", + "libelleAcheminement": "CAMBES", + "nomCommune": "CAMBES" }, { - "codePostal": "38600", - "codeCommune": "38169", - "libelleAcheminement": "FONTAINE", - "nomCommune": "FONTAINE" + "codePostal": "49530", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "51460", - "codeCommune": "51548", - "libelleAcheminement": "SOMME VESLE", - "nomCommune": "SOMME VESLE" + "codePostal": "58350", + "codeCommune": "58081", + "libelleAcheminement": "COLMERY", + "nomCommune": "COLMERY" }, { - "codePostal": "28200", - "codeCommune": "28334", - "libelleAcheminement": "ST DENIS LANNERAY", - "nomCommune": "ST DENIS LANNERAY" + "codePostal": "01400", + "codeCommune": "01113", + "libelleAcheminement": "CONDEISSIAT", + "nomCommune": "CONDEISSIAT" }, { - "codePostal": "23150", - "codeCommune": "23201", - "libelleAcheminement": "ST HILAIRE LA PLAINE", - "nomCommune": "ST HILAIRE LA PLAINE" + "codePostal": "57720", + "codeCommune": "57584", + "libelleAcheminement": "RIMLING", + "nomCommune": "RIMLING" }, { - "codePostal": "38290", - "codeCommune": "38176", - "libelleAcheminement": "FRONTONAS", - "nomCommune": "FRONTONAS" + "codePostal": "46100", + "codeCommune": "46053", + "libelleAcheminement": "CAMBURAT", + "nomCommune": "CAMBURAT" }, { - "codePostal": "51300", - "codeCommune": "51557", - "libelleAcheminement": "SOULANGES", - "nomCommune": "SOULANGES" + "codePostal": "49530", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "28120", - "codeCommune": "28336", - "libelleAcheminement": "ST EMAN", - "nomCommune": "ST EMAN" + "codePostal": "58800", + "codeCommune": "58083", + "libelleAcheminement": "CORBIGNY", + "nomCommune": "CORBIGNY" }, { - "codePostal": "23250", - "codeCommune": "23202", - "libelleAcheminement": "ST HILAIRE LE CHATEAU", - "nomCommune": "ST HILAIRE LE CHATEAU" + "codePostal": "01300", + "codeCommune": "01116", + "libelleAcheminement": "CONTREVOZ", + "nomCommune": "CONTREVOZ" }, { - "codePostal": "38260", - "codeCommune": "38180", - "libelleAcheminement": "GILLONNAY", - "nomCommune": "GILLONNAY" + "codePostal": "57120", + "codeCommune": "57591", + "libelleAcheminement": "ROMBAS", + "nomCommune": "ROMBAS" }, { - "codePostal": "51510", - "codeCommune": "51566", - "libelleAcheminement": "THIBIE", - "nomCommune": "THIBIE" + "codePostal": "46100", + "codeCommune": "46055", + "libelleAcheminement": "CAPDENAC", + "nomCommune": "CAPDENAC" }, { - "codePostal": "28190", - "codeCommune": "28337", - "libelleAcheminement": "ST GEORGES SUR EURE", - "nomCommune": "ST GEORGES SUR EURE" + "codePostal": "49140", + "codeCommune": "49076", + "libelleAcheminement": "LA CHAPELLE ST LAUD", + "nomCommune": "LA CHAPELLE ST LAUD" }, { - "codePostal": "23000", - "codeCommune": "23208", - "libelleAcheminement": "ST LEGER LE GUERETOIS", - "nomCommune": "ST LEGER LE GUERETOIS" + "codePostal": "58300", + "codeCommune": "58087", + "libelleAcheminement": "COSSAYE", + "nomCommune": "COSSAYE" }, { - "codePostal": "38450", - "codeCommune": "38187", - "libelleAcheminement": "LE GUA", - "nomCommune": "LE GUA" + "codePostal": "01300", + "codeCommune": "01117", + "libelleAcheminement": "CONZIEU", + "nomCommune": "CONZIEU" }, { - "codePostal": "51210", - "codeCommune": "51570", - "libelleAcheminement": "LE THOULT TROSNAY", - "nomCommune": "LE THOULT TROSNAY" + "codePostal": "57780", + "codeCommune": "57597", + "libelleAcheminement": "ROSSELANGE", + "nomCommune": "ROSSELANGE" }, { - "codePostal": "28300", - "codeCommune": "28358", - "libelleAcheminement": "ST PREST", - "nomCommune": "ST PREST" + "codePostal": "46170", + "codeCommune": "46063", + "libelleAcheminement": "CASTELNAU MONTRATIER STE ALAUZIE", + "nomCommune": "CASTELNAU MONTRATIER STE ALAUZIE" }, { - "codePostal": "23130", - "codeCommune": "23209", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "49330", + "codeCommune": "49080", + "libelleAcheminement": "LES HAUTS D ANJOU", + "nomCommune": "LES HAUTS D ANJOU" }, { - "codePostal": "38570", - "codeCommune": "38192", - "libelleAcheminement": "HURTIERES", - "nomCommune": "HURTIERES" + "codePostal": "58190", + "codeCommune": "58098", + "libelleAcheminement": "DIROL", + "nomCommune": "DIROL" }, { - "codePostal": "51460", - "codeCommune": "51572", - "libelleAcheminement": "TILLOY ET BELLAY", - "nomCommune": "TILLOY ET BELLAY" + "codePostal": "01340", + "codeCommune": "01130", + "libelleAcheminement": "BRESSE VALLONS", + "nomCommune": "BRESSE VALLONS" }, { - "codePostal": "28800", - "codeCommune": "28364", - "libelleAcheminement": "SANCHEVILLE", - "nomCommune": "SANCHEVILLE" + "codePostal": "57220", + "codeCommune": "57599", + "libelleAcheminement": "ROUPELDANGE", + "nomCommune": "ROUPELDANGE" }, { - "codePostal": "23600", - "codeCommune": "23213", - "libelleAcheminement": "ST MARIEN", - "nomCommune": "ST MARIEN" + "codePostal": "46250", + "codeCommune": "46066", + "libelleAcheminement": "CAZALS", + "nomCommune": "CAZALS" }, { - "codePostal": "38710", - "codeCommune": "38208", - "libelleAcheminement": "LAVARS", - "nomCommune": "LAVARS" + "codePostal": "49330", + "codeCommune": "49080", + "libelleAcheminement": "LES HAUTS D ANJOU", + "nomCommune": "LES HAUTS D ANJOU" }, { - "codePostal": "51430", - "codeCommune": "51573", - "libelleAcheminement": "TINQUEUX", - "nomCommune": "TINQUEUX" + "codePostal": "58120", + "codeCommune": "58099", + "libelleAcheminement": "DOMMARTIN", + "nomCommune": "DOMMARTIN" }, { - "codePostal": "28250", - "codeCommune": "28368", - "libelleAcheminement": "LA SAUCELLE", - "nomCommune": "LA SAUCELLE" + "codePostal": "01560", + "codeCommune": "01139", + "libelleAcheminement": "CURCIAT DONGALON", + "nomCommune": "CURCIAT DONGALON" }, { - "codePostal": "23300", - "codeCommune": "23219", - "libelleAcheminement": "ST MAURICE LA SOUTERRAINE", - "nomCommune": "ST MAURICE LA SOUTERRAINE" + "codePostal": "57160", + "codeCommune": "57601", + "libelleAcheminement": "ROZERIEULLES", + "nomCommune": "ROZERIEULLES" }, { - "codePostal": "38440", - "codeCommune": "38211", - "libelleAcheminement": "LIEUDIEU", - "nomCommune": "LIEUDIEU" + "codePostal": "46330", + "codeCommune": "46068", + "libelleAcheminement": "CENEVIERES", + "nomCommune": "CENEVIERES" }, { - "codePostal": "51140", - "codeCommune": "51581", - "libelleAcheminement": "TRESLON", - "nomCommune": "TRESLON" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "28800", - "codeCommune": "28370", - "libelleAcheminement": "SAUMERAY", - "nomCommune": "SAUMERAY" + "codePostal": "58140", + "codeCommune": "58108", + "libelleAcheminement": "EMPURY", + "nomCommune": "EMPURY" }, { - "codePostal": "23300", - "codeCommune": "23219", - "libelleAcheminement": "ST MAURICE LA SOUTERRAINE", - "nomCommune": "ST MAURICE LA SOUTERRAINE" + "codePostal": "01240", + "codeCommune": "01145", + "libelleAcheminement": "DOMPIERRE SUR VEYLE", + "nomCommune": "DOMPIERRE SUR VEYLE" }, { - "codePostal": "38200", - "codeCommune": "38215", - "libelleAcheminement": "LUZINAY", - "nomCommune": "LUZINAY" + "codePostal": "57480", + "codeCommune": "57604", + "libelleAcheminement": "RUSTROFF", + "nomCommune": "RUSTROFF" }, { - "codePostal": "51500", - "codeCommune": "51584", - "libelleAcheminement": "TROIS PUITS", - "nomCommune": "TROIS PUITS" + "codePostal": "46110", + "codeCommune": "46074", + "libelleAcheminement": "CONDAT", + "nomCommune": "CONDAT" }, { - "codePostal": "28250", - "codeCommune": "28373", - "libelleAcheminement": "SENONCHES", - "nomCommune": "SENONCHES" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "23200", - "codeCommune": "23220", - "libelleAcheminement": "ST MEDARD LA ROCHETTE", - "nomCommune": "ST MEDARD LA ROCHETTE" + "codePostal": "58800", + "codeCommune": "58110", + "libelleAcheminement": "EPIRY", + "nomCommune": "EPIRY" }, { - "codePostal": "38620", - "codeCommune": "38222", - "libelleAcheminement": "MASSIEU", - "nomCommune": "MASSIEU" + "codePostal": "01400", + "codeCommune": "01146", + "libelleAcheminement": "DOMPIERRE SUR CHALARONNE", + "nomCommune": "DOMPIERRE SUR CHALARONNE" }, { - "codePostal": "51140", - "codeCommune": "51591", - "libelleAcheminement": "VANDEUIL", - "nomCommune": "VANDEUIL" + "codePostal": "57640", + "codeCommune": "57607", + "libelleAcheminement": "STE BARBE", + "nomCommune": "STE BARBE" }, { - "codePostal": "28250", - "codeCommune": "28373", - "libelleAcheminement": "SENONCHES", - "nomCommune": "SENONCHES" + "codePostal": "46100", + "codeCommune": "46075", + "libelleAcheminement": "CORN", + "nomCommune": "CORN" }, { - "codePostal": "23200", - "codeCommune": "23220", - "libelleAcheminement": "ST MEDARD LA ROCHETTE", - "nomCommune": "ST MEDARD LA ROCHETTE" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "38430", - "codeCommune": "38239", - "libelleAcheminement": "MOIRANS", - "nomCommune": "MOIRANS" + "codePostal": "58600", + "codeCommune": "58121", + "libelleAcheminement": "GARCHIZY", + "nomCommune": "GARCHIZY" }, { - "codePostal": "51700", - "codeCommune": "51592", - "libelleAcheminement": "VANDIERES", - "nomCommune": "VANDIERES" + "codePostal": "01100", + "codeCommune": "01171", + "libelleAcheminement": "GEOVREISSET", + "nomCommune": "GEOVREISSET" }, { - "codePostal": "28170", - "codeCommune": "28374", - "libelleAcheminement": "SERAZEREUX", - "nomCommune": "SERAZEREUX" + "codePostal": "57855", + "codeCommune": "57622", + "libelleAcheminement": "ST PRIVAT LA MONTAGNE", + "nomCommune": "ST PRIVAT LA MONTAGNE" }, { - "codePostal": "23400", - "codeCommune": "23223", - "libelleAcheminement": "ST MOREIL", - "nomCommune": "ST MOREIL" + "codePostal": "46150", + "codeCommune": "46080", + "libelleAcheminement": "CRAYSSAC", + "nomCommune": "CRAYSSAC" }, { - "codePostal": "38970", - "codeCommune": "38241", - "libelleAcheminement": "MONESTIER D AMBEL", - "nomCommune": "MONESTIER D AMBEL" + "codePostal": "49310", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "51210", - "codeCommune": "51596", - "libelleAcheminement": "VAUCHAMPS", - "nomCommune": "VAUCHAMPS" + "codePostal": "58300", + "codeCommune": "58137", + "libelleAcheminement": "LAMENAY SUR LOIRE", + "nomCommune": "LAMENAY SUR LOIRE" }, { - "codePostal": "28130", - "codeCommune": "28379", - "libelleAcheminement": "SOULAIRES", - "nomCommune": "SOULAIRES" + "codePostal": "01260", + "codeCommune": "01187", + "libelleAcheminement": "HAUT VALROMEY", + "nomCommune": "HAUT VALROMEY" }, { - "codePostal": "23400", - "codeCommune": "23227", - "libelleAcheminement": "ST PARDOUX MORTEROLLES", - "nomCommune": "ST PARDOUX MORTEROLLES" + "codePostal": "57412", + "codeCommune": "57636", + "libelleAcheminement": "SCHMITTVILLER", + "nomCommune": "SCHMITTVILLER" }, { - "codePostal": "38930", - "codeCommune": "38243", - "libelleAcheminement": "LE MONESTIER DU PERCY", - "nomCommune": "LE MONESTIER DU PERCY" + "codePostal": "46600", + "codeCommune": "46083", + "libelleAcheminement": "CRESSENSAC SARRAZAC", + "nomCommune": "CRESSENSAC SARRAZAC" }, { - "codePostal": "51700", - "codeCommune": "51609", - "libelleAcheminement": "VERNEUIL", - "nomCommune": "VERNEUIL" + "codePostal": "49190", + "codeCommune": "49120", + "libelleAcheminement": "DENEE", + "nomCommune": "DENEE" }, { - "codePostal": "28630", - "codeCommune": "28388", - "libelleAcheminement": "THIVARS", - "nomCommune": "THIVARS" + "codePostal": "58140", + "codeCommune": "58145", + "libelleAcheminement": "LORMES", + "nomCommune": "LORMES" }, { - "codePostal": "23200", - "codeCommune": "23228", - "libelleAcheminement": "ST PARDOUX LE NEUF", - "nomCommune": "ST PARDOUX LE NEUF" + "codePostal": "01430", + "codeCommune": "01191", + "libelleAcheminement": "IZENAVE", + "nomCommune": "IZENAVE" }, { - "codePostal": "38390", - "codeCommune": "38247", - "libelleAcheminement": "MONTALIEU VERCIEU", - "nomCommune": "MONTALIEU VERCIEU" + "codePostal": "57230", + "codeCommune": "57639", + "libelleAcheminement": "SCHORBACH", + "nomCommune": "SCHORBACH" }, { - "codePostal": "51130", - "codeCommune": "51611", - "libelleAcheminement": "VERT TOULON", - "nomCommune": "VERT TOULON" + "codePostal": "46600", + "codeCommune": "46086", + "libelleAcheminement": "CUZANCE", + "nomCommune": "CUZANCE" }, { - "codePostal": "28310", - "codeCommune": "28392", - "libelleAcheminement": "TRANCRAINVILLE", - "nomCommune": "TRANCRAINVILLE" + "codePostal": "49700", + "codeCommune": "49121", + "libelleAcheminement": "DENEZE SOUS DOUE", + "nomCommune": "DENEZE SOUS DOUE" }, { - "codePostal": "23300", - "codeCommune": "23235", - "libelleAcheminement": "ST PRIEST LA FEUILLE", - "nomCommune": "ST PRIEST LA FEUILLE" + "codePostal": "58380", + "codeCommune": "58146", + "libelleAcheminement": "LUCENAY LES AIX", + "nomCommune": "LUCENAY LES AIX" }, { - "codePostal": "38860", - "codeCommune": "38253", - "libelleAcheminement": "LES DEUX ALPES", - "nomCommune": "LES DEUX ALPES" + "codePostal": "01580", + "codeCommune": "01192", + "libelleAcheminement": "IZERNORE", + "nomCommune": "IZERNORE" }, { - "codePostal": "51380", - "codeCommune": "51614", - "libelleAcheminement": "VERZY", - "nomCommune": "VERZY" + "codePostal": "57320", + "codeCommune": "57640", + "libelleAcheminement": "SCHWERDORFF", + "nomCommune": "SCHWERDORFF" }, { - "codePostal": "28170", - "codeCommune": "28393", - "libelleAcheminement": "TREMBLAY LES VILLAGES", - "nomCommune": "TREMBLAY LES VILLAGES" + "codePostal": "46270", + "codeCommune": "46101", + "libelleAcheminement": "FELZINS", + "nomCommune": "FELZINS" }, { - "codePostal": "23160", - "codeCommune": "23239", - "libelleAcheminement": "ST SEBASTIEN", - "nomCommune": "ST SEBASTIEN" + "codePostal": "49400", + "codeCommune": "49123", + "libelleAcheminement": "DISTRE", + "nomCommune": "DISTRE" }, { - "codePostal": "38860", - "codeCommune": "38253", - "libelleAcheminement": "LES DEUX ALPES", - "nomCommune": "LES DEUX ALPES" + "codePostal": "58260", + "codeCommune": "58151", + "libelleAcheminement": "LA MACHINE", + "nomCommune": "LA MACHINE" }, { - "codePostal": "51520", - "codeCommune": "51617", - "libelleAcheminement": "LA VEUVE", - "nomCommune": "LA VEUVE" + "codePostal": "01300", + "codeCommune": "01193", + "libelleAcheminement": "IZIEU", + "nomCommune": "IZIEU" }, { - "codePostal": "28140", - "codeCommune": "28400", - "libelleAcheminement": "VARIZE", - "nomCommune": "VARIZE" + "codePostal": "57455", + "codeCommune": "57644", + "libelleAcheminement": "SEINGBOUSE", + "nomCommune": "SEINGBOUSE" }, { - "codePostal": "23150", - "codeCommune": "23250", - "libelleAcheminement": "ST YRIEIX LES BOIS", - "nomCommune": "ST YRIEIX LES BOIS" + "codePostal": "46100", + "codeCommune": "46102", + "libelleAcheminement": "FIGEAC", + "nomCommune": "FIGEAC" }, { - "codePostal": "38210", - "codeCommune": "38263", - "libelleAcheminement": "MORETTE", - "nomCommune": "MORETTE" + "codePostal": "49000", + "codeCommune": "49129", + "libelleAcheminement": "ECOUFLANT", + "nomCommune": "ECOUFLANT" }, { - "codePostal": "51500", - "codeCommune": "51629", - "libelleAcheminement": "VILLERS ALLERAND", - "nomCommune": "VILLERS ALLERAND" + "codePostal": "58400", + "codeCommune": "58164", + "libelleAcheminement": "MESVES SUR LOIRE", + "nomCommune": "MESVES SUR LOIRE" }, { - "codePostal": "28630", - "codeCommune": "28403", - "libelleAcheminement": "VER LES CHARTRES", - "nomCommune": "VER LES CHARTRES" + "codePostal": "01480", + "codeCommune": "01194", + "libelleAcheminement": "JASSANS RIOTTIER", + "nomCommune": "JASSANS RIOTTIER" }, { - "codePostal": "23350", - "codeCommune": "23252", - "libelleAcheminement": "TERCILLAT", - "nomCommune": "TERCILLAT" + "codePostal": "57280", + "codeCommune": "57645", + "libelleAcheminement": "SEMECOURT", + "nomCommune": "SEMECOURT" }, { - "codePostal": "38580", - "codeCommune": "38268", - "libelleAcheminement": "LE MOUTARET", - "nomCommune": "LE MOUTARET" + "codePostal": "46170", + "codeCommune": "46103", + "libelleAcheminement": "ST PAUL FLAUGNAC", + "nomCommune": "ST PAUL FLAUGNAC" }, { - "codePostal": "51510", - "codeCommune": "51634", - "libelleAcheminement": "VILLERS LE CHATEAU", - "nomCommune": "VILLERS LE CHATEAU" + "codePostal": "49330", + "codeCommune": "49132", + "libelleAcheminement": "ETRICHE", + "nomCommune": "ETRICHE" }, { - "codePostal": "28150", - "codeCommune": "28406", - "libelleAcheminement": "EOLE EN BEAUCE", - "nomCommune": "EOLE EN BEAUCE" + "codePostal": "58190", + "codeCommune": "58165", + "libelleAcheminement": "METZ LE COMTE", + "nomCommune": "METZ LE COMTE" }, { - "codePostal": "23600", - "codeCommune": "23254", - "libelleAcheminement": "TOULX STE CROIX", - "nomCommune": "TOULX STE CROIX" + "codePostal": "01290", + "codeCommune": "01203", + "libelleAcheminement": "LAIZ", + "nomCommune": "LAIZ" }, { - "codePostal": "38420", - "codeCommune": "38271", - "libelleAcheminement": "MURIANETTE", - "nomCommune": "MURIANETTE" + "codePostal": "57640", + "codeCommune": "57649", + "libelleAcheminement": "SERVIGNY LES STE BARBE", + "nomCommune": "SERVIGNY LES STE BARBE" }, { - "codePostal": "51380", - "codeCommune": "51636", - "libelleAcheminement": "VILLERS MARMERY", - "nomCommune": "VILLERS MARMERY" + "codePostal": "46100", + "codeCommune": "46108", + "libelleAcheminement": "FONS", + "nomCommune": "FONS" }, { - "codePostal": "28150", - "codeCommune": "28406", - "libelleAcheminement": "EOLE EN BEAUCE", - "nomCommune": "EOLE EN BEAUCE" + "codePostal": "49140", + "codeCommune": "49163", + "libelleAcheminement": "JARZE VILLAGES", + "nomCommune": "JARZE VILLAGES" }, { - "codePostal": "23250", - "codeCommune": "23260", - "libelleAcheminement": "VIDAILLAT", - "nomCommune": "VIDAILLAT" + "codePostal": "58140", + "codeCommune": "58166", + "libelleAcheminement": "MHERE", + "nomCommune": "MHERE" }, { - "codePostal": "38470", - "codeCommune": "38278", - "libelleAcheminement": "NOTRE DAME DE L OSIER", - "nomCommune": "NOTRE DAME DE L OSIER" + "codePostal": "01130", + "codeCommune": "01204", + "libelleAcheminement": "LE POIZAT LALLEYRIAT", + "nomCommune": "LE POIZAT LALLEYRIAT" }, { - "codePostal": "51700", - "codeCommune": "51637", - "libelleAcheminement": "VILLERS SOUS CHATILLON", - "nomCommune": "VILLERS SOUS CHATILLON" + "codePostal": "57580", + "codeCommune": "57656", + "libelleAcheminement": "SORBEY", + "nomCommune": "SORBEY" }, { - "codePostal": "28190", - "codeCommune": "28414", - "libelleAcheminement": "VILLEBON", - "nomCommune": "VILLEBON" + "codePostal": "46090", + "codeCommune": "46112", + "libelleAcheminement": "FRANCOULES", + "nomCommune": "FRANCOULES" }, { - "codePostal": "23340", - "codeCommune": "23264", - "libelleAcheminement": "LA VILLEDIEU", - "nomCommune": "LA VILLEDIEU" + "codePostal": "49610", + "codeCommune": "49167", + "libelleAcheminement": "LES GARENNES SUR LOIRE", + "nomCommune": "LES GARENNES SUR LOIRE" }, { - "codePostal": "38360", - "codeCommune": "38281", - "libelleAcheminement": "NOYAREY", - "nomCommune": "NOYAREY" + "codePostal": "58190", + "codeCommune": "58169", + "libelleAcheminement": "MOISSY MOULINOT", + "nomCommune": "MOISSY MOULINOT" }, { - "codePostal": "51530", - "codeCommune": "51643", - "libelleAcheminement": "VINAY", - "nomCommune": "VINAY" + "codePostal": "01680", + "codeCommune": "01216", + "libelleAcheminement": "LHUIS", + "nomCommune": "LHUIS" }, { - "codePostal": "28210", - "codeCommune": "28415", - "libelleAcheminement": "VILLEMEUX SUR EURE", - "nomCommune": "VILLEMEUX SUR EURE" + "codePostal": "57960", + "codeCommune": "57658", + "libelleAcheminement": "SOUCHT", + "nomCommune": "SOUCHT" }, { - "codePostal": "24590", - "codeCommune": "24012", - "libelleAcheminement": "ARCHIGNAC", - "nomCommune": "ARCHIGNAC" + "codePostal": "46300", + "codeCommune": "46121", + "libelleAcheminement": "GINOUILLAC", + "nomCommune": "GINOUILLAC" }, { - "codePostal": "38460", - "codeCommune": "38282", - "libelleAcheminement": "OPTEVOZ", - "nomCommune": "OPTEVOZ" + "codePostal": "49150", + "codeCommune": "49171", + "libelleAcheminement": "LA LANDE CHASLES", + "nomCommune": "LA LANDE CHASLES" }, { - "codePostal": "51700", - "codeCommune": "51644", - "libelleAcheminement": "VINCELLES", - "nomCommune": "VINCELLES" + "codePostal": "58250", + "codeCommune": "58173", + "libelleAcheminement": "MONTARON", + "nomCommune": "MONTARON" }, { - "codePostal": "28150", - "codeCommune": "28422", - "libelleAcheminement": "LES VILLAGES VOVEENS", - "nomCommune": "LES VILLAGES VOVEENS" + "codePostal": "01090", + "codeCommune": "01225", + "libelleAcheminement": "LURCY", + "nomCommune": "LURCY" }, { - "codePostal": "24150", - "codeCommune": "24022", - "libelleAcheminement": "BADEFOLS SUR DORDOGNE", - "nomCommune": "BADEFOLS SUR DORDOGNE" + "codePostal": "57450", + "codeCommune": "57669", + "libelleAcheminement": "THEDING", + "nomCommune": "THEDING" }, { - "codePostal": "38350", - "codeCommune": "38283", - "libelleAcheminement": "ORIS EN RATTIER", - "nomCommune": "ORIS EN RATTIER" + "codePostal": "46130", + "codeCommune": "46123", + "libelleAcheminement": "GIRAC", + "nomCommune": "GIRAC" }, { - "codePostal": "51120", - "codeCommune": "51645", - "libelleAcheminement": "VINDEY", - "nomCommune": "VINDEY" + "codePostal": "49430", + "codeCommune": "49174", + "libelleAcheminement": "HUILLE LEZIGNE", + "nomCommune": "HUILLE LEZIGNE" }, { - "codePostal": "29690", - "codeCommune": "29007", - "libelleAcheminement": "BERRIEN", - "nomCommune": "BERRIEN" + "codePostal": "58130", + "codeCommune": "58176", + "libelleAcheminement": "MONTIGNY AUX AMOGNES", + "nomCommune": "MONTIGNY AUX AMOGNES" }, { - "codePostal": "24150", - "codeCommune": "24023", - "libelleAcheminement": "BANEUIL", - "nomCommune": "BANEUIL" + "codePostal": "01680", + "codeCommune": "01233", + "libelleAcheminement": "MARCHAMP", + "nomCommune": "MARCHAMP" }, { - "codePostal": "38520", - "codeCommune": "38286", - "libelleAcheminement": "OULLES", - "nomCommune": "OULLES" + "codePostal": "57100", + "codeCommune": "57672", + "libelleAcheminement": "THIONVILLE", + "nomCommune": "THIONVILLE" }, { - "codePostal": "51300", - "codeCommune": "51649", - "libelleAcheminement": "VITRY LE FRANCOIS", - "nomCommune": "VITRY LE FRANCOIS" + "codePostal": "46250", + "codeCommune": "46126", + "libelleAcheminement": "GOUJOUNAC", + "nomCommune": "GOUJOUNAC" }, { - "codePostal": "29400", - "codeCommune": "29010", - "libelleAcheminement": "BODILIS", - "nomCommune": "BODILIS" + "codePostal": "49220", + "codeCommune": "49176", + "libelleAcheminement": "LE LION D ANGERS", + "nomCommune": "LE LION D ANGERS" }, { - "codePostal": "24330", - "codeCommune": "24026", - "libelleAcheminement": "BASSILLAC ET AUBEROCHE", - "nomCommune": "BASSILLAC ET AUBEROCHE" + "codePostal": "58230", + "codeCommune": "58180", + "libelleAcheminement": "MONTSAUCHE LES SETTONS", + "nomCommune": "MONTSAUCHE LES SETTONS" }, { - "codePostal": "38114", - "codeCommune": "38289", - "libelleAcheminement": "OZ", - "nomCommune": "OZ" + "codePostal": "01340", + "codeCommune": "01236", + "libelleAcheminement": "MARSONNAS", + "nomCommune": "MARSONNAS" }, { - "codePostal": "51150", - "codeCommune": "51656", - "libelleAcheminement": "VRAUX", - "nomCommune": "VRAUX" + "codePostal": "57380", + "codeCommune": "57686", + "libelleAcheminement": "VAHL LES FAULQUEMONT", + "nomCommune": "VAHL LES FAULQUEMONT" }, { - "codePostal": "29650", - "codeCommune": "29014", - "libelleAcheminement": "BOTSORHEL", - "nomCommune": "BOTSORHEL" + "codePostal": "46500", + "codeCommune": "46128", + "libelleAcheminement": "GRAMAT", + "nomCommune": "GRAMAT" }, { - "codePostal": "24330", - "codeCommune": "24026", - "libelleAcheminement": "BASSILLAC ET AUBEROCHE", - "nomCommune": "BASSILLAC ET AUBEROCHE" + "codePostal": "49220", + "codeCommune": "49176", + "libelleAcheminement": "LE LION D ANGERS", + "nomCommune": "LE LION D ANGERS" }, { - "codePostal": "38460", - "codeCommune": "38294", - "libelleAcheminement": "PANOSSAS", - "nomCommune": "PANOSSAS" + "codePostal": "58700", + "codeCommune": "58184", + "libelleAcheminement": "MOUSSY", + "nomCommune": "MOUSSY" }, { - "codePostal": "51110", - "codeCommune": "51660", - "libelleAcheminement": "WARMERIVILLE", - "nomCommune": "WARMERIVILLE" + "codePostal": "01450", + "codeCommune": "01242", + "libelleAcheminement": "MERIGNAT", + "nomCommune": "MERIGNAT" }, { - "codePostal": "29810", - "codeCommune": "29017", - "libelleAcheminement": "BRELES", - "nomCommune": "BRELES" + "codePostal": "57340", + "codeCommune": "57687", + "libelleAcheminement": "VALLERANGE", + "nomCommune": "VALLERANGE" }, { - "codePostal": "24440", - "codeCommune": "24028", - "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", - "nomCommune": "BEAUMONTOIS EN PERIGORD" + "codePostal": "46160", + "codeCommune": "46129", + "libelleAcheminement": "GREALOU", + "nomCommune": "GREALOU" }, { - "codePostal": "38510", - "codeCommune": "38297", - "libelleAcheminement": "ARANDON PASSINS", - "nomCommune": "ARANDON PASSINS" + "codePostal": "49630", + "codeCommune": "49194", + "libelleAcheminement": "MAZE MILON", + "nomCommune": "MAZE MILON" }, { - "codePostal": "52340", - "codeCommune": "52001", - "libelleAcheminement": "AGEVILLE", - "nomCommune": "AGEVILLE" + "codePostal": "58450", + "codeCommune": "58193", + "libelleAcheminement": "NEUVY SUR LOIRE", + "nomCommune": "NEUVY SUR LOIRE" }, { - "codePostal": "29150", - "codeCommune": "29025", - "libelleAcheminement": "CAST", - "nomCommune": "CAST" + "codePostal": "01250", + "codeCommune": "01254", + "libelleAcheminement": "MONTAGNAT", + "nomCommune": "MONTAGNAT" }, { - "codePostal": "24400", - "codeCommune": "24032", - "libelleAcheminement": "BEAURONNE", - "nomCommune": "BEAURONNE" + "codePostal": "57730", + "codeCommune": "57690", + "libelleAcheminement": "VALMONT", + "nomCommune": "VALMONT" }, { - "codePostal": "38930", - "codeCommune": "38301", - "libelleAcheminement": "LE PERCY", - "nomCommune": "PERCY" + "codePostal": "46500", + "codeCommune": "46132", + "libelleAcheminement": "ISSENDOLUS", + "nomCommune": "ISSENDOLUS" }, { - "codePostal": "52400", - "codeCommune": "52002", - "libelleAcheminement": "AIGREMONT", - "nomCommune": "AIGREMONT" + "codePostal": "49280", + "codeCommune": "49195", + "libelleAcheminement": "MAZIERES EN MAUGES", + "nomCommune": "MAZIERES EN MAUGES" }, { - "codePostal": "29270", - "codeCommune": "29029", - "libelleAcheminement": "CLEDEN POHER", - "nomCommune": "CLEDEN POHER" + "codePostal": "58320", + "codeCommune": "58207", + "libelleAcheminement": "PARIGNY LES VAUX", + "nomCommune": "PARIGNY LES VAUX" }, { - "codePostal": "24540", - "codeCommune": "24043", - "libelleAcheminement": "BIRON", - "nomCommune": "BIRON" + "codePostal": "01120", + "codeCommune": "01262", + "libelleAcheminement": "MONTLUEL", + "nomCommune": "MONTLUEL" }, { - "codePostal": "38570", - "codeCommune": "38303", - "libelleAcheminement": "LA PIERRE", - "nomCommune": "LA PIERRE" + "codePostal": "57070", + "codeCommune": "57694", + "libelleAcheminement": "VANY", + "nomCommune": "VANY" }, { - "codePostal": "52700", - "codeCommune": "52003", - "libelleAcheminement": "AILLIANVILLE", - "nomCommune": "AILLIANVILLE" + "codePostal": "46320", + "codeCommune": "46133", + "libelleAcheminement": "ISSEPTS", + "nomCommune": "ISSEPTS" }, { - "codePostal": "29233", - "codeCommune": "29030", - "libelleAcheminement": "CLEDER", - "nomCommune": "CLEDER" + "codePostal": "49770", + "codeCommune": "49200", + "libelleAcheminement": "LONGUENEE EN ANJOU", + "nomCommune": "LONGUENEE EN ANJOU" }, { - "codePostal": "24750", - "codeCommune": "24053", - "libelleAcheminement": "BOULAZAC ISLE MANOIRE", - "nomCommune": "BOULAZAC ISLE MANOIRE" + "codePostal": "58220", + "codeCommune": "58209", + "libelleAcheminement": "PERROY", + "nomCommune": "PERROY" }, { - "codePostal": "38680", - "codeCommune": "38319", - "libelleAcheminement": "PONT EN ROYANS", - "nomCommune": "PONT EN ROYANS" + "codePostal": "01340", + "codeCommune": "01266", + "libelleAcheminement": "MONTREVEL EN BRESSE", + "nomCommune": "MONTREVEL EN BRESSE" }, { - "codePostal": "52500", - "codeCommune": "52013", - "libelleAcheminement": "ANROSEY", - "nomCommune": "ANROSEY" + "codePostal": "57220", + "codeCommune": "57695", + "libelleAcheminement": "VARIZE VAUDONCOURT", + "nomCommune": "VARIZE VAUDONCOURT" }, { - "codePostal": "29870", - "codeCommune": "29035", - "libelleAcheminement": "COAT MEAL", - "nomCommune": "COAT MEAL" + "codePostal": "46230", + "codeCommune": "46140", + "libelleAcheminement": "LABURGADE", + "nomCommune": "LABURGADE" }, { - "codePostal": "24400", - "codeCommune": "24059", - "libelleAcheminement": "BOURGNAC", - "nomCommune": "BOURGNAC" + "codePostal": "49430", + "codeCommune": "49209", + "libelleAcheminement": "MONTIGNE LES RAIRIES", + "nomCommune": "MONTIGNE LES RAIRIES" }, { - "codePostal": "38270", - "codeCommune": "38324", - "libelleAcheminement": "PRIMARETTE", - "nomCommune": "PRIMARETTE" + "codePostal": "58200", + "codeCommune": "58213", + "libelleAcheminement": "POUGNY", + "nomCommune": "POUGNY" }, { - "codePostal": "52210", - "codeCommune": "52022", - "libelleAcheminement": "AUBEPIERRE SUR AUBE", - "nomCommune": "AUBEPIERRE SUR AUBE" + "codePostal": "01460", + "codeCommune": "01267", + "libelleAcheminement": "NURIEUX VOLOGNAT", + "nomCommune": "NURIEUX VOLOGNAT" }, { - "codePostal": "29530", - "codeCommune": "29036", - "libelleAcheminement": "COLLOREC", - "nomCommune": "COLLOREC" + "codePostal": "57880", + "codeCommune": "57696", + "libelleAcheminement": "VARSBERG", + "nomCommune": "VARSBERG" }, { - "codePostal": "24310", - "codeCommune": "24064", - "libelleAcheminement": "BRANTOME EN PERIGORD", - "nomCommune": "BRANTOME EN PERIGORD" + "codePostal": "46220", + "codeCommune": "46147", + "libelleAcheminement": "LAGARDELLE", + "nomCommune": "LAGARDELLE" }, { - "codePostal": "38120", - "codeCommune": "38325", - "libelleAcheminement": "PROVEYSIEUX", - "nomCommune": "PROVEYSIEUX" + "codePostal": "49310", + "codeCommune": "49211", + "libelleAcheminement": "MONTILLIERS", + "nomCommune": "MONTILLIERS" }, { - "codePostal": "52300", - "codeCommune": "52029", - "libelleAcheminement": "AUTIGNY LE GRAND", - "nomCommune": "AUTIGNY LE GRAND" + "codePostal": "58400", + "codeCommune": "58220", + "libelleAcheminement": "RAVEAU", + "nomCommune": "RAVEAU" }, { - "codePostal": "29160", - "codeCommune": "29042", - "libelleAcheminement": "CROZON", - "nomCommune": "CROZON" + "codePostal": "01460", + "codeCommune": "01269", + "libelleAcheminement": "NANTUA", + "nomCommune": "NANTUA" }, { - "codePostal": "24460", - "codeCommune": "24064", - "libelleAcheminement": "BRANTOME EN PERIGORD", - "nomCommune": "BRANTOME EN PERIGORD" + "codePostal": "57220", + "codeCommune": "57705", + "libelleAcheminement": "VELVING", + "nomCommune": "VELVING" }, { - "codePostal": "38970", - "codeCommune": "38329", - "libelleAcheminement": "QUET EN BEAUMONT", - "nomCommune": "QUET EN BEAUMONT" + "codePostal": "46350", + "codeCommune": "46152", + "libelleAcheminement": "LAMOTHE FENELON", + "nomCommune": "LAMOTHE FENELON" }, { - "codePostal": "52300", - "codeCommune": "52030", - "libelleAcheminement": "AUTIGNY LE PETIT", - "nomCommune": "AUTIGNY LE PETIT" + "codePostal": "49140", + "codeCommune": "49216", + "libelleAcheminement": "MONTREUIL SUR LOIR", + "nomCommune": "MONTREUIL SUR LOIR" }, { - "codePostal": "29460", - "codeCommune": "29043", - "libelleAcheminement": "DAOULAS", - "nomCommune": "DAOULAS" + "codePostal": "58500", + "codeCommune": "58222", + "libelleAcheminement": "RIX", + "nomCommune": "RIX" }, { - "codePostal": "24530", - "codeCommune": "24064", - "libelleAcheminement": "BRANTOME EN PERIGORD", - "nomCommune": "BRANTOME EN PERIGORD" + "codePostal": "01130", + "codeCommune": "01274", + "libelleAcheminement": "LES NEYROLLES", + "nomCommune": "LES NEYROLLES" }, { - "codePostal": "38140", - "codeCommune": "38331", - "libelleAcheminement": "REAUMONT", - "nomCommune": "REAUMONT" + "codePostal": "57370", + "codeCommune": "57709", + "libelleAcheminement": "VESCHEIM", + "nomCommune": "VESCHEIM" }, { - "codePostal": "52330", - "codeCommune": "52031", - "libelleAcheminement": "AUTREVILLE SUR LA RENNE", - "nomCommune": "AUTREVILLE SUR LA RENNE" + "codePostal": "46090", + "codeCommune": "46156", + "libelleAcheminement": "BELLEFONT LA RAUZE", + "nomCommune": "BELLEFONT LA RAUZE" }, { - "codePostal": "29150", - "codeCommune": "29044", - "libelleAcheminement": "DINEAULT", - "nomCommune": "DINEAULT" + "codePostal": "49110", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "24260", - "codeCommune": "24067", - "libelleAcheminement": "LE BUGUE", - "nomCommune": "LE BUGUE" + "codePostal": "58110", + "codeCommune": "58223", + "libelleAcheminement": "ROUY", + "nomCommune": "ROUY" }, { - "codePostal": "38680", - "codeCommune": "38333", - "libelleAcheminement": "RENCUREL", - "nomCommune": "RENCUREL" + "codePostal": "01100", + "codeCommune": "01283", + "libelleAcheminement": "OYONNAX", + "nomCommune": "OYONNAX" }, { - "codePostal": "52140", - "codeCommune": "52033", - "libelleAcheminement": "AVRECOURT", - "nomCommune": "AVRECOURT" + "codePostal": "57690", + "codeCommune": "57714", + "libelleAcheminement": "HAUTE VIGNEULLES", + "nomCommune": "HAUTE VIGNEULLES" }, { - "codePostal": "29170", - "codeCommune": "29058", - "libelleAcheminement": "FOUESNANT", - "nomCommune": "FOUESNANT" + "codePostal": "46160", + "codeCommune": "46157", + "libelleAcheminement": "LARROQUE TOIRAC", + "nomCommune": "LARROQUE TOIRAC" }, { - "codePostal": "24350", - "codeCommune": "24069", - "libelleAcheminement": "BUSSAC", - "nomCommune": "BUSSAC" + "codePostal": "49270", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "38090", - "codeCommune": "38339", - "libelleAcheminement": "ROCHE", - "nomCommune": "ROCHE" + "codePostal": "58470", + "codeCommune": "58225", + "libelleAcheminement": "SAINCAIZE MEAUCE", + "nomCommune": "SAINCAIZE MEAUCE" }, { - "codePostal": "52330", - "codeCommune": "52053", - "libelleAcheminement": "BLAISY", - "nomCommune": "BLAISY" + "codePostal": "01600", + "codeCommune": "01285", + "libelleAcheminement": "PARCIEUX", + "nomCommune": "PARCIEUX" }, { - "codePostal": "29190", - "codeCommune": "29062", - "libelleAcheminement": "GOUEZEC", - "nomCommune": "GOUEZEC" + "codePostal": "57220", + "codeCommune": "57730", + "libelleAcheminement": "VOLMERANGE LES BOULAY", + "nomCommune": "VOLMERANGE LES BOULAY" }, { - "codePostal": "24360", - "codeCommune": "24070", - "libelleAcheminement": "BUSSEROLLES", - "nomCommune": "BUSSEROLLES" + "codePostal": "46210", + "codeCommune": "46160", + "libelleAcheminement": "LATRONQUIERE", + "nomCommune": "LATRONQUIERE" }, { - "codePostal": "38470", - "codeCommune": "38345", - "libelleAcheminement": "ROVON", - "nomCommune": "ROVON" + "codePostal": "49730", + "codeCommune": "49219", + "libelleAcheminement": "MONTSOREAU", + "nomCommune": "MONTSOREAU" }, { - "codePostal": "52700", - "codeCommune": "52061", - "libelleAcheminement": "BOURDONS SUR ROGNON", - "nomCommune": "BOURDONS SUR ROGNON" + "codePostal": "58310", + "codeCommune": "58227", + "libelleAcheminement": "ST AMAND EN PUISAYE", + "nomCommune": "ST AMAND EN PUISAYE" }, { - "codePostal": "29770", - "codeCommune": "29063", - "libelleAcheminement": "GOULIEN", - "nomCommune": "GOULIEN" + "codePostal": "01300", + "codeCommune": "01310", + "libelleAcheminement": "PREMEYZEL", + "nomCommune": "PREMEYZEL" }, { - "codePostal": "24150", - "codeCommune": "24073", - "libelleAcheminement": "CALES", - "nomCommune": "CALES" + "codePostal": "57720", + "codeCommune": "57732", + "libelleAcheminement": "VOLMUNSTER", + "nomCommune": "VOLMUNSTER" }, { - "codePostal": "38190", - "codeCommune": "38350", - "libelleAcheminement": "STE AGNES", - "nomCommune": "STE AGNES" + "codePostal": "46130", + "codeCommune": "46163", + "libelleAcheminement": "LAVAL DE CERE", + "nomCommune": "LAVAL DE CERE" }, { - "codePostal": "52150", - "codeCommune": "52064", - "libelleAcheminement": "BOURMONT ENTRE MEUSE ET MOUZON", - "nomCommune": "BOURMONT ENTRE MEUSE ET MOUZON" + "codePostal": "49640", + "codeCommune": "49220", + "libelleAcheminement": "MORANNES SUR SARTHE DAUMERAY", + "nomCommune": "MORANNES SUR SARTHE DAUMERAY" }, { - "codePostal": "29710", - "codeCommune": "29070", - "libelleAcheminement": "GUILER SUR GOYEN", - "nomCommune": "GUILER SUR GOYEN" + "codePostal": "58150", + "codeCommune": "58228", + "libelleAcheminement": "ST ANDELAIN", + "nomCommune": "ST ANDELAIN" }, { - "codePostal": "24370", - "codeCommune": "24074", - "libelleAcheminement": "CALVIAC EN PERIGORD", - "nomCommune": "CALVIAC EN PERIGORD" + "codePostal": "01250", + "codeCommune": "01317", + "libelleAcheminement": "RAMASSE", + "nomCommune": "RAMASSE" }, { - "codePostal": "38300", - "codeCommune": "38351", - "libelleAcheminement": "ST AGNIN SUR BION", - "nomCommune": "ST AGNIN SUR BION" + "codePostal": "57200", + "codeCommune": "57745", + "libelleAcheminement": "WIESVILLER", + "nomCommune": "WIESVILLER" }, { - "codePostal": "52150", - "codeCommune": "52064", - "libelleAcheminement": "BOURMONT ENTRE MEUSE ET MOUZON", - "nomCommune": "BOURMONT ENTRE MEUSE ET MOUZON" + "codePostal": "46330", + "codeCommune": "46167", + "libelleAcheminement": "LENTILLAC DU CAUSSE", + "nomCommune": "LENTILLAC DU CAUSSE" }, { - "codePostal": "29300", - "codeCommune": "29071", - "libelleAcheminement": "GUILLIGOMARC H", - "nomCommune": "GUILLIGOMARC H" + "codePostal": "49610", + "codeCommune": "49223", + "libelleAcheminement": "MURS ERIGNE", + "nomCommune": "MURS ERIGNE" }, { - "codePostal": "24540", - "codeCommune": "24080", - "libelleAcheminement": "CAPDROT", - "nomCommune": "CAPDROT" + "codePostal": "58130", + "codeCommune": "58231", + "libelleAcheminement": "ST AUBIN LES FORGES", + "nomCommune": "ST AUBIN LES FORGES" }, { - "codePostal": "38270", - "codeCommune": "38363", - "libelleAcheminement": "ST BARTHELEMY DE BEAUREPAIRE", - "nomCommune": "ST BARTHELEMY" + "codePostal": "01750", + "codeCommune": "01320", + "libelleAcheminement": "REPLONGES", + "nomCommune": "REPLONGES" }, { - "codePostal": "52110", - "codeCommune": "52066", - "libelleAcheminement": "BRACHAY", - "nomCommune": "BRACHAY" + "codePostal": "57915", + "codeCommune": "57752", + "libelleAcheminement": "WOUSTVILLER", + "nomCommune": "WOUSTVILLER" }, { - "codePostal": "29253", - "codeCommune": "29082", - "libelleAcheminement": "ILE DE BATZ", - "nomCommune": "ILE DE BATZ" + "codePostal": "46300", + "codeCommune": "46169", + "libelleAcheminement": "LEOBARD", + "nomCommune": "LEOBARD" }, { - "codePostal": "24120", - "codeCommune": "24085", - "libelleAcheminement": "LA CASSAGNE", - "nomCommune": "LA CASSAGNE" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "38220", - "codeCommune": "38364", - "libelleAcheminement": "ST BARTHELEMY DE SECHILIENNE", - "nomCommune": "ST BARTHELEMY DE SECHILIENNE" + "codePostal": "58270", + "codeCommune": "58232", + "libelleAcheminement": "ST BENIN D AZY", + "nomCommune": "ST BENIN D AZY" }, { - "codePostal": "52200", - "codeCommune": "52070", - "libelleAcheminement": "BRENNES", - "nomCommune": "BRENNES" + "codePostal": "01510", + "codeCommune": "01329", + "libelleAcheminement": "ROSSILLON", + "nomCommune": "ROSSILLON" }, { - "codePostal": "29100", - "codeCommune": "29087", - "libelleAcheminement": "LE JUCH", - "nomCommune": "LE JUCH" + "codePostal": "57340", + "codeCommune": "57759", + "libelleAcheminement": "ZARBELING", + "nomCommune": "ZARBELING" }, { - "codePostal": "24250", - "codeCommune": "24086", - "libelleAcheminement": "CASTELNAUD LA CHAPELLE", - "nomCommune": "CASTELNAUD LA CHAPELLE" + "codePostal": "46150", + "codeCommune": "46171", + "libelleAcheminement": "LHERM", + "nomCommune": "LHERM" }, { - "codePostal": "38840", - "codeCommune": "38370", - "libelleAcheminement": "ST BONNET DE CHAVAGNE", - "nomCommune": "ST BONNET DE CHAVAGNE" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "52000", - "codeCommune": "52072", - "libelleAcheminement": "BRETHENAY", - "nomCommune": "BRETHENAY" + "codePostal": "58230", + "codeCommune": "58235", + "libelleAcheminement": "ST BRISSON", + "nomCommune": "ST BRISSON" }, { - "codePostal": "29270", - "codeCommune": "29089", - "libelleAcheminement": "KERGLOFF", - "nomCommune": "KERGLOFF" + "codePostal": "01380", + "codeCommune": "01332", + "libelleAcheminement": "ST ANDRE DE BAGE", + "nomCommune": "ST ANDRE DE BAGE" }, { - "codePostal": "24220", - "codeCommune": "24087", - "libelleAcheminement": "CASTELS ET BEZENAC", - "nomCommune": "CASTELS ET BEZENAC" + "codePostal": "57905", + "codeCommune": "57760", + "libelleAcheminement": "ZETTING", + "nomCommune": "ZETTING" }, { - "codePostal": "38890", - "codeCommune": "38374", - "libelleAcheminement": "ST CHEF", - "nomCommune": "ST CHEF" + "codePostal": "46170", + "codeCommune": "46172", + "libelleAcheminement": "LHOSPITALET", + "nomCommune": "LHOSPITALET" }, { - "codePostal": "52130", - "codeCommune": "52079", - "libelleAcheminement": "BROUSSEVAL", - "nomCommune": "BROUSSEVAL" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "29810", - "codeCommune": "29098", - "libelleAcheminement": "LAMPAUL PLOUARZEL", - "nomCommune": "LAMPAUL PLOUARZEL" + "codePostal": "58220", + "codeCommune": "58236", + "libelleAcheminement": "STE COLOMBE DES BOIS", + "nomCommune": "STE COLOMBE DES BOIS" }, { - "codePostal": "24650", - "codeCommune": "24102", - "libelleAcheminement": "CHANCELADE", - "nomCommune": "CHANCELADE" + "codePostal": "01390", + "codeCommune": "01333", + "libelleAcheminement": "ST ANDRE DE CORCY", + "nomCommune": "ST ANDRE DE CORCY" }, { - "codePostal": "38960", - "codeCommune": "38383", - "libelleAcheminement": "ST ETIENNE DE CROSSEY", - "nomCommune": "ST ETIENNE DE CROSSEY" + "codePostal": "57890", + "codeCommune": "57765", + "libelleAcheminement": "DIESEN", + "nomCommune": "DIESEN" }, { - "codePostal": "52210", - "codeCommune": "52082", - "libelleAcheminement": "BUGNIERES", - "nomCommune": "BUGNIERES" + "codePostal": "46260", + "codeCommune": "46173", + "libelleAcheminement": "LIMOGNE EN QUERCY", + "nomCommune": "LIMOGNE EN QUERCY" }, { - "codePostal": "29830", - "codeCommune": "29099", - "libelleAcheminement": "LAMPAUL PLOUDALMEZEAU", - "nomCommune": "LAMPAUL PLOUDALMEZEAU" + "codePostal": "49730", + "codeCommune": "49235", + "libelleAcheminement": "PARNAY", + "nomCommune": "PARNAY" }, { - "codePostal": "24530", - "codeCommune": "24107", - "libelleAcheminement": "LA CHAPELLE FAUCHER", - "nomCommune": "LA CHAPELLE FAUCHER" + "codePostal": "58190", + "codeCommune": "58237", + "libelleAcheminement": "ST DIDIER", + "nomCommune": "ST DIDIER" }, { - "codePostal": "38790", - "codeCommune": "38389", - "libelleAcheminement": "ST GEORGES D ESPERANCHE", - "nomCommune": "ST GEORGES D ESPERANCHE" + "codePostal": "01960", + "codeCommune": "01336", + "libelleAcheminement": "ST ANDRE SUR VIEUX JONC", + "nomCommune": "ST ANDRE SUR VIEUX JONC" }, { - "codePostal": "52000", - "codeCommune": "52087", - "libelleAcheminement": "BUXIERES LES VILLIERS", - "nomCommune": "BUXIERES LES VILLIERS" + "codePostal": "58200", + "codeCommune": "58002", + "libelleAcheminement": "ALLIGNY COSNE", + "nomCommune": "ALLIGNY COSNE" }, { - "codePostal": "29840", - "codeCommune": "29112", - "libelleAcheminement": "LANILDUT", - "nomCommune": "LANILDUT" + "codePostal": "46350", + "codeCommune": "46178", + "libelleAcheminement": "LOUPIAC", + "nomCommune": "LOUPIAC" }, { - "codePostal": "24120", - "codeCommune": "24117", - "libelleAcheminement": "LES COTEAUX PERIGOURDINS", - "nomCommune": "LES COTEAUX PERIGOURDINS" + "codePostal": "49560", + "codeCommune": "49236", + "libelleAcheminement": "PASSAVANT SUR LAYON", + "nomCommune": "PASSAVANT SUR LAYON" }, { - "codePostal": "38470", - "codeCommune": "38390", - "libelleAcheminement": "ST GERVAIS", - "nomCommune": "ST GERVAIS" + "codePostal": "58210", + "codeCommune": "58242", + "libelleAcheminement": "ST GERMAIN DES BOIS", + "nomCommune": "ST GERMAIN DES BOIS" }, { - "codePostal": "52220", - "codeCommune": "52088", - "libelleAcheminement": "CEFFONDS", - "nomCommune": "CEFFONDS" + "codePostal": "01300", + "codeCommune": "01338", + "libelleAcheminement": "GROSLEE ST BENOIT", + "nomCommune": "GROSLEE ST BENOIT" }, { - "codePostal": "29620", - "codeCommune": "29113", - "libelleAcheminement": "LANMEUR", - "nomCommune": "LANMEUR" + "codePostal": "58500", + "codeCommune": "58011", + "libelleAcheminement": "ARMES", + "nomCommune": "ARMES" }, { - "codePostal": "24320", - "codeCommune": "24119", - "libelleAcheminement": "CHERVAL", - "nomCommune": "CHERVAL" + "codePostal": "46150", + "codeCommune": "46190", + "libelleAcheminement": "MECHMONT", + "nomCommune": "MECHMONT" }, { - "codePostal": "38134", - "codeCommune": "38407", - "libelleAcheminement": "LA SURE EN CHARTREUSE", - "nomCommune": "LA SURE EN CHARTREUSE" + "codePostal": "49110", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "52110", - "codeCommune": "52110", - "libelleAcheminement": "CHARMES LA GRANDE", - "nomCommune": "CHARMES LA GRANDE" + "codePostal": "58120", + "codeCommune": "58244", + "libelleAcheminement": "ST HILAIRE EN MORVAN", + "nomCommune": "ST HILAIRE EN MORVAN" }, { - "codePostal": "29400", - "codeCommune": "29128", - "libelleAcheminement": "LOC EGUINER", - "nomCommune": "LOC EGUINER" + "codePostal": "01000", + "codeCommune": "01344", + "libelleAcheminement": "ST DENIS LES BOURG", + "nomCommune": "ST DENIS LES BOURG" }, { - "codePostal": "24160", - "codeCommune": "24124", - "libelleAcheminement": "CLERMONT D EXCIDEUIL", - "nomCommune": "CLERMONT D EXCIDEUIL" + "codePostal": "58420", + "codeCommune": "58026", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "38340", - "codeCommune": "38407", - "libelleAcheminement": "LA SURE EN CHARTREUSE", - "nomCommune": "LA SURE EN CHARTREUSE" + "codePostal": "46200", + "codeCommune": "46192", + "libelleAcheminement": "MEYRONNE", + "nomCommune": "MEYRONNE" }, { - "codePostal": "52360", - "codeCommune": "52116", - "libelleAcheminement": "CHATENAY VAUDIN", - "nomCommune": "CHATENAY VAUDIN" + "codePostal": "49290", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "29400", - "codeCommune": "29131", - "libelleAcheminement": "LOCMELAR", - "nomCommune": "LOCMELAR" + "codePostal": "58130", + "codeCommune": "58254", + "libelleAcheminement": "ST MARTIN D HEUILLE", + "nomCommune": "ST MARTIN D HEUILLE" }, { - "codePostal": "24600", - "codeCommune": "24128", - "libelleAcheminement": "COMBERANCHE ET EPELUCHE", - "nomCommune": "COMBERANCHE ET EPELUCHE" + "codePostal": "01500", + "codeCommune": "01345", + "libelleAcheminement": "ST DENIS EN BUGEY", + "nomCommune": "ST DENIS EN BUGEY" }, { - "codePostal": "38680", - "codeCommune": "38409", - "libelleAcheminement": "ST JUST DE CLAIX", - "nomCommune": "ST JUST DE CLAIX" + "codePostal": "58700", + "codeCommune": "58027", + "libelleAcheminement": "BEAUMONT LA FERRIERE", + "nomCommune": "BEAUMONT LA FERRIERE" }, { - "codePostal": "52140", - "codeCommune": "52120", - "libelleAcheminement": "CHAUFFOURT", - "nomCommune": "CHAUFFOURT" + "codePostal": "46090", + "codeCommune": "46197", + "libelleAcheminement": "LE MONTAT", + "nomCommune": "LE MONTAT" }, { - "codePostal": "29241", - "codeCommune": "29133", - "libelleAcheminement": "LOCQUIREC", - "nomCommune": "LOCQUIREC" + "codePostal": "49620", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "24570", - "codeCommune": "24130", - "libelleAcheminement": "CONDAT SUR VEZERE", - "nomCommune": "CONDAT SUR VEZERE" + "codePostal": "58490", + "codeCommune": "58260", + "libelleAcheminement": "ST PARIZE LE CHATEL", + "nomCommune": "ST PARIZE LE CHATEL" }, { - "codePostal": "38930", - "codeCommune": "38419", - "libelleAcheminement": "ST MARTIN DE CLELLES", - "nomCommune": "ST MARTIN DE CLELLES" + "codePostal": "01630", + "codeCommune": "01354", + "libelleAcheminement": "ST GENIS POUILLY", + "nomCommune": "ST GENIS POUILLY" }, { - "codePostal": "52170", - "codeCommune": "52123", - "libelleAcheminement": "CHEVILLON", - "nomCommune": "CHEVILLON" + "codePostal": "58210", + "codeCommune": "58029", + "libelleAcheminement": "BEUVRON", + "nomCommune": "BEUVRON" }, { - "codePostal": "29310", - "codeCommune": "29136", - "libelleAcheminement": "LOCUNOLE", - "nomCommune": "LOCUNOLE" + "codePostal": "46160", + "codeCommune": "46198", + "libelleAcheminement": "MONTBRUN", + "nomCommune": "MONTBRUN" }, { - "codePostal": "24100", - "codeCommune": "24145", - "libelleAcheminement": "CREYSSE", - "nomCommune": "CREYSSE" + "codePostal": "49420", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "38480", - "codeCommune": "38420", - "libelleAcheminement": "ST MARTIN DE VAULSERRE", - "nomCommune": "ST MARTIN DE VAULSERRE" + "codePostal": "58110", + "codeCommune": "58262", + "libelleAcheminement": "ST PEREUSE", + "nomCommune": "ST PEREUSE" }, { - "codePostal": "52370", - "codeCommune": "52130", - "libelleAcheminement": "CIRFONTAINES EN AZOIS", - "nomCommune": "CIRFONTAINES EN AZOIS" + "codePostal": "01130", + "codeCommune": "01357", + "libelleAcheminement": "ST GERMAIN DE JOUX", + "nomCommune": "ST GERMAIN DE JOUX" }, { - "codePostal": "29530", - "codeCommune": "29141", - "libelleAcheminement": "LOQUEFFRET", - "nomCommune": "LOQUEFFRET" + "codePostal": "58420", + "codeCommune": "58041", + "libelleAcheminement": "BRINON SUR BEUVRON", + "nomCommune": "BRINON SUR BEUVRON" }, { - "codePostal": "24240", - "codeCommune": "24148", - "libelleAcheminement": "CUNEGES", - "nomCommune": "CUNEGES" + "codePostal": "46700", + "codeCommune": "46199", + "libelleAcheminement": "MONTCABRIER", + "nomCommune": "MONTCABRIER" }, { - "codePostal": "38950", - "codeCommune": "38423", - "libelleAcheminement": "ST MARTIN LE VINOUX", - "nomCommune": "ST MARTIN LE VINOUX" + "codePostal": "49520", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "52200", - "codeCommune": "52147", - "libelleAcheminement": "COURCELLES EN MONTAGNE", - "nomCommune": "COURCELLES EN MONTAGNE" + "codePostal": "58210", + "codeCommune": "58263", + "libelleAcheminement": "ST PIERRE DU MONT", + "nomCommune": "ST PIERRE DU MONT" }, { - "codePostal": "29800", - "codeCommune": "29144", - "libelleAcheminement": "LA MARTYRE", - "nomCommune": "LA MARTYRE" + "codePostal": "01800", + "codeCommune": "01361", + "libelleAcheminement": "ST JEAN DE NIOST", + "nomCommune": "ST JEAN DE NIOST" }, { - "codePostal": "24170", - "codeCommune": "24151", - "libelleAcheminement": "DOISSAT", - "nomCommune": "DOISSAT" + "codePostal": "58340", + "codeCommune": "58046", + "libelleAcheminement": "CERCY LA TOUR", + "nomCommune": "CERCY LA TOUR" }, { - "codePostal": "38930", - "codeCommune": "38424", - "libelleAcheminement": "ST MAURICE EN TRIEVES", - "nomCommune": "ST MAURICE EN TRIEVES" + "codePostal": "46800", + "codeCommune": "46201", + "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", + "nomCommune": "MONTCUQ EN QUERCY BLANC" }, { - "codePostal": "52240", - "codeCommune": "52159", - "libelleAcheminement": "CUVES", - "nomCommune": "CUVES" + "codePostal": "49520", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "29350", - "codeCommune": "29150", - "libelleAcheminement": "MOELAN SUR MER", - "nomCommune": "MOELAN SUR MER" + "codePostal": "58330", + "codeCommune": "58267", + "libelleAcheminement": "ST SAULGE", + "nomCommune": "ST SAULGE" }, { - "codePostal": "24350", - "codeCommune": "24154", - "libelleAcheminement": "DOUCHAPT", - "nomCommune": "DOUCHAPT" + "codePostal": "01640", + "codeCommune": "01363", + "libelleAcheminement": "ST JEAN LE VIEUX", + "nomCommune": "ST JEAN LE VIEUX" }, { - "codePostal": "38190", - "codeCommune": "38430", - "libelleAcheminement": "ST MURY MONTEYMOND", - "nomCommune": "ST MURY MONTEYMOND" + "codePostal": "58000", + "codeCommune": "58051", + "libelleAcheminement": "CHALLUY", + "nomCommune": "CHALLUY" }, { - "codePostal": "52140", - "codeCommune": "52162", - "libelleAcheminement": "DAMMARTIN SUR MEUSE", - "nomCommune": "DAMMARTIN SUR MEUSE" + "codePostal": "46360", + "codeCommune": "46210", + "libelleAcheminement": "NADILLAC", + "nomCommune": "NADILLAC" }, { - "codePostal": "29600", - "codeCommune": "29151", - "libelleAcheminement": "MORLAIX", - "nomCommune": "MORLAIX" + "codePostal": "49320", + "codeCommune": "49261", + "libelleAcheminement": "GENNES VAL DE LOIRE", + "nomCommune": "GENNES VAL DE LOIRE" }, { - "codePostal": "24330", - "codeCommune": "24156", - "libelleAcheminement": "LA DOUZE", - "nomCommune": "LA DOUZE" + "codePostal": "58190", + "codeCommune": "58271", + "libelleAcheminement": "SAIZY", + "nomCommune": "SAIZY" }, { - "codePostal": "38760", - "codeCommune": "38436", - "libelleAcheminement": "ST PAUL DE VARCES", - "nomCommune": "ST PAUL DE VARCES" + "codePostal": "01540", + "codeCommune": "01368", + "libelleAcheminement": "ST JULIEN SUR VEYLE", + "nomCommune": "ST JULIEN SUR VEYLE" }, { - "codePostal": "52700", - "codeCommune": "52167", - "libelleAcheminement": "DARMANNES", - "nomCommune": "DARMANNES" + "codePostal": "58240", + "codeCommune": "58057", + "libelleAcheminement": "CHANTENAY ST IMBERT", + "nomCommune": "CHANTENAY ST IMBERT" }, { - "codePostal": "29242", - "codeCommune": "29155", - "libelleAcheminement": "ILE D OUESSANT", - "nomCommune": "OUESSANT" + "codePostal": "46200", + "codeCommune": "46220", + "libelleAcheminement": "PINSAC", + "nomCommune": "PINSAC" }, { - "codePostal": "24410", - "codeCommune": "24159", - "libelleAcheminement": "ECHOURGNAC", - "nomCommune": "ECHOURGNAC" + "codePostal": "49350", + "codeCommune": "49261", + "libelleAcheminement": "GENNES VAL DE LOIRE", + "nomCommune": "GENNES VAL DE LOIRE" }, { - "codePostal": "38380", - "codeCommune": "38446", - "libelleAcheminement": "ST PIERRE D ENTREMONT", - "nomCommune": "ST PIERRE D ENTREMONT" + "codePostal": "58160", + "codeCommune": "58273", + "libelleAcheminement": "SAUVIGNY LES BOIS", + "nomCommune": "SAUVIGNY LES BOIS" }, { - "codePostal": "52110", - "codeCommune": "52171", - "libelleAcheminement": "DOMMARTIN LE FRANC", - "nomCommune": "DOMMARTIN LE FRANC" + "codePostal": "01700", + "codeCommune": "01376", + "libelleAcheminement": "ST MAURICE DE BEYNOST", + "nomCommune": "ST MAURICE DE BEYNOST" }, { - "codePostal": "29760", - "codeCommune": "29158", - "libelleAcheminement": "PENMARCH", - "nomCommune": "PENMARCH" + "codePostal": "58400", + "codeCommune": "58059", + "libelleAcheminement": "LA CHARITE SUR LOIRE", + "nomCommune": "LA CHARITE SUR LOIRE" }, { - "codePostal": "24160", - "codeCommune": "24164", - "libelleAcheminement": "EXCIDEUIL", - "nomCommune": "EXCIDEUIL" + "codePostal": "46090", + "codeCommune": "46224", + "libelleAcheminement": "PRADINES", + "nomCommune": "PRADINES" }, { - "codePostal": "38710", - "codeCommune": "38456", - "libelleAcheminement": "CHATEL EN TRIEVES", - "nomCommune": "CHATEL EN TRIEVES" + "codePostal": "49130", + "codeCommune": "49278", + "libelleAcheminement": "STE GEMMES SUR LOIRE", + "nomCommune": "STE GEMMES SUR LOIRE" }, { - "codePostal": "52270", - "codeCommune": "52173", - "libelleAcheminement": "DOMREMY LANDEVILLE", - "nomCommune": "DOMREMY LANDEVILLE" + "codePostal": "58170", + "codeCommune": "58274", + "libelleAcheminement": "SAVIGNY POIL FOL", + "nomCommune": "SAVIGNY POIL FOL" }, { - "codePostal": "29860", - "codeCommune": "29160", - "libelleAcheminement": "PLABENNEC", - "nomCommune": "PLABENNEC" + "codePostal": "01320", + "codeCommune": "01381", + "libelleAcheminement": "ST NIZIER LE DESERT", + "nomCommune": "ST NIZIER LE DESERT" }, { - "codePostal": "24700", - "codeCommune": "24165", - "libelleAcheminement": "EYGURANDE ET GARDEDEUIL", - "nomCommune": "EYGURANDE ET GARDEDEUIL" + "codePostal": "58300", + "codeCommune": "58060", + "libelleAcheminement": "CHARRIN", + "nomCommune": "CHARRIN" }, { - "codePostal": "38870", - "codeCommune": "38457", - "libelleAcheminement": "ST SIMEON DE BRESSIEUX", - "nomCommune": "ST SIMEON DE BRESSIEUX" + "codePostal": "46220", + "codeCommune": "46225", + "libelleAcheminement": "PRAYSSAC", + "nomCommune": "PRAYSSAC" }, { - "codePostal": "52270", - "codeCommune": "52177", - "libelleAcheminement": "DOULAINCOURT SAUCOURT", - "nomCommune": "DOULAINCOURT SAUCOURT" + "codePostal": "49190", + "codeCommune": "49292", + "libelleAcheminement": "VAL DU LAYON", + "nomCommune": "VAL DU LAYON" }, { - "codePostal": "29190", - "codeCommune": "29162", - "libelleAcheminement": "PLEYBEN", - "nomCommune": "PLEYBEN" + "codePostal": "58290", + "codeCommune": "58277", + "libelleAcheminement": "SERMAGES", + "nomCommune": "SERMAGES" }, { - "codePostal": "24560", - "codeCommune": "24168", - "libelleAcheminement": "PLAISANCE", - "nomCommune": "PLAISANCE" + "codePostal": "01150", + "codeCommune": "01390", + "libelleAcheminement": "ST VULBAS", + "nomCommune": "ST VULBAS" }, { - "codePostal": "38660", - "codeCommune": "38466", - "libelleAcheminement": "ST VINCENT DE MERCUZE", - "nomCommune": "ST VINCENT DE MERCUZE" + "codePostal": "58270", + "codeCommune": "58078", + "libelleAcheminement": "CIZELY", + "nomCommune": "CIZELY" }, { - "codePostal": "52230", - "codeCommune": "52181", - "libelleAcheminement": "ECHENAY", - "nomCommune": "ECHENAY" + "codePostal": "46320", + "codeCommune": "46237", + "libelleAcheminement": "REYREVIGNES", + "nomCommune": "REYREVIGNES" }, { - "codePostal": "29180", - "codeCommune": "29169", - "libelleAcheminement": "PLOGONNEC", - "nomCommune": "PLOGONNEC" + "codePostal": "49170", + "codeCommune": "49298", + "libelleAcheminement": "ST LEGER DE LINIERES", + "nomCommune": "ST LEGER DE LINIERES" }, { - "codePostal": "24560", - "codeCommune": "24168", - "libelleAcheminement": "PLAISANCE", - "nomCommune": "PLAISANCE" + "codePostal": "58300", + "codeCommune": "58280", + "libelleAcheminement": "SOUGY SUR LOIRE", + "nomCommune": "SOUGY SUR LOIRE" }, { - "codePostal": "38890", - "codeCommune": "38467", - "libelleAcheminement": "SALAGNON", - "nomCommune": "SALAGNON" + "codePostal": "01170", + "codeCommune": "01399", + "libelleAcheminement": "SEGNY", + "nomCommune": "SEGNY" }, { - "codePostal": "52230", - "codeCommune": "52187", - "libelleAcheminement": "EPIZON", - "nomCommune": "EPIZON" + "codePostal": "58800", + "codeCommune": "58080", + "libelleAcheminement": "LA COLLANCELLE", + "nomCommune": "LA COLLANCELLE" }, { - "codePostal": "29120", - "codeCommune": "29171", - "libelleAcheminement": "PLOMEUR", - "nomCommune": "PLOMEUR" + "codePostal": "46360", + "codeCommune": "46245", + "libelleAcheminement": "SABADEL LAUZES", + "nomCommune": "SABADEL LAUZES" }, { - "codePostal": "24560", - "codeCommune": "24177", - "libelleAcheminement": "FAUX", - "nomCommune": "FAUX" + "codePostal": "49450", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "38290", - "codeCommune": "38475", - "libelleAcheminement": "SATOLAS ET BONCE", - "nomCommune": "SATOLAS ET BONCE" + "codePostal": "58420", + "codeCommune": "58283", + "libelleAcheminement": "TACONNAY", + "nomCommune": "TACONNAY" }, { - "codePostal": "52270", - "codeCommune": "52187", - "libelleAcheminement": "EPIZON", - "nomCommune": "EPIZON" + "codePostal": "01450", + "codeCommune": "01404", + "libelleAcheminement": "SERRIERES SUR AIN", + "nomCommune": "SERRIERES SUR AIN" }, { - "codePostal": "29830", - "codeCommune": "29178", - "libelleAcheminement": "PLOUDALMEZEAU", - "nomCommune": "PLOUDALMEZEAU" + "codePostal": "58200", + "codeCommune": "58086", + "libelleAcheminement": "COSNE COURS SUR LOIRE", + "nomCommune": "COSNE COURS SUR LOIRE" }, { - "codePostal": "24250", - "codeCommune": "24184", - "libelleAcheminement": "FLORIMONT GAUMIER", - "nomCommune": "FLORIMONT GAUMIER" + "codePostal": "46310", + "codeCommune": "46253", + "libelleAcheminement": "ST CHAMARAND", + "nomCommune": "ST CHAMARAND" }, { - "codePostal": "38290", - "codeCommune": "38475", - "libelleAcheminement": "SATOLAS ET BONCE", - "nomCommune": "SATOLAS ET BONCE" + "codePostal": "49660", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "52190", - "codeCommune": "52189", - "libelleAcheminement": "LE VAL D ESNOMS", - "nomCommune": "LE VAL D ESNOMS" + "codePostal": "58110", + "codeCommune": "58285", + "libelleAcheminement": "TAMNAY EN BAZOIS", + "nomCommune": "TAMNAY EN BAZOIS" }, { - "codePostal": "29800", - "codeCommune": "29181", - "libelleAcheminement": "PLOUEDERN", - "nomCommune": "PLOUEDERN" + "codePostal": "01560", + "codeCommune": "01406", + "libelleAcheminement": "SERVIGNAT", + "nomCommune": "SERVIGNAT" }, { - "codePostal": "24380", - "codeCommune": "24190", - "libelleAcheminement": "FOULEIX", - "nomCommune": "FOULEIX" + "codePostal": "58330", + "codeCommune": "58092", + "libelleAcheminement": "CRUX LA VILLE", + "nomCommune": "CRUX LA VILLE" }, { - "codePostal": "38290", - "codeCommune": "38475", - "libelleAcheminement": "SATOLAS ET BONCE", - "nomCommune": "SATOLAS ET BONCE" + "codePostal": "46120", + "codeCommune": "46260", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "52260", - "codeCommune": "52196", - "libelleAcheminement": "FAVEROLLES", - "nomCommune": "FAVEROLLES" + "codePostal": "49630", + "codeCommune": "49307", + "libelleAcheminement": "LOIRE AUTHION", + "nomCommune": "LOIRE AUTHION" }, { - "codePostal": "29620", - "codeCommune": "29182", - "libelleAcheminement": "PLOUEGAT GUERAND", - "nomCommune": "PLOUEGAT GUERAND" + "codePostal": "58250", + "codeCommune": "58289", + "libelleAcheminement": "TERNANT", + "nomCommune": "TERNANT" }, { - "codePostal": "24240", - "codeCommune": "24193", - "libelleAcheminement": "GAGEAC ET ROUILLAC", - "nomCommune": "GAGEAC ET ROUILLAC" + "codePostal": "01120", + "codeCommune": "01418", + "libelleAcheminement": "THIL", + "nomCommune": "THIL" }, { - "codePostal": "38460", - "codeCommune": "38494", - "libelleAcheminement": "SOLEYMIEU", - "nomCommune": "SOLEYMIEU" + "codePostal": "58340", + "codeCommune": "58097", + "libelleAcheminement": "DIENNES AUBIGNY", + "nomCommune": "DIENNES AUBIGNY" }, { - "codePostal": "52500", - "codeCommune": "52197", - "libelleAcheminement": "FAYL BILLOT", - "nomCommune": "FAYL BILLOT" + "codePostal": "46800", + "codeCommune": "46262", + "libelleAcheminement": "LENDOU EN QUERCY", + "nomCommune": "LENDOU EN QUERCY" }, { - "codePostal": "29400", - "codeCommune": "29193", - "libelleAcheminement": "PLOUGOURVEST", - "nomCommune": "PLOUGOURVEST" + "codePostal": "49800", + "codeCommune": "49307", + "libelleAcheminement": "LOIRE AUTHION", + "nomCommune": "LOIRE AUTHION" }, { - "codePostal": "24130", - "codeCommune": "24197", - "libelleAcheminement": "GINESTET", - "nomCommune": "GINESTET" + "codePostal": "58110", + "codeCommune": "58292", + "libelleAcheminement": "TINTURY", + "nomCommune": "TINTURY" }, { - "codePostal": "38840", - "codeCommune": "38495", - "libelleAcheminement": "LA SONE", - "nomCommune": "LA SONE" + "codePostal": "01140", + "codeCommune": "01420", + "libelleAcheminement": "THOISSEY", + "nomCommune": "THOISSEY" }, { - "codePostal": "52110", - "codeCommune": "52201", - "libelleAcheminement": "FLAMMERECOURT", - "nomCommune": "FLAMMERECOURT" + "codePostal": "58530", + "codeCommune": "58103", + "libelleAcheminement": "DORNECY", + "nomCommune": "DORNECY" }, { - "codePostal": "29260", - "codeCommune": "29198", - "libelleAcheminement": "PLOUIDER", - "nomCommune": "PLOUIDER" + "codePostal": "46800", + "codeCommune": "46263", + "libelleAcheminement": "BARGUELONNE EN QUERCY", + "nomCommune": "BARGUELONNE EN QUERCY" }, { - "codePostal": "24560", - "codeCommune": "24212", - "libelleAcheminement": "ISSIGEAC", - "nomCommune": "ISSIGEAC" + "codePostal": "49123", + "codeCommune": "49321", + "libelleAcheminement": "ST SIGISMOND", + "nomCommune": "ST SIGISMOND" }, { - "codePostal": "38350", - "codeCommune": "38499", - "libelleAcheminement": "SUSVILLE", - "nomCommune": "SUSVILLE" + "codePostal": "58150", + "codeCommune": "58295", + "libelleAcheminement": "TRACY SUR LOIRE", + "nomCommune": "TRACY SUR LOIRE" }, { - "codePostal": "52320", - "codeCommune": "52211", - "libelleAcheminement": "FRONCLES", - "nomCommune": "FRONCLES" + "codePostal": "01230", + "codeCommune": "01421", + "libelleAcheminement": "TORCIEU", + "nomCommune": "TORCIEU" }, { - "codePostal": "29650", - "codeCommune": "29199", - "libelleAcheminement": "PLOUIGNEAU", - "nomCommune": "PLOUIGNEAU" + "codePostal": "58390", + "codeCommune": "58104", + "libelleAcheminement": "DORNES", + "nomCommune": "DORNES" }, { - "codePostal": "24300", - "codeCommune": "24214", - "libelleAcheminement": "JAVERLHAC LA CHAPELLE ST ROBERT", - "nomCommune": "JAVERLHAC ET LA CHAPELLE ST ROBERT" + "codePostal": "46400", + "codeCommune": "46273", + "libelleAcheminement": "ST LAURENT LES TOURS", + "nomCommune": "ST LAURENT LES TOURS" }, { - "codePostal": "38460", - "codeCommune": "38515", - "libelleAcheminement": "TREPT", - "nomCommune": "TREPT" + "codePostal": "49400", + "codeCommune": "49328", + "libelleAcheminement": "SAUMUR", + "nomCommune": "SAUMUR" }, { - "codePostal": "52320", - "codeCommune": "52211", - "libelleAcheminement": "FRONCLES", - "nomCommune": "FRONCLES" + "codePostal": "58260", + "codeCommune": "58297", + "libelleAcheminement": "TROIS VEVRES", + "nomCommune": "TROIS VEVRES" }, { - "codePostal": "29410", - "codeCommune": "29202", - "libelleAcheminement": "PLOUNEOUR MENEZ", - "nomCommune": "PLOUNEOUR MENEZ" + "codePostal": "01160", + "codeCommune": "01425", + "libelleAcheminement": "LA TRANCLIERE", + "nomCommune": "LA TRANCLIERE" }, { - "codePostal": "24410", - "codeCommune": "24216", - "libelleAcheminement": "LA JEMAYE PONTEYRAUD", - "nomCommune": "LA JEMAYE PONTEYRAUD" + "codePostal": "58160", + "codeCommune": "58105", + "libelleAcheminement": "DRUY PARIGNY", + "nomCommune": "DRUY PARIGNY" }, { - "codePostal": "38350", - "codeCommune": "38521", - "libelleAcheminement": "LA VALETTE", - "nomCommune": "LA VALETTE" + "codePostal": "46400", + "codeCommune": "46281", + "libelleAcheminement": "ST MEDARD DE PRESQUE", + "nomCommune": "ST MEDARD DE PRESQUE" }, { - "codePostal": "52150", - "codeCommune": "52217", - "libelleAcheminement": "GERMAINVILLIERS", - "nomCommune": "GERMAINVILLIERS" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "29720", - "codeCommune": "29214", - "libelleAcheminement": "PLOVAN", - "nomCommune": "PLOVAN" + "codePostal": "58640", + "codeCommune": "58303", + "libelleAcheminement": "VARENNES VAUZELLES", + "nomCommune": "VARENNES VAUZELLES" }, { - "codePostal": "24260", - "codeCommune": "24217", - "libelleAcheminement": "JOURNIAC", - "nomCommune": "JOURNIAC" + "codePostal": "01370", + "codeCommune": "01426", + "libelleAcheminement": "VAL REVERMONT", + "nomCommune": "VAL REVERMONT" }, { - "codePostal": "38740", - "codeCommune": "38522", - "libelleAcheminement": "VALJOUFFREY", - "nomCommune": "VALJOUFFREY" + "codePostal": "58110", + "codeCommune": "58107", + "libelleAcheminement": "DUN SUR GRANDRY", + "nomCommune": "DUN SUR GRANDRY" }, { - "codePostal": "52230", - "codeCommune": "52219", - "libelleAcheminement": "GERMISAY", - "nomCommune": "GERMISAY" + "codePostal": "46210", + "codeCommune": "46282", + "libelleAcheminement": "ST MEDARD NICOURBY", + "nomCommune": "ST MEDARD NICOURBY" }, { - "codePostal": "29790", - "codeCommune": "29218", - "libelleAcheminement": "PONT CROIX", - "nomCommune": "PONT CROIX" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "24230", - "codeCommune": "24226", - "libelleAcheminement": "LAMOTHE MONTRAVEL", - "nomCommune": "LAMOTHE MONTRAVEL" + "codePostal": "58140", + "codeCommune": "58305", + "libelleAcheminement": "VAUCLAIX", + "nomCommune": "VAUCLAIX" }, { - "codePostal": "38390", - "codeCommune": "38539", - "libelleAcheminement": "VERTRIEU", - "nomCommune": "VERTRIEU" + "codePostal": "01660", + "codeCommune": "01429", + "libelleAcheminement": "VANDEINS", + "nomCommune": "VANDEINS" }, { - "codePostal": "52600", - "codeCommune": "52228", - "libelleAcheminement": "GRANDCHAMP", - "nomCommune": "GRANDCHAMP" + "codePostal": "58270", + "codeCommune": "58113", + "libelleAcheminement": "FERTREVE", + "nomCommune": "FERTREVE" }, { - "codePostal": "29310", - "codeCommune": "29230", - "libelleAcheminement": "QUERRIEN", - "nomCommune": "QUERRIEN" + "codePostal": "46160", + "codeCommune": "46289", + "libelleAcheminement": "ST PIERRE TOIRAC", + "nomCommune": "ST PIERRE TOIRAC" }, { - "codePostal": "24520", - "codeCommune": "24242", - "libelleAcheminement": "LIORAC SUR LOUYRE", - "nomCommune": "LIORAC SUR LOUYRE" + "codePostal": "49520", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "38190", - "codeCommune": "38547", - "libelleAcheminement": "VILLARD BONNOT", - "nomCommune": "VILLARD BONNOT" + "codePostal": "58370", + "codeCommune": "58309", + "libelleAcheminement": "VILLAPOURCON", + "nomCommune": "VILLAPOURCON" }, { - "codePostal": "52200", - "codeCommune": "52246", - "libelleAcheminement": "HUMES JORQUENAY", - "nomCommune": "HUMES JORQUENAY" + "codePostal": "01270", + "codeCommune": "01432", + "libelleAcheminement": "VERJON", + "nomCommune": "VERJON" }, { - "codePostal": "29000", - "codeCommune": "29232", - "libelleAcheminement": "QUIMPER", - "nomCommune": "QUIMPER" + "codePostal": "58170", + "codeCommune": "58114", + "libelleAcheminement": "FLETY", + "nomCommune": "FLETY" }, { - "codePostal": "24110", - "codeCommune": "24251", - "libelleAcheminement": "MANZAC SUR VERN", - "nomCommune": "MANZAC SUR VERN" + "codePostal": "46700", + "codeCommune": "46307", + "libelleAcheminement": "SOTURAC", + "nomCommune": "SOTURAC" }, { - "codePostal": "38250", - "codeCommune": "38548", - "libelleAcheminement": "VILLARD DE LANS", - "nomCommune": "VILLARD DE LANS" + "codePostal": "49280", + "codeCommune": "49332", + "libelleAcheminement": "LA SEGUINIERE", + "nomCommune": "LA SEGUINIERE" }, { - "codePostal": "52200", - "codeCommune": "52246", - "libelleAcheminement": "HUMES JORQUENAY", - "nomCommune": "HUMES JORQUENAY" + "codePostal": "58210", + "codeCommune": "58310", + "libelleAcheminement": "VILLIERS LE SEC", + "nomCommune": "VILLIERS LE SEC" }, { - "codePostal": "29300", - "codeCommune": "29233", - "libelleAcheminement": "QUIMPERLE", - "nomCommune": "QUIMPERLE" + "codePostal": "01800", + "codeCommune": "01450", + "libelleAcheminement": "VILLIEU LOYES MOLLON", + "nomCommune": "VILLIEU LOYES MOLLON" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "58190", + "codeCommune": "58116", + "libelleAcheminement": "FLEZ CUZY", + "nomCommune": "FLEZ CUZY" }, { - "codePostal": "38470", - "codeCommune": "38559", - "libelleAcheminement": "VINAY", - "nomCommune": "VINAY" + "codePostal": "46300", + "codeCommune": "46308", + "libelleAcheminement": "SOUCIRAC", + "nomCommune": "SOUCIRAC" }, { - "codePostal": "52140", - "codeCommune": "52248", - "libelleAcheminement": "IS EN BASSIGNY", - "nomCommune": "IS EN BASSIGNY" + "codePostal": "49280", + "codeCommune": "49343", + "libelleAcheminement": "LA TESSOUALLE", + "nomCommune": "LA TESSOUALLE" }, { - "codePostal": "29480", - "codeCommune": "29235", - "libelleAcheminement": "LE RELECQ KERHUON", - "nomCommune": "LE RELECQ KERHUON" + "codePostal": "59251", + "codeCommune": "59005", + "libelleAcheminement": "ALLENNES LES MARAIS", + "nomCommune": "ALLENNES LES MARAIS" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "01350", + "codeCommune": "01456", + "libelleAcheminement": "VONGNES", + "nomCommune": "VONGNES" }, { - "codePostal": "38980", - "codeCommune": "38561", - "libelleAcheminement": "VIRIVILLE", - "nomCommune": "VIRIVILLE" + "codePostal": "58600", + "codeCommune": "58117", + "libelleAcheminement": "FOURCHAMBAULT", + "nomCommune": "FOURCHAMBAULT" }, { - "codePostal": "52000", - "codeCommune": "52251", - "libelleAcheminement": "JONCHERY", - "nomCommune": "JONCHERY" + "codePostal": "46200", + "codeCommune": "46309", + "libelleAcheminement": "SOUILLAC", + "nomCommune": "SOUILLAC" }, { - "codePostal": "29440", - "codeCommune": "29244", - "libelleAcheminement": "ST DERRIEN", - "nomCommune": "ST DERRIEN" + "codePostal": "49380", + "codeCommune": "49345", + "libelleAcheminement": "BELLEVIGNE EN LAYON", + "nomCommune": "BELLEVIGNE EN LAYON" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "59493", + "codeCommune": "59009", + "libelleAcheminement": "VILLENEUVE D ASCQ", + "nomCommune": "VILLENEUVE D ASCQ" }, { - "codePostal": "38500", - "codeCommune": "38563", - "libelleAcheminement": "VOIRON", - "nomCommune": "VOIRON" + "codePostal": "02200", + "codeCommune": "02003", + "libelleAcheminement": "ACY", + "nomCommune": "ACY" }, { - "codePostal": "52100", - "codeCommune": "52267", - "libelleAcheminement": "LANEUVILLE AU PONT", - "nomCommune": "LANEUVILLE AU PONT" + "codePostal": "58140", + "codeCommune": "58120", + "libelleAcheminement": "GACOGNE", + "nomCommune": "GACOGNE" }, { - "codePostal": "29170", - "codeCommune": "29247", - "libelleAcheminement": "ST EVARZEC", - "nomCommune": "ST EVARZEC" + "codePostal": "46110", + "codeCommune": "46312", + "libelleAcheminement": "STRENQUELS", + "nomCommune": "STRENQUELS" }, { - "codePostal": "24220", - "codeCommune": "24254", - "libelleAcheminement": "MARNAC", - "nomCommune": "MARNAC" + "codePostal": "49380", + "codeCommune": "49345", + "libelleAcheminement": "BELLEVIGNE EN LAYON", + "nomCommune": "BELLEVIGNE EN LAYON" }, { - "codePostal": "39110", - "codeCommune": "39006", - "libelleAcheminement": "AIGLEPIERRE", - "nomCommune": "AIGLEPIERRE" + "codePostal": "59650", + "codeCommune": "59009", + "libelleAcheminement": "VILLENEUVE D ASCQ", + "nomCommune": "VILLENEUVE D ASCQ" }, { - "codePostal": "52400", - "codeCommune": "52273", - "libelleAcheminement": "LARIVIERE ARNONCOURT", - "nomCommune": "LARIVIERE ARNONCOURT" + "codePostal": "02820", + "codeCommune": "02007", + "libelleAcheminement": "AIZELLES", + "nomCommune": "AIZELLES" }, { - "codePostal": "29120", - "codeCommune": "29252", - "libelleAcheminement": "ST JEAN TROLIMON", - "nomCommune": "ST JEAN TROLIMON" + "codePostal": "58320", + "codeCommune": "58124", + "libelleAcheminement": "GERMIGNY SUR LOIRE", + "nomCommune": "GERMIGNY SUR LOIRE" }, { - "codePostal": "24130", - "codeCommune": "24259", - "libelleAcheminement": "EYRAUD CREMPSE MAURENS", - "nomCommune": "EYRAUD CREMPSE MAURENS" + "codePostal": "46150", + "codeCommune": "46316", + "libelleAcheminement": "THEDIRAC", + "nomCommune": "THEDIRAC" }, { - "codePostal": "39110", - "codeCommune": "39009", - "libelleAcheminement": "ANDELOT EN MONTAGNE", - "nomCommune": "ANDELOT EN MONTAGNE" + "codePostal": "49360", + "codeCommune": "49352", + "libelleAcheminement": "TOUTLEMONDE", + "nomCommune": "TOUTLEMONDE" }, { - "codePostal": "52140", - "codeCommune": "52275", - "libelleAcheminement": "LAVERNOY", - "nomCommune": "LAVERNOY" + "codePostal": "59400", + "codeCommune": "59010", + "libelleAcheminement": "ANNEUX", + "nomCommune": "ANNEUX" }, { - "codePostal": "29190", - "codeCommune": "29261", - "libelleAcheminement": "ST RIVOAL", - "nomCommune": "ST RIVOAL" + "codePostal": "02240", + "codeCommune": "02009", + "libelleAcheminement": "ALAINCOURT", + "nomCommune": "ALAINCOURT" }, { - "codePostal": "24260", - "codeCommune": "24261", - "libelleAcheminement": "MAUZENS ET MIREMONT", - "nomCommune": "MAUZENS ET MIREMONT" + "codePostal": "58370", + "codeCommune": "58128", + "libelleAcheminement": "GLUX EN GLENNE", + "nomCommune": "GLUX EN GLENNE" }, { - "codePostal": "39600", - "codeCommune": "39013", - "libelleAcheminement": "ARBOIS", - "nomCommune": "ARBOIS" + "codePostal": "46090", + "codeCommune": "46322", + "libelleAcheminement": "TRESPOUX RASSIELS", + "nomCommune": "TRESPOUX RASSIELS" }, { - "codePostal": "52360", - "codeCommune": "52280", - "libelleAcheminement": "LECEY", - "nomCommune": "LECEY" + "codePostal": "49220", + "codeCommune": "49367", + "libelleAcheminement": "ERDRE EN ANJOU", + "nomCommune": "ERDRE EN ANJOU" }, { - "codePostal": "29400", - "codeCommune": "29264", - "libelleAcheminement": "ST SERVAIS", - "nomCommune": "ST SERVAIS" + "codePostal": "59112", + "codeCommune": "59011", + "libelleAcheminement": "ANNOEULLIN", + "nomCommune": "ANNOEULLIN" }, { - "codePostal": "24700", - "codeCommune": "24264", - "libelleAcheminement": "MENESPLET", - "nomCommune": "MENESPLET" + "codePostal": "02200", + "codeCommune": "02012", + "libelleAcheminement": "AMBRIEF", + "nomCommune": "AMBRIEF" }, { - "codePostal": "39290", - "codeCommune": "39014", - "libelleAcheminement": "ARCHELANGE", - "nomCommune": "ARCHELANGE" + "codePostal": "58420", + "codeCommune": "58132", + "libelleAcheminement": "GUIPY", + "nomCommune": "GUIPY" }, { - "codePostal": "52700", - "codeCommune": "52289", - "libelleAcheminement": "LIFFOL LE PETIT", - "nomCommune": "LIFFOL LE PETIT" + "codePostal": "46260", + "codeCommune": "46328", + "libelleAcheminement": "VARAIRE", + "nomCommune": "VARAIRE" }, { - "codePostal": "29600", - "codeCommune": "29265", - "libelleAcheminement": "STE SEVE", - "nomCommune": "STE SEVE" + "codePostal": "49560", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "24610", - "codeCommune": "24272", - "libelleAcheminement": "MINZAC", - "nomCommune": "MINZAC" + "codePostal": "59151", + "codeCommune": "59015", + "libelleAcheminement": "ARLEUX", + "nomCommune": "ARLEUX" }, { - "codePostal": "39300", - "codeCommune": "39015", - "libelleAcheminement": "ARDON", - "nomCommune": "ARDON" + "codePostal": "02700", + "codeCommune": "02014", + "libelleAcheminement": "AMIGNY ROUY", + "nomCommune": "AMIGNY ROUY" }, { - "codePostal": "52130", - "codeCommune": "52294", - "libelleAcheminement": "LOUVEMONT", - "nomCommune": "LOUVEMONT" + "codePostal": "58240", + "codeCommune": "58138", + "libelleAcheminement": "LANGERON", + "nomCommune": "LANGERON" }, { - "codePostal": "29410", - "codeCommune": "29266", - "libelleAcheminement": "ST THEGONNEC LOC EGUINER", - "nomCommune": "ST THEGONNEC LOC EGUINER" + "codePostal": "46100", + "codeCommune": "46332", + "libelleAcheminement": "VIAZAC", + "nomCommune": "VIAZAC" }, { - "codePostal": "24130", - "codeCommune": "24277", - "libelleAcheminement": "MONFAUCON", - "nomCommune": "MONFAUCON" + "codePostal": "49140", + "codeCommune": "49377", + "libelleAcheminement": "RIVES DU LOIR EN ANJOU", + "nomCommune": "RIVES DU LOIR EN ANJOU" }, { - "codePostal": "39140", - "codeCommune": "39017", - "libelleAcheminement": "ARLAY", - "nomCommune": "ARLAY" + "codePostal": "59249", + "codeCommune": "59025", + "libelleAcheminement": "AUBERS", + "nomCommune": "AUBERS" }, { - "codePostal": "52800", - "codeCommune": "52295", - "libelleAcheminement": "LOUVIERES", - "nomCommune": "LOUVIERES" + "codePostal": "02800", + "codeCommune": "02017", + "libelleAcheminement": "ANGUILCOURT LE SART", + "nomCommune": "ANGUILCOURT LE SART" }, { - "codePostal": "29440", - "codeCommune": "29271", - "libelleAcheminement": "ST VOUGAY", - "nomCommune": "ST VOUGAY" + "codePostal": "58370", + "codeCommune": "58140", + "libelleAcheminement": "LAROCHEMILLAY", + "nomCommune": "LAROCHEMILLAY" }, { - "codePostal": "24560", - "codeCommune": "24282", - "libelleAcheminement": "MONSAGUEL", - "nomCommune": "MONSAGUEL" + "codePostal": "46260", + "codeCommune": "46333", + "libelleAcheminement": "VIDAILLAC", + "nomCommune": "VIDAILLAC" }, { - "codePostal": "39210", - "codeCommune": "39017", - "libelleAcheminement": "ARLAY", - "nomCommune": "ARLAY" + "codePostal": "50680", + "codeCommune": "50004", + "libelleAcheminement": "AIREL", + "nomCommune": "AIREL" }, { - "codePostal": "52500", - "codeCommune": "52298", - "libelleAcheminement": "MAATZ", - "nomCommune": "MAATZ" + "codePostal": "59265", + "codeCommune": "59026", + "libelleAcheminement": "AUBIGNY AU BAC", + "nomCommune": "AUBIGNY AU BAC" }, { - "codePostal": "29250", - "codeCommune": "29273", - "libelleAcheminement": "SANTEC", - "nomCommune": "SANTEC" + "codePostal": "02860", + "codeCommune": "02024", + "libelleAcheminement": "ARRANCY", + "nomCommune": "ARRANCY" }, { - "codePostal": "24230", - "codeCommune": "24288", - "libelleAcheminement": "MONTAZEAU", - "nomCommune": "MONTAZEAU" + "codePostal": "58240", + "codeCommune": "58144", + "libelleAcheminement": "LIVRY", + "nomCommune": "LIVRY" }, { - "codePostal": "39800", - "codeCommune": "39028", - "libelleAcheminement": "AUMONT", - "nomCommune": "AUMONT" + "codePostal": "46210", + "codeCommune": "46338", + "libelleAcheminement": "BESSONIES", + "nomCommune": "BESSONIES" }, { - "codePostal": "52130", - "codeCommune": "52300", - "libelleAcheminement": "MAGNEUX", - "nomCommune": "MAGNEUX" + "codePostal": "50760", + "codeCommune": "50013", + "libelleAcheminement": "ANNEVILLE EN SAIRE", + "nomCommune": "ANNEVILLE EN SAIRE" }, { - "codePostal": "29560", - "codeCommune": "29280", - "libelleAcheminement": "TELGRUC SUR MER", - "nomCommune": "TELGRUC SUR MER" + "codePostal": "59440", + "codeCommune": "59035", + "libelleAcheminement": "AVESNELLES", + "nomCommune": "AVESNELLES" }, { - "codePostal": "24230", - "codeCommune": "24289", - "libelleAcheminement": "MONTCARET", - "nomCommune": "MONTCARET" + "codePostal": "02840", + "codeCommune": "02028", + "libelleAcheminement": "ATHIES SOUS LAON", + "nomCommune": "ATHIES SOUS LAON" }, { - "codePostal": "39200", - "codeCommune": "39032", - "libelleAcheminement": "AVIGNON LES ST CLAUDE", - "nomCommune": "AVIGNON LES ST CLAUDE" + "codePostal": "58140", + "codeCommune": "58157", + "libelleAcheminement": "MARIGNY L EGLISE", + "nomCommune": "MARIGNY L EGLISE" }, { - "codePostal": "52150", - "codeCommune": "52304", - "libelleAcheminement": "MALAINCOURT SUR MEUSE", - "nomCommune": "MALAINCOURT SUR MEUSE" + "codePostal": "46400", + "codeCommune": "46339", + "libelleAcheminement": "ST JEAN LAGINESTE", + "nomCommune": "ST JEAN LAGINESTE" }, { - "codePostal": "29440", - "codeCommune": "29285", - "libelleAcheminement": "TREFLAOUENAN", - "nomCommune": "TREFLAOUENAN" + "codePostal": "50500", + "codeCommune": "50023", + "libelleAcheminement": "AUVERS", + "nomCommune": "AUVERS" }, { - "codePostal": "24170", - "codeCommune": "24293", - "libelleAcheminement": "MONPLAISANT", - "nomCommune": "MONPLAISANT" + "codePostal": "59400", + "codeCommune": "59039", + "libelleAcheminement": "AWOINGT", + "nomCommune": "AWOINGT" }, { - "codePostal": "39800", - "codeCommune": "39040", - "libelleAcheminement": "BARRETAINE", - "nomCommune": "BARRETAINE" + "codePostal": "02420", + "codeCommune": "02030", + "libelleAcheminement": "AUBENCHEUL AUX BOIS", + "nomCommune": "AUBENCHEUL AUX BOIS" }, { - "codePostal": "52260", - "codeCommune": "52307", - "libelleAcheminement": "MARAC", - "nomCommune": "MARAC" + "codePostal": "58240", + "codeCommune": "58158", + "libelleAcheminement": "MARS SUR ALLIER", + "nomCommune": "MARS SUR ALLIER" }, { - "codePostal": "29430", - "codeCommune": "29287", - "libelleAcheminement": "TREFLEZ", - "nomCommune": "TREFLEZ" + "codePostal": "47350", + "codeCommune": "47002", + "libelleAcheminement": "AGME", + "nomCommune": "AGME" }, { - "codePostal": "24110", - "codeCommune": "24295", - "libelleAcheminement": "MONTREM", - "nomCommune": "MONTREM" + "codePostal": "50530", + "codeCommune": "50027", + "libelleAcheminement": "BACILLY", + "nomCommune": "BACILLY" }, { - "codePostal": "39380", - "codeCommune": "39048", - "libelleAcheminement": "BELMONT", - "nomCommune": "BELMONT" + "codePostal": "59270", + "codeCommune": "59043", + "libelleAcheminement": "BAILLEUL", + "nomCommune": "BAILLEUL" }, { - "codePostal": "52240", - "codeCommune": "52319", - "libelleAcheminement": "MENNOUVEAUX", - "nomCommune": "MENNOUVEAUX" + "codePostal": "02120", + "codeCommune": "02035", + "libelleAcheminement": "AUDIGNY", + "nomCommune": "AUDIGNY" }, { - "codePostal": "29120", - "codeCommune": "29296", - "libelleAcheminement": "TREMEOC", - "nomCommune": "TREMEOC" + "codePostal": "58800", + "codeCommune": "58159", + "libelleAcheminement": "MARIGNY SUR YONNE", + "nomCommune": "MARIGNY SUR YONNE" }, { - "codePostal": "24400", - "codeCommune": "24299", - "libelleAcheminement": "MUSSIDAN", - "nomCommune": "MUSSIDAN" + "codePostal": "47800", + "codeCommune": "47003", + "libelleAcheminement": "AGNAC", + "nomCommune": "AGNAC" }, { - "codePostal": "39150", - "codeCommune": "39052", - "libelleAcheminement": "BIEF DES MAISONS", - "nomCommune": "BIEF DES MAISONS" + "codePostal": "50450", + "codeCommune": "50028", + "libelleAcheminement": "LA BALEINE", + "nomCommune": "LA BALEINE" }, { - "codePostal": "52240", - "codeCommune": "52320", - "libelleAcheminement": "MERREY", - "nomCommune": "MERREY" + "codePostal": "59266", + "codeCommune": "59047", + "libelleAcheminement": "BANTEUX", + "nomCommune": "BANTEUX" }, { - "codePostal": "29720", - "codeCommune": "29298", - "libelleAcheminement": "TREOGAT", - "nomCommune": "TREOGAT" + "codePostal": "02220", + "codeCommune": "02036", + "libelleAcheminement": "AUGY", + "nomCommune": "AUGY" }, { - "codePostal": "24190", - "codeCommune": "24309", - "libelleAcheminement": "NEUVIC", - "nomCommune": "NEUVIC" + "codePostal": "58120", + "codeCommune": "58177", + "libelleAcheminement": "MONTIGNY EN MORVAN", + "nomCommune": "MONTIGNY EN MORVAN" }, { - "codePostal": "39140", - "codeCommune": "39056", - "libelleAcheminement": "BLETTERANS", - "nomCommune": "BLETTERANS" + "codePostal": "47110", + "codeCommune": "47006", + "libelleAcheminement": "ALLEZ ET CAZENEUVE", + "nomCommune": "ALLEZ ET CAZENEUVE" }, { - "codePostal": "52240", - "codeCommune": "52325", - "libelleAcheminement": "MILLIERES", - "nomCommune": "MILLIERES" + "codePostal": "50760", + "codeCommune": "50030", + "libelleAcheminement": "BARFLEUR", + "nomCommune": "BARFLEUR" }, { - "codePostal": "29440", - "codeCommune": "29301", - "libelleAcheminement": "TREZILIDE", - "nomCommune": "TREZILIDE" + "codePostal": "59554", + "codeCommune": "59048", + "libelleAcheminement": "BANTIGNY", + "nomCommune": "BANTIGNY" }, { - "codePostal": "24000", - "codeCommune": "24322", - "libelleAcheminement": "PERIGUEUX", - "nomCommune": "PERIGUEUX" + "codePostal": "02360", + "codeCommune": "02038", + "libelleAcheminement": "LES AUTELS", + "nomCommune": "LES AUTELS" }, { - "codePostal": "39130", - "codeCommune": "39061", - "libelleAcheminement": "BOISSIA", - "nomCommune": "BOISSIA" + "codePostal": "58340", + "codeCommune": "58178", + "libelleAcheminement": "MONTIGNY SUR CANNE", + "nomCommune": "MONTIGNY SUR CANNE" }, { - "codePostal": "52220", - "codeCommune": "52331", - "libelleAcheminement": "LA PORTE DU DER", - "nomCommune": "LA PORTE DU DER" + "codePostal": "47170", + "codeCommune": "47009", + "libelleAcheminement": "ANDIRAN", + "nomCommune": "ANDIRAN" }, { - "codePostal": "20000", - "codeCommune": "2A004", - "libelleAcheminement": "AJACCIO", - "nomCommune": "AJACCIO" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "24620", - "codeCommune": "24326", - "libelleAcheminement": "PEYZAC LE MOUSTIER", - "nomCommune": "PEYZAC LE MOUSTIER" + "codePostal": "59670", + "codeCommune": "59054", + "libelleAcheminement": "BAVINCHOVE", + "nomCommune": "BAVINCHOVE" }, { - "codePostal": "39240", - "codeCommune": "39062", - "libelleAcheminement": "LA BOISSIERE", - "nomCommune": "LA BOISSIERE" + "codePostal": "02300", + "codeCommune": "02041", + "libelleAcheminement": "AUTREVILLE", + "nomCommune": "AUTREVILLE" }, { - "codePostal": "52140", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "58290", + "codeCommune": "58182", + "libelleAcheminement": "MOULINS ENGILBERT", + "nomCommune": "MOULINS ENGILBERT" }, { - "codePostal": "20090", - "codeCommune": "2A004", - "libelleAcheminement": "AJACCIO", - "nomCommune": "AJACCIO" + "codePostal": "47470", + "codeCommune": "47025", + "libelleAcheminement": "BEAUVILLE", + "nomCommune": "BEAUVILLE" }, { - "codePostal": "24360", - "codeCommune": "24328", - "libelleAcheminement": "PIEGUT PLUVIERS", - "nomCommune": "PIEGUT PLUVIERS" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "39130", - "codeCommune": "39063", - "libelleAcheminement": "BONLIEU", - "nomCommune": "BONLIEU" + "codePostal": "59360", + "codeCommune": "59055", + "libelleAcheminement": "BAZUEL", + "nomCommune": "BAZUEL" }, { - "codePostal": "52140", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "02000", + "codeCommune": "02046", + "libelleAcheminement": "BARENTON BUGNY", + "nomCommune": "BARENTON BUGNY" }, { - "codePostal": "20166", - "codeCommune": "2A008", - "libelleAcheminement": "ALBITRECCIA", - "nomCommune": "ALBITRECCIA" + "codePostal": "58350", + "codeCommune": "58188", + "libelleAcheminement": "NANNAY", + "nomCommune": "NANNAY" }, { - "codePostal": "24150", - "codeCommune": "24334", - "libelleAcheminement": "PONTOURS", - "nomCommune": "PONTOURS" + "codePostal": "47700", + "codeCommune": "47026", + "libelleAcheminement": "BEAUZIAC", + "nomCommune": "BEAUZIAC" }, { - "codePostal": "39370", - "codeCommune": "39068", - "libelleAcheminement": "LES BOUCHOUX", - "nomCommune": "LES BOUCHOUX" + "codePostal": "50460", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "52140", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "59380", + "codeCommune": "59067", + "libelleAcheminement": "BERGUES", + "nomCommune": "BERGUES" }, { - "codePostal": "20151", - "codeCommune": "2A014", - "libelleAcheminement": "AMBIEGNA", - "nomCommune": "AMBIEGNA" + "codePostal": "02380", + "codeCommune": "02052", + "libelleAcheminement": "BASSOLES AULERS", + "nomCommune": "BASSOLES AULERS" }, { - "codePostal": "24370", - "codeCommune": "24336", - "libelleAcheminement": "PRATS DE CARLUX", - "nomCommune": "PRATS DE CARLUX" + "codePostal": "58420", + "codeCommune": "58191", + "libelleAcheminement": "NEUILLY", + "nomCommune": "NEUILLY" }, { - "codePostal": "39300", - "codeCommune": "39070", - "libelleAcheminement": "BOURG DE SIROD", - "nomCommune": "BOURG DE SIROD" + "codePostal": "47300", + "codeCommune": "47027", + "libelleAcheminement": "BIAS", + "nomCommune": "BIAS" }, { - "codePostal": "52240", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "50390", + "codeCommune": "50049", + "libelleAcheminement": "BESNEVILLE", + "nomCommune": "BESNEVILLE" }, { - "codePostal": "20151", - "codeCommune": "2A022", - "libelleAcheminement": "ARRO", - "nomCommune": "ARRO" + "codePostal": "59235", + "codeCommune": "59071", + "libelleAcheminement": "BERSEE", + "nomCommune": "BERSEE" }, { - "codePostal": "24600", - "codeCommune": "24352", - "libelleAcheminement": "RIBERAC", - "nomCommune": "RIBERAC" + "codePostal": "02330", + "codeCommune": "02053", + "libelleAcheminement": "VALLEES EN CHAMPAGNE", + "nomCommune": "VALLEES EN CHAMPAGNE" }, { - "codePostal": "39700", - "codeCommune": "39076", - "libelleAcheminement": "LA BRETENIERE", - "nomCommune": "LA BRETENIERE" + "codePostal": "58700", + "codeCommune": "58196", + "libelleAcheminement": "NOLAY", + "nomCommune": "NOLAY" }, { - "codePostal": "52230", - "codeCommune": "52337", - "libelleAcheminement": "MONTREUIL SUR THONNANCE", - "nomCommune": "MONTREUIL SUR THONNANCE" + "codePostal": "47200", + "codeCommune": "47028", + "libelleAcheminement": "BIRAC SUR TREC", + "nomCommune": "BIRAC SUR TREC" }, { - "codePostal": "20116", - "codeCommune": "2A024", - "libelleAcheminement": "AULLENE", - "nomCommune": "AULLENE" + "codePostal": "50800", + "codeCommune": "50069", + "libelleAcheminement": "BOURGUENOLLES", + "nomCommune": "BOURGUENOLLES" }, { - "codePostal": "24340", - "codeCommune": "24353", - "libelleAcheminement": "LA ROCHEBEAUCOURT ET ARGENTINE", - "nomCommune": "LA ROCHEBEAUCOURT ET ARGENTINE" + "codePostal": "59270", + "codeCommune": "59073", + "libelleAcheminement": "BERTHEN", + "nomCommune": "BERTHEN" }, { - "codePostal": "39320", - "codeCommune": "39080", - "libelleAcheminement": "BROISSIA", - "nomCommune": "BROISSIA" + "codePostal": "02110", + "codeCommune": "02057", + "libelleAcheminement": "BEAUREVOIR", + "nomCommune": "BEAUREVOIR" }, { - "codePostal": "52300", - "codeCommune": "52346", - "libelleAcheminement": "MUSSEY SUR MARNE", - "nomCommune": "MUSSEY SUR MARNE" + "codePostal": "58500", + "codeCommune": "58198", + "libelleAcheminement": "OISY", + "nomCommune": "OISY" }, { - "codePostal": "20160", - "codeCommune": "2A028", - "libelleAcheminement": "BALOGNA", - "nomCommune": "BALOGNA" + "codePostal": "47550", + "codeCommune": "47031", + "libelleAcheminement": "BOE", + "nomCommune": "BOE" }, { - "codePostal": "24490", - "codeCommune": "24354", - "libelleAcheminement": "LA ROCHE CHALAIS", - "nomCommune": "LA ROCHE CHALAIS" + "codePostal": "50260", + "codeCommune": "50082", + "libelleAcheminement": "BRICQUEBEC EN COTENTIN", + "nomCommune": "BRICQUEBEC EN COTENTIN" }, { - "codePostal": "39250", - "codeCommune": "39083", - "libelleAcheminement": "CENSEAU", - "nomCommune": "CENSEAU" + "codePostal": "59540", + "codeCommune": "59075", + "libelleAcheminement": "BETHENCOURT", + "nomCommune": "BETHENCOURT" }, { - "codePostal": "52800", - "codeCommune": "52353", - "libelleAcheminement": "NOGENT", - "nomCommune": "NOGENT" + "codePostal": "02110", + "codeCommune": "02061", + "libelleAcheminement": "BECQUIGNY", + "nomCommune": "BECQUIGNY" }, { - "codePostal": "20110", - "codeCommune": "2A035", - "libelleAcheminement": "BELVEDERE CAMPOMORO", - "nomCommune": "BELVEDERE CAMPOMORO" + "codePostal": "58700", + "codeCommune": "58203", + "libelleAcheminement": "OULON", + "nomCommune": "OULON" }, { - "codePostal": "24240", - "codeCommune": "24357", - "libelleAcheminement": "ROUFFIGNAC DE SIGOULES", - "nomCommune": "ROUFFIGNAC DE SIGOULES" + "codePostal": "47320", + "codeCommune": "47038", + "libelleAcheminement": "BOURRAN", + "nomCommune": "BOURRAN" }, { - "codePostal": "39250", - "codeCommune": "39085", - "libelleAcheminement": "CERNIEBAUD", - "nomCommune": "CERNIEBAUD" + "codePostal": "50200", + "codeCommune": "50084", + "libelleAcheminement": "BRICQUEVILLE LA BLOUETTE", + "nomCommune": "BRICQUEVILLE LA BLOUETTE" }, { - "codePostal": "52800", - "codeCommune": "52353", - "libelleAcheminement": "NOGENT", - "nomCommune": "NOGENT" + "codePostal": "59570", + "codeCommune": "59077", + "libelleAcheminement": "BETTRECHIES", + "nomCommune": "BETTRECHIES" }, { - "codePostal": "20136", - "codeCommune": "2A040", - "libelleAcheminement": "BOCOGNANO", - "nomCommune": "BOCOGNANO" + "codePostal": "02340", + "codeCommune": "02069", + "libelleAcheminement": "BERLISE", + "nomCommune": "BERLISE" }, { - "codePostal": "24510", - "codeCommune": "24362", - "libelleAcheminement": "VAL DE LOUYRE ET CAUDEAU", - "nomCommune": "VAL DE LOUYRE ET CAUDEAU" + "codePostal": "58130", + "codeCommune": "58212", + "libelleAcheminement": "POISEUX", + "nomCommune": "POISEUX" }, { - "codePostal": "39240", - "codeCommune": "39086", - "libelleAcheminement": "CERNON", - "nomCommune": "CERNON" + "codePostal": "47130", + "codeCommune": "47041", + "libelleAcheminement": "BRUCH", + "nomCommune": "BRUCH" }, { - "codePostal": "52190", - "codeCommune": "52360", - "libelleAcheminement": "OCCEY", - "nomCommune": "OCCEY" + "codePostal": "50480", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "20111", - "codeCommune": "2A048", - "libelleAcheminement": "CALCATOGGIO", - "nomCommune": "CALCATOGGIO" + "codePostal": "59217", + "codeCommune": "59081", + "libelleAcheminement": "BEVILLERS", + "nomCommune": "BEVILLERS" }, { - "codePostal": "24190", - "codeCommune": "24367", - "libelleAcheminement": "ST ANDRE DE DOUBLE", - "nomCommune": "ST ANDRE DE DOUBLE" + "codePostal": "02190", + "codeCommune": "02076", + "libelleAcheminement": "BERTRICOURT", + "nomCommune": "BERTRICOURT" }, { - "codePostal": "39570", - "codeCommune": "39088", - "libelleAcheminement": "CESANCEY", - "nomCommune": "CESANCEY" + "codePostal": "58150", + "codeCommune": "58215", + "libelleAcheminement": "POUILLY SUR LOIRE", + "nomCommune": "POUILLY SUR LOIRE" }, { - "codePostal": "52310", - "codeCommune": "52367", - "libelleAcheminement": "ORMOY LES SEXFONTAINES", - "nomCommune": "ORMOY LES SEXFONTAINES" + "codePostal": "47160", + "codeCommune": "47043", + "libelleAcheminement": "BUZET SUR BAISE", + "nomCommune": "BUZET SUR BAISE" }, { - "codePostal": "20190", - "codeCommune": "2A064", - "libelleAcheminement": "CARDO TORGIA", - "nomCommune": "CARDO TORGIA" + "codePostal": "50500", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "24410", - "codeCommune": "24376", - "libelleAcheminement": "ST AULAYE PUYMANGOU", - "nomCommune": "ST AULAYE PUYMANGOU" + "codePostal": "59380", + "codeCommune": "59082", + "libelleAcheminement": "BIERNE", + "nomCommune": "BIERNE" }, { - "codePostal": "39150", - "codeCommune": "39091", - "libelleAcheminement": "LES CHALESMES", - "nomCommune": "LES CHALESMES" + "codePostal": "02200", + "codeCommune": "02077", + "libelleAcheminement": "BERZY LE SEC", + "nomCommune": "BERZY LE SEC" }, { - "codePostal": "52400", - "codeCommune": "52377", - "libelleAcheminement": "PARNOY EN BASSIGNY", - "nomCommune": "PARNOY EN BASSIGNY" + "codePostal": "58500", + "codeCommune": "58217", + "libelleAcheminement": "POUSSEAUX", + "nomCommune": "POUSSEAUX" }, { - "codePostal": "20160", - "codeCommune": "2A090", - "libelleAcheminement": "COGGIA", - "nomCommune": "COGGIA" + "codePostal": "47290", + "codeCommune": "47048", + "libelleAcheminement": "CANCON", + "nomCommune": "CANCON" }, { - "codePostal": "24150", - "codeCommune": "24382", - "libelleAcheminement": "ST CAPRAISE DE LALINDE", - "nomCommune": "ST CAPRAISE DE LALINDE" + "codePostal": "50500", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "39100", - "codeCommune": "39101", - "libelleAcheminement": "CHAMPVANS", - "nomCommune": "CHAMPVANS" + "codePostal": "59380", + "codeCommune": "59083", + "libelleAcheminement": "BISSEZEELE", + "nomCommune": "BISSEZEELE" }, { - "codePostal": "52200", - "codeCommune": "52380", - "libelleAcheminement": "PEIGNEY", - "nomCommune": "PEIGNEY" + "codePostal": "02110", + "codeCommune": "02095", + "libelleAcheminement": "BOHAIN EN VERMANDOIS", + "nomCommune": "BOHAIN EN VERMANDOIS" }, { - "codePostal": "20123", - "codeCommune": "2A091", - "libelleAcheminement": "COGNOCOLI MONTICCHI", - "nomCommune": "COGNOCOLI MONTICCHI" + "codePostal": "58700", + "codeCommune": "58218", + "libelleAcheminement": "PREMERY", + "nomCommune": "PREMERY" }, { - "codePostal": "24500", - "codeCommune": "24383", - "libelleAcheminement": "ST CAPRAISE D EYMET", - "nomCommune": "ST CAPRAISE D EYMET" + "codePostal": "47240", + "codeCommune": "47051", + "libelleAcheminement": "CASTELCULIER", + "nomCommune": "CASTELCULIER" }, { - "codePostal": "39130", - "codeCommune": "39107", - "libelleAcheminement": "CHARCIER", - "nomCommune": "CHARCIER" + "codePostal": "50500", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "52240", - "codeCommune": "52385", - "libelleAcheminement": "PERRUSSE", - "nomCommune": "PERRUSSE" + "codePostal": "59268", + "codeCommune": "59085", + "libelleAcheminement": "BLECOURT", + "nomCommune": "BLECOURT" }, { - "codePostal": "20135", - "codeCommune": "2A092", - "libelleAcheminement": "CONCA", - "nomCommune": "CONCA" + "codePostal": "02400", + "codeCommune": "02098", + "libelleAcheminement": "BONNEIL", + "nomCommune": "BONNEIL" }, { - "codePostal": "24330", - "codeCommune": "24390", - "libelleAcheminement": "ST CREPIN D AUBEROCHE", - "nomCommune": "ST CREPIN D AUBEROCHE" + "codePostal": "58360", + "codeCommune": "58219", + "libelleAcheminement": "PREPORCHE", + "nomCommune": "PREPORCHE" }, { - "codePostal": "39210", - "codeCommune": "39114", - "libelleAcheminement": "CHATEAU CHALON", - "nomCommune": "CHATEAU CHALON" + "codePostal": "47700", + "codeCommune": "47052", + "libelleAcheminement": "CASTELJALOUX", + "nomCommune": "CASTELJALOUX" }, { - "codePostal": "52120", - "codeCommune": "52399", - "libelleAcheminement": "PONT LA VILLE", - "nomCommune": "PONT LA VILLE" + "codePostal": "50620", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "20126", - "codeCommune": "2A100", - "libelleAcheminement": "CRISTINACCE", - "nomCommune": "CRISTINACCE" + "codePostal": "59830", + "codeCommune": "59096", + "libelleAcheminement": "BOURGHELLES", + "nomCommune": "BOURGHELLES" }, { - "codePostal": "24400", - "codeCommune": "24399", - "libelleAcheminement": "ST ETIENNE DE PUYCORBIER", - "nomCommune": "ST ETIENNE DE PUYCORBIER" + "codePostal": "02420", + "codeCommune": "02100", + "libelleAcheminement": "BONY", + "nomCommune": "BONY" }, { - "codePostal": "39120", - "codeCommune": "39128", - "libelleAcheminement": "CHAUSSIN", - "nomCommune": "CHAUSSIN" + "codePostal": "58330", + "codeCommune": "58233", + "libelleAcheminement": "ST BENIN DES BOIS", + "nomCommune": "ST BENIN DES BOIS" }, { - "codePostal": "52800", - "codeCommune": "52401", - "libelleAcheminement": "POULANGY", - "nomCommune": "POULANGY" + "codePostal": "47220", + "codeCommune": "47060", + "libelleAcheminement": "CAUDECOSTE", + "nomCommune": "CAUDECOSTE" }, { - "codePostal": "20100", - "codeCommune": "2A129", - "libelleAcheminement": "GROSSA", - "nomCommune": "GROSSA" + "codePostal": "50510", + "codeCommune": "50109", + "libelleAcheminement": "CERENCES", + "nomCommune": "CERENCES" }, { - "codePostal": "24640", - "codeCommune": "24401", - "libelleAcheminement": "STE EULALIE D ANS", - "nomCommune": "STE EULALIE D ANS" + "codePostal": "59222", + "codeCommune": "59099", + "libelleAcheminement": "BOUSIES", + "nomCommune": "BOUSIES" }, { - "codePostal": "39150", - "codeCommune": "39130", - "libelleAcheminement": "NANCHEZ", - "nomCommune": "NANCHEZ" + "codePostal": "02160", + "codeCommune": "02106", + "libelleAcheminement": "BOURG ET COMIN", + "nomCommune": "BOURG ET COMIN" }, { - "codePostal": "52220", - "codeCommune": "52411", - "libelleAcheminement": "RIVES DERVOISES", - "nomCommune": "RIVES DERVOISES" + "codePostal": "58270", + "codeCommune": "58239", + "libelleAcheminement": "ST FIRMIN", + "nomCommune": "ST FIRMIN" }, { - "codePostal": "20128", - "codeCommune": "2A132", - "libelleAcheminement": "GUARGUALE", - "nomCommune": "GUARGUALE" + "codePostal": "47430", + "codeCommune": "47061", + "libelleAcheminement": "CAUMONT SUR GARONNE", + "nomCommune": "CAUMONT SUR GARONNE" }, { - "codePostal": "24510", - "codeCommune": "24405", - "libelleAcheminement": "ST FELIX DE VILLADEIX", - "nomCommune": "ST FELIX DE VILLADEIX" + "codePostal": "50370", + "codeCommune": "50112", + "libelleAcheminement": "LA CHAISE BAUDOUIN", + "nomCommune": "LA CHAISE BAUDOUIN" }, { - "codePostal": "39240", - "codeCommune": "39137", - "libelleAcheminement": "ST HYMETIERE SUR VALOUSE", - "nomCommune": "ST HYMETIERE SUR VALOUSE" + "codePostal": "59860", + "codeCommune": "59112", + "libelleAcheminement": "BRUAY SUR L ESCAUT", + "nomCommune": "BRUAY SUR L ESCAUT" }, { - "codePostal": "52600", - "codeCommune": "52424", - "libelleAcheminement": "RIVIERES LE BOIS", - "nomCommune": "RIVIERES LE BOIS" + "codePostal": "02000", + "codeCommune": "02108", + "libelleAcheminement": "BOURGUIGNON SOUS MONTBAVIN", + "nomCommune": "BOURGUIGNON SOUS MONTBAVIN" }, { - "codePostal": "20160", - "codeCommune": "2A141", - "libelleAcheminement": "LETIA", - "nomCommune": "LETIA" + "codePostal": "58330", + "codeCommune": "58240", + "libelleAcheminement": "ST FRANCHY", + "nomCommune": "ST FRANCHY" }, { - "codePostal": "24800", - "codeCommune": "24425", - "libelleAcheminement": "ST JEAN DE COLE", - "nomCommune": "ST JEAN DE COLE" + "codePostal": "47320", + "codeCommune": "47065", + "libelleAcheminement": "CLAIRAC", + "nomCommune": "CLAIRAC" }, { - "codePostal": "39130", - "codeCommune": "39143", - "libelleAcheminement": "CHEVROTAINE", - "nomCommune": "CHEVROTAINE" + "codePostal": "50870", + "codeCommune": "50126", + "libelleAcheminement": "CHAVOY", + "nomCommune": "CHAVOY" }, { - "codePostal": "52210", - "codeCommune": "52431", - "libelleAcheminement": "ROCHETAILLEE", - "nomCommune": "ROCHETAILLEE" + "codePostal": "59199", + "codeCommune": "59114", + "libelleAcheminement": "BRUILLE ST AMAND", + "nomCommune": "BRUILLE ST AMAND" }, { - "codePostal": "20139", - "codeCommune": "2A144", - "libelleAcheminement": "LOPIGNA", - "nomCommune": "LOPIGNA" + "codePostal": "02400", + "codeCommune": "02114", + "libelleAcheminement": "BRASLES", + "nomCommune": "BRASLES" }, { - "codePostal": "24160", - "codeCommune": "24429", - "libelleAcheminement": "ST JORY LAS BLOUX", - "nomCommune": "ST JORY LAS BLOUX" + "codePostal": "58300", + "codeCommune": "58245", + "libelleAcheminement": "ST HILAIRE FONTAINE", + "nomCommune": "ST HILAIRE FONTAINE" }, { - "codePostal": "39570", - "codeCommune": "39146", - "libelleAcheminement": "CHILLY LE VIGNOBLE", - "nomCommune": "CHILLY LE VIGNOBLE" + "codePostal": "47450", + "codeCommune": "47069", + "libelleAcheminement": "COLAYRAC ST CIRQ", + "nomCommune": "COLAYRAC ST CIRQ" }, { - "codePostal": "52500", - "codeCommune": "52438", - "libelleAcheminement": "ROUGEUX", - "nomCommune": "ROUGEUX" + "codePostal": "50110", + "codeCommune": "50129", + "libelleAcheminement": "CHERBOURG EN COTENTIN", + "nomCommune": "CHERBOURG EN COTENTIN" }, { - "codePostal": "20165", - "codeCommune": "2A146", - "libelleAcheminement": "LORETO DI TALLANO", - "nomCommune": "LORETO DI TALLANO" + "codePostal": "59151", + "codeCommune": "59117", + "libelleAcheminement": "BUGNICOURT", + "nomCommune": "BUGNICOURT" }, { - "codePostal": "24400", - "codeCommune": "24444", - "libelleAcheminement": "ST LOUIS EN L ISLE", - "nomCommune": "ST LOUIS EN L ISLE" + "codePostal": "02480", + "codeCommune": "02117", + "libelleAcheminement": "BRAY ST CHRISTOPHE", + "nomCommune": "BRAY ST CHRISTOPHE" }, { - "codePostal": "39110", - "codeCommune": "39147", - "libelleAcheminement": "CHILLY SUR SALINS", - "nomCommune": "CHILLY SUR SALINS" + "codePostal": "58360", + "codeCommune": "58246", + "libelleAcheminement": "ST HONORE LES BAINS", + "nomCommune": "ST HONORE LES BAINS" }, { - "codePostal": "52300", - "codeCommune": "52440", - "libelleAcheminement": "ROUVROY SUR MARNE", - "nomCommune": "ROUVROY SUR MARNE" + "codePostal": "47260", + "codeCommune": "47071", + "libelleAcheminement": "COULX", + "nomCommune": "COULX" }, { - "codePostal": "20117", - "codeCommune": "2A181", - "libelleAcheminement": "OCANA", - "nomCommune": "OCANA" + "codePostal": "50120", + "codeCommune": "50129", + "libelleAcheminement": "CHERBOURG EN COTENTIN", + "nomCommune": "CHERBOURG EN COTENTIN" }, { - "codePostal": "24800", - "codeCommune": "24453", - "libelleAcheminement": "ST MARTIN DE FRESSENGEAS", - "nomCommune": "ST MARTIN DE FRESSENGEAS" + "codePostal": "59360", + "codeCommune": "59136", + "libelleAcheminement": "LE CATEAU CAMBRESIS", + "nomCommune": "LE CATEAU CAMBRESIS" }, { - "codePostal": "39140", - "codeCommune": "39160", - "libelleAcheminement": "COMMENAILLES", - "nomCommune": "COMMENAILLES" + "codePostal": "02210", + "codeCommune": "02119", + "libelleAcheminement": "BRECY", + "nomCommune": "BRECY" }, { - "codePostal": "52300", - "codeCommune": "52442", - "libelleAcheminement": "RUPT", - "nomCommune": "RUPT" + "codePostal": "58150", + "codeCommune": "58248", + "libelleAcheminement": "ST LAURENT L ABBAYE", + "nomCommune": "ST LAURENT L ABBAYE" }, { - "codePostal": "20147", - "codeCommune": "2A197", - "libelleAcheminement": "OSANI", - "nomCommune": "OSANI" + "codePostal": "47370", + "codeCommune": "47072", + "libelleAcheminement": "COURBIAC", + "nomCommune": "COURBIAC" }, { - "codePostal": "24400", - "codeCommune": "24462", - "libelleAcheminement": "ST MEDARD DE MUSSIDAN", - "nomCommune": "ST MEDARD DE MUSSIDAN" + "codePostal": "50700", + "codeCommune": "50138", + "libelleAcheminement": "COLOMBY", + "nomCommune": "COLOMBY" }, { - "codePostal": "39570", - "codeCommune": "39164", - "libelleAcheminement": "CONLIEGE", - "nomCommune": "CONLIEGE" + "codePostal": "59740", + "codeCommune": "59147", + "libelleAcheminement": "CHOISIES", + "nomCommune": "CHOISIES" }, { - "codePostal": "52210", - "codeCommune": "52450", - "libelleAcheminement": "ST LOUP SUR AUJON", - "nomCommune": "ST LOUP SUR AUJON" + "codePostal": "02210", + "codeCommune": "02121", + "libelleAcheminement": "BRENY", + "nomCommune": "BRENY" }, { - "codePostal": "20150", - "codeCommune": "2A198", - "libelleAcheminement": "OTA", - "nomCommune": "OTA" + "codePostal": "58350", + "codeCommune": "58252", + "libelleAcheminement": "ST MALO EN DONZIOIS", + "nomCommune": "ST MALO EN DONZIOIS" }, { - "codePostal": "24160", - "codeCommune": "24476", - "libelleAcheminement": "ST PANTALY D EXCIDEUIL", - "nomCommune": "ST PANTALY D EXCIDEUIL" + "codePostal": "47340", + "codeCommune": "47075", + "libelleAcheminement": "LA CROIX BLANCHE", + "nomCommune": "LA CROIX BLANCHE" }, { - "codePostal": "39570", - "codeCommune": "39170", - "libelleAcheminement": "COURLANS", - "nomCommune": "COURLANS" + "codePostal": "50420", + "codeCommune": "50139", + "libelleAcheminement": "CONDE SUR VIRE", + "nomCommune": "CONDE SUR VIRE" }, { - "codePostal": "52210", - "codeCommune": "52450", - "libelleAcheminement": "ST LOUP SUR AUJON", - "nomCommune": "ST LOUP SUR AUJON" + "codePostal": "59830", + "codeCommune": "59150", + "libelleAcheminement": "COBRIEUX", + "nomCommune": "COBRIEUX" }, { - "codePostal": "20160", - "codeCommune": "2A240", - "libelleAcheminement": "POGGIOLO", - "nomCommune": "POGGIOLO" + "codePostal": "02500", + "codeCommune": "02134", + "libelleAcheminement": "BUIRE", + "nomCommune": "BUIRE" }, { - "codePostal": "24600", - "codeCommune": "24477", - "libelleAcheminement": "ST PARDOUX DE DRONE", - "nomCommune": "ST PARDOUX DE DRONE" + "codePostal": "58310", + "codeCommune": "58270", + "libelleAcheminement": "ST VERAIN", + "nomCommune": "ST VERAIN" }, { - "codePostal": "39570", - "codeCommune": "39170", - "libelleAcheminement": "COURLANS", - "nomCommune": "COURLANS" + "codePostal": "47210", + "codeCommune": "47080", + "libelleAcheminement": "DEVILLAC", + "nomCommune": "DEVILLAC" }, { - "codePostal": "52200", - "codeCommune": "52452", - "libelleAcheminement": "ST MARTIN LES LANGRES", - "nomCommune": "ST MARTIN LES LANGRES" + "codePostal": "50200", + "codeCommune": "50147", + "libelleAcheminement": "COUTANCES", + "nomCommune": "COUTANCES" }, { - "codePostal": "20134", - "codeCommune": "2A268", - "libelleAcheminement": "SAMPOLO", - "nomCommune": "SAMPOLO" + "codePostal": "59154", + "codeCommune": "59160", + "libelleAcheminement": "CRESPIN", + "nomCommune": "CRESPIN" }, { - "codePostal": "24800", - "codeCommune": "24481", - "libelleAcheminement": "ST PAUL LA ROCHE", - "nomCommune": "ST PAUL LA ROCHE" + "codePostal": "02200", + "codeCommune": "02138", + "libelleAcheminement": "BUZANCY", + "nomCommune": "BUZANCY" }, { - "codePostal": "39600", - "codeCommune": "39176", - "libelleAcheminement": "CRAMANS", - "nomCommune": "CRAMANS" + "codePostal": "58800", + "codeCommune": "58272", + "libelleAcheminement": "SARDY LES EPIRY", + "nomCommune": "SARDY LES EPIRY" }, { - "codePostal": "52300", - "codeCommune": "52456", - "libelleAcheminement": "ST URBAIN MACONCOURT", - "nomCommune": "ST URBAIN MACONCOURT" + "codePostal": "47110", + "codeCommune": "47081", + "libelleAcheminement": "DOLMAYRAC", + "nomCommune": "DOLMAYRAC" }, { - "codePostal": "20152", - "codeCommune": "2A285", - "libelleAcheminement": "SORBOLLANO", - "nomCommune": "SORBOLLANO" + "codePostal": "50220", + "codeCommune": "50168", + "libelleAcheminement": "DUCEY LES CHERIS", + "nomCommune": "DUCEY LES CHERIS" }, { - "codePostal": "24320", - "codeCommune": "24482", - "libelleAcheminement": "ST PAUL LIZONNE", - "nomCommune": "ST PAUL LIZONNE" + "codePostal": "59258", + "codeCommune": "59161", + "libelleAcheminement": "CREVECOEUR SUR L ESCAUT", + "nomCommune": "CREVECOEUR SUR L ESCAUT" }, { - "codePostal": "39210", - "codeCommune": "39177", - "libelleAcheminement": "HAUTEROCHE", - "nomCommune": "HAUTEROCHE" + "codePostal": "02260", + "codeCommune": "02141", + "libelleAcheminement": "LA CAPELLE", + "nomCommune": "LA CAPELLE" }, { - "codePostal": "52800", - "codeCommune": "52459", - "libelleAcheminement": "SARCEY", - "nomCommune": "SARCEY" + "codePostal": "58160", + "codeCommune": "58273", + "libelleAcheminement": "SAUVIGNY LES BOIS", + "nomCommune": "SAUVIGNY LES BOIS" }, { - "codePostal": "20117", - "codeCommune": "2A326", - "libelleAcheminement": "TOLLA", - "nomCommune": "TOLLA" + "codePostal": "47120", + "codeCommune": "47089", + "libelleAcheminement": "ESCLOTTES", + "nomCommune": "ESCLOTTES" }, { - "codePostal": "24450", - "codeCommune": "24486", - "libelleAcheminement": "ST PIERRE DE FRUGIE", - "nomCommune": "ST PIERRE DE FRUGIE" + "codePostal": "50320", + "codeCommune": "50188", + "libelleAcheminement": "FOLLIGNY", + "nomCommune": "FOLLIGNY" }, { - "codePostal": "39570", - "codeCommune": "39177", - "libelleAcheminement": "HAUTEROCHE", - "nomCommune": "HAUTEROCHE" + "codePostal": "59380", + "codeCommune": "59162", + "libelleAcheminement": "CROCHTE", + "nomCommune": "CROCHTE" }, { - "codePostal": "52000", - "codeCommune": "52469", - "libelleAcheminement": "SEMOUTIERS MONTSAON", - "nomCommune": "SEMOUTIERS MONTSAON" + "codePostal": "02490", + "codeCommune": "02144", + "libelleAcheminement": "CAULAINCOURT", + "nomCommune": "CAULAINCOURT" }, { - "codePostal": "20160", - "codeCommune": "2A348", - "libelleAcheminement": "VICO", - "nomCommune": "VICO" + "codePostal": "58330", + "codeCommune": "58275", + "libelleAcheminement": "SAXI BOURDON", + "nomCommune": "SAXI BOURDON" }, { - "codePostal": "24800", - "codeCommune": "24496", - "libelleAcheminement": "ST ROMAIN ET ST CLEMENT", - "nomCommune": "ST ROMAIN ET ST CLEMENT" + "codePostal": "47400", + "codeCommune": "47094", + "libelleAcheminement": "FAUGUEROLLES", + "nomCommune": "FAUGUEROLLES" }, { - "codePostal": "39100", - "codeCommune": "39182", - "libelleAcheminement": "CRISSEY", - "nomCommune": "CRISSEY" + "codePostal": "50420", + "codeCommune": "50192", + "libelleAcheminement": "FOURNEAUX", + "nomCommune": "FOURNEAUX" }, { - "codePostal": "52320", - "codeCommune": "52480", - "libelleAcheminement": "SONCOURT SUR MARNE", - "nomCommune": "SONCOURT SUR MARNE" + "codePostal": "59222", + "codeCommune": "59164", + "libelleAcheminement": "CROIX CALUYAU", + "nomCommune": "CROIX CALUYAU" }, { - "codePostal": "20110", - "codeCommune": "2A349", - "libelleAcheminement": "VIGGIANELLO", - "nomCommune": "VIGGIANELLO" + "codePostal": "02320", + "codeCommune": "02153", + "libelleAcheminement": "CESSIERES SUZY", + "nomCommune": "CESSIERES SUZY" }, { - "codePostal": "24170", - "codeCommune": "24517", - "libelleAcheminement": "SALLES DE BELVES", - "nomCommune": "SALLES DE BELVES" + "codePostal": "58000", + "codeCommune": "58278", + "libelleAcheminement": "SERMOISE SUR LOIRE", + "nomCommune": "SERMOISE SUR LOIRE" }, { - "codePostal": "39260", - "codeCommune": "39184", - "libelleAcheminement": "LES CROZETS", - "nomCommune": "LES CROZETS" + "codePostal": "47330", + "codeCommune": "47096", + "libelleAcheminement": "FERRENSAC", + "nomCommune": "FERRENSAC" }, { - "codePostal": "52800", - "codeCommune": "52488", - "libelleAcheminement": "THIVET", - "nomCommune": "THIVET" + "codePostal": "50850", + "codeCommune": "50193", + "libelleAcheminement": "LE FRESNE PORET", + "nomCommune": "LE FRESNE PORET" }, { - "codePostal": "20173", - "codeCommune": "2A358", - "libelleAcheminement": "ZEVACO", - "nomCommune": "ZEVACO" + "codePostal": "59740", + "codeCommune": "59174", + "libelleAcheminement": "DIMECHAUX", + "nomCommune": "DIMECHAUX" }, { - "codePostal": "24200", - "codeCommune": "24520", - "libelleAcheminement": "SARLAT LA CANEDA", - "nomCommune": "SARLAT LA CANEDA" + "codePostal": "02880", + "codeCommune": "02175", + "libelleAcheminement": "CHAVIGNY", + "nomCommune": "CHAVIGNY" }, { - "codePostal": "39350", - "codeCommune": "39190", - "libelleAcheminement": "DAMPIERRE", - "nomCommune": "DAMPIERRE" + "codePostal": "58700", + "codeCommune": "58279", + "libelleAcheminement": "SICHAMPS", + "nomCommune": "SICHAMPS" }, { - "codePostal": "52240", - "codeCommune": "52489", - "libelleAcheminement": "THOL LES MILLIERES", - "nomCommune": "THOL LES MILLIERES" + "codePostal": "47600", + "codeCommune": "47098", + "libelleAcheminement": "FIEUX", + "nomCommune": "FIEUX" }, { - "codePostal": "20144", - "codeCommune": "2A362", - "libelleAcheminement": "ZONZA", - "nomCommune": "ZONZA" + "codePostal": "50310", + "codeCommune": "50194", + "libelleAcheminement": "FRESVILLE", + "nomCommune": "FRESVILLE" }, { - "codePostal": "24800", - "codeCommune": "24522", - "libelleAcheminement": "SARRAZAC", - "nomCommune": "SARRAZAC" + "codePostal": "59500", + "codeCommune": "59178", + "libelleAcheminement": "DOUAI", + "nomCommune": "DOUAI" }, { - "codePostal": "39700", - "codeCommune": "39190", - "libelleAcheminement": "DAMPIERRE", - "nomCommune": "DAMPIERRE" + "codePostal": "02860", + "codeCommune": "02178", + "libelleAcheminement": "CHERMIZY AILLES", + "nomCommune": "CHERMIZY AILLES" }, { - "codePostal": "52300", - "codeCommune": "52490", - "libelleAcheminement": "THONNANCE LES JOINVILLE", - "nomCommune": "THONNANCE LES JOINVILLE" + "codePostal": "58500", + "codeCommune": "58282", + "libelleAcheminement": "SURGY", + "nomCommune": "SURGY" }, { - "codePostal": "20270", - "codeCommune": "2B016", - "libelleAcheminement": "ANTISANTI", - "nomCommune": "ANTISANTI" + "codePostal": "47360", + "codeCommune": "47104", + "libelleAcheminement": "FREGIMONT", + "nomCommune": "FREGIMONT" }, { - "codePostal": "24240", - "codeCommune": "24549", - "libelleAcheminement": "THENAC", - "nomCommune": "THENAC" + "codePostal": "50450", + "codeCommune": "50197", + "libelleAcheminement": "GAVRAY SUR SIENNE", + "nomCommune": "GAVRAY SUR SIENNE" }, { - "codePostal": "39230", - "codeCommune": "39191", - "libelleAcheminement": "DARBONNAY", - "nomCommune": "DARBONNAY" + "codePostal": "59500", + "codeCommune": "59178", + "libelleAcheminement": "DOUAI", + "nomCommune": "DOUAI" }, { - "codePostal": "52230", - "codeCommune": "52491", - "libelleAcheminement": "THONNANCE LES MOULINS", - "nomCommune": "THONNANCE LES MOULINS" + "codePostal": "02000", + "codeCommune": "02183", + "libelleAcheminement": "CHEVREGNY", + "nomCommune": "CHEVREGNY" }, { - "codePostal": "20226", - "codeCommune": "2B034", - "libelleAcheminement": "BELGODERE", - "nomCommune": "BELGODERE" + "codePostal": "58190", + "codeCommune": "58286", + "libelleAcheminement": "TANNAY", + "nomCommune": "TANNAY" }, { - "codePostal": "24320", - "codeCommune": "24554", - "libelleAcheminement": "LA TOUR BLANCHE CERCLES", - "nomCommune": "LA TOUR BLANCHE CERCLES" + "codePostal": "47200", + "codeCommune": "47108", + "libelleAcheminement": "GAUJAC", + "nomCommune": "GAUJAC" }, { - "codePostal": "39270", - "codeCommune": "39200", - "libelleAcheminement": "DOMPIERRE SUR MONT", - "nomCommune": "DOMPIERRE SUR MONT" + "codePostal": "50450", + "codeCommune": "50197", + "libelleAcheminement": "GAVRAY SUR SIENNE", + "nomCommune": "GAVRAY SUR SIENNE" }, { - "codePostal": "52130", - "codeCommune": "52497", - "libelleAcheminement": "TROISFONTAINES LA VILLE", - "nomCommune": "TROISFONTAINES LA VILLE" + "codePostal": "59440", + "codeCommune": "59181", + "libelleAcheminement": "DOURLERS", + "nomCommune": "DOURLERS" }, { - "codePostal": "20235", - "codeCommune": "2B039", - "libelleAcheminement": "BISINCHI", - "nomCommune": "BISINCHI" + "codePostal": "02880", + "codeCommune": "02198", + "libelleAcheminement": "CLAMECY", + "nomCommune": "CLAMECY" }, { - "codePostal": "24750", - "codeCommune": "24557", - "libelleAcheminement": "TRELISSAC", - "nomCommune": "TRELISSAC" + "codePostal": "58260", + "codeCommune": "58291", + "libelleAcheminement": "THIANGES", + "nomCommune": "THIANGES" }, { - "codePostal": "39130", - "codeCommune": "39201", - "libelleAcheminement": "DOUCIER", - "nomCommune": "DOUCIER" + "codePostal": "47250", + "codeCommune": "47115", + "libelleAcheminement": "GUERIN", + "nomCommune": "GUERIN" }, { - "codePostal": "52130", - "codeCommune": "52497", - "libelleAcheminement": "TROISFONTAINES LA VILLE", - "nomCommune": "TROISFONTAINES LA VILLE" + "codePostal": "50560", + "codeCommune": "50215", + "libelleAcheminement": "GOUVILLE SUR MER", + "nomCommune": "GOUVILLE SUR MER" }, { - "codePostal": "20214", - "codeCommune": "2B049", - "libelleAcheminement": "CALENZANA", - "nomCommune": "CALENZANA" + "codePostal": "59330", + "codeCommune": "59187", + "libelleAcheminement": "ECLAIBES", + "nomCommune": "ECLAIBES" }, { - "codePostal": "24290", - "codeCommune": "24563", - "libelleAcheminement": "VALOJOULX", - "nomCommune": "VALOJOULX" + "codePostal": "02600", + "codeCommune": "02201", + "libelleAcheminement": "COEUVRES ET VALSERY", + "nomCommune": "COEUVRES ET VALSERY" }, { - "codePostal": "39700", - "codeCommune": "39205", - "libelleAcheminement": "ECLANS NENON", - "nomCommune": "ECLANS NENON" + "codePostal": "58300", + "codeCommune": "58293", + "libelleAcheminement": "TOURY LURCY", + "nomCommune": "TOURY LURCY" }, { - "codePostal": "52100", - "codeCommune": "52500", - "libelleAcheminement": "VALCOURT", - "nomCommune": "VALCOURT" + "codePostal": "47420", + "codeCommune": "47119", + "libelleAcheminement": "HOUEILLES", + "nomCommune": "HOUEILLES" }, { - "codePostal": "20252", - "codeCommune": "2B055", - "libelleAcheminement": "CAMPITELLO", - "nomCommune": "CAMPITELLO" + "codePostal": "50400", + "codeCommune": "50218", + "libelleAcheminement": "GRANVILLE", + "nomCommune": "GRANVILLE" }, { - "codePostal": "24600", - "codeCommune": "24564", - "libelleAcheminement": "VANXAINS", - "nomCommune": "VANXAINS" + "codePostal": "59620", + "codeCommune": "59188", + "libelleAcheminement": "ECUELIN", + "nomCommune": "ECUELIN" }, { - "codePostal": "39600", - "codeCommune": "39206", - "libelleAcheminement": "ECLEUX", - "nomCommune": "ECLEUX" + "codePostal": "02370", + "codeCommune": "02210", + "libelleAcheminement": "CONDE SUR AISNE", + "nomCommune": "CONDE SUR AISNE" }, { - "codePostal": "52200", - "codeCommune": "52507", - "libelleAcheminement": "VAUXBONS", - "nomCommune": "VAUXBONS" + "codePostal": "58130", + "codeCommune": "58300", + "libelleAcheminement": "URZY", + "nomCommune": "URZY" }, { - "codePostal": "20229", - "codeCommune": "2B067", - "libelleAcheminement": "CARPINETO", - "nomCommune": "CARPINETO" + "codePostal": "47240", + "codeCommune": "47128", + "libelleAcheminement": "LAFOX", + "nomCommune": "LAFOX" }, { - "codePostal": "24320", - "codeCommune": "24569", - "libelleAcheminement": "VENDOIRE", - "nomCommune": "VENDOIRE" + "codePostal": "50450", + "codeCommune": "50221", + "libelleAcheminement": "GRIMESNIL", + "nomCommune": "GRIMESNIL" }, { - "codePostal": "39250", - "codeCommune": "39214", - "libelleAcheminement": "ESSERVAL TARTRE", - "nomCommune": "ESSERVAL TARTRE" + "codePostal": "59114", + "codeCommune": "59189", + "libelleAcheminement": "EECKE", + "nomCommune": "EECKE" }, { - "codePostal": "52310", - "codeCommune": "52522", - "libelleAcheminement": "VIEVILLE", - "nomCommune": "VIEVILLE" + "codePostal": "02330", + "codeCommune": "02213", + "libelleAcheminement": "CONNIGIS", + "nomCommune": "CONNIGIS" }, { - "codePostal": "20250", - "codeCommune": "2B074", - "libelleAcheminement": "CASANOVA", - "nomCommune": "CASANOVA" + "codePostal": "58210", + "codeCommune": "58304", + "libelleAcheminement": "VARZY", + "nomCommune": "VARZY" }, { - "codePostal": "24380", - "codeCommune": "24576", - "libelleAcheminement": "VEYRINES DE VERGT", - "nomCommune": "VEYRINES DE VERGT" + "codePostal": "47190", + "codeCommune": "47129", + "libelleAcheminement": "LAGARRIGUE", + "nomCommune": "LAGARRIGUE" }, { - "codePostal": "39130", - "codeCommune": "39216", - "libelleAcheminement": "ETIVAL", - "nomCommune": "ETIVAL" + "codePostal": "50310", + "codeCommune": "50227", + "libelleAcheminement": "LE HAM", + "nomCommune": "LE HAM" }, { - "codePostal": "52120", - "codeCommune": "52525", - "libelleAcheminement": "VILLARS EN AZOIS", - "nomCommune": "VILLARS EN AZOIS" + "codePostal": "59580", + "codeCommune": "59192", + "libelleAcheminement": "EMERCHICOURT", + "nomCommune": "EMERCHICOURT" }, { - "codePostal": "20225", - "codeCommune": "2B084", - "libelleAcheminement": "CATERI", - "nomCommune": "CATERI" + "codePostal": "02680", + "codeCommune": "02214", + "libelleAcheminement": "CONTESCOURT", + "nomCommune": "CONTESCOURT" }, { - "codePostal": "25530", - "codeCommune": "25007", - "libelleAcheminement": "ADAM LES VERCEL", - "nomCommune": "ADAM LES VERCEL" + "codePostal": "58150", + "codeCommune": "58307", + "libelleAcheminement": "VIELMANAY", + "nomCommune": "VIELMANAY" }, { - "codePostal": "39570", - "codeCommune": "39217", - "libelleAcheminement": "L ETOILE", - "nomCommune": "L ETOILE" + "codePostal": "47310", + "codeCommune": "47133", + "libelleAcheminement": "LAMONTJOIE", + "nomCommune": "LAMONTJOIE" }, { - "codePostal": "52130", - "codeCommune": "52528", - "libelleAcheminement": "VILLE EN BLAISOIS", - "nomCommune": "VILLE EN BLAISOIS" + "codePostal": "50390", + "codeCommune": "50233", + "libelleAcheminement": "HAUTTEVILLE BOCAGE", + "nomCommune": "HAUTTEVILLE BOCAGE" }, { - "codePostal": "20230", - "codeCommune": "2B088", - "libelleAcheminement": "CHIATRA DI VERDE", - "nomCommune": "CHIATRA" + "codePostal": "59169", + "codeCommune": "59199", + "libelleAcheminement": "ERCHIN", + "nomCommune": "ERCHIN" }, { - "codePostal": "25330", - "codeCommune": "25015", - "libelleAcheminement": "AMANCEY", - "nomCommune": "AMANCEY" + "codePostal": "02330", + "codeCommune": "02223", + "libelleAcheminement": "COURBOIN", + "nomCommune": "COURBOIN" }, { - "codePostal": "39700", - "codeCommune": "39218", - "libelleAcheminement": "ETREPIGNEY", - "nomCommune": "ETREPIGNEY" + "codePostal": "59149", + "codeCommune": "59003", + "libelleAcheminement": "AIBES", + "nomCommune": "AIBES" }, { - "codePostal": "52190", - "codeCommune": "52529", - "libelleAcheminement": "VILLEGUSIEN LE LAC", - "nomCommune": "VILLEGUSIEN LE LAC" + "codePostal": "47170", + "codeCommune": "47134", + "libelleAcheminement": "LANNES", + "nomCommune": "LANNES" }, { - "codePostal": "20226", - "codeCommune": "2B097", - "libelleAcheminement": "COSTA", - "nomCommune": "COSTA" + "codePostal": "50580", + "codeCommune": "50236", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "25250", - "codeCommune": "25019", - "libelleAcheminement": "APPENANS", - "nomCommune": "APPENANS" + "codePostal": "59213", + "codeCommune": "59204", + "libelleAcheminement": "ESCARMAIN", + "nomCommune": "ESCARMAIN" }, { - "codePostal": "39700", - "codeCommune": "39220", - "libelleAcheminement": "FALLETANS", - "nomCommune": "FALLETANS" + "codePostal": "02130", + "codeCommune": "02227", + "libelleAcheminement": "COURMONT", + "nomCommune": "COURMONT" }, { - "codePostal": "52190", - "codeCommune": "52529", - "libelleAcheminement": "VILLEGUSIEN LE LAC", - "nomCommune": "VILLEGUSIEN LE LAC" + "codePostal": "59310", + "codeCommune": "59004", + "libelleAcheminement": "AIX EN PEVELE", + "nomCommune": "AIX EN PEVELE" }, { - "codePostal": "20225", - "codeCommune": "2B112", - "libelleAcheminement": "FELICETO", - "nomCommune": "FELICETO" + "codePostal": "47310", + "codeCommune": "47137", + "libelleAcheminement": "LAPLUME", + "nomCommune": "LAPLUME" }, { - "codePostal": "25680", - "codeCommune": "25038", - "libelleAcheminement": "AVILLEY", - "nomCommune": "AVILLEY" + "codePostal": "50570", + "codeCommune": "50239", + "libelleAcheminement": "THEREVAL", + "nomCommune": "THEREVAL" }, { - "codePostal": "39800", - "codeCommune": "39225", - "libelleAcheminement": "LE FIED", - "nomCommune": "LE FIED" + "codePostal": "59320", + "codeCommune": "59208", + "libelleAcheminement": "ESCOBECQUES", + "nomCommune": "ESCOBECQUES" }, { - "codePostal": "52600", - "codeCommune": "52529", - "libelleAcheminement": "VILLEGUSIEN LE LAC", - "nomCommune": "VILLEGUSIEN LE LAC" + "codePostal": "02160", + "codeCommune": "02234", + "libelleAcheminement": "CRAONNE", + "nomCommune": "CRAONNE" }, { - "codePostal": "20240", - "codeCommune": "2B123", - "libelleAcheminement": "GHISONACCIA", - "nomCommune": "GHISONACCIA" + "codePostal": "59144", + "codeCommune": "59006", + "libelleAcheminement": "AMFROIPRET", + "nomCommune": "AMFROIPRET" }, { - "codePostal": "25420", - "codeCommune": "25043", - "libelleAcheminement": "BART", - "nomCommune": "BART" + "codePostal": "47600", + "codeCommune": "47139", + "libelleAcheminement": "LASSERRE", + "nomCommune": "LASSERRE" }, { - "codePostal": "39520", - "codeCommune": "39227", - "libelleAcheminement": "FONCINE LE BAS", - "nomCommune": "FONCINE LE BAS" + "codePostal": "50340", + "codeCommune": "50240", + "libelleAcheminement": "HELLEVILLE", + "nomCommune": "HELLEVILLE" }, { - "codePostal": "52190", - "codeCommune": "52536", - "libelleAcheminement": "VILLIERS LES APREY", - "nomCommune": "VILLIERS LES APREY" + "codePostal": "59400", + "codeCommune": "59213", + "libelleAcheminement": "ESTOURMEL", + "nomCommune": "ESTOURMEL" }, { - "codePostal": "20243", - "codeCommune": "2B135", - "libelleAcheminement": "ISOLACCIO DI FIUMORBO", - "nomCommune": "ISOLACCIO DI FIUMORBO" + "codePostal": "02160", + "codeCommune": "02235", + "libelleAcheminement": "CRAONNELLE", + "nomCommune": "CRAONNELLE" }, { - "codePostal": "25380", - "codeCommune": "25051", - "libelleAcheminement": "BELLEHERBE", - "nomCommune": "BELLEHERBE" + "codePostal": "59491", + "codeCommune": "59009", + "libelleAcheminement": "VILLENEUVE D ASCQ", + "nomCommune": "VILLENEUVE D ASCQ" }, { - "codePostal": "39150", - "codeCommune": "39232", - "libelleAcheminement": "FORT DU PLASNE", - "nomCommune": "FORT DU PLASNE" + "codePostal": "47150", + "codeCommune": "47141", + "libelleAcheminement": "LAUSSOU", + "nomCommune": "LAUSSOU" }, { - "codePostal": "52800", - "codeCommune": "52541", - "libelleAcheminement": "VITRY LES NOGENT", - "nomCommune": "VITRY LES NOGENT" + "codePostal": "50320", + "codeCommune": "50247", + "libelleAcheminement": "HOCQUIGNY", + "nomCommune": "HOCQUIGNY" }, { - "codePostal": "20244", - "codeCommune": "2B137", - "libelleAcheminement": "LANO", - "nomCommune": "LANO" + "codePostal": "59990", + "codeCommune": "59215", + "libelleAcheminement": "ESTREUX", + "nomCommune": "ESTREUX" }, { - "codePostal": "25000", - "codeCommune": "25056", - "libelleAcheminement": "BESANCON", - "nomCommune": "BESANCON" + "codePostal": "02380", + "codeCommune": "02236", + "libelleAcheminement": "CRECY AU MONT", + "nomCommune": "CRECY AU MONT" }, { - "codePostal": "39230", - "codeCommune": "39236", - "libelleAcheminement": "FRANCHEVILLE", - "nomCommune": "FRANCHEVILLE" + "codePostal": "59186", + "codeCommune": "59012", + "libelleAcheminement": "ANOR", + "nomCommune": "ANOR" }, { - "codePostal": "52320", - "codeCommune": "52547", - "libelleAcheminement": "VOUECOURT", - "nomCommune": "VOUECOURT" + "codePostal": "47430", + "codeCommune": "47159", + "libelleAcheminement": "LE MAS D AGENAIS", + "nomCommune": "LE MAS D AGENAIS" }, { - "codePostal": "20245", - "codeCommune": "2B153", - "libelleAcheminement": "MANSO", - "nomCommune": "MANSO" + "codePostal": "50540", + "codeCommune": "50256", + "libelleAcheminement": "ISIGNY LE BUAT", + "nomCommune": "ISIGNY LE BUAT" }, { - "codePostal": "25720", - "codeCommune": "25058", - "libelleAcheminement": "BEURE", - "nomCommune": "BEURE" + "codePostal": "59161", + "codeCommune": "59216", + "libelleAcheminement": "ESWARS", + "nomCommune": "ESWARS" }, { - "codePostal": "39570", - "codeCommune": "39241", - "libelleAcheminement": "FREBUANS", - "nomCommune": "FREBUANS" + "codePostal": "02480", + "codeCommune": "02246", + "libelleAcheminement": "CUGNY", + "nomCommune": "CUGNY" }, { - "codePostal": "52130", - "codeCommune": "52550", - "libelleAcheminement": "WASSY", - "nomCommune": "WASSY" + "codePostal": "59380", + "codeCommune": "59016", + "libelleAcheminement": "ARMBOUTS CAPPEL", + "nomCommune": "ARMBOUTS CAPPEL" }, { - "codePostal": "20270", - "codeCommune": "2B155", - "libelleAcheminement": "MATRA", - "nomCommune": "MATRA" + "codePostal": "47370", + "codeCommune": "47160", + "libelleAcheminement": "MASQUIERES", + "nomCommune": "MASQUIERES" }, { - "codePostal": "25250", - "codeCommune": "25059", - "libelleAcheminement": "BEUTAL", - "nomCommune": "BEUTAL" + "codePostal": "50520", + "codeCommune": "50260", + "libelleAcheminement": "JUVIGNY LES VALLEES", + "nomCommune": "JUVIGNY LES VALLEES" }, { - "codePostal": "39120", - "codeCommune": "39245", - "libelleAcheminement": "GATEY", - "nomCommune": "GATEY" + "codePostal": "59247", + "codeCommune": "59224", + "libelleAcheminement": "FECHAIN", + "nomCommune": "FECHAIN" }, { - "codePostal": "53210", - "codeCommune": "53007", - "libelleAcheminement": "ARGENTRE", - "nomCommune": "ARGENTRE" + "codePostal": "02350", + "codeCommune": "02248", + "libelleAcheminement": "CUIRIEUX", + "nomCommune": "CUIRIEUX" }, { - "codePostal": "20259", - "codeCommune": "2B156", - "libelleAcheminement": "MAUSOLEO", - "nomCommune": "MAUSOLEO" + "codePostal": "59551", + "codeCommune": "59022", + "libelleAcheminement": "ATTICHES", + "nomCommune": "ATTICHES" }, { - "codePostal": "25520", - "codeCommune": "25060", - "libelleAcheminement": "BIANS LES USIERS", - "nomCommune": "BIANS LES USIERS" + "codePostal": "47340", + "codeCommune": "47171", + "libelleAcheminement": "MONBALEN", + "nomCommune": "MONBALEN" }, { - "codePostal": "39570", - "codeCommune": "39250", - "libelleAcheminement": "GERUGE", - "nomCommune": "GERUGE" + "codePostal": "50520", + "codeCommune": "50260", + "libelleAcheminement": "JUVIGNY LES VALLEES", + "nomCommune": "JUVIGNY LES VALLEES" }, { - "codePostal": "53170", - "codeCommune": "53009", - "libelleAcheminement": "ARQUENAY", - "nomCommune": "ARQUENAY" + "codePostal": "59740", + "codeCommune": "59226", + "libelleAcheminement": "FELLERIES", + "nomCommune": "FELLERIES" }, { - "codePostal": "20218", - "codeCommune": "2B169", - "libelleAcheminement": "MOROSAGLIA", - "nomCommune": "MOROSAGLIA" + "codePostal": "02160", + "codeCommune": "02250", + "libelleAcheminement": "CUIRY LES CHAUDARDES", + "nomCommune": "CUIRY LES CHAUDARDES" }, { - "codePostal": "25250", - "codeCommune": "25066", - "libelleAcheminement": "BLUSSANGEAUX", - "nomCommune": "BLUSSANGEAUX" + "codePostal": "59165", + "codeCommune": "59024", + "libelleAcheminement": "AUBERCHICOURT", + "nomCommune": "AUBERCHICOURT" }, { - "codePostal": "39100", - "codeCommune": "39252", - "libelleAcheminement": "GEVRY", - "nomCommune": "GEVRY" + "codePostal": "47380", + "codeCommune": "47173", + "libelleAcheminement": "MONCLAR", + "nomCommune": "MONCLAR" }, { - "codePostal": "53340", - "codeCommune": "53017", - "libelleAcheminement": "VAL DU MAINE", - "nomCommune": "VAL DU MAINE" + "codePostal": "50600", + "codeCommune": "50263", + "libelleAcheminement": "LAPENTY", + "nomCommune": "LAPENTY" }, { - "codePostal": "20219", - "codeCommune": "2B171", - "libelleAcheminement": "MURACCIOLE", - "nomCommune": "MURACCIOLE" + "codePostal": "59440", + "codeCommune": "59233", + "libelleAcheminement": "FLAUMONT WAUDRECHIES", + "nomCommune": "FLAUMONT WAUDRECHIES" }, { - "codePostal": "25560", - "codeCommune": "25075", - "libelleAcheminement": "BONNEVAUX", - "nomCommune": "BONNEVAUX" + "codePostal": "02160", + "codeCommune": "02252", + "libelleAcheminement": "CUISSY ET GENY", + "nomCommune": "CUISSY ET GENY" }, { - "codePostal": "39320", - "codeCommune": "39253", - "libelleAcheminement": "GIGNY", - "nomCommune": "GIGNY" + "codePostal": "59310", + "codeCommune": "59029", + "libelleAcheminement": "AUCHY LEZ ORCHIES", + "nomCommune": "AUCHY LEZ ORCHIES" }, { - "codePostal": "53340", - "codeCommune": "53017", - "libelleAcheminement": "VAL DU MAINE", - "nomCommune": "VAL DU MAINE" + "codePostal": "47150", + "codeCommune": "47175", + "libelleAcheminement": "MONFLANQUIN", + "nomCommune": "MONFLANQUIN" }, { - "codePostal": "20239", - "codeCommune": "2B172", - "libelleAcheminement": "MURATO", - "nomCommune": "MURATO" + "codePostal": "50250", + "codeCommune": "50273", + "libelleAcheminement": "MONTSENELLE", + "nomCommune": "MONTSENELLE" }, { - "codePostal": "25360", - "codeCommune": "25078", - "libelleAcheminement": "BOUCLANS", - "nomCommune": "BOUCLANS" + "codePostal": "59400", + "codeCommune": "59244", + "libelleAcheminement": "FONTAINE NOTRE DAME", + "nomCommune": "FONTAINE NOTRE DAME" }, { - "codePostal": "39600", - "codeCommune": "39259", - "libelleAcheminement": "GRANGE DE VAIVRE", - "nomCommune": "GRANGE DE VAIVRE" + "codePostal": "02200", + "codeCommune": "02253", + "libelleAcheminement": "CUISY EN ALMONT", + "nomCommune": "CUISY EN ALMONT" }, { - "codePostal": "53290", - "codeCommune": "53029", - "libelleAcheminement": "BIERNE LES VILLAGES", - "nomCommune": "BIERNE LES VILLAGES" + "codePostal": "59570", + "codeCommune": "59031", + "libelleAcheminement": "AUDIGNIES", + "nomCommune": "AUDIGNIES" }, { - "codePostal": "20232", - "codeCommune": "2B185", - "libelleAcheminement": "OLETTA", - "nomCommune": "OLETTA" + "codePostal": "47210", + "codeCommune": "47184", + "libelleAcheminement": "MONTAUT", + "nomCommune": "MONTAUT" }, { - "codePostal": "25250", - "codeCommune": "25083", - "libelleAcheminement": "BOURNOIS", - "nomCommune": "BOURNOIS" + "codePostal": "50530", + "codeCommune": "50276", + "libelleAcheminement": "LOLIF", + "nomCommune": "LOLIF" }, { - "codePostal": "39320", - "codeCommune": "39261", - "libelleAcheminement": "GRAYE ET CHARNAY", - "nomCommune": "GRAYE ET CHARNAY" + "codePostal": "59236", + "codeCommune": "59252", + "libelleAcheminement": "FRELINGHIEN", + "nomCommune": "FRELINGHIEN" }, { - "codePostal": "53350", - "codeCommune": "53041", - "libelleAcheminement": "BRAINS SUR LES MARCHES", - "nomCommune": "BRAINS SUR LES MARCHES" + "codePostal": "02600", + "codeCommune": "02254", + "libelleAcheminement": "CUTRY", + "nomCommune": "CUTRY" }, { - "codePostal": "20217", - "codeCommune": "2B187", - "libelleAcheminement": "OLMETA DI CAPOCORSO", - "nomCommune": "OLMETA DI CAPOCORSO" + "codePostal": "59440", + "codeCommune": "59036", + "libelleAcheminement": "AVESNES SUR HELPE", + "nomCommune": "AVESNES SUR HELPE" }, { - "codePostal": "25340", - "codeCommune": "25087", - "libelleAcheminement": "BRANNE", - "nomCommune": "BRANNE" + "codePostal": "47800", + "codeCommune": "47188", + "libelleAcheminement": "MONTIGNAC DE LAUZUN", + "nomCommune": "MONTIGNAC DE LAUZUN" }, { - "codePostal": "39310", - "codeCommune": "39274", - "libelleAcheminement": "LAJOUX", - "nomCommune": "LAJOUX" + "codePostal": "50870", + "codeCommune": "50282", + "libelleAcheminement": "LE LUOT", + "nomCommune": "LE LUOT" }, { - "codePostal": "53640", - "codeCommune": "53051", - "libelleAcheminement": "CHAMPEON", - "nomCommune": "CHAMPEON" + "codePostal": "59268", + "codeCommune": "59255", + "libelleAcheminement": "FRESSIES", + "nomCommune": "FRESSIES" }, { - "codePostal": "20232", - "codeCommune": "2B188", - "libelleAcheminement": "OLMETA DI TUDA", - "nomCommune": "OLMETA DI TUDA" + "codePostal": "02140", + "codeCommune": "02256", + "libelleAcheminement": "DAGNY LAMBERCY", + "nomCommune": "DAGNY LAMBERCY" }, { - "codePostal": "25530", - "codeCommune": "25089", - "libelleAcheminement": "BREMONDANS", - "nomCommune": "BREMONDANS" + "codePostal": "59138", + "codeCommune": "59041", + "libelleAcheminement": "BACHANT", + "nomCommune": "BACHANT" }, { - "codePostal": "39310", - "codeCommune": "39275", - "libelleAcheminement": "LAMOURA", - "nomCommune": "LAMOURA" + "codePostal": "47290", + "codeCommune": "47192", + "libelleAcheminement": "MONVIEL", + "nomCommune": "MONVIEL" }, { - "codePostal": "53300", - "codeCommune": "53055", - "libelleAcheminement": "CHANTRIGNE", - "nomCommune": "CHANTRIGNE" + "codePostal": "50260", + "codeCommune": "50285", + "libelleAcheminement": "MAGNEVILLE", + "nomCommune": "MAGNEVILLE" }, { - "codePostal": "20290", - "codeCommune": "2B192", - "libelleAcheminement": "OLMO", - "nomCommune": "OLMO" + "codePostal": "59270", + "codeCommune": "59262", + "libelleAcheminement": "GODEWAERSVELDE", + "nomCommune": "GODEWAERSVELDE" }, { - "codePostal": "25120", - "codeCommune": "25091", - "libelleAcheminement": "LES BRESEUX", - "nomCommune": "LES BRESEUX" + "codePostal": "02470", + "codeCommune": "02258", + "libelleAcheminement": "DAMMARD", + "nomCommune": "DAMMARD" }, { - "codePostal": "39170", - "codeCommune": "39286", - "libelleAcheminement": "LAVANS LES ST CLAUDE", - "nomCommune": "LAVANS LES ST CLAUDE" + "codePostal": "59270", + "codeCommune": "59043", + "libelleAcheminement": "BAILLEUL", + "nomCommune": "BAILLEUL" }, { - "codePostal": "53230", - "codeCommune": "53058", - "libelleAcheminement": "LA CHAPELLE CRAONNAISE", - "nomCommune": "LA CHAPELLE CRAONNAISE" + "codePostal": "47290", + "codeCommune": "47193", + "libelleAcheminement": "MOULINET", + "nomCommune": "MOULINET" }, { - "codePostal": "20251", - "codeCommune": "2B201", - "libelleAcheminement": "PANCHERACCIA", - "nomCommune": "PANCHERACCIA" + "codePostal": "50300", + "codeCommune": "50288", + "libelleAcheminement": "MARCEY LES GREVES", + "nomCommune": "MARCEY LES GREVES" }, { - "codePostal": "25380", - "codeCommune": "25095", - "libelleAcheminement": "BRETONVILLERS", - "nomCommune": "BRETONVILLERS" + "codePostal": "59253", + "codeCommune": "59268", + "libelleAcheminement": "LA GORGUE", + "nomCommune": "LA GORGUE" }, { - "codePostal": "39240", - "codeCommune": "39290", - "libelleAcheminement": "VALZIN EN PETITE MONTAGNE", - "nomCommune": "VALZIN EN PETITE MONTAGNE" + "codePostal": "02600", + "codeCommune": "02259", + "libelleAcheminement": "DAMPLEUX", + "nomCommune": "DAMPLEUX" }, { - "codePostal": "53150", - "codeCommune": "53059", - "libelleAcheminement": "LA CHAPELLE RAINSOUIN", - "nomCommune": "LA CHAPELLE RAINSOUIN" + "codePostal": "59132", + "codeCommune": "59045", + "libelleAcheminement": "BAIVES", + "nomCommune": "BAIVES" }, { - "codePostal": "20229", - "codeCommune": "2B202", - "libelleAcheminement": "PARATA", - "nomCommune": "PARATA" + "codePostal": "47420", + "codeCommune": "47208", + "libelleAcheminement": "POMPOGNE", + "nomCommune": "POMPOGNE" }, { - "codePostal": "25240", - "codeCommune": "25096", - "libelleAcheminement": "BREY ET MAISON DU BOIS", - "nomCommune": "BREY ET MAISON DU BOIS" + "codePostal": "50220", + "codeCommune": "50290", + "libelleAcheminement": "MARCILLY", + "nomCommune": "MARCILLY" }, { - "codePostal": "39120", - "codeCommune": "39299", - "libelleAcheminement": "LONGWY SUR LE DOUBS", - "nomCommune": "LONGWY SUR LE DOUBS" + "codePostal": "59152", + "codeCommune": "59275", + "libelleAcheminement": "GRUSON", + "nomCommune": "GRUSON" }, { - "codePostal": "53200", - "codeCommune": "53062", - "libelleAcheminement": "CHATEAU GONTIER SUR MAYENNE", - "nomCommune": "CHATEAU GONTIER SUR MAYENNE" + "codePostal": "02220", + "codeCommune": "02263", + "libelleAcheminement": "DHUIZEL", + "nomCommune": "DHUIZEL" }, { - "codePostal": "20234", - "codeCommune": "2B208", - "libelleAcheminement": "PERELLI", - "nomCommune": "PERELLI" + "codePostal": "59480", + "codeCommune": "59051", + "libelleAcheminement": "LA BASSEE", + "nomCommune": "LA BASSEE" }, { - "codePostal": "25170", - "codeCommune": "25101", - "libelleAcheminement": "BURGILLE", - "nomCommune": "BURGILLE" + "codePostal": "47300", + "codeCommune": "47215", + "libelleAcheminement": "PUJOLS", + "nomCommune": "PUJOLS" }, { - "codePostal": "39260", - "codeCommune": "39307", - "libelleAcheminement": "MAISOD", - "nomCommune": "MAISOD" + "codePostal": "50410", + "codeCommune": "50295", + "libelleAcheminement": "MAUPERTUIS", + "nomCommune": "MAUPERTUIS" }, { - "codePostal": "53200", - "codeCommune": "53062", - "libelleAcheminement": "CHATEAU GONTIER SUR MAYENNE", - "nomCommune": "CHATEAU GONTIER SUR MAYENNE" + "codePostal": "59250", + "codeCommune": "59279", + "libelleAcheminement": "HALLUIN", + "nomCommune": "HALLUIN" }, { - "codePostal": "20234", - "codeCommune": "2B216", - "libelleAcheminement": "PIAZZALI", - "nomCommune": "PIAZZALI" + "codePostal": "02340", + "codeCommune": "02264", + "libelleAcheminement": "DIZY LE GROS", + "nomCommune": "DIZY LE GROS" }, { - "codePostal": "25170", - "codeCommune": "25101", - "libelleAcheminement": "BURGILLE", - "nomCommune": "BURGILLE" + "codePostal": "59135", + "codeCommune": "59064", + "libelleAcheminement": "BELLAING", + "nomCommune": "BELLAING" }, { - "codePostal": "39240", - "codeCommune": "39312", - "libelleAcheminement": "MARIGNA SUR VALOUSE", - "nomCommune": "MARIGNA SUR VALOUSE" + "codePostal": "47150", + "codeCommune": "47230", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "53250", - "codeCommune": "53080", - "libelleAcheminement": "COUPTRAIN", - "nomCommune": "COUPTRAIN" + "codePostal": "50520", + "codeCommune": "50300", + "libelleAcheminement": "LE MESNIL ADELEE", + "nomCommune": "LE MESNIL ADELEE" }, { - "codePostal": "20229", - "codeCommune": "2B217", - "libelleAcheminement": "PIAZZOLE", - "nomCommune": "PIAZZOLE" + "codePostal": "59198", + "codeCommune": "59285", + "libelleAcheminement": "HASPRES", + "nomCommune": "HASPRES" }, { - "codePostal": "25120", - "codeCommune": "25108", - "libelleAcheminement": "CERNAY L EGLISE", - "nomCommune": "CERNAY L EGLISE" + "codePostal": "02360", + "codeCommune": "02266", + "libelleAcheminement": "DOLIGNON", + "nomCommune": "DOLIGNON" }, { - "codePostal": "39250", - "codeCommune": "39331", - "libelleAcheminement": "MIGNOVILLARD", - "nomCommune": "MIGNOVILLARD" + "codePostal": "59145", + "codeCommune": "59068", + "libelleAcheminement": "BERLAIMONT", + "nomCommune": "BERLAIMONT" }, { - "codePostal": "53540", - "codeCommune": "53088", - "libelleAcheminement": "CUILLE", - "nomCommune": "CUILLE" + "codePostal": "47350", + "codeCommune": "47231", + "libelleAcheminement": "ST AVIT", + "nomCommune": "ST AVIT" }, { - "codePostal": "20218", - "codeCommune": "2B220", - "libelleAcheminement": "PIEDIGRIGGIO", - "nomCommune": "PIEDIGRIGGIO" + "codePostal": "50110", + "codeCommune": "50305", + "libelleAcheminement": "LE MESNIL AU VAL", + "nomCommune": "LE MESNIL AU VAL" }, { - "codePostal": "25300", - "codeCommune": "25110", - "libelleAcheminement": "CHAFFOIS", - "nomCommune": "CHAFFOIS" + "codePostal": "59440", + "codeCommune": "59290", + "libelleAcheminement": "HAUT LIEU", + "nomCommune": "HAUT LIEU" }, { - "codePostal": "39250", - "codeCommune": "39331", - "libelleAcheminement": "MIGNOVILLARD", - "nomCommune": "MIGNOVILLARD" + "codePostal": "02540", + "codeCommune": "02281", + "libelleAcheminement": "L EPINE AUX BOIS", + "nomCommune": "L EPINE AUX BOIS" }, { - "codePostal": "53400", - "codeCommune": "53090", - "libelleAcheminement": "DENAZE", - "nomCommune": "DENAZE" + "codePostal": "59600", + "codeCommune": "59072", + "libelleAcheminement": "BERSILLIES", + "nomCommune": "BERSILLIES" }, { - "codePostal": "20230", - "codeCommune": "2B225", - "libelleAcheminement": "PIETRA DI VERDE", - "nomCommune": "PIETRA DI VERDE" + "codePostal": "47270", + "codeCommune": "47234", + "libelleAcheminement": "ST CAPRAIS DE LERM", + "nomCommune": "ST CAPRAIS DE LERM" }, { - "codePostal": "25220", - "codeCommune": "25111", - "libelleAcheminement": "CHALEZE", - "nomCommune": "CHALEZE" + "codePostal": "50670", + "codeCommune": "50312", + "libelleAcheminement": "LE MESNIL GILBERT", + "nomCommune": "LE MESNIL GILBERT" }, { - "codePostal": "39230", - "codeCommune": "39342", - "libelleAcheminement": "MONAY", - "nomCommune": "MONAY" + "codePostal": "59268", + "codeCommune": "59294", + "libelleAcheminement": "HAYNECOURT", + "nomCommune": "HAYNECOURT" }, { - "codePostal": "53190", - "codeCommune": "53093", - "libelleAcheminement": "LA DOREE", - "nomCommune": "LA DOREE" + "codePostal": "02000", + "codeCommune": "02294", + "libelleAcheminement": "ETOUVELLES", + "nomCommune": "ETOUVELLES" }, { - "codePostal": "20234", - "codeCommune": "2B227", - "libelleAcheminement": "PIETRICAGGIO", - "nomCommune": "PIETRICAGGIO" + "codePostal": "59270", + "codeCommune": "59073", + "libelleAcheminement": "BERTHEN", + "nomCommune": "BERTHEN" }, { - "codePostal": "25170", - "codeCommune": "25119", - "libelleAcheminement": "CHAMPVANS LES MOULINS", - "nomCommune": "CHAMPVANS LES MOULINS" + "codePostal": "47130", + "codeCommune": "47249", + "libelleAcheminement": "ST LAURENT", + "nomCommune": "ST LAURENT" }, { - "codePostal": "39320", - "codeCommune": "39353", - "libelleAcheminement": "MONTFLEUR", - "nomCommune": "MONTFLEUR" + "codePostal": "50510", + "codeCommune": "50327", + "libelleAcheminement": "LA MEURDRAQUIERE", + "nomCommune": "LA MEURDRAQUIERE" }, { - "codePostal": "53150", - "codeCommune": "53097", - "libelleAcheminement": "EVRON", - "nomCommune": "EVRON" + "codePostal": "59190", + "codeCommune": "59295", + "libelleAcheminement": "HAZEBROUCK", + "nomCommune": "HAZEBROUCK" }, { - "codePostal": "20230", - "codeCommune": "2B242", - "libelleAcheminement": "POGGIO MEZZANA", - "nomCommune": "POGGIO MEZZANA" + "codePostal": "02590", + "codeCommune": "02296", + "libelleAcheminement": "ETREILLERS", + "nomCommune": "ETREILLERS" }, { - "codePostal": "25380", - "codeCommune": "25125", - "libelleAcheminement": "CHARMOILLE", - "nomCommune": "CHARMOILLE" + "codePostal": "59166", + "codeCommune": "59098", + "libelleAcheminement": "BOUSBECQUE", + "nomCommune": "BOUSBECQUE" }, { - "codePostal": "39570", - "codeCommune": "39362", - "libelleAcheminement": "MONTMOROT", - "nomCommune": "MONTMOROT" + "codePostal": "47160", + "codeCommune": "47250", + "libelleAcheminement": "ST LEGER", + "nomCommune": "ST LEGER" }, { - "codePostal": "53260", - "codeCommune": "53099", - "libelleAcheminement": "FORCE", - "nomCommune": "FORCE" + "codePostal": "50410", + "codeCommune": "50338", + "libelleAcheminement": "MONTBRAY", + "nomCommune": "MONTBRAY" }, { - "codePostal": "20218", - "codeCommune": "2B244", - "libelleAcheminement": "POPOLASCA", - "nomCommune": "POPOLASCA" + "codePostal": "59134", + "codeCommune": "59303", + "libelleAcheminement": "HERLIES", + "nomCommune": "HERLIES" }, { - "codePostal": "25440", - "codeCommune": "25126", - "libelleAcheminement": "CHARNAY", - "nomCommune": "CHARNAY" + "codePostal": "02270", + "codeCommune": "02306", + "libelleAcheminement": "LA FERTE CHEVRESIS", + "nomCommune": "LA FERTE CHEVRESIS" }, { - "codePostal": "39300", - "codeCommune": "39364", - "libelleAcheminement": "MONTROND", - "nomCommune": "MONTROND" + "codePostal": "59870", + "codeCommune": "59105", + "libelleAcheminement": "BOUVIGNIES", + "nomCommune": "BOUVIGNIES" }, { - "codePostal": "53150", - "codeCommune": "53105", - "libelleAcheminement": "GESNES", - "nomCommune": "GESNES" + "codePostal": "47700", + "codeCommune": "47254", + "libelleAcheminement": "ST MARTIN CURTON", + "nomCommune": "ST MARTIN CURTON" }, { - "codePostal": "20237", - "codeCommune": "2B246", - "libelleAcheminement": "LA PORTA", - "nomCommune": "LA PORTA" + "codePostal": "50490", + "codeCommune": "50340", + "libelleAcheminement": "MONTCUIT", + "nomCommune": "MONTCUIT" }, { - "codePostal": "25530", - "codeCommune": "25141", - "libelleAcheminement": "CHAUX LES PASSAVANT", - "nomCommune": "CHAUX LES PASSAVANT" + "codePostal": "59740", + "codeCommune": "59306", + "libelleAcheminement": "HESTRUD", + "nomCommune": "HESTRUD" }, { - "codePostal": "39300", - "codeCommune": "39366", - "libelleAcheminement": "MONT SUR MONNET", - "nomCommune": "MONT SUR MONNET" + "codePostal": "02450", + "codeCommune": "02308", + "libelleAcheminement": "FESMY LE SART", + "nomCommune": "FESMY LE SART" }, { - "codePostal": "53120", - "codeCommune": "53107", - "libelleAcheminement": "GORRON", - "nomCommune": "GORRON" + "codePostal": "59470", + "codeCommune": "59111", + "libelleAcheminement": "BROXEELE", + "nomCommune": "BROXEELE" }, { - "codePostal": "20290", - "codeCommune": "2B250", - "libelleAcheminement": "PRUNELLI DI CASACCONI", - "nomCommune": "PRUNELLI DI CASACCONI" + "codePostal": "47270", + "codeCommune": "47260", + "libelleAcheminement": "ST MAURIN", + "nomCommune": "ST MAURIN" }, { - "codePostal": "25320", - "codeCommune": "25147", - "libelleAcheminement": "CHEMAUDIN ET VAUX", - "nomCommune": "CHEMAUDIN ET VAUX" + "codePostal": "50810", + "codeCommune": "50351", + "libelleAcheminement": "MONTRABOT", + "nomCommune": "MONTRABOT" }, { - "codePostal": "39400", - "codeCommune": "39367", - "libelleAcheminement": "MORBIER", - "nomCommune": "MORBIER" + "codePostal": "59980", + "codeCommune": "59311", + "libelleAcheminement": "HONNECHY", + "nomCommune": "HONNECHY" }, { - "codePostal": "53160", - "codeCommune": "53113", - "libelleAcheminement": "HAMBERS", - "nomCommune": "HAMBERS" + "codePostal": "02840", + "codeCommune": "02309", + "libelleAcheminement": "FESTIEUX", + "nomCommune": "FESTIEUX" }, { - "codePostal": "20243", - "codeCommune": "2B251", - "libelleAcheminement": "PRUNELLI DI FIUMORBO", - "nomCommune": "PRUNELLI DI FIUMORBO" + "codePostal": "59144", + "codeCommune": "59116", + "libelleAcheminement": "BRY", + "nomCommune": "BRY" }, { - "codePostal": "25770", - "codeCommune": "25147", - "libelleAcheminement": "CHEMAUDIN ET VAUX", - "nomCommune": "CHEMAUDIN ET VAUX" + "codePostal": "47330", + "codeCommune": "47272", + "libelleAcheminement": "ST QUENTIN DU DROPT", + "nomCommune": "ST QUENTIN DU DROPT" }, { - "codePostal": "39400", - "codeCommune": "39368", - "libelleAcheminement": "HAUTS DE BIENNE", - "nomCommune": "HAUTS DE BIENNE" + "codePostal": "50140", + "codeCommune": "50359", + "libelleAcheminement": "MORTAIN BOCAGE", + "nomCommune": "MORTAIN BOCAGE" }, { - "codePostal": "53120", - "codeCommune": "53115", - "libelleAcheminement": "HERCE", - "nomCommune": "HERCE" + "codePostal": "59111", + "codeCommune": "59313", + "libelleAcheminement": "HORDAIN", + "nomCommune": "HORDAIN" }, { - "codePostal": "20229", - "codeCommune": "2B256", - "libelleAcheminement": "RAPAGGIO", - "nomCommune": "RAPAGGIO" + "codePostal": "02260", + "codeCommune": "02312", + "libelleAcheminement": "LA FLAMENGRIE", + "nomCommune": "LA FLAMENGRIE" }, { - "codePostal": "25440", - "codeCommune": "25149", - "libelleAcheminement": "CHENECEY BUILLON", - "nomCommune": "CHENECEY BUILLON" + "codePostal": "59267", + "codeCommune": "59125", + "libelleAcheminement": "CANTAING SUR ESCAUT", + "nomCommune": "CANTAING SUR ESCAUT" }, { - "codePostal": "39330", - "codeCommune": "39370", - "libelleAcheminement": "MOUCHARD", - "nomCommune": "MOUCHARD" + "codePostal": "47360", + "codeCommune": "47276", + "libelleAcheminement": "ST SARDOS", + "nomCommune": "ST SARDOS" }, { - "codePostal": "53110", - "codeCommune": "53118", - "libelleAcheminement": "LE HOUSSEAU BRETIGNOLLES", - "nomCommune": "LE HOUSSEAU BRETIGNOLLES" + "codePostal": "50140", + "codeCommune": "50359", + "libelleAcheminement": "MORTAIN BOCAGE", + "nomCommune": "MORTAIN BOCAGE" }, { - "codePostal": "20213", - "codeCommune": "2B273", - "libelleAcheminement": "SCATA", - "nomCommune": "SCATA" + "codePostal": "59570", + "codeCommune": "59315", + "libelleAcheminement": "HOUDAIN LEZ BAVAY", + "nomCommune": "HOUDAIN LEZ BAVAY" }, { - "codePostal": "25530", - "codeCommune": "25151", - "libelleAcheminement": "CHEVIGNEY LES VERCEL", - "nomCommune": "CHEVIGNEY LES VERCEL" + "codePostal": "02120", + "codeCommune": "02313", + "libelleAcheminement": "FLAVIGNY LE GRAND ET BEAURAIN", + "nomCommune": "FLAVIGNY LE GRAND ET BEAURAIN" }, { - "codePostal": "39270", - "codeCommune": "39394", - "libelleAcheminement": "ONOZ", - "nomCommune": "ONOZ" + "codePostal": "59169", + "codeCommune": "59126", + "libelleAcheminement": "CANTIN", + "nomCommune": "CANTIN" }, { - "codePostal": "53400", - "codeCommune": "53135", - "libelleAcheminement": "LIVRE LA TOUCHE", - "nomCommune": "LIVRE LA TOUCHE" + "codePostal": "47140", + "codeCommune": "47280", + "libelleAcheminement": "ST SYLVESTRE SUR LOT", + "nomCommune": "ST SYLVESTRE SUR LOT" }, { - "codePostal": "20243", - "codeCommune": "2B277", - "libelleAcheminement": "SERRA DI FIUMORBO", - "nomCommune": "SERRA DI FIUMORBO" + "codePostal": "50700", + "codeCommune": "50360", + "libelleAcheminement": "MORVILLE", + "nomCommune": "MORVILLE" }, { - "codePostal": "25870", - "codeCommune": "25153", - "libelleAcheminement": "CHEVROZ", - "nomCommune": "CHEVROZ" + "codePostal": "59263", + "codeCommune": "59316", + "libelleAcheminement": "HOUPLIN ANCOISNE", + "nomCommune": "HOUPLIN ANCOISNE" }, { - "codePostal": "39130", - "codeCommune": "39408", - "libelleAcheminement": "PATORNAY", - "nomCommune": "PATORNAY" + "codePostal": "02170", + "codeCommune": "02324", + "libelleAcheminement": "FONTENELLE", + "nomCommune": "FONTENELLE" }, { - "codePostal": "53600", - "codeCommune": "53153", - "libelleAcheminement": "MEZANGERS", - "nomCommune": "MEZANGERS" + "codePostal": "59213", + "codeCommune": "59127", + "libelleAcheminement": "CAPELLE", + "nomCommune": "CAPELLE" }, { - "codePostal": "20233", - "codeCommune": "2B281", - "libelleAcheminement": "SISCO", - "nomCommune": "SISCO" + "codePostal": "47340", + "codeCommune": "47288", + "libelleAcheminement": "SAUVAGNAS", + "nomCommune": "SAUVAGNAS" }, { - "codePostal": "25340", - "codeCommune": "25156", - "libelleAcheminement": "PAYS DE CLERVAL", - "nomCommune": "PAYS DE CLERVAL" + "codePostal": "50260", + "codeCommune": "50369", + "libelleAcheminement": "NEGREVILLE", + "nomCommune": "NEGREVILLE" }, { - "codePostal": "39570", - "codeCommune": "39411", - "libelleAcheminement": "PERRIGNY", - "nomCommune": "PERRIGNY" + "codePostal": "59480", + "codeCommune": "59320", + "libelleAcheminement": "ILLIES", + "nomCommune": "ILLIES" }, { - "codePostal": "53240", - "codeCommune": "53156", - "libelleAcheminement": "MONTFLOURS", - "nomCommune": "MONTFLOURS" + "codePostal": "02290", + "codeCommune": "02326", + "libelleAcheminement": "FONTENOY", + "nomCommune": "FONTENOY" }, { - "codePostal": "20240", - "codeCommune": "2B283", - "libelleAcheminement": "SOLARO", - "nomCommune": "SOLARO" + "codePostal": "59160", + "codeCommune": "59128", + "libelleAcheminement": "CAPINGHEM", + "nomCommune": "CAPINGHEM" }, { - "codePostal": "25500", - "codeCommune": "25160", - "libelleAcheminement": "LES COMBES", - "nomCommune": "LES COMBES" + "codePostal": "47170", + "codeCommune": "47302", + "libelleAcheminement": "SOS", + "nomCommune": "SOS" }, { - "codePostal": "39120", - "codeCommune": "39415", - "libelleAcheminement": "PETIT NOIR", - "nomCommune": "PETIT NOIR" + "codePostal": "50250", + "codeCommune": "50372", + "libelleAcheminement": "NEUFMESNIL", + "nomCommune": "NEUFMESNIL" }, { - "codePostal": "53970", - "codeCommune": "53157", - "libelleAcheminement": "MONTIGNE LE BRILLANT", - "nomCommune": "MONTIGNE LE BRILLANT" + "codePostal": "59460", + "codeCommune": "59324", + "libelleAcheminement": "JEUMONT", + "nomCommune": "JEUMONT" }, { - "codePostal": "20229", - "codeCommune": "2B291", - "libelleAcheminement": "STAZZONA", - "nomCommune": "STAZZONA" + "codePostal": "02140", + "codeCommune": "02331", + "libelleAcheminement": "FRANQUEVILLE", + "nomCommune": "FRANQUEVILLE" }, { - "codePostal": "25390", - "codeCommune": "25161", - "libelleAcheminement": "CONSOLATION MAISONNETTES", - "nomCommune": "CONSOLATION MAISONNETTES" + "codePostal": "59180", + "codeCommune": "59131", + "libelleAcheminement": "CAPPELLE LA GRANDE", + "nomCommune": "CAPPELLE LA GRANDE" }, { - "codePostal": "39600", - "codeCommune": "39425", - "libelleAcheminement": "LES PLANCHES PRES ARBOIS", - "nomCommune": "LES PLANCHES PRES ARBOIS" + "codePostal": "47270", + "codeCommune": "47305", + "libelleAcheminement": "TAYRAC", + "nomCommune": "TAYRAC" }, { - "codePostal": "53150", - "codeCommune": "53161", - "libelleAcheminement": "MONTSURS", - "nomCommune": "MONTSURS" + "codePostal": "50250", + "codeCommune": "50374", + "libelleAcheminement": "NEUVILLE EN BEAUMONT", + "nomCommune": "NEUVILLE EN BEAUMONT" }, { - "codePostal": "20213", - "codeCommune": "2B299", - "libelleAcheminement": "SAN GAVINO D AMPUGNANI", - "nomCommune": "SAN GAVINO D AMPUGNANI" + "codePostal": "59530", + "codeCommune": "59325", + "libelleAcheminement": "JOLIMETZ", + "nomCommune": "JOLIMETZ" }, { - "codePostal": "25420", - "codeCommune": "25170", - "libelleAcheminement": "COURCELLES LES MONTBELIARD", - "nomCommune": "COURCELLES LES MONTBELIARD" + "codePostal": "02130", + "codeCommune": "02332", + "libelleAcheminement": "FRESNES EN TARDENOIS", + "nomCommune": "FRESNES EN TARDENOIS" }, { - "codePostal": "39210", - "codeCommune": "39426", - "libelleAcheminement": "PLASNE", - "nomCommune": "PLASNE" + "codePostal": "59670", + "codeCommune": "59135", + "libelleAcheminement": "CASSEL", + "nomCommune": "CASSEL" }, { - "codePostal": "53150", - "codeCommune": "53161", - "libelleAcheminement": "MONTSURS", - "nomCommune": "MONTSURS" + "codePostal": "47160", + "codeCommune": "47320", + "libelleAcheminement": "VILLEFRANCHE DU QUEYRAN", + "nomCommune": "VILLEFRANCHE DU QUEYRAN" }, { - "codePostal": "20230", - "codeCommune": "2B303", - "libelleAcheminement": "SAN GIULIANO", - "nomCommune": "SAN GIULIANO" + "codePostal": "50210", + "codeCommune": "50378", + "libelleAcheminement": "NOTRE DAME DE CENILLY", + "nomCommune": "NOTRE DAME DE CENILLY" }, { - "codePostal": "25440", - "codeCommune": "25171", - "libelleAcheminement": "COURCELLES", - "nomCommune": "COURCELLES" + "codePostal": "59122", + "codeCommune": "59326", + "libelleAcheminement": "KILLEM", + "nomCommune": "KILLEM" }, { - "codePostal": "39290", - "codeCommune": "39432", - "libelleAcheminement": "POINTRE", - "nomCommune": "POINTRE" + "codePostal": "02230", + "codeCommune": "02334", + "libelleAcheminement": "FRESNOY LE GRAND", + "nomCommune": "FRESNOY LE GRAND" }, { - "codePostal": "53150", - "codeCommune": "53161", - "libelleAcheminement": "MONTSURS", - "nomCommune": "MONTSURS" + "codePostal": "59360", + "codeCommune": "59137", + "libelleAcheminement": "CATILLON SUR SAMBRE", + "nomCommune": "CATILLON SUR SAMBRE" }, { - "codePostal": "20244", - "codeCommune": "2B304", - "libelleAcheminement": "SAN LORENZO", - "nomCommune": "SAN LORENZO" + "codePostal": "47200", + "codeCommune": "47326", + "libelleAcheminement": "VIRAZEIL", + "nomCommune": "VIRAZEIL" }, { - "codePostal": "25470", - "codeCommune": "25174", - "libelleAcheminement": "COURTEFONTAINE", - "nomCommune": "COURTEFONTAINE" + "codePostal": "50600", + "codeCommune": "50391", + "libelleAcheminement": "GRANDPARIGNY", + "nomCommune": "GRANDPARIGNY" }, { - "codePostal": "39130", - "codeCommune": "39435", - "libelleAcheminement": "PONT DE POITTE", - "nomCommune": "PONT DE POITTE" + "codePostal": "59167", + "codeCommune": "59327", + "libelleAcheminement": "LALLAING", + "nomCommune": "LALLAING" }, { - "codePostal": "53300", - "codeCommune": "53176", - "libelleAcheminement": "LE PAS", - "nomCommune": "LE PAS" + "codePostal": "02400", + "codeCommune": "02347", + "libelleAcheminement": "GLAND", + "nomCommune": "GLAND" }, { - "codePostal": "20250", - "codeCommune": "2B306", - "libelleAcheminement": "SANTA LUCIA DI MERCURIO", - "nomCommune": "SANTA LUCIA DI MERCURIO" + "codePostal": "59400", + "codeCommune": "59141", + "libelleAcheminement": "CAUROIR", + "nomCommune": "CAUROIR" }, { - "codePostal": "25270", - "codeCommune": "25180", - "libelleAcheminement": "CROUZET MIGETTE", - "nomCommune": "CROUZET MIGETTE" + "codePostal": "47230", + "codeCommune": "47327", + "libelleAcheminement": "XAINTRAILLES", + "nomCommune": "XAINTRAILLES" }, { - "codePostal": "39600", - "codeCommune": "39446", - "libelleAcheminement": "PUPILLIN", - "nomCommune": "PUPILLIN" + "codePostal": "50410", + "codeCommune": "50393", + "libelleAcheminement": "PERCY EN NORMANDIE", + "nomCommune": "PERCY EN NORMANDIE" }, { - "codePostal": "53220", - "codeCommune": "53177", - "libelleAcheminement": "LA PELLERINE", - "nomCommune": "LA PELLERINE" + "codePostal": "59550", + "codeCommune": "59331", + "libelleAcheminement": "LANDRECIES", + "nomCommune": "LANDRECIES" }, { - "codePostal": "20230", - "codeCommune": "2B313", - "libelleAcheminement": "SAN NICOLAO", - "nomCommune": "SAN NICOLAO" + "codePostal": "02140", + "codeCommune": "02357", + "libelleAcheminement": "GRONARD", + "nomCommune": "GRONARD" }, { - "codePostal": "25680", - "codeCommune": "25182", - "libelleAcheminement": "CUBRY", - "nomCommune": "CUBRY" + "codePostal": "59930", + "codeCommune": "59143", + "libelleAcheminement": "LA CHAPELLE D ARMENTIERES", + "nomCommune": "LA CHAPELLE D ARMENTIERES" }, { - "codePostal": "39570", - "codeCommune": "39447", - "libelleAcheminement": "QUINTIGNY", - "nomCommune": "QUINTIGNY" + "codePostal": "48310", + "codeCommune": "48001", + "libelleAcheminement": "ALBARET LE COMTAL", + "nomCommune": "ALBARET LE COMTAL" }, { - "codePostal": "53360", - "codeCommune": "53178", - "libelleAcheminement": "PEUTON", - "nomCommune": "PEUTON" + "codePostal": "50630", + "codeCommune": "50395", + "libelleAcheminement": "LA PERNELLE", + "nomCommune": "LA PERNELLE" }, { - "codePostal": "20248", - "codeCommune": "2B327", - "libelleAcheminement": "TOMINO", - "nomCommune": "TOMINO" + "codePostal": "59226", + "codeCommune": "59335", + "libelleAcheminement": "LECELLES", + "nomCommune": "LECELLES" }, { - "codePostal": "25550", - "codeCommune": "25207", - "libelleAcheminement": "DUNG", - "nomCommune": "DUNG" + "codePostal": "02480", + "codeCommune": "02367", + "libelleAcheminement": "HAPPENCOURT", + "nomCommune": "HAPPENCOURT" }, { - "codePostal": "39270", - "codeCommune": "39455", - "libelleAcheminement": "REITHOUSE", - "nomCommune": "REITHOUSE" + "codePostal": "59230", + "codeCommune": "59144", + "libelleAcheminement": "CHATEAU L ABBAYE", + "nomCommune": "CHATEAU L ABBAYE" }, { - "codePostal": "53140", - "codeCommune": "53185", - "libelleAcheminement": "PRE EN PAIL ST SAMSON", - "nomCommune": "PRE EN PAIL ST SAMSON" + "codePostal": "48200", + "codeCommune": "48002", + "libelleAcheminement": "ALBARET STE MARIE", + "nomCommune": "ALBARET STE MARIE" }, { - "codePostal": "20231", - "codeCommune": "2B341", - "libelleAcheminement": "VENACO", - "nomCommune": "VENACO" + "codePostal": "50250", + "codeCommune": "50400", + "libelleAcheminement": "PICAUVILLE", + "nomCommune": "PICAUVILLE" }, { - "codePostal": "25580", - "codeCommune": "25211", - "libelleAcheminement": "ECHEVANNES", - "nomCommune": "ECHEVANNES" + "codePostal": "59115", + "codeCommune": "59339", + "libelleAcheminement": "LEERS", + "nomCommune": "LEERS" }, { - "codePostal": "39140", - "codeCommune": "39456", - "libelleAcheminement": "RELANS", - "nomCommune": "RELANS" + "codePostal": "02140", + "codeCommune": "02369", + "libelleAcheminement": "HARCIGNY", + "nomCommune": "HARCIGNY" }, { - "codePostal": "53360", - "codeCommune": "53186", - "libelleAcheminement": "QUELAINES ST GAULT", - "nomCommune": "QUELAINES ST GAULT" + "codePostal": "59152", + "codeCommune": "59146", + "libelleAcheminement": "CHERENG", + "nomCommune": "CHERENG" }, { - "codePostal": "20240", - "codeCommune": "2B342", - "libelleAcheminement": "VENTISERI", - "nomCommune": "VENTISERI" + "codePostal": "48100", + "codeCommune": "48005", + "libelleAcheminement": "ANTRENAS", + "nomCommune": "ANTRENAS" }, { - "codePostal": "25150", - "codeCommune": "25216", - "libelleAcheminement": "ECURCEY", - "nomCommune": "ECURCEY" + "codePostal": "50360", + "codeCommune": "50400", + "libelleAcheminement": "PICAUVILLE", + "nomCommune": "PICAUVILLE" }, { - "codePostal": "39250", - "codeCommune": "39461", - "libelleAcheminement": "RIX", - "nomCommune": "RIX" + "codePostal": "59287", + "codeCommune": "59345", + "libelleAcheminement": "LEWARDE", + "nomCommune": "LEWARDE" }, { - "codePostal": "53250", - "codeCommune": "53196", - "libelleAcheminement": "ST AIGNAN DE COUPTRAIN", - "nomCommune": "ST AIGNAN DE COUPTRAIN" + "codePostal": "02210", + "codeCommune": "02372", + "libelleAcheminement": "HARTENNES ET TAUX", + "nomCommune": "HARTENNES ET TAUX" }, { - "codePostal": "20215", - "codeCommune": "2B343", - "libelleAcheminement": "VENZOLASCA", - "nomCommune": "VENZOLASCA" + "codePostal": "59740", + "codeCommune": "59148", + "libelleAcheminement": "CLAIRFAYTS", + "nomCommune": "CLAIRFAYTS" }, { - "codePostal": "25410", - "codeCommune": "25235", - "libelleAcheminement": "FERRIERES LES BOIS", - "nomCommune": "FERRIERES LES BOIS" + "codePostal": "48170", + "codeCommune": "48008", + "libelleAcheminement": "ARZENC DE RANDON", + "nomCommune": "ARZENC DE RANDON" }, { - "codePostal": "39700", - "codeCommune": "39462", - "libelleAcheminement": "ROCHEFORT SUR NENON", - "nomCommune": "ROCHEFORT SUR NENON" + "codePostal": "50480", + "codeCommune": "50400", + "libelleAcheminement": "PICAUVILLE", + "nomCommune": "PICAUVILLE" }, { - "codePostal": "53100", - "codeCommune": "53219", - "libelleAcheminement": "ST GEORGES BUTTAVENT", - "nomCommune": "ST GEORGES BUTTAVENT" + "codePostal": "59260", + "codeCommune": "59346", + "libelleAcheminement": "LEZENNES", + "nomCommune": "LEZENNES" }, { - "codePostal": "20219", - "codeCommune": "2B354", - "libelleAcheminement": "VIVARIO", - "nomCommune": "VIVARIO" + "codePostal": "02140", + "codeCommune": "02373", + "libelleAcheminement": "HARY", + "nomCommune": "HARY" }, { - "codePostal": "25190", - "codeCommune": "25239", - "libelleAcheminement": "FEULE", - "nomCommune": "FEULE" + "codePostal": "59310", + "codeCommune": "59158", + "libelleAcheminement": "COUTICHES", + "nomCommune": "COUTICHES" }, { - "codePostal": "39700", - "codeCommune": "39465", - "libelleAcheminement": "ROMANGE", - "nomCommune": "ROMANGE" + "codePostal": "48130", + "codeCommune": "48009", + "libelleAcheminement": "PEYRE EN AUBRAC", + "nomCommune": "PEYRE EN AUBRAC" }, { - "codePostal": "53240", - "codeCommune": "53225", - "libelleAcheminement": "ST GERMAIN LE GUILLAUME", - "nomCommune": "ST GERMAIN LE GUILLAUME" + "codePostal": "50770", + "codeCommune": "50403", + "libelleAcheminement": "PIROU", + "nomCommune": "PIROU" }, { - "codePostal": "20272", - "codeCommune": "2B356", - "libelleAcheminement": "ZALANA", - "nomCommune": "ZALANA" + "codePostal": "59740", + "codeCommune": "59347", + "libelleAcheminement": "LIESSIES", + "nomCommune": "LIESSIES" }, { - "codePostal": "25390", - "codeCommune": "25243", - "libelleAcheminement": "FLANGEBOUCHE", - "nomCommune": "FLANGEBOUCHE" + "codePostal": "02440", + "codeCommune": "02380", + "libelleAcheminement": "HINACOURT", + "nomCommune": "HINACOURT" }, { - "codePostal": "39190", - "codeCommune": "39474", - "libelleAcheminement": "STE AGNES", - "nomCommune": "STE AGNES" + "codePostal": "59127", + "codeCommune": "59171", + "libelleAcheminement": "DEHERIES", + "nomCommune": "DEHERIES" }, { - "codePostal": "53110", - "codeCommune": "53230", - "libelleAcheminement": "ST JULIEN DU TERROUX", - "nomCommune": "ST JULIEN DU TERROUX" + "codePostal": "48600", + "codeCommune": "48010", + "libelleAcheminement": "AUROUX", + "nomCommune": "AUROUX" }, { - "codePostal": "20240", - "codeCommune": "2B366", - "libelleAcheminement": "CHISA", - "nomCommune": "CHISA" + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { - "codePostal": "25170", - "codeCommune": "25257", - "libelleAcheminement": "FRANEY", - "nomCommune": "FRANEY" + "codePostal": "59156", + "codeCommune": "59361", + "libelleAcheminement": "LOURCHES", + "nomCommune": "LOURCHES" }, { - "codePostal": "39160", - "codeCommune": "39475", - "libelleAcheminement": "ST AMOUR", - "nomCommune": "ST AMOUR" + "codePostal": "02380", + "codeCommune": "02395", + "libelleAcheminement": "JUMENCOURT", + "nomCommune": "JUMENCOURT" }, { - "codePostal": "53300", - "codeCommune": "53237", - "libelleAcheminement": "ST MARS SUR COLMONT", - "nomCommune": "ST MARS SUR COLMONT" + "codePostal": "59890", + "codeCommune": "59173", + "libelleAcheminement": "DEULEMONT", + "nomCommune": "DEULEMONT" }, { - "codePostal": "30220", - "codeCommune": "30003", - "libelleAcheminement": "AIGUES MORTES", - "nomCommune": "AIGUES MORTES" + "codePostal": "48200", + "codeCommune": "48012", + "libelleAcheminement": "LES MONTS VERTS", + "nomCommune": "LES MONTS VERTS" }, { - "codePostal": "25390", - "codeCommune": "25262", - "libelleAcheminement": "FUANS", - "nomCommune": "FUANS" + "codePostal": "50210", + "codeCommune": "50419", + "libelleAcheminement": "QUETTREVILLE SUR SIENNE", + "nomCommune": "QUETTREVILLE SUR SIENNE" }, { - "codePostal": "39410", - "codeCommune": "39476", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "59530", + "codeCommune": "59363", + "libelleAcheminement": "LOUVIGNIES QUESNOY", + "nomCommune": "LOUVIGNIES QUESNOY" }, { - "codePostal": "53800", - "codeCommune": "53240", - "libelleAcheminement": "ST MARTIN DU LIMET", - "nomCommune": "ST MARTIN DU LIMET" + "codePostal": "02140", + "codeCommune": "02405", + "libelleAcheminement": "LANDOUZY LA VILLE", + "nomCommune": "LANDOUZY LA VILLE" }, { - "codePostal": "30760", - "codeCommune": "30005", - "libelleAcheminement": "AIGUEZE", - "nomCommune": "AIGUEZE" + "codePostal": "59400", + "codeCommune": "59176", + "libelleAcheminement": "DOIGNIES", + "nomCommune": "DOIGNIES" }, { - "codePostal": "25470", - "codeCommune": "25280", - "libelleAcheminement": "GOUMOIS", - "nomCommune": "GOUMOIS" + "codePostal": "48200", + "codeCommune": "48026", + "libelleAcheminement": "BLAVIGNAC", + "nomCommune": "BLAVIGNAC" }, { - "codePostal": "39200", - "codeCommune": "39478", - "libelleAcheminement": "ST CLAUDE", - "nomCommune": "ST CLAUDE" + "codePostal": "50660", + "codeCommune": "50419", + "libelleAcheminement": "QUETTREVILLE SUR SIENNE", + "nomCommune": "QUETTREVILLE SUR SIENNE" }, { - "codePostal": "53370", - "codeCommune": "53246", - "libelleAcheminement": "ST PIERRE DES NIDS", - "nomCommune": "ST PIERRE DES NIDS" + "codePostal": "59252", + "codeCommune": "59387", + "libelleAcheminement": "MARQUETTE EN OSTREVANT", + "nomCommune": "MARQUETTE EN OSTREVANT" }, { - "codePostal": "30210", - "codeCommune": "30013", - "libelleAcheminement": "ARGILLIERS", - "nomCommune": "ARGILLIERS" + "codePostal": "02380", + "codeCommune": "02406", + "libelleAcheminement": "LANDRICOURT", + "nomCommune": "LANDRICOURT" }, { - "codePostal": "25520", - "codeCommune": "25282", - "libelleAcheminement": "GOUX LES USIERS", - "nomCommune": "GOUX LES USIERS" + "codePostal": "59440", + "codeCommune": "59177", + "libelleAcheminement": "DOMPIERRE SUR HELPE", + "nomCommune": "DOMPIERRE SUR HELPE" }, { - "codePostal": "39300", - "codeCommune": "39481", - "libelleAcheminement": "ST GERMAIN EN MONTAGNE", - "nomCommune": "ST GERMAIN EN MONTAGNE" + "codePostal": "48170", + "codeCommune": "48027", + "libelleAcheminement": "MONT LOZERE ET GOULET", + "nomCommune": "MONT LOZERE ET GOULET" }, { - "codePostal": "53160", - "codeCommune": "53266", - "libelleAcheminement": "TRANS", - "nomCommune": "TRANS" + "codePostal": "50750", + "codeCommune": "50420", + "libelleAcheminement": "QUIBOU", + "nomCommune": "QUIBOU" }, { - "codePostal": "30120", - "codeCommune": "30024", - "libelleAcheminement": "AULAS", - "nomCommune": "AULAS" + "codePostal": "59980", + "codeCommune": "59394", + "libelleAcheminement": "MAUROIS", + "nomCommune": "MAUROIS" }, { - "codePostal": "25440", - "codeCommune": "25283", - "libelleAcheminement": "GOUX SOUS LANDET", - "nomCommune": "GOUX SOUS LANDET" + "codePostal": "02000", + "codeCommune": "02407", + "libelleAcheminement": "LANISCOURT", + "nomCommune": "LANISCOURT" }, { - "codePostal": "39320", - "codeCommune": "39485", - "libelleAcheminement": "VAL SURAN", - "nomCommune": "VAL SURAN" + "codePostal": "59630", + "codeCommune": "59182", + "libelleAcheminement": "DRINCHAM", + "nomCommune": "DRINCHAM" }, { - "codePostal": "54770", - "codeCommune": "54012", - "libelleAcheminement": "AMANCE", - "nomCommune": "AMANCE" + "codePostal": "48250", + "codeCommune": "48027", + "libelleAcheminement": "MONT LOZERE ET GOULET", + "nomCommune": "MONT LOZERE ET GOULET" }, { - "codePostal": "30120", - "codeCommune": "30026", - "libelleAcheminement": "AVEZE", - "nomCommune": "AVEZE" + "codePostal": "50000", + "codeCommune": "50423", + "libelleAcheminement": "RAMPAN", + "nomCommune": "RAMPAN" }, { - "codePostal": "25390", - "codeCommune": "25288", - "libelleAcheminement": "FOURNETS LUISANS", - "nomCommune": "FOURNETS LUISANS" + "codePostal": "59143", + "codeCommune": "59402", + "libelleAcheminement": "MILLAM", + "nomCommune": "MILLAM" }, { - "codePostal": "39110", - "codeCommune": "39497", - "libelleAcheminement": "SAIZENAY", - "nomCommune": "SAIZENAY" + "codePostal": "02210", + "codeCommune": "02412", + "libelleAcheminement": "LAUNOY", + "nomCommune": "LAUNOY" }, { - "codePostal": "54560", - "codeCommune": "54015", - "libelleAcheminement": "ANDERNY", - "nomCommune": "ANDERNY" + "codePostal": "59240", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "30620", - "codeCommune": "30036", - "libelleAcheminement": "BERNIS", - "nomCommune": "BERNIS" + "codePostal": "48400", + "codeCommune": "48028", + "libelleAcheminement": "LES BONDONS", + "nomCommune": "LES BONDONS" }, { - "codePostal": "25300", - "codeCommune": "25293", - "libelleAcheminement": "GRANGES NARBOZ", - "nomCommune": "GRANGES NARBOZ" + "codePostal": "50390", + "codeCommune": "50426", + "libelleAcheminement": "RAUVILLE LA PLACE", + "nomCommune": "RAUVILLE LA PLACE" }, { - "codePostal": "39350", - "codeCommune": "39499", - "libelleAcheminement": "SALIGNEY", - "nomCommune": "SALIGNEY" + "codePostal": "59225", + "codeCommune": "59413", + "libelleAcheminement": "MONTIGNY EN CAMBRESIS", + "nomCommune": "MONTIGNY EN CAMBRESIS" }, { - "codePostal": "54540", - "codeCommune": "54017", - "libelleAcheminement": "ANGOMONT", - "nomCommune": "ANGOMONT" + "codePostal": "02450", + "codeCommune": "02414", + "libelleAcheminement": "LAVAQUERESSE", + "nomCommune": "LAVAQUERESSE" }, { - "codePostal": "30450", - "codeCommune": "30044", - "libelleAcheminement": "BONNEVAUX", - "nomCommune": "BONNEVAUX" + "codePostal": "59240", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "25580", - "codeCommune": "25300", - "libelleAcheminement": "GUYANS DURNES", - "nomCommune": "GUYANS DURNES" + "codePostal": "48500", + "codeCommune": "48034", + "libelleAcheminement": "LA CANOURGUE", + "nomCommune": "LA CANOURGUE" }, { - "codePostal": "39100", - "codeCommune": "39501", - "libelleAcheminement": "SAMPANS", - "nomCommune": "SAMPANS" + "codePostal": "50520", + "codeCommune": "50428", + "libelleAcheminement": "REFFUVEILLE", + "nomCommune": "REFFUVEILLE" }, { - "codePostal": "54150", - "codeCommune": "54018", - "libelleAcheminement": "ANOUX", - "nomCommune": "ANOUX" + "codePostal": "59420", + "codeCommune": "59421", + "libelleAcheminement": "MOUVAUX", + "nomCommune": "MOUVAUX" }, { - "codePostal": "30190", - "codeCommune": "30046", - "libelleAcheminement": "BOUCOIRAN ET NOZIERES", - "nomCommune": "BOUCOIRAN ET NOZIERES" + "codePostal": "02380", + "codeCommune": "02423", + "libelleAcheminement": "LEUILLY SOUS COUCY", + "nomCommune": "LEUILLY SOUS COUCY" }, { - "codePostal": "25310", - "codeCommune": "25304", - "libelleAcheminement": "HERIMONCOURT", - "nomCommune": "HERIMONCOURT" + "codePostal": "59640", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "39300", - "codeCommune": "39503", - "libelleAcheminement": "SAPOIS", - "nomCommune": "SAPOIS" + "codePostal": "48500", + "codeCommune": "48034", + "libelleAcheminement": "LA CANOURGUE", + "nomCommune": "LA CANOURGUE" }, { - "codePostal": "54510", - "codeCommune": "54025", - "libelleAcheminement": "ART SUR MEURTHE", - "nomCommune": "ART SUR MEURTHE" + "codePostal": "50210", + "codeCommune": "50437", + "libelleAcheminement": "RONCEY", + "nomCommune": "RONCEY" }, { - "codePostal": "30110", - "codeCommune": "30051", - "libelleAcheminement": "BRANOUX LES TAILLADES", - "nomCommune": "BRANOUX LES TAILLADES" + "codePostal": "59940", + "codeCommune": "59423", + "libelleAcheminement": "NEUF BERQUIN", + "nomCommune": "NEUF BERQUIN" }, { - "codePostal": "25300", - "codeCommune": "25309", - "libelleAcheminement": "HOUTAUD", - "nomCommune": "HOUTAUD" + "codePostal": "02220", + "codeCommune": "02427", + "libelleAcheminement": "LHUYS", + "nomCommune": "LHUYS" }, { - "codePostal": "39270", - "codeCommune": "39504", - "libelleAcheminement": "SARROGNA", - "nomCommune": "SARROGNA" + "codePostal": "59173", + "codeCommune": "59184", + "libelleAcheminement": "EBBLINGHEM", + "nomCommune": "EBBLINGHEM" }, { - "codePostal": "54700", - "codeCommune": "54027", - "libelleAcheminement": "ATTON", - "nomCommune": "ATTON" + "codePostal": "48400", + "codeCommune": "48036", + "libelleAcheminement": "CASSAGNAS", + "nomCommune": "CASSAGNAS" }, { - "codePostal": "30580", - "codeCommune": "30055", - "libelleAcheminement": "BROUZET LES ALES", - "nomCommune": "BROUZET LES ALES" + "codePostal": "50680", + "codeCommune": "50446", + "libelleAcheminement": "ST ANDRE DE L EPINE", + "nomCommune": "ST ANDRE DE L EPINE" }, { - "codePostal": "25250", - "codeCommune": "25311", - "libelleAcheminement": "HYEMONDANS", - "nomCommune": "HYEMONDANS" + "codePostal": "59960", + "codeCommune": "59426", + "libelleAcheminement": "NEUVILLE EN FERRAIN", + "nomCommune": "NEUVILLE EN FERRAIN" }, { - "codePostal": "39270", - "codeCommune": "39504", - "libelleAcheminement": "SARROGNA", - "nomCommune": "SARROGNA" + "codePostal": "02350", + "codeCommune": "02430", + "libelleAcheminement": "LIESSE NOTRE DAME", + "nomCommune": "LIESSE NOTRE DAME" }, { - "codePostal": "54580", - "codeCommune": "54028", - "libelleAcheminement": "AUBOUE", - "nomCommune": "AUBOUE" + "codePostal": "59132", + "codeCommune": "59198", + "libelleAcheminement": "EPPE SAUVAGE", + "nomCommune": "EPPE SAUVAGE" }, { - "codePostal": "30700", - "codeCommune": "30067", - "libelleAcheminement": "LA CAPELLE ET MASMOLENE", - "nomCommune": "LA CAPELLE ET MASMOLENE" + "codePostal": "48190", + "codeCommune": "48037", + "libelleAcheminement": "CHADENET", + "nomCommune": "CHADENET" }, { - "codePostal": "25470", - "codeCommune": "25314", - "libelleAcheminement": "INDEVILLERS", - "nomCommune": "INDEVILLERS" + "codePostal": "50140", + "codeCommune": "50450", + "libelleAcheminement": "ST BARTHELEMY", + "nomCommune": "ST BARTHELEMY" }, { - "codePostal": "39310", - "codeCommune": "39510", - "libelleAcheminement": "SEPTMONCEL LES MOLUNES", - "nomCommune": "SEPTMONCEL LES MOLUNES" + "codePostal": "59400", + "codeCommune": "59432", + "libelleAcheminement": "NIERGNIES", + "nomCommune": "NIERGNIES" }, { - "codePostal": "54380", - "codeCommune": "54031", - "libelleAcheminement": "AUTREVILLE SUR MOSELLE", - "nomCommune": "AUTREVILLE SUR MOSELLE" + "codePostal": "02700", + "codeCommune": "02431", + "libelleAcheminement": "LIEZ", + "nomCommune": "LIEZ" }, { - "codePostal": "30190", - "codeCommune": "30072", - "libelleAcheminement": "CASTELNAU VALENCE", - "nomCommune": "CASTELNAU VALENCE" + "codePostal": "59470", + "codeCommune": "59200", + "libelleAcheminement": "ERINGHEM", + "nomCommune": "ERINGHEM" }, { - "codePostal": "25160", - "codeCommune": "25320", - "libelleAcheminement": "LABERGEMENT STE MARIE", - "nomCommune": "LABERGEMENT STE MARIE" + "codePostal": "48230", + "codeCommune": "48039", + "libelleAcheminement": "CHANAC", + "nomCommune": "CHANAC" }, { - "codePostal": "39230", - "codeCommune": "39511", - "libelleAcheminement": "SERGENAUX", - "nomCommune": "SERGENAUX" + "codePostal": "50300", + "codeCommune": "50451", + "libelleAcheminement": "ST BRICE", + "nomCommune": "ST BRICE" }, { - "codePostal": "54540", - "codeCommune": "54040", - "libelleAcheminement": "BADONVILLER", - "nomCommune": "BADONVILLER" + "codePostal": "59970", + "codeCommune": "59444", + "libelleAcheminement": "ODOMEZ", + "nomCommune": "ODOMEZ" }, { - "codePostal": "30330", - "codeCommune": "30076", - "libelleAcheminement": "CAVILLARGUES", - "nomCommune": "CAVILLARGUES" + "codePostal": "02340", + "codeCommune": "02433", + "libelleAcheminement": "LISLET", + "nomCommune": "LISLET" }, { - "codePostal": "25160", - "codeCommune": "25320", - "libelleAcheminement": "LABERGEMENT STE MARIE", - "nomCommune": "LABERGEMENT STE MARIE" + "codePostal": "59193", + "codeCommune": "59202", + "libelleAcheminement": "ERQUINGHEM LYS", + "nomCommune": "ERQUINGHEM LYS" }, { - "codePostal": "39120", - "codeCommune": "39512", - "libelleAcheminement": "SERGENON", - "nomCommune": "SERGENON" + "codePostal": "48310", + "codeCommune": "48044", + "libelleAcheminement": "CHAUCHAILLES", + "nomCommune": "CHAUCHAILLES" }, { - "codePostal": "54170", - "codeCommune": "54046", - "libelleAcheminement": "BARISEY AU PLAIN", - "nomCommune": "BARISEY AU PLAIN" + "codePostal": "50680", + "codeCommune": "50455", + "libelleAcheminement": "ST CLAIR SUR L ELLE", + "nomCommune": "ST CLAIR SUR L ELLE" }, { - "codePostal": "30450", - "codeCommune": "30079", - "libelleAcheminement": "CHAMBON", - "nomCommune": "CHAMBON" + "codePostal": "59195", + "codeCommune": "59446", + "libelleAcheminement": "OISY", + "nomCommune": "OISY" }, { - "codePostal": "25130", - "codeCommune": "25321", - "libelleAcheminement": "VILLERS LE LAC", - "nomCommune": "VILLERS LE LAC" + "codePostal": "02160", + "codeCommune": "02439", + "libelleAcheminement": "LES SEPTVALLONS", + "nomCommune": "LES SEPTVALLONS" }, { - "codePostal": "39700", - "codeCommune": "39514", - "libelleAcheminement": "SERRE LES MOULIERES", - "nomCommune": "SERRE LES MOULIERES" + "codePostal": "59161", + "codeCommune": "59206", + "libelleAcheminement": "ESCAUDOEUVRES", + "nomCommune": "ESCAUDOEUVRES" }, { - "codePostal": "54115", - "codeCommune": "54052", - "libelleAcheminement": "BATTIGNY", - "nomCommune": "BATTIGNY" + "codePostal": "48400", + "codeCommune": "48050", + "libelleAcheminement": "BEDOUES COCURES", + "nomCommune": "BEDOUES COCURES" }, { - "codePostal": "30210", - "codeCommune": "30085", - "libelleAcheminement": "COLLIAS", - "nomCommune": "COLLIAS" + "codePostal": "50720", + "codeCommune": "50462", + "libelleAcheminement": "ST CYR DU BAILLEUL", + "nomCommune": "ST CYR DU BAILLEUL" }, { - "codePostal": "25550", - "codeCommune": "25322", - "libelleAcheminement": "LAIRE", - "nomCommune": "LAIRE" + "codePostal": "59162", + "codeCommune": "59452", + "libelleAcheminement": "OSTRICOURT", + "nomCommune": "OSTRICOURT" }, { - "codePostal": "39300", - "codeCommune": "39517", - "libelleAcheminement": "SIROD", - "nomCommune": "SIROD" + "codePostal": "02470", + "codeCommune": "02449", + "libelleAcheminement": "MACOGNY", + "nomCommune": "MACOGNY" }, { - "codePostal": "54370", - "codeCommune": "54053", - "libelleAcheminement": "BAUZEMONT", - "nomCommune": "BAUZEMONT" + "codePostal": "59127", + "codeCommune": "59209", + "libelleAcheminement": "ESNES", + "nomCommune": "ESNES" }, { - "codePostal": "30460", - "codeCommune": "30087", - "libelleAcheminement": "COLOGNAC", - "nomCommune": "COLOGNAC" + "codePostal": "48200", + "codeCommune": "48059", + "libelleAcheminement": "LA FAGE ST JULIEN", + "nomCommune": "LA FAGE ST JULIEN" }, { - "codePostal": "25440", - "codeCommune": "25336", - "libelleAcheminement": "LIESLE", - "nomCommune": "LIESLE" + "codePostal": "50310", + "codeCommune": "50467", + "libelleAcheminement": "ST FLOXEL", + "nomCommune": "ST FLOXEL" }, { - "codePostal": "39230", - "codeCommune": "39533", - "libelleAcheminement": "TOULOUSE LE CHATEAU", - "nomCommune": "TOULOUSE LE CHATEAU" + "codePostal": "59670", + "codeCommune": "59454", + "libelleAcheminement": "OXELAERE", + "nomCommune": "OXELAERE" }, { - "codePostal": "54290", - "codeCommune": "54054", - "libelleAcheminement": "BAYON", - "nomCommune": "BAYON" + "codePostal": "02490", + "codeCommune": "02452", + "libelleAcheminement": "MAISSEMY", + "nomCommune": "MAISSEMY" }, { - "codePostal": "30390", - "codeCommune": "30107", - "libelleAcheminement": "ESTEZARGUES", - "nomCommune": "ESTEZARGUES" + "codePostal": "59470", + "codeCommune": "59210", + "libelleAcheminement": "ESQUELBECQ", + "nomCommune": "ESQUELBECQ" }, { - "codePostal": "25110", - "codeCommune": "25341", - "libelleAcheminement": "LOMONT SUR CRETE", - "nomCommune": "LOMONT SUR CRETE" + "codePostal": "48700", + "codeCommune": "48063", + "libelleAcheminement": "FONTANS", + "nomCommune": "FONTANS" }, { - "codePostal": "39570", - "codeCommune": "39537", - "libelleAcheminement": "TRENAL", - "nomCommune": "TRENAL" + "codePostal": "50370", + "codeCommune": "50472", + "libelleAcheminement": "ST GEORGES DE LIVOYE", + "nomCommune": "ST GEORGES DE LIVOYE" }, { - "codePostal": "54480", - "codeCommune": "54064", - "libelleAcheminement": "BERTRAMBOIS", - "nomCommune": "BERTRAMBOIS" + "codePostal": "59273", + "codeCommune": "59458", + "libelleAcheminement": "PERONNE EN MELANTOIS", + "nomCommune": "PERONNE EN MELANTOIS" }, { - "codePostal": "30124", - "codeCommune": "30108", - "libelleAcheminement": "L ESTRECHURE", - "nomCommune": "L ESTRECHURE" + "codePostal": "02540", + "codeCommune": "02458", + "libelleAcheminement": "DHUYS ET MORIN EN BRIE", + "nomCommune": "DHUYS ET MORIN EN BRIE" }, { - "codePostal": "25210", - "codeCommune": "25351", - "libelleAcheminement": "LE LUHIER", - "nomCommune": "LE LUHIER" + "codePostal": "59553", + "codeCommune": "59211", + "libelleAcheminement": "ESQUERCHIN", + "nomCommune": "ESQUERCHIN" }, { - "codePostal": "39130", - "codeCommune": "39538", - "libelleAcheminement": "UXELLES", - "nomCommune": "UXELLES" + "codePostal": "48340", + "codeCommune": "48073", + "libelleAcheminement": "LES HERMAUX", + "nomCommune": "LES HERMAUX" }, { - "codePostal": "54640", - "codeCommune": "54066", - "libelleAcheminement": "BETTAINVILLERS", - "nomCommune": "BETTAINVILLERS" + "codePostal": "50680", + "codeCommune": "50473", + "libelleAcheminement": "ST GEORGES D ELLE", + "nomCommune": "ST GEORGES D ELLE" }, { - "codePostal": "30580", - "codeCommune": "30113", - "libelleAcheminement": "FONS SUR LUSSAN", - "nomCommune": "FONS SUR LUSSAN" + "codePostal": "59494", + "codeCommune": "59459", + "libelleAcheminement": "PETITE FORET", + "nomCommune": "PETITE FORET" }, { - "codePostal": "25210", - "codeCommune": "25373", - "libelleAcheminement": "LE MEMONT", - "nomCommune": "LE MEMONT" + "codePostal": "02720", + "codeCommune": "02459", + "libelleAcheminement": "MARCY", + "nomCommune": "MARCY" }, { - "codePostal": "39600", - "codeCommune": "39539", - "libelleAcheminement": "VADANS", - "nomCommune": "VADANS" + "codePostal": "59940", + "codeCommune": "59212", + "libelleAcheminement": "ESTAIRES", + "nomCommune": "ESTAIRES" }, { - "codePostal": "54450", - "codeCommune": "54077", - "libelleAcheminement": "BLAMONT", - "nomCommune": "BLAMONT" + "codePostal": "48500", + "codeCommune": "48085", + "libelleAcheminement": "LAVAL DU TARN", + "nomCommune": "LAVAL DU TARN" }, { - "codePostal": "30510", - "codeCommune": "30128", - "libelleAcheminement": "GENERAC", - "nomCommune": "GENERAC" + "codePostal": "50480", + "codeCommune": "50479", + "libelleAcheminement": "ST GERMAIN DE VARREVILLE", + "nomCommune": "ST GERMAIN DE VARREVILLE" }, { - "codePostal": "25870", - "codeCommune": "25376", - "libelleAcheminement": "MEREY VIEILLEY", - "nomCommune": "MEREY VIEILLEY" + "codePostal": "59244", + "codeCommune": "59461", + "libelleAcheminement": "PETIT FAYT", + "nomCommune": "PETIT FAYT" }, { - "codePostal": "39300", - "codeCommune": "39554", - "libelleAcheminement": "VERS EN MONTAGNE", - "nomCommune": "VERS EN MONTAGNE" + "codePostal": "02470", + "codeCommune": "02466", + "libelleAcheminement": "MARIZY STE GENEVIEVE", + "nomCommune": "MARIZY STE GENEVIEVE" }, { - "codePostal": "54290", - "codeCommune": "54085", - "libelleAcheminement": "BORVILLE", - "nomCommune": "BORVILLE" + "codePostal": "59151", + "codeCommune": "59214", + "libelleAcheminement": "ESTREES", + "nomCommune": "ESTREES" }, { - "codePostal": "30630", - "codeCommune": "30131", - "libelleAcheminement": "GOUDARGUES", - "nomCommune": "GOUDARGUES" + "codePostal": "48140", + "codeCommune": "48090", + "libelleAcheminement": "LE MALZIEU VILLE", + "nomCommune": "LE MALZIEU VILLE" }, { - "codePostal": "25210", - "codeCommune": "25391", - "libelleAcheminement": "MONT DE LAVAL", - "nomCommune": "MONT DE LAVAL" + "codePostal": "50180", + "codeCommune": "50483", + "libelleAcheminement": "ST GILLES", + "nomCommune": "ST GILLES" }, { - "codePostal": "39130", - "codeCommune": "39556", - "libelleAcheminement": "VERTAMBOZ", - "nomCommune": "VERTAMBOZ" + "codePostal": "59284", + "codeCommune": "59463", + "libelleAcheminement": "PITGAM", + "nomCommune": "PITGAM" }, { - "codePostal": "54770", - "codeCommune": "54089", - "libelleAcheminement": "BOUXIERES AUX CHENES", - "nomCommune": "BOUXIERES AUX CHENES" + "codePostal": "02250", + "codeCommune": "02468", + "libelleAcheminement": "MARLE", + "nomCommune": "MARLE" }, { - "codePostal": "30110", - "codeCommune": "30132", - "libelleAcheminement": "LA GRAND COMBE", - "nomCommune": "LA GRAND COMBE" + "codePostal": "59295", + "codeCommune": "59219", + "libelleAcheminement": "ESTRUN", + "nomCommune": "ESTRUN" }, { - "codePostal": "25110", - "codeCommune": "25401", - "libelleAcheminement": "MONTIVERNAGE", - "nomCommune": "MONTIVERNAGE" + "codePostal": "48260", + "codeCommune": "48091", + "libelleAcheminement": "MARCHASTEL", + "nomCommune": "MARCHASTEL" }, { - "codePostal": "39600", - "codeCommune": "39565", - "libelleAcheminement": "VILLENEUVE D AVAL", - "nomCommune": "VILLENEUVE D AVAL" + "codePostal": "50600", + "codeCommune": "50484", + "libelleAcheminement": "ST HILAIRE DU HARCOUET", + "nomCommune": "ST HILAIRE DU HARCOUET" }, { - "codePostal": "54700", - "codeCommune": "54091", - "libelleAcheminement": "BOUXIERES SOUS FROIDMONT", - "nomCommune": "BOUXIERES SOUS FROIDMONT" + "codePostal": "59530", + "codeCommune": "59468", + "libelleAcheminement": "POTELLE", + "nomCommune": "POTELLE" }, { - "codePostal": "30240", - "codeCommune": "30133", - "libelleAcheminement": "LE GRAU DU ROI", - "nomCommune": "LE GRAU DU ROI" + "codePostal": "02630", + "codeCommune": "02476", + "libelleAcheminement": "MENNEVRET", + "nomCommune": "MENNEVRET" }, { - "codePostal": "25190", - "codeCommune": "25402", - "libelleAcheminement": "MONTJOIE LE CHATEAU", - "nomCommune": "MONTJOIE LE CHATEAU" + "codePostal": "59179", + "codeCommune": "59227", + "libelleAcheminement": "FENAIN", + "nomCommune": "FENAIN" }, { - "codePostal": "39800", - "codeCommune": "39568", - "libelleAcheminement": "VILLERSERINE", - "nomCommune": "VILLERSERINE" + "codePostal": "48260", + "codeCommune": "48104", + "libelleAcheminement": "NASBINALS", + "nomCommune": "NASBINALS" }, { - "codePostal": "54790", - "codeCommune": "54099", - "libelleAcheminement": "VAL DE BRIEY", - "nomCommune": "VAL DE BRIEY" + "codePostal": "50240", + "codeCommune": "50487", + "libelleAcheminement": "ST JAMES", + "nomCommune": "ST JAMES" }, { - "codePostal": "30290", - "codeCommune": "30141", - "libelleAcheminement": "LAUDUN L ARDOISE", - "nomCommune": "LAUDUN L ARDOISE" + "codePostal": "59190", + "codeCommune": "59469", + "libelleAcheminement": "PRADELLES", + "nomCommune": "PRADELLES" }, { - "codePostal": "25270", - "codeCommune": "25404", - "libelleAcheminement": "MONTMAHOUX", - "nomCommune": "MONTMAHOUX" + "codePostal": "02000", + "codeCommune": "02478", + "libelleAcheminement": "MERLIEUX ET FOUQUEROLLES", + "nomCommune": "MERLIEUX ET FOUQUEROLLES" }, { - "codePostal": "39600", - "codeCommune": "39569", - "libelleAcheminement": "VILLERS FARLAY", - "nomCommune": "VILLERS FARLAY" + "codePostal": "59610", + "codeCommune": "59229", + "libelleAcheminement": "FERON", + "nomCommune": "FERON" }, { - "codePostal": "54890", - "codeCommune": "54112", - "libelleAcheminement": "CHAMBLEY BUSSIERES", - "nomCommune": "CHAMBLEY BUSSIERES" + "codePostal": "48110", + "codeCommune": "48115", + "libelleAcheminement": "LE POMPIDOU", + "nomCommune": "LE POMPIDOU" }, { - "codePostal": "30350", - "codeCommune": "30146", - "libelleAcheminement": "LEDIGNAN", - "nomCommune": "LEDIGNAN" + "codePostal": "50810", + "codeCommune": "50492", + "libelleAcheminement": "ST JEAN D ELLE", + "nomCommune": "ST JEAN D ELLE" }, { - "codePostal": "25680", - "codeCommune": "25408", - "libelleAcheminement": "MONTUSSAINT", - "nomCommune": "MONTUSSAINT" + "codePostal": "59144", + "codeCommune": "59473", + "libelleAcheminement": "PREUX AU SART", + "nomCommune": "PREUX AU SART" }, { - "codePostal": "39120", - "codeCommune": "39570", - "libelleAcheminement": "VILLERS LES BOIS", - "nomCommune": "VILLERS LES BOIS" + "codePostal": "02000", + "codeCommune": "02489", + "libelleAcheminement": "MOLINCHART", + "nomCommune": "MOLINCHART" }, { - "codePostal": "54250", - "codeCommune": "54115", - "libelleAcheminement": "CHAMPIGNEULLES", - "nomCommune": "CHAMPIGNEULLES" + "codePostal": "59440", + "codeCommune": "59240", + "libelleAcheminement": "FLOURSIES", + "nomCommune": "FLOURSIES" }, { - "codePostal": "30126", - "codeCommune": "30149", - "libelleAcheminement": "LIRAC", - "nomCommune": "LIRAC" + "codePostal": "48220", + "codeCommune": "48116", + "libelleAcheminement": "PONT DE MONTVERT SUD MONT LOZERE", + "nomCommune": "PONT DE MONTVERT SUD MONT LOZERE" }, { - "codePostal": "25660", - "codeCommune": "25410", - "libelleAcheminement": "MORRE", - "nomCommune": "MORRE" + "codePostal": "50320", + "codeCommune": "50493", + "libelleAcheminement": "ST JEAN DES CHAMPS", + "nomCommune": "ST JEAN DES CHAMPS" }, { - "codePostal": "39360", - "codeCommune": "39579", - "libelleAcheminement": "VIRY", - "nomCommune": "VIRY" + "codePostal": "59550", + "codeCommune": "59474", + "libelleAcheminement": "PRISCHES", + "nomCommune": "PRISCHES" }, { - "codePostal": "54300", - "codeCommune": "54116", - "libelleAcheminement": "CHANTEHEUX", - "nomCommune": "CHANTEHEUX" + "codePostal": "02390", + "codeCommune": "02503", + "libelleAcheminement": "MONT D ORIGNY", + "nomCommune": "MONT D ORIGNY" }, { - "codePostal": "30960", - "codeCommune": "30152", - "libelleAcheminement": "LES MAGES", - "nomCommune": "LES MAGES" + "codePostal": "59234", + "codeCommune": "59254", + "libelleAcheminement": "FRESSAIN", + "nomCommune": "FRESSAIN" }, { - "codePostal": "25360", - "codeCommune": "25417", - "libelleAcheminement": "NAISEY LES GRANGES", - "nomCommune": "NAISEY LES GRANGES" + "codePostal": "48800", + "codeCommune": "48119", + "libelleAcheminement": "PREVENCHERES", + "nomCommune": "PREVENCHERES" }, { - "codePostal": "39240", - "codeCommune": "39583", - "libelleAcheminement": "VOSBLES VALFIN", - "nomCommune": "VOSBLES VALFIN" + "codePostal": "50370", + "codeCommune": "50495", + "libelleAcheminement": "ST JEAN DU CORAIL DES BOIS", + "nomCommune": "ST JEAN DU CORAIL DES BOIS" }, { - "codePostal": "54360", - "codeCommune": "54121", - "libelleAcheminement": "CHARMOIS", - "nomCommune": "CHARMOIS" + "codePostal": "59121", + "codeCommune": "59475", + "libelleAcheminement": "PROUVY", + "nomCommune": "PROUVY" }, { - "codePostal": "30129", - "codeCommune": "30155", - "libelleAcheminement": "MANDUEL", - "nomCommune": "MANDUEL" + "codePostal": "02540", + "codeCommune": "02505", + "libelleAcheminement": "MONTFAUCON", + "nomCommune": "MONTFAUCON" }, { - "codePostal": "25330", - "codeCommune": "25420", - "libelleAcheminement": "NANS SOUS STE ANNE", - "nomCommune": "NANS SOUS STE ANNE" + "codePostal": "59242", + "codeCommune": "59258", + "libelleAcheminement": "GENECH", + "nomCommune": "GENECH" }, { - "codePostal": "40700", - "codeCommune": "40007", - "libelleAcheminement": "ARGELOS", - "nomCommune": "ARGELOS" + "codePostal": "48260", + "codeCommune": "48123", + "libelleAcheminement": "RECOULES D AUBRAC", + "nomCommune": "RECOULES D AUBRAC" }, { - "codePostal": "54122", - "codeCommune": "54125", - "libelleAcheminement": "CHENEVIERES", - "nomCommune": "CHENEVIERES" + "codePostal": "50530", + "codeCommune": "50496", + "libelleAcheminement": "ST JEAN LE THOMAS", + "nomCommune": "ST JEAN LE THOMAS" }, { - "codePostal": "30360", - "codeCommune": "30158", - "libelleAcheminement": "MARTIGNARGUES", - "nomCommune": "MARTIGNARGUES" + "codePostal": "59267", + "codeCommune": "59476", + "libelleAcheminement": "PROVILLE", + "nomCommune": "PROVILLE" }, { - "codePostal": "25150", - "codeCommune": "25422", - "libelleAcheminement": "NEUCHATEL URTIERE", - "nomCommune": "NEUCHATEL URTIERE" + "codePostal": "02600", + "codeCommune": "02506", + "libelleAcheminement": "MONTGOBERT", + "nomCommune": "MONTGOBERT" }, { - "codePostal": "40120", - "codeCommune": "40033", - "libelleAcheminement": "BELIS", - "nomCommune": "BELIS" + "codePostal": "59254", + "codeCommune": "59260", + "libelleAcheminement": "GHYVELDE", + "nomCommune": "GHYVELDE" }, { - "codePostal": "54610", - "codeCommune": "54131", - "libelleAcheminement": "CLEMERY", - "nomCommune": "CLEMERY" + "codePostal": "48000", + "codeCommune": "48137", + "libelleAcheminement": "ST BAUZILE", + "nomCommune": "ST BAUZILE" }, { - "codePostal": "30140", - "codeCommune": "30162", - "libelleAcheminement": "MASSILLARGUES ATTUECH", - "nomCommune": "MASSILLARGUES ATTUECH" + "codePostal": "50700", + "codeCommune": "50498", + "libelleAcheminement": "ST JOSEPH", + "nomCommune": "ST JOSEPH" }, { - "codePostal": "25580", - "codeCommune": "25424", - "libelleAcheminement": "LES PREMIERS SAPINS", - "nomCommune": "LES PREMIERS SAPINS" + "codePostal": "59243", + "codeCommune": "59479", + "libelleAcheminement": "QUAROUBLE", + "nomCommune": "QUAROUBLE" }, { - "codePostal": "40170", - "codeCommune": "40043", - "libelleAcheminement": "BIAS", - "nomCommune": "BIAS" + "codePostal": "02210", + "codeCommune": "02507", + "libelleAcheminement": "MONTGRU ST HILAIRE", + "nomCommune": "MONTGRU ST HILAIRE" }, { - "codePostal": "54400", - "codeCommune": "54138", - "libelleAcheminement": "COSNES ET ROMAIN", - "nomCommune": "COSNES ET ROMAIN" + "codePostal": "59600", + "codeCommune": "59264", + "libelleAcheminement": "GOGNIES CHAUSSEE", + "nomCommune": "GOGNIES CHAUSSEE" }, { - "codePostal": "30430", - "codeCommune": "30164", - "libelleAcheminement": "MEJANNES LE CLAP", - "nomCommune": "MEJANNES LE CLAP" + "codePostal": "48100", + "codeCommune": "48138", + "libelleAcheminement": "ST BONNET DE CHIRAC", + "nomCommune": "ST BONNET DE CHIRAC" }, { - "codePostal": "25250", - "codeCommune": "25431", - "libelleAcheminement": "ONANS", - "nomCommune": "ONANS" + "codePostal": "50240", + "codeCommune": "50500", + "libelleAcheminement": "ST LAURENT DE TERREGATTE", + "nomCommune": "ST LAURENT DE TERREGATTE" }, { - "codePostal": "40190", - "codeCommune": "40052", - "libelleAcheminement": "BOURDALAT", - "nomCommune": "BOURDALAT" + "codePostal": "59890", + "codeCommune": "59482", + "libelleAcheminement": "QUESNOY SUR DEULE", + "nomCommune": "QUESNOY SUR DEULE" }, { - "codePostal": "54210", - "codeCommune": "54141", - "libelleAcheminement": "COYVILLER", - "nomCommune": "COYVILLER" + "codePostal": "02400", + "codeCommune": "02509", + "libelleAcheminement": "MONTHIERS", + "nomCommune": "MONTHIERS" }, { - "codePostal": "30540", - "codeCommune": "30169", - "libelleAcheminement": "MILHAUD", - "nomCommune": "MILHAUD" + "codePostal": "59360", + "codeCommune": "59274", + "libelleAcheminement": "LA GROISE", + "nomCommune": "LA GROISE" }, { - "codePostal": "25120", - "codeCommune": "25433", - "libelleAcheminement": "ORGEANS BLANCHEFONTAINE", - "nomCommune": "ORGEANS BLANCHEFONTAINE" + "codePostal": "48200", + "codeCommune": "48140", + "libelleAcheminement": "ST CHELY D APCHER", + "nomCommune": "ST CHELY D APCHER" }, { - "codePostal": "40300", - "codeCommune": "40059", - "libelleAcheminement": "CAGNOTTE", - "nomCommune": "CAGNOTTE" + "codePostal": "50310", + "codeCommune": "50511", + "libelleAcheminement": "ST MARTIN D AUDOUVILLE", + "nomCommune": "ST MARTIN D AUDOUVILLE" }, { - "codePostal": "54740", - "codeCommune": "54142", - "libelleAcheminement": "CRANTENOY", - "nomCommune": "CRANTENOY" + "codePostal": "59283", + "codeCommune": "59489", + "libelleAcheminement": "RAIMBEAUCOURT", + "nomCommune": "RAIMBEAUCOURT" }, { - "codePostal": "30170", - "codeCommune": "30172", - "libelleAcheminement": "MONOBLET", - "nomCommune": "MONOBLET" + "codePostal": "02250", + "codeCommune": "02513", + "libelleAcheminement": "MONTIGNY LE FRANC", + "nomCommune": "MONTIGNY LE FRANC" }, { - "codePostal": "25530", - "codeCommune": "25435", - "libelleAcheminement": "ORSANS", - "nomCommune": "ORSANS" + "codePostal": "59670", + "codeCommune": "59282", + "libelleAcheminement": "HARDIFORT", + "nomCommune": "HARDIFORT" }, { - "codePostal": "40090", - "codeCommune": "40062", - "libelleAcheminement": "CAMPET ET LAMOLERE", - "nomCommune": "CAMPET ET LAMOLERE" + "codePostal": "48210", + "codeCommune": "48146", + "libelleAcheminement": "GORGES DU TARN CAUSSES", + "nomCommune": "GORGES DU TARN CAUSSES" }, { - "codePostal": "54110", - "codeCommune": "54145", - "libelleAcheminement": "CREVIC", - "nomCommune": "CREVIC" + "codePostal": "50800", + "codeCommune": "50521", + "libelleAcheminement": "ST MAUR DES BOIS", + "nomCommune": "ST MAUR DES BOIS" }, { - "codePostal": "30340", - "codeCommune": "30173", - "libelleAcheminement": "MONS", - "nomCommune": "MONS" + "codePostal": "59550", + "codeCommune": "59503", + "libelleAcheminement": "ROBERSART", + "nomCommune": "ROBERSART" }, { - "codePostal": "25360", - "codeCommune": "25437", - "libelleAcheminement": "OSSE", - "nomCommune": "OSSE" + "codePostal": "02270", + "codeCommune": "02517", + "libelleAcheminement": "MONTIGNY SUR CRECY", + "nomCommune": "MONTIGNY SUR CRECY" }, { - "codePostal": "40180", - "codeCommune": "40063", - "libelleAcheminement": "CANDRESSE", - "nomCommune": "CANDRESSE" + "codePostal": "59121", + "codeCommune": "59288", + "libelleAcheminement": "HAULCHIN", + "nomCommune": "HAULCHIN" }, { - "codePostal": "54720", - "codeCommune": "54151", - "libelleAcheminement": "CUTRY", - "nomCommune": "CUTRY" + "codePostal": "48320", + "codeCommune": "48146", + "libelleAcheminement": "GORGES DU TARN CAUSSES", + "nomCommune": "GORGES DU TARN CAUSSES" }, { - "codePostal": "30630", - "codeCommune": "30175", - "libelleAcheminement": "MONTCLUS", - "nomCommune": "MONTCLUS" + "codePostal": "50480", + "codeCommune": "50523", + "libelleAcheminement": "STE MERE EGLISE", + "nomCommune": "STE MERE EGLISE" }, { - "codePostal": "25440", - "codeCommune": "25445", - "libelleAcheminement": "PAROY", - "nomCommune": "PAROY" + "codePostal": "59230", + "codeCommune": "59511", + "libelleAcheminement": "ROSULT", + "nomCommune": "ROSULT" }, { - "codePostal": "40400", - "codeCommune": "40066", - "libelleAcheminement": "CARCARES STE CROIX", - "nomCommune": "CARCARES STE CROIX" + "codePostal": "02220", + "codeCommune": "02523", + "libelleAcheminement": "MONT ST MARTIN", + "nomCommune": "MONT ST MARTIN" }, { - "codePostal": "54110", - "codeCommune": "54159", - "libelleAcheminement": "DOMBASLE SUR MEURTHE", - "nomCommune": "DOMBASLE SUR MEURTHE" + "codePostal": "59530", + "codeCommune": "59296", + "libelleAcheminement": "HECQ", + "nomCommune": "HECQ" }, { - "codePostal": "30114", - "codeCommune": "30186", - "libelleAcheminement": "NAGES ET SOLORGUES", - "nomCommune": "NAGES ET SOLORGUES" + "codePostal": "48000", + "codeCommune": "48147", + "libelleAcheminement": "ST ETIENNE DU VALDONNEZ", + "nomCommune": "ST ETIENNE DU VALDONNEZ" }, { - "codePostal": "25360", - "codeCommune": "25446", - "libelleAcheminement": "PASSAVANT", - "nomCommune": "PASSAVANT" + "codePostal": "50370", + "codeCommune": "50529", + "libelleAcheminement": "ST NICOLAS DES BOIS", + "nomCommune": "ST NICOLAS DES BOIS" }, { - "codePostal": "40320", - "codeCommune": "40072", - "libelleAcheminement": "CASTELNAU TURSAN", - "nomCommune": "CASTELNAU TURSAN" + "codePostal": "59100", + "codeCommune": "59512", + "libelleAcheminement": "ROUBAIX", + "nomCommune": "ROUBAIX" }, { - "codePostal": "54130", - "codeCommune": "54165", - "libelleAcheminement": "DOMMARTEMONT", - "nomCommune": "DOMMARTEMONT" + "codePostal": "02360", + "codeCommune": "02526", + "libelleAcheminement": "MORGNY EN THIERACHE", + "nomCommune": "MORGNY EN THIERACHE" }, { - "codePostal": "30360", - "codeCommune": "30188", - "libelleAcheminement": "NERS", - "nomCommune": "NERS" + "codePostal": "59510", + "codeCommune": "59299", + "libelleAcheminement": "HEM", + "nomCommune": "HEM" }, { - "codePostal": "25170", - "codeCommune": "25448", - "libelleAcheminement": "PELOUSEY", - "nomCommune": "PELOUSEY" + "codePostal": "48120", + "codeCommune": "48149", + "libelleAcheminement": "STE EULALIE", + "nomCommune": "STE EULALIE" }, { - "codePostal": "40700", - "codeCommune": "40073", - "libelleAcheminement": "CASTELNER", - "nomCommune": "CASTELNER" + "codePostal": "50330", + "codeCommune": "50539", + "libelleAcheminement": "ST PIERRE EGLISE", + "nomCommune": "ST PIERRE EGLISE" }, { - "codePostal": "54200", - "codeCommune": "54174", - "libelleAcheminement": "ECROUVES", - "nomCommune": "ECROUVES" + "codePostal": "59258", + "codeCommune": "59517", + "libelleAcheminement": "LES RUES DES VIGNES", + "nomCommune": "LES RUES DES VIGNES" }, { - "codePostal": "30900", - "codeCommune": "30189", - "libelleAcheminement": "NIMES", - "nomCommune": "NIMES" + "codePostal": "02270", + "codeCommune": "02529", + "libelleAcheminement": "MORTIERS", + "nomCommune": "MORTIERS" }, { - "codePostal": "25170", - "codeCommune": "25455", - "libelleAcheminement": "PLACEY", - "nomCommune": "PLACEY" + "codePostal": "59195", + "codeCommune": "59302", + "libelleAcheminement": "HERIN", + "nomCommune": "HERIN" }, { - "codePostal": "40330", - "codeCommune": "40074", - "libelleAcheminement": "CASTEL SARRAZIN", - "nomCommune": "CASTEL SARRAZIN" + "codePostal": "48240", + "codeCommune": "48152", + "libelleAcheminement": "VENTALON EN CEVENNES", + "nomCommune": "VENTALON EN CEVENNES" }, { - "codePostal": "54370", - "codeCommune": "54177", - "libelleAcheminement": "EMBERMENIL", - "nomCommune": "EMBERMENIL" + "codePostal": "50750", + "codeCommune": "50546", + "libelleAcheminement": "BOURGVALLEES", + "nomCommune": "BOURGVALLEES" }, { - "codePostal": "30160", - "codeCommune": "30194", - "libelleAcheminement": "PEYREMALE", - "nomCommune": "PEYREMALE" + "codePostal": "59281", + "codeCommune": "59520", + "libelleAcheminement": "RUMILLY EN CAMBRESIS", + "nomCommune": "RUMILLY EN CAMBRESIS" }, { - "codePostal": "25150", - "codeCommune": "25463", - "libelleAcheminement": "PONT DE ROIDE VERMONDANS", - "nomCommune": "PONT DE ROIDE VERMONDANS" + "codePostal": "02160", + "codeCommune": "02534", + "libelleAcheminement": "MUSCOURT", + "nomCommune": "MUSCOURT" }, { - "codePostal": "40270", - "codeCommune": "40080", - "libelleAcheminement": "CAZERES SUR L ADOUR", - "nomCommune": "CAZERES SUR L ADOUR" + "codePostal": "59470", + "codeCommune": "59305", + "libelleAcheminement": "HERZEELE", + "nomCommune": "HERZEELE" }, { - "codePostal": "54690", - "codeCommune": "54186", - "libelleAcheminement": "EULMONT", - "nomCommune": "EULMONT" + "codePostal": "48400", + "codeCommune": "48166", + "libelleAcheminement": "CANS ET CEVENNES", + "nomCommune": "CANS ET CEVENNES" }, { - "codePostal": "30330", - "codeCommune": "30196", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "50750", + "codeCommune": "50546", + "libelleAcheminement": "BOURGVALLEES", + "nomCommune": "BOURGVALLEES" }, { - "codePostal": "25550", - "codeCommune": "25469", - "libelleAcheminement": "PRESENTEVILLERS", - "nomCommune": "PRESENTEVILLERS" + "codePostal": "59230", + "codeCommune": "59526", + "libelleAcheminement": "ST AMAND LES EAUX", + "nomCommune": "ST AMAND LES EAUX" }, { - "codePostal": "40320", - "codeCommune": "40083", - "libelleAcheminement": "CLEDES", - "nomCommune": "CLEDES" + "codePostal": "02210", + "codeCommune": "02538", + "libelleAcheminement": "NANTEUIL NOTRE DAME", + "nomCommune": "NANTEUIL NOTRE DAME" }, { - "codePostal": "54470", - "codeCommune": "54193", - "libelleAcheminement": "FEY EN HAYE", - "nomCommune": "FEY EN HAYE" + "codePostal": "59540", + "codeCommune": "59321", + "libelleAcheminement": "INCHY", + "nomCommune": "INCHY" }, { - "codePostal": "30122", - "codeCommune": "30198", - "libelleAcheminement": "LES PLANTIERS", - "nomCommune": "LES PLANTIERS" + "codePostal": "48140", + "codeCommune": "48169", + "libelleAcheminement": "ST LEGER DU MALZIEU", + "nomCommune": "ST LEGER DU MALZIEU" }, { - "codePostal": "25440", - "codeCommune": "25475", - "libelleAcheminement": "QUINGEY", - "nomCommune": "QUINGEY" + "codePostal": "50750", + "codeCommune": "50546", + "libelleAcheminement": "BOURGVALLEES", + "nomCommune": "BOURGVALLEES" }, { - "codePostal": "40800", - "codeCommune": "40091", - "libelleAcheminement": "DUHORT BACHEN", - "nomCommune": "DUHORT BACHEN" + "codePostal": "59440", + "codeCommune": "59529", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "54710", - "codeCommune": "54197", - "libelleAcheminement": "FLEVILLE DEVANT NANCY", - "nomCommune": "FLEVILLE DEVANT NANCY" + "codePostal": "02300", + "codeCommune": "02546", + "libelleAcheminement": "LA NEUVILLE EN BEINE", + "nomCommune": "LA NEUVILLE EN BEINE" }, { - "codePostal": "30610", - "codeCommune": "30208", - "libelleAcheminement": "PUECHREDON", - "nomCommune": "PUECHREDON" + "codePostal": "59495", + "codeCommune": "59340", + "libelleAcheminement": "LEFFRINCKOUCKE", + "nomCommune": "LEFFRINCKOUCKE" }, { - "codePostal": "25320", - "codeCommune": "25477", - "libelleAcheminement": "RANCENAY", - "nomCommune": "RANCENAY" + "codePostal": "48160", + "codeCommune": "48173", + "libelleAcheminement": "ST MICHEL DE DEZE", + "nomCommune": "ST MICHEL DE DEZE" }, { - "codePostal": "40240", - "codeCommune": "40096", - "libelleAcheminement": "ESTIGARDE", - "nomCommune": "ESTIGARDE" + "codePostal": "50200", + "codeCommune": "50550", + "libelleAcheminement": "ST SAUVEUR VILLAGES", + "nomCommune": "ST SAUVEUR VILLAGES" }, { - "codePostal": "54150", - "codeCommune": "54198", - "libelleAcheminement": "FLEVILLE LIXIERES", - "nomCommune": "FLEVILLE LIXIERES" + "codePostal": "59163", + "codeCommune": "59530", + "libelleAcheminement": "ST AYBERT", + "nomCommune": "ST AYBERT" }, { - "codePostal": "30200", - "codeCommune": "30222", - "libelleAcheminement": "LA ROQUE SUR CEZE", - "nomCommune": "LA ROQUE SUR CEZE" + "codePostal": "02100", + "codeCommune": "02549", + "libelleAcheminement": "NEUVILLE ST AMAND", + "nomCommune": "NEUVILLE ST AMAND" }, { - "codePostal": "25550", - "codeCommune": "25481", - "libelleAcheminement": "RAYNANS", - "nomCommune": "RAYNANS" + "codePostal": "59740", + "codeCommune": "59342", + "libelleAcheminement": "LEZ FONTAINE", + "nomCommune": "LEZ FONTAINE" }, { - "codePostal": "40180", - "codeCommune": "40106", - "libelleAcheminement": "GARREY", - "nomCommune": "GARREY" + "codePostal": "48500", + "codeCommune": "48181", + "libelleAcheminement": "ST SATURNIN", + "nomCommune": "ST SATURNIN" }, { - "codePostal": "54840", - "codeCommune": "54202", - "libelleAcheminement": "FONTENOY SUR MOSELLE", - "nomCommune": "FONTENOY SUR MOSELLE" + "codePostal": "50390", + "codeCommune": "50551", + "libelleAcheminement": "ST SAUVEUR LE VICOMTE", + "nomCommune": "ST SAUVEUR LE VICOMTE" }, { - "codePostal": "30500", - "codeCommune": "30227", - "libelleAcheminement": "ST AMBROIX", - "nomCommune": "ST AMBROIX" + "codePostal": "59360", + "codeCommune": "59531", + "libelleAcheminement": "ST BENIN", + "nomCommune": "ST BENIN" }, { - "codePostal": "25160", - "codeCommune": "25486", - "libelleAcheminement": "REMORAY BOUJEONS", - "nomCommune": "REMORAY BOUJEONS" + "codePostal": "02860", + "codeCommune": "02550", + "libelleAcheminement": "NEUVILLE SUR AILETTE", + "nomCommune": "NEUVILLE SUR AILETTE" }, { - "codePostal": "40320", - "codeCommune": "40110", - "libelleAcheminement": "GEAUNE", - "nomCommune": "GEAUNE" + "codePostal": "59620", + "codeCommune": "59344", + "libelleAcheminement": "LEVAL", + "nomCommune": "LEVAL" }, { - "codePostal": "54930", - "codeCommune": "54207", - "libelleAcheminement": "FRAISNES EN SAINTOIS", - "nomCommune": "FRAISNES EN SAINTOIS" + "codePostal": "48700", + "codeCommune": "48188", + "libelleAcheminement": "SERVERETTE", + "nomCommune": "SERVERETTE" }, { - "codePostal": "30110", - "codeCommune": "30239", - "libelleAcheminement": "STE CECILE D ANDORGE", - "nomCommune": "STE CECILE D ANDORGE" + "codePostal": "50190", + "codeCommune": "50552", + "libelleAcheminement": "ST SEBASTIEN DE RAIDS", + "nomCommune": "ST SEBASTIEN DE RAIDS" }, { - "codePostal": "25640", - "codeCommune": "25490", - "libelleAcheminement": "RIGNEY", - "nomCommune": "RIGNEY" + "codePostal": "59292", + "codeCommune": "59533", + "libelleAcheminement": "ST HILAIRE LEZ CAMBRAI", + "nomCommune": "ST HILAIRE LEZ CAMBRAI" }, { - "codePostal": "40700", - "codeCommune": "40128", - "libelleAcheminement": "HORSARRIEU", - "nomCommune": "HORSARRIEU" + "codePostal": "02880", + "codeCommune": "02551", + "libelleAcheminement": "NEUVILLE SUR MARGIVAL", + "nomCommune": "NEUVILLE SUR MARGIVAL" }, { - "codePostal": "54450", - "codeCommune": "54211", - "libelleAcheminement": "FREMONVILLE", - "nomCommune": "FREMONVILLE" + "codePostal": "59777", + "codeCommune": "59350", + "libelleAcheminement": "LILLE", + "nomCommune": "LILLE" }, { - "codePostal": "30360", - "codeCommune": "30240", - "libelleAcheminement": "ST CESAIRE DE GAUZIGNAN", - "nomCommune": "ST CESAIRE DE GAUZIGNAN" + "codePostal": "48500", + "codeCommune": "48191", + "libelleAcheminement": "LA TIEULE", + "nomCommune": "LA TIEULE" }, { - "codePostal": "25310", - "codeCommune": "25497", - "libelleAcheminement": "ROCHES LES BLAMONT", - "nomCommune": "ROCHES LES BLAMONT" + "codePostal": "50750", + "codeCommune": "50556", + "libelleAcheminement": "STE SUZANNE SUR VIRE", + "nomCommune": "STE SUZANNE SUR VIRE" }, { - "codePostal": "40800", - "codeCommune": "40146", - "libelleAcheminement": "LATRILLE", - "nomCommune": "LATRILLE" + "codePostal": "59730", + "codeCommune": "59541", + "libelleAcheminement": "ST PYTHON", + "nomCommune": "ST PYTHON" }, { - "codePostal": "54115", - "codeCommune": "54220", - "libelleAcheminement": "GEMONVILLE", - "nomCommune": "GEMONVILLE" + "codePostal": "02390", + "codeCommune": "02552", + "libelleAcheminement": "NEUVILLETTE", + "nomCommune": "NEUVILLETTE" }, { - "codePostal": "30190", - "codeCommune": "30241", - "libelleAcheminement": "ST CHAPTES", - "nomCommune": "ST CHAPTES" + "codePostal": "59840", + "codeCommune": "59356", + "libelleAcheminement": "LOMPRET", + "nomCommune": "LOMPRET" }, { - "codePostal": "25380", - "codeCommune": "25504", - "libelleAcheminement": "ROSUREUX", - "nomCommune": "ROSUREUX" + "codePostal": "48800", + "codeCommune": "48198", + "libelleAcheminement": "VILLEFORT", + "nomCommune": "VILLEFORT" }, { - "codePostal": "40250", - "codeCommune": "40147", - "libelleAcheminement": "LAUREDE", - "nomCommune": "LAUREDE" + "codePostal": "50420", + "codeCommune": "50563", + "libelleAcheminement": "ST VIGOR DES MONTS", + "nomCommune": "ST VIGOR DES MONTS" }, { - "codePostal": "54122", - "codeCommune": "54229", - "libelleAcheminement": "GLONVILLE", - "nomCommune": "GLONVILLE" + "codePostal": "59330", + "codeCommune": "59543", + "libelleAcheminement": "ST REMY DU NORD", + "nomCommune": "ST REMY DU NORD" }, { - "codePostal": "30360", - "codeCommune": "30250", - "libelleAcheminement": "ST ETIENNE DE L OLM", - "nomCommune": "ST ETIENNE DE L OLM" + "codePostal": "02400", + "codeCommune": "02554", + "libelleAcheminement": "NOGENTEL", + "nomCommune": "NOGENTEL" }, { - "codePostal": "25680", - "codeCommune": "25505", - "libelleAcheminement": "ROUGEMONT", - "nomCommune": "ROUGEMONT" + "codePostal": "59830", + "codeCommune": "59364", + "libelleAcheminement": "LOUVIL", + "nomCommune": "LOUVIL" }, { - "codePostal": "40320", - "codeCommune": "40148", - "libelleAcheminement": "LAURET", - "nomCommune": "LAURET" + "codePostal": "49700", + "codeCommune": "49003", + "libelleAcheminement": "TUFFALUN", + "nomCommune": "TUFFALUN" }, { - "codePostal": "54930", - "codeCommune": "54241", - "libelleAcheminement": "GUGNEY", - "nomCommune": "GUGNEY" + "codePostal": "50530", + "codeCommune": "50565", + "libelleAcheminement": "SARTILLY BAIE BOCAGE", + "nomCommune": "SARTILLY BAIE BOCAGE" }, { - "codePostal": "30200", - "codeCommune": "30251", - "libelleAcheminement": "ST ETIENNE DES SORTS", - "nomCommune": "ST ETIENNE DES SORTS" + "codePostal": "59268", + "codeCommune": "59552", + "libelleAcheminement": "SANCOURT", + "nomCommune": "SANCOURT" }, { - "codePostal": "25370", - "codeCommune": "25514", - "libelleAcheminement": "ST ANTOINE", - "nomCommune": "ST ANTOINE" + "codePostal": "02340", + "codeCommune": "02556", + "libelleAcheminement": "NOIRCOURT", + "nomCommune": "NOIRCOURT" }, { - "codePostal": "40400", - "codeCommune": "40151", - "libelleAcheminement": "LESGOR", - "nomCommune": "LESGOR" + "codePostal": "59720", + "codeCommune": "59365", + "libelleAcheminement": "LOUVROIL", + "nomCommune": "LOUVROIL" }, { - "codePostal": "54113", - "codeCommune": "54242", - "libelleAcheminement": "GYE", - "nomCommune": "GYE" + "codePostal": "49700", + "codeCommune": "49003", + "libelleAcheminement": "TUFFALUN", + "nomCommune": "TUFFALUN" }, { - "codePostal": "30560", - "codeCommune": "30259", - "libelleAcheminement": "ST HILAIRE DE BRETHMAS", - "nomCommune": "ST HILAIRE DE BRETHMAS" + "codePostal": "50200", + "codeCommune": "50568", + "libelleAcheminement": "SAUSSEY", + "nomCommune": "SAUSSEY" }, { - "codePostal": "25340", - "codeCommune": "25516", - "libelleAcheminement": "ST GEORGES ARMONT", - "nomCommune": "ST GEORGES ARMONT" + "codePostal": "59211", + "codeCommune": "59553", + "libelleAcheminement": "SANTES", + "nomCommune": "SANTES" }, { - "codePostal": "40090", - "codeCommune": "40162", - "libelleAcheminement": "LUCBARDEZ ET BARGUES", - "nomCommune": "LUCBARDEZ ET BARGUES" + "codePostal": "02800", + "codeCommune": "02560", + "libelleAcheminement": "NOUVION LE COMTE", + "nomCommune": "NOUVION LE COMTE" }, { - "codePostal": "54440", - "codeCommune": "54261", - "libelleAcheminement": "HERSERANGE", - "nomCommune": "HERSERANGE" + "codePostal": "59173", + "codeCommune": "59366", + "libelleAcheminement": "LYNDE", + "nomCommune": "LYNDE" }, { - "codePostal": "30360", - "codeCommune": "30261", - "libelleAcheminement": "ST HIPPOLYTE DE CATON", - "nomCommune": "ST HIPPOLYTE DE CATON" + "codePostal": "49440", + "codeCommune": "49008", + "libelleAcheminement": "ANGRIE", + "nomCommune": "ANGRIE" }, { - "codePostal": "25210", - "codeCommune": "25522", - "libelleAcheminement": "ST JULIEN LES RUSSEY", - "nomCommune": "ST JULIEN LES RUSSEY" + "codePostal": "50170", + "codeCommune": "50574", + "libelleAcheminement": "SERVON", + "nomCommune": "SERVON" }, { - "codePostal": "40430", - "codeCommune": "40167", - "libelleAcheminement": "LUXEY", - "nomCommune": "LUXEY" + "codePostal": "59216", + "codeCommune": "59555", + "libelleAcheminement": "SARS POTERIES", + "nomCommune": "SARS POTERIES" }, { - "codePostal": "54330", - "codeCommune": "54264", - "libelleAcheminement": "HOUDELMONT", - "nomCommune": "HOUDELMONT" + "codePostal": "02860", + "codeCommune": "02561", + "libelleAcheminement": "NOUVION LE VINEUX", + "nomCommune": "NOUVION LE VINEUX" }, { - "codePostal": "30330", - "codeCommune": "30282", - "libelleAcheminement": "ST MARCEL DE CAREIRET", - "nomCommune": "ST MARCEL DE CAREIRET" + "codePostal": "59390", + "codeCommune": "59367", + "libelleAcheminement": "LYS LEZ LANNOY", + "nomCommune": "LYS LEZ LANNOY" }, { - "codePostal": "25630", - "codeCommune": "25526", - "libelleAcheminement": "STE SUZANNE", - "nomCommune": "STE SUZANNE" + "codePostal": "49260", + "codeCommune": "49011", + "libelleAcheminement": "ARTANNES SUR THOUET", + "nomCommune": "ARTANNES SUR THOUET" }, { - "codePostal": "40120", - "codeCommune": "40170", - "libelleAcheminement": "MAILLERES", - "nomCommune": "MAILLERES" + "codePostal": "50340", + "codeCommune": "50580", + "libelleAcheminement": "SOTTEVILLE", + "nomCommune": "SOTTEVILLE" }, { - "codePostal": "54140", - "codeCommune": "54274", - "libelleAcheminement": "JARVILLE LA MALGRANGE", - "nomCommune": "JARVILLE LA MALGRANGE" + "codePostal": "59227", + "codeCommune": "59558", + "libelleAcheminement": "SAULZOIR", + "nomCommune": "SAULZOIR" }, { - "codePostal": "30360", - "codeCommune": "30285", - "libelleAcheminement": "ST MAURICE DE CAZEVIEILLE", - "nomCommune": "ST MAURICE DE CAZEVIEILLE" + "codePostal": "02290", + "codeCommune": "02562", + "libelleAcheminement": "NOUVRON VINGRE", + "nomCommune": "NOUVRON VINGRE" }, { - "codePostal": "25410", - "codeCommune": "25527", - "libelleAcheminement": "ST VIT", - "nomCommune": "ST VIT" + "codePostal": "59233", + "codeCommune": "59369", + "libelleAcheminement": "MAING", + "nomCommune": "MAING" }, { - "codePostal": "40330", - "codeCommune": "40173", - "libelleAcheminement": "MARPAPS", - "nomCommune": "MARPAPS" + "codePostal": "49430", + "codeCommune": "49017", + "libelleAcheminement": "BARACE", + "nomCommune": "BARACE" }, { - "codePostal": "54700", - "codeCommune": "54279", - "libelleAcheminement": "JEZAINVILLE", - "nomCommune": "JEZAINVILLE" + "codePostal": "50150", + "codeCommune": "50582", + "libelleAcheminement": "SOURDEVAL", + "nomCommune": "SOURDEVAL" }, { - "codePostal": "30700", - "codeCommune": "30286", - "libelleAcheminement": "ST MAXIMIN", - "nomCommune": "ST MAXIMIN" + "codePostal": "59440", + "codeCommune": "59563", + "libelleAcheminement": "SEMOUSIES", + "nomCommune": "SEMOUSIES" }, { - "codePostal": "25580", - "codeCommune": "25535", - "libelleAcheminement": "SAULES", - "nomCommune": "SAULES" + "codePostal": "02550", + "codeCommune": "02574", + "libelleAcheminement": "ORIGNY EN THIERACHE", + "nomCommune": "ORIGNY EN THIERACHE" }, { - "codePostal": "40200", - "codeCommune": "40184", - "libelleAcheminement": "MIMIZAN", - "nomCommune": "MIMIZAN" + "codePostal": "59870", + "codeCommune": "59375", + "libelleAcheminement": "MARCHIENNES", + "nomCommune": "MARCHIENNES" }, { - "codePostal": "54970", - "codeCommune": "54295", - "libelleAcheminement": "LANDRES", - "nomCommune": "LANDRES" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "30200", - "codeCommune": "30287", - "libelleAcheminement": "ST MICHEL D EUZET", - "nomCommune": "ST MICHEL D EUZET" + "codePostal": "50700", + "codeCommune": "50588", + "libelleAcheminement": "TAMERVILLE", + "nomCommune": "TAMERVILLE" }, { - "codePostal": "25290", - "codeCommune": "25537", - "libelleAcheminement": "SCEY MAISIERES", - "nomCommune": "SCEY MAISIERES" + "codePostal": "59740", + "codeCommune": "59572", + "libelleAcheminement": "SOLRE LE CHATEAU", + "nomCommune": "SOLRE LE CHATEAU" }, { - "codePostal": "40320", - "codeCommune": "40185", - "libelleAcheminement": "MIRAMONT SENSACQ", - "nomCommune": "MIRAMONT SENSACQ" + "codePostal": "02160", + "codeCommune": "02578", + "libelleAcheminement": "OULCHES LA VALLEE FOULON", + "nomCommune": "OULCHES LA VALLEE FOULON" }, { - "codePostal": "54370", - "codeCommune": "54297", - "libelleAcheminement": "LANEUVEVILLE AUX BOIS", - "nomCommune": "LANEUVEVILLE AUX BOIS" + "codePostal": "59700", + "codeCommune": "59378", + "libelleAcheminement": "MARCQ EN BAROEUL", + "nomCommune": "MARCQ EN BAROEUL" }, { - "codePostal": "30330", - "codeCommune": "30292", - "libelleAcheminement": "ST PONS LA CALM", - "nomCommune": "ST PONS LA CALM" + "codePostal": "49070", + "codeCommune": "49020", + "libelleAcheminement": "BEAUCOUZE", + "nomCommune": "BEAUCOUZE" }, { - "codePostal": "25430", - "codeCommune": "25544", - "libelleAcheminement": "SERVIN", - "nomCommune": "SERVIN" + "codePostal": "50320", + "codeCommune": "50590", + "libelleAcheminement": "LE TANU", + "nomCommune": "LE TANU" }, { - "codePostal": "40290", - "codeCommune": "40186", - "libelleAcheminement": "MISSON", - "nomCommune": "MISSON" + "codePostal": "59740", + "codeCommune": "59573", + "libelleAcheminement": "SOLRINNES", + "nomCommune": "SOLRINNES" }, { - "codePostal": "54740", - "codeCommune": "54299", - "libelleAcheminement": "LANEUVEVILLE DEVANT BAYON", - "nomCommune": "LANEUVEVILLE DEVANT BAYON" + "codePostal": "02210", + "codeCommune": "02579", + "libelleAcheminement": "OULCHY LA VILLE", + "nomCommune": "OULCHY LA VILLE" }, { - "codePostal": "30700", - "codeCommune": "30295", - "libelleAcheminement": "ST QUENTIN LA POTERIE", - "nomCommune": "ST QUENTIN LA POTERIE" + "codePostal": "59252", + "codeCommune": "59379", + "libelleAcheminement": "MARCQ EN OSTREVENT", + "nomCommune": "MARCQ EN OSTREVENT" }, { - "codePostal": "25400", - "codeCommune": "25555", - "libelleAcheminement": "TAILLECOURT", - "nomCommune": "TAILLECOURT" + "codePostal": "49122", + "codeCommune": "49027", + "libelleAcheminement": "BEGROLLES EN MAUGES", + "nomCommune": "BEGROLLES EN MAUGES" }, { - "codePostal": "40000", - "codeCommune": "40192", - "libelleAcheminement": "MONT DE MARSAN", - "nomCommune": "MONT DE MARSAN" + "codePostal": "50320", + "codeCommune": "50590", + "libelleAcheminement": "LE TANU", + "nomCommune": "LE TANU" }, { - "codePostal": "54520", - "codeCommune": "54304", - "libelleAcheminement": "LAXOU", - "nomCommune": "LAXOU" + "codePostal": "59490", + "codeCommune": "59574", + "libelleAcheminement": "SOMAIN", + "nomCommune": "SOMAIN" }, { - "codePostal": "30750", - "codeCommune": "30297", - "libelleAcheminement": "ST SAUVEUR CAMPRIEU", - "nomCommune": "ST SAUVEUR CAMPRIEU" + "codePostal": "02210", + "codeCommune": "02580", + "libelleAcheminement": "OULCHY LE CHATEAU", + "nomCommune": "OULCHY LE CHATEAU" }, { - "codePostal": "25870", - "codeCommune": "25557", - "libelleAcheminement": "TALLENAY", - "nomCommune": "TALLENAY" + "codePostal": "59550", + "codeCommune": "59384", + "libelleAcheminement": "MAROILLES", + "nomCommune": "MAROILLES" }, { - "codePostal": "40700", - "codeCommune": "40198", - "libelleAcheminement": "MORGANX", - "nomCommune": "MORGANX" + "codePostal": "49320", + "codeCommune": "49029", + "libelleAcheminement": "BLAISON ST SULPICE", + "nomCommune": "BLAISON ST SULPICE" }, { - "codePostal": "54740", - "codeCommune": "54310", - "libelleAcheminement": "LEMENIL MITRY", - "nomCommune": "LEMENIL MITRY" + "codePostal": "50640", + "codeCommune": "50591", + "libelleAcheminement": "LE TEILLEUL", + "nomCommune": "LE TEILLEUL" }, { - "codePostal": "30140", - "codeCommune": "30298", - "libelleAcheminement": "ST SEBASTIEN D AIGREFEUILLE", - "nomCommune": "ST SEBASTIEN D AIGREFEUILLE" + "codePostal": "59380", + "codeCommune": "59576", + "libelleAcheminement": "SPYCKER", + "nomCommune": "SPYCKER" }, { - "codePostal": "25190", - "codeCommune": "25584", - "libelleAcheminement": "VALOREILLE", - "nomCommune": "VALOREILLE" + "codePostal": "02210", + "codeCommune": "02580", + "libelleAcheminement": "OULCHY LE CHATEAU", + "nomCommune": "OULCHY LE CHATEAU" }, { - "codePostal": "40380", - "codeCommune": "40205", - "libelleAcheminement": "NOUSSE", - "nomCommune": "NOUSSE" + "codePostal": "59274", + "codeCommune": "59388", + "libelleAcheminement": "MARQUILLIES", + "nomCommune": "MARQUILLIES" }, { - "codePostal": "54700", - "codeCommune": "54312", - "libelleAcheminement": "LESMENILS", - "nomCommune": "LESMENILS" + "codePostal": "49125", + "codeCommune": "49048", + "libelleAcheminement": "BRIOLLAY", + "nomCommune": "BRIOLLAY" }, { - "codePostal": "30110", - "codeCommune": "30307", - "libelleAcheminement": "LES SALLES DU GARDON", - "nomCommune": "LES SALLES DU GARDON" + "codePostal": "50420", + "codeCommune": "50592", + "libelleAcheminement": "TESSY BOCAGE", + "nomCommune": "TESSY BOCAGE" }, { - "codePostal": "25380", - "codeCommune": "25588", - "libelleAcheminement": "VAUCLUSE", - "nomCommune": "VAUCLUSE" + "codePostal": "59181", + "codeCommune": "59581", + "libelleAcheminement": "STEENWERCK", + "nomCommune": "STEENWERCK" }, { - "codePostal": "40110", - "codeCommune": "40215", - "libelleAcheminement": "OUSSE SUZAN", - "nomCommune": "OUSSE SUZAN" + "codePostal": "02220", + "codeCommune": "02581", + "libelleAcheminement": "PAARS", + "nomCommune": "PAARS" }, { - "codePostal": "54260", - "codeCommune": "54322", - "libelleAcheminement": "LONGUYON", - "nomCommune": "LONGUYON" + "codePostal": "59241", + "codeCommune": "59389", + "libelleAcheminement": "MASNIERES", + "nomCommune": "MASNIERES" }, { - "codePostal": "30260", - "codeCommune": "30309", - "libelleAcheminement": "SARDAN", - "nomCommune": "SARDAN" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "25870", - "codeCommune": "25598", - "libelleAcheminement": "VENISE", - "nomCommune": "VENISE" + "codePostal": "50420", + "codeCommune": "50592", + "libelleAcheminement": "TESSY BOCAGE", + "nomCommune": "TESSY BOCAGE" }, { - "codePostal": "40320", - "codeCommune": "40226", - "libelleAcheminement": "PIMBO", - "nomCommune": "PIMBO" + "codePostal": "59175", + "codeCommune": "59585", + "libelleAcheminement": "TEMPLEMARS", + "nomCommune": "TEMPLEMARS" }, { - "codePostal": "54400", - "codeCommune": "54323", - "libelleAcheminement": "LONGWY", - "nomCommune": "LONGWY" + "codePostal": "02160", + "codeCommune": "02582", + "libelleAcheminement": "PAISSY", + "nomCommune": "PAISSY" }, { - "codePostal": "30610", - "codeCommune": "30311", - "libelleAcheminement": "SAUVE", - "nomCommune": "SAUVE" + "codePostal": "59600", + "codeCommune": "59392", + "libelleAcheminement": "MAUBEUGE", + "nomCommune": "MAUBEUGE" }, { - "codePostal": "25750", - "codeCommune": "25608", - "libelleAcheminement": "LE VERNOY", - "nomCommune": "LE VERNOY" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "40465", - "codeCommune": "40237", - "libelleAcheminement": "PRECHACQ LES BAINS", - "nomCommune": "PRECHACQ LES BAINS" + "codePostal": "50420", + "codeCommune": "50592", + "libelleAcheminement": "TESSY BOCAGE", + "nomCommune": "TESSY BOCAGE" }, { - "codePostal": "54150", - "codeCommune": "54326", - "libelleAcheminement": "LUBEY", - "nomCommune": "LUBEY" + "codePostal": "59229", + "codeCommune": "59588", + "libelleAcheminement": "TETEGHEM COUDEKERQUE VILLAGE", + "nomCommune": "TETEGHEM COUDEKERQUE VILLAGE" }, { - "codePostal": "30250", - "codeCommune": "30321", - "libelleAcheminement": "SOMMIERES", - "nomCommune": "SOMMIERES" + "codePostal": "02160", + "codeCommune": "02588", + "libelleAcheminement": "PARGNAN", + "nomCommune": "PARGNAN" }, { - "codePostal": "25110", - "codeCommune": "25626", - "libelleAcheminement": "VILLERS ST MARTIN", - "nomCommune": "VILLERS ST MARTIN" + "codePostal": "59360", + "codeCommune": "59395", + "libelleAcheminement": "MAZINGHIEN", + "nomCommune": "MAZINGHIEN" }, { - "codePostal": "40090", - "codeCommune": "40250", - "libelleAcheminement": "ST AVIT", - "nomCommune": "ST AVIT" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "54300", - "codeCommune": "54350", - "libelleAcheminement": "MARAINVILLER", - "nomCommune": "MARAINVILLER" + "codePostal": "50330", + "codeCommune": "50596", + "libelleAcheminement": "THEVILLE", + "nomCommune": "THEVILLE" }, { - "codePostal": "30430", - "codeCommune": "30327", - "libelleAcheminement": "THARAUX", - "nomCommune": "THARAUX" + "codePostal": "59380", + "codeCommune": "59588", + "libelleAcheminement": "TETEGHEM COUDEKERQUE VILLAGE", + "nomCommune": "TETEGHEM COUDEKERQUE VILLAGE" }, { - "codePostal": "25110", - "codeCommune": "25629", - "libelleAcheminement": "VOILLANS", - "nomCommune": "VOILLANS" + "codePostal": "02000", + "codeCommune": "02589", + "libelleAcheminement": "PARGNY FILAIN", + "nomCommune": "PARGNY FILAIN" }, { - "codePostal": "40300", - "codeCommune": "40256", - "libelleAcheminement": "ST ETIENNE D ORTHE", - "nomCommune": "ST ETIENNE D ORTHE" + "codePostal": "59224", + "codeCommune": "59407", + "libelleAcheminement": "MONCHAUX SUR ECAILLON", + "nomCommune": "MONCHAUX SUR ECAILLON" }, { - "codePostal": "54280", - "codeCommune": "54358", - "libelleAcheminement": "MAZERULLES", - "nomCommune": "MAZERULLES" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "30460", - "codeCommune": "30335", - "libelleAcheminement": "VABRES", - "nomCommune": "VABRES" + "codePostal": "50870", + "codeCommune": "50597", + "libelleAcheminement": "TIREPIED SUR SEE", + "nomCommune": "TIREPIED SUR SEE" }, { - "codePostal": "25580", - "codeCommune": "25630", - "libelleAcheminement": "VOIRES", - "nomCommune": "VOIRES" + "codePostal": "59224", + "codeCommune": "59589", + "libelleAcheminement": "THIANT", + "nomCommune": "THIANT" }, { - "codePostal": "40380", - "codeCommune": "40260", - "libelleAcheminement": "ST GEOURS D AURIBAT", - "nomCommune": "ST GEOURS D AURIBAT" + "codePostal": "02470", + "codeCommune": "02594", + "libelleAcheminement": "PASSY EN VALOIS", + "nomCommune": "PASSY EN VALOIS" }, { - "codePostal": "54960", - "codeCommune": "54362", - "libelleAcheminement": "MERCY LE BAS", - "nomCommune": "MERCY LE BAS" + "codePostal": "59283", + "codeCommune": "59408", + "libelleAcheminement": "MONCHEAUX", + "nomCommune": "MONCHEAUX" }, { - "codePostal": "30300", - "codeCommune": "30336", - "libelleAcheminement": "VALLABREGUES", - "nomCommune": "VALLABREGUES" + "codePostal": "49700", + "codeCommune": "49053", + "libelleAcheminement": "BROSSAY", + "nomCommune": "BROSSAY" }, { - "codePostal": "26200", - "codeCommune": "26008", - "libelleAcheminement": "ANCONE", - "nomCommune": "ANCONE" + "codePostal": "50160", + "codeCommune": "50601", + "libelleAcheminement": "TORIGNY LES VILLES", + "nomCommune": "TORIGNY LES VILLES" }, { - "codePostal": "40170", - "codeCommune": "40266", - "libelleAcheminement": "ST JULIEN EN BORN", - "nomCommune": "ST JULIEN EN BORN" + "codePostal": "59554", + "codeCommune": "59597", + "libelleAcheminement": "TILLOY LEZ CAMBRAI", + "nomCommune": "TILLOY LEZ CAMBRAI" }, { - "codePostal": "54120", - "codeCommune": "54365", - "libelleAcheminement": "MERVILLER", - "nomCommune": "MERVILLER" + "codePostal": "02300", + "codeCommune": "02599", + "libelleAcheminement": "PIERREMANDE", + "nomCommune": "PIERREMANDE" }, { - "codePostal": "30570", - "codeCommune": "30339", - "libelleAcheminement": "VAL D AIGOUAL", - "nomCommune": "VAL D AIGOUAL" + "codePostal": "59190", + "codeCommune": "59416", + "libelleAcheminement": "MORBECQUE", + "nomCommune": "MORBECQUE" }, { - "codePostal": "26140", - "codeCommune": "26009", - "libelleAcheminement": "ANDANCETTE", - "nomCommune": "ANDANCETTE" + "codePostal": "49460", + "codeCommune": "49055", + "libelleAcheminement": "CANTENAY EPINARD", + "nomCommune": "CANTENAY EPINARD" }, { - "codePostal": "40270", - "codeCommune": "40275", - "libelleAcheminement": "ST MAURICE SUR ADOUR", - "nomCommune": "ST MAURICE SUR ADOUR" + "codePostal": "50160", + "codeCommune": "50601", + "libelleAcheminement": "TORIGNY LES VILLES", + "nomCommune": "TORIGNY LES VILLES" }, { - "codePostal": "54760", - "codeCommune": "54372", - "libelleAcheminement": "MOIVRONS", - "nomCommune": "MOIVRONS" + "codePostal": "59200", + "codeCommune": "59599", + "libelleAcheminement": "TOURCOING", + "nomCommune": "TOURCOING" }, { - "codePostal": "30570", - "codeCommune": "30339", - "libelleAcheminement": "VAL D AIGOUAL", - "nomCommune": "VAL D AIGOUAL" + "codePostal": "02240", + "codeCommune": "02605", + "libelleAcheminement": "PLEINE SELVE", + "nomCommune": "PLEINE SELVE" }, { - "codePostal": "26400", - "codeCommune": "26011", - "libelleAcheminement": "AOUSTE SUR SYE", - "nomCommune": "AOUSTE SUR SYE" + "codePostal": "59310", + "codeCommune": "59419", + "libelleAcheminement": "MOUCHIN", + "nomCommune": "MOUCHIN" }, { - "codePostal": "40200", - "codeCommune": "40278", - "libelleAcheminement": "ST PAUL EN BORN", - "nomCommune": "ST PAUL EN BORN" + "codePostal": "49420", + "codeCommune": "49056", + "libelleAcheminement": "CARBAY", + "nomCommune": "CARBAY" }, { - "codePostal": "54700", - "codeCommune": "54375", - "libelleAcheminement": "MONTAUVILLE", - "nomCommune": "MONTAUVILLE" + "codePostal": "50800", + "codeCommune": "50607", + "libelleAcheminement": "LA TRINITE", + "nomCommune": "LA TRINITE" }, { - "codePostal": "30310", - "codeCommune": "30344", - "libelleAcheminement": "VERGEZE", - "nomCommune": "VERGEZE" + "codePostal": "59237", + "codeCommune": "59611", + "libelleAcheminement": "VERLINGHEM", + "nomCommune": "VERLINGHEM" }, { - "codePostal": "26340", - "codeCommune": "26015", - "libelleAcheminement": "AUBENASSON", - "nomCommune": "AUBENASSON" + "codePostal": "02140", + "codeCommune": "02608", + "libelleAcheminement": "PLOMION", + "nomCommune": "PLOMION" }, { - "codePostal": "40180", - "codeCommune": "40293", - "libelleAcheminement": "SAUBUSSE", - "nomCommune": "SAUBUSSE" + "codePostal": "59218", + "codeCommune": "59425", + "libelleAcheminement": "NEUVILLE EN AVESNOIS", + "nomCommune": "NEUVILLE EN AVESNOIS" }, { - "codePostal": "54540", - "codeCommune": "54377", - "libelleAcheminement": "MONTIGNY", - "nomCommune": "MONTIGNY" + "codePostal": "49270", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "30770", - "codeCommune": "30353", - "libelleAcheminement": "VISSEC", - "nomCommune": "VISSEC" + "codePostal": "50480", + "codeCommune": "50609", + "libelleAcheminement": "TURQUEVILLE", + "nomCommune": "TURQUEVILLE" }, { - "codePostal": "26400", - "codeCommune": "26020", - "libelleAcheminement": "LA REPARA AURIPLES", - "nomCommune": "LA REPARA AURIPLES" + "codePostal": "59970", + "codeCommune": "59613", + "libelleAcheminement": "VICQ", + "nomCommune": "VICQ" }, { - "codePostal": "40700", - "codeCommune": "40299", - "libelleAcheminement": "SERRESLOUS ET ARRIBANS", - "nomCommune": "SERRESLOUS ET ARRIBANS" + "codePostal": "02200", + "codeCommune": "02610", + "libelleAcheminement": "POMMIERS", + "nomCommune": "POMMIERS" }, { - "codePostal": "54450", - "codeCommune": "54381", - "libelleAcheminement": "MONTREUX", - "nomCommune": "MONTREUX" + "codePostal": "59554", + "codeCommune": "59428", + "libelleAcheminement": "NEUVILLE ST REMY", + "nomCommune": "NEUVILLE ST REMY" }, { - "codePostal": "30350", - "codeCommune": "30354", - "libelleAcheminement": "MONTAGNAC", - "nomCommune": "MONTAGNAC" + "codePostal": "49500", + "codeCommune": "49089", + "libelleAcheminement": "CHAZE SUR ARGOS", + "nomCommune": "CHAZE SUR ARGOS" }, { - "codePostal": "26300", - "codeCommune": "26023", - "libelleAcheminement": "BARBIERES", - "nomCommune": "BARBIERES" + "codePostal": "50700", + "codeCommune": "50610", + "libelleAcheminement": "URVILLE", + "nomCommune": "URVILLE" }, { - "codePostal": "40180", - "codeCommune": "40300", - "libelleAcheminement": "SEYRESSE", - "nomCommune": "SEYRESSE" + "codePostal": "59138", + "codeCommune": "59617", + "libelleAcheminement": "VIEUX MESNIL", + "nomCommune": "VIEUX MESNIL" }, { - "codePostal": "54360", - "codeCommune": "54383", - "libelleAcheminement": "MONT SUR MEURTHE", - "nomCommune": "MONT SUR MEURTHE" + "codePostal": "02380", + "codeCommune": "02616", + "libelleAcheminement": "PONT ST MARD", + "nomCommune": "PONT ST MARD" }, { - "codePostal": "31460", - "codeCommune": "31006", - "libelleAcheminement": "ALBIAC", - "nomCommune": "ALBIAC" + "codePostal": "59143", + "codeCommune": "59433", + "libelleAcheminement": "NIEURLET", + "nomCommune": "NIEURLET" }, { - "codePostal": "26120", - "codeCommune": "26024", - "libelleAcheminement": "BARCELONNE", - "nomCommune": "BARCELONNE" + "codePostal": "49125", + "codeCommune": "49090", + "libelleAcheminement": "CHEFFES", + "nomCommune": "CHEFFES" }, { - "codePostal": "40180", - "codeCommune": "40301", - "libelleAcheminement": "SIEST", - "nomCommune": "SIEST" + "codePostal": "50700", + "codeCommune": "50615", + "libelleAcheminement": "VALOGNES", + "nomCommune": "VALOGNES" }, { - "codePostal": "54830", - "codeCommune": "54386", - "libelleAcheminement": "MORIVILLER", - "nomCommune": "MORIVILLER" + "codePostal": "59132", + "codeCommune": "59633", + "libelleAcheminement": "WALLERS EN FAGNE", + "nomCommune": "WALLERS EN FAGNE" }, { - "codePostal": "31160", - "codeCommune": "31011", - "libelleAcheminement": "ARBAS", - "nomCommune": "ARBAS" + "codePostal": "02270", + "codeCommune": "02617", + "libelleAcheminement": "POUILLY SUR SERRE", + "nomCommune": "POUILLY SUR SERRE" }, { - "codePostal": "26260", - "codeCommune": "26028", - "libelleAcheminement": "BATHERNAY", - "nomCommune": "BATHERNAY" + "codePostal": "59310", + "codeCommune": "59435", + "libelleAcheminement": "NOMAIN", + "nomCommune": "NOMAIN" }, { - "codePostal": "40320", - "codeCommune": "40305", - "libelleAcheminement": "SORBETS", - "nomCommune": "SORBETS" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "54490", - "codeCommune": "54394", - "libelleAcheminement": "MURVILLE", - "nomCommune": "MURVILLE" + "codePostal": "50300", + "codeCommune": "50616", + "libelleAcheminement": "LE VAL ST PERE", + "nomCommune": "LE VAL ST PERE" }, { - "codePostal": "31160", - "codeCommune": "31020", - "libelleAcheminement": "ASPET", - "nomCommune": "ASPET" + "codePostal": "59830", + "codeCommune": "59638", + "libelleAcheminement": "WANNEHAIN", + "nomCommune": "WANNEHAIN" }, { - "codePostal": "26120", - "codeCommune": "26032", - "libelleAcheminement": "LA BAUME CORNILLANE", - "nomCommune": "LA BAUME CORNILLANE" + "codePostal": "02370", + "codeCommune": "02620", + "libelleAcheminement": "PRESLES ET BOVES", + "nomCommune": "PRESLES ET BOVES" }, { - "codePostal": "40300", - "codeCommune": "40306", - "libelleAcheminement": "SORDE L ABBAYE", - "nomCommune": "SORDE L ABBAYE" + "codePostal": "59550", + "codeCommune": "59439", + "libelleAcheminement": "NOYELLES SUR SAMBRE", + "nomCommune": "NOYELLES SUR SAMBRE" }, { - "codePostal": "54450", - "codeCommune": "54406", - "libelleAcheminement": "OGEVILLER", - "nomCommune": "OGEVILLER" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "31190", - "codeCommune": "31033", - "libelleAcheminement": "AUTERIVE", - "nomCommune": "AUTERIVE" + "codePostal": "50450", + "codeCommune": "50626", + "libelleAcheminement": "VER", + "nomCommune": "VER" }, { - "codePostal": "26470", - "codeCommune": "26047", - "libelleAcheminement": "BELLEGARDE EN DIOIS", - "nomCommune": "BELLEGARDE EN DIOIS" + "codePostal": "59150", + "codeCommune": "59650", + "libelleAcheminement": "WATTRELOS", + "nomCommune": "WATTRELOS" }, { - "codePostal": "40180", - "codeCommune": "40314", - "libelleAcheminement": "TERCIS LES BAINS", - "nomCommune": "TERCIS LES BAINS" + "codePostal": "02120", + "codeCommune": "02624", + "libelleAcheminement": "PROISY", + "nomCommune": "PROISY" }, { - "codePostal": "54800", - "codeCommune": "54408", - "libelleAcheminement": "OLLEY", - "nomCommune": "OLLEY" + "codePostal": "59282", + "codeCommune": "59440", + "libelleAcheminement": "NOYELLES SUR SELLE", + "nomCommune": "NOYELLES SUR SELLE" }, { - "codePostal": "31650", - "codeCommune": "31036", - "libelleAcheminement": "AUZIELLE", - "nomCommune": "AUZIELLE" + "codePostal": "49670", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "26500", - "codeCommune": "26058", - "libelleAcheminement": "BOURG LES VALENCE", - "nomCommune": "BOURG LES VALENCE" + "codePostal": "50760", + "codeCommune": "50633", + "libelleAcheminement": "LE VICEL", + "nomCommune": "LE VICEL" }, { - "codePostal": "40320", - "codeCommune": "40321", - "libelleAcheminement": "URGONS", - "nomCommune": "URGONS" + "codePostal": "59143", + "codeCommune": "59664", + "libelleAcheminement": "WULVERDINGHE", + "nomCommune": "WULVERDINGHE" }, { - "codePostal": "54260", - "codeCommune": "54412", - "libelleAcheminement": "OTHE", - "nomCommune": "OTHE" + "codePostal": "02190", + "codeCommune": "02627", + "libelleAcheminement": "PROVISEUX ET PLESNOY", + "nomCommune": "PROVISEUX ET PLESNOY" }, { - "codePostal": "31380", - "codeCommune": "31038", - "libelleAcheminement": "AZAS", - "nomCommune": "AZAS" + "codePostal": "59570", + "codeCommune": "59441", + "libelleAcheminement": "OBIES", + "nomCommune": "OBIES" }, { - "codePostal": "26120", - "codeCommune": "26064", - "libelleAcheminement": "CHABEUIL", - "nomCommune": "CHABEUIL" + "codePostal": "49670", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "40110", - "codeCommune": "40330", - "libelleAcheminement": "VILLENAVE", - "nomCommune": "VILLENAVE" + "codePostal": "50630", + "codeCommune": "50634", + "libelleAcheminement": "VIDECOSVILLE", + "nomCommune": "VIDECOSVILLE" }, { - "codePostal": "54370", - "codeCommune": "54418", - "libelleAcheminement": "PARROY", - "nomCommune": "PARROY" + "codePostal": "59380", + "codeCommune": "59665", + "libelleAcheminement": "WYLDER", + "nomCommune": "WYLDER" }, { - "codePostal": "31420", - "codeCommune": "31039", - "libelleAcheminement": "BACHAS", - "nomCommune": "BACHAS" + "codePostal": "02600", + "codeCommune": "02628", + "libelleAcheminement": "PUISEUX EN RETZ", + "nomCommune": "PUISEUX EN RETZ" }, { - "codePostal": "26420", - "codeCommune": "26074", - "libelleAcheminement": "LA CHAPELLE EN VERCORS", - "nomCommune": "LA CHAPELLE EN VERCORS" + "codePostal": "59680", + "codeCommune": "59442", + "libelleAcheminement": "OBRECHIES", + "nomCommune": "OBRECHIES" }, { - "codePostal": "40190", - "codeCommune": "40331", - "libelleAcheminement": "VILLENEUVE DE MARSAN", - "nomCommune": "VILLENEUVE DE MARSAN" + "codePostal": "49300", + "codeCommune": "49099", + "libelleAcheminement": "CHOLET", + "nomCommune": "CHOLET" }, { - "codePostal": "54480", - "codeCommune": "54421", - "libelleAcheminement": "PETITMONT", - "nomCommune": "PETITMONT" + "codePostal": "51120", + "codeCommune": "51005", + "libelleAcheminement": "ALLEMANT", + "nomCommune": "ALLEMANT" }, { - "codePostal": "31130", - "codeCommune": "31044", - "libelleAcheminement": "BALMA", - "nomCommune": "BALMA" + "codePostal": "59670", + "codeCommune": "59669", + "libelleAcheminement": "ZUYTPEENE", + "nomCommune": "ZUYTPEENE" }, { - "codePostal": "26330", - "codeCommune": "26083", - "libelleAcheminement": "CHATEAUNEUF DE GALAURE", - "nomCommune": "CHATEAUNEUF DE GALAURE" + "codePostal": "02360", + "codeCommune": "02634", + "libelleAcheminement": "RAILLIMONT", + "nomCommune": "RAILLIMONT" }, { - "codePostal": "40110", - "codeCommune": "40333", - "libelleAcheminement": "YGOS ST SATURNIN", - "nomCommune": "YGOS ST SATURNIN" + "codePostal": "59670", + "codeCommune": "59443", + "libelleAcheminement": "OCHTEZEELE", + "nomCommune": "OCHTEZEELE" }, { - "codePostal": "54490", - "codeCommune": "54425", - "libelleAcheminement": "PIENNES", - "nomCommune": "PIENNES" + "codePostal": "49140", + "codeCommune": "49107", + "libelleAcheminement": "CORNILLE LES CAVES", + "nomCommune": "CORNILLE LES CAVES" }, { - "codePostal": "31380", - "codeCommune": "31049", - "libelleAcheminement": "BAZUS", - "nomCommune": "BAZUS" + "codePostal": "51250", + "codeCommune": "51006", + "libelleAcheminement": "ALLIANCELLES", + "nomCommune": "ALLIANCELLES" }, { - "codePostal": "26410", - "codeCommune": "26086", - "libelleAcheminement": "CHATILLON EN DIOIS", - "nomCommune": "CHATILLON EN DIOIS" + "codePostal": "60690", + "codeCommune": "60004", + "libelleAcheminement": "ACHY", + "nomCommune": "ACHY" }, { - "codePostal": "41100", - "codeCommune": "41003", - "libelleAcheminement": "AREINES", - "nomCommune": "AREINES" + "codePostal": "02340", + "codeCommune": "02641", + "libelleAcheminement": "RENNEVAL", + "nomCommune": "RENNEVAL" }, { - "codePostal": "54540", - "codeCommune": "54427", - "libelleAcheminement": "PIERRE PERCEE", - "nomCommune": "PIERRE PERCEE" + "codePostal": "59310", + "codeCommune": "59449", + "libelleAcheminement": "ORCHIES", + "nomCommune": "ORCHIES" }, { - "codePostal": "31530", - "codeCommune": "31061", - "libelleAcheminement": "BELLEGARDE STE MARIE", - "nomCommune": "BELLEGARDE STE MARIE" + "codePostal": "49700", + "codeCommune": "49125", + "libelleAcheminement": "DOUE EN ANJOU", + "nomCommune": "DOUE EN ANJOU" }, { - "codePostal": "26260", - "codeCommune": "26092", - "libelleAcheminement": "CHAVANNES", - "nomCommune": "CHAVANNES" + "codePostal": "51700", + "codeCommune": "51012", + "libelleAcheminement": "ANTHENAY", + "nomCommune": "ANTHENAY" }, { - "codePostal": "41310", - "codeCommune": "41007", - "libelleAcheminement": "AUTHON", - "nomCommune": "AUTHON" + "codePostal": "60000", + "codeCommune": "60009", + "libelleAcheminement": "ALLONNE", + "nomCommune": "ALLONNE" }, { - "codePostal": "54550", - "codeCommune": "54432", - "libelleAcheminement": "PONT ST VINCENT", - "nomCommune": "PONT ST VINCENT" + "codePostal": "02110", + "codeCommune": "02647", + "libelleAcheminement": "RIBEAUVILLE", + "nomCommune": "RIBEAUVILLE" }, { - "codePostal": "31350", - "codeCommune": "31070", - "libelleAcheminement": "BLAJAN", - "nomCommune": "BLAJAN" + "codePostal": "59360", + "codeCommune": "59450", + "libelleAcheminement": "ORS", + "nomCommune": "ORS" }, { - "codePostal": "26130", - "codeCommune": "26093", - "libelleAcheminement": "CLANSAYES", - "nomCommune": "CLANSAYES" + "codePostal": "49430", + "codeCommune": "49127", + "libelleAcheminement": "DURTAL", + "nomCommune": "DURTAL" }, { - "codePostal": "41170", - "codeCommune": "41014", - "libelleAcheminement": "BEAUCHENE", - "nomCommune": "BEAUCHENE" + "codePostal": "51290", + "codeCommune": "51017", + "libelleAcheminement": "ARZILLIERES NEUVILLE", + "nomCommune": "ARZILLIERES NEUVILLE" }, { - "codePostal": "54116", - "codeCommune": "54434", - "libelleAcheminement": "PRAYE", - "nomCommune": "PRAYE" + "codePostal": "60390", + "codeCommune": "60030", + "libelleAcheminement": "AUTEUIL", + "nomCommune": "AUTEUIL" }, { - "codePostal": "31420", - "codeCommune": "31083", - "libelleAcheminement": "BOUSSAN", - "nomCommune": "BOUSSAN" + "codePostal": "02240", + "codeCommune": "02648", + "libelleAcheminement": "RIBEMONT", + "nomCommune": "RIBEMONT" }, { - "codePostal": "26120", - "codeCommune": "26100", - "libelleAcheminement": "COMBOVIN", - "nomCommune": "COMBOVIN" + "codePostal": "59295", + "codeCommune": "59455", + "libelleAcheminement": "PAILLENCOURT", + "nomCommune": "PAILLENCOURT" }, { - "codePostal": "41130", - "codeCommune": "41016", - "libelleAcheminement": "BILLY", - "nomCommune": "BILLY" + "codePostal": "49250", + "codeCommune": "49138", + "libelleAcheminement": "LES BOIS D ANJOU", + "nomCommune": "LES BOIS D ANJOU" }, { - "codePostal": "54115", - "codeCommune": "54438", - "libelleAcheminement": "PULNEY", - "nomCommune": "PULNEY" + "codePostal": "51600", + "codeCommune": "51019", + "libelleAcheminement": "AUBERIVE", + "nomCommune": "AUBERIVE" }, { - "codePostal": "31160", - "codeCommune": "31085", - "libelleAcheminement": "BOUTX", - "nomCommune": "BOUTX" + "codePostal": "60190", + "codeCommune": "60036", + "libelleAcheminement": "AVRIGNY", + "nomCommune": "AVRIGNY" }, { - "codePostal": "26150", - "codeCommune": "26113", - "libelleAcheminement": "DIE", - "nomCommune": "DIE" + "codePostal": "02120", + "codeCommune": "02654", + "libelleAcheminement": "ROMERY", + "nomCommune": "ROMERY" }, { - "codePostal": "41240", - "codeCommune": "41017", - "libelleAcheminement": "BINAS", - "nomCommune": "BINAS" + "codePostal": "59146", + "codeCommune": "59456", + "libelleAcheminement": "PECQUENCOURT", + "nomCommune": "PECQUENCOURT" }, { - "codePostal": "54330", - "codeCommune": "54442", - "libelleAcheminement": "QUEVILLONCOURT", - "nomCommune": "QUEVILLONCOURT" + "codePostal": "49590", + "codeCommune": "49140", + "libelleAcheminement": "FONTEVRAUD L ABBAYE", + "nomCommune": "FONTEVRAUD L ABBAYE" }, { - "codePostal": "31480", - "codeCommune": "31090", - "libelleAcheminement": "BRIGNEMONT", - "nomCommune": "BRIGNEMONT" + "codePostal": "51170", + "codeCommune": "51020", + "libelleAcheminement": "AUBILLY", + "nomCommune": "AUBILLY" }, { - "codePostal": "26290", - "codeCommune": "26116", - "libelleAcheminement": "DONZERE", - "nomCommune": "DONZERE" + "codePostal": "60120", + "codeCommune": "60039", + "libelleAcheminement": "BACOUEL", + "nomCommune": "BACOUEL" }, { - "codePostal": "41800", - "codeCommune": "41020", - "libelleAcheminement": "BONNEVEAU", - "nomCommune": "BONNEVEAU" + "codePostal": "02200", + "codeCommune": "02663", + "libelleAcheminement": "ROZIERES SUR CRISE", + "nomCommune": "ROZIERES SUR CRISE" }, { - "codePostal": "54370", - "codeCommune": "54445", - "libelleAcheminement": "RAVILLE SUR SANON", - "nomCommune": "RAVILLE SUR SANON" + "codePostal": "59133", + "codeCommune": "59462", + "libelleAcheminement": "PHALEMPIN", + "nomCommune": "PHALEMPIN" }, { - "codePostal": "31440", - "codeCommune": "31092", - "libelleAcheminement": "BURGALAYS", - "nomCommune": "BURGALAYS" + "codePostal": "49123", + "codeCommune": "49160", + "libelleAcheminement": "INGRANDES LE FRESNE SUR LOIRE", + "nomCommune": "INGRANDES LE FRESNE SUR LOIRE" }, { - "codePostal": "26190", - "codeCommune": "26117", - "libelleAcheminement": "ECHEVIS", - "nomCommune": "ECHEVIS" + "codePostal": "51150", + "codeCommune": "51023", + "libelleAcheminement": "AULNAY SUR MARNE", + "nomCommune": "AULNAY SUR MARNE" }, { - "codePostal": "41250", - "codeCommune": "41025", - "libelleAcheminement": "BRACIEUX", - "nomCommune": "BRACIEUX" + "codePostal": "60250", + "codeCommune": "60044", + "libelleAcheminement": "BALAGNY SUR THERAIN", + "nomCommune": "BALAGNY SUR THERAIN" }, { - "codePostal": "54430", - "codeCommune": "54451", - "libelleAcheminement": "REHON", - "nomCommune": "REHON" + "codePostal": "02540", + "codeCommune": "02664", + "libelleAcheminement": "ROZOY BELLEVALLE", + "nomCommune": "ROZOY BELLEVALLE" }, { - "codePostal": "31330", - "codeCommune": "31093", - "libelleAcheminement": "LE BURGAUD", - "nomCommune": "LE BURGAUD" + "codePostal": "59360", + "codeCommune": "59465", + "libelleAcheminement": "POMMEREUIL", + "nomCommune": "POMMEREUIL" }, { - "codePostal": "26210", - "codeCommune": "26118", - "libelleAcheminement": "EPINOUZE", - "nomCommune": "EPINOUZE" + "codePostal": "49320", + "codeCommune": "49167", + "libelleAcheminement": "LES GARENNES SUR LOIRE", + "nomCommune": "LES GARENNES SUR LOIRE" }, { - "codePostal": "41120", - "codeCommune": "41031", - "libelleAcheminement": "CELLETTES", - "nomCommune": "CELLETTES" + "codePostal": "51160", + "codeCommune": "51030", + "libelleAcheminement": "AY CHAMPAGNE", + "nomCommune": "AY CHAMPAGNE" }, { - "codePostal": "54450", - "codeCommune": "54452", - "libelleAcheminement": "REILLON", - "nomCommune": "REILLON" + "codePostal": "60700", + "codeCommune": "60050", + "libelleAcheminement": "BAZICOURT", + "nomCommune": "BAZICOURT" }, { - "codePostal": "31660", - "codeCommune": "31094", - "libelleAcheminement": "BUZET SUR TARN", - "nomCommune": "BUZET SUR TARN" + "codePostal": "02290", + "codeCommune": "02672", + "libelleAcheminement": "ST BANDRY", + "nomCommune": "ST BANDRY" }, { - "codePostal": "26400", - "codeCommune": "26128", - "libelleAcheminement": "EYGLUY ESCOULIN", - "nomCommune": "EYGLUY ESCOULIN" + "codePostal": "59840", + "codeCommune": "59470", + "libelleAcheminement": "PREMESQUES", + "nomCommune": "PREMESQUES" }, { - "codePostal": "41600", - "codeCommune": "41046", - "libelleAcheminement": "CHAUMONT SUR THARONNE", - "nomCommune": "CHAUMONT SUR THARONNE" + "codePostal": "49160", + "codeCommune": "49180", + "libelleAcheminement": "LONGUE JUMELLES", + "nomCommune": "LONGUE JUMELLES" }, { - "codePostal": "54290", - "codeCommune": "54465", - "libelleAcheminement": "ROVILLE DEVANT BAYON", - "nomCommune": "ROVILLE DEVANT BAYON" + "codePostal": "51260", + "codeCommune": "51032", + "libelleAcheminement": "BAGNEUX", + "nomCommune": "BAGNEUX" }, { - "codePostal": "31560", - "codeCommune": "31099", - "libelleAcheminement": "CAIGNAC", - "nomCommune": "CAIGNAC" + "codePostal": "60210", + "codeCommune": "60051", + "libelleAcheminement": "BEAUDEDUIT", + "nomCommune": "BEAUDEDUIT" }, { - "codePostal": "26160", - "codeCommune": "26134", - "libelleAcheminement": "FELINES SUR RIMANDOULE", - "nomCommune": "FELINES SUR RIMANDOULE" + "codePostal": "02220", + "codeCommune": "02682", + "libelleAcheminement": "ST MARD", + "nomCommune": "ST MARD" }, { - "codePostal": "41700", - "codeCommune": "41049", - "libelleAcheminement": "CHEMERY", - "nomCommune": "CHEMERY" + "codePostal": "59380", + "codeCommune": "59478", + "libelleAcheminement": "QUAEDYPRE", + "nomCommune": "QUAEDYPRE" }, { - "codePostal": "54260", - "codeCommune": "54476", - "libelleAcheminement": "ST JEAN LES LONGUYON", - "nomCommune": "ST JEAN LES LONGUYON" + "codePostal": "49160", + "codeCommune": "49180", + "libelleAcheminement": "LONGUE JUMELLES", + "nomCommune": "LONGUE JUMELLES" }, { - "codePostal": "31460", - "codeCommune": "31102", - "libelleAcheminement": "CAMBIAC", - "nomCommune": "CAMBIAC" + "codePostal": "51230", + "codeCommune": "51035", + "libelleAcheminement": "BANNES", + "nomCommune": "BANNES" }, { - "codePostal": "26410", - "codeCommune": "26142", - "libelleAcheminement": "GLANDAGE", - "nomCommune": "GLANDAGE" + "codePostal": "60640", + "codeCommune": "60052", + "libelleAcheminement": "BEAUGIES SOUS BOIS", + "nomCommune": "BEAUGIES SOUS BOIS" }, { - "codePostal": "41170", - "codeCommune": "41053", - "libelleAcheminement": "CHOUE", - "nomCommune": "CHOUE" + "codePostal": "02110", + "codeCommune": "02683", + "libelleAcheminement": "ST MARTIN RIVIERE", + "nomCommune": "ST MARTIN RIVIERE" }, { - "codePostal": "54470", - "codeCommune": "54477", - "libelleAcheminement": "ST JULIEN LES GORZE", - "nomCommune": "ST JULIEN LES GORZE" + "codePostal": "59194", + "codeCommune": "59486", + "libelleAcheminement": "RACHES", + "nomCommune": "RACHES" }, { - "codePostal": "31410", - "codeCommune": "31104", - "libelleAcheminement": "CAPENS", - "nomCommune": "CAPENS" + "codePostal": "49370", + "codeCommune": "49183", + "libelleAcheminement": "VAL D ERDRE AUXENCE", + "nomCommune": "VAL D ERDRE AUXENCE" }, { - "codePostal": "26290", - "codeCommune": "26145", - "libelleAcheminement": "LES GRANGES GONTARDES", - "nomCommune": "LES GRANGES GONTARDES" + "codePostal": "51170", + "codeCommune": "51037", + "libelleAcheminement": "BASLIEUX LES FISMES", + "nomCommune": "BASLIEUX LES FISMES" }, { - "codePostal": "41700", - "codeCommune": "41054", - "libelleAcheminement": "CHOUSSY", - "nomCommune": "CHOUSSY" + "codePostal": "60310", + "codeCommune": "60053", + "libelleAcheminement": "BEAULIEU LES FONTAINES", + "nomCommune": "BEAULIEU LES FONTAINES" }, { - "codePostal": "54540", - "codeCommune": "54484", - "libelleAcheminement": "STE POLE", - "nomCommune": "STE POLE" + "codePostal": "02140", + "codeCommune": "02688", + "libelleAcheminement": "ST PIERRE LES FRANQUEVILLE", + "nomCommune": "ST PIERRE LES FRANQUEVILLE" }, { - "codePostal": "31310", - "codeCommune": "31111", - "libelleAcheminement": "CASTAGNAC", - "nomCommune": "CASTAGNAC" + "codePostal": "59161", + "codeCommune": "59492", + "libelleAcheminement": "RAMILLIES", + "nomCommune": "RAMILLIES" }, { - "codePostal": "26730", - "codeCommune": "26149", - "libelleAcheminement": "HOSTUN", - "nomCommune": "HOSTUN" + "codePostal": "49140", + "codeCommune": "49194", + "libelleAcheminement": "MAZE MILON", + "nomCommune": "MAZE MILON" }, { - "codePostal": "41220", - "codeCommune": "41071", - "libelleAcheminement": "CROUY SUR COSSON", - "nomCommune": "CROUY SUR COSSON" + "codePostal": "51490", + "codeCommune": "51046", + "libelleAcheminement": "BEINE NAUROY", + "nomCommune": "BEINE NAUROY" }, { - "codePostal": "54170", - "codeCommune": "54496", - "libelleAcheminement": "SAULXURES LES VANNES", - "nomCommune": "SAULXURES LES VANNES" + "codePostal": "60390", + "codeCommune": "60054", + "libelleAcheminement": "LES HAUTS TALICAN", + "nomCommune": "LES HAUTS TALICAN" }, { - "codePostal": "31620", - "codeCommune": "31118", - "libelleAcheminement": "CASTELNAU D ESTRETEFONDS", - "nomCommune": "CASTELNAU D ESTRETEFONDS" + "codePostal": "02210", + "codeCommune": "02693", + "libelleAcheminement": "ST REMY BLANZY", + "nomCommune": "ST REMY BLANZY" }, { - "codePostal": "26250", - "codeCommune": "26165", - "libelleAcheminement": "LIVRON SUR DROME", - "nomCommune": "LIVRON SUR DROME" + "codePostal": "59530", + "codeCommune": "59494", + "libelleAcheminement": "RAUCOURT AU BOIS", + "nomCommune": "RAUCOURT AU BOIS" }, { - "codePostal": "41800", - "codeCommune": "41079", - "libelleAcheminement": "LES ESSARTS", - "nomCommune": "LES ESSARTS" + "codePostal": "49770", + "codeCommune": "49200", + "libelleAcheminement": "LONGUENEE EN ANJOU", + "nomCommune": "LONGUENEE EN ANJOU" }, { - "codePostal": "54470", - "codeCommune": "54499", - "libelleAcheminement": "SEICHEPREY", - "nomCommune": "SEICHEPREY" + "codePostal": "51330", + "codeCommune": "51047", + "libelleAcheminement": "BELVAL EN ARGONNE", + "nomCommune": "BELVAL EN ARGONNE" }, { - "codePostal": "31530", - "codeCommune": "31120", - "libelleAcheminement": "LE CASTERA", - "nomCommune": "LE CASTERA" + "codePostal": "60700", + "codeCommune": "60056", + "libelleAcheminement": "BEAUREPAIRE", + "nomCommune": "BEAUREPAIRE" }, { - "codePostal": "26620", - "codeCommune": "26168", - "libelleAcheminement": "LUS LA CROIX HAUTE", - "nomCommune": "LUS LA CROIX HAUTE" + "codePostal": "02110", + "codeCommune": "02709", + "libelleAcheminement": "SERAIN", + "nomCommune": "SERAIN" }, { - "codePostal": "41300", - "codeCommune": "41084", - "libelleAcheminement": "LA FERTE IMBAULT", - "nomCommune": "LA FERTE IMBAULT" + "codePostal": "59360", + "codeCommune": "59496", + "libelleAcheminement": "REJET DE BEAULIEU", + "nomCommune": "REJET DE BEAULIEU" }, { - "codePostal": "54116", - "codeCommune": "54513", - "libelleAcheminement": "TANTONVILLE", - "nomCommune": "TANTONVILLE" + "codePostal": "49460", + "codeCommune": "49214", + "libelleAcheminement": "MONTREUIL JUIGNE", + "nomCommune": "MONTREUIL JUIGNE" }, { - "codePostal": "31430", - "codeCommune": "31122", - "libelleAcheminement": "CASTIES LABRANDE", - "nomCommune": "CASTIES LABRANDE" + "codePostal": "51300", + "codeCommune": "51059", + "libelleAcheminement": "BIGNICOURT SUR MARNE", + "nomCommune": "BIGNICOURT SUR MARNE" }, { - "codePostal": "26210", - "codeCommune": "26172", - "libelleAcheminement": "MANTHES", - "nomCommune": "MANTHES" + "codePostal": "60129", + "codeCommune": "60066", + "libelleAcheminement": "BETHANCOURT EN VALOIS", + "nomCommune": "BETHANCOURT EN VALOIS" }, { - "codePostal": "41250", - "codeCommune": "41086", - "libelleAcheminement": "FONTAINES EN SOLOGNE", - "nomCommune": "FONTAINES EN SOLOGNE" + "codePostal": "02790", + "codeCommune": "02710", + "libelleAcheminement": "SERAUCOURT LE GRAND", + "nomCommune": "SERAUCOURT LE GRAND" }, { - "codePostal": "54260", - "codeCommune": "54514", - "libelleAcheminement": "TELLANCOURT", - "nomCommune": "TELLANCOURT" + "codePostal": "59285", + "codeCommune": "59516", + "libelleAcheminement": "RUBROUCK", + "nomCommune": "RUBROUCK" }, { - "codePostal": "31360", - "codeCommune": "31124", - "libelleAcheminement": "CASTILLON DE ST MARTORY", - "nomCommune": "CASTILLON DE ST MARTORY" + "codePostal": "49260", + "codeCommune": "49215", + "libelleAcheminement": "MONTREUIL BELLAY", + "nomCommune": "MONTREUIL BELLAY" }, { - "codePostal": "26260", - "codeCommune": "26177", - "libelleAcheminement": "MARSAZ", - "nomCommune": "MARSAZ" + "codePostal": "51390", + "codeCommune": "51072", + "libelleAcheminement": "BOUILLY", + "nomCommune": "BOUILLY" }, { - "codePostal": "41360", - "codeCommune": "41090", - "libelleAcheminement": "FORTAN", - "nomCommune": "FORTAN" + "codePostal": "60620", + "codeCommune": "60069", + "libelleAcheminement": "BETZ", + "nomCommune": "BETZ" }, { - "codePostal": "54510", - "codeCommune": "54526", - "libelleAcheminement": "TOMBLAINE", - "nomCommune": "TOMBLAINE" + "codePostal": "02700", + "codeCommune": "02716", + "libelleAcheminement": "SERVAIS", + "nomCommune": "SERVAIS" }, { - "codePostal": "31480", - "codeCommune": "31126", - "libelleAcheminement": "CAUBIAC", - "nomCommune": "CAUBIAC" + "codePostal": "59177", + "codeCommune": "59525", + "libelleAcheminement": "SAINS DU NORD", + "nomCommune": "SAINS DU NORD" }, { - "codePostal": "26600", - "codeCommune": "26179", - "libelleAcheminement": "MERCUROL VEAUNES", - "nomCommune": "MERCUROL VEAUNES" + "codePostal": "49260", + "codeCommune": "49215", + "libelleAcheminement": "MONTREUIL BELLAY", + "nomCommune": "MONTREUIL BELLAY" }, { - "codePostal": "41700", - "codeCommune": "41094", - "libelleAcheminement": "FRESNES", - "nomCommune": "FRESNES" + "codePostal": "51480", + "codeCommune": "51076", + "libelleAcheminement": "BOURSAULT", + "nomCommune": "BOURSAULT" }, { - "codePostal": "54200", - "codeCommune": "54528", - "libelleAcheminement": "TOUL", - "nomCommune": "TOUL" + "codePostal": "60280", + "codeCommune": "60070", + "libelleAcheminement": "BIENVILLE", + "nomCommune": "BIENVILLE" }, { - "codePostal": "31580", - "codeCommune": "31130", - "libelleAcheminement": "CAZARIL TAMBOURES", - "nomCommune": "CAZARIL TAMBOURES" + "codePostal": "02460", + "codeCommune": "02718", + "libelleAcheminement": "SILLY LA POTERIE", + "nomCommune": "SILLY LA POTERIE" }, { - "codePostal": "26110", - "codeCommune": "26182", - "libelleAcheminement": "MIRABEL AUX BARONNIES", - "nomCommune": "MIRABEL AUX BARONNIES" + "codePostal": "59350", + "codeCommune": "59527", + "libelleAcheminement": "ST ANDRE LEZ LILLE", + "nomCommune": "ST ANDRE LEZ LILLE" }, { - "codePostal": "41270", - "codeCommune": "41096", - "libelleAcheminement": "LE GAULT DU PERCHE", - "nomCommune": "LE GAULT DU PERCHE" + "codePostal": "49110", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "54640", - "codeCommune": "54536", - "libelleAcheminement": "TUCQUEGNIEUX", - "nomCommune": "TUCQUEGNIEUX" + "codePostal": "51530", + "codeCommune": "51093", + "libelleAcheminement": "BRUGNY VAUDANCOURT", + "nomCommune": "BRUGNY VAUDANCOURT" }, { - "codePostal": "31350", - "codeCommune": "31138", - "libelleAcheminement": "CHARLAS", - "nomCommune": "CHARLAS" + "codePostal": "60120", + "codeCommune": "60075", + "libelleAcheminement": "BLANCFOSSE", + "nomCommune": "BLANCFOSSE" }, { - "codePostal": "26400", - "codeCommune": "26183", - "libelleAcheminement": "MIRABEL ET BLACONS", - "nomCommune": "MIRABEL ET BLACONS" + "codePostal": "02240", + "codeCommune": "02721", + "libelleAcheminement": "SISSY", + "nomCommune": "SISSY" }, { - "codePostal": "41130", - "codeCommune": "41097", - "libelleAcheminement": "GIEVRES", - "nomCommune": "GIEVRES" + "codePostal": "59188", + "codeCommune": "59528", + "libelleAcheminement": "ST AUBERT", + "nomCommune": "ST AUBERT" }, { - "codePostal": "54115", - "codeCommune": "54545", - "libelleAcheminement": "VANDELEVILLE", - "nomCommune": "VANDELEVILLE" + "codePostal": "49390", + "codeCommune": "49221", + "libelleAcheminement": "MOULIHERNE", + "nomCommune": "MOULIHERNE" }, { - "codePostal": "31440", - "codeCommune": "31139", - "libelleAcheminement": "CHAUM", - "nomCommune": "CHAUM" + "codePostal": "51300", + "codeCommune": "51095", + "libelleAcheminement": "LE BUISSON", + "nomCommune": "LE BUISSON" }, { - "codePostal": "26770", - "codeCommune": "26192", - "libelleAcheminement": "MONTBRISON SUR LEZ", - "nomCommune": "MONTBRISON SUR LEZ" + "codePostal": "60190", + "codeCommune": "60078", + "libelleAcheminement": "BLINCOURT", + "nomCommune": "BLINCOURT" }, { - "codePostal": "41190", - "codeCommune": "41108", - "libelleAcheminement": "LANCOME", - "nomCommune": "LANCOME" + "codePostal": "02200", + "codeCommune": "02722", + "libelleAcheminement": "SOISSONS", + "nomCommune": "SOISSONS" }, { - "codePostal": "54740", - "codeCommune": "54553", - "libelleAcheminement": "VAUDEVILLE", - "nomCommune": "VAUDEVILLE" + "codePostal": "59670", + "codeCommune": "59536", + "libelleAcheminement": "STE MARIE CAPPEL", + "nomCommune": "STE MARIE CAPPEL" }, { - "codePostal": "31350", - "codeCommune": "31141", - "libelleAcheminement": "CIADOUX", - "nomCommune": "CIADOUX" + "codePostal": "49360", + "codeCommune": "49240", + "libelleAcheminement": "LA PLAINE", + "nomCommune": "LA PLAINE" }, { - "codePostal": "26200", - "codeCommune": "26198", - "libelleAcheminement": "MONTELIMAR", - "nomCommune": "MONTELIMAR" + "codePostal": "51330", + "codeCommune": "51098", + "libelleAcheminement": "BUSSY LE REPOS", + "nomCommune": "BUSSY LE REPOS" }, { - "codePostal": "41190", - "codeCommune": "41109", - "libelleAcheminement": "LANDES LE GAULOIS", - "nomCommune": "LANDES LE GAULOIS" + "codePostal": "60440", + "codeCommune": "60079", + "libelleAcheminement": "BOISSY FRESNOY", + "nomCommune": "BOISSY FRESNOY" }, { - "codePostal": "54120", - "codeCommune": "54555", - "libelleAcheminement": "VAXAINVILLE", - "nomCommune": "VAXAINVILLE" + "codePostal": "02140", + "codeCommune": "02731", + "libelleAcheminement": "LE SOURD", + "nomCommune": "LE SOURD" }, { - "codePostal": "31110", - "codeCommune": "31142", - "libelleAcheminement": "CIER DE LUCHON", - "nomCommune": "CIER DE LUCHON" + "codePostal": "59630", + "codeCommune": "59539", + "libelleAcheminement": "ST PIERRE BROUCK", + "nomCommune": "ST PIERRE BROUCK" }, { - "codePostal": "26170", - "codeCommune": "26201", - "libelleAcheminement": "MONTGUERS", - "nomCommune": "MONTGUERS" + "codePostal": "49410", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "41100", - "codeCommune": "41116", - "libelleAcheminement": "LISLE", - "nomCommune": "LISLE" + "codePostal": "51420", + "codeCommune": "51105", + "libelleAcheminement": "CERNAY LES REIMS", + "nomCommune": "CERNAY LES REIMS" }, { - "codePostal": "54450", - "codeCommune": "54562", - "libelleAcheminement": "VERDENAL", - "nomCommune": "VERDENAL" + "codePostal": "60510", + "codeCommune": "60081", + "libelleAcheminement": "BONLIER", + "nomCommune": "BONLIER" }, { - "codePostal": "31550", - "codeCommune": "31145", - "libelleAcheminement": "CINTEGABELLE", - "nomCommune": "CINTEGABELLE" + "codePostal": "02220", + "codeCommune": "02735", + "libelleAcheminement": "TANNIERES", + "nomCommune": "TANNIERES" }, { - "codePostal": "26230", - "codeCommune": "26203", - "libelleAcheminement": "MONTJOYER", - "nomCommune": "MONTJOYER" + "codePostal": "59620", + "codeCommune": "59542", + "libelleAcheminement": "ST REMY CHAUSSEE", + "nomCommune": "ST REMY CHAUSSEE" }, { - "codePostal": "41320", - "codeCommune": "41122", - "libelleAcheminement": "MARAY", - "nomCommune": "MARAY" + "codePostal": "49570", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "54700", - "codeCommune": "54566", - "libelleAcheminement": "VILCEY SUR TREY", - "nomCommune": "VILCEY SUR TREY" + "codePostal": "51130", + "codeCommune": "51107", + "libelleAcheminement": "CHAINTRIX BIERGES", + "nomCommune": "CHAINTRIX BIERGES" }, { - "codePostal": "31810", - "codeCommune": "31148", - "libelleAcheminement": "CLERMONT LE FORT", - "nomCommune": "CLERMONT LE FORT" + "codePostal": "60112", + "codeCommune": "60084", + "libelleAcheminement": "BONNIERES", + "nomCommune": "BONNIERES" }, { - "codePostal": "26350", - "codeCommune": "26210", - "libelleAcheminement": "VALHERBASSE", - "nomCommune": "VALHERBASSE" + "codePostal": "02250", + "codeCommune": "02737", + "libelleAcheminement": "TAVAUX ET PONTSERICOURT", + "nomCommune": "TAVAUX ET PONTSERICOURT" }, { - "codePostal": "41210", - "codeCommune": "41127", - "libelleAcheminement": "LA MAROLLE EN SOLOGNE", - "nomCommune": "LA MAROLLE EN SOLOGNE" + "codePostal": "59360", + "codeCommune": "59545", + "libelleAcheminement": "ST SOUPLET", + "nomCommune": "ST SOUPLET" }, { - "codePostal": "54380", - "codeCommune": "54569", - "libelleAcheminement": "VILLE AU VAL", - "nomCommune": "VILLE AU VAL" + "codePostal": "49130", + "codeCommune": "49246", + "libelleAcheminement": "LES PONTS DE CE", + "nomCommune": "LES PONTS DE CE" }, { - "codePostal": "31770", - "codeCommune": "31149", - "libelleAcheminement": "COLOMIERS", - "nomCommune": "COLOMIERS" + "codePostal": "51270", + "codeCommune": "51113", + "libelleAcheminement": "CHAMPAUBERT", + "nomCommune": "CHAMPAUBERT" }, { - "codePostal": "26350", - "codeCommune": "26210", - "libelleAcheminement": "VALHERBASSE", - "nomCommune": "VALHERBASSE" + "codePostal": "60240", + "codeCommune": "60095", + "libelleAcheminement": "BOURY EN VEXIN", + "nomCommune": "BOURY EN VEXIN" }, { - "codePostal": "41150", - "codeCommune": "41137", - "libelleAcheminement": "MESLAND", - "nomCommune": "MESLAND" + "codePostal": "02390", + "codeCommune": "02741", + "libelleAcheminement": "THENELLES", + "nomCommune": "THENELLES" }, { - "codePostal": "54730", - "codeCommune": "54572", - "libelleAcheminement": "VILLE HOUDLEMONT", - "nomCommune": "VILLE HOUDLEMONT" + "codePostal": "59188", + "codeCommune": "59547", + "libelleAcheminement": "ST VAAST EN CAMBRESIS", + "nomCommune": "ST VAAST EN CAMBRESIS" }, { - "codePostal": "31220", - "codeCommune": "31153", - "libelleAcheminement": "COULADERE", - "nomCommune": "COULADERE" + "codePostal": "49130", + "codeCommune": "49246", + "libelleAcheminement": "LES PONTS DE CE", + "nomCommune": "LES PONTS DE CE" }, { - "codePostal": "26460", - "codeCommune": "26214", - "libelleAcheminement": "MORNANS", - "nomCommune": "MORNANS" + "codePostal": "51700", + "codeCommune": "51121", + "libelleAcheminement": "CHAMPVOISY", + "nomCommune": "CHAMPVOISY" }, { - "codePostal": "41130", - "codeCommune": "41139", - "libelleAcheminement": "MEUSNES", - "nomCommune": "MEUSNES" + "codePostal": "60440", + "codeCommune": "60101", + "libelleAcheminement": "BREGY", + "nomCommune": "BREGY" }, { - "codePostal": "54800", - "codeCommune": "54581", - "libelleAcheminement": "VILLE SUR YRON", - "nomCommune": "VILLE SUR YRON" + "codePostal": "02460", + "codeCommune": "02749", + "libelleAcheminement": "TROESNES", + "nomCommune": "TROESNES" }, { - "codePostal": "31160", - "codeCommune": "31155", - "libelleAcheminement": "COURET", - "nomCommune": "COURET" + "codePostal": "59496", + "codeCommune": "59550", + "libelleAcheminement": "SALOME", + "nomCommune": "SALOME" }, { - "codePostal": "26470", - "codeCommune": "26215", - "libelleAcheminement": "LA MOTTE CHALANCON", - "nomCommune": "LA MOTTE CHALANCON" + "codePostal": "49420", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "41190", - "codeCommune": "41142", - "libelleAcheminement": "VALENCISSE", - "nomCommune": "VALENCISSE" + "codePostal": "51300", + "codeCommune": "51122", + "libelleAcheminement": "CHANGY", + "nomCommune": "CHANGY" }, { - "codePostal": "54200", - "codeCommune": "54584", - "libelleAcheminement": "VILLEY ST ETIENNE", - "nomCommune": "VILLEY ST ETIENNE" + "codePostal": "60600", + "codeCommune": "60107", + "libelleAcheminement": "BREUIL LE VERT", + "nomCommune": "BREUIL LE VERT" }, { - "codePostal": "31270", - "codeCommune": "31157", - "libelleAcheminement": "CUGNAUX", - "nomCommune": "CUGNAUX" + "codePostal": "02640", + "codeCommune": "02752", + "libelleAcheminement": "TUGNY ET PONT", + "nomCommune": "TUGNY ET PONT" }, { - "codePostal": "26540", - "codeCommune": "26218", - "libelleAcheminement": "MOURS ST EUSEBE", - "nomCommune": "MOURS ST EUSEBE" + "codePostal": "59990", + "codeCommune": "59557", + "libelleAcheminement": "SAULTAIN", + "nomCommune": "SAULTAIN" }, { - "codePostal": "41190", - "codeCommune": "41142", - "libelleAcheminement": "VALENCISSE", - "nomCommune": "VALENCISSE" + "codePostal": "49520", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "54800", - "codeCommune": "54599", - "libelleAcheminement": "XONVILLE", - "nomCommune": "XONVILLE" + "codePostal": "51170", + "codeCommune": "51140", + "libelleAcheminement": "CHAUMUZY", + "nomCommune": "CHAUMUZY" }, { - "codePostal": "31450", - "codeCommune": "31161", - "libelleAcheminement": "DEYME", - "nomCommune": "DEYME" + "codePostal": "60210", + "codeCommune": "60108", + "libelleAcheminement": "BRIOT", + "nomCommune": "BRIOT" }, { - "codePostal": "26120", - "codeCommune": "26224", - "libelleAcheminement": "OURCHES", - "nomCommune": "OURCHES" + "codePostal": "02110", + "codeCommune": "02760", + "libelleAcheminement": "LA VALLEE MULATRE", + "nomCommune": "LA VALLEE MULATRE" }, { - "codePostal": "41170", - "codeCommune": "41143", - "libelleAcheminement": "MONDOUBLEAU", - "nomCommune": "MONDOUBLEAU" + "codePostal": "59990", + "codeCommune": "59559", + "libelleAcheminement": "SEBOURG", + "nomCommune": "SEBOURG" }, { - "codePostal": "55130", - "codeCommune": "55001", - "libelleAcheminement": "ABAINVILLE", - "nomCommune": "ABAINVILLE" + "codePostal": "49350", + "codeCommune": "49261", + "libelleAcheminement": "GENNES VAL DE LOIRE", + "nomCommune": "GENNES VAL DE LOIRE" }, { - "codePostal": "31600", - "codeCommune": "31165", - "libelleAcheminement": "EAUNES", - "nomCommune": "EAUNES" + "codePostal": "51250", + "codeCommune": "51144", + "libelleAcheminement": "CHEMINON", + "nomCommune": "CHEMINON" }, { - "codePostal": "26170", - "codeCommune": "26236", - "libelleAcheminement": "PIERRELONGUE", - "nomCommune": "PIERRELONGUE" + "codePostal": "60310", + "codeCommune": "60126", + "libelleAcheminement": "CANNECTANCOURT", + "nomCommune": "CANNECTANCOURT" }, { - "codePostal": "41500", - "codeCommune": "41156", - "libelleAcheminement": "MULSANS", - "nomCommune": "MULSANS" + "codePostal": "02000", + "codeCommune": "02765", + "libelleAcheminement": "VAUCELLES ET BEFFECOURT", + "nomCommune": "VAUCELLES ET BEFFECOURT" }, { - "codePostal": "55110", - "codeCommune": "55004", - "libelleAcheminement": "AINCREVILLE", - "nomCommune": "AINCREVILLE" + "codePostal": "59450", + "codeCommune": "59569", + "libelleAcheminement": "SIN LE NOBLE", + "nomCommune": "SIN LE NOBLE" }, { - "codePostal": "31420", - "codeCommune": "31172", - "libelleAcheminement": "ESPARRON", - "nomCommune": "ESPARRON" + "codePostal": "49170", + "codeCommune": "49266", + "libelleAcheminement": "ST AUGUSTIN DES BOIS", + "nomCommune": "ST AUGUSTIN DES BOIS" }, { - "codePostal": "26460", - "codeCommune": "26241", - "libelleAcheminement": "LE POET CELARD", - "nomCommune": "LE POET CELARD" + "codePostal": "51240", + "codeCommune": "51148", + "libelleAcheminement": "CHEPPES LA PRAIRIE", + "nomCommune": "CHEPPES LA PRAIRIE" }, { - "codePostal": "41210", - "codeCommune": "41159", - "libelleAcheminement": "NEUNG SUR BEUVRON", - "nomCommune": "NEUNG SUR BEUVRON" + "codePostal": "60640", + "codeCommune": "60132", + "libelleAcheminement": "CATIGNY", + "nomCommune": "CATIGNY" }, { - "codePostal": "55170", - "codeCommune": "55010", - "libelleAcheminement": "ANCERVILLE", - "nomCommune": "ANCERVILLE" + "codePostal": "02320", + "codeCommune": "02766", + "libelleAcheminement": "VAUDESSON", + "nomCommune": "VAUDESSON" }, { - "codePostal": "31440", - "codeCommune": "31177", - "libelleAcheminement": "EUP", - "nomCommune": "EUP" + "codePostal": "59730", + "codeCommune": "59571", + "libelleAcheminement": "SOLESMES", + "nomCommune": "SOLESMES" }, { - "codePostal": "26310", - "codeCommune": "26262", - "libelleAcheminement": "RECOUBEAU JANSAC", - "nomCommune": "RECOUBEAU JANSAC" + "codePostal": "49370", + "codeCommune": "49271", + "libelleAcheminement": "ST CLEMENT DE LA PLACE", + "nomCommune": "ST CLEMENT DE LA PLACE" }, { - "codePostal": "41110", - "codeCommune": "41181", - "libelleAcheminement": "POUILLE", - "nomCommune": "POUILLE" + "codePostal": "51240", + "codeCommune": "51149", + "libelleAcheminement": "CHEPY", + "nomCommune": "CHEPY" }, { - "codePostal": "55300", - "codeCommune": "55012", - "libelleAcheminement": "APREMONT LA FORET", - "nomCommune": "APREMONT LA FORET" + "codePostal": "60130", + "codeCommune": "60133", + "libelleAcheminement": "CATILLON FUMECHON", + "nomCommune": "CATILLON FUMECHON" }, { - "codePostal": "31460", - "codeCommune": "31179", - "libelleAcheminement": "LE FAGET", - "nomCommune": "LE FAGET" + "codePostal": "02800", + "codeCommune": "02775", + "libelleAcheminement": "VENDEUIL", + "nomCommune": "VENDEUIL" }, { - "codePostal": "26510", - "codeCommune": "26264", - "libelleAcheminement": "REMUZAT", - "nomCommune": "REMUZAT" + "codePostal": "59213", + "codeCommune": "59575", + "libelleAcheminement": "SOMMAING", + "nomCommune": "SOMMAING" }, { - "codePostal": "41200", - "codeCommune": "41185", - "libelleAcheminement": "PRUNIERS EN SOLOGNE", - "nomCommune": "PRUNIERS EN SOLOGNE" + "codePostal": "49350", + "codeCommune": "49272", + "libelleAcheminement": "ST CLEMENT DES LEVEES", + "nomCommune": "ST CLEMENT DES LEVEES" }, { - "codePostal": "55120", - "codeCommune": "55014", - "libelleAcheminement": "AUBREVILLE", - "nomCommune": "AUBREVILLE" + "codePostal": "51130", + "codeCommune": "51158", + "libelleAcheminement": "VAL DES MARAIS", + "nomCommune": "VAL DES MARAIS" }, { - "codePostal": "31210", - "codeCommune": "31197", - "libelleAcheminement": "FRANQUEVIELLE", - "nomCommune": "FRANQUEVIELLE" + "codePostal": "60520", + "codeCommune": "60142", + "libelleAcheminement": "LA CHAPELLE EN SERVAL", + "nomCommune": "LA CHAPELLE EN SERVAL" }, { - "codePostal": "26160", - "codeCommune": "26268", - "libelleAcheminement": "ROCHEBAUDIN", - "nomCommune": "ROCHEBAUDIN" + "codePostal": "02420", + "codeCommune": "02776", + "libelleAcheminement": "VENDHUILE", + "nomCommune": "VENDHUILE" }, { - "codePostal": "41100", - "codeCommune": "41190", - "libelleAcheminement": "ROCE", - "nomCommune": "ROCE" + "codePostal": "59190", + "codeCommune": "59577", + "libelleAcheminement": "STAPLE", + "nomCommune": "STAPLE" }, { - "codePostal": "55120", - "codeCommune": "55017", - "libelleAcheminement": "AUTRECOURT SUR AIRE", - "nomCommune": "AUTRECOURT SUR AIRE" + "codePostal": "49260", + "codeCommune": "49291", + "libelleAcheminement": "ST JUST SUR DIVE", + "nomCommune": "ST JUST SUR DIVE" }, { - "codePostal": "31510", - "codeCommune": "31207", - "libelleAcheminement": "GALIE", - "nomCommune": "GALIE" + "codePostal": "51320", + "codeCommune": "51169", + "libelleAcheminement": "CORBEIL", + "nomCommune": "CORBEIL" }, { - "codePostal": "26170", - "codeCommune": "26279", - "libelleAcheminement": "LA ROCHETTE DU BUIS", - "nomCommune": "LA ROCHETTE DU BUIS" + "codePostal": "60120", + "codeCommune": "60146", + "libelleAcheminement": "CHEPOIX", + "nomCommune": "CHEPOIX" }, { - "codePostal": "41270", - "codeCommune": "41193", - "libelleAcheminement": "ROMILLY", - "nomCommune": "ROMILLY" + "codePostal": "02160", + "codeCommune": "02778", + "libelleAcheminement": "VENDRESSE BEAULNE", + "nomCommune": "VENDRESSE BEAULNE" }, { - "codePostal": "55600", - "codeCommune": "55022", - "libelleAcheminement": "AVIOTH", - "nomCommune": "AVIOTH" + "codePostal": "59189", + "codeCommune": "59578", + "libelleAcheminement": "STEENBECQUE", + "nomCommune": "STEENBECQUE" }, { - "codePostal": "31380", - "codeCommune": "31212", - "libelleAcheminement": "GARIDECH", - "nomCommune": "GARIDECH" + "codePostal": "49750", + "codeCommune": "49292", + "libelleAcheminement": "VAL DU LAYON", + "nomCommune": "VAL DU LAYON" }, { - "codePostal": "26100", - "codeCommune": "26281", - "libelleAcheminement": "ROMANS SUR ISERE", - "nomCommune": "ROMANS SUR ISERE" + "codePostal": "51220", + "codeCommune": "51183", + "libelleAcheminement": "COURCY", + "nomCommune": "COURCY" }, { - "codePostal": "41310", - "codeCommune": "41199", - "libelleAcheminement": "ST AMAND LONGPRE", - "nomCommune": "ST AMAND LONGPRE" + "codePostal": "60150", + "codeCommune": "60147", + "libelleAcheminement": "CHEVINCOURT", + "nomCommune": "CHEVINCOURT" }, { - "codePostal": "55270", - "codeCommune": "55023", - "libelleAcheminement": "AVOCOURT", - "nomCommune": "AVOCOURT" + "codePostal": "02200", + "codeCommune": "02780", + "libelleAcheminement": "VENIZEL", + "nomCommune": "VENIZEL" }, { - "codePostal": "31110", - "codeCommune": "31213", - "libelleAcheminement": "GARIN", - "nomCommune": "GARIN" + "codePostal": "59570", + "codeCommune": "59584", + "libelleAcheminement": "TAISNIERES SUR HON", + "nomCommune": "TAISNIERES SUR HON" }, { - "codePostal": "26150", - "codeCommune": "26282", - "libelleAcheminement": "ROMEYER", - "nomCommune": "ROMEYER" + "codePostal": "49230", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "41100", - "codeCommune": "41209", - "libelleAcheminement": "ST FIRMIN DES PRES", - "nomCommune": "ST FIRMIN DES PRES" + "codePostal": "51300", + "codeCommune": "51184", + "libelleAcheminement": "COURDEMANGES", + "nomCommune": "COURDEMANGES" }, { - "codePostal": "55150", - "codeCommune": "55024", - "libelleAcheminement": "AZANNES ET SOUMAZANNES", - "nomCommune": "AZANNES ET SOUMAZANNES" + "codePostal": "60138", + "codeCommune": "60150", + "libelleAcheminement": "CHIRY OURSCAMP", + "nomCommune": "CHIRY OURSCAMP" }, { - "codePostal": "31380", - "codeCommune": "31216", - "libelleAcheminement": "GEMIL", - "nomCommune": "GEMIL" + "codePostal": "02490", + "codeCommune": "02782", + "libelleAcheminement": "LE VERGUIER", + "nomCommune": "LE VERGUIER" }, { - "codePostal": "26230", - "codeCommune": "26284", - "libelleAcheminement": "ROUSSAS", - "nomCommune": "ROUSSAS" + "codePostal": "59152", + "codeCommune": "59602", + "libelleAcheminement": "TRESSIN", + "nomCommune": "TRESSIN" }, { - "codePostal": "41400", - "codeCommune": "41217", - "libelleAcheminement": "ST JULIEN DE CHEDON", - "nomCommune": "ST JULIEN DE CHEDON" + "codePostal": "49450", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "55000", - "codeCommune": "55029", - "libelleAcheminement": "BAR LE DUC", - "nomCommune": "BAR LE DUC" + "codePostal": "51800", + "codeCommune": "51191", + "libelleAcheminement": "COURTEMONT", + "nomCommune": "COURTEMONT" }, { - "codePostal": "31510", - "codeCommune": "31217", - "libelleAcheminement": "GENOS", - "nomCommune": "GENOS" + "codePostal": "60750", + "codeCommune": "60151", + "libelleAcheminement": "CHOISY AU BAC", + "nomCommune": "CHOISY AU BAC" }, { - "codePostal": "26150", - "codeCommune": "26291", - "libelleAcheminement": "ST ANDEOL", - "nomCommune": "ST ANDEOL" + "codePostal": "02490", + "codeCommune": "02785", + "libelleAcheminement": "VERMAND", + "nomCommune": "VERMAND" }, { - "codePostal": "41000", - "codeCommune": "41230", - "libelleAcheminement": "ST SULPICE DE POMMERAY", - "nomCommune": "ST SULPICE DE POMMERAY" + "codePostal": "59600", + "codeCommune": "59618", + "libelleAcheminement": "VIEUX RENG", + "nomCommune": "VIEUX RENG" }, { - "codePostal": "55170", - "codeCommune": "55031", - "libelleAcheminement": "BAUDONVILLIERS", - "nomCommune": "BAUDONVILLIERS" + "codePostal": "49450", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "31310", - "codeCommune": "31219", - "libelleAcheminement": "GENSAC SUR GARONNE", - "nomCommune": "GENSAC SUR GARONNE" + "codePostal": "51300", + "codeCommune": "51195", + "libelleAcheminement": "COUVROT", + "nomCommune": "COUVROT" }, { - "codePostal": "26150", - "codeCommune": "26299", - "libelleAcheminement": "STE CROIX", - "nomCommune": "STE CROIX" + "codePostal": "60600", + "codeCommune": "60157", + "libelleAcheminement": "CLERMONT", + "nomCommune": "CLERMONT" }, { - "codePostal": "41100", - "codeCommune": "41243", - "libelleAcheminement": "SELOMMES", - "nomCommune": "SELOMMES" + "codePostal": "02140", + "codeCommune": "02789", + "libelleAcheminement": "VERVINS", + "nomCommune": "VERVINS" }, { - "codePostal": "55600", - "codeCommune": "55034", - "libelleAcheminement": "BAZEILLES SUR OTHAIN", - "nomCommune": "BAZEILLES SUR OTHAIN" + "codePostal": "59297", + "codeCommune": "59623", + "libelleAcheminement": "VILLERS GUISLAIN", + "nomCommune": "VILLERS GUISLAIN" }, { - "codePostal": "31310", - "codeCommune": "31225", - "libelleAcheminement": "GOUTEVERNISSE", - "nomCommune": "GOUTEVERNISSE" + "codePostal": "49140", + "codeCommune": "49307", + "libelleAcheminement": "LOIRE AUTHION", + "nomCommune": "LOIRE AUTHION" }, { - "codePostal": "26160", - "codeCommune": "26305", - "libelleAcheminement": "ST GERVAIS SUR ROUBION", - "nomCommune": "ST GERVAIS SUR ROUBION" + "codePostal": "51700", + "codeCommune": "51201", + "libelleAcheminement": "CUISLES", + "nomCommune": "CUISLES" }, { - "codePostal": "41170", - "codeCommune": "41254", - "libelleAcheminement": "LE TEMPLE", - "nomCommune": "LE TEMPLE" + "codePostal": "60360", + "codeCommune": "60161", + "libelleAcheminement": "CONTEVILLE", + "nomCommune": "CONTEVILLE" }, { - "codePostal": "55700", - "codeCommune": "55037", - "libelleAcheminement": "BEAUFORT EN ARGONNE", - "nomCommune": "BEAUFORT EN ARGONNE" + "codePostal": "02350", + "codeCommune": "02790", + "libelleAcheminement": "VESLES ET CAUMONT", + "nomCommune": "VESLES ET CAUMONT" }, { - "codePostal": "31120", - "codeCommune": "31227", - "libelleAcheminement": "GOYRANS", - "nomCommune": "GOYRANS" + "codePostal": "59127", + "codeCommune": "59631", + "libelleAcheminement": "WALINCOURT SELVIGNY", + "nomCommune": "WALINCOURT SELVIGNY" }, { - "codePostal": "26130", - "codeCommune": "26326", - "libelleAcheminement": "ST RESTITUT", - "nomCommune": "ST RESTITUT" + "codePostal": "49160", + "codeCommune": "49311", + "libelleAcheminement": "ST PHILBERT DU PEUPLE", + "nomCommune": "ST PHILBERT DU PEUPLE" }, { - "codePostal": "41100", - "codeCommune": "41259", - "libelleAcheminement": "THORE LA ROCHETTE", - "nomCommune": "THORE LA ROCHETTE" + "codePostal": "51480", + "codeCommune": "51202", + "libelleAcheminement": "CUMIERES", + "nomCommune": "CUMIERES" }, { - "codePostal": "55260", - "codeCommune": "55044", - "libelleAcheminement": "BELRAIN", - "nomCommune": "BELRAIN" + "codePostal": "60660", + "codeCommune": "60173", + "libelleAcheminement": "CRAMOISY", + "nomCommune": "CRAMOISY" }, { - "codePostal": "31190", - "codeCommune": "31233", - "libelleAcheminement": "GREPIAC", - "nomCommune": "GREPIAC" + "codePostal": "02290", + "codeCommune": "02795", + "libelleAcheminement": "VIC SUR AISNE", + "nomCommune": "VIC SUR AISNE" }, { - "codePostal": "26340", - "codeCommune": "26328", - "libelleAcheminement": "ST SAUVEUR EN DIOIS", - "nomCommune": "ST SAUVEUR EN DIOIS" + "codePostal": "59135", + "codeCommune": "59632", + "libelleAcheminement": "WALLERS", + "nomCommune": "WALLERS" }, { - "codePostal": "41190", - "codeCommune": "41261", - "libelleAcheminement": "TOURAILLES", - "nomCommune": "TOURAILLES" + "codePostal": "49112", + "codeCommune": "49323", + "libelleAcheminement": "VERRIERES EN ANJOU", + "nomCommune": "VERRIERES EN ANJOU" }, { - "codePostal": "55000", - "codeCommune": "55049", - "libelleAcheminement": "BEUREY SUR SAULX", - "nomCommune": "BEUREY SUR SAULX" + "codePostal": "51330", + "codeCommune": "51206", + "libelleAcheminement": "DAMPIERRE LE CHATEAU", + "nomCommune": "DAMPIERRE LE CHATEAU" }, { - "codePostal": "31160", - "codeCommune": "31236", - "libelleAcheminement": "HERRAN", - "nomCommune": "HERRAN" + "codePostal": "60350", + "codeCommune": "60184", + "libelleAcheminement": "CROUTOY", + "nomCommune": "CROUTOY" }, { - "codePostal": "26240", - "codeCommune": "26332", - "libelleAcheminement": "ST UZE", - "nomCommune": "ST UZE" + "codePostal": "02210", + "codeCommune": "02796", + "libelleAcheminement": "VICHEL NANTEUIL", + "nomCommune": "VICHEL NANTEUIL" }, { - "codePostal": "41250", - "codeCommune": "41262", - "libelleAcheminement": "TOUR EN SOLOGNE", - "nomCommune": "TOUR EN SOLOGNE" + "codePostal": "59118", + "codeCommune": "59636", + "libelleAcheminement": "WAMBRECHIES", + "nomCommune": "WAMBRECHIES" }, { - "codePostal": "55300", - "codeCommune": "55054", - "libelleAcheminement": "BISLEE", - "nomCommune": "BISLEE" + "codePostal": "49480", + "codeCommune": "49323", + "libelleAcheminement": "VERRIERES EN ANJOU", + "nomCommune": "VERRIERES EN ANJOU" }, { - "codePostal": "31260", - "codeCommune": "31237", - "libelleAcheminement": "HIS", - "nomCommune": "HIS" + "codePostal": "51800", + "codeCommune": "51211", + "libelleAcheminement": "DOMMARTIN DAMPIERRE", + "nomCommune": "DOMMARTIN DAMPIERRE" }, { - "codePostal": "26160", - "codeCommune": "26334", - "libelleAcheminement": "SALETTES", - "nomCommune": "SALETTES" + "codePostal": "60530", + "codeCommune": "60185", + "libelleAcheminement": "CROUY EN THELLE", + "nomCommune": "CROUY EN THELLE" }, { - "codePostal": "41100", - "codeCommune": "41269", - "libelleAcheminement": "VENDOME", - "nomCommune": "VENDOME" + "codePostal": "02160", + "codeCommune": "02803", + "libelleAcheminement": "LA VILLE AUX BOIS LES PONTAVERT", + "nomCommune": "LA VILLE AUX BOIS LES PONTAVERT" }, { - "codePostal": "55130", - "codeCommune": "55059", - "libelleAcheminement": "BONNET", - "nomCommune": "BONNET" + "codePostal": "59380", + "codeCommune": "59641", + "libelleAcheminement": "WARHEM", + "nomCommune": "WARHEM" }, { - "codePostal": "31450", - "codeCommune": "31240", - "libelleAcheminement": "ISSUS", - "nomCommune": "ISSUS" + "codePostal": "49400", + "codeCommune": "49328", + "libelleAcheminement": "SAUMUR", + "nomCommune": "SAUMUR" }, { - "codePostal": "26130", - "codeCommune": "26342", - "libelleAcheminement": "SOLERIEUX", - "nomCommune": "SOLERIEUX" + "codePostal": "51330", + "codeCommune": "51214", + "libelleAcheminement": "DOMMARTIN VARIMONT", + "nomCommune": "DOMMARTIN VARIMONT" }, { - "codePostal": "41290", - "codeCommune": "41273", - "libelleAcheminement": "VIEVY LE RAYE", - "nomCommune": "VIEVY LE RAYE" + "codePostal": "60620", + "codeCommune": "60190", + "libelleAcheminement": "CUVERGNON", + "nomCommune": "CUVERGNON" }, { - "codePostal": "55160", - "codeCommune": "55060", - "libelleAcheminement": "BONZEE", - "nomCommune": "BONZEE" + "codePostal": "02300", + "codeCommune": "02807", + "libelleAcheminement": "VILLEQUIER AUMONT", + "nomCommune": "VILLEQUIER AUMONT" }, { - "codePostal": "31110", - "codeCommune": "31242", - "libelleAcheminement": "JURVIELLE", - "nomCommune": "JURVIELLE" + "codePostal": "59870", + "codeCommune": "59642", + "libelleAcheminement": "WARLAING", + "nomCommune": "WARLAING" }, { - "codePostal": "26400", - "codeCommune": "26344", - "libelleAcheminement": "SOYANS", - "nomCommune": "SOYANS" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "41290", - "codeCommune": "41273", - "libelleAcheminement": "VIEVY LE RAYE", - "nomCommune": "VIEVY LE RAYE" + "codePostal": "51120", + "codeCommune": "51235", + "libelleAcheminement": "LES ESSARTS LES SEZANNE", + "nomCommune": "LES ESSARTS LES SEZANNE" }, { - "codePostal": "55500", - "codeCommune": "55061", - "libelleAcheminement": "LE BOUCHON SUR SAULX", - "nomCommune": "LE BOUCHON SUR SAULX" + "codePostal": "60530", + "codeCommune": "60197", + "libelleAcheminement": "DIEUDONNE", + "nomCommune": "DIEUDONNE" }, { - "codePostal": "31800", - "codeCommune": "31246", - "libelleAcheminement": "LABARTHE INARD", - "nomCommune": "LABARTHE INARD" + "codePostal": "02600", + "codeCommune": "02810", + "libelleAcheminement": "VILLERS COTTERETS", + "nomCommune": "VILLERS COTTERETS" }, { - "codePostal": "26460", - "codeCommune": "26351", - "libelleAcheminement": "LES TONILS", - "nomCommune": "LES TONILS" + "codePostal": "59560", + "codeCommune": "59643", + "libelleAcheminement": "WARNETON", + "nomCommune": "WARNETON" }, { - "codePostal": "41800", - "codeCommune": "41274", - "libelleAcheminement": "VILLAVARD", - "nomCommune": "VILLAVARD" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "55100", - "codeCommune": "55070", - "libelleAcheminement": "BRABANT SUR MEUSE", - "nomCommune": "BRABANT SUR MEUSE" + "codePostal": "51270", + "codeCommune": "51238", + "libelleAcheminement": "ETOGES", + "nomCommune": "ETOGES" }, { - "codePostal": "31370", - "codeCommune": "31250", - "libelleAcheminement": "LABASTIDE CLERMONT", - "nomCommune": "LABASTIDE CLERMONT" + "codePostal": "60310", + "codeCommune": "60198", + "libelleAcheminement": "DIVES", + "nomCommune": "DIVES" }, { - "codePostal": "26120", - "codeCommune": "26358", - "libelleAcheminement": "UPIE", - "nomCommune": "UPIE" + "codePostal": "02600", + "codeCommune": "02810", + "libelleAcheminement": "VILLERS COTTERETS", + "nomCommune": "VILLERS COTTERETS" }, { - "codePostal": "41200", - "codeCommune": "41282", - "libelleAcheminement": "VILLEHERVIERS", - "nomCommune": "VILLEHERVIERS" + "codePostal": "59111", + "codeCommune": "59652", + "libelleAcheminement": "WAVRECHAIN SOUS FAULX", + "nomCommune": "WAVRECHAIN SOUS FAULX" }, { - "codePostal": "55600", - "codeCommune": "55077", - "libelleAcheminement": "BREUX", - "nomCommune": "BREUX" + "codePostal": "49520", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "31120", - "codeCommune": "31259", - "libelleAcheminement": "LACROIX FALGARDE", - "nomCommune": "LACROIX FALGARDE" + "codePostal": "51230", + "codeCommune": "51248", + "libelleAcheminement": "FERE CHAMPENOISE", + "nomCommune": "FERE CHAMPENOISE" }, { - "codePostal": "26110", - "codeCommune": "26363", - "libelleAcheminement": "VALOUSE", - "nomCommune": "VALOUSE" + "codePostal": "60240", + "codeCommune": "60209", + "libelleAcheminement": "LA CORNE EN VEXIN", + "nomCommune": "LA CORNE EN VEXIN" }, { - "codePostal": "41220", - "codeCommune": "41285", - "libelleAcheminement": "VILLENY", - "nomCommune": "VILLENY" + "codePostal": "02880", + "codeCommune": "02828", + "libelleAcheminement": "VREGNY", + "nomCommune": "VREGNY" }, { - "codePostal": "55190", - "codeCommune": "55084", - "libelleAcheminement": "BROUSSEY EN BLOIS", - "nomCommune": "BROUSSEY EN BLOIS" + "codePostal": "59670", + "codeCommune": "59662", + "libelleAcheminement": "WINNEZEELE", + "nomCommune": "WINNEZEELE" }, { - "codePostal": "31190", - "codeCommune": "31264", - "libelleAcheminement": "LAGRACE DIEU", - "nomCommune": "LAGRACE DIEU" + "codePostal": "49520", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "26400", - "codeCommune": "26365", - "libelleAcheminement": "VAUNAVEYS LA ROCHETTE", - "nomCommune": "VAUNAVEYS LA ROCHETTE" + "codePostal": "51230", + "codeCommune": "51248", + "libelleAcheminement": "FERE CHAMPENOISE", + "nomCommune": "FERE CHAMPENOISE" }, { - "codePostal": "41310", - "codeCommune": "41286", - "libelleAcheminement": "VILLEPORCHER", - "nomCommune": "VILLEPORCHER" + "codePostal": "60530", + "codeCommune": "60212", + "libelleAcheminement": "ERCUIS", + "nomCommune": "ERCUIS" }, { - "codePostal": "55200", - "codeCommune": "55085", - "libelleAcheminement": "BROUSSEY RAULECOURT", - "nomCommune": "BROUSSEY RAULECOURT" + "codePostal": "02630", + "codeCommune": "02830", + "libelleAcheminement": "WASSIGNY", + "nomCommune": "WASSIGNY" }, { - "codePostal": "31480", - "codeCommune": "31265", - "libelleAcheminement": "LAGRAULET ST NICOLAS", - "nomCommune": "LAGRAULET ST NICOLAS" + "codePostal": "59670", + "codeCommune": "59667", + "libelleAcheminement": "ZERMEZEELE", + "nomCommune": "ZERMEZEELE" }, { - "codePostal": "26510", - "codeCommune": "26369", - "libelleAcheminement": "VERCLAUSE", - "nomCommune": "VERCLAUSE" + "codePostal": "49610", + "codeCommune": "49338", + "libelleAcheminement": "SOULAINES SUR AUBANCE", + "nomCommune": "SOULAINES SUR AUBANCE" }, { - "codePostal": "41100", - "codeCommune": "41287", - "libelleAcheminement": "VILLERABLE", - "nomCommune": "VILLERABLE" + "codePostal": "51210", + "codeCommune": "51264", + "libelleAcheminement": "LE GAULT SOIGNY", + "nomCommune": "LE GAULT SOIGNY" }, { - "codePostal": "55300", - "codeCommune": "55093", - "libelleAcheminement": "BUXIERES SOUS LES COTES", - "nomCommune": "BUXIERES SOUS LES COTES" + "codePostal": "60600", + "codeCommune": "60215", + "libelleAcheminement": "ERQUERY", + "nomCommune": "ERQUERY" }, { - "codePostal": "31310", - "codeCommune": "31272", - "libelleAcheminement": "LAPEYRERE", - "nomCommune": "LAPEYRERE" + "codePostal": "02830", + "codeCommune": "02831", + "libelleAcheminement": "WATIGNY", + "nomCommune": "WATIGNY" }, { - "codePostal": "26170", - "codeCommune": "26370", - "libelleAcheminement": "VERCOIRAN", - "nomCommune": "VERCOIRAN" + "codePostal": "59272", + "codeCommune": "59670", + "libelleAcheminement": "DON", + "nomCommune": "DON" }, { - "codePostal": "41100", - "codeCommune": "41291", - "libelleAcheminement": "VILLETRUN", - "nomCommune": "VILLETRUN" + "codePostal": "49220", + "codeCommune": "49367", + "libelleAcheminement": "ERDRE EN ANJOU", + "nomCommune": "ERDRE EN ANJOU" }, { - "codePostal": "55300", - "codeCommune": "55093", - "libelleAcheminement": "BUXIERES SOUS LES COTES", - "nomCommune": "BUXIERES SOUS LES COTES" + "codePostal": "51290", + "codeCommune": "51269", + "libelleAcheminement": "GIFFAUMONT CHAMPAUBERT", + "nomCommune": "GIFFAUMONT CHAMPAUBERT" }, { - "codePostal": "31800", - "codeCommune": "31274", - "libelleAcheminement": "LARCAN", - "nomCommune": "LARCAN" + "codePostal": "60130", + "codeCommune": "60216", + "libelleAcheminement": "ERQUINVILLERS", + "nomCommune": "ERQUINVILLERS" }, { - "codePostal": "26340", - "codeCommune": "26371", - "libelleAcheminement": "VERONNE", - "nomCommune": "VERONNE" + "codePostal": "02320", + "codeCommune": "02834", + "libelleAcheminement": "WISSIGNICOURT", + "nomCommune": "WISSIGNICOURT" }, { - "codePostal": "42820", - "codeCommune": "42003", - "libelleAcheminement": "AMBIERLE", - "nomCommune": "AMBIERLE" + "codePostal": "60570", + "codeCommune": "60012", + "libelleAcheminement": "ANDEVILLE", + "nomCommune": "ANDEVILLE" }, { - "codePostal": "55400", - "codeCommune": "55094", - "libelleAcheminement": "BUZY DARMONT", - "nomCommune": "BUZY DARMONT" + "codePostal": "49220", + "codeCommune": "49367", + "libelleAcheminement": "ERDRE EN ANJOU", + "nomCommune": "ERDRE EN ANJOU" }, { - "codePostal": "31580", - "codeCommune": "31276", - "libelleAcheminement": "LARROQUE", - "nomCommune": "LARROQUE" + "codePostal": "51290", + "codeCommune": "51270", + "libelleAcheminement": "GIGNY BUSSY", + "nomCommune": "GIGNY BUSSY" }, { - "codePostal": "26110", - "codeCommune": "26377", - "libelleAcheminement": "VINSOBRES", - "nomCommune": "VINSOBRES" + "codePostal": "60380", + "codeCommune": "60217", + "libelleAcheminement": "ESCAMES", + "nomCommune": "ESCAMES" }, { - "codePostal": "42160", - "codeCommune": "42005", - "libelleAcheminement": "ANDREZIEUX BOUTHEON", - "nomCommune": "ANDREZIEUX BOUTHEON" + "codePostal": "03360", + "codeCommune": "03003", + "libelleAcheminement": "AINAY LE CHATEAU", + "nomCommune": "AINAY LE CHATEAU" }, { - "codePostal": "55210", - "codeCommune": "55096", - "libelleAcheminement": "CHAILLON", - "nomCommune": "CHAILLON" + "codePostal": "60120", + "codeCommune": "60017", + "libelleAcheminement": "ANSAUVILLERS", + "nomCommune": "ANSAUVILLERS" }, { - "codePostal": "31370", - "codeCommune": "31283", - "libelleAcheminement": "LAUTIGNAC", - "nomCommune": "LAUTIGNAC" + "codePostal": "49390", + "codeCommune": "49369", + "libelleAcheminement": "VERNOIL LE FOURRIER", + "nomCommune": "VERNOIL LE FOURRIER" }, { - "codePostal": "26600", - "codeCommune": "26380", - "libelleAcheminement": "GERVANS", - "nomCommune": "GERVANS" + "codePostal": "51800", + "codeCommune": "51280", + "libelleAcheminement": "GRATREUIL", + "nomCommune": "GRATREUIL" }, { - "codePostal": "42660", - "codeCommune": "42017", - "libelleAcheminement": "LE BESSAT", - "nomCommune": "LE BESSAT" + "codePostal": "60120", + "codeCommune": "60221", + "libelleAcheminement": "ESQUENNOY", + "nomCommune": "ESQUENNOY" }, { - "codePostal": "55100", - "codeCommune": "55102", - "libelleAcheminement": "CHARNY SUR MEUSE", - "nomCommune": "CHARNY SUR MEUSE" + "codePostal": "03460", + "codeCommune": "03011", + "libelleAcheminement": "AUROUER", + "nomCommune": "AUROUER" }, { - "codePostal": "31220", - "codeCommune": "31286", - "libelleAcheminement": "LAVELANET DE COMMINGES", - "nomCommune": "LAVELANET DE COMMINGES" + "codePostal": "60620", + "codeCommune": "60020", + "libelleAcheminement": "ANTILLY", + "nomCommune": "ANTILLY" }, { - "codePostal": "27400", - "codeCommune": "27003", - "libelleAcheminement": "ACQUIGNY", - "nomCommune": "ACQUIGNY" + "codePostal": "49360", + "codeCommune": "49381", + "libelleAcheminement": "YZERNAY", + "nomCommune": "YZERNAY" }, { - "codePostal": "42260", - "codeCommune": "42027", - "libelleAcheminement": "BULLY", - "nomCommune": "BULLY" + "codePostal": "51160", + "codeCommune": "51287", + "libelleAcheminement": "HAUTVILLERS", + "nomCommune": "HAUTVILLERS" }, { - "codePostal": "55100", - "codeCommune": "55106", - "libelleAcheminement": "CHATTANCOURT", - "nomCommune": "CHATTANCOURT" + "codePostal": "60600", + "codeCommune": "60225", + "libelleAcheminement": "ETOUY", + "nomCommune": "ETOUY" }, { - "codePostal": "31340", - "codeCommune": "31288", - "libelleAcheminement": "LAYRAC SUR TARN", - "nomCommune": "LAYRAC SUR TARN" + "codePostal": "03120", + "codeCommune": "03017", + "libelleAcheminement": "BARRAIS BUSSOLLES", + "nomCommune": "BARRAIS BUSSOLLES" }, { - "codePostal": "27380", - "codeCommune": "27012", - "libelleAcheminement": "AMFREVILLE LES CHAMPS", - "nomCommune": "AMFREVILLE LES CHAMPS" + "codePostal": "60360", + "codeCommune": "60026", + "libelleAcheminement": "AUCHY LA MONTAGNE", + "nomCommune": "AUCHY LA MONTAGNE" }, { - "codePostal": "42800", - "codeCommune": "42036", - "libelleAcheminement": "CHAGNON", - "nomCommune": "CHAGNON" + "codePostal": "50620", + "codeCommune": "50006", + "libelleAcheminement": "AMIGNY", + "nomCommune": "AMIGNY" }, { - "codePostal": "55260", - "codeCommune": "55108", - "libelleAcheminement": "CHAUMONT SUR AIRE", - "nomCommune": "CHAUMONT SUR AIRE" + "codePostal": "51340", + "codeCommune": "51290", + "libelleAcheminement": "HEILTZ L EVEQUE", + "nomCommune": "HEILTZ L EVEQUE" }, { - "codePostal": "31150", - "codeCommune": "31293", - "libelleAcheminement": "LESPINASSE", - "nomCommune": "LESPINASSE" + "codePostal": "60680", + "codeCommune": "60229", + "libelleAcheminement": "LE FAYEL", + "nomCommune": "LE FAYEL" }, { - "codePostal": "27820", - "codeCommune": "27019", - "libelleAcheminement": "ARMENTIERES SUR AVRE", - "nomCommune": "ARMENTIERES SUR AVRE" + "codePostal": "03800", + "codeCommune": "03021", + "libelleAcheminement": "BEGUES", + "nomCommune": "BEGUES" }, { - "codePostal": "42920", - "codeCommune": "42039", - "libelleAcheminement": "CHALMAZEL JEANSAGNIERE", - "nomCommune": "CHALMAZEL JEANSAGNIERE" + "codePostal": "60350", + "codeCommune": "60032", + "libelleAcheminement": "AUTRECHES", + "nomCommune": "AUTRECHES" }, { - "codePostal": "55300", - "codeCommune": "55111", - "libelleAcheminement": "CHAUVONCOURT", - "nomCommune": "CHAUVONCOURT" + "codePostal": "50300", + "codeCommune": "50025", + "libelleAcheminement": "AVRANCHES", + "nomCommune": "AVRANCHES" }, { - "codePostal": "31290", - "codeCommune": "31310", - "libelleAcheminement": "LUX", - "nomCommune": "LUX" + "codePostal": "51140", + "codeCommune": "51294", + "libelleAcheminement": "HOURGES", + "nomCommune": "HOURGES" }, { - "codePostal": "27180", - "codeCommune": "27020", - "libelleAcheminement": "ARNIERES SUR ITON", - "nomCommune": "ARNIERES SUR ITON" + "codePostal": "60960", + "codeCommune": "60233", + "libelleAcheminement": "FEUQUIERES", + "nomCommune": "FEUQUIERES" }, { - "codePostal": "42110", - "codeCommune": "42041", - "libelleAcheminement": "CHAMBEON", - "nomCommune": "CHAMBEON" + "codePostal": "03330", + "codeCommune": "03022", + "libelleAcheminement": "BELLENAVES", + "nomCommune": "BELLENAVES" }, { - "codePostal": "55270", - "codeCommune": "55115", - "libelleAcheminement": "CIERGES SOUS MONTFAUCON", - "nomCommune": "CIERGES SOUS MONTFAUCON" + "codePostal": "60130", + "codeCommune": "60034", + "libelleAcheminement": "AVRECHY", + "nomCommune": "AVRECHY" }, { - "codePostal": "31550", - "codeCommune": "31319", - "libelleAcheminement": "MARLIAC", - "nomCommune": "MARLIAC" + "codePostal": "50500", + "codeCommune": "50036", + "libelleAcheminement": "BAUPTE", + "nomCommune": "BAUPTE" }, { - "codePostal": "27600", - "codeCommune": "27022", - "libelleAcheminement": "LE VAL D HAZEY", - "nomCommune": "LE VAL D HAZEY" + "codePostal": "51300", + "codeCommune": "51295", + "libelleAcheminement": "HUIRON", + "nomCommune": "HUIRON" }, { - "codePostal": "42310", - "codeCommune": "42049", - "libelleAcheminement": "CHANGY", - "nomCommune": "CHANGY" + "codePostal": "60640", + "codeCommune": "60236", + "libelleAcheminement": "FLAVY LE MELDEUX", + "nomCommune": "FLAVY LE MELDEUX" }, { - "codePostal": "55120", - "codeCommune": "55117", - "libelleAcheminement": "CLERMONT EN ARGONNE", - "nomCommune": "CLERMONT EN ARGONNE" + "codePostal": "03700", + "codeCommune": "03023", + "libelleAcheminement": "BELLERIVE SUR ALLIER", + "nomCommune": "BELLERIVE SUR ALLIER" }, { - "codePostal": "31230", - "codeCommune": "31333", - "libelleAcheminement": "MAUVEZIN", - "nomCommune": "MAUVEZIN" + "codePostal": "60400", + "codeCommune": "60037", + "libelleAcheminement": "BABOEUF", + "nomCommune": "BABOEUF" }, { - "codePostal": "27180", - "codeCommune": "27023", - "libelleAcheminement": "AULNAY SUR ITON", - "nomCommune": "AULNAY SUR ITON" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "42190", - "codeCommune": "42052", - "libelleAcheminement": "CHARLIEU", - "nomCommune": "CHARLIEU" + "codePostal": "51110", + "codeCommune": "51299", + "libelleAcheminement": "ISLES SUR SUIPPE", + "nomCommune": "ISLES SUR SUIPPE" }, { - "codePostal": "55000", - "codeCommune": "55123", - "libelleAcheminement": "LES HAUTS DE CHEE", - "nomCommune": "LES HAUTS DE CHEE" + "codePostal": "60240", + "codeCommune": "60239", + "libelleAcheminement": "FLEURY", + "nomCommune": "FLEURY" }, { - "codePostal": "31320", - "codeCommune": "31340", - "libelleAcheminement": "MERVILLA", - "nomCommune": "MERVILLA" + "codePostal": "03130", + "codeCommune": "03024", + "libelleAcheminement": "BERT", + "nomCommune": "BERT" }, { - "codePostal": "27420", - "codeCommune": "27026", - "libelleAcheminement": "AUTHEVERNES", - "nomCommune": "AUTHEVERNES" + "codePostal": "60620", + "codeCommune": "60046", + "libelleAcheminement": "BARGNY", + "nomCommune": "BARGNY" }, { - "codePostal": "42140", - "codeCommune": "42062", - "libelleAcheminement": "CHEVRIERES", - "nomCommune": "CHEVRIERES" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "55260", - "codeCommune": "55129", - "libelleAcheminement": "COUROUVRE", - "nomCommune": "COUROUVRE" + "codePostal": "51150", + "codeCommune": "51301", + "libelleAcheminement": "ISSE", + "nomCommune": "ISSE" }, { - "codePostal": "31800", - "codeCommune": "31344", - "libelleAcheminement": "MIRAMONT DE COMMINGES", - "nomCommune": "MIRAMONT DE COMMINGES" + "codePostal": "60190", + "codeCommune": "60247", + "libelleAcheminement": "FOUILLEUSE", + "nomCommune": "FOUILLEUSE" }, { - "codePostal": "27220", - "codeCommune": "27027", - "libelleAcheminement": "LES AUTHIEUX", - "nomCommune": "LES AUTHIEUX" + "codePostal": "03170", + "codeCommune": "03027", + "libelleAcheminement": "BEZENET", + "nomCommune": "BEZENET" }, { - "codePostal": "42220", - "codeCommune": "42067", - "libelleAcheminement": "COLOMBIER", - "nomCommune": "COLOMBIER" + "codePostal": "60300", + "codeCommune": "60047", + "libelleAcheminement": "BARON", + "nomCommune": "BARON" }, { - "codePostal": "55000", - "codeCommune": "55138", - "libelleAcheminement": "CULEY", - "nomCommune": "CULEY" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "31230", - "codeCommune": "31347", - "libelleAcheminement": "MOLAS", - "nomCommune": "MOLAS" + "codePostal": "51390", + "codeCommune": "51305", + "libelleAcheminement": "JANVRY", + "nomCommune": "JANVRY" }, { - "codePostal": "27240", - "codeCommune": "27032", - "libelleAcheminement": "CHAMBOIS", - "nomCommune": "CHAMBOIS" + "codePostal": "60510", + "codeCommune": "60251", + "libelleAcheminement": "FOUQUEROLLES", + "nomCommune": "FOUQUEROLLES" }, { - "codePostal": "42120", - "codeCommune": "42069", - "libelleAcheminement": "COMMELLE VERNAY", - "nomCommune": "COMMELLE VERNAY" + "codePostal": "03260", + "codeCommune": "03029", + "libelleAcheminement": "BILLY", + "nomCommune": "BILLY" }, { - "codePostal": "55400", - "codeCommune": "55143", - "libelleAcheminement": "DAMLOUP", - "nomCommune": "DAMLOUP" + "codePostal": "60390", + "codeCommune": "60054", + "libelleAcheminement": "LES HAUTS TALICAN", + "nomCommune": "LES HAUTS TALICAN" }, { - "codePostal": "31350", - "codeCommune": "31350", - "libelleAcheminement": "MONDILHAN", - "nomCommune": "MONDILHAN" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "27240", - "codeCommune": "27032", - "libelleAcheminement": "CHAMBOIS", - "nomCommune": "CHAMBOIS" + "codePostal": "51290", + "codeCommune": "51322", + "libelleAcheminement": "LIGNON", + "nomCommune": "LIGNON" }, { - "codePostal": "42123", - "codeCommune": "42070", - "libelleAcheminement": "CORDELLE", - "nomCommune": "CORDELLE" + "codePostal": "60480", + "codeCommune": "60253", + "libelleAcheminement": "FRANCASTEL", + "nomCommune": "FRANCASTEL" }, { - "codePostal": "55150", - "codeCommune": "55145", - "libelleAcheminement": "DAMVILLERS", - "nomCommune": "DAMVILLERS" + "codePostal": "03390", + "codeCommune": "03032", + "libelleAcheminement": "BLOMARD", + "nomCommune": "BLOMARD" }, { - "codePostal": "31280", - "codeCommune": "31355", - "libelleAcheminement": "MONS", - "nomCommune": "MONS" + "codePostal": "60540", + "codeCommune": "60060", + "libelleAcheminement": "BELLE EGLISE", + "nomCommune": "BELLE EGLISE" }, { - "codePostal": "27310", - "codeCommune": "27039", - "libelleAcheminement": "BARNEVILLE SUR SEINE", - "nomCommune": "BARNEVILLE SUR SEINE" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "42360", - "codeCommune": "42073", - "libelleAcheminement": "COTTANCE", - "nomCommune": "COTTANCE" + "codePostal": "51300", + "codeCommune": "51334", + "libelleAcheminement": "LUXEMONT ET VILLOTTE", + "nomCommune": "LUXEMONT ET VILLOTTE" }, { - "codePostal": "55110", - "codeCommune": "55146", - "libelleAcheminement": "DANNEVOUX", - "nomCommune": "DANNEVOUX" + "codePostal": "60530", + "codeCommune": "60259", + "libelleAcheminement": "FRESNOY EN THELLE", + "nomCommune": "FRESNOY EN THELLE" }, { - "codePostal": "31140", - "codeCommune": "31364", - "libelleAcheminement": "MONTBERON", - "nomCommune": "MONTBERON" + "codePostal": "03150", + "codeCommune": "03034", + "libelleAcheminement": "BOUCE", + "nomCommune": "BOUCE" }, { - "codePostal": "27330", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "60390", + "codeCommune": "60063", + "libelleAcheminement": "BERNEUIL EN BRAY", + "nomCommune": "BERNEUIL EN BRAY" }, { - "codePostal": "42700", - "codeCommune": "42095", - "libelleAcheminement": "FIRMINY", - "nomCommune": "FIRMINY" + "codePostal": "50340", + "codeCommune": "50045", + "libelleAcheminement": "BENOITVILLE", + "nomCommune": "BENOITVILLE" }, { - "codePostal": "55130", - "codeCommune": "55150", - "libelleAcheminement": "DEMANGE BAUDIGNECOURT", - "nomCommune": "DEMANGE BAUDIGNECOURT" + "codePostal": "51800", + "codeCommune": "51336", + "libelleAcheminement": "MAFFRECOURT", + "nomCommune": "MAFFRECOURT" }, { - "codePostal": "31450", - "codeCommune": "31366", - "libelleAcheminement": "MONTBRUN LAURAGAIS", - "nomCommune": "MONTBRUN LAURAGAIS" + "codePostal": "60127", + "codeCommune": "60260", + "libelleAcheminement": "FRESNOY LA RIVIERE", + "nomCommune": "FRESNOY LA RIVIERE" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "03500", + "codeCommune": "03038", + "libelleAcheminement": "BRANSAT", + "nomCommune": "BRANSAT" }, { - "codePostal": "42140", - "codeCommune": "42100", - "libelleAcheminement": "LA GIMOND", - "nomCommune": "LA GIMOND" + "codePostal": "60370", + "codeCommune": "60065", + "libelleAcheminement": "BERTHECOURT", + "nomCommune": "BERTHECOURT" }, { - "codePostal": "55400", - "codeCommune": "55153", - "libelleAcheminement": "DIEPPE SOUS DOUAUMONT", - "nomCommune": "DIEPPE SOUS DOUAUMONT" + "codePostal": "50800", + "codeCommune": "50048", + "libelleAcheminement": "BESLON", + "nomCommune": "BESLON" }, { - "codePostal": "31260", - "codeCommune": "31376", - "libelleAcheminement": "MONTGAILLARD DE SALIES", - "nomCommune": "MONTGAILLARD DE SALIES" + "codePostal": "51170", + "codeCommune": "51337", + "libelleAcheminement": "MAGNEUX", + "nomCommune": "MAGNEUX" }, { - "codePostal": "27370", - "codeCommune": "27053", - "libelleAcheminement": "LE BEC THOMAS", - "nomCommune": "LE BEC THOMAS" + "codePostal": "60120", + "codeCommune": "60268", + "libelleAcheminement": "GANNES", + "nomCommune": "GANNES" }, { - "codePostal": "42260", - "codeCommune": "42106", - "libelleAcheminement": "GREZOLLES", - "nomCommune": "GREZOLLES" + "codePostal": "03210", + "codeCommune": "03039", + "libelleAcheminement": "BRESNAY", + "nomCommune": "BRESNAY" }, { - "codePostal": "55240", - "codeCommune": "55182", - "libelleAcheminement": "ETON", - "nomCommune": "ETON" + "codePostal": "60650", + "codeCommune": "60073", + "libelleAcheminement": "BLACOURT", + "nomCommune": "BLACOURT" }, { - "codePostal": "31450", - "codeCommune": "31381", - "libelleAcheminement": "MONTGISCARD", - "nomCommune": "MONTGISCARD" + "codePostal": "50560", + "codeCommune": "50058", + "libelleAcheminement": "BLAINVILLE SUR MER", + "nomCommune": "BLAINVILLE SUR MER" }, { - "codePostal": "27700", - "codeCommune": "27058", - "libelleAcheminement": "LES TROIS LACS", - "nomCommune": "LES TROIS LACS" + "codePostal": "51800", + "codeCommune": "51341", + "libelleAcheminement": "MALMY", + "nomCommune": "MALMY" }, { - "codePostal": "42660", - "codeCommune": "42115", - "libelleAcheminement": "JONZIEUX", - "nomCommune": "JONZIEUX" + "codePostal": "60210", + "codeCommune": "60269", + "libelleAcheminement": "GAUDECHART", + "nomCommune": "GAUDECHART" }, { - "codePostal": "55150", - "codeCommune": "55183", - "libelleAcheminement": "ETRAYE", - "nomCommune": "ETRAYE" + "codePostal": "03270", + "codeCommune": "03045", + "libelleAcheminement": "BUSSET", + "nomCommune": "BUSSET" }, { - "codePostal": "31460", - "codeCommune": "31392", - "libelleAcheminement": "MOURVILLES BASSES", - "nomCommune": "MOURVILLES BASSES" + "codePostal": "60123", + "codeCommune": "60083", + "libelleAcheminement": "BONNEUIL EN VALOIS", + "nomCommune": "BONNEUIL EN VALOIS" }, { - "codePostal": "27330", - "codeCommune": "27068", - "libelleAcheminement": "BOIS ANZERAY", - "nomCommune": "BOIS ANZERAY" + "codePostal": "50480", + "codeCommune": "50059", + "libelleAcheminement": "BLOSVILLE", + "nomCommune": "BLOSVILLE" }, { - "codePostal": "42600", - "codeCommune": "42121", - "libelleAcheminement": "LERIGNEUX", - "nomCommune": "LERIGNEUX" + "codePostal": "51210", + "codeCommune": "51380", + "libelleAcheminement": "MONTMIRAIL", + "nomCommune": "MONTMIRAIL" }, { - "codePostal": "55200", - "codeCommune": "55184", - "libelleAcheminement": "EUVILLE", - "nomCommune": "EUVILLE" + "codePostal": "60117", + "codeCommune": "60279", + "libelleAcheminement": "GONDREVILLE", + "nomCommune": "GONDREVILLE" }, { - "codePostal": "31110", - "codeCommune": "31394", - "libelleAcheminement": "MOUSTAJON", - "nomCommune": "MOUSTAJON" + "codePostal": "03140", + "codeCommune": "03059", + "libelleAcheminement": "CHAREIL CINTRAT", + "nomCommune": "CHAREIL CINTRAT" }, { - "codePostal": "27260", - "codeCommune": "27071", - "libelleAcheminement": "LE BOIS HELLAIN", - "nomCommune": "LE BOIS HELLAIN" + "codePostal": "60300", + "codeCommune": "60087", + "libelleAcheminement": "BOREST", + "nomCommune": "BOREST" }, { - "codePostal": "42260", - "codeCommune": "42125", - "libelleAcheminement": "LURE", - "nomCommune": "LURE" + "codePostal": "50610", + "codeCommune": "50066", + "libelleAcheminement": "JULLOUVILLE", + "nomCommune": "JULLOUVILLE" }, { - "codePostal": "55200", - "codeCommune": "55184", - "libelleAcheminement": "EUVILLE", - "nomCommune": "EUVILLE" + "codePostal": "51270", + "codeCommune": "51381", + "libelleAcheminement": "MONTMORT LUCY", + "nomCommune": "MONTMORT LUCY" }, { - "codePostal": "31110", - "codeCommune": "31404", - "libelleAcheminement": "OO", - "nomCommune": "OO" + "codePostal": "60270", + "codeCommune": "60282", + "libelleAcheminement": "GOUVIEUX", + "nomCommune": "GOUVIEUX" }, { - "codePostal": "27120", - "codeCommune": "27076", - "libelleAcheminement": "BOISSET LES PREVANCHES", - "nomCommune": "BOISSET LES PREVANCHES" + "codePostal": "03510", + "codeCommune": "03063", + "libelleAcheminement": "CHASSENARD", + "nomCommune": "CHASSENARD" }, { - "codePostal": "42300", - "codeCommune": "42127", - "libelleAcheminement": "MABLY", - "nomCommune": "MABLY" + "codePostal": "60540", + "codeCommune": "60088", + "libelleAcheminement": "BORNEL", + "nomCommune": "BORNEL" }, { - "codePostal": "55400", - "codeCommune": "55191", - "libelleAcheminement": "FOAMEIX ORNEL", - "nomCommune": "FOAMEIX ORNEL" + "codePostal": "50290", + "codeCommune": "50076", + "libelleAcheminement": "BREHAL", + "nomCommune": "BREHAL" }, { - "codePostal": "31320", - "codeCommune": "31411", - "libelleAcheminement": "PECHBUSQUE", - "nomCommune": "PECHBUSQUE" + "codePostal": "51270", + "codeCommune": "51381", + "libelleAcheminement": "MONTMORT LUCY", + "nomCommune": "MONTMORT LUCY" }, { - "codePostal": "27300", - "codeCommune": "27079", - "libelleAcheminement": "BOISSY LAMBERVILLE", - "nomCommune": "BOISSY LAMBERVILLE" + "codePostal": "60210", + "codeCommune": "60286", + "libelleAcheminement": "GRANDVILLIERS", + "nomCommune": "GRANDVILLIERS" }, { - "codePostal": "42600", - "codeCommune": "42130", - "libelleAcheminement": "MAGNEUX HAUTE RIVE", - "nomCommune": "MAGNEUX HAUTE RIVE" + "codePostal": "03500", + "codeCommune": "03065", + "libelleAcheminement": "CHATEL DE NEUVRE", + "nomCommune": "CHATEL DE NEUVRE" }, { - "codePostal": "55200", - "codeCommune": "55212", - "libelleAcheminement": "GIRAUVOISIN", - "nomCommune": "GIRAUVOISIN" + "codePostal": "60400", + "codeCommune": "60105", + "libelleAcheminement": "BRETIGNY", + "nomCommune": "BRETIGNY" }, { - "codePostal": "31220", - "codeCommune": "31425", - "libelleAcheminement": "LE PLAN", - "nomCommune": "LE PLAN" + "codePostal": "50290", + "codeCommune": "50076", + "libelleAcheminement": "BREHAL", + "nomCommune": "BREHAL" }, { - "codePostal": "27310", - "codeCommune": "27085", - "libelleAcheminement": "FLANCOURT CRESCY EN ROUMOIS", - "nomCommune": "FLANCOURT CRESCY EN ROUMOIS" + "codePostal": "51530", + "codeCommune": "51387", + "libelleAcheminement": "MOSLINS", + "nomCommune": "MOSLINS" }, { - "codePostal": "42750", - "codeCommune": "42131", - "libelleAcheminement": "MAIZILLY", - "nomCommune": "MAIZILLY" + "codePostal": "60400", + "codeCommune": "60287", + "libelleAcheminement": "GRANDRU", + "nomCommune": "GRANDRU" }, { - "codePostal": "55500", - "codeCommune": "55214", - "libelleAcheminement": "GIVRAUVAL", - "nomCommune": "GIVRAUVAL" + "codePostal": "03370", + "codeCommune": "03072", + "libelleAcheminement": "CHAZEMAIS", + "nomCommune": "CHAZEMAIS" }, { - "codePostal": "31450", - "codeCommune": "31429", - "libelleAcheminement": "POMPERTUZAT", - "nomCommune": "POMPERTUZAT" + "codePostal": "60290", + "codeCommune": "60120", + "libelleAcheminement": "CAMBRONNE LES CLERMONT", + "nomCommune": "CAMBRONNE LES CLERMONT" }, { - "codePostal": "27310", - "codeCommune": "27085", - "libelleAcheminement": "FLANCOURT CRESCY EN ROUMOIS", - "nomCommune": "FLANCOURT CRESCY EN ROUMOIS" + "codePostal": "50430", + "codeCommune": "50078", + "libelleAcheminement": "BRETTEVILLE SUR AY", + "nomCommune": "BRETTEVILLE SUR AY" }, { - "codePostal": "42210", - "codeCommune": "42135", - "libelleAcheminement": "MARCLOPT", - "nomCommune": "MARCLOPT" + "codePostal": "51400", + "codeCommune": "51388", + "libelleAcheminement": "MOURMELON LE GRAND", + "nomCommune": "MOURMELON LE GRAND" }, { - "codePostal": "55500", - "codeCommune": "55220", - "libelleAcheminement": "GRIMAUCOURT PRES SAMPIGNY", - "nomCommune": "GRIMAUCOURT PRES SAMPIGNY" + "codePostal": "60210", + "codeCommune": "60289", + "libelleAcheminement": "GREZ", + "nomCommune": "GREZ" }, { - "codePostal": "31160", - "codeCommune": "31431", - "libelleAcheminement": "PORTET D ASPET", - "nomCommune": "PORTET D ASPET" + "codePostal": "03600", + "codeCommune": "03081", + "libelleAcheminement": "COLOMBIER", + "nomCommune": "COLOMBIER" }, { - "codePostal": "27290", - "codeCommune": "27089", - "libelleAcheminement": "THENOUVILLE", - "nomCommune": "THENOUVILLE" + "codePostal": "60640", + "codeCommune": "60121", + "libelleAcheminement": "CAMPAGNE", + "nomCommune": "CAMPAGNE" }, { - "codePostal": "42560", - "codeCommune": "42140", - "libelleAcheminement": "MAROLS", - "nomCommune": "MAROLS" + "codePostal": "50260", + "codeCommune": "50079", + "libelleAcheminement": "BREUVILLE", + "nomCommune": "BREUVILLE" }, { - "codePostal": "55300", - "codeCommune": "55229", - "libelleAcheminement": "HAN SUR MEUSE", - "nomCommune": "HAN SUR MEUSE" + "codePostal": "51400", + "codeCommune": "51389", + "libelleAcheminement": "MOURMELON LE PETIT", + "nomCommune": "MOURMELON LE PETIT" }, { - "codePostal": "31460", - "codeCommune": "31441", - "libelleAcheminement": "PRUNET", - "nomCommune": "PRUNET" + "codePostal": "60210", + "codeCommune": "60295", + "libelleAcheminement": "HALLOY", + "nomCommune": "HALLOY" }, { - "codePostal": "27520", - "codeCommune": "27089", - "libelleAcheminement": "THENOUVILLE", - "nomCommune": "THENOUVILLE" + "codePostal": "03370", + "codeCommune": "03088", + "libelleAcheminement": "COURCAIS", + "nomCommune": "COURCAIS" }, { - "codePostal": "42380", - "codeCommune": "42142", - "libelleAcheminement": "MERLE LEIGNEC", - "nomCommune": "MERLE LEIGNEC" + "codePostal": "60730", + "codeCommune": "60135", + "libelleAcheminement": "CAUVIGNY", + "nomCommune": "CAUVIGNY" }, { - "codePostal": "55100", - "codeCommune": "55239", - "libelleAcheminement": "HAUMONT PRES SAMOGNEUX", - "nomCommune": "HAUMONT PRES SAMOGNEUX" + "codePostal": "50330", + "codeCommune": "50086", + "libelleAcheminement": "BRILLEVAST", + "nomCommune": "BRILLEVAST" }, { - "codePostal": "31190", - "codeCommune": "31442", - "libelleAcheminement": "PUYDANIEL", - "nomCommune": "PUYDANIEL" + "codePostal": "51420", + "codeCommune": "51403", + "libelleAcheminement": "NOGENT L ABBESSE", + "nomCommune": "NOGENT L ABBESSE" }, { - "codePostal": "27310", - "codeCommune": "27091", - "libelleAcheminement": "BOSGOUET", - "nomCommune": "BOSGOUET" + "codePostal": "60190", + "codeCommune": "60308", + "libelleAcheminement": "HEMEVILLERS", + "nomCommune": "HEMEVILLERS" }, { - "codePostal": "42840", - "codeCommune": "42145", - "libelleAcheminement": "MONTAGNY", - "nomCommune": "MONTAGNY" + "codePostal": "03330", + "codeCommune": "03089", + "libelleAcheminement": "COUTANSOUZE", + "nomCommune": "COUTANSOUZE" }, { - "codePostal": "55400", - "codeCommune": "55244", - "libelleAcheminement": "HERMEVILLE EN WOEVRE", - "nomCommune": "HERMEVILLE EN WOEVRE" + "codePostal": "60240", + "codeCommune": "60143", + "libelleAcheminement": "CHAUMONT EN VEXIN", + "nomCommune": "CHAUMONT EN VEXIN" }, { - "codePostal": "31370", - "codeCommune": "31454", - "libelleAcheminement": "RIEUMES", - "nomCommune": "RIEUMES" + "codePostal": "50150", + "codeCommune": "50088", + "libelleAcheminement": "BROUAINS", + "nomCommune": "BROUAINS" }, { - "codePostal": "27800", - "codeCommune": "27095", - "libelleAcheminement": "BOSROBERT", - "nomCommune": "BOSROBERT" + "codePostal": "51300", + "codeCommune": "51406", + "libelleAcheminement": "NORROIS", + "nomCommune": "NORROIS" }, { - "codePostal": "42600", - "codeCommune": "42147", - "libelleAcheminement": "MONTBRISON", - "nomCommune": "MONTBRISON" + "codePostal": "60360", + "codeCommune": "60314", + "libelleAcheminement": "HETOMESNIL", + "nomCommune": "HETOMESNIL" }, { - "codePostal": "55210", - "codeCommune": "55245", - "libelleAcheminement": "HEUDICOURT SOUS LES COTES", - "nomCommune": "HEUDICOURT SOUS LES COTES" + "codePostal": "03160", + "codeCommune": "03090", + "libelleAcheminement": "COUZON", + "nomCommune": "COUZON" }, { - "codePostal": "31120", - "codeCommune": "31458", - "libelleAcheminement": "ROQUES", - "nomCommune": "ROQUES" + "codePostal": "60710", + "codeCommune": "60149", + "libelleAcheminement": "CHEVRIERES", + "nomCommune": "CHEVRIERES" }, { - "codePostal": "27250", - "codeCommune": "27096", - "libelleAcheminement": "LES BOTTEREAUX", - "nomCommune": "LES BOTTEREAUX" + "codePostal": "50200", + "codeCommune": "50092", + "libelleAcheminement": "CAMBERNON", + "nomCommune": "CAMBERNON" }, { - "codePostal": "42210", - "codeCommune": "42149", - "libelleAcheminement": "MONTROND LES BAINS", - "nomCommune": "MONTROND LES BAINS" + "codePostal": "51310", + "codeCommune": "51407", + "libelleAcheminement": "LA NOUE", + "nomCommune": "LA NOUE" }, { - "codePostal": "55220", - "codeCommune": "55251", - "libelleAcheminement": "IPPECOURT", - "nomCommune": "IPPECOURT" + "codePostal": "60350", + "codeCommune": "60324", + "libelleAcheminement": "JAULZY", + "nomCommune": "JAULZY" }, { - "codePostal": "31180", - "codeCommune": "31462", - "libelleAcheminement": "ROUFFIAC TOLOSAN", - "nomCommune": "ROUFFIAC TOLOSAN" + "codePostal": "03240", + "codeCommune": "03092", + "libelleAcheminement": "CRESSANGES", + "nomCommune": "CRESSANGES" }, { - "codePostal": "27500", - "codeCommune": "27101", - "libelleAcheminement": "BOUQUELON", - "nomCommune": "BOUQUELON" + "codePostal": "60940", + "codeCommune": "60154", + "libelleAcheminement": "CINQUEUX", + "nomCommune": "CINQUEUX" }, { - "codePostal": "42600", - "codeCommune": "42151", - "libelleAcheminement": "MORNAND EN FOREZ", - "nomCommune": "MORNAND EN FOREZ" + "codePostal": "50210", + "codeCommune": "50094", + "libelleAcheminement": "CAMPROND", + "nomCommune": "CAMPROND" }, { - "codePostal": "55600", - "codeCommune": "55252", - "libelleAcheminement": "IRE LE SEC", - "nomCommune": "IRE LE SEC" + "codePostal": "51480", + "codeCommune": "51410", + "libelleAcheminement": "OEUILLY", + "nomCommune": "OEUILLY" }, { - "codePostal": "31600", - "codeCommune": "31475", - "libelleAcheminement": "ST CLAR DE RIVIERE", - "nomCommune": "ST CLAR DE RIVIERE" + "codePostal": "60600", + "codeCommune": "60345", + "libelleAcheminement": "LAMECOURT", + "nomCommune": "LAMECOURT" }, { - "codePostal": "27520", - "codeCommune": "27105", - "libelleAcheminement": "GRAND BOURGTHEROULDE", - "nomCommune": "GRAND BOURGTHEROULDE" + "codePostal": "03300", + "codeCommune": "03093", + "libelleAcheminement": "CREUZIER LE NEUF", + "nomCommune": "CREUZIER LE NEUF" }, { - "codePostal": "42260", - "codeCommune": "42160", - "libelleAcheminement": "NOLLIEUX", - "nomCommune": "NOLLIEUX" + "codePostal": "60280", + "codeCommune": "60156", + "libelleAcheminement": "CLAIROIX", + "nomCommune": "CLAIROIX" }, { - "codePostal": "55220", - "codeCommune": "55254", - "libelleAcheminement": "LES TROIS DOMAINES", - "nomCommune": "LES TROIS DOMAINES" + "codePostal": "50580", + "codeCommune": "50097", + "libelleAcheminement": "CANVILLE LA ROCQUE", + "nomCommune": "CANVILLE LA ROCQUE" }, { - "codePostal": "31570", - "codeCommune": "31480", - "libelleAcheminement": "STE FOY D AIGREFEUILLE", - "nomCommune": "STE FOY D AIGREFEUILLE" + "codePostal": "51340", + "codeCommune": "51423", + "libelleAcheminement": "PARGNY SUR SAULX", + "nomCommune": "PARGNY SUR SAULX" }, { - "codePostal": "27520", - "codeCommune": "27105", - "libelleAcheminement": "GRAND BOURGTHEROULDE", - "nomCommune": "GRAND BOURGTHEROULDE" + "codePostal": "60400", + "codeCommune": "60348", + "libelleAcheminement": "LARBROYE", + "nomCommune": "LARBROYE" }, { - "codePostal": "42120", - "codeCommune": "42170", - "libelleAcheminement": "PERREUX", - "nomCommune": "PERREUX" + "codePostal": "03170", + "codeCommune": "03104", + "libelleAcheminement": "DOYET", + "nomCommune": "DOYET" }, { - "codePostal": "55160", - "codeCommune": "55256", - "libelleAcheminement": "JONVILLE EN WOEVRE", - "nomCommune": "JONVILLE EN WOEVRE" + "codePostal": "60420", + "codeCommune": "60158", + "libelleAcheminement": "COIVREL", + "nomCommune": "COIVREL" }, { - "codePostal": "31230", - "codeCommune": "31482", - "libelleAcheminement": "ST FRAJOU", - "nomCommune": "ST FRAJOU" + "codePostal": "50480", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "27500", - "codeCommune": "27107", - "libelleAcheminement": "BOURNEVILLE STE CROIX", - "nomCommune": "BOURNEVILLE STE CROIX" + "codePostal": "51140", + "codeCommune": "51429", + "libelleAcheminement": "PEVY", + "nomCommune": "PEVY" }, { - "codePostal": "42660", - "codeCommune": "42172", - "libelleAcheminement": "PLANFOY", - "nomCommune": "PLANFOY" + "codePostal": "60310", + "codeCommune": "60350", + "libelleAcheminement": "LASSIGNY", + "nomCommune": "LASSIGNY" }, { - "codePostal": "55200", - "codeCommune": "55258", - "libelleAcheminement": "GEVILLE", - "nomCommune": "GEVILLE" + "codePostal": "03110", + "codeCommune": "03110", + "libelleAcheminement": "ESPINASSE VOZELLE", + "nomCommune": "ESPINASSE VOZELLE" }, { - "codePostal": "31790", - "codeCommune": "31490", - "libelleAcheminement": "ST JORY", - "nomCommune": "ST JORY" + "codePostal": "60120", + "codeCommune": "60163", + "libelleAcheminement": "CORMEILLES", + "nomCommune": "CORMEILLES" }, { - "codePostal": "27500", - "codeCommune": "27107", - "libelleAcheminement": "BOURNEVILLE STE CROIX", - "nomCommune": "BOURNEVILLE STE CROIX" + "codePostal": "50740", + "codeCommune": "50102", + "libelleAcheminement": "CAROLLES", + "nomCommune": "CAROLLES" }, { - "codePostal": "42630", - "codeCommune": "42178", - "libelleAcheminement": "PRADINES", - "nomCommune": "PRADINES" + "codePostal": "51150", + "codeCommune": "51434", + "libelleAcheminement": "PLIVOT", + "nomCommune": "PLIVOT" }, { - "codePostal": "55170", - "codeCommune": "55261", - "libelleAcheminement": "JUVIGNY EN PERTHOIS", - "nomCommune": "JUVIGNY EN PERTHOIS" + "codePostal": "60240", + "codeCommune": "60352", + "libelleAcheminement": "LATTAINVILLE", + "nomCommune": "LATTAINVILLE" }, { - "codePostal": "31230", - "codeCommune": "31494", - "libelleAcheminement": "ST LAURENT", - "nomCommune": "ST LAURENT" + "codePostal": "03340", + "codeCommune": "03114", + "libelleAcheminement": "LA FERTE HAUTERIVE", + "nomCommune": "LA FERTE HAUTERIVE" }, { - "codePostal": "27170", - "codeCommune": "27109", - "libelleAcheminement": "BRAY", - "nomCommune": "BRAY" + "codePostal": "60350", + "codeCommune": "60171", + "libelleAcheminement": "COURTIEUX", + "nomCommune": "COURTIEUX" }, { - "codePostal": "42600", - "codeCommune": "42179", - "libelleAcheminement": "PRALONG", - "nomCommune": "PRALONG" + "codePostal": "50210", + "codeCommune": "50111", + "libelleAcheminement": "CERISY LA SALLE", + "nomCommune": "CERISY LA SALLE" }, { - "codePostal": "55600", - "codeCommune": "55262", - "libelleAcheminement": "JUVIGNY SUR LOISON", - "nomCommune": "JUVIGNY SUR LOISON" + "codePostal": "51490", + "codeCommune": "51440", + "libelleAcheminement": "PONTFAVERGER MORONVILLIERS", + "nomCommune": "PONTFAVERGER MORONVILLIERS" }, { - "codePostal": "31360", - "codeCommune": "31504", - "libelleAcheminement": "ST MEDARD", - "nomCommune": "ST MEDARD" + "codePostal": "60640", + "codeCommune": "60362", + "libelleAcheminement": "LIBERMONT", + "nomCommune": "LIBERMONT" }, { - "codePostal": "27640", - "codeCommune": "27114", - "libelleAcheminement": "BREUILPONT", - "nomCommune": "BREUILPONT" + "codePostal": "03140", + "codeCommune": "03116", + "libelleAcheminement": "FOURILLES", + "nomCommune": "FOURILLES" }, { - "codePostal": "42150", - "codeCommune": "42183", - "libelleAcheminement": "LA RICAMARIE", - "nomCommune": "LA RICAMARIE" + "codePostal": "60800", + "codeCommune": "60176", + "libelleAcheminement": "CREPY EN VALOIS", + "nomCommune": "CREPY EN VALOIS" }, { - "codePostal": "55400", - "codeCommune": "55280", - "libelleAcheminement": "LANHERES", - "nomCommune": "LANHERES" + "codePostal": "50530", + "codeCommune": "50117", + "libelleAcheminement": "CHAMPEAUX", + "nomCommune": "CHAMPEAUX" }, { - "codePostal": "31650", - "codeCommune": "31506", - "libelleAcheminement": "ST ORENS DE GAMEVILLE", - "nomCommune": "ST ORENS DE GAMEVILLE" + "codePostal": "51140", + "codeCommune": "51448", + "libelleAcheminement": "PROUILLY", + "nomCommune": "PROUILLY" }, { - "codePostal": "27730", - "codeCommune": "27119", - "libelleAcheminement": "BUEIL", - "nomCommune": "BUEIL" + "codePostal": "60510", + "codeCommune": "60366", + "libelleAcheminement": "LITZ", + "nomCommune": "LITZ" }, { - "codePostal": "42300", - "codeCommune": "42187", - "libelleAcheminement": "ROANNE", - "nomCommune": "ROANNE" + "codePostal": "03250", + "codeCommune": "03125", + "libelleAcheminement": "LA GUILLERMIE", + "nomCommune": "LA GUILLERMIE" }, { - "codePostal": "55260", - "codeCommune": "55290", - "libelleAcheminement": "LIGNIERES SUR AIRE", - "nomCommune": "LIGNIERES SUR AIRE" + "codePostal": "60360", + "codeCommune": "60178", + "libelleAcheminement": "CREVECOEUR LE GRAND", + "nomCommune": "CREVECOEUR LE GRAND" }, { - "codePostal": "31530", - "codeCommune": "31507", - "libelleAcheminement": "ST PAUL SUR SAVE", - "nomCommune": "ST PAUL SUR SAVE" + "codePostal": "50800", + "codeCommune": "50118", + "libelleAcheminement": "CHAMPREPUS", + "nomCommune": "CHAMPREPUS" }, { - "codePostal": "27300", - "codeCommune": "27129", - "libelleAcheminement": "CAORCHES ST NICOLAS", - "nomCommune": "CAORCHES ST NICOLAS" + "codePostal": "51390", + "codeCommune": "51468", + "libelleAcheminement": "ROSNAY", + "nomCommune": "ROSNAY" }, { - "codePostal": "42300", - "codeCommune": "42187", - "libelleAcheminement": "ROANNE", - "nomCommune": "ROANNE" + "codePostal": "60420", + "codeCommune": "60374", + "libelleAcheminement": "MAIGNELAY MONTIGNY", + "nomCommune": "MAIGNELAY MONTIGNY" }, { - "codePostal": "55500", - "codeCommune": "55291", - "libelleAcheminement": "LIGNY EN BARROIS", - "nomCommune": "LIGNY EN BARROIS" + "codePostal": "03130", + "codeCommune": "03142", + "libelleAcheminement": "LENAX", + "nomCommune": "LENAX" }, { - "codePostal": "31580", - "codeCommune": "31513", - "libelleAcheminement": "ST PLANCARD", - "nomCommune": "ST PLANCARD" + "codePostal": "60120", + "codeCommune": "60182", + "libelleAcheminement": "LE CROCQ", + "nomCommune": "LE CROCQ" }, { - "codePostal": "27350", - "codeCommune": "27134", - "libelleAcheminement": "CAUVERVILLE EN ROUMOIS", - "nomCommune": "CAUVERVILLE EN ROUMOIS" + "codePostal": "50130", + "codeCommune": "50129", + "libelleAcheminement": "CHERBOURG EN COTENTIN", + "nomCommune": "CHERBOURG EN COTENTIN" }, { - "codePostal": "42310", - "codeCommune": "42194", - "libelleAcheminement": "SAIL LES BAINS", - "nomCommune": "SAIL LES BAINS" + "codePostal": "51700", + "codeCommune": "51480", + "libelleAcheminement": "STE GEMME", + "nomCommune": "STE GEMME" }, { - "codePostal": "55110", - "codeCommune": "55293", - "libelleAcheminement": "LION DEVANT DUN", - "nomCommune": "LION DEVANT DUN" + "codePostal": "60112", + "codeCommune": "60376", + "libelleAcheminement": "MAISONCELLE ST PIERRE", + "nomCommune": "MAISONCELLE ST PIERRE" }, { - "codePostal": "31620", - "codeCommune": "31515", - "libelleAcheminement": "ST RUSTICE", - "nomCommune": "ST RUSTICE" + "codePostal": "03410", + "codeCommune": "03145", + "libelleAcheminement": "LIGNEROLLES", + "nomCommune": "LIGNEROLLES" }, { - "codePostal": "27110", - "codeCommune": "27135", - "libelleAcheminement": "CESSEVILLE", - "nomCommune": "CESSEVILLE" + "codePostal": "60120", + "codeCommune": "60183", + "libelleAcheminement": "CROISSY SUR CELLE", + "nomCommune": "CROISSY SUR CELLE" }, { - "codePostal": "42890", - "codeCommune": "42195", - "libelleAcheminement": "SAIL SOUS COUZAN", - "nomCommune": "SAIL SOUS COUZAN" + "codePostal": "50130", + "codeCommune": "50129", + "libelleAcheminement": "CHERBOURG EN COTENTIN", + "nomCommune": "CHERBOURG EN COTENTIN" }, { - "codePostal": "55000", - "codeCommune": "55302", - "libelleAcheminement": "LONGEVILLE EN BARROIS", - "nomCommune": "LONGEVILLE EN BARROIS" + "codePostal": "51170", + "codeCommune": "51484", + "libelleAcheminement": "ST GILLES", + "nomCommune": "ST GILLES" }, { - "codePostal": "31290", - "codeCommune": "31519", - "libelleAcheminement": "ST VINCENT", - "nomCommune": "ST VINCENT" + "codePostal": "60490", + "codeCommune": "60378", + "libelleAcheminement": "MAREST SUR MATZ", + "nomCommune": "MAREST SUR MATZ" }, { - "codePostal": "27120", - "codeCommune": "27136", - "libelleAcheminement": "CHAIGNES", - "nomCommune": "CHAIGNES" + "codePostal": "03500", + "codeCommune": "03148", + "libelleAcheminement": "LORIGES", + "nomCommune": "LORIGES" }, { - "codePostal": "42310", - "codeCommune": "42203", - "libelleAcheminement": "ST BONNET DES QUARTS", - "nomCommune": "ST BONNET DES QUARTS" + "codePostal": "60130", + "codeCommune": "60186", + "libelleAcheminement": "CUIGNIERES", + "nomCommune": "CUIGNIERES" }, { - "codePostal": "55150", - "codeCommune": "55316", - "libelleAcheminement": "MANGIENNES", - "nomCommune": "MANGIENNES" + "codePostal": "50890", + "codeCommune": "50139", + "libelleAcheminement": "CONDE SUR VIRE", + "nomCommune": "CONDE SUR VIRE" }, { - "codePostal": "31880", - "codeCommune": "31526", - "libelleAcheminement": "LA SALVETAT ST GILLES", - "nomCommune": "LA SALVETAT ST GILLES" + "codePostal": "51160", + "codeCommune": "51488", + "libelleAcheminement": "ST IMOGES", + "nomCommune": "ST IMOGES" }, { - "codePostal": "27580", - "codeCommune": "27137", - "libelleAcheminement": "CHAISE DIEU DU THEIL", - "nomCommune": "CHAISE DIEU DU THEIL" + "codePostal": "60690", + "codeCommune": "60387", + "libelleAcheminement": "MARSEILLE EN BEAUVAISIS", + "nomCommune": "MARSEILLE EN BEAUVAISIS" }, { - "codePostal": "42400", - "codeCommune": "42207", - "libelleAcheminement": "ST CHAMOND", - "nomCommune": "ST CHAMOND" + "codePostal": "03130", + "codeCommune": "03154", + "libelleAcheminement": "LUNEAU", + "nomCommune": "LUNEAU" }, { - "codePostal": "55160", - "codeCommune": "55320", - "libelleAcheminement": "MARCHEVILLE EN WOEVRE", - "nomCommune": "MARCHEVILLE EN WOEVRE" + "codePostal": "60850", + "codeCommune": "60187", + "libelleAcheminement": "CUIGY EN BRAY", + "nomCommune": "CUIGY EN BRAY" }, { - "codePostal": "31460", - "codeCommune": "31527", - "libelleAcheminement": "LA SALVETAT LAURAGAIS", - "nomCommune": "LA SALVETAT LAURAGAIS" + "codePostal": "50330", + "codeCommune": "50142", + "libelleAcheminement": "VICQ SUR MER", + "nomCommune": "VICQ SUR MER" }, { - "codePostal": "27250", - "codeCommune": "27139", - "libelleAcheminement": "CHAMBORD", - "nomCommune": "CHAMBORD" + "codePostal": "51240", + "codeCommune": "51490", + "libelleAcheminement": "ST JEAN SUR MOIVRE", + "nomCommune": "ST JEAN SUR MOIVRE" }, { - "codePostal": "42800", - "codeCommune": "42210", - "libelleAcheminement": "STE CROIX EN JAREZ", - "nomCommune": "STE CROIX EN JAREZ" + "codePostal": "60420", + "codeCommune": "60394", + "libelleAcheminement": "MENEVILLERS", + "nomCommune": "MENEVILLERS" }, { - "codePostal": "55400", - "codeCommune": "55325", - "libelleAcheminement": "MAUCOURT SUR ORNE", - "nomCommune": "MAUCOURT SUR ORNE" + "codePostal": "03320", + "codeCommune": "03155", + "libelleAcheminement": "LURCY LEVIS", + "nomCommune": "LURCY LEVIS" }, { - "codePostal": "31350", - "codeCommune": "31528", - "libelleAcheminement": "SAMAN", - "nomCommune": "SAMAN" + "codePostal": "60210", + "codeCommune": "60194", + "libelleAcheminement": "DARGIES", + "nomCommune": "DARGIES" }, { - "codePostal": "27380", - "codeCommune": "27151", - "libelleAcheminement": "CHARLEVAL", - "nomCommune": "CHARLEVAL" + "codePostal": "50330", + "codeCommune": "50142", + "libelleAcheminement": "VICQ SUR MER", + "nomCommune": "VICQ SUR MER" }, { - "codePostal": "42114", - "codeCommune": "42213", - "libelleAcheminement": "ST CYR DE VALORGES", - "nomCommune": "ST CYR DE VALORGES" + "codePostal": "51240", + "codeCommune": "51502", + "libelleAcheminement": "ST MARTIN AUX CHAMPS", + "nomCommune": "ST MARTIN AUX CHAMPS" }, { - "codePostal": "55190", - "codeCommune": "55331", - "libelleAcheminement": "MELIGNY LE PETIT", - "nomCommune": "MELIGNY LE PETIT" + "codePostal": "60120", + "codeCommune": "60399", + "libelleAcheminement": "LE MESNIL ST FIRMIN", + "nomCommune": "LE MESNIL ST FIRMIN" }, { - "codePostal": "31420", - "codeCommune": "31529", - "libelleAcheminement": "SAMOUILLAN", - "nomCommune": "SAMOUILLAN" + "codePostal": "03260", + "codeCommune": "03157", + "libelleAcheminement": "MAGNET", + "nomCommune": "MAGNET" }, { - "codePostal": "27420", - "codeCommune": "27152", - "libelleAcheminement": "CHATEAU SUR EPTE", - "nomCommune": "CHATEAU SUR EPTE" + "codePostal": "60420", + "codeCommune": "60200", + "libelleAcheminement": "DOMFRONT", + "nomCommune": "DOMFRONT" }, { - "codePostal": "42140", - "codeCommune": "42216", - "libelleAcheminement": "ST DENIS SUR COISE", - "nomCommune": "ST DENIS SUR COISE" + "codePostal": "50330", + "codeCommune": "50142", + "libelleAcheminement": "VICQ SUR MER", + "nomCommune": "VICQ SUR MER" }, { - "codePostal": "55190", - "codeCommune": "55334", - "libelleAcheminement": "MENIL LA HORGNE", - "nomCommune": "MENIL LA HORGNE" + "codePostal": "51470", + "codeCommune": "51506", + "libelleAcheminement": "ST MEMMIE", + "nomCommune": "ST MEMMIE" }, { - "codePostal": "31350", - "codeCommune": "31531", - "libelleAcheminement": "SARRECAVE", - "nomCommune": "SARRECAVE" + "codePostal": "60130", + "codeCommune": "60400", + "libelleAcheminement": "LE MESNIL SUR BULLES", + "nomCommune": "LE MESNIL SUR BULLES" }, { - "codePostal": "27150", - "codeCommune": "27153", - "libelleAcheminement": "CHAUVINCOURT PROVEMONT", - "nomCommune": "CHAUVINCOURT PROVEMONT" + "codePostal": "03190", + "codeCommune": "03158", + "libelleAcheminement": "HAUT BOCAGE", + "nomCommune": "HAUT BOCAGE" }, { - "codePostal": "42100", - "codeCommune": "42218", - "libelleAcheminement": "ST ETIENNE", - "nomCommune": "ST ETIENNE" + "codePostal": "60220", + "codeCommune": "60219", + "libelleAcheminement": "ESCLES ST PIERRE", + "nomCommune": "ESCLES ST PIERRE" }, { - "codePostal": "55150", - "codeCommune": "55341", - "libelleAcheminement": "MOIREY FLABAS CREPION", - "nomCommune": "MOIREY FLABAS CREPION" + "codePostal": "50330", + "codeCommune": "50142", + "libelleAcheminement": "VICQ SUR MER", + "nomCommune": "VICQ SUR MER" }, { - "codePostal": "31160", - "codeCommune": "31544", - "libelleAcheminement": "SENGOUAGNET", - "nomCommune": "SENGOUAGNET" + "codePostal": "51300", + "codeCommune": "51510", + "libelleAcheminement": "ST QUENTIN LES MARAIS", + "nomCommune": "ST QUENTIN LES MARAIS" }, { - "codePostal": "27820", - "codeCommune": "27155", - "libelleAcheminement": "CHENNEBRUN", - "nomCommune": "CHENNEBRUN" + "codePostal": "60240", + "codeCommune": "60401", + "libelleAcheminement": "LE MESNIL THERIBUS", + "nomCommune": "LE MESNIL THERIBUS" }, { - "codePostal": "42100", - "codeCommune": "42218", - "libelleAcheminement": "ST ETIENNE", - "nomCommune": "ST ETIENNE" + "codePostal": "03260", + "codeCommune": "03160", + "libelleAcheminement": "MARCENAT", + "nomCommune": "MARCENAT" }, { - "codePostal": "55270", - "codeCommune": "55346", - "libelleAcheminement": "MONTFAUCON D ARGONNE", - "nomCommune": "MONTFAUCON D ARGONNE" + "codePostal": "60220", + "codeCommune": "60245", + "libelleAcheminement": "FORMERIE", + "nomCommune": "FORMERIE" }, { - "codePostal": "31110", - "codeCommune": "31549", - "libelleAcheminement": "SODE", - "nomCommune": "SODE" + "codePostal": "50220", + "codeCommune": "50146", + "libelleAcheminement": "COURTILS", + "nomCommune": "COURTILS" }, { - "codePostal": "27240", - "codeCommune": "27157", - "libelleAcheminement": "MARBOIS", - "nomCommune": "MARBOIS" + "codePostal": "51120", + "codeCommune": "51514", + "libelleAcheminement": "ST REMY SOUS BROYES", + "nomCommune": "ST REMY SOUS BROYES" }, { - "codePostal": "42530", - "codeCommune": "42223", - "libelleAcheminement": "ST GENEST LERPT", - "nomCommune": "ST GENEST LERPT" + "codePostal": "60880", + "codeCommune": "60402", + "libelleAcheminement": "LE MEUX", + "nomCommune": "LE MEUX" }, { - "codePostal": "55290", - "codeCommune": "55348", - "libelleAcheminement": "MONTIERS SUR SAULX", - "nomCommune": "MONTIERS SUR SAULX" + "codePostal": "03140", + "codeCommune": "03175", + "libelleAcheminement": "MONESTIER", + "nomCommune": "MONESTIER" }, { - "codePostal": "31480", - "codeCommune": "31577", - "libelleAcheminement": "VIGNAUX", - "nomCommune": "VIGNAUX" + "codePostal": "60250", + "codeCommune": "60249", + "libelleAcheminement": "FOULANGUES", + "nomCommune": "FOULANGUES" }, { - "codePostal": "27930", - "codeCommune": "27158", - "libelleAcheminement": "CIERREY", - "nomCommune": "CIERREY" + "codePostal": "50710", + "codeCommune": "50151", + "libelleAcheminement": "CREANCES", + "nomCommune": "CREANCES" }, { - "codePostal": "42610", - "codeCommune": "42228", - "libelleAcheminement": "ST GEORGES HAUTE VILLE", - "nomCommune": "ST GEORGES HAUTE VILLE" + "codePostal": "51170", + "codeCommune": "51527", + "libelleAcheminement": "SAVIGNY SUR ARDRES", + "nomCommune": "SAVIGNY SUR ARDRES" }, { - "codePostal": "55110", - "codeCommune": "55349", - "libelleAcheminement": "MONTIGNY DEVANT SASSEY", - "nomCommune": "MONTIGNY DEVANT SASSEY" + "codePostal": "60950", + "codeCommune": "60413", + "libelleAcheminement": "MONTAGNY STE FELICITE", + "nomCommune": "MONTAGNY STE FELICITE" }, { - "codePostal": "31340", - "codeCommune": "31583", - "libelleAcheminement": "VILLEMATIER", - "nomCommune": "VILLEMATIER" + "codePostal": "03500", + "codeCommune": "03176", + "libelleAcheminement": "MONETAY SUR ALLIER", + "nomCommune": "MONETAY SUR ALLIER" }, { - "codePostal": "27190", - "codeCommune": "27162", - "libelleAcheminement": "COLLANDRES QUINCARNON", - "nomCommune": "COLLANDRES QUINCARNON" + "codePostal": "60130", + "codeCommune": "60252", + "libelleAcheminement": "FOURNIVAL", + "nomCommune": "FOURNIVAL" }, { - "codePostal": "42370", - "codeCommune": "42232", - "libelleAcheminement": "ST HAON LE CHATEL", - "nomCommune": "ST HAON LE CHATEL" + "codePostal": "50370", + "codeCommune": "50152", + "libelleAcheminement": "LES CRESNAYS", + "nomCommune": "LES CRESNAYS" }, { - "codePostal": "55100", - "codeCommune": "55355", - "libelleAcheminement": "MONTZEVILLE", - "nomCommune": "MONTZEVILLE" + "codePostal": "51490", + "codeCommune": "51529", + "libelleAcheminement": "SELLES", + "nomCommune": "SELLES" }, { - "codePostal": "31340", - "codeCommune": "31584", - "libelleAcheminement": "VILLEMUR SUR TARN", - "nomCommune": "VILLEMUR SUR TARN" + "codePostal": "60160", + "codeCommune": "60414", + "libelleAcheminement": "MONTATAIRE", + "nomCommune": "MONTATAIRE" }, { - "codePostal": "27300", - "codeCommune": "27173", - "libelleAcheminement": "CORNEVILLE LA FOUQUETIERE", - "nomCommune": "CORNEVILLE LA FOUQUETIERE" + "codePostal": "03000", + "codeCommune": "03190", + "libelleAcheminement": "MOULINS", + "nomCommune": "MOULINS" }, { - "codePostal": "42650", - "codeCommune": "42237", - "libelleAcheminement": "ST JEAN BONNEFONDS", - "nomCommune": "ST JEAN BONNEFONDS" + "codePostal": "60190", + "codeCommune": "60254", + "libelleAcheminement": "FRANCIERES", + "nomCommune": "FRANCIERES" }, { - "codePostal": "55400", - "codeCommune": "55356", - "libelleAcheminement": "MORANVILLE", - "nomCommune": "MORANVILLE" + "codePostal": "50110", + "codeCommune": "50162", + "libelleAcheminement": "DIGOSVILLE", + "nomCommune": "DIGOSVILLE" }, { - "codePostal": "32290", - "codeCommune": "32001", - "libelleAcheminement": "AIGNAN", - "nomCommune": "AIGNAN" + "codePostal": "51250", + "codeCommune": "51531", + "libelleAcheminement": "SERMAIZE LES BAINS", + "nomCommune": "SERMAIZE LES BAINS" }, { - "codePostal": "27220", - "codeCommune": "27177", - "libelleAcheminement": "COUDRES", - "nomCommune": "COUDRES" + "codePostal": "60420", + "codeCommune": "60416", + "libelleAcheminement": "MONTGERAIN", + "nomCommune": "MONTGERAIN" }, { - "codePostal": "42155", - "codeCommune": "42239", - "libelleAcheminement": "ST JEAN ST MAURICE SUR LOIRE", - "nomCommune": "ST JEAN ST MAURICE SUR LOIRE" + "codePostal": "03000", + "codeCommune": "03200", + "libelleAcheminement": "NEUVY", + "nomCommune": "NEUVY" }, { - "codePostal": "55500", - "codeCommune": "55358", - "libelleAcheminement": "CHANTERAINE", - "nomCommune": "CHANTERAINE" + "codePostal": "60240", + "codeCommune": "60256", + "libelleAcheminement": "MONTCHEVREUIL", + "nomCommune": "MONTCHEVREUIL" }, { - "codePostal": "32140", - "codeCommune": "32010", - "libelleAcheminement": "ARROUEDE", - "nomCommune": "ARROUEDE" + "codePostal": "50420", + "codeCommune": "50164", + "libelleAcheminement": "DOMJEAN", + "nomCommune": "DOMJEAN" }, { - "codePostal": "27300", - "codeCommune": "27179", - "libelleAcheminement": "COURBEPINE", - "nomCommune": "COURBEPINE" + "codePostal": "51170", + "codeCommune": "51534", + "libelleAcheminement": "SERZY ET PRIN", + "nomCommune": "SERZY ET PRIN" }, { - "codePostal": "42800", - "codeCommune": "42242", - "libelleAcheminement": "ST JOSEPH", - "nomCommune": "ST JOSEPH" + "codePostal": "60150", + "codeCommune": "60423", + "libelleAcheminement": "MONTMACQ", + "nomCommune": "MONTMACQ" }, { - "codePostal": "55500", - "codeCommune": "55358", - "libelleAcheminement": "CHANTERAINE", - "nomCommune": "CHANTERAINE" + "codePostal": "03230", + "codeCommune": "03203", + "libelleAcheminement": "PARAY LE FRESIL", + "nomCommune": "PARAY LE FRESIL" }, { - "codePostal": "32000", - "codeCommune": "32013", - "libelleAcheminement": "AUCH", - "nomCommune": "AUCH" + "codePostal": "60240", + "codeCommune": "60257", + "libelleAcheminement": "FRESNE LEGUILLON", + "nomCommune": "FRESNE LEGUILLON" }, { - "codePostal": "27750", - "codeCommune": "27183", - "libelleAcheminement": "LA COUTURE BOUSSEY", - "nomCommune": "LA COUTURE BOUSSEY" + "codePostal": "50220", + "codeCommune": "50168", + "libelleAcheminement": "DUCEY LES CHERIS", + "nomCommune": "DUCEY LES CHERIS" }, { - "codePostal": "42130", - "codeCommune": "42252", - "libelleAcheminement": "ST LAURENT ROCHEFORT", - "nomCommune": "ST LAURENT ROCHEFORT" + "codePostal": "51600", + "codeCommune": "51546", + "libelleAcheminement": "SOMME SUIPPE", + "nomCommune": "SOMME SUIPPE" }, { - "codePostal": "55290", - "codeCommune": "55359", - "libelleAcheminement": "MORLEY", - "nomCommune": "MORLEY" + "codePostal": "60400", + "codeCommune": "60431", + "libelleAcheminement": "MORLINCOURT", + "nomCommune": "MORLINCOURT" }, { - "codePostal": "32450", - "codeCommune": "32018", - "libelleAcheminement": "AURIMONT", - "nomCommune": "AURIMONT" + "codePostal": "03470", + "codeCommune": "03207", + "libelleAcheminement": "PIERREFITTE SUR LOIRE", + "nomCommune": "PIERREFITTE SUR LOIRE" }, { - "codePostal": "27190", - "codeCommune": "27189", - "libelleAcheminement": "LA CROISILLE", - "nomCommune": "LA CROISILLE" + "codePostal": "60310", + "codeCommune": "60258", + "libelleAcheminement": "FRESNIERES", + "nomCommune": "FRESNIERES" }, { - "codePostal": "42590", - "codeCommune": "42277", - "libelleAcheminement": "ST PRIEST LA ROCHE", - "nomCommune": "ST PRIEST LA ROCHE" + "codePostal": "50310", + "codeCommune": "50169", + "libelleAcheminement": "ECAUSSEVILLE", + "nomCommune": "ECAUSSEVILLE" }, { - "codePostal": "55700", - "codeCommune": "55364", - "libelleAcheminement": "MOUZAY", - "nomCommune": "MOUZAY" + "codePostal": "51290", + "codeCommune": "51551", + "libelleAcheminement": "SOMSOIS", + "nomCommune": "SOMSOIS" }, { - "codePostal": "32190", - "codeCommune": "32031", - "libelleAcheminement": "BASCOUS", - "nomCommune": "BASCOUS" + "codePostal": "60570", + "codeCommune": "60433", + "libelleAcheminement": "MORTEFONTAINE EN THELLE", + "nomCommune": "MORTEFONTAINE EN THELLE" }, { - "codePostal": "27160", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "03130", + "codeCommune": "03208", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "42170", - "codeCommune": "42279", - "libelleAcheminement": "ST JUST ST RAMBERT", - "nomCommune": "ST JUST ST RAMBERT" + "codePostal": "60420", + "codeCommune": "60262", + "libelleAcheminement": "LE FRESTOY VAUX", + "nomCommune": "LE FRESTOY VAUX" }, { - "codePostal": "55500", - "codeCommune": "55374", - "libelleAcheminement": "NANT LE PETIT", - "nomCommune": "NANT LE PETIT" + "codePostal": "50310", + "codeCommune": "50172", + "libelleAcheminement": "EMONDEVILLE", + "nomCommune": "EMONDEVILLE" }, { - "codePostal": "32320", - "codeCommune": "32032", - "libelleAcheminement": "BASSOUES", - "nomCommune": "BASSOUES" + "codePostal": "51240", + "codeCommune": "51552", + "libelleAcheminement": "SONGY", + "nomCommune": "SONGY" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "60490", + "codeCommune": "60434", + "libelleAcheminement": "MORTEMER", + "nomCommune": "MORTEMER" }, { - "codePostal": "42430", - "codeCommune": "42282", - "libelleAcheminement": "ST ROMAIN D URFE", - "nomCommune": "ST ROMAIN D URFE" + "codePostal": "03150", + "codeCommune": "03215", + "libelleAcheminement": "RONGERES", + "nomCommune": "RONGERES" }, { - "codePostal": "55210", - "codeCommune": "55386", - "libelleAcheminement": "NONSARD LAMARCHE", - "nomCommune": "NONSARD LAMARCHE" + "codePostal": "60000", + "codeCommune": "60264", + "libelleAcheminement": "FROCOURT", + "nomCommune": "FROCOURT" }, { - "codePostal": "32410", - "codeCommune": "32035", - "libelleAcheminement": "BEAUCAIRE", - "nomCommune": "BEAUCAIRE" + "codePostal": "50310", + "codeCommune": "50175", + "libelleAcheminement": "EROUDEVILLE", + "nomCommune": "EROUDEVILLE" }, { - "codePostal": "27720", - "codeCommune": "27199", - "libelleAcheminement": "DANGU", - "nomCommune": "DANGU" + "codePostal": "51320", + "codeCommune": "51556", + "libelleAcheminement": "SOUDRON", + "nomCommune": "SOUDRON" }, { - "codePostal": "42640", - "codeCommune": "42284", - "libelleAcheminement": "ST ROMAIN LA MOTTE", - "nomCommune": "ST ROMAIN LA MOTTE" + "codePostal": "60250", + "codeCommune": "60439", + "libelleAcheminement": "MOUY", + "nomCommune": "MOUY" }, { - "codePostal": "55250", - "codeCommune": "55389", - "libelleAcheminement": "NUBECOURT", - "nomCommune": "NUBECOURT" + "codePostal": "03800", + "codeCommune": "03220", + "libelleAcheminement": "ST BONNET DE ROCHEFORT", + "nomCommune": "ST BONNET DE ROCHEFORT" }, { - "codePostal": "32300", - "codeCommune": "32042", - "libelleAcheminement": "BELLOC ST CLAMENS", - "nomCommune": "BELLOC ST CLAMENS" + "codePostal": "60400", + "codeCommune": "60270", + "libelleAcheminement": "GENVRY", + "nomCommune": "GENVRY" }, { - "codePostal": "27150", - "codeCommune": "27204", - "libelleAcheminement": "DOUDEAUVILLE EN VEXIN", - "nomCommune": "DOUDEAUVILLE EN VEXIN" + "codePostal": "50190", + "codeCommune": "50181", + "libelleAcheminement": "FEUGERES", + "nomCommune": "FEUGERES" }, { - "codePostal": "42630", - "codeCommune": "42293", - "libelleAcheminement": "ST VICTOR SUR RHINS", - "nomCommune": "ST VICTOR SUR RHINS" + "codePostal": "51430", + "codeCommune": "51573", + "libelleAcheminement": "TINQUEUX", + "nomCommune": "TINQUEUX" }, { - "codePostal": "55700", - "codeCommune": "55391", - "libelleAcheminement": "OLIZY SUR CHIERS", - "nomCommune": "OLIZY SUR CHIERS" + "codePostal": "60320", + "codeCommune": "60447", + "libelleAcheminement": "NERY", + "nomCommune": "NERY" }, { - "codePostal": "32230", - "codeCommune": "32058", - "libelleAcheminement": "BLOUSSON SERIAN", - "nomCommune": "BLOUSSON SERIAN" + "codePostal": "03360", + "codeCommune": "03221", + "libelleAcheminement": "ST BONNET TRONCAIS", + "nomCommune": "ST BONNET TRONCAIS" }, { - "codePostal": "27320", - "codeCommune": "27206", - "libelleAcheminement": "DROISY", - "nomCommune": "DROISY" + "codePostal": "60380", + "codeCommune": "60271", + "libelleAcheminement": "GERBEROY", + "nomCommune": "GERBEROY" }, { - "codePostal": "42460", - "codeCommune": "42300", - "libelleAcheminement": "SEVELINGES", - "nomCommune": "SEVELINGES" + "codePostal": "50340", + "codeCommune": "50184", + "libelleAcheminement": "FLAMANVILLE", + "nomCommune": "FLAMANVILLE" }, { - "codePostal": "55220", - "codeCommune": "55395", - "libelleAcheminement": "OSCHES", - "nomCommune": "OSCHES" + "codePostal": "51210", + "codeCommune": "51579", + "libelleAcheminement": "TREFOLS", + "nomCommune": "TREFOLS" }, { - "codePostal": "32370", - "codeCommune": "32062", - "libelleAcheminement": "BOURROUILLAN", - "nomCommune": "BOURROUILLAN" + "codePostal": "60530", + "codeCommune": "60450", + "libelleAcheminement": "NEUILLY EN THELLE", + "nomCommune": "NEUILLY EN THELLE" }, { - "codePostal": "27230", - "codeCommune": "27207", - "libelleAcheminement": "DRUCOURT", - "nomCommune": "DRUCOURT" + "codePostal": "03370", + "codeCommune": "03225", + "libelleAcheminement": "ST DESIRE", + "nomCommune": "ST DESIRE" }, { - "codePostal": "42740", - "codeCommune": "42308", - "libelleAcheminement": "LA TERRASSE SUR DORLAY", - "nomCommune": "LA TERRASSE SUR DORLAY" + "codePostal": "60640", + "codeCommune": "60278", + "libelleAcheminement": "GOLANCOURT", + "nomCommune": "GOLANCOURT" }, { - "codePostal": "55300", - "codeCommune": "55401", - "libelleAcheminement": "LES PAROCHES", - "nomCommune": "LES PAROCHES" + "codePostal": "50320", + "codeCommune": "50188", + "libelleAcheminement": "FOLLIGNY", + "nomCommune": "FOLLIGNY" }, { - "codePostal": "32190", - "codeCommune": "32071", - "libelleAcheminement": "CAILLAVET", - "nomCommune": "CAILLAVET" + "codePostal": "51380", + "codeCommune": "51580", + "libelleAcheminement": "TREPAIL", + "nomCommune": "TREPAIL" }, { - "codePostal": "27510", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "60119", + "codeCommune": "60452", + "libelleAcheminement": "NEUVILLE BOSC", + "nomCommune": "NEUVILLE BOSC" }, { - "codePostal": "42220", - "codeCommune": "42310", - "libelleAcheminement": "THELIS LA COMBE", - "nomCommune": "THELIS LA COMBE" + "codePostal": "03380", + "codeCommune": "03246", + "libelleAcheminement": "ST MARTINIEN", + "nomCommune": "ST MARTINIEN" }, { - "codePostal": "55700", - "codeCommune": "55408", - "libelleAcheminement": "POUILLY SUR MEUSE", - "nomCommune": "POUILLY SUR MEUSE" + "codePostal": "60220", + "codeCommune": "60280", + "libelleAcheminement": "GOURCHELLES", + "nomCommune": "GOURCHELLES" }, { - "codePostal": "32100", - "codeCommune": "32075", - "libelleAcheminement": "CASSAIGNE", - "nomCommune": "CASSAIGNE" + "codePostal": "50150", + "codeCommune": "50195", + "libelleAcheminement": "GATHEMO", + "nomCommune": "GATHEMO" }, { - "codePostal": "27630", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "51320", + "codeCommune": "51595", + "libelleAcheminement": "VATRY", + "nomCommune": "VATRY" }, { - "codePostal": "42580", - "codeCommune": "42311", - "libelleAcheminement": "LA TOUR EN JAREZ", - "nomCommune": "LA TOUR EN JAREZ" + "codePostal": "60480", + "codeCommune": "60465", + "libelleAcheminement": "NOIREMONT", + "nomCommune": "NOIREMONT" }, { - "codePostal": "55300", - "codeCommune": "55412", - "libelleAcheminement": "RAMBUCOURT", - "nomCommune": "RAMBUCOURT" + "codePostal": "03210", + "codeCommune": "03247", + "libelleAcheminement": "ST MENOUX", + "nomCommune": "ST MENOUX" }, { - "codePostal": "32320", - "codeCommune": "32077", - "libelleAcheminement": "CASTELNAU D ANGLES", - "nomCommune": "CASTELNAU D ANGLES" + "codePostal": "60190", + "codeCommune": "60281", + "libelleAcheminement": "GOURNAY SUR ARONDE", + "nomCommune": "GOURNAY SUR ARONDE" }, { - "codePostal": "27260", - "codeCommune": "27218", - "libelleAcheminement": "EPAIGNES", - "nomCommune": "EPAIGNES" + "codePostal": "50450", + "codeCommune": "50197", + "libelleAcheminement": "GAVRAY SUR SIENNE", + "nomCommune": "GAVRAY SUR SIENNE" }, { - "codePostal": "42830", - "codeCommune": "42314", - "libelleAcheminement": "LA TUILIERE", - "nomCommune": "LA TUILIERE" + "codePostal": "51130", + "codeCommune": "51603", + "libelleAcheminement": "VELYE", + "nomCommune": "VELYE" }, { - "codePostal": "55220", - "codeCommune": "55420", - "libelleAcheminement": "RECOURT LE CREUX", - "nomCommune": "RECOURT LE CREUX" + "codePostal": "60800", + "codeCommune": "60479", + "libelleAcheminement": "ORMOY VILLERS", + "nomCommune": "ORMOY VILLERS" }, { - "codePostal": "32290", - "codeCommune": "32081", - "libelleAcheminement": "CASTELNAVET", - "nomCommune": "CASTELNAVET" + "codePostal": "03110", + "codeCommune": "03252", + "libelleAcheminement": "ST PONT", + "nomCommune": "ST PONT" }, { - "codePostal": "27730", - "codeCommune": "27220", - "libelleAcheminement": "EPIEDS", - "nomCommune": "EPIEDS" + "codePostal": "60380", + "codeCommune": "60288", + "libelleAcheminement": "GREMEVILLERS", + "nomCommune": "GREMEVILLERS" }, { - "codePostal": "42210", - "codeCommune": "42315", - "libelleAcheminement": "UNIAS", - "nomCommune": "UNIAS" + "codePostal": "50450", + "codeCommune": "50197", + "libelleAcheminement": "GAVRAY SUR SIENNE", + "nomCommune": "GAVRAY SUR SIENNE" }, { - "codePostal": "55800", - "codeCommune": "55424", - "libelleAcheminement": "REMENNECOURT", - "nomCommune": "REMENNECOURT" + "codePostal": "51130", + "codeCommune": "51612", + "libelleAcheminement": "BLANCS COTEAUX", + "nomCommune": "BLANCS COTEAUX" }, { - "codePostal": "32400", - "codeCommune": "32093", - "libelleAcheminement": "CAUMONT", - "nomCommune": "CAUMONT" + "codePostal": "60129", + "codeCommune": "60481", + "libelleAcheminement": "ORROUY", + "nomCommune": "ORROUY" }, { - "codePostal": "27350", - "codeCommune": "27227", - "libelleAcheminement": "ETREVILLE", - "nomCommune": "ETREVILLE" + "codePostal": "03260", + "codeCommune": "03273", + "libelleAcheminement": "SEUILLET", + "nomCommune": "SEUILLET" }, { - "codePostal": "42320", - "codeCommune": "42320", - "libelleAcheminement": "VALFLEURY", - "nomCommune": "VALFLEURY" + "codePostal": "60480", + "codeCommune": "60290", + "libelleAcheminement": "GUIGNECOURT", + "nomCommune": "GUIGNECOURT" }, { - "codePostal": "55800", - "codeCommune": "55427", - "libelleAcheminement": "REVIGNY SUR ORNAIN", - "nomCommune": "REVIGNY SUR ORNAIN" + "codePostal": "50530", + "codeCommune": "50199", + "libelleAcheminement": "GENETS", + "nomCommune": "GENETS" }, { - "codePostal": "32110", - "codeCommune": "32094", - "libelleAcheminement": "CAUPENNE D ARMAGNAC", - "nomCommune": "CAUPENNE D ARMAGNAC" + "codePostal": "51800", + "codeCommune": "51620", + "libelleAcheminement": "VIENNE LA VILLE", + "nomCommune": "VIENNE LA VILLE" }, { - "codePostal": "27000", - "codeCommune": "27229", - "libelleAcheminement": "EVREUX", - "nomCommune": "EVREUX" + "codePostal": "60310", + "codeCommune": "60499", + "libelleAcheminement": "PLESSIS DE ROYE", + "nomCommune": "PLESSIS DE ROYE" }, { - "codePostal": "42410", - "codeCommune": "42327", - "libelleAcheminement": "VERIN", - "nomCommune": "VERIN" + "codePostal": "03210", + "codeCommune": "03275", + "libelleAcheminement": "SOUVIGNY", + "nomCommune": "SOUVIGNY" }, { - "codePostal": "55160", - "codeCommune": "55429", - "libelleAcheminement": "RIAVILLE", - "nomCommune": "RIAVILLE" + "codePostal": "60210", + "codeCommune": "60297", + "libelleAcheminement": "LE HAMEL", + "nomCommune": "LE HAMEL" }, { - "codePostal": "32150", - "codeCommune": "32096", - "libelleAcheminement": "CAZAUBON", - "nomCommune": "CAZAUBON" + "codePostal": "50850", + "codeCommune": "50200", + "libelleAcheminement": "GER", + "nomCommune": "GER" }, { - "codePostal": "27150", - "codeCommune": "27232", - "libelleAcheminement": "FARCEAUX", - "nomCommune": "FARCEAUX" + "codePostal": "51500", + "codeCommune": "51623", + "libelleAcheminement": "VILLE EN SELVE", + "nomCommune": "VILLE EN SELVE" }, { - "codePostal": "42780", - "codeCommune": "42334", - "libelleAcheminement": "VIOLAY", - "nomCommune": "VIOLAY" + "codePostal": "60700", + "codeCommune": "60509", + "libelleAcheminement": "PONT STE MAXENCE", + "nomCommune": "PONT STE MAXENCE" }, { - "codePostal": "55290", - "codeCommune": "55430", - "libelleAcheminement": "RIBEAUCOURT", - "nomCommune": "RIBEAUCOURT" + "codePostal": "03350", + "codeCommune": "03282", + "libelleAcheminement": "THENEUILLE", + "nomCommune": "THENEUILLE" }, { - "codePostal": "32500", - "codeCommune": "32101", - "libelleAcheminement": "CERAN", - "nomCommune": "CERAN" + "codePostal": "60120", + "codeCommune": "60299", + "libelleAcheminement": "HARDIVILLERS", + "nomCommune": "HARDIVILLERS" }, { - "codePostal": "27760", - "codeCommune": "27240", - "libelleAcheminement": "LA FERRIERE SUR RISLE", - "nomCommune": "LA FERRIERE SUR RISLE" + "codePostal": "50300", + "codeCommune": "50205", + "libelleAcheminement": "LA GODEFROY", + "nomCommune": "LA GODEFROY" }, { - "codePostal": "42310", - "codeCommune": "42337", - "libelleAcheminement": "VIVANS", - "nomCommune": "VIVANS" + "codePostal": "51120", + "codeCommune": "51626", + "libelleAcheminement": "LA VILLENEUVE LES CHARLEVILLE", + "nomCommune": "LA VILLENEUVE LES CHARLEVILLE" }, { - "codePostal": "55300", - "codeCommune": "55431", - "libelleAcheminement": "RICHECOURT", - "nomCommune": "RICHECOURT" + "codePostal": "60850", + "codeCommune": "60516", + "libelleAcheminement": "PUISEUX EN BRAY", + "nomCommune": "PUISEUX EN BRAY" }, { - "codePostal": "32430", - "codeCommune": "32106", - "libelleAcheminement": "COLOGNE", - "nomCommune": "COLOGNE" + "codePostal": "03220", + "codeCommune": "03291", + "libelleAcheminement": "TREZELLES", + "nomCommune": "TREZELLES" }, { - "codePostal": "27600", - "codeCommune": "27249", - "libelleAcheminement": "FONTAINE BELLENGER", - "nomCommune": "FONTAINE BELLENGER" + "codePostal": "60210", + "codeCommune": "60303", + "libelleAcheminement": "HAUTBOS", + "nomCommune": "HAUTBOS" }, { - "codePostal": "43000", - "codeCommune": "43002", - "libelleAcheminement": "AIGUILHE", - "nomCommune": "AIGUILHE" + "codePostal": "50200", + "codeCommune": "50215", + "libelleAcheminement": "GOUVILLE SUR MER", + "nomCommune": "GOUVILLE SUR MER" }, { - "codePostal": "55140", - "codeCommune": "55433", - "libelleAcheminement": "RIGNY LA SALLE", - "nomCommune": "RIGNY LA SALLE" + "codePostal": "51120", + "codeCommune": "51628", + "libelleAcheminement": "VILLENEUVE ST VISTRE VILLEVOTTE", + "nomCommune": "VILLENEUVE ST VISTRE ET VILLEVOTTE" }, { - "codePostal": "32160", - "codeCommune": "32109", - "libelleAcheminement": "COULOUME MONDEBAT", - "nomCommune": "COULOUME MONDEBAT" + "codePostal": "60640", + "codeCommune": "60519", + "libelleAcheminement": "QUESMY", + "nomCommune": "QUESMY" }, { - "codePostal": "27230", - "codeCommune": "27252", - "libelleAcheminement": "FONTAINE LA LOUVET", - "nomCommune": "FONTAINE LA LOUVET" + "codePostal": "03240", + "codeCommune": "03292", + "libelleAcheminement": "TRONGET", + "nomCommune": "TRONGET" }, { - "codePostal": "43380", - "codeCommune": "43009", - "libelleAcheminement": "ARLET", - "nomCommune": "ARLET" + "codePostal": "60650", + "codeCommune": "60315", + "libelleAcheminement": "HODENC EN BRAY", + "nomCommune": "HODENC EN BRAY" }, { - "codePostal": "55000", - "codeCommune": "55435", - "libelleAcheminement": "ROBERT ESPAGNE", - "nomCommune": "ROBERT ESPAGNE" + "codePostal": "50560", + "codeCommune": "50215", + "libelleAcheminement": "GOUVILLE SUR MER", + "nomCommune": "GOUVILLE SUR MER" }, { - "codePostal": "32330", - "codeCommune": "32110", - "libelleAcheminement": "COURRENSAN", - "nomCommune": "COURRENSAN" + "codePostal": "51220", + "codeCommune": "51633", + "libelleAcheminement": "VILLERS FRANQUEUX", + "nomCommune": "VILLERS FRANQUEUX" }, { - "codePostal": "27120", - "codeCommune": "27254", - "libelleAcheminement": "FONTAINE SOUS JOUY", - "nomCommune": "FONTAINE SOUS JOUY" + "codePostal": "60620", + "codeCommune": "60527", + "libelleAcheminement": "REEZ FOSSE MARTIN", + "nomCommune": "REEZ FOSSE MARTIN" }, { - "codePostal": "43210", - "codeCommune": "43020", - "libelleAcheminement": "BAS EN BASSET", - "nomCommune": "BAS EN BASSET" + "codePostal": "03150", + "codeCommune": "03298", + "libelleAcheminement": "VARENNES SUR ALLIER", + "nomCommune": "VARENNES SUR ALLIER" }, { - "codePostal": "55260", - "codeCommune": "55442", - "libelleAcheminement": "RAIVAL", - "nomCommune": "RAIVAL" + "codePostal": "60710", + "codeCommune": "60318", + "libelleAcheminement": "HOUDANCOURT", + "nomCommune": "HOUDANCOURT" }, { - "codePostal": "32230", - "codeCommune": "32111", - "libelleAcheminement": "COURTIES", - "nomCommune": "COURTIES" + "codePostal": "50620", + "codeCommune": "50216", + "libelleAcheminement": "GRAIGNES MESNIL ANGOT", + "nomCommune": "GRAIGNES MESNIL ANGOT" }, { - "codePostal": "27210", - "codeCommune": "27258", - "libelleAcheminement": "FORT MOVILLE", - "nomCommune": "FORT MOVILLE" + "codePostal": "51120", + "codeCommune": "51645", + "libelleAcheminement": "VINDEY", + "nomCommune": "VINDEY" }, { - "codePostal": "43160", - "codeCommune": "43027", - "libelleAcheminement": "BERBEZIT", - "nomCommune": "BERBEZIT" + "codePostal": "60480", + "codeCommune": "60535", + "libelleAcheminement": "REUIL SUR BRECHE", + "nomCommune": "REUIL SUR BRECHE" }, { - "codePostal": "55000", - "codeCommune": "55446", - "libelleAcheminement": "RUMONT", - "nomCommune": "RUMONT" + "codePostal": "03190", + "codeCommune": "03305", + "libelleAcheminement": "VERNEIX", + "nomCommune": "VERNEIX" }, { - "codePostal": "32810", - "codeCommune": "32117", - "libelleAcheminement": "DURAN", - "nomCommune": "DURAN" + "codePostal": "60390", + "codeCommune": "60319", + "libelleAcheminement": "LA HOUSSOYE", + "nomCommune": "LA HOUSSOYE" }, { - "codePostal": "27210", - "codeCommune": "27260", - "libelleAcheminement": "FOULBEC", - "nomCommune": "FOULBEC" + "codePostal": "50690", + "codeCommune": "50230", + "libelleAcheminement": "HARDINVAST", + "nomCommune": "HARDINVAST" }, { - "codePostal": "43700", - "codeCommune": "43041", - "libelleAcheminement": "BRIVES CHARENSAC", - "nomCommune": "BRIVES CHARENSAC" + "codePostal": "51800", + "codeCommune": "51646", + "libelleAcheminement": "VIRGINY", + "nomCommune": "VIRGINY" }, { - "codePostal": "55400", - "codeCommune": "55458", - "libelleAcheminement": "ST JEAN LES BUZY", - "nomCommune": "ST JEAN LES BUZY" + "codePostal": "60410", + "codeCommune": "60536", + "libelleAcheminement": "RHUIS", + "nomCommune": "RHUIS" }, { - "codePostal": "32430", - "codeCommune": "32120", - "libelleAcheminement": "ENCAUSSE", - "nomCommune": "ENCAUSSE" + "codePostal": "03310", + "codeCommune": "03314", + "libelleAcheminement": "VILLEBRET", + "nomCommune": "VILLEBRET" }, { - "codePostal": "27220", - "codeCommune": "27271", - "libelleAcheminement": "FRESNEY", - "nomCommune": "FRESNEY" + "codePostal": "60240", + "codeCommune": "60327", + "libelleAcheminement": "JOUY SOUS THELLE", + "nomCommune": "JOUY SOUS THELLE" }, { - "codePostal": "43150", - "codeCommune": "43047", - "libelleAcheminement": "CHADRON", - "nomCommune": "CHADRON" + "codePostal": "50250", + "codeCommune": "50236", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "55210", - "codeCommune": "55462", - "libelleAcheminement": "ST MAURICE SOUS LES COTES", - "nomCommune": "ST MAURICE SOUS LES COTES" + "codePostal": "51300", + "codeCommune": "51647", + "libelleAcheminement": "VITRY EN PERTHOIS", + "nomCommune": "VITRY EN PERTHOIS" }, { - "codePostal": "32250", - "codeCommune": "32133", - "libelleAcheminement": "FOURCES", - "nomCommune": "FOURCES" + "codePostal": "60870", + "codeCommune": "60539", + "libelleAcheminement": "RIEUX", + "nomCommune": "RIEUX" }, { - "codePostal": "27600", - "codeCommune": "27275", - "libelleAcheminement": "GAILLON", - "nomCommune": "GAILLON" + "codePostal": "03370", + "codeCommune": "03317", + "libelleAcheminement": "VIPLAIX", + "nomCommune": "VIPLAIX" }, { - "codePostal": "43430", - "codeCommune": "43053", - "libelleAcheminement": "CHAMPCLAUSE", - "nomCommune": "CHAMPCLAUSE" + "codePostal": "60112", + "codeCommune": "60328", + "libelleAcheminement": "JUVIGNIES", + "nomCommune": "JUVIGNIES" }, { - "codePostal": "55230", - "codeCommune": "55464", - "libelleAcheminement": "ST PIERREVILLERS", - "nomCommune": "ST PIERREVILLERS" + "codePostal": "50250", + "codeCommune": "50236", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "32220", - "codeCommune": "32138", - "libelleAcheminement": "GARRAVET", - "nomCommune": "GARRAVET" + "codePostal": "51300", + "codeCommune": "51649", + "libelleAcheminement": "VITRY LE FRANCOIS", + "nomCommune": "VITRY LE FRANCOIS" }, { - "codePostal": "27780", - "codeCommune": "27278", - "libelleAcheminement": "GARENNES SUR EURE", - "nomCommune": "GARENNES SUR EURE" + "codePostal": "60140", + "codeCommune": "60547", + "libelleAcheminement": "ROSOY", + "nomCommune": "ROSOY" }, { - "codePostal": "43170", - "codeCommune": "43054", - "libelleAcheminement": "CHANALEILLES", - "nomCommune": "CHANALEILLES" + "codePostal": "03140", + "codeCommune": "03319", + "libelleAcheminement": "VOUSSAC", + "nomCommune": "VOUSSAC" }, { - "codePostal": "55160", - "codeCommune": "55465", - "libelleAcheminement": "ST REMY LA CALONNE", - "nomCommune": "ST REMY LA CALONNE" + "codePostal": "60480", + "codeCommune": "60336", + "libelleAcheminement": "LACHAUSSEE DU BOIS D ECU", + "nomCommune": "LACHAUSSEE DU BOIS D ECU" }, { - "codePostal": "32230", - "codeCommune": "32144", - "libelleAcheminement": "GAZAX ET BACCARISSE", - "nomCommune": "GAZAX ET BACCARISSE" + "codePostal": "50250", + "codeCommune": "50236", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "27930", - "codeCommune": "27280", - "libelleAcheminement": "GAUCIEL", - "nomCommune": "GAUCIEL" + "codePostal": "51340", + "codeCommune": "51654", + "libelleAcheminement": "VOUILLERS", + "nomCommune": "VOUILLERS" }, { - "codePostal": "43230", - "codeCommune": "43063", - "libelleAcheminement": "CHASSAGNES", - "nomCommune": "CHASSAGNES" + "codePostal": "60660", + "codeCommune": "60551", + "libelleAcheminement": "ROUSSELOY", + "nomCommune": "ROUSSELOY" }, { - "codePostal": "55100", - "codeCommune": "55468", - "libelleAcheminement": "SAMOGNEUX", - "nomCommune": "SAMOGNEUX" + "codePostal": "04170", + "codeCommune": "04007", + "libelleAcheminement": "ANGLES", + "nomCommune": "ANGLES" }, { - "codePostal": "32720", - "codeCommune": "32145", - "libelleAcheminement": "GEE RIVIERE", - "nomCommune": "GEE RIVIERE" + "codePostal": "60310", + "codeCommune": "60340", + "libelleAcheminement": "LAGNY", + "nomCommune": "LAGNY" }, { - "codePostal": "27140", - "codeCommune": "27284", - "libelleAcheminement": "GISORS", - "nomCommune": "GISORS" + "codePostal": "50340", + "codeCommune": "50238", + "libelleAcheminement": "HEAUVILLE", + "nomCommune": "HEAUVILLE" }, { - "codePostal": "43300", - "codeCommune": "43068", - "libelleAcheminement": "CHAZELLES", - "nomCommune": "CHAZELLES" + "codePostal": "51390", + "codeCommune": "51657", + "libelleAcheminement": "VRIGNY", + "nomCommune": "VRIGNY" }, { - "codePostal": "55110", - "codeCommune": "55471", - "libelleAcheminement": "SAULMORY VILLEFRANCHE", - "nomCommune": "SAULMORY VILLEFRANCHE" + "codePostal": "60190", + "codeCommune": "60563", + "libelleAcheminement": "SACY LE PETIT", + "nomCommune": "SACY LE PETIT" }, { - "codePostal": "32340", - "codeCommune": "32146", - "libelleAcheminement": "GIMBREDE", - "nomCommune": "GIMBREDE" + "codePostal": "04200", + "codeCommune": "04016", + "libelleAcheminement": "AUTHON", + "nomCommune": "AUTHON" }, { - "codePostal": "27170", - "codeCommune": "27290", - "libelleAcheminement": "GOUPIL OTHON", - "nomCommune": "GOUPIL OTHON" + "codePostal": "60220", + "codeCommune": "60347", + "libelleAcheminement": "LANNOY CUILLERE", + "nomCommune": "LANNOY CUILLERE" }, { - "codePostal": "43380", - "codeCommune": "43070", - "libelleAcheminement": "CHILHAC", - "nomCommune": "CHILHAC" + "codePostal": "50510", + "codeCommune": "50252", + "libelleAcheminement": "HUDIMESNIL", + "nomCommune": "HUDIMESNIL" }, { - "codePostal": "55160", - "codeCommune": "55473", - "libelleAcheminement": "SAULX LES CHAMPLON", - "nomCommune": "SAULX LES CHAMPLON" + "codePostal": "52230", + "codeCommune": "52004", + "libelleAcheminement": "AINGOULAINCOURT", + "nomCommune": "AINGOULAINCOURT" }, { - "codePostal": "32200", - "codeCommune": "32147", - "libelleAcheminement": "GIMONT", - "nomCommune": "GIMONT" + "codePostal": "60170", + "codeCommune": "60569", + "libelleAcheminement": "ST CREPIN AUX BOIS", + "nomCommune": "ST CREPIN AUX BOIS" }, { - "codePostal": "27380", - "codeCommune": "27294", - "libelleAcheminement": "VAL D ORGER", - "nomCommune": "VAL D ORGER" + "codePostal": "04250", + "codeCommune": "04023", + "libelleAcheminement": "BAYONS", + "nomCommune": "BAYONS" }, { - "codePostal": "43230", - "codeCommune": "43075", - "libelleAcheminement": "COLLAT", - "nomCommune": "COLLAT" + "codePostal": "60490", + "codeCommune": "60351", + "libelleAcheminement": "LATAULE", + "nomCommune": "LATAULE" }, { - "codePostal": "55140", - "codeCommune": "55474", - "libelleAcheminement": "SAUVIGNY", - "nomCommune": "SAUVIGNY" + "codePostal": "50540", + "codeCommune": "50256", + "libelleAcheminement": "ISIGNY LE BUAT", + "nomCommune": "ISIGNY LE BUAT" }, { - "codePostal": "32380", - "codeCommune": "32158", - "libelleAcheminement": "L ISLE BOUZON", - "nomCommune": "L ISLE BOUZON" + "codePostal": "52130", + "codeCommune": "52006", + "libelleAcheminement": "ALLICHAMPS", + "nomCommune": "ALLICHAMPS" }, { - "codePostal": "27370", - "codeCommune": "27302", - "libelleAcheminement": "LE BOSC DU THEIL", - "nomCommune": "LE BOSC DU THEIL" + "codePostal": "60130", + "codeCommune": "60581", + "libelleAcheminement": "ST JUST EN CHAUSSEE", + "nomCommune": "ST JUST EN CHAUSSEE" }, { - "codePostal": "43490", - "codeCommune": "43077", - "libelleAcheminement": "COSTAROS", - "nomCommune": "COSTAROS" + "codePostal": "04270", + "codeCommune": "04028", + "libelleAcheminement": "BEYNES", + "nomCommune": "BEYNES" }, { - "codePostal": "55000", - "codeCommune": "55476", - "libelleAcheminement": "SAVONNIERES DEVANT BAR", - "nomCommune": "SAVONNIERES DEVANT BAR" + "codePostal": "60130", + "codeCommune": "60364", + "libelleAcheminement": "LIEUVILLERS", + "nomCommune": "LIEUVILLERS" }, { - "codePostal": "32230", - "codeCommune": "32175", - "libelleAcheminement": "LADEVEZE VILLE", - "nomCommune": "LADEVEZE VILLE" + "codePostal": "50310", + "codeCommune": "50258", + "libelleAcheminement": "JOGANVILLE", + "nomCommune": "JOGANVILLE" }, { - "codePostal": "27350", - "codeCommune": "27316", - "libelleAcheminement": "HAUVILLE", - "nomCommune": "HAUVILLE" + "codePostal": "52110", + "codeCommune": "52007", + "libelleAcheminement": "AMBONVILLE", + "nomCommune": "AMBONVILLE" }, { - "codePostal": "43170", - "codeCommune": "43083", - "libelleAcheminement": "CUBELLES", - "nomCommune": "CUBELLES" + "codePostal": "60410", + "codeCommune": "60600", + "libelleAcheminement": "ST VAAST DE LONGMONT", + "nomCommune": "ST VAAST DE LONGMONT" }, { - "codePostal": "55170", - "codeCommune": "55477", - "libelleAcheminement": "SAVONNIERES EN PERTHOIS", - "nomCommune": "SAVONNIERES EN PERTHOIS" + "codePostal": "04700", + "codeCommune": "04034", + "libelleAcheminement": "LA BRILLANNE", + "nomCommune": "LA BRILLANNE" }, { - "codePostal": "32700", - "codeCommune": "32176", - "libelleAcheminement": "LAGARDE FIMARCON", - "nomCommune": "LAGARDE" + "codePostal": "60530", + "codeCommune": "60398", + "libelleAcheminement": "LE MESNIL EN THELLE", + "nomCommune": "LE MESNIL EN THELLE" }, { - "codePostal": "27800", - "codeCommune": "27318", - "libelleAcheminement": "LA HAYE DE CALLEVILLE", - "nomCommune": "LA HAYE DE CALLEVILLE" + "codePostal": "50800", + "codeCommune": "50262", + "libelleAcheminement": "LA LANDE D AIROU", + "nomCommune": "LA LANDE D AIROU" }, { - "codePostal": "43450", - "codeCommune": "43088", - "libelleAcheminement": "ESPALEM", - "nomCommune": "ESPALEM" + "codePostal": "52210", + "codeCommune": "52017", + "libelleAcheminement": "ARC EN BARROIS", + "nomCommune": "ARC EN BARROIS" }, { - "codePostal": "55230", - "codeCommune": "55481", - "libelleAcheminement": "SENON", - "nomCommune": "SENON" + "codePostal": "60400", + "codeCommune": "60603", + "libelleAcheminement": "SALENCY", + "nomCommune": "SALENCY" }, { - "codePostal": "32500", - "codeCommune": "32188", - "libelleAcheminement": "LAMOTHE GOAS", - "nomCommune": "LAMOTHE GOAS" + "codePostal": "04120", + "codeCommune": "04039", + "libelleAcheminement": "CASTELLANE", + "nomCommune": "CASTELLANE" }, { - "codePostal": "27630", - "codeCommune": "27331", - "libelleAcheminement": "HEUBECOURT HARICOURT", - "nomCommune": "HEUBECOURT HARICOURT" + "codePostal": "60220", + "codeCommune": "60407", + "libelleAcheminement": "MONCEAUX L ABBAYE", + "nomCommune": "MONCEAUX L ABBAYE" }, { - "codePostal": "43100", - "codeCommune": "43105", - "libelleAcheminement": "JAVAUGUES", - "nomCommune": "JAVAUGUES" + "codePostal": "50670", + "codeCommune": "50271", + "libelleAcheminement": "LINGEARD", + "nomCommune": "LINGEARD" }, { - "codePostal": "55110", - "codeCommune": "55490", - "libelleAcheminement": "SIVRY SUR MEUSE", - "nomCommune": "SIVRY SUR MEUSE" + "codePostal": "52300", + "codeCommune": "52029", + "libelleAcheminement": "AUTIGNY LE GRAND", + "nomCommune": "AUTIGNY LE GRAND" }, { - "codePostal": "32480", - "codeCommune": "32195", - "libelleAcheminement": "LARROQUE ENGALIN", - "nomCommune": "LARROQUE ENGALIN" + "codePostal": "60240", + "codeCommune": "60613", + "libelleAcheminement": "SENOTS", + "nomCommune": "SENOTS" }, { - "codePostal": "27950", - "codeCommune": "27336", - "libelleAcheminement": "LA HEUNIERE", - "nomCommune": "LA HEUNIERE" + "codePostal": "04320", + "codeCommune": "04043", + "libelleAcheminement": "VAL DE CHALVAGNE", + "nomCommune": "VAL DE CHALVAGNE" }, { - "codePostal": "43500", - "codeCommune": "43108", - "libelleAcheminement": "JULLIANGES", - "nomCommune": "JULLIANGES" + "codePostal": "60240", + "codeCommune": "60411", + "libelleAcheminement": "MONNEVILLE", + "nomCommune": "MONNEVILLE" }, { - "codePostal": "55220", - "codeCommune": "55498", - "libelleAcheminement": "SOUILLY", - "nomCommune": "SOUILLY" + "codePostal": "50660", + "codeCommune": "50272", + "libelleAcheminement": "LINGREVILLE", + "nomCommune": "LINGREVILLE" }, { - "codePostal": "32550", - "codeCommune": "32200", - "libelleAcheminement": "LASSERAN", - "nomCommune": "LASSERAN" + "codePostal": "52120", + "codeCommune": "52031", + "libelleAcheminement": "AUTREVILLE SUR LA RENNE", + "nomCommune": "AUTREVILLE SUR LA RENNE" }, { - "codePostal": "27460", - "codeCommune": "27348", - "libelleAcheminement": "IGOVILLE", - "nomCommune": "IGOVILLE" + "codePostal": "60210", + "codeCommune": "60622", + "libelleAcheminement": "SOMMEREUX", + "nomCommune": "SOMMEREUX" }, { - "codePostal": "43340", - "codeCommune": "43111", - "libelleAcheminement": "LANDOS", - "nomCommune": "LANDOS" + "codePostal": "04600", + "codeCommune": "04049", + "libelleAcheminement": "CHATEAU ARNOUX ST AUBAN", + "nomCommune": "CHATEAU ARNOUX ST AUBAN" }, { - "codePostal": "55230", - "codeCommune": "55500", - "libelleAcheminement": "SPINCOURT", - "nomCommune": "SPINCOURT" + "codePostal": "60240", + "codeCommune": "60412", + "libelleAcheminement": "MONTAGNY EN VEXIN", + "nomCommune": "MONTAGNY EN VEXIN" }, { - "codePostal": "32360", - "codeCommune": "32204", - "libelleAcheminement": "LAVARDENS", - "nomCommune": "LAVARDENS" + "codePostal": "50250", + "codeCommune": "50273", + "libelleAcheminement": "MONTSENELLE", + "nomCommune": "MONTSENELLE" }, { - "codePostal": "27770", - "codeCommune": "27350", - "libelleAcheminement": "ILLIERS L EVEQUE", - "nomCommune": "ILLIERS L EVEQUE" + "codePostal": "52330", + "codeCommune": "52031", + "libelleAcheminement": "AUTREVILLE SUR LA RENNE", + "nomCommune": "AUTREVILLE SUR LA RENNE" }, { - "codePostal": "43340", - "codeCommune": "43111", - "libelleAcheminement": "LANDOS", - "nomCommune": "LANDOS" + "codePostal": "60210", + "codeCommune": "60633", + "libelleAcheminement": "THIEULOY ST ANTOINE", + "nomCommune": "THIEULOY ST ANTOINE" }, { - "codePostal": "55500", - "codeCommune": "55501", - "libelleAcheminement": "STAINVILLE", - "nomCommune": "STAINVILLE" + "codePostal": "04200", + "codeCommune": "04067", + "libelleAcheminement": "CUREL", + "nomCommune": "CUREL" }, { - "codePostal": "32700", - "codeCommune": "32208", - "libelleAcheminement": "LECTOURE", - "nomCommune": "LECTOURE" + "codePostal": "60300", + "codeCommune": "60421", + "libelleAcheminement": "MONT L EVEQUE", + "nomCommune": "MONT L EVEQUE" }, { - "codePostal": "27930", - "codeCommune": "27353", - "libelleAcheminement": "IRREVILLE", - "nomCommune": "IRREVILLE" + "codePostal": "50250", + "codeCommune": "50273", + "libelleAcheminement": "MONTSENELLE", + "nomCommune": "MONTSENELLE" }, { - "codePostal": "43260", - "codeCommune": "43113", - "libelleAcheminement": "LANTRIAC", - "nomCommune": "LANTRIAC" + "codePostal": "52400", + "codeCommune": "52060", + "libelleAcheminement": "BOURBONNE LES BAINS", + "nomCommune": "BOURBONNE LES BAINS" }, { - "codePostal": "55130", - "codeCommune": "55516", - "libelleAcheminement": "TREVERAY", - "nomCommune": "TREVERAY" + "codePostal": "60510", + "codeCommune": "60663", + "libelleAcheminement": "VELENNES", + "nomCommune": "VELENNES" }, { - "codePostal": "32400", - "codeCommune": "32209", - "libelleAcheminement": "LELIN LAPUJOLLE", - "nomCommune": "LELIN LAPUJOLLE" + "codePostal": "04000", + "codeCommune": "04070", + "libelleAcheminement": "DIGNE LES BAINS", + "nomCommune": "DIGNE LES BAINS" }, { - "codePostal": "27250", - "codeCommune": "27359", - "libelleAcheminement": "JUIGNETTES", - "nomCommune": "JUIGNETTES" + "codePostal": "60190", + "codeCommune": "60424", + "libelleAcheminement": "MONTMARTIN", + "nomCommune": "MONTMARTIN" }, { - "codePostal": "43410", - "codeCommune": "43120", - "libelleAcheminement": "LEMPDES SUR ALLAGNON", - "nomCommune": "LEMPDES SUR ALLAGNON" + "codePostal": "50250", + "codeCommune": "50273", + "libelleAcheminement": "MONTSENELLE", + "nomCommune": "MONTSENELLE" }, { - "codePostal": "55190", - "codeCommune": "55520", - "libelleAcheminement": "TROUSSEY", - "nomCommune": "TROUSSEY" + "codePostal": "52150", + "codeCommune": "52064", + "libelleAcheminement": "BOURMONT ENTRE MEUSE ET MOUZON", + "nomCommune": "BOURMONT ENTRE MEUSE ET MOUZON" }, { - "codePostal": "32480", - "codeCommune": "32212", - "libelleAcheminement": "LIGARDES", - "nomCommune": "LIGARDES" + "codePostal": "60140", + "codeCommune": "60669", + "libelleAcheminement": "VERDERONNE", + "nomCommune": "VERDERONNE" }, { - "codePostal": "27220", - "codeCommune": "27360", - "libelleAcheminement": "JUMELLES", - "nomCommune": "JUMELLES" + "codePostal": "04400", + "codeCommune": "04073", + "libelleAcheminement": "ENCHASTRAYES", + "nomCommune": "ENCHASTRAYES" }, { - "codePostal": "43410", - "codeCommune": "43121", - "libelleAcheminement": "LEOTOING", - "nomCommune": "LEOTOING" + "codePostal": "60480", + "codeCommune": "60425", + "libelleAcheminement": "MONTREUIL SUR BRECHE", + "nomCommune": "MONTREUIL SUR BRECHE" }, { - "codePostal": "55220", - "codeCommune": "55525", - "libelleAcheminement": "VADELAINCOURT", - "nomCommune": "VADELAINCOURT" + "codePostal": "50600", + "codeCommune": "50274", + "libelleAcheminement": "LES LOGES MARCHIS", + "nomCommune": "LES LOGES MARCHIS" }, { - "codePostal": "32380", - "codeCommune": "32223", - "libelleAcheminement": "MAGNAS", - "nomCommune": "MAGNAS" + "codePostal": "52200", + "codeCommune": "52070", + "libelleAcheminement": "BRENNES", + "nomCommune": "BRENNES" }, { - "codePostal": "27480", - "codeCommune": "27369", - "libelleAcheminement": "LILLY", - "nomCommune": "LILLY" + "codePostal": "60360", + "codeCommune": "60673", + "libelleAcheminement": "VIEFVILLERS", + "nomCommune": "VIEFVILLERS" }, { - "codePostal": "43350", - "codeCommune": "43122", - "libelleAcheminement": "LISSAC", - "nomCommune": "LISSAC" + "codePostal": "04700", + "codeCommune": "04077", + "libelleAcheminement": "ENTREVENNES", + "nomCommune": "ENTREVENNES" }, { - "codePostal": "55300", - "codeCommune": "55528", - "libelleAcheminement": "VARNEVILLE", - "nomCommune": "VARNEVILLE" + "codePostal": "60127", + "codeCommune": "60430", + "libelleAcheminement": "MORIENVAL", + "nomCommune": "MORIENVAL" }, { - "codePostal": "32170", - "codeCommune": "32226", - "libelleAcheminement": "MANAS BASTANOUS", - "nomCommune": "MANAS BASTANOUS" + "codePostal": "50370", + "codeCommune": "50275", + "libelleAcheminement": "LES LOGES SUR BRECEY", + "nomCommune": "LES LOGES SUR BRECEY" }, { - "codePostal": "27440", - "codeCommune": "27370", - "libelleAcheminement": "LISORS", - "nomCommune": "LISORS" + "codePostal": "52700", + "codeCommune": "52084", + "libelleAcheminement": "BUSSON", + "nomCommune": "BUSSON" }, { - "codePostal": "43160", - "codeCommune": "43128", - "libelleAcheminement": "MALVIERES", - "nomCommune": "MALVIERES" + "codePostal": "60350", + "codeCommune": "60674", + "libelleAcheminement": "VIEUX MOULIN", + "nomCommune": "VIEUX MOULIN" }, { - "codePostal": "55300", - "codeCommune": "55530", - "libelleAcheminement": "VALBOIS", - "nomCommune": "VALBOIS" + "codePostal": "04800", + "codeCommune": "04081", + "libelleAcheminement": "ESPARRON DE VERDON", + "nomCommune": "ESPARRON DE VERDON" }, { - "codePostal": "32190", - "codeCommune": "32231", - "libelleAcheminement": "MARAMBAT", - "nomCommune": "MARAMBAT" + "codePostal": "60190", + "codeCommune": "60441", + "libelleAcheminement": "MOYVILLERS", + "nomCommune": "MOYVILLERS" }, { - "codePostal": "27320", - "codeCommune": "27378", - "libelleAcheminement": "LA MADELEINE DE NONANCOURT", - "nomCommune": "LA MADELEINE DE NONANCOURT" + "codePostal": "50680", + "codeCommune": "50283", + "libelleAcheminement": "LA LUZERNE", + "nomCommune": "LA LUZERNE" }, { - "codePostal": "43190", - "codeCommune": "43129", - "libelleAcheminement": "LE MAS DE TENCE", - "nomCommune": "LE MAS DE TENCE" + "codePostal": "52600", + "codeCommune": "52090", + "libelleAcheminement": "CELSOY", + "nomCommune": "CELSOY" }, { - "codePostal": "55300", - "codeCommune": "55530", - "libelleAcheminement": "VALBOIS", - "nomCommune": "VALBOIS" + "codePostal": "60650", + "codeCommune": "60681", + "libelleAcheminement": "VILLERS ST BARTHELEMY", + "nomCommune": "VILLERS ST BARTHELEMY" }, { - "codePostal": "32270", - "codeCommune": "32237", - "libelleAcheminement": "MARSAN", - "nomCommune": "MARSAN" + "codePostal": "04250", + "codeCommune": "04085", + "libelleAcheminement": "FAUCON DU CAIRE", + "nomCommune": "FAUCON DU CAIRE" }, { - "codePostal": "27150", - "codeCommune": "27379", - "libelleAcheminement": "MAINNEVILLE", - "nomCommune": "MAINNEVILLE" + "codePostal": "60440", + "codeCommune": "60446", + "libelleAcheminement": "NANTEUIL LE HAUDOUIN", + "nomCommune": "NANTEUIL LE HAUDOUIN" }, { - "codePostal": "43520", - "codeCommune": "43130", - "libelleAcheminement": "MAZET ST VOY", - "nomCommune": "MAZET ST VOY" + "codePostal": "50500", + "codeCommune": "50298", + "libelleAcheminement": "MEAUTIS", + "nomCommune": "MEAUTIS" }, { - "codePostal": "55250", - "codeCommune": "55532", - "libelleAcheminement": "VAUBECOURT", - "nomCommune": "VAUBECOURT" + "codePostal": "52120", + "codeCommune": "52114", + "libelleAcheminement": "CHATEAUVILLAIN", + "nomCommune": "CHATEAUVILLAIN" }, { - "codePostal": "32170", - "codeCommune": "32238", - "libelleAcheminement": "MARSEILLAN", - "nomCommune": "MARSEILLAN" + "codePostal": "60870", + "codeCommune": "60684", + "libelleAcheminement": "VILLERS ST PAUL", + "nomCommune": "VILLERS ST PAUL" }, { - "codePostal": "27370", - "codeCommune": "27382", - "libelleAcheminement": "MANDEVILLE", - "nomCommune": "MANDEVILLE" + "codePostal": "04400", + "codeCommune": "04086", + "libelleAcheminement": "FAUCON DE BARCELONNETTE", + "nomCommune": "FAUCON DE BARCELONNETTE" }, { - "codePostal": "43100", - "codeCommune": "43133", - "libelleAcheminement": "MERCOEUR", - "nomCommune": "MERCOEUR" + "codePostal": "60510", + "codeCommune": "60461", + "libelleAcheminement": "NIVILLERS", + "nomCommune": "NIVILLERS" }, { - "codePostal": "55400", - "codeCommune": "55537", - "libelleAcheminement": "DOUAUMONT VAUX", - "nomCommune": "DOUAUMONT VAUX" + "codePostal": "50580", + "codeCommune": "50299", + "libelleAcheminement": "LE MESNIL", + "nomCommune": "LE MESNIL" }, { - "codePostal": "32240", - "codeCommune": "32246", - "libelleAcheminement": "MAUPAS", - "nomCommune": "MAUPAS" + "codePostal": "52600", + "codeCommune": "52119", + "libelleAcheminement": "CHAUDENAY", + "nomCommune": "CHAUDENAY" }, { - "codePostal": "27810", - "codeCommune": "27391", - "libelleAcheminement": "MARCILLY SUR EURE", - "nomCommune": "MARCILLY SUR EURE" + "codePostal": "60640", + "codeCommune": "60693", + "libelleAcheminement": "VILLESELVE", + "nomCommune": "VILLESELVE" }, { - "codePostal": "43270", - "codeCommune": "43138", - "libelleAcheminement": "MONLET", - "nomCommune": "MONLET" + "codePostal": "04300", + "codeCommune": "04088", + "libelleAcheminement": "FORCALQUIER", + "nomCommune": "FORCALQUIER" }, { - "codePostal": "55600", - "codeCommune": "55546", - "libelleAcheminement": "VERNEUIL GRAND", - "nomCommune": "VERNEUIL GRAND" + "codePostal": "60180", + "codeCommune": "60463", + "libelleAcheminement": "NOGENT SUR OISE", + "nomCommune": "NOGENT SUR OISE" }, { - "codePostal": "32390", - "codeCommune": "32255", - "libelleAcheminement": "MIRAMONT LATOUR", - "nomCommune": "MIRAMONT LATOUR" + "codePostal": "50570", + "codeCommune": "50310", + "libelleAcheminement": "LE MESNIL EURY", + "nomCommune": "LE MESNIL EURY" }, { - "codePostal": "27400", - "codeCommune": "27403", - "libelleAcheminement": "LE MESNIL JOURDAIN", - "nomCommune": "LE MESNIL JOURDAIN" + "codePostal": "52140", + "codeCommune": "52120", + "libelleAcheminement": "CHAUFFOURT", + "nomCommune": "CHAUFFOURT" }, { - "codePostal": "43300", - "codeCommune": "43149", - "libelleAcheminement": "PEBRAC", - "nomCommune": "PEBRAC" + "codePostal": "61100", + "codeCommune": "61007", + "libelleAcheminement": "ATHIS VAL DE ROUVRE", + "nomCommune": "ATHIS VAL DE ROUVRE" }, { - "codePostal": "55600", - "codeCommune": "55547", - "libelleAcheminement": "VERNEUIL PETIT", - "nomCommune": "VERNEUIL PETIT" + "codePostal": "04240", + "codeCommune": "04090", + "libelleAcheminement": "LE FUGERET", + "nomCommune": "LE FUGERET" }, { - "codePostal": "32300", - "codeCommune": "32263", - "libelleAcheminement": "MONCASSIN", - "nomCommune": "MONCASSIN" + "codePostal": "60730", + "codeCommune": "60469", + "libelleAcheminement": "NOVILLERS", + "nomCommune": "NOVILLERS" }, { - "codePostal": "27650", - "codeCommune": "27406", - "libelleAcheminement": "MESNIL SUR L ESTREE", - "nomCommune": "MESNIL SUR L ESTREE" + "codePostal": "50450", + "codeCommune": "50311", + "libelleAcheminement": "LE MESNIL GARNIER", + "nomCommune": "LE MESNIL GARNIER" }, { - "codePostal": "43420", - "codeCommune": "43154", - "libelleAcheminement": "PRADELLES", - "nomCommune": "PRADELLES" + "codePostal": "52000", + "codeCommune": "52121", + "libelleAcheminement": "CHAUMONT", + "nomCommune": "CHAUMONT" }, { - "codePostal": "55210", - "codeCommune": "55551", - "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", - "nomCommune": "VIGNEULLES LES HATTONCHATEL" + "codePostal": "61100", + "codeCommune": "61011", + "libelleAcheminement": "AUBUSSON", + "nomCommune": "AUBUSSON" }, { - "codePostal": "32240", - "codeCommune": "32271", - "libelleAcheminement": "MONGUILHEM", - "nomCommune": "MONGUILHEM" + "codePostal": "04310", + "codeCommune": "04091", + "libelleAcheminement": "GANAGOBIE", + "nomCommune": "GANAGOBIE" }, { - "codePostal": "27340", - "codeCommune": "27412", - "libelleAcheminement": "TERRES DE BORD", - "nomCommune": "TERRES DE BORD" + "codePostal": "60310", + "codeCommune": "60474", + "libelleAcheminement": "OGNOLLES", + "nomCommune": "OGNOLLES" }, { - "codePostal": "43300", - "codeCommune": "43155", - "libelleAcheminement": "PRADES", - "nomCommune": "PRADES" + "codePostal": "50620", + "codeCommune": "50324", + "libelleAcheminement": "LE MESNIL VENERON", + "nomCommune": "LE MESNIL VENERON" }, { - "codePostal": "55210", - "codeCommune": "55551", - "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", - "nomCommune": "VIGNEULLES LES HATTONCHATEL" + "codePostal": "52150", + "codeCommune": "52122", + "libelleAcheminement": "CHAUMONT LA VILLE", + "nomCommune": "CHAUMONT LA VILLE" }, { - "codePostal": "32230", - "codeCommune": "32273", - "libelleAcheminement": "MONLEZUN", - "nomCommune": "MONLEZUN" + "codePostal": "61160", + "codeCommune": "61023", + "libelleAcheminement": "BAILLEUL", + "nomCommune": "BAILLEUL" }, { - "codePostal": "27400", - "codeCommune": "27412", - "libelleAcheminement": "TERRES DE BORD", - "nomCommune": "TERRES DE BORD" + "codePostal": "04250", + "codeCommune": "04093", + "libelleAcheminement": "GIGORS", + "nomCommune": "GIGORS" }, { - "codePostal": "43150", - "codeCommune": "43156", - "libelleAcheminement": "PRESAILLES", - "nomCommune": "PRESAILLES" + "codePostal": "60510", + "codeCommune": "60480", + "libelleAcheminement": "OROER", + "nomCommune": "OROER" }, { - "codePostal": "55210", - "codeCommune": "55551", - "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", - "nomCommune": "VIGNEULLES LES HATTONCHATEL" + "codePostal": "50270", + "codeCommune": "50332", + "libelleAcheminement": "LES MOITIERS D ALLONNE", + "nomCommune": "LES MOITIERS D ALLONNE" }, { - "codePostal": "32240", - "codeCommune": "32274", - "libelleAcheminement": "MONLEZUN D ARMAGNAC", - "nomCommune": "MONLEZUN D ARMAGNAC" + "codePostal": "52000", + "codeCommune": "52125", + "libelleAcheminement": "CHAMARANDES CHOIGNES", + "nomCommune": "CHAMARANDES CHOIGNES" }, { - "codePostal": "27390", - "codeCommune": "27414", - "libelleAcheminement": "MONTREUIL L ARGILLE", - "nomCommune": "MONTREUIL L ARGILLE" + "codePostal": "61170", + "codeCommune": "61026", + "libelleAcheminement": "BARVILLE", + "nomCommune": "BARVILLE" }, { - "codePostal": "43220", - "codeCommune": "43163", - "libelleAcheminement": "RIOTORD", - "nomCommune": "RIOTORD" + "codePostal": "04150", + "codeCommune": "04095", + "libelleAcheminement": "L HOSPITALET", + "nomCommune": "L HOSPITALET" }, { - "codePostal": "55600", - "codeCommune": "55552", - "libelleAcheminement": "VIGNEUL SOUS MONTMEDY", - "nomCommune": "VIGNEUL SOUS MONTMEDY" + "codePostal": "60480", + "codeCommune": "60485", + "libelleAcheminement": "OURSEL MAISON", + "nomCommune": "OURSEL MAISON" }, { - "codePostal": "32390", - "codeCommune": "32286", - "libelleAcheminement": "MONTESTRUC SUR GERS", - "nomCommune": "MONTESTRUC SUR GERS" + "codePostal": "50310", + "codeCommune": "50341", + "libelleAcheminement": "MONTEBOURG", + "nomCommune": "MONTEBOURG" }, { - "codePostal": "27550", - "codeCommune": "27425", - "libelleAcheminement": "NASSANDRES SUR RISLE", - "nomCommune": "NASSANDRES SUR RISLE" + "codePostal": "52190", + "codeCommune": "52126", + "libelleAcheminement": "CHOILLEY DARDENAY", + "nomCommune": "CHOILLEY DARDENAY" }, { - "codePostal": "43420", - "codeCommune": "43168", - "libelleAcheminement": "ST ARCONS DE BARGES", - "nomCommune": "ST ARCONS DE BARGES" + "codePostal": "61270", + "codeCommune": "61032", + "libelleAcheminement": "BEAUFAI", + "nomCommune": "BEAUFAI" }, { - "codePostal": "55110", - "codeCommune": "55561", - "libelleAcheminement": "VILLERS DEVANT DUN", - "nomCommune": "VILLERS DEVANT DUN" + "codePostal": "04420", + "codeCommune": "04097", + "libelleAcheminement": "LA JAVIE", + "nomCommune": "LA JAVIE" }, { - "codePostal": "32800", - "codeCommune": "32299", - "libelleAcheminement": "NOULENS", - "nomCommune": "NOULENS" + "codePostal": "60120", + "codeCommune": "60486", + "libelleAcheminement": "PAILLART", + "nomCommune": "PAILLART" }, { - "codePostal": "27250", - "codeCommune": "27427", - "libelleAcheminement": "NEAUFLES AUVERGNY", - "nomCommune": "NEAUFLES AUVERGNY" + "codePostal": "50210", + "codeCommune": "50350", + "libelleAcheminement": "MONTPINCHON", + "nomCommune": "MONTPINCHON" }, { - "codePostal": "43100", - "codeCommune": "43170", - "libelleAcheminement": "ST BEAUZIRE", - "nomCommune": "ST BEAUZIRE" + "codePostal": "52110", + "codeCommune": "52129", + "libelleAcheminement": "CIREY SUR BLAISE", + "nomCommune": "CIREY SUR BLAISE" }, { - "codePostal": "55150", - "codeCommune": "55563", - "libelleAcheminement": "VILLERS LES MANGIENNES", - "nomCommune": "VILLERS LES MANGIENNES" + "codePostal": "61130", + "codeCommune": "61038", + "libelleAcheminement": "BELLEME", + "nomCommune": "BELLEME" }, { - "codePostal": "32260", - "codeCommune": "32302", - "libelleAcheminement": "ORNEZAN", - "nomCommune": "ORNEZAN" + "codePostal": "04510", + "codeCommune": "04108", + "libelleAcheminement": "MALIJAI", + "nomCommune": "MALIJAI" }, { - "codePostal": "27110", - "codeCommune": "27428", - "libelleAcheminement": "LE NEUBOURG", - "nomCommune": "LE NEUBOURG" + "codePostal": "60170", + "codeCommune": "60492", + "libelleAcheminement": "PIMPREZ", + "nomCommune": "PIMPREZ" }, { - "codePostal": "43290", - "codeCommune": "43172", - "libelleAcheminement": "ST BONNET LE FROID", - "nomCommune": "ST BONNET LE FROID" + "codePostal": "50570", + "codeCommune": "50352", + "libelleAcheminement": "MONTREUIL SUR LOZON", + "nomCommune": "MONTREUIL SUR LOZON" }, { - "codePostal": "55120", - "codeCommune": "55567", - "libelleAcheminement": "VILLE SUR COUSANCES", - "nomCommune": "VILLE SUR COUSANCES" + "codePostal": "52370", + "codeCommune": "52130", + "libelleAcheminement": "CIRFONTAINES EN AZOIS", + "nomCommune": "CIRFONTAINES EN AZOIS" }, { - "codePostal": "32460", - "codeCommune": "32310", - "libelleAcheminement": "PERCHEDE", - "nomCommune": "PERCHEDE" + "codePostal": "61340", + "codeCommune": "61043", + "libelleAcheminement": "BERD HUIS", + "nomCommune": "BERD HUIS" }, { - "codePostal": "27330", - "codeCommune": "27431", - "libelleAcheminement": "LA NEUVE LYRE", - "nomCommune": "LA NEUVE LYRE" + "codePostal": "04110", + "codeCommune": "04128", + "libelleAcheminement": "MONTFURON", + "nomCommune": "MONTFURON" }, { - "codePostal": "43340", - "codeCommune": "43173", - "libelleAcheminement": "ST CHRISTOPHE D ALLIER", - "nomCommune": "ST CHRISTOPHE D ALLIER" + "codePostal": "60860", + "codeCommune": "60493", + "libelleAcheminement": "PISSELEU", + "nomCommune": "PISSELEU" }, { - "codePostal": "56640", - "codeCommune": "56005", - "libelleAcheminement": "ARZON", - "nomCommune": "ARZON" + "codePostal": "50410", + "codeCommune": "50357", + "libelleAcheminement": "MORIGNY", + "nomCommune": "MORIGNY" }, { - "codePostal": "32700", - "codeCommune": "32311", - "libelleAcheminement": "PERGAIN TAILLAC", - "nomCommune": "PERGAIN TAILLAC" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "27320", - "codeCommune": "27438", - "libelleAcheminement": "NONANCOURT", - "nomCommune": "NONANCOURT" + "codePostal": "61290", + "codeCommune": "61046", + "libelleAcheminement": "BIZOU", + "nomCommune": "BIZOU" }, { - "codePostal": "43140", - "codeCommune": "43177", - "libelleAcheminement": "ST DIDIER EN VELAY", - "nomCommune": "ST DIDIER EN VELAY" + "codePostal": "04200", + "codeCommune": "04145", + "libelleAcheminement": "PEIPIN", + "nomCommune": "PEIPIN" }, { - "codePostal": "56350", - "codeCommune": "56011", - "libelleAcheminement": "BEGANNE", - "nomCommune": "BEGANNE" + "codePostal": "60130", + "codeCommune": "60498", + "libelleAcheminement": "LE PLESSIER SUR ST JUST", + "nomCommune": "LE PLESSIER SUR ST JUST" }, { - "codePostal": "32300", - "codeCommune": "32323", - "libelleAcheminement": "PONSAMPERE", - "nomCommune": "PONSAMPERE" + "codePostal": "50140", + "codeCommune": "50359", + "libelleAcheminement": "MORTAIN BOCAGE", + "nomCommune": "MORTAIN BOCAGE" }, { - "codePostal": "27940", - "codeCommune": "27440", - "libelleAcheminement": "NOTRE DAME DE L ISLE", - "nomCommune": "NOTRE DAME DE L ISLE" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "43330", - "codeCommune": "43184", - "libelleAcheminement": "ST FERREOL D AUROURE", - "nomCommune": "ST FERREOL D AUROURE" + "codePostal": "61380", + "codeCommune": "61053", + "libelleAcheminement": "BONSMOULINS", + "nomCommune": "BONSMOULINS" }, { - "codePostal": "56550", - "codeCommune": "56013", - "libelleAcheminement": "BELZ", - "nomCommune": "BELZ" + "codePostal": "05160", + "codeCommune": "04154", + "libelleAcheminement": "PONTIS", + "nomCommune": "PONTIS" }, { - "codePostal": "32260", - "codeCommune": "32327", - "libelleAcheminement": "POUY LOUBRIN", - "nomCommune": "POUY LOUBRIN" + "codePostal": "60330", + "codeCommune": "60500", + "libelleAcheminement": "LE PLESSIS BELLEVILLE", + "nomCommune": "LE PLESSIS BELLEVILLE" }, { - "codePostal": "27720", - "codeCommune": "27445", - "libelleAcheminement": "NOYERS", - "nomCommune": "NOYERS" + "codePostal": "50140", + "codeCommune": "50359", + "libelleAcheminement": "MORTAIN BOCAGE", + "nomCommune": "MORTAIN BOCAGE" }, { - "codePostal": "43350", - "codeCommune": "43187", - "libelleAcheminement": "ST GENEYS PRES ST PAULIEN", - "nomCommune": "ST GENEYS PRES ST PAULIEN" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "56580", - "codeCommune": "56024", - "libelleAcheminement": "BREHAN", - "nomCommune": "BREHAN" + "codePostal": "61470", + "codeCommune": "61054", + "libelleAcheminement": "LE BOSC RENOULT", + "nomCommune": "LE BOSC RENOULT" }, { - "codePostal": "32480", - "codeCommune": "32328", - "libelleAcheminement": "POUY ROQUELAURE", - "nomCommune": "POUY ROQUELAURE" + "codePostal": "04420", + "codeCommune": "04155", + "libelleAcheminement": "PRADS HAUTE BLEONE", + "nomCommune": "PRADS HAUTE BLEONE" }, { - "codePostal": "27120", - "codeCommune": "27448", - "libelleAcheminement": "PACY SUR EURE", - "nomCommune": "PACY SUR EURE" + "codePostal": "60700", + "codeCommune": "60508", + "libelleAcheminement": "PONTPOINT", + "nomCommune": "PONTPOINT" }, { - "codePostal": "43500", - "codeCommune": "43189", - "libelleAcheminement": "ST GEORGES LAGRICOL", - "nomCommune": "ST GEORGES LAGRICOL" + "codePostal": "50690", + "codeCommune": "50382", + "libelleAcheminement": "NOUAINVILLE", + "nomCommune": "NOUAINVILLE" }, { - "codePostal": "56130", - "codeCommune": "56030", - "libelleAcheminement": "CAMOEL", - "nomCommune": "CAMOEL" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "32810", - "codeCommune": "32331", - "libelleAcheminement": "PREIGNAN", - "nomCommune": "PREIGNAN" + "codePostal": "61270", + "codeCommune": "61060", + "libelleAcheminement": "BRETHEL", + "nomCommune": "BRETHEL" }, { - "codePostal": "27910", - "codeCommune": "27454", - "libelleAcheminement": "PERRUEL", - "nomCommune": "PERRUEL" + "codePostal": "04420", + "codeCommune": "04155", + "libelleAcheminement": "PRADS HAUTE BLEONE", + "nomCommune": "PRADS HAUTE BLEONE" }, { - "codePostal": "43500", - "codeCommune": "43201", - "libelleAcheminement": "ST JULIEN D ANCE", - "nomCommune": "ST JULIEN D ANCE" + "codePostal": "60390", + "codeCommune": "60510", + "libelleAcheminement": "PORCHEUX", + "nomCommune": "PORCHEUX" }, { - "codePostal": "56330", - "codeCommune": "56031", - "libelleAcheminement": "CAMORS", - "nomCommune": "CAMORS" + "codePostal": "50630", + "codeCommune": "50384", + "libelleAcheminement": "OCTEVILLE L AVENEL", + "nomCommune": "OCTEVILLE L AVENEL" }, { - "codePostal": "32400", - "codeCommune": "32333", - "libelleAcheminement": "PROJAN", - "nomCommune": "PROJAN" + "codePostal": "52000", + "codeCommune": "52141", + "libelleAcheminement": "CONDES", + "nomCommune": "CONDES" }, { - "codePostal": "27590", - "codeCommune": "27458", - "libelleAcheminement": "PITRES", - "nomCommune": "PITRES" + "codePostal": "61240", + "codeCommune": "61081", + "libelleAcheminement": "CHAILLOUE", + "nomCommune": "CHAILLOUE" }, { - "codePostal": "43200", - "codeCommune": "43203", - "libelleAcheminement": "ST JULIEN DU PINET", - "nomCommune": "ST JULIEN DU PINET" + "codePostal": "04150", + "codeCommune": "04162", + "libelleAcheminement": "REVEST DES BROUSSES", + "nomCommune": "REVEST DES BROUSSES" }, { - "codePostal": "56420", - "codeCommune": "56051", - "libelleAcheminement": "CRUGUEL", - "nomCommune": "CRUGUEL" + "codePostal": "60400", + "codeCommune": "60511", + "libelleAcheminement": "PORQUERICOURT", + "nomCommune": "PORQUERICOURT" }, { - "codePostal": "32220", - "codeCommune": "32336", - "libelleAcheminement": "PUYLAUSIC", - "nomCommune": "PUYLAUSIC" + "codePostal": "50660", + "codeCommune": "50388", + "libelleAcheminement": "ORVAL SUR SIENNE", + "nomCommune": "ORVAL SUR SIENNE" }, { - "codePostal": "27300", - "codeCommune": "27460", - "libelleAcheminement": "PLAINVILLE", - "nomCommune": "PLAINVILLE" + "codePostal": "52210", + "codeCommune": "52146", + "libelleAcheminement": "COUPRAY", + "nomCommune": "COUPRAY" }, { - "codePostal": "43350", - "codeCommune": "43216", - "libelleAcheminement": "ST PAULIEN", - "nomCommune": "ST PAULIEN" + "codePostal": "61390", + "codeCommune": "61082", + "libelleAcheminement": "LE CHALANGE", + "nomCommune": "LE CHALANGE" }, { - "codePostal": "56250", - "codeCommune": "56053", - "libelleAcheminement": "ELVEN", - "nomCommune": "ELVEN" + "codePostal": "04150", + "codeCommune": "04169", + "libelleAcheminement": "LA ROCHEGIRON", + "nomCommune": "LA ROCHEGIRON" }, { - "codePostal": "32320", - "codeCommune": "32343", - "libelleAcheminement": "RIGUEPEU", - "nomCommune": "RIGUEPEU" + "codePostal": "60480", + "codeCommune": "60520", + "libelleAcheminement": "LE QUESNEL AUBRY", + "nomCommune": "LE QUESNEL AUBRY" }, { - "codePostal": "27300", - "codeCommune": "27463", - "libelleAcheminement": "PLASNES", - "nomCommune": "PLASNES" + "codePostal": "50310", + "codeCommune": "50390", + "libelleAcheminement": "OZEVILLE", + "nomCommune": "OZEVILLE" }, { - "codePostal": "43380", - "codeCommune": "43222", - "libelleAcheminement": "ST PRIVAT DU DRAGON", - "nomCommune": "ST PRIVAT DU DRAGON" + "codePostal": "52240", + "codeCommune": "52159", + "libelleAcheminement": "CUVES", + "nomCommune": "CUVES" }, { - "codePostal": "56410", - "codeCommune": "56055", - "libelleAcheminement": "ETEL", - "nomCommune": "ETEL" + "codePostal": "61210", + "codeCommune": "61084", + "libelleAcheminement": "CHAMPCERIE", + "nomCommune": "CHAMPCERIE" }, { - "codePostal": "32400", - "codeCommune": "32344", - "libelleAcheminement": "RISCLE", - "nomCommune": "RISCLE" + "codePostal": "04230", + "codeCommune": "04178", + "libelleAcheminement": "ST ETIENNE LES ORGUES", + "nomCommune": "ST ETIENNE LES ORGUES" }, { - "codePostal": "27340", - "codeCommune": "27469", - "libelleAcheminement": "PONT DE L ARCHE", - "nomCommune": "PONT DE L ARCHE" + "codePostal": "60220", + "codeCommune": "60521", + "libelleAcheminement": "QUINCAMPOIX FLEUZY", + "nomCommune": "QUINCAMPOIX FLEUZY" }, { - "codePostal": "43580", - "codeCommune": "43225", - "libelleAcheminement": "ST VENERAND", - "nomCommune": "ST VENERAND" + "codePostal": "50600", + "codeCommune": "50391", + "libelleAcheminement": "GRANDPARIGNY", + "nomCommune": "GRANDPARIGNY" }, { - "codePostal": "56200", - "codeCommune": "56060", - "libelleAcheminement": "LES FOUGERETS", - "nomCommune": "LES FOUGERETS" + "codePostal": "52130", + "codeCommune": "52169", + "libelleAcheminement": "DOMBLAIN", + "nomCommune": "DOMBLAIN" }, { - "codePostal": "32190", - "codeCommune": "32346", - "libelleAcheminement": "ROQUEBRUNE", - "nomCommune": "ROQUEBRUNE" + "codePostal": "61240", + "codeCommune": "61088", + "libelleAcheminement": "CHAMP HAUT", + "nomCommune": "CHAMP HAUT" }, { - "codePostal": "27430", - "codeCommune": "27471", - "libelleAcheminement": "PORTE DE SEINE", - "nomCommune": "PORTE DE SEINE" + "codePostal": "04330", + "codeCommune": "04180", + "libelleAcheminement": "ST JACQUES", + "nomCommune": "ST JACQUES" }, { - "codePostal": "43500", - "codeCommune": "43228", - "libelleAcheminement": "ST VICTOR SUR ARLANC", - "nomCommune": "ST VICTOR SUR ARLANC" + "codePostal": "60810", + "codeCommune": "60525", + "libelleAcheminement": "RARAY", + "nomCommune": "RARAY" }, { - "codePostal": "56200", - "codeCommune": "56061", - "libelleAcheminement": "LA GACILLY", - "nomCommune": "LA GACILLY" + "codePostal": "50190", + "codeCommune": "50394", + "libelleAcheminement": "PERIERS", + "nomCommune": "PERIERS" }, { - "codePostal": "32810", - "codeCommune": "32348", - "libelleAcheminement": "ROQUELAURE", - "nomCommune": "ROQUELAURE" + "codePostal": "52300", + "codeCommune": "52175", + "libelleAcheminement": "DONJEUX", + "nomCommune": "DONJEUX" }, { - "codePostal": "27940", - "codeCommune": "27473", - "libelleAcheminement": "PORT MORT", - "nomCommune": "PORT MORT" + "codePostal": "61140", + "codeCommune": "61096", + "libelleAcheminement": "RIVES D ANDAINE", + "nomCommune": "RIVES D ANDAINE" }, { - "codePostal": "43160", - "codeCommune": "43237", - "libelleAcheminement": "SEMBADEL", - "nomCommune": "SEMBADEL" + "codePostal": "04270", + "codeCommune": "04181", + "libelleAcheminement": "ST JEANNET", + "nomCommune": "ST JEANNET" }, { - "codePostal": "56200", - "codeCommune": "56061", - "libelleAcheminement": "LA GACILLY", - "nomCommune": "LA GACILLY" + "codePostal": "60130", + "codeCommune": "60526", + "libelleAcheminement": "RAVENEL", + "nomCommune": "RAVENEL" }, { - "codePostal": "32170", - "codeCommune": "32355", - "libelleAcheminement": "SADEILLAN", - "nomCommune": "SADEILLAN" + "codePostal": "50370", + "codeCommune": "50399", + "libelleAcheminement": "LE PETIT CELLAND", + "nomCommune": "LE PETIT CELLAND" }, { - "codePostal": "27740", - "codeCommune": "27474", - "libelleAcheminement": "POSES", - "nomCommune": "POSES" + "codePostal": "52290", + "codeCommune": "52182", + "libelleAcheminement": "ECLARON BRAUCOURT STE LIVIERE", + "nomCommune": "ECLARON BRAUCOURT STE LIVIERE" }, { - "codePostal": "43370", - "codeCommune": "43241", - "libelleAcheminement": "SOLIGNAC SUR LOIRE", - "nomCommune": "SOLIGNAC SUR LOIRE" + "codePostal": "61410", + "codeCommune": "61096", + "libelleAcheminement": "RIVES D ANDAINE", + "nomCommune": "RIVES D ANDAINE" }, { - "codePostal": "56420", - "codeCommune": "56071", - "libelleAcheminement": "GUEHENNO", - "nomCommune": "GUEHENNO" + "codePostal": "04270", + "codeCommune": "04182", + "libelleAcheminement": "ST JULIEN D ASSE", + "nomCommune": "ST JULIEN D ASSE" }, { - "codePostal": "32430", - "codeCommune": "32357", - "libelleAcheminement": "STE ANNE", - "nomCommune": "STE ANNE" + "codePostal": "60510", + "codeCommune": "60530", + "libelleAcheminement": "REMERANGLES", + "nomCommune": "REMERANGLES" }, { - "codePostal": "27680", - "codeCommune": "27485", - "libelleAcheminement": "QUILLEBEUF SUR SEINE", - "nomCommune": "QUILLEBEUF SUR SEINE" + "codePostal": "50250", + "codeCommune": "50400", + "libelleAcheminement": "PICAUVILLE", + "nomCommune": "PICAUVILLE" }, { - "codePostal": "43450", - "codeCommune": "43247", - "libelleAcheminement": "TORSIAC", - "nomCommune": "TORSIAC" + "codePostal": "52290", + "codeCommune": "52182", + "libelleAcheminement": "ECLARON BRAUCOURT STE LIVIERE", + "nomCommune": "ECLARON BRAUCOURT STE LIVIERE" }, { - "codePostal": "56380", - "codeCommune": "56075", - "libelleAcheminement": "GUER", - "nomCommune": "GUER" + "codePostal": "61400", + "codeCommune": "61097", + "libelleAcheminement": "LA CHAPELLE MONTLIGEON", + "nomCommune": "LA CHAPELLE MONTLIGEON" }, { - "codePostal": "32300", - "codeCommune": "32361", - "libelleAcheminement": "ST ARROMAN", - "nomCommune": "ST ARROMAN" + "codePostal": "04330", + "codeCommune": "04187", + "libelleAcheminement": "ST LIONS", + "nomCommune": "ST LIONS" }, { - "codePostal": "27380", - "codeCommune": "27487", - "libelleAcheminement": "RADEPONT", - "nomCommune": "RADEPONT" + "codePostal": "60153", + "codeCommune": "60534", + "libelleAcheminement": "RETHONDES", + "nomCommune": "RETHONDES" }, { - "codePostal": "43210", - "codeCommune": "43249", - "libelleAcheminement": "VALPRIVAS", - "nomCommune": "VALPRIVAS" + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { - "codePostal": "56560", - "codeCommune": "56081", - "libelleAcheminement": "GUISCRIFF", - "nomCommune": "GUISCRIFF" + "codePostal": "52270", + "codeCommune": "52187", + "libelleAcheminement": "EPIZON", + "nomCommune": "EPIZON" }, { - "codePostal": "32370", - "codeCommune": "32369", - "libelleAcheminement": "STE CHRISTIE D ARMAGNAC", - "nomCommune": "STE CHRISTIE D ARMAGNAC" + "codePostal": "61230", + "codeCommune": "61108", + "libelleAcheminement": "CISAI ST AUBIN", + "nomCommune": "CISAI ST AUBIN" }, { - "codePostal": "27930", - "codeCommune": "27489", - "libelleAcheminement": "REUILLY", - "nomCommune": "REUILLY" + "codePostal": "06260", + "codeCommune": "04194", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "43230", - "codeCommune": "43250", - "libelleAcheminement": "VALS LE CHASTEL", - "nomCommune": "VALS LE CHASTEL" + "codePostal": "60170", + "codeCommune": "60537", + "libelleAcheminement": "RIBECOURT DRESLINCOURT", + "nomCommune": "RIBECOURT DRESLINCOURT" }, { - "codePostal": "56170", - "codeCommune": "56085", - "libelleAcheminement": "ILE DE HOEDIC", - "nomCommune": "HOEDIC" + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { - "codePostal": "32220", - "codeCommune": "32387", - "libelleAcheminement": "ST LOUBE", - "nomCommune": "ST LOUBE" + "codePostal": "52190", + "codeCommune": "52189", + "libelleAcheminement": "LE VAL D ESNOMS", + "nomCommune": "LE VAL D ESNOMS" }, { - "codePostal": "27350", - "codeCommune": "27497", - "libelleAcheminement": "ROUGEMONTIERS", - "nomCommune": "ROUGEMONTIERS" + "codePostal": "61200", + "codeCommune": "61114", + "libelleAcheminement": "COMMEAUX", + "nomCommune": "COMMEAUX" }, { - "codePostal": "43270", - "codeCommune": "43252", - "libelleAcheminement": "VARENNES ST HONORAT", - "nomCommune": "VARENNES ST HONORAT" + "codePostal": "04400", + "codeCommune": "04195", + "libelleAcheminement": "ST PONS", + "nomCommune": "ST PONS" }, { - "codePostal": "56650", - "codeCommune": "56090", - "libelleAcheminement": "INZINZAC LOCHRIST", - "nomCommune": "INZINZAC LOCHRIST" + "codePostal": "60490", + "codeCommune": "60538", + "libelleAcheminement": "RICQUEBOURG", + "nomCommune": "RICQUEBOURG" }, { - "codePostal": "32200", - "codeCommune": "32388", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "50300", + "codeCommune": "50411", + "libelleAcheminement": "PONTS", + "nomCommune": "PONTS" }, { - "codePostal": "27110", - "codeCommune": "27498", - "libelleAcheminement": "ROUGE PERRIERS", - "nomCommune": "ROUGE PERRIERS" + "codePostal": "52410", + "codeCommune": "52194", + "libelleAcheminement": "EURVILLE BIENVILLE", + "nomCommune": "EURVILLE BIENVILLE" }, { - "codePostal": "44170", - "codeCommune": "44001", - "libelleAcheminement": "ABBARETZ", - "nomCommune": "ABBARETZ" + "codePostal": "61110", + "codeCommune": "61116", + "libelleAcheminement": "SABLONS SUR HUISNE", + "nomCommune": "SABLONS SUR HUISNE" }, { - "codePostal": "56120", - "codeCommune": "56091", - "libelleAcheminement": "JOSSELIN", - "nomCommune": "JOSSELIN" + "codePostal": "04220", + "codeCommune": "04197", + "libelleAcheminement": "STE TULLE", + "nomCommune": "STE TULLE" }, { - "codePostal": "32110", - "codeCommune": "32390", - "libelleAcheminement": "ST MARTIN D ARMAGNAC", - "nomCommune": "ST MARTIN D ARMAGNAC" + "codePostal": "60410", + "codeCommune": "60541", + "libelleAcheminement": "ROBERVAL", + "nomCommune": "ROBERVAL" }, { - "codePostal": "27350", - "codeCommune": "27500", - "libelleAcheminement": "ROUTOT", - "nomCommune": "ROUTOT" + "codePostal": "50580", + "codeCommune": "50412", + "libelleAcheminement": "PORT BAIL SUR MER", + "nomCommune": "PORT BAIL SUR MER" }, { - "codePostal": "44130", - "codeCommune": "44015", - "libelleAcheminement": "BLAIN", - "nomCommune": "BLAIN" + "codePostal": "52260", + "codeCommune": "52196", + "libelleAcheminement": "FAVEROLLES", + "nomCommune": "FAVEROLLES" }, { - "codePostal": "56630", - "codeCommune": "56100", - "libelleAcheminement": "LANGONNET", - "nomCommune": "LANGONNET" + "codePostal": "61400", + "codeCommune": "61118", + "libelleAcheminement": "CORBON", + "nomCommune": "CORBON" }, { - "codePostal": "32450", - "codeCommune": "32392", - "libelleAcheminement": "ST MARTIN GIMOIS", - "nomCommune": "ST MARTIN GIMOIS" + "codePostal": "04150", + "codeCommune": "04201", + "libelleAcheminement": "SAUMANE", + "nomCommune": "SAUMANE" }, { - "codePostal": "27950", - "codeCommune": "27525", - "libelleAcheminement": "STE COLOMBE PRES VERNON", - "nomCommune": "STE COLOMBE PRES VERNON" + "codePostal": "60620", + "codeCommune": "60548", + "libelleAcheminement": "ROSOY EN MULTIEN", + "nomCommune": "ROSOY EN MULTIEN" }, { - "codePostal": "44130", - "codeCommune": "44015", - "libelleAcheminement": "BLAIN", - "nomCommune": "BLAIN" + "codePostal": "50580", + "codeCommune": "50412", + "libelleAcheminement": "PORT BAIL SUR MER", + "nomCommune": "PORT BAIL SUR MER" }, { - "codePostal": "56120", - "codeCommune": "56102", - "libelleAcheminement": "FORGES DE LANOUEE", - "nomCommune": "FORGES DE LANOUEE" + "codePostal": "52500", + "codeCommune": "52197", + "libelleAcheminement": "FAYL BILLOT", + "nomCommune": "FAYL BILLOT" }, { - "codePostal": "32300", - "codeCommune": "32401", - "libelleAcheminement": "ST OST", - "nomCommune": "ST OST" + "codePostal": "61230", + "codeCommune": "61138", + "libelleAcheminement": "CROISILLES", + "nomCommune": "CROISILLES" }, { - "codePostal": "27140", - "codeCommune": "27533", - "libelleAcheminement": "ST DENIS LE FERMENT", - "nomCommune": "ST DENIS LE FERMENT" + "codePostal": "04150", + "codeCommune": "04208", + "libelleAcheminement": "SIMIANE LA ROTONDE", + "nomCommune": "SIMIANE LA ROTONDE" }, { - "codePostal": "44260", - "codeCommune": "44019", - "libelleAcheminement": "BOUEE", - "nomCommune": "BOUEE" + "codePostal": "60117", + "codeCommune": "60561", + "libelleAcheminement": "RUSSY BEMONT", + "nomCommune": "RUSSY BEMONT" }, { - "codePostal": "56240", - "codeCommune": "56104", - "libelleAcheminement": "LANVAUDAN", - "nomCommune": "LANVAUDAN" + "codePostal": "50220", + "codeCommune": "50413", + "libelleAcheminement": "PRECEY", + "nomCommune": "PRECEY" }, { - "codePostal": "32270", - "codeCommune": "32406", - "libelleAcheminement": "ST SAUVY", - "nomCommune": "ST SAUVY" + "codePostal": "52400", + "codeCommune": "52208", + "libelleAcheminement": "FRESNES SUR APANCE", + "nomCommune": "FRESNES SUR APANCE" }, { - "codePostal": "27800", - "codeCommune": "27536", - "libelleAcheminement": "ST ELOI DE FOURQUES", - "nomCommune": "ST ELOI DE FOURQUES" + "codePostal": "61250", + "codeCommune": "61141", + "libelleAcheminement": "CUISSAI", + "nomCommune": "CUISSAI" }, { - "codePostal": "44830", - "codeCommune": "44024", - "libelleAcheminement": "BRAINS", - "nomCommune": "BRAINS" + "codePostal": "04200", + "codeCommune": "04209", + "libelleAcheminement": "SISTERON", + "nomCommune": "SISTERON" }, { - "codePostal": "56230", - "codeCommune": "56108", - "libelleAcheminement": "LARRE", - "nomCommune": "LARRE" + "codePostal": "60700", + "codeCommune": "60562", + "libelleAcheminement": "SACY LE GRAND", + "nomCommune": "SACY LE GRAND" }, { - "codePostal": "32220", - "codeCommune": "32407", - "libelleAcheminement": "ST SOULAN", - "nomCommune": "ST SOULAN" + "codePostal": "50660", + "codeCommune": "50419", + "libelleAcheminement": "QUETTREVILLE SUR SIENNE", + "nomCommune": "QUETTREVILLE SUR SIENNE" }, { - "codePostal": "27430", - "codeCommune": "27537", - "libelleAcheminement": "ST ETIENNE DU VAUVRAY", - "nomCommune": "ST ETIENNE DU VAUVRAY" + "codePostal": "52500", + "codeCommune": "52223", + "libelleAcheminement": "GILLEY", + "nomCommune": "GILLEY" }, { - "codePostal": "44470", - "codeCommune": "44026", - "libelleAcheminement": "CARQUEFOU", - "nomCommune": "CARQUEFOU" + "codePostal": "61100", + "codeCommune": "61148", + "libelleAcheminement": "DURCET", + "nomCommune": "DURCET" }, { - "codePostal": "56190", - "codeCommune": "56109", - "libelleAcheminement": "LAUZACH", - "nomCommune": "LAUZACH" + "codePostal": "04120", + "codeCommune": "04210", + "libelleAcheminement": "SOLEILHAS", + "nomCommune": "SOLEILHAS" }, { - "codePostal": "32370", - "codeCommune": "32408", - "libelleAcheminement": "SALLES D ARMAGNAC", - "nomCommune": "SALLES D ARMAGNAC" + "codePostal": "60650", + "codeCommune": "60567", + "libelleAcheminement": "ST AUBIN EN BRAY", + "nomCommune": "ST AUBIN EN BRAY" }, { - "codePostal": "27450", - "codeCommune": "27538", - "libelleAcheminement": "ST ETIENNE L ALLIER", - "nomCommune": "ST ETIENNE L ALLIER" + "codePostal": "50500", + "codeCommune": "50422", + "libelleAcheminement": "RAIDS", + "nomCommune": "RAIDS" }, { - "codePostal": "44390", - "codeCommune": "44027", - "libelleAcheminement": "CASSON", - "nomCommune": "CASSON" + "codePostal": "52600", + "codeCommune": "52240", + "libelleAcheminement": "HEUILLEY LE GRAND", + "nomCommune": "HEUILLEY LE GRAND" }, { - "codePostal": "56160", - "codeCommune": "56113", - "libelleAcheminement": "LOCMALO", - "nomCommune": "LOCMALO" + "codePostal": "61440", + "codeCommune": "61149", + "libelleAcheminement": "ECHALOU", + "nomCommune": "ECHALOU" }, { - "codePostal": "32450", - "codeCommune": "32412", - "libelleAcheminement": "SARAMON", - "nomCommune": "SARAMON" + "codePostal": "04170", + "codeCommune": "04218", + "libelleAcheminement": "THORAME BASSE", + "nomCommune": "THORAME BASSE" }, { - "codePostal": "27620", - "codeCommune": "27540", - "libelleAcheminement": "STE GENEVIEVE LES GASNY", - "nomCommune": "STE GENEVIEVE LES GASNY" + "codePostal": "60149", + "codeCommune": "60570", + "libelleAcheminement": "ST CREPIN IBOUVILLERS", + "nomCommune": "ST CREPIN IBOUVILLERS" }, { - "codePostal": "44260", - "codeCommune": "44033", - "libelleAcheminement": "LA CHAPELLE LAUNAY", - "nomCommune": "LA CHAPELLE LAUNAY" + "codePostal": "50170", + "codeCommune": "50443", + "libelleAcheminement": "SACEY", + "nomCommune": "SACEY" }, { - "codePostal": "56800", - "codeCommune": "56122", - "libelleAcheminement": "LOYAT", - "nomCommune": "LOYAT" + "codePostal": "52290", + "codeCommune": "52244", + "libelleAcheminement": "HUMBECOURT", + "nomCommune": "HUMBECOURT" }, { - "codePostal": "32420", - "codeCommune": "32433", - "libelleAcheminement": "SIMORRE", - "nomCommune": "SIMORRE" + "codePostal": "61160", + "codeCommune": "61152", + "libelleAcheminement": "ECORCHES", + "nomCommune": "ECORCHES" }, { - "codePostal": "27560", - "codeCommune": "27541", - "libelleAcheminement": "LE MESNIL ST JEAN", - "nomCommune": "LE MESNIL ST JEAN" + "codePostal": "04250", + "codeCommune": "04222", + "libelleAcheminement": "TURRIERS", + "nomCommune": "TURRIERS" }, { - "codePostal": "44240", - "codeCommune": "44035", - "libelleAcheminement": "LA CHAPELLE SUR ERDRE", - "nomCommune": "LA CHAPELLE SUR ERDRE" + "codePostal": "60650", + "codeCommune": "60576", + "libelleAcheminement": "ST GERMAIN LA POTERIE", + "nomCommune": "ST GERMAIN LA POTERIE" }, { - "codePostal": "56140", - "codeCommune": "56124", - "libelleAcheminement": "MALESTROIT", - "nomCommune": "MALESTROIT" + "codePostal": "50160", + "codeCommune": "50444", + "libelleAcheminement": "ST AMAND VILLAGES", + "nomCommune": "ST AMAND VILLAGES" }, { - "codePostal": "32120", - "codeCommune": "32436", - "libelleAcheminement": "SOLOMIAC", - "nomCommune": "SOLOMIAC" + "codePostal": "52150", + "codeCommune": "52247", + "libelleAcheminement": "ILLOUD", + "nomCommune": "ILLOUD" }, { - "codePostal": "27220", - "codeCommune": "27544", - "libelleAcheminement": "ST GERMAIN DE FRESNEY", - "nomCommune": "ST GERMAIN DE FRESNEY" + "codePostal": "61150", + "codeCommune": "61153", + "libelleAcheminement": "ECOUCHE LES VALLEES", + "nomCommune": "ECOUCHE LES VALLEES" }, { - "codePostal": "44690", - "codeCommune": "44037", - "libelleAcheminement": "CHATEAU THEBAUD", - "nomCommune": "CHATEAU THEBAUD" + "codePostal": "04400", + "codeCommune": "04226", + "libelleAcheminement": "UVERNET FOURS", + "nomCommune": "UVERNET FOURS" }, { - "codePostal": "56700", - "codeCommune": "56130", - "libelleAcheminement": "MERLEVENEZ", - "nomCommune": "MERLEVENEZ" + "codePostal": "60850", + "codeCommune": "60577", + "libelleAcheminement": "ST GERMER DE FLY", + "nomCommune": "ST GERMER DE FLY" }, { - "codePostal": "32400", - "codeCommune": "32439", - "libelleAcheminement": "TARSAC", - "nomCommune": "TARSAC" + "codePostal": "50500", + "codeCommune": "50445", + "libelleAcheminement": "ST ANDRE DE BOHON", + "nomCommune": "ST ANDRE DE BOHON" }, { - "codePostal": "27950", - "codeCommune": "27554", - "libelleAcheminement": "LA CHAPELLE LONGUEVILLE", - "nomCommune": "LA CHAPELLE LONGUEVILLE" + "codePostal": "52400", + "codeCommune": "52264", + "libelleAcheminement": "LANEUVELLE", + "nomCommune": "LANEUVELLE" }, { - "codePostal": "44640", - "codeCommune": "44039", - "libelleAcheminement": "CHEIX EN RETZ", - "nomCommune": "CHEIX EN RETZ" + "codePostal": "61600", + "codeCommune": "61158", + "libelleAcheminement": "FAVEROLLES", + "nomCommune": "FAVEROLLES" }, { - "codePostal": "56690", - "codeCommune": "56148", - "libelleAcheminement": "NOSTANG", - "nomCommune": "NOSTANG" + "codePostal": "04200", + "codeCommune": "04229", + "libelleAcheminement": "VALBELLE", + "nomCommune": "VALBELLE" }, { - "codePostal": "32170", - "codeCommune": "32446", - "libelleAcheminement": "TILLAC", - "nomCommune": "TILLAC" + "codePostal": "60155", + "codeCommune": "60583", + "libelleAcheminement": "ST LEGER EN BRAY", + "nomCommune": "ST LEGER EN BRAY" }, { - "codePostal": "27390", - "codeCommune": "27556", - "libelleAcheminement": "ST LAURENT DU TENCEMENT", - "nomCommune": "ST LAURENT DU TENCEMENT" + "codePostal": "50730", + "codeCommune": "50452", + "libelleAcheminement": "ST BRICE DE LANDELLES", + "nomCommune": "ST BRICE DE LANDELLES" }, { - "codePostal": "44360", - "codeCommune": "44045", - "libelleAcheminement": "CORDEMAIS", - "nomCommune": "CORDEMAIS" + "codePostal": "52200", + "codeCommune": "52269", + "libelleAcheminement": "LANGRES", + "nomCommune": "LANGRES" }, { - "codePostal": "56190", - "codeCommune": "56149", - "libelleAcheminement": "NOYAL MUZILLAC", - "nomCommune": "NOYAL MUZILLAC" + "codePostal": "61450", + "codeCommune": "61163", + "libelleAcheminement": "LA FERRIERE AUX ETANGS", + "nomCommune": "LA FERRIERE AUX ETANGS" }, { - "codePostal": "32450", - "codeCommune": "32447", - "libelleAcheminement": "TIRENT PONTEJAC", - "nomCommune": "TIRENT PONTEJAC" + "codePostal": "05460", + "codeCommune": "05001", + "libelleAcheminement": "ABRIES RISTOLAS", + "nomCommune": "ABRIES RISTOLAS" }, { - "codePostal": "27210", - "codeCommune": "27561", - "libelleAcheminement": "ST MACLOU", - "nomCommune": "ST MACLOU" + "codePostal": "60860", + "codeCommune": "60590", + "libelleAcheminement": "ST OMER EN CHAUSSEE", + "nomCommune": "ST OMER EN CHAUSSEE" }, { - "codePostal": "44560", - "codeCommune": "44046", - "libelleAcheminement": "CORSEPT", - "nomCommune": "CORSEPT" + "codePostal": "50340", + "codeCommune": "50454", + "libelleAcheminement": "ST CHRISTOPHE DU FOC", + "nomCommune": "ST CHRISTOPHE DU FOC" }, { - "codePostal": "56360", - "codeCommune": "56152", - "libelleAcheminement": "LE PALAIS", - "nomCommune": "LE PALAIS" + "codePostal": "52800", + "codeCommune": "52271", + "libelleAcheminement": "LANQUES SUR ROGNON", + "nomCommune": "LANQUES SUR ROGNON" }, { - "codePostal": "32240", - "codeCommune": "32449", - "libelleAcheminement": "TOUJOUSE", - "nomCommune": "TOUJOUSE" + "codePostal": "61420", + "codeCommune": "61165", + "libelleAcheminement": "LA FERRIERE BOCHARD", + "nomCommune": "LA FERRIERE BOCHARD" }, { - "codePostal": "27680", - "codeCommune": "27577", - "libelleAcheminement": "STE OPPORTUNE LA MARE", - "nomCommune": "STE OPPORTUNE LA MARE" + "codePostal": "05470", + "codeCommune": "05003", + "libelleAcheminement": "AIGUILLES", + "nomCommune": "AIGUILLES" }, { - "codePostal": "44521", - "codeCommune": "44048", - "libelleAcheminement": "COUFFE", - "nomCommune": "COUFFE" + "codePostal": "60650", + "codeCommune": "60591", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "56420", - "codeCommune": "56157", - "libelleAcheminement": "PLAUDREN", - "nomCommune": "PLAUDREN" + "codePostal": "50140", + "codeCommune": "50456", + "libelleAcheminement": "ST CLEMENT RANCOUDRAY", + "nomCommune": "ST CLEMENT RANCOUDRAY" }, { - "codePostal": "32420", - "codeCommune": "32451", - "libelleAcheminement": "TOURNAN", - "nomCommune": "TOURNAN" + "codePostal": "52120", + "codeCommune": "52274", + "libelleAcheminement": "LATRECEY ORMOY SUR AUBE", + "nomCommune": "LATRECEY ORMOY SUR AUBE" }, { - "codePostal": "27160", - "codeCommune": "27578", - "libelleAcheminement": "STE MARIE D ATTEZ", - "nomCommune": "STE MARIE D ATTEZ" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "44480", - "codeCommune": "44052", - "libelleAcheminement": "DONGES", - "nomCommune": "DONGES" + "codePostal": "05800", + "codeCommune": "05009", + "libelleAcheminement": "ASPRES LES CORPS", + "nomCommune": "ASPRES LES CORPS" }, { - "codePostal": "56400", - "codeCommune": "56161", - "libelleAcheminement": "PLOEMEL", - "nomCommune": "PLOEMEL" + "codePostal": "60850", + "codeCommune": "60592", + "libelleAcheminement": "ST PIERRE ES CHAMPS", + "nomCommune": "ST PIERRE ES CHAMPS" }, { - "codePostal": "32450", - "codeCommune": "32454", - "libelleAcheminement": "TRAVERSERES", - "nomCommune": "TRAVERSERES" + "codePostal": "50390", + "codeCommune": "50457", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "27160", - "codeCommune": "27578", - "libelleAcheminement": "STE MARIE D ATTEZ", - "nomCommune": "STE MARIE D ATTEZ" + "codePostal": "52150", + "codeCommune": "52287", + "libelleAcheminement": "LEVECOURT", + "nomCommune": "LEVECOURT" }, { - "codePostal": "44500", - "codeCommune": "44055", - "libelleAcheminement": "LA BAULE", - "nomCommune": "LA BAULE ESCOUBLAC" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "56240", - "codeCommune": "56166", - "libelleAcheminement": "PLOUAY", - "nomCommune": "PLOUAY" + "codePostal": "05230", + "codeCommune": "05011", + "libelleAcheminement": "AVANCON", + "nomCommune": "AVANCON" }, { - "codePostal": "32230", - "codeCommune": "32455", - "libelleAcheminement": "TRONCENS", - "nomCommune": "TRONCENS" + "codePostal": "60350", + "codeCommune": "60593", + "libelleAcheminement": "ST PIERRE LES BITRY", + "nomCommune": "ST PIERRE LES BITRY" }, { - "codePostal": "27670", - "codeCommune": "27582", - "libelleAcheminement": "ST OUEN DU TILLEUL", - "nomCommune": "ST OUEN DU TILLEUL" + "codePostal": "50000", + "codeCommune": "50475", + "libelleAcheminement": "ST GEORGES MONTCOCQ", + "nomCommune": "ST GEORGES MONTCOCQ" }, { - "codePostal": "44290", - "codeCommune": "44067", - "libelleAcheminement": "GUEMENE PENFAO", - "nomCommune": "GUEMENE PENFAO" + "codePostal": "52800", + "codeCommune": "52295", + "libelleAcheminement": "LOUVIERES", + "nomCommune": "LOUVIERES" }, { - "codePostal": "56930", - "codeCommune": "56173", - "libelleAcheminement": "PLUMELIAU BIEUZY", - "nomCommune": "PLUMELIAU BIEUZY" + "codePostal": "61410", + "codeCommune": "61168", + "libelleAcheminement": "LA FERTE MACE", + "nomCommune": "LA FERTE MACE" }, { - "codePostal": "32190", - "codeCommune": "32462", - "libelleAcheminement": "VIC FEZENSAC", - "nomCommune": "VIC FEZENSAC" + "codePostal": "05230", + "codeCommune": "05017", + "libelleAcheminement": "LA BATIE NEUVE", + "nomCommune": "LA BATIE NEUVE" }, { - "codePostal": "27920", - "codeCommune": "27589", - "libelleAcheminement": "ST PIERRE DE BAILLEUL", - "nomCommune": "ST PIERRE DE BAILLEUL" + "codePostal": "60380", + "codeCommune": "60594", + "libelleAcheminement": "ST QUENTIN DES PRES", + "nomCommune": "ST QUENTIN DES PRES" }, { - "codePostal": "44410", - "codeCommune": "44072", - "libelleAcheminement": "HERBIGNAC", - "nomCommune": "HERBIGNAC" + "codePostal": "50700", + "codeCommune": "50478", + "libelleAcheminement": "ST GERMAIN DE TOURNEBUT", + "nomCommune": "ST GERMAIN DE TOURNEBUT" }, { - "codePostal": "56500", - "codeCommune": "56174", - "libelleAcheminement": "PLUMELIN", - "nomCommune": "PLUMELIN" + "codePostal": "52700", + "codeCommune": "52313", + "libelleAcheminement": "MAREILLES", + "nomCommune": "MAREILLES" }, { - "codePostal": "32300", - "codeCommune": "32466", - "libelleAcheminement": "VIOZAN", - "nomCommune": "VIOZAN" + "codePostal": "61100", + "codeCommune": "61169", + "libelleAcheminement": "FLERS", + "nomCommune": "FLERS" }, { - "codePostal": "27390", - "codeCommune": "27590", - "libelleAcheminement": "ST PIERRE DE CERNIERES", - "nomCommune": "ST PIERRE DE CERNIERES" + "codePostal": "05150", + "codeCommune": "05024", + "libelleAcheminement": "VALDOULE", + "nomCommune": "VALDOULE" }, { - "codePostal": "44610", - "codeCommune": "44074", - "libelleAcheminement": "INDRE", - "nomCommune": "INDRE" + "codePostal": "60220", + "codeCommune": "60596", + "libelleAcheminement": "ST SAMSON LA POTERIE", + "nomCommune": "ST SAMSON LA POTERIE" }, { - "codePostal": "56400", - "codeCommune": "56176", - "libelleAcheminement": "PLUNERET", - "nomCommune": "PLUNERET" + "codePostal": "50240", + "codeCommune": "50487", + "libelleAcheminement": "ST JAMES", + "nomCommune": "ST JAMES" }, { - "codePostal": "33500", - "codeCommune": "33015", - "libelleAcheminement": "ARVEYRES", - "nomCommune": "ARVEYRES" + "codePostal": "52800", + "codeCommune": "52315", + "libelleAcheminement": "MARNAY SUR MARNE", + "nomCommune": "MARNAY SUR MARNE" }, { - "codePostal": "27260", - "codeCommune": "27591", - "libelleAcheminement": "ST PIERRE DE CORMEILLES", - "nomCommune": "ST PIERRE DE CORMEILLES" + "codePostal": "61160", + "codeCommune": "61171", + "libelleAcheminement": "FONTAINE LES BASSETS", + "nomCommune": "FONTAINE LES BASSETS" }, { - "codePostal": "44670", - "codeCommune": "44078", - "libelleAcheminement": "JUIGNE DES MOUTIERS", - "nomCommune": "JUIGNE DES MOUTIERS" + "codePostal": "05500", + "codeCommune": "05025", + "libelleAcheminement": "BUISSARD", + "nomCommune": "BUISSARD" }, { - "codePostal": "56230", - "codeCommune": "56184", - "libelleAcheminement": "QUESTEMBERT", - "nomCommune": "QUESTEMBERT" + "codePostal": "60320", + "codeCommune": "60597", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "33240", - "codeCommune": "33016", - "libelleAcheminement": "ASQUES", - "nomCommune": "ASQUES" + "codePostal": "50240", + "codeCommune": "50487", + "libelleAcheminement": "ST JAMES", + "nomCommune": "ST JAMES" }, { - "codePostal": "27800", - "codeCommune": "27592", - "libelleAcheminement": "ST PIERRE DE SALERNE", - "nomCommune": "ST PIERRE DE SALERNE" + "codePostal": "52240", + "codeCommune": "52319", + "libelleAcheminement": "MENNOUVEAUX", + "nomCommune": "MENNOUVEAUX" }, { - "codePostal": "44430", - "codeCommune": "44084", - "libelleAcheminement": "LE LOROUX BOTTEREAU", - "nomCommune": "LE LOROUX BOTTEREAU" + "codePostal": "61390", + "codeCommune": "61183", + "libelleAcheminement": "GAPREE", + "nomCommune": "GAPREE" }, { - "codePostal": "56460", - "codeCommune": "56197", - "libelleAcheminement": "VAL D OUST", - "nomCommune": "VAL D OUST" + "codePostal": "05400", + "codeCommune": "05028", + "libelleAcheminement": "CHABESTAN", + "nomCommune": "CHABESTAN" }, { - "codePostal": "33430", - "codeCommune": "33017", - "libelleAcheminement": "AUBIAC", - "nomCommune": "AUBIAC" + "codePostal": "60400", + "codeCommune": "60610", + "libelleAcheminement": "SEMPIGNY", + "nomCommune": "SEMPIGNY" }, { - "codePostal": "27180", - "codeCommune": "27602", - "libelleAcheminement": "ST SEBASTIEN DE MORSENT", - "nomCommune": "ST SEBASTIEN DE MORSENT" + "codePostal": "50300", + "codeCommune": "50489", + "libelleAcheminement": "ST JEAN DE LA HAIZE", + "nomCommune": "ST JEAN DE LA HAIZE" }, { - "codePostal": "44590", - "codeCommune": "44086", - "libelleAcheminement": "LUSANGER", - "nomCommune": "LUSANGER" + "codePostal": "52310", + "codeCommune": "52322", + "libelleAcheminement": "MEURES", + "nomCommune": "MEURES" }, { - "codePostal": "56580", - "codeCommune": "56198", - "libelleAcheminement": "ROHAN", - "nomCommune": "ROHAN" + "codePostal": "61150", + "codeCommune": "61194", + "libelleAcheminement": "MONTS SUR ORNE", + "nomCommune": "MONTS SUR ORNE" }, { - "codePostal": "33480", - "codeCommune": "33022", - "libelleAcheminement": "AVENSAN", - "nomCommune": "AVENSAN" + "codePostal": "05310", + "codeCommune": "05031", + "libelleAcheminement": "CHAMPCELLA", + "nomCommune": "CHAMPCELLA" }, { - "codePostal": "27130", - "codeCommune": "27610", - "libelleAcheminement": "ST VICTOR SUR AVRE", - "nomCommune": "ST VICTOR SUR AVRE" + "codePostal": "60650", + "codeCommune": "60611", + "libelleAcheminement": "SENANTES", + "nomCommune": "SENANTES" }, { - "codePostal": "44690", - "codeCommune": "44088", - "libelleAcheminement": "MAISDON SUR SEVRE", - "nomCommune": "MAISDON SUR SEVRE" + "codePostal": "50810", + "codeCommune": "50492", + "libelleAcheminement": "ST JEAN D ELLE", + "nomCommune": "ST JEAN D ELLE" }, { - "codePostal": "56140", - "codeCommune": "56200", - "libelleAcheminement": "RUFFIAC", - "nomCommune": "RUFFIAC" + "codePostal": "52220", + "codeCommune": "52331", + "libelleAcheminement": "LA PORTE DU DER", + "nomCommune": "LA PORTE DU DER" }, { - "codePostal": "33190", - "codeCommune": "33024", - "libelleAcheminement": "BAGAS", - "nomCommune": "BAGAS" + "codePostal": "61210", + "codeCommune": "61199", + "libelleAcheminement": "HABLOVILLE", + "nomCommune": "HABLOVILLE" }, { - "codePostal": "27150", - "codeCommune": "27617", - "libelleAcheminement": "SAUSSAY LA CAMPAGNE", - "nomCommune": "SAUSSAY LA CAMPAGNE" + "codePostal": "05350", + "codeCommune": "05038", + "libelleAcheminement": "CHATEAU VILLE VIEILLE", + "nomCommune": "CHATEAU VILLE VIEILLE" }, { - "codePostal": "44522", - "codeCommune": "44096", - "libelleAcheminement": "MESANGER", - "nomCommune": "MESANGER" + "codePostal": "60590", + "codeCommune": "60616", + "libelleAcheminement": "SERIFONTAINE", + "nomCommune": "SERIFONTAINE" }, { - "codePostal": "56480", - "codeCommune": "56203", - "libelleAcheminement": "ST AIGNAN", - "nomCommune": "ST AIGNAN" + "codePostal": "50810", + "codeCommune": "50492", + "libelleAcheminement": "ST JEAN D ELLE", + "nomCommune": "ST JEAN D ELLE" }, { - "codePostal": "33760", - "codeCommune": "33025", - "libelleAcheminement": "BAIGNEAUX", - "nomCommune": "BAIGNEAUX" + "codePostal": "52140", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "27220", - "codeCommune": "27621", - "libelleAcheminement": "SEREZ", - "nomCommune": "SEREZ" + "codePostal": "61190", + "codeCommune": "61208", + "libelleAcheminement": "IRAI", + "nomCommune": "IRAI" }, { - "codePostal": "44690", - "codeCommune": "44100", - "libelleAcheminement": "MONNIERES", - "nomCommune": "MONNIERES" + "codePostal": "05300", + "codeCommune": "05047", + "libelleAcheminement": "EOURRES", + "nomCommune": "EOURRES" }, { - "codePostal": "56500", - "codeCommune": "56204", - "libelleAcheminement": "ST ALLOUESTRE", - "nomCommune": "ST ALLOUESTRE" + "codePostal": "60330", + "codeCommune": "60619", + "libelleAcheminement": "SILLY LE LONG", + "nomCommune": "SILLY LE LONG" }, { - "codePostal": "33880", - "codeCommune": "33033", - "libelleAcheminement": "BAURECH", - "nomCommune": "BAURECH" + "codePostal": "50420", + "codeCommune": "50504", + "libelleAcheminement": "ST LOUET SUR VIRE", + "nomCommune": "ST LOUET SUR VIRE" }, { - "codePostal": "27370", - "codeCommune": "27638", - "libelleAcheminement": "LE THUIT DE L OISON", - "nomCommune": "LE THUIT DE L OISON" + "codePostal": "52140", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "44620", - "codeCommune": "44101", - "libelleAcheminement": "LA MONTAGNE", - "nomCommune": "LA MONTAGNE" + "codePostal": "61330", + "codeCommune": "61211", + "libelleAcheminement": "JUVIGNY VAL D ANDAINE", + "nomCommune": "JUVIGNY VAL D ANDAINE" }, { - "codePostal": "56380", - "codeCommune": "56226", - "libelleAcheminement": "ST MALO DE BEIGNON", - "nomCommune": "ST MALO DE BEIGNON" + "codePostal": "05700", + "codeCommune": "05048", + "libelleAcheminement": "L EPINE", + "nomCommune": "L EPINE" }, { - "codePostal": "33430", - "codeCommune": "33036", - "libelleAcheminement": "BAZAS", - "nomCommune": "BAZAS" + "codePostal": "60380", + "codeCommune": "60623", + "libelleAcheminement": "SONGEONS", + "nomCommune": "SONGEONS" }, { - "codePostal": "27370", - "codeCommune": "27638", - "libelleAcheminement": "LE THUIT DE L OISON", - "nomCommune": "LE THUIT DE L OISON" + "codePostal": "50300", + "codeCommune": "50505", + "libelleAcheminement": "ST LOUP", + "nomCommune": "ST LOUP" }, { - "codePostal": "44560", - "codeCommune": "44116", - "libelleAcheminement": "PAIMBOEUF", - "nomCommune": "PAIMBOEUF" + "codePostal": "52240", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "56490", - "codeCommune": "56227", - "libelleAcheminement": "ST MALO DES TROIS FONTAINES", - "nomCommune": "ST MALO DES TROIS FONTAINES" + "codePostal": "61200", + "codeCommune": "61212", + "libelleAcheminement": "JUVIGNY SUR ORNE", + "nomCommune": "JUVIGNY SUR ORNE" }, { - "codePostal": "33760", - "codeCommune": "33044", - "libelleAcheminement": "BELLEFOND", - "nomCommune": "BELLEFOND" + "codePostal": "05110", + "codeCommune": "05049", + "libelleAcheminement": "ESPARRON", + "nomCommune": "ESPARRON" }, { - "codePostal": "27110", - "codeCommune": "27641", - "libelleAcheminement": "LE TILLEUL LAMBERT", - "nomCommune": "LE TILLEUL LAMBERT" + "codePostal": "60380", + "codeCommune": "60624", + "libelleAcheminement": "SULLY", + "nomCommune": "SULLY" }, { - "codePostal": "44770", - "codeCommune": "44126", - "libelleAcheminement": "LA PLAINE SUR MER", - "nomCommune": "LA PLAINE SUR MER" + "codePostal": "50310", + "codeCommune": "50507", + "libelleAcheminement": "ST MARCOUF", + "nomCommune": "ST MARCOUF" }, { - "codePostal": "56470", - "codeCommune": "56233", - "libelleAcheminement": "ST PHILIBERT", - "nomCommune": "ST PHILIBERT" + "codePostal": "52110", + "codeCommune": "52341", + "libelleAcheminement": "MORANCOURT", + "nomCommune": "MORANCOURT" }, { - "codePostal": "33350", - "codeCommune": "33045", - "libelleAcheminement": "BELVES DE CASTILLON", - "nomCommune": "BELVES DE CASTILLON" + "codePostal": "61320", + "codeCommune": "61213", + "libelleAcheminement": "LALACELLE", + "nomCommune": "LALACELLE" }, { - "codePostal": "27440", - "codeCommune": "27649", - "libelleAcheminement": "TOUFFREVILLE", - "nomCommune": "TOUFFREVILLE" + "codePostal": "05300", + "codeCommune": "05053", + "libelleAcheminement": "GARDE COLOMBE", + "nomCommune": "GARDE COLOMBE" }, { - "codePostal": "44140", - "codeCommune": "44127", - "libelleAcheminement": "LA PLANCHE", - "nomCommune": "LA PLANCHE" + "codePostal": "60590", + "codeCommune": "60626", + "libelleAcheminement": "TALMONTIERS", + "nomCommune": "TALMONTIERS" }, { - "codePostal": "56120", - "codeCommune": "56236", - "libelleAcheminement": "ST SERVANT", - "nomCommune": "ST SERVANT" + "codePostal": "50210", + "codeCommune": "50513", + "libelleAcheminement": "ST MARTIN DE CENILLY", + "nomCommune": "ST MARTIN DE CENILLY" }, { - "codePostal": "33750", - "codeCommune": "33049", - "libelleAcheminement": "BEYCHAC ET CAILLAU", - "nomCommune": "BEYCHAC ET CAILLAU" + "codePostal": "52300", + "codeCommune": "52346", + "libelleAcheminement": "MUSSEY SUR MARNE", + "nomCommune": "MUSSEY SUR MARNE" }, { - "codePostal": "27930", - "codeCommune": "27684", - "libelleAcheminement": "LE VIEIL EVREUX", - "nomCommune": "LE VIEIL EVREUX" + "codePostal": "61170", + "codeCommune": "61215", + "libelleAcheminement": "LALEU", + "nomCommune": "LALEU" }, { - "codePostal": "44160", - "codeCommune": "44129", - "libelleAcheminement": "PONTCHATEAU", - "nomCommune": "PONTCHATEAU" + "codePostal": "05500", + "codeCommune": "05054", + "libelleAcheminement": "LA FARE EN CHAMPSAUR", + "nomCommune": "LA FARE EN CHAMPSAUR" }, { - "codePostal": "56300", - "codeCommune": "56237", - "libelleAcheminement": "ST THURIAU", - "nomCommune": "ST THURIAU" + "codePostal": "60520", + "codeCommune": "60631", + "libelleAcheminement": "THIERS SUR THEVE", + "nomCommune": "THIERS SUR THEVE" }, { - "codePostal": "33340", - "codeCommune": "33055", - "libelleAcheminement": "BLAIGNAN PRIGNAC", - "nomCommune": "BLAIGNAN PRIGNAC" + "codePostal": "50480", + "codeCommune": "50523", + "libelleAcheminement": "STE MERE EGLISE", + "nomCommune": "STE MERE EGLISE" }, { - "codePostal": "27680", - "codeCommune": "27686", - "libelleAcheminement": "VIEUX PORT", - "nomCommune": "VIEUX PORT" + "codePostal": "52800", + "codeCommune": "52353", + "libelleAcheminement": "NOGENT", + "nomCommune": "NOGENT" }, { - "codePostal": "44260", - "codeCommune": "44137", - "libelleAcheminement": "PRINQUIAU", - "nomCommune": "PRINQUIAU" + "codePostal": "61100", + "codeCommune": "61218", + "libelleAcheminement": "LA LANDE PATRY", + "nomCommune": "LA LANDE PATRY" }, { - "codePostal": "56540", - "codeCommune": "56238", - "libelleAcheminement": "ST TUGDUAL", - "nomCommune": "ST TUGDUAL" + "codePostal": "05400", + "codeCommune": "05060", + "libelleAcheminement": "FURMEYER", + "nomCommune": "FURMEYER" }, { - "codePostal": "33910", - "codeCommune": "33062", - "libelleAcheminement": "BONZAC", - "nomCommune": "BONZAC" + "codePostal": "60310", + "codeCommune": "60632", + "libelleAcheminement": "THIESCOURT", + "nomCommune": "THIESCOURT" }, { - "codePostal": "27240", - "codeCommune": "27693", - "libelleAcheminement": "SYLVAINS LES MOULINS", - "nomCommune": "SYLVAINS LES MOULINS" + "codePostal": "50300", + "codeCommune": "50531", + "libelleAcheminement": "ST OVIN", + "nomCommune": "ST OVIN" }, { - "codePostal": "44440", - "codeCommune": "44144", - "libelleAcheminement": "RIAILLE", - "nomCommune": "RIAILLE" + "codePostal": "52190", + "codeCommune": "52360", + "libelleAcheminement": "OCCEY", + "nomCommune": "OCCEY" }, { - "codePostal": "56350", - "codeCommune": "56239", - "libelleAcheminement": "ST VINCENT SUR OUST", - "nomCommune": "ST VINCENT SUR OUST" + "codePostal": "61100", + "codeCommune": "61222", + "libelleAcheminement": "LANDISACQ", + "nomCommune": "LANDISACQ" }, { - "codePostal": "33880", - "codeCommune": "33084", - "libelleAcheminement": "CAMBES", - "nomCommune": "CAMBES" + "codePostal": "05000", + "codeCommune": "05061", + "libelleAcheminement": "GAP", + "nomCommune": "GAP" }, { - "codePostal": "27950", - "codeCommune": "27694", - "libelleAcheminement": "VILLEZ SOUS BAILLEUL", - "nomCommune": "VILLEZ SOUS BAILLEUL" + "codePostal": "60480", + "codeCommune": "60634", + "libelleAcheminement": "THIEUX", + "nomCommune": "THIEUX" }, { - "codePostal": "44390", - "codeCommune": "44149", - "libelleAcheminement": "SAFFRE", - "nomCommune": "SAFFRE" + "codePostal": "50400", + "codeCommune": "50541", + "libelleAcheminement": "ST PLANCHERS", + "nomCommune": "ST PLANCHERS" }, { - "codePostal": "56360", - "codeCommune": "56241", - "libelleAcheminement": "SAUZON", - "nomCommune": "SAUZON" + "codePostal": "52600", + "codeCommune": "52375", + "libelleAcheminement": "PALAISEUL", + "nomCommune": "PALAISEUL" }, { - "codePostal": "33660", - "codeCommune": "33088", - "libelleAcheminement": "CAMPS SUR L ISLE", - "nomCommune": "CAMPS SUR L ISLE" + "codePostal": "61290", + "codeCommune": "61230", + "libelleAcheminement": "LONGNY LES VILLAGES", + "nomCommune": "LONGNY LES VILLAGES" }, { - "codePostal": "28410", - "codeCommune": "28001", - "libelleAcheminement": "ABONDANT", - "nomCommune": "ABONDANT" + "codePostal": "05000", + "codeCommune": "05061", + "libelleAcheminement": "GAP", + "nomCommune": "GAP" }, { - "codePostal": "44160", - "codeCommune": "44152", - "libelleAcheminement": "STE ANNE SUR BRIVET", - "nomCommune": "STE ANNE SUR BRIVET" + "codePostal": "60160", + "codeCommune": "60635", + "libelleAcheminement": "THIVERNY", + "nomCommune": "THIVERNY" }, { - "codePostal": "56860", - "codeCommune": "56243", - "libelleAcheminement": "SENE", - "nomCommune": "SENE" + "codePostal": "50220", + "codeCommune": "50543", + "libelleAcheminement": "ST QUENTIN SUR LE HOMME", + "nomCommune": "ST QUENTIN SUR LE HOMME" }, { - "codePostal": "33220", - "codeCommune": "33094", - "libelleAcheminement": "CAPLONG", - "nomCommune": "CAPLONG" + "codePostal": "52200", + "codeCommune": "52383", + "libelleAcheminement": "PERRANCEY LES VIEUX MOULINS", + "nomCommune": "PERRANCEY LES VIEUX MOULINS" }, { - "codePostal": "28150", - "codeCommune": "28004", - "libelleAcheminement": "ALLONNES", - "nomCommune": "ALLONNES" + "codePostal": "61290", + "codeCommune": "61230", + "libelleAcheminement": "LONGNY LES VILLAGES", + "nomCommune": "LONGNY LES VILLAGES" }, { - "codePostal": "44250", - "codeCommune": "44154", - "libelleAcheminement": "ST BREVIN LES PINS", - "nomCommune": "ST BREVIN LES PINS" + "codePostal": "05800", + "codeCommune": "05064", + "libelleAcheminement": "LA CHAPELLE EN VALGAUDEMAR", + "nomCommune": "LA CHAPELLE EN VALGAUDEMAR" }, { - "codePostal": "56300", - "codeCommune": "56246", - "libelleAcheminement": "LE SOURN", - "nomCommune": "LE SOURN" + "codePostal": "60150", + "codeCommune": "60636", + "libelleAcheminement": "THOUROTTE", + "nomCommune": "THOUROTTE" }, { - "codePostal": "33121", - "codeCommune": "33097", - "libelleAcheminement": "CARCANS", - "nomCommune": "CARCANS" + "codePostal": "50750", + "codeCommune": "50546", + "libelleAcheminement": "BOURGVALLEES", + "nomCommune": "BOURGVALLEES" }, { - "codePostal": "28220", - "codeCommune": "28012", - "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", - "nomCommune": "COMMUNE NOUVELLE D ARROU" + "codePostal": "52200", + "codeCommune": "52383", + "libelleAcheminement": "PERRANCEY LES VIEUX MOULINS", + "nomCommune": "PERRANCEY LES VIEUX MOULINS" }, { - "codePostal": "44310", - "codeCommune": "44155", - "libelleAcheminement": "ST COLOMBAN", - "nomCommune": "ST COLOMBAN" + "codePostal": "61600", + "codeCommune": "61233", + "libelleAcheminement": "LONLAY LE TESSON", + "nomCommune": "LONLAY LE TESSON" }, { - "codePostal": "56450", - "codeCommune": "56251", - "libelleAcheminement": "THEIX NOYALO", - "nomCommune": "THEIX NOYALO" + "codePostal": "05700", + "codeCommune": "05076", + "libelleAcheminement": "MEREUIL", + "nomCommune": "MEREUIL" }, { - "codePostal": "33410", - "codeCommune": "33098", - "libelleAcheminement": "CARDAN", - "nomCommune": "CARDAN" + "codePostal": "60250", + "codeCommune": "60638", + "libelleAcheminement": "THURY SOUS CLERMONT", + "nomCommune": "THURY SOUS CLERMONT" }, { - "codePostal": "28290", - "codeCommune": "28012", - "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", - "nomCommune": "COMMUNE NOUVELLE D ARROU" + "codePostal": "50490", + "codeCommune": "50550", + "libelleAcheminement": "ST SAUVEUR VILLAGES", + "nomCommune": "ST SAUVEUR VILLAGES" }, { - "codePostal": "44310", - "codeCommune": "44155", - "libelleAcheminement": "ST COLOMBAN", - "nomCommune": "ST COLOMBAN" + "codePostal": "52160", + "codeCommune": "52384", + "libelleAcheminement": "PERROGNEY LES FONTAINES", + "nomCommune": "PERROGNEY LES FONTAINES" }, { - "codePostal": "56250", - "codeCommune": "56254", - "libelleAcheminement": "TREDION", - "nomCommune": "TREDION" + "codePostal": "61150", + "codeCommune": "61237", + "libelleAcheminement": "LOUGE SUR MAIRE", + "nomCommune": "LOUGE SUR MAIRE" }, { - "codePostal": "33390", - "codeCommune": "33100", - "libelleAcheminement": "CARS", - "nomCommune": "CARS" + "codePostal": "05350", + "codeCommune": "05077", + "libelleAcheminement": "MOLINES EN QUEYRAS", + "nomCommune": "MOLINES EN QUEYRAS" }, { - "codePostal": "28330", - "codeCommune": "28018", - "libelleAcheminement": "AUTHON DU PERCHE", - "nomCommune": "AUTHON DU PERCHE" + "codePostal": "60000", + "codeCommune": "60639", + "libelleAcheminement": "TILLE", + "nomCommune": "TILLE" }, { - "codePostal": "44800", - "codeCommune": "44162", - "libelleAcheminement": "ST HERBLAIN", - "nomCommune": "ST HERBLAIN" + "codePostal": "50490", + "codeCommune": "50550", + "libelleAcheminement": "ST SAUVEUR VILLAGES", + "nomCommune": "ST SAUVEUR VILLAGES" }, { - "codePostal": "56250", - "codeCommune": "56261", - "libelleAcheminement": "LA VRAIE CROIX", - "nomCommune": "LA VRAIE CROIX" + "codePostal": "52500", + "codeCommune": "52388", + "libelleAcheminement": "PIERREMONT SUR AMANCE", + "nomCommune": "PIERREMONT SUR AMANCE" }, { - "codePostal": "33690", - "codeCommune": "33113", - "libelleAcheminement": "CAUVIGNAC", - "nomCommune": "CAUVIGNAC" + "codePostal": "61160", + "codeCommune": "61238", + "libelleAcheminement": "LOUVIERES EN AUGE", + "nomCommune": "LOUVIERES EN AUGE" }, { - "codePostal": "28120", - "codeCommune": "28021", - "libelleAcheminement": "BAILLEAU LE PIN", - "nomCommune": "BAILLEAU LE PIN" + "codePostal": "05150", + "codeCommune": "05086", + "libelleAcheminement": "MONTJAY", + "nomCommune": "MONTJAY" }, { - "codePostal": "44150", - "codeCommune": "44163", - "libelleAcheminement": "VAIR SUR LOIRE", - "nomCommune": "VAIR SUR LOIRE" + "codePostal": "60240", + "codeCommune": "60640", + "libelleAcheminement": "TOURLY", + "nomCommune": "TOURLY" }, { - "codePostal": "57920", - "codeCommune": "57001", - "libelleAcheminement": "ABONCOURT", - "nomCommune": "ABONCOURT" + "codePostal": "50490", + "codeCommune": "50550", + "libelleAcheminement": "ST SAUVEUR VILLAGES", + "nomCommune": "ST SAUVEUR VILLAGES" }, { - "codePostal": "33113", - "codeCommune": "33115", - "libelleAcheminement": "CAZALIS", - "nomCommune": "CAZALIS" + "codePostal": "52500", + "codeCommune": "52388", + "libelleAcheminement": "PIERREMONT SUR AMANCE", + "nomCommune": "PIERREMONT SUR AMANCE" }, { - "codePostal": "28310", - "codeCommune": "28026", - "libelleAcheminement": "BAUDREVILLE", - "nomCommune": "BAUDREVILLE" + "codePostal": "61380", + "codeCommune": "61244", + "libelleAcheminement": "MAHERU", + "nomCommune": "MAHERU" }, { - "codePostal": "44680", - "codeCommune": "44164", - "libelleAcheminement": "ST HILAIRE DE CHALEONS", - "nomCommune": "ST HILAIRE DE CHALEONS" + "codePostal": "05170", + "codeCommune": "05096", + "libelleAcheminement": "ORCIERES", + "nomCommune": "ORCIERES" }, { - "codePostal": "57590", - "codeCommune": "57010", - "libelleAcheminement": "ALAINCOURT LA COTE", - "nomCommune": "ALAINCOURT LA COTE" + "codePostal": "60350", + "codeCommune": "60647", + "libelleAcheminement": "TROSLY BREUIL", + "nomCommune": "TROSLY BREUIL" }, { - "codePostal": "33250", - "codeCommune": "33125", - "libelleAcheminement": "CISSAC MEDOC", - "nomCommune": "CISSAC MEDOC" + "codePostal": "50240", + "codeCommune": "50553", + "libelleAcheminement": "ST SENIER DE BEUVRON", + "nomCommune": "ST SENIER DE BEUVRON" }, { - "codePostal": "28330", - "codeCommune": "28027", - "libelleAcheminement": "LA BAZOCHE GOUET", - "nomCommune": "LA BAZOCHE GOUET" + "codePostal": "52500", + "codeCommune": "52390", + "libelleAcheminement": "PISSELOUP", + "nomCommune": "PISSELOUP" }, { - "codePostal": "44640", - "codeCommune": "44166", - "libelleAcheminement": "ST JEAN DE BOISEAU", - "nomCommune": "ST JEAN DE BOISEAU" + "codePostal": "61570", + "codeCommune": "61256", + "libelleAcheminement": "MEDAVY", + "nomCommune": "MEDAVY" }, { - "codePostal": "57670", - "codeCommune": "57011", - "libelleAcheminement": "ALBESTROFF", - "nomCommune": "ALBESTROFF" + "codePostal": "05700", + "codeCommune": "05097", + "libelleAcheminement": "ORPIERRE", + "nomCommune": "ORPIERRE" }, { - "codePostal": "33690", - "codeCommune": "33137", - "libelleAcheminement": "COURS LES BAINS", - "nomCommune": "COURS LES BAINS" + "codePostal": "60400", + "codeCommune": "60655", + "libelleAcheminement": "VARESNES", + "nomCommune": "VARESNES" }, { - "codePostal": "28240", - "codeCommune": "28033", - "libelleAcheminement": "BELHOMERT GUEHOUVILLE", - "nomCommune": "BELHOMERT GUEHOUVILLE" + "codePostal": "50550", + "codeCommune": "50562", + "libelleAcheminement": "ST VAAST LA HOUGUE", + "nomCommune": "ST VAAST LA HOUGUE" }, { - "codePostal": "44310", - "codeCommune": "44174", - "libelleAcheminement": "ST LUMINE DE COUTAIS", - "nomCommune": "ST LUMINE DE COUTAIS" + "codePostal": "52160", + "codeCommune": "52393", + "libelleAcheminement": "POINSENOT", + "nomCommune": "POINSENOT" }, { - "codePostal": "57320", - "codeCommune": "57016", - "libelleAcheminement": "ALZING", - "nomCommune": "ALZING" + "codePostal": "61250", + "codeCommune": "61263", + "libelleAcheminement": "MENIL ERREUX", + "nomCommune": "MENIL ERREUX" }, { - "codePostal": "33230", - "codeCommune": "33138", - "libelleAcheminement": "COUTRAS", - "nomCommune": "COUTRAS" + "codePostal": "05200", + "codeCommune": "05108", + "libelleAcheminement": "PUY ST EUSEBE", + "nomCommune": "PUY ST EUSEBE" }, { - "codePostal": "28270", - "codeCommune": "28037", - "libelleAcheminement": "BEROU LA MULOTIERE", - "nomCommune": "BEROU LA MULOTIERE" + "codePostal": "60400", + "codeCommune": "60657", + "libelleAcheminement": "VAUCHELLES", + "nomCommune": "VAUCHELLES" }, { - "codePostal": "44410", - "codeCommune": "44175", - "libelleAcheminement": "ST LYPHARD", - "nomCommune": "ST LYPHARD" + "codePostal": "50550", + "codeCommune": "50562", + "libelleAcheminement": "ST VAAST LA HOUGUE", + "nomCommune": "ST VAAST LA HOUGUE" }, { - "codePostal": "57360", - "codeCommune": "57019", - "libelleAcheminement": "AMNEVILLE LES THERMES", - "nomCommune": "AMNEVILLE" + "codePostal": "52230", + "codeCommune": "52398", + "libelleAcheminement": "POISSONS", + "nomCommune": "POISSONS" }, { - "codePostal": "33620", - "codeCommune": "33142", - "libelleAcheminement": "CUBNEZAIS", - "nomCommune": "CUBNEZAIS" + "codePostal": "61230", + "codeCommune": "61268", + "libelleAcheminement": "MENIL HUBERT EN EXMES", + "nomCommune": "MENIL HUBERT EN EXMES" }, { - "codePostal": "28330", - "codeCommune": "28038", - "libelleAcheminement": "BETHONVILLIERS", - "nomCommune": "BETHONVILLIERS" + "codePostal": "05400", + "codeCommune": "05112", + "libelleAcheminement": "RABOU", + "nomCommune": "RABOU" }, { - "codePostal": "44540", - "codeCommune": "44180", - "libelleAcheminement": "VALLONS DE L ERDRE", - "nomCommune": "VALLONS DE L ERDRE" + "codePostal": "60117", + "codeCommune": "60658", + "libelleAcheminement": "VAUCIENNES", + "nomCommune": "VAUCIENNES" }, { - "codePostal": "57130", - "codeCommune": "57021", - "libelleAcheminement": "ANCY DORNOT", - "nomCommune": "ANCY DORNOT" + "codePostal": "50500", + "codeCommune": "50564", + "libelleAcheminement": "TERRE ET MARAIS", + "nomCommune": "TERRE ET MARAIS" }, { - "codePostal": "33540", - "codeCommune": "33149", - "libelleAcheminement": "DAUBEZE", - "nomCommune": "DAUBEZE" + "codePostal": "52400", + "codeCommune": "52400", + "libelleAcheminement": "LE CHATELET SUR MEUSE", + "nomCommune": "LE CHATELET SUR MEUSE" }, { - "codePostal": "28150", - "codeCommune": "28047", - "libelleAcheminement": "BOISVILLE LA ST PERE", - "nomCommune": "BOISVILLE LA ST PERE" + "codePostal": "61240", + "codeCommune": "61272", + "libelleAcheminement": "LE MENIL VICOMTE", + "nomCommune": "LE MENIL VICOMTE" }, { - "codePostal": "44540", - "codeCommune": "44180", - "libelleAcheminement": "VALLONS DE L ERDRE", - "nomCommune": "VALLONS DE L ERDRE" + "codePostal": "05300", + "codeCommune": "05118", + "libelleAcheminement": "VAL BUECH MEOUGE", + "nomCommune": "VAL BUECH MEOUGE" }, { - "codePostal": "57640", - "codeCommune": "57024", - "libelleAcheminement": "ANTILLY", - "nomCommune": "ANTILLY" + "codePostal": "60120", + "codeCommune": "60664", + "libelleAcheminement": "VENDEUIL CAPLY", + "nomCommune": "VENDEUIL CAPLY" }, { - "codePostal": "33420", - "codeCommune": "33157", - "libelleAcheminement": "ESPIET", - "nomCommune": "ESPIET" + "codePostal": "50500", + "codeCommune": "50564", + "libelleAcheminement": "TERRE ET MARAIS", + "nomCommune": "TERRE ET MARAIS" }, { - "codePostal": "28210", - "codeCommune": "28054", - "libelleAcheminement": "LE BOULLAY MIVOYE", - "nomCommune": "LE BOULLAY MIVOYE" + "codePostal": "52160", + "codeCommune": "52403", + "libelleAcheminement": "PRASLAY", + "nomCommune": "PRASLAY" }, { - "codePostal": "44540", - "codeCommune": "44180", - "libelleAcheminement": "VALLONS DE L ERDRE", - "nomCommune": "VALLONS DE L ERDRE" + "codePostal": "61800", + "codeCommune": "61281", + "libelleAcheminement": "MONCY", + "nomCommune": "MONCY" }, { - "codePostal": "57480", - "codeCommune": "57026", - "libelleAcheminement": "APACH", - "nomCommune": "APACH" + "codePostal": "05200", + "codeCommune": "05128", + "libelleAcheminement": "ST ANDRE D EMBRUN", + "nomCommune": "ST ANDRE D EMBRUN" }, { - "codePostal": "33190", - "codeCommune": "33158", - "libelleAcheminement": "LES ESSEINTES", - "nomCommune": "LES ESSEINTES" + "codePostal": "60950", + "codeCommune": "60666", + "libelleAcheminement": "VER SUR LAUNETTE", + "nomCommune": "VER SUR LAUNETTE" }, { - "codePostal": "28410", - "codeCommune": "28056", - "libelleAcheminement": "BOUTIGNY PROUAIS", - "nomCommune": "BOUTIGNY PROUAIS" + "codePostal": "50530", + "codeCommune": "50565", + "libelleAcheminement": "SARTILLY BAIE BOCAGE", + "nomCommune": "SARTILLY BAIE BOCAGE" }, { - "codePostal": "44540", - "codeCommune": "44180", - "libelleAcheminement": "VALLONS DE L ERDRE", - "nomCommune": "VALLONS DE L ERDRE" + "codePostal": "52190", + "codeCommune": "52405", + "libelleAcheminement": "LE MONTSAUGEONNAIS", + "nomCommune": "LE MONTSAUGEONNAIS" }, { - "codePostal": "57680", - "codeCommune": "57030", - "libelleAcheminement": "ARRY", - "nomCommune": "ARRY" + "codePostal": "61170", + "codeCommune": "61284", + "libelleAcheminement": "MONTCHEVREL", + "nomCommune": "MONTCHEVREL" }, { - "codePostal": "33820", - "codeCommune": "33159", - "libelleAcheminement": "ETAULIERS", - "nomCommune": "ETAULIERS" + "codePostal": "05500", + "codeCommune": "05132", + "libelleAcheminement": "ST BONNET EN CHAMPSAUR", + "nomCommune": "ST BONNET EN CHAMPSAUR" }, { - "codePostal": "28800", - "codeCommune": "28057", - "libelleAcheminement": "BOUVILLE", - "nomCommune": "BOUVILLE" + "codePostal": "60410", + "codeCommune": "60667", + "libelleAcheminement": "VERBERIE", + "nomCommune": "VERBERIE" }, { - "codePostal": "44260", - "codeCommune": "44195", - "libelleAcheminement": "SAVENAY", - "nomCommune": "SAVENAY" + "codePostal": "50210", + "codeCommune": "50569", + "libelleAcheminement": "SAVIGNY", + "nomCommune": "SAVIGNY" }, { - "codePostal": "57590", - "codeCommune": "57040", - "libelleAcheminement": "AULNOIS SUR SEILLE", - "nomCommune": "AULNOIS SUR SEILLE" + "codePostal": "52220", + "codeCommune": "52411", + "libelleAcheminement": "RIVES DERVOISES", + "nomCommune": "RIVES DERVOISES" }, { - "codePostal": "33220", - "codeCommune": "33160", - "libelleAcheminement": "EYNESSE", - "nomCommune": "EYNESSE" + "codePostal": "61570", + "codeCommune": "61288", + "libelleAcheminement": "MONTMERREI", + "nomCommune": "MONTMERREI" }, { - "codePostal": "28300", - "codeCommune": "28060", - "libelleAcheminement": "BRICONVILLE", - "nomCommune": "BRICONVILLE" + "codePostal": "05700", + "codeCommune": "05135", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "44110", - "codeCommune": "44199", - "libelleAcheminement": "SOUDAN", - "nomCommune": "SOUDAN" + "codePostal": "60550", + "codeCommune": "60670", + "libelleAcheminement": "VERNEUIL EN HALATTE", + "nomCommune": "VERNEUIL EN HALATTE" }, { - "codePostal": "57810", - "codeCommune": "57044", - "libelleAcheminement": "AZOUDANGE", - "nomCommune": "AZOUDANGE" + "codePostal": "50690", + "codeCommune": "50575", + "libelleAcheminement": "SIDEVILLE", + "nomCommune": "SIDEVILLE" }, { - "codePostal": "33390", - "codeCommune": "33161", - "libelleAcheminement": "EYRANS", - "nomCommune": "EYRANS" + "codePostal": "52170", + "codeCommune": "52414", + "libelleAcheminement": "RACHECOURT SUR MARNE", + "nomCommune": "RACHECOURT SUR MARNE" }, { - "codePostal": "28410", - "codeCommune": "28062", - "libelleAcheminement": "BROUE", - "nomCommune": "BROUE" + "codePostal": "61500", + "codeCommune": "61294", + "libelleAcheminement": "MORTREE", + "nomCommune": "MORTREE" }, { - "codePostal": "44370", - "codeCommune": "44213", - "libelleAcheminement": "LOIREAUXENCE", - "nomCommune": "LOIREAUXENCE" + "codePostal": "05250", + "codeCommune": "05139", + "libelleAcheminement": "LE DEVOLUY", + "nomCommune": "LE DEVOLUY" }, { - "codePostal": "57580", - "codeCommune": "57054", - "libelleAcheminement": "BAUDRECOURT", - "nomCommune": "BAUDRECOURT" + "codePostal": "60400", + "codeCommune": "60676", + "libelleAcheminement": "VILLE", + "nomCommune": "VILLE" }, { - "codePostal": "33230", - "codeCommune": "33166", - "libelleAcheminement": "LE FIEU", - "nomCommune": "LE FIEU" + "codePostal": "50150", + "codeCommune": "50582", + "libelleAcheminement": "SOURDEVAL", + "nomCommune": "SOURDEVAL" }, { - "codePostal": "28410", - "codeCommune": "28064", - "libelleAcheminement": "BU", - "nomCommune": "BU" + "codePostal": "52700", + "codeCommune": "52420", + "libelleAcheminement": "REYNEL", + "nomCommune": "REYNEL" }, { - "codePostal": "44170", - "codeCommune": "44214", - "libelleAcheminement": "VAY", - "nomCommune": "VAY" + "codePostal": "61120", + "codeCommune": "61307", + "libelleAcheminement": "NEUVILLE SUR TOUQUES", + "nomCommune": "NEUVILLE SUR TOUQUES" }, { - "codePostal": "57670", - "codeCommune": "57060", - "libelleAcheminement": "BENESTROFF", - "nomCommune": "BENESTROFF" + "codePostal": "05250", + "codeCommune": "05139", + "libelleAcheminement": "LE DEVOLUY", + "nomCommune": "LE DEVOLUY" }, { - "codePostal": "33190", - "codeCommune": "33170", - "libelleAcheminement": "FONTET", - "nomCommune": "FONTET" + "codePostal": "60650", + "codeCommune": "60677", + "libelleAcheminement": "VILLEMBRAY", + "nomCommune": "VILLEMBRAY" }, { - "codePostal": "28400", - "codeCommune": "28072", - "libelleAcheminement": "CHAMPROND EN PERCHET", - "nomCommune": "CHAMPROND EN PERCHET" + "codePostal": "50270", + "codeCommune": "50585", + "libelleAcheminement": "SURTAINVILLE", + "nomCommune": "SURTAINVILLE" }, { - "codePostal": "44120", - "codeCommune": "44215", - "libelleAcheminement": "VERTOU", - "nomCommune": "VERTOU" + "codePostal": "52260", + "codeCommune": "52432", + "libelleAcheminement": "ROLAMPONT", + "nomCommune": "ROLAMPONT" }, { - "codePostal": "57930", - "codeCommune": "57066", - "libelleAcheminement": "BERTHELMING", - "nomCommune": "BERTHELMING" + "codePostal": "61340", + "codeCommune": "61309", + "libelleAcheminement": "PERCHE EN NOCE", + "nomCommune": "PERCHE EN NOCE" }, { - "codePostal": "33570", - "codeCommune": "33173", - "libelleAcheminement": "FRANCS", - "nomCommune": "FRANCS" + "codePostal": "05250", + "codeCommune": "05139", + "libelleAcheminement": "LE DEVOLUY", + "nomCommune": "LE DEVOLUY" }, { - "codePostal": "28700", - "codeCommune": "28074", - "libelleAcheminement": "LA CHAPELLE D AUNAINVILLE", - "nomCommune": "LA CHAPELLE D AUNAINVILLE" + "codePostal": "60420", + "codeCommune": "60698", + "libelleAcheminement": "WACQUEMOULIN", + "nomCommune": "WACQUEMOULIN" }, { - "codePostal": "44360", - "codeCommune": "44217", - "libelleAcheminement": "VIGNEUX DE BRETAGNE", - "nomCommune": "VIGNEUX DE BRETAGNE" + "codePostal": "50390", + "codeCommune": "50587", + "libelleAcheminement": "TAILLEPIED", + "nomCommune": "TAILLEPIED" }, { - "codePostal": "57410", - "codeCommune": "57074", - "libelleAcheminement": "BETTVILLER", - "nomCommune": "BETTVILLER" + "codePostal": "52320", + "codeCommune": "52436", + "libelleAcheminement": "ROUECOURT", + "nomCommune": "ROUECOURT" }, { - "codePostal": "33430", - "codeCommune": "33178", - "libelleAcheminement": "GAJAC", - "nomCommune": "GAJAC" + "codePostal": "61340", + "codeCommune": "61309", + "libelleAcheminement": "PERCHE EN NOCE", + "nomCommune": "PERCHE EN NOCE" }, { - "codePostal": "28340", - "codeCommune": "28077", - "libelleAcheminement": "LA CHAPELLE FORTIN", - "nomCommune": "LA CHAPELLE FORTIN" + "codePostal": "05120", + "codeCommune": "05151", + "libelleAcheminement": "ST MARTIN DE QUEYRIERES", + "nomCommune": "ST MARTIN DE QUEYRIERES" }, { - "codePostal": "44360", - "codeCommune": "44217", - "libelleAcheminement": "VIGNEUX DE BRETAGNE", - "nomCommune": "VIGNEUX DE BRETAGNE" + "codePostal": "61100", + "codeCommune": "61007", + "libelleAcheminement": "ATHIS VAL DE ROUVRE", + "nomCommune": "ATHIS VAL DE ROUVRE" }, { - "codePostal": "57630", - "codeCommune": "57077", - "libelleAcheminement": "BEZANGE LA PETITE", - "nomCommune": "BEZANGE LA PETITE" + "codePostal": "50170", + "codeCommune": "50589", + "libelleAcheminement": "TANIS", + "nomCommune": "TANIS" }, { - "codePostal": "33840", - "codeCommune": "33190", - "libelleAcheminement": "GOUALADE", - "nomCommune": "GOUALADE" + "codePostal": "52160", + "codeCommune": "52437", + "libelleAcheminement": "ROUELLES", + "nomCommune": "ROUELLES" }, { - "codePostal": "28300", - "codeCommune": "28100", - "libelleAcheminement": "CINTRAY", - "nomCommune": "CINTRAY" + "codePostal": "61210", + "codeCommune": "61339", + "libelleAcheminement": "PUTANGES LE LAC", + "nomCommune": "PUTANGES LE LAC" }, { - "codePostal": "44522", - "codeCommune": "44222", - "libelleAcheminement": "LA ROCHE BLANCHE", - "nomCommune": "LA ROCHE BLANCHE" + "codePostal": "05300", + "codeCommune": "05155", + "libelleAcheminement": "ST PIERRE AVEZ", + "nomCommune": "ST PIERRE AVEZ" }, { - "codePostal": "57320", - "codeCommune": "57079", - "libelleAcheminement": "BIBICHE", - "nomCommune": "BIBICHE" + "codePostal": "61270", + "codeCommune": "61012", + "libelleAcheminement": "AUGUAISE", + "nomCommune": "AUGUAISE" }, { - "codePostal": "33690", - "codeCommune": "33195", - "libelleAcheminement": "GRIGNOLS", - "nomCommune": "GRIGNOLS" + "codePostal": "50300", + "codeCommune": "50597", + "libelleAcheminement": "TIREPIED SUR SEE", + "nomCommune": "TIREPIED SUR SEE" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "52500", + "codeCommune": "52438", + "libelleAcheminement": "ROUGEUX", + "nomCommune": "ROUGEUX" }, { - "codePostal": "45230", - "codeCommune": "45001", - "libelleAcheminement": "ADON", - "nomCommune": "ADON" + "codePostal": "61250", + "codeCommune": "61341", + "libelleAcheminement": "ECOUVES", + "nomCommune": "ECOUVES" }, { - "codePostal": "57260", - "codeCommune": "57081", - "libelleAcheminement": "BIDESTROFF", - "nomCommune": "BIDESTROFF" + "codePostal": "05300", + "codeCommune": "05159", + "libelleAcheminement": "SALEON", + "nomCommune": "SALEON" }, { - "codePostal": "33470", - "codeCommune": "33199", - "libelleAcheminement": "GUJAN MESTRAS", - "nomCommune": "GUJAN MESTRAS" + "codePostal": "61150", + "codeCommune": "61020", + "libelleAcheminement": "AVOINE", + "nomCommune": "AVOINE" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "50870", + "codeCommune": "50597", + "libelleAcheminement": "TIREPIED SUR SEE", + "nomCommune": "TIREPIED SUR SEE" }, { - "codePostal": "45170", - "codeCommune": "45011", - "libelleAcheminement": "ATTRAY", - "nomCommune": "ATTRAY" + "codePostal": "52700", + "codeCommune": "52444", + "libelleAcheminement": "ST BLIN", + "nomCommune": "ST BLIN" }, { - "codePostal": "57930", - "codeCommune": "57086", - "libelleAcheminement": "BELLES FORETS", - "nomCommune": "BELLES FORETS" + "codePostal": "61250", + "codeCommune": "61341", + "libelleAcheminement": "ECOUVES", + "nomCommune": "ECOUVES" }, { - "codePostal": "33550", - "codeCommune": "33201", - "libelleAcheminement": "HAUX", - "nomCommune": "HAUX" + "codePostal": "05240", + "codeCommune": "05161", + "libelleAcheminement": "LA SALLE LES ALPES", + "nomCommune": "LA SALLE LES ALPES" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "61450", + "codeCommune": "61024", + "libelleAcheminement": "BANVOU", + "nomCommune": "BANVOU" }, { - "codePostal": "45330", - "codeCommune": "45013", - "libelleAcheminement": "AUGERVILLE LA RIVIERE", - "nomCommune": "AUGERVILLE LA RIVIERE" + "codePostal": "50330", + "codeCommune": "50598", + "libelleAcheminement": "TOCQUEVILLE", + "nomCommune": "TOCQUEVILLE" }, { - "codePostal": "57200", - "codeCommune": "57092", - "libelleAcheminement": "BLIES EBERSING", - "nomCommune": "BLIES EBERSING" + "codePostal": "52100", + "codeCommune": "52448", + "libelleAcheminement": "ST DIZIER", + "nomCommune": "ST DIZIER" }, { - "codePostal": "33720", - "codeCommune": "33205", - "libelleAcheminement": "ILLATS", - "nomCommune": "ILLATS" + "codePostal": "61230", + "codeCommune": "61347", + "libelleAcheminement": "RESENLIEU", + "nomCommune": "RESENLIEU" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "05700", + "codeCommune": "05167", + "libelleAcheminement": "SIGOTTIER", + "nomCommune": "SIGOTTIER" }, { - "codePostal": "45480", - "codeCommune": "45015", - "libelleAcheminement": "AUTRUY SUR JUINE", - "nomCommune": "AUTRUY SUR JUINE" + "codePostal": "61210", + "codeCommune": "61028", + "libelleAcheminement": "BAZOCHES AU HOULME", + "nomCommune": "BAZOCHES AU HOULME" }, { - "codePostal": "57220", - "codeCommune": "57097", - "libelleAcheminement": "BOULAY", - "nomCommune": "BOULAY MOSELLE" + "codePostal": "50200", + "codeCommune": "50603", + "libelleAcheminement": "TOURVILLE SUR SIENNE", + "nomCommune": "TOURVILLE SUR SIENNE" }, { - "codePostal": "33420", - "codeCommune": "33209", - "libelleAcheminement": "JUGAZAN", - "nomCommune": "JUGAZAN" + "codePostal": "52200", + "codeCommune": "52449", + "libelleAcheminement": "SAINTS GEOSMES", + "nomCommune": "SAINTS GEOSMES" }, { - "codePostal": "28330", - "codeCommune": "28111", - "libelleAcheminement": "COUDRAY AU PERCHE", - "nomCommune": "COUDRAY AU PERCHE" + "codePostal": "61160", + "codeCommune": "61352", + "libelleAcheminement": "RONAI", + "nomCommune": "RONAI" }, { - "codePostal": "45340", - "codeCommune": "45021", - "libelleAcheminement": "BARVILLE EN GATINAIS", - "nomCommune": "BARVILLE EN GATINAIS" + "codePostal": "05130", + "codeCommune": "05168", + "libelleAcheminement": "SIGOYER", + "nomCommune": "SIGOYER" }, { - "codePostal": "57460", - "codeCommune": "57101", - "libelleAcheminement": "BOUSBACH", - "nomCommune": "BOUSBACH" + "codePostal": "61560", + "codeCommune": "61029", + "libelleAcheminement": "BAZOCHES SUR HOENE", + "nomCommune": "BAZOCHES SUR HOENE" }, { - "codePostal": "33890", - "codeCommune": "33210", - "libelleAcheminement": "JUILLAC", - "nomCommune": "JUILLAC" + "codePostal": "50760", + "codeCommune": "50613", + "libelleAcheminement": "VALCANVILLE", + "nomCommune": "VALCANVILLE" }, { - "codePostal": "28210", - "codeCommune": "28118", - "libelleAcheminement": "CROISILLES", - "nomCommune": "CROISILLES" + "codePostal": "52150", + "codeCommune": "52455", + "libelleAcheminement": "ST THIEBAULT", + "nomCommune": "ST THIEBAULT" }, { - "codePostal": "45340", - "codeCommune": "45022", - "libelleAcheminement": "BATILLY EN GATINAIS", - "nomCommune": "BATILLY EN GATINAIS" + "codePostal": "61200", + "codeCommune": "61358", + "libelleAcheminement": "SAI", + "nomCommune": "SAI" }, { - "codePostal": "57340", - "codeCommune": "57107", - "libelleAcheminement": "BREHAIN", - "nomCommune": "BREHAIN" + "codePostal": "05800", + "codeCommune": "05182", + "libelleAcheminement": "VILLAR LOUBIERE", + "nomCommune": "VILLAR LOUBIERE" }, { - "codePostal": "33460", - "codeCommune": "33211", - "libelleAcheminement": "LABARDE", - "nomCommune": "LABARDE" + "codePostal": "61100", + "codeCommune": "61030", + "libelleAcheminement": "LA BAZOQUE", + "nomCommune": "LA BAZOQUE" }, { - "codePostal": "28270", - "codeCommune": "28120", - "libelleAcheminement": "CRUCEY VILLAGES", - "nomCommune": "CRUCEY VILLAGES" + "codePostal": "50250", + "codeCommune": "50617", + "libelleAcheminement": "VARENGUEBEC", + "nomCommune": "VARENGUEBEC" }, { - "codePostal": "45270", - "codeCommune": "45027", - "libelleAcheminement": "BEAUCHAMPS SUR HUILLARD", - "nomCommune": "BEAUCHAMPS SUR HUILLARD" + "codePostal": "52200", + "codeCommune": "52457", + "libelleAcheminement": "ST VALLIER SUR MARNE", + "nomCommune": "ST VALLIER SUR MARNE" }, { - "codePostal": "57320", - "codeCommune": "57110", - "libelleAcheminement": "BRETTNACH", - "nomCommune": "BRETTNACH" + "codePostal": "61700", + "codeCommune": "61370", + "libelleAcheminement": "ST BRICE", + "nomCommune": "ST BRICE" }, { - "codePostal": "33690", - "codeCommune": "33212", - "libelleAcheminement": "LABESCAU", - "nomCommune": "LABESCAU" + "codePostal": "05100", + "codeCommune": "05183", + "libelleAcheminement": "VILLAR ST PANCRACE", + "nomCommune": "VILLAR ST PANCRACE" }, { - "codePostal": "28250", - "codeCommune": "28130", - "libelleAcheminement": "DIGNY", - "nomCommune": "DIGNY" + "codePostal": "61500", + "codeCommune": "61036", + "libelleAcheminement": "BELFONDS", + "nomCommune": "BELFONDS" }, { - "codePostal": "45340", - "codeCommune": "45035", - "libelleAcheminement": "BOISCOMMUN", - "nomCommune": "BOISCOMMUN" + "codePostal": "50310", + "codeCommune": "50621", + "libelleAcheminement": "VAUDREVILLE", + "nomCommune": "VAUDREVILLE" }, { - "codePostal": "57340", - "codeCommune": "57115", - "libelleAcheminement": "BRULANGE", - "nomCommune": "BRULANGE" + "codePostal": "52000", + "codeCommune": "52469", + "libelleAcheminement": "SEMOUTIERS MONTSAON", + "nomCommune": "SEMOUTIERS MONTSAON" }, { - "codePostal": "33460", - "codeCommune": "33220", - "libelleAcheminement": "LAMARQUE", - "nomCommune": "LAMARQUE" + "codePostal": "61150", + "codeCommune": "61371", + "libelleAcheminement": "ST BRICE SOUS RANES", + "nomCommune": "ST BRICE SOUS RANES" }, { - "codePostal": "28330", - "codeCommune": "28144", - "libelleAcheminement": "LES ETILLEUX", - "nomCommune": "LES ETILLEUX" + "codePostal": "05110", + "codeCommune": "05184", + "libelleAcheminement": "VITROLLES", + "nomCommune": "VITROLLES" }, { - "codePostal": "45480", - "codeCommune": "45037", - "libelleAcheminement": "BOISSEAUX", - "nomCommune": "BOISSEAUX" + "codePostal": "61360", + "codeCommune": "61037", + "libelleAcheminement": "BELLAVILLIERS", + "nomCommune": "BELLAVILLIERS" }, { - "codePostal": "57970", - "codeCommune": "57118", - "libelleAcheminement": "BUDLING", - "nomCommune": "BUDLING" + "codePostal": "50200", + "codeCommune": "50624", + "libelleAcheminement": "LA VENDELEE", + "nomCommune": "LA VENDELEE" }, { - "codePostal": "33500", - "codeCommune": "33222", - "libelleAcheminement": "LALANDE DE POMEROL", - "nomCommune": "LALANDE DE POMEROL" + "codePostal": "52130", + "codeCommune": "52475", + "libelleAcheminement": "SOMMANCOURT", + "nomCommune": "SOMMANCOURT" }, { - "codePostal": "28160", - "codeCommune": "28161", - "libelleAcheminement": "FRAZE", - "nomCommune": "FRAZE" + "codePostal": "61490", + "codeCommune": "61376", + "libelleAcheminement": "ST CLAIR DE HALOUZE", + "nomCommune": "ST CLAIR DE HALOUZE" }, { - "codePostal": "45300", - "codeCommune": "45038", - "libelleAcheminement": "BONDAROY", - "nomCommune": "BONDAROY" + "codePostal": "06910", + "codeCommune": "06001", + "libelleAcheminement": "AIGLUN", + "nomCommune": "AIGLUN" }, { - "codePostal": "57490", - "codeCommune": "57123", - "libelleAcheminement": "CARLING", - "nomCommune": "CARLING" + "codePostal": "61430", + "codeCommune": "61044", + "libelleAcheminement": "BERJOU", + "nomCommune": "BERJOU" }, { - "codePostal": "33720", - "codeCommune": "33225", - "libelleAcheminement": "LANDIRAS", - "nomCommune": "LANDIRAS" + "codePostal": "50430", + "codeCommune": "50629", + "libelleAcheminement": "VESLY", + "nomCommune": "VESLY" }, { - "codePostal": "28500", - "codeCommune": "28171", - "libelleAcheminement": "GARNAY", - "nomCommune": "GARNAY" + "codePostal": "52220", + "codeCommune": "52479", + "libelleAcheminement": "SOMMEVOIRE", + "nomCommune": "SOMMEVOIRE" }, { - "codePostal": "45390", - "codeCommune": "45056", - "libelleAcheminement": "BROMEILLES", - "nomCommune": "BROMEILLES" + "codePostal": "61130", + "codeCommune": "61394", + "libelleAcheminement": "ST GERMAIN DE LA COUDRE", + "nomCommune": "ST GERMAIN DE LA COUDRE" }, { - "codePostal": "57570", - "codeCommune": "57124", - "libelleAcheminement": "CATTENOM", - "nomCommune": "CATTENOM" + "codePostal": "06260", + "codeCommune": "06005", + "libelleAcheminement": "ASCROS", + "nomCommune": "ASCROS" }, { - "codePostal": "33550", - "codeCommune": "33226", - "libelleAcheminement": "LANGOIRAN", - "nomCommune": "LANGOIRAN" + "codePostal": "61570", + "codeCommune": "61049", + "libelleAcheminement": "BOISSEI LA LANDE", + "nomCommune": "BOISSEI LA LANDE" }, { - "codePostal": "28410", - "codeCommune": "28185", - "libelleAcheminement": "GOUSSAINVILLE", - "nomCommune": "GOUSSAINVILLE" + "codePostal": "50430", + "codeCommune": "50629", + "libelleAcheminement": "VESLY", + "nomCommune": "VESLY" }, { - "codePostal": "45520", - "codeCommune": "45062", - "libelleAcheminement": "CERCOTTES", - "nomCommune": "CERCOTTES" + "codePostal": "52300", + "codeCommune": "52484", + "libelleAcheminement": "SUZANNECOURT", + "nomCommune": "SUZANNECOURT" }, { - "codePostal": "57170", - "codeCommune": "57126", - "libelleAcheminement": "CHAMBREY", - "nomCommune": "CHAMBREY" + "codePostal": "61430", + "codeCommune": "61407", + "libelleAcheminement": "STE HONORINE LA CHARDONNE", + "nomCommune": "STE HONORINE LA CHARDONNE" }, { - "codePostal": "33210", - "codeCommune": "33227", - "libelleAcheminement": "LANGON", - "nomCommune": "LANGON" + "codePostal": "06810", + "codeCommune": "06007", + "libelleAcheminement": "AURIBEAU SUR SIAGNE", + "nomCommune": "AURIBEAU SUR SIAGNE" }, { - "codePostal": "28410", - "codeCommune": "28185", - "libelleAcheminement": "GOUSSAINVILLE", - "nomCommune": "GOUSSAINVILLE" + "codePostal": "61340", + "codeCommune": "61050", + "libelleAcheminement": "COUR MAUGIS SUR HUISNE", + "nomCommune": "COUR MAUGIS SUR HUISNE" }, { - "codePostal": "45360", - "codeCommune": "45064", - "libelleAcheminement": "CERNOY EN BERRY", - "nomCommune": "CERNOY EN BERRY" + "codePostal": "50800", + "codeCommune": "50639", + "libelleAcheminement": "VILLEDIEU LES POELES ROUFFIGNY", + "nomCommune": "VILLEDIEU LES POELES ROUFFIGNY" }, { - "codePostal": "57580", - "codeCommune": "57127", - "libelleAcheminement": "CHANVILLE", - "nomCommune": "CHANVILLE" + "codePostal": "52300", + "codeCommune": "52490", + "libelleAcheminement": "THONNANCE LES JOINVILLE", + "nomCommune": "THONNANCE LES JOINVILLE" }, { - "codePostal": "33970", - "codeCommune": "33236", - "libelleAcheminement": "LEGE CAP FERRET", - "nomCommune": "LEGE CAP FERRET" + "codePostal": "61360", + "codeCommune": "61411", + "libelleAcheminement": "ST JOUIN DE BLAVOU", + "nomCommune": "ST JOUIN DE BLAVOU" }, { - "codePostal": "28310", - "codeCommune": "28189", - "libelleAcheminement": "GUILLEVILLE", - "nomCommune": "GUILLEVILLE" + "codePostal": "06450", + "codeCommune": "06013", + "libelleAcheminement": "BELVEDERE", + "nomCommune": "BELVEDERE" }, { - "codePostal": "45300", - "codeCommune": "45065", - "libelleAcheminement": "CESARVILLE DOSSAINVILLE", - "nomCommune": "CESARVILLE DOSSAINVILLE" + "codePostal": "61570", + "codeCommune": "61055", + "libelleAcheminement": "BOUCE", + "nomCommune": "BOUCE" }, { - "codePostal": "57220", - "codeCommune": "57128", - "libelleAcheminement": "CHARLEVILLE SOUS BOIS", - "nomCommune": "CHARLEVILLE SOUS BOIS" + "codePostal": "50680", + "codeCommune": "50641", + "libelleAcheminement": "VILLIERS FOSSARD", + "nomCommune": "VILLIERS FOSSARD" }, { - "codePostal": "33970", - "codeCommune": "33236", - "libelleAcheminement": "LEGE CAP FERRET", - "nomCommune": "LEGE CAP FERRET" + "codePostal": "52230", + "codeCommune": "52491", + "libelleAcheminement": "THONNANCE LES MOULINS", + "nomCommune": "THONNANCE LES MOULINS" }, { - "codePostal": "28310", - "codeCommune": "28199", - "libelleAcheminement": "JANVILLE EN BEAUCE", - "nomCommune": "JANVILLE EN BEAUCE" + "codePostal": "61320", + "codeCommune": "61427", + "libelleAcheminement": "ST MARTIN L AIGUILLON", + "nomCommune": "ST MARTIN L AIGUILLON" }, { - "codePostal": "45380", - "codeCommune": "45067", - "libelleAcheminement": "CHAINGY", - "nomCommune": "CHAINGY" + "codePostal": "06450", + "codeCommune": "06020", + "libelleAcheminement": "LA BOLLENE VESUBIE", + "nomCommune": "LA BOLLENE VESUBIE" }, { - "codePostal": "57420", - "codeCommune": "57139", - "libelleAcheminement": "CHERISEY", - "nomCommune": "CHERISEY" + "codePostal": "61160", + "codeCommune": "61062", + "libelleAcheminement": "BRIEUX", + "nomCommune": "BRIEUX" }, { - "codePostal": "33340", - "codeCommune": "33240", - "libelleAcheminement": "LESPARRE MEDOC", - "nomCommune": "LESPARRE MEDOC" + "codePostal": "51150", + "codeCommune": "51003", + "libelleAcheminement": "AIGNY", + "nomCommune": "AIGNY" }, { - "codePostal": "28190", - "codeCommune": "28203", - "libelleAcheminement": "LANDELLES", - "nomCommune": "LANDELLES" + "codePostal": "52500", + "codeCommune": "52493", + "libelleAcheminement": "TORNAY", + "nomCommune": "TORNAY" }, { - "codePostal": "45320", - "codeCommune": "45073", - "libelleAcheminement": "CHANTECOQ", - "nomCommune": "CHANTECOQ" + "codePostal": "61560", + "codeCommune": "61438", + "libelleAcheminement": "ST OUEN DE SECHEROUVRE", + "nomCommune": "ST OUEN DE SECHEROUVRE" }, { - "codePostal": "57530", - "codeCommune": "57148", - "libelleAcheminement": "COLLIGNY MAIZERY", - "nomCommune": "COLLIGNY MAIZERY" + "codePostal": "06530", + "codeCommune": "06026", + "libelleAcheminement": "CABRIS", + "nomCommune": "CABRIS" }, { - "codePostal": "33220", - "codeCommune": "33246", - "libelleAcheminement": "LIGUEUX", - "nomCommune": "LIGUEUX" + "codePostal": "61120", + "codeCommune": "61071", + "libelleAcheminement": "CAMEMBERT", + "nomCommune": "CAMEMBERT" }, { - "codePostal": "28700", - "codeCommune": "28207", - "libelleAcheminement": "LETHUIN", - "nomCommune": "LETHUIN" + "codePostal": "51290", + "codeCommune": "51008", + "libelleAcheminement": "AMBRIERES", + "nomCommune": "AMBRIERES" }, { - "codePostal": "45210", - "codeCommune": "45076", - "libelleAcheminement": "LA CHAPELLE ST SEPULCRE", - "nomCommune": "LA CHAPELLE ST SEPULCRE" + "codePostal": "52130", + "codeCommune": "52497", + "libelleAcheminement": "TROISFONTAINES LA VILLE", + "nomCommune": "TROISFONTAINES LA VILLE" }, { - "codePostal": "57220", - "codeCommune": "57150", - "libelleAcheminement": "CONDE NORTHEN", - "nomCommune": "CONDE NORTHEN" + "codePostal": "61340", + "codeCommune": "61448", + "libelleAcheminement": "ST PIERRE LA BRUYERE", + "nomCommune": "ST PIERRE LA BRUYERE" }, { - "codePostal": "33190", - "codeCommune": "33250", - "libelleAcheminement": "LOUBENS", - "nomCommune": "LOUBENS" + "codePostal": "06750", + "codeCommune": "06028", + "libelleAcheminement": "CAILLE", + "nomCommune": "CAILLE" }, { - "codePostal": "28200", - "codeCommune": "28211", - "libelleAcheminement": "LOGRON", - "nomCommune": "LOGRON" + "codePostal": "61260", + "codeCommune": "61079", + "libelleAcheminement": "CETON", + "nomCommune": "CETON" }, { - "codePostal": "45130", - "codeCommune": "45081", - "libelleAcheminement": "CHARSONVILLE", - "nomCommune": "CHARSONVILLE" + "codePostal": "51260", + "codeCommune": "51009", + "libelleAcheminement": "ANGLURE", + "nomCommune": "ANGLURE" }, { - "codePostal": "57340", - "codeCommune": "57151", - "libelleAcheminement": "CONTHIL", - "nomCommune": "CONTHIL" + "codePostal": "52160", + "codeCommune": "52499", + "libelleAcheminement": "VAILLANT", + "nomCommune": "VAILLANT" }, { - "codePostal": "33420", - "codeCommune": "33257", - "libelleAcheminement": "LUGAIGNAC", - "nomCommune": "LUGAIGNAC" + "codePostal": "61360", + "codeCommune": "61450", + "libelleAcheminement": "ST QUENTIN DE BLAVOU", + "nomCommune": "ST QUENTIN DE BLAVOU" }, { - "codePostal": "28140", - "codeCommune": "28212", - "libelleAcheminement": "LOIGNY LA BATAILLE", - "nomCommune": "LOIGNY LA BATAILLE" + "codePostal": "06150", + "codeCommune": "06029", + "libelleAcheminement": "CANNES", + "nomCommune": "CANNES" }, { - "codePostal": "45480", - "codeCommune": "45088", - "libelleAcheminement": "CHAUSSY", - "nomCommune": "CHAUSSY" + "codePostal": "61700", + "codeCommune": "61091", + "libelleAcheminement": "CHAMPSECRET", + "nomCommune": "CHAMPSECRET" }, { - "codePostal": "57480", - "codeCommune": "57152", - "libelleAcheminement": "CONTZ LES BAINS", - "nomCommune": "CONTZ LES BAINS" + "codePostal": "51230", + "codeCommune": "51010", + "libelleAcheminement": "ANGLUZELLES ET COURCELLES", + "nomCommune": "ANGLUZELLES ET COURCELLES" }, { - "codePostal": "33760", - "codeCommune": "33258", - "libelleAcheminement": "LUGASSON", - "nomCommune": "LUGASSON" + "codePostal": "52130", + "codeCommune": "52502", + "libelleAcheminement": "VALLERET", + "nomCommune": "VALLERET" }, { - "codePostal": "28110", - "codeCommune": "28218", - "libelleAcheminement": "LUCE", - "nomCommune": "LUCE" + "codePostal": "61300", + "codeCommune": "61456", + "libelleAcheminement": "ST SULPICE SUR RISLE", + "nomCommune": "ST SULPICE SUR RISLE" }, { - "codePostal": "45370", - "codeCommune": "45098", - "libelleAcheminement": "CLERY ST ANDRE", - "nomCommune": "CLERY ST ANDRE" + "codePostal": "06110", + "codeCommune": "06030", + "libelleAcheminement": "LE CANNET", + "nomCommune": "LE CANNET" }, { - "codePostal": "57680", - "codeCommune": "57153", - "libelleAcheminement": "CORNY SUR MOSELLE", - "nomCommune": "CORNY SUR MOSELLE" + "codePostal": "61100", + "codeCommune": "61095", + "libelleAcheminement": "LA CHAPELLE BICHE", + "nomCommune": "LA CHAPELLE BICHE" }, { - "codePostal": "33240", - "codeCommune": "33259", - "libelleAcheminement": "LUGON ET L ILE DU CARNAY", - "nomCommune": "LUGON ET L ILE DU CARNAY" + "codePostal": "51800", + "codeCommune": "51015", + "libelleAcheminement": "ARGERS", + "nomCommune": "ARGERS" }, { - "codePostal": "28140", - "codeCommune": "28221", - "libelleAcheminement": "LUMEAU", - "nomCommune": "LUMEAU" + "codePostal": "52400", + "codeCommune": "52504", + "libelleAcheminement": "VARENNES SUR AMANCE", + "nomCommune": "VARENNES SUR AMANCE" }, { - "codePostal": "45310", - "codeCommune": "45099", - "libelleAcheminement": "COINCES", - "nomCommune": "COINCES" + "codePostal": "61300", + "codeCommune": "61457", + "libelleAcheminement": "ST SYMPHORIEN DES BRUYERES", + "nomCommune": "ST SYMPHORIEN DES BRUYERES" }, { - "codePostal": "57530", - "codeCommune": "57155", - "libelleAcheminement": "COURCELLES CHAUSSY", - "nomCommune": "COURCELLES CHAUSSY" + "codePostal": "06110", + "codeCommune": "06030", + "libelleAcheminement": "LE CANNET", + "nomCommune": "LE CANNET" }, { - "codePostal": "33830", - "codeCommune": "33260", - "libelleAcheminement": "LUGOS", - "nomCommune": "LUGOS" + "codePostal": "61270", + "codeCommune": "61100", + "libelleAcheminement": "LA CHAPELLE VIEL", + "nomCommune": "LA CHAPELLE VIEL" }, { - "codePostal": "28120", - "codeCommune": "28225", - "libelleAcheminement": "MAGNY", - "nomCommune": "MAGNY" + "codePostal": "51290", + "codeCommune": "51016", + "libelleAcheminement": "ARRIGNY", + "nomCommune": "ARRIGNY" }, { - "codePostal": "45800", - "codeCommune": "45100", - "libelleAcheminement": "COMBLEUX", - "nomCommune": "COMBLEUX" + "codePostal": "52330", + "codeCommune": "52506", + "libelleAcheminement": "VAUDREMONT", + "nomCommune": "VAUDREMONT" }, { - "codePostal": "57590", - "codeCommune": "57158", - "libelleAcheminement": "CRAINCOURT", - "nomCommune": "CRAINCOURT" + "codePostal": "61500", + "codeCommune": "61464", + "libelleAcheminement": "SEES", + "nomCommune": "SEES" }, { - "codePostal": "33230", - "codeCommune": "33264", - "libelleAcheminement": "MARANSIN", - "nomCommune": "MARANSIN" + "codePostal": "06340", + "codeCommune": "06031", + "libelleAcheminement": "CANTARON", + "nomCommune": "CANTARON" }, { - "codePostal": "28300", - "codeCommune": "28229", - "libelleAcheminement": "MAINVILLIERS", - "nomCommune": "MAINVILLIERS" + "codePostal": "61160", + "codeCommune": "61120", + "libelleAcheminement": "COUDEHARD", + "nomCommune": "COUDEHARD" }, { - "codePostal": "45700", - "codeCommune": "45105", - "libelleAcheminement": "CORTRAT", - "nomCommune": "CORTRAT" + "codePostal": "51270", + "codeCommune": "51034", + "libelleAcheminement": "BANNAY", + "nomCommune": "BANNAY" }, { - "codePostal": "57550", - "codeCommune": "57165", - "libelleAcheminement": "DALEM", - "nomCommune": "DALEM" + "codePostal": "52130", + "codeCommune": "52510", + "libelleAcheminement": "VAUX SUR BLAISE", + "nomCommune": "VAUX SUR BLAISE" }, { - "codePostal": "33220", - "codeCommune": "33269", - "libelleAcheminement": "MARGUERON", - "nomCommune": "MARGUERON" + "codePostal": "61160", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "28240", - "codeCommune": "28232", - "libelleAcheminement": "MANOU", - "nomCommune": "MANOU" + "codePostal": "06500", + "codeCommune": "06036", + "libelleAcheminement": "CASTILLON", + "nomCommune": "CASTILLON" }, { - "codePostal": "45490", - "codeCommune": "45114", - "libelleAcheminement": "COURTEMPIERRE", - "nomCommune": "COURTEMPIERRE" + "codePostal": "61160", + "codeCommune": "61123", + "libelleAcheminement": "COULONCES", + "nomCommune": "COULONCES" }, { - "codePostal": "57925", - "codeCommune": "57179", - "libelleAcheminement": "DISTROFF", - "nomCommune": "DISTROFF" + "codePostal": "51120", + "codeCommune": "51036", + "libelleAcheminement": "BARBONNE FAYEL", + "nomCommune": "BARBONNE FAYEL" }, { - "codePostal": "33690", - "codeCommune": "33271", - "libelleAcheminement": "MARIONS", - "nomCommune": "MARIONS" + "codePostal": "52500", + "codeCommune": "52513", + "libelleAcheminement": "VELLES", + "nomCommune": "VELLES" }, { - "codePostal": "28400", - "codeCommune": "28237", - "libelleAcheminement": "MAROLLES LES BUIS", - "nomCommune": "MAROLLES LES BUIS" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "45320", - "codeCommune": "45115", - "libelleAcheminement": "COURTENAY", - "nomCommune": "COURTENAY" + "codePostal": "06470", + "codeCommune": "06040", + "libelleAcheminement": "CHATEAUNEUF D ENTRAUNES", + "nomCommune": "CHATEAUNEUF D ENTRAUNES" }, { - "codePostal": "57260", - "codeCommune": "57181", - "libelleAcheminement": "DOMNOM LES DIEUZE", - "nomCommune": "DOMNOM LES DIEUZE" + "codePostal": "61170", + "codeCommune": "61126", + "libelleAcheminement": "COULONGES SUR SARTHE", + "nomCommune": "COULONGES SUR SARTHE" }, { - "codePostal": "33620", - "codeCommune": "33272", - "libelleAcheminement": "MARSAS", - "nomCommune": "MARSAS" + "codePostal": "51260", + "codeCommune": "51041", + "libelleAcheminement": "BAUDEMENT", + "nomCommune": "BAUDEMENT" }, { - "codePostal": "28310", - "codeCommune": "28243", - "libelleAcheminement": "MEROUVILLE", - "nomCommune": "MEROUVILLE" + "codePostal": "52000", + "codeCommune": "52514", + "libelleAcheminement": "VERBIESLES", + "nomCommune": "VERBIESLES" }, { - "codePostal": "45230", - "codeCommune": "45121", - "libelleAcheminement": "DAMMARIE SUR LOING", - "nomCommune": "DAMMARIE SUR LOING" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "57590", - "codeCommune": "57182", - "libelleAcheminement": "DONJEUX", - "nomCommune": "DONJEUX" + "codePostal": "06620", + "codeCommune": "06041", + "libelleAcheminement": "CIPIERES", + "nomCommune": "CIPIERES" }, { - "codePostal": "33690", - "codeCommune": "33276", - "libelleAcheminement": "MASSEILLES", - "nomCommune": "MASSEILLES" + "codePostal": "61300", + "codeCommune": "61140", + "libelleAcheminement": "CRULAI", + "nomCommune": "CRULAI" }, { - "codePostal": "28120", - "codeCommune": "28245", - "libelleAcheminement": "MESLAY LE GRENET", - "nomCommune": "MESLAY LE GRENET" + "codePostal": "51270", + "codeCommune": "51042", + "libelleAcheminement": "BAYE", + "nomCommune": "BAYE" }, { - "codePostal": "45390", - "codeCommune": "45124", - "libelleAcheminement": "DESMONTS", - "nomCommune": "DESMONTS" + "codePostal": "52320", + "codeCommune": "52524", + "libelleAcheminement": "VIGNORY", + "nomCommune": "VIGNORY" }, { - "codePostal": "57230", - "codeCommune": "57188", - "libelleAcheminement": "EGUELSHARDT", - "nomCommune": "EGUELSHARDT" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "33350", - "codeCommune": "33282", - "libelleAcheminement": "MERIGNAS", - "nomCommune": "MERIGNAS" + "codePostal": "06910", + "codeCommune": "06052", + "libelleAcheminement": "CUEBRIS", + "nomCommune": "CUEBRIS" }, { - "codePostal": "28260", - "codeCommune": "28247", - "libelleAcheminement": "LE MESNIL SIMON", - "nomCommune": "LE MESNIL SIMON" + "codePostal": "61250", + "codeCommune": "61143", + "libelleAcheminement": "DAMIGNY", + "nomCommune": "DAMIGNY" }, { - "codePostal": "45450", - "codeCommune": "45126", - "libelleAcheminement": "DONNERY", - "nomCommune": "DONNERY" + "codePostal": "51210", + "codeCommune": "51050", + "libelleAcheminement": "BERGERES SOUS MONTMIRAIL", + "nomCommune": "BERGERES SOUS MONTMIRAIL" }, { - "codePostal": "57340", - "codeCommune": "57189", - "libelleAcheminement": "EINCHEVILLE", - "nomCommune": "EINCHEVILLE" + "codePostal": "52120", + "codeCommune": "52525", + "libelleAcheminement": "VILLARS EN AZOIS", + "nomCommune": "VILLARS EN AZOIS" }, { - "codePostal": "33380", - "codeCommune": "33284", - "libelleAcheminement": "MIOS", - "nomCommune": "MIOS" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "28130", - "codeCommune": "28249", - "libelleAcheminement": "MEVOISINS", - "nomCommune": "MEVOISINS" + "codePostal": "06360", + "codeCommune": "06059", + "libelleAcheminement": "EZE", + "nomCommune": "EZE" }, { - "codePostal": "45220", - "codeCommune": "45129", - "libelleAcheminement": "DOUCHY MONTCORBON", - "nomCommune": "DOUCHY MONTCORBON" + "codePostal": "61600", + "codeCommune": "61168", + "libelleAcheminement": "LA FERTE MACE", + "nomCommune": "LA FERTE MACE" }, { - "codePostal": "57690", - "codeCommune": "57190", - "libelleAcheminement": "ELVANGE", - "nomCommune": "ELVANGE" + "codePostal": "51800", + "codeCommune": "51053", + "libelleAcheminement": "BERZIEUX", + "nomCommune": "BERZIEUX" }, { - "codePostal": "33380", - "codeCommune": "33284", - "libelleAcheminement": "MIOS", - "nomCommune": "MIOS" + "codePostal": "52160", + "codeCommune": "52526", + "libelleAcheminement": "VILLARS SANTENOGE", + "nomCommune": "VILLARS SANTENOGE" }, { - "codePostal": "28190", - "codeCommune": "28254", - "libelleAcheminement": "MITTAINVILLIERS VERIGNY", - "nomCommune": "MITTAINVILLIERS VERIGNY" + "codePostal": "61500", + "codeCommune": "61480", + "libelleAcheminement": "TANVILLE", + "nomCommune": "TANVILLE" }, { - "codePostal": "45230", - "codeCommune": "45143", - "libelleAcheminement": "FEINS EN GATINAIS", - "nomCommune": "FEINS EN GATINAIS" + "codePostal": "06950", + "codeCommune": "06060", + "libelleAcheminement": "FALICON", + "nomCommune": "FALICON" }, { - "codePostal": "57970", - "codeCommune": "57191", - "libelleAcheminement": "ELZANGE", - "nomCommune": "ELZANGE" + "codePostal": "61570", + "codeCommune": "61176", + "libelleAcheminement": "FRANCHEVILLE", + "nomCommune": "FRANCHEVILLE" }, { - "codePostal": "33190", - "codeCommune": "33287", - "libelleAcheminement": "MONGAUZY", - "nomCommune": "MONGAUZY" + "codePostal": "51430", + "codeCommune": "51058", + "libelleAcheminement": "BEZANNES", + "nomCommune": "BEZANNES" }, { - "codePostal": "28240", - "codeCommune": "28264", - "libelleAcheminement": "MONTIREAU", - "nomCommune": "MONTIREAU" + "codePostal": "52160", + "codeCommune": "52542", + "libelleAcheminement": "VIVEY", + "nomCommune": "VIVEY" }, { - "codePostal": "45210", - "codeCommune": "45145", - "libelleAcheminement": "FERRIERES EN GATINAIS", - "nomCommune": "FERRIERES EN GATINAIS" + "codePostal": "61410", + "codeCommune": "61482", + "libelleAcheminement": "TESSE FROULAY", + "nomCommune": "TESSE FROULAY" }, { - "codePostal": "57330", - "codeCommune": "57194", - "libelleAcheminement": "ENTRANGE", - "nomCommune": "ENTRANGE" + "codePostal": "06510", + "codeCommune": "06064", + "libelleAcheminement": "GATTIERES", + "nomCommune": "GATTIERES" }, { - "codePostal": "33410", - "codeCommune": "33288", - "libelleAcheminement": "MONPRIMBLANC", - "nomCommune": "MONPRIMBLANC" + "codePostal": "61120", + "codeCommune": "61180", + "libelleAcheminement": "FRESNAY LE SAMSON", + "nomCommune": "FRESNAY LE SAMSON" }, { - "codePostal": "28500", - "codeCommune": "28267", - "libelleAcheminement": "MONTREUIL", - "nomCommune": "MONTREUIL" + "codePostal": "51170", + "codeCommune": "51069", + "libelleAcheminement": "BLIGNY", + "nomCommune": "BLIGNY" }, { - "codePostal": "45270", - "codeCommune": "45150", - "libelleAcheminement": "FREVILLE DU GATINAIS", - "nomCommune": "FREVILLE DU GATINAIS" + "codePostal": "52400", + "codeCommune": "52544", + "libelleAcheminement": "VOISEY", + "nomCommune": "VOISEY" }, { - "codePostal": "57290", - "codeCommune": "57206", - "libelleAcheminement": "FAMECK", - "nomCommune": "FAMECK" + "codePostal": "61600", + "codeCommune": "61483", + "libelleAcheminement": "BAGNOLES DE L ORNE NORMANDIE", + "nomCommune": "BAGNOLES DE L ORNE NORMANDIE" }, { - "codePostal": "33500", - "codeCommune": "33302", - "libelleAcheminement": "NEAC", - "nomCommune": "NEAC" + "codePostal": "06610", + "codeCommune": "06065", + "libelleAcheminement": "LA GAUDE", + "nomCommune": "LA GAUDE" }, { - "codePostal": "28160", - "codeCommune": "28273", - "libelleAcheminement": "MOULHARD", - "nomCommune": "MOULHARD" + "codePostal": "61210", + "codeCommune": "61189", + "libelleAcheminement": "GIEL COURTEILLES", + "nomCommune": "GIEL COURTEILLES" }, { - "codePostal": "45500", - "codeCommune": "45155", - "libelleAcheminement": "GIEN", - "nomCommune": "GIEN" + "codePostal": "51400", + "codeCommune": "51078", + "libelleAcheminement": "BOUY", + "nomCommune": "BOUY" }, { - "codePostal": "57320", - "codeCommune": "57215", - "libelleAcheminement": "FLASTROFF", - "nomCommune": "FLASTROFF" + "codePostal": "53210", + "codeCommune": "53007", + "libelleAcheminement": "ARGENTRE", + "nomCommune": "ARGENTRE" }, { - "codePostal": "33550", - "codeCommune": "33311", - "libelleAcheminement": "PAILLET", - "nomCommune": "PAILLET" + "codePostal": "61130", + "codeCommune": "61484", + "libelleAcheminement": "VAL AU PERCHE", + "nomCommune": "VAL AU PERCHE" }, { - "codePostal": "28310", - "codeCommune": "28276", - "libelleAcheminement": "NEUVY EN BEAUCE", - "nomCommune": "NEUVY EN BEAUCE" + "codePostal": "06520", + "codeCommune": "06069", + "libelleAcheminement": "GRASSE", + "nomCommune": "GRASSE" }, { - "codePostal": "45300", - "codeCommune": "45157", - "libelleAcheminement": "GIVRAINES", - "nomCommune": "GIVRAINES" + "codePostal": "61240", + "codeCommune": "61192", + "libelleAcheminement": "GODISSON", + "nomCommune": "GODISSON" }, { - "codePostal": "57690", - "codeCommune": "57217", - "libelleAcheminement": "FLETRANGE", - "nomCommune": "FLETRANGE" + "codePostal": "51150", + "codeCommune": "51079", + "libelleAcheminement": "BOUZY", + "nomCommune": "BOUZY" }, { - "codePostal": "33290", - "codeCommune": "33312", - "libelleAcheminement": "PAREMPUYRE", - "nomCommune": "PAREMPUYRE" + "codePostal": "53170", + "codeCommune": "53009", + "libelleAcheminement": "ARQUENAY", + "nomCommune": "ARQUENAY" }, { - "codePostal": "28630", - "codeCommune": "28278", - "libelleAcheminement": "NOGENT LE PHAYE", - "nomCommune": "NOGENT LE PHAYE" + "codePostal": "61260", + "codeCommune": "61484", + "libelleAcheminement": "VAL AU PERCHE", + "nomCommune": "VAL AU PERCHE" }, { - "codePostal": "45300", - "codeCommune": "45177", - "libelleAcheminement": "LAAS", - "nomCommune": "LAAS" + "codePostal": "06420", + "codeCommune": "06072", + "libelleAcheminement": "ILONSE", + "nomCommune": "ILONSE" }, { - "codePostal": "57580", - "codeCommune": "57220", - "libelleAcheminement": "FLOCOURT", - "nomCommune": "FLOCOURT" + "codePostal": "61550", + "codeCommune": "61193", + "libelleAcheminement": "LA GONFRIERE", + "nomCommune": "LA GONFRIERE" }, { - "codePostal": "33230", - "codeCommune": "33315", - "libelleAcheminement": "LES PEINTURES", - "nomCommune": "LES PEINTURES" + "codePostal": "51230", + "codeCommune": "51091", + "libelleAcheminement": "BROUSSY LE PETIT", + "nomCommune": "BROUSSY LE PETIT" }, { - "codePostal": "28140", - "codeCommune": "28287", - "libelleAcheminement": "ORGERES EN BEAUCE", - "nomCommune": "ORGERES EN BEAUCE" + "codePostal": "53600", + "codeCommune": "53010", + "libelleAcheminement": "ASSE LE BERENGER", + "nomCommune": "ASSE LE BERENGER" }, { - "codePostal": "45600", - "codeCommune": "45184", - "libelleAcheminement": "LION EN SULLIAS", - "nomCommune": "LION EN SULLIAS" + "codePostal": "61260", + "codeCommune": "61484", + "libelleAcheminement": "VAL AU PERCHE", + "nomCommune": "VAL AU PERCHE" }, { - "codePostal": "57600", - "codeCommune": "57227", - "libelleAcheminement": "FORBACH", - "nomCommune": "FORBACH" + "codePostal": "06210", + "codeCommune": "06079", + "libelleAcheminement": "MANDELIEU LA NAPOULE", + "nomCommune": "MANDELIEU LA NAPOULE" }, { - "codePostal": "33890", - "codeCommune": "33319", - "libelleAcheminement": "PESSAC SUR DORDOGNE", - "nomCommune": "PESSAC SUR DORDOGNE" + "codePostal": "61130", + "codeCommune": "61196", + "libelleAcheminement": "BELFORET EN PERCHE", + "nomCommune": "BELFORET EN PERCHE" }, { - "codePostal": "28210", - "codeCommune": "28289", - "libelleAcheminement": "ORMOY", - "nomCommune": "ORMOY" + "codePostal": "51800", + "codeCommune": "51104", + "libelleAcheminement": "CERNAY EN DORMOIS", + "nomCommune": "CERNAY EN DORMOIS" }, { - "codePostal": "45210", - "codeCommune": "45189", - "libelleAcheminement": "LOUZOUER", - "nomCommune": "LOUZOUER" + "codePostal": "53230", + "codeCommune": "53011", + "libelleAcheminement": "ASTILLE", + "nomCommune": "ASTILLE" }, { - "codePostal": "57830", - "codeCommune": "57229", - "libelleAcheminement": "FOULCREY", - "nomCommune": "FOULCREY" + "codePostal": "61800", + "codeCommune": "61486", + "libelleAcheminement": "TINCHEBRAY BOCAGE", + "nomCommune": "TINCHEBRAY BOCAGE" }, { - "codePostal": "33290", - "codeCommune": "33322", - "libelleAcheminement": "LE PIAN MEDOC", - "nomCommune": "LE PIAN MEDOC" + "codePostal": "06370", + "codeCommune": "06084", + "libelleAcheminement": "MOUANS SARTOUX", + "nomCommune": "MOUANS SARTOUX" }, { - "codePostal": "28500", - "codeCommune": "28292", - "libelleAcheminement": "OUERRE", - "nomCommune": "OUERRE" + "codePostal": "61130", + "codeCommune": "61196", + "libelleAcheminement": "BELFORET EN PERCHE", + "nomCommune": "BELFORET EN PERCHE" }, { - "codePostal": "45300", - "codeCommune": "45191", - "libelleAcheminement": "LE MALESHERBOIS", - "nomCommune": "LE MALESHERBOIS" + "codePostal": "51240", + "codeCommune": "51106", + "libelleAcheminement": "CERNON", + "nomCommune": "CERNON" }, { - "codePostal": "57420", - "codeCommune": "57231", - "libelleAcheminement": "FOVILLE", - "nomCommune": "FOVILLE" + "codePostal": "53340", + "codeCommune": "53017", + "libelleAcheminement": "VAL DU MAINE", + "nomCommune": "VAL DU MAINE" }, { - "codePostal": "33730", - "codeCommune": "33329", - "libelleAcheminement": "POMPEJAC", - "nomCommune": "POMPEJAC" + "codePostal": "61800", + "codeCommune": "61486", + "libelleAcheminement": "TINCHEBRAY BOCAGE", + "nomCommune": "TINCHEBRAY BOCAGE" }, { - "codePostal": "28210", - "codeCommune": "28299", - "libelleAcheminement": "LES PINTHIERES", - "nomCommune": "LES PINTHIERES" + "codePostal": "06200", + "codeCommune": "06088", + "libelleAcheminement": "NICE", + "nomCommune": "NICE" }, { - "codePostal": "45330", - "codeCommune": "45191", - "libelleAcheminement": "LE MALESHERBOIS", - "nomCommune": "LE MALESHERBOIS" + "codePostal": "61250", + "codeCommune": "61203", + "libelleAcheminement": "HELOUP", + "nomCommune": "HELOUP" }, { - "codePostal": "57670", - "codeCommune": "57248", - "libelleAcheminement": "GIVRYCOURT", - "nomCommune": "GIVRYCOURT" + "codePostal": "51000", + "codeCommune": "51108", + "libelleAcheminement": "CHALONS EN CHAMPAGNE", + "nomCommune": "CHALONS EN CHAMPAGNE" }, { - "codePostal": "33370", - "codeCommune": "33330", - "libelleAcheminement": "POMPIGNAC", - "nomCommune": "POMPIGNAC" + "codePostal": "53170", + "codeCommune": "53025", + "libelleAcheminement": "BAZOUGERS", + "nomCommune": "BAZOUGERS" }, { - "codePostal": "28800", - "codeCommune": "28306", - "libelleAcheminement": "PRE ST MARTIN", - "nomCommune": "PRE ST MARTIN" + "codePostal": "61800", + "codeCommune": "61486", + "libelleAcheminement": "TINCHEBRAY BOCAGE", + "nomCommune": "TINCHEBRAY BOCAGE" }, { - "codePostal": "45270", - "codeCommune": "45205", - "libelleAcheminement": "MEZIERES EN GATINAIS", - "nomCommune": "MEZIERES EN GATINAIS" + "codePostal": "06300", + "codeCommune": "06088", + "libelleAcheminement": "NICE", + "nomCommune": "NICE" }, { - "codePostal": "57220", - "codeCommune": "57252", - "libelleAcheminement": "GOMELANGE", - "nomCommune": "GOMELANGE" + "codePostal": "61330", + "codeCommune": "61211", + "libelleAcheminement": "JUVIGNY VAL D ANDAINE", + "nomCommune": "JUVIGNY VAL D ANDAINE" }, { - "codePostal": "33660", - "codeCommune": "33332", - "libelleAcheminement": "PORCHERES", - "nomCommune": "PORCHERES" + "codePostal": "51500", + "codeCommune": "51112", + "libelleAcheminement": "CHAMERY", + "nomCommune": "CHAMERY" }, { - "codePostal": "28170", - "codeCommune": "28323", - "libelleAcheminement": "ST ANGE ET TORCAY", - "nomCommune": "ST ANGE ET TORCAY" + "codePostal": "53290", + "codeCommune": "53029", + "libelleAcheminement": "BIERNE LES VILLAGES", + "nomCommune": "BIERNE LES VILLAGES" }, { - "codePostal": "45200", - "codeCommune": "45208", - "libelleAcheminement": "MONTARGIS", - "nomCommune": "MONTARGIS" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "57260", - "codeCommune": "57270", - "libelleAcheminement": "VAL DE BRIDE", - "nomCommune": "VAL DE BRIDE" + "codePostal": "06910", + "codeCommune": "06097", + "libelleAcheminement": "PIERREFEU", + "nomCommune": "PIERREFEU" }, { - "codePostal": "33680", - "codeCommune": "33333", - "libelleAcheminement": "LE PORGE", - "nomCommune": "LE PORGE" + "codePostal": "61330", + "codeCommune": "61211", + "libelleAcheminement": "JUVIGNY VAL D ANDAINE", + "nomCommune": "JUVIGNY VAL D ANDAINE" }, { - "codePostal": "28240", - "codeCommune": "28333", - "libelleAcheminement": "ST DENIS DES PUITS", - "nomCommune": "ST DENIS DES PUITS" + "codePostal": "51260", + "codeCommune": "51127", + "libelleAcheminement": "LA CHAPELLE LASSON", + "nomCommune": "LA CHAPELLE LASSON" }, { - "codePostal": "45290", - "codeCommune": "45218", - "libelleAcheminement": "LE MOULINET SUR SOLIN", - "nomCommune": "LE MOULINET SUR SOLIN" + "codePostal": "53290", + "codeCommune": "53029", + "libelleAcheminement": "BIERNE LES VILLAGES", + "nomCommune": "BIERNE LES VILLAGES" }, { - "codePostal": "57340", - "codeCommune": "57281", - "libelleAcheminement": "HABOUDANGE", - "nomCommune": "HABOUDANGE" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "33350", - "codeCommune": "33344", - "libelleAcheminement": "PUJOLS", - "nomCommune": "PUJOLS" + "codePostal": "06260", + "codeCommune": "06098", + "libelleAcheminement": "PUGET ROSTANG", + "nomCommune": "PUGET ROSTANG" }, { - "codePostal": "28200", - "codeCommune": "28334", - "libelleAcheminement": "ST DENIS LANNERAY", - "nomCommune": "ST DENIS LANNERAY" + "codePostal": "61210", + "codeCommune": "61217", + "libelleAcheminement": "LA LANDE DE LOUGE", + "nomCommune": "LA LANDE DE LOUGE" }, { - "codePostal": "45170", - "codeCommune": "45231", - "libelleAcheminement": "OISON", - "nomCommune": "OISON" + "codePostal": "51310", + "codeCommune": "51137", + "libelleAcheminement": "CHATILLON SUR MORIN", + "nomCommune": "CHATILLON SUR MORIN" }, { - "codePostal": "57970", - "codeCommune": "57287", - "libelleAcheminement": "BASSE HAM", - "nomCommune": "BASSE HAM" + "codePostal": "53240", + "codeCommune": "53031", + "libelleAcheminement": "LA BIGOTTIERE", + "nomCommune": "LA BIGOTTIERE" }, { - "codePostal": "33190", - "codeCommune": "33346", - "libelleAcheminement": "PUYBARBAN", - "nomCommune": "PUYBARBAN" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "28270", - "codeCommune": "28346", - "libelleAcheminement": "ST LUBIN DE CRAVANT", - "nomCommune": "ST LUBIN DE CRAVANT" + "codePostal": "06420", + "codeCommune": "06102", + "libelleAcheminement": "RIMPLAS", + "nomCommune": "RIMPLAS" }, { - "codePostal": "45140", - "codeCommune": "45235", - "libelleAcheminement": "ORMES", - "nomCommune": "ORMES" + "codePostal": "61290", + "codeCommune": "61230", + "libelleAcheminement": "LONGNY LES VILLAGES", + "nomCommune": "LONGNY LES VILLAGES" }, { - "codePostal": "57910", - "codeCommune": "57289", - "libelleAcheminement": "HAMBACH", - "nomCommune": "HAMBACH" + "codePostal": "51800", + "codeCommune": "51138", + "libelleAcheminement": "CHATRICES", + "nomCommune": "CHATRICES" }, { - "codePostal": "33360", - "codeCommune": "33349", - "libelleAcheminement": "QUINSAC", - "nomCommune": "QUINSAC" + "codePostal": "53290", + "codeCommune": "53036", + "libelleAcheminement": "BOUERE", + "nomCommune": "BOUERE" }, { - "codePostal": "28210", - "codeCommune": "28349", - "libelleAcheminement": "ST LUCIEN", - "nomCommune": "ST LUCIEN" + "codePostal": "61250", + "codeCommune": "61497", + "libelleAcheminement": "VALFRAMBERT", + "nomCommune": "VALFRAMBERT" }, { - "codePostal": "45290", - "codeCommune": "45239", - "libelleAcheminement": "OUSSOY EN GATINAIS", - "nomCommune": "OUSSOY EN GATINAIS" + "codePostal": "06190", + "codeCommune": "06104", + "libelleAcheminement": "ROQUEBRUNE CAP MARTIN", + "nomCommune": "ROQUEBRUNE CAP MARTIN" }, { - "codePostal": "57870", - "codeCommune": "57299", - "libelleAcheminement": "HARTZVILLER", - "nomCommune": "HARTZVILLER" + "codePostal": "61290", + "codeCommune": "61230", + "libelleAcheminement": "LONGNY LES VILLAGES", + "nomCommune": "LONGNY LES VILLAGES" }, { - "codePostal": "33580", - "codeCommune": "33353", - "libelleAcheminement": "RIMONS", - "nomCommune": "RIMONS" + "codePostal": "51240", + "codeCommune": "51141", + "libelleAcheminement": "LA CHAUSSEE SUR MARNE", + "nomCommune": "LA CHAUSSEE SUR MARNE" }, { - "codePostal": "28190", - "codeCommune": "28350", - "libelleAcheminement": "ST LUPERCE", - "nomCommune": "ST LUPERCE" + "codePostal": "53410", + "codeCommune": "53045", + "libelleAcheminement": "LA BRULATTE", + "nomCommune": "LA BRULATTE" }, { - "codePostal": "45480", - "codeCommune": "45240", - "libelleAcheminement": "OUTARVILLE", - "nomCommune": "OUTARVILLE" + "codePostal": "61130", + "codeCommune": "61498", + "libelleAcheminement": "VAUNOISE", + "nomCommune": "VAUNOISE" }, { - "codePostal": "57320", - "codeCommune": "57309", - "libelleAcheminement": "HEINING LES BOUZONVILLE", - "nomCommune": "HEINING LES BOUZONVILLE" + "codePostal": "06190", + "codeCommune": "06104", + "libelleAcheminement": "ROQUEBRUNE CAP MARTIN", + "nomCommune": "ROQUEBRUNE CAP MARTIN" }, { - "codePostal": "33220", - "codeCommune": "33360", - "libelleAcheminement": "LA ROQUILLE", - "nomCommune": "LA ROQUILLE" + "codePostal": "61600", + "codeCommune": "61243", + "libelleAcheminement": "MAGNY LE DESERT", + "nomCommune": "MAGNY LE DESERT" }, { - "codePostal": "28800", - "codeCommune": "28353", - "libelleAcheminement": "ST MAUR SUR LE LOIR", - "nomCommune": "ST MAUR SUR LE LOIR" + "codePostal": "51530", + "codeCommune": "51142", + "libelleAcheminement": "CHAVOT COURCOURT", + "nomCommune": "CHAVOT COURCOURT" }, { - "codePostal": "45250", - "codeCommune": "45245", - "libelleAcheminement": "OUZOUER SUR TREZEE", - "nomCommune": "OUZOUER SUR TREZEE" + "codePostal": "53170", + "codeCommune": "53046", + "libelleAcheminement": "LE BURET", + "nomCommune": "LE BURET" }, { - "codePostal": "57510", - "codeCommune": "57325", - "libelleAcheminement": "HILSPRICH", - "nomCommune": "HILSPRICH" + "codePostal": "62161", + "codeCommune": "62011", + "libelleAcheminement": "AGNEZ LES DUISANS", + "nomCommune": "AGNEZ LES DUISANS" }, { - "codePostal": "33820", - "codeCommune": "33374", - "libelleAcheminement": "ST AUBIN DE BLAYE", - "nomCommune": "ST AUBIN DE BLAYE" + "codePostal": "06730", + "codeCommune": "06114", + "libelleAcheminement": "ST ANDRE DE LA ROCHE", + "nomCommune": "ST ANDRE DE LA ROCHE" }, { - "codePostal": "28240", - "codeCommune": "28354", - "libelleAcheminement": "ST MAURICE ST GERMAIN", - "nomCommune": "ST MAURICE ST GERMAIN" + "codePostal": "61170", + "codeCommune": "61251", + "libelleAcheminement": "MARCHEMAISONS", + "nomCommune": "MARCHEMAISONS" }, { - "codePostal": "45700", - "codeCommune": "45247", - "libelleAcheminement": "PANNES", - "nomCommune": "PANNES" + "codePostal": "51800", + "codeCommune": "51143", + "libelleAcheminement": "LE CHEMIN", + "nomCommune": "LE CHEMIN" }, { - "codePostal": "57480", - "codeCommune": "57341", - "libelleAcheminement": "HUNTING", - "nomCommune": "HUNTING" + "codePostal": "53200", + "codeCommune": "53062", + "libelleAcheminement": "CHATEAU GONTIER SUR MAYENNE", + "nomCommune": "CHATEAU GONTIER SUR MAYENNE" }, { - "codePostal": "33420", - "codeCommune": "33375", - "libelleAcheminement": "ST AUBIN DE BRANNE", - "nomCommune": "ST AUBIN DE BRANNE" + "codePostal": "62217", + "codeCommune": "62013", + "libelleAcheminement": "AGNY", + "nomCommune": "AGNY" }, { - "codePostal": "28130", - "codeCommune": "28357", - "libelleAcheminement": "ST PIAT", - "nomCommune": "ST PIAT" + "codePostal": "06260", + "codeCommune": "06124", + "libelleAcheminement": "ST LEGER", + "nomCommune": "ST LEGER" }, { - "codePostal": "45200", - "codeCommune": "45249", - "libelleAcheminement": "PAUCOURT", - "nomCommune": "PAUCOURT" + "codePostal": "61400", + "codeCommune": "61255", + "libelleAcheminement": "MAUVES SUR HUISNE", + "nomCommune": "MAUVES SUR HUISNE" }, { - "codePostal": "57970", - "codeCommune": "57343", - "libelleAcheminement": "ILLANGE", - "nomCommune": "ILLANGE" + "codePostal": "51510", + "codeCommune": "51146", + "libelleAcheminement": "CHENIERS", + "nomCommune": "CHENIERS" }, { - "codePostal": "33540", - "codeCommune": "33379", - "libelleAcheminement": "ST BRICE", - "nomCommune": "ST BRICE" + "codePostal": "53200", + "codeCommune": "53062", + "libelleAcheminement": "CHATEAU GONTIER SUR MAYENNE", + "nomCommune": "CHATEAU GONTIER SUR MAYENNE" }, { - "codePostal": "28170", - "codeCommune": "28360", - "libelleAcheminement": "ST SAUVEUR MARVILLE", - "nomCommune": "ST SAUVEUR MARVILLE" + "codePostal": "62170", + "codeCommune": "62018", + "libelleAcheminement": "AIX EN ISSART", + "nomCommune": "AIX EN ISSART" }, { - "codePostal": "45210", - "codeCommune": "45250", - "libelleAcheminement": "PERS EN GATINAIS", - "nomCommune": "PERS EN GATINAIS" + "codePostal": "06420", + "codeCommune": "06129", + "libelleAcheminement": "ST SAUVEUR SUR TINEE", + "nomCommune": "ST SAUVEUR SUR TINEE" }, { - "codePostal": "57130", - "codeCommune": "57350", - "libelleAcheminement": "JOUY AUX ARCHES", - "nomCommune": "JOUY AUX ARCHES" + "codePostal": "61410", + "codeCommune": "61257", + "libelleAcheminement": "MEHOUDIN", + "nomCommune": "MEHOUDIN" }, { - "codePostal": "33860", - "codeCommune": "33380", - "libelleAcheminement": "VAL DE LIVENNE", - "nomCommune": "VAL DE LIVENNE" + "codePostal": "51150", + "codeCommune": "51150", + "libelleAcheminement": "CHERVILLE", + "nomCommune": "CHERVILLE" }, { - "codePostal": "28210", - "codeCommune": "28372", - "libelleAcheminement": "SENANTES", - "nomCommune": "SENANTES" + "codePostal": "53200", + "codeCommune": "53066", + "libelleAcheminement": "CHEMAZE", + "nomCommune": "CHEMAZE" }, { - "codePostal": "45390", - "codeCommune": "45258", - "libelleAcheminement": "PUISEAUX", - "nomCommune": "PUISEAUX" + "codePostal": "62160", + "codeCommune": "62019", + "libelleAcheminement": "AIX NOULETTE", + "nomCommune": "AIX NOULETTE" }, { - "codePostal": "57412", - "codeCommune": "57355", - "libelleAcheminement": "KALHAUSEN", - "nomCommune": "KALHAUSEN" + "codePostal": "06910", + "codeCommune": "06131", + "libelleAcheminement": "SALLAGRIFFON", + "nomCommune": "SALLAGRIFFON" }, { - "codePostal": "33880", - "codeCommune": "33381", - "libelleAcheminement": "ST CAPRAIS DE BORDEAUX", - "nomCommune": "ST CAPRAIS DE BORDEAUX" + "codePostal": "61170", + "codeCommune": "61258", + "libelleAcheminement": "LE MELE SUR SARTHE", + "nomCommune": "LE MELE SUR SARTHE" }, { - "codePostal": "28250", - "codeCommune": "28373", - "libelleAcheminement": "SENONCHES", - "nomCommune": "SENONCHES" + "codePostal": "51120", + "codeCommune": "51151", + "libelleAcheminement": "CHICHEY", + "nomCommune": "CHICHEY" }, { - "codePostal": "45210", - "codeCommune": "45265", - "libelleAcheminement": "ROZOY LE VIEIL", - "nomCommune": "ROZOY LE VIEIL" + "codePostal": "53250", + "codeCommune": "53069", + "libelleAcheminement": "CHEVAIGNE DU MAINE", + "nomCommune": "CHEVAIGNE DU MAINE" }, { - "codePostal": "57480", - "codeCommune": "57361", - "libelleAcheminement": "KERLING LES SIERCK", - "nomCommune": "KERLING LES SIERCK" + "codePostal": "62310", + "codeCommune": "62026", + "libelleAcheminement": "AMBRICOURT", + "nomCommune": "AMBRICOURT" }, { - "codePostal": "33340", - "codeCommune": "33383", - "libelleAcheminement": "ST CHRISTOLY MEDOC", - "nomCommune": "ST CHRISTOLY MEDOC" + "codePostal": "06540", + "codeCommune": "06132", + "libelleAcheminement": "SAORGE", + "nomCommune": "SAORGE" }, { - "codePostal": "28150", - "codeCommune": "28383", - "libelleAcheminement": "THEUVILLE", - "nomCommune": "THEUVILLE" + "codePostal": "61160", + "codeCommune": "61276", + "libelleAcheminement": "MERRI", + "nomCommune": "MERRI" }, { - "codePostal": "45730", - "codeCommune": "45270", - "libelleAcheminement": "ST BENOIT SUR LOIRE", - "nomCommune": "ST BENOIT SUR LOIRE" + "codePostal": "51500", + "codeCommune": "51152", + "libelleAcheminement": "CHIGNY LES ROSES", + "nomCommune": "CHIGNY LES ROSES" }, { - "codePostal": "57480", - "codeCommune": "57365", - "libelleAcheminement": "KIRSCHNAUMEN", - "nomCommune": "KIRSCHNAUMEN" + "codePostal": "53100", + "codeCommune": "53074", + "libelleAcheminement": "CONTEST", + "nomCommune": "CONTEST" }, { - "codePostal": "33570", - "codeCommune": "33386", - "libelleAcheminement": "ST CIBARD", - "nomCommune": "ST CIBARD" + "codePostal": "62190", + "codeCommune": "62028", + "libelleAcheminement": "AMES", + "nomCommune": "AMES" }, { - "codePostal": "28170", - "codeCommune": "28386", - "libelleAcheminement": "THIMERT GATELLES", - "nomCommune": "THIMERT GATELLES" + "codePostal": "06750", + "codeCommune": "06134", + "libelleAcheminement": "SERANON", + "nomCommune": "SERANON" }, { - "codePostal": "45220", - "codeCommune": "45275", - "libelleAcheminement": "ST FIRMIN DES BOIS", - "nomCommune": "ST FIRMIN DES BOIS" + "codePostal": "61360", + "codeCommune": "61286", + "libelleAcheminement": "MONTGAUDRY", + "nomCommune": "MONTGAUDRY" }, { - "codePostal": "57970", - "codeCommune": "57372", - "libelleAcheminement": "KUNTZIG", - "nomCommune": "KUNTZIG" + "codePostal": "51260", + "codeCommune": "51155", + "libelleAcheminement": "CLESLES", + "nomCommune": "CLESLES" }, { - "codePostal": "33410", - "codeCommune": "33392", - "libelleAcheminement": "STE CROIX DU MONT", - "nomCommune": "STE CROIX DU MONT" + "codePostal": "53230", + "codeCommune": "53077", + "libelleAcheminement": "COSSE LE VIVIEN", + "nomCommune": "COSSE LE VIVIEN" }, { - "codePostal": "28480", - "codeCommune": "28387", - "libelleAcheminement": "THIRON GARDAIS", - "nomCommune": "THIRON GARDAIS" + "codePostal": "62340", + "codeCommune": "62031", + "libelleAcheminement": "ANDRES", + "nomCommune": "ANDRES" }, { - "codePostal": "45700", - "codeCommune": "45283", - "libelleAcheminement": "ST HILAIRE SUR PUISEAUX", - "nomCommune": "ST HILAIRE SUR PUISEAUX" + "codePostal": "06440", + "codeCommune": "06142", + "libelleAcheminement": "TOUET DE L ESCARENE", + "nomCommune": "TOUET DE L ESCARENE" }, { - "codePostal": "57730", - "codeCommune": "57373", - "libelleAcheminement": "LACHAMBRE", - "nomCommune": "LACHAMBRE" + "codePostal": "61100", + "codeCommune": "61287", + "libelleAcheminement": "MONTILLY SUR NOIREAU", + "nomCommune": "MONTILLY SUR NOIREAU" }, { - "codePostal": "33560", - "codeCommune": "33397", - "libelleAcheminement": "STE EULALIE", - "nomCommune": "STE EULALIE" + "codePostal": "51270", + "codeCommune": "51157", + "libelleAcheminement": "COIZARD JOCHES", + "nomCommune": "COIZARD JOCHES" }, { - "codePostal": "28140", - "codeCommune": "28390", - "libelleAcheminement": "TILLAY LE PENEUX", - "nomCommune": "TILLAY LE PENEUX" + "codePostal": "53500", + "codeCommune": "53096", + "libelleAcheminement": "ERNEE", + "nomCommune": "ERNEE" }, { - "codePostal": "45650", - "codeCommune": "45286", - "libelleAcheminement": "ST JEAN LE BLANC", - "nomCommune": "ST JEAN LE BLANC" + "codePostal": "62143", + "codeCommune": "62032", + "libelleAcheminement": "ANGRES", + "nomCommune": "ANGRES" }, { - "codePostal": "57810", - "codeCommune": "57375", - "libelleAcheminement": "LAGARDE", - "nomCommune": "LAGARDE" + "codePostal": "06710", + "codeCommune": "06143", + "libelleAcheminement": "TOUET SUR VAR", + "nomCommune": "TOUET SUR VAR" }, { - "codePostal": "33220", - "codeCommune": "33402", - "libelleAcheminement": "STE FOY LA GRANDE", - "nomCommune": "STE FOY LA GRANDE" + "codePostal": "61110", + "codeCommune": "61300", + "libelleAcheminement": "MOUTIERS AU PERCHE", + "nomCommune": "MOUTIERS AU PERCHE" }, { - "codePostal": "28310", - "codeCommune": "28391", - "libelleAcheminement": "TOURY", - "nomCommune": "TOURY" + "codePostal": "51230", + "codeCommune": "51165", + "libelleAcheminement": "CONNANTRE", + "nomCommune": "CONNANTRE" }, { - "codePostal": "45110", - "codeCommune": "45290", - "libelleAcheminement": "ST MARTIN D ABBAT", - "nomCommune": "ST MARTIN D ABBAT" + "codePostal": "53940", + "codeCommune": "53103", + "libelleAcheminement": "LE GENEST ST ISLE", + "nomCommune": "LE GENEST ST ISLE" }, { - "codePostal": "57660", - "codeCommune": "57389", - "libelleAcheminement": "LELLING", - "nomCommune": "LELLING" + "codePostal": "62880", + "codeCommune": "62033", + "libelleAcheminement": "ANNAY", + "nomCommune": "ANNAY" }, { - "codePostal": "33580", - "codeCommune": "33404", - "libelleAcheminement": "STE GEMME", - "nomCommune": "STE GEMME" + "codePostal": "06420", + "codeCommune": "06144", + "libelleAcheminement": "LA TOUR", + "nomCommune": "LA TOUR" }, { - "codePostal": "28170", - "codeCommune": "28393", - "libelleAcheminement": "TREMBLAY LES VILLAGES", - "nomCommune": "TREMBLAY LES VILLAGES" + "codePostal": "61160", + "codeCommune": "61302", + "libelleAcheminement": "NEAUPHE SUR DIVE", + "nomCommune": "NEAUPHE SUR DIVE" }, { - "codePostal": "45310", - "codeCommune": "45299", - "libelleAcheminement": "ST SIGISMOND", - "nomCommune": "ST SIGISMOND" + "codePostal": "51330", + "codeCommune": "51166", + "libelleAcheminement": "CONTAULT", + "nomCommune": "CONTAULT" }, { - "codePostal": "57620", - "codeCommune": "57390", - "libelleAcheminement": "LEMBERG", - "nomCommune": "LEMBERG" + "codePostal": "53440", + "codeCommune": "53109", + "libelleAcheminement": "GRAZAY", + "nomCommune": "GRAZAY" }, { - "codePostal": "33240", - "codeCommune": "33407", - "libelleAcheminement": "ST GENES DE FRONSAC", - "nomCommune": "ST GENES DE FRONSAC" + "codePostal": "62149", + "codeCommune": "62034", + "libelleAcheminement": "ANNEQUIN", + "nomCommune": "ANNEQUIN" }, { - "codePostal": "28500", - "codeCommune": "28394", - "libelleAcheminement": "TREON", - "nomCommune": "TREON" + "codePostal": "06420", + "codeCommune": "06146", + "libelleAcheminement": "TOURNEFORT", + "nomCommune": "TOURNEFORT" }, { - "codePostal": "45640", - "codeCommune": "45300", - "libelleAcheminement": "SANDILLON", - "nomCommune": "SANDILLON" + "codePostal": "61160", + "codeCommune": "61303", + "libelleAcheminement": "NECY", + "nomCommune": "NECY" }, { - "codePostal": "57590", - "codeCommune": "57391", - "libelleAcheminement": "LEMONCOURT", - "nomCommune": "LEMONCOURT" + "codePostal": "51510", + "codeCommune": "51168", + "libelleAcheminement": "COOLUS", + "nomCommune": "COOLUS" }, { - "codePostal": "33240", - "codeCommune": "33414", - "libelleAcheminement": "ST GERMAIN DE LA RIVIERE", - "nomCommune": "ST GERMAIN DE LA RIVIERE" + "codePostal": "53120", + "codeCommune": "53115", + "libelleAcheminement": "HERCE", + "nomCommune": "HERCE" }, { - "codePostal": "28400", - "codeCommune": "28395", - "libelleAcheminement": "TRIZAY COUTRETOT ST SERGE", - "nomCommune": "TRIZAY COUTRETOT ST SERGE" + "codePostal": "62510", + "codeCommune": "62040", + "libelleAcheminement": "ARQUES", + "nomCommune": "ARQUES" }, { - "codePostal": "45170", - "codeCommune": "45301", - "libelleAcheminement": "SANTEAU", - "nomCommune": "SANTEAU" + "codePostal": "06140", + "codeCommune": "06148", + "libelleAcheminement": "TOURRETTES SUR LOUP", + "nomCommune": "TOURRETTES SUR LOUP" }, { - "codePostal": "57580", - "codeCommune": "57392", - "libelleAcheminement": "LEMUD", - "nomCommune": "LEMUD" + "codePostal": "61240", + "codeCommune": "61310", + "libelleAcheminement": "NONANT LE PIN", + "nomCommune": "NONANT LE PIN" }, { - "codePostal": "33240", - "codeCommune": "33415", - "libelleAcheminement": "ST GERVAIS", - "nomCommune": "ST GERVAIS" + "codePostal": "51220", + "codeCommune": "51171", + "libelleAcheminement": "CORMICY", + "nomCommune": "CORMICY" }, { - "codePostal": "28150", - "codeCommune": "28406", - "libelleAcheminement": "EOLE EN BEAUCE", - "nomCommune": "EOLE EN BEAUCE" + "codePostal": "53970", + "codeCommune": "53119", + "libelleAcheminement": "L HUISSERIE", + "nomCommune": "L HUISSERIE" }, { - "codePostal": "45490", - "codeCommune": "45303", - "libelleAcheminement": "SCEAUX DU GATINAIS", - "nomCommune": "SCEAUX DU GATINAIS" + "codePostal": "62223", + "codeCommune": "62042", + "libelleAcheminement": "ATHIES", + "nomCommune": "ATHIES" }, { - "codePostal": "57670", - "codeCommune": "57394", - "libelleAcheminement": "LENING", - "nomCommune": "LENING" + "codePostal": "06420", + "codeCommune": "06153", + "libelleAcheminement": "VALDEBLORE", + "nomCommune": "VALDEBLORE" }, { - "codePostal": "33330", - "codeCommune": "33420", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "61700", + "codeCommune": "61326", + "libelleAcheminement": "PERROU", + "nomCommune": "PERROU" }, { - "codePostal": "28150", - "codeCommune": "28406", - "libelleAcheminement": "EOLE EN BEAUCE", - "nomCommune": "EOLE EN BEAUCE" + "codePostal": "51220", + "codeCommune": "51171", + "libelleAcheminement": "CORMICY", + "nomCommune": "CORMICY" }, { - "codePostal": "45300", - "codeCommune": "45310", - "libelleAcheminement": "SERMAISES", - "nomCommune": "SERMAISES" + "codePostal": "53160", + "codeCommune": "53120", + "libelleAcheminement": "IZE", + "nomCommune": "IZE" }, { - "codePostal": "57230", - "codeCommune": "57402", - "libelleAcheminement": "LIEDERSCHIEDT", - "nomCommune": "LIEDERSCHIEDT" + "codePostal": "62250", + "codeCommune": "62052", + "libelleAcheminement": "AUDEMBERT", + "nomCommune": "AUDEMBERT" }, { - "codePostal": "33127", - "codeCommune": "33422", - "libelleAcheminement": "ST JEAN D ILLAC", - "nomCommune": "ST JEAN D ILLAC" + "codePostal": "06220", + "codeCommune": "06155", + "libelleAcheminement": "VALLAURIS", + "nomCommune": "VALLAURIS" }, { - "codePostal": "28480", - "codeCommune": "28407", - "libelleAcheminement": "VICHERES", - "nomCommune": "VICHERES" + "codePostal": "61370", + "codeCommune": "61330", + "libelleAcheminement": "PLANCHES", + "nomCommune": "PLANCHES" }, { - "codePostal": "45450", - "codeCommune": "45314", - "libelleAcheminement": "SULLY LA CHAPELLE", - "nomCommune": "SULLY LA CHAPELLE" + "codePostal": "51270", + "codeCommune": "51174", + "libelleAcheminement": "CORRIBERT", + "nomCommune": "CORRIBERT" }, { - "codePostal": "57260", - "codeCommune": "57404", - "libelleAcheminement": "LINDRE BASSE", - "nomCommune": "LINDRE BASSE" + "codePostal": "53380", + "codeCommune": "53123", + "libelleAcheminement": "JUVIGNE", + "nomCommune": "JUVIGNE" }, { - "codePostal": "33250", - "codeCommune": "33423", - "libelleAcheminement": "ST JULIEN BEYCHEVELLE", - "nomCommune": "ST JULIEN BEYCHEVELLE" + "codePostal": "62179", + "codeCommune": "62054", + "libelleAcheminement": "AUDINGHEN", + "nomCommune": "AUDINGHEN" }, { - "codePostal": "28800", - "codeCommune": "28418", - "libelleAcheminement": "VILLIERS ST ORIEN", - "nomCommune": "VILLIERS ST ORIEN" + "codePostal": "06430", + "codeCommune": "06163", + "libelleAcheminement": "TENDE", + "nomCommune": "TENDE" }, { - "codePostal": "45190", - "codeCommune": "45317", - "libelleAcheminement": "TAVERS", - "nomCommune": "TAVERS" + "codePostal": "61220", + "codeCommune": "61332", + "libelleAcheminement": "POINTEL", + "nomCommune": "POINTEL" }, { - "codePostal": "57670", - "codeCommune": "57410", - "libelleAcheminement": "LHOR", - "nomCommune": "LHOR" + "codePostal": "51230", + "codeCommune": "51176", + "libelleAcheminement": "CORROY", + "nomCommune": "CORROY" }, { - "codePostal": "33113", - "codeCommune": "33429", - "libelleAcheminement": "ST LEGER DE BALSON", - "nomCommune": "ST LEGER DE BALSON" + "codePostal": "53200", + "codeCommune": "53124", + "libelleAcheminement": "PREE D ANJOU", + "nomCommune": "PREE D ANJOU" }, { - "codePostal": "28700", - "codeCommune": "28421", - "libelleAcheminement": "VOISE", - "nomCommune": "VOISE" + "codePostal": "62610", + "codeCommune": "62059", + "libelleAcheminement": "AUTINGUES", + "nomCommune": "AUTINGUES" }, { - "codePostal": "45210", - "codeCommune": "45322", - "libelleAcheminement": "THORAILLES", - "nomCommune": "THORAILLES" + "codePostal": "07000", + "codeCommune": "07004", + "libelleAcheminement": "AJOUX", + "nomCommune": "AJOUX" }, { - "codePostal": "57670", - "codeCommune": "57418", - "libelleAcheminement": "LOUDREFING", - "nomCommune": "LOUDREFING" + "codePostal": "61120", + "codeCommune": "61333", + "libelleAcheminement": "PONTCHARDON", + "nomCommune": "PONTCHARDON" }, { - "codePostal": "33210", - "codeCommune": "33432", - "libelleAcheminement": "ST LOUBERT", - "nomCommune": "ST LOUBERT" + "codePostal": "51390", + "codeCommune": "51177", + "libelleAcheminement": "COULOMMES LA MONTAGNE", + "nomCommune": "COULOMMES LA MONTAGNE" }, { - "codePostal": "29770", - "codeCommune": "29003", - "libelleAcheminement": "AUDIERNE", - "nomCommune": "AUDIERNE" + "codePostal": "53120", + "codeCommune": "53131", + "libelleAcheminement": "LESBOIS", + "nomCommune": "LESBOIS" }, { - "codePostal": "45310", - "codeCommune": "45326", - "libelleAcheminement": "TOURNOISIS", - "nomCommune": "TOURNOISIS" + "codePostal": "62116", + "codeCommune": "62068", + "libelleAcheminement": "AYETTE", + "nomCommune": "AYETTE" }, { - "codePostal": "57720", - "codeCommune": "57421", - "libelleAcheminement": "LOUTZVILLER", - "nomCommune": "LOUTZVILLER" + "codePostal": "07400", + "codeCommune": "07005", + "libelleAcheminement": "ALBA LA ROMAINE", + "nomCommune": "ALBA LA ROMAINE" }, { - "codePostal": "33450", - "codeCommune": "33433", - "libelleAcheminement": "ST LOUBES", - "nomCommune": "ST LOUBES" + "codePostal": "61210", + "codeCommune": "61339", + "libelleAcheminement": "PUTANGES LE LAC", + "nomCommune": "PUTANGES LE LAC" }, { - "codePostal": "29770", - "codeCommune": "29003", - "libelleAcheminement": "AUDIERNE", - "nomCommune": "AUDIERNE" + "codePostal": "51390", + "codeCommune": "51188", + "libelleAcheminement": "COURMAS", + "nomCommune": "COURMAS" }, { - "codePostal": "45490", - "codeCommune": "45328", - "libelleAcheminement": "TREILLES EN GATINAIS", - "nomCommune": "TREILLES EN GATINAIS" + "codePostal": "53140", + "codeCommune": "53133", + "libelleAcheminement": "LIGNIERES ORGERES", + "nomCommune": "LIGNIERES ORGERES" }, { - "codePostal": "57820", - "codeCommune": "57427", - "libelleAcheminement": "LUTZELBOURG", - "nomCommune": "LUTZELBOURG" + "codePostal": "62150", + "codeCommune": "62077", + "libelleAcheminement": "BAJUS", + "nomCommune": "BAJUS" }, { - "codePostal": "33440", - "codeCommune": "33434", - "libelleAcheminement": "ST LOUIS DE MONTFERRAND", - "nomCommune": "ST LOUIS DE MONTFERRAND" + "codePostal": "07120", + "codeCommune": "07023", + "libelleAcheminement": "BALAZUC", + "nomCommune": "BALAZUC" }, { - "codePostal": "29690", - "codeCommune": "29013", - "libelleAcheminement": "BOTMEUR", - "nomCommune": "BOTMEUR" + "codePostal": "61210", + "codeCommune": "61339", + "libelleAcheminement": "PUTANGES LE LAC", + "nomCommune": "PUTANGES LE LAC" }, { - "codePostal": "45510", - "codeCommune": "45335", - "libelleAcheminement": "VIENNE EN VAL", - "nomCommune": "VIENNE EN VAL" + "codePostal": "51480", + "codeCommune": "51190", + "libelleAcheminement": "COURTAGNON", + "nomCommune": "COURTAGNON" }, { - "codePostal": "57280", - "codeCommune": "57433", - "libelleAcheminement": "MAIZIERES LES METZ", - "nomCommune": "MAIZIERES LES METZ" + "codePostal": "53140", + "codeCommune": "53133", + "libelleAcheminement": "LIGNIERES ORGERES", + "nomCommune": "LIGNIERES ORGERES" }, { - "codePostal": "33490", - "codeCommune": "33435", - "libelleAcheminement": "ST MACAIRE", - "nomCommune": "ST MACAIRE" + "codePostal": "62380", + "codeCommune": "62088", + "libelleAcheminement": "BAYENGHEM LES SENINGHEM", + "nomCommune": "BAYENGHEM LES SENINGHEM" }, { - "codePostal": "29860", - "codeCommune": "29015", - "libelleAcheminement": "BOURG BLANC", - "nomCommune": "BOURG BLANC" + "codePostal": "07330", + "codeCommune": "07025", + "libelleAcheminement": "BARNAS", + "nomCommune": "BARNAS" }, { - "codePostal": "45310", - "codeCommune": "45337", - "libelleAcheminement": "VILLAMBLAIN", - "nomCommune": "VILLAMBLAIN" + "codePostal": "61210", + "codeCommune": "61349", + "libelleAcheminement": "RI", + "nomCommune": "RI" }, { - "codePostal": "57640", - "codeCommune": "57438", - "libelleAcheminement": "MALROY", - "nomCommune": "MALROY" + "codePostal": "51170", + "codeCommune": "51194", + "libelleAcheminement": "COURVILLE", + "nomCommune": "COURVILLE" }, { - "codePostal": "33910", - "codeCommune": "33442", - "libelleAcheminement": "ST MARTIN DE LAYE", - "nomCommune": "ST MARTIN DE LAYE" + "codePostal": "53360", + "codeCommune": "53136", + "libelleAcheminement": "LA ROCHE NEUVILLE", + "nomCommune": "LA ROCHE NEUVILLE" }, { - "codePostal": "29890", - "codeCommune": "29021", - "libelleAcheminement": "PLOUNEOUR BRIGNOGAN PLAGES", - "nomCommune": "PLOUNEOUR BRIGNOGAN PLAGES" + "codePostal": "62810", + "codeCommune": "62091", + "libelleAcheminement": "BEAUDRICOURT", + "nomCommune": "BEAUDRICOURT" }, { - "codePostal": "45600", - "codeCommune": "45340", - "libelleAcheminement": "VILLEMURLIN", - "nomCommune": "VILLEMURLIN" + "codePostal": "07700", + "codeCommune": "07034", + "libelleAcheminement": "BIDON", + "nomCommune": "BIDON" }, { - "codePostal": "57480", - "codeCommune": "57439", - "libelleAcheminement": "MANDEREN RITZING", - "nomCommune": "MANDEREN RITZING" + "codePostal": "61320", + "codeCommune": "61357", + "libelleAcheminement": "ROUPERROUX", + "nomCommune": "ROUPERROUX" }, { - "codePostal": "33210", - "codeCommune": "33465", - "libelleAcheminement": "ST PIERRE DE MONS", - "nomCommune": "ST PIERRE DE MONS" + "codePostal": "51600", + "codeCommune": "51197", + "libelleAcheminement": "LA CROIX EN CHAMPAGNE", + "nomCommune": "LA CROIX EN CHAMPAGNE" }, { - "codePostal": "29270", - "codeCommune": "29024", - "libelleAcheminement": "CARHAIX PLOUGUER", - "nomCommune": "CARHAIX PLOUGUER" + "codePostal": "53950", + "codeCommune": "53140", + "libelleAcheminement": "LOUVERNE", + "nomCommune": "LOUVERNE" }, { - "codePostal": "45530", - "codeCommune": "45346", - "libelleAcheminement": "VITRY AUX LOGES", - "nomCommune": "VITRY AUX LOGES" + "codePostal": "62810", + "codeCommune": "62092", + "libelleAcheminement": "BEAUFORT BLAVINCOURT", + "nomCommune": "BEAUFORT BLAVINCOURT" }, { - "codePostal": "57100", - "codeCommune": "57441", - "libelleAcheminement": "MANOM", - "nomCommune": "MANOM" + "codePostal": "07310", + "codeCommune": "07037", + "libelleAcheminement": "BOREE", + "nomCommune": "BOREE" }, { - "codePostal": "33220", - "codeCommune": "33467", - "libelleAcheminement": "ST QUENTIN DE CAPLONG", - "nomCommune": "ST QUENTIN DE CAPLONG" + "codePostal": "61700", + "codeCommune": "61369", + "libelleAcheminement": "ST BOMER LES FORGES", + "nomCommune": "ST BOMER LES FORGES" }, { - "codePostal": "29770", - "codeCommune": "29028", - "libelleAcheminement": "CLEDEN CAP SIZUN", - "nomCommune": "CLEDEN CAP SIZUN" + "codePostal": "51480", + "codeCommune": "51199", + "libelleAcheminement": "CUCHERY", + "nomCommune": "CUCHERY" }, { - "codePostal": "45300", - "codeCommune": "45348", - "libelleAcheminement": "YEVRE LA VILLE", - "nomCommune": "YEVRE LA VILLE" + "codePostal": "53440", + "codeCommune": "53144", + "libelleAcheminement": "MARCILLE LA VILLE", + "nomCommune": "MARCILLE LA VILLE" }, { - "codePostal": "57535", - "codeCommune": "57443", - "libelleAcheminement": "MARANGE SILVANGE", - "nomCommune": "MARANGE SILVANGE" + "codePostal": "62960", + "codeCommune": "62095", + "libelleAcheminement": "BEAUMETZ LES AIRE", + "nomCommune": "BEAUMETZ LES AIRE" }, { - "codePostal": "33240", - "codeCommune": "33470", - "libelleAcheminement": "ST ROMAIN LA VIRVEE", - "nomCommune": "ST ROMAIN LA VIRVEE" + "codePostal": "07590", + "codeCommune": "07038", + "libelleAcheminement": "BORNE", + "nomCommune": "BORNE" }, { - "codePostal": "29160", - "codeCommune": "29042", - "libelleAcheminement": "CROZON", - "nomCommune": "CROZON" + "codePostal": "61250", + "codeCommune": "61372", + "libelleAcheminement": "ST CENERI LE GEREI", + "nomCommune": "ST CENERI LE GEREI" }, { - "codePostal": "46120", - "codeCommune": "46004", - "libelleAcheminement": "ANGLARS", - "nomCommune": "ANGLARS" + "codePostal": "51320", + "codeCommune": "51212", + "libelleAcheminement": "DOMMARTIN LETTREE", + "nomCommune": "DOMMARTIN LETTREE" }, { - "codePostal": "57420", - "codeCommune": "57445", - "libelleAcheminement": "MARIEULLES", - "nomCommune": "MARIEULLES" + "codePostal": "53230", + "codeCommune": "53151", + "libelleAcheminement": "MERAL", + "nomCommune": "MERAL" }, { - "codePostal": "33580", - "codeCommune": "33481", - "libelleAcheminement": "ST SULPICE DE GUILLERAGUES", - "nomCommune": "ST SULPICE DE GUILLERAGUES" + "codePostal": "62142", + "codeCommune": "62105", + "libelleAcheminement": "BELLE ET HOULLEFORT", + "nomCommune": "BELLE ET HOULLEFORT" }, { - "codePostal": "29460", - "codeCommune": "29045", - "libelleAcheminement": "DIRINON", - "nomCommune": "DIRINON" + "codePostal": "07240", + "codeCommune": "07048", + "libelleAcheminement": "CHALENCON", + "nomCommune": "CHALENCON" }, { - "codePostal": "46300", - "codeCommune": "46006", - "libelleAcheminement": "ANGLARS NOZAC", - "nomCommune": "ANGLARS NOZAC" + "codePostal": "61570", + "codeCommune": "61375", + "libelleAcheminement": "BOISCHAMPRE", + "nomCommune": "BOISCHAMPRE" }, { - "codePostal": "57670", - "codeCommune": "57446", - "libelleAcheminement": "MARIMONT LES BENESTROFF", - "nomCommune": "MARIMONT LES BENESTROFF" + "codePostal": "51800", + "codeCommune": "51222", + "libelleAcheminement": "ECLAIRES", + "nomCommune": "ECLAIRES" }, { - "codePostal": "33450", - "codeCommune": "33483", - "libelleAcheminement": "ST SULPICE ET CAMEYRAC", - "nomCommune": "ST SULPICE ET CAMEYRAC" + "codePostal": "53170", + "codeCommune": "53152", + "libelleAcheminement": "MESLAY DU MAINE", + "nomCommune": "MESLAY DU MAINE" }, { - "codePostal": "29510", - "codeCommune": "29048", - "libelleAcheminement": "EDERN", - "nomCommune": "EDERN" + "codePostal": "62410", + "codeCommune": "62107", + "libelleAcheminement": "BENIFONTAINE", + "nomCommune": "BENIFONTAINE" }, { - "codePostal": "46270", - "codeCommune": "46015", - "libelleAcheminement": "BAGNAC SUR CELE", - "nomCommune": "BAGNAC SUR CELE" + "codePostal": "07120", + "codeCommune": "07061", + "libelleAcheminement": "CHAUZON", + "nomCommune": "CHAUZON" }, { - "codePostal": "57050", - "codeCommune": "57463", - "libelleAcheminement": "METZ", - "nomCommune": "METZ" + "codePostal": "61370", + "codeCommune": "61389", + "libelleAcheminement": "STE GAUBURGE STE COLOMBE", + "nomCommune": "STE GAUBURGE STE COLOMBE" }, { - "codePostal": "33113", - "codeCommune": "33484", - "libelleAcheminement": "ST SYMPHORIEN", - "nomCommune": "ST SYMPHORIEN" + "codePostal": "51500", + "codeCommune": "51225", + "libelleAcheminement": "ECUEIL", + "nomCommune": "ECUEIL" }, { - "codePostal": "29370", - "codeCommune": "29049", - "libelleAcheminement": "ELLIANT", - "nomCommune": "ELLIANT" + "codePostal": "53500", + "codeCommune": "53155", + "libelleAcheminement": "MONTENAY", + "nomCommune": "MONTENAY" }, { - "codePostal": "46800", - "codeCommune": "46033", - "libelleAcheminement": "PORTE DU QUERCY", - "nomCommune": "PORTE DU QUERCY" + "codePostal": "62690", + "codeCommune": "62113", + "libelleAcheminement": "BERLES MONCHEL", + "nomCommune": "BERLES MONCHEL" }, { - "codePostal": "57670", - "codeCommune": "57470", - "libelleAcheminement": "MOLRING", - "nomCommune": "MOLRING" + "codePostal": "07470", + "codeCommune": "07071", + "libelleAcheminement": "COUCOURON", + "nomCommune": "COUCOURON" }, { - "codePostal": "33420", - "codeCommune": "33488", - "libelleAcheminement": "ST VINCENT DE PERTIGNAS", - "nomCommune": "ST VINCENT DE PERTIGNAS" + "codePostal": "61600", + "codeCommune": "61390", + "libelleAcheminement": "ST GEORGES D ANNEBECQ", + "nomCommune": "ST GEORGES D ANNEBECQ" }, { - "codePostal": "29260", - "codeCommune": "29055", - "libelleAcheminement": "LE FOLGOET", - "nomCommune": "LE FOLGOET" + "codePostal": "51310", + "codeCommune": "51233", + "libelleAcheminement": "ESCARDES", + "nomCommune": "ESCARDES" }, { - "codePostal": "46120", - "codeCommune": "46036", - "libelleAcheminement": "LE BOUYSSOU", - "nomCommune": "LE BOUYSSOU" + "codePostal": "53970", + "codeCommune": "53168", + "libelleAcheminement": "NUILLE SUR VICOIN", + "nomCommune": "NUILLE SUR VICOIN" }, { - "codePostal": "57570", - "codeCommune": "57475", - "libelleAcheminement": "MONDORFF", - "nomCommune": "MONDORFF" + "codePostal": "62170", + "codeCommune": "62116", + "libelleAcheminement": "BERNIEULLES", + "nomCommune": "BERNIEULLES" }, { - "codePostal": "33590", - "codeCommune": "33490", - "libelleAcheminement": "ST VIVIEN DE MEDOC", - "nomCommune": "ST VIVIEN DE MEDOC" + "codePostal": "07000", + "codeCommune": "07074", + "libelleAcheminement": "CREYSSEILLES", + "nomCommune": "CREYSSEILLES" }, { - "codePostal": "29850", - "codeCommune": "29061", - "libelleAcheminement": "GOUESNOU", - "nomCommune": "GOUESNOU" + "codePostal": "61000", + "codeCommune": "61397", + "libelleAcheminement": "ST GERMAIN DU CORBEIS", + "nomCommune": "ST GERMAIN DU CORBEIS" }, { - "codePostal": "46160", - "codeCommune": "46041", - "libelleAcheminement": "CADRIEU", - "nomCommune": "CADRIEU" + "codePostal": "51260", + "codeCommune": "51234", + "libelleAcheminement": "ESCLAVOLLES LUREY", + "nomCommune": "ESCLAVOLLES LUREY" }, { - "codePostal": "57920", - "codeCommune": "57476", - "libelleAcheminement": "MONNEREN", - "nomCommune": "MONNEREN" + "codePostal": "53300", + "codeCommune": "53170", + "libelleAcheminement": "OISSEAU", + "nomCommune": "OISSEAU" }, { - "codePostal": "33580", - "codeCommune": "33491", - "libelleAcheminement": "ST VIVIEN DE MONSEGUR", - "nomCommune": "ST VIVIEN DE MONSEGUR" + "codePostal": "62170", + "codeCommune": "62124", + "libelleAcheminement": "BEUTIN", + "nomCommune": "BEUTIN" }, { - "codePostal": "29650", - "codeCommune": "29067", - "libelleAcheminement": "GUERLESQUIN", - "nomCommune": "GUERLESQUIN" + "codePostal": "07510", + "codeCommune": "07075", + "libelleAcheminement": "CROS DE GEORAND", + "nomCommune": "CROS DE GEORAND" }, { - "codePostal": "46140", - "codeCommune": "46044", - "libelleAcheminement": "CAILLAC", - "nomCommune": "CAILLAC" + "codePostal": "61390", + "codeCommune": "61398", + "libelleAcheminement": "ST GERMAIN LE VIEUX", + "nomCommune": "ST GERMAIN LE VIEUX" }, { - "codePostal": "57530", - "codeCommune": "57482", - "libelleAcheminement": "OGY MONTOY FLANVILLE", - "nomCommune": "OGY MONTOY FLANVILLE" + "codePostal": "51230", + "codeCommune": "51241", + "libelleAcheminement": "EUVY", + "nomCommune": "EUVY" }, { - "codePostal": "33920", - "codeCommune": "33492", - "libelleAcheminement": "ST YZAN DE SOUDIAC", - "nomCommune": "ST YZAN DE SOUDIAC" + "codePostal": "53100", + "codeCommune": "53174", + "libelleAcheminement": "PARIGNE SUR BRAYE", + "nomCommune": "PARIGNE SUR BRAYE" }, { - "codePostal": "29730", - "codeCommune": "29072", - "libelleAcheminement": "GUILVINEC", - "nomCommune": "GUILVINEC" + "codePostal": "62138", + "codeCommune": "62132", + "libelleAcheminement": "BILLY BERCLAU", + "nomCommune": "BILLY BERCLAU" }, { - "codePostal": "46150", - "codeCommune": "46046", - "libelleAcheminement": "CALAMANE", - "nomCommune": "CALAMANE" + "codePostal": "07630", + "codeCommune": "07075", + "libelleAcheminement": "CROS DE GEORAND", + "nomCommune": "CROS DE GEORAND" }, { - "codePostal": "57250", - "codeCommune": "57491", - "libelleAcheminement": "MOYEUVRE GRANDE", - "nomCommune": "MOYEUVRE GRANDE" + "codePostal": "61270", + "codeCommune": "61406", + "libelleAcheminement": "ST HILAIRE SUR RISLE", + "nomCommune": "ST HILAIRE SUR RISLE" }, { - "codePostal": "33160", - "codeCommune": "33494", - "libelleAcheminement": "SALAUNES", - "nomCommune": "SALAUNES" + "codePostal": "51320", + "codeCommune": "51244", + "libelleAcheminement": "FAUX VESIGNEUL", + "nomCommune": "FAUX VESIGNEUL" }, { - "codePostal": "29290", - "codeCommune": "29076", - "libelleAcheminement": "MILIZAC GUIPRONVEL", - "nomCommune": "MILIZAC GUIPRONVEL" + "codePostal": "53260", + "codeCommune": "53175", + "libelleAcheminement": "PARNE SUR ROC", + "nomCommune": "PARNE SUR ROC" }, { - "codePostal": "46240", - "codeCommune": "46054", - "libelleAcheminement": "CANIAC DU CAUSSE", - "nomCommune": "CANIAC DU CAUSSE" + "codePostal": "62650", + "codeCommune": "62134", + "libelleAcheminement": "BIMONT", + "nomCommune": "BIMONT" }, { - "codePostal": "57260", - "codeCommune": "57493", - "libelleAcheminement": "MULCEY", - "nomCommune": "MULCEY" + "codePostal": "07260", + "codeCommune": "07081", + "libelleAcheminement": "DOMPNAC", + "nomCommune": "DOMPNAC" }, { - "codePostal": "33370", - "codeCommune": "33496", - "libelleAcheminement": "SALLEBOEUF", - "nomCommune": "SALLEBOEUF" + "codePostal": "61270", + "codeCommune": "61422", + "libelleAcheminement": "LES ASPRES", + "nomCommune": "LES ASPRES" }, { - "codePostal": "29880", - "codeCommune": "29077", - "libelleAcheminement": "GUISSENY", - "nomCommune": "GUISSENY" + "codePostal": "51300", + "codeCommune": "51246", + "libelleAcheminement": "FAVRESSE", + "nomCommune": "FAVRESSE" }, { - "codePostal": "46140", - "codeCommune": "46060", - "libelleAcheminement": "CARNAC ROUFFIAC", - "nomCommune": "CARNAC ROUFFIAC" + "codePostal": "53240", + "codeCommune": "53179", + "libelleAcheminement": "PLACE", + "nomCommune": "PLACE" }, { - "codePostal": "57220", - "codeCommune": "57495", - "libelleAcheminement": "NARBEFONTAINE", - "nomCommune": "NARBEFONTAINE" + "codePostal": "62128", + "codeCommune": "62144", + "libelleAcheminement": "BOIRY BECQUERELLE", + "nomCommune": "BOIRY BECQUERELLE" }, { - "codePostal": "33430", - "codeCommune": "33507", - "libelleAcheminement": "SAUVIAC", - "nomCommune": "SAUVIAC" + "codePostal": "07360", + "codeCommune": "07083", + "libelleAcheminement": "DUNIERE SUR EYRIEUX", + "nomCommune": "DUNIERE SUR EYRIEUX" }, { - "codePostal": "29690", - "codeCommune": "29081", - "libelleAcheminement": "HUELGOAT", - "nomCommune": "HUELGOAT" + "codePostal": "61190", + "codeCommune": "61429", + "libelleAcheminement": "CHARENCEY", + "nomCommune": "CHARENCEY" }, { - "codePostal": "46250", - "codeCommune": "46066", - "libelleAcheminement": "CAZALS", - "nomCommune": "CAZALS" + "codePostal": "51480", + "codeCommune": "51252", + "libelleAcheminement": "FLEURY LA RIVIERE", + "nomCommune": "FLEURY LA RIVIERE" }, { - "codePostal": "57700", - "codeCommune": "57498", - "libelleAcheminement": "NEUFCHEF", - "nomCommune": "NEUFCHEF" + "codePostal": "53410", + "codeCommune": "53182", + "libelleAcheminement": "PORT BRILLET", + "nomCommune": "PORT BRILLET" }, { - "codePostal": "33780", - "codeCommune": "33514", - "libelleAcheminement": "SOULAC SUR MER", - "nomCommune": "SOULAC SUR MER" + "codePostal": "62320", + "codeCommune": "62148", + "libelleAcheminement": "BOIS BERNARD", + "nomCommune": "BOIS BERNARD" }, { - "codePostal": "29460", - "codeCommune": "29086", - "libelleAcheminement": "IRVILLAC", - "nomCommune": "IRVILLAC" + "codePostal": "07380", + "codeCommune": "07087", + "libelleAcheminement": "FABRAS", + "nomCommune": "FABRAS" }, { - "codePostal": "46110", - "codeCommune": "46074", - "libelleAcheminement": "CONDAT", - "nomCommune": "CONDAT" + "codePostal": "61100", + "codeCommune": "61443", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "57560", - "codeCommune": "57504", - "libelleAcheminement": "NIDERHOFF", - "nomCommune": "NIDERHOFF" + "codePostal": "51800", + "codeCommune": "51253", + "libelleAcheminement": "FLORENT EN ARGONNE", + "nomCommune": "FLORENT EN ARGONNE" }, { - "codePostal": "33790", - "codeCommune": "33516", - "libelleAcheminement": "SOUSSAC", - "nomCommune": "SOUSSAC" + "codePostal": "53340", + "codeCommune": "53184", + "libelleAcheminement": "PREAUX", + "nomCommune": "PREAUX" }, { - "codePostal": "29100", - "codeCommune": "29090", - "libelleAcheminement": "KERLAZ", - "nomCommune": "KERLAZ" + "codePostal": "62960", + "codeCommune": "62153", + "libelleAcheminement": "BOMY", + "nomCommune": "BOMY" }, { - "codePostal": "46330", - "codeCommune": "46081", - "libelleAcheminement": "CREGOLS", - "nomCommune": "CREGOLS" + "codePostal": "07200", + "codeCommune": "07091", + "libelleAcheminement": "FONS", + "nomCommune": "FONS" }, { - "codePostal": "57565", - "codeCommune": "57505", - "libelleAcheminement": "NIDERVILLER", - "nomCommune": "NIDERVILLER" + "codePostal": "61370", + "codeCommune": "61446", + "libelleAcheminement": "ST PIERRE DES LOGES", + "nomCommune": "ST PIERRE DES LOGES" }, { - "codePostal": "33460", - "codeCommune": "33517", - "libelleAcheminement": "SOUSSANS", - "nomCommune": "SOUSSANS" + "codePostal": "51160", + "codeCommune": "51256", + "libelleAcheminement": "FONTAINE SUR AY", + "nomCommune": "FONTAINE SUR AY" }, { - "codePostal": "29260", - "codeCommune": "29100", - "libelleAcheminement": "LANARVILY", - "nomCommune": "LANARVILY" + "codePostal": "53140", + "codeCommune": "53185", + "libelleAcheminement": "PRE EN PAIL ST SAMSON", + "nomCommune": "PRE EN PAIL ST SAMSON" }, { - "codePostal": "46130", - "codeCommune": "46097", - "libelleAcheminement": "ESTAL", - "nomCommune": "ESTAL" + "codePostal": "62340", + "codeCommune": "62161", + "libelleAcheminement": "BOUQUEHAULT", + "nomCommune": "BOUQUEHAULT" }, { - "codePostal": "57645", - "codeCommune": "57510", - "libelleAcheminement": "NOISSEVILLE", - "nomCommune": "NOISSEVILLE" + "codePostal": "07530", + "codeCommune": "07093", + "libelleAcheminement": "GENESTELLE", + "nomCommune": "GENESTELLE" }, { - "codePostal": "33570", - "codeCommune": "33526", - "libelleAcheminement": "TAYAC", - "nomCommune": "TAYAC" + "codePostal": "61320", + "codeCommune": "61453", + "libelleAcheminement": "ST SAUVEUR DE CARROUGES", + "nomCommune": "ST SAUVEUR DE CARROUGES" }, { - "codePostal": "29400", - "codeCommune": "29105", - "libelleAcheminement": "LANDIVISIAU", - "nomCommune": "LANDIVISIAU" + "codePostal": "51120", + "codeCommune": "51258", + "libelleAcheminement": "LA FORESTIERE", + "nomCommune": "LA FORESTIERE" }, { - "codePostal": "46170", - "codeCommune": "46103", - "libelleAcheminement": "ST PAUL FLAUGNAC", - "nomCommune": "ST PAUL FLAUGNAC" + "codePostal": "53350", + "codeCommune": "53191", + "libelleAcheminement": "LA ROE", + "nomCommune": "LA ROE" }, { - "codePostal": "57930", - "codeCommune": "57518", - "libelleAcheminement": "OBERSTINZEL", - "nomCommune": "OBERSTINZEL" + "codePostal": "62117", + "codeCommune": "62173", + "libelleAcheminement": "BREBIERES", + "nomCommune": "BREBIERES" }, { - "codePostal": "33680", - "codeCommune": "33528", - "libelleAcheminement": "LE TEMPLE", - "nomCommune": "LE TEMPLE" + "codePostal": "07270", + "codeCommune": "07095", + "libelleAcheminement": "GILHOC SUR ORMEZE", + "nomCommune": "GILHOC SUR ORMEZE" }, { - "codePostal": "29640", - "codeCommune": "29114", - "libelleAcheminement": "LANNEANOU", - "nomCommune": "LANNEANOU" + "codePostal": "61470", + "codeCommune": "61460", + "libelleAcheminement": "SAP EN AUGE", + "nomCommune": "SAP EN AUGE" }, { - "codePostal": "46320", - "codeCommune": "46104", - "libelleAcheminement": "FLAUJAC GARE", - "nomCommune": "FLAUJAC GARE" + "codePostal": "51130", + "codeCommune": "51268", + "libelleAcheminement": "GERMINON", + "nomCommune": "GERMINON" }, { - "codePostal": "57170", - "codeCommune": "57520", - "libelleAcheminement": "OBRECK", - "nomCommune": "OBRECK" + "codePostal": "53250", + "codeCommune": "53196", + "libelleAcheminement": "ST AIGNAN DE COUPTRAIN", + "nomCommune": "ST AIGNAN DE COUPTRAIN" }, { - "codePostal": "33550", - "codeCommune": "33534", - "libelleAcheminement": "LE TOURNE", - "nomCommune": "LE TOURNE" + "codePostal": "62700", + "codeCommune": "62178", + "libelleAcheminement": "BRUAY LA BUISSIERE", + "nomCommune": "BRUAY LA BUISSIERE" }, { - "codePostal": "29290", - "codeCommune": "29119", - "libelleAcheminement": "LANRIVOARE", - "nomCommune": "LANRIVOARE" + "codePostal": "07110", + "codeCommune": "07118", + "libelleAcheminement": "LABOULE", + "nomCommune": "LABOULE" }, { - "codePostal": "46300", - "codeCommune": "46121", - "libelleAcheminement": "GINOUILLAC", - "nomCommune": "GINOUILLAC" + "codePostal": "61230", + "codeCommune": "61461", + "libelleAcheminement": "LE SAP ANDRE", + "nomCommune": "LE SAP ANDRE" }, { - "codePostal": "57600", - "codeCommune": "57521", - "libelleAcheminement": "OETING", - "nomCommune": "OETING" + "codePostal": "51330", + "codeCommune": "51272", + "libelleAcheminement": "GIVRY EN ARGONNE", + "nomCommune": "GIVRY EN ARGONNE" }, { - "codePostal": "33125", - "codeCommune": "33536", - "libelleAcheminement": "LE TUZAN", - "nomCommune": "LE TUZAN" + "codePostal": "53390", + "codeCommune": "53197", + "libelleAcheminement": "ST AIGNAN SUR ROE", + "nomCommune": "ST AIGNAN SUR ROE" }, { - "codePostal": "29520", - "codeCommune": "29122", - "libelleAcheminement": "LAZ", - "nomCommune": "LAZ" + "codePostal": "62240", + "codeCommune": "62179", + "libelleAcheminement": "BRUNEMBERT", + "nomCommune": "BRUNEMBERT" }, { - "codePostal": "46130", - "codeCommune": "46124", - "libelleAcheminement": "GLANES", - "nomCommune": "GLANES" + "codePostal": "07520", + "codeCommune": "07124", + "libelleAcheminement": "LAFARRE", + "nomCommune": "LAFARRE" }, { - "codePostal": "57220", - "codeCommune": "57530", - "libelleAcheminement": "OTTONVILLE", - "nomCommune": "OTTONVILLE" + "codePostal": "61200", + "codeCommune": "61462", + "libelleAcheminement": "SARCEAUX", + "nomCommune": "SARCEAUX" }, { - "codePostal": "33590", - "codeCommune": "33541", - "libelleAcheminement": "VENSAC", - "nomCommune": "VENSAC" + "codePostal": "51130", + "codeCommune": "51273", + "libelleAcheminement": "GIVRY LES LOISY", + "nomCommune": "GIVRY LES LOISY" }, { - "codePostal": "29750", - "codeCommune": "29135", - "libelleAcheminement": "LOCTUDY", - "nomCommune": "LOCTUDY" + "codePostal": "53120", + "codeCommune": "53199", + "libelleAcheminement": "ST AUBIN FOSSE LOUVAIN", + "nomCommune": "ST AUBIN FOSSE LOUVAIN" }, { - "codePostal": "46300", - "codeCommune": "46127", - "libelleAcheminement": "GOURDON", - "nomCommune": "GOURDON" + "codePostal": "62116", + "codeCommune": "62181", + "libelleAcheminement": "BUCQUOY", + "nomCommune": "BUCQUOY" }, { - "codePostal": "57245", - "codeCommune": "57534", - "libelleAcheminement": "PELTRE", - "nomCommune": "PELTRE" + "codePostal": "07110", + "codeCommune": "07144", + "libelleAcheminement": "LOUBARESSE", + "nomCommune": "LOUBARESSE" }, { - "codePostal": "33123", - "codeCommune": "33544", - "libelleAcheminement": "LE VERDON SUR MER", - "nomCommune": "LE VERDON SUR MER" + "codePostal": "61200", + "codeCommune": "61472", + "libelleAcheminement": "SEVIGNY", + "nomCommune": "SEVIGNY" }, { - "codePostal": "29590", - "codeCommune": "29139", - "libelleAcheminement": "LOPEREC", - "nomCommune": "LOPEREC" + "codePostal": "51800", + "codeCommune": "51274", + "libelleAcheminement": "GIZAUCOURT", + "nomCommune": "GIZAUCOURT" }, { - "codePostal": "46210", - "codeCommune": "46135", - "libelleAcheminement": "LABASTIDE DU HAUT MONT", - "nomCommune": "LABASTIDE DU HAUT MONT" + "codePostal": "53100", + "codeCommune": "53200", + "libelleAcheminement": "ST BAUDELLE", + "nomCommune": "ST BAUDELLE" }, { - "codePostal": "57220", - "codeCommune": "57542", - "libelleAcheminement": "PIBLANGE", - "nomCommune": "PIBLANGE" + "codePostal": "62390", + "codeCommune": "62182", + "libelleAcheminement": "BUIRE AU BOIS", + "nomCommune": "BUIRE AU BOIS" }, { - "codePostal": "33550", - "codeCommune": "33549", - "libelleAcheminement": "VILLENAVE DE RIONS", - "nomCommune": "VILLENAVE DE RIONS" + "codePostal": "07000", + "codeCommune": "07146", + "libelleAcheminement": "LYAS", + "nomCommune": "LYAS" }, { - "codePostal": "29920", - "codeCommune": "29153", - "libelleAcheminement": "NEVEZ", - "nomCommune": "NEVEZ" + "codePostal": "61160", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "46240", - "codeCommune": "46138", - "libelleAcheminement": "COEUR DE CAUSSE", - "nomCommune": "COEUR DE CAUSSE" + "codePostal": "51230", + "codeCommune": "51276", + "libelleAcheminement": "GOURGANCON", + "nomCommune": "GOURGANCON" }, { - "codePostal": "57120", - "codeCommune": "57543", - "libelleAcheminement": "PIERREVILLERS", - "nomCommune": "PIERREVILLERS" + "codePostal": "53940", + "codeCommune": "53201", + "libelleAcheminement": "ST BERTHEVIN", + "nomCommune": "ST BERTHEVIN" }, { - "codePostal": "33710", - "codeCommune": "33551", - "libelleAcheminement": "VILLENEUVE", - "nomCommune": "VILLENEUVE" + "codePostal": "62860", + "codeCommune": "62184", + "libelleAcheminement": "BUISSY", + "nomCommune": "BUISSY" }, { - "codePostal": "29760", - "codeCommune": "29158", - "libelleAcheminement": "PENMARCH", - "nomCommune": "PENMARCH" + "codePostal": "07140", + "codeCommune": "07147", + "libelleAcheminement": "MALARCE SUR LA THINES", + "nomCommune": "MALARCE SUR LA THINES" }, { - "codePostal": "46240", - "codeCommune": "46138", - "libelleAcheminement": "COEUR DE CAUSSE", - "nomCommune": "COEUR DE CAUSSE" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "57870", - "codeCommune": "57544", - "libelleAcheminement": "PLAINE DE WALSCH", - "nomCommune": "PLAINE DE WALSCH" + "codePostal": "51260", + "codeCommune": "51279", + "libelleAcheminement": "GRANGES SUR AUBE", + "nomCommune": "GRANGES SUR AUBE" }, { - "codePostal": "34230", - "codeCommune": "34002", - "libelleAcheminement": "ADISSAN", - "nomCommune": "ADISSAN" + "codePostal": "53170", + "codeCommune": "53206", + "libelleAcheminement": "ST CHARLES LA FORET", + "nomCommune": "ST CHARLES LA FORET" }, { - "codePostal": "29740", - "codeCommune": "29165", - "libelleAcheminement": "PLOBANNALEC LESCONIL", - "nomCommune": "PLOBANNALEC LESCONIL" + "codePostal": "62350", + "codeCommune": "62190", + "libelleAcheminement": "BUSNES", + "nomCommune": "BUSNES" }, { - "codePostal": "46200", - "codeCommune": "46145", - "libelleAcheminement": "LACHAPELLE AUZAC", - "nomCommune": "LACHAPELLE AUZAC" + "codePostal": "07330", + "codeCommune": "07153", + "libelleAcheminement": "MAYRES", + "nomCommune": "MAYRES" }, { - "codePostal": "57140", - "codeCommune": "57546", - "libelleAcheminement": "PLESNOIS", - "nomCommune": "PLESNOIS" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "34210", - "codeCommune": "34004", - "libelleAcheminement": "AGEL", - "nomCommune": "AGEL" + "codePostal": "51460", + "codeCommune": "51292", + "libelleAcheminement": "HERPONT", + "nomCommune": "HERPONT" }, { - "codePostal": "29830", - "codeCommune": "29178", - "libelleAcheminement": "PLOUDALMEZEAU", - "nomCommune": "PLOUDALMEZEAU" + "codePostal": "53140", + "codeCommune": "53208", + "libelleAcheminement": "ST CYR EN PAIL", + "nomCommune": "ST CYR EN PAIL" }, { - "codePostal": "46350", - "codeCommune": "46152", - "libelleAcheminement": "LAMOTHE FENELON", - "nomCommune": "LAMOTHE FENELON" + "codePostal": "62270", + "codeCommune": "62208", + "libelleAcheminement": "CANETTEMONT", + "nomCommune": "CANETTEMONT" }, { - "codePostal": "57420", - "codeCommune": "57547", - "libelleAcheminement": "POMMERIEUX", - "nomCommune": "POMMERIEUX" + "codePostal": "07380", + "codeCommune": "07156", + "libelleAcheminement": "MEYRAS", + "nomCommune": "MEYRAS" }, { - "codePostal": "34540", - "codeCommune": "34023", - "libelleAcheminement": "BALARUC LES BAINS", - "nomCommune": "BALARUC LES BAINS" + "codePostal": "61360", + "codeCommune": "61476", + "libelleAcheminement": "SURE", + "nomCommune": "SURE" }, { - "codePostal": "29430", - "codeCommune": "29185", - "libelleAcheminement": "PLOUESCAT", - "nomCommune": "PLOUESCAT" + "codePostal": "51110", + "codeCommune": "51293", + "libelleAcheminement": "HEUTREGIVILLE", + "nomCommune": "HEUTREGIVILLE" }, { - "codePostal": "46200", - "codeCommune": "46153", - "libelleAcheminement": "LANZAC", - "nomCommune": "LANZAC" + "codePostal": "53320", + "codeCommune": "53209", + "libelleAcheminement": "ST CYR LE GRAVELAIS", + "nomCommune": "ST CYR LE GRAVELAIS" }, { - "codePostal": "57380", - "codeCommune": "57549", - "libelleAcheminement": "PONTPIERRE", - "nomCommune": "PONTPIERRE" + "codePostal": "62310", + "codeCommune": "62209", + "libelleAcheminement": "CANLERS", + "nomCommune": "CANLERS" }, { - "codePostal": "34760", - "codeCommune": "34037", - "libelleAcheminement": "BOUJAN SUR LIBRON", - "nomCommune": "BOUJAN SUR LIBRON" + "codePostal": "07560", + "codeCommune": "07161", + "libelleAcheminement": "MONTPEZAT SOUS BAUZON", + "nomCommune": "MONTPEZAT SOUS BAUZON" }, { - "codePostal": "29470", - "codeCommune": "29189", - "libelleAcheminement": "PLOUGASTEL DAOULAS", - "nomCommune": "PLOUGASTEL DAOULAS" + "codePostal": "61390", + "codeCommune": "61481", + "libelleAcheminement": "TELLIERES LE PLESSIS", + "nomCommune": "TELLIERES LE PLESSIS" }, { - "codePostal": "46210", - "codeCommune": "46161", - "libelleAcheminement": "LAURESSES", - "nomCommune": "LAURESSES" + "codePostal": "51700", + "codeCommune": "51298", + "libelleAcheminement": "IGNY COMBLIZY", + "nomCommune": "IGNY COMBLIZY" }, { - "codePostal": "57420", - "codeCommune": "57552", - "libelleAcheminement": "POUILLY", - "nomCommune": "POUILLY" + "codePostal": "53390", + "codeCommune": "53214", + "libelleAcheminement": "ST ERBLON", + "nomCommune": "ST ERBLON" }, { - "codePostal": "34190", - "codeCommune": "34042", - "libelleAcheminement": "BRISSAC", - "nomCommune": "BRISSAC" + "codePostal": "62180", + "codeCommune": "62233", + "libelleAcheminement": "CONCHIL LE TEMPLE", + "nomCommune": "CONCHIL LE TEMPLE" }, { - "codePostal": "29217", - "codeCommune": "29190", - "libelleAcheminement": "PLOUGONVELIN", - "nomCommune": "PLOUGONVELIN" + "codePostal": "07160", + "codeCommune": "07165", + "libelleAcheminement": "BELSENTES", + "nomCommune": "BELSENTES" }, { - "codePostal": "46360", - "codeCommune": "46162", - "libelleAcheminement": "LAUZES", - "nomCommune": "LAUZES" + "codePostal": "61260", + "codeCommune": "61484", + "libelleAcheminement": "VAL AU PERCHE", + "nomCommune": "VAL AU PERCHE" }, { - "codePostal": "57570", - "codeCommune": "57557", - "libelleAcheminement": "PUTTELANGE LES THIONVILLE", - "nomCommune": "PUTTELANGE LES THIONVILLE" + "codePostal": "51190", + "codeCommune": "51302", + "libelleAcheminement": "LES ISTRES ET BURY", + "nomCommune": "LES ISTRES ET BURY" }, { - "codePostal": "34230", - "codeCommune": "34047", - "libelleAcheminement": "CAMPAGNAN", - "nomCommune": "CAMPAGNAN" + "codePostal": "53300", + "codeCommune": "53216", + "libelleAcheminement": "ST FRAIMBAULT DE PRIERES", + "nomCommune": "ST FRAIMBAULT DE PRIERES" }, { - "codePostal": "29640", - "codeCommune": "29191", - "libelleAcheminement": "PLOUGONVEN", - "nomCommune": "PLOUGONVEN" + "codePostal": "62990", + "codeCommune": "62236", + "libelleAcheminement": "CONTES", + "nomCommune": "CONTES" }, { - "codePostal": "46300", - "codeCommune": "46169", - "libelleAcheminement": "LEOBARD", - "nomCommune": "LEOBARD" + "codePostal": "07150", + "codeCommune": "07168", + "libelleAcheminement": "ORGNAC L AVEN", + "nomCommune": "ORGNAC L AVEN" }, { - "codePostal": "57700", - "codeCommune": "57562", - "libelleAcheminement": "RANGUEVAUX", - "nomCommune": "RANGUEVAUX" + "codePostal": "61340", + "codeCommune": "61484", + "libelleAcheminement": "VAL AU PERCHE", + "nomCommune": "VAL AU PERCHE" }, { - "codePostal": "34260", - "codeCommune": "34049", - "libelleAcheminement": "CAMPLONG", - "nomCommune": "CAMPLONG" + "codePostal": "51600", + "codeCommune": "51307", + "libelleAcheminement": "JONCHERY SUR SUIPPE", + "nomCommune": "JONCHERY SUR SUIPPE" }, { - "codePostal": "29250", - "codeCommune": "29192", - "libelleAcheminement": "PLOUGOULM", - "nomCommune": "PLOUGOULM" + "codePostal": "53100", + "codeCommune": "53219", + "libelleAcheminement": "ST GEORGES BUTTAVENT", + "nomCommune": "ST GEORGES BUTTAVENT" }, { - "codePostal": "46170", - "codeCommune": "46172", - "libelleAcheminement": "LHOSPITALET", - "nomCommune": "LHOSPITALET" + "codePostal": "62130", + "codeCommune": "62238", + "libelleAcheminement": "CONTEVILLE EN TERNOIS", + "nomCommune": "CONTEVILLE EN TERNOIS" }, { - "codePostal": "57530", - "codeCommune": "57563", - "libelleAcheminement": "RAVILLE", - "nomCommune": "RAVILLE" + "codePostal": "07230", + "codeCommune": "07176", + "libelleAcheminement": "PLANZOLLES", + "nomCommune": "PLANZOLLES" }, { - "codePostal": "34600", - "codeCommune": "34053", - "libelleAcheminement": "CARLENCAS ET LEVAS", - "nomCommune": "CARLENCAS ET LEVAS" + "codePostal": "61390", + "codeCommune": "61492", + "libelleAcheminement": "TREMONT", + "nomCommune": "TREMONT" }, { - "codePostal": "29830", - "codeCommune": "29196", - "libelleAcheminement": "PLOUGUIN", - "nomCommune": "PLOUGUIN" + "codePostal": "51390", + "codeCommune": "51310", + "libelleAcheminement": "JOUY LES REIMS", + "nomCommune": "JOUY LES REIMS" }, { - "codePostal": "46270", - "codeCommune": "46174", - "libelleAcheminement": "LINAC", - "nomCommune": "LINAC" + "codePostal": "53270", + "codeCommune": "53228", + "libelleAcheminement": "BLANDOUET ST JEAN", + "nomCommune": "BLANDOUET ST JEAN" }, { - "codePostal": "57810", - "codeCommune": "57564", - "libelleAcheminement": "RECHICOURT LE CHATEAU", - "nomCommune": "RECHICOURT LE CHATEAU" + "codePostal": "62970", + "codeCommune": "62249", + "libelleAcheminement": "COURCELLES LES LENS", + "nomCommune": "COURCELLES LES LENS" }, { - "codePostal": "34490", - "codeCommune": "34061", - "libelleAcheminement": "CAUSSES ET VEYRAN", - "nomCommune": "CAUSSES ET VEYRAN" + "codePostal": "07290", + "codeCommune": "07185", + "libelleAcheminement": "PREAUX", + "nomCommune": "PREAUX" }, { - "codePostal": "29860", - "codeCommune": "29209", - "libelleAcheminement": "PLOUVIEN", - "nomCommune": "PLOUVIEN" + "codePostal": "61190", + "codeCommune": "61500", + "libelleAcheminement": "LA VENTROUZE", + "nomCommune": "LA VENTROUZE" }, { - "codePostal": "46350", - "codeCommune": "46178", - "libelleAcheminement": "LOUPIAC", - "nomCommune": "LOUPIAC" + "codePostal": "51340", + "codeCommune": "51311", + "libelleAcheminement": "JUSSECOURT MINECOURT", + "nomCommune": "JUSSECOURT MINECOURT" }, { - "codePostal": "57320", - "codeCommune": "57567", - "libelleAcheminement": "REMELFANG", - "nomCommune": "REMELFANG" + "codePostal": "53270", + "codeCommune": "53228", + "libelleAcheminement": "BLANDOUET ST JEAN", + "nomCommune": "BLANDOUET ST JEAN" }, { - "codePostal": "34720", - "codeCommune": "34063", - "libelleAcheminement": "CAUX", - "nomCommune": "CAUX" + "codePostal": "62128", + "codeCommune": "62259", + "libelleAcheminement": "CROISILLES", + "nomCommune": "CROISILLES" }, { - "codePostal": "29420", - "codeCommune": "29210", - "libelleAcheminement": "PLOUVORN", - "nomCommune": "PLOUVORN" + "codePostal": "07560", + "codeCommune": "07200", + "libelleAcheminement": "LE ROUX", + "nomCommune": "LE ROUX" }, { - "codePostal": "46260", - "codeCommune": "46179", - "libelleAcheminement": "LUGAGNAC", - "nomCommune": "LUGAGNAC" + "codePostal": "61360", + "codeCommune": "61502", + "libelleAcheminement": "VIDAI", + "nomCommune": "VIDAI" }, { - "codePostal": "57645", - "codeCommune": "57575", - "libelleAcheminement": "RETONFEY", - "nomCommune": "RETONFEY" + "codePostal": "51170", + "codeCommune": "51314", + "libelleAcheminement": "LAGERY", + "nomCommune": "LAGERY" }, { - "codePostal": "34520", - "codeCommune": "34064", - "libelleAcheminement": "LE CAYLAR", - "nomCommune": "LE CAYLAR" + "codePostal": "53480", + "codeCommune": "53232", + "libelleAcheminement": "ST LEGER", + "nomCommune": "ST LEGER" }, { - "codePostal": "29150", - "codeCommune": "29222", - "libelleAcheminement": "PORT LAUNAY", - "nomCommune": "PORT LAUNAY" + "codePostal": "62130", + "codeCommune": "62260", + "libelleAcheminement": "CROIX EN TERNOIS", + "nomCommune": "CROIX EN TERNOIS" }, { - "codePostal": "46160", - "codeCommune": "46183", - "libelleAcheminement": "MARCILHAC SUR CELE", - "nomCommune": "MARCILHAC SUR CELE" + "codePostal": "07120", + "codeCommune": "07201", + "libelleAcheminement": "RUOMS", + "nomCommune": "RUOMS" }, { - "codePostal": "57130", - "codeCommune": "57578", - "libelleAcheminement": "REZONVILLE VIONVILLE", - "nomCommune": "REZONVILLE VIONVILLE" + "codePostal": "62380", + "codeCommune": "62008", + "libelleAcheminement": "ACQUIN WESTBECOURT", + "nomCommune": "ACQUIN WESTBECOURT" }, { - "codePostal": "34800", - "codeCommune": "34076", - "libelleAcheminement": "CEYRAS", - "nomCommune": "CEYRAS" + "codePostal": "51290", + "codeCommune": "51315", + "libelleAcheminement": "LANDRICOURT", + "nomCommune": "LANDRICOURT" }, { - "codePostal": "29770", - "codeCommune": "29228", - "libelleAcheminement": "PRIMELIN", - "nomCommune": "PRIMELIN" + "codePostal": "53290", + "codeCommune": "53233", + "libelleAcheminement": "ST LOUP DU DORAT", + "nomCommune": "ST LOUP DU DORAT" }, { - "codePostal": "46250", - "codeCommune": "46184", - "libelleAcheminement": "MARMINIAC", - "nomCommune": "MARMINIAC" + "codePostal": "62149", + "codeCommune": "62262", + "libelleAcheminement": "CUINCHY", + "nomCommune": "CUINCHY" }, { - "codePostal": "57340", - "codeCommune": "57580", - "libelleAcheminement": "RICHE", - "nomCommune": "RICHE" + "codePostal": "07260", + "codeCommune": "07202", + "libelleAcheminement": "SABLIERES", + "nomCommune": "SABLIERES" }, { - "codePostal": "34390", - "codeCommune": "34080", - "libelleAcheminement": "COLOMBIERES SUR ORB", - "nomCommune": "COLOMBIERES SUR ORB" + "codePostal": "62116", + "codeCommune": "62009", + "libelleAcheminement": "ADINFER", + "nomCommune": "ADINFER" }, { - "codePostal": "29300", - "codeCommune": "29234", - "libelleAcheminement": "REDENE", - "nomCommune": "REDENE" + "codePostal": "51110", + "codeCommune": "51318", + "libelleAcheminement": "LAVANNES", + "nomCommune": "LAVANNES" }, { - "codePostal": "46200", - "codeCommune": "46192", - "libelleAcheminement": "MEYRONNE", - "nomCommune": "MEYRONNE" + "codePostal": "53300", + "codeCommune": "53234", + "libelleAcheminement": "ST LOUP DU GAST", + "nomCommune": "ST LOUP DU GAST" }, { - "codePostal": "57840", - "codeCommune": "57586", - "libelleAcheminement": "ROCHONVILLERS", - "nomCommune": "ROCHONVILLERS" + "codePostal": "62000", + "codeCommune": "62263", + "libelleAcheminement": "DAINVILLE", + "nomCommune": "DAINVILLE" }, { - "codePostal": "34240", - "codeCommune": "34083", - "libelleAcheminement": "COMBES", - "nomCommune": "COMBES" + "codePostal": "07590", + "codeCommune": "07206", + "libelleAcheminement": "ST ALBAN EN MONTAGNE", + "nomCommune": "ST ALBAN EN MONTAGNE" }, { - "codePostal": "29680", - "codeCommune": "29239", - "libelleAcheminement": "ROSCOFF", - "nomCommune": "ROSCOFF" + "codePostal": "62380", + "codeCommune": "62010", + "libelleAcheminement": "AFFRINGUES", + "nomCommune": "AFFRINGUES" }, { - "codePostal": "46700", - "codeCommune": "46199", - "libelleAcheminement": "MONTCABRIER", - "nomCommune": "MONTCABRIER" + "codePostal": "51300", + "codeCommune": "51325", + "libelleAcheminement": "LISSE EN CHAMPAGNE", + "nomCommune": "LISSE EN CHAMPAGNE" }, { - "codePostal": "57120", - "codeCommune": "57591", - "libelleAcheminement": "ROMBAS", - "nomCommune": "ROMBAS" + "codePostal": "53110", + "codeCommune": "53235", + "libelleAcheminement": "STE MARIE DU BOIS", + "nomCommune": "STE MARIE DU BOIS" }, { - "codePostal": "34650", - "codeCommune": "34093", - "libelleAcheminement": "DIO ET VALQUIERES", - "nomCommune": "DIO ET VALQUIERES" + "codePostal": "62560", + "codeCommune": "62267", + "libelleAcheminement": "DENNEBROEUCQ", + "nomCommune": "DENNEBROEUCQ" }, { - "codePostal": "29150", - "codeCommune": "29243", - "libelleAcheminement": "ST COULITZ", - "nomCommune": "ST COULITZ" + "codePostal": "07460", + "codeCommune": "07211", + "libelleAcheminement": "ST ANDRE DE CRUZIERES", + "nomCommune": "ST ANDRE DE CRUZIERES" }, { - "codePostal": "46150", - "codeCommune": "46223", - "libelleAcheminement": "PONTCIRQ", - "nomCommune": "PONTCIRQ" + "codePostal": "62127", + "codeCommune": "62027", + "libelleAcheminement": "AMBRINES", + "nomCommune": "AMBRINES" }, { - "codePostal": "57860", - "codeCommune": "57593", - "libelleAcheminement": "RONCOURT", - "nomCommune": "RONCOURT" + "codePostal": "51300", + "codeCommune": "51328", + "libelleAcheminement": "LOISY SUR MARNE", + "nomCommune": "LOISY SUR MARNE" }, { - "codePostal": "34690", - "codeCommune": "34095", - "libelleAcheminement": "FABREGUES", - "nomCommune": "FABREGUES" + "codePostal": "53410", + "codeCommune": "53243", + "libelleAcheminement": "ST OUEN DES TOITS", + "nomCommune": "ST OUEN DES TOITS" }, { - "codePostal": "29830", - "codeCommune": "29257", - "libelleAcheminement": "ST PABU", - "nomCommune": "ST PABU" + "codePostal": "62116", + "codeCommune": "62272", + "libelleAcheminement": "DOUCHY LES AYETTE", + "nomCommune": "DOUCHY LES AYETTE" }, { - "codePostal": "46260", - "codeCommune": "46227", - "libelleAcheminement": "PROMILHANES", - "nomCommune": "PROMILHANES" + "codePostal": "07160", + "codeCommune": "07215", + "libelleAcheminement": "ST BARTHELEMY LE MEIL", + "nomCommune": "ST BARTHELEMY LE MEIL" }, { - "codePostal": "57230", - "codeCommune": "57594", - "libelleAcheminement": "ROPPEVILLER", - "nomCommune": "ROPPEVILLER" + "codePostal": "62232", + "codeCommune": "62035", + "libelleAcheminement": "ANNEZIN", + "nomCommune": "ANNEZIN" }, { - "codePostal": "34600", - "codeCommune": "34096", - "libelleAcheminement": "FAUGERES", - "nomCommune": "FAUGERES" + "codePostal": "51500", + "codeCommune": "51333", + "libelleAcheminement": "LUDES", + "nomCommune": "LUDES" }, { - "codePostal": "29250", - "codeCommune": "29259", - "libelleAcheminement": "ST POL DE LEON", - "nomCommune": "ST POL DE LEON" + "codePostal": "53400", + "codeCommune": "53251", + "libelleAcheminement": "ST QUENTIN LES ANGES", + "nomCommune": "ST QUENTIN LES ANGES" }, { - "codePostal": "46700", - "codeCommune": "46231", - "libelleAcheminement": "PUY L EVEQUE", - "nomCommune": "PUY L EVEQUE" + "codePostal": "62131", + "codeCommune": "62278", + "libelleAcheminement": "DROUVIN LE MARAIS", + "nomCommune": "DROUVIN LE MARAIS" }, { - "codePostal": "57780", - "codeCommune": "57597", - "libelleAcheminement": "ROSSELANGE", - "nomCommune": "ROSSELANGE" + "codePostal": "07160", + "codeCommune": "07220", + "libelleAcheminement": "ST CHRISTOL", + "nomCommune": "ST CHRISTOL" }, { - "codePostal": "34190", - "codeCommune": "34099", - "libelleAcheminement": "FERRIERES LES VERRERIES", - "nomCommune": "FERRIERES LES VERRERIES" + "codePostal": "62134", + "codeCommune": "62036", + "libelleAcheminement": "ANVIN", + "nomCommune": "ANVIN" }, { - "codePostal": "29590", - "codeCommune": "29263", - "libelleAcheminement": "ST SEGAL", - "nomCommune": "ST SEGAL" + "codePostal": "51500", + "codeCommune": "51338", + "libelleAcheminement": "MAILLY CHAMPAGNE", + "nomCommune": "MAILLY CHAMPAGNE" }, { - "codePostal": "46320", - "codeCommune": "46233", - "libelleAcheminement": "QUISSAC", - "nomCommune": "QUISSAC" + "codePostal": "53390", + "codeCommune": "53259", + "libelleAcheminement": "SENONNES", + "nomCommune": "SENONNES" }, { - "codePostal": "57330", - "codeCommune": "57600", - "libelleAcheminement": "ROUSSY LE VILLAGE", - "nomCommune": "ROUSSY LE VILLAGE" + "codePostal": "62223", + "codeCommune": "62290", + "libelleAcheminement": "ECURIE", + "nomCommune": "ECURIE" }, { - "codePostal": "34510", - "codeCommune": "34101", - "libelleAcheminement": "FLORENSAC", - "nomCommune": "FLORENSAC" + "codePostal": "07380", + "codeCommune": "07223", + "libelleAcheminement": "ST CIRGUES DE PRADES", + "nomCommune": "ST CIRGUES DE PRADES" }, { - "codePostal": "29140", - "codeCommune": "29272", - "libelleAcheminement": "ST YVI", - "nomCommune": "ST YVI" + "codePostal": "62138", + "codeCommune": "62051", + "libelleAcheminement": "AUCHY LES MINES", + "nomCommune": "AUCHY LES MINES" }, { - "codePostal": "46350", - "codeCommune": "46236", - "libelleAcheminement": "REILHAGUET", - "nomCommune": "REILHAGUET" + "codePostal": "51530", + "codeCommune": "51342", + "libelleAcheminement": "MANCY", + "nomCommune": "MANCY" }, { - "codePostal": "57930", - "codeCommune": "57613", - "libelleAcheminement": "ST JEAN DE BASSEL", - "nomCommune": "ST JEAN DE BASSEL" + "codePostal": "53600", + "codeCommune": "53276", + "libelleAcheminement": "VOUTRE", + "nomCommune": "VOUTRE" }, { - "codePostal": "34480", - "codeCommune": "34105", - "libelleAcheminement": "FOUZILHON", - "nomCommune": "FOUZILHON" + "codePostal": "62300", + "codeCommune": "62291", + "libelleAcheminement": "ELEU DIT LEAUWETTE", + "nomCommune": "ELEU DIT LEAUWETTE" }, { - "codePostal": "29670", - "codeCommune": "29279", - "libelleAcheminement": "TAULE", - "nomCommune": "TAULE" + "codePostal": "07200", + "codeCommune": "07230", + "libelleAcheminement": "ST ETIENNE DE BOULOGNE", + "nomCommune": "ST ETIENNE DE BOULOGNE" }, { - "codePostal": "46320", - "codeCommune": "46237", - "libelleAcheminement": "REYREVIGNES", - "nomCommune": "REYREVIGNES" + "codePostal": "62650", + "codeCommune": "62062", + "libelleAcheminement": "AVESNES", + "nomCommune": "AVESNES" }, { - "codePostal": "57370", - "codeCommune": "57614", - "libelleAcheminement": "ST JEAN KOURTZERODE", - "nomCommune": "ST JEAN KOURTZERODE" + "codePostal": "51530", + "codeCommune": "51344", + "libelleAcheminement": "MARDEUIL", + "nomCommune": "MARDEUIL" }, { - "codePostal": "34330", - "codeCommune": "34107", - "libelleAcheminement": "FRAISSE SUR AGOUT", - "nomCommune": "FRAISSE SUR AGOUT" + "codePostal": "54800", + "codeCommune": "54002", + "libelleAcheminement": "ABBEVILLE LES CONFLANS", + "nomCommune": "ABBEVILLE LES CONFLANS" }, { - "codePostal": "29730", - "codeCommune": "29284", - "libelleAcheminement": "TREFFIAGAT", - "nomCommune": "TREFFIAGAT" + "codePostal": "62380", + "codeCommune": "62292", + "libelleAcheminement": "ELNES", + "nomCommune": "ELNES" }, { - "codePostal": "46120", - "codeCommune": "46243", - "libelleAcheminement": "RUEYRES", - "nomCommune": "RUEYRES" + "codePostal": "07340", + "codeCommune": "07234", + "libelleAcheminement": "ST ETIENNE DE VALOUX", + "nomCommune": "ST ETIENNE DE VALOUX" }, { - "codePostal": "57620", - "codeCommune": "57619", - "libelleAcheminement": "ST LOUIS LES BITCHE", - "nomCommune": "ST LOUIS LES BITCHE" + "codePostal": "62550", + "codeCommune": "62071", + "libelleAcheminement": "BAILLEUL LES PERNES", + "nomCommune": "BAILLEUL LES PERNES" }, { - "codePostal": "34110", - "codeCommune": "34108", - "libelleAcheminement": "FRONTIGNAN", - "nomCommune": "FRONTIGNAN" + "codePostal": "51210", + "codeCommune": "51350", + "libelleAcheminement": "MARGNY", + "nomCommune": "MARGNY" }, { - "codePostal": "29720", - "codeCommune": "29292", - "libelleAcheminement": "TREGUENNEC", - "nomCommune": "TREGUENNEC" + "codePostal": "54115", + "codeCommune": "54003", + "libelleAcheminement": "ABONCOURT", + "nomCommune": "ABONCOURT" }, { - "codePostal": "46250", - "codeCommune": "46250", - "libelleAcheminement": "ST CAPRAIS", - "nomCommune": "ST CAPRAIS" + "codePostal": "62990", + "codeCommune": "62293", + "libelleAcheminement": "EMBRY", + "nomCommune": "EMBRY" }, { - "codePostal": "57255", - "codeCommune": "57620", - "libelleAcheminement": "STE MARIE AUX CHENES", - "nomCommune": "STE MARIE AUX CHENES" + "codePostal": "07290", + "codeCommune": "07250", + "libelleAcheminement": "ST JEURE D AY", + "nomCommune": "ST JEURE D AY" }, { - "codePostal": "34650", - "codeCommune": "34121", - "libelleAcheminement": "JONCELS", - "nomCommune": "JONCELS" + "codePostal": "62580", + "codeCommune": "62073", + "libelleAcheminement": "BAILLEUL SIR BERTHOULT", + "nomCommune": "BAILLEUL SIR BERTHOULT" }, { - "codePostal": "29910", - "codeCommune": "29293", - "libelleAcheminement": "TREGUNC", - "nomCommune": "TREGUNC" + "codePostal": "51230", + "codeCommune": "51351", + "libelleAcheminement": "MARIGNY", + "nomCommune": "MARIGNY" }, { - "codePostal": "46360", - "codeCommune": "46252", - "libelleAcheminement": "LES PECHS DU VERS", - "nomCommune": "LES PECHS DU VERS" + "codePostal": "54740", + "codeCommune": "54005", + "libelleAcheminement": "AFFRACOURT", + "nomCommune": "AFFRACOURT" }, { - "codePostal": "57130", - "codeCommune": "57624", - "libelleAcheminement": "STE RUFFINE", - "nomCommune": "STE RUFFINE" + "codePostal": "62145", + "codeCommune": "62295", + "libelleAcheminement": "ENQUIN LEZ GUINEGATTE", + "nomCommune": "ENQUIN LEZ GUINEGATTE" }, { - "codePostal": "34240", - "codeCommune": "34126", - "libelleAcheminement": "LAMALOU LES BAINS", - "nomCommune": "LAMALOU LES BAINS" + "codePostal": "07190", + "codeCommune": "07253", + "libelleAcheminement": "ST JULIEN DU GUA", + "nomCommune": "ST JULIEN DU GUA" }, { - "codePostal": "29290", - "codeCommune": "29299", - "libelleAcheminement": "TREOUERGAT", - "nomCommune": "TREOUERGAT" + "codePostal": "62123", + "codeCommune": "62085", + "libelleAcheminement": "BASSEUX", + "nomCommune": "BASSEUX" }, { - "codePostal": "46160", - "codeCommune": "46254", - "libelleAcheminement": "ST CHELS", - "nomCommune": "ST CHELS" + "codePostal": "51800", + "codeCommune": "51355", + "libelleAcheminement": "MASSIGES", + "nomCommune": "MASSIGES" }, { - "codePostal": "57530", - "codeCommune": "57627", - "libelleAcheminement": "SANRY SUR NIED", - "nomCommune": "SANRY SUR NIED" + "codePostal": "54150", + "codeCommune": "54018", + "libelleAcheminement": "ANOUX", + "nomCommune": "ANOUX" }, { - "codePostal": "34190", - "codeCommune": "34128", - "libelleAcheminement": "LAROQUE", - "nomCommune": "LAROQUE" + "codePostal": "62134", + "codeCommune": "62299", + "libelleAcheminement": "EPS", + "nomCommune": "EPS" }, { - "codePostal": "20167", - "codeCommune": "2A001", - "libelleAcheminement": "AFA", - "nomCommune": "AFA" + "codePostal": "07590", + "codeCommune": "07262", + "libelleAcheminement": "ST LAURENT BAINS LAVAL D AURELLE", + "nomCommune": "ST LAURENT BAINS LAVAL D AURELLE" }, { - "codePostal": "46300", - "codeCommune": "46259", - "libelleAcheminement": "ST CLAIR", - "nomCommune": "ST CLAIR" + "codePostal": "62158", + "codeCommune": "62086", + "libelleAcheminement": "BAVINCOURT", + "nomCommune": "BAVINCOURT" }, { - "codePostal": "57430", - "codeCommune": "57628", - "libelleAcheminement": "SARRALBE", - "nomCommune": "SARRALBE" + "codePostal": "51390", + "codeCommune": "51364", + "libelleAcheminement": "MERY PREMECY", + "nomCommune": "MERY PREMECY" }, { - "codePostal": "34700", - "codeCommune": "34133", - "libelleAcheminement": "LAVALETTE", - "nomCommune": "LAVALETTE" + "codePostal": "54370", + "codeCommune": "54023", + "libelleAcheminement": "ARRACOURT", + "nomCommune": "ARRACOURT" }, { - "codePostal": "20167", - "codeCommune": "2A017", - "libelleAcheminement": "APPIETTO", - "nomCommune": "APPIETTO" + "codePostal": "62134", + "codeCommune": "62303", + "libelleAcheminement": "ERIN", + "nomCommune": "ERIN" }, { - "codePostal": "46800", - "codeCommune": "46262", - "libelleAcheminement": "LENDOU EN QUERCY", - "nomCommune": "LENDOU EN QUERCY" + "codePostal": "07310", + "codeCommune": "07267", + "libelleAcheminement": "ST MARTIAL", + "nomCommune": "ST MARTIAL" }, { - "codePostal": "57230", - "codeCommune": "57639", - "libelleAcheminement": "SCHORBACH", - "nomCommune": "SCHORBACH" + "codePostal": "62450", + "codeCommune": "62093", + "libelleAcheminement": "BEAULENCOURT", + "nomCommune": "BEAULENCOURT" }, { - "codePostal": "34370", - "codeCommune": "34148", - "libelleAcheminement": "MARAUSSAN", - "nomCommune": "MARAUSSAN" + "codePostal": "51190", + "codeCommune": "51367", + "libelleAcheminement": "LE MESNIL SUR OGER", + "nomCommune": "LE MESNIL SUR OGER" }, { - "codePostal": "20160", - "codeCommune": "2A019", - "libelleAcheminement": "ARBORI", - "nomCommune": "ARBORI" + "codePostal": "54370", + "codeCommune": "54026", + "libelleAcheminement": "ATHIENVILLE", + "nomCommune": "ATHIENVILLE" }, { - "codePostal": "46400", - "codeCommune": "46273", - "libelleAcheminement": "ST LAURENT LES TOURS", - "nomCommune": "ST LAURENT LES TOURS" + "codePostal": "62380", + "codeCommune": "62309", + "libelleAcheminement": "ESQUERDES", + "nomCommune": "ESQUERDES" }, { - "codePostal": "57320", - "codeCommune": "57640", - "libelleAcheminement": "SCHWERDORFF", - "nomCommune": "SCHWERDORFF" + "codePostal": "07400", + "codeCommune": "07270", + "libelleAcheminement": "ST MARTIN SUR LAVEZON", + "nomCommune": "ST MARTIN SUR LAVEZON" }, { - "codePostal": "34320", - "codeCommune": "34149", - "libelleAcheminement": "MARGON", - "nomCommune": "MARGON" + "codePostal": "62170", + "codeCommune": "62094", + "libelleAcheminement": "BEAUMERIE ST MARTIN", + "nomCommune": "BEAUMERIE ST MARTIN" }, { - "codePostal": "20190", - "codeCommune": "2A026", - "libelleAcheminement": "AZILONE AMPAZA", - "nomCommune": "AZILONE AMPAZA" + "codePostal": "51290", + "codeCommune": "51373", + "libelleAcheminement": "MONCETZ L ABBAYE", + "nomCommune": "MONCETZ L ABBAYE" }, { - "codePostal": "46400", - "codeCommune": "46286", - "libelleAcheminement": "ST PAUL DE VERN", - "nomCommune": "ST PAUL DE VERN" + "codePostal": "54580", + "codeCommune": "54028", + "libelleAcheminement": "AUBOUE", + "nomCommune": "AUBOUE" }, { - "codePostal": "57160", - "codeCommune": "57642", - "libelleAcheminement": "SCY CHAZELLES", - "nomCommune": "SCY CHAZELLES" + "codePostal": "62690", + "codeCommune": "62314", + "libelleAcheminement": "ESTREE CAUCHY", + "nomCommune": "ESTREE CAUCHY" }, { - "codePostal": "34340", - "codeCommune": "34150", - "libelleAcheminement": "MARSEILLAN", - "nomCommune": "MARSEILLAN" + "codePostal": "07400", + "codeCommune": "07283", + "libelleAcheminement": "ST PIERRE LA ROCHE", + "nomCommune": "ST PIERRE LA ROCHE" }, { - "codePostal": "20119", - "codeCommune": "2A031", - "libelleAcheminement": "BASTELICA", - "nomCommune": "BASTELICA" + "codePostal": "62124", + "codeCommune": "62096", + "libelleAcheminement": "BEAUMETZ LES CAMBRAI", + "nomCommune": "BEAUMETZ LES CAMBRAI" }, { - "codePostal": "46330", - "codeCommune": "46299", - "libelleAcheminement": "SAULIAC SUR CELE", - "nomCommune": "SAULIAC SUR CELE" + "codePostal": "51500", + "codeCommune": "51375", + "libelleAcheminement": "MONTBRE", + "nomCommune": "MONTBRE" }, { - "codePostal": "57640", - "codeCommune": "57649", - "libelleAcheminement": "SERVIGNY LES STE BARBE", - "nomCommune": "SERVIGNY LES STE BARBE" + "codePostal": "54120", + "codeCommune": "54039", + "libelleAcheminement": "BACCARAT", + "nomCommune": "BACCARAT" }, { - "codePostal": "34310", - "codeCommune": "34161", - "libelleAcheminement": "MONTADY", - "nomCommune": "MONTADY" + "codePostal": "62810", + "codeCommune": "62316", + "libelleAcheminement": "ESTREE WAMIN", + "nomCommune": "ESTREE WAMIN" }, { - "codePostal": "20129", - "codeCommune": "2A032", - "libelleAcheminement": "BASTELICACCIA", - "nomCommune": "BASTELICACCIA" + "codePostal": "07140", + "codeCommune": "07284", + "libelleAcheminement": "ST PIERRE ST JEAN", + "nomCommune": "ST PIERRE ST JEAN" }, { - "codePostal": "46140", - "codeCommune": "46301", - "libelleAcheminement": "SAUZET", - "nomCommune": "SAUZET" + "codePostal": "62123", + "codeCommune": "62097", + "libelleAcheminement": "BEAUMETZ LES LOGES", + "nomCommune": "BEAUMETZ LES LOGES" }, { - "codePostal": "57420", - "codeCommune": "57652", - "libelleAcheminement": "SILLEGNY", - "nomCommune": "SILLEGNY" + "codePostal": "51260", + "codeCommune": "51376", + "libelleAcheminement": "MONTGENOST", + "nomCommune": "MONTGENOST" }, { - "codePostal": "34320", - "codeCommune": "34168", - "libelleAcheminement": "MONTESQUIEU", - "nomCommune": "MONTESQUIEU" + "codePostal": "54360", + "codeCommune": "54045", + "libelleAcheminement": "BARBONVILLE", + "nomCommune": "BARBONVILLE" }, { - "codePostal": "20169", - "codeCommune": "2A041", - "libelleAcheminement": "BONIFACIO", - "nomCommune": "BONIFACIO" + "codePostal": "62580", + "codeCommune": "62324", + "libelleAcheminement": "FARBUS", + "nomCommune": "FARBUS" }, { - "codePostal": "46300", - "codeCommune": "46308", - "libelleAcheminement": "SOUCIRAC", - "nomCommune": "SOUCIRAC" + "codePostal": "07290", + "codeCommune": "07292", + "libelleAcheminement": "ST ROMAIN D AY", + "nomCommune": "ST ROMAIN D AY" }, { - "codePostal": "57260", - "codeCommune": "57664", - "libelleAcheminement": "TARQUIMPOL", - "nomCommune": "TARQUIMPOL" + "codePostal": "62217", + "codeCommune": "62099", + "libelleAcheminement": "BEAURAINS", + "nomCommune": "BEAURAINS" }, { - "codePostal": "34090", - "codeCommune": "34172", - "libelleAcheminement": "MONTPELLIER", - "nomCommune": "MONTPELLIER" + "codePostal": "51230", + "codeCommune": "51412", + "libelleAcheminement": "OGNES", + "nomCommune": "OGNES" }, { - "codePostal": "20142", - "codeCommune": "2A056", - "libelleAcheminement": "CAMPO", - "nomCommune": "CAMPO" + "codePostal": "54370", + "codeCommune": "54071", + "libelleAcheminement": "BEZANGE LA GRANDE", + "nomCommune": "BEZANGE LA GRANDE" }, { - "codePostal": "46190", - "codeCommune": "46311", - "libelleAcheminement": "SOUSCEYRAC EN QUERCY", - "nomCommune": "SOUSCEYRAC EN QUERCY" + "codePostal": "62560", + "codeCommune": "62325", + "libelleAcheminement": "FAUQUEMBERGUES", + "nomCommune": "FAUQUEMBERGUES" }, { - "codePostal": "57220", - "codeCommune": "57667", - "libelleAcheminement": "TETERCHEN", - "nomCommune": "TETERCHEN" + "codePostal": "07190", + "codeCommune": "07295", + "libelleAcheminement": "ST SAUVEUR DE MONTAGUT", + "nomCommune": "ST SAUVEUR DE MONTAGUT" }, { - "codePostal": "34120", - "codeCommune": "34182", - "libelleAcheminement": "NEZIGNAN L EVEQUE", - "nomCommune": "NEZIGNAN L EVEQUE" + "codePostal": "62240", + "codeCommune": "62102", + "libelleAcheminement": "BECOURT", + "nomCommune": "BECOURT" }, { - "codePostal": "20170", - "codeCommune": "2A061", - "libelleAcheminement": "CARBINI", - "nomCommune": "CARBINI" + "codePostal": "51240", + "codeCommune": "51415", + "libelleAcheminement": "OMEY", + "nomCommune": "OMEY" }, { - "codePostal": "46130", - "codeCommune": "46313", - "libelleAcheminement": "TAURIAC", - "nomCommune": "TAURIAC" + "codePostal": "54300", + "codeCommune": "54074", + "libelleAcheminement": "BIENVILLE LA PETITE", + "nomCommune": "BIENVILLE LA PETITE" }, { - "codePostal": "57100", - "codeCommune": "57672", - "libelleAcheminement": "THIONVILLE", - "nomCommune": "THIONVILLE" + "codePostal": "62270", + "codeCommune": "62337", + "libelleAcheminement": "FLERS", + "nomCommune": "FLERS" }, { - "codePostal": "34380", - "codeCommune": "34185", - "libelleAcheminement": "NOTRE DAME DE LONDRES", - "nomCommune": "NOTRE DAME DE LONDRES" + "codePostal": "07360", + "codeCommune": "07303", + "libelleAcheminement": "ST VINCENT DE DURFORT", + "nomCommune": "ST VINCENT DE DURFORT" }, { - "codePostal": "20133", - "codeCommune": "2A062", - "libelleAcheminement": "CARBUCCIA", - "nomCommune": "CARBUCCIA" + "codePostal": "62810", + "codeCommune": "62111", + "libelleAcheminement": "BERLENCOURT LE CAUROY", + "nomCommune": "BERLENCOURT LE CAUROY" }, { - "codePostal": "46260", - "codeCommune": "46328", - "libelleAcheminement": "VARAIRE", - "nomCommune": "VARAIRE" + "codePostal": "51300", + "codeCommune": "51417", + "libelleAcheminement": "ORCONTE", + "nomCommune": "ORCONTE" }, { - "codePostal": "57670", - "codeCommune": "57685", - "libelleAcheminement": "VAHL LES BENESTROFF", - "nomCommune": "VAHL LES BENESTROFF" + "codePostal": "54300", + "codeCommune": "54083", + "libelleAcheminement": "BONVILLER", + "nomCommune": "BONVILLER" }, { - "codePostal": "34360", - "codeCommune": "34193", - "libelleAcheminement": "PARDAILHAN", - "nomCommune": "PARDAILHAN" + "codePostal": "62128", + "codeCommune": "62343", + "libelleAcheminement": "FONTAINE LES CROISILLES", + "nomCommune": "FONTAINE LES CROISILLES" }, { - "codePostal": "20130", - "codeCommune": "2A065", - "libelleAcheminement": "CARGESE", - "nomCommune": "CARGESE" + "codePostal": "07290", + "codeCommune": "07309", + "libelleAcheminement": "SATILLIEU", + "nomCommune": "SATILLIEU" }, { - "codePostal": "46230", - "codeCommune": "46329", - "libelleAcheminement": "VAYLATS", - "nomCommune": "VAYLATS" + "codePostal": "62123", + "codeCommune": "62112", + "libelleAcheminement": "BERLES AU BOIS", + "nomCommune": "BERLES AU BOIS" }, { - "codePostal": "57220", - "codeCommune": "57691", - "libelleAcheminement": "VALMUNSTER", - "nomCommune": "VALMUNSTER" + "codePostal": "51300", + "codeCommune": "51420", + "libelleAcheminement": "OUTREPONT", + "nomCommune": "OUTREPONT" }, { - "codePostal": "34800", - "codeCommune": "34197", - "libelleAcheminement": "PERET", - "nomCommune": "PERET" + "codePostal": "54470", + "codeCommune": "54087", + "libelleAcheminement": "BOUILLONVILLE", + "nomCommune": "BOUILLONVILLE" }, { - "codePostal": "20164", - "codeCommune": "2A066", - "libelleAcheminement": "CARGIACA", - "nomCommune": "CARGIACA" + "codePostal": "62130", + "codeCommune": "62348", + "libelleAcheminement": "FOUFFLIN RICAMETZ", + "nomCommune": "FOUFFLIN RICAMETZ" }, { - "codePostal": "46300", - "codeCommune": "46334", - "libelleAcheminement": "LE VIGAN", - "nomCommune": "LE VIGAN" + "codePostal": "07430", + "codeCommune": "07310", + "libelleAcheminement": "SAVAS", + "nomCommune": "SAVAS" }, { - "codePostal": "57320", - "codeCommune": "57700", - "libelleAcheminement": "VAUDRECHING", - "nomCommune": "VAUDRECHING" + "codePostal": "62250", + "codeCommune": "62125", + "libelleAcheminement": "BEUVREQUEN", + "nomCommune": "BEUVREQUEN" }, { - "codePostal": "34700", - "codeCommune": "34205", - "libelleAcheminement": "LES PLANS", - "nomCommune": "LES PLANS" + "codePostal": "51130", + "codeCommune": "51430", + "libelleAcheminement": "PIERRE MORAINS", + "nomCommune": "PIERRE MORAINS" }, { - "codePostal": "20168", - "codeCommune": "2A094", - "libelleAcheminement": "CORRANO", - "nomCommune": "CORRANO" + "codePostal": "54800", + "codeCommune": "54093", + "libelleAcheminement": "BRAINVILLE", + "nomCommune": "BRAINVILLE" }, { - "codePostal": "47800", - "codeCommune": "47003", - "libelleAcheminement": "AGNAC", - "nomCommune": "AGNAC" + "codePostal": "62232", + "codeCommune": "62350", + "libelleAcheminement": "FOUQUIERES LES BETHUNE", + "nomCommune": "FOUQUIERES LES BETHUNE" }, { - "codePostal": "57260", - "codeCommune": "57706", - "libelleAcheminement": "VERGAVILLE", - "nomCommune": "VERGAVILLE" + "codePostal": "07340", + "codeCommune": "07313", + "libelleAcheminement": "SERRIERES", + "nomCommune": "SERRIERES" }, { - "codePostal": "34420", - "codeCommune": "34209", - "libelleAcheminement": "PORTIRAGNES", - "nomCommune": "PORTIRAGNES" + "codePostal": "62450", + "codeCommune": "62129", + "libelleAcheminement": "BIEFVILLERS LES BAPAUME", + "nomCommune": "BIEFVILLERS LES BAPAUME" }, { - "codePostal": "20167", - "codeCommune": "2A103", - "libelleAcheminement": "CUTTOLI CORTICCHIATO", - "nomCommune": "CUTTOLI CORTICCHIATO" + "codePostal": "51130", + "codeCommune": "51435", + "libelleAcheminement": "POCANCY", + "nomCommune": "POCANCY" }, { - "codePostal": "47110", - "codeCommune": "47006", - "libelleAcheminement": "ALLEZ ET CAZENEUVE", - "nomCommune": "ALLEZ ET CAZENEUVE" + "codePostal": "54190", + "codeCommune": "54096", + "libelleAcheminement": "BREHAIN LA VILLE", + "nomCommune": "BREHAIN LA VILLE" }, { - "codePostal": "57340", - "codeCommune": "57723", - "libelleAcheminement": "VIRMING", - "nomCommune": "VIRMING" + "codePostal": "62150", + "codeCommune": "62356", + "libelleAcheminement": "FRESNICOURT LE DOLMEN", + "nomCommune": "FRESNICOURT LE DOLMEN" }, { - "codePostal": "34230", - "codeCommune": "34210", - "libelleAcheminement": "LE POUGET", - "nomCommune": "LE POUGET" + "codePostal": "07240", + "codeCommune": "07314", + "libelleAcheminement": "SILHAC", + "nomCommune": "SILHAC" }, { - "codePostal": "20190", - "codeCommune": "2A117", - "libelleAcheminement": "FORCIOLO", - "nomCommune": "FORCIOLO" + "codePostal": "62111", + "codeCommune": "62130", + "libelleAcheminement": "BIENVILLERS AU BOIS", + "nomCommune": "BIENVILLERS AU BOIS" }, { - "codePostal": "47480", - "codeCommune": "47019", - "libelleAcheminement": "BAJAMONT", - "nomCommune": "BAJAMONT" + "codePostal": "51170", + "codeCommune": "51437", + "libelleAcheminement": "POILLY", + "nomCommune": "POILLY" }, { - "codePostal": "57590", - "codeCommune": "57727", - "libelleAcheminement": "VIVIERS", - "nomCommune": "VIVIERS" + "codePostal": "54150", + "codeCommune": "54099", + "libelleAcheminement": "VAL DE BRIEY", + "nomCommune": "VAL DE BRIEY" }, { - "codePostal": "34600", - "codeCommune": "34211", - "libelleAcheminement": "LE POUJOL SUR ORB", - "nomCommune": "LE POUJOL SUR ORB" + "codePostal": "62770", + "codeCommune": "62357", + "libelleAcheminement": "FRESNOY", + "nomCommune": "FRESNOY" }, { - "codePostal": "20143", - "codeCommune": "2A118", - "libelleAcheminement": "FOZZANO", - "nomCommune": "FOZZANO" + "codePostal": "07110", + "codeCommune": "07318", + "libelleAcheminement": "TAURIERS", + "nomCommune": "TAURIERS" }, { - "codePostal": "47290", - "codeCommune": "47023", - "libelleAcheminement": "BEAUGAS", - "nomCommune": "BEAUGAS" + "codePostal": "62575", + "codeCommune": "62139", + "libelleAcheminement": "BLENDECQUES", + "nomCommune": "BLENDECQUES" }, { - "codePostal": "57220", - "codeCommune": "57730", - "libelleAcheminement": "VOLMERANGE LES BOULAY", - "nomCommune": "VOLMERANGE LES BOULAY" + "codePostal": "51460", + "codeCommune": "51438", + "libelleAcheminement": "POIX", + "nomCommune": "POIX" }, { - "codePostal": "34730", - "codeCommune": "34217", - "libelleAcheminement": "PRADES LE LEZ", - "nomCommune": "PRADES LE LEZ" + "codePostal": "54450", + "codeCommune": "54107", + "libelleAcheminement": "BURIVILLE", + "nomCommune": "BURIVILLE" }, { - "codePostal": "20100", - "codeCommune": "2A128", - "libelleAcheminement": "GRANACE", - "nomCommune": "GRANACE" + "codePostal": "62580", + "codeCommune": "62358", + "libelleAcheminement": "FRESNOY EN GOHELLE", + "nomCommune": "FRESNOY EN GOHELLE" }, { - "codePostal": "47700", - "codeCommune": "47026", - "libelleAcheminement": "BEAUZIAC", - "nomCommune": "BEAUZIAC" + "codePostal": "07400", + "codeCommune": "07319", + "libelleAcheminement": "LE TEIL", + "nomCommune": "LE TEIL" }, { - "codePostal": "57330", - "codeCommune": "57731", - "libelleAcheminement": "VOLMERANGE LES MINES", - "nomCommune": "VOLMERANGE LES MINES" + "codePostal": "62380", + "codeCommune": "62140", + "libelleAcheminement": "BLEQUIN", + "nomCommune": "BLEQUIN" }, { - "codePostal": "34390", - "codeCommune": "34219", - "libelleAcheminement": "PREMIAN", - "nomCommune": "PREMIAN" + "codePostal": "51110", + "codeCommune": "51439", + "libelleAcheminement": "POMACLE", + "nomCommune": "POMACLE" }, { - "codePostal": "20128", - "codeCommune": "2A130", - "libelleAcheminement": "GROSSETO PRUGNA", - "nomCommune": "GROSSETO PRUGNA" + "codePostal": "54230", + "codeCommune": "54111", + "libelleAcheminement": "CHALIGNY", + "nomCommune": "CHALIGNY" }, { - "codePostal": "47410", - "codeCommune": "47035", - "libelleAcheminement": "BOURGOUGNAGUE", - "nomCommune": "BOURGOUGNAGUE" + "codePostal": "62127", + "codeCommune": "62362", + "libelleAcheminement": "FREVILLERS", + "nomCommune": "FREVILLERS" }, { - "codePostal": "57720", - "codeCommune": "57732", - "libelleAcheminement": "VOLMUNSTER", - "nomCommune": "VOLMUNSTER" + "codePostal": "07330", + "codeCommune": "07322", + "libelleAcheminement": "THUEYTS", + "nomCommune": "THUEYTS" }, { - "codePostal": "34400", - "codeCommune": "34246", - "libelleAcheminement": "ENTRE VIGNES", - "nomCommune": "ENTRE VIGNES" + "codePostal": "62200", + "codeCommune": "62160", + "libelleAcheminement": "BOULOGNE SUR MER", + "nomCommune": "BOULOGNE SUR MER" }, { - "codePostal": "20166", - "codeCommune": "2A130", - "libelleAcheminement": "GROSSETO PRUGNA", - "nomCommune": "GROSSETO PRUGNA" + "codePostal": "51330", + "codeCommune": "51442", + "libelleAcheminement": "POSSESSE", + "nomCommune": "POSSESSE" }, { - "codePostal": "47160", - "codeCommune": "47043", - "libelleAcheminement": "BUZET SUR BAISE", - "nomCommune": "BUZET SUR BAISE" + "codePostal": "54890", + "codeCommune": "54112", + "libelleAcheminement": "CHAMBLEY BUSSIERES", + "nomCommune": "CHAMBLEY BUSSIERES" }, { - "codePostal": "57640", - "codeCommune": "57736", - "libelleAcheminement": "VRY", - "nomCommune": "VRY" + "codePostal": "62310", + "codeCommune": "62364", + "libelleAcheminement": "FRUGES", + "nomCommune": "FRUGES" }, { - "codePostal": "34400", - "codeCommune": "34246", - "libelleAcheminement": "ENTRE VIGNES", - "nomCommune": "ENTRE VIGNES" + "codePostal": "07130", + "codeCommune": "07323", + "libelleAcheminement": "TOULAUD", + "nomCommune": "TOULAUD" }, { - "codePostal": "20140", - "codeCommune": "2A186", - "libelleAcheminement": "OLIVESE", - "nomCommune": "OLIVESE" + "codePostal": "62190", + "codeCommune": "62162", + "libelleAcheminement": "BOURECQ", + "nomCommune": "BOURECQ" }, { - "codePostal": "47430", - "codeCommune": "47046", - "libelleAcheminement": "CALONGES", - "nomCommune": "CALONGES" + "codePostal": "51260", + "codeCommune": "51443", + "libelleAcheminement": "POTANGIS", + "nomCommune": "POTANGIS" }, { - "codePostal": "57915", - "codeCommune": "57752", - "libelleAcheminement": "WOUSTVILLER", - "nomCommune": "WOUSTVILLER" + "codePostal": "54122", + "codeCommune": "54125", + "libelleAcheminement": "CHENEVIERES", + "nomCommune": "CHENEVIERES" }, { - "codePostal": "34980", - "codeCommune": "34247", - "libelleAcheminement": "ST CLEMENT DE RIVIERE", - "nomCommune": "ST CLEMENT DE RIVIERE" + "codePostal": "62770", + "codeCommune": "62365", + "libelleAcheminement": "GALAMETZ", + "nomCommune": "GALAMETZ" }, { - "codePostal": "20112", - "codeCommune": "2A191", - "libelleAcheminement": "OLMICCIA", - "nomCommune": "OLMICCIA" + "codePostal": "07110", + "codeCommune": "07327", + "libelleAcheminement": "UZER", + "nomCommune": "UZER" }, { - "codePostal": "47700", - "codeCommune": "47052", - "libelleAcheminement": "CASTELJALOUX", - "nomCommune": "CASTELJALOUX" + "codePostal": "62240", + "codeCommune": "62165", + "libelleAcheminement": "BOURNONVILLE", + "nomCommune": "BOURNONVILLE" }, { - "codePostal": "57630", - "codeCommune": "57754", - "libelleAcheminement": "XANREY", - "nomCommune": "XANREY" + "codePostal": "51480", + "codeCommune": "51445", + "libelleAcheminement": "POURCY", + "nomCommune": "POURCY" }, { - "codePostal": "34480", - "codeCommune": "34258", - "libelleAcheminement": "ST GENIES DE FONTEDIT", - "nomCommune": "ST GENIES DE FONTEDIT" + "codePostal": "54200", + "codeCommune": "54128", + "libelleAcheminement": "CHOLOY MENILLOT", + "nomCommune": "CHOLOY MENILLOT" }, { - "codePostal": "20134", - "codeCommune": "2A200", - "libelleAcheminement": "PALNECA", - "nomCommune": "PALNECA" + "codePostal": "62150", + "codeCommune": "62366", + "libelleAcheminement": "GAUCHIN LEGAL", + "nomCommune": "GAUCHIN LEGAL" }, { - "codePostal": "47290", - "codeCommune": "47055", - "libelleAcheminement": "CASTELNAUD DE GRATECAMBE", - "nomCommune": "CASTELNAUD DE GRATECAMBE" + "codePostal": "07140", + "codeCommune": "07334", + "libelleAcheminement": "LES VANS", + "nomCommune": "LES VANS" }, { - "codePostal": "57370", - "codeCommune": "57761", - "libelleAcheminement": "ZILLING", - "nomCommune": "ZILLING" + "codePostal": "62170", + "codeCommune": "62177", + "libelleAcheminement": "BRIMEUX", + "nomCommune": "BRIMEUX" }, { - "codePostal": "34160", - "codeCommune": "34263", - "libelleAcheminement": "ST HILAIRE DE BEAUVOIR", - "nomCommune": "ST HILAIRE DE BEAUVOIR" + "codePostal": "51360", + "codeCommune": "51449", + "libelleAcheminement": "PRUNAY", + "nomCommune": "PRUNAY" }, { - "codePostal": "20147", - "codeCommune": "2A203", - "libelleAcheminement": "PARTINELLO", - "nomCommune": "PARTINELLO" + "codePostal": "54370", + "codeCommune": "54133", + "libelleAcheminement": "COINCOURT", + "nomCommune": "COINCOURT" }, { - "codePostal": "47430", - "codeCommune": "47061", - "libelleAcheminement": "CAUMONT SUR GARONNE", - "nomCommune": "CAUMONT SUR GARONNE" + "codePostal": "62760", + "codeCommune": "62368", + "libelleAcheminement": "GAUDIEMPRE", + "nomCommune": "GAUDIEMPRE" }, { - "codePostal": "57690", - "codeCommune": "57762", - "libelleAcheminement": "ZIMMING", - "nomCommune": "ZIMMING" + "codePostal": "07140", + "codeCommune": "07334", + "libelleAcheminement": "LES VANS", + "nomCommune": "LES VANS" }, { - "codePostal": "34160", - "codeCommune": "34265", - "libelleAcheminement": "ST JEAN DE CORNIES", - "nomCommune": "ST JEAN DE CORNIES" + "codePostal": "62700", + "codeCommune": "62178", + "libelleAcheminement": "BRUAY LA BUISSIERE", + "nomCommune": "BRUAY LA BUISSIERE" }, { - "codePostal": "20137", - "codeCommune": "2A247", - "libelleAcheminement": "PORTO VECCHIO", - "nomCommune": "PORTO VECCHIO" + "codePostal": "51300", + "codeCommune": "51455", + "libelleAcheminement": "REIMS LA BRULEE", + "nomCommune": "REIMS LA BRULEE" }, { - "codePostal": "47370", - "codeCommune": "47072", - "libelleAcheminement": "COURBIAC", - "nomCommune": "COURBIAC" + "codePostal": "54260", + "codeCommune": "54134", + "libelleAcheminement": "COLMEY", + "nomCommune": "COLMEY" }, { - "codePostal": "57890", - "codeCommune": "57765", - "libelleAcheminement": "DIESEN", - "nomCommune": "DIESEN" + "codePostal": "62580", + "codeCommune": "62369", + "libelleAcheminement": "GAVRELLE", + "nomCommune": "GAVRELLE" }, { - "codePostal": "34270", - "codeCommune": "34276", - "libelleAcheminement": "ST MATHIEU DE TREVIERS", - "nomCommune": "ST MATHIEU DE TREVIERS" + "codePostal": "07430", + "codeCommune": "07337", + "libelleAcheminement": "VERNOSC LES ANNONAY", + "nomCommune": "VERNOSC LES ANNONAY" }, { - "codePostal": "20110", - "codeCommune": "2A249", - "libelleAcheminement": "PROPRIANO", - "nomCommune": "PROPRIANO" + "codePostal": "62130", + "codeCommune": "62180", + "libelleAcheminement": "BRIAS", + "nomCommune": "BRIAS" }, { - "codePostal": "47500", - "codeCommune": "47077", - "libelleAcheminement": "CUZORN", - "nomCommune": "CUZORN" + "codePostal": "51330", + "codeCommune": "51456", + "libelleAcheminement": "REMICOURT", + "nomCommune": "REMICOURT" }, { - "codePostal": "58700", - "codeCommune": "58018", - "libelleAcheminement": "AUTHIOU", - "nomCommune": "AUTHIOU" + "codePostal": "54870", + "codeCommune": "54137", + "libelleAcheminement": "CONS LA GRANDVILLE", + "nomCommune": "CONS LA GRANDVILLE" }, { - "codePostal": "34520", - "codeCommune": "34277", - "libelleAcheminement": "ST MAURICE NAVACELLES", - "nomCommune": "ST MAURICE NAVACELLES" + "codePostal": "62580", + "codeCommune": "62371", + "libelleAcheminement": "GIVENCHY EN GOHELLE", + "nomCommune": "GIVENCHY EN GOHELLE" }, { - "codePostal": "20142", - "codeCommune": "2A253", - "libelleAcheminement": "QUASQUARA", - "nomCommune": "QUASQUARA" + "codePostal": "07340", + "codeCommune": "07344", + "libelleAcheminement": "VINZIEUX", + "nomCommune": "VINZIEUX" }, { - "codePostal": "47470", - "codeCommune": "47082", - "libelleAcheminement": "DONDAS", - "nomCommune": "DONDAS" + "codePostal": "62132", + "codeCommune": "62191", + "libelleAcheminement": "CAFFIERS", + "nomCommune": "CAFFIERS" }, { - "codePostal": "58170", - "codeCommune": "58019", - "libelleAcheminement": "AVREE", - "nomCommune": "AVREE" + "codePostal": "51310", + "codeCommune": "51459", + "libelleAcheminement": "REVEILLON", + "nomCommune": "REVEILLON" }, { - "codePostal": "34520", - "codeCommune": "34278", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "54170", + "codeCommune": "54143", + "libelleAcheminement": "CREPEY", + "nomCommune": "CREPEY" }, { - "codePostal": "20122", - "codeCommune": "2A254", - "libelleAcheminement": "QUENZA", - "nomCommune": "QUENZA" + "codePostal": "62123", + "codeCommune": "62378", + "libelleAcheminement": "GOUVES", + "nomCommune": "GOUVES" }, { - "codePostal": "47330", - "codeCommune": "47084", - "libelleAcheminement": "DOUZAINS", - "nomCommune": "DOUZAINS" + "codePostal": "07200", + "codeCommune": "07348", + "libelleAcheminement": "VOGUE", + "nomCommune": "VOGUE" }, { - "codePostal": "58110", - "codeCommune": "58030", - "libelleAcheminement": "BICHES", - "nomCommune": "BICHES" + "codePostal": "62182", + "codeCommune": "62192", + "libelleAcheminement": "CAGNICOURT", + "nomCommune": "CAGNICOURT" }, { - "codePostal": "34570", - "codeCommune": "34282", - "libelleAcheminement": "ST PAUL ET VALMALLE", - "nomCommune": "ST PAUL ET VALMALLE" + "codePostal": "51210", + "codeCommune": "51460", + "libelleAcheminement": "RIEUX", + "nomCommune": "RIEUX" }, { - "codePostal": "20160", - "codeCommune": "2A258", - "libelleAcheminement": "RENNO", - "nomCommune": "RENNO" + "codePostal": "54290", + "codeCommune": "54144", + "libelleAcheminement": "CREVECHAMPS", + "nomCommune": "CREVECHAMPS" }, { - "codePostal": "47600", - "codeCommune": "47090", - "libelleAcheminement": "ESPIENS", - "nomCommune": "ESPIENS" + "codePostal": "62123", + "codeCommune": "62379", + "libelleAcheminement": "GOUY EN ARTOIS", + "nomCommune": "GOUY EN ARTOIS" }, { - "codePostal": "58270", - "codeCommune": "58031", - "libelleAcheminement": "BILLY CHEVANNES", - "nomCommune": "BILLY CHEVANNES" + "codePostal": "08300", + "codeCommune": "08001", + "libelleAcheminement": "ACY ROMANCE", + "nomCommune": "ACY ROMANCE" }, { - "codePostal": "34520", - "codeCommune": "34283", - "libelleAcheminement": "ST PIERRE DE LA FAGE", - "nomCommune": "ST PIERRE DE LA FAGE" + "codePostal": "62690", + "codeCommune": "62198", + "libelleAcheminement": "CAMBLIGNEUL", + "nomCommune": "CAMBLIGNEUL" }, { - "codePostal": "20121", - "codeCommune": "2A262", - "libelleAcheminement": "ROSAZIA", - "nomCommune": "ROSAZIA" + "codePostal": "51370", + "codeCommune": "51474", + "libelleAcheminement": "ST BRICE COURCELLES", + "nomCommune": "ST BRICE COURCELLES" }, { - "codePostal": "47700", - "codeCommune": "47093", - "libelleAcheminement": "FARGUES SUR OURBISE", - "nomCommune": "FARGUES SUR OURBISE" + "codePostal": "54110", + "codeCommune": "54159", + "libelleAcheminement": "DOMBASLE SUR MEURTHE", + "nomCommune": "DOMBASLE SUR MEURTHE" }, { - "codePostal": "58500", - "codeCommune": "58032", - "libelleAcheminement": "BILLY SUR OISY", - "nomCommune": "BILLY SUR OISY" + "codePostal": "62810", + "codeCommune": "62385", + "libelleAcheminement": "GRAND RULLECOURT", + "nomCommune": "GRAND RULLECOURT" }, { - "codePostal": "34220", - "codeCommune": "34284", - "libelleAcheminement": "ST PONS DE THOMIERES", - "nomCommune": "ST PONS DE THOMIERES" + "codePostal": "08190", + "codeCommune": "08004", + "libelleAcheminement": "AIRE", + "nomCommune": "AIRE" }, { - "codePostal": "20145", - "codeCommune": "2A269", - "libelleAcheminement": "SARI SOLENZARA", - "nomCommune": "SARI SOLENZARA" + "codePostal": "62140", + "codeCommune": "62212", + "libelleAcheminement": "CAPELLE LES HESDIN", + "nomCommune": "CAPELLE LES HESDIN" }, { - "codePostal": "47360", - "codeCommune": "47104", - "libelleAcheminement": "FREGIMONT", - "nomCommune": "FREGIMONT" + "codePostal": "51390", + "codeCommune": "51479", + "libelleAcheminement": "ST EUPHRAISE ET CLAIRIZET", + "nomCommune": "ST EUPHRAISE ET CLAIRIZET" }, { - "codePostal": "58330", - "codeCommune": "58035", - "libelleAcheminement": "BONA", - "nomCommune": "BONA" + "codePostal": "54385", + "codeCommune": "54160", + "libelleAcheminement": "DOMEVRE EN HAYE", + "nomCommune": "DOMEVRE EN HAYE" }, { - "codePostal": "34630", - "codeCommune": "34289", - "libelleAcheminement": "ST THIBERY", - "nomCommune": "ST THIBERY" + "codePostal": "62160", + "codeCommune": "62386", + "libelleAcheminement": "GRENAY", + "nomCommune": "GRENAY" }, { - "codePostal": "20151", - "codeCommune": "2A270", - "libelleAcheminement": "SARI D ORCINO", - "nomCommune": "SARI D ORCINO" + "codePostal": "08300", + "codeCommune": "08008", + "libelleAcheminement": "AMAGNE", + "nomCommune": "AMAGNE" }, { - "codePostal": "47500", - "codeCommune": "47106", - "libelleAcheminement": "FUMEL", - "nomCommune": "FUMEL" + "codePostal": "62144", + "codeCommune": "62213", + "libelleAcheminement": "CARENCY", + "nomCommune": "CARENCY" }, { - "codePostal": "58530", - "codeCommune": "58039", - "libelleAcheminement": "BREVES", - "nomCommune": "BREVES" + "codePostal": "51400", + "codeCommune": "51485", + "libelleAcheminement": "ST HILAIRE AU TEMPLE", + "nomCommune": "ST HILAIRE AU TEMPLE" }, { - "codePostal": "34730", - "codeCommune": "34290", - "libelleAcheminement": "ST VINCENT DE BARBEYRARGUES", - "nomCommune": "ST VINCENT DE BARBEYRARGUES" + "codePostal": "54450", + "codeCommune": "54163", + "libelleAcheminement": "DOMJEVIN", + "nomCommune": "DOMJEVIN" }, { - "codePostal": "20100", - "codeCommune": "2A272", - "libelleAcheminement": "SARTENE", - "nomCommune": "SARTENE" + "codePostal": "62128", + "codeCommune": "62392", + "libelleAcheminement": "GUEMAPPE", + "nomCommune": "GUEMAPPE" }, { - "codePostal": "47150", - "codeCommune": "47109", - "libelleAcheminement": "GAVAUDUN", - "nomCommune": "GAVAUDUN" + "codePostal": "08390", + "codeCommune": "08020", + "libelleAcheminement": "LES PETITES ARMOISES", + "nomCommune": "LES PETITES ARMOISES" }, { - "codePostal": "58420", - "codeCommune": "58050", - "libelleAcheminement": "CHALLEMENT", - "nomCommune": "CHALLEMENT" + "codePostal": "62830", + "codeCommune": "62214", + "libelleAcheminement": "CARLY", + "nomCommune": "CARLY" }, { - "codePostal": "34410", - "codeCommune": "34299", - "libelleAcheminement": "SERIGNAN", - "nomCommune": "SERIGNAN" + "codePostal": "51600", + "codeCommune": "51486", + "libelleAcheminement": "ST HILAIRE LE GRAND", + "nomCommune": "ST HILAIRE LE GRAND" }, { - "codePostal": "20140", - "codeCommune": "2A276", - "libelleAcheminement": "SERRA DI FERRO", - "nomCommune": "SERRA DI FERRO" + "codePostal": "54470", + "codeCommune": "54166", + "libelleAcheminement": "DOMMARTIN LA CHAUSSEE", + "nomCommune": "DOMMARTIN LA CHAUSSEE" }, { - "codePostal": "47400", - "codeCommune": "47112", - "libelleAcheminement": "GRATELOUP ST GAYRAND", - "nomCommune": "GRATELOUP ST GAYRAND" + "codePostal": "62123", + "codeCommune": "62399", + "libelleAcheminement": "HABARCQ", + "nomCommune": "HABARCQ" }, { - "codePostal": "58000", - "codeCommune": "58051", - "libelleAcheminement": "CHALLUY", - "nomCommune": "CHALLUY" + "codePostal": "08190", + "codeCommune": "08024", + "libelleAcheminement": "ASFELD", + "nomCommune": "ASFELD" }, { - "codePostal": "34330", - "codeCommune": "34305", - "libelleAcheminement": "LE SOULIE", - "nomCommune": "LE SOULIE" + "codePostal": "62140", + "codeCommune": "62220", + "libelleAcheminement": "CAVRON ST MARTIN", + "nomCommune": "CAVRON ST MARTIN" }, { - "codePostal": "20140", - "codeCommune": "2A284", - "libelleAcheminement": "SOLLACARO", - "nomCommune": "SOLLACARO" + "codePostal": "51330", + "codeCommune": "51489", + "libelleAcheminement": "ST JEAN DEVANT POSSESSE", + "nomCommune": "ST JEAN DEVANT POSSESSE" }, { - "codePostal": "47250", - "codeCommune": "47115", - "libelleAcheminement": "GUERIN", - "nomCommune": "GUERIN" + "codePostal": "54200", + "codeCommune": "54174", + "libelleAcheminement": "ECROUVES", + "nomCommune": "ECROUVES" }, { - "codePostal": "58000", - "codeCommune": "58051", - "libelleAcheminement": "CHALLUY", - "nomCommune": "CHALLUY" + "codePostal": "62138", + "codeCommune": "62401", + "libelleAcheminement": "HAISNES", + "nomCommune": "HAISNES" }, { - "codePostal": "34230", - "codeCommune": "34313", - "libelleAcheminement": "TRESSAN", - "nomCommune": "TRESSAN" + "codePostal": "08150", + "codeCommune": "08026", + "libelleAcheminement": "AUBIGNY LES POTHEES", + "nomCommune": "AUBIGNY LES POTHEES" }, { - "codePostal": "20170", - "codeCommune": "2A300", - "libelleAcheminement": "SAN GAVINO DI CARBINI", - "nomCommune": "SAN GAVINO DI CARBINI" + "codePostal": "62127", + "codeCommune": "62221", + "libelleAcheminement": "CHELERS", + "nomCommune": "CHELERS" }, { - "codePostal": "47360", - "codeCommune": "47125", - "libelleAcheminement": "LACEPEDE", - "nomCommune": "LACEPEDE" + "codePostal": "51130", + "codeCommune": "51499", + "libelleAcheminement": "ST MARD LES ROUFFY", + "nomCommune": "ST MARD LES ROUFFY" }, { - "codePostal": "58400", - "codeCommune": "58056", - "libelleAcheminement": "CHAMPVOUX", - "nomCommune": "CHAMPVOUX" + "codePostal": "54110", + "codeCommune": "54195", + "libelleAcheminement": "FLAINVAL", + "nomCommune": "FLAINVAL" }, { - "codePostal": "34350", - "codeCommune": "34324", - "libelleAcheminement": "VALRAS PLAGE", - "nomCommune": "VALRAS PLAGE" + "codePostal": "62760", + "codeCommune": "62404", + "libelleAcheminement": "HALLOY", + "nomCommune": "HALLOY" }, { - "codePostal": "20143", - "codeCommune": "2A310", - "libelleAcheminement": "SANTA MARIA FIGANIELLA", - "nomCommune": "SANTA MARIA FIGANIELLA" + "codePostal": "08370", + "codeCommune": "08029", + "libelleAcheminement": "AUFLANCE", + "nomCommune": "AUFLANCE" }, { - "codePostal": "47190", - "codeCommune": "47129", - "libelleAcheminement": "LAGARRIGUE", - "nomCommune": "LAGARRIGUE" + "codePostal": "62380", + "codeCommune": "62229", + "libelleAcheminement": "CLETY", + "nomCommune": "CLETY" }, { - "codePostal": "58120", - "codeCommune": "58062", - "libelleAcheminement": "CHATEAU CHINON", - "nomCommune": "CHATEAU CHINON VILLE" + "codePostal": "51600", + "codeCommune": "51501", + "libelleAcheminement": "STE MARIE A PY", + "nomCommune": "STE MARIE A PY" }, { - "codePostal": "34220", - "codeCommune": "34326", - "libelleAcheminement": "VELIEUX", - "nomCommune": "VELIEUX" + "codePostal": "54630", + "codeCommune": "54196", + "libelleAcheminement": "FLAVIGNY SUR MOSELLE", + "nomCommune": "FLAVIGNY SUR MOSELLE" }, { - "codePostal": "20190", - "codeCommune": "2A312", - "libelleAcheminement": "SANTA MARIA SICHE", - "nomCommune": "SANTA MARIA SICHE" + "codePostal": "62175", + "codeCommune": "62425", + "libelleAcheminement": "HENDECOURT LES RANSART", + "nomCommune": "HENDECOURT LES RANSART" }, { - "codePostal": "47400", - "codeCommune": "47130", - "libelleAcheminement": "LAGRUERE", - "nomCommune": "LAGRUERE" + "codePostal": "08240", + "codeCommune": "08035", + "libelleAcheminement": "AUTRUCHE", + "nomCommune": "AUTRUCHE" }, { - "codePostal": "58350", - "codeCommune": "58064", - "libelleAcheminement": "CHATEAUNEUF VAL DE BARGIS", - "nomCommune": "CHATEAUNEUF VAL DE BARGIS" + "codePostal": "62142", + "codeCommune": "62230", + "libelleAcheminement": "COLEMBERT", + "nomCommune": "COLEMBERT" }, { - "codePostal": "34740", - "codeCommune": "34327", - "libelleAcheminement": "VENDARGUES", - "nomCommune": "VENDARGUES" + "codePostal": "51490", + "codeCommune": "51505", + "libelleAcheminement": "ST MASMES", + "nomCommune": "ST MASMES" }, { - "codePostal": "20167", - "codeCommune": "2A336", - "libelleAcheminement": "VALLE DI MEZZANA", - "nomCommune": "VALLE DI MEZZANA" + "codePostal": "54710", + "codeCommune": "54197", + "libelleAcheminement": "FLEVILLE DEVANT NANCY", + "nomCommune": "FLEVILLE DEVANT NANCY" }, { - "codePostal": "47310", - "codeCommune": "47133", - "libelleAcheminement": "LAMONTJOIE", - "nomCommune": "LAMONTJOIE" + "codePostal": "62142", + "codeCommune": "62429", + "libelleAcheminement": "HENNEVEUX", + "nomCommune": "HENNEVEUX" }, { - "codePostal": "58120", - "codeCommune": "58066", - "libelleAcheminement": "CHATIN", - "nomCommune": "CHATIN" + "codePostal": "08250", + "codeCommune": "08036", + "libelleAcheminement": "AUTRY", + "nomCommune": "AUTRY" }, { - "codePostal": "34230", - "codeCommune": "34328", - "libelleAcheminement": "VENDEMIAN", - "nomCommune": "VENDEMIAN" + "codePostal": "62270", + "codeCommune": "62234", + "libelleAcheminement": "CONCHY SUR CANCHE", + "nomCommune": "CONCHY SUR CANCHE" }, { - "codePostal": "20172", - "codeCommune": "2A345", - "libelleAcheminement": "VERO", - "nomCommune": "VERO" + "codePostal": "51120", + "codeCommune": "51511", + "libelleAcheminement": "ST QUENTIN LE VERGER", + "nomCommune": "ST QUENTIN LE VERGER" }, { - "codePostal": "47260", - "codeCommune": "47135", - "libelleAcheminement": "LAPARADE", - "nomCommune": "LAPARADE" + "codePostal": "54330", + "codeCommune": "54203", + "libelleAcheminement": "FORCELLES ST GORGON", + "nomCommune": "FORCELLES ST GORGON" }, { - "codePostal": "58400", - "codeCommune": "58067", - "libelleAcheminement": "CHAULGNES", - "nomCommune": "CHAULGNES" + "codePostal": "62130", + "codeCommune": "62435", + "libelleAcheminement": "HERLINCOURT", + "nomCommune": "HERLINCOURT" }, { - "codePostal": "34110", - "codeCommune": "34333", - "libelleAcheminement": "VIC LA GARDIOLE", - "nomCommune": "VIC LA GARDIOLE" + "codePostal": "08260", + "codeCommune": "08037", + "libelleAcheminement": "AUVILLERS LES FORGES", + "nomCommune": "AUVILLERS LES FORGES" }, { - "codePostal": "20212", - "codeCommune": "2B013", - "libelleAcheminement": "ALZI", - "nomCommune": "ALZI" + "codePostal": "62360", + "codeCommune": "62235", + "libelleAcheminement": "CONDETTE", + "nomCommune": "CONDETTE" }, { - "codePostal": "47600", - "codeCommune": "47139", - "libelleAcheminement": "LASSERRE", - "nomCommune": "LASSERRE" + "codePostal": "51600", + "codeCommune": "51517", + "libelleAcheminement": "ST SOUPLET SUR PY", + "nomCommune": "ST SOUPLET SUR PY" }, { - "codePostal": "58420", - "codeCommune": "58071", - "libelleAcheminement": "CHEVANNES CHANGY", - "nomCommune": "CHEVANNES CHANGY" + "codePostal": "54450", + "codeCommune": "54210", + "libelleAcheminement": "FREMENIL", + "nomCommune": "FREMENIL" }, { - "codePostal": "34600", - "codeCommune": "34335", - "libelleAcheminement": "VILLEMAGNE L ARGENTIERE", - "nomCommune": "VILLEMAGNE L ARGENTIERE" + "codePostal": "62550", + "codeCommune": "62450", + "libelleAcheminement": "HESTRUS", + "nomCommune": "HESTRUS" }, { - "codePostal": "20276", - "codeCommune": "2B023", - "libelleAcheminement": "ASCO", - "nomCommune": "ASCO" + "codePostal": "08300", + "codeCommune": "08038", + "libelleAcheminement": "AVANCON", + "nomCommune": "AVANCON" }, { - "codePostal": "47390", - "codeCommune": "47145", - "libelleAcheminement": "LAYRAC", - "nomCommune": "LAYRAC" + "codePostal": "62137", + "codeCommune": "62244", + "libelleAcheminement": "COULOGNE", + "nomCommune": "COULOGNE" }, { - "codePostal": "58500", - "codeCommune": "58079", - "libelleAcheminement": "CLAMECY", - "nomCommune": "CLAMECY" + "codePostal": "51290", + "codeCommune": "51520", + "libelleAcheminement": "ST UTIN", + "nomCommune": "ST UTIN" }, { - "codePostal": "35560", - "codeCommune": "35004", - "libelleAcheminement": "VAL COUESNON", - "nomCommune": "VAL COUESNON" + "codePostal": "54290", + "codeCommune": "54216", + "libelleAcheminement": "FROVILLE", + "nomCommune": "FROVILLE" }, { - "codePostal": "20620", - "codeCommune": "2B037", - "libelleAcheminement": "BIGUGLIA", - "nomCommune": "BIGUGLIA" + "codePostal": "62575", + "codeCommune": "62452", + "libelleAcheminement": "HEURINGHEM", + "nomCommune": "HEURINGHEM" }, { - "codePostal": "47120", - "codeCommune": "47147", - "libelleAcheminement": "LEVIGNAC DE GUYENNE", - "nomCommune": "LEVIGNAC DE GUYENNE" + "codePostal": "08000", + "codeCommune": "08040", + "libelleAcheminement": "LES AYVELLES", + "nomCommune": "LES AYVELLES" }, { - "codePostal": "58460", - "codeCommune": "58085", - "libelleAcheminement": "CORVOL L ORGUEILLEUX", - "nomCommune": "CORVOL L ORGUEILLEUX" + "codePostal": "62121", + "codeCommune": "62248", + "libelleAcheminement": "COURCELLES LE COMTE", + "nomCommune": "COURCELLES LE COMTE" }, { - "codePostal": "35560", - "codeCommune": "35004", - "libelleAcheminement": "VAL COUESNON", - "nomCommune": "VAL COUESNON" + "codePostal": "51170", + "codeCommune": "51523", + "libelleAcheminement": "SARCY", + "nomCommune": "SARCY" }, { - "codePostal": "20290", - "codeCommune": "2B042", - "libelleAcheminement": "BORGO", - "nomCommune": "BORGO" + "codePostal": "54115", + "codeCommune": "54220", + "libelleAcheminement": "GEMONVILLE", + "nomCommune": "GEMONVILLE" }, { - "codePostal": "47360", - "codeCommune": "47154", - "libelleAcheminement": "LUSIGNAN PETIT", - "nomCommune": "LUSIGNAN PETIT" + "codePostal": "62310", + "codeCommune": "62453", + "libelleAcheminement": "HEZECQUES", + "nomCommune": "HEZECQUES" }, { - "codePostal": "58660", - "codeCommune": "58088", - "libelleAcheminement": "COULANGES LES NEVERS", - "nomCommune": "COULANGES LES NEVERS" + "codePostal": "08400", + "codeCommune": "08045", + "libelleAcheminement": "BALLAY", + "nomCommune": "BALLAY" }, { - "codePostal": "35370", - "codeCommune": "35006", - "libelleAcheminement": "ARGENTRE DU PLESSIS", - "nomCommune": "ARGENTRE DU PLESSIS" + "codePostal": "62560", + "codeCommune": "62254", + "libelleAcheminement": "COYECQUES", + "nomCommune": "COYECQUES" }, { - "codePostal": "20235", - "codeCommune": "2B059", - "libelleAcheminement": "CANAVAGGIA", - "nomCommune": "CANAVAGGIA" + "codePostal": "51520", + "codeCommune": "51525", + "libelleAcheminement": "SARRY", + "nomCommune": "SARRY" }, { - "codePostal": "47200", - "codeCommune": "47157", - "libelleAcheminement": "MARMANDE", - "nomCommune": "MARMANDE" + "codePostal": "54170", + "codeCommune": "54223", + "libelleAcheminement": "GERMINY", + "nomCommune": "GERMINY" }, { - "codePostal": "58210", - "codeCommune": "58090", - "libelleAcheminement": "COURCELLES", - "nomCommune": "COURCELLES" + "codePostal": "62620", + "codeCommune": "62456", + "libelleAcheminement": "HOUCHIN", + "nomCommune": "HOUCHIN" }, { - "codePostal": "35120", - "codeCommune": "35009", - "libelleAcheminement": "BAGUER MORVAN", - "nomCommune": "BAGUER MORVAN" + "codePostal": "08140", + "codeCommune": "08053", + "libelleAcheminement": "BAZEILLES", + "nomCommune": "BAZEILLES" }, { - "codePostal": "20229", - "codeCommune": "2B063", - "libelleAcheminement": "CARCHETO BRUSTICO", - "nomCommune": "CARCHETO BRUSTICO" + "codePostal": "62810", + "codeCommune": "62266", + "libelleAcheminement": "DENIER", + "nomCommune": "DENIER" }, { - "codePostal": "47600", - "codeCommune": "47174", - "libelleAcheminement": "MONCRABEAU", - "nomCommune": "MONCRABEAU" + "codePostal": "51500", + "codeCommune": "51532", + "libelleAcheminement": "SERMIERS", + "nomCommune": "SERMIERS" }, { - "codePostal": "58230", - "codeCommune": "58106", - "libelleAcheminement": "DUN LES PLACES", - "nomCommune": "DUN LES PLACES" + "codePostal": "54112", + "codeCommune": "54226", + "libelleAcheminement": "GIBEAUMEIX", + "nomCommune": "GIBEAUMEIX" }, { - "codePostal": "35137", - "codeCommune": "35023", - "libelleAcheminement": "BEDEE", - "nomCommune": "BEDEE" + "codePostal": "62650", + "codeCommune": "62463", + "libelleAcheminement": "HUCQUELIERS", + "nomCommune": "HUCQUELIERS" }, { - "codePostal": "20221", - "codeCommune": "2B087", - "libelleAcheminement": "CERVIONE", - "nomCommune": "CERVIONE" + "codePostal": "08140", + "codeCommune": "08053", + "libelleAcheminement": "BAZEILLES", + "nomCommune": "BAZEILLES" }, { - "codePostal": "47150", - "codeCommune": "47175", - "libelleAcheminement": "MONFLANQUIN", - "nomCommune": "MONFLANQUIN" + "codePostal": "62460", + "codeCommune": "62269", + "libelleAcheminement": "DIEVAL", + "nomCommune": "DIEVAL" }, { - "codePostal": "58140", - "codeCommune": "58108", - "libelleAcheminement": "EMPURY", - "nomCommune": "EMPURY" + "codePostal": "51800", + "codeCommune": "51533", + "libelleAcheminement": "SERVON MELZICOURT", + "nomCommune": "SERVON MELZICOURT" }, { - "codePostal": "35340", - "codeCommune": "35031", - "libelleAcheminement": "LA BOUEXIERE", - "nomCommune": "LA BOUEXIERE" + "codePostal": "54780", + "codeCommune": "54227", + "libelleAcheminement": "GIRAUMONT", + "nomCommune": "GIRAUMONT" }, { - "codePostal": "20250", - "codeCommune": "2B096", - "libelleAcheminement": "CORTE", - "nomCommune": "CORTE" + "codePostal": "62130", + "codeCommune": "62467", + "libelleAcheminement": "HUMEROEUILLE", + "nomCommune": "HUMEROEUILLE" }, { - "codePostal": "47150", - "codeCommune": "47178", - "libelleAcheminement": "MONSEGUR", - "nomCommune": "MONSEGUR" + "codePostal": "08250", + "codeCommune": "08056", + "libelleAcheminement": "BEFFU ET LE MORTHOMME", + "nomCommune": "BEFFU ET LE MORTHOMME" }, { - "codePostal": "58410", - "codeCommune": "58109", - "libelleAcheminement": "ENTRAINS SUR NOHAIN", - "nomCommune": "ENTRAINS SUR NOHAIN" + "codePostal": "62830", + "codeCommune": "62273", + "libelleAcheminement": "DOUDEAUVILLE", + "nomCommune": "DOUDEAUVILLE" }, { - "codePostal": "35370", - "codeCommune": "35038", - "libelleAcheminement": "BREAL SOUS VITRE", - "nomCommune": "BREAL SOUS VITRE" + "codePostal": "51120", + "codeCommune": "51542", + "libelleAcheminement": "SOIZY AUX BOIS", + "nomCommune": "SOIZY AUX BOIS" }, { - "codePostal": "20237", - "codeCommune": "2B101", - "libelleAcheminement": "CROCE", - "nomCommune": "CROCE" + "codePostal": "54450", + "codeCommune": "54230", + "libelleAcheminement": "GOGNEY", + "nomCommune": "GOGNEY" }, { - "codePostal": "47380", - "codeCommune": "47182", - "libelleAcheminement": "MONTASTRUC", - "nomCommune": "MONTASTRUC" + "codePostal": "62770", + "codeCommune": "62470", + "libelleAcheminement": "INCOURT", + "nomCommune": "INCOURT" }, { - "codePostal": "58190", - "codeCommune": "58116", - "libelleAcheminement": "FLEZ CUZY", - "nomCommune": "FLEZ CUZY" + "codePostal": "08450", + "codeCommune": "08063", + "libelleAcheminement": "LA BESACE", + "nomCommune": "LA BESACE" }, { - "codePostal": "35370", - "codeCommune": "35042", - "libelleAcheminement": "BRIELLES", - "nomCommune": "BRIELLES" + "codePostal": "62870", + "codeCommune": "62275", + "libelleAcheminement": "DOURIEZ", + "nomCommune": "DOURIEZ" }, { - "codePostal": "20212", - "codeCommune": "2B105", - "libelleAcheminement": "ERBAJOLO", - "nomCommune": "ERBAJOLO" + "codePostal": "51600", + "codeCommune": "51547", + "libelleAcheminement": "SOMME TOURBE", + "nomCommune": "SOMME TOURBE" }, { - "codePostal": "47350", - "codeCommune": "47189", - "libelleAcheminement": "MONTIGNAC TOUPINERIE", - "nomCommune": "MONTIGNAC TOUPINERIE" + "codePostal": "54330", + "codeCommune": "54235", + "libelleAcheminement": "GOVILLER", + "nomCommune": "GOVILLER" }, { - "codePostal": "58600", - "codeCommune": "58121", - "libelleAcheminement": "GARCHIZY", - "nomCommune": "GARCHIZY" + "codePostal": "62330", + "codeCommune": "62473", + "libelleAcheminement": "ISBERGUES", + "nomCommune": "ISBERGUES" }, { - "codePostal": "35170", - "codeCommune": "35047", - "libelleAcheminement": "BRUZ", - "nomCommune": "BRUZ" + "codePostal": "08110", + "codeCommune": "08067", + "libelleAcheminement": "BLAGNY", + "nomCommune": "BLAGNY" }, { - "codePostal": "20234", - "codeCommune": "2B111", - "libelleAcheminement": "FELCE", - "nomCommune": "FELCE" + "codePostal": "62138", + "codeCommune": "62276", + "libelleAcheminement": "DOUVRIN", + "nomCommune": "DOUVRIN" }, { - "codePostal": "47360", - "codeCommune": "47190", - "libelleAcheminement": "MONTPEZAT", - "nomCommune": "MONTPEZAT" + "codePostal": "51600", + "codeCommune": "51553", + "libelleAcheminement": "SOUAIN PERTHES LES HURLUS", + "nomCommune": "SOUAIN PERTHES LES HURLUS" }, { - "codePostal": "58230", - "codeCommune": "58125", - "libelleAcheminement": "GIEN SUR CURE", - "nomCommune": "GIEN SUR CURE" + "codePostal": "54115", + "codeCommune": "54237", + "libelleAcheminement": "GRIMONVILLER", + "nomCommune": "GRIMONVILLER" }, { - "codePostal": "35510", - "codeCommune": "35051", - "libelleAcheminement": "CESSON SEVIGNE", - "nomCommune": "CESSON SEVIGNE" + "codePostal": "62690", + "codeCommune": "62477", + "libelleAcheminement": "IZEL LES HAMEAU", + "nomCommune": "IZEL LES HAMEAU" }, { - "codePostal": "20237", - "codeCommune": "2B113", - "libelleAcheminement": "FICAJA", - "nomCommune": "FICAJA" + "codePostal": "08250", + "codeCommune": "08074", + "libelleAcheminement": "BOUCONVILLE", + "nomCommune": "BOUCONVILLE" }, { - "codePostal": "47600", - "codeCommune": "47195", - "libelleAcheminement": "NERAC", - "nomCommune": "NERAC" + "codePostal": "62270", + "codeCommune": "62283", + "libelleAcheminement": "ECOIVRES", + "nomCommune": "ECOIVRES" }, { - "codePostal": "58470", - "codeCommune": "58126", - "libelleAcheminement": "GIMOUILLE", - "nomCommune": "GIMOUILLE" + "codePostal": "51320", + "codeCommune": "51555", + "libelleAcheminement": "SOUDE", + "nomCommune": "SOUDE" }, { - "codePostal": "35190", - "codeCommune": "35056", - "libelleAcheminement": "LA CHAPELLE AUX FILTZMEENS", - "nomCommune": "LA CHAPELLE AUX FILTZMEENS" + "codePostal": "54290", + "codeCommune": "54238", + "libelleAcheminement": "GRIPPORT", + "nomCommune": "GRIPPORT" }, { - "codePostal": "20600", - "codeCommune": "2B120", - "libelleAcheminement": "FURIANI", - "nomCommune": "FURIANI" + "codePostal": "62630", + "codeCommune": "62496", + "libelleAcheminement": "LEFAUX", + "nomCommune": "LEFAUX" }, { - "codePostal": "47440", - "codeCommune": "47198", - "libelleAcheminement": "PAILLOLES", - "nomCommune": "PAILLOLES" + "codePostal": "08410", + "codeCommune": "08076", + "libelleAcheminement": "BOULZICOURT", + "nomCommune": "BOULZICOURT" }, { - "codePostal": "58240", - "codeCommune": "58138", - "libelleAcheminement": "LANGERON", - "nomCommune": "LANGERON" + "codePostal": "62190", + "codeCommune": "62286", + "libelleAcheminement": "ECQUEDECQUES", + "nomCommune": "ECQUEDECQUES" }, { - "codePostal": "35330", - "codeCommune": "35057", - "libelleAcheminement": "LA CHAPELLE BOUEXIC", - "nomCommune": "LA CHAPELLE BOUEXIC" + "codePostal": "51300", + "codeCommune": "51557", + "libelleAcheminement": "SOULANGES", + "nomCommune": "SOULANGES" }, { - "codePostal": "20243", - "codeCommune": "2B135", - "libelleAcheminement": "ISOLACCIO DI FIUMORBO", - "nomCommune": "ISOLACCIO DI FIUMORBO" + "codePostal": "54113", + "codeCommune": "54242", + "libelleAcheminement": "GYE", + "nomCommune": "GYE" }, { - "codePostal": "47380", - "codeCommune": "47206", - "libelleAcheminement": "PINEL HAUTERIVE", - "nomCommune": "PINEL HAUTERIVE" + "codePostal": "62300", + "codeCommune": "62498", + "libelleAcheminement": "LENS", + "nomCommune": "LENS" }, { - "codePostal": "58370", - "codeCommune": "58140", - "libelleAcheminement": "LAROCHEMILLAY", - "nomCommune": "LAROCHEMILLAY" + "codePostal": "08260", + "codeCommune": "08094", + "libelleAcheminement": "CERNION", + "nomCommune": "CERNION" }, { - "codePostal": "35360", - "codeCommune": "35060", - "libelleAcheminement": "LA CHAPELLE DU LOU DU LAC", - "nomCommune": "LA CHAPELLE DU LOU DU LAC" + "codePostal": "62170", + "codeCommune": "62289", + "libelleAcheminement": "ECUIRES", + "nomCommune": "ECUIRES" }, { - "codePostal": "20224", - "codeCommune": "2B147", - "libelleAcheminement": "LOZZI", - "nomCommune": "LOZZI" + "codePostal": "51270", + "codeCommune": "51560", + "libelleAcheminement": "SUIZY LE FRANC", + "nomCommune": "SUIZY LE FRANC" }, { - "codePostal": "47380", - "codeCommune": "47206", - "libelleAcheminement": "PINEL HAUTERIVE", - "nomCommune": "PINEL HAUTERIVE" + "codePostal": "54110", + "codeCommune": "54250", + "libelleAcheminement": "HARAUCOURT", + "nomCommune": "HARAUCOURT" }, { - "codePostal": "58230", - "codeCommune": "58141", - "libelleAcheminement": "LAVAULT DE FRETOY", - "nomCommune": "LAVAULT DE FRETOY" + "codePostal": "62136", + "codeCommune": "62502", + "libelleAcheminement": "LESTREM", + "nomCommune": "LESTREM" }, { - "codePostal": "35360", - "codeCommune": "35060", - "libelleAcheminement": "LA CHAPELLE DU LOU DU LAC", - "nomCommune": "LA CHAPELLE DU LOU DU LAC" + "codePostal": "08160", + "codeCommune": "08096", + "libelleAcheminement": "CHALANDRY ELAIRE", + "nomCommune": "CHALANDRY ELAIRE" }, { - "codePostal": "20260", - "codeCommune": "2B150", - "libelleAcheminement": "LUMIO", - "nomCommune": "LUMIO" + "codePostal": "62650", + "codeCommune": "62296", + "libelleAcheminement": "ENQUIN SUR BAILLONS", + "nomCommune": "ENQUIN SUR BAILLONS" }, { - "codePostal": "47230", - "codeCommune": "47207", - "libelleAcheminement": "POMPIEY", - "nomCommune": "POMPIEY" + "codePostal": "51130", + "codeCommune": "51578", + "libelleAcheminement": "TRECON", + "nomCommune": "TRECON" }, { - "codePostal": "58700", - "codeCommune": "58147", - "libelleAcheminement": "LURCY LE BOURG", - "nomCommune": "LURCY LE BOURG" + "codePostal": "54450", + "codeCommune": "54251", + "libelleAcheminement": "HARBOUEY", + "nomCommune": "HARBOUEY" }, { - "codePostal": "35133", - "codeCommune": "35062", - "libelleAcheminement": "LA CHAPELLE JANSON", - "nomCommune": "LA CHAPELLE JANSON" + "codePostal": "62145", + "codeCommune": "62509", + "libelleAcheminement": "LIETTRES", + "nomCommune": "LIETTRES" }, { - "codePostal": "20228", - "codeCommune": "2B152", - "libelleAcheminement": "LURI", - "nomCommune": "LURI" + "codePostal": "08250", + "codeCommune": "08098", + "libelleAcheminement": "CHAMPIGNEULLE", + "nomCommune": "CHAMPIGNEULLE" }, { - "codePostal": "47130", - "codeCommune": "47210", - "libelleAcheminement": "PORT STE MARIE", - "nomCommune": "PORT STE MARIE" + "codePostal": "62156", + "codeCommune": "62319", + "libelleAcheminement": "ETERPIGNY", + "nomCommune": "ETERPIGNY" }, { - "codePostal": "58170", - "codeCommune": "58149", - "libelleAcheminement": "LUZY", - "nomCommune": "LUZY" + "codePostal": "51700", + "codeCommune": "51592", + "libelleAcheminement": "VANDIERES", + "nomCommune": "VANDIERES" }, { - "codePostal": "35590", - "codeCommune": "35065", - "libelleAcheminement": "LA CHAPELLE THOUARAULT", - "nomCommune": "LA CHAPELLE THOUARAULT" + "codePostal": "54310", + "codeCommune": "54263", + "libelleAcheminement": "HOMECOURT", + "nomCommune": "HOMECOURT" }, { - "codePostal": "20212", - "codeCommune": "2B157", - "libelleAcheminement": "MAZZOLA", - "nomCommune": "MAZZOLA" + "codePostal": "62127", + "codeCommune": "62514", + "libelleAcheminement": "LIGNY ST FLOCHEL", + "nomCommune": "LIGNY ST FLOCHEL" }, { - "codePostal": "47700", - "codeCommune": "47212", - "libelleAcheminement": "POUSSIGNAC", - "nomCommune": "POUSSIGNAC" + "codePostal": "08000", + "codeCommune": "08105", + "libelleAcheminement": "CHARLEVILLE MEZIERES", + "nomCommune": "CHARLEVILLE MEZIERES" }, { - "codePostal": "58140", - "codeCommune": "58157", - "libelleAcheminement": "MARIGNY L EGLISE", - "nomCommune": "MARIGNY L EGLISE" + "codePostal": "62770", + "codeCommune": "62335", + "libelleAcheminement": "FILLIEVRES", + "nomCommune": "FILLIEVRES" }, { - "codePostal": "35131", - "codeCommune": "35066", - "libelleAcheminement": "CHARTRES DE BRETAGNE", - "nomCommune": "CHARTRES DE BRETAGNE" + "codePostal": "51480", + "codeCommune": "51597", + "libelleAcheminement": "VAUCIENNES", + "nomCommune": "VAUCIENNES" }, { - "codePostal": "20287", - "codeCommune": "2B159", - "libelleAcheminement": "MERIA", - "nomCommune": "MERIA" + "codePostal": "54800", + "codeCommune": "54273", + "libelleAcheminement": "JARNY", + "nomCommune": "JARNY" }, { - "codePostal": "47170", - "codeCommune": "47221", - "libelleAcheminement": "REAUP LISSE", - "nomCommune": "REAUP LISSE" + "codePostal": "62270", + "codeCommune": "62518", + "libelleAcheminement": "LINZEUX", + "nomCommune": "LINZEUX" }, { - "codePostal": "58410", - "codeCommune": "58162", - "libelleAcheminement": "MENESTREAU", - "nomCommune": "MENESTREAU" + "codePostal": "08360", + "codeCommune": "08107", + "libelleAcheminement": "CHATEAU PORCIEN", + "nomCommune": "CHATEAU PORCIEN" }, { - "codePostal": "35250", - "codeCommune": "35067", - "libelleAcheminement": "CHASNE SUR ILLET", - "nomCommune": "CHASNE SUR ILLET" + "codePostal": "62134", + "codeCommune": "62342", + "libelleAcheminement": "FONTAINE LES BOULANS", + "nomCommune": "FONTAINE LES BOULANS" }, { - "codePostal": "20229", - "codeCommune": "2B164", - "libelleAcheminement": "MONACIA D OREZZA", - "nomCommune": "MONACIA D OREZZA" + "codePostal": "51380", + "codeCommune": "51599", + "libelleAcheminement": "VAUDEMANGE", + "nomCommune": "VAUDEMANGE" }, { - "codePostal": "47340", - "codeCommune": "47228", - "libelleAcheminement": "ST ANTOINE DE FICALBA", - "nomCommune": "ST ANTOINE DE FICALBA" + "codePostal": "54140", + "codeCommune": "54274", + "libelleAcheminement": "JARVILLE LA MALGRANGE", + "nomCommune": "JARVILLE LA MALGRANGE" }, { - "codePostal": "58120", - "codeCommune": "58177", - "libelleAcheminement": "MONTIGNY EN MORVAN", - "nomCommune": "MONTIGNY EN MORVAN" + "codePostal": "62400", + "codeCommune": "62520", + "libelleAcheminement": "LOCON", + "nomCommune": "LOCON" }, { - "codePostal": "35220", - "codeCommune": "35068", - "libelleAcheminement": "CHATEAUBOURG", - "nomCommune": "CHATEAUBOURG" + "codePostal": "08250", + "codeCommune": "08109", + "libelleAcheminement": "CHATEL CHEHERY", + "nomCommune": "CHATEL CHEHERY" }, { - "codePostal": "20214", - "codeCommune": "2B165", - "libelleAcheminement": "MONCALE", - "nomCommune": "MONCALE" + "codePostal": "62390", + "codeCommune": "62345", + "libelleAcheminement": "FONTAINE L ETALON", + "nomCommune": "FONTAINE L ETALON" }, { - "codePostal": "47120", - "codeCommune": "47236", - "libelleAcheminement": "STE COLOMBE DE DURAS", - "nomCommune": "STE COLOMBE DE DURAS" + "codePostal": "51300", + "codeCommune": "51601", + "libelleAcheminement": "VAVRAY LE GRAND", + "nomCommune": "VAVRAY LE GRAND" }, { - "codePostal": "58800", - "codeCommune": "58183", - "libelleAcheminement": "MOURON SUR YONNE", - "nomCommune": "MOURON SUR YONNE" + "codePostal": "54470", + "codeCommune": "54275", + "libelleAcheminement": "JAULNY", + "nomCommune": "JAULNY" }, { - "codePostal": "35220", - "codeCommune": "35068", - "libelleAcheminement": "CHATEAUBOURG", - "nomCommune": "CHATEAUBOURG" + "codePostal": "62990", + "codeCommune": "62522", + "libelleAcheminement": "LOISON SUR CREQUOISE", + "nomCommune": "LOISON SUR CREQUOISE" }, { - "codePostal": "20218", - "codeCommune": "2B169", - "libelleAcheminement": "MOROSAGLIA", - "nomCommune": "MOROSAGLIA" + "codePostal": "08150", + "codeCommune": "08110", + "libelleAcheminement": "LE CHATELET SUR SORMONNE", + "nomCommune": "LE CHATELET SUR SORMONNE" }, { - "codePostal": "47380", - "codeCommune": "47239", - "libelleAcheminement": "ST ETIENNE DE FOUGERES", - "nomCommune": "ST ETIENNE DE FOUGERES" + "codePostal": "62450", + "codeCommune": "62353", + "libelleAcheminement": "FREMICOURT", + "nomCommune": "FREMICOURT" }, { - "codePostal": "58700", - "codeCommune": "58186", - "libelleAcheminement": "MURLIN", - "nomCommune": "MURLIN" + "codePostal": "51300", + "codeCommune": "51602", + "libelleAcheminement": "VAVRAY LE PETIT", + "nomCommune": "VAVRAY LE PETIT" }, { - "codePostal": "35210", - "codeCommune": "35072", - "libelleAcheminement": "CHATILLON EN VENDELAIS", - "nomCommune": "CHATILLON EN VENDELAIS" + "codePostal": "54240", + "codeCommune": "54280", + "libelleAcheminement": "JOEUF", + "nomCommune": "JOEUF" }, { - "codePostal": "20238", - "codeCommune": "2B170", - "libelleAcheminement": "MORSIGLIA", - "nomCommune": "MORSIGLIA" + "codePostal": "62610", + "codeCommune": "62531", + "libelleAcheminement": "LOUCHES", + "nomCommune": "LOUCHES" }, { - "codePostal": "47500", - "codeCommune": "47242", - "libelleAcheminement": "ST FRONT SUR LEMANCE", - "nomCommune": "ST FRONT SUR LEMANCE" + "codePostal": "08220", + "codeCommune": "08113", + "libelleAcheminement": "CHAUMONT PORCIEN", + "nomCommune": "CHAUMONT PORCIEN" }, { - "codePostal": "58420", - "codeCommune": "58191", - "libelleAcheminement": "NEUILLY", - "nomCommune": "NEUILLY" + "codePostal": "62140", + "codeCommune": "62359", + "libelleAcheminement": "FRESSIN", + "nomCommune": "FRESSIN" }, { - "codePostal": "35590", - "codeCommune": "35081", - "libelleAcheminement": "CLAYES", - "nomCommune": "CLAYES" + "codePostal": "51140", + "codeCommune": "51604", + "libelleAcheminement": "VENTELAY", + "nomCommune": "VENTELAY" }, { - "codePostal": "20234", - "codeCommune": "2B179", - "libelleAcheminement": "NOVALE", - "nomCommune": "NOVALE" + "codePostal": "54380", + "codeCommune": "54294", + "libelleAcheminement": "LANDREMONT", + "nomCommune": "LANDREMONT" }, { - "codePostal": "47120", - "codeCommune": "47247", - "libelleAcheminement": "ST JEAN DE DURAS", - "nomCommune": "ST JEAN DE DURAS" + "codePostal": "62170", + "codeCommune": "62535", + "libelleAcheminement": "LA MADELAINE SOUS MONTREUIL", + "nomCommune": "LA MADELAINE SOUS MONTREUIL" }, { - "codePostal": "58500", - "codeCommune": "58198", - "libelleAcheminement": "OISY", - "nomCommune": "OISY" + "codePostal": "08450", + "codeCommune": "08115", + "libelleAcheminement": "CHEMERY CHEHERY", + "nomCommune": "CHEMERY CHEHERY" }, { - "codePostal": "35500", - "codeCommune": "35087", - "libelleAcheminement": "CORNILLE", - "nomCommune": "CORNILLE" + "codePostal": "62270", + "codeCommune": "62361", + "libelleAcheminement": "FREVENT", + "nomCommune": "FREVENT" }, { - "codePostal": "20217", - "codeCommune": "2B184", - "libelleAcheminement": "OLCANI", - "nomCommune": "OLCANI" + "codePostal": "51190", + "codeCommune": "51612", + "libelleAcheminement": "BLANCS COTEAUX", + "nomCommune": "BLANCS COTEAUX" }, { - "codePostal": "47130", - "codeCommune": "47249", - "libelleAcheminement": "ST LAURENT", - "nomCommune": "ST LAURENT" + "codePostal": "54570", + "codeCommune": "54298", + "libelleAcheminement": "LANEUVEVILLE DERRIERE FOUG", + "nomCommune": "LANEUVEVILLE DERRIERE FOUG" }, { - "codePostal": "58110", - "codeCommune": "58202", - "libelleAcheminement": "OUGNY", - "nomCommune": "OUGNY" + "codePostal": "62130", + "codeCommune": "62539", + "libelleAcheminement": "MAISNIL", + "nomCommune": "MAISNIL" }, { - "codePostal": "35440", - "codeCommune": "35094", - "libelleAcheminement": "DINGE", - "nomCommune": "DINGE" + "codePostal": "08350", + "codeCommune": "08119", + "libelleAcheminement": "CHEVEUGES", + "nomCommune": "CHEVEUGES" }, { - "codePostal": "20234", - "codeCommune": "2B194", - "libelleAcheminement": "ORTALE", - "nomCommune": "ORTALE" + "codePostal": "62130", + "codeCommune": "62367", + "libelleAcheminement": "GAUCHIN VERLOINGT", + "nomCommune": "GAUCHIN VERLOINGT" }, { - "codePostal": "47110", - "codeCommune": "47252", - "libelleAcheminement": "STE LIVRADE SUR LOT", - "nomCommune": "STE LIVRADE SUR LOT" + "codePostal": "51700", + "codeCommune": "51637", + "libelleAcheminement": "VILLERS SOUS CHATILLON", + "nomCommune": "VILLERS SOUS CHATILLON" }, { - "codePostal": "58130", - "codeCommune": "58212", - "libelleAcheminement": "POISEUX", - "nomCommune": "POISEUX" + "codePostal": "54410", + "codeCommune": "54300", + "libelleAcheminement": "LANEUVEVILLE DEVANT NANCY", + "nomCommune": "LANEUVEVILLE DEVANT NANCY" }, { - "codePostal": "35113", - "codeCommune": "35096", - "libelleAcheminement": "DOMAGNE", - "nomCommune": "DOMAGNE" + "codePostal": "62310", + "codeCommune": "62541", + "libelleAcheminement": "MAISONCELLE", + "nomCommune": "MAISONCELLE" }, { - "codePostal": "20253", - "codeCommune": "2B205", - "libelleAcheminement": "PATRIMONIO", - "nomCommune": "PATRIMONIO" + "codePostal": "08600", + "codeCommune": "08122", + "libelleAcheminement": "CHOOZ", + "nomCommune": "CHOOZ" }, { - "codePostal": "47270", - "codeCommune": "47255", - "libelleAcheminement": "ST MARTIN DE BEAUVILLE", - "nomCommune": "ST MARTIN DE BEAUVILLE" + "codePostal": "62390", + "codeCommune": "62370", + "libelleAcheminement": "GENNES IVERGNY", + "nomCommune": "GENNES IVERGNY" }, { - "codePostal": "58320", - "codeCommune": "58214", - "libelleAcheminement": "POUGUES LES EAUX", - "nomCommune": "POUGUES LES EAUX" + "codePostal": "51800", + "codeCommune": "51640", + "libelleAcheminement": "VILLE SUR TOURBE", + "nomCommune": "VILLE SUR TOURBE" }, { - "codePostal": "35390", - "codeCommune": "35098", - "libelleAcheminement": "LA DOMINELAIS", - "nomCommune": "LA DOMINELAIS" + "codePostal": "54150", + "codeCommune": "54302", + "libelleAcheminement": "LANTEFONTAINE", + "nomCommune": "LANTEFONTAINE" }, { - "codePostal": "20290", - "codeCommune": "2B206", - "libelleAcheminement": "PENTA ACQUATELLA", - "nomCommune": "PENTA ACQUATELLA" + "codePostal": "62140", + "codeCommune": "62550", + "libelleAcheminement": "MARCONNELLE", + "nomCommune": "MARCONNELLE" }, { - "codePostal": "47270", - "codeCommune": "47260", - "libelleAcheminement": "ST MAURIN", - "nomCommune": "ST MAURIN" + "codePostal": "08160", + "codeCommune": "08140", + "libelleAcheminement": "DOM LE MESNIL", + "nomCommune": "DOM LE MESNIL" }, { - "codePostal": "58140", - "codeCommune": "58216", - "libelleAcheminement": "POUQUES LORMES", - "nomCommune": "POUQUES LORMES" + "codePostal": "62112", + "codeCommune": "62383", + "libelleAcheminement": "GOUY SOUS BELLONNE", + "nomCommune": "GOUY SOUS BELLONNE" }, { - "codePostal": "35410", - "codeCommune": "35099", - "libelleAcheminement": "DOMLOUP", - "nomCommune": "DOMLOUP" + "codePostal": "51270", + "codeCommune": "51641", + "libelleAcheminement": "VILLEVENARD", + "nomCommune": "VILLEVENARD" }, { - "codePostal": "20230", - "codeCommune": "2B210", - "libelleAcheminement": "PERO CASEVECCHIE", - "nomCommune": "PERO CASEVECCHIE" + "codePostal": "54520", + "codeCommune": "54304", + "libelleAcheminement": "LAXOU", + "nomCommune": "LAXOU" }, { - "codePostal": "47290", - "codeCommune": "47265", - "libelleAcheminement": "ST PASTOUR", - "nomCommune": "ST PASTOUR" + "codePostal": "62161", + "codeCommune": "62557", + "libelleAcheminement": "MAROEUIL", + "nomCommune": "MAROEUIL" }, { - "codePostal": "58250", - "codeCommune": "58221", - "libelleAcheminement": "REMILLY", - "nomCommune": "REMILLY" + "codePostal": "08310", + "codeCommune": "08147", + "libelleAcheminement": "DRICOURT", + "nomCommune": "DRICOURT" }, { - "codePostal": "35340", - "codeCommune": "35107", - "libelleAcheminement": "ERCE PRES LIFFRE", - "nomCommune": "ERCE PRES LIFFRE" + "codePostal": "62450", + "codeCommune": "62387", + "libelleAcheminement": "GREVILLERS", + "nomCommune": "GREVILLERS" }, { - "codePostal": "20246", - "codeCommune": "2B230", - "libelleAcheminement": "PIEVE", - "nomCommune": "PIEVE" + "codePostal": "51240", + "codeCommune": "51648", + "libelleAcheminement": "VITRY LA VILLE", + "nomCommune": "VITRY LA VILLE" }, { - "codePostal": "47360", - "codeCommune": "47275", - "libelleAcheminement": "ST SALVY", - "nomCommune": "ST SALVY" + "codePostal": "54450", + "codeCommune": "54308", + "libelleAcheminement": "LEINTREY", + "nomCommune": "LEINTREY" }, { - "codePostal": "58110", - "codeCommune": "58223", - "libelleAcheminement": "ROUY", - "nomCommune": "ROUY" + "codePostal": "62127", + "codeCommune": "62558", + "libelleAcheminement": "MARQUAY", + "nomCommune": "MARQUAY" }, { - "codePostal": "35440", - "codeCommune": "35110", - "libelleAcheminement": "FEINS", - "nomCommune": "FEINS" + "codePostal": "08380", + "codeCommune": "08172", + "libelleAcheminement": "FLIGNY", + "nomCommune": "FLIGNY" }, { - "codePostal": "20218", - "codeCommune": "2B248", - "libelleAcheminement": "PRATO DI GIOVELLINA", - "nomCommune": "PRATO DI GIOVELLINA" + "codePostal": "62760", + "codeCommune": "62389", + "libelleAcheminement": "GRINCOURT LES PAS", + "nomCommune": "GRINCOURT LES PAS" }, { - "codePostal": "47420", - "codeCommune": "47286", - "libelleAcheminement": "SAUMEJAN", - "nomCommune": "SAUMEJAN" + "codePostal": "51130", + "codeCommune": "51655", + "libelleAcheminement": "VOUZY", + "nomCommune": "VOUZY" }, { - "codePostal": "58330", - "codeCommune": "58240", - "libelleAcheminement": "ST FRANCHY", - "nomCommune": "ST FRANCHY" + "codePostal": "54700", + "codeCommune": "54312", + "libelleAcheminement": "LESMENILS", + "nomCommune": "LESMENILS" }, { - "codePostal": "35640", - "codeCommune": "35114", - "libelleAcheminement": "FORGES LA FORET", - "nomCommune": "FORGES LA FORET" + "codePostal": "62450", + "codeCommune": "62561", + "libelleAcheminement": "MARTINPUICH", + "nomCommune": "MARTINPUICH" }, { - "codePostal": "20237", - "codeCommune": "2B255", - "libelleAcheminement": "QUERCITELLO", - "nomCommune": "QUERCITELLO" + "codePostal": "08160", + "codeCommune": "08173", + "libelleAcheminement": "FLIZE", + "nomCommune": "FLIZE" }, { - "codePostal": "47340", - "codeCommune": "47288", - "libelleAcheminement": "SAUVAGNAS", - "nomCommune": "SAUVAGNAS" + "codePostal": "62600", + "codeCommune": "62390", + "libelleAcheminement": "GROFFLIERS", + "nomCommune": "GROFFLIERS" }, { - "codePostal": "58210", - "codeCommune": "58242", - "libelleAcheminement": "ST GERMAIN DES BOIS", - "nomCommune": "ST GERMAIN DES BOIS" + "codePostal": "52700", + "codeCommune": "52003", + "libelleAcheminement": "AILLIANVILLE", + "nomCommune": "AILLIANVILLE" }, { - "codePostal": "35111", - "codeCommune": "35116", - "libelleAcheminement": "LA FRESNAIS", - "nomCommune": "LA FRESNAIS" + "codePostal": "54150", + "codeCommune": "54326", + "libelleAcheminement": "LUBEY", + "nomCommune": "LUBEY" }, { - "codePostal": "20248", - "codeCommune": "2B261", - "libelleAcheminement": "ROGLIANO", - "nomCommune": "ROGLIANO" + "codePostal": "62680", + "codeCommune": "62570", + "libelleAcheminement": "MERICOURT", + "nomCommune": "MERICOURT" }, { - "codePostal": "47150", - "codeCommune": "47295", - "libelleAcheminement": "SAVIGNAC SUR LEYZE", - "nomCommune": "SAVIGNAC SUR LEYZE" + "codePostal": "08600", + "codeCommune": "08183", + "libelleAcheminement": "FROMELENNES", + "nomCommune": "FROMELENNES" }, { - "codePostal": "58330", - "codeCommune": "58253", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "62140", + "codeCommune": "62395", + "libelleAcheminement": "GUIGNY", + "nomCommune": "GUIGNY" }, { - "codePostal": "35390", - "codeCommune": "35124", - "libelleAcheminement": "GRAND FOUGERAY", - "nomCommune": "GRAND FOUGERAY" + "codePostal": "52120", + "codeCommune": "52005", + "libelleAcheminement": "AIZANVILLE", + "nomCommune": "AIZANVILLE" }, { - "codePostal": "20239", - "codeCommune": "2B265", - "libelleAcheminement": "RUTALI", - "nomCommune": "RUTALI" + "codePostal": "54150", + "codeCommune": "54334", + "libelleAcheminement": "MAIRY MAINVILLE", + "nomCommune": "MAIRY MAINVILLE" }, { - "codePostal": "47410", - "codeCommune": "47296", - "libelleAcheminement": "SEGALAS", - "nomCommune": "SEGALAS" + "codePostal": "62170", + "codeCommune": "62585", + "libelleAcheminement": "MONTCAVREL", + "nomCommune": "MONTCAVREL" }, { - "codePostal": "58210", - "codeCommune": "58263", - "libelleAcheminement": "ST PIERRE DU MONT", - "nomCommune": "ST PIERRE DU MONT" + "codePostal": "08600", + "codeCommune": "08190", + "libelleAcheminement": "GIVET", + "nomCommune": "GIVET" }, { - "codePostal": "35590", - "codeCommune": "35131", - "libelleAcheminement": "L HERMITAGE", - "nomCommune": "L HERMITAGE" + "codePostal": "62340", + "codeCommune": "62397", + "libelleAcheminement": "GUINES", + "nomCommune": "GUINES" }, { - "codePostal": "20218", - "codeCommune": "2B267", - "libelleAcheminement": "SALICETO", - "nomCommune": "SALICETO" + "codePostal": "52210", + "codeCommune": "52022", + "libelleAcheminement": "AUBEPIERRE SUR AUBE", + "nomCommune": "AUBEPIERRE SUR AUBE" }, { - "codePostal": "47360", - "codeCommune": "47297", - "libelleAcheminement": "SEMBAS", - "nomCommune": "SEMBAS" + "codePostal": "54550", + "codeCommune": "54336", + "libelleAcheminement": "MAIZIERES", + "nomCommune": "MAIZIERES" }, { - "codePostal": "58330", - "codeCommune": "58267", - "libelleAcheminement": "ST SAULGE", - "nomCommune": "ST SAULGE" + "codePostal": "62140", + "codeCommune": "62596", + "libelleAcheminement": "MOURIEZ", + "nomCommune": "MOURIEZ" }, { - "codePostal": "35630", - "codeCommune": "35134", - "libelleAcheminement": "LES IFFS", - "nomCommune": "LES IFFS" + "codePostal": "08700", + "codeCommune": "08199", + "libelleAcheminement": "LA GRANDVILLE", + "nomCommune": "LA GRANDVILLE" }, { - "codePostal": "20212", - "codeCommune": "2B275", - "libelleAcheminement": "SERMANO", - "nomCommune": "SERMANO" + "codePostal": "62440", + "codeCommune": "62413", + "libelleAcheminement": "HARNES", + "nomCommune": "HARNES" }, { - "codePostal": "47170", - "codeCommune": "47302", - "libelleAcheminement": "SOS", - "nomCommune": "SOS" + "codePostal": "52190", + "codeCommune": "52027", + "libelleAcheminement": "AUJEURRES", + "nomCommune": "AUJEURRES" }, { - "codePostal": "58190", - "codeCommune": "58271", - "libelleAcheminement": "SAIZY", - "nomCommune": "SAIZY" + "codePostal": "54560", + "codeCommune": "54337", + "libelleAcheminement": "MALAVILLERS", + "nomCommune": "MALAVILLERS" }, { - "codePostal": "35133", - "codeCommune": "35138", - "libelleAcheminement": "LAIGNELET", - "nomCommune": "LAIGNELET" + "codePostal": "62890", + "codeCommune": "62598", + "libelleAcheminement": "MUNCQ NIEURLET", + "nomCommune": "MUNCQ NIEURLET" }, { - "codePostal": "20246", - "codeCommune": "2B287", - "libelleAcheminement": "SORIO", - "nomCommune": "SORIO" + "codePostal": "08430", + "codeCommune": "08203", + "libelleAcheminement": "GUIGNICOURT SUR VENCE", + "nomCommune": "GUIGNICOURT SUR VENCE" }, { - "codePostal": "47120", - "codeCommune": "47303", - "libelleAcheminement": "SOUMENSAC", - "nomCommune": "SOUMENSAC" + "codePostal": "62156", + "codeCommune": "62414", + "libelleAcheminement": "HAUCOURT", + "nomCommune": "HAUCOURT" }, { - "codePostal": "58000", - "codeCommune": "58278", - "libelleAcheminement": "SERMOISE SUR LOIRE", - "nomCommune": "SERMOISE SUR LOIRE" + "codePostal": "52140", + "codeCommune": "52033", + "libelleAcheminement": "AVRECOURT", + "nomCommune": "AVRECOURT" }, { - "codePostal": "35360", - "codeCommune": "35143", - "libelleAcheminement": "LANDUJAN", - "nomCommune": "LANDUJAN" + "codePostal": "54210", + "codeCommune": "54345", + "libelleAcheminement": "MANONCOURT EN VERMOIS", + "nomCommune": "MANONCOURT EN VERMOIS" }, { - "codePostal": "20250", - "codeCommune": "2B289", - "libelleAcheminement": "SOVERIA", - "nomCommune": "SOVERIA" + "codePostal": "62290", + "codeCommune": "62617", + "libelleAcheminement": "NOEUX LES MINES", + "nomCommune": "NOEUX LES MINES" }, { - "codePostal": "47230", - "codeCommune": "47308", - "libelleAcheminement": "THOUARS SUR GARONNE", - "nomCommune": "THOUARS SUR GARONNE" + "codePostal": "08800", + "codeCommune": "08217", + "libelleAcheminement": "HAULME", + "nomCommune": "HAULME" }, { - "codePostal": "58250", - "codeCommune": "58289", - "libelleAcheminement": "TERNANT", - "nomCommune": "TERNANT" + "codePostal": "62850", + "codeCommune": "62419", + "libelleAcheminement": "HAUT LOQUIN", + "nomCommune": "HAUT LOQUIN" }, { - "codePostal": "35550", - "codeCommune": "35155", - "libelleAcheminement": "LOHEAC", - "nomCommune": "LOHEAC" + "codePostal": "52110", + "codeCommune": "52039", + "libelleAcheminement": "BAUDRECOURT", + "nomCommune": "BAUDRECOURT" }, { - "codePostal": "20212", - "codeCommune": "2B292", - "libelleAcheminement": "SANT ANDREA DI BOZIO", - "nomCommune": "SANT ANDREA DI BOZIO" + "codePostal": "54330", + "codeCommune": "54354", + "libelleAcheminement": "MARTHEMONT", + "nomCommune": "MARTHEMONT" }, { - "codePostal": "47380", - "codeCommune": "47309", - "libelleAcheminement": "TOMBEBOEUF", - "nomCommune": "TOMBEBOEUF" + "codePostal": "62580", + "codeCommune": "62639", + "libelleAcheminement": "OPPY", + "nomCommune": "OPPY" }, { - "codePostal": "58250", - "codeCommune": "58290", - "libelleAcheminement": "THAIX", - "nomCommune": "THAIX" + "codePostal": "08800", + "codeCommune": "08218", + "libelleAcheminement": "LES HAUTES RIVIERES", + "nomCommune": "LES HAUTES RIVIERES" }, { - "codePostal": "35680", - "codeCommune": "35161", - "libelleAcheminement": "LOUVIGNE DE BAIS", - "nomCommune": "LOUVIGNE DE BAIS" + "codePostal": "62130", + "codeCommune": "62436", + "libelleAcheminement": "HERLIN LE SEC", + "nomCommune": "HERLIN LE SEC" }, { - "codePostal": "20220", - "codeCommune": "2B296", - "libelleAcheminement": "SANT ANTONINO", - "nomCommune": "SANT ANTONINO" + "codePostal": "52500", + "codeCommune": "52043", + "libelleAcheminement": "BELMONT", + "nomCommune": "BELMONT" }, { - "codePostal": "47140", - "codeCommune": "47315", - "libelleAcheminement": "TRENTELS", - "nomCommune": "TRENTELS" + "codePostal": "54830", + "codeCommune": "54356", + "libelleAcheminement": "MATTEXEY", + "nomCommune": "MATTEXEY" }, { - "codePostal": "58260", - "codeCommune": "58291", - "libelleAcheminement": "THIANGES", - "nomCommune": "THIANGES" + "codePostal": "62130", + "codeCommune": "62641", + "libelleAcheminement": "OSTREVILLE", + "nomCommune": "OSTREVILLE" }, { - "codePostal": "35420", - "codeCommune": "35162", - "libelleAcheminement": "LOUVIGNE DU DESERT", - "nomCommune": "LOUVIGNE DU DESERT" + "codePostal": "08170", + "codeCommune": "08222", + "libelleAcheminement": "HAYBES", + "nomCommune": "HAYBES" }, { - "codePostal": "20213", - "codeCommune": "2B297", - "libelleAcheminement": "SAN DAMIANO", - "nomCommune": "SAN DAMIANO" + "codePostal": "62150", + "codeCommune": "62441", + "libelleAcheminement": "HERMIN", + "nomCommune": "HERMIN" }, { - "codePostal": "47260", - "codeCommune": "47317", - "libelleAcheminement": "VERTEUIL D AGENAIS", - "nomCommune": "VERTEUIL D AGENAIS" + "codePostal": "52110", + "codeCommune": "52047", + "libelleAcheminement": "BEURVILLE", + "nomCommune": "BEURVILLE" }, { - "codePostal": "58150", - "codeCommune": "58295", - "libelleAcheminement": "TRACY SUR LOIRE", - "nomCommune": "TRACY SUR LOIRE" + "codePostal": "54320", + "codeCommune": "54357", + "libelleAcheminement": "MAXEVILLE", + "nomCommune": "MAXEVILLE" }, { - "codePostal": "35220", - "codeCommune": "35166", - "libelleAcheminement": "MARPIRE", - "nomCommune": "MARPIRE" + "codePostal": "62860", + "codeCommune": "62646", + "libelleAcheminement": "PALLUEL", + "nomCommune": "PALLUEL" }, { - "codePostal": "20230", - "codeCommune": "2B313", - "libelleAcheminement": "SAN NICOLAO", - "nomCommune": "SAN NICOLAO" + "codePostal": "08320", + "codeCommune": "08226", + "libelleAcheminement": "HIERGES", + "nomCommune": "HIERGES" }, { - "codePostal": "47380", - "codeCommune": "47319", - "libelleAcheminement": "VILLEBRAMAR", - "nomCommune": "VILLEBRAMAR" + "codePostal": "62360", + "codeCommune": "62446", + "libelleAcheminement": "HESDIGNEUL LES BOULOGNE", + "nomCommune": "HESDIGNEUL LES BOULOGNE" }, { - "codePostal": "58640", - "codeCommune": "58303", - "libelleAcheminement": "VARENNES VAUZELLES", - "nomCommune": "VARENNES VAUZELLES" + "codePostal": "52340", + "codeCommune": "52050", + "libelleAcheminement": "BIESLES", + "nomCommune": "BIESLES" }, { - "codePostal": "35380", - "codeCommune": "35169", - "libelleAcheminement": "MAXENT", - "nomCommune": "MAXENT" + "codePostal": "54280", + "codeCommune": "54358", + "libelleAcheminement": "MAZERULLES", + "nomCommune": "MAZERULLES" }, { - "codePostal": "20217", - "codeCommune": "2B314", - "libelleAcheminement": "SANTO PIETRO DI TENDA", - "nomCommune": "SANTO PIETRO DI TENDA" + "codePostal": "62770", + "codeCommune": "62647", + "libelleAcheminement": "LE PARCQ", + "nomCommune": "LE PARCQ" }, { - "codePostal": "48000", - "codeCommune": "48018", - "libelleAcheminement": "BARJAC", - "nomCommune": "BARJAC" + "codePostal": "08190", + "codeCommune": "08229", + "libelleAcheminement": "HOUDILCOURT", + "nomCommune": "HOUDILCOURT" }, { - "codePostal": "58210", - "codeCommune": "58304", - "libelleAcheminement": "VARZY", - "nomCommune": "VARZY" + "codePostal": "62140", + "codeCommune": "62447", + "libelleAcheminement": "HESDIN", + "nomCommune": "HESDIN" }, { - "codePostal": "35270", - "codeCommune": "35172", - "libelleAcheminement": "MEILLAC", - "nomCommune": "MEILLAC" + "codePostal": "52500", + "codeCommune": "52051", + "libelleAcheminement": "BIZE", + "nomCommune": "BIZE" }, { - "codePostal": "20250", - "codeCommune": "2B315", - "libelleAcheminement": "SANTO PIETRO DI VENACO", - "nomCommune": "SANTO PIETRO DI VENACO" + "codePostal": "54360", + "codeCommune": "54359", + "libelleAcheminement": "MEHONCOURT", + "nomCommune": "MEHONCOURT" }, { - "codePostal": "48400", - "codeCommune": "48019", - "libelleAcheminement": "BARRE DES CEVENNES", - "nomCommune": "BARRE DES CEVENNES" + "codePostal": "62231", + "codeCommune": "62654", + "libelleAcheminement": "PEUPLINGUES", + "nomCommune": "PEUPLINGUES" }, { - "codePostal": "58270", - "codeCommune": "58311", - "libelleAcheminement": "VILLE LANGY", - "nomCommune": "VILLE LANGY" + "codePostal": "08430", + "codeCommune": "08236", + "libelleAcheminement": "JANDUN", + "nomCommune": "JANDUN" }, { - "codePostal": "35520", - "codeCommune": "35173", - "libelleAcheminement": "MELESSE", - "nomCommune": "MELESSE" + "codePostal": "62130", + "codeCommune": "62468", + "libelleAcheminement": "HUMIERES", + "nomCommune": "HUMIERES" }, { - "codePostal": "20220", - "codeCommune": "2B316", - "libelleAcheminement": "SANTA REPARATA DI BALAGNA", - "nomCommune": "SANTA REPARATA DI BALAGNA" + "codePostal": "52330", + "codeCommune": "52053", + "libelleAcheminement": "BLAISY", + "nomCommune": "BLAISY" }, { - "codePostal": "48400", - "codeCommune": "48020", - "libelleAcheminement": "BASSURELS", - "nomCommune": "BASSURELS" + "codePostal": "54560", + "codeCommune": "54363", + "libelleAcheminement": "MERCY LE HAUT", + "nomCommune": "MERCY LE HAUT" }, { - "codePostal": "59491", - "codeCommune": "59009", - "libelleAcheminement": "VILLENEUVE D ASCQ", - "nomCommune": "VILLENEUVE D ASCQ" + "codePostal": "62570", + "codeCommune": "62656", + "libelleAcheminement": "PIHEM", + "nomCommune": "PIHEM" }, { - "codePostal": "35330", - "codeCommune": "35175", - "libelleAcheminement": "MERNEL", - "nomCommune": "MERNEL" + "codePostal": "08700", + "codeCommune": "08237", + "libelleAcheminement": "JOIGNY SUR MEUSE", + "nomCommune": "JOIGNY SUR MEUSE" }, { - "codePostal": "20230", - "codeCommune": "2B318", - "libelleAcheminement": "TAGLIO ISOLACCIO", - "nomCommune": "TAGLIO ISOLACCIO" + "codePostal": "62129", + "codeCommune": "62471", + "libelleAcheminement": "BELLINGHEM", + "nomCommune": "BELLINGHEM" }, { - "codePostal": "48400", - "codeCommune": "48028", - "libelleAcheminement": "LES BONDONS", - "nomCommune": "LES BONDONS" + "codePostal": "52120", + "codeCommune": "52056", + "libelleAcheminement": "BLESSONVILLE", + "nomCommune": "BLESSONVILLE" }, { - "codePostal": "59493", - "codeCommune": "59009", - "libelleAcheminement": "VILLENEUVE D ASCQ", - "nomCommune": "VILLENEUVE D ASCQ" + "codePostal": "54540", + "codeCommune": "54368", + "libelleAcheminement": "MIGNEVILLE", + "nomCommune": "MIGNEVILLE" }, { - "codePostal": "35480", - "codeCommune": "35176", - "libelleAcheminement": "GUIPRY MESSAC", - "nomCommune": "GUIPRY MESSAC" + "codePostal": "62126", + "codeCommune": "62658", + "libelleAcheminement": "PITTEFAUX", + "nomCommune": "PITTEFAUX" }, { - "codePostal": "20270", - "codeCommune": "2B320", - "libelleAcheminement": "TALLONE", - "nomCommune": "TALLONE" + "codePostal": "08130", + "codeCommune": "08238", + "libelleAcheminement": "JONVAL", + "nomCommune": "JONVAL" }, { - "codePostal": "48000", - "codeCommune": "48030", - "libelleAcheminement": "BRENOUX", - "nomCommune": "BRENOUX" + "codePostal": "62170", + "codeCommune": "62472", + "libelleAcheminement": "INXENT", + "nomCommune": "INXENT" }, { - "codePostal": "59186", - "codeCommune": "59012", - "libelleAcheminement": "ANOR", - "nomCommune": "ANOR" + "codePostal": "52110", + "codeCommune": "52057", + "libelleAcheminement": "BLUMERAY", + "nomCommune": "BLUMERAY" }, { - "codePostal": "35480", - "codeCommune": "35176", - "libelleAcheminement": "GUIPRY MESSAC", - "nomCommune": "GUIPRY MESSAC" + "codePostal": "54580", + "codeCommune": "54371", + "libelleAcheminement": "MOINEVILLE", + "nomCommune": "MOINEVILLE" }, { - "codePostal": "20232", - "codeCommune": "2B333", - "libelleAcheminement": "VALLECALLE", - "nomCommune": "VALLECALLE" + "codePostal": "62140", + "codeCommune": "62661", + "libelleAcheminement": "BOUIN PLUMOISON", + "nomCommune": "BOUIN PLUMOISON" }, { - "codePostal": "48310", - "codeCommune": "48031", - "libelleAcheminement": "BRION", - "nomCommune": "BRION" + "codePostal": "08270", + "codeCommune": "08240", + "libelleAcheminement": "JUSTINE HERBIGNY", + "nomCommune": "JUSTINE HERBIGNY" }, { - "codePostal": "59380", - "codeCommune": "59016", - "libelleAcheminement": "ARMBOUTS CAPPEL", - "nomCommune": "ARMBOUTS CAPPEL" + "codePostal": "62330", + "codeCommune": "62473", + "libelleAcheminement": "ISBERGUES", + "nomCommune": "ISBERGUES" }, { - "codePostal": "35370", - "codeCommune": "35183", - "libelleAcheminement": "MONDEVERT", - "nomCommune": "MONDEVERT" + "codePostal": "52400", + "codeCommune": "52060", + "libelleAcheminement": "BOURBONNE LES BAINS", + "nomCommune": "BOURBONNE LES BAINS" }, { - "codePostal": "20230", - "codeCommune": "2B340", - "libelleAcheminement": "VELONE ORNETO", - "nomCommune": "VELONE ORNETO" + "codePostal": "54280", + "codeCommune": "54374", + "libelleAcheminement": "MONCEL SUR SEILLE", + "nomCommune": "MONCEL SUR SEILLE" }, { - "codePostal": "48400", - "codeCommune": "48036", - "libelleAcheminement": "CASSAGNAS", - "nomCommune": "CASSAGNAS" + "codePostal": "62390", + "codeCommune": "62665", + "libelleAcheminement": "LE PONCHEL", + "nomCommune": "LE PONCHEL" }, { - "codePostal": "59600", - "codeCommune": "59021", - "libelleAcheminement": "ASSEVENT", - "nomCommune": "ASSEVENT" + "codePostal": "08150", + "codeCommune": "08251", + "libelleAcheminement": "LEPRON LES VALLEES", + "nomCommune": "LEPRON LES VALLEES" }, { - "codePostal": "35210", - "codeCommune": "35185", - "libelleAcheminement": "MONTAUTOUR", - "nomCommune": "MONTAUTOUR" + "codePostal": "62810", + "codeCommune": "62475", + "libelleAcheminement": "IVERGNY", + "nomCommune": "IVERGNY" }, { - "codePostal": "20240", - "codeCommune": "2B342", - "libelleAcheminement": "VENTISERI", - "nomCommune": "VENTISERI" + "codePostal": "52150", + "codeCommune": "52063", + "libelleAcheminement": "BOURG STE MARIE", + "nomCommune": "BOURG STE MARIE" }, { - "codePostal": "48230", - "codeCommune": "48039", - "libelleAcheminement": "CHANAC", - "nomCommune": "CHANAC" + "codePostal": "54540", + "codeCommune": "54377", + "libelleAcheminement": "MONTIGNY", + "nomCommune": "MONTIGNY" }, { - "codePostal": "59950", - "codeCommune": "59028", - "libelleAcheminement": "AUBY", - "nomCommune": "AUBY" + "codePostal": "62880", + "codeCommune": "62666", + "libelleAcheminement": "PONT A VENDIN", + "nomCommune": "PONT A VENDIN" }, { - "codePostal": "35160", - "codeCommune": "35188", - "libelleAcheminement": "MONTFORT SUR MEU", - "nomCommune": "MONTFORT SUR MEU" + "codePostal": "08290", + "codeCommune": "08254", + "libelleAcheminement": "LIART", + "nomCommune": "LIART" }, { - "codePostal": "20242", - "codeCommune": "2B347", - "libelleAcheminement": "VEZZANI", - "nomCommune": "VEZZANI" + "codePostal": "62850", + "codeCommune": "62478", + "libelleAcheminement": "JOURNY", + "nomCommune": "JOURNY" }, { - "codePostal": "48170", - "codeCommune": "48043", - "libelleAcheminement": "CHATEAUNEUF DE RANDON", - "nomCommune": "CHATEAUNEUF DE RANDON" + "codePostal": "52150", + "codeCommune": "52064", + "libelleAcheminement": "BOURMONT ENTRE MEUSE ET MOUZON", + "nomCommune": "BOURMONT ENTRE MEUSE ET MOUZON" }, { - "codePostal": "59710", - "codeCommune": "59034", - "libelleAcheminement": "AVELIN", - "nomCommune": "AVELIN" + "codePostal": "54870", + "codeCommune": "54378", + "libelleAcheminement": "MONTIGNY SUR CHIERS", + "nomCommune": "MONTIGNY SUR CHIERS" }, { - "codePostal": "35210", - "codeCommune": "35192", - "libelleAcheminement": "MONTREUIL DES LANDES", - "nomCommune": "MONTREUIL DES LANDES" + "codePostal": "62116", + "codeCommune": "62672", + "libelleAcheminement": "PUISIEUX", + "nomCommune": "PUISIEUX" }, { - "codePostal": "20290", - "codeCommune": "2B355", - "libelleAcheminement": "VOLPAJOLA", - "nomCommune": "VOLPAJOLA" + "codePostal": "08110", + "codeCommune": "08255", + "libelleAcheminement": "LINAY", + "nomCommune": "LINAY" }, { - "codePostal": "48170", - "codeCommune": "48045", - "libelleAcheminement": "CHAUDEYRAC", - "nomCommune": "CHAUDEYRAC" + "codePostal": "62122", + "codeCommune": "62479", + "libelleAcheminement": "LABEUVRIERE", + "nomCommune": "LABEUVRIERE" }, { - "codePostal": "59440", - "codeCommune": "59035", - "libelleAcheminement": "AVESNELLES", - "nomCommune": "AVESNELLES" + "codePostal": "52240", + "codeCommune": "52074", + "libelleAcheminement": "BREUVANNES EN BASSIGNY", + "nomCommune": "BREUVANNES EN BASSIGNY" }, { - "codePostal": "35470", - "codeCommune": "35202", - "libelleAcheminement": "LA NOE BLANCHE", - "nomCommune": "LA NOE BLANCHE" + "codePostal": "54113", + "codeCommune": "54380", + "libelleAcheminement": "MONT LE VIGNOBLE", + "nomCommune": "MONT LE VIGNOBLE" }, { - "codePostal": "20243", - "codeCommune": "2B365", - "libelleAcheminement": "SAN GAVINO DI FIUMORBO", - "nomCommune": "SAN GAVINO DI FIUMORBO" + "codePostal": "62500", + "codeCommune": "62674", + "libelleAcheminement": "QUELMES", + "nomCommune": "QUELMES" }, { - "codePostal": "48400", - "codeCommune": "48050", - "libelleAcheminement": "BEDOUES COCURES", - "nomCommune": "BEDOUES COCURES" + "codePostal": "08400", + "codeCommune": "08259", + "libelleAcheminement": "LONGWE", + "nomCommune": "LONGWE" }, { - "codePostal": "59270", - "codeCommune": "59043", - "libelleAcheminement": "BAILLEUL", - "nomCommune": "BAILLEUL" + "codePostal": "62140", + "codeCommune": "62481", + "libelleAcheminement": "LABROYE", + "nomCommune": "LABROYE" }, { - "codePostal": "35137", - "codeCommune": "35203", - "libelleAcheminement": "LA NOUAYE", - "nomCommune": "LA NOUAYE" + "codePostal": "52240", + "codeCommune": "52074", + "libelleAcheminement": "BREUVANNES EN BASSIGNY", + "nomCommune": "BREUVANNES EN BASSIGNY" }, { - "codePostal": "30350", - "codeCommune": "30002", - "libelleAcheminement": "AIGREMONT", - "nomCommune": "AIGREMONT" + "codePostal": "54920", + "codeCommune": "54385", + "libelleAcheminement": "MORFONTAINE", + "nomCommune": "MORFONTAINE" }, { - "codePostal": "48400", - "codeCommune": "48050", - "libelleAcheminement": "BEDOUES COCURES", - "nomCommune": "BEDOUES COCURES" + "codePostal": "62380", + "codeCommune": "62675", + "libelleAcheminement": "QUERCAMPS", + "nomCommune": "QUERCAMPS" }, { - "codePostal": "59266", - "codeCommune": "59047", - "libelleAcheminement": "BANTEUX", - "nomCommune": "BANTEUX" + "codePostal": "08370", + "codeCommune": "08269", + "libelleAcheminement": "MALANDRY", + "nomCommune": "MALANDRY" }, { - "codePostal": "35560", - "codeCommune": "35205", - "libelleAcheminement": "NOYAL SOUS BAZOUGES", - "nomCommune": "NOYAL SOUS BAZOUGES" + "codePostal": "62810", + "codeCommune": "62490", + "libelleAcheminement": "LATTRE ST QUENTIN", + "nomCommune": "LATTRE ST QUENTIN" }, { - "codePostal": "30770", - "codeCommune": "30017", - "libelleAcheminement": "ARRIGAS", - "nomCommune": "ARRIGAS" + "codePostal": "52700", + "codeCommune": "52075", + "libelleAcheminement": "BRIAUCOURT", + "nomCommune": "BRIAUCOURT" }, { - "codePostal": "48400", - "codeCommune": "48061", - "libelleAcheminement": "FLORAC TROIS RIVIERES", - "nomCommune": "FLORAC TROIS RIVIERES" + "codePostal": "54700", + "codeCommune": "54387", + "libelleAcheminement": "MORVILLE SUR SEILLE", + "nomCommune": "MORVILLE SUR SEILLE" }, { - "codePostal": "59221", - "codeCommune": "59052", - "libelleAcheminement": "BAUVIN", - "nomCommune": "BAUVIN" + "codePostal": "62120", + "codeCommune": "62676", + "libelleAcheminement": "QUERNES", + "nomCommune": "QUERNES" }, { - "codePostal": "35230", - "codeCommune": "35206", - "libelleAcheminement": "NOYAL CHATILLON SUR SEICHE", - "nomCommune": "NOYAL CHATILLON SUR SEICHE" + "codePostal": "08460", + "codeCommune": "08272", + "libelleAcheminement": "MARANWEZ", + "nomCommune": "MARANWEZ" }, { - "codePostal": "30450", - "codeCommune": "30022", - "libelleAcheminement": "AUJAC", - "nomCommune": "AUJAC" + "codePostal": "62124", + "codeCommune": "62493", + "libelleAcheminement": "LEBUCQUIERE", + "nomCommune": "LEBUCQUIERE" }, { - "codePostal": "48150", - "codeCommune": "48074", - "libelleAcheminement": "HURES LA PARADE", - "nomCommune": "HURES LA PARADE" + "codePostal": "52120", + "codeCommune": "52076", + "libelleAcheminement": "BRICON", + "nomCommune": "BRICON" }, { - "codePostal": "59670", - "codeCommune": "59054", - "libelleAcheminement": "BAVINCHOVE", - "nomCommune": "BAVINCHOVE" + "codePostal": "54800", + "codeCommune": "54389", + "libelleAcheminement": "MOUAVILLE", + "nomCommune": "MOUAVILLE" }, { - "codePostal": "35230", - "codeCommune": "35208", - "libelleAcheminement": "ORGERES", - "nomCommune": "ORGERES" + "codePostal": "62173", + "codeCommune": "62689", + "libelleAcheminement": "RANSART", + "nomCommune": "RANSART" }, { - "codePostal": "30770", - "codeCommune": "30025", - "libelleAcheminement": "AUMESSAS", - "nomCommune": "AUMESSAS" + "codePostal": "08110", + "codeCommune": "08281", + "libelleAcheminement": "MATTON ET CLEMENCY", + "nomCommune": "MATTON ET CLEMENCY" }, { - "codePostal": "48300", - "codeCommune": "48080", - "libelleAcheminement": "LANGOGNE", - "nomCommune": "LANGOGNE" + "codePostal": "62124", + "codeCommune": "62494", + "libelleAcheminement": "LECHELLE", + "nomCommune": "LECHELLE" }, { - "codePostal": "59330", - "codeCommune": "59058", - "libelleAcheminement": "BEAUFORT", - "nomCommune": "BEAUFORT" + "codePostal": "52130", + "codeCommune": "52079", + "libelleAcheminement": "BROUSSEVAL", + "nomCommune": "BROUSSEVAL" }, { - "codePostal": "35320", - "codeCommune": "35212", - "libelleAcheminement": "PANCE", - "nomCommune": "PANCE" + "codePostal": "54700", + "codeCommune": "54390", + "libelleAcheminement": "MOUSSON", + "nomCommune": "MOUSSON" }, { - "codePostal": "30200", - "codeCommune": "30028", - "libelleAcheminement": "BAGNOLS SUR CEZE", - "nomCommune": "BAGNOLS SUR CEZE" + "codePostal": "62150", + "codeCommune": "62693", + "libelleAcheminement": "REBREUVE RANCHICOURT", + "nomCommune": "REBREUVE RANCHICOURT" }, { - "codePostal": "48000", - "codeCommune": "48081", - "libelleAcheminement": "LANUEJOLS", - "nomCommune": "LANUEJOLS" + "codePostal": "08370", + "codeCommune": "08293", + "libelleAcheminement": "MOIRY", + "nomCommune": "MOIRY" }, { - "codePostal": "59570", - "codeCommune": "59070", - "libelleAcheminement": "BERMERIES", - "nomCommune": "BERMERIES" + "codePostal": "62790", + "codeCommune": "62497", + "libelleAcheminement": "LEFOREST", + "nomCommune": "LEFOREST" }, { - "codePostal": "35150", - "codeCommune": "35220", - "libelleAcheminement": "PIRE CHANCE", - "nomCommune": "PIRE CHANCE" + "codePostal": "52240", + "codeCommune": "52085", + "libelleAcheminement": "BUXIERES LES CLEFMONT", + "nomCommune": "BUXIERES LES CLEFMONT" }, { - "codePostal": "30700", - "codeCommune": "30030", - "libelleAcheminement": "BARON", - "nomCommune": "BARON" + "codePostal": "54660", + "codeCommune": "54391", + "libelleAcheminement": "MOUTIERS", + "nomCommune": "MOUTIERS" }, { - "codePostal": "48100", - "codeCommune": "48087", - "libelleAcheminement": "PRINSUEJOLS MALBOUZON", - "nomCommune": "PRINSUEJOLS MALBOUZON" + "codePostal": "62150", + "codeCommune": "62693", + "libelleAcheminement": "REBREUVE RANCHICOURT", + "nomCommune": "REBREUVE RANCHICOURT" }, { - "codePostal": "59380", - "codeCommune": "59083", - "libelleAcheminement": "BISSEZEELE", - "nomCommune": "BISSEZEELE" + "codePostal": "08430", + "codeCommune": "08295", + "libelleAcheminement": "MONDIGNY", + "nomCommune": "MONDIGNY" }, { - "codePostal": "35610", - "codeCommune": "35222", - "libelleAcheminement": "PLEINE FOUGERES", - "nomCommune": "PLEINE FOUGERES" + "codePostal": "62250", + "codeCommune": "62505", + "libelleAcheminement": "LEULINGHEN BERNES", + "nomCommune": "LEULINGHEN BERNES" }, { - "codePostal": "30330", - "codeCommune": "30031", - "libelleAcheminement": "LA BASTIDE D ENGRAS", - "nomCommune": "LA BASTIDE D ENGRAS" + "codePostal": "52160", + "codeCommune": "52094", + "libelleAcheminement": "VALS DES TILLES", + "nomCommune": "VALS DES TILLES" }, { - "codePostal": "48500", - "codeCommune": "48094", - "libelleAcheminement": "MASSEGROS CAUSSES GORGES", - "nomCommune": "MASSEGROS CAUSSES GORGES" + "codePostal": "54540", + "codeCommune": "54398", + "libelleAcheminement": "NEUVILLER LES BADONVILLER", + "nomCommune": "NEUVILLER LES BADONVILLER" }, { - "codePostal": "59268", - "codeCommune": "59085", - "libelleAcheminement": "BLECOURT", - "nomCommune": "BLECOURT" + "codePostal": "62380", + "codeCommune": "62702", + "libelleAcheminement": "REMILLY WIRQUIN", + "nomCommune": "REMILLY WIRQUIN" }, { - "codePostal": "35320", - "codeCommune": "35231", - "libelleAcheminement": "POLIGNE", - "nomCommune": "POLIGNE" + "codePostal": "08250", + "codeCommune": "08296", + "libelleAcheminement": "MONTCHEUTIN", + "nomCommune": "MONTCHEUTIN" }, { - "codePostal": "30120", - "codeCommune": "30038", - "libelleAcheminement": "BEZ ET ESPARON", - "nomCommune": "BEZ ET ESPARON" + "codePostal": "62850", + "codeCommune": "62506", + "libelleAcheminement": "LICQUES", + "nomCommune": "LICQUES" }, { - "codePostal": "48500", - "codeCommune": "48094", - "libelleAcheminement": "MASSEGROS CAUSSES GORGES", - "nomCommune": "MASSEGROS CAUSSES GORGES" + "codePostal": "52700", + "codeCommune": "52097", + "libelleAcheminement": "CHAMBRONCOURT", + "nomCommune": "CHAMBRONCOURT" }, { - "codePostal": "59330", - "codeCommune": "59103", - "libelleAcheminement": "BOUSSIERES SUR SAMBRE", - "nomCommune": "BOUSSIERES SUR SAMBRE" + "codePostal": "54150", + "codeCommune": "54402", + "libelleAcheminement": "NORROY LE SEC", + "nomCommune": "NORROY LE SEC" }, { - "codePostal": "35290", - "codeCommune": "35234", - "libelleAcheminement": "QUEDILLAC", - "nomCommune": "QUEDILLAC" + "codePostal": "62560", + "codeCommune": "62704", + "libelleAcheminement": "RENTY", + "nomCommune": "RENTY" }, { - "codePostal": "30770", - "codeCommune": "30040", - "libelleAcheminement": "BLANDAS", - "nomCommune": "BLANDAS" + "codePostal": "08800", + "codeCommune": "08302", + "libelleAcheminement": "MONTHERME", + "nomCommune": "MONTHERME" }, { - "codePostal": "48500", - "codeCommune": "48094", - "libelleAcheminement": "MASSEGROS CAUSSES GORGES", - "nomCommune": "MASSEGROS CAUSSES GORGES" + "codePostal": "62810", + "codeCommune": "62507", + "libelleAcheminement": "LIENCOURT", + "nomCommune": "LIENCOURT" }, { - "codePostal": "59830", - "codeCommune": "59106", - "libelleAcheminement": "BOUVINES", - "nomCommune": "BOUVINES" + "codePostal": "52150", + "codeCommune": "52101", + "libelleAcheminement": "CHAMPIGNEULLES EN BASSIGNY", + "nomCommune": "CHAMPIGNEULLES EN BASSIGNY" }, { - "codePostal": "35780", - "codeCommune": "35241", - "libelleAcheminement": "LA RICHARDAIS", - "nomCommune": "LA RICHARDAIS" + "codePostal": "54890", + "codeCommune": "54410", + "libelleAcheminement": "ONVILLE", + "nomCommune": "ONVILLE" }, { - "codePostal": "30260", - "codeCommune": "30050", - "libelleAcheminement": "BRAGASSARGUES", - "nomCommune": "BRAGASSARGUES" + "codePostal": "62450", + "codeCommune": "62708", + "libelleAcheminement": "RIENCOURT LES BAPAUME", + "nomCommune": "RIENCOURT LES BAPAUME" }, { - "codePostal": "48100", - "codeCommune": "48099", - "libelleAcheminement": "BOURGS SUR COLAGNE", - "nomCommune": "BOURGS SUR COLAGNE" + "codePostal": "08170", + "codeCommune": "08304", + "libelleAcheminement": "MONTIGNY SUR MEUSE", + "nomCommune": "MONTIGNY SUR MEUSE" }, { - "codePostal": "59470", - "codeCommune": "59111", - "libelleAcheminement": "BROXEELE", - "nomCommune": "BROXEELE" + "codePostal": "62219", + "codeCommune": "62525", + "libelleAcheminement": "LONGUENESSE", + "nomCommune": "LONGUENESSE" }, { - "codePostal": "35490", - "codeCommune": "35244", - "libelleAcheminement": "ROMAZY", - "nomCommune": "ROMAZY" + "codePostal": "52400", + "codeCommune": "52103", + "libelleAcheminement": "CHAMPIGNY SOUS VARENNES", + "nomCommune": "CHAMPIGNY SOUS VARENNES" }, { - "codePostal": "30260", - "codeCommune": "30054", - "libelleAcheminement": "BROUZET LES QUISSAC", - "nomCommune": "BROUZET LES QUISSAC" + "codePostal": "54530", + "codeCommune": "54415", + "libelleAcheminement": "PAGNY SUR MOSELLE", + "nomCommune": "PAGNY SUR MOSELLE" }, { - "codePostal": "48100", - "codeCommune": "48107", - "libelleAcheminement": "PALHERS", - "nomCommune": "PALHERS" + "codePostal": "62610", + "codeCommune": "62716", + "libelleAcheminement": "RODELINGHEM", + "nomCommune": "RODELINGHEM" }, { - "codePostal": "59137", - "codeCommune": "59118", - "libelleAcheminement": "BUSIGNY", - "nomCommune": "BUSIGNY" + "codePostal": "08310", + "codeCommune": "08309", + "libelleAcheminement": "MONT ST REMY", + "nomCommune": "MONT ST REMY" }, { - "codePostal": "35610", - "codeCommune": "35247", - "libelleAcheminement": "ROZ SUR COUESNON", - "nomCommune": "ROZ SUR COUESNON" + "codePostal": "62810", + "codeCommune": "62544", + "libelleAcheminement": "MANIN", + "nomCommune": "MANIN" }, { - "codePostal": "30260", - "codeCommune": "30069", - "libelleAcheminement": "CARNAS", - "nomCommune": "CARNAS" + "codePostal": "52360", + "codeCommune": "52105", + "libelleAcheminement": "CHANGEY", + "nomCommune": "CHANGEY" }, { - "codePostal": "48600", - "codeCommune": "48108", - "libelleAcheminement": "LA PANOUSE", - "nomCommune": "LA PANOUSE" + "codePostal": "54330", + "codeCommune": "54417", + "libelleAcheminement": "PAREY ST CESAIRE", + "nomCommune": "PAREY ST CESAIRE" }, { - "codePostal": "59190", - "codeCommune": "59120", - "libelleAcheminement": "CAESTRE", - "nomCommune": "CAESTRE" + "codePostal": "62310", + "codeCommune": "62726", + "libelleAcheminement": "RUISSEAUVILLE", + "nomCommune": "RUISSEAUVILLE" }, { - "codePostal": "35610", - "codeCommune": "35248", - "libelleAcheminement": "SAINS", - "nomCommune": "SAINS" + "codePostal": "08210", + "codeCommune": "08311", + "libelleAcheminement": "MOUZON", + "nomCommune": "MOUZON" }, { - "codePostal": "30750", - "codeCommune": "30074", - "libelleAcheminement": "CAUSSE BEGON", - "nomCommune": "CAUSSE BEGON" + "codePostal": "62120", + "codeCommune": "62564", + "libelleAcheminement": "MAZINGHEM", + "nomCommune": "MAZINGHEM" }, { - "codePostal": "48220", - "codeCommune": "48116", - "libelleAcheminement": "PONT DE MONTVERT SUD MONT LOZERE", - "nomCommune": "PONT DE MONTVERT SUD MONT LOZERE" + "codePostal": "52260", + "codeCommune": "52106", + "libelleAcheminement": "CHANOY", + "nomCommune": "CHANOY" }, { - "codePostal": "59161", - "codeCommune": "59121", - "libelleAcheminement": "CAGNONCLES", - "nomCommune": "CAGNONCLES" + "codePostal": "54370", + "codeCommune": "54418", + "libelleAcheminement": "PARROY", + "nomCommune": "PARROY" }, { - "codePostal": "35230", - "codeCommune": "35250", - "libelleAcheminement": "ST ARMEL", - "nomCommune": "ST ARMEL" + "codePostal": "62114", + "codeCommune": "62737", + "libelleAcheminement": "SAINS EN GOHELLE", + "nomCommune": "SAINS EN GOHELLE" }, { - "codePostal": "30190", - "codeCommune": "30086", - "libelleAcheminement": "COLLORGUES", - "nomCommune": "COLLORGUES" + "codePostal": "08150", + "codeCommune": "08312", + "libelleAcheminement": "MURTIN ET BOGNY", + "nomCommune": "MURTIN ET BOGNY" }, { - "codePostal": "48220", - "codeCommune": "48116", - "libelleAcheminement": "PONT DE MONTVERT SUD MONT LOZERE", - "nomCommune": "PONT DE MONTVERT SUD MONT LOZERE" + "codePostal": "62240", + "codeCommune": "62566", + "libelleAcheminement": "MENNEVILLE", + "nomCommune": "MENNEVILLE" }, { - "codePostal": "59400", - "codeCommune": "59122", - "libelleAcheminement": "CAMBRAI", - "nomCommune": "CAMBRAI" + "codePostal": "52700", + "codeCommune": "52107", + "libelleAcheminement": "CHANTRAINES", + "nomCommune": "CHANTRAINES" }, { - "codePostal": "35460", - "codeCommune": "35257", - "libelleAcheminement": "MAEN ROCH", - "nomCommune": "MAEN ROCH" + "codePostal": "54490", + "codeCommune": "54425", + "libelleAcheminement": "PIENNES", + "nomCommune": "PIENNES" }, { - "codePostal": "30630", - "codeCommune": "30096", - "libelleAcheminement": "CORNILLON", - "nomCommune": "CORNILLON" + "codePostal": "62990", + "codeCommune": "62745", + "libelleAcheminement": "ST DENOEUX", + "nomCommune": "ST DENOEUX" }, { - "codePostal": "48000", - "codeCommune": "48127", - "libelleAcheminement": "MONTS DE RANDON", - "nomCommune": "MONTS DE RANDON" + "codePostal": "08300", + "codeCommune": "08314", + "libelleAcheminement": "NEUFLIZE", + "nomCommune": "NEUFLIZE" }, { - "codePostal": "59169", - "codeCommune": "59126", - "libelleAcheminement": "CANTIN", - "nomCommune": "CANTIN" + "codePostal": "62124", + "codeCommune": "62572", + "libelleAcheminement": "METZ EN COUTURE", + "nomCommune": "METZ EN COUTURE" }, { - "codePostal": "35140", - "codeCommune": "35261", - "libelleAcheminement": "ST CHRISTOPHE DE VALAINS", - "nomCommune": "ST CHRISTOPHE DE VALAINS" + "codePostal": "52110", + "codeCommune": "52109", + "libelleAcheminement": "CHARMES EN L ANGLE", + "nomCommune": "CHARMES EN L ANGLE" }, { - "codePostal": "30260", - "codeCommune": "30098", - "libelleAcheminement": "CRESPIAN", - "nomCommune": "CRESPIAN" + "codePostal": "54116", + "codeCommune": "54434", + "libelleAcheminement": "PRAYE", + "nomCommune": "PRAYE" }, { - "codePostal": "48210", - "codeCommune": "48141", - "libelleAcheminement": "MAS ST CHELY", - "nomCommune": "MAS ST CHELY" + "codePostal": "62360", + "codeCommune": "62746", + "libelleAcheminement": "PONT DE BRIQUES ST ETIENNE", + "nomCommune": "ST ETIENNE AU MONT" }, { - "codePostal": "59160", - "codeCommune": "59128", - "libelleAcheminement": "CAPINGHEM", - "nomCommune": "CAPINGHEM" + "codePostal": "08700", + "codeCommune": "08316", + "libelleAcheminement": "NEUFMANIL", + "nomCommune": "NEUFMANIL" }, { - "codePostal": "35134", - "codeCommune": "35262", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "62410", + "codeCommune": "62573", + "libelleAcheminement": "MEURCHIN", + "nomCommune": "MEURCHIN" }, { - "codePostal": "30360", - "codeCommune": "30100", - "libelleAcheminement": "CRUVIERS LASCOURS", - "nomCommune": "CRUVIERS LASCOURS" + "codePostal": "52120", + "codeCommune": "52114", + "libelleAcheminement": "CHATEAUVILLAIN", + "nomCommune": "CHATEAUVILLAIN" }, { - "codePostal": "48330", - "codeCommune": "48148", - "libelleAcheminement": "ST ETIENNE VALLEE FRANCAISE", - "nomCommune": "ST ETIENNE VALLEE FRANCAISE" + "codePostal": "54530", + "codeCommune": "54435", + "libelleAcheminement": "PRENY", + "nomCommune": "PRENY" }, { - "codePostal": "59244", - "codeCommune": "59134", - "libelleAcheminement": "CARTIGNIES", - "nomCommune": "CARTIGNIES" + "codePostal": "62650", + "codeCommune": "62762", + "libelleAcheminement": "ST MICHEL SOUS BOIS", + "nomCommune": "ST MICHEL SOUS BOIS" }, { - "codePostal": "35190", - "codeCommune": "35265", - "libelleAcheminement": "ST DOMINEUC", - "nomCommune": "ST DOMINEUC" + "codePostal": "08450", + "codeCommune": "08317", + "libelleAcheminement": "LA NEUVILLE A MAIRE", + "nomCommune": "LA NEUVILLE A MAIRE" }, { - "codePostal": "30390", - "codeCommune": "30103", - "libelleAcheminement": "DOMAZAN", - "nomCommune": "DOMAZAN" + "codePostal": "62690", + "codeCommune": "62574", + "libelleAcheminement": "MINGOVAL", + "nomCommune": "MINGOVAL" }, { - "codePostal": "48400", - "codeCommune": "48166", - "libelleAcheminement": "CANS ET CEVENNES", - "nomCommune": "CANS ET CEVENNES" + "codePostal": "52360", + "codeCommune": "52116", + "libelleAcheminement": "CHATENAY VAUDIN", + "nomCommune": "CHATENAY VAUDIN" }, { - "codePostal": "59930", - "codeCommune": "59143", - "libelleAcheminement": "LA CHAPELLE D ARMENTIERES", - "nomCommune": "LA CHAPELLE D ARMENTIERES" + "codePostal": "54800", + "codeCommune": "54440", + "libelleAcheminement": "PUXE", + "nomCommune": "PUXE" }, { - "codePostal": "35140", - "codeCommune": "35282", - "libelleAcheminement": "RIVES DU COUESNON", - "nomCommune": "RIVES DU COUESNON" + "codePostal": "62130", + "codeCommune": "62763", + "libelleAcheminement": "ST MICHEL SUR TERNOISE", + "nomCommune": "ST MICHEL SUR TERNOISE" }, { - "codePostal": "30250", - "codeCommune": "30114", - "libelleAcheminement": "FONTANES", - "nomCommune": "FONTANES" + "codePostal": "08380", + "codeCommune": "08318", + "libelleAcheminement": "LA NEUVILLE AUX JOUTES", + "nomCommune": "LA NEUVILLE AUX JOUTES" }, { - "codePostal": "48310", - "codeCommune": "48167", - "libelleAcheminement": "ST LAURENT DE VEYRES", - "nomCommune": "ST LAURENT DE VEYRES" + "codePostal": "62134", + "codeCommune": "62581", + "libelleAcheminement": "MONCHY CAYEUX", + "nomCommune": "MONCHY CAYEUX" }, { - "codePostal": "59680", - "codeCommune": "59151", - "libelleAcheminement": "COLLERET", - "nomCommune": "COLLERET" + "codePostal": "52300", + "codeCommune": "52118", + "libelleAcheminement": "CHATONRUPT SOMMERMONT", + "nomCommune": "CHATONRUPT SOMMERMONT" }, { - "codePostal": "35140", - "codeCommune": "35282", - "libelleAcheminement": "RIVES DU COUESNON", - "nomCommune": "RIVES DU COUESNON" + "codePostal": "54610", + "codeCommune": "54444", + "libelleAcheminement": "RAUCOURT", + "nomCommune": "RAUCOURT" }, { - "codePostal": "30580", - "codeCommune": "30115", - "libelleAcheminement": "FONTARECHES", - "nomCommune": "FONTARECHES" + "codePostal": "62223", + "codeCommune": "62764", + "libelleAcheminement": "ST NICOLAS", + "nomCommune": "ST NICOLAS" }, { - "codePostal": "48100", - "codeCommune": "48168", - "libelleAcheminement": "ST LEGER DE PEYRE", - "nomCommune": "ST LEGER DE PEYRE" + "codePostal": "08240", + "codeCommune": "08326", + "libelleAcheminement": "NOUART", + "nomCommune": "NOUART" }, { - "codePostal": "59163", - "codeCommune": "59153", - "libelleAcheminement": "CONDE SUR L ESCAUT", - "nomCommune": "CONDE SUR L ESCAUT" + "codePostal": "62124", + "codeCommune": "62591", + "libelleAcheminement": "MORCHIES", + "nomCommune": "MORCHIES" }, { - "codePostal": "35400", - "codeCommune": "35288", - "libelleAcheminement": "ST MALO", - "nomCommune": "ST MALO" + "codePostal": "52300", + "codeCommune": "52118", + "libelleAcheminement": "CHATONRUPT SOMMERMONT", + "nomCommune": "CHATONRUPT SOMMERMONT" }, { - "codePostal": "30210", - "codeCommune": "30116", - "libelleAcheminement": "FOURNES", - "nomCommune": "FOURNES" + "codePostal": "54370", + "codeCommune": "54446", + "libelleAcheminement": "RECHICOURT LA PETITE", + "nomCommune": "RECHICOURT LA PETITE" }, { - "codePostal": "48310", - "codeCommune": "48190", - "libelleAcheminement": "TERMES", - "nomCommune": "TERMES" + "codePostal": "62231", + "codeCommune": "62774", + "libelleAcheminement": "SANGATTE", + "nomCommune": "SANGATTE" }, { - "codePostal": "59258", - "codeCommune": "59161", - "libelleAcheminement": "CREVECOEUR SUR L ESCAUT", - "nomCommune": "CREVECOEUR SUR L ESCAUT" + "codePostal": "08700", + "codeCommune": "08328", + "libelleAcheminement": "NOUZONVILLE", + "nomCommune": "NOUZONVILLE" }, { - "codePostal": "35460", - "codeCommune": "35292", - "libelleAcheminement": "ST MARC LE BLANC", - "nomCommune": "ST MARC LE BLANC" + "codePostal": "62910", + "codeCommune": "62595", + "libelleAcheminement": "MOULLE", + "nomCommune": "MOULLE" }, { - "codePostal": "30160", - "codeCommune": "30120", - "libelleAcheminement": "GAGNIERES", - "nomCommune": "GAGNIERES" + "codePostal": "52000", + "codeCommune": "52125", + "libelleAcheminement": "CHAMARANDES CHOIGNES", + "nomCommune": "CHAMARANDES CHOIGNES" }, { - "codePostal": "48500", - "codeCommune": "48191", - "libelleAcheminement": "LA TIEULE", - "nomCommune": "LA TIEULE" + "codePostal": "54430", + "codeCommune": "54451", + "libelleAcheminement": "REHON", + "nomCommune": "REHON" }, { - "codePostal": "59187", - "codeCommune": "59170", - "libelleAcheminement": "DECHY", - "nomCommune": "DECHY" + "codePostal": "62450", + "codeCommune": "62777", + "libelleAcheminement": "LE SARS", + "nomCommune": "LE SARS" }, { - "codePostal": "35250", - "codeCommune": "35296", - "libelleAcheminement": "ST MEDARD SUR ILLE", - "nomCommune": "ST MEDARD SUR ILLE" + "codePostal": "08270", + "codeCommune": "08329", + "libelleAcheminement": "NOVION PORCIEN", + "nomCommune": "NOVION PORCIEN" }, { - "codePostal": "30760", - "codeCommune": "30124", - "libelleAcheminement": "LE GARN", - "nomCommune": "LE GARN" + "codePostal": "62142", + "codeCommune": "62599", + "libelleAcheminement": "NABRINGHEN", + "nomCommune": "NABRINGHEN" }, { - "codePostal": "48340", - "codeCommune": "48192", - "libelleAcheminement": "TRELANS", - "nomCommune": "TRELANS" + "codePostal": "52700", + "codeCommune": "52133", + "libelleAcheminement": "CLINCHAMP", + "nomCommune": "CLINCHAMP" }, { - "codePostal": "59890", - "codeCommune": "59173", - "libelleAcheminement": "DEULEMONT", - "nomCommune": "DEULEMONT" + "codePostal": "54830", + "codeCommune": "54455", + "libelleAcheminement": "REMENOVILLE", + "nomCommune": "REMENOVILLE" }, { - "codePostal": "35290", - "codeCommune": "35302", - "libelleAcheminement": "ST ONEN LA CHAPELLE", - "nomCommune": "ST ONEN LA CHAPELLE" + "codePostal": "62860", + "codeCommune": "62781", + "libelleAcheminement": "SAUCHY LESTREE", + "nomCommune": "SAUCHY LESTREE" }, { - "codePostal": "30128", - "codeCommune": "30125", - "libelleAcheminement": "GARONS", - "nomCommune": "GARONS" + "codePostal": "08240", + "codeCommune": "08332", + "libelleAcheminement": "OCHES", + "nomCommune": "OCHES" }, { - "codePostal": "48400", - "codeCommune": "48193", - "libelleAcheminement": "VEBRON", - "nomCommune": "VEBRON" + "codePostal": "62550", + "codeCommune": "62600", + "libelleAcheminement": "NEDON", + "nomCommune": "NEDON" }, { - "codePostal": "59240", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "52400", + "codeCommune": "52135", + "libelleAcheminement": "COIFFY LE BAS", + "nomCommune": "COIFFY LE BAS" }, { - "codePostal": "35140", - "codeCommune": "35304", - "libelleAcheminement": "ST OUEN DES ALLEUX", - "nomCommune": "ST OUEN DES ALLEUX" + "codePostal": "54380", + "codeCommune": "54460", + "libelleAcheminement": "ROGEVILLE", + "nomCommune": "ROGEVILLE" }, { - "codePostal": "30190", - "codeCommune": "30126", - "libelleAcheminement": "GARRIGUES STE EULALIE", - "nomCommune": "GARRIGUES STE EULALIE" + "codePostal": "62158", + "codeCommune": "62784", + "libelleAcheminement": "SAULTY", + "nomCommune": "SAULTY" }, { - "codePostal": "48800", - "codeCommune": "48198", - "libelleAcheminement": "VILLEFORT", - "nomCommune": "VILLEFORT" + "codePostal": "08110", + "codeCommune": "08336", + "libelleAcheminement": "OSNES", + "nomCommune": "OSNES" }, { - "codePostal": "59279", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "62128", + "codeCommune": "62619", + "libelleAcheminement": "NOREUIL", + "nomCommune": "NOREUIL" }, { - "codePostal": "35430", - "codeCommune": "35306", - "libelleAcheminement": "ST PERE MARC EN POULET", - "nomCommune": "ST PERE MARC EN POULET" + "codePostal": "52400", + "codeCommune": "52136", + "libelleAcheminement": "COIFFY LE HAUT", + "nomCommune": "COIFFY LE HAUT" }, { - "codePostal": "30450", - "codeCommune": "30130", - "libelleAcheminement": "GENOLHAC", - "nomCommune": "GENOLHAC" + "codePostal": "54290", + "codeCommune": "54467", + "libelleAcheminement": "ROZELIEURES", + "nomCommune": "ROZELIEURES" }, { - "codePostal": "49260", - "codeCommune": "49009", - "libelleAcheminement": "ANTOIGNE", - "nomCommune": "ANTOIGNE" + "codePostal": "62550", + "codeCommune": "62805", + "libelleAcheminement": "TANGRY", + "nomCommune": "TANGRY" }, { - "codePostal": "59430", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "08140", + "codeCommune": "08342", + "libelleAcheminement": "POURU AUX BOIS", + "nomCommune": "POURU AUX BOIS" }, { - "codePostal": "35190", - "codeCommune": "35307", - "libelleAcheminement": "ST PERN", - "nomCommune": "ST PERN" + "codePostal": "62370", + "codeCommune": "62621", + "libelleAcheminement": "NORTKERQUE", + "nomCommune": "NORTKERQUE" }, { - "codePostal": "30450", - "codeCommune": "30130", - "libelleAcheminement": "GENOLHAC", - "nomCommune": "GENOLHAC" + "codePostal": "52160", + "codeCommune": "52138", + "libelleAcheminement": "COLMIER LE HAUT", + "nomCommune": "COLMIER LE HAUT" }, { - "codePostal": "49540", - "codeCommune": "49012", - "libelleAcheminement": "AUBIGNE SUR LAYON", - "nomCommune": "AUBIGNE SUR LAYON" + "codePostal": "54930", + "codeCommune": "54473", + "libelleAcheminement": "ST FIRMIN", + "nomCommune": "ST FIRMIN" }, { - "codePostal": "59320", - "codeCommune": "59195", - "libelleAcheminement": "ENGLOS", - "nomCommune": "ENGLOS" + "codePostal": "62217", + "codeCommune": "62817", + "libelleAcheminement": "TILLOY LES MOFFLAINES", + "nomCommune": "TILLOY LES MOFFLAINES" }, { - "codePostal": "35720", - "codeCommune": "35308", - "libelleAcheminement": "MESNIL ROC H", - "nomCommune": "MESNIL ROC H" + "codePostal": "08290", + "codeCommune": "08344", + "libelleAcheminement": "PREZ", + "nomCommune": "PREZ" }, { - "codePostal": "30240", - "codeCommune": "30133", - "libelleAcheminement": "LE GRAU DU ROI", - "nomCommune": "LE GRAU DU ROI" + "codePostal": "62980", + "codeCommune": "62626", + "libelleAcheminement": "NOYELLES LES VERMELLES", + "nomCommune": "NOYELLES LES VERMELLES" }, { - "codePostal": "49430", - "codeCommune": "49017", - "libelleAcheminement": "BARACE", - "nomCommune": "BARACE" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "59213", - "codeCommune": "59204", - "libelleAcheminement": "ESCARMAIN", - "nomCommune": "ESCARMAIN" + "codePostal": "54700", + "codeCommune": "54474", + "libelleAcheminement": "STE GENEVIEVE", + "nomCommune": "STE GENEVIEVE" }, { - "codePostal": "35133", - "codeCommune": "35324", - "libelleAcheminement": "LA SELLE EN LUITRE", - "nomCommune": "LA SELLE EN LUITRE" + "codePostal": "62500", + "codeCommune": "62819", + "libelleAcheminement": "TILQUES", + "nomCommune": "TILQUES" }, { - "codePostal": "30110", - "codeCommune": "30137", - "libelleAcheminement": "LAMELOUZE", - "nomCommune": "LAMELOUZE" + "codePostal": "08270", + "codeCommune": "08348", + "libelleAcheminement": "PUISEUX", + "nomCommune": "PUISEUX" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "62221", + "codeCommune": "62628", + "libelleAcheminement": "NOYELLES SOUS LENS", + "nomCommune": "NOYELLES SOUS LENS" }, { - "codePostal": "59278", - "codeCommune": "59207", - "libelleAcheminement": "ESCAUTPONT", - "nomCommune": "ESCAUTPONT" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "35240", - "codeCommune": "35333", - "libelleAcheminement": "LE THEIL DE BRETAGNE", - "nomCommune": "LE THEIL DE BRETAGNE" + "codePostal": "54260", + "codeCommune": "54476", + "libelleAcheminement": "ST JEAN LES LONGUYON", + "nomCommune": "ST JEAN LES LONGUYON" }, { - "codePostal": "30460", - "codeCommune": "30140", - "libelleAcheminement": "LASALLE", - "nomCommune": "LASALLE" + "codePostal": "62520", + "codeCommune": "62826", + "libelleAcheminement": "LE TOUQUET PARIS PLAGE", + "nomCommune": "LE TOUQUET PARIS PLAGE" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "08110", + "codeCommune": "08349", + "libelleAcheminement": "PURE", + "nomCommune": "PURE" }, { - "codePostal": "59127", - "codeCommune": "59209", - "libelleAcheminement": "ESNES", - "nomCommune": "ESNES" + "codePostal": "62123", + "codeCommune": "62629", + "libelleAcheminement": "NOYELLETTE", + "nomCommune": "NOYELLETTE" }, { - "codePostal": "35134", - "codeCommune": "35335", - "libelleAcheminement": "THOURIE", - "nomCommune": "THOURIE" + "codePostal": "52700", + "codeCommune": "52142", + "libelleAcheminement": "CONSIGNY", + "nomCommune": "CONSIGNY" }, { - "codePostal": "30290", - "codeCommune": "30141", - "libelleAcheminement": "LAUDUN L ARDOISE", - "nomCommune": "LAUDUN L ARDOISE" + "codePostal": "54290", + "codeCommune": "54479", + "libelleAcheminement": "ST MARD", + "nomCommune": "ST MARD" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "62270", + "codeCommune": "62833", + "libelleAcheminement": "VACQUERIE LE BOUCQ", + "nomCommune": "VACQUERIE LE BOUCQ" }, { - "codePostal": "59144", - "codeCommune": "59217", - "libelleAcheminement": "ETH", - "nomCommune": "ETH" + "codePostal": "08400", + "codeCommune": "08351", + "libelleAcheminement": "QUILLY", + "nomCommune": "QUILLY" }, { - "codePostal": "35190", - "codeCommune": "35337", - "libelleAcheminement": "TINTENIAC", - "nomCommune": "TINTENIAC" + "codePostal": "62920", + "codeCommune": "62632", + "libelleAcheminement": "OBLINGHEM", + "nomCommune": "OBLINGHEM" }, { - "codePostal": "30250", - "codeCommune": "30144", - "libelleAcheminement": "LECQUES", - "nomCommune": "LECQUES" + "codePostal": "52500", + "codeCommune": "52145", + "libelleAcheminement": "COUBLANC", + "nomCommune": "COUBLANC" }, { - "codePostal": "49250", - "codeCommune": "49021", - "libelleAcheminement": "BEAUFORT EN ANJOU", - "nomCommune": "BEAUFORT EN ANJOU" + "codePostal": "54540", + "codeCommune": "54484", + "libelleAcheminement": "STE POLE", + "nomCommune": "STE POLE" }, { - "codePostal": "59179", - "codeCommune": "59227", - "libelleAcheminement": "FENAIN", - "nomCommune": "FENAIN" + "codePostal": "62550", + "codeCommune": "62835", + "libelleAcheminement": "VALHUON", + "nomCommune": "VALHUON" }, { - "codePostal": "35450", - "codeCommune": "35347", - "libelleAcheminement": "VAL D IZE", - "nomCommune": "VAL D IZE" + "codePostal": "08600", + "codeCommune": "08353", + "libelleAcheminement": "RANCENNES", + "nomCommune": "RANCENNES" }, { - "codePostal": "30260", - "codeCommune": "30148", - "libelleAcheminement": "LIOUC", - "nomCommune": "LIOUC" + "codePostal": "62130", + "codeCommune": "62633", + "libelleAcheminement": "OEUF EN TERNOIS", + "nomCommune": "OEUF EN TERNOIS" }, { - "codePostal": "49600", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "52110", + "codeCommune": "52149", + "libelleAcheminement": "COURCELLES SUR BLAISE", + "nomCommune": "COURCELLES SUR BLAISE" }, { - "codePostal": "59169", - "codeCommune": "59228", - "libelleAcheminement": "FERIN", - "nomCommune": "FERIN" + "codePostal": "54620", + "codeCommune": "54489", + "libelleAcheminement": "ST SUPPLET", + "nomCommune": "ST SUPPLET" }, { - "codePostal": "35500", - "codeCommune": "35360", - "libelleAcheminement": "VITRE", - "nomCommune": "VITRE" + "codePostal": "62131", + "codeCommune": "62836", + "libelleAcheminement": "VAUDRICOURT", + "nomCommune": "VAUDRICOURT" }, { - "codePostal": "30450", - "codeCommune": "30153", - "libelleAcheminement": "MALONS ET ELZE", - "nomCommune": "MALONS ET ELZE" + "codePostal": "08220", + "codeCommune": "08356", + "libelleAcheminement": "REMAUCOURT", + "nomCommune": "REMAUCOURT" }, { - "codePostal": "49600", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "62370", + "codeCommune": "62634", + "libelleAcheminement": "OFFEKERQUE", + "nomCommune": "OFFEKERQUE" }, { - "codePostal": "59680", - "codeCommune": "59230", - "libelleAcheminement": "FERRIERE LA GRANDE", - "nomCommune": "FERRIERE LA GRANDE" + "codePostal": "52600", + "codeCommune": "52155", + "libelleAcheminement": "CULMONT", + "nomCommune": "CULMONT" }, { - "codePostal": "35960", - "codeCommune": "35361", - "libelleAcheminement": "LE VIVIER SUR MER", - "nomCommune": "LE VIVIER SUR MER" + "codePostal": "54560", + "codeCommune": "54491", + "libelleAcheminement": "SANCY", + "nomCommune": "SANCY" }, { - "codePostal": "30120", - "codeCommune": "30154", - "libelleAcheminement": "MANDAGOUT", - "nomCommune": "MANDAGOUT" + "codePostal": "62159", + "codeCommune": "62839", + "libelleAcheminement": "VAULX VRAUCOURT", + "nomCommune": "VAULX VRAUCOURT" }, { - "codePostal": "49600", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "08300", + "codeCommune": "08362", + "libelleAcheminement": "RETHEL", + "nomCommune": "RETHEL" }, { - "codePostal": "59158", - "codeCommune": "59238", - "libelleAcheminement": "FLINES LES MORTAGNE", - "nomCommune": "FLINES LES MORTAGNE" + "codePostal": "62760", + "codeCommune": "62640", + "libelleAcheminement": "ORVILLE", + "nomCommune": "ORVILLE" }, { - "codePostal": "36210", - "codeCommune": "36004", - "libelleAcheminement": "ANJOUIN", - "nomCommune": "ANJOUIN" + "codePostal": "52330", + "codeCommune": "52157", + "libelleAcheminement": "CURMONT", + "nomCommune": "CURMONT" }, { - "codePostal": "30350", - "codeCommune": "30161", - "libelleAcheminement": "MASSANES", - "nomCommune": "MASSANES" + "codePostal": "54200", + "codeCommune": "54492", + "libelleAcheminement": "SANZEY", + "nomCommune": "SANZEY" }, { - "codePostal": "49520", - "codeCommune": "49036", - "libelleAcheminement": "BOUILLE MENARD", - "nomCommune": "BOUILLE MENARD" + "codePostal": "62124", + "codeCommune": "62840", + "libelleAcheminement": "VELU", + "nomCommune": "VELU" }, { - "codePostal": "59400", - "codeCommune": "59244", - "libelleAcheminement": "FONTAINE NOTRE DAME", - "nomCommune": "FONTAINE NOTRE DAME" + "codePostal": "08150", + "codeCommune": "08365", + "libelleAcheminement": "RIMOGNE", + "nomCommune": "RIMOGNE" }, { - "codePostal": "36120", - "codeCommune": "36005", - "libelleAcheminement": "ARDENTES", - "nomCommune": "ARDENTES" + "codePostal": "62230", + "codeCommune": "62643", + "libelleAcheminement": "OUTREAU", + "nomCommune": "OUTREAU" }, { - "codePostal": "30840", - "codeCommune": "30166", - "libelleAcheminement": "MEYNES", - "nomCommune": "MEYNES" + "codePostal": "52190", + "codeCommune": "52158", + "libelleAcheminement": "CUSEY", + "nomCommune": "CUSEY" }, { - "codePostal": "49125", - "codeCommune": "49048", - "libelleAcheminement": "BRIOLLAY", - "nomCommune": "BRIOLLAY" + "codePostal": "54330", + "codeCommune": "54497", + "libelleAcheminement": "SAXON SION", + "nomCommune": "SAXON SION" }, { - "codePostal": "59530", - "codeCommune": "59251", - "libelleAcheminement": "FRASNOY", - "nomCommune": "FRASNOY" + "codePostal": "62232", + "codeCommune": "62841", + "libelleAcheminement": "VENDIN LES BETHUNE", + "nomCommune": "VENDIN LES BETHUNE" }, { - "codePostal": "36270", - "codeCommune": "36014", - "libelleAcheminement": "BAZAIGES", - "nomCommune": "BAZAIGES" + "codePostal": "08220", + "codeCommune": "08366", + "libelleAcheminement": "ROCQUIGNY", + "nomCommune": "ROCQUIGNY" }, { - "codePostal": "30360", - "codeCommune": "30177", - "libelleAcheminement": "MONTEILS", - "nomCommune": "MONTEILS" + "codePostal": "62650", + "codeCommune": "62648", + "libelleAcheminement": "PARENTY", + "nomCommune": "PARENTY" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "52190", + "codeCommune": "52170", + "libelleAcheminement": "DOMMARIEN", + "nomCommune": "DOMMARIEN" }, { - "codePostal": "59254", - "codeCommune": "59260", - "libelleAcheminement": "GHYVELDE", - "nomCommune": "GHYVELDE" + "codePostal": "54280", + "codeCommune": "54498", + "libelleAcheminement": "SEICHAMPS", + "nomCommune": "SEICHAMPS" }, { - "codePostal": "36110", - "codeCommune": "36023", - "libelleAcheminement": "BOUGES LE CHATEAU", - "nomCommune": "BOUGES LE CHATEAU" + "codePostal": "62830", + "codeCommune": "62845", + "libelleAcheminement": "VERLINCTHUN", + "nomCommune": "VERLINCTHUN" }, { - "codePostal": "30260", - "codeCommune": "30192", - "libelleAcheminement": "ORTHOUX SERIGNAC QUILHAN", - "nomCommune": "ORTHOUX SERIGNAC QUILHAN" + "codePostal": "08220", + "codeCommune": "08366", + "libelleAcheminement": "ROCQUIGNY", + "nomCommune": "ROCQUIGNY" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "62310", + "codeCommune": "62659", + "libelleAcheminement": "PLANQUES", + "nomCommune": "PLANQUES" }, { - "codePostal": "59132", - "codeCommune": "59261", - "libelleAcheminement": "GLAGEON", - "nomCommune": "GLAGEON" + "codePostal": "52150", + "codeCommune": "52174", + "libelleAcheminement": "DONCOURT SUR MEUSE", + "nomCommune": "DONCOURT SUR MEUSE" }, { - "codePostal": "36500", - "codeCommune": "36031", - "libelleAcheminement": "BUZANCAIS", - "nomCommune": "BUZANCAIS" + "codePostal": "54470", + "codeCommune": "54499", + "libelleAcheminement": "SEICHEPREY", + "nomCommune": "SEICHEPREY" }, { - "codePostal": "30124", - "codeCommune": "30195", - "libelleAcheminement": "PEYROLLES", - "nomCommune": "PEYROLLES" + "codePostal": "62770", + "codeCommune": "62850", + "libelleAcheminement": "VIEIL HESDIN", + "nomCommune": "VIEIL HESDIN" }, { - "codePostal": "49360", - "codeCommune": "49058", - "libelleAcheminement": "LES CERQUEUX", - "nomCommune": "LES CERQUEUX" + "codePostal": "08230", + "codeCommune": "08367", + "libelleAcheminement": "ROCROI", + "nomCommune": "ROCROI" }, { - "codePostal": "59253", - "codeCommune": "59268", - "libelleAcheminement": "LA GORGUE", - "nomCommune": "LA GORGUE" + "codePostal": "62118", + "codeCommune": "62660", + "libelleAcheminement": "PLOUVAIN", + "nomCommune": "PLOUVAIN" }, { - "codePostal": "36200", - "codeCommune": "36033", - "libelleAcheminement": "CELON", - "nomCommune": "CELON" + "codePostal": "52270", + "codeCommune": "52177", + "libelleAcheminement": "DOULAINCOURT SAUCOURT", + "nomCommune": "DOULAINCOURT SAUCOURT" }, { - "codePostal": "30170", - "codeCommune": "30200", - "libelleAcheminement": "POMPIGNAN", - "nomCommune": "POMPIGNAN" + "codePostal": "54560", + "codeCommune": "54504", + "libelleAcheminement": "SERROUVILLE", + "nomCommune": "SERROUVILLE" }, { - "codePostal": "49220", - "codeCommune": "49067", - "libelleAcheminement": "CHENILLE CHAMPTEUSSE", - "nomCommune": "CHENILLE CHAMPTEUSSE" + "codePostal": "62182", + "codeCommune": "62858", + "libelleAcheminement": "VILLERS LES CAGNICOURT", + "nomCommune": "VILLERS LES CAGNICOURT" }, { - "codePostal": "59244", - "codeCommune": "59270", - "libelleAcheminement": "GRAND FAYT", - "nomCommune": "GRAND FAYT" + "codePostal": "08220", + "codeCommune": "08372", + "libelleAcheminement": "RUBIGNY", + "nomCommune": "RUBIGNY" }, { - "codePostal": "36370", - "codeCommune": "36036", - "libelleAcheminement": "CHALAIS", - "nomCommune": "CHALAIS" + "codePostal": "62370", + "codeCommune": "62662", + "libelleAcheminement": "POLINCOVE", + "nomCommune": "POLINCOVE" }, { - "codePostal": "30330", - "codeCommune": "30205", - "libelleAcheminement": "POUGNADORESSE", - "nomCommune": "POUGNADORESSE" + "codePostal": "52130", + "codeCommune": "52179", + "libelleAcheminement": "DOULEVANT LE PETIT", + "nomCommune": "DOULEVANT LE PETIT" }, { - "codePostal": "49123", - "codeCommune": "49068", - "libelleAcheminement": "CHAMPTOCE SUR LOIRE", - "nomCommune": "CHAMPTOCE SUR LOIRE" + "codePostal": "54120", + "codeCommune": "54519", + "libelleAcheminement": "THIAVILLE SUR MEURTHE", + "nomCommune": "THIAVILLE SUR MEURTHE" }, { - "codePostal": "59570", - "codeCommune": "59277", - "libelleAcheminement": "GUSSIGNIES", - "nomCommune": "GUSSIGNIES" + "codePostal": "62390", + "codeCommune": "62859", + "libelleAcheminement": "VILLERS L HOPITAL", + "nomCommune": "VILLERS L HOPITAL" }, { - "codePostal": "36150", - "codeCommune": "36041", - "libelleAcheminement": "LA CHAPELLE ST LAURIAN", - "nomCommune": "LA CHAPELLE ST LAURIAN" + "codePostal": "08130", + "codeCommune": "08384", + "libelleAcheminement": "ST LAMBERT ET MONT DE JEUX", + "nomCommune": "ST LAMBERT ET MONT DE JEUX" }, { - "codePostal": "30131", - "codeCommune": "30209", - "libelleAcheminement": "PUJAUT", - "nomCommune": "PUJAUT" + "codePostal": "62550", + "codeCommune": "62669", + "libelleAcheminement": "PRESSY", + "nomCommune": "PRESSY" }, { - "codePostal": "49270", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "52000", + "codeCommune": "52193", + "libelleAcheminement": "EUFFIGNEIX", + "nomCommune": "EUFFIGNEIX" }, { - "codePostal": "59250", - "codeCommune": "59279", - "libelleAcheminement": "HALLUIN", - "nomCommune": "HALLUIN" + "codePostal": "54115", + "codeCommune": "54530", + "libelleAcheminement": "TRAMONT LASSUS", + "nomCommune": "TRAMONT LASSUS" }, { - "codePostal": "36800", - "codeCommune": "36042", - "libelleAcheminement": "CHASSENEUIL", - "nomCommune": "CHASSENEUIL" + "codePostal": "62310", + "codeCommune": "62862", + "libelleAcheminement": "VINCLY", + "nomCommune": "VINCLY" }, { - "codePostal": "30260", - "codeCommune": "30210", - "libelleAcheminement": "QUISSAC", - "nomCommune": "QUISSAC" + "codePostal": "08200", + "codeCommune": "08391", + "libelleAcheminement": "ST MENGES", + "nomCommune": "ST MENGES" }, { - "codePostal": "49270", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "62650", + "codeCommune": "62670", + "libelleAcheminement": "PREURES", + "nomCommune": "PREURES" }, { - "codePostal": "59496", - "codeCommune": "59281", - "libelleAcheminement": "HANTAY", - "nomCommune": "HANTAY" + "codePostal": "52500", + "codeCommune": "52195", + "libelleAcheminement": "FARINCOURT", + "nomCommune": "FARINCOURT" }, { - "codePostal": "36270", - "codeCommune": "36070", - "libelleAcheminement": "EGUZON CHANTOME", - "nomCommune": "EGUZON CHANTOME" + "codePostal": "54385", + "codeCommune": "54532", + "libelleAcheminement": "TREMBLECOURT", + "nomCommune": "TREMBLECOURT" }, { - "codePostal": "30430", - "codeCommune": "30215", - "libelleAcheminement": "RIVIERES", - "nomCommune": "RIVIERES" + "codePostal": "62156", + "codeCommune": "62864", + "libelleAcheminement": "VIS EN ARTOIS", + "nomCommune": "VIS EN ARTOIS" }, { - "codePostal": "49270", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "08310", + "codeCommune": "08393", + "libelleAcheminement": "ST PIERRE A ARNES", + "nomCommune": "ST PIERRE A ARNES" }, { - "codePostal": "59670", - "codeCommune": "59282", - "libelleAcheminement": "HARDIFORT", - "nomCommune": "HARDIFORT" + "codePostal": "62490", + "codeCommune": "62680", + "libelleAcheminement": "QUIERY LA MOTTE", + "nomCommune": "QUIERY LA MOTTE" }, { - "codePostal": "36120", - "codeCommune": "36071", - "libelleAcheminement": "ETRECHET", - "nomCommune": "ETRECHET" + "codePostal": "52250", + "codeCommune": "52200", + "libelleAcheminement": "FLAGEY", + "nomCommune": "FLAGEY" }, { - "codePostal": "30940", - "codeCommune": "30231", - "libelleAcheminement": "ST ANDRE DE VALBORGNE", - "nomCommune": "ST ANDRE DE VALBORGNE" + "codePostal": "54122", + "codeCommune": "54550", + "libelleAcheminement": "VATHIMENIL", + "nomCommune": "VATHIMENIL" }, { - "codePostal": "49530", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "62770", + "codeCommune": "62868", + "libelleAcheminement": "WAIL", + "nomCommune": "WAIL" }, { - "codePostal": "59121", - "codeCommune": "59288", - "libelleAcheminement": "HAULCHIN", - "nomCommune": "HAULCHIN" + "codePostal": "08430", + "codeCommune": "08395", + "libelleAcheminement": "ST PIERRE SUR VENCE", + "nomCommune": "ST PIERRE SUR VENCE" }, { - "codePostal": "36110", - "codeCommune": "36079", - "libelleAcheminement": "FRANCILLON", - "nomCommune": "FRANCILLON" + "codePostal": "62180", + "codeCommune": "62688", + "libelleAcheminement": "RANG DU FLIERS", + "nomCommune": "RANG DU FLIERS" }, { - "codePostal": "30460", - "codeCommune": "30236", - "libelleAcheminement": "ST BONNET DE SALENDRINQUE", - "nomCommune": "ST BONNET DE SALENDRINQUE" + "codePostal": "52170", + "codeCommune": "52203", + "libelleAcheminement": "FONTAINES SUR MARNE", + "nomCommune": "FONTAINES SUR MARNE" }, { - "codePostal": "49330", - "codeCommune": "49080", - "libelleAcheminement": "LES HAUTS D ANJOU", - "nomCommune": "LES HAUTS D ANJOU" + "codePostal": "54370", + "codeCommune": "54551", + "libelleAcheminement": "VAUCOURT", + "nomCommune": "VAUCOURT" }, { - "codePostal": "59294", - "codeCommune": "59289", - "libelleAcheminement": "HAUSSY", - "nomCommune": "HAUSSY" + "codePostal": "62170", + "codeCommune": "62870", + "libelleAcheminement": "WAILLY BEAUCAMP", + "nomCommune": "WAILLY BEAUCAMP" }, { - "codePostal": "36240", - "codeCommune": "36082", - "libelleAcheminement": "GEHEE", - "nomCommune": "GEHEE" + "codePostal": "08220", + "codeCommune": "08396", + "libelleAcheminement": "ST QUENTIN LE PETIT", + "nomCommune": "ST QUENTIN LE PETIT" }, { - "codePostal": "30380", - "codeCommune": "30243", - "libelleAcheminement": "ST CHRISTOL LEZ ALES", - "nomCommune": "ST CHRISTOL LEZ ALES" + "codePostal": "62120", + "codeCommune": "62691", + "libelleAcheminement": "ST AUGUSTIN", + "nomCommune": "ST AUGUSTIN" }, { - "codePostal": "49330", - "codeCommune": "49080", - "libelleAcheminement": "LES HAUTS D ANJOU", - "nomCommune": "LES HAUTS D ANJOU" + "codePostal": "52700", + "codeCommune": "52204", + "libelleAcheminement": "FORCEY", + "nomCommune": "FORCEY" }, { - "codePostal": "59660", - "codeCommune": "59293", - "libelleAcheminement": "HAVERSKERQUE", - "nomCommune": "HAVERSKERQUE" + "codePostal": "54840", + "codeCommune": "54557", + "libelleAcheminement": "BOIS DE HAYE", + "nomCommune": "BOIS DE HAYE" }, { - "codePostal": "36230", - "codeCommune": "36084", - "libelleAcheminement": "GOURNAY", - "nomCommune": "GOURNAY" + "codePostal": "62123", + "codeCommune": "62874", + "libelleAcheminement": "WANQUETIN", + "nomCommune": "WANQUETIN" }, { - "codePostal": "30460", - "codeCommune": "30246", - "libelleAcheminement": "STE CROIX DE CADERLE", - "nomCommune": "STE CROIX DE CADERLE" + "codePostal": "08230", + "codeCommune": "08417", + "libelleAcheminement": "SEVIGNY LA FORET", + "nomCommune": "SEVIGNY LA FORET" }, { - "codePostal": "49125", - "codeCommune": "49090", - "libelleAcheminement": "CHEFFES", - "nomCommune": "CHEFFES" + "codePostal": "62129", + "codeCommune": "62691", + "libelleAcheminement": "ST AUGUSTIN", + "nomCommune": "ST AUGUSTIN" }, { - "codePostal": "59190", - "codeCommune": "59295", - "libelleAcheminement": "HAZEBROUCK", - "nomCommune": "HAZEBROUCK" + "codePostal": "52360", + "codeCommune": "52207", + "libelleAcheminement": "FRECOURT", + "nomCommune": "FRECOURT" }, { - "codePostal": "36180", - "codeCommune": "36086", - "libelleAcheminement": "HEUGNES", - "nomCommune": "HEUGNES" + "codePostal": "54290", + "codeCommune": "54559", + "libelleAcheminement": "VELLE SUR MOSELLE", + "nomCommune": "VELLE SUR MOSELLE" }, { - "codePostal": "30320", - "codeCommune": "30257", - "libelleAcheminement": "ST GERVASY", - "nomCommune": "ST GERVASY" + "codePostal": "62123", + "codeCommune": "62878", + "libelleAcheminement": "WARLUS", + "nomCommune": "WARLUS" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "08380", + "codeCommune": "08420", + "libelleAcheminement": "SIGNY LE PETIT", + "nomCommune": "SIGNY LE PETIT" }, { - "codePostal": "59530", - "codeCommune": "59296", - "libelleAcheminement": "HECQ", - "nomCommune": "HECQ" + "codePostal": "62140", + "codeCommune": "62700", + "libelleAcheminement": "REGNAUVILLE", + "nomCommune": "REGNAUVILLE" }, { - "codePostal": "36240", - "codeCommune": "36090", - "libelleAcheminement": "JEU MALOCHES", - "nomCommune": "JEU MALOCHES" + "codePostal": "52300", + "codeCommune": "52212", + "libelleAcheminement": "FRONVILLE", + "nomCommune": "FRONVILLE" }, { - "codePostal": "30210", - "codeCommune": "30260", - "libelleAcheminement": "ST HILAIRE D OZILHAN", - "nomCommune": "ST HILAIRE D OZILHAN" + "codePostal": "54330", + "codeCommune": "54563", + "libelleAcheminement": "VEZELISE", + "nomCommune": "VEZELISE" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "62130", + "codeCommune": "62883", + "libelleAcheminement": "WAVRANS SUR TERNOISE", + "nomCommune": "WAVRANS SUR TERNOISE" }, { - "codePostal": "59510", - "codeCommune": "59299", - "libelleAcheminement": "HEM", - "nomCommune": "HEM" + "codePostal": "08250", + "codeCommune": "08425", + "libelleAcheminement": "SOMMERANCE", + "nomCommune": "SOMMERANCE" }, { - "codePostal": "36400", - "codeCommune": "36091", - "libelleAcheminement": "LACS", - "nomCommune": "LACS" + "codePostal": "62720", + "codeCommune": "62705", + "libelleAcheminement": "RETY", + "nomCommune": "RETY" }, { - "codePostal": "30360", - "codeCommune": "30264", - "libelleAcheminement": "ST JEAN DE CEYRARGUES", - "nomCommune": "ST JEAN DE CEYRARGUES" + "codePostal": "52500", + "codeCommune": "52213", + "libelleAcheminement": "GENEVRIERES", + "nomCommune": "GENEVRIERES" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "54620", + "codeCommune": "54568", + "libelleAcheminement": "VILLE AU MONTOIS", + "nomCommune": "VILLE AU MONTOIS" }, { - "codePostal": "59195", - "codeCommune": "59302", - "libelleAcheminement": "HERIN", - "nomCommune": "HERIN" + "codePostal": "62630", + "codeCommune": "62887", + "libelleAcheminement": "WIDEHEM", + "nomCommune": "WIDEHEM" }, { - "codePostal": "36600", - "codeCommune": "36107", - "libelleAcheminement": "LYE", - "nomCommune": "LYE" + "codePostal": "08400", + "codeCommune": "08431", + "libelleAcheminement": "SUGNY", + "nomCommune": "SUGNY" }, { - "codePostal": "30430", - "codeCommune": "30266", - "libelleAcheminement": "ST JEAN DE MARUEJOLS ET AVEJAN", - "nomCommune": "ST JEAN DE MARUEJOLS ET AVEJAN" + "codePostal": "62173", + "codeCommune": "62712", + "libelleAcheminement": "RIVIERE", + "nomCommune": "RIVIERE" }, { - "codePostal": "49560", - "codeCommune": "49102", - "libelleAcheminement": "CLERE SUR LAYON", - "nomCommune": "CLERE SUR LAYON" + "codePostal": "52160", + "codeCommune": "52216", + "libelleAcheminement": "GERMAINES", + "nomCommune": "GERMAINES" }, { - "codePostal": "59134", - "codeCommune": "59303", - "libelleAcheminement": "HERLIES", - "nomCommune": "HERLIES" + "codePostal": "54890", + "codeCommune": "54570", + "libelleAcheminement": "VILLECEY SUR MAD", + "nomCommune": "VILLECEY SUR MAD" }, { - "codePostal": "36120", - "codeCommune": "36112", - "libelleAcheminement": "MARON", - "nomCommune": "MARON" + "codePostal": "62720", + "codeCommune": "62889", + "libelleAcheminement": "WIERRE EFFROY", + "nomCommune": "WIERRE EFFROY" }, { - "codePostal": "30440", - "codeCommune": "30272", - "libelleAcheminement": "ST JULIEN DE LA NEF", - "nomCommune": "ST JULIEN DE LA NEF" + "codePostal": "08090", + "codeCommune": "08432", + "libelleAcheminement": "SURY", + "nomCommune": "SURY" }, { - "codePostal": "49700", - "codeCommune": "49121", - "libelleAcheminement": "DENEZE SOUS DOUE", - "nomCommune": "DENEZE SOUS DOUE" + "codePostal": "62223", + "codeCommune": "62714", + "libelleAcheminement": "ROCLINCOURT", + "nomCommune": "ROCLINCOURT" }, { - "codePostal": "59740", - "codeCommune": "59306", - "libelleAcheminement": "HESTRUD", - "nomCommune": "HESTRUD" + "codePostal": "52230", + "codeCommune": "52222", + "libelleAcheminement": "GILLAUME", + "nomCommune": "GILLAUME" }, { - "codePostal": "36200", - "codeCommune": "36117", - "libelleAcheminement": "LE MENOUX", - "nomCommune": "LE MENOUX" + "codePostal": "54380", + "codeCommune": "54573", + "libelleAcheminement": "VILLERS EN HAYE", + "nomCommune": "VILLERS EN HAYE" }, { - "codePostal": "30340", - "codeCommune": "30274", - "libelleAcheminement": "ST JULIEN LES ROSIERS", - "nomCommune": "ST JULIEN LES ROSIERS" + "codePostal": "62770", + "codeCommune": "62890", + "libelleAcheminement": "WILLEMAN", + "nomCommune": "WILLEMAN" }, { - "codePostal": "49700", - "codeCommune": "49125", - "libelleAcheminement": "DOUE EN ANJOU", - "nomCommune": "DOUE EN ANJOU" + "codePostal": "08390", + "codeCommune": "08434", + "libelleAcheminement": "SY", + "nomCommune": "SY" }, { - "codePostal": "59980", - "codeCommune": "59311", - "libelleAcheminement": "HONNECHY", - "nomCommune": "HONNECHY" + "codePostal": "62130", + "codeCommune": "62717", + "libelleAcheminement": "ROELLECOURT", + "nomCommune": "ROELLECOURT" }, { - "codePostal": "36130", - "codeCommune": "36128", - "libelleAcheminement": "MONTIERCHAUME", - "nomCommune": "MONTIERCHAUME" + "codePostal": "52500", + "codeCommune": "52229", + "libelleAcheminement": "GRENANT", + "nomCommune": "GRENANT" }, { - "codePostal": "30126", - "codeCommune": "30278", - "libelleAcheminement": "ST LAURENT DES ARBRES", - "nomCommune": "ST LAURENT DES ARBRES" + "codePostal": "54600", + "codeCommune": "54578", + "libelleAcheminement": "VILLERS LES NANCY", + "nomCommune": "VILLERS LES NANCY" }, { - "codePostal": "49700", - "codeCommune": "49125", - "libelleAcheminement": "DOUE EN ANJOU", - "nomCommune": "DOUE EN ANJOU" + "codePostal": "62390", + "codeCommune": "62891", + "libelleAcheminement": "WILLENCOURT", + "nomCommune": "WILLENCOURT" }, { - "codePostal": "59116", - "codeCommune": "59317", - "libelleAcheminement": "HOUPLINES", - "nomCommune": "HOUPLINES" + "codePostal": "08240", + "codeCommune": "08437", + "libelleAcheminement": "TAILLY", + "nomCommune": "TAILLY" }, { - "codePostal": "36200", - "codeCommune": "36131", - "libelleAcheminement": "MOSNAY", - "nomCommune": "MOSNAY" + "codePostal": "62120", + "codeCommune": "62720", + "libelleAcheminement": "ROMBLY", + "nomCommune": "ROMBLY" }, { - "codePostal": "30440", - "codeCommune": "30283", - "libelleAcheminement": "ST MARTIAL", - "nomCommune": "ST MARTIAL" + "codePostal": "52600", + "codeCommune": "52242", + "libelleAcheminement": "HAUTE AMANCE", + "nomCommune": "HAUTE AMANCE" }, { - "codePostal": "49700", - "codeCommune": "49125", - "libelleAcheminement": "DOUE EN ANJOU", - "nomCommune": "DOUE EN ANJOU" + "codePostal": "54190", + "codeCommune": "54580", + "libelleAcheminement": "VILLERUPT", + "nomCommune": "VILLERUPT" }, { - "codePostal": "59540", - "codeCommune": "59321", - "libelleAcheminement": "INCHY", - "nomCommune": "INCHY" + "codePostal": "62930", + "codeCommune": "62893", + "libelleAcheminement": "WIMEREUX", + "nomCommune": "WIMEREUX" }, { - "codePostal": "36400", - "codeCommune": "36138", - "libelleAcheminement": "NERET", - "nomCommune": "NERET" + "codePostal": "08240", + "codeCommune": "08437", + "libelleAcheminement": "TAILLY", + "nomCommune": "TAILLY" }, { - "codePostal": "30200", - "codeCommune": "30288", - "libelleAcheminement": "ST NAZAIRE", - "nomCommune": "ST NAZAIRE" + "codePostal": "62120", + "codeCommune": "62721", + "libelleAcheminement": "ROQUETOIRE", + "nomCommune": "ROQUETOIRE" }, { - "codePostal": "49260", - "codeCommune": "49131", - "libelleAcheminement": "EPIEDS", - "nomCommune": "EPIEDS" + "codePostal": "52600", + "codeCommune": "52242", + "libelleAcheminement": "HAUTE AMANCE", + "nomCommune": "HAUTE AMANCE" }, { - "codePostal": "59141", - "codeCommune": "59322", - "libelleAcheminement": "IWUY", - "nomCommune": "IWUY" + "codePostal": "54330", + "codeCommune": "54587", + "libelleAcheminement": "VITREY", + "nomCommune": "VITREY" }, { - "codePostal": "36210", - "codeCommune": "36147", - "libelleAcheminement": "ORVILLE", - "nomCommune": "ORVILLE" + "codePostal": "62650", + "codeCommune": "62903", + "libelleAcheminement": "ZOTEUX", + "nomCommune": "ZOTEUX" }, { - "codePostal": "30190", - "codeCommune": "30313", - "libelleAcheminement": "SAUZET", - "nomCommune": "SAUZET" + "codePostal": "08240", + "codeCommune": "08437", + "libelleAcheminement": "TAILLY", + "nomCommune": "TAILLY" }, { - "codePostal": "49330", - "codeCommune": "49132", - "libelleAcheminement": "ETRICHE", - "nomCommune": "ETRICHE" + "codePostal": "62870", + "codeCommune": "62723", + "libelleAcheminement": "ROUSSENT", + "nomCommune": "ROUSSENT" }, { - "codePostal": "59144", - "codeCommune": "59323", - "libelleAcheminement": "JENLAIN", - "nomCommune": "JENLAIN" + "codePostal": "52600", + "codeCommune": "52242", + "libelleAcheminement": "HAUTE AMANCE", + "nomCommune": "HAUTE AMANCE" }, { - "codePostal": "36170", - "codeCommune": "36150", - "libelleAcheminement": "PARNAC", - "nomCommune": "PARNAC" + "codePostal": "54990", + "codeCommune": "54596", + "libelleAcheminement": "XEUILLEY", + "nomCommune": "XEUILLEY" }, { - "codePostal": "30350", - "codeCommune": "30314", - "libelleAcheminement": "SAVIGNARGUES", - "nomCommune": "SAVIGNARGUES" + "codePostal": "63260", + "codeCommune": "63001", + "libelleAcheminement": "AIGUEPERSE", + "nomCommune": "AIGUEPERSE" }, { - "codePostal": "49220", - "codeCommune": "49155", - "libelleAcheminement": "GREZ NEUVILLE", - "nomCommune": "GREZ NEUVILLE" + "codePostal": "08390", + "codeCommune": "08439", + "libelleAcheminement": "TANNAY", + "nomCommune": "TANNAY" }, { - "codePostal": "59310", - "codeCommune": "59330", - "libelleAcheminement": "LANDAS", - "nomCommune": "LANDAS" + "codePostal": "62990", + "codeCommune": "62725", + "libelleAcheminement": "ROYON", + "nomCommune": "ROYON" }, { - "codePostal": "36260", - "codeCommune": "36152", - "libelleAcheminement": "PAUDY", - "nomCommune": "PAUDY" + "codePostal": "52700", + "codeCommune": "52245", + "libelleAcheminement": "HUMBERVILLE", + "nomCommune": "HUMBERVILLE" }, { - "codePostal": "30700", - "codeCommune": "30319", - "libelleAcheminement": "SERVIERS ET LABAUME", - "nomCommune": "SERVIERS ET LABAUME" + "codePostal": "54370", + "codeCommune": "54600", + "libelleAcheminement": "XOUSSE", + "nomCommune": "XOUSSE" }, { - "codePostal": "49220", - "codeCommune": "49161", - "libelleAcheminement": "LA JAILLE YVON", - "nomCommune": "LA JAILLE YVON" + "codePostal": "63420", + "codeCommune": "63007", + "libelleAcheminement": "APCHAT", + "nomCommune": "APCHAT" }, { - "codePostal": "59550", - "codeCommune": "59331", - "libelleAcheminement": "LANDRECIES", - "nomCommune": "LANDRECIES" + "codePostal": "08460", + "codeCommune": "08449", + "libelleAcheminement": "THIN LE MOUTIER", + "nomCommune": "THIN LE MOUTIER" }, { - "codePostal": "36160", - "codeCommune": "36164", - "libelleAcheminement": "POULIGNY ST MARTIN", - "nomCommune": "POULIGNY ST MARTIN" + "codePostal": "62550", + "codeCommune": "62732", + "libelleAcheminement": "SACHIN", + "nomCommune": "SACHIN" }, { - "codePostal": "30580", - "codeCommune": "30320", - "libelleAcheminement": "SEYNES", - "nomCommune": "SEYNES" + "codePostal": "52200", + "codeCommune": "52246", + "libelleAcheminement": "HUMES JORQUENAY", + "nomCommune": "HUMES JORQUENAY" }, { - "codePostal": "49140", - "codeCommune": "49163", - "libelleAcheminement": "JARZE VILLAGES", - "nomCommune": "JARZE VILLAGES" + "codePostal": "54370", + "codeCommune": "54601", + "libelleAcheminement": "XURES", + "nomCommune": "XURES" }, { - "codePostal": "59620", - "codeCommune": "59344", - "libelleAcheminement": "LEVAL", - "nomCommune": "LEVAL" + "codePostal": "63700", + "codeCommune": "63011", + "libelleAcheminement": "ARS LES FAVETS", + "nomCommune": "ARS LES FAVETS" }, { - "codePostal": "36370", - "codeCommune": "36168", - "libelleAcheminement": "PRISSAC", - "nomCommune": "PRISSAC" + "codePostal": "08430", + "codeCommune": "08454", + "libelleAcheminement": "TOULIGNY", + "nomCommune": "TOULIGNY" }, { - "codePostal": "30250", - "codeCommune": "30324", - "libelleAcheminement": "SOUVIGNARGUES", - "nomCommune": "SOUVIGNARGUES" + "codePostal": "62111", + "codeCommune": "62733", + "libelleAcheminement": "SAILLY AU BOIS", + "nomCommune": "SAILLY AU BOIS" }, { - "codePostal": "49140", - "codeCommune": "49163", - "libelleAcheminement": "JARZE VILLAGES", - "nomCommune": "JARZE VILLAGES" + "codePostal": "52140", + "codeCommune": "52248", + "libelleAcheminement": "IS EN BASSIGNY", + "nomCommune": "IS EN BASSIGNY" }, { - "codePostal": "59160", - "codeCommune": "59350", - "libelleAcheminement": "LILLE", - "nomCommune": "LILLE" + "codePostal": "55130", + "codeCommune": "55001", + "libelleAcheminement": "ABAINVILLE", + "nomCommune": "ABAINVILLE" }, { - "codePostal": "36400", - "codeCommune": "36186", - "libelleAcheminement": "ST CHRISTOPHE EN BOUCHERIE", - "nomCommune": "ST CHRISTOPHE EN BOUCHERIE" + "codePostal": "63340", + "codeCommune": "63017", + "libelleAcheminement": "AUGNAT", + "nomCommune": "AUGNAT" }, { - "codePostal": "30440", - "codeCommune": "30325", - "libelleAcheminement": "SUMENE", - "nomCommune": "SUMENE" + "codePostal": "08240", + "codeCommune": "08463", + "libelleAcheminement": "VAUX EN DIEULET", + "nomCommune": "VAUX EN DIEULET" }, { - "codePostal": "49140", - "codeCommune": "49163", - "libelleAcheminement": "JARZE VILLAGES", - "nomCommune": "JARZE VILLAGES" + "codePostal": "62490", + "codeCommune": "62734", + "libelleAcheminement": "SAILLY EN OSTREVENT", + "nomCommune": "SAILLY EN OSTREVENT" }, { - "codePostal": "59330", - "codeCommune": "59351", - "libelleAcheminement": "LIMONT FONTAINE", - "nomCommune": "LIMONT FONTAINE" + "codePostal": "52300", + "codeCommune": "52250", + "libelleAcheminement": "JOINVILLE", + "nomCommune": "JOINVILLE" }, { - "codePostal": "36700", - "codeCommune": "36188", - "libelleAcheminement": "ST CYRAN DU JAMBOT", - "nomCommune": "ST CYRAN DU JAMBOT" + "codePostal": "55400", + "codeCommune": "55002", + "libelleAcheminement": "ABAUCOURT HAUTECOURT", + "nomCommune": "ABAUCOURT HAUTECOURT" }, { - "codePostal": "30140", - "codeCommune": "30330", - "libelleAcheminement": "TORNAC", - "nomCommune": "TORNAC" + "codePostal": "63570", + "codeCommune": "63022", + "libelleAcheminement": "AUZAT LA COMBELLE", + "nomCommune": "AUZAT LA COMBELLE" }, { - "codePostal": "49220", - "codeCommune": "49176", - "libelleAcheminement": "LE LION D ANGERS", - "nomCommune": "LE LION D ANGERS" + "codePostal": "08160", + "codeCommune": "08469", + "libelleAcheminement": "VENDRESSE", + "nomCommune": "VENDRESSE" }, { - "codePostal": "59530", - "codeCommune": "59353", - "libelleAcheminement": "LOCQUIGNOL", - "nomCommune": "LOCQUIGNOL" + "codePostal": "62310", + "codeCommune": "62738", + "libelleAcheminement": "SAINS LES FRESSIN", + "nomCommune": "SAINS LES FRESSIN" }, { - "codePostal": "36500", - "codeCommune": "36194", - "libelleAcheminement": "ST GENOU", - "nomCommune": "ST GENOU" + "codePostal": "52330", + "codeCommune": "52253", + "libelleAcheminement": "JUZENNECOURT", + "nomCommune": "JUZENNECOURT" }, { - "codePostal": "30620", - "codeCommune": "30333", - "libelleAcheminement": "UCHAUD", - "nomCommune": "UCHAUD" + "codePostal": "55300", + "codeCommune": "55007", + "libelleAcheminement": "AMBLY SUR MEUSE", + "nomCommune": "AMBLY SUR MEUSE" }, { - "codePostal": "49160", - "codeCommune": "49180", - "libelleAcheminement": "LONGUE JUMELLES", - "nomCommune": "LONGUE JUMELLES" + "codePostal": "63810", + "codeCommune": "63028", + "libelleAcheminement": "BAGNOLS", + "nomCommune": "BAGNOLS" }, { - "codePostal": "59182", - "codeCommune": "59354", - "libelleAcheminement": "LOFFRE", - "nomCommune": "LOFFRE" + "codePostal": "08270", + "codeCommune": "08472", + "libelleAcheminement": "VIEL ST REMY", + "nomCommune": "VIEL ST REMY" }, { - "codePostal": "36100", - "codeCommune": "36209", - "libelleAcheminement": "ST VALENTIN", - "nomCommune": "ST VALENTIN" + "codePostal": "62860", + "codeCommune": "62739", + "libelleAcheminement": "SAINS LES MARQUION", + "nomCommune": "SAINS LES MARQUION" }, { - "codePostal": "30580", - "codeCommune": "30338", - "libelleAcheminement": "VALLERARGUES", - "nomCommune": "VALLERARGUES" + "codePostal": "52120", + "codeCommune": "52258", + "libelleAcheminement": "LAFERTE SUR AUBE", + "nomCommune": "LAFERTE SUR AUBE" }, { - "codePostal": "49280", - "codeCommune": "49195", - "libelleAcheminement": "MAZIERES EN MAUGES", - "nomCommune": "MAZIERES EN MAUGES" + "codePostal": "55300", + "codeCommune": "55012", + "libelleAcheminement": "APREMONT LA FORET", + "nomCommune": "APREMONT LA FORET" }, { - "codePostal": "59279", - "codeCommune": "59359", - "libelleAcheminement": "LOON PLAGE", - "nomCommune": "LOON PLAGE" + "codePostal": "63570", + "codeCommune": "63031", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "36230", - "codeCommune": "36226", - "libelleAcheminement": "TRANZAULT", - "nomCommune": "TRANZAULT" + "codePostal": "08350", + "codeCommune": "08481", + "libelleAcheminement": "VILLERS SUR BAR", + "nomCommune": "VILLERS SUR BAR" }, { - "codePostal": "30600", - "codeCommune": "30341", - "libelleAcheminement": "VAUVERT", - "nomCommune": "VAUVERT" + "codePostal": "62350", + "codeCommune": "62747", + "libelleAcheminement": "ST FLORIS", + "nomCommune": "ST FLORIS" }, { - "codePostal": "49260", - "codeCommune": "49215", - "libelleAcheminement": "MONTREUIL BELLAY", - "nomCommune": "MONTREUIL BELLAY" + "codePostal": "52170", + "codeCommune": "52265", + "libelleAcheminement": "BAYARD SUR MARNE", + "nomCommune": "BAYARD SUR MARNE" }, { - "codePostal": "59156", - "codeCommune": "59361", - "libelleAcheminement": "LOURCHES", - "nomCommune": "LOURCHES" + "codePostal": "55600", + "codeCommune": "55022", + "libelleAcheminement": "AVIOTH", + "nomCommune": "AVIOTH" }, { - "codePostal": "36210", - "codeCommune": "36229", - "libelleAcheminement": "VAL FOUZON", - "nomCommune": "VAL FOUZON" + "codePostal": "63460", + "codeCommune": "63035", + "libelleAcheminement": "BEAUREGARD VENDON", + "nomCommune": "BEAUREGARD VENDON" }, { - "codePostal": "30630", - "codeCommune": "30343", - "libelleAcheminement": "VERFEUIL", - "nomCommune": "VERFEUIL" + "codePostal": "08320", + "codeCommune": "08486", + "libelleAcheminement": "VIREUX MOLHAIN", + "nomCommune": "VIREUX MOLHAIN" }, { - "codePostal": "49110", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "62250", + "codeCommune": "62751", + "libelleAcheminement": "ST INGLEVERT", + "nomCommune": "ST INGLEVERT" }, { - "codePostal": "59530", - "codeCommune": "59363", - "libelleAcheminement": "LOUVIGNIES QUESNOY", - "nomCommune": "LOUVIGNIES QUESNOY" + "codePostal": "52170", + "codeCommune": "52265", + "libelleAcheminement": "BAYARD SUR MARNE", + "nomCommune": "BAYARD SUR MARNE" }, { - "codePostal": "36170", - "codeCommune": "36239", - "libelleAcheminement": "VIGOUX", - "nomCommune": "VIGOUX" + "codePostal": "55260", + "codeCommune": "55032", + "libelleAcheminement": "BAUDREMONT", + "nomCommune": "BAUDREMONT" }, { - "codePostal": "30260", - "codeCommune": "30349", - "libelleAcheminement": "VIC LE FESQ", - "nomCommune": "VIC LE FESQ" + "codePostal": "63610", + "codeCommune": "63038", + "libelleAcheminement": "BESSE ET ST ANASTAISE", + "nomCommune": "BESSE ET ST ANASTAISE" }, { - "codePostal": "49110", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "08400", + "codeCommune": "08490", + "libelleAcheminement": "VOUZIERS", + "nomCommune": "VOUZIERS" }, { - "codePostal": "59390", - "codeCommune": "59367", - "libelleAcheminement": "LYS LEZ LANNOY", - "nomCommune": "LYS LEZ LANNOY" + "codePostal": "62170", + "codeCommune": "62752", + "libelleAcheminement": "ST JOSSE", + "nomCommune": "ST JOSSE" }, { - "codePostal": "36110", - "codeCommune": "36242", - "libelleAcheminement": "VILLEGONGIS", - "nomCommune": "VILLEGONGIS" + "codePostal": "52170", + "codeCommune": "52265", + "libelleAcheminement": "BAYARD SUR MARNE", + "nomCommune": "BAYARD SUR MARNE" }, { - "codePostal": "30400", - "codeCommune": "30351", - "libelleAcheminement": "VILLENEUVE LES AVIGNON", - "nomCommune": "VILLENEUVE LES AVIGNON" + "codePostal": "55270", + "codeCommune": "55033", + "libelleAcheminement": "BAULNY", + "nomCommune": "BAULNY" }, { - "codePostal": "49270", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "63112", + "codeCommune": "63042", + "libelleAcheminement": "BLANZAT", + "nomCommune": "BLANZAT" }, { - "codePostal": "59110", - "codeCommune": "59368", - "libelleAcheminement": "LA MADELEINE", - "nomCommune": "LA MADELEINE" + "codePostal": "08350", + "codeCommune": "08491", + "libelleAcheminement": "VRIGNE AUX BOIS", + "nomCommune": "VRIGNE AUX BOIS" }, { - "codePostal": "36100", - "codeCommune": "36248", - "libelleAcheminement": "VOUILLON", - "nomCommune": "VOUILLON" + "codePostal": "62360", + "codeCommune": "62755", + "libelleAcheminement": "ST LEONARD", + "nomCommune": "ST LEONARD" }, { - "codePostal": "30250", - "codeCommune": "30352", - "libelleAcheminement": "VILLEVIEILLE", - "nomCommune": "VILLEVIEILLE" + "codePostal": "52400", + "codeCommune": "52273", + "libelleAcheminement": "LARIVIERE ARNONCOURT", + "nomCommune": "LARIVIERE ARNONCOURT" }, { - "codePostal": "49600", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "55700", + "codeCommune": "55036", + "libelleAcheminement": "BEAUCLAIR", + "nomCommune": "BEAUCLAIR" }, { - "codePostal": "59600", - "codeCommune": "59370", - "libelleAcheminement": "MAIRIEUX", - "nomCommune": "MAIRIEUX" + "codePostal": "63250", + "codeCommune": "63066", + "libelleAcheminement": "CELLES SUR DUROLLE", + "nomCommune": "CELLES SUR DUROLLE" }, { - "codePostal": "37400", - "codeCommune": "37003", - "libelleAcheminement": "AMBOISE", - "nomCommune": "AMBOISE" + "codePostal": "09240", + "codeCommune": "09001", + "libelleAcheminement": "AIGUES JUNTES", + "nomCommune": "AIGUES JUNTES" }, { - "codePostal": "31550", - "codeCommune": "31002", - "libelleAcheminement": "AIGNES", - "nomCommune": "AIGNES" + "codePostal": "62130", + "codeCommune": "62767", + "libelleAcheminement": "ST POL SUR TERNOISE", + "nomCommune": "ST POL SUR TERNOISE" }, { - "codePostal": "49640", - "codeCommune": "49220", - "libelleAcheminement": "MORANNES SUR SARTHE DAUMERAY", - "nomCommune": "MORANNES SUR SARTHE DAUMERAY" + "codePostal": "52360", + "codeCommune": "52280", + "libelleAcheminement": "LECEY", + "nomCommune": "LECEY" }, { - "codePostal": "59870", - "codeCommune": "59375", - "libelleAcheminement": "MARCHIENNES", - "nomCommune": "MARCHIENNES" + "codePostal": "55250", + "codeCommune": "55038", + "libelleAcheminement": "BEAULIEU EN ARGONNE", + "nomCommune": "BEAULIEU EN ARGONNE" }, { - "codePostal": "37110", - "codeCommune": "37010", - "libelleAcheminement": "AUZOUER EN TOURAINE", - "nomCommune": "AUZOUER EN TOURAINE" + "codePostal": "63122", + "codeCommune": "63070", + "libelleAcheminement": "CEYRAT", + "nomCommune": "CEYRAT" }, { - "codePostal": "31440", - "codeCommune": "31015", - "libelleAcheminement": "ARGUT DESSOUS", - "nomCommune": "ARGUT DESSOUS" + "codePostal": "09800", + "codeCommune": "09014", + "libelleAcheminement": "ARGEIN", + "nomCommune": "ARGEIN" }, { - "codePostal": "49390", - "codeCommune": "49221", - "libelleAcheminement": "MOULIHERNE", - "nomCommune": "MOULIHERNE" + "codePostal": "62870", + "codeCommune": "62768", + "libelleAcheminement": "ST REMY AU BOIS", + "nomCommune": "ST REMY AU BOIS" }, { - "codePostal": "59159", - "codeCommune": "59377", - "libelleAcheminement": "MARCOING", - "nomCommune": "MARCOING" + "codePostal": "52230", + "codeCommune": "52288", + "libelleAcheminement": "LEZEVILLE", + "nomCommune": "LEZEVILLE" }, { - "codePostal": "37220", - "codeCommune": "37012", - "libelleAcheminement": "AVON LES ROCHES", - "nomCommune": "AVON LES ROCHES" + "codePostal": "55100", + "codeCommune": "55042", + "libelleAcheminement": "BELLERAY", + "nomCommune": "BELLERAY" }, { - "codePostal": "31570", - "codeCommune": "31029", - "libelleAcheminement": "AURIN", - "nomCommune": "AURIN" + "codePostal": "63210", + "codeCommune": "63071", + "libelleAcheminement": "CEYSSAT", + "nomCommune": "CEYSSAT" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "09120", + "codeCommune": "09021", + "libelleAcheminement": "ARTIX", + "nomCommune": "ARTIX" }, { - "codePostal": "59770", - "codeCommune": "59383", - "libelleAcheminement": "MARLY", - "nomCommune": "MARLY" + "codePostal": "62430", + "codeCommune": "62771", + "libelleAcheminement": "SALLAUMINES", + "nomCommune": "SALLAUMINES" }, { - "codePostal": "37600", - "codeCommune": "37020", - "libelleAcheminement": "BEAULIEU LES LOCHES", - "nomCommune": "BEAULIEU LES LOCHES" + "codePostal": "52000", + "codeCommune": "52297", + "libelleAcheminement": "LUZY SUR MARNE", + "nomCommune": "LUZY SUR MARNE" }, { - "codePostal": "31440", - "codeCommune": "31040", - "libelleAcheminement": "BACHOS", - "nomCommune": "BACHOS" + "codePostal": "55100", + "codeCommune": "55045", + "libelleAcheminement": "BELRUPT EN VERDUNOIS", + "nomCommune": "BELRUPT EN VERDUNOIS" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "63600", + "codeCommune": "63081", + "libelleAcheminement": "CHAMPETIERES", + "nomCommune": "CHAMPETIERES" }, { - "codePostal": "59241", - "codeCommune": "59389", - "libelleAcheminement": "MASNIERES", - "nomCommune": "MASNIERES" + "codePostal": "09100", + "codeCommune": "09022", + "libelleAcheminement": "ARVIGNA", + "nomCommune": "ARVIGNA" }, { - "codePostal": "37420", - "codeCommune": "37022", - "libelleAcheminement": "BEAUMONT EN VERON", - "nomCommune": "BEAUMONT EN VERON" + "codePostal": "62830", + "codeCommune": "62773", + "libelleAcheminement": "SAMER", + "nomCommune": "SAMER" }, { - "codePostal": "31110", - "codeCommune": "31042", - "libelleAcheminement": "BAGNERES DE LUCHON", - "nomCommune": "BAGNERES DE LUCHON" + "codePostal": "52240", + "codeCommune": "52301", + "libelleAcheminement": "MAISONCELLES", + "nomCommune": "MAISONCELLES" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "55300", + "codeCommune": "55054", + "libelleAcheminement": "BISLEE", + "nomCommune": "BISLEE" }, { - "codePostal": "59172", - "codeCommune": "59391", - "libelleAcheminement": "MASTAING", - "nomCommune": "MASTAING" + "codePostal": "63340", + "codeCommune": "63091", + "libelleAcheminement": "CHARBONNIER LES MINES", + "nomCommune": "CHARBONNIER LES MINES" }, { - "codePostal": "37140", - "codeCommune": "37024", - "libelleAcheminement": "BENAIS", - "nomCommune": "BENAIS" + "codePostal": "09110", + "codeCommune": "09023", + "libelleAcheminement": "ASCOU", + "nomCommune": "ASCOU" }, { - "codePostal": "31440", - "codeCommune": "31046", - "libelleAcheminement": "BAREN", - "nomCommune": "BAREN" + "codePostal": "62231", + "codeCommune": "62774", + "libelleAcheminement": "SANGATTE", + "nomCommune": "SANGATTE" }, { - "codePostal": "49340", - "codeCommune": "49231", - "libelleAcheminement": "NUAILLE", - "nomCommune": "NUAILLE" + "codePostal": "52320", + "codeCommune": "52310", + "libelleAcheminement": "MARBEVILLE", + "nomCommune": "MARBEVILLE" }, { - "codePostal": "59600", - "codeCommune": "59392", - "libelleAcheminement": "MAUBEUGE", - "nomCommune": "MAUBEUGE" + "codePostal": "55400", + "codeCommune": "55055", + "libelleAcheminement": "BLANZEE", + "nomCommune": "BLANZEE" }, { - "codePostal": "37330", - "codeCommune": "37037", - "libelleAcheminement": "BRECHES", - "nomCommune": "BRECHES" + "codePostal": "63410", + "codeCommune": "63092", + "libelleAcheminement": "CHARBONNIERES LES VARENNES", + "nomCommune": "CHARBONNIERES LES VARENNES" }, { - "codePostal": "31360", - "codeCommune": "31050", - "libelleAcheminement": "BEAUCHALOT", - "nomCommune": "BEAUCHALOT" + "codePostal": "09800", + "codeCommune": "09025", + "libelleAcheminement": "AUCAZEIN", + "nomCommune": "AUCAZEIN" }, { - "codePostal": "49360", - "codeCommune": "49240", - "libelleAcheminement": "LA PLAINE", - "nomCommune": "LA PLAINE" + "codePostal": "62870", + "codeCommune": "62783", + "libelleAcheminement": "SAULCHOY", + "nomCommune": "SAULCHOY" }, { - "codePostal": "59158", - "codeCommune": "59393", - "libelleAcheminement": "MAULDE", - "nomCommune": "MAULDE" + "codePostal": "52360", + "codeCommune": "52311", + "libelleAcheminement": "MARCILLY EN BASSIGNY", + "nomCommune": "MARCILLY EN BASSIGNY" }, { - "codePostal": "37350", - "codeCommune": "37044", - "libelleAcheminement": "LA CELLE GUENAND", - "nomCommune": "LA CELLE GUENAND" + "codePostal": "55160", + "codeCommune": "55060", + "libelleAcheminement": "BONZEE", + "nomCommune": "BONZEE" }, { - "codePostal": "31370", - "codeCommune": "31051", - "libelleAcheminement": "BEAUFORT", - "nomCommune": "BEAUFORT" + "codePostal": "63410", + "codeCommune": "63093", + "libelleAcheminement": "CHARBONNIERES LES VIEILLES", + "nomCommune": "CHARBONNIERES LES VIEILLES" }, { - "codePostal": "49290", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "09800", + "codeCommune": "09027", + "libelleAcheminement": "AUGIREIN", + "nomCommune": "AUGIREIN" }, { - "codePostal": "59246", - "codeCommune": "59411", - "libelleAcheminement": "MONS EN PEVELE", - "nomCommune": "MONS EN PEVELE" + "codePostal": "62170", + "codeCommune": "62787", + "libelleAcheminement": "SEMPY", + "nomCommune": "SEMPY" }, { - "codePostal": "37460", - "codeCommune": "37046", - "libelleAcheminement": "CERE LA RONDE", - "nomCommune": "CERE LA RONDE" + "codePostal": "52200", + "codeCommune": "52312", + "libelleAcheminement": "MARDOR", + "nomCommune": "MARDOR" }, { - "codePostal": "31870", - "codeCommune": "31052", - "libelleAcheminement": "BEAUMONT SUR LEZE", - "nomCommune": "BEAUMONT SUR LEZE" + "codePostal": "55300", + "codeCommune": "55064", + "libelleAcheminement": "BOUQUEMONT", + "nomCommune": "BOUQUEMONT" }, { - "codePostal": "49290", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "63290", + "codeCommune": "63095", + "libelleAcheminement": "CHARNAT", + "nomCommune": "CHARNAT" }, { - "codePostal": "59158", - "codeCommune": "59418", - "libelleAcheminement": "MORTAGNE DU NORD", - "nomCommune": "MORTAGNE DU NORD" + "codePostal": "09220", + "codeCommune": "09030", + "libelleAcheminement": "AUZAT", + "nomCommune": "AUZAT" }, { - "codePostal": "37210", - "codeCommune": "37052", - "libelleAcheminement": "CHANCAY", - "nomCommune": "CHANCAY" + "codePostal": "62310", + "codeCommune": "62790", + "libelleAcheminement": "SENLIS", + "nomCommune": "SENLIS" }, { - "codePostal": "31290", - "codeCommune": "31054", - "libelleAcheminement": "BEAUTEVILLE", - "nomCommune": "BEAUTEVILLE" + "codePostal": "52140", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "49410", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "55120", + "codeCommune": "55068", + "libelleAcheminement": "BRABANT EN ARGONNE", + "nomCommune": "BRABANT EN ARGONNE" }, { - "codePostal": "59310", - "codeCommune": "59419", - "libelleAcheminement": "MOUCHIN", - "nomCommune": "MOUCHIN" + "codePostal": "63390", + "codeCommune": "63100", + "libelleAcheminement": "CHATEAUNEUF LES BAINS", + "nomCommune": "CHATEAUNEUF LES BAINS" }, { - "codePostal": "37390", - "codeCommune": "37054", - "libelleAcheminement": "CHANCEAUX SUR CHOISILLE", - "nomCommune": "CHANCEAUX SUR CHOISILLE" + "codePostal": "09250", + "codeCommune": "09031", + "libelleAcheminement": "AXIAT", + "nomCommune": "AXIAT" }, { - "codePostal": "31700", - "codeCommune": "31056", - "libelleAcheminement": "BEAUZELLE", - "nomCommune": "BEAUZELLE" + "codePostal": "62380", + "codeCommune": "62794", + "libelleAcheminement": "SETQUES", + "nomCommune": "SETQUES" }, { - "codePostal": "49410", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "52140", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "59161", - "codeCommune": "59422", - "libelleAcheminement": "NAVES", - "nomCommune": "NAVES" + "codePostal": "55150", + "codeCommune": "55071", + "libelleAcheminement": "BRANDEVILLE", + "nomCommune": "BRANDEVILLE" }, { - "codePostal": "37530", - "codeCommune": "37060", - "libelleAcheminement": "CHARGE", - "nomCommune": "CHARGE" + "codePostal": "63320", + "codeCommune": "63111", + "libelleAcheminement": "CLEMENSAT", + "nomCommune": "CLEMENSAT" }, { - "codePostal": "31540", - "codeCommune": "31060", - "libelleAcheminement": "BELESTA EN LAURAGAIS", - "nomCommune": "BELESTA EN LAURAGAIS" + "codePostal": "09110", + "codeCommune": "09032", + "libelleAcheminement": "AX LES THERMES", + "nomCommune": "AX LES THERMES" }, { - "codePostal": "49130", - "codeCommune": "49246", - "libelleAcheminement": "LES PONTS DE CE", - "nomCommune": "LES PONTS DE CE" + "codePostal": "62123", + "codeCommune": "62796", + "libelleAcheminement": "SIMENCOURT", + "nomCommune": "SIMENCOURT" }, { - "codePostal": "59554", - "codeCommune": "59428", - "libelleAcheminement": "NEUVILLE ST REMY", - "nomCommune": "NEUVILLE ST REMY" + "codePostal": "52700", + "codeCommune": "52342", + "libelleAcheminement": "MORIONVILLIERS", + "nomCommune": "MORIONVILLIERS" }, { - "codePostal": "37330", - "codeCommune": "37062", - "libelleAcheminement": "CHATEAU LA VALLIERE", - "nomCommune": "CHATEAU LA VALLIERE" + "codePostal": "55150", + "codeCommune": "55076", + "libelleAcheminement": "BREHEVILLE", + "nomCommune": "BREHEVILLE" }, { - "codePostal": "31440", - "codeCommune": "31067", - "libelleAcheminement": "BEZINS GARRAUX", - "nomCommune": "BEZINS GARRAUX" + "codePostal": "63100", + "codeCommune": "63113", + "libelleAcheminement": "CLERMONT FERRAND", + "nomCommune": "CLERMONT FERRAND" }, { - "codePostal": "49420", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "09230", + "codeCommune": "09033", + "libelleAcheminement": "BAGERT", + "nomCommune": "BAGERT" }, { - "codePostal": "59230", - "codeCommune": "59434", - "libelleAcheminement": "NIVELLE", - "nomCommune": "NIVELLE" + "codePostal": "62810", + "codeCommune": "62798", + "libelleAcheminement": "SOMBRIN", + "nomCommune": "SOMBRIN" }, { - "codePostal": "37350", - "codeCommune": "37064", - "libelleAcheminement": "CHAUMUSSAY", - "nomCommune": "CHAUMUSSAY" + "codePostal": "52160", + "codeCommune": "52344", + "libelleAcheminement": "MOUILLERON", + "nomCommune": "MOUILLERON" }, { - "codePostal": "31620", - "codeCommune": "31079", - "libelleAcheminement": "BOULOC", - "nomCommune": "BOULOC" + "codePostal": "55600", + "codeCommune": "55077", + "libelleAcheminement": "BREUX", + "nomCommune": "BREUX" }, { - "codePostal": "49520", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "63490", + "codeCommune": "63119", + "libelleAcheminement": "CONDAT LES MONTBOISSIER", + "nomCommune": "CONDAT LES MONTBOISSIER" }, { - "codePostal": "59670", - "codeCommune": "59436", - "libelleAcheminement": "NOORDPEENE", - "nomCommune": "NOORDPEENE" + "codePostal": "09800", + "codeCommune": "09035", + "libelleAcheminement": "BALAGUERES", + "nomCommune": "BALAGUERES" }, { - "codePostal": "37370", - "codeCommune": "37068", - "libelleAcheminement": "CHEMILLE SUR DEME", - "nomCommune": "CHEMILLE SUR DEME" + "codePostal": "62850", + "codeCommune": "62803", + "libelleAcheminement": "SURQUES", + "nomCommune": "SURQUES" }, { - "codePostal": "31570", - "codeCommune": "31082", - "libelleAcheminement": "BOURG ST BERNARD", - "nomCommune": "BOURG ST BERNARD" + "codePostal": "52000", + "codeCommune": "52349", + "libelleAcheminement": "NEUILLY SUR SUIZE", + "nomCommune": "NEUILLY SUR SUIZE" }, { - "codePostal": "49430", - "codeCommune": "49257", - "libelleAcheminement": "LES RAIRIES", - "nomCommune": "LES RAIRIES" + "codePostal": "55120", + "codeCommune": "55082", + "libelleAcheminement": "BROCOURT EN ARGONNE", + "nomCommune": "BROCOURT EN ARGONNE" }, { - "codePostal": "59670", - "codeCommune": "59443", - "libelleAcheminement": "OCHTEZEELE", - "nomCommune": "OCHTEZEELE" + "codePostal": "63730", + "codeCommune": "63120", + "libelleAcheminement": "CORENT", + "nomCommune": "CORENT" }, { - "codePostal": "37140", - "codeCommune": "37074", - "libelleAcheminement": "CHOUZE SUR LOIRE", - "nomCommune": "CHOUZE SUR LOIRE" + "codePostal": "09700", + "codeCommune": "09040", + "libelleAcheminement": "LA BASTIDE DE LORDAT", + "nomCommune": "LA BASTIDE DE LORDAT" }, { - "codePostal": "31480", - "codeCommune": "31096", - "libelleAcheminement": "CABANAC SEGUENVILLE", - "nomCommune": "CABANAC SEGUENVILLE" + "codePostal": "62810", + "codeCommune": "62804", + "libelleAcheminement": "SUS ST LEGER", + "nomCommune": "SUS ST LEGER" }, { - "codePostal": "49170", - "codeCommune": "49266", - "libelleAcheminement": "ST AUGUSTIN DES BOIS", - "nomCommune": "ST AUGUSTIN DES BOIS" + "codePostal": "52230", + "codeCommune": "52357", + "libelleAcheminement": "NONCOURT SUR LE RONGEANT", + "nomCommune": "NONCOURT SUR LE RONGEANT" }, { - "codePostal": "59530", - "codeCommune": "59468", - "libelleAcheminement": "POTELLE", - "nomCommune": "POTELLE" + "codePostal": "55190", + "codeCommune": "55084", + "libelleAcheminement": "BROUSSEY EN BLOIS", + "nomCommune": "BROUSSEY EN BLOIS" }, { - "codePostal": "37500", - "codeCommune": "37076", - "libelleAcheminement": "CINAIS", - "nomCommune": "CINAIS" + "codePostal": "63220", + "codeCommune": "63139", + "libelleAcheminement": "DORE L EGLISE", + "nomCommune": "DORE L EGLISE" }, { - "codePostal": "31460", - "codeCommune": "31097", - "libelleAcheminement": "LE CABANIAL", - "nomCommune": "LE CABANIAL" + "codePostal": "09000", + "codeCommune": "09044", + "libelleAcheminement": "BAULOU", + "nomCommune": "BAULOU" }, { - "codePostal": "49260", - "codeCommune": "49291", - "libelleAcheminement": "ST JUST SUR DIVE", - "nomCommune": "ST JUST SUR DIVE" + "codePostal": "62134", + "codeCommune": "62808", + "libelleAcheminement": "TENEUR", + "nomCommune": "TENEUR" }, { - "codePostal": "59840", - "codeCommune": "59470", - "libelleAcheminement": "PREMESQUES", - "nomCommune": "PREMESQUES" + "codePostal": "52110", + "codeCommune": "52359", + "libelleAcheminement": "NULLY", + "nomCommune": "NULLY" }, { - "codePostal": "37130", - "codeCommune": "37077", - "libelleAcheminement": "CINQ MARS LA PILE", - "nomCommune": "CINQ MARS LA PILE" + "codePostal": "55300", + "codeCommune": "55093", + "libelleAcheminement": "BUXIERES SOUS LES COTES", + "nomCommune": "BUXIERES SOUS LES COTES" }, { - "codePostal": "31480", - "codeCommune": "31098", - "libelleAcheminement": "CADOURS", - "nomCommune": "CADOURS" + "codePostal": "63850", + "codeCommune": "63144", + "libelleAcheminement": "EGLISENEUVE D ENTRAIGUES", + "nomCommune": "EGLISENEUVE D ENTRAIGUES" }, { - "codePostal": "49190", - "codeCommune": "49292", - "libelleAcheminement": "VAL DU LAYON", - "nomCommune": "VAL DU LAYON" + "codePostal": "09800", + "codeCommune": "09069", + "libelleAcheminement": "BUZAN", + "nomCommune": "BUZAN" }, { - "codePostal": "59288", - "codeCommune": "59472", - "libelleAcheminement": "PREUX AU BOIS", - "nomCommune": "PREUX AU BOIS" + "codePostal": "62127", + "codeCommune": "62809", + "libelleAcheminement": "TERNAS", + "nomCommune": "TERNAS" }, { - "codePostal": "37800", - "codeCommune": "37098", - "libelleAcheminement": "DRACHE", - "nomCommune": "DRACHE" + "codePostal": "52360", + "codeCommune": "52363", + "libelleAcheminement": "ORBIGNY AU VAL", + "nomCommune": "ORBIGNY AU VAL" }, { - "codePostal": "31470", - "codeCommune": "31101", - "libelleAcheminement": "CAMBERNARD", - "nomCommune": "CAMBERNARD" + "codePostal": "55400", + "codeCommune": "55094", + "libelleAcheminement": "BUZY DARMONT", + "nomCommune": "BUZY DARMONT" }, { - "codePostal": "49070", - "codeCommune": "49298", - "libelleAcheminement": "ST LEGER DE LINIERES", - "nomCommune": "ST LEGER DE LINIERES" + "codePostal": "63720", + "codeCommune": "63149", + "libelleAcheminement": "ENTRAIGUES", + "nomCommune": "ENTRAIGUES" }, { - "codePostal": "59185", - "codeCommune": "59477", - "libelleAcheminement": "PROVIN", - "nomCommune": "PROVIN" + "codePostal": "09350", + "codeCommune": "09075", + "libelleAcheminement": "CAMPAGNE SUR ARIZE", + "nomCommune": "CAMPAGNE SUR ARIZE" }, { - "codePostal": "37190", - "codeCommune": "37099", - "libelleAcheminement": "DRUYE", - "nomCommune": "DRUYE" + "codePostal": "62130", + "codeCommune": "62813", + "libelleAcheminement": "LA THIEULOYE", + "nomCommune": "LA THIEULOYE" }, { - "codePostal": "31310", - "codeCommune": "31103", - "libelleAcheminement": "CANENS", - "nomCommune": "CANENS" + "codePostal": "52200", + "codeCommune": "52366", + "libelleAcheminement": "ORMANCEY", + "nomCommune": "ORMANCEY" }, { - "codePostal": "49170", - "codeCommune": "49298", - "libelleAcheminement": "ST LEGER DE LINIERES", - "nomCommune": "ST LEGER DE LINIERES" + "codePostal": "55210", + "codeCommune": "55096", + "libelleAcheminement": "CHAILLON", + "nomCommune": "CHAILLON" }, { - "codePostal": "59680", - "codeCommune": "59483", - "libelleAcheminement": "QUIEVELON", - "nomCommune": "QUIEVELON" + "codePostal": "63390", + "codeCommune": "63152", + "libelleAcheminement": "ESPINASSE", + "nomCommune": "ESPINASSE" }, { - "codePostal": "37150", - "codeCommune": "37110", - "libelleAcheminement": "FRANCUEIL", - "nomCommune": "FRANCUEIL" + "codePostal": "09130", + "codeCommune": "09079", + "libelleAcheminement": "CARLA BAYLE", + "nomCommune": "CARLA BAYLE" }, { - "codePostal": "31260", - "codeCommune": "31110", - "libelleAcheminement": "CASSAGNE", - "nomCommune": "CASSAGNE" + "codePostal": "62127", + "codeCommune": "62820", + "libelleAcheminement": "TINCQUES", + "nomCommune": "TINCQUES" }, { - "codePostal": "49450", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "52150", + "codeCommune": "52372", + "libelleAcheminement": "OUTREMECOURT", + "nomCommune": "OUTREMECOURT" }, { - "codePostal": "59320", - "codeCommune": "59487", - "libelleAcheminement": "RADINGHEM EN WEPPES", - "nomCommune": "RADINGHEM EN WEPPES" + "codePostal": "55100", + "codeCommune": "55099", + "libelleAcheminement": "CHAMPNEUVILLE", + "nomCommune": "CHAMPNEUVILLE" }, { - "codePostal": "37220", - "codeCommune": "37119", - "libelleAcheminement": "L ILE BOUCHARD", - "nomCommune": "L ILE BOUCHARD" + "codePostal": "63570", + "codeCommune": "63156", + "libelleAcheminement": "ESTEIL", + "nomCommune": "ESTEIL" }, { - "codePostal": "31230", - "codeCommune": "31115", - "libelleAcheminement": "CASTELGAILLARD", - "nomCommune": "CASTELGAILLARD" + "codePostal": "09100", + "codeCommune": "09081", + "libelleAcheminement": "LE CARLARET", + "nomCommune": "LE CARLARET" }, { - "codePostal": "49450", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "62830", + "codeCommune": "62821", + "libelleAcheminement": "TINGRY", + "nomCommune": "TINGRY" }, { - "codePostal": "59177", - "codeCommune": "59490", - "libelleAcheminement": "RAINSARS", - "nomCommune": "RAINSARS" + "codePostal": "52400", + "codeCommune": "52377", + "libelleAcheminement": "PARNOY EN BASSIGNY", + "nomCommune": "PARNOY EN BASSIGNY" }, { - "codePostal": "37270", - "codeCommune": "37124", - "libelleAcheminement": "LARCAY", - "nomCommune": "LARCAY" + "codePostal": "55270", + "codeCommune": "55103", + "libelleAcheminement": "CHARPENTRY", + "nomCommune": "CHARPENTRY" }, { - "codePostal": "31780", - "codeCommune": "31116", - "libelleAcheminement": "CASTELGINEST", - "nomCommune": "CASTELGINEST" + "codePostal": "63360", + "codeCommune": "63164", + "libelleAcheminement": "GERZAT", + "nomCommune": "GERZAT" }, { - "codePostal": "49260", - "codeCommune": "49302", - "libelleAcheminement": "ST MACAIRE DU BOIS", - "nomCommune": "ST MACAIRE DU BOIS" + "codePostal": "09800", + "codeCommune": "09085", + "libelleAcheminement": "CASTILLON EN COUSERANS", + "nomCommune": "CASTILLON EN COUSERANS" }, { - "codePostal": "59590", - "codeCommune": "59491", - "libelleAcheminement": "RAISMES", - "nomCommune": "RAISMES" + "codePostal": "62630", + "codeCommune": "62832", + "libelleAcheminement": "TUBERSENT", + "nomCommune": "TUBERSENT" }, { - "codePostal": "37500", - "codeCommune": "37126", - "libelleAcheminement": "LERNE", - "nomCommune": "LERNE" + "codePostal": "52300", + "codeCommune": "52378", + "libelleAcheminement": "PAROY SUR SAULX", + "nomCommune": "PAROY SUR SAULX" }, { - "codePostal": "31110", - "codeCommune": "31125", - "libelleAcheminement": "CATHERVIELLE", - "nomCommune": "CATHERVIELLE" + "codePostal": "55300", + "codeCommune": "55111", + "libelleAcheminement": "CHAUVONCOURT", + "nomCommune": "CHAUVONCOURT" }, { - "codePostal": "49170", - "codeCommune": "49306", - "libelleAcheminement": "ST MARTIN DU FOUILLOUX", - "nomCommune": "ST MARTIN DU FOUILLOUX" + "codePostal": "63470", + "codeCommune": "63175", + "libelleAcheminement": "HERMENT", + "nomCommune": "HERMENT" }, { - "codePostal": "59173", - "codeCommune": "59497", - "libelleAcheminement": "RENESCURE", - "nomCommune": "RENESCURE" + "codePostal": "09160", + "codeCommune": "09086", + "libelleAcheminement": "CAUMONT", + "nomCommune": "CAUMONT" }, { - "codePostal": "37130", - "codeCommune": "37128", - "libelleAcheminement": "LIGNIERES DE TOURAINE", - "nomCommune": "LIGNIERES DE TOURAINE" + "codePostal": "62880", + "codeCommune": "62842", + "libelleAcheminement": "VENDIN LE VIEIL", + "nomCommune": "VENDIN LE VIEIL" }, { - "codePostal": "31110", - "codeCommune": "31127", - "libelleAcheminement": "CAUBOUS", - "nomCommune": "CAUBOUS" + "codePostal": "52500", + "codeCommune": "52388", + "libelleAcheminement": "PIERREMONT SUR AMANCE", + "nomCommune": "PIERREMONT SUR AMANCE" }, { - "codePostal": "49630", - "codeCommune": "49307", - "libelleAcheminement": "LOIRE AUTHION", - "nomCommune": "LOIRE AUTHION" + "codePostal": "55270", + "codeCommune": "55113", + "libelleAcheminement": "CHEPPY", + "nomCommune": "CHEPPY" }, { - "codePostal": "59277", - "codeCommune": "59502", - "libelleAcheminement": "RIEUX EN CAMBRESIS", - "nomCommune": "RIEUX EN CAMBRESIS" + "codePostal": "63290", + "codeCommune": "63184", + "libelleAcheminement": "LACHAUX", + "nomCommune": "LACHAUX" }, { - "codePostal": "37500", - "codeCommune": "37129", - "libelleAcheminement": "LIGRE", - "nomCommune": "LIGRE" + "codePostal": "09250", + "codeCommune": "09087", + "libelleAcheminement": "CAUSSOU", + "nomCommune": "CAUSSOU" }, { - "codePostal": "31440", - "codeCommune": "31132", - "libelleAcheminement": "CAZAUX LAYRISSE", - "nomCommune": "CAZAUX LAYRISSE" + "codePostal": "62310", + "codeCommune": "62843", + "libelleAcheminement": "VERCHIN", + "nomCommune": "VERCHIN" }, { - "codePostal": "49400", - "codeCommune": "49328", - "libelleAcheminement": "SAUMUR", - "nomCommune": "SAUMUR" + "codePostal": "52360", + "codeCommune": "52392", + "libelleAcheminement": "PLESNOY", + "nomCommune": "PLESNOY" }, { - "codePostal": "59990", - "codeCommune": "59505", - "libelleAcheminement": "ROMBIES ET MARCHIPONT", - "nomCommune": "ROMBIES ET MARCHIPONT" + "codePostal": "55200", + "codeCommune": "55114", + "libelleAcheminement": "CHONVILLE MALAUMONT", + "nomCommune": "CHONVILLE MALAUMONT" }, { - "codePostal": "37400", - "codeCommune": "37138", - "libelleAcheminement": "LUSSAULT SUR LOIRE", - "nomCommune": "LUSSAULT SUR LOIRE" + "codePostal": "63380", + "codeCommune": "63186", + "libelleAcheminement": "LANDOGNE", + "nomCommune": "LANDOGNE" }, { - "codePostal": "31110", - "codeCommune": "31133", - "libelleAcheminement": "CAZEAUX DE LARBOUST", - "nomCommune": "CAZEAUX DE LARBOUST" + "codePostal": "09250", + "codeCommune": "09088", + "libelleAcheminement": "CAYCHAX", + "nomCommune": "CAYCHAX" }, { - "codePostal": "49170", - "codeCommune": "49329", - "libelleAcheminement": "SAVENNIERES", - "nomCommune": "SAVENNIERES" + "codePostal": "62980", + "codeCommune": "62846", + "libelleAcheminement": "VERMELLES", + "nomCommune": "VERMELLES" }, { - "codePostal": "59223", - "codeCommune": "59508", - "libelleAcheminement": "RONCQ", - "nomCommune": "RONCQ" + "codePostal": "52500", + "codeCommune": "52394", + "libelleAcheminement": "POINSON LES FAYL", + "nomCommune": "POINSON LES FAYL" }, { - "codePostal": "37330", - "codeCommune": "37146", - "libelleAcheminement": "MARCILLY SUR MAULNE", - "nomCommune": "MARCILLY SUR MAULNE" + "codePostal": "55120", + "codeCommune": "55117", + "libelleAcheminement": "CLERMONT EN ARGONNE", + "nomCommune": "CLERMONT EN ARGONNE" }, { - "codePostal": "31620", - "codeCommune": "31136", - "libelleAcheminement": "CEPET", - "nomCommune": "CEPET" + "codePostal": "63700", + "codeCommune": "63187", + "libelleAcheminement": "LAPEYROUSE", + "nomCommune": "LAPEYROUSE" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "09230", + "codeCommune": "09098", + "libelleAcheminement": "CONTRAZY", + "nomCommune": "CONTRAZY" }, { - "codePostal": "59100", - "codeCommune": "59512", - "libelleAcheminement": "ROUBAIX", - "nomCommune": "ROUBAIX" + "codePostal": "62144", + "codeCommune": "62854", + "libelleAcheminement": "VILLERS AU BOIS", + "nomCommune": "VILLERS AU BOIS" }, { - "codePostal": "37800", - "codeCommune": "37147", - "libelleAcheminement": "MARCILLY SUR VIENNE", - "nomCommune": "MARCILLY SUR VIENNE" + "codePostal": "52400", + "codeCommune": "52400", + "libelleAcheminement": "LE CHATELET SUR MEUSE", + "nomCommune": "LE CHATELET SUR MEUSE" }, { - "codePostal": "31290", - "codeCommune": "31137", - "libelleAcheminement": "CESSALES", - "nomCommune": "CESSALES" + "codePostal": "55000", + "codeCommune": "55120", + "libelleAcheminement": "COMBLES EN BARROIS", + "nomCommune": "COMBLES EN BARROIS" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "63690", + "codeCommune": "63190", + "libelleAcheminement": "LARODDE", + "nomCommune": "LARODDE" }, { - "codePostal": "59530", - "codeCommune": "59518", - "libelleAcheminement": "RUESNES", - "nomCommune": "RUESNES" + "codePostal": "09000", + "codeCommune": "09099", + "libelleAcheminement": "COS", + "nomCommune": "COS" }, { - "codePostal": "37380", - "codeCommune": "37153", - "libelleAcheminement": "MONNAIE", - "nomCommune": "MONNAIE" + "codePostal": "62138", + "codeCommune": "62863", + "libelleAcheminement": "VIOLAINES", + "nomCommune": "VIOLAINES" }, { - "codePostal": "31110", - "codeCommune": "31146", - "libelleAcheminement": "CIRES", - "nomCommune": "CIRES" + "codePostal": "52190", + "codeCommune": "52405", + "libelleAcheminement": "LE MONTSAUGEONNAIS", + "nomCommune": "LE MONTSAUGEONNAIS" }, { - "codePostal": "49520", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "55000", + "codeCommune": "55123", + "libelleAcheminement": "LES HAUTS DE CHEE", + "nomCommune": "LES HAUTS DE CHEE" }, { - "codePostal": "59226", - "codeCommune": "59519", - "libelleAcheminement": "RUMEGIES", - "nomCommune": "RUMEGIES" + "codePostal": "63320", + "codeCommune": "63199", + "libelleAcheminement": "LUDESSE", + "nomCommune": "LUDESSE" }, { - "codePostal": "37270", - "codeCommune": "37156", - "libelleAcheminement": "MONTLOUIS SUR LOIRE", - "nomCommune": "MONTLOUIS SUR LOIRE" + "codePostal": "09120", + "codeCommune": "09101", + "libelleAcheminement": "COUSSA", + "nomCommune": "COUSSA" }, { - "codePostal": "31210", - "codeCommune": "31147", - "libelleAcheminement": "CLARAC", - "nomCommune": "CLARAC" + "codePostal": "62450", + "codeCommune": "62876", + "libelleAcheminement": "WARLENCOURT EAUCOURT", + "nomCommune": "WARLENCOURT EAUCOURT" }, { - "codePostal": "49400", - "codeCommune": "49341", - "libelleAcheminement": "SOUZAY CHAMPIGNY", - "nomCommune": "SOUZAY CHAMPIGNY" + "codePostal": "52130", + "codeCommune": "52413", + "libelleAcheminement": "RACHECOURT SUZEMONT", + "nomCommune": "RACHECOURT SUZEMONT" }, { - "codePostal": "59213", - "codeCommune": "59537", - "libelleAcheminement": "ST MARTIN SUR ECAILLON", - "nomCommune": "ST MARTIN SUR ECAILLON" + "codePostal": "55800", + "codeCommune": "55134", + "libelleAcheminement": "COUVONGES", + "nomCommune": "COUVONGES" }, { - "codePostal": "37800", - "codeCommune": "37174", - "libelleAcheminement": "NOUATRE", - "nomCommune": "NOUATRE" + "codePostal": "63510", + "codeCommune": "63204", + "libelleAcheminement": "MALINTRAT", + "nomCommune": "MALINTRAT" }, { - "codePostal": "31230", - "codeCommune": "31152", - "libelleAcheminement": "COUEILLES", - "nomCommune": "COUEILLES" + "codePostal": "09500", + "codeCommune": "09102", + "libelleAcheminement": "COUTENS", + "nomCommune": "COUTENS" }, { - "codePostal": "49280", - "codeCommune": "49343", - "libelleAcheminement": "LA TESSOUALLE", - "nomCommune": "LA TESSOUALLE" + "codePostal": "62810", + "codeCommune": "62879", + "libelleAcheminement": "WARLUZEL", + "nomCommune": "WARLUZEL" }, { - "codePostal": "59143", - "codeCommune": "59538", - "libelleAcheminement": "ST MOMELIN", - "nomCommune": "ST MOMELIN" + "codePostal": "52140", + "codeCommune": "52416", + "libelleAcheminement": "RANGECOURT", + "nomCommune": "RANGECOURT" }, { - "codePostal": "37380", - "codeCommune": "37175", - "libelleAcheminement": "NOUZILLY", - "nomCommune": "NOUZILLY" + "codePostal": "55000", + "codeCommune": "55138", + "libelleAcheminement": "CULEY", + "nomCommune": "CULEY" }, { - "codePostal": "31210", - "codeCommune": "31158", - "libelleAcheminement": "CUGURON", - "nomCommune": "CUGURON" + "codePostal": "63480", + "codeCommune": "63207", + "libelleAcheminement": "MARAT", + "nomCommune": "MARAT" }, { - "codePostal": "49220", - "codeCommune": "49344", - "libelleAcheminement": "THORIGNE D ANJOU", - "nomCommune": "THORIGNE D ANJOU" + "codePostal": "09800", + "codeCommune": "09111", + "libelleAcheminement": "ENGOMER", + "nomCommune": "ENGOMER" }, { - "codePostal": "59730", - "codeCommune": "59541", - "libelleAcheminement": "ST PYTHON", - "nomCommune": "ST PYTHON" + "codePostal": "62142", + "codeCommune": "62880", + "libelleAcheminement": "LE WAST", + "nomCommune": "LE WAST" }, { - "codePostal": "37210", - "codeCommune": "37179", - "libelleAcheminement": "PARCAY MESLAY", - "nomCommune": "PARCAY MESLAY" + "codePostal": "52120", + "codeCommune": "52422", + "libelleAcheminement": "RICHEBOURG", + "nomCommune": "RICHEBOURG" }, { - "codePostal": "31210", - "codeCommune": "31159", - "libelleAcheminement": "LE CUING", - "nomCommune": "LE CUING" + "codePostal": "55110", + "codeCommune": "55140", + "libelleAcheminement": "CUNEL", + "nomCommune": "CUNEL" }, { - "codePostal": "49125", - "codeCommune": "49347", - "libelleAcheminement": "TIERCE", - "nomCommune": "TIERCE" + "codePostal": "63230", + "codeCommune": "63219", + "libelleAcheminement": "MAZAYE", + "nomCommune": "MAZAYE" }, { - "codePostal": "59360", - "codeCommune": "59545", - "libelleAcheminement": "ST SOUPLET", - "nomCommune": "ST SOUPLET" + "codePostal": "09200", + "codeCommune": "09114", + "libelleAcheminement": "ERP", + "nomCommune": "ERP" }, { - "codePostal": "37220", - "codeCommune": "37180", - "libelleAcheminement": "PARCAY SUR VIENNE", - "nomCommune": "PARCAY SUR VIENNE" + "codePostal": "62380", + "codeCommune": "62882", + "libelleAcheminement": "WAVRANS SUR L AA", + "nomCommune": "WAVRANS SUR L AA" }, { - "codePostal": "31700", - "codeCommune": "31160", - "libelleAcheminement": "DAUX", - "nomCommune": "DAUX" + "codePostal": "52700", + "codeCommune": "52423", + "libelleAcheminement": "RIMAUCOURT", + "nomCommune": "RIMAUCOURT" }, { - "codePostal": "49360", - "codeCommune": "49352", - "libelleAcheminement": "TOUTLEMONDE", - "nomCommune": "TOUTLEMONDE" + "codePostal": "55130", + "codeCommune": "55150", + "libelleAcheminement": "DEMANGE BAUDIGNECOURT", + "nomCommune": "DEMANGE BAUDIGNECOURT" }, { - "codePostal": "59216", - "codeCommune": "59555", - "libelleAcheminement": "SARS POTERIES", - "nomCommune": "SARS POTERIES" + "codePostal": "63750", + "codeCommune": "63225", + "libelleAcheminement": "MESSEIX", + "nomCommune": "MESSEIX" }, { - "codePostal": "37350", - "codeCommune": "37181", - "libelleAcheminement": "PAULMY", - "nomCommune": "PAULMY" + "codePostal": "09200", + "codeCommune": "09119", + "libelleAcheminement": "EYCHEIL", + "nomCommune": "EYCHEIL" }, { - "codePostal": "31420", - "codeCommune": "31168", - "libelleAcheminement": "EOUX", - "nomCommune": "EOUX" + "codePostal": "62126", + "codeCommune": "62894", + "libelleAcheminement": "WIMILLE", + "nomCommune": "WIMILLE" }, { - "codePostal": "49800", - "codeCommune": "49353", - "libelleAcheminement": "TRELAZE", - "nomCommune": "TRELAZE" + "codePostal": "52600", + "codeCommune": "52424", + "libelleAcheminement": "RIVIERES LE BOIS", + "nomCommune": "RIVIERES LE BOIS" }, { - "codePostal": "59990", - "codeCommune": "59557", - "libelleAcheminement": "SAULTAIN", - "nomCommune": "SAULTAIN" + "codePostal": "55240", + "codeCommune": "55158", + "libelleAcheminement": "DOMMARY BARONCOURT", + "nomCommune": "DOMMARY BARONCOURT" }, { - "codePostal": "37600", - "codeCommune": "37183", - "libelleAcheminement": "PERRUSSON", - "nomCommune": "PERRUSSON" + "codePostal": "63111", + "codeCommune": "63226", + "libelleAcheminement": "MUR SUR ALLIER", + "nomCommune": "MUR SUR ALLIER" }, { - "codePostal": "31350", - "codeCommune": "31170", - "libelleAcheminement": "ESCANECRABE", - "nomCommune": "ESCANECRABE" + "codePostal": "09130", + "codeCommune": "09124", + "libelleAcheminement": "LE FOSSAT", + "nomCommune": "LE FOSSAT" }, { - "codePostal": "49400", - "codeCommune": "49362", - "libelleAcheminement": "VARRAINS", - "nomCommune": "VARRAINS" + "codePostal": "62410", + "codeCommune": "62895", + "libelleAcheminement": "WINGLES", + "nomCommune": "WINGLES" }, { - "codePostal": "59227", - "codeCommune": "59558", - "libelleAcheminement": "SAULZOIR", - "nomCommune": "SAULZOIR" + "codePostal": "52330", + "codeCommune": "52426", + "libelleAcheminement": "RIZAUCOURT BUCHEY", + "nomCommune": "RIZAUCOURT BUCHEY" }, { - "codePostal": "37120", - "codeCommune": "37191", - "libelleAcheminement": "RAZINES", - "nomCommune": "RAZINES" + "codePostal": "55300", + "codeCommune": "55159", + "libelleAcheminement": "DOMPCEVRIN", + "nomCommune": "DOMPCEVRIN" }, { - "codePostal": "31230", - "codeCommune": "31178", - "libelleAcheminement": "FABAS", - "nomCommune": "FABAS" + "codePostal": "63310", + "codeCommune": "63232", + "libelleAcheminement": "MONS", + "nomCommune": "MONS" }, { - "codePostal": "49390", - "codeCommune": "49368", - "libelleAcheminement": "VERNANTES", - "nomCommune": "VERNANTES" + "codePostal": "09290", + "codeCommune": "09127", + "libelleAcheminement": "GABRE", + "nomCommune": "GABRE" }, { - "codePostal": "59730", - "codeCommune": "59571", - "libelleAcheminement": "SOLESMES", - "nomCommune": "SOLESMES" + "codePostal": "62890", + "codeCommune": "62904", + "libelleAcheminement": "ZOUAFQUES", + "nomCommune": "ZOUAFQUES" }, { - "codePostal": "37340", - "codeCommune": "37198", - "libelleAcheminement": "RILLE", - "nomCommune": "RILLE" + "codePostal": "52210", + "codeCommune": "52431", + "libelleAcheminement": "ROCHETAILLEE", + "nomCommune": "ROCHETAILLEE" }, { - "codePostal": "31150", - "codeCommune": "31182", - "libelleAcheminement": "FENOUILLET", - "nomCommune": "FENOUILLET" + "codePostal": "55160", + "codeCommune": "55163", + "libelleAcheminement": "DONCOURT AUX TEMPLIERS", + "nomCommune": "DONCOURT AUX TEMPLIERS" }, { - "codePostal": "50180", - "codeCommune": "50002", - "libelleAcheminement": "AGNEAUX", - "nomCommune": "AGNEAUX" + "codePostal": "63160", + "codeCommune": "63239", + "libelleAcheminement": "MONTMORIN", + "nomCommune": "MONTMORIN" }, { - "codePostal": "59740", - "codeCommune": "59573", - "libelleAcheminement": "SOLRINNES", - "nomCommune": "SOLRINNES" + "codePostal": "09190", + "codeCommune": "09128", + "libelleAcheminement": "GAJAN", + "nomCommune": "GAJAN" }, { - "codePostal": "37500", - "codeCommune": "37201", - "libelleAcheminement": "RIVIERE", - "nomCommune": "RIVIERE" + "codePostal": "62820", + "codeCommune": "62907", + "libelleAcheminement": "LIBERCOURT", + "nomCommune": "LIBERCOURT" }, { - "codePostal": "31130", - "codeCommune": "31184", - "libelleAcheminement": "FLOURENS", - "nomCommune": "FLOURENS" + "codePostal": "52260", + "codeCommune": "52432", + "libelleAcheminement": "ROLAMPONT", + "nomCommune": "ROLAMPONT" }, { - "codePostal": "50170", - "codeCommune": "50019", - "libelleAcheminement": "AUCEY LA PLAINE", - "nomCommune": "AUCEY LA PLAINE" + "codePostal": "55600", + "codeCommune": "55169", + "libelleAcheminement": "ECOUVIEZ", + "nomCommune": "ECOUVIEZ" }, { - "codePostal": "59380", - "codeCommune": "59576", - "libelleAcheminement": "SPYCKER", - "nomCommune": "SPYCKER" + "codePostal": "63200", + "codeCommune": "63244", + "libelleAcheminement": "CHAMBARON SUR MORGE", + "nomCommune": "CHAMBARON SUR MORGE" }, { - "codePostal": "37190", - "codeCommune": "37205", - "libelleAcheminement": "SACHE", - "nomCommune": "SACHE" + "codePostal": "09400", + "codeCommune": "09152", + "libelleAcheminement": "LAPEGE", + "nomCommune": "LAPEGE" }, { - "codePostal": "31140", - "codeCommune": "31186", - "libelleAcheminement": "FONBEAUZARD", - "nomCommune": "FONBEAUZARD" + "codePostal": "63260", + "codeCommune": "63013", + "libelleAcheminement": "AUBIAT", + "nomCommune": "AUBIAT" }, { - "codePostal": "50630", - "codeCommune": "50022", - "libelleAcheminement": "AUMEVILLE LESTRE", - "nomCommune": "AUMEVILLE LESTRE" + "codePostal": "52160", + "codeCommune": "52439", + "libelleAcheminement": "ROUVRES SUR AUBE", + "nomCommune": "ROUVRES SUR AUBE" }, { - "codePostal": "59229", - "codeCommune": "59588", - "libelleAcheminement": "TETEGHEM COUDEKERQUE VILLAGE", - "nomCommune": "TETEGHEM COUDEKERQUE VILLAGE" + "codePostal": "55260", + "codeCommune": "55175", + "libelleAcheminement": "ERIZE LA BRULEE", + "nomCommune": "ERIZE LA BRULEE" }, { - "codePostal": "37600", - "codeCommune": "37222", - "libelleAcheminement": "ST JEAN ST GERMAIN", - "nomCommune": "ST JEAN ST GERMAIN" + "codePostal": "63200", + "codeCommune": "63245", + "libelleAcheminement": "MOZAC", + "nomCommune": "MOZAC" }, { - "codePostal": "31470", - "codeCommune": "31188", - "libelleAcheminement": "FONTENILLES", - "nomCommune": "FONTENILLES" + "codePostal": "09310", + "codeCommune": "09159", + "libelleAcheminement": "LASSUR", + "nomCommune": "LASSUR" }, { - "codePostal": "50500", - "codeCommune": "50024", - "libelleAcheminement": "AUXAIS", - "nomCommune": "AUXAIS" + "codePostal": "63510", + "codeCommune": "63019", + "libelleAcheminement": "AULNAT", + "nomCommune": "AULNAT" }, { - "codePostal": "59390", - "codeCommune": "59598", - "libelleAcheminement": "TOUFFLERS", - "nomCommune": "TOUFFLERS" + "codePostal": "52230", + "codeCommune": "52443", + "libelleAcheminement": "SAILLY", + "nomCommune": "SAILLY" }, { - "codePostal": "37130", - "codeCommune": "37232", - "libelleAcheminement": "COTEAUX SUR LOIRE", - "nomCommune": "COTEAUX SUR LOIRE" + "codePostal": "55200", + "codeCommune": "55184", + "libelleAcheminement": "EUVILLE", + "nomCommune": "EUVILLE" }, { - "codePostal": "31440", - "codeCommune": "31190", - "libelleAcheminement": "FOS", - "nomCommune": "FOS" + "codePostal": "63790", + "codeCommune": "63247", + "libelleAcheminement": "MUROL", + "nomCommune": "MUROL" }, { - "codePostal": "50270", - "codeCommune": "50031", - "libelleAcheminement": "BARNEVILLE CARTERET", - "nomCommune": "BARNEVILLE CARTERET" + "codePostal": "09100", + "codeCommune": "09163", + "libelleAcheminement": "LESCOUSSE", + "nomCommune": "LESCOUSSE" }, { - "codePostal": "59980", - "codeCommune": "59604", - "libelleAcheminement": "TROISVILLES", - "nomCommune": "TROISVILLES" + "codePostal": "63590", + "codeCommune": "63023", + "libelleAcheminement": "AUZELLES", + "nomCommune": "AUZELLES" }, { - "codePostal": "37110", - "codeCommune": "37240", - "libelleAcheminement": "SAUNAY", - "nomCommune": "SAUNAY" + "codePostal": "52190", + "codeCommune": "52445", + "libelleAcheminement": "ST BROINGT LE BOIS", + "nomCommune": "ST BROINGT LE BOIS" }, { - "codePostal": "31160", - "codeCommune": "31191", - "libelleAcheminement": "FOUGARON", - "nomCommune": "FOUGARON" + "codePostal": "55250", + "codeCommune": "55185", + "libelleAcheminement": "EVRES", + "nomCommune": "EVRES" }, { - "codePostal": "50150", - "codeCommune": "50040", - "libelleAcheminement": "BEAUFICEL", - "nomCommune": "BEAUFICEL" + "codePostal": "63290", + "codeCommune": "63253", + "libelleAcheminement": "NOALHAT", + "nomCommune": "NOALHAT" }, { - "codePostal": "59530", - "codeCommune": "59619", - "libelleAcheminement": "VILLEREAU", - "nomCommune": "VILLEREAU" + "codePostal": "09300", + "codeCommune": "09166", + "libelleAcheminement": "LEYCHERT", + "nomCommune": "LEYCHERT" }, { - "codePostal": "37420", - "codeCommune": "37242", - "libelleAcheminement": "SAVIGNY EN VERON", - "nomCommune": "SAVIGNY EN VERON" + "codePostal": "63500", + "codeCommune": "63036", + "libelleAcheminement": "BERGONNE", + "nomCommune": "BERGONNE" }, { - "codePostal": "31450", - "codeCommune": "31192", - "libelleAcheminement": "FOURQUEVAUX", - "nomCommune": "FOURQUEVAUX" + "codePostal": "52190", + "codeCommune": "52446", + "libelleAcheminement": "ST BROINGT LES FOSSES", + "nomCommune": "ST BROINGT LES FOSSES" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "55600", + "codeCommune": "55188", + "libelleAcheminement": "FLASSIGNY", + "nomCommune": "FLASSIGNY" }, { - "codePostal": "59297", - "codeCommune": "59623", - "libelleAcheminement": "VILLERS GUISLAIN", - "nomCommune": "VILLERS GUISLAIN" + "codePostal": "63870", + "codeCommune": "63263", + "libelleAcheminement": "ORCINES", + "nomCommune": "ORCINES" }, { - "codePostal": "37510", - "codeCommune": "37243", - "libelleAcheminement": "SAVONNIERES", - "nomCommune": "SAVONNIERES" + "codePostal": "09210", + "codeCommune": "09167", + "libelleAcheminement": "LEZAT SUR LEZE", + "nomCommune": "LEZAT SUR LEZE" }, { - "codePostal": "31460", - "codeCommune": "31194", - "libelleAcheminement": "FRANCARVILLE", - "nomCommune": "FRANCARVILLE" + "codePostal": "63610", + "codeCommune": "63038", + "libelleAcheminement": "BESSE ET ST ANASTAISE", + "nomCommune": "BESSE ET ST ANASTAISE" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "52210", + "codeCommune": "52450", + "libelleAcheminement": "ST LOUP SUR AUJON", + "nomCommune": "ST LOUP SUR AUJON" }, { - "codePostal": "59261", - "codeCommune": "59630", - "libelleAcheminement": "WAHAGNIES", - "nomCommune": "WAHAGNIES" + "codePostal": "55260", + "codeCommune": "55197", + "libelleAcheminement": "FRESNES AU MONT", + "nomCommune": "FRESNES AU MONT" }, { - "codePostal": "37800", - "codeCommune": "37247", - "libelleAcheminement": "SEPMES", - "nomCommune": "SEPMES" + "codePostal": "63500", + "codeCommune": "63268", + "libelleAcheminement": "PARDINES", + "nomCommune": "PARDINES" }, { - "codePostal": "31420", - "codeCommune": "31196", - "libelleAcheminement": "FRANCON", - "nomCommune": "FRANCON" + "codePostal": "09300", + "codeCommune": "09168", + "libelleAcheminement": "LIEURAC", + "nomCommune": "LIEURAC" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "63160", + "codeCommune": "63040", + "libelleAcheminement": "BILLOM", + "nomCommune": "BILLOM" }, { - "codePostal": "59127", - "codeCommune": "59631", - "libelleAcheminement": "WALINCOURT SELVIGNY", - "nomCommune": "WALINCOURT SELVIGNY" + "codePostal": "52500", + "codeCommune": "52464", + "libelleAcheminement": "SAULLES", + "nomCommune": "SAULLES" }, { - "codePostal": "37330", - "codeCommune": "37251", - "libelleAcheminement": "SOUVIGNE", - "nomCommune": "SOUVIGNE" + "codePostal": "55400", + "codeCommune": "55201", + "libelleAcheminement": "FROMEZEY", + "nomCommune": "FROMEZEY" }, { - "codePostal": "31440", - "codeCommune": "31199", - "libelleAcheminement": "FRONSAC", - "nomCommune": "FRONSAC" + "codePostal": "63500", + "codeCommune": "63270", + "libelleAcheminement": "PARENTIGNAT", + "nomCommune": "PARENTIGNAT" }, { - "codePostal": "50690", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "09700", + "codeCommune": "09170", + "libelleAcheminement": "LISSAC", + "nomCommune": "LISSAC" }, { - "codePostal": "59400", - "codeCommune": "59635", - "libelleAcheminement": "WAMBAIX", - "nomCommune": "WAMBAIX" + "codePostal": "63640", + "codeCommune": "63041", + "libelleAcheminement": "BIOLLET", + "nomCommune": "BIOLLET" }, { - "codePostal": "37310", - "codeCommune": "37253", - "libelleAcheminement": "SUBLAINES", - "nomCommune": "SUBLAINES" + "codePostal": "52330", + "codeCommune": "52472", + "libelleAcheminement": "SEXFONTAINES", + "nomCommune": "SEXFONTAINES" }, { - "codePostal": "31270", - "codeCommune": "31203", - "libelleAcheminement": "FROUZINS", - "nomCommune": "FROUZINS" + "codePostal": "55260", + "codeCommune": "55210", + "libelleAcheminement": "GIMECOURT", + "nomCommune": "GIMECOURT" }, { - "codePostal": "50340", - "codeCommune": "50045", - "libelleAcheminement": "BENOITVILLE", - "nomCommune": "BENOITVILLE" + "codePostal": "63170", + "codeCommune": "63272", + "libelleAcheminement": "PERIGNAT LES SARLIEVE", + "nomCommune": "PERIGNAT LES SARLIEVE" }, { - "codePostal": "59870", - "codeCommune": "59637", - "libelleAcheminement": "WANDIGNIES HAMAGE", - "nomCommune": "WANDIGNIES HAMAGE" + "codePostal": "09250", + "codeCommune": "09176", + "libelleAcheminement": "LUZENAC", + "nomCommune": "LUZENAC" }, { - "codePostal": "37220", - "codeCommune": "37255", - "libelleAcheminement": "TAVANT", - "nomCommune": "TAVANT" + "codePostal": "63440", + "codeCommune": "63043", + "libelleAcheminement": "BLOT L EGLISE", + "nomCommune": "BLOT L EGLISE" }, { - "codePostal": "31480", - "codeCommune": "31209", - "libelleAcheminement": "GARAC", - "nomCommune": "GARAC" + "codePostal": "52220", + "codeCommune": "52479", + "libelleAcheminement": "SOMMEVOIRE", + "nomCommune": "SOMMEVOIRE" }, { - "codePostal": "50390", - "codeCommune": "50055", - "libelleAcheminement": "BINIVILLE", - "nomCommune": "BINIVILLE" + "codePostal": "55200", + "codeCommune": "55212", + "libelleAcheminement": "GIRAUVOISIN", + "nomCommune": "GIRAUVOISIN" }, { - "codePostal": "59252", - "codeCommune": "59645", - "libelleAcheminement": "WASNES AU BAC", - "nomCommune": "WASNES AU BAC" + "codePostal": "63920", + "codeCommune": "63276", + "libelleAcheminement": "PESCHADOIRES", + "nomCommune": "PESCHADOIRES" }, { - "codePostal": "37000", - "codeCommune": "37261", - "libelleAcheminement": "TOURS", - "nomCommune": "TOURS" + "codePostal": "09500", + "codeCommune": "09180", + "libelleAcheminement": "MANSES", + "nomCommune": "MANSES" }, { - "codePostal": "31590", - "codeCommune": "31215", - "libelleAcheminement": "GAURE", - "nomCommune": "GAURE" + "codePostal": "63910", + "codeCommune": "63049", + "libelleAcheminement": "BOUZEL", + "nomCommune": "BOUZEL" }, { - "codePostal": "50560", - "codeCommune": "50058", - "libelleAcheminement": "BLAINVILLE SUR MER", - "nomCommune": "BLAINVILLE SUR MER" + "codePostal": "52320", + "codeCommune": "52480", + "libelleAcheminement": "SONCOURT SUR MARNE", + "nomCommune": "SONCOURT SUR MARNE" }, { - "codePostal": "59150", - "codeCommune": "59650", - "libelleAcheminement": "WATTRELOS", - "nomCommune": "WATTRELOS" + "codePostal": "55130", + "codeCommune": "55215", + "libelleAcheminement": "GONDRECOURT LE CHATEAU", + "nomCommune": "GONDRECOURT LE CHATEAU" }, { - "codePostal": "37320", - "codeCommune": "37263", - "libelleAcheminement": "TRUYES", - "nomCommune": "TRUYES" + "codePostal": "63580", + "codeCommune": "63277", + "libelleAcheminement": "PESLIERES", + "nomCommune": "PESLIERES" }, { - "codePostal": "31110", - "codeCommune": "31222", - "libelleAcheminement": "GOUAUX DE LUCHON", - "nomCommune": "GOUAUX DE LUCHON" + "codePostal": "09350", + "codeCommune": "09186", + "libelleAcheminement": "MERAS", + "nomCommune": "MERAS" }, { - "codePostal": "50480", - "codeCommune": "50059", - "libelleAcheminement": "BLOSVILLE", - "nomCommune": "BLOSVILLE" + "codePostal": "63500", + "codeCommune": "63051", + "libelleAcheminement": "BRENAT", + "nomCommune": "BRENAT" }, { - "codePostal": "59220", - "codeCommune": "59651", - "libelleAcheminement": "WAVRECHAIN SOUS DENAIN", - "nomCommune": "WAVRECHAIN SOUS DENAIN" + "codePostal": "52150", + "codeCommune": "52482", + "libelleAcheminement": "SOULAUCOURT SUR MOUZON", + "nomCommune": "SOULAUCOURT SUR MOUZON" }, { - "codePostal": "37190", - "codeCommune": "37271", - "libelleAcheminement": "VILLAINES LES ROCHERS", - "nomCommune": "VILLAINES LES ROCHERS" + "codePostal": "55130", + "codeCommune": "55215", + "libelleAcheminement": "GONDRECOURT LE CHATEAU", + "nomCommune": "GONDRECOURT LE CHATEAU" }, { - "codePostal": "31430", - "codeCommune": "31229", - "libelleAcheminement": "GRATENS", - "nomCommune": "GRATENS" + "codePostal": "63200", + "codeCommune": "63278", + "libelleAcheminement": "PESSAT VILLENEUVE", + "nomCommune": "PESSAT VILLENEUVE" }, { - "codePostal": "50360", - "codeCommune": "50064", - "libelleAcheminement": "LA BONNEVILLE", - "nomCommune": "LA BONNEVILLE" + "codePostal": "09400", + "codeCommune": "09188", + "libelleAcheminement": "MERCUS GARRABET", + "nomCommune": "MERCUS GARRABET" }, { - "codePostal": "59111", - "codeCommune": "59652", - "libelleAcheminement": "WAVRECHAIN SOUS FAULX", - "nomCommune": "WAVRECHAIN SOUS FAULX" + "codePostal": "63330", + "codeCommune": "63060", + "libelleAcheminement": "BUSSIERES", + "nomCommune": "BUSSIERES" }, { - "codePostal": "37370", - "codeCommune": "37274", - "libelleAcheminement": "VILLEBOURG", - "nomCommune": "VILLEBOURG" + "codePostal": "52220", + "codeCommune": "52487", + "libelleAcheminement": "THILLEUX", + "nomCommune": "THILLEUX" }, { - "codePostal": "31190", - "codeCommune": "31231", - "libelleAcheminement": "GRAZAC", - "nomCommune": "GRAZAC" + "codePostal": "55140", + "codeCommune": "55217", + "libelleAcheminement": "GOUSSAINCOURT", + "nomCommune": "GOUSSAINCOURT" }, { - "codePostal": "50610", - "codeCommune": "50066", - "libelleAcheminement": "JULLOUVILLE", - "nomCommune": "JULLOUVILLE" + "codePostal": "63730", + "codeCommune": "63282", + "libelleAcheminement": "PLAUZAT", + "nomCommune": "PLAUZAT" }, { - "codePostal": "59780", - "codeCommune": "59660", - "libelleAcheminement": "WILLEMS", - "nomCommune": "WILLEMS" + "codePostal": "09400", + "codeCommune": "09192", + "libelleAcheminement": "MIGLOS", + "nomCommune": "MIGLOS" }, { - "codePostal": "37110", - "codeCommune": "37276", - "libelleAcheminement": "VILLEDOMER", - "nomCommune": "VILLEDOMER" + "codePostal": "63250", + "codeCommune": "63066", + "libelleAcheminement": "CELLES SUR DUROLLE", + "nomCommune": "CELLES SUR DUROLLE" }, { - "codePostal": "31330", - "codeCommune": "31232", - "libelleAcheminement": "GRENADE", - "nomCommune": "GRENADE" + "codePostal": "52240", + "codeCommune": "52489", + "libelleAcheminement": "THOL LES MILLIERES", + "nomCommune": "THOL LES MILLIERES" }, { - "codePostal": "50260", - "codeCommune": "50079", - "libelleAcheminement": "BREUVILLE", - "nomCommune": "BREUVILLE" + "codePostal": "55500", + "codeCommune": "55220", + "libelleAcheminement": "GRIMAUCOURT PRES SAMPIGNY", + "nomCommune": "GRIMAUCOURT PRES SAMPIGNY" }, { - "codePostal": "59740", - "codeCommune": "59661", - "libelleAcheminement": "WILLIES", - "nomCommune": "WILLIES" + "codePostal": "63440", + "codeCommune": "63286", + "libelleAcheminement": "POUZOL", + "nomCommune": "POUZOL" }, { - "codePostal": "38490", - "codeCommune": "38001", - "libelleAcheminement": "LES ABRETS EN DAUPHINE", - "nomCommune": "LES ABRETS EN DAUPHINE" + "codePostal": "09000", + "codeCommune": "09210", + "libelleAcheminement": "MONTOULIEU", + "nomCommune": "MONTOULIEU" }, { - "codePostal": "31440", - "codeCommune": "31235", - "libelleAcheminement": "GURAN", - "nomCommune": "GURAN" + "codePostal": "63670", + "codeCommune": "63069", + "libelleAcheminement": "LE CENDRE", + "nomCommune": "LE CENDRE" }, { - "codePostal": "50290", - "codeCommune": "50081", - "libelleAcheminement": "BREVILLE SUR MER", - "nomCommune": "BREVILLE SUR MER" + "codePostal": "52230", + "codeCommune": "52491", + "libelleAcheminement": "THONNANCE LES MOULINS", + "nomCommune": "THONNANCE LES MOULINS" }, { - "codePostal": "59670", - "codeCommune": "59662", - "libelleAcheminement": "WINNEZEELE", - "nomCommune": "WINNEZEELE" + "codePostal": "55300", + "codeCommune": "55229", + "libelleAcheminement": "HAN SUR MEUSE", + "nomCommune": "HAN SUR MEUSE" }, { - "codePostal": "38150", - "codeCommune": "38003", - "libelleAcheminement": "AGNIN", - "nomCommune": "AGNIN" + "codePostal": "63230", + "codeCommune": "63290", + "libelleAcheminement": "PULVERIERES", + "nomCommune": "PULVERIERES" }, { - "codePostal": "31210", - "codeCommune": "31238", - "libelleAcheminement": "HUOS", - "nomCommune": "HUOS" + "codePostal": "09240", + "codeCommune": "09212", + "libelleAcheminement": "MONTSERON", + "nomCommune": "MONTSERON" }, { - "codePostal": "50260", - "codeCommune": "50082", - "libelleAcheminement": "BRICQUEBEC EN COTENTIN", - "nomCommune": "BRICQUEBEC EN COTENTIN" + "codePostal": "63122", + "codeCommune": "63070", + "libelleAcheminement": "CEYRAT", + "nomCommune": "CEYRAT" }, { - "codePostal": "59123", - "codeCommune": "59668", - "libelleAcheminement": "ZUYDCOOTE", - "nomCommune": "ZUYDCOOTE" + "codePostal": "52230", + "codeCommune": "52491", + "libelleAcheminement": "THONNANCE LES MOULINS", + "nomCommune": "THONNANCE LES MOULINS" }, { - "codePostal": "38440", - "codeCommune": "38015", - "libelleAcheminement": "ARTAS", - "nomCommune": "ARTAS" + "codePostal": "55300", + "codeCommune": "55229", + "libelleAcheminement": "HAN SUR MEUSE", + "nomCommune": "HAN SUR MEUSE" }, { - "codePostal": "31860", - "codeCommune": "31248", - "libelleAcheminement": "LABARTHE SUR LEZE", - "nomCommune": "LABARTHE SUR LEZE" + "codePostal": "63470", + "codeCommune": "63292", + "libelleAcheminement": "PUY ST GULMIER", + "nomCommune": "PUY ST GULMIER" }, { - "codePostal": "50260", - "codeCommune": "50082", - "libelleAcheminement": "BRICQUEBEC EN COTENTIN", - "nomCommune": "BRICQUEBEC EN COTENTIN" + "codePostal": "09110", + "codeCommune": "09218", + "libelleAcheminement": "ORGEIX", + "nomCommune": "ORGEIX" }, { - "codePostal": "60430", - "codeCommune": "60002", - "libelleAcheminement": "ABBECOURT", - "nomCommune": "ABBECOURT" + "codePostal": "63340", + "codeCommune": "63074", + "libelleAcheminement": "CHALUS", + "nomCommune": "CHALUS" }, { - "codePostal": "38550", - "codeCommune": "38019", - "libelleAcheminement": "AUBERIVES SUR VAREZE", - "nomCommune": "AUBERIVES SUR VAREZE" + "codePostal": "52130", + "codeCommune": "52497", + "libelleAcheminement": "TROISFONTAINES LA VILLE", + "nomCommune": "TROISFONTAINES LA VILLE" }, { - "codePostal": "31230", - "codeCommune": "31251", - "libelleAcheminement": "LABASTIDE PAUMES", - "nomCommune": "LABASTIDE PAUMES" + "codePostal": "55160", + "codeCommune": "55242", + "libelleAcheminement": "HENNEMONT", + "nomCommune": "HENNEMONT" }, { - "codePostal": "50260", - "codeCommune": "50082", - "libelleAcheminement": "BRICQUEBEC EN COTENTIN", - "nomCommune": "BRICQUEBEC EN COTENTIN" + "codePostal": "63290", + "codeCommune": "63301", + "libelleAcheminement": "RIS", + "nomCommune": "RIS" }, { - "codePostal": "60620", - "codeCommune": "60005", - "libelleAcheminement": "ACY EN MULTIEN", - "nomCommune": "ACY EN MULTIEN" + "codePostal": "09000", + "codeCommune": "09234", + "libelleAcheminement": "PRADIERES", + "nomCommune": "PRADIERES" }, { - "codePostal": "38630", - "codeCommune": "38022", - "libelleAcheminement": "LES AVENIERES VEYRINS THUELLIN", - "nomCommune": "LES AVENIERES VEYRINS THUELLIN" + "codePostal": "63320", + "codeCommune": "63080", + "libelleAcheminement": "CHAMPEIX", + "nomCommune": "CHAMPEIX" }, { - "codePostal": "31190", - "codeCommune": "31256", - "libelleAcheminement": "LABRUYERE DORSA", - "nomCommune": "LABRUYERE DORSA" + "codePostal": "52300", + "codeCommune": "52511", + "libelleAcheminement": "VAUX SUR ST URBAIN", + "nomCommune": "VAUX SUR ST URBAIN" }, { - "codePostal": "50260", - "codeCommune": "50082", - "libelleAcheminement": "BRICQUEBEC EN COTENTIN", - "nomCommune": "BRICQUEBEC EN COTENTIN" + "codePostal": "55220", + "codeCommune": "55254", + "libelleAcheminement": "LES TROIS DOMAINES", + "nomCommune": "LES TROIS DOMAINES" }, { - "codePostal": "60940", - "codeCommune": "60013", - "libelleAcheminement": "ANGICOURT", - "nomCommune": "ANGICOURT" + "codePostal": "63210", + "codeCommune": "63305", + "libelleAcheminement": "ROCHEFORT MONTAGNE", + "nomCommune": "ROCHEFORT MONTAGNE" }, { - "codePostal": "38390", - "codeCommune": "38026", - "libelleAcheminement": "LA BALME LES GROTTES", - "nomCommune": "LA BALME LES GROTTES" + "codePostal": "09420", + "codeCommune": "09246", + "libelleAcheminement": "RIMONT", + "nomCommune": "RIMONT" }, { - "codePostal": "31360", - "codeCommune": "31260", - "libelleAcheminement": "LAFFITE TOUPIERE", - "nomCommune": "LAFFITE TOUPIERE" + "codePostal": "63530", + "codeCommune": "63083", + "libelleAcheminement": "CHANAT LA MOUTEYRE", + "nomCommune": "CHANAT LA MOUTEYRE" }, { - "codePostal": "50570", - "codeCommune": "50093", - "libelleAcheminement": "CAMETOURS", - "nomCommune": "CAMETOURS" + "codePostal": "52250", + "codeCommune": "52515", + "libelleAcheminement": "VERSEILLES LE BAS", + "nomCommune": "VERSEILLES LE BAS" }, { - "codePostal": "60620", - "codeCommune": "60020", - "libelleAcheminement": "ANTILLY", - "nomCommune": "ANTILLY" + "codePostal": "55600", + "codeCommune": "55255", + "libelleAcheminement": "JAMETZ", + "nomCommune": "JAMETZ" }, { - "codePostal": "38470", - "codeCommune": "38033", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "63540", + "codeCommune": "63307", + "libelleAcheminement": "ROMAGNAT", + "nomCommune": "ROMAGNAT" }, { - "codePostal": "31390", - "codeCommune": "31261", - "libelleAcheminement": "LAFITTE VIGORDANE", - "nomCommune": "LAFITTE VIGORDANE" + "codePostal": "09300", + "codeCommune": "09249", + "libelleAcheminement": "ROQUEFIXADE", + "nomCommune": "ROQUEFIXADE" }, { - "codePostal": "50480", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "63590", + "codeCommune": "63086", + "libelleAcheminement": "LA CHAPELLE AGNON", + "nomCommune": "LA CHAPELLE AGNON" }, { - "codePostal": "60360", - "codeCommune": "60026", - "libelleAcheminement": "AUCHY LA MONTAGNE", - "nomCommune": "AUCHY LA MONTAGNE" + "codePostal": "52700", + "codeCommune": "52517", + "libelleAcheminement": "VESAIGNES SOUS LAFAUCHE", + "nomCommune": "VESAIGNES SOUS LAFAUCHE" }, { - "codePostal": "38190", - "codeCommune": "38039", - "libelleAcheminement": "BERNIN", - "nomCommune": "BERNIN" + "codePostal": "55160", + "codeCommune": "55256", + "libelleAcheminement": "JONVILLE EN WOEVRE", + "nomCommune": "JONVILLE EN WOEVRE" }, { - "codePostal": "31310", - "codeCommune": "31267", - "libelleAcheminement": "LAHITERE", - "nomCommune": "LAHITERE" + "codePostal": "63130", + "codeCommune": "63308", + "libelleAcheminement": "ROYAT", + "nomCommune": "ROYAT" }, { - "codePostal": "50480", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "09500", + "codeCommune": "09251", + "libelleAcheminement": "ROUMENGOUX", + "nomCommune": "ROUMENGOUX" }, { - "codePostal": "60300", - "codeCommune": "60028", - "libelleAcheminement": "AUMONT EN HALATTE", - "nomCommune": "AUMONT EN HALATTE" + "codePostal": "63580", + "codeCommune": "63088", + "libelleAcheminement": "LA CHAPELLE SUR USSON", + "nomCommune": "LA CHAPELLE SUR USSON" }, { - "codePostal": "38850", - "codeCommune": "38043", - "libelleAcheminement": "BILIEU", - "nomCommune": "BILIEU" + "codePostal": "52160", + "codeCommune": "52526", + "libelleAcheminement": "VILLARS SANTENOGE", + "nomCommune": "VILLARS SANTENOGE" }, { - "codePostal": "31800", - "codeCommune": "31270", - "libelleAcheminement": "LANDORTHE", - "nomCommune": "LANDORTHE" + "codePostal": "55200", + "codeCommune": "55258", + "libelleAcheminement": "GEVILLE", + "nomCommune": "GEVILLE" }, { - "codePostal": "50500", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "63580", + "codeCommune": "63328", + "libelleAcheminement": "STE CATHERINE", + "nomCommune": "STE CATHERINE" }, { - "codePostal": "60350", - "codeCommune": "60032", - "libelleAcheminement": "AUTRECHES", - "nomCommune": "AUTRECHES" + "codePostal": "09120", + "codeCommune": "09258", + "libelleAcheminement": "ST FELIX DE RIEUTORD", + "nomCommune": "ST FELIX DE RIEUTORD" }, { - "codePostal": "38090", - "codeCommune": "38048", - "libelleAcheminement": "BONNEFAMILLE", - "nomCommune": "BONNEFAMILLE" + "codePostal": "63220", + "codeCommune": "63105", + "libelleAcheminement": "CHAUMONT LE BOURG", + "nomCommune": "CHAUMONT LE BOURG" }, { - "codePostal": "31800", - "codeCommune": "31278", - "libelleAcheminement": "LATOUE", - "nomCommune": "LATOUE" + "codePostal": "52190", + "codeCommune": "52529", + "libelleAcheminement": "VILLEGUSIEN LE LAC", + "nomCommune": "VILLEGUSIEN LE LAC" }, { - "codePostal": "50620", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "55170", + "codeCommune": "55261", + "libelleAcheminement": "JUVIGNY EN PERTHOIS", + "nomCommune": "JUVIGNY EN PERTHOIS" }, { - "codePostal": "60300", - "codeCommune": "60033", - "libelleAcheminement": "AVILLY ST LEONARD", - "nomCommune": "AVILLY ST LEONARD" + "codePostal": "63320", + "codeCommune": "63330", + "libelleAcheminement": "ST CIRGUES SUR COUZE", + "nomCommune": "ST CIRGUES SUR COUZE" }, { - "codePostal": "38260", - "codeCommune": "38049", - "libelleAcheminement": "BOSSIEU", - "nomCommune": "BOSSIEU" + "codePostal": "09500", + "codeCommune": "09260", + "libelleAcheminement": "STE FOI", + "nomCommune": "STE FOI" }, { - "codePostal": "31310", - "codeCommune": "31279", - "libelleAcheminement": "LATOUR", - "nomCommune": "LATOUR" + "codePostal": "63200", + "codeCommune": "63108", + "libelleAcheminement": "LE CHEIX", + "nomCommune": "LE CHEIX" }, { - "codePostal": "50330", - "codeCommune": "50101", - "libelleAcheminement": "CARNEVILLE", - "nomCommune": "CARNEVILLE" + "codePostal": "52100", + "codeCommune": "52534", + "libelleAcheminement": "VILLIERS EN LIEU", + "nomCommune": "VILLIERS EN LIEU" }, { - "codePostal": "60310", - "codeCommune": "60035", - "libelleAcheminement": "AVRICOURT", - "nomCommune": "AVRICOURT" + "codePostal": "55600", + "codeCommune": "55262", + "libelleAcheminement": "JUVIGNY SUR LOISON", + "nomCommune": "JUVIGNY SUR LOISON" }, { - "codePostal": "38510", - "codeCommune": "38050", - "libelleAcheminement": "LE BOUCHAGE", - "nomCommune": "LE BOUCHAGE" + "codePostal": "63310", + "codeCommune": "63333", + "libelleAcheminement": "ST DENIS COMBARNAZAT", + "nomCommune": "ST DENIS COMBARNAZAT" }, { - "codePostal": "31310", - "codeCommune": "31280", - "libelleAcheminement": "LATRAPE", - "nomCommune": "LATRAPE" + "codePostal": "09200", + "codeCommune": "09261", + "libelleAcheminement": "ST GIRONS", + "nomCommune": "ST GIRONS" }, { - "codePostal": "50390", - "codeCommune": "50105", - "libelleAcheminement": "CATTEVILLE", - "nomCommune": "CATTEVILLE" + "codePostal": "63740", + "codeCommune": "63110", + "libelleAcheminement": "CISTERNES LA FORET", + "nomCommune": "CISTERNES LA FORET" }, { - "codePostal": "60620", - "codeCommune": "60046", - "libelleAcheminement": "BARGNY", - "nomCommune": "BARGNY" + "codePostal": "52600", + "codeCommune": "52539", + "libelleAcheminement": "VIOLOT", + "nomCommune": "VIOLOT" }, { - "codePostal": "38300", - "codeCommune": "38053", - "libelleAcheminement": "BOURGOIN JALLIEU", - "nomCommune": "BOURGOIN JALLIEU" + "codePostal": "55160", + "codeCommune": "55265", + "libelleAcheminement": "LABEUVILLE", + "nomCommune": "LABEUVILLE" }, { - "codePostal": "31410", - "codeCommune": "31287", - "libelleAcheminement": "LAVERNOSE LACASSE", - "nomCommune": "LAVERNOSE LACASSE" + "codePostal": "63520", + "codeCommune": "63334", + "libelleAcheminement": "ST DIER D AUVERGNE", + "nomCommune": "ST DIER D AUVERGNE" }, { - "codePostal": "50100", - "codeCommune": "50129", - "libelleAcheminement": "CHERBOURG EN COTENTIN", - "nomCommune": "CHERBOURG EN COTENTIN" + "codePostal": "09000", + "codeCommune": "09264", + "libelleAcheminement": "ST JEAN DE VERGES", + "nomCommune": "ST JEAN DE VERGES" }, { - "codePostal": "60190", - "codeCommune": "60048", - "libelleAcheminement": "BAUGY", - "nomCommune": "BAUGY" + "codePostal": "63800", + "codeCommune": "63124", + "libelleAcheminement": "COURNON D AUVERGNE", + "nomCommune": "COURNON D AUVERGNE" }, { - "codePostal": "38690", - "codeCommune": "38065", - "libelleAcheminement": "CHABONS", - "nomCommune": "CHABONS" + "codePostal": "52130", + "codeCommune": "52543", + "libelleAcheminement": "VOILLECOMTE", + "nomCommune": "VOILLECOMTE" }, { - "codePostal": "31580", - "codeCommune": "31289", - "libelleAcheminement": "LECUSSAN", - "nomCommune": "LECUSSAN" + "codePostal": "55120", + "codeCommune": "55266", + "libelleAcheminement": "LACHALADE", + "nomCommune": "LACHALADE" }, { - "codePostal": "50460", - "codeCommune": "50129", - "libelleAcheminement": "CHERBOURG EN COTENTIN", - "nomCommune": "CHERBOURG EN COTENTIN" + "codePostal": "63680", + "codeCommune": "63336", + "libelleAcheminement": "ST DONAT", + "nomCommune": "ST DONAT" }, { - "codePostal": "60380", - "codeCommune": "60049", - "libelleAcheminement": "BAZANCOURT", - "nomCommune": "BAZANCOURT" + "codePostal": "09000", + "codeCommune": "09264", + "libelleAcheminement": "ST JEAN DE VERGES", + "nomCommune": "ST JEAN DE VERGES" }, { - "codePostal": "38740", - "codeCommune": "38073", - "libelleAcheminement": "CHANTEPERIER", - "nomCommune": "CHANTEPERIER" + "codePostal": "63120", + "codeCommune": "63125", + "libelleAcheminement": "COURPIERE", + "nomCommune": "COURPIERE" }, { - "codePostal": "31490", - "codeCommune": "31291", - "libelleAcheminement": "LEGUEVIN", - "nomCommune": "LEGUEVIN" + "codePostal": "52130", + "codeCommune": "52550", + "libelleAcheminement": "WASSY", + "nomCommune": "WASSY" }, { - "codePostal": "50330", - "codeCommune": "50142", - "libelleAcheminement": "VICQ SUR MER", - "nomCommune": "VICQ SUR MER" + "codePostal": "55210", + "codeCommune": "55267", + "libelleAcheminement": "LACHAUSSEE", + "nomCommune": "LACHAUSSEE" }, { - "codePostal": "60390", - "codeCommune": "60054", - "libelleAcheminement": "LES HAUTS TALICAN", - "nomCommune": "LES HAUTS TALICAN" + "codePostal": "63380", + "codeCommune": "63339", + "libelleAcheminement": "ST ETIENNE DES CHAMPS", + "nomCommune": "ST ETIENNE DES CHAMPS" }, { - "codePostal": "38230", - "codeCommune": "38085", - "libelleAcheminement": "CHARVIEU CHAVAGNEUX", - "nomCommune": "CHARVIEU CHAVAGNEUX" + "codePostal": "09100", + "codeCommune": "09271", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "31220", - "codeCommune": "31292", - "libelleAcheminement": "LESCUNS", - "nomCommune": "LESCUNS" + "codePostal": "63350", + "codeCommune": "63128", + "libelleAcheminement": "CREVANT LAVEINE", + "nomCommune": "CREVANT LAVEINE" }, { - "codePostal": "50710", - "codeCommune": "50151", - "libelleAcheminement": "CREANCES", - "nomCommune": "CREANCES" + "codePostal": "53240", + "codeCommune": "53002", + "libelleAcheminement": "ALEXAIN", + "nomCommune": "ALEXAIN" }, { - "codePostal": "60700", - "codeCommune": "60056", - "libelleAcheminement": "BEAUREPAIRE", - "nomCommune": "BEAUREPAIRE" + "codePostal": "55260", + "codeCommune": "55269", + "libelleAcheminement": "LAHAYMEIX", + "nomCommune": "LAHAYMEIX" }, { - "codePostal": "38230", - "codeCommune": "38085", - "libelleAcheminement": "CHARVIEU CHAVAGNEUX", - "nomCommune": "CHARVIEU CHAVAGNEUX" + "codePostal": "63580", + "codeCommune": "63348", + "libelleAcheminement": "ST GENES LA TOURETTE", + "nomCommune": "ST GENES LA TOURETTE" }, { - "codePostal": "31360", - "codeCommune": "31296", - "libelleAcheminement": "LESTELLE DE ST MARTORY", - "nomCommune": "LESTELLE DE ST MARTORY" + "codePostal": "09400", + "codeCommune": "09280", + "libelleAcheminement": "SAURAT", + "nomCommune": "SAURAT" }, { - "codePostal": "50670", - "codeCommune": "50158", - "libelleAcheminement": "CUVES", - "nomCommune": "CUVES" + "codePostal": "63350", + "codeCommune": "63131", + "libelleAcheminement": "CULHAT", + "nomCommune": "CULHAT" }, { - "codePostal": "60000", - "codeCommune": "60057", - "libelleAcheminement": "BEAUVAIS", - "nomCommune": "BEAUVAIS" + "codePostal": "53300", + "codeCommune": "53003", + "libelleAcheminement": "AMBRIERES LES VALLEES", + "nomCommune": "AMBRIERES LES VALLEES" }, { - "codePostal": "38680", - "codeCommune": "38092", - "libelleAcheminement": "CHATELUS", - "nomCommune": "CHATELUS" + "codePostal": "55700", + "codeCommune": "55275", + "libelleAcheminement": "LAMOUILLY", + "nomCommune": "LAMOUILLY" }, { - "codePostal": "31800", - "codeCommune": "31300", - "libelleAcheminement": "LIEOUX", - "nomCommune": "LIEOUX" + "codePostal": "63470", + "codeCommune": "63351", + "libelleAcheminement": "ST GERMAIN PRES HERMENT", + "nomCommune": "ST GERMAIN PRES HERMENT" }, { - "codePostal": "50530", - "codeCommune": "50167", - "libelleAcheminement": "DRAGEY RONTHON", - "nomCommune": "DRAGEY RONTHON" + "codePostal": "09400", + "codeCommune": "09280", + "libelleAcheminement": "SAURAT", + "nomCommune": "SAURAT" }, { - "codePostal": "60350", - "codeCommune": "60064", - "libelleAcheminement": "BERNEUIL SUR AISNE", - "nomCommune": "BERNEUIL SUR AISNE" + "codePostal": "63200", + "codeCommune": "63135", + "libelleAcheminement": "DAVAYAT", + "nomCommune": "DAVAYAT" }, { - "codePostal": "38980", - "codeCommune": "38093", - "libelleAcheminement": "CHATENAY", - "nomCommune": "CHATENAY" + "codePostal": "53170", + "codeCommune": "53022", + "libelleAcheminement": "LA BAZOUGE DE CHEMERE", + "nomCommune": "LA BAZOUGE DE CHEMERE" }, { - "codePostal": "31230", - "codeCommune": "31301", - "libelleAcheminement": "LILHAC", - "nomCommune": "LILHAC" + "codePostal": "55100", + "codeCommune": "55276", + "libelleAcheminement": "LANDRECOURT LEMPIRE", + "nomCommune": "LANDRECOURT LEMPIRE" }, { - "codePostal": "50220", - "codeCommune": "50168", - "libelleAcheminement": "DUCEY LES CHERIS", - "nomCommune": "DUCEY LES CHERIS" + "codePostal": "63880", + "codeCommune": "63355", + "libelleAcheminement": "ST GERVAIS SOUS MEYMONT", + "nomCommune": "ST GERVAIS SOUS MEYMONT" }, { - "codePostal": "60320", - "codeCommune": "60068", - "libelleAcheminement": "BETHISY ST PIERRE", - "nomCommune": "BETHISY ST PIERRE" + "codePostal": "09700", + "codeCommune": "09282", + "libelleAcheminement": "SAVERDUN", + "nomCommune": "SAVERDUN" }, { - "codePostal": "38160", - "codeCommune": "38095", - "libelleAcheminement": "CHATTE", - "nomCommune": "CHATTE" + "codePostal": "63220", + "codeCommune": "63137", + "libelleAcheminement": "DORANGES", + "nomCommune": "DORANGES" }, { - "codePostal": "31580", - "codeCommune": "31305", - "libelleAcheminement": "LOUDET", - "nomCommune": "LOUDET" + "codePostal": "53290", + "codeCommune": "53027", + "libelleAcheminement": "BEAUMONT PIED DE BOEUF", + "nomCommune": "BEAUMONT PIED DE BOEUF" }, { - "codePostal": "50310", - "codeCommune": "50175", - "libelleAcheminement": "EROUDEVILLE", - "nomCommune": "EROUDEVILLE" + "codePostal": "55160", + "codeCommune": "55281", + "libelleAcheminement": "LATOUR EN WOEVRE", + "nomCommune": "LATOUR EN WOEVRE" }, { - "codePostal": "60120", - "codeCommune": "60075", - "libelleAcheminement": "BLANCFOSSE", - "nomCommune": "BLANCFOSSE" + "codePostal": "63340", + "codeCommune": "63356", + "libelleAcheminement": "ST GERVAZY", + "nomCommune": "ST GERVAZY" }, { - "codePostal": "38570", - "codeCommune": "38100", - "libelleAcheminement": "LE CHEYLAS", - "nomCommune": "LE CHEYLAS" + "codePostal": "09310", + "codeCommune": "09296", + "libelleAcheminement": "AULOS SINSAT", + "nomCommune": "AULOS SINSAT" }, { - "codePostal": "31340", - "codeCommune": "31311", - "libelleAcheminement": "LA MAGDELAINE SUR TARN", - "nomCommune": "LA MAGDELAINE SUR TARN" + "codePostal": "63300", + "codeCommune": "63138", + "libelleAcheminement": "DORAT", + "nomCommune": "DORAT" }, { - "codePostal": "50260", - "codeCommune": "50176", - "libelleAcheminement": "L ETANG BERTRAND", - "nomCommune": "L ETANG BERTRAND" + "codePostal": "53800", + "codeCommune": "53033", + "libelleAcheminement": "LA BOISSIERE", + "nomCommune": "LA BOISSIERE" }, { - "codePostal": "60440", - "codeCommune": "60079", - "libelleAcheminement": "BOISSY FRESNOY", - "nomCommune": "BOISSY FRESNOY" + "codePostal": "55170", + "codeCommune": "55284", + "libelleAcheminement": "LAVINCOURT", + "nomCommune": "LAVINCOURT" }, { - "codePostal": "38490", - "codeCommune": "38104", - "libelleAcheminement": "CHIMILIN", - "nomCommune": "CHIMILIN" + "codePostal": "63340", + "codeCommune": "63357", + "libelleAcheminement": "ST HERENT", + "nomCommune": "ST HERENT" }, { - "codePostal": "31310", - "codeCommune": "31312", - "libelleAcheminement": "MAILHOLAS", - "nomCommune": "MAILHOLAS" + "codePostal": "09000", + "codeCommune": "09300", + "libelleAcheminement": "SOULA", + "nomCommune": "SOULA" }, { - "codePostal": "50360", - "codeCommune": "50177", - "libelleAcheminement": "ETIENVILLE", - "nomCommune": "ETIENVILLE" + "codePostal": "63830", + "codeCommune": "63141", + "libelleAcheminement": "DURTOL", + "nomCommune": "DURTOL" }, { - "codePostal": "60300", - "codeCommune": "60087", - "libelleAcheminement": "BOREST", - "nomCommune": "BOREST" + "codePostal": "53410", + "codeCommune": "53039", + "libelleAcheminement": "LE BOURGNEUF LA FORET", + "nomCommune": "LE BOURGNEUF LA FORET" }, { - "codePostal": "38640", - "codeCommune": "38111", - "libelleAcheminement": "CLAIX", - "nomCommune": "CLAIX" + "codePostal": "55500", + "codeCommune": "55300", + "libelleAcheminement": "LONGEAUX", + "nomCommune": "LONGEAUX" }, { - "codePostal": "31430", - "codeCommune": "31317", - "libelleAcheminement": "MARIGNAC LASCLARES", - "nomCommune": "MARIGNAC LASCLARES" + "codePostal": "63330", + "codeCommune": "63360", + "libelleAcheminement": "ST HILAIRE PRES PIONSAT", + "nomCommune": "ST HILAIRE" }, { - "codePostal": "50190", - "codeCommune": "50181", - "libelleAcheminement": "FEUGERES", - "nomCommune": "FEUGERES" + "codePostal": "09160", + "codeCommune": "09307", + "libelleAcheminement": "TAURIGNAN CASTET", + "nomCommune": "TAURIGNAN CASTET" }, { - "codePostal": "60540", - "codeCommune": "60088", - "libelleAcheminement": "BORNEL", - "nomCommune": "BORNEL" + "codePostal": "63980", + "codeCommune": "63162", + "libelleAcheminement": "FOURNOLS", + "nomCommune": "FOURNOLS" }, { - "codePostal": "38350", - "codeCommune": "38116", - "libelleAcheminement": "COGNET", - "nomCommune": "COGNET" + "codePostal": "53410", + "codeCommune": "53040", + "libelleAcheminement": "BOURGON", + "nomCommune": "BOURGON" }, { - "codePostal": "31540", - "codeCommune": "31329", - "libelleAcheminement": "MAURENS", - "nomCommune": "MAURENS" + "codePostal": "55000", + "codeCommune": "55302", + "libelleAcheminement": "LONGEVILLE EN BARROIS", + "nomCommune": "LONGEVILLE EN BARROIS" }, { - "codePostal": "50700", - "codeCommune": "50186", - "libelleAcheminement": "FLOTTEMANVILLE", - "nomCommune": "FLOTTEMANVILLE" + "codePostal": "63190", + "codeCommune": "63364", + "libelleAcheminement": "ST JEAN D HEURS", + "nomCommune": "ST JEAN D HEURS" }, { - "codePostal": "60620", - "codeCommune": "60092", - "libelleAcheminement": "BOULLARRE", - "nomCommune": "BOULLARRE" + "codePostal": "09350", + "codeCommune": "09310", + "libelleAcheminement": "THOUARS SUR ARIZE", + "nomCommune": "THOUARS SUR ARIZE" }, { - "codePostal": "38970", - "codeCommune": "38128", - "libelleAcheminement": "CORPS", - "nomCommune": "CORPS" + "codePostal": "63850", + "codeCommune": "63169", + "libelleAcheminement": "LA GODIVELLE", + "nomCommune": "LA GODIVELLE" }, { - "codePostal": "31460", - "codeCommune": "31331", - "libelleAcheminement": "MAUREVILLE", - "nomCommune": "MAUREVILLE" + "codePostal": "53370", + "codeCommune": "53052", + "libelleAcheminement": "CHAMPFREMONT", + "nomCommune": "CHAMPFREMONT" }, { - "codePostal": "50320", - "codeCommune": "50188", - "libelleAcheminement": "FOLLIGNY", - "nomCommune": "FOLLIGNY" + "codePostal": "55800", + "codeCommune": "55304", + "libelleAcheminement": "LOUPPY LE CHATEAU", + "nomCommune": "LOUPPY LE CHATEAU" }, { - "codePostal": "60141", - "codeCommune": "60094", - "libelleAcheminement": "BOURSONNE", - "nomCommune": "BOURSONNE" + "codePostal": "63580", + "codeCommune": "63376", + "libelleAcheminement": "ST MARTIN D OLLIERES", + "nomCommune": "ST MARTIN D OLLIERES" }, { - "codePostal": "38260", - "codeCommune": "38130", - "libelleAcheminement": "LA COTE ST ANDRE", - "nomCommune": "LA COTE ST ANDRE" + "codePostal": "09500", + "codeCommune": "09314", + "libelleAcheminement": "TOURTROL", + "nomCommune": "TOURTROL" }, { - "codePostal": "31110", - "codeCommune": "31335", - "libelleAcheminement": "MAYREGNE", - "nomCommune": "MAYREGNE" + "codePostal": "63390", + "codeCommune": "63171", + "libelleAcheminement": "GOUTTIERES", + "nomCommune": "GOUTTIERES" }, { - "codePostal": "50450", - "codeCommune": "50197", - "libelleAcheminement": "GAVRAY SUR SIENNE", - "nomCommune": "GAVRAY SUR SIENNE" + "codePostal": "53160", + "codeCommune": "53053", + "libelleAcheminement": "CHAMPGENETEUX", + "nomCommune": "CHAMPGENETEUX" }, { - "codePostal": "60220", - "codeCommune": "60098", - "libelleAcheminement": "BOUVRESSE", - "nomCommune": "BOUVRESSE" + "codePostal": "55290", + "codeCommune": "55315", + "libelleAcheminement": "MANDRES EN BARROIS", + "nomCommune": "MANDRES EN BARROIS" }, { - "codePostal": "38510", - "codeCommune": "38139", - "libelleAcheminement": "CREYS MEPIEU", - "nomCommune": "CREYS MEPIEU" + "codePostal": "63330", + "codeCommune": "63377", + "libelleAcheminement": "ST MAURICE PRES PIONSAT", + "nomCommune": "ST MAURICE PRES PIONSAT" }, { - "codePostal": "31530", - "codeCommune": "31338", - "libelleAcheminement": "MENVILLE", - "nomCommune": "MENVILLE" + "codePostal": "09700", + "codeCommune": "09315", + "libelleAcheminement": "TREMOULET", + "nomCommune": "TREMOULET" }, { - "codePostal": "50450", - "codeCommune": "50197", - "libelleAcheminement": "GAVRAY SUR SIENNE", - "nomCommune": "GAVRAY SUR SIENNE" + "codePostal": "63890", + "codeCommune": "63174", + "libelleAcheminement": "GRANDVAL", + "nomCommune": "GRANDVAL" }, { - "codePostal": "60870", - "codeCommune": "60102", - "libelleAcheminement": "BRENOUILLE", - "nomCommune": "BRENOUILLE" + "codePostal": "53810", + "codeCommune": "53054", + "libelleAcheminement": "CHANGE", + "nomCommune": "CHANGE" }, { - "codePostal": "38460", - "codeCommune": "38146", - "libelleAcheminement": "DIZIMIEU", - "nomCommune": "DIZIMIEU" + "codePostal": "55160", + "codeCommune": "55317", + "libelleAcheminement": "MANHEULLES", + "nomCommune": "MANHEULLES" }, { - "codePostal": "31530", - "codeCommune": "31339", - "libelleAcheminement": "MERENVIELLE", - "nomCommune": "MERENVIELLE" + "codePostal": "63460", + "codeCommune": "63379", + "libelleAcheminement": "ST MYON", + "nomCommune": "ST MYON" }, { - "codePostal": "50450", - "codeCommune": "50197", - "libelleAcheminement": "GAVRAY SUR SIENNE", - "nomCommune": "GAVRAY SUR SIENNE" + "codePostal": "09140", + "codeCommune": "09322", + "libelleAcheminement": "USTOU", + "nomCommune": "USTOU" }, { - "codePostal": "60400", - "codeCommune": "60105", - "libelleAcheminement": "BRETIGNY", - "nomCommune": "BRETIGNY" + "codePostal": "63990", + "codeCommune": "63179", + "libelleAcheminement": "JOB", + "nomCommune": "JOB" }, { - "codePostal": "38300", - "codeCommune": "38152", - "libelleAcheminement": "ECLOSE BADINIERES", - "nomCommune": "ECLOSE BADINIERES" + "codePostal": "53950", + "codeCommune": "53056", + "libelleAcheminement": "LA CHAPELLE ANTHENAISE", + "nomCommune": "LA CHAPELLE ANTHENAISE" }, { - "codePostal": "31330", - "codeCommune": "31341", - "libelleAcheminement": "MERVILLE", - "nomCommune": "MERVILLE" + "codePostal": "55160", + "codeCommune": "55320", + "libelleAcheminement": "MARCHEVILLE EN WOEVRE", + "nomCommune": "MARCHEVILLE EN WOEVRE" }, { - "codePostal": "50530", - "codeCommune": "50199", - "libelleAcheminement": "GENETS", - "nomCommune": "GENETS" + "codePostal": "63490", + "codeCommune": "63389", + "libelleAcheminement": "ST QUENTIN SUR SAUXILLANGES", + "nomCommune": "ST QUENTIN SUR SAUXILLANGES" }, { - "codePostal": "60210", - "codeCommune": "60108", - "libelleAcheminement": "BRIOT", - "nomCommune": "BRIOT" + "codePostal": "09220", + "codeCommune": "09334", + "libelleAcheminement": "VAL DE SOS", + "nomCommune": "VAL DE SOS" }, { - "codePostal": "38300", - "codeCommune": "38152", - "libelleAcheminement": "ECLOSE BADINIERES", - "nomCommune": "ECLOSE BADINIERES" + "codePostal": "63350", + "codeCommune": "63180", + "libelleAcheminement": "JOZE", + "nomCommune": "JOZE" }, { - "codePostal": "31190", - "codeCommune": "31345", - "libelleAcheminement": "MIREMONT", - "nomCommune": "MIREMONT" + "codePostal": "53440", + "codeCommune": "53057", + "libelleAcheminement": "LA CHAPELLE AU RIBOUL", + "nomCommune": "LA CHAPELLE AU RIBOUL" }, { - "codePostal": "50390", - "codeCommune": "50207", - "libelleAcheminement": "GOLLEVILLE", - "nomCommune": "GOLLEVILLE" + "codePostal": "55500", + "codeCommune": "55335", + "libelleAcheminement": "MENIL SUR SAULX", + "nomCommune": "MENIL SUR SAULX" }, { - "codePostal": "60220", - "codeCommune": "60110", - "libelleAcheminement": "BROQUIERS", - "nomCommune": "BROQUIERS" + "codePostal": "63550", + "codeCommune": "63393", + "libelleAcheminement": "ST REMY SUR DUROLLE", + "nomCommune": "ST REMY SUR DUROLLE" }, { - "codePostal": "38360", - "codeCommune": "38153", - "libelleAcheminement": "ENGINS", - "nomCommune": "ENGINS" + "codePostal": "09130", + "codeCommune": "09342", + "libelleAcheminement": "STE SUZANNE", + "nomCommune": "STE SUZANNE" }, { - "codePostal": "31370", - "codeCommune": "31353", - "libelleAcheminement": "MONES", - "nomCommune": "MONES" + "codePostal": "63690", + "codeCommune": "63183", + "libelleAcheminement": "LABESSETTE", + "nomCommune": "LABESSETTE" }, { - "codePostal": "50190", - "codeCommune": "50208", - "libelleAcheminement": "GONFREVILLE", - "nomCommune": "GONFREVILLE" + "codePostal": "53200", + "codeCommune": "53062", + "libelleAcheminement": "CHATEAU GONTIER SUR MAYENNE", + "nomCommune": "CHATEAU GONTIER SUR MAYENNE" }, { - "codePostal": "60640", - "codeCommune": "60132", - "libelleAcheminement": "CATIGNY", - "nomCommune": "CATIGNY" + "codePostal": "55150", + "codeCommune": "55341", + "libelleAcheminement": "MOIREY FLABAS CREPION", + "nomCommune": "MOIREY FLABAS CREPION" }, { - "codePostal": "38740", - "codeCommune": "38154", - "libelleAcheminement": "ENTRAIGUES", - "nomCommune": "ENTRAIGUES" + "codePostal": "63660", + "codeCommune": "63394", + "libelleAcheminement": "ST ROMAIN", + "nomCommune": "ST ROMAIN" }, { - "codePostal": "31160", - "codeCommune": "31357", - "libelleAcheminement": "MONTASTRUC DE SALIES", - "nomCommune": "MONTASTRUC DE SALIES" + "codePostal": "10340", + "codeCommune": "10025", + "libelleAcheminement": "BAGNEUX LA FOSSE", + "nomCommune": "BAGNEUX LA FOSSE" }, { - "codePostal": "50410", - "codeCommune": "50225", - "libelleAcheminement": "LE GUISLAIN", - "nomCommune": "LE GUISLAIN" + "codePostal": "63570", + "codeCommune": "63185", + "libelleAcheminement": "LAMONTGIE", + "nomCommune": "LAMONTGIE" }, { - "codePostal": "60290", - "codeCommune": "60134", - "libelleAcheminement": "CAUFFRY", - "nomCommune": "CAUFFRY" + "codePostal": "53400", + "codeCommune": "53068", + "libelleAcheminement": "CHERANCE", + "nomCommune": "CHERANCE" }, { - "codePostal": "38520", - "codeCommune": "38177", - "libelleAcheminement": "LA GARDE", - "nomCommune": "LA GARDE" + "codePostal": "55270", + "codeCommune": "55343", + "libelleAcheminement": "MONTBLAINVILLE", + "nomCommune": "MONTBLAINVILLE" }, { - "codePostal": "31290", - "codeCommune": "31377", - "libelleAcheminement": "MONTGAILLARD LAURAGAIS", - "nomCommune": "MONTGAILLARD LAURAGAIS" + "codePostal": "63950", + "codeCommune": "63397", + "libelleAcheminement": "ST SAUVES D AUVERGNE", + "nomCommune": "ST SAUVES D AUVERGNE" }, { - "codePostal": "01400", - "codeCommune": "01001", - "libelleAcheminement": "L ABERGEMENT CLEMENCIAT", - "nomCommune": "L ABERGEMENT CLEMENCIAT" + "codePostal": "10110", + "codeCommune": "10029", + "libelleAcheminement": "BALNOT SUR LAIGNES", + "nomCommune": "BALNOT SUR LAIGNES" }, { - "codePostal": "60230", - "codeCommune": "60139", - "libelleAcheminement": "CHAMBLY", - "nomCommune": "CHAMBLY" + "codePostal": "63270", + "codeCommune": "63188", + "libelleAcheminement": "LAPS", + "nomCommune": "LAPS" }, { - "codePostal": "38570", - "codeCommune": "38181", - "libelleAcheminement": "GONCELIN", - "nomCommune": "GONCELIN" + "codePostal": "53470", + "codeCommune": "53072", + "libelleAcheminement": "COMMER", + "nomCommune": "COMMER" }, { - "codePostal": "31370", - "codeCommune": "31382", - "libelleAcheminement": "MONTGRAS", - "nomCommune": "MONTGRAS" + "codePostal": "55140", + "codeCommune": "55344", + "libelleAcheminement": "MONTBRAS", + "nomCommune": "MONTBRAS" }, { - "codePostal": "01640", - "codeCommune": "01002", - "libelleAcheminement": "L ABERGEMENT DE VAREY", - "nomCommune": "L ABERGEMENT DE VAREY" + "codePostal": "63760", + "codeCommune": "63399", + "libelleAcheminement": "ST SULPICE", + "nomCommune": "ST SULPICE" }, { - "codePostal": "60240", - "codeCommune": "60144", - "libelleAcheminement": "CHAVENCON", - "nomCommune": "CHAVENCON" + "codePostal": "10200", + "codeCommune": "10032", + "libelleAcheminement": "BAROVILLE", + "nomCommune": "BAROVILLE" }, { - "codePostal": "38690", - "codeCommune": "38182", - "libelleAcheminement": "LE GRAND LEMPS", - "nomCommune": "LE GRAND LEMPS" + "codePostal": "63440", + "codeCommune": "63197", + "libelleAcheminement": "LISSEUIL", + "nomCommune": "LISSEUIL" }, { - "codePostal": "31350", - "codeCommune": "31385", - "libelleAcheminement": "MONTMAURIN", - "nomCommune": "MONTMAURIN" + "codePostal": "53300", + "codeCommune": "53079", + "libelleAcheminement": "COUESMES VAUCE", + "nomCommune": "COUESMES VAUCE" }, { - "codePostal": "01330", - "codeCommune": "01005", - "libelleAcheminement": "AMBERIEUX EN DOMBES", - "nomCommune": "AMBERIEUX EN DOMBES" + "codePostal": "55300", + "codeCommune": "55353", + "libelleAcheminement": "MONTSEC", + "nomCommune": "MONTSEC" }, { - "codePostal": "60350", - "codeCommune": "60145", - "libelleAcheminement": "CHELLES", - "nomCommune": "CHELLES" + "codePostal": "63320", + "codeCommune": "63403", + "libelleAcheminement": "ST VINCENT", + "nomCommune": "ST VINCENT" }, { - "codePostal": "38540", - "codeCommune": "38189", - "libelleAcheminement": "HEYRIEUX", - "nomCommune": "HEYRIEUX" + "codePostal": "10290", + "codeCommune": "10038", + "libelleAcheminement": "BERCENAY LE HAYER", + "nomCommune": "BERCENAY LE HAYER" }, { - "codePostal": "31420", - "codeCommune": "31386", - "libelleAcheminement": "MONTOULIEU ST BERNARD", - "nomCommune": "MONTOULIEU ST BERNARD" + "codePostal": "63410", + "codeCommune": "63206", + "libelleAcheminement": "MANZAT", + "nomCommune": "MANZAT" }, { - "codePostal": "01350", - "codeCommune": "01010", - "libelleAcheminement": "ANGLEFORT", - "nomCommune": "ANGLEFORT" + "codePostal": "53300", + "codeCommune": "53079", + "libelleAcheminement": "COUESMES VAUCE", + "nomCommune": "COUESMES VAUCE" }, { - "codePostal": "60120", - "codeCommune": "60146", - "libelleAcheminement": "CHEPOIX", - "nomCommune": "CHEPOIX" + "codePostal": "55400", + "codeCommune": "55356", + "libelleAcheminement": "MORANVILLE", + "nomCommune": "MORANVILLE" }, { - "codePostal": "38220", - "codeCommune": "38203", - "libelleAcheminement": "LAFFREY", - "nomCommune": "LAFFREY" + "codePostal": "63270", + "codeCommune": "63405", + "libelleAcheminement": "SALLEDES", + "nomCommune": "SALLEDES" }, { - "codePostal": "31430", - "codeCommune": "31387", - "libelleAcheminement": "MONTOUSSIN", - "nomCommune": "MONTOUSSIN" + "codePostal": "10450", + "codeCommune": "10060", + "libelleAcheminement": "BREVIANDES", + "nomCommune": "BREVIANDES" }, { - "codePostal": "01230", - "codeCommune": "01013", - "libelleAcheminement": "ARANDAS", - "nomCommune": "ARANDAS" + "codePostal": "63200", + "codeCommune": "63212", + "libelleAcheminement": "MARSAT", + "nomCommune": "MARSAT" }, { - "codePostal": "60440", - "codeCommune": "60148", - "libelleAcheminement": "CHEVREVILLE", - "nomCommune": "CHEVREVILLE" + "codePostal": "53250", + "codeCommune": "53080", + "libelleAcheminement": "COUPTRAIN", + "nomCommune": "COUPTRAIN" }, { - "codePostal": "38270", - "codeCommune": "38209", - "libelleAcheminement": "LENTIOL", - "nomCommune": "LENTIOL" + "codePostal": "55290", + "codeCommune": "55359", + "libelleAcheminement": "MORLEY", + "nomCommune": "MORLEY" }, { - "codePostal": "31850", - "codeCommune": "31389", - "libelleAcheminement": "MONTRABE", - "nomCommune": "MONTRABE" + "codePostal": "63970", + "codeCommune": "63407", + "libelleAcheminement": "SAULZET LE FROID", + "nomCommune": "SAULZET LE FROID" }, { - "codePostal": "01340", - "codeCommune": "01024", - "libelleAcheminement": "ATTIGNAT", - "nomCommune": "ATTIGNAT" + "codePostal": "10450", + "codeCommune": "10060", + "libelleAcheminement": "BREVIANDES", + "nomCommune": "BREVIANDES" }, { - "codePostal": "60190", - "codeCommune": "60152", - "libelleAcheminement": "CHOISY LA VICTOIRE", - "nomCommune": "CHOISY LA VICTOIRE" + "codePostal": "63160", + "codeCommune": "63216", + "libelleAcheminement": "MAUZUN", + "nomCommune": "MAUZUN" }, { - "codePostal": "38220", - "codeCommune": "38212", - "libelleAcheminement": "LIVET ET GAVET", - "nomCommune": "LIVET ET GAVET" + "codePostal": "53230", + "codeCommune": "53082", + "libelleAcheminement": "COURBEVEILLE", + "nomCommune": "COURBEVEILLE" }, { - "codePostal": "31210", - "codeCommune": "31390", - "libelleAcheminement": "MONTREJEAU", - "nomCommune": "MONTREJEAU" + "codePostal": "55230", + "codeCommune": "55367", + "libelleAcheminement": "MUZERAY", + "nomCommune": "MUZERAY" }, { - "codePostal": "01380", - "codeCommune": "01025", - "libelleAcheminement": "BAGE DOMMARTIN", - "nomCommune": "BAGE DOMMARTIN" + "codePostal": "63840", + "codeCommune": "63412", + "libelleAcheminement": "SAUVESSANGES", + "nomCommune": "SAUVESSANGES" }, { - "codePostal": "60110", - "codeCommune": "60162", - "libelleAcheminement": "CORBEIL CERF", - "nomCommune": "CORBEIL CERF" + "codePostal": "10110", + "codeCommune": "10070", + "libelleAcheminement": "CELLES SUR OURCE", + "nomCommune": "CELLES SUR OURCE" }, { - "codePostal": "38690", - "codeCommune": "38213", - "libelleAcheminement": "LONGECHENAL", - "nomCommune": "LONGECHENAL" + "codePostal": "63220", + "codeCommune": "63218", + "libelleAcheminement": "MAYRES", + "nomCommune": "MAYRES" }, { - "codePostal": "31600", - "codeCommune": "31395", - "libelleAcheminement": "MURET", - "nomCommune": "MURET" + "codePostal": "53400", + "codeCommune": "53084", + "libelleAcheminement": "CRAON", + "nomCommune": "CRAON" }, { - "codePostal": "01380", - "codeCommune": "01025", - "libelleAcheminement": "BAGE DOMMARTIN", - "nomCommune": "BAGE DOMMARTIN" + "codePostal": "55000", + "codeCommune": "55369", + "libelleAcheminement": "NAIVES ROSIERES", + "nomCommune": "NAIVES ROSIERES" }, { - "codePostal": "60350", - "codeCommune": "60167", - "libelleAcheminement": "COULOISY", - "nomCommune": "COULOISY" + "codePostal": "63500", + "codeCommune": "63422", + "libelleAcheminement": "SOLIGNAT", + "nomCommune": "SOLIGNAT" }, { - "codePostal": "38112", - "codeCommune": "38225", - "libelleAcheminement": "AUTRANS MEAUDRE EN VERCORS", - "nomCommune": "AUTRANS MEAUDRE EN VERCORS" + "codePostal": "10110", + "codeCommune": "10071", + "libelleAcheminement": "CHACENAY", + "nomCommune": "CHACENAY" }, { - "codePostal": "31330", - "codeCommune": "31403", - "libelleAcheminement": "ONDES", - "nomCommune": "ONDES" + "codePostal": "63320", + "codeCommune": "63222", + "libelleAcheminement": "MEILHAUD", + "nomCommune": "MEILHAUD" }, { - "codePostal": "01480", - "codeCommune": "01030", - "libelleAcheminement": "BEAUREGARD", - "nomCommune": "BEAUREGARD" + "codePostal": "53170", + "codeCommune": "53087", + "libelleAcheminement": "LA CROPTE", + "nomCommune": "LA CROPTE" }, { - "codePostal": "60660", - "codeCommune": "60173", - "libelleAcheminement": "CRAMOISY", - "nomCommune": "CRAMOISY" + "codePostal": "55260", + "codeCommune": "55380", + "libelleAcheminement": "NEUVILLE EN VERDUNOIS", + "nomCommune": "NEUVILLE EN VERDUNOIS" }, { - "codePostal": "38620", - "codeCommune": "38228", - "libelleAcheminement": "MERLAS", - "nomCommune": "MERLAS" + "codePostal": "63490", + "codeCommune": "63423", + "libelleAcheminement": "SUGERES", + "nomCommune": "SUGERES" }, { - "codePostal": "31220", - "codeCommune": "31406", - "libelleAcheminement": "PALAMINY", - "nomCommune": "PALAMINY" + "codePostal": "10130", + "codeCommune": "10074", + "libelleAcheminement": "CHAMOY", + "nomCommune": "CHAMOY" }, { - "codePostal": "01360", - "codeCommune": "01032", - "libelleAcheminement": "BELIGNEUX", - "nomCommune": "BELIGNEUX" + "codePostal": "63115", + "codeCommune": "63226", + "libelleAcheminement": "MUR SUR ALLIER", + "nomCommune": "MUR SUR ALLIER" }, { - "codePostal": "60360", - "codeCommune": "60178", - "libelleAcheminement": "CREVECOEUR LE GRAND", - "nomCommune": "CREVECOEUR LE GRAND" + "codePostal": "53540", + "codeCommune": "53088", + "libelleAcheminement": "CUILLE", + "nomCommune": "CUILLE" }, { - "codePostal": "38300", - "codeCommune": "38230", - "libelleAcheminement": "MEYRIE", - "nomCommune": "MEYRIE" + "codePostal": "55250", + "codeCommune": "55389", + "libelleAcheminement": "NUBECOURT", + "nomCommune": "NUBECOURT" }, { - "codePostal": "31320", - "codeCommune": "31409", - "libelleAcheminement": "PECHABOU", - "nomCommune": "PECHABOU" + "codePostal": "63720", + "codeCommune": "63424", + "libelleAcheminement": "SURAT", + "nomCommune": "SURAT" }, { - "codePostal": "01360", - "codeCommune": "01032", - "libelleAcheminement": "BELIGNEUX", - "nomCommune": "BELIGNEUX" + "codePostal": "10700", + "codeCommune": "10075", + "libelleAcheminement": "CHAMPFLEURY", + "nomCommune": "CHAMPFLEURY" }, { - "codePostal": "60112", - "codeCommune": "60180", - "libelleAcheminement": "CRILLON", - "nomCommune": "CRILLON" + "codePostal": "63650", + "codeCommune": "63231", + "libelleAcheminement": "LA MONNERIE LE MONTEL", + "nomCommune": "LA MONNERIE LE MONTEL" }, { - "codePostal": "38270", - "codeCommune": "38240", - "libelleAcheminement": "MOISSIEU SUR DOLON", - "nomCommune": "MOISSIEU SUR DOLON" + "codePostal": "53190", + "codeCommune": "53091", + "libelleAcheminement": "DESERTINES", + "nomCommune": "DESERTINES" }, { - "codePostal": "31350", - "codeCommune": "31412", - "libelleAcheminement": "PEGUILHAN", - "nomCommune": "PEGUILHAN" + "codePostal": "55150", + "codeCommune": "55394", + "libelleAcheminement": "ORNES", + "nomCommune": "ORNES" }, { - "codePostal": "01360", - "codeCommune": "01032", - "libelleAcheminement": "BELIGNEUX", - "nomCommune": "BELIGNEUX" + "codePostal": "63810", + "codeCommune": "63437", + "libelleAcheminement": "TREMOUILLE ST LOUP", + "nomCommune": "TREMOUILLE ST LOUP" }, { - "codePostal": "60400", - "codeCommune": "60189", - "libelleAcheminement": "CUTS", - "nomCommune": "CUTS" + "codePostal": "10210", + "codeCommune": "10080", + "libelleAcheminement": "CHAOURCE", + "nomCommune": "CHAOURCE" }, { - "codePostal": "38160", - "codeCommune": "38245", - "libelleAcheminement": "MONTAGNE", - "nomCommune": "MONTAGNE" + "codePostal": "63460", + "codeCommune": "63235", + "libelleAcheminement": "MONTCEL", + "nomCommune": "MONTCEL" }, { - "codePostal": "31480", - "codeCommune": "31413", - "libelleAcheminement": "PELLEPORT", - "nomCommune": "PELLEPORT" + "codePostal": "53190", + "codeCommune": "53093", + "libelleAcheminement": "LA DOREE", + "nomCommune": "LA DOREE" }, { - "codePostal": "01200", - "codeCommune": "01033", - "libelleAcheminement": "VALSERHONE", - "nomCommune": "VALSERHONE" + "codePostal": "55400", + "codeCommune": "55400", + "libelleAcheminement": "PARFONDRUPT", + "nomCommune": "PARFONDRUPT" }, { - "codePostal": "60210", - "codeCommune": "60194", - "libelleAcheminement": "DARGIES", - "nomCommune": "DARGIES" + "codePostal": "63520", + "codeCommune": "63438", + "libelleAcheminement": "TREZIOUX", + "nomCommune": "TREZIOUX" }, { - "codePostal": "38510", - "codeCommune": "38261", - "libelleAcheminement": "MORESTEL", - "nomCommune": "MORESTEL" + "codePostal": "10150", + "codeCommune": "10084", + "libelleAcheminement": "CHARMONT SOUS BARBUISE", + "nomCommune": "CHARMONT SOUS BARBUISE" }, { - "codePostal": "31860", - "codeCommune": "31421", - "libelleAcheminement": "PINS JUSTARET", - "nomCommune": "PINS JUSTARET" + "codePostal": "63340", + "codeCommune": "63242", + "libelleAcheminement": "MORIAT", + "nomCommune": "MORIAT" }, { - "codePostal": "01370", - "codeCommune": "01038", - "libelleAcheminement": "BENY", - "nomCommune": "BENY" + "codePostal": "53190", + "codeCommune": "53100", + "libelleAcheminement": "FOUGEROLLES DU PLESSIS", + "nomCommune": "FOUGEROLLES DU PLESSIS" }, { - "codePostal": "60420", - "codeCommune": "60200", - "libelleAcheminement": "DOMFRONT", - "nomCommune": "DOMFRONT" + "codePostal": "55230", + "codeCommune": "55405", + "libelleAcheminement": "PILLON", + "nomCommune": "PILLON" }, { - "codePostal": "38770", - "codeCommune": "38266", - "libelleAcheminement": "LA MOTTE ST MARTIN", - "nomCommune": "LA MOTTE ST MARTIN" + "codePostal": "63910", + "codeCommune": "63445", + "libelleAcheminement": "VASSEL", + "nomCommune": "VASSEL" }, { - "codePostal": "31430", - "codeCommune": "31436", - "libelleAcheminement": "POUY DE TOUGES", - "nomCommune": "POUY DE TOUGES" + "codePostal": "10290", + "codeCommune": "10085", + "libelleAcheminement": "CHARMOY", + "nomCommune": "CHARMOY" }, { - "codePostal": "01340", - "codeCommune": "01040", - "libelleAcheminement": "BEREZIAT", - "nomCommune": "BEREZIAT" + "codePostal": "63700", + "codeCommune": "63243", + "libelleAcheminement": "MOUREUILLE", + "nomCommune": "MOUREUILLE" }, { - "codePostal": "60800", - "codeCommune": "60203", - "libelleAcheminement": "DUVY", - "nomCommune": "DUVY" + "codePostal": "53410", + "codeCommune": "53108", + "libelleAcheminement": "LA GRAVELLE", + "nomCommune": "LA GRAVELLE" }, { - "codePostal": "38260", - "codeCommune": "38267", - "libelleAcheminement": "LE MOTTIER", - "nomCommune": "MOTTIER" + "codePostal": "55600", + "codeCommune": "55410", + "libelleAcheminement": "QUINCY LANDZECOURT", + "nomCommune": "QUINCY LANDZECOURT" }, { - "codePostal": "31570", - "codeCommune": "31439", - "libelleAcheminement": "PRESERVILLE", - "nomCommune": "PRESERVILLE" + "codePostal": "63260", + "codeCommune": "63446", + "libelleAcheminement": "VENSAT", + "nomCommune": "VENSAT" }, { - "codePostal": "01500", - "codeCommune": "01041", - "libelleAcheminement": "BETTANT", - "nomCommune": "BETTANT" + "codePostal": "10700", + "codeCommune": "10095", + "libelleAcheminement": "LE CHENE", + "nomCommune": "LE CHENE" }, { - "codePostal": "60210", - "codeCommune": "60205", - "libelleAcheminement": "ELENCOURT", - "nomCommune": "ELENCOURT" + "codePostal": "63560", + "codeCommune": "63251", + "libelleAcheminement": "NEUF EGLISE", + "nomCommune": "NEUF EGLISE" }, { - "codePostal": "38350", - "codeCommune": "38273", - "libelleAcheminement": "NANTES EN RATIER", - "nomCommune": "NANTES EN RATIER" + "codePostal": "53160", + "codeCommune": "53122", + "libelleAcheminement": "JUBLAINS", + "nomCommune": "JUBLAINS" }, { - "codePostal": "31360", - "codeCommune": "31440", - "libelleAcheminement": "PROUPIARY", - "nomCommune": "PROUPIARY" + "codePostal": "55120", + "codeCommune": "55416", + "libelleAcheminement": "RARECOURT", + "nomCommune": "RARECOURT" }, { - "codePostal": "01290", - "codeCommune": "01042", - "libelleAcheminement": "BEY", - "nomCommune": "BEY" + "codePostal": "63210", + "codeCommune": "63451", + "libelleAcheminement": "VERNINES", + "nomCommune": "VERNINES" }, { - "codePostal": "60157", - "codeCommune": "60206", - "libelleAcheminement": "ELINCOURT STE MARGUERITE", - "nomCommune": "ELINCOURT STE MARGUERITE" + "codePostal": "10250", + "codeCommune": "10111", + "libelleAcheminement": "COURTERON", + "nomCommune": "COURTERON" }, { - "codePostal": "38470", - "codeCommune": "38275", - "libelleAcheminement": "SERRE NERPOL", - "nomCommune": "SERRE NERPOL" + "codePostal": "63340", + "codeCommune": "63255", + "libelleAcheminement": "NONETTE ORSONNETTE", + "nomCommune": "NONETTE ORSONNETTE" }, { - "codePostal": "31520", - "codeCommune": "31446", - "libelleAcheminement": "RAMONVILLE ST AGNE", - "nomCommune": "RAMONVILLE ST AGNE" + "codePostal": "53200", + "codeCommune": "53124", + "libelleAcheminement": "PREE D ANJOU", + "nomCommune": "PREE D ANJOU" }, { - "codePostal": "01640", - "codeCommune": "01056", - "libelleAcheminement": "BOYEUX ST JEROME", - "nomCommune": "BOYEUX ST JEROME" + "codePostal": "55120", + "codeCommune": "55419", + "libelleAcheminement": "RECICOURT", + "nomCommune": "RECICOURT" }, { - "codePostal": "60123", - "codeCommune": "60207", - "libelleAcheminement": "EMEVILLE", - "nomCommune": "EMEVILLE" + "codePostal": "63330", + "codeCommune": "63462", + "libelleAcheminement": "VIRLET", + "nomCommune": "VIRLET" }, { - "codePostal": "38300", - "codeCommune": "38276", - "libelleAcheminement": "NIVOLAS VERMELLE", - "nomCommune": "NIVOLAS VERMELLE" + "codePostal": "10210", + "codeCommune": "10120", + "libelleAcheminement": "CUSSANGY", + "nomCommune": "CUSSANGY" }, { - "codePostal": "31250", - "codeCommune": "31451", - "libelleAcheminement": "REVEL", - "nomCommune": "REVEL" + "codePostal": "63880", + "codeCommune": "63260", + "libelleAcheminement": "OLMET", + "nomCommune": "OLMET" }, { - "codePostal": "01110", - "codeCommune": "01060", - "libelleAcheminement": "BRENOD", - "nomCommune": "BRENOD" + "codePostal": "53110", + "codeCommune": "53127", + "libelleAcheminement": "LASSAY LES CHATEAUX", + "nomCommune": "LASSAY LES CHATEAUX" }, { - "codePostal": "60240", - "codeCommune": "60209", - "libelleAcheminement": "LA CORNE EN VEXIN", - "nomCommune": "LA CORNE EN VEXIN" + "codePostal": "55190", + "codeCommune": "55421", + "libelleAcheminement": "REFFROY", + "nomCommune": "REFFROY" }, { - "codePostal": "38450", - "codeCommune": "38277", - "libelleAcheminement": "NOTRE DAME DE COMMIERS", - "nomCommune": "NOTRE DAME DE COMMIERS" + "codePostal": "63620", + "codeCommune": "63467", + "libelleAcheminement": "VOINGT", + "nomCommune": "VOINGT" }, { - "codePostal": "31290", - "codeCommune": "31453", - "libelleAcheminement": "RIEUMAJOU", - "nomCommune": "RIEUMAJOU" + "codePostal": "10130", + "codeCommune": "10122", + "libelleAcheminement": "DAVREY", + "nomCommune": "DAVREY" }, { - "codePostal": "01300", - "codeCommune": "01061", - "libelleAcheminement": "BRENS", - "nomCommune": "BRENS" + "codePostal": "63210", + "codeCommune": "63264", + "libelleAcheminement": "ORCIVAL", + "nomCommune": "ORCIVAL" }, { - "codePostal": "60190", - "codeCommune": "60210", - "libelleAcheminement": "EPINEUSE", - "nomCommune": "EPINEUSE" + "codePostal": "53540", + "codeCommune": "53128", + "libelleAcheminement": "LAUBRIERES", + "nomCommune": "LAUBRIERES" }, { - "codePostal": "38780", - "codeCommune": "38288", - "libelleAcheminement": "OYTIER ST OBLAS", - "nomCommune": "OYTIER ST OBLAS" + "codePostal": "55800", + "codeCommune": "55427", + "libelleAcheminement": "REVIGNY SUR ORNAIN", + "nomCommune": "REVIGNY SUR ORNAIN" }, { - "codePostal": "31140", - "codeCommune": "31467", - "libelleAcheminement": "ST ALBAN", - "nomCommune": "ST ALBAN" + "codePostal": "63120", + "codeCommune": "63468", + "libelleAcheminement": "VOLLORE MONTAGNE", + "nomCommune": "VOLLORE MONTAGNE" }, { - "codePostal": "01480", - "codeCommune": "01075", - "libelleAcheminement": "CHALEINS", - "nomCommune": "CHALEINS" + "codePostal": "10700", + "codeCommune": "10130", + "libelleAcheminement": "DOSNON", + "nomCommune": "DOSNON" }, { - "codePostal": "60110", - "codeCommune": "60218", - "libelleAcheminement": "ESCHES", - "nomCommune": "ESCHES" + "codePostal": "63550", + "codeCommune": "63267", + "libelleAcheminement": "PALLADUC", + "nomCommune": "PALLADUC" }, { - "codePostal": "38270", - "codeCommune": "38290", - "libelleAcheminement": "PACT", - "nomCommune": "PACT" + "codePostal": "53210", + "codeCommune": "53141", + "libelleAcheminement": "LOUVIGNE", + "nomCommune": "LOUVIGNE" }, { - "codePostal": "31440", - "codeCommune": "31471", - "libelleAcheminement": "ST BEAT LEZ", - "nomCommune": "ST BEAT LEZ" + "codePostal": "55150", + "codeCommune": "55428", + "libelleAcheminement": "REVILLE AUX BOIS", + "nomCommune": "REVILLE AUX BOIS" }, { - "codePostal": "01410", - "codeCommune": "01081", - "libelleAcheminement": "CHAMPFROMIER", - "nomCommune": "CHAMPFROMIER" + "codePostal": "63120", + "codeCommune": "63469", + "libelleAcheminement": "VOLLORE VILLE", + "nomCommune": "VOLLORE VILLE" }, { - "codePostal": "60220", - "codeCommune": "60219", - "libelleAcheminement": "ESCLES ST PIERRE", - "nomCommune": "ESCLES ST PIERRE" + "codePostal": "10170", + "codeCommune": "10131", + "libelleAcheminement": "DROUPT ST BASLE", + "nomCommune": "DROUPT ST BASLE" }, { - "codePostal": "38850", - "codeCommune": "38292", - "libelleAcheminement": "VILLAGES DU LAC DE PALADRU", - "nomCommune": "VILLAGES DU LAC DE PALADRU" + "codePostal": "63270", + "codeCommune": "63269", + "libelleAcheminement": "PARENT", + "nomCommune": "PARENT" }, { - "codePostal": "31440", - "codeCommune": "31471", - "libelleAcheminement": "ST BEAT LEZ", - "nomCommune": "ST BEAT LEZ" + "codePostal": "53250", + "codeCommune": "53142", + "libelleAcheminement": "MADRE", + "nomCommune": "MADRE" }, { - "codePostal": "01320", - "codeCommune": "01092", - "libelleAcheminement": "CHATILLON LA PALUD", - "nomCommune": "CHATILLON LA PALUD" + "codePostal": "55300", + "codeCommune": "55431", + "libelleAcheminement": "RICHECOURT", + "nomCommune": "RICHECOURT" }, { - "codePostal": "60620", - "codeCommune": "60224", - "libelleAcheminement": "ETAVIGNY", - "nomCommune": "ETAVIGNY" + "codePostal": "63700", + "codeCommune": "63471", + "libelleAcheminement": "YOUX", + "nomCommune": "YOUX" }, { - "codePostal": "38550", - "codeCommune": "38298", - "libelleAcheminement": "LE PEAGE DE ROUSSILLON", - "nomCommune": "LE PEAGE DE ROUSSILLON" + "codePostal": "10350", + "codeCommune": "10134", + "libelleAcheminement": "ECHEMINES", + "nomCommune": "ECHEMINES" }, { - "codePostal": "31430", - "codeCommune": "31476", - "libelleAcheminement": "ST ELIX LE CHATEAU", - "nomCommune": "ST ELIX LE CHATEAU" + "codePostal": "63800", + "codeCommune": "63273", + "libelleAcheminement": "PERIGNAT SUR ALLIER", + "nomCommune": "PERIGNAT SUR ALLIER" }, { - "codePostal": "01660", - "codeCommune": "01096", - "libelleAcheminement": "CHAVEYRIAT", - "nomCommune": "CHAVEYRIAT" + "codePostal": "53100", + "codeCommune": "53147", + "libelleAcheminement": "MAYENNE", + "nomCommune": "MAYENNE" }, { - "codePostal": "60960", - "codeCommune": "60233", - "libelleAcheminement": "FEUQUIERES", - "nomCommune": "FEUQUIERES" + "codePostal": "55150", + "codeCommune": "55437", + "libelleAcheminement": "ROMAGNE SOUS LES COTES", + "nomCommune": "ROMAGNE SOUS LES COTES" }, { - "codePostal": "38260", - "codeCommune": "38311", - "libelleAcheminement": "POMMIER DE BEAUREPAIRE", - "nomCommune": "POMMIER DE BEAUREPAIRE" + "codePostal": "63270", + "codeCommune": "63472", + "libelleAcheminement": "YRONDE ET BURON", + "nomCommune": "YRONDE ET BURON" }, { - "codePostal": "31350", - "codeCommune": "31479", - "libelleAcheminement": "ST FERREOL DE COMMINGES", - "nomCommune": "ST FERREOL DE COMMINGES" + "codePostal": "10110", + "codeCommune": "10136", + "libelleAcheminement": "EGUILLY SOUS BOIS", + "nomCommune": "EGUILLY SOUS BOIS" }, { - "codePostal": "01170", - "codeCommune": "01103", - "libelleAcheminement": "CHEVRY", - "nomCommune": "CHEVRY" + "codePostal": "63270", + "codeCommune": "63280", + "libelleAcheminement": "PIGNOLS", + "nomCommune": "PIGNOLS" }, { - "codePostal": "60120", - "codeCommune": "60237", - "libelleAcheminement": "FLECHY", - "nomCommune": "FLECHY" + "codePostal": "53200", + "codeCommune": "53150", + "libelleAcheminement": "MENIL", + "nomCommune": "MENIL" }, { - "codePostal": "38780", - "codeCommune": "38318", - "libelleAcheminement": "PONT EVEQUE", - "nomCommune": "PONT EVEQUE" + "codePostal": "55260", + "codeCommune": "55442", + "libelleAcheminement": "RAIVAL", + "nomCommune": "RAIVAL" }, { - "codePostal": "31800", - "codeCommune": "31483", - "libelleAcheminement": "ST GAUDENS", - "nomCommune": "ST GAUDENS" + "codePostal": "64460", + "codeCommune": "64001", + "libelleAcheminement": "AAST", + "nomCommune": "AAST" }, { - "codePostal": "01300", - "codeCommune": "01116", - "libelleAcheminement": "CONTREVOZ", - "nomCommune": "CONTREVOZ" + "codePostal": "10190", + "codeCommune": "10142", + "libelleAcheminement": "ESTISSAC", + "nomCommune": "ESTISSAC" }, { - "codePostal": "60380", - "codeCommune": "60244", - "libelleAcheminement": "FONTENAY TORCY", - "nomCommune": "FONTENAY TORCY" + "codePostal": "63430", + "codeCommune": "63284", + "libelleAcheminement": "PONT DU CHATEAU", + "nomCommune": "PONT DU CHATEAU" }, { - "codePostal": "38680", - "codeCommune": "38322", - "libelleAcheminement": "PRESLES", - "nomCommune": "PRESLES" + "codePostal": "53970", + "codeCommune": "53157", + "libelleAcheminement": "MONTIGNE LE BRILLANT", + "nomCommune": "MONTIGNE LE BRILLANT" }, { - "codePostal": "31180", - "codeCommune": "31484", - "libelleAcheminement": "ST GENIES BELLEVUE", - "nomCommune": "ST GENIES BELLEVUE" + "codePostal": "55400", + "codeCommune": "55443", + "libelleAcheminement": "ROUVRES EN WOEVRE", + "nomCommune": "ROUVRES EN WOEVRE" }, { - "codePostal": "01290", - "codeCommune": "01123", - "libelleAcheminement": "CORMORANCHE SUR SAONE", - "nomCommune": "CORMORANCHE SUR SAONE" + "codePostal": "64150", + "codeCommune": "64003", + "libelleAcheminement": "ABIDOS", + "nomCommune": "ABIDOS" }, { - "codePostal": "60220", - "codeCommune": "60245", - "libelleAcheminement": "FORMERIE", - "nomCommune": "FORMERIE" + "codePostal": "10190", + "codeCommune": "10142", + "libelleAcheminement": "ESTISSAC", + "nomCommune": "ESTISSAC" }, { - "codePostal": "38350", - "codeCommune": "38326", - "libelleAcheminement": "PRUNIERES", - "nomCommune": "PRUNIERES" + "codePostal": "63330", + "codeCommune": "63293", + "libelleAcheminement": "LE QUARTIER", + "nomCommune": "LE QUARTIER" }, { - "codePostal": "31350", - "codeCommune": "31498", - "libelleAcheminement": "ST LOUP EN COMMINGES", - "nomCommune": "ST LOUP EN COMMINGES" + "codePostal": "53320", + "codeCommune": "53158", + "libelleAcheminement": "MONTJEAN", + "nomCommune": "MONTJEAN" }, { - "codePostal": "01340", - "codeCommune": "01130", - "libelleAcheminement": "BRESSE VALLONS", - "nomCommune": "BRESSE VALLONS" + "codePostal": "55170", + "codeCommune": "55447", + "libelleAcheminement": "RUPT AUX NONAINS", + "nomCommune": "RUPT AUX NONAINS" }, { - "codePostal": "60130", - "codeCommune": "60252", - "libelleAcheminement": "FOURNIVAL", - "nomCommune": "FOURNIVAL" + "codePostal": "64490", + "codeCommune": "64006", + "libelleAcheminement": "ACCOUS", + "nomCommune": "ACCOUS" }, { - "codePostal": "38950", - "codeCommune": "38328", - "libelleAcheminement": "QUAIX EN CHARTREUSE", - "nomCommune": "QUAIX EN CHARTREUSE" + "codePostal": "10290", + "codeCommune": "10146", + "libelleAcheminement": "FAY LES MARCILLY", + "nomCommune": "FAY LES MARCILLY" }, { - "codePostal": "31370", - "codeCommune": "31520", - "libelleAcheminement": "SAJAS", - "nomCommune": "SAJAS" + "codePostal": "63310", + "codeCommune": "63295", + "libelleAcheminement": "RANDAN", + "nomCommune": "RANDAN" }, { - "codePostal": "01750", - "codeCommune": "01134", - "libelleAcheminement": "CROTTET", - "nomCommune": "CROTTET" + "codePostal": "53640", + "codeCommune": "53160", + "libelleAcheminement": "MONTREUIL POULAY", + "nomCommune": "MONTREUIL POULAY" }, { - "codePostal": "60190", - "codeCommune": "60254", - "libelleAcheminement": "FRANCIERES", - "nomCommune": "FRANCIERES" + "codePostal": "55150", + "codeCommune": "55450", + "libelleAcheminement": "RUPT SUR OTHAIN", + "nomCommune": "RUPT SUR OTHAIN" }, { - "codePostal": "38270", - "codeCommune": "38335", - "libelleAcheminement": "REVEL TOURDAN", - "nomCommune": "REVEL TOURDAN" + "codePostal": "64400", + "codeCommune": "64007", + "libelleAcheminement": "AGNOS", + "nomCommune": "AGNOS" }, { - "codePostal": "31110", - "codeCommune": "31524", - "libelleAcheminement": "SALLES ET PRATVIEL", - "nomCommune": "SALLES ET PRATVIEL" + "codePostal": "10400", + "codeCommune": "10148", + "libelleAcheminement": "FERREUX QUINCEY", + "nomCommune": "FERREUX QUINCEY" }, { - "codePostal": "01170", - "codeCommune": "01135", - "libelleAcheminement": "CROZET", - "nomCommune": "CROZET" + "codePostal": "63190", + "codeCommune": "63296", + "libelleAcheminement": "RAVEL", + "nomCommune": "RAVEL" }, { - "codePostal": "60240", - "codeCommune": "60256", - "libelleAcheminement": "MONTCHEVREUIL", - "nomCommune": "MONTCHEVREUIL" + "codePostal": "53150", + "codeCommune": "53161", + "libelleAcheminement": "MONTSURS", + "nomCommune": "MONTSURS" }, { - "codePostal": "38140", - "codeCommune": "38337", - "libelleAcheminement": "RIVES SUR FURE", - "nomCommune": "RIVES" + "codePostal": "55160", + "codeCommune": "55465", + "libelleAcheminement": "ST REMY LA CALONNE", + "nomCommune": "ST REMY LA CALONNE" }, { - "codePostal": "31600", - "codeCommune": "31533", - "libelleAcheminement": "SAUBENS", - "nomCommune": "SAUBENS" + "codePostal": "64120", + "codeCommune": "64010", + "libelleAcheminement": "AICIRITS CAMOU SUHAST", + "nomCommune": "AICIRITS CAMOU SUHAST" }, { - "codePostal": "01560", - "codeCommune": "01139", - "libelleAcheminement": "CURCIAT DONGALON", - "nomCommune": "CURCIAT DONGALON" + "codePostal": "10360", + "codeCommune": "10155", + "libelleAcheminement": "FONTETTE", + "nomCommune": "FONTETTE" }, { - "codePostal": "60530", - "codeCommune": "60259", - "libelleAcheminement": "FRESNOY EN THELLE", - "nomCommune": "FRESNOY EN THELLE" + "codePostal": "63930", + "codeCommune": "63298", + "libelleAcheminement": "LA RENAUDIE", + "nomCommune": "LA RENAUDIE" }, { - "codePostal": "38210", - "codeCommune": "38338", - "libelleAcheminement": "LA RIVIERE", - "nomCommune": "LA RIVIERE" + "codePostal": "53250", + "codeCommune": "53164", + "libelleAcheminement": "NEUILLY LE VENDIN", + "nomCommune": "NEUILLY LE VENDIN" }, { - "codePostal": "31510", - "codeCommune": "31535", - "libelleAcheminement": "SAUVETERRE DE COMMINGES", - "nomCommune": "SAUVETERRE DE COMMINGES" + "codePostal": "55000", + "codeCommune": "55466", + "libelleAcheminement": "SALMAGNE", + "nomCommune": "SALMAGNE" }, { - "codePostal": "01590", - "codeCommune": "01148", - "libelleAcheminement": "DORTAN", - "nomCommune": "DORTAN" + "codePostal": "64120", + "codeCommune": "64010", + "libelleAcheminement": "AICIRITS CAMOU SUHAST", + "nomCommune": "AICIRITS CAMOU SUHAST" }, { - "codePostal": "60127", - "codeCommune": "60260", - "libelleAcheminement": "FRESNOY LA RIVIERE", - "nomCommune": "FRESNOY LA RIVIERE" + "codePostal": "10190", + "codeCommune": "10156", + "libelleAcheminement": "FONTVANNES", + "nomCommune": "FONTVANNES" }, { - "codePostal": "38090", - "codeCommune": "38339", - "libelleAcheminement": "ROCHE", - "nomCommune": "ROCHE" + "codePostal": "63200", + "codeCommune": "63300", + "libelleAcheminement": "RIOM", + "nomCommune": "RIOM" }, { - "codePostal": "31800", - "codeCommune": "31536", - "libelleAcheminement": "SAUX ET POMAREDE", - "nomCommune": "SAUX ET POMAREDE" + "codePostal": "53410", + "codeCommune": "53169", + "libelleAcheminement": "OLIVET", + "nomCommune": "OLIVET" }, { - "codePostal": "01250", - "codeCommune": "01150", - "libelleAcheminement": "DROM", - "nomCommune": "DROM" + "codePostal": "55300", + "codeCommune": "55467", + "libelleAcheminement": "SAMPIGNY", + "nomCommune": "SAMPIGNY" }, { - "codePostal": "60480", - "codeCommune": "60265", - "libelleAcheminement": "FROISSY", - "nomCommune": "FROISSY" + "codePostal": "64130", + "codeCommune": "64012", + "libelleAcheminement": "AINHARP", + "nomCommune": "AINHARP" }, { - "codePostal": "38480", - "codeCommune": "38343", - "libelleAcheminement": "ROMAGNIEU", - "nomCommune": "ROMAGNIEU" + "codePostal": "10200", + "codeCommune": "10161", + "libelleAcheminement": "FRESNAY", + "nomCommune": "FRESNAY" }, { - "codePostal": "31460", - "codeCommune": "31540", - "libelleAcheminement": "SEGREVILLE", - "nomCommune": "SEGREVILLE" + "codePostal": "63670", + "codeCommune": "63302", + "libelleAcheminement": "LA ROCHE BLANCHE", + "nomCommune": "LA ROCHE BLANCHE" }, { - "codePostal": "01550", - "codeCommune": "01158", - "libelleAcheminement": "FARGES", - "nomCommune": "FARGES" + "codePostal": "53220", + "codeCommune": "53181", + "libelleAcheminement": "PONTMAIN", + "nomCommune": "PONTMAIN" }, { - "codePostal": "60400", - "codeCommune": "60270", - "libelleAcheminement": "GENVRY", - "nomCommune": "GENVRY" + "codePostal": "55110", + "codeCommune": "55469", + "libelleAcheminement": "SASSEY SUR MEUSE", + "nomCommune": "SASSEY SUR MEUSE" }, { - "codePostal": "38300", - "codeCommune": "38348", - "libelleAcheminement": "RUY MONTCEAU", - "nomCommune": "RUY MONTCEAU" + "codePostal": "64160", + "codeCommune": "64027", + "libelleAcheminement": "ANOS", + "nomCommune": "ANOS" }, { - "codePostal": "31430", - "codeCommune": "31543", - "libelleAcheminement": "SENARENS", - "nomCommune": "SENARENS" + "codePostal": "10200", + "codeCommune": "10163", + "libelleAcheminement": "FULIGNY", + "nomCommune": "FULIGNY" }, { - "codePostal": "01090", - "codeCommune": "01165", - "libelleAcheminement": "FRANCHELEINS", - "nomCommune": "FRANCHELEINS" + "codePostal": "63420", + "codeCommune": "63303", + "libelleAcheminement": "ROCHE CHARLES LA MAYRAND", + "nomCommune": "ROCHE CHARLES LA MAYRAND" }, { - "codePostal": "60380", - "codeCommune": "60271", - "libelleAcheminement": "GERBEROY", - "nomCommune": "GERBEROY" + "codePostal": "53140", + "codeCommune": "53185", + "libelleAcheminement": "PRE EN PAIL ST SAMSON", + "nomCommune": "PRE EN PAIL ST SAMSON" }, { - "codePostal": "38650", - "codeCommune": "38355", - "libelleAcheminement": "ST ANDEOL", - "nomCommune": "ST ANDEOL" + "codePostal": "55500", + "codeCommune": "55472", + "libelleAcheminement": "SAULVAUX", + "nomCommune": "SAULVAUX" }, { - "codePostal": "31560", - "codeCommune": "31546", - "libelleAcheminement": "SEYRE", - "nomCommune": "SEYRE" + "codePostal": "64320", + "codeCommune": "64041", + "libelleAcheminement": "ARESSY", + "nomCommune": "ARESSY" }, { - "codePostal": "01190", - "codeCommune": "01175", - "libelleAcheminement": "GORREVOD", - "nomCommune": "GORREVOD" + "codePostal": "10210", + "codeCommune": "10168", + "libelleAcheminement": "LES GRANGES", + "nomCommune": "LES GRANGES" }, { - "codePostal": "60129", - "codeCommune": "60272", - "libelleAcheminement": "GILOCOURT", - "nomCommune": "GILOCOURT" + "codePostal": "63420", + "codeCommune": "63303", + "libelleAcheminement": "ROCHE CHARLES LA MAYRAND", + "nomCommune": "ROCHE CHARLES LA MAYRAND" }, { - "codePostal": "38160", - "codeCommune": "38360", - "libelleAcheminement": "ST APPOLINARD", - "nomCommune": "ST APPOLINARD" + "codePostal": "53360", + "codeCommune": "53186", + "libelleAcheminement": "QUELAINES ST GAULT", + "nomCommune": "QUELAINES ST GAULT" }, { - "codePostal": "31570", - "codeCommune": "31551", - "libelleAcheminement": "TARABEL", - "nomCommune": "TARABEL" + "codePostal": "55500", + "codeCommune": "55472", + "libelleAcheminement": "SAULVAUX", + "nomCommune": "SAULVAUX" }, { - "codePostal": "01250", - "codeCommune": "01177", - "libelleAcheminement": "GRAND CORENT", - "nomCommune": "GRAND CORENT" + "codePostal": "64410", + "codeCommune": "64044", + "libelleAcheminement": "ARGET", + "nomCommune": "ARGET" }, { - "codePostal": "60650", - "codeCommune": "60275", - "libelleAcheminement": "GLATIGNY", - "nomCommune": "GLATIGNY" + "codePostal": "10700", + "codeCommune": "10172", + "libelleAcheminement": "HERBISSE", + "nomCommune": "HERBISSE" }, { - "codePostal": "38960", - "codeCommune": "38362", - "libelleAcheminement": "ST AUPRE", - "nomCommune": "ST AUPRE" + "codePostal": "63220", + "codeCommune": "63312", + "libelleAcheminement": "ST ALYRE D ARLANC", + "nomCommune": "ST ALYRE D ARLANC" }, { - "codePostal": "31260", - "codeCommune": "31554", - "libelleAcheminement": "TOUILLE", - "nomCommune": "TOUILLE" + "codePostal": "53700", + "codeCommune": "53198", + "libelleAcheminement": "ST AUBIN DU DESERT", + "nomCommune": "ST AUBIN DU DESERT" }, { - "codePostal": "01220", - "codeCommune": "01180", - "libelleAcheminement": "GRILLY", - "nomCommune": "GRILLY" + "codePostal": "55160", + "codeCommune": "55473", + "libelleAcheminement": "SAULX LES CHAMPLON", + "nomCommune": "SAULX LES CHAMPLON" }, { - "codePostal": "60640", - "codeCommune": "60278", - "libelleAcheminement": "GOLANCOURT", - "nomCommune": "GOLANCOURT" + "codePostal": "64130", + "codeCommune": "64050", + "libelleAcheminement": "ARRAST LARREBIEU", + "nomCommune": "ARRAST LARREBIEU" }, { - "codePostal": "38620", - "codeCommune": "38372", - "libelleAcheminement": "ST BUEIL", - "nomCommune": "ST BUEIL" + "codePostal": "10800", + "codeCommune": "10173", + "libelleAcheminement": "ISLE AUMONT", + "nomCommune": "ISLE AUMONT" }, { - "codePostal": "31100", - "codeCommune": "31555", - "libelleAcheminement": "TOULOUSE", - "nomCommune": "TOULOUSE" + "codePostal": "63310", + "codeCommune": "63317", + "libelleAcheminement": "ST ANDRE LE COQ", + "nomCommune": "ST ANDRE LE COQ" }, { - "codePostal": "01110", - "codeCommune": "01185", - "libelleAcheminement": "PLATEAU D HAUTEVILLE", - "nomCommune": "PLATEAU D HAUTEVILLE" + "codePostal": "53140", + "codeCommune": "53204", + "libelleAcheminement": "ST CALAIS DU DESERT", + "nomCommune": "ST CALAIS DU DESERT" }, { - "codePostal": "60210", - "codeCommune": "60286", - "libelleAcheminement": "GRANDVILLIERS", - "nomCommune": "GRANDVILLIERS" + "codePostal": "55190", + "codeCommune": "55475", + "libelleAcheminement": "SAUVOY", + "nomCommune": "SAUVOY" }, { - "codePostal": "38500", - "codeCommune": "38373", - "libelleAcheminement": "ST CASSIEN", - "nomCommune": "ST CASSIEN" + "codePostal": "64370", + "codeCommune": "64057", + "libelleAcheminement": "ARTHEZ DE BEARN", + "nomCommune": "ARTHEZ DE BEARN" }, { - "codePostal": "31200", - "codeCommune": "31555", - "libelleAcheminement": "TOULOUSE", - "nomCommune": "TOULOUSE" + "codePostal": "10500", + "codeCommune": "10184", + "libelleAcheminement": "JUZANVIGNY", + "nomCommune": "JUZANVIGNY" }, { - "codePostal": "01110", - "codeCommune": "01185", - "libelleAcheminement": "PLATEAU D HAUTEVILLE", - "nomCommune": "PLATEAU D HAUTEVILLE" + "codePostal": "63660", + "codeCommune": "63319", + "libelleAcheminement": "ST ANTHEME", + "nomCommune": "ST ANTHEME" }, { - "codePostal": "60210", - "codeCommune": "60289", - "libelleAcheminement": "GREZ", - "nomCommune": "GREZ" + "codePostal": "53500", + "codeCommune": "53211", + "libelleAcheminement": "ST DENIS DE GASTINES", + "nomCommune": "ST DENIS DE GASTINES" }, { - "codePostal": "38110", - "codeCommune": "38377", - "libelleAcheminement": "ST CLAIR DE LA TOUR", - "nomCommune": "ST CLAIR DE LA TOUR" + "codePostal": "55170", + "codeCommune": "55477", + "libelleAcheminement": "SAVONNIERES EN PERTHOIS", + "nomCommune": "SAVONNIERES EN PERTHOIS" }, { - "codePostal": "31400", - "codeCommune": "31555", - "libelleAcheminement": "TOULOUSE", - "nomCommune": "TOULOUSE" + "codePostal": "64260", + "codeCommune": "64069", + "libelleAcheminement": "ASTE BEON", + "nomCommune": "ASTE BEON" }, { - "codePostal": "01680", - "codeCommune": "01190", - "libelleAcheminement": "INNIMOND", - "nomCommune": "INNIMOND" + "codePostal": "10210", + "codeCommune": "10185", + "libelleAcheminement": "LAGESSE", + "nomCommune": "LAGESSE" }, { - "codePostal": "60690", - "codeCommune": "60304", - "libelleAcheminement": "HAUTE EPINE", - "nomCommune": "HAUTE EPINE" + "codePostal": "63500", + "codeCommune": "63321", + "libelleAcheminement": "ST BABEL", + "nomCommune": "ST BABEL" }, { - "codePostal": "38110", - "codeCommune": "38381", - "libelleAcheminement": "ST DIDIER DE LA TOUR", - "nomCommune": "ST DIDIER DE LA TOUR" + "codePostal": "53220", + "codeCommune": "53213", + "libelleAcheminement": "ST ELLIER DU MAINE", + "nomCommune": "ST ELLIER DU MAINE" }, { - "codePostal": "31460", - "codeCommune": "31558", - "libelleAcheminement": "TOUTENS", - "nomCommune": "TOUTENS" + "codePostal": "55230", + "codeCommune": "55481", + "libelleAcheminement": "SENON", + "nomCommune": "SENON" }, { - "codePostal": "01300", - "codeCommune": "01193", - "libelleAcheminement": "IZIEU", - "nomCommune": "IZIEU" + "codePostal": "64390", + "codeCommune": "64071", + "libelleAcheminement": "ATHOS ASPIS", + "nomCommune": "ATHOS ASPIS" }, { - "codePostal": "60112", - "codeCommune": "60310", - "libelleAcheminement": "HERCHIES", - "nomCommune": "HERCHIES" + "codePostal": "10700", + "codeCommune": "10195", + "libelleAcheminement": "LHUITRE", + "nomCommune": "LHUITRE" }, { - "codePostal": "38120", - "codeCommune": "38382", - "libelleAcheminement": "ST EGREVE", - "nomCommune": "ST EGREVE" + "codePostal": "63630", + "codeCommune": "63324", + "libelleAcheminement": "ST BONNET LE CHASTEL", + "nomCommune": "ST BONNET LE CHASTEL" }, { - "codePostal": "31340", - "codeCommune": "31563", - "libelleAcheminement": "VACQUIERS", - "nomCommune": "VACQUIERS" + "codePostal": "53600", + "codeCommune": "53218", + "libelleAcheminement": "STE GEMMES LE ROBERT", + "nomCommune": "STE GEMMES LE ROBERT" }, { - "codePostal": "01340", - "codeCommune": "01196", - "libelleAcheminement": "JAYAT", - "nomCommune": "JAYAT" + "codePostal": "55220", + "codeCommune": "55482", + "libelleAcheminement": "SENONCOURT LES MAUJOUY", + "nomCommune": "SENONCOURT LES MAUJOUY" }, { - "codePostal": "60880", - "codeCommune": "60325", - "libelleAcheminement": "JAUX", - "nomCommune": "JAUX" + "codePostal": "64290", + "codeCommune": "64072", + "libelleAcheminement": "AUBERTIN", + "nomCommune": "AUBERTIN" }, { - "codePostal": "38590", - "codeCommune": "38384", - "libelleAcheminement": "ST ETIENNE DE ST GEOIRS", - "nomCommune": "ST ETIENNE DE ST GEOIRS" + "codePostal": "10130", + "codeCommune": "10196", + "libelleAcheminement": "LIGNIERES", + "nomCommune": "LIGNIERES" }, { - "codePostal": "31800", - "codeCommune": "31565", - "libelleAcheminement": "VALENTINE", - "nomCommune": "VALENTINE" + "codePostal": "63210", + "codeCommune": "63326", + "libelleAcheminement": "ST BONNET PRES ORCIVAL", + "nomCommune": "ST BONNET PRES ORCIVAL" }, { - "codePostal": "01800", - "codeCommune": "01198", - "libelleAcheminement": "JOYEUX", - "nomCommune": "JOYEUX" + "codePostal": "53480", + "codeCommune": "53220", + "libelleAcheminement": "ST GEORGES LE FLECHARD", + "nomCommune": "ST GEORGES LE FLECHARD" }, { - "codePostal": "60680", - "codeCommune": "60326", - "libelleAcheminement": "JONQUIERES", - "nomCommune": "JONQUIERES" + "codePostal": "55140", + "codeCommune": "55485", + "libelleAcheminement": "SEPVIGNY", + "nomCommune": "SEPVIGNY" }, { - "codePostal": "38450", - "codeCommune": "38388", - "libelleAcheminement": "ST GEORGES DE COMMIERS", - "nomCommune": "ST GEORGES DE COMMIERS" + "codePostal": "64190", + "codeCommune": "64075", + "libelleAcheminement": "AUDAUX", + "nomCommune": "AUDAUX" }, { - "codePostal": "31540", - "codeCommune": "31570", - "libelleAcheminement": "VAUX", - "nomCommune": "VAUX" + "codePostal": "10200", + "codeCommune": "10197", + "libelleAcheminement": "LIGNOL LE CHATEAU", + "nomCommune": "LIGNOL LE CHATEAU" }, { - "codePostal": "01450", - "codeCommune": "01200", - "libelleAcheminement": "LABALME", - "nomCommune": "LABALME" + "codePostal": "63320", + "codeCommune": "63335", + "libelleAcheminement": "ST DIERY", + "nomCommune": "ST DIERY" }, { - "codePostal": "60112", - "codeCommune": "60328", - "libelleAcheminement": "JUVIGNIES", - "nomCommune": "JUVIGNIES" + "codePostal": "53240", + "codeCommune": "53229", + "libelleAcheminement": "ST JEAN SUR MAYENNE", + "nomCommune": "ST JEAN SUR MAYENNE" }, { - "codePostal": "38260", - "codeCommune": "38393", - "libelleAcheminement": "ST HILAIRE DE LA COTE", - "nomCommune": "ST HILAIRE DE LA COTE" + "codePostal": "55170", + "codeCommune": "55494", + "libelleAcheminement": "SOMMELONNE", + "nomCommune": "SOMMELONNE" }, { - "codePostal": "31320", - "codeCommune": "31578", - "libelleAcheminement": "VIGOULET AUZIL", - "nomCommune": "VIGOULET AUZIL" + "codePostal": "64230", + "codeCommune": "64080", + "libelleAcheminement": "AUSSEVIELLE", + "nomCommune": "AUSSEVIELLE" }, { - "codePostal": "01290", - "codeCommune": "01203", - "libelleAcheminement": "LAIZ", - "nomCommune": "LAIZ" + "codePostal": "10110", + "codeCommune": "10199", + "libelleAcheminement": "LOCHES SUR OURCE", + "nomCommune": "LOCHES SUR OURCE" }, { - "codePostal": "60730", - "codeCommune": "60334", - "libelleAcheminement": "LACHAPELLE ST PIERRE", - "nomCommune": "LACHAPELLE ST PIERRE" + "codePostal": "63320", + "codeCommune": "63335", + "libelleAcheminement": "ST DIERY", + "nomCommune": "ST DIERY" }, { - "codePostal": "38660", - "codeCommune": "38395", - "libelleAcheminement": "PLATEAU DES PETITES ROCHES", - "nomCommune": "PLATEAU DES PETITES ROCHES" + "codePostal": "53110", + "codeCommune": "53230", + "libelleAcheminement": "ST JULIEN DU TERROUX", + "nomCommune": "ST JULIEN DU TERROUX" }, { - "codePostal": "31270", - "codeCommune": "31588", - "libelleAcheminement": "VILLENEUVE TOLOSANE", - "nomCommune": "VILLENEUVE TOLOSANE" + "codePostal": "55230", + "codeCommune": "55495", + "libelleAcheminement": "SORBEY", + "nomCommune": "SORBEY" }, { - "codePostal": "01410", - "codeCommune": "01210", - "libelleAcheminement": "LELEX", - "nomCommune": "LELEX" + "codePostal": "64270", + "codeCommune": "64082", + "libelleAcheminement": "AUTERRIVE", + "nomCommune": "AUTERRIVE" }, { - "codePostal": "60190", - "codeCommune": "60337", - "libelleAcheminement": "LACHELLE", - "nomCommune": "LACHELLE" + "codePostal": "10400", + "codeCommune": "10208", + "libelleAcheminement": "LA LOUPTIERE THENARD", + "nomCommune": "LA LOUPTIERE THENARD" }, { - "codePostal": "38660", - "codeCommune": "38395", - "libelleAcheminement": "PLATEAU DES PETITES ROCHES", - "nomCommune": "PLATEAU DES PETITES ROCHES" + "codePostal": "63700", + "codeCommune": "63338", + "libelleAcheminement": "ST ELOY LES MINES", + "nomCommune": "ST ELOY LES MINES" }, { - "codePostal": "31440", - "codeCommune": "31590", - "libelleAcheminement": "BINOS", - "nomCommune": "BINOS" + "codePostal": "53350", + "codeCommune": "53242", + "libelleAcheminement": "ST MICHEL DE LA ROE", + "nomCommune": "ST MICHEL DE LA ROE" }, { - "codePostal": "01420", - "codeCommune": "01215", - "libelleAcheminement": "SURJOUX LHOPITAL", - "nomCommune": "SURJOUX LHOPITAL" + "codePostal": "55220", + "codeCommune": "55498", + "libelleAcheminement": "SOUILLY", + "nomCommune": "SOUILLY" }, { - "codePostal": "60610", - "codeCommune": "60338", - "libelleAcheminement": "LACROIX ST OUEN", - "nomCommune": "LACROIX ST OUEN" + "codePostal": "64510", + "codeCommune": "64091", + "libelleAcheminement": "BALIROS", + "nomCommune": "BALIROS" }, { - "codePostal": "38480", - "codeCommune": "38398", - "libelleAcheminement": "ST JEAN D AVELANNE", - "nomCommune": "ST JEAN D AVELANNE" + "codePostal": "10300", + "codeCommune": "10211", + "libelleAcheminement": "MACEY", + "nomCommune": "MACEY" }, { - "codePostal": "31260", - "codeCommune": "31591", - "libelleAcheminement": "ESCOULIS", - "nomCommune": "ESCOULIS" + "codePostal": "63580", + "codeCommune": "63340", + "libelleAcheminement": "ST ETIENNE SUR USSON", + "nomCommune": "ST ETIENNE SUR USSON" }, { - "codePostal": "01420", - "codeCommune": "01215", - "libelleAcheminement": "SURJOUX LHOPITAL", - "nomCommune": "SURJOUX LHOPITAL" + "codePostal": "53270", + "codeCommune": "53248", + "libelleAcheminement": "ST PIERRE SUR ERVE", + "nomCommune": "ST PIERRE SUR ERVE" }, { - "codePostal": "60310", - "codeCommune": "60340", - "libelleAcheminement": "LAGNY", - "nomCommune": "LAGNY" + "codePostal": "55210", + "codeCommune": "55507", + "libelleAcheminement": "THILLOT", + "nomCommune": "THILLOT" }, { - "codePostal": "38430", - "codeCommune": "38400", - "libelleAcheminement": "ST JEAN DE MOIRANS", - "nomCommune": "ST JEAN DE MOIRANS" + "codePostal": "64160", + "codeCommune": "64095", + "libelleAcheminement": "BARINQUE", + "nomCommune": "BARINQUE" }, { - "codePostal": "31230", - "codeCommune": "31593", - "libelleAcheminement": "CAZAC", - "nomCommune": "CAZAC" + "codePostal": "10140", + "codeCommune": "10215", + "libelleAcheminement": "MAGNY FOUCHARD", + "nomCommune": "MAGNY FOUCHARD" }, { - "codePostal": "01300", - "codeCommune": "01227", - "libelleAcheminement": "MAGNIEU", - "nomCommune": "MAGNIEU" + "codePostal": "63520", + "codeCommune": "63343", + "libelleAcheminement": "ST FLOUR L ETANG", + "nomCommune": "ST FLOUR L ETANG" }, { - "codePostal": "60330", - "codeCommune": "60341", - "libelleAcheminement": "LAGNY LE SEC", - "nomCommune": "LAGNY LE SEC" + "codePostal": "53800", + "codeCommune": "53253", + "libelleAcheminement": "ST SATURNIN DU LIMET", + "nomCommune": "ST SATURNIN DU LIMET" }, { - "codePostal": "38420", - "codeCommune": "38404", - "libelleAcheminement": "ST JEAN LE VIEUX", - "nomCommune": "ST JEAN LE VIEUX" + "codePostal": "55130", + "codeCommune": "55516", + "libelleAcheminement": "TREVERAY", + "nomCommune": "TREVERAY" }, { - "codePostal": "32110", - "codeCommune": "32005", - "libelleAcheminement": "ARBLADE LE HAUT", - "nomCommune": "ARBLADE LE HAUT" + "codePostal": "64200", + "codeCommune": "64100", + "libelleAcheminement": "BASSUSSARRY", + "nomCommune": "BASSUSSARRY" }, { - "codePostal": "01851", - "codeCommune": "01232", - "libelleAcheminement": "MARBOZ", - "nomCommune": "MARBOZ" + "codePostal": "10290", + "codeCommune": "10223", + "libelleAcheminement": "MARCILLY LE HAYER", + "nomCommune": "MARCILLY LE HAYER" }, { - "codePostal": "60290", - "codeCommune": "60342", - "libelleAcheminement": "LAIGNEVILLE", - "nomCommune": "LAIGNEVILLE" + "codePostal": "63440", + "codeCommune": "63344", + "libelleAcheminement": "ST GAL SUR SIOULE", + "nomCommune": "ST GAL SUR SIOULE" }, { - "codePostal": "38410", - "codeCommune": "38422", - "libelleAcheminement": "ST MARTIN D URIAGE", - "nomCommune": "ST MARTIN D URIAGE" + "codePostal": "53270", + "codeCommune": "53255", + "libelleAcheminement": "STE SUZANNE ET CHAMMES", + "nomCommune": "STE SUZANNE ET CHAMMES" }, { - "codePostal": "32270", - "codeCommune": "32012", - "libelleAcheminement": "AUBIET", - "nomCommune": "AUBIET" + "codePostal": "55200", + "codeCommune": "55526", + "libelleAcheminement": "VADONVILLE", + "nomCommune": "VADONVILLE" }, { - "codePostal": "01300", - "codeCommune": "01239", - "libelleAcheminement": "MASSIGNIEU DE RIVES", - "nomCommune": "MASSIGNIEU DE RIVES" + "codePostal": "64270", + "codeCommune": "64113", + "libelleAcheminement": "BERGOUEY VIELLENAVE", + "nomCommune": "BERGOUEY VIELLENAVE" }, { - "codePostal": "60590", - "codeCommune": "60343", - "libelleAcheminement": "LALANDE EN SON", - "nomCommune": "LALANDE EN SON" + "codePostal": "10350", + "codeCommune": "10224", + "libelleAcheminement": "MARIGNY LE CHATEL", + "nomCommune": "MARIGNY LE CHATEL" }, { - "codePostal": "38530", - "codeCommune": "38426", - "libelleAcheminement": "ST MAXIMIN", - "nomCommune": "ST MAXIMIN" + "codePostal": "63122", + "codeCommune": "63345", + "libelleAcheminement": "ST GENES CHAMPANELLE", + "nomCommune": "ST GENES CHAMPANELLE" }, { - "codePostal": "32600", - "codeCommune": "32016", - "libelleAcheminement": "AURADE", - "nomCommune": "AURADE" + "codePostal": "53360", + "codeCommune": "53260", + "libelleAcheminement": "SIMPLE", + "nomCommune": "SIMPLE" }, { - "codePostal": "01410", - "codeCommune": "01247", - "libelleAcheminement": "MIJOUX", - "nomCommune": "MIJOUX" + "codePostal": "55300", + "codeCommune": "55530", + "libelleAcheminement": "VALBOIS", + "nomCommune": "VALBOIS" }, { - "codePostal": "60490", - "codeCommune": "60351", - "libelleAcheminement": "LATAULE", - "nomCommune": "LATAULE" + "codePostal": "64260", + "codeCommune": "64116", + "libelleAcheminement": "BESCAT", + "nomCommune": "BESCAT" }, { - "codePostal": "38490", - "codeCommune": "38434", - "libelleAcheminement": "ST ONDRAS", - "nomCommune": "ST ONDRAS" + "codePostal": "10130", + "codeCommune": "10227", + "libelleAcheminement": "MAROLLES SOUS LIGNIERES", + "nomCommune": "MAROLLES SOUS LIGNIERES" }, { - "codePostal": "32400", - "codeCommune": "32017", - "libelleAcheminement": "AURENSAN", - "nomCommune": "AURENSAN" + "codePostal": "63122", + "codeCommune": "63345", + "libelleAcheminement": "ST GENES CHAMPANELLE", + "nomCommune": "ST GENES CHAMPANELLE" }, { - "codePostal": "01310", - "codeCommune": "01259", - "libelleAcheminement": "MONTCET", - "nomCommune": "MONTCET" + "codePostal": "53110", + "codeCommune": "53263", + "libelleAcheminement": "THUBOEUF", + "nomCommune": "THUBOEUF" }, { - "codePostal": "60360", - "codeCommune": "60365", - "libelleAcheminement": "LIHUS", - "nomCommune": "LIHUS" + "codePostal": "55130", + "codeCommune": "55534", + "libelleAcheminement": "VAUDEVILLE LE HAUT", + "nomCommune": "VAUDEVILLE LE HAUT" }, { - "codePostal": "38830", - "codeCommune": "38439", - "libelleAcheminement": "CRETS EN BELLEDONNE", - "nomCommune": "CRETS EN BELLEDONNE" + "codePostal": "64260", + "codeCommune": "64127", + "libelleAcheminement": "BIELLE", + "nomCommune": "BIELLE" }, { - "codePostal": "32550", - "codeCommune": "32019", - "libelleAcheminement": "AUTERIVE", - "nomCommune": "AUTERIVE" + "codePostal": "10170", + "codeCommune": "10234", + "libelleAcheminement": "MESGRIGNY", + "nomCommune": "MESGRIGNY" }, { - "codePostal": "01120", - "codeCommune": "01262", - "libelleAcheminement": "MONTLUEL", - "nomCommune": "MONTLUEL" + "codePostal": "63780", + "codeCommune": "63349", + "libelleAcheminement": "ST GEORGES DE MONS", + "nomCommune": "ST GEORGES DE MONS" }, { - "codePostal": "60490", - "codeCommune": "60379", - "libelleAcheminement": "MAREUIL LA MOTTE", - "nomCommune": "MAREUIL LA MOTTE" + "codePostal": "53270", + "codeCommune": "53265", + "libelleAcheminement": "TORCE VIVIERS EN CHARNIE", + "nomCommune": "TORCE VIVIERS EN CHARNIE" }, { - "codePostal": "38870", - "codeCommune": "38440", - "libelleAcheminement": "ST PIERRE DE BRESSIEUX", - "nomCommune": "ST PIERRE DE BRESSIEUX" + "codePostal": "55230", + "codeCommune": "55535", + "libelleAcheminement": "VAUDONCOURT", + "nomCommune": "VAUDONCOURT" }, { - "codePostal": "32380", - "codeCommune": "32023", - "libelleAcheminement": "AVEZAN", - "nomCommune": "AVEZAN" + "codePostal": "64290", + "codeCommune": "64139", + "libelleAcheminement": "BOSDARROS", + "nomCommune": "BOSDARROS" }, { - "codePostal": "01120", - "codeCommune": "01262", - "libelleAcheminement": "MONTLUEL", - "nomCommune": "MONTLUEL" + "codePostal": "10220", + "codeCommune": "10239", + "libelleAcheminement": "MESNIL SELLIERES", + "nomCommune": "MESNIL SELLIERES" }, { - "codePostal": "60890", - "codeCommune": "60380", - "libelleAcheminement": "MAREUIL SUR OURCQ", - "nomCommune": "MAREUIL SUR OURCQ" + "codePostal": "63390", + "codeCommune": "63354", + "libelleAcheminement": "ST GERVAIS D AUVERGNE", + "nomCommune": "ST GERVAIS D AUVERGNE" }, { - "codePostal": "38160", - "codeCommune": "38453", - "libelleAcheminement": "ST ROMANS", - "nomCommune": "ST ROMANS" + "codePostal": "53480", + "codeCommune": "53267", + "libelleAcheminement": "VAIGES", + "nomCommune": "VAIGES" }, { - "codePostal": "32410", - "codeCommune": "32024", - "libelleAcheminement": "AYGUETINTE", - "nomCommune": "AYGUETINTE" + "codePostal": "55300", + "codeCommune": "55540", + "libelleAcheminement": "VAUX LES PALAMEIX", + "nomCommune": "VAUX LES PALAMEIX" }, { - "codePostal": "01460", - "codeCommune": "01265", - "libelleAcheminement": "MONTREAL LA CLUSE", - "nomCommune": "MONTREAL LA CLUSE" + "codePostal": "64800", + "codeCommune": "64145", + "libelleAcheminement": "BOURDETTES", + "nomCommune": "BOURDETTES" }, { - "codePostal": "60280", - "codeCommune": "60382", - "libelleAcheminement": "MARGNY LES COMPIEGNE", - "nomCommune": "MARGNY LES COMPIEGNE" + "codePostal": "10130", + "codeCommune": "10247", + "libelleAcheminement": "MONTFEY", + "nomCommune": "MONTFEY" }, { - "codePostal": "38510", - "codeCommune": "38458", - "libelleAcheminement": "ST SORLIN DE MORESTEL", - "nomCommune": "ST SORLIN DE MORESTEL" + "codePostal": "63520", + "codeCommune": "63365", + "libelleAcheminement": "ST JEAN DES OLLIERES", + "nomCommune": "ST JEAN DES OLLIERES" }, { - "codePostal": "32720", - "codeCommune": "32027", - "libelleAcheminement": "BARCELONNE DU GERS", - "nomCommune": "BARCELONNE DU GERS" + "codePostal": "53500", + "codeCommune": "53269", + "libelleAcheminement": "VAUTORTE", + "nomCommune": "VAUTORTE" }, { - "codePostal": "01460", - "codeCommune": "01267", - "libelleAcheminement": "NURIEUX VOLOGNAT", - "nomCommune": "NURIEUX VOLOGNAT" + "codePostal": "55600", + "codeCommune": "55544", + "libelleAcheminement": "VELOSNES", + "nomCommune": "VELOSNES" }, { - "codePostal": "60490", - "codeCommune": "60383", - "libelleAcheminement": "MARGNY SUR MATZ", - "nomCommune": "MARGNY SUR MATZ" + "codePostal": "64120", + "codeCommune": "64150", + "libelleAcheminement": "BUNUS", + "nomCommune": "BUNUS" }, { - "codePostal": "38110", - "codeCommune": "38464", - "libelleAcheminement": "ST VICTOR DE CESSIEU", - "nomCommune": "ST VICTOR DE CESSIEU" + "codePostal": "10300", + "codeCommune": "10248", + "libelleAcheminement": "MONTGUEUX", + "nomCommune": "MONTGUEUX" }, { - "codePostal": "32170", - "codeCommune": "32028", - "libelleAcheminement": "BARCUGNAN", - "nomCommune": "BARCUGNAN" + "codePostal": "63570", + "codeCommune": "63367", + "libelleAcheminement": "ST JEAN ST GERVAIS", + "nomCommune": "ST JEAN ST GERVAIS" }, { - "codePostal": "01120", - "codeCommune": "01276", - "libelleAcheminement": "NIEVROZ", - "nomCommune": "NIEVROZ" + "codePostal": "53700", + "codeCommune": "53271", + "libelleAcheminement": "VILLAINES LA JUHEL", + "nomCommune": "VILLAINES LA JUHEL" }, { - "codePostal": "60480", - "codeCommune": "60390", - "libelleAcheminement": "MAULERS", - "nomCommune": "MAULERS" + "codePostal": "55100", + "codeCommune": "55545", + "libelleAcheminement": "VERDUN", + "nomCommune": "VERDUN" }, { - "codePostal": "38260", - "codeCommune": "38473", - "libelleAcheminement": "SARDIEU", - "nomCommune": "SARDIEU" + "codePostal": "64160", + "codeCommune": "64152", + "libelleAcheminement": "BUROS", + "nomCommune": "BUROS" }, { - "codePostal": "32300", - "codeCommune": "32030", - "libelleAcheminement": "BARS", - "nomCommune": "BARS" + "codePostal": "10330", + "codeCommune": "10253", + "libelleAcheminement": "MONTMORENCY BEAUFORT", + "nomCommune": "MONTMORENCY BEAUFORT" }, { - "codePostal": "01230", - "codeCommune": "01279", - "libelleAcheminement": "ONCIEU", - "nomCommune": "ONCIEU" + "codePostal": "63600", + "codeCommune": "63371", + "libelleAcheminement": "ST JUST", + "nomCommune": "ST JUST" }, { - "codePostal": "60660", - "codeCommune": "60391", - "libelleAcheminement": "MAYSEL", - "nomCommune": "MAYSEL" + "codePostal": "54112", + "codeCommune": "54010", + "libelleAcheminement": "ALLAMPS", + "nomCommune": "ALLAMPS" }, { - "codePostal": "38290", - "codeCommune": "38475", - "libelleAcheminement": "SATOLAS ET BONCE", - "nomCommune": "SATOLAS ET BONCE" + "codePostal": "55210", + "codeCommune": "55551", + "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", + "nomCommune": "VIGNEULLES LES HATTONCHATEL" }, { - "codePostal": "32600", - "codeCommune": "32038", - "libelleAcheminement": "BEAUPUY", - "nomCommune": "BEAUPUY" + "codePostal": "64330", + "codeCommune": "64159", + "libelleAcheminement": "CADILLON", + "nomCommune": "CADILLON" }, { - "codePostal": "01540", - "codeCommune": "01291", - "libelleAcheminement": "PERREX", - "nomCommune": "PERREX" + "codePostal": "10270", + "codeCommune": "10255", + "libelleAcheminement": "MONTREUIL SUR BARSE", + "nomCommune": "MONTREUIL SUR BARSE" }, { - "codePostal": "60940", - "codeCommune": "60406", - "libelleAcheminement": "MONCEAUX", - "nomCommune": "MONCEAUX" + "codePostal": "63350", + "codeCommune": "63372", + "libelleAcheminement": "ST LAURE", + "nomCommune": "ST LAURE" }, { - "codePostal": "38220", - "codeCommune": "38478", - "libelleAcheminement": "SECHILIENNE", - "nomCommune": "SECHILIENNE" + "codePostal": "54770", + "codeCommune": "54012", + "libelleAcheminement": "AMANCE", + "nomCommune": "AMANCE" }, { - "codePostal": "32730", - "codeCommune": "32050", - "libelleAcheminement": "BETPLAN", - "nomCommune": "BETPLAN" + "codePostal": "55210", + "codeCommune": "55551", + "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", + "nomCommune": "VIGNEULLES LES HATTONCHATEL" }, { - "codePostal": "01300", - "codeCommune": "01294", - "libelleAcheminement": "PEYRIEU", - "nomCommune": "PEYRIEU" + "codePostal": "64130", + "codeCommune": "64188", + "libelleAcheminement": "CHERAUTE", + "nomCommune": "CHERAUTE" }, { - "codePostal": "60240", - "codeCommune": "60420", - "libelleAcheminement": "MONTJAVOULT", - "nomCommune": "MONTJAVOULT" + "codePostal": "10240", + "codeCommune": "10257", + "libelleAcheminement": "MOREMBERT", + "nomCommune": "MOREMBERT" }, { - "codePostal": "38510", - "codeCommune": "38483", - "libelleAcheminement": "SERMERIEU", - "nomCommune": "SERMERIEU" + "codePostal": "63270", + "codeCommune": "63378", + "libelleAcheminement": "ST MAURICE", + "nomCommune": "ST MAURICE" }, { - "codePostal": "32270", - "codeCommune": "32056", - "libelleAcheminement": "BLANQUEFORT", - "nomCommune": "BLANQUEFORT" + "codePostal": "54450", + "codeCommune": "54014", + "libelleAcheminement": "ANCERVILLER", + "nomCommune": "ANCERVILLER" }, { - "codePostal": "01140", - "codeCommune": "01295", - "libelleAcheminement": "PEYZIEUX SUR SAONE", - "nomCommune": "PEYZIEUX SUR SAONE" + "codePostal": "55210", + "codeCommune": "55551", + "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", + "nomCommune": "VIGNEULLES LES HATTONCHATEL" }, { - "codePostal": "60400", - "codeCommune": "60431", - "libelleAcheminement": "MORLINCOURT", - "nomCommune": "MORLINCOURT" + "codePostal": "64500", + "codeCommune": "64189", + "libelleAcheminement": "CIBOURE", + "nomCommune": "CIBOURE" }, { - "codePostal": "38460", - "codeCommune": "38488", - "libelleAcheminement": "SICCIEU ST JULIEN ET CARISIEU", - "nomCommune": "SICCIEU ST JULIEN ET CARISIEU" + "codePostal": "10700", + "codeCommune": "10269", + "libelleAcheminement": "NOZAY", + "nomCommune": "NOZAY" }, { - "codePostal": "32100", - "codeCommune": "32057", - "libelleAcheminement": "BLAZIERT", - "nomCommune": "BLAZIERT" + "codePostal": "63440", + "codeCommune": "63382", + "libelleAcheminement": "ST PARDOUX", + "nomCommune": "ST PARDOUX" }, { - "codePostal": "01310", - "codeCommune": "01301", - "libelleAcheminement": "POLLIAT", - "nomCommune": "POLLIAT" + "codePostal": "54470", + "codeCommune": "54019", + "libelleAcheminement": "ANSAUVILLE", + "nomCommune": "ANSAUVILLE" }, { - "codePostal": "60120", - "codeCommune": "60436", - "libelleAcheminement": "MORY MONTCRUX", - "nomCommune": "MORY MONTCRUX" + "codePostal": "55600", + "codeCommune": "55552", + "libelleAcheminement": "VIGNEUL SOUS MONTMEDY", + "nomCommune": "VIGNEUL SOUS MONTMEDY" }, { - "codePostal": "38590", - "codeCommune": "38490", - "libelleAcheminement": "SILLANS", - "nomCommune": "SILLANS" + "codePostal": "64350", + "codeCommune": "64193", + "libelleAcheminement": "CORBERE ABERES", + "nomCommune": "CORBERE ABERES" }, { - "codePostal": "32800", - "codeCommune": "32064", - "libelleAcheminement": "BRETAGNE D ARMAGNAC", - "nomCommune": "BRETAGNE D ARMAGNAC" + "codePostal": "10100", + "codeCommune": "10280", + "libelleAcheminement": "PARS LES ROMILLY", + "nomCommune": "PARS LES ROMILLY" }, { - "codePostal": "01350", - "codeCommune": "01302", - "libelleAcheminement": "POLLIEU", - "nomCommune": "POLLIEU" + "codePostal": "63640", + "codeCommune": "63388", + "libelleAcheminement": "ST PRIEST DES CHAMPS", + "nomCommune": "ST PRIEST DES CHAMPS" }, { - "codePostal": "60350", - "codeCommune": "60438", - "libelleAcheminement": "MOULIN SOUS TOUVENT", - "nomCommune": "MOULIN SOUS TOUVENT" + "codePostal": "54110", + "codeCommune": "54020", + "libelleAcheminement": "ANTHELUPT", + "nomCommune": "ANTHELUPT" }, { - "codePostal": "38470", - "codeCommune": "38500", - "libelleAcheminement": "TECHE", - "nomCommune": "TECHE" + "codePostal": "55110", + "codeCommune": "55561", + "libelleAcheminement": "VILLERS DEVANT DUN", + "nomCommune": "VILLERS DEVANT DUN" }, { - "codePostal": "32350", - "codeCommune": "32065", - "libelleAcheminement": "LE BROUILH MONBERT", - "nomCommune": "LE BROUILH MONBERT" + "codePostal": "64160", + "codeCommune": "64194", + "libelleAcheminement": "COSLEDAA LUBE BOAST", + "nomCommune": "COSLEDAA LUBE BOAST" }, { - "codePostal": "01250", - "codeCommune": "01309", - "libelleAcheminement": "POUILLAT", - "nomCommune": "POUILLAT" + "codePostal": "10500", + "codeCommune": "10283", + "libelleAcheminement": "PEL ET DER", + "nomCommune": "PEL ET DER" }, { - "codePostal": "60250", - "codeCommune": "60439", - "libelleAcheminement": "MOUY", - "nomCommune": "MOUY" + "codePostal": "63500", + "codeCommune": "63392", + "libelleAcheminement": "ST REMY DE CHARGNAT", + "nomCommune": "ST REMY DE CHARGNAT" }, { - "codePostal": "38570", - "codeCommune": "38501", - "libelleAcheminement": "TENCIN", - "nomCommune": "TENCIN" + "codePostal": "54510", + "codeCommune": "54025", + "libelleAcheminement": "ART SUR MEURTHE", + "nomCommune": "ART SUR MEURTHE" }, { - "codePostal": "32350", - "codeCommune": "32065", - "libelleAcheminement": "LE BROUILH MONBERT", - "nomCommune": "LE BROUILH MONBERT" + "codePostal": "55110", + "codeCommune": "55571", + "libelleAcheminement": "VILOSNES HARAUMONT", + "nomCommune": "VILOSNES HARAUMONT" }, { - "codePostal": "01990", - "codeCommune": "01319", - "libelleAcheminement": "RELEVANT", - "nomCommune": "RELEVANT" + "codePostal": "64370", + "codeCommune": "64200", + "libelleAcheminement": "DOAZON", + "nomCommune": "DOAZON" }, { - "codePostal": "60430", - "codeCommune": "60462", - "libelleAcheminement": "NOAILLES", - "nomCommune": "NOAILLES" + "codePostal": "10380", + "codeCommune": "10289", + "libelleAcheminement": "PLANCY L ABBAYE", + "nomCommune": "PLANCY L ABBAYE" }, { - "codePostal": "38230", - "codeCommune": "38507", - "libelleAcheminement": "TIGNIEU JAMEYZIEU", - "nomCommune": "TIGNIEU JAMEYZIEU" + "codePostal": "63450", + "codeCommune": "63396", + "libelleAcheminement": "ST SATURNIN", + "nomCommune": "ST SATURNIN" }, { - "codePostal": "32450", - "codeCommune": "32076", - "libelleAcheminement": "CASTELNAU BARBARENS", - "nomCommune": "CASTELNAU BARBARENS" + "codePostal": "54700", + "codeCommune": "54027", + "libelleAcheminement": "ATTON", + "nomCommune": "ATTON" }, { - "codePostal": "01600", - "codeCommune": "01322", - "libelleAcheminement": "REYRIEUX", - "nomCommune": "REYRIEUX" + "codePostal": "55130", + "codeCommune": "55575", + "libelleAcheminement": "VOUTHON HAUT", + "nomCommune": "VOUTHON HAUT" }, { - "codePostal": "60480", - "codeCommune": "60470", - "libelleAcheminement": "NOYERS ST MARTIN", - "nomCommune": "NOYERS ST MARTIN" + "codePostal": "64870", + "codeCommune": "64207", + "libelleAcheminement": "ESCOU", + "nomCommune": "ESCOU" }, { - "codePostal": "38410", - "codeCommune": "38529", - "libelleAcheminement": "VAULNAVEYS LE HAUT", - "nomCommune": "VAULNAVEYS LE HAUT" + "codePostal": "10160", + "codeCommune": "10290", + "libelleAcheminement": "PLANTY", + "nomCommune": "PLANTY" }, { - "codePostal": "32810", - "codeCommune": "32091", - "libelleAcheminement": "CASTIN", - "nomCommune": "CASTIN" + "codePostal": "63220", + "codeCommune": "63398", + "libelleAcheminement": "ST SAUVEUR LA SAGNE", + "nomCommune": "ST SAUVEUR LA SAGNE" }, { - "codePostal": "01190", - "codeCommune": "01323", - "libelleAcheminement": "REYSSOUZE", - "nomCommune": "REYSSOUZE" + "codePostal": "54380", + "codeCommune": "54031", + "libelleAcheminement": "AUTREVILLE SUR MOSELLE", + "nomCommune": "AUTREVILLE SUR MOSELLE" }, { - "codePostal": "60440", - "codeCommune": "60473", - "libelleAcheminement": "OGNES", - "nomCommune": "OGNES" + "codePostal": "55160", + "codeCommune": "55579", + "libelleAcheminement": "WATRONVILLE", + "nomCommune": "WATRONVILLE" }, { - "codePostal": "38610", - "codeCommune": "38533", - "libelleAcheminement": "VENON", - "nomCommune": "VENON" + "codePostal": "64160", + "codeCommune": "64208", + "libelleAcheminement": "ESCOUBES", + "nomCommune": "ESCOUBES" }, { - "codePostal": "32150", - "codeCommune": "32096", - "libelleAcheminement": "CAZAUBON", - "nomCommune": "CAZAUBON" + "codePostal": "10400", + "codeCommune": "10291", + "libelleAcheminement": "PLESSIS BARBUISE", + "nomCommune": "PLESSIS BARBUISE" }, { - "codePostal": "01510", - "codeCommune": "01329", - "libelleAcheminement": "ROSSILLON", - "nomCommune": "ROSSILLON" + "codePostal": "63500", + "codeCommune": "63404", + "libelleAcheminement": "ST YVOINE", + "nomCommune": "ST YVOINE" }, { - "codePostal": "60800", - "codeCommune": "60479", - "libelleAcheminement": "ORMOY VILLERS", - "nomCommune": "ORMOY VILLERS" + "codePostal": "54160", + "codeCommune": "54032", + "libelleAcheminement": "AUTREY", + "nomCommune": "AUTREY" }, { - "codePostal": "38420", - "codeCommune": "38538", - "libelleAcheminement": "LE VERSOUD", - "nomCommune": "LE VERSOUD" + "codePostal": "55500", + "codeCommune": "55581", + "libelleAcheminement": "WILLERONCOURT", + "nomCommune": "WILLERONCOURT" }, { - "codePostal": "32300", - "codeCommune": "32104", - "libelleAcheminement": "CLERMONT POUYGUILLES", - "nomCommune": "CLERMONT POUYGUILLES" + "codePostal": "64870", + "codeCommune": "64209", + "libelleAcheminement": "ESCOUT", + "nomCommune": "ESCOUT" }, { - "codePostal": "01260", - "codeCommune": "01330", - "libelleAcheminement": "RUFFIEU", - "nomCommune": "RUFFIEU" + "codePostal": "10700", + "codeCommune": "10293", + "libelleAcheminement": "POIVRES", + "nomCommune": "POIVRES" }, { - "codePostal": "60129", - "codeCommune": "60481", - "libelleAcheminement": "ORROUY", - "nomCommune": "ORROUY" + "codePostal": "63470", + "codeCommune": "63410", + "libelleAcheminement": "SAUVAGNAT", + "nomCommune": "SAUVAGNAT" }, { - "codePostal": "38460", - "codeCommune": "38542", - "libelleAcheminement": "VEYSSILIEU", - "nomCommune": "VEYSSILIEU" + "codePostal": "54550", + "codeCommune": "54043", + "libelleAcheminement": "BAINVILLE SUR MADON", + "nomCommune": "BAINVILLE SUR MADON" }, { - "codePostal": "32100", - "codeCommune": "32107", - "libelleAcheminement": "CONDOM", - "nomCommune": "CONDOM" + "codePostal": "55300", + "codeCommune": "55584", + "libelleAcheminement": "WOIMBEY", + "nomCommune": "WOIMBEY" }, { - "codePostal": "01190", - "codeCommune": "01337", - "libelleAcheminement": "ST BENIGNE", - "nomCommune": "ST BENIGNE" + "codePostal": "64490", + "codeCommune": "64223", + "libelleAcheminement": "ETSAUT", + "nomCommune": "ETSAUT" }, { - "codePostal": "60330", - "codeCommune": "60500", - "libelleAcheminement": "LE PLESSIS BELLEVILLE", - "nomCommune": "LE PLESSIS BELLEVILLE" + "codePostal": "10400", + "codeCommune": "10298", + "libelleAcheminement": "PONT SUR SEINE", + "nomCommune": "PONT SUR SEINE" }, { - "codePostal": "38890", - "codeCommune": "38546", - "libelleAcheminement": "VIGNIEU", - "nomCommune": "VIGNIEU" + "codePostal": "63500", + "codeCommune": "63411", + "libelleAcheminement": "SAUVAGNAT STE MARTHE", + "nomCommune": "SAUVAGNAT STE MARTHE" }, { - "codePostal": "32270", - "codeCommune": "32112", - "libelleAcheminement": "CRASTES", - "nomCommune": "CRASTES" + "codePostal": "54890", + "codeCommune": "54055", + "libelleAcheminement": "BAYONVILLE SUR MAD", + "nomCommune": "BAYONVILLE SUR MAD" }, { - "codePostal": "01300", - "codeCommune": "01338", - "libelleAcheminement": "GROSLEE ST BENOIT", - "nomCommune": "GROSLEE ST BENOIT" + "codePostal": "56640", + "codeCommune": "56005", + "libelleAcheminement": "ARZON", + "nomCommune": "ARZON" }, { - "codePostal": "60400", - "codeCommune": "60511", - "libelleAcheminement": "PORQUERICOURT", - "nomCommune": "PORQUERICOURT" + "codePostal": "64410", + "codeCommune": "64234", + "libelleAcheminement": "GAROS", + "nomCommune": "GAROS" }, { - "codePostal": "38190", - "codeCommune": "38547", - "libelleAcheminement": "VILLARD BONNOT", - "nomCommune": "VILLARD BONNOT" + "codePostal": "10500", + "codeCommune": "10304", + "libelleAcheminement": "PRECY ST MARTIN", + "nomCommune": "PRECY ST MARTIN" }, { - "codePostal": "32170", - "codeCommune": "32116", - "libelleAcheminement": "DUFFORT", - "nomCommune": "DUFFORT" + "codePostal": "63120", + "codeCommune": "63418", + "libelleAcheminement": "SERMENTIZON", + "nomCommune": "SERMENTIZON" }, { - "codePostal": "01500", - "codeCommune": "01345", - "libelleAcheminement": "ST DENIS EN BUGEY", - "nomCommune": "ST DENIS EN BUGEY" + "codePostal": "54620", + "codeCommune": "54056", + "libelleAcheminement": "BAZAILLES", + "nomCommune": "BAZAILLES" }, { - "codePostal": "60790", - "codeCommune": "60512", - "libelleAcheminement": "POUILLY", - "nomCommune": "POUILLY" + "codePostal": "56350", + "codeCommune": "56011", + "libelleAcheminement": "BEGANNE", + "nomCommune": "BEGANNE" }, { - "codePostal": "38520", - "codeCommune": "38549", - "libelleAcheminement": "VILLARD NOTRE DAME", - "nomCommune": "VILLARD NOTRE DAME" + "codePostal": "64260", + "codeCommune": "64240", + "libelleAcheminement": "GERE BELESTEN", + "nomCommune": "GERE BELESTEN" }, { - "codePostal": "32260", - "codeCommune": "32118", - "libelleAcheminement": "DURBAN", - "nomCommune": "DURBAN" + "codePostal": "10190", + "codeCommune": "10307", + "libelleAcheminement": "PRUGNY", + "nomCommune": "PRUGNY" }, { - "codePostal": "01340", - "codeCommune": "01346", - "libelleAcheminement": "ST DIDIER D AUSSIAT", - "nomCommune": "ST DIDIER D AUSSIAT" + "codePostal": "63560", + "codeCommune": "63419", + "libelleAcheminement": "SERVANT", + "nomCommune": "SERVANT" }, { - "codePostal": "60360", - "codeCommune": "60514", - "libelleAcheminement": "PREVILLERS", - "nomCommune": "PREVILLERS" + "codePostal": "54610", + "codeCommune": "54059", + "libelleAcheminement": "BELLEAU", + "nomCommune": "BELLEAU" }, { - "codePostal": "38280", - "codeCommune": "38557", - "libelleAcheminement": "VILLETTE D ANTHON", - "nomCommune": "VILLETTE D ANTHON" + "codePostal": "56240", + "codeCommune": "56014", + "libelleAcheminement": "BERNE", + "nomCommune": "BERNE" }, { - "codePostal": "32220", - "codeCommune": "32124", - "libelleAcheminement": "ESPAON", - "nomCommune": "ESPAON" + "codePostal": "64190", + "codeCommune": "64242", + "libelleAcheminement": "GESTAS", + "nomCommune": "GESTAS" }, { - "codePostal": "01600", - "codeCommune": "01347", - "libelleAcheminement": "ST DIDIER DE FORMANS", - "nomCommune": "ST DIDIER DE FORMANS" + "codePostal": "10210", + "codeCommune": "10309", + "libelleAcheminement": "PRUSY", + "nomCommune": "PRUSY" }, { - "codePostal": "60190", - "codeCommune": "60515", - "libelleAcheminement": "PRONLEROY", - "nomCommune": "PRONLEROY" + "codePostal": "63690", + "codeCommune": "63421", + "libelleAcheminement": "SINGLES", + "nomCommune": "SINGLES" }, { - "codePostal": "38280", - "codeCommune": "38557", - "libelleAcheminement": "VILLETTE D ANTHON", - "nomCommune": "VILLETTE D ANTHON" + "codePostal": "54610", + "codeCommune": "54059", + "libelleAcheminement": "BELLEAU", + "nomCommune": "BELLEAU" }, { - "codePostal": "32170", - "codeCommune": "32126", - "libelleAcheminement": "ESTAMPES", - "nomCommune": "ESTAMPES" + "codePostal": "56140", + "codeCommune": "56020", + "libelleAcheminement": "BOHAL", + "nomCommune": "BOHAL" }, { - "codePostal": "01300", - "codeCommune": "01358", - "libelleAcheminement": "ST GERMAIN LES PAROISSES", - "nomCommune": "ST GERMAIN LES PAROISSES" + "codePostal": "64370", + "codeCommune": "64243", + "libelleAcheminement": "GEUS D ARZACQ", + "nomCommune": "GEUS D ARZACQ" }, { - "codePostal": "60170", - "codeCommune": "60537", - "libelleAcheminement": "RIBECOURT DRESLINCOURT", - "nomCommune": "RIBECOURT DRESLINCOURT" + "codePostal": "10130", + "codeCommune": "10312", + "libelleAcheminement": "RACINES", + "nomCommune": "RACINES" }, { - "codePostal": "38730", - "codeCommune": "38560", - "libelleAcheminement": "VAL DE VIRIEU", - "nomCommune": "VAL DE VIRIEU" + "codePostal": "63450", + "codeCommune": "63425", + "libelleAcheminement": "TALLENDE", + "nomCommune": "TALLENDE" }, { - "codePostal": "32220", - "codeCommune": "32140", - "libelleAcheminement": "GAUJAC", - "nomCommune": "GAUJAC" + "codePostal": "54610", + "codeCommune": "54059", + "libelleAcheminement": "BELLEAU", + "nomCommune": "BELLEAU" }, { - "codePostal": "01640", - "codeCommune": "01363", - "libelleAcheminement": "ST JEAN LE VIEUX", - "nomCommune": "ST JEAN LE VIEUX" + "codePostal": "56400", + "codeCommune": "56023", + "libelleAcheminement": "BRECH", + "nomCommune": "BRECH" }, { - "codePostal": "60410", - "codeCommune": "60541", - "libelleAcheminement": "ROBERVAL", - "nomCommune": "ROBERVAL" + "codePostal": "64400", + "codeCommune": "64244", + "libelleAcheminement": "GEUS D OLORON", + "nomCommune": "GEUS D OLORON" }, { - "codePostal": "39800", - "codeCommune": "39003", - "libelleAcheminement": "ABERGEMENT LE PETIT", - "nomCommune": "ABERGEMENT LE PETIT" + "codePostal": "10500", + "codeCommune": "10313", + "libelleAcheminement": "RADONVILLIERS", + "nomCommune": "RADONVILLIERS" }, { - "codePostal": "32200", - "codeCommune": "32148", - "libelleAcheminement": "GISCARO", - "nomCommune": "GISCARO" + "codePostal": "63470", + "codeCommune": "63433", + "libelleAcheminement": "TORTEBESSE", + "nomCommune": "TORTEBESSE" }, { - "codePostal": "01560", - "codeCommune": "01364", - "libelleAcheminement": "ST JEAN SUR REYSSOUZE", - "nomCommune": "ST JEAN SUR REYSSOUZE" + "codePostal": "54940", + "codeCommune": "54060", + "libelleAcheminement": "BELLEVILLE", + "nomCommune": "BELLEVILLE" }, { - "codePostal": "60510", - "codeCommune": "60542", - "libelleAcheminement": "ROCHY CONDE", - "nomCommune": "ROCHY CONDE" + "codePostal": "56430", + "codeCommune": "56025", + "libelleAcheminement": "BRIGNAC", + "nomCommune": "BRIGNAC" }, { - "codePostal": "39320", - "codeCommune": "39010", - "libelleAcheminement": "ANDELOT MORVAL", - "nomCommune": "ANDELOT MORVAL" + "codePostal": "64370", + "codeCommune": "64254", + "libelleAcheminement": "HAGETAUBIN", + "nomCommune": "HAGETAUBIN" }, { - "codePostal": "32600", - "codeCommune": "32160", - "libelleAcheminement": "L ISLE JOURDAIN", - "nomCommune": "L ISLE JOURDAIN" + "codePostal": "10500", + "codeCommune": "10315", + "libelleAcheminement": "RANCES", + "nomCommune": "RANCES" }, { - "codePostal": "01250", - "codeCommune": "01369", - "libelleAcheminement": "ST JUST", - "nomCommune": "ST JUST" + "codePostal": "63720", + "codeCommune": "63443", + "libelleAcheminement": "VARENNES SUR MORGE", + "nomCommune": "VARENNES SUR MORGE" }, { - "codePostal": "60420", - "codeCommune": "60556", - "libelleAcheminement": "ROYAUCOURT", - "nomCommune": "ROYAUCOURT" + "codePostal": "54450", + "codeCommune": "54061", + "libelleAcheminement": "BENAMENIL", + "nomCommune": "BENAMENIL" }, { - "codePostal": "39320", - "codeCommune": "39010", - "libelleAcheminement": "ANDELOT MORVAL", - "nomCommune": "ANDELOT MORVAL" + "codePostal": "56130", + "codeCommune": "56030", + "libelleAcheminement": "CAMOEL", + "nomCommune": "CAMOEL" }, { - "codePostal": "32170", - "codeCommune": "32167", - "libelleAcheminement": "LAAS", - "nomCommune": "LAAS" + "codePostal": "64480", + "codeCommune": "64255", + "libelleAcheminement": "HALSOU", + "nomCommune": "HALSOU" }, { - "codePostal": "01800", - "codeCommune": "01378", - "libelleAcheminement": "ST MAURICE DE GOURDANS", - "nomCommune": "ST MAURICE DE GOURDANS" + "codePostal": "10430", + "codeCommune": "10325", + "libelleAcheminement": "ROSIERES PRES TROYES", + "nomCommune": "ROSIERES PRES TROYES" }, { - "codePostal": "60480", - "codeCommune": "60565", - "libelleAcheminement": "ST ANDRE FARIVILLERS", - "nomCommune": "ST ANDRE FARIVILLERS" + "codePostal": "63330", + "codeCommune": "63447", + "libelleAcheminement": "VERGHEAS", + "nomCommune": "VERGHEAS" }, { - "codePostal": "39120", - "codeCommune": "39011", - "libelleAcheminement": "ANNOIRE", - "nomCommune": "ANNOIRE" + "codePostal": "54360", + "codeCommune": "54076", + "libelleAcheminement": "BLAINVILLE SUR L EAU", + "nomCommune": "BLAINVILLE SUR L EAU" }, { - "codePostal": "32300", - "codeCommune": "32172", - "libelleAcheminement": "LABEJAN", - "nomCommune": "LABEJAN" + "codePostal": "56390", + "codeCommune": "56042", + "libelleAcheminement": "COLPO", + "nomCommune": "COLPO" }, { - "codePostal": "01330", - "codeCommune": "01382", - "libelleAcheminement": "STE OLIVE", - "nomCommune": "STE OLIVE" + "codePostal": "64160", + "codeCommune": "64262", + "libelleAcheminement": "HIGUERES SOUYE", + "nomCommune": "HIGUERES SOUYE" }, { - "codePostal": "60650", - "codeCommune": "60567", - "libelleAcheminement": "ST AUBIN EN BRAY", - "nomCommune": "ST AUBIN EN BRAY" + "codePostal": "10120", + "codeCommune": "10333", + "libelleAcheminement": "ST ANDRE LES VERGERS", + "nomCommune": "ST ANDRE LES VERGERS" }, { - "codePostal": "39240", - "codeCommune": "39018", - "libelleAcheminement": "AROMAS", - "nomCommune": "AROMAS" + "codePostal": "63580", + "codeCommune": "63448", + "libelleAcheminement": "LE VERNET CHAMEANE", + "nomCommune": "LE VERNET CHAMEANE" }, { - "codePostal": "32230", - "codeCommune": "32174", - "libelleAcheminement": "LADEVEZE RIVIERE", - "nomCommune": "LADEVEZE RIVIERE" + "codePostal": "54800", + "codeCommune": "54082", + "libelleAcheminement": "BONCOURT", + "nomCommune": "BONCOURT" }, { - "codePostal": "01240", - "codeCommune": "01383", - "libelleAcheminement": "ST PAUL DE VARAX", - "nomCommune": "ST PAUL DE VARAX" + "codePostal": "56200", + "codeCommune": "56060", + "libelleAcheminement": "LES FOUGERETS", + "nomCommune": "LES FOUGERETS" }, { - "codePostal": "60600", - "codeCommune": "60568", - "libelleAcheminement": "ST AUBIN SOUS ERQUERY", - "nomCommune": "ST AUBIN SOUS ERQUERY" + "codePostal": "64420", + "codeCommune": "64266", + "libelleAcheminement": "HOURS", + "nomCommune": "HOURS" }, { - "codePostal": "39240", - "codeCommune": "39018", - "libelleAcheminement": "AROMAS", - "nomCommune": "AROMAS" + "codePostal": "10160", + "codeCommune": "10335", + "libelleAcheminement": "ST BENOIST SUR VANNE", + "nomCommune": "ST BENOIST SUR VANNE" }, { - "codePostal": "32330", - "codeCommune": "32180", - "libelleAcheminement": "LAGRAULET DU GERS", - "nomCommune": "LAGRAULET DU GERS" + "codePostal": "64160", + "codeCommune": "64002", + "libelleAcheminement": "ABERE", + "nomCommune": "ABERE" }, { - "codePostal": "01340", - "codeCommune": "01387", - "libelleAcheminement": "ST SULPICE", - "nomCommune": "ST SULPICE" + "codePostal": "54200", + "codeCommune": "54086", + "libelleAcheminement": "BOUCQ", + "nomCommune": "BOUCQ" }, { - "codePostal": "60730", - "codeCommune": "60575", - "libelleAcheminement": "STE GENEVIEVE", - "nomCommune": "STE GENEVIEVE" + "codePostal": "56120", + "codeCommune": "56068", + "libelleAcheminement": "LA GREE ST LAURENT", + "nomCommune": "LA GREE ST LAURENT" }, { - "codePostal": "39250", - "codeCommune": "39020", - "libelleAcheminement": "ARSURE ARSURETTE", - "nomCommune": "ARSURE ARSURETTE" + "codePostal": "64640", + "codeCommune": "64271", + "libelleAcheminement": "IHOLDY", + "nomCommune": "IHOLDY" }, { - "codePostal": "32810", - "codeCommune": "32183", - "libelleAcheminement": "LAHITTE", - "nomCommune": "LAHITTE" + "codePostal": "10180", + "codeCommune": "10336", + "libelleAcheminement": "ST BENOIT SUR SEINE", + "nomCommune": "ST BENOIT SUR SEINE" }, { - "codePostal": "01270", - "codeCommune": "01391", - "libelleAcheminement": "SALAVRE", - "nomCommune": "SALAVRE" + "codePostal": "64470", + "codeCommune": "64015", + "libelleAcheminement": "ALCAY ALCABEHETY SUNHARETTE", + "nomCommune": "ALCAY ALCABEHETY SUNHARETTE" }, { - "codePostal": "60410", - "codeCommune": "60578", - "libelleAcheminement": "SAINTINES", - "nomCommune": "SAINTINES" + "codePostal": "54770", + "codeCommune": "54089", + "libelleAcheminement": "BOUXIERES AUX CHENES", + "nomCommune": "BOUXIERES AUX CHENES" }, { - "codePostal": "39270", - "codeCommune": "39021", - "libelleAcheminement": "LA CHAILLEUSE", - "nomCommune": "LA CHAILLEUSE" + "codePostal": "56420", + "codeCommune": "56071", + "libelleAcheminement": "GUEHENNO", + "nomCommune": "GUEHENNO" }, { - "codePostal": "32140", - "codeCommune": "32185", - "libelleAcheminement": "LALANNE ARQUE", - "nomCommune": "LALANNE ARQUE" + "codePostal": "64120", + "codeCommune": "64294", + "libelleAcheminement": "LABETS BISCAY", + "nomCommune": "LABETS BISCAY" }, { - "codePostal": "01400", - "codeCommune": "01393", - "libelleAcheminement": "SANDRANS", - "nomCommune": "SANDRANS" + "codePostal": "10700", + "codeCommune": "10338", + "libelleAcheminement": "ST ETIENNE SOUS BARBUISE", + "nomCommune": "ST ETIENNE SOUS BARBUISE" }, { - "codePostal": "60000", - "codeCommune": "60586", - "libelleAcheminement": "ST MARTIN LE NOEUD", - "nomCommune": "ST MARTIN LE NOEUD" + "codePostal": "64430", + "codeCommune": "64016", + "libelleAcheminement": "ALDUDES", + "nomCommune": "ALDUDES" }, { - "codePostal": "39380", - "codeCommune": "39026", - "libelleAcheminement": "AUGERANS", - "nomCommune": "AUGERANS" + "codePostal": "54290", + "codeCommune": "54098", + "libelleAcheminement": "BREMONCOURT", + "nomCommune": "BREMONCOURT" }, { - "codePostal": "32400", - "codeCommune": "32192", - "libelleAcheminement": "LANNUX", - "nomCommune": "LANNUX" + "codePostal": "56160", + "codeCommune": "56073", + "libelleAcheminement": "GUEMENE SUR SCORFF", + "nomCommune": "GUEMENE SUR SCORFF" }, { - "codePostal": "01470", - "codeCommune": "01400", - "libelleAcheminement": "SEILLONNAZ", - "nomCommune": "SEILLONNAZ" + "codePostal": "64300", + "codeCommune": "64295", + "libelleAcheminement": "LABEYRIE", + "nomCommune": "LABEYRIE" }, { - "codePostal": "60210", - "codeCommune": "60588", - "libelleAcheminement": "ST MAUR", - "nomCommune": "ST MAUR" + "codePostal": "10100", + "codeCommune": "10341", + "libelleAcheminement": "ST HILAIRE SOUS ROMILLY", + "nomCommune": "ST HILAIRE SOUS ROMILLY" }, { - "codePostal": "39130", - "codeCommune": "39038", - "libelleAcheminement": "BARESIA SUR L AIN", - "nomCommune": "BARESIA SUR L AIN" + "codePostal": "64190", + "codeCommune": "64025", + "libelleAcheminement": "ANGOUS", + "nomCommune": "ANGOUS" }, { - "codePostal": "32100", - "codeCommune": "32197", - "libelleAcheminement": "LARROQUE SUR L OSSE", - "nomCommune": "LARROQUE SUR L OSSE" + "codePostal": "54200", + "codeCommune": "54102", + "libelleAcheminement": "BRULEY", + "nomCommune": "BRULEY" }, { - "codePostal": "01190", - "codeCommune": "01402", - "libelleAcheminement": "SERMOYER", - "nomCommune": "SERMOYER" + "codePostal": "56380", + "codeCommune": "56075", + "libelleAcheminement": "GUER", + "nomCommune": "GUER" }, { - "codePostal": "60350", - "codeCommune": "60593", - "libelleAcheminement": "ST PIERRE LES BITRY", - "nomCommune": "ST PIERRE LES BITRY" + "codePostal": "64170", + "codeCommune": "64300", + "libelleAcheminement": "LACQ", + "nomCommune": "LACQ" }, { - "codePostal": "39700", - "codeCommune": "39039", - "libelleAcheminement": "LA BARRE", - "nomCommune": "LA BARRE" + "codePostal": "10350", + "codeCommune": "10348", + "libelleAcheminement": "ST LUPIEN", + "nomCommune": "ST LUPIEN" }, { - "codePostal": "32160", - "codeCommune": "32199", - "libelleAcheminement": "LASSERRADE", - "nomCommune": "LASSERRADE" + "codePostal": "64220", + "codeCommune": "64026", + "libelleAcheminement": "ANHAUX", + "nomCommune": "ANHAUX" }, { - "codePostal": "01560", - "codeCommune": "01406", - "libelleAcheminement": "SERVIGNAT", - "nomCommune": "SERVIGNAT" + "codePostal": "54800", + "codeCommune": "54103", + "libelleAcheminement": "BRUVILLE", + "nomCommune": "BRUVILLE" }, { - "codePostal": "60360", - "codeCommune": "60608", - "libelleAcheminement": "LE SAULCHOY", - "nomCommune": "LE SAULCHOY" + "codePostal": "56560", + "codeCommune": "56081", + "libelleAcheminement": "GUISCRIFF", + "nomCommune": "GUISCRIFF" }, { - "codePostal": "39800", - "codeCommune": "39049", - "libelleAcheminement": "BERSAILLIN", - "nomCommune": "BERSAILLIN" + "codePostal": "64150", + "codeCommune": "64301", + "libelleAcheminement": "LAGOR", + "nomCommune": "LAGOR" }, { - "codePostal": "32110", - "codeCommune": "32202", - "libelleAcheminement": "LAUJUZAN", - "nomCommune": "LAUJUZAN" + "codePostal": "10200", + "codeCommune": "10366", + "libelleAcheminement": "SAULCY", + "nomCommune": "SAULCY" }, { - "codePostal": "01400", - "codeCommune": "01412", - "libelleAcheminement": "SULIGNAT", - "nomCommune": "SULIGNAT" + "codePostal": "64270", + "codeCommune": "64031", + "libelleAcheminement": "ARANCOU", + "nomCommune": "ARANCOU" }, { - "codePostal": "60400", - "codeCommune": "60610", - "libelleAcheminement": "SEMPIGNY", - "nomCommune": "SEMPIGNY" + "codePostal": "54370", + "codeCommune": "54106", + "libelleAcheminement": "BURES", + "nomCommune": "BURES" }, { - "codePostal": "39800", - "codeCommune": "39049", - "libelleAcheminement": "BERSAILLIN", - "nomCommune": "BERSAILLIN" + "codePostal": "56700", + "codeCommune": "56083", + "libelleAcheminement": "HENNEBONT", + "nomCommune": "HENNEBONT" }, { - "codePostal": "32330", - "codeCommune": "32203", - "libelleAcheminement": "LAURAET", - "nomCommune": "LAURAET" + "codePostal": "64470", + "codeCommune": "64303", + "libelleAcheminement": "LAGUINGE RESTOUE", + "nomCommune": "LAGUINGE RESTOUE" }, { - "codePostal": "01230", - "codeCommune": "01416", - "libelleAcheminement": "TENAY", - "nomCommune": "TENAY" + "codePostal": "10400", + "codeCommune": "10370", + "libelleAcheminement": "SOLIGNY LES ETANGS", + "nomCommune": "SOLIGNY LES ETANGS" }, { - "codePostal": "60240", - "codeCommune": "60613", - "libelleAcheminement": "SENOTS", - "nomCommune": "SENOTS" + "codePostal": "64120", + "codeCommune": "64049", + "libelleAcheminement": "AROUE ITHOROTS OLHAIBY", + "nomCommune": "AROUE ITHOROTS OLHAIBY" }, { - "codePostal": "39800", - "codeCommune": "39049", - "libelleAcheminement": "BERSAILLIN", - "nomCommune": "BERSAILLIN" + "codePostal": "54210", + "codeCommune": "54108", + "libelleAcheminement": "BURTHECOURT AUX CHENES", + "nomCommune": "BURTHECOURT AUX CHENES" }, { - "codePostal": "32810", - "codeCommune": "32207", - "libelleAcheminement": "LEBOULIN", - "nomCommune": "LEBOULIN" + "codePostal": "56170", + "codeCommune": "56086", + "libelleAcheminement": "ILE D HOUAT", + "nomCommune": "ILE D HOUAT" }, { - "codePostal": "01120", - "codeCommune": "01418", - "libelleAcheminement": "THIL", - "nomCommune": "THIL" + "codePostal": "64460", + "codeCommune": "64309", + "libelleAcheminement": "LAMAYOU", + "nomCommune": "LAMAYOU" }, { - "codePostal": "60400", - "codeCommune": "60617", - "libelleAcheminement": "SERMAIZE", - "nomCommune": "SERMAIZE" + "codePostal": "10320", + "codeCommune": "10371", + "libelleAcheminement": "SOMMEVAL", + "nomCommune": "SOMMEVAL" }, { - "codePostal": "39250", - "codeCommune": "39055", - "libelleAcheminement": "BILLECUL", - "nomCommune": "BILLECUL" + "codePostal": "64420", + "codeCommune": "64053", + "libelleAcheminement": "ARRIEN", + "nomCommune": "ARRIEN" }, { - "codePostal": "32600", - "codeCommune": "32210", - "libelleAcheminement": "LIAS", - "nomCommune": "LIAS" + "codePostal": "54330", + "codeCommune": "54117", + "libelleAcheminement": "CHAOUILLEY", + "nomCommune": "CHAOUILLEY" }, { - "codePostal": "01710", - "codeCommune": "01419", - "libelleAcheminement": "THOIRY", - "nomCommune": "THOIRY" + "codePostal": "56120", + "codeCommune": "56091", + "libelleAcheminement": "JOSSELIN", + "nomCommune": "JOSSELIN" }, { - "codePostal": "60330", - "codeCommune": "60619", - "libelleAcheminement": "SILLY LE LONG", - "nomCommune": "SILLY LE LONG" + "codePostal": "64120", + "codeCommune": "64314", + "libelleAcheminement": "LARCEVEAU ARROS CIBITS", + "nomCommune": "LARCEVEAU ARROS CIBITS" }, { - "codePostal": "39220", - "codeCommune": "39059", - "libelleAcheminement": "BOIS D AMONT", - "nomCommune": "BOIS D AMONT" + "codePostal": "10400", + "codeCommune": "10382", + "libelleAcheminement": "TRAINEL", + "nomCommune": "TRAINEL" }, { - "codePostal": "32220", - "codeCommune": "32213", - "libelleAcheminement": "LOMBEZ", - "nomCommune": "LOMBEZ" + "codePostal": "64350", + "codeCommune": "64056", + "libelleAcheminement": "ARROSES", + "nomCommune": "ARROSES" }, { - "codePostal": "01250", - "codeCommune": "01422", - "libelleAcheminement": "TOSSIAT", - "nomCommune": "TOSSIAT" + "codePostal": "54113", + "codeCommune": "54120", + "libelleAcheminement": "CHARMES LA COTE", + "nomCommune": "CHARMES LA COTE" }, { - "codePostal": "60380", - "codeCommune": "60623", - "libelleAcheminement": "SONGEONS", - "nomCommune": "SONGEONS" + "codePostal": "56920", + "codeCommune": "56092", + "libelleAcheminement": "KERFOURN", + "nomCommune": "KERFOURN" }, { - "codePostal": "39800", - "codeCommune": "39065", - "libelleAcheminement": "BONNEFONTAINE", - "nomCommune": "BONNEFONTAINE" + "codePostal": "64560", + "codeCommune": "64316", + "libelleAcheminement": "LARRAU", + "nomCommune": "LARRAU" }, { - "codePostal": "32140", - "codeCommune": "32216", - "libelleAcheminement": "LOURTIES MONBRUN", - "nomCommune": "LOURTIES MONBRUN" + "codePostal": "10170", + "codeCommune": "10392", + "libelleAcheminement": "VALLANT ST GEORGES", + "nomCommune": "VALLANT ST GEORGES" }, { - "codePostal": "01390", - "codeCommune": "01424", - "libelleAcheminement": "TRAMOYES", - "nomCommune": "TRAMOYES" + "codePostal": "64420", + "codeCommune": "64059", + "libelleAcheminement": "ARTIGUELOUTAN", + "nomCommune": "ARTIGUELOUTAN" }, { - "codePostal": "60380", - "codeCommune": "60629", - "libelleAcheminement": "THERINES", - "nomCommune": "THERINES" + "codePostal": "54360", + "codeCommune": "54121", + "libelleAcheminement": "CHARMOIS", + "nomCommune": "CHARMOIS" }, { - "codePostal": "39100", - "codeCommune": "39078", - "libelleAcheminement": "BREVANS", - "nomCommune": "BREVANS" + "codePostal": "56120", + "codeCommune": "56103", + "libelleAcheminement": "LANTILLAC", + "nomCommune": "LANTILLAC" }, { - "codePostal": "32110", - "codeCommune": "32220", - "libelleAcheminement": "LUPPE VIOLLES", - "nomCommune": "LUPPE VIOLLES" + "codePostal": "64120", + "codeCommune": "64319", + "libelleAcheminement": "LARRIBAR SORHAPURU", + "nomCommune": "LARRIBAR SORHAPURU" }, { - "codePostal": "01160", - "codeCommune": "01425", - "libelleAcheminement": "LA TRANCLIERE", - "nomCommune": "LA TRANCLIERE" + "codePostal": "10240", + "codeCommune": "10398", + "libelleAcheminement": "VAUCOGNE", + "nomCommune": "VAUCOGNE" }, { - "codePostal": "60170", - "codeCommune": "60641", - "libelleAcheminement": "TRACY LE MONT", - "nomCommune": "TRACY LE MONT" + "codePostal": "64170", + "codeCommune": "64061", + "libelleAcheminement": "ARTIX", + "nomCommune": "ARTIX" }, { - "codePostal": "39800", - "codeCommune": "39081", - "libelleAcheminement": "BUVILLY", - "nomCommune": "BUVILLY" + "codePostal": "54200", + "codeCommune": "54122", + "libelleAcheminement": "CHAUDENEY SUR MOSELLE", + "nomCommune": "CHAUDENEY SUR MOSELLE" }, { - "codePostal": "32270", - "codeCommune": "32221", - "libelleAcheminement": "LUSSAN", - "nomCommune": "LUSSAN" + "codePostal": "56320", + "codeCommune": "56105", + "libelleAcheminement": "LANVENEGEN", + "nomCommune": "LANVENEGEN" }, { - "codePostal": "01660", - "codeCommune": "01429", - "libelleAcheminement": "VANDEINS", - "nomCommune": "VANDEINS" + "codePostal": "64440", + "codeCommune": "64320", + "libelleAcheminement": "LARUNS", + "nomCommune": "LARUNS" }, { - "codePostal": "60490", - "codeCommune": "60654", - "libelleAcheminement": "VANDELICOURT", - "nomCommune": "VANDELICOURT" + "codePostal": "10700", + "codeCommune": "10400", + "libelleAcheminement": "VAUPOISSON", + "nomCommune": "VAUPOISSON" }, { - "codePostal": "39230", - "codeCommune": "39100", - "libelleAcheminement": "CHAMPROUGIER", - "nomCommune": "CHAMPROUGIER" + "codePostal": "64310", + "codeCommune": "64065", + "libelleAcheminement": "ASCAIN", + "nomCommune": "ASCAIN" }, { - "codePostal": "32110", - "codeCommune": "32222", - "libelleAcheminement": "MAGNAN", - "nomCommune": "MAGNAN" + "codePostal": "54610", + "codeCommune": "54126", + "libelleAcheminement": "CHENICOURT", + "nomCommune": "CHENICOURT" }, { - "codePostal": "01160", - "codeCommune": "01430", - "libelleAcheminement": "VARAMBON", - "nomCommune": "VARAMBON" + "codePostal": "56260", + "codeCommune": "56107", + "libelleAcheminement": "LARMOR PLAGE", + "nomCommune": "LARMOR PLAGE" }, { - "codePostal": "60890", - "codeCommune": "60656", - "libelleAcheminement": "VARINFROY", - "nomCommune": "VARINFROY" + "codePostal": "64190", + "codeCommune": "64326", + "libelleAcheminement": "LAY LAMIDOU", + "nomCommune": "LAY LAMIDOU" }, { - "codePostal": "39300", - "codeCommune": "39105", - "libelleAcheminement": "CHAPOIS", - "nomCommune": "CHAPOIS" + "codePostal": "10390", + "codeCommune": "10406", + "libelleAcheminement": "VERRIERES", + "nomCommune": "VERRIERES" }, { - "codePostal": "32730", - "codeCommune": "32225", - "libelleAcheminement": "MALABAT", - "nomCommune": "MALABAT" + "codePostal": "64800", + "codeCommune": "64068", + "libelleAcheminement": "ASSON", + "nomCommune": "ASSON" }, { - "codePostal": "01170", - "codeCommune": "01436", - "libelleAcheminement": "VESANCY", - "nomCommune": "VESANCY" + "codePostal": "54330", + "codeCommune": "54132", + "libelleAcheminement": "CLEREY SUR BRENON", + "nomCommune": "CLEREY SUR BRENON" }, { - "codePostal": "60390", - "codeCommune": "60662", - "libelleAcheminement": "LE VAUROUX", - "nomCommune": "LE VAUROUX" + "codePostal": "56460", + "codeCommune": "56112", + "libelleAcheminement": "LIZIO", + "nomCommune": "LIZIO" }, { - "codePostal": "39130", - "codeCommune": "39109", - "libelleAcheminement": "CHAREZIER", - "nomCommune": "CHAREZIER" + "codePostal": "64220", + "codeCommune": "64327", + "libelleAcheminement": "LECUMBERRY", + "nomCommune": "LECUMBERRY" }, { - "codePostal": "32490", - "codeCommune": "32234", - "libelleAcheminement": "MARESTAING", - "nomCommune": "MARESTAING" + "codePostal": "10800", + "codeCommune": "10416", + "libelleAcheminement": "VILLEMEREUIL", + "nomCommune": "VILLEMEREUIL" }, { - "codePostal": "01200", - "codeCommune": "01448", - "libelleAcheminement": "VILLES", - "nomCommune": "VILLES" + "codePostal": "64450", + "codeCommune": "64070", + "libelleAcheminement": "ASTIS", + "nomCommune": "ASTIS" }, { - "codePostal": "60360", - "codeCommune": "60673", - "libelleAcheminement": "VIEFVILLERS", - "nomCommune": "VIEFVILLERS" + "codePostal": "54800", + "codeCommune": "54136", + "libelleAcheminement": "CONFLANS EN JARNISY", + "nomCommune": "CONFLANS EN JARNISY" }, { - "codePostal": "39230", - "codeCommune": "39112", - "libelleAcheminement": "LA CHASSAGNE", - "nomCommune": "LA CHASSAGNE" + "codePostal": "56500", + "codeCommune": "56117", + "libelleAcheminement": "LOCMINE", + "nomCommune": "LOCMINE" }, { - "codePostal": "32150", - "codeCommune": "32236", - "libelleAcheminement": "MARGUESTAU", - "nomCommune": "MARGUESTAU" + "codePostal": "64400", + "codeCommune": "64328", + "libelleAcheminement": "LEDEUIX", + "nomCommune": "LEDEUIX" }, { - "codePostal": "01510", - "codeCommune": "01452", - "libelleAcheminement": "VIRIEU LE GRAND", - "nomCommune": "VIRIEU LE GRAND" + "codePostal": "10160", + "codeCommune": "10417", + "libelleAcheminement": "VILLEMOIRON EN OTHE", + "nomCommune": "VILLEMOIRON EN OTHE" }, { - "codePostal": "60350", - "codeCommune": "60674", - "libelleAcheminement": "VIEUX MOULIN", - "nomCommune": "VIEUX MOULIN" + "codePostal": "64330", + "codeCommune": "64074", + "libelleAcheminement": "AUBOUS", + "nomCommune": "AUBOUS" }, { - "codePostal": "39230", - "codeCommune": "39119", - "libelleAcheminement": "LE CHATELEY", - "nomCommune": "LE CHATELEY" + "codePostal": "54110", + "codeCommune": "54139", + "libelleAcheminement": "COURBESSEAUX", + "nomCommune": "COURBESSEAUX" }, { - "codePostal": "32700", - "codeCommune": "32239", - "libelleAcheminement": "MARSOLAN", - "nomCommune": "MARSOLAN" + "codePostal": "56550", + "codeCommune": "56119", + "libelleAcheminement": "LOCOAL MENDON", + "nomCommune": "LOCOAL MENDON" }, { - "codePostal": "01260", - "codeCommune": "01453", - "libelleAcheminement": "ARVIERE EN VALROMEY", - "nomCommune": "ARVIERE EN VALROMEY" + "codePostal": "64160", + "codeCommune": "64338", + "libelleAcheminement": "LESPOURCY", + "nomCommune": "LESPOURCY" }, { - "codePostal": "60650", - "codeCommune": "60677", - "libelleAcheminement": "VILLEMBRAY", - "nomCommune": "VILLEMBRAY" + "codePostal": "10110", + "codeCommune": "10418", + "libelleAcheminement": "VILLEMORIEN", + "nomCommune": "VILLEMORIEN" }, { - "codePostal": "39150", - "codeCommune": "39129", - "libelleAcheminement": "CHAUX DES CROTENAY", - "nomCommune": "CHAUX DES CROTENAY" + "codePostal": "64130", + "codeCommune": "64081", + "libelleAcheminement": "AUSSURUCQ", + "nomCommune": "AUSSURUCQ" }, { - "codePostal": "32700", - "codeCommune": "32241", - "libelleAcheminement": "MAS D AUVIGNON", - "nomCommune": "MAS D AUVIGNON" + "codePostal": "54300", + "codeCommune": "54148", + "libelleAcheminement": "CROISMARE", + "nomCommune": "CROISMARE" }, { - "codePostal": "02320", - "codeCommune": "02010", - "libelleAcheminement": "ALLEMANT", - "nomCommune": "ALLEMANT" + "codePostal": "56140", + "codeCommune": "56124", + "libelleAcheminement": "MALESTROIT", + "nomCommune": "MALESTROIT" }, { - "codePostal": "60650", - "codeCommune": "60681", - "libelleAcheminement": "VILLERS ST BARTHELEMY", - "nomCommune": "VILLERS ST BARTHELEMY" + "codePostal": "64800", + "codeCommune": "64339", + "libelleAcheminement": "LESTELLE BETHARRAM", + "nomCommune": "LESTELLE BETHARRAM" }, { - "codePostal": "39200", - "codeCommune": "39130", - "libelleAcheminement": "NANCHEZ", - "nomCommune": "NANCHEZ" + "codePostal": "10140", + "codeCommune": "10423", + "libelleAcheminement": "LA VILLENEUVE AU CHENE", + "nomCommune": "LA VILLENEUVE AU CHENE" }, { - "codePostal": "32400", - "codeCommune": "32244", - "libelleAcheminement": "MAULICHERES", - "nomCommune": "MAULICHERES" + "codePostal": "64490", + "codeCommune": "64085", + "libelleAcheminement": "AYDIUS", + "nomCommune": "AYDIUS" }, { - "codePostal": "02290", - "codeCommune": "02011", - "libelleAcheminement": "AMBLENY", - "nomCommune": "AMBLENY" + "codePostal": "54360", + "codeCommune": "54152", + "libelleAcheminement": "DAMELEVIERES", + "nomCommune": "DAMELEVIERES" }, { - "codePostal": "60810", - "codeCommune": "60682", - "libelleAcheminement": "VILLERS ST FRAMBOURG OGNON", - "nomCommune": "VILLERS ST FRAMBOURG OGNON" + "codePostal": "56500", + "codeCommune": "56141", + "libelleAcheminement": "MOUSTOIR AC", + "nomCommune": "MOUSTOIR AC" }, { - "codePostal": "39240", - "codeCommune": "39137", - "libelleAcheminement": "ST HYMETIERE SUR VALOUSE", - "nomCommune": "ST HYMETIERE SUR VALOUSE" + "codePostal": "64470", + "codeCommune": "64340", + "libelleAcheminement": "LICHANS SUNHAR", + "nomCommune": "LICHANS SUNHAR" }, { - "codePostal": "32300", - "codeCommune": "32256", - "libelleAcheminement": "MIRANDE", - "nomCommune": "MIRANDE" + "codePostal": "10310", + "codeCommune": "10426", + "libelleAcheminement": "VILLE SOUS LA FERTE", + "nomCommune": "VILLE SOUS LA FERTE" }, { - "codePostal": "02200", - "codeCommune": "02012", - "libelleAcheminement": "AMBRIEF", - "nomCommune": "AMBRIEF" + "codePostal": "64240", + "codeCommune": "64086", + "libelleAcheminement": "AYHERRE", + "nomCommune": "AYHERRE" }, { - "codePostal": "60134", - "codeCommune": "60685", - "libelleAcheminement": "VILLERS ST SEPULCRE", - "nomCommune": "VILLERS ST SEPULCRE" + "codePostal": "54370", + "codeCommune": "54155", + "libelleAcheminement": "DEUXVILLE", + "nomCommune": "DEUXVILLE" }, { - "codePostal": "39120", - "codeCommune": "39138", - "libelleAcheminement": "CHEMIN", - "nomCommune": "CHEMIN" + "codePostal": "56130", + "codeCommune": "56147", + "libelleAcheminement": "NIVILLAC", + "nomCommune": "NIVILLAC" }, { - "codePostal": "32420", - "codeCommune": "32260", - "libelleAcheminement": "MONBARDON", - "nomCommune": "MONBARDON" + "codePostal": "64250", + "codeCommune": "64350", + "libelleAcheminement": "LOUHOSSOA", + "nomCommune": "LOUHOSSOA" }, { - "codePostal": "02190", - "codeCommune": "02013", - "libelleAcheminement": "AMIFONTAINE", - "nomCommune": "AMIFONTAINE" + "codePostal": "10210", + "codeCommune": "10431", + "libelleAcheminement": "VILLIERS LE BOIS", + "nomCommune": "VILLIERS LE BOIS" }, { - "codePostal": "60650", - "codeCommune": "60687", - "libelleAcheminement": "VILLERS SUR AUCHY", - "nomCommune": "VILLERS SUR AUCHY" + "codePostal": "64520", + "codeCommune": "64094", + "libelleAcheminement": "BARDOS", + "nomCommune": "BARDOS" }, { - "codePostal": "39570", - "codeCommune": "39162", - "libelleAcheminement": "CONDAMINE", - "nomCommune": "CONDAMINE" + "codePostal": "54170", + "codeCommune": "54158", + "libelleAcheminement": "DOLCOURT", + "nomCommune": "DOLCOURT" }, { - "codePostal": "32120", - "codeCommune": "32269", - "libelleAcheminement": "MONFORT", - "nomCommune": "MONFORT" + "codePostal": "56690", + "codeCommune": "56148", + "libelleAcheminement": "NOSTANG", + "nomCommune": "NOSTANG" }, { - "codePostal": "02320", - "codeCommune": "02018", - "libelleAcheminement": "ANIZY LE GRAND", - "nomCommune": "ANIZY LE GRAND" + "codePostal": "64570", + "codeCommune": "64351", + "libelleAcheminement": "LOURDIOS ICHERE", + "nomCommune": "LOURDIOS ICHERE" }, { - "codePostal": "60860", - "codeCommune": "60688", - "libelleAcheminement": "VILLERS SUR BONNIERES", - "nomCommune": "VILLERS SUR BONNIERES" + "codePostal": "10210", + "codeCommune": "10432", + "libelleAcheminement": "VILLIERS SOUS PRASLIN", + "nomCommune": "VILLIERS SOUS PRASLIN" }, { - "codePostal": "39140", - "codeCommune": "39167", - "libelleAcheminement": "COSGES", - "nomCommune": "COSGES" + "codePostal": "64100", + "codeCommune": "64102", + "libelleAcheminement": "BAYONNE", + "nomCommune": "BAYONNE" }, { - "codePostal": "32170", - "codeCommune": "32275", - "libelleAcheminement": "MONPARDIAC", - "nomCommune": "MONPARDIAC" + "codePostal": "54115", + "codeCommune": "54164", + "libelleAcheminement": "DOMMARIE EULMONT", + "nomCommune": "DOMMARIE EULMONT" }, { - "codePostal": "02130", - "codeCommune": "02022", - "libelleAcheminement": "ARCY STE RESTITUE", - "nomCommune": "ARCY STE RESTITUE" + "codePostal": "56360", + "codeCommune": "56152", + "libelleAcheminement": "LE PALAIS", + "nomCommune": "LE PALAIS" }, { - "codePostal": "60150", - "codeCommune": "60689", - "libelleAcheminement": "VILLERS SUR COUDUN", - "nomCommune": "VILLERS SUR COUDUN" + "codePostal": "64420", + "codeCommune": "64358", + "libelleAcheminement": "LUCGARIER", + "nomCommune": "LUCGARIER" }, { - "codePostal": "39300", - "codeCommune": "39178", - "libelleAcheminement": "CRANS", - "nomCommune": "CRANS" + "codePostal": "10800", + "codeCommune": "10434", + "libelleAcheminement": "VILLY LE BOIS", + "nomCommune": "VILLY LE BOIS" }, { - "codePostal": "32730", - "codeCommune": "32283", - "libelleAcheminement": "MONTEGUT ARROS", - "nomCommune": "MONTEGUT ARROS" + "codePostal": "64120", + "codeCommune": "64106", + "libelleAcheminement": "BEHASQUE LAPISTE", + "nomCommune": "BEHASQUE LAPISTE" }, { - "codePostal": "02840", - "codeCommune": "02028", - "libelleAcheminement": "ATHIES SOUS LAON", - "nomCommune": "ATHIES SOUS LAON" + "codePostal": "54620", + "codeCommune": "54172", + "libelleAcheminement": "DONCOURT LES LONGUYON", + "nomCommune": "DONCOURT LES LONGUYON" }, { - "codePostal": "60130", - "codeCommune": "60701", - "libelleAcheminement": "WAVIGNIES", - "nomCommune": "WAVIGNIES" + "codePostal": "56760", + "codeCommune": "56155", + "libelleAcheminement": "PENESTIN", + "nomCommune": "PENESTIN" }, { - "codePostal": "39190", - "codeCommune": "39197", - "libelleAcheminement": "DIGNA", - "nomCommune": "DIGNA" + "codePostal": "64660", + "codeCommune": "64360", + "libelleAcheminement": "LURBE ST CHRISTAU", + "nomCommune": "LURBE ST CHRISTAU" }, { - "codePostal": "32330", - "codeCommune": "32292", - "libelleAcheminement": "MOUCHAN", - "nomCommune": "MOUCHAN" + "codePostal": "10700", + "codeCommune": "10436", + "libelleAcheminement": "VINETS", + "nomCommune": "VINETS" }, { - "codePostal": "02490", - "codeCommune": "02029", - "libelleAcheminement": "ATTILLY", - "nomCommune": "ATTILLY" + "codePostal": "64300", + "codeCommune": "64112", + "libelleAcheminement": "BERENX", + "nomCommune": "BERENX" }, { - "codePostal": "61000", - "codeCommune": "61001", - "libelleAcheminement": "ALENCON", - "nomCommune": "ALENCON" + "codePostal": "54270", + "codeCommune": "54184", + "libelleAcheminement": "ESSEY LES NANCY", + "nomCommune": "ESSEY LES NANCY" }, { - "codePostal": "39100", - "codeCommune": "39198", - "libelleAcheminement": "DOLE", - "nomCommune": "DOLE" + "codePostal": "56890", + "codeCommune": "56158", + "libelleAcheminement": "PLESCOP", + "nomCommune": "PLESCOP" }, { - "codePostal": "32130", - "codeCommune": "32295", - "libelleAcheminement": "NIZAS", - "nomCommune": "NIZAS" + "codePostal": "64240", + "codeCommune": "64364", + "libelleAcheminement": "MACAYE", + "nomCommune": "MACAYE" }, { - "codePostal": "02120", - "codeCommune": "02035", - "libelleAcheminement": "AUDIGNY", - "nomCommune": "AUDIGNY" + "codePostal": "10500", + "codeCommune": "10445", + "libelleAcheminement": "YEVRES LE PETIT", + "nomCommune": "YEVRES LE PETIT" }, { - "codePostal": "61100", - "codeCommune": "61007", - "libelleAcheminement": "ATHIS VAL DE ROUVRE", - "nomCommune": "ATHIS VAL DE ROUVRE" + "codePostal": "64200", + "codeCommune": "64122", + "libelleAcheminement": "BIARRITZ", + "nomCommune": "BIARRITZ" }, { - "codePostal": "39230", - "codeCommune": "39199", - "libelleAcheminement": "DOMBLANS", - "nomCommune": "DOMBLANS" + "codePostal": "54330", + "codeCommune": "54185", + "libelleAcheminement": "ETREVAL", + "nomCommune": "ETREVAL" }, { - "codePostal": "32260", - "codeCommune": "32300", - "libelleAcheminement": "ORBESSAN", - "nomCommune": "ORBESSAN" + "codePostal": "56120", + "codeCommune": "56160", + "libelleAcheminement": "PLEUGRIFFET", + "nomCommune": "PLEUGRIFFET" }, { - "codePostal": "02220", - "codeCommune": "02036", - "libelleAcheminement": "AUGY", - "nomCommune": "AUGY" + "codePostal": "64350", + "codeCommune": "64369", + "libelleAcheminement": "MASPIE LALONQUERE JUILLACQ", + "nomCommune": "MASPIE LALONQUERE JUILLACQ" }, { - "codePostal": "61100", - "codeCommune": "61007", - "libelleAcheminement": "ATHIS VAL DE ROUVRE", - "nomCommune": "ATHIS VAL DE ROUVRE" + "codePostal": "11800", + "codeCommune": "11001", + "libelleAcheminement": "AIGUES VIVES", + "nomCommune": "AIGUES VIVES" }, { - "codePostal": "39110", - "codeCommune": "39202", - "libelleAcheminement": "DOURNON", - "nomCommune": "DOURNON" + "codePostal": "64520", + "codeCommune": "64123", + "libelleAcheminement": "BIDACHE", + "nomCommune": "BIDACHE" }, { - "codePostal": "32230", - "codeCommune": "32303", - "libelleAcheminement": "PALLANNE", - "nomCommune": "PALLANNE" + "codePostal": "54115", + "codeCommune": "54189", + "libelleAcheminement": "FAVIERES", + "nomCommune": "FAVIERES" }, { - "codePostal": "02000", - "codeCommune": "02037", - "libelleAcheminement": "AULNOIS SOUS LAON", - "nomCommune": "AULNOIS SOUS LAON" + "codePostal": "56880", + "codeCommune": "56164", + "libelleAcheminement": "PLOEREN", + "nomCommune": "PLOEREN" }, { - "codePostal": "61100", - "codeCommune": "61011", - "libelleAcheminement": "AUBUSSON", - "nomCommune": "AUBUSSON" + "codePostal": "64110", + "codeCommune": "64373", + "libelleAcheminement": "MAZERES LEZONS", + "nomCommune": "MAZERES LEZONS" }, { - "codePostal": "39240", - "codeCommune": "39204", - "libelleAcheminement": "DRAMELAY", - "nomCommune": "DRAMELAY" + "codePostal": "11320", + "codeCommune": "11002", + "libelleAcheminement": "AIROUX", + "nomCommune": "AIROUX" }, { - "codePostal": "32140", - "codeCommune": "32304", - "libelleAcheminement": "PANASSAC", - "nomCommune": "PANASSAC" + "codePostal": "64510", + "codeCommune": "64133", + "libelleAcheminement": "BOEIL BEZING", + "nomCommune": "BOEIL BEZING" }, { - "codePostal": "02140", - "codeCommune": "02044", - "libelleAcheminement": "BANCIGNY", - "nomCommune": "BANCIGNY" + "codePostal": "54540", + "codeCommune": "54191", + "libelleAcheminement": "FENNEVILLER", + "nomCommune": "FENNEVILLER" }, { - "codePostal": "61240", - "codeCommune": "61017", - "libelleAcheminement": "LES AUTHIEUX DU PUITS", - "nomCommune": "LES AUTHIEUX DU PUITS" + "codePostal": "56340", + "codeCommune": "56168", + "libelleAcheminement": "PLOUHARNEL", + "nomCommune": "PLOUHARNEL" }, { - "codePostal": "39700", - "codeCommune": "39205", - "libelleAcheminement": "ECLANS NENON", - "nomCommune": "ECLANS NENON" + "codePostal": "64410", + "codeCommune": "64383", + "libelleAcheminement": "MIALOS", + "nomCommune": "MIALOS" }, { - "codePostal": "32320", - "codeCommune": "32315", - "libelleAcheminement": "PEYRUSSE GRANDE", - "nomCommune": "PEYRUSSE GRANDE" + "codePostal": "11240", + "codeCommune": "11004", + "libelleAcheminement": "ALAIGNE", + "nomCommune": "ALAIGNE" }, { - "codePostal": "02000", - "codeCommune": "02046", - "libelleAcheminement": "BARENTON BUGNY", - "nomCommune": "BARENTON BUGNY" + "codePostal": "64340", + "codeCommune": "64140", + "libelleAcheminement": "BOUCAU", + "nomCommune": "BOUCAU" }, { - "codePostal": "61470", - "codeCommune": "61018", - "libelleAcheminement": "AVERNES ST GOURGON", - "nomCommune": "AVERNES ST GOURGON" + "codePostal": "54470", + "codeCommune": "54200", + "libelleAcheminement": "FLIREY", + "nomCommune": "FLIREY" }, { - "codePostal": "39270", - "codeCommune": "39207", - "libelleAcheminement": "ECRILLE", - "nomCommune": "ECRILLE" + "codePostal": "56500", + "codeCommune": "56174", + "libelleAcheminement": "PLUMELIN", + "nomCommune": "PLUMELIN" }, { - "codePostal": "32290", - "codeCommune": "32325", - "libelleAcheminement": "POUYDRAGUIN", - "nomCommune": "POUYDRAGUIN" + "codePostal": "64350", + "codeCommune": "64390", + "libelleAcheminement": "MONCAUP", + "nomCommune": "MONCAUP" }, { - "codePostal": "02380", - "codeCommune": "02052", - "libelleAcheminement": "BASSOLES AULERS", - "nomCommune": "BASSOLES AULERS" + "codePostal": "11330", + "codeCommune": "11007", + "libelleAcheminement": "ALBIERES", + "nomCommune": "ALBIERES" }, { - "codePostal": "61150", - "codeCommune": "61020", - "libelleAcheminement": "AVOINE", - "nomCommune": "AVOINE" + "codePostal": "64230", + "codeCommune": "64142", + "libelleAcheminement": "BOUGARBER", + "nomCommune": "BOUGARBER" }, { - "codePostal": "39150", - "codeCommune": "39208", - "libelleAcheminement": "ENTRE DEUX MONTS", - "nomCommune": "ENTRE DEUX MONTS" + "codePostal": "54930", + "codeCommune": "54207", + "libelleAcheminement": "FRAISNES EN SAINTOIS", + "nomCommune": "FRAISNES EN SAINTOIS" }, { - "codePostal": "32390", - "codeCommune": "32337", - "libelleAcheminement": "PUYSEGUR", - "nomCommune": "PUYSEGUR" + "codePostal": "56400", + "codeCommune": "56176", + "libelleAcheminement": "PLUNERET", + "nomCommune": "PLUNERET" }, { - "codePostal": "02500", - "codeCommune": "02055", - "libelleAcheminement": "BEAUME", - "nomCommune": "BEAUME" + "codePostal": "64460", + "codeCommune": "64395", + "libelleAcheminement": "MONSEGUR", + "nomCommune": "MONSEGUR" }, { - "codePostal": "61560", - "codeCommune": "61029", - "libelleAcheminement": "BAZOCHES SUR HOENE", - "nomCommune": "BAZOCHES SUR HOENE" + "codePostal": "11190", + "codeCommune": "11015", + "libelleAcheminement": "ARQUES", + "nomCommune": "ARQUES" }, { - "codePostal": "39160", - "codeCommune": "39209", - "libelleAcheminement": "VAL D EPY", - "nomCommune": "VAL D EPY" + "codePostal": "64800", + "codeCommune": "64148", + "libelleAcheminement": "BRUGES CAPBIS MIFAGET", + "nomCommune": "BRUGES CAPBIS MIFAGET" }, { - "codePostal": "32430", - "codeCommune": "32349", - "libelleAcheminement": "ROQUELAURE ST AUBIN", - "nomCommune": "ROQUELAURE ST AUBIN" + "codePostal": "54830", + "codeCommune": "54209", + "libelleAcheminement": "FRANCONVILLE", + "nomCommune": "FRANCONVILLE" }, { - "codePostal": "02300", - "codeCommune": "02056", - "libelleAcheminement": "BEAUMONT EN BEINE", - "nomCommune": "BEAUMONT EN BEINE" + "codePostal": "56310", + "codeCommune": "56188", + "libelleAcheminement": "QUISTINIC", + "nomCommune": "QUISTINIC" }, { - "codePostal": "61270", - "codeCommune": "61032", - "libelleAcheminement": "BEAUFAI", - "nomCommune": "BEAUFAI" + "codePostal": "64370", + "codeCommune": "64406", + "libelleAcheminement": "MORLANNE", + "nomCommune": "MORLANNE" }, { - "codePostal": "39300", - "codeCommune": "39210", - "libelleAcheminement": "EQUEVILLON", - "nomCommune": "EQUEVILLON" + "codePostal": "11800", + "codeCommune": "11027", + "libelleAcheminement": "BARBAIRA", + "nomCommune": "BARBAIRA" }, { - "codePostal": "32190", - "codeCommune": "32352", - "libelleAcheminement": "ROZES", - "nomCommune": "ROZES" + "codePostal": "64800", + "codeCommune": "64148", + "libelleAcheminement": "BRUGES CAPBIS MIFAGET", + "nomCommune": "BRUGES CAPBIS MIFAGET" }, { - "codePostal": "02590", - "codeCommune": "02060", - "libelleAcheminement": "BEAUVOIS EN VERMANDOIS", - "nomCommune": "BEAUVOIS EN VERMANDOIS" + "codePostal": "54740", + "codeCommune": "54221", + "libelleAcheminement": "GERBECOURT ET HAPLEMONT", + "nomCommune": "GERBECOURT ET HAPLEMONT" }, { - "codePostal": "61130", - "codeCommune": "61038", - "libelleAcheminement": "BELLEME", - "nomCommune": "BELLEME" + "codePostal": "56580", + "codeCommune": "56198", + "libelleAcheminement": "ROHAN", + "nomCommune": "ROHAN" }, { - "codePostal": "39800", - "codeCommune": "39222", - "libelleAcheminement": "FAY EN MONTAGNE", - "nomCommune": "FAY EN MONTAGNE" + "codePostal": "64190", + "codeCommune": "64412", + "libelleAcheminement": "NABAS", + "nomCommune": "NABAS" }, { - "codePostal": "32420", - "codeCommune": "32353", - "libelleAcheminement": "SABAILLAN", - "nomCommune": "SABAILLAN" + "codePostal": "11340", + "codeCommune": "11028", + "libelleAcheminement": "BELCAIRE", + "nomCommune": "BELCAIRE" }, { - "codePostal": "02420", - "codeCommune": "02065", - "libelleAcheminement": "BELLICOURT", - "nomCommune": "BELLICOURT" + "codePostal": "64800", + "codeCommune": "64148", + "libelleAcheminement": "BRUGES CAPBIS MIFAGET", + "nomCommune": "BRUGES CAPBIS MIFAGET" }, { - "codePostal": "61500", - "codeCommune": "61051", - "libelleAcheminement": "BOITRON", - "nomCommune": "BOITRON" + "codePostal": "54830", + "codeCommune": "54228", + "libelleAcheminement": "GIRIVILLER", + "nomCommune": "GIRIVILLER" }, { - "codePostal": "39140", - "codeCommune": "39229", - "libelleAcheminement": "FONTAINEBRUX", - "nomCommune": "FONTAINEBRUX" + "codePostal": "56580", + "codeCommune": "56198", + "libelleAcheminement": "ROHAN", + "nomCommune": "ROHAN" }, { - "codePostal": "32700", - "codeCommune": "32364", - "libelleAcheminement": "ST AVIT FRANDAT", - "nomCommune": "ST AVIT FRANDAT" + "codePostal": "64800", + "codeCommune": "64417", + "libelleAcheminement": "NAY", + "nomCommune": "NAY" }, { - "codePostal": "02820", - "codeCommune": "02072", - "libelleAcheminement": "BERRIEUX", - "nomCommune": "BERRIEUX" + "codePostal": "11410", + "codeCommune": "11030", + "libelleAcheminement": "BELFLOU", + "nomCommune": "BELFLOU" }, { - "codePostal": "61220", - "codeCommune": "61063", - "libelleAcheminement": "BRIOUZE", - "nomCommune": "BRIOUZE" + "codePostal": "64220", + "codeCommune": "64155", + "libelleAcheminement": "BUSTINCE IRIBERRY", + "nomCommune": "BUSTINCE IRIBERRY" }, { - "codePostal": "39100", - "codeCommune": "39233", - "libelleAcheminement": "FOUCHERANS", - "nomCommune": "FOUCHERANS" + "codePostal": "54122", + "codeCommune": "54229", + "libelleAcheminement": "GLONVILLE", + "nomCommune": "GLONVILLE" }, { - "codePostal": "32380", - "codeCommune": "32370", - "libelleAcheminement": "ST CLAR", - "nomCommune": "ST CLAR" + "codePostal": "56110", + "codeCommune": "56199", + "libelleAcheminement": "ROUDOUALLEC", + "nomCommune": "ROUDOUALLEC" }, { - "codePostal": "02210", - "codeCommune": "02082", - "libelleAcheminement": "BEUGNEUX", - "nomCommune": "BEUGNEUX" + "codePostal": "64150", + "codeCommune": "64418", + "libelleAcheminement": "NOGUERES", + "nomCommune": "NOGUERES" }, { - "codePostal": "61100", - "codeCommune": "61078", - "libelleAcheminement": "CERISY BELLE ETOILE", - "nomCommune": "CERISY BELLE ETOILE" + "codePostal": "11500", + "codeCommune": "11035", + "libelleAcheminement": "BELVIANES ET CAVIRAC", + "nomCommune": "BELVIANES ET CAVIRAC" }, { - "codePostal": "39230", - "codeCommune": "39234", - "libelleAcheminement": "FOULENAY", - "nomCommune": "FOULENAY" + "codePostal": "64470", + "codeCommune": "64162", + "libelleAcheminement": "CAMOU CIHIGUE", + "nomCommune": "CAMOU CIHIGUE" }, { - "codePostal": "32450", - "codeCommune": "32374", - "libelleAcheminement": "ST ELIX D ASTARAC", - "nomCommune": "ST ELIX D ASTARAC" + "codePostal": "54840", + "codeCommune": "54232", + "libelleAcheminement": "GONDREVILLE", + "nomCommune": "GONDREVILLE" }, { - "codePostal": "02290", - "codeCommune": "02087", - "libelleAcheminement": "BIEUXY", - "nomCommune": "BIEUXY" + "codePostal": "56500", + "codeCommune": "56204", + "libelleAcheminement": "ST ALLOUESTRE", + "nomCommune": "ST ALLOUESTRE" }, { - "codePostal": "61500", - "codeCommune": "61081", - "libelleAcheminement": "CHAILLOUE", - "nomCommune": "CHAILLOUE" + "codePostal": "64390", + "codeCommune": "64428", + "libelleAcheminement": "ORRIULE", + "nomCommune": "ORRIULE" }, { - "codePostal": "39380", - "codeCommune": "39249", - "libelleAcheminement": "GERMIGNEY", - "nomCommune": "GERMIGNEY" + "codePostal": "11700", + "codeCommune": "11042", + "libelleAcheminement": "BLOMAC", + "nomCommune": "BLOMAC" }, { - "codePostal": "32120", - "codeCommune": "32376", - "libelleAcheminement": "STE GEMME", - "nomCommune": "STE GEMME" + "codePostal": "64170", + "codeCommune": "64171", + "libelleAcheminement": "CASTEIDE CAMI", + "nomCommune": "CASTEIDE CAMI" }, { - "codePostal": "02200", - "codeCommune": "02089", - "libelleAcheminement": "BILLY SUR AISNE", - "nomCommune": "BILLY SUR AISNE" + "codePostal": "54260", + "codeCommune": "54236", + "libelleAcheminement": "GRAND FAILLY", + "nomCommune": "GRAND FAILLY" }, { - "codePostal": "61560", - "codeCommune": "61087", - "libelleAcheminement": "CHAMPEAUX SUR SARTHE", - "nomCommune": "CHAMPEAUX SUR SARTHE" + "codePostal": "56480", + "codeCommune": "56209", + "libelleAcheminement": "STE BRIGITTE", + "nomCommune": "STE BRIGITTE" }, { - "codePostal": "39250", - "codeCommune": "39254", - "libelleAcheminement": "GILLOIS", - "nomCommune": "GILLOIS" + "codePostal": "64300", + "codeCommune": "64430", + "libelleAcheminement": "ORTHEZ", + "nomCommune": "ORTHEZ" }, { - "codePostal": "32430", - "codeCommune": "32377", - "libelleAcheminement": "ST GEORGES", - "nomCommune": "ST GEORGES" + "codePostal": "11200", + "codeCommune": "11048", + "libelleAcheminement": "BOUTENAC", + "nomCommune": "BOUTENAC" }, { - "codePostal": "02210", - "codeCommune": "02090", - "libelleAcheminement": "BILLY SUR OURCQ", - "nomCommune": "BILLY SUR OURCQ" + "codePostal": "64460", + "codeCommune": "64173", + "libelleAcheminement": "CASTEIDE DOAT", + "nomCommune": "CASTEIDE DOAT" }, { - "codePostal": "61300", - "codeCommune": "61092", - "libelleAcheminement": "CHANDAI", - "nomCommune": "CHANDAI" + "codePostal": "54120", + "codeCommune": "54243", + "libelleAcheminement": "HABLAINVILLE", + "nomCommune": "HABLAINVILLE" }, { - "codePostal": "39290", - "codeCommune": "39262", - "libelleAcheminement": "GREDISANS", - "nomCommune": "GREDISANS" + "codePostal": "56220", + "codeCommune": "56218", + "libelleAcheminement": "ST GRAVE", + "nomCommune": "ST GRAVE" }, { - "codePostal": "32400", - "codeCommune": "32378", - "libelleAcheminement": "ST GERME", - "nomCommune": "ST GERME" + "codePostal": "64300", + "codeCommune": "64430", + "libelleAcheminement": "ORTHEZ", + "nomCommune": "ORTHEZ" }, { - "codePostal": "02270", - "codeCommune": "02096", - "libelleAcheminement": "BOIS LES PARGNY", - "nomCommune": "BOIS LES PARGNY" + "codePostal": "11300", + "codeCommune": "11053", + "libelleAcheminement": "BRUGAIROLLES", + "nomCommune": "BRUGAIROLLES" }, { - "codePostal": "61800", - "codeCommune": "61093", - "libelleAcheminement": "CHANU", - "nomCommune": "CHANU" + "codePostal": "64460", + "codeCommune": "64174", + "libelleAcheminement": "CASTERA LOUBIX", + "nomCommune": "CASTERA LOUBIX" }, { - "codePostal": "39800", - "codeCommune": "39263", - "libelleAcheminement": "GROZON", - "nomCommune": "GROZON" + "codePostal": "54450", + "codeCommune": "54246", + "libelleAcheminement": "HALLOVILLE", + "nomCommune": "HALLOVILLE" }, { - "codePostal": "32380", - "codeCommune": "32385", - "libelleAcheminement": "ST LEONARD", - "nomCommune": "ST LEONARD" + "codePostal": "56700", + "codeCommune": "56220", + "libelleAcheminement": "STE HELENE", + "nomCommune": "STE HELENE" }, { - "codePostal": "02400", - "codeCommune": "02099", - "libelleAcheminement": "BONNESVALYN", - "nomCommune": "BONNESVALYN" + "codePostal": "64120", + "codeCommune": "64441", + "libelleAcheminement": "PAGOLLE", + "nomCommune": "PAGOLLE" }, { - "codePostal": "61100", - "codeCommune": "61095", - "libelleAcheminement": "LA CHAPELLE BICHE", - "nomCommune": "LA CHAPELLE BICHE" + "codePostal": "11140", + "codeCommune": "11060", + "libelleAcheminement": "CAILLA", + "nomCommune": "CAILLA" }, { - "codePostal": "39100", - "codeCommune": "39270", - "libelleAcheminement": "JOUHE", - "nomCommune": "JOUHE" + "codePostal": "64300", + "codeCommune": "64179", + "libelleAcheminement": "CASTETNER", + "nomCommune": "CASTETNER" }, { - "codePostal": "32300", - "codeCommune": "32394", - "libelleAcheminement": "ST MEDARD", - "nomCommune": "ST MEDARD" + "codePostal": "54330", + "codeCommune": "54247", + "libelleAcheminement": "HAMMEVILLE", + "nomCommune": "HAMMEVILLE" }, { - "codePostal": "02420", - "codeCommune": "02100", - "libelleAcheminement": "BONY", - "nomCommune": "BONY" + "codePostal": "56470", + "codeCommune": "56233", + "libelleAcheminement": "ST PHILIBERT", + "nomCommune": "ST PHILIBERT" }, { - "codePostal": "61410", - "codeCommune": "61096", - "libelleAcheminement": "RIVES D ANDAINE", - "nomCommune": "RIVES D ANDAINE" + "codePostal": "64800", + "codeCommune": "64444", + "libelleAcheminement": "PARDIES PIETAT", + "nomCommune": "PARDIES PIETAT" }, { - "codePostal": "39300", - "codeCommune": "39277", - "libelleAcheminement": "LE LARDERET", - "nomCommune": "LE LARDERET" + "codePostal": "11000", + "codeCommune": "11069", + "libelleAcheminement": "CARCASSONNE", + "nomCommune": "CARCASSONNE" }, { - "codePostal": "32700", - "codeCommune": "32395", - "libelleAcheminement": "STE MERE", - "nomCommune": "STE MERE" + "codePostal": "64370", + "codeCommune": "64181", + "libelleAcheminement": "CASTILLON D ARTHEZ", + "nomCommune": "CASTILLON D ARTHEZ" }, { - "codePostal": "02250", - "codeCommune": "02101", - "libelleAcheminement": "BOSMONT SUR SERRE", - "nomCommune": "BOSMONT SUR SERRE" + "codePostal": "54470", + "codeCommune": "54248", + "libelleAcheminement": "HAMONVILLE", + "nomCommune": "HAMONVILLE" }, { - "codePostal": "61130", - "codeCommune": "61099", - "libelleAcheminement": "LA CHAPELLE SOUEF", - "nomCommune": "LA CHAPELLE SOUEF" + "codePostal": "56350", + "codeCommune": "56239", + "libelleAcheminement": "ST VINCENT SUR OUST", + "nomCommune": "ST VINCENT SUR OUST" }, { - "codePostal": "39360", - "codeCommune": "39280", - "libelleAcheminement": "LARRIVOIRE", - "nomCommune": "LARRIVOIRE" + "codePostal": "64410", + "codeCommune": "64447", + "libelleAcheminement": "PIETS PLASENCE MOUSTROU", + "nomCommune": "PIETS PLASENCE MOUSTROU" }, { - "codePostal": "32130", - "codeCommune": "32410", - "libelleAcheminement": "SAMATAN", - "nomCommune": "SAMATAN" + "codePostal": "11000", + "codeCommune": "11069", + "libelleAcheminement": "CARCASSONNE", + "nomCommune": "CARCASSONNE" }, { - "codePostal": "02160", - "codeCommune": "02106", - "libelleAcheminement": "BOURG ET COMIN", - "nomCommune": "BOURG ET COMIN" + "codePostal": "64230", + "codeCommune": "64183", + "libelleAcheminement": "CAUBIOS LOOS", + "nomCommune": "CAUBIOS LOOS" }, { - "codePostal": "61360", - "codeCommune": "61105", - "libelleAcheminement": "CHEMILLI", - "nomCommune": "CHEMILLI" + "codePostal": "54800", + "codeCommune": "54249", + "libelleAcheminement": "HANNONVILLE SUZEMONT", + "nomCommune": "HANNONVILLE SUZEMONT" }, { - "codePostal": "39300", - "codeCommune": "39281", - "libelleAcheminement": "LE LATET", - "nomCommune": "LE LATET" + "codePostal": "56460", + "codeCommune": "56244", + "libelleAcheminement": "SERENT", + "nomCommune": "SERENT" }, { - "codePostal": "32170", - "codeCommune": "32415", - "libelleAcheminement": "SARRAGUZAN", - "nomCommune": "SARRAGUZAN" + "codePostal": "64190", + "codeCommune": "64459", + "libelleAcheminement": "PRECHACQ NAVARRENX", + "nomCommune": "PRECHACQ NAVARRENX" }, { - "codePostal": "02300", - "codeCommune": "02107", - "libelleAcheminement": "BOURGUIGNON SOUS COUCY", - "nomCommune": "BOURGUIGNON SOUS COUCY" + "codePostal": "11170", + "codeCommune": "11070", + "libelleAcheminement": "CARLIPA", + "nomCommune": "CARLIPA" }, { - "codePostal": "61400", - "codeCommune": "61113", - "libelleAcheminement": "COMBLOT", - "nomCommune": "COMBLOT" + "codePostal": "64190", + "codeCommune": "64186", + "libelleAcheminement": "CHARRE", + "nomCommune": "CHARRE" }, { - "codePostal": "39250", - "codeCommune": "39282", - "libelleAcheminement": "LA LATETTE", - "nomCommune": "LA LATETTE" + "codePostal": "54860", + "codeCommune": "54254", + "libelleAcheminement": "HAUCOURT MOULAINE", + "nomCommune": "HAUCOURT MOULAINE" }, { - "codePostal": "32500", - "codeCommune": "32417", - "libelleAcheminement": "LA SAUVETAT", - "nomCommune": "LA SAUVETAT" + "codePostal": "56450", + "codeCommune": "56251", + "libelleAcheminement": "THEIX NOYALO", + "nomCommune": "THEIX NOYALO" }, { - "codePostal": "02110", - "codeCommune": "02112", - "libelleAcheminement": "BRANCOURT LE GRAND", - "nomCommune": "BRANCOURT LE GRAND" + "codePostal": "64400", + "codeCommune": "64460", + "libelleAcheminement": "PRECILHON", + "nomCommune": "PRECILHON" }, { - "codePostal": "61200", - "codeCommune": "61114", - "libelleAcheminement": "COMMEAUX", - "nomCommune": "COMMEAUX" + "codePostal": "11160", + "codeCommune": "11081", + "libelleAcheminement": "CAUNES MINERVOIS", + "nomCommune": "CAUNES MINERVOIS" }, { - "codePostal": "39210", - "codeCommune": "39288", - "libelleAcheminement": "LAVIGNY", - "nomCommune": "LAVIGNY" + "codePostal": "64330", + "codeCommune": "64190", + "libelleAcheminement": "CLARACQ", + "nomCommune": "CLARACQ" }, { - "codePostal": "32220", - "codeCommune": "32420", - "libelleAcheminement": "SAUVIMONT", - "nomCommune": "SAUVIMONT" + "codePostal": "54830", + "codeCommune": "54255", + "libelleAcheminement": "HAUDONVILLE", + "nomCommune": "HAUDONVILLE" }, { - "codePostal": "02400", - "codeCommune": "02114", - "libelleAcheminement": "BRASLES", - "nomCommune": "BRASLES" + "codePostal": "56250", + "codeCommune": "56255", + "libelleAcheminement": "TREFFLEAN", + "nomCommune": "TREFFLEAN" }, { - "codePostal": "61400", - "codeCommune": "61118", - "libelleAcheminement": "CORBON", - "nomCommune": "CORBON" + "codePostal": "64270", + "codeCommune": "64462", + "libelleAcheminement": "RAMOUS", + "nomCommune": "RAMOUS" }, { - "codePostal": "39260", - "codeCommune": "39289", - "libelleAcheminement": "LECT", - "nomCommune": "LECT" + "codePostal": "11300", + "codeCommune": "11090", + "libelleAcheminement": "CEPIE", + "nomCommune": "CEPIE" }, { - "codePostal": "32230", - "codeCommune": "32422", - "libelleAcheminement": "SCIEURAC ET FLOURES", - "nomCommune": "SCIEURAC ET FLOURES" + "codePostal": "64330", + "codeCommune": "64192", + "libelleAcheminement": "CONCHEZ DE BEARN", + "nomCommune": "CONCHEZ DE BEARN" }, { - "codePostal": "02480", - "codeCommune": "02117", - "libelleAcheminement": "BRAY ST CHRISTOPHE", - "nomCommune": "BRAY ST CHRISTOPHE" + "codePostal": "54370", + "codeCommune": "54258", + "libelleAcheminement": "HENAMENIL", + "nomCommune": "HENAMENIL" }, { - "codePostal": "61390", - "codeCommune": "61133", - "libelleAcheminement": "COURTOMER", - "nomCommune": "COURTOMER" + "codePostal": "56490", + "codeCommune": "56257", + "libelleAcheminement": "LA TRINITE PORHOET", + "nomCommune": "LA TRINITE PORHOET" }, { - "codePostal": "39240", - "codeCommune": "39290", - "libelleAcheminement": "VALZIN EN PETITE MONTAGNE", - "nomCommune": "VALZIN EN PETITE MONTAGNE" + "codePostal": "64300", + "codeCommune": "64479", + "libelleAcheminement": "ST GIRONS EN BEARN", + "nomCommune": "ST GIRONS EN BEARN" }, { - "codePostal": "32190", - "codeCommune": "32423", - "libelleAcheminement": "SEAILLES", - "nomCommune": "SEAILLES" + "codePostal": "11230", + "codeCommune": "11091", + "libelleAcheminement": "CHALABRE", + "nomCommune": "CHALABRE" }, { - "codePostal": "02240", - "codeCommune": "02123", - "libelleAcheminement": "BRISSAY CHOIGNY", - "nomCommune": "BRISSAY CHOIGNY" + "codePostal": "64440", + "codeCommune": "64204", + "libelleAcheminement": "EAUX BONNES", + "nomCommune": "EAUX BONNES" }, { - "codePostal": "61230", - "codeCommune": "61138", - "libelleAcheminement": "CROISILLES", - "nomCommune": "CROISILLES" + "codePostal": "54450", + "codeCommune": "54259", + "libelleAcheminement": "HERBEVILLER", + "nomCommune": "HERBEVILLER" }, { - "codePostal": "39300", - "codeCommune": "39292", - "libelleAcheminement": "LENT", - "nomCommune": "LENT" + "codePostal": "56400", + "codeCommune": "56262", + "libelleAcheminement": "LE BONO", + "nomCommune": "BONO" }, { - "codePostal": "32400", - "codeCommune": "32424", - "libelleAcheminement": "SEGOS", - "nomCommune": "SEGOS" + "codePostal": "64330", + "codeCommune": "64486", + "libelleAcheminement": "ST JEAN POUDGE", + "nomCommune": "ST JEAN POUDGE" }, { - "codePostal": "02360", - "codeCommune": "02126", - "libelleAcheminement": "BRUNEHAMEL", - "nomCommune": "BRUNEHAMEL" + "codePostal": "11250", + "codeCommune": "11094", + "libelleAcheminement": "CLERMONT SUR LAUQUET", + "nomCommune": "CLERMONT SUR LAUQUET" }, { - "codePostal": "61250", - "codeCommune": "61143", - "libelleAcheminement": "DAMIGNY", - "nomCommune": "DAMIGNY" + "codePostal": "64270", + "codeCommune": "64205", + "libelleAcheminement": "ESCOS", + "nomCommune": "ESCOS" }, { - "codePostal": "39570", - "codeCommune": "39306", - "libelleAcheminement": "MACORNAY", - "nomCommune": "MACORNAY" + "codePostal": "54930", + "codeCommune": "54268", + "libelleAcheminement": "HOUSSEVILLE", + "nomCommune": "HOUSSEVILLE" }, { - "codePostal": "32260", - "codeCommune": "32426", - "libelleAcheminement": "SEISSAN", - "nomCommune": "SEISSAN" + "codePostal": "57440", + "codeCommune": "57012", + "libelleAcheminement": "ALGRANGE", + "nomCommune": "ALGRANGE" }, { - "codePostal": "02860", - "codeCommune": "02128", - "libelleAcheminement": "BRUYERES ET MONTBERAULT", - "nomCommune": "BRUYERES ET MONTBERAULT" + "codePostal": "64220", + "codeCommune": "64492", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "61700", - "codeCommune": "61145", - "libelleAcheminement": "DOMFRONT EN POIRAIE", - "nomCommune": "DOMFRONT EN POIRAIE" + "codePostal": "11700", + "codeCommune": "11095", + "libelleAcheminement": "COMIGNE", + "nomCommune": "COMIGNE" }, { - "codePostal": "39270", - "codeCommune": "39314", - "libelleAcheminement": "MARNEZIA", - "nomCommune": "MARNEZIA" + "codePostal": "64160", + "codeCommune": "64212", + "libelleAcheminement": "ESPECHEDE", + "nomCommune": "ESPECHEDE" }, { - "codePostal": "32160", - "codeCommune": "32440", - "libelleAcheminement": "TASQUE", - "nomCommune": "TASQUE" + "codePostal": "54114", + "codeCommune": "54276", + "libelleAcheminement": "JEANDELAINCOURT", + "nomCommune": "JEANDELAINCOURT" }, { - "codePostal": "02220", - "codeCommune": "02129", - "libelleAcheminement": "BRUYS", - "nomCommune": "BRUYS" + "codePostal": "57730", + "codeCommune": "57015", + "libelleAcheminement": "ALTVILLER", + "nomCommune": "ALTVILLER" }, { - "codePostal": "61370", - "codeCommune": "61150", - "libelleAcheminement": "ECHAUFFOUR", - "nomCommune": "ECHAUFFOUR" + "codePostal": "64800", + "codeCommune": "64498", + "libelleAcheminement": "ST VINCENT", + "nomCommune": "ST VINCENT" }, { - "codePostal": "39130", - "codeCommune": "39322", - "libelleAcheminement": "MENETRUX EN JOUX", - "nomCommune": "MENETRUX EN JOUX" + "codePostal": "11600", + "codeCommune": "11099", + "libelleAcheminement": "CONQUES SUR ORBIEL", + "nomCommune": "CONQUES SUR ORBIEL" }, { - "codePostal": "32700", - "codeCommune": "32442", - "libelleAcheminement": "TERRAUBE", - "nomCommune": "TERRAUBE" + "codePostal": "64400", + "codeCommune": "64217", + "libelleAcheminement": "ESQUIULE", + "nomCommune": "ESQUIULE" }, { - "codePostal": "02880", - "codeCommune": "02131", - "libelleAcheminement": "BUCY LE LONG", - "nomCommune": "BUCY LE LONG" + "codePostal": "54700", + "codeCommune": "54279", + "libelleAcheminement": "JEZAINVILLE", + "nomCommune": "JEZAINVILLE" }, { - "codePostal": "61150", - "codeCommune": "61153", - "libelleAcheminement": "ECOUCHE LES VALLEES", - "nomCommune": "ECOUCHE LES VALLEES" + "codePostal": "57360", + "codeCommune": "57019", + "libelleAcheminement": "AMNEVILLE LES THERMES", + "nomCommune": "AMNEVILLE" }, { - "codePostal": "39270", - "codeCommune": "39324", - "libelleAcheminement": "MERONA", - "nomCommune": "MERONA" + "codePostal": "64270", + "codeCommune": "64499", + "libelleAcheminement": "SALIES DE BEARN", + "nomCommune": "SALIES DE BEARN" }, { - "codePostal": "32160", - "codeCommune": "32445", - "libelleAcheminement": "TIESTE URAGNOUX", - "nomCommune": "TIESTE URAGNOUX" + "codePostal": "11230", + "codeCommune": "11100", + "libelleAcheminement": "CORBIERES", + "nomCommune": "CORBIERES" }, { - "codePostal": "02350", - "codeCommune": "02133", - "libelleAcheminement": "BUCY LES PIERREPONT", - "nomCommune": "BUCY LES PIERREPONT" + "codePostal": "64470", + "codeCommune": "64222", + "libelleAcheminement": "ETCHEBAR", + "nomCommune": "ETCHEBAR" }, { - "codePostal": "61200", - "codeCommune": "61153", - "libelleAcheminement": "ECOUCHE LES VALLEES", - "nomCommune": "ECOUCHE LES VALLEES" + "codePostal": "54620", + "codeCommune": "54282", + "libelleAcheminement": "JOPPECOURT", + "nomCommune": "JOPPECOURT" }, { - "codePostal": "39250", - "codeCommune": "39329", - "libelleAcheminement": "MIEGES", - "nomCommune": "MIEGES" + "codePostal": "57480", + "codeCommune": "57026", + "libelleAcheminement": "APACH", + "nomCommune": "APACH" }, { - "codePostal": "32430", - "codeCommune": "32448", - "libelleAcheminement": "TOUGET", - "nomCommune": "TOUGET" + "codePostal": "64300", + "codeCommune": "64500", + "libelleAcheminement": "SALLES MONGISCARD", + "nomCommune": "SALLES MONGISCARD" }, { - "codePostal": "02300", - "codeCommune": "02140", - "libelleAcheminement": "CAMELIN", - "nomCommune": "CAMELIN" + "codePostal": "11250", + "codeCommune": "11102", + "libelleAcheminement": "COUFFOULENS", + "nomCommune": "COUFFOULENS" }, { - "codePostal": "61600", - "codeCommune": "61158", - "libelleAcheminement": "FAVEROLLES", - "nomCommune": "FAVEROLLES" + "codePostal": "64110", + "codeCommune": "64237", + "libelleAcheminement": "GELOS", + "nomCommune": "GELOS" }, { - "codePostal": "39250", - "codeCommune": "39329", - "libelleAcheminement": "MIEGES", - "nomCommune": "MIEGES" + "codePostal": "54800", + "codeCommune": "54283", + "libelleAcheminement": "JOUAVILLE", + "nomCommune": "JOUAVILLE" }, { - "codePostal": "32400", - "codeCommune": "32463", - "libelleAcheminement": "VIELLA", - "nomCommune": "VIELLA" + "codePostal": "57130", + "codeCommune": "57032", + "libelleAcheminement": "ARS SUR MOSELLE", + "nomCommune": "ARS SUR MOSELLE" }, { - "codePostal": "02420", - "codeCommune": "02143", - "libelleAcheminement": "LE CATELET", - "nomCommune": "LE CATELET" + "codePostal": "64310", + "codeCommune": "64504", + "libelleAcheminement": "SARE", + "nomCommune": "SARE" }, { - "codePostal": "61380", - "codeCommune": "61162", - "libelleAcheminement": "LA FERRIERE AU DOYEN", - "nomCommune": "LA FERRIERE AU DOYEN" + "codePostal": "11110", + "codeCommune": "11106", + "libelleAcheminement": "COURSAN", + "nomCommune": "COURSAN" }, { - "codePostal": "39250", - "codeCommune": "39331", - "libelleAcheminement": "MIGNOVILLARD", - "nomCommune": "MIGNOVILLARD" + "codePostal": "64240", + "codeCommune": "64256", + "libelleAcheminement": "HASPARREN", + "nomCommune": "HASPARREN" }, { - "codePostal": "32730", - "codeCommune": "32464", - "libelleAcheminement": "VILLECOMTAL SUR ARROS", - "nomCommune": "VILLECOMTAL SUR ARROS" + "codePostal": "54490", + "codeCommune": "54284", + "libelleAcheminement": "JOUDREVILLE", + "nomCommune": "JOUDREVILLE" }, { - "codePostal": "02370", - "codeCommune": "02148", - "libelleAcheminement": "CELLES SUR AISNE", - "nomCommune": "CELLES SUR AISNE" + "codePostal": "57170", + "codeCommune": "57036", + "libelleAcheminement": "ATTILLONCOURT", + "nomCommune": "ATTILLONCOURT" }, { - "codePostal": "61450", - "codeCommune": "61163", - "libelleAcheminement": "LA FERRIERE AUX ETANGS", - "nomCommune": "LA FERRIERE AUX ETANGS" + "codePostal": "64400", + "codeCommune": "64508", + "libelleAcheminement": "SAUCEDE", + "nomCommune": "SAUCEDE" }, { - "codePostal": "39290", - "codeCommune": "39335", - "libelleAcheminement": "MOISSEY", - "nomCommune": "MOISSEY" + "codePostal": "11230", + "codeCommune": "11107", + "libelleAcheminement": "COURTAULY", + "nomCommune": "COURTAULY" }, { - "codePostal": "32200", - "codeCommune": "32467", - "libelleAcheminement": "ST CAPRAIS", - "nomCommune": "ST CAPRAIS" + "codePostal": "64800", + "codeCommune": "64257", + "libelleAcheminement": "HAUT DE BOSDARROS", + "nomCommune": "HAUT DE BOSDARROS" }, { - "codePostal": "02320", - "codeCommune": "02153", - "libelleAcheminement": "CESSIERES SUZY", - "nomCommune": "CESSIERES SUZY" + "codePostal": "54800", + "codeCommune": "54286", + "libelleAcheminement": "LABRY", + "nomCommune": "LABRY" }, { - "codePostal": "61550", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" + "codePostal": "57590", + "codeCommune": "57040", + "libelleAcheminement": "AULNOIS SUR SEILLE", + "nomCommune": "AULNOIS SUR SEILLE" }, { - "codePostal": "39600", - "codeCommune": "39337", - "libelleAcheminement": "MOLAMBOZ", - "nomCommune": "MOLAMBOZ" + "codePostal": "64470", + "codeCommune": "64509", + "libelleAcheminement": "SAUGUIS ST ETIENNE", + "nomCommune": "SAUGUIS ST ETIENNE" }, { - "codePostal": "32140", - "codeCommune": "32468", - "libelleAcheminement": "AUSSOS", - "nomCommune": "AUSSOS" + "codePostal": "11220", + "codeCommune": "11110", + "libelleAcheminement": "COUSTOUGE", + "nomCommune": "COUSTOUGE" }, { - "codePostal": "02270", - "codeCommune": "02156", - "libelleAcheminement": "CHALANDRY", - "nomCommune": "CHALANDRY" + "codePostal": "64680", + "codeCommune": "64261", + "libelleAcheminement": "HERRERE", + "nomCommune": "HERRERE" }, { - "codePostal": "61100", - "codeCommune": "61169", - "libelleAcheminement": "FLERS", - "nomCommune": "FLERS" + "codePostal": "54120", + "codeCommune": "54287", + "libelleAcheminement": "LACHAPELLE", + "nomCommune": "LACHAPELLE" }, { - "codePostal": "39380", - "codeCommune": "39350", - "libelleAcheminement": "MONTBARREY", - "nomCommune": "MONTBARREY" + "codePostal": "57300", + "codeCommune": "57043", + "libelleAcheminement": "AY SUR MOSELLE", + "nomCommune": "AY SUR MOSELLE" }, { - "codePostal": "33810", - "codeCommune": "33004", - "libelleAcheminement": "AMBES", - "nomCommune": "AMBES" + "codePostal": "64160", + "codeCommune": "64515", + "libelleAcheminement": "SEDZE MAUBECQ", + "nomCommune": "SEDZE MAUBECQ" }, { - "codePostal": "02240", - "codeCommune": "02170", - "libelleAcheminement": "CHATILLON SUR OISE", - "nomCommune": "CHATILLON SUR OISE" + "codePostal": "11200", + "codeCommune": "11111", + "libelleAcheminement": "CRUSCADES", + "nomCommune": "CRUSCADES" }, { - "codePostal": "61200", - "codeCommune": "61170", - "libelleAcheminement": "FLEURE", - "nomCommune": "FLEURE" + "codePostal": "64130", + "codeCommune": "64268", + "libelleAcheminement": "IDAUX MENDY", + "nomCommune": "IDAUX MENDY" }, { - "codePostal": "39260", - "codeCommune": "39351", - "libelleAcheminement": "MONTCUSEL", - "nomCommune": "MONTCUSEL" + "codePostal": "54115", + "codeCommune": "54291", + "libelleAcheminement": "LALOEUF", + "nomCommune": "LALOEUF" }, { - "codePostal": "33640", - "codeCommune": "33007", - "libelleAcheminement": "ARBANATS", - "nomCommune": "ARBANATS" + "codePostal": "57590", + "codeCommune": "57045", + "libelleAcheminement": "BACOURT", + "nomCommune": "BACOURT" }, { - "codePostal": "02300", - "codeCommune": "02173", - "libelleAcheminement": "CHAUNY", - "nomCommune": "CHAUNY" + "codePostal": "64170", + "codeCommune": "64521", + "libelleAcheminement": "SERRES STE MARIE", + "nomCommune": "SERRES STE MARIE" }, { - "codePostal": "61120", - "codeCommune": "61180", - "libelleAcheminement": "FRESNAY LE SAMSON", - "nomCommune": "FRESNAY LE SAMSON" + "codePostal": "11190", + "codeCommune": "11112", + "libelleAcheminement": "CUBIERES SUR CINOBLE", + "nomCommune": "CUBIERES SUR CINOBLE" }, { - "codePostal": "39800", - "codeCommune": "39354", - "libelleAcheminement": "MONTHOLIER", - "nomCommune": "MONTHOLIER" + "codePostal": "64250", + "codeCommune": "64279", + "libelleAcheminement": "ITXASSOU", + "nomCommune": "ITXASSOU" }, { - "codePostal": "33760", - "codeCommune": "33008", - "libelleAcheminement": "PORTE DE BENAUGE", - "nomCommune": "PORTE DE BENAUGE" + "codePostal": "54610", + "codeCommune": "54313", + "libelleAcheminement": "LETRICOURT", + "nomCommune": "LETRICOURT" }, { - "codePostal": "02220", - "codeCommune": "02179", - "libelleAcheminement": "CHERY CHARTREUVE", - "nomCommune": "CHERY CHARTREUVE" + "codePostal": "57050", + "codeCommune": "57049", + "libelleAcheminement": "LE BAN ST MARTIN", + "nomCommune": "LE BAN ST MARTIN" }, { - "codePostal": "61230", - "codeCommune": "61181", - "libelleAcheminement": "GACE", - "nomCommune": "GACE" + "codePostal": "64190", + "codeCommune": "64530", + "libelleAcheminement": "SUSMIOU", + "nomCommune": "SUSMIOU" }, { - "codePostal": "39600", - "codeCommune": "39355", - "libelleAcheminement": "MONTIGNY LES ARSURES", - "nomCommune": "MONTIGNY LES ARSURES" + "codePostal": "11350", + "codeCommune": "11113", + "libelleAcheminement": "CUCUGNAN", + "nomCommune": "CUCUGNAN" }, { - "codePostal": "33760", - "codeCommune": "33008", - "libelleAcheminement": "PORTE DE BENAUGE", - "nomCommune": "PORTE DE BENAUGE" + "codePostal": "64190", + "codeCommune": "64281", + "libelleAcheminement": "JASSES", + "nomCommune": "JASSES" }, { - "codePostal": "02130", - "codeCommune": "02193", - "libelleAcheminement": "CIERGES", - "nomCommune": "CIERGES" + "codePostal": "54470", + "codeCommune": "54317", + "libelleAcheminement": "LIRONVILLE", + "nomCommune": "LIRONVILLE" }, { - "codePostal": "61270", - "codeCommune": "61187", - "libelleAcheminement": "LES GENETTES", - "nomCommune": "LES GENETTES" + "codePostal": "57830", + "codeCommune": "57050", + "libelleAcheminement": "BARCHAIN", + "nomCommune": "BARCHAIN" }, { - "codePostal": "39160", - "codeCommune": "39378", - "libelleAcheminement": "LES TROIS CHATEAUX", - "nomCommune": "LES TROIS CHATEAUX" + "codePostal": "64190", + "codeCommune": "64531", + "libelleAcheminement": "TABAILLE USQUAIN", + "nomCommune": "TABAILLE USQUAIN" }, { - "codePostal": "33740", - "codeCommune": "33011", - "libelleAcheminement": "ARES", - "nomCommune": "ARES" + "codePostal": "11330", + "codeCommune": "11118", + "libelleAcheminement": "DERNACUEILLETTE", + "nomCommune": "DERNACUEILLETTE" }, { - "codePostal": "02880", - "codeCommune": "02198", - "libelleAcheminement": "CLAMECY", - "nomCommune": "CLAMECY" + "codePostal": "64120", + "codeCommune": "64285", + "libelleAcheminement": "JUXUE", + "nomCommune": "JUXUE" }, { - "codePostal": "61600", - "codeCommune": "61195", - "libelleAcheminement": "LE GRAIS", - "nomCommune": "LE GRAIS" + "codePostal": "54300", + "codeCommune": "54329", + "libelleAcheminement": "LUNEVILLE", + "nomCommune": "LUNEVILLE" }, { - "codePostal": "39160", - "codeCommune": "39378", - "libelleAcheminement": "LES TROIS CHATEAUX", - "nomCommune": "LES TROIS CHATEAUX" + "codePostal": "57450", + "codeCommune": "57052", + "libelleAcheminement": "BARST", + "nomCommune": "BARST" }, { - "codePostal": "33570", - "codeCommune": "33014", - "libelleAcheminement": "LES ARTIGUES DE LUSSAC", - "nomCommune": "LES ARTIGUES DE LUSSAC" + "codePostal": "64240", + "codeCommune": "64546", + "libelleAcheminement": "URT", + "nomCommune": "URT" }, { - "codePostal": "02330", - "codeCommune": "02209", - "libelleAcheminement": "CONDE EN BRIE", - "nomCommune": "CONDE EN BRIE" + "codePostal": "11200", + "codeCommune": "11126", + "libelleAcheminement": "ESCALES", + "nomCommune": "ESCALES" }, { - "codePostal": "61360", - "codeCommune": "61196", - "libelleAcheminement": "BELFORET EN PERCHE", - "nomCommune": "BELFORET EN PERCHE" + "codePostal": "64300", + "codeCommune": "64286", + "libelleAcheminement": "LAA MONDRANS", + "nomCommune": "LAA MONDRANS" }, { - "codePostal": "39120", - "codeCommune": "39385", - "libelleAcheminement": "NEUBLANS ABERGEMENT", - "nomCommune": "NEUBLANS ABERGEMENT" + "codePostal": "54210", + "codeCommune": "54330", + "libelleAcheminement": "LUPCOURT", + "nomCommune": "LUPCOURT" }, { - "codePostal": "33240", - "codeCommune": "33018", - "libelleAcheminement": "VAL DE VIRVEE", - "nomCommune": "VAL DE VIRVEE" + "codePostal": "57530", + "codeCommune": "57055", + "libelleAcheminement": "BAZONCOURT", + "nomCommune": "BAZONCOURT" }, { - "codePostal": "02680", - "codeCommune": "02214", - "libelleAcheminement": "CONTESCOURT", - "nomCommune": "CONTESCOURT" + "codePostal": "64400", + "codeCommune": "64551", + "libelleAcheminement": "VERDETS", + "nomCommune": "VERDETS" }, { - "codePostal": "61250", - "codeCommune": "61202", - "libelleAcheminement": "HAUTERIVE", - "nomCommune": "HAUTERIVE" + "codePostal": "11240", + "codeCommune": "11128", + "libelleAcheminement": "ESCUEILLENS ET ST JUST", + "nomCommune": "ESCUEILLENS ET ST JUST DE BELENGARD" }, { - "codePostal": "39800", - "codeCommune": "39386", - "libelleAcheminement": "NEUVILLEY", - "nomCommune": "NEUVILLEY" + "codePostal": "64270", + "codeCommune": "64291", + "libelleAcheminement": "LABASTIDE VILLEFRANCHE", + "nomCommune": "LABASTIDE VILLEFRANCHE" }, { - "codePostal": "33790", - "codeCommune": "33020", - "libelleAcheminement": "AURIOLLES", - "nomCommune": "AURIOLLES" + "codePostal": "54290", + "codeCommune": "54344", + "libelleAcheminement": "MANGONVILLE", + "nomCommune": "MANGONVILLE" }, { - "codePostal": "02810", - "codeCommune": "02225", - "libelleAcheminement": "COURCHAMPS", - "nomCommune": "COURCHAMPS" + "codePostal": "57830", + "codeCommune": "57056", + "libelleAcheminement": "BEBING", + "nomCommune": "BEBING" }, { - "codePostal": "61250", - "codeCommune": "61203", - "libelleAcheminement": "HELOUP", - "nomCommune": "HELOUP" + "codePostal": "64150", + "codeCommune": "64556", + "libelleAcheminement": "VIELLESEGURE", + "nomCommune": "VIELLESEGURE" }, { - "codePostal": "39300", - "codeCommune": "39389", - "libelleAcheminement": "NEY", - "nomCommune": "NEY" + "codePostal": "11260", + "codeCommune": "11129", + "libelleAcheminement": "ESPERAZA", + "nomCommune": "ESPERAZA" }, { - "codePostal": "33640", - "codeCommune": "33023", - "libelleAcheminement": "AYGUEMORTE LES GRAVES", - "nomCommune": "AYGUEMORTE LES GRAVES" + "codePostal": "64300", + "codeCommune": "64296", + "libelleAcheminement": "LACADEE", + "nomCommune": "LACADEE" }, { - "codePostal": "02200", - "codeCommune": "02226", - "libelleAcheminement": "COURMELLES", - "nomCommune": "COURMELLES" + "codePostal": "54385", + "codeCommune": "54346", + "libelleAcheminement": "MANONCOURT EN WOEVRE", + "nomCommune": "MANONCOURT EN WOEVRE" }, { - "codePostal": "61330", - "codeCommune": "61211", - "libelleAcheminement": "JUVIGNY VAL D ANDAINE", - "nomCommune": "JUVIGNY VAL D ANDAINE" + "codePostal": "57800", + "codeCommune": "57061", + "libelleAcheminement": "BENING LES ST AVOLD", + "nomCommune": "BENING LES ST AVOLD" }, { - "codePostal": "39250", - "codeCommune": "39391", - "libelleAcheminement": "NOZEROY", - "nomCommune": "NOZEROY" + "codePostal": "65690", + "codeCommune": "65010", + "libelleAcheminement": "ANGOS", + "nomCommune": "ANGOS" }, { - "codePostal": "33190", - "codeCommune": "33027", - "libelleAcheminement": "BARIE", - "nomCommune": "BARIE" + "codePostal": "11260", + "codeCommune": "11131", + "libelleAcheminement": "VAL DU FABY", + "nomCommune": "VAL DU FABY" }, { - "codePostal": "02850", - "codeCommune": "02228", - "libelleAcheminement": "COURTEMONT VARENNES", - "nomCommune": "COURTEMONT VARENNES" + "codePostal": "64360", + "codeCommune": "64299", + "libelleAcheminement": "LACOMMANDE", + "nomCommune": "LACOMMANDE" }, { - "codePostal": "61330", - "codeCommune": "61211", - "libelleAcheminement": "JUVIGNY VAL D ANDAINE", - "nomCommune": "JUVIGNY VAL D ANDAINE" + "codePostal": "54385", + "codeCommune": "54348", + "libelleAcheminement": "MANONVILLE", + "nomCommune": "MANONVILLE" }, { - "codePostal": "39700", - "codeCommune": "39396", - "libelleAcheminement": "ORCHAMPS", - "nomCommune": "ORCHAMPS" + "codePostal": "57550", + "codeCommune": "57069", + "libelleAcheminement": "BERVILLER EN MOSELLE", + "nomCommune": "BERVILLER EN MOSELLE" }, { - "codePostal": "33750", - "codeCommune": "33028", - "libelleAcheminement": "BARON", - "nomCommune": "BARON" + "codePostal": "65560", + "codeCommune": "65018", + "libelleAcheminement": "ARBEOST", + "nomCommune": "ARBEOST" }, { - "codePostal": "02130", - "codeCommune": "02233", - "libelleAcheminement": "CRAMAILLE", - "nomCommune": "CRAMAILLE" + "codePostal": "11200", + "codeCommune": "11132", + "libelleAcheminement": "FABREZAN", + "nomCommune": "FABREZAN" }, { - "codePostal": "61300", - "codeCommune": "61214", - "libelleAcheminement": "L AIGLE", - "nomCommune": "L AIGLE" + "codePostal": "64270", + "codeCommune": "64305", + "libelleAcheminement": "LAHONTAN", + "nomCommune": "LAHONTAN" }, { - "codePostal": "39270", - "codeCommune": "39397", - "libelleAcheminement": "ORGELET", - "nomCommune": "ORGELET" + "codePostal": "54300", + "codeCommune": "54349", + "libelleAcheminement": "MANONVILLER", + "nomCommune": "MANONVILLER" }, { - "codePostal": "33190", - "codeCommune": "33031", - "libelleAcheminement": "BASSANNE", - "nomCommune": "BASSANNE" + "codePostal": "57220", + "codeCommune": "57070", + "libelleAcheminement": "BETTANGE", + "nomCommune": "BETTANGE" }, { - "codePostal": "02270", - "codeCommune": "02237", - "libelleAcheminement": "CRECY SUR SERRE", - "nomCommune": "CRECY SUR SERRE" + "codePostal": "65400", + "codeCommune": "65021", + "libelleAcheminement": "ARCIZANS AVANT", + "nomCommune": "ARCIZANS AVANT" }, { - "codePostal": "61240", - "codeCommune": "61225", - "libelleAcheminement": "LIGNERES", - "nomCommune": "LIGNERES" + "codePostal": "11410", + "codeCommune": "11134", + "libelleAcheminement": "FAJAC LA RELENQUE", + "nomCommune": "FAJAC LA RELENQUE" }, { - "codePostal": "39270", - "codeCommune": "39397", - "libelleAcheminement": "ORGELET", - "nomCommune": "ORGELET" + "codePostal": "64150", + "codeCommune": "64306", + "libelleAcheminement": "LAHOURCADE", + "nomCommune": "LAHOURCADE" }, { - "codePostal": "33530", - "codeCommune": "33032", - "libelleAcheminement": "BASSENS", - "nomCommune": "BASSENS" + "codePostal": "54230", + "codeCommune": "54352", + "libelleAcheminement": "MARON", + "nomCommune": "MARON" }, { - "codePostal": "02870", - "codeCommune": "02238", - "libelleAcheminement": "CREPY", - "nomCommune": "CREPY" + "codePostal": "57410", + "codeCommune": "57074", + "libelleAcheminement": "BETTVILLER", + "nomCommune": "BETTVILLER" }, { - "codePostal": "61220", - "codeCommune": "61227", - "libelleAcheminement": "LIGNOU", - "nomCommune": "LIGNOU" + "codePostal": "65400", + "codeCommune": "65022", + "libelleAcheminement": "ARCIZANS DESSUS", + "nomCommune": "ARCIZANS DESSUS" }, { - "codePostal": "39350", - "codeCommune": "39398", - "libelleAcheminement": "OUGNEY", - "nomCommune": "OUGNEY" + "codePostal": "11330", + "codeCommune": "11137", + "libelleAcheminement": "FELINES TERMENES", + "nomCommune": "FELINES TERMENES" }, { - "codePostal": "33230", - "codeCommune": "33034", - "libelleAcheminement": "BAYAS", - "nomCommune": "BAYAS" + "codePostal": "64570", + "codeCommune": "64310", + "libelleAcheminement": "LANNE EN BARETOUS", + "nomCommune": "LANNE EN BARETOUS" }, { - "codePostal": "02650", - "codeCommune": "02239", - "libelleAcheminement": "CREZANCY", - "nomCommune": "CREZANCY" + "codePostal": "54800", + "codeCommune": "54353", + "libelleAcheminement": "MARS LA TOUR", + "nomCommune": "MARS LA TOUR" }, { - "codePostal": "61290", - "codeCommune": "61230", - "libelleAcheminement": "LONGNY LES VILLAGES", - "nomCommune": "LONGNY LES VILLAGES" + "codePostal": "57580", + "codeCommune": "57075", + "libelleAcheminement": "BEUX", + "nomCommune": "BEUX" }, { - "codePostal": "39350", - "codeCommune": "39402", - "libelleAcheminement": "PAGNEY", - "nomCommune": "PAGNEY" + "codePostal": "65230", + "codeCommune": "65026", + "libelleAcheminement": "ARIES ESPENAN", + "nomCommune": "ARIES ESPENAN" }, { - "codePostal": "33710", - "codeCommune": "33035", - "libelleAcheminement": "BAYON SUR GIRONDE", - "nomCommune": "BAYON SUR GIRONDE" + "codePostal": "11510", + "codeCommune": "11144", + "libelleAcheminement": "FITOU", + "nomCommune": "FITOU" }, { - "codePostal": "02800", - "codeCommune": "02260", - "libelleAcheminement": "DANIZY", - "nomCommune": "DANIZY" + "codePostal": "64450", + "codeCommune": "64321", + "libelleAcheminement": "LASCLAVERIES", + "nomCommune": "LASCLAVERIES" }, { - "codePostal": "61110", - "codeCommune": "61241", - "libelleAcheminement": "LA MADELEINE BOUVET", - "nomCommune": "LA MADELEINE BOUVET" + "codePostal": "54300", + "codeCommune": "54373", + "libelleAcheminement": "MONCEL LES LUNEVILLE", + "nomCommune": "MONCEL LES LUNEVILLE" }, { - "codePostal": "39120", - "codeCommune": "39412", - "libelleAcheminement": "PESEUX", - "nomCommune": "PESEUX" + "codePostal": "57630", + "codeCommune": "57077", + "libelleAcheminement": "BEZANGE LA PETITE", + "nomCommune": "BEZANGE LA PETITE" }, { - "codePostal": "33640", - "codeCommune": "33037", - "libelleAcheminement": "BEAUTIRAN", - "nomCommune": "BEAUTIRAN" + "codePostal": "65130", + "codeCommune": "65037", + "libelleAcheminement": "ARTIGUEMY", + "nomCommune": "ARTIGUEMY" }, { - "codePostal": "02350", - "codeCommune": "02274", - "libelleAcheminement": "EBOULEAU", - "nomCommune": "EBOULEAU" + "codePostal": "11700", + "codeCommune": "11148", + "libelleAcheminement": "FONTCOUVERTE", + "nomCommune": "FONTCOUVERTE" }, { - "codePostal": "61350", - "codeCommune": "61248", - "libelleAcheminement": "MANTILLY", - "nomCommune": "MANTILLY" + "codePostal": "64220", + "codeCommune": "64322", + "libelleAcheminement": "LASSE", + "nomCommune": "LASSE" }, { - "codePostal": "39370", - "codeCommune": "39413", - "libelleAcheminement": "LA PESSE", - "nomCommune": "LA PESSE" + "codePostal": "54450", + "codeCommune": "54381", + "libelleAcheminement": "MONTREUX", + "nomCommune": "MONTREUX" }, { - "codePostal": "33410", - "codeCommune": "33040", - "libelleAcheminement": "BEGUEY", - "nomCommune": "BEGUEY" + "codePostal": "57170", + "codeCommune": "57084", + "libelleAcheminement": "BIONCOURT", + "nomCommune": "BIONCOURT" }, { - "codePostal": "02260", - "codeCommune": "02276", - "libelleAcheminement": "ENGLANCOURT", - "nomCommune": "ENGLANCOURT" + "codePostal": "65100", + "codeCommune": "65040", + "libelleAcheminement": "ASPIN EN LAVEDAN", + "nomCommune": "ASPIN EN LAVEDAN" }, { - "codePostal": "61400", - "codeCommune": "61255", - "libelleAcheminement": "MAUVES SUR HUISNE", - "nomCommune": "MAUVES SUR HUISNE" + "codePostal": "11800", + "codeCommune": "11151", + "libelleAcheminement": "FONTIES D AUDE", + "nomCommune": "FONTIES D AUDE" }, { - "codePostal": "39300", - "codeCommune": "39419", - "libelleAcheminement": "PILLEMOINE", - "nomCommune": "PILLEMOINE" + "codePostal": "64320", + "codeCommune": "64329", + "libelleAcheminement": "LEE", + "nomCommune": "LEE" }, { - "codePostal": "33760", - "codeCommune": "33043", - "libelleAcheminement": "BELLEBAT", - "nomCommune": "BELLEBAT" + "codePostal": "54360", + "codeCommune": "54383", + "libelleAcheminement": "MONT SUR MEURTHE", + "nomCommune": "MONT SUR MEURTHE" }, { - "codePostal": "02290", - "codeCommune": "02277", - "libelleAcheminement": "EPAGNY", - "nomCommune": "EPAGNY" + "codePostal": "57220", + "codeCommune": "57087", + "libelleAcheminement": "BISTEN EN LORRAINE", + "nomCommune": "BISTEN EN LORRAINE" }, { - "codePostal": "61170", - "codeCommune": "61266", - "libelleAcheminement": "LE MENIL GUYON", - "nomCommune": "LE MENIL GUYON" + "codePostal": "65130", + "codeCommune": "65041", + "libelleAcheminement": "ASQUE", + "nomCommune": "ASQUE" }, { - "codePostal": "39210", - "codeCommune": "39421", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "11360", + "codeCommune": "11152", + "libelleAcheminement": "FONTJONCOUSE", + "nomCommune": "FONTJONCOUSE" }, { - "codePostal": "33390", - "codeCommune": "33047", - "libelleAcheminement": "BERSON", - "nomCommune": "BERSON" + "codePostal": "64350", + "codeCommune": "64337", + "libelleAcheminement": "LESPIELLE", + "nomCommune": "LESPIELLE" }, { - "codePostal": "02500", - "codeCommune": "02278", - "libelleAcheminement": "EPARCY", - "nomCommune": "EPARCY" + "codePostal": "54370", + "codeCommune": "54388", + "libelleAcheminement": "MOUACOURT", + "nomCommune": "MOUACOURT" }, { - "codePostal": "61430", - "codeCommune": "61269", - "libelleAcheminement": "MENIL HUBERT SUR ORNE", - "nomCommune": "MENIL HUBERT SUR ORNE" + "codePostal": "57200", + "codeCommune": "57091", + "libelleAcheminement": "BLIESBRUCK", + "nomCommune": "BLIESBRUCK" }, { - "codePostal": "39400", - "codeCommune": "39441", - "libelleAcheminement": "PREMANON", - "nomCommune": "PREMANON" + "codePostal": "65400", + "codeCommune": "65045", + "libelleAcheminement": "AUCUN", + "nomCommune": "AUCUN" }, { - "codePostal": "33430", - "codeCommune": "33053", - "libelleAcheminement": "BIRAC", - "nomCommune": "BIRAC" + "codePostal": "11270", + "codeCommune": "11153", + "libelleAcheminement": "LA FORCE", + "nomCommune": "LA FORCE" }, { - "codePostal": "02690", - "codeCommune": "02287", - "libelleAcheminement": "ESSIGNY LE GRAND", - "nomCommune": "ESSIGNY LE GRAND" + "codePostal": "64530", + "codeCommune": "64344", + "libelleAcheminement": "LIVRON", + "nomCommune": "LIVRON" }, { - "codePostal": "61240", - "codeCommune": "61275", - "libelleAcheminement": "LE MERLERAULT", - "nomCommune": "LE MERLERAULT" + "codePostal": "54113", + "codeCommune": "54392", + "libelleAcheminement": "MOUTROT", + "nomCommune": "MOUTROT" }, { - "codePostal": "39570", - "codeCommune": "39445", - "libelleAcheminement": "PUBLY", - "nomCommune": "PUBLY" + "codePostal": "57460", + "codeCommune": "57101", + "libelleAcheminement": "BOUSBACH", + "nomCommune": "BOUSBACH" }, { - "codePostal": "33300", - "codeCommune": "33063", - "libelleAcheminement": "BORDEAUX", - "nomCommune": "BORDEAUX" + "codePostal": "65400", + "codeCommune": "65056", + "libelleAcheminement": "AYZAC OST", + "nomCommune": "AYZAC OST" }, { - "codePostal": "02400", - "codeCommune": "02292", - "libelleAcheminement": "ETAMPES SUR MARNE", - "nomCommune": "ETAMPES SUR MARNE" + "codePostal": "11190", + "codeCommune": "11155", + "libelleAcheminement": "FOURTOU", + "nomCommune": "FOURTOU" }, { - "codePostal": "61800", - "codeCommune": "61281", - "libelleAcheminement": "MONCY", - "nomCommune": "MONCY" + "codePostal": "64120", + "codeCommune": "64345", + "libelleAcheminement": "LOHITZUN OYHERCQ", + "nomCommune": "LOHITZUN OYHERCQ" }, { - "codePostal": "39700", - "codeCommune": "39451", - "libelleAcheminement": "RANCHOT", - "nomCommune": "RANCHOT" + "codePostal": "54290", + "codeCommune": "54399", + "libelleAcheminement": "NEUVILLER SUR MOSELLE", + "nomCommune": "NEUVILLER SUR MOSELLE" }, { - "codePostal": "33800", - "codeCommune": "33063", - "libelleAcheminement": "BORDEAUX", - "nomCommune": "BORDEAUX" + "codePostal": "57720", + "codeCommune": "57108", + "libelleAcheminement": "BREIDENBACH", + "nomCommune": "BREIDENBACH" }, { - "codePostal": "02400", - "codeCommune": "02297", - "libelleAcheminement": "ETREPILLY", - "nomCommune": "ETREPILLY" + "codePostal": "65200", + "codeCommune": "65059", + "libelleAcheminement": "BAGNERES DE BIGORRE", + "nomCommune": "BAGNERES DE BIGORRE" }, { - "codePostal": "61360", - "codeCommune": "61286", - "libelleAcheminement": "MONTGAUDRY", - "nomCommune": "MONTGAUDRY" + "codePostal": "11240", + "codeCommune": "11167", + "libelleAcheminement": "GRAMAZIE", + "nomCommune": "GRAMAZIE" }, { - "codePostal": "39700", - "codeCommune": "39452", - "libelleAcheminement": "RANS", - "nomCommune": "RANS" + "codePostal": "64160", + "codeCommune": "64346", + "libelleAcheminement": "LOMBIA", + "nomCommune": "LOMBIA" }, { - "codePostal": "33350", - "codeCommune": "33064", - "libelleAcheminement": "BOSSUGAN", - "nomCommune": "BOSSUGAN" + "codePostal": "54610", + "codeCommune": "54400", + "libelleAcheminement": "NOMENY", + "nomCommune": "NOMENY" }, { - "codePostal": "02600", - "codeCommune": "02302", - "libelleAcheminement": "FAVEROLLES", - "nomCommune": "FAVEROLLES" + "codePostal": "57565", + "codeCommune": "57113", + "libelleAcheminement": "BROUDERDORFF", + "nomCommune": "BROUDERDORFF" }, { - "codePostal": "61500", - "codeCommune": "61294", - "libelleAcheminement": "MORTREE", - "nomCommune": "MORTREE" + "codePostal": "65230", + "codeCommune": "65088", + "libelleAcheminement": "BETBEZE", + "nomCommune": "BETBEZE" }, { - "codePostal": "39170", - "codeCommune": "39453", - "libelleAcheminement": "RAVILLOLES", - "nomCommune": "RAVILLOLES" + "codePostal": "11500", + "codeCommune": "11168", + "libelleAcheminement": "GRANES", + "nomCommune": "GRANES" }, { - "codePostal": "33480", - "codeCommune": "33070", - "libelleAcheminement": "BRACH", - "nomCommune": "BRACH" + "codePostal": "64410", + "codeCommune": "64347", + "libelleAcheminement": "LONCON", + "nomCommune": "LONCON" }, { - "codePostal": "02460", - "codeCommune": "02307", - "libelleAcheminement": "LA FERTE MILON", - "nomCommune": "LA FERTE MILON" + "codePostal": "54740", + "codeCommune": "54411", + "libelleAcheminement": "ORMES ET VILLE", + "nomCommune": "ORMES ET VILLE" }, { - "codePostal": "61110", - "codeCommune": "61300", - "libelleAcheminement": "MOUTIERS AU PERCHE", - "nomCommune": "MOUTIERS AU PERCHE" + "codePostal": "57420", + "codeCommune": "57116", + "libelleAcheminement": "BUCHY", + "nomCommune": "BUCHY" }, { - "codePostal": "39200", - "codeCommune": "39460", - "libelleAcheminement": "LA RIXOUSE", - "nomCommune": "LA RIXOUSE" + "codePostal": "65150", + "codeCommune": "65094", + "libelleAcheminement": "BIZOUS", + "nomCommune": "BIZOUS" }, { - "codePostal": "33650", - "codeCommune": "33077", - "libelleAcheminement": "CABANAC ET VILLAGRAINS", - "nomCommune": "CABANAC ET VILLAGRAINS" + "codePostal": "11430", + "codeCommune": "11170", + "libelleAcheminement": "GRUISSAN", + "nomCommune": "GRUISSAN" }, { - "codePostal": "02450", - "codeCommune": "02308", - "libelleAcheminement": "FESMY LE SART", - "nomCommune": "FESMY LE SART" + "codePostal": "64120", + "codeCommune": "64362", + "libelleAcheminement": "LUXE SUMBERRAUTE", + "nomCommune": "LUXE SUMBERRAUTE" }, { - "codePostal": "61340", - "codeCommune": "61309", - "libelleAcheminement": "PERCHE EN NOCE", - "nomCommune": "PERCHE EN NOCE" + "codePostal": "54200", + "codeCommune": "54414", + "libelleAcheminement": "PAGNEY DERRIERE BARINE", + "nomCommune": "PAGNEY DERRIERE BARINE" }, { - "codePostal": "39190", - "codeCommune": "39466", - "libelleAcheminement": "ROSAY", - "nomCommune": "ROSAY" + "codePostal": "57170", + "codeCommune": "57120", + "libelleAcheminement": "BURLIONCOURT", + "nomCommune": "BURLIONCOURT" }, { - "codePostal": "33420", - "codeCommune": "33078", - "libelleAcheminement": "CABARA", - "nomCommune": "CABARA" + "codePostal": "65130", + "codeCommune": "65096", + "libelleAcheminement": "BONNEMAZON", + "nomCommune": "BONNEMAZON" }, { - "codePostal": "02110", - "codeCommune": "02310", - "libelleAcheminement": "FIEULAINE", - "nomCommune": "FIEULAINE" + "codePostal": "11220", + "codeCommune": "11179", + "libelleAcheminement": "LABASTIDE EN VAL", + "nomCommune": "LABASTIDE EN VAL" }, { - "codePostal": "61230", - "codeCommune": "61317", - "libelleAcheminement": "ORGERES", - "nomCommune": "ORGERES" + "codePostal": "64260", + "codeCommune": "64363", + "libelleAcheminement": "LYS", + "nomCommune": "LYS" }, { - "codePostal": "39190", - "codeCommune": "39467", - "libelleAcheminement": "ROTALIER", - "nomCommune": "ROTALIER" + "codePostal": "54480", + "codeCommune": "54421", + "libelleAcheminement": "PETITMONT", + "nomCommune": "PETITMONT" }, { - "codePostal": "33140", - "codeCommune": "33080", - "libelleAcheminement": "CADAUJAC", - "nomCommune": "CADAUJAC" + "codePostal": "57170", + "codeCommune": "57126", + "libelleAcheminement": "CHAMBREY", + "nomCommune": "CHAMBREY" }, { - "codePostal": "02260", - "codeCommune": "02312", - "libelleAcheminement": "LA FLAMENGRIE", - "nomCommune": "LA FLAMENGRIE" + "codePostal": "65140", + "codeCommune": "65102", + "libelleAcheminement": "BOUILH DEVANT", + "nomCommune": "BOUILH DEVANT" }, { - "codePostal": "61400", - "codeCommune": "61322", - "libelleAcheminement": "PARFONDEVAL", - "nomCommune": "PARFONDEVAL" + "codePostal": "11250", + "codeCommune": "11183", + "libelleAcheminement": "LADERN SUR LAUQUET", + "nomCommune": "LADERN SUR LAUQUET" }, { - "codePostal": "39350", - "codeCommune": "39469", - "libelleAcheminement": "ROUFFANGE", - "nomCommune": "ROUFFANGE" + "codePostal": "64330", + "codeCommune": "64366", + "libelleAcheminement": "MASCARAAS HARON", + "nomCommune": "MASCARAAS HARON" }, { - "codePostal": "33610", - "codeCommune": "33090", - "libelleAcheminement": "CANEJAN", - "nomCommune": "CANEJAN" + "codePostal": "54120", + "codeCommune": "54422", + "libelleAcheminement": "PETTONVILLE", + "nomCommune": "PETTONVILLE" }, { - "codePostal": "02170", - "codeCommune": "02324", - "libelleAcheminement": "FONTENELLE", - "nomCommune": "FONTENELLE" + "codePostal": "57580", + "codeCommune": "57127", + "libelleAcheminement": "CHANVILLE", + "nomCommune": "CHANVILLE" }, { - "codePostal": "61290", - "codeCommune": "61323", - "libelleAcheminement": "LE PAS ST L HOMER", - "nomCommune": "LE PAS ST L HOMER" + "codePostal": "65220", + "codeCommune": "65110", + "libelleAcheminement": "BUGARD", + "nomCommune": "BUGARD" }, { - "codePostal": "39570", - "codeCommune": "39480", - "libelleAcheminement": "ST DIDIER", - "nomCommune": "ST DIDIER" + "codePostal": "11330", + "codeCommune": "11186", + "libelleAcheminement": "LAIRIERE", + "nomCommune": "LAIRIERE" }, { - "codePostal": "33390", - "codeCommune": "33101", - "libelleAcheminement": "CARTELEGUE", - "nomCommune": "CARTELEGUE" + "codePostal": "64300", + "codeCommune": "64367", + "libelleAcheminement": "MASLACQ", + "nomCommune": "MASLACQ" }, { - "codePostal": "02870", - "codeCommune": "02329", - "libelleAcheminement": "FOURDRAIN", - "nomCommune": "FOURDRAIN" + "codePostal": "54610", + "codeCommune": "54424", + "libelleAcheminement": "PHLIN", + "nomCommune": "PHLIN" }, { - "codePostal": "61210", - "codeCommune": "61339", - "libelleAcheminement": "PUTANGES LE LAC", - "nomCommune": "PUTANGES LE LAC" + "codePostal": "57170", + "codeCommune": "57132", + "libelleAcheminement": "CHATEAU SALINS", + "nomCommune": "CHATEAU SALINS" }, { - "codePostal": "39230", - "codeCommune": "39486", - "libelleAcheminement": "ST LAMAIN", - "nomCommune": "ST LAMAIN" + "codePostal": "65400", + "codeCommune": "65112", + "libelleAcheminement": "BUN", + "nomCommune": "BUN" }, { - "codePostal": "33190", - "codeCommune": "33102", - "libelleAcheminement": "CASSEUIL", - "nomCommune": "CASSEUIL" + "codePostal": "11800", + "codeCommune": "11198", + "libelleAcheminement": "LAURE MINERVOIS", + "nomCommune": "LAURE MINERVOIS" }, { - "codePostal": "02130", - "codeCommune": "02332", - "libelleAcheminement": "FRESNES EN TARDENOIS", - "nomCommune": "FRESNES EN TARDENOIS" + "codePostal": "64160", + "codeCommune": "64370", + "libelleAcheminement": "MAUCOR", + "nomCommune": "MAUCOR" }, { - "codePostal": "61210", - "codeCommune": "61339", - "libelleAcheminement": "PUTANGES LE LAC", - "nomCommune": "PUTANGES LE LAC" + "codePostal": "54340", + "codeCommune": "54430", + "libelleAcheminement": "POMPEY", + "nomCommune": "POMPEY" }, { - "codePostal": "39170", - "codeCommune": "39491", - "libelleAcheminement": "COTEAUX DU LIZON", - "nomCommune": "COTEAUX DU LIZON" + "codePostal": "57245", + "codeCommune": "57140", + "libelleAcheminement": "CHESNY", + "nomCommune": "CHESNY" }, { - "codePostal": "33640", - "codeCommune": "33109", - "libelleAcheminement": "CASTRES GIRONDE", - "nomCommune": "CASTRES GIRONDE" + "codePostal": "65350", + "codeCommune": "65115", + "libelleAcheminement": "CABANAC", + "nomCommune": "CABANAC" }, { - "codePostal": "02380", - "codeCommune": "02333", - "libelleAcheminement": "FRESNES SOUS COUCY", - "nomCommune": "FRESNES SOUS COUCY" + "codePostal": "11160", + "codeCommune": "11200", + "libelleAcheminement": "LESPINASSIERE", + "nomCommune": "LESPINASSIERE" }, { - "codePostal": "61210", - "codeCommune": "61339", - "libelleAcheminement": "PUTANGES LE LAC", - "nomCommune": "PUTANGES LE LAC" + "codePostal": "64130", + "codeCommune": "64371", + "libelleAcheminement": "MAULEON SOULE", + "nomCommune": "MAULEON LICHARRE" }, { - "codePostal": "39570", - "codeCommune": "39492", - "libelleAcheminement": "ST MAUR", - "nomCommune": "ST MAUR" + "codePostal": "54425", + "codeCommune": "54439", + "libelleAcheminement": "PULNOY", + "nomCommune": "PULNOY" }, { - "codePostal": "33490", - "codeCommune": "33111", - "libelleAcheminement": "CAUDROT", - "nomCommune": "CAUDROT" + "codePostal": "57590", + "codeCommune": "57141", + "libelleAcheminement": "CHICOURT", + "nomCommune": "CHICOURT" }, { - "codePostal": "02800", - "codeCommune": "02335", - "libelleAcheminement": "FRESSANCOURT", - "nomCommune": "FRESSANCOURT" + "codePostal": "65240", + "codeCommune": "65116", + "libelleAcheminement": "CADEAC", + "nomCommune": "CADEAC" }, { - "codePostal": "61110", - "codeCommune": "61345", - "libelleAcheminement": "REMALARD EN PERCHE", - "nomCommune": "REMALARD EN PERCHE" + "codePostal": "11370", + "codeCommune": "11202", + "libelleAcheminement": "LEUCATE", + "nomCommune": "LEUCATE" }, { - "codePostal": "39150", - "codeCommune": "39494", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "64120", + "codeCommune": "64375", + "libelleAcheminement": "MEHARIN", + "nomCommune": "MEHARIN" }, { - "codePostal": "33790", - "codeCommune": "33117", - "libelleAcheminement": "CAZAUGITAT", - "nomCommune": "CAZAUGITAT" + "codePostal": "54450", + "codeCommune": "54447", + "libelleAcheminement": "RECLONVILLE", + "nomCommune": "RECLONVILLE" }, { - "codePostal": "02700", - "codeCommune": "02336", - "libelleAcheminement": "FRIERES FAILLOUEL", - "nomCommune": "FRIERES FAILLOUEL" + "codePostal": "57530", + "codeCommune": "57145", + "libelleAcheminement": "COINCY", + "nomCommune": "COINCY" }, { - "codePostal": "61110", - "codeCommune": "61345", - "libelleAcheminement": "REMALARD EN PERCHE", - "nomCommune": "REMALARD EN PERCHE" + "codePostal": "65710", + "codeCommune": "65123", + "libelleAcheminement": "CAMPAN", + "nomCommune": "CAMPAN" }, { - "codePostal": "39110", - "codeCommune": "39500", - "libelleAcheminement": "SALINS LES BAINS", - "nomCommune": "SALINS LES BAINS" + "codePostal": "11190", + "codeCommune": "11209", + "libelleAcheminement": "LUC SUR AUDE", + "nomCommune": "LUC SUR AUDE" }, { - "codePostal": "33720", - "codeCommune": "33120", - "libelleAcheminement": "CERONS", - "nomCommune": "CERONS" + "codePostal": "64510", + "codeCommune": "64376", + "libelleAcheminement": "MEILLON", + "nomCommune": "MEILLON" }, { - "codePostal": "02440", - "codeCommune": "02345", - "libelleAcheminement": "GIBERCOURT", - "nomCommune": "GIBERCOURT" + "codePostal": "54300", + "codeCommune": "54449", + "libelleAcheminement": "REHAINVILLER", + "nomCommune": "REHAINVILLER" }, { - "codePostal": "61230", - "codeCommune": "61347", - "libelleAcheminement": "RESENLIEU", - "nomCommune": "RESENLIEU" + "codePostal": "57220", + "codeCommune": "57150", + "libelleAcheminement": "CONDE NORTHEN", + "nomCommune": "CONDE NORTHEN" }, { - "codePostal": "39130", - "codeCommune": "39505", - "libelleAcheminement": "SAUGEOT", - "nomCommune": "SAUGEOT" + "codePostal": "65710", + "codeCommune": "65123", + "libelleAcheminement": "CAMPAN", + "nomCommune": "CAMPAN" }, { - "codePostal": "33760", - "codeCommune": "33121", - "libelleAcheminement": "CESSAC", - "nomCommune": "CESSAC" + "codePostal": "11330", + "codeCommune": "11213", + "libelleAcheminement": "MAISONS", + "nomCommune": "MAISONS" }, { - "codePostal": "02100", - "codeCommune": "02355", - "libelleAcheminement": "GRICOURT", - "nomCommune": "GRICOURT" + "codePostal": "64240", + "codeCommune": "64377", + "libelleAcheminement": "MENDIONDE", + "nomCommune": "MENDIONDE" }, { - "codePostal": "61380", - "codeCommune": "61363", - "libelleAcheminement": "ST AQUILIN DE CORBION", - "nomCommune": "ST AQUILIN DE CORBION" + "codePostal": "54385", + "codeCommune": "54463", + "libelleAcheminement": "ROSIERES EN HAYE", + "nomCommune": "ROSIERES EN HAYE" }, { - "codePostal": "39120", - "codeCommune": "39507", - "libelleAcheminement": "SELIGNEY", - "nomCommune": "SELIGNEY" + "codePostal": "57340", + "codeCommune": "57151", + "libelleAcheminement": "CONTHIL", + "nomCommune": "CONTHIL" }, { - "codePostal": "33610", - "codeCommune": "33122", - "libelleAcheminement": "CESTAS", - "nomCommune": "CESTAS" + "codePostal": "65170", + "codeCommune": "65124", + "libelleAcheminement": "CAMPARAN", + "nomCommune": "CAMPARAN" }, { - "codePostal": "02190", - "codeCommune": "02360", - "libelleAcheminement": "VILLENEUVE SUR AISNE", - "nomCommune": "VILLENEUVE SUR AISNE" + "codePostal": "11410", + "codeCommune": "11218", + "libelleAcheminement": "MARQUEIN", + "nomCommune": "MARQUEIN" }, { - "codePostal": "61470", - "codeCommune": "61366", - "libelleAcheminement": "ST AUBIN DE BONNEVAL", - "nomCommune": "ST AUBIN DE BONNEVAL" + "codePostal": "64220", + "codeCommune": "64379", + "libelleAcheminement": "MENDIVE", + "nomCommune": "MENDIVE" }, { - "codePostal": "39700", - "codeCommune": "39513", - "libelleAcheminement": "SERMANGE", - "nomCommune": "SERMANGE" + "codePostal": "54290", + "codeCommune": "54465", + "libelleAcheminement": "ROVILLE DEVANT BAYON", + "nomCommune": "ROVILLE DEVANT BAYON" }, { - "codePostal": "33540", - "codeCommune": "33129", - "libelleAcheminement": "CLEYRAC", - "nomCommune": "CLEYRAC" + "codePostal": "57260", + "codeCommune": "57161", + "libelleAcheminement": "CUTTING", + "nomCommune": "CUTTING" }, { - "codePostal": "02300", - "codeCommune": "02362", - "libelleAcheminement": "GUIVRY", - "nomCommune": "GUIVRY" + "codePostal": "65350", + "codeCommune": "65131", + "libelleAcheminement": "CASTELVIEILH", + "nomCommune": "CASTELVIEILH" }, { - "codePostal": "61560", - "codeCommune": "61367", - "libelleAcheminement": "ST AUBIN DE COURTERAIE", - "nomCommune": "ST AUBIN DE COURTERAIE" + "codePostal": "11800", + "codeCommune": "11220", + "libelleAcheminement": "MARSEILLETTE", + "nomCommune": "MARSEILLETTE" }, { - "codePostal": "39380", - "codeCommune": "39520", - "libelleAcheminement": "SOUVANS", - "nomCommune": "SOUVANS" + "codePostal": "64370", + "codeCommune": "64382", + "libelleAcheminement": "MESPLEDE", + "nomCommune": "MESPLEDE" }, { - "codePostal": "33340", - "codeCommune": "33134", - "libelleAcheminement": "COUQUEQUES", - "nomCommune": "COUQUEQUES" + "codePostal": "54950", + "codeCommune": "54472", + "libelleAcheminement": "ST CLEMENT", + "nomCommune": "ST CLEMENT" }, { - "codePostal": "02420", - "codeCommune": "02374", - "libelleAcheminement": "LEHAUCOURT", - "nomCommune": "LEHAUCOURT" + "codePostal": "57320", + "codeCommune": "57167", + "libelleAcheminement": "DALSTEIN", + "nomCommune": "DALSTEIN" }, { - "codePostal": "61250", - "codeCommune": "61372", - "libelleAcheminement": "ST CENERI LE GEREI", - "nomCommune": "ST CENERI LE GEREI" + "codePostal": "65590", + "codeCommune": "65140", + "libelleAcheminement": "CAZAUX DEBAT", + "nomCommune": "CAZAUX DEBAT" }, { - "codePostal": "39300", - "codeCommune": "39540", - "libelleAcheminement": "VALEMPOULIERES", - "nomCommune": "VALEMPOULIERES" + "codePostal": "11390", + "codeCommune": "11221", + "libelleAcheminement": "LES MARTYS", + "nomCommune": "LES MARTYS" }, { - "codePostal": "33750", - "codeCommune": "33141", - "libelleAcheminement": "CROIGNON", - "nomCommune": "CROIGNON" + "codePostal": "64350", + "codeCommune": "64388", + "libelleAcheminement": "MOMY", + "nomCommune": "MOMY" }, { - "codePostal": "02140", - "codeCommune": "02377", - "libelleAcheminement": "HAUTION", - "nomCommune": "HAUTION" + "codePostal": "54650", + "codeCommune": "54493", + "libelleAcheminement": "SAULNES", + "nomCommune": "SAULNES" }, { - "codePostal": "61380", - "codeCommune": "61373", - "libelleAcheminement": "STE CERONNE LES MORTAGNE", - "nomCommune": "STE CERONNE LES MORTAGNE" + "codePostal": "57340", + "codeCommune": "57174", + "libelleAcheminement": "DESTRY", + "nomCommune": "DESTRY" }, { - "codePostal": "39360", - "codeCommune": "39547", - "libelleAcheminement": "VAUX LES ST CLAUDE", - "nomCommune": "VAUX LES ST CLAUDE" + "codePostal": "65200", + "codeCommune": "65147", + "libelleAcheminement": "CIEUTAT", + "nomCommune": "CIEUTAT" }, { - "codePostal": "33240", - "codeCommune": "33143", - "libelleAcheminement": "CUBZAC LES PONTS", - "nomCommune": "CUBZAC LES PONTS" + "codePostal": "11420", + "codeCommune": "11226", + "libelleAcheminement": "MAYREVILLE", + "nomCommune": "MAYREVILLE" }, { - "codePostal": "02120", - "codeCommune": "02379", - "libelleAcheminement": "LE HERIE LA VIEVILLE", - "nomCommune": "LE HERIE LA VIEVILLE" + "codePostal": "64160", + "codeCommune": "64389", + "libelleAcheminement": "MONASSUT AUDIRACQ", + "nomCommune": "MONASSUT AUDIRACQ" }, { - "codePostal": "61570", - "codeCommune": "61375", - "libelleAcheminement": "BOISCHAMPRE", - "nomCommune": "BOISCHAMPRE" + "codePostal": "54170", + "codeCommune": "54500", + "libelleAcheminement": "SELAINCOURT", + "nomCommune": "SELAINCOURT" }, { - "codePostal": "39160", - "codeCommune": "39551", - "libelleAcheminement": "VERIA", - "nomCommune": "VERIA" + "codePostal": "57980", + "codeCommune": "57176", + "libelleAcheminement": "DIEBLING", + "nomCommune": "DIEBLING" }, { - "codePostal": "33230", - "codeCommune": "33154", - "libelleAcheminement": "LES EGLISOTTES ET CHALAURES", - "nomCommune": "LES EGLISOTTES ET CHALAURES" + "codePostal": "65190", + "codeCommune": "65149", + "libelleAcheminement": "CLARAC", + "nomCommune": "CLARAC" }, { - "codePostal": "02140", - "codeCommune": "02391", - "libelleAcheminement": "JEANTES", - "nomCommune": "JEANTES" + "codePostal": "11410", + "codeCommune": "11231", + "libelleAcheminement": "MEZERVILLE", + "nomCommune": "MEZERVILLE" }, { - "codePostal": "61570", - "codeCommune": "61375", - "libelleAcheminement": "BOISCHAMPRE", - "nomCommune": "BOISCHAMPRE" + "codePostal": "64990", + "codeCommune": "64407", + "libelleAcheminement": "MOUGUERRE", + "nomCommune": "MOUGUERRE" }, { - "codePostal": "39210", - "codeCommune": "39553", - "libelleAcheminement": "LE VERNOIS", - "nomCommune": "LE VERNOIS" + "codePostal": "54370", + "codeCommune": "54502", + "libelleAcheminement": "SERRES", + "nomCommune": "SERRES" }, { - "codePostal": "33210", - "codeCommune": "33164", - "libelleAcheminement": "FARGUES", - "nomCommune": "FARGUES" + "codePostal": "57400", + "codeCommune": "57180", + "libelleAcheminement": "DOLVING", + "nomCommune": "DOLVING" }, { - "codePostal": "02220", - "codeCommune": "02393", - "libelleAcheminement": "JOUAIGNES", - "nomCommune": "JOUAIGNES" + "codePostal": "65370", + "codeCommune": "65158", + "libelleAcheminement": "ESBAREICH", + "nomCommune": "ESBAREICH" }, { - "codePostal": "61230", - "codeCommune": "61385", - "libelleAcheminement": "ST EVROULT DE MONTFORT", - "nomCommune": "ST EVROULT DE MONTFORT" + "codePostal": "11250", + "codeCommune": "11242", + "libelleAcheminement": "MONTCLAR", + "nomCommune": "MONTCLAR" }, { - "codePostal": "39230", - "codeCommune": "39555", - "libelleAcheminement": "VERS SOUS SELLIERES", - "nomCommune": "VERS SOUS SELLIERES" + "codePostal": "64400", + "codeCommune": "64409", + "libelleAcheminement": "MOUMOUR", + "nomCommune": "MOUMOUR" }, { - "codePostal": "33190", - "codeCommune": "33171", - "libelleAcheminement": "FOSSES ET BALEYSSAC", - "nomCommune": "FOSSES ET BALEYSSAC" + "codePostal": "54300", + "codeCommune": "54507", + "libelleAcheminement": "SIONVILLER", + "nomCommune": "SIONVILLER" }, { - "codePostal": "02160", - "codeCommune": "02396", - "libelleAcheminement": "JUMIGNY", - "nomCommune": "JUMIGNY" + "codePostal": "57260", + "codeCommune": "57181", + "libelleAcheminement": "DOMNOM LES DIEUZE", + "nomCommune": "DOMNOM LES DIEUZE" }, { - "codePostal": "61130", - "codeCommune": "61388", - "libelleAcheminement": "ST FULGENT DES ORMES", - "nomCommune": "ST FULGENT DES ORMES" + "codePostal": "65700", + "codeCommune": "65174", + "libelleAcheminement": "ESTIRAC", + "nomCommune": "ESTIRAC" }, { - "codePostal": "39570", - "codeCommune": "39558", - "libelleAcheminement": "VEVY", - "nomCommune": "VEVY" + "codePostal": "11240", + "codeCommune": "11247", + "libelleAcheminement": "MONTHAUT", + "nomCommune": "MONTHAUT" }, { - "codePostal": "33390", - "codeCommune": "33172", - "libelleAcheminement": "FOURS", - "nomCommune": "FOURS" + "codePostal": "64420", + "codeCommune": "64419", + "libelleAcheminement": "NOUSTY", + "nomCommune": "NOUSTY" }, { - "codePostal": "02480", - "codeCommune": "02397", - "libelleAcheminement": "JUSSY", - "nomCommune": "JUSSY" + "codePostal": "54610", + "codeCommune": "54508", + "libelleAcheminement": "SIVRY", + "nomCommune": "SIVRY" }, { - "codePostal": "61560", - "codeCommune": "61396", - "libelleAcheminement": "ST GERMAIN DE MARTIGNY", - "nomCommune": "ST GERMAIN DE MARTIGNY" + "codePostal": "57340", + "codeCommune": "57189", + "libelleAcheminement": "EINCHEVILLE", + "nomCommune": "EINCHEVILLE" }, { - "codePostal": "39120", - "codeCommune": "39571", - "libelleAcheminement": "VILLERS ROBERT", - "nomCommune": "VILLERS ROBERT" + "codePostal": "65370", + "codeCommune": "65175", + "libelleAcheminement": "FERRERE", + "nomCommune": "FERRERE" }, { - "codePostal": "33760", - "codeCommune": "33175", - "libelleAcheminement": "FRONTENAC", - "nomCommune": "FRONTENAC" + "codePostal": "11220", + "codeCommune": "11251", + "libelleAcheminement": "VAL DE DAGNE", + "nomCommune": "VAL DE DAGNE" }, { - "codePostal": "02590", - "codeCommune": "02402", - "libelleAcheminement": "LANCHY", - "nomCommune": "LANCHY" + "codePostal": "64190", + "codeCommune": "64420", + "libelleAcheminement": "OGENNE CAMPTORT", + "nomCommune": "OGENNE CAMPTORT" }, { - "codePostal": "61220", - "codeCommune": "61402", - "libelleAcheminement": "ST HILAIRE DE BRIOUZE", - "nomCommune": "ST HILAIRE DE BRIOUZE" + "codePostal": "54116", + "codeCommune": "54513", + "libelleAcheminement": "TANTONVILLE", + "nomCommune": "TANTONVILLE" }, { - "codePostal": "39140", - "codeCommune": "39574", - "libelleAcheminement": "VILLEVIEUX", - "nomCommune": "VILLEVIEUX" + "codePostal": "57365", + "codeCommune": "57193", + "libelleAcheminement": "ENNERY", + "nomCommune": "ENNERY" }, { - "codePostal": "33410", - "codeCommune": "33176", - "libelleAcheminement": "GABARNAC", - "nomCommune": "GABARNAC" + "codePostal": "65320", + "codeCommune": "65189", + "libelleAcheminement": "GAYAN", + "nomCommune": "GAYAN" }, { - "codePostal": "02140", - "codeCommune": "02404", - "libelleAcheminement": "LANDOUZY LA COUR", - "nomCommune": "LANDOUZY LA COUR" + "codePostal": "11170", + "codeCommune": "11253", + "libelleAcheminement": "MONTOLIEU", + "nomCommune": "MONTOLIEU" }, { - "codePostal": "61170", - "codeCommune": "61412", - "libelleAcheminement": "ST JULIEN SUR SARTHE", - "nomCommune": "ST JULIEN SUR SARTHE" + "codePostal": "64680", + "codeCommune": "64421", + "libelleAcheminement": "OGEU LES BAINS", + "nomCommune": "OGEU LES BAINS" }, { - "codePostal": "39230", - "codeCommune": "39575", - "libelleAcheminement": "LE VILLEY", - "nomCommune": "LE VILLEY" + "codePostal": "54880", + "codeCommune": "54521", + "libelleAcheminement": "THIL", + "nomCommune": "THIL" }, { - "codePostal": "33340", - "codeCommune": "33177", - "libelleAcheminement": "GAILLAN EN MEDOC", - "nomCommune": "GAILLAN EN MEDOC" + "codePostal": "57510", + "codeCommune": "57197", + "libelleAcheminement": "ERNESTVILLER", + "nomCommune": "ERNESTVILLER" }, { - "codePostal": "02150", - "codeCommune": "02409", - "libelleAcheminement": "LAPPION", - "nomCommune": "LAPPION" + "codePostal": "65370", + "codeCommune": "65193", + "libelleAcheminement": "GEMBRIE", + "nomCommune": "GEMBRIE" }, { - "codePostal": "61160", - "codeCommune": "61413", - "libelleAcheminement": "ST LAMBERT SUR DIVE", - "nomCommune": "ST LAMBERT SUR DIVE" + "codePostal": "11700", + "codeCommune": "11261", + "libelleAcheminement": "MOUX", + "nomCommune": "MOUX" }, { - "codePostal": "39230", - "codeCommune": "39577", - "libelleAcheminement": "VINCENT FROIDEVILLE", - "nomCommune": "VINCENT FROIDEVILLE" + "codePostal": "64390", + "codeCommune": "64427", + "libelleAcheminement": "ORION", + "nomCommune": "ORION" }, { - "codePostal": "33350", - "codeCommune": "33181", - "libelleAcheminement": "GARDEGAN ET TOURTIRAC", - "nomCommune": "GARDEGAN ET TOURTIRAC" + "codePostal": "54210", + "codeCommune": "54527", + "libelleAcheminement": "TONNOY", + "nomCommune": "TONNOY" }, { - "codePostal": "02450", - "codeCommune": "02414", - "libelleAcheminement": "LAVAQUERESSE", - "nomCommune": "LAVAQUERESSE" + "codePostal": "57530", + "codeCommune": "57200", + "libelleAcheminement": "LES ETANGS", + "nomCommune": "LES ETANGS" }, { - "codePostal": "61400", - "codeCommune": "61414", - "libelleAcheminement": "ST LANGIS LES MORTAGNE", - "nomCommune": "ST LANGIS LES MORTAGNE" + "codePostal": "65700", + "codeCommune": "65215", + "libelleAcheminement": "HAGEDET", + "nomCommune": "HAGEDET" }, { - "codePostal": "39230", - "codeCommune": "39577", - "libelleAcheminement": "VINCENT FROIDEVILLE", - "nomCommune": "VINCENT FROIDEVILLE" + "codePostal": "11350", + "codeCommune": "11270", + "libelleAcheminement": "PADERN", + "nomCommune": "PADERN" }, { - "codePostal": "33420", - "codeCommune": "33196", - "libelleAcheminement": "GUILLAC", - "nomCommune": "GUILLAC" + "codePostal": "64780", + "codeCommune": "64436", + "libelleAcheminement": "OSSES", + "nomCommune": "OSSES" }, { - "codePostal": "02140", - "codeCommune": "02416", - "libelleAcheminement": "LEME", - "nomCommune": "LEME" + "codePostal": "54200", + "codeCommune": "54528", + "libelleAcheminement": "TOUL", + "nomCommune": "TOUL" }, { - "codePostal": "61170", - "codeCommune": "61415", - "libelleAcheminement": "ST LEGER SUR SARTHE", - "nomCommune": "ST LEGER SUR SARTHE" + "codePostal": "57290", + "codeCommune": "57206", + "libelleAcheminement": "FAMECK", + "nomCommune": "FAMECK" }, { - "codePostal": "39360", - "codeCommune": "39585", - "libelleAcheminement": "VULVOZ", - "nomCommune": "VULVOZ" + "codePostal": "65250", + "codeCommune": "65218", + "libelleAcheminement": "HECHES", + "nomCommune": "HECHES" }, { - "codePostal": "33185", - "codeCommune": "33200", - "libelleAcheminement": "LE HAILLAN", - "nomCommune": "LE HAILLAN" + "codePostal": "11440", + "codeCommune": "11285", + "libelleAcheminement": "PEYRIAC DE MER", + "nomCommune": "PEYRIAC DE MER" }, { - "codePostal": "02120", - "codeCommune": "02422", - "libelleAcheminement": "LESQUIELLES ST GERMAIN", - "nomCommune": "LESQUIELLES ST GERMAIN" + "codePostal": "64300", + "codeCommune": "64440", + "libelleAcheminement": "OZENX MONTESTRUCQ", + "nomCommune": "OZENX MONTESTRUCQ" }, { - "codePostal": "61320", - "codeCommune": "61420", - "libelleAcheminement": "STE MARIE LA ROBERT", - "nomCommune": "STE MARIE LA ROBERT" + "codePostal": "54115", + "codeCommune": "54545", + "libelleAcheminement": "VANDELEVILLE", + "nomCommune": "VANDELEVILLE" }, { - "codePostal": "40320", - "codeCommune": "40005", - "libelleAcheminement": "ARBOUCAVE", - "nomCommune": "ARBOUCAVE" + "codePostal": "57600", + "codeCommune": "57222", + "libelleAcheminement": "FOLKLING", + "nomCommune": "FOLKLING" }, { - "codePostal": "33590", - "codeCommune": "33208", - "libelleAcheminement": "JAU DIGNAC ET LOIRAC", - "nomCommune": "JAU DIGNAC ET LOIRAC" + "codePostal": "65380", + "codeCommune": "65220", + "libelleAcheminement": "HIBARETTE", + "nomCommune": "HIBARETTE" }, { - "codePostal": "02380", - "codeCommune": "02423", - "libelleAcheminement": "LEUILLY SOUS COUCY", - "nomCommune": "LEUILLY SOUS COUCY" + "codePostal": "11300", + "codeCommune": "11294", + "libelleAcheminement": "POMY", + "nomCommune": "POMY" }, { - "codePostal": "61320", - "codeCommune": "61424", - "libelleAcheminement": "ST MARTIN DES LANDES", - "nomCommune": "ST MARTIN DES LANDES" + "codePostal": "64150", + "codeCommune": "64443", + "libelleAcheminement": "PARDIES", + "nomCommune": "PARDIES" }, { - "codePostal": "40110", - "codeCommune": "40006", - "libelleAcheminement": "ARENGOSSE", - "nomCommune": "ARENGOSSE" + "codePostal": "54740", + "codeCommune": "54554", + "libelleAcheminement": "VAUDIGNY", + "nomCommune": "VAUDIGNY" }, { - "codePostal": "33650", - "codeCommune": "33213", - "libelleAcheminement": "LA BREDE", - "nomCommune": "LA BREDE" + "codePostal": "57730", + "codeCommune": "57224", + "libelleAcheminement": "FOLSCHVILLER", + "nomCommune": "FOLSCHVILLER" }, { - "codePostal": "02160", - "codeCommune": "02439", - "libelleAcheminement": "LES SEPTVALLONS", - "nomCommune": "LES SEPTVALLONS" + "codePostal": "65190", + "codeCommune": "65222", + "libelleAcheminement": "HITTE", + "nomCommune": "HITTE" }, { - "codePostal": "61300", - "codeCommune": "61432", - "libelleAcheminement": "ST MICHEL TUBOEUF", - "nomCommune": "ST MICHEL TUBOEUF" + "codePostal": "11360", + "codeCommune": "11305", + "libelleAcheminement": "QUINTILLAN", + "nomCommune": "QUINTILLAN" }, { - "codePostal": "40430", - "codeCommune": "40008", - "libelleAcheminement": "ARGELOUSE", - "nomCommune": "ARGELOUSE" + "codePostal": "64460", + "codeCommune": "64454", + "libelleAcheminement": "PONTIACQ VIELLEPINTE", + "nomCommune": "PONTIACQ VIELLEPINTE" }, { - "codePostal": "33680", - "codeCommune": "33214", - "libelleAcheminement": "LACANAU", - "nomCommune": "LACANAU" + "codePostal": "54120", + "codeCommune": "54555", + "libelleAcheminement": "VAXAINVILLE", + "nomCommune": "VAXAINVILLE" }, { - "codePostal": "02160", - "codeCommune": "02439", - "libelleAcheminement": "LES SEPTVALLONS", - "nomCommune": "LES SEPTVALLONS" + "codePostal": "57660", + "codeCommune": "57239", + "libelleAcheminement": "FREYBOUSE", + "nomCommune": "FREYBOUSE" }, { - "codePostal": "61560", - "codeCommune": "61438", - "libelleAcheminement": "ST OUEN DE SECHEROUVRE", - "nomCommune": "ST OUEN DE SECHEROUVRE" + "codePostal": "65310", + "codeCommune": "65223", + "libelleAcheminement": "HORGUES", + "nomCommune": "HORGUES" }, { - "codePostal": "40330", - "codeCommune": "40011", - "libelleAcheminement": "ARSAGUE", - "nomCommune": "ARSAGUE" + "codePostal": "11190", + "codeCommune": "11309", + "libelleAcheminement": "RENNES LE CHATEAU", + "nomCommune": "RENNES LE CHATEAU" }, { - "codePostal": "33680", - "codeCommune": "33214", - "libelleAcheminement": "LACANAU", - "nomCommune": "LACANAU" + "codePostal": "64190", + "codeCommune": "64458", + "libelleAcheminement": "PRECHACQ JOSBAIG", + "nomCommune": "PRECHACQ JOSBAIG" }, { - "codePostal": "02160", - "codeCommune": "02439", - "libelleAcheminement": "LES SEPTVALLONS", - "nomCommune": "LES SEPTVALLONS" + "codePostal": "54840", + "codeCommune": "54557", + "libelleAcheminement": "BOIS DE HAYE", + "nomCommune": "BOIS DE HAYE" }, { - "codePostal": "61360", - "codeCommune": "61450", - "libelleAcheminement": "ST QUENTIN DE BLAVOU", - "nomCommune": "ST QUENTIN DE BLAVOU" + "codePostal": "57800", + "codeCommune": "57240", + "libelleAcheminement": "FREYMING MERLEBACH", + "nomCommune": "FREYMING MERLEBACH" }, { - "codePostal": "40190", - "codeCommune": "40013", - "libelleAcheminement": "ARTHEZ D ARMAGNAC", - "nomCommune": "ARTHEZ D ARMAGNAC" + "codePostal": "65330", + "codeCommune": "65224", + "libelleAcheminement": "HOUEYDETS", + "nomCommune": "HOUEYDETS" }, { - "codePostal": "33138", - "codeCommune": "33229", - "libelleAcheminement": "LANTON", - "nomCommune": "LANTON" + "codePostal": "11220", + "codeCommune": "11311", + "libelleAcheminement": "RIBAUTE", + "nomCommune": "RIBAUTE" }, { - "codePostal": "02140", - "codeCommune": "02444", - "libelleAcheminement": "LUGNY", - "nomCommune": "LUGNY" + "codePostal": "64160", + "codeCommune": "64465", + "libelleAcheminement": "RIUPEYROUS", + "nomCommune": "RIUPEYROUS" }, { - "codePostal": "61320", - "codeCommune": "61453", - "libelleAcheminement": "ST SAUVEUR DE CARROUGES", - "nomCommune": "ST SAUVEUR DE CARROUGES" + "codePostal": "54260", + "codeCommune": "54582", + "libelleAcheminement": "VILLETTE", + "nomCommune": "VILLETTE" }, { - "codePostal": "40310", - "codeCommune": "40030", - "libelleAcheminement": "BAUDIGNAN", - "nomCommune": "BAUDIGNAN" + "codePostal": "57815", + "codeCommune": "57253", + "libelleAcheminement": "GONDREXANGE", + "nomCommune": "GONDREXANGE" }, { - "codePostal": "33620", - "codeCommune": "33230", - "libelleAcheminement": "LAPOUYADE", - "nomCommune": "LAPOUYADE" + "codePostal": "65410", + "codeCommune": "65228", + "libelleAcheminement": "ILHET", + "nomCommune": "ILHET" }, { - "codePostal": "02220", - "codeCommune": "02447", - "libelleAcheminement": "MAAST ET VIOLAINE", - "nomCommune": "MAAST ET VIOLAINE" + "codePostal": "11220", + "codeCommune": "11314", + "libelleAcheminement": "RIEUX EN VAL", + "nomCommune": "RIEUX EN VAL" }, { - "codePostal": "61300", - "codeCommune": "61457", - "libelleAcheminement": "ST SYMPHORIEN DES BRUYERES", - "nomCommune": "ST SYMPHORIEN DES BRUYERES" + "codePostal": "64110", + "codeCommune": "64467", + "libelleAcheminement": "RONTIGNON", + "nomCommune": "RONTIGNON" }, { - "codePostal": "40230", - "codeCommune": "40036", - "libelleAcheminement": "BENESSE MAREMNE", - "nomCommune": "BENESSE MAREMNE" + "codePostal": "54200", + "codeCommune": "54584", + "libelleAcheminement": "VILLEY ST ETIENNE", + "nomCommune": "VILLEY ST ETIENNE" }, { - "codePostal": "33360", - "codeCommune": "33234", - "libelleAcheminement": "LATRESNE", - "nomCommune": "LATRESNE" + "codePostal": "57660", + "codeCommune": "57258", + "libelleAcheminement": "GRENING", + "nomCommune": "GRENING" }, { - "codePostal": "02160", - "codeCommune": "02453", - "libelleAcheminement": "MAIZY", - "nomCommune": "MAIZY" + "codePostal": "65350", + "codeCommune": "65232", + "libelleAcheminement": "JACQUE", + "nomCommune": "JACQUE" }, { - "codePostal": "61600", - "codeCommune": "61463", - "libelleAcheminement": "LES MONTS D ANDAINE", - "nomCommune": "LES MONTS D ANDAINE" + "codePostal": "11140", + "codeCommune": "11321", + "libelleAcheminement": "ROQUEFORT DE SAULT", + "nomCommune": "ROQUEFORT DE SAULT" }, { - "codePostal": "40250", - "codeCommune": "40038", - "libelleAcheminement": "BERGOUEY", - "nomCommune": "BERGOUEY" + "codePostal": "64800", + "codeCommune": "64469", + "libelleAcheminement": "ST ABIT", + "nomCommune": "ST ABIT" }, { - "codePostal": "33480", - "codeCommune": "33248", - "libelleAcheminement": "LISTRAC MEDOC", - "nomCommune": "LISTRAC MEDOC" + "codePostal": "54300", + "codeCommune": "54588", + "libelleAcheminement": "VITRIMONT", + "nomCommune": "VITRIMONT" }, { - "codePostal": "02720", - "codeCommune": "02459", - "libelleAcheminement": "MARCY", - "nomCommune": "MARCY" + "codePostal": "57660", + "codeCommune": "57262", + "libelleAcheminement": "GROSTENQUIN", + "nomCommune": "GROSTENQUIN" }, { - "codePostal": "61150", - "codeCommune": "61473", - "libelleAcheminement": "SEVRAI", - "nomCommune": "SEVRAI" + "codePostal": "65130", + "codeCommune": "65241", + "libelleAcheminement": "LABORDE", + "nomCommune": "LABORDE" }, { - "codePostal": "40270", - "codeCommune": "40049", - "libelleAcheminement": "BORDERES ET LAMENSANS", - "nomCommune": "BORDERES ET LAMENSANS" + "codePostal": "11300", + "codeCommune": "11323", + "libelleAcheminement": "ROQUETAILLADE ET CONILHAC", + "nomCommune": "ROQUETAILLADE ET CONILHAC" }, { - "codePostal": "33570", - "codeCommune": "33261", - "libelleAcheminement": "LUSSAC", - "nomCommune": "LUSSAC" + "codePostal": "64270", + "codeCommune": "64474", + "libelleAcheminement": "ST DOS", + "nomCommune": "ST DOS" }, { - "codePostal": "02120", - "codeCommune": "02469", - "libelleAcheminement": "MARLY GOMONT", - "nomCommune": "MARLY GOMONT" + "codePostal": "54260", + "codeCommune": "54590", + "libelleAcheminement": "VIVIERS SUR CHIERS", + "nomCommune": "VIVIERS SUR CHIERS" }, { - "codePostal": "61200", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "57260", + "codeCommune": "57268", + "libelleAcheminement": "GUEBLING", + "nomCommune": "GUEBLING" }, { - "codePostal": "40090", - "codeCommune": "40051", - "libelleAcheminement": "BOUGUE", - "nomCommune": "BOUGUE" + "codePostal": "65380", + "codeCommune": "65257", + "libelleAcheminement": "LANNE", + "nomCommune": "LANNE" }, { - "codePostal": "33460", - "codeCommune": "33262", - "libelleAcheminement": "MACAU", - "nomCommune": "MACAU" + "codePostal": "11800", + "codeCommune": "11330", + "libelleAcheminement": "RUSTIQUES", + "nomCommune": "RUSTIQUES" }, { - "codePostal": "02500", - "codeCommune": "02470", - "libelleAcheminement": "MARTIGNY", - "nomCommune": "MARTIGNY" + "codePostal": "64560", + "codeCommune": "64475", + "libelleAcheminement": "STE ENGRACE", + "nomCommune": "STE ENGRACE" }, { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "54134", + "codeCommune": "54591", + "libelleAcheminement": "VOINEMONT", + "nomCommune": "VOINEMONT" }, { - "codePostal": "40330", - "codeCommune": "40054", - "libelleAcheminement": "BRASSEMPOUY", - "nomCommune": "BRASSEMPOUY" + "codePostal": "57260", + "codeCommune": "57270", + "libelleAcheminement": "VAL DE BRIDE", + "nomCommune": "VAL DE BRIDE" }, { - "codePostal": "33430", - "codeCommune": "33270", - "libelleAcheminement": "MARIMBAULT", - "nomCommune": "MARIMBAULT" + "codePostal": "65700", + "codeCommune": "65262", + "libelleAcheminement": "LARREULE", + "nomCommune": "LARREULE" }, { - "codePostal": "02860", - "codeCommune": "02471", - "libelleAcheminement": "MARTIGNY COURPIERRE", - "nomCommune": "MARTIGNY COURPIERRE" + "codePostal": "11170", + "codeCommune": "11340", + "libelleAcheminement": "STE EULALIE", + "nomCommune": "STE EULALIE" }, { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "64400", + "codeCommune": "64481", + "libelleAcheminement": "ST GOIN", + "nomCommune": "ST GOIN" }, { - "codePostal": "40320", - "codeCommune": "40057", - "libelleAcheminement": "BUANES", - "nomCommune": "BUANES" + "codePostal": "54740", + "codeCommune": "54597", + "libelleAcheminement": "XIROCOURT", + "nomCommune": "XIROCOURT" }, { - "codePostal": "33790", - "codeCommune": "33277", - "libelleAcheminement": "MASSUGAS", - "nomCommune": "MASSUGAS" + "codePostal": "57320", + "codeCommune": "57273", + "libelleAcheminement": "GUERSTLING", + "nomCommune": "GUERSTLING" }, { - "codePostal": "02700", - "codeCommune": "02474", - "libelleAcheminement": "MENNESSIS", - "nomCommune": "MENNESSIS" + "codePostal": "65350", + "codeCommune": "65265", + "libelleAcheminement": "LASLADES", + "nomCommune": "LASLADES" }, { - "codePostal": "61360", - "codeCommune": "61476", - "libelleAcheminement": "SURE", - "nomCommune": "SURE" + "codePostal": "11250", + "codeCommune": "11344", + "libelleAcheminement": "ST HILAIRE", + "nomCommune": "ST HILAIRE" }, { - "codePostal": "40120", - "codeCommune": "40058", - "libelleAcheminement": "CACHEN", - "nomCommune": "CACHEN" + "codePostal": "64160", + "codeCommune": "64482", + "libelleAcheminement": "ST JAMMES", + "nomCommune": "ST JAMMES" }, { - "codePostal": "33570", - "codeCommune": "33290", - "libelleAcheminement": "MONTAGNE", - "nomCommune": "MONTAGNE" + "codePostal": "55400", + "codeCommune": "55002", + "libelleAcheminement": "ABAUCOURT HAUTECOURT", + "nomCommune": "ABAUCOURT HAUTECOURT" }, { - "codePostal": "02630", - "codeCommune": "02476", - "libelleAcheminement": "MENNEVRET", - "nomCommune": "MENNEVRET" + "codePostal": "57380", + "codeCommune": "57275", + "libelleAcheminement": "GUESSLING HEMERING", + "nomCommune": "GUESSLING HEMERING" }, { - "codePostal": "61600", - "codeCommune": "61483", - "libelleAcheminement": "BAGNOLES DE L ORNE NORMANDIE", - "nomCommune": "BAGNOLES DE L ORNE NORMANDIE" + "codePostal": "65190", + "codeCommune": "65270", + "libelleAcheminement": "LESPOUEY", + "nomCommune": "LESPOUEY" }, { - "codePostal": "40380", - "codeCommune": "40068", - "libelleAcheminement": "CASSEN", - "nomCommune": "CASSEN" + "codePostal": "11260", + "codeCommune": "11346", + "libelleAcheminement": "ST JEAN DE PARACOL", + "nomCommune": "ST JEAN DE PARACOL" }, { - "codePostal": "33570", - "codeCommune": "33290", - "libelleAcheminement": "MONTAGNE", - "nomCommune": "MONTAGNE" + "codePostal": "64220", + "codeCommune": "64484", + "libelleAcheminement": "ST JEAN LE VIEUX", + "nomCommune": "ST JEAN LE VIEUX" }, { - "codePostal": "02200", - "codeCommune": "02477", - "libelleAcheminement": "MERCIN ET VAUX", - "nomCommune": "MERCIN ET VAUX" + "codePostal": "55110", + "codeCommune": "55004", + "libelleAcheminement": "AINCREVILLE", + "nomCommune": "AINCREVILLE" }, { - "codePostal": "61260", - "codeCommune": "61484", - "libelleAcheminement": "VAL AU PERCHE", - "nomCommune": "VAL AU PERCHE" + "codePostal": "57570", + "codeCommune": "57282", + "libelleAcheminement": "HAGEN", + "nomCommune": "HAGEN" }, { - "codePostal": "40260", - "codeCommune": "40075", - "libelleAcheminement": "CASTETS", - "nomCommune": "CASTETS" + "codePostal": "65350", + "codeCommune": "65276", + "libelleAcheminement": "LIZOS", + "nomCommune": "LIZOS" }, { - "codePostal": "33190", - "codeCommune": "33294", - "libelleAcheminement": "MORIZES", - "nomCommune": "MORIZES" + "codePostal": "11300", + "codeCommune": "11355", + "libelleAcheminement": "ST MARTIN DE VILLEREGLAN", + "nomCommune": "ST MARTIN DE VILLEREGLAN" }, { - "codePostal": "02720", - "codeCommune": "02481", - "libelleAcheminement": "MESNIL ST LAURENT", - "nomCommune": "MESNIL ST LAURENT" + "codePostal": "64780", + "codeCommune": "64490", + "libelleAcheminement": "ST MARTIN D ARROSSA", + "nomCommune": "ST MARTIN D ARROSSA" }, { - "codePostal": "61800", - "codeCommune": "61486", - "libelleAcheminement": "TINCHEBRAY BOCAGE", - "nomCommune": "TINCHEBRAY BOCAGE" + "codePostal": "55300", + "codeCommune": "55012", + "libelleAcheminement": "APREMONT LA FORET", + "nomCommune": "APREMONT LA FORET" }, { - "codePostal": "40300", - "codeCommune": "40077", - "libelleAcheminement": "CAUNEILLE", - "nomCommune": "CAUNEILLE" + "codePostal": "57690", + "codeCommune": "57284", + "libelleAcheminement": "HALLERING", + "nomCommune": "HALLERING" }, { - "codePostal": "33350", - "codeCommune": "33296", - "libelleAcheminement": "MOULIETS ET VILLEMARTIN", - "nomCommune": "MOULIETS ET VILLEMARTIN" + "codePostal": "65250", + "codeCommune": "65279", + "libelleAcheminement": "LORTET", + "nomCommune": "LORTET" }, { - "codePostal": "02200", - "codeCommune": "02485", - "libelleAcheminement": "MISSY AUX BOIS", - "nomCommune": "MISSY AUX BOIS" + "codePostal": "11320", + "codeCommune": "11362", + "libelleAcheminement": "ST PAULET", + "nomCommune": "ST PAULET" }, { - "codePostal": "61550", - "codeCommune": "61488", - "libelleAcheminement": "TOUQUETTES", - "nomCommune": "TOUQUETTES" + "codePostal": "64310", + "codeCommune": "64495", + "libelleAcheminement": "ST PEE SUR NIVELLE", + "nomCommune": "ST PEE SUR NIVELLE" }, { - "codePostal": "40250", - "codeCommune": "40078", - "libelleAcheminement": "CAUPENNE", - "nomCommune": "CAUPENNE" + "codePostal": "55300", + "codeCommune": "55012", + "libelleAcheminement": "APREMONT LA FORET", + "nomCommune": "APREMONT LA FORET" }, { - "codePostal": "33410", - "codeCommune": "33299", - "libelleAcheminement": "MOURENS", - "nomCommune": "MOURENS" + "codePostal": "57480", + "codeCommune": "57286", + "libelleAcheminement": "HALSTROFF", + "nomCommune": "HALSTROFF" }, { - "codePostal": "02350", - "codeCommune": "02486", - "libelleAcheminement": "MISSY LES PIERREPONT", - "nomCommune": "MISSY LES PIERREPONT" + "codePostal": "65240", + "codeCommune": "65282", + "libelleAcheminement": "LOUDENVIELLE", + "nomCommune": "LOUDENVIELLE" }, { - "codePostal": "61160", - "codeCommune": "61490", - "libelleAcheminement": "TOURNAI SUR DIVE", - "nomCommune": "TOURNAI SUR DIVE" + "codePostal": "11300", + "codeCommune": "11364", + "libelleAcheminement": "ST POLYCARPE", + "nomCommune": "ST POLYCARPE" }, { - "codePostal": "40090", - "codeCommune": "40081", - "libelleAcheminement": "CERE", - "nomCommune": "CERE" + "codePostal": "64300", + "codeCommune": "64501", + "libelleAcheminement": "SALLESPISSE", + "nomCommune": "SALLESPISSE" }, { - "codePostal": "33750", - "codeCommune": "33303", - "libelleAcheminement": "NERIGEAN", - "nomCommune": "NERIGEAN" + "codePostal": "55700", + "codeCommune": "55025", + "libelleAcheminement": "BAALON", + "nomCommune": "BAALON" }, { - "codePostal": "02880", - "codeCommune": "02487", - "libelleAcheminement": "MISSY SUR AISNE", - "nomCommune": "MISSY SUR AISNE" + "codePostal": "57880", + "codeCommune": "57288", + "libelleAcheminement": "HAM SOUS VARSBERG", + "nomCommune": "HAM SOUS VARSBERG" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "65190", + "codeCommune": "65290", + "libelleAcheminement": "LUC", + "nomCommune": "LUC" }, { - "codePostal": "40210", - "codeCommune": "40085", - "libelleAcheminement": "COMMENSACQ", - "nomCommune": "COMMENSACQ" + "codePostal": "11330", + "codeCommune": "11374", + "libelleAcheminement": "SALZA", + "nomCommune": "SALZA" }, { - "codePostal": "33580", - "codeCommune": "33304", - "libelleAcheminement": "NEUFFONS", - "nomCommune": "NEUFFONS" + "codePostal": "64420", + "codeCommune": "64507", + "libelleAcheminement": "SAUBOLE", + "nomCommune": "SAUBOLE" }, { - "codePostal": "02270", - "codeCommune": "02492", - "libelleAcheminement": "MONCEAU LES LEUPS", - "nomCommune": "MONCEAU LES LEUPS" + "codePostal": "55130", + "codeCommune": "55026", + "libelleAcheminement": "BADONVILLIERS GERAUVILLIERS", + "nomCommune": "BADONVILLIERS GERAUVILLIERS" }, { - "codePostal": "61230", - "codeCommune": "61493", - "libelleAcheminement": "LA TRINITE DES LAITIERS", - "nomCommune": "LA TRINITE DES LAITIERS" + "codePostal": "57590", + "codeCommune": "57292", + "libelleAcheminement": "HANNOCOURT", + "nomCommune": "HANNOCOURT" }, { - "codePostal": "40240", - "codeCommune": "40087", - "libelleAcheminement": "CREON D ARMAGNAC", - "nomCommune": "CREON D ARMAGNAC" + "codePostal": "65320", + "codeCommune": "65292", + "libelleAcheminement": "LUQUET", + "nomCommune": "LUQUET" }, { - "codePostal": "33190", - "codeCommune": "33306", - "libelleAcheminement": "NOAILLAC", - "nomCommune": "NOAILLAC" + "codePostal": "11130", + "codeCommune": "11379", + "libelleAcheminement": "SIGEAN", + "nomCommune": "SIGEAN" }, { - "codePostal": "02840", - "codeCommune": "02493", - "libelleAcheminement": "MONCEAU LE WAAST", - "nomCommune": "MONCEAU LE WAAST" + "codePostal": "64390", + "codeCommune": "64513", + "libelleAcheminement": "SAUVETERRE DE BEARN", + "nomCommune": "SAUVETERRE DE BEARN" }, { - "codePostal": "61170", - "codeCommune": "61499", - "libelleAcheminement": "LES VENTES DE BOURSE", - "nomCommune": "LES VENTES DE BOURSE" + "codePostal": "55110", + "codeCommune": "55028", + "libelleAcheminement": "BANTHEVILLE", + "nomCommune": "BANTHEVILLE" }, { - "codePostal": "40100", - "codeCommune": "40088", - "libelleAcheminement": "DAX", - "nomCommune": "DAX" + "codePostal": "57870", + "codeCommune": "57299", + "libelleAcheminement": "HARTZVILLER", + "nomCommune": "HARTZVILLER" }, { - "codePostal": "33790", - "codeCommune": "33316", - "libelleAcheminement": "PELLEGRUE", - "nomCommune": "PELLEGRUE" + "codePostal": "65220", + "codeCommune": "65293", + "libelleAcheminement": "LUSTAR", + "nomCommune": "LUSTAR" }, { - "codePostal": "02500", - "codeCommune": "02495", - "libelleAcheminement": "MONDREPUIS", - "nomCommune": "MONDREPUIS" + "codePostal": "11330", + "codeCommune": "11384", + "libelleAcheminement": "SOULATGE", + "nomCommune": "SOULATGE" }, { - "codePostal": "61360", - "codeCommune": "61502", - "libelleAcheminement": "VIDAI", - "nomCommune": "VIDAI" + "codePostal": "64350", + "codeCommune": "64517", + "libelleAcheminement": "SEMEACQ BLACHON", + "nomCommune": "SEMEACQ BLACHON" }, { - "codePostal": "40180", - "codeCommune": "40113", - "libelleAcheminement": "GOOS", - "nomCommune": "GOOS" + "codePostal": "55600", + "codeCommune": "55034", + "libelleAcheminement": "BAZEILLES SUR OTHAIN", + "nomCommune": "BAZEILLES SUR OTHAIN" }, { - "codePostal": "33570", - "codeCommune": "33320", - "libelleAcheminement": "PETIT PALAIS ET CORNEMPS", - "nomCommune": "PETIT PALAIS ET CORNEMPS" + "codePostal": "57280", + "codeCommune": "57303", + "libelleAcheminement": "HAUCONCOURT", + "nomCommune": "HAUCONCOURT" }, { - "codePostal": "02210", - "codeCommune": "02507", - "libelleAcheminement": "MONTGRU ST HILAIRE", - "nomCommune": "MONTGRU ST HILAIRE" + "codePostal": "65300", + "codeCommune": "65294", + "libelleAcheminement": "LUTILHOUS", + "nomCommune": "LUTILHOUS" }, { - "codePostal": "61300", - "codeCommune": "61510", - "libelleAcheminement": "VITRAI SOUS LAIGLE", - "nomCommune": "VITRAI SOUS LAIGLE" + "codePostal": "11320", + "codeCommune": "11385", + "libelleAcheminement": "SOUPEX", + "nomCommune": "SOUPEX" }, { - "codePostal": "40465", - "codeCommune": "40115", - "libelleAcheminement": "GOUSSE", - "nomCommune": "GOUSSE" + "codePostal": "64121", + "codeCommune": "64519", + "libelleAcheminement": "SERRES CASTET", + "nomCommune": "SERRES CASTET" }, { - "codePostal": "33500", - "codeCommune": "33328", - "libelleAcheminement": "POMEROL", - "nomCommune": "POMEROL" + "codePostal": "55170", + "codeCommune": "55035", + "libelleAcheminement": "BAZINCOURT SUR SAULX", + "nomCommune": "BAZINCOURT SUR SAULX" }, { - "codePostal": "02290", - "codeCommune": "02514", - "libelleAcheminement": "MONTIGNY LENGRAIN", - "nomCommune": "MONTIGNY LENGRAIN" + "codePostal": "57400", + "codeCommune": "57304", + "libelleAcheminement": "HAUT CLOCHER", + "nomCommune": "HAUT CLOCHER" }, { - "codePostal": "61210", - "codeCommune": "61512", - "libelleAcheminement": "LES YVETEAUX", - "nomCommune": "LES YVETEAUX" + "codePostal": "65220", + "codeCommune": "65308", + "libelleAcheminement": "MAZEROLLES", + "nomCommune": "MAZEROLLES" }, { - "codePostal": "40400", - "codeCommune": "40116", - "libelleAcheminement": "GOUTS", - "nomCommune": "GOUTS" + "codePostal": "11220", + "codeCommune": "11386", + "libelleAcheminement": "TALAIRAN", + "nomCommune": "TALAIRAN" }, { - "codePostal": "33860", - "codeCommune": "33351", - "libelleAcheminement": "REIGNAC", - "nomCommune": "REIGNAC" + "codePostal": "64260", + "codeCommune": "64522", + "libelleAcheminement": "SEVIGNACQ MEYRACQ", + "nomCommune": "SEVIGNACQ MEYRACQ" }, { - "codePostal": "02330", - "codeCommune": "02518", - "libelleAcheminement": "MONTLEVON", - "nomCommune": "MONTLEVON" + "codePostal": "55700", + "codeCommune": "55037", + "libelleAcheminement": "BEAUFORT EN ARGONNE", + "nomCommune": "BEAUFORT EN ARGONNE" }, { - "codePostal": "62116", - "codeCommune": "62002", - "libelleAcheminement": "ABLAINZEVELLE", - "nomCommune": "ABLAINZEVELLE" + "codePostal": "57320", + "codeCommune": "57309", + "libelleAcheminement": "HEINING LES BOUZONVILLE", + "nomCommune": "HEINING LES BOUZONVILLE" }, { - "codePostal": "40290", - "codeCommune": "40118", - "libelleAcheminement": "HABAS", - "nomCommune": "HABAS" + "codePostal": "65200", + "codeCommune": "65310", + "libelleAcheminement": "MERILHEU", + "nomCommune": "MERILHEU" }, { - "codePostal": "33410", - "codeCommune": "33355", - "libelleAcheminement": "RIONS", - "nomCommune": "RIONS" + "codePostal": "11580", + "codeCommune": "11389", + "libelleAcheminement": "TERROLES", + "nomCommune": "TERROLES" }, { - "codePostal": "02340", - "codeCommune": "02519", - "libelleAcheminement": "MONTLOUE", - "nomCommune": "MONTLOUE" + "codePostal": "64780", + "codeCommune": "64528", + "libelleAcheminement": "SUHESCUN", + "nomCommune": "SUHESCUN" }, { - "codePostal": "62217", - "codeCommune": "62004", - "libelleAcheminement": "ACHICOURT", - "nomCommune": "ACHICOURT" + "codePostal": "55100", + "codeCommune": "55039", + "libelleAcheminement": "BEAUMONT EN VERDUNOIS", + "nomCommune": "BEAUMONT EN VERDUNOIS" }, { - "codePostal": "40700", - "codeCommune": "40119", - "libelleAcheminement": "HAGETMAU", - "nomCommune": "HAGETMAU" + "codePostal": "57580", + "codeCommune": "57319", + "libelleAcheminement": "HERNY", + "nomCommune": "HERNY" }, { - "codePostal": "33126", - "codeCommune": "33356", - "libelleAcheminement": "LA RIVIERE", - "nomCommune": "LA RIVIERE" + "codePostal": "65330", + "codeCommune": "65318", + "libelleAcheminement": "MONTASTRUC", + "nomCommune": "MONTASTRUC" }, { - "codePostal": "02310", - "codeCommune": "02521", - "libelleAcheminement": "MONTREUIL AUX LIONS", - "nomCommune": "MONTREUIL AUX LIONS" + "codePostal": "11200", + "codeCommune": "11390", + "libelleAcheminement": "THEZAN DES CORBIERES", + "nomCommune": "THEZAN DES CORBIERES" }, { - "codePostal": "62850", - "codeCommune": "62024", - "libelleAcheminement": "ALQUINES", - "nomCommune": "ALQUINES" + "codePostal": "64120", + "codeCommune": "64539", + "libelleAcheminement": "UHART MIXE", + "nomCommune": "UHART MIXE" }, { - "codePostal": "40190", - "codeCommune": "40127", - "libelleAcheminement": "HONTANX", - "nomCommune": "HONTANX" + "codePostal": "55250", + "codeCommune": "55040", + "libelleAcheminement": "BEAUSITE", + "nomCommune": "BEAUSITE" }, { - "codePostal": "33240", - "codeCommune": "33366", - "libelleAcheminement": "ST ANDRE DE CUBZAC", - "nomCommune": "ST ANDRE DE CUBZAC" + "codePostal": "57220", + "codeCommune": "57326", + "libelleAcheminement": "HINCKANGE", + "nomCommune": "HINCKANGE" }, { - "codePostal": "02100", - "codeCommune": "02525", - "libelleAcheminement": "MORCOURT", - "nomCommune": "MORCOURT" + "codePostal": "65150", + "codeCommune": "65323", + "libelleAcheminement": "MONTSERIE", + "nomCommune": "MONTSERIE" }, { - "codePostal": "62310", - "codeCommune": "62026", - "libelleAcheminement": "AMBRICOURT", - "nomCommune": "AMBRICOURT" + "codePostal": "11200", + "codeCommune": "11393", + "libelleAcheminement": "TOUROUZELLE", + "nomCommune": "TOUROUZELLE" }, { - "codePostal": "40230", - "codeCommune": "40129", - "libelleAcheminement": "JOSSE", - "nomCommune": "JOSSE" + "codePostal": "64430", + "codeCommune": "64543", + "libelleAcheminement": "UREPEL", + "nomCommune": "UREPEL" }, { - "codePostal": "33660", - "codeCommune": "33373", - "libelleAcheminement": "ST ANTOINE SUR L ISLE", - "nomCommune": "ST ANTOINE SUR L ISLE" + "codePostal": "55250", + "codeCommune": "55040", + "libelleAcheminement": "BEAUSITE", + "nomCommune": "BEAUSITE" }, { - "codePostal": "02290", - "codeCommune": "02527", - "libelleAcheminement": "MORSAIN", - "nomCommune": "MORSAIN" + "codePostal": "57405", + "codeCommune": "57333", + "libelleAcheminement": "HOMMARTING", + "nomCommune": "HOMMARTING" }, { - "codePostal": "62340", - "codeCommune": "62031", - "libelleAcheminement": "ANDRES", - "nomCommune": "ANDRES" + "codePostal": "65350", + "codeCommune": "65332", + "libelleAcheminement": "OLEAC DEBAT", + "nomCommune": "OLEAC DEBAT" }, { - "codePostal": "40700", - "codeCommune": "40130", - "libelleAcheminement": "LABASTIDE CHALOSSE", - "nomCommune": "LABASTIDE CHALOSSE" + "codePostal": "11350", + "codeCommune": "11401", + "libelleAcheminement": "TUCHAN", + "nomCommune": "TUCHAN" }, { - "codePostal": "33160", - "codeCommune": "33376", - "libelleAcheminement": "ST AUBIN DE MEDOC", - "nomCommune": "ST AUBIN DE MEDOC" + "codePostal": "64160", + "codeCommune": "64544", + "libelleAcheminement": "UROST", + "nomCommune": "UROST" }, { - "codePostal": "02600", - "codeCommune": "02528", - "libelleAcheminement": "MORTEFONTAINE", - "nomCommune": "MORTEFONTAINE" + "codePostal": "55230", + "codeCommune": "55053", + "libelleAcheminement": "BILLY SOUS MANGIENNES", + "nomCommune": "BILLY SOUS MANGIENNES" }, { - "codePostal": "62580", - "codeCommune": "62039", - "libelleAcheminement": "ARLEUX EN GOHELLE", - "nomCommune": "ARLEUX EN GOHELLE" + "codePostal": "57870", + "codeCommune": "57334", + "libelleAcheminement": "HOMMERT", + "nomCommune": "HOMMERT" }, { - "codePostal": "40240", - "codeCommune": "40131", - "libelleAcheminement": "LABASTIDE D ARMAGNAC", - "nomCommune": "LABASTIDE D ARMAGNAC" + "codePostal": "65100", + "codeCommune": "65343", + "libelleAcheminement": "OSSEN", + "nomCommune": "OSSEN" }, { - "codePostal": "33330", - "codeCommune": "33384", - "libelleAcheminement": "ST CHRISTOPHE DES BARDES", - "nomCommune": "ST CHRISTOPHE DES BARDES" + "codePostal": "11250", + "codeCommune": "11408", + "libelleAcheminement": "VERZEILLE", + "nomCommune": "VERZEILLE" }, { - "codePostal": "02160", - "codeCommune": "02531", - "libelleAcheminement": "MOUSSY VERNEUIL", - "nomCommune": "MOUSSY VERNEUIL" + "codePostal": "64122", + "codeCommune": "64545", + "libelleAcheminement": "URRUGNE", + "nomCommune": "URRUGNE" }, { - "codePostal": "62260", - "codeCommune": "62048", - "libelleAcheminement": "AUCHEL", - "nomCommune": "AUCHEL" + "codePostal": "55400", + "codeCommune": "55057", + "libelleAcheminement": "BOINVILLE EN WOEVRE", + "nomCommune": "BOINVILLE EN WOEVRE" }, { - "codePostal": "40210", - "codeCommune": "40134", - "libelleAcheminement": "LABOUHEYRE", - "nomCommune": "LABOUHEYRE" + "codePostal": "57820", + "codeCommune": "57339", + "libelleAcheminement": "HULTEHOUSE", + "nomCommune": "HULTEHOUSE" }, { - "codePostal": "33230", - "codeCommune": "33385", - "libelleAcheminement": "ST CHRISTOPHE DE DOUBLE", - "nomCommune": "ST CHRISTOPHE DE DOUBLE" + "codePostal": "65100", + "codeCommune": "65348", + "libelleAcheminement": "OURDIS COTDOUSSAN", + "nomCommune": "OURDIS COTDOUSSAN" }, { - "codePostal": "02210", - "codeCommune": "02533", - "libelleAcheminement": "MURET ET CROUTTES", - "nomCommune": "MURET ET CROUTTES" + "codePostal": "11600", + "codeCommune": "11410", + "libelleAcheminement": "VILLALIER", + "nomCommune": "VILLALIER" }, { - "codePostal": "62138", - "codeCommune": "62051", - "libelleAcheminement": "AUCHY LES MINES", - "nomCommune": "AUCHY LES MINES" + "codePostal": "64230", + "codeCommune": "64549", + "libelleAcheminement": "UZEIN", + "nomCommune": "UZEIN" }, { - "codePostal": "40270", - "codeCommune": "40145", - "libelleAcheminement": "LARRIVIERE ST SAVIN", - "nomCommune": "LARRIVIERE ST SAVIN" + "codePostal": "55300", + "codeCommune": "55062", + "libelleAcheminement": "BOUCONVILLE SUR MADT", + "nomCommune": "BOUCONVILLE SUR MADT" }, { - "codePostal": "33710", - "codeCommune": "33388", - "libelleAcheminement": "ST CIERS DE CANESSE", - "nomCommune": "ST CIERS DE CANESSE" + "codePostal": "57970", + "codeCommune": "57345", + "libelleAcheminement": "INGLANGE", + "nomCommune": "INGLANGE" }, { - "codePostal": "02200", - "codeCommune": "02536", - "libelleAcheminement": "NAMPTEUIL SOUS MURET", - "nomCommune": "NAMPTEUIL SOUS MURET" + "codePostal": "65100", + "codeCommune": "65349", + "libelleAcheminement": "OURDON", + "nomCommune": "OURDON" }, { - "codePostal": "62116", - "codeCommune": "62068", - "libelleAcheminement": "AYETTE", - "nomCommune": "AYETTE" + "codePostal": "11580", + "codeCommune": "11412", + "libelleAcheminement": "VILLARDEBELLE", + "nomCommune": "VILLARDEBELLE" }, { - "codePostal": "40250", - "codeCommune": "40153", - "libelleAcheminement": "LE LEUY", - "nomCommune": "LE LEUY" + "codePostal": "65260", + "codeCommune": "65001", + "libelleAcheminement": "ADAST", + "nomCommune": "ADAST" }, { - "codePostal": "33910", - "codeCommune": "33393", - "libelleAcheminement": "ST DENIS DE PILE", - "nomCommune": "ST DENIS DE PILE" + "codePostal": "55240", + "codeCommune": "55063", + "libelleAcheminement": "BOULIGNY", + "nomCommune": "BOULIGNY" }, { - "codePostal": "02210", - "codeCommune": "02538", - "libelleAcheminement": "NANTEUIL NOTRE DAME", - "nomCommune": "NANTEUIL NOTRE DAME" + "codePostal": "57480", + "codeCommune": "57364", + "libelleAcheminement": "KIRSCH LES SIERCK", + "nomCommune": "KIRSCH LES SIERCK" }, { - "codePostal": "62810", - "codeCommune": "62084", - "libelleAcheminement": "BARLY", - "nomCommune": "BARLY" + "codePostal": "65100", + "codeCommune": "65355", + "libelleAcheminement": "PAREAC", + "nomCommune": "PAREAC" }, { - "codePostal": "40260", - "codeCommune": "40155", - "libelleAcheminement": "LINXE", - "nomCommune": "LINXE" + "codePostal": "11220", + "codeCommune": "11414", + "libelleAcheminement": "VILLAR EN VAL", + "nomCommune": "VILLAR EN VAL" }, { - "codePostal": "33330", - "codeCommune": "33396", - "libelleAcheminement": "ST ETIENNE DE LISSE", - "nomCommune": "ST ETIENNE DE LISSE" + "codePostal": "65240", + "codeCommune": "65003", + "libelleAcheminement": "ADERVIELLE POUCHERGUES", + "nomCommune": "ADERVIELLE POUCHERGUES" }, { - "codePostal": "02450", - "codeCommune": "02548", - "libelleAcheminement": "LA NEUVILLE LES DORENGT", - "nomCommune": "LA NEUVILLE LES DORENGT" + "codePostal": "55270", + "codeCommune": "55065", + "libelleAcheminement": "BOUREUILLES", + "nomCommune": "BOUREUILLES" }, { - "codePostal": "62910", - "codeCommune": "62087", - "libelleAcheminement": "BAYENGHEM LES EPERLECQUES", - "nomCommune": "BAYENGHEM LES EPERLECQUES" + "codePostal": "57430", + "codeCommune": "57366", + "libelleAcheminement": "KIRVILLER", + "nomCommune": "KIRVILLER" }, { - "codePostal": "40410", - "codeCommune": "40156", - "libelleAcheminement": "LIPOSTHEY", - "nomCommune": "LIPOSTHEY" + "codePostal": "65400", + "codeCommune": "65371", + "libelleAcheminement": "PRECHAC", + "nomCommune": "PRECHAC" }, { - "codePostal": "33350", - "codeCommune": "33401", - "libelleAcheminement": "STE FLORENCE", - "nomCommune": "STE FLORENCE" + "codePostal": "11250", + "codeCommune": "11415", + "libelleAcheminement": "VILLAR ST ANSELME", + "nomCommune": "VILLAR ST ANSELME" }, { - "codePostal": "02860", - "codeCommune": "02550", - "libelleAcheminement": "NEUVILLE SUR AILETTE", - "nomCommune": "NEUVILLE SUR AILETTE" + "codePostal": "65400", + "codeCommune": "65004", + "libelleAcheminement": "AGOS VIDALOS", + "nomCommune": "AGOS VIDALOS" }, { - "codePostal": "62990", - "codeCommune": "62100", - "libelleAcheminement": "BEAURAINVILLE", - "nomCommune": "BEAURAINVILLE" + "codePostal": "55500", + "codeCommune": "55067", + "libelleAcheminement": "BOVIOLLES", + "nomCommune": "BOVIOLLES" }, { - "codePostal": "40240", - "codeCommune": "40158", - "libelleAcheminement": "LOSSE", - "nomCommune": "LOSSE" + "codePostal": "57970", + "codeCommune": "57370", + "libelleAcheminement": "KOENIGSMACKER", + "nomCommune": "KOENIGSMACKER" }, { - "codePostal": "33670", - "codeCommune": "33408", - "libelleAcheminement": "ST GENES DE LOMBAUD", - "nomCommune": "ST GENES DE LOMBAUD" + "codePostal": "65220", + "codeCommune": "65374", + "libelleAcheminement": "PUYDARRIEUX", + "nomCommune": "PUYDARRIEUX" }, { - "codePostal": "02310", - "codeCommune": "02555", - "libelleAcheminement": "NOGENT L ARTAUD", - "nomCommune": "NOGENT L ARTAUD" + "codePostal": "11300", + "codeCommune": "11417", + "libelleAcheminement": "VILLARZEL DU RAZES", + "nomCommune": "VILLARZEL DU RAZES" }, { - "codePostal": "62130", - "codeCommune": "62101", - "libelleAcheminement": "BEAUVOIS", - "nomCommune": "BEAUVOIS" + "codePostal": "65140", + "codeCommune": "65013", + "libelleAcheminement": "ANSOST", + "nomCommune": "ANSOST" }, { - "codePostal": "40630", - "codeCommune": "40165", - "libelleAcheminement": "LUGLON", - "nomCommune": "LUGLON" + "codePostal": "55100", + "codeCommune": "55070", + "libelleAcheminement": "BRABANT SUR MEUSE", + "nomCommune": "BRABANT SUR MEUSE" }, { - "codePostal": "33620", - "codeCommune": "33439", - "libelleAcheminement": "ST MARIENS", - "nomCommune": "ST MARIENS" + "codePostal": "57970", + "codeCommune": "57372", + "libelleAcheminement": "KUNTZIG", + "nomCommune": "KUNTZIG" }, { - "codePostal": "02340", - "codeCommune": "02556", - "libelleAcheminement": "NOIRCOURT", - "nomCommune": "NOIRCOURT" + "codePostal": "65140", + "codeCommune": "65375", + "libelleAcheminement": "RABASTENS DE BIGORRE", + "nomCommune": "RABASTENS DE BIGORRE" }, { - "codePostal": "62240", - "codeCommune": "62102", - "libelleAcheminement": "BECOURT", - "nomCommune": "BECOURT" + "codePostal": "11150", + "codeCommune": "11418", + "libelleAcheminement": "VILLASAVARY", + "nomCommune": "VILLASAVARY" }, { - "codePostal": "40270", - "codeCommune": "40166", - "libelleAcheminement": "LUSSAGNET", - "nomCommune": "LUSSAGNET" + "codePostal": "65170", + "codeCommune": "65017", + "libelleAcheminement": "ARAGNOUET", + "nomCommune": "ARAGNOUET" }, { - "codePostal": "33540", - "codeCommune": "33443", - "libelleAcheminement": "ST MARTIN DE LERM", - "nomCommune": "ST MARTIN DE LERM" + "codePostal": "55200", + "codeCommune": "55085", + "libelleAcheminement": "BROUSSEY RAULECOURT", + "nomCommune": "BROUSSEY RAULECOURT" }, { - "codePostal": "02860", - "codeCommune": "02561", - "libelleAcheminement": "NOUVION LE VINEUX", - "nomCommune": "NOUVION LE VINEUX" + "codePostal": "57810", + "codeCommune": "57375", + "libelleAcheminement": "LAGARDE", + "nomCommune": "LAGARDE" }, { - "codePostal": "62134", - "codeCommune": "62109", - "libelleAcheminement": "BERGUENEUSE", - "nomCommune": "BERGUENEUSE" + "codePostal": "65300", + "codeCommune": "65377", + "libelleAcheminement": "REJAUMONT", + "nomCommune": "REJAUMONT" }, { - "codePostal": "40250", - "codeCommune": "40177", - "libelleAcheminement": "MAYLIS", - "nomCommune": "MAYLIS" + "codePostal": "11570", + "codeCommune": "11423", + "libelleAcheminement": "VILLEFLOURE", + "nomCommune": "VILLEFLOURE" }, { - "codePostal": "33910", - "codeCommune": "33445", - "libelleAcheminement": "ST MARTIN DU BOIS", - "nomCommune": "ST MARTIN DU BOIS" + "codePostal": "65670", + "codeCommune": "65028", + "libelleAcheminement": "ARNE", + "nomCommune": "ARNE" }, { - "codePostal": "02100", - "codeCommune": "02571", - "libelleAcheminement": "OMISSY", - "nomCommune": "OMISSY" + "codePostal": "55200", + "codeCommune": "55085", + "libelleAcheminement": "BROUSSEY RAULECOURT", + "nomCommune": "BROUSSEY RAULECOURT" }, { - "codePostal": "62810", - "codeCommune": "62111", - "libelleAcheminement": "BERLENCOURT LE CAUROY", - "nomCommune": "BERLENCOURT LE CAUROY" + "codePostal": "57660", + "codeCommune": "57384", + "libelleAcheminement": "LANING", + "nomCommune": "LANING" }, { - "codePostal": "40190", - "codeCommune": "40193", - "libelleAcheminement": "MONTEGUT", - "nomCommune": "MONTEGUT" + "codePostal": "65590", + "codeCommune": "65379", + "libelleAcheminement": "RIS", + "nomCommune": "RIS" }, { - "codePostal": "33230", - "codeCommune": "33447", - "libelleAcheminement": "ST MEDARD DE GUIZIERES", - "nomCommune": "ST MEDARD DE GUIZIERES" + "codePostal": "11310", + "codeCommune": "11428", + "libelleAcheminement": "VILLEMAGNE", + "nomCommune": "VILLEMAGNE" }, { - "codePostal": "02370", - "codeCommune": "02577", - "libelleAcheminement": "OSTEL", - "nomCommune": "OSTEL" + "codePostal": "65400", + "codeCommune": "65032", + "libelleAcheminement": "ARRENS MARSOUS", + "nomCommune": "ARRENS MARSOUS" }, { - "codePostal": "62450", - "codeCommune": "62121", - "libelleAcheminement": "BEUGNATRE", - "nomCommune": "BEUGNATRE" + "codePostal": "55290", + "codeCommune": "55087", + "libelleAcheminement": "BURE", + "nomCommune": "BURE" }, { - "codePostal": "40410", - "codeCommune": "40200", - "libelleAcheminement": "MOUSTEY", - "nomCommune": "MOUSTEY" + "codePostal": "57620", + "codeCommune": "57390", + "libelleAcheminement": "LEMBERG", + "nomCommune": "LEMBERG" }, { - "codePostal": "33650", - "codeCommune": "33454", - "libelleAcheminement": "ST MORILLON", - "nomCommune": "ST MORILLON" + "codePostal": "65350", + "codeCommune": "65380", + "libelleAcheminement": "SABALOS", + "nomCommune": "SABALOS" }, { - "codePostal": "02210", - "codeCommune": "02579", - "libelleAcheminement": "OULCHY LA VILLE", - "nomCommune": "OULCHY LA VILLE" + "codePostal": "11360", + "codeCommune": "11431", + "libelleAcheminement": "VILLENEUVE LES CORBIERES", + "nomCommune": "VILLENEUVE LES CORBIERES" }, { - "codePostal": "62170", - "codeCommune": "62124", - "libelleAcheminement": "BEUTIN", - "nomCommune": "BEUTIN" + "codePostal": "65200", + "codeCommune": "65043", + "libelleAcheminement": "ASTUGUE", + "nomCommune": "ASTUGUE" }, { - "codePostal": "40320", - "codeCommune": "40219", - "libelleAcheminement": "PAYROS CAZAUTETS", - "nomCommune": "PAYROS CAZAUTETS" + "codePostal": "55300", + "codeCommune": "55093", + "libelleAcheminement": "BUXIERES SOUS LES COTES", + "nomCommune": "BUXIERES SOUS LES COTES" }, { - "codePostal": "33210", - "codeCommune": "33457", - "libelleAcheminement": "ST PARDON DE CONQUES", - "nomCommune": "ST PARDON DE CONQUES" + "codePostal": "57630", + "codeCommune": "57399", + "libelleAcheminement": "LEZEY", + "nomCommune": "LEZEY" }, { - "codePostal": "02000", - "codeCommune": "02589", - "libelleAcheminement": "PARGNY FILAIN", - "nomCommune": "PARGNY FILAIN" + "codePostal": "65220", + "codeCommune": "65383", + "libelleAcheminement": "SADOURNIN", + "nomCommune": "SADOURNIN" }, { - "codePostal": "62138", - "codeCommune": "62132", - "libelleAcheminement": "BILLY BERCLAU", - "nomCommune": "BILLY BERCLAU" + "codePostal": "11150", + "codeCommune": "11434", + "libelleAcheminement": "VILLEPINTE", + "nomCommune": "VILLEPINTE" }, { - "codePostal": "40380", - "codeCommune": "40235", - "libelleAcheminement": "POYANNE", - "nomCommune": "POYANNE" + "codePostal": "65380", + "codeCommune": "65052", + "libelleAcheminement": "AVERAN", + "nomCommune": "AVERAN" }, { - "codePostal": "33350", - "codeCommune": "33460", - "libelleAcheminement": "ST PEY DE CASTETS", - "nomCommune": "ST PEY DE CASTETS" + "codePostal": "55300", + "codeCommune": "55093", + "libelleAcheminement": "BUXIERES SOUS LES COTES", + "nomCommune": "BUXIERES SOUS LES COTES" }, { - "codePostal": "02240", - "codeCommune": "02592", - "libelleAcheminement": "PARPEVILLE", - "nomCommune": "PARPEVILLE" + "codePostal": "57660", + "codeCommune": "57409", + "libelleAcheminement": "LIXING LES ST AVOLD", + "nomCommune": "LIXING LES ST AVOLD" }, { - "codePostal": "62420", - "codeCommune": "62133", - "libelleAcheminement": "BILLY MONTIGNY", - "nomCommune": "BILLY MONTIGNY" + "codePostal": "65100", + "codeCommune": "65386", + "libelleAcheminement": "ST CREAC", + "nomCommune": "ST CREAC" }, { - "codePostal": "40310", - "codeCommune": "40242", - "libelleAcheminement": "RIMBEZ ET BAUDIETS", - "nomCommune": "RIMBEZ ET BAUDIETS" + "codePostal": "11150", + "codeCommune": "11438", + "libelleAcheminement": "VILLESISCLE", + "nomCommune": "VILLESISCLE" }, { - "codePostal": "33660", - "codeCommune": "33472", - "libelleAcheminement": "ST SAUVEUR DE PUYNORMAND", - "nomCommune": "ST SAUVEUR DE PUYNORMAND" + "codePostal": "65130", + "codeCommune": "65054", + "libelleAcheminement": "AVEZAC PRAT LAHITTE", + "nomCommune": "AVEZAC PRAT LAHITTE" }, { - "codePostal": "02320", - "codeCommune": "02602", - "libelleAcheminement": "PINON", - "nomCommune": "PINON" + "codePostal": "55140", + "codeCommune": "55097", + "libelleAcheminement": "CHALAINES", + "nomCommune": "CHALAINES" }, { - "codePostal": "62770", - "codeCommune": "62142", - "libelleAcheminement": "BLINGEL", - "nomCommune": "BLINGEL" + "codePostal": "57740", + "codeCommune": "57413", + "libelleAcheminement": "LONGEVILLE LES ST AVOLD", + "nomCommune": "LONGEVILLE LES ST AVOLD" }, { - "codePostal": "40370", - "codeCommune": "40243", - "libelleAcheminement": "RION DES LANDES", - "nomCommune": "RION DES LANDES" + "codePostal": "65500", + "codeCommune": "65390", + "libelleAcheminement": "ST LEZER", + "nomCommune": "ST LEZER" }, { - "codePostal": "33660", - "codeCommune": "33478", - "libelleAcheminement": "ST SEURIN SUR L ISLE", - "nomCommune": "ST SEURIN SUR L ISLE" + "codePostal": "11170", + "codeCommune": "11439", + "libelleAcheminement": "VILLESPY", + "nomCommune": "VILLESPY" }, { - "codePostal": "02160", - "codeCommune": "02612", - "libelleAcheminement": "PONT ARCY", - "nomCommune": "PONT ARCY" + "codePostal": "65200", + "codeCommune": "65059", + "libelleAcheminement": "BAGNERES DE BIGORRE", + "nomCommune": "BAGNERES DE BIGORRE" }, { - "codePostal": "62960", - "codeCommune": "62153", - "libelleAcheminement": "BOMY", - "nomCommune": "BOMY" + "codePostal": "55140", + "codeCommune": "55100", + "libelleAcheminement": "CHAMPOUGNY", + "nomCommune": "CHAMPOUGNY" }, { - "codePostal": "40800", - "codeCommune": "40247", - "libelleAcheminement": "ST AGNET", - "nomCommune": "ST AGNET" + "codePostal": "57420", + "codeCommune": "57416", + "libelleAcheminement": "LORRY MARDIGNY", + "nomCommune": "LORRY MARDIGNY" }, { - "codePostal": "33350", - "codeCommune": "33499", - "libelleAcheminement": "LES SALLES DE CASTILLON", - "nomCommune": "LES SALLES DE CASTILLON" + "codePostal": "65370", + "codeCommune": "65391", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "02490", - "codeCommune": "02615", - "libelleAcheminement": "PONTRUET", - "nomCommune": "PONTRUET" + "codePostal": "12300", + "codeCommune": "12004", + "libelleAcheminement": "ALMONT LES JUNIES", + "nomCommune": "ALMONT LES JUNIES" }, { - "codePostal": "62270", - "codeCommune": "62163", - "libelleAcheminement": "BOURET SUR CANCHE", - "nomCommune": "BOURET SUR CANCHE" + "codePostal": "65710", + "codeCommune": "65059", + "libelleAcheminement": "BAGNERES DE BIGORRE", + "nomCommune": "BAGNERES DE BIGORRE" }, { - "codePostal": "40390", - "codeCommune": "40248", - "libelleAcheminement": "ST ANDRE DE SEIGNANX", - "nomCommune": "ST ANDRE DE SEIGNANX" + "codePostal": "55120", + "codeCommune": "55117", + "libelleAcheminement": "CLERMONT EN ARGONNE", + "nomCommune": "CLERMONT EN ARGONNE" }, { - "codePostal": "33210", - "codeCommune": "33504", - "libelleAcheminement": "SAUTERNES", - "nomCommune": "SAUTERNES" + "codePostal": "57510", + "codeCommune": "57419", + "libelleAcheminement": "LOUPERSHOUSE", + "nomCommune": "LOUPERSHOUSE" }, { - "codePostal": "02270", - "codeCommune": "02617", - "libelleAcheminement": "POUILLY SUR SERRE", - "nomCommune": "POUILLY SUR SERRE" + "codePostal": "65370", + "codeCommune": "65398", + "libelleAcheminement": "SALECHAN", + "nomCommune": "SALECHAN" }, { - "codePostal": "62134", - "codeCommune": "62171", - "libelleAcheminement": "BOYAVAL", - "nomCommune": "BOYAVAL" + "codePostal": "12260", + "codeCommune": "12007", + "libelleAcheminement": "AMBEYRAC", + "nomCommune": "AMBEYRAC" }, { - "codePostal": "40700", - "codeCommune": "40253", - "libelleAcheminement": "ST CRICQ CHALOSSE", - "nomCommune": "ST CRICQ CHALOSSE" + "codePostal": "65240", + "codeCommune": "65066", + "libelleAcheminement": "BARRANCOUEU", + "nomCommune": "BARRANCOUEU" }, { - "codePostal": "33490", - "codeCommune": "33510", - "libelleAcheminement": "SEMENS", - "nomCommune": "SEMENS" + "codePostal": "55120", + "codeCommune": "55117", + "libelleAcheminement": "CLERMONT EN ARGONNE", + "nomCommune": "CLERMONT EN ARGONNE" }, { - "codePostal": "02190", - "codeCommune": "02627", - "libelleAcheminement": "PROVISEUX ET PLESNOY", - "nomCommune": "PROVISEUX ET PLESNOY" + "codePostal": "57730", + "codeCommune": "57428", + "libelleAcheminement": "MACHEREN", + "nomCommune": "MACHEREN" }, { - "codePostal": "62140", - "codeCommune": "62175", - "libelleAcheminement": "BREVILLERS", - "nomCommune": "BREVILLERS" + "codePostal": "65120", + "codeCommune": "65399", + "libelleAcheminement": "SALIGOS", + "nomCommune": "SALIGOS" }, { - "codePostal": "40190", - "codeCommune": "40255", - "libelleAcheminement": "ST CRICQ VILLENEUVE", - "nomCommune": "ST CRICQ VILLENEUVE" + "codePostal": "12120", + "codeCommune": "12011", + "libelleAcheminement": "ARVIEU", + "nomCommune": "ARVIEU" }, { - "codePostal": "33760", - "codeCommune": "33515", - "libelleAcheminement": "SOULIGNAC", - "nomCommune": "SOULIGNAC" + "codePostal": "65130", + "codeCommune": "65071", + "libelleAcheminement": "BATSERE", + "nomCommune": "BATSERE" }, { - "codePostal": "02120", - "codeCommune": "02629", - "libelleAcheminement": "PUISIEUX ET CLANLIEU", - "nomCommune": "PUISIEUX ET CLANLIEU" + "codePostal": "55000", + "codeCommune": "55123", + "libelleAcheminement": "LES HAUTS DE CHEE", + "nomCommune": "LES HAUTS DE CHEE" }, { - "codePostal": "62700", - "codeCommune": "62178", - "libelleAcheminement": "BRUAY LA BUISSIERE", - "nomCommune": "BRUAY LA BUISSIERE" + "codePostal": "57480", + "codeCommune": "57439", + "libelleAcheminement": "MANDEREN RITZING", + "nomCommune": "MANDEREN RITZING" }, { - "codePostal": "40120", - "codeCommune": "40262", - "libelleAcheminement": "ST GOR", - "nomCommune": "ST GOR" + "codePostal": "65120", + "codeCommune": "65399", + "libelleAcheminement": "SALIGOS", + "nomCommune": "SALIGOS" }, { - "codePostal": "33550", - "codeCommune": "33518", - "libelleAcheminement": "TABANAC", - "nomCommune": "TABANAC" + "codePostal": "12700", + "codeCommune": "12012", + "libelleAcheminement": "ASPRIERES", + "nomCommune": "ASPRIERES" }, { - "codePostal": "02380", - "codeCommune": "02632", - "libelleAcheminement": "QUINCY BASSE", - "nomCommune": "QUINCY BASSE" + "codePostal": "65250", + "codeCommune": "65076", + "libelleAcheminement": "BAZUS NESTE", + "nomCommune": "BAZUS NESTE" }, { - "codePostal": "62128", - "codeCommune": "62185", - "libelleAcheminement": "BULLECOURT", - "nomCommune": "BULLECOURT" + "codePostal": "55260", + "codeCommune": "55129", + "libelleAcheminement": "COUROUVRE", + "nomCommune": "COUROUVRE" }, { - "codePostal": "40230", - "codeCommune": "40264", - "libelleAcheminement": "ST JEAN DE MARSACQ", - "nomCommune": "ST JEAN DE MARSACQ" + "codePostal": "57590", + "codeCommune": "57440", + "libelleAcheminement": "MANHOUE", + "nomCommune": "MANHOUE" }, { - "codePostal": "33590", - "codeCommune": "33521", - "libelleAcheminement": "TALAIS", - "nomCommune": "TALAIS" + "codePostal": "65150", + "codeCommune": "65416", + "libelleAcheminement": "SEICH", + "nomCommune": "SEICH" }, { - "codePostal": "02240", - "codeCommune": "02636", - "libelleAcheminement": "REGNY", - "nomCommune": "REGNY" + "codePostal": "12260", + "codeCommune": "12018", + "libelleAcheminement": "BALAGUIER D OLT", + "nomCommune": "BALAGUIER D OLT" }, { - "codePostal": "62132", - "codeCommune": "62191", - "libelleAcheminement": "CAFFIERS", - "nomCommune": "CAFFIERS" + "codePostal": "65400", + "codeCommune": "65077", + "libelleAcheminement": "BEAUCENS", + "nomCommune": "BEAUCENS" }, { - "codePostal": "40390", - "codeCommune": "40268", - "libelleAcheminement": "ST LAURENT DE GOSSE", - "nomCommune": "ST LAURENT DE GOSSE" + "codePostal": "55500", + "codeCommune": "55141", + "libelleAcheminement": "DAGONVILLE", + "nomCommune": "DAGONVILLE" }, { - "codePostal": "33760", - "codeCommune": "33523", - "libelleAcheminement": "TARGON", - "nomCommune": "TARGON" + "codePostal": "57535", + "codeCommune": "57443", + "libelleAcheminement": "MARANGE SILVANGE", + "nomCommune": "MARANGE SILVANGE" }, { - "codePostal": "02270", - "codeCommune": "02638", - "libelleAcheminement": "REMIES", - "nomCommune": "REMIES" + "codePostal": "65330", + "codeCommune": "65419", + "libelleAcheminement": "SENTOUS", + "nomCommune": "SENTOUS" }, { - "codePostal": "62182", - "codeCommune": "62192", - "libelleAcheminement": "CAGNICOURT", - "nomCommune": "CAGNICOURT" + "codePostal": "12490", + "codeCommune": "12022", + "libelleAcheminement": "LA BASTIDE PRADINES", + "nomCommune": "LA BASTIDE PRADINES" }, { - "codePostal": "40300", - "codeCommune": "40269", - "libelleAcheminement": "ST LON LES MINES", - "nomCommune": "ST LON LES MINES" + "codePostal": "65710", + "codeCommune": "65078", + "libelleAcheminement": "BEAUDEAN", + "nomCommune": "BEAUDEAN" }, { - "codePostal": "33930", - "codeCommune": "33540", - "libelleAcheminement": "VENDAYS MONTALIVET", - "nomCommune": "VENDAYS MONTALIVET" + "codePostal": "55400", + "codeCommune": "55143", + "libelleAcheminement": "DAMLOUP", + "nomCommune": "DAMLOUP" }, { - "codePostal": "02110", - "codeCommune": "02647", - "libelleAcheminement": "RIBEAUVILLE", - "nomCommune": "RIBEAUVILLE" + "codePostal": "57155", + "codeCommune": "57447", + "libelleAcheminement": "MARLY", + "nomCommune": "MARLY" }, { - "codePostal": "62690", - "codeCommune": "62198", - "libelleAcheminement": "CAMBLIGNEUL", - "nomCommune": "CAMBLIGNEUL" + "codePostal": "65320", + "codeCommune": "65439", + "libelleAcheminement": "TARASTEIX", + "nomCommune": "TARASTEIX" }, { - "codePostal": "40500", - "codeCommune": "40282", - "libelleAcheminement": "ST SEVER", - "nomCommune": "ST SEVER" + "codePostal": "12500", + "codeCommune": "12027", + "libelleAcheminement": "BESSUEJOULS", + "nomCommune": "BESSUEJOULS" }, { - "codePostal": "33140", - "codeCommune": "33550", - "libelleAcheminement": "VILLENAVE D ORNON", - "nomCommune": "VILLENAVE D ORNON" + "codePostal": "65130", + "codeCommune": "65081", + "libelleAcheminement": "BENQUE MOLERE", + "nomCommune": "BENQUE MOLERE" }, { - "codePostal": "02140", - "codeCommune": "02652", - "libelleAcheminement": "ROGNY", - "nomCommune": "ROGNY" + "codePostal": "55500", + "codeCommune": "55144", + "libelleAcheminement": "DAMMARIE SUR SAULX", + "nomCommune": "DAMMARIE SUR SAULX" }, { - "codePostal": "62176", - "codeCommune": "62201", - "libelleAcheminement": "CAMIERS", - "nomCommune": "CAMIERS" + "codePostal": "57530", + "codeCommune": "57449", + "libelleAcheminement": "MARSILLY", + "nomCommune": "MARSILLY" }, { - "codePostal": "40990", - "codeCommune": "40283", - "libelleAcheminement": "ST VINCENT DE PAUL", - "nomCommune": "ST VINCENT DE PAUL" + "codePostal": "65350", + "codeCommune": "65443", + "libelleAcheminement": "THUY", + "nomCommune": "THUY" }, { - "codePostal": "33720", - "codeCommune": "33552", - "libelleAcheminement": "VIRELADE", - "nomCommune": "VIRELADE" + "codePostal": "12160", + "codeCommune": "12032", + "libelleAcheminement": "BOUSSAC", + "nomCommune": "BOUSSAC" }, { - "codePostal": "02310", - "codeCommune": "02653", - "libelleAcheminement": "ROMENY SUR MARNE", - "nomCommune": "ROMENY SUR MARNE" + "codePostal": "65410", + "codeCommune": "65092", + "libelleAcheminement": "BEYREDE JUMET CAMOUS", + "nomCommune": "BEYREDE JUMET CAMOUS" }, { - "codePostal": "62340", - "codeCommune": "62203", - "libelleAcheminement": "CAMPAGNE LES GUINES", - "nomCommune": "CAMPAGNE LES GUINES" + "codePostal": "55130", + "codeCommune": "55148", + "libelleAcheminement": "DELOUZE ROSIERES", + "nomCommune": "DELOUZE ROSIERES" }, { - "codePostal": "40320", - "codeCommune": "40286", - "libelleAcheminement": "SAMADET", - "nomCommune": "SAMADET" + "codePostal": "57140", + "codeCommune": "57452", + "libelleAcheminement": "LA MAXE", + "nomCommune": "LA MAXE" }, { - "codePostal": "33370", - "codeCommune": "33554", - "libelleAcheminement": "YVRAC", - "nomCommune": "YVRAC" + "codePostal": "65150", + "codeCommune": "65444", + "libelleAcheminement": "TIBIRAN JAUNAC", + "nomCommune": "TIBIRAN JAUNAC" }, { - "codePostal": "02120", - "codeCommune": "02654", - "libelleAcheminement": "ROMERY", - "nomCommune": "ROMERY" + "codePostal": "12240", + "codeCommune": "12054", + "libelleAcheminement": "LA CAPELLE BLEYS", + "nomCommune": "LA CAPELLE BLEYS" }, { - "codePostal": "62690", - "codeCommune": "62211", - "libelleAcheminement": "CAPELLE FERMONT", - "nomCommune": "CAPELLE FERMONT" + "codePostal": "65330", + "codeCommune": "65097", + "libelleAcheminement": "BONREPOS", + "nomCommune": "BONREPOS" }, { - "codePostal": "40120", - "codeCommune": "40288", - "libelleAcheminement": "SARBAZAN", - "nomCommune": "SARBAZAN" + "codePostal": "55130", + "codeCommune": "55148", + "libelleAcheminement": "DELOUZE ROSIERES", + "nomCommune": "DELOUZE ROSIERES" }, { - "codePostal": "34290", - "codeCommune": "34001", - "libelleAcheminement": "ABEILHAN", - "nomCommune": "ABEILHAN" + "codePostal": "57320", + "codeCommune": "57457", + "libelleAcheminement": "MENSKIRCH", + "nomCommune": "MENSKIRCH" }, { - "codePostal": "02590", - "codeCommune": "02658", - "libelleAcheminement": "ROUPY", - "nomCommune": "ROUPY" + "codePostal": "65130", + "codeCommune": "65445", + "libelleAcheminement": "TILHOUSE", + "nomCommune": "TILHOUSE" }, { - "codePostal": "62830", - "codeCommune": "62214", - "libelleAcheminement": "CARLY", - "nomCommune": "CARLY" + "codePostal": "12160", + "codeCommune": "12056", + "libelleAcheminement": "BARAQUEVILLE", + "nomCommune": "BARAQUEVILLE" }, { - "codePostal": "40700", - "codeCommune": "40298", - "libelleAcheminement": "SERRES GASTON", - "nomCommune": "SERRES GASTON" + "codePostal": "65400", + "codeCommune": "65098", + "libelleAcheminement": "BOO SILHEN", + "nomCommune": "BOO SILHEN" }, { - "codePostal": "34300", - "codeCommune": "34003", - "libelleAcheminement": "AGDE", - "nomCommune": "AGDE" + "codePostal": "55120", + "codeCommune": "55155", + "libelleAcheminement": "DOMBASLE EN ARGONNE", + "nomCommune": "DOMBASLE EN ARGONNE" }, { - "codePostal": "02000", - "codeCommune": "02661", - "libelleAcheminement": "ROYAUCOURT ET CHAILVET", - "nomCommune": "ROYAUCOURT ET CHAILVET" + "codePostal": "57980", + "codeCommune": "57466", + "libelleAcheminement": "METZING", + "nomCommune": "METZING" }, { - "codePostal": "62270", - "codeCommune": "62234", - "libelleAcheminement": "CONCHY SUR CANCHE", - "nomCommune": "CONCHY SUR CANCHE" + "codePostal": "65170", + "codeCommune": "65450", + "libelleAcheminement": "TRAMEZAIGUES", + "nomCommune": "TRAMEZAIGUES" }, { - "codePostal": "40230", - "codeCommune": "40317", - "libelleAcheminement": "TOSSE", - "nomCommune": "TOSSE" + "codePostal": "12120", + "codeCommune": "12057", + "libelleAcheminement": "CASSAGNES BEGONHES", + "nomCommune": "CASSAGNES BEGONHES" }, { - "codePostal": "34190", - "codeCommune": "34005", - "libelleAcheminement": "AGONES", - "nomCommune": "AGONES" + "codePostal": "65590", + "codeCommune": "65099", + "libelleAcheminement": "BORDERES LOURON", + "nomCommune": "BORDERES LOURON" }, { - "codePostal": "02210", - "codeCommune": "02665", - "libelleAcheminement": "GRAND ROZOY", - "nomCommune": "GRAND ROZOY" + "codePostal": "55110", + "codeCommune": "55167", + "libelleAcheminement": "DUN SUR MEUSE", + "nomCommune": "DUN SUR MEUSE" }, { - "codePostal": "62360", - "codeCommune": "62235", - "libelleAcheminement": "CONDETTE", - "nomCommune": "CONDETTE" + "codePostal": "57530", + "codeCommune": "57482", + "libelleAcheminement": "OGY MONTOY FLANVILLE", + "nomCommune": "OGY MONTOY FLANVILLE" }, { - "codePostal": "40380", - "codeCommune": "40324", - "libelleAcheminement": "VICQ D AURIBAT", - "nomCommune": "VICQ D AURIBAT" + "codePostal": "65200", + "codeCommune": "65451", + "libelleAcheminement": "TREBONS", + "nomCommune": "TREBONS" }, { - "codePostal": "34380", - "codeCommune": "34012", - "libelleAcheminement": "ARGELLIERS", - "nomCommune": "ARGELLIERS" + "codePostal": "12210", + "codeCommune": "12058", + "libelleAcheminement": "CASSUEJOULS", + "nomCommune": "CASSUEJOULS" }, { - "codePostal": "02200", - "codeCommune": "02667", - "libelleAcheminement": "SACONIN ET BREUIL", - "nomCommune": "SACONIN ET BREUIL" + "codePostal": "65130", + "codeCommune": "65105", + "libelleAcheminement": "BOURG DE BIGORRE", + "nomCommune": "BOURG DE BIGORRE" }, { - "codePostal": "62130", - "codeCommune": "62238", - "libelleAcheminement": "CONTEVILLE EN TERNOIS", - "nomCommune": "CONTEVILLE EN TERNOIS" + "codePostal": "55160", + "codeCommune": "55172", + "libelleAcheminement": "LES EPARGES", + "nomCommune": "LES EPARGES" }, { - "codePostal": "40320", - "codeCommune": "40325", - "libelleAcheminement": "VIELLE TURSAN", - "nomCommune": "VIELLE TURSAN" + "codePostal": "57645", + "codeCommune": "57482", + "libelleAcheminement": "OGY MONTOY FLANVILLE", + "nomCommune": "OGY MONTOY FLANVILLE" }, { - "codePostal": "34480", - "codeCommune": "34018", - "libelleAcheminement": "AUTIGNAC", - "nomCommune": "AUTIGNAC" + "codePostal": "65220", + "codeCommune": "65452", + "libelleAcheminement": "TRIE SUR BAISE", + "nomCommune": "TRIE SUR BAISE" }, { - "codePostal": "02290", - "codeCommune": "02673", - "libelleAcheminement": "ST CHRISTOPHE A BERRY", - "nomCommune": "ST CHRISTOPHE A BERRY" + "codePostal": "12350", + "codeCommune": "12071", + "libelleAcheminement": "COMPOLIBAT", + "nomCommune": "COMPOLIBAT" }, { - "codePostal": "62231", - "codeCommune": "62239", - "libelleAcheminement": "COQUELLES", - "nomCommune": "COQUELLES" + "codePostal": "65170", + "codeCommune": "65106", + "libelleAcheminement": "BOURISP", + "nomCommune": "BOURISP" }, { - "codePostal": "40560", - "codeCommune": "40326", - "libelleAcheminement": "VIELLE ST GIRONS", - "nomCommune": "VIELLE ST GIRONS" + "codePostal": "55240", + "codeCommune": "55182", + "libelleAcheminement": "ETON", + "nomCommune": "ETON" }, { - "codePostal": "34260", - "codeCommune": "34019", - "libelleAcheminement": "AVENE", - "nomCommune": "AVENE" + "codePostal": "57170", + "codeCommune": "57485", + "libelleAcheminement": "MORVILLE LES VIC", + "nomCommune": "MORVILLE LES VIC" }, { - "codePostal": "02220", - "codeCommune": "02682", - "libelleAcheminement": "ST MARD", - "nomCommune": "ST MARD" + "codePostal": "65700", + "codeCommune": "65462", + "libelleAcheminement": "VIDOUZE", + "nomCommune": "VIDOUZE" }, { - "codePostal": "62760", - "codeCommune": "62242", - "libelleAcheminement": "COUIN", - "nomCommune": "COUIN" + "codePostal": "12100", + "codeCommune": "12072", + "libelleAcheminement": "COMPREGNAC", + "nomCommune": "COMPREGNAC" }, { - "codePostal": "40560", - "codeCommune": "40326", - "libelleAcheminement": "VIELLE ST GIRONS", - "nomCommune": "VIELLE ST GIRONS" + "codePostal": "65100", + "codeCommune": "65107", + "libelleAcheminement": "BOURREAC", + "nomCommune": "BOURREAC" }, { - "codePostal": "34290", - "codeCommune": "34025", - "libelleAcheminement": "BASSAN", - "nomCommune": "BASSAN" + "codePostal": "55200", + "codeCommune": "55184", + "libelleAcheminement": "EUVILLE", + "nomCommune": "EUVILLE" }, { - "codePostal": "02110", - "codeCommune": "02683", - "libelleAcheminement": "ST MARTIN RIVIERE", - "nomCommune": "ST MARTIN RIVIERE" + "codePostal": "57590", + "codeCommune": "57486", + "libelleAcheminement": "MORVILLE SUR NIED", + "nomCommune": "MORVILLE SUR NIED" }, { - "codePostal": "62310", - "codeCommune": "62257", - "libelleAcheminement": "CREQUY", - "nomCommune": "CREQUY" + "codePostal": "65360", + "codeCommune": "65464", + "libelleAcheminement": "VIELLE ADOUR", + "nomCommune": "VIELLE ADOUR" }, { - "codePostal": "41400", - "codeCommune": "41002", - "libelleAcheminement": "ANGE", - "nomCommune": "ANGE" + "codePostal": "12120", + "codeCommune": "12073", + "libelleAcheminement": "COMPS LA GRAND VILLE", + "nomCommune": "COMPS LA GRAND VILLE" }, { - "codePostal": "34160", - "codeCommune": "34027", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "65460", + "codeCommune": "65108", + "libelleAcheminement": "BOURS", + "nomCommune": "BOURS" }, { - "codePostal": "02300", - "codeCommune": "02686", - "libelleAcheminement": "ST PAUL AUX BOIS", - "nomCommune": "ST PAUL AUX BOIS" + "codePostal": "55000", + "codeCommune": "55186", + "libelleAcheminement": "FAINS VEEL", + "nomCommune": "FAINS VEEL" }, { - "codePostal": "62560", - "codeCommune": "62267", - "libelleAcheminement": "DENNEBROEUCQ", - "nomCommune": "DENNEBROEUCQ" + "codePostal": "57670", + "codeCommune": "57494", + "libelleAcheminement": "MUNSTER", + "nomCommune": "MUNSTER" }, { - "codePostal": "41330", - "codeCommune": "41009", - "libelleAcheminement": "AVERDON", - "nomCommune": "AVERDON" + "codePostal": "66480", + "codeCommune": "66001", + "libelleAcheminement": "L ALBERE", + "nomCommune": "L ALBERE" }, { - "codePostal": "34550", - "codeCommune": "34031", - "libelleAcheminement": "BESSAN", - "nomCommune": "BESSAN" + "codePostal": "12320", + "codeCommune": "12076", + "libelleAcheminement": "CONQUES EN ROUERGUE", + "nomCommune": "CONQUES EN ROUERGUE" }, { - "codePostal": "02350", - "codeCommune": "02690", - "libelleAcheminement": "STE PREUVE", - "nomCommune": "STE PREUVE" + "codePostal": "65130", + "codeCommune": "65111", + "libelleAcheminement": "BULAN", + "nomCommune": "BULAN" }, { - "codePostal": "62240", - "codeCommune": "62268", - "libelleAcheminement": "DESVRES", - "nomCommune": "DESVRES" + "codePostal": "55100", + "codeCommune": "55189", + "libelleAcheminement": "FLEURY DEVANT DOUAUMONT", + "nomCommune": "FLEURY DEVANT DOUAUMONT" }, { - "codePostal": "41100", - "codeCommune": "41010", - "libelleAcheminement": "AZE", - "nomCommune": "AZE" + "codePostal": "57670", + "codeCommune": "57497", + "libelleAcheminement": "NELLING", + "nomCommune": "NELLING" }, { - "codePostal": "34500", - "codeCommune": "34032", - "libelleAcheminement": "BEZIERS", - "nomCommune": "BEZIERS" + "codePostal": "66540", + "codeCommune": "66012", + "libelleAcheminement": "BAHO", + "nomCommune": "BAHO" }, { - "codePostal": "02640", - "codeCommune": "02694", - "libelleAcheminement": "ST SIMON", - "nomCommune": "ST SIMON" + "codePostal": "12550", + "codeCommune": "12080", + "libelleAcheminement": "COUPIAC", + "nomCommune": "COUPIAC" }, { - "codePostal": "62460", - "codeCommune": "62270", - "libelleAcheminement": "DIVION", - "nomCommune": "DIVION" + "codePostal": "65190", + "codeCommune": "65118", + "libelleAcheminement": "CAHARET", + "nomCommune": "CAHARET" }, { - "codePostal": "41000", - "codeCommune": "41018", - "libelleAcheminement": "BLOIS", - "nomCommune": "BLOIS" + "codePostal": "55400", + "codeCommune": "55191", + "libelleAcheminement": "FOAMEIX ORNEL", + "nomCommune": "FOAMEIX ORNEL" }, { - "codePostal": "34700", - "codeCommune": "34036", - "libelleAcheminement": "LE BOSC", - "nomCommune": "LE BOSC" + "codePostal": "57700", + "codeCommune": "57498", + "libelleAcheminement": "NEUFCHEF", + "nomCommune": "NEUFCHEF" }, { - "codePostal": "02110", - "codeCommune": "02709", - "libelleAcheminement": "SERAIN", - "nomCommune": "SERAIN" + "codePostal": "66390", + "codeCommune": "66014", + "libelleAcheminement": "BAIXAS", + "nomCommune": "BAIXAS" }, { - "codePostal": "62320", - "codeCommune": "62277", - "libelleAcheminement": "DROCOURT", - "nomCommune": "DROCOURT" + "codePostal": "12800", + "codeCommune": "12085", + "libelleAcheminement": "CRESPIN", + "nomCommune": "CRESPIN" }, { - "codePostal": "41270", - "codeCommune": "41024", - "libelleAcheminement": "BOURSAY", - "nomCommune": "BOURSAY" + "codePostal": "65500", + "codeCommune": "65119", + "libelleAcheminement": "CAIXON", + "nomCommune": "CAIXON" }, { - "codePostal": "34260", - "codeCommune": "34038", - "libelleAcheminement": "LE BOUSQUET D ORB", - "nomCommune": "LE BOUSQUET D ORB" + "codePostal": "55110", + "codeCommune": "55192", + "libelleAcheminement": "FONTAINES ST CLAIR", + "nomCommune": "FONTAINES ST CLAIR" }, { - "codePostal": "02220", - "codeCommune": "02711", - "libelleAcheminement": "SERCHES", - "nomCommune": "SERCHES" + "codePostal": "57670", + "codeCommune": "57501", + "libelleAcheminement": "NEUFVILLAGE", + "nomCommune": "NEUFVILLAGE" }, { - "codePostal": "62156", - "codeCommune": "62280", - "libelleAcheminement": "DURY", - "nomCommune": "DURY" + "codePostal": "66420", + "codeCommune": "66017", + "libelleAcheminement": "LE BARCARES", + "nomCommune": "LE BARCARES" }, { - "codePostal": "41160", - "codeCommune": "41026", - "libelleAcheminement": "BREVAINVILLE", - "nomCommune": "BREVAINVILLE" + "codePostal": "12210", + "codeCommune": "12088", + "libelleAcheminement": "CURIERES", + "nomCommune": "CURIERES" }, { - "codePostal": "34140", - "codeCommune": "34039", - "libelleAcheminement": "BOUZIGUES", - "nomCommune": "BOUZIGUES" + "codePostal": "65710", + "codeCommune": "65123", + "libelleAcheminement": "CAMPAN", + "nomCommune": "CAMPAN" }, { - "codePostal": "02160", - "codeCommune": "02715", - "libelleAcheminement": "SERVAL", - "nomCommune": "SERVAL" + "codePostal": "55250", + "codeCommune": "55194", + "libelleAcheminement": "FOUCAUCOURT SUR THABAS", + "nomCommune": "FOUCAUCOURT SUR THABAS" }, { - "codePostal": "62128", - "codeCommune": "62285", - "libelleAcheminement": "ECOUST ST MEIN", - "nomCommune": "ECOUST ST MEIN" + "codePostal": "57560", + "codeCommune": "57504", + "libelleAcheminement": "NIDERHOFF", + "nomCommune": "NIDERHOFF" }, { - "codePostal": "41360", - "codeCommune": "41030", - "libelleAcheminement": "CELLE", - "nomCommune": "CELLE" + "codePostal": "66160", + "codeCommune": "66024", + "libelleAcheminement": "LE BOULOU", + "nomCommune": "LE BOULOU" }, { - "codePostal": "34800", - "codeCommune": "34051", - "libelleAcheminement": "CANET", - "nomCommune": "CANET" + "codePostal": "12170", + "codeCommune": "12092", + "libelleAcheminement": "DURENQUE", + "nomCommune": "DURENQUE" }, { - "codePostal": "02300", - "codeCommune": "02719", - "libelleAcheminement": "SINCENY", - "nomCommune": "SINCENY" + "codePostal": "65230", + "codeCommune": "65126", + "libelleAcheminement": "CAMPUZAN", + "nomCommune": "CAMPUZAN" }, { - "codePostal": "62860", - "codeCommune": "62298", - "libelleAcheminement": "EPINOY", - "nomCommune": "EPINOY" + "codePostal": "55110", + "codeCommune": "55206", + "libelleAcheminement": "GERCOURT ET DRILLANCOURT", + "nomCommune": "GERCOURT ET DRILLANCOURT" }, { - "codePostal": "41600", - "codeCommune": "41036", - "libelleAcheminement": "CHAON", - "nomCommune": "CHAON" + "codePostal": "57220", + "codeCommune": "57507", + "libelleAcheminement": "NIEDERVISSE", + "nomCommune": "NIEDERVISSE" }, { - "codePostal": "34120", - "codeCommune": "34056", - "libelleAcheminement": "CASTELNAU DE GUERS", - "nomCommune": "CASTELNAU DE GUERS" + "codePostal": "66760", + "codeCommune": "66025", + "libelleAcheminement": "BOURG MADAME", + "nomCommune": "BOURG MADAME" }, { - "codePostal": "02260", - "codeCommune": "02725", - "libelleAcheminement": "SOMMERON", - "nomCommune": "SOMMERON" + "codePostal": "12190", + "codeCommune": "12098", + "libelleAcheminement": "ESTAING", + "nomCommune": "ESTAING" }, { - "codePostal": "62134", - "codeCommune": "62299", - "libelleAcheminement": "EPS", - "nomCommune": "EPS" + "codePostal": "65110", + "codeCommune": "65138", + "libelleAcheminement": "CAUTERETS", + "nomCommune": "CAUTERETS" }, { - "codePostal": "41290", - "codeCommune": "41037", - "libelleAcheminement": "LA CHAPELLE ENCHERIE", - "nomCommune": "LA CHAPELLE ENCHERIE" + "codePostal": "55000", + "codeCommune": "55207", + "libelleAcheminement": "GERY", + "nomCommune": "GERY" }, { - "codePostal": "34190", - "codeCommune": "34067", - "libelleAcheminement": "CAZILHAC", - "nomCommune": "CAZILHAC" + "codePostal": "57320", + "codeCommune": "57516", + "libelleAcheminement": "OBERDORFF", + "nomCommune": "OBERDORFF" }, { - "codePostal": "02250", - "codeCommune": "02737", - "libelleAcheminement": "TAVAUX ET PONTSERICOURT", - "nomCommune": "TAVAUX ET PONTSERICOURT" + "codePostal": "66400", + "codeCommune": "66032", + "libelleAcheminement": "CALMEILLES", + "nomCommune": "CALMEILLES" }, { - "codePostal": "62224", - "codeCommune": "62300", - "libelleAcheminement": "EQUIHEN PLAGE", - "nomCommune": "EQUIHEN PLAGE" + "codePostal": "12300", + "codeCommune": "12100", + "libelleAcheminement": "FIRMI", + "nomCommune": "FIRMI" }, { - "codePostal": "41320", - "codeCommune": "41038", - "libelleAcheminement": "LA CHAPELLE MONTMARTIN", - "nomCommune": "LA CHAPELLE MONTMARTIN" + "codePostal": "65230", + "codeCommune": "65148", + "libelleAcheminement": "CIZOS", + "nomCommune": "CIZOS" }, { - "codePostal": "34120", - "codeCommune": "34068", - "libelleAcheminement": "CAZOULS D HERAULT", - "nomCommune": "CAZOULS D HERAULT" + "codePostal": "55400", + "codeCommune": "55222", + "libelleAcheminement": "GUSSAINVILLE", + "nomCommune": "GUSSAINVILLE" }, { - "codePostal": "02880", - "codeCommune": "02739", - "libelleAcheminement": "TERNY SORNY", - "nomCommune": "TERNY SORNY" + "codePostal": "57720", + "codeCommune": "57526", + "libelleAcheminement": "ORMERSVILLER", + "nomCommune": "ORMERSVILLER" }, { - "codePostal": "62650", - "codeCommune": "62302", - "libelleAcheminement": "ERGNY", - "nomCommune": "ERGNY" + "codePostal": "66140", + "codeCommune": "66037", + "libelleAcheminement": "CANET EN ROUSSILLON", + "nomCommune": "CANET EN ROUSSILLON" }, { - "codePostal": "41500", - "codeCommune": "41039", - "libelleAcheminement": "LA CHAPELLE ST MARTIN EN PLAINE", - "nomCommune": "LA CHAPELLE ST MARTIN EN PLAINE" + "codePostal": "12300", + "codeCommune": "12101", + "libelleAcheminement": "FLAGNAC", + "nomCommune": "FLAGNAC" }, { - "codePostal": "34370", - "codeCommune": "34089", - "libelleAcheminement": "CREISSAN", - "nomCommune": "CREISSAN" + "codePostal": "65250", + "codeCommune": "65159", + "libelleAcheminement": "ESCALA", + "nomCommune": "ESCALA" }, { - "codePostal": "02340", - "codeCommune": "02743", - "libelleAcheminement": "LE THUEL", - "nomCommune": "LE THUEL" + "codePostal": "55160", + "codeCommune": "55232", + "libelleAcheminement": "HARVILLE", + "nomCommune": "HARVILLE" }, { - "codePostal": "62260", - "codeCommune": "62328", - "libelleAcheminement": "FERFAY", - "nomCommune": "FERFAY" + "codePostal": "57410", + "codeCommune": "57535", + "libelleAcheminement": "PETIT REDERCHING", + "nomCommune": "PETIT REDERCHING" }, { - "codePostal": "41130", - "codeCommune": "41043", - "libelleAcheminement": "CHATILLON SUR CHER", - "nomCommune": "CHATILLON SUR CHER" + "codePostal": "66720", + "codeCommune": "66039", + "libelleAcheminement": "CARAMANY", + "nomCommune": "CARAMANY" }, { - "codePostal": "34520", - "codeCommune": "34091", - "libelleAcheminement": "LE CROS", - "nomCommune": "LE CROS" + "codePostal": "12260", + "codeCommune": "12104", + "libelleAcheminement": "FOISSAC", + "nomCommune": "FOISSAC" }, { - "codePostal": "02850", - "codeCommune": "02748", - "libelleAcheminement": "TRELOU SUR MARNE", - "nomCommune": "TRELOU SUR MARNE" + "codePostal": "65500", + "codeCommune": "65160", + "libelleAcheminement": "ESCAUNETS", + "nomCommune": "ESCAUNETS" }, { - "codePostal": "62128", - "codeCommune": "62343", - "libelleAcheminement": "FONTAINE LES CROISILLES", - "nomCommune": "FONTAINE LES CROISILLES" + "codePostal": "55160", + "codeCommune": "55237", + "libelleAcheminement": "HAUDIOMONT", + "nomCommune": "HAUDIOMONT" }, { - "codePostal": "41120", - "codeCommune": "41052", - "libelleAcheminement": "CHITENAY", - "nomCommune": "CHITENAY" + "codePostal": "57540", + "codeCommune": "57537", + "libelleAcheminement": "PETITE ROSSELLE", + "nomCommune": "PETITE ROSSELLE" }, { - "codePostal": "34210", - "codeCommune": "34098", - "libelleAcheminement": "FERRALS LES MONTAGNES", - "nomCommune": "FERRALS LES MONTAGNES" + "codePostal": "66130", + "codeCommune": "66040", + "libelleAcheminement": "CASEFABRE", + "nomCommune": "CASEFABRE" }, { - "codePostal": "02640", - "codeCommune": "02752", - "libelleAcheminement": "TUGNY ET PONT", - "nomCommune": "TUGNY ET PONT" + "codePostal": "12460", + "codeCommune": "12116", + "libelleAcheminement": "HUPARLAC", + "nomCommune": "HUPARLAC" }, { - "codePostal": "62232", - "codeCommune": "62350", - "libelleAcheminement": "FOUQUIERES LES BETHUNE", - "nomCommune": "FOUQUIERES LES BETHUNE" + "codePostal": "65100", + "codeCommune": "65164", + "libelleAcheminement": "ESCOUBES POUTS", + "nomCommune": "ESCOUBES POUTS" }, { - "codePostal": "41150", - "codeCommune": "41055", - "libelleAcheminement": "VALLOIRE SUR CISSE", - "nomCommune": "VALLOIRE SUR CISSE" + "codePostal": "55210", + "codeCommune": "55243", + "libelleAcheminement": "HERBEUVILLE", + "nomCommune": "HERBEUVILLE" }, { - "codePostal": "34360", - "codeCommune": "34100", - "libelleAcheminement": "FERRIERES POUSSAROU", - "nomCommune": "FERRIERES POUSSAROU" + "codePostal": "57340", + "codeCommune": "57539", + "libelleAcheminement": "PEVANGE", + "nomCommune": "PEVANGE" }, { - "codePostal": "02290", - "codeCommune": "02762", - "libelleAcheminement": "VASSENS", - "nomCommune": "VASSENS" + "codePostal": "66130", + "codeCommune": "66056", + "libelleAcheminement": "CORBERE LES CABANES", + "nomCommune": "CORBERE LES CABANES" }, { - "codePostal": "62130", - "codeCommune": "62352", - "libelleAcheminement": "FRAMECOURT", - "nomCommune": "FRAMECOURT" + "codePostal": "12350", + "codeCommune": "12121", + "libelleAcheminement": "LANUEJOULS", + "nomCommune": "LANUEJOULS" }, { - "codePostal": "41150", - "codeCommune": "41055", - "libelleAcheminement": "VALLOIRE SUR CISSE", - "nomCommune": "VALLOIRE SUR CISSE" + "codePostal": "65130", + "codeCommune": "65165", + "libelleAcheminement": "ESPARROS", + "nomCommune": "ESPARROS" }, { - "codePostal": "34110", - "codeCommune": "34108", - "libelleAcheminement": "FRONTIGNAN", - "nomCommune": "FRONTIGNAN" + "codePostal": "55290", + "codeCommune": "55246", + "libelleAcheminement": "HEVILLIERS", + "nomCommune": "HEVILLIERS" }, { - "codePostal": "02490", - "codeCommune": "02782", - "libelleAcheminement": "LE VERGUIER", - "nomCommune": "LE VERGUIER" + "codePostal": "57420", + "codeCommune": "57554", + "libelleAcheminement": "POURNOY LA GRASSE", + "nomCommune": "POURNOY LA GRASSE" }, { - "codePostal": "62770", - "codeCommune": "62357", - "libelleAcheminement": "FRESNOY", - "nomCommune": "FRESNOY" + "codePostal": "66200", + "codeCommune": "66059", + "libelleAcheminement": "CORNEILLA DEL VERCOL", + "nomCommune": "CORNEILLA DEL VERCOL" }, { - "codePostal": "41370", - "codeCommune": "41058", - "libelleAcheminement": "CONCRIERS", - "nomCommune": "CONCRIERS" + "codePostal": "12360", + "codeCommune": "12143", + "libelleAcheminement": "MELAGUES", + "nomCommune": "MELAGUES" }, { - "codePostal": "34190", - "codeCommune": "34111", - "libelleAcheminement": "GANGES", - "nomCommune": "GANGES" + "codePostal": "65130", + "codeCommune": "65166", + "libelleAcheminement": "ESPECHE", + "nomCommune": "ESPECHE" }, { - "codePostal": "02630", - "codeCommune": "02784", - "libelleAcheminement": "PETIT VERLY", - "nomCommune": "PETIT VERLY" + "codePostal": "55130", + "codeCommune": "55247", + "libelleAcheminement": "HORVILLE EN ORNOIS", + "nomCommune": "HORVILLE EN ORNOIS" }, { - "codePostal": "62121", - "codeCommune": "62374", - "libelleAcheminement": "GOMIECOURT", - "nomCommune": "GOMIECOURT" + "codePostal": "57590", + "codeCommune": "57555", + "libelleAcheminement": "PREVOCOURT", + "nomCommune": "PREVOCOURT" }, { - "codePostal": "41400", - "codeCommune": "41059", - "libelleAcheminement": "LE CONTROIS EN SOLOGNE", - "nomCommune": "LE CONTROIS EN SOLOGNE" + "codePostal": "66360", + "codeCommune": "66068", + "libelleAcheminement": "ESCARO", + "nomCommune": "ESCARO" }, { - "codePostal": "34190", - "codeCommune": "34115", - "libelleAcheminement": "GORNIES", - "nomCommune": "GORNIES" + "codePostal": "12000", + "codeCommune": "12146", + "libelleAcheminement": "LE MONASTERE", + "nomCommune": "LE MONASTERE" }, { - "codePostal": "02380", - "codeCommune": "02786", - "libelleAcheminement": "VERNEUIL SOUS COUCY", - "nomCommune": "VERNEUIL SOUS COUCY" + "codePostal": "65130", + "codeCommune": "65167", + "libelleAcheminement": "ESPIEILH", + "nomCommune": "ESPIEILH" }, { - "codePostal": "62123", - "codeCommune": "62379", - "libelleAcheminement": "GOUY EN ARTOIS", - "nomCommune": "GOUY EN ARTOIS" + "codePostal": "55130", + "codeCommune": "55248", + "libelleAcheminement": "HOUDELAINCOURT", + "nomCommune": "HOUDELAINCOURT" }, { - "codePostal": "41800", - "codeCommune": "41070", - "libelleAcheminement": "VALLEE DE RONSARD", - "nomCommune": "VALLEE DE RONSARD" + "codePostal": "57510", + "codeCommune": "57556", + "libelleAcheminement": "PUTTELANGE AUX LACS", + "nomCommune": "PUTTELANGE AUX LACS" }, { - "codePostal": "34260", - "codeCommune": "34117", - "libelleAcheminement": "GRAISSESSAC", - "nomCommune": "GRAISSESSAC" + "codePostal": "66210", + "codeCommune": "66082", + "libelleAcheminement": "FORMIGUERES", + "nomCommune": "FORMIGUERES" }, { - "codePostal": "02000", - "codeCommune": "02787", - "libelleAcheminement": "VERNEUIL SUR SERRE", - "nomCommune": "VERNEUIL SUR SERRE" + "codePostal": "12360", + "codeCommune": "12147", + "libelleAcheminement": "MONTAGNOL", + "nomCommune": "MONTAGNOL" }, { - "codePostal": "62112", - "codeCommune": "62383", - "libelleAcheminement": "GOUY SOUS BELLONNE", - "nomCommune": "GOUY SOUS BELLONNE" + "codePostal": "65240", + "codeCommune": "65180", + "libelleAcheminement": "FRECHET AURE", + "nomCommune": "FRECHET AURE" }, { - "codePostal": "41160", - "codeCommune": "41073", - "libelleAcheminement": "DANZE", - "nomCommune": "DANZE" + "codePostal": "55700", + "codeCommune": "55250", + "libelleAcheminement": "INOR", + "nomCommune": "INOR" }, { - "codePostal": "34600", - "codeCommune": "34119", - "libelleAcheminement": "HEREPIAN", - "nomCommune": "HEREPIAN" + "codePostal": "57590", + "codeCommune": "57559", + "libelleAcheminement": "PUZIEUX", + "nomCommune": "PUZIEUX" }, { - "codePostal": "02800", - "codeCommune": "02788", - "libelleAcheminement": "VERSIGNY", - "nomCommune": "VERSIGNY" + "codePostal": "66360", + "codeCommune": "66090", + "libelleAcheminement": "JUJOLS", + "nomCommune": "JUJOLS" }, { - "codePostal": "62140", - "codeCommune": "62388", - "libelleAcheminement": "GRIGNY", - "nomCommune": "GRIGNY" + "codePostal": "12550", + "codeCommune": "12149", + "libelleAcheminement": "MONTCLAR", + "nomCommune": "MONTCLAR" }, { - "codePostal": "41290", - "codeCommune": "41077", - "libelleAcheminement": "EPIAIS", - "nomCommune": "EPIAIS" + "codePostal": "65190", + "codeCommune": "65181", + "libelleAcheminement": "FRECHOU FRECHET", + "nomCommune": "FRECHOU FRECHET" }, { - "codePostal": "34830", - "codeCommune": "34120", - "libelleAcheminement": "JACOU", - "nomCommune": "JACOU" + "codePostal": "55220", + "codeCommune": "55251", + "libelleAcheminement": "IPPECOURT", + "nomCommune": "IPPECOURT" }, { - "codePostal": "02810", - "codeCommune": "02792", - "libelleAcheminement": "VEUILLY LA POTERIE", - "nomCommune": "VEUILLY LA POTERIE" + "codePostal": "57700", + "codeCommune": "57562", + "libelleAcheminement": "RANGUEVAUX", + "nomCommune": "RANGUEVAUX" }, { - "codePostal": "62140", - "codeCommune": "62395", - "libelleAcheminement": "GUIGNY", - "nomCommune": "GUIGNY" + "codePostal": "66200", + "codeCommune": "66094", + "libelleAcheminement": "LATOUR BAS ELNE", + "nomCommune": "LATOUR BAS ELNE" }, { - "codePostal": "41270", - "codeCommune": "41088", - "libelleAcheminement": "FONTAINE RAOUL", - "nomCommune": "FONTAINE RAOUL" + "codePostal": "12400", + "codeCommune": "12154", + "libelleAcheminement": "MONTLAUR", + "nomCommune": "MONTLAUR" }, { - "codePostal": "34725", - "codeCommune": "34122", - "libelleAcheminement": "JONQUIERES", - "nomCommune": "JONQUIERES" + "codePostal": "65330", + "codeCommune": "65184", + "libelleAcheminement": "GALEZ", + "nomCommune": "GALEZ" }, { - "codePostal": "02210", - "codeCommune": "02796", - "libelleAcheminement": "VICHEL NANTEUIL", - "nomCommune": "VICHEL NANTEUIL" + "codePostal": "55210", + "codeCommune": "55267", + "libelleAcheminement": "LACHAUSSEE", + "nomCommune": "LACHAUSSEE" }, { - "codePostal": "62123", - "codeCommune": "62399", - "libelleAcheminement": "HABARCQ", - "nomCommune": "HABARCQ" + "codePostal": "57530", + "codeCommune": "57563", + "libelleAcheminement": "RAVILLE", + "nomCommune": "RAVILLE" }, { - "codePostal": "41190", - "codeCommune": "41093", - "libelleAcheminement": "FRANCAY", - "nomCommune": "FRANCAY" + "codePostal": "66360", + "codeCommune": "66102", + "libelleAcheminement": "MANTET", + "nomCommune": "MANTET" }, { - "codePostal": "34990", - "codeCommune": "34123", - "libelleAcheminement": "JUVIGNAC", - "nomCommune": "JUVIGNAC" + "codePostal": "12630", + "codeCommune": "12157", + "libelleAcheminement": "MONTROZIER", + "nomCommune": "MONTROZIER" }, { - "codePostal": "02600", - "codeCommune": "02810", - "libelleAcheminement": "VILLERS COTTERETS", - "nomCommune": "VILLERS COTTERETS" + "codePostal": "65100", + "codeCommune": "65191", + "libelleAcheminement": "GAZOST", + "nomCommune": "GAZOST" }, { - "codePostal": "62760", - "codeCommune": "62404", - "libelleAcheminement": "HALLOY", - "nomCommune": "HALLOY" + "codePostal": "55300", + "codeCommune": "55274", + "libelleAcheminement": "LAMORVILLE", + "nomCommune": "LAMORVILLE" }, { - "codePostal": "41230", - "codeCommune": "41099", - "libelleAcheminement": "GY EN SOLOGNE", - "nomCommune": "GY EN SOLOGNE" + "codePostal": "57200", + "codeCommune": "57568", + "libelleAcheminement": "REMELFING", + "nomCommune": "REMELFING" }, { - "codePostal": "34800", - "codeCommune": "34138", - "libelleAcheminement": "LIEURAN CABRIERES", - "nomCommune": "LIEURAN CABRIERES" + "codePostal": "66480", + "codeCommune": "66106", + "libelleAcheminement": "MAUREILLAS LAS ILLAS", + "nomCommune": "MAUREILLAS LAS ILLAS" }, { - "codePostal": "02590", - "codeCommune": "02815", - "libelleAcheminement": "VILLERS ST CHRISTOPHE", - "nomCommune": "VILLERS ST CHRISTOPHE" + "codePostal": "12200", + "codeCommune": "12159", + "libelleAcheminement": "MORLHON LE HAUT", + "nomCommune": "MORLHON LE HAUT" }, { - "codePostal": "62390", - "codeCommune": "62411", - "libelleAcheminement": "HARAVESNES", - "nomCommune": "HARAVESNES" + "codePostal": "65240", + "codeCommune": "65195", + "libelleAcheminement": "GENOS", + "nomCommune": "GENOS" }, { - "codePostal": "41350", - "codeCommune": "41104", - "libelleAcheminement": "HUISSEAU SUR COSSON", - "nomCommune": "HUISSEAU SUR COSSON" + "codePostal": "55300", + "codeCommune": "55274", + "libelleAcheminement": "LAMORVILLE", + "nomCommune": "LAMORVILLE" }, { - "codePostal": "34210", - "codeCommune": "34141", - "libelleAcheminement": "LA LIVINIERE", - "nomCommune": "LA LIVINIERE" + "codePostal": "57480", + "codeCommune": "57569", + "libelleAcheminement": "REMELING", + "nomCommune": "REMELING" }, { - "codePostal": "02310", - "codeCommune": "02818", - "libelleAcheminement": "VILLIERS ST DENIS", - "nomCommune": "VILLIERS ST DENIS" + "codePostal": "66460", + "codeCommune": "66107", + "libelleAcheminement": "MAURY", + "nomCommune": "MAURY" }, { - "codePostal": "62440", - "codeCommune": "62413", - "libelleAcheminement": "HARNES", - "nomCommune": "HARNES" + "codePostal": "12330", + "codeCommune": "12161", + "libelleAcheminement": "MOURET", + "nomCommune": "MOURET" }, { - "codePostal": "41370", - "codeCommune": "41105", - "libelleAcheminement": "JOSNES", - "nomCommune": "JOSNES" + "codePostal": "65140", + "codeCommune": "65196", + "libelleAcheminement": "GENSAC", + "nomCommune": "GENSAC" }, { - "codePostal": "34400", - "codeCommune": "34146", - "libelleAcheminement": "LUNEL VIEL", - "nomCommune": "LUNEL VIEL" + "codePostal": "55220", + "codeCommune": "55286", + "libelleAcheminement": "LEMMES", + "nomCommune": "LEMMES" }, { - "codePostal": "02140", - "codeCommune": "02823", - "libelleAcheminement": "VOHARIES", - "nomCommune": "VOHARIES" + "codePostal": "57580", + "codeCommune": "57572", + "libelleAcheminement": "REMILLY", + "nomCommune": "REMILLY" }, { - "codePostal": "62147", - "codeCommune": "62421", - "libelleAcheminement": "HAVRINCOURT", - "nomCommune": "HAVRINCOURT" + "codePostal": "66170", + "codeCommune": "66108", + "libelleAcheminement": "MILLAS", + "nomCommune": "MILLAS" }, { - "codePostal": "41320", - "codeCommune": "41110", - "libelleAcheminement": "LANGON SUR CHER", - "nomCommune": "LANGON SUR CHER" + "codePostal": "12600", + "codeCommune": "12164", + "libelleAcheminement": "MUR DE BARREZ", + "nomCommune": "MUR DE BARREZ" }, { - "codePostal": "34130", - "codeCommune": "34154", - "libelleAcheminement": "MAUGUIO", - "nomCommune": "MAUGUIO" + "codePostal": "65100", + "codeCommune": "65201", + "libelleAcheminement": "GEU", + "nomCommune": "GEU" }, { - "codePostal": "03380", - "codeCommune": "03005", - "libelleAcheminement": "ARCHIGNAT", - "nomCommune": "ARCHIGNAT" + "codePostal": "55200", + "codeCommune": "55288", + "libelleAcheminement": "LEROUVILLE", + "nomCommune": "LEROUVILLE" }, { - "codePostal": "62570", - "codeCommune": "62423", - "libelleAcheminement": "HELFAUT", - "nomCommune": "HELFAUT" + "codePostal": "57230", + "codeCommune": "57577", + "libelleAcheminement": "REYERSVILLER", + "nomCommune": "REYERSVILLER" }, { - "codePostal": "41370", - "codeCommune": "41119", - "libelleAcheminement": "LORGES", - "nomCommune": "LORGES" + "codePostal": "66110", + "codeCommune": "66113", + "libelleAcheminement": "MONTBOLO", + "nomCommune": "MONTBOLO" }, { - "codePostal": "34290", - "codeCommune": "34166", - "libelleAcheminement": "MONTBLANC", - "nomCommune": "MONTBLANC" + "codePostal": "12230", + "codeCommune": "12168", + "libelleAcheminement": "NANT", + "nomCommune": "NANT" }, { - "codePostal": "03190", - "codeCommune": "03010", - "libelleAcheminement": "AUDES", - "nomCommune": "AUDES" + "codePostal": "65100", + "codeCommune": "65203", + "libelleAcheminement": "GEZ EZ ANGLES", + "nomCommune": "GEZ EZ ANGLES" }, { - "codePostal": "62128", - "codeCommune": "62426", - "libelleAcheminement": "HENINEL", - "nomCommune": "HENINEL" + "codePostal": "55260", + "codeCommune": "55301", + "libelleAcheminement": "LONGCHAMPS SUR AIRE", + "nomCommune": "LONGCHAMPS SUR AIRE" }, { - "codePostal": "41250", - "codeCommune": "41129", - "libelleAcheminement": "MASLIVES", - "nomCommune": "MASLIVES" + "codePostal": "57720", + "codeCommune": "57590", + "libelleAcheminement": "ROLBING", + "nomCommune": "ROLBING" }, { - "codePostal": "34080", - "codeCommune": "34172", - "libelleAcheminement": "MONTPELLIER", - "nomCommune": "MONTPELLIER" + "codePostal": "66360", + "codeCommune": "66123", + "libelleAcheminement": "NYER", + "nomCommune": "NYER" }, { - "codePostal": "03460", - "codeCommune": "03015", - "libelleAcheminement": "BAGNEUX", - "nomCommune": "BAGNEUX" + "codePostal": "12330", + "codeCommune": "12171", + "libelleAcheminement": "NAUVIALE", + "nomCommune": "NAUVIALE" }, { - "codePostal": "62850", - "codeCommune": "62432", - "libelleAcheminement": "HERBINGHEN", - "nomCommune": "HERBINGHEN" + "codePostal": "65350", + "codeCommune": "65204", + "libelleAcheminement": "GONEZ", + "nomCommune": "GONEZ" }, { - "codePostal": "41190", - "codeCommune": "41142", - "libelleAcheminement": "VALENCISSE", - "nomCommune": "VALENCISSE" + "codePostal": "55100", + "codeCommune": "55307", + "libelleAcheminement": "LOUVEMONT COTE DU POIVRE", + "nomCommune": "LOUVEMONT COTE DU POIVRE" }, { - "codePostal": "34150", - "codeCommune": "34173", - "libelleAcheminement": "MONTPEYROUX", - "nomCommune": "MONTPEYROUX" + "codePostal": "57520", + "codeCommune": "57598", + "libelleAcheminement": "ROUHLING", + "nomCommune": "ROUHLING" }, { - "codePostal": "03390", - "codeCommune": "03020", - "libelleAcheminement": "BEAUNE D ALLIER", - "nomCommune": "BEAUNE D ALLIER" + "codePostal": "66340", + "codeCommune": "66132", + "libelleAcheminement": "PALAU DE CERDAGNE", + "nomCommune": "PALAU DE CERDAGNE" }, { - "codePostal": "62650", - "codeCommune": "62437", - "libelleAcheminement": "HERLY", - "nomCommune": "HERLY" + "codePostal": "12510", + "codeCommune": "12174", + "libelleAcheminement": "OLEMPS", + "nomCommune": "OLEMPS" }, { - "codePostal": "41350", - "codeCommune": "41148", - "libelleAcheminement": "MONTLIVAULT", - "nomCommune": "MONTLIVAULT" + "codePostal": "65200", + "codeCommune": "65216", + "libelleAcheminement": "HAUBAN", + "nomCommune": "HAUBAN" }, { - "codePostal": "34980", - "codeCommune": "34177", - "libelleAcheminement": "MURLES", - "nomCommune": "MURLES" + "codePostal": "55700", + "codeCommune": "55323", + "libelleAcheminement": "MARTINCOURT SUR MEUSE", + "nomCommune": "MARTINCOURT SUR MEUSE" }, { - "codePostal": "03800", - "codeCommune": "03030", - "libelleAcheminement": "BIOZAT", - "nomCommune": "BIOZAT" + "codePostal": "57330", + "codeCommune": "57600", + "libelleAcheminement": "ROUSSY LE VILLAGE", + "nomCommune": "ROUSSY LE VILLAGE" }, { - "codePostal": "62132", - "codeCommune": "62439", - "libelleAcheminement": "HERMELINGHEN", - "nomCommune": "HERMELINGHEN" + "codePostal": "66690", + "codeCommune": "66133", + "libelleAcheminement": "PALAU DEL VIDRE", + "nomCommune": "PALAU DEL VIDRE" }, { - "codePostal": "41700", - "codeCommune": "41166", - "libelleAcheminement": "OISLY", - "nomCommune": "OISLY" + "codePostal": "12310", + "codeCommune": "12177", + "libelleAcheminement": "PALMAS D AVEYRON", + "nomCommune": "PALMAS D AVEYRON" }, { - "codePostal": "34800", - "codeCommune": "34180", - "libelleAcheminement": "NEBIAN", - "nomCommune": "NEBIAN" + "codePostal": "65250", + "codeCommune": "65218", + "libelleAcheminement": "HECHES", + "nomCommune": "HECHES" }, { - "codePostal": "03300", - "codeCommune": "03033", - "libelleAcheminement": "BOST", - "nomCommune": "BOST" + "codePostal": "55400", + "codeCommune": "55325", + "libelleAcheminement": "MAUCOURT SUR ORNE", + "nomCommune": "MAUCOURT SUR ORNE" }, { - "codePostal": "62147", - "codeCommune": "62440", - "libelleAcheminement": "HERMIES", - "nomCommune": "HERMIES" + "codePostal": "57500", + "codeCommune": "57606", + "libelleAcheminement": "ST AVOLD", + "nomCommune": "ST AVOLD" }, { - "codePostal": "41150", - "codeCommune": "41167", - "libelleAcheminement": "VEUZAIN SUR LOIRE", - "nomCommune": "VEUZAIN SUR LOIRE" + "codePostal": "66730", + "codeCommune": "66139", + "libelleAcheminement": "PEZILLA DE CONFLENT", + "nomCommune": "PEZILLA DE CONFLENT" }, { - "codePostal": "34320", - "codeCommune": "34184", - "libelleAcheminement": "NIZAS", - "nomCommune": "NIZAS" + "codePostal": "12340", + "codeCommune": "12177", + "libelleAcheminement": "PALMAS D AVEYRON", + "nomCommune": "PALMAS D AVEYRON" }, { - "codePostal": "03150", - "codeCommune": "03034", - "libelleAcheminement": "BOUCE", - "nomCommune": "BOUCE" + "codePostal": "65700", + "codeCommune": "65219", + "libelleAcheminement": "HERES", + "nomCommune": "HERES" }, { - "codePostal": "62575", - "codeCommune": "62452", - "libelleAcheminement": "HEURINGHEM", - "nomCommune": "HEURINGHEM" + "codePostal": "55190", + "codeCommune": "55327", + "libelleAcheminement": "MAUVAGES", + "nomCommune": "MAUVAGES" }, { - "codePostal": "41300", - "codeCommune": "41168", - "libelleAcheminement": "ORCAY", - "nomCommune": "ORCAY" + "codePostal": "57640", + "codeCommune": "57612", + "libelleAcheminement": "ST HUBERT", + "nomCommune": "ST HUBERT" }, { - "codePostal": "34390", - "codeCommune": "34187", - "libelleAcheminement": "OLARGUES", - "nomCommune": "OLARGUES" + "codePostal": "66370", + "codeCommune": "66140", + "libelleAcheminement": "PEZILLA LA RIVIERE", + "nomCommune": "PEZILLA LA RIVIERE" }, { - "codePostal": "03000", - "codeCommune": "03040", - "libelleAcheminement": "BRESSOLLES", - "nomCommune": "BRESSOLLES" + "codePostal": "12720", + "codeCommune": "12180", + "libelleAcheminement": "PEYRELEAU", + "nomCommune": "PEYRELEAU" }, { - "codePostal": "62850", - "codeCommune": "62455", - "libelleAcheminement": "HOCQUINGHEN", - "nomCommune": "HOCQUINGHEN" + "codePostal": "65250", + "codeCommune": "65231", + "libelleAcheminement": "IZAUX", + "nomCommune": "IZAUX" }, { - "codePostal": "41290", - "codeCommune": "41171", - "libelleAcheminement": "OUCQUES LA NOUVELLE", - "nomCommune": "OUCQUES LA NOUVELLE" + "codePostal": "55140", + "codeCommune": "55350", + "libelleAcheminement": "MONTIGNY LES VAUCOULEURS", + "nomCommune": "MONTIGNY LES VAUCOULEURS" }, { - "codePostal": "34700", - "codeCommune": "34188", - "libelleAcheminement": "OLMET ET VILLECUN", - "nomCommune": "OLMET ET VILLECUN" + "codePostal": "57930", + "codeCommune": "57613", + "libelleAcheminement": "ST JEAN DE BASSEL", + "nomCommune": "ST JEAN DE BASSEL" }, { - "codePostal": "03350", - "codeCommune": "03041", - "libelleAcheminement": "LE BRETHON", - "nomCommune": "LE BRETHON" + "codePostal": "66300", + "codeCommune": "66145", + "libelleAcheminement": "PONTEILLA", + "nomCommune": "PONTEILLA" }, { - "codePostal": "62130", - "codeCommune": "62462", - "libelleAcheminement": "HUCLIER", - "nomCommune": "HUCLIER" + "codePostal": "12290", + "codeCommune": "12185", + "libelleAcheminement": "PONT DE SALARS", + "nomCommune": "PONT DE SALARS" }, { - "codePostal": "41100", - "codeCommune": "41174", - "libelleAcheminement": "PERIGNY", - "nomCommune": "PERIGNY" + "codePostal": "65290", + "codeCommune": "65235", + "libelleAcheminement": "JUILLAN", + "nomCommune": "JUILLAN" }, { - "codePostal": "34210", - "codeCommune": "34189", - "libelleAcheminement": "OLONZAC", - "nomCommune": "OLONZAC" + "codePostal": "55000", + "codeCommune": "55352", + "libelleAcheminement": "MONTPLONNE", + "nomCommune": "MONTPLONNE" }, { - "codePostal": "03120", - "codeCommune": "03042", - "libelleAcheminement": "LE BREUIL", - "nomCommune": "LE BREUIL" + "codePostal": "57560", + "codeCommune": "57623", + "libelleAcheminement": "ST QUIRIN", + "nomCommune": "ST QUIRIN" }, { - "codePostal": "62129", - "codeCommune": "62471", - "libelleAcheminement": "BELLINGHEM", - "nomCommune": "BELLINGHEM" + "codePostal": "66500", + "codeCommune": "66149", + "libelleAcheminement": "PRADES", + "nomCommune": "PRADES" }, { - "codePostal": "41170", - "codeCommune": "41177", - "libelleAcheminement": "LE PLESSIS DORIN", - "nomCommune": "LE PLESSIS DORIN" + "codePostal": "12240", + "codeCommune": "12189", + "libelleAcheminement": "PRADINAS", + "nomCommune": "PRADINAS" }, { - "codePostal": "34700", - "codeCommune": "34196", - "libelleAcheminement": "PEGAIROLLES DE L ESCALETTE", - "nomCommune": "PEGAIROLLES DE L ESCALETTE" + "codePostal": "65100", + "codeCommune": "65247", + "libelleAcheminement": "ARRAYOU LAHITTE", + "nomCommune": "ARRAYOU LAHITTE" }, { - "codePostal": "03700", - "codeCommune": "03044", - "libelleAcheminement": "BRUGHEAS", - "nomCommune": "BRUGHEAS" + "codePostal": "55100", + "codeCommune": "55355", + "libelleAcheminement": "MONTZEVILLE", + "nomCommune": "MONTZEVILLE" }, { - "codePostal": "62122", - "codeCommune": "62479", - "libelleAcheminement": "LABEUVRIERE", - "nomCommune": "LABEUVRIERE" + "codePostal": "57170", + "codeCommune": "57625", + "libelleAcheminement": "SALONNES", + "nomCommune": "SALONNES" }, { - "codePostal": "41370", - "codeCommune": "41178", - "libelleAcheminement": "LE PLESSIS L ECHELLE", - "nomCommune": "LE PLESSIS L ECHELLE" + "codePostal": "66360", + "codeCommune": "66155", + "libelleAcheminement": "PY", + "nomCommune": "PY" }, { - "codePostal": "34570", - "codeCommune": "34202", - "libelleAcheminement": "PIGNAN", - "nomCommune": "PIGNAN" + "codePostal": "12640", + "codeCommune": "12200", + "libelleAcheminement": "RIVIERE SUR TARN", + "nomCommune": "RIVIERE SUR TARN" }, { - "codePostal": "03350", - "codeCommune": "03048", - "libelleAcheminement": "CERILLY", - "nomCommune": "CERILLY" + "codePostal": "65700", + "codeCommune": "65264", + "libelleAcheminement": "LASCAZERES", + "nomCommune": "LASCAZERES" }, { - "codePostal": "62140", - "codeCommune": "62481", - "libelleAcheminement": "LABROYE", - "nomCommune": "LABROYE" + "codePostal": "55500", + "codeCommune": "55358", + "libelleAcheminement": "CHANTERAINE", + "nomCommune": "CHANTERAINE" }, { - "codePostal": "41100", - "codeCommune": "41187", - "libelleAcheminement": "RENAY", - "nomCommune": "RENAY" + "codePostal": "57640", + "codeCommune": "57626", + "libelleAcheminement": "SANRY LES VIGY", + "nomCommune": "SANRY LES VIGY" }, { - "codePostal": "34810", - "codeCommune": "34207", - "libelleAcheminement": "POMEROLS", - "nomCommune": "POMEROLS" + "codePostal": "66730", + "codeCommune": "66156", + "libelleAcheminement": "RABOUILLET", + "nomCommune": "RABOUILLET" }, { - "codePostal": "03320", - "codeCommune": "03064", - "libelleAcheminement": "CHATEAU SUR ALLIER", - "nomCommune": "CHATEAU SUR ALLIER" + "codePostal": "12340", + "codeCommune": "12201", + "libelleAcheminement": "RODELLE", + "nomCommune": "RODELLE" }, { - "codePostal": "62830", - "codeCommune": "62483", - "libelleAcheminement": "LACRES", - "nomCommune": "LACRES" + "codePostal": "65380", + "codeCommune": "65268", + "libelleAcheminement": "LAYRISSE", + "nomCommune": "LAYRISSE" }, { - "codePostal": "41290", - "codeCommune": "41188", - "libelleAcheminement": "RHODON", - "nomCommune": "RHODON" + "codePostal": "55320", + "codeCommune": "55360", + "libelleAcheminement": "MOUILLY", + "nomCommune": "MOUILLY" }, { - "codePostal": "34480", - "codeCommune": "34214", - "libelleAcheminement": "POUZOLLES", - "nomCommune": "POUZOLLES" + "codePostal": "57370", + "codeCommune": "57635", + "libelleAcheminement": "SCHALBACH", + "nomCommune": "SCHALBACH" }, { - "codePostal": "03440", - "codeCommune": "03070", - "libelleAcheminement": "CHAVENON", - "nomCommune": "CHAVENON" + "codePostal": "66400", + "codeCommune": "66160", + "libelleAcheminement": "REYNES", + "nomCommune": "REYNES" }, { - "codePostal": "62960", - "codeCommune": "62485", - "libelleAcheminement": "LAIRES", - "nomCommune": "LAIRES" + "codePostal": "12120", + "codeCommune": "12207", + "libelleAcheminement": "RULLAC ST CIRQ", + "nomCommune": "RULLAC ST CIRQ" }, { - "codePostal": "41370", - "codeCommune": "41191", - "libelleAcheminement": "ROCHES", - "nomCommune": "ROCHES" + "codePostal": "65150", + "codeCommune": "65277", + "libelleAcheminement": "LOMBRES", + "nomCommune": "LOMBRES" }, { - "codePostal": "34150", - "codeCommune": "34221", - "libelleAcheminement": "PUECHABON", - "nomCommune": "PUECHABON" + "codePostal": "55110", + "codeCommune": "55365", + "libelleAcheminement": "MURVAUX", + "nomCommune": "MURVAUX" }, { - "codePostal": "03600", - "codeCommune": "03081", - "libelleAcheminement": "COLOMBIER", - "nomCommune": "COLOMBIER" + "codePostal": "57350", + "codeCommune": "57638", + "libelleAcheminement": "SCHOENECK", + "nomCommune": "SCHOENECK" }, { - "codePostal": "62124", - "codeCommune": "62493", - "libelleAcheminement": "LEBUCQUIERE", - "nomCommune": "LEBUCQUIERE" + "codePostal": "66690", + "codeCommune": "66168", + "libelleAcheminement": "ST ANDRE", + "nomCommune": "ST ANDRE" }, { - "codePostal": "41100", - "codeCommune": "41200", - "libelleAcheminement": "STE ANNE", - "nomCommune": "STE ANNE" + "codePostal": "12720", + "codeCommune": "12211", + "libelleAcheminement": "ST ANDRE DE VEZINES", + "nomCommune": "ST ANDRE DE VEZINES" }, { - "codePostal": "34650", - "codeCommune": "34231", - "libelleAcheminement": "ROMIGUIERES", - "nomCommune": "ROMIGUIERES" + "codePostal": "65130", + "codeCommune": "65278", + "libelleAcheminement": "LOMNE", + "nomCommune": "LOMNE" }, { - "codePostal": "03300", - "codeCommune": "03094", - "libelleAcheminement": "CREUZIER LE VIEUX", - "nomCommune": "CREUZIER LE VIEUX" + "codePostal": "55000", + "codeCommune": "55366", + "libelleAcheminement": "VAL D ORNAIN", + "nomCommune": "VAL D ORNAIN" }, { - "codePostal": "62190", - "codeCommune": "62500", - "libelleAcheminement": "LESPESSES", - "nomCommune": "LESPESSES" + "codePostal": "57480", + "codeCommune": "57650", + "libelleAcheminement": "SIERCK LES BAINS", + "nomCommune": "SIERCK LES BAINS" }, { - "codePostal": "41800", - "codeCommune": "41201", - "libelleAcheminement": "ST ARNOULT", - "nomCommune": "ST ARNOULT" + "codePostal": "66750", + "codeCommune": "66171", + "libelleAcheminement": "ST CYPRIEN", + "nomCommune": "ST CYPRIEN" }, { - "codePostal": "34380", - "codeCommune": "34236", - "libelleAcheminement": "LE ROUET", - "nomCommune": "ROUET" + "codePostal": "12130", + "codeCommune": "12219", + "libelleAcheminement": "STE EULALIE D OLT", + "nomCommune": "STE EULALIE D OLT" }, { - "codePostal": "03170", - "codeCommune": "03097", - "libelleAcheminement": "DENEUILLE LES MINES", - "nomCommune": "DENEUILLE LES MINES" + "codePostal": "65220", + "codeCommune": "65288", + "libelleAcheminement": "LUBRET ST LUC", + "nomCommune": "LUBRET ST LUC" }, { - "codePostal": "62810", - "codeCommune": "62507", - "libelleAcheminement": "LIENCOURT", - "nomCommune": "LIENCOURT" + "codePostal": "55000", + "codeCommune": "55369", + "libelleAcheminement": "NAIVES ROSIERES", + "nomCommune": "NAIVES ROSIERES" }, { - "codePostal": "41000", - "codeCommune": "41206", - "libelleAcheminement": "ST DENIS SUR LOIRE", - "nomCommune": "ST DENIS SUR LOIRE" + "codePostal": "57530", + "codeCommune": "57654", + "libelleAcheminement": "SILLY SUR NIED", + "nomCommune": "SILLY SUR NIED" }, { - "codePostal": "34190", - "codeCommune": "34238", - "libelleAcheminement": "ST ANDRE DE BUEGES", - "nomCommune": "ST ANDRE DE BUEGES" + "codePostal": "66240", + "codeCommune": "66172", + "libelleAcheminement": "ST ESTEVE", + "nomCommune": "ST ESTEVE" }, { - "codePostal": "03110", - "codeCommune": "03109", - "libelleAcheminement": "ESCUROLLES", - "nomCommune": "ESCUROLLES" + "codePostal": "12210", + "codeCommune": "12223", + "libelleAcheminement": "ARGENCES EN AUBRAC", + "nomCommune": "ARGENCES EN AUBRAC" }, { - "codePostal": "62120", - "codeCommune": "62517", - "libelleAcheminement": "LINGHEM", - "nomCommune": "LINGHEM" + "codePostal": "65120", + "codeCommune": "65295", + "libelleAcheminement": "LUZ ST SAUVEUR", + "nomCommune": "LUZ ST SAUVEUR" }, { - "codePostal": "41350", - "codeCommune": "41212", - "libelleAcheminement": "ST GERVAIS LA FORET", - "nomCommune": "ST GERVAIS LA FORET" + "codePostal": "55230", + "codeCommune": "55387", + "libelleAcheminement": "NOUILLONPONT", + "nomCommune": "NOUILLONPONT" }, { - "codePostal": "34160", - "codeCommune": "34242", - "libelleAcheminement": "ST BAUZILLE DE MONTMEL", - "nomCommune": "ST BAUZILLE DE MONTMEL" + "codePostal": "57170", + "codeCommune": "57657", + "libelleAcheminement": "SOTZELING", + "nomCommune": "SOTZELING" }, { - "codePostal": "03110", - "codeCommune": "03110", - "libelleAcheminement": "ESPINASSE VOZELLE", - "nomCommune": "ESPINASSE VOZELLE" + "codePostal": "66170", + "codeCommune": "66174", + "libelleAcheminement": "ST FELIU D AVALL", + "nomCommune": "ST FELIU D AVALL" }, { - "codePostal": "62134", - "codeCommune": "62519", - "libelleAcheminement": "LISBOURG", - "nomCommune": "LISBOURG" + "codePostal": "12130", + "codeCommune": "12224", + "libelleAcheminement": "ST GENIEZ D OLT ET D AUBRAC", + "nomCommune": "ST GENIEZ D OLT ET D AUBRAC" }, { - "codePostal": "41160", - "codeCommune": "41214", - "libelleAcheminement": "ST HILAIRE LA GRAVELLE", - "nomCommune": "ST HILAIRE LA GRAVELLE" + "codePostal": "65120", + "codeCommune": "65295", + "libelleAcheminement": "LUZ ST SAUVEUR", + "nomCommune": "LUZ ST SAUVEUR" }, { - "codePostal": "34270", - "codeCommune": "34248", - "libelleAcheminement": "STE CROIX DE QUINTILLARGUES", - "nomCommune": "STE CROIX DE QUINTILLARGUES" + "codePostal": "55800", + "codeCommune": "55388", + "libelleAcheminement": "NOYERS AUZECOURT", + "nomCommune": "NOYERS AUZECOURT" }, { - "codePostal": "03190", - "codeCommune": "03111", - "libelleAcheminement": "ESTIVAREILLES", - "nomCommune": "ESTIVAREILLES" + "codePostal": "57350", + "codeCommune": "57660", + "libelleAcheminement": "STIRING WENDEL", + "nomCommune": "STIRING WENDEL" }, { - "codePostal": "62400", - "codeCommune": "62520", - "libelleAcheminement": "LOCON", - "nomCommune": "LOCON" + "codePostal": "66490", + "codeCommune": "66178", + "libelleAcheminement": "ST JEAN PLA DE CORTS", + "nomCommune": "ST JEAN PLA DE CORTS" }, { - "codePostal": "41800", - "codeCommune": "41215", - "libelleAcheminement": "ST JACQUES DES GUERETS", - "nomCommune": "ST JACQUES DES GUERETS" + "codePostal": "12230", + "codeCommune": "12231", + "libelleAcheminement": "ST JEAN DU BRUEL", + "nomCommune": "ST JEAN DU BRUEL" }, { - "codePostal": "34980", - "codeCommune": "34255", - "libelleAcheminement": "ST GELY DU FESC", - "nomCommune": "ST GELY DU FESC" + "codePostal": "65700", + "codeCommune": "65296", + "libelleAcheminement": "MADIRAN", + "nomCommune": "MADIRAN" }, { - "codePostal": "03230", - "codeCommune": "03119", - "libelleAcheminement": "GANNAY SUR LOIRE", - "nomCommune": "GANNAY SUR LOIRE" + "codePostal": "55160", + "codeCommune": "55399", + "libelleAcheminement": "PAREID", + "nomCommune": "PAREID" }, { - "codePostal": "62990", - "codeCommune": "62522", - "libelleAcheminement": "LOISON SUR CREQUOISE", - "nomCommune": "LOISON SUR CREQUOISE" + "codePostal": "57340", + "codeCommune": "57662", + "libelleAcheminement": "SUISSE", + "nomCommune": "SUISSE" }, { - "codePostal": "41160", - "codeCommune": "41216", - "libelleAcheminement": "ST JEAN FROIDMENTEL", - "nomCommune": "ST JEAN FROIDMENTEL" + "codePostal": "66110", + "codeCommune": "66183", + "libelleAcheminement": "ST MARSAL", + "nomCommune": "ST MARSAL" }, { - "codePostal": "34160", - "codeCommune": "34256", - "libelleAcheminement": "ST GENIES DES MOURGUES", - "nomCommune": "ST GENIES DES MOURGUES" + "codePostal": "12250", + "codeCommune": "12232", + "libelleAcheminement": "ST JEAN ET ST PAUL", + "nomCommune": "ST JEAN ET ST PAUL" }, { - "codePostal": "03210", - "codeCommune": "03122", - "libelleAcheminement": "GIPCY", - "nomCommune": "GIPCY" + "codePostal": "65140", + "codeCommune": "65297", + "libelleAcheminement": "MANSAN", + "nomCommune": "MANSAN" }, { - "codePostal": "62218", - "codeCommune": "62523", - "libelleAcheminement": "LOISON SOUS LENS", - "nomCommune": "LOISON SOUS LENS" + "codePostal": "55260", + "codeCommune": "55404", + "libelleAcheminement": "PIERREFITTE SUR AIRE", + "nomCommune": "PIERREFITTE SUR AIRE" }, { - "codePostal": "41320", - "codeCommune": "41218", - "libelleAcheminement": "ST JULIEN SUR CHER", - "nomCommune": "ST JULIEN SUR CHER" + "codePostal": "57525", + "codeCommune": "57663", + "libelleAcheminement": "TALANGE", + "nomCommune": "TALANGE" }, { - "codePostal": "34400", - "codeCommune": "34272", - "libelleAcheminement": "ST JUST", - "nomCommune": "ST JUST" + "codePostal": "66210", + "codeCommune": "66188", + "libelleAcheminement": "ST PIERRE DELS FORCATS", + "nomCommune": "ST PIERRE DELS FORCATS" }, { - "codePostal": "03340", - "codeCommune": "03124", - "libelleAcheminement": "GOUISE", - "nomCommune": "GOUISE" + "codePostal": "12130", + "codeCommune": "12239", + "libelleAcheminement": "ST MARTIN DE LENNE", + "nomCommune": "ST MARTIN DE LENNE" }, { - "codePostal": "62630", - "codeCommune": "62527", - "libelleAcheminement": "LONGVILLIERS", - "nomCommune": "LONGVILLIERS" + "codePostal": "65200", + "codeCommune": "65300", + "libelleAcheminement": "MARSAS", + "nomCommune": "MARSAS" }, { - "codePostal": "41240", - "codeCommune": "41219", - "libelleAcheminement": "ST LAURENT DES BOIS", - "nomCommune": "ST LAURENT DES BOIS" + "codePostal": "55200", + "codeCommune": "55407", + "libelleAcheminement": "PONT SUR MEUSE", + "nomCommune": "PONT SUR MEUSE" }, { - "codePostal": "34390", - "codeCommune": "34273", - "libelleAcheminement": "ST MARTIN DE L ARCON", - "nomCommune": "ST MARTIN DE L ARCON" + "codePostal": "57260", + "codeCommune": "57664", + "libelleAcheminement": "TARQUIMPOL", + "nomCommune": "TARQUIMPOL" }, { - "codePostal": "03250", - "codeCommune": "03125", - "libelleAcheminement": "LA GUILLERMIE", - "nomCommune": "LA GUILLERMIE" + "codePostal": "66360", + "codeCommune": "66197", + "libelleAcheminement": "SOUANYAS", + "nomCommune": "SOUANYAS" }, { - "codePostal": "62750", - "codeCommune": "62528", - "libelleAcheminement": "LOOS EN GOHELLE", - "nomCommune": "LOOS EN GOHELLE" + "codePostal": "12260", + "codeCommune": "12252", + "libelleAcheminement": "SALLES COURBATIES", + "nomCommune": "SALLES COURBATIES" }, { - "codePostal": "41370", - "codeCommune": "41221", - "libelleAcheminement": "ST LEONARD EN BEAUCE", - "nomCommune": "ST LEONARD EN BEAUCE" + "codePostal": "65240", + "codeCommune": "65317", + "libelleAcheminement": "MONT", + "nomCommune": "MONT" }, { - "codePostal": "34230", - "codeCommune": "34285", - "libelleAcheminement": "ST PONS DE MAUCHIENS", - "nomCommune": "ST PONS DE MAUCHIENS" + "codePostal": "55220", + "codeCommune": "55411", + "libelleAcheminement": "RAMBLUZIN ET BENOITE VAUX", + "nomCommune": "RAMBLUZIN ET BENOITE VAUX" }, { - "codePostal": "03800", - "codeCommune": "03133", - "libelleAcheminement": "JENZAT", - "nomCommune": "JENZAT" + "codePostal": "57580", + "codeCommune": "57676", + "libelleAcheminement": "TRAGNY", + "nomCommune": "TRAGNY" }, { - "codePostal": "62840", - "codeCommune": "62529", - "libelleAcheminement": "LORGIES", - "nomCommune": "LORGIES" + "codePostal": "66720", + "codeCommune": "66205", + "libelleAcheminement": "TAUTAVEL", + "nomCommune": "TAUTAVEL" }, { - "codePostal": "41190", - "codeCommune": "41223", - "libelleAcheminement": "ST LUBIN EN VERGONNOIS", - "nomCommune": "ST LUBIN EN VERGONNOIS" + "codePostal": "12440", + "codeCommune": "12258", + "libelleAcheminement": "LA SALVETAT PEYRALES", + "nomCommune": "LA SALVETAT PEYRALES" }, { - "codePostal": "34400", - "codeCommune": "34288", - "libelleAcheminement": "ST SERIES", - "nomCommune": "ST SERIES" + "codePostal": "65150", + "codeCommune": "65319", + "libelleAcheminement": "MONTEGUT", + "nomCommune": "MONTEGUT" }, { - "codePostal": "03410", - "codeCommune": "03145", - "libelleAcheminement": "LIGNEROLLES", - "nomCommune": "LIGNEROLLES" + "codePostal": "55220", + "codeCommune": "55420", + "libelleAcheminement": "RECOURT LE CREUX", + "nomCommune": "RECOURT LE CREUX" }, { - "codePostal": "62310", - "codeCommune": "62533", - "libelleAcheminement": "LUGY", - "nomCommune": "LUGY" + "codePostal": "57300", + "codeCommune": "57677", + "libelleAcheminement": "TREMERY", + "nomCommune": "TREMERY" }, { - "codePostal": "41120", - "codeCommune": "41233", - "libelleAcheminement": "SAMBIN", - "nomCommune": "SAMBIN" + "codePostal": "66200", + "codeCommune": "66208", + "libelleAcheminement": "THEZA", + "nomCommune": "THEZA" }, { - "codePostal": "34210", - "codeCommune": "34302", - "libelleAcheminement": "SIRAN", - "nomCommune": "SIRAN" + "codePostal": "12440", + "codeCommune": "12278", + "libelleAcheminement": "TAYRAC", + "nomCommune": "TAYRAC" }, { - "codePostal": "03500", - "codeCommune": "03148", - "libelleAcheminement": "LORIGES", - "nomCommune": "LORIGES" + "codePostal": "65200", + "codeCommune": "65320", + "libelleAcheminement": "MONTGAILLARD", + "nomCommune": "MONTGAILLARD" }, { - "codePostal": "62620", - "codeCommune": "62540", - "libelleAcheminement": "MAISNIL LES RUITZ", - "nomCommune": "MAISNIL LES RUITZ" + "codePostal": "55000", + "codeCommune": "55426", + "libelleAcheminement": "RESSON", + "nomCommune": "RESSON" }, { - "codePostal": "41310", - "codeCommune": "41236", - "libelleAcheminement": "SASNIERES", - "nomCommune": "SASNIERES" + "codePostal": "57710", + "codeCommune": "57678", + "libelleAcheminement": "TRESSANGE", + "nomCommune": "TRESSANGE" }, { - "codePostal": "34700", - "codeCommune": "34304", - "libelleAcheminement": "SOUBES", - "nomCommune": "SOUBES" + "codePostal": "66360", + "codeCommune": "66209", + "libelleAcheminement": "THUES ENTRE VALLS", + "nomCommune": "THUES ENTRE VALLS" }, { - "codePostal": "03330", - "codeCommune": "03152", - "libelleAcheminement": "LOUROUX DE BOUBLE", - "nomCommune": "LOUROUX DE BOUBLE" + "codePostal": "12250", + "codeCommune": "12282", + "libelleAcheminement": "TOURNEMIRE", + "nomCommune": "TOURNEMIRE" }, { - "codePostal": "62127", - "codeCommune": "62542", - "libelleAcheminement": "MAIZIERES", - "nomCommune": "MAIZIERES" + "codePostal": "65190", + "codeCommune": "65324", + "libelleAcheminement": "MOULEDOUS", + "nomCommune": "MOULEDOUS" }, { - "codePostal": "41110", - "codeCommune": "41239", - "libelleAcheminement": "SEIGY", - "nomCommune": "SEIGY" + "codePostal": "55000", + "codeCommune": "55435", + "libelleAcheminement": "ROBERT ESPAGNE", + "nomCommune": "ROBERT ESPAGNE" }, { - "codePostal": "34820", - "codeCommune": "34309", - "libelleAcheminement": "TEYRAN", - "nomCommune": "TEYRAN" + "codePostal": "57270", + "codeCommune": "57683", + "libelleAcheminement": "UCKANGE", + "nomCommune": "UCKANGE" }, { - "codePostal": "03130", - "codeCommune": "03154", - "libelleAcheminement": "LUNEAU", - "nomCommune": "LUNEAU" + "codePostal": "66300", + "codeCommune": "66210", + "libelleAcheminement": "THUIR", + "nomCommune": "THUIR" }, { - "codePostal": "62250", - "codeCommune": "62546", - "libelleAcheminement": "MANINGHEN HENNE", - "nomCommune": "MANINGHEN HENNE" + "codePostal": "12400", + "codeCommune": "12286", + "libelleAcheminement": "VABRES L ABBAYE", + "nomCommune": "VABRES L ABBAYE" }, { - "codePostal": "41130", - "codeCommune": "41242", - "libelleAcheminement": "SELLES SUR CHER", - "nomCommune": "SELLES SUR CHER" + "codePostal": "65200", + "codeCommune": "65328", + "libelleAcheminement": "NEUILH", + "nomCommune": "NEUILH" }, { - "codePostal": "34320", - "codeCommune": "34319", - "libelleAcheminement": "VAILHAN", - "nomCommune": "VAILHAN" + "codePostal": "55140", + "codeCommune": "55456", + "libelleAcheminement": "ST GERMAIN SUR MEUSE", + "nomCommune": "ST GERMAIN SUR MEUSE" }, { - "codePostal": "03190", - "codeCommune": "03158", - "libelleAcheminement": "HAUT BOCAGE", - "nomCommune": "HAUT BOCAGE" + "codePostal": "57340", + "codeCommune": "57692", + "libelleAcheminement": "VANNECOURT", + "nomCommune": "VANNECOURT" }, { - "codePostal": "62730", - "codeCommune": "62548", - "libelleAcheminement": "MARCK", - "nomCommune": "MARCK" + "codePostal": "66300", + "codeCommune": "66214", + "libelleAcheminement": "TRESSERRE", + "nomCommune": "TRESSERRE" }, { - "codePostal": "41170", - "codeCommune": "41248", - "libelleAcheminement": "COUETRON AU PERCHE", - "nomCommune": "COUETRON AU PERCHE" + "codePostal": "12200", + "codeCommune": "12287", + "libelleAcheminement": "VAILHOURLES", + "nomCommune": "VAILHOURLES" }, { - "codePostal": "34800", - "codeCommune": "34323", - "libelleAcheminement": "VALMASCLE", - "nomCommune": "VALMASCLE" + "codePostal": "65500", + "codeCommune": "65330", + "libelleAcheminement": "NOUILHAN", + "nomCommune": "NOUILHAN" }, { - "codePostal": "03420", - "codeCommune": "03161", - "libelleAcheminement": "MARCILLAT EN COMBRAILLE", - "nomCommune": "MARCILLAT EN COMBRAILLE" + "codePostal": "55160", + "codeCommune": "55457", + "libelleAcheminement": "ST HILAIRE EN WOEVRE", + "nomCommune": "ST HILAIRE EN WOEVRE" }, { - "codePostal": "62540", - "codeCommune": "62555", - "libelleAcheminement": "MARLES LES MINES", - "nomCommune": "MARLES LES MINES" + "codePostal": "57560", + "codeCommune": "57697", + "libelleAcheminement": "VASPERVILLER", + "nomCommune": "VASPERVILLER" }, { - "codePostal": "41600", - "codeCommune": "41251", - "libelleAcheminement": "SOUVIGNY EN SOLOGNE", - "nomCommune": "SOUVIGNY EN SOLOGNE" + "codePostal": "66730", + "codeCommune": "66234", + "libelleAcheminement": "LE VIVIER", + "nomCommune": "LE VIVIER" }, { - "codePostal": "34500", - "codeCommune": "34336", - "libelleAcheminement": "VILLENEUVE LES BEZIERS", - "nomCommune": "VILLENEUVE LES BEZIERS" + "codePostal": "12400", + "codeCommune": "12292", + "libelleAcheminement": "VERSOLS ET LAPEYRE", + "nomCommune": "VERSOLS ET LAPEYRE" }, { - "codePostal": "03800", - "codeCommune": "03166", - "libelleAcheminement": "MAZERIER", - "nomCommune": "MAZERIER" + "codePostal": "65190", + "codeCommune": "65337", + "libelleAcheminement": "ORIEUX", + "nomCommune": "ORIEUX" }, { - "codePostal": "62161", - "codeCommune": "62557", - "libelleAcheminement": "MAROEUIL", - "nomCommune": "MAROEUIL" + "codePostal": "55130", + "codeCommune": "55459", + "libelleAcheminement": "ST JOIRE", + "nomCommune": "ST JOIRE" }, { - "codePostal": "41800", - "codeCommune": "41265", - "libelleAcheminement": "TROO", - "nomCommune": "TROO" + "codePostal": "57640", + "codeCommune": "57716", + "libelleAcheminement": "VIGY", + "nomCommune": "VIGY" }, { - "codePostal": "34360", - "codeCommune": "34339", - "libelleAcheminement": "VILLESPASSANS", - "nomCommune": "VILLESPASSANS" + "codePostal": "67320", + "codeCommune": "67002", + "libelleAcheminement": "ADAMSWILLER", + "nomCommune": "ADAMSWILLER" }, { - "codePostal": "03150", - "codeCommune": "03179", - "libelleAcheminement": "MONTAIGU LE BLIN", - "nomCommune": "MONTAIGU LE BLIN" + "codePostal": "12780", + "codeCommune": "12294", + "libelleAcheminement": "VEZINS DE LEVEZOU", + "nomCommune": "VEZINS DE LEVEZOU" }, { - "codePostal": "62860", - "codeCommune": "62559", - "libelleAcheminement": "MARQUION", - "nomCommune": "MARQUION" + "codePostal": "65800", + "codeCommune": "65340", + "libelleAcheminement": "ORLEIX", + "nomCommune": "ORLEIX" }, { - "codePostal": "41800", - "codeCommune": "41279", - "libelleAcheminement": "VILLEDIEU LE CHATEAU", - "nomCommune": "VILLEDIEU LE CHATEAU" + "codePostal": "55300", + "codeCommune": "55463", + "libelleAcheminement": "ST MIHIEL", + "nomCommune": "ST MIHIEL" }, { - "codePostal": "35120", - "codeCommune": "35010", - "libelleAcheminement": "BAGUER PICAN", - "nomCommune": "BAGUER PICAN" + "codePostal": "57550", + "codeCommune": "57720", + "libelleAcheminement": "VILLING", + "nomCommune": "VILLING" }, { - "codePostal": "03390", - "codeCommune": "03186", - "libelleAcheminement": "MONTMARAULT", - "nomCommune": "MONTMARAULT" + "codePostal": "67310", + "codeCommune": "67004", + "libelleAcheminement": "SOMMERAU", + "nomCommune": "SOMMERAU" }, { - "codePostal": "62450", - "codeCommune": "62561", - "libelleAcheminement": "MARTINPUICH", - "nomCommune": "MARTINPUICH" + "codePostal": "12310", + "codeCommune": "12303", + "libelleAcheminement": "VIMENET", + "nomCommune": "VIMENET" }, { - "codePostal": "41240", - "codeCommune": "41289", - "libelleAcheminement": "VILLERMAIN", - "nomCommune": "VILLERMAIN" + "codePostal": "65320", + "codeCommune": "65341", + "libelleAcheminement": "OROIX", + "nomCommune": "OROIX" }, { - "codePostal": "35680", - "codeCommune": "35014", - "libelleAcheminement": "BAIS", - "nomCommune": "BAIS" + "codePostal": "55160", + "codeCommune": "55473", + "libelleAcheminement": "SAULX LES CHAMPLON", + "nomCommune": "SAULX LES CHAMPLON" }, { - "codePostal": "03500", - "codeCommune": "03188", - "libelleAcheminement": "MONTORD", - "nomCommune": "MONTORD" + "codePostal": "57580", + "codeCommune": "57726", + "libelleAcheminement": "VITTONCOURT", + "nomCommune": "VITTONCOURT" }, { - "codePostal": "62410", - "codeCommune": "62573", - "libelleAcheminement": "MEURCHIN", - "nomCommune": "MEURCHIN" + "codePostal": "67440", + "codeCommune": "67004", + "libelleAcheminement": "SOMMERAU", + "nomCommune": "SOMMERAU" }, { - "codePostal": "41100", - "codeCommune": "41293", - "libelleAcheminement": "VILLIERSFAUX", - "nomCommune": "VILLIERSFAUX" + "codePostal": "13090", + "codeCommune": "13001", + "libelleAcheminement": "AIX EN PROVENCE", + "nomCommune": "AIX EN PROVENCE" }, { - "codePostal": "35133", - "codeCommune": "35025", - "libelleAcheminement": "BILLE", - "nomCommune": "BILLE" + "codePostal": "65380", + "codeCommune": "65344", + "libelleAcheminement": "OSSUN", + "nomCommune": "OSSUN" }, { - "codePostal": "03190", - "codeCommune": "03193", - "libelleAcheminement": "NASSIGNY", - "nomCommune": "NASSIGNY" + "codePostal": "55000", + "codeCommune": "55479", + "libelleAcheminement": "SEIGNEULLES", + "nomCommune": "SEIGNEULLES" }, { - "codePostal": "62690", - "codeCommune": "62574", - "libelleAcheminement": "MINGOVAL", - "nomCommune": "MINGOVAL" + "codePostal": "57590", + "codeCommune": "57727", + "libelleAcheminement": "VIVIERS", + "nomCommune": "VIVIERS" }, { - "codePostal": "41100", - "codeCommune": "41294", - "libelleAcheminement": "VILLIERS SUR LOIR", - "nomCommune": "VILLIERS SUR LOIR" + "codePostal": "67440", + "codeCommune": "67004", + "libelleAcheminement": "SOMMERAU", + "nomCommune": "SOMMERAU" }, { - "codePostal": "35270", - "codeCommune": "35029", - "libelleAcheminement": "BONNEMAIN", - "nomCommune": "BONNEMAIN" + "codePostal": "13100", + "codeCommune": "13001", + "libelleAcheminement": "AIX EN PROVENCE", + "nomCommune": "AIX EN PROVENCE" }, { - "codePostal": "03130", - "codeCommune": "03196", - "libelleAcheminement": "NEUILLY EN DONJON", - "nomCommune": "NEUILLY EN DONJON" + "codePostal": "65370", + "codeCommune": "65347", + "libelleAcheminement": "OURDE", + "nomCommune": "OURDE" }, { - "codePostal": "62123", - "codeCommune": "62586", - "libelleAcheminement": "MONTENESCOURT", - "nomCommune": "MONTENESCOURT" + "codePostal": "55320", + "codeCommune": "55492", + "libelleAcheminement": "SOMMEDIEUE", + "nomCommune": "SOMMEDIEUE" }, { - "codePostal": "41600", - "codeCommune": "41296", - "libelleAcheminement": "VOUZON", - "nomCommune": "VOUZON" + "codePostal": "57580", + "codeCommune": "57728", + "libelleAcheminement": "VOIMHAUT", + "nomCommune": "VOIMHAUT" }, { - "codePostal": "35230", - "codeCommune": "35032", - "libelleAcheminement": "BOURGBARRE", - "nomCommune": "BOURGBARRE" + "codePostal": "67140", + "codeCommune": "67010", + "libelleAcheminement": "ANDLAU", + "nomCommune": "ANDLAU" }, { - "codePostal": "03340", - "codeCommune": "03197", - "libelleAcheminement": "NEUILLY LE REAL", - "nomCommune": "NEUILLY LE REAL" + "codePostal": "13290", + "codeCommune": "13001", + "libelleAcheminement": "AIX EN PROVENCE", + "nomCommune": "AIX EN PROVENCE" }, { - "codePostal": "62640", - "codeCommune": "62587", - "libelleAcheminement": "MONTIGNY EN GOHELLE", - "nomCommune": "MONTIGNY EN GOHELLE" + "codePostal": "65490", + "codeCommune": "65350", + "libelleAcheminement": "OURSBELILLE", + "nomCommune": "OURSBELILLE" }, { - "codePostal": "42550", - "codeCommune": "42006", - "libelleAcheminement": "APINAC", - "nomCommune": "APINAC" + "codePostal": "55220", + "codeCommune": "55497", + "libelleAcheminement": "LES SOUHESMES RAMPONT", + "nomCommune": "LES SOUHESMES RAMPONT" }, { - "codePostal": "35120", - "codeCommune": "35034", - "libelleAcheminement": "LA BOUSSAC", - "nomCommune": "LA BOUSSAC" + "codePostal": "57560", + "codeCommune": "57734", + "libelleAcheminement": "VOYER", + "nomCommune": "VOYER" }, { - "codePostal": "03320", - "codeCommune": "03198", - "libelleAcheminement": "NEURE", - "nomCommune": "NEURE" + "codePostal": "67390", + "codeCommune": "67011", + "libelleAcheminement": "ARTOLSHEIM", + "nomCommune": "ARTOLSHEIM" }, { - "codePostal": "62170", - "codeCommune": "62588", - "libelleAcheminement": "MONTREUIL", - "nomCommune": "MONTREUIL" + "codePostal": "13540", + "codeCommune": "13001", + "libelleAcheminement": "AIX EN PROVENCE", + "nomCommune": "AIX EN PROVENCE" }, { - "codePostal": "42370", - "codeCommune": "42008", - "libelleAcheminement": "ARCON", - "nomCommune": "ARCON" + "codePostal": "65100", + "codeCommune": "65351", + "libelleAcheminement": "OUSTE", + "nomCommune": "OUSTE" }, { - "codePostal": "35310", - "codeCommune": "35037", - "libelleAcheminement": "BREAL SOUS MONTFORT", - "nomCommune": "BREAL SOUS MONTFORT" + "codePostal": "55230", + "codeCommune": "55500", + "libelleAcheminement": "SPINCOURT", + "nomCommune": "SPINCOURT" }, { - "codePostal": "03420", - "codeCommune": "03206", - "libelleAcheminement": "LA PETITE MARCHE", - "nomCommune": "LA PETITE MARCHE" + "codePostal": "57720", + "codeCommune": "57741", + "libelleAcheminement": "WALSCHBRONN", + "nomCommune": "WALSCHBRONN" }, { - "codePostal": "62890", - "codeCommune": "62598", - "libelleAcheminement": "MUNCQ NIEURLET", - "nomCommune": "MUNCQ NIEURLET" + "codePostal": "67250", + "codeCommune": "67012", + "libelleAcheminement": "ASCHBACH", + "nomCommune": "ASCHBACH" }, { - "codePostal": "42210", - "codeCommune": "42013", - "libelleAcheminement": "BELLEGARDE EN FOREZ", - "nomCommune": "BELLEGARDE EN FOREZ" + "codePostal": "13123", + "codeCommune": "13004", + "libelleAcheminement": "ARLES", + "nomCommune": "ARLES" }, { - "codePostal": "35530", - "codeCommune": "35039", - "libelleAcheminement": "BRECE", - "nomCommune": "BRECE" + "codePostal": "65400", + "codeCommune": "65352", + "libelleAcheminement": "OUZOUS", + "nomCommune": "OUZOUS" }, { - "codePostal": "03320", - "codeCommune": "03210", - "libelleAcheminement": "POUZY MESANGY", - "nomCommune": "POUZY MESANGY" + "codePostal": "55700", + "codeCommune": "55502", + "libelleAcheminement": "STENAY", + "nomCommune": "STENAY" }, { - "codePostal": "62180", - "codeCommune": "62602", - "libelleAcheminement": "NEMPONT ST FIRMIN", - "nomCommune": "NEMPONT ST FIRMIN" + "codePostal": "57870", + "codeCommune": "57742", + "libelleAcheminement": "WALSCHEID", + "nomCommune": "WALSCHEID" }, { - "codePostal": "42670", - "codeCommune": "42015", - "libelleAcheminement": "BELMONT DE LA LOIRE", - "nomCommune": "BELMONT DE LA LOIRE" + "codePostal": "67130", + "codeCommune": "67020", + "libelleAcheminement": "BAREMBACH", + "nomCommune": "BAREMBACH" }, { - "codePostal": "35120", - "codeCommune": "35044", - "libelleAcheminement": "BROUALAN", - "nomCommune": "BROUALAN" + "codePostal": "13200", + "codeCommune": "13004", + "libelleAcheminement": "ARLES", + "nomCommune": "ARLES" }, { - "codePostal": "03190", - "codeCommune": "03222", - "libelleAcheminement": "ST CAPRAIS", - "nomCommune": "ST CAPRAIS" + "codePostal": "65130", + "codeCommune": "65356", + "libelleAcheminement": "PERE", + "nomCommune": "PERE" }, { - "codePostal": "62152", - "codeCommune": "62603", - "libelleAcheminement": "NESLES", - "nomCommune": "NESLES" + "codePostal": "55140", + "codeCommune": "55503", + "libelleAcheminement": "TAILLANCOURT", + "nomCommune": "TAILLANCOURT" }, { - "codePostal": "42720", - "codeCommune": "42016", - "libelleAcheminement": "LA BENISSON DIEU", - "nomCommune": "LA BENISSON DIEU" + "codePostal": "57635", + "codeCommune": "57747", + "libelleAcheminement": "WINTERSBOURG", + "nomCommune": "WINTERSBOURG" }, { - "codePostal": "35330", - "codeCommune": "35046", - "libelleAcheminement": "LES BRULAIS", - "nomCommune": "LES BRULAIS" + "codePostal": "67230", + "codeCommune": "67028", + "libelleAcheminement": "BENFELD", + "nomCommune": "BENFELD" }, { - "codePostal": "03130", - "codeCommune": "03226", - "libelleAcheminement": "ST DIDIER EN DONJON", - "nomCommune": "ST DIDIER EN DONJON" + "codePostal": "13200", + "codeCommune": "13004", + "libelleAcheminement": "ARLES", + "nomCommune": "ARLES" }, { - "codePostal": "62152", - "codeCommune": "62604", - "libelleAcheminement": "NEUFCHATEL HARDELOT", - "nomCommune": "NEUFCHATEL HARDELOT" + "codePostal": "65140", + "codeCommune": "65361", + "libelleAcheminement": "PEYRUN", + "nomCommune": "PEYRUN" }, { - "codePostal": "42210", - "codeCommune": "42020", - "libelleAcheminement": "BOISSET LES MONTROND", - "nomCommune": "BOISSET LES MONTROND" + "codePostal": "55840", + "codeCommune": "55505", + "libelleAcheminement": "THIERVILLE SUR MEUSE", + "nomCommune": "THIERVILLE SUR MEUSE" }, { - "codePostal": "35500", - "codeCommune": "35052", - "libelleAcheminement": "CHAMPEAUX", - "nomCommune": "CHAMPEAUX" + "codePostal": "57170", + "codeCommune": "57753", + "libelleAcheminement": "WUISSE", + "nomCommune": "WUISSE" }, { - "codePostal": "03380", - "codeCommune": "03246", - "libelleAcheminement": "ST MARTINIEN", - "nomCommune": "ST MARTINIEN" + "codePostal": "67310", + "codeCommune": "67030", + "libelleAcheminement": "BERGBIETEN", + "nomCommune": "BERGBIETEN" }, { - "codePostal": "62770", - "codeCommune": "62605", - "libelleAcheminement": "NEULETTE", - "nomCommune": "NEULETTE" + "codePostal": "13280", + "codeCommune": "13004", + "libelleAcheminement": "ARLES", + "nomCommune": "ARLES" }, { - "codePostal": "42160", - "codeCommune": "42022", - "libelleAcheminement": "BONSON", - "nomCommune": "BONSON" + "codePostal": "65190", + "codeCommune": "65367", + "libelleAcheminement": "POUMAROUS", + "nomCommune": "POUMAROUS" }, { - "codePostal": "35140", - "codeCommune": "35063", - "libelleAcheminement": "LA CHAPELLE ST AUBERT", - "nomCommune": "LA CHAPELLE ST AUBERT" + "codePostal": "55260", + "codeCommune": "55506", + "libelleAcheminement": "THILLOMBOIS", + "nomCommune": "THILLOMBOIS" }, { - "codePostal": "03210", - "codeCommune": "03247", - "libelleAcheminement": "ST MENOUX", - "nomCommune": "ST MENOUX" + "codePostal": "57970", + "codeCommune": "57757", + "libelleAcheminement": "YUTZ", + "nomCommune": "YUTZ" }, { - "codePostal": "62185", - "codeCommune": "62615", - "libelleAcheminement": "NIELLES LES CALAIS", - "nomCommune": "NIELLES LES CALAIS" + "codePostal": "67170", + "codeCommune": "67033", + "libelleAcheminement": "BERNOLSHEIM", + "nomCommune": "BERNOLSHEIM" }, { - "codePostal": "42220", - "codeCommune": "42028", - "libelleAcheminement": "BURDIGNES", - "nomCommune": "BURDIGNES" + "codePostal": "13400", + "codeCommune": "13005", + "libelleAcheminement": "AUBAGNE", + "nomCommune": "AUBAGNE" }, { - "codePostal": "35660", - "codeCommune": "35064", - "libelleAcheminement": "LA CHAPELLE DE BRAIN", - "nomCommune": "LA CHAPELLE DE BRAIN" + "codePostal": "65350", + "codeCommune": "65369", + "libelleAcheminement": "POUYASTRUC", + "nomCommune": "POUYASTRUC" }, { - "codePostal": "03110", - "codeCommune": "03252", - "libelleAcheminement": "ST PONT", - "nomCommune": "ST PONT" + "codePostal": "55600", + "codeCommune": "55508", + "libelleAcheminement": "THONNE LA LONG", + "nomCommune": "THONNE LA LONG" }, { - "codePostal": "62290", - "codeCommune": "62617", - "libelleAcheminement": "NOEUX LES MINES", - "nomCommune": "NOEUX LES MINES" + "codePostal": "57370", + "codeCommune": "57761", + "libelleAcheminement": "ZILLING", + "nomCommune": "ZILLING" }, { - "codePostal": "42260", - "codeCommune": "42030", - "libelleAcheminement": "BUSSY ALBIEUX", - "nomCommune": "BUSSY ALBIEUX" + "codePostal": "67370", + "codeCommune": "67034", + "libelleAcheminement": "BERSTETT", + "nomCommune": "BERSTETT" }, { - "codePostal": "35410", - "codeCommune": "35069", - "libelleAcheminement": "CHATEAUGIRON", - "nomCommune": "CHATEAUGIRON" + "codePostal": "13720", + "codeCommune": "13013", + "libelleAcheminement": "BELCODENE", + "nomCommune": "BELCODENE" }, { - "codePostal": "03370", - "codeCommune": "03259", - "libelleAcheminement": "ST SAUVIER", - "nomCommune": "ST SAUVIER" + "codePostal": "65230", + "codeCommune": "65373", + "libelleAcheminement": "PUNTOUS", + "nomCommune": "PUNTOUS" }, { - "codePostal": "62370", - "codeCommune": "62621", - "libelleAcheminement": "NORTKERQUE", - "nomCommune": "NORTKERQUE" + "codePostal": "55600", + "codeCommune": "55510", + "libelleAcheminement": "THONNE LES PRES", + "nomCommune": "THONNE LES PRES" }, { - "codePostal": "42170", - "codeCommune": "42042", - "libelleAcheminement": "CHAMBLES", - "nomCommune": "CHAMBLES" + "codePostal": "58700", + "codeCommune": "58014", + "libelleAcheminement": "ARZEMBOUY", + "nomCommune": "ARZEMBOUY" }, { - "codePostal": "35490", - "codeCommune": "35075", - "libelleAcheminement": "CHAUVIGNE", - "nomCommune": "CHAUVIGNE" + "codePostal": "67360", + "codeCommune": "67037", + "libelleAcheminement": "BIBLISHEIM", + "nomCommune": "BIBLISHEIM" }, { - "codePostal": "03140", - "codeCommune": "03278", - "libelleAcheminement": "TAXAT SENAT", - "nomCommune": "TAXAT SENAT" + "codePostal": "13720", + "codeCommune": "13016", + "libelleAcheminement": "LA BOUILLADISSE", + "nomCommune": "LA BOUILLADISSE" }, { - "codePostal": "62980", - "codeCommune": "62626", - "libelleAcheminement": "NOYELLES LES VERMELLES", - "nomCommune": "NOYELLES LES VERMELLES" + "codePostal": "65330", + "codeCommune": "65376", + "libelleAcheminement": "RECURT", + "nomCommune": "RECURT" }, { - "codePostal": "42430", - "codeCommune": "42061", - "libelleAcheminement": "CHERIER", - "nomCommune": "CHERIER" + "codePostal": "55100", + "codeCommune": "55523", + "libelleAcheminement": "VACHERAUVILLE", + "nomCommune": "VACHERAUVILLE" }, { - "codePostal": "35120", - "codeCommune": "35078", - "libelleAcheminement": "CHERRUEIX", - "nomCommune": "CHERRUEIX" + "codePostal": "58170", + "codeCommune": "58019", + "libelleAcheminement": "AVREE", + "nomCommune": "AVREE" }, { - "codePostal": "03420", - "codeCommune": "03280", - "libelleAcheminement": "TERJAT", - "nomCommune": "TERJAT" + "codePostal": "67720", + "codeCommune": "67038", + "libelleAcheminement": "BIETLENHEIM", + "nomCommune": "BIETLENHEIM" }, { - "codePostal": "62490", - "codeCommune": "62627", - "libelleAcheminement": "NOYELLES SOUS BELLONNE", - "nomCommune": "NOYELLES SOUS BELLONNE" + "codePostal": "13620", + "codeCommune": "13021", + "libelleAcheminement": "CARRY LE ROUET", + "nomCommune": "CARRY LE ROUET" }, { - "codePostal": "42114", - "codeCommune": "42063", - "libelleAcheminement": "CHIRASSIMONT", - "nomCommune": "CHIRASSIMONT" + "codePostal": "65700", + "codeCommune": "65387", + "libelleAcheminement": "ST LANNE", + "nomCommune": "ST LANNE" }, { - "codePostal": "35250", - "codeCommune": "35079", - "libelleAcheminement": "CHEVAIGNE", - "nomCommune": "CHEVAIGNE" + "codePostal": "55270", + "codeCommune": "55527", + "libelleAcheminement": "VARENNES EN ARGONNE", + "nomCommune": "VARENNES EN ARGONNE" }, { - "codePostal": "03400", - "codeCommune": "03286", - "libelleAcheminement": "TOULON SUR ALLIER", - "nomCommune": "TOULON SUR ALLIER" + "codePostal": "58300", + "codeCommune": "58020", + "libelleAcheminement": "AVRIL SUR LOIRE", + "nomCommune": "AVRIL SUR LOIRE" }, { - "codePostal": "62215", - "codeCommune": "62645", - "libelleAcheminement": "OYE PLAGE", - "nomCommune": "OYE PLAGE" + "codePostal": "67113", + "codeCommune": "67049", + "libelleAcheminement": "BLAESHEIM", + "nomCommune": "BLAESHEIM" }, { - "codePostal": "42540", - "codeCommune": "42077", - "libelleAcheminement": "CROIZET SUR GAND", - "nomCommune": "CROIZET SUR GAND" + "codePostal": "13250", + "codeCommune": "13029", + "libelleAcheminement": "CORNILLON CONFOUX", + "nomCommune": "CORNILLON CONFOUX" }, { - "codePostal": "35270", - "codeCommune": "35092", - "libelleAcheminement": "CUGUEN", - "nomCommune": "CUGUEN" + "codePostal": "65150", + "codeCommune": "65389", + "libelleAcheminement": "ST LAURENT DE NESTE", + "nomCommune": "ST LAURENT DE NESTE" }, { - "codePostal": "03460", - "codeCommune": "03290", - "libelleAcheminement": "TREVOL", - "nomCommune": "TREVOL" + "codePostal": "55250", + "codeCommune": "55532", + "libelleAcheminement": "VAUBECOURT", + "nomCommune": "VAUBECOURT" }, { - "codePostal": "62760", - "codeCommune": "62649", - "libelleAcheminement": "PAS EN ARTOIS", - "nomCommune": "PAS EN ARTOIS" + "codePostal": "58190", + "codeCommune": "58023", + "libelleAcheminement": "BAZOCHES", + "nomCommune": "BAZOCHES" }, { - "codePostal": "42800", - "codeCommune": "42083", - "libelleAcheminement": "DARGOIRE", - "nomCommune": "DARGOIRE" + "codePostal": "67860", + "codeCommune": "67055", + "libelleAcheminement": "BOOFZHEIM", + "nomCommune": "BOOFZHEIM" }, { - "codePostal": "35640", - "codeCommune": "35103", - "libelleAcheminement": "EANCE", - "nomCommune": "EANCE" + "codePostal": "13112", + "codeCommune": "13031", + "libelleAcheminement": "LA DESTROUSSE", + "nomCommune": "LA DESTROUSSE" }, { - "codePostal": "03220", - "codeCommune": "03299", - "libelleAcheminement": "VARENNES SUR TECHE", - "nomCommune": "VARENNES SUR TECHE" + "codePostal": "65400", + "codeCommune": "65393", + "libelleAcheminement": "ST PASTOUS", + "nomCommune": "ST PASTOUS" }, { - "codePostal": "62127", - "codeCommune": "62651", - "libelleAcheminement": "PENIN", - "nomCommune": "PENIN" + "codePostal": "55400", + "codeCommune": "55537", + "libelleAcheminement": "DOUAUMONT VAUX", + "nomCommune": "DOUAUMONT VAUX" }, { - "codePostal": "42220", - "codeCommune": "42101", - "libelleAcheminement": "GRAIX", - "nomCommune": "GRAIX" + "codePostal": "58110", + "codeCommune": "58024", + "libelleAcheminement": "BAZOLLES", + "nomCommune": "BAZOLLES" }, { - "codePostal": "35490", - "codeCommune": "35118", - "libelleAcheminement": "GAHARD", - "nomCommune": "GAHARD" + "codePostal": "67420", + "codeCommune": "67059", + "libelleAcheminement": "BOURG BRUCHE", + "nomCommune": "BOURG BRUCHE" }, { - "codePostal": "03430", - "codeCommune": "03315", - "libelleAcheminement": "VILLEFRANCHE D ALLIER", - "nomCommune": "VILLEFRANCHE D ALLIER" + "codePostal": "13820", + "codeCommune": "13033", + "libelleAcheminement": "ENSUES LA REDONNE", + "nomCommune": "ENSUES LA REDONNE" }, { - "codePostal": "62550", - "codeCommune": "62652", - "libelleAcheminement": "PERNES", - "nomCommune": "PERNES" + "codePostal": "65140", + "codeCommune": "65409", + "libelleAcheminement": "SARRIAC BIGORRE", + "nomCommune": "SARRIAC BIGORRE" }, { - "codePostal": "42140", - "codeCommune": "42102", - "libelleAcheminement": "GRAMMOND", - "nomCommune": "GRAMMOND" + "codePostal": "55500", + "codeCommune": "55543", + "libelleAcheminement": "VELAINES", + "nomCommune": "VELAINES" }, { - "codePostal": "35370", - "codeCommune": "35119", - "libelleAcheminement": "GENNES SUR SEICHE", - "nomCommune": "GENNES SUR SEICHE" + "codePostal": "58500", + "codeCommune": "58032", + "libelleAcheminement": "BILLY SUR OISY", + "nomCommune": "BILLY SUR OISY" }, { - "codePostal": "04260", - "codeCommune": "04006", - "libelleAcheminement": "ALLOS", - "nomCommune": "ALLOS" + "codePostal": "67220", + "codeCommune": "67062", + "libelleAcheminement": "BREITENAU", + "nomCommune": "BREITENAU" }, { - "codePostal": "62126", - "codeCommune": "62653", - "libelleAcheminement": "PERNES LES BOULOGNE", - "nomCommune": "PERNES LES BOULOGNE" + "codePostal": "13800", + "codeCommune": "13047", + "libelleAcheminement": "ISTRES", + "nomCommune": "ISTRES" }, { - "codePostal": "42460", - "codeCommune": "42104", - "libelleAcheminement": "LA GRESLE", - "nomCommune": "LA GRESLE" + "codePostal": "65600", + "codeCommune": "65410", + "libelleAcheminement": "SARROUILLES", + "nomCommune": "SARROUILLES" }, { - "codePostal": "35130", - "codeCommune": "35125", - "libelleAcheminement": "LA GUERCHE DE BRETAGNE", - "nomCommune": "LA GUERCHE DE BRETAGNE" + "codePostal": "55270", + "codeCommune": "55549", + "libelleAcheminement": "VERY", + "nomCommune": "VERY" }, { - "codePostal": "04240", - "codeCommune": "04008", - "libelleAcheminement": "ANNOT", - "nomCommune": "ANNOT" + "codePostal": "58460", + "codeCommune": "58038", + "libelleAcheminement": "BREUGNON", + "nomCommune": "BREUGNON" }, { - "codePostal": "62118", - "codeCommune": "62660", - "libelleAcheminement": "PLOUVAIN", - "nomCommune": "PLOUVAIN" + "codePostal": "67260", + "codeCommune": "67070", + "libelleAcheminement": "BURBACH", + "nomCommune": "BURBACH" }, { - "codePostal": "42210", - "codeCommune": "42108", - "libelleAcheminement": "L HOPITAL LE GRAND", - "nomCommune": "L HOPITAL LE GRAND" + "codePostal": "13490", + "codeCommune": "13048", + "libelleAcheminement": "JOUQUES", + "nomCommune": "JOUQUES" }, { - "codePostal": "35630", - "codeCommune": "35130", - "libelleAcheminement": "HEDE BAZOUGES", - "nomCommune": "HEDE BAZOUGES" + "codePostal": "65120", + "codeCommune": "65411", + "libelleAcheminement": "SASSIS", + "nomCommune": "SASSIS" }, { - "codePostal": "04200", - "codeCommune": "04016", - "libelleAcheminement": "AUTHON", - "nomCommune": "AUTHON" + "codePostal": "55210", + "codeCommune": "55551", + "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", + "nomCommune": "VIGNEULLES LES HATTONCHATEL" }, { - "codePostal": "62140", - "codeCommune": "62661", - "libelleAcheminement": "BOUIN PLUMOISON", - "nomCommune": "BOUIN PLUMOISON" + "codePostal": "58800", + "codeCommune": "58047", + "libelleAcheminement": "CERVON", + "nomCommune": "CERVON" }, { - "codePostal": "42420", - "codeCommune": "42123", - "libelleAcheminement": "LORETTE", - "nomCommune": "LORETTE" + "codePostal": "67420", + "codeCommune": "67076", + "libelleAcheminement": "COLROY LA ROCHE", + "nomCommune": "COLROY LA ROCHE" }, { - "codePostal": "35750", - "codeCommune": "35133", - "libelleAcheminement": "IFFENDIC", - "nomCommune": "IFFENDIC" + "codePostal": "13370", + "codeCommune": "13053", + "libelleAcheminement": "MALLEMORT", + "nomCommune": "MALLEMORT" }, { - "codePostal": "04250", - "codeCommune": "04023", - "libelleAcheminement": "BAYONS", - "nomCommune": "BAYONS" + "codePostal": "65700", + "codeCommune": "65412", + "libelleAcheminement": "SAUVETERRE", + "nomCommune": "SAUVETERRE" }, { - "codePostal": "62140", - "codeCommune": "62661", - "libelleAcheminement": "BOUIN PLUMOISON", - "nomCommune": "BOUIN PLUMOISON" + "codePostal": "55200", + "codeCommune": "55553", + "libelleAcheminement": "VIGNOT", + "nomCommune": "VIGNOT" }, { - "codePostal": "42300", - "codeCommune": "42127", - "libelleAcheminement": "MABLY", - "nomCommune": "MABLY" + "codePostal": "58220", + "codeCommune": "58048", + "libelleAcheminement": "CESSY LES BOIS", + "nomCommune": "CESSY LES BOIS" }, { - "codePostal": "35850", - "codeCommune": "35135", - "libelleAcheminement": "IRODOUER", - "nomCommune": "IRODOUER" + "codePostal": "67310", + "codeCommune": "67081", + "libelleAcheminement": "DAHLENHEIM", + "nomCommune": "DAHLENHEIM" }, { - "codePostal": "04200", - "codeCommune": "04027", - "libelleAcheminement": "BEVONS", - "nomCommune": "BEVONS" + "codePostal": "13500", + "codeCommune": "13056", + "libelleAcheminement": "MARTIGUES", + "nomCommune": "MARTIGUES" }, { - "codePostal": "62111", - "codeCommune": "62664", - "libelleAcheminement": "POMMIER", - "nomCommune": "POMMIER" + "codePostal": "65320", + "codeCommune": "65422", + "libelleAcheminement": "SERON", + "nomCommune": "SERON" }, { - "codePostal": "42114", - "codeCommune": "42128", - "libelleAcheminement": "MACHEZAL", - "nomCommune": "MACHEZAL" + "codePostal": "55150", + "codeCommune": "55556", + "libelleAcheminement": "VILLE DEVANT CHAUMONT", + "nomCommune": "VILLE DEVANT CHAUMONT" }, { - "codePostal": "35133", - "codeCommune": "35137", - "libelleAcheminement": "JAVENE", - "nomCommune": "JAVENE" + "codePostal": "58140", + "codeCommune": "58049", + "libelleAcheminement": "CHALAUX", + "nomCommune": "CHALAUX" }, { - "codePostal": "04120", - "codeCommune": "04039", - "libelleAcheminement": "CASTELLANE", - "nomCommune": "CASTELLANE" + "codePostal": "67770", + "codeCommune": "67082", + "libelleAcheminement": "DALHUNDEN", + "nomCommune": "DALHUNDEN" }, { - "codePostal": "62134", - "codeCommune": "62668", - "libelleAcheminement": "PREDEFIN", - "nomCommune": "PREDEFIN" + "codePostal": "13550", + "codeCommune": "13066", + "libelleAcheminement": "NOVES", + "nomCommune": "NOVES" }, { - "codePostal": "42130", - "codeCommune": "42134", - "libelleAcheminement": "MARCILLY LE CHATEL", - "nomCommune": "MARCILLY LE CHATEL" + "codePostal": "65500", + "codeCommune": "65425", + "libelleAcheminement": "SIARROUY", + "nomCommune": "SIARROUY" }, { - "codePostal": "35660", - "codeCommune": "35145", - "libelleAcheminement": "LANGON", - "nomCommune": "LANGON" + "codePostal": "55800", + "codeCommune": "55560", + "libelleAcheminement": "VILLERS AUX VENTS", + "nomCommune": "VILLERS AUX VENTS" }, { - "codePostal": "04380", - "codeCommune": "04040", - "libelleAcheminement": "LE CASTELLARD MELAN", - "nomCommune": "LE CASTELLARD MELAN" + "codePostal": "58420", + "codeCommune": "58050", + "libelleAcheminement": "CHALLEMENT", + "nomCommune": "CHALLEMENT" }, { - "codePostal": "62650", - "codeCommune": "62670", - "libelleAcheminement": "PREURES", - "nomCommune": "PREURES" + "codePostal": "67650", + "codeCommune": "67084", + "libelleAcheminement": "DAMBACH LA VILLE", + "nomCommune": "DAMBACH LA VILLE" }, { - "codePostal": "42130", - "codeCommune": "42150", - "libelleAcheminement": "MONTVERDUN", - "nomCommune": "MONTVERDUN" + "codePostal": "13550", + "codeCommune": "13066", + "libelleAcheminement": "NOVES", + "nomCommune": "NOVES" }, { - "codePostal": "35520", - "codeCommune": "35177", - "libelleAcheminement": "LA MEZIERE", - "nomCommune": "LA MEZIERE" + "codePostal": "65190", + "codeCommune": "65426", + "libelleAcheminement": "SINZOS", + "nomCommune": "SINZOS" }, { - "codePostal": "04320", - "codeCommune": "04043", - "libelleAcheminement": "VAL DE CHALVAGNE", - "nomCommune": "VAL DE CHALVAGNE" + "codePostal": "55000", + "codeCommune": "55568", + "libelleAcheminement": "VILLE SUR SAULX", + "nomCommune": "VILLE SUR SAULX" }, { - "codePostal": "62390", - "codeCommune": "62683", - "libelleAcheminement": "QUOEUX HAUT MAINIL", - "nomCommune": "QUOEUX HAUT MAINIL" + "codePostal": "58350", + "codeCommune": "58061", + "libelleAcheminement": "CHASNAY", + "nomCommune": "CHASNAY" }, { - "codePostal": "42470", - "codeCommune": "42153", - "libelleAcheminement": "NEAUX", - "nomCommune": "NEAUX" + "codePostal": "67490", + "codeCommune": "67089", + "libelleAcheminement": "DETTWILLER", + "nomCommune": "DETTWILLER" }, { - "codePostal": "35160", - "codeCommune": "35187", - "libelleAcheminement": "MONTERFIL", - "nomCommune": "MONTERFIL" + "codePostal": "13860", + "codeCommune": "13074", + "libelleAcheminement": "PEYROLLES EN PROVENCE", + "nomCommune": "PEYROLLES EN PROVENCE" }, { - "codePostal": "04160", - "codeCommune": "04049", - "libelleAcheminement": "CHATEAU ARNOUX ST AUBAN", - "nomCommune": "CHATEAU ARNOUX ST AUBAN" + "codePostal": "65400", + "codeCommune": "65428", + "libelleAcheminement": "SIREIX", + "nomCommune": "SIREIX" }, { - "codePostal": "62120", - "codeCommune": "62691", - "libelleAcheminement": "ST AUGUSTIN", - "nomCommune": "ST AUGUSTIN" + "codePostal": "55250", + "codeCommune": "55569", + "libelleAcheminement": "VILLOTTE DEVANT LOUPPY", + "nomCommune": "VILLOTTE DEVANT LOUPPY" }, { - "codePostal": "42510", - "codeCommune": "42155", - "libelleAcheminement": "NERVIEUX", - "nomCommune": "NERVIEUX" + "codePostal": "58120", + "codeCommune": "58062", + "libelleAcheminement": "CHATEAU CHINON", + "nomCommune": "CHATEAU CHINON VILLE" }, { - "codePostal": "35460", - "codeCommune": "35191", - "libelleAcheminement": "LES PORTES DU COGLAIS", - "nomCommune": "LES PORTES DU COGLAIS" + "codePostal": "67440", + "codeCommune": "67096", + "libelleAcheminement": "DIMBSTHAL", + "nomCommune": "DIMBSTHAL" }, { - "codePostal": "04270", - "codeCommune": "04054", - "libelleAcheminement": "CHATEAUREDON", - "nomCommune": "CHATEAUREDON" + "codePostal": "13380", + "codeCommune": "13075", + "libelleAcheminement": "PLAN DE CUQUES", + "nomCommune": "PLAN DE CUQUES" }, { - "codePostal": "62150", - "codeCommune": "62693", - "libelleAcheminement": "REBREUVE RANCHICOURT", - "nomCommune": "REBREUVE RANCHICOURT" + "codePostal": "65430", + "codeCommune": "65433", + "libelleAcheminement": "SOUES", + "nomCommune": "SOUES" }, { - "codePostal": "42590", - "codeCommune": "42156", - "libelleAcheminement": "NEULISE", - "nomCommune": "NEULISE" + "codePostal": "55150", + "codeCommune": "55572", + "libelleAcheminement": "VITTARVILLE", + "nomCommune": "VITTARVILLE" }, { - "codePostal": "35500", - "codeCommune": "35194", - "libelleAcheminement": "MONTREUIL SOUS PEROUSE", - "nomCommune": "MONTREUIL SOUS PEROUSE" + "codePostal": "58120", + "codeCommune": "58063", + "libelleAcheminement": "CHATEAU CHINON CAMPAGNE", + "nomCommune": "CHATEAU CHINON CAMPAGNE" }, { - "codePostal": "04530", - "codeCommune": "04062", - "libelleAcheminement": "LA CONDAMINE CHATELARD", - "nomCommune": "LA CONDAMINE CHATELARD" + "codePostal": "67430", + "codeCommune": "67099", + "libelleAcheminement": "DOMFESSEL", + "nomCommune": "DOMFESSEL" }, { - "codePostal": "62156", - "codeCommune": "62703", - "libelleAcheminement": "REMY", - "nomCommune": "REMY" + "codePostal": "13340", + "codeCommune": "13081", + "libelleAcheminement": "ROGNAC", + "nomCommune": "ROGNAC" }, { - "codePostal": "42640", - "codeCommune": "42157", - "libelleAcheminement": "NOAILLY", - "nomCommune": "NOAILLY" + "codePostal": "65370", + "codeCommune": "65441", + "libelleAcheminement": "THEBE", + "nomCommune": "THEBE" }, { - "codePostal": "35440", - "codeCommune": "35195", - "libelleAcheminement": "MONTREUIL SUR ILLE", - "nomCommune": "MONTREUIL SUR ILLE" + "codePostal": "55130", + "codeCommune": "55574", + "libelleAcheminement": "VOUTHON BAS", + "nomCommune": "VOUTHON BAS" }, { - "codePostal": "04230", - "codeCommune": "04065", - "libelleAcheminement": "CRUIS", - "nomCommune": "CRUIS" + "codePostal": "58120", + "codeCommune": "58066", + "libelleAcheminement": "CHATIN", + "nomCommune": "CHATIN" }, { - "codePostal": "62720", - "codeCommune": "62705", - "libelleAcheminement": "RETY", - "nomCommune": "RETY" + "codePostal": "67170", + "codeCommune": "67100", + "libelleAcheminement": "DONNENHEIM", + "nomCommune": "DONNENHEIM" }, { - "codePostal": "42440", - "codeCommune": "42159", - "libelleAcheminement": "NOIRETABLE", - "nomCommune": "NOIRETABLE" + "codePostal": "13360", + "codeCommune": "13086", + "libelleAcheminement": "ROQUEVAIRE", + "nomCommune": "ROQUEVAIRE" }, { - "codePostal": "35740", - "codeCommune": "35210", - "libelleAcheminement": "PACE", - "nomCommune": "PACE" + "codePostal": "65230", + "codeCommune": "65442", + "libelleAcheminement": "THERMES MAGNOAC", + "nomCommune": "THERMES MAGNOAC" }, { - "codePostal": "04000", - "codeCommune": "04070", - "libelleAcheminement": "DIGNE LES BAINS", - "nomCommune": "DIGNE LES BAINS" + "codePostal": "56360", + "codeCommune": "56009", + "libelleAcheminement": "BANGOR", + "nomCommune": "BANGOR" }, { - "codePostal": "62223", - "codeCommune": "62714", - "libelleAcheminement": "ROCLINCOURT", - "nomCommune": "ROCLINCOURT" + "codePostal": "58400", + "codeCommune": "58067", + "libelleAcheminement": "CHAULGNES", + "nomCommune": "CHAULGNES" }, { - "codePostal": "42310", - "codeCommune": "42163", - "libelleAcheminement": "LA PACAUDIERE", - "nomCommune": "LA PACAUDIERE" + "codePostal": "67330", + "codeCommune": "67103", + "libelleAcheminement": "DOSSENHEIM SUR ZINSEL", + "nomCommune": "DOSSENHEIM SUR ZINSEL" }, { - "codePostal": "35850", - "codeCommune": "35216", - "libelleAcheminement": "PARTHENAY DE BRETAGNE", - "nomCommune": "PARTHENAY DE BRETAGNE" + "codePostal": "13360", + "codeCommune": "13086", + "libelleAcheminement": "ROQUEVAIRE", + "nomCommune": "ROQUEVAIRE" }, { - "codePostal": "04270", - "codeCommune": "04074", - "libelleAcheminement": "ENTRAGES", - "nomCommune": "ENTRAGES" + "codePostal": "65190", + "codeCommune": "65447", + "libelleAcheminement": "TOURNAY", + "nomCommune": "TOURNAY" }, { - "codePostal": "62390", - "codeCommune": "62722", - "libelleAcheminement": "ROUGEFAY", - "nomCommune": "ROUGEFAY" + "codePostal": "56190", + "codeCommune": "56018", + "libelleAcheminement": "BILLIERS", + "nomCommune": "BILLIERS" }, { - "codePostal": "42410", - "codeCommune": "42167", - "libelleAcheminement": "PAVEZIN", - "nomCommune": "PAVEZIN" + "codePostal": "58420", + "codeCommune": "58071", + "libelleAcheminement": "CHEVANNES CHANGY", + "nomCommune": "CHEVANNES CHANGY" }, { - "codePostal": "35550", - "codeCommune": "35219", - "libelleAcheminement": "PIPRIAC", - "nomCommune": "PIPRIAC" + "codePostal": "67160", + "codeCommune": "67104", + "libelleAcheminement": "DRACHENBRONN BIRLENBACH", + "nomCommune": "DRACHENBRONN BIRLENBACH" }, { - "codePostal": "04320", - "codeCommune": "04076", - "libelleAcheminement": "ENTREVAUX", - "nomCommune": "ENTREVAUX" + "codePostal": "13740", + "codeCommune": "13088", + "libelleAcheminement": "LE ROVE", + "nomCommune": "LE ROVE" }, { - "codePostal": "62990", - "codeCommune": "62725", - "libelleAcheminement": "ROYON", - "nomCommune": "ROYON" + "codePostal": "65140", + "codeCommune": "65457", + "libelleAcheminement": "UGNOUAS", + "nomCommune": "UGNOUAS" }, { - "codePostal": "42410", - "codeCommune": "42168", - "libelleAcheminement": "PELUSSIN", - "nomCommune": "PELUSSIN" + "codePostal": "56420", + "codeCommune": "56019", + "libelleAcheminement": "BILLIO", + "nomCommune": "BILLIO" }, { - "codePostal": "35470", - "codeCommune": "35221", - "libelleAcheminement": "PLECHATEL", - "nomCommune": "PLECHATEL" + "codePostal": "58110", + "codeCommune": "58076", + "libelleAcheminement": "CHOUGNY", + "nomCommune": "CHOUGNY" }, { - "codePostal": "04160", - "codeCommune": "04079", - "libelleAcheminement": "L ESCALE", - "nomCommune": "L ESCALE" + "codePostal": "67410", + "codeCommune": "67106", + "libelleAcheminement": "DRUSENHEIM", + "nomCommune": "DRUSENHEIM" }, { - "codePostal": "62310", - "codeCommune": "62726", - "libelleAcheminement": "RUISSEAUVILLE", - "nomCommune": "RUISSEAUVILLE" + "codePostal": "13100", + "codeCommune": "13095", + "libelleAcheminement": "ST MARC JAUMEGARDE", + "nomCommune": "ST MARC JAUMEGARDE" }, { - "codePostal": "42380", - "codeCommune": "42169", - "libelleAcheminement": "PERIGNEUX", - "nomCommune": "PERIGNEUX" + "codePostal": "65700", + "codeCommune": "65472", + "libelleAcheminement": "VILLEFRANQUE", + "nomCommune": "VILLEFRANQUE" }, { - "codePostal": "35420", - "codeCommune": "35230", - "libelleAcheminement": "POILLEY", - "nomCommune": "POILLEY" + "codePostal": "56420", + "codeCommune": "56027", + "libelleAcheminement": "BULEON", + "nomCommune": "BULEON" }, { - "codePostal": "04270", - "codeCommune": "04084", - "libelleAcheminement": "ESTOUBLON", - "nomCommune": "ESTOUBLON" + "codePostal": "58500", + "codeCommune": "58079", + "libelleAcheminement": "CLAMECY", + "nomCommune": "CLAMECY" }, { - "codePostal": "62370", - "codeCommune": "62730", - "libelleAcheminement": "RUMINGHEM", - "nomCommune": "RUMINGHEM" + "codePostal": "67360", + "codeCommune": "67110", + "libelleAcheminement": "DURRENBACH", + "nomCommune": "DURRENBACH" }, { - "codePostal": "42110", - "codeCommune": "42174", - "libelleAcheminement": "PONCINS", - "nomCommune": "PONCINS" + "codePostal": "13920", + "codeCommune": "13098", + "libelleAcheminement": "ST MITRE LES REMPARTS", + "nomCommune": "ST MITRE LES REMPARTS" }, { - "codePostal": "35660", - "codeCommune": "35237", - "libelleAcheminement": "RENAC", - "nomCommune": "RENAC" + "codePostal": "65260", + "codeCommune": "65473", + "libelleAcheminement": "VILLELONGUE", + "nomCommune": "VILLELONGUE" }, { - "codePostal": "04250", - "codeCommune": "04093", - "libelleAcheminement": "GIGORS", - "nomCommune": "GIGORS" + "codePostal": "56910", + "codeCommune": "56033", + "libelleAcheminement": "CARENTOIR", + "nomCommune": "CARENTOIR" }, { - "codePostal": "62550", - "codeCommune": "62732", - "libelleAcheminement": "SACHIN", - "nomCommune": "SACHIN" + "codePostal": "58500", + "codeCommune": "58079", + "libelleAcheminement": "CLAMECY", + "nomCommune": "CLAMECY" }, { - "codePostal": "42155", - "codeCommune": "42176", - "libelleAcheminement": "POUILLY LES NONAINS", - "nomCommune": "POUILLY LES NONAINS" + "codePostal": "67320", + "codeCommune": "67111", + "libelleAcheminement": "DURSTEL", + "nomCommune": "DURSTEL" }, { - "codePostal": "35700", - "codeCommune": "35238", - "libelleAcheminement": "RENNES", - "nomCommune": "RENNES" + "codePostal": "13730", + "codeCommune": "13102", + "libelleAcheminement": "ST VICTORET", + "nomCommune": "ST VICTORET" }, { - "codePostal": "04800", - "codeCommune": "04094", - "libelleAcheminement": "GREOUX LES BAINS", - "nomCommune": "GREOUX LES BAINS" + "codePostal": "65500", + "codeCommune": "65476", + "libelleAcheminement": "VILLENAVE PRES BEARN", + "nomCommune": "VILLENAVE PRES BEARN" }, { - "codePostal": "62360", - "codeCommune": "62746", - "libelleAcheminement": "PONT DE BRIQUES ST ETIENNE", - "nomCommune": "ST ETIENNE AU MONT" + "codePostal": "56910", + "codeCommune": "56033", + "libelleAcheminement": "CARENTOIR", + "nomCommune": "CARENTOIR" }, { - "codePostal": "42720", - "codeCommune": "42177", - "libelleAcheminement": "POUILLY SOUS CHARLIEU", - "nomCommune": "POUILLY SOUS CHARLIEU" + "codePostal": "58210", + "codeCommune": "58084", + "libelleAcheminement": "CORVOL D EMBERNARD", + "nomCommune": "CORVOL D EMBERNARD" }, { - "codePostal": "35133", - "codeCommune": "35243", - "libelleAcheminement": "ROMAGNE", - "nomCommune": "ROMAGNE" + "codePostal": "67470", + "codeCommune": "67113", + "libelleAcheminement": "EBERBACH SELTZ", + "nomCommune": "EBERBACH SELTZ" }, { - "codePostal": "04850", - "codeCommune": "04096", - "libelleAcheminement": "JAUSIERS", - "nomCommune": "JAUSIERS" + "codePostal": "13960", + "codeCommune": "13104", + "libelleAcheminement": "SAUSSET LES PINS", + "nomCommune": "SAUSSET LES PINS" }, { - "codePostal": "62370", - "codeCommune": "62756", - "libelleAcheminement": "STE MARIE KERQUE", - "nomCommune": "STE MARIE KERQUE" + "codePostal": "66700", + "codeCommune": "66008", + "libelleAcheminement": "ARGELES SUR MER", + "nomCommune": "ARGELES SUR MER" }, { - "codePostal": "42340", - "codeCommune": "42185", - "libelleAcheminement": "RIVAS", - "nomCommune": "RIVAS" + "codePostal": "56850", + "codeCommune": "56036", + "libelleAcheminement": "CAUDAN", + "nomCommune": "CAUDAN" }, { - "codePostal": "35850", - "codeCommune": "35245", - "libelleAcheminement": "ROMILLE", - "nomCommune": "ROMILLE" + "codePostal": "58200", + "codeCommune": "58086", + "libelleAcheminement": "COSNE COURS SUR LOIRE", + "nomCommune": "COSNE COURS SUR LOIRE" }, { - "codePostal": "04420", - "codeCommune": "04097", - "libelleAcheminement": "LA JAVIE", - "nomCommune": "LA JAVIE" + "codePostal": "67700", + "codeCommune": "67117", + "libelleAcheminement": "ECKARTSWILLER", + "nomCommune": "ECKARTSWILLER" }, { - "codePostal": "62500", - "codeCommune": "62757", - "libelleAcheminement": "ST MARTIN LEZ TATINGHEM", - "nomCommune": "ST MARTIN LEZ TATINGHEM" + "codePostal": "13150", + "codeCommune": "13108", + "libelleAcheminement": "TARASCON", + "nomCommune": "TARASCON" }, { - "codePostal": "42600", - "codeCommune": "42188", - "libelleAcheminement": "ROCHE", - "nomCommune": "ROCHE" + "codePostal": "66670", + "codeCommune": "66011", + "libelleAcheminement": "BAGES", + "nomCommune": "BAGES" }, { - "codePostal": "35500", - "codeCommune": "35252", - "libelleAcheminement": "ST AUBIN DES LANDES", - "nomCommune": "ST AUBIN DES LANDES" + "codePostal": "56620", + "codeCommune": "56040", + "libelleAcheminement": "CLEGUER", + "nomCommune": "CLEGUER" }, { - "codePostal": "04230", - "codeCommune": "04109", - "libelleAcheminement": "MALLEFOUGASSE AUGES", - "nomCommune": "MALLEFOUGASSE AUGES" + "codePostal": "58660", + "codeCommune": "58088", + "libelleAcheminement": "COULANGES LES NEVERS", + "nomCommune": "COULANGES LES NEVERS" }, { - "codePostal": "62240", - "codeCommune": "62759", - "libelleAcheminement": "ST MARTIN CHOQUEL", - "nomCommune": "ST MARTIN CHOQUEL" + "codePostal": "67350", + "codeCommune": "67123", + "libelleAcheminement": "ENGWILLER", + "nomCommune": "ENGWILLER" }, { - "codePostal": "42380", - "codeCommune": "42192", - "libelleAcheminement": "ROZIER COTES D AUREC", - "nomCommune": "ROZIER COTES D AUREC" + "codePostal": "13670", + "codeCommune": "13116", + "libelleAcheminement": "VERQUIERES", + "nomCommune": "VERQUIERES" }, { - "codePostal": "35140", - "codeCommune": "35253", - "libelleAcheminement": "ST AUBIN DU CORMIER", - "nomCommune": "ST AUBIN DU CORMIER" + "codePostal": "66320", + "codeCommune": "66013", + "libelleAcheminement": "BAILLESTAVY", + "nomCommune": "BAILLESTAVY" }, { - "codePostal": "04250", - "codeCommune": "04118", - "libelleAcheminement": "MELVE", - "nomCommune": "MELVE" + "codePostal": "56230", + "codeCommune": "56045", + "libelleAcheminement": "LE COURS", + "nomCommune": "LE COURS" }, { - "codePostal": "62128", - "codeCommune": "62761", - "libelleAcheminement": "ST MARTIN SUR COJEUL", - "nomCommune": "ST MARTIN SUR COJEUL" + "codePostal": "58410", + "codeCommune": "58109", + "libelleAcheminement": "ENTRAINS SUR NOHAIN", + "nomCommune": "ENTRAINS SUR NOHAIN" }, { - "codePostal": "42810", - "codeCommune": "42193", - "libelleAcheminement": "ROZIER EN DONZY", - "nomCommune": "ROZIER EN DONZY" + "codePostal": "67120", + "codeCommune": "67127", + "libelleAcheminement": "ERGERSHEIM", + "nomCommune": "ERGERSHEIM" }, { - "codePostal": "35630", - "codeCommune": "35258", - "libelleAcheminement": "ST BRIEUC DES IFFS", - "nomCommune": "ST BRIEUC DES IFFS" + "codePostal": "13007", + "codeCommune": "13207", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 07" }, { - "codePostal": "04530", - "codeCommune": "04120", - "libelleAcheminement": "VAL D ORONAYE", - "nomCommune": "VAL D ORONAYE" + "codePostal": "66130", + "codeCommune": "66023", + "libelleAcheminement": "BOULETERNERE", + "nomCommune": "BOULETERNERE" }, { - "codePostal": "62223", - "codeCommune": "62764", - "libelleAcheminement": "ST NICOLAS", - "nomCommune": "ST NICOLAS" + "codePostal": "56200", + "codeCommune": "56061", + "libelleAcheminement": "LA GACILLY", + "nomCommune": "LA GACILLY" }, { - "codePostal": "42510", - "codeCommune": "42196", - "libelleAcheminement": "STE AGATHE EN DONZY", - "nomCommune": "STE AGATHE EN DONZY" + "codePostal": "58250", + "codeCommune": "58118", + "libelleAcheminement": "FOURS", + "nomCommune": "FOURS" }, { - "codePostal": "35120", - "codeCommune": "35259", - "libelleAcheminement": "ST BROLADRE", - "nomCommune": "ST BROLADRE" + "codePostal": "67120", + "codeCommune": "67128", + "libelleAcheminement": "ERNOLSHEIM BRUCHE", + "nomCommune": "ERNOLSHEIM BRUCHE" }, { - "codePostal": "04270", - "codeCommune": "04121", - "libelleAcheminement": "MEZEL", - "nomCommune": "MEZEL" + "codePostal": "13008", + "codeCommune": "13208", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 08" }, { - "codePostal": "62350", - "codeCommune": "62770", - "libelleAcheminement": "ST VENANT", - "nomCommune": "ST VENANT" + "codePostal": "66360", + "codeCommune": "66047", + "libelleAcheminement": "CAUDIES DE CONFLENT", + "nomCommune": "CAUDIES DE CONFLENT" }, { - "codePostal": "42130", - "codeCommune": "42197", - "libelleAcheminement": "STE AGATHE LA BOUTERESSE", - "nomCommune": "STE AGATHE LA BOUTERESSE" + "codePostal": "56380", + "codeCommune": "56075", + "libelleAcheminement": "GUER", + "nomCommune": "GUER" }, { - "codePostal": "35210", - "codeCommune": "35260", - "libelleAcheminement": "ST CHRISTOPHE DES BOIS", - "nomCommune": "ST CHRISTOPHE DES BOIS" + "codePostal": "58150", + "codeCommune": "58122", + "libelleAcheminement": "GARCHY", + "nomCommune": "GARCHY" }, { - "codePostal": "04200", - "codeCommune": "04123", - "libelleAcheminement": "MISON", - "nomCommune": "MISON" + "codePostal": "67150", + "codeCommune": "67130", + "libelleAcheminement": "ERSTEIN", + "nomCommune": "ERSTEIN" }, { - "codePostal": "62830", - "codeCommune": "62773", - "libelleAcheminement": "SAMER", - "nomCommune": "SAMER" + "codePostal": "13011", + "codeCommune": "13211", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 11" }, { - "codePostal": "42380", - "codeCommune": "42204", - "libelleAcheminement": "ST BONNET LE CHATEAU", - "nomCommune": "ST BONNET LE CHATEAU" + "codePostal": "66500", + "codeCommune": "66054", + "libelleAcheminement": "CONAT", + "nomCommune": "CONAT" }, { - "codePostal": "35220", - "codeCommune": "35264", - "libelleAcheminement": "ST DIDIER", - "nomCommune": "ST DIDIER" + "codePostal": "56310", + "codeCommune": "56076", + "libelleAcheminement": "GUERN", + "nomCommune": "GUERN" }, { - "codePostal": "04170", - "codeCommune": "04133", - "libelleAcheminement": "MORIEZ", - "nomCommune": "MORIEZ" + "codePostal": "58150", + "codeCommune": "58122", + "libelleAcheminement": "GARCHY", + "nomCommune": "GARCHY" }, { - "codePostal": "62231", - "codeCommune": "62774", - "libelleAcheminement": "SANGATTE", - "nomCommune": "SANGATTE" + "codePostal": "67310", + "codeCommune": "67139", + "libelleAcheminement": "FLEXBOURG", + "nomCommune": "FLEXBOURG" }, { - "codePostal": "42330", - "codeCommune": "42206", - "libelleAcheminement": "ST BONNET LES OULES", - "nomCommune": "ST BONNET LES OULES" + "codePostal": "13012", + "codeCommune": "13212", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 12" }, { - "codePostal": "35550", - "codeCommune": "35268", - "libelleAcheminement": "ST GANTON", - "nomCommune": "ST GANTON" + "codePostal": "66200", + "codeCommune": "66065", + "libelleAcheminement": "ELNE", + "nomCommune": "ELNE" }, { - "codePostal": "04360", - "codeCommune": "04135", - "libelleAcheminement": "MOUSTIERS STE MARIE", - "nomCommune": "MOUSTIERS STE MARIE" + "codePostal": "56780", + "codeCommune": "56087", + "libelleAcheminement": "ILE AUX MOINES", + "nomCommune": "ILE AUX MOINES" }, { - "codePostal": "62810", - "codeCommune": "62778", - "libelleAcheminement": "SARS LE BOIS", - "nomCommune": "SARS LE BOIS" + "codePostal": "58470", + "codeCommune": "58126", + "libelleAcheminement": "GIMOUILLE", + "nomCommune": "GIMOUILLE" }, { - "codePostal": "42540", - "codeCommune": "42209", - "libelleAcheminement": "STE COLOMBE SUR GAND", - "nomCommune": "STE COLOMBE SUR GAND" + "codePostal": "67580", + "codeCommune": "67141", + "libelleAcheminement": "FORSTHEIM", + "nomCommune": "FORSTHEIM" }, { - "codePostal": "35420", - "codeCommune": "35271", - "libelleAcheminement": "ST GEORGES DE REINTEMBAULT", - "nomCommune": "ST GEORGES DE REINTEMBAULT" + "codePostal": "13013", + "codeCommune": "13213", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 13" }, { - "codePostal": "04700", - "codeCommune": "04143", - "libelleAcheminement": "ORAISON", - "nomCommune": "ORAISON" + "codePostal": "66760", + "codeCommune": "66066", + "libelleAcheminement": "ENVEITG", + "nomCommune": "ENVEITG" }, { - "codePostal": "62860", - "codeCommune": "62780", - "libelleAcheminement": "SAUCHY CAUCHY", - "nomCommune": "SAUCHY CAUCHY" + "codePostal": "56700", + "codeCommune": "56094", + "libelleAcheminement": "KERVIGNAC", + "nomCommune": "KERVIGNAC" }, { - "codePostal": "42210", - "codeCommune": "42214", - "libelleAcheminement": "ST CYR LES VIGNES", - "nomCommune": "ST CYR LES VIGNES" + "codePostal": "58230", + "codeCommune": "58129", + "libelleAcheminement": "GOULOUX", + "nomCommune": "GOULOUX" }, { - "codePostal": "35250", - "codeCommune": "35274", - "libelleAcheminement": "ST GERMAIN SUR ILLE", - "nomCommune": "ST GERMAIN SUR ILLE" + "codePostal": "67130", + "codeCommune": "67144", + "libelleAcheminement": "FOUDAY", + "nomCommune": "FOUDAY" }, { - "codePostal": "04200", - "codeCommune": "04145", - "libelleAcheminement": "PEIPIN", - "nomCommune": "PEIPIN" + "codePostal": "13013", + "codeCommune": "13213", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 13" }, { - "codePostal": "62860", - "codeCommune": "62782", - "libelleAcheminement": "SAUDEMONT", - "nomCommune": "SAUDEMONT" + "codePostal": "66800", + "codeCommune": "66072", + "libelleAcheminement": "ESTAVAR", + "nomCommune": "ESTAVAR" }, { - "codePostal": "42640", - "codeCommune": "42220", - "libelleAcheminement": "ST FORGEUX LESPINASSE", - "nomCommune": "ST FORGEUX LESPINASSE" + "codePostal": "56600", + "codeCommune": "56098", + "libelleAcheminement": "LANESTER", + "nomCommune": "LANESTER" }, { - "codePostal": "35760", - "codeCommune": "35278", - "libelleAcheminement": "ST GREGOIRE", - "nomCommune": "ST GREGOIRE" + "codePostal": "58420", + "codeCommune": "58130", + "libelleAcheminement": "GRENOIS", + "nomCommune": "GRENOIS" }, { - "codePostal": "05130", - "codeCommune": "04150", - "libelleAcheminement": "PIEGUT", - "nomCommune": "PIEGUT" + "codePostal": "67860", + "codeCommune": "67146", + "libelleAcheminement": "FRIESENHEIM", + "nomCommune": "FRIESENHEIM" }, { - "codePostal": "62310", - "codeCommune": "62790", - "libelleAcheminement": "SENLIS", - "nomCommune": "SENLIS" + "codePostal": "13014", + "codeCommune": "13214", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 14" }, { - "codePostal": "42110", - "codeCommune": "42221", - "libelleAcheminement": "STE FOY ST SULPICE", - "nomCommune": "STE FOY ST SULPICE" + "codePostal": "66320", + "codeCommune": "66073", + "libelleAcheminement": "ESTOHER", + "nomCommune": "ESTOHER" }, { - "codePostal": "35140", - "codeCommune": "35282", - "libelleAcheminement": "RIVES DU COUESNON", - "nomCommune": "RIVES DU COUESNON" + "codePostal": "56630", + "codeCommune": "56100", + "libelleAcheminement": "LANGONNET", + "nomCommune": "LANGONNET" }, { - "codePostal": "04860", - "codeCommune": "04152", - "libelleAcheminement": "PIERREVERT", - "nomCommune": "PIERREVERT" + "codePostal": "58290", + "codeCommune": "58142", + "libelleAcheminement": "LIMANTON", + "nomCommune": "LIMANTON" }, { - "codePostal": "62560", - "codeCommune": "62812", - "libelleAcheminement": "THIEMBRONNE", - "nomCommune": "THIEMBRONNE" + "codePostal": "67290", + "codeCommune": "67148", + "libelleAcheminement": "FROHMUHL", + "nomCommune": "FROHMUHL" }, { - "codePostal": "42800", - "codeCommune": "42225", - "libelleAcheminement": "GENILAC", - "nomCommune": "GENILAC" + "codePostal": "14540", + "codeCommune": "14005", + "libelleAcheminement": "VALAMBRAY", + "nomCommune": "VALAMBRAY" }, { - "codePostal": "35430", - "codeCommune": "35284", - "libelleAcheminement": "ST JOUAN DES GUERETS", - "nomCommune": "ST JOUAN DES GUERETS" + "codePostal": "66220", + "codeCommune": "66077", + "libelleAcheminement": "FENOUILLET", + "nomCommune": "FENOUILLET" }, { - "codePostal": "04420", - "codeCommune": "04155", - "libelleAcheminement": "PRADS HAUTE BLEONE", - "nomCommune": "PRADS HAUTE BLEONE" + "codePostal": "56440", + "codeCommune": "56101", + "libelleAcheminement": "LANGUIDIC", + "nomCommune": "LANGUIDIC" }, { - "codePostal": "62500", - "codeCommune": "62819", - "libelleAcheminement": "TILQUES", - "nomCommune": "TILQUES" + "codePostal": "58270", + "codeCommune": "58143", + "libelleAcheminement": "LIMON", + "nomCommune": "LIMON" }, { - "codePostal": "42370", - "codeCommune": "42233", - "libelleAcheminement": "ST HAON LE VIEUX", - "nomCommune": "ST HAON LE VIEUX" + "codePostal": "67360", + "codeCommune": "67160", + "libelleAcheminement": "GOERSDORF", + "nomCommune": "GOERSDORF" }, { - "codePostal": "35800", - "codeCommune": "35287", - "libelleAcheminement": "ST LUNAIRE", - "nomCommune": "ST LUNAIRE" + "codePostal": "14240", + "codeCommune": "14011", + "libelleAcheminement": "AURSEULLES", + "nomCommune": "AURSEULLES" }, { - "codePostal": "04150", - "codeCommune": "04159", - "libelleAcheminement": "REDORTIERS", - "nomCommune": "REDORTIERS" + "codePostal": "66320", + "codeCommune": "66079", + "libelleAcheminement": "FINESTRET", + "nomCommune": "FINESTRET" }, { - "codePostal": "62310", - "codeCommune": "62823", - "libelleAcheminement": "TORCY", - "nomCommune": "TORCY" + "codePostal": "56360", + "codeCommune": "56114", + "libelleAcheminement": "LOCMARIA", + "nomCommune": "LOCMARIA" }, { - "codePostal": "42190", - "codeCommune": "42236", - "libelleAcheminement": "ST HILAIRE SOUS CHARLIEU", - "nomCommune": "ST HILAIRE SOUS CHARLIEU" + "codePostal": "58470", + "codeCommune": "58152", + "libelleAcheminement": "MAGNY COURS", + "nomCommune": "MAGNY COURS" }, { - "codePostal": "35400", - "codeCommune": "35288", - "libelleAcheminement": "ST MALO", - "nomCommune": "ST MALO" + "codePostal": "67700", + "codeCommune": "67161", + "libelleAcheminement": "GOTTENHOUSE", + "nomCommune": "GOTTENHOUSE" }, { - "codePostal": "04340", - "codeCommune": "04161", - "libelleAcheminement": "MEOLANS REVEL", - "nomCommune": "MEOLANS REVEL" + "codePostal": "14240", + "codeCommune": "14011", + "libelleAcheminement": "AURSEULLES", + "nomCommune": "AURSEULLES" }, { - "codePostal": "62140", - "codeCommune": "62834", - "libelleAcheminement": "VACQUERIETTE ERQUIERES", - "nomCommune": "VACQUERIETTE ERQUIERES" + "codePostal": "66300", + "codeCommune": "66084", + "libelleAcheminement": "FOURQUES", + "nomCommune": "FOURQUES" }, { - "codePostal": "42155", - "codeCommune": "42239", - "libelleAcheminement": "ST JEAN ST MAURICE SUR LOIRE", - "nomCommune": "ST JEAN ST MAURICE SUR LOIRE" + "codePostal": "56300", + "codeCommune": "56125", + "libelleAcheminement": "MALGUENAC", + "nomCommune": "MALGUENAC" }, { - "codePostal": "35460", - "codeCommune": "35292", - "libelleAcheminement": "ST MARC LE BLANC", - "nomCommune": "ST MARC LE BLANC" + "codePostal": "58800", + "codeCommune": "58153", + "libelleAcheminement": "MAGNY LORMES", + "nomCommune": "MAGNY LORMES" }, { - "codePostal": "04240", - "codeCommune": "04174", - "libelleAcheminement": "ST BENOIT", - "nomCommune": "ST BENOIT" + "codePostal": "67490", + "codeCommune": "67162", + "libelleAcheminement": "GOTTESHEIM", + "nomCommune": "GOTTESHEIM" }, { - "codePostal": "62380", - "codeCommune": "62837", - "libelleAcheminement": "VAUDRINGHEM", - "nomCommune": "VAUDRINGHEM" + "codePostal": "14610", + "codeCommune": "14014", + "libelleAcheminement": "COLOMBY ANGUERNY", + "nomCommune": "COLOMBY ANGUERNY" }, { - "codePostal": "42430", - "codeCommune": "42248", - "libelleAcheminement": "ST JUST EN CHEVALET", - "nomCommune": "ST JUST EN CHEVALET" + "codePostal": "66320", + "codeCommune": "66089", + "libelleAcheminement": "JOCH", + "nomCommune": "JOCH" }, { - "codePostal": "35720", - "codeCommune": "35308", - "libelleAcheminement": "MESNIL ROC H", - "nomCommune": "MESNIL ROC H" + "codePostal": "56500", + "codeCommune": "56140", + "libelleAcheminement": "MOREAC", + "nomCommune": "MOREAC" }, { - "codePostal": "04380", - "codeCommune": "04177", - "libelleAcheminement": "HAUTES DUYES", - "nomCommune": "HAUTES DUYES" + "codePostal": "58400", + "codeCommune": "58155", + "libelleAcheminement": "LA MARCHE", + "nomCommune": "LA MARCHE" }, { - "codePostal": "62232", - "codeCommune": "62841", - "libelleAcheminement": "VENDIN LES BETHUNE", - "nomCommune": "VENDIN LES BETHUNE" + "codePostal": "67350", + "codeCommune": "67166", + "libelleAcheminement": "GRASSENDORF", + "nomCommune": "GRASSENDORF" }, { - "codePostal": "42330", - "codeCommune": "42264", - "libelleAcheminement": "ST MEDARD EN FOREZ", - "nomCommune": "ST MEDARD EN FOREZ" + "codePostal": "14640", + "codeCommune": "14024", + "libelleAcheminement": "AUBERVILLE", + "nomCommune": "AUBERVILLE" }, { - "codePostal": "35133", - "codeCommune": "35310", - "libelleAcheminement": "ST SAUVEUR DES LANDES", - "nomCommune": "ST SAUVEUR DES LANDES" + "codePostal": "66230", + "codeCommune": "66091", + "libelleAcheminement": "LAMANERE", + "nomCommune": "LAMANERE" }, { - "codePostal": "04200", - "codeCommune": "04179", - "libelleAcheminement": "ST GENIEZ", - "nomCommune": "ST GENIEZ" + "codePostal": "56500", + "codeCommune": "56144", + "libelleAcheminement": "EVELLYS", + "nomCommune": "EVELLYS" }, { - "codePostal": "62560", - "codeCommune": "62844", - "libelleAcheminement": "VERCHOCQ", - "nomCommune": "VERCHOCQ" + "codePostal": "58180", + "codeCommune": "58160", + "libelleAcheminement": "MARZY", + "nomCommune": "MARZY" }, { - "codePostal": "42410", - "codeCommune": "42265", - "libelleAcheminement": "ST MICHEL SUR RHONE", - "nomCommune": "ST MICHEL SUR RHONE" + "codePostal": "67110", + "codeCommune": "67174", + "libelleAcheminement": "GUMBRECHTSHOFFEN", + "nomCommune": "GUMBRECHTSHOFFEN" }, { - "codePostal": "35580", - "codeCommune": "35312", - "libelleAcheminement": "ST SENOUX", - "nomCommune": "ST SENOUX" + "codePostal": "14260", + "codeCommune": "14027", + "libelleAcheminement": "LES MONTS D AUNAY", + "nomCommune": "LES MONTS D AUNAY" }, { - "codePostal": "04330", - "codeCommune": "04180", - "libelleAcheminement": "ST JACQUES", - "nomCommune": "ST JACQUES" + "codePostal": "66760", + "codeCommune": "66095", + "libelleAcheminement": "LATOUR DE CAROL", + "nomCommune": "LATOUR DE CAROL" }, { - "codePostal": "62113", - "codeCommune": "62847", - "libelleAcheminement": "VERQUIGNEUL", - "nomCommune": "VERQUIGNEUL" + "codePostal": "56190", + "codeCommune": "56149", + "libelleAcheminement": "NOYAL MUZILLAC", + "nomCommune": "NOYAL MUZILLAC" }, { - "codePostal": "42590", - "codeCommune": "42268", - "libelleAcheminement": "VEZELIN SUR LOIRE", - "nomCommune": "VEZELIN SUR LOIRE" + "codePostal": "58210", + "codeCommune": "58163", + "libelleAcheminement": "MENOU", + "nomCommune": "MENOU" }, { - "codePostal": "35430", - "codeCommune": "35314", - "libelleAcheminement": "ST SULIAC", - "nomCommune": "ST SULIAC" + "codePostal": "67700", + "codeCommune": "67179", + "libelleAcheminement": "HAEGEN", + "nomCommune": "HAEGEN" }, { - "codePostal": "04500", - "codeCommune": "04186", - "libelleAcheminement": "ST LAURENT DU VERDON", - "nomCommune": "ST LAURENT DU VERDON" + "codePostal": "14490", + "codeCommune": "14035", + "libelleAcheminement": "BALLEROY SUR DROME", + "nomCommune": "BALLEROY SUR DROME" }, { - "codePostal": "62770", - "codeCommune": "62850", - "libelleAcheminement": "VIEIL HESDIN", - "nomCommune": "VIEIL HESDIN" + "codePostal": "66720", + "codeCommune": "66096", + "libelleAcheminement": "LATOUR DE FRANCE", + "nomCommune": "LATOUR DE FRANCE" }, { - "codePostal": "42600", - "codeCommune": "42269", - "libelleAcheminement": "ST PAUL D UZORE", - "nomCommune": "ST PAUL D UZORE" + "codePostal": "56140", + "codeCommune": "56159", + "libelleAcheminement": "PLEUCADEUC", + "nomCommune": "PLEUCADEUC" }, { - "codePostal": "35190", - "codeCommune": "35318", - "libelleAcheminement": "ST THUAL", - "nomCommune": "ST THUAL" + "codePostal": "58170", + "codeCommune": "58168", + "libelleAcheminement": "MILLAY", + "nomCommune": "MILLAY" }, { - "codePostal": "04530", - "codeCommune": "04193", - "libelleAcheminement": "ST PAUL SUR UBAYE", - "nomCommune": "ST PAUL SUR UBAYE" + "codePostal": "67690", + "codeCommune": "67184", + "libelleAcheminement": "HATTEN", + "nomCommune": "HATTEN" }, { - "codePostal": "62136", - "codeCommune": "62851", - "libelleAcheminement": "VIEILLE CHAPELLE", - "nomCommune": "VIEILLE CHAPELLE" + "codePostal": "14940", + "codeCommune": "14036", + "libelleAcheminement": "BANNEVILLE LA CAMPAGNE", + "nomCommune": "BANNEVILLE LA CAMPAGNE" }, { - "codePostal": "42240", - "codeCommune": "42270", - "libelleAcheminement": "ST PAUL EN CORNILLON", - "nomCommune": "ST PAUL EN CORNILLON" + "codePostal": "66220", + "codeCommune": "66097", + "libelleAcheminement": "LESQUERDE", + "nomCommune": "LESQUERDE" }, { - "codePostal": "35320", - "codeCommune": "35322", - "libelleAcheminement": "LE SEL DE BRETAGNE", - "nomCommune": "LE SEL DE BRETAGNE" + "codePostal": "56770", + "codeCommune": "56170", + "libelleAcheminement": "PLOURAY", + "nomCommune": "PLOURAY" }, { - "codePostal": "04150", - "codeCommune": "04208", - "libelleAcheminement": "SIMIANE LA ROTONDE", - "nomCommune": "SIMIANE LA ROTONDE" + "codePostal": "58250", + "codeCommune": "58172", + "libelleAcheminement": "MONTAMBERT", + "nomCommune": "MONTAMBERT" }, { - "codePostal": "62162", - "codeCommune": "62852", - "libelleAcheminement": "VIEILLE EGLISE", - "nomCommune": "VIEILLE EGLISE" + "codePostal": "67330", + "codeCommune": "67185", + "libelleAcheminement": "HATTMATT", + "nomCommune": "HATTMATT" }, { - "codePostal": "42260", - "codeCommune": "42274", - "libelleAcheminement": "ST POLGUES", - "nomCommune": "ST POLGUES" + "codePostal": "14670", + "codeCommune": "14045", + "libelleAcheminement": "BASSENEVILLE", + "nomCommune": "BASSENEVILLE" }, { - "codePostal": "35550", - "codeCommune": "35328", - "libelleAcheminement": "SIXT SUR AFF", - "nomCommune": "SIXT SUR AFF" + "codePostal": "66300", + "codeCommune": "66099", + "libelleAcheminement": "LLAURO", + "nomCommune": "LLAURO" }, { - "codePostal": "04150", - "codeCommune": "04208", - "libelleAcheminement": "SIMIANE LA ROTONDE", - "nomCommune": "SIMIANE LA ROTONDE" + "codePostal": "56930", + "codeCommune": "56173", + "libelleAcheminement": "PLUMELIAU BIEUZY", + "nomCommune": "PLUMELIAU BIEUZY" }, { - "codePostal": "62770", - "codeCommune": "62868", - "libelleAcheminement": "WAIL", - "nomCommune": "WAIL" + "codePostal": "58700", + "codeCommune": "58174", + "libelleAcheminement": "MONTENOISON", + "nomCommune": "MONTENOISON" }, { - "codePostal": "42830", - "codeCommune": "42276", - "libelleAcheminement": "ST PRIEST LA PRUGNE", - "nomCommune": "ST PRIEST LA PRUGNE" + "codePostal": "67260", + "codeCommune": "67191", + "libelleAcheminement": "HERBITZHEIM", + "nomCommune": "HERBITZHEIM" }, { - "codePostal": "35500", - "codeCommune": "35330", - "libelleAcheminement": "TAILLIS", - "nomCommune": "TAILLIS" + "codePostal": "14400", + "codeCommune": "14047", + "libelleAcheminement": "BAYEUX", + "nomCommune": "BAYEUX" }, { - "codePostal": "04120", - "codeCommune": "04210", - "libelleAcheminement": "SOLEILHAS", - "nomCommune": "SOLEILHAS" + "codePostal": "66200", + "codeCommune": "66114", + "libelleAcheminement": "MONTESCOT", + "nomCommune": "MONTESCOT" }, { - "codePostal": "62217", - "codeCommune": "62869", - "libelleAcheminement": "WAILLY", - "nomCommune": "WAILLY" + "codePostal": "56290", + "codeCommune": "56181", + "libelleAcheminement": "PORT LOUIS", + "nomCommune": "PORT LOUIS" }, { - "codePostal": "42370", - "codeCommune": "42281", - "libelleAcheminement": "ST RIRAND", - "nomCommune": "ST RIRAND" + "codePostal": "58420", + "codeCommune": "58181", + "libelleAcheminement": "MORACHES", + "nomCommune": "MORACHES" }, { - "codePostal": "35460", - "codeCommune": "35336", - "libelleAcheminement": "LE TIERCENT", - "nomCommune": "LE TIERCENT" + "codePostal": "67390", + "codeCommune": "67195", + "libelleAcheminement": "HESSENHEIM", + "nomCommune": "HESSENHEIM" }, { - "codePostal": "04250", - "codeCommune": "04222", - "libelleAcheminement": "TURRIERS", - "nomCommune": "TURRIERS" + "codePostal": "14620", + "codeCommune": "14053", + "libelleAcheminement": "BEAUMAIS", + "nomCommune": "BEAUMAIS" }, { - "codePostal": "62170", - "codeCommune": "62870", - "libelleAcheminement": "WAILLY BEAUCAMP", - "nomCommune": "WAILLY BEAUCAMP" + "codePostal": "66500", + "codeCommune": "66119", + "libelleAcheminement": "MOSSET", + "nomCommune": "MOSSET" }, { - "codePostal": "42130", - "codeCommune": "42288", - "libelleAcheminement": "ST SIXTE", - "nomCommune": "ST SIXTE" + "codePostal": "56500", + "codeCommune": "56189", + "libelleAcheminement": "RADENAC", + "nomCommune": "RADENAC" }, { - "codePostal": "35270", - "codeCommune": "35342", - "libelleAcheminement": "TREMEHEUC", - "nomCommune": "TREMEHEUC" + "codePostal": "58700", + "codeCommune": "58186", + "libelleAcheminement": "MURLIN", + "nomCommune": "MURLIN" }, { - "codePostal": "04400", - "codeCommune": "04226", - "libelleAcheminement": "UVERNET FOURS", - "nomCommune": "UVERNET FOURS" + "codePostal": "67150", + "codeCommune": "67200", + "libelleAcheminement": "HIPSHEIM", + "nomCommune": "HIPSHEIM" }, { - "codePostal": "62380", - "codeCommune": "62882", - "libelleAcheminement": "WAVRANS SUR L AA", - "nomCommune": "WAVRANS SUR L AA" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "42990", - "codeCommune": "42298", - "libelleAcheminement": "SAUVAIN", - "nomCommune": "SAUVAIN" + "codePostal": "66400", + "codeCommune": "66126", + "libelleAcheminement": "OMS", + "nomCommune": "OMS" }, { - "codePostal": "35320", - "codeCommune": "35343", - "libelleAcheminement": "TRESBOEUF", - "nomCommune": "TRESBOEUF" + "codePostal": "56350", + "codeCommune": "56194", + "libelleAcheminement": "RIEUX", + "nomCommune": "RIEUX" }, { - "codePostal": "04210", - "codeCommune": "04230", - "libelleAcheminement": "VALENSOLE", - "nomCommune": "VALENSOLE" + "codePostal": "58300", + "codeCommune": "58192", + "libelleAcheminement": "NEUVILLE LES DECIZE", + "nomCommune": "NEUVILLE LES DECIZE" }, { - "codePostal": "62130", - "codeCommune": "62883", - "libelleAcheminement": "WAVRANS SUR TERNOISE", - "nomCommune": "WAVRANS SUR TERNOISE" + "codePostal": "67270", + "codeCommune": "67209", + "libelleAcheminement": "HOHFRANKENHEIM", + "nomCommune": "HOHFRANKENHEIM" }, { - "codePostal": "42560", - "codeCommune": "42301", - "libelleAcheminement": "SOLEYMIEUX", - "nomCommune": "SOLEYMIEUX" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "35190", - "codeCommune": "35346", - "libelleAcheminement": "TRIMER", - "nomCommune": "TRIMER" + "codePostal": "66000", + "codeCommune": "66136", + "libelleAcheminement": "PERPIGNAN", + "nomCommune": "PERPIGNAN" }, { - "codePostal": "04140", - "codeCommune": "04235", - "libelleAcheminement": "VERDACHES", - "nomCommune": "VERDACHES" + "codePostal": "56460", + "codeCommune": "56197", + "libelleAcheminement": "VAL D OUST", + "nomCommune": "VAL D OUST" }, { - "codePostal": "62770", - "codeCommune": "62890", - "libelleAcheminement": "WILLEMAN", - "nomCommune": "WILLEMAN" + "codePostal": "58000", + "codeCommune": "58194", + "libelleAcheminement": "NEVERS", + "nomCommune": "NEVERS" }, { - "codePostal": "42450", - "codeCommune": "42304", - "libelleAcheminement": "SURY LE COMTAL", - "nomCommune": "SURY LE COMTAL" + "codePostal": "67270", + "codeCommune": "67215", + "libelleAcheminement": "HUTTENDORF", + "nomCommune": "HUTTENDORF" }, { - "codePostal": "35680", - "codeCommune": "35350", - "libelleAcheminement": "VERGEAL", - "nomCommune": "VERGEAL" + "codePostal": "14340", + "codeCommune": "14082", + "libelleAcheminement": "LA BOISSIERE", + "nomCommune": "LA BOISSIERE" }, { - "codePostal": "04290", - "codeCommune": "04244", - "libelleAcheminement": "VOLONNE", - "nomCommune": "VOLONNE" + "codePostal": "66480", + "codeCommune": "66137", + "libelleAcheminement": "LE PERTHUS", + "nomCommune": "LE PERTHUS" }, { - "codePostal": "62380", - "codeCommune": "62897", - "libelleAcheminement": "WISMES", - "nomCommune": "WISMES" + "codePostal": "56580", + "codeCommune": "56198", + "libelleAcheminement": "ROHAN", + "nomCommune": "ROHAN" }, { - "codePostal": "42350", - "codeCommune": "42305", - "libelleAcheminement": "LA TALAUDIERE", - "nomCommune": "LA TALAUDIERE" + "codePostal": "58500", + "codeCommune": "58200", + "libelleAcheminement": "OUAGNE", + "nomCommune": "OUAGNE" }, { - "codePostal": "35160", - "codeCommune": "35351", - "libelleAcheminement": "LE VERGER", - "nomCommune": "LE VERGER" + "codePostal": "67270", + "codeCommune": "67220", + "libelleAcheminement": "INGENHEIM", + "nomCommune": "INGENHEIM" }, { - "codePostal": "05460", - "codeCommune": "05001", - "libelleAcheminement": "ABRIES RISTOLAS", - "nomCommune": "ABRIES RISTOLAS" + "codePostal": "14340", + "codeCommune": "14083", + "libelleAcheminement": "BONNEBOSQ", + "nomCommune": "BONNEBOSQ" }, { - "codePostal": "62570", - "codeCommune": "62902", - "libelleAcheminement": "WIZERNES", - "nomCommune": "WIZERNES" + "codePostal": "66720", + "codeCommune": "66143", + "libelleAcheminement": "PLANEZES", + "nomCommune": "PLANEZES" }, { - "codePostal": "42130", - "codeCommune": "42313", - "libelleAcheminement": "TRELINS", - "nomCommune": "TRELINS" + "codePostal": "56110", + "codeCommune": "56201", + "libelleAcheminement": "LE SAINT", + "nomCommune": "LE SAINT" }, { - "codePostal": "35610", - "codeCommune": "35354", - "libelleAcheminement": "VIEUX VIEL", - "nomCommune": "VIEUX VIEL" + "codePostal": "58130", + "codeCommune": "58204", + "libelleAcheminement": "VAUX D AMOGNES", + "nomCommune": "VAUX D AMOGNES" }, { - "codePostal": "05470", - "codeCommune": "05003", - "libelleAcheminement": "AIGUILLES", - "nomCommune": "AIGUILLES" + "codePostal": "67140", + "codeCommune": "67227", + "libelleAcheminement": "ITTERSWILLER", + "nomCommune": "ITTERSWILLER" }, { - "codePostal": "62890", - "codeCommune": "62904", - "libelleAcheminement": "ZOUAFQUES", - "nomCommune": "ZOUAFQUES" + "codePostal": "14210", + "codeCommune": "14089", + "libelleAcheminement": "BOUGY", + "nomCommune": "BOUGY" }, { - "codePostal": "42240", - "codeCommune": "42316", - "libelleAcheminement": "UNIEUX", - "nomCommune": "UNIEUX" + "codePostal": "66760", + "codeCommune": "66147", + "libelleAcheminement": "PORTE PUYMORENS", + "nomCommune": "PORTE PUYMORENS" }, { - "codePostal": "35490", - "codeCommune": "35355", - "libelleAcheminement": "VIEUX VY SUR COUESNON", - "nomCommune": "VIEUX VY SUR COUESNON" + "codePostal": "56450", + "codeCommune": "56205", + "libelleAcheminement": "ST ARMEL", + "nomCommune": "ST ARMEL" }, { - "codePostal": "05300", - "codeCommune": "05014", - "libelleAcheminement": "BARRET SUR MEOUGE", - "nomCommune": "BARRET SUR MEOUGE" + "codePostal": "58210", + "codeCommune": "58206", + "libelleAcheminement": "PARIGNY LA ROSE", + "nomCommune": "PARIGNY LA ROSE" }, { - "codePostal": "62370", - "codeCommune": "62906", - "libelleAcheminement": "ZUTKERQUE", - "nomCommune": "ZUTKERQUE" + "codePostal": "67230", + "codeCommune": "67233", + "libelleAcheminement": "KERTZFELD", + "nomCommune": "KERTZFELD" }, { - "codePostal": "42110", - "codeCommune": "42319", - "libelleAcheminement": "VALEILLE", - "nomCommune": "VALEILLE" + "codePostal": "14220", + "codeCommune": "14090", + "libelleAcheminement": "BOULON", + "nomCommune": "BOULON" }, { - "codePostal": "35420", - "codeCommune": "35357", - "libelleAcheminement": "VILLAMEE", - "nomCommune": "VILLAMEE" + "codePostal": "66230", + "codeCommune": "66150", + "libelleAcheminement": "PRATS DE MOLLO LA PRESTE", + "nomCommune": "PRATS DE MOLLO LA PRESTE" }, { - "codePostal": "05140", - "codeCommune": "05019", - "libelleAcheminement": "LA BEAUME", - "nomCommune": "LA BEAUME" + "codePostal": "56430", + "codeCommune": "56208", + "libelleAcheminement": "ST BRIEUC DE MAURON", + "nomCommune": "ST BRIEUC DE MAURON" }, { - "codePostal": "62820", - "codeCommune": "62907", - "libelleAcheminement": "LIBERCOURT", - "nomCommune": "LIBERCOURT" + "codePostal": "58320", + "codeCommune": "58214", + "libelleAcheminement": "POUGUES LES EAUX", + "nomCommune": "POUGUES LES EAUX" }, { - "codePostal": "42111", - "codeCommune": "42321", - "libelleAcheminement": "LA VALLA SUR ROCHEFORT", - "nomCommune": "LA VALLA SUR ROCHEFORT" + "codePostal": "67600", + "codeCommune": "67239", + "libelleAcheminement": "KINTZHEIM", + "nomCommune": "KINTZHEIM" }, { - "codePostal": "35131", - "codeCommune": "35363", - "libelleAcheminement": "PONT PEAN", - "nomCommune": "PONT PEAN" + "codePostal": "14430", + "codeCommune": "14093", + "libelleAcheminement": "BRANVILLE", + "nomCommune": "BRANVILLE" }, { - "codePostal": "05150", - "codeCommune": "05024", - "libelleAcheminement": "VALDOULE", - "nomCommune": "VALDOULE" + "codePostal": "66130", + "codeCommune": "66153", + "libelleAcheminement": "PRUNET ET BELPUIG", + "nomCommune": "PRUNET ET BELPUIG" }, { - "codePostal": "62124", - "codeCommune": "62909", - "libelleAcheminement": "YTRES", - "nomCommune": "YTRES" + "codePostal": "56130", + "codeCommune": "56212", + "libelleAcheminement": "ST DOLAY", + "nomCommune": "ST DOLAY" }, { - "codePostal": "42131", - "codeCommune": "42322", - "libelleAcheminement": "LA VALLA EN GIER", - "nomCommune": "LA VALLA EN GIER" + "codePostal": "58190", + "codeCommune": "58224", + "libelleAcheminement": "RUAGES", + "nomCommune": "RUAGES" }, { - "codePostal": "36270", - "codeCommune": "36012", - "libelleAcheminement": "BARAIZE", - "nomCommune": "BARAIZE" + "codePostal": "67880", + "codeCommune": "67248", + "libelleAcheminement": "KRAUTERGERSHEIM", + "nomCommune": "KRAUTERGERSHEIM" }, { - "codePostal": "05310", - "codeCommune": "05031", - "libelleAcheminement": "CHAMPCELLA", - "nomCommune": "CHAMPCELLA" + "codePostal": "14190", + "codeCommune": "14097", + "libelleAcheminement": "BRETTEVILLE LE RABET", + "nomCommune": "BRETTEVILLE LE RABET" }, { - "codePostal": "63250", - "codeCommune": "63008", - "libelleAcheminement": "ARCONSAT", - "nomCommune": "ARCONSAT" + "codePostal": "66750", + "codeCommune": "66171", + "libelleAcheminement": "ST CYPRIEN", + "nomCommune": "ST CYPRIEN" }, { - "codePostal": "42390", - "codeCommune": "42330", - "libelleAcheminement": "VILLARS", - "nomCommune": "VILLARS" + "codePostal": "56920", + "codeCommune": "56215", + "libelleAcheminement": "ST GONNERY", + "nomCommune": "ST GONNERY" }, { - "codePostal": "36110", - "codeCommune": "36013", - "libelleAcheminement": "BAUDRES", - "nomCommune": "BAUDRES" + "codePostal": "58140", + "codeCommune": "58229", + "libelleAcheminement": "ST ANDRE EN MORVAN", + "nomCommune": "ST ANDRE EN MORVAN" }, { - "codePostal": "05400", - "codeCommune": "05035", - "libelleAcheminement": "CHATEAUNEUF D OZE", - "nomCommune": "CHATEAUNEUF D OZE" + "codePostal": "67250", + "codeCommune": "67254", + "libelleAcheminement": "KUTZENHAUSEN", + "nomCommune": "KUTZENHAUSEN" }, { - "codePostal": "63420", - "codeCommune": "63009", - "libelleAcheminement": "ARDES", - "nomCommune": "ARDES" + "codePostal": "14740", + "codeCommune": "14098", + "libelleAcheminement": "THUE ET MUE", + "nomCommune": "THUE ET MUE" }, { - "codePostal": "42140", - "codeCommune": "42335", - "libelleAcheminement": "VIRICELLES", - "nomCommune": "VIRICELLES" + "codePostal": "66740", + "codeCommune": "66175", + "libelleAcheminement": "ST GENIS DES FONTAINES", + "nomCommune": "ST GENIS DES FONTAINES" }, { - "codePostal": "36310", - "codeCommune": "36015", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "56430", + "codeCommune": "56225", + "libelleAcheminement": "ST LERY", + "nomCommune": "ST LERY" }, { - "codePostal": "05350", - "codeCommune": "05038", - "libelleAcheminement": "CHATEAU VILLE VIEILLE", - "nomCommune": "CHATEAU VILLE VIEILLE" + "codePostal": "58000", + "codeCommune": "58238", + "libelleAcheminement": "ST ELOI", + "nomCommune": "ST ELOI" }, { - "codePostal": "63220", - "codeCommune": "63010", - "libelleAcheminement": "ARLANC", - "nomCommune": "ARLANC" + "codePostal": "67630", + "codeCommune": "67261", + "libelleAcheminement": "LAUTERBOURG", + "nomCommune": "LAUTERBOURG" }, { - "codePostal": "42720", - "codeCommune": "42338", - "libelleAcheminement": "VOUGY", - "nomCommune": "VOUGY" + "codePostal": "14740", + "codeCommune": "14098", + "libelleAcheminement": "THUE ET MUE", + "nomCommune": "THUE ET MUE" }, { - "codePostal": "36370", - "codeCommune": "36016", - "libelleAcheminement": "BELABRE", - "nomCommune": "BELABRE" + "codePostal": "66300", + "codeCommune": "66177", + "libelleAcheminement": "ST JEAN LASSEILLE", + "nomCommune": "ST JEAN LASSEILLE" }, { - "codePostal": "05700", - "codeCommune": "05051", - "libelleAcheminement": "ETOILE ST CYRICE", - "nomCommune": "ETOILE ST CYRICE" + "codePostal": "56490", + "codeCommune": "56227", + "libelleAcheminement": "ST MALO DES TROIS FONTAINES", + "nomCommune": "ST MALO DES TROIS FONTAINES" }, { - "codePostal": "63260", - "codeCommune": "63013", - "libelleAcheminement": "AUBIAT", - "nomCommune": "AUBIAT" + "codePostal": "58300", + "codeCommune": "58241", + "libelleAcheminement": "ST GERMAIN CHASSENAY", + "nomCommune": "ST GERMAIN CHASSENAY" }, { - "codePostal": "42430", - "codeCommune": "42339", - "libelleAcheminement": "CHAUSSETERRE", - "nomCommune": "CHAUSSETERRE" + "codePostal": "67480", + "codeCommune": "67264", + "libelleAcheminement": "LEUTENHEIM", + "nomCommune": "LEUTENHEIM" }, { - "codePostal": "36400", - "codeCommune": "36017", - "libelleAcheminement": "LA BERTHENOUX", - "nomCommune": "LA BERTHENOUX" + "codePostal": "14680", + "codeCommune": "14100", + "libelleAcheminement": "BRETTEVILLE SUR LAIZE", + "nomCommune": "BRETTEVILLE SUR LAIZE" }, { - "codePostal": "05600", - "codeCommune": "05052", - "libelleAcheminement": "EYGLIERS", - "nomCommune": "EYGLIERS" + "codePostal": "66260", + "codeCommune": "66179", + "libelleAcheminement": "ST LAURENT DE CERDANS", + "nomCommune": "ST LAURENT DE CERDANS" }, { - "codePostal": "63114", - "codeCommune": "63021", - "libelleAcheminement": "AUTHEZAT", - "nomCommune": "AUTHEZAT" + "codePostal": "56910", + "codeCommune": "56230", + "libelleAcheminement": "ST NICOLAS DU TERTRE", + "nomCommune": "ST NICOLAS DU TERTRE" }, { - "codePostal": "43100", - "codeCommune": "43001", - "libelleAcheminement": "AGNAT", - "nomCommune": "AGNAT" + "codePostal": "58340", + "codeCommune": "58243", + "libelleAcheminement": "ST GRATIEN SAVIGNY", + "nomCommune": "ST GRATIEN SAVIGNY" }, { - "codePostal": "36300", - "codeCommune": "36018", - "libelleAcheminement": "LE BLANC", - "nomCommune": "LE BLANC" + "codePostal": "67640", + "codeCommune": "67268", + "libelleAcheminement": "LIPSHEIM", + "nomCommune": "LIPSHEIM" }, { - "codePostal": "05300", - "codeCommune": "05053", - "libelleAcheminement": "GARDE COLOMBE", - "nomCommune": "GARDE COLOMBE" + "codePostal": "14130", + "codeCommune": "14104", + "libelleAcheminement": "LE BREVEDENT", + "nomCommune": "LE BREVEDENT" }, { - "codePostal": "63310", - "codeCommune": "63030", - "libelleAcheminement": "BAS ET LEZAT", - "nomCommune": "BAS ET LEZAT" + "codePostal": "66220", + "codeCommune": "66187", + "libelleAcheminement": "ST PAUL DE FENOUILLET", + "nomCommune": "ST PAUL DE FENOUILLET" }, { - "codePostal": "43270", - "codeCommune": "43003", - "libelleAcheminement": "ALLEGRE", - "nomCommune": "ALLEGRE" + "codePostal": "56250", + "codeCommune": "56231", + "libelleAcheminement": "ST NOLFF", + "nomCommune": "ST NOLFF" }, { - "codePostal": "36120", - "codeCommune": "36019", - "libelleAcheminement": "BOMMIERS", - "nomCommune": "BOMMIERS" + "codePostal": "58120", + "codeCommune": "58249", + "libelleAcheminement": "ST LEGER DE FOUGERET", + "nomCommune": "ST LEGER DE FOUGERET" }, { - "codePostal": "05140", - "codeCommune": "05055", - "libelleAcheminement": "LA FAURIE", - "nomCommune": "LA FAURIE" + "codePostal": "67270", + "codeCommune": "67270", + "libelleAcheminement": "LIXHAUSEN", + "nomCommune": "LIXHAUSEN" }, { - "codePostal": "63500", - "codeCommune": "63036", - "libelleAcheminement": "BERGONNE", - "nomCommune": "BERGONNE" + "codePostal": "14710", + "codeCommune": "14107", + "libelleAcheminement": "BRICQUEVILLE", + "nomCommune": "BRICQUEVILLE" }, { - "codePostal": "43700", - "codeCommune": "43010", - "libelleAcheminement": "ARSAC EN VELAY", - "nomCommune": "ARSAC EN VELAY" + "codePostal": "66210", + "codeCommune": "66192", + "libelleAcheminement": "SAUTO", + "nomCommune": "SAUTO" }, { - "codePostal": "36400", - "codeCommune": "36025", - "libelleAcheminement": "BRIANTES", - "nomCommune": "BRIANTES" + "codePostal": "56510", + "codeCommune": "56234", + "libelleAcheminement": "ST PIERRE QUIBERON", + "nomCommune": "ST PIERRE QUIBERON" }, { - "codePostal": "05000", - "codeCommune": "05061", - "libelleAcheminement": "GAP", - "nomCommune": "GAP" + "codePostal": "58200", + "codeCommune": "58261", + "libelleAcheminement": "ST PERE", + "nomCommune": "ST PERE" }, { - "codePostal": "63440", - "codeCommune": "63043", - "libelleAcheminement": "BLOT L EGLISE", - "nomCommune": "BLOT L EGLISE" + "codePostal": "67440", + "codeCommune": "67272", + "libelleAcheminement": "LOCHWILLER", + "nomCommune": "LOCHWILLER" }, { - "codePostal": "43110", - "codeCommune": "43012", - "libelleAcheminement": "AUREC SUR LOIRE", - "nomCommune": "AUREC SUR LOIRE" + "codePostal": "14490", + "codeCommune": "14121", + "libelleAcheminement": "CAHAGNOLLES", + "nomCommune": "CAHAGNOLLES" }, { - "codePostal": "36400", - "codeCommune": "36043", - "libelleAcheminement": "CHASSIGNOLLES", - "nomCommune": "CHASSIGNOLLES" + "codePostal": "66730", + "codeCommune": "66198", + "libelleAcheminement": "SOURNIA", + "nomCommune": "SOURNIA" }, { - "codePostal": "05800", - "codeCommune": "05064", - "libelleAcheminement": "LA CHAPELLE EN VALGAUDEMAR", - "nomCommune": "LA CHAPELLE EN VALGAUDEMAR" + "codePostal": "56540", + "codeCommune": "56238", + "libelleAcheminement": "ST TUGDUAL", + "nomCommune": "ST TUGDUAL" }, { - "codePostal": "63270", - "codeCommune": "63059", - "libelleAcheminement": "BUSSEOL", - "nomCommune": "BUSSEOL" + "codePostal": "58190", + "codeCommune": "58284", + "libelleAcheminement": "TALON", + "nomCommune": "TALON" }, { - "codePostal": "43300", - "codeCommune": "43013", - "libelleAcheminement": "VISSAC AUTEYRAC", - "nomCommune": "VISSAC AUTEYRAC" + "codePostal": "67430", + "codeCommune": "67274", + "libelleAcheminement": "LORENTZEN", + "nomCommune": "LORENTZEN" }, { - "codePostal": "36800", - "codeCommune": "36051", - "libelleAcheminement": "CHITRAY", - "nomCommune": "CHITRAY" + "codePostal": "14610", + "codeCommune": "14123", + "libelleAcheminement": "CAIRON", + "nomCommune": "CAIRON" }, { - "codePostal": "05600", - "codeCommune": "05065", - "libelleAcheminement": "GUILLESTRE", - "nomCommune": "GUILLESTRE" + "codePostal": "66300", + "codeCommune": "66207", + "libelleAcheminement": "TERRATS", + "nomCommune": "TERRATS" }, { - "codePostal": "63330", - "codeCommune": "63060", - "libelleAcheminement": "BUSSIERES", - "nomCommune": "BUSSIERES" + "codePostal": "56480", + "codeCommune": "56245", + "libelleAcheminement": "SILFIAC", + "nomCommune": "SILFIAC" }, { - "codePostal": "43390", - "codeCommune": "43017", - "libelleAcheminement": "AZERAT", - "nomCommune": "AZERAT" + "codePostal": "58170", + "codeCommune": "58287", + "libelleAcheminement": "TAZILLY", + "nomCommune": "TAZILLY" }, { - "codePostal": "36100", - "codeCommune": "36052", - "libelleAcheminement": "CHOUDAY", - "nomCommune": "CHOUDAY" + "codePostal": "67220", + "codeCommune": "67280", + "libelleAcheminement": "MAISONSGOUTTE", + "nomCommune": "MAISONSGOUTTE" }, { - "codePostal": "05300", - "codeCommune": "05073", - "libelleAcheminement": "LAZER", - "nomCommune": "LAZER" + "codePostal": "14340", + "codeCommune": "14126", + "libelleAcheminement": "CAMBREMER", + "nomCommune": "CAMBREMER" }, { - "codePostal": "63118", - "codeCommune": "63063", - "libelleAcheminement": "CEBAZAT", - "nomCommune": "CEBAZAT" + "codePostal": "66350", + "codeCommune": "66213", + "libelleAcheminement": "TOULOUGES", + "nomCommune": "TOULOUGES" }, { - "codePostal": "43370", - "codeCommune": "43018", - "libelleAcheminement": "BAINS", - "nomCommune": "BAINS" + "codePostal": "56130", + "codeCommune": "56250", + "libelleAcheminement": "THEHILLAC", + "nomCommune": "THEHILLAC" }, { - "codePostal": "36700", - "codeCommune": "36054", - "libelleAcheminement": "CLERE DU BOIS", - "nomCommune": "CLERE DU BOIS" + "codePostal": "58250", + "codeCommune": "58290", + "libelleAcheminement": "THAIX", + "nomCommune": "THAIX" }, { - "codePostal": "05350", - "codeCommune": "05077", - "libelleAcheminement": "MOLINES EN QUEYRAS", - "nomCommune": "MOLINES EN QUEYRAS" + "codePostal": "67250", + "codeCommune": "67288", + "libelleAcheminement": "MEMMELSHOFFEN", + "nomCommune": "MEMMELSHOFFEN" }, { - "codePostal": "63250", - "codeCommune": "63066", - "libelleAcheminement": "CELLES SUR DUROLLE", - "nomCommune": "CELLES SUR DUROLLE" + "codePostal": "14500", + "codeCommune": "14127", + "libelleAcheminement": "CAMPAGNOLLES", + "nomCommune": "CAMPAGNOLLES" }, { - "codePostal": "43200", - "codeCommune": "43024", - "libelleAcheminement": "BEAUX", - "nomCommune": "BEAUX" + "codePostal": "66320", + "codeCommune": "66221", + "libelleAcheminement": "VALMANYA", + "nomCommune": "VALMANYA" }, { - "codePostal": "36700", - "codeCommune": "36055", - "libelleAcheminement": "CLION", - "nomCommune": "CLION" + "codePostal": "56250", + "codeCommune": "56254", + "libelleAcheminement": "TREDION", + "nomCommune": "TREDION" }, { - "codePostal": "05700", - "codeCommune": "05081", - "libelleAcheminement": "MONTCLUS", - "nomCommune": "MONTCLUS" + "codePostal": "58400", + "codeCommune": "58302", + "libelleAcheminement": "VARENNES LES NARCY", + "nomCommune": "VARENNES LES NARCY" }, { - "codePostal": "63122", - "codeCommune": "63070", - "libelleAcheminement": "CEYRAT", - "nomCommune": "CEYRAT" + "codePostal": "67250", + "codeCommune": "67290", + "libelleAcheminement": "MERKWILLER PECHELBRONN", + "nomCommune": "MERKWILLER PECHELBRONN" }, { - "codePostal": "43350", - "codeCommune": "43026", - "libelleAcheminement": "BELLEVUE LA MONTAGNE", - "nomCommune": "BELLEVUE LA MONTAGNE" + "codePostal": "14800", + "codeCommune": "14131", + "libelleAcheminement": "CANAPVILLE", + "nomCommune": "CANAPVILLE" }, { - "codePostal": "36130", - "codeCommune": "36057", - "libelleAcheminement": "COINGS", - "nomCommune": "COINGS" + "codePostal": "66500", + "codeCommune": "66223", + "libelleAcheminement": "VILLEFRANCHE DE CONFLENT", + "nomCommune": "VILLEFRANCHE DE CONFLENT" }, { - "codePostal": "05230", - "codeCommune": "05084", - "libelleAcheminement": "MONTGARDIN", - "nomCommune": "MONTGARDIN" + "codePostal": "56000", + "codeCommune": "56260", + "libelleAcheminement": "VANNES", + "nomCommune": "VANNES" }, { - "codePostal": "63600", - "codeCommune": "63081", - "libelleAcheminement": "CHAMPETIERES", - "nomCommune": "CHAMPETIERES" + "codePostal": "58300", + "codeCommune": "58306", + "libelleAcheminement": "VERNEUIL", + "nomCommune": "VERNEUIL" }, { - "codePostal": "43170", - "codeCommune": "43029", - "libelleAcheminement": "LA BESSEYRE ST MARY", - "nomCommune": "LA BESSEYRE ST MARY" + "codePostal": "67580", + "codeCommune": "67292", + "libelleAcheminement": "MIETESHEIM", + "nomCommune": "MIETESHEIM" }, { - "codePostal": "36140", - "codeCommune": "36061", - "libelleAcheminement": "CROZON SUR VAUVRE", - "nomCommune": "CROZON SUR VAUVRE" + "codePostal": "14230", + "codeCommune": "14132", + "libelleAcheminement": "CANCHY", + "nomCommune": "CANCHY" }, { - "codePostal": "05100", - "codeCommune": "05085", - "libelleAcheminement": "MONTGENEVRE", - "nomCommune": "MONTGENEVRE" + "codePostal": "66320", + "codeCommune": "66230", + "libelleAcheminement": "VINCA", + "nomCommune": "VINCA" }, { - "codePostal": "63440", - "codeCommune": "63082", - "libelleAcheminement": "CHAMPS", - "nomCommune": "CHAMPS" + "codePostal": "56250", + "codeCommune": "56261", + "libelleAcheminement": "LA VRAIE CROIX", + "nomCommune": "LA VRAIE CROIX" }, { - "codePostal": "43500", - "codeCommune": "43034", - "libelleAcheminement": "BOISSET", - "nomCommune": "BOISSET" + "codePostal": "58190", + "codeCommune": "58308", + "libelleAcheminement": "VIGNOL", + "nomCommune": "VIGNOL" }, { - "codePostal": "36130", - "codeCommune": "36063", - "libelleAcheminement": "DEOLS", - "nomCommune": "DEOLS" + "codePostal": "67270", + "codeCommune": "67293", + "libelleAcheminement": "MINVERSHEIM", + "nomCommune": "MINVERSHEIM" }, { - "codePostal": "05170", - "codeCommune": "05096", - "libelleAcheminement": "ORCIERES", - "nomCommune": "ORCIERES" + "codePostal": "14140", + "codeCommune": "14141", + "libelleAcheminement": "CASTILLON EN AUGE", + "nomCommune": "CASTILLON EN AUGE" }, { - "codePostal": "63230", - "codeCommune": "63085", - "libelleAcheminement": "CHAPDES BEAUFORT", - "nomCommune": "CHAPDES BEAUFORT" + "codePostal": "66600", + "codeCommune": "66231", + "libelleAcheminement": "VINGRAU", + "nomCommune": "VINGRAU" }, { - "codePostal": "43360", - "codeCommune": "43038", - "libelleAcheminement": "BOURNONCLE ST PIERRE", - "nomCommune": "BOURNONCLE ST PIERRE" + "codePostal": "57515", + "codeCommune": "57013", + "libelleAcheminement": "ALSTING", + "nomCommune": "ALSTING" }, { - "codePostal": "36160", - "codeCommune": "36073", - "libelleAcheminement": "FEUSINES", - "nomCommune": "FEUSINES" + "codePostal": "58500", + "codeCommune": "58312", + "libelleAcheminement": "VILLIERS SUR YONNE", + "nomCommune": "VILLIERS SUR YONNE" }, { - "codePostal": "05290", - "codeCommune": "05101", - "libelleAcheminement": "VALLOUISE PELVOUX", - "nomCommune": "VALLOUISE PELVOUX" + "codePostal": "67170", + "codeCommune": "67298", + "libelleAcheminement": "MITTELSCHAEFFOLSHEIM", + "nomCommune": "MITTELSCHAEFFOLSHEIM" }, { - "codePostal": "63590", - "codeCommune": "63086", - "libelleAcheminement": "LA CHAPELLE AGNON", - "nomCommune": "LA CHAPELLE AGNON" + "codePostal": "14190", + "codeCommune": "14145", + "libelleAcheminement": "CAUVICOURT", + "nomCommune": "CAUVICOURT" }, { - "codePostal": "43510", - "codeCommune": "43042", - "libelleAcheminement": "CAYRES", - "nomCommune": "CAYRES" + "codePostal": "67220", + "codeCommune": "67003", + "libelleAcheminement": "ALBE", + "nomCommune": "ALBE" }, { - "codePostal": "36220", - "codeCommune": "36076", - "libelleAcheminement": "FONTGOMBAULT", - "nomCommune": "FONTGOMBAULT" + "codePostal": "57320", + "codeCommune": "57016", + "libelleAcheminement": "ALZING", + "nomCommune": "ALZING" }, { - "codePostal": "05000", - "codeCommune": "05113", - "libelleAcheminement": "RAMBAUD", - "nomCommune": "RAMBAUD" + "codePostal": "58420", + "codeCommune": "58313", + "libelleAcheminement": "VITRY LACHE", + "nomCommune": "VITRY LACHE" }, { - "codePostal": "63390", - "codeCommune": "63100", - "libelleAcheminement": "CHATEAUNEUF LES BAINS", - "nomCommune": "CHATEAUNEUF LES BAINS" + "codePostal": "67670", + "codeCommune": "67301", + "libelleAcheminement": "MOMMENHEIM", + "nomCommune": "MOMMENHEIM" }, { - "codePostal": "43700", - "codeCommune": "43061", - "libelleAcheminement": "CHASPINHAC", - "nomCommune": "CHASPINHAC" + "codePostal": "14290", + "codeCommune": "14147", + "libelleAcheminement": "CERNAY", + "nomCommune": "CERNAY" }, { - "codePostal": "36110", - "codeCommune": "36093", - "libelleAcheminement": "LEVROUX", - "nomCommune": "LEVROUX" + "codePostal": "67490", + "codeCommune": "67006", + "libelleAcheminement": "ALTENHEIM", + "nomCommune": "ALTENHEIM" }, { - "codePostal": "05160", - "codeCommune": "05114", - "libelleAcheminement": "REALLON", - "nomCommune": "REALLON" + "codePostal": "57865", + "codeCommune": "57017", + "libelleAcheminement": "AMANVILLERS", + "nomCommune": "AMANVILLERS" }, { - "codePostal": "63000", - "codeCommune": "63113", - "libelleAcheminement": "CLERMONT FERRAND", - "nomCommune": "CLERMONT FERRAND" + "codePostal": "59268", + "codeCommune": "59001", + "libelleAcheminement": "ABANCOURT", + "nomCommune": "ABANCOURT" }, { - "codePostal": "43230", - "codeCommune": "43067", - "libelleAcheminement": "CHAVANIAC LAFAYETTE", - "nomCommune": "CHAVANIAC LAFAYETTE" + "codePostal": "67350", + "codeCommune": "67304", + "libelleAcheminement": "MORSCHWILLER", + "nomCommune": "MORSCHWILLER" }, { - "codePostal": "36220", - "codeCommune": "36096", - "libelleAcheminement": "LINGE", - "nomCommune": "LINGE" + "codePostal": "14220", + "codeCommune": "14150", + "libelleAcheminement": "CESNY LES SOURCES", + "nomCommune": "CESNY LES SOURCES" }, { - "codePostal": "05190", - "codeCommune": "05115", - "libelleAcheminement": "REMOLLON", - "nomCommune": "REMOLLON" + "codePostal": "67260", + "codeCommune": "67009", + "libelleAcheminement": "ALTWILLER", + "nomCommune": "ALTWILLER" }, { - "codePostal": "63460", - "codeCommune": "63116", - "libelleAcheminement": "COMBRONDE", - "nomCommune": "COMBRONDE" + "codePostal": "57130", + "codeCommune": "57021", + "libelleAcheminement": "ANCY DORNOT", + "nomCommune": "ANCY DORNOT" }, { - "codePostal": "43160", - "codeCommune": "43073", - "libelleAcheminement": "CISTRIERES", - "nomCommune": "CISTRIERES" + "codePostal": "59410", + "codeCommune": "59014", + "libelleAcheminement": "ANZIN", + "nomCommune": "ANZIN" }, { - "codePostal": "36140", - "codeCommune": "36099", - "libelleAcheminement": "LOURDOUEIX ST MICHEL", - "nomCommune": "LOURDOUEIX ST MICHEL" + "codePostal": "67470", + "codeCommune": "67308", + "libelleAcheminement": "MUNCHHAUSEN", + "nomCommune": "MUNCHHAUSEN" }, { - "codePostal": "05310", - "codeCommune": "05122", - "libelleAcheminement": "LA ROCHE DE RAME", - "nomCommune": "LA ROCHE DE RAME" + "codePostal": "14520", + "codeCommune": "14172", + "libelleAcheminement": "COMMES", + "nomCommune": "COMMES" }, { - "codePostal": "63490", - "codeCommune": "63119", - "libelleAcheminement": "CONDAT LES MONTBOISSIER", - "nomCommune": "CONDAT LES MONTBOISSIER" + "codePostal": "67120", + "codeCommune": "67016", + "libelleAcheminement": "AVOLSHEIM", + "nomCommune": "AVOLSHEIM" }, { - "codePostal": "43700", - "codeCommune": "43078", - "libelleAcheminement": "COUBON", - "nomCommune": "COUBON" + "codePostal": "57380", + "codeCommune": "57027", + "libelleAcheminement": "ARRAINCOURT", + "nomCommune": "ARRAINCOURT" }, { - "codePostal": "36350", - "codeCommune": "36101", - "libelleAcheminement": "LUANT", - "nomCommune": "LUANT" + "codePostal": "59280", + "codeCommune": "59017", + "libelleAcheminement": "ARMENTIERES", + "nomCommune": "ARMENTIERES" }, { - "codePostal": "05000", - "codeCommune": "05124", - "libelleAcheminement": "LA ROCHETTE", - "nomCommune": "LA ROCHETTE" + "codePostal": "67630", + "codeCommune": "67315", + "libelleAcheminement": "NEEWILLER PRES LAUTERBOURG", + "nomCommune": "NEEWILLER PRES LAUTERBOURG" }, { - "codePostal": "63120", - "codeCommune": "63125", - "libelleAcheminement": "COURPIERE", - "nomCommune": "COURPIERE" + "codePostal": "14770", + "codeCommune": "14174", + "libelleAcheminement": "CONDE EN NORMANDIE", + "nomCommune": "CONDE EN NORMANDIE" }, { - "codePostal": "43500", - "codeCommune": "43080", - "libelleAcheminement": "CRAPONNE SUR ARZON", - "nomCommune": "CRAPONNE SUR ARZON" + "codePostal": "67210", + "codeCommune": "67031", + "libelleAcheminement": "BERNARDSWILLER", + "nomCommune": "BERNARDSWILLER" }, { - "codePostal": "36360", - "codeCommune": "36103", - "libelleAcheminement": "LUCAY LE MALE", - "nomCommune": "LUCAY LE MALE" + "codePostal": "57790", + "codeCommune": "57034", + "libelleAcheminement": "ASPACH", + "nomCommune": "ASPACH" }, { - "codePostal": "05200", - "codeCommune": "05128", - "libelleAcheminement": "ST ANDRE D EMBRUN", - "nomCommune": "ST ANDRE D EMBRUN" + "codePostal": "59600", + "codeCommune": "59021", + "libelleAcheminement": "ASSEVENT", + "nomCommune": "ASSEVENT" }, { - "codePostal": "63810", - "codeCommune": "63129", - "libelleAcheminement": "CROS", - "nomCommune": "CROS" + "codePostal": "67280", + "codeCommune": "67325", + "libelleAcheminement": "NIEDERHASLACH", + "nomCommune": "NIEDERHASLACH" }, { - "codePostal": "43000", - "codeCommune": "43089", - "libelleAcheminement": "ESPALY ST MARCEL", - "nomCommune": "ESPALY ST MARCEL" + "codePostal": "14400", + "codeCommune": "14175", + "libelleAcheminement": "CONDE SUR SEULLES", + "nomCommune": "CONDE SUR SEULLES" }, { - "codePostal": "36220", - "codeCommune": "36113", - "libelleAcheminement": "MARTIZAY", - "nomCommune": "MARTIZAY" + "codePostal": "67320", + "codeCommune": "67036", + "libelleAcheminement": "BETTWILLER", + "nomCommune": "BETTWILLER" }, { - "codePostal": "05150", - "codeCommune": "05129", - "libelleAcheminement": "ST ANDRE DE ROSANS", - "nomCommune": "ST ANDRE DE ROSANS" + "codePostal": "57260", + "codeCommune": "57035", + "libelleAcheminement": "ASSENONCOURT", + "nomCommune": "ASSENONCOURT" }, { - "codePostal": "63200", - "codeCommune": "63135", - "libelleAcheminement": "DAVAYAT", - "nomCommune": "DAVAYAT" + "codePostal": "59710", + "codeCommune": "59034", + "libelleAcheminement": "AVELIN", + "nomCommune": "AVELIN" }, { - "codePostal": "43150", - "codeCommune": "43091", - "libelleAcheminement": "LES ESTABLES", - "nomCommune": "LES ESTABLES" + "codePostal": "67207", + "codeCommune": "67326", + "libelleAcheminement": "NIEDERHAUSBERGEN", + "nomCommune": "NIEDERHAUSBERGEN" }, { - "codePostal": "36210", - "codeCommune": "36115", - "libelleAcheminement": "MENETOU SUR NAHON", - "nomCommune": "MENETOU SUR NAHON" + "codePostal": "14130", + "codeCommune": "14177", + "libelleAcheminement": "COQUAINVILLIERS", + "nomCommune": "COQUAINVILLIERS" }, { - "codePostal": "05600", - "codeCommune": "05136", - "libelleAcheminement": "ST CREPIN", - "nomCommune": "ST CREPIN" + "codePostal": "67600", + "codeCommune": "67040", + "libelleAcheminement": "BINDERNHEIM", + "nomCommune": "BINDERNHEIM" }, { - "codePostal": "63520", - "codeCommune": "63136", - "libelleAcheminement": "DOMAIZE", - "nomCommune": "DOMAIZE" + "codePostal": "57710", + "codeCommune": "57041", + "libelleAcheminement": "AUMETZ", + "nomCommune": "AUMETZ" }, { - "codePostal": "43150", - "codeCommune": "43097", - "libelleAcheminement": "FREYCENET LA CUCHE", - "nomCommune": "FREYCENET LA CUCHE" + "codePostal": "59266", + "codeCommune": "59049", + "libelleAcheminement": "BANTOUZELLE", + "nomCommune": "BANTOUZELLE" }, { - "codePostal": "36150", - "codeCommune": "36116", - "libelleAcheminement": "MENETREOLS SOUS VATAN", - "nomCommune": "MENETREOLS SOUS VATAN" + "codePostal": "67350", + "codeCommune": "67328", + "libelleAcheminement": "NIEDERMODERN", + "nomCommune": "NIEDERMODERN" }, { - "codePostal": "05250", - "codeCommune": "05139", - "libelleAcheminement": "LE DEVOLUY", - "nomCommune": "LE DEVOLUY" + "codePostal": "14690", + "codeCommune": "14183", + "libelleAcheminement": "COSSESSEVILLE", + "nomCommune": "COSSESSEVILLE" }, { - "codePostal": "63300", - "codeCommune": "63138", - "libelleAcheminement": "DORAT", - "nomCommune": "DORAT" + "codePostal": "67130", + "codeCommune": "67050", + "libelleAcheminement": "BLANCHERUPT", + "nomCommune": "BLANCHERUPT" }, { - "codePostal": "43250", - "codeCommune": "43099", - "libelleAcheminement": "FRUGERES LES MINES", - "nomCommune": "FRUGERES LES MINES" + "codePostal": "57340", + "codeCommune": "57051", + "libelleAcheminement": "BARONVILLE", + "nomCommune": "BARONVILLE" }, { - "codePostal": "36800", - "codeCommune": "36124", - "libelleAcheminement": "MIGNE", - "nomCommune": "MIGNE" + "codePostal": "59440", + "codeCommune": "59050", + "libelleAcheminement": "BAS LIEU", + "nomCommune": "BAS LIEU" }, { - "codePostal": "05250", - "codeCommune": "05139", - "libelleAcheminement": "LE DEVOLUY", - "nomCommune": "LE DEVOLUY" + "codePostal": "67330", + "codeCommune": "67333", + "libelleAcheminement": "NIEDERSOULTZBACH", + "nomCommune": "NIEDERSOULTZBACH" }, { - "codePostal": "63220", - "codeCommune": "63139", - "libelleAcheminement": "DORE L EGLISE", - "nomCommune": "DORE L EGLISE" + "codePostal": "14260", + "codeCommune": "14195", + "libelleAcheminement": "COURVAUDON", + "nomCommune": "COURVAUDON" }, { - "codePostal": "43200", - "codeCommune": "43102", - "libelleAcheminement": "GRAZAC", - "nomCommune": "GRAZAC" + "codePostal": "67530", + "codeCommune": "67052", + "libelleAcheminement": "BOERSCH", + "nomCommune": "BOERSCH" }, { - "codePostal": "36400", - "codeCommune": "36130", - "libelleAcheminement": "MONTLEVICQ", - "nomCommune": "MONTLEVICQ" + "codePostal": "57580", + "codeCommune": "57054", + "libelleAcheminement": "BAUDRECOURT", + "nomCommune": "BAUDRECOURT" }, { - "codePostal": "05130", - "codeCommune": "05140", - "libelleAcheminement": "ST ETIENNE LE LAUS", - "nomCommune": "ST ETIENNE LE LAUS" + "codePostal": "59134", + "codeCommune": "59056", + "libelleAcheminement": "BEAUCAMPS LIGNY", + "nomCommune": "BEAUCAMPS LIGNY" }, { - "codePostal": "63700", - "codeCommune": "63140", - "libelleAcheminement": "DURMIGNAT", - "nomCommune": "DURMIGNAT" + "codePostal": "67510", + "codeCommune": "67334", + "libelleAcheminement": "NIEDERSTEINBACH", + "nomCommune": "NIEDERSTEINBACH" }, { - "codePostal": "43450", - "codeCommune": "43103", - "libelleAcheminement": "GRENIER MONTGON", - "nomCommune": "GRENIER MONTGON" + "codePostal": "14480", + "codeCommune": "14196", + "libelleAcheminement": "CREPON", + "nomCommune": "CREPON" }, { - "codePostal": "36800", - "codeCommune": "36144", - "libelleAcheminement": "NURET LE FERRON", - "nomCommune": "NURET LE FERRON" + "codePostal": "67330", + "codeCommune": "67057", + "libelleAcheminement": "BOSSELSHAUSEN", + "nomCommune": "BOSSELSHAUSEN" }, { - "codePostal": "05800", - "codeCommune": "05144", - "libelleAcheminement": "ST JACQUES EN VALGODEMARD", - "nomCommune": "ST JACQUES EN VALGODEMARD" + "codePostal": "57660", + "codeCommune": "57082", + "libelleAcheminement": "BIDING", + "nomCommune": "BIDING" }, { - "codePostal": "63490", - "codeCommune": "63145", - "libelleAcheminement": "EGLISENEUVE DES LIARDS", - "nomCommune": "EGLISENEUVE DES LIARDS" + "codePostal": "59330", + "codeCommune": "59058", + "libelleAcheminement": "BEAUFORT", + "nomCommune": "BEAUFORT" }, { - "codePostal": "43170", - "codeCommune": "43104", - "libelleAcheminement": "GREZES", - "nomCommune": "GREZES" + "codePostal": "67520", + "codeCommune": "67335", + "libelleAcheminement": "NORDHEIM", + "nomCommune": "NORDHEIM" }, { - "codePostal": "36330", - "codeCommune": "36159", - "libelleAcheminement": "LE POINCONNET", - "nomCommune": "LE POINCONNET" + "codePostal": "14430", + "codeCommune": "14198", + "libelleAcheminement": "CRESSEVEUILLE", + "nomCommune": "CRESSEVEUILLE" }, { - "codePostal": "05500", - "codeCommune": "05148", - "libelleAcheminement": "ST LAURENT DU CROS", - "nomCommune": "ST LAURENT DU CROS" + "codePostal": "67330", + "codeCommune": "67061", + "libelleAcheminement": "BOUXWILLER", + "nomCommune": "BOUXWILLER" }, { - "codePostal": "63160", - "codeCommune": "63146", - "libelleAcheminement": "EGLISENEUVE PRES BILLOM", - "nomCommune": "EGLISENEUVE PRES BILLOM" + "codePostal": "57220", + "codeCommune": "57085", + "libelleAcheminement": "BIONVILLE SUR NIED", + "nomCommune": "BIONVILLE SUR NIED" }, { - "codePostal": "43230", - "codeCommune": "43106", - "libelleAcheminement": "JAX", - "nomCommune": "JAX" + "codePostal": "59570", + "codeCommune": "59065", + "libelleAcheminement": "BELLIGNIES", + "nomCommune": "BELLIGNIES" }, { - "codePostal": "36800", - "codeCommune": "36161", - "libelleAcheminement": "LE PONT CHRETIEN CHABENET", - "nomCommune": "LE PONT CHRETIEN CHABENET" + "codePostal": "67230", + "codeCommune": "67338", + "libelleAcheminement": "OBENHEIM", + "nomCommune": "OBENHEIM" }, { - "codePostal": "05800", - "codeCommune": "05152", - "libelleAcheminement": "ST MAURICE EN VALGODEMARD", - "nomCommune": "ST MAURICE EN VALGODEMARD" + "codePostal": "14480", + "codeCommune": "14200", + "libelleAcheminement": "CREULLY SUR SEULLES", + "nomCommune": "CREULLY SUR SEULLES" }, { - "codePostal": "63720", - "codeCommune": "63149", - "libelleAcheminement": "ENTRAIGUES", - "nomCommune": "ENTRAIGUES" + "codePostal": "67330", + "codeCommune": "67061", + "libelleAcheminement": "BOUXWILLER", + "nomCommune": "BOUXWILLER" }, { - "codePostal": "43230", - "codeCommune": "43107", - "libelleAcheminement": "JOSAT", - "nomCommune": "JOSAT" + "codePostal": "57930", + "codeCommune": "57086", + "libelleAcheminement": "BELLES FORETS", + "nomCommune": "BELLES FORETS" }, { - "codePostal": "36210", - "codeCommune": "36162", - "libelleAcheminement": "POULAINES", - "nomCommune": "POULAINES" + "codePostal": "59980", + "codeCommune": "59074", + "libelleAcheminement": "BERTRY", + "nomCommune": "BERTRY" }, { - "codePostal": "05300", - "codeCommune": "05155", - "libelleAcheminement": "ST PIERRE AVEZ", - "nomCommune": "ST PIERRE AVEZ" + "codePostal": "67660", + "codeCommune": "67339", + "libelleAcheminement": "BETSCHDORF", + "nomCommune": "BETSCHDORF" }, { - "codePostal": "63530", - "codeCommune": "63150", - "libelleAcheminement": "ENVAL", - "nomCommune": "ENVAL" + "codePostal": "14430", + "codeCommune": "14203", + "libelleAcheminement": "CRICQUEVILLE EN AUGE", + "nomCommune": "CRICQUEVILLE EN AUGE" }, { - "codePostal": "43490", - "codeCommune": "43109", - "libelleAcheminement": "LAFARRE", - "nomCommune": "LAFARRE" + "codePostal": "67112", + "codeCommune": "67065", + "libelleAcheminement": "BREUSCHWICKERSHEIM", + "nomCommune": "BREUSCHWICKERSHEIM" }, { - "codePostal": "36120", - "codeCommune": "36169", - "libelleAcheminement": "PRUNIERS", - "nomCommune": "PRUNIERS" + "codePostal": "57655", + "codeCommune": "57096", + "libelleAcheminement": "BOULANGE", + "nomCommune": "BOULANGE" }, { - "codePostal": "05110", - "codeCommune": "05162", - "libelleAcheminement": "LA SAULCE", - "nomCommune": "LA SAULCE" + "codePostal": "59600", + "codeCommune": "59076", + "libelleAcheminement": "BETTIGNIES", + "nomCommune": "BETTIGNIES" }, { - "codePostal": "63390", - "codeCommune": "63152", - "libelleAcheminement": "ESPINASSE", - "nomCommune": "ESPINASSE" + "codePostal": "67240", + "codeCommune": "67345", + "libelleAcheminement": "OBERHOFFEN SUR MODER", + "nomCommune": "OBERHOFFEN SUR MODER" }, { - "codePostal": "43100", - "codeCommune": "43110", - "libelleAcheminement": "LAMOTHE", - "nomCommune": "LAMOTHE" + "codePostal": "14430", + "codeCommune": "14218", + "libelleAcheminement": "DANESTAL", + "nomCommune": "DANESTAL" }, { - "codePostal": "36150", - "codeCommune": "36170", - "libelleAcheminement": "REBOURSIN", - "nomCommune": "REBOURSIN" + "codePostal": "67320", + "codeCommune": "67071", + "libelleAcheminement": "BUST", + "nomCommune": "BUST" }, { - "codePostal": "05100", - "codeCommune": "05174", - "libelleAcheminement": "VAL DES PRES", - "nomCommune": "VAL DES PRES" + "codePostal": "57810", + "codeCommune": "57099", + "libelleAcheminement": "BOURDONNAY", + "nomCommune": "BOURDONNAY" }, { - "codePostal": "63980", - "codeCommune": "63162", - "libelleAcheminement": "FOURNOLS", - "nomCommune": "FOURNOLS" + "codePostal": "59173", + "codeCommune": "59084", + "libelleAcheminement": "BLARINGHEM", + "nomCommune": "BLARINGHEM" }, { - "codePostal": "43150", - "codeCommune": "43115", - "libelleAcheminement": "LAUSSONNE", - "nomCommune": "LAUSSONNE" + "codePostal": "67330", + "codeCommune": "67347", + "libelleAcheminement": "OBERMODERN ZUTZENDORF", + "nomCommune": "OBERMODERN ZUTZENDORF" }, { - "codePostal": "36260", - "codeCommune": "36171", - "libelleAcheminement": "REUILLY", - "nomCommune": "REUILLY" + "codePostal": "14160", + "codeCommune": "14225", + "libelleAcheminement": "DIVES SUR MER", + "nomCommune": "DIVES SUR MER" }, { - "codePostal": "05560", - "codeCommune": "05177", - "libelleAcheminement": "VARS", - "nomCommune": "VARS" + "codePostal": "67730", + "codeCommune": "67073", + "libelleAcheminement": "CHATENOIS", + "nomCommune": "CHATENOIS" }, { - "codePostal": "63200", - "codeCommune": "63167", - "libelleAcheminement": "GIMEAUX", - "nomCommune": "GIMEAUX" + "codePostal": "57310", + "codeCommune": "57102", + "libelleAcheminement": "BOUSSE", + "nomCommune": "BOUSSE" }, { - "codePostal": "43100", - "codeCommune": "43125", - "libelleAcheminement": "LUBILHAC", - "nomCommune": "LUBILHAC" + "codePostal": "59178", + "codeCommune": "59100", + "libelleAcheminement": "BOUSIGNIES", + "nomCommune": "BOUSIGNIES" }, { - "codePostal": "36170", - "codeCommune": "36174", - "libelleAcheminement": "ROUSSINES", - "nomCommune": "ROUSSINES" + "codePostal": "67330", + "codeCommune": "67347", + "libelleAcheminement": "OBERMODERN ZUTZENDORF", + "nomCommune": "OBERMODERN ZUTZENDORF" }, { - "codePostal": "05480", - "codeCommune": "05181", - "libelleAcheminement": "VILLAR D ARENE", - "nomCommune": "VILLAR D ARENE" + "codePostal": "14340", + "codeCommune": "14231", + "libelleAcheminement": "BEAUFOUR DRUVAL", + "nomCommune": "BEAUFOUR DRUVAL" }, { - "codePostal": "63470", - "codeCommune": "63175", - "libelleAcheminement": "HERMENT", - "nomCommune": "HERMENT" + "codePostal": "67160", + "codeCommune": "67074", + "libelleAcheminement": "CLEEBOURG", + "nomCommune": "CLEEBOURG" }, { - "codePostal": "43800", - "codeCommune": "43126", - "libelleAcheminement": "MALREVERS", - "nomCommune": "MALREVERS" + "codePostal": "57570", + "codeCommune": "57104", + "libelleAcheminement": "BOUST", + "nomCommune": "BOUST" }, { - "codePostal": "36110", - "codeCommune": "36175", - "libelleAcheminement": "ROUVRES LES BOIS", - "nomCommune": "ROUVRES LES BOIS" + "codePostal": "59490", + "codeCommune": "59113", + "libelleAcheminement": "BRUILLE LEZ MARCHIENNES", + "nomCommune": "BRUILLE LEZ MARCHIENNES" }, { - "codePostal": "05800", - "codeCommune": "05182", - "libelleAcheminement": "VILLAR LOUBIERE", - "nomCommune": "VILLAR LOUBIERE" + "codePostal": "67330", + "codeCommune": "67352", + "libelleAcheminement": "OBERSOULTZBACH", + "nomCommune": "OBERSOULTZBACH" }, { - "codePostal": "63270", - "codeCommune": "63177", - "libelleAcheminement": "ISSERTEAUX", - "nomCommune": "ISSERTEAUX" + "codePostal": "14340", + "codeCommune": "14231", + "libelleAcheminement": "BEAUFOUR DRUVAL", + "nomCommune": "BEAUFOUR DRUVAL" }, { - "codePostal": "43230", - "codeCommune": "43131", - "libelleAcheminement": "MAZERAT AUROUZE", - "nomCommune": "MAZERAT AUROUZE" + "codePostal": "67470", + "codeCommune": "67079", + "libelleAcheminement": "CROETTWILLER", + "nomCommune": "CROETTWILLER" }, { - "codePostal": "36120", - "codeCommune": "36180", - "libelleAcheminement": "ST AOUT", - "nomCommune": "ST AOUT" + "codePostal": "57380", + "codeCommune": "57105", + "libelleAcheminement": "BOUSTROFF", + "nomCommune": "BOUSTROFF" }, { - "codePostal": "06910", - "codeCommune": "06002", - "libelleAcheminement": "AMIRAT", - "nomCommune": "AMIRAT" + "codePostal": "59400", + "codeCommune": "59122", + "libelleAcheminement": "CAMBRAI", + "nomCommune": "CAMBRAI" }, { - "codePostal": "63690", - "codeCommune": "63183", - "libelleAcheminement": "LABESSETTE", - "nomCommune": "LABESSETTE" + "codePostal": "67340", + "codeCommune": "67358", + "libelleAcheminement": "OFFWILLER", + "nomCommune": "OFFWILLER" }, { - "codePostal": "43800", - "codeCommune": "43134", - "libelleAcheminement": "MEZERES", - "nomCommune": "MEZERES" + "codePostal": "14630", + "codeCommune": "14237", + "libelleAcheminement": "EMIEVILLE", + "nomCommune": "EMIEVILLE" }, { - "codePostal": "36100", - "codeCommune": "36181", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "67150", + "codeCommune": "67086", + "libelleAcheminement": "DAUBENSAND", + "nomCommune": "DAUBENSAND" }, { - "codePostal": "06790", - "codeCommune": "06006", - "libelleAcheminement": "ASPREMONT", - "nomCommune": "ASPREMONT" + "codePostal": "57320", + "codeCommune": "57110", + "libelleAcheminement": "BRETTNACH", + "nomCommune": "BRETTNACH" }, { - "codePostal": "63270", - "codeCommune": "63188", - "libelleAcheminement": "LAPS", - "nomCommune": "LAPS" + "codePostal": "59112", + "codeCommune": "59133", + "libelleAcheminement": "CARNIN", + "nomCommune": "CARNIN" }, { - "codePostal": "43100", - "codeCommune": "43147", - "libelleAcheminement": "PAULHAC", - "nomCommune": "PAULHAC" + "codePostal": "67170", + "codeCommune": "67359", + "libelleAcheminement": "OHLUNGEN", + "nomCommune": "OHLUNGEN" }, { - "codePostal": "36400", - "codeCommune": "36184", - "libelleAcheminement": "ST CHARTIER", - "nomCommune": "ST CHARTIER" + "codePostal": "14310", + "codeCommune": "14241", + "libelleAcheminement": "EPINAY SUR ODON", + "nomCommune": "EPINAY SUR ODON" }, { - "codePostal": "06810", - "codeCommune": "06007", - "libelleAcheminement": "AURIBEAU SUR SIAGNE", - "nomCommune": "AURIBEAU SUR SIAGNE" + "codePostal": "67430", + "codeCommune": "67088", + "libelleAcheminement": "DEHLINGEN", + "nomCommune": "DEHLINGEN" }, { - "codePostal": "63690", - "codeCommune": "63190", - "libelleAcheminement": "LARODDE", - "nomCommune": "LARODDE" + "codePostal": "57535", + "codeCommune": "57111", + "libelleAcheminement": "BRONVAUX", + "nomCommune": "BRONVAUX" }, { - "codePostal": "43230", - "codeCommune": "43148", - "libelleAcheminement": "PAULHAGUET", - "nomCommune": "PAULHAGUET" + "codePostal": "59244", + "codeCommune": "59134", + "libelleAcheminement": "CARTIGNIES", + "nomCommune": "CARTIGNIES" }, { - "codePostal": "36170", - "codeCommune": "36187", - "libelleAcheminement": "ST CIVRAN", - "nomCommune": "ST CIVRAN" + "codePostal": "67590", + "codeCommune": "67359", + "libelleAcheminement": "OHLUNGEN", + "nomCommune": "OHLUNGEN" }, { - "codePostal": "06310", - "codeCommune": "06011", - "libelleAcheminement": "BEAULIEU SUR MER", - "nomCommune": "BEAULIEU SUR MER" + "codePostal": "14220", + "codeCommune": "14251", + "libelleAcheminement": "ESSON", + "nomCommune": "ESSON" }, { - "codePostal": "63680", - "codeCommune": "63192", - "libelleAcheminement": "LA TOUR D AUVERGNE", - "nomCommune": "LA TOUR D AUVERGNE" + "codePostal": "67360", + "codeCommune": "67093", + "libelleAcheminement": "DIEFFENBACH LES WOERTH", + "nomCommune": "DIEFFENBACH LES WOERTH" }, { - "codePostal": "43200", - "codeCommune": "43150", - "libelleAcheminement": "LE PERTUIS", - "nomCommune": "LE PERTUIS" + "codePostal": "57450", + "codeCommune": "57122", + "libelleAcheminement": "CAPPEL", + "nomCommune": "CAPPEL" }, { - "codePostal": "36150", - "codeCommune": "36191", - "libelleAcheminement": "ST FLORENTIN", - "nomCommune": "ST FLORENTIN" + "codePostal": "59540", + "codeCommune": "59139", + "libelleAcheminement": "CAUDRY", + "nomCommune": "CAUDRY" }, { - "codePostal": "06240", - "codeCommune": "06012", - "libelleAcheminement": "BEAUSOLEIL", - "nomCommune": "BEAUSOLEIL" + "codePostal": "67540", + "codeCommune": "67365", + "libelleAcheminement": "OSTWALD", + "nomCommune": "OSTWALD" }, { - "codePostal": "63290", - "codeCommune": "63196", - "libelleAcheminement": "LIMONS", - "nomCommune": "LIMONS" + "codePostal": "14100", + "codeCommune": "14260", + "libelleAcheminement": "FAUGUERNON", + "nomCommune": "FAUGUERNON" }, { - "codePostal": "43330", - "codeCommune": "43153", - "libelleAcheminement": "PONT SALOMON", - "nomCommune": "PONT SALOMON" + "codePostal": "67120", + "codeCommune": "67101", + "libelleAcheminement": "DORLISHEIM", + "nomCommune": "DORLISHEIM" }, { - "codePostal": "36100", - "codeCommune": "36195", - "libelleAcheminement": "ST GEORGES SUR ARNON", - "nomCommune": "ST GEORGES SUR ARNON" + "codePostal": "57170", + "codeCommune": "57132", + "libelleAcheminement": "CHATEAU SALINS", + "nomCommune": "CHATEAU SALINS" }, { - "codePostal": "06510", - "codeCommune": "06017", - "libelleAcheminement": "BEZAUDUN LES ALPES", - "nomCommune": "BEZAUDUN LES ALPES" + "codePostal": "59191", + "codeCommune": "59140", + "libelleAcheminement": "CAULLERY", + "nomCommune": "CAULLERY" }, { - "codePostal": "63410", - "codeCommune": "63198", - "libelleAcheminement": "LOUBEYRAT", - "nomCommune": "LOUBEYRAT" + "codePostal": "67290", + "codeCommune": "67371", + "libelleAcheminement": "LA PETITE PIERRE", + "nomCommune": "LA PETITE PIERRE" }, { - "codePostal": "43000", - "codeCommune": "43157", - "libelleAcheminement": "LE PUY EN VELAY", - "nomCommune": "LE PUY EN VELAY" + "codePostal": "14320", + "codeCommune": "14266", + "libelleAcheminement": "FEUGUEROLLES BULLY", + "nomCommune": "FEUGUEROLLES BULLY" }, { - "codePostal": "36370", - "codeCommune": "36197", - "libelleAcheminement": "ST HILAIRE SUR BENAIZE", - "nomCommune": "ST HILAIRE SUR BENAIZE" + "codePostal": "67117", + "codeCommune": "67102", + "libelleAcheminement": "DOSSENHEIM KOCHERSBERG", + "nomCommune": "DOSSENHEIM KOCHERSBERG" }, { - "codePostal": "06450", - "codeCommune": "06020", - "libelleAcheminement": "LA BOLLENE VESUBIE", - "nomCommune": "LA BOLLENE VESUBIE" + "codePostal": "57160", + "codeCommune": "57134", + "libelleAcheminement": "CHATEL ST GERMAIN", + "nomCommune": "CHATEL ST GERMAIN" }, { - "codePostal": "63320", - "codeCommune": "63199", - "libelleAcheminement": "LUDESSE", - "nomCommune": "LUDESSE" + "codePostal": "59225", + "codeCommune": "59149", + "libelleAcheminement": "CLARY", + "nomCommune": "CLARY" }, { - "codePostal": "43130", - "codeCommune": "43162", - "libelleAcheminement": "RETOURNAC", - "nomCommune": "RETOURNAC" + "codePostal": "67115", + "codeCommune": "67378", + "libelleAcheminement": "PLOBSHEIM", + "nomCommune": "PLOBSHEIM" }, { - "codePostal": "36260", - "codeCommune": "36199", - "libelleAcheminement": "STE LIZAIGNE", - "nomCommune": "STE LIZAIGNE" + "codePostal": "14320", + "codeCommune": "14266", + "libelleAcheminement": "FEUGUEROLLES BULLY", + "nomCommune": "FEUGUEROLLES BULLY" }, { - "codePostal": "06540", - "codeCommune": "06023", - "libelleAcheminement": "BREIL SUR ROYA", - "nomCommune": "BREIL SUR ROYA" + "codePostal": "67390", + "codeCommune": "67121", + "libelleAcheminement": "ELSENHEIM", + "nomCommune": "ELSENHEIM" }, { - "codePostal": "63220", - "codeCommune": "63218", - "libelleAcheminement": "MAYRES", - "nomCommune": "MAYRES" + "codePostal": "57070", + "codeCommune": "57142", + "libelleAcheminement": "CHIEULLES", + "nomCommune": "CHIEULLES" }, { - "codePostal": "43440", - "codeCommune": "43178", - "libelleAcheminement": "ST DIDIER SUR DOULON", - "nomCommune": "ST DIDIER SUR DOULON" + "codePostal": "59552", + "codeCommune": "59156", + "libelleAcheminement": "COURCHELETTES", + "nomCommune": "COURCHELETTES" }, { - "codePostal": "36250", - "codeCommune": "36202", - "libelleAcheminement": "ST MAUR", - "nomCommune": "ST MAUR" + "codePostal": "67430", + "codeCommune": "67385", + "libelleAcheminement": "RATZWILLER", + "nomCommune": "RATZWILLER" }, { - "codePostal": "06850", - "codeCommune": "06024", - "libelleAcheminement": "BRIANCONNET", - "nomCommune": "BRIANCONNET" + "codePostal": "14100", + "codeCommune": "14270", + "libelleAcheminement": "FIRFOL", + "nomCommune": "FIRFOL" }, { - "codePostal": "63420", - "codeCommune": "63220", - "libelleAcheminement": "MAZOIRES", - "nomCommune": "MAZOIRES" + "codePostal": "67710", + "codeCommune": "67122", + "libelleAcheminement": "WANGENBOURG ENGENTHAL", + "nomCommune": "WANGENBOURG ENGENTHAL" }, { - "codePostal": "43260", - "codeCommune": "43181", - "libelleAcheminement": "ST ETIENNE LARDEYROL", - "nomCommune": "ST ETIENNE LARDEYROL" + "codePostal": "57420", + "codeCommune": "57147", + "libelleAcheminement": "COIN SUR SEILLE", + "nomCommune": "COIN SUR SEILLE" }, { - "codePostal": "36120", - "codeCommune": "36211", - "libelleAcheminement": "SASSIERGES ST GERMAIN", - "nomCommune": "SASSIERGES ST GERMAIN" + "codePostal": "59170", + "codeCommune": "59163", + "libelleAcheminement": "CROIX", + "nomCommune": "CROIX" }, { - "codePostal": "06750", - "codeCommune": "06028", - "libelleAcheminement": "CAILLE", - "nomCommune": "CAILLE" + "codePostal": "67140", + "codeCommune": "67387", + "libelleAcheminement": "REICHSFELD", + "nomCommune": "REICHSFELD" }, { - "codePostal": "63320", - "codeCommune": "63222", - "libelleAcheminement": "MEILHAUD", - "nomCommune": "MEILHAUD" + "codePostal": "14123", + "codeCommune": "14271", + "libelleAcheminement": "FLEURY SUR ORNE", + "nomCommune": "FLEURY SUR ORNE" }, { - "codePostal": "43250", - "codeCommune": "43185", - "libelleAcheminement": "STE FLORINE", - "nomCommune": "STE FLORINE" + "codePostal": "67710", + "codeCommune": "67122", + "libelleAcheminement": "WANGENBOURG ENGENTHAL", + "nomCommune": "WANGENBOURG ENGENTHAL" }, { - "codePostal": "36220", - "codeCommune": "36213", - "libelleAcheminement": "SAUZELLES", - "nomCommune": "SAUZELLES" + "codePostal": "57220", + "codeCommune": "57150", + "libelleAcheminement": "CONDE NORTHEN", + "nomCommune": "CONDE NORTHEN" }, { - "codePostal": "06740", - "codeCommune": "06038", - "libelleAcheminement": "CHATEAUNEUF GRASSE", - "nomCommune": "CHATEAUNEUF GRASSE" + "codePostal": "59990", + "codeCommune": "59166", + "libelleAcheminement": "CURGIES", + "nomCommune": "CURGIES" }, { - "codePostal": "63750", - "codeCommune": "63225", - "libelleAcheminement": "MESSEIX", - "nomCommune": "MESSEIX" + "codePostal": "67440", + "codeCommune": "67391", + "libelleAcheminement": "REINHARDSMUNSTER", + "nomCommune": "REINHARDSMUNSTER" }, { - "codePostal": "43230", - "codeCommune": "43188", - "libelleAcheminement": "ST GEORGES D AURAC", - "nomCommune": "ST GEORGES D AURAC" + "codePostal": "14610", + "codeCommune": "14275", + "libelleAcheminement": "FONTAINE HENRY", + "nomCommune": "FONTAINE HENRY" }, { - "codePostal": "36100", - "codeCommune": "36215", - "libelleAcheminement": "SEGRY", - "nomCommune": "SEGRY" + "codePostal": "67710", + "codeCommune": "67122", + "libelleAcheminement": "WANGENBOURG ENGENTHAL", + "nomCommune": "WANGENBOURG ENGENTHAL" }, { - "codePostal": "06140", - "codeCommune": "06050", - "libelleAcheminement": "COURSEGOULES", - "nomCommune": "COURSEGOULES" + "codePostal": "57530", + "codeCommune": "57156", + "libelleAcheminement": "COURCELLES SUR NIED", + "nomCommune": "COURCELLES SUR NIED" }, { - "codePostal": "63320", - "codeCommune": "63234", - "libelleAcheminement": "MONTAIGUT LE BLANC", - "nomCommune": "MONTAIGUT LE BLANC" + "codePostal": "59268", + "codeCommune": "59167", + "libelleAcheminement": "CUVILLERS", + "nomCommune": "CUVILLERS" }, { - "codePostal": "43700", - "codeCommune": "43190", - "libelleAcheminement": "ST GERMAIN LAPRADE", - "nomCommune": "ST GERMAIN LAPRADE" + "codePostal": "67350", + "codeCommune": "67403", + "libelleAcheminement": "RINGENDORF", + "nomCommune": "RINGENDORF" }, { - "codePostal": "36210", - "codeCommune": "36217", - "libelleAcheminement": "SEMBLECAY", - "nomCommune": "SEMBLECAY" + "codePostal": "14250", + "codeCommune": "14278", + "libelleAcheminement": "FONTENAY LE PESNEL", + "nomCommune": "FONTENAY LE PESNEL" }, { - "codePostal": "06260", - "codeCommune": "06051", - "libelleAcheminement": "LA CROIX SUR ROUDOULE", - "nomCommune": "LA CROIX SUR ROUDOULE" + "codePostal": "67680", + "codeCommune": "67125", + "libelleAcheminement": "EPFIG", + "nomCommune": "EPFIG" }, { - "codePostal": "63240", - "codeCommune": "63236", - "libelleAcheminement": "LE MONT DORE", - "nomCommune": "MONT DORE" + "codePostal": "57850", + "codeCommune": "57163", + "libelleAcheminement": "DABO", + "nomCommune": "DABO" }, { - "codePostal": "43320", - "codeCommune": "43197", - "libelleAcheminement": "ST JEAN DE NAY", - "nomCommune": "ST JEAN DE NAY" + "codePostal": "59220", + "codeCommune": "59172", + "libelleAcheminement": "DENAIN", + "nomCommune": "DENAIN" }, { - "codePostal": "36100", - "codeCommune": "36222", - "libelleAcheminement": "THIZAY", - "nomCommune": "THIZAY" + "codePostal": "67560", + "codeCommune": "67410", + "libelleAcheminement": "ROSENWILLER", + "nomCommune": "ROSENWILLER" }, { - "codePostal": "06510", - "codeCommune": "06061", - "libelleAcheminement": "LES FERRES", - "nomCommune": "LES FERRES" + "codePostal": "14340", + "codeCommune": "14280", + "libelleAcheminement": "FORMENTIN", + "nomCommune": "FORMENTIN" }, { - "codePostal": "63380", - "codeCommune": "63237", - "libelleAcheminement": "MONTEL DE GELAT", - "nomCommune": "MONTEL DE GELAT" + "codePostal": "67330", + "codeCommune": "67129", + "libelleAcheminement": "ERNOLSHEIM LES SAVERNE", + "nomCommune": "ERNOLSHEIM LES SAVERNE" }, { - "codePostal": "43200", - "codeCommune": "43199", - "libelleAcheminement": "ST JEURES", - "nomCommune": "ST JEURES" + "codePostal": "57260", + "codeCommune": "57173", + "libelleAcheminement": "DESSELING", + "nomCommune": "DESSELING" }, { - "codePostal": "36600", - "codeCommune": "36228", - "libelleAcheminement": "VALENCAY", - "nomCommune": "VALENCAY" + "codePostal": "59216", + "codeCommune": "59175", + "libelleAcheminement": "DIMONT", + "nomCommune": "DIMONT" }, { - "codePostal": "06540", - "codeCommune": "06062", - "libelleAcheminement": "FONTAN", - "nomCommune": "FONTAN" + "codePostal": "67290", + "codeCommune": "67413", + "libelleAcheminement": "ROSTEIG", + "nomCommune": "ROSTEIG" }, { - "codePostal": "63700", - "codeCommune": "63243", - "libelleAcheminement": "MOUREUILLE", - "nomCommune": "MOUREUILLE" + "codePostal": "14710", + "codeCommune": "14281", + "libelleAcheminement": "FORMIGNY LA BATAILLE", + "nomCommune": "FORMIGNY LA BATAILLE" }, { - "codePostal": "43220", - "codeCommune": "43204", - "libelleAcheminement": "ST JULIEN MOLHESABATE", - "nomCommune": "ST JULIEN MOLHESABATE" + "codePostal": "67640", + "codeCommune": "67137", + "libelleAcheminement": "FEGERSHEIM", + "nomCommune": "FEGERSHEIM" }, { - "codePostal": "36150", - "codeCommune": "36230", - "libelleAcheminement": "VATAN", - "nomCommune": "VATAN" + "codePostal": "57830", + "codeCommune": "57175", + "libelleAcheminement": "DIANE CAPELLE", + "nomCommune": "DIANE CAPELLE" }, { - "codePostal": "06510", - "codeCommune": "06064", - "libelleAcheminement": "GATTIERES", - "nomCommune": "GATTIERES" + "codePostal": "59940", + "codeCommune": "59180", + "libelleAcheminement": "LE DOULIEU", + "nomCommune": "LE DOULIEU" }, { - "codePostal": "63790", - "codeCommune": "63247", - "libelleAcheminement": "MUROL", - "nomCommune": "MUROL" + "codePostal": "67570", + "codeCommune": "67414", + "libelleAcheminement": "ROTHAU", + "nomCommune": "ROTHAU" }, { - "codePostal": "43100", - "codeCommune": "43206", - "libelleAcheminement": "ST JUST PRES BRIOUDE", - "nomCommune": "ST JUST PRES BRIOUDE" + "codePostal": "14240", + "codeCommune": "14282", + "libelleAcheminement": "FOULOGNES", + "nomCommune": "FOULOGNES" }, { - "codePostal": "36400", - "codeCommune": "36236", - "libelleAcheminement": "VICQ EXEMPLET", - "nomCommune": "VICQ EXEMPLET" + "codePostal": "67490", + "codeCommune": "67145", + "libelleAcheminement": "FRIEDOLSHEIM", + "nomCommune": "FRIEDOLSHEIM" }, { - "codePostal": "06130", - "codeCommune": "06069", - "libelleAcheminement": "GRASSE", - "nomCommune": "GRASSE" + "codePostal": "57660", + "codeCommune": "57178", + "libelleAcheminement": "DIFFEMBACH LES HELLIMER", + "nomCommune": "DIFFEMBACH LES HELLIMER" }, { - "codePostal": "63320", - "codeCommune": "63250", - "libelleAcheminement": "NESCHERS", - "nomCommune": "NESCHERS" + "codePostal": "59176", + "codeCommune": "59185", + "libelleAcheminement": "ECAILLON", + "nomCommune": "ECAILLON" }, { - "codePostal": "43230", - "codeCommune": "43208", - "libelleAcheminement": "STE MARGUERITE", - "nomCommune": "STE MARGUERITE" + "codePostal": "67340", + "codeCommune": "67415", + "libelleAcheminement": "ROTHBACH", + "nomCommune": "ROTHBACH" }, { - "codePostal": "36600", - "codeCommune": "36237", - "libelleAcheminement": "VICQ SUR NAHON", - "nomCommune": "VICQ SUR NAHON" + "codePostal": "14590", + "codeCommune": "14293", + "libelleAcheminement": "FUMICHON", + "nomCommune": "FUMICHON" }, { - "codePostal": "06670", - "codeCommune": "06075", - "libelleAcheminement": "LEVENS", - "nomCommune": "LEVENS" + "codePostal": "67117", + "codeCommune": "67150", + "libelleAcheminement": "FURDENHEIM", + "nomCommune": "FURDENHEIM" }, { - "codePostal": "63340", - "codeCommune": "63255", - "libelleAcheminement": "NONETTE ORSONNETTE", - "nomCommune": "NONETTE ORSONNETTE" + "codePostal": "57320", + "codeCommune": "57186", + "libelleAcheminement": "EBERSVILLER", + "nomCommune": "EBERSVILLER" }, { - "codePostal": "43420", - "codeCommune": "43215", - "libelleAcheminement": "ST PAUL DE TARTAS", - "nomCommune": "ST PAUL DE TARTAS" + "codePostal": "59740", + "codeCommune": "59186", + "libelleAcheminement": "ECCLES", + "nomCommune": "ECCLES" }, { - "codePostal": "36320", - "codeCommune": "36241", - "libelleAcheminement": "VILLEDIEU SUR INDRE", - "nomCommune": "VILLEDIEU SUR INDRE" + "codePostal": "67270", + "codeCommune": "67423", + "libelleAcheminement": "SAESSOLSHEIM", + "nomCommune": "SAESSOLSHEIM" }, { - "codePostal": "06380", - "codeCommune": "06086", - "libelleAcheminement": "MOULINET", - "nomCommune": "MOULINET" + "codePostal": "14450", + "codeCommune": "14312", + "libelleAcheminement": "GRANDCAMP MAISY", + "nomCommune": "GRANDCAMP MAISY" }, { - "codePostal": "63670", - "codeCommune": "63262", - "libelleAcheminement": "ORCET", - "nomCommune": "ORCET" + "codePostal": "67270", + "codeCommune": "67153", + "libelleAcheminement": "GEISWILLER ZOEBERSDORF", + "nomCommune": "GEISWILLER ZOEBERSDORF" }, { - "codePostal": "43600", - "codeCommune": "43224", - "libelleAcheminement": "STE SIGOLENE", - "nomCommune": "STE SIGOLENE" + "codePostal": "57230", + "codeCommune": "57188", + "libelleAcheminement": "EGUELSHARDT", + "nomCommune": "EGUELSHARDT" }, { - "codePostal": "36600", - "codeCommune": "36244", - "libelleAcheminement": "VILLENTROIS FAVEROLLES EN BERRY", - "nomCommune": "VILLENTROIS FAVEROLLES EN BERRY" + "codePostal": "59320", + "codeCommune": "59196", + "libelleAcheminement": "ENNETIERES EN WEPPES", + "nomCommune": "ENNETIERES EN WEPPES" }, { - "codePostal": "06910", - "codeCommune": "06087", - "libelleAcheminement": "LES MUJOULS", - "nomCommune": "LES MUJOULS" + "codePostal": "67700", + "codeCommune": "67425", + "libelleAcheminement": "ST JEAN SAVERNE", + "nomCommune": "ST JEAN SAVERNE" }, { - "codePostal": "63870", - "codeCommune": "63263", - "libelleAcheminement": "ORCINES", - "nomCommune": "ORCINES" + "codePostal": "14160", + "codeCommune": "14316", + "libelleAcheminement": "GRANGUES", + "nomCommune": "GRANGUES" }, { - "codePostal": "43140", - "codeCommune": "43227", - "libelleAcheminement": "ST VICTOR MALESCOURS", - "nomCommune": "ST VICTOR MALESCOURS" + "codePostal": "67270", + "codeCommune": "67153", + "libelleAcheminement": "GEISWILLER ZOEBERSDORF", + "nomCommune": "GEISWILLER ZOEBERSDORF" }, { - "codePostal": "37800", - "codeCommune": "37005", - "libelleAcheminement": "ANTOGNY LE TILLAC", - "nomCommune": "ANTOGNY LE TILLAC" + "codePostal": "57330", + "codeCommune": "57194", + "libelleAcheminement": "ENTRANGE", + "nomCommune": "ENTRANGE" }, { - "codePostal": "06910", - "codeCommune": "06097", - "libelleAcheminement": "PIERREFEU", - "nomCommune": "PIERREFEU" + "codePostal": "59278", + "codeCommune": "59207", + "libelleAcheminement": "ESCAUTPONT", + "nomCommune": "ESCAUTPONT" }, { - "codePostal": "63920", - "codeCommune": "63276", - "libelleAcheminement": "PESCHADOIRES", - "nomCommune": "PESCHADOIRES" + "codePostal": "67260", + "codeCommune": "67434", + "libelleAcheminement": "SARRE UNION", + "nomCommune": "SARRE UNION" }, { - "codePostal": "43320", - "codeCommune": "43229", - "libelleAcheminement": "ST VIDAL", - "nomCommune": "ST VIDAL" + "codePostal": "14540", + "codeCommune": "14319", + "libelleAcheminement": "GRENTHEVILLE", + "nomCommune": "GRENTHEVILLE" }, { - "codePostal": "37120", - "codeCommune": "37007", - "libelleAcheminement": "ASSAY", - "nomCommune": "ASSAY" + "codePostal": "67370", + "codeCommune": "67173", + "libelleAcheminement": "GRIESHEIM SUR SOUFFEL", + "nomCommune": "GRIESHEIM SUR SOUFFEL" }, { - "codePostal": "06260", - "codeCommune": "06099", - "libelleAcheminement": "PUGET THENIERS", - "nomCommune": "PUGET THENIERS" + "codePostal": "57412", + "codeCommune": "57201", + "libelleAcheminement": "ETTING", + "nomCommune": "ETTING" }, { - "codePostal": "63113", - "codeCommune": "63279", - "libelleAcheminement": "PICHERANDE", - "nomCommune": "PICHERANDE" + "codePostal": "59310", + "codeCommune": "59222", + "libelleAcheminement": "FAUMONT", + "nomCommune": "FAUMONT" }, { - "codePostal": "43150", - "codeCommune": "43231", - "libelleAcheminement": "SALETTES", - "nomCommune": "SALETTES" + "codePostal": "67260", + "codeCommune": "67435", + "libelleAcheminement": "SARREWERDEN", + "nomCommune": "SARREWERDEN" }, { - "codePostal": "37270", - "codeCommune": "37008", - "libelleAcheminement": "ATHEE SUR CHER", - "nomCommune": "ATHEE SUR CHER" + "codePostal": "14220", + "codeCommune": "14320", + "libelleAcheminement": "GRIMBOSQ", + "nomCommune": "GRIMBOSQ" }, { - "codePostal": "06830", - "codeCommune": "06100", - "libelleAcheminement": "REVEST LES ROCHES", - "nomCommune": "REVEST LES ROCHES" + "codePostal": "67110", + "codeCommune": "67176", + "libelleAcheminement": "GUNDERSHOFFEN", + "nomCommune": "GUNDERSHOFFEN" }, { - "codePostal": "63270", - "codeCommune": "63280", - "libelleAcheminement": "PIGNOLS", - "nomCommune": "PIGNOLS" + "codePostal": "57460", + "codeCommune": "57202", + "libelleAcheminement": "ETZLING", + "nomCommune": "ETZLING" }, { - "codePostal": "43170", - "codeCommune": "43234", - "libelleAcheminement": "SAUGUES", - "nomCommune": "SAUGUES" + "codePostal": "59680", + "codeCommune": "59230", + "libelleAcheminement": "FERRIERE LA GRANDE", + "nomCommune": "FERRIERE LA GRANDE" }, { - "codePostal": "37420", - "codeCommune": "37011", - "libelleAcheminement": "AVOINE", - "nomCommune": "AVOINE" + "codePostal": "67310", + "codeCommune": "67442", + "libelleAcheminement": "SCHARRACHBERGHEIM IRMSTETT", + "nomCommune": "SCHARRACHBERGHEIM IRMSTETT" }, { - "codePostal": "06420", - "codeCommune": "06102", - "libelleAcheminement": "RIMPLAS", - "nomCommune": "RIMPLAS" + "codePostal": "14100", + "codeCommune": "14326", + "libelleAcheminement": "HERMIVAL LES VAUX", + "nomCommune": "HERMIVAL LES VAUX" }, { - "codePostal": "63500", - "codeCommune": "63287", - "libelleAcheminement": "LES PRADEAUX", - "nomCommune": "LES PRADEAUX" + "codePostal": "67320", + "codeCommune": "67178", + "libelleAcheminement": "GUNGWILLER", + "nomCommune": "GUNGWILLER" }, { - "codePostal": "43140", - "codeCommune": "43236", - "libelleAcheminement": "LA SEAUVE SUR SEMENE", - "nomCommune": "LA SEAUVE SUR SEMENE" + "codePostal": "57290", + "codeCommune": "57206", + "libelleAcheminement": "FAMECK", + "nomCommune": "FAMECK" }, { - "codePostal": "37190", - "codeCommune": "37014", - "libelleAcheminement": "AZAY LE RIDEAU", - "nomCommune": "AZAY LE RIDEAU" + "codePostal": "59128", + "codeCommune": "59234", + "libelleAcheminement": "FLERS EN ESCREBIEUX", + "nomCommune": "FLERS EN ESCREBIEUX" }, { - "codePostal": "06660", - "codeCommune": "06119", - "libelleAcheminement": "ST DALMAS LE SELVAGE", - "nomCommune": "ST DALMAS LE SELVAGE" + "codePostal": "67750", + "codeCommune": "67445", + "libelleAcheminement": "SCHERWILLER", + "nomCommune": "SCHERWILLER" }, { - "codePostal": "63200", - "codeCommune": "63288", - "libelleAcheminement": "PROMPSAT", - "nomCommune": "PROMPSAT" + "codePostal": "14850", + "codeCommune": "14328", + "libelleAcheminement": "HEROUVILLETTE", + "nomCommune": "HEROUVILLETTE" }, { - "codePostal": "43510", - "codeCommune": "43238", - "libelleAcheminement": "SENEUJOLS", - "nomCommune": "SENEUJOLS" + "codePostal": "67117", + "codeCommune": "67181", + "libelleAcheminement": "HANDSCHUHEIM", + "nomCommune": "HANDSCHUHEIM" }, { - "codePostal": "37350", - "codeCommune": "37019", - "libelleAcheminement": "BARROU", - "nomCommune": "BARROU" + "codePostal": "57635", + "codeCommune": "57216", + "libelleAcheminement": "FLEISHEIM", + "nomCommune": "FLEISHEIM" }, { - "codePostal": "06700", - "codeCommune": "06123", - "libelleAcheminement": "ST LAURENT DU VAR", - "nomCommune": "ST LAURENT DU VAR" + "codePostal": "59270", + "codeCommune": "59237", + "libelleAcheminement": "FLETRE", + "nomCommune": "FLETRE" }, { - "codePostal": "63290", - "codeCommune": "63291", - "libelleAcheminement": "PUY GUILLAUME", - "nomCommune": "PUY GUILLAUME" + "codePostal": "67130", + "codeCommune": "67448", + "libelleAcheminement": "SCHIRMECK", + "nomCommune": "SCHIRMECK" }, { - "codePostal": "43170", - "codeCommune": "43245", - "libelleAcheminement": "THORAS", - "nomCommune": "THORAS" + "codePostal": "14430", + "codeCommune": "14335", + "libelleAcheminement": "HOTOT EN AUGE", + "nomCommune": "HOTOT EN AUGE" }, { - "codePostal": "37370", - "codeCommune": "37021", - "libelleAcheminement": "BEAUMONT LOUESTAULT", - "nomCommune": "BEAUMONT LOUESTAULT" + "codePostal": "67390", + "codeCommune": "67187", + "libelleAcheminement": "HEIDOLSHEIM", + "nomCommune": "HEIDOLSHEIM" }, { - "codePostal": "06470", - "codeCommune": "06125", - "libelleAcheminement": "ST MARTIN D ENTRAUNES", - "nomCommune": "ST MARTIN D ENTRAUNES" + "codePostal": "57365", + "codeCommune": "57219", + "libelleAcheminement": "FLEVY", + "nomCommune": "FLEVY" }, { - "codePostal": "63330", - "codeCommune": "63293", - "libelleAcheminement": "LE QUARTIER", - "nomCommune": "LE QUARTIER" + "codePostal": "59550", + "codeCommune": "59242", + "libelleAcheminement": "FONTAINE AU BOIS", + "nomCommune": "FONTAINE AU BOIS" }, { - "codePostal": "43750", - "codeCommune": "43251", - "libelleAcheminement": "VALS PRES LE PUY", - "nomCommune": "VALS PRES LE PUY" + "codePostal": "67160", + "codeCommune": "67451", + "libelleAcheminement": "SCHLEITHAL", + "nomCommune": "SCHLEITHAL" }, { - "codePostal": "37150", - "codeCommune": "37027", - "libelleAcheminement": "BLERE", - "nomCommune": "BLERE" + "codePostal": "14340", + "codeCommune": "14337", + "libelleAcheminement": "LA HOUBLONNIERE", + "nomCommune": "LA HOUBLONNIERE" }, { - "codePostal": "06570", - "codeCommune": "06128", - "libelleAcheminement": "ST PAUL DE VENCE", - "nomCommune": "ST PAUL DE VENCE" + "codePostal": "67150", + "codeCommune": "67197", + "libelleAcheminement": "HINDISHEIM", + "nomCommune": "HINDISHEIM" }, { - "codePostal": "63780", - "codeCommune": "63294", - "libelleAcheminement": "QUEUILLE", - "nomCommune": "QUEUILLE" + "codePostal": "57580", + "codeCommune": "57220", + "libelleAcheminement": "FLOCOURT", + "nomCommune": "FLOCOURT" }, { - "codePostal": "43170", - "codeCommune": "43256", - "libelleAcheminement": "VENTEUGES", - "nomCommune": "VENTEUGES" + "codePostal": "59157", + "codeCommune": "59243", + "libelleAcheminement": "FONTAINE AU PIRE", + "nomCommune": "FONTAINE AU PIRE" }, { - "codePostal": "37290", - "codeCommune": "37033", - "libelleAcheminement": "BOUSSAY", - "nomCommune": "BOUSSAY" + "codePostal": "67320", + "codeCommune": "67454", + "libelleAcheminement": "SCHOENBOURG", + "nomCommune": "SCHOENBOURG" }, { - "codePostal": "06540", - "codeCommune": "06132", - "libelleAcheminement": "SAORGE", - "nomCommune": "SAORGE" + "codePostal": "14123", + "codeCommune": "14341", + "libelleAcheminement": "IFS", + "nomCommune": "IFS" }, { - "codePostal": "63310", - "codeCommune": "63295", - "libelleAcheminement": "RANDAN", - "nomCommune": "RANDAN" + "codePostal": "67270", + "codeCommune": "67202", + "libelleAcheminement": "HOCHFELDEN", + "nomCommune": "HOCHFELDEN" }, { - "codePostal": "43100", - "codeCommune": "43262", - "libelleAcheminement": "VIEILLE BRIOUDE", - "nomCommune": "VIEILLE BRIOUDE" + "codePostal": "57600", + "codeCommune": "57227", + "libelleAcheminement": "FORBACH", + "nomCommune": "FORBACH" }, { - "codePostal": "37370", - "codeCommune": "37041", - "libelleAcheminement": "BUEIL EN TOURAINE", - "nomCommune": "BUEIL EN TOURAINE" + "codePostal": "59510", + "codeCommune": "59247", + "libelleAcheminement": "FOREST SUR MARQUE", + "nomCommune": "FOREST SUR MARQUE" }, { - "codePostal": "06750", - "codeCommune": "06134", - "libelleAcheminement": "SERANON", - "nomCommune": "SERANON" + "codePostal": "67270", + "codeCommune": "67460", + "libelleAcheminement": "SCHWINDRATZHEIM", + "nomCommune": "SCHWINDRATZHEIM" }, { - "codePostal": "63930", - "codeCommune": "63298", - "libelleAcheminement": "LA RENAUDIE", - "nomCommune": "LA RENAUDIE" + "codePostal": "14230", + "codeCommune": "14342", + "libelleAcheminement": "ISIGNY SUR MER", + "nomCommune": "ISIGNY SUR MER" }, { - "codePostal": "43490", - "codeCommune": "43263", - "libelleAcheminement": "VIELPRAT", - "nomCommune": "VIELPRAT" + "codePostal": "67800", + "codeCommune": "67204", + "libelleAcheminement": "HOENHEIM", + "nomCommune": "HOENHEIM" }, { - "codePostal": "37530", - "codeCommune": "37043", - "libelleAcheminement": "CANGEY", - "nomCommune": "CANGEY" + "codePostal": "57830", + "codeCommune": "57229", + "libelleAcheminement": "FOULCREY", + "nomCommune": "FOULCREY" }, { - "codePostal": "06710", - "codeCommune": "06139", - "libelleAcheminement": "THIERY", - "nomCommune": "THIERY" + "codePostal": "59134", + "codeCommune": "59250", + "libelleAcheminement": "FOURNES EN WEPPES", + "nomCommune": "FOURNES EN WEPPES" }, { - "codePostal": "63420", - "codeCommune": "63299", - "libelleAcheminement": "RENTIERES", - "nomCommune": "RENTIERES" + "codePostal": "67120", + "codeCommune": "67473", + "libelleAcheminement": "SOULTZ LES BAINS", + "nomCommune": "SOULTZ LES BAINS" }, { - "codePostal": "44740", - "codeCommune": "44010", - "libelleAcheminement": "BATZ SUR MER", - "nomCommune": "BATZ SUR MER" + "codePostal": "14230", + "codeCommune": "14342", + "libelleAcheminement": "ISIGNY SUR MER", + "nomCommune": "ISIGNY SUR MER" }, { - "codePostal": "37120", - "codeCommune": "37051", - "libelleAcheminement": "CHAMPIGNY SUR VEUDE", - "nomCommune": "CHAMPIGNY SUR VEUDE" + "codePostal": "67640", + "codeCommune": "67217", + "libelleAcheminement": "ICHTRATZHEIM", + "nomCommune": "ICHTRATZHEIM" }, { - "codePostal": "06530", - "codeCommune": "06140", - "libelleAcheminement": "LE TIGNET", - "nomCommune": "LE TIGNET" + "codePostal": "57200", + "codeCommune": "57234", + "libelleAcheminement": "FRAUENBERG", + "nomCommune": "FRAUENBERG" }, { - "codePostal": "63420", - "codeCommune": "63303", - "libelleAcheminement": "ROCHE CHARLES LA MAYRAND", - "nomCommune": "ROCHE CHARLES LA MAYRAND" + "codePostal": "59244", + "codeCommune": "59270", + "libelleAcheminement": "GRAND FAYT", + "nomCommune": "GRAND FAYT" }, { - "codePostal": "44450", - "codeCommune": "44029", - "libelleAcheminement": "DIVATTE SUR LOIRE", - "nomCommune": "DIVATTE SUR LOIRE" + "codePostal": "67790", + "codeCommune": "67478", + "libelleAcheminement": "STEINBOURG", + "nomCommune": "STEINBOURG" }, { - "codePostal": "37290", - "codeCommune": "37061", - "libelleAcheminement": "CHARNIZAY", - "nomCommune": "CHARNIZAY" + "codePostal": "14670", + "codeCommune": "14344", + "libelleAcheminement": "JANVILLE", + "nomCommune": "JANVILLE" }, { - "codePostal": "06830", - "codeCommune": "06141", - "libelleAcheminement": "TOUDON", - "nomCommune": "TOUDON" + "codePostal": "67370", + "codeCommune": "67228", + "libelleAcheminement": "NEUGARTHEIM ITTLENHEIM", + "nomCommune": "NEUGARTHEIM ITTLENHEIM" }, { - "codePostal": "63800", - "codeCommune": "63306", - "libelleAcheminement": "LA ROCHE NOIRE", - "nomCommune": "LA ROCHE NOIRE" + "codePostal": "57660", + "codeCommune": "57237", + "libelleAcheminement": "FREMESTROFF", + "nomCommune": "FREMESTROFF" }, { - "codePostal": "44410", - "codeCommune": "44030", - "libelleAcheminement": "LA CHAPELLE DES MARAIS", - "nomCommune": "LA CHAPELLE DES MARAIS" + "codePostal": "59153", + "codeCommune": "59272", + "libelleAcheminement": "GRAND FORT PHILIPPE", + "nomCommune": "GRAND FORT PHILIPPE" }, { - "codePostal": "37460", - "codeCommune": "37069", - "libelleAcheminement": "CHEMILLE SUR INDROIS", - "nomCommune": "CHEMILLE SUR INDROIS" + "codePostal": "67100", + "codeCommune": "67482", + "libelleAcheminement": "STRASBOURG", + "nomCommune": "STRASBOURG" }, { - "codePostal": "06340", - "codeCommune": "06149", - "libelleAcheminement": "LA TRINITE", - "nomCommune": "LA TRINITE" + "codePostal": "14830", + "codeCommune": "14354", + "libelleAcheminement": "LANGRUNE SUR MER", + "nomCommune": "LANGRUNE SUR MER" }, { - "codePostal": "63540", - "codeCommune": "63307", - "libelleAcheminement": "ROMAGNAT", - "nomCommune": "ROMAGNAT" + "codePostal": "67260", + "codeCommune": "67234", + "libelleAcheminement": "KESKASTEL", + "nomCommune": "KESKASTEL" }, { - "codePostal": "44590", - "codeCommune": "44051", - "libelleAcheminement": "DERVAL", - "nomCommune": "DERVAL" + "codePostal": "57670", + "codeCommune": "57248", + "libelleAcheminement": "GIVRYCOURT", + "nomCommune": "GIVRYCOURT" }, { - "codePostal": "37310", - "codeCommune": "37075", - "libelleAcheminement": "CIGOGNE", - "nomCommune": "CIGOGNE" + "codePostal": "59820", + "codeCommune": "59273", + "libelleAcheminement": "GRAVELINES", + "nomCommune": "GRAVELINES" }, { - "codePostal": "06450", - "codeCommune": "06151", - "libelleAcheminement": "UTELLE", - "nomCommune": "UTELLE" + "codePostal": "67250", + "codeCommune": "67484", + "libelleAcheminement": "STUNDWILLER", + "nomCommune": "STUNDWILLER" }, { - "codePostal": "63500", - "codeCommune": "63321", - "libelleAcheminement": "ST BABEL", - "nomCommune": "ST BABEL" + "codePostal": "14480", + "codeCommune": "14355", + "libelleAcheminement": "PONTS SUR SEULLES", + "nomCommune": "PONTS SUR SEULLES" }, { - "codePostal": "44530", - "codeCommune": "44053", - "libelleAcheminement": "DREFFEAC", - "nomCommune": "DREFFEAC" + "codePostal": "67840", + "codeCommune": "67237", + "libelleAcheminement": "KILSTETT", + "nomCommune": "KILSTETT" }, { - "codePostal": "37310", - "codeCommune": "37085", - "libelleAcheminement": "COURCAY", - "nomCommune": "COURCAY" + "codePostal": "57130", + "codeCommune": "57256", + "libelleAcheminement": "GRAVELOTTE", + "nomCommune": "GRAVELOTTE" }, { - "codePostal": "06560", - "codeCommune": "06152", - "libelleAcheminement": "VALBONNE", - "nomCommune": "VALBONNE" + "codePostal": "59570", + "codeCommune": "59277", + "libelleAcheminement": "GUSSIGNIES", + "nomCommune": "GUSSIGNIES" }, { - "codePostal": "63360", - "codeCommune": "63322", - "libelleAcheminement": "ST BEAUZIRE", - "nomCommune": "ST BEAUZIRE" + "codePostal": "67370", + "codeCommune": "67485", + "libelleAcheminement": "STUTZHEIM OFFENHEIM", + "nomCommune": "STUTZHEIM OFFENHEIM" }, { - "codePostal": "44460", - "codeCommune": "44057", - "libelleAcheminement": "FEGREAC", - "nomCommune": "FEGREAC" + "codePostal": "14770", + "codeCommune": "14357", + "libelleAcheminement": "TERRES DE DRUANCE", + "nomCommune": "TERRES DE DRUANCE" }, { - "codePostal": "37150", - "codeCommune": "37091", - "libelleAcheminement": "LA CROIX EN TOURAINE", - "nomCommune": "LA CROIX EN TOURAINE" + "codePostal": "67170", + "codeCommune": "67249", + "libelleAcheminement": "KRAUTWILLER", + "nomCommune": "KRAUTWILLER" }, { - "codePostal": "06560", - "codeCommune": "06152", - "libelleAcheminement": "VALBONNE", - "nomCommune": "VALBONNE" + "codePostal": "57520", + "codeCommune": "57260", + "libelleAcheminement": "GROSBLIEDERSTROFF", + "nomCommune": "GROSBLIEDERSTROFF" }, { - "codePostal": "63200", - "codeCommune": "63327", - "libelleAcheminement": "ST BONNET PRES RIOM", - "nomCommune": "ST BONNET PRES RIOM" + "codePostal": "59178", + "codeCommune": "59284", + "libelleAcheminement": "HASNON", + "nomCommune": "HASNON" }, { - "codePostal": "44520", - "codeCommune": "44065", - "libelleAcheminement": "GRAND AUVERNE", - "nomCommune": "GRAND AUVERNE" + "codePostal": "67920", + "codeCommune": "67486", + "libelleAcheminement": "SUNDHOUSE", + "nomCommune": "SUNDHOUSE" }, { - "codePostal": "37150", - "codeCommune": "37096", - "libelleAcheminement": "DIERRE", - "nomCommune": "DIERRE" + "codePostal": "14340", + "codeCommune": "14358", + "libelleAcheminement": "LEAUPARTIE", + "nomCommune": "LEAUPARTIE" }, { - "codePostal": "06220", - "codeCommune": "06155", - "libelleAcheminement": "VALLAURIS", - "nomCommune": "VALLAURIS" + "codePostal": "67170", + "codeCommune": "67250", + "libelleAcheminement": "KRIEGSHEIM", + "nomCommune": "KRIEGSHEIM" }, { - "codePostal": "63320", - "codeCommune": "63335", - "libelleAcheminement": "ST DIERY", - "nomCommune": "ST DIERY" + "codePostal": "57410", + "codeCommune": "57261", + "libelleAcheminement": "GROS REDERCHING", + "nomCommune": "GROS REDERCHING" }, { - "codePostal": "44119", - "codeCommune": "44066", - "libelleAcheminement": "GRANDCHAMPS DES FONTAINES", - "nomCommune": "GRANDCHAMPS DES FONTAINES" + "codePostal": "59660", + "codeCommune": "59293", + "libelleAcheminement": "HAVERSKERQUE", + "nomCommune": "HAVERSKERQUE" }, { - "codePostal": "37310", - "codeCommune": "37097", - "libelleAcheminement": "DOLUS LE SEC", - "nomCommune": "DOLUS LE SEC" + "codePostal": "67220", + "codeCommune": "67490", + "libelleAcheminement": "THANVILLE", + "nomCommune": "THANVILLE" }, { - "codePostal": "06450", - "codeCommune": "06156", - "libelleAcheminement": "VENANSON", - "nomCommune": "VENANSON" + "codePostal": "14780", + "codeCommune": "14365", + "libelleAcheminement": "LION SUR MER", + "nomCommune": "LION SUR MER" }, { - "codePostal": "63580", - "codeCommune": "63340", - "libelleAcheminement": "ST ETIENNE SUR USSON", - "nomCommune": "ST ETIENNE SUR USSON" + "codePostal": "67240", + "codeCommune": "67252", + "libelleAcheminement": "KURTZENHOUSE", + "nomCommune": "KURTZENHOUSE" }, { - "codePostal": "44290", - "codeCommune": "44067", - "libelleAcheminement": "GUEMENE PENFAO", - "nomCommune": "GUEMENE PENFAO" + "codePostal": "57260", + "codeCommune": "57272", + "libelleAcheminement": "GUERMANGE", + "nomCommune": "GUERMANGE" }, { - "codePostal": "37150", - "codeCommune": "37100", - "libelleAcheminement": "EPEIGNE LES BOIS", - "nomCommune": "EPEIGNE LES BOIS" + "codePostal": "59171", + "codeCommune": "59297", + "libelleAcheminement": "HELESMES", + "nomCommune": "HELESMES" }, { - "codePostal": "06230", - "codeCommune": "06159", - "libelleAcheminement": "VILLEFRANCHE SUR MER", - "nomCommune": "VILLEFRANCHE SUR MER" + "codePostal": "67370", + "codeCommune": "67495", + "libelleAcheminement": "TRUCHTERSHEIM", + "nomCommune": "TRUCHTERSHEIM" }, { - "codePostal": "63520", - "codeCommune": "63343", - "libelleAcheminement": "ST FLOUR L ETANG", - "nomCommune": "ST FLOUR L ETANG" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "44290", - "codeCommune": "44067", - "libelleAcheminement": "GUEMENE PENFAO", - "nomCommune": "GUEMENE PENFAO" + "codePostal": "67520", + "codeCommune": "67253", + "libelleAcheminement": "KUTTOLSHEIM", + "nomCommune": "KUTTOLSHEIM" }, { - "codePostal": "37370", - "codeCommune": "37101", - "libelleAcheminement": "EPEIGNE SUR DEME", - "nomCommune": "EPEIGNE SUR DEME" + "codePostal": "57690", + "codeCommune": "57276", + "libelleAcheminement": "GUINGLANGE", + "nomCommune": "GUINGLANGE" }, { - "codePostal": "07400", - "codeCommune": "07005", - "libelleAcheminement": "ALBA LA ROMAINE", - "nomCommune": "ALBA LA ROMAINE" + "codePostal": "59247", + "codeCommune": "59300", + "libelleAcheminement": "HEM LENGLET", + "nomCommune": "HEM LENGLET" }, { - "codePostal": "63122", - "codeCommune": "63345", - "libelleAcheminement": "ST GENES CHAMPANELLE", - "nomCommune": "ST GENES CHAMPANELLE" + "codePostal": "67370", + "codeCommune": "67495", + "libelleAcheminement": "TRUCHTERSHEIM", + "nomCommune": "TRUCHTERSHEIM" }, { - "codePostal": "44350", - "codeCommune": "44069", - "libelleAcheminement": "GUERANDE", - "nomCommune": "GUERANDE" + "codePostal": "14290", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "37110", - "codeCommune": "37106", - "libelleAcheminement": "LA FERRIERE", - "nomCommune": "LA FERRIERE" + "codePostal": "67510", + "codeCommune": "67263", + "libelleAcheminement": "LEMBACH", + "nomCommune": "LEMBACH" }, { - "codePostal": "07340", - "codeCommune": "07009", - "libelleAcheminement": "ANDANCE", - "nomCommune": "ANDANCE" + "codePostal": "57670", + "codeCommune": "57278", + "libelleAcheminement": "GUINZELING", + "nomCommune": "GUINZELING" }, { - "codePostal": "63122", - "codeCommune": "63345", - "libelleAcheminement": "ST GENES CHAMPANELLE", - "nomCommune": "ST GENES CHAMPANELLE" + "codePostal": "59190", + "codeCommune": "59308", + "libelleAcheminement": "HONDEGHEM", + "nomCommune": "HONDEGHEM" }, { - "codePostal": "44690", - "codeCommune": "44070", - "libelleAcheminement": "LA HAIE FOUASSIERE", - "nomCommune": "LA HAIE FOUASSIERE" + "codePostal": "67350", + "codeCommune": "67497", + "libelleAcheminement": "UHLWILLER", + "nomCommune": "UHLWILLER" }, { - "codePostal": "37350", - "codeCommune": "37107", - "libelleAcheminement": "FERRIERE LARCON", - "nomCommune": "FERRIERE LARCON" + "codePostal": "14240", + "codeCommune": "14374", + "libelleAcheminement": "LES LOGES", + "nomCommune": "LES LOGES" }, { - "codePostal": "07310", - "codeCommune": "07012", - "libelleAcheminement": "ARCENS", - "nomCommune": "ARCENS" + "codePostal": "67490", + "codeCommune": "67269", + "libelleAcheminement": "LITTENHEIM", + "nomCommune": "LITTENHEIM" }, { - "codePostal": "63800", - "codeCommune": "63350", - "libelleAcheminement": "ST GEORGES SUR ALLIER", - "nomCommune": "ST GEORGES SUR ALLIER" + "codePostal": "57550", + "codeCommune": "57296", + "libelleAcheminement": "HARGARTEN AUX MINES", + "nomCommune": "HARGARTEN AUX MINES" }, { - "codePostal": "44410", - "codeCommune": "44072", - "libelleAcheminement": "HERBIGNAC", - "nomCommune": "HERBIGNAC" + "codePostal": "59122", + "codeCommune": "59309", + "libelleAcheminement": "HONDSCHOOTE", + "nomCommune": "HONDSCHOOTE" }, { - "codePostal": "37340", - "codeCommune": "37112", - "libelleAcheminement": "GIZEUX", - "nomCommune": "GIZEUX" + "codePostal": "67350", + "codeCommune": "67498", + "libelleAcheminement": "UHRWILLER", + "nomCommune": "UHRWILLER" }, { - "codePostal": "07400", - "codeCommune": "07020", - "libelleAcheminement": "AUBIGNAS", - "nomCommune": "AUBIGNAS" + "codePostal": "14210", + "codeCommune": "14390", + "libelleAcheminement": "MAISONCELLES SUR AJON", + "nomCommune": "MAISONCELLES SUR AJON" }, { - "codePostal": "63630", - "codeCommune": "63353", - "libelleAcheminement": "ST GERMAIN L HERM", - "nomCommune": "ST GERMAIN L HERM" + "codePostal": "67290", + "codeCommune": "67273", + "libelleAcheminement": "LOHR", + "nomCommune": "LOHR" }, { - "codePostal": "44810", - "codeCommune": "44073", - "libelleAcheminement": "HERIC", - "nomCommune": "HERIC" + "codePostal": "57230", + "codeCommune": "57301", + "libelleAcheminement": "HASPELSCHIEDT", + "nomCommune": "HASPELSCHIEDT" }, { - "codePostal": "37160", - "codeCommune": "37115", - "libelleAcheminement": "DESCARTES", - "nomCommune": "DESCARTES" + "codePostal": "59570", + "codeCommune": "59310", + "libelleAcheminement": "HON HERGIES", + "nomCommune": "HON HERGIES" }, { - "codePostal": "07120", - "codeCommune": "07023", - "libelleAcheminement": "BALAZUC", - "nomCommune": "BALAZUC" + "codePostal": "67280", + "codeCommune": "67500", + "libelleAcheminement": "URMATT", + "nomCommune": "URMATT" }, { - "codePostal": "63340", - "codeCommune": "63356", - "libelleAcheminement": "ST GERVAZY", - "nomCommune": "ST GERVAZY" + "codePostal": "14400", + "codeCommune": "14391", + "libelleAcheminement": "MAISONS", + "nomCommune": "MAISONS" }, { - "codePostal": "44610", - "codeCommune": "44074", - "libelleAcheminement": "INDRE", - "nomCommune": "INDRE" + "codePostal": "67390", + "codeCommune": "67277", + "libelleAcheminement": "MACKENHEIM", + "nomCommune": "MACKENHEIM" }, { - "codePostal": "37340", - "codeCommune": "37117", - "libelleAcheminement": "HOMMES", - "nomCommune": "HOMMES" + "codePostal": "57790", + "codeCommune": "57302", + "libelleAcheminement": "HATTIGNY", + "nomCommune": "HATTIGNY" }, { - "codePostal": "07310", - "codeCommune": "07037", - "libelleAcheminement": "BOREE", - "nomCommune": "BOREE" + "codePostal": "59266", + "codeCommune": "59312", + "libelleAcheminement": "HONNECOURT SUR ESCAUT", + "nomCommune": "HONNECOURT SUR ESCAUT" }, { - "codePostal": "63190", - "codeCommune": "63364", - "libelleAcheminement": "ST JEAN D HEURS", - "nomCommune": "ST JEAN D HEURS" + "codePostal": "67110", + "codeCommune": "67502", + "libelleAcheminement": "UTTENHOFFEN", + "nomCommune": "UTTENHOFFEN" }, { - "codePostal": "44610", - "codeCommune": "44074", - "libelleAcheminement": "INDRE", - "nomCommune": "INDRE" + "codePostal": "14210", + "codeCommune": "14393", + "libelleAcheminement": "MAIZET", + "nomCommune": "MAIZET" }, { - "codePostal": "37120", - "codeCommune": "37125", - "libelleAcheminement": "LEMERE", - "nomCommune": "LEMERE" + "codePostal": "67700", + "codeCommune": "67279", + "libelleAcheminement": "MAENNOLSHEIM", + "nomCommune": "MAENNOLSHEIM" }, { - "codePostal": "07450", - "codeCommune": "07045", - "libelleAcheminement": "BURZET", - "nomCommune": "BURZET" + "codePostal": "57700", + "codeCommune": "57306", + "libelleAcheminement": "HAYANGE", + "nomCommune": "HAYANGE" }, { - "codePostal": "63520", - "codeCommune": "63365", - "libelleAcheminement": "ST JEAN DES OLLIERES", - "nomCommune": "ST JEAN DES OLLIERES" + "codePostal": "59470", + "codeCommune": "59318", + "libelleAcheminement": "HOUTKERQUE", + "nomCommune": "HOUTKERQUE" }, { - "codePostal": "44440", - "codeCommune": "44077", - "libelleAcheminement": "JOUE SUR ERDRE", - "nomCommune": "JOUE SUR ERDRE" + "codePostal": "67210", + "codeCommune": "67504", + "libelleAcheminement": "VALFF", + "nomCommune": "VALFF" }, { - "codePostal": "37600", - "codeCommune": "37132", - "libelleAcheminement": "LOCHES", - "nomCommune": "LOCHES" + "codePostal": "14930", + "codeCommune": "14396", + "libelleAcheminement": "MALTOT", + "nomCommune": "MALTOT" }, { - "codePostal": "07440", - "codeCommune": "07052", - "libelleAcheminement": "CHAMPIS", - "nomCommune": "CHAMPIS" + "codePostal": "67270", + "codeCommune": "67287", + "libelleAcheminement": "MELSHEIM", + "nomCommune": "MELSHEIM" }, { - "codePostal": "63490", - "codeCommune": "63366", - "libelleAcheminement": "ST JEAN EN VAL", - "nomCommune": "ST JEAN EN VAL" + "codePostal": "57690", + "codeCommune": "57313", + "libelleAcheminement": "HEMILLY", + "nomCommune": "HEMILLY" }, { - "codePostal": "44110", - "codeCommune": "44085", - "libelleAcheminement": "LOUISFERT", - "nomCommune": "LOUISFERT" + "codePostal": "59553", + "codeCommune": "59334", + "libelleAcheminement": "LAUWIN PLANQUE", + "nomCommune": "LAUWIN PLANQUE" }, { - "codePostal": "37460", - "codeCommune": "37133", - "libelleAcheminement": "LOCHE SUR INDROIS", - "nomCommune": "LOCHE SUR INDROIS" + "codePostal": "67730", + "codeCommune": "67505", + "libelleAcheminement": "LA VANCELLE", + "nomCommune": "LA VANCELLE" }, { - "codePostal": "07430", - "codeCommune": "07067", - "libelleAcheminement": "COLOMBIER LE CARDINAL", - "nomCommune": "COLOMBIER LE CARDINAL" + "codePostal": "14340", + "codeCommune": "14398", + "libelleAcheminement": "MANERBE", + "nomCommune": "MANERBE" }, { - "codePostal": "63600", - "codeCommune": "63371", - "libelleAcheminement": "ST JUST", - "nomCommune": "ST JUST" + "codePostal": "67190", + "codeCommune": "67299", + "libelleAcheminement": "MOLLKIRCH", + "nomCommune": "MOLLKIRCH" }, { - "codePostal": "44170", - "codeCommune": "44091", - "libelleAcheminement": "MARSAC SUR DON", - "nomCommune": "MARSAC SUR DON" + "codePostal": "57510", + "codeCommune": "57330", + "libelleAcheminement": "HOLVING", + "nomCommune": "HOLVING" }, { - "codePostal": "37800", - "codeCommune": "37142", - "libelleAcheminement": "MAILLE", - "nomCommune": "MAILLE" + "codePostal": "59259", + "codeCommune": "59336", + "libelleAcheminement": "LECLUSE", + "nomCommune": "LECLUSE" }, { - "codePostal": "07630", - "codeCommune": "07075", - "libelleAcheminement": "CROS DE GEORAND", - "nomCommune": "CROS DE GEORAND" + "codePostal": "67360", + "codeCommune": "67511", + "libelleAcheminement": "WALBOURG", + "nomCommune": "WALBOURG" }, { - "codePostal": "63600", - "codeCommune": "63374", - "libelleAcheminement": "ST MARTIN DES OLMES", - "nomCommune": "ST MARTIN DES OLMES" + "codePostal": "14740", + "codeCommune": "14406", + "libelleAcheminement": "MOULINS EN BESSIN", + "nomCommune": "MOULINS EN BESSIN" }, { - "codePostal": "44470", - "codeCommune": "44094", - "libelleAcheminement": "MAUVES SUR LOIRE", - "nomCommune": "MAUVES SUR LOIRE" + "codePostal": "67120", + "codeCommune": "67300", + "libelleAcheminement": "MOLSHEIM", + "nomCommune": "MOLSHEIM" }, { - "codePostal": "37160", - "codeCommune": "37145", - "libelleAcheminement": "MARCE SUR ESVES", - "nomCommune": "MARCE SUR ESVES" + "codePostal": "57470", + "codeCommune": "57332", + "libelleAcheminement": "HOMBOURG HAUT", + "nomCommune": "HOMBOURG HAUT" }, { - "codePostal": "07430", - "codeCommune": "07078", - "libelleAcheminement": "DAVEZIEUX", - "nomCommune": "DAVEZIEUX" + "codePostal": "59143", + "codeCommune": "59337", + "libelleAcheminement": "LEDERZEELE", + "nomCommune": "LEDERZEELE" }, { - "codePostal": "63570", - "codeCommune": "63375", - "libelleAcheminement": "ST MARTIN DES PLAINS", - "nomCommune": "ST MARTIN DES PLAINS" + "codePostal": "67500", + "codeCommune": "67523", + "libelleAcheminement": "WEITBRUCH", + "nomCommune": "WEITBRUCH" }, { - "codePostal": "44520", - "codeCommune": "44095", - "libelleAcheminement": "LA MEILLERAYE DE BRETAGNE", - "nomCommune": "LA MEILLERAYE DE BRETAGNE" + "codePostal": "14380", + "codeCommune": "14424", + "libelleAcheminement": "LE MESNIL ROBERT", + "nomCommune": "LE MESNIL ROBERT" }, { - "codePostal": "37370", - "codeCommune": "37149", - "libelleAcheminement": "MARRAY", - "nomCommune": "MARRAY" + "codePostal": "67360", + "codeCommune": "67303", + "libelleAcheminement": "MORSBRONN LES BAINS", + "nomCommune": "MORSBRONN LES BAINS" }, { - "codePostal": "07570", - "codeCommune": "07079", - "libelleAcheminement": "DESAIGNES", - "nomCommune": "DESAIGNES" + "codePostal": "57510", + "codeCommune": "57337", + "libelleAcheminement": "HOSTE", + "nomCommune": "HOSTE" }, { - "codePostal": "63480", - "codeCommune": "63384", - "libelleAcheminement": "ST PIERRE LA BOURLHONNE", - "nomCommune": "ST PIERRE LA BOURLHONNE" + "codePostal": "59191", + "codeCommune": "59349", + "libelleAcheminement": "LIGNY EN CAMBRESIS", + "nomCommune": "LIGNY EN CAMBRESIS" }, { - "codePostal": "44780", - "codeCommune": "44098", - "libelleAcheminement": "MISSILLAC", - "nomCommune": "MISSILLAC" + "codePostal": "67310", + "codeCommune": "67525", + "libelleAcheminement": "WESTHOFFEN", + "nomCommune": "WESTHOFFEN" }, { - "codePostal": "37530", - "codeCommune": "37158", - "libelleAcheminement": "MONTREUIL EN TOURAINE", - "nomCommune": "MONTREUIL EN TOURAINE" + "codePostal": "14140", + "codeCommune": "14425", + "libelleAcheminement": "LE MESNIL SIMON", + "nomCommune": "LE MESNIL SIMON" }, { - "codePostal": "07380", - "codeCommune": "07087", - "libelleAcheminement": "FABRAS", - "nomCommune": "FABRAS" + "codePostal": "67130", + "codeCommune": "67321", + "libelleAcheminement": "NEUVILLER LA ROCHE", + "nomCommune": "NEUVILLER LA ROCHE" }, { - "codePostal": "63490", - "codeCommune": "63389", - "libelleAcheminement": "ST QUENTIN SUR SAUXILLANGES", - "nomCommune": "ST QUENTIN SUR SAUXILLANGES" + "codePostal": "57400", + "codeCommune": "57344", + "libelleAcheminement": "IMLING", + "nomCommune": "IMLING" }, { - "codePostal": "44520", - "codeCommune": "44099", - "libelleAcheminement": "MOISDON LA RIVIERE", - "nomCommune": "MOISDON LA RIVIERE" + "codePostal": "59530", + "codeCommune": "59353", + "libelleAcheminement": "LOCQUIGNOL", + "nomCommune": "LOCQUIGNOL" }, { - "codePostal": "37210", - "codeCommune": "37171", - "libelleAcheminement": "NOIZAY", - "nomCommune": "NOIZAY" + "codePostal": "67720", + "codeCommune": "67529", + "libelleAcheminement": "WEYERSHEIM", + "nomCommune": "WEYERSHEIM" }, { - "codePostal": "07230", - "codeCommune": "07088", - "libelleAcheminement": "FAUGERES", - "nomCommune": "FAUGERES" + "codePostal": "14690", + "codeCommune": "14427", + "libelleAcheminement": "LE MESNIL VILLEMENT", + "nomCommune": "LE MESNIL VILLEMENT" }, { - "codePostal": "63440", - "codeCommune": "63390", - "libelleAcheminement": "ST QUINTIN SUR SIOULE", - "nomCommune": "ST QUINTIN SUR SIOULE" + "codePostal": "67110", + "codeCommune": "67324", + "libelleAcheminement": "NIEDERBRONN LES BAINS", + "nomCommune": "NIEDERBRONN LES BAINS" }, { - "codePostal": "44370", - "codeCommune": "44104", - "libelleAcheminement": "MONTRELAIS", - "nomCommune": "MONTRELAIS" + "codePostal": "57130", + "codeCommune": "57352", + "libelleAcheminement": "JUSSY", + "nomCommune": "JUSSY" }, { - "codePostal": "37390", - "codeCommune": "37172", - "libelleAcheminement": "NOTRE DAME D OE", - "nomCommune": "NOTRE DAME D OE" + "codePostal": "59110", + "codeCommune": "59368", + "libelleAcheminement": "LA MADELEINE", + "nomCommune": "LA MADELEINE" }, { - "codePostal": "07800", - "codeCommune": "07094", - "libelleAcheminement": "GILHAC ET BRUZAC", - "nomCommune": "GILHAC ET BRUZAC" + "codePostal": "67130", + "codeCommune": "67531", + "libelleAcheminement": "WILDERSBACH", + "nomCommune": "WILDERSBACH" }, { - "codePostal": "63500", - "codeCommune": "63392", - "libelleAcheminement": "ST REMY DE CHARGNAT", - "nomCommune": "ST REMY DE CHARGNAT" + "codePostal": "14960", + "codeCommune": "14430", + "libelleAcheminement": "MEUVAINES", + "nomCommune": "MEUVAINES" }, { - "codePostal": "44590", - "codeCommune": "44105", - "libelleAcheminement": "MOUAIS", - "nomCommune": "MOUAIS" + "codePostal": "67630", + "codeCommune": "67327", + "libelleAcheminement": "NIEDERLAUTERBACH", + "nomCommune": "NIEDERLAUTERBACH" }, { - "codePostal": "37800", - "codeCommune": "37187", - "libelleAcheminement": "PORTS SUR VIENNE", - "nomCommune": "PORTS SUR VIENNE" + "codePostal": "57630", + "codeCommune": "57353", + "libelleAcheminement": "JUVELIZE", + "nomCommune": "JUVELIZE" }, { - "codePostal": "07700", - "codeCommune": "07099", - "libelleAcheminement": "GRAS", - "nomCommune": "GRAS" + "codePostal": "59600", + "codeCommune": "59370", + "libelleAcheminement": "MAIRIEUX", + "nomCommune": "MAIRIEUX" }, { - "codePostal": "63320", - "codeCommune": "63403", - "libelleAcheminement": "ST VINCENT", - "nomCommune": "ST VINCENT" + "codePostal": "67370", + "codeCommune": "67532", + "libelleAcheminement": "WILLGOTTHEIM", + "nomCommune": "WILLGOTTHEIM" }, { - "codePostal": "44850", - "codeCommune": "44107", - "libelleAcheminement": "MOUZEIL", - "nomCommune": "MOUZEIL" + "codePostal": "14140", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "37290", - "codeCommune": "37189", - "libelleAcheminement": "PREUILLY SUR CLAISE", - "nomCommune": "PREUILLY SUR CLAISE" + "codePostal": "67160", + "codeCommune": "67351", + "libelleAcheminement": "SEEBACH", + "nomCommune": "SEEBACH" }, { - "codePostal": "07160", - "codeCommune": "07108", - "libelleAcheminement": "JAUNAC", - "nomCommune": "JAUNAC" + "codePostal": "57330", + "codeCommune": "57356", + "libelleAcheminement": "KANFEN", + "nomCommune": "KANFEN" }, { - "codePostal": "63270", - "codeCommune": "63405", - "libelleAcheminement": "SALLEDES", - "nomCommune": "SALLEDES" + "codePostal": "59134", + "codeCommune": "59371", + "libelleAcheminement": "LE MAISNIL", + "nomCommune": "LE MAISNIL" }, { - "codePostal": "44300", - "codeCommune": "44109", - "libelleAcheminement": "NANTES", - "nomCommune": "NANTES" + "codePostal": "67270", + "codeCommune": "67534", + "libelleAcheminement": "WILWISHEIM", + "nomCommune": "WILWISHEIM" }, { - "codePostal": "37310", - "codeCommune": "37192", - "libelleAcheminement": "REIGNAC SUR INDRE", - "nomCommune": "REIGNAC SUR INDRE" + "codePostal": "14140", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "07600", - "codeCommune": "07112", - "libelleAcheminement": "LABASTIDE SUR BESORGUES", - "nomCommune": "LABASTIDE SUR BESORGUES" + "codePostal": "67160", + "codeCommune": "67351", + "libelleAcheminement": "SEEBACH", + "nomCommune": "SEEBACH" }, { - "codePostal": "63320", - "codeCommune": "63409", - "libelleAcheminement": "SAURIER", - "nomCommune": "SAURIER" + "codePostal": "57920", + "codeCommune": "57358", + "libelleAcheminement": "KEDANGE SUR CANNER", + "nomCommune": "KEDANGE SUR CANNER" }, { - "codePostal": "44700", - "codeCommune": "44114", - "libelleAcheminement": "ORVAULT", - "nomCommune": "ORVAULT" + "codePostal": "59127", + "codeCommune": "59372", + "libelleAcheminement": "MALINCOURT", + "nomCommune": "MALINCOURT" }, { - "codePostal": "37520", - "codeCommune": "37195", - "libelleAcheminement": "LA RICHE", - "nomCommune": "LA RICHE" + "codePostal": "67510", + "codeCommune": "67537", + "libelleAcheminement": "WINGEN", + "nomCommune": "WINGEN" }, { - "codePostal": "07230", - "codeCommune": "07117", - "libelleAcheminement": "LABLACHERE", - "nomCommune": "LABLACHERE" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "63750", - "codeCommune": "63416", - "libelleAcheminement": "SAVENNES", - "nomCommune": "SAVENNES" + "codePostal": "67510", + "codeCommune": "67353", + "libelleAcheminement": "OBERSTEINBACH", + "nomCommune": "OBERSTEINBACH" }, { - "codePostal": "44670", - "codeCommune": "44121", - "libelleAcheminement": "PETIT AUVERNE", - "nomCommune": "PETIT AUVERNE" + "codePostal": "57240", + "codeCommune": "57368", + "libelleAcheminement": "KNUTANGE", + "nomCommune": "KNUTANGE" }, { - "codePostal": "37360", - "codeCommune": "37204", - "libelleAcheminement": "ROUZIERS DE TOURAINE", - "nomCommune": "ROUZIERS DE TOURAINE" + "codePostal": "59440", + "codeCommune": "59374", + "libelleAcheminement": "MARBAIX", + "nomCommune": "MARBAIX" }, { - "codePostal": "07470", - "codeCommune": "07119", - "libelleAcheminement": "LE LAC D ISSARLES", - "nomCommune": "LE LAC D ISSARLES" + "codePostal": "67170", + "codeCommune": "67539", + "libelleAcheminement": "WINGERSHEIM LES QUATRE BANS", + "nomCommune": "WINGERSHEIM LES QUATRE BANS" }, { - "codePostal": "63120", - "codeCommune": "63418", - "libelleAcheminement": "SERMENTIZON", - "nomCommune": "SERMENTIZON" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "44540", - "codeCommune": "44124", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "67150", + "codeCommune": "67364", + "libelleAcheminement": "OSTHOUSE", + "nomCommune": "OSTHOUSE" }, { - "codePostal": "37500", - "codeCommune": "37210", - "libelleAcheminement": "ST BENOIT LA FORET", - "nomCommune": "ST BENOIT LA FORET" + "codePostal": "57480", + "codeCommune": "57371", + "libelleAcheminement": "HAUTE KONTZ", + "nomCommune": "HAUTE KONTZ" }, { - "codePostal": "07470", - "codeCommune": "07121", - "libelleAcheminement": "LACHAPELLE GRAILLOUSE", - "nomCommune": "LACHAPELLE GRAILLOUSE" + "codePostal": "59159", + "codeCommune": "59377", + "libelleAcheminement": "MARCOING", + "nomCommune": "MARCOING" }, { - "codePostal": "63190", - "codeCommune": "63420", - "libelleAcheminement": "SEYCHALLES", - "nomCommune": "SEYCHALLES" + "codePostal": "67360", + "codeCommune": "67550", + "libelleAcheminement": "WOERTH", + "nomCommune": "WOERTH" }, { - "codePostal": "44630", - "codeCommune": "44128", - "libelleAcheminement": "PLESSE", - "nomCommune": "PLESSE" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "37370", - "codeCommune": "37213", - "libelleAcheminement": "ST CHRISTOPHE SUR LE NAIS", - "nomCommune": "ST CHRISTOPHE SUR LE NAIS" + "codePostal": "67700", + "codeCommune": "67366", + "libelleAcheminement": "OTTERSTHAL", + "nomCommune": "OTTERSTHAL" }, { - "codePostal": "07200", - "codeCommune": "07122", - "libelleAcheminement": "LACHAPELLE SOUS AUBENAS", - "nomCommune": "LACHAPELLE SOUS AUBENAS" + "codePostal": "57790", + "codeCommune": "57380", + "libelleAcheminement": "LANEUVEVILLE LES LORQUIN", + "nomCommune": "LANEUVEVILLE LES LORQUIN" }, { - "codePostal": "63690", - "codeCommune": "63421", - "libelleAcheminement": "SINGLES", - "nomCommune": "SINGLES" + "codePostal": "59164", + "codeCommune": "59385", + "libelleAcheminement": "MARPENT", + "nomCommune": "MARPENT" }, { - "codePostal": "44160", - "codeCommune": "44129", - "libelleAcheminement": "PONTCHATEAU", - "nomCommune": "PONTCHATEAU" + "codePostal": "67700", + "codeCommune": "67553", + "libelleAcheminement": "WOLSCHHEIM", + "nomCommune": "WOLSCHHEIM" }, { - "codePostal": "37310", - "codeCommune": "37234", - "libelleAcheminement": "ST QUENTIN SUR INDROIS", - "nomCommune": "ST QUENTIN SUR INDROIS" + "codePostal": "14490", + "codeCommune": "14445", + "libelleAcheminement": "MONTFIQUET", + "nomCommune": "MONTFIQUET" }, { - "codePostal": "07310", - "codeCommune": "07123", - "libelleAcheminement": "LACHAPELLE SOUS CHANEAC", - "nomCommune": "LACHAPELLE SOUS CHANEAC" + "codePostal": "67700", + "codeCommune": "67367", + "libelleAcheminement": "OTTERSWILLER", + "nomCommune": "OTTERSWILLER" }, { - "codePostal": "63500", - "codeCommune": "63422", - "libelleAcheminement": "SOLIGNAT", - "nomCommune": "SOLIGNAT" + "codePostal": "57590", + "codeCommune": "57381", + "libelleAcheminement": "LANEUVEVILLE EN SAULNOIS", + "nomCommune": "LANEUVEVILLE EN SAULNOIS" }, { - "codePostal": "44860", - "codeCommune": "44130", - "libelleAcheminement": "PONT ST MARTIN", - "nomCommune": "PONT ST MARTIN" + "codePostal": "59158", + "codeCommune": "59393", + "libelleAcheminement": "MAULDE", + "nomCommune": "MAULDE" }, { - "codePostal": "37100", - "codeCommune": "37261", - "libelleAcheminement": "TOURS", - "nomCommune": "TOURS" + "codePostal": "67310", + "codeCommune": "67555", + "libelleAcheminement": "ZEHNACKER", + "nomCommune": "ZEHNACKER" }, { - "codePostal": "07520", - "codeCommune": "07124", - "libelleAcheminement": "LAFARRE", - "nomCommune": "LAFARRE" + "codePostal": "14340", + "codeCommune": "14448", + "libelleAcheminement": "MONTREUIL EN AUGE", + "nomCommune": "MONTREUIL EN AUGE" }, { - "codePostal": "63450", - "codeCommune": "63425", - "libelleAcheminement": "TALLENDE", - "nomCommune": "TALLENDE" + "codePostal": "67320", + "codeCommune": "67369", + "libelleAcheminement": "OTTWILLER", + "nomCommune": "OTTWILLER" }, { - "codePostal": "44390", - "codeCommune": "44138", - "libelleAcheminement": "PUCEUL", - "nomCommune": "PUCEUL" + "codePostal": "57810", + "codeCommune": "57383", + "libelleAcheminement": "LANGUIMBERG", + "nomCommune": "LANGUIMBERG" }, { - "codePostal": "37220", - "codeCommune": "37262", - "libelleAcheminement": "TROGUES", - "nomCommune": "TROGUES" + "codePostal": "59570", + "codeCommune": "59396", + "libelleAcheminement": "MECQUIGNIES", + "nomCommune": "MECQUIGNIES" }, { - "codePostal": "07200", - "codeCommune": "07131", - "libelleAcheminement": "LANAS", - "nomCommune": "LANAS" + "codePostal": "67310", + "codeCommune": "67556", + "libelleAcheminement": "ZEINHEIM", + "nomCommune": "ZEINHEIM" }, { - "codePostal": "63260", - "codeCommune": "63432", - "libelleAcheminement": "THURET", - "nomCommune": "THURET" + "codePostal": "14400", + "codeCommune": "14465", + "libelleAcheminement": "NONANT", + "nomCommune": "NONANT" }, { - "codePostal": "44330", - "codeCommune": "44140", - "libelleAcheminement": "LA REGRIPPIERE", - "nomCommune": "LA REGRIPPIERE" + "codePostal": "67350", + "codeCommune": "67372", + "libelleAcheminement": "VAL DE MODER", + "nomCommune": "VAL DE MODER" }, { - "codePostal": "37270", - "codeCommune": "37267", - "libelleAcheminement": "VERETZ", - "nomCommune": "VERETZ" + "codePostal": "57480", + "codeCommune": "57387", + "libelleAcheminement": "LAUMESFELD", + "nomCommune": "LAUMESFELD" }, { - "codePostal": "07110", - "codeCommune": "07134", - "libelleAcheminement": "LAURAC EN VIVARAIS", - "nomCommune": "LAURAC EN VIVARAIS" + "codePostal": "59470", + "codeCommune": "59397", + "libelleAcheminement": "MERCKEGHEM", + "nomCommune": "MERCKEGHEM" }, { - "codePostal": "63590", - "codeCommune": "63434", - "libelleAcheminement": "TOURS SUR MEYMONT", - "nomCommune": "TOURS SUR MEYMONT" + "codePostal": "68770", + "codeCommune": "68005", + "libelleAcheminement": "AMMERSCHWIHR", + "nomCommune": "AMMERSCHWIHR" }, { - "codePostal": "44140", - "codeCommune": "44142", - "libelleAcheminement": "REMOUILLE", - "nomCommune": "REMOUILLE" + "codePostal": "14340", + "codeCommune": "14474", + "libelleAcheminement": "NOTRE DAME D ESTREES CORBON", + "nomCommune": "NOTRE DAME D ESTREES CORBON" }, { - "codePostal": "37210", - "codeCommune": "37270", - "libelleAcheminement": "VERNOU SUR BRENNE", - "nomCommune": "VERNOU SUR BRENNE" + "codePostal": "67320", + "codeCommune": "67373", + "libelleAcheminement": "PFALZWEYER", + "nomCommune": "PFALZWEYER" }, { - "codePostal": "07530", - "codeCommune": "07139", - "libelleAcheminement": "LAVIOLLE", - "nomCommune": "LAVIOLLE" + "codePostal": "57580", + "codeCommune": "57392", + "libelleAcheminement": "LEMUD", + "nomCommune": "LEMUD" }, { - "codePostal": "63910", - "codeCommune": "63445", - "libelleAcheminement": "VASSEL", - "nomCommune": "VASSEL" + "codePostal": "59234", + "codeCommune": "59409", + "libelleAcheminement": "MONCHECOURT", + "nomCommune": "MONCHECOURT" }, { - "codePostal": "44660", - "codeCommune": "44148", - "libelleAcheminement": "RUFFIGNE", - "nomCommune": "RUFFIGNE" + "codePostal": "68320", + "codeCommune": "68009", + "libelleAcheminement": "ARTZENHEIM", + "nomCommune": "ARTZENHEIM" }, { - "codePostal": "37460", - "codeCommune": "37277", - "libelleAcheminement": "VILLELOIN COULANGE", - "nomCommune": "VILLELOIN COULANGE" + "codePostal": "14220", + "codeCommune": "14483", + "libelleAcheminement": "OUFFIERES", + "nomCommune": "OUFFIERES" }, { - "codePostal": "07610", - "codeCommune": "07140", - "libelleAcheminement": "LEMPS", - "nomCommune": "LEMPS" + "codePostal": "67110", + "codeCommune": "67388", + "libelleAcheminement": "REICHSHOFFEN", + "nomCommune": "REICHSHOFFEN" }, { - "codePostal": "63330", - "codeCommune": "63447", - "libelleAcheminement": "VERGHEAS", - "nomCommune": "VERGHEAS" + "codePostal": "57720", + "codeCommune": "57393", + "libelleAcheminement": "LENGELSHEIM", + "nomCommune": "LENGELSHEIM" }, { - "codePostal": "44650", - "codeCommune": "44156", - "libelleAcheminement": "CORCOUE SUR LOGNE", - "nomCommune": "CORCOUE SUR LOGNE" + "codePostal": "59370", + "codeCommune": "59410", + "libelleAcheminement": "MONS EN BAROEUL", + "nomCommune": "MONS EN BAROEUL" }, { - "codePostal": "37290", - "codeCommune": "37282", - "libelleAcheminement": "YZEURES SUR CREUSE", - "nomCommune": "YZEURES SUR CREUSE" + "codePostal": "68700", + "codeCommune": "68012", + "libelleAcheminement": "ASPACH MICHELBACH", + "nomCommune": "ASPACH MICHELBACH" }, { - "codePostal": "07140", - "codeCommune": "07147", - "libelleAcheminement": "MALARCE SUR LA THINES", - "nomCommune": "MALARCE SUR LA THINES" + "codePostal": "14100", + "codeCommune": "14487", + "libelleAcheminement": "OUILLY LE VICOMTE", + "nomCommune": "OUILLY LE VICOMTE" }, { - "codePostal": "63470", - "codeCommune": "63450", - "libelleAcheminement": "VERNEUGHEOL", - "nomCommune": "VERNEUGHEOL" + "codePostal": "67110", + "codeCommune": "67388", + "libelleAcheminement": "REICHSHOFFEN", + "nomCommune": "REICHSHOFFEN" }, { - "codePostal": "44650", - "codeCommune": "44156", - "libelleAcheminement": "CORCOUE SUR LOGNE", - "nomCommune": "CORCOUE SUR LOGNE" + "codePostal": "57670", + "codeCommune": "57394", + "libelleAcheminement": "LENING", + "nomCommune": "LENING" }, { - "codePostal": "38630", - "codeCommune": "38022", - "libelleAcheminement": "LES AVENIERES VEYRINS THUELLIN", - "nomCommune": "LES AVENIERES VEYRINS THUELLIN" + "codePostal": "59360", + "codeCommune": "59412", + "libelleAcheminement": "MONTAY", + "nomCommune": "MONTAY" }, { - "codePostal": "07320", - "codeCommune": "07151", - "libelleAcheminement": "MARS", - "nomCommune": "MARS" + "codePostal": "68210", + "codeCommune": "68017", + "libelleAcheminement": "BALLERSDORF", + "nomCommune": "BALLERSDORF" }, { - "codePostal": "63210", - "codeCommune": "63451", - "libelleAcheminement": "VERNINES", - "nomCommune": "VERNINES" + "codePostal": "14310", + "codeCommune": "14491", + "libelleAcheminement": "PARFOURU SUR ODON", + "nomCommune": "PARFOURU SUR ODON" }, { - "codePostal": "44190", - "codeCommune": "44165", - "libelleAcheminement": "ST HILAIRE DE CLISSON", - "nomCommune": "ST HILAIRE DE CLISSON" + "codePostal": "67250", + "codeCommune": "67394", + "libelleAcheminement": "RETSCHWILLER", + "nomCommune": "RETSCHWILLER" }, { - "codePostal": "38270", - "codeCommune": "38034", - "libelleAcheminement": "BEAUREPAIRE", - "nomCommune": "BEAUREPAIRE" + "codePostal": "57160", + "codeCommune": "57396", + "libelleAcheminement": "LESSY", + "nomCommune": "LESSY" }, { - "codePostal": "07510", - "codeCommune": "07154", - "libelleAcheminement": "MAZAN L ABBAYE", - "nomCommune": "MAZAN L ABBAYE" + "codePostal": "59161", + "codeCommune": "59422", + "libelleAcheminement": "NAVES", + "nomCommune": "NAVES" }, { - "codePostal": "63270", - "codeCommune": "63457", - "libelleAcheminement": "VIC LE COMTE", - "nomCommune": "VIC LE COMTE" + "codePostal": "68490", + "codeCommune": "68020", + "libelleAcheminement": "BANTZENHEIM", + "nomCommune": "BANTZENHEIM" }, { - "codePostal": "44450", - "codeCommune": "44169", - "libelleAcheminement": "ST JULIEN DE CONCELLES", - "nomCommune": "ST JULIEN DE CONCELLES" + "codePostal": "14112", + "codeCommune": "14495", + "libelleAcheminement": "PERIERS SUR LE DAN", + "nomCommune": "PERIERS SUR LE DAN" }, { - "codePostal": "38160", - "codeCommune": "38041", - "libelleAcheminement": "BESSINS", - "nomCommune": "BESSINS" + "codePostal": "67440", + "codeCommune": "67395", + "libelleAcheminement": "REUTENBOURG", + "nomCommune": "REUTENBOURG" }, { - "codePostal": "07170", - "codeCommune": "07159", - "libelleAcheminement": "MIRABEL", - "nomCommune": "MIRABEL" + "codePostal": "57260", + "codeCommune": "57405", + "libelleAcheminement": "LINDRE HAUTE", + "nomCommune": "LINDRE HAUTE" }, { - "codePostal": "63410", - "codeCommune": "63464", - "libelleAcheminement": "VITRAC", - "nomCommune": "VITRAC" + "codePostal": "59293", + "codeCommune": "59429", + "libelleAcheminement": "NEUVILLE SUR ESCAUT", + "nomCommune": "NEUVILLE SUR ESCAUT" }, { - "codePostal": "44670", - "codeCommune": "44170", - "libelleAcheminement": "ST JULIEN DE VOUVANTES", - "nomCommune": "ST JULIEN DE VOUVANTES" + "codePostal": "68210", + "codeCommune": "68024", + "libelleAcheminement": "BELLEMAGNY", + "nomCommune": "BELLEMAGNY" }, { - "codePostal": "38730", - "codeCommune": "38047", - "libelleAcheminement": "BLANDIN", - "nomCommune": "BLANDIN" + "codePostal": "14380", + "codeCommune": "14511", + "libelleAcheminement": "PONT BELLANGER", + "nomCommune": "PONT BELLANGER" }, { - "codePostal": "07560", - "codeCommune": "07161", - "libelleAcheminement": "MONTPEZAT SOUS BAUZON", - "nomCommune": "MONTPEZAT SOUS BAUZON" + "codePostal": "67320", + "codeCommune": "67396", + "libelleAcheminement": "REXINGEN", + "nomCommune": "REXINGEN" }, { - "codePostal": "63840", - "codeCommune": "63465", - "libelleAcheminement": "VIVEROLS", - "nomCommune": "VIVEROLS" + "codePostal": "57635", + "codeCommune": "57407", + "libelleAcheminement": "LIXHEIM", + "nomCommune": "LIXHEIM" }, { - "codePostal": "44680", - "codeCommune": "44178", - "libelleAcheminement": "ST MARS DE COUTAIS", - "nomCommune": "ST MARS DE COUTAIS" + "codePostal": "59230", + "codeCommune": "59434", + "libelleAcheminement": "NIVELLE", + "nomCommune": "NIVELLE" }, { - "codePostal": "38510", - "codeCommune": "38055", - "libelleAcheminement": "BRANGUES", - "nomCommune": "BRANGUES" + "codePostal": "68480", + "codeCommune": "68025", + "libelleAcheminement": "BENDORF", + "nomCommune": "BENDORF" }, { - "codePostal": "07160", - "codeCommune": "07165", - "libelleAcheminement": "BELSENTES", - "nomCommune": "BELSENTES" + "codePostal": "14340", + "codeCommune": "14520", + "libelleAcheminement": "LE PRE D AUGE", + "nomCommune": "LE PRE D AUGE" }, { - "codePostal": "63500", - "codeCommune": "63466", - "libelleAcheminement": "VODABLE", - "nomCommune": "VODABLE" + "codePostal": "67390", + "codeCommune": "67398", + "libelleAcheminement": "RICHTOLSHEIM", + "nomCommune": "RICHTOLSHEIM" }, { - "codePostal": "44350", - "codeCommune": "44183", - "libelleAcheminement": "ST MOLF", - "nomCommune": "ST MOLF" + "codePostal": "57050", + "codeCommune": "57412", + "libelleAcheminement": "LONGEVILLE LES METZ", + "nomCommune": "LONGEVILLE LES METZ" }, { - "codePostal": "38320", - "codeCommune": "38059", - "libelleAcheminement": "BRIE ET ANGONNES", - "nomCommune": "BRIE ET ANGONNES" + "codePostal": "59530", + "codeCommune": "59451", + "libelleAcheminement": "ORSINVAL", + "nomCommune": "ORSINVAL" }, { - "codePostal": "07270", - "codeCommune": "07166", - "libelleAcheminement": "NOZIERES", - "nomCommune": "NOZIERES" + "codePostal": "68130", + "codeCommune": "68027", + "libelleAcheminement": "BERENTZWILLER", + "nomCommune": "BERENTZWILLER" }, { - "codePostal": "63620", - "codeCommune": "63467", - "libelleAcheminement": "VOINGT", - "nomCommune": "VOINGT" + "codePostal": "14140", + "codeCommune": "14522", + "libelleAcheminement": "PRETREVILLE", + "nomCommune": "PRETREVILLE" }, { - "codePostal": "44600", - "codeCommune": "44184", - "libelleAcheminement": "ST NAZAIRE", - "nomCommune": "ST NAZAIRE" + "codePostal": "67690", + "codeCommune": "67404", + "libelleAcheminement": "RITTERSHOFFEN", + "nomCommune": "RITTERSHOFFEN" }, { - "codePostal": "38110", - "codeCommune": "38064", - "libelleAcheminement": "CESSIEU", - "nomCommune": "CESSIEU" + "codePostal": "57790", + "codeCommune": "57414", + "libelleAcheminement": "LORQUIN", + "nomCommune": "LORQUIN" }, { - "codePostal": "07340", - "codeCommune": "07174", - "libelleAcheminement": "PEYRAUD", - "nomCommune": "PEYRAUD" + "codePostal": "59670", + "codeCommune": "59453", + "libelleAcheminement": "OUDEZEELE", + "nomCommune": "OUDEZEELE" }, { - "codePostal": "63530", - "codeCommune": "63470", - "libelleAcheminement": "VOLVIC", - "nomCommune": "VOLVIC" + "codePostal": "68500", + "codeCommune": "68030", + "libelleAcheminement": "BERGHOLTZZELL", + "nomCommune": "BERGHOLTZZELL" }, { - "codePostal": "44460", - "codeCommune": "44185", - "libelleAcheminement": "ST NICOLAS DE REDON", - "nomCommune": "ST NICOLAS DE REDON" + "codePostal": "14400", + "codeCommune": "14529", + "libelleAcheminement": "RANCHY", + "nomCommune": "RANCHY" }, { - "codePostal": "38560", - "codeCommune": "38071", - "libelleAcheminement": "CHAMP SUR DRAC", - "nomCommune": "CHAMP SUR DRAC" + "codePostal": "67230", + "codeCommune": "67433", + "libelleAcheminement": "SAND", + "nomCommune": "SAND" }, { - "codePostal": "07590", - "codeCommune": "07175", - "libelleAcheminement": "LE PLAGNAL", - "nomCommune": "LE PLAGNAL" + "codePostal": "57670", + "codeCommune": "57417", + "libelleAcheminement": "LOSTROFF", + "nomCommune": "LOSTROFF" }, { - "codePostal": "64460", - "codeCommune": "64001", - "libelleAcheminement": "AAST", - "nomCommune": "AAST" + "codePostal": "59840", + "codeCommune": "59457", + "libelleAcheminement": "PERENCHIES", + "nomCommune": "PERENCHIES" }, { - "codePostal": "44320", - "codeCommune": "44187", - "libelleAcheminement": "ST PERE EN RETZ", - "nomCommune": "ST PERE EN RETZ" + "codePostal": "68480", + "codeCommune": "68035", + "libelleAcheminement": "BIEDERTHAL", + "nomCommune": "BIEDERTHAL" }, { - "codePostal": "38150", - "codeCommune": "38072", - "libelleAcheminement": "CHANAS", - "nomCommune": "CHANAS" + "codePostal": "14100", + "codeCommune": "14540", + "libelleAcheminement": "ROCQUES", + "nomCommune": "ROCQUES" }, { - "codePostal": "07380", - "codeCommune": "07182", - "libelleAcheminement": "PRADES", - "nomCommune": "PRADES" + "codePostal": "67700", + "codeCommune": "67437", + "libelleAcheminement": "SAVERNE", + "nomCommune": "SAVERNE" }, { - "codePostal": "64490", - "codeCommune": "64006", - "libelleAcheminement": "ACCOUS", - "nomCommune": "ACCOUS" + "codePostal": "57730", + "codeCommune": "57428", + "libelleAcheminement": "MACHEREN", + "nomCommune": "MACHEREN" }, { - "codePostal": "44530", - "codeCommune": "44196", - "libelleAcheminement": "SEVERAC", - "nomCommune": "SEVERAC" + "codePostal": "59840", + "codeCommune": "59470", + "libelleAcheminement": "PREMESQUES", + "nomCommune": "PREMESQUES" }, { - "codePostal": "38150", - "codeCommune": "38077", - "libelleAcheminement": "LA CHAPELLE DE SURIEU", - "nomCommune": "LA CHAPELLE DE SURIEU" + "codePostal": "68600", + "codeCommune": "68036", + "libelleAcheminement": "BIESHEIM", + "nomCommune": "BIESHEIM" }, { - "codePostal": "07000", - "codeCommune": "07184", - "libelleAcheminement": "PRANLES", - "nomCommune": "PRANLES" + "codePostal": "14400", + "codeCommune": "14552", + "libelleAcheminement": "RYES", + "nomCommune": "RYES" }, { - "codePostal": "64400", - "codeCommune": "64007", - "libelleAcheminement": "AGNOS", - "nomCommune": "AGNOS" + "codePostal": "67470", + "codeCommune": "67440", + "libelleAcheminement": "SCHAFFHOUSE PRES SELTZ", + "nomCommune": "SCHAFFHOUSE PRES SELTZ" }, { - "codePostal": "44240", - "codeCommune": "44201", - "libelleAcheminement": "SUCE SUR ERDRE", - "nomCommune": "SUCE SUR ERDRE" + "codePostal": "57530", + "codeCommune": "57431", + "libelleAcheminement": "MAIZEROY", + "nomCommune": "MAIZEROY" }, { - "codePostal": "38140", - "codeCommune": "38084", - "libelleAcheminement": "CHARNECLES", - "nomCommune": "CHARNECLES" + "codePostal": "59288", + "codeCommune": "59472", + "libelleAcheminement": "PREUX AU BOIS", + "nomCommune": "PREUX AU BOIS" }, { - "codePostal": "07290", - "codeCommune": "07185", - "libelleAcheminement": "PREAUX", - "nomCommune": "PREAUX" + "codePostal": "68740", + "codeCommune": "68041", + "libelleAcheminement": "BLODELSHEIM", + "nomCommune": "BLODELSHEIM" }, { - "codePostal": "64390", - "codeCommune": "64022", - "libelleAcheminement": "ANDREIN", - "nomCommune": "ANDREIN" + "codePostal": "14970", + "codeCommune": "14558", + "libelleAcheminement": "ST AUBIN D ARQUENAY", + "nomCommune": "ST AUBIN D ARQUENAY" }, { - "codePostal": "44650", - "codeCommune": "44206", - "libelleAcheminement": "TOUVOIS", - "nomCommune": "TOUVOIS" + "codePostal": "67310", + "codeCommune": "67442", + "libelleAcheminement": "SCHARRACHBERGHEIM IRMSTETT", + "nomCommune": "SCHARRACHBERGHEIM IRMSTETT" }, { - "codePostal": "38730", - "codeCommune": "38089", - "libelleAcheminement": "CHASSIGNIEU", - "nomCommune": "CHASSIGNIEU" + "codePostal": "57480", + "codeCommune": "57439", + "libelleAcheminement": "MANDEREN RITZING", + "nomCommune": "MANDEREN RITZING" }, { - "codePostal": "07260", - "codeCommune": "07189", - "libelleAcheminement": "RIBES", - "nomCommune": "RIBES" + "codePostal": "59269", + "codeCommune": "59480", + "libelleAcheminement": "QUERENAING", + "nomCommune": "QUERENAING" }, { - "codePostal": "64570", - "codeCommune": "64040", - "libelleAcheminement": "ARETTE", - "nomCommune": "ARETTE" + "codePostal": "68540", + "codeCommune": "68043", + "libelleAcheminement": "BOLLWILLER", + "nomCommune": "BOLLWILLER" }, { - "codePostal": "44440", - "codeCommune": "44207", - "libelleAcheminement": "TRANS SUR ERDRE", - "nomCommune": "TRANS SUR ERDRE" + "codePostal": "14380", + "codeCommune": "14559", + "libelleAcheminement": "ST AUBIN DES BOIS", + "nomCommune": "ST AUBIN DES BOIS" }, { - "codePostal": "38440", - "codeCommune": "38094", - "libelleAcheminement": "CHATONNAY", - "nomCommune": "CHATONNAY" + "codePostal": "67240", + "codeCommune": "67450", + "libelleAcheminement": "SCHIRRHOFFEN", + "nomCommune": "SCHIRRHOFFEN" }, { - "codePostal": "07200", - "codeCommune": "07190", - "libelleAcheminement": "ROCHECOLOMBE", - "nomCommune": "ROCHECOLOMBE" + "codePostal": "57100", + "codeCommune": "57441", + "libelleAcheminement": "MANOM", + "nomCommune": "MANOM" }, { - "codePostal": "64120", - "codeCommune": "64051", - "libelleAcheminement": "ARRAUTE CHARRITTE", - "nomCommune": "ARRAUTE CHARRITTE" + "codePostal": "59530", + "codeCommune": "59481", + "libelleAcheminement": "LE QUESNOY", + "nomCommune": "LE QUESNOY" }, { - "codePostal": "44420", - "codeCommune": "44211", - "libelleAcheminement": "LA TURBALLE", - "nomCommune": "LA TURBALLE" + "codePostal": "68380", + "codeCommune": "68051", + "libelleAcheminement": "BREITENBACH", + "nomCommune": "BREITENBACH HAUT RHIN" }, { - "codePostal": "38230", - "codeCommune": "38097", - "libelleAcheminement": "CHAVANOZ", - "nomCommune": "CHAVANOZ" + "codePostal": "14290", + "codeCommune": "14570", + "libelleAcheminement": "VALORBIQUET", + "nomCommune": "VALORBIQUET" }, { - "codePostal": "07320", - "codeCommune": "07192", - "libelleAcheminement": "ROCHEPAULE", - "nomCommune": "ROCHEPAULE" + "codePostal": "67390", + "codeCommune": "67453", + "libelleAcheminement": "SCHOENAU", + "nomCommune": "SCHOENAU" }, { - "codePostal": "64800", - "codeCommune": "64054", - "libelleAcheminement": "ARROS DE NAY", - "nomCommune": "ARROS DE NAY" + "codePostal": "57420", + "codeCommune": "57445", + "libelleAcheminement": "MARIEULLES", + "nomCommune": "MARIEULLES" }, { - "codePostal": "44370", - "codeCommune": "44213", - "libelleAcheminement": "LOIREAUXENCE", - "nomCommune": "LOIREAUXENCE" + "codePostal": "59214", + "codeCommune": "59485", + "libelleAcheminement": "QUIEVY", + "nomCommune": "QUIEVY" }, { - "codePostal": "38730", - "codeCommune": "38098", - "libelleAcheminement": "CHELIEU", - "nomCommune": "CHELIEU" + "codePostal": "68520", + "codeCommune": "68060", + "libelleAcheminement": "BURNHAUPT LE HAUT", + "nomCommune": "BURNHAUPT LE HAUT" }, { - "codePostal": "07210", - "codeCommune": "07194", - "libelleAcheminement": "ROCHESSAUVE", - "nomCommune": "ROCHESSAUVE" + "codePostal": "14290", + "codeCommune": "14570", + "libelleAcheminement": "VALORBIQUET", + "nomCommune": "VALORBIQUET" }, { - "codePostal": "64230", - "codeCommune": "64060", - "libelleAcheminement": "ARTIGUELOUVE", - "nomCommune": "ARTIGUELOUVE" + "codePostal": "67600", + "codeCommune": "67462", + "libelleAcheminement": "SELESTAT", + "nomCommune": "SELESTAT" }, { - "codePostal": "44120", - "codeCommune": "44215", - "libelleAcheminement": "VERTOU", - "nomCommune": "VERTOU" + "codePostal": "57220", + "codeCommune": "57455", + "libelleAcheminement": "MEGANGE", + "nomCommune": "MEGANGE" }, { - "codePostal": "38121", - "codeCommune": "38107", - "libelleAcheminement": "CHONAS L AMBALLAN", - "nomCommune": "CHONAS L AMBALLAN" + "codePostal": "59554", + "codeCommune": "59488", + "libelleAcheminement": "RAILLENCOURT STE OLLE", + "nomCommune": "RAILLENCOURT STE OLLE" }, { - "codePostal": "07600", - "codeCommune": "07210", - "libelleAcheminement": "ST ANDEOL DE VALS", - "nomCommune": "ST ANDEOL DE VALS" + "codePostal": "68130", + "codeCommune": "68062", + "libelleAcheminement": "CARSPACH", + "nomCommune": "CARSPACH" }, { - "codePostal": "64410", - "codeCommune": "64063", - "libelleAcheminement": "ARZACQ ARRAZIGUET", - "nomCommune": "ARZACQ ARRAZIGUET" + "codePostal": "14140", + "codeCommune": "14576", + "libelleAcheminement": "VAL DE VIE", + "nomCommune": "VAL DE VIE" }, { - "codePostal": "44110", - "codeCommune": "44218", - "libelleAcheminement": "VILLEPOT", - "nomCommune": "VILLEPOT" + "codePostal": "67160", + "codeCommune": "67466", + "libelleAcheminement": "SIEGEN", + "nomCommune": "SIEGEN" }, { - "codePostal": "38142", - "codeCommune": "38112", - "libelleAcheminement": "CLAVANS EN HAUT OISANS", - "nomCommune": "CLAVANS EN HAUT OISANS" + "codePostal": "57960", + "codeCommune": "57456", + "libelleAcheminement": "MEISENTHAL", + "nomCommune": "MEISENTHAL" }, { - "codePostal": "07300", - "codeCommune": "07217", - "libelleAcheminement": "ST BARTHELEMY LE PLAIN", - "nomCommune": "ST BARTHELEMY LE PLAIN" + "codePostal": "59177", + "codeCommune": "59493", + "libelleAcheminement": "RAMOUSIES", + "nomCommune": "RAMOUSIES" }, { - "codePostal": "64220", - "codeCommune": "64066", - "libelleAcheminement": "ASCARAT", - "nomCommune": "ASCARAT" + "codePostal": "68210", + "codeCommune": "68068", + "libelleAcheminement": "DANNEMARIE", + "nomCommune": "DANNEMARIE" }, { - "codePostal": "45200", - "codeCommune": "45004", - "libelleAcheminement": "AMILLY", - "nomCommune": "AMILLY" + "codePostal": "14260", + "codeCommune": "14579", + "libelleAcheminement": "SEULLINE", + "nomCommune": "SEULLINE" }, { - "codePostal": "38690", - "codeCommune": "38118", - "libelleAcheminement": "COLOMBE", - "nomCommune": "COLOMBE" + "codePostal": "67320", + "codeCommune": "67467", + "libelleAcheminement": "SIEWILLER", + "nomCommune": "SIEWILLER" }, { - "codePostal": "07380", - "codeCommune": "07223", - "libelleAcheminement": "ST CIRGUES DE PRADES", - "nomCommune": "ST CIRGUES DE PRADES" + "codePostal": "57480", + "codeCommune": "57459", + "libelleAcheminement": "MERSCHWEILLER", + "nomCommune": "MERSCHWEILLER" }, { - "codePostal": "64450", - "codeCommune": "64078", - "libelleAcheminement": "AURIAC", - "nomCommune": "AURIAC" + "codePostal": "59245", + "codeCommune": "59495", + "libelleAcheminement": "RECQUIGNIES", + "nomCommune": "RECQUIGNIES" }, { - "codePostal": "45340", - "codeCommune": "45018", - "libelleAcheminement": "AUXY", - "nomCommune": "AUXY" + "codePostal": "68600", + "codeCommune": "68069", + "libelleAcheminement": "DESSENHEIM", + "nomCommune": "DESSENHEIM" }, { - "codePostal": "38190", - "codeCommune": "38120", - "libelleAcheminement": "LA COMBE DE LANCEY", - "nomCommune": "LA COMBE DE LANCEY" + "codePostal": "14100", + "codeCommune": "14582", + "libelleAcheminement": "ST GERMAIN DE LIVET", + "nomCommune": "ST GERMAIN DE LIVET" }, { - "codePostal": "07430", - "codeCommune": "07225", - "libelleAcheminement": "ST CLAIR", - "nomCommune": "ST CLAIR" + "codePostal": "67620", + "codeCommune": "67472", + "libelleAcheminement": "SOUFFLENHEIM", + "nomCommune": "SOUFFLENHEIM" }, { - "codePostal": "64350", - "codeCommune": "64079", - "libelleAcheminement": "AURIONS IDERNES", - "nomCommune": "AURIONS IDERNES" + "codePostal": "57940", + "codeCommune": "57465", + "libelleAcheminement": "METZERVISSE", + "nomCommune": "METZERVISSE" }, { - "codePostal": "45130", - "codeCommune": "45019", - "libelleAcheminement": "BACCON", - "nomCommune": "BACCON" + "codePostal": "59122", + "codeCommune": "59499", + "libelleAcheminement": "REXPOEDE", + "nomCommune": "REXPOEDE" }, { - "codePostal": "38630", - "codeCommune": "38124", - "libelleAcheminement": "CORBELIN", - "nomCommune": "CORBELIN" + "codePostal": "68140", + "codeCommune": "68083", + "libelleAcheminement": "ESCHBACH AU VAL", + "nomCommune": "ESCHBACH AU VAL" }, { - "codePostal": "07340", - "codeCommune": "07228", - "libelleAcheminement": "ST DESIRAT", - "nomCommune": "ST DESIRAT" + "codePostal": "14230", + "codeCommune": "14586", + "libelleAcheminement": "ST GERMAIN DU PERT", + "nomCommune": "ST GERMAIN DU PERT" }, { - "codePostal": "64230", - "codeCommune": "64080", - "libelleAcheminement": "AUSSEVIELLE", - "nomCommune": "AUSSEVIELLE" + "codePostal": "67250", + "codeCommune": "67474", + "libelleAcheminement": "SOULTZ SOUS FORETS", + "nomCommune": "SOULTZ SOUS FORETS" }, { - "codePostal": "45190", - "codeCommune": "45028", - "libelleAcheminement": "BEAUGENCY", - "nomCommune": "BEAUGENCY" + "codePostal": "57810", + "codeCommune": "57473", + "libelleAcheminement": "MONCOURT", + "nomCommune": "MONCOURT" }, { - "codePostal": "38700", - "codeCommune": "38126", - "libelleAcheminement": "CORENC", - "nomCommune": "CORENC" + "codePostal": "59172", + "codeCommune": "59504", + "libelleAcheminement": "ROEULX", + "nomCommune": "ROEULX" }, { - "codePostal": "07340", - "codeCommune": "07234", - "libelleAcheminement": "ST ETIENNE DE VALOUX", - "nomCommune": "ST ETIENNE DE VALOUX" + "codePostal": "68210", + "codeCommune": "68086", + "libelleAcheminement": "FALKWILLER", + "nomCommune": "FALKWILLER" }, { - "codePostal": "64130", - "codeCommune": "64081", - "libelleAcheminement": "AUSSURUCQ", - "nomCommune": "AUSSURUCQ" + "codePostal": "14190", + "codeCommune": "14589", + "libelleAcheminement": "ST GERMAIN LE VASSON", + "nomCommune": "ST GERMAIN LE VASSON" }, { - "codePostal": "45340", - "codeCommune": "45030", - "libelleAcheminement": "BEAUNE LA ROLANDE", - "nomCommune": "BEAUNE LA ROLANDE" + "codePostal": "67310", + "codeCommune": "67492", + "libelleAcheminement": "TRAENHEIM", + "nomCommune": "TRAENHEIM" }, { - "codePostal": "38300", - "codeCommune": "38136", - "libelleAcheminement": "CRACHIER", - "nomCommune": "CRACHIER" + "codePostal": "57920", + "codeCommune": "57476", + "libelleAcheminement": "MONNEREN", + "nomCommune": "MONNEREN" }, { - "codePostal": "07170", - "codeCommune": "07241", - "libelleAcheminement": "ST GERMAIN", - "nomCommune": "ST GERMAIN" + "codePostal": "59223", + "codeCommune": "59508", + "libelleAcheminement": "RONCQ", + "nomCommune": "RONCQ" }, { - "codePostal": "64510", - "codeCommune": "64091", - "libelleAcheminement": "BALIROS", - "nomCommune": "BALIROS" + "codePostal": "68480", + "codeCommune": "68090", + "libelleAcheminement": "FERRETTE", + "nomCommune": "FERRETTE" }, { - "codePostal": "45270", - "codeCommune": "45031", - "libelleAcheminement": "BELLEGARDE", - "nomCommune": "BELLEGARDE" + "codePostal": "14240", + "codeCommune": "14590", + "libelleAcheminement": "STE HONORINE DE DUCY", + "nomCommune": "STE HONORINE DE DUCY" }, { - "codePostal": "38300", - "codeCommune": "38141", - "libelleAcheminement": "CULIN", - "nomCommune": "CULIN" + "codePostal": "67220", + "codeCommune": "67493", + "libelleAcheminement": "TRIEMBACH AU VAL", + "nomCommune": "TRIEMBACH AU VAL" }, { - "codePostal": "07160", - "codeCommune": "07248", - "libelleAcheminement": "ST JEAN ROURE", - "nomCommune": "ST JEAN ROURE" + "codePostal": "57415", + "codeCommune": "57477", + "libelleAcheminement": "MONTBRONN", + "nomCommune": "MONTBRONN" }, { - "codePostal": "64430", - "codeCommune": "64092", - "libelleAcheminement": "BANCA", - "nomCommune": "BANCA" + "codePostal": "59530", + "codeCommune": "59518", + "libelleAcheminement": "RUESNES", + "nomCommune": "RUESNES" }, { - "codePostal": "45340", - "codeCommune": "45041", - "libelleAcheminement": "BORDEAUX EN GATINAIS", - "nomCommune": "BORDEAUX EN GATINAIS" + "codePostal": "68720", + "codeCommune": "68099", + "libelleAcheminement": "FROENINGEN", + "nomCommune": "FROENINGEN" }, { - "codePostal": "38790", - "codeCommune": "38144", - "libelleAcheminement": "DIEMOZ", - "nomCommune": "DIEMOZ" + "codePostal": "14210", + "codeCommune": "14592", + "libelleAcheminement": "STE HONORINE DU FAY", + "nomCommune": "STE HONORINE DU FAY" }, { - "codePostal": "07000", - "codeCommune": "07255", - "libelleAcheminement": "ST JULIEN EN ST ALBAN", - "nomCommune": "ST JULIEN EN ST ALBAN" + "codePostal": "67470", + "codeCommune": "67494", + "libelleAcheminement": "TRIMBACH", + "nomCommune": "TRIMBACH" }, { - "codePostal": "64130", - "codeCommune": "64093", - "libelleAcheminement": "BARCUS", - "nomCommune": "BARCUS" + "codePostal": "57480", + "codeCommune": "57479", + "libelleAcheminement": "MONTENACH", + "nomCommune": "MONTENACH" }, { - "codePostal": "45170", - "codeCommune": "45044", - "libelleAcheminement": "BOUGY LEZ NEUVILLE", - "nomCommune": "BOUGY LEZ NEUVILLE" + "codePostal": "59390", + "codeCommune": "59522", + "libelleAcheminement": "SAILLY LEZ LANNOY", + "nomCommune": "SAILLY LEZ LANNOY" }, { - "codePostal": "38300", - "codeCommune": "38149", - "libelleAcheminement": "DOMARIN", - "nomCommune": "DOMARIN" + "codePostal": "68210", + "codeCommune": "68100", + "libelleAcheminement": "FULLEREN", + "nomCommune": "FULLEREN" }, { - "codePostal": "07700", - "codeCommune": "07259", - "libelleAcheminement": "ST JUST D ARDECHE", - "nomCommune": "ST JUST D ARDECHE" + "codePostal": "14740", + "codeCommune": "14610", + "libelleAcheminement": "ST MANVIEU NORREY", + "nomCommune": "ST MANVIEU NORREY" }, { - "codePostal": "64190", - "codeCommune": "64099", - "libelleAcheminement": "BASTANES", - "nomCommune": "BASTANES" + "codePostal": "67550", + "codeCommune": "67506", + "libelleAcheminement": "VENDENHEIM", + "nomCommune": "VENDENHEIM" }, { - "codePostal": "45460", - "codeCommune": "45049", - "libelleAcheminement": "BOUZY LA FORET", - "nomCommune": "BOUZY LA FORET" + "codePostal": "57860", + "codeCommune": "57481", + "libelleAcheminement": "MONTOIS LA MONTAGNE", + "nomCommune": "MONTOIS LA MONTAGNE" }, { - "codePostal": "38580", - "codeCommune": "38163", - "libelleAcheminement": "LE HAUT BREDA", - "nomCommune": "LE HAUT BREDA" + "codePostal": "59440", + "codeCommune": "59534", + "libelleAcheminement": "ST HILAIRE SUR HELPE", + "nomCommune": "ST HILAIRE SUR HELPE" }, { - "codePostal": "07700", - "codeCommune": "07268", - "libelleAcheminement": "ST MARTIN D ARDECHE", - "nomCommune": "ST MARTIN D ARDECHE" + "codePostal": "68600", + "codeCommune": "68104", + "libelleAcheminement": "GEISWASSER", + "nomCommune": "GEISWASSER" }, { - "codePostal": "64800", - "codeCommune": "64101", - "libelleAcheminement": "BAUDREIX", - "nomCommune": "BAUDREIX" + "codePostal": "14380", + "codeCommune": "14619", + "libelleAcheminement": "STE MARIE OUTRE L EAU", + "nomCommune": "STE MARIE OUTRE L EAU" }, { - "codePostal": "45460", - "codeCommune": "45051", - "libelleAcheminement": "BRAY ST AIGNAN", - "nomCommune": "BRAY ST AIGNAN" + "codePostal": "67170", + "codeCommune": "67510", + "libelleAcheminement": "WAHLENHEIM", + "nomCommune": "WAHLENHEIM" }, { - "codePostal": "38580", - "codeCommune": "38163", - "libelleAcheminement": "LE HAUT BREDA", - "nomCommune": "LE HAUT BREDA" + "codePostal": "57260", + "codeCommune": "57493", + "libelleAcheminement": "MULCEY", + "nomCommune": "MULCEY" }, { - "codePostal": "07520", - "codeCommune": "07285", - "libelleAcheminement": "ST PIERRE SUR DOUX", - "nomCommune": "ST PIERRE SUR DOUX" + "codePostal": "59218", + "codeCommune": "59549", + "libelleAcheminement": "SALESCHES", + "nomCommune": "SALESCHES" }, { - "codePostal": "64490", - "codeCommune": "64104", - "libelleAcheminement": "BEDOUS", - "nomCommune": "BEDOUS" + "codePostal": "68760", + "codeCommune": "68106", + "libelleAcheminement": "GOLDBACH ALTENBACH", + "nomCommune": "GOLDBACH ALTENBACH" }, { - "codePostal": "45390", - "codeCommune": "45054", - "libelleAcheminement": "BRIARRES SUR ESSONNE", - "nomCommune": "BRIARRES SUR ESSONNE" + "codePostal": "14130", + "codeCommune": "14620", + "libelleAcheminement": "ST MARTIN AUX CHARTRAINS", + "nomCommune": "ST MARTIN AUX CHARTRAINS" }, { - "codePostal": "38142", - "codeCommune": "38173", - "libelleAcheminement": "LE FRENEY D OISANS", - "nomCommune": "LE FRENEY D OISANS" + "codePostal": "67670", + "codeCommune": "67516", + "libelleAcheminement": "WALTENHEIM SUR ZORN", + "nomCommune": "WALTENHEIM SUR ZORN" }, { - "codePostal": "07190", - "codeCommune": "07286", - "libelleAcheminement": "ST PIERREVILLE", - "nomCommune": "ST PIERREVILLE" + "codePostal": "57670", + "codeCommune": "57496", + "libelleAcheminement": "NEBING", + "nomCommune": "NEBING" }, { - "codePostal": "64120", - "codeCommune": "64105", - "libelleAcheminement": "BEGUIOS", - "nomCommune": "BEGUIOS" + "codePostal": "59440", + "codeCommune": "59562", + "libelleAcheminement": "SEMERIES", + "nomCommune": "SEMERIES" }, { - "codePostal": "45120", - "codeCommune": "45061", - "libelleAcheminement": "CEPOY", - "nomCommune": "CEPOY" + "codePostal": "68210", + "codeCommune": "68119", + "libelleAcheminement": "HAGENBACH", + "nomCommune": "HAGENBACH" }, { - "codePostal": "38190", - "codeCommune": "38175", - "libelleAcheminement": "FROGES", - "nomCommune": "FROGES" + "codePostal": "14100", + "codeCommune": "14625", + "libelleAcheminement": "ST MARTIN DE LA LIEUE", + "nomCommune": "ST MARTIN DE LA LIEUE" }, { - "codePostal": "07130", - "codeCommune": "07293", - "libelleAcheminement": "ST ROMAIN DE LERPS", - "nomCommune": "ST ROMAIN DE LERPS" + "codePostal": "67520", + "codeCommune": "67517", + "libelleAcheminement": "WANGEN", + "nomCommune": "WANGEN" }, { - "codePostal": "64270", - "codeCommune": "64108", - "libelleAcheminement": "BELLOCQ", - "nomCommune": "BELLOCQ" + "codePostal": "57830", + "codeCommune": "57500", + "libelleAcheminement": "NEUFMOULINS", + "nomCommune": "NEUFMOULINS" }, { - "codePostal": "45300", - "codeCommune": "45065", - "libelleAcheminement": "CESARVILLE DOSSAINVILLE", - "nomCommune": "CESARVILLE DOSSAINVILLE" + "codePostal": "59173", + "codeCommune": "59568", + "libelleAcheminement": "SERCUS", + "nomCommune": "SERCUS" }, { - "codePostal": "38290", - "codeCommune": "38176", - "libelleAcheminement": "FRONTONAS", - "nomCommune": "FRONTONAS" + "codePostal": "68220", + "codeCommune": "68121", + "libelleAcheminement": "HAGENTHAL LE HAUT", + "nomCommune": "HAGENTHAL LE HAUT" }, { - "codePostal": "07190", - "codeCommune": "07295", - "libelleAcheminement": "ST SAUVEUR DE MONTAGUT", - "nomCommune": "ST SAUVEUR DE MONTAGUT" + "codePostal": "14700", + "codeCommune": "14627", + "libelleAcheminement": "ST MARTIN DE MIEUX", + "nomCommune": "ST MARTIN DE MIEUX" }, { - "codePostal": "64270", - "codeCommune": "64113", - "libelleAcheminement": "BERGOUEY VIELLENAVE", - "nomCommune": "BERGOUEY VIELLENAVE" + "codePostal": "67440", + "codeCommune": "67527", + "libelleAcheminement": "WESTHOUSE MARMOUTIER", + "nomCommune": "WESTHOUSE MARMOUTIER" }, { - "codePostal": "45400", - "codeCommune": "45072", - "libelleAcheminement": "CHANTEAU", - "nomCommune": "CHANTEAU" + "codePostal": "57720", + "codeCommune": "57517", + "libelleAcheminement": "OBERGAILBACH", + "nomCommune": "OBERGAILBACH" }, { - "codePostal": "38140", - "codeCommune": "38194", - "libelleAcheminement": "IZEAUX", - "nomCommune": "IZEAUX" + "codePostal": "59380", + "codeCommune": "59579", + "libelleAcheminement": "STEENE", + "nomCommune": "STEENE" }, { - "codePostal": "07440", - "codeCommune": "07297", - "libelleAcheminement": "ST SYLVESTRE", - "nomCommune": "ST SYLVESTRE" + "codePostal": "68500", + "codeCommune": "68122", + "libelleAcheminement": "HARTMANNSWILLER", + "nomCommune": "HARTMANNSWILLER" }, { - "codePostal": "64150", - "codeCommune": "64117", - "libelleAcheminement": "BESINGRAND", - "nomCommune": "BESINGRAND" + "codePostal": "14340", + "codeCommune": "14639", + "libelleAcheminement": "ST OUEN LE PIN", + "nomCommune": "ST OUEN LE PIN" }, { - "codePostal": "45310", - "codeCommune": "45074", - "libelleAcheminement": "LA CHAPELLE ONZERAIN", - "nomCommune": "LA CHAPELLE ONZERAIN" + "codePostal": "67290", + "codeCommune": "67538", + "libelleAcheminement": "WINGEN SUR MODER", + "nomCommune": "WINGEN SUR MODER" }, { - "codePostal": "38930", - "codeCommune": "38204", - "libelleAcheminement": "LALLEY", - "nomCommune": "LALLEY" + "codePostal": "57220", + "codeCommune": "57519", + "libelleAcheminement": "OBERVISSE", + "nomCommune": "OBERVISSE" }, { - "codePostal": "07410", - "codeCommune": "07301", - "libelleAcheminement": "ST VICTOR", - "nomCommune": "ST VICTOR" + "codePostal": "59181", + "codeCommune": "59581", + "libelleAcheminement": "STEENWERCK", + "nomCommune": "STEENWERCK" }, { - "codePostal": "64120", - "codeCommune": "64120", - "libelleAcheminement": "BEYRIE SUR JOYEUSE", - "nomCommune": "BEYRIE SUR JOYEUSE" + "codePostal": "68420", + "codeCommune": "68123", + "libelleAcheminement": "HATTSTATT", + "nomCommune": "HATTSTATT" }, { - "codePostal": "45270", - "codeCommune": "45078", - "libelleAcheminement": "CHAPELON", - "nomCommune": "CHAPELON" + "codePostal": "14670", + "codeCommune": "14640", + "libelleAcheminement": "ST PAIR", + "nomCommune": "ST PAIR" }, { - "codePostal": "38350", - "codeCommune": "38207", - "libelleAcheminement": "LAVALDENS", - "nomCommune": "LAVALDENS" + "codePostal": "67170", + "codeCommune": "67539", + "libelleAcheminement": "WINGERSHEIM LES QUATRE BANS", + "nomCommune": "WINGERSHEIM LES QUATRE BANS" }, { - "codePostal": "07110", - "codeCommune": "07307", - "libelleAcheminement": "SANILHAC", - "nomCommune": "SANILHAC" + "codePostal": "57590", + "codeCommune": "57525", + "libelleAcheminement": "ORIOCOURT", + "nomCommune": "ORIOCOURT" }, { - "codePostal": "64340", - "codeCommune": "64140", - "libelleAcheminement": "BOUCAU", - "nomCommune": "BOUCAU" + "codePostal": "59189", + "codeCommune": "59590", + "libelleAcheminement": "THIENNES", + "nomCommune": "THIENNES" }, { - "codePostal": "45260", - "codeCommune": "45084", - "libelleAcheminement": "CHATENOY", - "nomCommune": "CHATENOY" + "codePostal": "68600", + "codeCommune": "68130", + "libelleAcheminement": "HEITEREN", + "nomCommune": "HEITEREN" }, { - "codePostal": "38220", - "codeCommune": "38212", - "libelleAcheminement": "LIVET ET GAVET", - "nomCommune": "LIVET ET GAVET" + "codePostal": "14130", + "codeCommune": "14644", + "libelleAcheminement": "ST PHILBERT DES CHAMPS", + "nomCommune": "ST PHILBERT DES CHAMPS" }, { - "codePostal": "07290", - "codeCommune": "07309", - "libelleAcheminement": "SATILLIEU", - "nomCommune": "SATILLIEU" + "codePostal": "67370", + "codeCommune": "67542", + "libelleAcheminement": "WINTZENHEIM KOCHERSBERG", + "nomCommune": "WINTZENHEIM KOCHERSBERG" }, { - "codePostal": "64230", - "codeCommune": "64142", - "libelleAcheminement": "BOUGARBER", - "nomCommune": "BOUGARBER" + "codePostal": "57970", + "codeCommune": "57531", + "libelleAcheminement": "OUDRENNE", + "nomCommune": "OUDRENNE" }, { - "codePostal": "45430", - "codeCommune": "45089", - "libelleAcheminement": "CHECY", - "nomCommune": "CHECY" + "codePostal": "59239", + "codeCommune": "59592", + "libelleAcheminement": "THUMERIES", + "nomCommune": "THUMERIES" }, { - "codePostal": "38220", - "codeCommune": "38212", - "libelleAcheminement": "LIVET ET GAVET", - "nomCommune": "LIVET ET GAVET" + "codePostal": "68180", + "codeCommune": "68145", + "libelleAcheminement": "HORBOURG WIHR", + "nomCommune": "HORBOURG WIHR" }, { - "codePostal": "07240", - "codeCommune": "07314", - "libelleAcheminement": "SILHAC", - "nomCommune": "SILHAC" + "codePostal": "14700", + "codeCommune": "14646", + "libelleAcheminement": "ST PIERRE CANIVET", + "nomCommune": "ST PIERRE CANIVET" }, { - "codePostal": "64800", - "codeCommune": "64145", - "libelleAcheminement": "BOURDETTES", - "nomCommune": "BOURDETTES" + "codePostal": "67670", + "codeCommune": "67546", + "libelleAcheminement": "WITTERSHEIM", + "nomCommune": "WITTERSHEIM" }, { - "codePostal": "45530", - "codeCommune": "45101", - "libelleAcheminement": "COMBREUX", - "nomCommune": "COMBREUX" + "codePostal": "57230", + "codeCommune": "57541", + "libelleAcheminement": "PHILIPPSBOURG", + "nomCommune": "PHILIPPSBOURG" }, { - "codePostal": "38260", - "codeCommune": "38218", - "libelleAcheminement": "MARCILLOLES", - "nomCommune": "MARCILLOLES" + "codePostal": "59141", + "codeCommune": "59595", + "libelleAcheminement": "THUN ST MARTIN", + "nomCommune": "THUN ST MARTIN" }, { - "codePostal": "07340", - "codeCommune": "07317", - "libelleAcheminement": "TALENCIEUX", - "nomCommune": "TALENCIEUX" + "codePostal": "68150", + "codeCommune": "68147", + "libelleAcheminement": "HUNAWIHR", + "nomCommune": "HUNAWIHR" }, { - "codePostal": "64240", - "codeCommune": "64147", - "libelleAcheminement": "BRISCOUS", - "nomCommune": "BRISCOUS" + "codePostal": "14700", + "codeCommune": "14649", + "libelleAcheminement": "ST PIERRE DU BU", + "nomCommune": "ST PIERRE DU BU" }, { - "codePostal": "45300", - "codeCommune": "45111", - "libelleAcheminement": "COURCY AUX LOGES", - "nomCommune": "COURCY AUX LOGES" + "codePostal": "67370", + "codeCommune": "67548", + "libelleAcheminement": "WIWERSHEIM", + "nomCommune": "WIWERSHEIM" }, { - "codePostal": "38350", - "codeCommune": "38224", - "libelleAcheminement": "MAYRES SAVEL", - "nomCommune": "MAYRES SAVEL" + "codePostal": "57220", + "codeCommune": "57542", + "libelleAcheminement": "PIBLANGE", + "nomCommune": "PIBLANGE" }, { - "codePostal": "07510", - "codeCommune": "07326", - "libelleAcheminement": "USCLADES ET RIEUTORD", - "nomCommune": "USCLADES ET RIEUTORD" + "codePostal": "59390", + "codeCommune": "59598", + "libelleAcheminement": "TOUFFLERS", + "nomCommune": "TOUFFLERS" }, { - "codePostal": "64800", - "codeCommune": "64148", - "libelleAcheminement": "BRUGES CAPBIS MIFAGET", - "nomCommune": "BRUGES CAPBIS MIFAGET" + "codePostal": "68720", + "codeCommune": "68152", + "libelleAcheminement": "ILLFURTH", + "nomCommune": "ILLFURTH" }, { - "codePostal": "45320", - "codeCommune": "45113", - "libelleAcheminement": "COURTEMAUX", - "nomCommune": "COURTEMAUX" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "38240", - "codeCommune": "38229", - "libelleAcheminement": "MEYLAN", - "nomCommune": "MEYLAN" + "codePostal": "67202", + "codeCommune": "67551", + "libelleAcheminement": "WOLFISHEIM", + "nomCommune": "WOLFISHEIM" }, { - "codePostal": "07150", - "codeCommune": "07330", - "libelleAcheminement": "VALLON PONT D ARC", - "nomCommune": "VALLON PONT D ARC" + "codePostal": "57870", + "codeCommune": "57544", + "libelleAcheminement": "PLAINE DE WALSCH", + "nomCommune": "PLAINE DE WALSCH" }, { - "codePostal": "64800", - "codeCommune": "64148", - "libelleAcheminement": "BRUGES CAPBIS MIFAGET", - "nomCommune": "BRUGES CAPBIS MIFAGET" + "codePostal": "59229", + "codeCommune": "59605", + "libelleAcheminement": "UXEM", + "nomCommune": "UXEM" }, { - "codePostal": "45420", - "codeCommune": "45120", - "libelleAcheminement": "DAMMARIE EN PUISAYE", - "nomCommune": "DAMMARIE EN PUISAYE" + "codePostal": "68500", + "codeCommune": "68156", + "libelleAcheminement": "ISSENHEIM", + "nomCommune": "ISSENHEIM" }, { - "codePostal": "38440", - "codeCommune": "38231", - "libelleAcheminement": "MEYRIEU LES ETANGS", - "nomCommune": "MEYRIEU LES ETANGS" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "07240", - "codeCommune": "07338", - "libelleAcheminement": "VERNOUX EN VIVARAIS", - "nomCommune": "VERNOUX EN VIVARAIS" + "codePostal": "68600", + "codeCommune": "68001", + "libelleAcheminement": "ALGOLSHEIM", + "nomCommune": "ALGOLSHEIM" }, { - "codePostal": "64410", - "codeCommune": "64158", - "libelleAcheminement": "CABIDOS", - "nomCommune": "CABIDOS" + "codePostal": "57380", + "codeCommune": "57549", + "libelleAcheminement": "PONTPIERRE", + "nomCommune": "PONTPIERRE" }, { - "codePostal": "45370", - "codeCommune": "45130", - "libelleAcheminement": "DRY", - "nomCommune": "DRY" + "codePostal": "59213", + "codeCommune": "59608", + "libelleAcheminement": "VENDEGIES SUR ECAILLON", + "nomCommune": "VENDEGIES SUR ECAILLON" }, { - "codePostal": "38440", - "codeCommune": "38232", - "libelleAcheminement": "MEYSSIEZ", - "nomCommune": "MEYSSIEZ" + "codePostal": "68500", + "codeCommune": "68159", + "libelleAcheminement": "JUNGHOLTZ", + "nomCommune": "JUNGHOLTZ" }, { - "codePostal": "07690", - "codeCommune": "07342", - "libelleAcheminement": "VILLEVOCANCE", - "nomCommune": "VILLEVOCANCE" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "64470", - "codeCommune": "64162", - "libelleAcheminement": "CAMOU CIHIGUE", - "nomCommune": "CAMOU CIHIGUE" + "codePostal": "68280", + "codeCommune": "68007", + "libelleAcheminement": "ANDOLSHEIM", + "nomCommune": "ANDOLSHEIM" }, { - "codePostal": "45340", - "codeCommune": "45132", - "libelleAcheminement": "EGRY", - "nomCommune": "EGRY" + "codePostal": "57170", + "codeCommune": "57558", + "libelleAcheminement": "PUTTIGNY", + "nomCommune": "PUTTIGNY" }, { - "codePostal": "38450", - "codeCommune": "38235", - "libelleAcheminement": "MIRIBEL LANCHATRE", - "nomCommune": "MIRIBEL LANCHATRE" + "codePostal": "59690", + "codeCommune": "59616", + "libelleAcheminement": "VIEUX CONDE", + "nomCommune": "VIEUX CONDE" }, { - "codePostal": "07340", - "codeCommune": "07344", - "libelleAcheminement": "VINZIEUX", - "nomCommune": "VINZIEUX" + "codePostal": "68240", + "codeCommune": "68162", + "libelleAcheminement": "KAYSERSBERG VIGNOBLE", + "nomCommune": "KAYSERSBERG VIGNOBLE" }, { - "codePostal": "64190", - "codeCommune": "64176", - "libelleAcheminement": "CASTETBON", - "nomCommune": "CASTETBON" + "codePostal": "14250", + "codeCommune": "14661", + "libelleAcheminement": "ST VAAST SUR SEULLES", + "nomCommune": "ST VAAST SUR SEULLES" }, { - "codePostal": "45300", - "codeCommune": "45133", - "libelleAcheminement": "ENGENVILLE", - "nomCommune": "ENGENVILLE" + "codePostal": "68280", + "codeCommune": "68008", + "libelleAcheminement": "APPENWIHR", + "nomCommune": "APPENWIHR" }, { - "codePostal": "38380", - "codeCommune": "38236", - "libelleAcheminement": "MIRIBEL LES ECHELLES", - "nomCommune": "MIRIBEL LES ECHELLES" + "codePostal": "57550", + "codeCommune": "57570", + "libelleAcheminement": "REMERING", + "nomCommune": "REMERING" }, { - "codePostal": "07220", - "codeCommune": "07346", - "libelleAcheminement": "VIVIERS", - "nomCommune": "VIVIERS" + "codePostal": "59530", + "codeCommune": "59619", + "libelleAcheminement": "VILLEREAU", + "nomCommune": "VILLEREAU" }, { - "codePostal": "64190", - "codeCommune": "64178", - "libelleAcheminement": "CASTETNAU CAMBLONG", - "nomCommune": "CASTETNAU CAMBLONG" + "codePostal": "68680", + "codeCommune": "68163", + "libelleAcheminement": "KEMBS", + "nomCommune": "KEMBS" }, { - "codePostal": "45480", - "codeCommune": "45135", - "libelleAcheminement": "ERCEVILLE", - "nomCommune": "ERCEVILLE" + "codePostal": "14170", + "codeCommune": "14669", + "libelleAcheminement": "SASSY", + "nomCommune": "SASSY" }, { - "codePostal": "38110", - "codeCommune": "38246", - "libelleAcheminement": "MONTAGNIEU", - "nomCommune": "MONTAGNIEU" + "codePostal": "68700", + "codeCommune": "68011", + "libelleAcheminement": "ASPACH LE BAS", + "nomCommune": "ASPACH LE BAS" }, { - "codePostal": "07800", - "codeCommune": "07349", - "libelleAcheminement": "LA VOULTE SUR RHONE", - "nomCommune": "LA VOULTE SUR RHONE" + "codePostal": "57570", + "codeCommune": "57574", + "libelleAcheminement": "BASSE RENTGEN", + "nomCommune": "BASSE RENTGEN" }, { - "codePostal": "64490", - "codeCommune": "64185", - "libelleAcheminement": "CETTE EYGUN", - "nomCommune": "CETTE EYGUN" + "codePostal": "59231", + "codeCommune": "59625", + "libelleAcheminement": "VILLERS PLOUICH", + "nomCommune": "VILLERS PLOUICH" }, { - "codePostal": "45150", - "codeCommune": "45144", - "libelleAcheminement": "FEROLLES", - "nomCommune": "FEROLLES" + "codePostal": "68480", + "codeCommune": "68165", + "libelleAcheminement": "KIFFIS", + "nomCommune": "KIFFIS" }, { - "codePostal": "38330", - "codeCommune": "38249", - "libelleAcheminement": "MONTBONNOT ST MARTIN", - "nomCommune": "MONTBONNOT ST MARTIN" + "codePostal": "14350", + "codeCommune": "14672", + "libelleAcheminement": "VAL DE DROME", + "nomCommune": "VAL DE DROME" }, { - "codePostal": "08300", - "codeCommune": "08001", - "libelleAcheminement": "ACY ROMANCE", - "nomCommune": "ACY ROMANCE" + "codePostal": "68210", + "codeCommune": "68018", + "libelleAcheminement": "BALSCHWILLER", + "nomCommune": "BALSCHWILLER" }, { - "codePostal": "64500", - "codeCommune": "64189", - "libelleAcheminement": "CIBOURE", - "nomCommune": "CIBOURE" + "codePostal": "57645", + "codeCommune": "57575", + "libelleAcheminement": "RETONFEY", + "nomCommune": "RETONFEY" }, { - "codePostal": "45310", - "codeCommune": "45152", - "libelleAcheminement": "GEMIGNY", - "nomCommune": "GEMIGNY" + "codePostal": "59530", + "codeCommune": "59626", + "libelleAcheminement": "VILLERS POL", + "nomCommune": "VILLERS POL" }, { - "codePostal": "38220", - "codeCommune": "38252", - "libelleAcheminement": "MONTCHABOUD", - "nomCommune": "MONTCHABOUD" + "codePostal": "68220", + "codeCommune": "68168", + "libelleAcheminement": "KNOERINGUE", + "nomCommune": "KNOERINGUE" }, { - "codePostal": "08090", - "codeCommune": "08003", - "libelleAcheminement": "AIGLEMONT", - "nomCommune": "AIGLEMONT" + "codePostal": "14220", + "codeCommune": "14689", + "libelleAcheminement": "THURY HARCOURT LE HOM", + "nomCommune": "THURY HARCOURT LE HOM" }, { - "codePostal": "64330", - "codeCommune": "64192", - "libelleAcheminement": "CONCHEZ DE BEARN", - "nomCommune": "CONCHEZ DE BEARN" + "codePostal": "68870", + "codeCommune": "68021", + "libelleAcheminement": "BARTENHEIM", + "nomCommune": "BARTENHEIM" }, { - "codePostal": "45390", - "codeCommune": "45159", - "libelleAcheminement": "GRANGERMONT", - "nomCommune": "GRANGERMONT" + "codePostal": "57130", + "codeCommune": "57578", + "libelleAcheminement": "REZONVILLE VIONVILLE", + "nomCommune": "REZONVILLE VIONVILLE" }, { - "codePostal": "38860", - "codeCommune": "38253", - "libelleAcheminement": "LES DEUX ALPES", - "nomCommune": "LES DEUX ALPES" + "codePostal": "59261", + "codeCommune": "59630", + "libelleAcheminement": "WAHAGNIES", + "nomCommune": "WAHAGNIES" }, { - "codePostal": "08300", - "codeCommune": "08008", - "libelleAcheminement": "AMAGNE", - "nomCommune": "AMAGNE" + "codePostal": "68910", + "codeCommune": "68173", + "libelleAcheminement": "LABAROCHE", + "nomCommune": "LABAROCHE" }, { - "codePostal": "64160", - "codeCommune": "64194", - "libelleAcheminement": "COSLEDAA LUBE BOAST", - "nomCommune": "COSLEDAA LUBE BOAST" + "codePostal": "14220", + "codeCommune": "14689", + "libelleAcheminement": "THURY HARCOURT LE HOM", + "nomCommune": "THURY HARCOURT LE HOM" }, { - "codePostal": "45140", - "codeCommune": "45169", - "libelleAcheminement": "INGRE", - "nomCommune": "INGRE" + "codePostal": "68126", + "codeCommune": "68026", + "libelleAcheminement": "BENNWIHR MITTELWIHR", + "nomCommune": "BENNWIHR" }, { - "codePostal": "38120", - "codeCommune": "38258", - "libelleAcheminement": "MONT ST MARTIN", - "nomCommune": "MONT ST MARTIN" + "codePostal": "57130", + "codeCommune": "57578", + "libelleAcheminement": "REZONVILLE VIONVILLE", + "nomCommune": "REZONVILLE VIONVILLE" }, { - "codePostal": "08130", - "codeCommune": "08010", - "libelleAcheminement": "AMBLY FLEURY", - "nomCommune": "AMBLY FLEURY" + "codePostal": "59190", + "codeCommune": "59634", + "libelleAcheminement": "WALLON CAPPEL", + "nomCommune": "WALLON CAPPEL" + }, + { + "codePostal": "68610", + "codeCommune": "68177", + "libelleAcheminement": "LAUTENBACH", + "nomCommune": "LAUTENBACH" }, { - "codePostal": "64120", - "codeCommune": "64202", - "libelleAcheminement": "DOMEZAIN BERRAUTE", - "nomCommune": "DOMEZAIN BERRAUTE" + "codePostal": "14250", + "codeCommune": "14692", + "libelleAcheminement": "TILLY SUR SEULLES", + "nomCommune": "TILLY SUR SEULLES" }, { - "codePostal": "45150", - "codeCommune": "45173", - "libelleAcheminement": "JARGEAU", - "nomCommune": "JARGEAU" + "codePostal": "68630", + "codeCommune": "68026", + "libelleAcheminement": "BENNWIHR MITTELWIHR", + "nomCommune": "BENNWIHR" }, { - "codePostal": "38122", - "codeCommune": "38259", - "libelleAcheminement": "MONTSEVEROUX", - "nomCommune": "MONTSEVEROUX" + "codePostal": "57510", + "codeCommune": "57581", + "libelleAcheminement": "RICHELING", + "nomCommune": "RICHELING" }, { - "codePostal": "08310", - "codeCommune": "08014", - "libelleAcheminement": "ANNELLES", - "nomCommune": "ANNELLES" + "codePostal": "59870", + "codeCommune": "59637", + "libelleAcheminement": "WANDIGNIES HAMAGE", + "nomCommune": "WANDIGNIES HAMAGE" }, { - "codePostal": "64440", - "codeCommune": "64204", - "libelleAcheminement": "EAUX BONNES", - "nomCommune": "EAUX BONNES" + "codePostal": "68610", + "codeCommune": "68178", + "libelleAcheminement": "LAUTENBACHZELL", + "nomCommune": "LAUTENBACHZELL" }, { - "codePostal": "45330", - "codeCommune": "45191", - "libelleAcheminement": "LE MALESHERBOIS", - "nomCommune": "LE MALESHERBOIS" + "codePostal": "14800", + "codeCommune": "14699", + "libelleAcheminement": "TOUQUES", + "nomCommune": "TOUQUES" }, { - "codePostal": "38460", - "codeCommune": "38260", - "libelleAcheminement": "MORAS", - "nomCommune": "MORAS" + "codePostal": "68730", + "codeCommune": "68042", + "libelleAcheminement": "BLOTZHEIM", + "nomCommune": "BLOTZHEIM" }, { - "codePostal": "08290", - "codeCommune": "08016", - "libelleAcheminement": "AOUSTE", - "nomCommune": "AOUSTE" + "codePostal": "57270", + "codeCommune": "57582", + "libelleAcheminement": "RICHEMONT", + "nomCommune": "RICHEMONT" }, { - "codePostal": "64490", - "codeCommune": "64206", - "libelleAcheminement": "ESCOT", - "nomCommune": "ESCOT" + "codePostal": "59144", + "codeCommune": "59639", + "libelleAcheminement": "WARGNIES LE GRAND", + "nomCommune": "WARGNIES LE GRAND" }, { - "codePostal": "45430", - "codeCommune": "45194", - "libelleAcheminement": "MARDIE", - "nomCommune": "MARDIE" + "codePostal": "68290", + "codeCommune": "68179", + "libelleAcheminement": "LAUW", + "nomCommune": "LAUW" }, { - "codePostal": "38260", - "codeCommune": "38284", - "libelleAcheminement": "ORNACIEUX BALBINS", - "nomCommune": "ORNACIEUX BALBINS" + "codePostal": "14800", + "codeCommune": "14701", + "libelleAcheminement": "TOURGEVILLE", + "nomCommune": "TOURGEVILLE" }, { - "codePostal": "08380", - "codeCommune": "08030", - "libelleAcheminement": "AUGE", - "nomCommune": "AUGE" + "codePostal": "68650", + "codeCommune": "68044", + "libelleAcheminement": "LE BONHOMME", + "nomCommune": "LE BONHOMME" }, { - "codePostal": "64160", - "codeCommune": "64208", - "libelleAcheminement": "ESCOUBES", - "nomCommune": "ESCOUBES" + "codePostal": "57570", + "codeCommune": "57588", + "libelleAcheminement": "RODEMACK", + "nomCommune": "RODEMACK" }, { - "codePostal": "45430", - "codeCommune": "45194", - "libelleAcheminement": "MARDIE", - "nomCommune": "MARDIE" + "codePostal": "59670", + "codeCommune": "59655", + "libelleAcheminement": "WEMAERS CAPPEL", + "nomCommune": "WEMAERS CAPPEL" }, { - "codePostal": "38690", - "codeCommune": "38287", - "libelleAcheminement": "OYEU", - "nomCommune": "OYEU" + "codePostal": "68480", + "codeCommune": "68186", + "libelleAcheminement": "LIGSDORF", + "nomCommune": "LIGSDORF" }, { - "codePostal": "08240", - "codeCommune": "08033", - "libelleAcheminement": "AUTHE", - "nomCommune": "AUTHE" + "codePostal": "14330", + "codeCommune": "14705", + "libelleAcheminement": "TOURNIERES", + "nomCommune": "TOURNIERES" }, { - "codePostal": "64420", - "codeCommune": "64211", - "libelleAcheminement": "ESLOURENTIES DABAN", - "nomCommune": "ESLOURENTIES DABAN" + "codePostal": "68870", + "codeCommune": "68054", + "libelleAcheminement": "BRINCKHEIM", + "nomCommune": "BRINCKHEIM" }, { - "codePostal": "45370", - "codeCommune": "45196", - "libelleAcheminement": "MAREAU AUX PRES", - "nomCommune": "MAREAU AUX PRES" + "codePostal": "57860", + "codeCommune": "57593", + "libelleAcheminement": "RONCOURT", + "nomCommune": "RONCOURT" }, { - "codePostal": "38390", - "codeCommune": "38295", - "libelleAcheminement": "PARMILIEU", - "nomCommune": "PARMILIEU" + "codePostal": "59380", + "codeCommune": "59657", + "libelleAcheminement": "WEST CAPPEL", + "nomCommune": "WEST CAPPEL" }, { - "codePostal": "08190", - "codeCommune": "08044", - "libelleAcheminement": "BALHAM", - "nomCommune": "BALHAM" + "codePostal": "68460", + "codeCommune": "68195", + "libelleAcheminement": "LUTTERBACH", + "nomCommune": "LUTTERBACH" }, { - "codePostal": "64220", - "codeCommune": "64218", - "libelleAcheminement": "ESTERENCUBY", - "nomCommune": "ESTERENCUBY" + "codePostal": "14360", + "codeCommune": "14715", + "libelleAcheminement": "TROUVILLE SUR MER", + "nomCommune": "TROUVILLE SUR MER" }, { - "codePostal": "45220", - "codeCommune": "45199", - "libelleAcheminement": "MELLEROY", - "nomCommune": "MELLEROY" + "codePostal": "68440", + "codeCommune": "68055", + "libelleAcheminement": "BRUEBACH", + "nomCommune": "BRUEBACH" }, { - "codePostal": "38710", - "codeCommune": "38321", - "libelleAcheminement": "PREBOIS", - "nomCommune": "PREBOIS" + "codePostal": "57320", + "codeCommune": "57610", + "libelleAcheminement": "ST FRANCOIS LACROIX", + "nomCommune": "ST FRANCOIS LACROIX" }, { - "codePostal": "08240", - "codeCommune": "08052", - "libelleAcheminement": "BAYONVILLE", - "nomCommune": "BAYONVILLE" + "codePostal": "59470", + "codeCommune": "59663", + "libelleAcheminement": "WORMHOUT", + "nomCommune": "WORMHOUT" }, { - "codePostal": "64290", - "codeCommune": "64219", - "libelleAcheminement": "ESTIALESCQ", - "nomCommune": "ESTIALESCQ" + "codePostal": "68510", + "codeCommune": "68197", + "libelleAcheminement": "MAGSTATT LE BAS", + "nomCommune": "MAGSTATT LE BAS" }, { - "codePostal": "45240", - "codeCommune": "45200", - "libelleAcheminement": "MENESTREAU EN VILLETTE", - "nomCommune": "MENESTREAU EN VILLETTE" + "codePostal": "14340", + "codeCommune": "14723", + "libelleAcheminement": "VALSEME", + "nomCommune": "VALSEME" }, { - "codePostal": "38420", - "codeCommune": "38334", - "libelleAcheminement": "REVEL", - "nomCommune": "REVEL" + "codePostal": "68520", + "codeCommune": "68059", + "libelleAcheminement": "BURNHAUPT LE BAS", + "nomCommune": "BURNHAUPT LE BAS" }, { - "codePostal": "08140", - "codeCommune": "08053", - "libelleAcheminement": "BAZEILLES", - "nomCommune": "BAZEILLES" + "codePostal": "57130", + "codeCommune": "57624", + "libelleAcheminement": "STE RUFFINE", + "nomCommune": "STE RUFFINE" }, { - "codePostal": "64400", - "codeCommune": "64224", - "libelleAcheminement": "EYSUS", - "nomCommune": "EYSUS" + "codePostal": "60480", + "codeCommune": "60003", + "libelleAcheminement": "ABBEVILLE ST LUCIEN", + "nomCommune": "ABBEVILLE ST LUCIEN" }, { - "codePostal": "45210", - "codeCommune": "45201", - "libelleAcheminement": "MERINVILLE", - "nomCommune": "MERINVILLE" + "codePostal": "68380", + "codeCommune": "68204", + "libelleAcheminement": "METZERAL", + "nomCommune": "METZERAL" }, { - "codePostal": "38370", - "codeCommune": "38340", - "libelleAcheminement": "LES ROCHES DE CONDRIEU", - "nomCommune": "LES ROCHES DE CONDRIEU" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "08240", - "codeCommune": "08057", - "libelleAcheminement": "BELLEVILLE ET CHATILLON SUR BAR", - "nomCommune": "BELLEVILLE ET CHATILLON SUR BAR" + "codePostal": "68700", + "codeCommune": "68063", + "libelleAcheminement": "CERNAY", + "nomCommune": "CERNAY" }, { - "codePostal": "64160", - "codeCommune": "64227", - "libelleAcheminement": "GABASTON", - "nomCommune": "GABASTON" + "codePostal": "57530", + "codeCommune": "57627", + "libelleAcheminement": "SANRY SUR NIED", + "nomCommune": "SANRY SUR NIED" }, { - "codePostal": "45230", - "codeCommune": "45210", - "libelleAcheminement": "MONTBOUY", - "nomCommune": "MONTBOUY" + "codePostal": "60600", + "codeCommune": "60007", + "libelleAcheminement": "AGNETZ", + "nomCommune": "AGNETZ" }, { - "codePostal": "38650", - "codeCommune": "38342", - "libelleAcheminement": "ROISSARD", - "nomCommune": "ROISSARD" + "codePostal": "68210", + "codeCommune": "68214", + "libelleAcheminement": "MONTREUX JEUNE", + "nomCommune": "MONTREUX JEUNE" }, { - "codePostal": "08300", - "codeCommune": "08064", - "libelleAcheminement": "BIERMES", - "nomCommune": "BIERMES" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "64220", - "codeCommune": "64229", - "libelleAcheminement": "GAMARTHE", - "nomCommune": "GAMARTHE" + "codePostal": "68480", + "codeCommune": "68075", + "libelleAcheminement": "DURMENACH", + "nomCommune": "DURMENACH" }, { - "codePostal": "45170", - "codeCommune": "45214", - "libelleAcheminement": "MONTIGNY", - "nomCommune": "MONTIGNY" + "codePostal": "57400", + "codeCommune": "57637", + "libelleAcheminement": "SCHNECKENBUSCH", + "nomCommune": "SCHNECKENBUSCH" }, { - "codePostal": "38080", - "codeCommune": "38352", - "libelleAcheminement": "ST ALBAN DE ROCHE", - "nomCommune": "ST ALBAN DE ROCHE" + "codePostal": "60600", + "codeCommune": "60008", + "libelleAcheminement": "AIRION", + "nomCommune": "AIRION" }, { - "codePostal": "08370", - "codeCommune": "08065", - "libelleAcheminement": "BIEVRES", - "nomCommune": "BIEVRES" + "codePostal": "68640", + "codeCommune": "68221", + "libelleAcheminement": "MUESPACH", + "nomCommune": "MUESPACH" }, { - "codePostal": "64330", - "codeCommune": "64233", - "libelleAcheminement": "GARLIN", - "nomCommune": "GARLIN" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "45340", - "codeCommune": "45215", - "libelleAcheminement": "MONTLIARD", - "nomCommune": "MONTLIARD" + "codePostal": "68420", + "codeCommune": "68078", + "libelleAcheminement": "EGUISHEIM", + "nomCommune": "EGUISHEIM" }, { - "codePostal": "38370", - "codeCommune": "38353", - "libelleAcheminement": "ST ALBAN DU RHONE", - "nomCommune": "ST ALBAN DU RHONE" + "codePostal": "57160", + "codeCommune": "57642", + "libelleAcheminement": "SCY CHAZELLES", + "nomCommune": "SCY CHAZELLES" }, { - "codePostal": "08310", - "codeCommune": "08066", - "libelleAcheminement": "BIGNICOURT", - "nomCommune": "BIGNICOURT" + "codePostal": "60300", + "codeCommune": "60022", + "libelleAcheminement": "APREMONT", + "nomCommune": "APREMONT" }, { - "codePostal": "64160", - "codeCommune": "64239", - "libelleAcheminement": "GERDEREST", - "nomCommune": "GERDEREST" + "codePostal": "68380", + "codeCommune": "68223", + "libelleAcheminement": "MUHLBACH SUR MUNSTER", + "nomCommune": "MUHLBACH SUR MUNSTER" }, { - "codePostal": "45700", - "codeCommune": "45216", - "libelleAcheminement": "MORMANT SUR VERNISSON", - "nomCommune": "MORMANT SUR VERNISSON" + "codePostal": "14800", + "codeCommune": "14731", + "libelleAcheminement": "VAUVILLE", + "nomCommune": "VAUVILLE" }, { - "codePostal": "38440", - "codeCommune": "38358", - "libelleAcheminement": "STE ANNE SUR GERVONDE", - "nomCommune": "STE ANNE SUR GERVONDE" + "codePostal": "68130", + "codeCommune": "68080", + "libelleAcheminement": "EMLINGEN", + "nomCommune": "EMLINGEN" }, { - "codePostal": "08290", - "codeCommune": "08069", - "libelleAcheminement": "BLANCHEFOSSE ET BAY", - "nomCommune": "BLANCHEFOSSE ET BAY" + "codePostal": "57180", + "codeCommune": "57666", + "libelleAcheminement": "TERVILLE", + "nomCommune": "TERVILLE" }, { - "codePostal": "64260", - "codeCommune": "64240", - "libelleAcheminement": "GERE BELESTEN", - "nomCommune": "GERE BELESTEN" + "codePostal": "60190", + "codeCommune": "60040", + "libelleAcheminement": "BAILLEUL LE SOC", + "nomCommune": "BAILLEUL LE SOC" }, { - "codePostal": "45210", - "codeCommune": "45222", - "libelleAcheminement": "NARGIS", - "nomCommune": "NARGIS" + "codePostal": "68140", + "codeCommune": "68226", + "libelleAcheminement": "MUNSTER", + "nomCommune": "MUNSTER" }, { - "codePostal": "38160", - "codeCommune": "38359", - "libelleAcheminement": "ST ANTOINE L ABBAYE", - "nomCommune": "ST ANTOINE L ABBAYE" + "codePostal": "14400", + "codeCommune": "14732", + "libelleAcheminement": "VAUX SUR AURE", + "nomCommune": "VAUX SUR AURE" }, { - "codePostal": "08260", - "codeCommune": "08071", - "libelleAcheminement": "BLOMBAY", - "nomCommune": "BLOMBAY" + "codePostal": "68720", + "codeCommune": "68081", + "libelleAcheminement": "ST BERNARD", + "nomCommune": "ST BERNARD" }, { - "codePostal": "64210", - "codeCommune": "64249", - "libelleAcheminement": "GUETHARY", - "nomCommune": "GUETHARY" + "codePostal": "57385", + "codeCommune": "57668", + "libelleAcheminement": "TETING SUR NIED", + "nomCommune": "TETING SUR NIED" }, { - "codePostal": "45390", - "codeCommune": "45225", - "libelleAcheminement": "LA NEUVILLE SUR ESSONNE", - "nomCommune": "LA NEUVILLE SUR ESSONNE" + "codePostal": "60930", + "codeCommune": "60041", + "libelleAcheminement": "BAILLEUL SUR THERAIN", + "nomCommune": "BAILLEUL SUR THERAIN" }, { - "codePostal": "38690", - "codeCommune": "38380", - "libelleAcheminement": "ST DIDIER DE BIZONNES", - "nomCommune": "ST DIDIER DE BIZONNES" + "codePostal": "68250", + "codeCommune": "68228", + "libelleAcheminement": "MUNWILLER", + "nomCommune": "MUNWILLER" }, { - "codePostal": "08120", - "codeCommune": "08081", - "libelleAcheminement": "BOGNY SUR MEUSE", - "nomCommune": "BOGNY SUR MEUSE" + "codePostal": "14400", + "codeCommune": "14733", + "libelleAcheminement": "VAUX SUR SEULLES", + "nomCommune": "VAUX SUR SEULLES" }, { - "codePostal": "64130", - "codeCommune": "64268", - "libelleAcheminement": "IDAUX MENDY", - "nomCommune": "IDAUX MENDY" + "codePostal": "68720", + "codeCommune": "68081", + "libelleAcheminement": "ST BERNARD", + "nomCommune": "ST BERNARD" }, { - "codePostal": "45510", - "codeCommune": "45226", - "libelleAcheminement": "NEUVY EN SULLIAS", - "nomCommune": "NEUVY EN SULLIAS" + "codePostal": "57870", + "codeCommune": "57680", + "libelleAcheminement": "TROISFONTAINES", + "nomCommune": "TROISFONTAINES" }, { - "codePostal": "38330", - "codeCommune": "38397", - "libelleAcheminement": "ST ISMIER", - "nomCommune": "ST ISMIER" + "codePostal": "60390", + "codeCommune": "60054", + "libelleAcheminement": "LES HAUTS TALICAN", + "nomCommune": "LES HAUTS TALICAN" }, { - "codePostal": "08240", - "codeCommune": "08085", - "libelleAcheminement": "BRIEULLES SUR BAR", - "nomCommune": "BRIEULLES SUR BAR" + "codePostal": "68127", + "codeCommune": "68235", + "libelleAcheminement": "NIEDERHERGHEIM", + "nomCommune": "NIEDERHERGHEIM" }, { - "codePostal": "64800", - "codeCommune": "64270", - "libelleAcheminement": "IGON", - "nomCommune": "IGON" + "codePostal": "14250", + "codeCommune": "14734", + "libelleAcheminement": "VENDES", + "nomCommune": "VENDES" }, { - "codePostal": "45340", - "codeCommune": "45228", - "libelleAcheminement": "NIBELLE", - "nomCommune": "NIBELLE" + "codePostal": "68440", + "codeCommune": "68084", + "libelleAcheminement": "ESCHENTZWILLER", + "nomCommune": "ESCHENTZWILLER" }, { - "codePostal": "38440", - "codeCommune": "38399", - "libelleAcheminement": "ST JEAN DE BOURNAY", - "nomCommune": "ST JEAN DE BOURNAY" + "codePostal": "57320", + "codeCommune": "57681", + "libelleAcheminement": "TROMBORN", + "nomCommune": "TROMBORN" }, { - "codePostal": "08380", - "codeCommune": "08087", - "libelleAcheminement": "BROGNON", - "nomCommune": "BROGNON" + "codePostal": "60400", + "codeCommune": "60055", + "libelleAcheminement": "BEAURAINS LES NOYON", + "nomCommune": "BEAURAINS LES NOYON" }, { - "codePostal": "64640", - "codeCommune": "64271", - "libelleAcheminement": "IHOLDY", - "nomCommune": "IHOLDY" + "codePostal": "68680", + "codeCommune": "68238", + "libelleAcheminement": "NIFFER", + "nomCommune": "NIFFER" }, { - "codePostal": "45100", - "codeCommune": "45234", - "libelleAcheminement": "ORLEANS", - "nomCommune": "ORLEANS" + "codePostal": "14700", + "codeCommune": "14737", + "libelleAcheminement": "VERSAINVILLE", + "nomCommune": "VERSAINVILLE" }, { - "codePostal": "38110", - "codeCommune": "38401", - "libelleAcheminement": "ST JEAN DE SOUDAIN", - "nomCommune": "ST JEAN DE SOUDAIN" + "codePostal": "68640", + "codeCommune": "68087", + "libelleAcheminement": "FELDBACH", + "nomCommune": "FELDBACH" }, { - "codePostal": "08110", - "codeCommune": "08090", - "libelleAcheminement": "CARIGNAN", - "nomCommune": "CARIGNAN" + "codePostal": "57070", + "codeCommune": "57693", + "libelleAcheminement": "VANTOUX", + "nomCommune": "VANTOUX" }, { - "codePostal": "64120", - "codeCommune": "64272", - "libelleAcheminement": "ILHARRE", - "nomCommune": "ILHARRE" + "codePostal": "60490", + "codeCommune": "60061", + "libelleAcheminement": "BELLOY", + "nomCommune": "BELLOY" }, { - "codePostal": "45480", - "codeCommune": "45240", - "libelleAcheminement": "OUTARVILLE", - "nomCommune": "OUTARVILLE" + "codePostal": "68290", + "codeCommune": "68239", + "libelleAcheminement": "OBERBRUCK", + "nomCommune": "OBERBRUCK" }, { - "codePostal": "38220", - "codeCommune": "38402", - "libelleAcheminement": "ST JEAN DE VAULX", - "nomCommune": "ST JEAN DE VAULX" + "codePostal": "14610", + "codeCommune": "14758", + "libelleAcheminement": "VILLONS LES BUISSONS", + "nomCommune": "VILLONS LES BUISSONS" }, { - "codePostal": "08400", - "codeCommune": "08097", - "libelleAcheminement": "CHALLERANGE", - "nomCommune": "CHALLERANGE" + "codePostal": "68470", + "codeCommune": "68089", + "libelleAcheminement": "FELLERING", + "nomCommune": "FELLERING" }, { - "codePostal": "64570", - "codeCommune": "64276", - "libelleAcheminement": "ISSOR", - "nomCommune": "ISSOR" + "codePostal": "57170", + "codeCommune": "57702", + "libelleAcheminement": "VAXY", + "nomCommune": "VAXY" }, { - "codePostal": "45150", - "codeCommune": "45241", - "libelleAcheminement": "OUVROUER LES CHAMPS", - "nomCommune": "OUVROUER LES CHAMPS" + "codePostal": "60350", + "codeCommune": "60064", + "libelleAcheminement": "BERNEUIL SUR AISNE", + "nomCommune": "BERNEUIL SUR AISNE" }, { - "codePostal": "38134", - "codeCommune": "38405", - "libelleAcheminement": "ST JOSEPH DE RIVIERE", - "nomCommune": "ST JOSEPH DE RIVIERE" + "codePostal": "68127", + "codeCommune": "68242", + "libelleAcheminement": "OBERHERGHEIM", + "nomCommune": "OBERHERGHEIM" }, { - "codePostal": "08250", - "codeCommune": "08098", - "libelleAcheminement": "CHAMPIGNEULLE", - "nomCommune": "CHAMPIGNEULLE" + "codePostal": "15380", + "codeCommune": "15006", + "libelleAcheminement": "ANGLARDS DE SALERS", + "nomCommune": "ANGLARDS DE SALERS" }, { - "codePostal": "64530", - "codeCommune": "64292", - "libelleAcheminement": "LABATMALE", - "nomCommune": "LABATMALE" + "codePostal": "68220", + "codeCommune": "68094", + "libelleAcheminement": "FOLGENSBOURG", + "nomCommune": "FOLGENSBOURG" }, { - "codePostal": "45300", - "codeCommune": "45246", - "libelleAcheminement": "PANNECIERES", - "nomCommune": "PANNECIERES" + "codePostal": "57370", + "codeCommune": "57703", + "libelleAcheminement": "VECKERSVILLER", + "nomCommune": "VECKERSVILLER" }, { - "codePostal": "38540", - "codeCommune": "38408", - "libelleAcheminement": "ST JUST CHALEYSSIN", - "nomCommune": "ST JUST CHALEYSSIN" + "codePostal": "60490", + "codeCommune": "60071", + "libelleAcheminement": "BIERMONT", + "nomCommune": "BIERMONT" }, { - "codePostal": "08300", - "codeCommune": "08111", - "libelleAcheminement": "LE CHATELET SUR RETOURNE", - "nomCommune": "LE CHATELET SUR RETOURNE" + "codePostal": "68130", + "codeCommune": "68245", + "libelleAcheminement": "OBERMORSCHWILLER", + "nomCommune": "OBERMORSCHWILLER" }, { - "codePostal": "64110", - "codeCommune": "64315", - "libelleAcheminement": "LAROIN", - "nomCommune": "LAROIN" + "codePostal": "15240", + "codeCommune": "15019", + "libelleAcheminement": "BASSIGNAC", + "nomCommune": "BASSIGNAC" }, { - "codePostal": "45360", - "codeCommune": "45251", - "libelleAcheminement": "PIERREFITTE ES BOIS", - "nomCommune": "PIERREFITTE ES BOIS" + "codePostal": "68580", + "codeCommune": "68098", + "libelleAcheminement": "FRIESEN", + "nomCommune": "FRIESEN" }, { - "codePostal": "38380", - "codeCommune": "38412", - "libelleAcheminement": "ST LAURENT DU PONT", - "nomCommune": "ST LAURENT DU PONT" + "codePostal": "57260", + "codeCommune": "57706", + "libelleAcheminement": "VERGAVILLE", + "nomCommune": "VERGAVILLE" }, { - "codePostal": "08220", - "codeCommune": "08113", - "libelleAcheminement": "CHAUMONT PORCIEN", - "nomCommune": "CHAUMONT PORCIEN" + "codePostal": "60120", + "codeCommune": "60082", + "libelleAcheminement": "BONNEUIL LES EAUX", + "nomCommune": "BONNEUIL LES EAUX" }, { - "codePostal": "64120", - "codeCommune": "64319", - "libelleAcheminement": "LARRIBAR SORHAPURU", - "nomCommune": "LARRIBAR SORHAPURU" + "codePostal": "68480", + "codeCommune": "68248", + "libelleAcheminement": "OLTINGUE", + "nomCommune": "OLTINGUE" }, { - "codePostal": "45290", - "codeCommune": "45257", - "libelleAcheminement": "PRESSIGNY LES PINS", - "nomCommune": "PRESSIGNY LES PINS" + "codePostal": "15270", + "codeCommune": "15020", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "38660", - "codeCommune": "38418", - "libelleAcheminement": "STE MARIE DU MONT", - "nomCommune": "STE MARIE DU MONT" + "codePostal": "68510", + "codeCommune": "68103", + "libelleAcheminement": "GEISPITZEN", + "nomCommune": "GEISPITZEN" }, { - "codePostal": "08350", - "codeCommune": "08115", - "libelleAcheminement": "CHEMERY CHEHERY", - "nomCommune": "CHEMERY CHEHERY" + "codePostal": "57635", + "codeCommune": "57713", + "libelleAcheminement": "VIEUX LIXHEIM", + "nomCommune": "VIEUX LIXHEIM" }, { - "codePostal": "64440", - "codeCommune": "64320", - "libelleAcheminement": "LARUNS", - "nomCommune": "LARUNS" + "codePostal": "60820", + "codeCommune": "60086", + "libelleAcheminement": "BORAN SUR OISE", + "nomCommune": "BORAN SUR OISE" }, { - "codePostal": "45300", - "codeCommune": "45260", - "libelleAcheminement": "RAMOULU", - "nomCommune": "RAMOULU" + "codePostal": "68490", + "codeCommune": "68253", + "libelleAcheminement": "OTTMARSHEIM", + "nomCommune": "OTTMARSHEIM" }, { - "codePostal": "38400", - "codeCommune": "38421", - "libelleAcheminement": "ST MARTIN D HERES", - "nomCommune": "ST MARTIN D HERES" + "codePostal": "15700", + "codeCommune": "15024", + "libelleAcheminement": "BRAGEAC", + "nomCommune": "BRAGEAC" }, { - "codePostal": "08450", - "codeCommune": "08115", - "libelleAcheminement": "CHEMERY CHEHERY", - "nomCommune": "CHEMERY CHEHERY" + "codePostal": "68500", + "codeCommune": "68112", + "libelleAcheminement": "GUEBWILLER", + "nomCommune": "GUEBWILLER" }, { - "codePostal": "64450", - "codeCommune": "64321", - "libelleAcheminement": "LASCLAVERIES", - "nomCommune": "LASCLAVERIES" + "codePostal": "57340", + "codeCommune": "57723", + "libelleAcheminement": "VIRMING", + "nomCommune": "VIRMING" }, { - "codePostal": "45600", - "codeCommune": "45268", - "libelleAcheminement": "ST AIGNAN LE JAILLARD", - "nomCommune": "ST AIGNAN LE JAILLARD" + "codePostal": "60540", + "codeCommune": "60088", + "libelleAcheminement": "BORNEL", + "nomCommune": "BORNEL" }, { - "codePostal": "38650", - "codeCommune": "38429", - "libelleAcheminement": "ST MICHEL LES PORTES", - "nomCommune": "ST MICHEL LES PORTES" + "codePostal": "68490", + "codeCommune": "68254", + "libelleAcheminement": "PETIT LANDAU", + "nomCommune": "PETIT LANDAU" }, { - "codePostal": "08350", - "codeCommune": "08119", - "libelleAcheminement": "CHEVEUGES", - "nomCommune": "CHEVEUGES" + "codePostal": "15230", + "codeCommune": "15026", + "libelleAcheminement": "BREZONS", + "nomCommune": "BREZONS" }, { - "codePostal": "64270", - "codeCommune": "64334", - "libelleAcheminement": "LEREN", - "nomCommune": "LEREN" + "codePostal": "68130", + "codeCommune": "68124", + "libelleAcheminement": "HAUSGAUEN", + "nomCommune": "HAUSGAUEN" }, { - "codePostal": "45590", - "codeCommune": "45272", - "libelleAcheminement": "ST CYR EN VAL", - "nomCommune": "ST CYR EN VAL" + "codePostal": "57670", + "codeCommune": "57725", + "libelleAcheminement": "VITTERSBOURG", + "nomCommune": "VITTERSBOURG" }, { - "codePostal": "38140", - "codeCommune": "38437", - "libelleAcheminement": "ST PAUL D IZEAUX", - "nomCommune": "ST PAUL D IZEAUX" + "codePostal": "60240", + "codeCommune": "60090", + "libelleAcheminement": "BOUCONVILLERS", + "nomCommune": "BOUCONVILLERS" }, { - "codePostal": "08130", - "codeCommune": "08123", - "libelleAcheminement": "CHUFFILLY ROCHE", - "nomCommune": "CHUFFILLY ROCHE" + "codePostal": "68120", + "codeCommune": "68256", + "libelleAcheminement": "PFASTATT", + "nomCommune": "PFASTATT" }, { - "codePostal": "64800", - "codeCommune": "64339", - "libelleAcheminement": "LESTELLE BETHARRAM", - "nomCommune": "LESTELLE BETHARRAM" + "codePostal": "15130", + "codeCommune": "15028", + "libelleAcheminement": "CARLAT", + "nomCommune": "CARLAT" }, { - "codePostal": "45560", - "codeCommune": "45274", - "libelleAcheminement": "ST DENIS EN VAL", - "nomCommune": "ST DENIS EN VAL" + "codePostal": "68600", + "codeCommune": "68136", + "libelleAcheminement": "HETTENSCHLAG", + "nomCommune": "HETTENSCHLAG" }, { - "codePostal": "38160", - "codeCommune": "38443", - "libelleAcheminement": "ST PIERRE DE CHERENNES", - "nomCommune": "ST PIERRE DE CHERENNES" + "codePostal": "57330", + "codeCommune": "57731", + "libelleAcheminement": "VOLMERANGE LES MINES", + "nomCommune": "VOLMERANGE LES MINES" }, { - "codePostal": "08090", - "codeCommune": "08125", - "libelleAcheminement": "CLIRON", - "nomCommune": "CLIRON" + "codePostal": "60141", + "codeCommune": "60094", + "libelleAcheminement": "BOURSONNE", + "nomCommune": "BOURSONNE" }, { - "codePostal": "64470", - "codeCommune": "64340", - "libelleAcheminement": "LICHANS SUNHAR", - "nomCommune": "LICHANS SUNHAR" + "codePostal": "68510", + "codeCommune": "68265", + "libelleAcheminement": "RANTZWILLER", + "nomCommune": "RANTZWILLER" }, { - "codePostal": "45500", - "codeCommune": "45291", - "libelleAcheminement": "ST MARTIN SUR OCRE", - "nomCommune": "ST MARTIN SUR OCRE" + "codePostal": "15290", + "codeCommune": "15030", + "libelleAcheminement": "CAYROLS", + "nomCommune": "CAYROLS" }, { - "codePostal": "38350", - "codeCommune": "38444", - "libelleAcheminement": "ST PIERRE DE MEAROZ", - "nomCommune": "ST PIERRE DE MEAROZ" + "codePostal": "68720", + "codeCommune": "68141", + "libelleAcheminement": "HOCHSTATT", + "nomCommune": "HOCHSTATT" }, { - "codePostal": "08270", - "codeCommune": "08132", - "libelleAcheminement": "CORNY MACHEROMENIL", - "nomCommune": "CORNY MACHEROMENIL" + "codePostal": "57940", + "codeCommune": "57733", + "libelleAcheminement": "VOLSTROFF", + "nomCommune": "VOLSTROFF" }, { - "codePostal": "64560", - "codeCommune": "64342", - "libelleAcheminement": "LICQ ATHEREY", - "nomCommune": "LICQ ATHEREY" + "codePostal": "60220", + "codeCommune": "60098", + "libelleAcheminement": "BOUVRESSE", + "nomCommune": "BOUVRESSE" }, { - "codePostal": "45600", - "codeCommune": "45297", - "libelleAcheminement": "ST PERE SUR LOIRE", - "nomCommune": "ST PERE SUR LOIRE" + "codePostal": "68950", + "codeCommune": "68267", + "libelleAcheminement": "REININGUE", + "nomCommune": "REININGUE" }, { - "codePostal": "38160", - "codeCommune": "38454", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "15500", + "codeCommune": "15032", + "libelleAcheminement": "CELOUX", + "nomCommune": "CELOUX" }, { - "codePostal": "08130", - "codeCommune": "08134", - "libelleAcheminement": "COULOMMES ET MARQUENY", - "nomCommune": "COULOMMES ET MARQUENY" + "codePostal": "68320", + "codeCommune": "68143", + "libelleAcheminement": "PORTE DU RIED", + "nomCommune": "PORTE DU RIED" }, { - "codePostal": "64410", - "codeCommune": "64347", - "libelleAcheminement": "LONCON", - "nomCommune": "LONCON" + "codePostal": "57640", + "codeCommune": "57736", + "libelleAcheminement": "VRY", + "nomCommune": "VRY" }, { - "codePostal": "45750", - "codeCommune": "45298", - "libelleAcheminement": "ST PRYVE ST MESMIN", - "nomCommune": "ST PRYVE ST MESMIN" + "codePostal": "60870", + "codeCommune": "60102", + "libelleAcheminement": "BRENOUILLE", + "nomCommune": "BRENOUILLE" }, { - "codePostal": "38300", - "codeCommune": "38455", - "libelleAcheminement": "ST SAVIN", - "nomCommune": "ST SAVIN" + "codePostal": "68740", + "codeCommune": "68291", + "libelleAcheminement": "RUMERSHEIM LE HAUT", + "nomCommune": "RUMERSHEIM LE HAUT" }, { - "codePostal": "08400", - "codeCommune": "08135", - "libelleAcheminement": "LA CROIX AUX BOIS", - "nomCommune": "LA CROIX AUX BOIS" + "codePostal": "15500", + "codeCommune": "15042", + "libelleAcheminement": "LA CHAPELLE LAURENT", + "nomCommune": "LA CHAPELLE LAURENT" }, { - "codePostal": "64350", - "codeCommune": "64357", - "libelleAcheminement": "LUCARRE", - "nomCommune": "LUCARRE" + "codePostal": "68970", + "codeCommune": "68153", + "libelleAcheminement": "ILLHAEUSERN", + "nomCommune": "ILLHAEUSERN" }, { - "codePostal": "45760", - "codeCommune": "45333", - "libelleAcheminement": "VENNECY", - "nomCommune": "VENNECY" + "codePostal": "57320", + "codeCommune": "57739", + "libelleAcheminement": "WALDWEISTROFF", + "nomCommune": "WALDWEISTROFF" }, { - "codePostal": "38710", - "codeCommune": "38456", - "libelleAcheminement": "CHATEL EN TRIEVES", - "nomCommune": "CHATEL EN TRIEVES" + "codePostal": "60510", + "codeCommune": "60103", + "libelleAcheminement": "BRESLES", + "nomCommune": "BRESLES" }, { - "codePostal": "08160", - "codeCommune": "08140", - "libelleAcheminement": "DOM LE MESNIL", - "nomCommune": "DOM LE MESNIL" + "codePostal": "68210", + "codeCommune": "68293", + "libelleAcheminement": "ST COSME", + "nomCommune": "ST COSME" }, { - "codePostal": "64160", - "codeCommune": "64361", - "libelleAcheminement": "LUSSAGNET LUSSON", - "nomCommune": "LUSSAGNET LUSSON" + "codePostal": "15500", + "codeCommune": "15048", + "libelleAcheminement": "CHAZELLES", + "nomCommune": "CHAZELLES" }, { - "codePostal": "45260", - "codeCommune": "45334", - "libelleAcheminement": "VIEILLES MAISONS SUR JOUDRY", - "nomCommune": "VIEILLES MAISONS SUR JOUDRY" + "codePostal": "68320", + "codeCommune": "68157", + "libelleAcheminement": "JEBSHEIM", + "nomCommune": "JEBSHEIM" }, { - "codePostal": "38700", - "codeCommune": "38471", - "libelleAcheminement": "LE SAPPEY EN CHARTREUSE", - "nomCommune": "LE SAPPEY EN CHARTREUSE" + "codePostal": "57320", + "codeCommune": "57749", + "libelleAcheminement": "VOELFLING LES BOUZONVILLE", + "nomCommune": "VOELFLING LES BOUZONVILLE" }, { - "codePostal": "08460", - "codeCommune": "08141", - "libelleAcheminement": "DOMMERY", - "nomCommune": "DOMMERY" + "codePostal": "60480", + "codeCommune": "60113", + "libelleAcheminement": "BUCAMPS", + "nomCommune": "BUCAMPS" }, { - "codePostal": "64300", - "codeCommune": "64367", - "libelleAcheminement": "MASLACQ", - "nomCommune": "MASLACQ" + "codePostal": "68300", + "codeCommune": "68297", + "libelleAcheminement": "ST LOUIS", + "nomCommune": "ST LOUIS" }, { - "codePostal": "45170", - "codeCommune": "45342", - "libelleAcheminement": "VILLEREAU", - "nomCommune": "VILLEREAU" + "codePostal": "15110", + "codeCommune": "15060", + "libelleAcheminement": "DEUX VERGES", + "nomCommune": "DEUX VERGES" }, { - "codePostal": "38700", - "codeCommune": "38472", - "libelleAcheminement": "SARCENAS", - "nomCommune": "SARCENAS" + "codePostal": "68240", + "codeCommune": "68162", + "libelleAcheminement": "KAYSERSBERG VIGNOBLE", + "nomCommune": "KAYSERSBERG VIGNOBLE" }, { - "codePostal": "08310", - "codeCommune": "08147", - "libelleAcheminement": "DRICOURT", - "nomCommune": "DRICOURT" + "codePostal": "57200", + "codeCommune": "57750", + "libelleAcheminement": "WOELFLING LES SARREGUEMINES", + "nomCommune": "WOELFLING LES SARREGUEMINES" }, { - "codePostal": "64110", - "codeCommune": "64373", - "libelleAcheminement": "MAZERES LEZONS", - "nomCommune": "MAZERES LEZONS" + "codePostal": "60380", + "codeCommune": "60114", + "libelleAcheminement": "BUICOURT", + "nomCommune": "BUICOURT" }, { - "codePostal": "46140", - "codeCommune": "46005", - "libelleAcheminement": "ANGLARS JUILLAC", - "nomCommune": "ANGLARS JUILLAC" + "codePostal": "68210", + "codeCommune": "68299", + "libelleAcheminement": "ST ULRICH", + "nomCommune": "ST ULRICH" }, { - "codePostal": "38440", - "codeCommune": "38476", - "libelleAcheminement": "SAVAS MEPIN", - "nomCommune": "SAVAS MEPIN" + "codePostal": "15140", + "codeCommune": "15063", + "libelleAcheminement": "DRUGEAC", + "nomCommune": "DRUGEAC" }, { - "codePostal": "08110", - "codeCommune": "08153", - "libelleAcheminement": "ESCOMBRES ET LE CHESNOIS", - "nomCommune": "ESCOMBRES ET LE CHESNOIS" + "codePostal": "68480", + "codeCommune": "68169", + "libelleAcheminement": "KOESTLACH", + "nomCommune": "KOESTLACH" }, { - "codePostal": "64230", - "codeCommune": "64374", - "libelleAcheminement": "MAZEROLLES", - "nomCommune": "MAZEROLLES" + "codePostal": "57690", + "codeCommune": "57762", + "libelleAcheminement": "ZIMMING", + "nomCommune": "ZIMMING" }, { - "codePostal": "46320", - "codeCommune": "46009", - "libelleAcheminement": "ASSIER", - "nomCommune": "ASSIER" + "codePostal": "60130", + "codeCommune": "60115", + "libelleAcheminement": "BULLES", + "nomCommune": "BULLES" }, { - "codePostal": "38260", - "codeCommune": "38479", - "libelleAcheminement": "PORTE DES BONNEVAUX", - "nomCommune": "PORTE DES BONNEVAUX" + "codePostal": "68440", + "codeCommune": "68301", + "libelleAcheminement": "SCHLIERBACH", + "nomCommune": "SCHLIERBACH" }, { - "codePostal": "08270", - "codeCommune": "08165", - "libelleAcheminement": "FAUX", - "nomCommune": "FAUX" + "codePostal": "15110", + "codeCommune": "15065", + "libelleAcheminement": "ESPINASSE", + "nomCommune": "ESPINASSE" }, { - "codePostal": "64120", - "codeCommune": "64375", - "libelleAcheminement": "MEHARIN", - "nomCommune": "MEHARIN" + "codePostal": "68320", + "codeCommune": "68172", + "libelleAcheminement": "KUNHEIM", + "nomCommune": "KUNHEIM" }, { - "codePostal": "46230", - "codeCommune": "46023", - "libelleAcheminement": "BELFORT DU QUERCY", - "nomCommune": "BELFORT DU QUERCY" + "codePostal": "57330", + "codeCommune": "57764", + "libelleAcheminement": "ZOUFFTGEN", + "nomCommune": "ZOUFFTGEN" }, { - "codePostal": "38780", - "codeCommune": "38480", - "libelleAcheminement": "SEPTEME", - "nomCommune": "SEPTEME" + "codePostal": "60170", + "codeCommune": "60119", + "libelleAcheminement": "CAMBRONNE LES RIBECOURT", + "nomCommune": "CAMBRONNE LES RIBECOURT" }, { - "codePostal": "08250", - "codeCommune": "08171", - "libelleAcheminement": "FLEVILLE", - "nomCommune": "FLEVILLE" + "codePostal": "68290", + "codeCommune": "68307", + "libelleAcheminement": "SEWEN", + "nomCommune": "SEWEN" }, { - "codePostal": "64510", - "codeCommune": "64376", - "libelleAcheminement": "MEILLON", - "nomCommune": "MEILLON" + "codePostal": "15310", + "codeCommune": "15075", + "libelleAcheminement": "GIRGOLS", + "nomCommune": "GIRGOLS" }, { - "codePostal": "46090", - "codeCommune": "46027", - "libelleAcheminement": "BERGANTY", - "nomCommune": "BERGANTY" + "codePostal": "68220", + "codeCommune": "68182", + "libelleAcheminement": "LEYMEN", + "nomCommune": "LEYMEN" }, { - "codePostal": "38780", - "codeCommune": "38480", - "libelleAcheminement": "SEPTEME", - "nomCommune": "SEPTEME" + "codePostal": "58230", + "codeCommune": "58003", + "libelleAcheminement": "ALLIGNY EN MORVAN", + "nomCommune": "ALLIGNY EN MORVAN" }, { - "codePostal": "08000", - "codeCommune": "08180", - "libelleAcheminement": "LA FRANCHEVILLE", - "nomCommune": "LA FRANCHEVILLE" + "codePostal": "60220", + "codeCommune": "60122", + "libelleAcheminement": "CAMPEAUX", + "nomCommune": "CAMPEAUX" }, { - "codePostal": "64130", - "codeCommune": "64378", - "libelleAcheminement": "MENDITTE", - "nomCommune": "MENDITTE" + "codePostal": "68290", + "codeCommune": "68308", + "libelleAcheminement": "SICKERT", + "nomCommune": "SICKERT" }, { - "codePostal": "46150", - "codeCommune": "46032", - "libelleAcheminement": "BOISSIERES", - "nomCommune": "BOISSIERES" + "codePostal": "15150", + "codeCommune": "15088", + "libelleAcheminement": "LACAPELLE VIESCAMP", + "nomCommune": "LACAPELLE VIESCAMP" }, { - "codePostal": "38200", - "codeCommune": "38484", - "libelleAcheminement": "SERPAIZE", - "nomCommune": "SERPAIZE" + "codePostal": "68480", + "codeCommune": "68190", + "libelleAcheminement": "LUCELLE", + "nomCommune": "LUCELLE" }, { - "codePostal": "08240", - "codeCommune": "08186", - "libelleAcheminement": "GERMONT", - "nomCommune": "GERMONT" + "codePostal": "58190", + "codeCommune": "58005", + "libelleAcheminement": "AMAZY", + "nomCommune": "AMAZY" }, { - "codePostal": "64230", - "codeCommune": "64387", - "libelleAcheminement": "MOMAS", - "nomCommune": "MOMAS" + "codePostal": "60310", + "codeCommune": "60124", + "libelleAcheminement": "CANDOR", + "nomCommune": "CANDOR" }, { - "codePostal": "46100", - "codeCommune": "46035", - "libelleAcheminement": "BOUSSAC", - "nomCommune": "BOUSSAC" + "codePostal": "68480", + "codeCommune": "68312", + "libelleAcheminement": "SONDERSDORF", + "nomCommune": "SONDERSDORF" }, { - "codePostal": "38350", - "codeCommune": "38489", - "libelleAcheminement": "SIEVOZ", - "nomCommune": "SIEVOZ" + "codePostal": "15300", + "codeCommune": "15101", + "libelleAcheminement": "LAVEISSIERE", + "nomCommune": "LAVEISSIERE" }, { - "codePostal": "08700", - "codeCommune": "08188", - "libelleAcheminement": "GESPUNSART", - "nomCommune": "GESPUNSART" + "codePostal": "68210", + "codeCommune": "68200", + "libelleAcheminement": "MANSPACH", + "nomCommune": "MANSPACH" }, { - "codePostal": "64160", - "codeCommune": "64389", - "libelleAcheminement": "MONASSUT AUDIRACQ", - "nomCommune": "MONASSUT AUDIRACQ" + "codePostal": "58350", + "codeCommune": "58009", + "libelleAcheminement": "ARBOURSE", + "nomCommune": "ARBOURSE" }, { - "codePostal": "46130", - "codeCommune": "46043", - "libelleAcheminement": "CAHUS", - "nomCommune": "CAHUS" + "codePostal": "60680", + "codeCommune": "60125", + "libelleAcheminement": "CANLY", + "nomCommune": "CANLY" }, { - "codePostal": "38650", - "codeCommune": "38492", - "libelleAcheminement": "SINARD", - "nomCommune": "SINARD" + "codePostal": "68360", + "codeCommune": "68315", + "libelleAcheminement": "SOULTZ HAUT RHIN", + "nomCommune": "SOULTZ HAUT RHIN" }, { - "codePostal": "08200", - "codeCommune": "08194", - "libelleAcheminement": "GLAIRE", - "nomCommune": "GLAIRE" + "codePostal": "15190", + "codeCommune": "15110", + "libelleAcheminement": "LUGARDE", + "nomCommune": "LUGARDE" }, { - "codePostal": "64300", - "codeCommune": "64396", - "libelleAcheminement": "MONT", - "nomCommune": "MONT" + "codePostal": "68290", + "codeCommune": "68201", + "libelleAcheminement": "MASEVAUX NIEDERBRUCK", + "nomCommune": "MASEVAUX NIEDERBRUCK" }, { - "codePostal": "46100", - "codeCommune": "46051", - "libelleAcheminement": "CAMBES", - "nomCommune": "CAMBES" + "codePostal": "58700", + "codeCommune": "58013", + "libelleAcheminement": "ARTHEL", + "nomCommune": "ARTHEL" }, { - "codePostal": "38150", - "codeCommune": "38496", - "libelleAcheminement": "SONNAY", - "nomCommune": "SONNAY" + "codePostal": "60310", + "codeCommune": "60127", + "libelleAcheminement": "CANNY SUR MATZ", + "nomCommune": "CANNY SUR MATZ" }, { - "codePostal": "08430", - "codeCommune": "08201", - "libelleAcheminement": "GRUYERES", - "nomCommune": "GRUYERES" + "codePostal": "68720", + "codeCommune": "68320", + "libelleAcheminement": "SPECHBACH", + "nomCommune": "SPECHBACH" }, { - "codePostal": "64121", - "codeCommune": "64399", - "libelleAcheminement": "MONTARDON", - "nomCommune": "MONTARDON" + "codePostal": "15210", + "codeCommune": "15111", + "libelleAcheminement": "MADIC", + "nomCommune": "MADIC" }, { - "codePostal": "46100", - "codeCommune": "46052", - "libelleAcheminement": "CAMBOULIT", - "nomCommune": "CAMBOULIT" + "codePostal": "68290", + "codeCommune": "68201", + "libelleAcheminement": "MASEVAUX NIEDERBRUCK", + "nomCommune": "MASEVAUX NIEDERBRUCK" }, { - "codePostal": "38350", - "codeCommune": "38497", - "libelleAcheminement": "SOUSVILLE", - "nomCommune": "SOUSVILLE" + "codePostal": "58190", + "codeCommune": "58016", + "libelleAcheminement": "ASNOIS", + "nomCommune": "ASNOIS" }, { - "codePostal": "08230", - "codeCommune": "08202", - "libelleAcheminement": "GUE D HOSSUS", - "nomCommune": "GUE D HOSSUS" + "codePostal": "60170", + "codeCommune": "60129", + "libelleAcheminement": "CARLEPONT", + "nomCommune": "CARLEPONT" }, { - "codePostal": "64510", - "codeCommune": "64413", - "libelleAcheminement": "NARCASTET", - "nomCommune": "NARCASTET" + "codePostal": "68440", + "codeCommune": "68324", + "libelleAcheminement": "STEINBRUNN LE HAUT", + "nomCommune": "STEINBRUNN LE HAUT" }, { - "codePostal": "46100", - "codeCommune": "46057", - "libelleAcheminement": "CARDAILLAC", - "nomCommune": "CARDAILLAC" + "codePostal": "15500", + "codeCommune": "15119", + "libelleAcheminement": "MASSIAC", + "nomCommune": "MASSIAC" }, { - "codePostal": "38660", - "codeCommune": "38511", - "libelleAcheminement": "LE TOUVET", - "nomCommune": "LE TOUVET" + "codePostal": "68480", + "codeCommune": "68212", + "libelleAcheminement": "MOERNACH", + "nomCommune": "MOERNACH" }, { - "codePostal": "08290", - "codeCommune": "08208", - "libelleAcheminement": "HANNAPPES", - "nomCommune": "HANNAPPES" + "codePostal": "58420", + "codeCommune": "58026", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "64190", - "codeCommune": "64420", - "libelleAcheminement": "OGENNE CAMPTORT", - "nomCommune": "OGENNE CAMPTORT" + "codePostal": "60290", + "codeCommune": "60134", + "libelleAcheminement": "CAUFFRY", + "nomCommune": "CAUFFRY" }, { - "codePostal": "46100", - "codeCommune": "46075", - "libelleAcheminement": "CORN", - "nomCommune": "CORN" + "codePostal": "68640", + "codeCommune": "68325", + "libelleAcheminement": "STEINSOULTZ", + "nomCommune": "STEINSOULTZ" }, { - "codePostal": "38300", - "codeCommune": "38512", - "libelleAcheminement": "TRAMOLE", - "nomCommune": "TRAMOLE" + "codePostal": "15600", + "codeCommune": "15133", + "libelleAcheminement": "MONTMURAT", + "nomCommune": "MONTMURAT" }, { - "codePostal": "08170", - "codeCommune": "08222", - "libelleAcheminement": "HAYBES", - "nomCommune": "HAYBES" + "codePostal": "68640", + "codeCommune": "68222", + "libelleAcheminement": "MUESPACH LE HAUT", + "nomCommune": "MUESPACH LE HAUT" }, { - "codePostal": "64680", - "codeCommune": "64421", - "libelleAcheminement": "OGEU LES BAINS", - "nomCommune": "OGEU LES BAINS" + "codePostal": "58420", + "codeCommune": "58026", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "46270", - "codeCommune": "46085", - "libelleAcheminement": "CUZAC", - "nomCommune": "CUZAC" + "codePostal": "60210", + "codeCommune": "60136", + "libelleAcheminement": "CEMPUIS", + "nomCommune": "CEMPUIS" }, { - "codePostal": "38710", - "codeCommune": "38514", - "libelleAcheminement": "TREMINIS", - "nomCommune": "TREMINIS" + "codePostal": "68780", + "codeCommune": "68326", + "libelleAcheminement": "STERNENBERG", + "nomCommune": "STERNENBERG" }, { - "codePostal": "08320", - "codeCommune": "08226", - "libelleAcheminement": "HIERGES", - "nomCommune": "HIERGES" + "codePostal": "15150", + "codeCommune": "15135", + "libelleAcheminement": "MONTVERT", + "nomCommune": "MONTVERT" }, { - "codePostal": "64390", - "codeCommune": "64423", - "libelleAcheminement": "ORAAS", - "nomCommune": "ORAAS" + "codePostal": "68200", + "codeCommune": "68224", + "libelleAcheminement": "MULHOUSE", + "nomCommune": "MULHOUSE" }, { - "codePostal": "46600", - "codeCommune": "46086", - "libelleAcheminement": "CUZANCE", - "nomCommune": "CUZANCE" + "codePostal": "58310", + "codeCommune": "58033", + "libelleAcheminement": "BITRY", + "nomCommune": "BITRY" }, { - "codePostal": "38700", - "codeCommune": "38516", - "libelleAcheminement": "LA TRONCHE", - "nomCommune": "LA TRONCHE" + "codePostal": "60230", + "codeCommune": "60139", + "libelleAcheminement": "CHAMBLY", + "nomCommune": "CHAMBLY" }, { - "codePostal": "08270", - "codeCommune": "08240", - "libelleAcheminement": "JUSTINE HERBIGNY", - "nomCommune": "JUSTINE HERBIGNY" + "codePostal": "68470", + "codeCommune": "68328", + "libelleAcheminement": "STORCKENSOHN", + "nomCommune": "STORCKENSOHN" }, { - "codePostal": "64400", - "codeCommune": "64426", - "libelleAcheminement": "ORIN", - "nomCommune": "ORIN" + "codePostal": "15300", + "codeCommune": "15138", + "libelleAcheminement": "MURAT", + "nomCommune": "MURAT" }, { - "codePostal": "46100", - "codeCommune": "46102", - "libelleAcheminement": "FIGEAC", - "nomCommune": "FIGEAC" + "codePostal": "68530", + "codeCommune": "68229", + "libelleAcheminement": "MURBACH", + "nomCommune": "MURBACH" }, { - "codePostal": "38740", - "codeCommune": "38518", - "libelleAcheminement": "VALBONNAIS", - "nomCommune": "VALBONNAIS" + "codePostal": "58310", + "codeCommune": "58036", + "libelleAcheminement": "BOUHY", + "nomCommune": "BOUHY" }, { - "codePostal": "08130", - "codeCommune": "08244", - "libelleAcheminement": "LAMETZ", - "nomCommune": "LAMETZ" + "codePostal": "60240", + "codeCommune": "60140", + "libelleAcheminement": "CHAMBORS", + "nomCommune": "CHAMBORS" }, { - "codePostal": "64390", - "codeCommune": "64427", - "libelleAcheminement": "ORION", - "nomCommune": "ORION" + "codePostal": "68130", + "codeCommune": "68333", + "libelleAcheminement": "TAGSDORF", + "nomCommune": "TAGSDORF" }, { - "codePostal": "46700", - "codeCommune": "46107", - "libelleAcheminement": "FLORESSAS", - "nomCommune": "FLORESSAS" + "codePostal": "15260", + "codeCommune": "15142", + "libelleAcheminement": "NEUVEGLISE SUR TRUYERE", + "nomCommune": "NEUVEGLISE SUR TRUYERE" }, { - "codePostal": "38540", - "codeCommune": "38519", - "libelleAcheminement": "VALENCIN", - "nomCommune": "VALENCIN" + "codePostal": "68960", + "codeCommune": "68240", + "libelleAcheminement": "ILLTAL", + "nomCommune": "ILLTAL" }, { - "codePostal": "08240", - "codeCommune": "08246", - "libelleAcheminement": "LANDRES ET ST GEORGES", - "nomCommune": "LANDRES ET ST GEORGES" + "codePostal": "58140", + "codeCommune": "58037", + "libelleAcheminement": "BRASSY", + "nomCommune": "BRASSY" }, { - "codePostal": "64300", - "codeCommune": "64430", - "libelleAcheminement": "ORTHEZ", - "nomCommune": "ORTHEZ" + "codePostal": "60500", + "codeCommune": "60141", + "libelleAcheminement": "CHANTILLY", + "nomCommune": "CHANTILLY" }, { - "codePostal": "46100", - "codeCommune": "46108", - "libelleAcheminement": "FONS", - "nomCommune": "FONS" + "codePostal": "68210", + "codeCommune": "68336", + "libelleAcheminement": "TRAUBACH LE BAS", + "nomCommune": "TRAUBACH LE BAS" }, { - "codePostal": "38760", - "codeCommune": "38524", - "libelleAcheminement": "VARCES ALLIERES ET RISSET", - "nomCommune": "VARCES ALLIERES ET RISSET" + "codePostal": "15700", + "codeCommune": "15153", + "libelleAcheminement": "PLEAUX", + "nomCommune": "PLEAUX" }, { - "codePostal": "08250", - "codeCommune": "08274", - "libelleAcheminement": "MARCQ", - "nomCommune": "MARCQ" + "codePostal": "68600", + "codeCommune": "68246", + "libelleAcheminement": "OBERSAASHEIM", + "nomCommune": "OBERSAASHEIM" }, { - "codePostal": "64150", - "codeCommune": "64431", - "libelleAcheminement": "OS MARSILLON", - "nomCommune": "OS MARSILLON" + "codePostal": "58400", + "codeCommune": "58042", + "libelleAcheminement": "BULCY", + "nomCommune": "BULCY" }, { - "codePostal": "46230", - "codeCommune": "46109", - "libelleAcheminement": "FONTANES", - "nomCommune": "FONTANES" + "codePostal": "60240", + "codeCommune": "60144", + "libelleAcheminement": "CHAVENCON", + "nomCommune": "CHAVENCON" }, { - "codePostal": "38470", - "codeCommune": "38526", - "libelleAcheminement": "VATILIEU", - "nomCommune": "VATILIEU" + "codePostal": "68121", + "codeCommune": "68344", + "libelleAcheminement": "URBES", + "nomCommune": "URBES" }, { - "codePostal": "08370", - "codeCommune": "08275", - "libelleAcheminement": "MARGNY", - "nomCommune": "MARGNY" + "codePostal": "15400", + "codeCommune": "15162", + "libelleAcheminement": "RIOM ES MONTAGNES", + "nomCommune": "RIOM ES MONTAGNES" }, { - "codePostal": "64300", - "codeCommune": "64440", - "libelleAcheminement": "OZENX MONTESTRUCQ", - "nomCommune": "OZENX MONTESTRUCQ" + "codePostal": "68250", + "codeCommune": "68255", + "libelleAcheminement": "PFAFFENHEIM", + "nomCommune": "PFAFFENHEIM" }, { - "codePostal": "46090", - "codeCommune": "46112", - "libelleAcheminement": "FRANCOULES", - "nomCommune": "FRANCOULES" + "codePostal": "58420", + "codeCommune": "58043", + "libelleAcheminement": "BUSSY LA PESLE", + "nomCommune": "BUSSY LA PESLE" }, { - "codePostal": "38114", - "codeCommune": "38527", - "libelleAcheminement": "VAUJANY", - "nomCommune": "VAUJANY" + "codePostal": "60190", + "codeCommune": "60152", + "libelleAcheminement": "CHOISY LA VICTOIRE", + "nomCommune": "CHOISY LA VICTOIRE" }, { - "codePostal": "08390", - "codeCommune": "08278", - "libelleAcheminement": "MARQUIGNY", - "nomCommune": "MARQUIGNY" + "codePostal": "68480", + "codeCommune": "68363", + "libelleAcheminement": "WERENTZHOUSE", + "nomCommune": "WERENTZHOUSE" }, { - "codePostal": "64230", - "codeCommune": "64448", - "libelleAcheminement": "POEY DE LESCAR", - "nomCommune": "POEY DE LESCAR" + "codePostal": "15220", + "codeCommune": "15163", + "libelleAcheminement": "ROANNES ST MARY", + "nomCommune": "ROANNES ST MARY" }, { - "codePostal": "46250", - "codeCommune": "46114", - "libelleAcheminement": "FRAYSSINET LE GELAT", - "nomCommune": "FRAYSSINET LE GELAT" + "codePostal": "68840", + "codeCommune": "68258", + "libelleAcheminement": "PULVERSHEIM", + "nomCommune": "PULVERSHEIM" }, { - "codePostal": "38410", - "codeCommune": "38528", - "libelleAcheminement": "VAULNAVEYS LE BAS", - "nomCommune": "VAULNAVEYS LE BAS" + "codePostal": "58440", + "codeCommune": "58044", + "libelleAcheminement": "LA CELLE SUR LOIRE", + "nomCommune": "LA CELLE SUR LOIRE" }, { - "codePostal": "08400", - "codeCommune": "08280", - "libelleAcheminement": "MARVAUX VIEUX", - "nomCommune": "MARVAUX VIEUX" + "codePostal": "60110", + "codeCommune": "60162", + "libelleAcheminement": "CORBEIL CERF", + "nomCommune": "CORBEIL CERF" }, { - "codePostal": "64400", - "codeCommune": "64449", - "libelleAcheminement": "POEY D OLORON", - "nomCommune": "POEY D OLORON" + "codePostal": "68960", + "codeCommune": "68371", + "libelleAcheminement": "WILLER", + "nomCommune": "WILLER" }, { - "codePostal": "46130", - "codeCommune": "46117", - "libelleAcheminement": "GAGNAC SUR CERE", - "nomCommune": "GAGNAC SUR CERE" + "codePostal": "15600", + "codeCommune": "15167", + "libelleAcheminement": "ROUZIERS", + "nomCommune": "ROUZIERS" }, { - "codePostal": "38410", - "codeCommune": "38529", - "libelleAcheminement": "VAULNAVEYS LE HAUT", - "nomCommune": "VAULNAVEYS LE HAUT" + "codePostal": "68220", + "codeCommune": "68264", + "libelleAcheminement": "RANSPACH LE HAUT", + "nomCommune": "RANSPACH LE HAUT" }, { - "codePostal": "08260", - "codeCommune": "08282", - "libelleAcheminement": "MAUBERT FONTAINE", - "nomCommune": "MAUBERT FONTAINE" + "codePostal": "58700", + "codeCommune": "58045", + "libelleAcheminement": "LA CELLE SUR NIEVRE", + "nomCommune": "LA CELLE SUR NIEVRE" }, { - "codePostal": "64460", - "codeCommune": "64452", - "libelleAcheminement": "PONSON DESSUS", - "nomCommune": "PONSON DESSUS" + "codePostal": "60150", + "codeCommune": "60166", + "libelleAcheminement": "COUDUN", + "nomCommune": "COUDUN" }, { - "codePostal": "46150", - "codeCommune": "46119", - "libelleAcheminement": "GIGOUZAC", - "nomCommune": "GIGOUZAC" + "codePostal": "68480", + "codeCommune": "68373", + "libelleAcheminement": "WINKEL", + "nomCommune": "WINKEL" }, { - "codePostal": "38150", - "codeCommune": "38536", - "libelleAcheminement": "VERNIOZ", - "nomCommune": "VERNIOZ" + "codePostal": "15590", + "codeCommune": "15178", + "libelleAcheminement": "ST CIRGUES DE JORDANNE", + "nomCommune": "ST CIRGUES DE JORDANNE" }, { - "codePostal": "08430", - "codeCommune": "08295", - "libelleAcheminement": "MONDIGNY", - "nomCommune": "MONDIGNY" + "codePostal": "68120", + "codeCommune": "68270", + "libelleAcheminement": "RICHWILLER", + "nomCommune": "RICHWILLER" }, { - "codePostal": "64460", - "codeCommune": "64454", - "libelleAcheminement": "PONTIACQ VIELLEPINTE", - "nomCommune": "PONTIACQ VIELLEPINTE" + "codePostal": "58210", + "codeCommune": "58058", + "libelleAcheminement": "LA CHAPELLE ST ANDRE", + "nomCommune": "LA CHAPELLE ST ANDRE" }, { - "codePostal": "46130", - "codeCommune": "46123", - "libelleAcheminement": "GIRAC", - "nomCommune": "GIRAC" + "codePostal": "60350", + "codeCommune": "60167", + "libelleAcheminement": "COULOISY", + "nomCommune": "COULOISY" }, { - "codePostal": "38119", - "codeCommune": "38552", - "libelleAcheminement": "VILLARD ST CHRISTOPHE", - "nomCommune": "VILLARD ST CHRISTOPHE" + "codePostal": "68310", + "codeCommune": "68375", + "libelleAcheminement": "WITTELSHEIM", + "nomCommune": "WITTELSHEIM" }, { - "codePostal": "08390", - "codeCommune": "08301", - "libelleAcheminement": "MONTGON", - "nomCommune": "MONTGON" + "codePostal": "15140", + "codeCommune": "15179", + "libelleAcheminement": "ST CIRGUES DE MALBERT", + "nomCommune": "ST CIRGUES DE MALBERT" }, { - "codePostal": "64330", - "codeCommune": "64455", - "libelleAcheminement": "PORTET", - "nomCommune": "PORTET" + "codePostal": "68640", + "codeCommune": "68273", + "libelleAcheminement": "RIESPACH", + "nomCommune": "RIESPACH" }, { - "codePostal": "46320", - "codeCommune": "46131", - "libelleAcheminement": "GREZES", - "nomCommune": "GREZES" + "codePostal": "58350", + "codeCommune": "58064", + "libelleAcheminement": "CHATEAUNEUF VAL DE BARGIS", + "nomCommune": "CHATEAUNEUF VAL DE BARGIS" }, { - "codePostal": "38440", - "codeCommune": "38555", - "libelleAcheminement": "VILLENEUVE DE MARC", - "nomCommune": "VILLENEUVE DE MARC" + "codePostal": "60420", + "codeCommune": "60168", + "libelleAcheminement": "COURCELLES EPAYELLES", + "nomCommune": "COURCELLES EPAYELLES" }, { - "codePostal": "08400", - "codeCommune": "08303", - "libelleAcheminement": "MONTHOIS", - "nomCommune": "MONTHOIS" + "codePostal": "68130", + "codeCommune": "68382", + "libelleAcheminement": "ZAESSINGUE", + "nomCommune": "ZAESSINGUE" }, { - "codePostal": "64270", - "codeCommune": "64461", - "libelleAcheminement": "PUYOO", - "nomCommune": "PUYOO" + "codePostal": "15400", + "codeCommune": "15185", + "libelleAcheminement": "ST ETIENNE DE CHOMEIL", + "nomCommune": "ST ETIENNE DE CHOMEIL" }, { - "codePostal": "46320", - "codeCommune": "46133", - "libelleAcheminement": "ISSEPTS", - "nomCommune": "ISSEPTS" + "codePostal": "68800", + "codeCommune": "68279", + "libelleAcheminement": "RODEREN", + "nomCommune": "RODEREN" }, { - "codePostal": "38200", - "codeCommune": "38558", - "libelleAcheminement": "VILLETTE DE VIENNE", - "nomCommune": "VILLETTE DE VIENNE" + "codePostal": "58110", + "codeCommune": "58065", + "libelleAcheminement": "CHATILLON EN BAZOIS", + "nomCommune": "CHATILLON EN BAZOIS" }, { - "codePostal": "08210", - "codeCommune": "08311", - "libelleAcheminement": "MOUZON", - "nomCommune": "MOUZON" + "codePostal": "60580", + "codeCommune": "60172", + "libelleAcheminement": "COYE LA FORET", + "nomCommune": "COYE LA FORET" }, { - "codePostal": "64160", - "codeCommune": "64470", - "libelleAcheminement": "ST ARMOU", - "nomCommune": "ST ARMOU" + "codePostal": "68720", + "codeCommune": "68384", + "libelleAcheminement": "ZILLISHEIM", + "nomCommune": "ZILLISHEIM" }, { - "codePostal": "46150", - "codeCommune": "46134", - "libelleAcheminement": "LES JUNIES", - "nomCommune": "LES JUNIES" + "codePostal": "15230", + "codeCommune": "15201", + "libelleAcheminement": "ST MARTIN SOUS VIGOUROUX", + "nomCommune": "ST MARTIN SOUS VIGOUROUX" }, { - "codePostal": "38220", - "codeCommune": "38562", - "libelleAcheminement": "VIZILLE", - "nomCommune": "VIZILLE" + "codePostal": "68740", + "codeCommune": "68281", + "libelleAcheminement": "ROGGENHOUSE", + "nomCommune": "ROGGENHOUSE" }, { - "codePostal": "08150", - "codeCommune": "08312", - "libelleAcheminement": "MURTIN ET BOGNY", - "nomCommune": "MURTIN ET BOGNY" + "codePostal": "58700", + "codeCommune": "58070", + "libelleAcheminement": "CHAZEUIL", + "nomCommune": "CHAZEUIL" }, { - "codePostal": "64560", - "codeCommune": "64475", - "libelleAcheminement": "STE ENGRACE", - "nomCommune": "STE ENGRACE" + "codePostal": "60420", + "codeCommune": "60179", + "libelleAcheminement": "CREVECOEUR LE PETIT", + "nomCommune": "CREVECOEUR LE PETIT" }, { - "codePostal": "46090", - "codeCommune": "46137", - "libelleAcheminement": "LABASTIDE MARNHAC", - "nomCommune": "LABASTIDE MARNHAC" + "codePostal": "68230", + "codeCommune": "68385", + "libelleAcheminement": "ZIMMERBACH", + "nomCommune": "ZIMMERBACH" }, { - "codePostal": "38210", - "codeCommune": "38566", - "libelleAcheminement": "VOUREY", - "nomCommune": "VOUREY" + "codePostal": "15140", + "codeCommune": "15205", + "libelleAcheminement": "ST PAUL DE SALERS", + "nomCommune": "ST PAUL DE SALERS" }, { - "codePostal": "08300", - "codeCommune": "08313", - "libelleAcheminement": "NANTEUIL SUR AISNE", - "nomCommune": "NANTEUIL SUR AISNE" + "codePostal": "68480", + "codeCommune": "68284", + "libelleAcheminement": "ROPPENTZWILLER", + "nomCommune": "ROPPENTZWILLER" }, { - "codePostal": "64300", - "codeCommune": "64479", - "libelleAcheminement": "ST GIRONS EN BEARN", - "nomCommune": "ST GIRONS EN BEARN" + "codePostal": "58500", + "codeCommune": "58073", + "libelleAcheminement": "CHEVROCHES", + "nomCommune": "CHEVROCHES" }, { - "codePostal": "46240", - "codeCommune": "46138", - "libelleAcheminement": "COEUR DE CAUSSE", - "nomCommune": "COEUR DE CAUSSE" + "codePostal": "60240", + "codeCommune": "60195", + "libelleAcheminement": "DELINCOURT", + "nomCommune": "DELINCOURT" }, { - "codePostal": "39110", - "codeCommune": "39004", - "libelleAcheminement": "ABERGEMENT LES THESY", - "nomCommune": "ABERGEMENT LES THESY" + "codePostal": "69490", + "codeCommune": "69008", + "libelleAcheminement": "ANCY", + "nomCommune": "ANCY" }, { - "codePostal": "08300", - "codeCommune": "08314", - "libelleAcheminement": "NEUFLIZE", - "nomCommune": "NEUFLIZE" + "codePostal": "15290", + "codeCommune": "15214", + "libelleAcheminement": "ST SAURY", + "nomCommune": "ST SAURY" }, { - "codePostal": "64400", - "codeCommune": "64481", - "libelleAcheminement": "ST GOIN", - "nomCommune": "ST GOIN" + "codePostal": "68560", + "codeCommune": "68288", + "libelleAcheminement": "RUEDERBACH", + "nomCommune": "RUEDERBACH" }, { - "codePostal": "46200", - "codeCommune": "46144", - "libelleAcheminement": "LACAVE", - "nomCommune": "LACAVE" + "codePostal": "58170", + "codeCommune": "58074", + "libelleAcheminement": "CHIDDES", + "nomCommune": "CHIDDES" }, { - "codePostal": "39240", - "codeCommune": "39016", - "libelleAcheminement": "ARINTHOD", - "nomCommune": "ARINTHOD" + "codePostal": "60790", + "codeCommune": "60196", + "libelleAcheminement": "LA DRENNE", + "nomCommune": "LA DRENNE" }, { - "codePostal": "08430", - "codeCommune": "08324", - "libelleAcheminement": "NEUVIZY", - "nomCommune": "NEUVIZY" + "codePostal": "69400", + "codeCommune": "69013", + "libelleAcheminement": "ARNAS", + "nomCommune": "ARNAS" }, { - "codePostal": "64220", - "codeCommune": "64484", - "libelleAcheminement": "ST JEAN LE VIEUX", - "nomCommune": "ST JEAN LE VIEUX" + "codePostal": "15100", + "codeCommune": "15229", + "libelleAcheminement": "SOULAGES", + "nomCommune": "SOULAGES" }, { - "codePostal": "46240", - "codeCommune": "46151", - "libelleAcheminement": "LAMOTHE CASSEL", - "nomCommune": "LAMOTHE CASSEL" + "codePostal": "68520", + "codeCommune": "68302", + "libelleAcheminement": "SCHWEIGHOUSE THANN", + "nomCommune": "SCHWEIGHOUSE THANN" }, { - "codePostal": "39190", - "codeCommune": "39025", - "libelleAcheminement": "AUGEA", - "nomCommune": "AUGEA" + "codePostal": "58220", + "codeCommune": "58077", + "libelleAcheminement": "CIEZ", + "nomCommune": "CIEZ" }, { - "codePostal": "08700", - "codeCommune": "08328", - "libelleAcheminement": "NOUZONVILLE", - "nomCommune": "NOUZONVILLE" + "codePostal": "60790", + "codeCommune": "60196", + "libelleAcheminement": "LA DRENNE", + "nomCommune": "LA DRENNE" }, { - "codePostal": "64270", - "codeCommune": "64499", - "libelleAcheminement": "SALIES DE BEARN", - "nomCommune": "SALIES DE BEARN" + "codePostal": "69430", + "codeCommune": "69018", + "libelleAcheminement": "BEAUJEU", + "nomCommune": "BEAUJEU" }, { - "codePostal": "46090", - "codeCommune": "46156", - "libelleAcheminement": "BELLEFONT LA RAUZE", - "nomCommune": "BELLEFONT LA RAUZE" + "codePostal": "15130", + "codeCommune": "15234", + "libelleAcheminement": "TEISSIERES LES BOULIES", + "nomCommune": "TEISSIERES LES BOULIES" }, { - "codePostal": "39410", - "codeCommune": "39029", - "libelleAcheminement": "AUMUR", - "nomCommune": "AUMUR" + "codePostal": "68780", + "codeCommune": "68304", + "libelleAcheminement": "SENTHEIM", + "nomCommune": "SENTHEIM" }, { - "codePostal": "08430", - "codeCommune": "08341", - "libelleAcheminement": "POIX TERRON", - "nomCommune": "POIX TERRON" + "codePostal": "58460", + "codeCommune": "58085", + "libelleAcheminement": "CORVOL L ORGUEILLEUX", + "nomCommune": "CORVOL L ORGUEILLEUX" }, { - "codePostal": "64470", - "codeCommune": "64509", - "libelleAcheminement": "SAUGUIS ST ETIENNE", - "nomCommune": "SAUGUIS ST ETIENNE" + "codePostal": "60420", + "codeCommune": "60201", + "libelleAcheminement": "DOMPIERRE", + "nomCommune": "DOMPIERRE" }, { - "codePostal": "46160", - "codeCommune": "46157", - "libelleAcheminement": "LARROQUE TOIRAC", - "nomCommune": "LARROQUE TOIRAC" + "codePostal": "69690", + "codeCommune": "69021", + "libelleAcheminement": "BESSENAY", + "nomCommune": "BESSENAY" }, { - "codePostal": "39100", - "codeCommune": "39030", - "libelleAcheminement": "AUTHUME", - "nomCommune": "AUTHUME" + "codePostal": "15270", + "codeCommune": "15240", + "libelleAcheminement": "TREMOUILLE", + "nomCommune": "TREMOUILLE" }, { - "codePostal": "08290", - "codeCommune": "08344", - "libelleAcheminement": "PREZ", - "nomCommune": "PREZ" + "codePostal": "68800", + "codeCommune": "68334", + "libelleAcheminement": "THANN", + "nomCommune": "THANN" }, { - "codePostal": "64160", - "codeCommune": "64515", - "libelleAcheminement": "SEDZE MAUBECQ", - "nomCommune": "SEDZE MAUBECQ" + "codePostal": "58220", + "codeCommune": "58089", + "libelleAcheminement": "COULOUTRE", + "nomCommune": "COULOUTRE" }, { - "codePostal": "46210", - "codeCommune": "46160", - "libelleAcheminement": "LATRONQUIERE", - "nomCommune": "LATRONQUIERE" + "codePostal": "60800", + "codeCommune": "60203", + "libelleAcheminement": "DUVY", + "nomCommune": "DUVY" }, { - "codePostal": "39700", - "codeCommune": "39031", - "libelleAcheminement": "AUXANGE", - "nomCommune": "AUXANGE" + "codePostal": "69690", + "codeCommune": "69021", + "libelleAcheminement": "BESSENAY", + "nomCommune": "BESSENAY" }, { - "codePostal": "08270", - "codeCommune": "08348", - "libelleAcheminement": "PUISEUX", - "nomCommune": "PUISEUX" + "codePostal": "15100", + "codeCommune": "15262", + "libelleAcheminement": "VILLEDIEU", + "nomCommune": "VILLEDIEU" }, { - "codePostal": "64160", - "codeCommune": "64516", - "libelleAcheminement": "SEDZERE", - "nomCommune": "SEDZERE" + "codePostal": "68210", + "codeCommune": "68337", + "libelleAcheminement": "TRAUBACH LE HAUT", + "nomCommune": "TRAUBACH LE HAUT" }, { - "codePostal": "46500", - "codeCommune": "46165", - "libelleAcheminement": "LAVERGNE", - "nomCommune": "LAVERGNE" + "codePostal": "58210", + "codeCommune": "58090", + "libelleAcheminement": "COURCELLES", + "nomCommune": "COURCELLES" }, { - "codePostal": "39210", - "codeCommune": "39041", - "libelleAcheminement": "BAUME LES MESSIEURS", - "nomCommune": "BAUME LES MESSIEURS" + "codePostal": "60210", + "codeCommune": "60205", + "libelleAcheminement": "ELENCOURT", + "nomCommune": "ELENCOURT" }, { - "codePostal": "08400", - "codeCommune": "08350", - "libelleAcheminement": "QUATRE CHAMPS", - "nomCommune": "QUATRE CHAMPS" + "codePostal": "69220", + "codeCommune": "69045", + "libelleAcheminement": "CHARENTAY", + "nomCommune": "CHARENTAY" }, { - "codePostal": "64170", - "codeCommune": "64521", - "libelleAcheminement": "SERRES STE MARIE", - "nomCommune": "SERRES STE MARIE" + "codePostal": "15290", + "codeCommune": "15268", + "libelleAcheminement": "LE ROUGET PERS", + "nomCommune": "LE ROUGET PERS" }, { - "codePostal": "46100", - "codeCommune": "46168", - "libelleAcheminement": "LENTILLAC ST BLAISE", - "nomCommune": "LENTILLAC ST BLAISE" + "codePostal": "68230", + "codeCommune": "68354", + "libelleAcheminement": "WALBACH", + "nomCommune": "WALBACH" }, { - "codePostal": "39100", - "codeCommune": "39042", - "libelleAcheminement": "BAVERANS", - "nomCommune": "BAVERANS" + "codePostal": "58210", + "codeCommune": "58093", + "libelleAcheminement": "CUNCY LES VARZY", + "nomCommune": "CUNCY LES VARZY" }, { - "codePostal": "08400", - "codeCommune": "08351", - "libelleAcheminement": "QUILLY", - "nomCommune": "QUILLY" + "codePostal": "60157", + "codeCommune": "60206", + "libelleAcheminement": "ELINCOURT STE MARGUERITE", + "nomCommune": "ELINCOURT STE MARGUERITE" }, { - "codePostal": "64160", - "codeCommune": "64523", - "libelleAcheminement": "SEVIGNACQ", - "nomCommune": "SEVIGNACQ" + "codePostal": "69380", + "codeCommune": "69050", + "libelleAcheminement": "CHATILLON", + "nomCommune": "CHATILLON" }, { - "codePostal": "46700", - "codeCommune": "46187", - "libelleAcheminement": "MAUROUX", - "nomCommune": "MAUROUX" + "codePostal": "16500", + "codeCommune": "16001", + "libelleAcheminement": "ABZAC", + "nomCommune": "ABZAC" }, { - "codePostal": "39310", - "codeCommune": "39046", - "libelleAcheminement": "BELLECOMBE", - "nomCommune": "BELLECOMBE" + "codePostal": "68290", + "codeCommune": "68361", + "libelleAcheminement": "WEGSCHEID", + "nomCommune": "WEGSCHEID" }, { - "codePostal": "08230", - "codeCommune": "08355", - "libelleAcheminement": "REGNIOWEZ", - "nomCommune": "REGNIOWEZ" + "codePostal": "58310", + "codeCommune": "58094", + "libelleAcheminement": "DAMPIERRE SOUS BOUHY", + "nomCommune": "DAMPIERRE SOUS BOUHY" }, { - "codePostal": "64350", - "codeCommune": "64524", - "libelleAcheminement": "SIMACOURBE", - "nomCommune": "SIMACOURBE" + "codePostal": "60123", + "codeCommune": "60207", + "libelleAcheminement": "EMEVILLE", + "nomCommune": "EMEVILLE" }, { - "codePostal": "46150", - "codeCommune": "46190", - "libelleAcheminement": "MECHMONT", - "nomCommune": "MECHMONT" + "codePostal": "69440", + "codeCommune": "69051", + "libelleAcheminement": "CHAUSSAN", + "nomCommune": "CHAUSSAN" }, { - "codePostal": "39290", - "codeCommune": "39051", - "libelleAcheminement": "BIARNE", - "nomCommune": "BIARNE" + "codePostal": "16110", + "codeCommune": "16003", + "libelleAcheminement": "AGRIS", + "nomCommune": "AGRIS" }, { - "codePostal": "08450", - "codeCommune": "08357", - "libelleAcheminement": "REMILLY AILLICOURT", - "nomCommune": "REMILLY AILLICOURT" + "codePostal": "68920", + "codeCommune": "68365", + "libelleAcheminement": "WETTOLSHEIM", + "nomCommune": "WETTOLSHEIM" }, { - "codePostal": "64370", - "codeCommune": "64541", - "libelleAcheminement": "URDES", - "nomCommune": "URDES" + "codePostal": "58300", + "codeCommune": "58095", + "libelleAcheminement": "DECIZE", + "nomCommune": "DECIZE" }, { - "codePostal": "46090", - "codeCommune": "46197", - "libelleAcheminement": "LE MONTAT", - "nomCommune": "LE MONTAT" + "codePostal": "60190", + "codeCommune": "60210", + "libelleAcheminement": "EPINEUSE", + "nomCommune": "EPINEUSE" }, { - "codePostal": "39250", - "codeCommune": "39053", - "libelleAcheminement": "BIEF DU FOURG", - "nomCommune": "BIEF DU FOURG" + "codePostal": "69440", + "codeCommune": "69051", + "libelleAcheminement": "CHAUSSAN", + "nomCommune": "CHAUSSAN" }, { - "codePostal": "08220", - "codeCommune": "08360", - "libelleAcheminement": "RENNEVILLE", - "nomCommune": "RENNEVILLE" + "codePostal": "16140", + "codeCommune": "16008", + "libelleAcheminement": "AMBERAC", + "nomCommune": "AMBERAC" }, { - "codePostal": "64490", - "codeCommune": "64542", - "libelleAcheminement": "URDOS", - "nomCommune": "URDOS" + "codePostal": "68760", + "codeCommune": "68372", + "libelleAcheminement": "WILLER SUR THUR", + "nomCommune": "WILLER SUR THUR" }, { - "codePostal": "46160", - "codeCommune": "46198", - "libelleAcheminement": "MONTBRUN", - "nomCommune": "MONTBRUN" + "codePostal": "58300", + "codeCommune": "58096", + "libelleAcheminement": "DEVAY", + "nomCommune": "DEVAY" }, { - "codePostal": "39230", - "codeCommune": "39060", - "libelleAcheminement": "BOIS DE GAND", - "nomCommune": "BOIS DE GAND" + "codePostal": "60110", + "codeCommune": "60218", + "libelleAcheminement": "ESCHES", + "nomCommune": "ESCHES" }, { - "codePostal": "08300", - "codeCommune": "08362", - "libelleAcheminement": "RETHEL", - "nomCommune": "RETHEL" + "codePostal": "69380", + "codeCommune": "69055", + "libelleAcheminement": "LES CHERES", + "nomCommune": "LES CHERES" }, { - "codePostal": "64430", - "codeCommune": "64543", - "libelleAcheminement": "UREPEL", - "nomCommune": "UREPEL" + "codePostal": "16560", + "codeCommune": "16011", + "libelleAcheminement": "ANAIS", + "nomCommune": "ANAIS" }, { - "codePostal": "46350", - "codeCommune": "46215", - "libelleAcheminement": "PAYRAC", - "nomCommune": "PAYRAC" + "codePostal": "68270", + "codeCommune": "68376", + "libelleAcheminement": "WITTENHEIM", + "nomCommune": "WITTENHEIM" }, { - "codePostal": "39290", - "codeCommune": "39074", - "libelleAcheminement": "BRANS", - "nomCommune": "BRANS" + "codePostal": "58220", + "codeCommune": "58102", + "libelleAcheminement": "DONZY", + "nomCommune": "DONZY" }, { - "codePostal": "08220", - "codeCommune": "08369", - "libelleAcheminement": "LA ROMAGNE", - "nomCommune": "LA ROMAGNE" + "codePostal": "60330", + "codeCommune": "60226", + "libelleAcheminement": "EVE", + "nomCommune": "EVE" }, { - "codePostal": "64330", - "codeCommune": "64552", - "libelleAcheminement": "VIALER", - "nomCommune": "VIALER" + "codePostal": "69380", + "codeCommune": "69056", + "libelleAcheminement": "CHESSY", + "nomCommune": "CHESSY" }, { - "codePostal": "46300", - "codeCommune": "46216", - "libelleAcheminement": "PAYRIGNAC", - "nomCommune": "PAYRIGNAC" + "codePostal": "16460", + "codeCommune": "16023", + "libelleAcheminement": "AUNAC SUR CHARENTE", + "nomCommune": "AUNAC SUR CHARENTE" }, { - "codePostal": "39570", - "codeCommune": "39079", - "libelleAcheminement": "BRIOD", - "nomCommune": "BRIOD" + "codePostal": "68340", + "codeCommune": "68383", + "libelleAcheminement": "ZELLENBERG", + "nomCommune": "ZELLENBERG" }, { - "codePostal": "08150", - "codeCommune": "08370", - "libelleAcheminement": "ROUVROY SUR AUDRY", - "nomCommune": "ROUVROY SUR AUDRY" + "codePostal": "58160", + "codeCommune": "58112", + "libelleAcheminement": "LA FERMETE", + "nomCommune": "LA FERMETE" }, { - "codePostal": "64190", - "codeCommune": "64555", - "libelleAcheminement": "VIELLENAVE DE NAVARRENX", - "nomCommune": "VIELLENAVE DE NAVARRENX" + "codePostal": "60510", + "codeCommune": "60230", + "libelleAcheminement": "LE FAY ST QUENTIN", + "nomCommune": "LE FAY ST QUENTIN" }, { - "codePostal": "46250", - "codeCommune": "46222", - "libelleAcheminement": "POMAREDE", - "nomCommune": "POMAREDE" + "codePostal": "69115", + "codeCommune": "69058", + "libelleAcheminement": "CHIROUBLES", + "nomCommune": "CHIROUBLES" }, { - "codePostal": "39110", - "codeCommune": "39084", - "libelleAcheminement": "CERNANS", - "nomCommune": "CERNANS" + "codePostal": "16300", + "codeCommune": "16028", + "libelleAcheminement": "BARBEZIEUX ST HILAIRE", + "nomCommune": "BARBEZIEUX ST HILAIRE" }, { - "codePostal": "08130", - "codeCommune": "08374", - "libelleAcheminement": "LA SABOTTERIE", - "nomCommune": "LA SABOTTERIE" + "codePostal": "69790", + "codeCommune": "69002", + "libelleAcheminement": "AIGUEPERSE", + "nomCommune": "AIGUEPERSE" }, { - "codePostal": "64150", - "codeCommune": "64556", - "libelleAcheminement": "VIELLESEGURE", - "nomCommune": "VIELLESEGURE" + "codePostal": "58240", + "codeCommune": "58115", + "libelleAcheminement": "FLEURY SUR LOIRE", + "nomCommune": "FLEURY SUR LOIRE" }, { - "codePostal": "46220", - "codeCommune": "46225", - "libelleAcheminement": "PRAYSSAC", - "nomCommune": "PRAYSSAC" + "codePostal": "60700", + "codeCommune": "60238", + "libelleAcheminement": "FLEURINES", + "nomCommune": "FLEURINES" }, { - "codePostal": "39240", - "codeCommune": "39086", - "libelleAcheminement": "CERNON", - "nomCommune": "CERNON" + "codePostal": "69380", + "codeCommune": "69059", + "libelleAcheminement": "CIVRIEUX D AZERGUES", + "nomCommune": "CIVRIEUX D AZERGUES" }, { - "codePostal": "08360", - "codeCommune": "08380", - "libelleAcheminement": "ST FERGEUX", - "nomCommune": "ST FERGEUX" + "codePostal": "16300", + "codeCommune": "16030", + "libelleAcheminement": "BARRET", + "nomCommune": "BARRET" }, { - "codePostal": "64410", - "codeCommune": "64557", - "libelleAcheminement": "VIGNES", - "nomCommune": "VIGNES" + "codePostal": "69250", + "codeCommune": "69003", + "libelleAcheminement": "ALBIGNY SUR SAONE", + "nomCommune": "ALBIGNY SUR SAONE" }, { - "codePostal": "46270", - "codeCommune": "46226", - "libelleAcheminement": "PRENDEIGNES", - "nomCommune": "PRENDEIGNES" + "codePostal": "58270", + "codeCommune": "58119", + "libelleAcheminement": "FRASNAY REUGNY", + "nomCommune": "FRASNAY REUGNY" }, { - "codePostal": "39800", - "codeCommune": "39094", - "libelleAcheminement": "CHAMOLE", - "nomCommune": "CHAMOLE" + "codePostal": "60690", + "codeCommune": "60242", + "libelleAcheminement": "FONTAINE LAVAGANNE", + "nomCommune": "FONTAINE LAVAGANNE" }, { - "codePostal": "08400", - "codeCommune": "08390", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "69870", + "codeCommune": "69060", + "libelleAcheminement": "CLAVEISOLLES", + "nomCommune": "CLAVEISOLLES" }, { - "codePostal": "65240", - "codeCommune": "65003", - "libelleAcheminement": "ADERVIELLE POUCHERGUES", - "nomCommune": "ADERVIELLE POUCHERGUES" + "codePostal": "16210", + "codeCommune": "16034", + "libelleAcheminement": "BAZAC", + "nomCommune": "BAZAC" }, { - "codePostal": "46130", - "codeCommune": "46228", - "libelleAcheminement": "PRUDHOMAT", - "nomCommune": "PRUDHOMAT" + "codePostal": "69480", + "codeCommune": "69005", + "libelleAcheminement": "AMBERIEUX D AZERGUES", + "nomCommune": "AMBERIEUX" }, { - "codePostal": "39600", - "codeCommune": "39095", - "libelleAcheminement": "CHAMPAGNE SUR LOUE", - "nomCommune": "CHAMPAGNE SUR LOUE" + "codePostal": "58230", + "codeCommune": "58125", + "libelleAcheminement": "GIEN SUR CURE", + "nomCommune": "GIEN SUR CURE" }, { - "codePostal": "08310", - "codeCommune": "08393", - "libelleAcheminement": "ST PIERRE A ARNES", - "nomCommune": "ST PIERRE A ARNES" + "codePostal": "60220", + "codeCommune": "60245", + "libelleAcheminement": "FORMERIE", + "nomCommune": "FORMERIE" }, { - "codePostal": "65440", - "codeCommune": "65006", - "libelleAcheminement": "ANCIZAN", - "nomCommune": "ANCIZAN" + "codePostal": "69220", + "codeCommune": "69065", + "libelleAcheminement": "CORCELLES EN BEAUJOLAIS", + "nomCommune": "CORCELLES EN BEAUJOLAIS" }, { - "codePostal": "46130", - "codeCommune": "46229", - "libelleAcheminement": "PUYBRUN", - "nomCommune": "PUYBRUN" + "codePostal": "16250", + "codeCommune": "16046", + "libelleAcheminement": "COTEAUX DU BLANZACAIS", + "nomCommune": "COTEAUX DU BLANZACAIS" }, { - "codePostal": "39290", - "codeCommune": "39096", - "libelleAcheminement": "CHAMPAGNEY", - "nomCommune": "CHAMPAGNEY" + "codePostal": "69550", + "codeCommune": "69006", + "libelleAcheminement": "AMPLEPUIS", + "nomCommune": "AMPLEPUIS" }, { - "codePostal": "08300", - "codeCommune": "08397", - "libelleAcheminement": "ST REMY LE PETIT", - "nomCommune": "ST REMY LE PETIT" + "codePostal": "58700", + "codeCommune": "58127", + "libelleAcheminement": "GIRY", + "nomCommune": "GIRY" }, { - "codePostal": "65370", - "codeCommune": "65012", - "libelleAcheminement": "ANLA", - "nomCommune": "ANLA" + "codePostal": "60220", + "codeCommune": "60248", + "libelleAcheminement": "FOUILLOY", + "nomCommune": "FOUILLOY" }, { - "codePostal": "46500", - "codeCommune": "46238", - "libelleAcheminement": "RIGNAC", - "nomCommune": "RIGNAC" + "codePostal": "69470", + "codeCommune": "69066", + "libelleAcheminement": "COURS", + "nomCommune": "COURS" }, { - "codePostal": "39500", - "codeCommune": "39099", - "libelleAcheminement": "CHAMPDIVERS", - "nomCommune": "CHAMPDIVERS" + "codePostal": "16190", + "codeCommune": "16052", + "libelleAcheminement": "BORS DE MONTMOREAU", + "nomCommune": "BORS DE MONTMOREAU" }, { - "codePostal": "08130", - "codeCommune": "08401", - "libelleAcheminement": "SAULCES CHAMPENOISES", - "nomCommune": "SAULCES CHAMPENOISES" + "codePostal": "69380", + "codeCommune": "69020", + "libelleAcheminement": "BELMONT D AZERGUES", + "nomCommune": "BELMONT D AZERGUES" }, { - "codePostal": "65400", - "codeCommune": "65022", - "libelleAcheminement": "ARCIZANS DESSUS", - "nomCommune": "ARCIZANS DESSUS" + "codePostal": "58130", + "codeCommune": "58131", + "libelleAcheminement": "GUERIGNY", + "nomCommune": "GUERIGNY" }, { - "codePostal": "46200", - "codeCommune": "46239", - "libelleAcheminement": "LE ROC", - "nomCommune": "LE ROC" + "codePostal": "60800", + "codeCommune": "60261", + "libelleAcheminement": "FRESNOY LE LUAT", + "nomCommune": "FRESNOY LE LUAT" }, { - "codePostal": "39260", - "codeCommune": "39106", - "libelleAcheminement": "CHARCHILLA", - "nomCommune": "CHARCHILLA" + "codePostal": "69250", + "codeCommune": "69071", + "libelleAcheminement": "CURIS AU MONT D OR", + "nomCommune": "CURIS AU MONT D OR" }, { - "codePostal": "08270", - "codeCommune": "08402", - "libelleAcheminement": "SAULCES MONCLIN", - "nomCommune": "SAULCES MONCLIN" + "codePostal": "16360", + "codeCommune": "16053", + "libelleAcheminement": "BORS DE BAIGNES", + "nomCommune": "BORS DE BAIGNES" }, { - "codePostal": "65200", - "codeCommune": "65024", - "libelleAcheminement": "ARGELES BAGNERES", - "nomCommune": "ARGELES BAGNERES" + "codePostal": "69690", + "codeCommune": "69021", + "libelleAcheminement": "BESSENAY", + "nomCommune": "BESSENAY" }, { - "codePostal": "46500", - "codeCommune": "46240", - "libelleAcheminement": "ROCAMADOUR", - "nomCommune": "ROCAMADOUR" + "codePostal": "58290", + "codeCommune": "58135", + "libelleAcheminement": "ISENAY", + "nomCommune": "ISENAY" }, { - "codePostal": "39240", - "codeCommune": "39111", - "libelleAcheminement": "CHARNOD", - "nomCommune": "CHARNOD" + "codePostal": "60480", + "codeCommune": "60265", + "libelleAcheminement": "FROISSY", + "nomCommune": "FROISSY" }, { - "codePostal": "08220", - "codeCommune": "08413", - "libelleAcheminement": "SERAINCOURT", - "nomCommune": "SERAINCOURT" + "codePostal": "69570", + "codeCommune": "69072", + "libelleAcheminement": "DARDILLY", + "nomCommune": "DARDILLY" }, { - "codePostal": "65400", - "codeCommune": "65032", - "libelleAcheminement": "ARRENS MARSOUS", - "nomCommune": "ARRENS MARSOUS" + "codePostal": "16200", + "codeCommune": "16056", + "libelleAcheminement": "BOURG CHARENTE", + "nomCommune": "BOURG CHARENTE" }, { - "codePostal": "46500", - "codeCommune": "46246", - "libelleAcheminement": "SAIGNES", - "nomCommune": "SAIGNES" + "codePostal": "69690", + "codeCommune": "69021", + "libelleAcheminement": "BESSENAY", + "nomCommune": "BESSENAY" }, { - "codePostal": "39130", - "codeCommune": "39122", - "libelleAcheminement": "CHATILLON", - "nomCommune": "CHATILLON" + "codePostal": "58250", + "codeCommune": "58139", + "libelleAcheminement": "LANTY", + "nomCommune": "LANTY" }, { - "codePostal": "08370", - "codeCommune": "08421", - "libelleAcheminement": "SIGNY MONTLIBERT", - "nomCommune": "SIGNY MONTLIBERT" + "codePostal": "60360", + "codeCommune": "60267", + "libelleAcheminement": "LE GALLET", + "nomCommune": "LE GALLET" }, { - "codePostal": "65400", - "codeCommune": "65032", - "libelleAcheminement": "ARRENS MARSOUS", - "nomCommune": "ARRENS MARSOUS" + "codePostal": "69130", + "codeCommune": "69081", + "libelleAcheminement": "ECULLY", + "nomCommune": "ECULLY" }, { - "codePostal": "46260", - "codeCommune": "46247", - "libelleAcheminement": "SAILLAC", - "nomCommune": "SAILLAC" + "codePostal": "16210", + "codeCommune": "16063", + "libelleAcheminement": "BRIE SOUS CHALAIS", + "nomCommune": "BRIE SOUS CHALAIS" }, { - "codePostal": "39150", - "codeCommune": "39130", - "libelleAcheminement": "NANCHEZ", - "nomCommune": "NANCHEZ" + "codePostal": "69620", + "codeCommune": "69024", + "libelleAcheminement": "VAL D OINGT", + "nomCommune": "VAL D OINGT" }, { - "codePostal": "08130", - "codeCommune": "08433", - "libelleAcheminement": "SUZANNE", - "nomCommune": "SUZANNE" + "codePostal": "58230", + "codeCommune": "58141", + "libelleAcheminement": "LAVAULT DE FRETOY", + "nomCommune": "LAVAULT DE FRETOY" }, { - "codePostal": "65240", - "codeCommune": "65039", - "libelleAcheminement": "ASPIN AURE", - "nomCommune": "ASPIN AURE" + "codePostal": "60129", + "codeCommune": "60274", + "libelleAcheminement": "GLAIGNES", + "nomCommune": "GLAIGNES" }, { - "codePostal": "46120", - "codeCommune": "46249", - "libelleAcheminement": "ST BRESSOU", - "nomCommune": "ST BRESSOU" + "codePostal": "69270", + "codeCommune": "69088", + "libelleAcheminement": "FONTAINES SUR SAONE", + "nomCommune": "FONTAINES SUR SAONE" }, { - "codePostal": "39150", - "codeCommune": "39130", - "libelleAcheminement": "NANCHEZ", - "nomCommune": "NANCHEZ" + "codePostal": "16500", + "codeCommune": "16065", + "libelleAcheminement": "BRILLAC", + "nomCommune": "BRILLAC" }, { - "codePostal": "08240", - "codeCommune": "08437", - "libelleAcheminement": "TAILLY", - "nomCommune": "TAILLY" + "codePostal": "69620", + "codeCommune": "69026", + "libelleAcheminement": "LE BREUIL", + "nomCommune": "LE BREUIL" }, { - "codePostal": "65400", - "codeCommune": "65045", - "libelleAcheminement": "AUCUN", - "nomCommune": "AUCUN" + "codePostal": "58700", + "codeCommune": "58147", + "libelleAcheminement": "LURCY LE BOURG", + "nomCommune": "LURCY LE BOURG" }, { - "codePostal": "46400", - "codeCommune": "46251", - "libelleAcheminement": "ST CERE", - "nomCommune": "ST CERE" + "codePostal": "60650", + "codeCommune": "60275", + "libelleAcheminement": "GLATIGNY", + "nomCommune": "GLATIGNY" }, { - "codePostal": "39110", - "codeCommune": "39133", - "libelleAcheminement": "CHAUX CHAMPAGNY", - "nomCommune": "CHAUX CHAMPAGNY" + "codePostal": "69170", + "codeCommune": "69102", + "libelleAcheminement": "JOUX", + "nomCommune": "JOUX" }, { - "codePostal": "08110", - "codeCommune": "08444", - "libelleAcheminement": "TETAIGNE", - "nomCommune": "TETAIGNE" + "codePostal": "16150", + "codeCommune": "16071", + "libelleAcheminement": "CHABRAC", + "nomCommune": "CHABRAC" }, { - "codePostal": "65130", - "codeCommune": "65054", - "libelleAcheminement": "AVEZAC PRAT LAHITTE", - "nomCommune": "AVEZAC PRAT LAHITTE" + "codePostal": "69126", + "codeCommune": "69028", + "libelleAcheminement": "BRINDAS", + "nomCommune": "BRINDAS" }, { - "codePostal": "46600", - "codeCommune": "46265", - "libelleAcheminement": "ST DENIS LES MARTEL", - "nomCommune": "ST DENIS LES MARTEL" + "codePostal": "58190", + "codeCommune": "58154", + "libelleAcheminement": "LA MAISON DIEU", + "nomCommune": "LA MAISON DIEU" }, { - "codePostal": "39110", - "codeCommune": "39133", - "libelleAcheminement": "CHAUX CHAMPAGNY", - "nomCommune": "CHAUX CHAMPAGNY" + "codePostal": "60000", + "codeCommune": "60277", + "libelleAcheminement": "GOINCOURT", + "nomCommune": "GOINCOURT" }, { - "codePostal": "08090", - "codeCommune": "08450", - "libelleAcheminement": "THIS", - "nomCommune": "THIS" + "codePostal": "69640", + "codeCommune": "69105", + "libelleAcheminement": "LACENAS", + "nomCommune": "LACENAS" }, { - "codePostal": "65400", - "codeCommune": "65055", - "libelleAcheminement": "AYROS ARBOUIX", - "nomCommune": "AYROS ARBOUIX" + "codePostal": "16350", + "codeCommune": "16076", + "libelleAcheminement": "CHAMPAGNE MOUTON", + "nomCommune": "CHAMPAGNE MOUTON" }, { - "codePostal": "46100", - "codeCommune": "46266", - "libelleAcheminement": "ST FELIX", - "nomCommune": "ST FELIX" + "codePostal": "69210", + "codeCommune": "69032", + "libelleAcheminement": "BULLY", + "nomCommune": "BULLY" }, { - "codePostal": "39120", - "codeCommune": "39139", - "libelleAcheminement": "CHENE BERNARD", - "nomCommune": "CHENE BERNARD" + "codePostal": "58290", + "codeCommune": "58161", + "libelleAcheminement": "MAUX", + "nomCommune": "MAUX" }, { - "codePostal": "08270", - "codeCommune": "08467", - "libelleAcheminement": "VAUX MONTREUIL", - "nomCommune": "VAUX MONTREUIL" + "codePostal": "60120", + "codeCommune": "60283", + "libelleAcheminement": "GOUY LES GROSEILLERS", + "nomCommune": "GOUY LES GROSEILLERS" }, { - "codePostal": "65400", - "codeCommune": "65056", - "libelleAcheminement": "AYZAC OST", - "nomCommune": "AYZAC OST" + "codePostal": "69870", + "codeCommune": "69107", + "libelleAcheminement": "LAMURE SUR AZERGUES", + "nomCommune": "LAMURE SUR AZERGUES" }, { - "codePostal": "46310", - "codeCommune": "46267", - "libelleAcheminement": "ST GERMAIN DU BEL AIR", - "nomCommune": "ST GERMAIN DU BEL AIR" + "codePostal": "16430", + "codeCommune": "16078", + "libelleAcheminement": "CHAMPNIERS", + "nomCommune": "CHAMPNIERS" }, { - "codePostal": "39290", - "codeCommune": "39141", - "libelleAcheminement": "CHEVIGNY", - "nomCommune": "CHEVIGNY" + "codePostal": "69270", + "codeCommune": "69033", + "libelleAcheminement": "CAILLOUX SUR FONTAINES", + "nomCommune": "CAILLOUX SUR FONTAINES" }, { - "codePostal": "08430", - "codeCommune": "08478", - "libelleAcheminement": "VILLERS LE TILLEUL", - "nomCommune": "VILLERS LE TILLEUL" + "codePostal": "58410", + "codeCommune": "58162", + "libelleAcheminement": "MENESTREAU", + "nomCommune": "MENESTREAU" }, { - "codePostal": "65360", - "codeCommune": "65063", - "libelleAcheminement": "BARBAZAN DESSUS", - "nomCommune": "BARBAZAN DESSUS" + "codePostal": "60650", + "codeCommune": "60298", + "libelleAcheminement": "HANVOILE", + "nomCommune": "HANVOILE" }, { - "codePostal": "46270", - "codeCommune": "46272", - "libelleAcheminement": "ST JEAN MIRABEL", - "nomCommune": "ST JEAN MIRABEL" + "codePostal": "69700", + "codeCommune": "69118", + "libelleAcheminement": "LOIRE SUR RHONE", + "nomCommune": "LOIRE SUR RHONE" }, { - "codePostal": "39570", - "codeCommune": "39168", - "libelleAcheminement": "COURBETTE", - "nomCommune": "COURBETTE" + "codePostal": "16140", + "codeCommune": "16083", + "libelleAcheminement": "CHARME", + "nomCommune": "CHARME" }, { - "codePostal": "08310", - "codeCommune": "08484", - "libelleAcheminement": "VILLE SUR RETOURNE", - "nomCommune": "VILLE SUR RETOURNE" + "codePostal": "69300", + "codeCommune": "69034", + "libelleAcheminement": "CALUIRE ET CUIRE", + "nomCommune": "CALUIRE ET CUIRE" }, { - "codePostal": "65380", - "codeCommune": "65067", - "libelleAcheminement": "BARRY", - "nomCommune": "BARRY" + "codePostal": "58440", + "codeCommune": "58187", + "libelleAcheminement": "MYENNES", + "nomCommune": "MYENNES" }, { - "codePostal": "46330", - "codeCommune": "46276", - "libelleAcheminement": "ST MARTIN LABOUVAL", - "nomCommune": "ST MARTIN LABOUVAL" + "codePostal": "60510", + "codeCommune": "60302", + "libelleAcheminement": "HAUDIVILLERS", + "nomCommune": "HAUDIVILLERS" }, { - "codePostal": "39570", - "codeCommune": "39169", - "libelleAcheminement": "COURBOUZON", - "nomCommune": "COURBOUZON" + "codePostal": "69430", + "codeCommune": "69124", + "libelleAcheminement": "MARCHAMPT", + "nomCommune": "MARCHAMPT" }, { - "codePostal": "08440", - "codeCommune": "08488", - "libelleAcheminement": "VIVIER AU COURT", - "nomCommune": "VIVIER AU COURT" + "codePostal": "16310", + "codeCommune": "16096", + "libelleAcheminement": "CHERVES CHATELARS", + "nomCommune": "CHERVES CHATELARS" }, { - "codePostal": "65100", - "codeCommune": "65070", - "libelleAcheminement": "BARTRES", - "nomCommune": "BARTRES" + "codePostal": "69410", + "codeCommune": "69040", + "libelleAcheminement": "CHAMPAGNE AU MONT D OR", + "nomCommune": "CHAMPAGNE AU MONT D OR" }, { - "codePostal": "46120", - "codeCommune": "46279", - "libelleAcheminement": "ST MAURICE EN QUERCY", - "nomCommune": "ST MAURICE EN QUERCY" + "codePostal": "58190", + "codeCommune": "58190", + "libelleAcheminement": "NEUFFONTAINES", + "nomCommune": "NEUFFONTAINES" }, { - "codePostal": "39260", - "codeCommune": "39175", - "libelleAcheminement": "COYRON", - "nomCommune": "COYRON" + "codePostal": "60350", + "codeCommune": "60305", + "libelleAcheminement": "HAUTEFONTAINE", + "nomCommune": "HAUTEFONTAINE" }, { - "codePostal": "08270", - "codeCommune": "08496", - "libelleAcheminement": "WAGNON", - "nomCommune": "WAGNON" + "codePostal": "69380", + "codeCommune": "69125", + "libelleAcheminement": "MARCILLY D AZERGUES", + "nomCommune": "MARCILLY D AZERGUES" }, { - "codePostal": "65250", - "codeCommune": "65076", - "libelleAcheminement": "BAZUS NESTE", - "nomCommune": "BAZUS NESTE" + "codePostal": "16370", + "codeCommune": "16097", + "libelleAcheminement": "CHERVES RICHEMONT", + "nomCommune": "CHERVES RICHEMONT" }, { - "codePostal": "46400", - "codeCommune": "46281", - "libelleAcheminement": "ST MEDARD DE PRESQUE", - "nomCommune": "ST MEDARD DE PRESQUE" + "codePostal": "69630", + "codeCommune": "69043", + "libelleAcheminement": "CHAPONOST", + "nomCommune": "CHAPONOST" }, { - "codePostal": "39260", - "codeCommune": "39179", - "libelleAcheminement": "CRENANS", - "nomCommune": "CRENANS" + "codePostal": "58250", + "codeCommune": "58195", + "libelleAcheminement": "LA NOCLE MAULAIX", + "nomCommune": "LA NOCLE MAULAIX" }, { - "codePostal": "08090", - "codeCommune": "08498", - "libelleAcheminement": "WARNECOURT", - "nomCommune": "WARNECOURT" + "codePostal": "60119", + "codeCommune": "60309", + "libelleAcheminement": "HENONVILLE", + "nomCommune": "HENONVILLE" }, { - "codePostal": "65400", - "codeCommune": "65077", - "libelleAcheminement": "BEAUCENS", - "nomCommune": "BEAUCENS" + "codePostal": "69620", + "codeCommune": "69134", + "libelleAcheminement": "MOIRE", + "nomCommune": "MOIRE" }, { - "codePostal": "46130", - "codeCommune": "46284", - "libelleAcheminement": "ST MICHEL LOUBEJOU", - "nomCommune": "ST MICHEL LOUBEJOU" + "codePostal": "16480", + "codeCommune": "16099", + "libelleAcheminement": "CHILLAC", + "nomCommune": "CHILLAC" }, { - "codePostal": "39290", - "codeCommune": "39188", - "libelleAcheminement": "DAMMARTIN MARPAIN", - "nomCommune": "DAMMARTIN MARPAIN" + "codePostal": "69380", + "codeCommune": "69052", + "libelleAcheminement": "CHAZAY D AZERGUES", + "nomCommune": "CHAZAY D AZERGUES" }, { - "codePostal": "08270", - "codeCommune": "08500", - "libelleAcheminement": "WIGNICOURT", - "nomCommune": "WIGNICOURT" + "codePostal": "58190", + "codeCommune": "58197", + "libelleAcheminement": "NUARS", + "nomCommune": "NUARS" }, { - "codePostal": "65710", - "codeCommune": "65078", - "libelleAcheminement": "BEAUDEAN", - "nomCommune": "BEAUDEAN" + "codePostal": "60112", + "codeCommune": "60310", + "libelleAcheminement": "HERCHIES", + "nomCommune": "HERCHIES" }, { - "codePostal": "46100", - "codeCommune": "46288", - "libelleAcheminement": "ST PERDOUX", - "nomCommune": "ST PERDOUX" + "codePostal": "69430", + "codeCommune": "69135", + "libelleAcheminement": "DEUX GROSNES", + "nomCommune": "DEUX GROSNES" }, { - "codePostal": "39290", - "codeCommune": "39188", - "libelleAcheminement": "DAMMARTIN MARPAIN", - "nomCommune": "DAMMARTIN MARPAIN" + "codePostal": "16700", + "codeCommune": "16104", + "libelleAcheminement": "CONDAC", + "nomCommune": "CONDAC" }, { - "codePostal": "08110", - "codeCommune": "08501", - "libelleAcheminement": "WILLIERS", - "nomCommune": "WILLIERS" + "codePostal": "69640", + "codeCommune": "69061", + "libelleAcheminement": "COGNY", + "nomCommune": "COGNY" }, { - "codePostal": "65380", - "codeCommune": "65080", - "libelleAcheminement": "BENAC", - "nomCommune": "BENAC" + "codePostal": "58110", + "codeCommune": "58202", + "libelleAcheminement": "OUGNY", + "nomCommune": "OUGNY" }, { - "codePostal": "46320", - "codeCommune": "46292", - "libelleAcheminement": "ST SIMON", - "nomCommune": "ST SIMON" + "codePostal": "60120", + "codeCommune": "60311", + "libelleAcheminement": "LA HERELLE", + "nomCommune": "LA HERELLE" }, { - "codePostal": "39500", - "codeCommune": "39189", - "libelleAcheminement": "DAMPARIS", - "nomCommune": "DAMPARIS" + "codePostal": "69860", + "codeCommune": "69135", + "libelleAcheminement": "DEUX GROSNES", + "nomCommune": "DEUX GROSNES" }, { - "codePostal": "09310", - "codeCommune": "09004", - "libelleAcheminement": "ALBIES", - "nomCommune": "ALBIES" + "codePostal": "16200", + "codeCommune": "16109", + "libelleAcheminement": "COURBILLAC", + "nomCommune": "COURBILLAC" }, { - "codePostal": "65360", - "codeCommune": "65084", - "libelleAcheminement": "BERNAC DESSUS", - "nomCommune": "BERNAC DESSUS" + "codePostal": "69590", + "codeCommune": "69062", + "libelleAcheminement": "COISE", + "nomCommune": "COISE" }, { - "codePostal": "46160", - "codeCommune": "46294", - "libelleAcheminement": "ST SULPICE", - "nomCommune": "ST SULPICE" + "codePostal": "58130", + "codeCommune": "58204", + "libelleAcheminement": "VAUX D AMOGNES", + "nomCommune": "VAUX D AMOGNES" }, { - "codePostal": "39700", - "codeCommune": "39190", - "libelleAcheminement": "DAMPIERRE", - "nomCommune": "DAMPIERRE" + "codePostal": "60250", + "codeCommune": "60317", + "libelleAcheminement": "HONDAINVILLE", + "nomCommune": "HONDAINVILLE" }, { - "codePostal": "09240", - "codeCommune": "09007", - "libelleAcheminement": "ALLIERES", - "nomCommune": "ALLIERES" + "codePostal": "69460", + "codeCommune": "69145", + "libelleAcheminement": "ODENAS", + "nomCommune": "ODENAS" }, { - "codePostal": "65220", - "codeCommune": "65085", - "libelleAcheminement": "BERNADETS DEBAT", - "nomCommune": "BERNADETS DEBAT" + "codePostal": "16700", + "codeCommune": "16110", + "libelleAcheminement": "COURCOME", + "nomCommune": "COURCOME" }, { - "codePostal": "46700", - "codeCommune": "46305", - "libelleAcheminement": "SERIGNAC", - "nomCommune": "SERIGNAC" + "codePostal": "69420", + "codeCommune": "69064", + "libelleAcheminement": "CONDRIEU", + "nomCommune": "CONDRIEU" }, { - "codePostal": "39210", - "codeCommune": "39199", - "libelleAcheminement": "DOMBLANS", - "nomCommune": "DOMBLANS" + "codePostal": "58230", + "codeCommune": "58210", + "libelleAcheminement": "PLANCHEZ", + "nomCommune": "PLANCHEZ" }, { - "codePostal": "09240", - "codeCommune": "09009", - "libelleAcheminement": "ALZEN", - "nomCommune": "ALZEN" + "codePostal": "60173", + "codeCommune": "60321", + "libelleAcheminement": "IVRY LE TEMPLE", + "nomCommune": "IVRY LE TEMPLE" }, { - "codePostal": "65590", - "codeCommune": "65099", - "libelleAcheminement": "BORDERES LOURON", - "nomCommune": "BORDERES LOURON" + "codePostal": "69530", + "codeCommune": "69148", + "libelleAcheminement": "ORLIENAS", + "nomCommune": "ORLIENAS" }, { - "codePostal": "46190", - "codeCommune": "46311", - "libelleAcheminement": "SOUSCEYRAC EN QUERCY", - "nomCommune": "SOUSCEYRAC EN QUERCY" + "codePostal": "16300", + "codeCommune": "16116", + "libelleAcheminement": "CRITEUIL LA MAGDELEINE", + "nomCommune": "CRITEUIL LA MAGDELEINE" }, { - "codePostal": "39160", - "codeCommune": "39209", - "libelleAcheminement": "VAL D EPY", - "nomCommune": "VAL D EPY" + "codePostal": "69220", + "codeCommune": "69077", + "libelleAcheminement": "DRACE", + "nomCommune": "DRACE" }, { - "codePostal": "09250", - "codeCommune": "09012", - "libelleAcheminement": "APPY", - "nomCommune": "APPY" + "codePostal": "58170", + "codeCommune": "58211", + "libelleAcheminement": "POIL", + "nomCommune": "POIL" }, { - "codePostal": "65590", - "codeCommune": "65099", - "libelleAcheminement": "BORDERES LOURON", - "nomCommune": "BORDERES LOURON" + "codePostal": "60240", + "codeCommune": "60322", + "libelleAcheminement": "JAMERICOURT", + "nomCommune": "JAMERICOURT" }, { - "codePostal": "46150", - "codeCommune": "46316", - "libelleAcheminement": "THEDIRAC", - "nomCommune": "THEDIRAC" + "codePostal": "69310", + "codeCommune": "69152", + "libelleAcheminement": "PIERRE BENITE", + "nomCommune": "PIERRE BENITE" }, { - "codePostal": "39160", - "codeCommune": "39209", - "libelleAcheminement": "VAL D EPY", - "nomCommune": "VAL D EPY" + "codePostal": "16190", + "codeCommune": "16118", + "libelleAcheminement": "DEVIAT", + "nomCommune": "DEVIAT" }, { - "codePostal": "09800", - "codeCommune": "09017", - "libelleAcheminement": "ARRIEN EN BETHMALE", - "nomCommune": "ARRIEN EN BETHMALE" + "codePostal": "69250", + "codeCommune": "69085", + "libelleAcheminement": "FLEURIEU SUR SAONE", + "nomCommune": "FLEURIEU SUR SAONE" }, { - "codePostal": "65350", - "codeCommune": "65104", - "libelleAcheminement": "BOULIN", - "nomCommune": "BOULIN" + "codePostal": "58140", + "codeCommune": "58216", + "libelleAcheminement": "POUQUES LORMES", + "nomCommune": "POUQUES LORMES" }, { - "codePostal": "46260", - "codeCommune": "46333", - "libelleAcheminement": "VIDAILLAC", - "nomCommune": "VIDAILLAC" + "codePostal": "60150", + "codeCommune": "60323", + "libelleAcheminement": "JANVILLE", + "nomCommune": "JANVILLE" }, { - "codePostal": "39320", - "codeCommune": "39209", - "libelleAcheminement": "VAL D EPY", - "nomCommune": "VAL D EPY" + "codePostal": "69400", + "codeCommune": "69159", + "libelleAcheminement": "PORTE DES PIERRES DOREES", + "nomCommune": "PORTE DES PIERRES DOREES" }, { - "codePostal": "09110", - "codeCommune": "09023", - "libelleAcheminement": "ASCOU", - "nomCommune": "ASCOU" + "codePostal": "16290", + "codeCommune": "16121", + "libelleAcheminement": "DOUZAT", + "nomCommune": "DOUZAT" }, { - "codePostal": "65220", - "codeCommune": "65110", - "libelleAcheminement": "BUGARD", - "nomCommune": "BUGARD" + "codePostal": "69270", + "codeCommune": "69087", + "libelleAcheminement": "FONTAINES ST MARTIN", + "nomCommune": "FONTAINES ST MARTIN" }, { - "codePostal": "46210", - "codeCommune": "46338", - "libelleAcheminement": "BESSONIES", - "nomCommune": "BESSONIES" + "codePostal": "58250", + "codeCommune": "58221", + "libelleAcheminement": "REMILLY", + "nomCommune": "REMILLY" }, { - "codePostal": "39700", - "codeCommune": "39219", - "libelleAcheminement": "EVANS", - "nomCommune": "EVANS" + "codePostal": "60880", + "codeCommune": "60325", + "libelleAcheminement": "JAUX", + "nomCommune": "JAUX" }, { - "codePostal": "09230", - "codeCommune": "09033", - "libelleAcheminement": "BAGERT", - "nomCommune": "BAGERT" + "codePostal": "69870", + "codeCommune": "69160", + "libelleAcheminement": "POULE LES ECHARMEAUX", + "nomCommune": "POULE LES ECHARMEAUX" }, { - "codePostal": "65400", - "codeCommune": "65112", - "libelleAcheminement": "BUN", - "nomCommune": "BUN" + "codePostal": "16210", + "codeCommune": "16130", + "libelleAcheminement": "LES ESSARDS", + "nomCommune": "LES ESSARDS" }, { - "codePostal": "47000", - "codeCommune": "47001", - "libelleAcheminement": "AGEN", - "nomCommune": "AGEN" + "codePostal": "69870", + "codeCommune": "69093", + "libelleAcheminement": "GRANDRIS", + "nomCommune": "GRANDRIS" }, { - "codePostal": "39700", - "codeCommune": "39235", - "libelleAcheminement": "FRAISANS", - "nomCommune": "FRAISANS" + "codePostal": "58230", + "codeCommune": "58226", + "libelleAcheminement": "ST AGNAN", + "nomCommune": "ST AGNAN" }, { - "codePostal": "09800", - "codeCommune": "09035", - "libelleAcheminement": "BALAGUERES", - "nomCommune": "BALAGUERES" + "codePostal": "60680", + "codeCommune": "60326", + "libelleAcheminement": "JONQUIERES", + "nomCommune": "JONQUIERES" }, { - "codePostal": "65500", - "codeCommune": "65119", - "libelleAcheminement": "CAIXON", - "nomCommune": "CAIXON" + "codePostal": "69650", + "codeCommune": "69163", + "libelleAcheminement": "QUINCIEUX", + "nomCommune": "QUINCIEUX" }, { - "codePostal": "47800", - "codeCommune": "47014", - "libelleAcheminement": "ARMILLAC", - "nomCommune": "ARMILLAC" + "codePostal": "16500", + "codeCommune": "16131", + "libelleAcheminement": "ESSE", + "nomCommune": "ESSE" }, { - "codePostal": "39290", - "codeCommune": "39238", - "libelleAcheminement": "FRASNE LES MEULIERES", - "nomCommune": "FRASNE LES MEULIERES" + "codePostal": "69290", + "codeCommune": "69094", + "libelleAcheminement": "GREZIEU LA VARENNE", + "nomCommune": "GREZIEU LA VARENNE" }, { - "codePostal": "09230", - "codeCommune": "09037", - "libelleAcheminement": "BARJAC", - "nomCommune": "BARJAC" + "codePostal": "58190", + "codeCommune": "58230", + "libelleAcheminement": "ST AUBIN DES CHAUMES", + "nomCommune": "ST AUBIN DES CHAUMES" }, { - "codePostal": "65300", - "codeCommune": "65125", - "libelleAcheminement": "CAMPISTROUS", - "nomCommune": "CAMPISTROUS" + "codePostal": "60590", + "codeCommune": "60331", + "libelleAcheminement": "LABOSSE", + "nomCommune": "LABOSSE" }, { - "codePostal": "47120", - "codeCommune": "47020", - "libelleAcheminement": "BALEYSSAGUES", - "nomCommune": "BALEYSSAGUES" + "codePostal": "69440", + "codeCommune": "69166", + "libelleAcheminement": "RIVERIE", + "nomCommune": "RIVERIE" }, { - "codePostal": "39130", - "codeCommune": "39240", - "libelleAcheminement": "LE FRASNOIS", - "nomCommune": "LE FRASNOIS" + "codePostal": "16220", + "codeCommune": "16135", + "libelleAcheminement": "EYMOUTHIERS", + "nomCommune": "EYMOUTHIERS" }, { - "codePostal": "09350", - "codeCommune": "09038", - "libelleAcheminement": "LA BASTIDE DE BESPLAS", - "nomCommune": "LA BASTIDE DE BESPLAS" + "codePostal": "69610", + "codeCommune": "69095", + "libelleAcheminement": "GREZIEU LE MARCHE", + "nomCommune": "GREZIEU LE MARCHE" }, { - "codePostal": "65330", - "codeCommune": "65128", - "libelleAcheminement": "CASTELBAJAC", - "nomCommune": "CASTELBAJAC" + "codePostal": "58200", + "codeCommune": "58251", + "libelleAcheminement": "ST LOUP DES BOIS", + "nomCommune": "ST LOUP DES BOIS" }, { - "codePostal": "47230", - "codeCommune": "47021", - "libelleAcheminement": "BARBASTE", - "nomCommune": "BARBASTE" + "codePostal": "60330", + "codeCommune": "60341", + "libelleAcheminement": "LAGNY LE SEC", + "nomCommune": "LAGNY LE SEC" }, { - "codePostal": "39210", - "codeCommune": "39244", - "libelleAcheminement": "FRONTENAY", - "nomCommune": "FRONTENAY" + "codePostal": "69640", + "codeCommune": "69167", + "libelleAcheminement": "RIVOLET", + "nomCommune": "RIVOLET" }, { - "codePostal": "09240", - "codeCommune": "09042", - "libelleAcheminement": "LA BASTIDE DE SEROU", - "nomCommune": "LA BASTIDE DE SEROU" + "codePostal": "16380", + "codeCommune": "16137", + "libelleAcheminement": "FEUILLADE", + "nomCommune": "FEUILLADE" }, { - "codePostal": "65240", - "codeCommune": "65141", - "libelleAcheminement": "CAZAUX FRECHET ANERAN CAMORS", - "nomCommune": "CAZAUX FRECHET ANERAN CAMORS" + "codePostal": "69430", + "codeCommune": "69109", + "libelleAcheminement": "LANTIGNIE", + "nomCommune": "LANTIGNIE" }, { - "codePostal": "47130", - "codeCommune": "47022", - "libelleAcheminement": "BAZENS", - "nomCommune": "BAZENS" + "codePostal": "58140", + "codeCommune": "58255", + "libelleAcheminement": "ST MARTIN DU PUY", + "nomCommune": "ST MARTIN DU PUY" }, { - "codePostal": "39350", - "codeCommune": "39246", - "libelleAcheminement": "GENDREY", - "nomCommune": "GENDREY" + "codePostal": "60850", + "codeCommune": "60344", + "libelleAcheminement": "LALANDELLE", + "nomCommune": "LALANDELLE" }, { - "codePostal": "09600", - "codeCommune": "09043", - "libelleAcheminement": "LA BASTIDE SUR L HERS", - "nomCommune": "LA BASTIDE SUR L HERS" + "codePostal": "69510", + "codeCommune": "69170", + "libelleAcheminement": "RONTALON", + "nomCommune": "RONTALON" }, { - "codePostal": "65350", - "codeCommune": "65142", - "libelleAcheminement": "CHELLE DEBAT", - "nomCommune": "CHELLE DEBAT" + "codePostal": "16410", + "codeCommune": "16143", + "libelleAcheminement": "FOUQUEBRUNE", + "nomCommune": "FOUQUEBRUNE" }, { - "codePostal": "47550", - "codeCommune": "47031", - "libelleAcheminement": "BOE", - "nomCommune": "BOE" + "codePostal": "69590", + "codeCommune": "69110", + "libelleAcheminement": "LARAJASSE", + "nomCommune": "LARAJASSE" }, { - "codePostal": "39150", - "codeCommune": "39258", - "libelleAcheminement": "GRANDE RIVIERE CHATEAU", - "nomCommune": "GRANDE RIVIERE CHATEAU" + "codePostal": "58150", + "codeCommune": "58256", + "libelleAcheminement": "ST MARTIN SUR NOHAIN", + "nomCommune": "ST MARTIN SUR NOHAIN" }, { - "codePostal": "09300", - "codeCommune": "09047", - "libelleAcheminement": "BELESTA", - "nomCommune": "BELESTA" + "codePostal": "60260", + "codeCommune": "60346", + "libelleAcheminement": "LAMORLAYE", + "nomCommune": "LAMORLAYE" }, { - "codePostal": "65100", - "codeCommune": "65144", - "libelleAcheminement": "CHEUST", - "nomCommune": "CHEUST" + "codePostal": "69210", + "codeCommune": "69171", + "libelleAcheminement": "SAIN BEL", + "nomCommune": "SAIN BEL" }, { - "codePostal": "47240", - "codeCommune": "47032", - "libelleAcheminement": "BON ENCONTRE", - "nomCommune": "BON ENCONTRE" + "codePostal": "16200", + "codeCommune": "16145", + "libelleAcheminement": "FOUSSIGNAC", + "nomCommune": "FOUSSIGNAC" }, { - "codePostal": "39130", - "codeCommune": "39265", - "libelleAcheminement": "HAUTECOUR", - "nomCommune": "HAUTECOUR" + "codePostal": "69620", + "codeCommune": "69111", + "libelleAcheminement": "LEGNY", + "nomCommune": "LEGNY" }, { - "codePostal": "09000", - "codeCommune": "09049", - "libelleAcheminement": "BENAC", - "nomCommune": "BENAC" + "codePostal": "58300", + "codeCommune": "58259", + "libelleAcheminement": "ST PARIZE EN VIRY", + "nomCommune": "ST PARIZE EN VIRY" }, { - "codePostal": "65300", - "codeCommune": "65150", - "libelleAcheminement": "CLARENS", - "nomCommune": "CLARENS" + "codePostal": "60420", + "codeCommune": "60357", + "libelleAcheminement": "LEGLANTIERS", + "nomCommune": "LEGLANTIERS" }, { - "codePostal": "47250", - "codeCommune": "47034", - "libelleAcheminement": "BOUGLON", - "nomCommune": "BOUGLON" + "codePostal": "69460", + "codeCommune": "69172", + "libelleAcheminement": "SALLES ARBUISSONNAS BEAUJOLAIS", + "nomCommune": "SALLES ARBUISSONNAS EN BEAUJOLAIS" }, { - "codePostal": "39110", - "codeCommune": "39268", - "libelleAcheminement": "IVREY", - "nomCommune": "IVREY" + "codePostal": "16170", + "codeCommune": "16148", + "libelleAcheminement": "GENAC BIGNAC", + "nomCommune": "GENAC BIGNAC" }, { - "codePostal": "09100", - "codeCommune": "09050", - "libelleAcheminement": "BENAGUES", - "nomCommune": "BENAGUES" + "codePostal": "69210", + "codeCommune": "69112", + "libelleAcheminement": "LENTILLY", + "nomCommune": "LENTILLY" }, { - "codePostal": "65370", - "codeCommune": "65154", - "libelleAcheminement": "CRECHETS", - "nomCommune": "CRECHETS" + "codePostal": "58490", + "codeCommune": "58260", + "libelleAcheminement": "ST PARIZE LE CHATEL", + "nomCommune": "ST PARIZE LE CHATEL" }, { - "codePostal": "47320", - "codeCommune": "47038", - "libelleAcheminement": "BOURRAN", - "nomCommune": "BOURRAN" + "codePostal": "60650", + "codeCommune": "60359", + "libelleAcheminement": "LHERAULE", + "nomCommune": "LHERAULE" }, { - "codePostal": "39320", - "codeCommune": "39273", - "libelleAcheminement": "MONTLAINSIA", - "nomCommune": "MONTLAINSIA" + "codePostal": "69490", + "codeCommune": "69173", + "libelleAcheminement": "SARCEY", + "nomCommune": "SARCEY" }, { - "codePostal": "09300", - "codeCommune": "09051", - "libelleAcheminement": "BENAIX", - "nomCommune": "BENAIX" + "codePostal": "16200", + "codeCommune": "16153", + "libelleAcheminement": "MAINXE GONDEVILLE", + "nomCommune": "MAINXE GONDEVILLE" }, { - "codePostal": "65500", - "codeCommune": "65160", - "libelleAcheminement": "ESCAUNETS", - "nomCommune": "ESCAUNETS" + "codePostal": "69760", + "codeCommune": "69116", + "libelleAcheminement": "LIMONEST", + "nomCommune": "LIMONEST" }, { - "codePostal": "47310", - "codeCommune": "47040", - "libelleAcheminement": "BRAX", - "nomCommune": "BRAX" + "codePostal": "58240", + "codeCommune": "58264", + "libelleAcheminement": "ST PIERRE LE MOUTIER", + "nomCommune": "ST PIERRE LE MOUTIER" }, { - "codePostal": "39320", - "codeCommune": "39273", - "libelleAcheminement": "MONTLAINSIA", - "nomCommune": "MONTLAINSIA" + "codePostal": "60240", + "codeCommune": "60363", + "libelleAcheminement": "LIERVILLE", + "nomCommune": "LIERVILLE" }, { - "codePostal": "09250", - "codeCommune": "09053", - "libelleAcheminement": "BESTIAC", - "nomCommune": "BESTIAC" + "codePostal": "69610", + "codeCommune": "69178", + "libelleAcheminement": "SOUZY", + "nomCommune": "SOUZY" }, { - "codePostal": "65130", - "codeCommune": "65162", - "libelleAcheminement": "ESCONNETS", - "nomCommune": "ESCONNETS" + "codePostal": "16160", + "codeCommune": "16154", + "libelleAcheminement": "GOND PONTOUVRE", + "nomCommune": "GOND PONTOUVRE" }, { - "codePostal": "47260", - "codeCommune": "47042", - "libelleAcheminement": "BRUGNAC", - "nomCommune": "BRUGNAC" + "codePostal": "69380", + "codeCommune": "69117", + "libelleAcheminement": "LISSIEU", + "nomCommune": "LISSIEU" }, { - "codePostal": "39210", - "codeCommune": "39288", - "libelleAcheminement": "LAVIGNY", - "nomCommune": "LAVIGNY" + "codePostal": "58150", + "codeCommune": "58265", + "libelleAcheminement": "ST QUENTIN SUR NOHAIN", + "nomCommune": "ST QUENTIN SUR NOHAIN" }, { - "codePostal": "09160", - "codeCommune": "09054", - "libelleAcheminement": "BETCHAT", - "nomCommune": "BETCHAT" + "codePostal": "60360", + "codeCommune": "60365", + "libelleAcheminement": "LIHUS", + "nomCommune": "LIHUS" }, { - "codePostal": "65220", - "codeCommune": "65170", - "libelleAcheminement": "ESTAMPURES", - "nomCommune": "ESTAMPURES" + "codePostal": "69700", + "codeCommune": "69179", + "libelleAcheminement": "BEAUVALLON", + "nomCommune": "BEAUVALLON" }, { - "codePostal": "47180", - "codeCommune": "47056", - "libelleAcheminement": "CASTELNAU SUR GUPIE", - "nomCommune": "CASTELNAU SUR GUPIE" + "codePostal": "16300", + "codeCommune": "16160", + "libelleAcheminement": "GUIMPS", + "nomCommune": "GUIMPS" }, { - "codePostal": "39350", - "codeCommune": "39302", - "libelleAcheminement": "LOUVATANGE", - "nomCommune": "LOUVATANGE" + "codePostal": "69770", + "codeCommune": "69120", + "libelleAcheminement": "LONGESSAIGNE", + "nomCommune": "LONGESSAIGNE" }, { - "codePostal": "09800", - "codeCommune": "09055", - "libelleAcheminement": "BETHMALE", - "nomCommune": "BETHMALE" + "codePostal": "58420", + "codeCommune": "58266", + "libelleAcheminement": "ST REVERIEN", + "nomCommune": "ST REVERIEN" }, { - "codePostal": "65240", - "codeCommune": "65171", - "libelleAcheminement": "ESTARVIELLE", - "nomCommune": "ESTARVIELLE" + "codePostal": "60150", + "codeCommune": "60368", + "libelleAcheminement": "LONGUEIL ANNEL", + "nomCommune": "LONGUEIL ANNEL" }, { - "codePostal": "47220", - "codeCommune": "47060", - "libelleAcheminement": "CAUDECOSTE", - "nomCommune": "CAUDECOSTE" + "codePostal": "69440", + "codeCommune": "69180", + "libelleAcheminement": "ST ANDRE LA COTE", + "nomCommune": "ST ANDRE LA COTE" }, { - "codePostal": "39230", - "codeCommune": "39310", - "libelleAcheminement": "MANTRY", - "nomCommune": "MANTRY" + "codePostal": "16290", + "codeCommune": "16163", + "libelleAcheminement": "HIERSAC", + "nomCommune": "HIERSAC" }, { - "codePostal": "09320", - "codeCommune": "09057", - "libelleAcheminement": "BIERT", - "nomCommune": "BIERT" + "codePostal": "69860", + "codeCommune": "69135", + "libelleAcheminement": "DEUX GROSNES", + "nomCommune": "DEUX GROSNES" }, { - "codePostal": "65170", - "codeCommune": "65172", - "libelleAcheminement": "ESTENSAN", - "nomCommune": "ESTENSAN" + "codePostal": "58270", + "codeCommune": "58269", + "libelleAcheminement": "ST SULPICE", + "nomCommune": "ST SULPICE" }, { - "codePostal": "47470", - "codeCommune": "47062", - "libelleAcheminement": "CAUZAC", - "nomCommune": "CAUZAC" + "codePostal": "60126", + "codeCommune": "60369", + "libelleAcheminement": "LONGUEIL STE MARIE", + "nomCommune": "LONGUEIL STE MARIE" }, { - "codePostal": "39130", - "codeCommune": "39313", - "libelleAcheminement": "MARIGNY", - "nomCommune": "MARIGNY" + "codePostal": "69790", + "codeCommune": "69182", + "libelleAcheminement": "ST BONNET DES BRUYERES", + "nomCommune": "ST BONNET DES BRUYERES" }, { - "codePostal": "09400", - "codeCommune": "09058", - "libelleAcheminement": "BOMPAS", - "nomCommune": "BOMPAS" + "codePostal": "16200", + "codeCommune": "16165", + "libelleAcheminement": "HOULETTE", + "nomCommune": "HOULETTE" }, { - "codePostal": "65700", - "codeCommune": "65174", - "libelleAcheminement": "ESTIRAC", - "nomCommune": "ESTIRAC" + "codePostal": "69640", + "codeCommune": "69137", + "libelleAcheminement": "MONTMELAS ST SORLIN", + "nomCommune": "MONTMELAS ST SORLIN" }, { - "codePostal": "47180", - "codeCommune": "47074", - "libelleAcheminement": "COUTHURES SUR GARONNE", - "nomCommune": "COUTHURES SUR GARONNE" + "codePostal": "58240", + "codeCommune": "58294", + "libelleAcheminement": "TOURY SUR JOUR", + "nomCommune": "TOURY SUR JOUR" }, { - "codePostal": "39110", - "codeCommune": "39315", - "libelleAcheminement": "MARNOZ", - "nomCommune": "MARNOZ" + "codePostal": "60380", + "codeCommune": "60371", + "libelleAcheminement": "LOUEUSE", + "nomCommune": "LOUEUSE" }, { - "codePostal": "09800", - "codeCommune": "09069", - "libelleAcheminement": "BUZAN", - "nomCommune": "BUZAN" + "codePostal": "69930", + "codeCommune": "69187", + "libelleAcheminement": "ST CLEMENT LES PLACES", + "nomCommune": "ST CLEMENT LES PLACES" }, { - "codePostal": "65130", - "codeCommune": "65179", - "libelleAcheminement": "FRECHENDETS", - "nomCommune": "FRECHENDETS" + "codePostal": "16130", + "codeCommune": "16171", + "libelleAcheminement": "JUILLAC LE COQ", + "nomCommune": "JUILLAC LE COQ" }, { - "codePostal": "47600", - "codeCommune": "47098", - "libelleAcheminement": "FIEUX", - "nomCommune": "FIEUX" + "codePostal": "69610", + "codeCommune": "69138", + "libelleAcheminement": "MONTROMANT", + "nomCommune": "MONTROMANT" }, { - "codePostal": "39260", - "codeCommune": "39318", - "libelleAcheminement": "MARTIGNA", - "nomCommune": "MARTIGNA" + "codePostal": "58400", + "codeCommune": "58298", + "libelleAcheminement": "TRONSANGES", + "nomCommune": "TRONSANGES" }, { - "codePostal": "09300", - "codeCommune": "09080", - "libelleAcheminement": "CARLA DE ROQUEFORT", - "nomCommune": "CARLA DE ROQUEFORT" + "codePostal": "60480", + "codeCommune": "60377", + "libelleAcheminement": "MAISONCELLE TUILERIE", + "nomCommune": "MAISONCELLE TUILERIE" }, { - "codePostal": "65100", - "codeCommune": "65191", - "libelleAcheminement": "GAZOST", - "nomCommune": "GAZOST" + "codePostal": "69870", + "codeCommune": "69192", + "libelleAcheminement": "ST CYR LE CHATOUX", + "nomCommune": "ST CYR LE CHATOUX" }, { - "codePostal": "47200", - "codeCommune": "47101", - "libelleAcheminement": "FOURQUES SUR GARONNE", - "nomCommune": "FOURQUES SUR GARONNE" + "codePostal": "16250", + "codeCommune": "16175", + "libelleAcheminement": "VAL DES VIGNES", + "nomCommune": "VAL DES VIGNES" }, { - "codePostal": "39600", - "codeCommune": "39319", - "libelleAcheminement": "MATHENAY", - "nomCommune": "MATHENAY" + "codePostal": "69770", + "codeCommune": "69139", + "libelleAcheminement": "MONTROTTIER", + "nomCommune": "MONTROTTIER" }, { - "codePostal": "09160", - "codeCommune": "09091", - "libelleAcheminement": "CAZAVET", - "nomCommune": "CAZAVET" + "codePostal": "58290", + "codeCommune": "58301", + "libelleAcheminement": "VANDENESSE", + "nomCommune": "VANDENESSE" }, { - "codePostal": "65150", - "codeCommune": "65194", - "libelleAcheminement": "GENEREST", - "nomCommune": "GENEREST" + "codePostal": "60280", + "codeCommune": "60382", + "libelleAcheminement": "MARGNY LES COMPIEGNE", + "nomCommune": "MARGNY LES COMPIEGNE" }, { - "codePostal": "47190", - "codeCommune": "47107", - "libelleAcheminement": "GALAPIAN", - "nomCommune": "GALAPIAN" + "codePostal": "69560", + "codeCommune": "69193", + "libelleAcheminement": "ST CYR SUR LE RHONE", + "nomCommune": "ST CYR SUR LE RHONE" }, { - "codePostal": "39130", - "codeCommune": "39326", - "libelleAcheminement": "MESNOIS", - "nomCommune": "MESNOIS" + "codePostal": "16120", + "codeCommune": "16177", + "libelleAcheminement": "LADIVILLE", + "nomCommune": "LADIVILLE" }, { - "codePostal": "09800", - "codeCommune": "09095", - "libelleAcheminement": "CESCAU", - "nomCommune": "CESCAU" + "codePostal": "69590", + "codeCommune": "69155", + "libelleAcheminement": "POMEYS", + "nomCommune": "POMEYS" }, { - "codePostal": "65240", - "codeCommune": "65205", - "libelleAcheminement": "GOUAUX", - "nomCommune": "GOUAUX" + "codePostal": "59280", + "codeCommune": "59017", + "libelleAcheminement": "ARMENTIERES", + "nomCommune": "ARMENTIERES" }, { - "codePostal": "47260", - "codeCommune": "47111", - "libelleAcheminement": "GRANGES SUR LOT", - "nomCommune": "GRANGES SUR LOT" + "codePostal": "60490", + "codeCommune": "60386", + "libelleAcheminement": "MARQUEGLISE", + "nomCommune": "MARQUEGLISE" }, { - "codePostal": "39250", - "codeCommune": "39329", - "libelleAcheminement": "MIEGES", - "nomCommune": "MIEGES" + "codePostal": "69460", + "codeCommune": "69197", + "libelleAcheminement": "ST ETIENNE DES OULLIERES", + "nomCommune": "ST ETIENNE DES OULLIERES" }, { - "codePostal": "09500", - "codeCommune": "09102", - "libelleAcheminement": "COUTENS", - "nomCommune": "COUTENS" + "codePostal": "16460", + "codeCommune": "16184", + "libelleAcheminement": "LICHERES", + "nomCommune": "LICHERES" }, { - "codePostal": "65250", - "codeCommune": "65218", - "libelleAcheminement": "HECHES", - "nomCommune": "HECHES" + "codePostal": "69480", + "codeCommune": "69156", + "libelleAcheminement": "POMMIERS", + "nomCommune": "POMMIERS" }, { - "codePostal": "47250", - "codeCommune": "47114", - "libelleAcheminement": "GREZET CAVAGNAN", - "nomCommune": "GREZET CAVAGNAN" + "codePostal": "59285", + "codeCommune": "59018", + "libelleAcheminement": "ARNEKE", + "nomCommune": "ARNEKE" }, { - "codePostal": "39260", - "codeCommune": "39333", - "libelleAcheminement": "MOIRANS EN MONTAGNE", - "nomCommune": "MOIRANS EN MONTAGNE" + "codePostal": "60640", + "codeCommune": "60389", + "libelleAcheminement": "MAUCOURT", + "nomCommune": "MAUCOURT" }, { - "codePostal": "09120", - "codeCommune": "09103", - "libelleAcheminement": "CRAMPAGNA", - "nomCommune": "CRAMPAGNA" + "codePostal": "69190", + "codeCommune": "69199", + "libelleAcheminement": "ST FONS", + "nomCommune": "ST FONS" }, { - "codePostal": "65310", - "codeCommune": "65223", - "libelleAcheminement": "HORGUES", - "nomCommune": "HORGUES" + "codePostal": "16140", + "codeCommune": "16185", + "libelleAcheminement": "LIGNE", + "nomCommune": "LIGNE" }, { - "codePostal": "47150", - "codeCommune": "47123", - "libelleAcheminement": "LACAPELLE BIRON", - "nomCommune": "LACAPELLE BIRON" + "codePostal": "69490", + "codeCommune": "69157", + "libelleAcheminement": "VINDRY SUR TURDINE", + "nomCommune": "VINDRY SUR TURDINE" }, { - "codePostal": "39500", - "codeCommune": "39338", - "libelleAcheminement": "MOLAY", - "nomCommune": "MOLAY" + "codePostal": "59494", + "codeCommune": "59027", + "libelleAcheminement": "AUBRY DU HAINAUT", + "nomCommune": "AUBRY DU HAINAUT" }, { - "codePostal": "09350", - "codeCommune": "09105", - "libelleAcheminement": "DAUMAZAN SUR ARIZE", - "nomCommune": "DAUMAZAN SUR ARIZE" + "codePostal": "60480", + "codeCommune": "60390", + "libelleAcheminement": "MAULERS", + "nomCommune": "MAULERS" }, { - "codePostal": "65330", - "codeCommune": "65224", - "libelleAcheminement": "HOUEYDETS", - "nomCommune": "HOUEYDETS" + "codePostal": "69110", + "codeCommune": "69202", + "libelleAcheminement": "STE FOY LES LYON", + "nomCommune": "STE FOY LES LYON" }, { - "codePostal": "47350", - "codeCommune": "47126", - "libelleAcheminement": "LACHAPELLE", - "nomCommune": "LACHAPELLE" + "codePostal": "16130", + "codeCommune": "16186", + "libelleAcheminement": "LIGNIERES AMBLEVILLE", + "nomCommune": "LIGNIERES AMBLEVILLE" }, { - "codePostal": "39360", - "codeCommune": "39339", - "libelleAcheminement": "CHASSAL MOLINGES", - "nomCommune": "CHASSAL MOLINGES" + "codePostal": "69650", + "codeCommune": "69163", + "libelleAcheminement": "QUINCIEUX", + "nomCommune": "QUINCIEUX" }, { - "codePostal": "09300", - "codeCommune": "09106", - "libelleAcheminement": "DREUILHE", - "nomCommune": "DREUILHE" + "codePostal": "59950", + "codeCommune": "59028", + "libelleAcheminement": "AUBY", + "nomCommune": "AUBY" }, { - "codePostal": "65370", - "codeCommune": "65230", - "libelleAcheminement": "IZAOURT", - "nomCommune": "IZAOURT" + "codePostal": "60660", + "codeCommune": "60391", + "libelleAcheminement": "MAYSEL", + "nomCommune": "MAYSEL" }, { - "codePostal": "47320", - "codeCommune": "47127", - "libelleAcheminement": "LAFITTE SUR LOT", - "nomCommune": "LAFITTE SUR LOT" + "codePostal": "69650", + "codeCommune": "69207", + "libelleAcheminement": "ST GERMAIN AU MONT D OR", + "nomCommune": "ST GERMAIN AU MONT D OR" }, { - "codePostal": "39300", - "codeCommune": "39344", - "libelleAcheminement": "MONNET LA VILLE", - "nomCommune": "MONNET LA VILLE" + "codePostal": "16730", + "codeCommune": "16187", + "libelleAcheminement": "LINARS", + "nomCommune": "LINARS" }, { - "codePostal": "09600", - "codeCommune": "09107", - "libelleAcheminement": "DUN", - "nomCommune": "DUN" + "codePostal": "69470", + "codeCommune": "69164", + "libelleAcheminement": "RANCHAL", + "nomCommune": "RANCHAL" }, { - "codePostal": "65250", - "codeCommune": "65231", - "libelleAcheminement": "IZAUX", - "nomCommune": "IZAUX" + "codePostal": "59296", + "codeCommune": "59038", + "libelleAcheminement": "AVESNES LE SEC", + "nomCommune": "AVESNES LE SEC" }, { - "codePostal": "47330", - "codeCommune": "47132", - "libelleAcheminement": "LALANDUSSE", - "nomCommune": "LALANDUSSE" + "codePostal": "60660", + "codeCommune": "60393", + "libelleAcheminement": "MELLO", + "nomCommune": "MELLO" }, { - "codePostal": "39100", - "codeCommune": "39345", - "libelleAcheminement": "MONNIERES", - "nomCommune": "MONNIERES" + "codePostal": "69640", + "codeCommune": "69215", + "libelleAcheminement": "ST JULIEN", + "nomCommune": "ST JULIEN" }, { - "codePostal": "09130", - "codeCommune": "09109", - "libelleAcheminement": "DURFORT", - "nomCommune": "DURFORT" + "codePostal": "16240", + "codeCommune": "16190", + "libelleAcheminement": "LONGRE", + "nomCommune": "LONGRE" }, { - "codePostal": "65100", - "codeCommune": "65233", - "libelleAcheminement": "JARRET", - "nomCommune": "JARRET" + "codePostal": "69430", + "codeCommune": "69165", + "libelleAcheminement": "REGNIE DURETTE", + "nomCommune": "REGNIE DURETTE" }, { - "codePostal": "47700", - "codeCommune": "47148", - "libelleAcheminement": "LEYRITZ MONCASSIN", - "nomCommune": "LEYRITZ MONCASSIN" + "codePostal": "59780", + "codeCommune": "59044", + "libelleAcheminement": "BAISIEUX", + "nomCommune": "BAISIEUX" }, { - "codePostal": "39210", - "codeCommune": "39349", - "libelleAcheminement": "MONTAIN", - "nomCommune": "MONTAIN" + "codePostal": "60110", + "codeCommune": "60395", + "libelleAcheminement": "MERU", + "nomCommune": "MERU" }, { - "codePostal": "09200", - "codeCommune": "09114", - "libelleAcheminement": "ERP", - "nomCommune": "ERP" + "codePostal": "69640", + "codeCommune": "69215", + "libelleAcheminement": "ST JULIEN", + "nomCommune": "ST JULIEN" }, { - "codePostal": "65140", - "codeCommune": "65242", - "libelleAcheminement": "LACASSAGNE", - "nomCommune": "LACASSAGNE" + "codePostal": "16230", + "codeCommune": "16191", + "libelleAcheminement": "LONNES", + "nomCommune": "LONNES" }, { - "codePostal": "47200", - "codeCommune": "47150", - "libelleAcheminement": "LONGUEVILLE", - "nomCommune": "LONGUEVILLE" + "codePostal": "69550", + "codeCommune": "69169", + "libelleAcheminement": "RONNO", + "nomCommune": "RONNO" }, { - "codePostal": "39300", - "codeCommune": "39356", - "libelleAcheminement": "MONTIGNY SUR L AIN", - "nomCommune": "MONTIGNY SUR L AIN" + "codePostal": "59221", + "codeCommune": "59052", + "libelleAcheminement": "BAUVIN", + "nomCommune": "BAUVIN" }, { - "codePostal": "09700", - "codeCommune": "09117", - "libelleAcheminement": "ESPLAS", - "nomCommune": "ESPLAS" + "codePostal": "60420", + "codeCommune": "60396", + "libelleAcheminement": "MERY LA BATAILLE", + "nomCommune": "MERY LA BATAILLE" }, { - "codePostal": "65300", - "codeCommune": "65245", - "libelleAcheminement": "LAGRANGE", - "nomCommune": "LAGRANGE" + "codePostal": "69220", + "codeCommune": "69218", + "libelleAcheminement": "ST LAGER", + "nomCommune": "ST LAGER" }, { - "codePostal": "47120", - "codeCommune": "47151", - "libelleAcheminement": "LOUBES BERNAC", - "nomCommune": "LOUBES BERNAC" + "codePostal": "16270", + "codeCommune": "16192", + "libelleAcheminement": "TERRES DE HAUTE CHARENTE", + "nomCommune": "TERRES DE HAUTE CHARENTE" }, { - "codePostal": "39290", - "codeCommune": "39360", - "libelleAcheminement": "MONTMIREY LA VILLE", - "nomCommune": "MONTMIREY LA VILLE" + "codePostal": "69210", + "codeCommune": "69175", + "libelleAcheminement": "SAVIGNY", + "nomCommune": "SAVIGNY" }, { - "codePostal": "09350", - "codeCommune": "09123", - "libelleAcheminement": "FORNEX", - "nomCommune": "FORNEX" + "codePostal": "59570", + "codeCommune": "59053", + "libelleAcheminement": "BAVAY", + "nomCommune": "BAVAY" }, { - "codePostal": "65100", - "codeCommune": "65247", - "libelleAcheminement": "ARRAYOU LAHITTE", - "nomCommune": "ARRAYOU LAHITTE" + "codePostal": "60210", + "codeCommune": "60397", + "libelleAcheminement": "LE MESNIL CONTEVILLE", + "nomCommune": "LE MESNIL CONTEVILLE" }, { - "codePostal": "47290", - "codeCommune": "47152", - "libelleAcheminement": "LOUGRATTE", - "nomCommune": "LOUGRATTE" + "codePostal": "69440", + "codeCommune": "69228", + "libelleAcheminement": "CHABANIERE", + "nomCommune": "CHABANIERE" }, { - "codePostal": "39380", - "codeCommune": "39365", - "libelleAcheminement": "MONT SOUS VAUDREY", - "nomCommune": "MONT SOUS VAUDREY" + "codePostal": "16270", + "codeCommune": "16192", + "libelleAcheminement": "TERRES DE HAUTE CHARENTE", + "nomCommune": "TERRES DE HAUTE CHARENTE" }, { - "codePostal": "09250", - "codeCommune": "09131", - "libelleAcheminement": "GARANOU", - "nomCommune": "GARANOU" + "codePostal": "69510", + "codeCommune": "69176", + "libelleAcheminement": "SOUCIEU EN JARREST", + "nomCommune": "SOUCIEU EN JARREST" }, { - "codePostal": "65140", - "codeCommune": "65254", - "libelleAcheminement": "LAMEAC", - "nomCommune": "LAMEAC" + "codePostal": "59540", + "codeCommune": "59059", + "libelleAcheminement": "BEAUMONT EN CAMBRESIS", + "nomCommune": "BEAUMONT EN CAMBRESIS" }, { - "codePostal": "47360", - "codeCommune": "47155", - "libelleAcheminement": "MADAILLAN", - "nomCommune": "MADAILLAN" + "codePostal": "60940", + "codeCommune": "60406", + "libelleAcheminement": "MONCEAUX", + "nomCommune": "MONCEAUX" }, { - "codePostal": "39400", - "codeCommune": "39368", - "libelleAcheminement": "HAUTS DE BIENNE", - "nomCommune": "HAUTS DE BIENNE" + "codePostal": "69870", + "codeCommune": "69229", + "libelleAcheminement": "ST NIZIER D AZERGUES", + "nomCommune": "ST NIZIER D AZERGUES" }, { - "codePostal": "09400", - "codeCommune": "09136", - "libelleAcheminement": "GOURBIT", - "nomCommune": "GOURBIT" + "codePostal": "16100", + "codeCommune": "16193", + "libelleAcheminement": "LOUZAC ST ANDRE", + "nomCommune": "LOUZAC ST ANDRE" }, { - "codePostal": "65190", - "codeCommune": "65256", - "libelleAcheminement": "LANESPEDE", - "nomCommune": "LANESPEDE" + "codePostal": "69700", + "codeCommune": "69179", + "libelleAcheminement": "BEAUVALLON", + "nomCommune": "BEAUVALLON" }, { - "codePostal": "47430", - "codeCommune": "47159", - "libelleAcheminement": "LE MAS D AGENAIS", - "nomCommune": "LE MAS D AGENAIS" + "codePostal": "59730", + "codeCommune": "59060", + "libelleAcheminement": "BEAURAIN", + "nomCommune": "BEAURAIN" }, { - "codePostal": "39250", - "codeCommune": "39372", - "libelleAcheminement": "MOURNANS CHARBONNY", - "nomCommune": "MOURNANS CHARBONNY" + "codePostal": "60400", + "codeCommune": "60410", + "libelleAcheminement": "MONDESCOURT", + "nomCommune": "MONDESCOURT" }, { - "codePostal": "09800", - "codeCommune": "09141", - "libelleAcheminement": "ILLARTEIN", - "nomCommune": "ILLARTEIN" + "codePostal": "69210", + "codeCommune": "69231", + "libelleAcheminement": "ST PIERRE LA PALUD", + "nomCommune": "ST PIERRE LA PALUD" }, { - "codePostal": "65380", - "codeCommune": "65257", - "libelleAcheminement": "LANNE", - "nomCommune": "LANNE" + "codePostal": "16230", + "codeCommune": "16196", + "libelleAcheminement": "LUXE", + "nomCommune": "LUXE" }, { - "codePostal": "47210", - "codeCommune": "47164", - "libelleAcheminement": "MAZIERES NARESSE", - "nomCommune": "MAZIERES NARESSE" + "codePostal": "69290", + "codeCommune": "69205", + "libelleAcheminement": "ST GENIS LES OLLIERES", + "nomCommune": "ST GENIS LES OLLIERES" }, { - "codePostal": "39290", - "codeCommune": "39377", - "libelleAcheminement": "MUTIGNEY", - "nomCommune": "MUTIGNEY" + "codePostal": "59740", + "codeCommune": "59062", + "libelleAcheminement": "BEAURIEUX", + "nomCommune": "BEAURIEUX" }, { - "codePostal": "09220", - "codeCommune": "09162", - "libelleAcheminement": "LERCOUL", - "nomCommune": "LERCOUL" + "codePostal": "60530", + "codeCommune": "60429", + "libelleAcheminement": "MORANGLES", + "nomCommune": "MORANGLES" }, { - "codePostal": "65220", - "codeCommune": "65260", - "libelleAcheminement": "LAPEYRE", - "nomCommune": "LAPEYRE" + "codePostal": "69270", + "codeCommune": "69233", + "libelleAcheminement": "ST ROMAIN AU MONT D OR", + "nomCommune": "ST ROMAIN AU MONT D OR" }, { - "codePostal": "47170", - "codeCommune": "47167", - "libelleAcheminement": "MEZIN", - "nomCommune": "MEZIN" + "codePostal": "16170", + "codeCommune": "16208", + "libelleAcheminement": "MAREUIL", + "nomCommune": "MAREUIL" }, { - "codePostal": "39300", - "codeCommune": "39381", - "libelleAcheminement": "LES NANS", - "nomCommune": "LES NANS" + "codePostal": "69550", + "codeCommune": "69214", + "libelleAcheminement": "ST JEAN LA BUSSIERE", + "nomCommune": "ST JEAN LA BUSSIERE" }, { - "codePostal": "09300", - "codeCommune": "09166", - "libelleAcheminement": "LEYCHERT", - "nomCommune": "LEYCHERT" + "codePostal": "59157", + "codeCommune": "59063", + "libelleAcheminement": "BEAUVOIS EN CAMBRESIS", + "nomCommune": "BEAUVOIS EN CAMBRESIS" }, { - "codePostal": "65230", - "codeCommune": "65263", - "libelleAcheminement": "LARROQUE", - "nomCommune": "LARROQUE" + "codePostal": "60220", + "codeCommune": "60444", + "libelleAcheminement": "MUREAUMONT", + "nomCommune": "MUREAUMONT" }, { - "codePostal": "47800", - "codeCommune": "47168", - "libelleAcheminement": "MIRAMONT DE GUYENNE", - "nomCommune": "MIRAMONT DE GUYENNE" + "codePostal": "69590", + "codeCommune": "69238", + "libelleAcheminement": "ST SYMPHORIEN SUR COISE", + "nomCommune": "ST SYMPHORIEN SUR COISE" }, { - "codePostal": "39120", - "codeCommune": "39385", - "libelleAcheminement": "NEUBLANS ABERGEMENT", - "nomCommune": "NEUBLANS ABERGEMENT" + "codePostal": "16110", + "codeCommune": "16209", + "libelleAcheminement": "MARILLAC LE FRANC", + "nomCommune": "MARILLAC LE FRANC" }, { - "codePostal": "09210", - "codeCommune": "09167", - "libelleAcheminement": "LEZAT SUR LEZE", - "nomCommune": "LEZAT SUR LEZE" + "codePostal": "69870", + "codeCommune": "69217", + "libelleAcheminement": "ST JUST D AVRAY", + "nomCommune": "ST JUST D AVRAY" }, { - "codePostal": "65190", - "codeCommune": "65272", - "libelleAcheminement": "LHEZ", - "nomCommune": "LHEZ" + "codePostal": "59740", + "codeCommune": "59066", + "libelleAcheminement": "BERELLES", + "nomCommune": "BERELLES" }, { - "codePostal": "47600", - "codeCommune": "47180", - "libelleAcheminement": "MONTAGNAC SUR AUVIGNON", - "nomCommune": "MONTAGNAC SUR AUVIGNON" + "codePostal": "60510", + "codeCommune": "60454", + "libelleAcheminement": "LA NEUVILLE EN HEZ", + "nomCommune": "LA NEUVILLE EN HEZ" }, { - "codePostal": "39250", - "codeCommune": "39393", - "libelleAcheminement": "ONGLIERES", - "nomCommune": "ONGLIERES" + "codePostal": "69240", + "codeCommune": "69248", + "libelleAcheminement": "THIZY LES BOURGS", + "nomCommune": "THIZY LES BOURGS" }, { - "codePostal": "09300", - "codeCommune": "09168", - "libelleAcheminement": "LIEURAC", - "nomCommune": "LIEURAC" + "codePostal": "16570", + "codeCommune": "16210", + "libelleAcheminement": "MARSAC", + "nomCommune": "MARSAC" }, { - "codePostal": "65140", - "codeCommune": "65273", - "libelleAcheminement": "LIAC", - "nomCommune": "LIAC" + "codePostal": "69440", + "codeCommune": "69219", + "libelleAcheminement": "ST LAURENT D AGNY", + "nomCommune": "ST LAURENT D AGNY" }, { - "codePostal": "47800", - "codeCommune": "47194", - "libelleAcheminement": "MOUSTIER", - "nomCommune": "MOUSTIER" + "codePostal": "59213", + "codeCommune": "59069", + "libelleAcheminement": "BERMERAIN", + "nomCommune": "BERMERAIN" }, { - "codePostal": "39700", - "codeCommune": "39400", - "libelleAcheminement": "OUR", - "nomCommune": "OUR" + "codePostal": "60430", + "codeCommune": "60462", + "libelleAcheminement": "NOAILLES", + "nomCommune": "NOAILLES" }, { - "codePostal": "09120", - "codeCommune": "09179", - "libelleAcheminement": "MALLEON", - "nomCommune": "MALLEON" + "codePostal": "69770", + "codeCommune": "69263", + "libelleAcheminement": "VILLECHENEVE", + "nomCommune": "VILLECHENEVE" }, { - "codePostal": "65330", - "codeCommune": "65274", - "libelleAcheminement": "LIBAROS", - "nomCommune": "LIBAROS" + "codePostal": "16310", + "codeCommune": "16212", + "libelleAcheminement": "MASSIGNAC", + "nomCommune": "MASSIGNAC" }, { - "codePostal": "47150", - "codeCommune": "47202", - "libelleAcheminement": "PAULHIAC", - "nomCommune": "PAULHIAC" + "codePostal": "69170", + "codeCommune": "69225", + "libelleAcheminement": "ST MARCEL L ECLAIRE", + "nomCommune": "ST MARCEL L ECLAIRE" }, { - "codePostal": "39330", - "codeCommune": "39403", - "libelleAcheminement": "PAGNOZ", - "nomCommune": "PAGNOZ" + "codePostal": "59570", + "codeCommune": "59070", + "libelleAcheminement": "BERMERIES", + "nomCommune": "BERMERIES" }, { - "codePostal": "09290", - "codeCommune": "09181", - "libelleAcheminement": "LE MAS D AZIL", - "nomCommune": "LE MAS D AZIL" + "codePostal": "60840", + "codeCommune": "60464", + "libelleAcheminement": "NOINTEL", + "nomCommune": "NOINTEL" }, { - "codePostal": "65200", - "codeCommune": "65275", - "libelleAcheminement": "LIES", - "nomCommune": "LIES" + "codePostal": "69640", + "codeCommune": "69265", + "libelleAcheminement": "VILLE SUR JARNIOUX", + "nomCommune": "VILLE SUR JARNIOUX" }, { - "codePostal": "47420", - "codeCommune": "47208", - "libelleAcheminement": "POMPOGNE", - "nomCommune": "POMPOGNE" + "codePostal": "16210", + "codeCommune": "16215", + "libelleAcheminement": "MEDILLAC", + "nomCommune": "MEDILLAC" }, { - "codePostal": "39100", - "codeCommune": "39405", - "libelleAcheminement": "PARCEY", - "nomCommune": "PARCEY" + "codePostal": "69440", + "codeCommune": "69228", + "libelleAcheminement": "CHABANIERE", + "nomCommune": "CHABANIERE" }, { - "codePostal": "09320", - "codeCommune": "09182", - "libelleAcheminement": "MASSAT", - "nomCommune": "MASSAT" + "codePostal": "59310", + "codeCommune": "59080", + "libelleAcheminement": "BEUVRY LA FORET", + "nomCommune": "BEUVRY LA FORET" }, { - "codePostal": "65130", - "codeCommune": "65278", - "libelleAcheminement": "LOMNE", - "nomCommune": "LOMNE" + "codePostal": "60480", + "codeCommune": "60470", + "libelleAcheminement": "NOYERS ST MARTIN", + "nomCommune": "NOYERS ST MARTIN" }, { - "codePostal": "47310", - "codeCommune": "47225", - "libelleAcheminement": "ROQUEFORT", - "nomCommune": "ROQUEFORT" + "codePostal": "69390", + "codeCommune": "69268", + "libelleAcheminement": "VOURLES", + "nomCommune": "VOURLES" }, { - "codePostal": "39270", - "codeCommune": "39420", - "libelleAcheminement": "PIMORIN", - "nomCommune": "PIMORIN" + "codePostal": "16200", + "codeCommune": "16220", + "libelleAcheminement": "LES METAIRIES", + "nomCommune": "LES METAIRIES" }, { - "codePostal": "09230", - "codeCommune": "09190", - "libelleAcheminement": "MERIGON", - "nomCommune": "MERIGON" + "codePostal": "69560", + "codeCommune": "69235", + "libelleAcheminement": "ST ROMAIN EN GAL", + "nomCommune": "ST ROMAIN EN GAL" }, { - "codePostal": "65100", - "codeCommune": "65280", - "libelleAcheminement": "LOUBAJAC", - "nomCommune": "LOUBAJAC" + "codePostal": "59189", + "codeCommune": "59087", + "libelleAcheminement": "BOESEGHEM", + "nomCommune": "BOESEGHEM" }, { - "codePostal": "47350", - "codeCommune": "47232", - "libelleAcheminement": "ST BARTHELEMY D AGENAIS", - "nomCommune": "ST BARTHELEMY D AGENAIS" + "codePostal": "60210", + "codeCommune": "60472", + "libelleAcheminement": "OFFOY", + "nomCommune": "OFFOY" }, { - "codePostal": "39270", - "codeCommune": "39423", - "libelleAcheminement": "PLAISIA", - "nomCommune": "PLAISIA" + "codePostal": "69970", + "codeCommune": "69270", + "libelleAcheminement": "CHAPONNAY", + "nomCommune": "CHAPONNAY" }, { - "codePostal": "09500", - "codeCommune": "09194", - "libelleAcheminement": "MIREPOIX", - "nomCommune": "MIREPOIX" + "codePostal": "16390", + "codeCommune": "16227", + "libelleAcheminement": "MONTIGNAC LE COQ", + "nomCommune": "MONTIGNAC LE COQ" }, { - "codePostal": "65240", - "codeCommune": "65283", - "libelleAcheminement": "LOUDERVIELLE", - "nomCommune": "LOUDERVIELLE" + "codePostal": "69170", + "codeCommune": "69243", + "libelleAcheminement": "TARARE", + "nomCommune": "TARARE" }, { - "codePostal": "47210", - "codeCommune": "47240", - "libelleAcheminement": "ST ETIENNE DE VILLEREAL", - "nomCommune": "ST ETIENNE DE VILLEREAL" + "codePostal": "59190", + "codeCommune": "59091", + "libelleAcheminement": "BORRE", + "nomCommune": "BORRE" }, { - "codePostal": "39150", - "codeCommune": "39424", - "libelleAcheminement": "LES PLANCHES EN MONTAGNE", - "nomCommune": "LES PLANCHES EN MONTAGNE" + "codePostal": "60440", + "codeCommune": "60473", + "libelleAcheminement": "OGNES", + "nomCommune": "OGNES" }, { - "codePostal": "09700", - "codeCommune": "09199", - "libelleAcheminement": "MONTAUT", - "nomCommune": "MONTAUT" + "codePostal": "69320", + "codeCommune": "69276", + "libelleAcheminement": "FEYZIN", + "nomCommune": "FEYZIN" }, { - "codePostal": "65350", - "codeCommune": "65285", - "libelleAcheminement": "LOUIT", - "nomCommune": "LOUIT" + "codePostal": "16240", + "codeCommune": "16229", + "libelleAcheminement": "MONTJEAN", + "nomCommune": "MONTJEAN" }, { - "codePostal": "47210", - "codeCommune": "47241", - "libelleAcheminement": "ST EUTROPE DE BORN", - "nomCommune": "ST EUTROPE DE BORN" + "codePostal": "69620", + "codeCommune": "69246", + "libelleAcheminement": "THEIZE", + "nomCommune": "THEIZE" }, { - "codePostal": "39800", - "codeCommune": "39426", - "libelleAcheminement": "PLASNE", - "nomCommune": "PLASNE" + "codePostal": "59111", + "codeCommune": "59092", + "libelleAcheminement": "BOUCHAIN", + "nomCommune": "BOUCHAIN" }, { - "codePostal": "09600", - "codeCommune": "09200", - "libelleAcheminement": "MONTBEL", - "nomCommune": "MONTBEL" + "codePostal": "60860", + "codeCommune": "60484", + "libelleAcheminement": "OUDEUIL", + "nomCommune": "OUDEUIL" }, { - "codePostal": "65700", - "codeCommune": "65296", - "libelleAcheminement": "MADIRAN", - "nomCommune": "MADIRAN" + "codePostal": "69720", + "codeCommune": "69288", + "libelleAcheminement": "ST LAURENT DE MURE", + "nomCommune": "ST LAURENT DE MURE" }, { - "codePostal": "47160", - "codeCommune": "47250", - "libelleAcheminement": "ST LEGER", - "nomCommune": "ST LEGER" + "codePostal": "16190", + "codeCommune": "16230", + "libelleAcheminement": "MONTMOREAU", + "nomCommune": "MONTMOREAU" }, { - "codePostal": "39250", - "codeCommune": "39428", - "libelleAcheminement": "PLENISETTE", - "nomCommune": "PLENISETTE" + "codePostal": "69240", + "codeCommune": "69248", + "libelleAcheminement": "THIZY LES BOURGS", + "nomCommune": "THIZY LES BOURGS" }, { - "codePostal": "09120", - "codeCommune": "09202", - "libelleAcheminement": "MONTEGUT PLANTAUREL", - "nomCommune": "MONTEGUT PLANTAUREL" + "codePostal": "59111", + "codeCommune": "59092", + "libelleAcheminement": "BOUCHAIN", + "nomCommune": "BOUCHAIN" }, { - "codePostal": "65190", - "codeCommune": "65303", - "libelleAcheminement": "MASCARAS", - "nomCommune": "MASCARAS" + "codePostal": "60400", + "codeCommune": "60488", + "libelleAcheminement": "PASSEL", + "nomCommune": "PASSEL" }, { - "codePostal": "47430", - "codeCommune": "47253", - "libelleAcheminement": "STE MARTHE", - "nomCommune": "STE MARTHE" + "codePostal": "69360", + "codeCommune": "69291", + "libelleAcheminement": "ST SYMPHORIEN D OZON", + "nomCommune": "ST SYMPHORIEN D OZON" }, { - "codePostal": "39120", - "codeCommune": "39429", - "libelleAcheminement": "PLEURE", - "nomCommune": "PLEURE" + "codePostal": "16190", + "codeCommune": "16230", + "libelleAcheminement": "MONTMOREAU", + "nomCommune": "MONTMOREAU" }, { - "codePostal": "09200", - "codeCommune": "09204", - "libelleAcheminement": "MONTESQUIEU AVANTES", - "nomCommune": "MONTESQUIEU AVANTES" + "codePostal": "69240", + "codeCommune": "69248", + "libelleAcheminement": "THIZY LES BOURGS", + "nomCommune": "THIZY LES BOURGS" }, { - "codePostal": "65220", - "codeCommune": "65308", - "libelleAcheminement": "MAZEROLLES", - "nomCommune": "MAZEROLLES" + "codePostal": "59440", + "codeCommune": "59093", + "libelleAcheminement": "BOULOGNE SUR HELPE", + "nomCommune": "BOULOGNE SUR HELPE" }, { - "codePostal": "47700", - "codeCommune": "47254", - "libelleAcheminement": "ST MARTIN CURTON", - "nomCommune": "ST MARTIN CURTON" + "codePostal": "60112", + "codeCommune": "60490", + "libelleAcheminement": "PIERREFITTE EN BEAUVAISIS", + "nomCommune": "PIERREFITTE EN BEAUVAISIS" }, { - "codePostal": "39700", - "codeCommune": "39430", - "libelleAcheminement": "PLUMONT", - "nomCommune": "PLUMONT" + "codePostal": "69580", + "codeCommune": "69293", + "libelleAcheminement": "SATHONAY VILLAGE", + "nomCommune": "SATHONAY VILLAGE" }, { - "codePostal": "09300", - "codeCommune": "09206", - "libelleAcheminement": "MONTFERRIER", - "nomCommune": "MONTFERRIER" + "codePostal": "16420", + "codeCommune": "16231", + "libelleAcheminement": "MONTROLLET", + "nomCommune": "MONTROLLET" }, { - "codePostal": "65670", - "codeCommune": "65315", - "libelleAcheminement": "MONLEON MAGNOAC", - "nomCommune": "MONLEON MAGNOAC" + "codePostal": "69890", + "codeCommune": "69250", + "libelleAcheminement": "LA TOUR DE SALVAGNY", + "nomCommune": "LA TOUR DE SALVAGNY" }, { - "codePostal": "47180", - "codeCommune": "47257", - "libelleAcheminement": "ST MARTIN PETIT", - "nomCommune": "ST MARTIN PETIT" + "codePostal": "59630", + "codeCommune": "59094", + "libelleAcheminement": "BOURBOURG", + "nomCommune": "BOURBOURG" }, { - "codePostal": "39570", - "codeCommune": "39431", - "libelleAcheminement": "POIDS DE FIOLE", - "nomCommune": "POIDS DE FIOLE" + "codePostal": "60150", + "codeCommune": "60501", + "libelleAcheminement": "LE PLESSIS BRION", + "nomCommune": "LE PLESSIS BRION" }, { - "codePostal": "09240", - "codeCommune": "09216", - "libelleAcheminement": "NESCUS", - "nomCommune": "NESCUS" + "codePostal": "69360", + "codeCommune": "69294", + "libelleAcheminement": "SEREZIN DU RHONE", + "nomCommune": "SEREZIN DU RHONE" }, { - "codePostal": "65670", - "codeCommune": "65316", - "libelleAcheminement": "MONLONG", - "nomCommune": "MONLONG" + "codePostal": "16600", + "codeCommune": "16232", + "libelleAcheminement": "MORNAC", + "nomCommune": "MORNAC" }, { - "codePostal": "47170", - "codeCommune": "47258", - "libelleAcheminement": "STE MAURE DE PEYRIAC", - "nomCommune": "STE MAURE DE PEYRIAC" + "codePostal": "69420", + "codeCommune": "69252", + "libelleAcheminement": "TREVES", + "nomCommune": "TREVES" }, { - "codePostal": "39300", - "codeCommune": "39437", - "libelleAcheminement": "PONT DU NAVOY", - "nomCommune": "PONT DU NAVOY" + "codePostal": "59217", + "codeCommune": "59102", + "libelleAcheminement": "BOUSSIERES EN CAMBRESIS", + "nomCommune": "BOUSSIERES EN CAMBRESIS" }, { - "codePostal": "09110", - "codeCommune": "09218", - "libelleAcheminement": "ORGEIX", - "nomCommune": "ORGEIX" + "codePostal": "60400", + "codeCommune": "60506", + "libelleAcheminement": "PONT L EVEQUE", + "nomCommune": "PONT L EVEQUE" }, { - "codePostal": "65200", - "codeCommune": "65320", - "libelleAcheminement": "MONTGAILLARD", - "nomCommune": "MONTGAILLARD" + "codePostal": "69360", + "codeCommune": "69295", + "libelleAcheminement": "SIMANDRES", + "nomCommune": "SIMANDRES" }, { - "codePostal": "47220", - "codeCommune": "47262", - "libelleAcheminement": "ST NICOLAS DE LA BALERME", - "nomCommune": "ST NICOLAS DE LA BALERME" + "codePostal": "16310", + "codeCommune": "16239", + "libelleAcheminement": "MOUZON", + "nomCommune": "MOUZON" }, { - "codePostal": "39600", - "codeCommune": "39439", - "libelleAcheminement": "PORT LESNEY", - "nomCommune": "PORT LESNEY" + "codePostal": "69670", + "codeCommune": "69255", + "libelleAcheminement": "VAUGNERAY", + "nomCommune": "VAUGNERAY" }, { - "codePostal": "09800", - "codeCommune": "09219", - "libelleAcheminement": "ORGIBET", - "nomCommune": "ORGIBET" + "codePostal": "59830", + "codeCommune": "59106", + "libelleAcheminement": "BOUVINES", + "nomCommune": "BOUVINES" }, { - "codePostal": "65250", - "codeCommune": "65322", - "libelleAcheminement": "MONTOUSSE", - "nomCommune": "MONTOUSSE" + "codePostal": "60400", + "codeCommune": "60507", + "libelleAcheminement": "PONTOISE LES NOYON", + "nomCommune": "PONTOISE LES NOYON" }, { - "codePostal": "47160", - "codeCommune": "47267", - "libelleAcheminement": "ST PIERRE DE BUZET", - "nomCommune": "ST PIERRE DE BUZET" + "codePostal": "69125", + "codeCommune": "69299", + "libelleAcheminement": "COLOMBIER SAUGNIEU", + "nomCommune": "COLOMBIER SAUGNIEU" }, { - "codePostal": "39290", - "codeCommune": "39449", - "libelleAcheminement": "RAINANS", - "nomCommune": "RAINANS" + "codePostal": "16700", + "codeCommune": "16242", + "libelleAcheminement": "NANTEUIL EN VALLEE", + "nomCommune": "NANTEUIL EN VALLEE" }, { - "codePostal": "09110", - "codeCommune": "09220", - "libelleAcheminement": "ORLU", - "nomCommune": "ORLU" + "codePostal": "69460", + "codeCommune": "69257", + "libelleAcheminement": "VAUX EN BEAUJOLAIS", + "nomCommune": "VAUX EN BEAUJOLAIS" }, { - "codePostal": "65150", - "codeCommune": "65327", - "libelleAcheminement": "NESTIER", - "nomCommune": "NESTIER" + "codePostal": "59123", + "codeCommune": "59107", + "libelleAcheminement": "BRAY DUNES", + "nomCommune": "BRAY DUNES" }, { - "codePostal": "47270", - "codeCommune": "47274", - "libelleAcheminement": "ST ROMAIN LE NOBLE", - "nomCommune": "ST ROMAIN LE NOBLE" + "codePostal": "60790", + "codeCommune": "60512", + "libelleAcheminement": "POUILLY", + "nomCommune": "POUILLY" }, { - "codePostal": "39570", - "codeCommune": "39458", - "libelleAcheminement": "REVIGNY", - "nomCommune": "REVIGNY" + "codePostal": "69001", + "codeCommune": "69381", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 01" }, { - "codePostal": "09140", - "codeCommune": "09223", - "libelleAcheminement": "OUST", - "nomCommune": "OUST" + "codePostal": "16190", + "codeCommune": "16246", + "libelleAcheminement": "NONAC", + "nomCommune": "NONAC" }, { - "codePostal": "65500", - "codeCommune": "65330", - "libelleAcheminement": "NOUILHAN", - "nomCommune": "NOUILHAN" + "codePostal": "69390", + "codeCommune": "69260", + "libelleAcheminement": "VERNAISON", + "nomCommune": "VERNAISON" }, { - "codePostal": "47270", - "codeCommune": "47281", - "libelleAcheminement": "ST URCISSE", - "nomCommune": "ST URCISSE" + "codePostal": "59730", + "codeCommune": "59108", + "libelleAcheminement": "BRIASTRE", + "nomCommune": "BRIASTRE" }, { - "codePostal": "39350", - "codeCommune": "39464", - "libelleAcheminement": "ROMAIN", - "nomCommune": "ROMAIN" + "codePostal": "60460", + "codeCommune": "60513", + "libelleAcheminement": "PRECY SUR OISE", + "nomCommune": "PRECY SUR OISE" }, { - "codePostal": "09110", - "codeCommune": "09228", - "libelleAcheminement": "PERLES ET CASTELET", - "nomCommune": "PERLES ET CASTELET" + "codePostal": "69004", + "codeCommune": "69384", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 04" }, { - "codePostal": "65310", - "codeCommune": "65331", - "libelleAcheminement": "ODOS", - "nomCommune": "ODOS" + "codePostal": "16220", + "codeCommune": "16250", + "libelleAcheminement": "ORGEDEUIL", + "nomCommune": "ORGEDEUIL" }, { - "codePostal": "47310", - "codeCommune": "47282", - "libelleAcheminement": "ST VINCENT DE LAMONTJOIE", - "nomCommune": "ST VINCENT DE LAMONTJOIE" + "codePostal": "69390", + "codeCommune": "69268", + "libelleAcheminement": "VOURLES", + "nomCommune": "VOURLES" }, { - "codePostal": "39220", - "codeCommune": "39470", - "libelleAcheminement": "LES ROUSSES", - "nomCommune": "LES ROUSSES" + "codePostal": "59151", + "codeCommune": "59115", + "libelleAcheminement": "BRUNEMONT", + "nomCommune": "BRUNEMONT" }, { - "codePostal": "09600", - "codeCommune": "09229", - "libelleAcheminement": "LE PEYRAT", - "nomCommune": "LE PEYRAT" + "codePostal": "60480", + "codeCommune": "60518", + "libelleAcheminement": "PUITS LA VALLEE", + "nomCommune": "PUITS LA VALLEE" }, { - "codePostal": "65200", - "codeCommune": "65335", - "libelleAcheminement": "ORDIZAN", - "nomCommune": "ORDIZAN" + "codePostal": "69005", + "codeCommune": "69385", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 05" }, { - "codePostal": "47150", - "codeCommune": "47284", - "libelleAcheminement": "SALLES", - "nomCommune": "SALLES" + "codePostal": "16450", + "codeCommune": "16255", + "libelleAcheminement": "PARZAC", + "nomCommune": "PARZAC" }, { - "codePostal": "39400", - "codeCommune": "39470", - "libelleAcheminement": "LES ROUSSES", - "nomCommune": "LES ROUSSES" + "codePostal": "69360", + "codeCommune": "69272", + "libelleAcheminement": "COMMUNAY", + "nomCommune": "COMMUNAY" }, { - "codePostal": "09160", - "codeCommune": "09235", - "libelleAcheminement": "PRAT BONREPAUX", - "nomCommune": "PRAT BONREPAUX" + "codePostal": "59161", + "codeCommune": "59121", + "libelleAcheminement": "CAGNONCLES", + "nomCommune": "CAGNONCLES" }, { - "codePostal": "65190", - "codeCommune": "65346", - "libelleAcheminement": "OUEILLOUX", - "nomCommune": "OUEILLOUX" + "codePostal": "60290", + "codeCommune": "60524", + "libelleAcheminement": "RANTIGNY", + "nomCommune": "RANTIGNY" }, { - "codePostal": "47270", - "codeCommune": "47289", - "libelleAcheminement": "LA SAUVETAT DE SAVERES", - "nomCommune": "LA SAUVETAT DE SAVERES" + "codePostal": "69006", + "codeCommune": "69386", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 06" }, { - "codePostal": "39140", - "codeCommune": "39471", - "libelleAcheminement": "RUFFEY SUR SEILLE", - "nomCommune": "RUFFEY SUR SEILLE" + "codePostal": "16480", + "codeCommune": "16256", + "libelleAcheminement": "PASSIRAC", + "nomCommune": "PASSIRAC" }, { - "codePostal": "09400", - "codeCommune": "09240", - "libelleAcheminement": "QUIE", - "nomCommune": "QUIE" + "codePostal": "69150", + "codeCommune": "69275", + "libelleAcheminement": "DECINES CHARPIEU", + "nomCommune": "DECINES CHARPIEU" }, { - "codePostal": "65100", - "codeCommune": "65348", - "libelleAcheminement": "OURDIS COTDOUSSAN", - "nomCommune": "OURDIS COTDOUSSAN" + "codePostal": "59400", + "codeCommune": "59122", + "libelleAcheminement": "CAMBRAI", + "nomCommune": "CAMBRAI" }, { - "codePostal": "47430", - "codeCommune": "47298", - "libelleAcheminement": "SENESTIS", - "nomCommune": "SENESTIS" + "codePostal": "60190", + "codeCommune": "60531", + "libelleAcheminement": "REMY", + "nomCommune": "REMY" }, { - "codePostal": "39230", - "codeCommune": "39472", - "libelleAcheminement": "RYE", - "nomCommune": "RYE" + "codePostal": "70200", + "codeCommune": "70004", + "libelleAcheminement": "ADELANS ET LE VAL DE BITHAINE", + "nomCommune": "ADELANS ET LE VAL DE BITHAINE" }, { - "codePostal": "09600", - "codeCommune": "09243", - "libelleAcheminement": "REGAT", - "nomCommune": "REGAT" + "codePostal": "16390", + "codeCommune": "16260", + "libelleAcheminement": "PILLAC", + "nomCommune": "PILLAC" }, { - "codePostal": "65230", - "codeCommune": "65358", - "libelleAcheminement": "PEYRET ST ANDRE", - "nomCommune": "PEYRET ST ANDRE" + "codePostal": "69250", + "codeCommune": "69284", + "libelleAcheminement": "MONTANAY", + "nomCommune": "MONTANAY" }, { - "codePostal": "47310", - "codeCommune": "47300", - "libelleAcheminement": "SERIGNAC SUR GARONNE", - "nomCommune": "SERIGNAC SUR GARONNE" + "codePostal": "59133", + "codeCommune": "59123", + "libelleAcheminement": "CAMPHIN EN CAREMBAULT", + "nomCommune": "CAMPHIN EN CAREMBAULT" }, { - "codePostal": "39130", - "codeCommune": "39473", - "libelleAcheminement": "SAFFLOZ", - "nomCommune": "SAFFLOZ" + "codePostal": "60490", + "codeCommune": "60533", + "libelleAcheminement": "RESSONS SUR MATZ", + "nomCommune": "RESSONS SUR MATZ" }, { - "codePostal": "09300", - "codeCommune": "09249", - "libelleAcheminement": "ROQUEFIXADE", - "nomCommune": "ROQUEFIXADE" + "codePostal": "70210", + "codeCommune": "70013", + "libelleAcheminement": "AMBIEVILLERS", + "nomCommune": "AMBIEVILLERS" }, { - "codePostal": "65190", - "codeCommune": "65367", - "libelleAcheminement": "POUMAROUS", - "nomCommune": "POUMAROUS" + "codePostal": "16140", + "codeCommune": "16275", + "libelleAcheminement": "RANVILLE BREUILLAUD", + "nomCommune": "RANVILLE BREUILLAUD" }, { - "codePostal": "47350", - "codeCommune": "47301", - "libelleAcheminement": "SEYCHES", - "nomCommune": "SEYCHES" + "codePostal": "69330", + "codeCommune": "69285", + "libelleAcheminement": "PUSIGNAN", + "nomCommune": "PUSIGNAN" }, { - "codePostal": "39120", - "codeCommune": "39477", - "libelleAcheminement": "ST BARAING", - "nomCommune": "ST BARAING" + "codePostal": "59780", + "codeCommune": "59124", + "libelleAcheminement": "CAMPHIN EN PEVELE", + "nomCommune": "CAMPHIN EN PEVELE" }, { - "codePostal": "09500", - "codeCommune": "09274", - "libelleAcheminement": "ST QUENTIN LA TOUR", - "nomCommune": "ST QUENTIN LA TOUR" + "codePostal": "60510", + "codeCommune": "60542", + "libelleAcheminement": "ROCHY CONDE", + "nomCommune": "ROCHY CONDE" }, { - "codePostal": "65350", - "codeCommune": "65369", - "libelleAcheminement": "POUYASTRUC", - "nomCommune": "POUYASTRUC" + "codePostal": "70100", + "codeCommune": "70024", + "libelleAcheminement": "APREMONT", + "nomCommune": "APREMONT" }, { - "codePostal": "47380", - "codeCommune": "47313", - "libelleAcheminement": "TOURTRES", - "nomCommune": "TOURTRES" + "codePostal": "16210", + "codeCommune": "16279", + "libelleAcheminement": "RIOUX MARTIN", + "nomCommune": "RIOUX MARTIN" }, { - "codePostal": "39200", - "codeCommune": "39478", - "libelleAcheminement": "ST CLAUDE", - "nomCommune": "ST CLAUDE" + "codePostal": "69720", + "codeCommune": "69287", + "libelleAcheminement": "ST BONNET DE MURE", + "nomCommune": "ST BONNET DE MURE" }, { - "codePostal": "09210", - "codeCommune": "09277", - "libelleAcheminement": "ST YBARS", - "nomCommune": "ST YBARS" + "codePostal": "59680", + "codeCommune": "59151", + "libelleAcheminement": "COLLERET", + "nomCommune": "COLLERET" }, { - "codePostal": "65230", - "codeCommune": "65373", - "libelleAcheminement": "PUNTOUS", - "nomCommune": "PUNTOUS" + "codePostal": "60440", + "codeCommune": "60546", + "libelleAcheminement": "ROSIERES", + "nomCommune": "ROSIERES" }, { - "codePostal": "47140", - "codeCommune": "47314", - "libelleAcheminement": "TREMONS", - "nomCommune": "TREMONS" + "codePostal": "70120", + "codeCommune": "70025", + "libelleAcheminement": "ARBECEY", + "nomCommune": "ARBECEY" }, { - "codePostal": "39200", - "codeCommune": "39478", - "libelleAcheminement": "ST CLAUDE", - "nomCommune": "ST CLAUDE" + "codePostal": "16110", + "codeCommune": "16280", + "libelleAcheminement": "RIVIERES", + "nomCommune": "RIVIERES" }, { - "codePostal": "09400", - "codeCommune": "09280", - "libelleAcheminement": "SAURAT", - "nomCommune": "SAURAT" + "codePostal": "69360", + "codeCommune": "69297", + "libelleAcheminement": "TERNAY", + "nomCommune": "TERNAY" }, { - "codePostal": "65330", - "codeCommune": "65381", - "libelleAcheminement": "SABARROS", - "nomCommune": "SABARROS" + "codePostal": "59560", + "codeCommune": "59152", + "libelleAcheminement": "COMINES", + "nomCommune": "COMINES" }, { - "codePostal": "47400", - "codeCommune": "47316", - "libelleAcheminement": "VARES", - "nomCommune": "VARES" + "codePostal": "60800", + "codeCommune": "60552", + "libelleAcheminement": "ROUVILLE", + "nomCommune": "ROUVILLE" }, { - "codePostal": "39320", - "codeCommune": "39485", - "libelleAcheminement": "VAL SURAN", - "nomCommune": "VAL SURAN" + "codePostal": "70600", + "codeCommune": "70027", + "libelleAcheminement": "ARGILLIERES", + "nomCommune": "ARGILLIERES" }, { - "codePostal": "09310", - "codeCommune": "09296", - "libelleAcheminement": "AULOS SINSAT", - "nomCommune": "AULOS SINSAT" + "codePostal": "16110", + "codeCommune": "16281", + "libelleAcheminement": "LA ROCHEFOUCAULD EN ANGOUMOIS", + "nomCommune": "LA ROCHEFOUCAULD EN ANGOUMOIS" }, { - "codePostal": "65100", - "codeCommune": "65386", - "libelleAcheminement": "ST CREAC", - "nomCommune": "ST CREAC" + "codePostal": "69124", + "codeCommune": "69299", + "libelleAcheminement": "COLOMBIER SAUGNIEU", + "nomCommune": "COLOMBIER SAUGNIEU" }, { - "codePostal": "47120", - "codeCommune": "47321", - "libelleAcheminement": "VILLENEUVE DE DURAS", - "nomCommune": "VILLENEUVE DE DURAS" + "codePostal": "59163", + "codeCommune": "59153", + "libelleAcheminement": "CONDE SUR L ESCAUT", + "nomCommune": "CONDE SUR L ESCAUT" }, { - "codePostal": "39320", - "codeCommune": "39485", - "libelleAcheminement": "VAL SURAN", - "nomCommune": "VAL SURAN" + "codePostal": "60190", + "codeCommune": "60553", + "libelleAcheminement": "ROUVILLERS", + "nomCommune": "ROUVILLERS" }, { - "codePostal": "09320", - "codeCommune": "09301", - "libelleAcheminement": "SOULAN", - "nomCommune": "SOULAN" + "codePostal": "70200", + "codeCommune": "70029", + "libelleAcheminement": "ARPENANS", + "nomCommune": "ARPENANS" }, { - "codePostal": "65370", - "codeCommune": "65398", - "libelleAcheminement": "SALECHAN", - "nomCommune": "SALECHAN" + "codePostal": "16330", + "codeCommune": "16295", + "libelleAcheminement": "ST AMANT DE BOIXE", + "nomCommune": "ST AMANT DE BOIXE" }, { - "codePostal": "47210", - "codeCommune": "47324", - "libelleAcheminement": "VILLEREAL", - "nomCommune": "VILLEREAL" + "codePostal": "70180", + "codeCommune": "70003", + "libelleAcheminement": "ACHEY", + "nomCommune": "ACHEY" }, { - "codePostal": "39150", - "codeCommune": "39487", - "libelleAcheminement": "ST LAURENT EN GRANDVAUX", - "nomCommune": "ST LAURENT EN GRANDVAUX" + "codePostal": "59210", + "codeCommune": "59155", + "libelleAcheminement": "COUDEKERQUE BRANCHE", + "nomCommune": "COUDEKERQUE BRANCHE" }, { - "codePostal": "09400", - "codeCommune": "09306", - "libelleAcheminement": "TARASCON SUR ARIEGE", - "nomCommune": "TARASCON SUR ARIEGE" + "codePostal": "60620", + "codeCommune": "60554", + "libelleAcheminement": "ROUVRES EN MULTIEN", + "nomCommune": "ROUVRES EN MULTIEN" }, { - "codePostal": "65120", - "codeCommune": "65399", - "libelleAcheminement": "SALIGOS", - "nomCommune": "SALIGOS" + "codePostal": "70100", + "codeCommune": "70030", + "libelleAcheminement": "ARSANS", + "nomCommune": "ARSANS" }, { - "codePostal": "47200", - "codeCommune": "47326", - "libelleAcheminement": "VIRAZEIL", - "nomCommune": "VIRAZEIL" + "codePostal": "16300", + "codeCommune": "16303", + "libelleAcheminement": "ST BONNET", + "nomCommune": "ST BONNET" }, { - "codePostal": "39230", - "codeCommune": "39489", - "libelleAcheminement": "ST LOTHAIN", - "nomCommune": "ST LOTHAIN" + "codePostal": "70300", + "codeCommune": "70007", + "libelleAcheminement": "AILLONCOURT", + "nomCommune": "AILLONCOURT" }, { - "codePostal": "09140", - "codeCommune": "09322", - "libelleAcheminement": "USTOU", - "nomCommune": "USTOU" + "codePostal": "59149", + "codeCommune": "59157", + "libelleAcheminement": "COUSOLRE", + "nomCommune": "COUSOLRE" }, { - "codePostal": "65130", - "codeCommune": "65405", - "libelleAcheminement": "SARLABOUS", - "nomCommune": "SARLABOUS" + "codePostal": "60310", + "codeCommune": "60558", + "libelleAcheminement": "ROYE SUR MATZ", + "nomCommune": "ROYE SUR MATZ" }, { - "codePostal": "48200", - "codeCommune": "48002", - "libelleAcheminement": "ALBARET STE MARIE", - "nomCommune": "ALBARET STE MARIE" + "codePostal": "70500", + "codeCommune": "70035", + "libelleAcheminement": "AUGICOURT", + "nomCommune": "AUGICOURT" }, { - "codePostal": "39700", - "codeCommune": "39498", - "libelleAcheminement": "SALANS", - "nomCommune": "SALANS" + "codePostal": "16480", + "codeCommune": "16331", + "libelleAcheminement": "ST LAURENT DES COMBES", + "nomCommune": "ST LAURENT DES COMBES" }, { - "codePostal": "09120", - "codeCommune": "09327", - "libelleAcheminement": "VENTENAC", - "nomCommune": "VENTENAC" + "codePostal": "70170", + "codeCommune": "70015", + "libelleAcheminement": "AMONCOURT", + "nomCommune": "AMONCOURT" }, { - "codePostal": "65390", - "codeCommune": "65406", - "libelleAcheminement": "SARNIGUET", - "nomCommune": "SARNIGUET" + "codePostal": "59279", + "codeCommune": "59159", + "libelleAcheminement": "CRAYWICK", + "nomCommune": "CRAYWICK" }, { - "codePostal": "48800", - "codeCommune": "48004", - "libelleAcheminement": "ALTIER", - "nomCommune": "ALTIER" + "codePostal": "60220", + "codeCommune": "60566", + "libelleAcheminement": "ST ARNOULT", + "nomCommune": "ST ARNOULT" }, { - "codePostal": "39270", - "codeCommune": "39504", - "libelleAcheminement": "SARROGNA", - "nomCommune": "SARROGNA" + "codePostal": "70700", + "codeCommune": "70039", + "libelleAcheminement": "AUTOREILLE", + "nomCommune": "AUTOREILLE" }, { - "codePostal": "09310", - "codeCommune": "09328", - "libelleAcheminement": "VERDUN", - "nomCommune": "VERDUN" + "codePostal": "16300", + "codeCommune": "16338", + "libelleAcheminement": "ST MEDARD DE BARBEZIEUX", + "nomCommune": "ST MEDARD" }, { - "codePostal": "65120", - "codeCommune": "65411", - "libelleAcheminement": "SASSIS", - "nomCommune": "SASSIS" + "codePostal": "70310", + "codeCommune": "70016", + "libelleAcheminement": "AMONT ET EFFRENEY", + "nomCommune": "AMONT ET EFFRENEY" }, { - "codePostal": "48100", - "codeCommune": "48005", - "libelleAcheminement": "ANTRENAS", - "nomCommune": "ANTRENAS" + "codePostal": "59154", + "codeCommune": "59160", + "libelleAcheminement": "CRESPIN", + "nomCommune": "CRESPIN" }, { - "codePostal": "39300", - "codeCommune": "39517", - "libelleAcheminement": "SIROD", - "nomCommune": "SIROD" + "codePostal": "60600", + "codeCommune": "60568", + "libelleAcheminement": "ST AUBIN SOUS ERQUERY", + "nomCommune": "ST AUBIN SOUS ERQUERY" }, { - "codePostal": "09340", - "codeCommune": "09332", - "libelleAcheminement": "VERNIOLLE", - "nomCommune": "VERNIOLLE" + "codePostal": "70200", + "codeCommune": "70046", + "libelleAcheminement": "LES AYNANS", + "nomCommune": "LES AYNANS" }, { - "codePostal": "65120", - "codeCommune": "65413", - "libelleAcheminement": "SAZOS", - "nomCommune": "SAZOS" + "codePostal": "16170", + "codeCommune": "16339", + "libelleAcheminement": "VAL D AUGE", + "nomCommune": "VAL D AUGE" }, { - "codePostal": "48170", - "codeCommune": "48008", - "libelleAcheminement": "ARZENC DE RANDON", - "nomCommune": "ARZENC DE RANDON" + "codePostal": "70000", + "codeCommune": "70020", + "libelleAcheminement": "ANDELARROT", + "nomCommune": "ANDELARROT" }, { - "codePostal": "39130", - "codeCommune": "39518", - "libelleAcheminement": "SONGESON", - "nomCommune": "SONGESON" + "codePostal": "59553", + "codeCommune": "59165", + "libelleAcheminement": "CUINCY", + "nomCommune": "CUINCY" }, { - "codePostal": "09220", - "codeCommune": "09334", - "libelleAcheminement": "VAL DE SOS", - "nomCommune": "VAL DE SOS" + "codePostal": "60350", + "codeCommune": "60572", + "libelleAcheminement": "ST ETIENNE ROILAYE", + "nomCommune": "ST ETIENNE ROILAYE" }, { - "codePostal": "65140", - "codeCommune": "65414", - "libelleAcheminement": "SEGALAS", - "nomCommune": "SEGALAS" + "codePostal": "70800", + "codeCommune": "70052", + "libelleAcheminement": "BASSIGNEY", + "nomCommune": "BASSIGNEY" }, { - "codePostal": "48130", - "codeCommune": "48009", - "libelleAcheminement": "PEYRE EN AUBRAC", - "nomCommune": "PEYRE EN AUBRAC" + "codePostal": "16170", + "codeCommune": "16339", + "libelleAcheminement": "VAL D AUGE", + "nomCommune": "VAL D AUGE" }, { - "codePostal": "39130", - "codeCommune": "39519", - "libelleAcheminement": "SOUCIA", - "nomCommune": "SOUCIA" + "codePostal": "70200", + "codeCommune": "70021", + "libelleAcheminement": "ANDORNAY", + "nomCommune": "ANDORNAY" }, { - "codePostal": "09220", - "codeCommune": "09334", - "libelleAcheminement": "VAL DE SOS", - "nomCommune": "VAL DE SOS" + "codePostal": "59830", + "codeCommune": "59168", + "libelleAcheminement": "CYSOING", + "nomCommune": "CYSOING" }, { - "codePostal": "65400", - "codeCommune": "65428", - "libelleAcheminement": "SIREIX", - "nomCommune": "SIREIX" + "codePostal": "60480", + "codeCommune": "60573", + "libelleAcheminement": "STE EUSOYE", + "nomCommune": "STE EUSOYE" }, { - "codePostal": "48130", - "codeCommune": "48009", - "libelleAcheminement": "PEYRE EN AUBRAC", - "nomCommune": "PEYRE EN AUBRAC" + "codePostal": "70100", + "codeCommune": "70058", + "libelleAcheminement": "BEAUJEU ET QUITTEUR", + "nomCommune": "BEAUJEU ST VALLIER PIERREJUX QUITTEUR" }, { - "codePostal": "39160", - "codeCommune": "39532", - "libelleAcheminement": "THOISSIA", - "nomCommune": "THOISSIA" + "codePostal": "16170", + "codeCommune": "16339", + "libelleAcheminement": "VAL D AUGE", + "nomCommune": "VAL D AUGE" }, { - "codePostal": "09130", - "codeCommune": "09342", - "libelleAcheminement": "STE SUZANNE", - "nomCommune": "STE SUZANNE" + "codePostal": "70110", + "codeCommune": "70031", + "libelleAcheminement": "ATHESANS ETROITEFONTAINE", + "nomCommune": "ATHESANS ETROITEFONTAINE" }, { - "codePostal": "65190", - "codeCommune": "65447", - "libelleAcheminement": "TOURNAY", - "nomCommune": "TOURNAY" + "codePostal": "59680", + "codeCommune": "59169", + "libelleAcheminement": "DAMOUSIES", + "nomCommune": "DAMOUSIES" }, { - "codePostal": "48250", - "codeCommune": "48021", - "libelleAcheminement": "LA BASTIDE PUYLAURENT", - "nomCommune": "LA BASTIDE PUYLAURENT" + "codePostal": "60170", + "codeCommune": "60582", + "libelleAcheminement": "ST LEGER AUX BOIS", + "nomCommune": "ST LEGER AUX BOIS" }, { - "codePostal": "39800", - "codeCommune": "39535", - "libelleAcheminement": "TOURMONT", - "nomCommune": "TOURMONT" + "codePostal": "70300", + "codeCommune": "70067", + "libelleAcheminement": "BETONCOURT LES BROTTE", + "nomCommune": "BETONCOURT LES BROTTE" }, { - "codePostal": "10190", - "codeCommune": "10003", - "libelleAcheminement": "AIX VILLEMAUR PALIS", - "nomCommune": "AIX VILLEMAUR PALIS" + "codePostal": "16150", + "codeCommune": "16345", + "libelleAcheminement": "ST QUENTIN SUR CHARENTE", + "nomCommune": "ST QUENTIN SUR CHARENTE" }, { - "codePostal": "65400", - "codeCommune": "65458", - "libelleAcheminement": "UZ", - "nomCommune": "UZ" + "codePostal": "70190", + "codeCommune": "70038", + "libelleAcheminement": "AUTHOISON", + "nomCommune": "AUTHOISON" }, { - "codePostal": "48200", - "codeCommune": "48026", - "libelleAcheminement": "BLAVIGNAC", - "nomCommune": "BLAVIGNAC" + "codePostal": "59187", + "codeCommune": "59170", + "libelleAcheminement": "DECHY", + "nomCommune": "DECHY" }, { - "codePostal": "39190", - "codeCommune": "39537", - "libelleAcheminement": "TRENAL", - "nomCommune": "TRENAL" + "codePostal": "60420", + "codeCommune": "60585", + "libelleAcheminement": "ST MARTIN AUX BOIS", + "nomCommune": "ST MARTIN AUX BOIS" }, { - "codePostal": "10700", - "codeCommune": "10004", - "libelleAcheminement": "ALLIBAUDIERES", - "nomCommune": "ALLIBAUDIERES" + "codePostal": "70700", + "codeCommune": "70076", + "libelleAcheminement": "BONNEVENT VELLOREILLE", + "nomCommune": "BONNEVENT VELLOREILLE" }, { - "codePostal": "65500", - "codeCommune": "65460", - "libelleAcheminement": "VIC EN BIGORRE", - "nomCommune": "VIC EN BIGORRE" + "codePostal": "16200", + "codeCommune": "16349", + "libelleAcheminement": "STE SEVERE", + "nomCommune": "STE SEVERE" }, { - "codePostal": "48190", - "codeCommune": "48027", - "libelleAcheminement": "MONT LOZERE ET GOULET", - "nomCommune": "MONT LOZERE ET GOULET" + "codePostal": "70100", + "codeCommune": "70041", + "libelleAcheminement": "AUTREY LES GRAY", + "nomCommune": "AUTREY LES GRAY" }, { - "codePostal": "39300", - "codeCommune": "39545", - "libelleAcheminement": "LE VAUDIOUX", - "nomCommune": "LE VAUDIOUX" + "codePostal": "59282", + "codeCommune": "59179", + "libelleAcheminement": "DOUCHY LES MINES", + "nomCommune": "DOUCHY LES MINES" }, { - "codePostal": "10140", - "codeCommune": "10008", - "libelleAcheminement": "ARGANCON", - "nomCommune": "ARGANCON" + "codePostal": "60430", + "codeCommune": "60598", + "libelleAcheminement": "ST SULPICE", + "nomCommune": "ST SULPICE" }, { - "codePostal": "65120", - "codeCommune": "65463", - "libelleAcheminement": "VIELLA", - "nomCommune": "VIELLA" + "codePostal": "70110", + "codeCommune": "70077", + "libelleAcheminement": "BOREY", + "nomCommune": "BOREY" }, { - "codePostal": "48250", - "codeCommune": "48027", - "libelleAcheminement": "MONT LOZERE ET GOULET", - "nomCommune": "MONT LOZERE ET GOULET" + "codePostal": "16130", + "codeCommune": "16359", + "libelleAcheminement": "SALLES D ANGLES", + "nomCommune": "SALLES D ANGLES" }, { - "codePostal": "39570", - "codeCommune": "39552", - "libelleAcheminement": "VERNANTOIS", - "nomCommune": "VERNANTOIS" + "codePostal": "70110", + "codeCommune": "70042", + "libelleAcheminement": "AUTREY LE VAY", + "nomCommune": "AUTREY LE VAY" }, { - "codePostal": "10340", - "codeCommune": "10009", - "libelleAcheminement": "ARRELLES", - "nomCommune": "ARRELLES" + "codePostal": "59240", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "65360", - "codeCommune": "65464", - "libelleAcheminement": "VIELLE ADOUR", - "nomCommune": "VIELLE ADOUR" + "codePostal": "60210", + "codeCommune": "60599", + "libelleAcheminement": "ST THIBAULT", + "nomCommune": "ST THIBAULT" }, { - "codePostal": "48500", - "codeCommune": "48034", - "libelleAcheminement": "LA CANOURGUE", - "nomCommune": "LA CANOURGUE" + "codePostal": "70500", + "codeCommune": "70078", + "libelleAcheminement": "BOUGEY", + "nomCommune": "BOUGEY" }, { - "codePostal": "39200", - "codeCommune": "39560", - "libelleAcheminement": "VILLARD ST SAUVEUR", - "nomCommune": "VILLARD ST SAUVEUR" + "codePostal": "16380", + "codeCommune": "16372", + "libelleAcheminement": "SOUFFRIGNAC", + "nomCommune": "SOUFFRIGNAC" }, { - "codePostal": "10220", - "codeCommune": "10014", - "libelleAcheminement": "ASSENCIERES", - "nomCommune": "ASSENCIERES" + "codePostal": "70000", + "codeCommune": "70047", + "libelleAcheminement": "BAIGNES", + "nomCommune": "BAIGNES" }, { - "codePostal": "65170", - "codeCommune": "65465", - "libelleAcheminement": "VIELLE AURE", - "nomCommune": "VIELLE AURE" + "codePostal": "59279", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "48500", - "codeCommune": "48034", - "libelleAcheminement": "LA CANOURGUE", - "nomCommune": "LA CANOURGUE" + "codePostal": "60240", + "codeCommune": "60614", + "libelleAcheminement": "SERANS", + "nomCommune": "SERANS" }, { - "codePostal": "39260", - "codeCommune": "39561", - "libelleAcheminement": "VILLARDS D HERIA", - "nomCommune": "VILLARDS D HERIA" + "codePostal": "70230", + "codeCommune": "70082", + "libelleAcheminement": "BOUHANS LES MONTBOZON", + "nomCommune": "BOUHANS LES MONTBOZON" }, { - "codePostal": "10220", - "codeCommune": "10019", - "libelleAcheminement": "VAL D AUZON", - "nomCommune": "VAL D AUZON" + "codePostal": "16260", + "codeCommune": "16377", + "libelleAcheminement": "LA TACHE", + "nomCommune": "LA TACHE" }, { - "codePostal": "66480", - "codeCommune": "66001", - "libelleAcheminement": "L ALBERE", - "nomCommune": "L ALBERE" + "codePostal": "70500", + "codeCommune": "70049", + "libelleAcheminement": "BARGES", + "nomCommune": "BARGES" }, { - "codePostal": "48600", - "codeCommune": "48038", - "libelleAcheminement": "BEL AIR VAL D ANCE", - "nomCommune": "BEL AIR VAL D ANCE" + "codePostal": "59430", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "39800", - "codeCommune": "39570", - "libelleAcheminement": "VILLERS LES BOIS", - "nomCommune": "VILLERS LES BOIS" + "codePostal": "60800", + "codeCommune": "60618", + "libelleAcheminement": "SERY MAGNEVAL", + "nomCommune": "SERY MAGNEVAL" }, { - "codePostal": "10130", - "codeCommune": "10024", - "libelleAcheminement": "AVREUIL", - "nomCommune": "AVREUIL" + "codePostal": "70800", + "codeCommune": "70083", + "libelleAcheminement": "BOULIGNEY", + "nomCommune": "BOULIGNEY" }, { - "codePostal": "66220", - "codeCommune": "66006", - "libelleAcheminement": "ANSIGNAN", - "nomCommune": "ANSIGNAN" + "codePostal": "16700", + "codeCommune": "16378", + "libelleAcheminement": "TAIZE AIZIE", + "nomCommune": "TAIZE AIZIE" }, { - "codePostal": "48310", - "codeCommune": "48044", - "libelleAcheminement": "CHAUCHAILLES", - "nomCommune": "CHAUCHAILLES" + "codePostal": "70210", + "codeCommune": "70051", + "libelleAcheminement": "LA BASSE VAIVRE", + "nomCommune": "LA BASSE VAIVRE" }, { - "codePostal": "39210", - "codeCommune": "39582", - "libelleAcheminement": "VOITEUR", - "nomCommune": "VOITEUR" + "codePostal": "59320", + "codeCommune": "59195", + "libelleAcheminement": "ENGLOS", + "nomCommune": "ENGLOS" }, { - "codePostal": "10600", - "codeCommune": "10030", - "libelleAcheminement": "BARBEREY ST SULPICE", - "nomCommune": "BARBEREY ST SULPICE" + "codePostal": "60400", + "codeCommune": "60625", + "libelleAcheminement": "SUZOY", + "nomCommune": "SUZOY" }, { - "codePostal": "66150", - "codeCommune": "66009", - "libelleAcheminement": "ARLES SUR TECH", - "nomCommune": "ARLES SUR TECH" + "codePostal": "70800", + "codeCommune": "70087", + "libelleAcheminement": "BOURGUIGNON LES CONFLANS", + "nomCommune": "BOURGUIGNON LES CONFLANS" }, { - "codePostal": "48140", - "codeCommune": "48046", - "libelleAcheminement": "CHAULHAC", - "nomCommune": "CHAULHAC" + "codePostal": "16560", + "codeCommune": "16383", + "libelleAcheminement": "TOURRIERS", + "nomCommune": "TOURRIERS" }, { - "codePostal": "40800", - "codeCommune": "40001", - "libelleAcheminement": "AIRE SUR L ADOUR", - "nomCommune": "AIRE SUR L ADOUR" + "codePostal": "70160", + "codeCommune": "70056", + "libelleAcheminement": "BAULAY", + "nomCommune": "BAULAY" }, { - "codePostal": "10400", - "codeCommune": "10031", - "libelleAcheminement": "BARBUISE", - "nomCommune": "BARBUISE" + "codePostal": "59710", + "codeCommune": "59197", + "libelleAcheminement": "ENNEVELIN", + "nomCommune": "ENNEVELIN" }, { - "codePostal": "66360", - "codeCommune": "66010", - "libelleAcheminement": "AYGUATEBIA TALAU", - "nomCommune": "AYGUATEBIA TALAU" + "codePostal": "60510", + "codeCommune": "60628", + "libelleAcheminement": "THERDONNE", + "nomCommune": "THERDONNE" }, { - "codePostal": "48190", - "codeCommune": "48053", - "libelleAcheminement": "CUBIERES", - "nomCommune": "CUBIERES" + "codePostal": "70300", + "codeCommune": "70098", + "libelleAcheminement": "BROTTE LES LUXEUIL", + "nomCommune": "BROTTE LES LUXEUIL" }, { - "codePostal": "40090", - "codeCommune": "40012", - "libelleAcheminement": "ARTASSENX", - "nomCommune": "ARTASSENX" + "codePostal": "16200", + "codeCommune": "16387", + "libelleAcheminement": "TRIAC LAUTRAIT", + "nomCommune": "TRIAC LAUTRAIT" }, { - "codePostal": "10200", - "codeCommune": "10032", - "libelleAcheminement": "BAROVILLE", - "nomCommune": "BAROVILLE" + "codePostal": "70150", + "codeCommune": "70057", + "libelleAcheminement": "BAY", + "nomCommune": "BAY" }, { - "codePostal": "66540", - "codeCommune": "66012", - "libelleAcheminement": "BAHO", - "nomCommune": "BAHO" + "codePostal": "59320", + "codeCommune": "59201", + "libelleAcheminement": "ERQUINGHEM LE SEC", + "nomCommune": "ERQUINGHEM LE SEC" }, { - "codePostal": "48400", - "codeCommune": "48061", - "libelleAcheminement": "FLORAC TROIS RIVIERES", - "nomCommune": "FLORAC TROIS RIVIERES" + "codePostal": "60380", + "codeCommune": "60629", + "libelleAcheminement": "THERINES", + "nomCommune": "THERINES" }, { - "codePostal": "40120", - "codeCommune": "40014", - "libelleAcheminement": "ARUE", - "nomCommune": "ARUE" + "codePostal": "70280", + "codeCommune": "70103", + "libelleAcheminement": "LA BRUYERE", + "nomCommune": "LA BRUYERE" }, { - "codePostal": "10800", - "codeCommune": "10049", - "libelleAcheminement": "LES BORDES AUMONT", - "nomCommune": "LES BORDES AUMONT" + "codePostal": "16730", + "codeCommune": "16388", + "libelleAcheminement": "TROIS PALIS", + "nomCommune": "TROIS PALIS" }, { - "codePostal": "66210", - "codeCommune": "66020", - "libelleAcheminement": "BOLQUERE", - "nomCommune": "BOLQUERE" + "codePostal": "70230", + "codeCommune": "70065", + "libelleAcheminement": "BESNANS", + "nomCommune": "BESNANS" }, { - "codePostal": "48100", - "codeCommune": "48068", - "libelleAcheminement": "GABRIAS", - "nomCommune": "GABRIAS" + "codePostal": "59124", + "codeCommune": "59205", + "libelleAcheminement": "ESCAUDAIN", + "nomCommune": "ESCAUDAIN" }, { - "codePostal": "40310", - "codeCommune": "40015", - "libelleAcheminement": "ARX", - "nomCommune": "ARX" + "codePostal": "60170", + "codeCommune": "60642", + "libelleAcheminement": "TRACY LE VAL", + "nomCommune": "TRACY LE VAL" }, { - "codePostal": "10140", - "codeCommune": "10050", - "libelleAcheminement": "BOSSANCOURT", - "nomCommune": "BOSSANCOURT" + "codePostal": "70500", + "codeCommune": "70114", + "libelleAcheminement": "CENDRECOURT", + "nomCommune": "CENDRECOURT" }, { - "codePostal": "66210", - "codeCommune": "66027", - "libelleAcheminement": "LA CABANASSE", - "nomCommune": "LA CABANASSE" + "codePostal": "16350", + "codeCommune": "16389", + "libelleAcheminement": "TURGON", + "nomCommune": "TURGON" }, { - "codePostal": "48100", - "codeCommune": "48072", - "libelleAcheminement": "GREZES", - "nomCommune": "GREZES" + "codePostal": "70310", + "codeCommune": "70071", + "libelleAcheminement": "BEULOTTE ST LAURENT", + "nomCommune": "BEULOTTE ST LAURENT" }, { - "codePostal": "40400", - "codeCommune": "40018", - "libelleAcheminement": "AUDON", - "nomCommune": "AUDON" + "codePostal": "59219", + "codeCommune": "59218", + "libelleAcheminement": "ETROEUNGT", + "nomCommune": "ETROEUNGT" }, { - "codePostal": "10450", - "codeCommune": "10060", - "libelleAcheminement": "BREVIANDES", - "nomCommune": "BREVIANDES" + "codePostal": "60590", + "codeCommune": "60644", + "libelleAcheminement": "TRIE CHATEAU", + "nomCommune": "TRIE CHATEAU" }, { - "codePostal": "66400", - "codeCommune": "66032", - "libelleAcheminement": "CALMEILLES", - "nomCommune": "CALMEILLES" + "codePostal": "70300", + "codeCommune": "70128", + "libelleAcheminement": "LA CHAPELLE LES LUXEUIL", + "nomCommune": "LA CHAPELLE LES LUXEUIL" }, { - "codePostal": "48120", - "codeCommune": "48079", - "libelleAcheminement": "LAJO", - "nomCommune": "LAJO" + "codePostal": "16320", + "codeCommune": "16394", + "libelleAcheminement": "VAUX LAVALETTE", + "nomCommune": "VAUX LAVALETTE" }, { - "codePostal": "40500", - "codeCommune": "40020", - "libelleAcheminement": "AURICE", - "nomCommune": "AURICE" + "codePostal": "70500", + "codeCommune": "70074", + "libelleAcheminement": "BLONDEFONTAINE", + "nomCommune": "BLONDEFONTAINE" }, { - "codePostal": "10240", - "codeCommune": "10065", - "libelleAcheminement": "BRILLECOURT", - "nomCommune": "BRILLECOURT" + "codePostal": "59155", + "codeCommune": "59220", + "libelleAcheminement": "FACHES THUMESNIL", + "nomCommune": "FACHES THUMESNIL" }, { - "codePostal": "66730", - "codeCommune": "66035", - "libelleAcheminement": "CAMPOUSSY", - "nomCommune": "CAMPOUSSY" + "codePostal": "60112", + "codeCommune": "60646", + "libelleAcheminement": "TROISSEREUX", + "nomCommune": "TROISSEREUX" }, { - "codePostal": "48270", - "codeCommune": "48087", - "libelleAcheminement": "PRINSUEJOLS MALBOUZON", - "nomCommune": "PRINSUEJOLS MALBOUZON" + "codePostal": "70100", + "codeCommune": "70132", + "libelleAcheminement": "CHARGEY LES GRAY", + "nomCommune": "CHARGEY LES GRAY" }, { - "codePostal": "40500", - "codeCommune": "40024", - "libelleAcheminement": "BANOS", - "nomCommune": "BANOS" + "codePostal": "16170", + "codeCommune": "16395", + "libelleAcheminement": "VAUX ROUILLAC", + "nomCommune": "VAUX ROUILLAC" }, { - "codePostal": "10110", - "codeCommune": "10069", - "libelleAcheminement": "BUXIERES SUR ARCE", - "nomCommune": "BUXIERES SUR ARCE" + "codePostal": "70500", + "codeCommune": "70086", + "libelleAcheminement": "BOURBEVELLE", + "nomCommune": "BOURBEVELLE" }, { - "codePostal": "66360", - "codeCommune": "66036", - "libelleAcheminement": "CANAVEILLES", - "nomCommune": "CANAVEILLES" + "codePostal": "59750", + "codeCommune": "59225", + "libelleAcheminement": "FEIGNIES", + "nomCommune": "FEIGNIES" }, { - "codePostal": "48210", - "codeCommune": "48094", - "libelleAcheminement": "MASSEGROS CAUSSES GORGES", - "nomCommune": "MASSEGROS CAUSSES GORGES" + "codePostal": "60120", + "codeCommune": "60648", + "libelleAcheminement": "TROUSSENCOURT", + "nomCommune": "TROUSSENCOURT" }, { - "codePostal": "40360", - "codeCommune": "40028", - "libelleAcheminement": "BASTENNES", - "nomCommune": "BASTENNES" + "codePostal": "70170", + "codeCommune": "70133", + "libelleAcheminement": "CHARGEY LES PORT", + "nomCommune": "CHARGEY LES PORT" }, { - "codePostal": "10500", - "codeCommune": "10072", - "libelleAcheminement": "LA CHAISE", - "nomCommune": "LA CHAISE" + "codePostal": "16110", + "codeCommune": "16406", + "libelleAcheminement": "MOULINS SUR TARDOIRE", + "nomCommune": "MOULINS SUR TARDOIRE" }, { - "codePostal": "66530", - "codeCommune": "66050", - "libelleAcheminement": "CLAIRA", - "nomCommune": "CLAIRA" + "codePostal": "70140", + "codeCommune": "70092", + "libelleAcheminement": "BRESILLEY", + "nomCommune": "BRESILLEY" }, { - "codePostal": "48150", - "codeCommune": "48096", - "libelleAcheminement": "MEYRUEIS", - "nomCommune": "MEYRUEIS" + "codePostal": "59169", + "codeCommune": "59228", + "libelleAcheminement": "FERIN", + "nomCommune": "FERIN" }, { - "codePostal": "40400", - "codeCommune": "40031", - "libelleAcheminement": "BEGAAR", - "nomCommune": "BEGAAR" + "codePostal": "60730", + "codeCommune": "60651", + "libelleAcheminement": "ULLY ST GEORGES", + "nomCommune": "ULLY ST GEORGES" }, { - "codePostal": "10200", - "codeCommune": "10076", - "libelleAcheminement": "CHAMPIGNOL LEZ MONDEVILLE", - "nomCommune": "CHAMPIGNOL LEZ MONDEVILLE" + "codePostal": "70120", + "codeCommune": "70135", + "libelleAcheminement": "CHARMES ST VALBERT", + "nomCommune": "CHARMES ST VALBERT" }, { - "codePostal": "66500", - "codeCommune": "66054", - "libelleAcheminement": "CONAT", - "nomCommune": "CONAT" + "codePostal": "16210", + "codeCommune": "16424", + "libelleAcheminement": "YVIERS", + "nomCommune": "YVIERS" }, { - "codePostal": "48100", - "codeCommune": "48099", - "libelleAcheminement": "BOURGS SUR COLAGNE", - "nomCommune": "BOURGS SUR COLAGNE" + "codePostal": "70500", + "codeCommune": "70106", + "libelleAcheminement": "BUFFIGNECOURT", + "nomCommune": "BUFFIGNECOURT" }, { - "codePostal": "40410", - "codeCommune": "40032", - "libelleAcheminement": "BELHADE", - "nomCommune": "BELHADE" + "codePostal": "59158", + "codeCommune": "59238", + "libelleAcheminement": "FLINES LES MORTAGNE", + "nomCommune": "FLINES LES MORTAGNE" }, { - "codePostal": "10600", - "codeCommune": "10081", - "libelleAcheminement": "LA CHAPELLE ST LUC", - "nomCommune": "LA CHAPELLE ST LUC" + "codePostal": "60130", + "codeCommune": "60653", + "libelleAcheminement": "VALESCOURT", + "nomCommune": "VALESCOURT" }, { - "codePostal": "66130", - "codeCommune": "66056", - "libelleAcheminement": "CORBERE LES CABANES", - "nomCommune": "CORBERE LES CABANES" + "codePostal": "70360", + "codeCommune": "70138", + "libelleAcheminement": "CHASSEY LES SCEY", + "nomCommune": "CHASSEY LES SCEY" }, { - "codePostal": "48100", - "codeCommune": "48099", - "libelleAcheminement": "BOURGS SUR COLAGNE", - "nomCommune": "BOURGS SUR COLAGNE" + "codePostal": "17500", + "codeCommune": "17002", + "libelleAcheminement": "AGUDELLE", + "nomCommune": "AGUDELLE" }, { - "codePostal": "40300", - "codeCommune": "40034", - "libelleAcheminement": "BELUS", - "nomCommune": "BELUS" + "codePostal": "70190", + "codeCommune": "70109", + "libelleAcheminement": "BUTHIERS", + "nomCommune": "BUTHIERS" }, { - "codePostal": "10150", - "codeCommune": "10084", - "libelleAcheminement": "CHARMONT SOUS BARBUISE", - "nomCommune": "CHARMONT SOUS BARBUISE" + "codePostal": "59148", + "codeCommune": "59239", + "libelleAcheminement": "FLINES LEZ RACHES", + "nomCommune": "FLINES LEZ RACHES" }, { - "codePostal": "66760", - "codeCommune": "66062", - "libelleAcheminement": "DORRES", - "nomCommune": "DORRES" + "codePostal": "60117", + "codeCommune": "60661", + "libelleAcheminement": "VAUMOISE", + "nomCommune": "VAUMOISE" }, { - "codePostal": "48300", - "codeCommune": "48112", - "libelleAcheminement": "PIERREFICHE", - "nomCommune": "PIERREFICHE" + "codePostal": "70190", + "codeCommune": "70145", + "libelleAcheminement": "CHAUX LA LOTIERE", + "nomCommune": "CHAUX LA LOTIERE" }, { - "codePostal": "40390", - "codeCommune": "40044", - "libelleAcheminement": "BIAUDOS", - "nomCommune": "BIAUDOS" + "codePostal": "17290", + "codeCommune": "17003", + "libelleAcheminement": "AIGREFEUILLE D AUNIS", + "nomCommune": "AIGREFEUILLE D AUNIS" }, { - "codePostal": "10150", - "codeCommune": "10084", - "libelleAcheminement": "CHARMONT SOUS BARBUISE", - "nomCommune": "CHARMONT SOUS BARBUISE" + "codePostal": "70240", + "codeCommune": "70111", + "libelleAcheminement": "CALMOUTIER", + "nomCommune": "CALMOUTIER" }, { - "codePostal": "66760", - "codeCommune": "66066", - "libelleAcheminement": "ENVEITG", - "nomCommune": "ENVEITG" + "codePostal": "59219", + "codeCommune": "59241", + "libelleAcheminement": "FLOYON", + "nomCommune": "FLOYON" }, { - "codePostal": "48260", - "codeCommune": "48123", - "libelleAcheminement": "RECOULES D AUBRAC", - "nomCommune": "RECOULES D AUBRAC" + "codePostal": "60440", + "codeCommune": "60671", + "libelleAcheminement": "VERSIGNY", + "nomCommune": "VERSIGNY" }, { - "codePostal": "40600", - "codeCommune": "40046", - "libelleAcheminement": "BISCARROSSE", - "nomCommune": "BISCARROSSE" + "codePostal": "70400", + "codeCommune": "70147", + "libelleAcheminement": "CHAVANNE", + "nomCommune": "CHAVANNE" }, { - "codePostal": "10210", - "codeCommune": "10087", - "libelleAcheminement": "CHASEREY", - "nomCommune": "CHASEREY" + "codePostal": "17150", + "codeCommune": "17005", + "libelleAcheminement": "ALLAS BOCAGE", + "nomCommune": "ALLAS BOCAGE" }, { - "codePostal": "66720", - "codeCommune": "66092", - "libelleAcheminement": "LANSAC", - "nomCommune": "LANSAC" + "codePostal": "70000", + "codeCommune": "70115", + "libelleAcheminement": "CERRE LES NOROY", + "nomCommune": "CERRE LES NOROY" }, { - "codePostal": "48700", - "codeCommune": "48126", - "libelleAcheminement": "LACHAMP RIBENNES", - "nomCommune": "LACHAMP RIBENNES" + "codePostal": "59249", + "codeCommune": "59257", + "libelleAcheminement": "FROMELLES", + "nomCommune": "FROMELLES" }, { - "codePostal": "40420", - "codeCommune": "40056", - "libelleAcheminement": "BROCAS", - "nomCommune": "BROCAS" + "codePostal": "60117", + "codeCommune": "60672", + "libelleAcheminement": "VEZ", + "nomCommune": "VEZ" }, { - "codePostal": "10110", - "codeCommune": "10092", - "libelleAcheminement": "CHAUFFOUR LES BAILLY", - "nomCommune": "CHAUFFOUR LES BAILLY" + "codePostal": "70150", + "codeCommune": "70150", + "libelleAcheminement": "CHENEVREY ET MOROGNE", + "nomCommune": "CHENEVREY ET MOROGNE" }, { - "codePostal": "66740", - "codeCommune": "66093", - "libelleAcheminement": "LAROQUE DES ALBERES", - "nomCommune": "LAROQUE DES ALBERES" + "codePostal": "17500", + "codeCommune": "17006", + "libelleAcheminement": "ALLAS CHAMPAGNE", + "nomCommune": "ALLAS CHAMPAGNE" }, { - "codePostal": "48700", - "codeCommune": "48127", - "libelleAcheminement": "MONTS DE RANDON", - "nomCommune": "MONTS DE RANDON" + "codePostal": "70400", + "codeCommune": "70116", + "libelleAcheminement": "CHAGEY", + "nomCommune": "CHAGEY" }, { - "codePostal": "40430", - "codeCommune": "40060", - "libelleAcheminement": "CALLEN", - "nomCommune": "CALLEN" + "codePostal": "59144", + "codeCommune": "59265", + "libelleAcheminement": "GOMMEGNIES", + "nomCommune": "GOMMEGNIES" }, { - "codePostal": "10330", - "codeCommune": "10094", - "libelleAcheminement": "CHAVANGES", - "nomCommune": "CHAVANGES" + "codePostal": "60175", + "codeCommune": "60678", + "libelleAcheminement": "VILLENEUVE LES SABLONS", + "nomCommune": "VILLENEUVE LES SABLONS" }, { - "codePostal": "66720", - "codeCommune": "66096", - "libelleAcheminement": "LATOUR DE FRANCE", - "nomCommune": "LATOUR DE FRANCE" + "codePostal": "70800", + "codeCommune": "70168", + "libelleAcheminement": "CONFLANS SUR LANTERNE", + "nomCommune": "CONFLANS SUR LANTERNE" }, { - "codePostal": "48400", - "codeCommune": "48130", - "libelleAcheminement": "ROUSSES", - "nomCommune": "ROUSSES" + "codePostal": "17380", + "codeCommune": "17012", + "libelleAcheminement": "ANNEZAY", + "nomCommune": "ANNEZAY" }, { - "codePostal": "40400", - "codeCommune": "40067", - "libelleAcheminement": "CARCEN PONSON", - "nomCommune": "CARCEN PONSON" + "codePostal": "70190", + "codeCommune": "70118", + "libelleAcheminement": "CHAMBORNAY LES BELLEVAUX", + "nomCommune": "CHAMBORNAY LES BELLEVAUX" }, { - "codePostal": "10190", - "codeCommune": "10096", - "libelleAcheminement": "CHENNEGY", - "nomCommune": "CHENNEGY" + "codePostal": "59231", + "codeCommune": "59267", + "libelleAcheminement": "GONNELIEU", + "nomCommune": "GONNELIEU" }, { - "codePostal": "66170", - "codeCommune": "66108", - "libelleAcheminement": "MILLAS", - "nomCommune": "MILLAS" + "codePostal": "60810", + "codeCommune": "60682", + "libelleAcheminement": "VILLERS ST FRAMBOURG OGNON", + "nomCommune": "VILLERS ST FRAMBOURG OGNON" }, { - "codePostal": "48120", - "codeCommune": "48132", - "libelleAcheminement": "ST ALBAN SUR LIMAGNOLE", - "nomCommune": "ST ALBAN SUR LIMAGNOLE" + "codePostal": "70300", + "codeCommune": "70172", + "libelleAcheminement": "LA CORBIERE", + "nomCommune": "LA CORBIERE" }, { - "codePostal": "40700", - "codeCommune": "40079", - "libelleAcheminement": "CAZALIS", - "nomCommune": "CAZALIS" + "codePostal": "17590", + "codeCommune": "17019", + "libelleAcheminement": "ARS EN RE", + "nomCommune": "ARS EN RE" }, { - "codePostal": "10130", - "codeCommune": "10107", - "libelleAcheminement": "COURSAN EN OTHE", - "nomCommune": "COURSAN EN OTHE" + "codePostal": "70600", + "codeCommune": "70122", + "libelleAcheminement": "CHAMPLITTE", + "nomCommune": "CHAMPLITTE" }, { - "codePostal": "66300", - "codeCommune": "66112", - "libelleAcheminement": "MONTAURIOL", - "nomCommune": "MONTAURIOL" + "codePostal": "59231", + "codeCommune": "59269", + "libelleAcheminement": "GOUZEAUCOURT", + "nomCommune": "GOUZEAUCOURT" }, { - "codePostal": "48240", - "codeCommune": "48136", - "libelleAcheminement": "ST ANDRE DE LANCIZE", - "nomCommune": "ST ANDRE DE LANCIZE" + "codePostal": "60620", + "codeCommune": "60683", + "libelleAcheminement": "VILLERS ST GENEST", + "nomCommune": "VILLERS ST GENEST" }, { - "codePostal": "40320", - "codeCommune": "40082", - "libelleAcheminement": "CLASSUN", - "nomCommune": "CLASSUN" + "codePostal": "70200", + "codeCommune": "70178", + "libelleAcheminement": "LA COTE", + "nomCommune": "LA COTE" }, { - "codePostal": "10130", - "codeCommune": "10108", - "libelleAcheminement": "COURTAOULT", - "nomCommune": "COURTAOULT" + "codePostal": "17470", + "codeCommune": "17024", + "libelleAcheminement": "AULNAY", + "nomCommune": "AULNAY" }, { - "codePostal": "66740", - "codeCommune": "66115", - "libelleAcheminement": "MONTESQUIEU DES ALBERES", - "nomCommune": "MONTESQUIEU DES ALBERES" + "codePostal": "70360", + "codeCommune": "70127", + "libelleAcheminement": "CHANTES", + "nomCommune": "CHANTES" }, { - "codePostal": "48000", - "codeCommune": "48137", - "libelleAcheminement": "ST BAUZILE", - "nomCommune": "ST BAUZILE" + "codePostal": "59151", + "codeCommune": "59280", + "libelleAcheminement": "HAMEL", + "nomCommune": "HAMEL" }, { - "codePostal": "40500", - "codeCommune": "40086", - "libelleAcheminement": "COUDURES", - "nomCommune": "COUDURES" + "codePostal": "60340", + "codeCommune": "60686", + "libelleAcheminement": "VILLERS SOUS ST LEU", + "nomCommune": "VILLERS SOUS ST LEU" }, { - "codePostal": "10200", - "codeCommune": "10113", - "libelleAcheminement": "COUVIGNON", - "nomCommune": "COUVIGNON" + "codePostal": "70700", + "codeCommune": "70192", + "libelleAcheminement": "CUGNEY", + "nomCommune": "CUGNEY" }, { - "codePostal": "66360", - "codeCommune": "66123", - "libelleAcheminement": "NYER", - "nomCommune": "NYER" + "codePostal": "17770", + "codeCommune": "17025", + "libelleAcheminement": "AUMAGNE", + "nomCommune": "AUMAGNE" }, { - "codePostal": "48100", - "codeCommune": "48138", - "libelleAcheminement": "ST BONNET DE CHIRAC", - "nomCommune": "ST BONNET DE CHIRAC" + "codePostal": "70170", + "codeCommune": "70146", + "libelleAcheminement": "CHAUX LES PORT", + "nomCommune": "CHAUX LES PORT" }, { - "codePostal": "40500", - "codeCommune": "40092", - "libelleAcheminement": "DUMES", - "nomCommune": "DUMES" + "codePostal": "59330", + "codeCommune": "59291", + "libelleAcheminement": "HAUTMONT", + "nomCommune": "HAUTMONT" }, { - "codePostal": "10200", - "codeCommune": "10113", - "libelleAcheminement": "COUVIGNON", - "nomCommune": "COUVIGNON" + "codePostal": "60650", + "codeCommune": "60687", + "libelleAcheminement": "VILLERS SUR AUCHY", + "nomCommune": "VILLERS SUR AUCHY" }, { - "codePostal": "66120", - "codeCommune": "66124", - "libelleAcheminement": "FONT ROMEU ODEILLO VIA", - "nomCommune": "FONT ROMEU ODEILLO VIA" + "codePostal": "70200", + "codeCommune": "70195", + "libelleAcheminement": "DAMBENOIT LES COLOMBE", + "nomCommune": "DAMBENOIT LES COLOMBE" }, { - "codePostal": "48700", - "codeCommune": "48145", - "libelleAcheminement": "ST DENIS EN MARGERIDE", - "nomCommune": "ST DENIS EN MARGERIDE" + "codePostal": "17600", + "codeCommune": "17030", + "libelleAcheminement": "BALANZAC", + "nomCommune": "BALANZAC" }, { - "codePostal": "40290", - "codeCommune": "40095", - "libelleAcheminement": "ESTIBEAUX", - "nomCommune": "ESTIBEAUX" + "codePostal": "70360", + "codeCommune": "70148", + "libelleAcheminement": "CHEMILLY", + "nomCommune": "CHEMILLY" }, { - "codePostal": "10150", - "codeCommune": "10115", - "libelleAcheminement": "CRENEY PRES TROYES", - "nomCommune": "CRENEY PRES TROYES" + "codePostal": "59147", + "codeCommune": "59304", + "libelleAcheminement": "HERRIN", + "nomCommune": "HERRIN" }, { - "codePostal": "66600", - "codeCommune": "66127", - "libelleAcheminement": "OPOUL PERILLOS", - "nomCommune": "OPOUL PERILLOS" + "codePostal": "60860", + "codeCommune": "60688", + "libelleAcheminement": "VILLERS SUR BONNIERES", + "nomCommune": "VILLERS SUR BONNIERES" }, { - "codePostal": "48320", - "codeCommune": "48146", - "libelleAcheminement": "GORGES DU TARN CAUSSES", - "nomCommune": "GORGES DU TARN CAUSSES" + "codePostal": "70230", + "codeCommune": "70197", + "libelleAcheminement": "DAMPIERRE SUR LINOTTE", + "nomCommune": "DAMPIERRE SUR LINOTTE" }, { - "codePostal": "40420", - "codeCommune": "40105", - "libelleAcheminement": "GAREIN", - "nomCommune": "GAREIN" + "codePostal": "17800", + "codeCommune": "17047", + "libelleAcheminement": "BIRON", + "nomCommune": "BIRON" }, { - "codePostal": "10500", - "codeCommune": "10117", - "libelleAcheminement": "CRESPY LE NEUF", - "nomCommune": "CRESPY LE NEUF" + "codePostal": "70300", + "codeCommune": "70155", + "libelleAcheminement": "CITERS", + "nomCommune": "CITERS" }, { - "codePostal": "66340", - "codeCommune": "66130", - "libelleAcheminement": "OSSEJA", - "nomCommune": "OSSEJA" + "codePostal": "59143", + "codeCommune": "59307", + "libelleAcheminement": "HOLQUE", + "nomCommune": "HOLQUE" }, { - "codePostal": "48170", - "codeCommune": "48151", - "libelleAcheminement": "ST FREZAL D ALBUGES", - "nomCommune": "ST FREZAL D ALBUGES" + "codePostal": "60150", + "codeCommune": "60689", + "libelleAcheminement": "VILLERS SUR COUDUN", + "nomCommune": "VILLERS SUR COUDUN" }, { - "codePostal": "40380", - "codeCommune": "40112", - "libelleAcheminement": "GIBRET", - "nomCommune": "GIBRET" + "codePostal": "70180", + "codeCommune": "70198", + "libelleAcheminement": "DAMPIERRE SUR SALON", + "nomCommune": "DAMPIERRE SUR SALON" }, { - "codePostal": "10500", - "codeCommune": "10123", - "libelleAcheminement": "DIENVILLE", - "nomCommune": "DIENVILLE" + "codePostal": "17160", + "codeCommune": "17048", + "libelleAcheminement": "BLANZAC LES MATHA", + "nomCommune": "BLANZAC LES MATHA" }, { - "codePostal": "66100", - "codeCommune": "66136", - "libelleAcheminement": "PERPIGNAN", - "nomCommune": "PERPIGNAN" + "codePostal": "70200", + "codeCommune": "70157", + "libelleAcheminement": "CLAIREGOUTTE", + "nomCommune": "CLAIREGOUTTE" }, { - "codePostal": "48240", - "codeCommune": "48152", - "libelleAcheminement": "VENTALON EN CEVENNES", - "nomCommune": "VENTALON EN CEVENNES" + "codePostal": "59171", + "codeCommune": "59314", + "libelleAcheminement": "HORNAING", + "nomCommune": "HORNAING" }, { - "codePostal": "40990", - "codeCommune": "40114", - "libelleAcheminement": "GOURBERA", - "nomCommune": "GOURBERA" + "codePostal": "60120", + "codeCommune": "60692", + "libelleAcheminement": "VILLERS VICOMTE", + "nomCommune": "VILLERS VICOMTE" }, { - "codePostal": "10700", - "codeCommune": "10130", - "libelleAcheminement": "DOSNON", - "nomCommune": "DOSNON" + "codePostal": "70180", + "codeCommune": "70201", + "libelleAcheminement": "DELAIN", + "nomCommune": "DELAIN" }, { - "codePostal": "66600", - "codeCommune": "66138", - "libelleAcheminement": "PEYRESTORTES", - "nomCommune": "PEYRESTORTES" + "codePostal": "17240", + "codeCommune": "17050", + "libelleAcheminement": "BOIS", + "nomCommune": "BOIS" }, { - "codePostal": "48370", - "codeCommune": "48155", - "libelleAcheminement": "ST GERMAIN DE CALBERTE", - "nomCommune": "ST GERMAIN DE CALBERTE" + "codePostal": "70400", + "codeCommune": "70160", + "libelleAcheminement": "COISEVAUX", + "nomCommune": "COISEVAUX" }, { - "codePostal": "40250", - "codeCommune": "40121", - "libelleAcheminement": "HAURIET", - "nomCommune": "HAURIET" + "codePostal": "59116", + "codeCommune": "59317", + "libelleAcheminement": "HOUPLINES", + "nomCommune": "HOUPLINES" }, { - "codePostal": "10170", - "codeCommune": "10132", - "libelleAcheminement": "DROUPT STE MARIE", - "nomCommune": "DROUPT STE MARIE" + "codePostal": "60112", + "codeCommune": "60697", + "libelleAcheminement": "VROCOURT", + "nomCommune": "VROCOURT" }, { - "codePostal": "66210", - "codeCommune": "66142", - "libelleAcheminement": "PLANES", - "nomCommune": "PLANES" + "codePostal": "70000", + "codeCommune": "70208", + "libelleAcheminement": "ECHENOZ LE SEC", + "nomCommune": "ECHENOZ LE SEC" }, { - "codePostal": "48160", - "codeCommune": "48158", - "libelleAcheminement": "ST HILAIRE DE LAVIT", - "nomCommune": "ST HILAIRE DE LAVIT" + "codePostal": "17360", + "codeCommune": "17055", + "libelleAcheminement": "BOSCAMNANT", + "nomCommune": "BOSCAMNANT" }, { - "codePostal": "40180", - "codeCommune": "40126", - "libelleAcheminement": "HINX", - "nomCommune": "HINX" + "codePostal": "70000", + "codeCommune": "70166", + "libelleAcheminement": "COMBERJON", + "nomCommune": "COMBERJON" }, { - "codePostal": "10200", - "codeCommune": "10137", - "libelleAcheminement": "ENGENTE", - "nomCommune": "ENGENTE" + "codePostal": "59144", + "codeCommune": "59323", + "libelleAcheminement": "JENLAIN", + "nomCommune": "JENLAIN" }, { - "codePostal": "66760", - "codeCommune": "66147", - "libelleAcheminement": "PORTE PUYMORENS", - "nomCommune": "PORTE PUYMORENS" + "codePostal": "60380", + "codeCommune": "60699", + "libelleAcheminement": "WAMBEZ", + "nomCommune": "WAMBEZ" }, { - "codePostal": "48310", - "codeCommune": "48161", - "libelleAcheminement": "ST JUERY", - "nomCommune": "ST JUERY" + "codePostal": "70160", + "codeCommune": "70214", + "libelleAcheminement": "EQUEVILLEY", + "nomCommune": "EQUEVILLEY" }, { - "codePostal": "40550", - "codeCommune": "40150", - "libelleAcheminement": "LEON", - "nomCommune": "LEON" + "codePostal": "17540", + "codeCommune": "17057", + "libelleAcheminement": "BOUHET", + "nomCommune": "BOUHET" }, { - "codePostal": "10130", - "codeCommune": "10140", - "libelleAcheminement": "ERVY LE CHATEL", - "nomCommune": "ERVY LE CHATEL" + "codePostal": "70170", + "codeCommune": "70167", + "libelleAcheminement": "CONFLANDEY", + "nomCommune": "CONFLANDEY" }, { - "codePostal": "66660", - "codeCommune": "66148", - "libelleAcheminement": "PORT VENDRES", - "nomCommune": "PORT VENDRES" + "codePostal": "59130", + "codeCommune": "59328", + "libelleAcheminement": "LAMBERSART", + "nomCommune": "LAMBERSART" }, { - "codePostal": "48600", - "codeCommune": "48174", - "libelleAcheminement": "ST PAUL LE FROID", - "nomCommune": "ST PAUL LE FROID" + "codePostal": "60420", + "codeCommune": "60702", + "libelleAcheminement": "WELLES PERENNES", + "nomCommune": "WELLES PERENNES" }, { - "codePostal": "40380", - "codeCommune": "40159", - "libelleAcheminement": "LOUER", - "nomCommune": "LOUER" + "codePostal": "70150", + "codeCommune": "70224", + "libelleAcheminement": "ETUZ", + "nomCommune": "ETUZ" }, { - "codePostal": "10190", - "codeCommune": "10142", - "libelleAcheminement": "ESTISSAC", - "nomCommune": "ESTISSAC" + "codePostal": "17490", + "codeCommune": "17062", + "libelleAcheminement": "BRESDON", + "nomCommune": "BRESDON" }, { - "codePostal": "66230", - "codeCommune": "66150", - "libelleAcheminement": "PRATS DE MOLLO LA PRESTE", - "nomCommune": "PRATS DE MOLLO LA PRESTE" + "codePostal": "70120", + "codeCommune": "70169", + "libelleAcheminement": "CONFRACOURT", + "nomCommune": "CONFRACOURT" }, { - "codePostal": "48240", - "codeCommune": "48178", - "libelleAcheminement": "ST PRIVAT DE VALLONGUE", - "nomCommune": "ST PRIVAT DE VALLONGUE" + "codePostal": "59310", + "codeCommune": "59330", + "libelleAcheminement": "LANDAS", + "nomCommune": "LANDAS" }, { - "codePostal": "40120", - "codeCommune": "40169", - "libelleAcheminement": "MAILLAS", - "nomCommune": "MAILLAS" + "codePostal": "60000", + "codeCommune": "60703", + "libelleAcheminement": "AUX MARAIS", + "nomCommune": "AUX MARAIS" }, { - "codePostal": "10170", - "codeCommune": "10144", - "libelleAcheminement": "ETRELLES SUR AUBE", - "nomCommune": "ETRELLES SUR AUBE" + "codePostal": "70120", + "codeCommune": "70230", + "libelleAcheminement": "FEDRY", + "nomCommune": "FEDRY" }, { - "codePostal": "66500", - "codeCommune": "66161", - "libelleAcheminement": "RIA SIRACH", - "nomCommune": "RIA SIRACH" + "codePostal": "17120", + "codeCommune": "17068", + "libelleAcheminement": "BRIE SOUS MORTAGNE", + "nomCommune": "BRIE SOUS MORTAGNE" }, { - "codePostal": "48500", - "codeCommune": "48181", - "libelleAcheminement": "ST SATURNIN", - "nomCommune": "ST SATURNIN" + "codePostal": "70120", + "codeCommune": "70175", + "libelleAcheminement": "CORNOT", + "nomCommune": "CORNOT" }, { - "codePostal": "40700", - "codeCommune": "40172", - "libelleAcheminement": "MANT", - "nomCommune": "MANT" + "codePostal": "59219", + "codeCommune": "59333", + "libelleAcheminement": "LAROUILLIES", + "nomCommune": "LAROUILLIES" }, { - "codePostal": "10290", - "codeCommune": "10145", - "libelleAcheminement": "FAUX VILLECERF", - "nomCommune": "FAUX VILLECERF" + "codePostal": "61570", + "codeCommune": "61002", + "libelleAcheminement": "ALMENECHES", + "nomCommune": "ALMENECHES" }, { - "codePostal": "66600", - "codeCommune": "66164", - "libelleAcheminement": "RIVESALTES", - "nomCommune": "RIVESALTES" + "codePostal": "70160", + "codeCommune": "70236", + "libelleAcheminement": "FLEUREY LES FAVERNEY", + "nomCommune": "FLEUREY LES FAVERNEY" }, { - "codePostal": "48400", - "codeCommune": "48193", - "libelleAcheminement": "VEBRON", - "nomCommune": "VEBRON" + "codePostal": "17800", + "codeCommune": "17069", + "libelleAcheminement": "BRIVES SUR CHARENTE", + "nomCommune": "BRIVES SUR CHARENTE" }, { - "codePostal": "40320", - "codeCommune": "40174", - "libelleAcheminement": "MAURIES", - "nomCommune": "MAURIES" + "codePostal": "70230", + "codeCommune": "70197", + "libelleAcheminement": "DAMPIERRE SUR LINOTTE", + "nomCommune": "DAMPIERRE SUR LINOTTE" }, { - "codePostal": "10190", - "codeCommune": "10156", - "libelleAcheminement": "FONTVANNES", - "nomCommune": "FONTVANNES" + "codePostal": "59810", + "codeCommune": "59343", + "libelleAcheminement": "LESQUIN", + "nomCommune": "LESQUIN" }, { - "codePostal": "66320", - "codeCommune": "66165", - "libelleAcheminement": "RODES", - "nomCommune": "RODES" + "codePostal": "61270", + "codeCommune": "61008", + "libelleAcheminement": "AUBE", + "nomCommune": "AUBE" }, { - "codePostal": "49650", - "codeCommune": "49002", - "libelleAcheminement": "ALLONNES", - "nomCommune": "ALLONNES" + "codePostal": "70800", + "codeCommune": "70238", + "libelleAcheminement": "FLEUREY LES ST LOUP", + "nomCommune": "FLEUREY LES ST LOUP" }, { - "codePostal": "40660", - "codeCommune": "40181", - "libelleAcheminement": "MESSANGES", - "nomCommune": "MESSANGES" + "codePostal": "17100", + "codeCommune": "17073", + "libelleAcheminement": "BUSSAC SUR CHARENTE", + "nomCommune": "BUSSAC SUR CHARENTE" }, { - "codePostal": "10100", - "codeCommune": "10164", - "libelleAcheminement": "GELANNES", - "nomCommune": "GELANNES" + "codePostal": "70000", + "codeCommune": "70199", + "libelleAcheminement": "DAMPVALLEY LES COLOMBE", + "nomCommune": "DAMPVALLEY LES COLOMBE" }, { - "codePostal": "66800", - "codeCommune": "66167", - "libelleAcheminement": "SAILLAGOUSE", - "nomCommune": "SAILLAGOUSE" + "codePostal": "59000", + "codeCommune": "59350", + "libelleAcheminement": "LILLE", + "nomCommune": "LILLE" }, { - "codePostal": "49000", - "codeCommune": "49007", - "libelleAcheminement": "ANGERS", - "nomCommune": "ANGERS" + "codePostal": "61120", + "codeCommune": "61010", + "libelleAcheminement": "AUBRY LE PANTHOU", + "nomCommune": "AUBRY LE PANTHOU" }, { - "codePostal": "40700", - "codeCommune": "40189", - "libelleAcheminement": "MONGET", - "nomCommune": "MONGET" + "codePostal": "70130", + "codeCommune": "70257", + "libelleAcheminement": "FRETIGNEY ET VELLOREILLE", + "nomCommune": "FRETIGNEY ET VELLOREILLE" }, { - "codePostal": "10170", - "codeCommune": "10166", - "libelleAcheminement": "LES GRANDES CHAPELLES", - "nomCommune": "LES GRANDES CHAPELLES" + "codePostal": "17620", + "codeCommune": "17083", + "libelleAcheminement": "CHAMPAGNE", + "nomCommune": "CHAMPAGNE" }, { - "codePostal": "66220", - "codeCommune": "66169", - "libelleAcheminement": "ST ARNAC", - "nomCommune": "ST ARNAC" + "codePostal": "70270", + "codeCommune": "70210", + "libelleAcheminement": "ECROMAGNY", + "nomCommune": "ECROMAGNY" }, { - "codePostal": "49440", - "codeCommune": "49008", - "libelleAcheminement": "ANGRIE", - "nomCommune": "ANGRIE" + "codePostal": "59260", + "codeCommune": "59350", + "libelleAcheminement": "LILLE", + "nomCommune": "LILLE" }, { - "codePostal": "40500", - "codeCommune": "40191", - "libelleAcheminement": "MONTAUT", - "nomCommune": "MONTAUT" + "codePostal": "61240", + "codeCommune": "61017", + "libelleAcheminement": "LES AUTHIEUX DU PUITS", + "nomCommune": "LES AUTHIEUX DU PUITS" }, { - "codePostal": "10700", - "codeCommune": "10172", - "libelleAcheminement": "HERBISSE", - "nomCommune": "HERBISSE" + "codePostal": "70200", + "codeCommune": "70259", + "libelleAcheminement": "FROIDETERRE", + "nomCommune": "FROIDETERRE" }, { - "codePostal": "66300", - "codeCommune": "66170", - "libelleAcheminement": "STE COLOMBE DE LA COMMANDERIE", - "nomCommune": "STE COLOMBE DE LA COMMANDERIE" + "codePostal": "17380", + "codeCommune": "17087", + "libelleAcheminement": "CHANTEMERLE SUR LA SOIE", + "nomCommune": "CHANTEMERLE SUR LA SOIE" }, { - "codePostal": "49240", - "codeCommune": "49015", - "libelleAcheminement": "AVRILLE", - "nomCommune": "AVRILLE" + "codePostal": "70600", + "codeCommune": "70211", + "libelleAcheminement": "ECUELLE", + "nomCommune": "ECUELLE" }, { - "codePostal": "40500", - "codeCommune": "40195", - "libelleAcheminement": "MONTGAILLARD", - "nomCommune": "MONTGAILLARD" + "codePostal": "59330", + "codeCommune": "59351", + "libelleAcheminement": "LIMONT FONTAINE", + "nomCommune": "LIMONT FONTAINE" }, { - "codePostal": "10800", - "codeCommune": "10173", - "libelleAcheminement": "ISLE AUMONT", - "nomCommune": "ISLE AUMONT" + "codePostal": "61470", + "codeCommune": "61018", + "libelleAcheminement": "AVERNES ST GOURGON", + "nomCommune": "AVERNES ST GOURGON" }, { - "codePostal": "66300", - "codeCommune": "66177", - "libelleAcheminement": "ST JEAN LASSEILLE", - "nomCommune": "ST JEAN LASSEILLE" + "codePostal": "70000", + "codeCommune": "70261", + "libelleAcheminement": "FROTEY LES VESOUL", + "nomCommune": "FROTEY LES VESOUL" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "17480", + "codeCommune": "17093", + "libelleAcheminement": "LE CHATEAU D OLERON", + "nomCommune": "LE CHATEAU D OLERON" }, { - "codePostal": "40110", - "codeCommune": "40197", - "libelleAcheminement": "MORCENX LA NOUVELLE", - "nomCommune": "MORCENX LA NOUVELLE" + "codePostal": "70400", + "codeCommune": "70215", + "libelleAcheminement": "ERREVET", + "nomCommune": "ERREVET" }, { - "codePostal": "10240", - "codeCommune": "10174", - "libelleAcheminement": "ISLE AUBIGNY", - "nomCommune": "ISLE AUBIGNY" + "codePostal": "59570", + "codeCommune": "59357", + "libelleAcheminement": "LA LONGUEVILLE", + "nomCommune": "LA LONGUEVILLE" }, { - "codePostal": "66110", - "codeCommune": "66183", - "libelleAcheminement": "ST MARSAL", - "nomCommune": "ST MARSAL" + "codePostal": "61700", + "codeCommune": "61021", + "libelleAcheminement": "AVRILLY", + "nomCommune": "AVRILLY" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "70500", + "codeCommune": "70267", + "libelleAcheminement": "GEVIGNEY ET MERCEY", + "nomCommune": "GEVIGNEY ET MERCEY" }, { - "codePostal": "40110", - "codeCommune": "40197", - "libelleAcheminement": "MORCENX LA NOUVELLE", - "nomCommune": "MORCENX LA NOUVELLE" + "codePostal": "17210", + "codeCommune": "17095", + "libelleAcheminement": "CHATENET", + "nomCommune": "CHATENET" }, { - "codePostal": "10330", - "codeCommune": "10175", - "libelleAcheminement": "JASSEINES", - "nomCommune": "JASSEINES" + "codePostal": "70300", + "codeCommune": "70216", + "libelleAcheminement": "ESBOZ BREST", + "nomCommune": "ESBOZ BREST" }, { - "codePostal": "66210", - "codeCommune": "66192", - "libelleAcheminement": "SAUTO", - "nomCommune": "SAUTO" + "codePostal": "59279", + "codeCommune": "59359", + "libelleAcheminement": "LOON PLAGE", + "nomCommune": "LOON PLAGE" }, { - "codePostal": "49750", - "codeCommune": "49022", - "libelleAcheminement": "BEAULIEU SUR LAYON", - "nomCommune": "BEAULIEU SUR LAYON" + "codePostal": "61600", + "codeCommune": "61035", + "libelleAcheminement": "BEAUVAIN", + "nomCommune": "BEAUVAIN" }, { - "codePostal": "40290", - "codeCommune": "40199", - "libelleAcheminement": "MOUSCARDES", - "nomCommune": "MOUSCARDES" + "codePostal": "70700", + "codeCommune": "70268", + "libelleAcheminement": "GEZIER ET FONTENELAY", + "nomCommune": "GEZIER ET FONTENELAY" }, { - "codePostal": "10320", - "codeCommune": "10179", - "libelleAcheminement": "JEUGNY", - "nomCommune": "JEUGNY" + "codePostal": "17130", + "codeCommune": "17096", + "libelleAcheminement": "CHAUNAC", + "nomCommune": "CHAUNAC" }, { - "codePostal": "66360", - "codeCommune": "66197", - "libelleAcheminement": "SOUANYAS", - "nomCommune": "SOUANYAS" + "codePostal": "70100", + "codeCommune": "70218", + "libelleAcheminement": "ESMOULINS", + "nomCommune": "ESMOULINS" }, { - "codePostal": "49450", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "59120", + "codeCommune": "59360", + "libelleAcheminement": "LOOS", + "nomCommune": "LOOS" }, { - "codePostal": "40250", - "codeCommune": "40204", - "libelleAcheminement": "NERBIS", - "nomCommune": "NERBIS" + "codePostal": "61110", + "codeCommune": "61050", + "libelleAcheminement": "COUR MAUGIS SUR HUISNE", + "nomCommune": "COUR MAUGIS SUR HUISNE" }, { - "codePostal": "10310", - "codeCommune": "10182", - "libelleAcheminement": "JUVANCOURT", - "nomCommune": "JUVANCOURT" + "codePostal": "70110", + "codeCommune": "70271", + "libelleAcheminement": "GOUHENANS", + "nomCommune": "GOUHENANS" }, { - "codePostal": "66360", - "codeCommune": "66209", - "libelleAcheminement": "THUES ENTRE VALLS", - "nomCommune": "THUES ENTRE VALLS" + "codePostal": "17610", + "codeCommune": "17100", + "libelleAcheminement": "CHERAC", + "nomCommune": "CHERAC" }, { - "codePostal": "49510", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "70400", + "codeCommune": "70221", + "libelleAcheminement": "ETOBON", + "nomCommune": "ETOBON" }, { - "codePostal": "40180", - "codeCommune": "40207", - "libelleAcheminement": "OEYRELUY", - "nomCommune": "OEYRELUY" + "codePostal": "59990", + "codeCommune": "59381", + "libelleAcheminement": "MARESCHES", + "nomCommune": "MARESCHES" }, { - "codePostal": "10150", - "codeCommune": "10191", - "libelleAcheminement": "LAVAU", - "nomCommune": "LAVAU" + "codePostal": "61500", + "codeCommune": "61051", + "libelleAcheminement": "BOITRON", + "nomCommune": "BOITRON" }, { - "codePostal": "66130", - "codeCommune": "66215", - "libelleAcheminement": "TREVILLACH", - "nomCommune": "TREVILLACH" + "codePostal": "70190", + "codeCommune": "70275", + "libelleAcheminement": "GRANDVELLE ET LE PERRENOT", + "nomCommune": "GRANDVELLE ET LE PERRENOT" }, { - "codePostal": "49600", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "17460", + "codeCommune": "17102", + "libelleAcheminement": "CHERMIGNAC", + "nomCommune": "CHERMIGNAC" }, { - "codePostal": "40110", - "codeCommune": "40210", - "libelleAcheminement": "ONESSE LAHARIE", - "nomCommune": "ONESSE LAHARIE" + "codePostal": "70700", + "codeCommune": "70222", + "libelleAcheminement": "ETRELLES ET LA MONTBLEUSE", + "nomCommune": "ETRELLES ET LA MONTBLEUSE" }, { - "codePostal": "10200", - "codeCommune": "10194", - "libelleAcheminement": "LEVIGNY", - "nomCommune": "LEVIGNY" + "codePostal": "59770", + "codeCommune": "59383", + "libelleAcheminement": "MARLY", + "nomCommune": "MARLY" }, { - "codePostal": "66300", - "codeCommune": "66217", - "libelleAcheminement": "TROUILLAS", - "nomCommune": "TROUILLAS" + "codePostal": "61110", + "codeCommune": "61061", + "libelleAcheminement": "BRETONCELLES", + "nomCommune": "BRETONCELLES" }, { - "codePostal": "49122", - "codeCommune": "49027", - "libelleAcheminement": "BEGROLLES EN MAUGES", - "nomCommune": "BEGROLLES EN MAUGES" + "codePostal": "70100", + "codeCommune": "70280", + "libelleAcheminement": "GRAY LA VILLE", + "nomCommune": "GRAY LA VILLE" }, { - "codePostal": "40300", - "codeCommune": "40212", - "libelleAcheminement": "ORTHEVIELLE", - "nomCommune": "ORTHEVIELLE" + "codePostal": "17210", + "codeCommune": "17104", + "libelleAcheminement": "CHEVANCEAUX", + "nomCommune": "CHEVANCEAUX" }, { - "codePostal": "10130", - "codeCommune": "10196", - "libelleAcheminement": "LIGNIERES", - "nomCommune": "LIGNIERES" + "codePostal": "70100", + "codeCommune": "70225", + "libelleAcheminement": "FAHY LES AUTREY", + "nomCommune": "FAHY LES AUTREY" }, { - "codePostal": "67320", - "codeCommune": "67002", - "libelleAcheminement": "ADAMSWILLER", - "nomCommune": "ADAMSWILLER" + "codePostal": "59176", + "codeCommune": "59390", + "libelleAcheminement": "MASNY", + "nomCommune": "MASNY" }, { - "codePostal": "49320", - "codeCommune": "49029", - "libelleAcheminement": "BLAISON ST SULPICE", - "nomCommune": "BLAISON ST SULPICE" + "codePostal": "61120", + "codeCommune": "61072", + "libelleAcheminement": "CANAPVILLE", + "nomCommune": "CANAPVILLE" }, { - "codePostal": "40290", - "codeCommune": "40214", - "libelleAcheminement": "OSSAGES", - "nomCommune": "OSSAGES" + "codePostal": "70440", + "codeCommune": "70283", + "libelleAcheminement": "HAUT DU THEM CHATEAU LAMBERT", + "nomCommune": "HAUT DU THEM CHATEAU LAMBERT" }, { - "codePostal": "10200", - "codeCommune": "10197", - "libelleAcheminement": "LIGNOL LE CHATEAU", - "nomCommune": "LIGNOL LE CHATEAU" + "codePostal": "17470", + "codeCommune": "17117", + "libelleAcheminement": "CONTRE", + "nomCommune": "CONTRE" }, { - "codePostal": "67440", - "codeCommune": "67004", - "libelleAcheminement": "SOMMERAU", - "nomCommune": "SOMMERAU" + "codePostal": "70000", + "codeCommune": "70235", + "libelleAcheminement": "FLAGY", + "nomCommune": "FLAGY" }, { - "codePostal": "49160", - "codeCommune": "49030", - "libelleAcheminement": "BLOU", - "nomCommune": "BLOU" + "codePostal": "59172", + "codeCommune": "59391", + "libelleAcheminement": "MASTAING", + "nomCommune": "MASTAING" }, { - "codePostal": "40380", - "codeCommune": "40216", - "libelleAcheminement": "OZOURT", - "nomCommune": "OZOURT" + "codePostal": "61000", + "codeCommune": "61077", + "libelleAcheminement": "CERISE", + "nomCommune": "CERISE" }, { - "codePostal": "10210", - "codeCommune": "10202", - "libelleAcheminement": "LES LOGES MARGUERON", - "nomCommune": "LES LOGES MARGUERON" + "codePostal": "70210", + "codeCommune": "70287", + "libelleAcheminement": "HURECOURT", + "nomCommune": "HURECOURT" }, { - "codePostal": "67120", - "codeCommune": "67008", - "libelleAcheminement": "ALTORF", - "nomCommune": "ALTORF" + "codePostal": "17330", + "codeCommune": "17124", + "libelleAcheminement": "COURANT", + "nomCommune": "COURANT" }, { - "codePostal": "49520", - "codeCommune": "49038", - "libelleAcheminement": "BOURG L EVEQUE", - "nomCommune": "BOURG L EVEQUE" + "codePostal": "70190", + "codeCommune": "70239", + "libelleAcheminement": "FONDREMAND", + "nomCommune": "FONDREMAND" }, { - "codePostal": "40320", - "codeCommune": "40220", - "libelleAcheminement": "PECORADE", - "nomCommune": "PECORADE" + "codePostal": "59600", + "codeCommune": "59392", + "libelleAcheminement": "MAUBEUGE", + "nomCommune": "MAUBEUGE" }, { - "codePostal": "10140", - "codeCommune": "10205", - "libelleAcheminement": "LONGPRE LE SEC", - "nomCommune": "LONGPRE LE SEC" + "codePostal": "61320", + "codeCommune": "61080", + "libelleAcheminement": "CHAHAINS", + "nomCommune": "CHAHAINS" }, { - "codePostal": "67390", - "codeCommune": "67011", - "libelleAcheminement": "ARTOLSHEIM", - "nomCommune": "ARTOLSHEIM" + "codePostal": "70000", + "codeCommune": "70316", + "libelleAcheminement": "LE MAGNORAY", + "nomCommune": "LE MAGNORAY" }, { - "codePostal": "49650", - "codeCommune": "49041", - "libelleAcheminement": "BRAIN SUR ALLONNES", - "nomCommune": "BRAIN SUR ALLONNES" + "codePostal": "17400", + "codeCommune": "17125", + "libelleAcheminement": "COURCELLES", + "nomCommune": "COURCELLES" }, { - "codePostal": "40410", - "codeCommune": "40227", - "libelleAcheminement": "PISSOS", - "nomCommune": "PISSOS" + "codePostal": "70160", + "codeCommune": "70244", + "libelleAcheminement": "FOUCHECOURT", + "nomCommune": "FOUCHECOURT" }, { - "codePostal": "10400", - "codeCommune": "10208", - "libelleAcheminement": "LA LOUPTIERE THENARD", - "nomCommune": "LA LOUPTIERE THENARD" + "codePostal": "59660", + "codeCommune": "59400", + "libelleAcheminement": "MERVILLE", + "nomCommune": "MERVILLE" }, { - "codePostal": "67250", - "codeCommune": "67012", - "libelleAcheminement": "ASCHBACH", - "nomCommune": "ASCHBACH" + "codePostal": "61120", + "codeCommune": "61086", + "libelleAcheminement": "LES CHAMPEAUX", + "nomCommune": "LES CHAMPEAUX" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "70200", + "codeCommune": "70318", + "libelleAcheminement": "MAGNY DANIGON", + "nomCommune": "MAGNY DANIGON" }, { - "codePostal": "40300", - "codeCommune": "40231", - "libelleAcheminement": "PORT DE LANNE", - "nomCommune": "PORT DE LANNE" + "codePostal": "17130", + "codeCommune": "17130", + "libelleAcheminement": "COUX", + "nomCommune": "COUX" }, { - "codePostal": "10320", - "codeCommune": "10212", - "libelleAcheminement": "MACHY", - "nomCommune": "MACHY" + "codePostal": "70300", + "codeCommune": "70245", + "libelleAcheminement": "FOUGEROLLES ST VALBERT", + "nomCommune": "FOUGEROLLES ST VALBERT" }, { - "codePostal": "67140", - "codeCommune": "67021", - "libelleAcheminement": "BARR", - "nomCommune": "BARR" + "codePostal": "59400", + "codeCommune": "59405", + "libelleAcheminement": "MOEUVRES", + "nomCommune": "MOEUVRES" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "61560", + "codeCommune": "61087", + "libelleAcheminement": "CHAMPEAUX SUR SARTHE", + "nomCommune": "CHAMPEAUX SUR SARTHE" }, { - "codePostal": "40270", - "codeCommune": "40240", - "libelleAcheminement": "RENUNG", - "nomCommune": "RENUNG" + "codePostal": "70140", + "codeCommune": "70327", + "libelleAcheminement": "MALANS", + "nomCommune": "MALANS" }, { - "codePostal": "10350", - "codeCommune": "10224", - "libelleAcheminement": "MARIGNY LE CHATEL", - "nomCommune": "MARIGNY LE CHATEL" + "codePostal": "17160", + "codeCommune": "17135", + "libelleAcheminement": "CRESSE", + "nomCommune": "CRESSE" }, { - "codePostal": "67500", - "codeCommune": "67023", - "libelleAcheminement": "BATZENDORF", - "nomCommune": "BATZENDORF" + "codePostal": "70600", + "codeCommune": "70247", + "libelleAcheminement": "FOUVENT ST ANDOCHE", + "nomCommune": "FOUVENT ST ANDOCHE" }, { - "codePostal": "49400", - "codeCommune": "49060", - "libelleAcheminement": "BELLEVIGNE LES CHATEAUX", - "nomCommune": "BELLEVIGNE LES CHATEAUX" + "codePostal": "59620", + "codeCommune": "59406", + "libelleAcheminement": "MONCEAU ST WAAST", + "nomCommune": "MONCEAU ST WAAST" }, { - "codePostal": "40390", - "codeCommune": "40251", - "libelleAcheminement": "ST BARTHELEMY", - "nomCommune": "ST BARTHELEMY" + "codePostal": "61100", + "codeCommune": "61094", + "libelleAcheminement": "LA CHAPELLE AU MOINE", + "nomCommune": "LA CHAPELLE AU MOINE" }, { - "codePostal": "10130", - "codeCommune": "10227", - "libelleAcheminement": "MAROLLES SOUS LIGNIERES", - "nomCommune": "MAROLLES SOUS LIGNIERES" + "codePostal": "70200", + "codeCommune": "70328", + "libelleAcheminement": "MALBOUHANS", + "nomCommune": "MALBOUHANS" }, { - "codePostal": "67930", - "codeCommune": "67025", - "libelleAcheminement": "BEINHEIM", - "nomCommune": "BEINHEIM" + "codePostal": "17220", + "codeCommune": "17136", + "libelleAcheminement": "CROIX CHAPEAU", + "nomCommune": "CROIX CHAPEAU" }, { - "codePostal": "49220", - "codeCommune": "49064", - "libelleAcheminement": "CHAMBELLAY", - "nomCommune": "CHAMBELLAY" + "codePostal": "70400", + "codeCommune": "70248", + "libelleAcheminement": "FRAHIER ET CHATEBIER", + "nomCommune": "FRAHIER ET CHATEBIER" }, { - "codePostal": "40700", - "codeCommune": "40252", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "59182", + "codeCommune": "59414", + "libelleAcheminement": "MONTIGNY EN OSTREVENT", + "nomCommune": "MONTIGNY EN OSTREVENT" }, { - "codePostal": "10400", - "codeCommune": "10231", - "libelleAcheminement": "LE MERIOT", - "nomCommune": "LE MERIOT" + "codePostal": "61410", + "codeCommune": "61096", + "libelleAcheminement": "RIVES D ANDAINE", + "nomCommune": "RIVES D ANDAINE" }, { - "codePostal": "67130", - "codeCommune": "67026", - "libelleAcheminement": "BELLEFOSSE", - "nomCommune": "BELLEFOSSE" + "codePostal": "70100", + "codeCommune": "70331", + "libelleAcheminement": "MANTOCHE", + "nomCommune": "MANTOCHE" }, { - "codePostal": "49340", - "codeCommune": "49070", - "libelleAcheminement": "CHANTELOUP LES BOIS", - "nomCommune": "CHANTELOUP LES BOIS" + "codePostal": "17610", + "codeCommune": "17141", + "libelleAcheminement": "DOMPIERRE SUR CHARENTE", + "nomCommune": "DOMPIERRE SUR CHARENTE" }, { - "codePostal": "40300", - "codeCommune": "40254", - "libelleAcheminement": "ST CRICQ DU GAVE", - "nomCommune": "ST CRICQ DU GAVE" + "codePostal": "70600", + "codeCommune": "70252", + "libelleAcheminement": "FRAMONT", + "nomCommune": "FRAMONT" }, { - "codePostal": "10170", - "codeCommune": "10234", - "libelleAcheminement": "MESGRIGNY", - "nomCommune": "MESGRIGNY" + "codePostal": "59239", + "codeCommune": "59427", + "libelleAcheminement": "LA NEUVILLE", + "nomCommune": "LA NEUVILLE" }, { - "codePostal": "67240", - "codeCommune": "67046", - "libelleAcheminement": "BISCHWILLER", - "nomCommune": "BISCHWILLER" + "codePostal": "61130", + "codeCommune": "61099", + "libelleAcheminement": "LA CHAPELLE SOUEF", + "nomCommune": "LA CHAPELLE SOUEF" }, { - "codePostal": "49330", - "codeCommune": "49080", - "libelleAcheminement": "LES HAUTS D ANJOU", - "nomCommune": "LES HAUTS D ANJOU" + "codePostal": "70110", + "codeCommune": "70336", + "libelleAcheminement": "MELECEY", + "nomCommune": "MELECEY" }, { - "codePostal": "40200", - "codeCommune": "40257", - "libelleAcheminement": "STE EULALIE EN BORN", - "nomCommune": "STE EULALIE EN BORN" + "codePostal": "17620", + "codeCommune": "17146", + "libelleAcheminement": "ECHILLAIS", + "nomCommune": "ECHILLAIS" }, { - "codePostal": "10140", - "codeCommune": "10238", - "libelleAcheminement": "MESNIL ST PERE", - "nomCommune": "MESNIL ST PERE" + "codePostal": "70200", + "codeCommune": "70254", + "libelleAcheminement": "FREDERIC FONTAINE", + "nomCommune": "FREDERIC FONTAINE" }, { - "codePostal": "67260", - "codeCommune": "67047", - "libelleAcheminement": "BISSERT", - "nomCommune": "BISSERT" + "codePostal": "59360", + "codeCommune": "59430", + "libelleAcheminement": "NEUVILLY", + "nomCommune": "NEUVILLY" }, { - "codePostal": "49330", - "codeCommune": "49080", - "libelleAcheminement": "LES HAUTS D ANJOU", - "nomCommune": "LES HAUTS D ANJOU" + "codePostal": "61570", + "codeCommune": "61101", + "libelleAcheminement": "LE CHATEAU D ALMENECHES", + "nomCommune": "LE CHATEAU D ALMENECHES" }, { - "codePostal": "40190", - "codeCommune": "40259", - "libelleAcheminement": "ST GEIN", - "nomCommune": "ST GEIN" + "codePostal": "70110", + "codeCommune": "70349", + "libelleAcheminement": "MOIMAY", + "nomCommune": "MOIMAY" }, { - "codePostal": "10500", - "codeCommune": "10243", - "libelleAcheminement": "MOLINS SUR AUBE", - "nomCommune": "MOLINS SUR AUBE" + "codePostal": "17770", + "codeCommune": "17147", + "libelleAcheminement": "ECOYEUX", + "nomCommune": "ECOYEUX" }, { - "codePostal": "67130", - "codeCommune": "67050", - "libelleAcheminement": "BLANCHERUPT", - "nomCommune": "BLANCHERUPT" + "codePostal": "70130", + "codeCommune": "70255", + "libelleAcheminement": "FRESNE ST MAMES", + "nomCommune": "FRESNE ST MAMES" }, { - "codePostal": "49330", - "codeCommune": "49080", - "libelleAcheminement": "LES HAUTS D ANJOU", - "nomCommune": "LES HAUTS D ANJOU" + "codePostal": "59850", + "codeCommune": "59431", + "libelleAcheminement": "NIEPPE", + "nomCommune": "NIEPPE" }, { - "codePostal": "40230", - "codeCommune": "40261", - "libelleAcheminement": "ST GEOURS DE MAREMNE", - "nomCommune": "ST GEOURS DE MAREMNE" + "codePostal": "61360", + "codeCommune": "61105", + "libelleAcheminement": "CHEMILLI", + "nomCommune": "CHEMILLI" }, { - "codePostal": "10270", - "codeCommune": "10245", - "libelleAcheminement": "MONTAULIN", - "nomCommune": "MONTAULIN" + "codePostal": "70120", + "codeCommune": "70350", + "libelleAcheminement": "MOLAY", + "nomCommune": "MOLAY" }, { - "codePostal": "67530", - "codeCommune": "67052", - "libelleAcheminement": "BOERSCH", - "nomCommune": "BOERSCH" + "codePostal": "17400", + "codeCommune": "17150", + "libelleAcheminement": "LES EGLISES D ARGENTEUIL", + "nomCommune": "LES EGLISES D ARGENTEUIL" }, { - "codePostal": "49380", - "codeCommune": "49086", - "libelleAcheminement": "TERRANJOU", - "nomCommune": "TERRANJOU" + "codePostal": "70300", + "codeCommune": "70258", + "libelleAcheminement": "FROIDECONCHE", + "nomCommune": "FROIDECONCHE" }, { - "codePostal": "40240", - "codeCommune": "40265", - "libelleAcheminement": "ST JULIEN D ARMAGNAC", - "nomCommune": "ST JULIEN D ARMAGNAC" + "codePostal": "59139", + "codeCommune": "59437", + "libelleAcheminement": "NOYELLES LES SECLIN", + "nomCommune": "NOYELLES LES SECLIN" }, { - "codePostal": "10200", - "codeCommune": "10250", - "libelleAcheminement": "MONTIER EN L ISLE", - "nomCommune": "MONTIER EN L ISLE" + "codePostal": "61400", + "codeCommune": "61113", + "libelleAcheminement": "COMBLOT", + "nomCommune": "COMBLOT" }, { - "codePostal": "67150", - "codeCommune": "67054", - "libelleAcheminement": "BOLSENHEIM", - "nomCommune": "BOLSENHEIM" + "codePostal": "70210", + "codeCommune": "70360", + "libelleAcheminement": "MONTDORE", + "nomCommune": "MONTDORE" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "17350", + "codeCommune": "17157", + "libelleAcheminement": "FENIOUX", + "nomCommune": "FENIOUX" }, { - "codePostal": "40390", - "codeCommune": "40272", - "libelleAcheminement": "ST MARTIN DE HINX", - "nomCommune": "ST MARTIN DE HINX" + "codePostal": "70200", + "codeCommune": "70260", + "libelleAcheminement": "FROTEY LES LURE", + "nomCommune": "FROTEY LES LURE" }, { - "codePostal": "10270", - "codeCommune": "10255", - "libelleAcheminement": "MONTREUIL SUR BARSE", - "nomCommune": "MONTREUIL SUR BARSE" + "codePostal": "59122", + "codeCommune": "59448", + "libelleAcheminement": "OOST CAPPEL", + "nomCommune": "OOST CAPPEL" }, { - "codePostal": "67390", - "codeCommune": "67056", - "libelleAcheminement": "BOOTZHEIM", - "nomCommune": "BOOTZHEIM" + "codePostal": "61110", + "codeCommune": "61116", + "libelleAcheminement": "SABLONS SUR HUISNE", + "nomCommune": "SABLONS SUR HUISNE" }, { - "codePostal": "49310", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "70180", + "codeCommune": "70368", + "libelleAcheminement": "MONTOT", + "nomCommune": "MONTOT" }, { - "codePostal": "40390", - "codeCommune": "40273", - "libelleAcheminement": "ST MARTIN DE SEIGNANX", - "nomCommune": "ST MARTIN DE SEIGNANX" + "codePostal": "17100", + "codeCommune": "17164", + "libelleAcheminement": "FONTCOUVERTE", + "nomCommune": "FONTCOUVERTE" }, { - "codePostal": "10360", - "codeCommune": "10264", - "libelleAcheminement": "NOE LES MALLETS", - "nomCommune": "NOE LES MALLETS" + "codePostal": "70400", + "codeCommune": "70277", + "libelleAcheminement": "GRANGES LE BOURG", + "nomCommune": "GRANGES LE BOURG" }, { - "codePostal": "67420", - "codeCommune": "67059", - "libelleAcheminement": "BOURG BRUCHE", - "nomCommune": "BOURG BRUCHE" + "codePostal": "59218", + "codeCommune": "59464", + "libelleAcheminement": "POIX DU NORD", + "nomCommune": "POIX DU NORD" }, { - "codePostal": "49670", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "61110", + "codeCommune": "61116", + "libelleAcheminement": "SABLONS SUR HUISNE", + "nomCommune": "SABLONS SUR HUISNE" }, { - "codePostal": "40800", - "codeCommune": "40290", - "libelleAcheminement": "SARRON", - "nomCommune": "SARRON" + "codePostal": "70500", + "codeCommune": "70372", + "libelleAcheminement": "MONTUREUX LES BAULAY", + "nomCommune": "MONTUREUX LES BAULAY" }, { - "codePostal": "10220", - "codeCommune": "10270", - "libelleAcheminement": "ONJON", - "nomCommune": "ONJON" + "codePostal": "17450", + "codeCommune": "17168", + "libelleAcheminement": "FOURAS", + "nomCommune": "FOURAS" }, { - "codePostal": "67330", - "codeCommune": "67061", - "libelleAcheminement": "BOUXWILLER", - "nomCommune": "BOUXWILLER" + "codePostal": "70200", + "codeCommune": "70294", + "libelleAcheminement": "LANTENOT", + "nomCommune": "LANTENOT" }, { - "codePostal": "49670", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "59138", + "codeCommune": "59467", + "libelleAcheminement": "PONT SUR SAMBRE", + "nomCommune": "PONT SUR SAMBRE" }, { - "codePostal": "40510", - "codeCommune": "40296", - "libelleAcheminement": "SEIGNOSSE", - "nomCommune": "SEIGNOSSE" + "codePostal": "61230", + "codeCommune": "61122", + "libelleAcheminement": "COULMER", + "nomCommune": "COULMER" }, { - "codePostal": "10510", - "codeCommune": "10271", - "libelleAcheminement": "ORIGNY LE SEC", - "nomCommune": "ORIGNY LE SEC" + "codePostal": "70140", + "codeCommune": "70374", + "libelleAcheminement": "MOTEY BESUCHE", + "nomCommune": "MOTEY BESUCHE" }, { - "codePostal": "67130", - "codeCommune": "67066", - "libelleAcheminement": "LA BROQUE", - "nomCommune": "LA BROQUE" + "codePostal": "17360", + "codeCommune": "17173", + "libelleAcheminement": "LA GENETOUZE", + "nomCommune": "LA GENETOUZE" }, { - "codePostal": "49140", - "codeCommune": "49110", - "libelleAcheminement": "CORZE", - "nomCommune": "CORZE" + "codePostal": "70270", + "codeCommune": "70295", + "libelleAcheminement": "LA LANTERNE ET LES ARMONTS", + "nomCommune": "LA LANTERNE ET LES ARMONTS" }, { - "codePostal": "40990", - "codeCommune": "40315", - "libelleAcheminement": "TETHIEU", - "nomCommune": "TETHIEU" + "codePostal": "59920", + "codeCommune": "59484", + "libelleAcheminement": "QUIEVRECHAIN", + "nomCommune": "QUIEVRECHAIN" }, { - "codePostal": "10210", - "codeCommune": "10278", - "libelleAcheminement": "PARGUES", - "nomCommune": "PARGUES" + "codePostal": "61400", + "codeCommune": "61129", + "libelleAcheminement": "COURGEON", + "nomCommune": "COURGEON" }, { - "codePostal": "67170", - "codeCommune": "67067", - "libelleAcheminement": "BRUMATH", - "nomCommune": "BRUMATH" + "codePostal": "70700", + "codeCommune": "70393", + "libelleAcheminement": "OISELAY ET GRACHAUX", + "nomCommune": "OISELAY ET GRACHAUX" }, { - "codePostal": "49700", - "codeCommune": "49125", - "libelleAcheminement": "DOUE EN ANJOU", - "nomCommune": "DOUE EN ANJOU" + "codePostal": "17350", + "codeCommune": "17181", + "libelleAcheminement": "GRANDJEAN", + "nomCommune": "GRANDJEAN" }, { - "codePostal": "40250", - "codeCommune": "40318", - "libelleAcheminement": "TOULOUZETTE", - "nomCommune": "TOULOUZETTE" + "codePostal": "70120", + "codeCommune": "70298", + "libelleAcheminement": "LAVIGNEY", + "nomCommune": "LAVIGNEY" }, { - "codePostal": "10330", - "codeCommune": "10279", - "libelleAcheminement": "PARS LES CHAVANGES", - "nomCommune": "PARS LES CHAVANGES" + "codePostal": "59177", + "codeCommune": "59490", + "libelleAcheminement": "RAINSARS", + "nomCommune": "RAINSARS" }, { - "codePostal": "67350", - "codeCommune": "67068", - "libelleAcheminement": "BUSWILLER", - "nomCommune": "BUSWILLER" + "codePostal": "61220", + "codeCommune": "61137", + "libelleAcheminement": "CRAMENIL", + "nomCommune": "CRAMENIL" }, { - "codePostal": "49700", - "codeCommune": "49125", - "libelleAcheminement": "DOUE EN ANJOU", - "nomCommune": "DOUE EN ANJOU" + "codePostal": "70300", + "codeCommune": "70398", + "libelleAcheminement": "ORMOICHE", + "nomCommune": "ORMOICHE" }, { - "codePostal": "40560", - "codeCommune": "40326", - "libelleAcheminement": "VIELLE ST GIRONS", - "nomCommune": "VIELLE ST GIRONS" + "codePostal": "17620", + "codeCommune": "17184", + "libelleAcheminement": "LA GRIPPERIE ST SYMPHORIEN", + "nomCommune": "LA GRIPPERIE ST SYMPHORIEN" }, { - "codePostal": "10100", - "codeCommune": "10280", - "libelleAcheminement": "PARS LES ROMILLY", - "nomCommune": "PARS LES ROMILLY" + "codePostal": "70120", + "codeCommune": "70299", + "libelleAcheminement": "LAVONCOURT", + "nomCommune": "LAVONCOURT" }, { - "codePostal": "67420", - "codeCommune": "67076", - "libelleAcheminement": "COLROY LA ROCHE", - "nomCommune": "COLROY LA ROCHE" + "codePostal": "59277", + "codeCommune": "59502", + "libelleAcheminement": "RIEUX EN CAMBRESIS", + "nomCommune": "RIEUX EN CAMBRESIS" }, { - "codePostal": "49250", - "codeCommune": "49138", - "libelleAcheminement": "LES BOIS D ANJOU", - "nomCommune": "LES BOIS D ANJOU" + "codePostal": "61120", + "codeCommune": "61139", + "libelleAcheminement": "CROUTTES", + "nomCommune": "CROUTTES" }, { - "codePostal": "40240", - "codeCommune": "40327", - "libelleAcheminement": "VIELLE SOUBIRAN", - "nomCommune": "VIELLE SOUBIRAN" + "codePostal": "70600", + "codeCommune": "70409", + "libelleAcheminement": "PIERRECOURT", + "nomCommune": "PIERRECOURT" }, { - "codePostal": "10250", - "codeCommune": "10288", - "libelleAcheminement": "PLAINES ST LANGE", - "nomCommune": "PLAINES ST LANGE" + "codePostal": "17160", + "codeCommune": "17188", + "libelleAcheminement": "HAIMPS", + "nomCommune": "HAIMPS" }, { - "codePostal": "67310", - "codeCommune": "67077", - "libelleAcheminement": "COSSWILLER", - "nomCommune": "COSSWILLER" + "codePostal": "70140", + "codeCommune": "70302", + "libelleAcheminement": "LIEUCOURT", + "nomCommune": "LIEUCOURT" }, { - "codePostal": "49370", - "codeCommune": "49183", - "libelleAcheminement": "VAL D ERDRE AUXENCE", - "nomCommune": "VAL D ERDRE AUXENCE" + "codePostal": "59990", + "codeCommune": "59505", + "libelleAcheminement": "ROMBIES ET MARCHIPONT", + "nomCommune": "ROMBIES ET MARCHIPONT" }, { - "codePostal": "40270", - "codeCommune": "40329", - "libelleAcheminement": "LE VIGNAU", - "nomCommune": "LE VIGNAU" + "codePostal": "61700", + "codeCommune": "61145", + "libelleAcheminement": "DOMFRONT EN POIRAIE", + "nomCommune": "DOMFRONT EN POIRAIE" }, { - "codePostal": "10380", - "codeCommune": "10289", - "libelleAcheminement": "PLANCY L ABBAYE", - "nomCommune": "PLANCY L ABBAYE" + "codePostal": "70150", + "codeCommune": "70410", + "libelleAcheminement": "PIN", + "nomCommune": "PIN" }, { - "codePostal": "67470", - "codeCommune": "67079", - "libelleAcheminement": "CROETTWILLER", - "nomCommune": "CROETTWILLER" + "codePostal": "17137", + "codeCommune": "17190", + "libelleAcheminement": "L HOUMEAU", + "nomCommune": "L HOUMEAU" }, { - "codePostal": "49440", - "codeCommune": "49183", - "libelleAcheminement": "VAL D ERDRE AUXENCE", - "nomCommune": "VAL D ERDRE AUXENCE" + "codePostal": "70110", + "codeCommune": "70307", + "libelleAcheminement": "LONGEVELLE", + "nomCommune": "LONGEVELLE" }, { - "codePostal": "40180", - "codeCommune": "40334", - "libelleAcheminement": "YZOSSE", - "nomCommune": "YZOSSE" + "codePostal": "59790", + "codeCommune": "59507", + "libelleAcheminement": "RONCHIN", + "nomCommune": "RONCHIN" }, { - "codePostal": "10110", - "codeCommune": "10295", - "libelleAcheminement": "POLISOT", - "nomCommune": "POLISOT" + "codePostal": "61150", + "codeCommune": "61153", + "libelleAcheminement": "ECOUCHE LES VALLEES", + "nomCommune": "ECOUCHE LES VALLEES" }, { - "codePostal": "67220", - "codeCommune": "67092", - "libelleAcheminement": "DIEFFENBACH AU VAL", - "nomCommune": "DIEFFENBACH AU VAL" + "codePostal": "70800", + "codeCommune": "70411", + "libelleAcheminement": "LA PISSEURE", + "nomCommune": "LA PISSEURE" }, { - "codePostal": "49140", - "codeCommune": "49188", - "libelleAcheminement": "MARCE", - "nomCommune": "MARCE" + "codePostal": "17460", + "codeCommune": "17191", + "libelleAcheminement": "LA JARD", + "nomCommune": "LA JARD" }, { - "codePostal": "41310", - "codeCommune": "41001", - "libelleAcheminement": "AMBLOY", - "nomCommune": "AMBLOY" + "codePostal": "70300", + "codeCommune": "70311", + "libelleAcheminement": "LUXEUIL LES BAINS", + "nomCommune": "LUXEUIL LES BAINS" }, { - "codePostal": "10400", - "codeCommune": "10298", - "libelleAcheminement": "PONT SUR SEINE", - "nomCommune": "PONT SUR SEINE" + "codePostal": "59286", + "codeCommune": "59509", + "libelleAcheminement": "ROOST WARENDIN", + "nomCommune": "ROOST WARENDIN" }, { - "codePostal": "67440", - "codeCommune": "67096", - "libelleAcheminement": "DIMBSTHAL", - "nomCommune": "DIMBSTHAL" + "codePostal": "61150", + "codeCommune": "61153", + "libelleAcheminement": "ECOUCHE LES VALLEES", + "nomCommune": "ECOUCHE LES VALLEES" }, { - "codePostal": "49360", - "codeCommune": "49192", - "libelleAcheminement": "MAULEVRIER", - "nomCommune": "MAULEVRIER" + "codePostal": "70210", + "codeCommune": "70419", + "libelleAcheminement": "PONT DU BOIS", + "nomCommune": "PONT DU BOIS" }, { - "codePostal": "41800", - "codeCommune": "41004", - "libelleAcheminement": "ARTINS", - "nomCommune": "ARTINS" + "codePostal": "17220", + "codeCommune": "17194", + "libelleAcheminement": "LA JARRIE", + "nomCommune": "LA JARRIE" }, { - "codePostal": "10210", - "codeCommune": "10302", - "libelleAcheminement": "PRASLIN", - "nomCommune": "PRASLIN" + "codePostal": "70200", + "codeCommune": "70313", + "libelleAcheminement": "LYOFFANS", + "nomCommune": "LYOFFANS" }, { - "codePostal": "67270", - "codeCommune": "67107", - "libelleAcheminement": "DUNTZENHEIM", - "nomCommune": "DUNTZENHEIM" + "codePostal": "59131", + "codeCommune": "59514", + "libelleAcheminement": "ROUSIES", + "nomCommune": "ROUSIES" }, { - "codePostal": "49220", - "codeCommune": "49200", - "libelleAcheminement": "LONGUENEE EN ANJOU", - "nomCommune": "LONGUENEE EN ANJOU" + "codePostal": "61500", + "codeCommune": "61156", + "libelleAcheminement": "ESSAY", + "nomCommune": "ESSAY" }, { - "codePostal": "41250", - "codeCommune": "41013", - "libelleAcheminement": "BAUZY", - "nomCommune": "BAUZY" + "codePostal": "70190", + "codeCommune": "70431", + "libelleAcheminement": "QUENOCHE", + "nomCommune": "QUENOCHE" }, { - "codePostal": "10500", - "codeCommune": "10303", - "libelleAcheminement": "PRECY NOTRE DAME", - "nomCommune": "PRECY NOTRE DAME" + "codePostal": "17330", + "codeCommune": "17195", + "libelleAcheminement": "LA JARRIE AUDOUIN", + "nomCommune": "LA JARRIE AUDOUIN" }, { - "codePostal": "67710", - "codeCommune": "67122", - "libelleAcheminement": "WANGENBOURG ENGENTHAL", - "nomCommune": "WANGENBOURG ENGENTHAL" + "codePostal": "70300", + "codeCommune": "70314", + "libelleAcheminement": "MAGNIVRAY", + "nomCommune": "MAGNIVRAY" }, { - "codePostal": "49770", - "codeCommune": "49200", - "libelleAcheminement": "LONGUENEE EN ANJOU", - "nomCommune": "LONGUENEE EN ANJOU" + "codePostal": "59220", + "codeCommune": "59515", + "libelleAcheminement": "ROUVIGNIES", + "nomCommune": "ROUVIGNIES" }, { - "codePostal": "41290", - "codeCommune": "41019", - "libelleAcheminement": "BOISSEAU", - "nomCommune": "BOISSEAU" + "codePostal": "61390", + "codeCommune": "61166", + "libelleAcheminement": "FERRIERES LA VERRERIE", + "nomCommune": "FERRIERES LA VERRERIE" }, { - "codePostal": "10500", - "codeCommune": "10304", - "libelleAcheminement": "PRECY ST MARTIN", - "nomCommune": "PRECY ST MARTIN" + "codePostal": "70500", + "codeCommune": "70436", + "libelleAcheminement": "RAINCOURT", + "nomCommune": "RAINCOURT" }, { - "codePostal": "67320", - "codeCommune": "67133", - "libelleAcheminement": "ESCHBOURG", - "nomCommune": "ESCHBOURG" + "codePostal": "17260", + "codeCommune": "17196", + "libelleAcheminement": "JAZENNES", + "nomCommune": "JAZENNES" }, { - "codePostal": "49770", - "codeCommune": "49200", - "libelleAcheminement": "LONGUENEE EN ANJOU", - "nomCommune": "LONGUENEE EN ANJOU" + "codePostal": "70240", + "codeCommune": "70322", + "libelleAcheminement": "MAILLERONCOURT CHARETTE", + "nomCommune": "MAILLERONCOURT CHARETTE" }, { - "codePostal": "41330", - "codeCommune": "41040", - "libelleAcheminement": "LA CHAPELLE VENDOMOISE", - "nomCommune": "LA CHAPELLE VENDOMOISE" + "codePostal": "59554", + "codeCommune": "59521", + "libelleAcheminement": "SAILLY LEZ CAMBRAI", + "nomCommune": "SAILLY LEZ CAMBRAI" }, { - "codePostal": "10210", - "codeCommune": "10309", - "libelleAcheminement": "PRUSY", - "nomCommune": "PRUSY" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "67480", - "codeCommune": "67140", - "libelleAcheminement": "FORSTFELD", - "nomCommune": "FORSTFELD" + "codePostal": "70500", + "codeCommune": "70437", + "libelleAcheminement": "RANZEVELLE", + "nomCommune": "RANZEVELLE" }, { - "codePostal": "49250", - "codeCommune": "49201", - "libelleAcheminement": "LA MENITRE", - "nomCommune": "LA MENITRE" + "codePostal": "17770", + "codeCommune": "17198", + "libelleAcheminement": "JUICQ", + "nomCommune": "JUICQ" }, { - "codePostal": "41150", - "codeCommune": "41045", - "libelleAcheminement": "CHAUMONT SUR LOIRE", - "nomCommune": "CHAUMONT SUR LOIRE" + "codePostal": "70000", + "codeCommune": "70324", + "libelleAcheminement": "MAILLEY ET CHAZELOT", + "nomCommune": "MAILLEY ET CHAZELOT" }, { - "codePostal": "10500", - "codeCommune": "10313", - "libelleAcheminement": "RADONVILLIERS", - "nomCommune": "RADONVILLIERS" + "codePostal": "59262", + "codeCommune": "59523", + "libelleAcheminement": "SAINGHIN EN MELANTOIS", + "nomCommune": "SAINGHIN EN MELANTOIS" }, { - "codePostal": "67220", - "codeCommune": "67143", - "libelleAcheminement": "FOUCHY", - "nomCommune": "FOUCHY" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "49330", - "codeCommune": "49205", - "libelleAcheminement": "MIRE", - "nomCommune": "MIRE" + "codePostal": "70130", + "codeCommune": "70438", + "libelleAcheminement": "RAY SUR SAONE", + "nomCommune": "RAY SUR SAONE" }, { - "codePostal": "41260", - "codeCommune": "41047", - "libelleAcheminement": "LA CHAUSSEE ST VICTOR", - "nomCommune": "LA CHAUSSEE ST VICTOR" + "codePostal": "17230", + "codeCommune": "17208", + "libelleAcheminement": "LONGEVES", + "nomCommune": "LONGEVES" }, { - "codePostal": "10170", - "codeCommune": "10316", - "libelleAcheminement": "RHEGES", - "nomCommune": "RHEGES" + "codePostal": "70190", + "codeCommune": "70325", + "libelleAcheminement": "MAIZIERES", + "nomCommune": "MAIZIERES" }, { - "codePostal": "67490", - "codeCommune": "67145", - "libelleAcheminement": "FRIEDOLSHEIM", - "nomCommune": "FRIEDOLSHEIM" + "codePostal": "59184", + "codeCommune": "59524", + "libelleAcheminement": "SAINGHIN EN WEPPES", + "nomCommune": "SAINGHIN EN WEPPES" }, { - "codePostal": "49460", - "codeCommune": "49214", - "libelleAcheminement": "MONTREUIL JUIGNE", - "nomCommune": "MONTREUIL JUIGNE" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "41270", - "codeCommune": "41048", - "libelleAcheminement": "CHAUVIGNY DU PERCHE", - "nomCommune": "CHAUVIGNY DU PERCHE" + "codePostal": "70200", + "codeCommune": "70445", + "libelleAcheminement": "RIGNOVELLE", + "nomCommune": "RIGNOVELLE" }, { - "codePostal": "10340", - "codeCommune": "10317", - "libelleAcheminement": "LES RICEYS", - "nomCommune": "LES RICEYS" + "codePostal": "17700", + "codeCommune": "17221", + "libelleAcheminement": "MARSAIS", + "nomCommune": "MARSAIS" }, { - "codePostal": "67118", - "codeCommune": "67152", - "libelleAcheminement": "GEISPOLSHEIM", - "nomCommune": "GEISPOLSHEIM" + "codePostal": "70120", + "codeCommune": "70329", + "libelleAcheminement": "MALVILLERS", + "nomCommune": "MALVILLERS" }, { - "codePostal": "49110", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "59213", + "codeCommune": "59537", + "libelleAcheminement": "ST MARTIN SUR ECAILLON", + "nomCommune": "ST MARTIN SUR ECAILLON" }, { - "codePostal": "41700", - "codeCommune": "41050", - "libelleAcheminement": "CHEVERNY", - "nomCommune": "CHEVERNY" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "10320", - "codeCommune": "10324", - "libelleAcheminement": "RONCENAY", - "nomCommune": "RONCENAY" + "codePostal": "70190", + "codeCommune": "70447", + "libelleAcheminement": "RIOZ", + "nomCommune": "RIOZ" }, { - "codePostal": "67270", - "codeCommune": "67153", - "libelleAcheminement": "GEISWILLER ZOEBERSDORF", - "nomCommune": "GEISWILLER ZOEBERSDORF" + "codePostal": "17570", + "codeCommune": "17225", + "libelleAcheminement": "LES MATHES", + "nomCommune": "LES MATHES" }, { - "codePostal": "49110", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "70110", + "codeCommune": "70332", + "libelleAcheminement": "MARAST", + "nomCommune": "MARAST" }, { - "codePostal": "41290", - "codeCommune": "41057", - "libelleAcheminement": "CONAN", - "nomCommune": "CONAN" + "codePostal": "59143", + "codeCommune": "59538", + "libelleAcheminement": "ST MOMELIN", + "nomCommune": "ST MOMELIN" }, { - "codePostal": "10260", - "codeCommune": "10331", - "libelleAcheminement": "RUMILLY LES VAUDES", - "nomCommune": "RUMILLY LES VAUDES" + "codePostal": "61200", + "codeCommune": "61170", + "libelleAcheminement": "FLEURE", + "nomCommune": "FLEURE" }, { - "codePostal": "67150", - "codeCommune": "67154", - "libelleAcheminement": "GERSTHEIM", - "nomCommune": "GERSTHEIM" + "codePostal": "70230", + "codeCommune": "70449", + "libelleAcheminement": "ROCHE LINOTTE ET SORANS CORDIERS", + "nomCommune": "ROCHE LINOTTE ET SORANS CORDIERS" }, { - "codePostal": "49600", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "17400", + "codeCommune": "17226", + "libelleAcheminement": "MAZERAY", + "nomCommune": "MAZERAY" }, { - "codePostal": "41120", - "codeCommune": "41059", - "libelleAcheminement": "LE CONTROIS EN SOLOGNE", - "nomCommune": "LE CONTROIS EN SOLOGNE" + "codePostal": "70150", + "codeCommune": "70334", + "libelleAcheminement": "MARNAY", + "nomCommune": "MARNAY" }, { - "codePostal": "10120", - "codeCommune": "10333", - "libelleAcheminement": "ST ANDRE LES VERGERS", - "nomCommune": "ST ANDRE LES VERGERS" + "codePostal": "59880", + "codeCommune": "59544", + "libelleAcheminement": "ST SAULVE", + "nomCommune": "ST SAULVE" }, { - "codePostal": "67350", - "codeCommune": "67166", - "libelleAcheminement": "GRASSENDORF", - "nomCommune": "GRASSENDORF" + "codePostal": "61230", + "codeCommune": "61178", + "libelleAcheminement": "LA FRESNAIE FAYEL", + "nomCommune": "LA FRESNAIE FAYEL" }, { - "codePostal": "49730", - "codeCommune": "49219", - "libelleAcheminement": "MONTSOREAU", - "nomCommune": "MONTSOREAU" + "codePostal": "70200", + "codeCommune": "70455", + "libelleAcheminement": "ROYE", + "nomCommune": "ROYE" }, { - "codePostal": "41120", - "codeCommune": "41059", - "libelleAcheminement": "LE CONTROIS EN SOLOGNE", - "nomCommune": "LE CONTROIS EN SOLOGNE" + "codePostal": "17800", + "codeCommune": "17227", + "libelleAcheminement": "MAZEROLLES", + "nomCommune": "MAZEROLLES" }, { - "codePostal": "10800", - "codeCommune": "10344", - "libelleAcheminement": "ST LEGER PRES TROYES", - "nomCommune": "ST LEGER PRES TROYES" + "codePostal": "70270", + "codeCommune": "70339", + "libelleAcheminement": "MELISEY", + "nomCommune": "MELISEY" }, { - "codePostal": "67980", - "codeCommune": "67182", - "libelleAcheminement": "HANGENBIETEN", - "nomCommune": "HANGENBIETEN" + "codePostal": "59360", + "codeCommune": "59545", + "libelleAcheminement": "ST SOUPLET", + "nomCommune": "ST SOUPLET" }, { - "codePostal": "49640", - "codeCommune": "49220", - "libelleAcheminement": "MORANNES SUR SARTHE DAUMERAY", - "nomCommune": "MORANNES SUR SARTHE DAUMERAY" + "codePostal": "61230", + "codeCommune": "61181", + "libelleAcheminement": "GACE", + "nomCommune": "GACE" }, { - "codePostal": "41170", - "codeCommune": "41060", - "libelleAcheminement": "CORMENON", - "nomCommune": "CORMENON" + "codePostal": "70360", + "codeCommune": "70457", + "libelleAcheminement": "RUPT SUR SAONE", + "nomCommune": "RUPT SUR SAONE" }, { - "codePostal": "10500", - "codeCommune": "10345", - "libelleAcheminement": "ST LEGER SOUS BRIENNE", - "nomCommune": "ST LEGER SOUS BRIENNE" + "codePostal": "17120", + "codeCommune": "17232", + "libelleAcheminement": "MEURSAC", + "nomCommune": "MEURSAC" }, { - "codePostal": "67690", - "codeCommune": "67184", - "libelleAcheminement": "HATTEN", - "nomCommune": "HATTEN" + "codePostal": "70160", + "codeCommune": "70341", + "libelleAcheminement": "MENOUX", + "nomCommune": "MENOUX" }, { - "codePostal": "49610", - "codeCommune": "49223", - "libelleAcheminement": "MURS ERIGNE", - "nomCommune": "MURS ERIGNE" + "codePostal": "59230", + "codeCommune": "59554", + "libelleAcheminement": "SARS ET ROSIERES", + "nomCommune": "SARS ET ROSIERES" }, { - "codePostal": "41500", - "codeCommune": "41066", - "libelleAcheminement": "COURBOUZON", - "nomCommune": "COURBOUZON" + "codePostal": "61150", + "codeCommune": "61194", + "libelleAcheminement": "MONTS SUR ORNE", + "nomCommune": "MONTS SUR ORNE" }, { - "codePostal": "10160", - "codeCommune": "10350", - "libelleAcheminement": "ST MARDS EN OTHE", - "nomCommune": "ST MARDS EN OTHE" + "codePostal": "70270", + "codeCommune": "70459", + "libelleAcheminement": "ST BARTHELEMY", + "nomCommune": "ST BARTHELEMY" }, { - "codePostal": "67390", - "codeCommune": "67187", - "libelleAcheminement": "HEIDOLSHEIM", - "nomCommune": "HEIDOLSHEIM" + "codePostal": "17780", + "codeCommune": "17237", + "libelleAcheminement": "MOEZE", + "nomCommune": "MOEZE" }, { - "codePostal": "49390", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "70300", + "codeCommune": "70344", + "libelleAcheminement": "MEURCOURT", + "nomCommune": "MEURCOURT" }, { - "codePostal": "41700", - "codeCommune": "41067", - "libelleAcheminement": "COUR CHEVERNY", - "nomCommune": "COUR CHEVERNY" + "codePostal": "59145", + "codeCommune": "59556", + "libelleAcheminement": "SASSEGNIES", + "nomCommune": "SASSEGNIES" }, { - "codePostal": "10200", - "codeCommune": "10366", - "libelleAcheminement": "SAULCY", - "nomCommune": "SAULCY" + "codePostal": "61130", + "codeCommune": "61196", + "libelleAcheminement": "BELFORET EN PERCHE", + "nomCommune": "BELFORET EN PERCHE" }, { - "codePostal": "67190", - "codeCommune": "67188", - "libelleAcheminement": "HEILIGENBERG", - "nomCommune": "HEILIGENBERG" + "codePostal": "70130", + "codeCommune": "70463", + "libelleAcheminement": "ST GAND", + "nomCommune": "ST GAND" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "17130", + "codeCommune": "17240", + "libelleAcheminement": "MONTENDRE", + "nomCommune": "MONTENDRE" }, { - "codePostal": "41100", - "codeCommune": "41072", - "libelleAcheminement": "CRUCHERAY", - "nomCommune": "CRUCHERAY" + "codePostal": "70270", + "codeCommune": "70361", + "libelleAcheminement": "MONTESSAUX", + "nomCommune": "MONTESSAUX" }, { - "codePostal": "10320", - "codeCommune": "10373", - "libelleAcheminement": "SOULIGNY", - "nomCommune": "SOULIGNY" + "codePostal": "59269", + "codeCommune": "59565", + "libelleAcheminement": "SEPMERIES", + "nomCommune": "SEPMERIES" }, { - "codePostal": "67140", - "codeCommune": "67189", - "libelleAcheminement": "HEILIGENSTEIN", - "nomCommune": "HEILIGENSTEIN" + "codePostal": "61320", + "codeCommune": "61209", + "libelleAcheminement": "JOUE DU BOIS", + "nomCommune": "JOUE DU BOIS" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "70200", + "codeCommune": "70464", + "libelleAcheminement": "ST GERMAIN", + "nomCommune": "ST GERMAIN" }, { - "codePostal": "41210", - "codeCommune": "41083", - "libelleAcheminement": "LA FERTE BEAUHARNAIS", - "nomCommune": "LA FERTE BEAUHARNAIS" + "codePostal": "17500", + "codeCommune": "17249", + "libelleAcheminement": "MORTIERS", + "nomCommune": "MORTIERS" }, { - "codePostal": "10700", - "codeCommune": "10380", - "libelleAcheminement": "TORCY LE PETIT", - "nomCommune": "TORCY LE PETIT" + "codePostal": "70000", + "codeCommune": "70363", + "libelleAcheminement": "MONTIGNY LES VESOUL", + "nomCommune": "MONTIGNY LES VESOUL" }, { - "codePostal": "67440", - "codeCommune": "67190", - "libelleAcheminement": "HENGWILLER", - "nomCommune": "HENGWILLER" + "codePostal": "59320", + "codeCommune": "59566", + "libelleAcheminement": "SEQUEDIN", + "nomCommune": "SEQUEDIN" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "61150", + "codeCommune": "61210", + "libelleAcheminement": "JOUE DU PLAIN", + "nomCommune": "JOUE DU PLAIN" }, { - "codePostal": "41220", - "codeCommune": "41085", - "libelleAcheminement": "LA FERTE ST CYR", - "nomCommune": "LA FERTE ST CYR" + "codePostal": "70100", + "codeCommune": "70466", + "libelleAcheminement": "ST LOUP NANTOUARD", + "nomCommune": "ST LOUP NANTOUARD" }, { - "codePostal": "10440", - "codeCommune": "10381", - "libelleAcheminement": "TORVILLIERS", - "nomCommune": "TORVILLIERS" + "codePostal": "17350", + "codeCommune": "17252", + "libelleAcheminement": "LE MUNG", + "nomCommune": "LE MUNG" }, { - "codePostal": "67260", - "codeCommune": "67199", - "libelleAcheminement": "HINSINGEN", - "nomCommune": "HINSINGEN" + "codePostal": "70000", + "codeCommune": "70367", + "libelleAcheminement": "MONT LE VERNOIS", + "nomCommune": "MONT LE VERNOIS" }, { - "codePostal": "49560", - "codeCommune": "49236", - "libelleAcheminement": "PASSAVANT SUR LAYON", - "nomCommune": "PASSAVANT SUR LAYON" + "codePostal": "59400", + "codeCommune": "59567", + "libelleAcheminement": "SERANVILLERS FORENVILLE", + "nomCommune": "SERANVILLERS FORENVILLE" }, { - "codePostal": "41800", - "codeCommune": "41100", - "libelleAcheminement": "LES HAYES", - "nomCommune": "LES HAYES" + "codePostal": "61330", + "codeCommune": "61211", + "libelleAcheminement": "JUVIGNY VAL D ANDAINE", + "nomCommune": "JUVIGNY VAL D ANDAINE" }, { - "codePostal": "10140", - "codeCommune": "10384", - "libelleAcheminement": "TRANNES", - "nomCommune": "TRANNES" + "codePostal": "70400", + "codeCommune": "70477", + "libelleAcheminement": "SAULNOT", + "nomCommune": "SAULNOT" }, { - "codePostal": "67250", - "codeCommune": "67206", - "libelleAcheminement": "HOFFEN", - "nomCommune": "HOFFEN" + "codePostal": "17510", + "codeCommune": "17257", + "libelleAcheminement": "NERE", + "nomCommune": "NERE" }, { - "codePostal": "49130", - "codeCommune": "49246", - "libelleAcheminement": "LES PONTS DE CE", - "nomCommune": "LES PONTS DE CE" + "codePostal": "70120", + "codeCommune": "70373", + "libelleAcheminement": "LA ROCHE MOREY", + "nomCommune": "LA ROCHE MOREY" }, { - "codePostal": "41190", - "codeCommune": "41101", - "libelleAcheminement": "HERBAULT", - "nomCommune": "HERBAULT" + "codePostal": "59380", + "codeCommune": "59570", + "libelleAcheminement": "SOCX", + "nomCommune": "SOCX" }, { - "codePostal": "10140", - "codeCommune": "10389", - "libelleAcheminement": "UNIENVILLE", - "nomCommune": "UNIENVILLE" + "codePostal": "61320", + "codeCommune": "61216", + "libelleAcheminement": "LA LANDE DE GOULT", + "nomCommune": "LA LANDE DE GOULT" }, { - "codePostal": "67140", - "codeCommune": "67210", - "libelleAcheminement": "LE HOHWALD", - "nomCommune": "LE HOHWALD" + "codePostal": "70400", + "codeCommune": "70477", + "libelleAcheminement": "SAULNOT", + "nomCommune": "SAULNOT" }, { - "codePostal": "49190", - "codeCommune": "49259", - "libelleAcheminement": "ROCHEFORT SUR LOIRE", - "nomCommune": "ROCHEFORT SUR LOIRE" + "codePostal": "17490", + "codeCommune": "17261", + "libelleAcheminement": "NEUVICQ LE CHATEAU", + "nomCommune": "NEUVICQ LE CHATEAU" }, { - "codePostal": "41800", - "codeCommune": "41102", - "libelleAcheminement": "HOUSSAY", - "nomCommune": "HOUSSAY" + "codePostal": "70000", + "codeCommune": "70381", + "libelleAcheminement": "NEUREY LES LA DEMIE", + "nomCommune": "NEUREY LES LA DEMIE" }, { - "codePostal": "10200", - "codeCommune": "10390", - "libelleAcheminement": "URVILLE", - "nomCommune": "URVILLE" + "codePostal": "59114", + "codeCommune": "59587", + "libelleAcheminement": "TERDEGHEM", + "nomCommune": "TERDEGHEM" }, { - "codePostal": "67810", - "codeCommune": "67212", - "libelleAcheminement": "HOLTZHEIM", - "nomCommune": "HOLTZHEIM" + "codePostal": "61250", + "codeCommune": "61224", + "libelleAcheminement": "LARRE", + "nomCommune": "LARRE" }, { - "codePostal": "49740", - "codeCommune": "49260", - "libelleAcheminement": "LA ROMAGNE", - "nomCommune": "LA ROMAGNE" + "codePostal": "70360", + "codeCommune": "70482", + "libelleAcheminement": "SCEY SUR SAONE ET ST ALBIN", + "nomCommune": "SCEY SUR SAONE ET ST ALBIN" }, { - "codePostal": "41600", - "codeCommune": "41106", - "libelleAcheminement": "LAMOTTE BEUVRON", - "nomCommune": "LAMOTTE BEUVRON" + "codePostal": "17810", + "codeCommune": "17262", + "libelleAcheminement": "NIEUL LES SAINTES", + "nomCommune": "NIEUL LES SAINTES" }, { - "codePostal": "10500", - "codeCommune": "10393", - "libelleAcheminement": "VALLENTIGNY", - "nomCommune": "VALLENTIGNY" + "codePostal": "70190", + "codeCommune": "70383", + "libelleAcheminement": "NEUVELLE LES CROMARY", + "nomCommune": "NEUVELLE LES CROMARY" }, { - "codePostal": "67640", - "codeCommune": "67217", - "libelleAcheminement": "ICHTRATZHEIM", - "nomCommune": "ICHTRATZHEIM" + "codePostal": "59158", + "codeCommune": "59594", + "libelleAcheminement": "THUN ST AMAND", + "nomCommune": "THUN ST AMAND" }, { - "codePostal": "49160", - "codeCommune": "49261", - "libelleAcheminement": "GENNES VAL DE LOIRE", - "nomCommune": "GENNES VAL DE LOIRE" + "codePostal": "61290", + "codeCommune": "61230", + "libelleAcheminement": "LONGNY LES VILLAGES", + "nomCommune": "LONGNY LES VILLAGES" }, { - "codePostal": "41310", - "codeCommune": "41107", - "libelleAcheminement": "LANCE", - "nomCommune": "LANCE" + "codePostal": "70110", + "codeCommune": "70487", + "libelleAcheminement": "SENARGENT MIGNAFANS", + "nomCommune": "SENARGENT MIGNAFANS" }, { - "codePostal": "10210", - "codeCommune": "10394", - "libelleAcheminement": "VALLIERES", - "nomCommune": "VALLIERES" + "codePostal": "17137", + "codeCommune": "17264", + "libelleAcheminement": "NIEUL SUR MER", + "nomCommune": "NIEUL SUR MER" }, { - "codePostal": "67400", - "codeCommune": "67218", - "libelleAcheminement": "ILLKIRCH GRAFFENSTADEN", - "nomCommune": "ILLKIRCH GRAFFENSTADEN" + "codePostal": "70200", + "codeCommune": "70385", + "libelleAcheminement": "LA NEUVELLE LES LURE", + "nomCommune": "LA NEUVELLE LES LURE" }, { - "codePostal": "49350", - "codeCommune": "49261", - "libelleAcheminement": "GENNES VAL DE LOIRE", - "nomCommune": "GENNES VAL DE LOIRE" + "codePostal": "59870", + "codeCommune": "59596", + "libelleAcheminement": "TILLOY LEZ MARCHIENNES", + "nomCommune": "TILLOY LEZ MARCHIENNES" }, { - "codePostal": "41230", - "codeCommune": "41112", - "libelleAcheminement": "LASSAY SUR CROISNE", - "nomCommune": "LASSAY SUR CROISNE" + "codePostal": "61290", + "codeCommune": "61230", + "libelleAcheminement": "LONGNY LES VILLAGES", + "nomCommune": "LONGNY LES VILLAGES" }, { - "codePostal": "10410", - "codeCommune": "10412", - "libelleAcheminement": "VILLECHETIF", - "nomCommune": "VILLECHETIF" + "codePostal": "70440", + "codeCommune": "70489", + "libelleAcheminement": "SERVANCE MIELLIN", + "nomCommune": "SERVANCE MIELLIN" }, { - "codePostal": "67250", - "codeCommune": "67221", - "libelleAcheminement": "INGOLSHEIM", - "nomCommune": "INGOLSHEIM" + "codePostal": "17540", + "codeCommune": "17267", + "libelleAcheminement": "NUAILLE D AUNIS", + "nomCommune": "NUAILLE D AUNIS" }, { - "codePostal": "49350", - "codeCommune": "49261", - "libelleAcheminement": "GENNES VAL DE LOIRE", - "nomCommune": "GENNES VAL DE LOIRE" + "codePostal": "70130", + "codeCommune": "70387", + "libelleAcheminement": "NOIDANS LE FERROUX", + "nomCommune": "NOIDANS LE FERROUX" }, { - "codePostal": "41500", - "codeCommune": "41114", - "libelleAcheminement": "LESTIOU", - "nomCommune": "LESTIOU" + "codePostal": "59551", + "codeCommune": "59600", + "libelleAcheminement": "TOURMIGNIES", + "nomCommune": "TOURMIGNIES" }, { - "codePostal": "10800", - "codeCommune": "10416", - "libelleAcheminement": "VILLEMEREUIL", - "nomCommune": "VILLEMEREUIL" + "codePostal": "61290", + "codeCommune": "61230", + "libelleAcheminement": "LONGNY LES VILLAGES", + "nomCommune": "LONGNY LES VILLAGES" }, { - "codePostal": "67330", - "codeCommune": "67225", - "libelleAcheminement": "ISSENHAUSEN", - "nomCommune": "ISSENHAUSEN" + "codePostal": "70130", + "codeCommune": "70492", + "libelleAcheminement": "SOING CUBRY CHARENTENAY", + "nomCommune": "SOING CUBRY CHARENTENAY" }, { - "codePostal": "49400", - "codeCommune": "49262", - "libelleAcheminement": "ROU MARSON", - "nomCommune": "ROU MARSON" + "codePostal": "17400", + "codeCommune": "17277", + "libelleAcheminement": "ESSOUVERT", + "nomCommune": "ESSOUVERT" }, { - "codePostal": "41360", - "codeCommune": "41120", - "libelleAcheminement": "LUNAY", - "nomCommune": "LUNAY" + "codePostal": "70100", + "codeCommune": "70389", + "libelleAcheminement": "NOIRON", + "nomCommune": "NOIRON" }, { - "codePostal": "10400", - "codeCommune": "10421", - "libelleAcheminement": "LA VILLENEUVE AU CHATELOT", - "nomCommune": "LA VILLENEUVE AU CHATELOT" + "codePostal": "59980", + "codeCommune": "59604", + "libelleAcheminement": "TROISVILLES", + "nomCommune": "TROISVILLES" }, { - "codePostal": "67370", - "codeCommune": "67228", - "libelleAcheminement": "NEUGARTHEIM ITTLENHEIM", - "nomCommune": "NEUGARTHEIM ITTLENHEIM" + "codePostal": "61500", + "codeCommune": "61240", + "libelleAcheminement": "MACE", + "nomCommune": "MACE" }, { - "codePostal": "49280", - "codeCommune": "49269", - "libelleAcheminement": "ST CHRISTOPHE DU BOIS", - "nomCommune": "ST CHRISTOPHE DU BOIS" + "codePostal": "70500", + "codeCommune": "70496", + "libelleAcheminement": "TARTECOURT", + "nomCommune": "TARTECOURT" }, { - "codePostal": "41370", - "codeCommune": "41121", - "libelleAcheminement": "LA MADELEINE VILLEFROUIN", - "nomCommune": "LA MADELEINE VILLEFROUIN" + "codePostal": "17600", + "codeCommune": "17278", + "libelleAcheminement": "PISANY", + "nomCommune": "PISANY" }, { - "codePostal": "10140", - "codeCommune": "10423", - "libelleAcheminement": "LA VILLENEUVE AU CHENE", - "nomCommune": "LA VILLENEUVE AU CHENE" + "codePostal": "70100", + "codeCommune": "70394", + "libelleAcheminement": "ONAY", + "nomCommune": "ONAY" }, { - "codePostal": "67270", - "codeCommune": "67236", - "libelleAcheminement": "KIENHEIM", - "nomCommune": "KIENHEIM" + "codePostal": "59218", + "codeCommune": "59607", + "libelleAcheminement": "VENDEGIES AU BOIS", + "nomCommune": "VENDEGIES AU BOIS" }, { - "codePostal": "49130", - "codeCommune": "49278", - "libelleAcheminement": "STE GEMMES SUR LOIRE", - "nomCommune": "STE GEMMES SUR LOIRE" + "codePostal": "61110", + "codeCommune": "61241", + "libelleAcheminement": "LA MADELEINE BOUVET", + "nomCommune": "LA MADELEINE BOUVET" }, { - "codePostal": "41210", - "codeCommune": "41125", - "libelleAcheminement": "MARCILLY EN GAULT", - "nomCommune": "MARCILLY EN GAULT" + "codePostal": "70120", + "codeCommune": "70502", + "libelleAcheminement": "TINCEY ET PONTREBEAU", + "nomCommune": "TINCEY ET PONTREBEAU" }, { - "codePostal": "10330", - "codeCommune": "10424", - "libelleAcheminement": "VILLERET", - "nomCommune": "VILLERET" + "codePostal": "17240", + "codeCommune": "17279", + "libelleAcheminement": "PLASSAC", + "nomCommune": "PLASSAC" }, { - "codePostal": "67350", - "codeCommune": "67238", - "libelleAcheminement": "KINDWILLER", - "nomCommune": "KINDWILLER" + "codePostal": "70110", + "codeCommune": "70395", + "libelleAcheminement": "OPPENANS", + "nomCommune": "OPPENANS" }, { - "codePostal": "49230", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "59175", + "codeCommune": "59609", + "libelleAcheminement": "VENDEVILLE", + "nomCommune": "VENDEVILLE" }, { - "codePostal": "41330", - "codeCommune": "41128", - "libelleAcheminement": "MAROLLES", - "nomCommune": "MAROLLES" + "codePostal": "61800", + "codeCommune": "61262", + "libelleAcheminement": "LE MENIL CIBOULT", + "nomCommune": "LE MENIL CIBOULT" }, { - "codePostal": "10320", - "codeCommune": "10425", - "libelleAcheminement": "VILLERY", - "nomCommune": "VILLERY" + "codePostal": "70190", + "codeCommune": "70503", + "libelleAcheminement": "TRAITIEFONTAINE", + "nomCommune": "TRAITIEFONTAINE" }, { - "codePostal": "67440", - "codeCommune": "67244", - "libelleAcheminement": "KLEINGOEFT", - "nomCommune": "KLEINGOEFT" + "codePostal": "17130", + "codeCommune": "17282", + "libelleAcheminement": "POMMIERS MOULONS", + "nomCommune": "POMMIERS MOULONS" }, { - "codePostal": "49610", - "codeCommune": "49308", - "libelleAcheminement": "ST MELAINE SUR AUBANCE", - "nomCommune": "ST MELAINE SUR AUBANCE" + "codePostal": "70110", + "codeCommune": "70396", + "libelleAcheminement": "ORICOURT", + "nomCommune": "ORICOURT" }, { - "codePostal": "41140", - "codeCommune": "41132", - "libelleAcheminement": "MEHERS", - "nomCommune": "MEHERS" + "codePostal": "59227", + "codeCommune": "59610", + "libelleAcheminement": "VERCHAIN MAUGRE", + "nomCommune": "VERCHAIN MAUGRE" }, { - "codePostal": "10310", - "codeCommune": "10426", - "libelleAcheminement": "VILLE SOUS LA FERTE", - "nomCommune": "VILLE SOUS LA FERTE" + "codePostal": "61320", + "codeCommune": "61271", + "libelleAcheminement": "LE MENIL SCELLEUR", + "nomCommune": "LE MENIL SCELLEUR" }, { - "codePostal": "67310", - "codeCommune": "67245", - "libelleAcheminement": "KNOERSHEIM", - "nomCommune": "KNOERSHEIM" + "codePostal": "70100", + "codeCommune": "70505", + "libelleAcheminement": "LE TREMBLOIS", + "nomCommune": "LE TREMBLOIS" }, { - "codePostal": "49123", - "codeCommune": "49321", - "libelleAcheminement": "ST SIGISMOND", - "nomCommune": "ST SIGISMOND" + "codePostal": "17800", + "codeCommune": "17283", + "libelleAcheminement": "PONS", + "nomCommune": "PONS" }, { - "codePostal": "41100", - "codeCommune": "41138", - "libelleAcheminement": "MESLAY", - "nomCommune": "MESLAY" + "codePostal": "70500", + "codeCommune": "70399", + "libelleAcheminement": "ORMOY", + "nomCommune": "ORMOY" }, { - "codePostal": "10140", - "codeCommune": "10433", - "libelleAcheminement": "VILLY EN TRODES", - "nomCommune": "VILLY EN TRODES" + "codePostal": "59232", + "codeCommune": "59615", + "libelleAcheminement": "VIEUX BERQUIN", + "nomCommune": "VIEUX BERQUIN" }, { - "codePostal": "67250", - "codeCommune": "67254", - "libelleAcheminement": "KUTZENHAUSEN", - "nomCommune": "KUTZENHAUSEN" + "codePostal": "61440", + "codeCommune": "61278", + "libelleAcheminement": "MESSEI", + "nomCommune": "MESSEI" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "70190", + "codeCommune": "70507", + "libelleAcheminement": "TRESILLEY", + "nomCommune": "TRESILLEY" }, { - "codePostal": "41200", - "codeCommune": "41140", - "libelleAcheminement": "MILLANCAY", - "nomCommune": "MILLANCAY" + "codePostal": "17250", + "codeCommune": "17284", + "libelleAcheminement": "PONT L ABBE D ARNOULT", + "nomCommune": "PONT L ABBE D ARNOULT" }, { - "codePostal": "10110", - "codeCommune": "10439", - "libelleAcheminement": "VIVIERS SUR ARTAUT", - "nomCommune": "VIVIERS SUR ARTAUT" + "codePostal": "70210", + "codeCommune": "70404", + "libelleAcheminement": "PASSAVANT LA ROCHERE", + "nomCommune": "PASSAVANT LA ROCHERE" }, { - "codePostal": "67250", - "codeCommune": "67257", - "libelleAcheminement": "LAMPERTSLOCH", - "nomCommune": "LAMPERTSLOCH" + "codePostal": "59530", + "codeCommune": "59619", + "libelleAcheminement": "VILLEREAU", + "nomCommune": "VILLEREAU" }, { - "codePostal": "49140", - "codeCommune": "49333", - "libelleAcheminement": "SEICHES SUR LE LOIR", - "nomCommune": "SEICHES SUR LE LOIR" + "codePostal": "61160", + "codeCommune": "61289", + "libelleAcheminement": "MONT ORMEL", + "nomCommune": "MONT ORMEL" }, { - "codePostal": "41160", - "codeCommune": "41141", - "libelleAcheminement": "MOISY", - "nomCommune": "MOISY" + "codePostal": "70140", + "codeCommune": "70514", + "libelleAcheminement": "VALAY", + "nomCommune": "VALAY" }, { - "codePostal": "11800", - "codeCommune": "11001", - "libelleAcheminement": "AIGUES VIVES", - "nomCommune": "AIGUES VIVES" + "codePostal": "17380", + "codeCommune": "17292", + "libelleAcheminement": "PUY DU LAC", + "nomCommune": "PUY DU LAC" }, { - "codePostal": "67360", - "codeCommune": "67259", - "libelleAcheminement": "LANGENSOULTZBACH", - "nomCommune": "LANGENSOULTZBACH" + "codePostal": "70190", + "codeCommune": "70405", + "libelleAcheminement": "PENNESIERES", + "nomCommune": "PENNESIERES" }, { - "codePostal": "49140", - "codeCommune": "49333", - "libelleAcheminement": "SEICHES SUR LE LOIR", - "nomCommune": "SEICHES SUR LE LOIR" + "codePostal": "59234", + "codeCommune": "59620", + "libelleAcheminement": "VILLERS AU TERTRE", + "nomCommune": "VILLERS AU TERTRE" }, { - "codePostal": "41150", - "codeCommune": "41144", - "libelleAcheminement": "MONTEAUX", - "nomCommune": "MONTEAUX" + "codePostal": "61160", + "codeCommune": "61291", + "libelleAcheminement": "MONTREUIL LA CAMBE", + "nomCommune": "MONTREUIL LA CAMBE" }, { - "codePostal": "11200", - "codeCommune": "11013", - "libelleAcheminement": "ARGENS MINERVOIS", - "nomCommune": "ARGENS MINERVOIS" + "codePostal": "70160", + "codeCommune": "70518", + "libelleAcheminement": "LE VAL ST ELOI", + "nomCommune": "LE VAL ST ELOI" }, { - "codePostal": "67580", - "codeCommune": "67260", - "libelleAcheminement": "LAUBACH", - "nomCommune": "LAUBACH" + "codePostal": "17940", + "codeCommune": "17297", + "libelleAcheminement": "RIVEDOUX PLAGE", + "nomCommune": "RIVEDOUX PLAGE" }, { - "codePostal": "49730", - "codeCommune": "49358", - "libelleAcheminement": "TURQUANT", - "nomCommune": "TURQUANT" + "codePostal": "70600", + "codeCommune": "70406", + "libelleAcheminement": "PERCEY LE GRAND", + "nomCommune": "PERCEY LE GRAND" }, { - "codePostal": "41210", - "codeCommune": "41152", - "libelleAcheminement": "MONTRIEUX EN SOLOGNE", - "nomCommune": "MONTRIEUX EN SOLOGNE" + "codePostal": "59188", + "codeCommune": "59622", + "libelleAcheminement": "VILLERS EN CAUCHIES", + "nomCommune": "VILLERS EN CAUCHIES" }, { - "codePostal": "11110", - "codeCommune": "11014", - "libelleAcheminement": "ARMISSAN", - "nomCommune": "ARMISSAN" + "codePostal": "61800", + "codeCommune": "61292", + "libelleAcheminement": "MONTSECRET CLAIREFOUGERE", + "nomCommune": "MONTSECRET CLAIREFOUGERE" }, { - "codePostal": "67630", - "codeCommune": "67261", - "libelleAcheminement": "LAUTERBOURG", - "nomCommune": "LAUTERBOURG" + "codePostal": "70190", + "codeCommune": "70519", + "libelleAcheminement": "VANDELANS", + "nomCommune": "VANDELANS" }, { - "codePostal": "49730", - "codeCommune": "49361", - "libelleAcheminement": "VARENNES SUR LOIRE", - "nomCommune": "VARENNES SUR LOIRE" + "codePostal": "17460", + "codeCommune": "17298", + "libelleAcheminement": "RIOUX", + "nomCommune": "RIOUX" }, { - "codePostal": "41230", - "codeCommune": "41157", - "libelleAcheminement": "MUR DE SOLOGNE", - "nomCommune": "MUR DE SOLOGNE" + "codePostal": "70290", + "codeCommune": "70413", + "libelleAcheminement": "PLANCHER BAS", + "nomCommune": "PLANCHER BAS" }, { - "codePostal": "11290", - "codeCommune": "11018", - "libelleAcheminement": "ARZENS", - "nomCommune": "ARZENS" + "codePostal": "59600", + "codeCommune": "59627", + "libelleAcheminement": "VILLERS SIRE NICOLE", + "nomCommune": "VILLERS SIRE NICOLE" }, { - "codePostal": "67510", - "codeCommune": "67263", - "libelleAcheminement": "LEMBACH", - "nomCommune": "LEMBACH" + "codePostal": "61380", + "codeCommune": "61297", + "libelleAcheminement": "MOULINS LA MARCHE", + "nomCommune": "MOULINS LA MARCHE" }, { - "codePostal": "49260", - "codeCommune": "49364", - "libelleAcheminement": "VAUDELNAY", - "nomCommune": "VAUDELNAY" + "codePostal": "70100", + "codeCommune": "70528", + "libelleAcheminement": "VELESMES ECHEVANNE", + "nomCommune": "VELESMES ECHEVANNE" }, { - "codePostal": "41100", - "codeCommune": "41158", - "libelleAcheminement": "NAVEIL", - "nomCommune": "NAVEIL" + "codePostal": "17300", + "codeCommune": "17299", + "libelleAcheminement": "ROCHEFORT", + "nomCommune": "ROCHEFORT" }, { - "codePostal": "11600", - "codeCommune": "11025", - "libelleAcheminement": "BAGNOLES", - "nomCommune": "BAGNOLES" + "codePostal": "70360", + "codeCommune": "70417", + "libelleAcheminement": "PONTCEY", + "nomCommune": "PONTCEY" }, { - "codePostal": "67480", - "codeCommune": "67264", - "libelleAcheminement": "LEUTENHEIM", - "nomCommune": "LEUTENHEIM" + "codePostal": "59470", + "codeCommune": "59628", + "libelleAcheminement": "VOLCKERINCKHOVE", + "nomCommune": "VOLCKERINCKHOVE" }, { - "codePostal": "49220", - "codeCommune": "49367", - "libelleAcheminement": "ERDRE EN ANJOU", - "nomCommune": "ERDRE EN ANJOU" + "codePostal": "61200", + "codeCommune": "61314", + "libelleAcheminement": "OCCAGNES", + "nomCommune": "OCCAGNES" }, { - "codePostal": "41310", - "codeCommune": "41163", - "libelleAcheminement": "NOURRAY", - "nomCommune": "NOURRAY" + "codePostal": "70130", + "codeCommune": "70549", + "libelleAcheminement": "LA VERNOTTE", + "nomCommune": "LA VERNOTTE" }, { - "codePostal": "11800", - "codeCommune": "11027", - "libelleAcheminement": "BARBAIRA", - "nomCommune": "BARBAIRA" + "codePostal": "17130", + "codeCommune": "17305", + "libelleAcheminement": "ROUFFIGNAC", + "nomCommune": "ROUFFIGNAC" }, { - "codePostal": "67340", - "codeCommune": "67265", - "libelleAcheminement": "LICHTENBERG", - "nomCommune": "LICHTENBERG" + "codePostal": "70130", + "codeCommune": "70418", + "libelleAcheminement": "LA ROMAINE", + "nomCommune": "LA ROMAINE" }, { - "codePostal": "49340", - "codeCommune": "49371", - "libelleAcheminement": "VEZINS", - "nomCommune": "VEZINS" + "codePostal": "59127", + "codeCommune": "59631", + "libelleAcheminement": "WALINCOURT SELVIGNY", + "nomCommune": "WALINCOURT SELVIGNY" }, { - "codePostal": "41290", - "codeCommune": "41171", - "libelleAcheminement": "OUCQUES LA NOUVELLE", - "nomCommune": "OUCQUES LA NOUVELLE" + "codePostal": "61160", + "codeCommune": "61316", + "libelleAcheminement": "OMMOY", + "nomCommune": "OMMOY" }, { - "codePostal": "11580", - "codeCommune": "11029", - "libelleAcheminement": "BELCASTEL ET BUC", - "nomCommune": "BELCASTEL ET BUC" + "codePostal": "70000", + "codeCommune": "70550", + "libelleAcheminement": "VESOUL", + "nomCommune": "VESOUL" }, { - "codePostal": "67150", - "codeCommune": "67266", - "libelleAcheminement": "LIMERSHEIM", - "nomCommune": "LIMERSHEIM" + "codePostal": "17620", + "codeCommune": "17308", + "libelleAcheminement": "ST AGNANT", + "nomCommune": "ST AGNANT" }, { - "codePostal": "49310", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "70110", + "codeCommune": "70420", + "libelleAcheminement": "PONT SUR L OGNON", + "nomCommune": "PONT SUR L OGNON" }, { - "codePostal": "41290", - "codeCommune": "41171", - "libelleAcheminement": "OUCQUES LA NOUVELLE", - "nomCommune": "OUCQUES LA NOUVELLE" + "codePostal": "59400", + "codeCommune": "59635", + "libelleAcheminement": "WAMBAIX", + "nomCommune": "WAMBAIX" }, { - "codePostal": "11420", - "codeCommune": "11033", - "libelleAcheminement": "BELPECH", - "nomCommune": "BELPECH" + "codePostal": "61230", + "codeCommune": "61317", + "libelleAcheminement": "ORGERES", + "nomCommune": "ORGERES" }, { - "codePostal": "67250", - "codeCommune": "67271", - "libelleAcheminement": "LOBSANN", - "nomCommune": "LOBSANN" + "codePostal": "70000", + "codeCommune": "70559", + "libelleAcheminement": "VILLEPAROIS", + "nomCommune": "VILLEPAROIS" }, { - "codePostal": "49310", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "17360", + "codeCommune": "17309", + "libelleAcheminement": "ST AIGULIN", + "nomCommune": "ST AIGULIN" }, { - "codePostal": "41240", - "codeCommune": "41173", - "libelleAcheminement": "BEAUCE LA ROMAINE", - "nomCommune": "BEAUCE LA ROMAINE" + "codePostal": "70120", + "codeCommune": "70423", + "libelleAcheminement": "PREIGNEY", + "nomCommune": "PREIGNEY" }, { - "codePostal": "11500", - "codeCommune": "11035", - "libelleAcheminement": "BELVIANES ET CAVIRAC", - "nomCommune": "BELVIANES ET CAVIRAC" + "codePostal": "59252", + "codeCommune": "59645", + "libelleAcheminement": "WASNES AU BAC", + "nomCommune": "WASNES AU BAC" }, { - "codePostal": "67390", - "codeCommune": "67277", - "libelleAcheminement": "MACKENHEIM", - "nomCommune": "MACKENHEIM" + "codePostal": "61130", + "codeCommune": "61319", + "libelleAcheminement": "ORIGNY LE ROUX", + "nomCommune": "ORIGNY LE ROUX" }, { - "codePostal": "49310", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "70110", + "codeCommune": "70561", + "libelleAcheminement": "VILLERSEXEL", + "nomCommune": "VILLERSEXEL" }, { - "codePostal": "41240", - "codeCommune": "41173", - "libelleAcheminement": "BEAUCE LA ROMAINE", - "nomCommune": "BEAUCE LA ROMAINE" + "codePostal": "17240", + "codeCommune": "17317", + "libelleAcheminement": "ST CIERS DU TAILLON", + "nomCommune": "ST CIERS DU TAILLON" }, { - "codePostal": "11700", - "codeCommune": "11042", - "libelleAcheminement": "BLOMAC", - "nomCommune": "BLOMAC" + "codePostal": "70000", + "codeCommune": "70429", + "libelleAcheminement": "PUSY ET EPENOUX", + "nomCommune": "PUSY ET EPENOUX" }, { - "codePostal": "67700", - "codeCommune": "67279", - "libelleAcheminement": "MAENNOLSHEIM", - "nomCommune": "MAENNOLSHEIM" + "codePostal": "59290", + "codeCommune": "59646", + "libelleAcheminement": "WASQUEHAL", + "nomCommune": "WASQUEHAL" }, { - "codePostal": "49540", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "61250", + "codeCommune": "61321", + "libelleAcheminement": "PACE", + "nomCommune": "PACE" }, { - "codePostal": "41100", - "codeCommune": "41175", - "libelleAcheminement": "PEZOU", - "nomCommune": "PEZOU" + "codePostal": "70170", + "codeCommune": "70566", + "libelleAcheminement": "VILLERS SUR PORT", + "nomCommune": "VILLERS SUR PORT" }, { - "codePostal": "11300", - "codeCommune": "11045", - "libelleAcheminement": "BOURIEGE", - "nomCommune": "BOURIEGE" + "codePostal": "17590", + "codeCommune": "17318", + "libelleAcheminement": "ST CLEMENT DES BALEINES", + "nomCommune": "ST CLEMENT DES BALEINES" }, { - "codePostal": "67220", - "codeCommune": "67280", - "libelleAcheminement": "MAISONSGOUTTE", - "nomCommune": "MAISONSGOUTTE" + "codePostal": "70120", + "codeCommune": "70430", + "libelleAcheminement": "LA QUARTE", + "nomCommune": "LA QUARTE" }, { - "codePostal": "49360", - "codeCommune": "49381", - "libelleAcheminement": "YZERNAY", - "nomCommune": "YZERNAY" + "codePostal": "59143", + "codeCommune": "59647", + "libelleAcheminement": "WATTEN", + "nomCommune": "WATTEN" }, { - "codePostal": "41310", - "codeCommune": "41184", - "libelleAcheminement": "PRUNAY CASSEREAU", - "nomCommune": "PRUNAY CASSEREAU" + "codePostal": "61400", + "codeCommune": "61322", + "libelleAcheminement": "PARFONDEVAL", + "nomCommune": "PARFONDEVAL" }, { - "codePostal": "11400", - "codeCommune": "11054", - "libelleAcheminement": "LES BRUNELS", - "nomCommune": "LES BRUNELS" + "codePostal": "70120", + "codeCommune": "70568", + "libelleAcheminement": "VILLERS VAUDEY", + "nomCommune": "VILLERS VAUDEY" }, { - "codePostal": "67150", - "codeCommune": "67285", - "libelleAcheminement": "MATZENHEIM", - "nomCommune": "MATZENHEIM" + "codePostal": "17810", + "codeCommune": "17336", + "libelleAcheminement": "ST GEORGES DES COTEAUX", + "nomCommune": "ST GEORGES DES COTEAUX" }, { - "codePostal": "50680", - "codeCommune": "50004", - "libelleAcheminement": "AIREL", - "nomCommune": "AIREL" + "codePostal": "70130", + "codeCommune": "70440", + "libelleAcheminement": "RECOLOGNE LES RAY", + "nomCommune": "RECOLOGNE" }, { - "codePostal": "41160", - "codeCommune": "41186", - "libelleAcheminement": "RAHART", - "nomCommune": "RAHART" + "codePostal": "59139", + "codeCommune": "59648", + "libelleAcheminement": "WATTIGNIES", + "nomCommune": "WATTIGNIES" }, { - "codePostal": "11240", - "codeCommune": "11058", - "libelleAcheminement": "CAILHAU", - "nomCommune": "CAILHAU" + "codePostal": "61290", + "codeCommune": "61323", + "libelleAcheminement": "LE PAS ST L HOMER", + "nomCommune": "LE PAS ST L HOMER" }, { - "codePostal": "67150", - "codeCommune": "67285", - "libelleAcheminement": "MATZENHEIM", - "nomCommune": "MATZENHEIM" + "codePostal": "70500", + "codeCommune": "70572", + "libelleAcheminement": "VITREY SUR MANCE", + "nomCommune": "VITREY SUR MANCE" }, { - "codePostal": "50400", - "codeCommune": "50008", - "libelleAcheminement": "ANCTOVILLE SUR BOSCQ", - "nomCommune": "ANCTOVILLE SUR BOSCQ" + "codePostal": "17240", + "codeCommune": "17342", + "libelleAcheminement": "ST GERMAIN DU SEUDRE", + "nomCommune": "ST GERMAIN DU SEUDRE" }, { - "codePostal": "41800", - "codeCommune": "41192", - "libelleAcheminement": "LES ROCHES L EVEQUE", - "nomCommune": "LES ROCHES L EVEQUE" + "codePostal": "70300", + "codeCommune": "70470", + "libelleAcheminement": "STE MARIE EN CHAUX", + "nomCommune": "STE MARIE EN CHAUX" }, { - "codePostal": "11140", - "codeCommune": "11060", - "libelleAcheminement": "CAILLA", - "nomCommune": "CAILLA" + "codePostal": "59220", + "codeCommune": "59651", + "libelleAcheminement": "WAVRECHAIN SOUS DENAIN", + "nomCommune": "WAVRECHAIN SOUS DENAIN" }, { - "codePostal": "67270", - "codeCommune": "67287", - "libelleAcheminement": "MELSHEIM", - "nomCommune": "MELSHEIM" + "codePostal": "61350", + "codeCommune": "61324", + "libelleAcheminement": "PASSAIS VILLAGES", + "nomCommune": "PASSAIS VILLAGES" }, { - "codePostal": "50500", - "codeCommune": "50023", - "libelleAcheminement": "AUVERS", - "nomCommune": "AUVERS" + "codePostal": "70200", + "codeCommune": "70581", + "libelleAcheminement": "VY LES LURE", + "nomCommune": "VY LES LURE" }, { - "codePostal": "41200", - "codeCommune": "41194", - "libelleAcheminement": "ROMORANTIN LANTHENAY", - "nomCommune": "ROMORANTIN LANTHENAY" + "codePostal": "17320", + "codeCommune": "17351", + "libelleAcheminement": "ST JUST LUZAC", + "nomCommune": "ST JUST LUZAC" }, { - "codePostal": "11340", - "codeCommune": "11066", - "libelleAcheminement": "CAMURAC", - "nomCommune": "CAMURAC" + "codePostal": "70160", + "codeCommune": "70472", + "libelleAcheminement": "ST REMY EN COMTE", + "nomCommune": "ST REMY EN COMTE" }, { - "codePostal": "67250", - "codeCommune": "67290", - "libelleAcheminement": "MERKWILLER PECHELBRONN", - "nomCommune": "MERKWILLER PECHELBRONN" + "codePostal": "59136", + "codeCommune": "59653", + "libelleAcheminement": "WAVRIN", + "nomCommune": "WAVRIN" }, { - "codePostal": "50300", - "codeCommune": "50025", - "libelleAcheminement": "AVRANCHES", - "nomCommune": "AVRANCHES" + "codePostal": "61350", + "codeCommune": "61324", + "libelleAcheminement": "PASSAIS VILLAGES", + "nomCommune": "PASSAIS VILLAGES" }, { - "codePostal": "41270", - "codeCommune": "41196", - "libelleAcheminement": "RUAN SUR EGVONNE", - "nomCommune": "RUAN SUR EGVONNE" + "codePostal": "71380", + "codeCommune": "71004", + "libelleAcheminement": "ALLERIOT", + "nomCommune": "ALLERIOT" }, { - "codePostal": "11200", - "codeCommune": "11067", - "libelleAcheminement": "CANET", - "nomCommune": "CANET" + "codePostal": "17270", + "codeCommune": "17365", + "libelleAcheminement": "ST MARTIN D ARY", + "nomCommune": "ST MARTIN D ARY" }, { - "codePostal": "67250", - "codeCommune": "67290", - "libelleAcheminement": "MERKWILLER PECHELBRONN", - "nomCommune": "MERKWILLER PECHELBRONN" + "codePostal": "70100", + "codeCommune": "70479", + "libelleAcheminement": "SAUVIGNEY LES GRAY", + "nomCommune": "SAUVIGNEY LES GRAY" }, { - "codePostal": "50810", - "codeCommune": "50032", - "libelleAcheminement": "LA BARRE DE SEMILLY", - "nomCommune": "LA BARRE DE SEMILLY" + "codePostal": "59119", + "codeCommune": "59654", + "libelleAcheminement": "WAZIERS", + "nomCommune": "WAZIERS" }, { - "codePostal": "41500", - "codeCommune": "41207", - "libelleAcheminement": "ST DYE SUR LOIRE", - "nomCommune": "ST DYE SUR LOIRE" + "codePostal": "61360", + "codeCommune": "61327", + "libelleAcheminement": "PERVENCHERES", + "nomCommune": "PERVENCHERES" }, { - "codePostal": "11000", - "codeCommune": "11069", - "libelleAcheminement": "CARCASSONNE", - "nomCommune": "CARCASSONNE" + "codePostal": "71400", + "codeCommune": "71010", + "libelleAcheminement": "ANTULLY", + "nomCommune": "ANTULLY" }, { - "codePostal": "67206", - "codeCommune": "67296", - "libelleAcheminement": "MITTELHAUSBERGEN", - "nomCommune": "MITTELHAUSBERGEN" + "codePostal": "17310", + "codeCommune": "17385", + "libelleAcheminement": "ST PIERRE D OLERON", + "nomCommune": "ST PIERRE D OLERON" }, { - "codePostal": "50000", - "codeCommune": "50034", - "libelleAcheminement": "BAUDRE", - "nomCommune": "BAUDRE" + "codePostal": "70170", + "codeCommune": "70483", + "libelleAcheminement": "SCYE", + "nomCommune": "SCYE" }, { - "codePostal": "41310", - "codeCommune": "41213", - "libelleAcheminement": "ST GOURGON", - "nomCommune": "ST GOURGON" + "codePostal": "59134", + "codeCommune": "59658", + "libelleAcheminement": "WICRES", + "nomCommune": "WICRES" }, { - "codePostal": "11000", - "codeCommune": "11069", - "libelleAcheminement": "CARCASSONNE", - "nomCommune": "CARCASSONNE" + "codePostal": "61210", + "codeCommune": "61339", + "libelleAcheminement": "PUTANGES LE LAC", + "nomCommune": "PUTANGES LE LAC" }, { - "codePostal": "67120", - "codeCommune": "67300", - "libelleAcheminement": "MOLSHEIM", - "nomCommune": "MOLSHEIM" + "codePostal": "71110", + "codeCommune": "71011", + "libelleAcheminement": "ANZY LE DUC", + "nomCommune": "ANZY LE DUC" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "17220", + "codeCommune": "17391", + "libelleAcheminement": "ST ROGATIEN", + "nomCommune": "ST ROGATIEN" }, { - "codePostal": "41220", - "codeCommune": "41220", - "libelleAcheminement": "ST LAURENT NOUAN", - "nomCommune": "ST LAURENT NOUAN" + "codePostal": "70210", + "codeCommune": "70485", + "libelleAcheminement": "SELLES", + "nomCommune": "SELLES" }, { - "codePostal": "11400", - "codeCommune": "11076", - "libelleAcheminement": "CASTELNAUDARY", - "nomCommune": "CASTELNAUDARY" + "codePostal": "59470", + "codeCommune": "59666", + "libelleAcheminement": "ZEGERSCAPPEL", + "nomCommune": "ZEGERSCAPPEL" }, { - "codePostal": "67700", - "codeCommune": "67302", - "libelleAcheminement": "MONSWILLER", - "nomCommune": "MONSWILLER" + "codePostal": "61150", + "codeCommune": "61344", + "libelleAcheminement": "RANES", + "nomCommune": "RANES" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "71400", + "codeCommune": "71014", + "libelleAcheminement": "AUTUN", + "nomCommune": "AUTUN" }, { - "codePostal": "41220", - "codeCommune": "41220", - "libelleAcheminement": "ST LAURENT NOUAN", - "nomCommune": "ST LAURENT NOUAN" + "codePostal": "17220", + "codeCommune": "17407", + "libelleAcheminement": "STE SOULLE", + "nomCommune": "STE SOULLE" }, { - "codePostal": "11170", - "codeCommune": "11084", - "libelleAcheminement": "CAUX ET SAUZENS", - "nomCommune": "CAUX ET SAUZENS" + "codePostal": "70160", + "codeCommune": "70488", + "libelleAcheminement": "SENONCOURT", + "nomCommune": "SENONCOURT" }, { - "codePostal": "67360", - "codeCommune": "67303", - "libelleAcheminement": "MORSBRONN LES BAINS", - "nomCommune": "MORSBRONN LES BAINS" + "codePostal": "60220", + "codeCommune": "60001", + "libelleAcheminement": "ABANCOURT", + "nomCommune": "ABANCOURT" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "61110", + "codeCommune": "61345", + "libelleAcheminement": "REMALARD EN PERCHE", + "nomCommune": "REMALARD EN PERCHE" }, { - "codePostal": "41170", - "codeCommune": "41224", - "libelleAcheminement": "ST MARC DU COR", - "nomCommune": "ST MARC DU COR" + "codePostal": "71400", + "codeCommune": "71014", + "libelleAcheminement": "AUTUN", + "nomCommune": "AUTUN" }, { - "codePostal": "11570", - "codeCommune": "11088", - "libelleAcheminement": "CAZILHAC", - "nomCommune": "CAZILHAC" + "codePostal": "17100", + "codeCommune": "17412", + "libelleAcheminement": "ST VAIZE", + "nomCommune": "ST VAIZE" }, { - "codePostal": "67470", - "codeCommune": "67308", - "libelleAcheminement": "MUNCHHAUSEN", - "nomCommune": "MUNCHHAUSEN" + "codePostal": "70130", + "codeCommune": "70492", + "libelleAcheminement": "SOING CUBRY CHARENTENAY", + "nomCommune": "SOING CUBRY CHARENTENAY" }, { - "codePostal": "50170", - "codeCommune": "50042", - "libelleAcheminement": "BEAUVOIR", - "nomCommune": "BEAUVOIR" + "codePostal": "60310", + "codeCommune": "60011", + "libelleAcheminement": "AMY", + "nomCommune": "AMY" }, { - "codePostal": "41800", - "codeCommune": "41225", - "libelleAcheminement": "ST MARTIN DES BOIS", - "nomCommune": "ST MARTIN DES BOIS" + "codePostal": "61120", + "codeCommune": "61346", + "libelleAcheminement": "LE RENOUARD", + "nomCommune": "LE RENOUARD" }, { - "codePostal": "11170", - "codeCommune": "11089", - "libelleAcheminement": "CENNE MONESTIES", - "nomCommune": "CENNE MONESTIES" + "codePostal": "71500", + "codeCommune": "71018", + "libelleAcheminement": "BANTANGES", + "nomCommune": "BANTANGES" }, { - "codePostal": "67450", - "codeCommune": "67309", - "libelleAcheminement": "MUNDOLSHEIM", - "nomCommune": "MUNDOLSHEIM" + "codePostal": "17800", + "codeCommune": "17418", + "libelleAcheminement": "SALIGNAC SUR CHARENTE", + "nomCommune": "SALIGNAC SUR CHARENTE" }, { - "codePostal": "50390", - "codeCommune": "50049", - "libelleAcheminement": "BESNEVILLE", - "nomCommune": "BESNEVILLE" + "codePostal": "70270", + "codeCommune": "70498", + "libelleAcheminement": "TERNUAY MELAY ET ST HILAIRE", + "nomCommune": "TERNUAY MELAY ET ST HILAIRE" }, { - "codePostal": "41800", - "codeCommune": "41228", - "libelleAcheminement": "ST RIMAY", - "nomCommune": "ST RIMAY" + "codePostal": "60162", + "codeCommune": "60019", + "libelleAcheminement": "ANTHEUIL PORTES", + "nomCommune": "ANTHEUIL PORTES" }, { - "codePostal": "11160", - "codeCommune": "11092", - "libelleAcheminement": "CITOU", - "nomCommune": "CITOU" + "codePostal": "61420", + "codeCommune": "61350", + "libelleAcheminement": "LA ROCHE MABILE", + "nomCommune": "LA ROCHE MABILE" }, { - "codePostal": "67220", - "codeCommune": "67320", - "libelleAcheminement": "NEUVE EGLISE", - "nomCommune": "NEUVE EGLISE" + "codePostal": "71960", + "codeCommune": "71031", + "libelleAcheminement": "BERZE LE CHATEL", + "nomCommune": "BERZE LE CHATEL" }, { - "codePostal": "50360", - "codeCommune": "50052", - "libelleAcheminement": "BEUZEVILLE LA BASTILLE", - "nomCommune": "BEUZEVILLE LA BASTILLE" + "codePostal": "17600", + "codeCommune": "17421", + "libelleAcheminement": "SAUJON", + "nomCommune": "SAUJON" }, { - "codePostal": "41190", - "codeCommune": "41234", - "libelleAcheminement": "SANTENAY", - "nomCommune": "SANTENAY" + "codePostal": "70230", + "codeCommune": "70501", + "libelleAcheminement": "THIENANS", + "nomCommune": "THIENANS" }, { - "codePostal": "11110", - "codeCommune": "11106", - "libelleAcheminement": "COURSAN", - "nomCommune": "COURSAN" + "codePostal": "60350", + "codeCommune": "60025", + "libelleAcheminement": "ATTICHY", + "nomCommune": "ATTICHY" }, { - "codePostal": "67280", - "codeCommune": "67325", - "libelleAcheminement": "NIEDERHASLACH", - "nomCommune": "NIEDERHASLACH" + "codePostal": "61220", + "codeCommune": "61361", + "libelleAcheminement": "ST ANDRE DE BRIOUZE", + "nomCommune": "ST ANDRE DE BRIOUZE" }, { - "codePostal": "50160", - "codeCommune": "50054", - "libelleAcheminement": "BIEVILLE", - "nomCommune": "BIEVILLE" + "codePostal": "71960", + "codeCommune": "71032", + "libelleAcheminement": "BERZE LA VILLE", + "nomCommune": "BERZE LA VILLE" }, { - "codePostal": "41170", - "codeCommune": "41248", - "libelleAcheminement": "COUETRON AU PERCHE", - "nomCommune": "COUETRON AU PERCHE" + "codePostal": "17490", + "codeCommune": "17427", + "libelleAcheminement": "SIECQ", + "nomCommune": "SIECQ" }, { - "codePostal": "11300", - "codeCommune": "11120", - "libelleAcheminement": "LA DIGNE D AVAL", - "nomCommune": "LA DIGNE D AVAL" + "codePostal": "70400", + "codeCommune": "70506", + "libelleAcheminement": "TREMOINS", + "nomCommune": "TREMOINS" }, { - "codePostal": "67510", - "codeCommune": "67334", - "libelleAcheminement": "NIEDERSTEINBACH", - "nomCommune": "NIEDERSTEINBACH" + "codePostal": "60800", + "codeCommune": "60027", + "libelleAcheminement": "AUGER ST VINCENT", + "nomCommune": "AUGER ST VINCENT" }, { - "codePostal": "50800", - "codeCommune": "50062", - "libelleAcheminement": "BOISYVON", - "nomCommune": "BOISYVON" + "codePostal": "61440", + "codeCommune": "61362", + "libelleAcheminement": "ST ANDRE DE MESSEI", + "nomCommune": "ST ANDRE DE MESSEI" }, { - "codePostal": "41170", - "codeCommune": "41248", - "libelleAcheminement": "COUETRON AU PERCHE", - "nomCommune": "COUETRON AU PERCHE" + "codePostal": "71260", + "codeCommune": "71035", + "libelleAcheminement": "BISSY LA MACONNAISE", + "nomCommune": "BISSY LA MACONNAISE" }, { - "codePostal": "11350", - "codeCommune": "11123", - "libelleAcheminement": "DUILHAC SOUS PEYREPERTUSE", - "nomCommune": "DUILHAC SOUS PEYREPERTUSE" + "codePostal": "17260", + "codeCommune": "17438", + "libelleAcheminement": "TANZAC", + "nomCommune": "TANZAC" }, { - "codePostal": "67520", - "codeCommune": "67335", - "libelleAcheminement": "NORDHEIM", - "nomCommune": "NORDHEIM" + "codePostal": "70180", + "codeCommune": "70511", + "libelleAcheminement": "VAITE", + "nomCommune": "VAITE" }, { - "codePostal": "50370", - "codeCommune": "50074", - "libelleAcheminement": "BRECEY", - "nomCommune": "BRECEY" + "codePostal": "60300", + "codeCommune": "60028", + "libelleAcheminement": "AUMONT EN HALATTE", + "nomCommune": "AUMONT EN HALATTE" }, { - "codePostal": "41170", - "codeCommune": "41248", - "libelleAcheminement": "COUETRON AU PERCHE", - "nomCommune": "COUETRON AU PERCHE" + "codePostal": "61470", + "codeCommune": "61366", + "libelleAcheminement": "ST AUBIN DE BONNEVAL", + "nomCommune": "ST AUBIN DE BONNEVAL" }, { - "codePostal": "11240", - "codeCommune": "11128", - "libelleAcheminement": "ESCUEILLENS ET ST JUST", - "nomCommune": "ESCUEILLENS ET ST JUST DE BELENGARD" + "codePostal": "71350", + "codeCommune": "71043", + "libelleAcheminement": "LES BORDES", + "nomCommune": "LES BORDES" }, { - "codePostal": "67230", - "codeCommune": "67338", - "libelleAcheminement": "OBENHEIM", - "nomCommune": "OBENHEIM" + "codePostal": "17290", + "codeCommune": "17443", + "libelleAcheminement": "THAIRE", + "nomCommune": "THAIRE" }, { - "codePostal": "50150", - "codeCommune": "50088", - "libelleAcheminement": "BROUAINS", - "nomCommune": "BROUAINS" + "codePostal": "70000", + "codeCommune": "70513", + "libelleAcheminement": "VAIVRE ET MONTOILLE", + "nomCommune": "VAIVRE ET MONTOILLE" }, { - "codePostal": "41500", - "codeCommune": "41252", - "libelleAcheminement": "SUEVRES", - "nomCommune": "SUEVRES" + "codePostal": "60390", + "codeCommune": "60029", + "libelleAcheminement": "AUNEUIL", + "nomCommune": "AUNEUIL" }, { - "codePostal": "11260", - "codeCommune": "11131", - "libelleAcheminement": "VAL DU FABY", - "nomCommune": "VAL DU FABY" + "codePostal": "61380", + "codeCommune": "61373", + "libelleAcheminement": "STE CERONNE LES MORTAGNE", + "nomCommune": "STE CERONNE LES MORTAGNE" }, { - "codePostal": "67360", - "codeCommune": "67341", - "libelleAcheminement": "OBERDORF SPACHBACH", - "nomCommune": "OBERDORF SPACHBACH" + "codePostal": "71520", + "codeCommune": "71050", + "libelleAcheminement": "BOURGVILAIN", + "nomCommune": "BOURGVILAIN" }, { - "codePostal": "50200", - "codeCommune": "50092", - "libelleAcheminement": "CAMBERNON", - "nomCommune": "CAMBERNON" + "codePostal": "17460", + "codeCommune": "17444", + "libelleAcheminement": "THENAC", + "nomCommune": "THENAC" }, { - "codePostal": "41370", - "codeCommune": "41253", - "libelleAcheminement": "TALCY", - "nomCommune": "TALCY" + "codePostal": "70000", + "codeCommune": "70516", + "libelleAcheminement": "VALLEROIS LE BOIS", + "nomCommune": "VALLEROIS LE BOIS" }, { - "codePostal": "11800", - "codeCommune": "11146", - "libelleAcheminement": "FLOURE", - "nomCommune": "FLOURE" + "codePostal": "60890", + "codeCommune": "60031", + "libelleAcheminement": "AUTHEUIL EN VALOIS", + "nomCommune": "AUTHEUIL EN VALOIS" }, { - "codePostal": "67205", - "codeCommune": "67343", - "libelleAcheminement": "OBERHAUSBERGEN", - "nomCommune": "OBERHAUSBERGEN" + "codePostal": "61570", + "codeCommune": "61375", + "libelleAcheminement": "BOISCHAMPRE", + "nomCommune": "BOISCHAMPRE" }, { - "codePostal": "50480", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "71150", + "codeCommune": "71051", + "libelleAcheminement": "BOUZERON", + "nomCommune": "BOUZERON" }, { - "codePostal": "41800", - "codeCommune": "41255", - "libelleAcheminement": "TERNAY", - "nomCommune": "TERNAY" + "codePostal": "17390", + "codeCommune": "17452", + "libelleAcheminement": "LA TREMBLADE", + "nomCommune": "LA TREMBLADE" }, { - "codePostal": "11300", - "codeCommune": "11158", - "libelleAcheminement": "GAJA ET VILLEDIEU", - "nomCommune": "GAJA ET VILLEDIEU" + "codePostal": "70240", + "codeCommune": "70522", + "libelleAcheminement": "VAROGNE", + "nomCommune": "VAROGNE" }, { - "codePostal": "67330", - "codeCommune": "67347", - "libelleAcheminement": "OBERMODERN ZUTZENDORF", - "nomCommune": "OBERMODERN ZUTZENDORF" + "codePostal": "60310", + "codeCommune": "60035", + "libelleAcheminement": "AVRICOURT", + "nomCommune": "AVRICOURT" }, { - "codePostal": "50500", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "61130", + "codeCommune": "61379", + "libelleAcheminement": "ST CYR LA ROSIERE", + "nomCommune": "ST CYR LA ROSIERE" }, { - "codePostal": "41140", - "codeCommune": "41258", - "libelleAcheminement": "THESEE", - "nomCommune": "THESEE" + "codePostal": "71190", + "codeCommune": "71062", + "libelleAcheminement": "BRION", + "nomCommune": "BRION" }, { - "codePostal": "11500", - "codeCommune": "11168", - "libelleAcheminement": "GRANES", - "nomCommune": "GRANES" + "codePostal": "17700", + "codeCommune": "17457", + "libelleAcheminement": "LA DEVISE", + "nomCommune": "LA DEVISE" }, { - "codePostal": "67970", - "codeCommune": "67355", - "libelleAcheminement": "OERMINGEN", - "nomCommune": "OERMINGEN" + "codePostal": "70120", + "codeCommune": "70525", + "libelleAcheminement": "VAUCONCOURT NERVEZAIN", + "nomCommune": "VAUCONCOURT NERVEZAIN" }, { - "codePostal": "50500", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "60140", + "codeCommune": "60042", + "libelleAcheminement": "BAILLEVAL", + "nomCommune": "BAILLEVAL" }, { - "codePostal": "41120", - "codeCommune": "41266", - "libelleAcheminement": "VALAIRE", - "nomCommune": "VALAIRE" + "codePostal": "61420", + "codeCommune": "61382", + "libelleAcheminement": "ST DENIS SUR SARTHON", + "nomCommune": "ST DENIS SUR SARTHON" }, { - "codePostal": "11250", - "codeCommune": "11169", - "libelleAcheminement": "GREFFEIL", - "nomCommune": "GREFFEIL" + "codePostal": "71390", + "codeCommune": "71072", + "libelleAcheminement": "CERSOT", + "nomCommune": "CERSOT" }, { - "codePostal": "67390", - "codeCommune": "67360", - "libelleAcheminement": "OHNENHEIM", - "nomCommune": "OHNENHEIM" + "codePostal": "17640", + "codeCommune": "17461", + "libelleAcheminement": "VAUX SUR MER", + "nomCommune": "VAUX SUR MER" }, { - "codePostal": "50740", - "codeCommune": "50102", - "libelleAcheminement": "CAROLLES", - "nomCommune": "CAROLLES" + "codePostal": "70700", + "codeCommune": "70531", + "libelleAcheminement": "VELLECLAIRE", + "nomCommune": "VELLECLAIRE" }, { - "codePostal": "41230", - "codeCommune": "41268", - "libelleAcheminement": "VEILLEINS", - "nomCommune": "VEILLEINS" + "codePostal": "60810", + "codeCommune": "60045", + "libelleAcheminement": "BARBERY", + "nomCommune": "BARBERY" }, { - "codePostal": "11380", - "codeCommune": "11180", - "libelleAcheminement": "LABASTIDE ESPARBAIRENQUE", - "nomCommune": "LABASTIDE ESPARBAIRENQUE" + "codePostal": "61230", + "codeCommune": "61385", + "libelleAcheminement": "ST EVROULT DE MONTFORT", + "nomCommune": "ST EVROULT DE MONTFORT" }, { - "codePostal": "67150", - "codeCommune": "67364", - "libelleAcheminement": "OSTHOUSE", - "nomCommune": "OSTHOUSE" + "codePostal": "71140", + "codeCommune": "71075", + "libelleAcheminement": "CHALMOUX", + "nomCommune": "CHALMOUX" }, { - "codePostal": "50620", - "codeCommune": "50106", - "libelleAcheminement": "CAVIGNY", - "nomCommune": "CAVIGNY" + "codePostal": "17100", + "codeCommune": "17462", + "libelleAcheminement": "VENERAND", + "nomCommune": "VENERAND" }, { - "codePostal": "41000", - "codeCommune": "41276", - "libelleAcheminement": "VILLEBAROU", - "nomCommune": "VILLEBAROU" + "codePostal": "70000", + "codeCommune": "70532", + "libelleAcheminement": "VELLEFAUX", + "nomCommune": "VELLEFAUX" }, { - "codePostal": "11420", - "codeCommune": "11184", - "libelleAcheminement": "LAFAGE", - "nomCommune": "LAFAGE" + "codePostal": "60190", + "codeCommune": "60048", + "libelleAcheminement": "BAUGY", + "nomCommune": "BAUGY" }, { - "codePostal": "67700", - "codeCommune": "67366", - "libelleAcheminement": "OTTERSTHAL", - "nomCommune": "OTTERSTHAL" + "codePostal": "61550", + "codeCommune": "61386", + "libelleAcheminement": "ST EVROULT NOTRE DAME DU BOIS", + "nomCommune": "ST EVROULT NOTRE DAME DU BOIS" }, { - "codePostal": "50510", - "codeCommune": "50109", - "libelleAcheminement": "CERENCES", - "nomCommune": "CERENCES" + "codePostal": "71100", + "codeCommune": "71076", + "libelleAcheminement": "CHALON SUR SAONE", + "nomCommune": "CHALON SUR SAONE" }, { - "codePostal": "41330", - "codeCommune": "41281", - "libelleAcheminement": "VILLEFRANCOEUR", - "nomCommune": "VILLEFRANCOEUR" + "codePostal": "17130", + "codeCommune": "17468", + "libelleAcheminement": "VIBRAC", + "nomCommune": "VIBRAC" }, { - "codePostal": "11400", - "codeCommune": "11192", - "libelleAcheminement": "LASBORDES", - "nomCommune": "LASBORDES" + "codePostal": "70000", + "codeCommune": "70535", + "libelleAcheminement": "VELLEGUINDRY ET LEVRECEY", + "nomCommune": "VELLEGUINDRY ET LEVRECEY" }, { - "codePostal": "67290", - "codeCommune": "67371", - "libelleAcheminement": "LA PETITE PIERRE", - "nomCommune": "LA PETITE PIERRE" + "codePostal": "60380", + "codeCommune": "60049", + "libelleAcheminement": "BAZANCOURT", + "nomCommune": "BAZANCOURT" }, { - "codePostal": "50210", - "codeCommune": "50111", - "libelleAcheminement": "CERISY LA SALLE", - "nomCommune": "CERISY LA SALLE" + "codePostal": "61500", + "codeCommune": "61400", + "libelleAcheminement": "ST GERVAIS DU PERRON", + "nomCommune": "ST GERVAIS DU PERRON" }, { - "codePostal": "41350", - "codeCommune": "41295", - "libelleAcheminement": "VINEUIL", - "nomCommune": "VINEUIL" + "codePostal": "71460", + "codeCommune": "71080", + "libelleAcheminement": "CHAMPAGNY SOUS UXELLES", + "nomCommune": "CHAMPAGNY SOUS UXELLES" }, { - "codePostal": "11300", - "codeCommune": "11197", - "libelleAcheminement": "LAURAGUEL", - "nomCommune": "LAURAGUEL" + "codePostal": "17260", + "codeCommune": "17469", + "libelleAcheminement": "VILLARS EN PONS", + "nomCommune": "VILLARS EN PONS" }, { - "codePostal": "67350", - "codeCommune": "67372", - "libelleAcheminement": "VAL DE MODER", - "nomCommune": "VAL DE MODER" + "codePostal": "70240", + "codeCommune": "70537", + "libelleAcheminement": "VELLEMINFROY", + "nomCommune": "VELLEMINFROY" }, { - "codePostal": "50370", - "codeCommune": "50112", - "libelleAcheminement": "LA CHAISE BAUDOUIN", - "nomCommune": "LA CHAISE BAUDOUIN" + "codePostal": "60120", + "codeCommune": "60058", + "libelleAcheminement": "BEAUVOIR", + "nomCommune": "BEAUVOIR" }, { - "codePostal": "42380", - "codeCommune": "42001", - "libelleAcheminement": "ABOEN", - "nomCommune": "ABOEN" + "codePostal": "61220", + "codeCommune": "61402", + "libelleAcheminement": "ST HILAIRE DE BRIOUZE", + "nomCommune": "ST HILAIRE DE BRIOUZE" }, { - "codePostal": "11200", - "codeCommune": "11203", - "libelleAcheminement": "LEZIGNAN CORBIERES", - "nomCommune": "LEZIGNAN CORBIERES" + "codePostal": "71120", + "codeCommune": "71082", + "libelleAcheminement": "CHAMPLECY", + "nomCommune": "CHAMPLECY" }, { - "codePostal": "67420", - "codeCommune": "67377", - "libelleAcheminement": "PLAINE", - "nomCommune": "PLAINE" + "codePostal": "17330", + "codeCommune": "17474", + "libelleAcheminement": "VILLENEUVE LA COMTESSE", + "nomCommune": "VILLENEUVE LA COMTESSE" }, { - "codePostal": "50320", - "codeCommune": "50115", - "libelleAcheminement": "LE GRIPPON", - "nomCommune": "LE GRIPPON" + "codePostal": "70110", + "codeCommune": "70553", + "libelleAcheminement": "VILLARGENT", + "nomCommune": "VILLARGENT" }, { - "codePostal": "42130", - "codeCommune": "42002", - "libelleAcheminement": "AILLEUX", - "nomCommune": "AILLEUX" + "codePostal": "60320", + "codeCommune": "60068", + "libelleAcheminement": "BETHISY ST PIERRE", + "nomCommune": "BETHISY ST PIERRE" }, { - "codePostal": "11300", - "codeCommune": "11214", - "libelleAcheminement": "MALRAS", - "nomCommune": "MALRAS" + "codePostal": "61400", + "codeCommune": "61418", + "libelleAcheminement": "ST MARD DE RENO", + "nomCommune": "ST MARD DE RENO" }, { - "codePostal": "67420", - "codeCommune": "67377", - "libelleAcheminement": "PLAINE", - "nomCommune": "PLAINE" + "codePostal": "71500", + "codeCommune": "71092", + "libelleAcheminement": "LA CHAPELLE NAUDE", + "nomCommune": "LA CHAPELLE NAUDE" }, { - "codePostal": "50530", - "codeCommune": "50117", - "libelleAcheminement": "CHAMPEAUX", - "nomCommune": "CHAMPEAUX" + "codePostal": "17330", + "codeCommune": "17474", + "libelleAcheminement": "VILLENEUVE LA COMTESSE", + "nomCommune": "VILLENEUVE LA COMTESSE" }, { - "codePostal": "42600", - "codeCommune": "42012", - "libelleAcheminement": "BARD", - "nomCommune": "BARD" + "codePostal": "70700", + "codeCommune": "70557", + "libelleAcheminement": "VILLEFRANCON", + "nomCommune": "VILLEFRANCON" }, { - "codePostal": "11410", - "codeCommune": "11218", - "libelleAcheminement": "MARQUEIN", - "nomCommune": "MARQUEIN" + "codePostal": "60460", + "codeCommune": "60074", + "libelleAcheminement": "BLAINCOURT LES PRECY", + "nomCommune": "BLAINCOURT LES PRECY" }, { - "codePostal": "67490", - "codeCommune": "67380", - "libelleAcheminement": "PRINTZHEIM", - "nomCommune": "PRINTZHEIM" + "codePostal": "61320", + "codeCommune": "61419", + "libelleAcheminement": "STE MARGUERITE DE CARROUGES", + "nomCommune": "STE MARGUERITE DE CARROUGES" }, { - "codePostal": "50800", - "codeCommune": "50121", - "libelleAcheminement": "LA CHAPELLE CECELIN", - "nomCommune": "LA CHAPELLE CECELIN" + "codePostal": "71570", + "codeCommune": "71108", + "libelleAcheminement": "CHASSELAS", + "nomCommune": "CHASSELAS" }, { - "codePostal": "42520", - "codeCommune": "42018", - "libelleAcheminement": "BESSEY", - "nomCommune": "BESSEY" + "codePostal": "17500", + "codeCommune": "17476", + "libelleAcheminement": "VILLEXAVIER", + "nomCommune": "VILLEXAVIER" }, { - "codePostal": "11800", - "codeCommune": "11220", - "libelleAcheminement": "MARSEILLETTE", - "nomCommune": "MARSEILLETTE" + "codePostal": "70240", + "codeCommune": "70569", + "libelleAcheminement": "VILORY", + "nomCommune": "VILORY" }, { - "codePostal": "67290", - "codeCommune": "67381", - "libelleAcheminement": "PUBERG", - "nomCommune": "PUBERG" + "codePostal": "60120", + "codeCommune": "60085", + "libelleAcheminement": "BONVILLERS", + "nomCommune": "BONVILLERS" }, { - "codePostal": "50370", - "codeCommune": "50124", - "libelleAcheminement": "LA CHAPELLE UREE", - "nomCommune": "LA CHAPELLE UREE" + "codePostal": "61250", + "codeCommune": "61433", + "libelleAcheminement": "ST NICOLAS DES BOIS", + "nomCommune": "ST NICOLAS DES BOIS" }, { - "codePostal": "42560", - "codeCommune": "42021", - "libelleAcheminement": "BOISSET ST PRIEST", - "nomCommune": "BOISSET ST PRIEST" + "codePostal": "71150", + "codeCommune": "71109", + "libelleAcheminement": "CHASSEY LE CAMP", + "nomCommune": "CHASSEY LE CAMP" }, { - "codePostal": "11420", - "codeCommune": "11226", - "libelleAcheminement": "MAYREVILLE", - "nomCommune": "MAYREVILLE" + "codePostal": "17510", + "codeCommune": "17478", + "libelleAcheminement": "VINAX", + "nomCommune": "VINAX" }, { - "codePostal": "67430", - "codeCommune": "67385", - "libelleAcheminement": "RATZWILLER", - "nomCommune": "RATZWILLER" + "codePostal": "70500", + "codeCommune": "70576", + "libelleAcheminement": "VOUGECOURT", + "nomCommune": "VOUGECOURT" }, { - "codePostal": "50870", - "codeCommune": "50126", - "libelleAcheminement": "CHAVOY", - "nomCommune": "CHAVOY" + "codePostal": "60620", + "codeCommune": "60092", + "libelleAcheminement": "BOULLARRE", + "nomCommune": "BOULLARRE" }, { - "codePostal": "42460", - "codeCommune": "42025", - "libelleAcheminement": "BOYER", - "nomCommune": "BOYER" + "codePostal": "61550", + "codeCommune": "61435", + "libelleAcheminement": "ST NICOLAS DE SOMMAIRE", + "nomCommune": "ST NICOLAS DE SOMMAIRE" }, { - "codePostal": "11220", - "codeCommune": "11227", - "libelleAcheminement": "MAYRONNES", - "nomCommune": "MAYRONNES" + "codePostal": "71800", + "codeCommune": "71116", + "libelleAcheminement": "CHATENAY", + "nomCommune": "CHATENAY" }, { - "codePostal": "67140", - "codeCommune": "67387", - "libelleAcheminement": "REICHSFELD", - "nomCommune": "REICHSFELD" + "codePostal": "17700", + "codeCommune": "17482", + "libelleAcheminement": "VOUHE", + "nomCommune": "VOUHE" }, { - "codePostal": "50120", - "codeCommune": "50129", - "libelleAcheminement": "CHERBOURG EN COTENTIN", - "nomCommune": "CHERBOURG EN COTENTIN" + "codePostal": "71290", + "codeCommune": "71001", + "libelleAcheminement": "L ABERGEMENT DE CUISERY", + "nomCommune": "L ABERGEMENT DE CUISERY" }, { - "codePostal": "42440", - "codeCommune": "42034", - "libelleAcheminement": "CERVIERES", - "nomCommune": "CERVIERES" + "codePostal": "60120", + "codeCommune": "60104", + "libelleAcheminement": "BRETEUIL", + "nomCommune": "BRETEUIL" }, { - "codePostal": "11140", - "codeCommune": "11229", - "libelleAcheminement": "MAZUBY", - "nomCommune": "MAZUBY" + "codePostal": "61800", + "codeCommune": "61451", + "libelleAcheminement": "ST QUENTIN LES CHARDONNETS", + "nomCommune": "ST QUENTIN LES CHARDONNETS" }, { - "codePostal": "67110", - "codeCommune": "67388", - "libelleAcheminement": "REICHSHOFFEN", - "nomCommune": "REICHSHOFFEN" + "codePostal": "71260", + "codeCommune": "71135", + "libelleAcheminement": "CLESSE", + "nomCommune": "CLESSE" }, { - "codePostal": "50470", - "codeCommune": "50129", - "libelleAcheminement": "CHERBOURG EN COTENTIN", - "nomCommune": "CHERBOURG EN COTENTIN" + "codePostal": "17840", + "codeCommune": "17486", + "libelleAcheminement": "LA BREE LES BAINS", + "nomCommune": "LA BREE LES BAINS" }, { - "codePostal": "42600", - "codeCommune": "42037", - "libelleAcheminement": "CHALAIN D UZORE", - "nomCommune": "CHALAIN D UZORE" + "codePostal": "71350", + "codeCommune": "71003", + "libelleAcheminement": "ALLEREY SUR SAONE", + "nomCommune": "ALLEREY SUR SAONE" }, { - "codePostal": "11330", - "codeCommune": "11250", - "libelleAcheminement": "MONTJOI", - "nomCommune": "MONTJOI" + "codePostal": "60840", + "codeCommune": "60106", + "libelleAcheminement": "BREUIL LE SEC", + "nomCommune": "BREUIL LE SEC" }, { - "codePostal": "67110", - "codeCommune": "67388", - "libelleAcheminement": "REICHSHOFFEN", - "nomCommune": "REICHSHOFFEN" + "codePostal": "61350", + "codeCommune": "61452", + "libelleAcheminement": "ST ROCH SUR EGRENNE", + "nomCommune": "ST ROCH SUR EGRENNE" }, { - "codePostal": "50330", - "codeCommune": "50135", - "libelleAcheminement": "CLITOURPS", - "nomCommune": "CLITOURPS" + "codePostal": "71250", + "codeCommune": "71137", + "libelleAcheminement": "CLUNY", + "nomCommune": "CLUNY" }, { - "codePostal": "42330", - "codeCommune": "42043", - "libelleAcheminement": "CHAMBOEUF", - "nomCommune": "CHAMBOEUF" + "codePostal": "18410", + "codeCommune": "18011", + "libelleAcheminement": "ARGENT SUR SAULDRE", + "nomCommune": "ARGENT SUR SAULDRE" }, { - "codePostal": "11220", - "codeCommune": "11251", - "libelleAcheminement": "VAL DE DAGNE", - "nomCommune": "VAL DE DAGNE" + "codePostal": "71510", + "codeCommune": "71005", + "libelleAcheminement": "ALUZE", + "nomCommune": "ALUZE" }, { - "codePostal": "67390", - "codeCommune": "67398", - "libelleAcheminement": "RICHTOLSHEIM", - "nomCommune": "RICHTOLSHEIM" + "codePostal": "60220", + "codeCommune": "60110", + "libelleAcheminement": "BROQUIERS", + "nomCommune": "BROQUIERS" }, { - "codePostal": "50420", - "codeCommune": "50139", - "libelleAcheminement": "CONDE SUR VIRE", - "nomCommune": "CONDE SUR VIRE" + "codePostal": "61170", + "codeCommune": "61454", + "libelleAcheminement": "STE SCOLASSE SUR SARTHE", + "nomCommune": "STE SCOLASSE SUR SARTHE" }, { - "codePostal": "42440", - "codeCommune": "42045", - "libelleAcheminement": "LA CHAMBONIE", - "nomCommune": "LA CHAMBONIE" + "codePostal": "71460", + "codeCommune": "71139", + "libelleAcheminement": "COLLONGE EN CHAROLLAIS", + "nomCommune": "COLLONGE EN CHAROLLAIS" }, { - "codePostal": "11290", - "codeCommune": "11254", - "libelleAcheminement": "MONTREAL", - "nomCommune": "MONTREAL" + "codePostal": "18600", + "codeCommune": "18017", + "libelleAcheminement": "AUGY SUR AUBOIS", + "nomCommune": "AUGY SUR AUBOIS" }, { - "codePostal": "67260", - "codeCommune": "67401", - "libelleAcheminement": "RIMSDORF", - "nomCommune": "RIMSDORF" + "codePostal": "71260", + "codeCommune": "71016", + "libelleAcheminement": "AZE", + "nomCommune": "AZE" }, { - "codePostal": "50330", - "codeCommune": "50142", - "libelleAcheminement": "VICQ SUR MER", - "nomCommune": "VICQ SUR MER" + "codePostal": "60120", + "codeCommune": "60111", + "libelleAcheminement": "BROYES", + "nomCommune": "BROYES" }, { - "codePostal": "42190", - "codeCommune": "42048", - "libelleAcheminement": "CHANDON", - "nomCommune": "CHANDON" + "codePostal": "61120", + "codeCommune": "61460", + "libelleAcheminement": "SAP EN AUGE", + "nomCommune": "SAP EN AUGE" }, { - "codePostal": "11100", - "codeCommune": "11255", - "libelleAcheminement": "MONTREDON DES CORBIERES", - "nomCommune": "MONTREDON DES CORBIERES" + "codePostal": "71540", + "codeCommune": "71144", + "libelleAcheminement": "CORDESSE", + "nomCommune": "CORDESSE" }, { - "codePostal": "67310", - "codeCommune": "67408", - "libelleAcheminement": "ROMANSWILLER", - "nomCommune": "ROMANSWILLER" + "codePostal": "18220", + "codeCommune": "18019", + "libelleAcheminement": "AZY", + "nomCommune": "AZY" }, { - "codePostal": "50680", - "codeCommune": "50148", - "libelleAcheminement": "COUVAINS", - "nomCommune": "COUVAINS" + "codePostal": "71220", + "codeCommune": "71017", + "libelleAcheminement": "BALLORE", + "nomCommune": "BALLORE" }, { - "codePostal": "42380", - "codeCommune": "42050", - "libelleAcheminement": "LA CHAPELLE EN LAFAYE", - "nomCommune": "LA CHAPELLE EN LAFAYE" + "codePostal": "60400", + "codeCommune": "60117", + "libelleAcheminement": "BUSSY", + "nomCommune": "BUSSY" }, { - "codePostal": "11330", - "codeCommune": "11260", - "libelleAcheminement": "MOUTHOUMET", - "nomCommune": "MOUTHOUMET" + "codePostal": "61600", + "codeCommune": "61463", + "libelleAcheminement": "LES MONTS D ANDAINE", + "nomCommune": "LES MONTS D ANDAINE" }, { - "codePostal": "67700", - "codeCommune": "67437", - "libelleAcheminement": "SAVERNE", - "nomCommune": "SAVERNE" + "codePostal": "71490", + "codeCommune": "71151", + "libelleAcheminement": "CREOT", + "nomCommune": "CREOT" }, { - "codePostal": "50620", - "codeCommune": "50161", - "libelleAcheminement": "LE DEZERT", - "nomCommune": "LE DEZERT" + "codePostal": "18800", + "codeCommune": "18023", + "libelleAcheminement": "BAUGY", + "nomCommune": "BAUGY" }, { - "codePostal": "42410", - "codeCommune": "42051", - "libelleAcheminement": "LA CHAPELLE VILLARS", - "nomCommune": "LA CHAPELLE VILLARS" + "codePostal": "71800", + "codeCommune": "71022", + "libelleAcheminement": "BAUDEMONT", + "nomCommune": "BAUDEMONT" }, { - "codePostal": "11100", - "codeCommune": "11262", - "libelleAcheminement": "NARBONNE", - "nomCommune": "NARBONNE" + "codePostal": "60400", + "codeCommune": "60118", + "libelleAcheminement": "CAISNES", + "nomCommune": "CAISNES" }, { - "codePostal": "67350", - "codeCommune": "67441", - "libelleAcheminement": "SCHALKENDORF", - "nomCommune": "SCHALKENDORF" + "codePostal": "61250", + "codeCommune": "61467", + "libelleAcheminement": "SEMALLE", + "nomCommune": "SEMALLE" }, { - "codePostal": "50110", - "codeCommune": "50162", - "libelleAcheminement": "DIGOSVILLE", - "nomCommune": "DIGOSVILLE" + "codePostal": "71290", + "codeCommune": "71158", + "libelleAcheminement": "CUISERY", + "nomCommune": "CUISERY" }, { - "codePostal": "42140", - "codeCommune": "42059", - "libelleAcheminement": "CHAZELLES SUR LYON", - "nomCommune": "CHAZELLES SUR LYON" + "codePostal": "18000", + "codeCommune": "18033", + "libelleAcheminement": "BOURGES", + "nomCommune": "BOURGES" }, { - "codePostal": "11200", - "codeCommune": "11267", - "libelleAcheminement": "ORNAISONS", - "nomCommune": "ORNAISONS" + "codePostal": "71110", + "codeCommune": "71024", + "libelleAcheminement": "BAUGY", + "nomCommune": "BAUGY" }, { - "codePostal": "67130", - "codeCommune": "67448", - "libelleAcheminement": "SCHIRMECK", - "nomCommune": "SCHIRMECK" + "codePostal": "60480", + "codeCommune": "60123", + "libelleAcheminement": "CAMPREMY", + "nomCommune": "CAMPREMY" }, { - "codePostal": "50530", - "codeCommune": "50167", - "libelleAcheminement": "DRAGEY RONTHON", - "nomCommune": "DRAGEY RONTHON" + "codePostal": "61160", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "42110", - "codeCommune": "42066", - "libelleAcheminement": "CLEPPE", - "nomCommune": "CLEPPE" + "codePostal": "71460", + "codeCommune": "71159", + "libelleAcheminement": "CULLES LES ROCHES", + "nomCommune": "CULLES LES ROCHES" }, { - "codePostal": "11410", - "codeCommune": "11275", - "libelleAcheminement": "PAYRA SUR L HERS", - "nomCommune": "PAYRA SUR L HERS" + "codePostal": "18200", + "codeCommune": "18034", + "libelleAcheminement": "BOUZAIS", + "nomCommune": "BOUZAIS" }, { - "codePostal": "67160", - "codeCommune": "67451", - "libelleAcheminement": "SCHLEITHAL", - "nomCommune": "SCHLEITHAL" + "codePostal": "71240", + "codeCommune": "71026", + "libelleAcheminement": "BEAUMONT SUR GROSNE", + "nomCommune": "BEAUMONT SUR GROSNE" }, { - "codePostal": "50310", - "codeCommune": "50172", - "libelleAcheminement": "EMONDEVILLE", - "nomCommune": "EMONDEVILLE" + "codePostal": "60840", + "codeCommune": "60130", + "libelleAcheminement": "CATENOY", + "nomCommune": "CATENOY" }, { - "codePostal": "42120", - "codeCommune": "42071", - "libelleAcheminement": "LE COTEAU", - "nomCommune": "LE COTEAU" + "codePostal": "61200", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "11420", - "codeCommune": "11278", - "libelleAcheminement": "PECH LUNA", - "nomCommune": "PECH LUNA" + "codePostal": "71150", + "codeCommune": "71174", + "libelleAcheminement": "DEZIZE LES MARANGES", + "nomCommune": "DEZIZE LES MARANGES" }, { - "codePostal": "67370", - "codeCommune": "67452", - "libelleAcheminement": "SCHNERSHEIM", - "nomCommune": "SCHNERSHEIM" + "codePostal": "18120", + "codeCommune": "18044", + "libelleAcheminement": "CERBOIS", + "nomCommune": "CERBOIS" }, { - "codePostal": "50320", - "codeCommune": "50188", - "libelleAcheminement": "FOLLIGNY", - "nomCommune": "FOLLIGNY" + "codePostal": "71250", + "codeCommune": "71030", + "libelleAcheminement": "BERGESSERIN", + "nomCommune": "BERGESSERIN" }, { - "codePostal": "42310", - "codeCommune": "42078", - "libelleAcheminement": "LE CROZET", - "nomCommune": "LE CROZET" + "codePostal": "60360", + "codeCommune": "60131", + "libelleAcheminement": "CATHEUX", + "nomCommune": "CATHEUX" }, { - "codePostal": "11150", - "codeCommune": "11281", - "libelleAcheminement": "PEXIORA", - "nomCommune": "PEXIORA" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "67250", - "codeCommune": "67474", - "libelleAcheminement": "SOULTZ SOUS FORETS", - "nomCommune": "SOULTZ SOUS FORETS" + "codePostal": "71480", + "codeCommune": "71177", + "libelleAcheminement": "DOMMARTIN LES CUISEAUX", + "nomCommune": "DOMMARTIN LES CUISEAUX" }, { - "codePostal": "50320", - "codeCommune": "50188", - "libelleAcheminement": "FOLLIGNY", - "nomCommune": "FOLLIGNY" + "codePostal": "18210", + "codeCommune": "18052", + "libelleAcheminement": "CHARENTON DU CHER", + "nomCommune": "CHARENTON DU CHER" }, { - "codePostal": "42330", - "codeCommune": "42081", - "libelleAcheminement": "CUZIEU", - "nomCommune": "CUZIEU" + "codePostal": "71390", + "codeCommune": "71034", + "libelleAcheminement": "BISSEY SOUS CRUCHAUD", + "nomCommune": "BISSEY SOUS CRUCHAUD" }, { - "codePostal": "11400", - "codeCommune": "11284", - "libelleAcheminement": "PEYRENS", - "nomCommune": "PEYRENS" + "codePostal": "60350", + "codeCommune": "60145", + "libelleAcheminement": "CHELLES", + "nomCommune": "CHELLES" }, { - "codePostal": "67340", - "codeCommune": "67475", - "libelleAcheminement": "SPARSBACH", - "nomCommune": "SPARSBACH" + "codePostal": "61800", + "codeCommune": "61486", + "libelleAcheminement": "TINCHEBRAY BOCAGE", + "nomCommune": "TINCHEBRAY BOCAGE" }, { - "codePostal": "50450", - "codeCommune": "50197", - "libelleAcheminement": "GAVRAY SUR SIENNE", - "nomCommune": "GAVRAY SUR SIENNE" + "codePostal": "71520", + "codeCommune": "71178", + "libelleAcheminement": "DOMPIERRE LES ORMES", + "nomCommune": "DOMPIERRE LES ORMES" }, { - "codePostal": "42130", - "codeCommune": "42084", - "libelleAcheminement": "DEBATS RIVIERE D ORPRA", - "nomCommune": "DEBATS RIVIERE D ORPRA" + "codePostal": "18800", + "codeCommune": "18056", + "libelleAcheminement": "CHASSY", + "nomCommune": "CHASSY" }, { - "codePostal": "11170", - "codeCommune": "11288", - "libelleAcheminement": "PEZENS", - "nomCommune": "PEZENS" + "codePostal": "71450", + "codeCommune": "71040", + "libelleAcheminement": "BLANZY", + "nomCommune": "BLANZY" }, { - "codePostal": "67770", - "codeCommune": "67476", - "libelleAcheminement": "STATTMATTEN", - "nomCommune": "STATTMATTEN" + "codePostal": "60440", + "codeCommune": "60148", + "libelleAcheminement": "CHEVREVILLE", + "nomCommune": "CHEVREVILLE" }, { - "codePostal": "50620", - "codeCommune": "50216", - "libelleAcheminement": "GRAIGNES MESNIL ANGOT", - "nomCommune": "GRAIGNES MESNIL ANGOT" + "codePostal": "61800", + "codeCommune": "61486", + "libelleAcheminement": "TINCHEBRAY BOCAGE", + "nomCommune": "TINCHEBRAY BOCAGE" }, { - "codePostal": "42740", - "codeCommune": "42085", - "libelleAcheminement": "DOIZIEUX", - "nomCommune": "DOIZIEUX" + "codePostal": "71420", + "codeCommune": "71179", + "libelleAcheminement": "DOMPIERRE SOUS SANVIGNES", + "nomCommune": "DOMPIERRE SOUS SANVIGNES" }, { - "codePostal": "11490", - "codeCommune": "11295", - "libelleAcheminement": "PORTEL DES CORBIERES", - "nomCommune": "PORTEL DES CORBIERES" + "codePostal": "18200", + "codeCommune": "18069", + "libelleAcheminement": "COLOMBIERS", + "nomCommune": "COLOMBIERS" }, { - "codePostal": "67220", - "codeCommune": "67477", - "libelleAcheminement": "STEIGE", - "nomCommune": "STEIGE" + "codePostal": "71330", + "codeCommune": "71044", + "libelleAcheminement": "BOSJEAN", + "nomCommune": "BOSJEAN" }, { - "codePostal": "50620", - "codeCommune": "50216", - "libelleAcheminement": "GRAIGNES MESNIL ANGOT", - "nomCommune": "GRAIGNES MESNIL ANGOT" + "codePostal": "60350", + "codeCommune": "60188", + "libelleAcheminement": "CUISE LA MOTTE", + "nomCommune": "CUISE LA MOTTE" }, { - "codePostal": "42600", - "codeCommune": "42087", - "libelleAcheminement": "ECOTAY L OLME", - "nomCommune": "ECOTAY L OLME" + "codePostal": "61550", + "codeCommune": "61488", + "libelleAcheminement": "TOUQUETTES", + "nomCommune": "TOUQUETTES" }, { - "codePostal": "11380", - "codeCommune": "11297", - "libelleAcheminement": "PRADELLES CABARDES", - "nomCommune": "PRADELLES CABARDES" + "codePostal": "71490", + "codeCommune": "71183", + "libelleAcheminement": "DRACY LES COUCHES", + "nomCommune": "DRACY LES COUCHES" }, { - "codePostal": "67290", - "codeCommune": "67483", - "libelleAcheminement": "STRUTH", - "nomCommune": "STRUTH" + "codePostal": "18190", + "codeCommune": "18073", + "libelleAcheminement": "CORQUOY", + "nomCommune": "CORQUOY" }, { - "codePostal": "68800", - "codeCommune": "68334", - "libelleAcheminement": "THANN", - "nomCommune": "THANN" + "codePostal": "71500", + "codeCommune": "71056", + "libelleAcheminement": "BRANGES", + "nomCommune": "BRANGES" }, { - "codePostal": "42600", - "codeCommune": "42089", - "libelleAcheminement": "ESSERTINES EN CHATELNEUF", - "nomCommune": "ESSERTINES EN CHATELNEUF" + "codePostal": "60400", + "codeCommune": "60189", + "libelleAcheminement": "CUTS", + "nomCommune": "CUTS" }, { - "codePostal": "11140", - "codeCommune": "11302", - "libelleAcheminement": "PUILAURENS", - "nomCommune": "PUILAURENS" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "67370", - "codeCommune": "67485", - "libelleAcheminement": "STUTZHEIM OFFENHEIM", - "nomCommune": "STUTZHEIM OFFENHEIM" + "codePostal": "71380", + "codeCommune": "71189", + "libelleAcheminement": "EPERVANS", + "nomCommune": "EPERVANS" }, { - "codePostal": "68590", - "codeCommune": "68335", - "libelleAcheminement": "THANNENKIRCH", - "nomCommune": "THANNENKIRCH" + "codePostal": "18210", + "codeCommune": "18076", + "libelleAcheminement": "COUST", + "nomCommune": "COUST" }, { - "codePostal": "42380", - "codeCommune": "42091", - "libelleAcheminement": "ESTIVAREILLES", - "nomCommune": "ESTIVAREILLES" + "codePostal": "71500", + "codeCommune": "71064", + "libelleAcheminement": "BRUAILLES", + "nomCommune": "BRUAILLES" }, { - "codePostal": "11500", - "codeCommune": "11304", - "libelleAcheminement": "QUILLAN", - "nomCommune": "QUILLAN" + "codePostal": "60310", + "codeCommune": "60192", + "libelleAcheminement": "CUY", + "nomCommune": "CUY" }, { - "codePostal": "67250", - "codeCommune": "67487", - "libelleAcheminement": "SURBOURG", - "nomCommune": "SURBOURG" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "68210", - "codeCommune": "68337", - "libelleAcheminement": "TRAUBACH LE HAUT", - "nomCommune": "TRAUBACH LE HAUT" + "codePostal": "71510", + "codeCommune": "71191", + "libelleAcheminement": "ESSERTENNE", + "nomCommune": "ESSERTENNE" }, { - "codePostal": "42470", - "codeCommune": "42098", - "libelleAcheminement": "FOURNEAUX", - "nomCommune": "FOURNEAUX" + "codePostal": "18140", + "codeCommune": "18077", + "libelleAcheminement": "COUY", + "nomCommune": "COUY" }, { - "codePostal": "11500", - "codeCommune": "11306", - "libelleAcheminement": "QUIRBAJOU", - "nomCommune": "QUIRBAJOU" + "codePostal": "71260", + "codeCommune": "71066", + "libelleAcheminement": "BURGY", + "nomCommune": "BURGY" }, { - "codePostal": "67440", - "codeCommune": "67489", - "libelleAcheminement": "THAL MARMOUTIER", - "nomCommune": "THAL MARMOUTIER" + "codePostal": "60210", + "codeCommune": "60193", + "libelleAcheminement": "DAMERAUCOURT", + "nomCommune": "DAMERAUCOURT" }, { - "codePostal": "68700", - "codeCommune": "68342", - "libelleAcheminement": "UFFHOLTZ", - "nomCommune": "UFFHOLTZ" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "42560", - "codeCommune": "42107", - "libelleAcheminement": "GUMIERES", - "nomCommune": "GUMIERES" + "codePostal": "71240", + "codeCommune": "71193", + "libelleAcheminement": "ETRIGNY", + "nomCommune": "ETRIGNY" }, { - "codePostal": "11200", - "codeCommune": "11307", - "libelleAcheminement": "RAISSAC D AUDE", - "nomCommune": "RAISSAC D AUDE" + "codePostal": "18190", + "codeCommune": "18078", + "libelleAcheminement": "CREZANCAY SUR CHER", + "nomCommune": "CREZANCAY SUR CHER" }, { - "codePostal": "67220", - "codeCommune": "67493", - "libelleAcheminement": "TRIEMBACH AU VAL", - "nomCommune": "TRIEMBACH AU VAL" + "codePostal": "71460", + "codeCommune": "71067", + "libelleAcheminement": "BURNAND", + "nomCommune": "BURNAND" }, { - "codePostal": "68600", - "codeCommune": "68351", - "libelleAcheminement": "VOGELGRUN", - "nomCommune": "VOGELGRUN" + "codePostal": "60310", + "codeCommune": "60204", + "libelleAcheminement": "ECUVILLY", + "nomCommune": "ECUVILLY" }, { - "codePostal": "42130", - "codeCommune": "42109", - "libelleAcheminement": "L HOPITAL SOUS ROCHEFORT", - "nomCommune": "L HOPITAL SOUS ROCHEFORT" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "11220", - "codeCommune": "11311", - "libelleAcheminement": "RIBAUTE", - "nomCommune": "RIBAUTE" + "codePostal": "71580", + "codeCommune": "71198", + "libelleAcheminement": "FLACEY EN BRESSE", + "nomCommune": "FLACEY EN BRESSE" }, { - "codePostal": "67350", - "codeCommune": "67497", - "libelleAcheminement": "UHLWILLER", - "nomCommune": "UHLWILLER" + "codePostal": "18200", + "codeCommune": "18086", + "libelleAcheminement": "DREVANT", + "nomCommune": "DREVANT" }, { - "codePostal": "68130", - "codeCommune": "68356", - "libelleAcheminement": "WALHEIM", - "nomCommune": "WALHEIM" + "codePostal": "71110", + "codeCommune": "71071", + "libelleAcheminement": "CERON", + "nomCommune": "CERON" }, { - "codePostal": "42152", - "codeCommune": "42110", - "libelleAcheminement": "L HORME", - "nomCommune": "L HORME" + "codePostal": "60590", + "codeCommune": "60208", + "libelleAcheminement": "ENENCOURT LEAGE", + "nomCommune": "ENENCOURT LEAGE" }, { - "codePostal": "11140", - "codeCommune": "11317", - "libelleAcheminement": "RODOME", - "nomCommune": "RODOME" + "codePostal": "61160", + "codeCommune": "61494", + "libelleAcheminement": "TRUN", + "nomCommune": "TRUN" }, { - "codePostal": "67280", - "codeCommune": "67500", - "libelleAcheminement": "URMATT", - "nomCommune": "URMATT" + "codePostal": "71390", + "codeCommune": "71201", + "libelleAcheminement": "FLEY", + "nomCommune": "FLEY" }, { - "codePostal": "68600", - "codeCommune": "68360", - "libelleAcheminement": "WECKOLSHEIM", - "nomCommune": "WECKOLSHEIM" + "codePostal": "18150", + "codeCommune": "18101", + "libelleAcheminement": "GERMIGNY L EXEMPT", + "nomCommune": "GERMIGNY L EXEMPT" }, { - "codePostal": "42460", - "codeCommune": "42112", - "libelleAcheminement": "JARNOSSE", - "nomCommune": "JARNOSSE" + "codePostal": "71570", + "codeCommune": "71074", + "libelleAcheminement": "CHAINTRE", + "nomCommune": "CHAINTRE" }, { - "codePostal": "11190", - "codeCommune": "11323", - "libelleAcheminement": "ROQUETAILLADE ET CONILHAC", - "nomCommune": "ROQUETAILLADE ET CONILHAC" + "codePostal": "60240", + "codeCommune": "60209", + "libelleAcheminement": "LA CORNE EN VEXIN", + "nomCommune": "LA CORNE EN VEXIN" }, { - "codePostal": "67330", - "codeCommune": "67503", - "libelleAcheminement": "UTTWILLER", - "nomCommune": "UTTWILLER" + "codePostal": "61170", + "codeCommune": "61499", + "libelleAcheminement": "LES VENTES DE BOURSE", + "nomCommune": "LES VENTES DE BOURSE" }, { - "codePostal": "68220", - "codeCommune": "68362", - "libelleAcheminement": "WENTZWILLER", - "nomCommune": "WENTZWILLER" + "codePostal": "71580", + "codeCommune": "71209", + "libelleAcheminement": "FRONTENAUD", + "nomCommune": "FRONTENAUD" }, { - "codePostal": "42130", - "codeCommune": "42119", - "libelleAcheminement": "LEIGNEUX", - "nomCommune": "LEIGNEUX" + "codePostal": "18800", + "codeCommune": "18105", + "libelleAcheminement": "GRON", + "nomCommune": "GRON" }, { - "codePostal": "11270", - "codeCommune": "11331", - "libelleAcheminement": "ST AMANS", - "nomCommune": "ST AMANS" + "codePostal": "71570", + "codeCommune": "71090", + "libelleAcheminement": "LA CHAPELLE DE GUINCHAY", + "nomCommune": "LA CHAPELLE DE GUINCHAY" }, { - "codePostal": "67210", - "codeCommune": "67504", - "libelleAcheminement": "VALFF", - "nomCommune": "VALFF" + "codePostal": "60380", + "codeCommune": "60214", + "libelleAcheminement": "ERNEMONT BOUTAVENT", + "nomCommune": "ERNEMONT BOUTAVENT" }, { - "codePostal": "68250", - "codeCommune": "68364", - "libelleAcheminement": "WESTHALTEN", - "nomCommune": "WESTHALTEN" + "codePostal": "61160", + "codeCommune": "61505", + "libelleAcheminement": "VILLEDIEU LES BAILLEUL", + "nomCommune": "VILLEDIEU LES BAILLEUL" }, { - "codePostal": "42520", - "codeCommune": "42124", - "libelleAcheminement": "LUPE", - "nomCommune": "LUPE" + "codePostal": "71290", + "codeCommune": "71213", + "libelleAcheminement": "LA GENETE", + "nomCommune": "LA GENETE" }, { - "codePostal": "11230", - "codeCommune": "11333", - "libelleAcheminement": "ST BENOIT", - "nomCommune": "ST BENOIT" + "codePostal": "18140", + "codeCommune": "18110", + "libelleAcheminement": "HERRY", + "nomCommune": "HERRY" }, { - "codePostal": "67670", - "codeCommune": "67516", - "libelleAcheminement": "WALTENHEIM SUR ZORN", - "nomCommune": "WALTENHEIM SUR ZORN" + "codePostal": "71470", + "codeCommune": "71097", + "libelleAcheminement": "LA CHAPELLE THECLE", + "nomCommune": "LA CHAPELLE THECLE" }, { - "codePostal": "68320", - "codeCommune": "68366", - "libelleAcheminement": "WICKERSCHWIHR", - "nomCommune": "WICKERSCHWIHR" + "codePostal": "60310", + "codeCommune": "60227", + "libelleAcheminement": "EVRICOURT", + "nomCommune": "EVRICOURT" }, { - "codePostal": "42520", - "codeCommune": "42129", - "libelleAcheminement": "MACLAS", - "nomCommune": "MACLAS" + "codePostal": "61300", + "codeCommune": "61510", + "libelleAcheminement": "VITRAI SOUS LAIGLE", + "nomCommune": "VITRAI SOUS LAIGLE" }, { - "codePostal": "11410", - "codeCommune": "11334", - "libelleAcheminement": "STE CAMELLE", - "nomCommune": "STE CAMELLE" + "codePostal": "71460", + "codeCommune": "71216", + "libelleAcheminement": "GERMAGNY", + "nomCommune": "GERMAGNY" }, { - "codePostal": "67340", - "codeCommune": "67524", - "libelleAcheminement": "WEITERSWILLER", - "nomCommune": "WEITERSWILLER" + "codePostal": "18350", + "codeCommune": "18131", + "libelleAcheminement": "LUGNY BOURBONNAIS", + "nomCommune": "LUGNY BOURBONNAIS" }, { - "codePostal": "68480", - "codeCommune": "68373", - "libelleAcheminement": "WINKEL", - "nomCommune": "WINKEL" + "codePostal": "71270", + "codeCommune": "71101", + "libelleAcheminement": "CHARETTE VARENNES", + "nomCommune": "CHARETTE VARENNES" }, { - "codePostal": "42520", - "codeCommune": "42132", - "libelleAcheminement": "MALLEVAL", - "nomCommune": "MALLEVAL" + "codePostal": "60420", + "codeCommune": "60232", + "libelleAcheminement": "FERRIERES", + "nomCommune": "FERRIERES" }, { - "codePostal": "11270", - "codeCommune": "11343", - "libelleAcheminement": "ST GAUDERIC", - "nomCommune": "ST GAUDERIC" + "codePostal": "62320", + "codeCommune": "62003", + "libelleAcheminement": "ACHEVILLE", + "nomCommune": "ACHEVILLE" }, { - "codePostal": "67310", - "codeCommune": "67525", - "libelleAcheminement": "WESTHOFFEN", - "nomCommune": "WESTHOFFEN" + "codePostal": "71800", + "codeCommune": "71218", + "libelleAcheminement": "GIBLES", + "nomCommune": "GIBLES" }, { - "codePostal": "68130", - "codeCommune": "68377", - "libelleAcheminement": "WITTERSDORF", - "nomCommune": "WITTERSDORF" + "codePostal": "18400", + "codeCommune": "18133", + "libelleAcheminement": "LUNERY", + "nomCommune": "LUNERY" }, { - "codePostal": "42140", - "codeCommune": "42138", - "libelleAcheminement": "MARINGES", - "nomCommune": "MARINGES" + "codePostal": "71100", + "codeCommune": "71102", + "libelleAcheminement": "LA CHARMEE", + "nomCommune": "LA CHARMEE" }, { - "codePostal": "11170", - "codeCommune": "11357", - "libelleAcheminement": "ST MARTIN LE VIEIL", - "nomCommune": "ST MARTIN LE VIEIL" + "codePostal": "60590", + "codeCommune": "60235", + "libelleAcheminement": "FLAVACOURT", + "nomCommune": "FLAVACOURT" }, { - "codePostal": "67440", - "codeCommune": "67527", - "libelleAcheminement": "WESTHOUSE MARMOUTIER", - "nomCommune": "WESTHOUSE MARMOUTIER" + "codePostal": "62144", + "codeCommune": "62007", + "libelleAcheminement": "ACQ", + "nomCommune": "ACQ" }, { - "codePostal": "69480", - "codeCommune": "69009", - "libelleAcheminement": "ANSE", - "nomCommune": "ANSE" + "codePostal": "71160", + "codeCommune": "71220", + "libelleAcheminement": "GILLY SUR LOIRE", + "nomCommune": "GILLY SUR LOIRE" }, { - "codePostal": "42110", - "codeCommune": "42143", - "libelleAcheminement": "MIZERIEUX", - "nomCommune": "MIZERIEUX" + "codePostal": "18170", + "codeCommune": "18136", + "libelleAcheminement": "MARCAIS", + "nomCommune": "MARCAIS" }, { - "codePostal": "11410", - "codeCommune": "11359", - "libelleAcheminement": "ST MICHEL DE LANES", - "nomCommune": "ST MICHEL DE LANES" + "codePostal": "71350", + "codeCommune": "71104", + "libelleAcheminement": "CHARNAY LES CHALON", + "nomCommune": "CHARNAY LES CHALON" }, { - "codePostal": "67290", - "codeCommune": "67538", - "libelleAcheminement": "WINGEN SUR MODER", - "nomCommune": "WINGEN SUR MODER" + "codePostal": "60120", + "codeCommune": "60237", + "libelleAcheminement": "FLECHY", + "nomCommune": "FLECHY" }, { - "codePostal": "69430", - "codeCommune": "69012", - "libelleAcheminement": "LES ARDILLATS", - "nomCommune": "LES ARDILLATS" + "codePostal": "62120", + "codeCommune": "62014", + "libelleAcheminement": "AIRE SUR LA LYS", + "nomCommune": "AIRE SUR LA LYS" }, { - "codePostal": "42370", - "codeCommune": "42158", - "libelleAcheminement": "LES NOES", - "nomCommune": "LES NOES" + "codePostal": "71300", + "codeCommune": "71222", + "libelleAcheminement": "GOURDON", + "nomCommune": "GOURDON" }, { - "codePostal": "11120", - "codeCommune": "11360", - "libelleAcheminement": "ST NAZAIRE D AUDE", - "nomCommune": "ST NAZAIRE D AUDE" + "codePostal": "18120", + "codeCommune": "18140", + "libelleAcheminement": "MASSAY", + "nomCommune": "MASSAY" }, { - "codePostal": "67202", - "codeCommune": "67551", - "libelleAcheminement": "WOLFISHEIM", - "nomCommune": "WOLFISHEIM" + "codePostal": "71850", + "codeCommune": "71105", + "libelleAcheminement": "CHARNAY LES MACON", + "nomCommune": "CHARNAY LES MACON" }, { - "codePostal": "69790", - "codeCommune": "69016", - "libelleAcheminement": "AZOLETTE", - "nomCommune": "AZOLETTE" + "codePostal": "60300", + "codeCommune": "60241", + "libelleAcheminement": "FONTAINE CHAALIS", + "nomCommune": "FONTAINE CHAALIS" }, { - "codePostal": "42990", - "codeCommune": "42164", - "libelleAcheminement": "PALOGNEUX", - "nomCommune": "PALOGNEUX" + "codePostal": "62650", + "codeCommune": "62021", + "libelleAcheminement": "ALETTE", + "nomCommune": "ALETTE" }, { - "codePostal": "11600", - "codeCommune": "11368", - "libelleAcheminement": "SALLELES CABARDES", - "nomCommune": "SALLELES CABARDES" + "codePostal": "71600", + "codeCommune": "71233", + "libelleAcheminement": "L HOPITAL LE MERCIER", + "nomCommune": "L HOPITAL LE MERCIER" }, { - "codePostal": "67260", - "codeCommune": "67552", - "libelleAcheminement": "WOLFSKIRCHEN", - "nomCommune": "WOLFSKIRCHEN" + "codePostal": "18570", + "codeCommune": "18157", + "libelleAcheminement": "MORTHOMIERS", + "nomCommune": "MORTHOMIERS" }, { - "codePostal": "69690", - "codeCommune": "69021", - "libelleAcheminement": "BESSENAY", - "nomCommune": "BESSENAY" + "codePostal": "71510", + "codeCommune": "71107", + "libelleAcheminement": "CHARRECEY", + "nomCommune": "CHARRECEY" }, { - "codePostal": "42360", - "codeCommune": "42165", - "libelleAcheminement": "PANISSIERES", - "nomCommune": "PANISSIERES" + "codePostal": "60240", + "codeCommune": "60256", + "libelleAcheminement": "MONTCHEVREUIL", + "nomCommune": "MONTCHEVREUIL" }, { - "codePostal": "11110", - "codeCommune": "11370", - "libelleAcheminement": "SALLES D AUDE", - "nomCommune": "SALLES D AUDE" + "codePostal": "62850", + "codeCommune": "62024", + "libelleAcheminement": "ALQUINES", + "nomCommune": "ALQUINES" }, { - "codePostal": "67120", - "codeCommune": "67554", - "libelleAcheminement": "WOLXHEIM", - "nomCommune": "WOLXHEIM" + "codePostal": "71960", + "codeCommune": "71236", + "libelleAcheminement": "IGE", + "nomCommune": "IGE" }, { - "codePostal": "69690", - "codeCommune": "69021", - "libelleAcheminement": "BESSENAY", - "nomCommune": "BESSENAY" + "codePostal": "18250", + "codeCommune": "18162", + "libelleAcheminement": "NEUILLY EN SANCERRE", + "nomCommune": "NEUILLY EN SANCERRE" }, { - "codePostal": "42590", - "codeCommune": "42171", - "libelleAcheminement": "PINAY", - "nomCommune": "PINAY" + "codePostal": "71880", + "codeCommune": "71118", + "libelleAcheminement": "CHATENOY LE ROYAL", + "nomCommune": "CHATENOY LE ROYAL" }, { - "codePostal": "11140", - "codeCommune": "11373", - "libelleAcheminement": "SALVEZINES", - "nomCommune": "SALVEZINES" + "codePostal": "60640", + "codeCommune": "60263", + "libelleAcheminement": "FRETOY LE CHATEAU", + "nomCommune": "FRETOY LE CHATEAU" }, { - "codePostal": "67310", - "codeCommune": "67555", - "libelleAcheminement": "ZEHNACKER", - "nomCommune": "ZEHNACKER" + "codePostal": "62610", + "codeCommune": "62038", + "libelleAcheminement": "ARDRES", + "nomCommune": "ARDRES" }, { - "codePostal": "69460", - "codeCommune": "69023", - "libelleAcheminement": "BLACE", - "nomCommune": "BLACE" + "codePostal": "71480", + "codeCommune": "71243", + "libelleAcheminement": "JOUDES", + "nomCommune": "JOUDES" }, { - "codePostal": "42260", - "codeCommune": "42173", - "libelleAcheminement": "POMMIERS EN FOREZ", - "nomCommune": "POMMIERS EN FOREZ" + "codePostal": "18600", + "codeCommune": "18164", + "libelleAcheminement": "NEUVY LE BARROIS", + "nomCommune": "NEUVY LE BARROIS" }, { - "codePostal": "11190", - "codeCommune": "11377", - "libelleAcheminement": "SERRES", - "nomCommune": "SERRES" + "codePostal": "71150", + "codeCommune": "71122", + "libelleAcheminement": "CHEILLY LES MARANGES", + "nomCommune": "CHEILLY LES MARANGES" }, { - "codePostal": "68600", - "codeCommune": "68001", - "libelleAcheminement": "ALGOLSHEIM", - "nomCommune": "ALGOLSHEIM" + "codePostal": "60190", + "codeCommune": "60285", + "libelleAcheminement": "GRANDVILLERS AUX BOIS", + "nomCommune": "GRANDVILLERS AUX BOIS" }, { - "codePostal": "69620", - "codeCommune": "69039", - "libelleAcheminement": "CHAMELET", - "nomCommune": "CHAMELET" + "codePostal": "62890", + "codeCommune": "62055", + "libelleAcheminement": "AUDREHEM", + "nomCommune": "AUDREHEM" }, { - "codePostal": "42110", - "codeCommune": "42175", - "libelleAcheminement": "POUILLY LES FEURS", - "nomCommune": "POUILLY LES FEURS" + "codePostal": "71440", + "codeCommune": "71246", + "libelleAcheminement": "JUIF", + "nomCommune": "JUIF" }, { - "codePostal": "11130", - "codeCommune": "11379", - "libelleAcheminement": "SIGEAN", - "nomCommune": "SIGEAN" + "codePostal": "18310", + "codeCommune": "18167", + "libelleAcheminement": "NOHANT EN GRACAY", + "nomCommune": "NOHANT EN GRACAY" }, { - "codePostal": "68130", - "codeCommune": "68004", - "libelleAcheminement": "ALTKIRCH", - "nomCommune": "ALTKIRCH" + "codePostal": "71250", + "codeCommune": "71125", + "libelleAcheminement": "CHERIZET", + "nomCommune": "CHERIZET" }, { - "codePostal": "69260", - "codeCommune": "69044", - "libelleAcheminement": "CHARBONNIERES LES BAINS", - "nomCommune": "CHARBONNIERES LES BAINS" + "codePostal": "60490", + "codeCommune": "60294", + "libelleAcheminement": "HAINVILLERS", + "nomCommune": "HAINVILLERS" }, { - "codePostal": "42153", - "codeCommune": "42184", - "libelleAcheminement": "RIORGES", - "nomCommune": "RIORGES" + "codePostal": "62164", + "codeCommune": "62056", + "libelleAcheminement": "AUDRESSELLES", + "nomCommune": "AUDRESSELLES" }, { - "codePostal": "11220", - "codeCommune": "11387", - "libelleAcheminement": "TAURIZE", - "nomCommune": "TAURIZE" + "codePostal": "71390", + "codeCommune": "71247", + "libelleAcheminement": "JULLY LES BUXY", + "nomCommune": "JULLY LES BUXY" }, { - "codePostal": "68280", - "codeCommune": "68008", - "libelleAcheminement": "APPENWIHR", - "nomCommune": "APPENWIHR" + "codePostal": "18110", + "codeCommune": "18189", + "libelleAcheminement": "QUANTILLY", + "nomCommune": "QUANTILLY" }, { - "codePostal": "69220", - "codeCommune": "69045", - "libelleAcheminement": "CHARENTAY", - "nomCommune": "CHARENTAY" + "codePostal": "71540", + "codeCommune": "71129", + "libelleAcheminement": "CHISSEY EN MORVAN", + "nomCommune": "CHISSEY EN MORVAN" }, { - "codePostal": "42230", - "codeCommune": "42189", - "libelleAcheminement": "ROCHE LA MOLIERE", - "nomCommune": "ROCHE LA MOLIERE" + "codePostal": "60112", + "codeCommune": "60301", + "libelleAcheminement": "HAUCOURT", + "nomCommune": "HAUCOURT" }, { - "codePostal": "11330", - "codeCommune": "11388", - "libelleAcheminement": "TERMES", - "nomCommune": "TERMES" + "codePostal": "62390", + "codeCommune": "62060", + "libelleAcheminement": "AUXI LE CHATEAU", + "nomCommune": "AUXI LE CHATEAU" }, { - "codePostal": "68700", - "codeCommune": "68011", - "libelleAcheminement": "ASPACH LE BAS", - "nomCommune": "ASPACH LE BAS" + "codePostal": "71700", + "codeCommune": "71248", + "libelleAcheminement": "LACROST", + "nomCommune": "LACROST" }, { - "codePostal": "69440", - "codeCommune": "69051", - "libelleAcheminement": "CHAUSSAN", - "nomCommune": "CHAUSSAN" + "codePostal": "18290", + "codeCommune": "18198", + "libelleAcheminement": "ST AMBROIX", + "nomCommune": "ST AMBROIX" }, { - "codePostal": "42370", - "codeCommune": "42199", - "libelleAcheminement": "ST ANDRE D APCHON", - "nomCommune": "ST ANDRE D APCHON" + "codePostal": "71350", + "codeCommune": "71131", + "libelleAcheminement": "CIEL", + "nomCommune": "CIEL" }, { - "codePostal": "11400", - "codeCommune": "11399", - "libelleAcheminement": "TREVILLE", - "nomCommune": "TREVILLE" + "codePostal": "60250", + "codeCommune": "60307", + "libelleAcheminement": "HEILLES", + "nomCommune": "HEILLES" }, { - "codePostal": "68150", - "codeCommune": "68014", - "libelleAcheminement": "AUBURE", - "nomCommune": "AUBURE" + "codePostal": "62127", + "codeCommune": "62061", + "libelleAcheminement": "AVERDOINGT", + "nomCommune": "AVERDOINGT" }, { - "codePostal": "69440", - "codeCommune": "69051", - "libelleAcheminement": "CHAUSSAN", - "nomCommune": "CHAUSSAN" + "codePostal": "71240", + "codeCommune": "71249", + "libelleAcheminement": "LAIVES", + "nomCommune": "LAIVES" }, { - "codePostal": "42520", - "codeCommune": "42201", - "libelleAcheminement": "ST APPOLINARD", - "nomCommune": "ST APPOLINARD" + "codePostal": "18270", + "codeCommune": "18203", + "libelleAcheminement": "ST CHRISTOPHE LE CHAUDRY", + "nomCommune": "ST CHRISTOPHE LE CHAUDRY" }, { - "codePostal": "11330", - "codeCommune": "11409", - "libelleAcheminement": "VIGNEVIEILLE", - "nomCommune": "VIGNEVIEILLE" + "codePostal": "71130", + "codeCommune": "71136", + "libelleAcheminement": "CLESSY", + "nomCommune": "CLESSY" }, { - "codePostal": "68740", - "codeCommune": "68016", - "libelleAcheminement": "BALGAU", - "nomCommune": "BALGAU" + "codePostal": "60370", + "codeCommune": "60313", + "libelleAcheminement": "HERMES", + "nomCommune": "HERMES" }, { - "codePostal": "69380", - "codeCommune": "69052", - "libelleAcheminement": "CHAZAY D AZERGUES", - "nomCommune": "CHAZAY D AZERGUES" + "codePostal": "62810", + "codeCommune": "62063", + "libelleAcheminement": "AVESNES LE COMTE", + "nomCommune": "AVESNES LE COMTE" }, { - "codePostal": "42400", - "codeCommune": "42207", - "libelleAcheminement": "ST CHAMOND", - "nomCommune": "ST CHAMOND" + "codePostal": "71240", + "codeCommune": "71252", + "libelleAcheminement": "LALHEUE", + "nomCommune": "LALHEUE" }, { - "codePostal": "11600", - "codeCommune": "11416", - "libelleAcheminement": "VILLARZEL CABARDES", - "nomCommune": "VILLARZEL CABARDES" + "codePostal": "18230", + "codeCommune": "18205", + "libelleAcheminement": "ST DOULCHARD", + "nomCommune": "ST DOULCHARD" }, { - "codePostal": "68126", - "codeCommune": "68026", - "libelleAcheminement": "BENNWIHR MITTELWIHR", - "nomCommune": "BENNWIHR" + "codePostal": "71990", + "codeCommune": "71142", + "libelleAcheminement": "LA COMELLE", + "nomCommune": "LA COMELLE" }, { - "codePostal": "69840", - "codeCommune": "69053", - "libelleAcheminement": "CHENAS", - "nomCommune": "CHENAS" + "codePostal": "60430", + "codeCommune": "60316", + "libelleAcheminement": "HODENC L EVEQUE", + "nomCommune": "HODENC L EVEQUE" }, { - "codePostal": "42160", - "codeCommune": "42211", - "libelleAcheminement": "ST CYPRIEN", - "nomCommune": "ST CYPRIEN" + "codePostal": "62210", + "codeCommune": "62065", + "libelleAcheminement": "AVION", + "nomCommune": "AVION" }, { - "codePostal": "11300", - "codeCommune": "11417", - "libelleAcheminement": "VILLARZEL DU RAZES", - "nomCommune": "VILLARZEL DU RAZES" + "codePostal": "71380", + "codeCommune": "71253", + "libelleAcheminement": "LANS", + "nomCommune": "LANS" }, { - "codePostal": "68500", - "codeCommune": "68030", - "libelleAcheminement": "BERGHOLTZZELL", - "nomCommune": "BERGHOLTZZELL" + "codePostal": "18200", + "codeCommune": "18209", + "libelleAcheminement": "ST GEORGES DE POISIEUX", + "nomCommune": "ST GEORGES DE POISIEUX" }, { - "codePostal": "69430", - "codeCommune": "69054", - "libelleAcheminement": "CHENELETTE", - "nomCommune": "CHENELETTE" + "codePostal": "71480", + "codeCommune": "71143", + "libelleAcheminement": "CONDAL", + "nomCommune": "CONDAL" }, { - "codePostal": "42123", - "codeCommune": "42212", - "libelleAcheminement": "ST CYR DE FAVIERES", - "nomCommune": "ST CYR DE FAVIERES" + "codePostal": "60570", + "codeCommune": "60330", + "libelleAcheminement": "LABOISSIERE EN THELLE", + "nomCommune": "LABOISSIERE EN THELLE" }, { - "codePostal": "11800", - "codeCommune": "11422", - "libelleAcheminement": "VILLEDUBERT", - "nomCommune": "VILLEDUBERT" + "codePostal": "62560", + "codeCommune": "62067", + "libelleAcheminement": "AVROULT", + "nomCommune": "AVROULT" }, { - "codePostal": "68560", - "codeCommune": "68033", - "libelleAcheminement": "BETTENDORF", - "nomCommune": "BETTENDORF" + "codePostal": "71530", + "codeCommune": "71257", + "libelleAcheminement": "LESSARD LE NATIONAL", + "nomCommune": "LESSARD LE NATIONAL" }, { - "codePostal": "69380", - "codeCommune": "69056", - "libelleAcheminement": "CHESSY", - "nomCommune": "CHESSY" + "codePostal": "18390", + "codeCommune": "18213", + "libelleAcheminement": "ST GERMAIN DU PUY", + "nomCommune": "ST GERMAIN DU PUY" }, { - "codePostal": "42750", - "codeCommune": "42215", - "libelleAcheminement": "ST DENIS DE CABANNE", - "nomCommune": "ST DENIS DE CABANNE" + "codePostal": "71200", + "codeCommune": "71153", + "libelleAcheminement": "LE CREUSOT", + "nomCommune": "LE CREUSOT" }, { - "codePostal": "11570", - "codeCommune": "11423", - "libelleAcheminement": "VILLEFLOURE", - "nomCommune": "VILLEFLOURE" + "codePostal": "60140", + "codeCommune": "60332", + "libelleAcheminement": "LABRUYERE", + "nomCommune": "LABRUYERE" }, { - "codePostal": "68480", - "codeCommune": "68035", - "libelleAcheminement": "BIEDERTHAL", - "nomCommune": "BIEDERTHAL" + "codePostal": "62310", + "codeCommune": "62069", + "libelleAcheminement": "AZINCOURT", + "nomCommune": "AZINCOURT" }, { - "codePostal": "69115", - "codeCommune": "69058", - "libelleAcheminement": "CHIROUBLES", - "nomCommune": "CHIROUBLES" + "codePostal": "71500", + "codeCommune": "71263", + "libelleAcheminement": "LOUHANS", + "nomCommune": "LOUHANS" }, { - "codePostal": "42330", - "codeCommune": "42222", - "libelleAcheminement": "ST GALMIER", - "nomCommune": "ST GALMIER" + "codePostal": "18100", + "codeCommune": "18214", + "libelleAcheminement": "ST HILAIRE DE COURT", + "nomCommune": "ST HILAIRE DE COURT" }, { - "codePostal": "11600", - "codeCommune": "11425", - "libelleAcheminement": "VILLEGAILHENC", - "nomCommune": "VILLEGAILHENC" + "codePostal": "71260", + "codeCommune": "71156", + "libelleAcheminement": "CRUZILLE", + "nomCommune": "CRUZILLE" }, { - "codePostal": "68540", - "codeCommune": "68043", - "libelleAcheminement": "BOLLWILLER", - "nomCommune": "BOLLWILLER" + "codePostal": "60650", + "codeCommune": "60333", + "libelleAcheminement": "LACHAPELLE AUX POTS", + "nomCommune": "LACHAPELLE AUX POTS" }, { - "codePostal": "69660", - "codeCommune": "69063", - "libelleAcheminement": "COLLONGES AU MONT D OR", - "nomCommune": "COLLONGES AU MONT D OR" + "codePostal": "62127", + "codeCommune": "62070", + "libelleAcheminement": "BAILLEUL AUX CORNAILLES", + "nomCommune": "BAILLEUL AUX CORNAILLES" }, { - "codePostal": "42510", - "codeCommune": "42226", - "libelleAcheminement": "ST GEORGES DE BAROILLE", - "nomCommune": "ST GEORGES DE BAROILLE" + "codePostal": "71260", + "codeCommune": "71267", + "libelleAcheminement": "LUGNY", + "nomCommune": "LUGNY" }, { - "codePostal": "11600", - "codeCommune": "11426", - "libelleAcheminement": "VILLEGLY", - "nomCommune": "VILLEGLY" + "codePostal": "18330", + "codeCommune": "18219", + "libelleAcheminement": "ST LAURENT", + "nomCommune": "ST LAURENT" }, { - "codePostal": "68480", - "codeCommune": "68049", - "libelleAcheminement": "BOUXWILLER", - "nomCommune": "BOUXWILLER" + "codePostal": "71520", + "codeCommune": "71163", + "libelleAcheminement": "CURTIL SOUS BUFFIERES", + "nomCommune": "CURTIL SOUS BUFFIERES" }, { - "codePostal": "69270", - "codeCommune": "69068", - "libelleAcheminement": "COUZON AU MONT D OR", - "nomCommune": "COUZON AU MONT D OR" + "codePostal": "60380", + "codeCommune": "60335", + "libelleAcheminement": "LACHAPELLE SOUS GERBEROY", + "nomCommune": "LACHAPELLE SOUS GERBEROY" }, { - "codePostal": "42990", - "codeCommune": "42227", - "libelleAcheminement": "ST GEORGES EN COUZAN", - "nomCommune": "ST GEORGES EN COUZAN" + "codePostal": "62360", + "codeCommune": "62075", + "libelleAcheminement": "BAINCTHUN", + "nomCommune": "BAINCTHUN" }, { - "codePostal": "11620", - "codeCommune": "11429", - "libelleAcheminement": "VILLEMOUSTAUSSOU", - "nomCommune": "VILLEMOUSTAUSSOU" + "codePostal": "71120", + "codeCommune": "71268", + "libelleAcheminement": "LUGNY LES CHAROLLES", + "nomCommune": "LUGNY LES CHAROLLES" }, { - "codePostal": "68780", - "codeCommune": "68052", - "libelleAcheminement": "BRETTEN", - "nomCommune": "BRETTEN" + "codePostal": "18270", + "codeCommune": "18225", + "libelleAcheminement": "ST MAUR", + "nomCommune": "ST MAUR" }, { - "codePostal": "69290", - "codeCommune": "69069", - "libelleAcheminement": "CRAPONNE", - "nomCommune": "CRAPONNE" + "codePostal": "71150", + "codeCommune": "71170", + "libelleAcheminement": "DEMIGNY", + "nomCommune": "DEMIGNY" }, { - "codePostal": "42640", - "codeCommune": "42231", - "libelleAcheminement": "ST GERMAIN LESPINASSE", - "nomCommune": "ST GERMAIN LESPINASSE" + "codePostal": "60190", + "codeCommune": "60337", + "libelleAcheminement": "LACHELLE", + "nomCommune": "LACHELLE" }, { - "codePostal": "11400", - "codeCommune": "11430", - "libelleAcheminement": "VILLENEUVE LA COMPTAL", - "nomCommune": "VILLENEUVE LA COMPTAL" + "codePostal": "62860", + "codeCommune": "62081", + "libelleAcheminement": "BARALLE", + "nomCommune": "BARALLE" }, { - "codePostal": "68350", - "codeCommune": "68056", - "libelleAcheminement": "BRUNSTATT DIDENHEIM", - "nomCommune": "BRUNSTATT DIDENHEIM" + "codePostal": "71390", + "codeCommune": "71277", + "libelleAcheminement": "MARCILLY LES BUXY", + "nomCommune": "MARCILLY LES BUXY" }, { - "codePostal": "69570", - "codeCommune": "69072", - "libelleAcheminement": "DARDILLY", - "nomCommune": "DARDILLY" + "codePostal": "18300", + "codeCommune": "18233", + "libelleAcheminement": "ST SATUR", + "nomCommune": "ST SATUR" }, { - "codePostal": "42570", - "codeCommune": "42234", - "libelleAcheminement": "ST HEAND", - "nomCommune": "ST HEAND" + "codePostal": "71190", + "codeCommune": "71172", + "libelleAcheminement": "DETTEY", + "nomCommune": "DETTEY" }, { - "codePostal": "11150", - "codeCommune": "11438", - "libelleAcheminement": "VILLESISCLE", - "nomCommune": "VILLESISCLE" + "codePostal": "60510", + "codeCommune": "60339", + "libelleAcheminement": "LAFRAYE", + "nomCommune": "LAFRAYE" }, { - "codePostal": "68520", - "codeCommune": "68059", - "libelleAcheminement": "BURNHAUPT LE BAS", - "nomCommune": "BURNHAUPT LE BAS" + "codePostal": "62810", + "codeCommune": "62084", + "libelleAcheminement": "BARLY", + "nomCommune": "BARLY" }, { - "codePostal": "69640", - "codeCommune": "69074", - "libelleAcheminement": "DENICE", - "nomCommune": "DENICE" + "codePostal": "71220", + "codeCommune": "71279", + "libelleAcheminement": "LE ROUSSET MARIZY", + "nomCommune": "LE ROUSSET MARIZY" }, { - "codePostal": "42440", - "codeCommune": "42238", - "libelleAcheminement": "ST JEAN LA VETRE", - "nomCommune": "ST JEAN LA VETRE" + "codePostal": "18360", + "codeCommune": "18238", + "libelleAcheminement": "ST VITTE", + "nomCommune": "ST VITTE" }, { - "codePostal": "12630", - "codeCommune": "12001", - "libelleAcheminement": "AGEN D AVEYRON", - "nomCommune": "AGEN D AVEYRON" + "codePostal": "71330", + "codeCommune": "71173", + "libelleAcheminement": "DEVROUZE", + "nomCommune": "DEVROUZE" }, { - "codePostal": "68220", - "codeCommune": "68061", - "libelleAcheminement": "BUSCHWILLER", - "nomCommune": "BUSCHWILLER" + "codePostal": "60590", + "codeCommune": "60343", + "libelleAcheminement": "LALANDE EN SON", + "nomCommune": "LALANDE EN SON" }, { - "codePostal": "69170", - "codeCommune": "69075", - "libelleAcheminement": "DIEME", - "nomCommune": "DIEME" + "codePostal": "62121", + "codeCommune": "62103", + "libelleAcheminement": "BEHAGNIES", + "nomCommune": "BEHAGNIES" }, { - "codePostal": "42260", - "codeCommune": "42243", - "libelleAcheminement": "ST JULIEN D ODDES", - "nomCommune": "ST JULIEN D ODDES" + "codePostal": "71220", + "codeCommune": "71279", + "libelleAcheminement": "LE ROUSSET MARIZY", + "nomCommune": "LE ROUSSET MARIZY" }, { - "codePostal": "12430", - "codeCommune": "12006", - "libelleAcheminement": "ALRANCE", - "nomCommune": "ALRANCE" + "codePostal": "18360", + "codeCommune": "18245", + "libelleAcheminement": "SAULZAIS LE POTIER", + "nomCommune": "SAULZAIS LE POTIER" }, { - "codePostal": "68130", - "codeCommune": "68062", - "libelleAcheminement": "CARSPACH", - "nomCommune": "CARSPACH" + "codePostal": "71800", + "codeCommune": "71185", + "libelleAcheminement": "DYO", + "nomCommune": "DYO" }, { - "codePostal": "69870", - "codeCommune": "69093", - "libelleAcheminement": "GRANDRIS", - "nomCommune": "GRANDRIS" + "codePostal": "60140", + "codeCommune": "60360", + "libelleAcheminement": "LIANCOURT", + "nomCommune": "LIANCOURT" }, { - "codePostal": "42111", - "codeCommune": "42245", - "libelleAcheminement": "VETRE SUR ANZON", - "nomCommune": "VETRE SUR ANZON" + "codePostal": "62150", + "codeCommune": "62120", + "libelleAcheminement": "BEUGIN", + "nomCommune": "BEUGIN" }, { - "codePostal": "12110", - "codeCommune": "12013", - "libelleAcheminement": "AUBIN", - "nomCommune": "AUBIN" + "codePostal": "71250", + "codeCommune": "71287", + "libelleAcheminement": "MASSILLY", + "nomCommune": "MASSILLY" }, { - "codePostal": "68210", - "codeCommune": "68065", - "libelleAcheminement": "CHAVANNES SUR L ETANG", - "nomCommune": "CHAVANNES SUR L ETANG" + "codePostal": "18570", + "codeCommune": "18255", + "libelleAcheminement": "LE SUBDRAY", + "nomCommune": "LE SUBDRAY" }, { - "codePostal": "69640", - "codeCommune": "69105", - "libelleAcheminement": "LACENAS", - "nomCommune": "LACENAS" + "codePostal": "71350", + "codeCommune": "71186", + "libelleAcheminement": "ECUELLES", + "nomCommune": "ECUELLES" }, { - "codePostal": "42440", - "codeCommune": "42245", - "libelleAcheminement": "VETRE SUR ANZON", - "nomCommune": "VETRE SUR ANZON" + "codePostal": "60150", + "codeCommune": "60373", + "libelleAcheminement": "MACHEMONT", + "nomCommune": "MACHEMONT" }, { - "codePostal": "12430", - "codeCommune": "12017", - "libelleAcheminement": "AYSSENES", - "nomCommune": "AYSSENES" + "codePostal": "62450", + "codeCommune": "62121", + "libelleAcheminement": "BEUGNATRE", + "nomCommune": "BEUGNATRE" }, { - "codePostal": "68480", - "codeCommune": "68067", - "libelleAcheminement": "COURTAVON", - "nomCommune": "COURTAVON" + "codePostal": "71250", + "codeCommune": "71290", + "libelleAcheminement": "MAZILLE", + "nomCommune": "MAZILLE" }, { - "codePostal": "69220", - "codeCommune": "69108", - "libelleAcheminement": "LANCIE", - "nomCommune": "LANCIE" + "codePostal": "18260", + "codeCommune": "18259", + "libelleAcheminement": "SURY ES BOIS", + "nomCommune": "SURY ES BOIS" }, { - "codePostal": "42990", - "codeCommune": "42247", - "libelleAcheminement": "ST JUST EN BAS", - "nomCommune": "ST JUST EN BAS" + "codePostal": "71360", + "codeCommune": "71188", + "libelleAcheminement": "EPERTULLY", + "nomCommune": "EPERTULLY" }, { - "codePostal": "12240", - "codeCommune": "12021", - "libelleAcheminement": "LE BAS SEGALA", - "nomCommune": "LE BAS SEGALA" + "codePostal": "60600", + "codeCommune": "60375", + "libelleAcheminement": "MAIMBEVILLE", + "nomCommune": "MAIMBEVILLE" }, { - "codePostal": "68420", - "codeCommune": "68078", - "libelleAcheminement": "EGUISHEIM", - "nomCommune": "EGUISHEIM" + "codePostal": "62124", + "codeCommune": "62122", + "libelleAcheminement": "BEUGNY", + "nomCommune": "BEUGNY" }, { - "codePostal": "69400", - "codeCommune": "69115", - "libelleAcheminement": "LIMAS", - "nomCommune": "LIMAS" + "codePostal": "71480", + "codeCommune": "71300", + "libelleAcheminement": "LE MIROIR", + "nomCommune": "LE MIROIR" }, { - "codePostal": "42210", - "codeCommune": "42251", - "libelleAcheminement": "ST LAURENT LA CONCHE", - "nomCommune": "ST LAURENT LA CONCHE" + "codePostal": "18210", + "codeCommune": "18261", + "libelleAcheminement": "THAUMIERS", + "nomCommune": "THAUMIERS" }, { - "codePostal": "12370", - "codeCommune": "12025", - "libelleAcheminement": "BELMONT SUR RANCE", - "nomCommune": "BELMONT SUR RANCE" + "codePostal": "71360", + "codeCommune": "71190", + "libelleAcheminement": "EPINAC", + "nomCommune": "EPINAC" }, { - "codePostal": "68720", - "codeCommune": "68081", - "libelleAcheminement": "ST BERNARD", - "nomCommune": "ST BERNARD" + "codePostal": "60310", + "codeCommune": "60381", + "libelleAcheminement": "MARGNY AUX CERISES", + "nomCommune": "MARGNY AUX CERISES" }, { - "codePostal": "69700", - "codeCommune": "69118", - "libelleAcheminement": "LOIRE SUR RHONE", - "nomCommune": "LOIRE SUR RHONE" + "codePostal": "62170", + "codeCommune": "62123", + "libelleAcheminement": "BEUSSENT", + "nomCommune": "BEUSSENT" }, { - "codePostal": "42430", - "codeCommune": "42255", - "libelleAcheminement": "ST MARCEL D URFE", - "nomCommune": "ST MARCEL D URFE" + "codePostal": "71500", + "codeCommune": "71303", + "libelleAcheminement": "MONTAGNY PRES LOUHANS", + "nomCommune": "MONTAGNY PRES LOUHANS" }, { - "codePostal": "12310", - "codeCommune": "12026", - "libelleAcheminement": "BERTHOLENE", - "nomCommune": "BERTHOLENE" + "codePostal": "18100", + "codeCommune": "18263", + "libelleAcheminement": "THENIOUX", + "nomCommune": "THENIOUX" }, { - "codePostal": "68140", - "codeCommune": "68083", - "libelleAcheminement": "ESCHBACH AU VAL", - "nomCommune": "ESCHBACH AU VAL" + "codePostal": "71240", + "codeCommune": "71193", + "libelleAcheminement": "ETRIGNY", + "nomCommune": "ETRIGNY" }, { - "codePostal": "69380", - "codeCommune": "69125", - "libelleAcheminement": "MARCILLY D AZERGUES", - "nomCommune": "MARCILLY D AZERGUES" + "codePostal": "60890", + "codeCommune": "60385", + "libelleAcheminement": "MAROLLES", + "nomCommune": "MAROLLES" }, { - "codePostal": "42680", - "codeCommune": "42256", - "libelleAcheminement": "ST MARCELLIN EN FOREZ", - "nomCommune": "ST MARCELLIN EN FOREZ" + "codePostal": "62650", + "codeCommune": "62127", + "libelleAcheminement": "BEZINGHEM", + "nomCommune": "BEZINGHEM" }, { - "codePostal": "12340", - "codeCommune": "12033", - "libelleAcheminement": "BOZOULS", - "nomCommune": "BOZOULS" + "codePostal": "71110", + "codeCommune": "71307", + "libelleAcheminement": "MONTCEAUX L ETOILE", + "nomCommune": "MONTCEAUX L ETOILE" }, { - "codePostal": "68210", - "codeCommune": "68085", - "libelleAcheminement": "ETEIMBES", - "nomCommune": "ETEIMBES" + "codePostal": "18300", + "codeCommune": "18272", + "libelleAcheminement": "VEAUGUES", + "nomCommune": "VEAUGUES" }, { - "codePostal": "69860", - "codeCommune": "69135", - "libelleAcheminement": "DEUX GROSNES", - "nomCommune": "DEUX GROSNES" + "codePostal": "71270", + "codeCommune": "71207", + "libelleAcheminement": "FRETTERANS", + "nomCommune": "FRETTERANS" }, { - "codePostal": "42240", - "codeCommune": "42262", - "libelleAcheminement": "ST MAURICE EN GOURGOIS", - "nomCommune": "ST MAURICE EN GOURGOIS" + "codePostal": "60140", + "codeCommune": "60404", + "libelleAcheminement": "MOGNEVILLE", + "nomCommune": "MOGNEVILLE" }, { - "codePostal": "12480", - "codeCommune": "12037", - "libelleAcheminement": "BROQUIES", - "nomCommune": "BROQUIES" + "codePostal": "62270", + "codeCommune": "62137", + "libelleAcheminement": "BLANGERVAL BLANGERMONT", + "nomCommune": "BLANGERVAL BLANGERMONT" }, { - "codePostal": "68470", - "codeCommune": "68089", - "libelleAcheminement": "FELLERING", - "nomCommune": "FELLERING" + "codePostal": "71500", + "codeCommune": "71311", + "libelleAcheminement": "MONTCONY", + "nomCommune": "MONTCONY" }, { - "codePostal": "69860", - "codeCommune": "69135", - "libelleAcheminement": "DEUX GROSNES", - "nomCommune": "DEUX GROSNES" + "codePostal": "18100", + "codeCommune": "18279", + "libelleAcheminement": "VIERZON", + "nomCommune": "VIERZON" }, { - "codePostal": "42260", - "codeCommune": "42268", - "libelleAcheminement": "VEZELIN SUR LOIRE", - "nomCommune": "VEZELIN SUR LOIRE" + "codePostal": "71520", + "codeCommune": "71217", + "libelleAcheminement": "GERMOLLES SUR GROSNE", + "nomCommune": "GERMOLLES SUR GROSNE" }, { - "codePostal": "12450", - "codeCommune": "12043", - "libelleAcheminement": "CALMONT", - "nomCommune": "CALMONT" + "codePostal": "60113", + "codeCommune": "60408", + "libelleAcheminement": "MONCHY HUMIERES", + "nomCommune": "MONCHY HUMIERES" }, { - "codePostal": "68480", - "codeCommune": "68090", - "libelleAcheminement": "FERRETTE", - "nomCommune": "FERRETTE" + "codePostal": "62120", + "codeCommune": "62141", + "libelleAcheminement": "BLESSY", + "nomCommune": "BLESSY" }, { - "codePostal": "69480", - "codeCommune": "69140", - "libelleAcheminement": "MORANCE", - "nomCommune": "MORANCE" + "codePostal": "71520", + "codeCommune": "71316", + "libelleAcheminement": "MONTMELARD", + "nomCommune": "MONTMELARD" }, { - "codePostal": "42740", - "codeCommune": "42271", - "libelleAcheminement": "ST PAUL EN JAREZ", - "nomCommune": "ST PAUL EN JAREZ" + "codePostal": "18130", + "codeCommune": "18289", + "libelleAcheminement": "VORNAY", + "nomCommune": "VORNAY" }, { - "codePostal": "12560", - "codeCommune": "12047", - "libelleAcheminement": "CAMPAGNAC", - "nomCommune": "CAMPAGNAC" + "codePostal": "71390", + "codeCommune": "71225", + "libelleAcheminement": "GRANGES", + "nomCommune": "GRANGES" }, { - "codePostal": "68480", - "codeCommune": "68092", - "libelleAcheminement": "FISLIS", - "nomCommune": "FISLIS" + "codePostal": "60290", + "codeCommune": "60409", + "libelleAcheminement": "MONCHY ST ELOI", + "nomCommune": "MONCHY ST ELOI" }, { - "codePostal": "69440", - "codeCommune": "69141", - "libelleAcheminement": "MORNANT", - "nomCommune": "MORNANT" + "codePostal": "62390", + "codeCommune": "62143", + "libelleAcheminement": "BOFFLES", + "nomCommune": "BOFFLES" }, { - "codePostal": "42520", - "codeCommune": "42272", - "libelleAcheminement": "ST PIERRE DE BOEUF", - "nomCommune": "ST PIERRE DE BOEUF" + "codePostal": "71510", + "codeCommune": "71321", + "libelleAcheminement": "MOREY", + "nomCommune": "MOREY" }, { - "codePostal": "12140", - "codeCommune": "12048", - "libelleAcheminement": "CAMPOURIEZ", - "nomCommune": "CAMPOURIEZ" + "codePostal": "18330", + "codeCommune": "18290", + "libelleAcheminement": "VOUZERON", + "nomCommune": "VOUZERON" }, { - "codePostal": "68510", - "codeCommune": "68103", - "libelleAcheminement": "GEISPITZEN", - "nomCommune": "GEISPITZEN" + "codePostal": "71870", + "codeCommune": "71235", + "libelleAcheminement": "HURIGNY", + "nomCommune": "HURIGNY" }, { - "codePostal": "69530", - "codeCommune": "69148", - "libelleAcheminement": "ORLIENAS", - "nomCommune": "ORLIENAS" + "codePostal": "60810", + "codeCommune": "60415", + "libelleAcheminement": "MONTEPILLOY", + "nomCommune": "MONTEPILLOY" }, { - "codePostal": "42440", - "codeCommune": "42278", - "libelleAcheminement": "ST PRIEST LA VETRE", - "nomCommune": "ST PRIEST LA VETRE" + "codePostal": "62175", + "codeCommune": "62147", + "libelleAcheminement": "BOIRY STE RICTRUDE", + "nomCommune": "BOIRY STE RICTRUDE" }, { - "codePostal": "12460", - "codeCommune": "12048", - "libelleAcheminement": "CAMPOURIEZ", - "nomCommune": "CAMPOURIEZ" + "codePostal": "71130", + "codeCommune": "71330", + "libelleAcheminement": "NEUVY GRANDCHAMP", + "nomCommune": "NEUVY GRANDCHAMP" }, { - "codePostal": "68210", - "codeCommune": "68105", - "libelleAcheminement": "GILDWILLER", - "nomCommune": "GILDWILLER" + "codePostal": "19200", + "codeCommune": "19002", + "libelleAcheminement": "AIX", + "nomCommune": "AIX" }, { - "codePostal": "69250", - "codeCommune": "69153", - "libelleAcheminement": "POLEYMIEUX AU MONT D OR", - "nomCommune": "POLEYMIEUX AU MONT D OR" + "codePostal": "71340", + "codeCommune": "71238", + "libelleAcheminement": "IGUERANDE", + "nomCommune": "IGUERANDE" }, { - "codePostal": "42660", - "codeCommune": "42280", - "libelleAcheminement": "ST REGIS DU COIN", - "nomCommune": "ST REGIS DU COIN" + "codePostal": "60190", + "codeCommune": "60418", + "libelleAcheminement": "MONTIERS", + "nomCommune": "MONTIERS" }, { - "codePostal": "12290", - "codeCommune": "12050", - "libelleAcheminement": "CANET DE SALARS", - "nomCommune": "CANET DE SALARS" + "codePostal": "62170", + "codeCommune": "62150", + "libelleAcheminement": "BOISJEAN", + "nomCommune": "BOISJEAN" }, { - "codePostal": "68320", - "codeCommune": "68110", - "libelleAcheminement": "GRUSSENHEIM", - "nomCommune": "GRUSSENHEIM" + "codePostal": "71290", + "codeCommune": "71332", + "libelleAcheminement": "ORMES", + "nomCommune": "ORMES" }, { - "codePostal": "69490", - "codeCommune": "69157", - "libelleAcheminement": "VINDRY SUR TURDINE", - "nomCommune": "VINDRY SUR TURDINE" + "codePostal": "19120", + "codeCommune": "19007", + "libelleAcheminement": "ALTILLAC", + "nomCommune": "ALTILLAC" }, { - "codePostal": "42440", - "codeCommune": "42295", - "libelleAcheminement": "LES SALLES", - "nomCommune": "LES SALLES" + "codePostal": "71440", + "codeCommune": "71256", + "libelleAcheminement": "LESSARD EN BRESSE", + "nomCommune": "LESSARD EN BRESSE" }, { - "codePostal": "12260", - "codeCommune": "12053", - "libelleAcheminement": "LA CAPELLE BALAGUIER", - "nomCommune": "LA CAPELLE BALAGUIER" + "codePostal": "60300", + "codeCommune": "60422", + "libelleAcheminement": "MONTLOGNON", + "nomCommune": "MONTLOGNON" }, { - "codePostal": "68500", - "codeCommune": "68112", - "libelleAcheminement": "GUEBWILLER", - "nomCommune": "GUEBWILLER" + "codePostal": "62128", + "codeCommune": "62172", + "libelleAcheminement": "BOYELLES", + "nomCommune": "BOYELLES" }, { - "codePostal": "69400", - "codeCommune": "69159", - "libelleAcheminement": "PORTE DES PIERRES DOREES", - "nomCommune": "PORTE DES PIERRES DOREES" + "codePostal": "71800", + "codeCommune": "71337", + "libelleAcheminement": "OYE", + "nomCommune": "OYE" }, { - "codePostal": "42290", - "codeCommune": "42302", - "libelleAcheminement": "SORBIERS", - "nomCommune": "SORBIERS" + "codePostal": "19310", + "codeCommune": "19015", + "libelleAcheminement": "AYEN", + "nomCommune": "AYEN" }, { - "codePostal": "12240", - "codeCommune": "12068", - "libelleAcheminement": "COLOMBIES", - "nomCommune": "COLOMBIES" + "codePostal": "71270", + "codeCommune": "71262", + "libelleAcheminement": "LONGEPIERRE", + "nomCommune": "LONGEPIERRE" }, { - "codePostal": "68560", - "codeCommune": "68128", - "libelleAcheminement": "HEIMERSDORF", - "nomCommune": "HEIMERSDORF" + "codePostal": "60134", + "codeCommune": "60426", + "libelleAcheminement": "MONTREUIL SUR THERAIN", + "nomCommune": "MONTREUIL SUR THERAIN" }, { - "codePostal": "69440", - "codeCommune": "69180", - "libelleAcheminement": "ST ANDRE LA COTE", - "nomCommune": "ST ANDRE LA COTE" + "codePostal": "62140", + "codeCommune": "62175", + "libelleAcheminement": "BREVILLERS", + "nomCommune": "BREVILLERS" }, { - "codePostal": "42660", - "codeCommune": "42306", - "libelleAcheminement": "TARENTAISE", - "nomCommune": "TARENTAISE" + "codePostal": "71150", + "codeCommune": "71343", + "libelleAcheminement": "PARIS L HOPITAL", + "nomCommune": "PARIS L HOPITAL" }, { - "codePostal": "12170", - "codeCommune": "12075", - "libelleAcheminement": "CONNAC", - "nomCommune": "CONNAC" + "codePostal": "19290", + "codeCommune": "19021", + "libelleAcheminement": "BELLECHASSAGNE", + "nomCommune": "BELLECHASSAGNE" }, { - "codePostal": "68990", - "codeCommune": "68129", - "libelleAcheminement": "HEIMSBRUNN", - "nomCommune": "HEIMSBRUNN" + "codePostal": "71500", + "codeCommune": "71263", + "libelleAcheminement": "LOUHANS", + "nomCommune": "LOUHANS" }, { - "codePostal": "69790", - "codeCommune": "69182", - "libelleAcheminement": "ST BONNET DES BRUYERES", - "nomCommune": "ST BONNET DES BRUYERES" + "codePostal": "60119", + "codeCommune": "60427", + "libelleAcheminement": "MONTS", + "nomCommune": "MONTS" }, { - "codePostal": "42800", - "codeCommune": "42307", - "libelleAcheminement": "TARTARAS", - "nomCommune": "TARTARAS" + "codePostal": "62870", + "codeCommune": "62183", + "libelleAcheminement": "BUIRE LE SEC", + "nomCommune": "BUIRE LE SEC" }, { - "codePostal": "12540", - "codeCommune": "12077", - "libelleAcheminement": "CORNUS", - "nomCommune": "CORNUS" + "codePostal": "71260", + "codeCommune": "71345", + "libelleAcheminement": "PERONNE", + "nomCommune": "PERONNE" }, { - "codePostal": "68330", - "codeCommune": "68149", - "libelleAcheminement": "HUNINGUE", - "nomCommune": "HUNINGUE" + "codePostal": "19230", + "codeCommune": "19025", + "libelleAcheminement": "BEYSSENAC", + "nomCommune": "BEYSSENAC" }, { - "codePostal": "69790", - "codeCommune": "69186", - "libelleAcheminement": "ST CLEMENT DE VERS", - "nomCommune": "ST CLEMENT DE VERS" + "codePostal": "71000", + "codeCommune": "71270", + "libelleAcheminement": "MACON", + "nomCommune": "MACON" }, { - "codePostal": "42380", - "codeCommune": "42312", - "libelleAcheminement": "LA TOURETTE", - "nomCommune": "LA TOURETTE" + "codePostal": "60128", + "codeCommune": "60432", + "libelleAcheminement": "MORTEFONTAINE", + "nomCommune": "MORTEFONTAINE" }, { - "codePostal": "12400", - "codeCommune": "12078", - "libelleAcheminement": "LES COSTES GOZON", - "nomCommune": "LES COSTES GOZON" + "codePostal": "62470", + "codeCommune": "62197", + "libelleAcheminement": "CAMBLAIN CHATELAIN", + "nomCommune": "CAMBLAIN CHATELAIN" }, { - "codePostal": "68500", - "codeCommune": "68156", - "libelleAcheminement": "ISSENHEIM", - "nomCommune": "ISSENHEIM" + "codePostal": "71700", + "codeCommune": "71353", + "libelleAcheminement": "PLOTTES", + "nomCommune": "PLOTTES" }, { - "codePostal": "69190", - "codeCommune": "69199", - "libelleAcheminement": "ST FONS", - "nomCommune": "ST FONS" + "codePostal": "19430", + "codeCommune": "19034", + "libelleAcheminement": "CAMPS ST MATHURIN LEOBAZEL", + "nomCommune": "CAMPS ST MATHURIN LEOBAZEL" }, { - "codePostal": "42590", - "codeCommune": "42325", - "libelleAcheminement": "VENDRANGES", - "nomCommune": "VENDRANGES" + "codePostal": "71000", + "codeCommune": "71270", + "libelleAcheminement": "MACON", + "nomCommune": "MACON" }, { - "codePostal": "12230", - "codeCommune": "12082", - "libelleAcheminement": "LA COUVERTOIRADE", - "nomCommune": "LA COUVERTOIRADE" + "codePostal": "60380", + "codeCommune": "60435", + "libelleAcheminement": "MORVILLERS", + "nomCommune": "MORVILLERS" }, { - "codePostal": "68320", - "codeCommune": "68157", - "libelleAcheminement": "JEBSHEIM", - "nomCommune": "JEBSHEIM" + "codePostal": "62176", + "codeCommune": "62201", + "libelleAcheminement": "CAMIERS", + "nomCommune": "CAMIERS" }, { - "codePostal": "69490", - "codeCommune": "69200", - "libelleAcheminement": "ST FORGEUX", - "nomCommune": "ST FORGEUX" + "codePostal": "71230", + "codeCommune": "71356", + "libelleAcheminement": "POUILLOUX", + "nomCommune": "POUILLOUX" }, { - "codePostal": "42600", - "codeCommune": "42328", - "libelleAcheminement": "VERRIERES EN FOREZ", - "nomCommune": "VERRIERES EN FOREZ" + "codePostal": "19450", + "codeCommune": "19037", + "libelleAcheminement": "CHAMBOULIVE", + "nomCommune": "CHAMBOULIVE" }, { - "codePostal": "12110", - "codeCommune": "12083", - "libelleAcheminement": "CRANSAC", - "nomCommune": "CRANSAC" + "codePostal": "71000", + "codeCommune": "71270", + "libelleAcheminement": "MACON", + "nomCommune": "MACON" }, { - "codePostal": "68500", - "codeCommune": "68159", - "libelleAcheminement": "JUNGHOLTZ", - "nomCommune": "JUNGHOLTZ" + "codePostal": "60250", + "codeCommune": "60437", + "libelleAcheminement": "MOUCHY LE CHATEL", + "nomCommune": "MOUCHY LE CHATEL" }, { - "codePostal": "69610", - "codeCommune": "69201", - "libelleAcheminement": "STE FOY L ARGENTIERE", - "nomCommune": "STE FOY L ARGENTIERE" + "codePostal": "62340", + "codeCommune": "62203", + "libelleAcheminement": "CAMPAGNE LES GUINES", + "nomCommune": "CAMPAGNE LES GUINES" }, { - "codePostal": "42220", - "codeCommune": "42329", - "libelleAcheminement": "LA VERSANNE", - "nomCommune": "LA VERSANNE" + "codePostal": "71570", + "codeCommune": "71362", + "libelleAcheminement": "PRUZILLY", + "nomCommune": "PRUZILLY" }, { - "codePostal": "12000", - "codeCommune": "12090", - "libelleAcheminement": "DRUELLE BALSAC", - "nomCommune": "DRUELLE BALSAC" + "codePostal": "19120", + "codeCommune": "19054", + "libelleAcheminement": "CHENAILLER MASCHEIX", + "nomCommune": "CHENAILLER MASCHEIX" }, { - "codePostal": "68480", - "codeCommune": "68169", - "libelleAcheminement": "KOESTLACH", - "nomCommune": "KOESTLACH" + "codePostal": "71000", + "codeCommune": "71270", + "libelleAcheminement": "MACON", + "nomCommune": "MACON" }, { - "codePostal": "69830", - "codeCommune": "69206", - "libelleAcheminement": "ST GEORGES DE RENEINS", - "nomCommune": "ST GEORGES DE RENEINS" + "codePostal": "60350", + "codeCommune": "60438", + "libelleAcheminement": "MOULIN SOUS TOUVENT", + "nomCommune": "MOULIN SOUS TOUVENT" }, { - "codePostal": "42155", - "codeCommune": "42331", - "libelleAcheminement": "VILLEMONTAIS", - "nomCommune": "VILLEMONTAIS" + "codePostal": "62158", + "codeCommune": "62216", + "libelleAcheminement": "LA CAUCHIE", + "nomCommune": "LA CAUCHIE" }, { - "codePostal": "12510", - "codeCommune": "12090", - "libelleAcheminement": "DRUELLE BALSAC", - "nomCommune": "DRUELLE BALSAC" + "codePostal": "71460", + "codeCommune": "71363", + "libelleAcheminement": "LE PULEY", + "nomCommune": "LE PULEY" }, { - "codePostal": "68510", - "codeCommune": "68170", - "libelleAcheminement": "KOETZINGUE", - "nomCommune": "KOETZINGUE" + "codePostal": "19320", + "codeCommune": "19056", + "libelleAcheminement": "CLERGOUX", + "nomCommune": "CLERGOUX" }, { - "codePostal": "69640", - "codeCommune": "69215", - "libelleAcheminement": "ST JULIEN", - "nomCommune": "ST JULIEN" + "codePostal": "71140", + "codeCommune": "71273", + "libelleAcheminement": "MALTAT", + "nomCommune": "MALTAT" }, { - "codePostal": "42300", - "codeCommune": "42332", - "libelleAcheminement": "VILLEREST", - "nomCommune": "VILLEREST" + "codePostal": "60480", + "codeCommune": "60442", + "libelleAcheminement": "MUIDORGE", + "nomCommune": "MUIDORGE" }, { - "codePostal": "12350", - "codeCommune": "12091", - "libelleAcheminement": "DRULHE", - "nomCommune": "DRULHE" + "codePostal": "62260", + "codeCommune": "62217", + "libelleAcheminement": "CAUCHY A LA TOUR", + "nomCommune": "CAUCHY A LA TOUR" }, { - "codePostal": "68320", - "codeCommune": "68172", - "libelleAcheminement": "KUNHEIM", - "nomCommune": "KUNHEIM" + "codePostal": "71310", + "codeCommune": "71364", + "libelleAcheminement": "LA RACINEUSE", + "nomCommune": "LA RACINEUSE" }, { - "codePostal": "69690", - "codeCommune": "69216", - "libelleAcheminement": "ST JULIEN SUR BIBOST", - "nomCommune": "ST JULIEN SUR BIBOST" + "codePostal": "19800", + "codeCommune": "19062", + "libelleAcheminement": "CORREZE", + "nomCommune": "CORREZE" }, { - "codePostal": "43450", - "codeCommune": "43014", - "libelleAcheminement": "AUTRAC", - "nomCommune": "AUTRAC" + "codePostal": "71240", + "codeCommune": "71274", + "libelleAcheminement": "MANCEY", + "nomCommune": "MANCEY" }, { - "codePostal": "12140", - "codeCommune": "12097", - "libelleAcheminement": "ESPEYRAC", - "nomCommune": "ESPEYRAC" + "codePostal": "60400", + "codeCommune": "60445", + "libelleAcheminement": "NAMPCEL", + "nomCommune": "NAMPCEL" }, { - "codePostal": "68650", - "codeCommune": "68175", - "libelleAcheminement": "LAPOUTROIE", - "nomCommune": "LAPOUTROIE" + "codePostal": "62140", + "codeCommune": "62222", + "libelleAcheminement": "CHERIENNES", + "nomCommune": "CHERIENNES" }, { - "codePostal": "69870", - "codeCommune": "69217", - "libelleAcheminement": "ST JUST D AVRAY", - "nomCommune": "ST JUST D AVRAY" + "codePostal": "71470", + "codeCommune": "71373", + "libelleAcheminement": "ROMENAY", + "nomCommune": "ROMENAY" }, { - "codePostal": "43300", - "codeCommune": "43015", - "libelleAcheminement": "AUVERS", - "nomCommune": "AUVERS" + "codePostal": "19340", + "codeCommune": "19065", + "libelleAcheminement": "COURTEIX", + "nomCommune": "COURTEIX" }, { - "codePostal": "12190", - "codeCommune": "12098", - "libelleAcheminement": "ESTAING", - "nomCommune": "ESTAING" + "codePostal": "71760", + "codeCommune": "71280", + "libelleAcheminement": "MARLY SOUS ISSY", + "nomCommune": "MARLY SOUS ISSY" }, { - "codePostal": "68480", - "codeCommune": "68184", - "libelleAcheminement": "LIEBSDORF", - "nomCommune": "LIEBSDORF" + "codePostal": "60190", + "codeCommune": "60449", + "libelleAcheminement": "NEUFVY SUR ARONDE", + "nomCommune": "NEUFVY SUR ARONDE" }, { - "codePostal": "69930", - "codeCommune": "69220", - "libelleAcheminement": "ST LAURENT DE CHAMOUSSET", - "nomCommune": "ST LAURENT DE CHAMOUSSET" + "codePostal": "62890", + "codeCommune": "62228", + "libelleAcheminement": "CLERQUES", + "nomCommune": "CLERQUES" }, { - "codePostal": "43100", - "codeCommune": "43022", - "libelleAcheminement": "BEAUMONT", - "nomCommune": "BEAUMONT" + "codePostal": "71390", + "codeCommune": "71374", + "libelleAcheminement": "ROSEY", + "nomCommune": "ROSEY" }, { - "codePostal": "12450", - "codeCommune": "12102", - "libelleAcheminement": "FLAVIN", - "nomCommune": "FLAVIN" + "codePostal": "19270", + "codeCommune": "19072", + "libelleAcheminement": "DONZENAC", + "nomCommune": "DONZENAC" }, { - "codePostal": "68210", - "codeCommune": "68192", - "libelleAcheminement": "VALDIEU LUTRAN", - "nomCommune": "VALDIEU LUTRAN" + "codePostal": "71420", + "codeCommune": "71281", + "libelleAcheminement": "MARLY SUR ARROUX", + "nomCommune": "MARLY SUR ARROUX" }, { - "codePostal": "69850", - "codeCommune": "69227", - "libelleAcheminement": "ST MARTIN EN HAUT", - "nomCommune": "ST MARTIN EN HAUT" + "codePostal": "60620", + "codeCommune": "60478", + "libelleAcheminement": "ORMOY LE DAVIEN", + "nomCommune": "ORMOY LE DAVIEN" }, { - "codePostal": "43700", - "codeCommune": "43032", - "libelleAcheminement": "BLAVOZY", - "nomCommune": "BLAVOZY" + "codePostal": "62180", + "codeCommune": "62231", + "libelleAcheminement": "COLLINE BEAUMONT", + "nomCommune": "COLLINE BEAUMONT" }, { - "codePostal": "12140", - "codeCommune": "12110", - "libelleAcheminement": "GOLINHAC", - "nomCommune": "GOLINHAC" + "codePostal": "71700", + "codeCommune": "71377", + "libelleAcheminement": "ROYER", + "nomCommune": "ROYER" }, { - "codePostal": "68140", - "codeCommune": "68193", - "libelleAcheminement": "LUTTENBACH", - "nomCommune": "LUTTENBACH PRES MUNSTER" + "codePostal": "19300", + "codeCommune": "19073", + "libelleAcheminement": "EGLETONS", + "nomCommune": "EGLETONS" }, { - "codePostal": "69270", - "codeCommune": "69233", - "libelleAcheminement": "ST ROMAIN AU MONT D OR", - "nomCommune": "ST ROMAIN AU MONT D OR" + "codePostal": "71240", + "codeCommune": "71283", + "libelleAcheminement": "MARNAY", + "nomCommune": "MARNAY" }, { - "codePostal": "43450", - "codeCommune": "43033", - "libelleAcheminement": "BLESLE", - "nomCommune": "BLESLE" + "codePostal": "60490", + "codeCommune": "60483", + "libelleAcheminement": "ORVILLERS SOREL", + "nomCommune": "ORVILLERS SOREL" }, { - "codePostal": "12230", - "codeCommune": "12115", - "libelleAcheminement": "L HOSPITALET DU LARZAC", - "nomCommune": "L HOSPITALET DU LARZAC" + "codePostal": "62150", + "codeCommune": "62232", + "libelleAcheminement": "LA COMTE", + "nomCommune": "LA COMTE" }, { - "codePostal": "68460", - "codeCommune": "68195", - "libelleAcheminement": "LUTTERBACH", - "nomCommune": "LUTTERBACH" + "codePostal": "71580", + "codeCommune": "71380", + "libelleAcheminement": "SAILLENARD", + "nomCommune": "SAILLENARD" }, { - "codePostal": "69240", - "codeCommune": "69240", - "libelleAcheminement": "ST VINCENT DE REINS", - "nomCommune": "ST VINCENT DE REINS" + "codePostal": "19150", + "codeCommune": "19075", + "libelleAcheminement": "ESPAGNAC", + "nomCommune": "ESPAGNAC" }, { - "codePostal": "43360", - "codeCommune": "43038", - "libelleAcheminement": "BOURNONCLE ST PIERRE", - "nomCommune": "BOURNONCLE ST PIERRE" + "codePostal": "71300", + "codeCommune": "71286", + "libelleAcheminement": "MARY", + "nomCommune": "MARY" }, { - "codePostal": "12310", - "codeCommune": "12120", - "libelleAcheminement": "LAISSAC SEVERAC L EGLISE", - "nomCommune": "LAISSAC SEVERAC L EGLISE" + "codePostal": "60130", + "codeCommune": "60495", + "libelleAcheminement": "PLAINVAL", + "nomCommune": "PLAINVAL" }, { - "codePostal": "68510", - "codeCommune": "68197", - "libelleAcheminement": "MAGSTATT LE BAS", - "nomCommune": "MAGSTATT LE BAS" + "codePostal": "62240", + "codeCommune": "62255", + "libelleAcheminement": "CREMAREST", + "nomCommune": "CREMAREST" }, { - "codePostal": "69440", - "codeCommune": "69241", - "libelleAcheminement": "TALUYERS", - "nomCommune": "TALUYERS" + "codePostal": "71570", + "codeCommune": "71385", + "libelleAcheminement": "ST AMOUR BELLEVUE", + "nomCommune": "ST AMOUR BELLEVUE" }, { - "codePostal": "43160", - "codeCommune": "43048", - "libelleAcheminement": "LA CHAISE DIEU", - "nomCommune": "LA CHAISE DIEU" + "codePostal": "19340", + "codeCommune": "19080", + "libelleAcheminement": "EYGURANDE", + "nomCommune": "EYGURANDE" }, { - "codePostal": "12740", - "codeCommune": "12131", - "libelleAcheminement": "LA LOUBIERE", - "nomCommune": "LA LOUBIERE" + "codePostal": "71520", + "codeCommune": "71289", + "libelleAcheminement": "MATOUR", + "nomCommune": "MATOUR" }, { - "codePostal": "68210", - "codeCommune": "68202", - "libelleAcheminement": "MERTZEN", - "nomCommune": "MERTZEN" + "codePostal": "60120", + "codeCommune": "60496", + "libelleAcheminement": "PLAINVILLE", + "nomCommune": "PLAINVILLE" }, { - "codePostal": "69160", - "codeCommune": "69244", - "libelleAcheminement": "TASSIN LA DEMI LUNE", - "nomCommune": "TASSIN LA DEMI LUNE" + "codePostal": "62780", + "codeCommune": "62261", + "libelleAcheminement": "CUCQ", + "nomCommune": "CUCQ" }, { - "codePostal": "43260", - "codeCommune": "43053", - "libelleAcheminement": "CHAMPCLAUSE", - "nomCommune": "CHAMPCLAUSE" + "codePostal": "71430", + "codeCommune": "71388", + "libelleAcheminement": "ST AUBIN EN CHAROLLAIS", + "nomCommune": "ST AUBIN EN CHAROLLAIS" }, { - "codePostal": "12390", - "codeCommune": "12142", - "libelleAcheminement": "MAYRAN", - "nomCommune": "MAYRAN" + "codePostal": "19350", + "codeCommune": "19094", + "libelleAcheminement": "JUILLAC", + "nomCommune": "JUILLAC" }, { - "codePostal": "68380", - "codeCommune": "68204", - "libelleAcheminement": "METZERAL", - "nomCommune": "METZERAL" + "codePostal": "71640", + "codeCommune": "71292", + "libelleAcheminement": "MELLECEY", + "nomCommune": "MELLECEY" }, { - "codePostal": "69240", - "codeCommune": "69248", - "libelleAcheminement": "THIZY LES BOURGS", - "nomCommune": "THIZY LES BOURGS" + "codePostal": "60640", + "codeCommune": "60502", + "libelleAcheminement": "LE PLESSIS PATTE D OIE", + "nomCommune": "LE PLESSIS PATTE D OIE" }, { - "codePostal": "43100", - "codeCommune": "43055", - "libelleAcheminement": "CHANIAT", - "nomCommune": "CHANIAT" + "codePostal": "62187", + "codeCommune": "62264", + "libelleAcheminement": "DANNES", + "nomCommune": "DANNES" }, { - "codePostal": "12120", - "codeCommune": "12144", - "libelleAcheminement": "MELJAC", - "nomCommune": "MELJAC" + "codePostal": "71300", + "codeCommune": "71390", + "libelleAcheminement": "ST BERAIN SOUS SANVIGNES", + "nomCommune": "ST BERAIN SOUS SANVIGNES" }, { - "codePostal": "68890", - "codeCommune": "68205", - "libelleAcheminement": "MEYENHEIM", - "nomCommune": "MEYENHEIM" + "codePostal": "19150", + "codeCommune": "19096", + "libelleAcheminement": "LADIGNAC SUR RONDELLES", + "nomCommune": "LADIGNAC SUR RONDELLES" }, { - "codePostal": "69890", - "codeCommune": "69250", - "libelleAcheminement": "LA TOUR DE SALVAGNY", - "nomCommune": "LA TOUR DE SALVAGNY" + "codePostal": "71390", + "codeCommune": "71296", + "libelleAcheminement": "MESSEY SUR GROSNE", + "nomCommune": "MESSEY SUR GROSNE" }, { - "codePostal": "43300", - "codeCommune": "43056", - "libelleAcheminement": "CHANTEUGES", - "nomCommune": "CHANTEUGES" + "codePostal": "60420", + "codeCommune": "60503", + "libelleAcheminement": "LE PLOYRON", + "nomCommune": "LE PLOYRON" }, { - "codePostal": "12360", - "codeCommune": "12147", - "libelleAcheminement": "MONTAGNOL", - "nomCommune": "MONTAGNOL" + "codePostal": "62161", + "codeCommune": "62279", + "libelleAcheminement": "DUISANS", + "nomCommune": "DUISANS" }, { - "codePostal": "68480", - "codeCommune": "68212", - "libelleAcheminement": "MOERNACH", - "nomCommune": "MOERNACH" + "codePostal": "71390", + "codeCommune": "71392", + "libelleAcheminement": "ST BOIL", + "nomCommune": "ST BOIL" }, { - "codePostal": "69100", - "codeCommune": "69266", - "libelleAcheminement": "VILLEURBANNE", - "nomCommune": "VILLEURBANNE" + "codePostal": "19700", + "codeCommune": "19100", + "libelleAcheminement": "LAGRAULIERE", + "nomCommune": "LAGRAULIERE" }, { - "codePostal": "43300", - "codeCommune": "43065", - "libelleAcheminement": "CHASTEL", - "nomCommune": "CHASTEL" + "codePostal": "71190", + "codeCommune": "71297", + "libelleAcheminement": "MESVRES", + "nomCommune": "MESVRES" }, { - "codePostal": "12220", - "codeCommune": "12148", - "libelleAcheminement": "MONTBAZENS", - "nomCommune": "MONTBAZENS" + "codePostal": "60430", + "codeCommune": "60504", + "libelleAcheminement": "PONCHON", + "nomCommune": "PONCHON" }, { - "codePostal": "68470", - "codeCommune": "68213", - "libelleAcheminement": "MOLLAU", - "nomCommune": "MOLLAU" + "codePostal": "62156", + "codeCommune": "62280", + "libelleAcheminement": "DURY", + "nomCommune": "DURY" }, { - "codePostal": "69390", - "codeCommune": "69268", - "libelleAcheminement": "VOURLES", - "nomCommune": "VOURLES" + "codePostal": "71340", + "codeCommune": "71393", + "libelleAcheminement": "ST BONNET DE CRAY", + "nomCommune": "ST BONNET DE CRAY" }, { - "codePostal": "43190", - "codeCommune": "43069", - "libelleAcheminement": "CHENEREILLES", - "nomCommune": "CHENEREILLES" + "codePostal": "19150", + "codeCommune": "19101", + "libelleAcheminement": "LAGUENNE SUR AVALOUZE", + "nomCommune": "LAGUENNE SUR AVALOUZE" }, { - "codePostal": "12200", - "codeCommune": "12150", - "libelleAcheminement": "MONTEILS", - "nomCommune": "MONTEILS" + "codePostal": "71260", + "codeCommune": "71305", + "libelleAcheminement": "MONTBELLET", + "nomCommune": "MONTBELLET" }, { - "codePostal": "68210", - "codeCommune": "68215", - "libelleAcheminement": "MONTREUX VIEUX", - "nomCommune": "MONTREUX VIEUX" + "codePostal": "60540", + "codeCommune": "60517", + "libelleAcheminement": "PUISEUX LE HAUBERGER", + "nomCommune": "PUISEUX LE HAUBERGER" }, { - "codePostal": "69510", - "codeCommune": "69269", - "libelleAcheminement": "YZERON", - "nomCommune": "YZERON" + "codePostal": "62860", + "codeCommune": "62284", + "libelleAcheminement": "ECOURT ST QUENTIN", + "nomCommune": "ECOURT ST QUENTIN" }, { - "codePostal": "43160", - "codeCommune": "43076", - "libelleAcheminement": "CONNANGLES", - "nomCommune": "CONNANGLES" + "codePostal": "71470", + "codeCommune": "71401", + "libelleAcheminement": "STE CROIX EN BRESSE", + "nomCommune": "STE CROIX EN BRESSE" }, { - "codePostal": "12380", - "codeCommune": "12152", - "libelleAcheminement": "MONTFRANC", - "nomCommune": "MONTFRANC" + "codePostal": "19210", + "codeCommune": "19121", + "libelleAcheminement": "LUBERSAC", + "nomCommune": "LUBERSAC" }, { - "codePostal": "68780", - "codeCommune": "68219", - "libelleAcheminement": "LE HAUT SOULTZBACH", - "nomCommune": "LE HAUT SOULTZBACH" + "codePostal": "71620", + "codeCommune": "71312", + "libelleAcheminement": "MONTCOY", + "nomCommune": "MONTCOY" }, { - "codePostal": "69150", - "codeCommune": "69275", - "libelleAcheminement": "DECINES CHARPIEU", - "nomCommune": "DECINES CHARPIEU" + "codePostal": "60130", + "codeCommune": "60522", + "libelleAcheminement": "QUINQUEMPOIX", + "nomCommune": "QUINQUEMPOIX" }, { - "codePostal": "43230", - "codeCommune": "43086", - "libelleAcheminement": "DOMEYRAT", - "nomCommune": "DOMEYRAT" + "codePostal": "62128", + "codeCommune": "62285", + "libelleAcheminement": "ECOUST ST MEIN", + "nomCommune": "ECOUST ST MEIN" }, { - "codePostal": "12200", - "codeCommune": "12159", - "libelleAcheminement": "MORLHON LE HAUT", - "nomCommune": "MORLHON LE HAUT" + "codePostal": "71210", + "codeCommune": "71412", + "libelleAcheminement": "ST EUSEBE", + "nomCommune": "ST EUSEBE" }, { - "codePostal": "68100", - "codeCommune": "68224", - "libelleAcheminement": "MULHOUSE", - "nomCommune": "MULHOUSE" + "codePostal": "19360", + "codeCommune": "19123", + "libelleAcheminement": "MALEMORT", + "nomCommune": "MALEMORT" }, { - "codePostal": "69360", - "codeCommune": "69291", - "libelleAcheminement": "ST SYMPHORIEN D OZON", - "nomCommune": "ST SYMPHORIEN D OZON" + "codePostal": "71400", + "codeCommune": "71313", + "libelleAcheminement": "MONTHELON", + "nomCommune": "MONTHELON" }, { - "codePostal": "43220", - "codeCommune": "43087", - "libelleAcheminement": "DUNIERES", - "nomCommune": "DUNIERES" + "codePostal": "60155", + "codeCommune": "60523", + "libelleAcheminement": "RAINVILLERS", + "nomCommune": "RAINVILLERS" }, { - "codePostal": "12160", - "codeCommune": "12162", - "libelleAcheminement": "MOYRAZES", - "nomCommune": "MOYRAZES" + "codePostal": "62145", + "codeCommune": "62295", + "libelleAcheminement": "ENQUIN LEZ GUINEGATTE", + "nomCommune": "ENQUIN LEZ GUINEGATTE" }, { - "codePostal": "68740", - "codeCommune": "68230", - "libelleAcheminement": "NAMBSHEIM", - "nomCommune": "NAMBSHEIM" + "codePostal": "71350", + "codeCommune": "71423", + "libelleAcheminement": "ST GERVAIS EN VALLIERE", + "nomCommune": "ST GERVAIS EN VALLIERE" }, { - "codePostal": "69125", - "codeCommune": "69299", - "libelleAcheminement": "COLOMBIER SAUGNIEU", - "nomCommune": "COLOMBIER SAUGNIEU" + "codePostal": "19510", + "codeCommune": "19129", + "libelleAcheminement": "MASSERET", + "nomCommune": "MASSERET" }, { - "codePostal": "43100", - "codeCommune": "43096", - "libelleAcheminement": "FONTANNES", - "nomCommune": "FONTANNES" + "codePostal": "71310", + "codeCommune": "71314", + "libelleAcheminement": "MONTJAY", + "nomCommune": "MONTJAY" }, { - "codePostal": "12370", - "codeCommune": "12163", - "libelleAcheminement": "MURASSON", - "nomCommune": "MURASSON" + "codePostal": "60170", + "codeCommune": "60537", + "libelleAcheminement": "RIBECOURT DRESLINCOURT", + "nomCommune": "RIBECOURT DRESLINCOURT" }, { - "codePostal": "68230", - "codeCommune": "68237", - "libelleAcheminement": "NIEDERMORSCHWIHR", - "nomCommune": "NIEDERMORSCHWIHR" + "codePostal": "62134", + "codeCommune": "62301", + "libelleAcheminement": "EQUIRRE", + "nomCommune": "EQUIRRE" }, { - "codePostal": "69001", - "codeCommune": "69381", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 01" + "codePostal": "71510", + "codeCommune": "71425", + "libelleAcheminement": "ST GILLES", + "nomCommune": "ST GILLES" }, { - "codePostal": "43300", - "codeCommune": "43112", - "libelleAcheminement": "LANGEAC", - "nomCommune": "LANGEAC" + "codePostal": "19250", + "codeCommune": "19130", + "libelleAcheminement": "MAUSSAC", + "nomCommune": "MAUSSAC" }, { - "codePostal": "12700", - "codeCommune": "12170", - "libelleAcheminement": "NAUSSAC", - "nomCommune": "NAUSSAC" + "codePostal": "71600", + "codeCommune": "71331", + "libelleAcheminement": "NOCHIZE", + "nomCommune": "NOCHIZE" }, { - "codePostal": "68680", - "codeCommune": "68238", - "libelleAcheminement": "NIFFER", - "nomCommune": "NIFFER" + "codePostal": "60800", + "codeCommune": "60543", + "libelleAcheminement": "ROCQUEMONT", + "nomCommune": "ROCQUEMONT" }, { - "codePostal": "69008", - "codeCommune": "69388", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 08" + "codePostal": "62179", + "codeCommune": "62307", + "libelleAcheminement": "ESCALLES", + "nomCommune": "ESCALLES" }, { - "codePostal": "43100", - "codeCommune": "43117", - "libelleAcheminement": "LAVAUDIEU", - "nomCommune": "LAVAUDIEU" + "codePostal": "71640", + "codeCommune": "71430", + "libelleAcheminement": "ST JEAN DE VAUX", + "nomCommune": "ST JEAN DE VAUX" }, { - "codePostal": "12850", - "codeCommune": "12176", - "libelleAcheminement": "ONET LE CHATEAU", - "nomCommune": "ONET LE CHATEAU" + "codePostal": "19800", + "codeCommune": "19137", + "libelleAcheminement": "MEYRIGNAC L EGLISE", + "nomCommune": "MEYRIGNAC L EGLISE" }, { - "codePostal": "68127", - "codeCommune": "68242", - "libelleAcheminement": "OBERHERGHEIM", - "nomCommune": "OBERHERGHEIM" + "codePostal": "71220", + "codeCommune": "71344", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "70210", - "codeCommune": "70010", - "libelleAcheminement": "ALAINCOURT", - "nomCommune": "ALAINCOURT" + "codePostal": "60120", + "codeCommune": "60544", + "libelleAcheminement": "ROCQUENCOURT", + "nomCommune": "ROCQUENCOURT" }, { - "codePostal": "43380", - "codeCommune": "43118", - "libelleAcheminement": "LAVOUTE CHILHAC", - "nomCommune": "LAVOUTE CHILHAC" + "codePostal": "62145", + "codeCommune": "62313", + "libelleAcheminement": "ESTREE BLANCHE", + "nomCommune": "ESTREE BLANCHE" }, { - "codePostal": "12350", - "codeCommune": "12190", - "libelleAcheminement": "PREVINQUIERES", - "nomCommune": "PREVINQUIERES" + "codePostal": "71800", + "codeCommune": "71437", + "libelleAcheminement": "ST LAURENT EN BRIONNAIS", + "nomCommune": "ST LAURENT EN BRIONNAIS" }, { - "codePostal": "68480", - "codeCommune": "68243", - "libelleAcheminement": "OBERLARG", - "nomCommune": "OBERLARG" + "codePostal": "19400", + "codeCommune": "19140", + "libelleAcheminement": "MONCEAUX SUR DORDOGNE", + "nomCommune": "MONCEAUX SUR DORDOGNE" }, { - "codePostal": "70160", - "codeCommune": "70012", - "libelleAcheminement": "AMANCE", - "nomCommune": "AMANCE" + "codePostal": "71290", + "codeCommune": "71366", + "libelleAcheminement": "RATENELLE", + "nomCommune": "RATENELLE" }, { - "codePostal": "43360", - "codeCommune": "43123", - "libelleAcheminement": "LORLANGES", - "nomCommune": "LORLANGES" + "codePostal": "60360", + "codeCommune": "60549", + "libelleAcheminement": "ROTANGY", + "nomCommune": "ROTANGY" }, { - "codePostal": "12370", - "codeCommune": "12192", - "libelleAcheminement": "MOUNES PROHENCOUX", - "nomCommune": "MOUNES PROHENCOUX" + "codePostal": "62170", + "codeCommune": "62315", + "libelleAcheminement": "ESTREELLES", + "nomCommune": "ESTREELLES" }, { - "codePostal": "68150", - "codeCommune": "68252", - "libelleAcheminement": "OSTHEIM", - "nomCommune": "OSTHEIM" + "codePostal": "71360", + "codeCommune": "71438", + "libelleAcheminement": "ST LEGER DU BOIS", + "nomCommune": "ST LEGER DU BOIS" }, { - "codePostal": "70000", - "codeCommune": "70020", - "libelleAcheminement": "ANDELARROT", - "nomCommune": "ANDELARROT" + "codePostal": "19600", + "codeCommune": "19147", + "libelleAcheminement": "NESPOULS", + "nomCommune": "NESPOULS" }, { - "codePostal": "43210", - "codeCommune": "43127", - "libelleAcheminement": "MALVALETTE", - "nomCommune": "MALVALETTE" + "codePostal": "71960", + "codeCommune": "71371", + "libelleAcheminement": "LA ROCHE VINEUSE", + "nomCommune": "LA ROCHE VINEUSE" }, { - "codePostal": "12390", - "codeCommune": "12199", - "libelleAcheminement": "RIGNAC", - "nomCommune": "RIGNAC" + "codePostal": "60690", + "codeCommune": "60550", + "libelleAcheminement": "ROTHOIS", + "nomCommune": "ROTHOIS" }, { - "codePostal": "68510", - "codeCommune": "68265", - "libelleAcheminement": "RANTZWILLER", - "nomCommune": "RANTZWILLER" + "codePostal": "62161", + "codeCommune": "62320", + "libelleAcheminement": "ETRUN", + "nomCommune": "ETRUN" }, { - "codePostal": "70800", - "codeCommune": "70023", - "libelleAcheminement": "ANJEUX", - "nomCommune": "ANJEUX" + "codePostal": "71520", + "codeCommune": "71441", + "libelleAcheminement": "ST LEGER SOUS LA BUSSIERE", + "nomCommune": "ST LEGER SOUS LA BUSSIERE" }, { - "codePostal": "43300", - "codeCommune": "43132", - "libelleAcheminement": "MAZEYRAT D ALLIER", - "nomCommune": "MAZEYRAT D ALLIER" + "codePostal": "19410", + "codeCommune": "19162", + "libelleAcheminement": "PERPEZAC LE NOIR", + "nomCommune": "PERPEZAC LE NOIR" }, { - "codePostal": "12540", - "codeCommune": "12212", - "libelleAcheminement": "ST BEAULIZE", - "nomCommune": "ST BEAULIZE" + "codePostal": "71550", + "codeCommune": "71376", + "libelleAcheminement": "ROUSSILLON EN MORVAN", + "nomCommune": "ROUSSILLON EN MORVAN" }, { - "codePostal": "68120", - "codeCommune": "68270", - "libelleAcheminement": "RICHWILLER", - "nomCommune": "RICHWILLER" + "codePostal": "60420", + "codeCommune": "60556", + "libelleAcheminement": "ROYAUCOURT", + "nomCommune": "ROYAUCOURT" }, { - "codePostal": "70100", - "codeCommune": "70024", - "libelleAcheminement": "APREMONT", - "nomCommune": "APREMONT" + "codePostal": "62260", + "codeCommune": "62328", + "libelleAcheminement": "FERFAY", + "nomCommune": "FERFAY" }, { - "codePostal": "43300", - "codeCommune": "43132", - "libelleAcheminement": "MAZEYRAT D ALLIER", - "nomCommune": "MAZEYRAT D ALLIER" + "codePostal": "71620", + "codeCommune": "71462", + "libelleAcheminement": "ST MAURICE EN RIVIERE", + "nomCommune": "ST MAURICE EN RIVIERE" }, { - "codePostal": "12470", - "codeCommune": "12214", - "libelleAcheminement": "ST CHELY D AUBRAC", - "nomCommune": "ST CHELY D AUBRAC" + "codePostal": "19290", + "codeCommune": "19164", + "libelleAcheminement": "PEYRELEVADE", + "nomCommune": "PEYRELEVADE" }, { - "codePostal": "68590", - "codeCommune": "68280", - "libelleAcheminement": "RODERN", - "nomCommune": "RODERN" + "codePostal": "71260", + "codeCommune": "71383", + "libelleAcheminement": "ST ALBAIN", + "nomCommune": "ST ALBAIN" }, { - "codePostal": "70110", - "codeCommune": "70031", - "libelleAcheminement": "ATHESANS ETROITEFONTAINE", - "nomCommune": "ATHESANS ETROITEFONTAINE" + "codePostal": "60690", + "codeCommune": "60557", + "libelleAcheminement": "ROY BOISSY", + "nomCommune": "ROY BOISSY" }, { - "codePostal": "43290", - "codeCommune": "43142", - "libelleAcheminement": "MONTREGARD", - "nomCommune": "MONTREGARD" + "codePostal": "62223", + "codeCommune": "62331", + "libelleAcheminement": "FEUCHY", + "nomCommune": "FEUCHY" }, { - "codePostal": "12210", - "codeCommune": "12223", - "libelleAcheminement": "ARGENCES EN AUBRAC", - "nomCommune": "ARGENCES EN AUBRAC" + "codePostal": "71740", + "codeCommune": "71463", + "libelleAcheminement": "ST MAURICE LES CHATEAUNEUF", + "nomCommune": "ST MAURICE LES CHATEAUNEUF" }, { - "codePostal": "68250", - "codeCommune": "68287", - "libelleAcheminement": "ROUFFACH", - "nomCommune": "ROUFFACH" + "codePostal": "19260", + "codeCommune": "19165", + "libelleAcheminement": "PEYRISSAC", + "nomCommune": "PEYRISSAC" }, { - "codePostal": "70500", - "codeCommune": "70035", - "libelleAcheminement": "AUGICOURT", - "nomCommune": "AUGICOURT" + "codePostal": "71440", + "codeCommune": "71386", + "libelleAcheminement": "ST ANDRE EN BRESSE", + "nomCommune": "ST ANDRE EN BRESSE" }, { - "codePostal": "43260", - "codeCommune": "43143", - "libelleAcheminement": "MONTUSCLAT", - "nomCommune": "MONTUSCLAT" + "codePostal": "60510", + "codeCommune": "60559", + "libelleAcheminement": "LA RUE ST PIERRE", + "nomCommune": "LA RUE ST PIERRE" }, { - "codePostal": "12140", - "codeCommune": "12226", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "62173", + "codeCommune": "62332", + "libelleAcheminement": "FICHEUX", + "nomCommune": "FICHEUX" }, { - "codePostal": "68550", - "codeCommune": "68292", - "libelleAcheminement": "ST AMARIN", - "nomCommune": "ST AMARIN" + "codePostal": "71490", + "codeCommune": "71464", + "libelleAcheminement": "ST MAURICE LES COUCHES", + "nomCommune": "ST MAURICE LES COUCHES" }, { - "codePostal": "70150", - "codeCommune": "70045", - "libelleAcheminement": "AVRIGNEY VIREY", - "nomCommune": "AVRIGNEY VIREY" + "codePostal": "19200", + "codeCommune": "19167", + "libelleAcheminement": "CONFOLENT PORT DIEU", + "nomCommune": "CONFOLENT PORT DIEU" }, { - "codePostal": "43510", - "codeCommune": "43145", - "libelleAcheminement": "OUIDES", - "nomCommune": "OUIDES" + "codePostal": "71140", + "codeCommune": "71389", + "libelleAcheminement": "ST AUBIN SUR LOIRE", + "nomCommune": "ST AUBIN SUR LOIRE" }, { - "codePostal": "12170", - "codeCommune": "12230", - "libelleAcheminement": "ST JEAN DELNOUS", - "nomCommune": "ST JEAN DELNOUS" + "codePostal": "60810", + "codeCommune": "60560", + "libelleAcheminement": "RULLY", + "nomCommune": "RULLY" }, { - "codePostal": "68160", - "codeCommune": "68294", - "libelleAcheminement": "STE CROIX AUX MINES", - "nomCommune": "STE CROIX AUX MINES" + "codePostal": "62134", + "codeCommune": "62333", + "libelleAcheminement": "FIEFS", + "nomCommune": "FIEFS" }, { - "codePostal": "70270", - "codeCommune": "70062", - "libelleAcheminement": "BELMONT", - "nomCommune": "BELMONT" + "codePostal": "71520", + "codeCommune": "71469", + "libelleAcheminement": "ST PIERRE LE VIEUX", + "nomCommune": "ST PIERRE LE VIEUX" }, { - "codePostal": "43290", - "codeCommune": "43159", - "libelleAcheminement": "RAUCOULES", - "nomCommune": "RAUCOULES" + "codePostal": "19120", + "codeCommune": "19170", + "libelleAcheminement": "QUEYSSAC LES VIGNES", + "nomCommune": "QUEYSSAC LES VIGNES" }, { - "codePostal": "12120", - "codeCommune": "12234", - "libelleAcheminement": "STE JULIETTE SUR VIAUR", - "nomCommune": "STE JULIETTE SUR VIAUR" + "codePostal": "71510", + "codeCommune": "71391", + "libelleAcheminement": "ST BERAIN SUR DHEUNE", + "nomCommune": "ST BERAIN SUR DHEUNE" }, { - "codePostal": "68360", - "codeCommune": "68315", - "libelleAcheminement": "SOULTZ HAUT RHIN", - "nomCommune": "SOULTZ HAUT RHIN" + "codePostal": "60420", + "codeCommune": "60564", + "libelleAcheminement": "SAINS MORAINVILLERS", + "nomCommune": "SAINS MORAINVILLERS" }, { - "codePostal": "70230", - "codeCommune": "70065", - "libelleAcheminement": "BESNANS", - "nomCommune": "BESNANS" + "codePostal": "62840", + "codeCommune": "62338", + "libelleAcheminement": "FLEURBAIX", + "nomCommune": "FLEURBAIX" }, { - "codePostal": "43800", - "codeCommune": "43165", - "libelleAcheminement": "ROSIERES", - "nomCommune": "ROSIERES" + "codePostal": "71520", + "codeCommune": "71470", + "libelleAcheminement": "ST POINT", + "nomCommune": "ST POINT" }, { - "codePostal": "12170", - "codeCommune": "12235", - "libelleAcheminement": "ST JUST SUR VIAUR", - "nomCommune": "ST JUST SUR VIAUR" + "codePostal": "19260", + "codeCommune": "19172", + "libelleAcheminement": "RILHAC TREIGNAC", + "nomCommune": "RILHAC TREIGNAC" }, { - "codePostal": "68140", - "codeCommune": "68317", - "libelleAcheminement": "SOULTZEREN", - "nomCommune": "SOULTZEREN" + "codePostal": "71250", + "codeCommune": "71397", + "libelleAcheminement": "STE CECILE", + "nomCommune": "STE CECILE" }, { - "codePostal": "70500", - "codeCommune": "70066", - "libelleAcheminement": "BETAUCOURT", - "nomCommune": "BETAUCOURT" + "codePostal": "60650", + "codeCommune": "60567", + "libelleAcheminement": "ST AUBIN EN BRAY", + "nomCommune": "ST AUBIN EN BRAY" }, { - "codePostal": "43300", - "codeCommune": "43167", - "libelleAcheminement": "ST ARCONS D ALLIER", - "nomCommune": "ST ARCONS D ALLIER" + "codePostal": "62134", + "codeCommune": "62339", + "libelleAcheminement": "FLEURY", + "nomCommune": "FLEURY" }, { - "codePostal": "12300", - "codeCommune": "12240", - "libelleAcheminement": "ST PARTHEM", - "nomCommune": "ST PARTHEM" + "codePostal": "71990", + "codeCommune": "71472", + "libelleAcheminement": "ST PRIX", + "nomCommune": "ST PRIX" }, { - "codePostal": "68700", - "codeCommune": "68322", - "libelleAcheminement": "STEINBACH", - "nomCommune": "STEINBACH" + "codePostal": "19390", + "codeCommune": "19181", + "libelleAcheminement": "ST AUGUSTIN", + "nomCommune": "ST AUGUSTIN" }, { - "codePostal": "70300", - "codeCommune": "70067", - "libelleAcheminement": "BETONCOURT LES BROTTE", - "nomCommune": "BETONCOURT LES BROTTE" + "codePostal": "71370", + "codeCommune": "71398", + "libelleAcheminement": "ST CHRISTOPHE EN BRESSE", + "nomCommune": "ST CHRISTOPHE EN BRESSE" }, { - "codePostal": "43420", - "codeCommune": "43180", - "libelleAcheminement": "ST ETIENNE DU VIGAN", - "nomCommune": "ST ETIENNE DU VIGAN" + "codePostal": "60790", + "codeCommune": "60570", + "libelleAcheminement": "ST CREPIN IBOUVILLERS", + "nomCommune": "ST CREPIN IBOUVILLERS" }, { - "codePostal": "12410", - "codeCommune": "12253", - "libelleAcheminement": "SALLES CURAN", - "nomCommune": "SALLES CURAN" + "codePostal": "62810", + "codeCommune": "62347", + "libelleAcheminement": "FOSSEUX", + "nomCommune": "FOSSEUX" }, { - "codePostal": "68780", - "codeCommune": "68326", - "libelleAcheminement": "STERNENBERG", - "nomCommune": "STERNENBERG" + "codePostal": "71230", + "codeCommune": "71477", + "libelleAcheminement": "ST ROMAIN SOUS GOURDON", + "nomCommune": "ST ROMAIN SOUS GOURDON" }, { - "codePostal": "70190", - "codeCommune": "70084", - "libelleAcheminement": "BOULOT", - "nomCommune": "BOULOT" + "codePostal": "19700", + "codeCommune": "19194", + "libelleAcheminement": "ST CLEMENT", + "nomCommune": "ST CLEMENT" }, { - "codePostal": "43550", - "codeCommune": "43186", - "libelleAcheminement": "ST FRONT", - "nomCommune": "ST FRONT" + "codePostal": "71800", + "codeCommune": "71399", + "libelleAcheminement": "ST CHRISTOPHE EN BRIONNAIS", + "nomCommune": "ST CHRISTOPHE EN BRIONNAIS" }, { - "codePostal": "12330", - "codeCommune": "12254", - "libelleAcheminement": "SALLES LA SOURCE", - "nomCommune": "SALLES LA SOURCE" + "codePostal": "60380", + "codeCommune": "60571", + "libelleAcheminement": "ST DENISCOURT", + "nomCommune": "ST DENISCOURT" }, { - "codePostal": "68510", - "codeCommune": "68327", - "libelleAcheminement": "STETTEN", - "nomCommune": "STETTEN" + "codePostal": "62740", + "codeCommune": "62351", + "libelleAcheminement": "FOUQUIERES LES LENS", + "nomCommune": "FOUQUIERES LES LENS" }, { - "codePostal": "70190", - "codeCommune": "70088", - "libelleAcheminement": "BOURGUIGNON LES LA CHARITE", - "nomCommune": "BOURGUIGNON LES LA CHARITE" + "codePostal": "71200", + "codeCommune": "71479", + "libelleAcheminement": "ST SERNIN DU BOIS", + "nomCommune": "ST SERNIN DU BOIS" }, { - "codePostal": "43340", - "codeCommune": "43192", - "libelleAcheminement": "ST HAON", - "nomCommune": "ST HAON" + "codePostal": "19130", + "codeCommune": "19195", + "libelleAcheminement": "ST CYPRIEN", + "nomCommune": "ST CYPRIEN" }, { - "codePostal": "12120", - "codeCommune": "12255", - "libelleAcheminement": "SALMIECH", - "nomCommune": "SALMIECH" + "codePostal": "71240", + "codeCommune": "71402", + "libelleAcheminement": "ST CYR", + "nomCommune": "ST CYR" }, { - "codePostal": "68140", - "codeCommune": "68329", - "libelleAcheminement": "STOSSWIHR", - "nomCommune": "STOSSWIHR" + "codePostal": "60730", + "codeCommune": "60575", + "libelleAcheminement": "STE GENEVIEVE", + "nomCommune": "STE GENEVIEVE" }, { - "codePostal": "70140", - "codeCommune": "70092", - "libelleAcheminement": "BRESILLEY", - "nomCommune": "BRESILLEY" + "codePostal": "62185", + "codeCommune": "62360", + "libelleAcheminement": "FRETHUN", + "nomCommune": "FRETHUN" }, { - "codePostal": "43390", - "codeCommune": "43193", - "libelleAcheminement": "ST HILAIRE", - "nomCommune": "ST HILAIRE" + "codePostal": "71510", + "codeCommune": "71480", + "libelleAcheminement": "ST SERNIN DU PLAIN", + "nomCommune": "ST SERNIN DU PLAIN" }, { - "codePostal": "12440", - "codeCommune": "12258", - "libelleAcheminement": "LA SALVETAT PEYRALES", - "nomCommune": "LA SALVETAT PEYRALES" + "codePostal": "19200", + "codeCommune": "19199", + "libelleAcheminement": "ST ETIENNE AUX CLOS", + "nomCommune": "ST ETIENNE AUX CLOS" }, { - "codePostal": "68130", - "codeCommune": "68333", - "libelleAcheminement": "TAGSDORF", - "nomCommune": "TAGSDORF" + "codePostal": "71390", + "codeCommune": "71426", + "libelleAcheminement": "STE HELENE", + "nomCommune": "STE HELENE" }, { - "codePostal": "70300", - "codeCommune": "70093", - "libelleAcheminement": "BREUCHES", - "nomCommune": "BREUCHES" + "codePostal": "60410", + "codeCommune": "60578", + "libelleAcheminement": "SAINTINES", + "nomCommune": "SAINTINES" }, { - "codePostal": "43260", - "codeCommune": "43194", - "libelleAcheminement": "ST HOSTIEN", - "nomCommune": "ST HOSTIEN" + "codePostal": "62690", + "codeCommune": "62363", + "libelleAcheminement": "FREVIN CAPELLE", + "nomCommune": "FREVIN CAPELLE" }, { - "codePostal": "12740", - "codeCommune": "12264", - "libelleAcheminement": "SEBAZAC CONCOURES", - "nomCommune": "SEBAZAC CONCOURES" + "codePostal": "71230", + "codeCommune": "71486", + "libelleAcheminement": "ST VALLIER", + "nomCommune": "ST VALLIER" }, { - "codePostal": "68121", - "codeCommune": "68344", - "libelleAcheminement": "URBES", - "nomCommune": "URBES" + "codePostal": "19330", + "codeCommune": "19207", + "libelleAcheminement": "ST GERMAIN LES VERGNES", + "nomCommune": "ST GERMAIN LES VERGNES" }, { - "codePostal": "70280", - "codeCommune": "70094", - "libelleAcheminement": "BREUCHOTTE", - "nomCommune": "BREUCHOTTE" + "codePostal": "71800", + "codeCommune": "71433", + "libelleAcheminement": "ST JULIEN DE CIVRY", + "nomCommune": "ST JULIEN DE CIVRY" }, { - "codePostal": "43380", - "codeCommune": "43195", - "libelleAcheminement": "ST ILPIZE", - "nomCommune": "ST ILPIZE" + "codePostal": "60700", + "codeCommune": "60587", + "libelleAcheminement": "ST MARTIN LONGUEAU", + "nomCommune": "ST MARTIN LONGUEAU" }, { - "codePostal": "12190", - "codeCommune": "12265", - "libelleAcheminement": "SEBRAZAC", - "nomCommune": "SEBRAZAC" + "codePostal": "62121", + "codeCommune": "62374", + "libelleAcheminement": "GOMIECOURT", + "nomCommune": "GOMIECOURT" }, { - "codePostal": "68600", - "codeCommune": "68352", - "libelleAcheminement": "VOLGELSHEIM", - "nomCommune": "VOLGELSHEIM" + "codePostal": "71600", + "codeCommune": "71491", + "libelleAcheminement": "ST YAN", + "nomCommune": "ST YAN" }, { - "codePostal": "70300", - "codeCommune": "70098", - "libelleAcheminement": "BROTTE LES LUXEUIL", - "nomCommune": "BROTTE LES LUXEUIL" + "codePostal": "19170", + "codeCommune": "19209", + "libelleAcheminement": "ST HILAIRE LES COURBES", + "nomCommune": "ST HILAIRE LES COURBES" }, { - "codePostal": "43500", - "codeCommune": "43196", - "libelleAcheminement": "ST JEAN D AUBRIGOUX", - "nomCommune": "ST JEAN D AUBRIGOUX" + "codePostal": "71110", + "codeCommune": "71434", + "libelleAcheminement": "ST JULIEN DE JONZY", + "nomCommune": "ST JULIEN DE JONZY" }, { - "codePostal": "12170", - "codeCommune": "12267", - "libelleAcheminement": "LA SELVE", - "nomCommune": "LA SELVE" + "codePostal": "60660", + "codeCommune": "60601", + "libelleAcheminement": "ST VAAST LES MELLO", + "nomCommune": "ST VAAST LES MELLO" }, { - "codePostal": "68130", - "codeCommune": "68353", - "libelleAcheminement": "WAHLBACH", - "nomCommune": "WAHLBACH" + "codePostal": "62530", + "codeCommune": "62380", + "libelleAcheminement": "GOUY SERVINS", + "nomCommune": "GOUY SERVINS" }, { - "codePostal": "70180", - "codeCommune": "70099", - "libelleAcheminement": "BROTTE LES RAY", - "nomCommune": "BROTTE LES RAY" + "codePostal": "71360", + "codeCommune": "71493", + "libelleAcheminement": "SAISY", + "nomCommune": "SAISY" }, { - "codePostal": "43230", - "codeCommune": "43219", - "libelleAcheminement": "ST PREJET ARMANDON", - "nomCommune": "ST PREJET ARMANDON" + "codePostal": "19210", + "codeCommune": "19216", + "libelleAcheminement": "ST JULIEN LE VENDOMOIS", + "nomCommune": "ST JULIEN LE VENDOMOIS" }, { - "codePostal": "12150", - "codeCommune": "12270", - "libelleAcheminement": "SEVERAC D AVEYRON", - "nomCommune": "SEVERAC D AVEYRON" + "codePostal": "71210", + "codeCommune": "71436", + "libelleAcheminement": "ST LAURENT D ANDENAY", + "nomCommune": "ST LAURENT D ANDENAY" }, { - "codePostal": "68510", - "codeCommune": "68357", - "libelleAcheminement": "WALTENHEIM", - "nomCommune": "WALTENHEIM" + "codePostal": "60220", + "codeCommune": "60602", + "libelleAcheminement": "ST VALERY", + "nomCommune": "ST VALERY" }, { - "codePostal": "70140", - "codeCommune": "70101", - "libelleAcheminement": "BROYE AUBIGNEY MONTSEUGNY", - "nomCommune": "BROYE AUBIGNEY MONTSEUGNY" + "codePostal": "62140", + "codeCommune": "62398", + "libelleAcheminement": "GUISY", + "nomCommune": "GUISY" }, { - "codePostal": "43580", - "codeCommune": "43221", - "libelleAcheminement": "ST PRIVAT D ALLIER", - "nomCommune": "ST PRIVAT D ALLIER" + "codePostal": "71460", + "codeCommune": "71498", + "libelleAcheminement": "SANTILLY", + "nomCommune": "SANTILLY" }, { - "codePostal": "12150", - "codeCommune": "12270", - "libelleAcheminement": "SEVERAC D AVEYRON", - "nomCommune": "SEVERAC D AVEYRON" + "codePostal": "19210", + "codeCommune": "19230", + "libelleAcheminement": "ST PARDOUX CORBIER", + "nomCommune": "ST PARDOUX CORBIER" }, { - "codePostal": "68960", - "codeCommune": "68371", - "libelleAcheminement": "WILLER", - "nomCommune": "WILLER" + "codePostal": "71460", + "codeCommune": "71446", + "libelleAcheminement": "ST MARCELIN DE CRAY", + "nomCommune": "ST MARCELIN DE CRAY" }, { - "codePostal": "70280", - "codeCommune": "70103", - "libelleAcheminement": "LA BRUYERE", - "nomCommune": "LA BRUYERE" + "codePostal": "60210", + "codeCommune": "60605", + "libelleAcheminement": "SARNOIS", + "nomCommune": "SARNOIS" }, { - "codePostal": "43800", - "codeCommune": "43230", - "libelleAcheminement": "ST VINCENT", - "nomCommune": "ST VINCENT" + "codePostal": "62570", + "codeCommune": "62403", + "libelleAcheminement": "HALLINES", + "nomCommune": "HALLINES" }, { - "codePostal": "12700", - "codeCommune": "12272", - "libelleAcheminement": "SONNAC", - "nomCommune": "SONNAC" + "codePostal": "71410", + "codeCommune": "71499", + "libelleAcheminement": "SANVIGNES LES MINES", + "nomCommune": "SANVIGNES LES MINES" }, { - "codePostal": "68500", - "codeCommune": "68381", - "libelleAcheminement": "WUENHEIM", - "nomCommune": "WUENHEIM" + "codePostal": "19250", + "codeCommune": "19244", + "libelleAcheminement": "ST SULPICE LES BOIS", + "nomCommune": "ST SULPICE LES BOIS" }, { - "codePostal": "70500", - "codeCommune": "70106", - "libelleAcheminement": "BUFFIGNECOURT", - "nomCommune": "BUFFIGNECOURT" + "codePostal": "71640", + "codeCommune": "71447", + "libelleAcheminement": "ST MARD DE VAUX", + "nomCommune": "ST MARD DE VAUX" }, { - "codePostal": "43320", - "codeCommune": "43233", - "libelleAcheminement": "SANSSAC L EGLISE", - "nomCommune": "SANSSAC L EGLISE" + "codePostal": "60650", + "codeCommune": "60609", + "libelleAcheminement": "SAVIGNIES", + "nomCommune": "SAVIGNIES" }, { - "codePostal": "12210", - "codeCommune": "12273", - "libelleAcheminement": "SOULAGES BONNEVAL", - "nomCommune": "SOULAGES BONNEVAL" + "codePostal": "62118", + "codeCommune": "62405", + "libelleAcheminement": "HAMBLAIN LES PRES", + "nomCommune": "HAMBLAIN LES PRES" }, { - "codePostal": "69170", - "codeCommune": "69001", - "libelleAcheminement": "AFFOUX", - "nomCommune": "AFFOUX" + "codePostal": "71460", + "codeCommune": "71507", + "libelleAcheminement": "SAVIGNY SUR GROSNE", + "nomCommune": "SAVIGNY SUR GROSNE" }, { - "codePostal": "70190", - "codeCommune": "70109", - "libelleAcheminement": "BUTHIERS", - "nomCommune": "BUTHIERS" + "codePostal": "19800", + "codeCommune": "19251", + "libelleAcheminement": "SARRAN", + "nomCommune": "SARRAN" }, { - "codePostal": "43190", - "codeCommune": "43244", - "libelleAcheminement": "TENCE", - "nomCommune": "TENCE" + "codePostal": "71460", + "codeCommune": "71458", + "libelleAcheminement": "ST MARTIN LA PATROUILLE", + "nomCommune": "ST MARTIN LA PATROUILLE" }, { - "codePostal": "12250", - "codeCommune": "12282", - "libelleAcheminement": "TOURNEMIRE", - "nomCommune": "TOURNEMIRE" + "codePostal": "60300", + "codeCommune": "60612", + "libelleAcheminement": "SENLIS", + "nomCommune": "SENLIS" }, { - "codePostal": "69380", - "codeCommune": "69004", - "libelleAcheminement": "ALIX", - "nomCommune": "ALIX" + "codePostal": "62190", + "codeCommune": "62407", + "libelleAcheminement": "HAM EN ARTOIS", + "nomCommune": "HAM EN ARTOIS" }, { - "codePostal": "70240", - "codeCommune": "70111", - "libelleAcheminement": "CALMOUTIER", - "nomCommune": "CALMOUTIER" + "codePostal": "71110", + "codeCommune": "71510", + "libelleAcheminement": "SEMUR EN BRIONNAIS", + "nomCommune": "SEMUR EN BRIONNAIS" }, { - "codePostal": "43320", - "codeCommune": "43254", - "libelleAcheminement": "VAZEILLES LIMANDRE", - "nomCommune": "VAZEILLES LIMANDRE" + "codePostal": "19160", + "codeCommune": "19256", + "libelleAcheminement": "SERANDON", + "nomCommune": "SERANDON" }, { - "codePostal": "12200", - "codeCommune": "12287", - "libelleAcheminement": "VAILHOURLES", - "nomCommune": "VAILHOURLES" + "codePostal": "71460", + "codeCommune": "71465", + "libelleAcheminement": "ST MICAUD", + "nomCommune": "ST MICAUD" }, { - "codePostal": "69480", - "codeCommune": "69005", - "libelleAcheminement": "AMBERIEUX D AZERGUES", - "nomCommune": "AMBERIEUX" + "codePostal": "60120", + "codeCommune": "60615", + "libelleAcheminement": "SEREVILLERS", + "nomCommune": "SEREVILLERS" }, { - "codePostal": "70190", - "codeCommune": "70118", - "libelleAcheminement": "CHAMBORNAY LES BELLEVAUX", - "nomCommune": "CHAMBORNAY LES BELLEVAUX" + "codePostal": "62124", + "codeCommune": "62410", + "libelleAcheminement": "HAPLINCOURT", + "nomCommune": "HAPLINCOURT" }, { - "codePostal": "43360", - "codeCommune": "43258", - "libelleAcheminement": "VERGONGHEON", - "nomCommune": "VERGONGHEON" + "codePostal": "71260", + "codeCommune": "71513", + "libelleAcheminement": "SENOZAN", + "nomCommune": "SENOZAN" }, { - "codePostal": "12330", - "codeCommune": "12288", - "libelleAcheminement": "VALADY", - "nomCommune": "VALADY" + "codePostal": "19300", + "codeCommune": "19263", + "libelleAcheminement": "SOUDEILLES", + "nomCommune": "SOUDEILLES" }, { - "codePostal": "69550", - "codeCommune": "69006", - "libelleAcheminement": "AMPLEPUIS", - "nomCommune": "AMPLEPUIS" + "codePostal": "71420", + "codeCommune": "71478", + "libelleAcheminement": "ST ROMAIN SOUS VERSIGNY", + "nomCommune": "ST ROMAIN SOUS VERSIGNY" }, { - "codePostal": "70400", - "codeCommune": "70121", - "libelleAcheminement": "CHAMPEY", - "nomCommune": "CHAMPEY" + "codePostal": "60400", + "codeCommune": "60617", + "libelleAcheminement": "SERMAIZE", + "nomCommune": "SERMAIZE" }, { - "codePostal": "43390", - "codeCommune": "43261", - "libelleAcheminement": "VEZEZOUX", - "nomCommune": "VEZEZOUX" + "codePostal": "62130", + "codeCommune": "62433", + "libelleAcheminement": "HERICOURT", + "nomCommune": "HERICOURT" }, { - "codePostal": "12400", - "codeCommune": "12292", - "libelleAcheminement": "VERSOLS ET LAPEYRE", - "nomCommune": "VERSOLS ET LAPEYRE" + "codePostal": "71960", + "codeCommune": "71525", + "libelleAcheminement": "SOLOGNY", + "nomCommune": "SOLOGNY" }, { - "codePostal": "69220", - "codeCommune": "69019", - "libelleAcheminement": "BELLEVILLE EN BEAUJOLAIS", - "nomCommune": "BELLEVILLE EN BEAUJOLAIS" + "codePostal": "19170", + "codeCommune": "19268", + "libelleAcheminement": "TOY VIAM", + "nomCommune": "TOY VIAM" }, { - "codePostal": "70100", - "codeCommune": "70124", - "libelleAcheminement": "CHAMPTONNAY", - "nomCommune": "CHAMPTONNAY" + "codePostal": "71710", + "codeCommune": "71482", + "libelleAcheminement": "ST SYMPHORIEN DE MARMAGNE", + "nomCommune": "ST SYMPHORIEN DE MARMAGNE" }, { - "codePostal": "43380", - "codeCommune": "43264", - "libelleAcheminement": "VILLENEUVE D ALLIER", - "nomCommune": "VILLENEUVE D ALLIER" + "codePostal": "60310", + "codeCommune": "60621", + "libelleAcheminement": "SOLENTE", + "nomCommune": "SOLENTE" }, { - "codePostal": "12290", - "codeCommune": "12297", - "libelleAcheminement": "LE VIBAL", - "nomCommune": "LE VIBAL" + "codePostal": "62158", + "codeCommune": "62434", + "libelleAcheminement": "LA HERLIERE", + "nomCommune": "LA HERLIERE" }, { - "codePostal": "69690", - "codeCommune": "69021", - "libelleAcheminement": "BESSENAY", - "nomCommune": "BESSENAY" + "codePostal": "71220", + "codeCommune": "71529", + "libelleAcheminement": "SUIN", + "nomCommune": "SUIN" }, { - "codePostal": "70120", - "codeCommune": "70135", - "libelleAcheminement": "CHARMES ST VALBERT", - "nomCommune": "CHARMES ST VALBERT" + "codePostal": "19120", + "codeCommune": "19271", + "libelleAcheminement": "TUDEILS", + "nomCommune": "TUDEILS" }, { - "codePostal": "44150", - "codeCommune": "44003", - "libelleAcheminement": "ANCENIS ST GEREON", - "nomCommune": "ANCENIS ST GEREON" + "codePostal": "71230", + "codeCommune": "71486", + "libelleAcheminement": "ST VALLIER", + "nomCommune": "ST VALLIER" }, { - "codePostal": "12430", - "codeCommune": "12299", - "libelleAcheminement": "VILLEFRANCHE DE PANAT", - "nomCommune": "VILLEFRANCHE DE PANAT" + "codePostal": "60120", + "codeCommune": "60627", + "libelleAcheminement": "TARTIGNY", + "nomCommune": "TARTIGNY" }, { - "codePostal": "69620", - "codeCommune": "69024", - "libelleAcheminement": "VAL D OINGT", - "nomCommune": "VAL D OINGT" + "codePostal": "62147", + "codeCommune": "62440", + "libelleAcheminement": "HERMIES", + "nomCommune": "HERMIES" }, { - "codePostal": "70240", - "codeCommune": "70140", - "libelleAcheminement": "CHATENEY", - "nomCommune": "CHATENEY" + "codePostal": "71360", + "codeCommune": "71530", + "libelleAcheminement": "SULLY", + "nomCommune": "SULLY" }, { - "codePostal": "44410", - "codeCommune": "44006", - "libelleAcheminement": "ASSERAC", - "nomCommune": "ASSERAC" + "codePostal": "19000", + "codeCommune": "19272", + "libelleAcheminement": "TULLE", + "nomCommune": "TULLE" }, { - "codePostal": "13080", - "codeCommune": "13001", - "libelleAcheminement": "AIX EN PROVENCE", - "nomCommune": "AIX EN PROVENCE" + "codePostal": "71150", + "codeCommune": "71496", + "libelleAcheminement": "SAMPIGNY LES MARANGES", + "nomCommune": "SAMPIGNY LES MARANGES" }, { - "codePostal": "69690", - "codeCommune": "69031", - "libelleAcheminement": "BRUSSIEU", - "nomCommune": "BRUSSIEU" + "codePostal": "60890", + "codeCommune": "60637", + "libelleAcheminement": "THURY EN VALOIS", + "nomCommune": "THURY EN VALOIS" }, { - "codePostal": "70240", - "codeCommune": "70141", - "libelleAcheminement": "CHATENOIS", - "nomCommune": "CHATENOIS" + "codePostal": "62130", + "codeCommune": "62442", + "libelleAcheminement": "HERNICOURT", + "nomCommune": "HERNICOURT" }, { - "codePostal": "44830", - "codeCommune": "44018", - "libelleAcheminement": "BOUAYE", - "nomCommune": "BOUAYE" + "codePostal": "71250", + "codeCommune": "71532", + "libelleAcheminement": "TAIZE", + "nomCommune": "TAIZE" }, { - "codePostal": "13540", - "codeCommune": "13001", - "libelleAcheminement": "AIX EN PROVENCE", - "nomCommune": "AIX EN PROVENCE" + "codePostal": "19200", + "codeCommune": "19275", + "libelleAcheminement": "USSEL", + "nomCommune": "USSEL" }, { - "codePostal": "69300", - "codeCommune": "69034", - "libelleAcheminement": "CALUIRE ET CUIRE", - "nomCommune": "CALUIRE ET CUIRE" + "codePostal": "71110", + "codeCommune": "71500", + "libelleAcheminement": "SARRY", + "nomCommune": "SARRY" }, { - "codePostal": "70140", - "codeCommune": "70151", - "libelleAcheminement": "CHEVIGNEY", - "nomCommune": "CHEVIGNEY" + "codePostal": "60170", + "codeCommune": "60641", + "libelleAcheminement": "TRACY LE MONT", + "nomCommune": "TRACY LE MONT" }, { - "codePostal": "44580", - "codeCommune": "44021", - "libelleAcheminement": "VILLENEUVE EN RETZ", - "nomCommune": "VILLENEUVE EN RETZ" + "codePostal": "62179", + "codeCommune": "62444", + "libelleAcheminement": "HERVELINGHEN", + "nomCommune": "HERVELINGHEN" }, { - "codePostal": "13190", - "codeCommune": "13002", - "libelleAcheminement": "ALLAUCH", - "nomCommune": "ALLAUCH" + "codePostal": "71270", + "codeCommune": "71541", + "libelleAcheminement": "TORPES", + "nomCommune": "TORPES" }, { - "codePostal": "69220", - "codeCommune": "69036", - "libelleAcheminement": "CERCIE", - "nomCommune": "CERCIE" + "codePostal": "19140", + "codeCommune": "19276", + "libelleAcheminement": "UZERCHE", + "nomCommune": "UZERCHE" }, { - "codePostal": "70700", - "codeCommune": "70156", - "libelleAcheminement": "CITEY", - "nomCommune": "CITEY" + "codePostal": "71530", + "codeCommune": "71502", + "libelleAcheminement": "SASSENAY", + "nomCommune": "SASSENAY" }, { - "codePostal": "44750", - "codeCommune": "44025", - "libelleAcheminement": "CAMPBON", - "nomCommune": "CAMPBON" + "codePostal": "60420", + "codeCommune": "60643", + "libelleAcheminement": "TRICOT", + "nomCommune": "TRICOT" }, { - "codePostal": "13980", - "codeCommune": "13003", - "libelleAcheminement": "ALLEINS", - "nomCommune": "ALLEINS" + "codePostal": "62134", + "codeCommune": "62451", + "libelleAcheminement": "HEUCHIN", + "nomCommune": "HEUCHIN" }, { - "codePostal": "69210", - "codeCommune": "69057", - "libelleAcheminement": "CHEVINAY", - "nomCommune": "CHEVINAY" + "codePostal": "71520", + "codeCommune": "71546", + "libelleAcheminement": "TRAMBLY", + "nomCommune": "TRAMBLY" }, { - "codePostal": "70400", - "codeCommune": "70160", - "libelleAcheminement": "COISEVAUX", - "nomCommune": "COISEVAUX" + "codePostal": "19240", + "codeCommune": "19278", + "libelleAcheminement": "VARETZ", + "nomCommune": "VARETZ" }, { - "codePostal": "44190", - "codeCommune": "44043", - "libelleAcheminement": "CLISSON", - "nomCommune": "CLISSON" + "codePostal": "71240", + "codeCommune": "71512", + "libelleAcheminement": "SENNECEY LE GRAND", + "nomCommune": "SENNECEY LE GRAND" }, { - "codePostal": "13330", - "codeCommune": "13009", - "libelleAcheminement": "LA BARBEN", - "nomCommune": "LA BARBEN" + "codePostal": "60590", + "codeCommune": "60644", + "libelleAcheminement": "TRIE CHATEAU", + "nomCommune": "TRIE CHATEAU" }, { - "codePostal": "69870", - "codeCommune": "69060", - "libelleAcheminement": "CLAVEISOLLES", - "nomCommune": "CLAVEISOLLES" + "codePostal": "62150", + "codeCommune": "62457", + "libelleAcheminement": "HOUDAIN", + "nomCommune": "HOUDAIN" }, { - "codePostal": "70000", - "codeCommune": "70162", - "libelleAcheminement": "COLOMBE LES VESOUL", - "nomCommune": "COLOMBE LES VESOUL" + "codePostal": "71700", + "codeCommune": "71550", + "libelleAcheminement": "UCHIZY", + "nomCommune": "UCHIZY" }, { - "codePostal": "44290", - "codeCommune": "44044", - "libelleAcheminement": "CONQUEREUIL", - "nomCommune": "CONQUEREUIL" + "codePostal": "19130", + "codeCommune": "19279", + "libelleAcheminement": "VARS SUR ROSEIX", + "nomCommune": "VARS SUR ROSEIX" }, { - "codePostal": "13720", - "codeCommune": "13013", - "libelleAcheminement": "BELCODENE", - "nomCommune": "BELCODENE" + "codePostal": "71350", + "codeCommune": "71517", + "libelleAcheminement": "SERMESSE", + "nomCommune": "SERMESSE" }, { - "codePostal": "69220", - "codeCommune": "69065", - "libelleAcheminement": "CORCELLES EN BEAUJOLAIS", - "nomCommune": "CORCELLES EN BEAUJOLAIS" + "codePostal": "60590", + "codeCommune": "60645", + "libelleAcheminement": "TRIE LA VILLE", + "nomCommune": "TRIE LA VILLE" }, { - "codePostal": "70160", - "codeCommune": "70170", - "libelleAcheminement": "CONTREGLISE", - "nomCommune": "CONTREGLISE" + "codePostal": "62158", + "codeCommune": "62465", + "libelleAcheminement": "HUMBERCAMPS", + "nomCommune": "HUMBERCAMPS" }, { - "codePostal": "44220", - "codeCommune": "44047", - "libelleAcheminement": "COUERON", - "nomCommune": "COUERON" + "codePostal": "71130", + "codeCommune": "71552", + "libelleAcheminement": "UXEAU", + "nomCommune": "UXEAU" }, { - "codePostal": "13720", - "codeCommune": "13016", - "libelleAcheminement": "LA BOUILLADISSE", - "nomCommune": "LA BOUILLADISSE" + "codePostal": "19120", + "codeCommune": "19280", + "libelleAcheminement": "VEGENNES", + "nomCommune": "VEGENNES" }, { - "codePostal": "69380", - "codeCommune": "69076", - "libelleAcheminement": "DOMMARTIN", - "nomCommune": "DOMMARTIN" + "codePostal": "71220", + "codeCommune": "71524", + "libelleAcheminement": "SIVIGNON", + "nomCommune": "SIVIGNON" }, { - "codePostal": "70310", - "codeCommune": "70176", - "libelleAcheminement": "CORRAVILLERS", - "nomCommune": "CORRAVILLERS" + "codePostal": "60590", + "codeCommune": "60660", + "libelleAcheminement": "LE VAUMAIN", + "nomCommune": "LE VAUMAIN" }, { - "codePostal": "44490", - "codeCommune": "44049", - "libelleAcheminement": "LE CROISIC", - "nomCommune": "LE CROISIC" + "codePostal": "62860", + "codeCommune": "62469", + "libelleAcheminement": "INCHY EN ARTOIS", + "nomCommune": "INCHY EN ARTOIS" }, { - "codePostal": "13720", - "codeCommune": "13016", - "libelleAcheminement": "LA BOUILLADISSE", - "nomCommune": "LA BOUILLADISSE" + "codePostal": "71800", + "codeCommune": "71553", + "libelleAcheminement": "VAREILLES", + "nomCommune": "VAREILLES" }, { - "codePostal": "69850", - "codeCommune": "69078", - "libelleAcheminement": "DUERNE", - "nomCommune": "DUERNE" + "codePostal": "19170", + "codeCommune": "19284", + "libelleAcheminement": "VIAM", + "nomCommune": "VIAM" }, { - "codePostal": "70500", - "codeCommune": "70177", - "libelleAcheminement": "CORRE", - "nomCommune": "CORRE" + "codePostal": "71960", + "codeCommune": "71526", + "libelleAcheminement": "SOLUTRE POUILLY", + "nomCommune": "SOLUTRE POUILLY" }, { - "codePostal": "44110", - "codeCommune": "44054", - "libelleAcheminement": "ERBRAY", - "nomCommune": "ERBRAY" + "codePostal": "60390", + "codeCommune": "60662", + "libelleAcheminement": "LE VAUROUX", + "nomCommune": "LE VAUROUX" }, { - "codePostal": "13112", - "codeCommune": "13031", - "libelleAcheminement": "LA DESTROUSSE", - "nomCommune": "LA DESTROUSSE" + "codePostal": "62129", + "codeCommune": "62471", + "libelleAcheminement": "BELLINGHEM", + "nomCommune": "BELLINGHEM" }, { - "codePostal": "69700", - "codeCommune": "69080", - "libelleAcheminement": "ECHALAS", - "nomCommune": "ECHALAS" + "codePostal": "71110", + "codeCommune": "71554", + "libelleAcheminement": "VARENNE L ARCONCE", + "nomCommune": "VARENNE L ARCONCE" }, { - "codePostal": "70200", - "codeCommune": "70195", - "libelleAcheminement": "DAMBENOIT LES COLOMBE", - "nomCommune": "DAMBENOIT LES COLOMBE" + "codePostal": "19130", + "codeCommune": "19286", + "libelleAcheminement": "VIGNOLS", + "nomCommune": "VIGNOLS" }, { - "codePostal": "44190", - "codeCommune": "44064", - "libelleAcheminement": "GORGES", - "nomCommune": "GORGES" + "codePostal": "71190", + "codeCommune": "71531", + "libelleAcheminement": "LA TAGNIERE", + "nomCommune": "LA TAGNIERE" }, { - "codePostal": "13820", - "codeCommune": "13033", - "libelleAcheminement": "ENSUES LA REDONNE", - "nomCommune": "ENSUES LA REDONNE" + "codePostal": "60280", + "codeCommune": "60665", + "libelleAcheminement": "VENETTE", + "nomCommune": "VENETTE" }, { - "codePostal": "69400", - "codeCommune": "69092", - "libelleAcheminement": "GLEIZE", - "nomCommune": "GLEIZE" + "codePostal": "62330", + "codeCommune": "62473", + "libelleAcheminement": "ISBERGUES", + "nomCommune": "ISBERGUES" }, { - "codePostal": "70230", - "codeCommune": "70197", - "libelleAcheminement": "DAMPIERRE SUR LINOTTE", - "nomCommune": "DAMPIERRE SUR LINOTTE" + "codePostal": "71600", + "codeCommune": "71557", + "libelleAcheminement": "VARENNE ST GERMAIN", + "nomCommune": "VARENNE ST GERMAIN" }, { - "codePostal": "44530", - "codeCommune": "44068", - "libelleAcheminement": "GUENROUET", - "nomCommune": "GUENROUET" + "codePostal": "21700", + "codeCommune": "21001", + "libelleAcheminement": "AGENCOURT", + "nomCommune": "AGENCOURT" }, { - "codePostal": "13990", - "codeCommune": "13038", - "libelleAcheminement": "FONTVIEILLE", - "nomCommune": "FONTVIEILLE" + "codePostal": "71190", + "codeCommune": "71551", + "libelleAcheminement": "UCHON", + "nomCommune": "UCHON" }, { - "codePostal": "69290", - "codeCommune": "69094", - "libelleAcheminement": "GREZIEU LA VARENNE", - "nomCommune": "GREZIEU LA VARENNE" + "codePostal": "60162", + "codeCommune": "60675", + "libelleAcheminement": "VIGNEMONT", + "nomCommune": "VIGNEMONT" }, { - "codePostal": "70400", - "codeCommune": "70205", - "libelleAcheminement": "ECHAVANNE", - "nomCommune": "ECHAVANNE" + "codePostal": "62960", + "codeCommune": "62485", + "libelleAcheminement": "LAIRES", + "nomCommune": "LAIRES" }, { - "codePostal": "44350", - "codeCommune": "44069", - "libelleAcheminement": "GUERANDE", - "nomCommune": "GUERANDE" + "codePostal": "71600", + "codeCommune": "71557", + "libelleAcheminement": "VARENNE ST GERMAIN", + "nomCommune": "VARENNE ST GERMAIN" }, { - "codePostal": "13710", - "codeCommune": "13040", - "libelleAcheminement": "FUVEAU", - "nomCommune": "FUVEAU" + "codePostal": "21360", + "codeCommune": "21014", + "libelleAcheminement": "ANTHEUIL", + "nomCommune": "ANTHEUIL" }, { - "codePostal": "69520", - "codeCommune": "69096", - "libelleAcheminement": "GRIGNY", - "nomCommune": "GRIGNY" + "codePostal": "71000", + "codeCommune": "71556", + "libelleAcheminement": "VARENNES LES MACON", + "nomCommune": "VARENNES LES MACON" }, { - "codePostal": "70000", - "codeCommune": "70207", - "libelleAcheminement": "ECHENOZ LA MELINE", - "nomCommune": "ECHENOZ LA MELINE" + "codePostal": "60890", + "codeCommune": "60679", + "libelleAcheminement": "LA VILLENEUVE SOUS THURY", + "nomCommune": "LA VILLENEUVE SOUS THURY" }, { - "codePostal": "44430", - "codeCommune": "44079", - "libelleAcheminement": "LE LANDREAU", - "nomCommune": "LE LANDREAU" + "codePostal": "62380", + "codeCommune": "62495", + "libelleAcheminement": "LEDINGHEM", + "nomCommune": "LEDINGHEM" }, { - "codePostal": "13120", - "codeCommune": "13041", - "libelleAcheminement": "GARDANNE", - "nomCommune": "GARDANNE" + "codePostal": "71800", + "codeCommune": "71561", + "libelleAcheminement": "VAUBAN", + "nomCommune": "VAUBAN" }, { - "codePostal": "69170", - "codeCommune": "69102", - "libelleAcheminement": "JOUX", - "nomCommune": "JOUX" + "codePostal": "21230", + "codeCommune": "21023", + "libelleAcheminement": "ARNAY LE DUC", + "nomCommune": "ARNAY LE DUC" }, { - "codePostal": "70600", - "codeCommune": "70211", - "libelleAcheminement": "ECUELLE", - "nomCommune": "ECUELLE" + "codePostal": "71460", + "codeCommune": "71563", + "libelleAcheminement": "VAUX EN PRE", + "nomCommune": "VAUX EN PRE" }, { - "codePostal": "44260", - "codeCommune": "44080", - "libelleAcheminement": "LAVAU SUR LOIRE", - "nomCommune": "LAVAU SUR LOIRE" + "codePostal": "60810", + "codeCommune": "60682", + "libelleAcheminement": "VILLERS ST FRAMBOURG OGNON", + "nomCommune": "VILLERS ST FRAMBOURG OGNON" }, { - "codePostal": "13450", - "codeCommune": "13044", - "libelleAcheminement": "GRANS", - "nomCommune": "GRANS" + "codePostal": "62270", + "codeCommune": "62513", + "libelleAcheminement": "LIGNY SUR CANCHE", + "nomCommune": "LIGNY SUR CANCHE" }, { - "codePostal": "69840", - "codeCommune": "69103", - "libelleAcheminement": "JULIENAS", - "nomCommune": "JULIENAS" + "codePostal": "71120", + "codeCommune": "71562", + "libelleAcheminement": "VAUDEBARRIER", + "nomCommune": "VAUDEBARRIER" }, { - "codePostal": "70300", - "codeCommune": "70213", - "libelleAcheminement": "EHUNS", - "nomCommune": "EHUNS" + "codePostal": "21500", + "codeCommune": "21025", + "libelleAcheminement": "ARRANS", + "nomCommune": "ARRANS" }, { - "codePostal": "44650", - "codeCommune": "44081", - "libelleAcheminement": "LEGE", - "nomCommune": "LEGE" + "codePostal": "71350", + "codeCommune": "71566", + "libelleAcheminement": "VERDUN SUR LE DOUBS", + "nomCommune": "VERDUN SUR LE DOUBS" }, { - "codePostal": "13680", - "codeCommune": "13051", - "libelleAcheminement": "LANCON PROVENCE", - "nomCommune": "LANCON PROVENCE" + "codePostal": "60134", + "codeCommune": "60685", + "libelleAcheminement": "VILLERS ST SEPULCRE", + "nomCommune": "VILLERS ST SEPULCRE" }, { - "codePostal": "69870", - "codeCommune": "69107", - "libelleAcheminement": "LAMURE SUR AZERGUES", - "nomCommune": "LAMURE SUR AZERGUES" + "codePostal": "62450", + "codeCommune": "62515", + "libelleAcheminement": "LIGNY THILLOY", + "nomCommune": "LIGNY THILLOY" }, { - "codePostal": "70100", - "codeCommune": "70218", - "libelleAcheminement": "ESMOULINS", - "nomCommune": "ESMOULINS" + "codePostal": "71590", + "codeCommune": "71570", + "libelleAcheminement": "VERJUX", + "nomCommune": "VERJUX" }, { - "codePostal": "44270", - "codeCommune": "44087", - "libelleAcheminement": "MACHECOUL ST MEME", - "nomCommune": "MACHECOUL ST MEME" + "codePostal": "21500", + "codeCommune": "21026", + "libelleAcheminement": "ASNIERES EN MONTAGNE", + "nomCommune": "ASNIERES EN MONTAGNE" }, { - "codePostal": "13910", - "codeCommune": "13052", - "libelleAcheminement": "MAILLANE", - "nomCommune": "MAILLANE" + "codePostal": "71220", + "codeCommune": "71571", + "libelleAcheminement": "VEROSVRES", + "nomCommune": "VEROSVRES" }, { - "codePostal": "69430", - "codeCommune": "69109", - "libelleAcheminement": "LANTIGNIE", - "nomCommune": "LANTIGNIE" + "codePostal": "60130", + "codeCommune": "60701", + "libelleAcheminement": "WAVIGNIES", + "nomCommune": "WAVIGNIES" }, { - "codePostal": "70400", - "codeCommune": "70221", - "libelleAcheminement": "ETOBON", - "nomCommune": "ETOBON" + "codePostal": "62134", + "codeCommune": "62519", + "libelleAcheminement": "LISBOURG", + "nomCommune": "LISBOURG" }, { - "codePostal": "44270", - "codeCommune": "44090", - "libelleAcheminement": "LA MARNE", - "nomCommune": "LA MARNE" + "codePostal": "71960", + "codeCommune": "71574", + "libelleAcheminement": "VERZE", + "nomCommune": "VERZE" }, { - "codePostal": "13370", - "codeCommune": "13053", - "libelleAcheminement": "MALLEMORT", - "nomCommune": "MALLEMORT" + "codePostal": "21380", + "codeCommune": "21027", + "libelleAcheminement": "ASNIERES LES DIJON", + "nomCommune": "ASNIERES LES DIJON" }, { - "codePostal": "69590", - "codeCommune": "69110", - "libelleAcheminement": "LARAJASSE", - "nomCommune": "LARAJASSE" + "codePostal": "71110", + "codeCommune": "71573", + "libelleAcheminement": "VERSAUGUES", + "nomCommune": "VERSAUGUES" }, { - "codePostal": "70160", - "codeCommune": "70228", - "libelleAcheminement": "FAVERNEY", - "nomCommune": "FAVERNEY" + "codePostal": "61200", + "codeCommune": "61006", + "libelleAcheminement": "ARGENTAN", + "nomCommune": "ARGENTAN" }, { - "codePostal": "44420", - "codeCommune": "44097", - "libelleAcheminement": "MESQUER", - "nomCommune": "MESQUER" + "codePostal": "62218", + "codeCommune": "62523", + "libelleAcheminement": "LOISON SOUS LENS", + "nomCommune": "LOISON SOUS LENS" }, { - "codePostal": "13520", - "codeCommune": "13058", - "libelleAcheminement": "MAUSSANE LES ALPILLES", - "nomCommune": "MAUSSANE LES ALPILLES" + "codePostal": "71620", + "codeCommune": "71577", + "libelleAcheminement": "VILLEGAUDIN", + "nomCommune": "VILLEGAUDIN" }, { - "codePostal": "69620", - "codeCommune": "69111", - "libelleAcheminement": "LEGNY", - "nomCommune": "LEGNY" + "codePostal": "21500", + "codeCommune": "21029", + "libelleAcheminement": "ATHIE", + "nomCommune": "ATHIE" }, { - "codePostal": "70130", - "codeCommune": "70231", - "libelleAcheminement": "FERRIERES LES RAY", - "nomCommune": "FERRIERES LES RAY" + "codePostal": "71270", + "codeCommune": "71578", + "libelleAcheminement": "CLUX VILLENEUVE", + "nomCommune": "CLUX VILLENEUVE" }, { - "codePostal": "44140", - "codeCommune": "44102", - "libelleAcheminement": "MONTBERT", - "nomCommune": "MONTBERT" + "codePostal": "61100", + "codeCommune": "61007", + "libelleAcheminement": "ATHIS VAL DE ROUVRE", + "nomCommune": "ATHIS VAL DE ROUVRE" }, { - "codePostal": "13550", - "codeCommune": "13066", - "libelleAcheminement": "NOVES", - "nomCommune": "NOVES" + "codePostal": "62240", + "codeCommune": "62524", + "libelleAcheminement": "LONGFOSSE", + "nomCommune": "LONGFOSSE" }, { - "codePostal": "69620", - "codeCommune": "69113", - "libelleAcheminement": "LETRA", - "nomCommune": "LETRA" + "codePostal": "71270", + "codeCommune": "71578", + "libelleAcheminement": "CLUX VILLENEUVE", + "nomCommune": "CLUX VILLENEUVE" }, { - "codePostal": "70360", - "codeCommune": "70232", - "libelleAcheminement": "FERRIERES LES SCEY", - "nomCommune": "FERRIERES LES SCEY" + "codePostal": "21360", + "codeCommune": "21036", + "libelleAcheminement": "AUXANT", + "nomCommune": "AUXANT" }, { - "codePostal": "44330", - "codeCommune": "44108", - "libelleAcheminement": "MOUZILLON", - "nomCommune": "MOUZILLON" + "codePostal": "71500", + "codeCommune": "71580", + "libelleAcheminement": "VINCELLES", + "nomCommune": "VINCELLES" }, { - "codePostal": "13550", - "codeCommune": "13066", - "libelleAcheminement": "NOVES", - "nomCommune": "NOVES" + "codePostal": "61100", + "codeCommune": "61007", + "libelleAcheminement": "ATHIS VAL DE ROUVRE", + "nomCommune": "ATHIS VAL DE ROUVRE" }, { - "codePostal": "69380", - "codeCommune": "69121", - "libelleAcheminement": "LOZANNE", - "nomCommune": "LOZANNE" + "codePostal": "62240", + "codeCommune": "62530", + "libelleAcheminement": "LOTTINGHEN", + "nomCommune": "LOTTINGHEN" }, { - "codePostal": "70600", - "codeCommune": "70247", - "libelleAcheminement": "FOUVENT ST ANDOCHE", - "nomCommune": "FOUVENT ST ANDOCHE" + "codePostal": "71250", + "codeCommune": "71582", + "libelleAcheminement": "LA VINEUSE SUR FREGANDE", + "nomCommune": "LA VINEUSE SUR FREGANDE" }, { - "codePostal": "44200", - "codeCommune": "44109", - "libelleAcheminement": "NANTES", - "nomCommune": "NANTES" + "codePostal": "21120", + "codeCommune": "21039", + "libelleAcheminement": "AVELANGES", + "nomCommune": "AVELANGES" }, { - "codePostal": "13170", - "codeCommune": "13071", - "libelleAcheminement": "LES PENNES MIRABEAU", - "nomCommune": "LES PENNES MIRABEAU" + "codePostal": "72650", + "codeCommune": "72001", + "libelleAcheminement": "AIGNE", + "nomCommune": "AIGNE" }, { - "codePostal": "69510", - "codeCommune": "69131", - "libelleAcheminement": "MESSIMY", - "nomCommune": "MESSIMY" + "codePostal": "61100", + "codeCommune": "61007", + "libelleAcheminement": "ATHIS VAL DE ROUVRE", + "nomCommune": "ATHIS VAL DE ROUVRE" }, { - "codePostal": "70180", - "codeCommune": "70251", - "libelleAcheminement": "FRANCOURT", - "nomCommune": "FRANCOURT" + "codePostal": "62127", + "codeCommune": "62536", + "libelleAcheminement": "MAGNICOURT EN COMTE", + "nomCommune": "MAGNICOURT EN COMTE" }, { - "codePostal": "44130", - "codeCommune": "44111", - "libelleAcheminement": "NOTRE DAME DES LANDES", - "nomCommune": "NOTRE DAME DES LANDES" + "codePostal": "71680", + "codeCommune": "71583", + "libelleAcheminement": "VINZELLES", + "nomCommune": "VINZELLES" }, { - "codePostal": "13124", - "codeCommune": "13073", - "libelleAcheminement": "PEYPIN", - "nomCommune": "PEYPIN" + "codePostal": "21580", + "codeCommune": "21041", + "libelleAcheminement": "AVOT", + "nomCommune": "AVOT" }, { - "codePostal": "69610", - "codeCommune": "69132", - "libelleAcheminement": "MEYS", - "nomCommune": "MEYS" + "codePostal": "72540", + "codeCommune": "72004", + "libelleAcheminement": "AMNE", + "nomCommune": "AMNE" }, { - "codePostal": "70130", - "codeCommune": "70255", - "libelleAcheminement": "FRESNE ST MAMES", - "nomCommune": "FRESNE ST MAMES" + "codePostal": "61100", + "codeCommune": "61007", + "libelleAcheminement": "ATHIS VAL DE ROUVRE", + "nomCommune": "ATHIS VAL DE ROUVRE" }, { - "codePostal": "44330", - "codeCommune": "44117", - "libelleAcheminement": "LE PALLET", - "nomCommune": "LE PALLET" + "codePostal": "62270", + "codeCommune": "62537", + "libelleAcheminement": "MAGNICOURT SUR CANCHE", + "nomCommune": "MAGNICOURT SUR CANCHE" }, { - "codePostal": "13230", - "codeCommune": "13078", - "libelleAcheminement": "PORT ST LOUIS DU RHONE", - "nomCommune": "PORT ST LOUIS DU RHONE" + "codePostal": "71530", + "codeCommune": "71585", + "libelleAcheminement": "VIREY LE GRAND", + "nomCommune": "VIREY LE GRAND" }, { - "codePostal": "69860", - "codeCommune": "69135", - "libelleAcheminement": "DEUX GROSNES", - "nomCommune": "DEUX GROSNES" + "codePostal": "21450", + "codeCommune": "21043", + "libelleAcheminement": "BAIGNEUX LES JUIFS", + "nomCommune": "BAIGNEUX LES JUIFS" }, { - "codePostal": "70270", - "codeCommune": "70256", - "libelleAcheminement": "FRESSE", - "nomCommune": "FRESSE" + "codePostal": "72430", + "codeCommune": "72010", + "libelleAcheminement": "ASNIERES SUR VEGRE", + "nomCommune": "ASNIERES SUR VEGRE" }, { - "codePostal": "44160", - "codeCommune": "44129", - "libelleAcheminement": "PONTCHATEAU", - "nomCommune": "PONTCHATEAU" + "codePostal": "61500", + "codeCommune": "61013", + "libelleAcheminement": "AUNAY LES BOIS", + "nomCommune": "AUNAY LES BOIS" }, { - "codePostal": "13830", - "codeCommune": "13085", - "libelleAcheminement": "ROQUEFORT LA BEDOULE", - "nomCommune": "ROQUEFORT LA BEDOULE" + "codePostal": "62250", + "codeCommune": "62546", + "libelleAcheminement": "MANINGHEN HENNE", + "nomCommune": "MANINGHEN HENNE" }, { - "codePostal": "69610", - "codeCommune": "69138", - "libelleAcheminement": "MONTROMANT", - "nomCommune": "MONTROMANT" + "codePostal": "71260", + "codeCommune": "71591", + "libelleAcheminement": "FLEURVILLE", + "nomCommune": "FLEURVILLE" }, { - "codePostal": "70000", - "codeCommune": "70261", - "libelleAcheminement": "FROTEY LES VESOUL", - "nomCommune": "FROTEY LES VESOUL" + "codePostal": "21330", + "codeCommune": "21044", + "libelleAcheminement": "BALOT", + "nomCommune": "BALOT" }, { - "codePostal": "44860", - "codeCommune": "44130", - "libelleAcheminement": "PONT ST MARTIN", - "nomCommune": "PONT ST MARTIN" + "codePostal": "72300", + "codeCommune": "72016", + "libelleAcheminement": "AUVERS LE HAMON", + "nomCommune": "AUVERS LE HAMON" }, { - "codePostal": "13740", - "codeCommune": "13088", - "libelleAcheminement": "LE ROVE", - "nomCommune": "LE ROVE" + "codePostal": "61200", + "codeCommune": "61014", + "libelleAcheminement": "AUNOU LE FAUCON", + "nomCommune": "AUNOU LE FAUCON" }, { - "codePostal": "69530", - "codeCommune": "69148", - "libelleAcheminement": "ORLIENAS", - "nomCommune": "ORLIENAS" + "codePostal": "62140", + "codeCommune": "62549", + "libelleAcheminement": "MARCONNE", + "nomCommune": "MARCONNE" }, { - "codePostal": "70110", - "codeCommune": "70264", - "libelleAcheminement": "GEORFANS", - "nomCommune": "GEORFANS" + "codePostal": "72700", + "codeCommune": "72003", + "libelleAcheminement": "ALLONNES", + "nomCommune": "ALLONNES" }, { - "codePostal": "44210", - "codeCommune": "44131", - "libelleAcheminement": "PORNIC", - "nomCommune": "PORNIC" + "codePostal": "21410", + "codeCommune": "21045", + "libelleAcheminement": "BARBIREY SUR OUCHE", + "nomCommune": "BARBIREY SUR OUCHE" }, { - "codePostal": "13760", - "codeCommune": "13091", - "libelleAcheminement": "ST CANNAT", - "nomCommune": "ST CANNAT" + "codePostal": "72260", + "codeCommune": "72018", + "libelleAcheminement": "AVESNES EN SAOSNOIS", + "nomCommune": "AVESNES EN SAOSNOIS" }, { - "codePostal": "69490", - "codeCommune": "69157", - "libelleAcheminement": "VINDRY SUR TURDINE", - "nomCommune": "VINDRY SUR TURDINE" + "codePostal": "61570", + "codeCommune": "61039", + "libelleAcheminement": "LA BELLIERE", + "nomCommune": "LA BELLIERE" }, { - "codePostal": "70120", - "codeCommune": "70274", - "libelleAcheminement": "GRANDECOURT", - "nomCommune": "GRANDECOURT" + "codePostal": "62860", + "codeCommune": "62559", + "libelleAcheminement": "MARQUION", + "nomCommune": "MARQUION" }, { - "codePostal": "44510", - "codeCommune": "44135", - "libelleAcheminement": "LE POULIGUEN", - "nomCommune": "LE POULIGUEN" + "codePostal": "72370", + "codeCommune": "72007", + "libelleAcheminement": "ARDENAY SUR MERIZE", + "nomCommune": "ARDENAY SUR MERIZE" }, { - "codePostal": "13610", - "codeCommune": "13093", - "libelleAcheminement": "ST ESTEVE JANSON", - "nomCommune": "ST ESTEVE JANSON" + "codePostal": "21570", + "codeCommune": "21058", + "libelleAcheminement": "BELAN SUR OURCE", + "nomCommune": "BELAN SUR OURCE" }, { - "codePostal": "69400", - "codeCommune": "69159", - "libelleAcheminement": "PORTE DES PIERRES DOREES", - "nomCommune": "PORTE DES PIERRES DOREES" + "codePostal": "72350", + "codeCommune": "72019", + "libelleAcheminement": "AVESSE", + "nomCommune": "AVESSE" }, { - "codePostal": "70170", - "codeCommune": "70278", - "libelleAcheminement": "GRATTERY", - "nomCommune": "GRATTERY" + "codePostal": "61130", + "codeCommune": "61041", + "libelleAcheminement": "BELLOU LE TRICHARD", + "nomCommune": "BELLOU LE TRICHARD" }, { - "codePostal": "44750", - "codeCommune": "44139", - "libelleAcheminement": "QUILLY", - "nomCommune": "QUILLY" + "codePostal": "62670", + "codeCommune": "62563", + "libelleAcheminement": "MAZINGARBE", + "nomCommune": "MAZINGARBE" }, { - "codePostal": "13920", - "codeCommune": "13098", - "libelleAcheminement": "ST MITRE LES REMPARTS", - "nomCommune": "ST MITRE LES REMPARTS" + "codePostal": "72540", + "codeCommune": "72017", + "libelleAcheminement": "AUVERS SOUS MONTFAUCON", + "nomCommune": "AUVERS SOUS MONTFAUCON" }, { - "codePostal": "69650", - "codeCommune": "69163", - "libelleAcheminement": "QUINCIEUX", - "nomCommune": "QUINCIEUX" + "codePostal": "21360", + "codeCommune": "21066", + "libelleAcheminement": "BESSEY LA COUR", + "nomCommune": "BESSEY LA COUR" }, { - "codePostal": "70700", - "codeCommune": "70282", - "libelleAcheminement": "GY", - "nomCommune": "GY" + "codePostal": "72200", + "codeCommune": "72022", + "libelleAcheminement": "LE BAILLEUL", + "nomCommune": "LE BAILLEUL" }, { - "codePostal": "44430", - "codeCommune": "44141", - "libelleAcheminement": "LA REMAUDIERE", - "nomCommune": "LA REMAUDIERE" + "codePostal": "61560", + "codeCommune": "61048", + "libelleAcheminement": "BOECE", + "nomCommune": "BOECE" }, { - "codePostal": "13730", - "codeCommune": "13102", - "libelleAcheminement": "ST VICTORET", - "nomCommune": "ST VICTORET" + "codePostal": "62217", + "codeCommune": "62568", + "libelleAcheminement": "MERCATEL", + "nomCommune": "MERCATEL" }, { - "codePostal": "69470", - "codeCommune": "69164", - "libelleAcheminement": "RANCHAL", - "nomCommune": "RANCHAL" + "codePostal": "72290", + "codeCommune": "72023", + "libelleAcheminement": "BALLON ST MARS", + "nomCommune": "BALLON ST MARS" }, { - "codePostal": "70440", - "codeCommune": "70283", - "libelleAcheminement": "HAUT DU THEM CHATEAU LAMBERT", - "nomCommune": "HAUT DU THEM CHATEAU LAMBERT" + "codePostal": "21610", + "codeCommune": "21094", + "libelleAcheminement": "BOURBERAIN", + "nomCommune": "BOURBERAIN" }, { - "codePostal": "44660", - "codeCommune": "44146", - "libelleAcheminement": "ROUGE", - "nomCommune": "ROUGE" + "codePostal": "72290", + "codeCommune": "72023", + "libelleAcheminement": "BALLON ST MARS", + "nomCommune": "BALLON ST MARS" }, { - "codePostal": "13300", - "codeCommune": "13103", - "libelleAcheminement": "SALON DE PROVENCE", - "nomCommune": "SALON DE PROVENCE" + "codePostal": "61110", + "codeCommune": "61050", + "libelleAcheminement": "COUR MAUGIS SUR HUISNE", + "nomCommune": "COUR MAUGIS SUR HUISNE" }, { - "codePostal": "69440", - "codeCommune": "69166", - "libelleAcheminement": "RIVERIE", - "nomCommune": "RIVERIE" + "codePostal": "62560", + "codeCommune": "62569", + "libelleAcheminement": "MERCK ST LIEVIN", + "nomCommune": "MERCK ST LIEVIN" }, { - "codePostal": "70800", - "codeCommune": "70284", - "libelleAcheminement": "HAUTEVELLE", - "nomCommune": "HAUTEVELLE" + "codePostal": "72200", + "codeCommune": "72025", + "libelleAcheminement": "BAZOUGES CRE SUR LOIR", + "nomCommune": "BAZOUGES CRE SUR LOIR" }, { - "codePostal": "44117", - "codeCommune": "44151", - "libelleAcheminement": "ST ANDRE DES EAUX", - "nomCommune": "ST ANDRE DES EAUX" + "codePostal": "21690", + "codeCommune": "21098", + "libelleAcheminement": "BOUX SOUS SALMAISE", + "nomCommune": "BOUX SOUS SALMAISE" }, { - "codePostal": "13880", - "codeCommune": "13112", - "libelleAcheminement": "VELAUX", - "nomCommune": "VELAUX" + "codePostal": "72650", + "codeCommune": "72024", + "libelleAcheminement": "LA BAZOGE", + "nomCommune": "LA BAZOGE" }, { - "codePostal": "69640", - "codeCommune": "69167", - "libelleAcheminement": "RIVOLET", - "nomCommune": "RIVOLET" + "codePostal": "61110", + "codeCommune": "61050", + "libelleAcheminement": "COUR MAUGIS SUR HUISNE", + "nomCommune": "COUR MAUGIS SUR HUISNE" }, { - "codePostal": "70400", - "codeCommune": "70285", - "libelleAcheminement": "HERICOURT", - "nomCommune": "HERICOURT" + "codePostal": "62155", + "codeCommune": "62571", + "libelleAcheminement": "MERLIMONT", + "nomCommune": "MERLIMONT" }, { - "codePostal": "44110", - "codeCommune": "44153", - "libelleAcheminement": "ST AUBIN DES CHATEAUX", - "nomCommune": "ST AUBIN DES CHATEAUX" + "codePostal": "72200", + "codeCommune": "72025", + "libelleAcheminement": "BAZOUGES CRE SUR LOIR", + "nomCommune": "BAZOUGES CRE SUR LOIR" }, { - "codePostal": "13122", - "codeCommune": "13114", - "libelleAcheminement": "VENTABREN", - "nomCommune": "VENTABREN" + "codePostal": "21200", + "codeCommune": "21099", + "libelleAcheminement": "BOUZE LES BEAUNE", + "nomCommune": "BOUZE LES BEAUNE" }, { - "codePostal": "69460", - "codeCommune": "69172", - "libelleAcheminement": "SALLES ARBUISSONNAS BEAUJOLAIS", - "nomCommune": "SALLES ARBUISSONNAS EN BEAUJOLAIS" + "codePostal": "72390", + "codeCommune": "72041", + "libelleAcheminement": "BOUER", + "nomCommune": "BOUER" }, { - "codePostal": "70210", - "codeCommune": "70287", - "libelleAcheminement": "HURECOURT", - "nomCommune": "HURECOURT" + "codePostal": "61270", + "codeCommune": "61052", + "libelleAcheminement": "BONNEFOI", + "nomCommune": "BONNEFOI" }, { - "codePostal": "44250", - "codeCommune": "44154", - "libelleAcheminement": "ST BREVIN LES PINS", - "nomCommune": "ST BREVIN LES PINS" + "codePostal": "62270", + "codeCommune": "62577", + "libelleAcheminement": "MONCHEL SUR CANCHE", + "nomCommune": "MONCHEL SUR CANCHE" }, { - "codePostal": "13116", - "codeCommune": "13115", - "libelleAcheminement": "VERNEGUES", - "nomCommune": "VERNEGUES" + "codePostal": "72340", + "codeCommune": "72027", + "libelleAcheminement": "BEAUMONT SUR DEME", + "nomCommune": "BEAUMONT SUR DEME" }, { - "codePostal": "69210", - "codeCommune": "69175", - "libelleAcheminement": "SAVIGNY", - "nomCommune": "SAVIGNY" + "codePostal": "21430", + "codeCommune": "21102", + "libelleAcheminement": "BRAZEY EN MORVAN", + "nomCommune": "BRAZEY EN MORVAN" }, { - "codePostal": "70200", - "codeCommune": "70304", - "libelleAcheminement": "LINEXERT", - "nomCommune": "LINEXERT" + "codePostal": "72250", + "codeCommune": "72047", + "libelleAcheminement": "BRETTE LES PINS", + "nomCommune": "BRETTE LES PINS" }, { - "codePostal": "44530", - "codeCommune": "44161", - "libelleAcheminement": "ST GILDAS DES BOIS", - "nomCommune": "ST GILDAS DES BOIS" + "codePostal": "61220", + "codeCommune": "61063", + "libelleAcheminement": "BRIOUZE", + "nomCommune": "BRIOUZE" }, { - "codePostal": "13001", - "codeCommune": "13201", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 01" + "codePostal": "62111", + "codeCommune": "62579", + "libelleAcheminement": "MONCHY AU BOIS", + "nomCommune": "MONCHY AU BOIS" }, { - "codePostal": "69610", - "codeCommune": "69178", - "libelleAcheminement": "SOUZY", - "nomCommune": "SOUZY" + "codePostal": "72610", + "codeCommune": "72036", + "libelleAcheminement": "BETHON", + "nomCommune": "BETHON" }, { - "codePostal": "70200", - "codeCommune": "70318", - "libelleAcheminement": "MAGNY DANIGON", - "nomCommune": "MAGNY DANIGON" + "codePostal": "21490", + "codeCommune": "21107", + "libelleAcheminement": "BRETIGNY", + "nomCommune": "BRETIGNY" }, { - "codePostal": "44720", - "codeCommune": "44168", - "libelleAcheminement": "ST JOACHIM", - "nomCommune": "ST JOACHIM" + "codePostal": "72350", + "codeCommune": "72050", + "libelleAcheminement": "BRULON", + "nomCommune": "BRULON" }, { - "codePostal": "13002", - "codeCommune": "13202", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 02" + "codePostal": "61390", + "codeCommune": "61064", + "libelleAcheminement": "BRULLEMAIL", + "nomCommune": "BRULLEMAIL" }, { - "codePostal": "69700", - "codeCommune": "69179", - "libelleAcheminement": "BEAUVALLON", - "nomCommune": "BEAUVALLON" + "codePostal": "62127", + "codeCommune": "62580", + "libelleAcheminement": "MONCHY BRETON", + "nomCommune": "MONCHY BRETON" }, { - "codePostal": "70190", - "codeCommune": "70325", - "libelleAcheminement": "MAIZIERES", - "nomCommune": "MAIZIERES" + "codePostal": "72440", + "codeCommune": "72042", + "libelleAcheminement": "BOULOIRE", + "nomCommune": "BOULOIRE" }, { - "codePostal": "44980", - "codeCommune": "44172", - "libelleAcheminement": "STE LUCE SUR LOIRE", - "nomCommune": "STE LUCE SUR LOIRE" + "codePostal": "21220", + "codeCommune": "21110", + "libelleAcheminement": "BROCHON", + "nomCommune": "BROCHON" }, { - "codePostal": "13008", - "codeCommune": "13208", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 08" + "codePostal": "72320", + "codeCommune": "72057", + "libelleAcheminement": "CHAMPROND", + "nomCommune": "CHAMPROND" }, { - "codePostal": "69440", - "codeCommune": "69184", - "libelleAcheminement": "STE CATHERINE", - "nomCommune": "STE CATHERINE" + "codePostal": "61170", + "codeCommune": "61066", + "libelleAcheminement": "BURE", + "nomCommune": "BURE" }, { - "codePostal": "70230", - "codeCommune": "70335", - "libelleAcheminement": "MAUSSANS", - "nomCommune": "MAUSSANS" + "codePostal": "62118", + "codeCommune": "62582", + "libelleAcheminement": "MONCHY LE PREUX", + "nomCommune": "MONCHY LE PREUX" }, { - "codePostal": "44850", - "codeCommune": "44179", - "libelleAcheminement": "ST MARS DU DESERT", - "nomCommune": "ST MARS DU DESERT" + "codePostal": "72270", + "codeCommune": "72044", + "libelleAcheminement": "BOUSSE", + "nomCommune": "BOUSSE" }, { - "codePostal": "13009", - "codeCommune": "13209", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 09" + "codePostal": "21250", + "codeCommune": "21112", + "libelleAcheminement": "BROIN", + "nomCommune": "BROIN" }, { - "codePostal": "69280", - "codeCommune": "69190", - "libelleAcheminement": "STE CONSORCE", - "nomCommune": "STE CONSORCE" + "codePostal": "72310", + "codeCommune": "72064", + "libelleAcheminement": "LA CHAPELLE HUON", + "nomCommune": "LA CHAPELLE HUON" }, { - "codePostal": "70180", - "codeCommune": "70340", - "libelleAcheminement": "MEMBREY", - "nomCommune": "MEMBREY" + "codePostal": "61170", + "codeCommune": "61067", + "libelleAcheminement": "BURES", + "nomCommune": "BURES" }, { - "codePostal": "44540", - "codeCommune": "44180", - "libelleAcheminement": "VALLONS DE L ERDRE", - "nomCommune": "VALLONS DE L ERDRE" + "codePostal": "62550", + "codeCommune": "62601", + "libelleAcheminement": "NEDONCHEL", + "nomCommune": "NEDONCHEL" }, { - "codePostal": "13013", - "codeCommune": "13213", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 13" + "codePostal": "72500", + "codeCommune": "72049", + "libelleAcheminement": "LA BRUERE SUR LOIR", + "nomCommune": "LA BRUERE SUR LOIR" }, { - "codePostal": "69450", - "codeCommune": "69191", - "libelleAcheminement": "ST CYR AU MONT D OR", - "nomCommune": "ST CYR AU MONT D OR" + "codePostal": "21220", + "codeCommune": "21113", + "libelleAcheminement": "BROINDON", + "nomCommune": "BROINDON" }, { - "codePostal": "70160", - "codeCommune": "70341", - "libelleAcheminement": "MENOUX", - "nomCommune": "MENOUX" + "codePostal": "72510", + "codeCommune": "72072", + "libelleAcheminement": "CHATEAU L HERMITAGE", + "nomCommune": "CHATEAU L HERMITAGE" }, { - "codePostal": "44680", - "codeCommune": "44186", - "libelleAcheminement": "STE PAZANNE", - "nomCommune": "STE PAZANNE" + "codePostal": "61430", + "codeCommune": "61069", + "libelleAcheminement": "CAHAN", + "nomCommune": "CAHAN" }, { - "codePostal": "13013", - "codeCommune": "13213", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 13" + "codePostal": "62152", + "codeCommune": "62604", + "libelleAcheminement": "NEUFCHATEL HARDELOT", + "nomCommune": "NEUFCHATEL HARDELOT" }, { - "codePostal": "69460", - "codeCommune": "69198", - "libelleAcheminement": "ST ETIENNE LA VARENNE", - "nomCommune": "ST ETIENNE LA VARENNE" + "codePostal": "72330", + "codeCommune": "72051", + "libelleAcheminement": "CERANS FOULLETOURTE", + "nomCommune": "CERANS FOULLETOURTE" }, { - "codePostal": "70130", - "codeCommune": "70342", - "libelleAcheminement": "MERCEY SUR SAONE", - "nomCommune": "MERCEY SUR SAONE" + "codePostal": "21330", + "codeCommune": "21125", + "libelleAcheminement": "CERILLY", + "nomCommune": "CERILLY" }, { - "codePostal": "44230", - "codeCommune": "44190", - "libelleAcheminement": "ST SEBASTIEN SUR LOIRE", - "nomCommune": "ST SEBASTIEN SUR LOIRE" + "codePostal": "72400", + "codeCommune": "72080", + "libelleAcheminement": "CHERRE AU", + "nomCommune": "CHERRE AU" }, { - "codePostal": "13013", - "codeCommune": "13213", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 13" + "codePostal": "61100", + "codeCommune": "61070", + "libelleAcheminement": "CALIGNY", + "nomCommune": "CALIGNY" }, { - "codePostal": "69110", - "codeCommune": "69202", - "libelleAcheminement": "STE FOY LES LYON", - "nomCommune": "STE FOY LES LYON" + "codePostal": "62840", + "codeCommune": "62606", + "libelleAcheminement": "NEUVE CHAPELLE", + "nomCommune": "NEUVE CHAPELLE" }, { - "codePostal": "70200", - "codeCommune": "70348", - "libelleAcheminement": "MOFFANS ET VACHERESSE", - "nomCommune": "MOFFANS ET VACHERESSE" + "codePostal": "72340", + "codeCommune": "72052", + "libelleAcheminement": "CHAHAIGNES", + "nomCommune": "CHAHAIGNES" }, { - "codePostal": "44320", - "codeCommune": "44192", - "libelleAcheminement": "ST VIAUD", - "nomCommune": "ST VIAUD" + "codePostal": "21110", + "codeCommune": "21130", + "libelleAcheminement": "CHAMBEIRE", + "nomCommune": "CHAMBEIRE" }, { - "codePostal": "13013", - "codeCommune": "13213", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 13" + "codePostal": "72120", + "codeCommune": "72087", + "libelleAcheminement": "CONFLANS SUR ANILLE", + "nomCommune": "CONFLANS SUR ANILLE" }, { - "codePostal": "69290", - "codeCommune": "69205", - "libelleAcheminement": "ST GENIS LES OLLIERES", - "nomCommune": "ST GENIS LES OLLIERES" + "codePostal": "61320", + "codeCommune": "61074", + "libelleAcheminement": "CARROUGES", + "nomCommune": "CARROUGES" }, { - "codePostal": "70190", - "codeCommune": "70355", - "libelleAcheminement": "MONTARLOT LES RIOZ", - "nomCommune": "MONTARLOT LES RIOZ" + "codePostal": "62130", + "codeCommune": "62607", + "libelleAcheminement": "NEUVILLE AU CORNET", + "nomCommune": "NEUVILLE AU CORNET" }, { - "codePostal": "44590", - "codeCommune": "44193", - "libelleAcheminement": "ST VINCENT DES LANDES", - "nomCommune": "ST VINCENT DES LANDES" + "codePostal": "72250", + "codeCommune": "72053", + "libelleAcheminement": "CHALLES", + "nomCommune": "CHALLES" }, { - "codePostal": "13014", - "codeCommune": "13214", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 14" + "codePostal": "21230", + "codeCommune": "21140", + "libelleAcheminement": "CHAMPIGNOLLES", + "nomCommune": "CHAMPIGNOLLES" }, { - "codePostal": "69210", - "codeCommune": "69208", - "libelleAcheminement": "ST GERMAIN NUELLES", - "nomCommune": "ST GERMAIN NUELLES" + "codePostal": "72550", + "codeCommune": "72096", + "libelleAcheminement": "COULANS SUR GEE", + "nomCommune": "COULANS SUR GEE" }, { - "codePostal": "70000", - "codeCommune": "70358", - "libelleAcheminement": "MONTCEY", - "nomCommune": "MONTCEY" + "codePostal": "61330", + "codeCommune": "61075", + "libelleAcheminement": "CEAUCE", + "nomCommune": "CEAUCE" }, { - "codePostal": "44660", - "codeCommune": "44200", - "libelleAcheminement": "SOULVACHE", - "nomCommune": "SOULVACHE" + "codePostal": "62380", + "codeCommune": "62613", + "libelleAcheminement": "NIELLES LES BLEQUIN", + "nomCommune": "NIELLES LES BLEQUIN" }, { - "codePostal": "14540", - "codeCommune": "14005", - "libelleAcheminement": "VALAMBRAY", - "nomCommune": "VALAMBRAY" + "codePostal": "72400", + "codeCommune": "72062", + "libelleAcheminement": "LA CHAPELLE DU BOIS", + "nomCommune": "LA CHAPELLE DU BOIS" }, { - "codePostal": "69790", - "codeCommune": "69209", - "libelleAcheminement": "ST IGNY DE VERS", - "nomCommune": "ST IGNY DE VERS" + "codePostal": "21330", + "codeCommune": "21143", + "libelleAcheminement": "CHANNAY", + "nomCommune": "CHANNAY" }, { - "codePostal": "70270", - "codeCommune": "70361", - "libelleAcheminement": "MONTESSAUX", - "nomCommune": "MONTESSAUX" + "codePostal": "72270", + "codeCommune": "72100", + "libelleAcheminement": "COURCELLES LA FORET", + "nomCommune": "COURCELLES LA FORET" }, { - "codePostal": "44370", - "codeCommune": "44213", - "libelleAcheminement": "LOIREAUXENCE", - "nomCommune": "LOIREAUXENCE" + "codePostal": "61100", + "codeCommune": "61078", + "libelleAcheminement": "CERISY BELLE ETOILE", + "nomCommune": "CERISY BELLE ETOILE" }, { - "codePostal": "14860", - "codeCommune": "14009", - "libelleAcheminement": "AMFREVILLE", - "nomCommune": "AMFREVILLE" + "codePostal": "62890", + "codeCommune": "62618", + "libelleAcheminement": "NORDAUSQUES", + "nomCommune": "NORDAUSQUES" }, { - "codePostal": "69550", - "codeCommune": "69214", - "libelleAcheminement": "ST JEAN LA BUSSIERE", - "nomCommune": "ST JEAN LA BUSSIERE" + "codePostal": "72540", + "codeCommune": "72070", + "libelleAcheminement": "CHASSILLE", + "nomCommune": "CHASSILLE" }, { - "codePostal": "70190", - "codeCommune": "70383", - "libelleAcheminement": "NEUVELLE LES CROMARY", - "nomCommune": "NEUVELLE LES CROMARY" + "codePostal": "21150", + "codeCommune": "21151", + "libelleAcheminement": "CHASSEY", + "nomCommune": "CHASSEY" }, { - "codePostal": "44370", - "codeCommune": "44213", - "libelleAcheminement": "LOIREAUXENCE", - "nomCommune": "LOIREAUXENCE" + "codePostal": "72110", + "codeCommune": "72102", + "libelleAcheminement": "COURCIVAL", + "nomCommune": "COURCIVAL" }, { - "codePostal": "14240", - "codeCommune": "14011", - "libelleAcheminement": "AURSEULLES", - "nomCommune": "AURSEULLES" + "codePostal": "61500", + "codeCommune": "61081", + "libelleAcheminement": "CHAILLOUE", + "nomCommune": "CHAILLOUE" }, { - "codePostal": "69220", - "codeCommune": "69218", - "libelleAcheminement": "ST LAGER", - "nomCommune": "ST LAGER" + "codePostal": "62890", + "codeCommune": "62622", + "libelleAcheminement": "NORT LEULINGHEM", + "nomCommune": "NORT LEULINGHEM" }, { - "codePostal": "70360", - "codeCommune": "70386", - "libelleAcheminement": "LA NEUVELLE LES SCEY", - "nomCommune": "LA NEUVELLE LES SCEY" + "codePostal": "72500", + "codeCommune": "72071", + "libelleAcheminement": "MONTVAL SUR LOIR", + "nomCommune": "MONTVAL SUR LOIR" }, { - "codePostal": "45230", - "codeCommune": "45002", - "libelleAcheminement": "AILLANT SUR MILLERON", - "nomCommune": "AILLANT SUR MILLERON" + "codePostal": "21320", + "codeCommune": "21153", + "libelleAcheminement": "CHATELLENOT", + "nomCommune": "CHATELLENOT" }, { - "codePostal": "14240", - "codeCommune": "14011", - "libelleAcheminement": "AURSEULLES", - "nomCommune": "AURSEULLES" + "codePostal": "72150", + "codeCommune": "72103", + "libelleAcheminement": "COURDEMANCHE", + "nomCommune": "COURDEMANCHE" }, { - "codePostal": "69440", - "codeCommune": "69219", - "libelleAcheminement": "ST LAURENT D AGNY", - "nomCommune": "ST LAURENT D AGNY" + "codePostal": "61120", + "codeCommune": "61089", + "libelleAcheminement": "CHAMPOSOULT", + "nomCommune": "CHAMPOSOULT" }, { - "codePostal": "70130", - "codeCommune": "70387", - "libelleAcheminement": "NOIDANS LE FERROUX", - "nomCommune": "NOIDANS LE FERROUX" + "codePostal": "62950", + "codeCommune": "62624", + "libelleAcheminement": "NOYELLES GODAULT", + "nomCommune": "NOYELLES GODAULT" }, { - "codePostal": "45300", - "codeCommune": "45010", - "libelleAcheminement": "ASCOUX", - "nomCommune": "ASCOUX" + "codePostal": "72500", + "codeCommune": "72071", + "libelleAcheminement": "MONTVAL SUR LOIR", + "nomCommune": "MONTVAL SUR LOIR" }, { - "codePostal": "14610", - "codeCommune": "14014", - "libelleAcheminement": "COLOMBY ANGUERNY", - "nomCommune": "COLOMBY ANGUERNY" + "codePostal": "21520", + "codeCommune": "21159", + "libelleAcheminement": "LA CHAUME", + "nomCommune": "LA CHAUME" }, { - "codePostal": "69620", - "codeCommune": "69230", - "libelleAcheminement": "STE PAULE", - "nomCommune": "STE PAULE" + "codePostal": "72260", + "codeCommune": "72112", + "libelleAcheminement": "DANGEUL", + "nomCommune": "DANGEUL" }, { - "codePostal": "70300", - "codeCommune": "70398", - "libelleAcheminement": "ORMOICHE", - "nomCommune": "ORMOICHE" + "codePostal": "61800", + "codeCommune": "61093", + "libelleAcheminement": "CHANU", + "nomCommune": "CHANU" }, { - "codePostal": "45300", - "codeCommune": "45012", - "libelleAcheminement": "AUDEVILLE", - "nomCommune": "AUDEVILLE" + "codePostal": "62810", + "codeCommune": "62630", + "libelleAcheminement": "NOYELLE VION", + "nomCommune": "NOYELLE VION" }, { - "codePostal": "14610", - "codeCommune": "14015", - "libelleAcheminement": "ANISY", - "nomCommune": "ANISY" + "codePostal": "72500", + "codeCommune": "72077", + "libelleAcheminement": "CHENU", + "nomCommune": "CHENU" }, { - "codePostal": "69560", - "codeCommune": "69235", - "libelleAcheminement": "ST ROMAIN EN GAL", - "nomCommune": "ST ROMAIN EN GAL" + "codePostal": "21400", + "codeCommune": "21165", + "libelleAcheminement": "CHEMIN D AISEY", + "nomCommune": "CHEMIN D AISEY" }, { - "codePostal": "70600", - "codeCommune": "70402", - "libelleAcheminement": "OYRIERES", - "nomCommune": "OYRIERES" + "codePostal": "72390", + "codeCommune": "72118", + "libelleAcheminement": "DOLLON", + "nomCommune": "DOLLON" }, { - "codePostal": "45420", - "codeCommune": "45023", - "libelleAcheminement": "BATILLY EN PUISAYE", - "nomCommune": "BATILLY EN PUISAYE" + "codePostal": "61230", + "codeCommune": "61103", + "libelleAcheminement": "CHAUMONT", + "nomCommune": "CHAUMONT" }, { - "codePostal": "14117", - "codeCommune": "14021", - "libelleAcheminement": "ARROMANCHES LES BAINS", - "nomCommune": "ARROMANCHES LES BAINS" + "codePostal": "62270", + "codeCommune": "62631", + "libelleAcheminement": "NUNCQ HAUTECOTE", + "nomCommune": "NUNCQ HAUTECOTE" }, { - "codePostal": "69590", - "codeCommune": "69238", - "libelleAcheminement": "ST SYMPHORIEN SUR COISE", - "nomCommune": "ST SYMPHORIEN SUR COISE" + "codePostal": "72610", + "codeCommune": "72079", + "libelleAcheminement": "CHERISAY", + "nomCommune": "CHERISAY" }, { - "codePostal": "70210", - "codeCommune": "70404", - "libelleAcheminement": "PASSAVANT LA ROCHERE", - "nomCommune": "PASSAVANT LA ROCHERE" + "codePostal": "21310", + "codeCommune": "21167", + "libelleAcheminement": "CHEUGE", + "nomCommune": "CHEUGE" }, { - "codePostal": "45390", - "codeCommune": "45033", - "libelleAcheminement": "BOESSES", - "nomCommune": "BOESSES" + "codePostal": "72400", + "codeCommune": "72132", + "libelleAcheminement": "LA FERTE BERNARD", + "nomCommune": "LA FERTE BERNARD" }, { - "codePostal": "14710", - "codeCommune": "14023", - "libelleAcheminement": "ASNIERES EN BESSIN", - "nomCommune": "ASNIERES EN BESSIN" + "codePostal": "61360", + "codeCommune": "61121", + "libelleAcheminement": "COULIMER", + "nomCommune": "COULIMER" }, { - "codePostal": "69170", - "codeCommune": "69243", - "libelleAcheminement": "TARARE", - "nomCommune": "TARARE" + "codePostal": "62250", + "codeCommune": "62636", + "libelleAcheminement": "OFFRETHUN", + "nomCommune": "OFFRETHUN" }, { - "codePostal": "70150", - "codeCommune": "70410", - "libelleAcheminement": "PIN", - "nomCommune": "PIN" + "codePostal": "72400", + "codeCommune": "72080", + "libelleAcheminement": "CHERRE AU", + "nomCommune": "CHERRE AU" }, { - "codePostal": "45760", - "codeCommune": "45034", - "libelleAcheminement": "BOIGNY SUR BIONNE", - "nomCommune": "BOIGNY SUR BIONNE" + "codePostal": "21220", + "codeCommune": "21169", + "libelleAcheminement": "CHEVANNES", + "nomCommune": "CHEVANNES" }, { - "codePostal": "14700", - "codeCommune": "14025", - "libelleAcheminement": "AUBIGNY", - "nomCommune": "AUBIGNY" + "codePostal": "72130", + "codeCommune": "72138", + "libelleAcheminement": "FRESNAY SUR SARTHE", + "nomCommune": "FRESNAY SUR SARTHE" }, { - "codePostal": "69620", - "codeCommune": "69245", - "libelleAcheminement": "TERNAND", - "nomCommune": "TERNAND" + "codePostal": "61560", + "codeCommune": "61130", + "libelleAcheminement": "COURGEOUT", + "nomCommune": "COURGEOUT" }, { - "codePostal": "70290", - "codeCommune": "70413", - "libelleAcheminement": "PLANCHER BAS", - "nomCommune": "PLANCHER BAS" + "codePostal": "62590", + "codeCommune": "62637", + "libelleAcheminement": "OIGNIES", + "nomCommune": "OIGNIES" }, { - "codePostal": "45340", - "codeCommune": "45035", - "libelleAcheminement": "BOISCOMMUN", - "nomCommune": "BOISCOMMUN" + "codePostal": "72310", + "codeCommune": "72085", + "libelleAcheminement": "COGNERS", + "nomCommune": "COGNERS" }, { - "codePostal": "14260", - "codeCommune": "14027", - "libelleAcheminement": "LES MONTS D AUNAY", - "nomCommune": "LES MONTS D AUNAY" + "codePostal": "21820", + "codeCommune": "21172", + "libelleAcheminement": "CHIVRES", + "nomCommune": "CHIVRES" }, { - "codePostal": "69460", - "codeCommune": "69257", - "libelleAcheminement": "VAUX EN BEAUJOLAIS", - "nomCommune": "VAUX EN BEAUJOLAIS" + "codePostal": "72320", + "codeCommune": "72144", + "libelleAcheminement": "GREEZ SUR ROC", + "nomCommune": "GREEZ SUR ROC" }, { - "codePostal": "70110", - "codeCommune": "70420", - "libelleAcheminement": "PONT SUR L OGNON", - "nomCommune": "PONT SUR L OGNON" + "codePostal": "61700", + "codeCommune": "61145", + "libelleAcheminement": "DOMFRONT EN POIRAIE", + "nomCommune": "DOMFRONT EN POIRAIE" }, { - "codePostal": "45420", - "codeCommune": "45040", - "libelleAcheminement": "BONNY SUR LOIRE", - "nomCommune": "BONNY SUR LOIRE" + "codePostal": "62118", + "codeCommune": "62650", + "libelleAcheminement": "PELVES", + "nomCommune": "PELVES" }, { - "codePostal": "14770", - "codeCommune": "14027", - "libelleAcheminement": "LES MONTS D AUNAY", - "nomCommune": "LES MONTS D AUNAY" + "codePostal": "72600", + "codeCommune": "72086", + "libelleAcheminement": "COMMERVEIL", + "nomCommune": "COMMERVEIL" }, { - "codePostal": "69770", - "codeCommune": "69263", - "libelleAcheminement": "VILLECHENEVE", - "nomCommune": "VILLECHENEVE" + "codePostal": "21390", + "codeCommune": "21177", + "libelleAcheminement": "CLAMEREY", + "nomCommune": "CLAMEREY" }, { - "codePostal": "70100", - "codeCommune": "70422", - "libelleAcheminement": "POYANS", - "nomCommune": "POYANS" + "codePostal": "72230", + "codeCommune": "72146", + "libelleAcheminement": "GUECELARD", + "nomCommune": "GUECELARD" }, { - "codePostal": "45300", - "codeCommune": "45050", - "libelleAcheminement": "BOYNES", - "nomCommune": "BOYNES" + "codePostal": "61370", + "codeCommune": "61150", + "libelleAcheminement": "ECHAUFFOUR", + "nomCommune": "ECHAUFFOUR" }, { - "codePostal": "14280", - "codeCommune": "14030", - "libelleAcheminement": "AUTHIE", - "nomCommune": "AUTHIE" + "codePostal": "62130", + "codeCommune": "62655", + "libelleAcheminement": "PIERREMONT", + "nomCommune": "PIERREMONT" }, { - "codePostal": "69400", - "codeCommune": "69264", - "libelleAcheminement": "VILLEFRANCHE SUR SAONE", - "nomCommune": "VILLEFRANCHE SUR SAONE" + "codePostal": "72260", + "codeCommune": "72104", + "libelleAcheminement": "COURGAINS", + "nomCommune": "COURGAINS" }, { - "codePostal": "70000", - "codeCommune": "70428", - "libelleAcheminement": "PUSEY", - "nomCommune": "PUSEY" + "codePostal": "21230", + "codeCommune": "21181", + "libelleAcheminement": "CLOMOT", + "nomCommune": "CLOMOT" }, { - "codePostal": "45460", - "codeCommune": "45051", - "libelleAcheminement": "BRAY ST AIGNAN", - "nomCommune": "BRAY ST AIGNAN" + "codePostal": "72380", + "codeCommune": "72147", + "libelleAcheminement": "LA GUIERCHE", + "nomCommune": "LA GUIERCHE" }, { - "codePostal": "14490", - "codeCommune": "14035", - "libelleAcheminement": "BALLEROY SUR DROME", - "nomCommune": "BALLEROY SUR DROME" + "codePostal": "61150", + "codeCommune": "61153", + "libelleAcheminement": "ECOUCHE LES VALLEES", + "nomCommune": "ECOUCHE LES VALLEES" }, { - "codePostal": "69640", - "codeCommune": "69265", - "libelleAcheminement": "VILLE SUR JARNIOUX", - "nomCommune": "VILLE SUR JARNIOUX" + "codePostal": "62760", + "codeCommune": "62663", + "libelleAcheminement": "POMMERA", + "nomCommune": "POMMERA" }, { - "codePostal": "70190", - "codeCommune": "70447", - "libelleAcheminement": "RIOZ", - "nomCommune": "RIOZ" + "codePostal": "72320", + "codeCommune": "72105", + "libelleAcheminement": "COURGENARD", + "nomCommune": "COURGENARD" }, { - "codePostal": "45310", - "codeCommune": "45055", - "libelleAcheminement": "BRICY", - "nomCommune": "BRICY" + "codePostal": "21160", + "codeCommune": "21192", + "libelleAcheminement": "CORCELLES LES MONTS", + "nomCommune": "CORCELLES LES MONTS" }, { - "codePostal": "14220", - "codeCommune": "14039", - "libelleAcheminement": "BARBERY", - "nomCommune": "BARBERY" + "codePostal": "72380", + "codeCommune": "72150", + "libelleAcheminement": "JOUE L ABBE", + "nomCommune": "JOUE L ABBE" }, { - "codePostal": "69910", - "codeCommune": "69267", - "libelleAcheminement": "VILLIE MORGON", - "nomCommune": "VILLIE MORGON" + "codePostal": "61150", + "codeCommune": "61153", + "libelleAcheminement": "ECOUCHE LES VALLEES", + "nomCommune": "ECOUCHE LES VALLEES" }, { - "codePostal": "70000", - "codeCommune": "70452", - "libelleAcheminement": "ROSEY", - "nomCommune": "ROSEY" + "codePostal": "62111", + "codeCommune": "62664", + "libelleAcheminement": "POMMIER", + "nomCommune": "POMMIER" }, { - "codePostal": "45230", - "codeCommune": "45060", - "libelleAcheminement": "LA BUSSIERE", - "nomCommune": "LA BUSSIERE" + "codePostal": "72240", + "codeCommune": "72119", + "libelleAcheminement": "DOMFRONT EN CHAMPAGNE", + "nomCommune": "DOMFRONT EN CHAMPAGNE" }, { - "codePostal": "14210", - "codeCommune": "14042", - "libelleAcheminement": "BARON SUR ODON", - "nomCommune": "BARON SUR ODON" + "codePostal": "21250", + "codeCommune": "21193", + "libelleAcheminement": "CORGENGOUX", + "nomCommune": "CORGENGOUX" }, { - "codePostal": "69680", - "codeCommune": "69271", - "libelleAcheminement": "CHASSIEU", - "nomCommune": "CHASSIEU" + "codePostal": "72170", + "codeCommune": "72152", + "libelleAcheminement": "JUILLE", + "nomCommune": "JUILLE" }, { - "codePostal": "70130", - "codeCommune": "70463", - "libelleAcheminement": "ST GAND", - "nomCommune": "ST GAND" + "codePostal": "61200", + "codeCommune": "61153", + "libelleAcheminement": "ECOUCHE LES VALLEES", + "nomCommune": "ECOUCHE LES VALLEES" }, { - "codePostal": "45120", - "codeCommune": "45068", - "libelleAcheminement": "CHALETTE SUR LOING", - "nomCommune": "CHALETTE SUR LOING" + "codePostal": "62480", + "codeCommune": "62667", + "libelleAcheminement": "LE PORTEL", + "nomCommune": "LE PORTEL" }, { - "codePostal": "14860", - "codeCommune": "14046", - "libelleAcheminement": "BAVENT", - "nomCommune": "BAVENT" + "codePostal": "72160", + "codeCommune": "72122", + "libelleAcheminement": "DUNEAU", + "nomCommune": "DUNEAU" }, { - "codePostal": "69960", - "codeCommune": "69273", - "libelleAcheminement": "CORBAS", - "nomCommune": "CORBAS" + "codePostal": "21700", + "codeCommune": "21194", + "libelleAcheminement": "CORGOLOIN", + "nomCommune": "CORGOLOIN" }, { - "codePostal": "70100", - "codeCommune": "70466", - "libelleAcheminement": "ST LOUP NANTOUARD", - "nomCommune": "ST LOUP NANTOUARD" + "codePostal": "72540", + "codeCommune": "72166", + "libelleAcheminement": "LONGNES", + "nomCommune": "LONGNES" }, { - "codePostal": "45420", - "codeCommune": "45070", - "libelleAcheminement": "CHAMPOULET", - "nomCommune": "CHAMPOULET" + "codePostal": "61500", + "codeCommune": "61164", + "libelleAcheminement": "LA FERRIERE BECHET", + "nomCommune": "LA FERRIERE BECHET" }, { - "codePostal": "14620", - "codeCommune": "14053", - "libelleAcheminement": "BEAUMAIS", - "nomCommune": "BEAUMAIS" + "codePostal": "62860", + "codeCommune": "62673", + "libelleAcheminement": "QUEANT", + "nomCommune": "QUEANT" }, { - "codePostal": "69740", - "codeCommune": "69277", - "libelleAcheminement": "GENAS", - "nomCommune": "GENAS" + "codePostal": "72120", + "codeCommune": "72125", + "libelleAcheminement": "ECORPAIN", + "nomCommune": "ECORPAIN" }, { - "codePostal": "70400", - "codeCommune": "70477", - "libelleAcheminement": "SAULNOT", - "nomCommune": "SAULNOT" + "codePostal": "21340", + "codeCommune": "21195", + "libelleAcheminement": "CORMOT VAUCHIGNON", + "nomCommune": "CORMOT VAUCHIGNON" }, { - "codePostal": "45230", - "codeCommune": "45079", - "libelleAcheminement": "LE CHARME", - "nomCommune": "LE CHARME" + "codePostal": "72210", + "codeCommune": "72169", + "libelleAcheminement": "LOUPLANDE", + "nomCommune": "LOUPLANDE" }, { - "codePostal": "14910", - "codeCommune": "14059", - "libelleAcheminement": "BENERVILLE SUR MER", - "nomCommune": "BENERVILLE SUR MER" + "codePostal": "61470", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "69730", - "codeCommune": "69278", - "libelleAcheminement": "GENAY", - "nomCommune": "GENAY" + "codePostal": "62120", + "codeCommune": "62681", + "libelleAcheminement": "QUIESTEDE", + "nomCommune": "QUIESTEDE" }, { - "codePostal": "70130", - "codeCommune": "70481", - "libelleAcheminement": "SAVOYEUX", - "nomCommune": "SAVOYEUX" + "codePostal": "72550", + "codeCommune": "72130", + "libelleAcheminement": "FAY", + "nomCommune": "FAY" }, { - "codePostal": "45360", - "codeCommune": "45087", - "libelleAcheminement": "CHATILLON SUR LOIRE", - "nomCommune": "CHATILLON SUR LOIRE" + "codePostal": "21340", + "codeCommune": "21195", + "libelleAcheminement": "CORMOT VAUCHIGNON", + "nomCommune": "CORMOT VAUCHIGNON" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "72800", + "codeCommune": "72176", + "libelleAcheminement": "LE LUDE", + "nomCommune": "LE LUDE" }, { - "codePostal": "69330", - "codeCommune": "69279", - "libelleAcheminement": "JONAGE", - "nomCommune": "JONAGE" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "70360", - "codeCommune": "70482", - "libelleAcheminement": "SCEY SUR SAONE ET ST ALBIN", - "nomCommune": "SCEY SUR SAONE ET ST ALBIN" + "codePostal": "62650", + "codeCommune": "62682", + "libelleAcheminement": "QUILEN", + "nomCommune": "QUILEN" }, { - "codePostal": "45210", - "codeCommune": "45094", - "libelleAcheminement": "CHEVRY SOUS LE BIGNON", - "nomCommune": "CHEVRY SOUS LE BIGNON" + "codePostal": "72430", + "codeCommune": "72131", + "libelleAcheminement": "FERCE SUR SARTHE", + "nomCommune": "FERCE SUR SARTHE" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "21460", + "codeCommune": "21199", + "libelleAcheminement": "CORSAINT", + "nomCommune": "CORSAINT" }, { - "codePostal": "69330", - "codeCommune": "69282", - "libelleAcheminement": "MEYZIEU", - "nomCommune": "MEYZIEU" + "codePostal": "72120", + "codeCommune": "72190", + "libelleAcheminement": "MAROLLES LES ST CALAIS", + "nomCommune": "MAROLLES LES ST CALAIS" }, { - "codePostal": "70400", - "codeCommune": "70484", - "libelleAcheminement": "SECENANS", - "nomCommune": "SECENANS" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "45290", - "codeCommune": "45096", - "libelleAcheminement": "LES CHOUX", - "nomCommune": "LES CHOUX" + "codePostal": "62390", + "codeCommune": "62683", + "libelleAcheminement": "QUOEUX HAUT MAINIL", + "nomCommune": "QUOEUX HAUT MAINIL" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "72500", + "codeCommune": "72134", + "libelleAcheminement": "FLEE", + "nomCommune": "FLEE" }, { - "codePostal": "69360", - "codeCommune": "69295", - "libelleAcheminement": "SIMANDRES", - "nomCommune": "SIMANDRES" + "codePostal": "21520", + "codeCommune": "21202", + "libelleAcheminement": "COURBAN", + "nomCommune": "COURBAN" }, { - "codePostal": "70210", - "codeCommune": "70485", - "libelleAcheminement": "SELLES", - "nomCommune": "SELLES" + "codePostal": "72320", + "codeCommune": "72193", + "libelleAcheminement": "MELLERAY", + "nomCommune": "MELLERAY" }, { - "codePostal": "45220", - "codeCommune": "45097", - "libelleAcheminement": "CHUELLES", - "nomCommune": "CHUELLES" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "62310", + "codeCommune": "62685", + "libelleAcheminement": "RADINGHEM", + "nomCommune": "RADINGHEM" }, { - "codePostal": "69124", - "codeCommune": "69299", - "libelleAcheminement": "COLOMBIER SAUGNIEU", - "nomCommune": "COLOMBIER SAUGNIEU" + "codePostal": "72350", + "codeCommune": "72136", + "libelleAcheminement": "FONTENAY SUR VEGRE", + "nomCommune": "FONTENAY SUR VEGRE" }, { - "codePostal": "70500", - "codeCommune": "70496", - "libelleAcheminement": "TARTECOURT", - "nomCommune": "TARTECOURT" + "codePostal": "21500", + "codeCommune": "21204", + "libelleAcheminement": "COURCELLES LES MONTBARD", + "nomCommune": "COURCELLES LES MONTBARD" }, { - "codePostal": "45700", - "codeCommune": "45102", - "libelleAcheminement": "CONFLANS SUR LOING", - "nomCommune": "CONFLANS SUR LOING" + "codePostal": "72240", + "codeCommune": "72197", + "libelleAcheminement": "MEZIERES SOUS LAVARDIN", + "nomCommune": "MEZIERES SOUS LAVARDIN" }, { - "codePostal": "14440", - "codeCommune": "14062", - "libelleAcheminement": "BENY SUR MER", - "nomCommune": "BENY SUR MER" + "codePostal": "61310", + "codeCommune": "61190", + "libelleAcheminement": "GINAI", + "nomCommune": "GINAI" }, { - "codePostal": "69124", - "codeCommune": "69299", - "libelleAcheminement": "COLOMBIER SAUGNIEU", - "nomCommune": "COLOMBIER SAUGNIEU" + "codePostal": "62560", + "codeCommune": "62696", + "libelleAcheminement": "RECLINGHEM", + "nomCommune": "RECLINGHEM" }, { - "codePostal": "70190", - "codeCommune": "70507", - "libelleAcheminement": "TRESILLEY", - "nomCommune": "TRESILLEY" + "codePostal": "72600", + "codeCommune": "72137", + "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", + "nomCommune": "VILLENEUVE EN PERSEIGNE" }, { - "codePostal": "45490", - "codeCommune": "45103", - "libelleAcheminement": "CORBEILLES", - "nomCommune": "CORBEILLES" + "codePostal": "21560", + "codeCommune": "21209", + "libelleAcheminement": "COUTERNON", + "nomCommune": "COUTERNON" }, { - "codePostal": "14990", - "codeCommune": "14066", - "libelleAcheminement": "BERNIERES SUR MER", - "nomCommune": "BERNIERES SUR MER" + "codePostal": "72650", + "codeCommune": "72198", + "libelleAcheminement": "LA MILESSE", + "nomCommune": "LA MILESSE" }, { - "codePostal": "69125", - "codeCommune": "69299", - "libelleAcheminement": "COLOMBIER SAUGNIEU", - "nomCommune": "COLOMBIER SAUGNIEU" + "codePostal": "61150", + "codeCommune": "61194", + "libelleAcheminement": "MONTS SUR ORNE", + "nomCommune": "MONTS SUR ORNE" }, { - "codePostal": "70000", - "codeCommune": "70516", - "libelleAcheminement": "VALLEROIS LE BOIS", - "nomCommune": "VALLEROIS LE BOIS" + "codePostal": "62170", + "codeCommune": "62698", + "libelleAcheminement": "RECQUES SUR COURSE", + "nomCommune": "RECQUES SUR COURSE" }, { - "codePostal": "45720", - "codeCommune": "45108", - "libelleAcheminement": "COULLONS", - "nomCommune": "COULLONS" + "codePostal": "72390", + "codeCommune": "72158", + "libelleAcheminement": "LAVARE", + "nomCommune": "LAVARE" }, { - "codePostal": "14112", - "codeCommune": "14068", - "libelleAcheminement": "BIEVILLE BEUVILLE", - "nomCommune": "BIEVILLE BEUVILLE" + "codePostal": "21230", + "codeCommune": "21216", + "libelleAcheminement": "CULETRE", + "nomCommune": "CULETRE" }, { - "codePostal": "69002", - "codeCommune": "69382", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 02" + "codePostal": "72380", + "codeCommune": "72205", + "libelleAcheminement": "MONTBIZOT", + "nomCommune": "MONTBIZOT" }, { - "codePostal": "70160", - "codeCommune": "70518", - "libelleAcheminement": "LE VAL ST ELOI", - "nomCommune": "LE VAL ST ELOI" + "codePostal": "61130", + "codeCommune": "61196", + "libelleAcheminement": "BELFORET EN PERCHE", + "nomCommune": "BELFORET EN PERCHE" }, { - "codePostal": "45130", - "codeCommune": "45109", - "libelleAcheminement": "COULMIERS", - "nomCommune": "COULMIERS" + "codePostal": "62120", + "codeCommune": "62701", + "libelleAcheminement": "RELY", + "nomCommune": "RELY" }, { - "codePostal": "14130", - "codeCommune": "14085", - "libelleAcheminement": "BONNEVILLE LA LOUVET", - "nomCommune": "BONNEVILLE LA LOUVET" + "codePostal": "72540", + "codeCommune": "72168", + "libelleAcheminement": "LOUE", + "nomCommune": "LOUE" }, { - "codePostal": "69003", - "codeCommune": "69383", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 03" + "codePostal": "21220", + "codeCommune": "21219", + "libelleAcheminement": "CURTIL VERGY", + "nomCommune": "CURTIL VERGY" }, { - "codePostal": "70120", - "codeCommune": "70525", - "libelleAcheminement": "VAUCONCOURT NERVEZAIN", - "nomCommune": "VAUCONCOURT NERVEZAIN" + "codePostal": "72140", + "codeCommune": "72211", + "libelleAcheminement": "MONT ST JEAN", + "nomCommune": "MONT ST JEAN" }, { - "codePostal": "45190", - "codeCommune": "45116", - "libelleAcheminement": "CRAVANT", - "nomCommune": "CRAVANT" + "codePostal": "61360", + "codeCommune": "61196", + "libelleAcheminement": "BELFORET EN PERCHE", + "nomCommune": "BELFORET EN PERCHE" }, { - "codePostal": "14800", - "codeCommune": "14086", - "libelleAcheminement": "BONNEVILLE SUR TOUQUES", - "nomCommune": "BONNEVILLE SUR TOUQUES" + "codePostal": "62136", + "codeCommune": "62706", + "libelleAcheminement": "RICHEBOURG", + "nomCommune": "RICHEBOURG" }, { - "codePostal": "70000", - "codeCommune": "70019", - "libelleAcheminement": "ANDELARRE", - "nomCommune": "ANDELARRE" + "codePostal": "72600", + "codeCommune": "72170", + "libelleAcheminement": "LOUVIGNY", + "nomCommune": "LOUVIGNY" }, { - "codePostal": "70100", - "codeCommune": "70528", - "libelleAcheminement": "VELESMES ECHEVANNE", - "nomCommune": "VELESMES ECHEVANNE" + "codePostal": "21360", + "codeCommune": "21221", + "libelleAcheminement": "CUSSY LA COLONNE", + "nomCommune": "CUSSY LA COLONNE" }, { - "codePostal": "45170", - "codeCommune": "45118", - "libelleAcheminement": "CROTTES EN PITHIVERAIS", - "nomCommune": "CROTTES EN PITHIVERAIS" + "codePostal": "72600", + "codeCommune": "72215", + "libelleAcheminement": "NEUFCHATEL EN SAOSNOIS", + "nomCommune": "NEUFCHATEL EN SAOSNOIS" }, { - "codePostal": "14430", - "codeCommune": "14091", - "libelleAcheminement": "BOURGEAUVILLE", - "nomCommune": "BOURGEAUVILLE" + "codePostal": "61400", + "codeCommune": "61196", + "libelleAcheminement": "BELFORET EN PERCHE", + "nomCommune": "BELFORET EN PERCHE" }, { - "codePostal": "70120", - "codeCommune": "70025", - "libelleAcheminement": "ARBECEY", - "nomCommune": "ARBECEY" + "codePostal": "62182", + "codeCommune": "62709", + "libelleAcheminement": "RIENCOURT LES CAGNICOURT", + "nomCommune": "RIENCOURT LES CAGNICOURT" }, { - "codePostal": "70100", - "codeCommune": "70529", - "libelleAcheminement": "VELET", - "nomCommune": "VELET" + "codePostal": "72210", + "codeCommune": "72177", + "libelleAcheminement": "MAIGNE", + "nomCommune": "MAIGNE" }, { - "codePostal": "45570", - "codeCommune": "45122", - "libelleAcheminement": "DAMPIERRE EN BURLY", - "nomCommune": "DAMPIERRE EN BURLY" + "codePostal": "21190", + "codeCommune": "21236", + "libelleAcheminement": "EBATY", + "nomCommune": "EBATY" }, { - "codePostal": "14210", - "codeCommune": "14098", - "libelleAcheminement": "THUE ET MUE", - "nomCommune": "THUE ET MUE" + "codePostal": "72190", + "codeCommune": "72217", + "libelleAcheminement": "NEUVILLE SUR SARTHE", + "nomCommune": "NEUVILLE SUR SARTHE" }, { - "codePostal": "70600", - "codeCommune": "70027", - "libelleAcheminement": "ARGILLIERES", - "nomCommune": "ARGILLIERES" + "codePostal": "61250", + "codeCommune": "61202", + "libelleAcheminement": "HAUTERIVE", + "nomCommune": "HAUTERIVE" }, { - "codePostal": "70110", - "codeCommune": "70530", - "libelleAcheminement": "VELLECHEVREUX ET COURBENANS", - "nomCommune": "VELLECHEVREUX ET COURBENANS" + "codePostal": "62118", + "codeCommune": "62718", + "libelleAcheminement": "ROEUX", + "nomCommune": "ROEUX" }, { - "codePostal": "45390", - "codeCommune": "45125", - "libelleAcheminement": "DIMANCHEVILLE", - "nomCommune": "DIMANCHEVILLE" + "codePostal": "72440", + "codeCommune": "72178", + "libelleAcheminement": "MAISONCELLES", + "nomCommune": "MAISONCELLES" }, { - "codePostal": "14740", - "codeCommune": "14098", - "libelleAcheminement": "THUE ET MUE", - "nomCommune": "THUE ET MUE" + "codePostal": "21540", + "codeCommune": "21238", + "libelleAcheminement": "ECHANNAY", + "nomCommune": "ECHANNAY" }, { - "codePostal": "70200", - "codeCommune": "70029", - "libelleAcheminement": "ARPENANS", - "nomCommune": "ARPENANS" + "codePostal": "72170", + "codeCommune": "72235", + "libelleAcheminement": "PIACE", + "nomCommune": "PIACE" }, { - "codePostal": "70700", - "codeCommune": "70533", - "libelleAcheminement": "VELLEFREY ET VELLEFRANGE", - "nomCommune": "VELLEFREY ET VELLEFRANGE" + "codePostal": "61290", + "codeCommune": "61206", + "libelleAcheminement": "L HOME CHAMONDOT", + "nomCommune": "L HOME CHAMONDOT" }, { - "codePostal": "45320", - "codeCommune": "45136", - "libelleAcheminement": "ERVAUVILLE", - "nomCommune": "ERVAUVILLE" + "codePostal": "62770", + "codeCommune": "62719", + "libelleAcheminement": "ROLLANCOURT", + "nomCommune": "ROLLANCOURT" }, { - "codePostal": "14680", - "codeCommune": "14100", - "libelleAcheminement": "BRETTEVILLE SUR LAIZE", - "nomCommune": "BRETTEVILLE SUR LAIZE" + "codePostal": "72600", + "codeCommune": "72180", + "libelleAcheminement": "MAMERS", + "nomCommune": "MAMERS" }, { - "codePostal": "70190", - "codeCommune": "70036", - "libelleAcheminement": "AULX LES CROMARY", - "nomCommune": "AULX LES CROMARY" + "codePostal": "21170", + "codeCommune": "21249", + "libelleAcheminement": "ESBARRES", + "nomCommune": "ESBARRES" }, { - "codePostal": "70000", - "codeCommune": "70536", - "libelleAcheminement": "VELLE LE CHATEL", - "nomCommune": "VELLE LE CHATEL" + "codePostal": "72510", + "codeCommune": "72243", + "libelleAcheminement": "PONTVALLAIN", + "nomCommune": "PONTVALLAIN" }, { - "codePostal": "45250", - "codeCommune": "45138", - "libelleAcheminement": "ESCRIGNELLES", - "nomCommune": "ESCRIGNELLES" + "codePostal": "61130", + "codeCommune": "61207", + "libelleAcheminement": "IGE", + "nomCommune": "IGE" }, { - "codePostal": "14490", - "codeCommune": "14140", - "libelleAcheminement": "CASTILLON", - "nomCommune": "CASTILLON" + "codePostal": "62320", + "codeCommune": "62724", + "libelleAcheminement": "ROUVROY", + "nomCommune": "ROUVROY" }, { - "codePostal": "70180", - "codeCommune": "70037", - "libelleAcheminement": "AUTET", - "nomCommune": "AUTET" + "codePostal": "72000", + "codeCommune": "72181", + "libelleAcheminement": "LE MANS", + "nomCommune": "LE MANS" }, { - "codePostal": "70700", - "codeCommune": "70540", - "libelleAcheminement": "VELLOREILLE LES CHOYE", - "nomCommune": "VELLOREILLE LES CHOYE" + "codePostal": "21121", + "codeCommune": "21255", + "libelleAcheminement": "ETAULES", + "nomCommune": "ETAULES" }, { - "codePostal": "45300", - "codeCommune": "45139", - "libelleAcheminement": "ESTOUY", - "nomCommune": "ESTOUY" + "codePostal": "72120", + "codeCommune": "72250", + "libelleAcheminement": "RAHAY", + "nomCommune": "RAHAY" }, { - "codePostal": "14220", - "codeCommune": "14150", - "libelleAcheminement": "CESNY LES SOURCES", - "nomCommune": "CESNY LES SOURCES" + "codePostal": "61140", + "codeCommune": "61211", + "libelleAcheminement": "JUVIGNY VAL D ANDAINE", + "nomCommune": "JUVIGNY VAL D ANDAINE" }, { - "codePostal": "70190", - "codeCommune": "70038", - "libelleAcheminement": "AUTHOISON", - "nomCommune": "AUTHOISON" + "codePostal": "62860", + "codeCommune": "62728", + "libelleAcheminement": "RUMAUCOURT", + "nomCommune": "RUMAUCOURT" }, { - "codePostal": "70110", - "codeCommune": "70552", - "libelleAcheminement": "VILLAFANS", - "nomCommune": "VILLAFANS" + "codePostal": "72170", + "codeCommune": "72186", + "libelleAcheminement": "MARESCHE", + "nomCommune": "MARESCHE" }, { - "codePostal": "45450", - "codeCommune": "45142", - "libelleAcheminement": "FAY AUX LOGES", - "nomCommune": "FAY AUX LOGES" + "codePostal": "21450", + "codeCommune": "21257", + "libelleAcheminement": "ETORMAY", + "nomCommune": "ETORMAY" }, { - "codePostal": "14220", - "codeCommune": "14150", - "libelleAcheminement": "CESNY LES SOURCES", - "nomCommune": "CESNY LES SOURCES" + "codePostal": "72230", + "codeCommune": "72260", + "libelleAcheminement": "RUAUDIN", + "nomCommune": "RUAUDIN" }, { - "codePostal": "70110", - "codeCommune": "70040", - "libelleAcheminement": "AUTREY LES CERRE", - "nomCommune": "AUTREY LES CERRE" + "codePostal": "61140", + "codeCommune": "61211", + "libelleAcheminement": "JUVIGNY VAL D ANDAINE", + "nomCommune": "JUVIGNY VAL D ANDAINE" }, { - "codePostal": "70110", - "codeCommune": "70553", - "libelleAcheminement": "VILLARGENT", - "nomCommune": "VILLARGENT" + "codePostal": "62370", + "codeCommune": "62730", + "libelleAcheminement": "RUMINGHEM", + "nomCommune": "RUMINGHEM" }, { - "codePostal": "45340", - "codeCommune": "45151", - "libelleAcheminement": "GAUBERTIN", - "nomCommune": "GAUBERTIN" + "codePostal": "72600", + "codeCommune": "72188", + "libelleAcheminement": "MAROLLETTE", + "nomCommune": "MAROLLETTE" }, { - "codePostal": "14370", - "codeCommune": "14163", - "libelleAcheminement": "CLEVILLE", - "nomCommune": "CLEVILLE" + "codePostal": "21110", + "codeCommune": "21261", + "libelleAcheminement": "FAUVERNEY", + "nomCommune": "FAUVERNEY" }, { - "codePostal": "70110", - "codeCommune": "70042", - "libelleAcheminement": "AUTREY LE VAY", - "nomCommune": "AUTREY LE VAY" + "codePostal": "72300", + "codeCommune": "72264", + "libelleAcheminement": "SABLE SUR SARTHE", + "nomCommune": "SABLE SUR SARTHE" }, { - "codePostal": "70240", - "codeCommune": "70558", - "libelleAcheminement": "LA VILLENEUVE BELLENOYE LA MAIZE", - "nomCommune": "LA VILLENEUVE BELLENOYE LA MAIZE" + "codePostal": "61330", + "codeCommune": "61211", + "libelleAcheminement": "JUVIGNY VAL D ANDAINE", + "nomCommune": "JUVIGNY VAL D ANDAINE" }, { - "codePostal": "45110", - "codeCommune": "45153", - "libelleAcheminement": "GERMIGNY DES PRES", - "nomCommune": "GERMIGNY DES PRES" + "codePostal": "62113", + "codeCommune": "62735", + "libelleAcheminement": "SAILLY LABOURSE", + "nomCommune": "SAILLY LABOURSE" }, { - "codePostal": "14710", - "codeCommune": "14168", - "libelleAcheminement": "COLOMBIERES", - "nomCommune": "COLOMBIERES" + "codePostal": "72170", + "codeCommune": "72199", + "libelleAcheminement": "MOITRON SUR SARTHE", + "nomCommune": "MOITRON SUR SARTHE" }, { - "codePostal": "70000", - "codeCommune": "70044", - "libelleAcheminement": "AUXON", - "nomCommune": "AUXON" + "codePostal": "21220", + "codeCommune": "21265", + "libelleAcheminement": "FIXIN", + "nomCommune": "FIXIN" }, { - "codePostal": "70190", - "codeCommune": "70560", - "libelleAcheminement": "VILLERS BOUTON", - "nomCommune": "VILLERS BOUTON" + "codePostal": "72220", + "codeCommune": "72268", + "libelleAcheminement": "ST BIEZ EN BELIN", + "nomCommune": "ST BIEZ EN BELIN" }, { - "codePostal": "45300", - "codeCommune": "45162", - "libelleAcheminement": "GUIGNEVILLE", - "nomCommune": "GUIGNEVILLE" + "codePostal": "61240", + "codeCommune": "61225", + "libelleAcheminement": "LIGNERES", + "nomCommune": "LIGNERES" }, { - "codePostal": "14480", - "codeCommune": "14169", - "libelleAcheminement": "COLOMBIERS SUR SEULLES", - "nomCommune": "COLOMBIERS SUR SEULLES" + "codePostal": "62760", + "codeCommune": "62741", + "libelleAcheminement": "ST AMAND", + "nomCommune": "ST AMAND" }, { - "codePostal": "70000", - "codeCommune": "70047", - "libelleAcheminement": "BAIGNES", - "nomCommune": "BAIGNES" + "codePostal": "72260", + "codeCommune": "72202", + "libelleAcheminement": "MONHOUDOU", + "nomCommune": "MONHOUDOU" }, { - "codePostal": "70110", - "codeCommune": "70562", - "libelleAcheminement": "VILLERS LA VILLE", - "nomCommune": "VILLERS LA VILLE" + "codePostal": "21160", + "codeCommune": "21270", + "libelleAcheminement": "FLAVIGNEROT", + "nomCommune": "FLAVIGNEROT" }, { - "codePostal": "45600", - "codeCommune": "45164", - "libelleAcheminement": "GUILLY", - "nomCommune": "GUILLY" + "codePostal": "72350", + "codeCommune": "72278", + "libelleAcheminement": "ST DENIS D ORQUES", + "nomCommune": "ST DENIS D ORQUES" }, { - "codePostal": "14220", - "codeCommune": "14171", - "libelleAcheminement": "COMBRAY", - "nomCommune": "COMBRAY" + "codePostal": "61220", + "codeCommune": "61227", + "libelleAcheminement": "LIGNOU", + "nomCommune": "LIGNOU" }, { - "codePostal": "70800", - "codeCommune": "70052", - "libelleAcheminement": "BASSIGNEY", - "nomCommune": "BASSIGNEY" + "codePostal": "62223", + "codeCommune": "62744", + "libelleAcheminement": "STE CATHERINE", + "nomCommune": "STE CATHERINE" }, { - "codePostal": "70000", - "codeCommune": "70563", - "libelleAcheminement": "VILLERS LE SEC", - "nomCommune": "VILLERS LE SEC" + "codePostal": "72260", + "codeCommune": "72214", + "libelleAcheminement": "NAUVAY", + "nomCommune": "NAUVAY" }, { - "codePostal": "45300", - "codeCommune": "45170", - "libelleAcheminement": "INTVILLE LA GUETARD", - "nomCommune": "INTVILLE LA GUETARD" + "codePostal": "21330", + "codeCommune": "21279", + "libelleAcheminement": "FONTAINES LES SECHES", + "nomCommune": "FONTAINES LES SECHES" }, { - "codePostal": "14270", - "codeCommune": "14173", - "libelleAcheminement": "CONDE SUR IFS", - "nomCommune": "CONDE SUR IFS" + "codePostal": "72110", + "codeCommune": "72281", + "libelleAcheminement": "ST GEORGES DU ROSAY", + "nomCommune": "ST GEORGES DU ROSAY" }, { - "codePostal": "70300", - "codeCommune": "70055", - "libelleAcheminement": "BAUDONCOURT", - "nomCommune": "BAUDONCOURT" + "codePostal": "61320", + "codeCommune": "61228", + "libelleAcheminement": "L OREE D ECOUVES", + "nomCommune": "L OREE D ECOUVES" }, { - "codePostal": "70170", - "codeCommune": "70566", - "libelleAcheminement": "VILLERS SUR PORT", - "nomCommune": "VILLERS SUR PORT" + "codePostal": "62360", + "codeCommune": "62746", + "libelleAcheminement": "PONT DE BRIQUES ST ETIENNE", + "nomCommune": "ST ETIENNE AU MONT" }, { - "codePostal": "45740", - "codeCommune": "45179", - "libelleAcheminement": "LAILLY EN VAL", - "nomCommune": "LAILLY EN VAL" + "codePostal": "72240", + "codeCommune": "72219", + "libelleAcheminement": "BERNAY NEUVY EN CHAMPAGNE", + "nomCommune": "BERNAY NEUVY EN CHAMPAGNE" }, { - "codePostal": "14400", - "codeCommune": "14175", - "libelleAcheminement": "CONDE SUR SEULLES", - "nomCommune": "CONDE SUR SEULLES" + "codePostal": "21460", + "codeCommune": "21282", + "libelleAcheminement": "FORLEANS", + "nomCommune": "FORLEANS" }, { - "codePostal": "70100", - "codeCommune": "70058", - "libelleAcheminement": "BEAUJEU ET QUITTEUR", - "nomCommune": "BEAUJEU ST VALLIER PIERREJUX QUITTEUR" + "codePostal": "72220", + "codeCommune": "72287", + "libelleAcheminement": "ST GERVAIS EN BELIN", + "nomCommune": "ST GERVAIS EN BELIN" }, { - "codePostal": "70500", - "codeCommune": "70572", - "libelleAcheminement": "VITREY SUR MANCE", - "nomCommune": "VITREY SUR MANCE" + "codePostal": "61320", + "codeCommune": "61228", + "libelleAcheminement": "L OREE D ECOUVES", + "nomCommune": "L OREE D ECOUVES" }, { - "codePostal": "45490", - "codeCommune": "45186", - "libelleAcheminement": "LORCY", - "nomCommune": "LORCY" + "codePostal": "62370", + "codeCommune": "62748", + "libelleAcheminement": "ST FOLQUIN", + "nomCommune": "ST FOLQUIN" }, { - "codePostal": "14170", - "codeCommune": "14190", - "libelleAcheminement": "COURCY", - "nomCommune": "COURCY" + "codePostal": "72370", + "codeCommune": "72224", + "libelleAcheminement": "NUILLE LE JALAIS", + "nomCommune": "NUILLE LE JALAIS" }, { - "codePostal": "70310", - "codeCommune": "70071", - "libelleAcheminement": "BEULOTTE ST LAURENT", - "nomCommune": "BEULOTTE ST LAURENT" + "codePostal": "21500", + "codeCommune": "21287", + "libelleAcheminement": "FRESNES", + "nomCommune": "FRESNES" }, { - "codePostal": "70150", - "codeCommune": "70578", - "libelleAcheminement": "VREGILLE", - "nomCommune": "VREGILLE" + "codePostal": "72510", + "codeCommune": "72291", + "libelleAcheminement": "ST JEAN DE LA MOTTE", + "nomCommune": "ST JEAN DE LA MOTTE" }, { - "codePostal": "45260", - "codeCommune": "45187", - "libelleAcheminement": "LORRIS", - "nomCommune": "LORRIS" + "codePostal": "61420", + "codeCommune": "61228", + "libelleAcheminement": "L OREE D ECOUVES", + "nomCommune": "L OREE D ECOUVES" }, { - "codePostal": "14100", - "codeCommune": "14193", - "libelleAcheminement": "COURTONNE LA MEURDRAC", - "nomCommune": "COURTONNE LA MEURDRAC" + "codePostal": "62370", + "codeCommune": "62756", + "libelleAcheminement": "STE MARIE KERQUE", + "nomCommune": "STE MARIE KERQUE" }, { - "codePostal": "70110", - "codeCommune": "70072", - "libelleAcheminement": "BEVEUGE", - "nomCommune": "BEVEUGE" + "codePostal": "72300", + "codeCommune": "72232", + "libelleAcheminement": "NOTRE DAME DU PE", + "nomCommune": "NOTRE DAME DU PE" }, { - "codePostal": "70400", - "codeCommune": "70579", - "libelleAcheminement": "VYANS LE VAL", - "nomCommune": "VYANS LE VAL" + "codePostal": "21700", + "codeCommune": "21294", + "libelleAcheminement": "GERLAND", + "nomCommune": "GERLAND" }, { - "codePostal": "45470", - "codeCommune": "45188", - "libelleAcheminement": "LOURY", - "nomCommune": "LOURY" + "codePostal": "72430", + "codeCommune": "72293", + "libelleAcheminement": "ST JEAN DU BOIS", + "nomCommune": "ST JEAN DU BOIS" }, { - "codePostal": "14290", - "codeCommune": "14194", - "libelleAcheminement": "COURTONNE LES DEUX EGLISES", - "nomCommune": "COURTONNE LES DEUX EGLISES" + "codePostal": "61420", + "codeCommune": "61228", + "libelleAcheminement": "L OREE D ECOUVES", + "nomCommune": "L OREE D ECOUVES" }, { - "codePostal": "70110", - "codeCommune": "70077", - "libelleAcheminement": "BOREY", - "nomCommune": "BOREY" + "codePostal": "62500", + "codeCommune": "62757", + "libelleAcheminement": "ST MARTIN LEZ TATINGHEM", + "nomCommune": "ST MARTIN LEZ TATINGHEM" }, { - "codePostal": "71370", - "codeCommune": "71002", - "libelleAcheminement": "L ABERGEMENT STE COLOMBE", - "nomCommune": "L ABERGEMENT STE COLOMBE" + "codePostal": "72430", + "codeCommune": "72237", + "libelleAcheminement": "PIRMIL", + "nomCommune": "PIRMIL" }, { - "codePostal": "45330", - "codeCommune": "45191", - "libelleAcheminement": "LE MALESHERBOIS", - "nomCommune": "LE MALESHERBOIS" + "codePostal": "21520", + "codeCommune": "21303", + "libelleAcheminement": "LES GOULLES", + "nomCommune": "LES GOULLES" }, { - "codePostal": "14480", - "codeCommune": "14196", - "libelleAcheminement": "CREPON", - "nomCommune": "CREPON" + "codePostal": "72130", + "codeCommune": "72294", + "libelleAcheminement": "ST LEONARD DES BOIS", + "nomCommune": "ST LEONARD DES BOIS" }, { - "codePostal": "70500", - "codeCommune": "70078", - "libelleAcheminement": "BOUGEY", - "nomCommune": "BOUGEY" + "codePostal": "61290", + "codeCommune": "61230", + "libelleAcheminement": "LONGNY LES VILLAGES", + "nomCommune": "LONGNY LES VILLAGES" }, { - "codePostal": "71400", - "codeCommune": "71014", - "libelleAcheminement": "AUTUN", - "nomCommune": "AUTUN" + "codePostal": "62500", + "codeCommune": "62757", + "libelleAcheminement": "ST MARTIN LEZ TATINGHEM", + "nomCommune": "ST MARTIN LEZ TATINGHEM" }, { - "codePostal": "45760", - "codeCommune": "45197", - "libelleAcheminement": "MARIGNY LES USAGES", - "nomCommune": "MARIGNY LES USAGES" + "codePostal": "72300", + "codeCommune": "72244", + "libelleAcheminement": "PRECIGNE", + "nomCommune": "PRECIGNE" }, { - "codePostal": "14480", - "codeCommune": "14200", - "libelleAcheminement": "CREULLY SUR SEULLES", - "nomCommune": "CREULLY SUR SEULLES" + "codePostal": "21290", + "codeCommune": "21312", + "libelleAcheminement": "GURGY LA VILLE", + "nomCommune": "GURGY LA VILLE" }, { - "codePostal": "70170", - "codeCommune": "70079", - "libelleAcheminement": "BOUGNON", - "nomCommune": "BOUGNON" + "codePostal": "72320", + "codeCommune": "72296", + "libelleAcheminement": "ST MAIXENT", + "nomCommune": "ST MAIXENT" }, { - "codePostal": "71400", - "codeCommune": "71015", - "libelleAcheminement": "AUXY", - "nomCommune": "AUXY" + "codePostal": "61700", + "codeCommune": "61232", + "libelleAcheminement": "LONLAY L ABBAYE", + "nomCommune": "LONLAY L ABBAYE" }, { - "codePostal": "45300", - "codeCommune": "45198", - "libelleAcheminement": "MARSAINVILLIERS", - "nomCommune": "MARSAINVILLIERS" + "codePostal": "62500", + "codeCommune": "62772", + "libelleAcheminement": "SALPERWICK", + "nomCommune": "SALPERWICK" }, { - "codePostal": "14840", - "codeCommune": "14221", - "libelleAcheminement": "DEMOUVILLE", - "nomCommune": "DEMOUVILLE" + "codePostal": "72700", + "codeCommune": "72247", + "libelleAcheminement": "PRUILLE LE CHETIF", + "nomCommune": "PRUILLE LE CHETIF" }, { - "codePostal": "70200", - "codeCommune": "70081", - "libelleAcheminement": "BOUHANS LES LURE", - "nomCommune": "BOUHANS LES LURE" + "codePostal": "21150", + "codeCommune": "21314", + "libelleAcheminement": "HAUTEROCHE", + "nomCommune": "HAUTEROCHE" }, { - "codePostal": "71540", - "codeCommune": "71020", - "libelleAcheminement": "BARNAY", - "nomCommune": "BARNAY" + "codePostal": "72440", + "codeCommune": "72303", + "libelleAcheminement": "ST MICHEL DE CHAVAIGNES", + "nomCommune": "ST MICHEL DE CHAVAIGNES" }, { - "codePostal": "45490", - "codeCommune": "45206", - "libelleAcheminement": "MIGNERES", - "nomCommune": "MIGNERES" + "codePostal": "61230", + "codeCommune": "61252", + "libelleAcheminement": "MARDILLY", + "nomCommune": "MARDILLY" }, { - "codePostal": "14230", - "codeCommune": "14224", - "libelleAcheminement": "DEUX JUMEAUX", - "nomCommune": "DEUX JUMEAUX" + "codePostal": "62850", + "codeCommune": "62775", + "libelleAcheminement": "SANGHEN", + "nomCommune": "SANGHEN" }, { - "codePostal": "70800", - "codeCommune": "70083", - "libelleAcheminement": "BOULIGNEY", - "nomCommune": "BOULIGNEY" + "codePostal": "72610", + "codeCommune": "72254", + "libelleAcheminement": "ROUESSE FONTAINE", + "nomCommune": "ROUESSE FONTAINE" }, { - "codePostal": "71800", - "codeCommune": "71022", - "libelleAcheminement": "BAUDEMONT", - "nomCommune": "BAUDEMONT" + "codePostal": "21120", + "codeCommune": "21317", + "libelleAcheminement": "IS SUR TILLE", + "nomCommune": "IS SUR TILLE" }, { - "codePostal": "45490", - "codeCommune": "45207", - "libelleAcheminement": "MIGNERETTE", - "nomCommune": "MIGNERETTE" + "codePostal": "72190", + "codeCommune": "72310", + "libelleAcheminement": "ST PAVACE", + "nomCommune": "ST PAVACE" }, { - "codePostal": "14430", - "codeCommune": "14227", - "libelleAcheminement": "DOUVILLE EN AUGE", - "nomCommune": "DOUVILLE EN AUGE" + "codePostal": "61270", + "codeCommune": "61259", + "libelleAcheminement": "LE MENIL BERARD", + "nomCommune": "LE MENIL BERARD" }, { - "codePostal": "70500", - "codeCommune": "70086", - "libelleAcheminement": "BOURBEVELLE", - "nomCommune": "BOURBEVELLE" + "codePostal": "62121", + "codeCommune": "62776", + "libelleAcheminement": "SAPIGNIES", + "nomCommune": "SAPIGNIES" }, { - "codePostal": "71250", - "codeCommune": "71030", - "libelleAcheminement": "BERGESSERIN", - "nomCommune": "BERGESSERIN" + "codePostal": "72140", + "codeCommune": "72256", + "libelleAcheminement": "ROUEZ", + "nomCommune": "ROUEZ" }, { - "codePostal": "45270", - "codeCommune": "45223", - "libelleAcheminement": "NESPLOY", - "nomCommune": "NESPLOY" + "codePostal": "21110", + "codeCommune": "21320", + "libelleAcheminement": "IZIER", + "nomCommune": "IZIER" }, { - "codePostal": "14630", - "codeCommune": "14237", - "libelleAcheminement": "EMIEVILLE", - "nomCommune": "EMIEVILLE" + "codePostal": "72430", + "codeCommune": "72312", + "libelleAcheminement": "ST PIERRE DES BOIS", + "nomCommune": "ST PIERRE DES BOIS" }, { - "codePostal": "70800", - "codeCommune": "70087", - "libelleAcheminement": "BOURGUIGNON LES CONFLANS", - "nomCommune": "BOURGUIGNON LES CONFLANS" + "codePostal": "61240", + "codeCommune": "61264", + "libelleAcheminement": "MENIL FROGER", + "nomCommune": "MENIL FROGER" }, { - "codePostal": "71250", - "codeCommune": "71030", - "libelleAcheminement": "BERGESSERIN", - "nomCommune": "BERGESSERIN" + "codePostal": "62810", + "codeCommune": "62778", + "libelleAcheminement": "SARS LE BOIS", + "nomCommune": "SARS LE BOIS" }, { - "codePostal": "45170", - "codeCommune": "45224", - "libelleAcheminement": "NEUVILLE AUX BOIS", - "nomCommune": "NEUVILLE AUX BOIS" + "codePostal": "72310", + "codeCommune": "72262", + "libelleAcheminement": "LOIR EN VALLEE", + "nomCommune": "LOIR EN VALLEE" }, { - "codePostal": "14800", - "codeCommune": "14238", - "libelleAcheminement": "ENGLESQUEVILLE EN AUGE", - "nomCommune": "ENGLESQUEVILLE EN AUGE" + "codePostal": "21340", + "codeCommune": "21327", + "libelleAcheminement": "VAL MONT", + "nomCommune": "VAL MONT" }, { - "codePostal": "70120", - "codeCommune": "70089", - "libelleAcheminement": "BOURGUIGNON LES MOREY", - "nomCommune": "BOURGUIGNON LES MOREY" + "codePostal": "72380", + "codeCommune": "72319", + "libelleAcheminement": "STE SABINE SUR LONGEVE", + "nomCommune": "STE SABINE SUR LONGEVE" }, { - "codePostal": "71960", - "codeCommune": "71031", - "libelleAcheminement": "BERZE LE CHATEL", - "nomCommune": "BERZE LE CHATEL" + "codePostal": "61170", + "codeCommune": "61266", + "libelleAcheminement": "LE MENIL GUYON", + "nomCommune": "LE MENIL GUYON" }, { - "codePostal": "45290", - "codeCommune": "45229", - "libelleAcheminement": "NOGENT SUR VERNISSON", - "nomCommune": "NOGENT SUR VERNISSON" + "codePostal": "62240", + "codeCommune": "62786", + "libelleAcheminement": "SELLES", + "nomCommune": "SELLES" }, { - "codePostal": "14310", - "codeCommune": "14241", - "libelleAcheminement": "EPINAY SUR ODON", - "nomCommune": "EPINAY SUR ODON" + "codePostal": "72110", + "codeCommune": "72265", + "libelleAcheminement": "ST AIGNAN", + "nomCommune": "ST AIGNAN" }, { - "codePostal": "70500", - "codeCommune": "70091", - "libelleAcheminement": "BOUSSERAUCOURT", - "nomCommune": "BOUSSERAUCOURT" + "codePostal": "21140", + "codeCommune": "21329", + "libelleAcheminement": "JUILLY", + "nomCommune": "JUILLY" }, { - "codePostal": "71620", - "codeCommune": "71033", - "libelleAcheminement": "BEY", - "nomCommune": "BEY" + "codePostal": "72130", + "codeCommune": "72323", + "libelleAcheminement": "ST VICTEUR", + "nomCommune": "ST VICTEUR" }, { - "codePostal": "45160", - "codeCommune": "45232", - "libelleAcheminement": "OLIVET", - "nomCommune": "OLIVET" + "codePostal": "61210", + "codeCommune": "61267", + "libelleAcheminement": "MENIL HERMEI", + "nomCommune": "MENIL HERMEI" }, { - "codePostal": "14700", - "codeCommune": "14244", - "libelleAcheminement": "ERAINES", - "nomCommune": "ERAINES" + "codePostal": "62270", + "codeCommune": "62795", + "libelleAcheminement": "SIBIVILLE", + "nomCommune": "SIBIVILLE" }, { - "codePostal": "70800", - "codeCommune": "70097", - "libelleAcheminement": "BRIAUCOURT", - "nomCommune": "BRIAUCOURT" + "codePostal": "72400", + "codeCommune": "72267", + "libelleAcheminement": "ST AUBIN DES COUDRAIS", + "nomCommune": "ST AUBIN DES COUDRAIS" }, { - "codePostal": "71710", - "codeCommune": "71038", - "libelleAcheminement": "LES BIZOTS", - "nomCommune": "LES BIZOTS" + "codePostal": "21230", + "codeCommune": "21334", + "libelleAcheminement": "LACANCHE", + "nomCommune": "LACANCHE" }, { - "codePostal": "45000", - "codeCommune": "45234", - "libelleAcheminement": "ORLEANS", - "nomCommune": "ORLEANS" + "codePostal": "72170", + "codeCommune": "72332", + "libelleAcheminement": "SEGRIE", + "nomCommune": "SEGRIE" }, { - "codePostal": "14220", - "codeCommune": "14251", - "libelleAcheminement": "ESSON", - "nomCommune": "ESSON" + "codePostal": "61430", + "codeCommune": "61269", + "libelleAcheminement": "MENIL HUBERT SUR ORNE", + "nomCommune": "MENIL HUBERT SUR ORNE" }, { - "codePostal": "70140", - "codeCommune": "70101", - "libelleAcheminement": "BROYE AUBIGNEY MONTSEUGNY", - "nomCommune": "BROYE AUBIGNEY MONTSEUGNY" + "codePostal": "62130", + "codeCommune": "62797", + "libelleAcheminement": "SIRACOURT", + "nomCommune": "SIRACOURT" }, { - "codePostal": "71800", - "codeCommune": "71041", - "libelleAcheminement": "BOIS STE MARIE", - "nomCommune": "BOIS STE MARIE" + "codePostal": "72120", + "codeCommune": "72269", + "libelleAcheminement": "ST CALAIS", + "nomCommune": "ST CALAIS" }, { - "codePostal": "45100", - "codeCommune": "45234", - "libelleAcheminement": "ORLEANS", - "nomCommune": "ORLEANS" + "codePostal": "21110", + "codeCommune": "21351", + "libelleAcheminement": "LONGCHAMP", + "nomCommune": "LONGCHAMP" }, { - "codePostal": "14700", - "codeCommune": "14258", - "libelleAcheminement": "FALAISE", - "nomCommune": "FALAISE" + "codePostal": "72390", + "codeCommune": "72333", + "libelleAcheminement": "SEMUR EN VALLON", + "nomCommune": "SEMUR EN VALLON" }, { - "codePostal": "70500", - "codeCommune": "70114", - "libelleAcheminement": "CENDRECOURT", - "nomCommune": "CENDRECOURT" + "codePostal": "61240", + "codeCommune": "61275", + "libelleAcheminement": "LE MERLERAULT", + "nomCommune": "LE MERLERAULT" }, { - "codePostal": "71520", - "codeCommune": "71050", - "libelleAcheminement": "BOURGVILAIN", - "nomCommune": "BOURGVILAIN" + "codePostal": "62111", + "codeCommune": "62800", + "libelleAcheminement": "SOUASTRE", + "nomCommune": "SOUASTRE" }, { - "codePostal": "45250", - "codeCommune": "45238", - "libelleAcheminement": "OUSSON SUR LOIRE", - "nomCommune": "OUSSON SUR LOIRE" + "codePostal": "72600", + "codeCommune": "72270", + "libelleAcheminement": "ST CALEZ EN SAOSNOIS", + "nomCommune": "ST CALEZ EN SAOSNOIS" }, { - "codePostal": "14100", - "codeCommune": "14260", - "libelleAcheminement": "FAUGUERNON", - "nomCommune": "FAUGUERNON" + "codePostal": "21170", + "codeCommune": "21356", + "libelleAcheminement": "LOSNE", + "nomCommune": "LOSNE" }, { - "codePostal": "70400", - "codeCommune": "70116", - "libelleAcheminement": "CHAGEY", - "nomCommune": "CHAGEY" + "codePostal": "72700", + "codeCommune": "72344", + "libelleAcheminement": "SPAY", + "nomCommune": "SPAY" }, { - "codePostal": "71150", - "codeCommune": "71051", - "libelleAcheminement": "BOUZERON", - "nomCommune": "BOUZERON" + "codePostal": "61560", + "codeCommune": "61277", + "libelleAcheminement": "LA MESNIERE", + "nomCommune": "LA MESNIERE" }, { - "codePostal": "45480", - "codeCommune": "45240", - "libelleAcheminement": "OUTARVILLE", - "nomCommune": "OUTARVILLE" + "codePostal": "62153", + "codeCommune": "62801", + "libelleAcheminement": "SOUCHEZ", + "nomCommune": "SOUCHEZ" }, { - "codePostal": "14123", - "codeCommune": "14271", - "libelleAcheminement": "FLEURY SUR ORNE", - "nomCommune": "FLEURY SUR ORNE" + "codePostal": "72110", + "codeCommune": "72271", + "libelleAcheminement": "ST CELERIN", + "nomCommune": "ST CELERIN" }, { - "codePostal": "70400", - "codeCommune": "70117", - "libelleAcheminement": "CHALONVILLARS", - "nomCommune": "CHALONVILLARS" + "codePostal": "21700", + "codeCommune": "21368", + "libelleAcheminement": "MAGNY LES VILLERS", + "nomCommune": "MAGNY LES VILLERS" }, { - "codePostal": "71700", - "codeCommune": "71052", - "libelleAcheminement": "BOYER", - "nomCommune": "BOYER" + "codePostal": "72370", + "codeCommune": "72345", + "libelleAcheminement": "SURFONDS", + "nomCommune": "SURFONDS" }, { - "codePostal": "45480", - "codeCommune": "45240", - "libelleAcheminement": "OUTARVILLE", - "nomCommune": "OUTARVILLE" + "codePostal": "61250", + "codeCommune": "61279", + "libelleAcheminement": "MIEUXCE", + "nomCommune": "MIEUXCE" }, { - "codePostal": "14790", - "codeCommune": "14274", - "libelleAcheminement": "FONTAINE ETOUPEFOUR", - "nomCommune": "FONTAINE ETOUPEFOUR" + "codePostal": "62810", + "codeCommune": "62802", + "libelleAcheminement": "LE SOUICH", + "nomCommune": "LE SOUICH" }, { - "codePostal": "70290", - "codeCommune": "70120", - "libelleAcheminement": "CHAMPAGNEY", - "nomCommune": "CHAMPAGNEY" + "codePostal": "72120", + "codeCommune": "72272", + "libelleAcheminement": "STE CEROTTE", + "nomCommune": "STE CEROTTE" }, { - "codePostal": "71290", - "codeCommune": "71061", - "libelleAcheminement": "BRIENNE", - "nomCommune": "BRIENNE" + "codePostal": "21130", + "codeCommune": "21371", + "libelleAcheminement": "LES MAILLYS", + "nomCommune": "LES MAILLYS" }, { - "codePostal": "45300", - "codeCommune": "45253", - "libelleAcheminement": "PITHIVIERS LE VIEIL", - "nomCommune": "PITHIVIERS LE VIEIL" + "codePostal": "72430", + "codeCommune": "72347", + "libelleAcheminement": "TASSE", + "nomCommune": "TASSE" }, { - "codePostal": "14610", - "codeCommune": "14275", - "libelleAcheminement": "FONTAINE HENRY", - "nomCommune": "FONTAINE HENRY" + "codePostal": "61160", + "codeCommune": "61283", + "libelleAcheminement": "MONTABARD", + "nomCommune": "MONTABARD" }, { - "codePostal": "70600", - "codeCommune": "70122", - "libelleAcheminement": "CHAMPLITTE", - "nomCommune": "CHAMPLITTE" + "codePostal": "62179", + "codeCommune": "62806", + "libelleAcheminement": "TARDINGHEN", + "nomCommune": "TARDINGHEN" }, { - "codePostal": "71480", - "codeCommune": "71079", - "libelleAcheminement": "CHAMPAGNAT", - "nomCommune": "CHAMPAGNAT" + "codePostal": "72170", + "codeCommune": "72273", + "libelleAcheminement": "ST CHRISTOPHE DU JAMBET", + "nomCommune": "ST CHRISTOPHE DU JAMBET" }, { - "codePostal": "45270", - "codeCommune": "45259", - "libelleAcheminement": "QUIERS SUR BEZONDE", - "nomCommune": "QUIERS SUR BEZONDE" + "codePostal": "21430", + "codeCommune": "21375", + "libelleAcheminement": "MANLAY", + "nomCommune": "MANLAY" }, { - "codePostal": "14710", - "codeCommune": "14281", - "libelleAcheminement": "FORMIGNY LA BATAILLE", - "nomCommune": "FORMIGNY LA BATAILLE" + "codePostal": "72220", + "codeCommune": "72350", + "libelleAcheminement": "TELOCHE", + "nomCommune": "TELOCHE" }, { - "codePostal": "70170", - "codeCommune": "70133", - "libelleAcheminement": "CHARGEY LES PORT", - "nomCommune": "CHARGEY LES PORT" + "codePostal": "61210", + "codeCommune": "61308", + "libelleAcheminement": "NEUVY AU HOULME", + "nomCommune": "NEUVY AU HOULME" }, { - "codePostal": "71530", - "codeCommune": "71081", - "libelleAcheminement": "CHAMPFORGEUIL", - "nomCommune": "CHAMPFORGEUIL" + "codePostal": "62580", + "codeCommune": "62810", + "libelleAcheminement": "THELUS", + "nomCommune": "THELUS" }, { - "codePostal": "45310", - "codeCommune": "45262", - "libelleAcheminement": "ROUVRAY STE CROIX", - "nomCommune": "ROUVRAY STE CROIX" + "codePostal": "72110", + "codeCommune": "72277", + "libelleAcheminement": "ST DENIS DES COUDRAIS", + "nomCommune": "ST DENIS DES COUDRAIS" }, { - "codePostal": "14950", - "codeCommune": "14302", - "libelleAcheminement": "GLANVILLE", - "nomCommune": "GLANVILLE" + "codePostal": "21270", + "codeCommune": "21376", + "libelleAcheminement": "MARANDEUIL", + "nomCommune": "MARANDEUIL" }, { - "codePostal": "70000", - "codeCommune": "70134", - "libelleAcheminement": "CHARIEZ", - "nomCommune": "CHARIEZ" + "codePostal": "72110", + "codeCommune": "72352", + "libelleAcheminement": "TERREHAULT", + "nomCommune": "TERREHAULT" }, { - "codePostal": "71460", - "codeCommune": "71087", - "libelleAcheminement": "CHAPAIZE", - "nomCommune": "CHAPAIZE" + "codePostal": "61340", + "codeCommune": "61309", + "libelleAcheminement": "PERCHE EN NOCE", + "nomCommune": "PERCHE EN NOCE" }, { - "codePostal": "45130", - "codeCommune": "45264", - "libelleAcheminement": "ROZIERES EN BEAUCE", - "nomCommune": "ROZIERES EN BEAUCE" + "codePostal": "62760", + "codeCommune": "62814", + "libelleAcheminement": "THIEVRES", + "nomCommune": "THIEVRES" }, { - "codePostal": "14160", - "codeCommune": "14316", - "libelleAcheminement": "GRANGUES", - "nomCommune": "GRANGUES" + "codePostal": "72150", + "codeCommune": "72279", + "libelleAcheminement": "ST GEORGES DE LA COUEE", + "nomCommune": "ST GEORGES DE LA COUEE" }, { - "codePostal": "70230", - "codeCommune": "70137", - "libelleAcheminement": "CHASSEY LES MONTBOZON", - "nomCommune": "CHASSEY LES MONTBOZON" + "codePostal": "21350", + "codeCommune": "21381", + "libelleAcheminement": "MARCILLY ET DRACY", + "nomCommune": "MARCILLY ET DRACY" }, { - "codePostal": "71130", - "codeCommune": "71088", - "libelleAcheminement": "LA CHAPELLE AU MANS", - "nomCommune": "LA CHAPELLE AU MANS" + "codePostal": "72610", + "codeCommune": "72355", + "libelleAcheminement": "THOIRE SOUS CONTENSOR", + "nomCommune": "THOIRE SOUS CONTENSOR" }, { - "codePostal": "45500", - "codeCommune": "45271", - "libelleAcheminement": "ST BRISSON SUR LOIRE", - "nomCommune": "ST BRISSON SUR LOIRE" + "codePostal": "61340", + "codeCommune": "61309", + "libelleAcheminement": "PERCHE EN NOCE", + "nomCommune": "PERCHE EN NOCE" }, { - "codePostal": "14220", - "codeCommune": "14320", - "libelleAcheminement": "GRIMBOSQ", - "nomCommune": "GRIMBOSQ" + "codePostal": "62390", + "codeCommune": "62822", + "libelleAcheminement": "TOLLENT", + "nomCommune": "TOLLENT" }, { - "codePostal": "70360", - "codeCommune": "70138", - "libelleAcheminement": "CHASSEY LES SCEY", - "nomCommune": "CHASSEY LES SCEY" + "codePostal": "72380", + "codeCommune": "72289", + "libelleAcheminement": "STE JAMME SUR SARTHE", + "nomCommune": "STE JAMME SUR SARTHE" }, { - "codePostal": "71190", - "codeCommune": "71096", - "libelleAcheminement": "LA CHAPELLE SOUS UCHON", - "nomCommune": "LA CHAPELLE SOUS UCHON" + "codePostal": "21320", + "codeCommune": "21382", + "libelleAcheminement": "MARCILLY OGNY", + "nomCommune": "MARCILLY OGNY" }, { - "codePostal": "45550", - "codeCommune": "45273", - "libelleAcheminement": "ST DENIS DE L HOTEL", - "nomCommune": "ST DENIS DE L HOTEL" + "codePostal": "72500", + "codeCommune": "72356", + "libelleAcheminement": "THOIRE SUR DINAN", + "nomCommune": "THOIRE SUR DINAN" }, { - "codePostal": "14200", - "codeCommune": "14327", - "libelleAcheminement": "HEROUVILLE ST CLAIR", - "nomCommune": "HEROUVILLE ST CLAIR" + "codePostal": "61340", + "codeCommune": "61309", + "libelleAcheminement": "PERCHE EN NOCE", + "nomCommune": "PERCHE EN NOCE" }, { - "codePostal": "70140", - "codeCommune": "70142", - "libelleAcheminement": "CHAUMERCENNE", - "nomCommune": "CHAUMERCENNE" + "codePostal": "62140", + "codeCommune": "62824", + "libelleAcheminement": "TORTEFONTAINE", + "nomCommune": "TORTEFONTAINE" }, { - "codePostal": "71510", - "codeCommune": "71107", - "libelleAcheminement": "CHARRECEY", - "nomCommune": "CHARRECEY" + "codePostal": "72600", + "codeCommune": "72295", + "libelleAcheminement": "ST LONGIS", + "nomCommune": "ST LONGIS" }, { - "codePostal": "45360", - "codeCommune": "45276", - "libelleAcheminement": "ST FIRMIN SUR LOIRE", - "nomCommune": "ST FIRMIN SUR LOIRE" + "codePostal": "21120", + "codeCommune": "21383", + "libelleAcheminement": "MARCILLY SUR TILLE", + "nomCommune": "MARCILLY SUR TILLE" }, { - "codePostal": "14700", - "codeCommune": "14332", - "libelleAcheminement": "LA HOGUETTE", - "nomCommune": "LA HOGUETTE" + "codePostal": "72160", + "codeCommune": "72363", + "libelleAcheminement": "TUFFE VAL DE LA CHERONNE", + "nomCommune": "TUFFE VAL DE LA CHERONNE" }, { - "codePostal": "70500", - "codeCommune": "70144", - "libelleAcheminement": "CHAUVIREY LE VIEIL", - "nomCommune": "CHAUVIREY LE VIEIL" + "codePostal": "61350", + "codeCommune": "61324", + "libelleAcheminement": "PASSAIS VILLAGES", + "nomCommune": "PASSAIS VILLAGES" }, { - "codePostal": "71150", - "codeCommune": "71109", - "libelleAcheminement": "CHASSEY LE CAMP", - "nomCommune": "CHASSEY LE CAMP" + "codePostal": "62450", + "codeCommune": "62829", + "libelleAcheminement": "LE TRANSLOY", + "nomCommune": "LE TRANSLOY" }, { - "codePostal": "45230", - "codeCommune": "45292", - "libelleAcheminement": "ST MAURICE SUR AVEYRON", - "nomCommune": "ST MAURICE SUR AVEYRON" + "codePostal": "72600", + "codeCommune": "72317", + "libelleAcheminement": "ST REMY DU VAL", + "nomCommune": "ST REMY DU VAL" }, { - "codePostal": "14430", - "codeCommune": "14335", - "libelleAcheminement": "HOTOT EN AUGE", - "nomCommune": "HOTOT EN AUGE" + "codePostal": "21500", + "codeCommune": "21389", + "libelleAcheminement": "MARMAGNE", + "nomCommune": "MARMAGNE" }, { - "codePostal": "70190", - "codeCommune": "70145", - "libelleAcheminement": "CHAUX LA LOTIERE", - "nomCommune": "CHAUX LA LOTIERE" + "codePostal": "72360", + "codeCommune": "72369", + "libelleAcheminement": "VERNEIL LE CHETIF", + "nomCommune": "VERNEIL LE CHETIF" }, { - "codePostal": "71170", - "codeCommune": "71110", - "libelleAcheminement": "CHASSIGNY SOUS DUN", - "nomCommune": "CHASSIGNY SOUS DUN" + "codePostal": "61170", + "codeCommune": "61331", + "libelleAcheminement": "LE PLANTIS", + "nomCommune": "LE PLANTIS" }, { - "codePostal": "45700", - "codeCommune": "45293", - "libelleAcheminement": "ST MAURICE SUR FESSARD", - "nomCommune": "ST MAURICE SUR FESSARD" + "codePostal": "62130", + "codeCommune": "62831", + "libelleAcheminement": "TROISVAUX", + "nomCommune": "TROISVAUX" }, { - "codePostal": "14230", - "codeCommune": "14342", - "libelleAcheminement": "ISIGNY SUR MER", - "nomCommune": "ISIGNY SUR MER" + "codePostal": "72320", + "codeCommune": "72322", + "libelleAcheminement": "ST ULPHACE", + "nomCommune": "ST ULPHACE" }, { - "codePostal": "70700", - "codeCommune": "70152", - "libelleAcheminement": "CHOYE", - "nomCommune": "CHOYE" + "codePostal": "21350", + "codeCommune": "21395", + "libelleAcheminement": "MASSINGY LES VITTEAUX", + "nomCommune": "MASSINGY LES VITTEAUX" }, { - "codePostal": "71130", - "codeCommune": "71111", - "libelleAcheminement": "CHASSY", - "nomCommune": "CHASSY" + "codePostal": "72170", + "codeCommune": "72370", + "libelleAcheminement": "VERNIE", + "nomCommune": "VERNIE" }, { - "codePostal": "45210", - "codeCommune": "45307", - "libelleAcheminement": "LA SELLE SUR LE BIED", - "nomCommune": "LA SELLE SUR LE BIED" + "codePostal": "61210", + "codeCommune": "61339", + "libelleAcheminement": "PUTANGES LE LAC", + "nomCommune": "PUTANGES LE LAC" }, { - "codePostal": "14250", - "codeCommune": "14348", - "libelleAcheminement": "JUVIGNY SUR SEULLES", - "nomCommune": "JUVIGNY SUR SEULLES" + "codePostal": "62140", + "codeCommune": "62834", + "libelleAcheminement": "VACQUERIETTE ERQUIERES", + "nomCommune": "VACQUERIETTE ERQUIERES" }, { - "codePostal": "70190", - "codeCommune": "70154", - "libelleAcheminement": "CIREY", - "nomCommune": "CIREY" + "codePostal": "72600", + "codeCommune": "72326", + "libelleAcheminement": "SAOSNES", + "nomCommune": "SAOSNES" }, { - "codePostal": "71510", - "codeCommune": "71115", - "libelleAcheminement": "CHATEL MORON", - "nomCommune": "CHATEL MORON" + "codePostal": "21290", + "codeCommune": "21402", + "libelleAcheminement": "MENESBLE", + "nomCommune": "MENESBLE" }, { - "codePostal": "45400", - "codeCommune": "45308", - "libelleAcheminement": "SEMOY", - "nomCommune": "SEMOY" + "codePostal": "72320", + "codeCommune": "72373", + "libelleAcheminement": "VIBRAYE", + "nomCommune": "VIBRAYE" }, { - "codePostal": "14320", - "codeCommune": "14349", - "libelleAcheminement": "LAIZE CLINCHAMPS", - "nomCommune": "LAIZE CLINCHAMPS" + "codePostal": "61210", + "codeCommune": "61339", + "libelleAcheminement": "PUTANGES LE LAC", + "nomCommune": "PUTANGES LE LAC" }, { - "codePostal": "70000", - "codeCommune": "70166", - "libelleAcheminement": "COMBERJON", - "nomCommune": "COMBERJON" + "codePostal": "62140", + "codeCommune": "62834", + "libelleAcheminement": "VACQUERIETTE ERQUIERES", + "nomCommune": "VACQUERIETTE ERQUIERES" }, { - "codePostal": "71380", - "codeCommune": "71117", - "libelleAcheminement": "CHATENOY EN BRESSE", - "nomCommune": "CHATENOY EN BRESSE" + "codePostal": "72460", + "codeCommune": "72335", + "libelleAcheminement": "SILLE LE PHILIPPE", + "nomCommune": "SILLE LE PHILIPPE" }, { - "codePostal": "45240", - "codeCommune": "45309", - "libelleAcheminement": "SENNELY", - "nomCommune": "SENNELY" + "codePostal": "21540", + "codeCommune": "21406", + "libelleAcheminement": "MESMONT", + "nomCommune": "MESMONT" }, { - "codePostal": "14770", - "codeCommune": "14357", - "libelleAcheminement": "TERRES DE DRUANCE", - "nomCommune": "TERRES DE DRUANCE" + "codePostal": "72600", + "codeCommune": "72374", + "libelleAcheminement": "VILLAINES LA CARELLE", + "nomCommune": "VILLAINES LA CARELLE" }, { - "codePostal": "70800", - "codeCommune": "70168", - "libelleAcheminement": "CONFLANS SUR LANTERNE", - "nomCommune": "CONFLANS SUR LANTERNE" + "codePostal": "61210", + "codeCommune": "61339", + "libelleAcheminement": "PUTANGES LE LAC", + "nomCommune": "PUTANGES LE LAC" }, { - "codePostal": "71880", - "codeCommune": "71118", - "libelleAcheminement": "CHATENOY LE ROYAL", - "nomCommune": "CHATENOY LE ROYAL" + "codePostal": "62380", + "codeCommune": "62837", + "libelleAcheminement": "VAUDRINGHEM", + "nomCommune": "VAUDRINGHEM" }, { - "codePostal": "45410", - "codeCommune": "45313", - "libelleAcheminement": "SOUGY", - "nomCommune": "SOUGY" + "codePostal": "72290", + "codeCommune": "72340", + "libelleAcheminement": "SOULIGNE SOUS BALLON", + "nomCommune": "SOULIGNE SOUS BALLON" }, { - "codePostal": "14330", - "codeCommune": "14367", - "libelleAcheminement": "LISON", - "nomCommune": "LISON" + "codePostal": "21700", + "codeCommune": "21409", + "libelleAcheminement": "MEUILLEY", + "nomCommune": "MEUILLEY" }, { - "codePostal": "70190", - "codeCommune": "70174", - "libelleAcheminement": "CORDONNET", - "nomCommune": "CORDONNET" + "codePostal": "72270", + "codeCommune": "72377", + "libelleAcheminement": "VILLAINES SOUS MALICORNE", + "nomCommune": "VILLAINES SOUS MALICORNE" }, { - "codePostal": "71150", - "codeCommune": "71122", - "libelleAcheminement": "CHEILLY LES MARANGES", - "nomCommune": "CHEILLY LES MARANGES" + "codePostal": "61210", + "codeCommune": "61339", + "libelleAcheminement": "PUTANGES LE LAC", + "nomCommune": "PUTANGES LE LAC" }, { - "codePostal": "45420", - "codeCommune": "45323", - "libelleAcheminement": "THOU", - "nomCommune": "THOU" + "codePostal": "62131", + "codeCommune": "62848", + "libelleAcheminement": "VERQUIN", + "nomCommune": "VERQUIN" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "72300", + "codeCommune": "72343", + "libelleAcheminement": "SOUVIGNE SUR SARTHE", + "nomCommune": "SOUVIGNE SUR SARTHE" }, { - "codePostal": "70150", - "codeCommune": "70181", - "libelleAcheminement": "COURCUIRE", - "nomCommune": "COURCUIRE" + "codePostal": "21190", + "codeCommune": "21412", + "libelleAcheminement": "MEURSAULT", + "nomCommune": "MEURSAULT" }, { - "codePostal": "71220", - "codeCommune": "71127", - "libelleAcheminement": "CHEVAGNY SUR GUYE", - "nomCommune": "CHEVAGNY SUR GUYE" + "codePostal": "73110", + "codeCommune": "73021", + "libelleAcheminement": "ARVILLARD", + "nomCommune": "ARVILLARD" }, { - "codePostal": "45510", - "codeCommune": "45324", - "libelleAcheminement": "TIGY", - "nomCommune": "TIGY" + "codePostal": "61110", + "codeCommune": "61345", + "libelleAcheminement": "REMALARD EN PERCHE", + "nomCommune": "REMALARD EN PERCHE" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "62180", + "codeCommune": "62849", + "libelleAcheminement": "VERTON", + "nomCommune": "VERTON" }, { - "codePostal": "70100", - "codeCommune": "70185", - "libelleAcheminement": "CRESANCEY", - "nomCommune": "CRESANCEY" + "codePostal": "72540", + "codeCommune": "72348", + "libelleAcheminement": "TASSILLE", + "nomCommune": "TASSILLE" }, { - "codePostal": "71520", - "codeCommune": "71134", - "libelleAcheminement": "NAVOUR SUR GROSNE", - "nomCommune": "NAVOUR SUR GROSNE" + "codePostal": "21510", + "codeCommune": "21415", + "libelleAcheminement": "MINOT", + "nomCommune": "MINOT" }, { - "codePostal": "45170", - "codeCommune": "45325", - "libelleAcheminement": "TIVERNON", - "nomCommune": "TIVERNON" + "codePostal": "73240", + "codeCommune": "73025", + "libelleAcheminement": "AVRESSIEUX", + "nomCommune": "AVRESSIEUX" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "61110", + "codeCommune": "61345", + "libelleAcheminement": "REMALARD EN PERCHE", + "nomCommune": "REMALARD EN PERCHE" }, { - "codePostal": "70400", - "codeCommune": "70187", - "libelleAcheminement": "CREVANS LA CHAPELLE LES GRANGES", - "nomCommune": "CREVANS ET LA CHAPELLE LES GRANGES" + "codePostal": "62240", + "codeCommune": "62853", + "libelleAcheminement": "VIEIL MOUTIER", + "nomCommune": "VIEIL MOUTIER" }, { - "codePostal": "71130", - "codeCommune": "71136", - "libelleAcheminement": "CLESSY", - "nomCommune": "CLESSY" + "codePostal": "72320", + "codeCommune": "72353", + "libelleAcheminement": "THELIGNY", + "nomCommune": "THELIGNY" }, { - "codePostal": "45290", - "codeCommune": "45332", - "libelleAcheminement": "VARENNES CHANGY", - "nomCommune": "VARENNES CHANGY" + "codePostal": "21330", + "codeCommune": "21419", + "libelleAcheminement": "MOLESME", + "nomCommune": "MOLESME" }, { - "codePostal": "14240", - "codeCommune": "14374", - "libelleAcheminement": "LES LOGES", - "nomCommune": "LES LOGES" + "codePostal": "73330", + "codeCommune": "73039", + "libelleAcheminement": "BELMONT TRAMONET", + "nomCommune": "BELMONT TRAMONET" }, { - "codePostal": "70700", - "codeCommune": "70192", - "libelleAcheminement": "CUGNEY", - "nomCommune": "CUGNEY" + "codePostal": "61120", + "codeCommune": "61351", + "libelleAcheminement": "ROIVILLE", + "nomCommune": "ROIVILLE" }, { - "codePostal": "71990", - "codeCommune": "71142", - "libelleAcheminement": "LA COMELLE", - "nomCommune": "LA COMELLE" + "codePostal": "62770", + "codeCommune": "62872", + "libelleAcheminement": "WAMIN", + "nomCommune": "WAMIN" }, { - "codePostal": "45310", - "codeCommune": "45341", - "libelleAcheminement": "VILLENEUVE SUR CONIE", - "nomCommune": "VILLENEUVE SUR CONIE" + "codePostal": "72260", + "codeCommune": "72354", + "libelleAcheminement": "THOIGNE", + "nomCommune": "THOIGNE" }, { - "codePostal": "14190", - "codeCommune": "14394", - "libelleAcheminement": "MAIZIERES", - "nomCommune": "MAIZIERES" + "codePostal": "21120", + "codeCommune": "21421", + "libelleAcheminement": "MOLOY", + "nomCommune": "MOLOY" }, { - "codePostal": "70200", - "codeCommune": "70195", - "libelleAcheminement": "DAMBENOIT LES COLOMBE", - "nomCommune": "DAMBENOIT LES COLOMBE" + "codePostal": "73700", + "codeCommune": "73054", + "libelleAcheminement": "BOURG ST MAURICE", + "nomCommune": "BOURG ST MAURICE" }, { - "codePostal": "71130", - "codeCommune": "71161", - "libelleAcheminement": "CURDIN", - "nomCommune": "CURDIN" + "codePostal": "61170", + "codeCommune": "61360", + "libelleAcheminement": "ST AGNAN SUR SARTHE", + "nomCommune": "ST AGNAN SUR SARTHE" }, { - "codePostal": "45700", - "codeCommune": "45343", - "libelleAcheminement": "VILLEVOQUES", - "nomCommune": "VILLEVOQUES" + "codePostal": "62760", + "codeCommune": "62877", + "libelleAcheminement": "WARLINCOURT LES PAS", + "nomCommune": "WARLINCOURT LES PAS" }, { - "codePostal": "14220", - "codeCommune": "14404", - "libelleAcheminement": "MARTAINVILLE", - "nomCommune": "MARTAINVILLE" + "codePostal": "72160", + "codeCommune": "72358", + "libelleAcheminement": "THORIGNE SUR DUE", + "nomCommune": "THORIGNE SUR DUE" }, { - "codePostal": "70230", - "codeCommune": "70197", - "libelleAcheminement": "DAMPIERRE SUR LINOTTE", - "nomCommune": "DAMPIERRE SUR LINOTTE" + "codePostal": "21210", + "codeCommune": "21422", + "libelleAcheminement": "MOLPHEY", + "nomCommune": "MOLPHEY" }, { - "codePostal": "71520", - "codeCommune": "71163", - "libelleAcheminement": "CURTIL SOUS BUFFIERES", - "nomCommune": "CURTIL SOUS BUFFIERES" + "codePostal": "73390", + "codeCommune": "73068", + "libelleAcheminement": "CHAMOUSSET", + "nomCommune": "CHAMOUSSET" }, { - "codePostal": "45700", - "codeCommune": "45345", - "libelleAcheminement": "VIMORY", - "nomCommune": "VIMORY" + "codePostal": "61380", + "codeCommune": "61363", + "libelleAcheminement": "ST AQUILIN DE CORBION", + "nomCommune": "ST AQUILIN DE CORBION" }, { - "codePostal": "14920", - "codeCommune": "14407", - "libelleAcheminement": "MATHIEU", - "nomCommune": "MATHIEU" + "codePostal": "62960", + "codeCommune": "62885", + "libelleAcheminement": "WESTREHEM", + "nomCommune": "WESTREHEM" }, { - "codePostal": "70210", - "codeCommune": "70202", - "libelleAcheminement": "DEMANGEVELLE", - "nomCommune": "DEMANGEVELLE" + "codePostal": "72150", + "codeCommune": "72376", + "libelleAcheminement": "VILLAINES SOUS LUCE", + "nomCommune": "VILLAINES SOUS LUCE" }, { - "codePostal": "71960", - "codeCommune": "71169", - "libelleAcheminement": "DAVAYE", - "nomCommune": "DAVAYE" + "codePostal": "21190", + "codeCommune": "21428", + "libelleAcheminement": "MONTHELIE", + "nomCommune": "MONTHELIE" }, { - "codePostal": "46090", - "codeCommune": "46010", - "libelleAcheminement": "AUJOLS", - "nomCommune": "AUJOLS" + "codePostal": "73660", + "codeCommune": "73083", + "libelleAcheminement": "LES CHAVANNES EN MAURIENNE", + "nomCommune": "LES CHAVANNES EN MAURIENNE" }, { - "codePostal": "14370", - "codeCommune": "14410", - "libelleAcheminement": "MERY BISSIERES EN AUGE", - "nomCommune": "MERY BISSIERES EN AUGE" + "codePostal": "61560", + "codeCommune": "61367", + "libelleAcheminement": "ST AUBIN DE COURTERAIE", + "nomCommune": "ST AUBIN DE COURTERAIE" }, { - "codePostal": "70270", - "codeCommune": "70210", - "libelleAcheminement": "ECROMAGNY", - "nomCommune": "ECROMAGNY" + "codePostal": "62179", + "codeCommune": "62899", + "libelleAcheminement": "WISSANT", + "nomCommune": "WISSANT" }, { - "codePostal": "71510", - "codeCommune": "71171", - "libelleAcheminement": "DENNEVY", - "nomCommune": "DENNEVY" + "codePostal": "72210", + "codeCommune": "72381", + "libelleAcheminement": "VOIVRES LES LE MANS", + "nomCommune": "VOIVRES LES LE MANS" }, { - "codePostal": "46600", - "codeCommune": "46016", - "libelleAcheminement": "BALADOU", - "nomCommune": "BALADOU" + "codePostal": "21390", + "codeCommune": "21430", + "libelleAcheminement": "MONTIGNY ST BARTHELEMY", + "nomCommune": "MONTIGNY ST BARTHELEMY" }, { - "codePostal": "14370", - "codeCommune": "14410", - "libelleAcheminement": "MERY BISSIERES EN AUGE", - "nomCommune": "MERY BISSIERES EN AUGE" + "codePostal": "73310", + "codeCommune": "73085", + "libelleAcheminement": "CHINDRIEUX", + "nomCommune": "CHINDRIEUX" }, { - "codePostal": "70110", - "codeCommune": "70226", - "libelleAcheminement": "FALLON", - "nomCommune": "FALLON" + "codePostal": "61570", + "codeCommune": "61375", + "libelleAcheminement": "BOISCHAMPRE", + "nomCommune": "BOISCHAMPRE" }, { - "codePostal": "71380", - "codeCommune": "71189", - "libelleAcheminement": "EPERVANS", - "nomCommune": "EPERVANS" + "codePostal": "62120", + "codeCommune": "62900", + "libelleAcheminement": "WITTERNESSE", + "nomCommune": "WITTERNESSE" }, { - "codePostal": "46260", - "codeCommune": "46020", - "libelleAcheminement": "BEAUREGARD", - "nomCommune": "BEAUREGARD" + "codePostal": "72440", + "codeCommune": "72382", + "libelleAcheminement": "VOLNAY", + "nomCommune": "VOLNAY" }, { - "codePostal": "14260", - "codeCommune": "14412", - "libelleAcheminement": "LE MESNIL AU GRAIN", - "nomCommune": "LE MESNIL AU GRAIN" + "codePostal": "21170", + "codeCommune": "21440", + "libelleAcheminement": "MONTOT", + "nomCommune": "MONTOT" }, { - "codePostal": "70310", - "codeCommune": "70227", - "libelleAcheminement": "FAUCOGNEY ET LA MER", - "nomCommune": "FAUCOGNEY ET LA MER" + "codePostal": "73460", + "codeCommune": "73086", + "libelleAcheminement": "CLERY", + "nomCommune": "CLERY" }, { - "codePostal": "71360", - "codeCommune": "71190", - "libelleAcheminement": "EPINAC", - "nomCommune": "EPINAC" + "codePostal": "61400", + "codeCommune": "61381", + "libelleAcheminement": "ST DENIS SUR HUISNE", + "nomCommune": "ST DENIS SUR HUISNE" }, { - "codePostal": "46140", - "codeCommune": "46022", - "libelleAcheminement": "BELAYE", - "nomCommune": "BELAYE" + "codePostal": "62570", + "codeCommune": "62902", + "libelleAcheminement": "WIZERNES", + "nomCommune": "WIZERNES" }, { - "codePostal": "14130", - "codeCommune": "14426", - "libelleAcheminement": "LE MESNIL SUR BLANGY", - "nomCommune": "LE MESNIL SUR BLANGY" + "codePostal": "73210", + "codeCommune": "73006", + "libelleAcheminement": "AIME LA PLAGNE", + "nomCommune": "AIME LA PLAGNE" }, { - "codePostal": "70160", - "codeCommune": "70228", - "libelleAcheminement": "FAVERNEY", - "nomCommune": "FAVERNEY" + "codePostal": "21210", + "codeCommune": "21445", + "libelleAcheminement": "LA MOTTE TERNANT", + "nomCommune": "LA MOTTE TERNANT" }, { - "codePostal": "71700", - "codeCommune": "71195", - "libelleAcheminement": "FARGES LES MACON", - "nomCommune": "FARGES LES MACON" + "codePostal": "73310", + "codeCommune": "73091", + "libelleAcheminement": "CONJUX", + "nomCommune": "CONJUX" }, { - "codePostal": "46130", - "codeCommune": "46024", - "libelleAcheminement": "BELMONT BRETENOUX", - "nomCommune": "BELMONT BRETENOUX" + "codePostal": "61320", + "codeCommune": "61384", + "libelleAcheminement": "ST ELLIER LES BOIS", + "nomCommune": "ST ELLIER LES BOIS" }, { - "codePostal": "14140", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "62500", + "codeCommune": "62905", + "libelleAcheminement": "ZUDAUSQUES", + "nomCommune": "ZUDAUSQUES" }, { - "codePostal": "70310", - "codeCommune": "70233", - "libelleAcheminement": "LES FESSEY", - "nomCommune": "LES FESSEY" + "codePostal": "73210", + "codeCommune": "73006", + "libelleAcheminement": "AIME LA PLAGNE", + "nomCommune": "AIME LA PLAGNE" }, { - "codePostal": "71330", - "codeCommune": "71205", - "libelleAcheminement": "FRANGY EN BRESSE", - "nomCommune": "FRANGY EN BRESSE" + "codePostal": "21330", + "codeCommune": "21451", + "libelleAcheminement": "NESLE ET MASSOULT", + "nomCommune": "NESLE ET MASSOULT" }, { - "codePostal": "46330", - "codeCommune": "46031", - "libelleAcheminement": "BLARS", - "nomCommune": "BLARS" + "codePostal": "73800", + "codeCommune": "73096", + "libelleAcheminement": "CRUET", + "nomCommune": "CRUET" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "61350", + "codeCommune": "61387", + "libelleAcheminement": "ST FRAIMBAULT", + "nomCommune": "ST FRAIMBAULT" }, { - "codePostal": "70230", - "codeCommune": "70234", - "libelleAcheminement": "FILAIN", - "nomCommune": "FILAIN" + "codePostal": "62360", + "codeCommune": "62908", + "libelleAcheminement": "LA CAPELLE LES BOULOGNE", + "nomCommune": "LA CAPELLE LES BOULOGNE" }, { - "codePostal": "71440", - "codeCommune": "71206", - "libelleAcheminement": "LA FRETTE", - "nomCommune": "LA FRETTE" + "codePostal": "73410", + "codeCommune": "73010", + "libelleAcheminement": "ENTRELACS", + "nomCommune": "ENTRELACS" }, { - "codePostal": "46800", - "codeCommune": "46033", - "libelleAcheminement": "PORTE DU QUERCY", - "nomCommune": "PORTE DU QUERCY" + "codePostal": "21800", + "codeCommune": "21452", + "libelleAcheminement": "NEUILLY CRIMOLOIS", + "nomCommune": "NEUILLY CRIMOLOIS" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "73230", + "codeCommune": "73098", + "libelleAcheminement": "LES DESERTS", + "nomCommune": "LES DESERTS" }, { - "codePostal": "70600", - "codeCommune": "70252", - "libelleAcheminement": "FRAMONT", - "nomCommune": "FRAMONT" + "codePostal": "61470", + "codeCommune": "61392", + "libelleAcheminement": "ST GERMAIN D AUNAY", + "nomCommune": "ST GERMAIN D AUNAY" }, { - "codePostal": "71270", - "codeCommune": "71208", - "libelleAcheminement": "FRONTENARD", - "nomCommune": "FRONTENARD" + "codePostal": "63420", + "codeCommune": "63006", + "libelleAcheminement": "ANZAT LE LUGUET", + "nomCommune": "ANZAT LE LUGUET" }, { - "codePostal": "46800", - "codeCommune": "46033", - "libelleAcheminement": "PORTE DU QUERCY", - "nomCommune": "PORTE DU QUERCY" + "codePostal": "73410", + "codeCommune": "73010", + "libelleAcheminement": "ENTRELACS", + "nomCommune": "ENTRELACS" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "21400", + "codeCommune": "21460", + "libelleAcheminement": "NOIRON SUR SEINE", + "nomCommune": "NOIRON SUR SEINE" }, { - "codePostal": "70700", - "codeCommune": "70253", - "libelleAcheminement": "FRASNE LE CHATEAU", - "nomCommune": "FRASNE LE CHATEAU" + "codePostal": "73110", + "codeCommune": "73099", + "libelleAcheminement": "DETRIER", + "nomCommune": "DETRIER" }, { - "codePostal": "71580", - "codeCommune": "71209", - "libelleAcheminement": "FRONTENAUD", - "nomCommune": "FRONTENAUD" + "codePostal": "61110", + "codeCommune": "61395", + "libelleAcheminement": "ST GERMAIN DES GROIS", + "nomCommune": "ST GERMAIN DES GROIS" }, { - "codePostal": "46320", - "codeCommune": "46039", - "libelleAcheminement": "BRENGUES", - "nomCommune": "BRENGUES" + "codePostal": "63420", + "codeCommune": "63009", + "libelleAcheminement": "ARDES", + "nomCommune": "ARDES" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "73410", + "codeCommune": "73010", + "libelleAcheminement": "ENTRELACS", + "nomCommune": "ENTRELACS" }, { - "codePostal": "70200", - "codeCommune": "70254", - "libelleAcheminement": "FREDERIC FONTAINE", - "nomCommune": "FREDERIC FONTAINE" + "codePostal": "21510", + "codeCommune": "21470", + "libelleAcheminement": "ORIGNY", + "nomCommune": "ORIGNY" }, { - "codePostal": "71960", - "codeCommune": "71210", - "libelleAcheminement": "FUISSE", - "nomCommune": "FUISSE" + "codePostal": "73330", + "codeCommune": "73100", + "libelleAcheminement": "DOMESSIN", + "nomCommune": "DOMESSIN" }, { - "codePostal": "46330", - "codeCommune": "46040", - "libelleAcheminement": "CABRERETS", - "nomCommune": "CABRERETS" + "codePostal": "61560", + "codeCommune": "61396", + "libelleAcheminement": "ST GERMAIN DE MARTIGNY", + "nomCommune": "ST GERMAIN DE MARTIGNY" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "63460", + "codeCommune": "63012", + "libelleAcheminement": "ARTONNE", + "nomCommune": "ARTONNE" }, { - "codePostal": "70130", - "codeCommune": "70257", - "libelleAcheminement": "FRETIGNEY ET VELLOREILLE", - "nomCommune": "FRETIGNEY ET VELLOREILLE" + "codePostal": "73200", + "codeCommune": "73014", + "libelleAcheminement": "ALLONDAZ", + "nomCommune": "ALLONDAZ" }, { - "codePostal": "71700", - "codeCommune": "71226", - "libelleAcheminement": "GREVILLY", - "nomCommune": "GREVILLY" + "codePostal": "21700", + "codeCommune": "21506", + "libelleAcheminement": "PREMEAUX PRISSEY", + "nomCommune": "PREMEAUX PRISSEY" }, { - "codePostal": "46160", - "codeCommune": "46049", - "libelleAcheminement": "CALVIGNAC", - "nomCommune": "CALVIGNAC" + "codePostal": "73360", + "codeCommune": "73105", + "libelleAcheminement": "LES ECHELLES", + "nomCommune": "LES ECHELLES" }, { - "codePostal": "14340", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "61400", + "codeCommune": "61404", + "libelleAcheminement": "ST HILAIRE LE CHATEL", + "nomCommune": "ST HILAIRE LE CHATEL" }, { - "codePostal": "70300", - "codeCommune": "70258", - "libelleAcheminement": "FROIDECONCHE", - "nomCommune": "FROIDECONCHE" + "codePostal": "63210", + "codeCommune": "63020", + "libelleAcheminement": "AURIERES", + "nomCommune": "AURIERES" }, { - "codePostal": "71620", - "codeCommune": "71228", - "libelleAcheminement": "GUERFAND", - "nomCommune": "GUERFAND" + "codePostal": "73800", + "codeCommune": "73018", + "libelleAcheminement": "ARBIN", + "nomCommune": "ARBIN" }, { - "codePostal": "46100", - "codeCommune": "46055", - "libelleAcheminement": "CAPDENAC", - "nomCommune": "CAPDENAC" + "codePostal": "21370", + "codeCommune": "21508", + "libelleAcheminement": "PRENOIS", + "nomCommune": "PRENOIS" }, { - "codePostal": "14210", - "codeCommune": "14438", - "libelleAcheminement": "MONDRAINVILLE", - "nomCommune": "MONDRAINVILLE" + "codePostal": "73670", + "codeCommune": "73107", + "libelleAcheminement": "ENTREMONT LE VIEUX", + "nomCommune": "ENTREMONT LE VIEUX" }, { - "codePostal": "70200", - "codeCommune": "70259", - "libelleAcheminement": "FROIDETERRE", - "nomCommune": "FROIDETERRE" + "codePostal": "61340", + "codeCommune": "61405", + "libelleAcheminement": "ST HILAIRE SUR ERRE", + "nomCommune": "ST HILAIRE SUR ERRE" }, { - "codePostal": "71160", - "codeCommune": "71229", - "libelleAcheminement": "LES GUERREAUX", - "nomCommune": "LES GUERREAUX" + "codePostal": "63114", + "codeCommune": "63021", + "libelleAcheminement": "AUTHEZAT", + "nomCommune": "AUTHEZAT" }, { - "codePostal": "46160", - "codeCommune": "46056", - "libelleAcheminement": "CARAYAC", - "nomCommune": "CARAYAC" + "codePostal": "73220", + "codeCommune": "73019", + "libelleAcheminement": "ARGENTINE", + "nomCommune": "ARGENTINE" }, { - "codePostal": "14220", - "codeCommune": "14455", - "libelleAcheminement": "MOULINES", - "nomCommune": "MOULINES" + "codePostal": "21560", + "codeCommune": "21521", + "libelleAcheminement": "REMILLY SUR TILLE", + "nomCommune": "REMILLY SUR TILLE" }, { - "codePostal": "70240", - "codeCommune": "70262", - "libelleAcheminement": "GENEVREUILLE", - "nomCommune": "GENEVREUILLE" + "codePostal": "73500", + "codeCommune": "73117", + "libelleAcheminement": "FOURNEAUX", + "nomCommune": "FOURNEAUX" }, { - "codePostal": "71130", - "codeCommune": "71230", - "libelleAcheminement": "GUEUGNON", - "nomCommune": "GUEUGNON" + "codePostal": "61210", + "codeCommune": "61408", + "libelleAcheminement": "STE HONORINE LA GUILLAUME", + "nomCommune": "STE HONORINE LA GUILLAUME" }, { - "codePostal": "46140", - "codeCommune": "46062", - "libelleAcheminement": "CASTELFRANC", - "nomCommune": "CASTELFRANC" + "codePostal": "63390", + "codeCommune": "63025", + "libelleAcheminement": "AYAT SUR SIOULE", + "nomCommune": "AYAT SUR SIOULE" }, { - "codePostal": "14370", - "codeCommune": "14456", - "libelleAcheminement": "MOULT CHICHEBOVILLE", - "nomCommune": "MOULT CHICHEBOVILLE" + "codePostal": "73000", + "codeCommune": "73029", + "libelleAcheminement": "BARBERAZ", + "nomCommune": "BARBERAZ" }, { - "codePostal": "70700", - "codeCommune": "70268", - "libelleAcheminement": "GEZIER ET FONTENELAY", - "nomCommune": "GEZIER ET FONTENELAY" + "codePostal": "21320", + "codeCommune": "21533", + "libelleAcheminement": "ROUVRES SOUS MEILLY", + "nomCommune": "ROUVRES SOUS MEILLY" }, { - "codePostal": "71220", - "codeCommune": "71231", - "libelleAcheminement": "LA GUICHE", - "nomCommune": "LA GUICHE" + "codePostal": "73590", + "codeCommune": "73123", + "libelleAcheminement": "LA GIETTAZ", + "nomCommune": "LA GIETTAZ" }, { - "codePostal": "46170", - "codeCommune": "46063", - "libelleAcheminement": "CASTELNAU MONTRATIER STE ALAUZIE", - "nomCommune": "CASTELNAU MONTRATIER STE ALAUZIE" + "codePostal": "61400", + "codeCommune": "61414", + "libelleAcheminement": "ST LANGIS LES MORTAGNE", + "nomCommune": "ST LANGIS LES MORTAGNE" }, { - "codePostal": "14220", - "codeCommune": "14458", - "libelleAcheminement": "LES MOUTIERS EN CINGLAIS", - "nomCommune": "LES MOUTIERS EN CINGLAIS" + "codePostal": "63600", + "codeCommune": "63027", + "libelleAcheminement": "BAFFIE", + "nomCommune": "BAFFIE" }, { - "codePostal": "70110", - "codeCommune": "70271", - "libelleAcheminement": "GOUHENANS", - "nomCommune": "GOUHENANS" + "codePostal": "73230", + "codeCommune": "73030", + "libelleAcheminement": "BARBY", + "nomCommune": "BARBY" }, { - "codePostal": "71870", - "codeCommune": "71235", - "libelleAcheminement": "HURIGNY", - "nomCommune": "HURIGNY" + "codePostal": "21410", + "codeCommune": "21553", + "libelleAcheminement": "ST JEAN DE BOEUF", + "nomCommune": "ST JEAN DE BOEUF" }, { - "codePostal": "46150", - "codeCommune": "46064", - "libelleAcheminement": "CATUS", - "nomCommune": "CATUS" + "codePostal": "73200", + "codeCommune": "73124", + "libelleAcheminement": "GILLY SUR ISERE", + "nomCommune": "GILLY SUR ISERE" }, { - "codePostal": "14400", - "codeCommune": "14465", - "libelleAcheminement": "NONANT", - "nomCommune": "NONANT" + "codePostal": "61170", + "codeCommune": "61415", + "libelleAcheminement": "ST LEGER SUR SARTHE", + "nomCommune": "ST LEGER SUR SARTHE" }, { - "codePostal": "70120", - "codeCommune": "70272", - "libelleAcheminement": "GOURGEON", - "nomCommune": "GOURGEON" + "codePostal": "63570", + "codeCommune": "63029", + "libelleAcheminement": "BANSAT", + "nomCommune": "BANSAT" }, { - "codePostal": "71540", - "codeCommune": "71237", - "libelleAcheminement": "IGORNAY", - "nomCommune": "IGORNAY" + "codePostal": "73360", + "codeCommune": "73033", + "libelleAcheminement": "LA BAUCHE", + "nomCommune": "LA BAUCHE" }, { - "codePostal": "46110", - "codeCommune": "46065", - "libelleAcheminement": "CAVAGNAC", - "nomCommune": "CAVAGNAC" + "codePostal": "21450", + "codeCommune": "21557", + "libelleAcheminement": "ST MARC SUR SEINE", + "nomCommune": "ST MARC SUR SEINE" }, { - "codePostal": "14700", - "codeCommune": "14467", - "libelleAcheminement": "NORON L ABBAYE", - "nomCommune": "NORON L ABBAYE" + "codePostal": "73460", + "codeCommune": "73129", + "libelleAcheminement": "GRESY SUR ISERE", + "nomCommune": "GRESY SUR ISERE" }, { - "codePostal": "70190", - "codeCommune": "70275", - "libelleAcheminement": "GRANDVELLE ET LE PERRENOT", - "nomCommune": "GRANDVELLE ET LE PERRENOT" + "codePostal": "61320", + "codeCommune": "61424", + "libelleAcheminement": "ST MARTIN DES LANDES", + "nomCommune": "ST MARTIN DES LANDES" }, { - "codePostal": "71250", - "codeCommune": "71240", - "libelleAcheminement": "JALOGNY", - "nomCommune": "JALOGNY" + "codePostal": "63310", + "codeCommune": "63030", + "libelleAcheminement": "BAS ET LEZAT", + "nomCommune": "BAS ET LEZAT" }, { - "codePostal": "46170", - "codeCommune": "46069", - "libelleAcheminement": "CEZAC", - "nomCommune": "CEZAC" + "codePostal": "73390", + "codeCommune": "73041", + "libelleAcheminement": "BETTON BETTONET", + "nomCommune": "BETTON BETTONET" }, { - "codePostal": "14340", - "codeCommune": "14474", - "libelleAcheminement": "NOTRE DAME D ESTREES CORBON", - "nomCommune": "NOTRE DAME D ESTREES CORBON" + "codePostal": "21440", + "codeCommune": "21561", + "libelleAcheminement": "ST MARTIN DU MONT", + "nomCommune": "ST MARTIN DU MONT" }, { - "codePostal": "70400", - "codeCommune": "70277", - "libelleAcheminement": "GRANGES LE BOURG", - "nomCommune": "GRANGES LE BOURG" + "codePostal": "73600", + "codeCommune": "73131", + "libelleAcheminement": "HAUTECOUR", + "nomCommune": "HAUTECOUR" }, { - "codePostal": "71190", - "codeCommune": "71251", - "libelleAcheminement": "LAIZY", - "nomCommune": "LAIZY" + "codePostal": "61190", + "codeCommune": "61429", + "libelleAcheminement": "CHARENCEY", + "nomCommune": "CHARENCEY" }, { - "codePostal": "46360", - "codeCommune": "46079", - "libelleAcheminement": "CRAS", - "nomCommune": "CRAS" + "codePostal": "63150", + "codeCommune": "63047", + "libelleAcheminement": "LA BOURBOULE", + "nomCommune": "LA BOURBOULE" }, { - "codePostal": "14100", - "codeCommune": "14487", - "libelleAcheminement": "OUILLY LE VICOMTE", - "nomCommune": "OUILLY LE VICOMTE" + "codePostal": "73480", + "codeCommune": "73047", + "libelleAcheminement": "BONNEVAL SUR ARC", + "nomCommune": "BONNEVAL SUR ARC" }, { - "codePostal": "70400", - "codeCommune": "70285", - "libelleAcheminement": "HERICOURT", - "nomCommune": "HERICOURT" + "codePostal": "21190", + "codeCommune": "21569", + "libelleAcheminement": "ST ROMAIN", + "nomCommune": "ST ROMAIN" }, { - "codePostal": "71140", - "codeCommune": "71255", - "libelleAcheminement": "LESME", - "nomCommune": "LESME" + "codePostal": "73300", + "codeCommune": "73135", + "libelleAcheminement": "LA TOUR EN MAURIENNE", + "nomCommune": "LA TOUR EN MAURIENNE" }, { - "codePostal": "46600", - "codeCommune": "46083", - "libelleAcheminement": "CRESSENSAC SARRAZAC", - "nomCommune": "CRESSENSAC SARRAZAC" + "codePostal": "61190", + "codeCommune": "61429", + "libelleAcheminement": "CHARENCEY", + "nomCommune": "CHARENCEY" }, { - "codePostal": "14110", - "codeCommune": "14512", - "libelleAcheminement": "PONTECOULANT", - "nomCommune": "PONTECOULANT" + "codePostal": "63760", + "codeCommune": "63048", + "libelleAcheminement": "BOURG LASTIC", + "nomCommune": "BOURG LASTIC" }, { - "codePostal": "70400", - "codeCommune": "70285", - "libelleAcheminement": "HERICOURT", - "nomCommune": "HERICOURT" + "codePostal": "73110", + "codeCommune": "73052", + "libelleAcheminement": "BOURGET EN HUILE", + "nomCommune": "BOURGET EN HUILE" }, { - "codePostal": "71570", - "codeCommune": "71258", - "libelleAcheminement": "LEYNES", - "nomCommune": "LEYNES" + "codePostal": "21170", + "codeCommune": "21575", + "libelleAcheminement": "ST SYMPHORIEN SUR SAONE", + "nomCommune": "ST SYMPHORIEN SUR SAONE" }, { - "codePostal": "46600", - "codeCommune": "46083", - "libelleAcheminement": "CRESSENSAC SARRAZAC", - "nomCommune": "CRESSENSAC SARRAZAC" + "codePostal": "73300", + "codeCommune": "73135", + "libelleAcheminement": "LA TOUR EN MAURIENNE", + "nomCommune": "LA TOUR EN MAURIENNE" }, { - "codePostal": "14520", - "codeCommune": "14515", - "libelleAcheminement": "PORT EN BESSIN HUPPAIN", - "nomCommune": "PORT EN BESSIN HUPPAIN" + "codePostal": "61300", + "codeCommune": "61432", + "libelleAcheminement": "ST MICHEL TUBOEUF", + "nomCommune": "ST MICHEL TUBOEUF" }, { - "codePostal": "70150", - "codeCommune": "70286", - "libelleAcheminement": "HUGIER", - "nomCommune": "HUGIER" + "codePostal": "63500", + "codeCommune": "63054", + "libelleAcheminement": "LE BROC", + "nomCommune": "LE BROC" }, { - "codePostal": "71290", - "codeCommune": "71261", - "libelleAcheminement": "LOISY", - "nomCommune": "LOISY" + "codePostal": "73390", + "codeCommune": "73053", + "libelleAcheminement": "BOURGNEUF", + "nomCommune": "BOURGNEUF" }, { - "codePostal": "46600", - "codeCommune": "46084", - "libelleAcheminement": "CREYSSE", - "nomCommune": "CREYSSE" + "codePostal": "21580", + "codeCommune": "21579", + "libelleAcheminement": "SALIVES", + "nomCommune": "SALIVES" }, { - "codePostal": "14270", - "codeCommune": "14527", - "libelleAcheminement": "BELLE VIE EN AUGE", - "nomCommune": "BELLE VIE EN AUGE" + "codePostal": "73000", + "codeCommune": "73137", + "libelleAcheminement": "JACOB BELLECOMBETTE", + "nomCommune": "JACOB BELLECOMBETTE" }, { - "codePostal": "70200", - "codeCommune": "70306", - "libelleAcheminement": "LOMONT", - "nomCommune": "LOMONT" + "codePostal": "61430", + "codeCommune": "61444", + "libelleAcheminement": "ST PHILBERT SUR ORNE", + "nomCommune": "ST PHILBERT SUR ORNE" }, { - "codePostal": "71270", - "codeCommune": "71262", - "libelleAcheminement": "LONGEPIERRE", - "nomCommune": "LONGEPIERRE" + "codePostal": "63230", + "codeCommune": "63055", + "libelleAcheminement": "BROMONT LAMOTHE", + "nomCommune": "BROMONT LAMOTHE" }, { - "codePostal": "46700", - "codeCommune": "46089", - "libelleAcheminement": "DURAVEL", - "nomCommune": "DURAVEL" + "codePostal": "73700", + "codeCommune": "73054", + "libelleAcheminement": "BOURG ST MAURICE", + "nomCommune": "BOURG ST MAURICE" }, { - "codePostal": "14130", - "codeCommune": "14528", - "libelleAcheminement": "QUETTEVILLE", - "nomCommune": "QUETTEVILLE" + "codePostal": "21690", + "codeCommune": "21580", + "libelleAcheminement": "SALMAISE", + "nomCommune": "SALMAISE" }, { - "codePostal": "70400", - "codeCommune": "70312", - "libelleAcheminement": "LUZE", - "nomCommune": "LUZE" + "codePostal": "73170", + "codeCommune": "73140", + "libelleAcheminement": "JONGIEUX", + "nomCommune": "JONGIEUX" }, { - "codePostal": "71120", - "codeCommune": "71268", - "libelleAcheminement": "LUGNY LES CHAROLLES", - "nomCommune": "LUGNY LES CHAROLLES" + "codePostal": "61790", + "codeCommune": "61447", + "libelleAcheminement": "ST PIERRE DU REGARD", + "nomCommune": "ST PIERRE DU REGARD" }, { - "codePostal": "46230", - "codeCommune": "46091", - "libelleAcheminement": "ESCAMPS", - "nomCommune": "ESCAMPS" + "codePostal": "63490", + "codeCommune": "63056", + "libelleAcheminement": "BROUSSE", + "nomCommune": "BROUSSE" }, { - "codePostal": "14470", - "codeCommune": "14535", - "libelleAcheminement": "REVIERS", - "nomCommune": "REVIERS" + "codePostal": "73350", + "codeCommune": "73055", + "libelleAcheminement": "BOZEL", + "nomCommune": "BOZEL" }, { - "codePostal": "70000", - "codeCommune": "70316", - "libelleAcheminement": "LE MAGNORAY", - "nomCommune": "LE MAGNORAY" + "codePostal": "21380", + "codeCommune": "21589", + "libelleAcheminement": "SAUSSY", + "nomCommune": "SAUSSY" }, { - "codePostal": "71000", - "codeCommune": "71270", - "libelleAcheminement": "MACON", - "nomCommune": "MACON" + "codePostal": "73800", + "codeCommune": "73141", + "libelleAcheminement": "LAISSAUD", + "nomCommune": "LAISSAUD" }, { - "codePostal": "46320", - "codeCommune": "46093", - "libelleAcheminement": "ESPAGNAC STE EULALIE", - "nomCommune": "ESPAGNAC STE EULALIE" + "codePostal": "61220", + "codeCommune": "61459", + "libelleAcheminement": "SAIRES LA VERRERIE", + "nomCommune": "SAIRES LA VERRERIE" }, { - "codePostal": "14740", - "codeCommune": "14543", - "libelleAcheminement": "ROTS", - "nomCommune": "ROTS" + "codePostal": "63880", + "codeCommune": "63057", + "libelleAcheminement": "LE BRUGERON", + "nomCommune": "LE BRUGERON" }, { - "codePostal": "70500", - "codeCommune": "70320", - "libelleAcheminement": "MAGNY LES JUSSEY", - "nomCommune": "MAGNY LES JUSSEY" + "codePostal": "73730", + "codeCommune": "73063", + "libelleAcheminement": "CEVINS", + "nomCommune": "CEVINS" }, { - "codePostal": "71000", - "codeCommune": "71270", - "libelleAcheminement": "MACON", - "nomCommune": "MACON" + "codePostal": "21420", + "codeCommune": "21590", + "libelleAcheminement": "SAVIGNY LES BEAUNE", + "nomCommune": "SAVIGNY LES BEAUNE" }, { - "codePostal": "46090", - "codeCommune": "46095", - "libelleAcheminement": "ESPERE", - "nomCommune": "ESPERE" + "codePostal": "73170", + "codeCommune": "73149", + "libelleAcheminement": "LUCEY", + "nomCommune": "LUCEY" }, { - "codePostal": "14320", - "codeCommune": "14556", - "libelleAcheminement": "ST ANDRE SUR ORNE", - "nomCommune": "ST ANDRE SUR ORNE" + "codePostal": "61150", + "codeCommune": "61473", + "libelleAcheminement": "SEVRAI", + "nomCommune": "SEVRAI" }, { - "codePostal": "70240", - "codeCommune": "70322", - "libelleAcheminement": "MAILLERONCOURT CHARETTE", - "nomCommune": "MAILLERONCOURT CHARETTE" + "codePostal": "63350", + "codeCommune": "63058", + "libelleAcheminement": "BULHON", + "nomCommune": "BULHON" }, { - "codePostal": "71000", - "codeCommune": "71270", - "libelleAcheminement": "MACON", - "nomCommune": "MACON" + "codePostal": "73000", + "codeCommune": "73065", + "libelleAcheminement": "CHAMBERY", + "nomCommune": "CHAMBERY" }, { - "codePostal": "46300", - "codeCommune": "46098", - "libelleAcheminement": "FAJOLES", - "nomCommune": "FAJOLES" + "codePostal": "21800", + "codeCommune": "21605", + "libelleAcheminement": "SENNECEY LES DIJON", + "nomCommune": "SENNECEY LES DIJON" }, { - "codePostal": "14960", - "codeCommune": "14565", - "libelleAcheminement": "ST COME DE FRESNE", - "nomCommune": "ST COME DE FRESNE" + "codePostal": "73470", + "codeCommune": "73152", + "libelleAcheminement": "MARCIEUX", + "nomCommune": "MARCIEUX" }, { - "codePostal": "70140", - "codeCommune": "70327", - "libelleAcheminement": "MALANS", - "nomCommune": "MALANS" + "codePostal": "61160", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "71640", - "codeCommune": "71294", - "libelleAcheminement": "MERCUREY", - "nomCommune": "MERCUREY" + "codePostal": "63260", + "codeCommune": "63061", + "libelleAcheminement": "BUSSIERES ET PRUNS", + "nomCommune": "BUSSIERES ET PRUNS" }, { - "codePostal": "46090", - "codeCommune": "46105", - "libelleAcheminement": "FLAUJAC POUJOLS", - "nomCommune": "FLAUJAC POUJOLS" + "codePostal": "73390", + "codeCommune": "73072", + "libelleAcheminement": "CHAMP LAURENT", + "nomCommune": "CHAMP LAURENT" }, { - "codePostal": "14290", - "codeCommune": "14570", - "libelleAcheminement": "VALORBIQUET", - "nomCommune": "VALORBIQUET" + "codePostal": "21550", + "codeCommune": "21606", + "libelleAcheminement": "LADOIX SERRIGNY", + "nomCommune": "LADOIX SERRIGNY" }, { - "codePostal": "70110", - "codeCommune": "70332", - "libelleAcheminement": "MARAST", - "nomCommune": "MARAST" + "codePostal": "73400", + "codeCommune": "73153", + "libelleAcheminement": "MARTHOD", + "nomCommune": "MARTHOD" }, { - "codePostal": "71390", - "codeCommune": "71302", - "libelleAcheminement": "MONTAGNY LES BUXY", - "nomCommune": "MONTAGNY LES BUXY" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "46600", - "codeCommune": "46106", - "libelleAcheminement": "FLOIRAC", - "nomCommune": "FLOIRAC" + "codePostal": "63700", + "codeCommune": "63062", + "libelleAcheminement": "BUXIERES SOUS MONTAIGUT", + "nomCommune": "BUXIERES SOUS MONTAIGUT" }, { - "codePostal": "14110", - "codeCommune": "14572", - "libelleAcheminement": "ST DENIS DE MERE", - "nomCommune": "ST DENIS DE MERE" + "codePostal": "73310", + "codeCommune": "73073", + "libelleAcheminement": "CHANAZ", + "nomCommune": "CHANAZ" }, { - "codePostal": "70210", - "codeCommune": "70338", - "libelleAcheminement": "MELINCOURT", - "nomCommune": "MELINCOURT" + "codePostal": "21530", + "codeCommune": "21608", + "libelleAcheminement": "SINCEY LES ROUVRAY", + "nomCommune": "SINCEY LES ROUVRAY" }, { - "codePostal": "71260", - "codeCommune": "71305", - "libelleAcheminement": "MONTBELLET", - "nomCommune": "MONTBELLET" + "codePostal": "73170", + "codeCommune": "73156", + "libelleAcheminement": "MEYRIEUX TROUET", + "nomCommune": "MEYRIEUX TROUET" }, { - "codePostal": "46310", - "codeCommune": "46113", - "libelleAcheminement": "FRAYSSINET", - "nomCommune": "FRAYSSINET" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "14140", - "codeCommune": "14576", - "libelleAcheminement": "VAL DE VIE", - "nomCommune": "VAL DE VIE" + "codePostal": "63250", + "codeCommune": "63072", + "libelleAcheminement": "CHABRELOCHE", + "nomCommune": "CHABRELOCHE" }, { - "codePostal": "70270", - "codeCommune": "70339", - "libelleAcheminement": "MELISEY", - "nomCommune": "MELISEY" + "codePostal": "73110", + "codeCommune": "73075", + "libelleAcheminement": "LA CHAPELLE BLANCHE", + "nomCommune": "LA CHAPELLE BLANCHE" }, { - "codePostal": "71110", - "codeCommune": "71307", - "libelleAcheminement": "MONTCEAUX L ETOILE", - "nomCommune": "MONTCEAUX L ETOILE" + "codePostal": "21270", + "codeCommune": "21610", + "libelleAcheminement": "SOISSONS SUR NACEY", + "nomCommune": "SOISSONS SUR NACEY" }, { - "codePostal": "46600", - "codeCommune": "46118", - "libelleAcheminement": "GIGNAC", - "nomCommune": "GIGNAC" + "codePostal": "73350", + "codeCommune": "73161", + "libelleAcheminement": "MONTAGNY", + "nomCommune": "MONTAGNY" }, { - "codePostal": "14520", - "codeCommune": "14591", - "libelleAcheminement": "AURE SUR MER", - "nomCommune": "AURE SUR MER" + "codePostal": "61150", + "codeCommune": "61479", + "libelleAcheminement": "TANQUES", + "nomCommune": "TANQUES" }, { - "codePostal": "70700", - "codeCommune": "70356", - "libelleAcheminement": "MONTBOILLON", - "nomCommune": "MONTBOILLON" + "codePostal": "63580", + "codeCommune": "63079", + "libelleAcheminement": "CHAMPAGNAT LE JEUNE", + "nomCommune": "CHAMPAGNAT LE JEUNE" }, { - "codePostal": "71210", - "codeCommune": "71310", - "libelleAcheminement": "MONTCHANIN", - "nomCommune": "MONTCHANIN" + "codePostal": "73800", + "codeCommune": "73082", + "libelleAcheminement": "LA CHAVANNE", + "nomCommune": "LA CHAVANNE" }, { - "codePostal": "46500", - "codeCommune": "46128", - "libelleAcheminement": "GRAMAT", - "nomCommune": "GRAMAT" + "codePostal": "21540", + "codeCommune": "21611", + "libelleAcheminement": "SOMBERNON", + "nomCommune": "SOMBERNON" }, { - "codePostal": "14210", - "codeCommune": "14592", - "libelleAcheminement": "STE HONORINE DU FAY", - "nomCommune": "STE HONORINE DU FAY" + "codePostal": "73600", + "codeCommune": "73181", + "libelleAcheminement": "MOUTIERS TARENTAISE", + "nomCommune": "MOUTIERS" }, { - "codePostal": "70180", - "codeCommune": "70368", - "libelleAcheminement": "MONTOT", - "nomCommune": "MONTOT" + "codePostal": "61330", + "codeCommune": "61487", + "libelleAcheminement": "TORCHAMP", + "nomCommune": "TORCHAMP" }, { - "codePostal": "71620", - "codeCommune": "71312", - "libelleAcheminement": "MONTCOY", - "nomCommune": "MONTCOY" + "codePostal": "63440", + "codeCommune": "63082", + "libelleAcheminement": "CHAMPS", + "nomCommune": "CHAMPS" }, { - "codePostal": "46120", - "codeCommune": "46139", - "libelleAcheminement": "LABATHUDE", - "nomCommune": "LABATHUDE" + "codePostal": "73800", + "codeCommune": "73084", + "libelleAcheminement": "CHIGNIN", + "nomCommune": "CHIGNIN" }, { - "codePostal": "14220", - "codeCommune": "14603", - "libelleAcheminement": "ST LAURENT DE CONDEL", - "nomCommune": "ST LAURENT DE CONDEL" + "codePostal": "21430", + "codeCommune": "21615", + "libelleAcheminement": "SUSSEY", + "nomCommune": "SUSSEY" }, { - "codePostal": "70120", - "codeCommune": "70369", - "libelleAcheminement": "MONT ST LEGER", - "nomCommune": "MONT ST LEGER" + "codePostal": "73260", + "codeCommune": "73187", + "libelleAcheminement": "LA LECHERE", + "nomCommune": "LA LECHERE" }, { - "codePostal": "71400", - "codeCommune": "71313", - "libelleAcheminement": "MONTHELON", - "nomCommune": "MONTHELON" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "46700", - "codeCommune": "46142", - "libelleAcheminement": "LACAPELLE CABANAC", - "nomCommune": "LACAPELLE CABANAC" + "codePostal": "63450", + "codeCommune": "63084", + "libelleAcheminement": "CHANONAT", + "nomCommune": "CHANONAT" }, { - "codePostal": "14710", - "codeCommune": "14605", - "libelleAcheminement": "ST LAURENT SUR MER", - "nomCommune": "ST LAURENT SUR MER" + "codePostal": "73160", + "codeCommune": "73087", + "libelleAcheminement": "COGNIN", + "nomCommune": "COGNIN" }, { - "codePostal": "70140", - "codeCommune": "70374", - "libelleAcheminement": "MOTEY BESUCHE", - "nomCommune": "MOTEY BESUCHE" + "codePostal": "21310", + "codeCommune": "21619", + "libelleAcheminement": "TANAY", + "nomCommune": "TANAY" }, { - "codePostal": "71300", - "codeCommune": "71320", - "libelleAcheminement": "MONT ST VINCENT", - "nomCommune": "MONT ST VINCENT" + "codePostal": "73260", + "codeCommune": "73187", + "libelleAcheminement": "LA LECHERE", + "nomCommune": "LA LECHERE" }, { - "codePostal": "46400", - "codeCommune": "46146", - "libelleAcheminement": "LADIRAT", - "nomCommune": "LADIRAT" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "14400", - "codeCommune": "14609", - "libelleAcheminement": "ST LOUP HORS", - "nomCommune": "ST LOUP HORS" + "codePostal": "63230", + "codeCommune": "63085", + "libelleAcheminement": "CHAPDES BEAUFORT", + "nomCommune": "CHAPDES BEAUFORT" }, { - "codePostal": "70130", - "codeCommune": "70384", - "libelleAcheminement": "NEUVELLE LES LA CHARITE", - "nomCommune": "NEUVELLE LES LA CHARITE" + "codePostal": "73160", + "codeCommune": "73092", + "libelleAcheminement": "CORBEL", + "nomCommune": "CORBEL" }, { - "codePostal": "71160", - "codeCommune": "71325", - "libelleAcheminement": "LA MOTTE ST JEAN", - "nomCommune": "LA MOTTE ST JEAN" + "codePostal": "21210", + "codeCommune": "21629", + "libelleAcheminement": "THOISY LA BERCHERE", + "nomCommune": "THOISY LA BERCHERE" }, { - "codePostal": "46230", - "codeCommune": "46148", - "libelleAcheminement": "LALBENQUE", - "nomCommune": "LALBENQUE" + "codePostal": "73460", + "codeCommune": "73188", + "libelleAcheminement": "NOTRE DAME DES MILLIERES", + "nomCommune": "NOTRE DAME DES MILLIERES" }, { - "codePostal": "14320", - "codeCommune": "14623", - "libelleAcheminement": "ST MARTIN DE FONTENAY", - "nomCommune": "ST MARTIN DE FONTENAY" + "codePostal": "61400", + "codeCommune": "61507", + "libelleAcheminement": "VILLIERS SOUS MORTAGNE", + "nomCommune": "VILLIERS SOUS MORTAGNE" }, { - "codePostal": "70000", - "codeCommune": "70388", - "libelleAcheminement": "NOIDANS LES VESOUL", - "nomCommune": "NOIDANS LES VESOUL" + "codePostal": "63160", + "codeCommune": "63096", + "libelleAcheminement": "CHAS", + "nomCommune": "CHAS" }, { - "codePostal": "71170", - "codeCommune": "71327", - "libelleAcheminement": "MUSSY SOUS DUN", - "nomCommune": "MUSSY SOUS DUN" + "codePostal": "73190", + "codeCommune": "73097", + "libelleAcheminement": "CURIENNE", + "nomCommune": "CURIENNE" }, { - "codePostal": "46260", - "codeCommune": "46154", - "libelleAcheminement": "LARAMIERE", - "nomCommune": "LARAMIERE" + "codePostal": "21360", + "codeCommune": "21631", + "libelleAcheminement": "THOMIREY", + "nomCommune": "THOMIREY" }, { - "codePostal": "14950", - "codeCommune": "14645", - "libelleAcheminement": "ST PIERRE AZIF", - "nomCommune": "ST PIERRE AZIF" + "codePostal": "73600", + "codeCommune": "73190", + "libelleAcheminement": "NOTRE DAME DU PRE", + "nomCommune": "NOTRE DAME DU PRE" }, { - "codePostal": "70200", - "codeCommune": "70403", - "libelleAcheminement": "PALANTE", - "nomCommune": "PALANTE" + "codePostal": "61210", + "codeCommune": "61512", + "libelleAcheminement": "LES YVETEAUX", + "nomCommune": "LES YVETEAUX" }, { - "codePostal": "71130", - "codeCommune": "71330", - "libelleAcheminement": "NEUVY GRANDCHAMP", - "nomCommune": "NEUVY GRANDCHAMP" + "codePostal": "63320", + "codeCommune": "63097", + "libelleAcheminement": "CHASSAGNE", + "nomCommune": "CHASSAGNE" }, { - "codePostal": "46130", - "codeCommune": "46163", - "libelleAcheminement": "LAVAL DE CERE", - "nomCommune": "LAVAL DE CERE" + "codePostal": "73630", + "codeCommune": "73106", + "libelleAcheminement": "ECOLE", + "nomCommune": "ECOLE" }, { - "codePostal": "14700", - "codeCommune": "14649", - "libelleAcheminement": "ST PIERRE DU BU", - "nomCommune": "ST PIERRE DU BU" + "codePostal": "21110", + "codeCommune": "21632", + "libelleAcheminement": "THOREY EN PLAINE", + "nomCommune": "THOREY EN PLAINE" }, { - "codePostal": "70600", - "codeCommune": "70406", - "libelleAcheminement": "PERCEY LE GRAND", - "nomCommune": "PERCEY LE GRAND" + "codePostal": "73340", + "codeCommune": "73192", + "libelleAcheminement": "LE NOYER", + "nomCommune": "LE NOYER" }, { - "codePostal": "71430", - "codeCommune": "71340", - "libelleAcheminement": "PALINGES", - "nomCommune": "PALINGES" + "codePostal": "62217", + "codeCommune": "62004", + "libelleAcheminement": "ACHICOURT", + "nomCommune": "ACHICOURT" }, { - "codePostal": "46340", - "codeCommune": "46164", - "libelleAcheminement": "LAVERCANTIERE", - "nomCommune": "LAVERCANTIERE" + "codePostal": "63680", + "codeCommune": "63098", + "libelleAcheminement": "CHASTREIX", + "nomCommune": "CHASTREIX" }, { - "codePostal": "14670", - "codeCommune": "14651", - "libelleAcheminement": "ST PIERRE DU JONQUET", - "nomCommune": "ST PIERRE DU JONQUET" + "codePostal": "73620", + "codeCommune": "73132", + "libelleAcheminement": "HAUTELUCE", + "nomCommune": "HAUTELUCE" }, { - "codePostal": "70190", - "codeCommune": "70407", - "libelleAcheminement": "PERROUSE", - "nomCommune": "PERROUSE" + "codePostal": "21120", + "codeCommune": "21638", + "libelleAcheminement": "TIL CHATEL", + "nomCommune": "TIL CHATEL" }, { - "codePostal": "71350", - "codeCommune": "71341", - "libelleAcheminement": "PALLEAU", - "nomCommune": "PALLEAU" + "codePostal": "73140", + "codeCommune": "73194", + "libelleAcheminement": "ORELLE", + "nomCommune": "ORELLE" }, { - "codePostal": "46120", - "codeCommune": "46170", - "libelleAcheminement": "LEYME", - "nomCommune": "LEYME" + "codePostal": "62121", + "codeCommune": "62006", + "libelleAcheminement": "ACHIET LE PETIT", + "nomCommune": "ACHIET LE PETIT" }, { - "codePostal": "14140", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "63119", + "codeCommune": "63099", + "libelleAcheminement": "CHATEAUGAY", + "nomCommune": "CHATEAUGAY" }, { - "codePostal": "70800", - "codeCommune": "70412", - "libelleAcheminement": "PLAINEMONT", - "nomCommune": "PLAINEMONT" + "codePostal": "73390", + "codeCommune": "73133", + "libelleAcheminement": "HAUTEVILLE", + "nomCommune": "HAUTEVILLE" }, { - "codePostal": "71150", - "codeCommune": "71343", - "libelleAcheminement": "PARIS L HOPITAL", - "nomCommune": "PARIS L HOPITAL" + "codePostal": "21310", + "codeCommune": "21644", + "libelleAcheminement": "TROCHERES", + "nomCommune": "TROCHERES" }, { - "codePostal": "46140", - "codeCommune": "46182", - "libelleAcheminement": "LUZECH", - "nomCommune": "LUZECH" + "codePostal": "73200", + "codeCommune": "73202", + "libelleAcheminement": "PLANCHERINE", + "nomCommune": "PLANCHERINE" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "62380", + "codeCommune": "62008", + "libelleAcheminement": "ACQUIN WESTBECOURT", + "nomCommune": "ACQUIN WESTBECOURT" }, { - "codePostal": "70290", - "codeCommune": "70414", - "libelleAcheminement": "PLANCHER LES MINES", - "nomCommune": "PLANCHER LES MINES" + "codePostal": "63330", + "codeCommune": "63101", + "libelleAcheminement": "CHATEAU SUR CHER", + "nomCommune": "CHATEAU SUR CHER" }, { - "codePostal": "71420", - "codeCommune": "71346", - "libelleAcheminement": "PERRECY LES FORGES", - "nomCommune": "PERRECY LES FORGES" + "codePostal": "73300", + "codeCommune": "73135", + "libelleAcheminement": "LA TOUR EN MAURIENNE", + "nomCommune": "LA TOUR EN MAURIENNE" }, { - "codePostal": "46600", - "codeCommune": "46185", - "libelleAcheminement": "MARTEL", - "nomCommune": "MARTEL" + "codePostal": "21540", + "codeCommune": "21648", + "libelleAcheminement": "TURCEY", + "nomCommune": "TURCEY" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "73110", + "codeCommune": "73207", + "libelleAcheminement": "PRESLE", + "nomCommune": "PRESLE" }, { - "codePostal": "70130", - "codeCommune": "70418", - "libelleAcheminement": "LA ROMAINE", - "nomCommune": "LA ROMAINE" + "codePostal": "62180", + "codeCommune": "62016", + "libelleAcheminement": "AIRON ST VAAST", + "nomCommune": "AIRON ST VAAST" }, { - "codePostal": "71510", - "codeCommune": "71347", - "libelleAcheminement": "PERREUIL", - "nomCommune": "PERREUIL" + "codePostal": "63140", + "codeCommune": "63103", + "libelleAcheminement": "CHATEL GUYON", + "nomCommune": "CHATEL GUYON" }, { - "codePostal": "46350", - "codeCommune": "46186", - "libelleAcheminement": "MASCLAT", - "nomCommune": "MASCLAT" + "codePostal": "73210", + "codeCommune": "73150", + "libelleAcheminement": "LA PLAGNE TARENTAISE", + "nomCommune": "LA PLAGNE TARENTAISE" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "21121", + "codeCommune": "21651", + "libelleAcheminement": "VAL SUZON", + "nomCommune": "VAL SUZON" }, { - "codePostal": "70170", - "codeCommune": "70421", - "libelleAcheminement": "PORT SUR SAONE", - "nomCommune": "PORT SUR SAONE" + "codePostal": "73110", + "codeCommune": "73215", + "libelleAcheminement": "VALGELON LA ROCHETTE", + "nomCommune": "VALGELON LA ROCHETTE" }, { - "codePostal": "71960", - "codeCommune": "71350", - "libelleAcheminement": "PIERRECLOS", - "nomCommune": "PIERRECLOS" + "codePostal": "62650", + "codeCommune": "62017", + "libelleAcheminement": "AIX EN ERGNY", + "nomCommune": "AIX EN ERGNY" }, { - "codePostal": "46500", - "codeCommune": "46189", - "libelleAcheminement": "MAYRINHAC LENTOUR", - "nomCommune": "MAYRINHAC LENTOUR" + "codePostal": "63720", + "codeCommune": "63112", + "libelleAcheminement": "CLERLANDE", + "nomCommune": "CLERLANDE" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "73420", + "codeCommune": "73155", + "libelleAcheminement": "MERY", + "nomCommune": "MERY" }, { - "codePostal": "70120", - "codeCommune": "70423", - "libelleAcheminement": "PREIGNEY", - "nomCommune": "PREIGNEY" + "codePostal": "21490", + "codeCommune": "21657", + "libelleAcheminement": "VAROIS ET CHAIGNOT", + "nomCommune": "VAROIS ET CHAIGNOT" }, { - "codePostal": "71330", - "codeCommune": "71352", - "libelleAcheminement": "LE PLANOIS", - "nomCommune": "LE PLANOIS" + "codePostal": "73730", + "codeCommune": "73216", + "libelleAcheminement": "ROGNAIX", + "nomCommune": "ROGNAIX" }, { - "codePostal": "46500", - "codeCommune": "46193", - "libelleAcheminement": "MIERS", - "nomCommune": "MIERS" + "codePostal": "62157", + "codeCommune": "62023", + "libelleAcheminement": "ALLOUAGNE", + "nomCommune": "ALLOUAGNE" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "63380", + "codeCommune": "63115", + "libelleAcheminement": "COMBRAILLES", + "nomCommune": "COMBRAILLES" }, { - "codePostal": "70000", - "codeCommune": "70429", - "libelleAcheminement": "PUSY ET EPENOUX", - "nomCommune": "PUSY ET EPENOUX" + "codePostal": "73800", + "codeCommune": "73159", + "libelleAcheminement": "LES MOLLETTES", + "nomCommune": "LES MOLLETTES" }, { - "codePostal": "71220", - "codeCommune": "71358", - "libelleAcheminement": "PRESSY SOUS DONDIN", - "nomCommune": "PRESSY SOUS DONDIN" + "codePostal": "21360", + "codeCommune": "21660", + "libelleAcheminement": "VEILLY", + "nomCommune": "VEILLY" }, { - "codePostal": "46300", - "codeCommune": "46194", - "libelleAcheminement": "MILHAC", - "nomCommune": "MILHAC" + "codePostal": "73130", + "codeCommune": "73221", + "libelleAcheminement": "ST ALBAN DES VILLARDS", + "nomCommune": "ST ALBAN DES VILLARDS" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "62164", + "codeCommune": "62025", + "libelleAcheminement": "AMBLETEUSE", + "nomCommune": "AMBLETEUSE" }, { - "codePostal": "70120", - "codeCommune": "70430", - "libelleAcheminement": "LA QUARTE", - "nomCommune": "LA QUARTE" + "codePostal": "63610", + "codeCommune": "63117", + "libelleAcheminement": "COMPAINS", + "nomCommune": "COMPAINS" }, { - "codePostal": "71290", - "codeCommune": "71365", - "libelleAcheminement": "RANCY", - "nomCommune": "RANCY" + "codePostal": "73460", + "codeCommune": "73162", + "libelleAcheminement": "MONTAILLEUR", + "nomCommune": "MONTAILLEUR" }, { - "codePostal": "46210", - "codeCommune": "46203", - "libelleAcheminement": "MONTET ET BOUXAL", - "nomCommune": "MONTET ET BOUXAL" + "codePostal": "21540", + "codeCommune": "21669", + "libelleAcheminement": "VERREY SOUS DREE", + "nomCommune": "VERREY SOUS DREE" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "73230", + "codeCommune": "73222", + "libelleAcheminement": "ST ALBAN LEYSSE", + "nomCommune": "ST ALBAN LEYSSE" }, { - "codePostal": "70000", - "codeCommune": "70433", - "libelleAcheminement": "QUINCEY", - "nomCommune": "QUINCEY" + "codePostal": "62223", + "codeCommune": "62037", + "libelleAcheminement": "ANZIN ST AUBIN", + "nomCommune": "ANZIN ST AUBIN" }, { - "codePostal": "71290", - "codeCommune": "71366", - "libelleAcheminement": "RATENELLE", - "nomCommune": "RATENELLE" + "codePostal": "63380", + "codeCommune": "63118", + "libelleAcheminement": "CONDAT EN COMBRAILLE", + "nomCommune": "CONDAT EN COMBRAILLE" }, { - "codePostal": "46350", - "codeCommune": "46209", - "libelleAcheminement": "NADAILLAC DE ROUGE", - "nomCommune": "NADAILLAC DE ROUGE" + "codePostal": "73800", + "codeCommune": "73171", + "libelleAcheminement": "MONTMELIAN", + "nomCommune": "MONTMELIAN" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "21350", + "codeCommune": "21672", + "libelleAcheminement": "VESVRES", + "nomCommune": "VESVRES" }, { - "codePostal": "70140", - "codeCommune": "70443", - "libelleAcheminement": "LA GRANDE RESIE", - "nomCommune": "LA GRANDE RESIE" + "codePostal": "73500", + "codeCommune": "73223", + "libelleAcheminement": "ST ANDRE", + "nomCommune": "ST ANDRE" }, { - "codePostal": "71500", - "codeCommune": "71367", - "libelleAcheminement": "RATTE", - "nomCommune": "RATTE" + "codePostal": "62580", + "codeCommune": "62039", + "libelleAcheminement": "ARLEUX EN GOHELLE", + "nomCommune": "ARLEUX EN GOHELLE" }, { - "codePostal": "46500", - "codeCommune": "46213", - "libelleAcheminement": "PADIRAC", - "nomCommune": "PADIRAC" + "codePostal": "63450", + "codeCommune": "63123", + "libelleAcheminement": "COURNOLS", + "nomCommune": "COURNOLS" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "73870", + "codeCommune": "73173", + "libelleAcheminement": "MONTRICHER ALBANNE", + "nomCommune": "MONTRICHER ALBANNE" }, { - "codePostal": "70200", - "codeCommune": "70445", - "libelleAcheminement": "RIGNOVELLE", - "nomCommune": "RIGNOVELLE" + "codePostal": "21360", + "codeCommune": "21677", + "libelleAcheminement": "VIC DES PRES", + "nomCommune": "VIC DES PRES" }, { - "codePostal": "71540", - "codeCommune": "71368", - "libelleAcheminement": "RECLESNE", - "nomCommune": "RECLESNE" + "codePostal": "73130", + "codeCommune": "73224", + "libelleAcheminement": "ST AVRE", + "nomCommune": "ST AVRE" }, { - "codePostal": "46260", - "codeCommune": "46230", - "libelleAcheminement": "PUYJOURDES", - "nomCommune": "PUYJOURDES" + "codePostal": "62170", + "codeCommune": "62044", + "libelleAcheminement": "ATTIN", + "nomCommune": "ATTIN" }, { - "codePostal": "14190", - "codeCommune": "14659", - "libelleAcheminement": "ST SYLVAIN", - "nomCommune": "ST SYLVAIN" + "codePostal": "63450", + "codeCommune": "63126", + "libelleAcheminement": "LE CREST", + "nomCommune": "LE CREST" }, { - "codePostal": "70250", - "codeCommune": "70451", - "libelleAcheminement": "RONCHAMP", - "nomCommune": "RONCHAMP" + "codePostal": "73300", + "codeCommune": "73177", + "libelleAcheminement": "MONTVERNIER", + "nomCommune": "MONTVERNIER" }, { - "codePostal": "71260", - "codeCommune": "71383", - "libelleAcheminement": "ST ALBAIN", - "nomCommune": "ST ALBAIN" + "codePostal": "21460", + "codeCommune": "21681", + "libelleAcheminement": "VIEUX CHATEAU", + "nomCommune": "VIEUX CHATEAU" }, { - "codePostal": "46500", - "codeCommune": "46235", - "libelleAcheminement": "REILHAC", - "nomCommune": "REILHAC" + "codePostal": "73120", + "codeCommune": "73227", + "libelleAcheminement": "COURCHEVEL", + "nomCommune": "COURCHEVEL" }, { - "codePostal": "14400", - "codeCommune": "14663", - "libelleAcheminement": "ST VIGOR LE GRAND", - "nomCommune": "ST VIGOR LE GRAND" + "codePostal": "62690", + "codeCommune": "62045", + "libelleAcheminement": "AUBIGNY EN ARTOIS", + "nomCommune": "AUBIGNY EN ARTOIS" }, { - "codePostal": "70190", - "codeCommune": "70456", - "libelleAcheminement": "RUHANS", - "nomCommune": "RUHANS" + "codePostal": "63700", + "codeCommune": "63130", + "libelleAcheminement": "LA CROUZILLE", + "nomCommune": "LA CROUZILLE" }, { - "codePostal": "71140", - "codeCommune": "71389", - "libelleAcheminement": "ST AUBIN SUR LOIRE", - "nomCommune": "ST AUBIN SUR LOIRE" + "codePostal": "73260", + "codeCommune": "73187", + "libelleAcheminement": "LA LECHERE", + "nomCommune": "LA LECHERE" }, { - "codePostal": "46300", - "codeCommune": "46241", - "libelleAcheminement": "ROUFFILHAC", - "nomCommune": "ROUFFILHAC" + "codePostal": "21310", + "codeCommune": "21682", + "libelleAcheminement": "VIEVIGNE", + "nomCommune": "VIEVIGNE" }, { - "codePostal": "14190", - "codeCommune": "14674", - "libelleAcheminement": "SOIGNOLLES", - "nomCommune": "SOIGNOLLES" + "codePostal": "73120", + "codeCommune": "73227", + "libelleAcheminement": "COURCHEVEL", + "nomCommune": "COURCHEVEL" }, { - "codePostal": "70360", - "codeCommune": "70457", - "libelleAcheminement": "RUPT SUR SAONE", - "nomCommune": "RUPT SUR SAONE" + "codePostal": "62260", + "codeCommune": "62048", + "libelleAcheminement": "AUCHEL", + "nomCommune": "AUCHEL" }, { - "codePostal": "71310", - "codeCommune": "71396", - "libelleAcheminement": "ST BONNET EN BRESSE", - "nomCommune": "ST BONNET EN BRESSE" + "codePostal": "63590", + "codeCommune": "63132", + "libelleAcheminement": "CUNLHAT", + "nomCommune": "CUNLHAT" }, { - "codePostal": "46210", - "codeCommune": "46244", - "libelleAcheminement": "SABADEL LATRONQUIERE", - "nomCommune": "SABADEL LATRONQUIERE" + "codePostal": "73260", + "codeCommune": "73187", + "libelleAcheminement": "LA LECHERE", + "nomCommune": "LA LECHERE" }, { - "codePostal": "14540", - "codeCommune": "14675", - "libelleAcheminement": "SOLIERS", - "nomCommune": "SOLIERS" + "codePostal": "21230", + "codeCommune": "21683", + "libelleAcheminement": "VIEVY", + "nomCommune": "VIEVY" }, { - "codePostal": "70100", - "codeCommune": "70461", - "libelleAcheminement": "ST BROING", - "nomCommune": "ST BROING" + "codePostal": "73360", + "codeCommune": "73233", + "libelleAcheminement": "ST FRANC", + "nomCommune": "ST FRANC" }, { - "codePostal": "71240", - "codeCommune": "71402", - "libelleAcheminement": "ST CYR", - "nomCommune": "ST CYR" + "codePostal": "62190", + "codeCommune": "62049", + "libelleAcheminement": "AUCHY AU BOIS", + "nomCommune": "AUCHY AU BOIS" }, { - "codePostal": "46330", - "codeCommune": "46256", - "libelleAcheminement": "ST CIRQ LAPOPIE", - "nomCommune": "ST CIRQ LAPOPIE" + "codePostal": "63700", + "codeCommune": "63140", + "libelleAcheminement": "DURMIGNAT", + "nomCommune": "DURMIGNAT" }, { - "codePostal": "14130", - "codeCommune": "14682", - "libelleAcheminement": "SURVILLE", - "nomCommune": "SURVILLE" + "codePostal": "73260", + "codeCommune": "73187", + "libelleAcheminement": "LA LECHERE", + "nomCommune": "LA LECHERE" }, { - "codePostal": "70100", - "codeCommune": "70466", - "libelleAcheminement": "ST LOUP NANTOUARD", - "nomCommune": "ST LOUP NANTOUARD" + "codePostal": "21400", + "codeCommune": "21700", + "libelleAcheminement": "VILLERS PATRAS", + "nomCommune": "VILLERS PATRAS" }, { - "codePostal": "71390", - "codeCommune": "71404", - "libelleAcheminement": "ST DESERT", - "nomCommune": "ST DESERT" + "codePostal": "73340", + "codeCommune": "73234", + "libelleAcheminement": "ST FRANCOIS DE SALES", + "nomCommune": "ST FRANCOIS DE SALES" }, { - "codePostal": "46300", - "codeCommune": "46257", - "libelleAcheminement": "ST CIRQ MADELON", - "nomCommune": "ST CIRQ MADELON" + "codePostal": "62560", + "codeCommune": "62053", + "libelleAcheminement": "AUDINCTHUN", + "nomCommune": "AUDINCTHUN" }, { - "codePostal": "14220", - "codeCommune": "14689", - "libelleAcheminement": "LE HOM", - "nomCommune": "LE HOM" + "codePostal": "63980", + "codeCommune": "63142", + "libelleAcheminement": "ECHANDELYS", + "nomCommune": "ECHANDELYS" }, { - "codePostal": "70800", - "codeCommune": "70467", - "libelleAcheminement": "ST LOUP SUR SEMOUSE", - "nomCommune": "ST LOUP SUR SEMOUSE" + "codePostal": "73310", + "codeCommune": "73193", + "libelleAcheminement": "ONTEX", + "nomCommune": "ONTEX" }, { - "codePostal": "71110", - "codeCommune": "71406", - "libelleAcheminement": "ST DIDIER EN BRIONNAIS", - "nomCommune": "ST DIDIER EN BRIONNAIS" + "codePostal": "21130", + "codeCommune": "21701", + "libelleAcheminement": "VILLERS ROTIN", + "nomCommune": "VILLERS ROTIN" }, { - "codePostal": "46300", - "codeCommune": "46258", - "libelleAcheminement": "ST CIRQ SOUILLAGUET", - "nomCommune": "ST CIRQ SOUILLAGUET" + "codePostal": "73130", + "codeCommune": "73235", + "libelleAcheminement": "ST FRANCOIS LONGCHAMP", + "nomCommune": "ST FRANCOIS LONGCHAMP" }, { - "codePostal": "14220", - "codeCommune": "14689", - "libelleAcheminement": "LE HOM", - "nomCommune": "LE HOM" + "codePostal": "62370", + "codeCommune": "62057", + "libelleAcheminement": "AUDRUICQ", + "nomCommune": "AUDRUICQ" }, { - "codePostal": "70500", - "codeCommune": "70468", - "libelleAcheminement": "ST MARCEL", - "nomCommune": "ST MARCEL" + "codePostal": "63840", + "codeCommune": "63147", + "libelleAcheminement": "EGLISOLLES", + "nomCommune": "EGLISOLLES" }, { - "codePostal": "71320", - "codeCommune": "71411", - "libelleAcheminement": "ST EUGENE", - "nomCommune": "ST EUGENE" + "codePostal": "73100", + "codeCommune": "73208", + "libelleAcheminement": "PUGNY CHATENOD", + "nomCommune": "PUGNY CHATENOD" }, { - "codePostal": "46800", - "codeCommune": "46262", - "libelleAcheminement": "LENDOU EN QUERCY", - "nomCommune": "LENDOU EN QUERCY" + "codePostal": "21430", + "codeCommune": "21703", + "libelleAcheminement": "VILLIERS EN MORVAN", + "nomCommune": "VILLIERS EN MORVAN" }, { - "codePostal": "14220", - "codeCommune": "14689", - "libelleAcheminement": "LE HOM", - "nomCommune": "LE HOM" + "codePostal": "73130", + "codeCommune": "73235", + "libelleAcheminement": "ST FRANCOIS LONGCHAMP", + "nomCommune": "ST FRANCOIS LONGCHAMP" }, { - "codePostal": "70240", - "codeCommune": "70478", - "libelleAcheminement": "SAULX", - "nomCommune": "SAULX" + "codePostal": "62550", + "codeCommune": "62058", + "libelleAcheminement": "AUMERVAL", + "nomCommune": "AUMERVAL" }, { - "codePostal": "71390", - "codeCommune": "71422", - "libelleAcheminement": "ST GERMAIN LES BUXY", - "nomCommune": "ST GERMAIN LES BUXY" + "codePostal": "63720", + "codeCommune": "63148", + "libelleAcheminement": "ENNEZAT", + "nomCommune": "ENNEZAT" }, { - "codePostal": "46800", - "codeCommune": "46263", - "libelleAcheminement": "BARGUELONNE EN QUERCY", - "nomCommune": "BARGUELONNE EN QUERCY" + "codePostal": "73110", + "codeCommune": "73215", + "libelleAcheminement": "VALGELON LA ROCHETTE", + "nomCommune": "VALGELON LA ROCHETTE" }, { - "codePostal": "14250", - "codeCommune": "14692", - "libelleAcheminement": "TILLY SUR SEULLES", - "nomCommune": "TILLY SUR SEULLES" + "codePostal": "22810", + "codeCommune": "22005", + "libelleAcheminement": "BELLE ISLE EN TERRE", + "nomCommune": "BELLE ISLE EN TERRE" }, { - "codePostal": "70100", - "codeCommune": "70479", - "libelleAcheminement": "SAUVIGNEY LES GRAY", - "nomCommune": "SAUVIGNEY LES GRAY" + "codePostal": "73800", + "codeCommune": "73240", + "libelleAcheminement": "STE HELENE DU LAC", + "nomCommune": "STE HELENE DU LAC" }, { - "codePostal": "71350", - "codeCommune": "71423", - "libelleAcheminement": "ST GERVAIS EN VALLIERE", - "nomCommune": "ST GERVAIS EN VALLIERE" + "codePostal": "62450", + "codeCommune": "62064", + "libelleAcheminement": "AVESNES LES BAPAUME", + "nomCommune": "AVESNES LES BAPAUME" }, { - "codePostal": "46090", - "codeCommune": "46268", - "libelleAcheminement": "ST GERY VERS", - "nomCommune": "ST GERY VERS" + "codePostal": "63850", + "codeCommune": "63153", + "libelleAcheminement": "ESPINCHAL", + "nomCommune": "ESPINCHAL" }, { - "codePostal": "14800", - "codeCommune": "14699", - "libelleAcheminement": "TOUQUES", - "nomCommune": "TOUQUES" + "codePostal": "73110", + "codeCommune": "73217", + "libelleAcheminement": "ROTHERENS", + "nomCommune": "ROTHERENS" }, { - "codePostal": "70120", - "codeCommune": "70486", - "libelleAcheminement": "SEMMADON", - "nomCommune": "SEMMADON" + "codePostal": "22100", + "codeCommune": "22008", + "libelleAcheminement": "BOBITAL", + "nomCommune": "BOBITAL" }, { - "codePostal": "71600", - "codeCommune": "71439", - "libelleAcheminement": "ST LEGER LES PARAY", - "nomCommune": "ST LEGER LES PARAY" + "codePostal": "73300", + "codeCommune": "73248", + "libelleAcheminement": "ST JEAN DE MAURIENNE", + "nomCommune": "ST JEAN DE MAURIENNE" }, { - "codePostal": "46330", - "codeCommune": "46268", - "libelleAcheminement": "ST GERY VERS", - "nomCommune": "ST GERY VERS" + "codePostal": "62123", + "codeCommune": "62074", + "libelleAcheminement": "BAILLEULVAL", + "nomCommune": "BAILLEULVAL" }, { - "codePostal": "14800", - "codeCommune": "14701", - "libelleAcheminement": "TOURGEVILLE", - "nomCommune": "TOURGEVILLE" + "codePostal": "63500", + "codeCommune": "63160", + "libelleAcheminement": "AULHAT FLAT", + "nomCommune": "AULHAT FLAT" }, { - "codePostal": "70110", - "codeCommune": "70487", - "libelleAcheminement": "SENARGENT MIGNAFANS", - "nomCommune": "SENARGENT MIGNAFANS" + "codePostal": "73310", + "codeCommune": "73218", + "libelleAcheminement": "RUFFIEUX", + "nomCommune": "RUFFIEUX" }, { - "codePostal": "71640", - "codeCommune": "71459", - "libelleAcheminement": "ST MARTIN SOUS MONTAIGU", - "nomCommune": "ST MARTIN SOUS MONTAIGU" + "codePostal": "22320", + "codeCommune": "22009", + "libelleAcheminement": "LE BODEO", + "nomCommune": "LE BODEO" }, { - "codePostal": "46210", - "codeCommune": "46282", - "libelleAcheminement": "ST MEDARD NICOURBY", - "nomCommune": "ST MEDARD NICOURBY" + "codePostal": "73130", + "codeCommune": "73255", + "libelleAcheminement": "STE MARIE DE CUINES", + "nomCommune": "STE MARIE DE CUINES" }, { - "codePostal": "14130", - "codeCommune": "14706", - "libelleAcheminement": "TOURVILLE EN AUGE", - "nomCommune": "TOURVILLE EN AUGE" + "codePostal": "62610", + "codeCommune": "62078", + "libelleAcheminement": "BALINGHEM", + "nomCommune": "BALINGHEM" }, { - "codePostal": "70130", - "codeCommune": "70491", - "libelleAcheminement": "SEVEUX MOTEY", - "nomCommune": "SEVEUX MOTEY" + "codePostal": "63500", + "codeCommune": "63160", + "libelleAcheminement": "AULHAT FLAT", + "nomCommune": "AULHAT FLAT" }, { - "codePostal": "71460", - "codeCommune": "71461", - "libelleAcheminement": "ST MAURICE DES CHAMPS", - "nomCommune": "ST MAURICE DES CHAMPS" + "codePostal": "73160", + "codeCommune": "73228", + "libelleAcheminement": "ST CASSIN", + "nomCommune": "ST CASSIN" }, { - "codePostal": "46400", - "codeCommune": "46295", - "libelleAcheminement": "ST VINCENT DU PENDIT", - "nomCommune": "ST VINCENT DU PENDIT" + "codePostal": "22390", + "codeCommune": "22013", + "libelleAcheminement": "BOURBRIAC", + "nomCommune": "BOURBRIAC" }, { - "codePostal": "14210", - "codeCommune": "14707", - "libelleAcheminement": "TOURVILLE SUR ODON", - "nomCommune": "TOURVILLE SUR ODON" + "codePostal": "73140", + "codeCommune": "73256", + "libelleAcheminement": "ST MARTIN D ARC", + "nomCommune": "ST MARTIN D ARC" }, { - "codePostal": "70130", - "codeCommune": "70492", - "libelleAcheminement": "SOING CUBRY CHARENTENAY", - "nomCommune": "SOING CUBRY CHARENTENAY" + "codePostal": "62450", + "codeCommune": "62079", + "libelleAcheminement": "BANCOURT", + "nomCommune": "BANCOURT" }, { - "codePostal": "71190", - "codeCommune": "71466", - "libelleAcheminement": "ST NIZIER SUR ARROUX", - "nomCommune": "ST NIZIER SUR ARROUX" + "codePostal": "63600", + "codeCommune": "63161", + "libelleAcheminement": "LA FORIE", + "nomCommune": "LA FORIE" }, { - "codePostal": "46240", - "codeCommune": "46304", - "libelleAcheminement": "SENIERGUES", - "nomCommune": "SENIERGUES" + "codePostal": "73130", + "codeCommune": "73231", + "libelleAcheminement": "ST ETIENNE DE CUINES", + "nomCommune": "ST ETIENNE DE CUINES" }, { - "codePostal": "14210", - "codeCommune": "14713", - "libelleAcheminement": "MONTILLIERES SUR ORNE", - "nomCommune": "MONTILLIERES SUR ORNE" + "codePostal": "22140", + "codeCommune": "22018", + "libelleAcheminement": "BRELIDY", + "nomCommune": "BRELIDY" }, { - "codePostal": "70120", - "codeCommune": "70502", - "libelleAcheminement": "TINCEY ET PONTREBEAU", - "nomCommune": "TINCEY ET PONTREBEAU" + "codePostal": "73140", + "codeCommune": "73258", + "libelleAcheminement": "ST MARTIN DE LA PORTE", + "nomCommune": "ST MARTIN DE LA PORTE" }, { - "codePostal": "71230", - "codeCommune": "71486", - "libelleAcheminement": "ST VALLIER", - "nomCommune": "ST VALLIER" + "codePostal": "62620", + "codeCommune": "62083", + "libelleAcheminement": "BARLIN", + "nomCommune": "BARLIN" }, { - "codePostal": "46200", - "codeCommune": "46309", - "libelleAcheminement": "SOUILLAC", - "nomCommune": "SOUILLAC" + "codePostal": "63270", + "codeCommune": "63177", + "libelleAcheminement": "ISSERTEAUX", + "nomCommune": "ISSERTEAUX" }, { - "codePostal": "14490", - "codeCommune": "14716", - "libelleAcheminement": "TRUNGY", - "nomCommune": "TRUNGY" + "codePostal": "73240", + "codeCommune": "73236", + "libelleAcheminement": "ST GENIX LES VILLAGES", + "nomCommune": "ST GENIX LES VILLAGES" }, { - "codePostal": "70190", - "codeCommune": "70503", - "libelleAcheminement": "TRAITIEFONTAINE", - "nomCommune": "TRAITIEFONTAINE" + "codePostal": "22170", + "codeCommune": "22019", + "libelleAcheminement": "BRINGOLO", + "nomCommune": "BRINGOLO" }, { - "codePostal": "71570", - "codeCommune": "71487", - "libelleAcheminement": "ST VERAND", - "nomCommune": "ST VERAND" + "codePostal": "73140", + "codeCommune": "73261", + "libelleAcheminement": "ST MICHEL DE MAURIENNE", + "nomCommune": "ST MICHEL DE MAURIENNE" }, { - "codePostal": "46240", - "codeCommune": "46310", - "libelleAcheminement": "SOULOMES", - "nomCommune": "SOULOMES" + "codePostal": "62158", + "codeCommune": "62086", + "libelleAcheminement": "BAVINCOURT", + "nomCommune": "BAVINCOURT" }, { - "codePostal": "14190", - "codeCommune": "14719", - "libelleAcheminement": "URVILLE", - "nomCommune": "URVILLE" + "codePostal": "63570", + "codeCommune": "63182", + "libelleAcheminement": "JUMEAUX", + "nomCommune": "JUMEAUX" }, { - "codePostal": "70360", - "codeCommune": "70504", - "libelleAcheminement": "TRAVES", - "nomCommune": "TRAVES" + "codePostal": "73240", + "codeCommune": "73236", + "libelleAcheminement": "ST GENIX LES VILLAGES", + "nomCommune": "ST GENIX LES VILLAGES" }, { - "codePostal": "71460", - "codeCommune": "71492", - "libelleAcheminement": "ST YTHAIRE", - "nomCommune": "ST YTHAIRE" + "codePostal": "22300", + "codeCommune": "22030", + "libelleAcheminement": "CAOUENNEC LANVEZEAC", + "nomCommune": "CAOUENNEC LANVEZEAC" }, { - "codePostal": "46190", - "codeCommune": "46311", - "libelleAcheminement": "SOUSCEYRAC EN QUERCY", - "nomCommune": "SOUSCEYRAC EN QUERCY" + "codePostal": "73140", + "codeCommune": "73261", + "libelleAcheminement": "ST MICHEL DE MAURIENNE", + "nomCommune": "ST MICHEL DE MAURIENNE" }, { - "codePostal": "14420", - "codeCommune": "14720", - "libelleAcheminement": "USSY", - "nomCommune": "USSY" + "codePostal": "62770", + "codeCommune": "62090", + "libelleAcheminement": "BEALENCOURT", + "nomCommune": "BEALENCOURT" }, { - "codePostal": "70140", - "codeCommune": "70514", - "libelleAcheminement": "VALAY", - "nomCommune": "VALAY" + "codePostal": "63820", + "codeCommune": "63189", + "libelleAcheminement": "LAQUEUILLE", + "nomCommune": "LAQUEUILLE" }, { - "codePostal": "71460", - "codeCommune": "71498", - "libelleAcheminement": "SANTILLY", - "nomCommune": "SANTILLY" + "codePostal": "73230", + "codeCommune": "73243", + "libelleAcheminement": "ST JEAN D ARVEY", + "nomCommune": "ST JEAN D ARVEY" }, { - "codePostal": "46190", - "codeCommune": "46315", - "libelleAcheminement": "TEYSSIEU", - "nomCommune": "TEYSSIEU" + "codePostal": "22300", + "codeCommune": "22030", + "libelleAcheminement": "CAOUENNEC LANVEZEAC", + "nomCommune": "CAOUENNEC LANVEZEAC" }, { - "codePostal": "14210", - "codeCommune": "14721", - "libelleAcheminement": "VACOGNES NEUILLY", - "nomCommune": "VACOGNES NEUILLY" + "codePostal": "73170", + "codeCommune": "73271", + "libelleAcheminement": "ST PIERRE D ALVEY", + "nomCommune": "ST PIERRE D ALVEY" }, { - "codePostal": "70700", - "codeCommune": "70521", - "libelleAcheminement": "VANTOUX ET LONGEVELLE", - "nomCommune": "VANTOUX ET LONGEVELLE" + "codePostal": "62990", + "codeCommune": "62100", + "libelleAcheminement": "BEAURAINVILLE", + "nomCommune": "BEAURAINVILLE" }, { - "codePostal": "71220", - "codeCommune": "71524", - "libelleAcheminement": "SIVIGNON", - "nomCommune": "SIVIGNON" + "codePostal": "63760", + "codeCommune": "63191", + "libelleAcheminement": "LASTIC", + "nomCommune": "LASTIC" }, { - "codePostal": "46120", - "codeCommune": "46319", - "libelleAcheminement": "THEMINETTES", - "nomCommune": "THEMINETTES" + "codePostal": "73170", + "codeCommune": "73245", + "libelleAcheminement": "ST JEAN DE CHEVELU", + "nomCommune": "ST JEAN DE CHEVELU" }, { - "codePostal": "14350", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "22630", + "codeCommune": "22035", + "libelleAcheminement": "LES CHAMPS GERAUX", + "nomCommune": "LES CHAMPS GERAUX" }, { - "codePostal": "70700", - "codeCommune": "70527", - "libelleAcheminement": "VAUX LE MONCELOT", - "nomCommune": "VAUX LE MONCELOT" + "codePostal": "73630", + "codeCommune": "73277", + "libelleAcheminement": "STE REINE", + "nomCommune": "STE REINE" }, { - "codePostal": "71960", - "codeCommune": "71525", - "libelleAcheminement": "SOLOGNY", - "nomCommune": "SOLOGNY" + "codePostal": "62600", + "codeCommune": "62108", + "libelleAcheminement": "BERCK", + "nomCommune": "BERCK" }, { - "codePostal": "46090", - "codeCommune": "46322", - "libelleAcheminement": "TRESPOUX RASSIELS", - "nomCommune": "TRESPOUX RASSIELS" + "codePostal": "63370", + "codeCommune": "63193", + "libelleAcheminement": "LEMPDES", + "nomCommune": "LEMPDES" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "73160", + "codeCommune": "73246", + "libelleAcheminement": "ST JEAN DE COUZ", + "nomCommune": "ST JEAN DE COUZ" }, { - "codePostal": "70100", - "codeCommune": "70528", - "libelleAcheminement": "VELESMES ECHEVANNE", - "nomCommune": "VELESMES ECHEVANNE" + "codePostal": "22350", + "codeCommune": "22036", + "libelleAcheminement": "LA CHAPELLE BLANCHE", + "nomCommune": "LA CHAPELLE BLANCHE" }, { - "codePostal": "71500", - "codeCommune": "71528", - "libelleAcheminement": "SORNAY", - "nomCommune": "SORNAY" + "codePostal": "73460", + "codeCommune": "73283", + "libelleAcheminement": "ST VITAL", + "nomCommune": "ST VITAL" }, { - "codePostal": "46100", - "codeCommune": "46332", - "libelleAcheminement": "VIAZAC", - "nomCommune": "VIAZAC" + "codePostal": "62134", + "codeCommune": "62109", + "libelleAcheminement": "BERGUENEUSE", + "nomCommune": "BERGUENEUSE" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "63190", + "codeCommune": "63195", + "libelleAcheminement": "LEZOUX", + "nomCommune": "LEZOUX" }, { - "codePostal": "70200", - "codeCommune": "70544", - "libelleAcheminement": "LA VERGENNE", - "nomCommune": "LA VERGENNE" + "codePostal": "73440", + "codeCommune": "73257", + "libelleAcheminement": "LES BELLEVILLE", + "nomCommune": "LES BELLEVILLE" }, { - "codePostal": "71250", - "codeCommune": "71532", - "libelleAcheminement": "TAIZE", - "nomCommune": "TAIZE" + "codePostal": "22330", + "codeCommune": "22046", + "libelleAcheminement": "LE MENE", + "nomCommune": "LE MENE" }, { - "codePostal": "46400", - "codeCommune": "46339", - "libelleAcheminement": "ST JEAN LAGINESTE", - "nomCommune": "ST JEAN LAGINESTE" + "codePostal": "73500", + "codeCommune": "73290", + "libelleAcheminement": "VAL CENIS", + "nomCommune": "VAL CENIS" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "62690", + "codeCommune": "62118", + "libelleAcheminement": "BETHONSART", + "nomCommune": "BETHONSART" }, { - "codePostal": "70500", - "codeCommune": "70548", - "libelleAcheminement": "VERNOIS SUR MANCE", - "nomCommune": "VERNOIS SUR MANCE" + "codePostal": "63340", + "codeCommune": "63209", + "libelleAcheminement": "MAREUGHEOL", + "nomCommune": "MAREUGHEOL" }, { - "codePostal": "71250", - "codeCommune": "71532", - "libelleAcheminement": "TAIZE", - "nomCommune": "TAIZE" + "codePostal": "73440", + "codeCommune": "73257", + "libelleAcheminement": "LES BELLEVILLE", + "nomCommune": "LES BELLEVILLE" }, { - "codePostal": "47800", - "codeCommune": "47005", - "libelleAcheminement": "ALLEMANS DU DROPT", - "nomCommune": "ALLEMANS DU DROPT" + "codePostal": "22250", + "codeCommune": "22053", + "libelleAcheminement": "EREAC", + "nomCommune": "EREAC" }, { - "codePostal": "14790", - "codeCommune": "14738", - "libelleAcheminement": "VERSON", - "nomCommune": "VERSON" + "codePostal": "73230", + "codeCommune": "73310", + "libelleAcheminement": "VEREL PRAGONDRAN", + "nomCommune": "VEREL PRAGONDRAN" }, { - "codePostal": "70000", - "codeCommune": "70550", - "libelleAcheminement": "VESOUL", - "nomCommune": "VESOUL" + "codePostal": "62118", + "codeCommune": "62128", + "libelleAcheminement": "BIACHE ST VAAST", + "nomCommune": "BIACHE ST VAAST" }, { - "codePostal": "71440", - "codeCommune": "71548", - "libelleAcheminement": "TRONCHY", - "nomCommune": "TRONCHY" + "codePostal": "63350", + "codeCommune": "63210", + "libelleAcheminement": "MARINGUES", + "nomCommune": "MARINGUES" }, { - "codePostal": "47420", - "codeCommune": "47007", - "libelleAcheminement": "ALLONS", - "nomCommune": "ALLONS" + "codePostal": "73140", + "codeCommune": "73261", + "libelleAcheminement": "ST MICHEL DE MAURIENNE", + "nomCommune": "ST MICHEL DE MAURIENNE" }, { - "codePostal": "14400", - "codeCommune": "14744", - "libelleAcheminement": "VIENNE EN BESSIN", - "nomCommune": "VIENNE EN BESSIN" + "codePostal": "22430", + "codeCommune": "22054", + "libelleAcheminement": "ERQUY", + "nomCommune": "ERQUY" }, { - "codePostal": "70000", - "codeCommune": "70559", - "libelleAcheminement": "VILLEPAROIS", - "nomCommune": "VILLEPAROIS" + "codePostal": "73460", + "codeCommune": "73312", + "libelleAcheminement": "VERRENS ARVEY", + "nomCommune": "VERRENS ARVEY" }, { - "codePostal": "71700", - "codeCommune": "71550", - "libelleAcheminement": "UCHIZY", - "nomCommune": "UCHIZY" + "codePostal": "62121", + "codeCommune": "62131", + "libelleAcheminement": "BIHUCOURT", + "nomCommune": "BIHUCOURT" }, { - "codePostal": "47700", - "codeCommune": "47012", - "libelleAcheminement": "ANZEX", - "nomCommune": "ANZEX" + "codePostal": "63560", + "codeCommune": "63223", + "libelleAcheminement": "MENAT", + "nomCommune": "MENAT" }, { - "codePostal": "14310", - "codeCommune": "14752", - "libelleAcheminement": "VILLERS BOCAGE", - "nomCommune": "VILLERS BOCAGE" + "codePostal": "73590", + "codeCommune": "73262", + "libelleAcheminement": "ST NICOLAS LA CHAPELLE", + "nomCommune": "ST NICOLAS LA CHAPELLE" }, { - "codePostal": "70190", - "codeCommune": "70565", - "libelleAcheminement": "VILLERS PATER", - "nomCommune": "VILLERS PATER" + "codePostal": "22680", + "codeCommune": "22055", + "libelleAcheminement": "BINIC ETABLES SUR MER", + "nomCommune": "BINIC ETABLES SUR MER" }, { - "codePostal": "71000", - "codeCommune": "71556", - "libelleAcheminement": "VARENNES LES MACON", - "nomCommune": "VARENNES LES MACON" + "codePostal": "73800", + "codeCommune": "73314", + "libelleAcheminement": "VILLARD D HERY", + "nomCommune": "VILLARD D HERY" }, { - "codePostal": "47250", - "codeCommune": "47013", - "libelleAcheminement": "ARGENTON", - "nomCommune": "ARGENTON" + "codePostal": "62173", + "codeCommune": "62135", + "libelleAcheminement": "BLAIRVILLE", + "nomCommune": "BLAIRVILLE" }, { - "codePostal": "14420", - "codeCommune": "14753", - "libelleAcheminement": "VILLERS CANIVET", - "nomCommune": "VILLERS CANIVET" + "codePostal": "63750", + "codeCommune": "63225", + "libelleAcheminement": "MESSEIX", + "nomCommune": "MESSEIX" }, { - "codePostal": "70120", - "codeCommune": "70568", - "libelleAcheminement": "VILLERS VAUDEY", - "nomCommune": "VILLERS VAUDEY" + "codePostal": "73100", + "codeCommune": "73263", + "libelleAcheminement": "ST OFFENGE", + "nomCommune": "ST OFFENGE" }, { - "codePostal": "71600", - "codeCommune": "71557", - "libelleAcheminement": "VARENNE ST GERMAIN", - "nomCommune": "VARENNE ST GERMAIN" + "codePostal": "22320", + "codeCommune": "22074", + "libelleAcheminement": "LE HAUT CORLAY", + "nomCommune": "LE HAUT CORLAY" }, { - "codePostal": "47120", - "codeCommune": "47018", - "libelleAcheminement": "AURIAC SUR DROPT", - "nomCommune": "AURIAC SUR DROPT" + "codePostal": "73390", + "codeCommune": "73315", + "libelleAcheminement": "VILLARD LEGER", + "nomCommune": "VILLARD LEGER" }, { - "codePostal": "14610", - "codeCommune": "14758", - "libelleAcheminement": "VILLONS LES BUISSONS", - "nomCommune": "VILLONS LES BUISSONS" + "codePostal": "62770", + "codeCommune": "62142", + "libelleAcheminement": "BLINGEL", + "nomCommune": "BLINGEL" }, { - "codePostal": "70300", - "codeCommune": "70571", - "libelleAcheminement": "VISONCOURT", - "nomCommune": "VISONCOURT" + "codePostal": "63380", + "codeCommune": "63228", + "libelleAcheminement": "MIREMONT", + "nomCommune": "MIREMONT" }, { - "codePostal": "71480", - "codeCommune": "71558", - "libelleAcheminement": "VARENNES ST SAUVEUR", - "nomCommune": "VARENNES ST SAUVEUR" + "codePostal": "73100", + "codeCommune": "73263", + "libelleAcheminement": "ST OFFENGE", + "nomCommune": "ST OFFENGE" }, { - "codePostal": "47200", - "codeCommune": "47028", - "libelleAcheminement": "BIRAC SUR TREC", - "nomCommune": "BIRAC SUR TREC" + "codePostal": "22150", + "codeCommune": "22079", + "libelleAcheminement": "HENON", + "nomCommune": "HENON" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "73160", + "codeCommune": "73326", + "libelleAcheminement": "VIMINES", + "nomCommune": "VIMINES" }, { - "codePostal": "71380", - "codeCommune": "71004", - "libelleAcheminement": "ALLERIOT", - "nomCommune": "ALLERIOT" + "codePostal": "62175", + "codeCommune": "62146", + "libelleAcheminement": "BOIRY ST MARTIN", + "nomCommune": "BOIRY ST MARTIN" }, { - "codePostal": "71120", - "codeCommune": "71562", - "libelleAcheminement": "VAUDEBARRIER", - "nomCommune": "VAUDEBARRIER" + "codePostal": "63190", + "codeCommune": "63229", + "libelleAcheminement": "MOISSAT", + "nomCommune": "MOISSAT" }, { - "codePostal": "47290", - "codeCommune": "47033", - "libelleAcheminement": "BOUDY DE BEAUREGARD", - "nomCommune": "BOUDY DE BEAUREGARD" + "codePostal": "73730", + "codeCommune": "73268", + "libelleAcheminement": "ST PAUL SUR ISERE", + "nomCommune": "ST PAUL SUR ISERE" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "22120", + "codeCommune": "22081", + "libelleAcheminement": "HILLION", + "nomCommune": "HILLION" }, { - "codePostal": "71460", - "codeCommune": "71007", - "libelleAcheminement": "AMEUGNY", - "nomCommune": "AMEUGNY" + "codePostal": "74350", + "codeCommune": "74006", + "libelleAcheminement": "ALLONZIER LA CAILLE", + "nomCommune": "ALLONZIER LA CAILLE" }, { - "codePostal": "71350", - "codeCommune": "71566", - "libelleAcheminement": "VERDUN SUR LE DOUBS", - "nomCommune": "VERDUN SUR LE DOUBS" + "codePostal": "62175", + "codeCommune": "62151", + "libelleAcheminement": "BOISLEUX AU MONT", + "nomCommune": "BOISLEUX AU MONT" }, { - "codePostal": "47370", - "codeCommune": "47036", - "libelleAcheminement": "BOURLENS", - "nomCommune": "BOURLENS" + "codePostal": "63320", + "codeCommune": "63234", + "libelleAcheminement": "MONTAIGUT LE BLANC", + "nomCommune": "MONTAIGUT LE BLANC" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "73220", + "codeCommune": "73272", + "libelleAcheminement": "ST PIERRE DE BELLEVILLE", + "nomCommune": "ST PIERRE DE BELLEVILLE" }, { - "codePostal": "71170", - "codeCommune": "71008", - "libelleAcheminement": "ANGLURE SOUS DUN", - "nomCommune": "ANGLURE SOUS DUN" + "codePostal": "22100", + "codeCommune": "22082", + "libelleAcheminement": "LE HINGLE", + "nomCommune": "LE HINGLE" }, { - "codePostal": "71250", - "codeCommune": "71582", - "libelleAcheminement": "LA VINEUSE SUR FREGANDE", - "nomCommune": "LA VINEUSE SUR FREGANDE" + "codePostal": "74370", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "47330", - "codeCommune": "47044", - "libelleAcheminement": "CAHUZAC", - "nomCommune": "CAHUZAC" + "codePostal": "62175", + "codeCommune": "62152", + "libelleAcheminement": "BOISLEUX ST MARC", + "nomCommune": "BOISLEUX ST MARC" }, { - "codePostal": "15100", - "codeCommune": "15005", - "libelleAcheminement": "ANGLARDS DE ST FLOUR", - "nomCommune": "ANGLARDS DE ST FLOUR" + "codePostal": "63114", + "codeCommune": "63241", + "libelleAcheminement": "MONTPEYROUX", + "nomCommune": "MONTPEYROUX" }, { - "codePostal": "71550", - "codeCommune": "71009", - "libelleAcheminement": "ANOST", - "nomCommune": "ANOST" + "codePostal": "73530", + "codeCommune": "73280", + "libelleAcheminement": "ST SORLIN D ARVES", + "nomCommune": "ST SORLIN D ARVES" }, { - "codePostal": "71140", - "codeCommune": "71589", - "libelleAcheminement": "VITRY SUR LOIRE", - "nomCommune": "VITRY SUR LOIRE" + "codePostal": "22270", + "codeCommune": "22084", + "libelleAcheminement": "JUGON LES LACS COMMUNE NOUVELLE", + "nomCommune": "JUGON LES LACS COMMUNE NOUVELLE" }, { - "codePostal": "47600", - "codeCommune": "47045", - "libelleAcheminement": "CALIGNAC", - "nomCommune": "CALIGNAC" + "codePostal": "74100", + "codeCommune": "74012", + "libelleAcheminement": "ANNEMASSE", + "nomCommune": "ANNEMASSE" }, { - "codePostal": "15240", - "codeCommune": "15008", - "libelleAcheminement": "ANTIGNAC", - "nomCommune": "ANTIGNAC" + "codePostal": "62890", + "codeCommune": "62155", + "libelleAcheminement": "BONNINGUES LES ARDRES", + "nomCommune": "BONNINGUES LES ARDRES" }, { - "codePostal": "71270", - "codeCommune": "71013", - "libelleAcheminement": "AUTHUMES", - "nomCommune": "AUTHUMES" + "codePostal": "63210", + "codeCommune": "63248", + "libelleAcheminement": "NEBOUZAT", + "nomCommune": "NEBOUZAT" }, { - "codePostal": "72540", - "codeCommune": "72004", - "libelleAcheminement": "AMNE", - "nomCommune": "AMNE" + "codePostal": "73600", + "codeCommune": "73284", + "libelleAcheminement": "SALINS FONTAINE", + "nomCommune": "SALINS FONTAINE" }, { - "codePostal": "47240", - "codeCommune": "47051", - "libelleAcheminement": "CASTELCULIER", - "nomCommune": "CASTELCULIER" + "codePostal": "22610", + "codeCommune": "22085", + "libelleAcheminement": "KERBORS", + "nomCommune": "KERBORS" }, { - "codePostal": "15250", - "codeCommune": "15016", - "libelleAcheminement": "AYRENS", - "nomCommune": "AYRENS" + "codePostal": "74300", + "codeCommune": "74014", + "libelleAcheminement": "ARACHES LA FRASSE", + "nomCommune": "ARACHES LA FRASSE" }, { - "codePostal": "71260", - "codeCommune": "71016", - "libelleAcheminement": "AZE", - "nomCommune": "AZE" + "codePostal": "62270", + "codeCommune": "62163", + "libelleAcheminement": "BOURET SUR CANCHE", + "nomCommune": "BOURET SUR CANCHE" }, { - "codePostal": "72610", - "codeCommune": "72005", - "libelleAcheminement": "ANCINNES", - "nomCommune": "ANCINNES" + "codePostal": "63120", + "codeCommune": "63249", + "libelleAcheminement": "NERONDE SUR DORE", + "nomCommune": "NERONDE SUR DORE" }, { - "codePostal": "47330", - "codeCommune": "47057", - "libelleAcheminement": "CASTILLONNES", - "nomCommune": "CASTILLONNES" + "codePostal": "73000", + "codeCommune": "73288", + "libelleAcheminement": "SONNAZ", + "nomCommune": "SONNAZ" }, { - "codePostal": "15800", - "codeCommune": "15017", - "libelleAcheminement": "BADAILHAC", - "nomCommune": "BADAILHAC" + "codePostal": "22450", + "codeCommune": "22101", + "libelleAcheminement": "LANGOAT", + "nomCommune": "LANGOAT" }, { - "codePostal": "71220", - "codeCommune": "71017", - "libelleAcheminement": "BALLORE", - "nomCommune": "BALLORE" + "codePostal": "74370", + "codeCommune": "74019", + "libelleAcheminement": "ARGONAY", + "nomCommune": "ARGONAY" }, { - "codePostal": "72370", - "codeCommune": "72007", - "libelleAcheminement": "ARDENAY SUR MERIZE", - "nomCommune": "ARDENAY SUR MERIZE" + "codePostal": "62860", + "codeCommune": "62164", + "libelleAcheminement": "BOURLON", + "nomCommune": "BOURLON" }, { - "codePostal": "47330", - "codeCommune": "47063", - "libelleAcheminement": "CAVARC", - "nomCommune": "CAVARC" + "codePostal": "63830", + "codeCommune": "63254", + "libelleAcheminement": "NOHANENT", + "nomCommune": "NOHANENT" }, { - "codePostal": "15340", - "codeCommune": "15027", - "libelleAcheminement": "PUYCAPEL", - "nomCommune": "PUYCAPEL" + "codePostal": "73320", + "codeCommune": "73296", + "libelleAcheminement": "TIGNES", + "nomCommune": "TIGNES" }, { - "codePostal": "71500", - "codeCommune": "71018", - "libelleAcheminement": "BANTANGES", - "nomCommune": "BANTANGES" + "codePostal": "22360", + "codeCommune": "22106", + "libelleAcheminement": "LANGUEUX", + "nomCommune": "LANGUEUX" }, { - "codePostal": "72270", - "codeCommune": "72009", - "libelleAcheminement": "ARTHEZE", - "nomCommune": "ARTHEZE" + "codePostal": "74160", + "codeCommune": "74031", + "libelleAcheminement": "BEAUMONT", + "nomCommune": "BEAUMONT" }, { - "codePostal": "47130", - "codeCommune": "47066", - "libelleAcheminement": "CLERMONT DESSOUS", - "nomCommune": "CLERMONT DESSOUS" + "codePostal": "62650", + "codeCommune": "62168", + "libelleAcheminement": "BOURTHES", + "nomCommune": "BOURTHES" }, { - "codePostal": "15130", - "codeCommune": "15028", - "libelleAcheminement": "CARLAT", - "nomCommune": "CARLAT" + "codePostal": "63670", + "codeCommune": "63262", + "libelleAcheminement": "ORCET", + "nomCommune": "ORCET" }, { - "codePostal": "71390", - "codeCommune": "71034", - "libelleAcheminement": "BISSEY SOUS CRUCHAUD", - "nomCommune": "BISSEY SOUS CRUCHAUD" + "codePostal": "73100", + "codeCommune": "73301", + "libelleAcheminement": "TREVIGNIN", + "nomCommune": "TREVIGNIN" }, { - "codePostal": "72170", - "codeCommune": "72012", - "libelleAcheminement": "ASSE LE RIBOUL", - "nomCommune": "ASSE LE RIBOUL" + "codePostal": "22250", + "codeCommune": "22114", + "libelleAcheminement": "LANRELAS", + "nomCommune": "LANRELAS" }, { - "codePostal": "47360", - "codeCommune": "47073", - "libelleAcheminement": "COURS", - "nomCommune": "COURS" + "codePostal": "74130", + "codeCommune": "74042", + "libelleAcheminement": "BONNEVILLE", + "nomCommune": "BONNEVILLE" }, { - "codePostal": "15110", - "codeCommune": "15045", - "libelleAcheminement": "CHAUDES AIGUES", - "nomCommune": "CHAUDES AIGUES" + "codePostal": "62610", + "codeCommune": "62174", + "libelleAcheminement": "BREMES", + "nomCommune": "BREMES" }, { - "codePostal": "71250", - "codeCommune": "71039", - "libelleAcheminement": "BLANOT", - "nomCommune": "BLANOT" + "codePostal": "63380", + "codeCommune": "63283", + "libelleAcheminement": "PONTAUMUR", + "nomCommune": "PONTAUMUR" }, { - "codePostal": "72600", - "codeCommune": "72015", - "libelleAcheminement": "LES AULNEAUX", - "nomCommune": "LES AULNEAUX" + "codePostal": "73450", + "codeCommune": "73306", + "libelleAcheminement": "VALLOIRE", + "nomCommune": "VALLOIRE" }, { - "codePostal": "47220", - "codeCommune": "47076", - "libelleAcheminement": "CUQ", - "nomCommune": "CUQ" + "codePostal": "22100", + "codeCommune": "22118", + "libelleAcheminement": "LANVALLAY", + "nomCommune": "LANVALLAY" }, { - "codePostal": "15400", - "codeCommune": "15049", - "libelleAcheminement": "CHEYLADE", - "nomCommune": "CHEYLADE" + "codePostal": "74230", + "codeCommune": "74045", + "libelleAcheminement": "LE BOUCHET MONT CHARVIN", + "nomCommune": "LE BOUCHET" }, { - "codePostal": "71460", - "codeCommune": "71042", - "libelleAcheminement": "BONNAY", - "nomCommune": "BONNAY" + "codePostal": "62128", + "codeCommune": "62185", + "libelleAcheminement": "BULLECOURT", + "nomCommune": "BULLECOURT" }, { - "codePostal": "72430", - "codeCommune": "72021", - "libelleAcheminement": "AVOISE", - "nomCommune": "AVOISE" + "codePostal": "63230", + "codeCommune": "63285", + "libelleAcheminement": "PONTGIBAUD", + "nomCommune": "PONTGIBAUD" }, { - "codePostal": "47160", - "codeCommune": "47078", - "libelleAcheminement": "DAMAZAN", - "nomCommune": "DAMAZAN" + "codePostal": "73110", + "codeCommune": "73316", + "libelleAcheminement": "VILLARD SALLET", + "nomCommune": "VILLARD SALLET" }, { - "codePostal": "15320", - "codeCommune": "15051", - "libelleAcheminement": "CLAVIERES", - "nomCommune": "CLAVIERES" + "codePostal": "22570", + "codeCommune": "22124", + "libelleAcheminement": "LESCOUET GOUAREC", + "nomCommune": "LESCOUET GOUAREC" }, { - "codePostal": "71250", - "codeCommune": "71057", - "libelleAcheminement": "BRAY", - "nomCommune": "BRAY" + "codePostal": "74150", + "codeCommune": "74046", + "libelleAcheminement": "BOUSSY", + "nomCommune": "BOUSSY" }, { - "codePostal": "72310", - "codeCommune": "72035", - "libelleAcheminement": "BESSE SUR BRAYE", - "nomCommune": "BESSE SUR BRAYE" + "codePostal": "62100", + "codeCommune": "62193", + "libelleAcheminement": "CALAIS", + "nomCommune": "CALAIS" }, { - "codePostal": "47140", - "codeCommune": "47079", - "libelleAcheminement": "DAUSSE", - "nomCommune": "DAUSSE" + "codePostal": "63500", + "codeCommune": "63287", + "libelleAcheminement": "LES PRADEAUX", + "nomCommune": "LES PRADEAUX" }, { - "codePostal": "15190", - "codeCommune": "15054", - "libelleAcheminement": "CONDAT", - "nomCommune": "CONDAT" + "codePostal": "73300", + "codeCommune": "73318", + "libelleAcheminement": "VILLAREMBERT", + "nomCommune": "VILLAREMBERT" }, { - "codePostal": "71110", - "codeCommune": "71060", - "libelleAcheminement": "BRIANT", - "nomCommune": "BRIANT" + "codePostal": "22740", + "codeCommune": "22127", + "libelleAcheminement": "LEZARDRIEUX", + "nomCommune": "LEZARDRIEUX" }, { - "codePostal": "72610", - "codeCommune": "72036", - "libelleAcheminement": "BETHON", - "nomCommune": "BETHON" + "codePostal": "74910", + "codeCommune": "74055", + "libelleAcheminement": "CHALLONGES", + "nomCommune": "CHALLONGES" }, { - "codePostal": "47210", - "codeCommune": "47083", - "libelleAcheminement": "DOUDRAC", - "nomCommune": "DOUDRAC" + "codePostal": "62149", + "codeCommune": "62200", + "libelleAcheminement": "CAMBRIN", + "nomCommune": "CAMBRIN" }, { - "codePostal": "15250", - "codeCommune": "15056", - "libelleAcheminement": "CRANDELLES", - "nomCommune": "CRANDELLES" + "codePostal": "63420", + "codeCommune": "63299", + "libelleAcheminement": "RENTIERES", + "nomCommune": "RENTIERES" }, { - "codePostal": "71190", - "codeCommune": "71062", - "libelleAcheminement": "BRION", - "nomCommune": "BRION" + "codePostal": "73110", + "codeCommune": "73324", + "libelleAcheminement": "VILLAROUX", + "nomCommune": "VILLAROUX" }, { - "codePostal": "72400", - "codeCommune": "72038", - "libelleAcheminement": "BOESSE LE SEC", - "nomCommune": "BOESSE LE SEC" + "codePostal": "22740", + "codeCommune": "22127", + "libelleAcheminement": "LEZARDRIEUX", + "nomCommune": "LEZARDRIEUX" }, { - "codePostal": "47420", - "codeCommune": "47085", - "libelleAcheminement": "DURANCE", - "nomCommune": "DURANCE" + "codePostal": "74410", + "codeCommune": "74060", + "libelleAcheminement": "LA CHAPELLE ST MAURICE", + "nomCommune": "LA CHAPELLE ST MAURICE" }, { - "codePostal": "15140", - "codeCommune": "15070", - "libelleAcheminement": "FONTANGES", - "nomCommune": "FONTANGES" + "codePostal": "62870", + "codeCommune": "62204", + "libelleAcheminement": "CAMPAGNE LES HESDIN", + "nomCommune": "CAMPAGNE LES HESDIN" }, { - "codePostal": "71460", - "codeCommune": "71080", - "libelleAcheminement": "CHAMPAGNY SOUS UXELLES", - "nomCommune": "CHAMPAGNY SOUS UXELLES" + "codePostal": "63330", + "codeCommune": "63304", + "libelleAcheminement": "ROCHE D AGOUX", + "nomCommune": "ROCHE D AGOUX" }, { - "codePostal": "72110", - "codeCommune": "72048", - "libelleAcheminement": "BRIOSNE LES SABLES", - "nomCommune": "BRIOSNE LES SABLES" + "codePostal": "74800", + "codeCommune": "74007", + "libelleAcheminement": "AMANCY", + "nomCommune": "AMANCY" }, { - "codePostal": "47470", - "codeCommune": "47087", - "libelleAcheminement": "ENGAYRAC", - "nomCommune": "ENGAYRAC" + "codePostal": "22340", + "codeCommune": "22128", + "libelleAcheminement": "LOCARN", + "nomCommune": "LOCARN" }, { - "codePostal": "15130", - "codeCommune": "15074", - "libelleAcheminement": "GIOU DE MAMOU", - "nomCommune": "GIOU DE MAMOU" + "codePostal": "74500", + "codeCommune": "74073", + "libelleAcheminement": "CHEVENOZ", + "nomCommune": "CHEVENOZ" }, { - "codePostal": "71570", - "codeCommune": "71084", - "libelleAcheminement": "CHANES", - "nomCommune": "CHANES" + "codePostal": "62120", + "codeCommune": "62205", + "libelleAcheminement": "CAMPAGNE LES WARDRECQUES", + "nomCommune": "CAMPAGNE LES WARDRECQUES" }, { - "codePostal": "72500", - "codeCommune": "72049", - "libelleAcheminement": "LA BRUERE SUR LOIR", - "nomCommune": "LA BRUERE SUR LOIR" + "codePostal": "63540", + "codeCommune": "63307", + "libelleAcheminement": "ROMAGNAT", + "nomCommune": "ROMAGNAT" }, { - "codePostal": "47350", - "codeCommune": "47088", - "libelleAcheminement": "ESCASSEFORT", - "nomCommune": "ESCASSEFORT" + "codePostal": "74000", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "15110", - "codeCommune": "15078", - "libelleAcheminement": "JABRUN", - "nomCommune": "JABRUN" + "codePostal": "22780", + "codeCommune": "22131", + "libelleAcheminement": "LOGUIVY PLOUGRAS", + "nomCommune": "LOGUIVY PLOUGRAS" }, { - "codePostal": "71570", - "codeCommune": "71090", - "libelleAcheminement": "LA CHAPELLE DE GUINCHAY", - "nomCommune": "LA CHAPELLE DE GUINCHAY" + "codePostal": "74520", + "codeCommune": "74074", + "libelleAcheminement": "CHEVRIER", + "nomCommune": "CHEVRIER" }, { - "codePostal": "72610", - "codeCommune": "72056", - "libelleAcheminement": "CHAMPFLEUR", - "nomCommune": "CHAMPFLEUR" + "codePostal": "62170", + "codeCommune": "62207", + "libelleAcheminement": "CAMPIGNEULLES LES PETITES", + "nomCommune": "CAMPIGNEULLES LES PETITES" }, { - "codePostal": "47120", - "codeCommune": "47089", - "libelleAcheminement": "ESCLOTTES", - "nomCommune": "ESCLOTTES" + "codePostal": "63840", + "codeCommune": "63309", + "libelleAcheminement": "SAILLANT", + "nomCommune": "SAILLANT" }, { - "codePostal": "15200", - "codeCommune": "15079", - "libelleAcheminement": "JALEYRAC", - "nomCommune": "JALEYRAC" + "codePostal": "74600", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "71500", - "codeCommune": "71092", - "libelleAcheminement": "LA CHAPELLE NAUDE", - "nomCommune": "LA CHAPELLE NAUDE" + "codePostal": "22160", + "codeCommune": "22132", + "libelleAcheminement": "LOHUEC", + "nomCommune": "LOHUEC" }, { - "codePostal": "72560", - "codeCommune": "72058", - "libelleAcheminement": "CHANGE", - "nomCommune": "CHANGE" + "codePostal": "74230", + "codeCommune": "74079", + "libelleAcheminement": "LES CLEFS", + "nomCommune": "LES CLEFS" }, { - "codePostal": "47400", - "codeCommune": "47094", - "libelleAcheminement": "FAUGUEROLLES", - "nomCommune": "FAUGUEROLLES" + "codePostal": "62220", + "codeCommune": "62215", + "libelleAcheminement": "CARVIN", + "nomCommune": "CARVIN" }, { - "codePostal": "15170", - "codeCommune": "15080", - "libelleAcheminement": "JOURSAC", - "nomCommune": "JOURSAC" + "codePostal": "63120", + "codeCommune": "63310", + "libelleAcheminement": "STE AGATHE", + "nomCommune": "STE AGATHE" }, { - "codePostal": "71470", - "codeCommune": "71097", - "libelleAcheminement": "LA CHAPELLE THECLE", - "nomCommune": "LA CHAPELLE THECLE" + "codePostal": "74940", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "72300", - "codeCommune": "72061", - "libelleAcheminement": "LA CHAPELLE D ALIGNE", - "nomCommune": "LA CHAPELLE D ALIGNE" + "codePostal": "22160", + "codeCommune": "22138", + "libelleAcheminement": "MAEL PESTIVIEN", + "nomCommune": "MAEL PESTIVIEN" }, { - "codePostal": "47330", - "codeCommune": "47096", - "libelleAcheminement": "FERRENSAC", - "nomCommune": "FERRENSAC" + "codePostal": "74160", + "codeCommune": "74082", + "libelleAcheminement": "COLLONGES SOUS SALEVE", + "nomCommune": "COLLONGES SOUS SALEVE" }, { - "codePostal": "15120", - "codeCommune": "15082", - "libelleAcheminement": "JUNHAC", - "nomCommune": "JUNHAC" + "codePostal": "62140", + "codeCommune": "62219", + "libelleAcheminement": "CAUMONT", + "nomCommune": "CAUMONT" }, { - "codePostal": "71320", - "codeCommune": "71098", - "libelleAcheminement": "CHARBONNAT", - "nomCommune": "CHARBONNAT" + "codePostal": "63380", + "codeCommune": "63320", + "libelleAcheminement": "ST AVIT", + "nomCommune": "ST AVIT" }, { - "codePostal": "72500", - "codeCommune": "72071", - "libelleAcheminement": "MONTVAL SUR LOIR", - "nomCommune": "MONTVAL SUR LOIR" + "codePostal": "74300", + "codeCommune": "74014", + "libelleAcheminement": "ARACHES LA FRASSE", + "nomCommune": "ARACHES LA FRASSE" }, { - "codePostal": "47510", - "codeCommune": "47100", - "libelleAcheminement": "FOULAYRONNES", - "nomCommune": "FOULAYRONNES" + "codePostal": "22110", + "codeCommune": "22146", + "libelleAcheminement": "MELLIONNEC", + "nomCommune": "MELLIONNEC" }, { - "codePostal": "15120", - "codeCommune": "15087", - "libelleAcheminement": "LACAPELLE DEL FRAISSE", - "nomCommune": "LACAPELLE DEL FRAISSE" + "codePostal": "74920", + "codeCommune": "74083", + "libelleAcheminement": "COMBLOUX", + "nomCommune": "COMBLOUX" }, { - "codePostal": "71700", - "codeCommune": "71100", - "libelleAcheminement": "CHARDONNAY", - "nomCommune": "CHARDONNAY" + "codePostal": "62128", + "codeCommune": "62223", + "libelleAcheminement": "CHERISY", + "nomCommune": "CHERISY" }, { - "codePostal": "72550", - "codeCommune": "72073", - "libelleAcheminement": "CHAUFOUR NOTRE DAME", - "nomCommune": "CHAUFOUR NOTRE DAME" + "codePostal": "63630", + "codeCommune": "63323", + "libelleAcheminement": "ST BONNET LE BOURG", + "nomCommune": "ST BONNET LE BOURG" }, { - "codePostal": "47140", - "codeCommune": "47105", - "libelleAcheminement": "FRESPECH", - "nomCommune": "FRESPECH" + "codePostal": "74930", + "codeCommune": "74015", + "libelleAcheminement": "ARBUSIGNY", + "nomCommune": "ARBUSIGNY" }, { - "codePostal": "15150", - "codeCommune": "15088", - "libelleAcheminement": "LACAPELLE VIESCAMP", - "nomCommune": "LACAPELLE VIESCAMP" + "codePostal": "22460", + "codeCommune": "22149", + "libelleAcheminement": "MERLEAC", + "nomCommune": "MERLEAC" }, { - "codePostal": "71100", - "codeCommune": "71102", - "libelleAcheminement": "LA CHARMEE", - "nomCommune": "LA CHARMEE" + "codePostal": "74170", + "codeCommune": "74085", + "libelleAcheminement": "LES CONTAMINES MONTJOIE", + "nomCommune": "LES CONTAMINES MONTJOIE" }, { - "codePostal": "72610", - "codeCommune": "72079", - "libelleAcheminement": "CHERISAY", - "nomCommune": "CHERISAY" + "codePostal": "62920", + "codeCommune": "62224", + "libelleAcheminement": "CHOCQUES", + "nomCommune": "CHOCQUES" }, { - "codePostal": "47270", - "codeCommune": "47113", - "libelleAcheminement": "GRAYSSAS", - "nomCommune": "GRAYSSAS" + "codePostal": "63800", + "codeCommune": "63325", + "libelleAcheminement": "ST BONNET LES ALLIER", + "nomCommune": "ST BONNET LES ALLIER" }, { - "codePostal": "15160", - "codeCommune": "15091", - "libelleAcheminement": "LANDEYRAT", - "nomCommune": "LANDEYRAT" + "codePostal": "74230", + "codeCommune": "74027", + "libelleAcheminement": "LA BALME DE THUY", + "nomCommune": "LA BALME DE THUY" }, { - "codePostal": "71710", - "codeCommune": "71103", - "libelleAcheminement": "CHARMOY", - "nomCommune": "CHARMOY" + "codePostal": "22530", + "codeCommune": "22158", + "libelleAcheminement": "GUERLEDAN", + "nomCommune": "GUERLEDAN" }, { - "codePostal": "72400", - "codeCommune": "72080", - "libelleAcheminement": "CHERRE AU", - "nomCommune": "CHERRE AU" + "codePostal": "74270", + "codeCommune": "74086", + "libelleAcheminement": "CONTAMINE SARZIN", + "nomCommune": "CONTAMINE SARZIN" }, { - "codePostal": "47420", - "codeCommune": "47119", - "libelleAcheminement": "HOUEILLES", - "nomCommune": "HOUEILLES" + "codePostal": "62650", + "codeCommune": "62227", + "libelleAcheminement": "CLENLEU", + "nomCommune": "CLENLEU" }, { - "codePostal": "15500", - "codeCommune": "15097", - "libelleAcheminement": "LASTIC", - "nomCommune": "LASTIC" + "codePostal": "63890", + "codeCommune": "63337", + "libelleAcheminement": "ST ELOY LA GLACIERE", + "nomCommune": "ST ELOY LA GLACIERE" }, { - "codePostal": "71800", - "codeCommune": "71116", - "libelleAcheminement": "CHATENAY", - "nomCommune": "CHATENAY" + "codePostal": "74380", + "codeCommune": "74040", + "libelleAcheminement": "BONNE", + "nomCommune": "BONNE" }, { - "codePostal": "72600", - "codeCommune": "72091", - "libelleAcheminement": "CONTILLY", - "nomCommune": "CONTILLY" + "codePostal": "22540", + "codeCommune": "22164", + "libelleAcheminement": "PEDERNEC", + "nomCommune": "PEDERNEC" }, { - "codePostal": "47250", - "codeCommune": "47121", - "libelleAcheminement": "LABASTIDE CASTEL AMOUROUX", - "nomCommune": "LABASTIDE CASTEL AMOUROUX" + "codePostal": "74110", + "codeCommune": "74091", + "libelleAcheminement": "LA COTE D ARBROZ", + "nomCommune": "LA COTE D ARBROZ" }, { - "codePostal": "15300", - "codeCommune": "15101", - "libelleAcheminement": "LAVEISSIERE", - "nomCommune": "LAVEISSIERE" + "codePostal": "62126", + "codeCommune": "62237", + "libelleAcheminement": "CONTEVILLE LES BOULOGNE", + "nomCommune": "CONTEVILLE LES BOULOGNE" }, { - "codePostal": "71250", - "codeCommune": "71125", - "libelleAcheminement": "CHERIZET", - "nomCommune": "CHERIZET" + "codePostal": "63320", + "codeCommune": "63342", + "libelleAcheminement": "ST FLORET", + "nomCommune": "ST FLORET" }, { - "codePostal": "72290", - "codeCommune": "72099", - "libelleAcheminement": "COURCEBOEUFS", - "nomCommune": "COURCEBOEUFS" + "codePostal": "74890", + "codeCommune": "74048", + "libelleAcheminement": "BRENTHONNE", + "nomCommune": "BRENTHONNE" }, { - "codePostal": "47150", - "codeCommune": "47124", - "libelleAcheminement": "LACAUSSADE", - "nomCommune": "LACAUSSADE" + "codePostal": "22700", + "codeCommune": "22168", + "libelleAcheminement": "PERROS GUIREC", + "nomCommune": "PERROS GUIREC" }, { - "codePostal": "15320", - "codeCommune": "15108", - "libelleAcheminement": "VAL D ARCOMIE", - "nomCommune": "VAL D ARCOMIE" + "codePostal": "74350", + "codeCommune": "74096", + "libelleAcheminement": "CRUSEILLES", + "nomCommune": "CRUSEILLES" }, { - "codePostal": "71220", - "codeCommune": "71128", - "libelleAcheminement": "CHIDDES", - "nomCommune": "CHIDDES" + "codePostal": "62760", + "codeCommune": "62242", + "libelleAcheminement": "COUIN", + "nomCommune": "COUIN" }, { - "codePostal": "72270", - "codeCommune": "72100", - "libelleAcheminement": "COURCELLES LA FORET", - "nomCommune": "COURCELLES LA FORET" + "codePostal": "63122", + "codeCommune": "63345", + "libelleAcheminement": "ST GENES CHAMPANELLE", + "nomCommune": "ST GENES CHAMPANELLE" }, { - "codePostal": "47180", - "codeCommune": "47131", - "libelleAcheminement": "LAGUPIE", - "nomCommune": "LAGUPIE" + "codePostal": "74550", + "codeCommune": "74053", + "libelleAcheminement": "CERVENS", + "nomCommune": "CERVENS" }, { - "codePostal": "15220", - "codeCommune": "15117", - "libelleAcheminement": "MARCOLES", - "nomCommune": "MARCOLES" + "codePostal": "22940", + "codeCommune": "22171", + "libelleAcheminement": "PLAINTEL", + "nomCommune": "PLAINTEL" }, { - "codePostal": "71540", - "codeCommune": "71129", - "libelleAcheminement": "CHISSEY EN MORVAN", - "nomCommune": "CHISSEY EN MORVAN" + "codePostal": "74230", + "codeCommune": "74102", + "libelleAcheminement": "DINGY ST CLAIR", + "nomCommune": "DINGY ST CLAIR" }, { - "codePostal": "72110", - "codeCommune": "72101", - "libelleAcheminement": "COURCEMONT", - "nomCommune": "COURCEMONT" + "codePostal": "62158", + "codeCommune": "62243", + "libelleAcheminement": "COULLEMONT", + "nomCommune": "COULLEMONT" }, { - "codePostal": "47170", - "codeCommune": "47134", - "libelleAcheminement": "LANNES", - "nomCommune": "LANNES" + "codePostal": "63122", + "codeCommune": "63345", + "libelleAcheminement": "ST GENES CHAMPANELLE", + "nomCommune": "ST GENES CHAMPANELLE" }, { - "codePostal": "15200", - "codeCommune": "15123", - "libelleAcheminement": "MEALLET", - "nomCommune": "MEALLET" + "codePostal": "74500", + "codeCommune": "74057", + "libelleAcheminement": "CHAMPANGES", + "nomCommune": "CHAMPANGES" }, { - "codePostal": "71460", - "codeCommune": "71130", - "libelleAcheminement": "CHISSEY LES MACON", - "nomCommune": "CHISSEY LES MACON" + "codePostal": "22960", + "codeCommune": "22176", + "libelleAcheminement": "PLEDRAN", + "nomCommune": "PLEDRAN" }, { - "codePostal": "72300", - "codeCommune": "72106", - "libelleAcheminement": "COURTILLERS", - "nomCommune": "COURTILLERS" + "codePostal": "74550", + "codeCommune": "74106", + "libelleAcheminement": "DRAILLANT", + "nomCommune": "DRAILLANT" }, { - "codePostal": "47800", - "codeCommune": "47136", - "libelleAcheminement": "LAPERCHE", - "nomCommune": "LAPERCHE" + "codePostal": "62136", + "codeCommune": "62252", + "libelleAcheminement": "LA COUTURE", + "nomCommune": "LA COUTURE" }, { - "codePostal": "15400", - "codeCommune": "15124", - "libelleAcheminement": "MENET", - "nomCommune": "MENET" + "codePostal": "63122", + "codeCommune": "63345", + "libelleAcheminement": "ST GENES CHAMPANELLE", + "nomCommune": "ST GENES CHAMPANELLE" }, { - "codePostal": "71350", - "codeCommune": "71131", - "libelleAcheminement": "CIEL", - "nomCommune": "CIEL" + "codePostal": "74540", + "codeCommune": "74061", + "libelleAcheminement": "CHAPEIRY", + "nomCommune": "CHAPEIRY" }, { - "codePostal": "72540", - "codeCommune": "72107", - "libelleAcheminement": "CRANNES EN CHAMPAGNE", - "nomCommune": "CRANNES EN CHAMPAGNE" + "codePostal": "22170", + "codeCommune": "22182", + "libelleAcheminement": "PLELO", + "nomCommune": "PLELO" }, { - "codePostal": "47800", - "codeCommune": "47144", - "libelleAcheminement": "LAVERGNE", - "nomCommune": "LAVERGNE" + "codePostal": "74270", + "codeCommune": "74107", + "libelleAcheminement": "DROISY", + "nomCommune": "DROISY" }, { - "codePostal": "15240", - "codeCommune": "15128", - "libelleAcheminement": "LA MONSELIE", - "nomCommune": "LA MONSELIE" + "codePostal": "62158", + "codeCommune": "62253", + "libelleAcheminement": "COUTURELLE", + "nomCommune": "COUTURELLE" }, { - "codePostal": "71260", - "codeCommune": "71135", - "libelleAcheminement": "CLESSE", - "nomCommune": "CLESSE" + "codePostal": "63630", + "codeCommune": "63353", + "libelleAcheminement": "ST GERMAIN L HERM", + "nomCommune": "ST GERMAIN L HERM" }, { - "codePostal": "72200", - "codeCommune": "72110", - "libelleAcheminement": "CROSMIERES", - "nomCommune": "CROSMIERES" + "codePostal": "74390", + "codeCommune": "74063", + "libelleAcheminement": "CHATEL", + "nomCommune": "CHATEL" }, { - "codePostal": "47300", - "codeCommune": "47146", - "libelleAcheminement": "LEDAT", - "nomCommune": "LEDAT" + "codePostal": "22490", + "codeCommune": "22190", + "libelleAcheminement": "PLESLIN TRIGAVOU", + "nomCommune": "PLESLIN TRIGAVOU" }, { - "codePostal": "15190", - "codeCommune": "15129", - "libelleAcheminement": "MONTBOUDIF", - "nomCommune": "MONTBOUDIF" + "codePostal": "74410", + "codeCommune": "74111", + "libelleAcheminement": "ENTREVERNES", + "nomCommune": "ENTREVERNES" }, { - "codePostal": "71460", - "codeCommune": "71139", - "libelleAcheminement": "COLLONGE EN CHAROLLAIS", - "nomCommune": "COLLONGE EN CHAROLLAIS" + "codePostal": "62310", + "codeCommune": "62256", + "libelleAcheminement": "CREPY", + "nomCommune": "CREPY" }, { - "codePostal": "72240", - "codeCommune": "72119", - "libelleAcheminement": "DOMFRONT EN CHAMPAGNE", - "nomCommune": "DOMFRONT EN CHAMPAGNE" + "codePostal": "63440", + "codeCommune": "63358", + "libelleAcheminement": "ST HILAIRE LA CROIX", + "nomCommune": "ST HILAIRE LA CROIX" }, { - "codePostal": "47370", - "codeCommune": "47160", - "libelleAcheminement": "MASQUIERES", - "nomCommune": "MASQUIERES" + "codePostal": "74270", + "codeCommune": "74065", + "libelleAcheminement": "CHAUMONT", + "nomCommune": "CHAUMONT" }, { - "codePostal": "15190", - "codeCommune": "15132", - "libelleAcheminement": "MONTGRELEIX", - "nomCommune": "MONTGRELEIX" + "codePostal": "22490", + "codeCommune": "22190", + "libelleAcheminement": "PLESLIN TRIGAVOU", + "nomCommune": "PLESLIN TRIGAVOU" }, { - "codePostal": "71360", - "codeCommune": "71140", - "libelleAcheminement": "COLLONGE LA MADELEINE", - "nomCommune": "COLLONGE LA MADELEINE" + "codePostal": "74330", + "codeCommune": "74112", + "libelleAcheminement": "EPAGNY METZ TESSY", + "nomCommune": "EPAGNY METZ TESSY" }, { - "codePostal": "72120", - "codeCommune": "72125", - "libelleAcheminement": "ECORPAIN", - "nomCommune": "ECORPAIN" + "codePostal": "62780", + "codeCommune": "62261", + "libelleAcheminement": "CUCQ", + "nomCommune": "CUCQ" }, { - "codePostal": "47290", - "codeCommune": "47170", - "libelleAcheminement": "MONBAHUS", - "nomCommune": "MONBAHUS" + "codePostal": "63610", + "codeCommune": "63383", + "libelleAcheminement": "ST PIERRE COLAMINE", + "nomCommune": "ST PIERRE COLAMINE" }, { - "codePostal": "15150", - "codeCommune": "15135", - "libelleAcheminement": "MONTVERT", - "nomCommune": "MONTVERT" + "codePostal": "74140", + "codeCommune": "74070", + "libelleAcheminement": "CHENS SUR LEMAN", + "nomCommune": "CHENS SUR LEMAN" }, { - "codePostal": "71800", - "codeCommune": "71141", - "libelleAcheminement": "COLOMBIER EN BRIONNAIS", - "nomCommune": "COLOMBIER EN BRIONNAIS" + "codePostal": "22740", + "codeCommune": "22196", + "libelleAcheminement": "PLEUDANIEL", + "nomCommune": "PLEUDANIEL" }, { - "codePostal": "72120", - "codeCommune": "72128", - "libelleAcheminement": "VAL D ETANGSON", - "nomCommune": "VAL D ETANGSON" + "codePostal": "74210", + "codeCommune": "74123", + "libelleAcheminement": "FAVERGES SEYTHENEX", + "nomCommune": "FAVERGES SEYTHENEX" }, { - "codePostal": "47340", - "codeCommune": "47171", - "libelleAcheminement": "MONBALEN", - "nomCommune": "MONBALEN" + "codePostal": "62780", + "codeCommune": "62261", + "libelleAcheminement": "CUCQ", + "nomCommune": "CUCQ" }, { - "codePostal": "15250", - "codeCommune": "15140", - "libelleAcheminement": "NAUCELLES", - "nomCommune": "NAUCELLES" + "codePostal": "63480", + "codeCommune": "63384", + "libelleAcheminement": "ST PIERRE LA BOURLHONNE", + "nomCommune": "ST PIERRE LA BOURLHONNE" }, { - "codePostal": "71140", - "codeCommune": "71155", - "libelleAcheminement": "CRONAT", - "nomCommune": "CRONAT" + "codePostal": "74270", + "codeCommune": "74071", + "libelleAcheminement": "CHESSENAZ", + "nomCommune": "CHESSENAZ" }, { - "codePostal": "72120", - "codeCommune": "72128", - "libelleAcheminement": "VAL D ETANGSON", - "nomCommune": "VAL D ETANGSON" + "codePostal": "22150", + "codeCommune": "22203", + "libelleAcheminement": "PLOEUC L HERMITAGE", + "nomCommune": "PLOEUC L HERMITAGE" }, { - "codePostal": "47160", - "codeCommune": "47177", - "libelleAcheminement": "MONHEURT", - "nomCommune": "MONHEURT" + "codePostal": "74240", + "codeCommune": "74133", + "libelleAcheminement": "GAILLARD", + "nomCommune": "GAILLARD" }, { - "codePostal": "15290", - "codeCommune": "15144", - "libelleAcheminement": "OMPS", - "nomCommune": "OMPS" + "codePostal": "62129", + "codeCommune": "62265", + "libelleAcheminement": "DELETTES", + "nomCommune": "DELETTES" }, { - "codePostal": "71480", - "codeCommune": "71157", - "libelleAcheminement": "CUISEAUX", - "nomCommune": "CUISEAUX" + "codePostal": "63230", + "codeCommune": "63385", + "libelleAcheminement": "ST PIERRE LE CHASTEL", + "nomCommune": "ST PIERRE LE CHASTEL" }, { - "codePostal": "72600", - "codeCommune": "72137", - "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", - "nomCommune": "VILLENEUVE EN PERSEIGNE" + "codePostal": "74270", + "codeCommune": "74078", + "libelleAcheminement": "CLERMONT", + "nomCommune": "CLERMONT" }, { - "codePostal": "47330", - "codeCommune": "47183", - "libelleAcheminement": "MONTAURIOL", - "nomCommune": "MONTAURIOL" + "codePostal": "22260", + "codeCommune": "22204", + "libelleAcheminement": "PLOEZAL", + "nomCommune": "PLOEZAL" }, { - "codePostal": "15230", - "codeCommune": "15149", - "libelleAcheminement": "PAULHENC", - "nomCommune": "PAULHENC" + "codePostal": "74420", + "codeCommune": "74140", + "libelleAcheminement": "HABERE POCHE", + "nomCommune": "HABERE POCHE" }, { - "codePostal": "71150", - "codeCommune": "71174", - "libelleAcheminement": "DEZIZE LES MARANGES", - "nomCommune": "DEZIZE LES MARANGES" + "codePostal": "62460", + "codeCommune": "62270", + "libelleAcheminement": "DIVION", + "nomCommune": "DIVION" }, { - "codePostal": "72610", - "codeCommune": "72137", - "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", - "nomCommune": "VILLENEUVE EN PERSEIGNE" + "codePostal": "63210", + "codeCommune": "63386", + "libelleAcheminement": "ST PIERRE ROCHE", + "nomCommune": "ST PIERRE ROCHE" }, { - "codePostal": "47210", - "codeCommune": "47184", - "libelleAcheminement": "MONTAUT", - "nomCommune": "MONTAUT" + "codePostal": "74130", + "codeCommune": "74087", + "libelleAcheminement": "CONTAMINE SUR ARVE", + "nomCommune": "CONTAMINE SUR ARVE" }, { - "codePostal": "15230", - "codeCommune": "15152", - "libelleAcheminement": "PIERREFORT", - "nomCommune": "PIERREFORT" + "codePostal": "22830", + "codeCommune": "22208", + "libelleAcheminement": "PLOUASNE", + "nomCommune": "PLOUASNE" }, { - "codePostal": "71160", - "codeCommune": "71176", - "libelleAcheminement": "DIGOIN", - "nomCommune": "DIGOIN" + "codePostal": "74520", + "codeCommune": "74144", + "libelleAcheminement": "JONZIER EPAGNY", + "nomCommune": "JONZIER EPAGNY" }, { - "codePostal": "72130", - "codeCommune": "72138", - "libelleAcheminement": "FRESNAY SUR SARTHE", - "nomCommune": "FRESNAY SUR SARTHE" + "codePostal": "62380", + "codeCommune": "62271", + "libelleAcheminement": "DOHEM", + "nomCommune": "DOHEM" }, { - "codePostal": "47500", - "codeCommune": "47185", - "libelleAcheminement": "MONTAYRAL", - "nomCommune": "MONTAYRAL" + "codePostal": "63440", + "codeCommune": "63391", + "libelleAcheminement": "ST REMY DE BLOT", + "nomCommune": "ST REMY DE BLOT" }, { - "codePostal": "15800", - "codeCommune": "15154", - "libelleAcheminement": "POLMINHAC", - "nomCommune": "POLMINHAC" + "codePostal": "74150", + "codeCommune": "74095", + "libelleAcheminement": "CREMPIGNY BONNEGUETE", + "nomCommune": "CREMPIGNY BONNEGUETE" }, { - "codePostal": "71250", - "codeCommune": "71181", - "libelleAcheminement": "DONZY LE PERTUIS", - "nomCommune": "DONZY LE PERTUIS" + "codePostal": "22650", + "codeCommune": "22209", + "libelleAcheminement": "BEAUSSAIS SUR MER", + "nomCommune": "BEAUSSAIS SUR MER" }, { - "codePostal": "72110", - "codeCommune": "72148", - "libelleAcheminement": "JAUZE", - "nomCommune": "JAUZE" + "codePostal": "74140", + "codeCommune": "74150", + "libelleAcheminement": "LOISIN", + "nomCommune": "LOISIN" }, { - "codePostal": "47120", - "codeCommune": "47187", - "libelleAcheminement": "MONTETON", - "nomCommune": "MONTETON" + "codePostal": "62119", + "codeCommune": "62274", + "libelleAcheminement": "DOURGES", + "nomCommune": "DOURGES" }, { - "codePostal": "15600", - "codeCommune": "15157", - "libelleAcheminement": "QUEZAC", - "nomCommune": "QUEZAC" + "codePostal": "63310", + "codeCommune": "63400", + "libelleAcheminement": "ST SYLVESTRE PRAGOULIN", + "nomCommune": "ST SYLVESTRE PRAGOULIN" }, { - "codePostal": "71400", - "codeCommune": "71184", - "libelleAcheminement": "DRACY ST LOUP", - "nomCommune": "DRACY ST LOUP" + "codePostal": "74350", + "codeCommune": "74098", + "libelleAcheminement": "CUVAT", + "nomCommune": "CUVAT" }, { - "codePostal": "72540", - "codeCommune": "72149", - "libelleAcheminement": "JOUE EN CHARNIE", - "nomCommune": "JOUE EN CHARNIE" + "codePostal": "22620", + "codeCommune": "22210", + "libelleAcheminement": "PLOUBAZLANEC", + "nomCommune": "PLOUBAZLANEC" }, { - "codePostal": "47200", - "codeCommune": "47191", - "libelleAcheminement": "MONTPOUILLAN", - "nomCommune": "MONTPOUILLAN" + "codePostal": "74890", + "codeCommune": "74156", + "libelleAcheminement": "LULLY", + "nomCommune": "LULLY" }, { - "codePostal": "15400", - "codeCommune": "15162", - "libelleAcheminement": "RIOM ES MONTAGNES", - "nomCommune": "RIOM ES MONTAGNES" + "codePostal": "62320", + "codeCommune": "62277", + "libelleAcheminement": "DROCOURT", + "nomCommune": "DROCOURT" }, { - "codePostal": "71360", - "codeCommune": "71188", - "libelleAcheminement": "EPERTULLY", - "nomCommune": "EPERTULLY" + "codePostal": "63730", + "codeCommune": "63413", + "libelleAcheminement": "LA SAUVETAT", + "nomCommune": "LA SAUVETAT" }, { - "codePostal": "72500", - "codeCommune": "72153", - "libelleAcheminement": "JUPILLES", - "nomCommune": "JUPILLES" + "codePostal": "74700", + "codeCommune": "74103", + "libelleAcheminement": "DOMANCY", + "nomCommune": "DOMANCY" }, { - "codePostal": "47290", - "codeCommune": "47192", - "libelleAcheminement": "MONVIEL", - "nomCommune": "MONVIEL" + "codePostal": "22620", + "codeCommune": "22210", + "libelleAcheminement": "PLOUBAZLANEC", + "nomCommune": "PLOUBAZLANEC" }, { - "codePostal": "15220", - "codeCommune": "15172", - "libelleAcheminement": "ST ANTOINE", - "nomCommune": "ST ANTOINE" + "codePostal": "74200", + "codeCommune": "74157", + "libelleAcheminement": "LYAUD", + "nomCommune": "LYAUD" }, { - "codePostal": "71580", - "codeCommune": "71198", - "libelleAcheminement": "FLACEY EN BRESSE", - "nomCommune": "FLACEY EN BRESSE" + "codePostal": "62360", + "codeCommune": "62281", + "libelleAcheminement": "ECHINGHEN", + "nomCommune": "ECHINGHEN" }, { - "codePostal": "72390", - "codeCommune": "72158", - "libelleAcheminement": "LAVARE", - "nomCommune": "LAVARE" + "codePostal": "63190", + "codeCommune": "63420", + "libelleAcheminement": "SEYCHALLES", + "nomCommune": "SEYCHALLES" }, { - "codePostal": "47290", - "codeCommune": "47193", - "libelleAcheminement": "MOULINET", - "nomCommune": "MOULINET" + "codePostal": "74410", + "codeCommune": "74108", + "libelleAcheminement": "DUINGT", + "nomCommune": "DUINGT" }, { - "codePostal": "15140", - "codeCommune": "15176", - "libelleAcheminement": "ST CHAMANT", - "nomCommune": "ST CHAMANT" + "codePostal": "22150", + "codeCommune": "22219", + "libelleAcheminement": "PLOUGUENAST LANGAST", + "nomCommune": "PLOUGUENAST LANGAST" }, { - "codePostal": "71250", - "codeCommune": "71199", - "libelleAcheminement": "FLAGY", - "nomCommune": "FLAGY" + "codePostal": "74150", + "codeCommune": "74161", + "libelleAcheminement": "MARCELLAZ ALBANAIS", + "nomCommune": "MARCELLAZ ALBANAIS" }, { - "codePostal": "72500", - "codeCommune": "72173", - "libelleAcheminement": "LUCEAU", - "nomCommune": "LUCEAU" + "codePostal": "62770", + "codeCommune": "62282", + "libelleAcheminement": "ECLIMEUX", + "nomCommune": "ECLIMEUX" }, { - "codePostal": "47190", - "codeCommune": "47196", - "libelleAcheminement": "NICOLE", - "nomCommune": "NICOLE" + "codePostal": "63560", + "codeCommune": "63428", + "libelleAcheminement": "TEILHET", + "nomCommune": "TEILHET" }, { - "codePostal": "15140", - "codeCommune": "15186", - "libelleAcheminement": "STE EULALIE", - "nomCommune": "STE EULALIE" + "codePostal": "74110", + "codeCommune": "74114", + "libelleAcheminement": "ESSERT ROMAND", + "nomCommune": "ESSERT ROMAND" }, { - "codePostal": "71120", - "codeCommune": "71203", - "libelleAcheminement": "FONTENAY", - "nomCommune": "FONTENAY" + "codePostal": "22110", + "codeCommune": "22220", + "libelleAcheminement": "PLOUGUERNEVEL", + "nomCommune": "PLOUGUERNEVEL" }, { - "codePostal": "72290", - "codeCommune": "72174", - "libelleAcheminement": "LUCE SOUS BALLON", - "nomCommune": "LUCE SOUS BALLON" + "codePostal": "74490", + "codeCommune": "74174", + "libelleAcheminement": "MEGEVETTE", + "nomCommune": "MEGEVETTE" }, { - "codePostal": "47210", - "codeCommune": "47200", - "libelleAcheminement": "PARRANQUET", - "nomCommune": "PARRANQUET" + "codePostal": "62860", + "codeCommune": "62298", + "libelleAcheminement": "EPINOY", + "nomCommune": "EPINOY" }, { - "codePostal": "15400", - "codeCommune": "15190", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "63340", + "codeCommune": "63429", + "libelleAcheminement": "TERNANT LES EAUX", + "nomCommune": "TERNANT LES EAUX" }, { - "codePostal": "71460", - "codeCommune": "71214", - "libelleAcheminement": "GENOUILLY", - "nomCommune": "GENOUILLY" + "codePostal": "74800", + "codeCommune": "74116", + "libelleAcheminement": "ETAUX", + "nomCommune": "ETAUX" }, { - "codePostal": "72800", - "codeCommune": "72175", - "libelleAcheminement": "LUCHE PRINGE", - "nomCommune": "LUCHE PRINGE" + "codePostal": "22580", + "codeCommune": "22222", + "libelleAcheminement": "PLOUHA", + "nomCommune": "PLOUHA" }, { - "codePostal": "47700", - "codeCommune": "47205", - "libelleAcheminement": "PINDERES", - "nomCommune": "PINDERES" + "codePostal": "74500", + "codeCommune": "74175", + "libelleAcheminement": "MEILLERIE", + "nomCommune": "MEILLERIE" }, { - "codePostal": "15800", - "codeCommune": "15192", - "libelleAcheminement": "ST JACQUES DES BLATS", - "nomCommune": "ST JACQUES DES BLATS" + "codePostal": "62224", + "codeCommune": "62300", + "libelleAcheminement": "EQUIHEN PLAGE", + "nomCommune": "EQUIHEN PLAGE" }, { - "codePostal": "71990", - "codeCommune": "71223", - "libelleAcheminement": "LA GRANDE VERRIERE", - "nomCommune": "LA GRANDE VERRIERE" + "codePostal": "63380", + "codeCommune": "63436", + "libelleAcheminement": "TRALAIGUES", + "nomCommune": "TRALAIGUES" }, { - "codePostal": "72800", - "codeCommune": "72176", - "libelleAcheminement": "LE LUDE", - "nomCommune": "LE LUDE" + "codePostal": "74150", + "codeCommune": "74117", + "libelleAcheminement": "ETERCY", + "nomCommune": "ETERCY" }, { - "codePostal": "47480", - "codeCommune": "47209", - "libelleAcheminement": "PONT DU CASSE", - "nomCommune": "PONT DU CASSE" + "codePostal": "22200", + "codeCommune": "22223", + "libelleAcheminement": "PLOUISY", + "nomCommune": "PLOUISY" }, { - "codePostal": "15220", - "codeCommune": "15196", - "libelleAcheminement": "ST MAMET LA SALVETAT", - "nomCommune": "ST MAMET LA SALVETAT" + "codePostal": "74350", + "codeCommune": "74177", + "libelleAcheminement": "MENTHONNEX EN BORNES", + "nomCommune": "MENTHONNEX EN BORNES" }, { - "codePostal": "71600", - "codeCommune": "71233", - "libelleAcheminement": "L HOPITAL LE MERCIER", - "nomCommune": "L HOPITAL LE MERCIER" + "codePostal": "62650", + "codeCommune": "62302", + "libelleAcheminement": "ERGNY", + "nomCommune": "ERGNY" }, { - "codePostal": "72100", - "codeCommune": "72181", - "libelleAcheminement": "LE MANS", - "nomCommune": "LE MANS" + "codePostal": "63610", + "codeCommune": "63440", + "libelleAcheminement": "VALBELEIX", + "nomCommune": "VALBELEIX" }, { - "codePostal": "47170", - "codeCommune": "47211", - "libelleAcheminement": "POUDENAS", - "nomCommune": "POUDENAS" + "codePostal": "74100", + "codeCommune": "74118", + "libelleAcheminement": "ETREMBIERES", + "nomCommune": "ETREMBIERES" }, { - "codePostal": "15110", - "codeCommune": "15199", - "libelleAcheminement": "ST MARTIAL", - "nomCommune": "ST MARTIAL" + "codePostal": "22300", + "codeCommune": "22224", + "libelleAcheminement": "PLOULEC H", + "nomCommune": "PLOULEC H" }, { - "codePostal": "71760", - "codeCommune": "71239", - "libelleAcheminement": "ISSY L EVEQUE", - "nomCommune": "ISSY L EVEQUE" + "codePostal": "74440", + "codeCommune": "74183", + "libelleAcheminement": "MIEUSSY", + "nomCommune": "MIEUSSY" }, { - "codePostal": "72260", - "codeCommune": "72189", - "libelleAcheminement": "MAROLLES LES BRAULTS", - "nomCommune": "MAROLLES LES BRAULTS" + "codePostal": "62400", + "codeCommune": "62310", + "libelleAcheminement": "ESSARS", + "nomCommune": "ESSARS" }, { - "codePostal": "47360", - "codeCommune": "47213", - "libelleAcheminement": "PRAYSSAS", - "nomCommune": "PRAYSSAS" + "codePostal": "63500", + "codeCommune": "63444", + "libelleAcheminement": "VARENNES SUR USSON", + "nomCommune": "VARENNES SUR USSON" }, { - "codePostal": "15230", - "codeCommune": "15201", - "libelleAcheminement": "ST MARTIN SOUS VIGOUROUX", - "nomCommune": "ST MARTIN SOUS VIGOUROUX" + "codePostal": "74130", + "codeCommune": "74122", + "libelleAcheminement": "FAUCIGNY", + "nomCommune": "FAUCIGNY" }, { - "codePostal": "71290", - "codeCommune": "71244", - "libelleAcheminement": "JOUVENCON", - "nomCommune": "JOUVENCON" + "codePostal": "22860", + "codeCommune": "22233", + "libelleAcheminement": "PLOURIVO", + "nomCommune": "PLOURIVO" }, { - "codePostal": "72270", - "codeCommune": "72195", - "libelleAcheminement": "MEZERAY", - "nomCommune": "MEZERAY" + "codePostal": "74130", + "codeCommune": "74189", + "libelleAcheminement": "MONT SAXONNEX", + "nomCommune": "MONT SAXONNEX" }, { - "codePostal": "47700", - "codeCommune": "47222", - "libelleAcheminement": "LA REUNION", - "nomCommune": "LA REUNION" + "codePostal": "62760", + "codeCommune": "62322", + "libelleAcheminement": "FAMECHON", + "nomCommune": "FAMECHON" }, { - "codePostal": "15500", - "codeCommune": "15203", - "libelleAcheminement": "ST MARY LE PLAIN", - "nomCommune": "ST MARY LE PLAIN" + "codePostal": "63320", + "codeCommune": "63452", + "libelleAcheminement": "VERRIERES", + "nomCommune": "VERRIERES" }, { - "codePostal": "71700", - "codeCommune": "71248", - "libelleAcheminement": "LACROST", - "nomCommune": "LACROST" + "codePostal": "74890", + "codeCommune": "74126", + "libelleAcheminement": "FESSY", + "nomCommune": "FESSY" }, { - "codePostal": "72130", - "codeCommune": "72209", - "libelleAcheminement": "MONTREUIL LE CHETIF", - "nomCommune": "MONTREUIL LE CHETIF" + "codePostal": "22170", + "codeCommune": "22234", + "libelleAcheminement": "PLOUVARA", + "nomCommune": "PLOUVARA" }, { - "codePostal": "47300", - "codeCommune": "47237", - "libelleAcheminement": "STE COLOMBE DE VILLENEUVE", - "nomCommune": "STE COLOMBE DE VILLENEUVE" + "codePostal": "74110", + "codeCommune": "74191", + "libelleAcheminement": "MORZINE", + "nomCommune": "MORZINE" }, { - "codePostal": "15190", - "codeCommune": "15213", - "libelleAcheminement": "ST SATURNIN", - "nomCommune": "ST SATURNIN" + "codePostal": "62118", + "codeCommune": "62323", + "libelleAcheminement": "FAMPOUX", + "nomCommune": "FAMPOUX" }, { - "codePostal": "71240", - "codeCommune": "71252", - "libelleAcheminement": "LALHEUE", - "nomCommune": "LALHEUE" + "codePostal": "63380", + "codeCommune": "63460", + "libelleAcheminement": "VILLOSSANGES", + "nomCommune": "VILLOSSANGES" }, { - "codePostal": "72230", - "codeCommune": "72213", - "libelleAcheminement": "MULSANNE", - "nomCommune": "MULSANNE" + "codePostal": "74150", + "codeCommune": "74141", + "libelleAcheminement": "HAUTEVILLE SUR FIER", + "nomCommune": "HAUTEVILLE SUR FIER" }, { - "codePostal": "47450", - "codeCommune": "47246", - "libelleAcheminement": "ST HILAIRE DE LUSIGNAN", - "nomCommune": "ST HILAIRE DE LUSIGNAN" + "codePostal": "22310", + "codeCommune": "22238", + "libelleAcheminement": "PLUFUR", + "nomCommune": "PLUFUR" }, { - "codePostal": "15130", - "codeCommune": "15215", - "libelleAcheminement": "ST SIMON", - "nomCommune": "ST SIMON" + "codePostal": "74110", + "codeCommune": "74191", + "libelleAcheminement": "MORZINE", + "nomCommune": "MORZINE" }, { - "codePostal": "71100", - "codeCommune": "71269", - "libelleAcheminement": "LUX", - "nomCommune": "LUX" + "codePostal": "62960", + "codeCommune": "62327", + "libelleAcheminement": "FEBVIN PALFART", + "nomCommune": "FEBVIN PALFART" }, { - "codePostal": "72240", - "codeCommune": "72219", - "libelleAcheminement": "BERNAY NEUVY EN CHAMPAGNE", - "nomCommune": "BERNAY NEUVY EN CHAMPAGNE" + "codePostal": "63530", + "codeCommune": "63470", + "libelleAcheminement": "VOLVIC", + "nomCommune": "VOLVIC" }, { - "codePostal": "47170", - "codeCommune": "47266", - "libelleAcheminement": "ST PE ST SIMON", - "nomCommune": "ST PE ST SIMON" + "codePostal": "74380", + "codeCommune": "74153", + "libelleAcheminement": "LUCINGES", + "nomCommune": "LUCINGES" }, { - "codePostal": "15200", - "codeCommune": "15230", - "libelleAcheminement": "SOURNIAC", - "nomCommune": "SOURNIAC" + "codePostal": "22320", + "codeCommune": "22244", + "libelleAcheminement": "PLUSSULIEN", + "nomCommune": "PLUSSULIEN" }, { - "codePostal": "71460", - "codeCommune": "71272", - "libelleAcheminement": "MALAY", - "nomCommune": "MALAY" + "codePostal": "74150", + "codeCommune": "74192", + "libelleAcheminement": "MOYE", + "nomCommune": "MOYE" }, { - "codePostal": "72430", - "codeCommune": "72237", - "libelleAcheminement": "PIRMIL", - "nomCommune": "PIRMIL" + "codePostal": "62250", + "codeCommune": "62329", + "libelleAcheminement": "FERQUES", + "nomCommune": "FERQUES" }, { - "codePostal": "47270", - "codeCommune": "47269", - "libelleAcheminement": "ST PIERRE DE CLAIRAC", - "nomCommune": "ST PIERRE DE CLAIRAC" + "codePostal": "64360", + "codeCommune": "64005", + "libelleAcheminement": "ABOS", + "nomCommune": "ABOS" }, { - "codePostal": "15100", - "codeCommune": "15232", - "libelleAcheminement": "TANAVELLE", - "nomCommune": "TANAVELLE" + "codePostal": "74300", + "codeCommune": "74159", + "libelleAcheminement": "MAGLAND", + "nomCommune": "MAGLAND" }, { - "codePostal": "71120", - "codeCommune": "71276", - "libelleAcheminement": "MARCILLY LA GUEURCE", - "nomCommune": "MARCILLY LA GUEURCE" + "codePostal": "22590", + "codeCommune": "22251", + "libelleAcheminement": "PORDIC", + "nomCommune": "PORDIC" }, { - "codePostal": "72600", - "codeCommune": "72238", - "libelleAcheminement": "PIZIEUX", - "nomCommune": "PIZIEUX" + "codePostal": "74540", + "codeCommune": "74194", + "libelleAcheminement": "MURES", + "nomCommune": "MURES" }, { - "codePostal": "47180", - "codeCommune": "47277", - "libelleAcheminement": "ST SAUVEUR DE MEILHAN", - "nomCommune": "ST SAUVEUR DE MEILHAN" + "codePostal": "62149", + "codeCommune": "62330", + "libelleAcheminement": "FESTUBERT", + "nomCommune": "FESTUBERT" }, { - "codePostal": "15110", - "codeCommune": "15241", - "libelleAcheminement": "LA TRINITAT", - "nomCommune": "LA TRINITAT" + "codePostal": "64220", + "codeCommune": "64008", + "libelleAcheminement": "AHAXE ALCIETTE BASCASSAN", + "nomCommune": "AHAXE ALCIETTE BASCASSAN" }, { - "codePostal": "71390", - "codeCommune": "71277", - "libelleAcheminement": "MARCILLY LES BUXY", - "nomCommune": "MARCILLY LES BUXY" + "codePostal": "74230", + "codeCommune": "74160", + "libelleAcheminement": "MANIGOD", + "nomCommune": "MANIGOD" }, { - "codePostal": "72510", - "codeCommune": "72243", - "libelleAcheminement": "PONTVALLAIN", - "nomCommune": "PONTVALLAIN" + "codePostal": "22140", + "codeCommune": "22254", + "libelleAcheminement": "PRAT", + "nomCommune": "PRAT" }, { - "codePostal": "47140", - "codeCommune": "47280", - "libelleAcheminement": "ST SYLVESTRE SUR LOT", - "nomCommune": "ST SYLVESTRE SUR LOT" + "codePostal": "74300", + "codeCommune": "74196", + "libelleAcheminement": "NANCY SUR CLUSES", + "nomCommune": "NANCY SUR CLUSES" }, { - "codePostal": "15100", - "codeCommune": "15245", - "libelleAcheminement": "VABRES", - "nomCommune": "VABRES" + "codePostal": "62550", + "codeCommune": "62340", + "libelleAcheminement": "FLORINGHEM", + "nomCommune": "FLORINGHEM" }, { - "codePostal": "71220", - "codeCommune": "71279", - "libelleAcheminement": "LE ROUSSET MARIZY", - "nomCommune": "LE ROUSSET MARIZY" + "codePostal": "64250", + "codeCommune": "64014", + "libelleAcheminement": "AINHOA", + "nomCommune": "AINHOA" }, { - "codePostal": "72150", - "codeCommune": "72248", - "libelleAcheminement": "PRUILLE L EGUILLE", - "nomCommune": "PRUILLE L EGUILLE" + "codePostal": "74270", + "codeCommune": "74168", + "libelleAcheminement": "MARLIOZ", + "nomCommune": "MARLIOZ" }, { - "codePostal": "47600", - "codeCommune": "47287", - "libelleAcheminement": "SAUMONT", - "nomCommune": "SAUMONT" + "codePostal": "22120", + "codeCommune": "22258", + "libelleAcheminement": "QUESSOY", + "nomCommune": "QUESSOY" }, { - "codePostal": "15590", - "codeCommune": "15252", - "libelleAcheminement": "VELZIC", - "nomCommune": "VELZIC" + "codePostal": "74140", + "codeCommune": "74199", + "libelleAcheminement": "NERNIER", + "nomCommune": "NERNIER" }, { - "codePostal": "71220", - "codeCommune": "71285", - "libelleAcheminement": "MARTIGNY LE COMTE", - "nomCommune": "MARTIGNY LE COMTE" + "codePostal": "62270", + "codeCommune": "62346", + "libelleAcheminement": "FORTEL EN ARTOIS", + "nomCommune": "FORTEL EN ARTOIS" }, { - "codePostal": "72120", - "codeCommune": "72250", - "libelleAcheminement": "RAHAY", - "nomCommune": "RAHAY" + "codePostal": "64420", + "codeCommune": "64021", + "libelleAcheminement": "ANDOINS", + "nomCommune": "ANDOINS" }, { - "codePostal": "47800", - "codeCommune": "47290", - "libelleAcheminement": "LA SAUVETAT DU DROPT", - "nomCommune": "LA SAUVETAT DU DROPT" + "codePostal": "74150", + "codeCommune": "74170", + "libelleAcheminement": "MASSINGY", + "nomCommune": "MASSINGY" }, { - "codePostal": "15130", - "codeCommune": "15255", - "libelleAcheminement": "VEZAC", - "nomCommune": "VEZAC" + "codePostal": "22100", + "codeCommune": "22259", + "libelleAcheminement": "QUEVERT", + "nomCommune": "QUEVERT" }, { - "codePostal": "71250", - "codeCommune": "71287", - "libelleAcheminement": "MASSILLY", - "nomCommune": "MASSILLY" + "codePostal": "74190", + "codeCommune": "74208", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "72210", - "codeCommune": "72253", - "libelleAcheminement": "ROEZE SUR SARTHE", - "nomCommune": "ROEZE SUR SARTHE" + "codePostal": "62130", + "codeCommune": "62352", + "libelleAcheminement": "FRAMECOURT", + "nomCommune": "FRAMECOURT" }, { - "codePostal": "47160", - "codeCommune": "47320", - "libelleAcheminement": "VILLEFRANCHE DU QUEYRAN", - "nomCommune": "VILLEFRANCHE DU QUEYRAN" + "codePostal": "64510", + "codeCommune": "64023", + "libelleAcheminement": "ANGAIS", + "nomCommune": "ANGAIS" }, { - "codePostal": "15160", - "codeCommune": "15256", - "libelleAcheminement": "VEZE", - "nomCommune": "VEZE" + "codePostal": "74290", + "codeCommune": "74176", + "libelleAcheminement": "MENTHON ST BERNARD", + "nomCommune": "MENTHON ST BERNARD" }, { - "codePostal": "71340", - "codeCommune": "71291", - "libelleAcheminement": "MELAY", - "nomCommune": "MELAY" + "codePostal": "22400", + "codeCommune": "22261", + "libelleAcheminement": "QUINTENIC", + "nomCommune": "QUINTENIC" }, { - "codePostal": "72700", - "codeCommune": "72257", - "libelleAcheminement": "ROUILLON", - "nomCommune": "ROUILLON" + "codePostal": "74190", + "codeCommune": "74208", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "47300", - "codeCommune": "47323", - "libelleAcheminement": "VILLENEUVE SUR LOT", - "nomCommune": "VILLENEUVE SUR LOT" + "codePostal": "62127", + "codeCommune": "62381", + "libelleAcheminement": "GOUY EN TERNOIS", + "nomCommune": "GOUY EN TERNOIS" }, { - "codePostal": "15000", - "codeCommune": "15267", - "libelleAcheminement": "YTRAC", - "nomCommune": "YTRAC" + "codePostal": "64570", + "codeCommune": "64029", + "libelleAcheminement": "ARAMITS", + "nomCommune": "ARAMITS" }, { - "codePostal": "71470", - "codeCommune": "71293", - "libelleAcheminement": "MENETREUIL", - "nomCommune": "MENETREUIL" + "codePostal": "74270", + "codeCommune": "74178", + "libelleAcheminement": "MENTHONNEX SOUS CLERMONT", + "nomCommune": "MENTHONNEX SOUS CLERMONT" }, { - "codePostal": "72310", - "codeCommune": "72262", - "libelleAcheminement": "LOIR EN VALLEE", - "nomCommune": "LOIR EN VALLEE" + "codePostal": "22630", + "codeCommune": "22263", + "libelleAcheminement": "LE QUIOU", + "nomCommune": "LE QUIOU" }, { - "codePostal": "47400", - "codeCommune": "47325", - "libelleAcheminement": "VILLETON", - "nomCommune": "VILLETON" + "codePostal": "74190", + "codeCommune": "74208", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "16140", - "codeCommune": "16042", - "libelleAcheminement": "BESSE", - "nomCommune": "BESSE" + "codePostal": "62147", + "codeCommune": "62384", + "libelleAcheminement": "GRAINCOURT LES HAVRINCOURT", + "nomCommune": "GRAINCOURT LES HAVRINCOURT" }, { - "codePostal": "71640", - "codeCommune": "71294", - "libelleAcheminement": "MERCUREY", - "nomCommune": "MERCUREY" + "codePostal": "64120", + "codeCommune": "64034", + "libelleAcheminement": "ARBERATS SILLEGUE", + "nomCommune": "ARBERATS SILLEGUE" }, { - "codePostal": "72220", - "codeCommune": "72268", - "libelleAcheminement": "ST BIEZ EN BELIN", - "nomCommune": "ST BIEZ EN BELIN" + "codePostal": "74560", + "codeCommune": "74185", + "libelleAcheminement": "MONNETIER MORNEX", + "nomCommune": "MONNETIER MORNEX" }, { - "codePostal": "48310", - "codeCommune": "48001", - "libelleAcheminement": "ALBARET LE COMTAL", - "nomCommune": "ALBARET LE COMTAL" + "codePostal": "22110", + "codeCommune": "22266", + "libelleAcheminement": "ROSTRENEN", + "nomCommune": "ROSTRENEN" }, { - "codePostal": "16250", - "codeCommune": "16046", - "libelleAcheminement": "COTEAUX DU BLANZACAIS", - "nomCommune": "COTEAUX DU BLANZACAIS" + "codePostal": "74120", + "codeCommune": "74215", + "libelleAcheminement": "PRAZ SUR ARLY", + "nomCommune": "PRAZ SUR ARLY" }, { - "codePostal": "71190", - "codeCommune": "71297", - "libelleAcheminement": "MESVRES", - "nomCommune": "MESVRES" + "codePostal": "62330", + "codeCommune": "62391", + "libelleAcheminement": "GUARBECQUE", + "nomCommune": "GUARBECQUE" }, { - "codePostal": "72120", - "codeCommune": "72272", - "libelleAcheminement": "STE CEROTTE", - "nomCommune": "STE CEROTTE" + "codePostal": "64120", + "codeCommune": "64036", + "libelleAcheminement": "ARBOUET SUSSAUTE", + "nomCommune": "ARBOUET SUSSAUTE" }, { - "codePostal": "48190", - "codeCommune": "48003", - "libelleAcheminement": "ALLENC", - "nomCommune": "ALLENC" + "codePostal": "74440", + "codeCommune": "74190", + "libelleAcheminement": "MORILLON", + "nomCommune": "MORILLON" }, { - "codePostal": "16320", - "codeCommune": "16047", - "libelleAcheminement": "BLANZAGUET ST CYBARD", - "nomCommune": "BLANZAGUET ST CYBARD" + "codePostal": "22250", + "codeCommune": "22267", + "libelleAcheminement": "ROUILLAC", + "nomCommune": "ROUILLAC" }, { - "codePostal": "71140", - "codeCommune": "71301", - "libelleAcheminement": "MONT", - "nomCommune": "MONT" + "codePostal": "74600", + "codeCommune": "74219", + "libelleAcheminement": "QUINTAL", + "nomCommune": "QUINTAL" }, { - "codePostal": "72170", - "codeCommune": "72273", - "libelleAcheminement": "ST CHRISTOPHE DU JAMBET", - "nomCommune": "ST CHRISTOPHE DU JAMBET" + "codePostal": "62830", + "codeCommune": "62402", + "libelleAcheminement": "HALINGHEN", + "nomCommune": "HALINGHEN" }, { - "codePostal": "48200", - "codeCommune": "48012", - "libelleAcheminement": "LES MONTS VERTS", - "nomCommune": "LES MONTS VERTS" + "codePostal": "64400", + "codeCommune": "64039", + "libelleAcheminement": "AREN", + "nomCommune": "AREN" }, { - "codePostal": "16390", - "codeCommune": "16049", - "libelleAcheminement": "BONNES", - "nomCommune": "BONNES" + "codePostal": "74270", + "codeCommune": "74195", + "libelleAcheminement": "MUSIEGES", + "nomCommune": "MUSIEGES" }, { - "codePostal": "71500", - "codeCommune": "71303", - "libelleAcheminement": "MONTAGNY PRES LOUHANS", - "nomCommune": "MONTAGNY PRES LOUHANS" + "codePostal": "22260", + "codeCommune": "22269", + "libelleAcheminement": "RUNAN", + "nomCommune": "RUNAN" }, { - "codePostal": "72460", - "codeCommune": "72275", - "libelleAcheminement": "ST CORNEILLE", - "nomCommune": "ST CORNEILLE" + "codePostal": "74170", + "codeCommune": "74236", + "libelleAcheminement": "ST GERVAIS LES BAINS", + "nomCommune": "ST GERVAIS LES BAINS" }, { - "codePostal": "48000", - "codeCommune": "48013", - "libelleAcheminement": "BADAROUX", - "nomCommune": "BADAROUX" + "codePostal": "62121", + "codeCommune": "62406", + "libelleAcheminement": "HAMELINCOURT", + "nomCommune": "HAMELINCOURT" }, { - "codePostal": "16350", - "codeCommune": "16054", - "libelleAcheminement": "LE BOUCHAGE", - "nomCommune": "LE BOUCHAGE" + "codePostal": "64450", + "codeCommune": "64043", + "libelleAcheminement": "ARGELOS", + "nomCommune": "ARGELOS" }, { - "codePostal": "71310", - "codeCommune": "71314", - "libelleAcheminement": "MONTJAY", - "nomCommune": "MONTJAY" + "codePostal": "74380", + "codeCommune": "74197", + "libelleAcheminement": "NANGY", + "nomCommune": "NANGY" }, { - "codePostal": "72110", - "codeCommune": "72276", - "libelleAcheminement": "ST COSME EN VAIRAIS", - "nomCommune": "ST COSME EN VAIRAIS" + "codePostal": "22000", + "codeCommune": "22278", + "libelleAcheminement": "ST BRIEUC", + "nomCommune": "ST BRIEUC" }, { - "codePostal": "48800", - "codeCommune": "48015", - "libelleAcheminement": "PIED DE BORNE", - "nomCommune": "PIED DE BORNE" + "codePostal": "74250", + "codeCommune": "74240", + "libelleAcheminement": "ST JEAN DE THOLOME", + "nomCommune": "ST JEAN DE THOLOME" }, { - "codePostal": "16200", - "codeCommune": "16056", - "libelleAcheminement": "BOURG CHARENTE", - "nomCommune": "BOURG CHARENTE" + "codePostal": "62111", + "codeCommune": "62409", + "libelleAcheminement": "HANNESCAMPS", + "nomCommune": "HANNESCAMPS" }, { - "codePostal": "71440", - "codeCommune": "71319", - "libelleAcheminement": "MONTRET", - "nomCommune": "MONTRET" + "codePostal": "64220", + "codeCommune": "64047", + "libelleAcheminement": "ARNEGUY", + "nomCommune": "ARNEGUY" }, { - "codePostal": "72700", - "codeCommune": "72280", - "libelleAcheminement": "ST GEORGES DU BOIS", - "nomCommune": "ST GEORGES DU BOIS" + "codePostal": "74500", + "codeCommune": "74200", + "libelleAcheminement": "NEUVECELLE", + "nomCommune": "NEUVECELLE" }, { - "codePostal": "48190", - "codeCommune": "48027", - "libelleAcheminement": "MONT LOZERE ET GOULET", - "nomCommune": "MONT LOZERE ET GOULET" + "codePostal": "22530", + "codeCommune": "22285", + "libelleAcheminement": "ST CONNEC", + "nomCommune": "ST CONNEC" }, { - "codePostal": "16260", - "codeCommune": "16068", - "libelleAcheminement": "CELLEFROUIN", - "nomCommune": "CELLEFROUIN" + "codePostal": "74800", + "codeCommune": "74250", + "libelleAcheminement": "ST PIERRE EN FAUCIGNY", + "nomCommune": "ST PIERRE EN FAUCIGNY" }, { - "codePostal": "71360", - "codeCommune": "71322", - "libelleAcheminement": "MORLET", - "nomCommune": "MORLET" + "codePostal": "62144", + "codeCommune": "62415", + "libelleAcheminement": "HAUTE AVESNES", + "nomCommune": "HAUTE AVESNES" }, { - "codePostal": "72110", - "codeCommune": "72281", - "libelleAcheminement": "ST GEORGES DU ROSAY", - "nomCommune": "ST GEORGES DU ROSAY" + "codePostal": "64350", + "codeCommune": "64052", + "libelleAcheminement": "ARRICAU BORDES", + "nomCommune": "ARRICAU BORDES" }, { - "codePostal": "48500", - "codeCommune": "48034", - "libelleAcheminement": "LA CANOURGUE", - "nomCommune": "LA CANOURGUE" + "codePostal": "74330", + "codeCommune": "74202", + "libelleAcheminement": "NONGLARD", + "nomCommune": "NONGLARD" }, { - "codePostal": "16230", - "codeCommune": "16069", - "libelleAcheminement": "CELLETTES", - "nomCommune": "CELLETTES" + "codePostal": "22460", + "codeCommune": "22300", + "libelleAcheminement": "ST HERVE", + "nomCommune": "ST HERVE" }, { - "codePostal": "71220", - "codeCommune": "71323", - "libelleAcheminement": "MORNAY", - "nomCommune": "MORNAY" + "codePostal": "74540", + "codeCommune": "74254", + "libelleAcheminement": "ST SYLVESTRE", + "nomCommune": "ST SYLVESTRE" }, { - "codePostal": "72120", - "codeCommune": "72286", - "libelleAcheminement": "ST GERVAIS DE VIC", - "nomCommune": "ST GERVAIS DE VIC" + "codePostal": "62130", + "codeCommune": "62416", + "libelleAcheminement": "HAUTECLOQUE", + "nomCommune": "HAUTECLOQUE" }, { - "codePostal": "48190", - "codeCommune": "48037", - "libelleAcheminement": "CHADENET", - "nomCommune": "CHADENET" + "codePostal": "64660", + "codeCommune": "64064", + "libelleAcheminement": "ASASP ARROS", + "nomCommune": "ASASP ARROS" }, { - "codePostal": "16150", - "codeCommune": "16071", - "libelleAcheminement": "CHABRAC", - "nomCommune": "CHABRAC" + "codePostal": "74190", + "codeCommune": "74208", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "71390", - "codeCommune": "71324", - "libelleAcheminement": "MOROGES", - "nomCommune": "MOROGES" + "codePostal": "22140", + "codeCommune": "22310", + "libelleAcheminement": "ST LAURENT", + "nomCommune": "ST LAURENT" }, { - "codePostal": "72380", - "codeCommune": "72289", - "libelleAcheminement": "STE JAMME SUR SARTHE", - "nomCommune": "STE JAMME SUR SARTHE" + "codePostal": "74150", + "codeCommune": "74255", + "libelleAcheminement": "SALES", + "nomCommune": "SALES" }, { - "codePostal": "48600", - "codeCommune": "48038", - "libelleAcheminement": "BEL AIR VAL D ANCE", - "nomCommune": "BEL AIR VAL D ANCE" + "codePostal": "62810", + "codeCommune": "62418", + "libelleAcheminement": "HAUTEVILLE", + "nomCommune": "HAUTEVILLE" }, { - "codePostal": "16210", - "codeCommune": "16073", - "libelleAcheminement": "CHALAIS", - "nomCommune": "CHALAIS" + "codePostal": "64220", + "codeCommune": "64066", + "libelleAcheminement": "ASCARAT", + "nomCommune": "ASCARAT" }, { - "codePostal": "71270", - "codeCommune": "71326", - "libelleAcheminement": "MOUTHIER EN BRESSE", - "nomCommune": "MOUTHIER EN BRESSE" + "codePostal": "74190", + "codeCommune": "74208", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "72320", - "codeCommune": "72296", - "libelleAcheminement": "ST MAIXENT", - "nomCommune": "ST MAIXENT" + "codePostal": "22350", + "codeCommune": "22312", + "libelleAcheminement": "ST MADEN", + "nomCommune": "ST MADEN" }, { - "codePostal": "48230", - "codeCommune": "48039", - "libelleAcheminement": "CHANAC", - "nomCommune": "CHANAC" + "codePostal": "74700", + "codeCommune": "74256", + "libelleAcheminement": "SALLANCHES", + "nomCommune": "SALLANCHES" }, { - "codePostal": "16250", - "codeCommune": "16075", - "libelleAcheminement": "CHAMPAGNE VIGNY", - "nomCommune": "CHAMPAGNE VIGNY" + "codePostal": "62111", + "codeCommune": "62422", + "libelleAcheminement": "HEBUTERNE", + "nomCommune": "HEBUTERNE" }, { - "codePostal": "71420", - "codeCommune": "71334", - "libelleAcheminement": "OUDRY", - "nomCommune": "OUDRY" + "codePostal": "64230", + "codeCommune": "64073", + "libelleAcheminement": "AUBIN", + "nomCommune": "AUBIN" }, { - "codePostal": "72170", - "codeCommune": "72297", - "libelleAcheminement": "ST MARCEAU", - "nomCommune": "ST MARCEAU" + "codePostal": "74930", + "codeCommune": "74220", + "libelleAcheminement": "REIGNIER ESERY", + "nomCommune": "REIGNIER ESERY" }, { - "codePostal": "48300", - "codeCommune": "48041", - "libelleAcheminement": "CHASTANIER", - "nomCommune": "CHASTANIER" + "codePostal": "22980", + "codeCommune": "22315", + "libelleAcheminement": "ST MAUDEZ", + "nomCommune": "ST MAUDEZ" }, { - "codePostal": "16290", - "codeCommune": "16077", - "libelleAcheminement": "CHAMPMILLON", - "nomCommune": "CHAMPMILLON" + "codePostal": "74340", + "codeCommune": "74258", + "libelleAcheminement": "SAMOENS", + "nomCommune": "SAMOENS" }, { - "codePostal": "71800", - "codeCommune": "71335", - "libelleAcheminement": "OUROUX SOUS LE BOIS STE MARIE", - "nomCommune": "OUROUX SOUS LE BOIS STE MARIE" + "codePostal": "62182", + "codeCommune": "62424", + "libelleAcheminement": "HENDECOURT LES CAGNICOURT", + "nomCommune": "HENDECOURT LES CAGNICOURT" }, { - "codePostal": "72130", - "codeCommune": "72305", - "libelleAcheminement": "ST OUEN DE MIMBRE", - "nomCommune": "ST OUEN DE MIMBRE" + "codePostal": "64300", + "codeCommune": "64087", + "libelleAcheminement": "BAIGTS DE BEARN", + "nomCommune": "BAIGTS DE BEARN" }, { - "codePostal": "48190", - "codeCommune": "48054", - "libelleAcheminement": "CUBIERETTES", - "nomCommune": "CUBIERETTES" + "codePostal": "74200", + "codeCommune": "74222", + "libelleAcheminement": "REYVROZ", + "nomCommune": "REYVROZ" }, { - "codePostal": "16430", - "codeCommune": "16078", - "libelleAcheminement": "CHAMPNIERS", - "nomCommune": "CHAMPNIERS" + "codePostal": "22160", + "codeCommune": "22320", + "libelleAcheminement": "ST NICODEME", + "nomCommune": "ST NICODEME" }, { - "codePostal": "71800", - "codeCommune": "71337", - "libelleAcheminement": "OYE", - "nomCommune": "OYE" + "codePostal": "74350", + "codeCommune": "74259", + "libelleAcheminement": "LE SAPPEY", + "nomCommune": "LE SAPPEY" }, { - "codePostal": "72220", - "codeCommune": "72306", - "libelleAcheminement": "ST OUEN EN BELIN", - "nomCommune": "ST OUEN EN BELIN" + "codePostal": "62128", + "codeCommune": "62426", + "libelleAcheminement": "HENINEL", + "nomCommune": "HENINEL" }, { - "codePostal": "48310", - "codeCommune": "48058", - "libelleAcheminement": "LA FAGE MONTIVERNOUX", - "nomCommune": "LA FAGE MONTIVERNOUX" + "codePostal": "64460", + "codeCommune": "64089", + "libelleAcheminement": "BALEIX", + "nomCommune": "BALEIX" }, { - "codePostal": "16140", - "codeCommune": "16081", - "libelleAcheminement": "LA CHAPELLE", - "nomCommune": "LA CHAPELLE" + "codePostal": "74440", + "codeCommune": "74223", + "libelleAcheminement": "LA RIVIERE ENVERSE", + "nomCommune": "LA RIVIERE ENVERSE" }, { - "codePostal": "71260", - "codeCommune": "71345", - "libelleAcheminement": "PERONNE", - "nomCommune": "PERONNE" + "codePostal": "22720", + "codeCommune": "22322", + "libelleAcheminement": "ST PEVER", + "nomCommune": "ST PEVER" }, { - "codePostal": "72610", - "codeCommune": "72308", - "libelleAcheminement": "ST PATERNE LE CHEVAIN", - "nomCommune": "ST PATERNE LE CHEVAIN" + "codePostal": "74140", + "codeCommune": "74263", + "libelleAcheminement": "SCIEZ", + "nomCommune": "SCIEZ" }, { - "codePostal": "48150", - "codeCommune": "48069", - "libelleAcheminement": "GATUZIERES", - "nomCommune": "GATUZIERES" + "codePostal": "62110", + "codeCommune": "62427", + "libelleAcheminement": "HENIN BEAUMONT", + "nomCommune": "HENIN BEAUMONT" }, { - "codePostal": "16320", - "codeCommune": "16082", - "libelleAcheminement": "BOISNE LA TUDE", - "nomCommune": "BOISNE LA TUDE" + "codePostal": "64530", + "codeCommune": "64097", + "libelleAcheminement": "BARZUN", + "nomCommune": "BARZUN" }, { - "codePostal": "71270", - "codeCommune": "71351", - "libelleAcheminement": "PIERRE DE BRESSE", - "nomCommune": "PIERRE DE BRESSE" + "codePostal": "74350", + "codeCommune": "74228", + "libelleAcheminement": "ST BLAISE", + "nomCommune": "ST BLAISE" }, { - "codePostal": "72500", - "codeCommune": "72311", - "libelleAcheminement": "ST PIERRE DE CHEVILLE", - "nomCommune": "ST PIERRE DE CHEVILLE" + "codePostal": "22550", + "codeCommune": "22323", + "libelleAcheminement": "ST POTAN", + "nomCommune": "ST POTAN" }, { - "codePostal": "48140", - "codeCommune": "48077", - "libelleAcheminement": "JULIANGES", - "nomCommune": "JULIANGES" + "codePostal": "74230", + "codeCommune": "74265", + "libelleAcheminement": "SERRAVAL", + "nomCommune": "SERRAVAL" }, { - "codePostal": "16140", - "codeCommune": "16083", - "libelleAcheminement": "CHARME", - "nomCommune": "CHARME" + "codePostal": "62128", + "codeCommune": "62428", + "libelleAcheminement": "HENIN SUR COJEUL", + "nomCommune": "HENIN SUR COJEUL" }, { - "codePostal": "71270", - "codeCommune": "71355", - "libelleAcheminement": "PONTOUX", - "nomCommune": "PONTOUX" + "codePostal": "64460", + "codeCommune": "64103", + "libelleAcheminement": "BEDEILLE", + "nomCommune": "BEDEILLE" }, { - "codePostal": "72430", - "codeCommune": "72312", - "libelleAcheminement": "ST PIERRE DES BOIS", - "nomCommune": "ST PIERRE DES BOIS" + "codePostal": "74410", + "codeCommune": "74232", + "libelleAcheminement": "ST EUSTACHE", + "nomCommune": "ST EUSTACHE" }, { - "codePostal": "48250", - "codeCommune": "48086", - "libelleAcheminement": "LUC", - "nomCommune": "LUC" + "codePostal": "22410", + "codeCommune": "22325", + "libelleAcheminement": "ST QUAY PORTRIEUX", + "nomCommune": "ST QUAY PORTRIEUX" }, { - "codePostal": "16480", - "codeCommune": "16091", - "libelleAcheminement": "CHATIGNAC", - "nomCommune": "CHATIGNAC" + "codePostal": "74330", + "codeCommune": "74272", + "libelleAcheminement": "SILLINGY", + "nomCommune": "SILLINGY" }, { - "codePostal": "71230", - "codeCommune": "71356", - "libelleAcheminement": "POUILLOUX", - "nomCommune": "POUILLOUX" + "codePostal": "62760", + "codeCommune": "62430", + "libelleAcheminement": "HENU", + "nomCommune": "HENU" }, { - "codePostal": "72240", - "codeCommune": "72321", - "libelleAcheminement": "ST SYMPHORIEN", - "nomCommune": "ST SYMPHORIEN" + "codePostal": "64220", + "codeCommune": "64107", + "libelleAcheminement": "BEHORLEGUY", + "nomCommune": "BEHORLEGUY" }, { - "codePostal": "48500", - "codeCommune": "48094", - "libelleAcheminement": "MASSEGROS CAUSSES GORGES", - "nomCommune": "MASSEGROS CAUSSES GORGES" + "codePostal": "74170", + "codeCommune": "74236", + "libelleAcheminement": "ST GERVAIS LES BAINS", + "nomCommune": "ST GERVAIS LES BAINS" }, { - "codePostal": "16310", - "codeCommune": "16096", - "libelleAcheminement": "CHERVES CHATELARS", - "nomCommune": "CHERVES CHATELARS" + "codePostal": "22460", + "codeCommune": "22330", + "libelleAcheminement": "ST THELO", + "nomCommune": "ST THELO" }, { - "codePostal": "71570", - "codeCommune": "71362", - "libelleAcheminement": "PRUZILLY", - "nomCommune": "PRUZILLY" + "codePostal": "74290", + "codeCommune": "74275", + "libelleAcheminement": "TALLOIRES MONTMIN", + "nomCommune": "TALLOIRES MONTMIN" }, { - "codePostal": "72160", - "codeCommune": "72331", - "libelleAcheminement": "SCEAUX SUR HUISNE", - "nomCommune": "SCEAUX SUR HUISNE" + "codePostal": "62850", + "codeCommune": "62432", + "libelleAcheminement": "HERBINGHEN", + "nomCommune": "HERBINGHEN" }, { - "codePostal": "48000", - "codeCommune": "48095", - "libelleAcheminement": "MENDE", - "nomCommune": "MENDE" + "codePostal": "64800", + "codeCommune": "64109", + "libelleAcheminement": "BENEJACQ", + "nomCommune": "BENEJACQ" }, { - "codePostal": "16240", - "codeCommune": "16098", - "libelleAcheminement": "LA CHEVRERIE", - "nomCommune": "LA CHEVRERIE" + "codePostal": "74430", + "codeCommune": "74238", + "libelleAcheminement": "ST JEAN D AULPS", + "nomCommune": "ST JEAN D AULPS" }, { - "codePostal": "71310", - "codeCommune": "71364", - "libelleAcheminement": "LA RACINEUSE", - "nomCommune": "LA RACINEUSE" + "codePostal": "22720", + "codeCommune": "22335", + "libelleAcheminement": "SENVEN LEHART", + "nomCommune": "SENVEN LEHART" }, { - "codePostal": "72290", - "codeCommune": "72340", - "libelleAcheminement": "SOULIGNE SOUS BALLON", - "nomCommune": "SOULIGNE SOUS BALLON" + "codePostal": "74440", + "codeCommune": "74276", + "libelleAcheminement": "TANINGES", + "nomCommune": "TANINGES" }, { - "codePostal": "48300", - "codeCommune": "48105", - "libelleAcheminement": "NAUSSAC FONTANES", - "nomCommune": "NAUSSAC FONTANES" + "codePostal": "62690", + "codeCommune": "62438", + "libelleAcheminement": "HERMAVILLE", + "nomCommune": "HERMAVILLE" }, { - "codePostal": "16150", - "codeCommune": "16100", - "libelleAcheminement": "CHIRAC", - "nomCommune": "CHIRAC" + "codePostal": "64460", + "codeCommune": "64111", + "libelleAcheminement": "BENTAYOU SEREE", + "nomCommune": "BENTAYOU SEREE" }, { - "codePostal": "71570", - "codeCommune": "71372", - "libelleAcheminement": "ROMANECHE THORINS", - "nomCommune": "ROMANECHE THORINS" + "codePostal": "74490", + "codeCommune": "74241", + "libelleAcheminement": "ST JEOIRE EN FAUCIGNY", + "nomCommune": "ST JEOIRE" }, { - "codePostal": "72370", - "codeCommune": "72341", - "libelleAcheminement": "SOULITRE", - "nomCommune": "SOULITRE" + "codePostal": "22640", + "codeCommune": "22341", + "libelleAcheminement": "TRAMAIN", + "nomCommune": "TRAMAIN" }, { - "codePostal": "48310", - "codeCommune": "48106", - "libelleAcheminement": "NOALHAC", - "nomCommune": "NOALHAC" + "codePostal": "74150", + "codeCommune": "74289", + "libelleAcheminement": "VALLIERES SUR FIER", + "nomCommune": "VALLIERES SUR FIER" }, { - "codePostal": "16700", - "codeCommune": "16110", - "libelleAcheminement": "COURCOME", - "nomCommune": "COURCOME" + "codePostal": "62530", + "codeCommune": "62443", + "libelleAcheminement": "HERSIN COUPIGNY", + "nomCommune": "HERSIN COUPIGNY" }, { - "codePostal": "71390", - "codeCommune": "71374", - "libelleAcheminement": "ROSEY", - "nomCommune": "ROSEY" + "codePostal": "64230", + "codeCommune": "64121", + "libelleAcheminement": "BEYRIE EN BEARN", + "nomCommune": "BEYRIE EN BEARN" }, { - "codePostal": "72540", - "codeCommune": "72348", - "libelleAcheminement": "TASSILLE", - "nomCommune": "TASSILLE" + "codePostal": "74160", + "codeCommune": "74243", + "libelleAcheminement": "ST JULIEN EN GENEVOIS", + "nomCommune": "ST JULIEN EN GENEVOIS" }, { - "codePostal": "48140", - "codeCommune": "48110", - "libelleAcheminement": "PAULHAC EN MARGERIDE", - "nomCommune": "PAULHAC EN MARGERIDE" + "codePostal": "22250", + "codeCommune": "22348", + "libelleAcheminement": "TREDIAS", + "nomCommune": "TREDIAS" }, { - "codePostal": "16400", - "codeCommune": "16113", - "libelleAcheminement": "LA COURONNE", - "nomCommune": "LA COURONNE" + "codePostal": "74150", + "codeCommune": "74289", + "libelleAcheminement": "VALLIERES SUR FIER", + "nomCommune": "VALLIERES SUR FIER" }, { - "codePostal": "71160", - "codeCommune": "71382", - "libelleAcheminement": "ST AGNAN", - "nomCommune": "ST AGNAN" + "codePostal": "62360", + "codeCommune": "62448", + "libelleAcheminement": "HESDIN L ABBE", + "nomCommune": "HESDIN L ABBE" }, { - "codePostal": "72600", - "codeCommune": "72374", - "libelleAcheminement": "VILLAINES LA CARELLE", - "nomCommune": "VILLAINES LA CARELLE" + "codePostal": "64780", + "codeCommune": "64124", + "libelleAcheminement": "BIDARRAY", + "nomCommune": "BIDARRAY" }, { - "codePostal": "48000", - "codeCommune": "48111", - "libelleAcheminement": "PELOUSE", - "nomCommune": "PELOUSE" + "codePostal": "74800", + "codeCommune": "74244", + "libelleAcheminement": "ST LAURENT", + "nomCommune": "ST LAURENT" }, { - "codePostal": "16460", - "codeCommune": "16114", - "libelleAcheminement": "COUTURE", - "nomCommune": "COUTURE" + "codePostal": "22220", + "codeCommune": "22362", + "libelleAcheminement": "TREGUIER", + "nomCommune": "TREGUIER" }, { - "codePostal": "71240", - "codeCommune": "71384", - "libelleAcheminement": "ST AMBREUIL", - "nomCommune": "ST AMBREUIL" + "codePostal": "74660", + "codeCommune": "74290", + "libelleAcheminement": "VALLORCINE", + "nomCommune": "VALLORCINE" }, { - "codePostal": "72150", - "codeCommune": "72376", - "libelleAcheminement": "VILLAINES SOUS LUCE", - "nomCommune": "VILLAINES SOUS LUCE" + "codePostal": "62990", + "codeCommune": "62449", + "libelleAcheminement": "HESMOND", + "nomCommune": "HESMOND" }, { - "codePostal": "48200", - "codeCommune": "48121", - "libelleAcheminement": "PRUNIERES", - "nomCommune": "PRUNIERES" + "codePostal": "64400", + "codeCommune": "64126", + "libelleAcheminement": "BIDOS", + "nomCommune": "BIDOS" }, { - "codePostal": "16210", - "codeCommune": "16117", - "libelleAcheminement": "CURAC", - "nomCommune": "CURAC" + "codePostal": "74700", + "codeCommune": "74256", + "libelleAcheminement": "SALLANCHES", + "nomCommune": "SALLANCHES" }, { - "codePostal": "71300", - "codeCommune": "71390", - "libelleAcheminement": "ST BERAIN SOUS SANVIGNES", - "nomCommune": "ST BERAIN SOUS SANVIGNES" + "codePostal": "22100", + "codeCommune": "22364", + "libelleAcheminement": "TRELIVAN", + "nomCommune": "TRELIVAN" }, { - "codePostal": "72270", - "codeCommune": "72377", - "libelleAcheminement": "VILLAINES SOUS MALICORNE", - "nomCommune": "VILLAINES SOUS MALICORNE" + "codePostal": "74160", + "codeCommune": "74296", + "libelleAcheminement": "VERS", + "nomCommune": "VERS" }, { - "codePostal": "48100", - "codeCommune": "48124", - "libelleAcheminement": "RECOULES DE FUMAS", - "nomCommune": "RECOULES DE FUMAS" + "codePostal": "62232", + "codeCommune": "62454", + "libelleAcheminement": "HINGES", + "nomCommune": "HINGES" }, { - "codePostal": "16410", - "codeCommune": "16119", - "libelleAcheminement": "DIGNAC", - "nomCommune": "DIGNAC" + "codePostal": "64260", + "codeCommune": "64128", + "libelleAcheminement": "BILHERES", + "nomCommune": "BILHERES" }, { - "codePostal": "71510", - "codeCommune": "71391", - "libelleAcheminement": "ST BERAIN SUR DHEUNE", - "nomCommune": "ST BERAIN SUR DHEUNE" + "codePostal": "74700", + "codeCommune": "74256", + "libelleAcheminement": "SALLANCHES", + "nomCommune": "SALLANCHES" }, { - "codePostal": "72170", - "codeCommune": "72380", - "libelleAcheminement": "VIVOIN", - "nomCommune": "VIVOIN" + "codePostal": "22490", + "codeCommune": "22368", + "libelleAcheminement": "TREMEREUC", + "nomCommune": "TREMEREUC" }, { - "codePostal": "48600", - "codeCommune": "48139", - "libelleAcheminement": "ST BONNET LAVAL", - "nomCommune": "ST BONNET LAVAL" + "codePostal": "74290", + "codeCommune": "74299", + "libelleAcheminement": "VEYRIER DU LAC", + "nomCommune": "VEYRIER DU LAC" }, { - "codePostal": "16170", - "codeCommune": "16123", - "libelleAcheminement": "ECHALLAT", - "nomCommune": "ECHALLAT" + "codePostal": "62910", + "codeCommune": "62458", + "libelleAcheminement": "HOULLE", + "nomCommune": "HOULLE" }, { - "codePostal": "71460", - "codeCommune": "71400", - "libelleAcheminement": "ST CLEMENT SUR GUYE", - "nomCommune": "ST CLEMENT SUR GUYE" + "codePostal": "64300", + "codeCommune": "64135", + "libelleAcheminement": "BONNUT", + "nomCommune": "BONNUT" }, { - "codePostal": "72160", - "codeCommune": "72383", - "libelleAcheminement": "VOUVRAY SUR HUISNE", - "nomCommune": "VOUVRAY SUR HUISNE" + "codePostal": "74420", + "codeCommune": "74261", + "libelleAcheminement": "SAXEL", + "nomCommune": "SAXEL" }, { - "codePostal": "48600", - "codeCommune": "48139", - "libelleAcheminement": "ST BONNET LAVAL", - "nomCommune": "ST BONNET LAVAL" + "codePostal": "22340", + "codeCommune": "22373", + "libelleAcheminement": "TREOGAN", + "nomCommune": "TREOGAN" }, { - "codePostal": "16210", - "codeCommune": "16130", - "libelleAcheminement": "LES ESSARDS", - "nomCommune": "LES ESSARDS" + "codePostal": "74250", + "codeCommune": "74304", + "libelleAcheminement": "VILLE EN SALLAZ", + "nomCommune": "VILLE EN SALLAZ" }, { - "codePostal": "71740", - "codeCommune": "71408", - "libelleAcheminement": "ST EDMOND", - "nomCommune": "ST EDMOND" + "codePostal": "62630", + "codeCommune": "62460", + "libelleAcheminement": "HUBERSENT", + "nomCommune": "HUBERSENT" }, { - "codePostal": "73210", - "codeCommune": "73006", - "libelleAcheminement": "AIME LA PLAGNE", - "nomCommune": "AIME LA PLAGNE" + "codePostal": "64490", + "codeCommune": "64136", + "libelleAcheminement": "BORCE", + "nomCommune": "BORCE" }, { - "codePostal": "48600", - "codeCommune": "48139", - "libelleAcheminement": "ST BONNET LAVAL", - "nomCommune": "ST BONNET LAVAL" + "codePostal": "74930", + "codeCommune": "74262", + "libelleAcheminement": "SCIENTRIER", + "nomCommune": "SCIENTRIER" }, { - "codePostal": "16250", - "codeCommune": "16133", - "libelleAcheminement": "ETRIAC", - "nomCommune": "ETRIAC" + "codePostal": "22800", + "codeCommune": "22386", + "libelleAcheminement": "LE VIEUX BOURG", + "nomCommune": "LE VIEUX BOURG" }, { - "codePostal": "71490", - "codeCommune": "71409", - "libelleAcheminement": "ST EMILAND", - "nomCommune": "ST EMILAND" + "codePostal": "74350", + "codeCommune": "74306", + "libelleAcheminement": "VILLY LE BOUVERET", + "nomCommune": "VILLY LE BOUVERET" }, { - "codePostal": "73410", - "codeCommune": "73010", - "libelleAcheminement": "ENTRELACS", - "nomCommune": "ENTRELACS" + "codePostal": "62410", + "codeCommune": "62464", + "libelleAcheminement": "HULLUCH", + "nomCommune": "HULLUCH" }, { - "codePostal": "48110", - "codeCommune": "48144", - "libelleAcheminement": "STE CROIX VALLEE FRANCAISE", - "nomCommune": "STE CROIX VALLEE FRANCAISE" + "codePostal": "64800", + "codeCommune": "64137", + "libelleAcheminement": "BORDERES", + "nomCommune": "BORDERES" }, { - "codePostal": "16200", - "codeCommune": "16139", - "libelleAcheminement": "FLEURAC", - "nomCommune": "FLEURAC" + "codePostal": "74320", + "codeCommune": "74267", + "libelleAcheminement": "SEVRIER", + "nomCommune": "SEVRIER" }, { - "codePostal": "71670", - "codeCommune": "71413", - "libelleAcheminement": "ST FIRMIN", - "nomCommune": "ST FIRMIN" + "codePostal": "23150", + "codeCommune": "23001", + "libelleAcheminement": "AHUN", + "nomCommune": "AHUN" }, { - "codePostal": "73220", - "codeCommune": "73019", - "libelleAcheminement": "ARGENTINE", - "nomCommune": "ARGENTINE" + "codePostal": "74580", + "codeCommune": "74309", + "libelleAcheminement": "VIRY", + "nomCommune": "VIRY" }, { - "codePostal": "48000", - "codeCommune": "48147", - "libelleAcheminement": "ST ETIENNE DU VALDONNEZ", - "nomCommune": "ST ETIENNE DU VALDONNEZ" + "codePostal": "62360", + "codeCommune": "62474", + "libelleAcheminement": "ISQUES", + "nomCommune": "ISQUES" }, { - "codePostal": "16140", - "codeCommune": "16144", - "libelleAcheminement": "FOUQUEURE", - "nomCommune": "FOUQUEURE" + "codePostal": "64410", + "codeCommune": "64143", + "libelleAcheminement": "BOUILLON", + "nomCommune": "BOUILLON" }, { - "codePostal": "71370", - "codeCommune": "71420", - "libelleAcheminement": "ST GERMAIN DU PLAIN", - "nomCommune": "ST GERMAIN DU PLAIN" + "codePostal": "74430", + "codeCommune": "74271", + "libelleAcheminement": "SEYTROUX", + "nomCommune": "SEYTROUX" }, { - "codePostal": "73000", - "codeCommune": "73029", - "libelleAcheminement": "BARBERAZ", - "nomCommune": "BARBERAZ" + "codePostal": "23200", + "codeCommune": "23003", + "libelleAcheminement": "ALLEYRAT", + "nomCommune": "ALLEYRAT" }, { - "codePostal": "48120", - "codeCommune": "48149", - "libelleAcheminement": "STE EULALIE", - "nomCommune": "STE EULALIE" + "codePostal": "74250", + "codeCommune": "74311", + "libelleAcheminement": "VIUZ EN SALLAZ", + "nomCommune": "VIUZ EN SALLAZ" }, { - "codePostal": "16130", - "codeCommune": "16150", - "libelleAcheminement": "GENSAC LA PALLUE", - "nomCommune": "GENSAC LA PALLUE" + "codePostal": "62830", + "codeCommune": "62483", + "libelleAcheminement": "LACRES", + "nomCommune": "LACRES" }, { - "codePostal": "71460", - "codeCommune": "71427", - "libelleAcheminement": "ST HURUGE", - "nomCommune": "ST HURUGE" + "codePostal": "64370", + "codeCommune": "64144", + "libelleAcheminement": "BOUMOURT", + "nomCommune": "BOUMOURT" }, { - "codePostal": "73000", - "codeCommune": "73031", - "libelleAcheminement": "BASSENS", - "nomCommune": "BASSENS" + "codePostal": "74740", + "codeCommune": "74273", + "libelleAcheminement": "SIXT FER A CHEVAL", + "nomCommune": "SIXT FER A CHEVAL" }, { - "codePostal": "48160", - "codeCommune": "48152", - "libelleAcheminement": "VENTALON EN CEVENNES", - "nomCommune": "VENTALON EN CEVENNES" + "codePostal": "23480", + "codeCommune": "23007", + "libelleAcheminement": "ARS", + "nomCommune": "ARS" }, { - "codePostal": "16130", - "codeCommune": "16151", - "libelleAcheminement": "GENTE", - "nomCommune": "GENTE" + "codePostal": "74350", + "codeCommune": "74313", + "libelleAcheminement": "VOVRAY EN BORNES", + "nomCommune": "VOVRAY EN BORNES" }, { - "codePostal": "71170", - "codeCommune": "71428", - "libelleAcheminement": "ST IGNY DE ROCHE", - "nomCommune": "ST IGNY DE ROCHE" + "codePostal": "62610", + "codeCommune": "62488", + "libelleAcheminement": "LANDRETHUN LES ARDRES", + "nomCommune": "LANDRETHUN LES ARDRES" }, { - "codePostal": "73460", - "codeCommune": "73048", - "libelleAcheminement": "BONVILLARD", - "nomCommune": "BONVILLARD" + "codePostal": "64330", + "codeCommune": "64153", + "libelleAcheminement": "BUROSSE MENDOUSSE", + "nomCommune": "BUROSSE MENDOUSSE" }, { - "codePostal": "48700", - "codeCommune": "48153", - "libelleAcheminement": "ST GAL", - "nomCommune": "ST GAL" + "codePostal": "74210", + "codeCommune": "74275", + "libelleAcheminement": "TALLOIRES MONTMIN", + "nomCommune": "TALLOIRES MONTMIN" }, { - "codePostal": "16130", - "codeCommune": "16152", - "libelleAcheminement": "GIMEUX", - "nomCommune": "GIMEUX" + "codePostal": "23170", + "codeCommune": "23009", + "libelleAcheminement": "AUGE", + "nomCommune": "AUGE" }, { - "codePostal": "71490", - "codeCommune": "71431", - "libelleAcheminement": "ST JEAN DE TREZY", - "nomCommune": "ST JEAN DE TREZY" + "codePostal": "75001", + "codeCommune": "75101", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 01" }, { - "codePostal": "73370", - "codeCommune": "73050", - "libelleAcheminement": "BOURDEAU", - "nomCommune": "BOURDEAU" + "codePostal": "62840", + "codeCommune": "62491", + "libelleAcheminement": "LAVENTIE", + "nomCommune": "LAVENTIE" }, { - "codePostal": "48190", - "codeCommune": "48157", - "libelleAcheminement": "STE HELENE", - "nomCommune": "STE HELENE" + "codePostal": "64250", + "codeCommune": "64160", + "libelleAcheminement": "CAMBO LES BAINS", + "nomCommune": "CAMBO LES BAINS" }, { - "codePostal": "16160", - "codeCommune": "16154", - "libelleAcheminement": "GOND PONTOUVRE", - "nomCommune": "GOND PONTOUVRE" + "codePostal": "74370", + "codeCommune": "74282", + "libelleAcheminement": "FILLIERE", + "nomCommune": "FILLIERE" }, { - "codePostal": "71800", - "codeCommune": "71433", - "libelleAcheminement": "ST JULIEN DE CIVRY", - "nomCommune": "ST JULIEN DE CIVRY" + "codePostal": "23260", + "codeCommune": "23017", + "libelleAcheminement": "BASVILLE", + "nomCommune": "BASVILLE" }, { - "codePostal": "73700", - "codeCommune": "73054", - "libelleAcheminement": "BOURG ST MAURICE", - "nomCommune": "BOURG ST MAURICE" + "codePostal": "75004", + "codeCommune": "75104", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 04" }, { - "codePostal": "48170", - "codeCommune": "48160", - "libelleAcheminement": "ST JEAN LA FOUILLOUSE", - "nomCommune": "ST JEAN LA FOUILLOUSE" + "codePostal": "62990", + "codeCommune": "62492", + "libelleAcheminement": "LEBIEZ", + "nomCommune": "LEBIEZ" }, { - "codePostal": "16200", - "codeCommune": "16165", - "libelleAcheminement": "HOULETTE", - "nomCommune": "HOULETTE" + "codePostal": "64520", + "codeCommune": "64161", + "libelleAcheminement": "CAME", + "nomCommune": "CAME" }, { - "codePostal": "71110", - "codeCommune": "71434", - "libelleAcheminement": "ST JULIEN DE JONZY", - "nomCommune": "ST JULIEN DE JONZY" + "codePostal": "74570", + "codeCommune": "74282", + "libelleAcheminement": "FILLIERE", + "nomCommune": "FILLIERE" }, { - "codePostal": "73200", - "codeCommune": "73061", - "libelleAcheminement": "CESARCHES", - "nomCommune": "CESARCHES" + "codePostal": "23140", + "codeCommune": "23023", + "libelleAcheminement": "BLAUDEIX", + "nomCommune": "BLAUDEIX" }, { - "codePostal": "48160", - "codeCommune": "48163", - "libelleAcheminement": "ST JULIEN DES POINTS", - "nomCommune": "ST JULIEN DES POINTS" + "codePostal": "75006", + "codeCommune": "75106", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 06" }, { - "codePostal": "16560", - "codeCommune": "16168", - "libelleAcheminement": "JAULDES", - "nomCommune": "JAULDES" + "codePostal": "62170", + "codeCommune": "62499", + "libelleAcheminement": "LEPINE", + "nomCommune": "LEPINE" }, { - "codePostal": "71350", - "codeCommune": "71443", - "libelleAcheminement": "ST LOUP GEANGES", - "nomCommune": "ST LOUP GEANGES" + "codePostal": "64360", + "codeCommune": "64165", + "libelleAcheminement": "CARDESSE", + "nomCommune": "CARDESSE" }, { - "codePostal": "73390", - "codeCommune": "73068", - "libelleAcheminement": "CHAMOUSSET", - "nomCommune": "CHAMOUSSET" + "codePostal": "74150", + "codeCommune": "74283", + "libelleAcheminement": "THUSY", + "nomCommune": "THUSY" }, { - "codePostal": "48160", - "codeCommune": "48170", - "libelleAcheminement": "ST MARTIN DE BOUBAUX", - "nomCommune": "ST MARTIN DE BOUBAUX" + "codePostal": "23400", + "codeCommune": "23030", + "libelleAcheminement": "BOURGANEUF", + "nomCommune": "BOURGANEUF" }, { - "codePostal": "16300", - "codeCommune": "16176", - "libelleAcheminement": "LACHAISE", - "nomCommune": "LACHAISE" + "codePostal": "75007", + "codeCommune": "75107", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 07" }, { - "codePostal": "71460", - "codeCommune": "71446", - "libelleAcheminement": "ST MARCELIN DE CRAY", - "nomCommune": "ST MARCELIN DE CRAY" + "codePostal": "62990", + "codeCommune": "62501", + "libelleAcheminement": "LESPINOY", + "nomCommune": "LESPINOY" }, { - "codePostal": "73240", - "codeCommune": "73070", - "libelleAcheminement": "CHAMPAGNEUX", - "nomCommune": "CHAMPAGNEUX" + "codePostal": "64220", + "codeCommune": "64166", + "libelleAcheminement": "CARO", + "nomCommune": "CARO" }, { - "codePostal": "48340", - "codeCommune": "48175", - "libelleAcheminement": "ST PIERRE DE NOGARET", - "nomCommune": "ST PIERRE DE NOGARET" + "codePostal": "74520", + "codeCommune": "74288", + "libelleAcheminement": "VALLEIRY", + "nomCommune": "VALLEIRY" }, { - "codePostal": "16310", - "codeCommune": "16183", - "libelleAcheminement": "LESIGNAC DURAND", - "nomCommune": "LESIGNAC DURAND" + "codePostal": "23600", + "codeCommune": "23031", + "libelleAcheminement": "BOUSSAC", + "nomCommune": "BOUSSAC" }, { - "codePostal": "71490", - "codeCommune": "71450", - "libelleAcheminement": "ST MARTIN DE COMMUNE", - "nomCommune": "ST MARTIN DE COMMUNE" + "codePostal": "75014", + "codeCommune": "75114", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 14" }, { - "codePostal": "73370", - "codeCommune": "73076", - "libelleAcheminement": "LA CHAPELLE DU MONT DU CHAT", - "nomCommune": "LA CHAPELLE DU MONT DU CHAT" + "codePostal": "62250", + "codeCommune": "62503", + "libelleAcheminement": "LEUBRINGHEN", + "nomCommune": "LEUBRINGHEN" }, { - "codePostal": "48170", - "codeCommune": "48182", - "libelleAcheminement": "ST SAUVEUR DE GINESTOUX", - "nomCommune": "ST SAUVEUR DE GINESTOUX" + "codePostal": "64260", + "codeCommune": "64175", + "libelleAcheminement": "CASTET", + "nomCommune": "CASTET" }, { - "codePostal": "16730", - "codeCommune": "16187", - "libelleAcheminement": "LINARS", - "nomCommune": "LINARS" + "codePostal": "74150", + "codeCommune": "74289", + "libelleAcheminement": "VALLIERES SUR FIER", + "nomCommune": "VALLIERES SUR FIER" }, { - "codePostal": "71510", - "codeCommune": "71480", - "libelleAcheminement": "ST SERNIN DU PLAIN", - "nomCommune": "ST SERNIN DU PLAIN" + "codePostal": "23600", + "codeCommune": "23032", + "libelleAcheminement": "BOUSSAC BOURG", + "nomCommune": "BOUSSAC BOURG" }, { - "codePostal": "73700", - "codeCommune": "73077", - "libelleAcheminement": "LES CHAPELLES", - "nomCommune": "LES CHAPELLES" + "codePostal": "75017", + "codeCommune": "75117", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 17" }, { - "codePostal": "48700", - "codeCommune": "48188", - "libelleAcheminement": "SERVERETTE", - "nomCommune": "SERVERETTE" + "codePostal": "62500", + "codeCommune": "62504", + "libelleAcheminement": "LEULINGHEM", + "nomCommune": "LEULINGHEM" }, { - "codePostal": "16700", - "codeCommune": "16189", - "libelleAcheminement": "LONDIGNY", - "nomCommune": "LONDIGNY" + "codePostal": "64300", + "codeCommune": "64177", + "libelleAcheminement": "CASTETIS", + "nomCommune": "CASTETIS" }, { - "codePostal": "71150", - "codeCommune": "71496", - "libelleAcheminement": "SAMPIGNY LES MARANGES", - "nomCommune": "SAMPIGNY LES MARANGES" + "codePostal": "74270", + "codeCommune": "74291", + "libelleAcheminement": "VANZY", + "nomCommune": "VANZY" }, { - "codePostal": "73660", - "codeCommune": "73083", - "libelleAcheminement": "LES CHAVANNES EN MAURIENNE", - "nomCommune": "LES CHAVANNES EN MAURIENNE" + "codePostal": "23480", + "codeCommune": "23043", + "libelleAcheminement": "CHAMBERAUD", + "nomCommune": "CHAMBERAUD" }, { - "codePostal": "48800", - "codeCommune": "48198", - "libelleAcheminement": "VILLEFORT", - "nomCommune": "VILLEFORT" + "codePostal": "76640", + "codeCommune": "76002", + "libelleAcheminement": "ALVIMARE", + "nomCommune": "ALVIMARE" }, { - "codePostal": "16240", - "codeCommune": "16190", - "libelleAcheminement": "LONGRE", - "nomCommune": "LONGRE" + "codePostal": "62800", + "codeCommune": "62510", + "libelleAcheminement": "LIEVIN", + "nomCommune": "LIEVIN" }, { - "codePostal": "71390", - "codeCommune": "71501", - "libelleAcheminement": "SASSANGY", - "nomCommune": "SASSANGY" + "codePostal": "64350", + "codeCommune": "64182", + "libelleAcheminement": "CASTILLON DE LEMBEYE", + "nomCommune": "CASTILLON DE LEMBEYE" }, { - "codePostal": "73160", - "codeCommune": "73087", - "libelleAcheminement": "COGNIN", - "nomCommune": "COGNIN" + "codePostal": "74420", + "codeCommune": "74301", + "libelleAcheminement": "VILLARD", + "nomCommune": "VILLARD" }, { - "codePostal": "49700", - "codeCommune": "49003", - "libelleAcheminement": "TUFFALUN", - "nomCommune": "TUFFALUN" + "codePostal": "23250", + "codeCommune": "23051", + "libelleAcheminement": "LA CHAPELLE ST MARTIAL", + "nomCommune": "LA CHAPELLE ST MARTIAL" }, { - "codePostal": "16270", - "codeCommune": "16192", - "libelleAcheminement": "TERRES DE HAUTE CHARENTE", - "nomCommune": "TERRES DE HAUTE CHARENTE" + "codePostal": "76370", + "codeCommune": "76008", + "libelleAcheminement": "ANCOURT", + "nomCommune": "ANCOURT" }, { - "codePostal": "71530", - "codeCommune": "71502", - "libelleAcheminement": "SASSENAY", - "nomCommune": "SASSENAY" + "codePostal": "62960", + "codeCommune": "62512", + "libelleAcheminement": "LIGNY LES AIRE", + "nomCommune": "LIGNY LES AIRE" }, { - "codePostal": "73310", - "codeCommune": "73091", - "libelleAcheminement": "CONJUX", - "nomCommune": "CONJUX" + "codePostal": "64170", + "codeCommune": "64184", + "libelleAcheminement": "CESCAU", + "nomCommune": "CESCAU" }, { - "codePostal": "49700", - "codeCommune": "49003", - "libelleAcheminement": "TUFFALUN", - "nomCommune": "TUFFALUN" + "codePostal": "74230", + "codeCommune": "74302", + "libelleAcheminement": "LES VILLARDS SUR THONES", + "nomCommune": "LES VILLARDS SUR THONES" }, { - "codePostal": "16270", - "codeCommune": "16192", - "libelleAcheminement": "TERRES DE HAUTE CHARENTE", - "nomCommune": "TERRES DE HAUTE CHARENTE" + "codePostal": "23000", + "codeCommune": "23052", + "libelleAcheminement": "LA CHAPELLE TAILLEFERT", + "nomCommune": "LA CHAPELLE TAILLEFERT" }, { - "codePostal": "71350", - "codeCommune": "71504", - "libelleAcheminement": "SAUNIERES", - "nomCommune": "SAUNIERES" + "codePostal": "76540", + "codeCommune": "76011", + "libelleAcheminement": "ANCRETTEVILLE SUR MER", + "nomCommune": "ANCRETTEVILLE SUR MER" }, { - "codePostal": "73110", - "codeCommune": "73099", - "libelleAcheminement": "DETRIER", - "nomCommune": "DETRIER" + "codePostal": "62190", + "codeCommune": "62516", + "libelleAcheminement": "LILLERS", + "nomCommune": "LILLERS" }, { - "codePostal": "49260", - "codeCommune": "49011", - "libelleAcheminement": "ARTANNES SUR THOUET", - "nomCommune": "ARTANNES SUR THOUET" + "codePostal": "64130", + "codeCommune": "64187", + "libelleAcheminement": "CHARRITTE DE BAS", + "nomCommune": "CHARRITTE DE BAS" }, { - "codePostal": "16240", - "codeCommune": "16197", - "libelleAcheminement": "LA MAGDELEINE", - "nomCommune": "LA MAGDELEINE" + "codePostal": "74500", + "codeCommune": "74308", + "libelleAcheminement": "VINZIER", + "nomCommune": "VINZIER" }, { - "codePostal": "71460", - "codeCommune": "71505", - "libelleAcheminement": "SAVIANGES", - "nomCommune": "SAVIANGES" + "codePostal": "23700", + "codeCommune": "23053", + "libelleAcheminement": "CHARD", + "nomCommune": "CHARD" }, { - "codePostal": "73250", - "codeCommune": "73120", - "libelleAcheminement": "FRETERIVE", - "nomCommune": "FRETERIVE" + "codePostal": "76110", + "codeCommune": "76012", + "libelleAcheminement": "ANGERVILLE BAILLEUL", + "nomCommune": "ANGERVILLE BAILLEUL" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "62120", + "codeCommune": "62517", + "libelleAcheminement": "LINGHEM", + "nomCommune": "LINGHEM" }, { - "codePostal": "16140", - "codeCommune": "16221", - "libelleAcheminement": "MONS", - "nomCommune": "MONS" + "codePostal": "64800", + "codeCommune": "64191", + "libelleAcheminement": "COARRAZE", + "nomCommune": "COARRAZE" }, { - "codePostal": "71460", - "codeCommune": "71507", - "libelleAcheminement": "SAVIGNY SUR GROSNE", - "nomCommune": "SAVIGNY SUR GROSNE" + "codePostal": "75005", + "codeCommune": "75105", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 05" }, { - "codePostal": "73200", - "codeCommune": "73130", - "libelleAcheminement": "GRIGNON", - "nomCommune": "GRIGNON" + "codePostal": "23200", + "codeCommune": "23059", + "libelleAcheminement": "LA CHAUSSADE", + "nomCommune": "LA CHAUSSADE" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "76880", + "codeCommune": "76026", + "libelleAcheminement": "ARQUES LA BATAILLE", + "nomCommune": "ARQUES LA BATAILLE" }, { - "codePostal": "16620", - "codeCommune": "16222", - "libelleAcheminement": "MONTBOYER", - "nomCommune": "MONTBOYER" + "codePostal": "62540", + "codeCommune": "62532", + "libelleAcheminement": "LOZINGHEM", + "nomCommune": "LOZINGHEM" }, { - "codePostal": "71330", - "codeCommune": "71514", - "libelleAcheminement": "SENS SUR SEILLE", - "nomCommune": "SENS SUR SEILLE" + "codePostal": "64360", + "codeCommune": "64197", + "libelleAcheminement": "CUQUERON", + "nomCommune": "CUQUERON" }, { - "codePostal": "73300", - "codeCommune": "73135", - "libelleAcheminement": "LA TOUR EN MAURIENNE", - "nomCommune": "LA TOUR EN MAURIENNE" + "codePostal": "75008", + "codeCommune": "75108", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 08" }, { - "codePostal": "49700", - "codeCommune": "49053", - "libelleAcheminement": "BROSSAY", - "nomCommune": "BROSSAY" + "codePostal": "23220", + "codeCommune": "23062", + "libelleAcheminement": "CHENIERS", + "nomCommune": "CHENIERS" }, { - "codePostal": "16220", - "codeCommune": "16223", - "libelleAcheminement": "MONTBRON", - "nomCommune": "MONTBRON" + "codePostal": "76550", + "codeCommune": "76030", + "libelleAcheminement": "AUBERMESNIL BEAUMAIS", + "nomCommune": "AUBERMESNIL BEAUMAIS" }, { - "codePostal": "71460", - "codeCommune": "71515", - "libelleAcheminement": "SERCY", - "nomCommune": "SERCY" + "codePostal": "62310", + "codeCommune": "62533", + "libelleAcheminement": "LUGY", + "nomCommune": "LUGY" }, { - "codePostal": "73800", - "codeCommune": "73141", - "libelleAcheminement": "LAISSAUD", - "nomCommune": "LAISSAUD" + "codePostal": "64230", + "codeCommune": "64198", + "libelleAcheminement": "DENGUIN", + "nomCommune": "DENGUIN" }, { - "codePostal": "49310", - "codeCommune": "49057", - "libelleAcheminement": "CERNUSSON", - "nomCommune": "CERNUSSON" + "codePostal": "75011", + "codeCommune": "75111", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 11" }, { - "codePostal": "16310", - "codeCommune": "16225", - "libelleAcheminement": "MONTEMBOEUF", - "nomCommune": "MONTEMBOEUF" + "codePostal": "23140", + "codeCommune": "23068", + "libelleAcheminement": "CRESSAT", + "nomCommune": "CRESSAT" }, { - "codePostal": "71290", - "codeCommune": "71522", - "libelleAcheminement": "SIMANDRE", - "nomCommune": "SIMANDRE" + "codePostal": "76450", + "codeCommune": "76032", + "libelleAcheminement": "AUBERVILLE LA MANUEL", + "nomCommune": "AUBERVILLE LA MANUEL" }, { - "codePostal": "73200", - "codeCommune": "73154", - "libelleAcheminement": "MERCURY", - "nomCommune": "MERCURY" + "codePostal": "62870", + "codeCommune": "62538", + "libelleAcheminement": "MAINTENAY", + "nomCommune": "MAINTENAY" }, { - "codePostal": "49270", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "64450", + "codeCommune": "64203", + "libelleAcheminement": "DOUMY", + "nomCommune": "DOUMY" }, { - "codePostal": "16330", - "codeCommune": "16226", - "libelleAcheminement": "MONTIGNAC CHARENTE", - "nomCommune": "MONTIGNAC CHARENTE" + "codePostal": "75016", + "codeCommune": "75116", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 16" }, { - "codePostal": "71960", - "codeCommune": "71526", - "libelleAcheminement": "SOLUTRE POUILLY", - "nomCommune": "SOLUTRE POUILLY" + "codePostal": "23320", + "codeCommune": "23088", + "libelleAcheminement": "GARTEMPE", + "nomCommune": "GARTEMPE" }, { - "codePostal": "73460", - "codeCommune": "73162", - "libelleAcheminement": "MONTAILLEUR", - "nomCommune": "MONTAILLEUR" + "codePostal": "76850", + "codeCommune": "76034", + "libelleAcheminement": "VAL DE SCIE", + "nomCommune": "VAL DE SCIE" }, { - "codePostal": "49530", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "62620", + "codeCommune": "62540", + "libelleAcheminement": "MAISNIL LES RUITZ", + "nomCommune": "MAISNIL LES RUITZ" }, { - "codePostal": "16190", - "codeCommune": "16230", - "libelleAcheminement": "MONTMOREAU", - "nomCommune": "MONTMOREAU" + "codePostal": "64420", + "codeCommune": "64211", + "libelleAcheminement": "ESLOURENTIES DABAN", + "nomCommune": "ESLOURENTIES DABAN" }, { - "codePostal": "71220", - "codeCommune": "71529", - "libelleAcheminement": "SUIN", - "nomCommune": "SUIN" + "codePostal": "75020", + "codeCommune": "75120", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 20" }, { - "codePostal": "73200", - "codeCommune": "73170", - "libelleAcheminement": "MONTHION", - "nomCommune": "MONTHION" + "codePostal": "23230", + "codeCommune": "23093", + "libelleAcheminement": "GOUZON", + "nomCommune": "GOUZON" }, { - "codePostal": "49140", - "codeCommune": "49076", - "libelleAcheminement": "LA CHAPELLE ST LAUD", - "nomCommune": "LA CHAPELLE ST LAUD" + "codePostal": "76730", + "codeCommune": "76036", + "libelleAcheminement": "AUPPEGARD", + "nomCommune": "AUPPEGARD" }, { - "codePostal": "16190", - "codeCommune": "16230", - "libelleAcheminement": "MONTMOREAU", - "nomCommune": "MONTMOREAU" + "codePostal": "62127", + "codeCommune": "62542", + "libelleAcheminement": "MAIZIERES", + "nomCommune": "MAIZIERES" }, { - "codePostal": "71190", - "codeCommune": "71531", - "libelleAcheminement": "LA TAGNIERE", - "nomCommune": "LA TAGNIERE" + "codePostal": "64390", + "codeCommune": "64215", + "libelleAcheminement": "ESPIUTE", + "nomCommune": "ESPIUTE" }, { - "codePostal": "73870", - "codeCommune": "73173", - "libelleAcheminement": "MONTRICHER ALBANNE", - "nomCommune": "MONTRICHER ALBANNE" + "codePostal": "76116", + "codeCommune": "76046", + "libelleAcheminement": "AUZOUVILLE SUR RY", + "nomCommune": "AUZOUVILLE SUR RY" }, { - "codePostal": "49330", - "codeCommune": "49080", - "libelleAcheminement": "LES HAUTS D ANJOU", - "nomCommune": "LES HAUTS D ANJOU" + "codePostal": "23170", + "codeCommune": "23106", + "libelleAcheminement": "LEPAUD", + "nomCommune": "LEPAUD" }, { - "codePostal": "16190", - "codeCommune": "16230", - "libelleAcheminement": "MONTMOREAU", - "nomCommune": "MONTMOREAU" + "codePostal": "76520", + "codeCommune": "76039", + "libelleAcheminement": "LES AUTHIEUX SUR LE PORT ST OUEN", + "nomCommune": "LES AUTHIEUX SUR LE PORT ST OUEN" }, { - "codePostal": "71270", - "codeCommune": "71541", - "libelleAcheminement": "TORPES", - "nomCommune": "TORPES" + "codePostal": "62120", + "codeCommune": "62543", + "libelleAcheminement": "MAMETZ", + "nomCommune": "MAMETZ" }, { - "codePostal": "73340", - "codeCommune": "73178", - "libelleAcheminement": "LA MOTTE EN BAUGES", - "nomCommune": "LA MOTTE EN BAUGES" + "codePostal": "64220", + "codeCommune": "64218", + "libelleAcheminement": "ESTERENCUBY", + "nomCommune": "ESTERENCUBY" }, { - "codePostal": "49380", - "codeCommune": "49086", - "libelleAcheminement": "TERRANJOU", - "nomCommune": "TERRANJOU" + "codePostal": "76630", + "codeCommune": "76049", + "libelleAcheminement": "AVESNES EN VAL", + "nomCommune": "AVESNES EN VAL" }, { - "codePostal": "16290", - "codeCommune": "16234", - "libelleAcheminement": "MOULIDARS", - "nomCommune": "MOULIDARS" + "codePostal": "23170", + "codeCommune": "23114", + "libelleAcheminement": "LUSSAT", + "nomCommune": "LUSSAT" }, { - "codePostal": "71700", - "codeCommune": "71543", - "libelleAcheminement": "TOURNUS", - "nomCommune": "TOURNUS" + "codePostal": "76270", + "codeCommune": "76042", + "libelleAcheminement": "AUVILLIERS", + "nomCommune": "AUVILLIERS" }, { - "codePostal": "73310", - "codeCommune": "73180", - "libelleAcheminement": "MOTZ", - "nomCommune": "MOTZ" + "codePostal": "62650", + "codeCommune": "62545", + "libelleAcheminement": "MANINGHEM", + "nomCommune": "MANINGHEM" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "64450", + "codeCommune": "64232", + "libelleAcheminement": "GARLEDE MONDEBAT", + "nomCommune": "GARLEDE MONDEBAT" }, { - "codePostal": "16460", - "codeCommune": "16237", - "libelleAcheminement": "MOUTON", - "nomCommune": "MOUTON" + "codePostal": "76190", + "codeCommune": "76055", + "libelleAcheminement": "BAONS LE COMTE", + "nomCommune": "BAONS LE COMTE" }, { - "codePostal": "71520", - "codeCommune": "71545", - "libelleAcheminement": "TRAMAYES", - "nomCommune": "TRAMAYES" + "codePostal": "23700", + "codeCommune": "23116", + "libelleAcheminement": "MAINSAT", + "nomCommune": "MAINSAT" }, { - "codePostal": "73260", - "codeCommune": "73187", - "libelleAcheminement": "LA LECHERE", - "nomCommune": "LA LECHERE" + "codePostal": "76220", + "codeCommune": "76048", + "libelleAcheminement": "AVESNES EN BRAY", + "nomCommune": "AVESNES EN BRAY" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "62170", + "codeCommune": "62547", + "libelleAcheminement": "MARANT", + "nomCommune": "MARANT" }, { - "codePostal": "16440", - "codeCommune": "16244", - "libelleAcheminement": "NERSAC", - "nomCommune": "NERSAC" + "codePostal": "64530", + "codeCommune": "64238", + "libelleAcheminement": "GER", + "nomCommune": "GER" }, { - "codePostal": "71520", - "codeCommune": "71547", - "libelleAcheminement": "TRIVY", - "nomCommune": "TRIVY" + "codePostal": "76260", + "codeCommune": "76058", + "libelleAcheminement": "BAROMESNIL", + "nomCommune": "BAROMESNIL" }, { - "codePostal": "73260", - "codeCommune": "73187", - "libelleAcheminement": "LA LECHERE", - "nomCommune": "LA LECHERE" + "codePostal": "23360", + "codeCommune": "23130", + "libelleAcheminement": "MEASNES", + "nomCommune": "MEASNES" }, { - "codePostal": "49300", - "codeCommune": "49099", - "libelleAcheminement": "CHOLET", - "nomCommune": "CHOLET" + "codePostal": "76730", + "codeCommune": "76050", + "libelleAcheminement": "AVREMESNIL", + "nomCommune": "AVREMESNIL" }, { - "codePostal": "16480", - "codeCommune": "16256", - "libelleAcheminement": "PASSIRAC", - "nomCommune": "PASSIRAC" + "codePostal": "62990", + "codeCommune": "62551", + "libelleAcheminement": "MARENLA", + "nomCommune": "MARENLA" }, { - "codePostal": "71440", - "codeCommune": "71568", - "libelleAcheminement": "VERISSEY", - "nomCommune": "VERISSEY" + "codePostal": "64400", + "codeCommune": "64245", + "libelleAcheminement": "GOES", + "nomCommune": "GOES" }, { - "codePostal": "73130", - "codeCommune": "73189", - "libelleAcheminement": "NOTRE DAME DU CRUET", - "nomCommune": "NOTRE DAME DU CRUET" + "codePostal": "76630", + "codeCommune": "76071", + "libelleAcheminement": "BELLENGREVILLE", + "nomCommune": "BELLENGREVILLE" }, { - "codePostal": "49260", - "codeCommune": "49112", - "libelleAcheminement": "LE COUDRAY MACOUARD", - "nomCommune": "LE COUDRAY MACOUARD" + "codePostal": "23800", + "codeCommune": "23141", + "libelleAcheminement": "NAILLAT", + "nomCommune": "NAILLAT" }, { - "codePostal": "16150", - "codeCommune": "16270", - "libelleAcheminement": "PRESSIGNAC", - "nomCommune": "PRESSIGNAC" + "codePostal": "76730", + "codeCommune": "76051", + "libelleAcheminement": "BACQUEVILLE EN CAUX", + "nomCommune": "BACQUEVILLE EN CAUX" }, { - "codePostal": "71620", - "codeCommune": "71577", - "libelleAcheminement": "VILLEGAUDIN", - "nomCommune": "VILLEGAUDIN" + "codePostal": "62170", + "codeCommune": "62556", + "libelleAcheminement": "MARLES SUR CANCHE", + "nomCommune": "MARLES SUR CANCHE" }, { - "codePostal": "73710", - "codeCommune": "73206", - "libelleAcheminement": "PRALOGNAN LA VANOISE", - "nomCommune": "PRALOGNAN LA VANOISE" + "codePostal": "64390", + "codeCommune": "64251", + "libelleAcheminement": "GUINARTHE PARENTIES", + "nomCommune": "GUINARTHE PARENTIES" }, { - "codePostal": "49260", - "codeCommune": "49113", - "libelleAcheminement": "COURCHAMPS", - "nomCommune": "COURCHAMPS" + "codePostal": "76440", + "codeCommune": "76074", + "libelleAcheminement": "LA BELLIERE", + "nomCommune": "LA BELLIERE" }, { - "codePostal": "16240", - "codeCommune": "16273", - "libelleAcheminement": "RAIX", - "nomCommune": "RAIX" + "codePostal": "23200", + "codeCommune": "23142", + "libelleAcheminement": "NEOUX", + "nomCommune": "NEOUX" }, { - "codePostal": "71110", - "codeCommune": "71581", - "libelleAcheminement": "VINDECY", - "nomCommune": "VINDECY" + "codePostal": "76340", + "codeCommune": "76059", + "libelleAcheminement": "BAZINVAL", + "nomCommune": "BAZINVAL" }, { - "codePostal": "73220", - "codeCommune": "73212", - "libelleAcheminement": "VAL D ARC", - "nomCommune": "VAL D ARC" + "codePostal": "62310", + "codeCommune": "62565", + "libelleAcheminement": "MENCAS", + "nomCommune": "MENCAS" }, { - "codePostal": "49400", - "codeCommune": "49123", - "libelleAcheminement": "DISTRE", - "nomCommune": "DISTRE" + "codePostal": "64400", + "codeCommune": "64252", + "libelleAcheminement": "GURMENCON", + "nomCommune": "GURMENCON" }, { - "codePostal": "16170", - "codeCommune": "16286", - "libelleAcheminement": "ROUILLAC", - "nomCommune": "ROUILLAC" + "codePostal": "76210", + "codeCommune": "76082", + "libelleAcheminement": "BERNIERES", + "nomCommune": "BERNIERES" }, { - "codePostal": "71260", - "codeCommune": "71591", - "libelleAcheminement": "FLEURVILLE", - "nomCommune": "FLEURVILLE" + "codePostal": "23600", + "codeCommune": "23146", + "libelleAcheminement": "NOUZERINES", + "nomCommune": "NOUZERINES" }, { - "codePostal": "73220", - "codeCommune": "73212", - "libelleAcheminement": "VAL D ARC", - "nomCommune": "VAL D ARC" + "codePostal": "76890", + "codeCommune": "76066", + "libelleAcheminement": "BEAUTOT", + "nomCommune": "BEAUTOT" }, { - "codePostal": "49700", - "codeCommune": "49125", - "libelleAcheminement": "DOUE EN ANJOU", - "nomCommune": "DOUE EN ANJOU" + "codePostal": "62890", + "codeCommune": "62567", + "libelleAcheminement": "MENTQUE NORTBECOURT", + "nomCommune": "MENTQUE NORTBECOURT" }, { - "codePostal": "16220", - "codeCommune": "16290", - "libelleAcheminement": "ROUZEDE", - "nomCommune": "ROUZEDE" + "codePostal": "64640", + "codeCommune": "64259", + "libelleAcheminement": "HELETTE", + "nomCommune": "HELETTE" }, { - "codePostal": "72700", - "codeCommune": "72003", - "libelleAcheminement": "ALLONNES", - "nomCommune": "ALLONNES" + "codePostal": "76590", + "codeCommune": "76085", + "libelleAcheminement": "BERTREVILLE ST OUEN", + "nomCommune": "BERTREVILLE ST OUEN" }, { - "codePostal": "73730", - "codeCommune": "73216", - "libelleAcheminement": "ROGNAIX", - "nomCommune": "ROGNAIX" + "codePostal": "23000", + "codeCommune": "23150", + "libelleAcheminement": "PEYRABOUT", + "nomCommune": "PEYRABOUT" }, { - "codePostal": "49430", - "codeCommune": "49127", - "libelleAcheminement": "DURTAL", - "nomCommune": "DURTAL" + "codePostal": "76110", + "codeCommune": "76068", + "libelleAcheminement": "BEC DE MORTAGNE", + "nomCommune": "BEC DE MORTAGNE" }, { - "codePostal": "16700", - "codeCommune": "16292", - "libelleAcheminement": "RUFFEC", - "nomCommune": "RUFFEC" + "codePostal": "62270", + "codeCommune": "62576", + "libelleAcheminement": "MONCHEAUX LES FREVENT", + "nomCommune": "MONCHEAUX LES FREVENT" }, { - "codePostal": "72200", - "codeCommune": "72022", - "libelleAcheminement": "LE BAILLEUL", - "nomCommune": "LE BAILLEUL" + "codePostal": "64270", + "codeCommune": "64263", + "libelleAcheminement": "L HOPITAL D ORION", + "nomCommune": "L HOPITAL D ORION" }, { - "codePostal": "73230", - "codeCommune": "73222", - "libelleAcheminement": "ST ALBAN LEYSSE", - "nomCommune": "ST ALBAN LEYSSE" + "codePostal": "76560", + "codeCommune": "76087", + "libelleAcheminement": "BERVILLE EN CAUX", + "nomCommune": "BERVILLE EN CAUX" }, { - "codePostal": "49460", - "codeCommune": "49135", - "libelleAcheminement": "FENEU", - "nomCommune": "FENEU" + "codePostal": "23140", + "codeCommune": "23154", + "libelleAcheminement": "PIONNAT", + "nomCommune": "PIONNAT" }, { - "codePostal": "16230", - "codeCommune": "16300", - "libelleAcheminement": "VAL DE BONNIEURE", - "nomCommune": "VAL DE BONNIEURE" + "codePostal": "76890", + "codeCommune": "76072", + "libelleAcheminement": "BELLEVILLE EN CAUX", + "nomCommune": "BELLEVILLE EN CAUX" }, { - "codePostal": "72290", - "codeCommune": "72023", - "libelleAcheminement": "BALLON ST MARS", - "nomCommune": "BALLON ST MARS" + "codePostal": "62123", + "codeCommune": "62586", + "libelleAcheminement": "MONTENESCOURT", + "nomCommune": "MONTENESCOURT" }, { - "codePostal": "73500", - "codeCommune": "73223", - "libelleAcheminement": "ST ANDRE", - "nomCommune": "ST ANDRE" + "codePostal": "64800", + "codeCommune": "64270", + "libelleAcheminement": "IGON", + "nomCommune": "IGON" }, { - "codePostal": "49250", - "codeCommune": "49138", - "libelleAcheminement": "LES BOIS D ANJOU", - "nomCommune": "LES BOIS D ANJOU" + "codePostal": "76210", + "codeCommune": "76092", + "libelleAcheminement": "BEUZEVILLETTE", + "nomCommune": "BEUZEVILLETTE" }, { - "codePostal": "16230", - "codeCommune": "16300", - "libelleAcheminement": "VAL DE BONNIEURE", - "nomCommune": "VAL DE BONNIEURE" + "codePostal": "23260", + "codeCommune": "23156", + "libelleAcheminement": "PONTCHARRAUD", + "nomCommune": "PONTCHARRAUD" }, { - "codePostal": "72610", - "codeCommune": "72034", - "libelleAcheminement": "BERUS", - "nomCommune": "BERUS" + "codePostal": "76590", + "codeCommune": "76075", + "libelleAcheminement": "BELMESNIL", + "nomCommune": "BELMESNIL" }, { - "codePostal": "73130", - "codeCommune": "73224", - "libelleAcheminement": "ST AVRE", - "nomCommune": "ST AVRE" + "codePostal": "62640", + "codeCommune": "62587", + "libelleAcheminement": "MONTIGNY EN GOHELLE", + "nomCommune": "MONTIGNY EN GOHELLE" }, { - "codePostal": "49590", - "codeCommune": "49140", - "libelleAcheminement": "FONTEVRAUD L ABBAYE", - "nomCommune": "FONTEVRAUD L ABBAYE" + "codePostal": "64240", + "codeCommune": "64277", + "libelleAcheminement": "ISTURITS", + "nomCommune": "ISTURITS" }, { - "codePostal": "16480", - "codeCommune": "16315", - "libelleAcheminement": "ST FELIX", - "nomCommune": "ST FELIX" + "codePostal": "76420", + "codeCommune": "76095", + "libelleAcheminement": "BIHOREL", + "nomCommune": "BIHOREL" }, { - "codePostal": "72350", - "codeCommune": "72050", - "libelleAcheminement": "BRULON", - "nomCommune": "BRULON" + "codePostal": "23110", + "codeCommune": "23160", + "libelleAcheminement": "RETERRE", + "nomCommune": "RETERRE" }, { - "codePostal": "73120", - "codeCommune": "73227", - "libelleAcheminement": "COURCHEVEL", - "nomCommune": "COURCHEVEL" + "codePostal": "76480", + "codeCommune": "76088", + "libelleAcheminement": "BERVILLE SUR SEINE", + "nomCommune": "BERVILLE SUR SEINE" }, { - "codePostal": "49123", - "codeCommune": "49160", - "libelleAcheminement": "INGRANDES LE FRESNE SUR LOIRE", - "nomCommune": "INGRANDES LE FRESNE SUR LOIRE" + "codePostal": "62170", + "codeCommune": "62588", + "libelleAcheminement": "MONTREUIL", + "nomCommune": "MONTREUIL" }, { - "codePostal": "16700", - "codeCommune": "16325", - "libelleAcheminement": "ST GOURSON", - "nomCommune": "ST GOURSON" + "codePostal": "64260", + "codeCommune": "64280", + "libelleAcheminement": "IZESTE", + "nomCommune": "IZESTE" }, { - "codePostal": "72210", - "codeCommune": "72075", - "libelleAcheminement": "CHEMIRE LE GAUDIN", - "nomCommune": "CHEMIRE LE GAUDIN" + "codePostal": "76116", + "codeCommune": "76100", + "libelleAcheminement": "BLAINVILLE CREVON", + "nomCommune": "BLAINVILLE CREVON" }, { - "codePostal": "73130", - "codeCommune": "73230", - "libelleAcheminement": "ST COLOMBAN DES VILLARDS", - "nomCommune": "ST COLOMBAN DES VILLARDS" + "codePostal": "23270", + "codeCommune": "23162", + "libelleAcheminement": "ROCHES", + "nomCommune": "ROCHES" }, { - "codePostal": "49123", - "codeCommune": "49160", - "libelleAcheminement": "INGRANDES LE FRESNE SUR LOIRE", - "nomCommune": "INGRANDES LE FRESNE SUR LOIRE" + "codePostal": "76220", + "codeCommune": "76093", + "libelleAcheminement": "BEZANCOURT", + "nomCommune": "BEZANCOURT" }, { - "codePostal": "16170", - "codeCommune": "16339", - "libelleAcheminement": "VAL D AUGE", - "nomCommune": "VAL D AUGE" + "codePostal": "62144", + "codeCommune": "62589", + "libelleAcheminement": "MONT ST ELOI", + "nomCommune": "MONT ST ELOI" }, { - "codePostal": "72600", - "codeCommune": "72086", - "libelleAcheminement": "COMMERVEIL", - "nomCommune": "COMMERVEIL" + "codePostal": "64220", + "codeCommune": "64283", + "libelleAcheminement": "JAXU", + "nomCommune": "JAXU" }, { - "codePostal": "73130", - "codeCommune": "73235", - "libelleAcheminement": "ST FRANCOIS LONGCHAMP", - "nomCommune": "ST FRANCOIS LONGCHAMP" + "codePostal": "76240", + "codeCommune": "76103", + "libelleAcheminement": "BONSECOURS", + "nomCommune": "BONSECOURS" }, { - "codePostal": "49320", - "codeCommune": "49167", - "libelleAcheminement": "LES GARENNES SUR LOIRE", - "nomCommune": "LES GARENNES SUR LOIRE" + "codePostal": "23250", + "codeCommune": "23168", + "libelleAcheminement": "SARDENT", + "nomCommune": "SARDENT" }, { - "codePostal": "16170", - "codeCommune": "16339", - "libelleAcheminement": "VAL D AUGE", - "nomCommune": "VAL D AUGE" + "codePostal": "76750", + "codeCommune": "76094", + "libelleAcheminement": "BIERVILLE", + "nomCommune": "BIERVILLE" }, { - "codePostal": "72240", - "codeCommune": "72089", - "libelleAcheminement": "CONLIE", - "nomCommune": "CONLIE" + "codePostal": "62130", + "codeCommune": "62590", + "libelleAcheminement": "MONTS EN TERNOIS", + "nomCommune": "MONTS EN TERNOIS" }, { - "codePostal": "73240", - "codeCommune": "73236", - "libelleAcheminement": "ST GENIX LES VILLAGES", - "nomCommune": "ST GENIX LES VILLAGES" + "codePostal": "64110", + "codeCommune": "64284", + "libelleAcheminement": "JURANCON", + "nomCommune": "JURANCON" }, { - "codePostal": "49330", - "codeCommune": "49170", - "libelleAcheminement": "JUVARDEIL", - "nomCommune": "JUVARDEIL" + "codePostal": "76160", + "codeCommune": "76111", + "libelleAcheminement": "BOIS L EVEQUE", + "nomCommune": "BOIS L EVEQUE" }, { - "codePostal": "16300", - "codeCommune": "16342", - "libelleAcheminement": "ST PALAIS DU NE", - "nomCommune": "ST PALAIS DU NE" + "codePostal": "23000", + "codeCommune": "23169", + "libelleAcheminement": "LA SAUNIERE", + "nomCommune": "LA SAUNIERE" }, { - "codePostal": "72140", - "codeCommune": "72109", - "libelleAcheminement": "CRISSE", - "nomCommune": "CRISSE" + "codePostal": "76340", + "codeCommune": "76101", + "libelleAcheminement": "BLANGY SUR BRESLE", + "nomCommune": "BLANGY SUR BRESLE" }, { - "codePostal": "73220", - "codeCommune": "73237", - "libelleAcheminement": "ST GEORGES D HURTIERES", - "nomCommune": "ST GEORGES D HURTIERES" + "codePostal": "62910", + "codeCommune": "62592", + "libelleAcheminement": "MORINGHEM", + "nomCommune": "MORINGHEM" }, { - "codePostal": "49440", - "codeCommune": "49178", - "libelleAcheminement": "LOIRE", - "nomCommune": "LOIRE" + "codePostal": "64170", + "codeCommune": "64288", + "libelleAcheminement": "LABASTIDE CEZERACQ", + "nomCommune": "LABASTIDE CEZERACQ" }, { - "codePostal": "16210", - "codeCommune": "16346", - "libelleAcheminement": "ST QUENTIN DE CHALAIS", - "nomCommune": "ST QUENTIN DE CHALAIS" + "codePostal": "76210", + "codeCommune": "76115", + "libelleAcheminement": "BOLLEVILLE", + "nomCommune": "BOLLEVILLE" }, { - "codePostal": "72130", - "codeCommune": "72121", - "libelleAcheminement": "DOUILLET LE JOLY", - "nomCommune": "DOUILLET" + "codePostal": "23300", + "codeCommune": "23176", + "libelleAcheminement": "LA SOUTERRAINE", + "nomCommune": "LA SOUTERRAINE" }, { - "codePostal": "73230", - "codeCommune": "73243", - "libelleAcheminement": "ST JEAN D ARVEY", - "nomCommune": "ST JEAN D ARVEY" + "codePostal": "76750", + "codeCommune": "76109", + "libelleAcheminement": "BOIS HEROULT", + "nomCommune": "BOIS HEROULT" }, { - "codePostal": "49160", - "codeCommune": "49180", - "libelleAcheminement": "LONGUE JUMELLES", - "nomCommune": "LONGUE JUMELLES" + "codePostal": "62159", + "codeCommune": "62594", + "libelleAcheminement": "MORY", + "nomCommune": "MORY" }, { - "codePostal": "16390", - "codeCommune": "16350", - "libelleAcheminement": "ST SEVERIN", - "nomCommune": "ST SEVERIN" + "codePostal": "64240", + "codeCommune": "64289", + "libelleAcheminement": "LA BASTIDE CLAIRENCE", + "nomCommune": "LA BASTIDE CLAIRENCE" }, { - "codePostal": "72160", - "codeCommune": "72122", - "libelleAcheminement": "DUNEAU", - "nomCommune": "DUNEAU" + "codePostal": "76750", + "codeCommune": "76120", + "libelleAcheminement": "BOSC BORDEL", + "nomCommune": "BOSC BORDEL" }, { - "codePostal": "73250", - "codeCommune": "73247", - "libelleAcheminement": "ST JEAN DE LA PORTE", - "nomCommune": "ST JEAN DE LA PORTE" + "codePostal": "23300", + "codeCommune": "23177", + "libelleAcheminement": "ST AGNANT DE VERSILLAT", + "nomCommune": "ST AGNANT DE VERSILLAT" }, { - "codePostal": "49140", - "codeCommune": "49194", - "libelleAcheminement": "MAZE MILON", - "nomCommune": "MAZE MILON" + "codePostal": "76270", + "codeCommune": "76122", + "libelleAcheminement": "CALLENGEVILLE", + "nomCommune": "CALLENGEVILLE" }, { - "codePostal": "16220", - "codeCommune": "16353", - "libelleAcheminement": "ST SORNIN", - "nomCommune": "ST SORNIN" + "codePostal": "62180", + "codeCommune": "62602", + "libelleAcheminement": "NEMPONT ST FIRMIN", + "nomCommune": "NEMPONT ST FIRMIN" }, { - "codePostal": "72330", - "codeCommune": "72135", - "libelleAcheminement": "LA FONTAINE ST MARTIN", - "nomCommune": "LA FONTAINE ST MARTIN" + "codePostal": "64530", + "codeCommune": "64292", + "libelleAcheminement": "LABATMALE", + "nomCommune": "LABATMALE" }, { - "codePostal": "73870", - "codeCommune": "73250", - "libelleAcheminement": "ST JULIEN MONT DENIS", - "nomCommune": "ST JULIEN MONT DENIS" + "codePostal": "76750", + "codeCommune": "76121", + "libelleAcheminement": "BOSC EDELINE", + "nomCommune": "BOSC EDELINE" }, { - "codePostal": "49770", - "codeCommune": "49200", - "libelleAcheminement": "LONGUENEE EN ANJOU", - "nomCommune": "LONGUENEE EN ANJOU" + "codePostal": "23000", + "codeCommune": "23186", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "16480", - "codeCommune": "16354", - "libelleAcheminement": "STE SOULINE", - "nomCommune": "STE SOULINE" + "codePostal": "76850", + "codeCommune": "76125", + "libelleAcheminement": "BOSC LE HARD", + "nomCommune": "BOSC LE HARD" }, { - "codePostal": "72610", - "codeCommune": "72137", - "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", - "nomCommune": "VILLENEUVE EN PERSEIGNE" + "codePostal": "62770", + "codeCommune": "62605", + "libelleAcheminement": "NEULETTE", + "nomCommune": "NEULETTE" }, { - "codePostal": "73600", - "codeCommune": "73257", - "libelleAcheminement": "LES BELLEVILLE", - "nomCommune": "LES BELLEVILLE" + "codePostal": "64470", + "codeCommune": "64298", + "libelleAcheminement": "LACARRY ARHAN CHARRITTE DE HAUT", + "nomCommune": "LACARRY ARHAN CHARRITTE DE HAUT" }, { - "codePostal": "49460", - "codeCommune": "49214", - "libelleAcheminement": "MONTREUIL JUIGNE", - "nomCommune": "MONTREUIL JUIGNE" + "codePostal": "76680", + "codeCommune": "76126", + "libelleAcheminement": "BOSC MESNIL", + "nomCommune": "BOSC MESNIL" }, { - "codePostal": "16190", - "codeCommune": "16362", - "libelleAcheminement": "SALLES LAVALETTE", - "nomCommune": "SALLES LAVALETTE" + "codePostal": "23160", + "codeCommune": "23199", + "libelleAcheminement": "ST GERMAIN BEAUPRE", + "nomCommune": "ST GERMAIN BEAUPRE" }, { - "codePostal": "72610", - "codeCommune": "72139", - "libelleAcheminement": "FYE", - "nomCommune": "FYE" + "codePostal": "76560", + "codeCommune": "76129", + "libelleAcheminement": "BOUDEVILLE", + "nomCommune": "BOUDEVILLE" }, { - "codePostal": "73130", - "codeCommune": "73259", - "libelleAcheminement": "ST MARTIN SUR LA CHAMBRE", - "nomCommune": "ST MARTIN SUR LA CHAMBRE" + "codePostal": "62124", + "codeCommune": "62608", + "libelleAcheminement": "NEUVILLE BOURJONVAL", + "nomCommune": "NEUVILLE BOURJONVAL" }, { - "codePostal": "49140", - "codeCommune": "49216", - "libelleAcheminement": "MONTREUIL SUR LOIR", - "nomCommune": "MONTREUIL SUR LOIR" + "codePostal": "64170", + "codeCommune": "64300", + "libelleAcheminement": "LACQ", + "nomCommune": "LACQ" }, { - "codePostal": "16310", - "codeCommune": "16364", - "libelleAcheminement": "SAUVAGNAC", - "nomCommune": "SAUVAGNAC" + "codePostal": "76890", + "codeCommune": "76153", + "libelleAcheminement": "CALLEVILLE LES DEUX EGLISES", + "nomCommune": "CALLEVILLE LES DEUX EGLISES" }, { - "codePostal": "72380", - "codeCommune": "72150", - "libelleAcheminement": "JOUE L ABBE", - "nomCommune": "JOUE L ABBE" + "codePostal": "23250", + "codeCommune": "23202", + "libelleAcheminement": "ST HILAIRE LE CHATEAU", + "nomCommune": "ST HILAIRE LE CHATEAU" }, { - "codePostal": "73410", - "codeCommune": "73265", - "libelleAcheminement": "ST OURS", - "nomCommune": "ST OURS" + "codePostal": "76740", + "codeCommune": "76133", + "libelleAcheminement": "LE BOURG DUN", + "nomCommune": "LE BOURG DUN" }, { - "codePostal": "49110", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "62580", + "codeCommune": "62609", + "libelleAcheminement": "NEUVILLE ST VAAST", + "nomCommune": "NEUVILLE ST VAAST" }, { - "codePostal": "16200", - "codeCommune": "16369", - "libelleAcheminement": "SIGOGNE", - "nomCommune": "SIGOGNE" + "codePostal": "64990", + "codeCommune": "64304", + "libelleAcheminement": "LAHONCE", + "nomCommune": "LAHONCE" }, { - "codePostal": "72200", - "codeCommune": "72154", - "libelleAcheminement": "LA FLECHE", - "nomCommune": "LA FLECHE" + "codePostal": "76380", + "codeCommune": "76157", + "libelleAcheminement": "CANTELEU", + "nomCommune": "CANTELEU" }, { - "codePostal": "73660", - "codeCommune": "73278", - "libelleAcheminement": "ST REMY DE MAURIENNE", - "nomCommune": "ST REMY DE MAURIENNE" + "codePostal": "23150", + "codeCommune": "23214", + "libelleAcheminement": "ST MARTIAL LE MONT", + "nomCommune": "ST MARTIAL LE MONT" }, { - "codePostal": "49110", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "76680", + "codeCommune": "76139", + "libelleAcheminement": "BRADIANCOURT", + "nomCommune": "BRADIANCOURT" }, { - "codePostal": "16440", - "codeCommune": "16370", - "libelleAcheminement": "SIREUIL", - "nomCommune": "SIREUIL" + "codePostal": "62185", + "codeCommune": "62615", + "libelleAcheminement": "NIELLES LES CALAIS", + "nomCommune": "NIELLES LES CALAIS" }, { - "codePostal": "72320", - "codeCommune": "72156", - "libelleAcheminement": "LAMNAY", - "nomCommune": "LAMNAY" + "codePostal": "64450", + "codeCommune": "64308", + "libelleAcheminement": "LALONQUETTE", + "nomCommune": "LALONQUETTE" }, { - "codePostal": "73460", - "codeCommune": "73283", - "libelleAcheminement": "ST VITAL", - "nomCommune": "ST VITAL" + "codePostal": "76190", + "codeCommune": "76160", + "libelleAcheminement": "CARVILLE LA FOLLETIERE", + "nomCommune": "CARVILLE LA FOLLETIERE" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "23300", + "codeCommune": "23219", + "libelleAcheminement": "ST MAURICE LA SOUTERRAINE", + "nomCommune": "ST MAURICE LA SOUTERRAINE" }, { - "codePostal": "16240", - "codeCommune": "16373", - "libelleAcheminement": "SOUVIGNE", - "nomCommune": "SOUVIGNE" + "codePostal": "76220", + "codeCommune": "76142", + "libelleAcheminement": "BREMONTIER MERVAL", + "nomCommune": "BREMONTIER MERVAL" }, { - "codePostal": "72500", - "codeCommune": "72160", - "libelleAcheminement": "LAVERNAT", - "nomCommune": "LAVERNAT" + "codePostal": "62390", + "codeCommune": "62616", + "libelleAcheminement": "NOEUX LES AUXI", + "nomCommune": "NOEUX LES AUXI" }, { - "codePostal": "73600", - "codeCommune": "73284", - "libelleAcheminement": "SALINS FONTAINE", - "nomCommune": "SALINS FONTAINE" + "codePostal": "64300", + "codeCommune": "64312", + "libelleAcheminement": "LANNEPLAA", + "nomCommune": "LANNEPLAA" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "76490", + "codeCommune": "76164", + "libelleAcheminement": "RIVES EN SEINE", + "nomCommune": "RIVES EN SEINE" }, { - "codePostal": "16800", - "codeCommune": "16374", - "libelleAcheminement": "SOYAUX", - "nomCommune": "SOYAUX" + "codePostal": "23200", + "codeCommune": "23220", + "libelleAcheminement": "ST MEDARD LA ROCHETTE", + "nomCommune": "ST MEDARD LA ROCHETTE" }, { - "codePostal": "72610", - "codeCommune": "72164", - "libelleAcheminement": "LIVET EN SAOSNOIS", - "nomCommune": "LIVET EN SAOSNOIS" + "codePostal": "76560", + "codeCommune": "76144", + "libelleAcheminement": "BRETTEVILLE ST LAURENT", + "nomCommune": "BRETTEVILLE ST LAURENT" }, { - "codePostal": "73000", - "codeCommune": "73288", - "libelleAcheminement": "SONNAZ", - "nomCommune": "SONNAZ" + "codePostal": "62490", + "codeCommune": "62627", + "libelleAcheminement": "NOYELLES SOUS BELLONNE", + "nomCommune": "NOYELLES SOUS BELLONNE" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "64110", + "codeCommune": "64315", + "libelleAcheminement": "LAROIN", + "nomCommune": "LAROIN" }, { - "codePostal": "16260", - "codeCommune": "16375", - "libelleAcheminement": "SUAUX", - "nomCommune": "SUAUX" + "codePostal": "76490", + "codeCommune": "76164", + "libelleAcheminement": "RIVES EN SEINE", + "nomCommune": "RIVES EN SEINE" }, { - "codePostal": "72600", - "codeCommune": "72171", - "libelleAcheminement": "LOUZES", - "nomCommune": "LOUZES" + "codePostal": "23430", + "codeCommune": "23230", + "libelleAcheminement": "ST PIERRE CHERIGNAT", + "nomCommune": "ST PIERRE CHERIGNAT" }, { - "codePostal": "73110", - "codeCommune": "73289", - "libelleAcheminement": "LA TABLE", - "nomCommune": "LA TABLE" + "codePostal": "76340", + "codeCommune": "76154", + "libelleAcheminement": "CAMPNEUSEVILLE", + "nomCommune": "CAMPNEUSEVILLE" }, { - "codePostal": "49410", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "62270", + "codeCommune": "62631", + "libelleAcheminement": "NUNCQ HAUTECOTE", + "nomCommune": "NUNCQ HAUTECOTE" }, { - "codePostal": "16360", - "codeCommune": "16380", - "libelleAcheminement": "LE TATRE", - "nomCommune": "LE TATRE" + "codePostal": "64440", + "codeCommune": "64320", + "libelleAcheminement": "LARUNS", + "nomCommune": "LARUNS" }, { - "codePostal": "72000", - "codeCommune": "72181", - "libelleAcheminement": "LE MANS", - "nomCommune": "LE MANS" + "codePostal": "76690", + "codeCommune": "76179", + "libelleAcheminement": "CLERES", + "nomCommune": "CLERES" }, { - "codePostal": "73480", - "codeCommune": "73290", - "libelleAcheminement": "VAL CENIS", - "nomCommune": "VAL CENIS" + "codePostal": "23300", + "codeCommune": "23235", + "libelleAcheminement": "ST PRIEST LA FEUILLE", + "nomCommune": "ST PRIEST LA FEUILLE" }, { - "codePostal": "49410", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "76260", + "codeCommune": "76155", + "libelleAcheminement": "CANEHAN", + "nomCommune": "CANEHAN" }, { - "codePostal": "16410", - "codeCommune": "16382", - "libelleAcheminement": "TORSAC", - "nomCommune": "TORSAC" + "codePostal": "62860", + "codeCommune": "62638", + "libelleAcheminement": "OISY LE VERGER", + "nomCommune": "OISY LE VERGER" }, { - "codePostal": "72540", - "codeCommune": "72184", - "libelleAcheminement": "MAREIL EN CHAMPAGNE", - "nomCommune": "MAREIL EN CHAMPAGNE" + "codePostal": "64290", + "codeCommune": "64325", + "libelleAcheminement": "LASSEUBETAT", + "nomCommune": "LASSEUBETAT" }, { - "codePostal": "73500", - "codeCommune": "73290", - "libelleAcheminement": "VAL CENIS", - "nomCommune": "VAL CENIS" + "codePostal": "76640", + "codeCommune": "76181", + "libelleAcheminement": "CLEVILLE", + "nomCommune": "CLEVILLE" }, { - "codePostal": "49570", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "23400", + "codeCommune": "23237", + "libelleAcheminement": "ST PRIEST PALUS", + "nomCommune": "ST PRIEST PALUS" }, { - "codePostal": "16730", - "codeCommune": "16388", - "libelleAcheminement": "TROIS PALIS", - "nomCommune": "TROIS PALIS" + "codePostal": "76590", + "codeCommune": "76162", + "libelleAcheminement": "LE CATELIER", + "nomCommune": "LE CATELIER" }, { - "codePostal": "72170", - "codeCommune": "72186", - "libelleAcheminement": "MARESCHE", - "nomCommune": "MARESCHE" + "codePostal": "62380", + "codeCommune": "62644", + "libelleAcheminement": "OUVE WIRQUIN", + "nomCommune": "OUVE WIRQUIN" }, { - "codePostal": "73500", - "codeCommune": "73290", - "libelleAcheminement": "VAL CENIS", - "nomCommune": "VAL CENIS" + "codePostal": "64490", + "codeCommune": "64330", + "libelleAcheminement": "LEES ATHAS", + "nomCommune": "LEES ATHAS" }, { - "codePostal": "49620", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "76440", + "codeCommune": "76185", + "libelleAcheminement": "COMPAINVILLE", + "nomCommune": "COMPAINVILLE" }, { - "codePostal": "16330", - "codeCommune": "16401", - "libelleAcheminement": "VERVANT", - "nomCommune": "VERVANT" + "codePostal": "23160", + "codeCommune": "23239", + "libelleAcheminement": "ST SEBASTIEN", + "nomCommune": "ST SEBASTIEN" }, { - "codePostal": "72220", - "codeCommune": "72187", - "libelleAcheminement": "MARIGNE LAILLE", - "nomCommune": "MARIGNE LAILLE" + "codePostal": "76390", + "codeCommune": "76166", + "libelleAcheminement": "LE CAULE STE BEUVE", + "nomCommune": "LE CAULE STE BEUVE" }, { - "codePostal": "73460", - "codeCommune": "73297", - "libelleAcheminement": "TOURNON", - "nomCommune": "TOURNON" + "codePostal": "62760", + "codeCommune": "62649", + "libelleAcheminement": "PAS EN ARTOIS", + "nomCommune": "PAS EN ARTOIS" }, { - "codePostal": "49420", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "64350", + "codeCommune": "64331", + "libelleAcheminement": "LEMBEYE", + "nomCommune": "LEMBEYE" }, { - "codePostal": "16240", - "codeCommune": "16409", - "libelleAcheminement": "VILLEFAGNAN", - "nomCommune": "VILLEFAGNAN" + "codePostal": "76740", + "codeCommune": "76190", + "libelleAcheminement": "CRASVILLE LA ROCQUEFORT", + "nomCommune": "CRASVILLE LA ROCQUEFORT" }, { - "codePostal": "72120", - "codeCommune": "72190", - "libelleAcheminement": "MAROLLES LES ST CALAIS", - "nomCommune": "MAROLLES LES ST CALAIS" + "codePostal": "23190", + "codeCommune": "23241", + "libelleAcheminement": "ST SILVAIN BELLEGARDE", + "nomCommune": "ST SILVAIN BELLEGARDE" }, { - "codePostal": "73170", - "codeCommune": "73299", - "libelleAcheminement": "TRAIZE", - "nomCommune": "TRAIZE" + "codePostal": "76590", + "codeCommune": "76168", + "libelleAcheminement": "LES CENT ACRES", + "nomCommune": "LES CENT ACRES" }, { - "codePostal": "49420", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "62127", + "codeCommune": "62651", + "libelleAcheminement": "PENIN", + "nomCommune": "PENIN" }, { - "codePostal": "16240", - "codeCommune": "16413", - "libelleAcheminement": "VILLIERS LE ROUX", - "nomCommune": "VILLIERS LE ROUX" + "codePostal": "64450", + "codeCommune": "64332", + "libelleAcheminement": "LEME", + "nomCommune": "LEME" }, { - "codePostal": "72260", - "codeCommune": "72192", - "libelleAcheminement": "LES MEES", - "nomCommune": "LES MEES" + "codePostal": "76111", + "codeCommune": "76194", + "libelleAcheminement": "CRIQUEBEUF EN CAUX", + "nomCommune": "CRIQUEBEUF EN CAUX" }, { - "codePostal": "73200", - "codeCommune": "73308", - "libelleAcheminement": "VENTHON", - "nomCommune": "VENTHON" + "codePostal": "23300", + "codeCommune": "23258", + "libelleAcheminement": "VAREILLES", + "nomCommune": "VAREILLES" }, { - "codePostal": "49520", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "76660", + "codeCommune": "76175", + "libelleAcheminement": "CLAIS", + "nomCommune": "CLAIS" }, { - "codePostal": "16230", - "codeCommune": "16414", - "libelleAcheminement": "VILLOGNON", - "nomCommune": "VILLOGNON" + "codePostal": "62550", + "codeCommune": "62652", + "libelleAcheminement": "PERNES", + "nomCommune": "PERNES" }, { - "codePostal": "72260", - "codeCommune": "72201", - "libelleAcheminement": "MONCE EN SAOSNOIS", - "nomCommune": "MONCE EN SAOSNOIS" + "codePostal": "64230", + "codeCommune": "64335", + "libelleAcheminement": "LESCAR", + "nomCommune": "LESCAR" }, { - "codePostal": "73330", - "codeCommune": "73309", - "libelleAcheminement": "VEREL DE MONTBEL", - "nomCommune": "VEREL DE MONTBEL" + "codePostal": "76720", + "codeCommune": "76204", + "libelleAcheminement": "CROPUS", + "nomCommune": "CROPUS" }, { - "codePostal": "49350", - "codeCommune": "49261", - "libelleAcheminement": "GENNES VAL DE LOIRE", - "nomCommune": "GENNES VAL DE LOIRE" + "codePostal": "23140", + "codeCommune": "23262", + "libelleAcheminement": "VIGEVILLE", + "nomCommune": "VIGEVILLE" }, { - "codePostal": "16250", - "codeCommune": "16420", - "libelleAcheminement": "VOULGEZAC", - "nomCommune": "VOULGEZAC" + "codePostal": "76400", + "codeCommune": "76183", + "libelleAcheminement": "COLLEVILLE", + "nomCommune": "COLLEVILLE" }, { - "codePostal": "72150", - "codeCommune": "72210", - "libelleAcheminement": "MONTREUIL LE HENRI", - "nomCommune": "MONTREUIL LE HENRI" + "codePostal": "62126", + "codeCommune": "62653", + "libelleAcheminement": "PERNES LES BOULOGNE", + "nomCommune": "PERNES LES BOULOGNE" }, { - "codePostal": "73110", - "codeCommune": "73311", - "libelleAcheminement": "LE VERNEIL", - "nomCommune": "LE VERNEIL" + "codePostal": "64140", + "codeCommune": "64348", + "libelleAcheminement": "LONS", + "nomCommune": "LONS" }, { - "codePostal": "49124", - "codeCommune": "49267", - "libelleAcheminement": "ST BARTHELEMY D ANJOU", - "nomCommune": "ST BARTHELEMY D ANJOU" + "codePostal": "76220", + "codeCommune": "76208", + "libelleAcheminement": "CUY ST FIACRE", + "nomCommune": "CUY ST FIACRE" }, { - "codePostal": "17400", - "codeCommune": "17013", - "libelleAcheminement": "ANTEZANT LA CHAPELLE", - "nomCommune": "ANTEZANT LA CHAPELLE" + "codePostal": "23260", + "codeCommune": "23265", + "libelleAcheminement": "LA VILLENEUVE", + "nomCommune": "LA VILLENEUVE" }, { - "codePostal": "72140", - "codeCommune": "72211", - "libelleAcheminement": "MONT ST JEAN", - "nomCommune": "MONT ST JEAN" + "codePostal": "76400", + "codeCommune": "76187", + "libelleAcheminement": "CONTREMOULINS", + "nomCommune": "CONTREMOULINS" }, { - "codePostal": "73300", - "codeCommune": "73318", - "libelleAcheminement": "VILLAREMBERT", - "nomCommune": "VILLAREMBERT" + "codePostal": "62340", + "codeCommune": "62657", + "libelleAcheminement": "PIHEN LES GUINES", + "nomCommune": "PIHEN LES GUINES" }, { - "codePostal": "49370", - "codeCommune": "49271", - "libelleAcheminement": "ST CLEMENT DE LA PLACE", - "nomCommune": "ST CLEMENT DE LA PLACE" + "codePostal": "64420", + "codeCommune": "64352", + "libelleAcheminement": "LOURENTIES", + "nomCommune": "LOURENTIES" }, { - "codePostal": "17520", - "codeCommune": "17016", - "libelleAcheminement": "ARCHIAC", - "nomCommune": "ARCHIAC" + "codePostal": "76340", + "codeCommune": "76211", + "libelleAcheminement": "DANCOURT", + "nomCommune": "DANCOURT" }, { - "codePostal": "72300", - "codeCommune": "72228", - "libelleAcheminement": "PARCE SUR SARTHE", - "nomCommune": "PARCE SUR SARTHE" + "codePostal": "24480", + "codeCommune": "24005", + "libelleAcheminement": "ALLES SUR DORDOGNE", + "nomCommune": "ALLES SUR DORDOGNE" }, { - "codePostal": "73310", - "codeCommune": "73327", - "libelleAcheminement": "VIONS", - "nomCommune": "VIONS" + "codePostal": "76850", + "codeCommune": "76188", + "libelleAcheminement": "COTTEVRARD", + "nomCommune": "COTTEVRARD" }, { - "codePostal": "49350", - "codeCommune": "49272", - "libelleAcheminement": "ST CLEMENT DES LEVEES", - "nomCommune": "ST CLEMENT DES LEVEES" + "codePostal": "62140", + "codeCommune": "62661", + "libelleAcheminement": "BOUIN PLUMOISON", + "nomCommune": "BOUIN PLUMOISON" }, { - "codePostal": "17520", - "codeCommune": "17020", - "libelleAcheminement": "ARTHENAC", - "nomCommune": "ARTHENAC" + "codePostal": "64260", + "codeCommune": "64353", + "libelleAcheminement": "LOUVIE JUZON", + "nomCommune": "LOUVIE JUZON" }, { - "codePostal": "72140", - "codeCommune": "72229", - "libelleAcheminement": "PARENNES", - "nomCommune": "PARENNES" + "codePostal": "76250", + "codeCommune": "76216", + "libelleAcheminement": "DEVILLE LES ROUEN", + "nomCommune": "DEVILLE LES ROUEN" }, { - "codePostal": "74290", - "codeCommune": "74003", - "libelleAcheminement": "ALEX", - "nomCommune": "ALEX" + "codePostal": "24220", + "codeCommune": "24006", + "libelleAcheminement": "ALLAS LES MINES", + "nomCommune": "ALLAS LES MINES" }, { - "codePostal": "49170", - "codeCommune": "49284", - "libelleAcheminement": "ST GERMAIN DES PRES", - "nomCommune": "ST GERMAIN DES PRES" + "codePostal": "76910", + "codeCommune": "76192", + "libelleAcheminement": "CRIEL SUR MER", + "nomCommune": "CRIEL SUR MER" }, { - "codePostal": "17530", - "codeCommune": "17021", - "libelleAcheminement": "ARVERT", - "nomCommune": "ARVERT" + "codePostal": "62140", + "codeCommune": "62677", + "libelleAcheminement": "LE QUESNOY EN ARTOIS", + "nomCommune": "LE QUESNOY EN ARTOIS" }, { - "codePostal": "72250", - "codeCommune": "72231", - "libelleAcheminement": "PARIGNE L EVEQUE", - "nomCommune": "PARIGNE L EVEQUE" + "codePostal": "64410", + "codeCommune": "64355", + "libelleAcheminement": "LOUVIGNY", + "nomCommune": "LOUVIGNY" }, { - "codePostal": "74140", - "codeCommune": "74025", - "libelleAcheminement": "BALLAISON", - "nomCommune": "BALLAISON" + "codePostal": "76220", + "codeCommune": "76218", + "libelleAcheminement": "DOUDEAUVILLE", + "nomCommune": "DOUDEAUVILLE" }, { - "codePostal": "49750", - "codeCommune": "49292", - "libelleAcheminement": "VAL DU LAYON", - "nomCommune": "VAL DU LAYON" + "codePostal": "24270", + "codeCommune": "24008", + "libelleAcheminement": "ANGOISSE", + "nomCommune": "ANGOISSE" }, { - "codePostal": "17770", - "codeCommune": "17026", - "libelleAcheminement": "AUTHON EBEON", - "nomCommune": "AUTHON EBEON" + "codePostal": "76910", + "codeCommune": "76192", + "libelleAcheminement": "CRIEL SUR MER", + "nomCommune": "CRIEL SUR MER" }, { - "codePostal": "72300", - "codeCommune": "72232", - "libelleAcheminement": "NOTRE DAME DU PE", - "nomCommune": "NOTRE DAME DU PE" + "codePostal": "62830", + "codeCommune": "62679", + "libelleAcheminement": "QUESTRECQUES", + "nomCommune": "QUESTRECQUES" }, { - "codePostal": "74330", - "codeCommune": "74026", - "libelleAcheminement": "LA BALME DE SILLINGY", - "nomCommune": "LA BALME DE SILLINGY" + "codePostal": "64350", + "codeCommune": "64357", + "libelleAcheminement": "LUCARRE", + "nomCommune": "LUCARRE" }, { - "codePostal": "49280", - "codeCommune": "49299", - "libelleAcheminement": "ST LEGER SOUS CHOLET", - "nomCommune": "ST LEGER SOUS CHOLET" + "codePostal": "76460", + "codeCommune": "76221", + "libelleAcheminement": "DROSAY", + "nomCommune": "DROSAY" }, { - "codePostal": "17160", - "codeCommune": "17029", - "libelleAcheminement": "BAGNIZEAU", - "nomCommune": "BAGNIZEAU" + "codePostal": "24150", + "codeCommune": "24023", + "libelleAcheminement": "BANEUIL", + "nomCommune": "BANEUIL" }, { - "codePostal": "72300", - "codeCommune": "72236", - "libelleAcheminement": "PINCE", - "nomCommune": "PINCE" + "codePostal": "76660", + "codeCommune": "76202", + "libelleAcheminement": "CROIXDALLE", + "nomCommune": "CROIXDALLE" }, { - "codePostal": "74420", - "codeCommune": "74037", - "libelleAcheminement": "BOEGE", - "nomCommune": "BOEGE" + "codePostal": "62390", + "codeCommune": "62683", + "libelleAcheminement": "QUOEUX HAUT MAINIL", + "nomCommune": "QUOEUX HAUT MAINIL" }, { - "codePostal": "49250", - "codeCommune": "49307", - "libelleAcheminement": "LOIRE AUTHION", - "nomCommune": "LOIRE AUTHION" + "codePostal": "64410", + "codeCommune": "64365", + "libelleAcheminement": "MALAUSSANNE", + "nomCommune": "MALAUSSANNE" }, { - "codePostal": "17600", - "codeCommune": "17030", - "libelleAcheminement": "BALANZAC", - "nomCommune": "BALANZAC" + "codePostal": "76760", + "codeCommune": "76227", + "libelleAcheminement": "ECTOT L AUBER", + "nomCommune": "ECTOT L AUBER" }, { - "codePostal": "72300", - "codeCommune": "72244", - "libelleAcheminement": "PRECIGNE", - "nomCommune": "PRECIGNE" + "codePostal": "24330", + "codeCommune": "24026", + "libelleAcheminement": "BASSILLAC ET AUBEROCHE", + "nomCommune": "BASSILLAC ET AUBEROCHE" }, { - "codePostal": "74380", - "codeCommune": "74040", - "libelleAcheminement": "BONNE", - "nomCommune": "BONNE" + "codePostal": "76540", + "codeCommune": "76232", + "libelleAcheminement": "ELETOT", + "nomCommune": "ELETOT" }, { - "codePostal": "49800", - "codeCommune": "49307", - "libelleAcheminement": "LOIRE AUTHION", - "nomCommune": "LOIRE AUTHION" + "codePostal": "62120", + "codeCommune": "62684", + "libelleAcheminement": "RACQUINGHEM", + "nomCommune": "RACQUINGHEM" }, { - "codePostal": "17290", - "codeCommune": "17032", - "libelleAcheminement": "BALLON", - "nomCommune": "BALLON" + "codePostal": "64120", + "codeCommune": "64368", + "libelleAcheminement": "MASPARRAUTE", + "nomCommune": "MASPARRAUTE" }, { - "codePostal": "72550", - "codeCommune": "72249", - "libelleAcheminement": "LA QUINTE", - "nomCommune": "LA QUINTE" + "codePostal": "76500", + "codeCommune": "76231", + "libelleAcheminement": "ELBEUF", + "nomCommune": "ELBEUF" }, { - "codePostal": "74130", - "codeCommune": "74049", - "libelleAcheminement": "BRIZON", - "nomCommune": "BRIZON" + "codePostal": "24330", + "codeCommune": "24026", + "libelleAcheminement": "BASSILLAC ET AUBEROCHE", + "nomCommune": "BASSILLAC ET AUBEROCHE" }, { - "codePostal": "49480", - "codeCommune": "49323", - "libelleAcheminement": "VERRIERES EN ANJOU", - "nomCommune": "VERRIERES EN ANJOU" + "codePostal": "76630", + "codeCommune": "76235", + "libelleAcheminement": "ENVERMEU", + "nomCommune": "ENVERMEU" }, { - "codePostal": "17210", - "codeCommune": "17038", - "libelleAcheminement": "BEDENAC", - "nomCommune": "BEDENAC" + "codePostal": "62140", + "codeCommune": "62690", + "libelleAcheminement": "RAYE SUR AUTHIE", + "nomCommune": "RAYE SUR AUTHIE" }, { - "codePostal": "72230", - "codeCommune": "72260", - "libelleAcheminement": "RUAUDIN", - "nomCommune": "RUAUDIN" + "codePostal": "64460", + "codeCommune": "64372", + "libelleAcheminement": "MAURE", + "nomCommune": "MAURE" }, { - "codePostal": "74410", - "codeCommune": "74060", - "libelleAcheminement": "LA CHAPELLE ST MAURICE", - "nomCommune": "LA CHAPELLE ST MAURICE" + "codePostal": "76133", + "codeCommune": "76238", + "libelleAcheminement": "EPOUVILLE", + "nomCommune": "EPOUVILLE" }, { - "codePostal": "49800", - "codeCommune": "49326", - "libelleAcheminement": "SARRIGNE", - "nomCommune": "SARRIGNE" + "codePostal": "24440", + "codeCommune": "24028", + "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", + "nomCommune": "BEAUMONTOIS EN PERIGORD" }, { - "codePostal": "17250", - "codeCommune": "17045", - "libelleAcheminement": "BEURLAY", - "nomCommune": "BEURLAY" + "codePostal": "76710", + "codeCommune": "76245", + "libelleAcheminement": "ESLETTES", + "nomCommune": "ESLETTES" }, { - "codePostal": "72110", - "codeCommune": "72265", - "libelleAcheminement": "ST AIGNAN", - "nomCommune": "ST AIGNAN" + "codePostal": "62270", + "codeCommune": "62695", + "libelleAcheminement": "REBREUVIETTE", + "nomCommune": "REBREUVIETTE" }, { - "codePostal": "74370", - "codeCommune": "74062", - "libelleAcheminement": "CHARVONNEX", - "nomCommune": "CHARVONNEX" + "codePostal": "64230", + "codeCommune": "64374", + "libelleAcheminement": "MAZEROLLES", + "nomCommune": "MAZEROLLES" }, { - "codePostal": "49400", - "codeCommune": "49328", - "libelleAcheminement": "SAUMUR", - "nomCommune": "SAUMUR" + "codePostal": "76750", + "codeCommune": "76243", + "libelleAcheminement": "ERNEMONT SUR BUCHY", + "nomCommune": "ERNEMONT SUR BUCHY" }, { - "codePostal": "17240", - "codeCommune": "17050", - "libelleAcheminement": "BOIS", - "nomCommune": "BOIS" + "codePostal": "24400", + "codeCommune": "24032", + "libelleAcheminement": "BEAURONNE", + "nomCommune": "BEAURONNE" }, { - "codePostal": "72130", - "codeCommune": "72266", - "libelleAcheminement": "ST AUBIN DE LOCQUENAY", - "nomCommune": "ST AUBIN DE LOCQUENAY" + "codePostal": "76690", + "codeCommune": "76247", + "libelleAcheminement": "ESTEVILLE", + "nomCommune": "ESTEVILLE" }, { - "codePostal": "74300", - "codeCommune": "74081", - "libelleAcheminement": "CLUSES", - "nomCommune": "CLUSES" + "codePostal": "62860", + "codeCommune": "62697", + "libelleAcheminement": "RECOURT", + "nomCommune": "RECOURT" }, { - "codePostal": "49400", - "codeCommune": "49328", - "libelleAcheminement": "SAUMUR", - "nomCommune": "SAUMUR" + "codePostal": "64130", + "codeCommune": "64378", + "libelleAcheminement": "MENDITTE", + "nomCommune": "MENDITTE" }, { - "codePostal": "17800", - "codeCommune": "17056", - "libelleAcheminement": "BOUGNEAU", - "nomCommune": "BOUGNEAU" + "codePostal": "76640", + "codeCommune": "76258", + "libelleAcheminement": "TERRES DE CAUX", + "nomCommune": "TERRES DE CAUX" }, { - "codePostal": "72120", - "codeCommune": "72269", - "libelleAcheminement": "ST CALAIS", - "nomCommune": "ST CALAIS" + "codePostal": "24130", + "codeCommune": "24051", + "libelleAcheminement": "BOSSET", + "nomCommune": "BOSSET" }, { - "codePostal": "74920", - "codeCommune": "74083", - "libelleAcheminement": "COMBLOUX", - "nomCommune": "COMBLOUX" + "codePostal": "76430", + "codeCommune": "76250", + "libelleAcheminement": "ETAINHUS", + "nomCommune": "ETAINHUS" }, { - "codePostal": "49170", - "codeCommune": "49329", - "libelleAcheminement": "SAVENNIERES", - "nomCommune": "SAVENNIERES" + "codePostal": "62156", + "codeCommune": "62703", + "libelleAcheminement": "REMY", + "nomCommune": "REMY" }, { - "codePostal": "17920", - "codeCommune": "17064", - "libelleAcheminement": "BREUILLET", - "nomCommune": "BREUILLET" + "codePostal": "64410", + "codeCommune": "64380", + "libelleAcheminement": "MERACQ", + "nomCommune": "MERACQ" }, { - "codePostal": "72600", - "codeCommune": "72270", - "libelleAcheminement": "ST CALEZ EN SAOSNOIS", - "nomCommune": "ST CALEZ EN SAOSNOIS" + "codePostal": "76400", + "codeCommune": "76259", + "libelleAcheminement": "FECAMP", + "nomCommune": "FECAMP" }, { - "codePostal": "74110", - "codeCommune": "74091", - "libelleAcheminement": "LA COTE D ARBROZ", - "nomCommune": "LA COTE D ARBROZ" + "codePostal": "24750", + "codeCommune": "24053", + "libelleAcheminement": "BOULAZAC ISLE MANOIRE", + "nomCommune": "BOULAZAC ISLE MANOIRE" }, { - "codePostal": "49330", - "codeCommune": "49330", - "libelleAcheminement": "SCEAUX D ANJOU", - "nomCommune": "SCEAUX D ANJOU" + "codePostal": "76260", + "codeCommune": "76252", + "libelleAcheminement": "ETALONDES", + "nomCommune": "ETALONDES" }, { - "codePostal": "17520", - "codeCommune": "17066", - "libelleAcheminement": "BRIE SOUS ARCHIAC", - "nomCommune": "BRIE SOUS ARCHIAC" + "codePostal": "62990", + "codeCommune": "62710", + "libelleAcheminement": "RIMBOVAL", + "nomCommune": "RIMBOVAL" }, { - "codePostal": "72540", - "codeCommune": "72274", - "libelleAcheminement": "ST CHRISTOPHE EN CHAMPAGNE", - "nomCommune": "ST CHRISTOPHE EN CHAMPAGNE" + "codePostal": "64130", + "codeCommune": "64391", + "libelleAcheminement": "MONCAYOLLE LARRORY MENDIBIEU", + "nomCommune": "MONCAYOLLE LARRORY MENDIBIEU" }, { - "codePostal": "74380", - "codeCommune": "74094", - "libelleAcheminement": "CRANVES SALES", - "nomCommune": "CRANVES SALES" + "codePostal": "76220", + "codeCommune": "76260", + "libelleAcheminement": "FERRIERES EN BRAY", + "nomCommune": "FERRIERES EN BRAY" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "24110", + "codeCommune": "24061", + "libelleAcheminement": "BOURROU", + "nomCommune": "BOURROU" }, { - "codePostal": "17800", - "codeCommune": "17069", - "libelleAcheminement": "BRIVES SUR CHARENTE", - "nomCommune": "BRIVES SUR CHARENTE" + "codePostal": "76640", + "codeCommune": "76258", + "libelleAcheminement": "TERRES DE CAUX", + "nomCommune": "TERRES DE CAUX" }, { - "codePostal": "72150", - "codeCommune": "72279", - "libelleAcheminement": "ST GEORGES DE LA COUEE", - "nomCommune": "ST GEORGES DE LA COUEE" + "codePostal": "62720", + "codeCommune": "62711", + "libelleAcheminement": "RINXENT", + "nomCommune": "RINXENT" }, { - "codePostal": "74120", - "codeCommune": "74099", - "libelleAcheminement": "DEMI QUARTIER", - "nomCommune": "DEMI QUARTIER" + "codePostal": "64330", + "codeCommune": "64392", + "libelleAcheminement": "MONCLA", + "nomCommune": "MONCLA" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "76440", + "codeCommune": "76261", + "libelleAcheminement": "LA FERTE ST SAMSON", + "nomCommune": "LA FERTE ST SAMSON" }, { - "codePostal": "17100", - "codeCommune": "17073", - "libelleAcheminement": "BUSSAC SUR CHARENTE", - "nomCommune": "BUSSAC SUR CHARENTE" + "codePostal": "24320", + "codeCommune": "24062", + "libelleAcheminement": "BOUTEILLES ST SEBASTIEN", + "nomCommune": "BOUTEILLES ST SEBASTIEN" }, { - "codePostal": "72800", - "codeCommune": "72283", - "libelleAcheminement": "ST GERMAIN D ARCE", - "nomCommune": "ST GERMAIN D ARCE" + "codePostal": "76220", + "codeCommune": "76263", + "libelleAcheminement": "LA FEUILLIE", + "nomCommune": "LA FEUILLIE" }, { - "codePostal": "74270", - "codeCommune": "74100", - "libelleAcheminement": "DESINGY", - "nomCommune": "DESINGY" + "codePostal": "62390", + "codeCommune": "62722", + "libelleAcheminement": "ROUGEFAY", + "nomCommune": "ROUGEFAY" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "64300", + "codeCommune": "64396", + "libelleAcheminement": "MONT", + "nomCommune": "MONT" }, { - "codePostal": "17430", - "codeCommune": "17075", - "libelleAcheminement": "CABARIOT", - "nomCommune": "CABARIOT" + "codePostal": "76970", + "codeCommune": "76264", + "libelleAcheminement": "FLAMANVILLE", + "nomCommune": "FLAMANVILLE" }, { - "codePostal": "72220", - "codeCommune": "72287", - "libelleAcheminement": "ST GERVAIS EN BELIN", - "nomCommune": "ST GERVAIS EN BELIN" + "codePostal": "24310", + "codeCommune": "24064", + "libelleAcheminement": "BRANTOME EN PERIGORD", + "nomCommune": "BRANTOME EN PERIGORD" }, { - "codePostal": "74700", - "codeCommune": "74103", - "libelleAcheminement": "DOMANCY", - "nomCommune": "DOMANCY" + "codePostal": "76190", + "codeCommune": "76289", + "libelleAcheminement": "ST MARTIN DE L IF", + "nomCommune": "ST MARTIN DE L IF" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "62620", + "codeCommune": "62727", + "libelleAcheminement": "RUITZ", + "nomCommune": "RUITZ" }, { - "codePostal": "17270", - "codeCommune": "17077", - "libelleAcheminement": "CERCOUX", - "nomCommune": "CERCOUX" + "codePostal": "64410", + "codeCommune": "64397", + "libelleAcheminement": "MONTAGUT", + "nomCommune": "MONTAGUT" }, { - "codePostal": "72510", - "codeCommune": "72291", - "libelleAcheminement": "ST JEAN DE LA MOTTE", - "nomCommune": "ST JEAN DE LA MOTTE" + "codePostal": "76890", + "codeCommune": "76274", + "libelleAcheminement": "LA FONTELAYE", + "nomCommune": "LA FONTELAYE" }, { - "codePostal": "74210", - "codeCommune": "74123", - "libelleAcheminement": "FAVERGES SEYTHENEX", - "nomCommune": "FAVERGES SEYTHENEX" + "codePostal": "24530", + "codeCommune": "24064", + "libelleAcheminement": "BRANTOME EN PERIGORD", + "nomCommune": "BRANTOME EN PERIGORD" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "76690", + "codeCommune": "76290", + "libelleAcheminement": "FRICHEMESNIL", + "nomCommune": "FRICHEMESNIL" }, { - "codePostal": "17430", - "codeCommune": "17085", - "libelleAcheminement": "CHAMPDOLENT", - "nomCommune": "CHAMPDOLENT" + "codePostal": "62170", + "codeCommune": "62742", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "72430", - "codeCommune": "72293", - "libelleAcheminement": "ST JEAN DU BOIS", - "nomCommune": "ST JEAN DU BOIS" + "codePostal": "64190", + "codeCommune": "64403", + "libelleAcheminement": "MONTFORT", + "nomCommune": "MONTFORT" }, { - "codePostal": "74260", - "codeCommune": "74134", - "libelleAcheminement": "LES GETS", - "nomCommune": "LES GETS" + "codePostal": "76290", + "codeCommune": "76275", + "libelleAcheminement": "FONTENAY", + "nomCommune": "FONTENAY" }, { - "codePostal": "49520", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "24370", + "codeCommune": "24074", + "libelleAcheminement": "CALVIAC EN PERIGORD", + "nomCommune": "CALVIAC EN PERIGORD" }, { - "codePostal": "17610", - "codeCommune": "17086", - "libelleAcheminement": "CHANIERS", - "nomCommune": "CHANIERS" + "codePostal": "76870", + "codeCommune": "76295", + "libelleAcheminement": "GAILLEFONTAINE", + "nomCommune": "GAILLEFONTAINE" }, { - "codePostal": "72220", - "codeCommune": "72299", - "libelleAcheminement": "ST MARS D OUTILLE", - "nomCommune": "ST MARS D OUTILLE" + "codePostal": "62223", + "codeCommune": "62753", + "libelleAcheminement": "ST LAURENT BLANGY", + "nomCommune": "ST LAURENT BLANGY" }, { - "codePostal": "74210", - "codeCommune": "74135", - "libelleAcheminement": "GIEZ", - "nomCommune": "GIEZ" + "codePostal": "64330", + "codeCommune": "64408", + "libelleAcheminement": "MOUHOUS", + "nomCommune": "MOUHOUS" }, { - "codePostal": "49610", - "codeCommune": "49338", - "libelleAcheminement": "SOULAINES SUR AUBANCE", - "nomCommune": "SOULAINES SUR AUBANCE" + "codePostal": "76440", + "codeCommune": "76276", + "libelleAcheminement": "FORGES LES EAUX", + "nomCommune": "FORGES LES EAUX" }, { - "codePostal": "17380", - "codeCommune": "17087", - "libelleAcheminement": "CHANTEMERLE SUR LA SOIE", - "nomCommune": "CHANTEMERLE SUR LA SOIE" + "codePostal": "24250", + "codeCommune": "24091", + "libelleAcheminement": "CENAC ET ST JULIEN", + "nomCommune": "CENAC ET ST JULIEN" }, { - "codePostal": "72130", - "codeCommune": "72309", - "libelleAcheminement": "ST PAUL LE GAULTIER", - "nomCommune": "ST PAUL LE GAULTIER" + "codePostal": "76540", + "codeCommune": "76299", + "libelleAcheminement": "GERPONVILLE", + "nomCommune": "GERPONVILLE" }, { - "codePostal": "74570", - "codeCommune": "74137", - "libelleAcheminement": "GROISY", - "nomCommune": "GROISY" + "codePostal": "62128", + "codeCommune": "62754", + "libelleAcheminement": "ST LEGER", + "nomCommune": "ST LEGER" }, { - "codePostal": "49380", - "codeCommune": "49345", - "libelleAcheminement": "BELLEVIGNE EN LAYON", - "nomCommune": "BELLEVIGNE EN LAYON" + "codePostal": "64150", + "codeCommune": "64410", + "libelleAcheminement": "MOURENX", + "nomCommune": "MOURENX" }, { - "codePostal": "17230", - "codeCommune": "17091", - "libelleAcheminement": "CHARRON", - "nomCommune": "CHARRON" + "codePostal": "76660", + "codeCommune": "76286", + "libelleAcheminement": "FRESNOY FOLNY", + "nomCommune": "FRESNOY FOLNY" }, { - "codePostal": "72150", - "codeCommune": "72314", - "libelleAcheminement": "ST PIERRE DU LOROUER", - "nomCommune": "ST PIERRE DU LOROUER" + "codePostal": "24380", + "codeCommune": "24094", + "libelleAcheminement": "CHALAGNAC", + "nomCommune": "CHALAGNAC" }, { - "codePostal": "74520", - "codeCommune": "74144", - "libelleAcheminement": "JONZIER EPAGNY", - "nomCommune": "JONZIER EPAGNY" + "codePostal": "76590", + "codeCommune": "76308", + "libelleAcheminement": "GONNEVILLE SUR SCIE", + "nomCommune": "GONNEVILLE SUR SCIE" }, { - "codePostal": "49310", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "62280", + "codeCommune": "62758", + "libelleAcheminement": "ST MARTIN BOULOGNE", + "nomCommune": "ST MARTIN BOULOGNE" }, { - "codePostal": "17130", - "codeCommune": "17096", - "libelleAcheminement": "CHAUNAC", - "nomCommune": "CHAUNAC" + "codePostal": "64510", + "codeCommune": "64413", + "libelleAcheminement": "NARCASTET", + "nomCommune": "NARCASTET" }, { - "codePostal": "72600", - "codeCommune": "72317", - "libelleAcheminement": "ST REMY DU VAL", - "nomCommune": "ST REMY DU VAL" + "codePostal": "76190", + "codeCommune": "76289", + "libelleAcheminement": "ST MARTIN DE L IF", + "nomCommune": "ST MARTIN DE L IF" }, { - "codePostal": "74210", - "codeCommune": "74167", - "libelleAcheminement": "VAL DE CHAISE", - "nomCommune": "VAL DE CHAISE" + "codePostal": "24750", + "codeCommune": "24098", + "libelleAcheminement": "CHAMPCEVINEL", + "nomCommune": "CHAMPCEVINEL" }, { - "codePostal": "49310", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "76220", + "codeCommune": "76312", + "libelleAcheminement": "GOURNAY EN BRAY", + "nomCommune": "GOURNAY EN BRAY" }, { - "codePostal": "17120", - "codeCommune": "17098", - "libelleAcheminement": "CHENAC ST SEURIN D UZET", - "nomCommune": "CHENAC ST SEURIN D UZET" + "codePostal": "62240", + "codeCommune": "62759", + "libelleAcheminement": "ST MARTIN CHOQUEL", + "nomCommune": "ST MARTIN CHOQUEL" }, { - "codePostal": "72150", - "codeCommune": "72325", - "libelleAcheminement": "ST VINCENT DU LOROUER", - "nomCommune": "ST VINCENT DU LOROUER" + "codePostal": "64190", + "codeCommune": "64414", + "libelleAcheminement": "NARP", + "nomCommune": "NARP" }, { - "codePostal": "74210", - "codeCommune": "74167", - "libelleAcheminement": "VAL DE CHAISE", - "nomCommune": "VAL DE CHAISE" + "codePostal": "76780", + "codeCommune": "76292", + "libelleAcheminement": "FRY", + "nomCommune": "FRY" }, { - "codePostal": "49310", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "24530", + "codeCommune": "24107", + "libelleAcheminement": "LA CHAPELLE FAUCHER", + "nomCommune": "LA CHAPELLE FAUCHER" }, { - "codePostal": "17210", - "codeCommune": "17099", - "libelleAcheminement": "CHEPNIERS", - "nomCommune": "CHEPNIERS" + "codePostal": "76450", + "codeCommune": "76315", + "libelleAcheminement": "GRAINVILLE LA TEINTURIERE", + "nomCommune": "GRAINVILLE LA TEINTURIERE" }, { - "codePostal": "72460", - "codeCommune": "72335", - "libelleAcheminement": "SILLE LE PHILIPPE", - "nomCommune": "SILLE LE PHILIPPE" + "codePostal": "62560", + "codeCommune": "62760", + "libelleAcheminement": "ST MARTIN D HARDINGHEM", + "nomCommune": "ST MARTIN D HARDINGHEM" }, { - "codePostal": "74270", - "codeCommune": "74184", - "libelleAcheminement": "MINZIER", - "nomCommune": "MINZIER" + "codePostal": "64450", + "codeCommune": "64415", + "libelleAcheminement": "NAVAILLES ANGOS", + "nomCommune": "NAVAILLES ANGOS" }, { - "codePostal": "49540", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "76790", + "codeCommune": "76300", + "libelleAcheminement": "GERVILLE", + "nomCommune": "GERVILLE" }, { - "codePostal": "17210", - "codeCommune": "17104", - "libelleAcheminement": "CHEVANCEAUX", - "nomCommune": "CHEVANCEAUX" + "codePostal": "24390", + "codeCommune": "24113", + "libelleAcheminement": "LA CHAPELLE ST JEAN", + "nomCommune": "LA CHAPELLE ST JEAN" }, { - "codePostal": "72370", - "codeCommune": "72345", - "libelleAcheminement": "SURFONDS", - "nomCommune": "SURFONDS" + "codePostal": "76170", + "codeCommune": "76318", + "libelleAcheminement": "GRAND CAMP", + "nomCommune": "GRAND CAMP" }, { - "codePostal": "74560", - "codeCommune": "74185", - "libelleAcheminement": "MONNETIER MORNEX", - "nomCommune": "MONNETIER MORNEX" + "codePostal": "62128", + "codeCommune": "62761", + "libelleAcheminement": "ST MARTIN SUR COJEUL", + "nomCommune": "ST MARTIN SUR COJEUL" }, { - "codePostal": "49140", - "codeCommune": "49377", - "libelleAcheminement": "RIVES DU LOIR EN ANJOU", - "nomCommune": "RIVES DU LOIR EN ANJOU" + "codePostal": "64400", + "codeCommune": "64422", + "libelleAcheminement": "OLORON STE MARIE", + "nomCommune": "OLORON STE MARIE" }, { - "codePostal": "17510", - "codeCommune": "17105", - "libelleAcheminement": "CHIVES", - "nomCommune": "CHIVES" + "codePostal": "76110", + "codeCommune": "76302", + "libelleAcheminement": "GODERVILLE", + "nomCommune": "GODERVILLE" }, { - "codePostal": "72210", - "codeCommune": "72346", - "libelleAcheminement": "LA SUZE SUR SARTHE", - "nomCommune": "LA SUZE SUR SARTHE" + "codePostal": "24600", + "codeCommune": "24114", + "libelleAcheminement": "CHASSAIGNES", + "nomCommune": "CHASSAIGNES" }, { - "codePostal": "74600", - "codeCommune": "74186", - "libelleAcheminement": "MONTAGNY LES LANCHES", - "nomCommune": "MONTAGNY LES LANCHES" + "codePostal": "76810", + "codeCommune": "76327", + "libelleAcheminement": "GREUVILLE", + "nomCommune": "GREUVILLE" }, { - "codePostal": "50230", - "codeCommune": "50003", - "libelleAcheminement": "AGON COUTAINVILLE", - "nomCommune": "AGON COUTAINVILLE" + "codePostal": "62500", + "codeCommune": "62765", + "libelleAcheminement": "ST OMER", + "nomCommune": "ST OMER" }, { - "codePostal": "17290", - "codeCommune": "17107", - "libelleAcheminement": "CIRE D AUNIS", - "nomCommune": "CIRE D AUNIS" + "codePostal": "64120", + "codeCommune": "64429", + "libelleAcheminement": "ORSANCO", + "nomCommune": "ORSANCO" }, { - "codePostal": "72430", - "codeCommune": "72347", - "libelleAcheminement": "TASSE", - "nomCommune": "TASSE" + "codePostal": "76110", + "codeCommune": "76317", + "libelleAcheminement": "GRAINVILLE YMAUVILLE", + "nomCommune": "GRAINVILLE YMAUVILLE" }, { - "codePostal": "74110", - "codeCommune": "74191", - "libelleAcheminement": "MORZINE", - "nomCommune": "MORZINE" + "codePostal": "24120", + "codeCommune": "24117", + "libelleAcheminement": "LES COTEAUX PERIGOURDINS", + "nomCommune": "LES COTEAUX PERIGOURDINS" }, { - "codePostal": "50620", - "codeCommune": "50006", - "libelleAcheminement": "AMIGNY", - "nomCommune": "AMIGNY" + "codePostal": "76440", + "codeCommune": "76332", + "libelleAcheminement": "GRUMESNIL", + "nomCommune": "GRUMESNIL" }, { - "codePostal": "17240", - "codeCommune": "17111", - "libelleAcheminement": "CLION", - "nomCommune": "CLION" + "codePostal": "62162", + "codeCommune": "62766", + "libelleAcheminement": "ST OMER CAPELLE", + "nomCommune": "ST OMER CAPELLE" }, { - "codePostal": "72220", - "codeCommune": "72350", - "libelleAcheminement": "TELOCHE", - "nomCommune": "TELOCHE" + "codePostal": "64190", + "codeCommune": "64434", + "libelleAcheminement": "OSSENX", + "nomCommune": "OSSENX" }, { - "codePostal": "74540", - "codeCommune": "74194", - "libelleAcheminement": "MURES", - "nomCommune": "MURES" + "codePostal": "76970", + "codeCommune": "76325", + "libelleAcheminement": "GREMONVILLE", + "nomCommune": "GREMONVILLE" }, { - "codePostal": "50660", - "codeCommune": "50015", - "libelleAcheminement": "ANNOVILLE", - "nomCommune": "ANNOVILLE" + "codePostal": "24390", + "codeCommune": "24120", + "libelleAcheminement": "CHERVEIX CUBAS", + "nomCommune": "CHERVEIX CUBAS" }, { - "codePostal": "17600", - "codeCommune": "17112", - "libelleAcheminement": "LA CLISSE", - "nomCommune": "LA CLISSE" + "codePostal": "76780", + "codeCommune": "76338", + "libelleAcheminement": "LA HALLOTIERE", + "nomCommune": "LA HALLOTIERE" }, { - "codePostal": "72110", - "codeCommune": "72359", - "libelleAcheminement": "TORCE EN VALLEE", - "nomCommune": "TORCE EN VALLEE" + "codePostal": "62760", + "codeCommune": "62779", + "libelleAcheminement": "SARTON", + "nomCommune": "SARTON" }, { - "codePostal": "74270", - "codeCommune": "74195", - "libelleAcheminement": "MUSIEGES", - "nomCommune": "MUSIEGES" + "codePostal": "64300", + "codeCommune": "64440", + "libelleAcheminement": "OZENX MONTESTRUCQ", + "nomCommune": "OZENX MONTESTRUCQ" }, { - "codePostal": "50530", - "codeCommune": "50027", - "libelleAcheminement": "BACILLY", - "nomCommune": "BACILLY" + "codePostal": "76340", + "codeCommune": "76333", + "libelleAcheminement": "GUERVILLE", + "nomCommune": "GUERVILLE" }, { - "codePostal": "17150", - "codeCommune": "17116", - "libelleAcheminement": "CONSAC", - "nomCommune": "CONSAC" + "codePostal": "24170", + "codeCommune": "24122", + "libelleAcheminement": "CLADECH", + "nomCommune": "CLADECH" }, { - "codePostal": "72440", - "codeCommune": "72361", - "libelleAcheminement": "TRESSON", - "nomCommune": "TRESSON" + "codePostal": "76700", + "codeCommune": "76341", + "libelleAcheminement": "HARFLEUR", + "nomCommune": "HARFLEUR" }, { - "codePostal": "74500", - "codeCommune": "74203", - "libelleAcheminement": "NOVEL", - "nomCommune": "NOVEL" + "codePostal": "62690", + "codeCommune": "62785", + "libelleAcheminement": "SAVY BERLETTE", + "nomCommune": "SAVY BERLETTE" }, { - "codePostal": "50450", - "codeCommune": "50028", - "libelleAcheminement": "LA BALEINE", - "nomCommune": "LA BALEINE" + "codePostal": "64000", + "codeCommune": "64445", + "libelleAcheminement": "PAU", + "nomCommune": "PAU" }, { - "codePostal": "17470", - "codeCommune": "17117", - "libelleAcheminement": "CONTRE", - "nomCommune": "CONTRE" + "codePostal": "76450", + "codeCommune": "76339", + "libelleAcheminement": "LE HANOUARD", + "nomCommune": "LE HANOUARD" }, { - "codePostal": "72160", - "codeCommune": "72363", - "libelleAcheminement": "TUFFE VAL DE LA CHERONNE", - "nomCommune": "TUFFE VAL DE LA CHERONNE" + "codePostal": "24300", + "codeCommune": "24131", + "libelleAcheminement": "CONNEZAC", + "nomCommune": "CONNEZAC" }, { - "codePostal": "74250", - "codeCommune": "74209", - "libelleAcheminement": "PEILLONNEX", - "nomCommune": "PEILLONNEX" + "codePostal": "76113", + "codeCommune": "76350", + "libelleAcheminement": "HAUTOT SUR SEINE", + "nomCommune": "HAUTOT SUR SEINE" }, { - "codePostal": "50320", - "codeCommune": "50038", - "libelleAcheminement": "BEAUCHAMPS", - "nomCommune": "BEAUCHAMPS" + "codePostal": "62270", + "codeCommune": "62791", + "libelleAcheminement": "SERICOURT", + "nomCommune": "SERICOURT" }, { - "codePostal": "17130", - "codeCommune": "17118", - "libelleAcheminement": "CORIGNAC", - "nomCommune": "CORIGNAC" + "codePostal": "64400", + "codeCommune": "64449", + "libelleAcheminement": "POEY D OLORON", + "nomCommune": "POEY D OLORON" }, { - "codePostal": "72600", - "codeCommune": "72372", - "libelleAcheminement": "VEZOT", - "nomCommune": "VEZOT" + "codePostal": "76390", + "codeCommune": "76344", + "libelleAcheminement": "HAUDRICOURT", + "nomCommune": "HAUDRICOURT" }, { - "codePostal": "74130", - "codeCommune": "74212", - "libelleAcheminement": "GLIERES VAL DE BORNE", - "nomCommune": "GLIERES VAL DE BORNE" + "codePostal": "24350", + "codeCommune": "24144", + "libelleAcheminement": "CREYSSAC", + "nomCommune": "CREYSSAC" }, { - "codePostal": "50420", - "codeCommune": "50039", - "libelleAcheminement": "BEAUCOUDRAY", - "nomCommune": "BEAUCOUDRAY" + "codePostal": "76730", + "codeCommune": "76356", + "libelleAcheminement": "HERMANVILLE", + "nomCommune": "HERMANVILLE" }, { - "codePostal": "17600", - "codeCommune": "17119", - "libelleAcheminement": "CORME ECLUSE", - "nomCommune": "CORME ECLUSE" + "codePostal": "62170", + "codeCommune": "62799", + "libelleAcheminement": "SORRUS", + "nomCommune": "SORRUS" }, { - "codePostal": "72350", - "codeCommune": "72379", - "libelleAcheminement": "VIRE EN CHAMPAGNE", - "nomCommune": "VIRE EN CHAMPAGNE" + "codePostal": "64460", + "codeCommune": "64451", + "libelleAcheminement": "PONSON DEBAT POUTS", + "nomCommune": "PONSON DEBAT POUTS" }, { - "codePostal": "74130", - "codeCommune": "74212", - "libelleAcheminement": "GLIERES VAL DE BORNE", - "nomCommune": "GLIERES VAL DE BORNE" + "codePostal": "76450", + "codeCommune": "76346", + "libelleAcheminement": "HAUTOT L AUVRAY", + "nomCommune": "HAUTOT L AUVRAY" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "24640", + "codeCommune": "24147", + "libelleAcheminement": "CUBJAC AUVEZERE VAL D ANS", + "nomCommune": "CUBJAC AUVEZERE VAL D ANS" }, { - "codePostal": "17800", - "codeCommune": "17122", - "libelleAcheminement": "COULONGES", - "nomCommune": "COULONGES" + "codePostal": "76280", + "codeCommune": "76357", + "libelleAcheminement": "HERMEVILLE", + "nomCommune": "HERMEVILLE" }, { - "codePostal": "73260", - "codeCommune": "73003", - "libelleAcheminement": "GRAND AIGUEBLANCHE", - "nomCommune": "GRAND AIGUEBLANCHE" + "codePostal": "62560", + "codeCommune": "62812", + "libelleAcheminement": "THIEMBRONNE", + "nomCommune": "THIEMBRONNE" }, { - "codePostal": "74330", - "codeCommune": "74213", - "libelleAcheminement": "POISY", - "nomCommune": "POISY" + "codePostal": "64330", + "codeCommune": "64455", + "libelleAcheminement": "PORTET", + "nomCommune": "PORTET" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "76190", + "codeCommune": "76347", + "libelleAcheminement": "HAUTOT LE VATOIS", + "nomCommune": "HAUTOT LE VATOIS" }, { - "codePostal": "17100", - "codeCommune": "17128", - "libelleAcheminement": "COURCOURY", - "nomCommune": "COURCOURY" + "codePostal": "24240", + "codeCommune": "24148", + "libelleAcheminement": "CUNEGES", + "nomCommune": "CUNEGES" }, { - "codePostal": "73210", - "codeCommune": "73006", - "libelleAcheminement": "AIME LA PLAGNE", - "nomCommune": "AIME LA PLAGNE" + "codePostal": "76720", + "codeCommune": "76360", + "libelleAcheminement": "HEUGLEVILLE SUR SCIE", + "nomCommune": "HEUGLEVILLE SUR SCIE" }, { - "codePostal": "74540", - "codeCommune": "74233", - "libelleAcheminement": "ST FELIX", - "nomCommune": "ST FELIX" + "codePostal": "62180", + "codeCommune": "62815", + "libelleAcheminement": "TIGNY NOYELLE", + "nomCommune": "TIGNY NOYELLE" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "64270", + "codeCommune": "64461", + "libelleAcheminement": "PUYOO", + "nomCommune": "PUYOO" }, { - "codePostal": "17130", - "codeCommune": "17130", - "libelleAcheminement": "COUX", - "nomCommune": "COUX" + "codePostal": "76610", + "codeCommune": "76351", + "libelleAcheminement": "LE HAVRE", + "nomCommune": "LE HAVRE" }, { - "codePostal": "73210", - "codeCommune": "73006", - "libelleAcheminement": "AIME LA PLAGNE", - "nomCommune": "AIME LA PLAGNE" + "codePostal": "24120", + "codeCommune": "24153", + "libelleAcheminement": "LA DORNAC", + "nomCommune": "LA DORNAC" }, { - "codePostal": "74430", - "codeCommune": "74238", - "libelleAcheminement": "ST JEAN D AULPS", - "nomCommune": "ST JEAN D AULPS" + "codePostal": "76780", + "codeCommune": "76364", + "libelleAcheminement": "HODENG HODENGER", + "nomCommune": "HODENG HODENGER" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "62490", + "codeCommune": "62825", + "libelleAcheminement": "TORTEQUESNE", + "nomCommune": "TORTEQUESNE" }, { - "codePostal": "17120", - "codeCommune": "17131", - "libelleAcheminement": "COZES", - "nomCommune": "COZES" + "codePostal": "64190", + "codeCommune": "64466", + "libelleAcheminement": "RIVEHAUTE", + "nomCommune": "RIVEHAUTE" }, { - "codePostal": "73210", - "codeCommune": "73006", - "libelleAcheminement": "AIME LA PLAGNE", - "nomCommune": "AIME LA PLAGNE" + "codePostal": "76620", + "codeCommune": "76351", + "libelleAcheminement": "LE HAVRE", + "nomCommune": "LE HAVRE" }, { - "codePostal": "74250", - "codeCommune": "74240", - "libelleAcheminement": "ST JEAN DE THOLOME", - "nomCommune": "ST JEAN DE THOLOME" + "codePostal": "24190", + "codeCommune": "24157", + "libelleAcheminement": "DOUZILLAC", + "nomCommune": "DOUZILLAC" }, { - "codePostal": "50210", - "codeCommune": "50044", - "libelleAcheminement": "BELVAL", - "nomCommune": "BELVAL" + "codePostal": "76890", + "codeCommune": "76373", + "libelleAcheminement": "IMBLEVILLE", + "nomCommune": "IMBLEVILLE" }, { - "codePostal": "17470", - "codeCommune": "17138", - "libelleAcheminement": "DAMPIERRE SUR BOUTONNE", - "nomCommune": "DAMPIERRE SUR BOUTONNE" + "codePostal": "62147", + "codeCommune": "62830", + "libelleAcheminement": "TRESCAULT", + "nomCommune": "TRESCAULT" }, { - "codePostal": "73410", - "codeCommune": "73010", - "libelleAcheminement": "ENTRELACS", - "nomCommune": "ENTRELACS" + "codePostal": "64160", + "codeCommune": "64470", + "libelleAcheminement": "ST ARMOU", + "nomCommune": "ST ARMOU" }, { - "codePostal": "74300", - "codeCommune": "74252", - "libelleAcheminement": "ST SIGISMOND", - "nomCommune": "ST SIGISMOND" + "codePostal": "76940", + "codeCommune": "76362", + "libelleAcheminement": "HEURTEAUVILLE", + "nomCommune": "HEURTEAUVILLE" }, { - "codePostal": "50420", - "codeCommune": "50050", - "libelleAcheminement": "BEUVRIGNY", - "nomCommune": "BEUVRIGNY" + "codePostal": "24360", + "codeCommune": "24163", + "libelleAcheminement": "ETOUARS", + "nomCommune": "ETOUARS" }, { - "codePostal": "17100", - "codeCommune": "17143", - "libelleAcheminement": "LE DOUHET", - "nomCommune": "LE DOUHET" + "codePostal": "76570", + "codeCommune": "76385", + "libelleAcheminement": "LIMESY", + "nomCommune": "LIMESY" }, { - "codePostal": "73410", - "codeCommune": "73010", - "libelleAcheminement": "ENTRELACS", - "nomCommune": "ENTRELACS" + "codePostal": "62113", + "codeCommune": "62847", + "libelleAcheminement": "VERQUIGNEUL", + "nomCommune": "VERQUIGNEUL" }, { - "codePostal": "74700", - "codeCommune": "74256", - "libelleAcheminement": "SALLANCHES", - "nomCommune": "SALLANCHES" + "codePostal": "64110", + "codeCommune": "64478", + "libelleAcheminement": "ST FAUST", + "nomCommune": "ST FAUST" }, { - "codePostal": "50800", - "codeCommune": "50069", - "libelleAcheminement": "BOURGUENOLLES", - "nomCommune": "BOURGUENOLLES" + "codePostal": "76730", + "codeCommune": "76380", + "libelleAcheminement": "LAMMERVILLE", + "nomCommune": "LAMMERVILLE" }, { - "codePostal": "17800", - "codeCommune": "17145", - "libelleAcheminement": "ECHEBRUNE", - "nomCommune": "ECHEBRUNE" + "codePostal": "24290", + "codeCommune": "24175", + "libelleAcheminement": "LES FARGES", + "nomCommune": "LES FARGES" }, { - "codePostal": "73410", - "codeCommune": "73010", - "libelleAcheminement": "ENTRELACS", - "nomCommune": "ENTRELACS" + "codePostal": "76590", + "codeCommune": "76389", + "libelleAcheminement": "LINTOT LES BOIS", + "nomCommune": "LINTOT LES BOIS" }, { - "codePostal": "74950", - "codeCommune": "74264", - "libelleAcheminement": "SCIONZIER", - "nomCommune": "SCIONZIER" + "codePostal": "62136", + "codeCommune": "62851", + "libelleAcheminement": "VIEILLE CHAPELLE", + "nomCommune": "VIEILLE CHAPELLE" }, { - "codePostal": "50480", - "codeCommune": "50070", - "libelleAcheminement": "BOUTTEVILLE", - "nomCommune": "BOUTTEVILLE" + "codePostal": "64120", + "codeCommune": "64487", + "libelleAcheminement": "ST JUST IBARRE", + "nomCommune": "ST JUST IBARRE" }, { - "codePostal": "17137", - "codeCommune": "17153", - "libelleAcheminement": "ESNANDES", - "nomCommune": "ESNANDES" + "codePostal": "76590", + "codeCommune": "76397", + "libelleAcheminement": "LONGUEVILLE SUR SCIE", + "nomCommune": "LONGUEVILLE SUR SCIE" }, { - "codePostal": "73550", - "codeCommune": "73015", - "libelleAcheminement": "LES ALLUES", - "nomCommune": "LES ALLUES" + "codePostal": "24560", + "codeCommune": "24176", + "libelleAcheminement": "FAURILLES", + "nomCommune": "FAURILLES" }, { - "codePostal": "74740", - "codeCommune": "74273", - "libelleAcheminement": "SIXT FER A CHEVAL", - "nomCommune": "SIXT FER A CHEVAL" + "codePostal": "76440", + "codeCommune": "76393", + "libelleAcheminement": "LONGMESNIL", + "nomCommune": "LONGMESNIL" }, { - "codePostal": "50290", - "codeCommune": "50085", - "libelleAcheminement": "BRICQUEVILLE SUR MER", - "nomCommune": "BRICQUEVILLE SUR MER" + "codePostal": "62690", + "codeCommune": "62856", + "libelleAcheminement": "VILLERS BRULIN", + "nomCommune": "VILLERS BRULIN" }, { - "codePostal": "17510", - "codeCommune": "17162", - "libelleAcheminement": "FONTAINE CHALENDRAY", - "nomCommune": "FONTAINE CHALENDRAY" + "codePostal": "64160", + "codeCommune": "64488", + "libelleAcheminement": "ST LAURENT BRETAGNE", + "nomCommune": "ST LAURENT BRETAGNE" }, { - "codePostal": "73190", - "codeCommune": "73017", - "libelleAcheminement": "APREMONT", - "nomCommune": "APREMONT" + "codePostal": "76490", + "codeCommune": "76398", + "libelleAcheminement": "LOUVETOT", + "nomCommune": "LOUVETOT" }, { - "codePostal": "74440", - "codeCommune": "74276", - "libelleAcheminement": "TANINGES", - "nomCommune": "TANINGES" + "codePostal": "24450", + "codeCommune": "24180", + "libelleAcheminement": "FIRBEIX", + "nomCommune": "FIRBEIX" }, { - "codePostal": "50700", - "codeCommune": "50087", - "libelleAcheminement": "BRIX", - "nomCommune": "BRIX" + "codePostal": "76440", + "codeCommune": "76420", + "libelleAcheminement": "MAUQUENCHY", + "nomCommune": "MAUQUENCHY" }, { - "codePostal": "17260", - "codeCommune": "17172", - "libelleAcheminement": "GEMOZAC", - "nomCommune": "GEMOZAC" + "codePostal": "62580", + "codeCommune": "62861", + "libelleAcheminement": "VIMY", + "nomCommune": "VIMY" }, { - "codePostal": "73800", - "codeCommune": "73018", - "libelleAcheminement": "ARBIN", - "nomCommune": "ARBIN" + "codePostal": "64990", + "codeCommune": "64496", + "libelleAcheminement": "ST PIERRE D IRUBE", + "nomCommune": "ST PIERRE D IRUBE" }, { - "codePostal": "74150", - "codeCommune": "74283", - "libelleAcheminement": "THUSY", - "nomCommune": "THUSY" + "codePostal": "76270", + "codeCommune": "76399", + "libelleAcheminement": "LUCY", + "nomCommune": "LUCY" }, { - "codePostal": "50640", - "codeCommune": "50090", - "libelleAcheminement": "BUAIS LES MONTS", - "nomCommune": "BUAIS LES MONTS" + "codePostal": "24210", + "codeCommune": "24188", + "libelleAcheminement": "FOSSEMAGNE", + "nomCommune": "FOSSEMAGNE" }, { - "codePostal": "17120", - "codeCommune": "17183", - "libelleAcheminement": "GREZAC", - "nomCommune": "GREZAC" + "codePostal": "76220", + "codeCommune": "76423", + "libelleAcheminement": "MENERVAL", + "nomCommune": "MENERVAL" }, { - "codePostal": "73500", - "codeCommune": "73023", - "libelleAcheminement": "AUSSOIS", - "nomCommune": "AUSSOIS" + "codePostal": "62490", + "codeCommune": "62865", + "libelleAcheminement": "VITRY EN ARTOIS", + "nomCommune": "VITRY EN ARTOIS" }, { - "codePostal": "74250", - "codeCommune": "74284", - "libelleAcheminement": "LA TOUR", - "nomCommune": "LA TOUR" + "codePostal": "64300", + "codeCommune": "64505", + "libelleAcheminement": "SARPOURENX", + "nomCommune": "SARPOURENX" }, { - "codePostal": "50210", - "codeCommune": "50094", - "libelleAcheminement": "CAMPROND", - "nomCommune": "CAMPROND" + "codePostal": "76810", + "codeCommune": "76400", + "libelleAcheminement": "LUNERAY", + "nomCommune": "LUNERAY" }, { - "codePostal": "17600", - "codeCommune": "17185", - "libelleAcheminement": "LE GUA", - "nomCommune": "LE GUA" + "codePostal": "24130", + "codeCommune": "24191", + "libelleAcheminement": "FRAISSE", + "nomCommune": "FRAISSE" }, { - "codePostal": "73540", - "codeCommune": "73032", - "libelleAcheminement": "LA BATHIE", - "nomCommune": "LA BATHIE" + "codePostal": "76110", + "codeCommune": "76425", + "libelleAcheminement": "MENTHEVILLE", + "nomCommune": "MENTHEVILLE" }, { - "codePostal": "74150", - "codeCommune": "74289", - "libelleAcheminement": "VALLIERES SUR FIER", - "nomCommune": "VALLIERES SUR FIER" + "codePostal": "62180", + "codeCommune": "62866", + "libelleAcheminement": "WABEN", + "nomCommune": "WABEN" }, { - "codePostal": "50750", - "codeCommune": "50095", - "libelleAcheminement": "CANISY", - "nomCommune": "CANISY" + "codePostal": "64300", + "codeCommune": "64510", + "libelleAcheminement": "SAULT DE NAVAILLES", + "nomCommune": "SAULT DE NAVAILLES" }, { - "codePostal": "17220", - "codeCommune": "17193", - "libelleAcheminement": "LA JARNE", - "nomCommune": "LA JARNE" + "codePostal": "76940", + "codeCommune": "76401", + "libelleAcheminement": "ARELAUNE EN SEINE", + "nomCommune": "ARELAUNE EN SEINE" }, { - "codePostal": "73270", - "codeCommune": "73034", - "libelleAcheminement": "BEAUFORT SUR DORON", - "nomCommune": "BEAUFORT" + "codePostal": "24540", + "codeCommune": "24195", + "libelleAcheminement": "GAUGEAC", + "nomCommune": "GAUGEAC" }, { - "codePostal": "74150", - "codeCommune": "74289", - "libelleAcheminement": "VALLIERES SUR FIER", - "nomCommune": "VALLIERES SUR FIER" + "codePostal": "76780", + "codeCommune": "76455", + "libelleAcheminement": "MORVILLE SUR ANDELLE", + "nomCommune": "MORVILLE SUR ANDELLE" }, { - "codePostal": "50500", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "62140", + "codeCommune": "62871", + "libelleAcheminement": "WAMBERCOURT", + "nomCommune": "WAMBERCOURT" }, { - "codePostal": "17500", - "codeCommune": "17197", - "libelleAcheminement": "JONZAC", - "nomCommune": "JONZAC" + "codePostal": "64320", + "codeCommune": "64518", + "libelleAcheminement": "SENDETS", + "nomCommune": "SENDETS" }, { - "codePostal": "73730", - "codeCommune": "73063", - "libelleAcheminement": "CEVINS", - "nomCommune": "CEVINS" + "codePostal": "76770", + "codeCommune": "76402", + "libelleAcheminement": "MALAUNAY", + "nomCommune": "MALAUNAY" }, { - "codePostal": "74440", - "codeCommune": "74294", - "libelleAcheminement": "VERCHAIX", - "nomCommune": "VERCHAIX" + "codePostal": "24130", + "codeCommune": "24197", + "libelleAcheminement": "GINESTET", + "nomCommune": "GINESTET" }, { - "codePostal": "50500", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "76340", + "codeCommune": "76460", + "libelleAcheminement": "NESLE NORMANDEUSE", + "nomCommune": "NESLE NORMANDEUSE" }, { - "codePostal": "17170", - "codeCommune": "17201", - "libelleAcheminement": "LA LAIGNE", - "nomCommune": "LA LAIGNE" + "codePostal": "62128", + "codeCommune": "62873", + "libelleAcheminement": "WANCOURT", + "nomCommune": "WANCOURT" }, { - "codePostal": "73660", - "codeCommune": "73074", - "libelleAcheminement": "LA CHAPELLE", - "nomCommune": "LA CHAPELLE" + "codePostal": "64160", + "codeCommune": "64520", + "libelleAcheminement": "SERRES MORLAAS", + "nomCommune": "SERRES MORLAAS" }, { - "codePostal": "74420", - "codeCommune": "74301", - "libelleAcheminement": "VILLARD", - "nomCommune": "VILLARD" + "codePostal": "76450", + "codeCommune": "76403", + "libelleAcheminement": "MALLEVILLE LES GRES", + "nomCommune": "MALLEVILLE LES GRES" }, { - "codePostal": "50500", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "24390", + "codeCommune": "24202", + "libelleAcheminement": "GRANGES D ANS", + "nomCommune": "GRANGES D ANS" }, { - "codePostal": "17600", - "codeCommune": "17214", - "libelleAcheminement": "LUCHAT", - "nomCommune": "LUCHAT" + "codePostal": "76780", + "codeCommune": "76469", + "libelleAcheminement": "NOLLEVAL", + "nomCommune": "NOLLEVAL" }, { - "codePostal": "73110", - "codeCommune": "73075", - "libelleAcheminement": "LA CHAPELLE BLANCHE", - "nomCommune": "LA CHAPELLE BLANCHE" + "codePostal": "62120", + "codeCommune": "62875", + "libelleAcheminement": "WARDRECQUES", + "nomCommune": "WARDRECQUES" }, { - "codePostal": "74370", - "codeCommune": "74303", - "libelleAcheminement": "VILLAZ", - "nomCommune": "VILLAZ" + "codePostal": "64350", + "codeCommune": "64524", + "libelleAcheminement": "SIMACOURBE", + "nomCommune": "SIMACOURBE" }, { - "codePostal": "50500", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "76270", + "codeCommune": "76415", + "libelleAcheminement": "MASSY", + "nomCommune": "MASSY" }, { - "codePostal": "17500", - "codeCommune": "17215", - "libelleAcheminement": "LUSSAC", - "nomCommune": "LUSSAC" + "codePostal": "24400", + "codeCommune": "24211", + "libelleAcheminement": "ISSAC", + "nomCommune": "ISSAC" }, { - "codePostal": "73170", - "codeCommune": "73078", - "libelleAcheminement": "LA CHAPELLE ST MARTIN", - "nomCommune": "LA CHAPELLE ST MARTIN" + "codePostal": "76960", + "codeCommune": "76474", + "libelleAcheminement": "NOTRE DAME DE BONDEVILLE", + "nomCommune": "NOTRE DAME DE BONDEVILLE" }, { - "codePostal": "74350", - "codeCommune": "74306", - "libelleAcheminement": "VILLY LE BOUVERET", - "nomCommune": "VILLY LE BOUVERET" + "codePostal": "62390", + "codeCommune": "62881", + "libelleAcheminement": "BEAUVOIR WAVANS", + "nomCommune": "BEAUVOIR WAVANS" }, { - "codePostal": "50320", - "codeCommune": "50115", - "libelleAcheminement": "LE GRIPPON", - "nomCommune": "LE GRIPPON" + "codePostal": "64330", + "codeCommune": "64534", + "libelleAcheminement": "TARON SADIRAC VIELLENAVE", + "nomCommune": "TARON SADIRAC VIELLENAVE" }, { - "codePostal": "17132", - "codeCommune": "17230", - "libelleAcheminement": "MESCHERS SUR GIRONDE", - "nomCommune": "MESCHERS SUR GIRONDE" + "codePostal": "76680", + "codeCommune": "76416", + "libelleAcheminement": "MATHONVILLE", + "nomCommune": "MATHONVILLE" }, { - "codePostal": "73400", - "codeCommune": "73088", - "libelleAcheminement": "COHENNOZ", - "nomCommune": "COHENNOZ" + "codePostal": "24380", + "codeCommune": "24220", + "libelleAcheminement": "LACROPTE", + "nomCommune": "LACROPTE" }, { - "codePostal": "75004", - "codeCommune": "75104", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 04" + "codePostal": "76390", + "codeCommune": "76479", + "libelleAcheminement": "NULLEMONT", + "nomCommune": "NULLEMONT" }, { - "codePostal": "50800", - "codeCommune": "50118", - "libelleAcheminement": "CHAMPREPUS", - "nomCommune": "CHAMPREPUS" + "codePostal": "62650", + "codeCommune": "62886", + "libelleAcheminement": "WICQUINGHEM", + "nomCommune": "WICQUINGHEM" }, { - "codePostal": "17150", - "codeCommune": "17236", - "libelleAcheminement": "MIRAMBEAU", - "nomCommune": "MIRAMBEAU" + "codePostal": "64470", + "codeCommune": "64537", + "libelleAcheminement": "TROIS VILLES", + "nomCommune": "TROIS VILLES" }, { - "codePostal": "73190", - "codeCommune": "73097", - "libelleAcheminement": "CURIENNE", - "nomCommune": "CURIENNE" + "codePostal": "76240", + "codeCommune": "76429", + "libelleAcheminement": "LE MESNIL ESNARD", + "nomCommune": "LE MESNIL ESNARD" }, { - "codePostal": "75007", - "codeCommune": "75107", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 07" + "codePostal": "24130", + "codeCommune": "24222", + "libelleAcheminement": "LA FORCE", + "nomCommune": "LA FORCE" }, { - "codePostal": "50510", - "codeCommune": "50120", - "libelleAcheminement": "CHANTELOUP", - "nomCommune": "CHANTELOUP" + "codePostal": "76450", + "codeCommune": "76480", + "libelleAcheminement": "OCQUEVILLE", + "nomCommune": "OCQUEVILLE" }, { - "codePostal": "17130", - "codeCommune": "17240", - "libelleAcheminement": "MONTENDRE", - "nomCommune": "MONTENDRE" + "codePostal": "62830", + "codeCommune": "62888", + "libelleAcheminement": "WIERRE AU BOIS", + "nomCommune": "WIERRE AU BOIS" }, { - "codePostal": "73230", - "codeCommune": "73098", - "libelleAcheminement": "LES DESERTS", - "nomCommune": "LES DESERTS" + "codePostal": "64700", + "codeCommune": "64545", + "libelleAcheminement": "URRUGNE", + "nomCommune": "URRUGNE" }, { - "codePostal": "75011", - "codeCommune": "75111", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 11" + "codePostal": "76210", + "codeCommune": "76439", + "libelleAcheminement": "MIRVILLE", + "nomCommune": "MIRVILLE" }, { - "codePostal": "50110", - "codeCommune": "50129", - "libelleAcheminement": "CHERBOURG EN COTENTIN", - "nomCommune": "CHERBOURG EN COTENTIN" + "codePostal": "24150", + "codeCommune": "24223", + "libelleAcheminement": "LALINDE", + "nomCommune": "LALINDE" }, { - "codePostal": "17130", - "codeCommune": "17240", - "libelleAcheminement": "MONTENDRE", - "nomCommune": "MONTENDRE" + "codePostal": "76450", + "codeCommune": "76488", + "libelleAcheminement": "OUAINVILLE", + "nomCommune": "OUAINVILLE" }, { - "codePostal": "73330", - "codeCommune": "73100", - "libelleAcheminement": "DOMESSIN", - "nomCommune": "DOMESSIN" + "codePostal": "62240", + "codeCommune": "62896", + "libelleAcheminement": "WIRWIGNES", + "nomCommune": "WIRWIGNES" }, { - "codePostal": "75015", - "codeCommune": "75115", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 15" + "codePostal": "64480", + "codeCommune": "64547", + "libelleAcheminement": "USTARITZ", + "nomCommune": "USTARITZ" }, { - "codePostal": "50800", - "codeCommune": "50130", - "libelleAcheminement": "CHERENCE LE HERON", - "nomCommune": "CHERENCE LE HERON" + "codePostal": "76340", + "codeCommune": "76441", + "libelleAcheminement": "MONCHAUX SORENG", + "nomCommune": "MONCHAUX SORENG" }, { - "codePostal": "17800", - "codeCommune": "17242", - "libelleAcheminement": "MONTILS", - "nomCommune": "MONTILS" + "codePostal": "24230", + "codeCommune": "24226", + "libelleAcheminement": "LAMOTHE MONTRAVEL", + "nomCommune": "LAMOTHE MONTRAVEL" }, { - "codePostal": "73360", - "codeCommune": "73105", - "libelleAcheminement": "LES ECHELLES", - "nomCommune": "LES ECHELLES" + "codePostal": "76860", + "codeCommune": "76492", + "libelleAcheminement": "OUVILLE LA RIVIERE", + "nomCommune": "OUVILLE LA RIVIERE" }, { - "codePostal": "75116", - "codeCommune": "75116", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 16" + "codePostal": "62380", + "codeCommune": "62897", + "libelleAcheminement": "WISMES", + "nomCommune": "WISMES" }, { - "codePostal": "50700", - "codeCommune": "50138", - "libelleAcheminement": "COLOMBY", - "nomCommune": "COLOMBY" + "codePostal": "64370", + "codeCommune": "64548", + "libelleAcheminement": "UZAN", + "nomCommune": "UZAN" }, { - "codePostal": "17210", - "codeCommune": "17243", - "libelleAcheminement": "MONTLIEU LA GARDE", - "nomCommune": "MONTLIEU LA GARDE" + "codePostal": "76690", + "codeCommune": "76443", + "libelleAcheminement": "MONT CAUVAIRE", + "nomCommune": "MONT CAUVAIRE" }, { - "codePostal": "73540", - "codeCommune": "73110", - "libelleAcheminement": "ESSERTS BLAY", - "nomCommune": "ESSERTS BLAY" + "codePostal": "24570", + "codeCommune": "24229", + "libelleAcheminement": "LE LARDIN ST LAZARE", + "nomCommune": "LE LARDIN ST LAZARE" }, { - "codePostal": "75020", - "codeCommune": "75120", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 20" + "codePostal": "76650", + "codeCommune": "76497", + "libelleAcheminement": "PETIT COURONNE", + "nomCommune": "PETIT COURONNE" }, { - "codePostal": "50220", - "codeCommune": "50146", - "libelleAcheminement": "COURTILS", - "nomCommune": "COURTILS" + "codePostal": "62890", + "codeCommune": "62904", + "libelleAcheminement": "ZOUAFQUES", + "nomCommune": "ZOUAFQUES" }, { - "codePostal": "17260", - "codeCommune": "17244", - "libelleAcheminement": "MONTPELLIER DE MEDILLAN", - "nomCommune": "MONTPELLIER DE MEDILLAN" + "codePostal": "64110", + "codeCommune": "64550", + "libelleAcheminement": "UZOS", + "nomCommune": "UZOS" }, { - "codePostal": "73350", - "codeCommune": "73113", - "libelleAcheminement": "FEISSONS SUR SALINS", - "nomCommune": "FEISSONS SUR SALINS" + "codePostal": "76680", + "codeCommune": "76445", + "libelleAcheminement": "MONTEROLIER", + "nomCommune": "MONTEROLIER" }, { - "codePostal": "76190", - "codeCommune": "76001", - "libelleAcheminement": "ALLOUVILLE BELLEFOSSE", - "nomCommune": "ALLOUVILLE BELLEFOSSE" + "codePostal": "24520", + "codeCommune": "24242", + "libelleAcheminement": "LIORAC SUR LOUYRE", + "nomCommune": "LIORAC SUR LOUYRE" }, { - "codePostal": "50200", - "codeCommune": "50147", - "libelleAcheminement": "COUTANCES", - "nomCommune": "COUTANCES" + "codePostal": "76460", + "codeCommune": "76504", + "libelleAcheminement": "PLEINE SEVE", + "nomCommune": "PLEINE SEVE" }, { - "codePostal": "17430", - "codeCommune": "17246", - "libelleAcheminement": "MORAGNE", - "nomCommune": "MORAGNE" + "codePostal": "63600", + "codeCommune": "63003", + "libelleAcheminement": "AMBERT", + "nomCommune": "AMBERT" }, { - "codePostal": "73590", - "codeCommune": "73123", - "libelleAcheminement": "LA GIETTAZ", - "nomCommune": "LA GIETTAZ" + "codePostal": "64330", + "codeCommune": "64552", + "libelleAcheminement": "VIALER", + "nomCommune": "VIALER" }, { - "codePostal": "76560", - "codeCommune": "76006", - "libelleAcheminement": "AMFREVILLE LES CHAMPS", - "nomCommune": "AMFREVILLE LES CHAMPS" + "codePostal": "76520", + "codeCommune": "76448", + "libelleAcheminement": "MONTMAIN", + "nomCommune": "MONTMAIN" }, { - "codePostal": "50360", - "codeCommune": "50156", - "libelleAcheminement": "CROSVILLE SUR DOUVE", - "nomCommune": "CROSVILLE SUR DOUVE" + "codePostal": "24350", + "codeCommune": "24243", + "libelleAcheminement": "LISLE", + "nomCommune": "LISLE" }, { - "codePostal": "17113", - "codeCommune": "17247", - "libelleAcheminement": "MORNAC SUR SEUDRE", - "nomCommune": "MORNAC SUR SEUDRE" + "codePostal": "76660", + "codeCommune": "76512", + "libelleAcheminement": "PUISENVAL", + "nomCommune": "PUISENVAL" }, { - "codePostal": "73100", - "codeCommune": "73128", - "libelleAcheminement": "GRESY SUR AIX", - "nomCommune": "GRESY SUR AIX" + "codePostal": "63340", + "codeCommune": "63005", + "libelleAcheminement": "ANTOINGT", + "nomCommune": "ANTOINGT" }, { - "codePostal": "76590", - "codeCommune": "76019", - "libelleAcheminement": "ANNEVILLE SUR SCIE", - "nomCommune": "ANNEVILLE SUR SCIE" + "codePostal": "64410", + "codeCommune": "64557", + "libelleAcheminement": "VIGNES", + "nomCommune": "VIGNES" }, { - "codePostal": "50750", - "codeCommune": "50159", - "libelleAcheminement": "DANGY", - "nomCommune": "DANGY" + "codePostal": "76850", + "codeCommune": "76449", + "libelleAcheminement": "MONTREUIL EN CAUX", + "nomCommune": "MONTREUIL EN CAUX" }, { - "codePostal": "17500", - "codeCommune": "17259", - "libelleAcheminement": "NEULLES", - "nomCommune": "NEULLES" + "codePostal": "24300", + "codeCommune": "24248", + "libelleAcheminement": "LUSSAS ET NONTRONNEAU", + "nomCommune": "LUSSAS ET NONTRONNEAU" }, { - "codePostal": "73390", - "codeCommune": "73133", - "libelleAcheminement": "HAUTEVILLE", - "nomCommune": "HAUTEVILLE" + "codePostal": "76270", + "codeCommune": "76516", + "libelleAcheminement": "QUIEVRECOURT", + "nomCommune": "QUIEVRECOURT" }, { - "codePostal": "76340", - "codeCommune": "76029", - "libelleAcheminement": "AUBERMESNIL AUX ERABLES", - "nomCommune": "AUBERMESNIL AUX ERABLES" + "codePostal": "63250", + "codeCommune": "63008", + "libelleAcheminement": "ARCONSAT", + "nomCommune": "ARCONSAT" }, { - "codePostal": "50420", - "codeCommune": "50164", - "libelleAcheminement": "DOMJEAN", - "nomCommune": "DOMJEAN" + "codePostal": "65240", + "codeCommune": "65003", + "libelleAcheminement": "ADERVIELLE POUCHERGUES", + "nomCommune": "ADERVIELLE POUCHERGUES" }, { - "codePostal": "17810", - "codeCommune": "17262", - "libelleAcheminement": "NIEUL LES SAINTES", - "nomCommune": "NIEUL LES SAINTES" + "codePostal": "76130", + "codeCommune": "76451", + "libelleAcheminement": "MONT ST AIGNAN", + "nomCommune": "MONT ST AIGNAN" }, { - "codePostal": "73300", - "codeCommune": "73135", - "libelleAcheminement": "LA TOUR EN MAURIENNE", - "nomCommune": "LA TOUR EN MAURIENNE" + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { - "codePostal": "76520", - "codeCommune": "76039", - "libelleAcheminement": "LES AUTHIEUX SUR LE PORT ST OUEN", - "nomCommune": "LES AUTHIEUX SUR LE PORT ST OUEN" + "codePostal": "76340", + "codeCommune": "76520", + "libelleAcheminement": "REALCAMP", + "nomCommune": "REALCAMP" }, { - "codePostal": "50350", - "codeCommune": "50165", - "libelleAcheminement": "DONVILLE LES BAINS", - "nomCommune": "DONVILLE LES BAINS" + "codePostal": "63220", + "codeCommune": "63010", + "libelleAcheminement": "ARLANC", + "nomCommune": "ARLANC" }, { - "codePostal": "17137", - "codeCommune": "17264", - "libelleAcheminement": "NIEUL SUR MER", - "nomCommune": "NIEUL SUR MER" + "codePostal": "65360", + "codeCommune": "65005", + "libelleAcheminement": "ALLIER", + "nomCommune": "ALLIER" }, { - "codePostal": "73300", - "codeCommune": "73138", - "libelleAcheminement": "JARRIER", - "nomCommune": "JARRIER" + "codePostal": "76330", + "codeCommune": "76476", + "libelleAcheminement": "PORT JEROME SUR SEINE", + "nomCommune": "PORT JEROME SUR SEINE" }, { - "codePostal": "76190", - "codeCommune": "76041", - "libelleAcheminement": "LES HAUTS DE CAUX", - "nomCommune": "LES HAUTS DE CAUX" + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { - "codePostal": "50250", - "codeCommune": "50166", - "libelleAcheminement": "DOVILLE", - "nomCommune": "DOVILLE" + "codePostal": "76560", + "codeCommune": "76530", + "libelleAcheminement": "ROBERTOT", + "nomCommune": "ROBERTOT" }, { - "codePostal": "17137", - "codeCommune": "17264", - "libelleAcheminement": "NIEUL SUR MER", - "nomCommune": "NIEUL SUR MER" + "codePostal": "63260", + "codeCommune": "63013", + "libelleAcheminement": "AUBIAT", + "nomCommune": "AUBIAT" }, { - "codePostal": "73210", - "codeCommune": "73142", - "libelleAcheminement": "LANDRY", - "nomCommune": "LANDRY" + "codePostal": "65440", + "codeCommune": "65006", + "libelleAcheminement": "ANCIZAN", + "nomCommune": "ANCIZAN" }, { - "codePostal": "76630", - "codeCommune": "76049", - "libelleAcheminement": "AVESNES EN VAL", - "nomCommune": "AVESNES EN VAL" + "codePostal": "76133", + "codeCommune": "76477", + "libelleAcheminement": "NOTRE DAME DU BEC", + "nomCommune": "NOTRE DAME DU BEC" }, { - "codePostal": "50220", - "codeCommune": "50168", - "libelleAcheminement": "DUCEY LES CHERIS", - "nomCommune": "DUCEY LES CHERIS" + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { - "codePostal": "17130", - "codeCommune": "17282", - "libelleAcheminement": "POMMIERS MOULONS", - "nomCommune": "POMMIERS MOULONS" + "codePostal": "76640", + "codeCommune": "76531", + "libelleAcheminement": "ROCQUEFORT", + "nomCommune": "ROCQUEFORT" }, { - "codePostal": "73610", - "codeCommune": "73145", - "libelleAcheminement": "LEPIN LE LAC", - "nomCommune": "LEPIN LE LAC" + "codePostal": "63170", + "codeCommune": "63014", + "libelleAcheminement": "AUBIERE", + "nomCommune": "AUBIERE" }, { - "codePostal": "76870", - "codeCommune": "76065", - "libelleAcheminement": "BEAUSSAULT", - "nomCommune": "BEAUSSAULT" + "codePostal": "65200", + "codeCommune": "65016", + "libelleAcheminement": "ANTIST", + "nomCommune": "ANTIST" }, { - "codePostal": "50310", - "codeCommune": "50169", - "libelleAcheminement": "ECAUSSEVILLE", - "nomCommune": "ECAUSSEVILLE" + "codePostal": "76590", + "codeCommune": "76478", + "libelleAcheminement": "NOTRE DAME DU PARC", + "nomCommune": "NOTRE DAME DU PARC" }, { - "codePostal": "17800", - "codeCommune": "17283", - "libelleAcheminement": "PONS", - "nomCommune": "PONS" + "codePostal": "24130", + "codeCommune": "24259", + "libelleAcheminement": "EYRAUD CREMPSE MAURENS", + "nomCommune": "EYRAUD CREMPSE MAURENS" }, { - "codePostal": "73210", - "codeCommune": "73150", - "libelleAcheminement": "LA PLAGNE TARENTAISE", - "nomCommune": "LA PLAGNE TARENTAISE" + "codePostal": "76690", + "codeCommune": "76547", + "libelleAcheminement": "LA RUE ST PIERRE", + "nomCommune": "LA RUE ST PIERRE" }, { - "codePostal": "76220", - "codeCommune": "76067", - "libelleAcheminement": "BEAUVOIR EN LYONS", - "nomCommune": "BEAUVOIR EN LYONS" + "codePostal": "63930", + "codeCommune": "63016", + "libelleAcheminement": "AUGEROLLES", + "nomCommune": "AUGEROLLES" }, { - "codePostal": "50320", - "codeCommune": "50174", - "libelleAcheminement": "EQUILLY", - "nomCommune": "EQUILLY" + "codePostal": "65100", + "codeCommune": "65020", + "libelleAcheminement": "ARCIZAC EZ ANGLES", + "nomCommune": "ARCIZAC EZ ANGLES" }, { - "codePostal": "17460", - "codeCommune": "17289", - "libelleAcheminement": "PREGUILLAC", - "nomCommune": "PREGUILLAC" + "codePostal": "76930", + "codeCommune": "76481", + "libelleAcheminement": "OCTEVILLE SUR MER", + "nomCommune": "OCTEVILLE SUR MER" }, { - "codePostal": "73800", - "codeCommune": "73151", - "libelleAcheminement": "PORTE DE SAVOIE", - "nomCommune": "PORTE DE SAVOIE" + "codePostal": "24140", + "codeCommune": "24259", + "libelleAcheminement": "EYRAUD CREMPSE MAURENS", + "nomCommune": "EYRAUD CREMPSE MAURENS" }, { - "codePostal": "76110", - "codeCommune": "76068", - "libelleAcheminement": "BEC DE MORTAGNE", - "nomCommune": "BEC DE MORTAGNE" + "codePostal": "76116", + "codeCommune": "76548", + "libelleAcheminement": "RY", + "nomCommune": "RY" }, { - "codePostal": "50800", - "codeCommune": "50185", - "libelleAcheminement": "FLEURY", - "nomCommune": "FLEURY" + "codePostal": "63110", + "codeCommune": "63032", + "libelleAcheminement": "BEAUMONT", + "nomCommune": "BEAUMONT" }, { - "codePostal": "17380", - "codeCommune": "17294", - "libelleAcheminement": "PUYROLLAND", - "nomCommune": "PUYROLLAND" + "codePostal": "65240", + "codeCommune": "65023", + "libelleAcheminement": "ARDENGOST", + "nomCommune": "ARDENGOST" }, { - "codePostal": "73470", - "codeCommune": "73152", - "libelleAcheminement": "MARCIEUX", - "nomCommune": "MARCIEUX" + "codePostal": "76760", + "codeCommune": "76491", + "libelleAcheminement": "OUVILLE L ABBAYE", + "nomCommune": "OUVILLE L ABBAYE" }, { - "codePostal": "76680", - "codeCommune": "76070", - "libelleAcheminement": "BELLENCOMBRE", - "nomCommune": "BELLENCOMBRE" + "codePostal": "24240", + "codeCommune": "24267", + "libelleAcheminement": "MESCOULES", + "nomCommune": "MESCOULES" }, { - "codePostal": "50310", - "codeCommune": "50194", - "libelleAcheminement": "FRESVILLE", - "nomCommune": "FRESVILLE" + "codePostal": "76690", + "codeCommune": "76555", + "libelleAcheminement": "ST ANDRE SUR CAILLY", + "nomCommune": "ST ANDRE SUR CAILLY" }, { - "codePostal": "17460", - "codeCommune": "17298", - "libelleAcheminement": "RIOUX", - "nomCommune": "RIOUX" + "codePostal": "63310", + "codeCommune": "63033", + "libelleAcheminement": "BEAUMONT LES RANDAN", + "nomCommune": "BEAUMONT LES RANDAN" }, { - "codePostal": "73000", - "codeCommune": "73160", - "libelleAcheminement": "MONTAGNOLE", - "nomCommune": "MONTAGNOLE" + "codePostal": "65400", + "codeCommune": "65025", + "libelleAcheminement": "ARGELES GAZOST", + "nomCommune": "ARGELES GAZOST" }, { - "codePostal": "76440", - "codeCommune": "76074", - "libelleAcheminement": "LA BELLIERE", - "nomCommune": "LA BELLIERE" + "codePostal": "76570", + "codeCommune": "76495", + "libelleAcheminement": "PAVILLY", + "nomCommune": "PAVILLY" }, { - "codePostal": "50150", - "codeCommune": "50195", - "libelleAcheminement": "GATHEMO", - "nomCommune": "GATHEMO" + "codePostal": "24480", + "codeCommune": "24273", + "libelleAcheminement": "MOLIERES", + "nomCommune": "MOLIERES" }, { - "codePostal": "17000", - "codeCommune": "17300", - "libelleAcheminement": "LA ROCHELLE", - "nomCommune": "LA ROCHELLE" + "codePostal": "76570", + "codeCommune": "76566", + "libelleAcheminement": "STE AUSTREBERTHE", + "nomCommune": "STE AUSTREBERTHE" }, { - "codePostal": "73800", - "codeCommune": "73171", - "libelleAcheminement": "MONTMELIAN", - "nomCommune": "MONTMELIAN" + "codePostal": "63116", + "codeCommune": "63034", + "libelleAcheminement": "BEAUREGARD L EVEQUE", + "nomCommune": "BEAUREGARD L EVEQUE" }, { - "codePostal": "76590", - "codeCommune": "76075", - "libelleAcheminement": "BELMESNIL", - "nomCommune": "BELMESNIL" + "codePostal": "65400", + "codeCommune": "65029", + "libelleAcheminement": "ARRAS EN LAVEDAN", + "nomCommune": "ARRAS EN LAVEDAN" }, { - "codePostal": "50190", - "codeCommune": "50210", - "libelleAcheminement": "GORGES", - "nomCommune": "GORGES" + "codePostal": "76680", + "codeCommune": "76506", + "libelleAcheminement": "POMMEREVAL", + "nomCommune": "POMMEREVAL" }, { - "codePostal": "17170", - "codeCommune": "17303", - "libelleAcheminement": "LA RONDE", - "nomCommune": "LA RONDE" + "codePostal": "24240", + "codeCommune": "24274", + "libelleAcheminement": "MONBAZILLAC", + "nomCommune": "MONBAZILLAC" }, { - "codePostal": "73470", - "codeCommune": "73184", - "libelleAcheminement": "NANCES", - "nomCommune": "NANCES" + "codePostal": "76750", + "codeCommune": "76571", + "libelleAcheminement": "STE CROIX SUR BUCHY", + "nomCommune": "STE CROIX SUR BUCHY" }, { - "codePostal": "76890", - "codeCommune": "76086", - "libelleAcheminement": "BERTRIMONT", - "nomCommune": "BERTRIMONT" + "codePostal": "63480", + "codeCommune": "63037", + "libelleAcheminement": "BERTIGNAT", + "nomCommune": "BERTIGNAT" }, { - "codePostal": "50560", - "codeCommune": "50215", - "libelleAcheminement": "GOUVILLE SUR MER", - "nomCommune": "GOUVILLE SUR MER" + "codePostal": "65240", + "codeCommune": "65046", + "libelleAcheminement": "AULON", + "nomCommune": "AULON" }, { - "codePostal": "17360", - "codeCommune": "17309", - "libelleAcheminement": "ST AIGULIN", - "nomCommune": "ST AIGULIN" + "codePostal": "76280", + "codeCommune": "76508", + "libelleAcheminement": "LA POTERIE CAP D ANTIFER", + "nomCommune": "LA POTERIE CAP D ANTIFER" }, { - "codePostal": "73260", - "codeCommune": "73187", - "libelleAcheminement": "LA LECHERE", - "nomCommune": "LA LECHERE" + "codePostal": "24130", + "codeCommune": "24277", + "libelleAcheminement": "MONFAUCON", + "nomCommune": "MONFAUCON" }, { - "codePostal": "76690", - "codeCommune": "76105", - "libelleAcheminement": "LE BOCASSE", - "nomCommune": "LE BOCASSE" + "codePostal": "76590", + "codeCommune": "76577", + "libelleAcheminement": "STE FOY", + "nomCommune": "STE FOY" }, { - "codePostal": "50400", - "codeCommune": "50218", - "libelleAcheminement": "GRANVILLE", - "nomCommune": "GRANVILLE" + "codePostal": "63610", + "codeCommune": "63038", + "libelleAcheminement": "BESSE ET ST ANASTAISE", + "nomCommune": "BESSE ET ST ANASTAISE" }, { - "codePostal": "17260", - "codeCommune": "17310", - "libelleAcheminement": "ST ANDRE DE LIDON", - "nomCommune": "ST ANDRE DE LIDON" + "codePostal": "65390", + "codeCommune": "65048", + "libelleAcheminement": "AURENSAN", + "nomCommune": "AURENSAN" }, { - "codePostal": "73260", - "codeCommune": "73187", - "libelleAcheminement": "LA LECHERE", - "nomCommune": "LA LECHERE" + "codePostal": "76660", + "codeCommune": "76511", + "libelleAcheminement": "PREUSEVILLE", + "nomCommune": "PREUSEVILLE" }, { - "codePostal": "76160", - "codeCommune": "76106", - "libelleAcheminement": "BOIS D ENNEBOURG", - "nomCommune": "BOIS D ENNEBOURG" + "codePostal": "24380", + "codeCommune": "24312", + "libelleAcheminement": "SANILHAC", + "nomCommune": "SANILHAC" }, { - "codePostal": "68580", - "codeCommune": "68340", - "libelleAcheminement": "UEBERSTRASS", - "nomCommune": "UEBERSTRASS" + "codePostal": "76440", + "codeCommune": "76578", + "libelleAcheminement": "STE GENEVIEVE", + "nomCommune": "STE GENEVIEVE" }, { - "codePostal": "17240", - "codeCommune": "17317", - "libelleAcheminement": "ST CIERS DU TAILLON", - "nomCommune": "ST CIERS DU TAILLON" + "codePostal": "63220", + "codeCommune": "63039", + "libelleAcheminement": "BEURIERES", + "nomCommune": "BEURIERES" }, { - "codePostal": "73350", - "codeCommune": "73201", - "libelleAcheminement": "PLANAY", - "nomCommune": "PLANAY" + "codePostal": "65660", + "codeCommune": "65051", + "libelleAcheminement": "AVENTIGNAN", + "nomCommune": "AVENTIGNAN" }, { "codePostal": "76520", - "codeCommune": "76116", - "libelleAcheminement": "BOOS", - "nomCommune": "BOOS" + "codeCommune": "76514", + "libelleAcheminement": "QUEVREVILLE LA POTERIE", + "nomCommune": "QUEVREVILLE LA POTERIE" }, { - "codePostal": "68320", - "codeCommune": "68345", - "libelleAcheminement": "URSCHENHEIM", - "nomCommune": "URSCHENHEIM" + "codePostal": "24750", + "codeCommune": "24312", + "libelleAcheminement": "SANILHAC", + "nomCommune": "SANILHAC" }, { - "codePostal": "17590", - "codeCommune": "17318", - "libelleAcheminement": "ST CLEMENT DES BALEINES", - "nomCommune": "ST CLEMENT DES BALEINES" + "codePostal": "76690", + "codeCommune": "76580", + "libelleAcheminement": "ST GEORGES SUR FONTAINE", + "nomCommune": "ST GEORGES SUR FONTAINE" }, { - "codePostal": "73110", - "codeCommune": "73215", - "libelleAcheminement": "VALGELON LA ROCHETTE", - "nomCommune": "VALGELON LA ROCHETTE" + "codePostal": "63160", + "codeCommune": "63044", + "libelleAcheminement": "BONGHEAT", + "nomCommune": "BONGHEAT" }, { - "codePostal": "76270", - "codeCommune": "76122", - "libelleAcheminement": "CALLENGEVILLE", - "nomCommune": "CALLENGEVILLE" + "codePostal": "65400", + "codeCommune": "65055", + "libelleAcheminement": "AYROS ARBOUIX", + "nomCommune": "AYROS ARBOUIX" }, { - "codePostal": "68800", - "codeCommune": "68348", - "libelleAcheminement": "VIEUX THANN", - "nomCommune": "VIEUX THANN" + "codePostal": "76750", + "codeCommune": "76521", + "libelleAcheminement": "REBETS", + "nomCommune": "REBETS" }, { - "codePostal": "17590", - "codeCommune": "17318", - "libelleAcheminement": "ST CLEMENT DES BALEINES", - "nomCommune": "ST CLEMENT DES BALEINES" + "codePostal": "24170", + "codeCommune": "24313", + "libelleAcheminement": "ORLIAC", + "nomCommune": "ORLIAC" }, { - "codePostal": "73110", - "codeCommune": "73217", - "libelleAcheminement": "ROTHERENS", - "nomCommune": "ROTHERENS" + "codePostal": "76700", + "codeCommune": "76596", + "libelleAcheminement": "ST LAURENT DE BREVEDENT", + "nomCommune": "ST LAURENT DE BREVEDENT" }, { - "codePostal": "76680", - "codeCommune": "76126", - "libelleAcheminement": "BOSC MESNIL", - "nomCommune": "BOSC MESNIL" + "codePostal": "63190", + "codeCommune": "63045", + "libelleAcheminement": "BORT L ETANG", + "nomCommune": "BORT L ETANG" }, { - "codePostal": "68128", - "codeCommune": "68349", - "libelleAcheminement": "VILLAGE NEUF", - "nomCommune": "VILLAGE NEUF" + "codePostal": "65360", + "codeCommune": "65063", + "libelleAcheminement": "BARBAZAN DESSUS", + "nomCommune": "BARBAZAN DESSUS" }, { - "codePostal": "17210", - "codeCommune": "17319", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "76430", + "codeCommune": "76522", + "libelleAcheminement": "LA REMUEE", + "nomCommune": "LA REMUEE" }, { - "codePostal": "73120", - "codeCommune": "73227", - "libelleAcheminement": "COURCHEVEL", - "nomCommune": "COURCHEVEL" + "codePostal": "24410", + "codeCommune": "24316", + "libelleAcheminement": "PARCOUL CHENAUD", + "nomCommune": "PARCOUL CHENAUD" }, { - "codePostal": "76450", - "codeCommune": "76128", - "libelleAcheminement": "BOSVILLE", - "nomCommune": "BOSVILLE" + "codePostal": "76280", + "codeCommune": "76609", + "libelleAcheminement": "STE MARIE AU BOSC", + "nomCommune": "STE MARIE AU BOSC" }, { - "codePostal": "68290", - "codeCommune": "68361", - "libelleAcheminement": "WEGSCHEID", - "nomCommune": "WEGSCHEID" + "codePostal": "63340", + "codeCommune": "63046", + "libelleAcheminement": "BOUDES", + "nomCommune": "BOUDES" }, { - "codePostal": "17430", - "codeCommune": "17320", - "libelleAcheminement": "ST COUTANT LE GRAND", - "nomCommune": "ST COUTANT LE GRAND" + "codePostal": "65380", + "codeCommune": "65067", + "libelleAcheminement": "BARRY", + "nomCommune": "BARRY" }, { - "codePostal": "73130", - "codeCommune": "73231", - "libelleAcheminement": "ST ETIENNE DE CUINES", - "nomCommune": "ST ETIENNE DE CUINES" + "codePostal": "76510", + "codeCommune": "76526", + "libelleAcheminement": "RICARVILLE DU VAL", + "nomCommune": "RICARVILLE DU VAL" }, { - "codePostal": "76760", - "codeCommune": "76132", - "libelleAcheminement": "BOURDAINVILLE", - "nomCommune": "BOURDAINVILLE" + "codePostal": "24590", + "codeCommune": "24317", + "libelleAcheminement": "PAULIN", + "nomCommune": "PAULIN" }, { - "codePostal": "68760", - "codeCommune": "68372", - "libelleAcheminement": "WILLER SUR THUR", - "nomCommune": "WILLER SUR THUR" + "codePostal": "76760", + "codeCommune": "76611", + "libelleAcheminement": "ST MARTIN AUX ARBRES", + "nomCommune": "ST MARTIN AUX ARBRES" }, { - "codePostal": "17170", - "codeCommune": "17322", - "libelleAcheminement": "ST CYR DU DORET", - "nomCommune": "ST CYR DU DORET" + "codePostal": "63340", + "codeCommune": "63052", + "libelleAcheminement": "LE BREUIL SUR COUZE", + "nomCommune": "LE BREUIL SUR COUZE" }, { - "codePostal": "73360", - "codeCommune": "73233", - "libelleAcheminement": "ST FRANC", - "nomCommune": "ST FRANC" + "codePostal": "65250", + "codeCommune": "65069", + "libelleAcheminement": "LA BARTHE DE NESTE", + "nomCommune": "LA BARTHE DE NESTE" }, { - "codePostal": "76740", - "codeCommune": "76134", - "libelleAcheminement": "BOURVILLE", - "nomCommune": "BOURVILLE" + "codePostal": "76390", + "codeCommune": "76527", + "libelleAcheminement": "RICHEMONT", + "nomCommune": "RICHEMONT" }, { - "codePostal": "68920", - "codeCommune": "68374", - "libelleAcheminement": "WINTZENHEIM", - "nomCommune": "WINTZENHEIM" + "codePostal": "24120", + "codeCommune": "24321", + "libelleAcheminement": "PAZAYAC", + "nomCommune": "PAZAYAC" }, { - "codePostal": "17650", - "codeCommune": "17323", - "libelleAcheminement": "ST DENIS D OLERON", - "nomCommune": "ST DENIS D OLERON" + "codePostal": "76450", + "codeCommune": "76613", + "libelleAcheminement": "ST MARTIN AUX BUNEAUX", + "nomCommune": "ST MARTIN AUX BUNEAUX" }, { - "codePostal": "73530", - "codeCommune": "73242", - "libelleAcheminement": "ST JEAN D ARVES", - "nomCommune": "ST JEAN D ARVES" + "codePostal": "63270", + "codeCommune": "63059", + "libelleAcheminement": "BUSSEOL", + "nomCommune": "BUSSEOL" }, { - "codePostal": "76750", - "codeCommune": "76146", - "libelleAcheminement": "BUCHY", - "nomCommune": "BUCHY" + "codePostal": "65100", + "codeCommune": "65070", + "libelleAcheminement": "BARTRES", + "nomCommune": "BARTRES" }, { - "codePostal": "69250", - "codeCommune": "69003", - "libelleAcheminement": "ALBIGNY SUR SAONE", - "nomCommune": "ALBIGNY SUR SAONE" + "codePostal": "76160", + "codeCommune": "76536", + "libelleAcheminement": "RONCHEROLLES SUR LE VIVIER", + "nomCommune": "RONCHEROLLES SUR LE VIVIER" }, { - "codePostal": "17780", - "codeCommune": "17329", - "libelleAcheminement": "ST FROULT", - "nomCommune": "ST FROULT" + "codePostal": "24000", + "codeCommune": "24322", + "libelleAcheminement": "PERIGUEUX", + "nomCommune": "PERIGUEUX" }, { - "codePostal": "73160", - "codeCommune": "73246", - "libelleAcheminement": "ST JEAN DE COUZ", - "nomCommune": "ST JEAN DE COUZ" + "codePostal": "76133", + "codeCommune": "76615", + "libelleAcheminement": "ST MARTIN DU BEC", + "nomCommune": "ST MARTIN DU BEC" }, { - "codePostal": "76750", - "codeCommune": "76146", - "libelleAcheminement": "BUCHY", - "nomCommune": "BUCHY" + "codePostal": "63520", + "codeCommune": "63065", + "libelleAcheminement": "CEILLOUX", + "nomCommune": "CEILLOUX" }, { - "codePostal": "69550", - "codeCommune": "69006", - "libelleAcheminement": "AMPLEPUIS", - "nomCommune": "AMPLEPUIS" + "codePostal": "65140", + "codeCommune": "65073", + "libelleAcheminement": "BAZILLAC", + "nomCommune": "BAZILLAC" }, { - "codePostal": "17110", - "codeCommune": "17333", - "libelleAcheminement": "ST GEORGES DE DIDONNE", - "nomCommune": "ST GEORGES DE DIDONNE" + "codePostal": "76390", + "codeCommune": "76537", + "libelleAcheminement": "RONCHOIS", + "nomCommune": "RONCHOIS" }, { - "codePostal": "73190", - "codeCommune": "73249", - "libelleAcheminement": "ST JEOIRE PRIEURE", - "nomCommune": "ST JEOIRE PRIEURE" + "codePostal": "24210", + "codeCommune": "24324", + "libelleAcheminement": "PEYRIGNAC", + "nomCommune": "PEYRIGNAC" }, { - "codePostal": "76380", - "codeCommune": "76157", - "libelleAcheminement": "CANTELEU", - "nomCommune": "CANTELEU" + "codePostal": "76370", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "69420", - "codeCommune": "69007", - "libelleAcheminement": "AMPUIS", - "nomCommune": "AMPUIS" + "codePostal": "63790", + "codeCommune": "63077", + "libelleAcheminement": "CHAMBON SUR LAC", + "nomCommune": "CHAMBON SUR LAC" }, { - "codePostal": "17700", - "codeCommune": "17340", - "libelleAcheminement": "ST PIERRE LA NOUE", - "nomCommune": "ST PIERRE LA NOUE" + "codePostal": "65130", + "codeCommune": "65081", + "libelleAcheminement": "BENQUE MOLERE", + "nomCommune": "BENQUE MOLERE" }, { - "codePostal": "73220", - "codeCommune": "73252", - "libelleAcheminement": "ST LEGER", - "nomCommune": "ST LEGER" + "codePostal": "76000", + "codeCommune": "76540", + "libelleAcheminement": "ROUEN", + "nomCommune": "ROUEN" }, { - "codePostal": "76450", - "codeCommune": "76159", - "libelleAcheminement": "CANY BARVILLE", - "nomCommune": "CANY BARVILLE" + "codePostal": "24370", + "codeCommune": "24325", + "libelleAcheminement": "PECHS DE L ESPERANCE", + "nomCommune": "PECHS DE L ESPERANCE" }, { - "codePostal": "69210", - "codeCommune": "69010", - "libelleAcheminement": "L ARBRESLE", - "nomCommune": "L ARBRESLE" + "codePostal": "76370", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "17620", - "codeCommune": "17348", - "libelleAcheminement": "ST JEAN D ANGLE", - "nomCommune": "ST JEAN D ANGLE" + "codePostal": "63420", + "codeCommune": "63087", + "libelleAcheminement": "LA CHAPELLE MARCOUSSE", + "nomCommune": "LA CHAPELLE MARCOUSSE" }, { - "codePostal": "73240", - "codeCommune": "73254", - "libelleAcheminement": "STE MARIE D ALVEY", - "nomCommune": "STE MARIE D ALVEY" + "codePostal": "65360", + "codeCommune": "65083", + "libelleAcheminement": "BERNAC DEBAT", + "nomCommune": "BERNAC DEBAT" }, { - "codePostal": "76116", - "codeCommune": "76163", - "libelleAcheminement": "CATENAY", - "nomCommune": "CATENAY" + "codePostal": "76210", + "codeCommune": "76543", + "libelleAcheminement": "ROUVILLE", + "nomCommune": "ROUVILLE" }, { - "codePostal": "69400", - "codeCommune": "69013", - "libelleAcheminement": "ARNAS", - "nomCommune": "ARNAS" + "codePostal": "24700", + "codeCommune": "24329", + "libelleAcheminement": "LE PIZOU", + "nomCommune": "LE PIZOU" }, { - "codePostal": "17170", - "codeCommune": "17349", - "libelleAcheminement": "ST JEAN DE LIVERSAY", - "nomCommune": "ST JEAN DE LIVERSAY" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "73440", - "codeCommune": "73257", - "libelleAcheminement": "LES BELLEVILLE", - "nomCommune": "LES BELLEVILLE" + "codePostal": "63720", + "codeCommune": "63089", + "libelleAcheminement": "CHAPPES", + "nomCommune": "CHAPPES" }, { - "codePostal": "76490", - "codeCommune": "76164", - "libelleAcheminement": "RIVES EN SEINE", - "nomCommune": "RIVES EN SEINE" + "codePostal": "65590", + "codeCommune": "65099", + "libelleAcheminement": "BORDERES LOURON", + "nomCommune": "BORDERES LOURON" }, { - "codePostal": "69620", - "codeCommune": "69017", - "libelleAcheminement": "BAGNOLS", - "nomCommune": "BAGNOLS" + "codePostal": "76440", + "codeCommune": "76544", + "libelleAcheminement": "ROUVRAY CATILLON", + "nomCommune": "ROUVRAY CATILLON" }, { - "codePostal": "17470", - "codeCommune": "17358", - "libelleAcheminement": "ST MANDE SUR BREDOIRE", - "nomCommune": "ST MANDE SUR BREDOIRE" + "codePostal": "24550", + "codeCommune": "24337", + "libelleAcheminement": "PRATS DU PERIGORD", + "nomCommune": "PRATS DU PERIGORD" }, { - "codePostal": "73440", - "codeCommune": "73257", - "libelleAcheminement": "LES BELLEVILLE", - "nomCommune": "LES BELLEVILLE" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "76490", - "codeCommune": "76164", - "libelleAcheminement": "RIVES EN SEINE", - "nomCommune": "RIVES EN SEINE" + "codePostal": "63410", + "codeCommune": "63092", + "libelleAcheminement": "CHARBONNIERES LES VARENNES", + "nomCommune": "CHARBONNIERES LES VARENNES" }, { - "codePostal": "69430", - "codeCommune": "69018", - "libelleAcheminement": "BEAUJEU", - "nomCommune": "BEAUJEU" + "codePostal": "65350", + "codeCommune": "65103", + "libelleAcheminement": "BOUILH PEREUILH", + "nomCommune": "BOUILH PEREUILH" }, { - "codePostal": "17500", - "codeCommune": "17372", - "libelleAcheminement": "ST MEDARD", - "nomCommune": "ST MEDARD" + "codePostal": "76370", + "codeCommune": "76545", + "libelleAcheminement": "ROUXMESNIL BOUTEILLES", + "nomCommune": "ROUXMESNIL BOUTEILLES" }, { - "codePostal": "73100", - "codeCommune": "73263", - "libelleAcheminement": "ST OFFENGE", - "nomCommune": "ST OFFENGE" + "codePostal": "24530", + "codeCommune": "24346", + "libelleAcheminement": "QUINSAC", + "nomCommune": "QUINSAC" }, { - "codePostal": "76450", - "codeCommune": "76180", - "libelleAcheminement": "CLEUVILLE", - "nomCommune": "CLEUVILLE" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "69430", - "codeCommune": "69018", - "libelleAcheminement": "BEAUJEU", - "nomCommune": "BEAUJEU" + "codePostal": "63140", + "codeCommune": "63103", + "libelleAcheminement": "CHATEL GUYON", + "nomCommune": "CHATEL GUYON" }, { - "codePostal": "17770", - "codeCommune": "17374", - "libelleAcheminement": "STE MEME", - "nomCommune": "STE MEME" + "codePostal": "65350", + "codeCommune": "65104", + "libelleAcheminement": "BOULIN", + "nomCommune": "BOULIN" }, { - "codePostal": "73170", - "codeCommune": "73269", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "76730", + "codeCommune": "76546", + "libelleAcheminement": "ROYVILLE", + "nomCommune": "ROYVILLE" }, { - "codePostal": "76910", - "codeCommune": "76192", - "libelleAcheminement": "CRIEL SUR MER", - "nomCommune": "CRIEL SUR MER" + "codePostal": "24490", + "codeCommune": "24354", + "libelleAcheminement": "LA ROCHE CHALAIS", + "nomCommune": "LA ROCHE CHALAIS" }, { - "codePostal": "69690", - "codeCommune": "69021", - "libelleAcheminement": "BESSENAY", - "nomCommune": "BESSENAY" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "17230", - "codeCommune": "17376", - "libelleAcheminement": "ST OUEN D AUNIS", - "nomCommune": "ST OUEN D AUNIS" + "codePostal": "63320", + "codeCommune": "63109", + "libelleAcheminement": "CHIDRAC", + "nomCommune": "CHIDRAC" }, { - "codePostal": "73250", - "codeCommune": "73270", - "libelleAcheminement": "ST PIERRE D ALBIGNY", - "nomCommune": "ST PIERRE D ALBIGNY" + "codePostal": "65170", + "codeCommune": "65117", + "libelleAcheminement": "CADEILHAN TRACHERE", + "nomCommune": "CADEILHAN TRACHERE" }, { "codePostal": "76660", - "codeCommune": "76202", - "libelleAcheminement": "CROIXDALLE", - "nomCommune": "CROIXDALLE" + "codeCommune": "76553", + "libelleAcheminement": "STE AGATHE D ALIERMONT", + "nomCommune": "STE AGATHE D ALIERMONT" }, { - "codePostal": "69690", - "codeCommune": "69021", - "libelleAcheminement": "BESSENAY", - "nomCommune": "BESSENAY" + "codePostal": "24490", + "codeCommune": "24354", + "libelleAcheminement": "LA ROCHE CHALAIS", + "nomCommune": "LA ROCHE CHALAIS" }, { - "codePostal": "17490", - "codeCommune": "17377", - "libelleAcheminement": "ST OUEN LA THENE", - "nomCommune": "ST OUEN LA THENE" + "codePostal": "76910", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "73360", - "codeCommune": "73275", - "libelleAcheminement": "ST PIERRE DE GENEBROZ", - "nomCommune": "ST PIERRE DE GENEBROZ" + "codePostal": "63114", + "codeCommune": "63121", + "libelleAcheminement": "COUDES", + "nomCommune": "COUDES" }, { - "codePostal": "76720", - "codeCommune": "76204", - "libelleAcheminement": "CROPUS", - "nomCommune": "CROPUS" + "codePostal": "65500", + "codeCommune": "65121", + "libelleAcheminement": "CAMALES", + "nomCommune": "CAMALES" }, { - "codePostal": "69690", - "codeCommune": "69022", - "libelleAcheminement": "BIBOST", - "nomCommune": "BIBOST" + "codePostal": "76490", + "codeCommune": "76557", + "libelleAcheminement": "ST ARNOULT", + "nomCommune": "ST ARNOULT" }, { - "codePostal": "17420", - "codeCommune": "17380", - "libelleAcheminement": "ST PALAIS SUR MER", - "nomCommune": "ST PALAIS SUR MER" + "codePostal": "24250", + "codeCommune": "24355", + "libelleAcheminement": "LA ROQUE GAGEAC", + "nomCommune": "LA ROQUE GAGEAC" + }, + { + "codePostal": "76440", + "codeCommune": "76623", + "libelleAcheminement": "ST MICHEL D HALESCOURT", + "nomCommune": "ST MICHEL D HALESCOURT" + }, + { + "codePostal": "63320", + "codeCommune": "63122", + "libelleAcheminement": "COURGOUL", + "nomCommune": "COURGOUL" }, { - "codePostal": "73160", - "codeCommune": "73281", - "libelleAcheminement": "ST SULPICE", - "nomCommune": "ST SULPICE" + "codePostal": "65710", + "codeCommune": "65123", + "libelleAcheminement": "CAMPAN", + "nomCommune": "CAMPAN" }, { - "codePostal": "76590", - "codeCommune": "76205", - "libelleAcheminement": "CROSVILLE SUR SCIE", - "nomCommune": "CROSVILLE SUR SCIE" + "codePostal": "76190", + "codeCommune": "76559", + "libelleAcheminement": "ST AUBIN DE CRETOT", + "nomCommune": "ST AUBIN DE CRETOT" }, { - "codePostal": "69620", - "codeCommune": "69024", - "libelleAcheminement": "VAL D OINGT", - "nomCommune": "VAL D OINGT" + "codePostal": "24580", + "codeCommune": "24356", + "libelleAcheminement": "ROUFFIGNAC ST CERNIN DE REILHAC", + "nomCommune": "ROUFFIGNAC ST CERNIN DE REILHAC" }, { - "codePostal": "17400", - "codeCommune": "17383", - "libelleAcheminement": "ST PIERRE DE JUILLERS", - "nomCommune": "ST PIERRE DE JUILLERS" + "codePostal": "76890", + "codeCommune": "76632", + "libelleAcheminement": "ST PIERRE BENOUVILLE", + "nomCommune": "ST PIERRE BENOUVILLE" }, { - "codePostal": "73310", - "codeCommune": "73286", - "libelleAcheminement": "SERRIERES EN CHAUTAGNE", - "nomCommune": "SERRIERES EN CHAUTAGNE" + "codePostal": "63490", + "codeCommune": "63145", + "libelleAcheminement": "EGLISENEUVE DES LIARDS", + "nomCommune": "EGLISENEUVE DES LIARDS" }, { - "codePostal": "76280", - "codeCommune": "76206", - "libelleAcheminement": "CUVERVILLE", - "nomCommune": "CUVERVILLE" + "codePostal": "65710", + "codeCommune": "65123", + "libelleAcheminement": "CAMPAN", + "nomCommune": "CAMPAN" }, { - "codePostal": "69126", - "codeCommune": "69028", - "libelleAcheminement": "BRINDAS", - "nomCommune": "BRINDAS" + "codePostal": "76410", + "codeCommune": "76561", + "libelleAcheminement": "ST AUBIN LES ELBEUF", + "nomCommune": "ST AUBIN LES ELBEUF" }, { - "codePostal": "17310", - "codeCommune": "17385", - "libelleAcheminement": "ST PIERRE D OLERON", - "nomCommune": "ST PIERRE D OLERON" + "codePostal": "24240", + "codeCommune": "24357", + "libelleAcheminement": "ROUFFIGNAC DE SIGOULES", + "nomCommune": "ROUFFIGNAC DE SIGOULES" }, { - "codePostal": "73110", - "codeCommune": "73316", - "libelleAcheminement": "VILLARD SALLET", - "nomCommune": "VILLARD SALLET" + "codePostal": "76480", + "codeCommune": "76636", + "libelleAcheminement": "ST PIERRE DE VARENGEVILLE", + "nomCommune": "ST PIERRE DE VARENGEVILLE" }, { - "codePostal": "76630", - "codeCommune": "76220", - "libelleAcheminement": "DOUVREND", - "nomCommune": "DOUVREND" + "codePostal": "63160", + "codeCommune": "63146", + "libelleAcheminement": "EGLISENEUVE PRES BILLOM", + "nomCommune": "EGLISENEUVE PRES BILLOM" }, { - "codePostal": "69210", - "codeCommune": "69032", - "libelleAcheminement": "BULLY", - "nomCommune": "BULLY" + "codePostal": "65300", + "codeCommune": "65125", + "libelleAcheminement": "CAMPISTROUS", + "nomCommune": "CAMPISTROUS" }, { - "codePostal": "17500", - "codeCommune": "17403", - "libelleAcheminement": "ST SIMON DE BORDES", - "nomCommune": "ST SIMON DE BORDES" + "codePostal": "76430", + "codeCommune": "76563", + "libelleAcheminement": "ST AUBIN ROUTOT", + "nomCommune": "ST AUBIN ROUTOT" }, { - "codePostal": "73500", - "codeCommune": "73322", - "libelleAcheminement": "VILLARODIN BOURGET", - "nomCommune": "VILLARODIN BOURGET" + "codePostal": "24380", + "codeCommune": "24362", + "libelleAcheminement": "VAL DE LOUYRE ET CAUDEAU", + "nomCommune": "VAL DE LOUYRE ET CAUDEAU" }, { - "codePostal": "76190", - "codeCommune": "76225", - "libelleAcheminement": "ECRETTEVILLE LES BAONS", - "nomCommune": "ECRETTEVILLE LES BAONS" + "codePostal": "76740", + "codeCommune": "76641", + "libelleAcheminement": "ST PIERRE LE VIEUX", + "nomCommune": "ST PIERRE LE VIEUX" }, { - "codePostal": "69590", - "codeCommune": "69042", - "libelleAcheminement": "LA CHAPELLE SUR COISE", - "nomCommune": "LA CHAPELLE SUR COISE" + "codePostal": "63520", + "codeCommune": "63155", + "libelleAcheminement": "ESTANDEUIL", + "nomCommune": "ESTANDEUIL" }, { - "codePostal": "17100", - "codeCommune": "17412", - "libelleAcheminement": "ST VAIZE", - "nomCommune": "ST VAIZE" + "codePostal": "65230", + "codeCommune": "65134", + "libelleAcheminement": "CASTERETS", + "nomCommune": "CASTERETS" }, { - "codePostal": "74360", - "codeCommune": "74001", - "libelleAcheminement": "ABONDANCE", - "nomCommune": "ABONDANCE" + "codePostal": "76550", + "codeCommune": "76565", + "libelleAcheminement": "ST AUBIN SUR SCIE", + "nomCommune": "ST AUBIN SUR SCIE" }, { - "codePostal": "76780", - "codeCommune": "76230", - "libelleAcheminement": "ELBEUF SUR ANDELLE", - "nomCommune": "ELBEUF SUR ANDELLE" + "codePostal": "24190", + "codeCommune": "24367", + "libelleAcheminement": "ST ANDRE DE DOUBLE", + "nomCommune": "ST ANDRE DE DOUBLE" }, { - "codePostal": "69630", - "codeCommune": "69043", - "libelleAcheminement": "CHAPONOST", - "nomCommune": "CHAPONOST" + "codePostal": "76740", + "codeCommune": "76642", + "libelleAcheminement": "ST PIERRE LE VIGER", + "nomCommune": "ST PIERRE LE VIGER" }, { - "codePostal": "17490", - "codeCommune": "17427", - "libelleAcheminement": "SIECQ", - "nomCommune": "SIECQ" + "codePostal": "63620", + "codeCommune": "63159", + "libelleAcheminement": "FERNOEL", + "nomCommune": "FERNOEL" }, { - "codePostal": "74350", - "codeCommune": "74006", - "libelleAcheminement": "ALLONZIER LA CAILLE", - "nomCommune": "ALLONZIER LA CAILLE" + "codePostal": "65130", + "codeCommune": "65135", + "libelleAcheminement": "CASTILLON", + "nomCommune": "CASTILLON" }, { - "codePostal": "76740", - "codeCommune": "76241", - "libelleAcheminement": "ERMENOUVILLE", - "nomCommune": "ERMENOUVILLE" + "codePostal": "76460", + "codeCommune": "76569", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "69380", - "codeCommune": "69050", - "libelleAcheminement": "CHATILLON", - "nomCommune": "CHATILLON" + "codePostal": "24110", + "codeCommune": "24372", + "libelleAcheminement": "ST ASTIER", + "nomCommune": "ST ASTIER" }, { - "codePostal": "17250", - "codeCommune": "17431", - "libelleAcheminement": "SOULIGNONNE", - "nomCommune": "SOULIGNONNE" + "codePostal": "76340", + "codeCommune": "76645", + "libelleAcheminement": "ST RIQUIER EN RIVIERE", + "nomCommune": "ST RIQUIER EN RIVIERE" }, { - "codePostal": "74350", - "codeCommune": "74006", - "libelleAcheminement": "ALLONZIER LA CAILLE", - "nomCommune": "ALLONZIER LA CAILLE" + "codePostal": "63340", + "codeCommune": "63166", + "libelleAcheminement": "GIGNAT", + "nomCommune": "GIGNAT" }, { - "codePostal": "76560", - "codeCommune": "76251", - "libelleAcheminement": "ETALLEVILLE", - "nomCommune": "ETALLEVILLE" + "codePostal": "65230", + "codeCommune": "65136", + "libelleAcheminement": "CAUBOUS", + "nomCommune": "CAUBOUS" }, { - "codePostal": "69380", - "codeCommune": "69059", - "libelleAcheminement": "CIVRIEUX D AZERGUES", - "nomCommune": "CIVRIEUX D AZERGUES" + "codePostal": "76800", + "codeCommune": "76575", + "libelleAcheminement": "ST ETIENNE DU ROUVRAY", + "nomCommune": "ST ETIENNE DU ROUVRAY" }, { - "codePostal": "17130", - "codeCommune": "17432", - "libelleAcheminement": "SOUMERAS", - "nomCommune": "SOUMERAS" + "codePostal": "24410", + "codeCommune": "24376", + "libelleAcheminement": "ST AULAYE PUYMANGOU", + "nomCommune": "ST AULAYE PUYMANGOU" }, { - "codePostal": "74800", - "codeCommune": "74007", - "libelleAcheminement": "AMANCY", - "nomCommune": "AMANCY" + "codePostal": "76680", + "codeCommune": "76648", + "libelleAcheminement": "ST SAENS", + "nomCommune": "ST SAENS" }, { - "codePostal": "76640", - "codeCommune": "76258", - "libelleAcheminement": "TERRES DE CAUX", - "nomCommune": "TERRES DE CAUX" + "codePostal": "63160", + "codeCommune": "63168", + "libelleAcheminement": "GLAINE MONTAIGUT", + "nomCommune": "GLAINE MONTAIGUT" }, { - "codePostal": "69470", - "codeCommune": "69066", - "libelleAcheminement": "COURS", - "nomCommune": "COURS" + "codePostal": "65240", + "codeCommune": "65141", + "libelleAcheminement": "CAZAUX FRECHET ANERAN CAMORS", + "nomCommune": "CAZAUX FRECHET ANERAN CAMORS" }, { - "codePostal": "17350", - "codeCommune": "17435", - "libelleAcheminement": "TAILLANT", - "nomCommune": "TAILLANT" + "codePostal": "76210", + "codeCommune": "76576", + "libelleAcheminement": "ST EUSTACHE LA FORET", + "nomCommune": "ST EUSTACHE LA FORET" }, { - "codePostal": "74370", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "24540", + "codeCommune": "24384", + "libelleAcheminement": "ST CASSIEN", + "nomCommune": "ST CASSIEN" }, { - "codePostal": "76640", - "codeCommune": "76258", - "libelleAcheminement": "TERRES DE CAUX", - "nomCommune": "TERRES DE CAUX" + "codePostal": "76510", + "codeCommune": "76652", + "libelleAcheminement": "ST VAAST D EQUIQUEVILLE", + "nomCommune": "ST VAAST D EQUIQUEVILLE" }, { - "codePostal": "69470", - "codeCommune": "69066", - "libelleAcheminement": "COURS", - "nomCommune": "COURS" + "codePostal": "63320", + "codeCommune": "63172", + "libelleAcheminement": "GRANDEYROLLES", + "nomCommune": "GRANDEYROLLES" }, { - "codePostal": "17460", - "codeCommune": "17441", - "libelleAcheminement": "TESSON", - "nomCommune": "TESSON" + "codePostal": "65240", + "codeCommune": "65141", + "libelleAcheminement": "CAZAUX FRECHET ANERAN CAMORS", + "nomCommune": "CAZAUX FRECHET ANERAN CAMORS" }, { - "codePostal": "74960", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "76750", + "codeCommune": "76581", + "libelleAcheminement": "ST GERMAIN DES ESSOURTS", + "nomCommune": "ST GERMAIN DES ESSOURTS" }, { - "codePostal": "76640", - "codeCommune": "76258", - "libelleAcheminement": "TERRES DE CAUX", - "nomCommune": "TERRES DE CAUX" + "codePostal": "24260", + "codeCommune": "24388", + "libelleAcheminement": "ST CHAMASSY", + "nomCommune": "ST CHAMASSY" }, { - "codePostal": "69470", - "codeCommune": "69066", - "libelleAcheminement": "COURS", - "nomCommune": "COURS" + "codePostal": "76460", + "codeCommune": "76655", + "libelleAcheminement": "ST VALERY EN CAUX", + "nomCommune": "ST VALERY EN CAUX" }, { - "codePostal": "17460", - "codeCommune": "17444", - "libelleAcheminement": "THENAC", - "nomCommune": "THENAC" + "codePostal": "63210", + "codeCommune": "63176", + "libelleAcheminement": "HEUME L EGLISE", + "nomCommune": "HEUME L EGLISE" }, { - "codePostal": "74100", - "codeCommune": "74012", - "libelleAcheminement": "ANNEMASSE", - "nomCommune": "ANNEMASSE" + "codePostal": "65130", + "codeCommune": "65143", + "libelleAcheminement": "CHELLE SPOU", + "nomCommune": "CHELLE SPOU" }, { - "codePostal": "76970", - "codeCommune": "76264", - "libelleAcheminement": "FLAMANVILLE", - "nomCommune": "FLAMANVILLE" + "codePostal": "76270", + "codeCommune": "76584", + "libelleAcheminement": "ST GERMAIN SUR EAULNE", + "nomCommune": "ST GERMAIN SUR EAULNE" }, { - "codePostal": "69700", - "codeCommune": "69080", - "libelleAcheminement": "ECHALAS", - "nomCommune": "ECHALAS" + "codePostal": "24330", + "codeCommune": "24390", + "libelleAcheminement": "ST CREPIN D AUBEROCHE", + "nomCommune": "ST CREPIN D AUBEROCHE" }, { - "codePostal": "17430", - "codeCommune": "17449", - "libelleAcheminement": "TONNAY CHARENTE", - "nomCommune": "TONNAY CHARENTE" + "codePostal": "76540", + "codeCommune": "76663", + "libelleAcheminement": "SASSETOT LE MAUCONDUIT", + "nomCommune": "SASSETOT LE MAUCONDUIT" }, { - "codePostal": "74300", - "codeCommune": "74014", - "libelleAcheminement": "ARACHES LA FRASSE", - "nomCommune": "ARACHES LA FRASSE" + "codePostal": "63500", + "codeCommune": "63178", + "libelleAcheminement": "ISSOIRE", + "nomCommune": "ISSOIRE" }, { - "codePostal": "76260", - "codeCommune": "76266", - "libelleAcheminement": "FLOCQUES", - "nomCommune": "FLOCQUES" + "codePostal": "65350", + "codeCommune": "65151", + "libelleAcheminement": "COLLONGUES", + "nomCommune": "COLLONGUES" }, { - "codePostal": "69210", - "codeCommune": "69083", - "libelleAcheminement": "EVEUX", - "nomCommune": "EVEUX" + "codePostal": "76560", + "codeCommune": "76597", + "libelleAcheminement": "ST LAURENT EN CAUX", + "nomCommune": "ST LAURENT EN CAUX" }, { - "codePostal": "17380", - "codeCommune": "17450", - "libelleAcheminement": "TORXE", - "nomCommune": "TORXE" + "codePostal": "24340", + "codeCommune": "24394", + "libelleAcheminement": "STE CROIX DE MAREUIL", + "nomCommune": "STE CROIX DE MAREUIL" }, { - "codePostal": "74430", - "codeCommune": "74034", - "libelleAcheminement": "LE BIOT", - "nomCommune": "LE BIOT" + "codePostal": "76540", + "codeCommune": "76663", + "libelleAcheminement": "SASSETOT LE MAUCONDUIT", + "nomCommune": "SASSETOT LE MAUCONDUIT" }, { - "codePostal": "76440", - "codeCommune": "76269", - "libelleAcheminement": "FONTAINE EN BRAY", - "nomCommune": "FONTAINE EN BRAY" + "codePostal": "63190", + "codeCommune": "63194", + "libelleAcheminement": "LEMPTY", + "nomCommune": "LEMPTY" }, { - "codePostal": "69820", - "codeCommune": "69084", - "libelleAcheminement": "FLEURIE", - "nomCommune": "FLEURIE" + "codePostal": "65370", + "codeCommune": "65154", + "libelleAcheminement": "CRECHETS", + "nomCommune": "CRECHETS" }, { - "codePostal": "17390", - "codeCommune": "17452", - "libelleAcheminement": "LA TREMBLADE", - "nomCommune": "LA TREMBLADE" + "codePostal": "76119", + "codeCommune": "76605", + "libelleAcheminement": "STE MARGUERITE SUR MER", + "nomCommune": "STE MARGUERITE SUR MER" }, { - "codePostal": "74130", - "codeCommune": "74042", - "libelleAcheminement": "BONNEVILLE", - "nomCommune": "BONNEVILLE" + "codePostal": "24220", + "codeCommune": "24396", + "libelleAcheminement": "ST CYPRIEN", + "nomCommune": "ST CYPRIEN" }, { - "codePostal": "76160", - "codeCommune": "76273", - "libelleAcheminement": "FONTAINE SOUS PREAUX", - "nomCommune": "FONTAINE SOUS PREAUX" + "codePostal": "76550", + "codeCommune": "76667", + "libelleAcheminement": "SAUQUEVILLE", + "nomCommune": "SAUQUEVILLE" }, { - "codePostal": "69250", - "codeCommune": "69085", - "libelleAcheminement": "FLEURIEU SUR SAONE", - "nomCommune": "FLEURIEU SUR SAONE" + "codePostal": "63360", + "codeCommune": "63200", + "libelleAcheminement": "LUSSAT", + "nomCommune": "LUSSAT" }, { - "codePostal": "17540", - "codeCommune": "17466", - "libelleAcheminement": "VERINES", - "nomCommune": "VERINES" + "codePostal": "65350", + "codeCommune": "65156", + "libelleAcheminement": "DOURS", + "nomCommune": "DOURS" }, { - "codePostal": "74890", - "codeCommune": "74043", - "libelleAcheminement": "BONS EN CHABLAIS", - "nomCommune": "BONS EN CHABLAIS" + "codePostal": "76390", + "codeCommune": "76606", + "libelleAcheminement": "MORIENNE", + "nomCommune": "MORIENNE" }, { - "codePostal": "76410", - "codeCommune": "76282", - "libelleAcheminement": "FRENEUSE", - "nomCommune": "FRENEUSE" + "codePostal": "24400", + "codeCommune": "24399", + "libelleAcheminement": "ST ETIENNE DE PUYCORBIER", + "nomCommune": "ST ETIENNE DE PUYCORBIER" }, { - "codePostal": "69700", - "codeCommune": "69091", - "libelleAcheminement": "GIVORS", - "nomCommune": "GIVORS" + "codePostal": "76260", + "codeCommune": "76671", + "libelleAcheminement": "SEPT MEULES", + "nomCommune": "SEPT MEULES" }, { - "codePostal": "17770", - "codeCommune": "17470", - "libelleAcheminement": "VILLARS LES BOIS", - "nomCommune": "VILLARS LES BOIS" + "codePostal": "63340", + "codeCommune": "63202", + "libelleAcheminement": "MADRIAT", + "nomCommune": "MADRIAT" }, { - "codePostal": "74150", - "codeCommune": "74046", - "libelleAcheminement": "BOUSSY", - "nomCommune": "BOUSSY" + "codePostal": "65400", + "codeCommune": "65169", + "libelleAcheminement": "ESTAING", + "nomCommune": "ESTAING" }, { - "codePostal": "76690", - "codeCommune": "76290", - "libelleAcheminement": "FRICHEMESNIL", - "nomCommune": "FRICHEMESNIL" + "codePostal": "76190", + "codeCommune": "76610", + "libelleAcheminement": "STE MARIE DES CHAMPS", + "nomCommune": "STE MARIE DES CHAMPS" }, { - "codePostal": "69420", - "codeCommune": "69097", - "libelleAcheminement": "LES HAIES", - "nomCommune": "LES HAIES" + "codePostal": "24260", + "codeCommune": "24404", + "libelleAcheminement": "ST FELIX DE REILLAC ET MORTEMART", + "nomCommune": "ST FELIX DE REILLAC ET MORTEMART" }, { - "codePostal": "17470", - "codeCommune": "17471", - "libelleAcheminement": "LA VILLEDIEU", - "nomCommune": "LA VILLEDIEU" + "codePostal": "76440", + "codeCommune": "76678", + "libelleAcheminement": "SOMMERY", + "nomCommune": "SOMMERY" }, { - "codePostal": "74910", - "codeCommune": "74055", - "libelleAcheminement": "CHALLONGES", - "nomCommune": "CHALLONGES" + "codePostal": "63270", + "codeCommune": "63205", + "libelleAcheminement": "MANGLIEU", + "nomCommune": "MANGLIEU" }, { - "codePostal": "76400", - "codeCommune": "76298", - "libelleAcheminement": "GANZEVILLE", - "nomCommune": "GANZEVILLE" + "codePostal": "65220", + "codeCommune": "65170", + "libelleAcheminement": "ESTAMPURES", + "nomCommune": "ESTAMPURES" }, { - "codePostal": "69540", - "codeCommune": "69100", - "libelleAcheminement": "IRIGNY", - "nomCommune": "IRIGNY" + "codePostal": "76340", + "codeCommune": "76612", + "libelleAcheminement": "ST MARTIN AU BOSC", + "nomCommune": "ST MARTIN AU BOSC" }, { - "codePostal": "17330", - "codeCommune": "17474", - "libelleAcheminement": "VILLENEUVE LA COMTESSE", - "nomCommune": "VILLENEUVE LA COMTESSE" + "codePostal": "24510", + "codeCommune": "24405", + "libelleAcheminement": "ST FELIX DE VILLADEIX", + "nomCommune": "ST FELIX DE VILLADEIX" }, { - "codePostal": "74360", - "codeCommune": "74058", - "libelleAcheminement": "LA CHAPELLE D ABONDANCE", - "nomCommune": "LA CHAPELLE D ABONDANCE" + "codePostal": "76410", + "codeCommune": "76682", + "libelleAcheminement": "SOTTEVILLE SOUS LE VAL", + "nomCommune": "SOTTEVILLE SOUS LE VAL" }, { - "codePostal": "76430", - "codeCommune": "76303", - "libelleAcheminement": "GOMMERVILLE", - "nomCommune": "GOMMERVILLE" + "codePostal": "63430", + "codeCommune": "63213", + "libelleAcheminement": "LES MARTRES D ARTIERE", + "nomCommune": "LES MARTRES D ARTIERE" }, { - "codePostal": "69840", - "codeCommune": "69104", - "libelleAcheminement": "JULLIE", - "nomCommune": "JULLIE" + "codePostal": "65560", + "codeCommune": "65176", + "libelleAcheminement": "FERRIERES", + "nomCommune": "FERRIERES" }, { - "codePostal": "17330", - "codeCommune": "17474", - "libelleAcheminement": "VILLENEUVE LA COMTESSE", - "nomCommune": "VILLENEUVE LA COMTESSE" + "codePostal": "76160", + "codeCommune": "76617", + "libelleAcheminement": "ST MARTIN DU VIVIER", + "nomCommune": "ST MARTIN DU VIVIER" }, { - "codePostal": "74650", - "codeCommune": "74067", - "libelleAcheminement": "CHAVANOD", - "nomCommune": "CHAVANOD" + "codePostal": "24520", + "codeCommune": "24419", + "libelleAcheminement": "ST GERMAIN ET MONS", + "nomCommune": "ST GERMAIN ET MONS" }, { - "codePostal": "76110", - "codeCommune": "76304", - "libelleAcheminement": "GONFREVILLE CAILLOT", - "nomCommune": "GONFREVILLE CAILLOT" + "codePostal": "76730", + "codeCommune": "76690", + "libelleAcheminement": "THIL MANNEVILLE", + "nomCommune": "THIL MANNEVILLE" }, { - "codePostal": "69210", - "codeCommune": "69112", - "libelleAcheminement": "LENTILLY", - "nomCommune": "LENTILLY" + "codePostal": "63730", + "codeCommune": "63214", + "libelleAcheminement": "LES MARTRES DE VEYRE", + "nomCommune": "LES MARTRES DE VEYRE" }, { - "codePostal": "18200", - "codeCommune": "18002", - "libelleAcheminement": "AINAY LE VIEIL", - "nomCommune": "AINAY LE VIEIL" + "codePostal": "65400", + "codeCommune": "65182", + "libelleAcheminement": "GAILLAGOS", + "nomCommune": "GAILLAGOS" }, { - "codePostal": "74520", - "codeCommune": "74069", - "libelleAcheminement": "CHENEX", - "nomCommune": "CHENEX" + "codePostal": "76370", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "76810", - "codeCommune": "76327", - "libelleAcheminement": "GREUVILLE", - "nomCommune": "GREUVILLE" + "codePostal": "24500", + "codeCommune": "24423", + "libelleAcheminement": "ST JULIEN INNOCENCE EULALIE", + "nomCommune": "ST JULIEN INNOCENCE EULALIE" }, { - "codePostal": "69760", - "codeCommune": "69116", - "libelleAcheminement": "LIMONEST", - "nomCommune": "LIMONEST" + "codePostal": "76730", + "codeCommune": "76694", + "libelleAcheminement": "TOCQUEVILLE EN CAUX", + "nomCommune": "TOCQUEVILLE EN CAUX" }, { - "codePostal": "18340", - "codeCommune": "18008", - "libelleAcheminement": "ARCAY", - "nomCommune": "ARCAY" + "codePostal": "63720", + "codeCommune": "63215", + "libelleAcheminement": "MARTRES SUR MORGE", + "nomCommune": "MARTRES SUR MORGE" }, { - "codePostal": "74140", - "codeCommune": "74070", - "libelleAcheminement": "CHENS SUR LEMAN", - "nomCommune": "CHENS SUR LEMAN" + "codePostal": "65150", + "codeCommune": "65194", + "libelleAcheminement": "GENEREST", + "nomCommune": "GENEREST" }, { - "codePostal": "76850", - "codeCommune": "76328", - "libelleAcheminement": "GRIGNEUSEVILLE", - "nomCommune": "GRIGNEUSEVILLE" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "69420", - "codeCommune": "69119", - "libelleAcheminement": "LONGES", - "nomCommune": "LONGES" + "codePostal": "24500", + "codeCommune": "24423", + "libelleAcheminement": "ST JULIEN INNOCENCE EULALIE", + "nomCommune": "ST JULIEN INNOCENCE EULALIE" }, { - "codePostal": "18260", - "codeCommune": "18014", - "libelleAcheminement": "ASSIGNY", - "nomCommune": "ASSIGNY" + "codePostal": "76590", + "codeCommune": "76697", + "libelleAcheminement": "TORCY LE GRAND", + "nomCommune": "TORCY LE GRAND" }, { - "codePostal": "74210", - "codeCommune": "74072", - "libelleAcheminement": "CHEVALINE", - "nomCommune": "CHEVALINE" + "codePostal": "63220", + "codeCommune": "63221", + "libelleAcheminement": "MEDEYROLLES", + "nomCommune": "MEDEYROLLES" }, { - "codePostal": "76810", - "codeCommune": "76330", - "libelleAcheminement": "GRUCHET ST SIMEON", - "nomCommune": "GRUCHET ST SIMEON" + "codePostal": "65100", + "codeCommune": "65197", + "libelleAcheminement": "GER", + "nomCommune": "GER" }, { - "codePostal": "69770", - "codeCommune": "69120", - "libelleAcheminement": "LONGESSAIGNE", - "nomCommune": "LONGESSAIGNE" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "18520", - "codeCommune": "18018", - "libelleAcheminement": "AVORD", - "nomCommune": "AVORD" + "codePostal": "24140", + "codeCommune": "24426", + "libelleAcheminement": "ST JEAN D ESTISSAC", + "nomCommune": "ST JEAN D ESTISSAC" }, { - "codePostal": "74330", - "codeCommune": "74076", - "libelleAcheminement": "CHOISY", - "nomCommune": "CHOISY" + "codePostal": "76590", + "codeCommune": "76698", + "libelleAcheminement": "TORCY LE PETIT", + "nomCommune": "TORCY LE PETIT" }, { - "codePostal": "76690", - "codeCommune": "76331", - "libelleAcheminement": "GRUGNY", - "nomCommune": "GRUGNY" + "codePostal": "63200", + "codeCommune": "63224", + "libelleAcheminement": "MENETROL", + "nomCommune": "MENETROL" }, { - "codePostal": "69430", - "codeCommune": "69124", - "libelleAcheminement": "MARCHAMPT", - "nomCommune": "MARCHAMPT" + "codePostal": "65400", + "codeCommune": "65202", + "libelleAcheminement": "GEZ", + "nomCommune": "GEZ" }, { - "codePostal": "18240", - "codeCommune": "18026", - "libelleAcheminement": "BELLEVILLE SUR LOIRE", - "nomCommune": "BELLEVILLE SUR LOIRE" + "codePostal": "76510", + "codeCommune": "76624", + "libelleAcheminement": "ST NICOLAS D ALIERMONT", + "nomCommune": "ST NICOLAS D ALIERMONT" }, { - "codePostal": "74160", - "codeCommune": "74082", - "libelleAcheminement": "COLLONGES SOUS SALEVE", - "nomCommune": "COLLONGES SOUS SALEVE" + "codePostal": "24160", + "codeCommune": "24429", + "libelleAcheminement": "ST JORY LAS BLOUX", + "nomCommune": "ST JORY LAS BLOUX" }, { - "codePostal": "76780", - "codeCommune": "76338", - "libelleAcheminement": "LA HALLOTIERE", - "nomCommune": "LA HALLOTIERE" + "codePostal": "76910", + "codeCommune": "76703", + "libelleAcheminement": "TOUFFREVILLE SUR EU", + "nomCommune": "TOUFFREVILLE SUR EU" }, { - "codePostal": "69280", - "codeCommune": "69127", - "libelleAcheminement": "MARCY L ETOILE", - "nomCommune": "MARCY L ETOILE" + "codePostal": "63750", + "codeCommune": "63225", + "libelleAcheminement": "MESSEIX", + "nomCommune": "MESSEIX" }, { - "codePostal": "18240", - "codeCommune": "18032", - "libelleAcheminement": "BOULLERET", - "nomCommune": "BOULLERET" + "codePostal": "65240", + "codeCommune": "65205", + "libelleAcheminement": "GOUAUX", + "nomCommune": "GOUAUX" }, { - "codePostal": "74270", - "codeCommune": "74086", - "libelleAcheminement": "CONTAMINE SARZIN", - "nomCommune": "CONTAMINE SARZIN" + "codePostal": "76170", + "codeCommune": "76627", + "libelleAcheminement": "ST NICOLAS DE LA TAILLE", + "nomCommune": "ST NICOLAS DE LA TAILLE" }, { - "codePostal": "76440", - "codeCommune": "76345", - "libelleAcheminement": "HAUSSEZ", - "nomCommune": "HAUSSEZ" + "codePostal": "24320", + "codeCommune": "24434", + "libelleAcheminement": "ST JUST", + "nomCommune": "ST JUST" }, { - "codePostal": "69430", - "codeCommune": "69135", - "libelleAcheminement": "DEUX GROSNES", - "nomCommune": "DEUX GROSNES" + "codePostal": "76550", + "codeCommune": "76707", + "libelleAcheminement": "TOURVILLE SUR ARQUES", + "nomCommune": "TOURVILLE SUR ARQUES" }, { - "codePostal": "18300", - "codeCommune": "18039", - "libelleAcheminement": "BUE", - "nomCommune": "BUE" + "codePostal": "63730", + "codeCommune": "63227", + "libelleAcheminement": "MIREFLEURS", + "nomCommune": "MIREFLEURS" }, { - "codePostal": "74800", - "codeCommune": "74090", - "libelleAcheminement": "CORNIER", - "nomCommune": "CORNIER" + "codePostal": "65130", + "codeCommune": "65207", + "libelleAcheminement": "GOURGUE", + "nomCommune": "GOURGUE" }, { - "codePostal": "76190", - "codeCommune": "76347", - "libelleAcheminement": "HAUTOT LE VATOIS", - "nomCommune": "HAUTOT LE VATOIS" + "codePostal": "76890", + "codeCommune": "76628", + "libelleAcheminement": "ST OUEN DU BREUIL", + "nomCommune": "ST OUEN DU BREUIL" }, { - "codePostal": "69700", - "codeCommune": "69136", - "libelleAcheminement": "MONTAGNY", - "nomCommune": "MONTAGNY" + "codePostal": "24560", + "codeCommune": "24441", + "libelleAcheminement": "ST LEON D ISSIGEAC", + "nomCommune": "ST LEON D ISSIGEAC" }, { - "codePostal": "18360", - "codeCommune": "18041", - "libelleAcheminement": "LA CELETTE", - "nomCommune": "LA CELETTE" + "codePostal": "76640", + "codeCommune": "76710", + "libelleAcheminement": "TREMAUVILLE", + "nomCommune": "TREMAUVILLE" }, { - "codePostal": "74520", - "codeCommune": "74101", - "libelleAcheminement": "DINGY EN VUACHE", - "nomCommune": "DINGY EN VUACHE" + "codePostal": "63890", + "codeCommune": "63230", + "libelleAcheminement": "LE MONESTIER", + "nomCommune": "LE MONESTIER" }, { - "codePostal": "76190", - "codeCommune": "76348", - "libelleAcheminement": "HAUTOT ST SULPICE", - "nomCommune": "HAUTOT ST SULPICE" + "codePostal": "65120", + "codeCommune": "65210", + "libelleAcheminement": "GRUST", + "nomCommune": "GRUST" }, { - "codePostal": "69350", - "codeCommune": "69142", - "libelleAcheminement": "LA MULATIERE", - "nomCommune": "LA MULATIERE" + "codePostal": "76260", + "codeCommune": "76638", + "libelleAcheminement": "ST PIERRE EN VAL", + "nomCommune": "ST PIERRE EN VAL" }, { - "codePostal": "18130", - "codeCommune": "18045", - "libelleAcheminement": "CHALIVOY MILON", - "nomCommune": "CHALIVOY MILON" + "codePostal": "24400", + "codeCommune": "24444", + "libelleAcheminement": "ST LOUIS EN L ISLE", + "nomCommune": "ST LOUIS EN L ISLE" }, { - "codePostal": "74230", - "codeCommune": "74102", - "libelleAcheminement": "DINGY ST CLAIR", - "nomCommune": "DINGY ST CLAIR" + "codePostal": "76470", + "codeCommune": "76711", + "libelleAcheminement": "LE TREPORT", + "nomCommune": "LE TREPORT" }, { - "codePostal": "76600", - "codeCommune": "76351", - "libelleAcheminement": "LE HAVRE", - "nomCommune": "LE HAVRE" + "codePostal": "63700", + "codeCommune": "63233", + "libelleAcheminement": "MONTAIGUT EN COMBRAILLE", + "nomCommune": "MONTAIGUT" }, { - "codePostal": "69310", - "codeCommune": "69152", - "libelleAcheminement": "PIERRE BENITE", - "nomCommune": "PIERRE BENITE" + "codePostal": "65170", + "codeCommune": "65211", + "libelleAcheminement": "GUCHAN", + "nomCommune": "GUCHAN" }, { - "codePostal": "18150", - "codeCommune": "18062", - "libelleAcheminement": "LE CHAUTAY", - "nomCommune": "LE CHAUTAY" + "codePostal": "76320", + "codeCommune": "76640", + "libelleAcheminement": "ST PIERRE LES ELBEUF", + "nomCommune": "ST PIERRE LES ELBEUF" }, { - "codePostal": "74550", - "codeCommune": "74106", - "libelleAcheminement": "DRAILLANT", - "nomCommune": "DRAILLANT" + "codePostal": "24510", + "codeCommune": "24445", + "libelleAcheminement": "ST MARCEL DU PERIGORD", + "nomCommune": "ST MARCEL DU PERIGORD" }, { - "codePostal": "76840", - "codeCommune": "76354", - "libelleAcheminement": "HENOUVILLE", - "nomCommune": "HENOUVILLE" + "codePostal": "76210", + "codeCommune": "76715", + "libelleAcheminement": "TROUVILLE", + "nomCommune": "TROUVILLE" }, { - "codePostal": "69290", - "codeCommune": "69154", - "libelleAcheminement": "POLLIONNAY", - "nomCommune": "POLLIONNAY" + "codePostal": "63380", + "codeCommune": "63237", + "libelleAcheminement": "MONTEL DE GELAT", + "nomCommune": "MONTEL DE GELAT" }, { - "codePostal": "18350", - "codeCommune": "18072", - "libelleAcheminement": "CORNUSSE", - "nomCommune": "CORNUSSE" + "codePostal": "65240", + "codeCommune": "65212", + "libelleAcheminement": "GUCHEN", + "nomCommune": "GUCHEN" }, { - "codePostal": "74410", - "codeCommune": "74111", - "libelleAcheminement": "ENTREVERNES", - "nomCommune": "ENTREVERNES" + "codePostal": "76460", + "codeCommune": "76646", + "libelleAcheminement": "ST RIQUIER ES PLAINS", + "nomCommune": "ST RIQUIER ES PLAINS" }, { - "codePostal": "76280", - "codeCommune": "76361", - "libelleAcheminement": "HEUQUEVILLE", - "nomCommune": "HEUQUEVILLE" + "codePostal": "24320", + "codeCommune": "24452", + "libelleAcheminement": "ST MARTIAL VIVEYROL", + "nomCommune": "ST MARTIAL VIVEYROL" }, { - "codePostal": "69490", - "codeCommune": "69157", - "libelleAcheminement": "VINDRY SUR TURDINE", - "nomCommune": "VINDRY SUR TURDINE" + "codePostal": "76190", + "codeCommune": "76718", + "libelleAcheminement": "VALLIQUERVILLE", + "nomCommune": "VALLIQUERVILLE" }, { - "codePostal": "18340", - "codeCommune": "18073", - "libelleAcheminement": "CORQUOY", - "nomCommune": "CORQUOY" + "codePostal": "63340", + "codeCommune": "63255", + "libelleAcheminement": "NONETTE ORSONNETTE", + "nomCommune": "NONETTE ORSONNETTE" }, { - "codePostal": "74370", - "codeCommune": "74112", - "libelleAcheminement": "EPAGNY METZ TESSY", - "nomCommune": "EPAGNY METZ TESSY" + "codePostal": "65230", + "codeCommune": "65213", + "libelleAcheminement": "GUIZERIX", + "nomCommune": "GUIZERIX" }, { - "codePostal": "76630", - "codeCommune": "76371", - "libelleAcheminement": "LES IFS", - "nomCommune": "LES IFS" + "codePostal": "76890", + "codeCommune": "76654", + "libelleAcheminement": "ST VAAST DU VAL", + "nomCommune": "ST VAAST DU VAL" }, { - "codePostal": "69640", - "codeCommune": "69159", - "libelleAcheminement": "PORTE DES PIERRES DOREES", - "nomCommune": "PORTE DES PIERRES DOREES" + "codePostal": "24600", + "codeCommune": "24455", + "libelleAcheminement": "ST MARTIN DE RIBERAC", + "nomCommune": "ST MARTIN DE RIBERAC" }, { - "codePostal": "18300", - "codeCommune": "18074", - "libelleAcheminement": "COUARGUES", - "nomCommune": "COUARGUES" + "codePostal": "76540", + "codeCommune": "76719", + "libelleAcheminement": "VALMONT", + "nomCommune": "VALMONT" }, { - "codePostal": "74910", - "codeCommune": "74130", - "libelleAcheminement": "FRANCLENS", - "nomCommune": "FRANCLENS" + "codePostal": "63210", + "codeCommune": "63257", + "libelleAcheminement": "OLBY", + "nomCommune": "OLBY" }, { - "codePostal": "76390", - "codeCommune": "76372", - "libelleAcheminement": "ILLOIS", - "nomCommune": "ILLOIS" + "codePostal": "65230", + "codeCommune": "65214", + "libelleAcheminement": "HACHAN", + "nomCommune": "HACHAN" }, { - "codePostal": "69650", - "codeCommune": "69163", - "libelleAcheminement": "QUINCIEUX", - "nomCommune": "QUINCIEUX" + "codePostal": "76430", + "codeCommune": "76658", + "libelleAcheminement": "ST VINCENT CRAMESNIL", + "nomCommune": "ST VINCENT CRAMESNIL" }, { - "codePostal": "18190", - "codeCommune": "18078", - "libelleAcheminement": "CREZANCAY SUR CHER", - "nomCommune": "CREZANCAY SUR CHER" + "codePostal": "24400", + "codeCommune": "24457", + "libelleAcheminement": "ST MARTIN L ASTIER", + "nomCommune": "ST MARTIN L ASTIER" }, { - "codePostal": "74450", - "codeCommune": "74136", - "libelleAcheminement": "LE GRAND BORNAND", - "nomCommune": "LE GRAND BORNAND" + "codePostal": "76270", + "codeCommune": "76724", + "libelleAcheminement": "VATIERVILLE", + "nomCommune": "VATIERVILLE" }, { - "codePostal": "76210", - "codeCommune": "76382", - "libelleAcheminement": "LANQUETOT", - "nomCommune": "LANQUETOT" + "codePostal": "63880", + "codeCommune": "63258", + "libelleAcheminement": "OLLIERGUES", + "nomCommune": "OLLIERGUES" }, { - "codePostal": "69430", - "codeCommune": "69165", - "libelleAcheminement": "REGNIE DURETTE", - "nomCommune": "REGNIE DURETTE" + "codePostal": "65350", + "codeCommune": "65225", + "libelleAcheminement": "HOURC", + "nomCommune": "HOURC" }, { - "codePostal": "18270", - "codeCommune": "18083", - "libelleAcheminement": "CULAN", - "nomCommune": "CULAN" + "codePostal": "76430", + "codeCommune": "76660", + "libelleAcheminement": "SANDOUVILLE", + "nomCommune": "SANDOUVILLE" }, { - "codePostal": "74540", - "codeCommune": "74142", - "libelleAcheminement": "HERY SUR ALBY", - "nomCommune": "HERY SUR ALBY" + "codePostal": "24380", + "codeCommune": "24459", + "libelleAcheminement": "ST MAYME DE PEREYROL", + "nomCommune": "ST MAYME DE PEREYROL" }, { - "codePostal": "76570", - "codeCommune": "76385", - "libelleAcheminement": "LIMESY", - "nomCommune": "LIMESY" + "codePostal": "76110", + "codeCommune": "76725", + "libelleAcheminement": "VATTETOT SOUS BEAUMONT", + "nomCommune": "VATTETOT SOUS BEAUMONT" }, { - "codePostal": "69640", - "codeCommune": "69167", - "libelleAcheminement": "RIVOLET", - "nomCommune": "RIVOLET" + "codePostal": "63450", + "codeCommune": "63259", + "libelleAcheminement": "OLLOIX", + "nomCommune": "OLLOIX" }, { - "codePostal": "18800", - "codeCommune": "18090", - "libelleAcheminement": "ETRECHY", - "nomCommune": "ETRECHY" + "codePostal": "65420", + "codeCommune": "65226", + "libelleAcheminement": "IBOS", + "nomCommune": "IBOS" }, { - "codePostal": "74100", - "codeCommune": "74145", - "libelleAcheminement": "JUVIGNY", - "nomCommune": "JUVIGNY" + "codePostal": "76730", + "codeCommune": "76662", + "libelleAcheminement": "SASSETOT LE MALGARDE", + "nomCommune": "SASSETOT LE MALGARDE" }, { - "codePostal": "76790", - "codeCommune": "76390", - "libelleAcheminement": "LES LOGES", - "nomCommune": "LES LOGES" + "codePostal": "24270", + "codeCommune": "24464", + "libelleAcheminement": "ST MESMIN", + "nomCommune": "ST MESMIN" }, { - "codePostal": "69550", - "codeCommune": "69169", - "libelleAcheminement": "RONNO", - "nomCommune": "RONNO" + "codePostal": "76111", + "codeCommune": "76726", + "libelleAcheminement": "VATTETOT SUR MER", + "nomCommune": "VATTETOT SUR MER" }, { - "codePostal": "18800", - "codeCommune": "18092", - "libelleAcheminement": "FARGES EN SEPTAINE", - "nomCommune": "FARGES EN SEPTAINE" + "codePostal": "63190", + "codeCommune": "63265", + "libelleAcheminement": "ORLEAT", + "nomCommune": "ORLEAT" }, { - "codePostal": "74500", - "codeCommune": "74154", - "libelleAcheminement": "LUGRIN", - "nomCommune": "LUGRIN" + "codePostal": "65240", + "codeCommune": "65234", + "libelleAcheminement": "JEZEAU", + "nomCommune": "JEZEAU" }, { - "codePostal": "76500", - "codeCommune": "76391", - "libelleAcheminement": "LA LONDE", - "nomCommune": "LA LONDE" + "codePostal": "76630", + "codeCommune": "76665", + "libelleAcheminement": "SAUCHAY", + "nomCommune": "SAUCHAY" }, { - "codePostal": "69460", - "codeCommune": "69172", - "libelleAcheminement": "SALLES ARBUISSONNAS BEAUJOLAIS", - "nomCommune": "SALLES ARBUISSONNAS EN BEAUJOLAIS" + "codePostal": "24400", + "codeCommune": "24465", + "libelleAcheminement": "ST MICHEL DE DOUBLE", + "nomCommune": "ST MICHEL DE DOUBLE" }, { - "codePostal": "18350", - "codeCommune": "18095", - "libelleAcheminement": "FLAVIGNY", - "nomCommune": "FLAVIGNY" + "codePostal": "76560", + "codeCommune": "76730", + "libelleAcheminement": "VEAUVILLE LES QUELLES", + "nomCommune": "VEAUVILLE LES QUELLES" }, { - "codePostal": "74140", - "codeCommune": "74158", - "libelleAcheminement": "MACHILLY", - "nomCommune": "MACHILLY" + "codePostal": "63330", + "codeCommune": "63281", + "libelleAcheminement": "PIONSAT", + "nomCommune": "PIONSAT" }, { - "codePostal": "76490", - "codeCommune": "76398", - "libelleAcheminement": "LOUVETOT", - "nomCommune": "LOUVETOT" + "codePostal": "65200", + "codeCommune": "65238", + "libelleAcheminement": "LABASSERE", + "nomCommune": "LABASSERE" }, { - "codePostal": "69170", - "codeCommune": "69174", - "libelleAcheminement": "LES SAUVAGES", - "nomCommune": "LES SAUVAGES" + "codePostal": "76440", + "codeCommune": "76666", + "libelleAcheminement": "SAUMONT LA POTERIE", + "nomCommune": "SAUMONT LA POTERIE" }, { - "codePostal": "18500", - "codeCommune": "18096", - "libelleAcheminement": "FOECY", - "nomCommune": "FOECY" + "codePostal": "24230", + "codeCommune": "24466", + "libelleAcheminement": "ST MICHEL DE MONTAIGNE", + "nomCommune": "ST MICHEL DE MONTAIGNE" }, { - "codePostal": "74300", - "codeCommune": "74159", - "libelleAcheminement": "MAGLAND", - "nomCommune": "MAGLAND" + "codePostal": "76450", + "codeCommune": "76732", + "libelleAcheminement": "BUTOT VENESVILLE", + "nomCommune": "BUTOT VENESVILLE" }, { - "codePostal": "76133", - "codeCommune": "76404", - "libelleAcheminement": "MANEGLISE", - "nomCommune": "MANEGLISE" + "codePostal": "63780", + "codeCommune": "63294", + "libelleAcheminement": "QUEUILLE", + "nomCommune": "QUEUILLE" }, { - "codePostal": "69700", - "codeCommune": "69179", - "libelleAcheminement": "BEAUVALLON", - "nomCommune": "BEAUVALLON" + "codePostal": "65700", + "codeCommune": "65243", + "libelleAcheminement": "LAFITOLE", + "nomCommune": "LAFITOLE" }, { - "codePostal": "18140", - "codeCommune": "18104", - "libelleAcheminement": "GROISES", - "nomCommune": "GROISES" + "codePostal": "76760", + "codeCommune": "76668", + "libelleAcheminement": "SAUSSAY", + "nomCommune": "SAUSSAY" }, { - "codePostal": "74230", - "codeCommune": "74160", - "libelleAcheminement": "MANIGOD", - "nomCommune": "MANIGOD" + "codePostal": "24170", + "codeCommune": "24478", + "libelleAcheminement": "ST PARDOUX ET VIELVIC", + "nomCommune": "ST PARDOUX ET VIELVIC" }, { - "codePostal": "76110", - "codeCommune": "76408", - "libelleAcheminement": "MANNEVILLE LA GOUPIL", - "nomCommune": "MANNEVILLE LA GOUPIL" + "codePostal": "76280", + "codeCommune": "76741", + "libelleAcheminement": "VILLAINVILLE", + "nomCommune": "VILLAINVILLE" }, { - "codePostal": "69440", - "codeCommune": "69184", - "libelleAcheminement": "STE CATHERINE", - "nomCommune": "STE CATHERINE" + "codePostal": "63260", + "codeCommune": "63311", + "libelleAcheminement": "ST AGOULIN", + "nomCommune": "ST AGOULIN" }, { - "codePostal": "18150", - "codeCommune": "18108", - "libelleAcheminement": "LA GUERCHE SUR L AUBOIS", - "nomCommune": "LA GUERCHE SUR L AUBOIS" + "codePostal": "65320", + "codeCommune": "65244", + "libelleAcheminement": "LAGARDE", + "nomCommune": "LAGARDE" }, { - "codePostal": "74970", - "codeCommune": "74164", - "libelleAcheminement": "MARIGNIER", - "nomCommune": "MARIGNIER" + "codePostal": "76440", + "codeCommune": "76672", + "libelleAcheminement": "SERQUEUX", + "nomCommune": "SERQUEUX" }, { - "codePostal": "76290", - "codeCommune": "76409", - "libelleAcheminement": "MANNEVILLETTE", - "nomCommune": "MANNEVILLETTE" + "codePostal": "24800", + "codeCommune": "24485", + "libelleAcheminement": "ST PIERRE DE COLE", + "nomCommune": "ST PIERRE DE COLE" }, { - "codePostal": "69370", - "codeCommune": "69194", - "libelleAcheminement": "ST DIDIER AU MONT D OR", - "nomCommune": "ST DIDIER AU MONT D OR" + "codePostal": "76360", + "codeCommune": "76743", + "libelleAcheminement": "VILLERS ECALLES", + "nomCommune": "VILLERS ECALLES" }, { - "codePostal": "18250", - "codeCommune": "18111", - "libelleAcheminement": "HUMBLIGNY", - "nomCommune": "HUMBLIGNY" + "codePostal": "63420", + "codeCommune": "63313", + "libelleAcheminement": "ST ALYRE ES MONTAGNE", + "nomCommune": "ST ALYRE ES MONTAGNE" }, { - "codePostal": "74150", - "codeCommune": "74165", - "libelleAcheminement": "MARIGNY ST MARCEL", - "nomCommune": "MARIGNY ST MARCEL" + "codePostal": "65300", + "codeCommune": "65245", + "libelleAcheminement": "LAGRANGE", + "nomCommune": "LAGRANGE" }, { - "codePostal": "76680", - "codeCommune": "76416", - "libelleAcheminement": "MATHONVILLE", - "nomCommune": "MATHONVILLE" + "codePostal": "76780", + "codeCommune": "76676", + "libelleAcheminement": "SIGY EN BRAY", + "nomCommune": "SIGY EN BRAY" }, { - "codePostal": "69430", - "codeCommune": "69196", - "libelleAcheminement": "ST DIDIER SUR BEAUJEU", - "nomCommune": "ST DIDIER SUR BEAUJEU" + "codePostal": "24410", + "codeCommune": "24490", + "libelleAcheminement": "ST PRIVAT EN PERIGORD", + "nomCommune": "ST PRIVAT EN PERIGORD" }, { - "codePostal": "18130", - "codeCommune": "18119", - "libelleAcheminement": "JUSSY CHAMPAGNE", - "nomCommune": "JUSSY CHAMPAGNE" + "codePostal": "76340", + "codeCommune": "76744", + "libelleAcheminement": "VILLERS SOUS FOUCARMONT", + "nomCommune": "VILLERS SOUS FOUCARMONT" }, { - "codePostal": "74140", - "codeCommune": "74171", - "libelleAcheminement": "MASSONGY", - "nomCommune": "MASSONGY" + "codePostal": "63890", + "codeCommune": "63314", + "libelleAcheminement": "ST AMANT ROCHE SAVINE", + "nomCommune": "ST AMANT ROCHE SAVINE" }, { - "codePostal": "76260", - "codeCommune": "76422", - "libelleAcheminement": "MELLEVILLE", - "nomCommune": "MELLEVILLE" + "codePostal": "65700", + "codeCommune": "65248", + "libelleAcheminement": "LAHITTE TOUPIERE", + "nomCommune": "LAHITTE TOUPIERE" }, { - "codePostal": "69610", - "codeCommune": "69203", - "libelleAcheminement": "ST GENIS L ARGENTIERE", - "nomCommune": "ST GENIS L ARGENTIERE" + "codePostal": "76300", + "codeCommune": "76681", + "libelleAcheminement": "SOTTEVILLE LES ROUEN", + "nomCommune": "SOTTEVILLE LES ROUEN" }, { - "codePostal": "18140", - "codeCommune": "18120", - "libelleAcheminement": "JUSSY LE CHAUDRIER", - "nomCommune": "JUSSY LE CHAUDRIER" + "codePostal": "24410", + "codeCommune": "24490", + "libelleAcheminement": "ST PRIVAT EN PERIGORD", + "nomCommune": "ST PRIVAT EN PERIGORD" }, { - "codePostal": "74500", - "codeCommune": "74172", - "libelleAcheminement": "MAXILLY SUR LEMAN", - "nomCommune": "MAXILLY SUR LEMAN" + "codePostal": "76660", + "codeCommune": "76749", + "libelleAcheminement": "WANCHY CAPVAL", + "nomCommune": "WANCHY CAPVAL" }, { - "codePostal": "76780", - "codeCommune": "76426", - "libelleAcheminement": "MESANGUEVILLE", - "nomCommune": "MESANGUEVILLE" + "codePostal": "63200", + "codeCommune": "63327", + "libelleAcheminement": "ST BONNET PRES RIOM", + "nomCommune": "ST BONNET PRES RIOM" }, { - "codePostal": "69230", - "codeCommune": "69204", - "libelleAcheminement": "ST GENIS LAVAL", - "nomCommune": "ST GENIS LAVAL" + "codePostal": "65220", + "codeCommune": "65250", + "libelleAcheminement": "LALANNE TRIE", + "nomCommune": "LALANNE TRIE" }, { - "codePostal": "18120", - "codeCommune": "18124", - "libelleAcheminement": "LAZENAY", - "nomCommune": "LAZENAY" + "codePostal": "76740", + "codeCommune": "76683", + "libelleAcheminement": "SOTTEVILLE SUR MER", + "nomCommune": "SOTTEVILLE SUR MER" }, { - "codePostal": "74120", - "codeCommune": "74173", - "libelleAcheminement": "MEGEVE", - "nomCommune": "MEGEVE" + "codePostal": "24540", + "codeCommune": "24495", + "libelleAcheminement": "ST ROMAIN DE MONPAZIER", + "nomCommune": "ST ROMAIN DE MONPAZIER" }, { - "codePostal": "76240", - "codeCommune": "76429", - "libelleAcheminement": "LE MESNIL ESNARD", - "nomCommune": "LE MESNIL ESNARD" + "codePostal": "76640", + "codeCommune": "76751", + "libelleAcheminement": "YEBLERON", + "nomCommune": "YEBLERON" }, { - "codePostal": "69380", - "codeCommune": "69212", - "libelleAcheminement": "ST JEAN DES VIGNES", - "nomCommune": "ST JEAN DES VIGNES" + "codePostal": "63600", + "codeCommune": "63341", + "libelleAcheminement": "ST FERREOL DES COTES", + "nomCommune": "ST FERREOL DES COTES" }, { - "codePostal": "18340", - "codeCommune": "18126", - "libelleAcheminement": "LEVET", - "nomCommune": "LEVET" + "codePostal": "65140", + "codeCommune": "65254", + "libelleAcheminement": "LAMEAC", + "nomCommune": "LAMEAC" }, { - "codePostal": "74350", - "codeCommune": "74177", - "libelleAcheminement": "MENTHONNEX EN BORNES", - "nomCommune": "MENTHONNEX EN BORNES" + "codePostal": "76540", + "codeCommune": "76685", + "libelleAcheminement": "THEROULDEVILLE", + "nomCommune": "THEROULDEVILLE" }, { - "codePostal": "76260", - "codeCommune": "76438", - "libelleAcheminement": "MILLEBOSC", - "nomCommune": "MILLEBOSC" + "codePostal": "24800", + "codeCommune": "24505", + "libelleAcheminement": "ST SULPICE D EXCIDEUIL", + "nomCommune": "ST SULPICE D EXCIDEUIL" }, { - "codePostal": "69440", - "codeCommune": "69219", - "libelleAcheminement": "ST LAURENT D AGNY", - "nomCommune": "ST LAURENT D AGNY" + "codePostal": "77410", + "codeCommune": "77005", + "libelleAcheminement": "ANNET SUR MARNE", + "nomCommune": "ANNET SUR MARNE" }, { - "codePostal": "18170", - "codeCommune": "18130", - "libelleAcheminement": "LOYE SUR ARNON", - "nomCommune": "LOYE SUR ARNON" + "codePostal": "63260", + "codeCommune": "63347", + "libelleAcheminement": "ST GENES DU RETZ", + "nomCommune": "ST GENES DU RETZ" }, { - "codePostal": "74270", - "codeCommune": "74178", - "libelleAcheminement": "MENTHONNEX SOUS CLERMONT", - "nomCommune": "MENTHONNEX SOUS CLERMONT" + "codePostal": "65350", + "codeCommune": "65259", + "libelleAcheminement": "LANSAC", + "nomCommune": "LANSAC" }, { - "codePostal": "76260", - "codeCommune": "76442", - "libelleAcheminement": "MONCHY SUR EU", - "nomCommune": "MONCHY SUR EU" + "codePostal": "76560", + "codeCommune": "76699", + "libelleAcheminement": "LE TORP MESNIL", + "nomCommune": "LE TORP MESNIL" }, { - "codePostal": "69850", - "codeCommune": "69227", - "libelleAcheminement": "ST MARTIN EN HAUT", - "nomCommune": "ST MARTIN EN HAUT" + "codePostal": "24200", + "codeCommune": "24512", + "libelleAcheminement": "ST VINCENT LE PALUEL", + "nomCommune": "ST VINCENT LE PALUEL" }, { - "codePostal": "18290", - "codeCommune": "18137", - "libelleAcheminement": "MAREUIL SUR ARNON", - "nomCommune": "MAREUIL SUR ARNON" + "codePostal": "77390", + "codeCommune": "77007", + "libelleAcheminement": "ARGENTIERES", + "nomCommune": "ARGENTIERES" }, { - "codePostal": "74110", - "codeCommune": "74188", - "libelleAcheminement": "MONTRIOND", - "nomCommune": "MONTRIOND" + "codePostal": "63340", + "codeCommune": "63352", + "libelleAcheminement": "ST GERMAIN LEMBRON", + "nomCommune": "ST GERMAIN LEMBRON" }, { - "codePostal": "76680", - "codeCommune": "76461", - "libelleAcheminement": "NEUFBOSC", - "nomCommune": "NEUFBOSC" + "codePostal": "65220", + "codeCommune": "65260", + "libelleAcheminement": "LAPEYRE", + "nomCommune": "LAPEYRE" }, { - "codePostal": "69440", - "codeCommune": "69228", - "libelleAcheminement": "CHABANIERE", - "nomCommune": "CHABANIERE" + "codePostal": "76580", + "codeCommune": "76709", + "libelleAcheminement": "LE TRAIT", + "nomCommune": "LE TRAIT" }, { - "codePostal": "18570", - "codeCommune": "18157", - "libelleAcheminement": "MORTHOMIERS", - "nomCommune": "MORTHOMIERS" + "codePostal": "24590", + "codeCommune": "24516", + "libelleAcheminement": "SALIGNAC EYVIGUES", + "nomCommune": "SALIGNAC EYVIGUES" }, { - "codePostal": "74110", - "codeCommune": "74191", - "libelleAcheminement": "MORZINE", - "nomCommune": "MORZINE" + "codePostal": "77440", + "codeCommune": "77008", + "libelleAcheminement": "ARMENTIERES EN BRIE", + "nomCommune": "ARMENTIERES EN BRIE" }, { - "codePostal": "76220", - "codeCommune": "76463", - "libelleAcheminement": "NEUF MARCHE", - "nomCommune": "NEUF MARCHE" + "codePostal": "63380", + "codeCommune": "63359", + "libelleAcheminement": "ST HILAIRE LES MONGES", + "nomCommune": "ST HILAIRE LES MONGES" }, { - "codePostal": "69440", - "codeCommune": "69228", - "libelleAcheminement": "CHABANIERE", - "nomCommune": "CHABANIERE" + "codePostal": "65330", + "codeCommune": "65274", + "libelleAcheminement": "LIBAROS", + "nomCommune": "LIBAROS" }, { - "codePostal": "18390", - "codeCommune": "18158", - "libelleAcheminement": "MOULINS SUR YEVRE", - "nomCommune": "MOULINS SUR YEVRE" + "codePostal": "76890", + "codeCommune": "76723", + "libelleAcheminement": "VASSONVILLE", + "nomCommune": "VASSONVILLE" }, { - "codePostal": "74160", - "codeCommune": "74201", - "libelleAcheminement": "NEYDENS", - "nomCommune": "NEYDENS" + "codePostal": "24200", + "codeCommune": "24520", + "libelleAcheminement": "SARLAT LA CANEDA", + "nomCommune": "SARLAT LA CANEDA" }, { - "codePostal": "76460", - "codeCommune": "76467", - "libelleAcheminement": "NEVILLE", - "nomCommune": "NEVILLE" + "codePostal": "77720", + "codeCommune": "77010", + "libelleAcheminement": "AUBEPIERRE OZOUER LE REPOS", + "nomCommune": "AUBEPIERRE OZOUER LE REPOS" }, { - "codePostal": "69440", - "codeCommune": "69241", - "libelleAcheminement": "TALUYERS", - "nomCommune": "TALUYERS" + "codePostal": "63720", + "codeCommune": "63362", + "libelleAcheminement": "ST IGNAT", + "nomCommune": "ST IGNAT" }, { - "codePostal": "18350", - "codeCommune": "18160", - "libelleAcheminement": "NERONDES", - "nomCommune": "NERONDES" + "codePostal": "65100", + "codeCommune": "65280", + "libelleAcheminement": "LOUBAJAC", + "nomCommune": "LOUBAJAC" }, { - "codePostal": "74490", - "codeCommune": "74205", - "libelleAcheminement": "ONNION", - "nomCommune": "ONNION" + "codePostal": "76150", + "codeCommune": "76728", + "libelleAcheminement": "LA VAUPALIERE", + "nomCommune": "LA VAUPALIERE" }, { - "codePostal": "76520", - "codeCommune": "76475", - "libelleAcheminement": "FRANQUEVILLE ST PIERRE", - "nomCommune": "FRANQUEVILLE ST PIERRE" + "codePostal": "24600", + "codeCommune": "24529", + "libelleAcheminement": "SEGONZAC", + "nomCommune": "SEGONZAC" }, { - "codePostal": "69240", - "codeCommune": "69248", - "libelleAcheminement": "THIZY LES BOURGS", - "nomCommune": "THIZY LES BOURGS" + "codePostal": "77167", + "codeCommune": "77016", + "libelleAcheminement": "BAGNEAUX SUR LOING", + "nomCommune": "BAGNEAUX SUR LOING" }, { - "codePostal": "18310", - "codeCommune": "18167", - "libelleAcheminement": "NOHANT EN GRACAY", - "nomCommune": "NOHANT EN GRACAY" + "codePostal": "63160", + "codeCommune": "63368", + "libelleAcheminement": "ST JULIEN DE COPPEL", + "nomCommune": "ST JULIEN DE COPPEL" }, { - "codePostal": "74190", - "codeCommune": "74208", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "65100", + "codeCommune": "65291", + "libelleAcheminement": "LUGAGNAN", + "nomCommune": "LUGAGNAN" }, { - "codePostal": "76590", - "codeCommune": "76478", - "libelleAcheminement": "NOTRE DAME DU PARC", - "nomCommune": "NOTRE DAME DU PARC" + "codePostal": "76450", + "codeCommune": "76736", + "libelleAcheminement": "VEULETTES SUR MER", + "nomCommune": "VEULETTES SUR MER" }, { - "codePostal": "69510", - "codeCommune": "69249", - "libelleAcheminement": "THURINS", - "nomCommune": "THURINS" + "codePostal": "24540", + "codeCommune": "24542", + "libelleAcheminement": "SOULAURES", + "nomCommune": "SOULAURES" }, { - "codePostal": "18350", - "codeCommune": "18175", - "libelleAcheminement": "OUROUER LES BOURDELINS", - "nomCommune": "OUROUER LES BOURDELINS" + "codePostal": "77700", + "codeCommune": "77018", + "libelleAcheminement": "BAILLY ROMAINVILLIERS", + "nomCommune": "BAILLY ROMAINVILLIERS" }, { - "codePostal": "74190", - "codeCommune": "74208", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "63390", + "codeCommune": "63369", + "libelleAcheminement": "ST JULIEN LA GENESTE", + "nomCommune": "ST JULIEN LA GENESTE" }, { - "codePostal": "76450", - "codeCommune": "76480", - "libelleAcheminement": "OCQUEVILLE", - "nomCommune": "OCQUEVILLE" + "codePostal": "65500", + "codeCommune": "65299", + "libelleAcheminement": "MARSAC", + "nomCommune": "MARSAC" }, { - "codePostal": "69820", - "codeCommune": "69258", - "libelleAcheminement": "VAUXRENARD", - "nomCommune": "VAUXRENARD" + "codePostal": "76750", + "codeCommune": "76738", + "libelleAcheminement": "VIEUX MANOIR", + "nomCommune": "VIEUX MANOIR" }, { - "codePostal": "18110", - "codeCommune": "18179", - "libelleAcheminement": "PIGNY", - "nomCommune": "PIGNY" + "codePostal": "24390", + "codeCommune": "24546", + "libelleAcheminement": "TEMPLE LAGUYON", + "nomCommune": "TEMPLE LAGUYON" }, { - "codePostal": "74190", - "codeCommune": "74208", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "77130", + "codeCommune": "77021", + "libelleAcheminement": "BARBEY", + "nomCommune": "BARBEY" }, { - "codePostal": "76450", - "codeCommune": "76490", - "libelleAcheminement": "OURVILLE EN CAUX", - "nomCommune": "OURVILLE EN CAUX" + "codePostal": "63820", + "codeCommune": "63370", + "libelleAcheminement": "ST JULIEN PUY LAVEZE", + "nomCommune": "ST JULIEN PUY LAVEZE" }, { - "codePostal": "69390", - "codeCommune": "69260", - "libelleAcheminement": "VERNAISON", - "nomCommune": "VERNAISON" + "codePostal": "65700", + "codeCommune": "65304", + "libelleAcheminement": "MAUBOURGUET", + "nomCommune": "MAUBOURGUET" }, { - "codePostal": "18300", - "codeCommune": "18200", - "libelleAcheminement": "ST BOUIZE", - "nomCommune": "ST BOUIZE" + "codePostal": "76260", + "codeCommune": "76745", + "libelleAcheminement": "VILLY SUR YERES", + "nomCommune": "VILLY SUR YERES" }, { - "codePostal": "74550", - "codeCommune": "74210", - "libelleAcheminement": "PERRIGNIER", - "nomCommune": "PERRIGNIER" + "codePostal": "24120", + "codeCommune": "24547", + "libelleAcheminement": "TERRASSON LAVILLEDIEU", + "nomCommune": "TERRASSON LAVILLEDIEU" }, { - "codePostal": "76450", - "codeCommune": "76493", - "libelleAcheminement": "PALUEL", - "nomCommune": "PALUEL" + "codePostal": "77118", + "codeCommune": "77025", + "libelleAcheminement": "BAZOCHES LES BRAY", + "nomCommune": "BAZOCHES LES BRAY" }, { - "codePostal": "69320", - "codeCommune": "69276", - "libelleAcheminement": "FEYZIN", - "nomCommune": "FEYZIN" + "codePostal": "63330", + "codeCommune": "63373", + "libelleAcheminement": "ST MAIGNER", + "nomCommune": "ST MAIGNER" }, { - "codePostal": "18400", - "codeCommune": "18201", - "libelleAcheminement": "ST CAPRAIS", - "nomCommune": "ST CAPRAIS" + "codePostal": "65130", + "codeCommune": "65306", + "libelleAcheminement": "MAUVEZIN", + "nomCommune": "MAUVEZIN" }, { - "codePostal": "74120", - "codeCommune": "74215", - "libelleAcheminement": "PRAZ SUR ARLY", - "nomCommune": "PRAZ SUR ARLY" + "codePostal": "76540", + "codeCommune": "76746", + "libelleAcheminement": "VINNEMERVILLE", + "nomCommune": "VINNEMERVILLE" }, { - "codePostal": "76650", - "codeCommune": "76497", - "libelleAcheminement": "PETIT COURONNE", - "nomCommune": "PETIT COURONNE" + "codePostal": "24300", + "codeCommune": "24548", + "libelleAcheminement": "TEYJAT", + "nomCommune": "TEYJAT" }, { - "codePostal": "69780", - "codeCommune": "69283", - "libelleAcheminement": "MIONS", - "nomCommune": "MIONS" + "codePostal": "77890", + "codeCommune": "77027", + "libelleAcheminement": "BEAUMONT DU GATINAIS", + "nomCommune": "BEAUMONT DU GATINAIS" }, { - "codePostal": "18220", - "codeCommune": "18202", - "libelleAcheminement": "ST CEOLS", - "nomCommune": "ST CEOLS" + "codePostal": "63600", + "codeCommune": "63374", + "libelleAcheminement": "ST MARTIN DES OLMES", + "nomCommune": "ST MARTIN DES OLMES" }, { - "codePostal": "74930", - "codeCommune": "74220", - "libelleAcheminement": "REIGNIER ESERY", - "nomCommune": "REIGNIER ESERY" + "codePostal": "65150", + "codeCommune": "65307", + "libelleAcheminement": "MAZERES DE NESTE", + "nomCommune": "MAZERES DE NESTE" }, { - "codePostal": "76280", - "codeCommune": "76501", - "libelleAcheminement": "PIERREFIQUES", - "nomCommune": "PIERREFIQUES" + "codePostal": "76520", + "codeCommune": "76753", + "libelleAcheminement": "YMARE", + "nomCommune": "YMARE" }, { - "codePostal": "69140", - "codeCommune": "69286", - "libelleAcheminement": "RILLIEUX LA PAPE", - "nomCommune": "RILLIEUX LA PAPE" + "codePostal": "24800", + "codeCommune": "24551", + "libelleAcheminement": "THIVIERS", + "nomCommune": "THIVIERS" }, { - "codePostal": "18340", - "codeCommune": "18212", - "libelleAcheminement": "ST GERMAIN DES BOIS", - "nomCommune": "ST GERMAIN DES BOIS" + "codePostal": "77540", + "codeCommune": "77031", + "libelleAcheminement": "BERNAY VILBERT", + "nomCommune": "BERNAY VILBERT" }, { - "codePostal": "74200", - "codeCommune": "74222", - "libelleAcheminement": "REYVROZ", - "nomCommune": "REYVROZ" + "codePostal": "63570", + "codeCommune": "63375", + "libelleAcheminement": "ST MARTIN DES PLAINS", + "nomCommune": "ST MARTIN DES PLAINS" }, { - "codePostal": "76360", - "codeCommune": "76503", - "libelleAcheminement": "PISSY POVILLE", - "nomCommune": "PISSY POVILLE" + "codePostal": "65250", + "codeCommune": "65309", + "libelleAcheminement": "MAZOUAU", + "nomCommune": "MAZOUAU" }, { - "codePostal": "69720", - "codeCommune": "69288", - "libelleAcheminement": "ST LAURENT DE MURE", - "nomCommune": "ST LAURENT DE MURE" + "codePostal": "76540", + "codeCommune": "76755", + "libelleAcheminement": "YPREVILLE BIVILLE", + "nomCommune": "YPREVILLE BIVILLE" }, { - "codePostal": "18320", - "codeCommune": "18215", - "libelleAcheminement": "ST HILAIRE DE GONDILLY", - "nomCommune": "ST HILAIRE DE GONDILLY" + "codePostal": "24350", + "codeCommune": "24553", + "libelleAcheminement": "TOCANE ST APRE", + "nomCommune": "TOCANE ST APRE" }, { - "codePostal": "74150", - "codeCommune": "74225", - "libelleAcheminement": "RUMILLY", - "nomCommune": "RUMILLY" + "codePostal": "77970", + "codeCommune": "77036", + "libelleAcheminement": "BOISDON", + "nomCommune": "BOISDON" }, { - "codePostal": "76840", - "codeCommune": "76513", - "libelleAcheminement": "QUEVILLON", - "nomCommune": "QUEVILLON" + "codePostal": "63710", + "codeCommune": "63380", + "libelleAcheminement": "ST NECTAIRE", + "nomCommune": "ST NECTAIRE" }, { - "codePostal": "69360", - "codeCommune": "69294", - "libelleAcheminement": "SEREZIN DU RHONE", - "nomCommune": "SEREZIN DU RHONE" + "codePostal": "65360", + "codeCommune": "65313", + "libelleAcheminement": "MOMERES", + "nomCommune": "MOMERES" }, { - "codePostal": "18140", - "codeCommune": "18220", - "libelleAcheminement": "ST LEGER LE PETIT", - "nomCommune": "ST LEGER LE PETIT" + "codePostal": "77630", + "codeCommune": "77006", + "libelleAcheminement": "ARBONNE LA FORET", + "nomCommune": "ARBONNE LA FORET" }, { - "codePostal": "74210", - "codeCommune": "74234", - "libelleAcheminement": "ST FERREOL", - "nomCommune": "ST FERREOL" + "codePostal": "24320", + "codeCommune": "24554", + "libelleAcheminement": "LA TOUR BLANCHE CERCLES", + "nomCommune": "LA TOUR BLANCHE CERCLES" }, { - "codePostal": "76230", - "codeCommune": "76517", - "libelleAcheminement": "QUINCAMPOIX", - "nomCommune": "QUINCAMPOIX" + "codePostal": "77350", + "codeCommune": "77038", + "libelleAcheminement": "BOISSETTES", + "nomCommune": "BOISSETTES" }, { - "codePostal": "69004", - "codeCommune": "69384", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 04" + "codePostal": "63230", + "codeCommune": "63381", + "libelleAcheminement": "ST OURS", + "nomCommune": "ST OURS" }, { - "codePostal": "18170", - "codeCommune": "18230", - "libelleAcheminement": "ST PIERRE LES BOIS", - "nomCommune": "ST PIERRE LES BOIS" + "codePostal": "65350", + "codeCommune": "65326", + "libelleAcheminement": "MUN", + "nomCommune": "MUN" }, { - "codePostal": "74170", - "codeCommune": "74236", - "libelleAcheminement": "ST GERVAIS LES BAINS", - "nomCommune": "ST GERVAIS LES BAINS" + "codePostal": "77570", + "codeCommune": "77011", + "libelleAcheminement": "AUFFERVILLE", + "nomCommune": "AUFFERVILLE" }, { - "codePostal": "76390", - "codeCommune": "76537", - "libelleAcheminement": "RONCHOIS", - "nomCommune": "RONCHOIS" + "codePostal": "24620", + "codeCommune": "24559", + "libelleAcheminement": "TURSAC", + "nomCommune": "TURSAC" }, { - "codePostal": "69005", - "codeCommune": "69385", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 05" + "codePostal": "77580", + "codeCommune": "77047", + "libelleAcheminement": "BOULEURS", + "nomCommune": "BOULEURS" }, { - "codePostal": "18210", - "codeCommune": "18231", - "libelleAcheminement": "ST PIERRE LES ETIEUX", - "nomCommune": "ST PIERRE LES ETIEUX" + "codePostal": "63790", + "codeCommune": "63401", + "libelleAcheminement": "ST VICTOR LA RIVIERE", + "nomCommune": "ST VICTOR LA RIVIERE" }, { - "codePostal": "74170", - "codeCommune": "74236", - "libelleAcheminement": "ST GERVAIS LES BAINS", - "nomCommune": "ST GERVAIS LES BAINS" + "codePostal": "65150", + "codeCommune": "65327", + "libelleAcheminement": "NESTIER", + "nomCommune": "NESTIER" }, { - "codePostal": "76680", - "codeCommune": "76538", - "libelleAcheminement": "ROSAY", - "nomCommune": "ROSAY" + "codePostal": "77560", + "codeCommune": "77012", + "libelleAcheminement": "AUGERS EN BRIE", + "nomCommune": "AUGERS EN BRIE" }, { - "codePostal": "70110", - "codeCommune": "70005", - "libelleAcheminement": "AILLEVANS", - "nomCommune": "AILLEVANS" + "codePostal": "24290", + "codeCommune": "24563", + "libelleAcheminement": "VALOJOULX", + "nomCommune": "VALOJOULX" }, { - "codePostal": "18340", - "codeCommune": "18248", - "libelleAcheminement": "SENNECAY", - "nomCommune": "SENNECAY" + "codePostal": "77780", + "codeCommune": "77048", + "libelleAcheminement": "BOURRON MARLOTTE", + "nomCommune": "BOURRON MARLOTTE" }, { - "codePostal": "74170", - "codeCommune": "74236", - "libelleAcheminement": "ST GERVAIS LES BAINS", - "nomCommune": "ST GERVAIS LES BAINS" + "codePostal": "63750", + "codeCommune": "63416", + "libelleAcheminement": "SAVENNES", + "nomCommune": "SAVENNES" }, { - "codePostal": "76210", - "codeCommune": "76543", - "libelleAcheminement": "ROUVILLE", - "nomCommune": "ROUVILLE" + "codePostal": "65100", + "codeCommune": "65334", + "libelleAcheminement": "OMEX", + "nomCommune": "OMEX" }, { - "codePostal": "70320", - "codeCommune": "70006", - "libelleAcheminement": "AILLEVILLERS ET LYAUMONT", - "nomCommune": "AILLEVILLERS ET LYAUMONT" + "codePostal": "77120", + "codeCommune": "77013", + "libelleAcheminement": "AULNOY", + "nomCommune": "AULNOY" }, { - "codePostal": "18190", - "codeCommune": "18268", - "libelleAcheminement": "UZAY LE VENON", - "nomCommune": "UZAY LE VENON" + "codePostal": "24150", + "codeCommune": "24566", + "libelleAcheminement": "VARENNES", + "nomCommune": "VARENNES" }, { - "codePostal": "74270", - "codeCommune": "74257", - "libelleAcheminement": "SALLENOVES", - "nomCommune": "SALLENOVES" + "codePostal": "77177", + "codeCommune": "77055", + "libelleAcheminement": "BROU SUR CHANTEREINE", + "nomCommune": "BROU SUR CHANTEREINE" }, { - "codePostal": "76370", - "codeCommune": "76545", - "libelleAcheminement": "ROUXMESNIL BOUTEILLES", - "nomCommune": "ROUXMESNIL BOUTEILLES" + "codePostal": "63260", + "codeCommune": "63432", + "libelleAcheminement": "THURET", + "nomCommune": "THURET" }, { - "codePostal": "70500", - "codeCommune": "70009", - "libelleAcheminement": "AISEY ET RICHECOURT", - "nomCommune": "AISEY ET RICHECOURT" + "codePostal": "65200", + "codeCommune": "65338", + "libelleAcheminement": "ORIGNAC", + "nomCommune": "ORIGNAC" }, { - "codePostal": "18300", - "codeCommune": "18274", - "libelleAcheminement": "VERDIGNY", - "nomCommune": "VERDIGNY" + "codePostal": "77118", + "codeCommune": "77019", + "libelleAcheminement": "BALLOY", + "nomCommune": "BALLOY" }, { - "codePostal": "74930", - "codeCommune": "74262", - "libelleAcheminement": "SCIENTRIER", - "nomCommune": "SCIENTRIER" + "codePostal": "24230", + "codeCommune": "24568", + "libelleAcheminement": "VELINES", + "nomCommune": "VELINES" }, { - "codePostal": "76730", - "codeCommune": "76546", - "libelleAcheminement": "ROYVILLE", - "nomCommune": "ROYVILLE" + "codePostal": "77760", + "codeCommune": "77056", + "libelleAcheminement": "BURCY", + "nomCommune": "BURCY" }, { - "codePostal": "70200", - "codeCommune": "70014", - "libelleAcheminement": "AMBLANS ET VELOTTE", - "nomCommune": "AMBLANS ET VELOTTE" + "codePostal": "63600", + "codeCommune": "63441", + "libelleAcheminement": "VALCIVIERES", + "nomCommune": "VALCIVIERES" }, { - "codePostal": "18360", - "codeCommune": "18278", - "libelleAcheminement": "VESDUN", - "nomCommune": "VESDUN" + "codePostal": "65380", + "codeCommune": "65339", + "libelleAcheminement": "ORINCLES", + "nomCommune": "ORINCLES" }, { - "codePostal": "74910", - "codeCommune": "74269", - "libelleAcheminement": "SEYSSEL", - "nomCommune": "SEYSSEL" + "codePostal": "77630", + "codeCommune": "77022", + "libelleAcheminement": "BARBIZON", + "nomCommune": "BARBIZON" }, { - "codePostal": "76690", - "codeCommune": "76547", - "libelleAcheminement": "LA RUE ST PIERRE", - "nomCommune": "LA RUE ST PIERRE" + "codePostal": "24120", + "codeCommune": "24580", + "libelleAcheminement": "VILLAC", + "nomCommune": "VILLAC" }, { - "codePostal": "70310", - "codeCommune": "70016", - "libelleAcheminement": "AMONT ET EFFRENEY", - "nomCommune": "AMONT ET EFFRENEY" + "codePostal": "77600", + "codeCommune": "77059", + "libelleAcheminement": "BUSSY ST MARTIN", + "nomCommune": "BUSSY ST MARTIN" }, { - "codePostal": "18500", - "codeCommune": "18281", - "libelleAcheminement": "VIGNOUX SUR BARANGEON", - "nomCommune": "VIGNOUX SUR BARANGEON" + "codePostal": "63580", + "codeCommune": "63442", + "libelleAcheminement": "VALZ SOUS CHATEAUNEUF", + "nomCommune": "VALZ SOUS CHATEAUNEUF" }, { - "codePostal": "74330", - "codeCommune": "74272", - "libelleAcheminement": "SILLINGY", - "nomCommune": "SILLINGY" + "codePostal": "65350", + "codeCommune": "65342", + "libelleAcheminement": "OSMETS", + "nomCommune": "OSMETS" }, { - "codePostal": "76730", - "codeCommune": "76549", - "libelleAcheminement": "SAANE ST JUST", - "nomCommune": "SAANE ST JUST" + "codePostal": "77510", + "codeCommune": "77030", + "libelleAcheminement": "BELLOT", + "nomCommune": "BELLOT" }, { - "codePostal": "70100", - "codeCommune": "70026", - "libelleAcheminement": "ARC LES GRAY", - "nomCommune": "ARC LES GRAY" + "codePostal": "25750", + "codeCommune": "25008", + "libelleAcheminement": "AIBRE", + "nomCommune": "AIBRE" }, { - "codePostal": "18330", - "codeCommune": "18290", - "libelleAcheminement": "VOUZERON", - "nomCommune": "VOUZERON" + "codePostal": "77320", + "codeCommune": "77066", + "libelleAcheminement": "CERNEUX", + "nomCommune": "CERNEUX" }, { - "codePostal": "74500", - "codeCommune": "74279", - "libelleAcheminement": "THOLLON LES MEMISES", - "nomCommune": "THOLLON LES MEMISES" + "codePostal": "63580", + "codeCommune": "63448", + "libelleAcheminement": "LE VERNET CHAMEANE", + "nomCommune": "LE VERNET CHAMEANE" }, { - "codePostal": "76430", - "codeCommune": "76551", - "libelleAcheminement": "SAINNEVILLE", - "nomCommune": "SAINNEVILLE" + "codePostal": "65190", + "codeCommune": "65346", + "libelleAcheminement": "OUEILLOUX", + "nomCommune": "OUEILLOUX" }, { - "codePostal": "70100", - "codeCommune": "70032", - "libelleAcheminement": "ATTRICOURT", - "nomCommune": "ATTRICOURT" + "codePostal": "77540", + "codeCommune": "77031", + "libelleAcheminement": "BERNAY VILBERT", + "nomCommune": "BERNAY VILBERT" }, { - "codePostal": "19200", - "codeCommune": "19002", - "libelleAcheminement": "AIX", - "nomCommune": "AIX" + "codePostal": "25360", + "codeCommune": "25009", + "libelleAcheminement": "AISSEY", + "nomCommune": "AISSEY" }, { - "codePostal": "74370", - "codeCommune": "74282", - "libelleAcheminement": "FILLIERE", - "nomCommune": "FILLIERE" + "codePostal": "77260", + "codeCommune": "77078", + "libelleAcheminement": "CHAMIGNY", + "nomCommune": "CHAMIGNY" }, { - "codePostal": "76490", - "codeCommune": "76557", - "libelleAcheminement": "ST ARNOULT", - "nomCommune": "ST ARNOULT" + "codePostal": "63480", + "codeCommune": "63454", + "libelleAcheminement": "VERTOLAYE", + "nomCommune": "VERTOLAYE" }, { - "codePostal": "70200", - "codeCommune": "70046", - "libelleAcheminement": "LES AYNANS", - "nomCommune": "LES AYNANS" + "codePostal": "65190", + "codeCommune": "65353", + "libelleAcheminement": "OZON", + "nomCommune": "OZON" }, { - "codePostal": "19190", - "codeCommune": "19003", - "libelleAcheminement": "ALBIGNAC", - "nomCommune": "ALBIGNAC" + "codePostal": "77590", + "codeCommune": "77037", + "libelleAcheminement": "BOIS LE ROI", + "nomCommune": "BOIS LE ROI" }, { - "codePostal": "74360", - "codeCommune": "74286", - "libelleAcheminement": "VACHERESSE", - "nomCommune": "VACHERESSE" + "codePostal": "25490", + "codeCommune": "25011", + "libelleAcheminement": "ALLENJOIE", + "nomCommune": "ALLENJOIE" }, { - "codePostal": "76520", - "codeCommune": "76558", - "libelleAcheminement": "ST AUBIN CELLOVILLE", - "nomCommune": "ST AUBIN CELLOVILLE" + "codePostal": "77540", + "codeCommune": "77087", + "libelleAcheminement": "LA CHAPELLE IGER", + "nomCommune": "LA CHAPELLE IGER" }, { - "codePostal": "70500", - "codeCommune": "70049", - "libelleAcheminement": "BARGES", - "nomCommune": "BARGES" + "codePostal": "63270", + "codeCommune": "63457", + "libelleAcheminement": "VIC LE COMTE", + "nomCommune": "VIC LE COMTE" }, { - "codePostal": "19380", - "codeCommune": "19004", - "libelleAcheminement": "ALBUSSAC", - "nomCommune": "ALBUSSAC" + "codePostal": "65270", + "codeCommune": "65360", + "libelleAcheminement": "PEYROUSE", + "nomCommune": "PEYROUSE" }, { - "codePostal": "74150", - "codeCommune": "74289", - "libelleAcheminement": "VALLIERES SUR FIER", - "nomCommune": "VALLIERES SUR FIER" + "codePostal": "77169", + "codeCommune": "77042", + "libelleAcheminement": "BOISSY LE CHATEL", + "nomCommune": "BOISSY LE CHATEL" }, { - "codePostal": "76190", - "codeCommune": "76559", - "libelleAcheminement": "ST AUBIN DE CRETOT", - "nomCommune": "ST AUBIN DE CRETOT" + "codePostal": "25550", + "codeCommune": "25013", + "libelleAcheminement": "ALLONDANS", + "nomCommune": "ALLONDANS" }, { - "codePostal": "70130", - "codeCommune": "70053", - "libelleAcheminement": "LES BATIES", - "nomCommune": "LES BATIES" + "codePostal": "77320", + "codeCommune": "77097", + "libelleAcheminement": "CHARTRONGES", + "nomCommune": "CHARTRONGES" }, { - "codePostal": "19120", - "codeCommune": "19019", - "libelleAcheminement": "BEAULIEU SUR DORDOGNE", - "nomCommune": "BEAULIEU SUR DORDOGNE" + "codePostal": "63270", + "codeCommune": "63457", + "libelleAcheminement": "VIC LE COMTE", + "nomCommune": "VIC LE COMTE" }, { - "codePostal": "74140", - "codeCommune": "74293", - "libelleAcheminement": "VEIGY FONCENEX", - "nomCommune": "VEIGY FONCENEX" + "codePostal": "65100", + "codeCommune": "65366", + "libelleAcheminement": "POUEYFERRE", + "nomCommune": "POUEYFERRE" }, { - "codePostal": "76510", - "codeCommune": "76562", - "libelleAcheminement": "ST AUBIN LE CAUF", - "nomCommune": "ST AUBIN LE CAUF" + "codePostal": "77600", + "codeCommune": "77059", + "libelleAcheminement": "BUSSY ST MARTIN", + "nomCommune": "BUSSY ST MARTIN" }, { - "codePostal": "70160", - "codeCommune": "70056", - "libelleAcheminement": "BAULAY", - "nomCommune": "BAULAY" + "codePostal": "25330", + "codeCommune": "25016", + "libelleAcheminement": "AMATHAY VESIGNEUX", + "nomCommune": "AMATHAY VESIGNEUX" }, { - "codePostal": "19120", - "codeCommune": "19019", - "libelleAcheminement": "BEAULIEU SUR DORDOGNE", - "nomCommune": "BEAULIEU SUR DORDOGNE" + "codePostal": "77570", + "codeCommune": "77099", + "libelleAcheminement": "CHATEAU LANDON", + "nomCommune": "CHATEAU LANDON" }, { - "codePostal": "74200", - "codeCommune": "74295", - "libelleAcheminement": "LA VERNAZ", - "nomCommune": "LA VERNAZ" + "codePostal": "63340", + "codeCommune": "63458", + "libelleAcheminement": "VILLENEUVE", + "nomCommune": "VILLENEUVE" }, { - "codePostal": "76430", - "codeCommune": "76563", - "libelleAcheminement": "ST AUBIN ROUTOT", - "nomCommune": "ST AUBIN ROUTOT" + "codePostal": "65230", + "codeCommune": "65368", + "libelleAcheminement": "POUY", + "nomCommune": "POUY" }, { - "codePostal": "70190", - "codeCommune": "70059", - "libelleAcheminement": "BEAUMOTTE AUBERTANS", - "nomCommune": "BEAUMOTTE AUBERTANS" + "codePostal": "77760", + "codeCommune": "77060", + "libelleAcheminement": "BUTHIERS", + "nomCommune": "BUTHIERS" }, { - "codePostal": "19510", - "codeCommune": "19022", - "libelleAcheminement": "BENAYES", - "nomCommune": "BENAYES" + "codePostal": "25330", + "codeCommune": "25017", + "libelleAcheminement": "AMONDANS", + "nomCommune": "AMONDANS" }, { - "codePostal": "74160", - "codeCommune": "74296", - "libelleAcheminement": "VERS", - "nomCommune": "VERS" + "codePostal": "77126", + "codeCommune": "77101", + "libelleAcheminement": "CHATENAY SUR SEINE", + "nomCommune": "CHATENAY SUR SEINE" }, { - "codePostal": "76740", - "codeCommune": "76564", - "libelleAcheminement": "ST AUBIN SUR MER", - "nomCommune": "ST AUBIN SUR MER" + "codePostal": "63310", + "codeCommune": "63459", + "libelleAcheminement": "VILLENEUVE LES CERFS", + "nomCommune": "VILLENEUVE LES CERFS" }, { - "codePostal": "70290", - "codeCommune": "70061", - "libelleAcheminement": "BELFAHY", - "nomCommune": "BELFAHY" + "codePostal": "65200", + "codeCommune": "65370", + "libelleAcheminement": "POUZAC", + "nomCommune": "POUZAC" }, { - "codePostal": "19190", - "codeCommune": "19023", - "libelleAcheminement": "BEYNAT", - "nomCommune": "BEYNAT" + "codePostal": "77240", + "codeCommune": "77067", + "libelleAcheminement": "CESSON", + "nomCommune": "CESSON" }, { - "codePostal": "74100", - "codeCommune": "74298", - "libelleAcheminement": "VETRAZ MONTHOUX", - "nomCommune": "VETRAZ MONTHOUX" + "codePostal": "25340", + "codeCommune": "25018", + "libelleAcheminement": "ANTEUIL", + "nomCommune": "ANTEUIL" }, { - "codePostal": "76270", - "codeCommune": "76567", - "libelleAcheminement": "STE BEUVE EN RIVIERE", - "nomCommune": "STE BEUVE EN RIVIERE" + "codePostal": "77500", + "codeCommune": "77108", + "libelleAcheminement": "CHELLES", + "nomCommune": "CHELLES" }, { - "codePostal": "70700", - "codeCommune": "70076", - "libelleAcheminement": "BONNEVENT VELLOREILLE", - "nomCommune": "BONNEVENT VELLOREILLE" + "codePostal": "63250", + "codeCommune": "63463", + "libelleAcheminement": "VISCOMTAT", + "nomCommune": "VISCOMTAT" }, { - "codePostal": "19230", - "codeCommune": "19024", - "libelleAcheminement": "BEYSSAC", - "nomCommune": "BEYSSAC" + "codePostal": "65330", + "codeCommune": "65381", + "libelleAcheminement": "SABARROS", + "nomCommune": "SABARROS" }, { - "codePostal": "74230", - "codeCommune": "74302", - "libelleAcheminement": "LES VILLARDS SUR THONES", - "nomCommune": "LES VILLARDS SUR THONES" + "codePostal": "77520", + "codeCommune": "77068", + "libelleAcheminement": "CESSOY EN MONTOIS", + "nomCommune": "CESSOY EN MONTOIS" }, { - "codePostal": "76190", - "codeCommune": "76568", - "libelleAcheminement": "ST CLAIR SUR LES MONTS", - "nomCommune": "ST CLAIR SUR LES MONTS" + "codePostal": "25250", + "codeCommune": "25019", + "libelleAcheminement": "APPENANS", + "nomCommune": "APPENANS" }, { - "codePostal": "70100", - "codeCommune": "70080", - "libelleAcheminement": "BOUHANS ET FEURG", - "nomCommune": "BOUHANS ET FEURG" + "codePostal": "77370", + "codeCommune": "77119", + "libelleAcheminement": "CLOS FONTAINE", + "nomCommune": "CLOS FONTAINE" }, { - "codePostal": "19110", - "codeCommune": "19028", - "libelleAcheminement": "BORT LES ORGUES", - "nomCommune": "BORT LES ORGUES" + "codePostal": "63500", + "codeCommune": "63466", + "libelleAcheminement": "VODABLE", + "nomCommune": "VODABLE" }, { - "codePostal": "74250", - "codeCommune": "74304", - "libelleAcheminement": "VILLE EN SALLAZ", - "nomCommune": "VILLE EN SALLAZ" + "codePostal": "65370", + "codeCommune": "65382", + "libelleAcheminement": "SACOUE", + "nomCommune": "SACOUE" }, { - "codePostal": "76210", - "codeCommune": "76576", - "libelleAcheminement": "ST EUSTACHE LA FORET", - "nomCommune": "ST EUSTACHE LA FORET" + "codePostal": "77930", + "codeCommune": "77069", + "libelleAcheminement": "CHAILLY EN BIERE", + "nomCommune": "CHAILLY EN BIERE" }, { - "codePostal": "70400", - "codeCommune": "70096", - "libelleAcheminement": "BREVILLIERS", - "nomCommune": "BREVILLIERS" + "codePostal": "25750", + "codeCommune": "25022", + "libelleAcheminement": "ARCEY", + "nomCommune": "ARCEY" }, { - "codePostal": "19100", - "codeCommune": "19031", - "libelleAcheminement": "BRIVE LA GAILLARDE", - "nomCommune": "BRIVE LA GAILLARDE" + "codePostal": "77450", + "codeCommune": "77125", + "libelleAcheminement": "CONDE STE LIBIAIRE", + "nomCommune": "CONDE STE LIBIAIRE" }, { - "codePostal": "76540", - "codeCommune": "76013", - "libelleAcheminement": "ANGERVILLE LA MARTEL", - "nomCommune": "ANGERVILLE LA MARTEL" + "codePostal": "63700", + "codeCommune": "63471", + "libelleAcheminement": "YOUX", + "nomCommune": "YOUX" }, { - "codePostal": "76590", - "codeCommune": "76577", - "libelleAcheminement": "STE FOY", - "nomCommune": "STE FOY" + "codePostal": "65170", + "codeCommune": "65384", + "libelleAcheminement": "SAILHAN", + "nomCommune": "SAILHAN" }, { - "codePostal": "70140", - "codeCommune": "70101", - "libelleAcheminement": "BROYE AUBIGNEY MONTSEUGNY", - "nomCommune": "BROYE AUBIGNEY MONTSEUGNY" + "codePostal": "77420", + "codeCommune": "77083", + "libelleAcheminement": "CHAMPS SUR MARNE", + "nomCommune": "CHAMPS SUR MARNE" }, { - "codePostal": "19330", - "codeCommune": "19042", - "libelleAcheminement": "CHANTEIX", - "nomCommune": "CHANTEIX" + "codePostal": "25170", + "codeCommune": "25030", + "libelleAcheminement": "AUDEUX", + "nomCommune": "AUDEUX" }, { - "codePostal": "76110", - "codeCommune": "76021", - "libelleAcheminement": "ANNOUVILLE VILMESNIL", - "nomCommune": "ANNOUVILLE VILMESNIL" + "codePostal": "77840", + "codeCommune": "77129", + "libelleAcheminement": "COULOMBS EN VALOIS", + "nomCommune": "COULOMBS EN VALOIS" }, { - "codePostal": "76690", - "codeCommune": "76583", - "libelleAcheminement": "ST GERMAIN SOUS CAILLY", - "nomCommune": "ST GERMAIN SOUS CAILLY" + "codePostal": "64390", + "codeCommune": "64004", + "libelleAcheminement": "ABITAIN", + "nomCommune": "ABITAIN" }, { - "codePostal": "70150", - "codeCommune": "70102", - "libelleAcheminement": "BRUSSEY", - "nomCommune": "BRUSSEY" + "codePostal": "65140", + "codeCommune": "65397", + "libelleAcheminement": "ST SEVER DE RUSTAN", + "nomCommune": "ST SEVER DE RUSTAN" }, { - "codePostal": "19600", - "codeCommune": "19047", - "libelleAcheminement": "CHARTRIER FERRIERE", - "nomCommune": "CHARTRIER FERRIERE" + "codePostal": "77720", + "codeCommune": "77086", + "libelleAcheminement": "LA CHAPELLE GAUTHIER", + "nomCommune": "LA CHAPELLE GAUTHIER" }, { - "codePostal": "76680", - "codeCommune": "76024", - "libelleAcheminement": "ARDOUVAL", - "nomCommune": "ARDOUVAL" + "codePostal": "25560", + "codeCommune": "25041", + "libelleAcheminement": "BANNANS", + "nomCommune": "BANNANS" }, { - "codePostal": "76430", - "codeCommune": "76586", - "libelleAcheminement": "ST GILLES DE LA NEUVILLE", - "nomCommune": "ST GILLES DE LA NEUVILLE" + "codePostal": "77126", + "codeCommune": "77133", + "libelleAcheminement": "COURCELLES EN BASSEE", + "nomCommune": "COURCELLES EN BASSEE" }, { - "codePostal": "70190", - "codeCommune": "70107", - "libelleAcheminement": "BUSSIERES", - "nomCommune": "BUSSIERES" + "codePostal": "64220", + "codeCommune": "64011", + "libelleAcheminement": "AINCILLE", + "nomCommune": "AINCILLE" }, { - "codePostal": "19500", - "codeCommune": "19050", - "libelleAcheminement": "CHAUFFOUR SUR VELL", - "nomCommune": "CHAUFFOUR SUR VELL" + "codePostal": "65370", + "codeCommune": "65402", + "libelleAcheminement": "SAMURAN", + "nomCommune": "SAMURAN" }, { - "codePostal": "76780", - "codeCommune": "76025", - "libelleAcheminement": "ARGUEIL", - "nomCommune": "ARGUEIL" + "codePostal": "77610", + "codeCommune": "77091", + "libelleAcheminement": "LES CHAPELLES BOURBON", + "nomCommune": "LES CHAPELLES BOURBON" }, { - "codePostal": "76680", - "codeCommune": "76588", - "libelleAcheminement": "ST HELLIER", - "nomCommune": "ST HELLIER" + "codePostal": "25210", + "codeCommune": "25042", + "libelleAcheminement": "LE BARBOUX", + "nomCommune": "LE BARBOUX" }, { - "codePostal": "70230", - "codeCommune": "70113", - "libelleAcheminement": "CENANS", - "nomCommune": "CENANS" + "codePostal": "77580", + "codeCommune": "77141", + "libelleAcheminement": "COUTEVROULT", + "nomCommune": "COUTEVROULT" }, { - "codePostal": "19500", - "codeCommune": "19057", - "libelleAcheminement": "COLLONGES LA ROUGE", - "nomCommune": "COLLONGES LA ROUGE" + "codePostal": "64220", + "codeCommune": "64013", + "libelleAcheminement": "AINHICE MONGELOS", + "nomCommune": "AINHICE MONGELOS" }, { - "codePostal": "76190", - "codeCommune": "76041", - "libelleAcheminement": "LES HAUTS DE CAUX", - "nomCommune": "LES HAUTS DE CAUX" + "codePostal": "65130", + "codeCommune": "65405", + "libelleAcheminement": "SARLABOUS", + "nomCommune": "SARLABOUS" }, { - "codePostal": "76590", - "codeCommune": "76589", - "libelleAcheminement": "ST HONORE", - "nomCommune": "ST HONORE" + "codePostal": "77820", + "codeCommune": "77103", + "libelleAcheminement": "CHATILLON LA BORDE", + "nomCommune": "CHATILLON LA BORDE" }, { - "codePostal": "70600", - "codeCommune": "70122", - "libelleAcheminement": "CHAMPLITTE", - "nomCommune": "CHAMPLITTE" + "codePostal": "25640", + "codeCommune": "25045", + "libelleAcheminement": "BATTENANS LES MINES", + "nomCommune": "BATTENANS LES MINES" }, { - "codePostal": "19350", - "codeCommune": "19059", - "libelleAcheminement": "CONCEZE", - "nomCommune": "CONCEZE" + "codePostal": "77190", + "codeCommune": "77152", + "libelleAcheminement": "DAMMARIE LES LYS", + "nomCommune": "DAMMARIE LES LYS" }, { - "codePostal": "76760", - "codeCommune": "76045", - "libelleAcheminement": "AUZOUVILLE L ESNEVAL", - "nomCommune": "AUZOUVILLE L ESNEVAL" + "codePostal": "64120", + "codeCommune": "64018", + "libelleAcheminement": "AMENDEUIX ONEIX", + "nomCommune": "AMENDEUIX ONEIX" }, { - "codePostal": "76150", - "codeCommune": "76594", - "libelleAcheminement": "ST JEAN DU CARDONNAY", - "nomCommune": "ST JEAN DU CARDONNAY" + "codePostal": "65140", + "codeCommune": "65414", + "libelleAcheminement": "SEGALAS", + "nomCommune": "SEGALAS" }, { - "codePostal": "70700", - "codeCommune": "70129", - "libelleAcheminement": "LA CHAPELLE ST QUILLAIN", - "nomCommune": "LA CHAPELLE ST QUILLAIN" + "codePostal": "77169", + "codeCommune": "77106", + "libelleAcheminement": "CHAUFFRY", + "nomCommune": "CHAUFFRY" }, { - "codePostal": "19340", - "codeCommune": "19064", - "libelleAcheminement": "COUFFY SUR SARSONNE", - "nomCommune": "COUFFY SUR SARSONNE" + "codePostal": "25110", + "codeCommune": "25047", + "libelleAcheminement": "BAUME LES DAMES", + "nomCommune": "BAUME LES DAMES" }, { - "codePostal": "76730", - "codeCommune": "76050", - "libelleAcheminement": "AVREMESNIL", - "nomCommune": "AVREMESNIL" + "codePostal": "77940", + "codeCommune": "77158", + "libelleAcheminement": "DIANT", + "nomCommune": "DIANT" }, { - "codePostal": "76119", - "codeCommune": "76605", - "libelleAcheminement": "STE MARGUERITE SUR MER", - "nomCommune": "STE MARGUERITE SUR MER" + "codePostal": "64390", + "codeCommune": "64022", + "libelleAcheminement": "ANDREIN", + "nomCommune": "ANDREIN" }, { - "codePostal": "70700", - "codeCommune": "70130", - "libelleAcheminement": "CHARCENNE", - "nomCommune": "CHARCENNE" + "codePostal": "65100", + "codeCommune": "65421", + "libelleAcheminement": "SERE LANSO", + "nomCommune": "SERE LANSO" }, { - "codePostal": "19340", - "codeCommune": "19065", - "libelleAcheminement": "COURTEIX", - "nomCommune": "COURTEIX" + "codePostal": "77500", + "codeCommune": "77108", + "libelleAcheminement": "CHELLES", + "nomCommune": "CHELLES" }, { - "codePostal": "76730", - "codeCommune": "76051", - "libelleAcheminement": "BACQUEVILLE EN CAUX", - "nomCommune": "BACQUEVILLE EN CAUX" + "codePostal": "25470", + "codeCommune": "25049", + "libelleAcheminement": "BELFAYS", + "nomCommune": "BELFAYS" }, { - "codePostal": "76280", - "codeCommune": "76609", - "libelleAcheminement": "STE MARIE AU BOSC", - "nomCommune": "STE MARIE AU BOSC" + "codePostal": "77940", + "codeCommune": "77172", + "libelleAcheminement": "ESMANS", + "nomCommune": "ESMANS" }, { - "codePostal": "70100", - "codeCommune": "70132", - "libelleAcheminement": "CHARGEY LES GRAY", - "nomCommune": "CHARGEY LES GRAY" + "codePostal": "64190", + "codeCommune": "64033", + "libelleAcheminement": "ARAUX", + "nomCommune": "ARAUX" }, { - "codePostal": "19520", - "codeCommune": "19066", - "libelleAcheminement": "CUBLAC", - "nomCommune": "CUBLAC" + "codePostal": "65120", + "codeCommune": "65424", + "libelleAcheminement": "SERS", + "nomCommune": "SERS" }, { - "codePostal": "76280", - "codeCommune": "76064", - "libelleAcheminement": "BEAUREPAIRE", - "nomCommune": "BEAUREPAIRE" + "codePostal": "77160", + "codeCommune": "77109", + "libelleAcheminement": "CHENOISE CUCHARMOY", + "nomCommune": "CHENOISE CUCHARMOY" }, { - "codePostal": "76290", - "codeCommune": "76616", - "libelleAcheminement": "ST MARTIN DU MANOIR", - "nomCommune": "ST MARTIN DU MANOIR" + "codePostal": "25500", + "codeCommune": "25050", + "libelleAcheminement": "LE BELIEU", + "nomCommune": "LE BELIEU" }, { - "codePostal": "70000", - "codeCommune": "70136", - "libelleAcheminement": "CHARMOILLE", - "nomCommune": "CHARMOILLE" + "codePostal": "77166", + "codeCommune": "77175", + "libelleAcheminement": "EVRY GREGY SUR YERRE", + "nomCommune": "EVRY GREGY SUR YERRE" }, { - "codePostal": "19220", - "codeCommune": "19069", - "libelleAcheminement": "DARAZAC", - "nomCommune": "DARAZAC" + "codePostal": "64210", + "codeCommune": "64035", + "libelleAcheminement": "ARBONNE", + "nomCommune": "ARBONNE" }, { - "codePostal": "76240", - "codeCommune": "76069", - "libelleAcheminement": "BELBEUF", - "nomCommune": "BELBEUF" + "codePostal": "65370", + "codeCommune": "65427", + "libelleAcheminement": "SIRADAN", + "nomCommune": "SIRADAN" }, { - "codePostal": "76160", - "codeCommune": "76617", - "libelleAcheminement": "ST MARTIN DU VIVIER", - "nomCommune": "ST MARTIN DU VIVIER" + "codePostal": "77700", + "codeCommune": "77111", + "libelleAcheminement": "CHESSY", + "nomCommune": "CHESSY" }, { - "codePostal": "70170", - "codeCommune": "70146", - "libelleAcheminement": "CHAUX LES PORT", - "nomCommune": "CHAUX LES PORT" + "codePostal": "25530", + "codeCommune": "25052", + "libelleAcheminement": "BELMONT", + "nomCommune": "BELMONT" }, { - "codePostal": "19800", - "codeCommune": "19081", - "libelleAcheminement": "EYREIN", - "nomCommune": "EYREIN" + "codePostal": "77150", + "codeCommune": "77180", + "libelleAcheminement": "FEROLLES ATTILLY", + "nomCommune": "FEROLLES ATTILLY" }, { - "codePostal": "76560", - "codeCommune": "76077", - "libelleAcheminement": "BENESVILLE", - "nomCommune": "BENESVILLE" + "codePostal": "64570", + "codeCommune": "64040", + "libelleAcheminement": "ARETTE", + "nomCommune": "ARETTE" }, { - "codePostal": "76370", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "65700", + "codeCommune": "65429", + "libelleAcheminement": "SOMBRUN", + "nomCommune": "SOMBRUN" }, { - "codePostal": "70400", - "codeCommune": "70147", - "libelleAcheminement": "CHAVANNE", - "nomCommune": "CHAVANNE" + "codePostal": "77760", + "codeCommune": "77112", + "libelleAcheminement": "CHEVRAINVILLIERS", + "nomCommune": "CHEVRAINVILLIERS" }, { - "codePostal": "19430", - "codeCommune": "19086", - "libelleAcheminement": "GOULLES", - "nomCommune": "GOULLES" + "codePostal": "25720", + "codeCommune": "25058", + "libelleAcheminement": "BEURE", + "nomCommune": "BEURE" }, { - "codePostal": "76450", - "codeCommune": "76091", - "libelleAcheminement": "BEUZEVILLE LA GUERARD", - "nomCommune": "BEUZEVILLE LA GUERARD" + "codePostal": "77760", + "codeCommune": "77198", + "libelleAcheminement": "FROMONT", + "nomCommune": "FROMONT" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "64370", + "codeCommune": "64048", + "libelleAcheminement": "ARNOS", + "nomCommune": "ARNOS" }, { - "codePostal": "70150", - "codeCommune": "70150", - "libelleAcheminement": "CHENEVREY ET MOROGNE", - "nomCommune": "CHENEVREY ET MOROGNE" + "codePostal": "65700", + "codeCommune": "65432", + "libelleAcheminement": "SOUBLECAUSE", + "nomCommune": "SOUBLECAUSE" }, { - "codePostal": "19500", - "codeCommune": "19093", - "libelleAcheminement": "JUGEALS NAZARETH", - "nomCommune": "JUGEALS NAZARETH" + "codePostal": "77710", + "codeCommune": "77115", + "libelleAcheminement": "CHEVRY EN SEREINE", + "nomCommune": "CHEVRY EN SEREINE" }, { - "codePostal": "76750", - "codeCommune": "76094", - "libelleAcheminement": "BIERVILLE", - "nomCommune": "BIERVILLE" + "codePostal": "25310", + "codeCommune": "25063", + "libelleAcheminement": "BLAMONT", + "nomCommune": "BLAMONT" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "77470", + "codeCommune": "77199", + "libelleAcheminement": "FUBLAINES", + "nomCommune": "FUBLAINES" }, { - "codePostal": "70000", - "codeCommune": "70163", - "libelleAcheminement": "COLOMBIER", - "nomCommune": "COLOMBIER" + "codePostal": "64120", + "codeCommune": "64049", + "libelleAcheminement": "AROUE ITHOROTS OLHAIBY", + "nomCommune": "AROUE ITHOROTS OLHAIBY" }, { - "codePostal": "19150", - "codeCommune": "19096", - "libelleAcheminement": "LADIGNAC SUR RONDELLES", - "nomCommune": "LADIGNAC SUR RONDELLES" + "codePostal": "65300", + "codeCommune": "65437", + "libelleAcheminement": "TAJAN", + "nomCommune": "TAJAN" }, { - "codePostal": "76420", - "codeCommune": "76095", - "libelleAcheminement": "BIHOREL", - "nomCommune": "BIHOREL" + "codePostal": "77410", + "codeCommune": "77118", + "libelleAcheminement": "CLAYE SOUILLY", + "nomCommune": "CLAYE SOUILLY" }, { - "codePostal": "76330", - "codeCommune": "76622", - "libelleAcheminement": "ST MAURICE D ETELAN", - "nomCommune": "ST MAURICE D ETELAN" + "codePostal": "25680", + "codeCommune": "25072", + "libelleAcheminement": "BONNAL", + "nomCommune": "BONNAL" }, { - "codePostal": "70120", - "codeCommune": "70165", - "libelleAcheminement": "COMBEAUFONTAINE", - "nomCommune": "COMBEAUFONTAINE" + "codePostal": "77370", + "codeCommune": "77201", + "libelleAcheminement": "GASTINS", + "nomCommune": "GASTINS" }, { - "codePostal": "19150", - "codeCommune": "19098", - "libelleAcheminement": "LAGARDE MARC LA TOUR", - "nomCommune": "LAGARDE MARC LA TOUR" + "codePostal": "64800", + "codeCommune": "64054", + "libelleAcheminement": "ARROS DE NAY", + "nomCommune": "ARROS DE NAY" }, { - "codePostal": "76340", - "codeCommune": "76101", - "libelleAcheminement": "BLANGY SUR BRESLE", - "nomCommune": "BLANGY SUR BRESLE" + "codePostal": "65220", + "codeCommune": "65448", + "libelleAcheminement": "TOURNOUS DARRE", + "nomCommune": "TOURNOUS DARRE" }, { - "codePostal": "76480", - "codeCommune": "76636", - "libelleAcheminement": "ST PIERRE DE VARENGEVILLE", - "nomCommune": "ST PIERRE DE VARENGEVILLE" + "codePostal": "77860", + "codeCommune": "77128", + "libelleAcheminement": "COUILLY PONT AUX DAMES", + "nomCommune": "COUILLY PONT AUX DAMES" }, { - "codePostal": "70300", - "codeCommune": "70172", - "libelleAcheminement": "LA CORBIERE", - "nomCommune": "LA CORBIERE" + "codePostal": "25560", + "codeCommune": "25085", + "libelleAcheminement": "BOUVERANS", + "nomCommune": "BOUVERANS" }, { - "codePostal": "19500", - "codeCommune": "19099", - "libelleAcheminement": "LAGLEYGEOLLE", - "nomCommune": "LAGLEYGEOLLE" + "codePostal": "77840", + "codeCommune": "77204", + "libelleAcheminement": "GERMIGNY SOUS COULOMBS", + "nomCommune": "GERMIGNY SOUS COULOMBS" }, { - "codePostal": "76240", - "codeCommune": "76103", - "libelleAcheminement": "BONSECOURS", - "nomCommune": "BONSECOURS" + "codePostal": "64410", + "codeCommune": "64063", + "libelleAcheminement": "ARZACQ ARRAZIGUET", + "nomCommune": "ARZACQ ARRAZIGUET" }, { - "codePostal": "76560", - "codeCommune": "76679", - "libelleAcheminement": "SOMMESNIL", - "nomCommune": "SOMMESNIL" + "codePostal": "65370", + "codeCommune": "65453", + "libelleAcheminement": "TROUBAT", + "nomCommune": "TROUBAT" }, { - "codePostal": "70400", - "codeCommune": "70182", - "libelleAcheminement": "COURMONT", - "nomCommune": "COURMONT" + "codePostal": "77580", + "codeCommune": "77130", + "libelleAcheminement": "COULOMMES", + "nomCommune": "COULOMMES" }, { - "codePostal": "19160", - "codeCommune": "19102", - "libelleAcheminement": "LAMAZIERE BASSE", - "nomCommune": "LAMAZIERE BASSE" + "codePostal": "25640", + "codeCommune": "25088", + "libelleAcheminement": "BRECONCHAUX", + "nomCommune": "BRECONCHAUX" }, { - "codePostal": "76190", - "codeCommune": "76110", - "libelleAcheminement": "BOIS HIMONT", - "nomCommune": "BOIS HIMONT" + "codePostal": "77890", + "codeCommune": "77207", + "libelleAcheminement": "GIRONVILLE", + "nomCommune": "GIRONVILLE" }, { - "codePostal": "76540", - "codeCommune": "76680", - "libelleAcheminement": "SORQUAINVILLE", - "nomCommune": "SORQUAINVILLE" + "codePostal": "64350", + "codeCommune": "64079", + "libelleAcheminement": "AURIONS IDERNES", + "nomCommune": "AURIONS IDERNES" }, { - "codePostal": "70240", - "codeCommune": "70186", - "libelleAcheminement": "LA CREUSE", - "nomCommune": "LA CREUSE" + "codePostal": "65140", + "codeCommune": "65454", + "libelleAcheminement": "TROULEY LABARTHE", + "nomCommune": "TROULEY LABARTHE" }, { - "codePostal": "19160", - "codeCommune": "19113", - "libelleAcheminement": "LIGINIAC", - "nomCommune": "LIGINIAC" + "codePostal": "77540", + "codeCommune": "77135", + "libelleAcheminement": "COURPALAY", + "nomCommune": "COURPALAY" }, { - "codePostal": "76750", - "codeCommune": "76113", - "libelleAcheminement": "BOISSAY", - "nomCommune": "BOISSAY" + "codePostal": "25170", + "codeCommune": "25101", + "libelleAcheminement": "BURGILLE", + "nomCommune": "BURGILLE" }, { - "codePostal": "76430", - "codeCommune": "76684", - "libelleAcheminement": "TANCARVILLE", - "nomCommune": "TANCARVILLE" + "codePostal": "77880", + "codeCommune": "77216", + "libelleAcheminement": "GREZ SUR LOING", + "nomCommune": "GREZ SUR LOING" }, { - "codePostal": "70160", - "codeCommune": "70190", - "libelleAcheminement": "CUBRY LES FAVERNEY", - "nomCommune": "CUBRY LES FAVERNEY" + "codePostal": "64330", + "codeCommune": "64084", + "libelleAcheminement": "AYDIE", + "nomCommune": "AYDIE" }, { - "codePostal": "19470", - "codeCommune": "19122", - "libelleAcheminement": "MADRANGES", - "nomCommune": "MADRANGES" + "codePostal": "65150", + "codeCommune": "65455", + "libelleAcheminement": "TUZAGUET", + "nomCommune": "TUZAGUET" }, { - "codePostal": "76710", - "codeCommune": "76123", - "libelleAcheminement": "BOSC GUERARD ST ADRIEN", - "nomCommune": "BOSC GUERARD ST ADRIEN" + "codePostal": "77390", + "codeCommune": "77136", + "libelleAcheminement": "COURQUETAINE", + "nomCommune": "COURQUETAINE" }, { - "codePostal": "76790", - "codeCommune": "76693", - "libelleAcheminement": "LE TILLEUL", - "nomCommune": "LE TILLEUL" + "codePostal": "25170", + "codeCommune": "25101", + "libelleAcheminement": "BURGILLE", + "nomCommune": "BURGILLE" }, { - "codePostal": "70150", - "codeCommune": "70193", - "libelleAcheminement": "CULT", - "nomCommune": "CULT" + "codePostal": "77600", + "codeCommune": "77221", + "libelleAcheminement": "GUERMANTES", + "nomCommune": "GUERMANTES" }, { - "codePostal": "19320", - "codeCommune": "19125", - "libelleAcheminement": "MARCILLAC LA CROISILLE", - "nomCommune": "MARCILLAC LA CROISILLE" + "codePostal": "64430", + "codeCommune": "64092", + "libelleAcheminement": "BANCA", + "nomCommune": "BANCA" }, { - "codePostal": "76530", - "codeCommune": "76131", - "libelleAcheminement": "LA BOUILLE", - "nomCommune": "LA BOUILLE" + "codePostal": "65300", + "codeCommune": "65456", + "libelleAcheminement": "UGLAS", + "nomCommune": "UGLAS" }, { - "codePostal": "76590", - "codeCommune": "76698", - "libelleAcheminement": "TORCY LE PETIT", - "nomCommune": "TORCY LE PETIT" + "codePostal": "77580", + "codeCommune": "77142", + "libelleAcheminement": "CRECY LA CHAPELLE", + "nomCommune": "CRECY LA CHAPELLE" }, { - "codePostal": "70180", - "codeCommune": "70198", - "libelleAcheminement": "DAMPIERRE SUR SALON", - "nomCommune": "DAMPIERRE SUR SALON" + "codePostal": "25120", + "codeCommune": "25108", + "libelleAcheminement": "CERNAY L EGLISE", + "nomCommune": "CERNAY L EGLISE" }, { - "codePostal": "19500", - "codeCommune": "19126", - "libelleAcheminement": "MARCILLAC LA CROZE", - "nomCommune": "MARCILLAC LA CROZE" + "codePostal": "77390", + "codeCommune": "77222", + "libelleAcheminement": "GUIGNES", + "nomCommune": "GUIGNES" }, { - "codePostal": "76680", - "codeCommune": "76139", - "libelleAcheminement": "BRADIANCOURT", - "nomCommune": "BRADIANCOURT" + "codePostal": "64130", + "codeCommune": "64093", + "libelleAcheminement": "BARCUS", + "nomCommune": "BARCUS" }, { - "codePostal": "76560", - "codeCommune": "76699", - "libelleAcheminement": "LE TORP MESNIL", - "nomCommune": "LE TORP MESNIL" + "codePostal": "65500", + "codeCommune": "65460", + "libelleAcheminement": "VIC EN BIGORRE", + "nomCommune": "VIC EN BIGORRE" }, { - "codePostal": "70160", - "codeCommune": "70214", - "libelleAcheminement": "EQUEVILLEY", - "nomCommune": "EQUEVILLEY" + "codePostal": "77390", + "codeCommune": "77145", + "libelleAcheminement": "CRISENOY", + "nomCommune": "CRISENOY" }, { - "codePostal": "19250", - "codeCommune": "19136", - "libelleAcheminement": "MEYMAC", - "nomCommune": "MEYMAC" + "codePostal": "25170", + "codeCommune": "25119", + "libelleAcheminement": "CHAMPVANS LES MOULINS", + "nomCommune": "CHAMPVANS LES MOULINS" }, { - "codePostal": "76110", - "codeCommune": "76143", - "libelleAcheminement": "BRETTEVILLE DU GRAND CAUX", - "nomCommune": "BRETTEVILLE DU GRAND CAUX" + "codePostal": "77440", + "codeCommune": "77231", + "libelleAcheminement": "ISLES LES MELDEUSES", + "nomCommune": "ISLES LES MELDEUSES" }, { - "codePostal": "76890", - "codeCommune": "76700", - "libelleAcheminement": "TOTES", - "nomCommune": "TOTES" + "codePostal": "64390", + "codeCommune": "64096", + "libelleAcheminement": "BARRAUTE CAMU", + "nomCommune": "BARRAUTE CAMU" }, { - "codePostal": "70700", - "codeCommune": "70222", - "libelleAcheminement": "ETRELLES ET LA MONTBLEUSE", - "nomCommune": "ETRELLES ET LA MONTBLEUSE" + "codePostal": "65220", + "codeCommune": "65461", + "libelleAcheminement": "VIDOU", + "nomCommune": "VIDOU" }, { - "codePostal": "19500", - "codeCommune": "19138", - "libelleAcheminement": "MEYSSAC", - "nomCommune": "MEYSSAC" + "codePostal": "77183", + "codeCommune": "77146", + "libelleAcheminement": "CROISSY BEAUBOURG", + "nomCommune": "CROISSY BEAUBOURG" }, { - "codePostal": "76750", - "codeCommune": "76146", - "libelleAcheminement": "BUCHY", - "nomCommune": "BUCHY" + "codePostal": "25270", + "codeCommune": "25122", + "libelleAcheminement": "CHAPELLE D HUIN", + "nomCommune": "CHAPELLE D HUIN" }, { - "codePostal": "76410", - "codeCommune": "76705", - "libelleAcheminement": "TOURVILLE LA RIVIERE", - "nomCommune": "TOURVILLE LA RIVIERE" + "codePostal": "77230", + "codeCommune": "77241", + "libelleAcheminement": "JUILLY", + "nomCommune": "JUILLY" }, { - "codePostal": "70150", - "codeCommune": "70224", - "libelleAcheminement": "ETUZ", - "nomCommune": "ETUZ" + "codePostal": "64350", + "codeCommune": "64098", + "libelleAcheminement": "BASSILLON VAUZE", + "nomCommune": "BASSILLON VAUZE" }, { - "codePostal": "19340", - "codeCommune": "19141", - "libelleAcheminement": "MONESTIER MERLINES", - "nomCommune": "MONESTIER MERLINES" + "codePostal": "65400", + "codeCommune": "65467", + "libelleAcheminement": "VIER BORDES", + "nomCommune": "VIER BORDES" }, { - "codePostal": "76890", - "codeCommune": "76149", - "libelleAcheminement": "BUTOT", - "nomCommune": "BUTOT" + "codePostal": "77230", + "codeCommune": "77153", + "libelleAcheminement": "DAMMARTIN EN GOELE", + "nomCommune": "DAMMARTIN EN GOELE" }, { - "codePostal": "76111", - "codeCommune": "76726", - "libelleAcheminement": "VATTETOT SUR MER", - "nomCommune": "VATTETOT SUR MER" + "codePostal": "25840", + "codeCommune": "25130", + "libelleAcheminement": "CHATEAUVIEUX LES FOSSES", + "nomCommune": "CHATEAUVIEUX LES FOSSES" }, { - "codePostal": "70200", - "codeCommune": "70229", - "libelleAcheminement": "FAYMONT", - "nomCommune": "FAYMONT" + "codePostal": "77650", + "codeCommune": "77256", + "libelleAcheminement": "LIZINES", + "nomCommune": "LIZINES" }, { - "codePostal": "19210", - "codeCommune": "19144", - "libelleAcheminement": "MONTGIBAUD", - "nomCommune": "MONTGIBAUD" + "codePostal": "64190", + "codeCommune": "64099", + "libelleAcheminement": "BASTANES", + "nomCommune": "BASTANES" }, { - "codePostal": "76690", - "codeCommune": "76152", - "libelleAcheminement": "CAILLY", - "nomCommune": "CAILLY" + "codePostal": "65220", + "codeCommune": "65474", + "libelleAcheminement": "VILLEMBITS", + "nomCommune": "VILLEMBITS" }, { - "codePostal": "76680", - "codeCommune": "76733", - "libelleAcheminement": "VENTES ST REMY", - "nomCommune": "VENTES ST REMY" + "codePostal": "77820", + "codeCommune": "77165", + "libelleAcheminement": "LES ECRENNES", + "nomCommune": "LES ECRENNES" }, { - "codePostal": "70120", - "codeCommune": "70230", - "libelleAcheminement": "FEDRY", - "nomCommune": "FEDRY" + "codePostal": "25190", + "codeCommune": "25138", + "libelleAcheminement": "LES TERRES DE CHAUX", + "nomCommune": "LES TERRES DE CHAUX" }, { - "codePostal": "19160", - "codeCommune": "19148", - "libelleAcheminement": "NEUVIC", - "nomCommune": "NEUVIC" + "codePostal": "77560", + "codeCommune": "77262", + "libelleAcheminement": "LOUAN VILLEGRUIS FONTAINE", + "nomCommune": "LOUAN VILLEGRUIS FONTAINE" }, { - "codePostal": "76890", - "codeCommune": "76153", - "libelleAcheminement": "CALLEVILLE LES DEUX EGLISES", - "nomCommune": "CALLEVILLE LES DEUX EGLISES" + "codePostal": "64490", + "codeCommune": "64104", + "libelleAcheminement": "BEDOUS", + "nomCommune": "BEDOUS" }, { - "codePostal": "76280", - "codeCommune": "76734", - "libelleAcheminement": "VERGETOT", - "nomCommune": "VERGETOT" + "codePostal": "65230", + "codeCommune": "65475", + "libelleAcheminement": "VILLEMUR", + "nomCommune": "VILLEMUR" }, { - "codePostal": "70160", - "codeCommune": "70236", - "libelleAcheminement": "FLEUREY LES FAVERNEY", - "nomCommune": "FLEUREY LES FAVERNEY" + "codePostal": "77620", + "codeCommune": "77168", + "libelleAcheminement": "EGREVILLE", + "nomCommune": "EGREVILLE" }, { - "codePostal": "19500", - "codeCommune": "19150", - "libelleAcheminement": "NOAILHAC", - "nomCommune": "NOAILHAC" + "codePostal": "25430", + "codeCommune": "25145", + "libelleAcheminement": "CHAZOT", + "nomCommune": "CHAZOT" }, { - "codePostal": "76190", - "codeCommune": "76160", - "libelleAcheminement": "CARVILLE LA FOLLETIERE", - "nomCommune": "CARVILLE LA FOLLETIERE" + "codePostal": "77570", + "codeCommune": "77271", + "libelleAcheminement": "MAISONCELLES EN GATINAIS", + "nomCommune": "MAISONCELLES EN GATINAIS" }, { - "codePostal": "76450", - "codeCommune": "76736", - "libelleAcheminement": "VEULETTES SUR MER", - "nomCommune": "VEULETTES SUR MER" + "codePostal": "64160", + "codeCommune": "64114", + "libelleAcheminement": "BERNADETS", + "nomCommune": "BERNADETS" }, { - "codePostal": "70800", - "codeCommune": "70240", - "libelleAcheminement": "FONTAINE LES LUXEUIL", - "nomCommune": "FONTAINE LES LUXEUIL" + "codePostal": "65200", + "codeCommune": "65479", + "libelleAcheminement": "VISKER", + "nomCommune": "VISKER" }, { - "codePostal": "19410", - "codeCommune": "19154", - "libelleAcheminement": "ORGNAC SUR VEZERE", - "nomCommune": "ORGNAC SUR VEZERE" + "codePostal": "77450", + "codeCommune": "77171", + "libelleAcheminement": "ESBLY", + "nomCommune": "ESBLY" }, { - "codePostal": "76590", - "codeCommune": "76173", - "libelleAcheminement": "LA CHAUSSEE", - "nomCommune": "LA CHAUSSEE" + "codePostal": "25320", + "codeCommune": "25147", + "libelleAcheminement": "CHEMAUDIN ET VAUX", + "nomCommune": "CHEMAUDIN ET VAUX" }, { - "codePostal": "76160", - "codeCommune": "76740", - "libelleAcheminement": "LA VIEUX RUE", - "nomCommune": "LA VIEUX RUE" + "codePostal": "77560", + "codeCommune": "77275", + "libelleAcheminement": "LES MARETS", + "nomCommune": "LES MARETS" }, { - "codePostal": "70210", - "codeCommune": "70242", - "libelleAcheminement": "FONTENOIS LA VILLE", - "nomCommune": "FONTENOIS LA VILLE" + "codePostal": "64130", + "codeCommune": "64115", + "libelleAcheminement": "BERROGAIN LARUNS", + "nomCommune": "BERROGAIN LARUNS" }, { - "codePostal": "19300", - "codeCommune": "19159", - "libelleAcheminement": "PERET BEL AIR", - "nomCommune": "PERET BEL AIR" + "codePostal": "66210", + "codeCommune": "66004", + "libelleAcheminement": "LES ANGLES", + "nomCommune": "LES ANGLES" }, { - "codePostal": "76450", - "codeCommune": "76176", - "libelleAcheminement": "CLASVILLE", - "nomCommune": "CLASVILLE" + "codePostal": "77139", + "codeCommune": "77173", + "libelleAcheminement": "ETREPILLY", + "nomCommune": "ETREPILLY" }, { - "codePostal": "76360", - "codeCommune": "76743", - "libelleAcheminement": "VILLERS ECALLES", - "nomCommune": "VILLERS ECALLES" + "codePostal": "25530", + "codeCommune": "25151", + "libelleAcheminement": "CHEVIGNEY LES VERCEL", + "nomCommune": "CHEVIGNEY LES VERCEL" }, { - "codePostal": "70300", - "codeCommune": "70245", - "libelleAcheminement": "FOUGEROLLES ST VALBERT", - "nomCommune": "FOUGEROLLES ST VALBERT" + "codePostal": "77130", + "codeCommune": "77279", + "libelleAcheminement": "MAROLLES SUR SEINE", + "nomCommune": "MAROLLES SUR SEINE" }, { - "codePostal": "19170", - "codeCommune": "19160", - "libelleAcheminement": "PEROLS SUR VEZERE", - "nomCommune": "PEROLS SUR VEZERE" + "codePostal": "64150", + "codeCommune": "64117", + "libelleAcheminement": "BESINGRAND", + "nomCommune": "BESINGRAND" }, { - "codePostal": "76690", - "codeCommune": "76177", - "libelleAcheminement": "CLAVILLE MOTTEVILLE", - "nomCommune": "CLAVILLE MOTTEVILLE" + "codePostal": "66110", + "codeCommune": "66018", + "libelleAcheminement": "LA BASTIDE", + "nomCommune": "LA BASTIDE" }, { - "codePostal": "76640", - "codeCommune": "76751", - "libelleAcheminement": "YEBLERON", - "nomCommune": "YEBLERON" + "codePostal": "77220", + "codeCommune": "77177", + "libelleAcheminement": "FAVIERES", + "nomCommune": "FAVIERES" }, { - "codePostal": "70800", - "codeCommune": "70249", - "libelleAcheminement": "FRANCALMONT", - "nomCommune": "FRANCALMONT" + "codePostal": "25440", + "codeCommune": "25154", + "libelleAcheminement": "CHOUZELOT", + "nomCommune": "CHOUZELOT" }, { - "codePostal": "19120", - "codeCommune": "19170", - "libelleAcheminement": "QUEYSSAC LES VIGNES", - "nomCommune": "QUEYSSAC LES VIGNES" + "codePostal": "77320", + "codeCommune": "77287", + "libelleAcheminement": "MEILLERAY", + "nomCommune": "MEILLERAY" }, { - "codePostal": "76640", - "codeCommune": "76182", - "libelleAcheminement": "CLIPONVILLE", - "nomCommune": "CLIPONVILLE" + "codePostal": "64120", + "codeCommune": "64120", + "libelleAcheminement": "BEYRIE SUR JOYEUSE", + "nomCommune": "BEYRIE SUR JOYEUSE" }, { - "codePostal": "76540", - "codeCommune": "76755", - "libelleAcheminement": "YPREVILLE BIVILLE", - "nomCommune": "YPREVILLE BIVILLE" + "codePostal": "66210", + "codeCommune": "66027", + "libelleAcheminement": "LA CABANASSE", + "nomCommune": "LA CABANASSE" }, { - "codePostal": "70200", - "codeCommune": "70250", - "libelleAcheminement": "FRANCHEVELLE", - "nomCommune": "FRANCHEVELLE" + "codePostal": "77167", + "codeCommune": "77178", + "libelleAcheminement": "FAY LES NEMOURS", + "nomCommune": "FAY LES NEMOURS" }, { - "codePostal": "19220", - "codeCommune": "19173", - "libelleAcheminement": "RILHAC XAINTRIE", - "nomCommune": "RILHAC XAINTRIE" + "codePostal": "25340", + "codeCommune": "25156", + "libelleAcheminement": "PAYS DE CLERVAL", + "nomCommune": "PAYS DE CLERVAL" }, { - "codePostal": "76400", - "codeCommune": "76183", - "libelleAcheminement": "COLLEVILLE", - "nomCommune": "COLLEVILLE" + "codePostal": "77000", + "codeCommune": "77288", + "libelleAcheminement": "MELUN", + "nomCommune": "MELUN" }, { - "codePostal": "77760", - "codeCommune": "77001", - "libelleAcheminement": "ACHERES LA FORET", - "nomCommune": "ACHERES LA FORET" + "codePostal": "64240", + "codeCommune": "64134", + "libelleAcheminement": "BONLOC", + "nomCommune": "BONLOC" }, { - "codePostal": "70210", - "codeCommune": "70269", - "libelleAcheminement": "GIREFONTAINE", - "nomCommune": "GIREFONTAINE" + "codePostal": "66300", + "codeCommune": "66029", + "libelleAcheminement": "CAIXAS", + "nomCommune": "CAIXAS" }, { - "codePostal": "19160", - "codeCommune": "19175", - "libelleAcheminement": "ROCHE LE PEYROUX", - "nomCommune": "ROCHE LE PEYROUX" + "codePostal": "77260", + "codeCommune": "77183", + "libelleAcheminement": "LA FERTE SOUS JOUARRE", + "nomCommune": "LA FERTE SOUS JOUARRE" }, { - "codePostal": "76740", - "codeCommune": "76190", - "libelleAcheminement": "CRASVILLE LA ROCQUEFORT", - "nomCommune": "CRASVILLE LA ROCQUEFORT" + "codePostal": "25300", + "codeCommune": "25157", + "libelleAcheminement": "LA CLUSE ET MIJOUX", + "nomCommune": "LA CLUSE ET MIJOUX" }, { - "codePostal": "77760", - "codeCommune": "77003", - "libelleAcheminement": "AMPONVILLE", - "nomCommune": "AMPONVILLE" + "codePostal": "77410", + "codeCommune": "77292", + "libelleAcheminement": "MESSY", + "nomCommune": "MESSY" }, { - "codePostal": "70110", - "codeCommune": "70273", - "libelleAcheminement": "GRAMMONT", - "nomCommune": "GRAMMONT" + "codePostal": "64510", + "codeCommune": "64138", + "libelleAcheminement": "BORDES", + "nomCommune": "BORDES" }, { - "codePostal": "19500", - "codeCommune": "19179", - "libelleAcheminement": "SAILLAC", - "nomCommune": "SAILLAC" + "codePostal": "66600", + "codeCommune": "66030", + "libelleAcheminement": "CALCE", + "nomCommune": "CALCE" }, { - "codePostal": "76680", - "codeCommune": "76200", - "libelleAcheminement": "CRITOT", - "nomCommune": "CRITOT" + "codePostal": "77300", + "codeCommune": "77186", + "libelleAcheminement": "FONTAINEBLEAU", + "nomCommune": "FONTAINEBLEAU" }, { - "codePostal": "77390", - "codeCommune": "77004", - "libelleAcheminement": "ANDREZEL", - "nomCommune": "ANDREZEL" + "codePostal": "25390", + "codeCommune": "25161", + "libelleAcheminement": "CONSOLATION MAISONNETTES", + "nomCommune": "CONSOLATION MAISONNETTES" }, { - "codePostal": "70100", - "codeCommune": "70279", - "libelleAcheminement": "GRAY", - "nomCommune": "GRAY" + "codePostal": "77570", + "codeCommune": "77297", + "libelleAcheminement": "MONDREVILLE", + "nomCommune": "MONDREVILLE" }, { - "codePostal": "19390", - "codeCommune": "19181", - "libelleAcheminement": "ST AUGUSTIN", - "nomCommune": "ST AUGUSTIN" + "codePostal": "64330", + "codeCommune": "64141", + "libelleAcheminement": "BOUEILH BOUEILHO LASQUE", + "nomCommune": "BOUEILH BOUEILHO LASQUE" }, { - "codePostal": "76190", - "codeCommune": "76203", - "libelleAcheminement": "CROIX MARE", - "nomCommune": "CROIX MARE" + "codePostal": "66500", + "codeCommune": "66034", + "libelleAcheminement": "CAMPOME", + "nomCommune": "CAMPOME" }, { - "codePostal": "77560", - "codeCommune": "77012", - "libelleAcheminement": "AUGERS EN BRIE", - "nomCommune": "AUGERS EN BRIE" + "codePostal": "77480", + "codeCommune": "77187", + "libelleAcheminement": "FONTAINE FOURCHES", + "nomCommune": "FONTAINE FOURCHES" }, { - "codePostal": "70100", - "codeCommune": "70280", - "libelleAcheminement": "GRAY LA VILLE", - "nomCommune": "GRAY LA VILLE" + "codePostal": "25440", + "codeCommune": "25185", + "libelleAcheminement": "CUSSEY SUR LISON", + "nomCommune": "CUSSEY SUR LISON" }, { - "codePostal": "19130", - "codeCommune": "19182", - "libelleAcheminement": "ST AULAIRE", - "nomCommune": "ST AULAIRE" + "codePostal": "77520", + "codeCommune": "77298", + "libelleAcheminement": "MONS EN MONTOIS", + "nomCommune": "MONS EN MONTOIS" }, { - "codePostal": "76220", - "codeCommune": "76208", - "libelleAcheminement": "CUY ST FIACRE", - "nomCommune": "CUY ST FIACRE" + "codePostal": "64240", + "codeCommune": "64147", + "libelleAcheminement": "BRISCOUS", + "nomCommune": "BRISCOUS" }, { - "codePostal": "77210", - "codeCommune": "77014", - "libelleAcheminement": "AVON", - "nomCommune": "AVON" + "codePostal": "66600", + "codeCommune": "66041", + "libelleAcheminement": "CASES DE PENE", + "nomCommune": "CASES DE PENE" }, { - "codePostal": "70190", - "codeCommune": "70288", - "libelleAcheminement": "HYET", - "nomCommune": "HYET" + "codePostal": "77320", + "codeCommune": "77197", + "libelleAcheminement": "FRETOY", + "nomCommune": "FRETOY" }, { - "codePostal": "19380", - "codeCommune": "19186", - "libelleAcheminement": "ST BONNET ELVERT", - "nomCommune": "ST BONNET ELVERT" + "codePostal": "25440", + "codeCommune": "25185", + "libelleAcheminement": "CUSSEY SUR LISON", + "nomCommune": "CUSSEY SUR LISON" }, { - "codePostal": "76160", - "codeCommune": "76212", - "libelleAcheminement": "DARNETAL", - "nomCommune": "DARNETAL" + "codePostal": "77470", + "codeCommune": "77300", + "libelleAcheminement": "MONTCEAUX LES MEAUX", + "nomCommune": "MONTCEAUX LES MEAUX" }, { - "codePostal": "77390", - "codeCommune": "77029", - "libelleAcheminement": "BEAUVOIR", - "nomCommune": "BEAUVOIR" + "codePostal": "64260", + "codeCommune": "64157", + "libelleAcheminement": "BUZY", + "nomCommune": "BUZY" }, { - "codePostal": "70500", - "codeCommune": "70292", - "libelleAcheminement": "JUSSEY", - "nomCommune": "JUSSEY" + "codePostal": "66720", + "codeCommune": "66042", + "libelleAcheminement": "CASSAGNES", + "nomCommune": "CASSAGNES" }, { - "codePostal": "19220", - "codeCommune": "19193", - "libelleAcheminement": "ST CIRGUES LA LOUTRE", - "nomCommune": "ST CIRGUES LA LOUTRE" + "codePostal": "77890", + "codeCommune": "77200", + "libelleAcheminement": "GARENTREVILLE", + "nomCommune": "GARENTREVILLE" }, { - "codePostal": "76250", - "codeCommune": "76216", - "libelleAcheminement": "DEVILLE LES ROUEN", - "nomCommune": "DEVILLE LES ROUEN" + "codePostal": "25870", + "codeCommune": "25186", + "libelleAcheminement": "CUSSEY SUR L OGNON", + "nomCommune": "CUSSEY SUR L OGNON" }, { - "codePostal": "77970", - "codeCommune": "77036", - "libelleAcheminement": "BOISDON", - "nomCommune": "BOISDON" + "codePostal": "77140", + "codeCommune": "77302", + "libelleAcheminement": "MONTCOURT FROMONVILLE", + "nomCommune": "MONTCOURT FROMONVILLE" }, { - "codePostal": "70500", - "codeCommune": "70293", - "libelleAcheminement": "LAMBREY", - "nomCommune": "LAMBREY" + "codePostal": "64160", + "codeCommune": "64167", + "libelleAcheminement": "CARRERE", + "nomCommune": "CARRERE" }, { - "codePostal": "19130", - "codeCommune": "19195", - "libelleAcheminement": "ST CYPRIEN", - "nomCommune": "ST CYPRIEN" + "codePostal": "66220", + "codeCommune": "66046", + "libelleAcheminement": "CAUDIES DE FENOUILLEDES", + "nomCommune": "CAUDIES DE FENOUILLEDES" }, { - "codePostal": "76480", - "codeCommune": "76222", - "libelleAcheminement": "DUCLAIR", - "nomCommune": "DUCLAIR" + "codePostal": "77165", + "codeCommune": "77205", + "libelleAcheminement": "GESVRES LE CHAPITRE", + "nomCommune": "GESVRES LE CHAPITRE" }, { - "codePostal": "77169", - "codeCommune": "77042", - "libelleAcheminement": "BOISSY LE CHATEL", - "nomCommune": "BOISSY LE CHATEL" + "codePostal": "25110", + "codeCommune": "25189", + "libelleAcheminement": "DAMMARTIN LES TEMPLIERS", + "nomCommune": "DAMMARTIN LES TEMPLIERS" }, { - "codePostal": "70600", - "codeCommune": "70297", - "libelleAcheminement": "LARRET", - "nomCommune": "LARRET" + "codePostal": "77320", + "codeCommune": "77303", + "libelleAcheminement": "MONTDAUPHIN", + "nomCommune": "MONTDAUPHIN" }, { - "codePostal": "19130", - "codeCommune": "19196", - "libelleAcheminement": "ST CYR LA ROCHE", - "nomCommune": "ST CYR LA ROCHE" + "codePostal": "64270", + "codeCommune": "64170", + "libelleAcheminement": "CASTAGNEDE", + "nomCommune": "CASTAGNEDE" }, { - "codePostal": "76970", - "codeCommune": "76228", - "libelleAcheminement": "ECTOT LES BAONS", - "nomCommune": "ECTOT LES BAONS" + "codePostal": "66400", + "codeCommune": "66049", + "libelleAcheminement": "CERET", + "nomCommune": "CERET" }, { - "codePostal": "77750", - "codeCommune": "77043", - "libelleAcheminement": "BOITRON", - "nomCommune": "BOITRON" + "codePostal": "77114", + "codeCommune": "77208", + "libelleAcheminement": "GOUAIX", + "nomCommune": "GOUAIX" }, { - "codePostal": "70120", - "codeCommune": "70298", - "libelleAcheminement": "LAVIGNEY", - "nomCommune": "LAVIGNEY" + "codePostal": "25450", + "codeCommune": "25193", + "libelleAcheminement": "DAMPRICHARD", + "nomCommune": "DAMPRICHARD" }, { - "codePostal": "19210", - "codeCommune": "19198", - "libelleAcheminement": "ST ELOY LES TUILERIES", - "nomCommune": "ST ELOY LES TUILERIES" + "codePostal": "77130", + "codeCommune": "77305", + "libelleAcheminement": "MONTEREAU FAULT YONNE", + "nomCommune": "MONTEREAU FAULT YONNE" }, { - "codePostal": "76480", - "codeCommune": "76237", - "libelleAcheminement": "EPINAY SUR DUCLAIR", - "nomCommune": "EPINAY SUR DUCLAIR" + "codePostal": "64190", + "codeCommune": "64178", + "libelleAcheminement": "CASTETNAU CAMBLONG", + "nomCommune": "CASTETNAU CAMBLONG" }, { - "codePostal": "77780", - "codeCommune": "77048", - "libelleAcheminement": "BOURRON MARLOTTE", - "nomCommune": "BOURRON MARLOTTE" + "codePostal": "66530", + "codeCommune": "66050", + "libelleAcheminement": "CLAIRA", + "nomCommune": "CLAIRA" }, { - "codePostal": "70190", - "codeCommune": "70301", - "libelleAcheminement": "LIEFFRANS", - "nomCommune": "LIEFFRANS" + "codePostal": "77400", + "codeCommune": "77209", + "libelleAcheminement": "GOUVERNES", + "nomCommune": "GOUVERNES" }, { - "codePostal": "19200", - "codeCommune": "19199", - "libelleAcheminement": "ST ETIENNE AUX CLOS", - "nomCommune": "ST ETIENNE AUX CLOS" + "codePostal": "25750", + "codeCommune": "25198", + "libelleAcheminement": "DESANDANS", + "nomCommune": "DESANDANS" }, { - "codePostal": "76400", - "codeCommune": "76240", - "libelleAcheminement": "EPREVILLE", - "nomCommune": "EPREVILLE" + "codePostal": "77450", + "codeCommune": "77315", + "libelleAcheminement": "MONTRY", + "nomCommune": "MONTRY" }, { - "codePostal": "77480", - "codeCommune": "77051", - "libelleAcheminement": "BRAY SUR SEINE", - "nomCommune": "BRAY SUR SEINE" + "codePostal": "64490", + "codeCommune": "64185", + "libelleAcheminement": "CETTE EYGUN", + "nomCommune": "CETTE EYGUN" }, { - "codePostal": "70150", - "codeCommune": "70334", - "libelleAcheminement": "MARNAY", - "nomCommune": "MARNAY" + "codePostal": "66500", + "codeCommune": "66052", + "libelleAcheminement": "CODALET", + "nomCommune": "CODALET" }, { - "codePostal": "19200", - "codeCommune": "19201", - "libelleAcheminement": "ST EXUPERY LES ROCHES", - "nomCommune": "ST EXUPERY LES ROCHES" + "codePostal": "77118", + "codeCommune": "77212", + "libelleAcheminement": "GRAVON", + "nomCommune": "GRAVON" }, { - "codePostal": "76750", - "codeCommune": "76243", - "libelleAcheminement": "ERNEMONT SUR BUCHY", - "nomCommune": "ERNEMONT SUR BUCHY" + "codePostal": "25510", + "codeCommune": "25203", + "libelleAcheminement": "DOMPREL", + "nomCommune": "DOMPREL" }, { - "codePostal": "77940", - "codeCommune": "77054", - "libelleAcheminement": "LA BROSSE MONTCEAUX", - "nomCommune": "LA BROSSE MONTCEAUX" + "codePostal": "77250", + "codeCommune": "77316", + "libelleAcheminement": "MORET LOING ET ORVANNE", + "nomCommune": "MORET LOING ET ORVANNE" }, { - "codePostal": "70400", - "codeCommune": "70347", - "libelleAcheminement": "MIGNAVILLERS", - "nomCommune": "MIGNAVILLERS" + "codePostal": "64190", + "codeCommune": "64201", + "libelleAcheminement": "DOGNEN", + "nomCommune": "DOGNEN" }, { - "codePostal": "19550", - "codeCommune": "19208", - "libelleAcheminement": "ST HILAIRE FOISSAC", - "nomCommune": "ST HILAIRE FOISSAC" + "codePostal": "66820", + "codeCommune": "66057", + "libelleAcheminement": "CORNEILLA DE CONFLENT", + "nomCommune": "CORNEILLA DE CONFLENT" }, { - "codePostal": "76790", - "codeCommune": "76254", - "libelleAcheminement": "ETRETAT", - "nomCommune": "ETRETAT" + "codePostal": "77760", + "codeCommune": "77220", + "libelleAcheminement": "GUERCHEVILLE", + "nomCommune": "GUERCHEVILLE" }, { - "codePostal": "77177", - "codeCommune": "77055", - "libelleAcheminement": "BROU SUR CHANTEREINE", - "nomCommune": "BROU SUR CHANTEREINE" + "codePostal": "25300", + "codeCommune": "25204", + "libelleAcheminement": "DOUBS", + "nomCommune": "DOUBS" }, { - "codePostal": "70110", - "codeCommune": "70349", - "libelleAcheminement": "MOIMAY", - "nomCommune": "MOIMAY" + "codePostal": "77250", + "codeCommune": "77316", + "libelleAcheminement": "MORET LOING ET ORVANNE", + "nomCommune": "MORET LOING ET ORVANNE" }, { - "codePostal": "19160", - "codeCommune": "19210", - "libelleAcheminement": "ST HILAIRE LUC", - "nomCommune": "ST HILAIRE LUC" + "codePostal": "64440", + "codeCommune": "64204", + "libelleAcheminement": "EAUX BONNES", + "nomCommune": "EAUX BONNES" }, { - "codePostal": "76640", - "codeCommune": "76258", - "libelleAcheminement": "TERRES DE CAUX", - "nomCommune": "TERRES DE CAUX" + "codePostal": "66150", + "codeCommune": "66060", + "libelleAcheminement": "CORSAVY", + "nomCommune": "CORSAVY" }, { - "codePostal": "77130", - "codeCommune": "77061", - "libelleAcheminement": "CANNES ECLUSE", - "nomCommune": "CANNES ECLUSE" + "codePostal": "77520", + "codeCommune": "77223", + "libelleAcheminement": "GURCY LE CHATEL", + "nomCommune": "GURCY LE CHATEL" }, { - "codePostal": "70120", - "codeCommune": "70350", - "libelleAcheminement": "MOLAY", - "nomCommune": "MOLAY" + "codePostal": "25440", + "codeCommune": "25209", + "libelleAcheminement": "ECHAY", + "nomCommune": "ECHAY" }, { - "codePostal": "19400", - "codeCommune": "19212", - "libelleAcheminement": "ST HILAIRE TAURIEUX", - "nomCommune": "ST HILAIRE TAURIEUX" + "codePostal": "77250", + "codeCommune": "77316", + "libelleAcheminement": "MORET LOING ET ORVANNE", + "nomCommune": "MORET LOING ET ORVANNE" }, { - "codePostal": "76400", - "codeCommune": "76259", - "libelleAcheminement": "FECAMP", - "nomCommune": "FECAMP" + "codePostal": "64490", + "codeCommune": "64206", + "libelleAcheminement": "ESCOT", + "nomCommune": "ESCOT" }, { - "codePostal": "77515", - "codeCommune": "77063", - "libelleAcheminement": "LA CELLE SUR MORIN", - "nomCommune": "LA CELLE SUR MORIN" + "codePostal": "66260", + "codeCommune": "66061", + "libelleAcheminement": "COUSTOUGES", + "nomCommune": "COUSTOUGES" }, { - "codePostal": "70230", - "codeCommune": "70357", - "libelleAcheminement": "MONTBOZON", - "nomCommune": "MONTBOZON" + "codePostal": "77520", + "codeCommune": "77223", + "libelleAcheminement": "GURCY LE CHATEL", + "nomCommune": "GURCY LE CHATEL" }, { - "codePostal": "19700", - "codeCommune": "19213", - "libelleAcheminement": "ST JAL", - "nomCommune": "ST JAL" + "codePostal": "25800", + "codeCommune": "25219", + "libelleAcheminement": "EPENOY", + "nomCommune": "EPENOY" }, { - "codePostal": "76280", - "codeCommune": "76268", - "libelleAcheminement": "FONGUEUSEMARE", - "nomCommune": "FONGUEUSEMARE" + "codePostal": "77160", + "codeCommune": "77319", + "libelleAcheminement": "MORTERY", + "nomCommune": "MORTERY" }, { - "codePostal": "77650", - "codeCommune": "77076", - "libelleAcheminement": "CHALMAISON", - "nomCommune": "CHALMAISON" + "codePostal": "64250", + "codeCommune": "64213", + "libelleAcheminement": "ESPELETTE", + "nomCommune": "ESPELETTE" }, { - "codePostal": "70500", - "codeCommune": "70362", - "libelleAcheminement": "MONTIGNY LES CHERLIEU", - "nomCommune": "MONTIGNY LES CHERLIEU" + "codePostal": "66600", + "codeCommune": "66069", + "libelleAcheminement": "ESPIRA DE L AGLY", + "nomCommune": "ESPIRA DE L AGLY" }, { - "codePostal": "19150", - "codeCommune": "19220", - "libelleAcheminement": "ST MARTIAL DE GIMEL", - "nomCommune": "ST MARTIAL DE GIMEL" + "codePostal": "77515", + "codeCommune": "77224", + "libelleAcheminement": "HAUTEFEUILLE", + "nomCommune": "HAUTEFEUILLE" }, { - "codePostal": "76690", - "codeCommune": "76271", - "libelleAcheminement": "FONTAINE LE BOURG", - "nomCommune": "FONTAINE LE BOURG" + "codePostal": "25290", + "codeCommune": "25220", + "libelleAcheminement": "EPEUGNEY", + "nomCommune": "EPEUGNEY" }, { - "codePostal": "77560", - "codeCommune": "77080", - "libelleAcheminement": "CHAMPCENEST", - "nomCommune": "CHAMPCENEST" + "codePostal": "77710", + "codeCommune": "77329", + "libelleAcheminement": "NANTEAU SUR LUNAIN", + "nomCommune": "NANTEAU SUR LUNAIN" }, { - "codePostal": "70120", - "codeCommune": "70373", - "libelleAcheminement": "LA ROCHE MOREY", - "nomCommune": "LA ROCHE MOREY" + "codePostal": "64290", + "codeCommune": "64219", + "libelleAcheminement": "ESTIALESCQ", + "nomCommune": "ESTIALESCQ" }, { - "codePostal": "19210", - "codeCommune": "19223", - "libelleAcheminement": "ST MARTIN SEPERT", - "nomCommune": "ST MARTIN SEPERT" + "codePostal": "66320", + "codeCommune": "66070", + "libelleAcheminement": "ESPIRA DE CONFLENT", + "nomCommune": "ESPIRA DE CONFLENT" }, { - "codePostal": "76890", - "codeCommune": "76274", - "libelleAcheminement": "LA FONTELAYE", - "nomCommune": "LA FONTELAYE" + "codePostal": "77580", + "codeCommune": "77225", + "libelleAcheminement": "LA HAUTE MAISON", + "nomCommune": "LA HAUTE MAISON" }, { - "codePostal": "77720", - "codeCommune": "77082", - "libelleAcheminement": "CHAMPEAUX", - "nomCommune": "CHAMPEAUX" + "codePostal": "25580", + "codeCommune": "25222", + "libelleAcheminement": "ETALANS", + "nomCommune": "ETALANS" }, { - "codePostal": "70700", - "codeCommune": "70393", - "libelleAcheminement": "OISELAY ET GRACHAUX", - "nomCommune": "OISELAY ET GRACHAUX" + "codePostal": "77830", + "codeCommune": "77354", + "libelleAcheminement": "PAMFOU", + "nomCommune": "PAMFOU" }, { - "codePostal": "19320", - "codeCommune": "19225", - "libelleAcheminement": "ST MERD DE LAPLEAU", - "nomCommune": "ST MERD DE LAPLEAU" + "codePostal": "64400", + "codeCommune": "64220", + "libelleAcheminement": "ESTOS", + "nomCommune": "ESTOS" }, { - "codePostal": "76340", - "codeCommune": "76278", - "libelleAcheminement": "FOUCARMONT", - "nomCommune": "FOUCARMONT" + "codePostal": "66820", + "codeCommune": "66085", + "libelleAcheminement": "FUILLA", + "nomCommune": "FUILLA" }, { - "codePostal": "77420", - "codeCommune": "77083", - "libelleAcheminement": "CHAMPS SUR MARNE", - "nomCommune": "CHAMPS SUR MARNE" + "codePostal": "77850", + "codeCommune": "77226", + "libelleAcheminement": "HERICY", + "nomCommune": "HERICY" }, { - "codePostal": "70110", - "codeCommune": "70396", - "libelleAcheminement": "ORICOURT", - "nomCommune": "ORICOURT" + "codePostal": "25330", + "codeCommune": "25223", + "libelleAcheminement": "ETERNOZ", + "nomCommune": "ETERNOZ" }, { - "codePostal": "19210", - "codeCommune": "19230", - "libelleAcheminement": "ST PARDOUX CORBIER", - "nomCommune": "ST PARDOUX CORBIER" + "codePostal": "77930", + "codeCommune": "77359", + "libelleAcheminement": "PERTHES", + "nomCommune": "PERTHES" }, { - "codePostal": "76660", - "codeCommune": "76280", - "libelleAcheminement": "FREAUVILLE", - "nomCommune": "FREAUVILLE" + "codePostal": "64120", + "codeCommune": "64221", + "libelleAcheminement": "ETCHARRY", + "nomCommune": "ETCHARRY" }, { - "codePostal": "77370", - "codeCommune": "77089", - "libelleAcheminement": "LA CHAPELLE RABLAIS", - "nomCommune": "LA CHAPELLE RABLAIS" + "codePostal": "66320", + "codeCommune": "66086", + "libelleAcheminement": "GLORIANES", + "nomCommune": "GLORIANES" }, { - "codePostal": "70500", - "codeCommune": "70400", - "libelleAcheminement": "OUGE", - "nomCommune": "OUGE" + "codePostal": "77610", + "codeCommune": "77229", + "libelleAcheminement": "LA HOUSSAYE EN BRIE", + "nomCommune": "LA HOUSSAYE EN BRIE" }, { - "codePostal": "19800", - "codeCommune": "19236", - "libelleAcheminement": "ST PRIEST DE GIMEL", - "nomCommune": "ST PRIEST DE GIMEL" + "codePostal": "25260", + "codeCommune": "25224", + "libelleAcheminement": "ETOUVANS", + "nomCommune": "ETOUVANS" }, { - "codePostal": "76270", - "codeCommune": "76283", - "libelleAcheminement": "FRESLES", - "nomCommune": "FRESLES" + "codePostal": "77540", + "codeCommune": "77365", + "libelleAcheminement": "LE PLESSIS FEU AUSSOUX", + "nomCommune": "LE PLESSIS FEU AUSSOUX" }, { - "codePostal": "77610", - "codeCommune": "77091", - "libelleAcheminement": "LES CHAPELLES BOURBON", - "nomCommune": "LES CHAPELLES BOURBON" + "codePostal": "64160", + "codeCommune": "64227", + "libelleAcheminement": "GABASTON", + "nomCommune": "GABASTON" }, { - "codePostal": "70600", - "codeCommune": "70409", - "libelleAcheminement": "PIERRECOURT", - "nomCommune": "PIERRECOURT" + "codePostal": "66720", + "codeCommune": "66092", + "libelleAcheminement": "LANSAC", + "nomCommune": "LANSAC" }, { - "codePostal": "19310", - "codeCommune": "19239", - "libelleAcheminement": "ST ROBERT", - "nomCommune": "ST ROBERT" + "codePostal": "77890", + "codeCommune": "77230", + "libelleAcheminement": "ICHY", + "nomCommune": "ICHY" }, { - "codePostal": "76520", - "codeCommune": "76285", - "libelleAcheminement": "FRESNE LE PLAN", - "nomCommune": "FRESNE LE PLAN" + "codePostal": "25250", + "codeCommune": "25226", + "libelleAcheminement": "ETRAPPE", + "nomCommune": "ETRAPPE" }, { - "codePostal": "77320", - "codeCommune": "77093", - "libelleAcheminement": "LA CHAPELLE MOUTILS", - "nomCommune": "LA CHAPELLE MOUTILS" + "codePostal": "77160", + "codeCommune": "77368", + "libelleAcheminement": "POIGNY", + "nomCommune": "POIGNY" }, { - "codePostal": "70800", - "codeCommune": "70411", - "libelleAcheminement": "LA PISSEURE", - "nomCommune": "LA PISSEURE" + "codePostal": "64120", + "codeCommune": "64228", + "libelleAcheminement": "GABAT", + "nomCommune": "GABAT" }, { - "codePostal": "19130", - "codeCommune": "19242", - "libelleAcheminement": "ST SOLVE", - "nomCommune": "ST SOLVE" + "codePostal": "66800", + "codeCommune": "66100", + "libelleAcheminement": "LLO", + "nomCommune": "LLO" }, { - "codePostal": "76660", - "codeCommune": "76286", - "libelleAcheminement": "FRESNOY FOLNY", - "nomCommune": "FRESNOY FOLNY" + "codePostal": "77450", + "codeCommune": "77234", + "libelleAcheminement": "JABLINES", + "nomCommune": "JABLINES" }, { - "codePostal": "77410", - "codeCommune": "77094", - "libelleAcheminement": "CHARMENTRAY", - "nomCommune": "CHARMENTRAY" + "codePostal": "25250", + "codeCommune": "25232", + "libelleAcheminement": "FAIMBE", + "nomCommune": "FAIMBE" }, { - "codePostal": "70360", - "codeCommune": "70417", - "libelleAcheminement": "PONTCEY", - "nomCommune": "PONTCEY" + "codePostal": "77470", + "codeCommune": "77369", + "libelleAcheminement": "POINCY", + "nomCommune": "POINCY" }, { - "codePostal": "19430", - "codeCommune": "19259", - "libelleAcheminement": "SEXCLES", - "nomCommune": "SEXCLES" + "codePostal": "64400", + "codeCommune": "64241", + "libelleAcheminement": "GERONCE", + "nomCommune": "GERONCE" }, { - "codePostal": "76190", - "codeCommune": "76289", - "libelleAcheminement": "ST MARTIN DE L IF", - "nomCommune": "ST MARTIN DE L IF" + "codePostal": "66480", + "codeCommune": "66106", + "libelleAcheminement": "MAUREILLAS LAS ILLAS", + "nomCommune": "MAUREILLAS LAS ILLAS" }, { - "codePostal": "77570", - "codeCommune": "77099", - "libelleAcheminement": "CHATEAU LANDON", - "nomCommune": "CHATEAU LANDON" + "codePostal": "77970", + "codeCommune": "77239", + "libelleAcheminement": "JOUY LE CHATEL", + "nomCommune": "JOUY LE CHATEL" }, { - "codePostal": "70130", - "codeCommune": "70418", - "libelleAcheminement": "LA ROMAINE", - "nomCommune": "LA ROMAINE" + "codePostal": "25490", + "codeCommune": "25237", + "libelleAcheminement": "FESCHES LE CHATEL", + "nomCommune": "FESCHES LE CHATEL" }, { - "codePostal": "19120", - "codeCommune": "19260", - "libelleAcheminement": "SIONIAC", - "nomCommune": "SIONIAC" + "codePostal": "77167", + "codeCommune": "77370", + "libelleAcheminement": "POLIGNY", + "nomCommune": "POLIGNY" }, { - "codePostal": "76560", - "codeCommune": "76293", - "libelleAcheminement": "FULTOT", - "nomCommune": "FULTOT" + "codePostal": "64520", + "codeCommune": "64250", + "libelleAcheminement": "GUICHE", + "nomCommune": "GUICHE" }, { - "codePostal": "77820", - "codeCommune": "77103", - "libelleAcheminement": "CHATILLON LA BORDE", - "nomCommune": "CHATILLON LA BORDE" + "codePostal": "66300", + "codeCommune": "66112", + "libelleAcheminement": "MONTAURIOL", + "nomCommune": "MONTAURIOL" }, { - "codePostal": "70210", - "codeCommune": "70419", - "libelleAcheminement": "PONT DU BOIS", - "nomCommune": "PONT DU BOIS" + "codePostal": "77320", + "codeCommune": "77240", + "libelleAcheminement": "JOUY SUR MORIN", + "nomCommune": "JOUY SUR MORIN" }, { - "codePostal": "19550", - "codeCommune": "19264", - "libelleAcheminement": "SOURSAC", - "nomCommune": "SOURSAC" + "codePostal": "25470", + "codeCommune": "25238", + "libelleAcheminement": "FESSEVILLERS", + "nomCommune": "FESSEVILLERS" }, { - "codePostal": "76220", - "codeCommune": "76297", - "libelleAcheminement": "GANCOURT ST ETIENNE", - "nomCommune": "GANCOURT ST ETIENNE" + "codePostal": "77135", + "codeCommune": "77374", + "libelleAcheminement": "PONTCARRE", + "nomCommune": "PONTCARRE" }, { - "codePostal": "77610", - "codeCommune": "77104", - "libelleAcheminement": "CHATRES", - "nomCommune": "CHATRES" + "codePostal": "64190", + "codeCommune": "64253", + "libelleAcheminement": "GURS", + "nomCommune": "GURS" }, { - "codePostal": "70170", - "codeCommune": "70426", - "libelleAcheminement": "PROVENCHERE", - "nomCommune": "PROVENCHERE" + "codePostal": "66150", + "codeCommune": "66116", + "libelleAcheminement": "MONTFERRER", + "nomCommune": "MONTFERRER" }, { - "codePostal": "19120", - "codeCommune": "19271", - "libelleAcheminement": "TUDEILS", - "nomCommune": "TUDEILS" + "codePostal": "77760", + "codeCommune": "77244", + "libelleAcheminement": "LARCHANT", + "nomCommune": "LARCHANT" }, { - "codePostal": "76110", - "codeCommune": "76302", - "libelleAcheminement": "GODERVILLE", - "nomCommune": "GODERVILLE" + "codePostal": "25720", + "codeCommune": "25245", + "libelleAcheminement": "FONTAIN", + "nomCommune": "FONTAIN" }, { - "codePostal": "77500", - "codeCommune": "77108", - "libelleAcheminement": "CHELLES", - "nomCommune": "CHELLES" + "codePostal": "77160", + "codeCommune": "77379", + "libelleAcheminement": "PROVINS", + "nomCommune": "PROVINS" }, { - "codePostal": "70200", - "codeCommune": "70432", - "libelleAcheminement": "QUERS", - "nomCommune": "QUERS" + "codePostal": "64700", + "codeCommune": "64260", + "libelleAcheminement": "HENDAYE", + "nomCommune": "HENDAYE" }, { - "codePostal": "19200", - "codeCommune": "19275", - "libelleAcheminement": "USSEL", - "nomCommune": "USSEL" + "codePostal": "66340", + "codeCommune": "66120", + "libelleAcheminement": "NAHUJA", + "nomCommune": "NAHUJA" }, { - "codePostal": "76730", - "codeCommune": "76306", - "libelleAcheminement": "GONNETOT", - "nomCommune": "GONNETOT" + "codePostal": "77150", + "codeCommune": "77249", + "libelleAcheminement": "LESIGNY", + "nomCommune": "LESIGNY" }, { - "codePostal": "77173", - "codeCommune": "77114", - "libelleAcheminement": "CHEVRY COSSIGNY", - "nomCommune": "CHEVRY COSSIGNY" + "codePostal": "25340", + "codeCommune": "25247", + "libelleAcheminement": "FONTENELLE MONTBY", + "nomCommune": "FONTENELLE MONTBY" }, { - "codePostal": "70500", - "codeCommune": "70436", - "libelleAcheminement": "RAINCOURT", - "nomCommune": "RAINCOURT" + "codePostal": "77550", + "codeCommune": "77384", + "libelleAcheminement": "REAU", + "nomCommune": "REAU" }, { - "codePostal": "19200", - "codeCommune": "19277", - "libelleAcheminement": "VALIERGUES", - "nomCommune": "VALIERGUES" + "codePostal": "64130", + "codeCommune": "64264", + "libelleAcheminement": "L HOPITAL ST BLAISE", + "nomCommune": "L HOPITAL ST BLAISE" }, { - "codePostal": "76590", - "codeCommune": "76308", - "libelleAcheminement": "GONNEVILLE SUR SCIE", - "nomCommune": "GONNEVILLE SUR SCIE" + "codePostal": "66170", + "codeCommune": "66121", + "libelleAcheminement": "NEFIACH", + "nomCommune": "NEFIACH" }, { - "codePostal": "77320", - "codeCommune": "77116", - "libelleAcheminement": "CHOISY EN BRIE", - "nomCommune": "CHOISY EN BRIE" + "codePostal": "77230", + "codeCommune": "77259", + "libelleAcheminement": "LONGPERRIER", + "nomCommune": "LONGPERRIER" }, { - "codePostal": "70190", - "codeCommune": "70447", - "libelleAcheminement": "RIOZ", - "nomCommune": "RIOZ" + "codePostal": "25110", + "codeCommune": "25249", + "libelleAcheminement": "FONTENOTTE", + "nomCommune": "FONTENOTTE" }, { - "codePostal": "19130", - "codeCommune": "19286", - "libelleAcheminement": "VIGNOLS", - "nomCommune": "VIGNOLS" + "codePostal": "77710", + "codeCommune": "77387", + "libelleAcheminement": "REMAUVILLE", + "nomCommune": "REMAUVILLE" }, { - "codePostal": "76560", - "codeCommune": "76309", - "libelleAcheminement": "GONZEVILLE", - "nomCommune": "GONZEVILLE" + "codePostal": "64120", + "codeCommune": "64267", + "libelleAcheminement": "IBARROLLE", + "nomCommune": "IBARROLLE" }, { - "codePostal": "77290", - "codeCommune": "77123", - "libelleAcheminement": "COMPANS", - "nomCommune": "COMPANS" + "codePostal": "66120", + "codeCommune": "66124", + "libelleAcheminement": "FONT ROMEU ODEILLO VIA", + "nomCommune": "FONT ROMEU ODEILLO VIA" }, { - "codePostal": "70310", - "codeCommune": "70453", - "libelleAcheminement": "LA ROSIERE", - "nomCommune": "LA ROSIERE" + "codePostal": "77570", + "codeCommune": "77267", + "libelleAcheminement": "LA MADELEINE SUR LOING", + "nomCommune": "LA MADELEINE SUR LOING" }, { - "codePostal": "19800", - "codeCommune": "19287", - "libelleAcheminement": "VITRAC SUR MONTANE", - "nomCommune": "VITRAC SUR MONTANE" + "codePostal": "25300", + "codeCommune": "25254", + "libelleAcheminement": "LES FOURGS", + "nomCommune": "LES FOURGS" }, { - "codePostal": "76430", - "codeCommune": "76314", - "libelleAcheminement": "GRAIMBOUVILLE", - "nomCommune": "GRAIMBOUVILLE" + "codePostal": "77260", + "codeCommune": "77388", + "libelleAcheminement": "REUIL EN BRIE", + "nomCommune": "REUIL EN BRIE" }, { - "codePostal": "77600", - "codeCommune": "77124", - "libelleAcheminement": "CONCHES SUR GONDOIRE", - "nomCommune": "CONCHES SUR GONDOIRE" + "codePostal": "64320", + "codeCommune": "64269", + "libelleAcheminement": "IDRON", + "nomCommune": "IDRON" }, { - "codePostal": "70500", - "codeCommune": "70454", - "libelleAcheminement": "ROSIERES SUR MANCE", - "nomCommune": "ROSIERES SUR MANCE" + "codePostal": "66560", + "codeCommune": "66129", + "libelleAcheminement": "ORTAFFA", + "nomCommune": "ORTAFFA" }, { - "codePostal": "21110", - "codeCommune": "21005", - "libelleAcheminement": "AISEREY", - "nomCommune": "AISEREY" + "codePostal": "77610", + "codeCommune": "77277", + "libelleAcheminement": "MARLES EN BRIE", + "nomCommune": "MARLES EN BRIE" }, { - "codePostal": "76170", - "codeCommune": "76318", - "libelleAcheminement": "GRAND CAMP", - "nomCommune": "GRAND CAMP" + "codePostal": "25170", + "codeCommune": "25257", + "libelleAcheminement": "FRANEY", + "nomCommune": "FRANEY" }, { - "codePostal": "77860", - "codeCommune": "77128", - "libelleAcheminement": "COUILLY PONT AUX DAMES", - "nomCommune": "COUILLY PONT AUX DAMES" + "codePostal": "77320", + "codeCommune": "77402", + "libelleAcheminement": "ST BARTHELEMY", + "nomCommune": "ST BARTHELEMY" }, { - "codePostal": "70280", - "codeCommune": "70460", - "libelleAcheminement": "ST BRESSON", - "nomCommune": "ST BRESSON" + "codePostal": "64780", + "codeCommune": "64273", + "libelleAcheminement": "IRISSARRY", + "nomCommune": "IRISSARRY" }, { - "codePostal": "21390", - "codeCommune": "21007", - "libelleAcheminement": "AISY SOUS THIL", - "nomCommune": "AISY SOUS THIL" + "codePostal": "66340", + "codeCommune": "66130", + "libelleAcheminement": "OSSEJA", + "nomCommune": "OSSEJA" }, { - "codePostal": "76530", - "codeCommune": "76319", - "libelleAcheminement": "GRAND COURONNE", - "nomCommune": "GRAND COURONNE" + "codePostal": "77100", + "codeCommune": "77284", + "libelleAcheminement": "MEAUX", + "nomCommune": "MEAUX" }, { - "codePostal": "77183", - "codeCommune": "77146", - "libelleAcheminement": "CROISSY BEAUBOURG", - "nomCommune": "CROISSY BEAUBOURG" + "codePostal": "25270", + "codeCommune": "25270", + "libelleAcheminement": "GEVRESIN", + "nomCommune": "GEVRESIN" }, { - "codePostal": "70110", - "codeCommune": "70474", - "libelleAcheminement": "ST SULPICE", - "nomCommune": "ST SULPICE" + "codePostal": "77160", + "codeCommune": "77403", + "libelleAcheminement": "ST BRICE", + "nomCommune": "ST BRICE" }, { - "codePostal": "21420", - "codeCommune": "21010", - "libelleAcheminement": "ALOXE CORTON", - "nomCommune": "ALOXE CORTON" + "codePostal": "64220", + "codeCommune": "64275", + "libelleAcheminement": "ISPOURE", + "nomCommune": "ISPOURE" }, { - "codePostal": "76210", - "codeCommune": "76329", - "libelleAcheminement": "GRUCHET LE VALASSE", - "nomCommune": "GRUCHET LE VALASSE" + "codePostal": "66300", + "codeCommune": "66134", + "libelleAcheminement": "PASSA", + "nomCommune": "PASSA" }, { - "codePostal": "77183", - "codeCommune": "77146", - "libelleAcheminement": "CROISSY BEAUBOURG", - "nomCommune": "CROISSY BEAUBOURG" + "codePostal": "77171", + "codeCommune": "77289", + "libelleAcheminement": "MELZ SUR SEINE", + "nomCommune": "MELZ SUR SEINE" }, { - "codePostal": "70440", - "codeCommune": "70489", - "libelleAcheminement": "SERVANCE MIELLIN", - "nomCommune": "SERVANCE MIELLIN" + "codePostal": "25360", + "codeCommune": "25273", + "libelleAcheminement": "GLAMONDANS", + "nomCommune": "GLAMONDANS" }, { - "codePostal": "21410", - "codeCommune": "21013", - "libelleAcheminement": "ANCEY", - "nomCommune": "ANCEY" + "codePostal": "77650", + "codeCommune": "77404", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "76460", - "codeCommune": "76336", - "libelleAcheminement": "GUEUTTEVILLE LES GRES", - "nomCommune": "GUEUTTEVILLE LES GRES" + "codePostal": "64480", + "codeCommune": "64282", + "libelleAcheminement": "JATXOU", + "nomCommune": "JATXOU" }, { - "codePostal": "77190", - "codeCommune": "77152", - "libelleAcheminement": "DAMMARIE LES LYS", - "nomCommune": "DAMMARIE LES LYS" + "codePostal": "66600", + "codeCommune": "66138", + "libelleAcheminement": "PEYRESTORTES", + "nomCommune": "PEYRESTORTES" }, { - "codePostal": "70240", - "codeCommune": "70490", - "libelleAcheminement": "SERVIGNEY", - "nomCommune": "SERVIGNEY" + "codePostal": "77122", + "codeCommune": "77309", + "libelleAcheminement": "MONTHYON", + "nomCommune": "MONTHYON" }, { - "codePostal": "21410", - "codeCommune": "21018", - "libelleAcheminement": "ARCEY", - "nomCommune": "ARCEY" + "codePostal": "25360", + "codeCommune": "25278", + "libelleAcheminement": "GONSANS", + "nomCommune": "GONSANS" }, { - "codePostal": "76560", - "codeCommune": "76340", - "libelleAcheminement": "HARCANVILLE", - "nomCommune": "HARCANVILLE" + "codePostal": "77510", + "codeCommune": "77406", + "libelleAcheminement": "ST DENIS LES REBAIS", + "nomCommune": "ST DENIS LES REBAIS" }, { - "codePostal": "77230", - "codeCommune": "77153", - "libelleAcheminement": "DAMMARTIN EN GOELE", - "nomCommune": "DAMMARTIN EN GOELE" + "codePostal": "64390", + "codeCommune": "64287", + "libelleAcheminement": "LAAS", + "nomCommune": "LAAS" }, { - "codePostal": "70130", - "codeCommune": "70492", - "libelleAcheminement": "SOING CUBRY CHARENTENAY", - "nomCommune": "SOING CUBRY CHARENTENAY" + "codePostal": "66450", + "codeCommune": "66144", + "libelleAcheminement": "POLLESTRES", + "nomCommune": "POLLESTRES" }, { - "codePostal": "21570", - "codeCommune": "21034", - "libelleAcheminement": "AUTRICOURT", - "nomCommune": "AUTRICOURT" + "codePostal": "77250", + "codeCommune": "77316", + "libelleAcheminement": "MORET LOING ET ORVANNE", + "nomCommune": "MORET LOING ET ORVANNE" }, { - "codePostal": "76700", - "codeCommune": "76341", - "libelleAcheminement": "HARFLEUR", - "nomCommune": "HARFLEUR" + "codePostal": "25470", + "codeCommune": "25280", + "libelleAcheminement": "GOUMOIS", + "nomCommune": "GOUMOIS" }, { - "codePostal": "77400", - "codeCommune": "77155", - "libelleAcheminement": "DAMPMART", - "nomCommune": "DAMPMART" + "codePostal": "77470", + "codeCommune": "77408", + "libelleAcheminement": "ST FIACRE", + "nomCommune": "ST FIACRE" }, { - "codePostal": "70190", - "codeCommune": "70493", - "libelleAcheminement": "SORANS LES BREUREY", - "nomCommune": "SORANS LES BREUREY" + "codePostal": "64170", + "codeCommune": "64290", + "libelleAcheminement": "LABASTIDE MONREJEAU", + "nomCommune": "LABASTIDE MONREJEAU" }, { - "codePostal": "21190", - "codeCommune": "21037", - "libelleAcheminement": "AUXEY DURESSES", - "nomCommune": "AUXEY DURESSES" + "codePostal": "66760", + "codeCommune": "66146", + "libelleAcheminement": "PORTA", + "nomCommune": "PORTA" }, { - "codePostal": "76640", - "codeCommune": "76342", - "libelleAcheminement": "HATTENVILLE", - "nomCommune": "HATTENVILLE" + "codePostal": "77480", + "codeCommune": "77325", + "libelleAcheminement": "MOUY SUR SEINE", + "nomCommune": "MOUY SUR SEINE" }, { - "codePostal": "77520", - "codeCommune": "77159", - "libelleAcheminement": "DONNEMARIE DONTILLY", - "nomCommune": "DONNEMARIE DONTILLY" + "codePostal": "25150", + "codeCommune": "25281", + "libelleAcheminement": "GOUX LES DAMBELIN", + "nomCommune": "GOUX LES DAMBELIN" }, { - "codePostal": "70150", - "codeCommune": "70494", - "libelleAcheminement": "SORNAY", - "nomCommune": "SORNAY" + "codePostal": "77169", + "codeCommune": "77411", + "libelleAcheminement": "ST GERMAIN SOUS DOUE", + "nomCommune": "ST GERMAIN SOUS DOUE" }, { - "codePostal": "21130", - "codeCommune": "21038", - "libelleAcheminement": "AUXONNE", - "nomCommune": "AUXONNE" + "codePostal": "64460", + "codeCommune": "64293", + "libelleAcheminement": "LABATUT FIGUIERES", + "nomCommune": "LABATUT FIGUIERES" }, { - "codePostal": "76113", - "codeCommune": "76350", - "libelleAcheminement": "HAUTOT SUR SEINE", - "nomCommune": "HAUTOT SUR SEINE" + "codePostal": "66660", + "codeCommune": "66148", + "libelleAcheminement": "PORT VENDRES", + "nomCommune": "PORT VENDRES" }, { - "codePostal": "77139", - "codeCommune": "77163", - "libelleAcheminement": "DOUY LA RAMEE", - "nomCommune": "DOUY LA RAMEE" + "codePostal": "77370", + "codeCommune": "77327", + "libelleAcheminement": "NANGIS", + "nomCommune": "NANGIS" }, { - "codePostal": "70230", - "codeCommune": "70501", - "libelleAcheminement": "THIENANS", - "nomCommune": "THIENANS" + "codePostal": "25210", + "codeCommune": "25286", + "libelleAcheminement": "GRAND COMBE DES BOIS", + "nomCommune": "GRAND COMBE DES BOIS" }, { - "codePostal": "21580", - "codeCommune": "21049", - "libelleAcheminement": "BARJON", - "nomCommune": "BARJON" + "codePostal": "77930", + "codeCommune": "77412", + "libelleAcheminement": "ST GERMAIN SUR ECOLE", + "nomCommune": "ST GERMAIN SUR ECOLE" }, { - "codePostal": "76780", - "codeCommune": "76364", - "libelleAcheminement": "HODENG HODENGER", - "nomCommune": "HODENG HODENGER" + "codePostal": "64220", + "codeCommune": "64297", + "libelleAcheminement": "LACARRE", + "nomCommune": "LACARRE" }, { - "codePostal": "77184", - "codeCommune": "77169", - "libelleAcheminement": "EMERAINVILLE", - "nomCommune": "EMERAINVILLE" + "codePostal": "66320", + "codeCommune": "66162", + "libelleAcheminement": "RIGARDA", + "nomCommune": "RIGARDA" }, { - "codePostal": "70100", - "codeCommune": "70505", - "libelleAcheminement": "LE TREMBLOIS", - "nomCommune": "LE TREMBLOIS" + "codePostal": "77760", + "codeCommune": "77328", + "libelleAcheminement": "NANTEAU SUR ESSONNE", + "nomCommune": "NANTEAU SUR ESSONNE" }, { - "codePostal": "21340", - "codeCommune": "21050", - "libelleAcheminement": "BAUBIGNY", - "nomCommune": "BAUBIGNY" + "codePostal": "25390", + "codeCommune": "25288", + "libelleAcheminement": "FOURNETS LUISANS", + "nomCommune": "FOURNETS LUISANS" }, { - "codePostal": "76740", - "codeCommune": "76365", - "libelleAcheminement": "HOUDETOT", - "nomCommune": "HOUDETOT" + "codePostal": "77650", + "codeCommune": "77418", + "libelleAcheminement": "ST LOUP DE NAUD", + "nomCommune": "ST LOUP DE NAUD" }, { - "codePostal": "77515", - "codeCommune": "77176", - "libelleAcheminement": "FAREMOUTIERS", - "nomCommune": "FAREMOUTIERS" + "codePostal": "64350", + "codeCommune": "64307", + "libelleAcheminement": "LALONGUE", + "nomCommune": "LALONGUE" }, { - "codePostal": "70400", - "codeCommune": "70506", - "libelleAcheminement": "TREMOINS", - "nomCommune": "TREMOINS" + "codePostal": "66600", + "codeCommune": "66164", + "libelleAcheminement": "RIVESALTES", + "nomCommune": "RIVESALTES" }, { - "codePostal": "21570", - "codeCommune": "21058", - "libelleAcheminement": "BELAN SUR OURCE", - "nomCommune": "BELAN SUR OURCE" + "codePostal": "77230", + "codeCommune": "77332", + "libelleAcheminement": "NANTOUILLET", + "nomCommune": "NANTOUILLET" }, { - "codePostal": "76770", - "codeCommune": "76367", - "libelleAcheminement": "HOUPPEVILLE", - "nomCommune": "HOUPPEVILLE" + "codePostal": "25510", + "codeCommune": "25289", + "libelleAcheminement": "GRANDFONTAINE SUR CREUSE", + "nomCommune": "GRANDFONTAINE SUR CREUSE" }, { - "codePostal": "77133", - "codeCommune": "77179", - "libelleAcheminement": "FERICY", - "nomCommune": "FERICY" + "codePostal": "77320", + "codeCommune": "77421", + "libelleAcheminement": "ST MARS VIEUX MAISONS", + "nomCommune": "ST MARS VIEUX MAISONS" }, { - "codePostal": "70180", - "codeCommune": "70511", - "libelleAcheminement": "VAITE", - "nomCommune": "VAITE" + "codePostal": "64410", + "codeCommune": "64318", + "libelleAcheminement": "LARREULE", + "nomCommune": "LARREULE" }, { - "codePostal": "21310", - "codeCommune": "21071", - "libelleAcheminement": "BEZE", - "nomCommune": "BEZE" + "codePostal": "66320", + "codeCommune": "66165", + "libelleAcheminement": "RODES", + "nomCommune": "RODES" }, { - "codePostal": "76460", - "codeCommune": "76375", - "libelleAcheminement": "INGOUVILLE", - "nomCommune": "INGOUVILLE" + "codePostal": "77124", + "codeCommune": "77335", + "libelleAcheminement": "CHAUCONIN NEUFMONTIERS", + "nomCommune": "CHAUCONIN NEUFMONTIERS" }, { - "codePostal": "77320", - "codeCommune": "77182", - "libelleAcheminement": "LA FERTE GAUCHER", - "nomCommune": "LA FERTE GAUCHER" + "codePostal": "25110", + "codeCommune": "25298", + "libelleAcheminement": "GROSBOIS", + "nomCommune": "GROSBOIS" }, { - "codePostal": "70000", - "codeCommune": "70513", - "libelleAcheminement": "VAIVRE ET MONTOILLE", - "nomCommune": "VAIVRE ET MONTOILLE" + "codePostal": "77720", + "codeCommune": "77428", + "libelleAcheminement": "ST OUEN EN BRIE", + "nomCommune": "ST OUEN EN BRIE" }, { - "codePostal": "21540", - "codeCommune": "21080", - "libelleAcheminement": "BLAISY BAS", - "nomCommune": "BLAISY BAS" + "codePostal": "64290", + "codeCommune": "64324", + "libelleAcheminement": "LASSEUBE", + "nomCommune": "LASSEUBE" }, { - "codePostal": "76390", - "codeCommune": "76381", - "libelleAcheminement": "LANDES VIEILLES ET NEUVES", - "nomCommune": "LANDES VIEILLES ET NEUVES" + "codePostal": "66360", + "codeCommune": "66166", + "libelleAcheminement": "SAHORRE", + "nomCommune": "SAHORRE" }, { - "codePostal": "77370", - "codeCommune": "77191", - "libelleAcheminement": "FONTENAILLES", - "nomCommune": "FONTENAILLES" + "codePostal": "77114", + "codeCommune": "77341", + "libelleAcheminement": "NOYEN SUR SEINE", + "nomCommune": "NOYEN SUR SEINE" }, { - "codePostal": "70240", - "codeCommune": "70522", - "libelleAcheminement": "VAROGNE", - "nomCommune": "VAROGNE" + "codePostal": "25310", + "codeCommune": "25304", + "libelleAcheminement": "HERIMONCOURT", + "nomCommune": "HERIMONCOURT" }, { - "codePostal": "21330", - "codeCommune": "21093", - "libelleAcheminement": "BOUIX", - "nomCommune": "BOUIX" + "codePostal": "77120", + "codeCommune": "77433", + "libelleAcheminement": "BEAUTHEIL SAINTS", + "nomCommune": "BEAUTHEIL SAINTS" }, { - "codePostal": "76760", - "codeCommune": "76387", - "libelleAcheminement": "LINDEBEUF", - "nomCommune": "LINDEBEUF" + "codePostal": "64130", + "codeCommune": "64341", + "libelleAcheminement": "LICHOS", + "nomCommune": "LICHOS" }, { - "codePostal": "77690", - "codeCommune": "77202", - "libelleAcheminement": "LA GENEVRAYE", - "nomCommune": "LA GENEVRAYE" + "codePostal": "66220", + "codeCommune": "66169", + "libelleAcheminement": "ST ARNAC", + "nomCommune": "ST ARNAC" }, { - "codePostal": "70700", - "codeCommune": "70531", - "libelleAcheminement": "VELLECLAIRE", - "nomCommune": "VELLECLAIRE" + "codePostal": "77440", + "codeCommune": "77343", + "libelleAcheminement": "OCQUERRE", + "nomCommune": "OCQUERRE" }, { - "codePostal": "21610", - "codeCommune": "21094", - "libelleAcheminement": "BOURBERAIN", - "nomCommune": "BOURBERAIN" + "codePostal": "25170", + "codeCommune": "25317", + "libelleAcheminement": "JALLERANGE", + "nomCommune": "JALLERANGE" }, { - "codePostal": "76210", - "codeCommune": "76388", - "libelleAcheminement": "LINTOT", - "nomCommune": "LINTOT" + "codePostal": "77930", + "codeCommune": "77435", + "libelleAcheminement": "ST SAUVEUR SUR ECOLE", + "nomCommune": "ST SAUVEUR SUR ECOLE" }, { - "codePostal": "77840", - "codeCommune": "77204", - "libelleAcheminement": "GERMIGNY SOUS COULOMBS", - "nomCommune": "GERMIGNY SOUS COULOMBS" + "codePostal": "64420", + "codeCommune": "64343", + "libelleAcheminement": "LIMENDOUS", + "nomCommune": "LIMENDOUS" }, { - "codePostal": "70000", - "codeCommune": "70535", - "libelleAcheminement": "VELLEGUINDRY ET LEVRECEY", - "nomCommune": "VELLEGUINDRY ET LEVRECEY" + "codePostal": "66510", + "codeCommune": "66176", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "21350", - "codeCommune": "21097", - "libelleAcheminement": "BOUSSEY", - "nomCommune": "BOUSSEY" + "codePostal": "77710", + "codeCommune": "77353", + "libelleAcheminement": "PALEY", + "nomCommune": "PALEY" }, { - "codePostal": "76860", - "codeCommune": "76395", - "libelleAcheminement": "LONGUEIL", - "nomCommune": "LONGUEIL" + "codePostal": "25370", + "codeCommune": "25318", + "libelleAcheminement": "JOUGNE", + "nomCommune": "JOUGNE" }, { - "codePostal": "77114", - "codeCommune": "77208", - "libelleAcheminement": "GOUAIX", - "nomCommune": "GOUAIX" + "codePostal": "77260", + "codeCommune": "77448", + "libelleAcheminement": "SEPT SORTS", + "nomCommune": "SEPT SORTS" }, { - "codePostal": "70240", - "codeCommune": "70537", - "libelleAcheminement": "VELLEMINFROY", - "nomCommune": "VELLEMINFROY" + "codePostal": "64300", + "codeCommune": "64349", + "libelleAcheminement": "LOUBIENG", + "nomCommune": "LOUBIENG" }, { - "codePostal": "21390", - "codeCommune": "21101", - "libelleAcheminement": "BRAUX", - "nomCommune": "BRAUX" + "codePostal": "66250", + "codeCommune": "66180", + "libelleAcheminement": "ST LAURENT DE LA SALANQUE", + "nomCommune": "ST LAURENT DE LA SALANQUE" }, { - "codePostal": "76750", - "codeCommune": "76396", - "libelleAcheminement": "LONGUERUE", - "nomCommune": "LONGUERUE" + "codePostal": "77970", + "codeCommune": "77357", + "libelleAcheminement": "PECY", + "nomCommune": "PECY" }, { - "codePostal": "77130", - "codeCommune": "77210", - "libelleAcheminement": "LA GRANDE PAROISSE", - "nomCommune": "LA GRANDE PAROISSE" + "codePostal": "25160", + "codeCommune": "25320", + "libelleAcheminement": "LABERGEMENT STE MARIE", + "nomCommune": "LABERGEMENT STE MARIE" }, { - "codePostal": "70500", - "codeCommune": "70545", - "libelleAcheminement": "VENISEY", - "nomCommune": "VENISEY" + "codePostal": "77520", + "codeCommune": "77452", + "libelleAcheminement": "SIGY", + "nomCommune": "SIGY" }, { - "codePostal": "21570", - "codeCommune": "21109", - "libelleAcheminement": "BRION SUR OURCE BELAN", - "nomCommune": "BRION SUR OURCE" + "codePostal": "64440", + "codeCommune": "64354", + "libelleAcheminement": "LOUVIE SOUBIRON", + "nomCommune": "LOUVIE SOUBIRON" }, { - "codePostal": "76940", - "codeCommune": "76401", - "libelleAcheminement": "ARELAUNE EN SEINE", - "nomCommune": "ARELAUNE EN SEINE" + "codePostal": "66800", + "codeCommune": "66181", + "libelleAcheminement": "STE LEOCADIE", + "nomCommune": "STE LEOCADIE" }, { - "codePostal": "77166", - "codeCommune": "77217", - "libelleAcheminement": "GRISY SUISNES", - "nomCommune": "GRISY SUISNES" + "codePostal": "77580", + "codeCommune": "77361", + "libelleAcheminement": "PIERRE LEVEE", + "nomCommune": "PIERRE LEVEE" }, { - "codePostal": "70400", - "codeCommune": "70547", - "libelleAcheminement": "VERLANS", - "nomCommune": "VERLANS" + "codePostal": "25820", + "codeCommune": "25323", + "libelleAcheminement": "LAISSEY", + "nomCommune": "LAISSEY" }, { - "codePostal": "21490", - "codeCommune": "21111", - "libelleAcheminement": "BROGNON", - "nomCommune": "BROGNON" + "codePostal": "77111", + "codeCommune": "77457", + "libelleAcheminement": "SOLERS", + "nomCommune": "SOLERS" }, { - "codePostal": "76530", - "codeCommune": "76419", - "libelleAcheminement": "MAUNY", - "nomCommune": "MAUNY" + "codePostal": "64350", + "codeCommune": "64356", + "libelleAcheminement": "LUC ARMAU", + "nomCommune": "LUC ARMAU" }, { - "codePostal": "77480", - "codeCommune": "77218", - "libelleAcheminement": "GRISY SUR SEINE", - "nomCommune": "GRISY SUR SEINE" + "codePostal": "66220", + "codeCommune": "66184", + "libelleAcheminement": "ST MARTIN DE FENOUILLET", + "nomCommune": "ST MARTIN DE FENOUILLET" }, { - "codePostal": "70130", - "codeCommune": "70549", - "libelleAcheminement": "LA VERNOTTE", - "nomCommune": "LA VERNOTTE" + "codePostal": "77515", + "codeCommune": "77371", + "libelleAcheminement": "POMMEUSE", + "nomCommune": "POMMEUSE" }, { - "codePostal": "21220", - "codeCommune": "21113", - "libelleAcheminement": "BROINDON", - "nomCommune": "BROINDON" + "codePostal": "25210", + "codeCommune": "25329", + "libelleAcheminement": "LAVAL LE PRIEURE", + "nomCommune": "LAVAL LE PRIEURE" }, { - "codePostal": "76220", - "codeCommune": "76423", - "libelleAcheminement": "MENERVAL", - "nomCommune": "MENERVAL" + "codePostal": "77171", + "codeCommune": "77459", + "libelleAcheminement": "SOURDUN", + "nomCommune": "SOURDUN" }, { - "codePostal": "77580", - "codeCommune": "77219", - "libelleAcheminement": "GUERARD", - "nomCommune": "GUERARD" + "codePostal": "64360", + "codeCommune": "64359", + "libelleAcheminement": "LUCQ DE BEARN", + "nomCommune": "LUCQ DE BEARN" }, { - "codePostal": "70500", - "codeCommune": "70554", - "libelleAcheminement": "VILLARS LE PAUTEL", - "nomCommune": "VILLARS LE PAUTEL" + "codePostal": "66280", + "codeCommune": "66189", + "libelleAcheminement": "SALEILLES", + "nomCommune": "SALEILLES" }, { - "codePostal": "21290", - "codeCommune": "21116", - "libelleAcheminement": "BURE LES TEMPLIERS", - "nomCommune": "BURE LES TEMPLIERS" + "codePostal": "77400", + "codeCommune": "77372", + "libelleAcheminement": "POMPONNE", + "nomCommune": "POMPONNE" }, { - "codePostal": "76780", - "codeCommune": "76431", - "libelleAcheminement": "LE MESNIL LIEUBRAY", - "nomCommune": "LE MESNIL LIEUBRAY" + "codePostal": "25440", + "codeCommune": "25330", + "libelleAcheminement": "LAVANS QUINGEY", + "nomCommune": "LAVANS QUINGEY" }, { "codePostal": "77520", - "codeCommune": "77223", - "libelleAcheminement": "GURCY LE CHATEL", - "nomCommune": "GURCY LE CHATEL" + "codeCommune": "77461", + "libelleAcheminement": "THENISY", + "nomCommune": "THENISY" }, { - "codePostal": "70160", - "codeCommune": "70555", - "libelleAcheminement": "LA VILLEDIEU EN FONTENETTE", - "nomCommune": "LA VILLEDIEU EN FONTENETTE" + "codePostal": "64800", + "codeCommune": "64386", + "libelleAcheminement": "MIREPEIX", + "nomCommune": "MIREPEIX" }, { - "codePostal": "21290", - "codeCommune": "21123", - "libelleAcheminement": "BUXEROLLES", - "nomCommune": "BUXEROLLES" + "codePostal": "66600", + "codeCommune": "66190", + "libelleAcheminement": "SALSES LE CHATEAU", + "nomCommune": "SALSES LE CHATEAU" }, { - "codePostal": "76570", - "codeCommune": "76433", - "libelleAcheminement": "MESNIL PANNEVILLE", - "nomCommune": "MESNIL PANNEVILLE" + "codePostal": "77720", + "codeCommune": "77381", + "libelleAcheminement": "QUIERS", + "nomCommune": "QUIERS" }, { - "codePostal": "77510", - "codeCommune": "77228", - "libelleAcheminement": "HONDEVILLIERS", - "nomCommune": "HONDEVILLIERS" + "codePostal": "25510", + "codeCommune": "25333", + "libelleAcheminement": "LAVIRON", + "nomCommune": "LAVIRON" }, { - "codePostal": "70300", - "codeCommune": "70564", - "libelleAcheminement": "VILLERS LES LUXEUIL", - "nomCommune": "VILLERS LES LUXEUIL" + "codePostal": "77131", + "codeCommune": "77469", + "libelleAcheminement": "TOUQUIN", + "nomCommune": "TOUQUIN" }, { - "codePostal": "21430", - "codeCommune": "21124", - "libelleAcheminement": "CENSEREY", - "nomCommune": "CENSEREY" + "codePostal": "64300", + "codeCommune": "64396", + "libelleAcheminement": "MONT", + "nomCommune": "MONT" + }, + { + "codePostal": "66230", + "codeCommune": "66194", + "libelleAcheminement": "SERRALONGUE", + "nomCommune": "SERRALONGUE" }, { - "codePostal": "76480", - "codeCommune": "76436", - "libelleAcheminement": "LE MESNIL SOUS JUMIEGES", - "nomCommune": "LE MESNIL SOUS JUMIEGES" + "codePostal": "77860", + "codeCommune": "77382", + "libelleAcheminement": "QUINCY VOISINS", + "nomCommune": "QUINCY VOISINS" }, { - "codePostal": "77450", - "codeCommune": "77232", - "libelleAcheminement": "ISLES LES VILLENOY", - "nomCommune": "ISLES LES VILLENOY" + "codePostal": "25270", + "codeCommune": "25334", + "libelleAcheminement": "LEVIER", + "nomCommune": "LEVIER" }, { - "codePostal": "70180", - "codeCommune": "70574", - "libelleAcheminement": "VOLON", - "nomCommune": "VOLON" + "codePostal": "77123", + "codeCommune": "77471", + "libelleAcheminement": "TOUSSON", + "nomCommune": "TOUSSON" }, { - "codePostal": "21250", - "codeCommune": "21131", - "libelleAcheminement": "CHAMBLANC", - "nomCommune": "CHAMBLANC" + "codePostal": "64300", + "codeCommune": "64396", + "libelleAcheminement": "MONT", + "nomCommune": "MONT" }, { - "codePostal": "76220", - "codeCommune": "76440", - "libelleAcheminement": "MOLAGNIES", - "nomCommune": "MOLAGNIES" + "codePostal": "66690", + "codeCommune": "66196", + "libelleAcheminement": "SOREDE", + "nomCommune": "SOREDE" }, { - "codePostal": "77970", - "codeCommune": "77239", - "libelleAcheminement": "JOUY LE CHATEL", - "nomCommune": "JOUY LE CHATEL" + "codePostal": "77370", + "codeCommune": "77383", + "libelleAcheminement": "RAMPILLON", + "nomCommune": "RAMPILLON" }, { - "codePostal": "70200", - "codeCommune": "70581", - "libelleAcheminement": "VY LES LURE", - "nomCommune": "VY LES LURE" + "codePostal": "25190", + "codeCommune": "25335", + "libelleAcheminement": "LIEBVILLERS", + "nomCommune": "LIEBVILLERS" }, { - "codePostal": "21500", - "codeCommune": "21137", - "libelleAcheminement": "CHAMP D OISEAU", - "nomCommune": "CHAMP D OISEAU" + "codePostal": "77510", + "codeCommune": "77472", + "libelleAcheminement": "LA TRETOIRE", + "nomCommune": "LA TRETOIRE" }, { - "codePostal": "76690", - "codeCommune": "76443", - "libelleAcheminement": "MONT CAUVAIRE", - "nomCommune": "MONT CAUVAIRE" + "codePostal": "64121", + "codeCommune": "64399", + "libelleAcheminement": "MONTARDON", + "nomCommune": "MONTARDON" }, { - "codePostal": "77148", - "codeCommune": "77245", - "libelleAcheminement": "LAVAL EN BRIE", - "nomCommune": "LAVAL EN BRIE" + "codePostal": "66400", + "codeCommune": "66199", + "libelleAcheminement": "TAILLET", + "nomCommune": "TAILLET" }, { - "codePostal": "70120", - "codeCommune": "70582", - "libelleAcheminement": "VY LES RUPT", - "nomCommune": "VY LES RUPT" + "codePostal": "77000", + "codeCommune": "77389", + "libelleAcheminement": "LA ROCHETTE", + "nomCommune": "LA ROCHETTE" }, { - "codePostal": "21170", - "codeCommune": "21148", - "libelleAcheminement": "CHARREY SUR SAONE", - "nomCommune": "CHARREY SUR SAONE" + "codePostal": "25440", + "codeCommune": "25336", + "libelleAcheminement": "LIESLE", + "nomCommune": "LIESLE" }, { - "codePostal": "76680", - "codeCommune": "76445", - "libelleAcheminement": "MONTEROLIER", - "nomCommune": "MONTEROLIER" + "codePostal": "77710", + "codeCommune": "77473", + "libelleAcheminement": "TREUZY LEVELAY", + "nomCommune": "TREUZY LEVELAY" }, { - "codePostal": "77127", - "codeCommune": "77251", - "libelleAcheminement": "LIEUSAINT", - "nomCommune": "LIEUSAINT" + "codePostal": "64470", + "codeCommune": "64404", + "libelleAcheminement": "MONTORY", + "nomCommune": "MONTORY" }, { - "codePostal": "71400", - "codeCommune": "71010", - "libelleAcheminement": "ANTULLY", - "nomCommune": "ANTULLY" + "codePostal": "66120", + "codeCommune": "66202", + "libelleAcheminement": "TARGASONNE", + "nomCommune": "TARGASONNE" }, { - "codePostal": "21400", - "codeCommune": "21154", - "libelleAcheminement": "CHATILLON SUR SEINE", - "nomCommune": "CHATILLON SUR SEINE" + "codePostal": "77760", + "codeCommune": "77395", + "libelleAcheminement": "RUMONT", + "nomCommune": "RUMONT" }, { - "codePostal": "76270", - "codeCommune": "76465", - "libelleAcheminement": "NEUVILLE FERRIERES", - "nomCommune": "NEUVILLE FERRIERES" + "codePostal": "25930", + "codeCommune": "25339", + "libelleAcheminement": "LODS", + "nomCommune": "LODS" }, { - "codePostal": "77710", - "codeCommune": "77261", - "libelleAcheminement": "LORREZ LE BOCAGE PREAUX", - "nomCommune": "LORREZ LE BOCAGE PREAUX" + "codePostal": "77760", + "codeCommune": "77477", + "libelleAcheminement": "URY", + "nomCommune": "URY" }, { - "codePostal": "71400", - "codeCommune": "71014", - "libelleAcheminement": "AUTUN", - "nomCommune": "AUTUN" + "codePostal": "64190", + "codeCommune": "64416", + "libelleAcheminement": "NAVARRENX", + "nomCommune": "NAVARRENX" }, { - "codePostal": "21700", - "codeCommune": "21162", - "libelleAcheminement": "CHAUX", - "nomCommune": "CHAUX" + "codePostal": "66230", + "codeCommune": "66206", + "libelleAcheminement": "LE TECH", + "nomCommune": "LE TECH" }, { - "codePostal": "76210", - "codeCommune": "76468", - "libelleAcheminement": "NOINTOT", - "nomCommune": "NOINTOT" + "codePostal": "77510", + "codeCommune": "77398", + "libelleAcheminement": "SABLONNIERES", + "nomCommune": "SABLONNIERES" }, { - "codePostal": "77560", - "codeCommune": "77262", - "libelleAcheminement": "LOUAN VILLEGRUIS FONTAINE", - "nomCommune": "LOUAN VILLEGRUIS FONTAINE" + "codePostal": "25440", + "codeCommune": "25340", + "libelleAcheminement": "LOMBARD", + "nomCommune": "LOMBARD" }, { - "codePostal": "71640", - "codeCommune": "71019", - "libelleAcheminement": "BARIZEY", - "nomCommune": "BARIZEY" + "codePostal": "77130", + "codeCommune": "77482", + "libelleAcheminement": "VARENNES SUR SEINE", + "nomCommune": "VARENNES SUR SEINE" }, { - "codePostal": "21360", - "codeCommune": "21184", - "libelleAcheminement": "COLOMBIER", - "nomCommune": "COLOMBIER" + "codePostal": "64400", + "codeCommune": "64426", + "libelleAcheminement": "ORIN", + "nomCommune": "ORIN" }, { - "codePostal": "76940", - "codeCommune": "76473", - "libelleAcheminement": "NOTRE DAME DE BLIQUETUIT", - "nomCommune": "NOTRE DAME DE BLIQUETUIT" + "codePostal": "66410", + "codeCommune": "66224", + "libelleAcheminement": "VILLELONGUE DE LA SALANQUE", + "nomCommune": "VILLELONGUE DE LA SALANQUE" }, { - "codePostal": "77700", - "codeCommune": "77268", - "libelleAcheminement": "MAGNY LE HONGRE", - "nomCommune": "MAGNY LE HONGRE" + "codePostal": "77860", + "codeCommune": "77413", + "libelleAcheminement": "ST GERMAIN SUR MORIN", + "nomCommune": "ST GERMAIN SUR MORIN" }, { - "codePostal": "71580", - "codeCommune": "71027", - "libelleAcheminement": "BEAUREPAIRE EN BRESSE", - "nomCommune": "BEAUREPAIRE EN BRESSE" + "codePostal": "25690", + "codeCommune": "25342", + "libelleAcheminement": "LONGECHAUX", + "nomCommune": "LONGECHAUX" }, { - "codePostal": "21250", - "codeCommune": "21193", - "libelleAcheminement": "CORGENGOUX", - "nomCommune": "CORGENGOUX" + "codePostal": "77910", + "codeCommune": "77483", + "libelleAcheminement": "VARREDDES", + "nomCommune": "VARREDDES" }, { - "codePostal": "76960", - "codeCommune": "76474", - "libelleAcheminement": "NOTRE DAME DE BONDEVILLE", - "nomCommune": "NOTRE DAME DE BONDEVILLE" + "codePostal": "64470", + "codeCommune": "64432", + "libelleAcheminement": "OSSAS SUHARE", + "nomCommune": "OSSAS SUHARE" }, { - "codePostal": "77139", - "codeCommune": "77274", - "libelleAcheminement": "MARCILLY", - "nomCommune": "MARCILLY" + "codePostal": "66740", + "codeCommune": "66225", + "libelleAcheminement": "VILLELONGUE DELS MONTS", + "nomCommune": "VILLELONGUE DELS MONTS" }, { - "codePostal": "71270", - "codeCommune": "71028", - "libelleAcheminement": "BEAUVERNOIS", - "nomCommune": "BEAUVERNOIS" + "codePostal": "77160", + "codeCommune": "77414", + "libelleAcheminement": "ST HILLIERS", + "nomCommune": "ST HILLIERS" }, { - "codePostal": "21190", - "codeCommune": "21196", - "libelleAcheminement": "CORPEAU", - "nomCommune": "CORPEAU" + "codePostal": "25690", + "codeCommune": "25343", + "libelleAcheminement": "LONGEMAISON", + "nomCommune": "LONGEMAISON" }, { - "codePostal": "76350", - "codeCommune": "76484", - "libelleAcheminement": "OISSEL", - "nomCommune": "OISSEL" + "codePostal": "77141", + "codeCommune": "77486", + "libelleAcheminement": "VAUDOY EN BRIE", + "nomCommune": "VAUDOY EN BRIE" }, { - "codePostal": "77990", - "codeCommune": "77282", - "libelleAcheminement": "MAUREGARD", - "nomCommune": "MAUREGARD" + "codePostal": "64490", + "codeCommune": "64433", + "libelleAcheminement": "OSSE EN ASPE", + "nomCommune": "OSSE EN ASPE" }, { - "codePostal": "71350", - "codeCommune": "71043", - "libelleAcheminement": "LES BORDES", - "nomCommune": "LES BORDES" + "codePostal": "66180", + "codeCommune": "66227", + "libelleAcheminement": "VILLENEUVE DE LA RAHO", + "nomCommune": "VILLENEUVE DE LA RAHO" }, { - "codePostal": "21120", - "codeCommune": "21208", - "libelleAcheminement": "COURTIVRON", - "nomCommune": "COURTIVRON" + "codePostal": "77660", + "codeCommune": "77415", + "libelleAcheminement": "ST JEAN LES DEUX JUMEAUX", + "nomCommune": "ST JEAN LES DEUX JUMEAUX" }, { - "codePostal": "76750", - "codeCommune": "76502", - "libelleAcheminement": "PIERREVAL", - "nomCommune": "PIERREVAL" + "codePostal": "25380", + "codeCommune": "25344", + "libelleAcheminement": "LONGEVELLE LES RUSSEY", + "nomCommune": "LONGEVELLE LES RUSSEY" }, { - "codePostal": "77100", - "codeCommune": "77284", - "libelleAcheminement": "MEAUX", - "nomCommune": "MEAUX" + "codePostal": "77510", + "codeCommune": "77492", + "libelleAcheminement": "VERDELOT", + "nomCommune": "VERDELOT" }, { - "codePostal": "71330", - "codeCommune": "71044", - "libelleAcheminement": "BOSJEAN", - "nomCommune": "BOSJEAN" + "codePostal": "64390", + "codeCommune": "64435", + "libelleAcheminement": "OSSERAIN RIVAREYTE", + "nomCommune": "OSSERAIN RIVAREYTE" }, { - "codePostal": "21560", - "codeCommune": "21209", - "libelleAcheminement": "COUTERNON", - "nomCommune": "COUTERNON" + "codePostal": "66220", + "codeCommune": "66232", + "libelleAcheminement": "VIRA", + "nomCommune": "VIRA" }, { - "codePostal": "76520", - "codeCommune": "76514", - "libelleAcheminement": "QUEVREVILLE LA POTERIE", - "nomCommune": "QUEVREVILLE LA POTERIE" + "codePostal": "77370", + "codeCommune": "77416", + "libelleAcheminement": "ST JUST EN BRIE", + "nomCommune": "ST JUST EN BRIE" }, { - "codePostal": "77320", - "codeCommune": "77287", - "libelleAcheminement": "MEILLERAY", - "nomCommune": "MEILLERAY" + "codePostal": "25650", + "codeCommune": "25347", + "libelleAcheminement": "LA LONGEVILLE", + "nomCommune": "LA LONGEVILLE" }, { - "codePostal": "71320", - "codeCommune": "71046", - "libelleAcheminement": "LA BOULAYE", - "nomCommune": "LA BOULAYE" + "codePostal": "77670", + "codeCommune": "77494", + "libelleAcheminement": "VERNOU LA CELLE SUR SEINE", + "nomCommune": "VERNOU LA CELLE SUR SEINE" }, { - "codePostal": "21230", - "codeCommune": "21216", - "libelleAcheminement": "CULETRE", - "nomCommune": "CULETRE" + "codePostal": "64160", + "codeCommune": "64438", + "libelleAcheminement": "OUILLON", + "nomCommune": "OUILLON" }, { - "codePostal": "76860", - "codeCommune": "76515", - "libelleAcheminement": "QUIBERVILLE", - "nomCommune": "QUIBERVILLE" + "codePostal": "67120", + "codeCommune": "67008", + "libelleAcheminement": "ALTORF", + "nomCommune": "ALTORF" }, { - "codePostal": "77940", - "codeCommune": "77313", - "libelleAcheminement": "MONTMACHOUX", - "nomCommune": "MONTMACHOUX" + "codePostal": "77510", + "codeCommune": "77417", + "libelleAcheminement": "ST LEGER", + "nomCommune": "ST LEGER" }, { - "codePostal": "71110", - "codeCommune": "71048", - "libelleAcheminement": "BOURG LE COMTE", - "nomCommune": "BOURG LE COMTE" + "codePostal": "25250", + "codeCommune": "25365", + "libelleAcheminement": "MANCENANS", + "nomCommune": "MANCENANS" }, { - "codePostal": "21220", - "codeCommune": "21217", - "libelleAcheminement": "CURLEY", - "nomCommune": "CURLEY" + "codePostal": "77470", + "codeCommune": "77505", + "libelleAcheminement": "VILLEMAREUIL", + "nomCommune": "VILLEMAREUIL" }, { - "codePostal": "76340", - "codeCommune": "76520", - "libelleAcheminement": "REALCAMP", - "nomCommune": "REALCAMP" + "codePostal": "64320", + "codeCommune": "64439", + "libelleAcheminement": "OUSSE", + "nomCommune": "OUSSE" }, { - "codePostal": "77320", - "codeCommune": "77314", - "libelleAcheminement": "MONTOLIVET", - "nomCommune": "MONTOLIVET" + "codePostal": "67600", + "codeCommune": "67019", + "libelleAcheminement": "BALDENHEIM", + "nomCommune": "BALDENHEIM" }, { - "codePostal": "71500", - "codeCommune": "71056", - "libelleAcheminement": "BRANGES", - "nomCommune": "BRANGES" + "codePostal": "77670", + "codeCommune": "77419", + "libelleAcheminement": "ST MAMMES", + "nomCommune": "ST MAMMES" }, { - "codePostal": "21230", - "codeCommune": "21222", - "libelleAcheminement": "CUSSY LE CHATEL", - "nomCommune": "CUSSY LE CHATEL" + "codePostal": "25640", + "codeCommune": "25368", + "libelleAcheminement": "MARCHAUX CHAUDEFONTAINE", + "nomCommune": "MARCHAUX CHAUDEFONTAINE" }, { - "codePostal": "76430", - "codeCommune": "76522", - "libelleAcheminement": "LA REMUEE", - "nomCommune": "LA REMUEE" + "codePostal": "77154", + "codeCommune": "77509", + "libelleAcheminement": "VILLENEUVE LES BORDES", + "nomCommune": "VILLENEUVE LES BORDES" }, { - "codePostal": "77250", - "codeCommune": "77316", - "libelleAcheminement": "MORET LOING ET ORVANNE", - "nomCommune": "MORET LOING ET ORVANNE" + "codePostal": "64350", + "codeCommune": "64446", + "libelleAcheminement": "PEYRELONGUE ABOS", + "nomCommune": "PEYRELONGUE ABOS" }, { - "codePostal": "71190", - "codeCommune": "71063", - "libelleAcheminement": "BROYE", - "nomCommune": "BROYE" + "codePostal": "67320", + "codeCommune": "67029", + "libelleAcheminement": "BERG", + "nomCommune": "BERG" }, { - "codePostal": "21121", - "codeCommune": "21223", - "libelleAcheminement": "DAIX", - "nomCommune": "DAIX" + "codePostal": "77410", + "codeCommune": "77427", + "libelleAcheminement": "ST MESMES", + "nomCommune": "ST MESMES" }, { - "codePostal": "76340", - "codeCommune": "76523", - "libelleAcheminement": "RETONVAL", - "nomCommune": "RETONVAL" + "codePostal": "25410", + "codeCommune": "25374", + "libelleAcheminement": "MERCEY LE GRAND", + "nomCommune": "MERCEY LE GRAND" }, { - "codePostal": "77230", - "codeCommune": "77322", - "libelleAcheminement": "MOUSSY LE NEUF", - "nomCommune": "MOUSSY LE NEUF" + "codePostal": "77510", + "codeCommune": "77512", + "libelleAcheminement": "VILLENEUVE SUR BELLOT", + "nomCommune": "VILLENEUVE SUR BELLOT" }, { - "codePostal": "71500", - "codeCommune": "71064", - "libelleAcheminement": "BRUAILLES", - "nomCommune": "BRUAILLES" + "codePostal": "64370", + "codeCommune": "64450", + "libelleAcheminement": "POMPS", + "nomCommune": "POMPS" }, { - "codePostal": "21430", - "codeCommune": "21229", - "libelleAcheminement": "DIANCEY", - "nomCommune": "DIANCEY" + "codePostal": "67140", + "codeCommune": "67032", + "libelleAcheminement": "BERNARDVILLE", + "nomCommune": "BERNARDVILLE" }, { - "codePostal": "76133", - "codeCommune": "76534", - "libelleAcheminement": "ROLLEVILLE", - "nomCommune": "ROLLEVILLE" + "codePostal": "77178", + "codeCommune": "77430", + "libelleAcheminement": "ST PATHUS", + "nomCommune": "ST PATHUS" }, { - "codePostal": "77230", - "codeCommune": "77323", - "libelleAcheminement": "MOUSSY LE VIEUX", - "nomCommune": "MOUSSY LE VIEUX" + "codePostal": "25870", + "codeCommune": "25376", + "libelleAcheminement": "MEREY VIEILLEY", + "nomCommune": "MEREY VIEILLEY" }, { - "codePostal": "71960", - "codeCommune": "71069", - "libelleAcheminement": "BUSSIERES", - "nomCommune": "BUSSIERES" + "codePostal": "77560", + "codeCommune": "77519", + "libelleAcheminement": "VILLIERS ST GEORGES", + "nomCommune": "VILLIERS ST GEORGES" }, { - "codePostal": "21510", - "codeCommune": "21237", - "libelleAcheminement": "ECHALOT", - "nomCommune": "ECHALOT" + "codePostal": "64410", + "codeCommune": "64457", + "libelleAcheminement": "POURSIUGUES BOUCOUE", + "nomCommune": "POURSIUGUES BOUCOUE" }, { - "codePostal": "76000", - "codeCommune": "76540", - "libelleAcheminement": "ROUEN", - "nomCommune": "ROUEN" + "codePostal": "67370", + "codeCommune": "67034", + "libelleAcheminement": "BERSTETT", + "nomCommune": "BERSTETT" }, { - "codePostal": "77480", - "codeCommune": "77325", - "libelleAcheminement": "MOUY SUR SEINE", - "nomCommune": "MOUY SUR SEINE" + "codePostal": "77165", + "codeCommune": "77437", + "libelleAcheminement": "ST SOUPPLETS", + "nomCommune": "ST SOUPPLETS" }, { - "codePostal": "71390", - "codeCommune": "71070", - "libelleAcheminement": "BUXY", - "nomCommune": "BUXY" + "codePostal": "25190", + "codeCommune": "25386", + "libelleAcheminement": "MONTANCY", + "nomCommune": "MONTANCY" }, { - "codePostal": "21380", - "codeCommune": "21245", - "libelleAcheminement": "EPAGNY", - "nomCommune": "EPAGNY" + "codePostal": "77114", + "codeCommune": "77522", + "libelleAcheminement": "VILLIERS SUR SEINE", + "nomCommune": "VILLIERS SUR SEINE" }, { - "codePostal": "76480", - "codeCommune": "76541", - "libelleAcheminement": "ROUMARE", - "nomCommune": "ROUMARE" + "codePostal": "64260", + "codeCommune": "64473", + "libelleAcheminement": "STE COLOME", + "nomCommune": "STE COLOME" }, { - "codePostal": "77710", - "codeCommune": "77329", - "libelleAcheminement": "NANTEAU SUR LUNAIN", - "nomCommune": "NANTEAU SUR LUNAIN" + "codePostal": "67170", + "codeCommune": "67035", + "libelleAcheminement": "BERSTHEIM", + "nomCommune": "BERSTHEIM" }, { - "codePostal": "71110", - "codeCommune": "71071", - "libelleAcheminement": "CERON", - "nomCommune": "CERON" + "codePostal": "77400", + "codeCommune": "77438", + "libelleAcheminement": "ST THIBAULT DES VIGNES", + "nomCommune": "ST THIBAULT DES VIGNES" }, { - "codePostal": "21220", - "codeCommune": "21246", - "libelleAcheminement": "EPERNAY SOUS GEVREY", - "nomCommune": "EPERNAY SOUS GEVREY" + "codePostal": "25260", + "codeCommune": "25394", + "libelleAcheminement": "MONTENOIS", + "nomCommune": "MONTENOIS" }, { - "codePostal": "76116", - "codeCommune": "76548", - "libelleAcheminement": "RY", - "nomCommune": "RY" + "codePostal": "77139", + "codeCommune": "77526", + "libelleAcheminement": "VINCY MANOEUVRE", + "nomCommune": "VINCY MANOEUVRE" }, { - "codePostal": "77100", - "codeCommune": "77330", - "libelleAcheminement": "NANTEUIL LES MEAUX", - "nomCommune": "NANTEUIL LES MEAUX" + "codePostal": "64390", + "codeCommune": "64480", + "libelleAcheminement": "ST GLADIE ARRIVE MUNEIN", + "nomCommune": "ST GLADIE ARRIVE MUNEIN" }, { - "codePostal": "71390", - "codeCommune": "71072", - "libelleAcheminement": "CERSOT", - "nomCommune": "CERSOT" + "codePostal": "67800", + "codeCommune": "67043", + "libelleAcheminement": "BISCHHEIM", + "nomCommune": "BISCHHEIM" }, { - "codePostal": "21290", - "codeCommune": "21250", - "libelleAcheminement": "ESSAROIS", - "nomCommune": "ESSAROIS" + "codePostal": "77700", + "codeCommune": "77449", + "libelleAcheminement": "SERRIS", + "nomCommune": "SERRIS" }, { - "codePostal": "76116", - "codeCommune": "76554", - "libelleAcheminement": "ST AIGNAN SUR RY", - "nomCommune": "ST AIGNAN SUR RY" + "codePostal": "25320", + "codeCommune": "25397", + "libelleAcheminement": "MONTFERRAND LE CHATEAU", + "nomCommune": "MONTFERRAND LE CHATEAU" }, { - "codePostal": "77124", - "codeCommune": "77335", - "libelleAcheminement": "CHAUCONIN NEUFMONTIERS", - "nomCommune": "CHAUCONIN NEUFMONTIERS" + "codePostal": "77560", + "codeCommune": "77530", + "libelleAcheminement": "VOULTON", + "nomCommune": "VOULTON" }, { - "codePostal": "71100", - "codeCommune": "71076", - "libelleAcheminement": "CHALON SUR SAONE", - "nomCommune": "CHALON SUR SAONE" + "codePostal": "64500", + "codeCommune": "64483", + "libelleAcheminement": "ST JEAN DE LUZ", + "nomCommune": "ST JEAN DE LUZ" }, { - "codePostal": "21500", - "codeCommune": "21252", - "libelleAcheminement": "ETAIS", - "nomCommune": "ETAIS" + "codePostal": "67260", + "codeCommune": "67047", + "libelleAcheminement": "BISSERT", + "nomCommune": "BISSERT" }, { - "codePostal": "76590", - "codeCommune": "76570", - "libelleAcheminement": "ST CRESPIN", - "nomCommune": "ST CRESPIN" + "codePostal": "77115", + "codeCommune": "77453", + "libelleAcheminement": "SIVRY COURTRY", + "nomCommune": "SIVRY COURTRY" }, { - "codePostal": "77750", - "codeCommune": "77345", - "libelleAcheminement": "ORLY SUR MORIN", - "nomCommune": "ORLY SUR MORIN" + "codePostal": "25650", + "codeCommune": "25398", + "libelleAcheminement": "MONTFLOVIN", + "nomCommune": "MONTFLOVIN" }, { - "codePostal": "71120", - "codeCommune": "71082", - "libelleAcheminement": "CHAMPLECY", - "nomCommune": "CHAMPLECY" + "codePostal": "78580", + "codeCommune": "78010", + "libelleAcheminement": "LES ALLUETS LE ROI", + "nomCommune": "LES ALLUETS LE ROI" }, { - "codePostal": "21450", - "codeCommune": "21257", - "libelleAcheminement": "ETORMAY", - "nomCommune": "ETORMAY" + "codePostal": "64370", + "codeCommune": "64491", + "libelleAcheminement": "ST MEDARD", + "nomCommune": "ST MEDARD" }, { - "codePostal": "76750", - "codeCommune": "76571", - "libelleAcheminement": "STE CROIX SUR BUCHY", - "nomCommune": "STE CROIX SUR BUCHY" + "codePostal": "67650", + "codeCommune": "67051", + "libelleAcheminement": "BLIENSCHWILLER", + "nomCommune": "BLIENSCHWILLER" }, { - "codePostal": "77930", - "codeCommune": "77359", - "libelleAcheminement": "PERTHES", - "nomCommune": "PERTHES" + "codePostal": "77230", + "codeCommune": "77462", + "libelleAcheminement": "THIEUX", + "nomCommune": "THIEUX" }, { - "codePostal": "71570", - "codeCommune": "71090", - "libelleAcheminement": "LA CHAPELLE DE GUINCHAY", - "nomCommune": "LA CHAPELLE DE GUINCHAY" + "codePostal": "25111", + "codeCommune": "25400", + "libelleAcheminement": "MONTGESOYE", + "nomCommune": "MONTGESOYE" }, { - "codePostal": "21490", - "codeCommune": "21266", - "libelleAcheminement": "FLACEY", - "nomCommune": "FLACEY" + "codePostal": "78770", + "codeCommune": "78013", + "libelleAcheminement": "ANDELU", + "nomCommune": "ANDELU" }, { - "codePostal": "76860", - "codeCommune": "76572", - "libelleAcheminement": "ST DENIS D ACLON", - "nomCommune": "ST DENIS D ACLON" + "codePostal": "64120", + "codeCommune": "64493", + "libelleAcheminement": "ST PALAIS", + "nomCommune": "ST PALAIS" }, { - "codePostal": "77580", - "codeCommune": "77361", - "libelleAcheminement": "PIERRE LEVEE", - "nomCommune": "PIERRE LEVEE" + "codePostal": "67140", + "codeCommune": "67060", + "libelleAcheminement": "BOURGHEIM", + "nomCommune": "BOURGHEIM" }, { - "codePostal": "71310", - "codeCommune": "71093", - "libelleAcheminement": "LA CHAPELLE ST SAUVEUR", - "nomCommune": "LA CHAPELLE ST SAUVEUR" + "codePostal": "77940", + "codeCommune": "77465", + "libelleAcheminement": "THOURY FEROTTES", + "nomCommune": "THOURY FEROTTES" }, { - "codePostal": "21130", - "codeCommune": "21268", - "libelleAcheminement": "FLAGEY LES AUXONNE", - "nomCommune": "FLAGEY LES AUXONNE" + "codePostal": "25500", + "codeCommune": "25403", + "libelleAcheminement": "MONTLEBON", + "nomCommune": "MONTLEBON" }, { - "codePostal": "76890", - "codeCommune": "76574", - "libelleAcheminement": "ST DENIS SUR SCIE", - "nomCommune": "ST DENIS SUR SCIE" + "codePostal": "78410", + "codeCommune": "78029", + "libelleAcheminement": "AUBERGENVILLE", + "nomCommune": "AUBERGENVILLE" }, { - "codePostal": "77135", - "codeCommune": "77374", - "libelleAcheminement": "PONTCARRE", - "nomCommune": "PONTCARRE" + "codePostal": "64270", + "codeCommune": "64494", + "libelleAcheminement": "ST PE DE LEREN", + "nomCommune": "ST PE DE LEREN" }, { - "codePostal": "71700", - "codeCommune": "71094", - "libelleAcheminement": "LA CHAPELLE SOUS BRANCION", - "nomCommune": "LA CHAPELLE SOUS BRANCION" + "codePostal": "67130", + "codeCommune": "67066", + "libelleAcheminement": "LA BROQUE", + "nomCommune": "LA BROQUE" }, { - "codePostal": "21130", - "codeCommune": "21269", - "libelleAcheminement": "FLAMMERANS", - "nomCommune": "FLAMMERANS" + "codePostal": "77470", + "codeCommune": "77475", + "libelleAcheminement": "TRILPORT", + "nomCommune": "TRILPORT" }, { - "codePostal": "76690", - "codeCommune": "76580", - "libelleAcheminement": "ST GEORGES SUR FONTAINE", - "nomCommune": "ST GEORGES SUR FONTAINE" + "codePostal": "25660", + "codeCommune": "25406", + "libelleAcheminement": "MONTROND LE CHATEAU", + "nomCommune": "MONTROND LE CHATEAU" }, { - "codePostal": "77720", - "codeCommune": "77381", - "libelleAcheminement": "QUIERS", - "nomCommune": "QUIERS" + "codePostal": "78770", + "codeCommune": "78034", + "libelleAcheminement": "AUTEUIL", + "nomCommune": "AUTEUIL" }, { - "codePostal": "71260", - "codeCommune": "71099", - "libelleAcheminement": "CHARBONNIERES", - "nomCommune": "CHARBONNIERES" + "codePostal": "64490", + "codeCommune": "64506", + "libelleAcheminement": "SARRANCE", + "nomCommune": "SARRANCE" }, { - "codePostal": "21330", - "codeCommune": "21279", - "libelleAcheminement": "FONTAINES LES SECHES", - "nomCommune": "FONTAINES LES SECHES" + "codePostal": "67570", + "codeCommune": "67066", + "libelleAcheminement": "LA BROQUE", + "nomCommune": "LA BROQUE" }, { - "codePostal": "76160", - "codeCommune": "76599", - "libelleAcheminement": "ST LEGER DU BOURG DENIS", - "nomCommune": "ST LEGER DU BOURG DENIS" + "codePostal": "77123", + "codeCommune": "77485", + "libelleAcheminement": "LE VAUDOUE", + "nomCommune": "LE VAUDOUE" }, { - "codePostal": "77000", - "codeCommune": "77389", - "libelleAcheminement": "LA ROCHETTE", - "nomCommune": "LA ROCHETTE" + "codePostal": "25680", + "codeCommune": "25408", + "libelleAcheminement": "MONTUSSAINT", + "nomCommune": "MONTUSSAINT" }, { - "codePostal": "71270", - "codeCommune": "71101", - "libelleAcheminement": "CHARETTE VARENNES", - "nomCommune": "CHARETTE VARENNES" + "codePostal": "78550", + "codeCommune": "78048", + "libelleAcheminement": "BAZAINVILLE", + "nomCommune": "BAZAINVILLE" }, { - "codePostal": "21610", - "codeCommune": "21281", - "libelleAcheminement": "FONTENELLE", - "nomCommune": "FONTENELLE" + "codePostal": "64150", + "codeCommune": "64512", + "libelleAcheminement": "SAUVELADE", + "nomCommune": "SAUVELADE" }, { - "codePostal": "76730", - "codeCommune": "76604", - "libelleAcheminement": "ST MARDS", - "nomCommune": "ST MARDS" + "codePostal": "67170", + "codeCommune": "67067", + "libelleAcheminement": "BRUMATH", + "nomCommune": "BRUMATH" }, { - "codePostal": "77230", - "codeCommune": "77392", - "libelleAcheminement": "ROUVRES", - "nomCommune": "ROUVRES" + "codePostal": "77710", + "codeCommune": "77489", + "libelleAcheminement": "VAUX SUR LUNAIN", + "nomCommune": "VAUX SUR LUNAIN" }, { - "codePostal": "71850", - "codeCommune": "71105", - "libelleAcheminement": "CHARNAY LES MACON", - "nomCommune": "CHARNAY LES MACON" + "codePostal": "25660", + "codeCommune": "25410", + "libelleAcheminement": "MORRE", + "nomCommune": "MORRE" }, { - "codePostal": "21580", - "codeCommune": "21283", - "libelleAcheminement": "FRAIGNOT ET VESVROTTE", - "nomCommune": "FRAIGNOT ET VESVROTTE" + "codePostal": "78200", + "codeCommune": "78072", + "libelleAcheminement": "BOINVILLIERS", + "nomCommune": "BOINVILLIERS" }, { - "codePostal": "76190", - "codeCommune": "76610", - "libelleAcheminement": "STE MARIE DES CHAMPS", - "nomCommune": "STE MARIE DES CHAMPS" + "codePostal": "64230", + "codeCommune": "64525", + "libelleAcheminement": "SIROS", + "nomCommune": "SIROS" }, { - "codePostal": "77560", - "codeCommune": "77396", - "libelleAcheminement": "RUPEREUX", - "nomCommune": "RUPEREUX" + "codePostal": "67470", + "codeCommune": "67069", + "libelleAcheminement": "BUHL", + "nomCommune": "BUHL" }, { - "codePostal": "71250", - "codeCommune": "71112", - "libelleAcheminement": "CHATEAU", - "nomCommune": "CHATEAU" + "codePostal": "77250", + "codeCommune": "77501", + "libelleAcheminement": "VILLECERF", + "nomCommune": "VILLECERF" }, { - "codePostal": "21110", - "codeCommune": "21292", - "libelleAcheminement": "GENLIS", - "nomCommune": "GENLIS" + "codePostal": "25500", + "codeCommune": "25411", + "libelleAcheminement": "MORTEAU", + "nomCommune": "MORTEAU" }, { - "codePostal": "76760", - "codeCommune": "76611", - "libelleAcheminement": "ST MARTIN AUX ARBRES", - "nomCommune": "ST MARTIN AUX ARBRES" + "codePostal": "78490", + "codeCommune": "78084", + "libelleAcheminement": "BOISSY SANS AVOIR", + "nomCommune": "BOISSY SANS AVOIR" }, { - "codePostal": "77310", - "codeCommune": "77407", - "libelleAcheminement": "ST FARGEAU PONTHIERRY", - "nomCommune": "ST FARGEAU PONTHIERRY" + "codePostal": "64250", + "codeCommune": "64527", + "libelleAcheminement": "SOURAIDE", + "nomCommune": "SOURAIDE" }, { - "codePostal": "71150", - "codeCommune": "71119", - "libelleAcheminement": "CHAUDENAY", - "nomCommune": "CHAUDENAY" + "codePostal": "67430", + "codeCommune": "67072", + "libelleAcheminement": "BUTTEN", + "nomCommune": "BUTTEN" }, { - "codePostal": "21700", - "codeCommune": "21294", - "libelleAcheminement": "GERLAND", - "nomCommune": "GERLAND" + "codePostal": "77710", + "codeCommune": "77504", + "libelleAcheminement": "VILLEMARECHAL", + "nomCommune": "VILLEMARECHAL" }, { - "codePostal": "76840", - "codeCommune": "76614", - "libelleAcheminement": "ST MARTIN DE BOSCHERVILLE", - "nomCommune": "ST MARTIN DE BOSCHERVILLE" + "codePostal": "25240", + "codeCommune": "25413", + "libelleAcheminement": "MOUTHE", + "nomCommune": "MOUTHE" }, { - "codePostal": "77930", - "codeCommune": "77412", - "libelleAcheminement": "ST GERMAIN SUR ECOLE", - "nomCommune": "ST GERMAIN SUR ECOLE" + "codePostal": "78113", + "codeCommune": "78096", + "libelleAcheminement": "BOURDONNE", + "nomCommune": "BOURDONNE" }, { - "codePostal": "71310", - "codeCommune": "71121", - "libelleAcheminement": "LA CHAUX", - "nomCommune": "LA CHAUX" + "codePostal": "64330", + "codeCommune": "64532", + "libelleAcheminement": "TADOUSSE USSAU", + "nomCommune": "TADOUSSE USSAU" }, { - "codePostal": "21350", - "codeCommune": "21298", - "libelleAcheminement": "GISSEY LE VIEIL", - "nomCommune": "GISSEY LE VIEIL" + "codePostal": "67310", + "codeCommune": "67085", + "libelleAcheminement": "DANGOLSHEIM", + "nomCommune": "DANGOLSHEIM" }, { - "codePostal": "76370", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "77710", + "codeCommune": "77504", + "libelleAcheminement": "VILLEMARECHAL", + "nomCommune": "VILLEMARECHAL" }, { - "codePostal": "77860", - "codeCommune": "77413", - "libelleAcheminement": "ST GERMAIN SUR MORIN", - "nomCommune": "ST GERMAIN SUR MORIN" + "codePostal": "25330", + "codeCommune": "25420", + "libelleAcheminement": "NANS SOUS STE ANNE", + "nomCommune": "NANS SOUS STE ANNE" }, { - "codePostal": "71520", - "codeCommune": "71134", - "libelleAcheminement": "NAVOUR SUR GROSNE", - "nomCommune": "NAVOUR SUR GROSNE" + "codePostal": "78610", + "codeCommune": "78108", + "libelleAcheminement": "LES BREVIAIRES", + "nomCommune": "LES BREVIAIRES" }, { - "codePostal": "21250", - "codeCommune": "21301", - "libelleAcheminement": "GLANON", - "nomCommune": "GLANON" + "codePostal": "64470", + "codeCommune": "64533", + "libelleAcheminement": "TARDETS SORHOLUS", + "nomCommune": "TARDETS SORHOLUS" }, { - "codePostal": "76370", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "67260", + "codeCommune": "67091", + "libelleAcheminement": "DIEDENDORF", + "nomCommune": "DIEDENDORF" }, { - "codePostal": "77160", - "codeCommune": "77414", - "libelleAcheminement": "ST HILLIERS", - "nomCommune": "ST HILLIERS" + "codePostal": "77124", + "codeCommune": "77513", + "libelleAcheminement": "VILLENOY", + "nomCommune": "VILLENOY" }, { - "codePostal": "71480", - "codeCommune": "71143", - "libelleAcheminement": "CONDAL", - "nomCommune": "CONDAL" + "codePostal": "25580", + "codeCommune": "25424", + "libelleAcheminement": "LES PREMIERS SAPINS", + "nomCommune": "LES PREMIERS SAPINS" }, { - "codePostal": "21580", - "codeCommune": "21304", - "libelleAcheminement": "GRANCEY LE CHATEAU", - "nomCommune": "GRANCEY LE CHATEAU NEUVELLE" + "codePostal": "78450", + "codeCommune": "78152", + "libelleAcheminement": "CHAVENAY", + "nomCommune": "CHAVENAY" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "64360", + "codeCommune": "64535", + "libelleAcheminement": "TARSACQ", + "nomCommune": "TARSACQ" }, { - "codePostal": "77510", - "codeCommune": "77417", - "libelleAcheminement": "ST LEGER", - "nomCommune": "ST LEGER" + "codePostal": "67650", + "codeCommune": "67094", + "libelleAcheminement": "DIEFFENTHAL", + "nomCommune": "DIEFFENTHAL" }, { - "codePostal": "71680", - "codeCommune": "71150", - "libelleAcheminement": "CRECHES SUR SAONE", - "nomCommune": "CRECHES SUR SAONE" + "codePostal": "77410", + "codeCommune": "77515", + "libelleAcheminement": "VILLEROY", + "nomCommune": "VILLEROY" }, { - "codePostal": "21540", - "codeCommune": "21306", - "libelleAcheminement": "GRENANT LES SOMBERNON", - "nomCommune": "GRENANT LES SOMBERNON" + "codePostal": "25120", + "codeCommune": "25433", + "libelleAcheminement": "ORGEANS BLANCHEFONTAINE", + "nomCommune": "ORGEANS BLANCHEFONTAINE" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "78150", + "codeCommune": "78158", + "libelleAcheminement": "LE CHESNAY ROCQUENCOURT", + "nomCommune": "LE CHESNAY ROCQUENCOURT" }, { - "codePostal": "77670", - "codeCommune": "77419", - "libelleAcheminement": "ST MAMMES", - "nomCommune": "ST MAMMES" + "codePostal": "64450", + "codeCommune": "64536", + "libelleAcheminement": "THEZE", + "nomCommune": "THEZE" }, { - "codePostal": "71200", - "codeCommune": "71153", - "libelleAcheminement": "LE CREUSOT", - "nomCommune": "LE CREUSOT" + "codePostal": "67320", + "codeCommune": "67105", + "libelleAcheminement": "DRULINGEN", + "nomCommune": "DRULINGEN" }, { - "codePostal": "21110", - "codeCommune": "21319", - "libelleAcheminement": "IZEURE", - "nomCommune": "IZEURE" + "codePostal": "77410", + "codeCommune": "77517", + "libelleAcheminement": "VILLEVAUDE", + "nomCommune": "VILLEVAUDE" }, { - "codePostal": "76910", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "25620", + "codeCommune": "25434", + "libelleAcheminement": "ORNANS", + "nomCommune": "ORNANS" }, { - "codePostal": "77320", - "codeCommune": "77421", - "libelleAcheminement": "ST MARS VIEUX MAISONS", - "nomCommune": "ST MARS VIEUX MAISONS" + "codePostal": "78910", + "codeCommune": "78163", + "libelleAcheminement": "CIVRY LA FORET", + "nomCommune": "CIVRY LA FORET" }, { - "codePostal": "71530", - "codeCommune": "71154", - "libelleAcheminement": "CRISSEY", - "nomCommune": "CRISSEY" + "codePostal": "64220", + "codeCommune": "64538", + "libelleAcheminement": "UHART CIZE", + "nomCommune": "UHART CIZE" }, { - "codePostal": "21450", - "codeCommune": "21326", - "libelleAcheminement": "JOURS LES BAIGNEUX", - "nomCommune": "JOURS LES BAIGNEUX" + "codePostal": "67120", + "codeCommune": "67108", + "libelleAcheminement": "DUPPIGHEIM", + "nomCommune": "DUPPIGHEIM" }, { - "codePostal": "76270", - "codeCommune": "76620", - "libelleAcheminement": "ST MARTIN L HORTIER", - "nomCommune": "ST MARTIN L HORTIER" + "codePostal": "77480", + "codeCommune": "77523", + "libelleAcheminement": "VILLUIS", + "nomCommune": "VILLUIS" }, { - "codePostal": "77320", - "codeCommune": "77432", - "libelleAcheminement": "ST REMY LA VANNE", - "nomCommune": "ST REMY LA VANNE" + "codePostal": "25690", + "codeCommune": "25447", + "libelleAcheminement": "PASSONFONTAINE", + "nomCommune": "PASSONFONTAINE" }, { - "codePostal": "71460", - "codeCommune": "71159", - "libelleAcheminement": "CULLES LES ROCHES", - "nomCommune": "CULLES LES ROCHES" + "codePostal": "78120", + "codeCommune": "78164", + "libelleAcheminement": "CLAIREFONTAINE EN YVELINES", + "nomCommune": "CLAIREFONTAINE EN YVELINES" }, { - "codePostal": "21250", - "codeCommune": "21333", - "libelleAcheminement": "LABRUYERE", - "nomCommune": "LABRUYERE" + "codePostal": "64370", + "codeCommune": "64541", + "libelleAcheminement": "URDES", + "nomCommune": "URDES" }, { - "codePostal": "76440", - "codeCommune": "76623", - "libelleAcheminement": "ST MICHEL D HALESCOURT", - "nomCommune": "ST MICHEL D HALESCOURT" + "codePostal": "67270", + "codeCommune": "67109", + "libelleAcheminement": "DURNINGEN", + "nomCommune": "DURNINGEN" }, { - "codePostal": "77120", - "codeCommune": "77433", - "libelleAcheminement": "BEAUTHEIL SAINTS", - "nomCommune": "BEAUTHEIL SAINTS" + "codePostal": "77230", + "codeCommune": "77525", + "libelleAcheminement": "VINANTES", + "nomCommune": "VINANTES" }, { - "codePostal": "71320", - "codeCommune": "71166", - "libelleAcheminement": "CUZY", - "nomCommune": "CUZY" + "codePostal": "25190", + "codeCommune": "25449", + "libelleAcheminement": "PESEUX", + "nomCommune": "PESEUX" }, { - "codePostal": "21370", - "codeCommune": "21339", - "libelleAcheminement": "LANTENAY", - "nomCommune": "LANTENAY" + "codePostal": "78790", + "codeCommune": "78185", + "libelleAcheminement": "COURGENT", + "nomCommune": "COURGENT" }, { - "codePostal": "76510", - "codeCommune": "76624", - "libelleAcheminement": "ST NICOLAS D ALIERMONT", - "nomCommune": "ST NICOLAS D ALIERMONT" + "codePostal": "64490", + "codeCommune": "64542", + "libelleAcheminement": "URDOS", + "nomCommune": "URDOS" }, { - "codePostal": "77480", - "codeCommune": "77434", - "libelleAcheminement": "ST SAUVEUR LES BRAY", - "nomCommune": "ST SAUVEUR LES BRAY" + "codePostal": "67600", + "codeCommune": "67115", + "libelleAcheminement": "EBERSHEIM", + "nomCommune": "EBERSHEIM" }, { - "codePostal": "71310", - "codeCommune": "71168", - "libelleAcheminement": "DAMPIERRE EN BRESSE", - "nomCommune": "DAMPIERRE EN BRESSE" + "codePostal": "77950", + "codeCommune": "77528", + "libelleAcheminement": "VOISENON", + "nomCommune": "VOISENON" }, { - "codePostal": "21170", - "codeCommune": "21342", - "libelleAcheminement": "LAPERRIERE SUR SAONE", - "nomCommune": "LAPERRIERE SUR SAONE" + "codePostal": "25310", + "codeCommune": "25452", + "libelleAcheminement": "PIERREFONTAINE LES BLAMONT", + "nomCommune": "PIERREFONTAINE LES BLAMONT" }, { - "codePostal": "76730", - "codeCommune": "76629", - "libelleAcheminement": "ST OUEN LE MAUGER", - "nomCommune": "ST OUEN LE MAUGER" + "codePostal": "78810", + "codeCommune": "78196", + "libelleAcheminement": "DAVRON", + "nomCommune": "DAVRON" }, { - "codePostal": "77930", - "codeCommune": "77435", - "libelleAcheminement": "ST SAUVEUR SUR ECOLE", - "nomCommune": "ST SAUVEUR SUR ECOLE" + "codePostal": "64170", + "codeCommune": "64554", + "libelleAcheminement": "VIELLENAVE D ARTHEZ", + "nomCommune": "VIELLENAVE D ARTHEZ" }, { - "codePostal": "71190", - "codeCommune": "71172", - "libelleAcheminement": "DETTEY", - "nomCommune": "DETTEY" + "codePostal": "67290", + "codeCommune": "67126", + "libelleAcheminement": "ERCKARTSWILLER", + "nomCommune": "ERCKARTSWILLER" }, { - "codePostal": "21250", - "codeCommune": "21344", - "libelleAcheminement": "LECHATELET", - "nomCommune": "LECHATELET" + "codePostal": "78660", + "codeCommune": "78009", + "libelleAcheminement": "ALLAINVILLE AUX BOIS", + "nomCommune": "ALLAINVILLE" }, { - "codePostal": "76480", - "codeCommune": "76631", - "libelleAcheminement": "ST PAER", - "nomCommune": "ST PAER" + "codePostal": "25210", + "codeCommune": "25456", + "libelleAcheminement": "PLAIMBOIS DU MIROIR", + "nomCommune": "PLAIMBOIS DU MIROIR" }, { - "codePostal": "77260", - "codeCommune": "77440", - "libelleAcheminement": "SAMMERON", - "nomCommune": "SAMMERON" + "codePostal": "78125", + "codeCommune": "78209", + "libelleAcheminement": "EMANCE", + "nomCommune": "EMANCE" }, { - "codePostal": "71640", - "codeCommune": "71182", - "libelleAcheminement": "DRACY LE FORT", - "nomCommune": "DRACY LE FORT" + "codePostal": "64190", + "codeCommune": "64555", + "libelleAcheminement": "VIELLENAVE DE NAVARRENX", + "nomCommune": "VIELLENAVE DE NAVARRENX" }, { - "codePostal": "21110", - "codeCommune": "21351", - "libelleAcheminement": "LONGCHAMP", - "nomCommune": "LONGCHAMP" + "codePostal": "67360", + "codeCommune": "67132", + "libelleAcheminement": "ESCHBACH", + "nomCommune": "ESCHBACH" }, { - "codePostal": "76113", - "codeCommune": "76634", - "libelleAcheminement": "ST PIERRE DE MANNEVILLE", - "nomCommune": "ST PIERRE DE MANNEVILLE" + "codePostal": "78930", + "codeCommune": "78070", + "libelleAcheminement": "BOINVILLE EN MANTOIS", + "nomCommune": "BOINVILLE EN MANTOIS" }, { - "codePostal": "77210", - "codeCommune": "77442", - "libelleAcheminement": "SAMOREAU", - "nomCommune": "SAMOREAU" + "codePostal": "25340", + "codeCommune": "25461", + "libelleAcheminement": "POMPIERRE SUR DOUBS", + "nomCommune": "POMPIERRE SUR DOUBS" }, { - "codePostal": "71800", - "codeCommune": "71185", - "libelleAcheminement": "DYO", - "nomCommune": "DYO" + "codePostal": "78790", + "codeCommune": "78237", + "libelleAcheminement": "FLINS NEUVE EGLISE", + "nomCommune": "FLINS NEUVE EGLISE" }, { - "codePostal": "21600", - "codeCommune": "21355", - "libelleAcheminement": "LONGVIC", - "nomCommune": "LONGVIC" + "codePostal": "65390", + "codeCommune": "65007", + "libelleAcheminement": "ANDREST", + "nomCommune": "ANDREST" }, { - "codePostal": "76660", - "codeCommune": "76635", - "libelleAcheminement": "ST PIERRE DES JONQUIERES", - "nomCommune": "ST PIERRE DES JONQUIERES" + "codePostal": "67320", + "codeCommune": "67134", + "libelleAcheminement": "ESCHWILLER", + "nomCommune": "ESCHWILLER" }, { - "codePostal": "77260", - "codeCommune": "77448", - "libelleAcheminement": "SEPT SORTS", - "nomCommune": "SEPT SORTS" + "codePostal": "78125", + "codeCommune": "78077", + "libelleAcheminement": "LA BOISSIERE ECOLE", + "nomCommune": "LA BOISSIERE ECOLE" }, { - "codePostal": "71190", - "codeCommune": "71192", - "libelleAcheminement": "ETANG SUR ARROUX", - "nomCommune": "ETANG SUR ARROUX" + "codePostal": "25115", + "codeCommune": "25467", + "libelleAcheminement": "POUILLEY LES VIGNES", + "nomCommune": "POUILLEY LES VIGNES" }, { - "codePostal": "21170", - "codeCommune": "21356", - "libelleAcheminement": "LOSNE", - "nomCommune": "LOSNE" + "codePostal": "78410", + "codeCommune": "78238", + "libelleAcheminement": "FLINS SUR SEINE", + "nomCommune": "FLINS SUR SEINE" }, { - "codePostal": "76320", - "codeCommune": "76640", - "libelleAcheminement": "ST PIERRE LES ELBEUF", - "nomCommune": "ST PIERRE LES ELBEUF" + "codePostal": "65150", + "codeCommune": "65009", + "libelleAcheminement": "ANERES", + "nomCommune": "ANERES" }, { - "codePostal": "77111", - "codeCommune": "77457", - "libelleAcheminement": "SOLERS", - "nomCommune": "SOLERS" + "codePostal": "67320", + "codeCommune": "67136", + "libelleAcheminement": "EYWILLER", + "nomCommune": "EYWILLER" }, { - "codePostal": "71150", - "codeCommune": "71202", - "libelleAcheminement": "FONTAINES", - "nomCommune": "FONTAINES" + "codePostal": "78200", + "codeCommune": "78082", + "libelleAcheminement": "BOISSY MAUVOISIN", + "nomCommune": "BOISSY MAUVOISIN" }, { - "codePostal": "21150", - "codeCommune": "21358", - "libelleAcheminement": "LUCENAY LE DUC", - "nomCommune": "LUCENAY LE DUC" + "codePostal": "25380", + "codeCommune": "25471", + "libelleAcheminement": "PROVENCHERE", + "nomCommune": "PROVENCHERE" }, { - "codePostal": "76510", - "codeCommune": "76652", - "libelleAcheminement": "ST VAAST D EQUIQUEVILLE", - "nomCommune": "ST VAAST D EQUIQUEVILLE" + "codePostal": "78330", + "codeCommune": "78242", + "libelleAcheminement": "FONTENAY LE FLEURY", + "nomCommune": "FONTENAY LE FLEURY" }, { - "codePostal": "77171", - "codeCommune": "77459", - "libelleAcheminement": "SOURDUN", - "nomCommune": "SOURDUN" + "codePostal": "65100", + "codeCommune": "65011", + "libelleAcheminement": "LES ANGLES", + "nomCommune": "LES ANGLES" }, { - "codePostal": "71420", - "codeCommune": "71212", - "libelleAcheminement": "GENELARD", - "nomCommune": "GENELARD" + "codePostal": "67640", + "codeCommune": "67137", + "libelleAcheminement": "FEGERSHEIM", + "nomCommune": "FEGERSHEIM" }, { - "codePostal": "21320", - "codeCommune": "21362", - "libelleAcheminement": "MACONGE", - "nomCommune": "MACONGE" + "codePostal": "78410", + "codeCommune": "78090", + "libelleAcheminement": "BOUAFLE", + "nomCommune": "BOUAFLE" }, { - "codePostal": "76890", - "codeCommune": "76654", - "libelleAcheminement": "ST VAAST DU VAL", - "nomCommune": "ST VAAST DU VAL" + "codePostal": "25430", + "codeCommune": "25476", + "libelleAcheminement": "RAHON", + "nomCommune": "RAHON" }, { - "codePostal": "77200", - "codeCommune": "77468", - "libelleAcheminement": "TORCY", - "nomCommune": "TORCY" + "codePostal": "78200", + "codeCommune": "78245", + "libelleAcheminement": "FONTENAY MAUVOISIN", + "nomCommune": "FONTENAY MAUVOISIN" }, { - "codePostal": "71290", - "codeCommune": "71213", - "libelleAcheminement": "LA GENETE", - "nomCommune": "LA GENETE" + "codePostal": "65370", + "codeCommune": "65012", + "libelleAcheminement": "ANLA", + "nomCommune": "ANLA" }, { - "codePostal": "21400", - "codeCommune": "21372", - "libelleAcheminement": "MAISEY LE DUC", - "nomCommune": "MAISEY LE DUC" + "codePostal": "67480", + "codeCommune": "67140", + "libelleAcheminement": "FORSTFELD", + "nomCommune": "FORSTFELD" }, { - "codePostal": "76890", - "codeCommune": "76656", - "libelleAcheminement": "ST VICTOR L ABBAYE", - "nomCommune": "ST VICTOR L ABBAYE" + "codePostal": "78380", + "codeCommune": "78092", + "libelleAcheminement": "BOUGIVAL", + "nomCommune": "BOUGIVAL" }, { - "codePostal": "77220", - "codeCommune": "77470", - "libelleAcheminement": "TOURNAN EN BRIE", - "nomCommune": "TOURNAN EN BRIE" + "codePostal": "25240", + "codeCommune": "25483", + "libelleAcheminement": "RECULFOZ", + "nomCommune": "RECULFOZ" }, { - "codePostal": "71300", - "codeCommune": "71222", - "libelleAcheminement": "GOURDON", - "nomCommune": "GOURDON" + "codePostal": "78490", + "codeCommune": "78262", + "libelleAcheminement": "GALLUIS", + "nomCommune": "GALLUIS" }, { - "codePostal": "21430", - "codeCommune": "21379", - "libelleAcheminement": "MARCHESEUIL", - "nomCommune": "MARCHESEUIL" + "codePostal": "65240", + "codeCommune": "65031", + "libelleAcheminement": "ARREAU", + "nomCommune": "ARREAU" }, { - "codePostal": "76400", - "codeCommune": "76670", - "libelleAcheminement": "SENNEVILLE SUR FECAMP", - "nomCommune": "SENNEVILLE SUR FECAMP" + "codePostal": "67220", + "codeCommune": "67143", + "libelleAcheminement": "FOUCHY", + "nomCommune": "FOUCHY" }, { - "codePostal": "77123", - "codeCommune": "77485", - "libelleAcheminement": "LE VAUDOUE", - "nomCommune": "LE VAUDOUE" + "codePostal": "78440", + "codeCommune": "78113", + "libelleAcheminement": "BRUEIL EN VEXIN", + "nomCommune": "BRUEIL EN VEXIN" }, { - "codePostal": "71960", - "codeCommune": "71236", - "libelleAcheminement": "IGE", - "nomCommune": "IGE" + "codePostal": "25160", + "codeCommune": "25486", + "libelleAcheminement": "REMORAY BOUJEONS", + "nomCommune": "REMORAY BOUJEONS" }, { - "codePostal": "21400", - "codeCommune": "21393", - "libelleAcheminement": "MASSINGY", - "nomCommune": "MASSINGY" + "codePostal": "78770", + "codeCommune": "78278", + "libelleAcheminement": "GOUPILLIERES", + "nomCommune": "GOUPILLIERES" }, { - "codePostal": "76440", - "codeCommune": "76672", - "libelleAcheminement": "SERQUEUX", - "nomCommune": "SERQUEUX" + "codePostal": "65500", + "codeCommune": "65035", + "libelleAcheminement": "ARTAGNAN", + "nomCommune": "ARTAGNAN" }, { - "codePostal": "77141", - "codeCommune": "77486", - "libelleAcheminement": "VAUDOY EN BRIE", - "nomCommune": "VAUDOY EN BRIE" + "codePostal": "67360", + "codeCommune": "67147", + "libelleAcheminement": "FROESCHWILLER", + "nomCommune": "FROESCHWILLER" }, { - "codePostal": "71340", - "codeCommune": "71238", - "libelleAcheminement": "IGUERANDE", - "nomCommune": "IGUERANDE" + "codePostal": "78240", + "codeCommune": "78133", + "libelleAcheminement": "CHAMBOURCY", + "nomCommune": "CHAMBOURCY" }, { - "codePostal": "21190", - "codeCommune": "21397", - "libelleAcheminement": "MAVILLY MANDELOT", - "nomCommune": "MAVILLY MANDELOT" + "codePostal": "25340", + "codeCommune": "25496", + "libelleAcheminement": "ROCHE LES CLERVAL", + "nomCommune": "ROCHE LES CLERVAL" }, { - "codePostal": "76116", - "codeCommune": "76673", - "libelleAcheminement": "SERVAVILLE SALMONVILLE", - "nomCommune": "SERVAVILLE SALMONVILLE" + "codePostal": "78550", + "codeCommune": "78285", + "libelleAcheminement": "GRESSEY", + "nomCommune": "GRESSEY" }, { - "codePostal": "77710", - "codeCommune": "77489", - "libelleAcheminement": "VAUX SUR LUNAIN", - "nomCommune": "VAUX SUR LUNAIN" + "codePostal": "65100", + "codeCommune": "65038", + "libelleAcheminement": "ARTIGUES", + "nomCommune": "ARTIGUES" }, { - "codePostal": "71390", - "codeCommune": "71247", - "libelleAcheminement": "JULLY LES BUXY", - "nomCommune": "JULLY LES BUXY" + "codePostal": "67700", + "codeCommune": "67149", + "libelleAcheminement": "FURCHHAUSEN", + "nomCommune": "FURCHHAUSEN" }, { - "codePostal": "21190", - "codeCommune": "21401", - "libelleAcheminement": "MELOISEY", - "nomCommune": "MELOISEY" + "codePostal": "78113", + "codeCommune": "78171", + "libelleAcheminement": "CONDE SUR VESGRE", + "nomCommune": "CONDE SUR VESGRE" }, { - "codePostal": "76440", - "codeCommune": "76678", - "libelleAcheminement": "SOMMERY", - "nomCommune": "SOMMERY" + "codePostal": "25440", + "codeCommune": "25507", + "libelleAcheminement": "ROUHE", + "nomCommune": "ROUHE" }, { - "codePostal": "77124", - "codeCommune": "77513", - "libelleAcheminement": "VILLENOY", - "nomCommune": "VILLENOY" + "codePostal": "78490", + "codeCommune": "78289", + "libelleAcheminement": "GROSROUVRE", + "nomCommune": "GROSROUVRE" }, { - "codePostal": "71240", - "codeCommune": "71249", - "libelleAcheminement": "LAIVES", - "nomCommune": "LAIVES" + "codePostal": "65240", + "codeCommune": "65039", + "libelleAcheminement": "ASPIN AURE", + "nomCommune": "ASPIN AURE" }, { - "codePostal": "21380", - "codeCommune": "21408", - "libelleAcheminement": "MESSIGNY ET VANTOUX", - "nomCommune": "MESSIGNY ET VANTOUX" + "codePostal": "67118", + "codeCommune": "67152", + "libelleAcheminement": "GEISPOLSHEIM", + "nomCommune": "GEISPOLSHEIM" }, { - "codePostal": "76540", - "codeCommune": "76685", - "libelleAcheminement": "THEROULDEVILLE", - "nomCommune": "THEROULDEVILLE" + "codePostal": "78290", + "codeCommune": "78190", + "libelleAcheminement": "CROISSY SUR SEINE", + "nomCommune": "CROISSY SUR SEINE" }, { - "codePostal": "77410", - "codeCommune": "77515", - "libelleAcheminement": "VILLEROY", - "nomCommune": "VILLEROY" + "codePostal": "25640", + "codeCommune": "25508", + "libelleAcheminement": "ROULANS", + "nomCommune": "ROULANS" }, { - "codePostal": "71870", - "codeCommune": "71250", - "libelleAcheminement": "LAIZE", - "nomCommune": "LAIZE" + "codePostal": "78930", + "codeCommune": "78291", + "libelleAcheminement": "GUERVILLE", + "nomCommune": "GUERVILLE" }, { - "codePostal": "21700", - "codeCommune": "21409", - "libelleAcheminement": "MEUILLEY", - "nomCommune": "MEUILLEY" + "codePostal": "65200", + "codeCommune": "65042", + "libelleAcheminement": "ASTE", + "nomCommune": "ASTE" }, { - "codePostal": "76440", - "codeCommune": "76691", - "libelleAcheminement": "LE THIL RIBERPRE", - "nomCommune": "LE THIL RIBERPRE" + "codePostal": "67140", + "codeCommune": "67155", + "libelleAcheminement": "GERTWILLER", + "nomCommune": "GERTWILLER" }, { - "codePostal": "77560", - "codeCommune": "77519", - "libelleAcheminement": "VILLIERS ST GEORGES", - "nomCommune": "VILLIERS ST GEORGES" + "codePostal": "78550", + "codeCommune": "78194", + "libelleAcheminement": "DANNEMARIE", + "nomCommune": "DANNEMARIE" }, { - "codePostal": "71530", - "codeCommune": "71257", - "libelleAcheminement": "LESSARD LE NATIONAL", - "nomCommune": "LESSARD LE NATIONAL" + "codePostal": "25290", + "codeCommune": "25511", + "libelleAcheminement": "RUREY", + "nomCommune": "RUREY" }, { - "codePostal": "21140", - "codeCommune": "21413", - "libelleAcheminement": "MILLERY", - "nomCommune": "MILLERY" + "codePostal": "78280", + "codeCommune": "78297", + "libelleAcheminement": "GUYANCOURT", + "nomCommune": "GUYANCOURT" }, { - "codePostal": "76730", - "codeCommune": "76694", - "libelleAcheminement": "TOCQUEVILLE EN CAUX", - "nomCommune": "TOCQUEVILLE EN CAUX" + "codePostal": "65240", + "codeCommune": "65050", + "libelleAcheminement": "AVAJAN", + "nomCommune": "AVAJAN" }, { - "codePostal": "77760", - "codeCommune": "77520", - "libelleAcheminement": "VILLIERS SOUS GREZ", - "nomCommune": "VILLIERS SOUS GREZ" + "codePostal": "67360", + "codeCommune": "67160", + "libelleAcheminement": "GOERSDORF", + "nomCommune": "GOERSDORF" }, { - "codePostal": "71110", - "codeCommune": "71259", - "libelleAcheminement": "LIGNY EN BRIONNAIS", - "nomCommune": "LIGNY EN BRIONNAIS" + "codePostal": "78920", + "codeCommune": "78206", + "libelleAcheminement": "ECQUEVILLY", + "nomCommune": "ECQUEVILLY" }, { - "codePostal": "21510", - "codeCommune": "21415", - "libelleAcheminement": "MINOT", - "nomCommune": "MINOT" + "codePostal": "25370", + "codeCommune": "25514", + "libelleAcheminement": "ST ANTOINE", + "nomCommune": "ST ANTOINE" }, { - "codePostal": "76190", - "codeCommune": "76702", - "libelleAcheminement": "TOUFFREVILLE LA CORBELINE", - "nomCommune": "TOUFFREVILLE LA CORBELINE" + "codePostal": "78250", + "codeCommune": "78299", + "libelleAcheminement": "HARDRICOURT", + "nomCommune": "HARDRICOURT" }, { - "codePostal": "77230", - "codeCommune": "77525", - "libelleAcheminement": "VINANTES", - "nomCommune": "VINANTES" + "codePostal": "65380", + "codeCommune": "65057", + "libelleAcheminement": "AZEREIX", + "nomCommune": "AZEREIX" }, { - "codePostal": "71500", - "codeCommune": "71263", - "libelleAcheminement": "LOUHANS", - "nomCommune": "LOUHANS" + "codePostal": "67210", + "codeCommune": "67164", + "libelleAcheminement": "GOXWILLER", + "nomCommune": "GOXWILLER" }, { - "codePostal": "21500", - "codeCommune": "21425", - "libelleAcheminement": "MONTBARD", - "nomCommune": "MONTBARD" + "codePostal": "78620", + "codeCommune": "78224", + "libelleAcheminement": "L ETANG LA VILLE", + "nomCommune": "L ETANG LA VILLE" }, { - "codePostal": "76280", - "codeCommune": "76716", - "libelleAcheminement": "TURRETOT", - "nomCommune": "TURRETOT" + "codePostal": "25640", + "codeCommune": "25518", + "libelleAcheminement": "ST HILAIRE", + "nomCommune": "ST HILAIRE" }, { - "codePostal": "77560", - "codeCommune": "77530", - "libelleAcheminement": "VOULTON", - "nomCommune": "VOULTON" + "codePostal": "78113", + "codeCommune": "78302", + "libelleAcheminement": "LA HAUTEVILLE", + "nomCommune": "LA HAUTEVILLE" }, { - "codePostal": "71500", - "codeCommune": "71263", - "libelleAcheminement": "LOUHANS", - "nomCommune": "LOUHANS" + "codePostal": "65140", + "codeCommune": "65061", + "libelleAcheminement": "BARBACHEN", + "nomCommune": "BARBACHEN" }, { - "codePostal": "21460", - "codeCommune": "21426", - "libelleAcheminement": "MONTBERTHAULT", - "nomCommune": "MONTBERTHAULT" + "codePostal": "67130", + "codeCommune": "67165", + "libelleAcheminement": "GRANDFONTAINE", + "nomCommune": "GRANDFONTAINE" }, { - "codePostal": "76270", - "codeCommune": "76724", - "libelleAcheminement": "VATIERVILLE", - "nomCommune": "VATIERVILLE" + "codePostal": "78740", + "codeCommune": "78227", + "libelleAcheminement": "EVECQUEMONT", + "nomCommune": "EVECQUEMONT" }, { - "codePostal": "77940", - "codeCommune": "77531", - "libelleAcheminement": "VOULX", - "nomCommune": "VOULX" + "codePostal": "25550", + "codeCommune": "25521", + "libelleAcheminement": "ST JULIEN LES MONTBELIARD", + "nomCommune": "ST JULIEN LES MONTBELIARD" }, { - "codePostal": "71000", - "codeCommune": "71270", - "libelleAcheminement": "MACON", - "nomCommune": "MACON" + "codePostal": "78125", + "codeCommune": "78307", + "libelleAcheminement": "HERMERAY", + "nomCommune": "HERMERAY" }, { - "codePostal": "21190", - "codeCommune": "21428", - "libelleAcheminement": "MONTHELIE", - "nomCommune": "MONTHELIE" + "codePostal": "65100", + "codeCommune": "65065", + "libelleAcheminement": "BARLEST", + "nomCommune": "BARLEST" }, { - "codePostal": "76940", - "codeCommune": "76727", - "libelleAcheminement": "VATTEVILLE LA RUE", - "nomCommune": "VATTEVILLE LA RUE" + "codePostal": "67190", + "codeCommune": "67168", + "libelleAcheminement": "GRESSWILLER", + "nomCommune": "GRESSWILLER" }, { - "codePostal": "78660", - "codeCommune": "78003", - "libelleAcheminement": "ABLIS", - "nomCommune": "ABLIS" + "codePostal": "78125", + "codeCommune": "78269", + "libelleAcheminement": "GAZERAN", + "nomCommune": "GAZERAN" }, { - "codePostal": "71420", - "codeCommune": "71281", - "libelleAcheminement": "MARLY SUR ARROUX", - "nomCommune": "MARLY SUR ARROUX" + "codePostal": "25260", + "codeCommune": "25524", + "libelleAcheminement": "ST MAURICE COLOMBIER", + "nomCommune": "ST MAURICE COLOMBIER" }, { - "codePostal": "21610", - "codeCommune": "21433", - "libelleAcheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", - "nomCommune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE" + "codePostal": "78800", + "codeCommune": "78311", + "libelleAcheminement": "HOUILLES", + "nomCommune": "HOUILLES" }, { - "codePostal": "76730", - "codeCommune": "76731", - "libelleAcheminement": "VENESTANVILLE", - "nomCommune": "VENESTANVILLE" + "codePostal": "65460", + "codeCommune": "65072", + "libelleAcheminement": "BAZET", + "nomCommune": "BAZET" }, { - "codePostal": "78410", - "codeCommune": "78029", - "libelleAcheminement": "AUBERGENVILLE", - "nomCommune": "AUBERGENVILLE" + "codePostal": "67240", + "codeCommune": "67169", + "libelleAcheminement": "GRIES", + "nomCommune": "GRIES" }, { - "codePostal": "71240", - "codeCommune": "71283", - "libelleAcheminement": "MARNAY", - "nomCommune": "MARNAY" + "codePostal": "78440", + "codeCommune": "78314", + "libelleAcheminement": "ISSOU", + "nomCommune": "ISSOU" }, { - "codePostal": "21610", - "codeCommune": "21433", - "libelleAcheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", - "nomCommune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE" + "codePostal": "25630", + "codeCommune": "25526", + "libelleAcheminement": "STE SUZANNE", + "nomCommune": "STE SUZANNE" }, { - "codePostal": "76450", - "codeCommune": "76732", - "libelleAcheminement": "BUTOT VENESVILLE", - "nomCommune": "BUTOT VENESVILLE" + "codePostal": "78440", + "codeCommune": "78317", + "libelleAcheminement": "JAMBVILLE", + "nomCommune": "JAMBVILLE" }, { - "codePostal": "78610", - "codeCommune": "78030", - "libelleAcheminement": "AUFFARGIS", - "nomCommune": "AUFFARGIS" + "codePostal": "65170", + "codeCommune": "65075", + "libelleAcheminement": "BAZUS AURE", + "nomCommune": "BAZUS AURE" }, { - "codePostal": "71640", - "codeCommune": "71292", - "libelleAcheminement": "MELLECEY", - "nomCommune": "MELLECEY" + "codePostal": "67110", + "codeCommune": "67176", + "libelleAcheminement": "GUNDERSHOFFEN", + "nomCommune": "GUNDERSHOFFEN" }, { - "codePostal": "21400", - "codeCommune": "21435", - "libelleAcheminement": "MONTLIOT ET COURCELLES", - "nomCommune": "MONTLIOT ET COURCELLES" + "codePostal": "78270", + "codeCommune": "78320", + "libelleAcheminement": "NOTRE DAME DE LA MER", + "nomCommune": "NOTRE DAME DE LA MER" }, { - "codePostal": "76450", - "codeCommune": "76732", - "libelleAcheminement": "BUTOT VENESVILLE", - "nomCommune": "BUTOT VENESVILLE" + "codePostal": "25410", + "codeCommune": "25527", + "libelleAcheminement": "ST VIT", + "nomCommune": "ST VIT" }, { - "codePostal": "78770", - "codeCommune": "78036", - "libelleAcheminement": "AUTOUILLET", - "nomCommune": "AUTOUILLET" + "codePostal": "78270", + "codeCommune": "78337", + "libelleAcheminement": "LIMETZ VILLEZ", + "nomCommune": "LIMETZ VILLEZ" }, { - "codePostal": "71300", - "codeCommune": "71306", - "libelleAcheminement": "MONTCEAU LES MINES", - "nomCommune": "MONTCEAU LES MINES" + "codePostal": "65380", + "codeCommune": "65080", + "libelleAcheminement": "BENAC", + "nomCommune": "BENAC" }, { - "codePostal": "21230", - "codeCommune": "21447", - "libelleAcheminement": "MUSIGNY", - "nomCommune": "MUSIGNY" + "codePostal": "67110", + "codeCommune": "67176", + "libelleAcheminement": "GUNDERSHOFFEN", + "nomCommune": "GUNDERSHOFFEN" }, { - "codePostal": "76980", - "codeCommune": "76735", - "libelleAcheminement": "VEULES LES ROSES", - "nomCommune": "VEULES LES ROSES" + "codePostal": "78350", + "codeCommune": "78322", + "libelleAcheminement": "JOUY EN JOSAS", + "nomCommune": "JOUY EN JOSAS" }, { - "codePostal": "78870", - "codeCommune": "78043", - "libelleAcheminement": "BAILLY", - "nomCommune": "BAILLY" + "codePostal": "25430", + "codeCommune": "25529", + "libelleAcheminement": "SANCEY", + "nomCommune": "SANCEY" }, { - "codePostal": "71500", - "codeCommune": "71311", - "libelleAcheminement": "MONTCONY", - "nomCommune": "MONTCONY" + "codePostal": "78350", + "codeCommune": "78343", + "libelleAcheminement": "LES LOGES EN JOSAS", + "nomCommune": "LES LOGES EN JOSAS" }, { - "codePostal": "21700", - "codeCommune": "21464", - "libelleAcheminement": "NUITS ST GEORGES", - "nomCommune": "NUITS ST GEORGES" + "codePostal": "65100", + "codeCommune": "65082", + "libelleAcheminement": "BERBERUST LIAS", + "nomCommune": "BERBERUST LIAS" }, { - "codePostal": "76280", - "codeCommune": "76741", - "libelleAcheminement": "VILLAINVILLE", - "nomCommune": "VILLAINVILLE" + "codePostal": "67500", + "codeCommune": "67180", + "libelleAcheminement": "HAGUENAU", + "nomCommune": "HAGUENAU" }, { - "codePostal": "78270", - "codeCommune": "78057", - "libelleAcheminement": "BENNECOURT", - "nomCommune": "BENNECOURT" + "codePostal": "78580", + "codeCommune": "78325", + "libelleAcheminement": "JUMEAUVILLE", + "nomCommune": "JUMEAUVILLE" }, { - "codePostal": "71520", - "codeCommune": "71316", - "libelleAcheminement": "MONTMELARD", - "nomCommune": "MONTMELARD" + "codePostal": "25580", + "codeCommune": "25535", + "libelleAcheminement": "SAULES", + "nomCommune": "SAULES" }, { - "codePostal": "21490", - "codeCommune": "21469", - "libelleAcheminement": "ORGEUX", - "nomCommune": "ORGEUX" + "codePostal": "78980", + "codeCommune": "78346", + "libelleAcheminement": "LONGNES", + "nomCommune": "LONGNES" }, { - "codePostal": "76110", - "codeCommune": "76747", - "libelleAcheminement": "VIRVILLE", - "nomCommune": "VIRVILLE" + "codePostal": "65360", + "codeCommune": "65084", + "libelleAcheminement": "BERNAC DESSUS", + "nomCommune": "BERNAC DESSUS" }, { - "codePostal": "78270", - "codeCommune": "78068", - "libelleAcheminement": "BLARU", - "nomCommune": "BLARU" + "codePostal": "67140", + "codeCommune": "67189", + "libelleAcheminement": "HEILIGENSTEIN", + "nomCommune": "HEILIGENSTEIN" }, { - "codePostal": "71320", - "codeCommune": "71317", - "libelleAcheminement": "MONTMORT", - "nomCommune": "MONTMORT" + "codePostal": "78270", + "codeCommune": "78344", + "libelleAcheminement": "LOMMOYE", + "nomCommune": "LOMMOYE" }, { - "codePostal": "21360", - "codeCommune": "21476", - "libelleAcheminement": "PAINBLANC", - "nomCommune": "PAINBLANC" + "codePostal": "25750", + "codeCommune": "25540", + "libelleAcheminement": "SEMONDANS", + "nomCommune": "SEMONDANS" }, { - "codePostal": "76480", - "codeCommune": "76750", - "libelleAcheminement": "YAINVILLE", - "nomCommune": "YAINVILLE" + "codePostal": "78200", + "codeCommune": "78354", + "libelleAcheminement": "MAGNANVILLE", + "nomCommune": "MAGNANVILLE" }, { - "codePostal": "78113", - "codeCommune": "78096", - "libelleAcheminement": "BOURDONNE", - "nomCommune": "BOURDONNE" + "codePostal": "65220", + "codeCommune": "65085", + "libelleAcheminement": "BERNADETS DEBAT", + "nomCommune": "BERNADETS DEBAT" }, { - "codePostal": "71270", - "codeCommune": "71329", - "libelleAcheminement": "NAVILLY", - "nomCommune": "NAVILLY" + "codePostal": "67230", + "codeCommune": "67192", + "libelleAcheminement": "HERBSHEIM", + "nomCommune": "HERBSHEIM" }, { - "codePostal": "21370", - "codeCommune": "21478", - "libelleAcheminement": "PASQUES", - "nomCommune": "PASQUES" + "codePostal": "78114", + "codeCommune": "78356", + "libelleAcheminement": "MAGNY LES HAMEAUX", + "nomCommune": "MAGNY LES HAMEAUX" }, { - "codePostal": "76520", - "codeCommune": "76753", - "libelleAcheminement": "YMARE", - "nomCommune": "YMARE" + "codePostal": "25380", + "codeCommune": "25554", + "libelleAcheminement": "SURMONT", + "nomCommune": "SURMONT" }, { - "codePostal": "78980", - "codeCommune": "78107", - "libelleAcheminement": "BREVAL", - "nomCommune": "BREVAL" + "codePostal": "78114", + "codeCommune": "78356", + "libelleAcheminement": "MAGNY LES HAMEAUX", + "nomCommune": "MAGNY LES HAMEAUX" }, { - "codePostal": "71600", - "codeCommune": "71331", - "libelleAcheminement": "NOCHIZE", - "nomCommune": "NOCHIZE" + "codePostal": "65370", + "codeCommune": "65087", + "libelleAcheminement": "BERTREN", + "nomCommune": "BERTREN" }, { - "codePostal": "21370", - "codeCommune": "21485", - "libelleAcheminement": "PLOMBIERES LES DIJON", - "nomCommune": "PLOMBIERES LES DIJON" + "codePostal": "67260", + "codeCommune": "67199", + "libelleAcheminement": "HINSINGEN", + "nomCommune": "HINSINGEN" }, { - "codePostal": "76111", - "codeCommune": "76754", - "libelleAcheminement": "YPORT", - "nomCommune": "YPORT" + "codePostal": "78750", + "codeCommune": "78367", + "libelleAcheminement": "MAREIL MARLY", + "nomCommune": "MAREIL MARLY" }, { - "codePostal": "78440", - "codeCommune": "78113", - "libelleAcheminement": "BRUEIL EN VEXIN", - "nomCommune": "BRUEIL EN VEXIN" + "codePostal": "25400", + "codeCommune": "25555", + "libelleAcheminement": "TAILLECOURT", + "nomCommune": "TAILLECOURT" }, { - "codePostal": "71380", - "codeCommune": "71333", - "libelleAcheminement": "OSLON", - "nomCommune": "OSLON" + "codePostal": "78600", + "codeCommune": "78358", + "libelleAcheminement": "MAISONS LAFFITTE", + "nomCommune": "MAISONS LAFFITTE" }, { - "codePostal": "21450", - "codeCommune": "21490", - "libelleAcheminement": "POISEUL LA VILLE ET LAPERRIERE", - "nomCommune": "POISEUL LA VILLE ET LAPERRIERE" + "codePostal": "65410", + "codeCommune": "65092", + "libelleAcheminement": "BEYREDE JUMET CAMOUS", + "nomCommune": "BEYREDE JUMET CAMOUS" }, { - "codePostal": "76190", - "codeCommune": "76758", - "libelleAcheminement": "YVETOT", - "nomCommune": "YVETOT" + "codePostal": "67270", + "codeCommune": "67202", + "libelleAcheminement": "HOCHFELDEN", + "nomCommune": "HOCHFELDEN" }, { - "codePostal": "78530", - "codeCommune": "78117", - "libelleAcheminement": "BUC", - "nomCommune": "BUC" + "codePostal": "78124", + "codeCommune": "78368", + "libelleAcheminement": "MAREIL SUR MAULDRE", + "nomCommune": "MAREIL SUR MAULDRE" }, { - "codePostal": "71600", - "codeCommune": "71342", - "libelleAcheminement": "PARAY LE MONIAL", - "nomCommune": "PARAY LE MONIAL" + "codePostal": "25680", + "codeCommune": "25556", + "libelleAcheminement": "TALLANS", + "nomCommune": "TALLANS" }, { - "codePostal": "21120", - "codeCommune": "21491", - "libelleAcheminement": "POISEUL LES SAULX", - "nomCommune": "POISEUL LES SAULX" + "codePostal": "78770", + "codeCommune": "78364", + "libelleAcheminement": "MARCQ", + "nomCommune": "MARCQ" }, { - "codePostal": "77390", - "codeCommune": "77007", - "libelleAcheminement": "ARGENTIERES", - "nomCommune": "ARGENTIERES" + "codePostal": "65320", + "codeCommune": "65100", + "libelleAcheminement": "BORDERES SUR L ECHEZ", + "nomCommune": "BORDERES SUR L ECHEZ" }, { - "codePostal": "78420", - "codeCommune": "78124", - "libelleAcheminement": "CARRIERES SUR SEINE", - "nomCommune": "CARRIERES SUR SEINE" + "codePostal": "67720", + "codeCommune": "67205", + "libelleAcheminement": "HOERDT", + "nomCommune": "HOERDT" }, { - "codePostal": "71220", - "codeCommune": "71344", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "78160", + "codeCommune": "78372", + "libelleAcheminement": "MARLY LE ROI", + "nomCommune": "MARLY LE ROI" }, { - "codePostal": "21630", - "codeCommune": "21492", - "libelleAcheminement": "POMMARD", - "nomCommune": "POMMARD" + "codePostal": "25220", + "codeCommune": "25560", + "libelleAcheminement": "THISE", + "nomCommune": "THISE" }, { - "codePostal": "77570", - "codeCommune": "77011", - "libelleAcheminement": "AUFFERVILLE", - "nomCommune": "AUFFERVILLE" + "codePostal": "78550", + "codeCommune": "78381", + "libelleAcheminement": "MAULETTE", + "nomCommune": "MAULETTE" }, { - "codePostal": "78170", - "codeCommune": "78126", - "libelleAcheminement": "LA CELLE ST CLOUD", - "nomCommune": "LA CELLE ST CLOUD" + "codePostal": "65190", + "codeCommune": "65101", + "libelleAcheminement": "BORDES", + "nomCommune": "BORDES" }, { - "codePostal": "71400", - "codeCommune": "71349", - "libelleAcheminement": "LA PETITE VERRIERE", - "nomCommune": "LA PETITE VERRIERE" + "codePostal": "67250", + "codeCommune": "67206", + "libelleAcheminement": "HOFFEN", + "nomCommune": "HOFFEN" }, { - "codePostal": "21390", - "codeCommune": "21505", - "libelleAcheminement": "PRECY SOUS THIL", - "nomCommune": "PRECY SOUS THIL" + "codePostal": "78550", + "codeCommune": "78381", + "libelleAcheminement": "MAULETTE", + "nomCommune": "MAULETTE" }, { - "codePostal": "77167", - "codeCommune": "77016", - "libelleAcheminement": "BAGNEAUX SUR LOING", - "nomCommune": "BAGNEAUX SUR LOING" + "codePostal": "25320", + "codeCommune": "25561", + "libelleAcheminement": "THORAISE", + "nomCommune": "THORAISE" }, { - "codePostal": "78150", - "codeCommune": "78158", - "libelleAcheminement": "LE CHESNAY ROCQUENCOURT", - "nomCommune": "LE CHESNAY ROCQUENCOURT" + "codePostal": "78670", + "codeCommune": "78384", + "libelleAcheminement": "MEDAN", + "nomCommune": "MEDAN" }, { - "codePostal": "71600", - "codeCommune": "71354", - "libelleAcheminement": "POISSON", - "nomCommune": "POISSON" + "codePostal": "65370", + "codeCommune": "65109", + "libelleAcheminement": "BRAMEVAQUE", + "nomCommune": "BRAMEVAQUE" }, { - "codePostal": "21700", - "codeCommune": "21506", - "libelleAcheminement": "PREMEAUX PRISSEY", - "nomCommune": "PREMEAUX PRISSEY" + "codePostal": "67310", + "codeCommune": "67208", + "libelleAcheminement": "HOHENGOEFT", + "nomCommune": "HOHENGOEFT" }, { - "codePostal": "77970", - "codeCommune": "77020", - "libelleAcheminement": "BANNOST VILLEGAGNON", - "nomCommune": "BANNOST VILLEGAGNON" + "codePostal": "78125", + "codeCommune": "78407", + "libelleAcheminement": "MITTAINVILLE", + "nomCommune": "MITTAINVILLE" }, { - "codePostal": "78460", - "codeCommune": "78160", - "libelleAcheminement": "CHEVREUSE", - "nomCommune": "CHEVREUSE" + "codePostal": "25310", + "codeCommune": "25562", + "libelleAcheminement": "THULAY", + "nomCommune": "THULAY" }, { - "codePostal": "71800", - "codeCommune": "71361", - "libelleAcheminement": "PRIZY", - "nomCommune": "PRIZY" + "codePostal": "78200", + "codeCommune": "78385", + "libelleAcheminement": "MENERVILLE", + "nomCommune": "MENERVILLE" }, { - "codePostal": "21500", - "codeCommune": "21518", - "libelleAcheminement": "QUINCY LE VICOMTE", - "nomCommune": "QUINCY LE VICOMTE" + "codePostal": "65140", + "codeCommune": "65114", + "libelleAcheminement": "BUZON", + "nomCommune": "BUZON" }, { - "codePostal": "77130", - "codeCommune": "77021", - "libelleAcheminement": "BARBEY", - "nomCommune": "BARBEY" + "codePostal": "67810", + "codeCommune": "67212", + "libelleAcheminement": "HOLTZHEIM", + "nomCommune": "HOLTZHEIM" }, { - "codePostal": "78120", - "codeCommune": "78164", - "libelleAcheminement": "CLAIREFONTAINE EN YVELINES", - "nomCommune": "CLAIREFONTAINE EN YVELINES" + "codePostal": "78980", + "codeCommune": "78413", + "libelleAcheminement": "MONDREVILLE", + "nomCommune": "MONDREVILLE" }, { - "codePostal": "71460", - "codeCommune": "71363", - "libelleAcheminement": "LE PULEY", - "nomCommune": "LE PULEY" + "codePostal": "25300", + "codeCommune": "25609", + "libelleAcheminement": "VERRIERES DE JOUX", + "nomCommune": "VERRIERES DE JOUX" }, { - "codePostal": "21310", - "codeCommune": "21522", - "libelleAcheminement": "RENEVE", - "nomCommune": "RENEVE" + "codePostal": "78470", + "codeCommune": "78406", + "libelleAcheminement": "MILON LA CHAPELLE", + "nomCommune": "MILON LA CHAPELLE" }, { - "codePostal": "77910", - "codeCommune": "77023", - "libelleAcheminement": "BARCY", - "nomCommune": "BARCY" + "codePostal": "65190", + "codeCommune": "65120", + "libelleAcheminement": "CALAVANTE", + "nomCommune": "CALAVANTE" }, { - "codePostal": "78270", - "codeCommune": "78188", - "libelleAcheminement": "CRAVENT", - "nomCommune": "CRAVENT" + "codePostal": "67250", + "codeCommune": "67213", + "libelleAcheminement": "HUNSPACH", + "nomCommune": "HUNSPACH" }, { - "codePostal": "71960", - "codeCommune": "71371", - "libelleAcheminement": "LA ROCHE VINEUSE", - "nomCommune": "LA ROCHE VINEUSE" + "codePostal": "78124", + "codeCommune": "78415", + "libelleAcheminement": "MONTAINVILLE", + "nomCommune": "MONTAINVILLE" }, { - "codePostal": "21530", - "codeCommune": "21525", - "libelleAcheminement": "LA ROCHE EN BRENIL", - "nomCommune": "LA ROCHE EN BRENIL" + "codePostal": "25660", + "codeCommune": "25611", + "libelleAcheminement": "LA VEZE", + "nomCommune": "LA VEZE" }, { - "codePostal": "77560", - "codeCommune": "77026", - "libelleAcheminement": "BEAUCHERY ST MARTIN", - "nomCommune": "BEAUCHERY ST MARTIN" + "codePostal": "78840", + "codeCommune": "78410", + "libelleAcheminement": "MOISSON", + "nomCommune": "MOISSON" }, { - "codePostal": "78290", - "codeCommune": "78190", - "libelleAcheminement": "CROISSY SUR SEINE", - "nomCommune": "CROISSY SUR SEINE" + "codePostal": "65330", + "codeCommune": "65128", + "libelleAcheminement": "CASTELBAJAC", + "nomCommune": "CASTELBAJAC" }, { - "codePostal": "71580", - "codeCommune": "71379", - "libelleAcheminement": "SAGY", - "nomCommune": "SAGY" + "codePostal": "67400", + "codeCommune": "67218", + "libelleAcheminement": "ILLKIRCH GRAFFENSTADEN", + "nomCommune": "ILLKIRCH GRAFFENSTADEN" }, { - "codePostal": "21540", - "codeCommune": "21539", - "libelleAcheminement": "ST ANTHOT", - "nomCommune": "ST ANTHOT" + "codePostal": "78270", + "codeCommune": "78437", + "libelleAcheminement": "MOUSSEAUX SUR SEINE", + "nomCommune": "MOUSSEAUX SUR SEINE" }, { - "codePostal": "77510", - "codeCommune": "77030", - "libelleAcheminement": "BELLOT", - "nomCommune": "BELLOT" + "codePostal": "25870", + "codeCommune": "25612", + "libelleAcheminement": "VIEILLEY", + "nomCommune": "VIEILLEY" }, { - "codePostal": "78690", - "codeCommune": "78220", - "libelleAcheminement": "LES ESSARTS LE ROI", - "nomCommune": "LES ESSARTS LE ROI" + "codePostal": "78180", + "codeCommune": "78423", + "libelleAcheminement": "MONTIGNY LE BRETONNEUX", + "nomCommune": "MONTIGNY LE BRETONNEUX" }, { - "codePostal": "71430", - "codeCommune": "71388", - "libelleAcheminement": "ST AUBIN EN CHAROLLAIS", - "nomCommune": "ST AUBIN EN CHAROLLAIS" + "codePostal": "65230", + "codeCommune": "65129", + "libelleAcheminement": "CASTELNAU MAGNOAC", + "nomCommune": "CASTELNAU MAGNOAC" }, { - "codePostal": "21350", - "codeCommune": "21544", - "libelleAcheminement": "STE COLOMBE EN AUXOIS", - "nomCommune": "STE COLOMBE EN AUXOIS" + "codePostal": "67340", + "codeCommune": "67222", + "libelleAcheminement": "INGWILLER", + "nomCommune": "INGWILLER" }, { - "codePostal": "77570", - "codeCommune": "77045", - "libelleAcheminement": "BOUGLIGNY", - "nomCommune": "BOUGLIGNY" + "codePostal": "78590", + "codeCommune": "78455", + "libelleAcheminement": "NOISY LE ROI", + "nomCommune": "NOISY LE ROI" }, { - "codePostal": "78200", - "codeCommune": "78231", - "libelleAcheminement": "FAVRIEUX", - "nomCommune": "FAVRIEUX" + "codePostal": "68230", + "codeCommune": "68338", + "libelleAcheminement": "TURCKHEIM", + "nomCommune": "TURCKHEIM" }, { - "codePostal": "71390", - "codeCommune": "71392", - "libelleAcheminement": "ST BOIL", - "nomCommune": "ST BOIL" + "codePostal": "78790", + "codeCommune": "78439", + "libelleAcheminement": "MULCENT", + "nomCommune": "MULCENT" }, { - "codePostal": "21690", - "codeCommune": "21552", - "libelleAcheminement": "ST HELIER", - "nomCommune": "ST HELIER" + "codePostal": "65700", + "codeCommune": "65137", + "libelleAcheminement": "CAUSSADE RIVIERE", + "nomCommune": "CAUSSADE RIVIERE" }, { - "codePostal": "77240", - "codeCommune": "77067", - "libelleAcheminement": "CESSON", - "nomCommune": "CESSON" + "codePostal": "67880", + "codeCommune": "67223", + "libelleAcheminement": "INNENHEIM", + "nomCommune": "INNENHEIM" }, { - "codePostal": "78200", - "codeCommune": "78234", - "libelleAcheminement": "FLACOURT", - "nomCommune": "FLACOURT" + "codePostal": "78910", + "codeCommune": "78474", + "libelleAcheminement": "ORVILLIERS", + "nomCommune": "ORVILLIERS" }, { - "codePostal": "71250", - "codeCommune": "71397", - "libelleAcheminement": "STE CECILE", - "nomCommune": "STE CECILE" + "codePostal": "68510", + "codeCommune": "68341", + "libelleAcheminement": "UFFHEIM", + "nomCommune": "UFFHEIM" }, { - "codePostal": "21410", - "codeCommune": "21553", - "libelleAcheminement": "ST JEAN DE BOEUF", - "nomCommune": "ST JEAN DE BOEUF" + "codePostal": "78640", + "codeCommune": "78442", + "libelleAcheminement": "NEAUPHLE LE CHATEAU", + "nomCommune": "NEAUPHLE LE CHATEAU" }, { - "codePostal": "77520", - "codeCommune": "77068", - "libelleAcheminement": "CESSOY EN MONTOIS", - "nomCommune": "CESSOY EN MONTOIS" + "codePostal": "65800", + "codeCommune": "65146", + "libelleAcheminement": "CHIS", + "nomCommune": "CHIS" }, { - "codePostal": "78250", - "codeCommune": "78261", - "libelleAcheminement": "GAILLON SUR MONTCIENT", - "nomCommune": "GAILLON SUR MONTCIENT" + "codePostal": "67930", + "codeCommune": "67235", + "libelleAcheminement": "KESSELDORF", + "nomCommune": "KESSELDORF" }, { - "codePostal": "71110", - "codeCommune": "71415", - "libelleAcheminement": "STE FOY", - "nomCommune": "STE FOY" + "codePostal": "78125", + "codeCommune": "78497", + "libelleAcheminement": "POIGNY LA FORET", + "nomCommune": "POIGNY LA FORET" }, { - "codePostal": "21700", - "codeCommune": "21564", - "libelleAcheminement": "ST NICOLAS LES CITEAUX", - "nomCommune": "ST NICOLAS LES CITEAUX" + "codePostal": "68600", + "codeCommune": "68360", + "libelleAcheminement": "WECKOLSHEIM", + "nomCommune": "WECKOLSHEIM" }, { - "codePostal": "77120", - "codeCommune": "77070", - "libelleAcheminement": "CHAILLY EN BRIE", - "nomCommune": "CHAILLY EN BRIE" + "codePostal": "78370", + "codeCommune": "78490", + "libelleAcheminement": "PLAISIR", + "nomCommune": "PLAISIR" }, { - "codePostal": "78490", - "codeCommune": "78289", - "libelleAcheminement": "GROSROUVRE", - "nomCommune": "GROSROUVRE" + "codePostal": "65300", + "codeCommune": "65150", + "libelleAcheminement": "CLARENS", + "nomCommune": "CLARENS" }, { - "codePostal": "71330", - "codeCommune": "71419", - "libelleAcheminement": "ST GERMAIN DU BOIS", - "nomCommune": "ST GERMAIN DU BOIS" + "codePostal": "67120", + "codeCommune": "67247", + "libelleAcheminement": "KOLBSHEIM", + "nomCommune": "KOLBSHEIM" }, { - "codePostal": "21230", - "codeCommune": "21567", - "libelleAcheminement": "ST PRIX LES ARNAY", - "nomCommune": "ST PRIX LES ARNAY" + "codePostal": "78730", + "codeCommune": "78499", + "libelleAcheminement": "PONTHEVRARD", + "nomCommune": "PONTHEVRARD" }, { - "codePostal": "77540", - "codeCommune": "77087", - "libelleAcheminement": "LA CHAPELLE IGER", - "nomCommune": "LA CHAPELLE IGER" + "codePostal": "68320", + "codeCommune": "68366", + "libelleAcheminement": "WICKERSCHWIHR", + "nomCommune": "WICKERSCHWIHR" }, { - "codePostal": "78520", - "codeCommune": "78290", - "libelleAcheminement": "GUERNES", - "nomCommune": "GUERNES" + "codePostal": "78300", + "codeCommune": "78498", + "libelleAcheminement": "POISSY", + "nomCommune": "POISSY" }, { - "codePostal": "71800", - "codeCommune": "71421", - "libelleAcheminement": "ST GERMAIN EN BRIONNAIS", - "nomCommune": "ST GERMAIN EN BRIONNAIS" + "codePostal": "65350", + "codeCommune": "65153", + "libelleAcheminement": "COUSSAN", + "nomCommune": "COUSSAN" }, { - "codePostal": "21190", - "codeCommune": "21569", - "libelleAcheminement": "ST ROMAIN", - "nomCommune": "ST ROMAIN" + "codePostal": "67220", + "codeCommune": "67255", + "libelleAcheminement": "LALAYE", + "nomCommune": "LALAYE" }, { - "codePostal": "77320", - "codeCommune": "77093", - "libelleAcheminement": "LA CHAPELLE MOUTILS", - "nomCommune": "LA CHAPELLE MOUTILS" + "codePostal": "78440", + "codeCommune": "78536", + "libelleAcheminement": "SAILLY", + "nomCommune": "SAILLY" }, { - "codePostal": "78113", - "codeCommune": "78302", - "libelleAcheminement": "LA HAUTEVILLE", - "nomCommune": "LA HAUTEVILLE" + "codePostal": "68820", + "codeCommune": "68370", + "libelleAcheminement": "WILDENSTEIN", + "nomCommune": "WILDENSTEIN" }, { - "codePostal": "71390", - "codeCommune": "71426", - "libelleAcheminement": "STE HELENE", - "nomCommune": "STE HELENE" + "codePostal": "78300", + "codeCommune": "78498", + "libelleAcheminement": "POISSY", + "nomCommune": "POISSY" }, { - "codePostal": "21270", - "codeCommune": "21571", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "65130", + "codeCommune": "65162", + "libelleAcheminement": "ESCONNETS", + "nomCommune": "ESCONNETS" }, { - "codePostal": "77370", - "codeCommune": "77098", - "libelleAcheminement": "CHATEAUBLEAU", - "nomCommune": "CHATEAUBLEAU" + "codePostal": "67700", + "codeCommune": "67258", + "libelleAcheminement": "LANDERSHEIM", + "nomCommune": "LANDERSHEIM" }, { - "codePostal": "78550", - "codeCommune": "78310", - "libelleAcheminement": "HOUDAN", - "nomCommune": "HOUDAN" + "codePostal": "78100", + "codeCommune": "78551", + "libelleAcheminement": "ST GERMAIN EN LAYE", + "nomCommune": "ST GERMAIN EN LAYE" }, { - "codePostal": "71640", - "codeCommune": "71430", - "libelleAcheminement": "ST JEAN DE VAUX", - "nomCommune": "ST JEAN DE VAUX" + "codePostal": "68920", + "codeCommune": "68374", + "libelleAcheminement": "WINTZENHEIM", + "nomCommune": "WINTZENHEIM" }, { - "codePostal": "21170", - "codeCommune": "21577", - "libelleAcheminement": "ST USAGE", - "nomCommune": "ST USAGE" + "codePostal": "78660", + "codeCommune": "78506", + "libelleAcheminement": "PRUNAY EN YVELINES", + "nomCommune": "PRUNAY EN YVELINES" }, { - "codePostal": "77167", - "codeCommune": "77102", - "libelleAcheminement": "CHATENOY", - "nomCommune": "CHATENOY" + "codePostal": "65120", + "codeCommune": "65168", + "libelleAcheminement": "ESQUIEZE SERE", + "nomCommune": "ESQUIEZE SERE" }, { - "codePostal": "78320", - "codeCommune": "78334", - "libelleAcheminement": "LEVIS ST NOM", - "nomCommune": "LEVIS ST NOM" + "codePostal": "67340", + "codeCommune": "67265", + "libelleAcheminement": "LICHTENBERG", + "nomCommune": "LICHTENBERG" }, { - "codePostal": "71210", - "codeCommune": "71435", - "libelleAcheminement": "ST JULIEN SUR DHEUNE", - "nomCommune": "ST JULIEN SUR DHEUNE" + "codePostal": "78980", + "codeCommune": "78558", + "libelleAcheminement": "ST ILLIERS LA VILLE", + "nomCommune": "ST ILLIERS LA VILLE" }, { - "codePostal": "21690", - "codeCommune": "21580", - "libelleAcheminement": "SALMAISE", - "nomCommune": "SALMAISE" + "codePostal": "68600", + "codeCommune": "68379", + "libelleAcheminement": "WOLFGANTZEN", + "nomCommune": "WOLFGANTZEN" }, { - "codePostal": "77570", - "codeCommune": "77110", - "libelleAcheminement": "CHENOU", - "nomCommune": "CHENOU" + "codePostal": "78660", + "codeCommune": "78506", + "libelleAcheminement": "PRUNAY EN YVELINES", + "nomCommune": "PRUNAY EN YVELINES" }, { - "codePostal": "78270", - "codeCommune": "78344", - "libelleAcheminement": "LOMMOYE", - "nomCommune": "LOMMOYE" + "codePostal": "65170", + "codeCommune": "65172", + "libelleAcheminement": "ESTENSAN", + "nomCommune": "ESTENSAN" }, { - "codePostal": "71990", - "codeCommune": "71440", - "libelleAcheminement": "ST LEGER SOUS BEUVRAY", - "nomCommune": "ST LEGER SOUS BEUVRAY" + "codePostal": "67380", + "codeCommune": "67267", + "libelleAcheminement": "LINGOLSHEIM", + "nomCommune": "LINGOLSHEIM" }, { - "codePostal": "21910", - "codeCommune": "21585", - "libelleAcheminement": "SAULON LA CHAPELLE", - "nomCommune": "SAULON LA CHAPELLE" + "codePostal": "78860", + "codeCommune": "78571", + "libelleAcheminement": "ST NOM LA BRETECHE", + "nomCommune": "ST NOM LA BRETECHE" }, { - "codePostal": "77710", - "codeCommune": "77115", - "libelleAcheminement": "CHEVRY EN SEREINE", - "nomCommune": "CHEVRY EN SEREINE" + "codePostal": "69170", + "codeCommune": "69001", + "libelleAcheminement": "AFFOUX", + "nomCommune": "AFFOUX" }, { - "codePostal": "78430", - "codeCommune": "78350", - "libelleAcheminement": "LOUVECIENNES", - "nomCommune": "LOUVECIENNES" + "codePostal": "78940", + "codeCommune": "78513", + "libelleAcheminement": "LA QUEUE LES YVELINES", + "nomCommune": "LA QUEUE LES YVELINES" }, { - "codePostal": "71240", - "codeCommune": "71444", - "libelleAcheminement": "ST LOUP DE VARENNES", - "nomCommune": "ST LOUP DE VARENNES" + "codePostal": "65220", + "codeCommune": "65177", + "libelleAcheminement": "FONTRAILLES", + "nomCommune": "FONTRAILLES" }, { - "codePostal": "21380", - "codeCommune": "21591", - "libelleAcheminement": "SAVIGNY LE SEC", - "nomCommune": "SAVIGNY LE SEC" + "codePostal": "67430", + "codeCommune": "67278", + "libelleAcheminement": "MACKWILLER", + "nomCommune": "MACKWILLER" }, { - "codePostal": "77730", - "codeCommune": "77117", - "libelleAcheminement": "CITRY", - "nomCommune": "CITRY" + "codePostal": "78470", + "codeCommune": "78575", + "libelleAcheminement": "ST REMY LES CHEVREUSE", + "nomCommune": "ST REMY LES CHEVREUSE" }, { - "codePostal": "78200", - "codeCommune": "78354", - "libelleAcheminement": "MAGNANVILLE", - "nomCommune": "MAGNANVILLE" + "codePostal": "69380", + "codeCommune": "69004", + "libelleAcheminement": "ALIX", + "nomCommune": "ALIX" }, { - "codePostal": "71740", - "codeCommune": "71451", - "libelleAcheminement": "ST MARTIN DE LIXY", - "nomCommune": "ST MARTIN DE LIXY" + "codePostal": "78120", + "codeCommune": "78517", + "libelleAcheminement": "RAMBOUILLET", + "nomCommune": "RAMBOUILLET" }, { - "codePostal": "21140", - "codeCommune": "21603", - "libelleAcheminement": "SEMUR EN AUXOIS", - "nomCommune": "SEMUR EN AUXOIS" + "codePostal": "65320", + "codeCommune": "65185", + "libelleAcheminement": "GARDERES", + "nomCommune": "GARDERES" }, { - "codePostal": "77126", - "codeCommune": "77133", - "libelleAcheminement": "COURCELLES EN BASSEE", - "nomCommune": "COURCELLES EN BASSEE" + "codePostal": "67390", + "codeCommune": "67281", + "libelleAcheminement": "MARCKOLSHEIM", + "nomCommune": "MARCKOLSHEIM" }, { - "codePostal": "78114", - "codeCommune": "78356", - "libelleAcheminement": "MAGNY LES HAMEAUX", - "nomCommune": "MAGNY LES HAMEAUX" + "codePostal": "78200", + "codeCommune": "78597", + "libelleAcheminement": "SOINDRES", + "nomCommune": "SOINDRES" }, { - "codePostal": "71460", - "codeCommune": "71455", - "libelleAcheminement": "ST MARTIN DU TARTRE", - "nomCommune": "ST MARTIN DU TARTRE" + "codePostal": "69550", + "codeCommune": "69006", + "libelleAcheminement": "AMPLEPUIS", + "nomCommune": "AMPLEPUIS" }, { - "codePostal": "21140", - "codeCommune": "21612", - "libelleAcheminement": "SOUHEY", - "nomCommune": "SOUHEY" + "codePostal": "78590", + "codeCommune": "78518", + "libelleAcheminement": "RENNEMOULIN", + "nomCommune": "RENNEMOULIN" }, { - "codePostal": "77540", - "codeCommune": "77135", - "libelleAcheminement": "COURPALAY", - "nomCommune": "COURPALAY" + "codePostal": "65370", + "codeCommune": "65186", + "libelleAcheminement": "GAUDENT", + "nomCommune": "GAUDENT" }, { - "codePostal": "78770", - "codeCommune": "78364", - "libelleAcheminement": "MARCQ", - "nomCommune": "MARCQ" + "codePostal": "67150", + "codeCommune": "67285", + "libelleAcheminement": "MATZENHEIM", + "nomCommune": "MATZENHEIM" }, { - "codePostal": "71620", - "codeCommune": "71456", - "libelleAcheminement": "ST MARTIN EN BRESSE", - "nomCommune": "ST MARTIN EN BRESSE" + "codePostal": "78117", + "codeCommune": "78620", + "libelleAcheminement": "TOUSSUS LE NOBLE", + "nomCommune": "TOUSSUS LE NOBLE" }, { - "codePostal": "21190", - "codeCommune": "21616", - "libelleAcheminement": "TAILLY", - "nomCommune": "TAILLY" + "codePostal": "69420", + "codeCommune": "69007", + "libelleAcheminement": "AMPUIS", + "nomCommune": "AMPUIS" }, { - "codePostal": "77390", - "codeCommune": "77136", - "libelleAcheminement": "COURQUETAINE", - "nomCommune": "COURQUETAINE" + "codePostal": "78730", + "codeCommune": "78522", + "libelleAcheminement": "ROCHEFORT EN YVELINES", + "nomCommune": "ROCHEFORT EN YVELINES" }, { - "codePostal": "78750", - "codeCommune": "78367", - "libelleAcheminement": "MAREIL MARLY", - "nomCommune": "MAREIL MARLY" + "codePostal": "65670", + "codeCommune": "65187", + "libelleAcheminement": "GAUSSAN", + "nomCommune": "GAUSSAN" }, { - "codePostal": "71620", - "codeCommune": "71462", - "libelleAcheminement": "ST MAURICE EN RIVIERE", - "nomCommune": "ST MAURICE EN RIVIERE" + "codePostal": "67140", + "codeCommune": "67295", + "libelleAcheminement": "MITTELBERGHEIM", + "nomCommune": "MITTELBERGHEIM" }, { - "codePostal": "21110", - "codeCommune": "21622", - "libelleAcheminement": "TART LE BAS", - "nomCommune": "TART LE BAS" + "codePostal": "78270", + "codeCommune": "78668", + "libelleAcheminement": "LA VILLENEUVE EN CHEVRIE", + "nomCommune": "LA VILLENEUVE EN CHEVRIE" }, { - "codePostal": "77154", - "codeCommune": "77140", - "libelleAcheminement": "COUTENCON", - "nomCommune": "COUTENCON" + "codePostal": "69530", + "codeCommune": "69027", + "libelleAcheminement": "BRIGNAIS", + "nomCommune": "BRIGNAIS" }, { - "codePostal": "78780", - "codeCommune": "78382", - "libelleAcheminement": "MAURECOURT", - "nomCommune": "MAURECOURT" + "codePostal": "78730", + "codeCommune": "78537", + "libelleAcheminement": "ST ARNOULT EN YVELINES", + "nomCommune": "ST ARNOULT EN YVELINES" }, { - "codePostal": "71740", - "codeCommune": "71463", - "libelleAcheminement": "ST MAURICE LES CHATEAUNEUF", - "nomCommune": "ST MAURICE LES CHATEAUNEUF" + "codePostal": "65200", + "codeCommune": "65198", + "libelleAcheminement": "GERDE", + "nomCommune": "GERDE" }, { - "codePostal": "21110", - "codeCommune": "21623", - "libelleAcheminement": "TART", - "nomCommune": "TART" + "codePostal": "67700", + "codeCommune": "67302", + "libelleAcheminement": "MONSWILLER", + "nomCommune": "MONSWILLER" }, { - "codePostal": "77580", - "codeCommune": "77141", - "libelleAcheminement": "COUTEVROULT", - "nomCommune": "COUTEVROULT" + "codePostal": "78670", + "codeCommune": "78672", + "libelleAcheminement": "VILLENNES SUR SEINE", + "nomCommune": "VILLENNES SUR SEINE" }, { - "codePostal": "78310", - "codeCommune": "78383", - "libelleAcheminement": "MAUREPAS", - "nomCommune": "MAUREPAS" + "codePostal": "69690", + "codeCommune": "69031", + "libelleAcheminement": "BRUSSIEU", + "nomCommune": "BRUSSIEU" }, { - "codePostal": "71990", - "codeCommune": "71472", - "libelleAcheminement": "ST PRIX", - "nomCommune": "ST PRIX" + "codePostal": "78720", + "codeCommune": "78548", + "libelleAcheminement": "ST FORGET", + "nomCommune": "ST FORGET" }, { - "codePostal": "21270", - "codeCommune": "21624", - "libelleAcheminement": "TELLECEY", - "nomCommune": "TELLECEY" + "codePostal": "65240", + "codeCommune": "65209", + "libelleAcheminement": "GREZIAN", + "nomCommune": "GREZIAN" }, { - "codePostal": "77124", - "codeCommune": "77143", - "libelleAcheminement": "CREGY LES MEAUX", - "nomCommune": "CREGY LES MEAUX" + "codePostal": "67130", + "codeCommune": "67306", + "libelleAcheminement": "MUHLBACH SUR BRUCHE", + "nomCommune": "MUHLBACH SUR BRUCHE" }, { - "codePostal": "78125", - "codeCommune": "78407", - "libelleAcheminement": "MITTAINVILLE", - "nomCommune": "MITTAINVILLE" + "codePostal": "78640", + "codeCommune": "78683", + "libelleAcheminement": "VILLIERS ST FREDERIC", + "nomCommune": "VILLIERS ST FREDERIC" }, { - "codePostal": "71800", - "codeCommune": "71473", - "libelleAcheminement": "ST RACHO", - "nomCommune": "ST RACHO" + "codePostal": "69220", + "codeCommune": "69036", + "libelleAcheminement": "CERCIE", + "nomCommune": "CERCIE" }, { - "codePostal": "21350", - "codeCommune": "21633", - "libelleAcheminement": "THOREY SOUS CHARNY", - "nomCommune": "THOREY SOUS CHARNY" + "codePostal": "78112", + "codeCommune": "78551", + "libelleAcheminement": "ST GERMAIN EN LAYE", + "nomCommune": "ST GERMAIN EN LAYE" }, { - "codePostal": "77390", - "codeCommune": "77145", - "libelleAcheminement": "CRISENOY", - "nomCommune": "CRISENOY" + "codePostal": "65150", + "codeCommune": "65217", + "libelleAcheminement": "HAUTAGET", + "nomCommune": "HAUTAGET" }, { - "codePostal": "78840", - "codeCommune": "78410", - "libelleAcheminement": "MOISSON", - "nomCommune": "MOISSON" + "codePostal": "67600", + "codeCommune": "67310", + "libelleAcheminement": "MUSSIG", + "nomCommune": "MUSSIG" }, { - "codePostal": "71710", - "codeCommune": "71482", - "libelleAcheminement": "ST SYMPHORIEN DE MARMAGNE", - "nomCommune": "ST SYMPHORIEN DE MARMAGNE" + "codePostal": "79240", + "codeCommune": "79001", + "libelleAcheminement": "L ABSIE", + "nomCommune": "L ABSIE" }, { - "codePostal": "21170", - "codeCommune": "21645", - "libelleAcheminement": "TROUHANS", - "nomCommune": "TROUHANS" + "codePostal": "69590", + "codeCommune": "69042", + "libelleAcheminement": "LA CHAPELLE SUR COISE", + "nomCommune": "LA CHAPELLE SUR COISE" }, { - "codePostal": "77370", - "codeCommune": "77147", - "libelleAcheminement": "LA CROIX EN BRIE", - "nomCommune": "LA CROIX EN BRIE" + "codePostal": "78610", + "codeCommune": "78562", + "libelleAcheminement": "ST LEGER EN YVELINES", + "nomCommune": "ST LEGER EN YVELINES" }, { - "codePostal": "78980", - "codeCommune": "78413", - "libelleAcheminement": "MONDREVILLE", - "nomCommune": "MONDREVILLE" + "codePostal": "65200", + "codeCommune": "65221", + "libelleAcheminement": "HIIS", + "nomCommune": "HIIS" }, { - "codePostal": "71500", - "codeCommune": "71484", - "libelleAcheminement": "ST USUGE", - "nomCommune": "ST USUGE" + "codePostal": "67600", + "codeCommune": "67311", + "libelleAcheminement": "MUTTERSHOLTZ", + "nomCommune": "MUTTERSHOLTZ" }, { - "codePostal": "21220", - "codeCommune": "21650", - "libelleAcheminement": "URCY", - "nomCommune": "URCY" + "codePostal": "79200", + "codeCommune": "79002", + "libelleAcheminement": "ADILLY", + "nomCommune": "ADILLY" }, { - "codePostal": "77165", - "codeCommune": "77150", - "libelleAcheminement": "CUISY", - "nomCommune": "CUISY" + "codePostal": "69390", + "codeCommune": "69046", + "libelleAcheminement": "CHARLY", + "nomCommune": "CHARLY" }, { - "codePostal": "78360", - "codeCommune": "78418", - "libelleAcheminement": "MONTESSON", - "nomCommune": "MONTESSON" + "codePostal": "78660", + "codeCommune": "78564", + "libelleAcheminement": "ST MARTIN DE BRETHENCOURT", + "nomCommune": "ST MARTIN DE BRETHENCOURT" }, { - "codePostal": "71430", - "codeCommune": "71490", - "libelleAcheminement": "ST VINCENT BRAGNY", - "nomCommune": "ST VINCENT BRAGNY" + "codePostal": "65370", + "codeCommune": "65229", + "libelleAcheminement": "ILHEU", + "nomCommune": "ILHEU" }, { - "codePostal": "21320", - "codeCommune": "21652", - "libelleAcheminement": "VANDENESSE EN AUXOIS", - "nomCommune": "VANDENESSE EN AUXOIS" + "codePostal": "67190", + "codeCommune": "67313", + "libelleAcheminement": "MUTZIG", + "nomCommune": "MUTZIG" }, { - "codePostal": "77163", - "codeCommune": "77154", - "libelleAcheminement": "DAMMARTIN SUR TIGEAUX", - "nomCommune": "DAMMARTIN SUR TIGEAUX" + "codePostal": "79600", + "codeCommune": "79005", + "libelleAcheminement": "AIRVAULT", + "nomCommune": "AIRVAULT" }, { - "codePostal": "78790", - "codeCommune": "78439", - "libelleAcheminement": "MULCENT", - "nomCommune": "MULCENT" + "codePostal": "69380", + "codeCommune": "69047", + "libelleAcheminement": "CHARNAY", + "nomCommune": "CHARNAY" }, { - "codePostal": "71260", - "codeCommune": "71494", - "libelleAcheminement": "LA SALLE", - "nomCommune": "LA SALLE" + "codePostal": "78510", + "codeCommune": "78624", + "libelleAcheminement": "TRIEL SUR SEINE", + "nomCommune": "TRIEL SUR SEINE" }, { - "codePostal": "21110", - "codeCommune": "21656", - "libelleAcheminement": "VARANGES", - "nomCommune": "VARANGES" + "codePostal": "65100", + "codeCommune": "65233", + "libelleAcheminement": "JARRET", + "nomCommune": "JARRET" }, { - "codePostal": "77140", - "codeCommune": "77156", - "libelleAcheminement": "DARVAULT", - "nomCommune": "DARVAULT" + "codePostal": "67130", + "codeCommune": "67314", + "libelleAcheminement": "NATZWILLER", + "nomCommune": "NATZWILLER" }, { - "codePostal": "78980", - "codeCommune": "78444", - "libelleAcheminement": "NEAUPHLETTE", - "nomCommune": "NEAUPHLETTE" + "codePostal": "79600", + "codeCommune": "79005", + "libelleAcheminement": "AIRVAULT", + "nomCommune": "AIRVAULT" }, { - "codePostal": "71390", - "codeCommune": "71503", - "libelleAcheminement": "SAULES", - "nomCommune": "SAULES" + "codePostal": "69270", + "codeCommune": "69068", + "libelleAcheminement": "COUZON AU MONT D OR", + "nomCommune": "COUZON AU MONT D OR" }, { - "codePostal": "21350", - "codeCommune": "21662", - "libelleAcheminement": "VELOGNY", - "nomCommune": "VELOGNY" + "codePostal": "78540", + "codeCommune": "78643", + "libelleAcheminement": "VERNOUILLET", + "nomCommune": "VERNOUILLET" }, { - "codePostal": "77126", - "codeCommune": "77167", - "libelleAcheminement": "EGLIGNY", - "nomCommune": "EGLIGNY" + "codePostal": "65130", + "codeCommune": "65239", + "libelleAcheminement": "LABASTIDE", + "nomCommune": "LABASTIDE" }, { - "codePostal": "78590", - "codeCommune": "78455", - "libelleAcheminement": "NOISY LE ROI", - "nomCommune": "NOISY LE ROI" + "codePostal": "67480", + "codeCommune": "67319", + "libelleAcheminement": "NEUHAEUSEL", + "nomCommune": "NEUHAEUSEL" }, { - "codePostal": "71580", - "codeCommune": "71506", - "libelleAcheminement": "SAVIGNY EN REVERMONT", - "nomCommune": "SAVIGNY EN REVERMONT" + "codePostal": "79160", + "codeCommune": "79012", + "libelleAcheminement": "ARDIN", + "nomCommune": "ARDIN" }, { - "codePostal": "21330", - "codeCommune": "21664", - "libelleAcheminement": "VERDONNET", - "nomCommune": "VERDONNET" + "codePostal": "69550", + "codeCommune": "69070", + "libelleAcheminement": "CUBLIZE", + "nomCommune": "CUBLIZE" }, { - "codePostal": "77620", - "codeCommune": "77168", - "libelleAcheminement": "EGREVILLE", - "nomCommune": "EGREVILLE" + "codePostal": "78540", + "codeCommune": "78643", + "libelleAcheminement": "VERNOUILLET", + "nomCommune": "VERNOUILLET" }, { - "codePostal": "78630", - "codeCommune": "78466", - "libelleAcheminement": "ORGEVAL", - "nomCommune": "ORGEVAL" + "codePostal": "65700", + "codeCommune": "65240", + "libelleAcheminement": "LABATUT RIVIERE", + "nomCommune": "LABATUT RIVIERE" }, { - "codePostal": "71240", - "codeCommune": "71512", - "libelleAcheminement": "SENNECEY LE GRAND", - "nomCommune": "SENNECEY LE GRAND" + "codePostal": "67330", + "codeCommune": "67322", + "libelleAcheminement": "NEUWILLER LES SAVERNE", + "nomCommune": "NEUWILLER LES SAVERNE" }, { - "codePostal": "21520", - "codeCommune": "21674", - "libelleAcheminement": "VEUXHAULLES SUR AUBE", - "nomCommune": "VEUXHAULLES SUR AUBE" + "codePostal": "79300", + "codeCommune": "79013", + "libelleAcheminement": "ARGENTONNAY", + "nomCommune": "ARGENTONNAY" }, { - "codePostal": "77940", - "codeCommune": "77172", - "libelleAcheminement": "ESMANS", - "nomCommune": "ESMANS" + "codePostal": "69210", + "codeCommune": "69083", + "libelleAcheminement": "EVEUX", + "nomCommune": "EVEUX" }, { - "codePostal": "78125", - "codeCommune": "78470", - "libelleAcheminement": "ORPHIN", - "nomCommune": "ORPHIN" + "codePostal": "78000", + "codeCommune": "78646", + "libelleAcheminement": "VERSAILLES", + "nomCommune": "VERSAILLES" }, { - "codePostal": "71260", - "codeCommune": "71513", - "libelleAcheminement": "SENOZAN", - "nomCommune": "SENOZAN" + "codePostal": "65380", + "codeCommune": "65252", + "libelleAcheminement": "LAMARQUE PONTACQ", + "nomCommune": "LAMARQUE PONTACQ" }, { - "codePostal": "21430", - "codeCommune": "21675", - "libelleAcheminement": "VIANGES", - "nomCommune": "VIANGES" + "codePostal": "67210", + "codeCommune": "67329", + "libelleAcheminement": "NIEDERNAI", + "nomCommune": "NIEDERNAI" }, { - "codePostal": "77166", - "codeCommune": "77175", - "libelleAcheminement": "EVRY GREGY SUR YERRE", - "nomCommune": "EVRY GREGY SUR YERRE" + "codePostal": "79290", + "codeCommune": "79014", + "libelleAcheminement": "LORETZ D ARGENTON", + "nomCommune": "LORETZ D ARGENTON" }, { - "codePostal": "78660", - "codeCommune": "78478", - "libelleAcheminement": "PARAY DOUAVILLE", - "nomCommune": "PARAY DOUAVILLE" + "codePostal": "69400", + "codeCommune": "69092", + "libelleAcheminement": "GLEIZE", + "nomCommune": "GLEIZE" }, { - "codePostal": "71960", - "codeCommune": "71518", - "libelleAcheminement": "SERRIERES", - "nomCommune": "SERRIERES" + "codePostal": "78770", + "codeCommune": "78681", + "libelleAcheminement": "VILLIERS LE MAHIEU", + "nomCommune": "VILLIERS LE MAHIEU" }, { - "codePostal": "21140", - "codeCommune": "21676", - "libelleAcheminement": "VIC DE CHASSENAY", - "nomCommune": "VIC DE CHASSENAY" + "codePostal": "65220", + "codeCommune": "65253", + "libelleAcheminement": "LAMARQUE RUSTAING", + "nomCommune": "LAMARQUE RUSTAING" }, { - "codePostal": "77940", - "codeCommune": "77184", - "libelleAcheminement": "FLAGY", - "nomCommune": "FLAGY" + "codePostal": "67680", + "codeCommune": "67337", + "libelleAcheminement": "NOTHALTEN", + "nomCommune": "NOTHALTEN" }, { - "codePostal": "78610", - "codeCommune": "78486", - "libelleAcheminement": "LE PERRAY EN YVELINES", - "nomCommune": "LE PERRAY EN YVELINES" + "codePostal": "79110", + "codeCommune": "79018", + "libelleAcheminement": "AUBIGNE", + "nomCommune": "AUBIGNE" }, { - "codePostal": "71330", - "codeCommune": "71523", - "libelleAcheminement": "SIMARD", - "nomCommune": "SIMARD" + "codePostal": "69520", + "codeCommune": "69096", + "libelleAcheminement": "GRIGNY", + "nomCommune": "GRIGNY" }, { - "codePostal": "21460", - "codeCommune": "21681", - "libelleAcheminement": "VIEUX CHATEAU", - "nomCommune": "VIEUX CHATEAU" + "codePostal": "79350", + "codeCommune": "79008", + "libelleAcheminement": "AMAILLOUX", + "nomCommune": "AMAILLOUX" }, { - "codePostal": "77930", - "codeCommune": "77185", - "libelleAcheminement": "FLEURY EN BIERE", - "nomCommune": "FLEURY EN BIERE" + "codePostal": "65240", + "codeCommune": "65255", + "libelleAcheminement": "LANCON", + "nomCommune": "LANCON" }, { - "codePostal": "78370", - "codeCommune": "78490", - "libelleAcheminement": "PLAISIR", - "nomCommune": "PLAISIR" + "codePostal": "67660", + "codeCommune": "67339", + "libelleAcheminement": "BETSCHDORF", + "nomCommune": "BETSCHDORF" }, { - "codePostal": "71330", - "codeCommune": "71534", - "libelleAcheminement": "LE TARTRE", - "nomCommune": "LE TARTRE" + "codePostal": "79400", + "codeCommune": "79020", + "libelleAcheminement": "AUGE", + "nomCommune": "AUGE" }, { - "codePostal": "21500", - "codeCommune": "21686", - "libelleAcheminement": "VILLAINES LES PREVOTES", - "nomCommune": "VILLAINES LES PREVOTES" + "codePostal": "69420", + "codeCommune": "69097", + "libelleAcheminement": "LES HAIES", + "nomCommune": "LES HAIES" }, { - "codePostal": "77370", - "codeCommune": "77190", - "libelleAcheminement": "FONTAINS", - "nomCommune": "FONTAINS" + "codePostal": "79150", + "codeCommune": "79013", + "libelleAcheminement": "ARGENTONNAY", + "nomCommune": "ARGENTONNAY" }, { - "codePostal": "78910", - "codeCommune": "78505", - "libelleAcheminement": "PRUNAY LE TEMPLE", - "nomCommune": "PRUNAY LE TEMPLE" + "codePostal": "65190", + "codeCommune": "65256", + "libelleAcheminement": "LANESPEDE", + "nomCommune": "LANESPEDE" }, { - "codePostal": "71210", - "codeCommune": "71540", - "libelleAcheminement": "TORCY", - "nomCommune": "TORCY" + "codePostal": "67160", + "codeCommune": "67351", + "libelleAcheminement": "SEEBACH", + "nomCommune": "SEEBACH" }, { - "codePostal": "21210", - "codeCommune": "21687", - "libelleAcheminement": "VILLARGOIX", - "nomCommune": "VILLARGOIX" + "codePostal": "79360", + "codeCommune": "79031", + "libelleAcheminement": "BEAUVOIR SUR NIORT", + "nomCommune": "BEAUVOIR SUR NIORT" }, { - "codePostal": "77320", - "codeCommune": "77197", - "libelleAcheminement": "FRETOY", - "nomCommune": "FRETOY" + "codePostal": "69610", + "codeCommune": "69098", + "libelleAcheminement": "LES HALLES", + "nomCommune": "LES HALLES" }, { - "codePostal": "78660", - "codeCommune": "78506", - "libelleAcheminement": "PRUNAY EN YVELINES", - "nomCommune": "PRUNAY EN YVELINES" + "codePostal": "79150", + "codeCommune": "79013", + "libelleAcheminement": "ARGENTONNAY", + "nomCommune": "ARGENTONNAY" }, { - "codePostal": "71350", - "codeCommune": "71544", - "libelleAcheminement": "TOUTENANT", - "nomCommune": "TOUTENANT" + "codePostal": "65140", + "codeCommune": "65269", + "libelleAcheminement": "LESCURRY", + "nomCommune": "LESCURRY" }, { - "codePostal": "21350", - "codeCommune": "21694", - "libelleAcheminement": "VILLEFERRY", - "nomCommune": "VILLEFERRY" + "codePostal": "67390", + "codeCommune": "67360", + "libelleAcheminement": "OHNENHEIM", + "nomCommune": "OHNENHEIM" }, { - "codePostal": "77760", - "codeCommune": "77198", - "libelleAcheminement": "FROMONT", - "nomCommune": "FROMONT" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "78940", - "codeCommune": "78513", - "libelleAcheminement": "LA QUEUE LES YVELINES", - "nomCommune": "LA QUEUE LES YVELINES" + "codePostal": "69540", + "codeCommune": "69100", + "libelleAcheminement": "IRIGNY", + "nomCommune": "IRIGNY" }, { - "codePostal": "71190", - "codeCommune": "71551", - "libelleAcheminement": "UCHON", - "nomCommune": "UCHON" + "codePostal": "79370", + "codeCommune": "79030", + "libelleAcheminement": "BEAUSSAIS VITRE", + "nomCommune": "BEAUSSAIS VITRE" }, { - "codePostal": "21700", - "codeCommune": "21698", - "libelleAcheminement": "VILLERS LA FAYE", - "nomCommune": "VILLERS LA FAYE" + "codePostal": "65510", + "codeCommune": "65282", + "libelleAcheminement": "LOUDENVIELLE", + "nomCommune": "LOUDENVIELLE" }, { - "codePostal": "77470", - "codeCommune": "77199", - "libelleAcheminement": "FUBLAINES", - "nomCommune": "FUBLAINES" + "codePostal": "67600", + "codeCommune": "67362", + "libelleAcheminement": "ORSCHWILLER", + "nomCommune": "ORSCHWILLER" }, { - "codePostal": "78730", - "codeCommune": "78522", - "libelleAcheminement": "ROCHEFORT EN YVELINES", - "nomCommune": "ROCHEFORT EN YVELINES" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "71240", - "codeCommune": "71555", - "libelleAcheminement": "VARENNES LE GRAND", - "nomCommune": "VARENNES LE GRAND" + "codePostal": "69840", + "codeCommune": "69103", + "libelleAcheminement": "JULIENAS", + "nomCommune": "JULIENAS" }, { - "codePostal": "21250", - "codeCommune": "21708", - "libelleAcheminement": "VILLY LE MOUTIER", - "nomCommune": "VILLY LE MOUTIER" + "codePostal": "79360", + "codeCommune": "79031", + "libelleAcheminement": "BEAUVOIR SUR NIORT", + "nomCommune": "BEAUVOIR SUR NIORT" }, { - "codePostal": "77610", - "codeCommune": "77229", - "libelleAcheminement": "LA HOUSSAYE EN BRIE", - "nomCommune": "LA HOUSSAYE EN BRIE" + "codePostal": "65240", + "codeCommune": "65283", + "libelleAcheminement": "LOUDERVIELLE", + "nomCommune": "LOUDERVIELLE" }, { - "codePostal": "78790", - "codeCommune": "78530", - "libelleAcheminement": "ROSAY", - "nomCommune": "ROSAY" + "codePostal": "67990", + "codeCommune": "67363", + "libelleAcheminement": "OSTHOFFEN", + "nomCommune": "OSTHOFFEN" }, { - "codePostal": "71460", - "codeCommune": "71563", - "libelleAcheminement": "VAUX EN PRE", - "nomCommune": "VAUX EN PRE" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "21190", - "codeCommune": "21712", - "libelleAcheminement": "VOLNAY", - "nomCommune": "VOLNAY" + "codePostal": "69840", + "codeCommune": "69104", + "libelleAcheminement": "JULLIE", + "nomCommune": "JULLIE" }, { - "codePostal": "77165", - "codeCommune": "77233", - "libelleAcheminement": "IVERNY", - "nomCommune": "IVERNY" + "codePostal": "79310", + "codeCommune": "79040", + "libelleAcheminement": "LA BOISSIERE EN GATINE", + "nomCommune": "LA BOISSIERE EN GATINE" }, { - "codePostal": "78710", - "codeCommune": "78531", - "libelleAcheminement": "ROSNY SUR SEINE", - "nomCommune": "ROSNY SUR SEINE" + "codePostal": "65350", + "codeCommune": "65285", + "libelleAcheminement": "LOUIT", + "nomCommune": "LOUIT" }, { - "codePostal": "71130", - "codeCommune": "71565", - "libelleAcheminement": "VENDENESSE SUR ARROUX", - "nomCommune": "VENDENESSE SUR ARROUX" + "codePostal": "67530", + "codeCommune": "67368", + "libelleAcheminement": "OTTROTT", + "nomCommune": "OTTROTT" }, { - "codePostal": "21290", - "codeCommune": "21717", - "libelleAcheminement": "VOULAINES LES TEMPLIERS", - "nomCommune": "VOULAINES LES TEMPLIERS" + "codePostal": "79290", + "codeCommune": "79063", + "libelleAcheminement": "VAL EN VIGNES", + "nomCommune": "VAL EN VIGNES" }, { - "codePostal": "77450", - "codeCommune": "77234", - "libelleAcheminement": "JABLINES", - "nomCommune": "JABLINES" + "codePostal": "69480", + "codeCommune": "69106", + "libelleAcheminement": "LACHASSAGNE", + "nomCommune": "LACHASSAGNE" }, { - "codePostal": "78730", - "codeCommune": "78537", - "libelleAcheminement": "ST ARNOULT EN YVELINES", - "nomCommune": "ST ARNOULT EN YVELINES" + "codePostal": "79600", + "codeCommune": "79047", + "libelleAcheminement": "BOUSSAIS", + "nomCommune": "BOUSSAIS" }, { - "codePostal": "71220", - "codeCommune": "71571", - "libelleAcheminement": "VEROSVRES", - "nomCommune": "VEROSVRES" + "codePostal": "65100", + "codeCommune": "65286", + "libelleAcheminement": "LOURDES", + "nomCommune": "LOURDES" }, { - "codePostal": "22140", - "codeCommune": "22004", - "libelleAcheminement": "BEGARD", - "nomCommune": "BEGARD" + "codePostal": "67350", + "codeCommune": "67372", + "libelleAcheminement": "VAL DE MODER", + "nomCommune": "VAL DE MODER" }, { - "codePostal": "77440", - "codeCommune": "77235", - "libelleAcheminement": "JAIGNES", - "nomCommune": "JAIGNES" + "codePostal": "79110", + "codeCommune": "79064", + "libelleAcheminement": "FONTIVILLIE", + "nomCommune": "FONTIVILLIE" }, { - "codePostal": "78980", - "codeCommune": "78558", - "libelleAcheminement": "ST ILLIERS LA VILLE", - "nomCommune": "ST ILLIERS LA VILLE" + "codePostal": "69590", + "codeCommune": "69110", + "libelleAcheminement": "LARAJASSE", + "nomCommune": "LARAJASSE" }, { - "codePostal": "71960", - "codeCommune": "71574", - "libelleAcheminement": "VERZE", - "nomCommune": "VERZE" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "22140", - "codeCommune": "22004", - "libelleAcheminement": "BEGARD", - "nomCommune": "BEGARD" + "codePostal": "65370", + "codeCommune": "65287", + "libelleAcheminement": "LOURES BAROUSSE", + "nomCommune": "LOURES BAROUSSE" }, { - "codePostal": "77171", - "codeCommune": "77246", - "libelleAcheminement": "LECHELLE", - "nomCommune": "LECHELLE" + "codePostal": "67370", + "codeCommune": "67375", + "libelleAcheminement": "PFULGRIESHEIM", + "nomCommune": "PFULGRIESHEIM" }, { - "codePostal": "78660", - "codeCommune": "78564", - "libelleAcheminement": "ST MARTIN DE BRETHENCOURT", - "nomCommune": "ST MARTIN DE BRETHENCOURT" + "codePostal": "79220", + "codeCommune": "79066", + "libelleAcheminement": "CHAMPDENIERS", + "nomCommune": "CHAMPDENIERS" }, { - "codePostal": "71270", - "codeCommune": "71578", - "libelleAcheminement": "CLUX VILLENEUVE", - "nomCommune": "CLUX VILLENEUVE" + "codePostal": "69620", + "codeCommune": "69113", + "libelleAcheminement": "LETRA", + "nomCommune": "LETRA" }, { - "codePostal": "22130", - "codeCommune": "22014", - "libelleAcheminement": "BOURSEUL", - "nomCommune": "BOURSEUL" + "codePostal": "79230", + "codeCommune": "79058", + "libelleAcheminement": "BRULAIN", + "nomCommune": "BRULAIN" }, { - "codePostal": "77550", - "codeCommune": "77252", - "libelleAcheminement": "LIMOGES FOURCHES", - "nomCommune": "LIMOGES FOURCHES" + "codePostal": "65220", + "codeCommune": "65289", + "libelleAcheminement": "LUBY BETMONT", + "nomCommune": "LUBY BETMONT" }, { - "codePostal": "78860", - "codeCommune": "78571", - "libelleAcheminement": "ST NOM LA BRETECHE", - "nomCommune": "ST NOM LA BRETECHE" + "codePostal": "67420", + "codeCommune": "67377", + "libelleAcheminement": "PLAINE", + "nomCommune": "PLAINE" }, { - "codePostal": "71250", - "codeCommune": "71582", - "libelleAcheminement": "LA VINEUSE SUR FREGANDE", - "nomCommune": "LA VINEUSE SUR FREGANDE" + "codePostal": "79320", + "codeCommune": "79069", + "libelleAcheminement": "CHANTELOUP", + "nomCommune": "CHANTELOUP" }, { - "codePostal": "22510", - "codeCommune": "22015", - "libelleAcheminement": "BREHAND", - "nomCommune": "BREHAND" + "codePostal": "69610", + "codeCommune": "69132", + "libelleAcheminement": "MEYS", + "nomCommune": "MEYS" }, { - "codePostal": "77560", - "codeCommune": "77262", - "libelleAcheminement": "LOUAN VILLEGRUIS FONTAINE", - "nomCommune": "LOUAN VILLEGRUIS FONTAINE" + "codePostal": "79370", + "codeCommune": "79061", + "libelleAcheminement": "CELLES SUR BELLE", + "nomCommune": "CELLES SUR BELLE" }, { - "codePostal": "78690", - "codeCommune": "78576", - "libelleAcheminement": "ST REMY L HONORE", - "nomCommune": "ST REMY L HONORE" + "codePostal": "65350", + "codeCommune": "65298", + "libelleAcheminement": "MARQUERIE", + "nomCommune": "MARQUERIE" }, { - "codePostal": "71250", - "codeCommune": "71582", - "libelleAcheminement": "LA VINEUSE SUR FREGANDE", - "nomCommune": "LA VINEUSE SUR FREGANDE" + "codePostal": "67490", + "codeCommune": "67380", + "libelleAcheminement": "PRINTZHEIM", + "nomCommune": "PRINTZHEIM" }, { - "codePostal": "22140", - "codeCommune": "22018", - "libelleAcheminement": "BRELIDY", - "nomCommune": "BRELIDY" + "codePostal": "79700", + "codeCommune": "79079", + "libelleAcheminement": "MAULEON", + "nomCommune": "MAULEON" }, { - "codePostal": "77950", - "codeCommune": "77269", - "libelleAcheminement": "MAINCY", - "nomCommune": "MAINCY" + "codePostal": "69860", + "codeCommune": "69135", + "libelleAcheminement": "DEUX GROSNES", + "nomCommune": "DEUX GROSNES" }, { - "codePostal": "78200", - "codeCommune": "78597", - "libelleAcheminement": "SOINDRES", - "nomCommune": "SOINDRES" + "codePostal": "79500", + "codeCommune": "79064", + "libelleAcheminement": "FONTIVILLIE", + "nomCommune": "FONTIVILLIE" }, { - "codePostal": "71600", - "codeCommune": "71590", - "libelleAcheminement": "VOLESVRES", - "nomCommune": "VOLESVRES" + "codePostal": "65140", + "codeCommune": "65311", + "libelleAcheminement": "MINGOT", + "nomCommune": "MINGOT" }, { - "codePostal": "22100", - "codeCommune": "22021", - "libelleAcheminement": "BRUSVILY", - "nomCommune": "BRUSVILY" + "codePostal": "67860", + "codeCommune": "67397", + "libelleAcheminement": "RHINAU", + "nomCommune": "RHINAU" }, { - "codePostal": "77370", - "codeCommune": "77272", - "libelleAcheminement": "MAISON ROUGE", - "nomCommune": "MAISON ROUGE" + "codePostal": "79110", + "codeCommune": "79083", + "libelleAcheminement": "CHEF BOUTONNE", + "nomCommune": "CHEF BOUTONNE" }, { - "codePostal": "78850", - "codeCommune": "78615", - "libelleAcheminement": "THIVERVAL GRIGNON", - "nomCommune": "THIVERVAL GRIGNON" + "codePostal": "69480", + "codeCommune": "69140", + "libelleAcheminement": "MORANCE", + "nomCommune": "MORANCE" }, { - "codePostal": "72230", - "codeCommune": "72008", - "libelleAcheminement": "ARNAGE", - "nomCommune": "ARNAGE" + "codePostal": "79200", + "codeCommune": "79071", + "libelleAcheminement": "LA CHAPELLE BERTRAND", + "nomCommune": "LA CHAPELLE BERTRAND" }, { - "codePostal": "22350", - "codeCommune": "22032", - "libelleAcheminement": "CAULNES", - "nomCommune": "CAULNES" + "codePostal": "65140", + "codeCommune": "65314", + "libelleAcheminement": "MONFAUCON", + "nomCommune": "MONFAUCON" }, { - "codePostal": "77100", - "codeCommune": "77276", - "libelleAcheminement": "MAREUIL LES MEAUX", - "nomCommune": "MAREUIL LES MEAUX" + "codePostal": "67480", + "codeCommune": "67405", + "libelleAcheminement": "ROESCHWOOG", + "nomCommune": "ROESCHWOOG" }, { - "codePostal": "78510", - "codeCommune": "78624", - "libelleAcheminement": "TRIEL SUR SEINE", - "nomCommune": "TRIEL SUR SEINE" + "codePostal": "79120", + "codeCommune": "79084", + "libelleAcheminement": "CHENAY", + "nomCommune": "CHENAY" }, { - "codePostal": "72300", - "codeCommune": "72016", - "libelleAcheminement": "AUVERS LE HAMON", - "nomCommune": "AUVERS LE HAMON" + "codePostal": "69440", + "codeCommune": "69141", + "libelleAcheminement": "MORNANT", + "nomCommune": "MORNANT" }, { - "codePostal": "22210", - "codeCommune": "22039", - "libelleAcheminement": "LA CHEZE", - "nomCommune": "LA CHEZE" + "codePostal": "79360", + "codeCommune": "79078", + "libelleAcheminement": "PLAINE D ARGENSON", + "nomCommune": "PLAINE D ARGENSON" }, { - "codePostal": "77610", - "codeCommune": "77277", - "libelleAcheminement": "MARLES EN BRIE", - "nomCommune": "MARLES EN BRIE" + "codePostal": "65670", + "codeCommune": "65316", + "libelleAcheminement": "MONLONG", + "nomCommune": "MONLONG" }, { - "codePostal": "78540", - "codeCommune": "78643", - "libelleAcheminement": "VERNOUILLET", - "nomCommune": "VERNOUILLET" + "codePostal": "67310", + "codeCommune": "67408", + "libelleAcheminement": "ROMANSWILLER", + "nomCommune": "ROMANSWILLER" }, { - "codePostal": "72350", - "codeCommune": "72019", - "libelleAcheminement": "AVESSE", - "nomCommune": "AVESSE" + "codePostal": "79140", + "codeCommune": "79091", + "libelleAcheminement": "CIRIERES", + "nomCommune": "CIRIERES" }, { - "codePostal": "22160", - "codeCommune": "22052", - "libelleAcheminement": "DUAULT", - "nomCommune": "DUAULT" + "codePostal": "69350", + "codeCommune": "69142", + "libelleAcheminement": "LA MULATIERE", + "nomCommune": "LA MULATIERE" }, { - "codePostal": "77350", - "codeCommune": "77285", - "libelleAcheminement": "LE MEE SUR SEINE", - "nomCommune": "LE MEE SUR SEINE" + "codePostal": "79360", + "codeCommune": "79078", + "libelleAcheminement": "PLAINE D ARGENSON", + "nomCommune": "PLAINE D ARGENSON" }, { - "codePostal": "78320", - "codeCommune": "78644", - "libelleAcheminement": "LA VERRIERE", - "nomCommune": "LA VERRIERE" + "codePostal": "65250", + "codeCommune": "65322", + "libelleAcheminement": "MONTOUSSE", + "nomCommune": "MONTOUSSE" }, { - "codePostal": "72290", - "codeCommune": "72023", - "libelleAcheminement": "BALLON ST MARS", - "nomCommune": "BALLON ST MARS" + "codePostal": "67480", + "codeCommune": "67409", + "libelleAcheminement": "ROPPENHEIM", + "nomCommune": "ROPPENHEIM" }, { - "codePostal": "22250", - "codeCommune": "22053", - "libelleAcheminement": "EREAC", - "nomCommune": "EREAC" + "codePostal": "79160", + "codeCommune": "79101", + "libelleAcheminement": "COULONGES SUR L AUTIZE", + "nomCommune": "COULONGES SUR L AUTIZE" }, { - "codePostal": "77000", - "codeCommune": "77288", - "libelleAcheminement": "MELUN", - "nomCommune": "MELUN" + "codePostal": "69250", + "codeCommune": "69143", + "libelleAcheminement": "NEUVILLE SUR SAONE", + "nomCommune": "NEUVILLE SUR SAONE" }, { - "codePostal": "78000", - "codeCommune": "78646", - "libelleAcheminement": "VERSAILLES", - "nomCommune": "VERSAILLES" + "codePostal": "79700", + "codeCommune": "79079", + "libelleAcheminement": "MAULEON", + "nomCommune": "MAULEON" }, { - "codePostal": "72340", - "codeCommune": "72027", - "libelleAcheminement": "BEAUMONT SUR DEME", - "nomCommune": "BEAUMONT SUR DEME" + "codePostal": "65200", + "codeCommune": "65335", + "libelleAcheminement": "ORDIZAN", + "nomCommune": "ORDIZAN" }, { - "codePostal": "22680", - "codeCommune": "22055", - "libelleAcheminement": "BINIC ETABLES SUR MER", - "nomCommune": "BINIC ETABLES SUR MER" + "codePostal": "67170", + "codeCommune": "67417", + "libelleAcheminement": "ROTTELSHEIM", + "nomCommune": "ROTTELSHEIM" }, { - "codePostal": "77171", - "codeCommune": "77289", - "libelleAcheminement": "MELZ SUR SEINE", - "nomCommune": "MELZ SUR SEINE" + "codePostal": "79450", + "codeCommune": "79118", + "libelleAcheminement": "FENERY", + "nomCommune": "FENERY" }, { - "codePostal": "78930", - "codeCommune": "78647", - "libelleAcheminement": "VERT", - "nomCommune": "VERT" + "codePostal": "69530", + "codeCommune": "69148", + "libelleAcheminement": "ORLIENAS", + "nomCommune": "ORLIENAS" }, { - "codePostal": "72500", - "codeCommune": "72028", - "libelleAcheminement": "BEAUMONT PIED DE BOEUF", - "nomCommune": "BEAUMONT PIED DE BOEUF" + "codePostal": "79700", + "codeCommune": "79079", + "libelleAcheminement": "MAULEON", + "nomCommune": "MAULEON" }, { - "codePostal": "22290", - "codeCommune": "22057", - "libelleAcheminement": "LE FAOUET", - "nomCommune": "LE FAOUET" + "codePostal": "65240", + "codeCommune": "65354", + "libelleAcheminement": "PAILHAC", + "nomCommune": "PAILHAC" }, { - "codePostal": "77520", - "codeCommune": "77298", - "libelleAcheminement": "MONS EN MONTOIS", - "nomCommune": "MONS EN MONTOIS" + "codePostal": "67480", + "codeCommune": "67418", + "libelleAcheminement": "ROUNTZENHEIM AUENHEIM", + "nomCommune": "ROUNTZENHEIM AUENHEIM" }, { - "codePostal": "78270", - "codeCommune": "78668", - "libelleAcheminement": "LA VILLENEUVE EN CHEVRIE", - "nomCommune": "LA VILLENEUVE EN CHEVRIE" + "codePostal": "79230", + "codeCommune": "79125", + "libelleAcheminement": "FORS", + "nomCommune": "FORS" }, { - "codePostal": "72320", - "codeCommune": "72032", - "libelleAcheminement": "BERFAY", - "nomCommune": "BERFAY" + "codePostal": "69460", + "codeCommune": "69151", + "libelleAcheminement": "LE PERREON", + "nomCommune": "LE PERREON" }, { - "codePostal": "22230", - "codeCommune": "22062", - "libelleAcheminement": "GOMENE", - "nomCommune": "GOMENE" + "codePostal": "79180", + "codeCommune": "79081", + "libelleAcheminement": "CHAURAY", + "nomCommune": "CHAURAY" }, { - "codePostal": "77470", - "codeCommune": "77300", - "libelleAcheminement": "MONTCEAUX LES MEAUX", - "nomCommune": "MONTCEAUX LES MEAUX" + "codePostal": "65190", + "codeCommune": "65357", + "libelleAcheminement": "PEYRAUBE", + "nomCommune": "PEYRAUBE" }, { - "codePostal": "78670", - "codeCommune": "78672", - "libelleAcheminement": "VILLENNES SUR SEINE", - "nomCommune": "VILLENNES SUR SEINE" + "codePostal": "67480", + "codeCommune": "67418", + "libelleAcheminement": "ROUNTZENHEIM AUENHEIM", + "nomCommune": "ROUNTZENHEIM AUENHEIM" }, { - "codePostal": "72440", - "codeCommune": "72042", - "libelleAcheminement": "BOULOIRE", - "nomCommune": "BOULOIRE" + "codePostal": "79360", + "codeCommune": "79127", + "libelleAcheminement": "LA FOYE MONJAULT", + "nomCommune": "LA FOYE MONJAULT" }, { - "codePostal": "22290", - "codeCommune": "22065", - "libelleAcheminement": "GOUDELIN", - "nomCommune": "GOUDELIN" + "codePostal": "69290", + "codeCommune": "69154", + "libelleAcheminement": "POLLIONNAY", + "nomCommune": "POLLIONNAY" }, { - "codePostal": "77151", - "codeCommune": "77301", - "libelleAcheminement": "MONTCEAUX LES PROVINS", - "nomCommune": "MONTCEAUX LES PROVINS" + "codePostal": "79410", + "codeCommune": "79086", + "libelleAcheminement": "CHERVEUX", + "nomCommune": "CHERVEUX" }, { - "codePostal": "78220", - "codeCommune": "78686", - "libelleAcheminement": "VIROFLAY", - "nomCommune": "VIROFLAY" + "codePostal": "65350", + "codeCommune": "65359", + "libelleAcheminement": "PEYRIGUERE", + "nomCommune": "PEYRIGUERE" }, { - "codePostal": "72610", - "codeCommune": "72043", - "libelleAcheminement": "BOURG LE ROI", - "nomCommune": "BOURG LE ROI" + "codePostal": "67130", + "codeCommune": "67420", + "libelleAcheminement": "RUSS", + "nomCommune": "RUSS" }, { - "codePostal": "22600", - "codeCommune": "22075", - "libelleAcheminement": "HEMONSTOIR", - "nomCommune": "HEMONSTOIR" + "codePostal": "79260", + "codeCommune": "79128", + "libelleAcheminement": "FRANCOIS", + "nomCommune": "FRANCOIS" }, { - "codePostal": "77320", - "codeCommune": "77304", - "libelleAcheminement": "MONTENILS", - "nomCommune": "MONTENILS" + "codePostal": "69490", + "codeCommune": "69157", + "libelleAcheminement": "VINDRY SUR TURDINE", + "nomCommune": "VINDRY SUR TURDINE" }, { - "codePostal": "79130", - "codeCommune": "79007", - "libelleAcheminement": "ALLONNE", - "nomCommune": "ALLONNE" + "codePostal": "79120", + "codeCommune": "79087", + "libelleAcheminement": "CHEY", + "nomCommune": "CHEY" }, { - "codePostal": "72370", - "codeCommune": "72046", - "libelleAcheminement": "LE BREIL SUR MERIZE", - "nomCommune": "LE BREIL SUR MERIZE" + "codePostal": "65300", + "codeCommune": "65363", + "libelleAcheminement": "PINAS", + "nomCommune": "PINAS" }, { - "codePostal": "22120", - "codeCommune": "22081", - "libelleAcheminement": "HILLION", - "nomCommune": "HILLION" + "codePostal": "67420", + "codeCommune": "67424", + "libelleAcheminement": "ST BLAISE LA ROCHE", + "nomCommune": "ST BLAISE LA ROCHE" }, { - "codePostal": "77130", - "codeCommune": "77305", - "libelleAcheminement": "MONTEREAU FAULT YONNE", - "nomCommune": "MONTEREAU FAULT YONNE" + "codePostal": "79220", + "codeCommune": "79133", + "libelleAcheminement": "GERMOND ROUVRE", + "nomCommune": "GERMOND ROUVRE" }, { - "codePostal": "79150", - "codeCommune": "79013", - "libelleAcheminement": "ARGENTONNAY", - "nomCommune": "ARGENTONNAY" + "codePostal": "69400", + "codeCommune": "69159", + "libelleAcheminement": "PORTE DES PIERRES DOREES", + "nomCommune": "PORTE DES PIERRES DOREES" }, { - "codePostal": "72340", - "codeCommune": "72052", - "libelleAcheminement": "CHAHAIGNES", - "nomCommune": "CHAHAIGNES" + "codePostal": "79170", + "codeCommune": "79090", + "libelleAcheminement": "CHIZE", + "nomCommune": "CHIZE" }, { - "codePostal": "22610", - "codeCommune": "22085", - "libelleAcheminement": "KERBORS", - "nomCommune": "KERBORS" + "codePostal": "65500", + "codeCommune": "65372", + "libelleAcheminement": "PUJO", + "nomCommune": "PUJO" }, { - "codePostal": "77230", - "codeCommune": "77308", - "libelleAcheminement": "MONTGE EN GOELE", - "nomCommune": "MONTGE EN GOELE" + "codePostal": "67220", + "codeCommune": "67426", + "libelleAcheminement": "ST MARTIN", + "nomCommune": "ST MARTIN" }, { - "codePostal": "79290", - "codeCommune": "79014", - "libelleAcheminement": "LORETZ D ARGENTON", - "nomCommune": "LORETZ D ARGENTON" + "codePostal": "79110", + "codeCommune": "79136", + "libelleAcheminement": "ALLOINAY", + "nomCommune": "ALLOINAY" }, { - "codePostal": "72250", - "codeCommune": "72053", - "libelleAcheminement": "CHALLES", - "nomCommune": "CHALLES" + "codePostal": "69640", + "codeCommune": "69159", + "libelleAcheminement": "PORTE DES PIERRES DOREES", + "nomCommune": "PORTE DES PIERRES DOREES" }, { - "codePostal": "22140", - "codeCommune": "22091", - "libelleAcheminement": "KERMOROC H", - "nomCommune": "KERMOROC H" + "codePostal": "79440", + "codeCommune": "79103", + "libelleAcheminement": "COURLAY", + "nomCommune": "COURLAY" }, { - "codePostal": "77250", - "codeCommune": "77316", - "libelleAcheminement": "MORET LOING ET ORVANNE", - "nomCommune": "MORET LOING ET ORVANNE" + "codePostal": "65250", + "codeCommune": "65385", + "libelleAcheminement": "ST ARROMAN", + "nomCommune": "ST ARROMAN" }, { - "codePostal": "79600", - "codeCommune": "79016", - "libelleAcheminement": "ASSAIS LES JUMEAUX", - "nomCommune": "ASSAIS LES JUMEAUX" + "codePostal": "67530", + "codeCommune": "67428", + "libelleAcheminement": "ST NABOR", + "nomCommune": "ST NABOR" }, { - "codePostal": "72430", - "codeCommune": "72059", - "libelleAcheminement": "CHANTENAY VILLEDIEU", - "nomCommune": "CHANTENAY VILLEDIEU" + "codePostal": "79120", + "codeCommune": "79148", + "libelleAcheminement": "LEZAY", + "nomCommune": "LEZAY" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "69870", + "codeCommune": "69160", + "libelleAcheminement": "POULE LES ECHARMEAUX", + "nomCommune": "POULE LES ECHARMEAUX" }, { - "codePostal": "77124", - "codeCommune": "77335", - "libelleAcheminement": "CHAUCONIN NEUFMONTIERS", - "nomCommune": "CHAUCONIN NEUFMONTIERS" + "codePostal": "79220", + "codeCommune": "79104", + "libelleAcheminement": "COURS", + "nomCommune": "COURS" }, { - "codePostal": "79400", - "codeCommune": "79020", - "libelleAcheminement": "AUGE", - "nomCommune": "AUGE" + "codePostal": "65150", + "codeCommune": "65394", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "72800", - "codeCommune": "72060", - "libelleAcheminement": "LA CHAPELLE AUX CHOUX", - "nomCommune": "LA CHAPELLE AUX CHOUX" + "codePostal": "67420", + "codeCommune": "67436", + "libelleAcheminement": "SAULXURES", + "nomCommune": "SAULXURES" }, { - "codePostal": "22140", - "codeCommune": "22095", - "libelleAcheminement": "LANDEBAERON", - "nomCommune": "LANDEBAERON" + "codePostal": "79390", + "codeCommune": "79149", + "libelleAcheminement": "LHOUMOIS", + "nomCommune": "LHOUMOIS" }, { - "codePostal": "77610", - "codeCommune": "77336", - "libelleAcheminement": "NEUFMOUTIERS EN BRIE", - "nomCommune": "NEUFMOUTIERS EN BRIE" + "codePostal": "69430", + "codeCommune": "69162", + "libelleAcheminement": "QUINCIE EN BEAUJOLAIS", + "nomCommune": "QUINCIE EN BEAUJOLAIS" }, { - "codePostal": "79800", - "codeCommune": "79023", - "libelleAcheminement": "AVON", - "nomCommune": "AVON" + "codePostal": "79340", + "codeCommune": "79105", + "libelleAcheminement": "LES CHATELIERS", + "nomCommune": "LES CHATELIERS" }, { - "codePostal": "72310", - "codeCommune": "72064", - "libelleAcheminement": "LA CHAPELLE HUON", - "nomCommune": "LA CHAPELLE HUON" + "codePostal": "65400", + "codeCommune": "65396", + "libelleAcheminement": "ST SAVIN", + "nomCommune": "ST SAVIN" }, { - "codePostal": "22130", - "codeCommune": "22096", - "libelleAcheminement": "LANDEBIA", - "nomCommune": "LANDEBIA" + "codePostal": "67700", + "codeCommune": "67437", + "libelleAcheminement": "SAVERNE", + "nomCommune": "SAVERNE" }, { - "codePostal": "77123", - "codeCommune": "77339", - "libelleAcheminement": "NOISY SUR ECOLE", - "nomCommune": "NOISY SUR ECOLE" + "codePostal": "79190", + "codeCommune": "79152", + "libelleAcheminement": "LORIGNE", + "nomCommune": "LORIGNE" }, { - "codePostal": "79370", - "codeCommune": "79030", - "libelleAcheminement": "BEAUSSAIS VITRE", - "nomCommune": "BEAUSSAIS VITRE" + "codePostal": "69430", + "codeCommune": "69165", + "libelleAcheminement": "REGNIE DURETTE", + "nomCommune": "REGNIE DURETTE" }, { - "codePostal": "72500", - "codeCommune": "72071", - "libelleAcheminement": "MONTVAL SUR LOIR", - "nomCommune": "MONTVAL SUR LOIR" + "codePostal": "79340", + "codeCommune": "79105", + "libelleAcheminement": "LES CHATELIERS", + "nomCommune": "LES CHATELIERS" }, { - "codePostal": "22800", - "codeCommune": "22099", - "libelleAcheminement": "LANFAINS", - "nomCommune": "LANFAINS" + "codePostal": "65400", + "codeCommune": "65400", + "libelleAcheminement": "SALLES", + "nomCommune": "SALLES" }, { - "codePostal": "77440", - "codeCommune": "77343", - "libelleAcheminement": "OCQUERRE", - "nomCommune": "OCQUERRE" + "codePostal": "67350", + "codeCommune": "67441", + "libelleAcheminement": "SCHALKENDORF", + "nomCommune": "SCHALKENDORF" }, { - "codePostal": "79360", - "codeCommune": "79031", - "libelleAcheminement": "BEAUVOIR SUR NIORT", - "nomCommune": "BEAUVOIR SUR NIORT" + "codePostal": "79600", + "codeCommune": "79156", + "libelleAcheminement": "LOUIN", + "nomCommune": "LOUIN" }, { - "codePostal": "72500", - "codeCommune": "72071", - "libelleAcheminement": "MONTVAL SUR LOIR", - "nomCommune": "MONTVAL SUR LOIR" + "codePostal": "69640", + "codeCommune": "69167", + "libelleAcheminement": "RIVOLET", + "nomCommune": "RIVOLET" }, { - "codePostal": "22980", - "codeCommune": "22104", - "libelleAcheminement": "LANGUEDIAS", - "nomCommune": "LANGUEDIAS" + "codePostal": "79170", + "codeCommune": "79111", + "libelleAcheminement": "ENSIGNE", + "nomCommune": "ENSIGNE" }, { - "codePostal": "77280", - "codeCommune": "77349", - "libelleAcheminement": "OTHIS", - "nomCommune": "OTHIS" + "codePostal": "65410", + "codeCommune": "65408", + "libelleAcheminement": "SARRANCOLIN", + "nomCommune": "SARRANCOLIN" }, { - "codePostal": "79310", - "codeCommune": "79040", - "libelleAcheminement": "LA BOISSIERE EN GATINE", - "nomCommune": "LA BOISSIERE EN GATINE" + "codePostal": "67750", + "codeCommune": "67445", + "libelleAcheminement": "SCHERWILLER", + "nomCommune": "SCHERWILLER" }, { - "codePostal": "72610", - "codeCommune": "72076", - "libelleAcheminement": "CHENAY", - "nomCommune": "CHENAY" + "codePostal": "79330", + "codeCommune": "79159", + "libelleAcheminement": "LUCHE THOUARSAIS", + "nomCommune": "LUCHE THOUARSAIS" }, { - "codePostal": "22570", - "codeCommune": "22107", - "libelleAcheminement": "BON REPOS SUR BLAVET", - "nomCommune": "BON REPOS SUR BLAVET" + "codePostal": "69270", + "codeCommune": "69168", + "libelleAcheminement": "ROCHETAILLEE SUR SAONE", + "nomCommune": "ROCHETAILLEE SUR SAONE" }, { - "codePostal": "77330", - "codeCommune": "77350", - "libelleAcheminement": "OZOIR LA FERRIERE", - "nomCommune": "OZOIR LA FERRIERE" + "codePostal": "79270", + "codeCommune": "79112", + "libelleAcheminement": "EPANNES", + "nomCommune": "EPANNES" }, { - "codePostal": "79290", - "codeCommune": "79056", - "libelleAcheminement": "BRION PRES THOUET", - "nomCommune": "BRION PRES THOUET" + "codePostal": "65120", + "codeCommune": "65413", + "libelleAcheminement": "SAZOS", + "nomCommune": "SAZOS" }, { - "codePostal": "72400", - "codeCommune": "72080", - "libelleAcheminement": "CHERRE AU", - "nomCommune": "CHERRE AU" + "codePostal": "67130", + "codeCommune": "67448", + "libelleAcheminement": "SCHIRMECK", + "nomCommune": "SCHIRMECK" }, { - "codePostal": "22570", - "codeCommune": "22107", - "libelleAcheminement": "BON REPOS SUR BLAVET", - "nomCommune": "BON REPOS SUR BLAVET" + "codePostal": "79100", + "codeCommune": "79161", + "libelleAcheminement": "LUZAY", + "nomCommune": "LUZAY" }, { - "codePostal": "77390", - "codeCommune": "77352", - "libelleAcheminement": "OZOUER LE VOULGIS", - "nomCommune": "OZOUER LE VOULGIS" + "codePostal": "69700", + "codeCommune": "69179", + "libelleAcheminement": "BEAUVALLON", + "nomCommune": "BEAUVALLON" }, { - "codePostal": "79230", - "codeCommune": "79058", - "libelleAcheminement": "BRULAIN", - "nomCommune": "BRULAIN" + "codePostal": "79350", + "codeCommune": "79116", + "libelleAcheminement": "FAYE L ABBESSE", + "nomCommune": "FAYE L ABBESSE" }, { - "codePostal": "72200", - "codeCommune": "72084", - "libelleAcheminement": "CLERMONT CREANS", - "nomCommune": "CLERMONT CREANS" + "codePostal": "65100", + "codeCommune": "65415", + "libelleAcheminement": "SEGUS", + "nomCommune": "SEGUS" }, { - "codePostal": "22300", - "codeCommune": "22110", - "libelleAcheminement": "LANMERIN", - "nomCommune": "LANMERIN" + "codePostal": "67370", + "codeCommune": "67452", + "libelleAcheminement": "SCHNERSHEIM", + "nomCommune": "SCHNERSHEIM" }, { - "codePostal": "77131", - "codeCommune": "77360", - "libelleAcheminement": "PEZARCHES", - "nomCommune": "PEZARCHES" + "codePostal": "79320", + "codeCommune": "79179", + "libelleAcheminement": "MONCOUTANT SUR SEVRE", + "nomCommune": "MONCOUTANT SUR SEVRE" }, { - "codePostal": "79240", - "codeCommune": "79059", - "libelleAcheminement": "LE BUSSEAU", - "nomCommune": "LE BUSSEAU" + "codePostal": "69170", + "codeCommune": "69181", + "libelleAcheminement": "ST APPOLINAIRE", + "nomCommune": "ST APPOLINAIRE" }, { - "codePostal": "72290", - "codeCommune": "72088", - "libelleAcheminement": "CONGE SUR ORNE", - "nomCommune": "CONGE SUR ORNE" + "codePostal": "79370", + "codeCommune": "79129", + "libelleAcheminement": "FRESSINES", + "nomCommune": "FRESSINES" }, { - "codePostal": "22740", - "codeCommune": "22127", - "libelleAcheminement": "LEZARDRIEUX", - "nomCommune": "LEZARDRIEUX" + "codePostal": "65370", + "codeCommune": "65431", + "libelleAcheminement": "SOST", + "nomCommune": "SOST" }, { - "codePostal": "77181", - "codeCommune": "77363", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "67370", + "codeCommune": "67452", + "libelleAcheminement": "SCHNERSHEIM", + "nomCommune": "SCHNERSHEIM" }, { - "codePostal": "79290", - "codeCommune": "79063", - "libelleAcheminement": "VAL EN VIGNES", - "nomCommune": "VAL EN VIGNES" + "codePostal": "79380", + "codeCommune": "79179", + "libelleAcheminement": "MONCOUTANT SUR SEVRE", + "nomCommune": "MONCOUTANT SUR SEVRE" }, { - "codePostal": "72190", - "codeCommune": "72095", - "libelleAcheminement": "COULAINES", - "nomCommune": "COULAINES" + "codePostal": "69870", + "codeCommune": "69183", + "libelleAcheminement": "ST BONNET LE TRONCY", + "nomCommune": "ST BONNET LE TRONCY" }, { - "codePostal": "22740", - "codeCommune": "22127", - "libelleAcheminement": "LEZARDRIEUX", - "nomCommune": "LEZARDRIEUX" + "codePostal": "79270", + "codeCommune": "79130", + "libelleAcheminement": "FRONTENAY ROHAN ROHAN", + "nomCommune": "FRONTENAY ROHAN ROHAN" }, { - "codePostal": "77540", - "codeCommune": "77365", - "libelleAcheminement": "LE PLESSIS FEU AUSSOUX", - "nomCommune": "LE PLESSIS FEU AUSSOUX" + "codePostal": "65500", + "codeCommune": "65438", + "libelleAcheminement": "TALAZAC", + "nomCommune": "TALAZAC" }, { - "codePostal": "79220", - "codeCommune": "79066", - "libelleAcheminement": "CHAMPDENIERS", - "nomCommune": "CHAMPDENIERS" + "codePostal": "67470", + "codeCommune": "67463", + "libelleAcheminement": "SELTZ", + "nomCommune": "SELTZ" }, { - "codePostal": "72550", - "codeCommune": "72096", - "libelleAcheminement": "COULANS SUR GEE", - "nomCommune": "COULANS SUR GEE" + "codePostal": "79370", + "codeCommune": "79185", + "libelleAcheminement": "AIGONDIGNE", + "nomCommune": "AIGONDIGNE" }, { - "codePostal": "22780", - "codeCommune": "22131", - "libelleAcheminement": "LOGUIVY PLOUGRAS", - "nomCommune": "LOGUIVY PLOUGRAS" + "codePostal": "69440", + "codeCommune": "69184", + "libelleAcheminement": "STE CATHERINE", + "nomCommune": "STE CATHERINE" }, { - "codePostal": "77160", - "codeCommune": "77368", - "libelleAcheminement": "POIGNY", - "nomCommune": "POIGNY" + "codePostal": "79150", + "codeCommune": "79132", + "libelleAcheminement": "GENNETON", + "nomCommune": "GENNETON" }, { - "codePostal": "79220", - "codeCommune": "79066", - "libelleAcheminement": "CHAMPDENIERS", - "nomCommune": "CHAMPDENIERS" + "codePostal": "65140", + "codeCommune": "65446", + "libelleAcheminement": "TOSTAT", + "nomCommune": "TOSTAT" }, { - "codePostal": "72800", - "codeCommune": "72098", - "libelleAcheminement": "COULONGE", - "nomCommune": "COULONGE" + "codePostal": "67220", + "codeCommune": "67477", + "libelleAcheminement": "STEIGE", + "nomCommune": "STEIGE" }, { - "codePostal": "22540", - "codeCommune": "22135", - "libelleAcheminement": "LOUARGAT", - "nomCommune": "LOUARGAT" + "codePostal": "79370", + "codeCommune": "79185", + "libelleAcheminement": "AIGONDIGNE", + "nomCommune": "AIGONDIGNE" }, { - "codePostal": "77515", - "codeCommune": "77371", - "libelleAcheminement": "POMMEUSE", - "nomCommune": "POMMEUSE" + "codePostal": "69170", + "codeCommune": "69188", + "libelleAcheminement": "ST CLEMENT SUR VALSONNE", + "nomCommune": "ST CLEMENT SUR VALSONNE" }, { - "codePostal": "79360", - "codeCommune": "79078", - "libelleAcheminement": "PLAINE D ARGENSON", - "nomCommune": "PLAINE D ARGENSON" + "codePostal": "79230", + "codeCommune": "79144", + "libelleAcheminement": "JUSCORPS", + "nomCommune": "JUSCORPS" }, { - "codePostal": "72550", - "codeCommune": "72113", - "libelleAcheminement": "DEGRE", - "nomCommune": "DEGRE" + "codePostal": "65400", + "codeCommune": "65458", + "libelleAcheminement": "UZ", + "nomCommune": "UZ" }, { - "codePostal": "22530", - "codeCommune": "22158", - "libelleAcheminement": "GUERLEDAN", - "nomCommune": "GUERLEDAN" + "codePostal": "67190", + "codeCommune": "67480", + "libelleAcheminement": "STILL", + "nomCommune": "STILL" }, { - "codePostal": "77340", - "codeCommune": "77373", - "libelleAcheminement": "PONTAULT COMBAULT", - "nomCommune": "PONTAULT COMBAULT" + "codePostal": "79000", + "codeCommune": "79191", + "libelleAcheminement": "NIORT", + "nomCommune": "NIORT" }, { - "codePostal": "79700", - "codeCommune": "79079", - "libelleAcheminement": "MAULEON", - "nomCommune": "MAULEON" + "codePostal": "69450", + "codeCommune": "69191", + "libelleAcheminement": "ST CYR AU MONT D OR", + "nomCommune": "ST CYR AU MONT D OR" }, { - "codePostal": "72400", - "codeCommune": "72114", - "libelleAcheminement": "DEHAULT", - "nomCommune": "DEHAULT" + "codePostal": "79170", + "codeCommune": "79158", + "libelleAcheminement": "LUCHE SUR BRIOUX", + "nomCommune": "LUCHE SUR BRIOUX" }, { - "codePostal": "22400", - "codeCommune": "22160", - "libelleAcheminement": "NOYAL", - "nomCommune": "NOYAL" + "codePostal": "65200", + "codeCommune": "65459", + "libelleAcheminement": "UZER", + "nomCommune": "UZER" }, { - "codePostal": "77410", - "codeCommune": "77376", - "libelleAcheminement": "PRECY SUR MARNE", - "nomCommune": "PRECY SUR MARNE" + "codePostal": "67000", + "codeCommune": "67482", + "libelleAcheminement": "STRASBOURG", + "nomCommune": "STRASBOURG" }, { - "codePostal": "79700", - "codeCommune": "79079", - "libelleAcheminement": "MAULEON", - "nomCommune": "MAULEON" + "codePostal": "79000", + "codeCommune": "79191", + "libelleAcheminement": "NIORT", + "nomCommune": "NIORT" }, { - "codePostal": "72390", - "codeCommune": "72118", - "libelleAcheminement": "DOLLON", - "nomCommune": "DOLLON" + "codePostal": "69370", + "codeCommune": "69194", + "libelleAcheminement": "ST DIDIER AU MONT D OR", + "nomCommune": "ST DIDIER AU MONT D OR" }, { - "codePostal": "22710", - "codeCommune": "22166", - "libelleAcheminement": "PENVENAN", - "nomCommune": "PENVENAN" + "codePostal": "79310", + "codeCommune": "79172", + "libelleAcheminement": "MAZIERES EN GATINE", + "nomCommune": "MAZIERES EN GATINE" }, { - "codePostal": "77220", - "codeCommune": "77377", - "libelleAcheminement": "PRESLES EN BRIE", - "nomCommune": "PRESLES EN BRIE" + "codePostal": "65120", + "codeCommune": "65463", + "libelleAcheminement": "VIELLA", + "nomCommune": "VIELLA" }, { - "codePostal": "79700", - "codeCommune": "79079", - "libelleAcheminement": "MAULEON", - "nomCommune": "MAULEON" + "codePostal": "67200", + "codeCommune": "67482", + "libelleAcheminement": "STRASBOURG", + "nomCommune": "STRASBOURG" }, { - "codePostal": "72220", - "codeCommune": "72124", - "libelleAcheminement": "ECOMMOY", - "nomCommune": "ECOMMOY" + "codePostal": "79100", + "codeCommune": "79196", + "libelleAcheminement": "PLAINE ET VALLEES", + "nomCommune": "PLAINE ET VALLEES" }, { - "codePostal": "22480", - "codeCommune": "22169", - "libelleAcheminement": "PEUMERIT QUINTIN", - "nomCommune": "PEUMERIT QUINTIN" + "codePostal": "69830", + "codeCommune": "69206", + "libelleAcheminement": "ST GEORGES DE RENEINS", + "nomCommune": "ST GEORGES DE RENEINS" }, { - "codePostal": "77160", - "codeCommune": "77379", - "libelleAcheminement": "PROVINS", - "nomCommune": "PROVINS" + "codePostal": "79500", + "codeCommune": "79174", + "libelleAcheminement": "MELLE", + "nomCommune": "MELLE" }, { - "codePostal": "79110", - "codeCommune": "79083", - "libelleAcheminement": "CHEF BOUTONNE", - "nomCommune": "CHEF BOUTONNE" + "codePostal": "65230", + "codeCommune": "65468", + "libelleAcheminement": "VIEUZOS", + "nomCommune": "VIEUZOS" }, { - "codePostal": "72550", - "codeCommune": "72130", - "libelleAcheminement": "FAY", - "nomCommune": "FAY" + "codePostal": "67290", + "codeCommune": "67483", + "libelleAcheminement": "STRUTH", + "nomCommune": "STRUTH" }, { - "codePostal": "22270", - "codeCommune": "22175", - "libelleAcheminement": "PLEDELIAC", - "nomCommune": "PLEDELIAC" + "codePostal": "79200", + "codeCommune": "79202", + "libelleAcheminement": "PARTHENAY", + "nomCommune": "PARTHENAY" }, { - "codePostal": "77139", - "codeCommune": "77380", - "libelleAcheminement": "PUISIEUX", - "nomCommune": "PUISIEUX" + "codePostal": "69380", + "codeCommune": "69212", + "libelleAcheminement": "ST JEAN DES VIGNES", + "nomCommune": "ST JEAN DES VIGNES" }, { - "codePostal": "79220", - "codeCommune": "79104", - "libelleAcheminement": "COURS", - "nomCommune": "COURS" + "codePostal": "79500", + "codeCommune": "79174", + "libelleAcheminement": "MELLE", + "nomCommune": "MELLE" }, { - "codePostal": "72350", - "codeCommune": "72136", - "libelleAcheminement": "FONTENAY SUR VEGRE", - "nomCommune": "FONTENAY SUR VEGRE" + "codePostal": "65100", + "codeCommune": "65470", + "libelleAcheminement": "VIGER", + "nomCommune": "VIGER" }, { - "codePostal": "22960", - "codeCommune": "22176", - "libelleAcheminement": "PLEDRAN", - "nomCommune": "PLEDRAN" + "codePostal": "67250", + "codeCommune": "67487", + "libelleAcheminement": "SURBOURG", + "nomCommune": "SURBOURG" }, { - "codePostal": "77550", - "codeCommune": "77384", - "libelleAcheminement": "REAU", - "nomCommune": "REAU" + "codePostal": "79230", + "codeCommune": "79216", + "libelleAcheminement": "PRAHECQ", + "nomCommune": "PRAHECQ" }, { - "codePostal": "79340", - "codeCommune": "79105", - "libelleAcheminement": "LES CHATELIERS", - "nomCommune": "LES CHATELIERS" + "codePostal": "69690", + "codeCommune": "69216", + "libelleAcheminement": "ST JULIEN SUR BIBOST", + "nomCommune": "ST JULIEN SUR BIBOST" }, { - "codePostal": "72140", - "codeCommune": "72145", - "libelleAcheminement": "LE GREZ", - "nomCommune": "LE GREZ" + "codePostal": "79500", + "codeCommune": "79174", + "libelleAcheminement": "MELLE", + "nomCommune": "MELLE" }, { - "codePostal": "22290", - "codeCommune": "22177", - "libelleAcheminement": "PLEGUIEN", - "nomCommune": "PLEGUIEN" + "codePostal": "65170", + "codeCommune": "65471", + "libelleAcheminement": "VIGNEC", + "nomCommune": "VIGNEC" }, { - "codePostal": "77160", - "codeCommune": "77391", - "libelleAcheminement": "ROUILLY", - "nomCommune": "ROUILLY" + "codePostal": "67350", + "codeCommune": "67497", + "libelleAcheminement": "UHLWILLER", + "nomCommune": "UHLWILLER" }, { - "codePostal": "79350", - "codeCommune": "79116", - "libelleAcheminement": "FAYE L ABBESSE", - "nomCommune": "FAYE L ABBESSE" + "codePostal": "79800", + "codeCommune": "79217", + "libelleAcheminement": "PRAILLES LA COUARDE", + "nomCommune": "PRAILLES LA COUARDE" }, { - "codePostal": "72540", - "codeCommune": "72166", - "libelleAcheminement": "LONGNES", - "nomCommune": "LONGNES" + "codePostal": "69440", + "codeCommune": "69219", + "libelleAcheminement": "ST LAURENT D AGNY", + "nomCommune": "ST LAURENT D AGNY" }, { - "codePostal": "22240", - "codeCommune": "22179", - "libelleAcheminement": "FREHEL", - "nomCommune": "FREHEL" + "codePostal": "79500", + "codeCommune": "79174", + "libelleAcheminement": "MELLE", + "nomCommune": "MELLE" }, { - "codePostal": "77760", - "codeCommune": "77395", - "libelleAcheminement": "RUMONT", - "nomCommune": "RUMONT" + "codePostal": "65150", + "codeCommune": "65482", + "libelleAcheminement": "CANTAOUS", + "nomCommune": "CANTAOUS" }, { - "codePostal": "79110", - "codeCommune": "79122", - "libelleAcheminement": "FONTENILLE ST MARTIN ENTRAIGUES", - "nomCommune": "FONTENILLE ST MARTIN D ENTRAIGUES" + "codePostal": "67220", + "codeCommune": "67499", + "libelleAcheminement": "URBEIS", + "nomCommune": "URBEIS" }, { - "codePostal": "72540", - "codeCommune": "72168", - "libelleAcheminement": "LOUE", - "nomCommune": "LOUE" + "codePostal": "79160", + "codeCommune": "79223", + "libelleAcheminement": "PUIHARDY", + "nomCommune": "PUIHARDY" }, { - "codePostal": "22570", - "codeCommune": "22181", - "libelleAcheminement": "PLELAUFF", - "nomCommune": "PLELAUFF" + "codePostal": "69850", + "codeCommune": "69227", + "libelleAcheminement": "ST MARTIN EN HAUT", + "nomCommune": "ST MARTIN EN HAUT" }, { - "codePostal": "77730", - "codeCommune": "77397", - "libelleAcheminement": "SAACY SUR MARNE", - "nomCommune": "SAACY SUR MARNE" + "codePostal": "79120", + "codeCommune": "79177", + "libelleAcheminement": "MESSE", + "nomCommune": "MESSE" }, { - "codePostal": "79260", - "codeCommune": "79128", - "libelleAcheminement": "FRANCOIS", - "nomCommune": "FRANCOIS" + "codePostal": "66200", + "codeCommune": "66002", + "libelleAcheminement": "ALENYA", + "nomCommune": "ALENYA" }, { - "codePostal": "72210", - "codeCommune": "72169", - "libelleAcheminement": "LOUPLANDE", - "nomCommune": "LOUPLANDE" + "codePostal": "67310", + "codeCommune": "67520", + "libelleAcheminement": "WASSELONNE", + "nomCommune": "WASSELONNE" }, { - "codePostal": "22370", - "codeCommune": "22186", - "libelleAcheminement": "PLENEUF VAL ANDRE", - "nomCommune": "PLENEUF VAL ANDRE" + "codePostal": "79270", + "codeCommune": "79229", + "libelleAcheminement": "LA ROCHENARD", + "nomCommune": "LA ROCHENARD" }, { - "codePostal": "77260", - "codeCommune": "77401", - "libelleAcheminement": "STE AULDE", - "nomCommune": "STE AULDE" + "codePostal": "69440", + "codeCommune": "69228", + "libelleAcheminement": "CHABANIERE", + "nomCommune": "CHABANIERE" }, { - "codePostal": "79330", - "codeCommune": "79131", - "libelleAcheminement": "GEAY", - "nomCommune": "GEAY" + "codePostal": "79140", + "codeCommune": "79183", + "libelleAcheminement": "MONTRAVERS", + "nomCommune": "MONTRAVERS" }, { - "codePostal": "72600", - "codeCommune": "72170", - "libelleAcheminement": "LOUVIGNY", - "nomCommune": "LOUVIGNY" + "codePostal": "66320", + "codeCommune": "66007", + "libelleAcheminement": "ARBOUSSOLS", + "nomCommune": "ARBOUSSOLS" }, { - "codePostal": "22720", - "codeCommune": "22189", - "libelleAcheminement": "PLESIDY", - "nomCommune": "PLESIDY" + "codePostal": "67310", + "codeCommune": "67520", + "libelleAcheminement": "WASSELONNE", + "nomCommune": "WASSELONNE" }, { - "codePostal": "77650", - "codeCommune": "77404", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "79120", + "codeCommune": "79230", + "libelleAcheminement": "ROM", + "nomCommune": "ROM" }, { - "codePostal": "79220", - "codeCommune": "79133", - "libelleAcheminement": "GERMOND ROUVRE", - "nomCommune": "GERMOND ROUVRE" + "codePostal": "69490", + "codeCommune": "69234", + "libelleAcheminement": "ST ROMAIN DE POPEY", + "nomCommune": "ST ROMAIN DE POPEY" }, { - "codePostal": "72210", - "codeCommune": "72177", - "libelleAcheminement": "MAIGNE", - "nomCommune": "MAIGNE" + "codePostal": "79000", + "codeCommune": "79191", + "libelleAcheminement": "NIORT", + "nomCommune": "NIORT" }, { - "codePostal": "22490", - "codeCommune": "22190", - "libelleAcheminement": "PLESLIN TRIGAVOU", - "nomCommune": "PLESLIN TRIGAVOU" + "codePostal": "66700", + "codeCommune": "66008", + "libelleAcheminement": "ARGELES SUR MER", + "nomCommune": "ARGELES SUR MER" }, { - "codePostal": "77750", - "codeCommune": "77405", - "libelleAcheminement": "ST CYR SUR MORIN", - "nomCommune": "ST CYR SUR MORIN" + "codePostal": "67270", + "codeCommune": "67530", + "libelleAcheminement": "WICKERSHEIM WILSHAUSEN", + "nomCommune": "WICKERSHEIM WILSHAUSEN" }, { - "codePostal": "79190", - "codeCommune": "79136", - "libelleAcheminement": "ALLOINAY", - "nomCommune": "ALLOINAY" + "codePostal": "79150", + "codeCommune": "79242", + "libelleAcheminement": "VOULMENTIN", + "nomCommune": "VOULMENTIN" }, { - "codePostal": "72270", - "codeCommune": "72179", - "libelleAcheminement": "MALICORNE SUR SARTHE", - "nomCommune": "MALICORNE SUR SARTHE" + "codePostal": "69440", + "codeCommune": "69241", + "libelleAcheminement": "TALUYERS", + "nomCommune": "TALUYERS" }, { - "codePostal": "22640", - "codeCommune": "22193", - "libelleAcheminement": "PLESTAN", - "nomCommune": "PLESTAN" + "codePostal": "79100", + "codeCommune": "79196", + "libelleAcheminement": "PLAINE ET VALLEES", + "nomCommune": "PLAINE ET VALLEES" }, { - "codePostal": "77950", - "codeCommune": "77410", - "libelleAcheminement": "ST GERMAIN LAXIS", - "nomCommune": "ST GERMAIN LAXIS" + "codePostal": "66650", + "codeCommune": "66016", + "libelleAcheminement": "BANYULS SUR MER", + "nomCommune": "BANYULS SUR MER" }, { - "codePostal": "79240", - "codeCommune": "79147", - "libelleAcheminement": "LARGEASSE", - "nomCommune": "LARGEASSE" + "codePostal": "67290", + "codeCommune": "67535", + "libelleAcheminement": "WIMMENAU", + "nomCommune": "WIMMENAU" }, { - "codePostal": "72340", - "codeCommune": "72183", - "libelleAcheminement": "MARCON", - "nomCommune": "MARCON" + "codePostal": "79330", + "codeCommune": "79250", + "libelleAcheminement": "STE GEMME", + "nomCommune": "STE GEMME" }, { - "codePostal": "22310", - "codeCommune": "22194", - "libelleAcheminement": "PLESTIN LES GREVES", - "nomCommune": "PLESTIN LES GREVES" + "codePostal": "69510", + "codeCommune": "69249", + "libelleAcheminement": "THURINS", + "nomCommune": "THURINS" }, { - "codePostal": "77320", - "codeCommune": "77423", - "libelleAcheminement": "ST MARTIN DES CHAMPS", - "nomCommune": "ST MARTIN DES CHAMPS" + "codePostal": "79100", + "codeCommune": "79196", + "libelleAcheminement": "PLAINE ET VALLEES", + "nomCommune": "PLAINE ET VALLEES" }, { - "codePostal": "79110", - "codeCommune": "79153", - "libelleAcheminement": "LOUBIGNE", - "nomCommune": "LOUBIGNE" + "codePostal": "66420", + "codeCommune": "66017", + "libelleAcheminement": "LE BARCARES", + "nomCommune": "LE BARCARES" }, { - "codePostal": "72600", - "codeCommune": "72188", - "libelleAcheminement": "MAROLLETTE", - "nomCommune": "MAROLLETTE" + "codePostal": "67110", + "codeCommune": "67536", + "libelleAcheminement": "WINDSTEIN", + "nomCommune": "WINDSTEIN" }, { - "codePostal": "22610", - "codeCommune": "22195", - "libelleAcheminement": "PLEUBIAN", - "nomCommune": "PLEUBIAN" + "codePostal": "79500", + "codeCommune": "79251", + "libelleAcheminement": "MARCILLE", + "nomCommune": "MARCILLE" }, { - "codePostal": "77630", - "codeCommune": "77425", - "libelleAcheminement": "ST MARTIN EN BIERE", - "nomCommune": "ST MARTIN EN BIERE" + "codePostal": "69170", + "codeCommune": "69254", + "libelleAcheminement": "VALSONNE", + "nomCommune": "VALSONNE" }, { - "codePostal": "79500", - "codeCommune": "79174", - "libelleAcheminement": "MELLE", - "nomCommune": "MELLE" + "codePostal": "79800", + "codeCommune": "79201", + "libelleAcheminement": "PAMPROUX", + "nomCommune": "PAMPROUX" }, { - "codePostal": "72240", - "codeCommune": "72197", - "libelleAcheminement": "MEZIERES SOUS LAVARDIN", - "nomCommune": "MEZIERES SOUS LAVARDIN" + "codePostal": "66720", + "codeCommune": "66019", + "libelleAcheminement": "BELESTA", + "nomCommune": "BELESTA" }, { - "codePostal": "22650", - "codeCommune": "22209", - "libelleAcheminement": "BEAUSSAIS SUR MER", - "nomCommune": "BEAUSSAIS SUR MER" + "codePostal": "67110", + "codeCommune": "67536", + "libelleAcheminement": "WINDSTEIN", + "nomCommune": "WINDSTEIN" }, { - "codePostal": "77720", - "codeCommune": "77428", - "libelleAcheminement": "ST OUEN EN BRIE", - "nomCommune": "ST OUEN EN BRIE" + "codePostal": "79600", + "codeCommune": "79252", + "libelleAcheminement": "ST GENEROUX", + "nomCommune": "ST GENEROUX" }, { - "codePostal": "79190", - "codeCommune": "79175", - "libelleAcheminement": "MELLERAN", - "nomCommune": "MELLERAN" + "codePostal": "69670", + "codeCommune": "69255", + "libelleAcheminement": "VAUGNERAY", + "nomCommune": "VAUGNERAY" }, { - "codePostal": "72260", - "codeCommune": "72202", - "libelleAcheminement": "MONHOUDOU", - "nomCommune": "MONHOUDOU" + "codePostal": "79170", + "codeCommune": "79204", + "libelleAcheminement": "PERIGNE", + "nomCommune": "PERIGNE" }, { - "codePostal": "22260", - "codeCommune": "22212", - "libelleAcheminement": "PLOUEC DU TRIEUX", - "nomCommune": "PLOUEC DU TRIEUX" + "codePostal": "66760", + "codeCommune": "66025", + "libelleAcheminement": "BOURG MADAME", + "nomCommune": "BOURG MADAME" }, { - "codePostal": "77178", - "codeCommune": "77430", - "libelleAcheminement": "ST PATHUS", - "nomCommune": "ST PATHUS" + "codePostal": "67170", + "codeCommune": "67539", + "libelleAcheminement": "WINGERSHEIM LES QUATRE BANS", + "nomCommune": "WINGERSHEIM LES QUATRE BANS" }, { - "codePostal": "79240", - "codeCommune": "79179", - "libelleAcheminement": "MONCOUTANT SUR SEVRE", - "nomCommune": "MONCOUTANT SUR SEVRE" + "codePostal": "79400", + "codeCommune": "79253", + "libelleAcheminement": "ST GEORGES DE NOISNE", + "nomCommune": "ST GEORGES DE NOISNE" }, { - "codePostal": "72380", - "codeCommune": "72205", - "libelleAcheminement": "MONTBIZOT", - "nomCommune": "MONTBIZOT" + "codePostal": "69820", + "codeCommune": "69258", + "libelleAcheminement": "VAUXRENARD", + "nomCommune": "VAUXRENARD" }, { - "codePostal": "22470", - "codeCommune": "22214", - "libelleAcheminement": "PLOUEZEC", - "nomCommune": "PLOUEZEC" + "codePostal": "79700", + "codeCommune": "79207", + "libelleAcheminement": "LA PETITE BOISSIERE", + "nomCommune": "LA PETITE BOISSIERE" }, { - "codePostal": "77140", - "codeCommune": "77431", - "libelleAcheminement": "ST PIERRE LES NEMOURS", - "nomCommune": "ST PIERRE LES NEMOURS" + "codePostal": "66620", + "codeCommune": "66026", + "libelleAcheminement": "BROUILLA", + "nomCommune": "BROUILLA" }, { - "codePostal": "79800", - "codeCommune": "79184", - "libelleAcheminement": "LA MOTHE ST HERAY", - "nomCommune": "LA MOTHE ST HERAY" + "codePostal": "67130", + "codeCommune": "67543", + "libelleAcheminement": "WISCHES", + "nomCommune": "WISCHES" }, { - "codePostal": "72260", - "codeCommune": "72214", - "libelleAcheminement": "NAUVAY", - "nomCommune": "NAUVAY" + "codePostal": "79100", + "codeCommune": "79259", + "libelleAcheminement": "ST JEAN DE THOUARS", + "nomCommune": "ST JEAN DE THOUARS" }, { - "codePostal": "22820", - "codeCommune": "22218", - "libelleAcheminement": "PLOUGRESCANT", - "nomCommune": "PLOUGRESCANT" + "codePostal": "69910", + "codeCommune": "69267", + "libelleAcheminement": "VILLIE MORGON", + "nomCommune": "VILLIE MORGON" }, { - "codePostal": "77400", - "codeCommune": "77438", - "libelleAcheminement": "ST THIBAULT DES VIGNES", - "nomCommune": "ST THIBAULT DES VIGNES" + "codePostal": "79260", + "codeCommune": "79231", + "libelleAcheminement": "ROMANS", + "nomCommune": "ROMANS" }, { - "codePostal": "79130", - "codeCommune": "79190", - "libelleAcheminement": "NEUVY BOUIN", - "nomCommune": "NEUVY BOUIN" + "codePostal": "66300", + "codeCommune": "66033", + "libelleAcheminement": "CAMELAS", + "nomCommune": "CAMELAS" }, { - "codePostal": "72430", - "codeCommune": "72223", - "libelleAcheminement": "NOYEN SUR SARTHE", - "nomCommune": "NOYEN SUR SARTHE" + "codePostal": "67130", + "codeCommune": "67543", + "libelleAcheminement": "WISCHES", + "nomCommune": "WISCHES" }, { - "codePostal": "22150", - "codeCommune": "22219", - "libelleAcheminement": "PLOUGUENAST LANGAST", - "nomCommune": "PLOUGUENAST LANGAST" + "codePostal": "79600", + "codeCommune": "79268", + "libelleAcheminement": "ST LOUP LAMAIRE", + "nomCommune": "ST LOUP LAMAIRE" }, { - "codePostal": "77148", - "codeCommune": "77439", - "libelleAcheminement": "SALINS", - "nomCommune": "SALINS" + "codePostal": "69960", + "codeCommune": "69273", + "libelleAcheminement": "CORBAS", + "nomCommune": "CORBAS" }, { - "codePostal": "79000", - "codeCommune": "79191", - "libelleAcheminement": "NIORT", - "nomCommune": "NIORT" + "codePostal": "79380", + "codeCommune": "79236", + "libelleAcheminement": "ST ANDRE SUR SEVRE", + "nomCommune": "ST ANDRE SUR SEVRE" }, { - "codePostal": "72370", - "codeCommune": "72224", - "libelleAcheminement": "NUILLE LE JALAIS", - "nomCommune": "NUILLE LE JALAIS" + "codePostal": "66730", + "codeCommune": "66035", + "libelleAcheminement": "CAMPOUSSY", + "nomCommune": "CAMPOUSSY" }, { - "codePostal": "22110", - "codeCommune": "22220", - "libelleAcheminement": "PLOUGUERNEVEL", - "nomCommune": "PLOUGUERNEVEL" + "codePostal": "67160", + "codeCommune": "67544", + "libelleAcheminement": "WISSEMBOURG", + "nomCommune": "WISSEMBOURG" }, { - "codePostal": "77115", - "codeCommune": "77453", - "libelleAcheminement": "SIVRY COURTRY", - "nomCommune": "SIVRY COURTRY" + "codePostal": "79400", + "codeCommune": "79270", + "libelleAcheminement": "ST MAIXENT L ECOLE", + "nomCommune": "ST MAIXENT L ECOLE" }, { - "codePostal": "79100", - "codeCommune": "79196", - "libelleAcheminement": "PLAINE ET VALLEES", - "nomCommune": "PLAINE ET VALLEES" + "codePostal": "69330", + "codeCommune": "69280", + "libelleAcheminement": "JONS", + "nomCommune": "JONS" }, { - "codePostal": "72330", - "codeCommune": "72226", - "libelleAcheminement": "OIZE", - "nomCommune": "OIZE" + "codePostal": "79450", + "codeCommune": "79239", + "libelleAcheminement": "ST AUBIN LE CLOUD", + "nomCommune": "ST AUBIN LE CLOUD" }, { - "codePostal": "22580", - "codeCommune": "22222", - "libelleAcheminement": "PLOUHA", - "nomCommune": "PLOUHA" + "codePostal": "66360", + "codeCommune": "66036", + "libelleAcheminement": "CANAVEILLES", + "nomCommune": "CANAVEILLES" }, { - "codePostal": "77163", - "codeCommune": "77466", - "libelleAcheminement": "TIGEAUX", - "nomCommune": "TIGEAUX" + "codePostal": "67260", + "codeCommune": "67552", + "libelleAcheminement": "WOLFSKIRCHEN", + "nomCommune": "WOLFSKIRCHEN" }, { - "codePostal": "79390", - "codeCommune": "79197", - "libelleAcheminement": "OROUX", - "nomCommune": "OROUX" + "codePostal": "79290", + "codeCommune": "79277", + "libelleAcheminement": "ST MARTIN DE SANZAY", + "nomCommune": "ST MARTIN DE SANZAY" }, { - "codePostal": "72600", - "codeCommune": "72227", - "libelleAcheminement": "PANON", - "nomCommune": "PANON" + "codePostal": "69330", + "codeCommune": "69282", + "libelleAcheminement": "MEYZIEU", + "nomCommune": "MEYZIEU" }, { - "codePostal": "22200", - "codeCommune": "22223", - "libelleAcheminement": "PLOUISY", - "nomCommune": "PLOUISY" + "codePostal": "79500", + "codeCommune": "79251", + "libelleAcheminement": "MARCILLE", + "nomCommune": "MARCILLE" }, { - "codePostal": "77130", - "codeCommune": "77467", - "libelleAcheminement": "LA TOMBE", - "nomCommune": "LA TOMBE" + "codePostal": "66820", + "codeCommune": "66043", + "libelleAcheminement": "CASTEIL", + "nomCommune": "CASTEIL" }, { - "codePostal": "79800", - "codeCommune": "79217", - "libelleAcheminement": "PRAILLES LA COUARDE", - "nomCommune": "PRAILLES LA COUARDE" + "codePostal": "68210", + "codeCommune": "68006", + "libelleAcheminement": "BERNWILLER", + "nomCommune": "BERNWILLER" }, { - "codePostal": "72170", - "codeCommune": "72235", - "libelleAcheminement": "PIACE", - "nomCommune": "PIACE" + "codePostal": "79420", + "codeCommune": "79278", + "libelleAcheminement": "ST MARTIN DU FOUILLOUX", + "nomCommune": "ST MARTIN DU FOUILLOUX" }, { - "codePostal": "22300", - "codeCommune": "22224", - "libelleAcheminement": "PLOULEC H", - "nomCommune": "PLOULEC H" + "codePostal": "69780", + "codeCommune": "69283", + "libelleAcheminement": "MIONS", + "nomCommune": "MIONS" }, { - "codePostal": "77710", - "codeCommune": "77473", - "libelleAcheminement": "TREUZY LEVELAY", - "nomCommune": "TREUZY LEVELAY" + "codePostal": "79340", + "codeCommune": "79256", + "libelleAcheminement": "ST GERMIER", + "nomCommune": "ST GERMIER" }, { - "codePostal": "79130", - "codeCommune": "79226", - "libelleAcheminement": "LE RETAIL", - "nomCommune": "LE RETAIL" + "codePostal": "66500", + "codeCommune": "66045", + "libelleAcheminement": "CATLLAR", + "nomCommune": "CATLLAR" }, { - "codePostal": "72400", - "codeCommune": "72245", - "libelleAcheminement": "PREVAL", - "nomCommune": "PREVAL" + "codePostal": "68220", + "codeCommune": "68013", + "libelleAcheminement": "ATTENSCHWILLER", + "nomCommune": "ATTENSCHWILLER" }, { - "codePostal": "22860", - "codeCommune": "22233", - "libelleAcheminement": "PLOURIVO", - "nomCommune": "PLOURIVO" + "codePostal": "79150", + "codeCommune": "79280", + "libelleAcheminement": "ST MAURICE ETUSSON", + "nomCommune": "ST MAURICE ETUSSON" }, { - "codePostal": "77470", - "codeCommune": "77475", - "libelleAcheminement": "TRILPORT", - "nomCommune": "TRILPORT" + "codePostal": "69140", + "codeCommune": "69286", + "libelleAcheminement": "RILLIEUX LA PAPE", + "nomCommune": "RILLIEUX LA PAPE" }, { - "codePostal": "79450", - "codeCommune": "79239", - "libelleAcheminement": "ST AUBIN LE CLOUD", - "nomCommune": "ST AUBIN LE CLOUD" + "codePostal": "79160", + "codeCommune": "79263", + "libelleAcheminement": "ST LAURS", + "nomCommune": "ST LAURS" }, { - "codePostal": "72700", - "codeCommune": "72247", - "libelleAcheminement": "PRUILLE LE CHETIF", - "nomCommune": "PRUILLE LE CHETIF" + "codePostal": "66290", + "codeCommune": "66048", + "libelleAcheminement": "CERBERE", + "nomCommune": "CERBERE" }, { - "codePostal": "22170", - "codeCommune": "22234", - "libelleAcheminement": "PLOUVARA", - "nomCommune": "PLOUVARA" + "codePostal": "68870", + "codeCommune": "68021", + "libelleAcheminement": "BARTENHEIM", + "nomCommune": "BARTENHEIM" }, { - "codePostal": "77260", - "codeCommune": "77478", - "libelleAcheminement": "USSY SUR MARNE", - "nomCommune": "USSY SUR MARNE" + "codePostal": "79240", + "codeCommune": "79286", + "libelleAcheminement": "ST PAUL EN GATINE", + "nomCommune": "ST PAUL EN GATINE" }, { - "codePostal": "79150", - "codeCommune": "79242", - "libelleAcheminement": "VOULMENTIN", - "nomCommune": "VOULMENTIN" + "codePostal": "69124", + "codeCommune": "69299", + "libelleAcheminement": "COLOMBIER SAUGNIEU", + "nomCommune": "COLOMBIER SAUGNIEU" }, { - "codePostal": "72610", - "codeCommune": "72254", - "libelleAcheminement": "ROUESSE FONTAINE", - "nomCommune": "ROUESSE FONTAINE" + "codePostal": "79310", + "codeCommune": "79285", + "libelleAcheminement": "ST PARDOUX SOUTIERS", + "nomCommune": "ST PARDOUX SOUTIERS" }, { - "codePostal": "22290", - "codeCommune": "22236", - "libelleAcheminement": "PLUDUAL", - "nomCommune": "PLUDUAL" + "codePostal": "66500", + "codeCommune": "66051", + "libelleAcheminement": "CLARA VILLERACH", + "nomCommune": "CLARA VILLERACH" }, { - "codePostal": "77360", - "codeCommune": "77479", - "libelleAcheminement": "VAIRES SUR MARNE", - "nomCommune": "VAIRES SUR MARNE" + "codePostal": "68560", + "codeCommune": "68033", + "libelleAcheminement": "BETTENDORF", + "nomCommune": "BETTENDORF" }, { "codePostal": "79120", - "codeCommune": "79243", - "libelleAcheminement": "ST COUTANT", - "nomCommune": "ST COUTANT" + "codeCommune": "79297", + "libelleAcheminement": "STE SOLINE", + "nomCommune": "STE SOLINE" }, { - "codePostal": "72110", - "codeCommune": "72277", - "libelleAcheminement": "ST DENIS DES COUDRAIS", - "nomCommune": "ST DENIS DES COUDRAIS" + "codePostal": "69003", + "codeCommune": "69383", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 03" }, { - "codePostal": "22130", - "codeCommune": "22237", - "libelleAcheminement": "PLUDUNO", - "nomCommune": "PLUDUNO" + "codePostal": "79270", + "codeCommune": "79298", + "libelleAcheminement": "ST SYMPHORIEN", + "nomCommune": "ST SYMPHORIEN" }, { - "codePostal": "77580", - "codeCommune": "77484", - "libelleAcheminement": "VAUCOURTOIS", - "nomCommune": "VAUCOURTOIS" + "codePostal": "66190", + "codeCommune": "66053", + "libelleAcheminement": "COLLIOURE", + "nomCommune": "COLLIOURE" }, { - "codePostal": "79410", - "codeCommune": "79249", - "libelleAcheminement": "ST GELAIS", - "nomCommune": "ST GELAIS" + "codePostal": "68320", + "codeCommune": "68038", + "libelleAcheminement": "BISCHWIHR", + "nomCommune": "BISCHWIHR" }, { - "codePostal": "72130", - "codeCommune": "72282", - "libelleAcheminement": "ST GEORGES LE GAULTIER", - "nomCommune": "ST GEORGES LE GAULTIER" + "codePostal": "79190", + "codeCommune": "79307", + "libelleAcheminement": "SAUZE VAUSSAIS", + "nomCommune": "SAUZE VAUSSAIS" }, { - "codePostal": "22320", - "codeCommune": "22244", - "libelleAcheminement": "PLUSSULIEN", - "nomCommune": "PLUSSULIEN" + "codePostal": "69007", + "codeCommune": "69387", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 07" }, { - "codePostal": "77390", - "codeCommune": "77493", - "libelleAcheminement": "VERNEUIL L ETANG", - "nomCommune": "VERNEUIL L ETANG" + "codePostal": "79330", + "codeCommune": "79299", + "libelleAcheminement": "ST VARENT", + "nomCommune": "ST VARENT" }, { - "codePostal": "79330", - "codeCommune": "79250", - "libelleAcheminement": "STE GEMME", - "nomCommune": "STE GEMME" + "codePostal": "66130", + "codeCommune": "66055", + "libelleAcheminement": "CORBERE", + "nomCommune": "CORBERE" }, { - "codePostal": "72440", - "codeCommune": "72303", - "libelleAcheminement": "ST MICHEL DE CHAVAIGNES", - "nomCommune": "ST MICHEL DE CHAVAIGNES" + "codePostal": "68580", + "codeCommune": "68039", + "libelleAcheminement": "BISEL", + "nomCommune": "BISEL" }, { - "codePostal": "22120", - "codeCommune": "22246", - "libelleAcheminement": "POMMERET", - "nomCommune": "POMMERET" + "codePostal": "79210", + "codeCommune": "79334", + "libelleAcheminement": "VAL DU MIGNON", + "nomCommune": "VAL DU MIGNON" }, { - "codePostal": "77370", - "codeCommune": "77496", - "libelleAcheminement": "VIEUX CHAMPAGNE", - "nomCommune": "VIEUX CHAMPAGNE" + "codePostal": "70500", + "codeCommune": "70002", + "libelleAcheminement": "ABONCOURT GESINCOURT", + "nomCommune": "ABONCOURT GESINCOURT" }, { - "codePostal": "79500", - "codeCommune": "79251", - "libelleAcheminement": "MARCILLE", - "nomCommune": "MARCILLE" + "codePostal": "79800", + "codeCommune": "79316", + "libelleAcheminement": "SOUDAN", + "nomCommune": "SOUDAN" }, { - "codePostal": "72610", - "codeCommune": "72308", - "libelleAcheminement": "ST PATERNE LE CHEVAIN", - "nomCommune": "ST PATERNE LE CHEVAIN" + "codePostal": "66550", + "codeCommune": "66058", + "libelleAcheminement": "CORNEILLA LA RIVIERE", + "nomCommune": "CORNEILLA LA RIVIERE" }, { - "codePostal": "22100", - "codeCommune": "22259", - "libelleAcheminement": "QUEVERT", - "nomCommune": "QUEVERT" + "codePostal": "68210", + "codeCommune": "68050", + "libelleAcheminement": "BRECHAUMONT", + "nomCommune": "BRECHAUMONT" }, { - "codePostal": "77250", - "codeCommune": "77501", - "libelleAcheminement": "VILLECERF", - "nomCommune": "VILLECERF" + "codePostal": "79200", + "codeCommune": "79347", + "libelleAcheminement": "VIENNAY", + "nomCommune": "VIENNAY" }, { - "codePostal": "79600", - "codeCommune": "79252", - "libelleAcheminement": "ST GENEROUX", - "nomCommune": "ST GENEROUX" + "codePostal": "70800", + "codeCommune": "70008", + "libelleAcheminement": "AINVELLE", + "nomCommune": "AINVELLE" }, { - "codePostal": "72600", - "codeCommune": "72316", - "libelleAcheminement": "ST REMY DES MONTS", - "nomCommune": "ST REMY DES MONTS" + "codePostal": "79800", + "codeCommune": "79319", + "libelleAcheminement": "SOUVIGNE", + "nomCommune": "SOUVIGNE" }, { - "codePostal": "22390", - "codeCommune": "22271", - "libelleAcheminement": "ST ADRIEN", - "nomCommune": "ST ADRIEN" + "codePostal": "66760", + "codeCommune": "66062", + "libelleAcheminement": "DORRES", + "nomCommune": "DORRES" }, { - "codePostal": "77710", - "codeCommune": "77504", - "libelleAcheminement": "VILLEMARECHAL", - "nomCommune": "VILLEMARECHAL" + "codePostal": "68350", + "codeCommune": "68056", + "libelleAcheminement": "BRUNSTATT DIDENHEIM", + "nomCommune": "BRUNSTATT DIDENHEIM" }, { - "codePostal": "79210", - "codeCommune": "79257", - "libelleAcheminement": "ST HILAIRE LA PALUD", - "nomCommune": "ST HILAIRE LA PALUD" + "codePostal": "80320", + "codeCommune": "80002", + "libelleAcheminement": "ABLAINCOURT PRESSOIR", + "nomCommune": "ABLAINCOURT PRESSOIR" }, { - "codePostal": "72320", - "codeCommune": "72322", - "libelleAcheminement": "ST ULPHACE", - "nomCommune": "ST ULPHACE" + "codePostal": "70210", + "codeCommune": "70010", + "libelleAcheminement": "ALAINCOURT", + "nomCommune": "ALAINCOURT" }, { - "codePostal": "22530", - "codeCommune": "22285", - "libelleAcheminement": "ST CONNEC", - "nomCommune": "ST CONNEC" + "codePostal": "79100", + "codeCommune": "79329", + "libelleAcheminement": "THOUARS", + "nomCommune": "THOUARS" }, { - "codePostal": "77470", - "codeCommune": "77505", - "libelleAcheminement": "VILLEMAREUIL", - "nomCommune": "VILLEMAREUIL" + "codePostal": "66800", + "codeCommune": "66067", + "libelleAcheminement": "ERR", + "nomCommune": "ERR" }, { - "codePostal": "79310", - "codeCommune": "79271", - "libelleAcheminement": "ST MARC LA LANDE", - "nomCommune": "ST MARC LA LANDE" + "codePostal": "68210", + "codeCommune": "68057", + "libelleAcheminement": "BUETHWILLER", + "nomCommune": "BUETHWILLER" }, { - "codePostal": "72600", - "codeCommune": "72326", - "libelleAcheminement": "SAOSNES", - "nomCommune": "SAOSNES" + "codePostal": "80690", + "codeCommune": "80009", + "libelleAcheminement": "AILLY LE HAUT CLOCHER", + "nomCommune": "AILLY LE HAUT CLOCHER" }, { - "codePostal": "22720", - "codeCommune": "22289", - "libelleAcheminement": "ST FIACRE", - "nomCommune": "ST FIACRE" + "codePostal": "70100", + "codeCommune": "70018", + "libelleAcheminement": "ANCIER", + "nomCommune": "ANCIER" }, { - "codePostal": "77154", - "codeCommune": "77509", - "libelleAcheminement": "VILLENEUVE LES BORDES", - "nomCommune": "VILLENEUVE LES BORDES" + "codePostal": "79100", + "codeCommune": "79329", + "libelleAcheminement": "THOUARS", + "nomCommune": "THOUARS" }, { - "codePostal": "79400", - "codeCommune": "79276", - "libelleAcheminement": "ST MARTIN DE ST MAIXENT", - "nomCommune": "ST MARTIN DE ST MAIXENT" + "codePostal": "66500", + "codeCommune": "66074", + "libelleAcheminement": "EUS", + "nomCommune": "EUS" }, { - "codePostal": "72460", - "codeCommune": "72329", - "libelleAcheminement": "SAVIGNE L EVEQUE", - "nomCommune": "SAVIGNE L EVEQUE" + "codePostal": "68530", + "codeCommune": "68058", + "libelleAcheminement": "BUHL", + "nomCommune": "BUHL" }, { - "codePostal": "22800", - "codeCommune": "22291", - "libelleAcheminement": "ST GILDAS", - "nomCommune": "ST GILDAS" + "codePostal": "80240", + "codeCommune": "80014", + "libelleAcheminement": "AIZECOURT LE BAS", + "nomCommune": "AIZECOURT LE BAS" }, { - "codePostal": "77510", - "codeCommune": "77512", - "libelleAcheminement": "VILLENEUVE SUR BELLOT", - "nomCommune": "VILLENEUVE SUR BELLOT" + "codePostal": "70800", + "codeCommune": "70023", + "libelleAcheminement": "ANJEUX", + "nomCommune": "ANJEUX" }, { - "codePostal": "79310", - "codeCommune": "79285", - "libelleAcheminement": "ST PARDOUX SOUTIERS", - "nomCommune": "ST PARDOUX SOUTIERS" + "codePostal": "79100", + "codeCommune": "79331", + "libelleAcheminement": "TOURTENAY", + "nomCommune": "TOURTENAY" }, { - "codePostal": "72300", - "codeCommune": "72336", - "libelleAcheminement": "SOLESMES", - "nomCommune": "SOLESMES" + "codePostal": "66800", + "codeCommune": "66075", + "libelleAcheminement": "EYNE", + "nomCommune": "EYNE" }, { - "codePostal": "22290", - "codeCommune": "22293", - "libelleAcheminement": "ST GILLES LES BOIS", - "nomCommune": "ST GILLES LES BOIS" + "codePostal": "68480", + "codeCommune": "68067", + "libelleAcheminement": "COURTAVON", + "nomCommune": "COURTAVON" }, { - "codePostal": "77270", - "codeCommune": "77514", - "libelleAcheminement": "VILLEPARISIS", - "nomCommune": "VILLEPARISIS" + "codePostal": "80120", + "codeCommune": "80030", + "libelleAcheminement": "ARRY", + "nomCommune": "ARRY" }, { - "codePostal": "79330", - "codeCommune": "79299", - "libelleAcheminement": "ST VARENT", - "nomCommune": "ST VARENT" + "codePostal": "70100", + "codeCommune": "70026", + "libelleAcheminement": "ARC LES GRAY", + "nomCommune": "ARC LES GRAY" }, { - "codePostal": "72210", - "codeCommune": "72339", - "libelleAcheminement": "SOULIGNE FLACE", - "nomCommune": "SOULIGNE FLACE" + "codePostal": "79420", + "codeCommune": "79341", + "libelleAcheminement": "VAUTEBIS", + "nomCommune": "VAUTEBIS" }, { - "codePostal": "22460", - "codeCommune": "22300", - "libelleAcheminement": "ST HERVE", - "nomCommune": "ST HERVE" + "codePostal": "66730", + "codeCommune": "66076", + "libelleAcheminement": "FEILLUNS", + "nomCommune": "FEILLUNS" }, { - "codePostal": "77580", - "codeCommune": "77521", - "libelleAcheminement": "VILLIERS SUR MORIN", - "nomCommune": "VILLIERS SUR MORIN" + "codePostal": "68440", + "codeCommune": "68072", + "libelleAcheminement": "DIETWILLER", + "nomCommune": "DIETWILLER" }, { - "codePostal": "79800", - "codeCommune": "79303", - "libelleAcheminement": "SALLES", - "nomCommune": "SALLES" + "codePostal": "80560", + "codeCommune": "80038", + "libelleAcheminement": "AUCHONVILLERS", + "nomCommune": "AUCHONVILLERS" }, { - "codePostal": "72700", - "codeCommune": "72344", - "libelleAcheminement": "SPAY", - "nomCommune": "SPAY" + "codePostal": "70360", + "codeCommune": "70028", + "libelleAcheminement": "AROZ", + "nomCommune": "AROZ" }, { - "codePostal": "22630", - "codeCommune": "22306", - "libelleAcheminement": "ST JUDOCE", - "nomCommune": "ST JUDOCE" + "codePostal": "79310", + "codeCommune": "79345", + "libelleAcheminement": "VERRUYES", + "nomCommune": "VERRUYES" }, { - "codePostal": "77950", - "codeCommune": "77528", - "libelleAcheminement": "VOISENON", - "nomCommune": "VOISENON" + "codePostal": "66360", + "codeCommune": "66080", + "libelleAcheminement": "FONTPEDROUSE", + "nomCommune": "FONTPEDROUSE" }, { - "codePostal": "79240", - "codeCommune": "79309", - "libelleAcheminement": "SCILLE", - "nomCommune": "SCILLE" + "codePostal": "68720", + "codeCommune": "68077", + "libelleAcheminement": "EGLINGEN", + "nomCommune": "EGLINGEN" }, { - "codePostal": "72110", - "codeCommune": "72352", - "libelleAcheminement": "TERREHAULT", - "nomCommune": "TERREHAULT" + "codePostal": "80300", + "codeCommune": "80047", + "libelleAcheminement": "AVELUY", + "nomCommune": "AVELUY" }, { - "codePostal": "22320", - "codeCommune": "22313", - "libelleAcheminement": "ST MARTIN DES PRES", - "nomCommune": "ST MARTIN DES PRES" + "codePostal": "70110", + "codeCommune": "70031", + "libelleAcheminement": "ATHESANS ETROITEFONTAINE", + "nomCommune": "ATHESANS ETROITEFONTAINE" }, { - "codePostal": "77160", - "codeCommune": "77532", - "libelleAcheminement": "VULAINES LES PROVINS", - "nomCommune": "VULAINES LES PROVINS" + "codePostal": "79170", + "codeCommune": "79348", + "libelleAcheminement": "VILLEFOLLET", + "nomCommune": "VILLEFOLLET" }, { - "codePostal": "79800", - "codeCommune": "79319", - "libelleAcheminement": "SOUVIGNE", - "nomCommune": "SOUVIGNE" + "codePostal": "66210", + "codeCommune": "66081", + "libelleAcheminement": "FONTRABIOUSE", + "nomCommune": "FONTRABIOUSE" }, { - "codePostal": "72260", - "codeCommune": "72354", - "libelleAcheminement": "THOIGNE", - "nomCommune": "THOIGNE" + "codePostal": "68190", + "codeCommune": "68082", + "libelleAcheminement": "ENSISHEIM", + "nomCommune": "ENSISHEIM" }, { - "codePostal": "22980", - "codeCommune": "22317", - "libelleAcheminement": "ST MELOIR DES BOIS", - "nomCommune": "ST MELOIR DES BOIS" + "codePostal": "80140", + "codeCommune": "80048", + "libelleAcheminement": "AVESNES CHAUSSOY", + "nomCommune": "AVESNES CHAUSSOY" }, { - "codePostal": "78113", - "codeCommune": "78006", - "libelleAcheminement": "ADAINVILLE", - "nomCommune": "ADAINVILLE" + "codePostal": "70100", + "codeCommune": "70032", + "libelleAcheminement": "ATTRICOURT", + "nomCommune": "ATTRICOURT" }, { - "codePostal": "79360", - "codeCommune": "79334", - "libelleAcheminement": "VAL DU MIGNON", - "nomCommune": "VAL DU MIGNON" + "codePostal": "80560", + "codeCommune": "80003", + "libelleAcheminement": "ACHEUX EN AMIENOIS", + "nomCommune": "ACHEUX EN AMIENOIS" }, { - "codePostal": "72160", - "codeCommune": "72358", - "libelleAcheminement": "THORIGNE SUR DUE", - "nomCommune": "THORIGNE SUR DUE" + "codePostal": "66220", + "codeCommune": "66083", + "libelleAcheminement": "FOSSE", + "nomCommune": "FOSSE" }, { - "codePostal": "22160", - "codeCommune": "22320", - "libelleAcheminement": "ST NICODEME", - "nomCommune": "ST NICODEME" + "codePostal": "68990", + "codeCommune": "68101", + "libelleAcheminement": "GALFINGUE", + "nomCommune": "GALFINGUE" }, { - "codePostal": "78240", - "codeCommune": "78007", - "libelleAcheminement": "AIGREMONT", - "nomCommune": "AIGREMONT" + "codePostal": "80200", + "codeCommune": "80054", + "libelleAcheminement": "BARLEUX", + "nomCommune": "BARLEUX" }, { - "codePostal": "79120", - "codeCommune": "79336", - "libelleAcheminement": "VANCAIS", - "nomCommune": "VANCAIS" + "codePostal": "70190", + "codeCommune": "70036", + "libelleAcheminement": "AULX LES CROMARY", + "nomCommune": "AULX LES CROMARY" }, { - "codePostal": "72170", - "codeCommune": "72362", - "libelleAcheminement": "LE TRONCHET", - "nomCommune": "LE TRONCHET" + "codePostal": "80210", + "codeCommune": "80004", + "libelleAcheminement": "ACHEUX EN VIMEU", + "nomCommune": "ACHEUX EN VIMEU" }, { - "codePostal": "22100", - "codeCommune": "22339", - "libelleAcheminement": "TADEN", - "nomCommune": "TADEN" + "codePostal": "66740", + "codeCommune": "66093", + "libelleAcheminement": "LAROQUE DES ALBERES", + "nomCommune": "LAROQUE DES ALBERES" }, { - "codePostal": "78580", - "codeCommune": "78010", - "libelleAcheminement": "LES ALLUETS LE ROI", - "nomCommune": "LES ALLUETS LE ROI" + "codePostal": "68140", + "codeCommune": "68109", + "libelleAcheminement": "GRIESBACH AU VAL", + "nomCommune": "GRIESBACH AU VAL" }, { - "codePostal": "79340", - "codeCommune": "79339", - "libelleAcheminement": "VASLES", - "nomCommune": "VASLES" + "codePostal": "80300", + "codeCommune": "80059", + "libelleAcheminement": "BAZENTIN", + "nomCommune": "BAZENTIN" }, { - "codePostal": "72160", - "codeCommune": "72363", - "libelleAcheminement": "TUFFE VAL DE LA CHERONNE", - "nomCommune": "TUFFE VAL DE LA CHERONNE" + "codePostal": "70150", + "codeCommune": "70045", + "libelleAcheminement": "AVRIGNEY VIREY", + "nomCommune": "AVRIGNEY VIREY" }, { - "codePostal": "22140", - "codeCommune": "22340", - "libelleAcheminement": "TONQUEDEC", - "nomCommune": "TONQUEDEC" + "codePostal": "80370", + "codeCommune": "80005", + "libelleAcheminement": "AGENVILLE", + "nomCommune": "AGENVILLE" }, { - "codePostal": "78790", - "codeCommune": "78020", - "libelleAcheminement": "ARNOUVILLE LES MANTES", - "nomCommune": "ARNOUVILLE LES MANTES" + "codePostal": "66210", + "codeCommune": "66098", + "libelleAcheminement": "LA LLAGONNE", + "nomCommune": "LA LLAGONNE" }, { - "codePostal": "79420", - "codeCommune": "79341", - "libelleAcheminement": "VAUTEBIS", - "nomCommune": "VAUTEBIS" + "codePostal": "68420", + "codeCommune": "68111", + "libelleAcheminement": "GUEBERSCHWIHR", + "nomCommune": "GUEBERSCHWIHR" }, { - "codePostal": "72540", - "codeCommune": "72367", - "libelleAcheminement": "VALLON SUR GEE", - "nomCommune": "VALLON SUR GEE" + "codePostal": "80430", + "codeCommune": "80061", + "libelleAcheminement": "BEAUCAMPS LE JEUNE", + "nomCommune": "BEAUCAMPS LE JEUNE" }, { - "codePostal": "22980", - "codeCommune": "22342", - "libelleAcheminement": "TREBEDAN", - "nomCommune": "TREBEDAN" + "codePostal": "70190", + "codeCommune": "70050", + "libelleAcheminement": "LA BARRE", + "nomCommune": "LA BARRE" }, { - "codePostal": "78410", - "codeCommune": "78029", - "libelleAcheminement": "AUBERGENVILLE", - "nomCommune": "AUBERGENVILLE" + "codePostal": "80210", + "codeCommune": "80008", + "libelleAcheminement": "AIGNEVILLE", + "nomCommune": "AIGNEVILLE" }, { - "codePostal": "79240", - "codeCommune": "79342", - "libelleAcheminement": "VERNOUX EN GATINE", - "nomCommune": "VERNOUX EN GATINE" + "codePostal": "66300", + "codeCommune": "66101", + "libelleAcheminement": "LLUPIA", + "nomCommune": "LLUPIA" }, { - "codePostal": "72360", - "codeCommune": "72369", - "libelleAcheminement": "VERNEIL LE CHETIF", - "nomCommune": "VERNEIL LE CHETIF" + "codePostal": "68970", + "codeCommune": "68113", + "libelleAcheminement": "GUEMAR", + "nomCommune": "GUEMAR" }, { - "codePostal": "22510", - "codeCommune": "22346", - "libelleAcheminement": "TREDANIEL", - "nomCommune": "TREDANIEL" + "codePostal": "80170", + "codeCommune": "80067", + "libelleAcheminement": "BEAUFORT EN SANTERRE", + "nomCommune": "BEAUFORT EN SANTERRE" }, { - "codePostal": "78126", - "codeCommune": "78033", - "libelleAcheminement": "AULNAY SUR MAULDRE", - "nomCommune": "AULNAY SUR MAULDRE" + "codePostal": "70130", + "codeCommune": "70053", + "libelleAcheminement": "LES BATIES", + "nomCommune": "LES BATIES" }, { - "codePostal": "79170", - "codeCommune": "79346", - "libelleAcheminement": "LE VERT", - "nomCommune": "LE VERT" + "codePostal": "80250", + "codeCommune": "80010", + "libelleAcheminement": "AILLY SUR NOYE", + "nomCommune": "AILLY SUR NOYE" }, { - "codePostal": "72210", - "codeCommune": "72381", - "libelleAcheminement": "VOIVRES LES LE MANS", - "nomCommune": "VOIVRES LES LE MANS" + "codePostal": "66320", + "codeCommune": "66103", + "libelleAcheminement": "MARQUIXANES", + "nomCommune": "MARQUIXANES" }, { - "codePostal": "22590", - "codeCommune": "22356", - "libelleAcheminement": "TREGOMEUR", - "nomCommune": "TREGOMEUR" + "codePostal": "68116", + "codeCommune": "68115", + "libelleAcheminement": "GUEWENHEIM", + "nomCommune": "GUEWENHEIM" }, { - "codePostal": "78770", - "codeCommune": "78034", - "libelleAcheminement": "AUTEUIL", - "nomCommune": "AUTEUIL" + "codePostal": "80870", + "codeCommune": "80076", + "libelleAcheminement": "BEHEN", + "nomCommune": "BEHEN" }, { - "codePostal": "79170", - "codeCommune": "79348", - "libelleAcheminement": "VILLEFOLLET", - "nomCommune": "VILLEFOLLET" + "codePostal": "70100", + "codeCommune": "70058", + "libelleAcheminement": "BEAUJEU ET QUITTEUR", + "nomCommune": "BEAUJEU ST VALLIER PIERREJUX QUITTEUR" }, { - "codePostal": "73260", - "codeCommune": "73003", - "libelleAcheminement": "GRAND AIGUEBLANCHE", - "nomCommune": "GRAND AIGUEBLANCHE" + "codePostal": "80470", + "codeCommune": "80011", + "libelleAcheminement": "AILLY SUR SOMME", + "nomCommune": "AILLY SUR SOMME" }, { - "codePostal": "22950", - "codeCommune": "22360", - "libelleAcheminement": "TREGUEUX", - "nomCommune": "TREGUEUX" + "codePostal": "66500", + "codeCommune": "66104", + "libelleAcheminement": "LOS MASOS", + "nomCommune": "LOS MASOS" }, { - "codePostal": "78580", - "codeCommune": "78049", - "libelleAcheminement": "BAZEMONT", - "nomCommune": "BAZEMONT" + "codePostal": "68440", + "codeCommune": "68118", + "libelleAcheminement": "HABSHEIM", + "nomCommune": "HABSHEIM" }, { - "codePostal": "79360", - "codeCommune": "79350", - "libelleAcheminement": "VILLIERS EN BOIS", - "nomCommune": "VILLIERS EN BOIS" + "codePostal": "80200", + "codeCommune": "80080", + "libelleAcheminement": "BELLOY EN SANTERRE", + "nomCommune": "BELLOY EN SANTERRE" }, { - "codePostal": "73340", - "codeCommune": "73004", - "libelleAcheminement": "AILLON LE JEUNE", - "nomCommune": "AILLON LE JEUNE" + "codePostal": "70150", + "codeCommune": "70060", + "libelleAcheminement": "BEAUMOTTE LES PIN", + "nomCommune": "BEAUMOTTE LES PIN" }, { - "codePostal": "22220", - "codeCommune": "22362", - "libelleAcheminement": "TREGUIER", - "nomCommune": "TREGUIER" + "codePostal": "80270", + "codeCommune": "80013", + "libelleAcheminement": "AIRAINES", + "nomCommune": "AIRAINES" }, { - "codePostal": "78660", - "codeCommune": "78071", - "libelleAcheminement": "BOINVILLE LE GAILLARD", - "nomCommune": "BOINVILLE LE GAILLARD" + "codePostal": "66210", + "codeCommune": "66105", + "libelleAcheminement": "MATEMALE", + "nomCommune": "MATEMALE" }, { - "codePostal": "79310", - "codeCommune": "79354", - "libelleAcheminement": "VOUHE", - "nomCommune": "VOUHE" + "codePostal": "68720", + "codeCommune": "68127", + "libelleAcheminement": "HEIDWILLER", + "nomCommune": "HEIDWILLER" }, { - "codePostal": "73220", - "codeCommune": "73007", - "libelleAcheminement": "AITON", - "nomCommune": "AITON" + "codePostal": "80120", + "codeCommune": "80087", + "libelleAcheminement": "BERNAY EN PONTHIEU", + "nomCommune": "BERNAY EN PONTHIEU" }, { - "codePostal": "22250", - "codeCommune": "22369", - "libelleAcheminement": "TREMEUR", - "nomCommune": "TREMEUR" + "codePostal": "70290", + "codeCommune": "70061", + "libelleAcheminement": "BELFAHY", + "nomCommune": "BELFAHY" }, { - "codePostal": "78910", - "codeCommune": "78076", - "libelleAcheminement": "BOISSETS", - "nomCommune": "BOISSETS" + "codePostal": "80090", + "codeCommune": "80021", + "libelleAcheminement": "AMIENS", + "nomCommune": "AMIENS" }, { - "codePostal": "79230", - "codeCommune": "79355", - "libelleAcheminement": "VOUILLE", - "nomCommune": "VOUILLE" + "codePostal": "66210", + "codeCommune": "66117", + "libelleAcheminement": "MONT LOUIS", + "nomCommune": "MONT LOUIS" }, { - "codePostal": "73300", - "codeCommune": "73012", - "libelleAcheminement": "ALBIEZ LE JEUNE", - "nomCommune": "ALBIEZ LE JEUNE" + "codePostal": "68560", + "codeCommune": "68128", + "libelleAcheminement": "HEIMERSDORF", + "nomCommune": "HEIMERSDORF" }, { - "codePostal": "22440", - "codeCommune": "22372", - "libelleAcheminement": "TREMUSON", - "nomCommune": "TREMUSON" + "codePostal": "80110", + "codeCommune": "80094", + "libelleAcheminement": "BERTEAUCOURT LES THENNES", + "nomCommune": "BERTEAUCOURT LES THENNES" }, { - "codePostal": "78610", - "codeCommune": "78108", - "libelleAcheminement": "LES BREVIAIRES", - "nomCommune": "LES BREVIAIRES" + "codePostal": "70270", + "codeCommune": "70062", + "libelleAcheminement": "BELMONT", + "nomCommune": "BELMONT" }, { - "codePostal": "80370", - "codeCommune": "80005", - "libelleAcheminement": "AGENVILLE", - "nomCommune": "AGENVILLE" + "codePostal": "80470", + "codeCommune": "80024", + "libelleAcheminement": "ARGOEUVES", + "nomCommune": "ARGOEUVES" }, { - "codePostal": "73300", - "codeCommune": "73013", - "libelleAcheminement": "ALBIEZ MONTROND", - "nomCommune": "ALBIEZ MONTROND" + "codePostal": "66720", + "codeCommune": "66118", + "libelleAcheminement": "MONTNER", + "nomCommune": "MONTNER" }, { - "codePostal": "22340", - "codeCommune": "22373", - "libelleAcheminement": "TREOGAN", - "nomCommune": "TREOGAN" + "codePostal": "68990", + "codeCommune": "68129", + "libelleAcheminement": "HEIMSBRUNN", + "nomCommune": "HEIMSBRUNN" }, { - "codePostal": "78830", - "codeCommune": "78120", - "libelleAcheminement": "BULLION", - "nomCommune": "BULLION" + "codePostal": "80190", + "codeCommune": "80097", + "libelleAcheminement": "BETHENCOURT SUR SOMME", + "nomCommune": "BETHENCOURT SUR SOMME" + }, + { + "codePostal": "70150", + "codeCommune": "70075", + "libelleAcheminement": "BONBOILLON", + "nomCommune": "BONBOILLON" }, { "codePostal": "80140", @@ -201132,382 +201078,388 @@ "nomCommune": "ARGUEL" }, { - "codePostal": "73110", - "codeCommune": "73021", - "libelleAcheminement": "ARVILLARD", - "nomCommune": "ARVILLARD" + "codePostal": "66500", + "codeCommune": "66122", + "libelleAcheminement": "NOHEDES", + "nomCommune": "NOHEDES" }, { - "codePostal": "22660", - "codeCommune": "22379", - "libelleAcheminement": "TREVOU TREGUIGNEC", - "nomCommune": "TREVOU TREGUIGNEC" + "codePostal": "68130", + "codeCommune": "68131", + "libelleAcheminement": "HEIWILLER", + "nomCommune": "HEIWILLER" }, { - "codePostal": "78117", - "codeCommune": "78143", - "libelleAcheminement": "CHATEAUFORT", - "nomCommune": "CHATEAUFORT" + "codePostal": "80200", + "codeCommune": "80102", + "libelleAcheminement": "BIACHES", + "nomCommune": "BIACHES" }, { - "codePostal": "80110", - "codeCommune": "80035", - "libelleAcheminement": "AUBERCOURT", - "nomCommune": "AUBERCOURT" + "codePostal": "70100", + "codeCommune": "70080", + "libelleAcheminement": "BOUHANS ET FEURG", + "nomCommune": "BOUHANS ET FEURG" }, { - "codePostal": "73240", - "codeCommune": "73025", - "libelleAcheminement": "AVRESSIEUX", - "nomCommune": "AVRESSIEUX" + "codePostal": "80910", + "codeCommune": "80031", + "libelleAcheminement": "ARVILLERS", + "nomCommune": "ARVILLERS" }, { - "codePostal": "23700", - "codeCommune": "23005", - "libelleAcheminement": "ARFEUILLE CHATAIN", - "nomCommune": "ARFEUILLE CHATAIN" + "codePostal": "66600", + "codeCommune": "66127", + "libelleAcheminement": "OPOUL PERILLOS", + "nomCommune": "OPOUL PERILLOS" + }, + { + "codePostal": "68580", + "codeCommune": "68137", + "libelleAcheminement": "HINDLINGEN", + "nomCommune": "HINDLINGEN" }, { - "codePostal": "78910", - "codeCommune": "78163", - "libelleAcheminement": "CIVRY LA FORET", - "nomCommune": "CIVRY LA FORET" + "codePostal": "80150", + "codeCommune": "80109", + "libelleAcheminement": "LE BOISLE", + "nomCommune": "LE BOISLE" }, { - "codePostal": "80110", - "codeCommune": "80037", - "libelleAcheminement": "AUBVILLERS", - "nomCommune": "AUBVILLERS" + "codePostal": "70200", + "codeCommune": "70081", + "libelleAcheminement": "BOUHANS LES LURE", + "nomCommune": "BOUHANS LES LURE" }, { - "codePostal": "73230", - "codeCommune": "73030", - "libelleAcheminement": "BARBY", - "nomCommune": "BARBY" + "codePostal": "80140", + "codeCommune": "80040", + "libelleAcheminement": "AUMATRE", + "nomCommune": "AUMATRE" }, { - "codePostal": "23170", - "codeCommune": "23009", - "libelleAcheminement": "AUGE", - "nomCommune": "AUGE" + "codePostal": "66360", + "codeCommune": "66128", + "libelleAcheminement": "OREILLA", + "nomCommune": "OREILLA" }, { - "codePostal": "78113", - "codeCommune": "78171", - "libelleAcheminement": "CONDE SUR VESGRE", - "nomCommune": "CONDE SUR VESGRE" + "codePostal": "68140", + "codeCommune": "68142", + "libelleAcheminement": "HOHROD", + "nomCommune": "HOHROD" }, { - "codePostal": "80560", - "codeCommune": "80043", - "libelleAcheminement": "AUTHIE", - "nomCommune": "AUTHIE" + "codePostal": "80200", + "codeCommune": "80115", + "libelleAcheminement": "BOUCHAVESNES BERGEN", + "nomCommune": "BOUCHAVESNES BERGEN" }, { - "codePostal": "73480", - "codeCommune": "73047", - "libelleAcheminement": "BONNEVAL SUR ARC", - "nomCommune": "BONNEVAL SUR ARC" + "codePostal": "70190", + "codeCommune": "70084", + "libelleAcheminement": "BOULOT", + "nomCommune": "BOULOT" }, { - "codePostal": "23210", - "codeCommune": "23010", - "libelleAcheminement": "AUGERES", - "nomCommune": "AUGERES" + "codePostal": "80640", + "codeCommune": "80041", + "libelleAcheminement": "AUMONT", + "nomCommune": "AUMONT" }, { - "codePostal": "78720", - "codeCommune": "78193", - "libelleAcheminement": "DAMPIERRE EN YVELINES", - "nomCommune": "DAMPIERRE EN YVELINES" + "codePostal": "66210", + "codeCommune": "66142", + "libelleAcheminement": "PLANES", + "nomCommune": "PLANES" }, { - "codePostal": "80270", - "codeCommune": "80046", - "libelleAcheminement": "AVELESGES", - "nomCommune": "AVELESGES" + "codePostal": "68320", + "codeCommune": "68143", + "libelleAcheminement": "PORTE DU RIED", + "nomCommune": "PORTE DU RIED" }, { - "codePostal": "73110", - "codeCommune": "73052", - "libelleAcheminement": "BOURGET EN HUILE", - "nomCommune": "BOURGET EN HUILE" + "codePostal": "80910", + "codeCommune": "80116", + "libelleAcheminement": "BOUCHOIR", + "nomCommune": "BOUCHOIR" }, { - "codePostal": "23400", - "codeCommune": "23012", - "libelleAcheminement": "AURIAT", - "nomCommune": "AURIAT" + "codePostal": "70190", + "codeCommune": "70088", + "libelleAcheminement": "BOURGUIGNON LES LA CHARITE", + "nomCommune": "BOURGUIGNON LES LA CHARITE" }, { - "codePostal": "78810", - "codeCommune": "78196", - "libelleAcheminement": "DAVRON", - "nomCommune": "DAVRON" + "codePostal": "80490", + "codeCommune": "80051", + "libelleAcheminement": "BAILLEUL", + "nomCommune": "BAILLEUL" }, { - "codePostal": "80500", - "codeCommune": "80049", - "libelleAcheminement": "AYENCOURT LE MONCHEL", - "nomCommune": "AYENCOURT" + "codePostal": "66230", + "codeCommune": "66150", + "libelleAcheminement": "PRATS DE MOLLO LA PRESTE", + "nomCommune": "PRATS DE MOLLO LA PRESTE" }, { - "codePostal": "73350", - "codeCommune": "73055", - "libelleAcheminement": "BOZEL", - "nomCommune": "BOZEL" + "codePostal": "68490", + "codeCommune": "68144", + "libelleAcheminement": "HOMBOURG", + "nomCommune": "HOMBOURG" }, { - "codePostal": "23260", - "codeCommune": "23019", - "libelleAcheminement": "BEISSAT", - "nomCommune": "BEISSAT" + "codePostal": "80830", + "codeCommune": "80117", + "libelleAcheminement": "BOUCHON", + "nomCommune": "BOUCHON" }, { - "codePostal": "78125", - "codeCommune": "78209", - "libelleAcheminement": "EMANCE", - "nomCommune": "EMANCE" + "codePostal": "70120", + "codeCommune": "70089", + "libelleAcheminement": "BOURGUIGNON LES MOREY", + "nomCommune": "BOURGUIGNON LES MOREY" }, { - "codePostal": "80480", - "codeCommune": "80050", - "libelleAcheminement": "BACOUEL SUR SELLE", - "nomCommune": "BACOUEL SUR SELLE" + "codePostal": "80700", + "codeCommune": "80053", + "libelleAcheminement": "BALATRE", + "nomCommune": "BALATRE" }, { - "codePostal": "73190", - "codeCommune": "73064", - "libelleAcheminement": "CHALLES LES EAUX", - "nomCommune": "CHALLES LES EAUX" + "codePostal": "66730", + "codeCommune": "66151", + "libelleAcheminement": "PRATS DE SOURNIA", + "nomCommune": "PRATS DE SOURNIA" }, { - "codePostal": "23190", - "codeCommune": "23020", - "libelleAcheminement": "BELLEGARDE EN MARCHE", - "nomCommune": "BELLEGARDE EN MARCHE" + "codePostal": "68180", + "codeCommune": "68145", + "libelleAcheminement": "HORBOURG WIHR", + "nomCommune": "HORBOURG WIHR" }, { - "codePostal": "78680", - "codeCommune": "78217", - "libelleAcheminement": "EPONE", - "nomCommune": "EPONE" + "codePostal": "80310", + "codeCommune": "80123", + "libelleAcheminement": "BOURDON", + "nomCommune": "BOURDON" }, { - "codePostal": "80300", - "codeCommune": "80052", - "libelleAcheminement": "BAIZIEUX", - "nomCommune": "BAIZIEUX" + "codePostal": "70300", + "codeCommune": "70093", + "libelleAcheminement": "BREUCHES", + "nomCommune": "BREUCHES" }, { - "codePostal": "73390", - "codeCommune": "73069", - "libelleAcheminement": "CHAMOUX SUR GELON", - "nomCommune": "CHAMOUX SUR GELON" + "codePostal": "80170", + "codeCommune": "80058", + "libelleAcheminement": "BAYONVILLERS", + "nomCommune": "BAYONVILLERS" }, { - "codePostal": "23210", - "codeCommune": "23021", - "libelleAcheminement": "BENEVENT L ABBAYE", - "nomCommune": "BENEVENT L ABBAYE" + "codePostal": "66220", + "codeCommune": "66152", + "libelleAcheminement": "PRUGNANES", + "nomCommune": "PRUGNANES" }, { - "codePostal": "78690", - "codeCommune": "78220", - "libelleAcheminement": "LES ESSARTS LE ROI", - "nomCommune": "LES ESSARTS LE ROI" + "codePostal": "68130", + "codeCommune": "68148", + "libelleAcheminement": "HUNDSBACH", + "nomCommune": "HUNDSBACH" }, { - "codePostal": "80200", - "codeCommune": "80054", - "libelleAcheminement": "BARLEUX", - "nomCommune": "BARLEUX" + "codePostal": "80300", + "codeCommune": "80129", + "libelleAcheminement": "BOUZINCOURT", + "nomCommune": "BOUZINCOURT" }, { - "codePostal": "73630", - "codeCommune": "73081", - "libelleAcheminement": "LE CHATELARD", - "nomCommune": "LE CHATELARD" + "codePostal": "70280", + "codeCommune": "70094", + "libelleAcheminement": "BREUCHOTTE", + "nomCommune": "BREUCHOTTE" }, { - "codePostal": "23200", - "codeCommune": "23028", - "libelleAcheminement": "BOSROGER", - "nomCommune": "BOSROGER" + "codePostal": "80260", + "codeCommune": "80066", + "libelleAcheminement": "BEAUCOURT SUR L HALLUE", + "nomCommune": "BEAUCOURT SUR L HALLUE" }, { - "codePostal": "78620", - "codeCommune": "78224", - "libelleAcheminement": "L ETANG LA VILLE", - "nomCommune": "L ETANG LA VILLE" + "codePostal": "66720", + "codeCommune": "66158", + "libelleAcheminement": "RASIGUERES", + "nomCommune": "RASIGUERES" }, { - "codePostal": "80560", - "codeCommune": "80057", - "libelleAcheminement": "BAYENCOURT", - "nomCommune": "BAYENCOURT" + "codePostal": "68330", + "codeCommune": "68149", + "libelleAcheminement": "HUNINGUE", + "nomCommune": "HUNINGUE" }, { - "codePostal": "73800", - "codeCommune": "73082", - "libelleAcheminement": "LA CHAVANNE", - "nomCommune": "LA CHAVANNE" + "codePostal": "80440", + "codeCommune": "80131", + "libelleAcheminement": "BOVES", + "nomCommune": "BOVES" }, { - "codePostal": "23600", - "codeCommune": "23031", - "libelleAcheminement": "BOUSSAC", - "nomCommune": "BOUSSAC" + "codePostal": "70140", + "codeCommune": "70101", + "libelleAcheminement": "BROYE AUBIGNEY MONTSEUGNY", + "nomCommune": "BROYE AUBIGNEY MONTSEUGNY" }, { - "codePostal": "78410", - "codeCommune": "78230", - "libelleAcheminement": "LA FALAISE", - "nomCommune": "LA FALAISE" + "codePostal": "80630", + "codeCommune": "80071", + "libelleAcheminement": "BEAUVAL", + "nomCommune": "BEAUVAL" }, { - "codePostal": "80430", - "codeCommune": "80061", - "libelleAcheminement": "BEAUCAMPS LE JEUNE", - "nomCommune": "BEAUCAMPS LE JEUNE" + "codePostal": "66210", + "codeCommune": "66159", + "libelleAcheminement": "REAL", + "nomCommune": "REAL" }, { - "codePostal": "73590", - "codeCommune": "73088", - "libelleAcheminement": "COHENNOZ", - "nomCommune": "COHENNOZ" + "codePostal": "68420", + "codeCommune": "68150", + "libelleAcheminement": "HUSSEREN LES CHATEAUX", + "nomCommune": "HUSSEREN LES CHATEAUX" }, { - "codePostal": "23700", - "codeCommune": "23034", - "libelleAcheminement": "BROUSSE", - "nomCommune": "BROUSSE" + "codePostal": "80110", + "codeCommune": "80132", + "libelleAcheminement": "BRACHES", + "nomCommune": "BRACHES" }, { - "codePostal": "78810", - "codeCommune": "78233", - "libelleAcheminement": "FEUCHEROLLES", - "nomCommune": "FEUCHEROLLES" + "codePostal": "70140", + "codeCommune": "70101", + "libelleAcheminement": "BROYE AUBIGNEY MONTSEUGNY", + "nomCommune": "BROYE AUBIGNEY MONTSEUGNY" }, { - "codePostal": "80300", - "codeCommune": "80065", - "libelleAcheminement": "BEAUCOURT SUR L ANCRE", - "nomCommune": "BEAUCOURT SUR L ANCRE" + "codePostal": "80500", + "codeCommune": "80074", + "libelleAcheminement": "BECQUIGNY", + "nomCommune": "BECQUIGNY" }, { - "codePostal": "73800", - "codeCommune": "73096", - "libelleAcheminement": "CRUET", - "nomCommune": "CRUET" + "codePostal": "66800", + "codeCommune": "66167", + "libelleAcheminement": "SAILLAGOUSE", + "nomCommune": "SAILLAGOUSE" }, { - "codePostal": "23700", - "codeCommune": "23037", - "libelleAcheminement": "BUSSIERE NOUVELLE", - "nomCommune": "BUSSIERE NOUVELLE" + "codePostal": "68230", + "codeCommune": "68161", + "libelleAcheminement": "KATZENTHAL", + "nomCommune": "KATZENTHAL" }, { - "codePostal": "78440", - "codeCommune": "78246", - "libelleAcheminement": "FONTENAY ST PERE", - "nomCommune": "FONTENAY ST PERE" + "codePostal": "80200", + "codeCommune": "80141", + "libelleAcheminement": "BRIE", + "nomCommune": "BRIE" }, { - "codePostal": "80170", - "codeCommune": "80067", - "libelleAcheminement": "BEAUFORT EN SANTERRE", - "nomCommune": "BEAUFORT EN SANTERRE" + "codePostal": "70700", + "codeCommune": "70104", + "libelleAcheminement": "BUCEY LES GY", + "nomCommune": "BUCEY LES GY" }, { - "codePostal": "73630", - "codeCommune": "73101", - "libelleAcheminement": "DOUCY EN BAUGES", - "nomCommune": "DOUCY EN BAUGES" + "codePostal": "80260", + "codeCommune": "80077", + "libelleAcheminement": "BEHENCOURT", + "nomCommune": "BEHENCOURT" }, { - "codePostal": "23350", - "codeCommune": "23041", - "libelleAcheminement": "LA CELLETTE", - "nomCommune": "LA CELLETTE" + "codePostal": "66300", + "codeCommune": "66170", + "libelleAcheminement": "STE COLOMBE DE LA COMMANDERIE", + "nomCommune": "STE COLOMBE DE LA COMMANDERIE" }, { - "codePostal": "78950", - "codeCommune": "78263", - "libelleAcheminement": "GAMBAIS", - "nomCommune": "GAMBAIS" + "codePostal": "68240", + "codeCommune": "68162", + "libelleAcheminement": "KAYSERSBERG VIGNOBLE", + "nomCommune": "KAYSERSBERG VIGNOBLE" }, { - "codePostal": "80370", - "codeCommune": "80068", - "libelleAcheminement": "BEAUMETZ", - "nomCommune": "BEAUMETZ" + "codePostal": "80132", + "codeCommune": "80149", + "libelleAcheminement": "BUIGNY ST MACLOU", + "nomCommune": "BUIGNY ST MACLOU" }, { - "codePostal": "73630", - "codeCommune": "73106", - "libelleAcheminement": "ECOLE", - "nomCommune": "ECOLE" + "codePostal": "70190", + "codeCommune": "70107", + "libelleAcheminement": "BUSSIERES", + "nomCommune": "BUSSIERES" }, { - "codePostal": "23430", - "codeCommune": "23056", - "libelleAcheminement": "CHATELUS LE MARCHEIX", - "nomCommune": "CHATELUS LE MARCHEIX" + "codePostal": "80140", + "codeCommune": "80084", + "libelleAcheminement": "BERMESNIL", + "nomCommune": "BERMESNIL" }, { - "codePostal": "78890", - "codeCommune": "78265", - "libelleAcheminement": "GARANCIERES", - "nomCommune": "GARANCIERES" + "codePostal": "66170", + "codeCommune": "66173", + "libelleAcheminement": "ST FELIU D AMONT", + "nomCommune": "ST FELIU D AMONT" }, { - "codePostal": "80132", - "codeCommune": "80078", - "libelleAcheminement": "BELLANCOURT", - "nomCommune": "BELLANCOURT" + "codePostal": "68290", + "codeCommune": "68167", + "libelleAcheminement": "KIRCHBERG", + "nomCommune": "KIRCHBERG" }, { - "codePostal": "73220", - "codeCommune": "73109", - "libelleAcheminement": "EPIERRE", - "nomCommune": "EPIERRE" + "codePostal": "80200", + "codeCommune": "80150", + "libelleAcheminement": "BUIRE COURCELLES", + "nomCommune": "BUIRE COURCELLES" }, { - "codePostal": "23800", - "codeCommune": "23065", - "libelleAcheminement": "COLONDANNES", - "nomCommune": "COLONDANNES" + "codePostal": "70500", + "codeCommune": "70112", + "libelleAcheminement": "CEMBOING", + "nomCommune": "CEMBOING" }, { - "codePostal": "78930", - "codeCommune": "78281", - "libelleAcheminement": "GOUSSONVILLE", - "nomCommune": "GOUSSONVILLE" + "codePostal": "80370", + "codeCommune": "80086", + "libelleAcheminement": "BERNAVILLE", + "nomCommune": "BERNAVILLE" }, { - "codePostal": "80120", - "codeCommune": "80087", - "libelleAcheminement": "BERNAY EN PONTHIEU", - "nomCommune": "BERNAY EN PONTHIEU" + "codePostal": "66130", + "codeCommune": "66185", + "libelleAcheminement": "ST MICHEL DE LLOTES", + "nomCommune": "ST MICHEL DE LLOTES" }, { - "codePostal": "73300", - "codeCommune": "73116", - "libelleAcheminement": "FONTCOUVERTE LA TOUSSUIRE", - "nomCommune": "FONTCOUVERTE LA TOUSSUIRE" + "codePostal": "68580", + "codeCommune": "68176", + "libelleAcheminement": "LARGITZEN", + "nomCommune": "LARGITZEN" }, { - "codePostal": "23140", - "codeCommune": "23072", - "libelleAcheminement": "DOMEYROT", - "nomCommune": "DOMEYROT" + "codePostal": "80170", + "codeCommune": "80162", + "libelleAcheminement": "CAIX", + "nomCommune": "CAIX" }, { - "codePostal": "78440", - "codeCommune": "78296", - "libelleAcheminement": "GUITRANCOURT", - "nomCommune": "GUITRANCOURT" + "codePostal": "70600", + "codeCommune": "70122", + "libelleAcheminement": "CHAMPLITTE", + "nomCommune": "CHAMPLITTE" }, { "codePostal": "80240", @@ -201516,1966 +201468,1966 @@ "nomCommune": "BERNES" }, { - "codePostal": "73500", - "codeCommune": "73119", - "libelleAcheminement": "FRENEY", - "nomCommune": "FRENEY" + "codePostal": "66570", + "codeCommune": "66186", + "libelleAcheminement": "ST NAZAIRE", + "nomCommune": "ST NAZAIRE" }, { - "codePostal": "23800", - "codeCommune": "23075", - "libelleAcheminement": "DUN LE PALESTEL", - "nomCommune": "DUN LE PALESTEL" + "codePostal": "68610", + "codeCommune": "68177", + "libelleAcheminement": "LAUTENBACH", + "nomCommune": "LAUTENBACH" }, { - "codePostal": "78280", - "codeCommune": "78297", - "libelleAcheminement": "GUYANCOURT", - "nomCommune": "GUYANCOURT" + "codePostal": "80260", + "codeCommune": "80173", + "libelleAcheminement": "CARDONNETTE", + "nomCommune": "CARDONNETTE" }, { - "codePostal": "80620", - "codeCommune": "80089", - "libelleAcheminement": "BERNEUIL", - "nomCommune": "BERNEUIL" + "codePostal": "70000", + "codeCommune": "70134", + "libelleAcheminement": "CHARIEZ", + "nomCommune": "CHARIEZ" }, { - "codePostal": "73200", - "codeCommune": "73124", - "libelleAcheminement": "GILLY SUR ISERE", - "nomCommune": "GILLY SUR ISERE" + "codePostal": "80200", + "codeCommune": "80090", + "libelleAcheminement": "BERNY EN SANTERRE", + "nomCommune": "BERNY EN SANTERRE" }, { - "codePostal": "23110", - "codeCommune": "23076", - "libelleAcheminement": "EVAUX LES BAINS", - "nomCommune": "EVAUX LES BAINS" + "codePostal": "66360", + "codeCommune": "66191", + "libelleAcheminement": "SANSA", + "nomCommune": "SANSA" }, { - "codePostal": "78250", - "codeCommune": "78299", - "libelleAcheminement": "HARDRICOURT", - "nomCommune": "HARDRICOURT" + "codePostal": "68610", + "codeCommune": "68177", + "libelleAcheminement": "LAUTENBACH", + "nomCommune": "LAUTENBACH" }, { - "codePostal": "80200", - "codeCommune": "80090", - "libelleAcheminement": "BERNY EN SANTERRE", - "nomCommune": "BERNY EN SANTERRE" + "codePostal": "80560", + "codeCommune": "80201", + "libelleAcheminement": "COIGNEUX", + "nomCommune": "COIGNEUX" }, { - "codePostal": "73300", - "codeCommune": "73135", - "libelleAcheminement": "LA TOUR EN MAURIENNE", - "nomCommune": "LA TOUR EN MAURIENNE" + "codePostal": "70000", + "codeCommune": "70136", + "libelleAcheminement": "CHARMOILLE", + "nomCommune": "CHARMOILLE" }, { - "codePostal": "23100", - "codeCommune": "23080", - "libelleAcheminement": "FENIERS", - "nomCommune": "FENIERS" + "codePostal": "80190", + "codeCommune": "80105", + "libelleAcheminement": "BILLANCOURT", + "nomCommune": "BILLANCOURT" }, { - "codePostal": "78125", - "codeCommune": "78307", - "libelleAcheminement": "HERMERAY", - "nomCommune": "HERMERAY" + "codePostal": "66320", + "codeCommune": "66201", + "libelleAcheminement": "TARERACH", + "nomCommune": "TARERACH" }, { - "codePostal": "80850", - "codeCommune": "80093", - "libelleAcheminement": "BERTEAUCOURT LES DAMES", - "nomCommune": "BERTEAUCOURT LES DAMES" + "codePostal": "68660", + "codeCommune": "68185", + "libelleAcheminement": "LIEPVRE", + "nomCommune": "LIEPVRE" }, { - "codePostal": "73300", - "codeCommune": "73135", - "libelleAcheminement": "LA TOUR EN MAURIENNE", - "nomCommune": "LA TOUR EN MAURIENNE" + "codePostal": "80560", + "codeCommune": "80207", + "libelleAcheminement": "CONTAY", + "nomCommune": "CONTAY" }, { - "codePostal": "23320", - "codeCommune": "23082", - "libelleAcheminement": "FLEURAT", - "nomCommune": "FLEURAT" + "codePostal": "70230", + "codeCommune": "70137", + "libelleAcheminement": "CHASSEY LES MONTBOZON", + "nomCommune": "CHASSEY LES MONTBOZON" }, { - "codePostal": "78440", - "codeCommune": "78329", - "libelleAcheminement": "LAINVILLE EN VEXIN", - "nomCommune": "LAINVILLE EN VEXIN" + "codePostal": "80600", + "codeCommune": "80108", + "libelleAcheminement": "BOISBERGUES", + "nomCommune": "BOISBERGUES" }, { - "codePostal": "80190", - "codeCommune": "80097", - "libelleAcheminement": "BETHENCOURT SUR SOMME", - "nomCommune": "BETHENCOURT SUR SOMME" + "codePostal": "66500", + "codeCommune": "66204", + "libelleAcheminement": "TAURINYA", + "nomCommune": "TAURINYA" }, { - "codePostal": "73170", - "codeCommune": "73147", - "libelleAcheminement": "LOISIEUX", - "nomCommune": "LOISIEUX" + "codePostal": "68480", + "codeCommune": "68187", + "libelleAcheminement": "LINSDORF", + "nomCommune": "LINSDORF" }, { - "codePostal": "23450", - "codeCommune": "23087", - "libelleAcheminement": "FRESSELINES", - "nomCommune": "FRESSELINES" + "codePostal": "80440", + "codeCommune": "80213", + "libelleAcheminement": "COTTENCHY", + "nomCommune": "COTTENCHY" }, { - "codePostal": "78270", - "codeCommune": "78337", - "libelleAcheminement": "LIMETZ VILLEZ", - "nomCommune": "LIMETZ VILLEZ" + "codePostal": "70240", + "codeCommune": "70141", + "libelleAcheminement": "CHATENOIS", + "nomCommune": "CHATENOIS" }, { - "codePostal": "80190", - "codeCommune": "80103", - "libelleAcheminement": "BIARRE", - "nomCommune": "BIARRE" + "codePostal": "80540", + "codeCommune": "80119", + "libelleAcheminement": "BOUGAINVILLE", + "nomCommune": "BOUGAINVILLE" }, { - "codePostal": "73210", - "codeCommune": "73150", - "libelleAcheminement": "LA PLAGNE TARENTAISE", - "nomCommune": "LA PLAGNE TARENTAISE" + "codePostal": "66130", + "codeCommune": "66215", + "libelleAcheminement": "TREVILLACH", + "nomCommune": "TREVILLACH" }, { - "codePostal": "23230", - "codeCommune": "23093", - "libelleAcheminement": "GOUZON", - "nomCommune": "GOUZON" + "codePostal": "68720", + "codeCommune": "68191", + "libelleAcheminement": "LUEMSCHWILLER", + "nomCommune": "LUEMSCHWILLER" }, { - "codePostal": "78600", - "codeCommune": "78358", - "libelleAcheminement": "MAISONS LAFFITTE", - "nomCommune": "MAISONS LAFFITTE" + "codePostal": "80150", + "codeCommune": "80222", + "libelleAcheminement": "CRECY EN PONTHIEU", + "nomCommune": "CRECY EN PONTHIEU" }, { - "codePostal": "80800", - "codeCommune": "80112", - "libelleAcheminement": "BONNAY", - "nomCommune": "BONNAY" + "codePostal": "70140", + "codeCommune": "70142", + "libelleAcheminement": "CHAUMERCENNE", + "nomCommune": "CHAUMERCENNE" }, { - "codePostal": "73400", - "codeCommune": "73153", - "libelleAcheminement": "MARTHOD", - "nomCommune": "MARTHOD" + "codePostal": "80220", + "codeCommune": "80120", + "libelleAcheminement": "BOUILLANCOURT EN SERY", + "nomCommune": "BOUILLANCOURT EN SERY" }, { - "codePostal": "23000", - "codeCommune": "23096", - "libelleAcheminement": "GUERET", - "nomCommune": "GUERET" + "codePostal": "66220", + "codeCommune": "66216", + "libelleAcheminement": "TRILLA", + "nomCommune": "TRILLA" }, { - "codePostal": "78160", - "codeCommune": "78372", - "libelleAcheminement": "MARLY LE ROI", - "nomCommune": "MARLY LE ROI" + "codePostal": "68210", + "codeCommune": "68192", + "libelleAcheminement": "VALDIEU LUTRAN", + "nomCommune": "VALDIEU LUTRAN" }, { - "codePostal": "80670", - "codeCommune": "80113", - "libelleAcheminement": "BONNEVILLE", - "nomCommune": "BONNEVILLE" + "codePostal": "80150", + "codeCommune": "80222", + "libelleAcheminement": "CRECY EN PONTHIEU", + "nomCommune": "CRECY EN PONTHIEU" }, { - "codePostal": "73420", - "codeCommune": "73155", - "libelleAcheminement": "MERY", - "nomCommune": "MERY" + "codePostal": "70700", + "codeCommune": "70152", + "libelleAcheminement": "CHOYE", + "nomCommune": "CHOYE" }, { - "codePostal": "23220", - "codeCommune": "23109", - "libelleAcheminement": "LINARD MALVAL", - "nomCommune": "LINARD MALVAL" + "codePostal": "80600", + "codeCommune": "80122", + "libelleAcheminement": "BOUQUEMAISON", + "nomCommune": "BOUQUEMAISON" }, { - "codePostal": "78250", - "codeCommune": "78401", - "libelleAcheminement": "MEULAN EN YVELINES", - "nomCommune": "MEULAN EN YVELINES" + "codePostal": "66760", + "codeCommune": "66218", + "libelleAcheminement": "UR", + "nomCommune": "UR" }, { - "codePostal": "80150", - "codeCommune": "80118", - "libelleAcheminement": "BOUFFLERS", - "nomCommune": "BOUFFLERS" + "codePostal": "68210", + "codeCommune": "68192", + "libelleAcheminement": "VALDIEU LUTRAN", + "nomCommune": "VALDIEU LUTRAN" }, { - "codePostal": "73500", - "codeCommune": "73157", - "libelleAcheminement": "MODANE", - "nomCommune": "MODANE" + "codePostal": "80700", + "codeCommune": "80223", + "libelleAcheminement": "CREMERY", + "nomCommune": "CREMERY" }, { - "codePostal": "23240", - "codeCommune": "23111", - "libelleAcheminement": "LIZIERES", - "nomCommune": "LIZIERES" + "codePostal": "70700", + "codeCommune": "70156", + "libelleAcheminement": "CITEY", + "nomCommune": "CITEY" }, { - "codePostal": "78970", - "codeCommune": "78402", - "libelleAcheminement": "MEZIERES SUR SEINE", - "nomCommune": "MEZIERES SUR SEINE" + "codePostal": "80220", + "codeCommune": "80126", + "libelleAcheminement": "BOUTTENCOURT", + "nomCommune": "BOUTTENCOURT" }, { - "codePostal": "80300", - "codeCommune": "80129", - "libelleAcheminement": "BOUZINCOURT", - "nomCommune": "BOUZINCOURT" + "codePostal": "66500", + "codeCommune": "66219", + "libelleAcheminement": "URBANYA", + "nomCommune": "URBANYA" }, { - "codePostal": "73350", - "codeCommune": "73161", - "libelleAcheminement": "MONTAGNY", - "nomCommune": "MONTAGNY" + "codePostal": "68210", + "codeCommune": "68196", + "libelleAcheminement": "MAGNY", + "nomCommune": "MAGNY" }, { - "codePostal": "23150", - "codeCommune": "23118", - "libelleAcheminement": "MAISONNISSES", - "nomCommune": "MAISONNISSES" + "codePostal": "80290", + "codeCommune": "80227", + "libelleAcheminement": "CROIXRAULT", + "nomCommune": "CROIXRAULT" }, { - "codePostal": "78940", - "codeCommune": "78404", - "libelleAcheminement": "MILLEMONT", - "nomCommune": "MILLEMONT" + "codePostal": "70000", + "codeCommune": "70158", + "libelleAcheminement": "CLANS", + "nomCommune": "CLANS" }, { - "codePostal": "80540", - "codeCommune": "80130", - "libelleAcheminement": "BOVELLES", - "nomCommune": "BOVELLES" + "codePostal": "80220", + "codeCommune": "80127", + "libelleAcheminement": "BOUVAINCOURT SUR BRESLE", + "nomCommune": "BOUVAINCOURT SUR BRESLE" }, { - "codePostal": "73100", - "codeCommune": "73164", - "libelleAcheminement": "MONTCEL", - "nomCommune": "MONTCEL" + "codePostal": "66820", + "codeCommune": "66222", + "libelleAcheminement": "VERNET LES BAINS", + "nomCommune": "VERNET LES BAINS" }, { - "codePostal": "23220", - "codeCommune": "23136", - "libelleAcheminement": "MORTROUX", - "nomCommune": "MORTROUX" + "codePostal": "68550", + "codeCommune": "68199", + "libelleAcheminement": "MALMERSPACH", + "nomCommune": "MALMERSPACH" }, { - "codePostal": "78124", - "codeCommune": "78415", - "libelleAcheminement": "MONTAINVILLE", - "nomCommune": "MONTAINVILLE" + "codePostal": "80500", + "codeCommune": "80236", + "libelleAcheminement": "DAVENESCOURT", + "nomCommune": "DAVENESCOURT" }, { - "codePostal": "80340", - "codeCommune": "80136", - "libelleAcheminement": "BRAY SUR SOMME", - "nomCommune": "BRAY SUR SOMME" + "codePostal": "70000", + "codeCommune": "70163", + "libelleAcheminement": "COLOMBIER", + "nomCommune": "COLOMBIER" }, { - "codePostal": "73100", - "codeCommune": "73182", - "libelleAcheminement": "MOUXY", - "nomCommune": "MOUXY" + "codePostal": "80200", + "codeCommune": "80128", + "libelleAcheminement": "BOUVINCOURT EN VERMANDOIS", + "nomCommune": "BOUVINCOURT EN VERMANDOIS" }, { - "codePostal": "23200", - "codeCommune": "23140", - "libelleAcheminement": "MOUTIER ROZEILLE", - "nomCommune": "MOUTIER ROZEILLE" + "codePostal": "66300", + "codeCommune": "66226", + "libelleAcheminement": "VILLEMOLAQUE", + "nomCommune": "VILLEMOLAQUE" }, { - "codePostal": "78130", - "codeCommune": "78440", - "libelleAcheminement": "LES MUREAUX", - "nomCommune": "LES MUREAUX" + "codePostal": "68630", + "codeCommune": "68209", + "libelleAcheminement": "MITTELWIHR", + "nomCommune": "MITTELWIHR" }, { - "codePostal": "80400", - "codeCommune": "80144", - "libelleAcheminement": "BROUCHY", - "nomCommune": "BROUCHY" + "codePostal": "80110", + "codeCommune": "80237", + "libelleAcheminement": "DEMUIN", + "nomCommune": "DEMUIN" }, { - "codePostal": "73260", - "codeCommune": "73187", - "libelleAcheminement": "LA LECHERE", - "nomCommune": "LA LECHERE" + "codePostal": "70320", + "codeCommune": "70171", + "libelleAcheminement": "CORBENAY", + "nomCommune": "CORBENAY" }, { - "codePostal": "23600", - "codeCommune": "23146", - "libelleAcheminement": "NOUZERINES", - "nomCommune": "NOUZERINES" + "codePostal": "80540", + "codeCommune": "80130", + "libelleAcheminement": "BOVELLES", + "nomCommune": "BOVELLES" }, { - "codePostal": "78660", - "codeCommune": "78472", - "libelleAcheminement": "ORSONVILLE", - "nomCommune": "ORSONVILLE" + "codePostal": "66490", + "codeCommune": "66233", + "libelleAcheminement": "VIVES", + "nomCommune": "VIVES" }, { - "codePostal": "80230", - "codeCommune": "80146", - "libelleAcheminement": "BRUTELLES", - "nomCommune": "BRUTELLES" + "codePostal": "68580", + "codeCommune": "68216", + "libelleAcheminement": "MOOSLARGUE", + "nomCommune": "MOOSLARGUE" }, { - "codePostal": "73460", - "codeCommune": "73188", - "libelleAcheminement": "NOTRE DAME DES MILLIERES", - "nomCommune": "NOTRE DAME DES MILLIERES" + "codePostal": "80200", + "codeCommune": "80239", + "libelleAcheminement": "DEVISE", + "nomCommune": "DEVISE" }, { - "codePostal": "23350", - "codeCommune": "23148", - "libelleAcheminement": "NOUZIERS", - "nomCommune": "NOUZIERS" + "codePostal": "70310", + "codeCommune": "70176", + "libelleAcheminement": "CORRAVILLERS", + "nomCommune": "CORRAVILLERS" }, { - "codePostal": "78230", - "codeCommune": "78481", - "libelleAcheminement": "LE PECQ", - "nomCommune": "LE PECQ" + "codePostal": "80430", + "codeCommune": "80143", + "libelleAcheminement": "BROCOURT", + "nomCommune": "BROCOURT" }, { - "codePostal": "80200", - "codeCommune": "80150", - "libelleAcheminement": "BUIRE COURCELLES", - "nomCommune": "BUIRE COURCELLES" + "codePostal": "67320", + "codeCommune": "67013", + "libelleAcheminement": "ASSWILLER", + "nomCommune": "ASSWILLER" }, { - "codePostal": "73310", - "codeCommune": "73193", - "libelleAcheminement": "ONTEX", - "nomCommune": "ONTEX" + "codePostal": "68780", + "codeCommune": "68219", + "libelleAcheminement": "LE HAUT SOULTZBACH", + "nomCommune": "LE HAUT SOULTZBACH" }, { - "codePostal": "23140", - "codeCommune": "23149", - "libelleAcheminement": "PARSAC RIMONDEIX", - "nomCommune": "PARSAC RIMONDEIX" + "codePostal": "80110", + "codeCommune": "80242", + "libelleAcheminement": "DOMART SUR LA LUCE", + "nomCommune": "DOMART SUR LA LUCE" }, { - "codePostal": "78125", - "codeCommune": "78497", - "libelleAcheminement": "POIGNY LA FORET", - "nomCommune": "POIGNY LA FORET" + "codePostal": "70150", + "codeCommune": "70181", + "libelleAcheminement": "COURCUIRE", + "nomCommune": "COURCUIRE" }, { - "codePostal": "80300", - "codeCommune": "80151", - "libelleAcheminement": "BUIRE SUR L ANCRE", - "nomCommune": "BUIRE SUR L ANCRE" + "codePostal": "80690", + "codeCommune": "80145", + "libelleAcheminement": "BRUCAMPS", + "nomCommune": "BRUCAMPS" }, { - "codePostal": "73140", - "codeCommune": "73194", - "libelleAcheminement": "ORELLE", - "nomCommune": "ORELLE" + "codePostal": "67320", + "codeCommune": "67017", + "libelleAcheminement": "BAERENDORF", + "nomCommune": "BAERENDORF" }, { - "codePostal": "23130", - "codeCommune": "23152", - "libelleAcheminement": "PIERREFITTE", - "nomCommune": "PIERREFITTE" + "codePostal": "68780", + "codeCommune": "68219", + "libelleAcheminement": "LE HAUT SOULTZBACH", + "nomCommune": "LE HAUT SOULTZBACH" }, { - "codePostal": "78300", - "codeCommune": "78498", - "libelleAcheminement": "POISSY", - "nomCommune": "POISSY" + "codePostal": "80370", + "codeCommune": "80245", + "libelleAcheminement": "DOMLEGER LONGVILLERS", + "nomCommune": "DOMLEGER LONGVILLERS" }, { - "codePostal": "80132", - "codeCommune": "80163", - "libelleAcheminement": "CAMBRON", - "nomCommune": "CAMBRON" + "codePostal": "70400", + "codeCommune": "70182", + "libelleAcheminement": "COURMONT", + "nomCommune": "COURMONT" }, { - "codePostal": "73200", - "codeCommune": "73196", - "libelleAcheminement": "PALLUD", - "nomCommune": "PALLUD" + "codePostal": "80230", + "codeCommune": "80146", + "libelleAcheminement": "BRUTELLES", + "nomCommune": "BRUTELLES" }, { - "codePostal": "23140", - "codeCommune": "23154", - "libelleAcheminement": "PIONNAT", - "nomCommune": "PIONNAT" + "codePostal": "67310", + "codeCommune": "67018", + "libelleAcheminement": "BALBRONN", + "nomCommune": "BALBRONN" }, { - "codePostal": "78120", - "codeCommune": "78517", - "libelleAcheminement": "RAMBOUILLET", - "nomCommune": "RAMBOUILLET" + "codePostal": "68100", + "codeCommune": "68224", + "libelleAcheminement": "MULHOUSE", + "nomCommune": "MULHOUSE" }, { - "codePostal": "80340", - "codeCommune": "80172", - "libelleAcheminement": "CAPPY", - "nomCommune": "CAPPY" + "codePostal": "80440", + "codeCommune": "80246", + "libelleAcheminement": "DOMMARTIN", + "nomCommune": "DOMMARTIN" }, { - "codePostal": "73800", - "codeCommune": "73200", - "libelleAcheminement": "PLANAISE", - "nomCommune": "PLANAISE" + "codePostal": "70240", + "codeCommune": "70186", + "libelleAcheminement": "LA CREUSE", + "nomCommune": "LA CREUSE" }, { - "codePostal": "23250", - "codeCommune": "23157", - "libelleAcheminement": "LA POUGE", - "nomCommune": "LA POUGE" + "codePostal": "80135", + "codeCommune": "80155", + "libelleAcheminement": "BUSSUS BUSSUEL", + "nomCommune": "BUSSUS BUSSUEL" }, { - "codePostal": "78270", - "codeCommune": "78528", - "libelleAcheminement": "ROLLEBOISE", - "nomCommune": "ROLLEBOISE" + "codePostal": "67220", + "codeCommune": "67022", + "libelleAcheminement": "BASSEMBERG", + "nomCommune": "BASSEMBERG" }, { - "codePostal": "80260", - "codeCommune": "80173", - "libelleAcheminement": "CARDONNETTE", - "nomCommune": "CARDONNETTE" + "codePostal": "68200", + "codeCommune": "68224", + "libelleAcheminement": "MULHOUSE", + "nomCommune": "MULHOUSE" }, { - "codePostal": "73330", - "codeCommune": "73204", - "libelleAcheminement": "LE PONT DE BEAUVOISIN", - "nomCommune": "LE PONT DE BEAUVOISIN" + "codePostal": "80150", + "codeCommune": "80250", + "libelleAcheminement": "DOMVAST", + "nomCommune": "DOMVAST" }, { - "codePostal": "23110", - "codeCommune": "23160", - "libelleAcheminement": "RETERRE", - "nomCommune": "RETERRE" + "codePostal": "70190", + "codeCommune": "70189", + "libelleAcheminement": "CROMARY", + "nomCommune": "CROMARY" }, { - "codePostal": "78720", - "codeCommune": "78548", - "libelleAcheminement": "ST FORGET", - "nomCommune": "ST FORGET" + "codePostal": "80330", + "codeCommune": "80160", + "libelleAcheminement": "CAGNY", + "nomCommune": "CAGNY" }, { - "codePostal": "80700", - "codeCommune": "80176", - "libelleAcheminement": "CARREPUIS", - "nomCommune": "CARREPUIS" + "codePostal": "67930", + "codeCommune": "67025", + "libelleAcheminement": "BEINHEIM", + "nomCommune": "BEINHEIM" }, { - "codePostal": "73110", - "codeCommune": "73205", - "libelleAcheminement": "LE PONTET", - "nomCommune": "LE PONTET" + "codePostal": "68600", + "codeCommune": "68231", + "libelleAcheminement": "NEUF BRISACH", + "nomCommune": "NEUF BRISACH" }, { - "codePostal": "23600", - "codeCommune": "23174", - "libelleAcheminement": "SOUMANS", - "nomCommune": "SOUMANS" + "codePostal": "80132", + "codeCommune": "80260", + "libelleAcheminement": "DRUCAT", + "nomCommune": "DRUCAT" }, { - "codePostal": "78640", - "codeCommune": "78550", - "libelleAcheminement": "ST GERMAIN DE LA GRANGE", - "nomCommune": "ST GERMAIN DE LA GRANGE" + "codePostal": "70150", + "codeCommune": "70193", + "libelleAcheminement": "CULT", + "nomCommune": "CULT" }, { - "codePostal": "80410", - "codeCommune": "80182", - "libelleAcheminement": "CAYEUX SUR MER", - "nomCommune": "CAYEUX SUR MER" + "codePostal": "80670", + "codeCommune": "80166", + "libelleAcheminement": "CANAPLES", + "nomCommune": "CANAPLES" }, { - "codePostal": "73310", - "codeCommune": "73218", - "libelleAcheminement": "RUFFIEUX", - "nomCommune": "RUFFIEUX" + "codePostal": "67130", + "codeCommune": "67026", + "libelleAcheminement": "BELLEFOSSE", + "nomCommune": "BELLEFOSSE" }, { - "codePostal": "23300", - "codeCommune": "23177", - "libelleAcheminement": "ST AGNANT DE VERSILLAT", - "nomCommune": "ST AGNANT DE VERSILLAT" + "codePostal": "68127", + "codeCommune": "68234", + "libelleAcheminement": "NIEDERENTZEN", + "nomCommune": "NIEDERENTZEN" }, { - "codePostal": "78730", - "codeCommune": "78569", - "libelleAcheminement": "STE MESME", - "nomCommune": "STE MESME" + "codePostal": "80480", + "codeCommune": "80261", + "libelleAcheminement": "DURY", + "nomCommune": "DURY" }, { - "codePostal": "80700", - "codeCommune": "80185", - "libelleAcheminement": "CHAMPIEN", - "nomCommune": "CHAMPIEN" + "codePostal": "70800", + "codeCommune": "70196", + "libelleAcheminement": "DAMPIERRE LES CONFLANS", + "nomCommune": "DAMPIERRE LES CONFLANS" }, { - "codePostal": "73610", - "codeCommune": "73219", - "libelleAcheminement": "ST ALBAN DE MONTBEL", - "nomCommune": "ST ALBAN DE MONTBEL" + "codePostal": "80500", + "codeCommune": "80170", + "libelleAcheminement": "CANTIGNY", + "nomCommune": "CANTIGNY" }, { - "codePostal": "23260", - "codeCommune": "23184", - "libelleAcheminement": "ST BARD", - "nomCommune": "ST BARD" + "codePostal": "67370", + "codeCommune": "67034", + "libelleAcheminement": "BERSTETT", + "nomCommune": "BERSTETT" }, { - "codePostal": "78720", - "codeCommune": "78590", - "libelleAcheminement": "SENLISSE", - "nomCommune": "SENLISSE" + "codePostal": "68230", + "codeCommune": "68237", + "libelleAcheminement": "NIEDERMORSCHWIHR", + "nomCommune": "NIEDERMORSCHWIHR" }, { - "codePostal": "80340", - "codeCommune": "80195", - "libelleAcheminement": "CHUIGNOLLES", - "nomCommune": "CHUIGNOLLES" + "codePostal": "80140", + "codeCommune": "80269", + "libelleAcheminement": "EPAUMESNIL", + "nomCommune": "EPAUMESNIL" }, { - "codePostal": "73220", - "codeCommune": "73220", - "libelleAcheminement": "ST ALBAN D HURTIERES", - "nomCommune": "ST ALBAN D HURTIERES" + "codePostal": "70400", + "codeCommune": "70205", + "libelleAcheminement": "ECHAVANNE", + "nomCommune": "ECHAVANNE" }, { - "codePostal": "23400", - "codeCommune": "23189", - "libelleAcheminement": "ST DIZIER MASBARAUD", - "nomCommune": "ST DIZIER MASBARAUD" + "codePostal": "80700", + "codeCommune": "80176", + "libelleAcheminement": "CARREPUIS", + "nomCommune": "CARREPUIS" }, { - "codePostal": "78113", - "codeCommune": "78606", - "libelleAcheminement": "LE TARTRE GAUDRAN", - "nomCommune": "LE TARTRE GAUDRAN" + "codePostal": "67370", + "codeCommune": "67034", + "libelleAcheminement": "BERSTETT", + "nomCommune": "BERSTETT" }, { - "codePostal": "80540", - "codeCommune": "80198", - "libelleAcheminement": "CLAIRY SAULCHOIX", - "nomCommune": "CLAIRY SAULCHOIX" + "codePostal": "68960", + "codeCommune": "68240", + "libelleAcheminement": "ILLTAL", + "nomCommune": "ILLTAL" }, { - "codePostal": "73160", - "codeCommune": "73228", - "libelleAcheminement": "ST CASSIN", - "nomCommune": "ST CASSIN" + "codePostal": "80740", + "codeCommune": "80271", + "libelleAcheminement": "EPEHY", + "nomCommune": "EPEHY" }, { - "codePostal": "23500", - "codeCommune": "23198", - "libelleAcheminement": "ST GEORGES NIGREMONT", - "nomCommune": "ST GEORGES NIGREMONT" + "codePostal": "70400", + "codeCommune": "70206", + "libelleAcheminement": "ECHENANS SOUS MONT VAUDOIS", + "nomCommune": "ECHENANS SOUS MONT VAUDOIS" }, { - "codePostal": "78250", - "codeCommune": "78609", - "libelleAcheminement": "TESSANCOURT SUR AUBETTE", - "nomCommune": "TESSANCOURT SUR AUBETTE" + "codePostal": "80310", + "codeCommune": "80180", + "libelleAcheminement": "CAVILLON", + "nomCommune": "CAVILLON" }, { - "codePostal": "80510", - "codeCommune": "80200", - "libelleAcheminement": "COCQUEREL", - "nomCommune": "COCQUEREL" + "codePostal": "67170", + "codeCommune": "67039", + "libelleAcheminement": "BILWISHEIM", + "nomCommune": "BILWISHEIM" }, { - "codePostal": "73640", - "codeCommune": "73232", - "libelleAcheminement": "STE FOY TARENTAISE", - "nomCommune": "STE FOY TARENTAISE" + "codePostal": "68127", + "codeCommune": "68241", + "libelleAcheminement": "OBERENTZEN", + "nomCommune": "OBERENTZEN" }, { - "codePostal": "23430", - "codeCommune": "23200", - "libelleAcheminement": "ST GOUSSAUD", - "nomCommune": "ST GOUSSAUD" + "codePostal": "80360", + "codeCommune": "80275", + "libelleAcheminement": "EQUANCOURT", + "nomCommune": "EQUANCOURT" }, { - "codePostal": "78117", - "codeCommune": "78620", - "libelleAcheminement": "TOUSSUS LE NOBLE", - "nomCommune": "TOUSSUS LE NOBLE" + "codePostal": "70000", + "codeCommune": "70207", + "libelleAcheminement": "ECHENOZ LA MELINE", + "nomCommune": "ECHENOZ LA MELINE" }, { - "codePostal": "80560", - "codeCommune": "80201", - "libelleAcheminement": "COIGNEUX", - "nomCommune": "COIGNEUX" + "codePostal": "80140", + "codeCommune": "80183", + "libelleAcheminement": "CERISY BULEUX", + "nomCommune": "CERISY BULEUX" }, { - "codePostal": "73340", - "codeCommune": "73234", - "libelleAcheminement": "ST FRANCOIS DE SALES", - "nomCommune": "ST FRANCOIS DE SALES" + "codePostal": "67870", + "codeCommune": "67045", + "libelleAcheminement": "BISCHOFFSHEIM", + "nomCommune": "BISCHOFFSHEIM" }, { - "codePostal": "23130", - "codeCommune": "23204", - "libelleAcheminement": "ST JULIEN LE CHATEL", - "nomCommune": "ST JULIEN LE CHATEL" + "codePostal": "68480", + "codeCommune": "68259", + "libelleAcheminement": "RAEDERSDORF", + "nomCommune": "RAEDERSDORF" }, { - "codePostal": "78140", - "codeCommune": "78640", - "libelleAcheminement": "VELIZY VILLACOUBLAY", - "nomCommune": "VELIZY VILLACOUBLAY" + "codePostal": "80690", + "codeCommune": "80281", + "libelleAcheminement": "ERGNIES", + "nomCommune": "ERGNIES" }, { - "codePostal": "80360", - "codeCommune": "80204", - "libelleAcheminement": "COMBLES", - "nomCommune": "COMBLES" + "codePostal": "70300", + "codeCommune": "70213", + "libelleAcheminement": "EHUNS", + "nomCommune": "EHUNS" }, { - "codePostal": "73240", - "codeCommune": "73236", - "libelleAcheminement": "ST GENIX LES VILLAGES", - "nomCommune": "ST GENIX LES VILLAGES" + "codePostal": "80340", + "codeCommune": "80194", + "libelleAcheminement": "CHUIGNES", + "nomCommune": "CHUIGNES" }, { - "codePostal": "23150", - "codeCommune": "23214", - "libelleAcheminement": "ST MARTIAL LE MONT", - "nomCommune": "ST MARTIAL LE MONT" + "codePostal": "67350", + "codeCommune": "67048", + "libelleAcheminement": "BITSCHHOFFEN", + "nomCommune": "BITSCHHOFFEN" }, { - "codePostal": "78490", - "codeCommune": "78653", - "libelleAcheminement": "VICQ", - "nomCommune": "VICQ" + "codePostal": "68800", + "codeCommune": "68261", + "libelleAcheminement": "RAMMERSMATT", + "nomCommune": "RAMMERSMATT" }, { - "codePostal": "80560", - "codeCommune": "80207", - "libelleAcheminement": "CONTAY", - "nomCommune": "CONTAY" + "codePostal": "80250", + "codeCommune": "80291", + "libelleAcheminement": "ESTREES SUR NOYE", + "nomCommune": "ESTREES SUR NOYE" }, { - "codePostal": "73240", - "codeCommune": "73236", - "libelleAcheminement": "ST GENIX LES VILLAGES", - "nomCommune": "ST GENIX LES VILLAGES" + "codePostal": "70200", + "codeCommune": "70229", + "libelleAcheminement": "FAYMONT", + "nomCommune": "FAYMONT" }, { - "codePostal": "23100", - "codeCommune": "23215", - "libelleAcheminement": "ST MARTIAL LE VIEUX", - "nomCommune": "ST MARTIAL LE VIEUX" + "codePostal": "80340", + "codeCommune": "80195", + "libelleAcheminement": "CHUIGNOLLES", + "nomCommune": "CHUIGNOLLES" }, { - "codePostal": "78640", - "codeCommune": "78683", - "libelleAcheminement": "VILLIERS ST FREDERIC", - "nomCommune": "VILLIERS ST FREDERIC" + "codePostal": "67390", + "codeCommune": "67053", + "libelleAcheminement": "BOESENBIESEN", + "nomCommune": "BOESENBIESEN" }, { - "codePostal": "80560", - "codeCommune": "80217", - "libelleAcheminement": "COURCELLES AU BOIS", - "nomCommune": "COURCELLES AU BOIS" + "codePostal": "68730", + "codeCommune": "68263", + "libelleAcheminement": "RANSPACH LE BAS", + "nomCommune": "RANSPACH LE BAS" }, { - "codePostal": "73800", - "codeCommune": "73240", - "libelleAcheminement": "STE HELENE DU LAC", - "nomCommune": "STE HELENE DU LAC" + "codePostal": "80200", + "codeCommune": "80294", + "libelleAcheminement": "ETERPIGNY", + "nomCommune": "ETERPIGNY" }, { - "codePostal": "23430", - "codeCommune": "23217", - "libelleAcheminement": "ST MARTIN STE CATHERINE", - "nomCommune": "ST MARTIN STE CATHERINE" + "codePostal": "70130", + "codeCommune": "70231", + "libelleAcheminement": "FERRIERES LES RAY", + "nomCommune": "FERRIERES LES RAY" }, { - "codePostal": "79600", - "codeCommune": "79005", - "libelleAcheminement": "AIRVAULT", - "nomCommune": "AIRVAULT" + "codePostal": "80540", + "codeCommune": "80198", + "libelleAcheminement": "CLAIRY SAULCHOIX", + "nomCommune": "CLAIRY SAULCHOIX" }, { - "codePostal": "80150", - "codeCommune": "80222", - "libelleAcheminement": "CRECY EN PONTHIEU", - "nomCommune": "CRECY EN PONTHIEU" + "codePostal": "67390", + "codeCommune": "67056", + "libelleAcheminement": "BOOTZHEIM", + "nomCommune": "BOOTZHEIM" }, { - "codePostal": "73460", - "codeCommune": "73241", - "libelleAcheminement": "STE HELENE SUR ISERE", - "nomCommune": "STE HELENE SUR ISERE" + "codePostal": "68500", + "codeCommune": "68274", + "libelleAcheminement": "RIMBACH PRES GUEBWILLER", + "nomCommune": "RIMBACH PRES GUEBWILLER" }, { - "codePostal": "23200", - "codeCommune": "23220", - "libelleAcheminement": "ST MEDARD LA ROCHETTE", - "nomCommune": "ST MEDARD LA ROCHETTE" + "codePostal": "80190", + "codeCommune": "80300", + "libelleAcheminement": "FALVY", + "nomCommune": "FALVY" }, { - "codePostal": "79160", - "codeCommune": "79012", - "libelleAcheminement": "ARDIN", - "nomCommune": "ARDIN" + "codePostal": "70230", + "codeCommune": "70234", + "libelleAcheminement": "FILAIN", + "nomCommune": "FILAIN" }, { - "codePostal": "80400", - "codeCommune": "80226", - "libelleAcheminement": "CROIX MOLIGNEAUX", - "nomCommune": "CROIX MOLIGNEAUX" + "codePostal": "80510", + "codeCommune": "80200", + "libelleAcheminement": "COCQUEREL", + "nomCommune": "COCQUEREL" }, { - "codePostal": "73300", - "codeCommune": "73248", - "libelleAcheminement": "ST JEAN DE MAURIENNE", - "nomCommune": "ST JEAN DE MAURIENNE" + "codePostal": "67420", + "codeCommune": "67059", + "libelleAcheminement": "BOURG BRUCHE", + "nomCommune": "BOURG BRUCHE" }, { - "codePostal": "23260", - "codeCommune": "23226", - "libelleAcheminement": "ST PARDOUX D ARNET", - "nomCommune": "ST PARDOUX D ARNET" + "codePostal": "68290", + "codeCommune": "68275", + "libelleAcheminement": "RIMBACH PRES MASEVAUX", + "nomCommune": "RIMBACH PRES MASEVAUX" }, { - "codePostal": "79150", - "codeCommune": "79013", - "libelleAcheminement": "ARGENTONNAY", - "nomCommune": "ARGENTONNAY" + "codePostal": "80120", + "codeCommune": "80303", + "libelleAcheminement": "FAVIERES", + "nomCommune": "FAVIERES" }, { - "codePostal": "80190", - "codeCommune": "80230", - "libelleAcheminement": "CURCHY", - "nomCommune": "CURCHY" + "codePostal": "70120", + "codeCommune": "70237", + "libelleAcheminement": "FLEUREY LES LAVONCOURT", + "nomCommune": "FLEUREY LES LAVONCOURT" }, { - "codePostal": "73130", - "codeCommune": "73255", - "libelleAcheminement": "STE MARIE DE CUINES", - "nomCommune": "STE MARIE DE CUINES" + "codePostal": "80260", + "codeCommune": "80202", + "libelleAcheminement": "COISY", + "nomCommune": "COISY" }, { - "codePostal": "23500", - "codeCommune": "23238", - "libelleAcheminement": "ST QUENTIN LA CHABANNE", - "nomCommune": "ST QUENTIN LA CHABANNE" + "codePostal": "67330", + "codeCommune": "67061", + "libelleAcheminement": "BOUXWILLER", + "nomCommune": "BOUXWILLER" }, { - "codePostal": "79150", - "codeCommune": "79013", - "libelleAcheminement": "ARGENTONNAY", - "nomCommune": "ARGENTONNAY" + "codePostal": "68500", + "codeCommune": "68276", + "libelleAcheminement": "RIMBACHZELL", + "nomCommune": "RIMBACHZELL" }, { - "codePostal": "80500", - "codeCommune": "80236", - "libelleAcheminement": "DAVENESCOURT", - "nomCommune": "DAVENESCOURT" + "codePostal": "80260", + "codeCommune": "80316", + "libelleAcheminement": "FLESSELLES", + "nomCommune": "FLESSELLES" }, { - "codePostal": "73440", - "codeCommune": "73257", - "libelleAcheminement": "LES BELLEVILLE", - "nomCommune": "LES BELLEVILLE" + "codePostal": "70800", + "codeCommune": "70240", + "libelleAcheminement": "FONTAINE LES LUXEUIL", + "nomCommune": "FONTAINE LES LUXEUIL" }, { - "codePostal": "23600", - "codeCommune": "23240", - "libelleAcheminement": "ST SILVAIN BAS LE ROC", - "nomCommune": "ST SILVAIN BAS LE ROC" + "codePostal": "80560", + "codeCommune": "80203", + "libelleAcheminement": "COLINCAMPS", + "nomCommune": "COLINCAMPS" }, { - "codePostal": "79300", - "codeCommune": "79013", - "libelleAcheminement": "ARGENTONNAY", - "nomCommune": "ARGENTONNAY" + "codePostal": "67220", + "codeCommune": "67063", + "libelleAcheminement": "BREITENBACH", + "nomCommune": "BREITENBACH" }, { - "codePostal": "80300", - "codeCommune": "80238", - "libelleAcheminement": "DERNANCOURT", - "nomCommune": "DERNANCOURT" + "codePostal": "68170", + "codeCommune": "68278", + "libelleAcheminement": "RIXHEIM", + "nomCommune": "RIXHEIM" }, { - "codePostal": "73140", - "codeCommune": "73261", - "libelleAcheminement": "ST MICHEL DE MAURIENNE", - "nomCommune": "ST MICHEL DE MAURIENNE" + "codePostal": "80160", + "codeCommune": "80317", + "libelleAcheminement": "FLEURY", + "nomCommune": "FLEURY" }, { - "codePostal": "23320", - "codeCommune": "23242", - "libelleAcheminement": "ST SILVAIN MONTAIGUT", - "nomCommune": "ST SILVAIN MONTAIGUT" + "codePostal": "70600", + "codeCommune": "70247", + "libelleAcheminement": "FOUVENT ST ANDOCHE", + "nomCommune": "FOUVENT ST ANDOCHE" }, { - "codePostal": "79290", - "codeCommune": "79014", - "libelleAcheminement": "LORETZ D ARGENTON", - "nomCommune": "LORETZ D ARGENTON" + "codePostal": "80160", + "codeCommune": "80211", + "libelleAcheminement": "CONTY", + "nomCommune": "CONTY" }, { - "codePostal": "80120", - "codeCommune": "80244", - "libelleAcheminement": "DOMINOIS", - "nomCommune": "DOMINOIS" + "codePostal": "67130", + "codeCommune": "67066", + "libelleAcheminement": "LA BROQUE", + "nomCommune": "LA BROQUE" }, { - "codePostal": "73300", - "codeCommune": "73267", - "libelleAcheminement": "ST PANCRACE", - "nomCommune": "ST PANCRACE" + "codePostal": "68210", + "codeCommune": "68282", + "libelleAcheminement": "ROMAGNY", + "nomCommune": "ROMAGNY" }, { - "codePostal": "23480", - "codeCommune": "23246", - "libelleAcheminement": "ST SULPICE LES CHAMPS", - "nomCommune": "ST SULPICE LES CHAMPS" + "codePostal": "80250", + "codeCommune": "80321", + "libelleAcheminement": "FOLLEVILLE", + "nomCommune": "FOLLEVILLE" }, { - "codePostal": "79170", - "codeCommune": "79015", - "libelleAcheminement": "ASNIERES EN POITOU", - "nomCommune": "ASNIERES EN POITOU" + "codePostal": "70240", + "codeCommune": "70263", + "libelleAcheminement": "GENEVREY", + "nomCommune": "GENEVREY" }, { - "codePostal": "80470", - "codeCommune": "80256", - "libelleAcheminement": "DREUIL LES AMIENS", - "nomCommune": "DREUIL LES AMIENS" + "codePostal": "80300", + "codeCommune": "80216", + "libelleAcheminement": "COURCELETTE", + "nomCommune": "COURCELETTE" }, { - "codePostal": "73170", - "codeCommune": "73271", - "libelleAcheminement": "ST PIERRE D ALVEY", - "nomCommune": "ST PIERRE D ALVEY" + "codePostal": "67570", + "codeCommune": "67066", + "libelleAcheminement": "LA BROQUE", + "nomCommune": "LA BROQUE" }, { - "codePostal": "23170", - "codeCommune": "23251", - "libelleAcheminement": "TARDES", - "nomCommune": "TARDES" + "codePostal": "68580", + "codeCommune": "68305", + "libelleAcheminement": "SEPPOIS LE BAS", + "nomCommune": "SEPPOIS LE BAS" }, { - "codePostal": "79390", - "codeCommune": "79019", - "libelleAcheminement": "AUBIGNY", - "nomCommune": "AUBIGNY" + "codePostal": "80700", + "codeCommune": "80322", + "libelleAcheminement": "FONCHES FONCHETTE", + "nomCommune": "FONCHES FONCHETTE" }, { - "codePostal": "80580", - "codeCommune": "80262", - "libelleAcheminement": "EAUCOURT SUR SOMME", - "nomCommune": "EAUCOURT SUR SOMME" + "codePostal": "70110", + "codeCommune": "70273", + "libelleAcheminement": "GRAMMONT", + "nomCommune": "GRAMMONT" }, { - "codePostal": "73310", - "codeCommune": "73273", - "libelleAcheminement": "ST PIERRE DE CURTILLE", - "nomCommune": "ST PIERRE DE CURTILLE" + "codePostal": "80560", + "codeCommune": "80217", + "libelleAcheminement": "COURCELLES AU BOIS", + "nomCommune": "COURCELLES AU BOIS" }, { - "codePostal": "23170", - "codeCommune": "23259", - "libelleAcheminement": "VERNEIGES", - "nomCommune": "VERNEIGES" + "codePostal": "67350", + "codeCommune": "67068", + "libelleAcheminement": "BUSWILLER", + "nomCommune": "BUSWILLER" }, { - "codePostal": "79600", - "codeCommune": "79022", - "libelleAcheminement": "AVAILLES THOUARSAIS", - "nomCommune": "AVAILLES THOUARSAIS" + "codePostal": "68510", + "codeCommune": "68309", + "libelleAcheminement": "SIERENTZ", + "nomCommune": "SIERENTZ" }, { - "codePostal": "80300", - "codeCommune": "80266", - "libelleAcheminement": "ENGLEBELMER", - "nomCommune": "ENGLEBELMER" + "codePostal": "80500", + "codeCommune": "80326", + "libelleAcheminement": "FONTAINE SOUS MONTDIDIER", + "nomCommune": "FONTAINE SOUS MONTDIDIER" }, { - "codePostal": "73200", - "codeCommune": "73292", - "libelleAcheminement": "THENESOL", - "nomCommune": "THENESOL" + "codePostal": "70120", + "codeCommune": "70274", + "libelleAcheminement": "GRANDECOURT", + "nomCommune": "GRANDECOURT" }, { - "codePostal": "24460", - "codeCommune": "24002", - "libelleAcheminement": "AGONAC", - "nomCommune": "AGONAC" + "codePostal": "80190", + "codeCommune": "80224", + "libelleAcheminement": "CRESSY OMENCOURT", + "nomCommune": "CRESSY OMENCOURT" }, { - "codePostal": "79300", - "codeCommune": "79038", - "libelleAcheminement": "BOISME", - "nomCommune": "BOISME" + "codePostal": "67160", + "codeCommune": "67074", + "libelleAcheminement": "CLEEBOURG", + "nomCommune": "CLEEBOURG" }, { - "codePostal": "80580", - "codeCommune": "80268", - "libelleAcheminement": "EPAGNE EPAGNETTE", - "nomCommune": "EPAGNE EPAGNETTE" + "codePostal": "68380", + "codeCommune": "68311", + "libelleAcheminement": "SONDERNACH", + "nomCommune": "SONDERNACH" }, { - "codePostal": "73230", - "codeCommune": "73293", - "libelleAcheminement": "THOIRY", - "nomCommune": "THOIRY" + "codePostal": "80150", + "codeCommune": "80331", + "libelleAcheminement": "FOREST L ABBAYE", + "nomCommune": "FOREST L ABBAYE" }, { - "codePostal": "24270", - "codeCommune": "24008", - "libelleAcheminement": "ANGOISSE", - "nomCommune": "ANGOISSE" + "codePostal": "70700", + "codeCommune": "70282", + "libelleAcheminement": "GY", + "nomCommune": "GY" }, { - "codePostal": "79260", - "codeCommune": "79048", - "libelleAcheminement": "LA CRECHE", - "nomCommune": "LA CRECHE" + "codePostal": "80550", + "codeCommune": "80228", + "libelleAcheminement": "LE CROTOY", + "nomCommune": "LE CROTOY" }, { - "codePostal": "80690", - "codeCommune": "80281", - "libelleAcheminement": "ERGNIES", - "nomCommune": "ERGNIES" + "codePostal": "67510", + "codeCommune": "67075", + "libelleAcheminement": "CLIMBACH", + "nomCommune": "CLIMBACH" }, { - "codePostal": "73790", - "codeCommune": "73298", - "libelleAcheminement": "TOURS EN SAVOIE", - "nomCommune": "TOURS EN SAVOIE" + "codePostal": "68780", + "codeCommune": "68313", + "libelleAcheminement": "SOPPE LE BAS", + "nomCommune": "SOPPE LE BAS" }, { - "codePostal": "24420", - "codeCommune": "24011", - "libelleAcheminement": "ANTONNE ET TRIGONANT", - "nomCommune": "ANTONNE ET TRIGONANT" + "codePostal": "80120", + "codeCommune": "80333", + "libelleAcheminement": "FORT MAHON PLAGE", + "nomCommune": "FORT MAHON PLAGE" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "70800", + "codeCommune": "70284", + "libelleAcheminement": "HAUTEVELLE", + "nomCommune": "HAUTEVELLE" }, { - "codePostal": "80250", - "codeCommune": "80283", - "libelleAcheminement": "ESCLAINVILLERS", - "nomCommune": "ESCLAINVILLERS" + "codePostal": "80310", + "codeCommune": "80229", + "libelleAcheminement": "CROUY ST PIERRE", + "nomCommune": "CROUY ST PIERRE" }, { - "codePostal": "73100", - "codeCommune": "73300", - "libelleAcheminement": "TRESSERVE", - "nomCommune": "TRESSERVE" + "codePostal": "67110", + "codeCommune": "67083", + "libelleAcheminement": "DAMBACH", + "nomCommune": "DAMBACH" }, { - "codePostal": "24300", - "codeCommune": "24016", - "libelleAcheminement": "AUGIGNAC", - "nomCommune": "AUGIGNAC" + "codePostal": "68230", + "codeCommune": "68316", + "libelleAcheminement": "SOULTZBACH LES BAINS", + "nomCommune": "SOULTZBACH LES BAINS" }, { - "codePostal": "79370", - "codeCommune": "79061", - "libelleAcheminement": "CELLES SUR BELLE", - "nomCommune": "CELLES SUR BELLE" + "codePostal": "80690", + "codeCommune": "80344", + "libelleAcheminement": "FRANCIERES", + "nomCommune": "FRANCIERES" }, { - "codePostal": "80500", - "codeCommune": "80293", - "libelleAcheminement": "ETELFAY", - "nomCommune": "ETELFAY" + "codePostal": "70400", + "codeCommune": "70285", + "libelleAcheminement": "HERICOURT", + "nomCommune": "HERICOURT" }, { - "codePostal": "73110", - "codeCommune": "73302", - "libelleAcheminement": "LA TRINITE", - "nomCommune": "LA TRINITE" + "codePostal": "80190", + "codeCommune": "80230", + "libelleAcheminement": "CURCHY", + "nomCommune": "CURCHY" }, { - "codePostal": "24210", - "codeCommune": "24020", - "libelleAcheminement": "LA BACHELLERIE", - "nomCommune": "LA BACHELLERIE" + "codePostal": "67110", + "codeCommune": "67083", + "libelleAcheminement": "DAMBACH", + "nomCommune": "DAMBACH" }, { - "codePostal": "79140", - "codeCommune": "79062", - "libelleAcheminement": "CERIZAY", - "nomCommune": "CERIZAY" + "codePostal": "68140", + "codeCommune": "68317", + "libelleAcheminement": "SOULTZEREN", + "nomCommune": "SOULTZEREN" }, { - "codePostal": "80200", - "codeCommune": "80307", - "libelleAcheminement": "FEUILLERES", - "nomCommune": "FEUILLERES" + "codePostal": "80160", + "codeCommune": "80352", + "libelleAcheminement": "FREMONTIERS", + "nomCommune": "FREMONTIERS" }, { - "codePostal": "73460", - "codeCommune": "73312", - "libelleAcheminement": "VERRENS ARVEY", - "nomCommune": "VERRENS ARVEY" + "codePostal": "70400", + "codeCommune": "70285", + "libelleAcheminement": "HERICOURT", + "nomCommune": "HERICOURT" }, { - "codePostal": "24150", - "codeCommune": "24027", - "libelleAcheminement": "BAYAC", - "nomCommune": "BAYAC" + "codePostal": "80360", + "codeCommune": "80231", + "libelleAcheminement": "CURLU", + "nomCommune": "CURLU" }, { - "codePostal": "79500", - "codeCommune": "79064", - "libelleAcheminement": "FONTIVILLIE", - "nomCommune": "FONTIVILLIE" + "codePostal": "67350", + "codeCommune": "67087", + "libelleAcheminement": "DAUENDORF", + "nomCommune": "DAUENDORF" }, { - "codePostal": "80500", - "codeCommune": "80311", - "libelleAcheminement": "FIGNIERES", - "nomCommune": "FIGNIERES" + "codePostal": "68570", + "codeCommune": "68318", + "libelleAcheminement": "SOULTZMATT", + "nomCommune": "SOULTZMATT" }, { - "codePostal": "73800", - "codeCommune": "73314", - "libelleAcheminement": "VILLARD D HERY", - "nomCommune": "VILLARD D HERY" + "codePostal": "80140", + "codeCommune": "80355", + "libelleAcheminement": "FRESNEVILLE", + "nomCommune": "FRESNEVILLE" }, { - "codePostal": "24440", - "codeCommune": "24028", - "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", - "nomCommune": "BEAUMONTOIS EN PERIGORD" + "codePostal": "70400", + "codeCommune": "70285", + "libelleAcheminement": "HERICOURT", + "nomCommune": "HERICOURT" }, { - "codePostal": "79200", - "codeCommune": "79071", - "libelleAcheminement": "LA CHAPELLE BERTRAND", - "nomCommune": "LA CHAPELLE BERTRAND" + "codePostal": "80620", + "codeCommune": "80241", + "libelleAcheminement": "DOMART EN PONTHIEU", + "nomCommune": "DOMART EN PONTHIEU" }, { - "codePostal": "80200", - "codeCommune": "80313", - "libelleAcheminement": "FLAUCOURT", - "nomCommune": "FLAUCOURT" + "codePostal": "67220", + "codeCommune": "67092", + "libelleAcheminement": "DIEFFENBACH AU VAL", + "nomCommune": "DIEFFENBACH AU VAL" }, { - "codePostal": "73390", - "codeCommune": "73315", - "libelleAcheminement": "VILLARD LEGER", - "nomCommune": "VILLARD LEGER" + "codePostal": "68850", + "codeCommune": "68321", + "libelleAcheminement": "STAFFELFELDEN", + "nomCommune": "STAFFELFELDEN" }, { - "codePostal": "24170", - "codeCommune": "24035", - "libelleAcheminement": "PAYS DE BELVES", - "nomCommune": "PAYS DE BELVES" + "codePostal": "80390", + "codeCommune": "80360", + "libelleAcheminement": "FRESSENNEVILLE", + "nomCommune": "FRESSENNEVILLE" }, { - "codePostal": "79700", - "codeCommune": "79079", - "libelleAcheminement": "MAULEON", - "nomCommune": "MAULEON" + "codePostal": "70150", + "codeCommune": "70286", + "libelleAcheminement": "HUGIER", + "nomCommune": "HUGIER" }, { - "codePostal": "80420", - "codeCommune": "80318", - "libelleAcheminement": "FLIXECOURT", - "nomCommune": "FLIXECOURT" + "codePostal": "80980", + "codeCommune": "80247", + "libelleAcheminement": "DOMPIERRE BECQUINCOURT", + "nomCommune": "DOMPIERRE BECQUINCOURT" }, { - "codePostal": "73270", - "codeCommune": "73317", - "libelleAcheminement": "VILLARD SUR DORON", - "nomCommune": "VILLARD SUR DORON" + "codePostal": "67430", + "codeCommune": "67095", + "libelleAcheminement": "DIEMERINGEN", + "nomCommune": "DIEMERINGEN" }, { - "codePostal": "24170", - "codeCommune": "24035", - "libelleAcheminement": "PAYS DE BELVES", - "nomCommune": "PAYS DE BELVES" + "codePostal": "68510", + "codeCommune": "68327", + "libelleAcheminement": "STETTEN", + "nomCommune": "STETTEN" }, { - "codePostal": "79200", - "codeCommune": "79080", - "libelleAcheminement": "CHATILLON SUR THOUET", - "nomCommune": "CHATILLON SUR THOUET" + "codePostal": "80220", + "codeCommune": "80362", + "libelleAcheminement": "FRETTEMEULE", + "nomCommune": "FRETTEMEULE" }, { - "codePostal": "80170", - "codeCommune": "80320", - "libelleAcheminement": "FOLIES", - "nomCommune": "FOLIES" + "codePostal": "70190", + "codeCommune": "70288", + "libelleAcheminement": "HYET", + "nomCommune": "HYET" }, { - "codePostal": "73300", - "codeCommune": "73320", - "libelleAcheminement": "VILLARGONDRAN", - "nomCommune": "VILLARGONDRAN" + "codePostal": "80370", + "codeCommune": "80270", + "libelleAcheminement": "EPECAMPS", + "nomCommune": "EPECAMPS" }, { - "codePostal": "24550", - "codeCommune": "24039", - "libelleAcheminement": "BESSE", - "nomCommune": "BESSE" + "codePostal": "67370", + "codeCommune": "67097", + "libelleAcheminement": "DINGSHEIM", + "nomCommune": "DINGSHEIM" }, { - "codePostal": "79180", - "codeCommune": "79081", - "libelleAcheminement": "CHAURAY", - "nomCommune": "CHAURAY" + "codePostal": "68590", + "codeCommune": "68335", + "libelleAcheminement": "THANNENKIRCH", + "nomCommune": "THANNENKIRCH" }, { - "codePostal": "80150", - "codeCommune": "80331", - "libelleAcheminement": "FOREST L ABBAYE", - "nomCommune": "FOREST L ABBAYE" + "codePostal": "80460", + "codeCommune": "80364", + "libelleAcheminement": "FRIAUCOURT", + "nomCommune": "FRIAUCOURT" }, { - "codePostal": "73420", - "codeCommune": "73328", - "libelleAcheminement": "VIVIERS DU LAC", - "nomCommune": "VIVIERS DU LAC" + "codePostal": "70800", + "codeCommune": "70290", + "libelleAcheminement": "JASNEY", + "nomCommune": "JASNEY" }, { - "codePostal": "24310", - "codeCommune": "24042", - "libelleAcheminement": "BIRAS", - "nomCommune": "BIRAS" + "codePostal": "80290", + "codeCommune": "80273", + "libelleAcheminement": "EPLESSIER", + "nomCommune": "EPLESSIER" }, { - "codePostal": "79120", - "codeCommune": "79084", - "libelleAcheminement": "CHENAY", - "nomCommune": "CHENAY" + "codePostal": "67160", + "codeCommune": "67104", + "libelleAcheminement": "DRACHENBRONN BIRLENBACH", + "nomCommune": "DRACHENBRONN BIRLENBACH" }, { - "codePostal": "80120", - "codeCommune": "80333", - "libelleAcheminement": "FORT MAHON PLAGE", - "nomCommune": "FORT MAHON PLAGE" + "codePostal": "68480", + "codeCommune": "68347", + "libelleAcheminement": "VIEUX FERRETTE", + "nomCommune": "VIEUX FERRETTE" }, { - "codePostal": "74100", - "codeCommune": "74008", - "libelleAcheminement": "AMBILLY", - "nomCommune": "AMBILLY" + "codePostal": "80340", + "codeCommune": "80367", + "libelleAcheminement": "FRISE", + "nomCommune": "FRISE" }, { - "codePostal": "24230", - "codeCommune": "24048", - "libelleAcheminement": "BONNEVILLE ST AVIT DE FUMADIERES", - "nomCommune": "BONNEVILLE ET ST AVIT DE FUMADIERES" + "codePostal": "70500", + "codeCommune": "70291", + "libelleAcheminement": "JONVELLE", + "nomCommune": "JONVELLE" }, { - "codePostal": "79110", - "codeCommune": "79106", - "libelleAcheminement": "COUTURE D ARGENSON", - "nomCommune": "COUTURE D ARGENSON" + "codePostal": "80290", + "codeCommune": "80276", + "libelleAcheminement": "EQUENNES ERAMECOURT", + "nomCommune": "EQUENNES ERAMECOURT" }, { - "codePostal": "80700", - "codeCommune": "80347", - "libelleAcheminement": "FRANSART", - "nomCommune": "FRANSART" + "codePostal": "67270", + "codeCommune": "67107", + "libelleAcheminement": "DUNTZENHEIM", + "nomCommune": "DUNTZENHEIM" }, { - "codePostal": "74350", - "codeCommune": "74009", - "libelleAcheminement": "ANDILLY", - "nomCommune": "ANDILLY" + "codePostal": "68800", + "codeCommune": "68348", + "libelleAcheminement": "VIEUX THANN", + "nomCommune": "VIEUX THANN" }, { - "codePostal": "24300", - "codeCommune": "24056", - "libelleAcheminement": "LE BOURDEIX", - "nomCommune": "LE BOURDEIX" + "codePostal": "80150", + "codeCommune": "80371", + "libelleAcheminement": "FROYELLES", + "nomCommune": "FROYELLES" }, { - "codePostal": "79390", - "codeCommune": "79108", - "libelleAcheminement": "DOUX", - "nomCommune": "DOUX" + "codePostal": "70600", + "codeCommune": "70297", + "libelleAcheminement": "LARRET", + "nomCommune": "LARRET" }, { - "codePostal": "80620", - "codeCommune": "80348", - "libelleAcheminement": "FRANSU", - "nomCommune": "FRANSU" + "codePostal": "80580", + "codeCommune": "80282", + "libelleAcheminement": "ERONDELLE", + "nomCommune": "ERONDELLE" }, { - "codePostal": "74000", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "67201", + "codeCommune": "67118", + "libelleAcheminement": "ECKBOLSHEIM", + "nomCommune": "ECKBOLSHEIM" }, { - "codePostal": "24250", - "codeCommune": "24063", - "libelleAcheminement": "BOUZIC", - "nomCommune": "BOUZIC" + "codePostal": "68420", + "codeCommune": "68350", + "libelleAcheminement": "VOEGTLINSHOFFEN", + "nomCommune": "VOEGTLINSHOFFEN" }, { - "codePostal": "79410", - "codeCommune": "79109", - "libelleAcheminement": "ECHIRE", - "nomCommune": "ECHIRE" + "codePostal": "80490", + "codeCommune": "80372", + "libelleAcheminement": "FRUCOURT", + "nomCommune": "FRUCOURT" }, { - "codePostal": "80160", - "codeCommune": "80349", - "libelleAcheminement": "FRANSURES", - "nomCommune": "FRANSURES" + "codePostal": "70190", + "codeCommune": "70301", + "libelleAcheminement": "LIEFFRANS", + "nomCommune": "LIEFFRANS" }, { - "codePostal": "74370", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "80250", + "codeCommune": "80283", + "libelleAcheminement": "ESCLAINVILLERS", + "nomCommune": "ESCLAINVILLERS" }, { - "codePostal": "24310", - "codeCommune": "24064", - "libelleAcheminement": "BRANTOME EN PERIGORD", - "nomCommune": "BRANTOME EN PERIGORD" + "codePostal": "67550", + "codeCommune": "67119", + "libelleAcheminement": "ECKWERSHEIM", + "nomCommune": "ECKWERSHEIM" }, { - "codePostal": "79170", - "codeCommune": "79111", - "libelleAcheminement": "ENSIGNE", - "nomCommune": "ENSIGNE" + "codePostal": "68600", + "codeCommune": "68352", + "libelleAcheminement": "VOLGELSHEIM", + "nomCommune": "VOLGELSHEIM" }, { - "codePostal": "80140", - "codeCommune": "80355", - "libelleAcheminement": "FRESNEVILLE", - "nomCommune": "FRESNEVILLE" + "codePostal": "80150", + "codeCommune": "80374", + "libelleAcheminement": "GAPENNES", + "nomCommune": "GAPENNES" }, { - "codePostal": "74600", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "70200", + "codeCommune": "70304", + "libelleAcheminement": "LINEXERT", + "nomCommune": "LINEXERT" }, { - "codePostal": "24310", - "codeCommune": "24064", - "libelleAcheminement": "BRANTOME EN PERIGORD", - "nomCommune": "BRANTOME EN PERIGORD" + "codePostal": "80400", + "codeCommune": "80284", + "libelleAcheminement": "ESMERY HALLON", + "nomCommune": "ESMERY HALLON" }, { - "codePostal": "79160", - "codeCommune": "79117", - "libelleAcheminement": "FAYE SUR ARDIN", - "nomCommune": "FAYE SUR ARDIN" + "codePostal": "67140", + "codeCommune": "67120", + "libelleAcheminement": "EICHHOFFEN", + "nomCommune": "EICHHOFFEN" }, { - "codePostal": "80390", - "codeCommune": "80360", - "libelleAcheminement": "FRESSENNEVILLE", - "nomCommune": "FRESSENNEVILLE" + "codePostal": "68640", + "codeCommune": "68355", + "libelleAcheminement": "WALDIGHOFEN", + "nomCommune": "WALDIGHOFEN" }, { - "codePostal": "74200", - "codeCommune": "74013", - "libelleAcheminement": "ANTHY SUR LEMAN", - "nomCommune": "ANTHY SUR LEMAN" + "codePostal": "80800", + "codeCommune": "80376", + "libelleAcheminement": "GENTELLES", + "nomCommune": "GENTELLES" }, { - "codePostal": "24310", - "codeCommune": "24064", - "libelleAcheminement": "BRANTOME EN PERIGORD", - "nomCommune": "BRANTOME EN PERIGORD" + "codePostal": "70100", + "codeCommune": "70305", + "libelleAcheminement": "LOEUILLEY", + "nomCommune": "LOEUILLEY" }, { - "codePostal": "79380", - "codeCommune": "79123", - "libelleAcheminement": "LA FORET SUR SEVRE", - "nomCommune": "LA FORET SUR SEVRE" + "codePostal": "80190", + "codeCommune": "80292", + "libelleAcheminement": "ETALON", + "nomCommune": "ETALON" }, { - "codePostal": "80140", - "codeCommune": "80361", - "libelleAcheminement": "FRETTECUISSE", - "nomCommune": "FRETTECUISSE" + "codePostal": "67150", + "codeCommune": "67130", + "libelleAcheminement": "ERSTEIN", + "nomCommune": "ERSTEIN" }, { - "codePostal": "74300", - "codeCommune": "74014", - "libelleAcheminement": "ARACHES LA FRASSE", - "nomCommune": "ARACHES LA FRASSE" + "codePostal": "68130", + "codeCommune": "68356", + "libelleAcheminement": "WALHEIM", + "nomCommune": "WALHEIM" }, { - "codePostal": "24550", - "codeCommune": "24075", - "libelleAcheminement": "CAMPAGNAC LES QUERCY", - "nomCommune": "CAMPAGNAC LES QUERCY" + "codePostal": "80690", + "codeCommune": "80380", + "libelleAcheminement": "GORENFLOS", + "nomCommune": "GORENFLOS" }, { - "codePostal": "79380", - "codeCommune": "79123", - "libelleAcheminement": "LA FORET SUR SEVRE", - "nomCommune": "LA FORET SUR SEVRE" + "codePostal": "70200", + "codeCommune": "70310", + "libelleAcheminement": "LURE", + "nomCommune": "LURE" }, { - "codePostal": "80300", - "codeCommune": "80366", - "libelleAcheminement": "FRICOURT", - "nomCommune": "FRICOURT" + "codePostal": "80830", + "codeCommune": "80296", + "libelleAcheminement": "L ETOILE", + "nomCommune": "L ETOILE" }, { - "codePostal": "74300", - "codeCommune": "74014", - "libelleAcheminement": "ARACHES LA FRASSE", - "nomCommune": "ARACHES LA FRASSE" + "codePostal": "67114", + "codeCommune": "67131", + "libelleAcheminement": "ESCHAU", + "nomCommune": "ESCHAU" }, { - "codePostal": "24200", - "codeCommune": "24082", - "libelleAcheminement": "CARSAC AILLAC", - "nomCommune": "CARSAC AILLAC" + "codePostal": "68510", + "codeCommune": "68357", + "libelleAcheminement": "WALTENHEIM", + "nomCommune": "WALTENHEIM" }, { - "codePostal": "79360", - "codeCommune": "79126", - "libelleAcheminement": "LES FOSSES", - "nomCommune": "LES FOSSES" + "codePostal": "80500", + "codeCommune": "80386", + "libelleAcheminement": "GRATIBUS", + "nomCommune": "GRATIBUS" }, { - "codePostal": "80340", - "codeCommune": "80367", - "libelleAcheminement": "FRISE", - "nomCommune": "FRISE" + "codePostal": "70400", + "codeCommune": "70312", + "libelleAcheminement": "LUZE", + "nomCommune": "LUZE" }, { - "codePostal": "74160", - "codeCommune": "74016", - "libelleAcheminement": "ARCHAMPS", - "nomCommune": "ARCHAMPS" + "codePostal": "80250", + "codeCommune": "80299", + "libelleAcheminement": "LA FALOISE", + "nomCommune": "LA FALOISE" }, { - "codePostal": "24220", - "codeCommune": "24087", - "libelleAcheminement": "CASTELS ET BEZENAC", - "nomCommune": "CASTELS ET BEZENAC" + "codePostal": "67320", + "codeCommune": "67133", + "libelleAcheminement": "ESCHBOURG", + "nomCommune": "ESCHBOURG" }, { - "codePostal": "79270", - "codeCommune": "79130", - "libelleAcheminement": "FRONTENAY ROHAN ROHAN", - "nomCommune": "FRONTENAY ROHAN ROHAN" + "codePostal": "68230", + "codeCommune": "68358", + "libelleAcheminement": "WASSERBOURG", + "nomCommune": "WASSERBOURG" }, { - "codePostal": "80490", - "codeCommune": "80372", - "libelleAcheminement": "FRUCOURT", - "nomCommune": "FRUCOURT" + "codePostal": "80680", + "codeCommune": "80387", + "libelleAcheminement": "GRATTEPANCHE", + "nomCommune": "GRATTEPANCHE" }, { - "codePostal": "74370", - "codeCommune": "74019", - "libelleAcheminement": "ARGONAY", - "nomCommune": "ARGONAY" + "codePostal": "70230", + "codeCommune": "70335", + "libelleAcheminement": "MAUSSANS", + "nomCommune": "MAUSSANS" }, { - "codePostal": "24800", - "codeCommune": "24095", - "libelleAcheminement": "CHALAIS", - "nomCommune": "CHALAIS" + "codePostal": "80500", + "codeCommune": "80306", + "libelleAcheminement": "FESCAMPS", + "nomCommune": "FESCAMPS" }, { - "codePostal": "79200", - "codeCommune": "79135", - "libelleAcheminement": "GOURGE", - "nomCommune": "GOURGE" + "codePostal": "67117", + "codeCommune": "67138", + "libelleAcheminement": "FESSENHEIM LE BAS", + "nomCommune": "FESSENHEIM LE BAS" }, { - "codePostal": "80150", - "codeCommune": "80374", - "libelleAcheminement": "GAPENNES", - "nomCommune": "GAPENNES" + "codePostal": "68700", + "codeCommune": "68359", + "libelleAcheminement": "WATTWILLER", + "nomCommune": "WATTWILLER" }, { - "codePostal": "74230", - "codeCommune": "74027", - "libelleAcheminement": "LA BALME DE THUY", - "nomCommune": "LA BALME DE THUY" + "codePostal": "80700", + "codeCommune": "80391", + "libelleAcheminement": "GRIVILLERS", + "nomCommune": "GRIVILLERS" }, { - "codePostal": "24360", - "codeCommune": "24100", - "libelleAcheminement": "CHAMPNIERS ET REILHAC", - "nomCommune": "CHAMPNIERS ET REILHAC" + "codePostal": "70160", + "codeCommune": "70343", + "libelleAcheminement": "MERSUAY", + "nomCommune": "MERSUAY" }, { - "codePostal": "79360", - "codeCommune": "79137", - "libelleAcheminement": "GRANZAY GRIPT", - "nomCommune": "GRANZAY GRIPT" + "codePostal": "80210", + "codeCommune": "80308", + "libelleAcheminement": "FEUQUIERES EN VIMEU", + "nomCommune": "FEUQUIERES EN VIMEU" }, { - "codePostal": "80370", - "codeCommune": "80381", - "libelleAcheminement": "GORGES", - "nomCommune": "GORGES" + "codePostal": "67270", + "codeCommune": "67163", + "libelleAcheminement": "GOUGENHEIM", + "nomCommune": "GOUGENHEIM" }, { - "codePostal": "74910", - "codeCommune": "74029", - "libelleAcheminement": "BASSY", - "nomCommune": "BASSY" + "codePostal": "68220", + "codeCommune": "68362", + "libelleAcheminement": "WENTZWILLER", + "nomCommune": "WENTZWILLER" }, { - "codePostal": "24470", - "codeCommune": "24101", - "libelleAcheminement": "CHAMPS ROMAIN", - "nomCommune": "CHAMPS ROMAIN" + "codePostal": "80150", + "codeCommune": "80396", + "libelleAcheminement": "GUESCHART", + "nomCommune": "GUESCHART" }, { - "codePostal": "79220", - "codeCommune": "79139", - "libelleAcheminement": "LES GROSEILLERS", - "nomCommune": "LES GROSEILLERS" + "codePostal": "70200", + "codeCommune": "70348", + "libelleAcheminement": "MOFFANS ET VACHERESSE", + "nomCommune": "MOFFANS ET VACHERESSE" }, { - "codePostal": "80360", - "codeCommune": "80397", - "libelleAcheminement": "GUEUDECOURT", - "nomCommune": "GUEUDECOURT" + "codePostal": "80200", + "codeCommune": "80313", + "libelleAcheminement": "FLAUCOURT", + "nomCommune": "FLAUCOURT" }, { - "codePostal": "74250", - "codeCommune": "74038", - "libelleAcheminement": "BOGEVE", - "nomCommune": "BOGEVE" + "codePostal": "67500", + "codeCommune": "67180", + "libelleAcheminement": "HAGUENAU", + "nomCommune": "HAGUENAU" }, { - "codePostal": "24350", - "codeCommune": "24108", - "libelleAcheminement": "LA CHAPELLE GONAGUET", - "nomCommune": "LA CHAPELLE GONAGUET" + "codePostal": "68210", + "codeCommune": "68378", + "libelleAcheminement": "WOLFERSDORF", + "nomCommune": "WOLFERSDORF" }, { - "codePostal": "79110", - "codeCommune": "79140", - "libelleAcheminement": "VALDELAUME", - "nomCommune": "VALDELAUME" + "codePostal": "80250", + "codeCommune": "80403", + "libelleAcheminement": "GUYENCOURT SUR NOYE", + "nomCommune": "GUYENCOURT SUR NOYE" }, { - "codePostal": "80540", - "codeCommune": "80399", - "libelleAcheminement": "GUIGNEMICOURT", - "nomCommune": "GUIGNEMICOURT" + "codePostal": "70240", + "codeCommune": "70351", + "libelleAcheminement": "MOLLANS", + "nomCommune": "MOLLANS" }, { - "codePostal": "74380", - "codeCommune": "74040", - "libelleAcheminement": "BONNE", - "nomCommune": "BONNE" + "codePostal": "80140", + "codeCommune": "80330", + "libelleAcheminement": "FORCEVILLE EN VIMEU", + "nomCommune": "FORCEVILLE EN VIMEU" }, { - "codePostal": "24320", - "codeCommune": "24109", - "libelleAcheminement": "LA CHAPELLE GRESIGNAC", - "nomCommune": "LA CHAPELLE GRESIGNAC" + "codePostal": "67980", + "codeCommune": "67182", + "libelleAcheminement": "HANGENBIETEN", + "nomCommune": "HANGENBIETEN" }, { - "codePostal": "79230", - "codeCommune": "79144", - "libelleAcheminement": "JUSCORPS", - "nomCommune": "JUSCORPS" + "codePostal": "68480", + "codeCommune": "68380", + "libelleAcheminement": "WOLSCHWILLER", + "nomCommune": "WOLSCHWILLER" }, { - "codePostal": "80490", - "codeCommune": "80406", - "libelleAcheminement": "HALLENCOURT", - "nomCommune": "HALLENCOURT" + "codePostal": "80320", + "codeCommune": "80409", + "libelleAcheminement": "HALLU", + "nomCommune": "HALLU" }, { - "codePostal": "74160", - "codeCommune": "74044", - "libelleAcheminement": "BOSSEY", - "nomCommune": "BOSSEY" + "codePostal": "70190", + "codeCommune": "70355", + "libelleAcheminement": "MONTARLOT LES RIOZ", + "nomCommune": "MONTARLOT LES RIOZ" }, { - "codePostal": "24120", - "codeCommune": "24117", - "libelleAcheminement": "LES COTEAUX PERIGOURDINS", - "nomCommune": "LES COTEAUX PERIGOURDINS" + "codePostal": "80120", + "codeCommune": "80332", + "libelleAcheminement": "FOREST MONTIERS", + "nomCommune": "FOREST MONTIERS" }, { - "codePostal": "79200", - "codeCommune": "79145", - "libelleAcheminement": "LAGEON", - "nomCommune": "LAGEON" + "codePostal": "67260", + "codeCommune": "67183", + "libelleAcheminement": "HARSKIRCHEN", + "nomCommune": "HARSKIRCHEN" }, { - "codePostal": "80800", - "codeCommune": "80411", - "libelleAcheminement": "LE HAMEL", - "nomCommune": "LE HAMEL" + "codePostal": "68440", + "codeCommune": "68386", + "libelleAcheminement": "ZIMMERSHEIM", + "nomCommune": "ZIMMERSHEIM" }, { - "codePostal": "74350", - "codeCommune": "74051", - "libelleAcheminement": "CERCIER", - "nomCommune": "CERCIER" + "codePostal": "80560", + "codeCommune": "80420", + "libelleAcheminement": "HARPONVILLE", + "nomCommune": "HARPONVILLE" }, { - "codePostal": "24390", - "codeCommune": "24120", - "libelleAcheminement": "CHERVEIX CUBAS", - "nomCommune": "CHERVEIX CUBAS" + "codePostal": "70000", + "codeCommune": "70358", + "libelleAcheminement": "MONTCEY", + "nomCommune": "MONTCEY" }, { - "codePostal": "79390", - "codeCommune": "79149", - "libelleAcheminement": "LHOUMOIS", - "nomCommune": "LHOUMOIS" + "codePostal": "80131", + "codeCommune": "80342", + "libelleAcheminement": "FRAMERVILLE RAINECOURT", + "nomCommune": "FRAMERVILLE RAINECOURT" }, { - "codePostal": "80240", - "codeCommune": "80413", - "libelleAcheminement": "HANCOURT", - "nomCommune": "HANCOURT" + "codePostal": "67360", + "codeCommune": "67186", + "libelleAcheminement": "HEGENEY", + "nomCommune": "HEGENEY" }, { - "codePostal": "74350", - "codeCommune": "74052", - "libelleAcheminement": "CERNEX", - "nomCommune": "CERNEX" + "codePostal": "69480", + "codeCommune": "69009", + "libelleAcheminement": "ANSE", + "nomCommune": "ANSE" }, { - "codePostal": "24640", - "codeCommune": "24121", - "libelleAcheminement": "CHOURGNAC", - "nomCommune": "CHOURGNAC" + "codePostal": "80800", + "codeCommune": "80426", + "libelleAcheminement": "HEILLY", + "nomCommune": "HEILLY" }, { - "codePostal": "79170", - "codeCommune": "79160", - "libelleAcheminement": "LUSSERAY", - "nomCommune": "LUSSERAY" + "codePostal": "70500", + "codeCommune": "70359", + "libelleAcheminement": "MONTCOURT", + "nomCommune": "MONTCOURT" }, { - "codePostal": "80134", - "codeCommune": "80415", - "libelleAcheminement": "HANGEST EN SANTERRE", - "nomCommune": "HANGEST EN SANTERRE" + "codePostal": "80140", + "codeCommune": "80343", + "libelleAcheminement": "FRAMICOURT", + "nomCommune": "FRAMICOURT" }, { - "codePostal": "74400", - "codeCommune": "74056", - "libelleAcheminement": "CHAMONIX MONT BLANC", - "nomCommune": "CHAMONIX MONT BLANC" + "codePostal": "67190", + "codeCommune": "67188", + "libelleAcheminement": "HEILIGENBERG", + "nomCommune": "HEILIGENBERG" }, { - "codePostal": "24300", - "codeCommune": "24131", - "libelleAcheminement": "CONNEZAC", - "nomCommune": "CONNEZAC" + "codePostal": "69210", + "codeCommune": "69010", + "libelleAcheminement": "L ARBRESLE", + "nomCommune": "L ARBRESLE" }, { - "codePostal": "79190", - "codeCommune": "79163", - "libelleAcheminement": "MAIRE LEVESCAULT", - "nomCommune": "MAIRE LEVESCAULT" + "codePostal": "80600", + "codeCommune": "80427", + "libelleAcheminement": "HEM HARDINVAL", + "nomCommune": "HEM HARDINVAL" }, { - "codePostal": "80560", - "codeCommune": "80425", - "libelleAcheminement": "HEDAUVILLE", - "nomCommune": "HEDAUVILLE" + "codePostal": "70700", + "codeCommune": "70366", + "libelleAcheminement": "VILLERS CHEMIN MONT LES ETRELLES", + "nomCommune": "VILLERS CHEMIN ET MONT LES ETRELLES" }, { - "codePostal": "74400", - "codeCommune": "74056", - "libelleAcheminement": "CHAMONIX MONT BLANC", - "nomCommune": "CHAMONIX MONT BLANC" + "codePostal": "80140", + "codeCommune": "80354", + "libelleAcheminement": "FRESNES TILLOLOY", + "nomCommune": "FRESNES TILLOLOY" }, { - "codePostal": "24560", - "codeCommune": "24132", - "libelleAcheminement": "CONNE DE LABARDE", - "nomCommune": "CONNE DE LABARDE" + "codePostal": "67850", + "codeCommune": "67194", + "libelleAcheminement": "HERRLISHEIM", + "nomCommune": "HERRLISHEIM" }, { - "codePostal": "79500", - "codeCommune": "79174", - "libelleAcheminement": "MELLE", - "nomCommune": "MELLE" + "codePostal": "69610", + "codeCommune": "69014", + "libelleAcheminement": "AVEIZE", + "nomCommune": "AVEIZE" }, { - "codePostal": "80190", - "codeCommune": "80433", - "libelleAcheminement": "HERLY", - "nomCommune": "HERLY" + "codePostal": "80260", + "codeCommune": "80431", + "libelleAcheminement": "HERISSART", + "nomCommune": "HERISSART" }, { - "codePostal": "74520", - "codeCommune": "74074", - "libelleAcheminement": "CHEVRIER", - "nomCommune": "CHEVRIER" + "codePostal": "70120", + "codeCommune": "70369", + "libelleAcheminement": "MONT ST LEGER", + "nomCommune": "MONT ST LEGER" }, { - "codePostal": "24450", - "codeCommune": "24133", - "libelleAcheminement": "LA COQUILLE", - "nomCommune": "LA COQUILLE" + "codePostal": "80140", + "codeCommune": "80356", + "libelleAcheminement": "FRESNOY ANDAINVILLE", + "nomCommune": "FRESNOY ANDAINVILLE" }, { - "codePostal": "79500", - "codeCommune": "79174", - "libelleAcheminement": "MELLE", - "nomCommune": "MELLE" + "codePostal": "67600", + "codeCommune": "67196", + "libelleAcheminement": "HILSENHEIM", + "nomCommune": "HILSENHEIM" }, { - "codePostal": "80122", - "codeCommune": "80438", - "libelleAcheminement": "HEUDICOURT", - "nomCommune": "HEUDICOURT" + "codePostal": "69620", + "codeCommune": "69017", + "libelleAcheminement": "BAGNOLS", + "nomCommune": "BAGNOLS" }, { - "codePostal": "74270", - "codeCommune": "74077", - "libelleAcheminement": "CLARAFOND ARCINE", - "nomCommune": "CLARAFOND ARCINE" + "codePostal": "80290", + "codeCommune": "80436", + "libelleAcheminement": "HESCAMPS", + "nomCommune": "HESCAMPS" }, { - "codePostal": "24750", - "codeCommune": "24135", - "libelleAcheminement": "CORNILLE", - "nomCommune": "CORNILLE" + "codePostal": "70120", + "codeCommune": "70373", + "libelleAcheminement": "LA ROCHE MOREY", + "nomCommune": "LA ROCHE MOREY" }, { - "codePostal": "79340", - "codeCommune": "79176", - "libelleAcheminement": "MENIGOUTE", - "nomCommune": "MENIGOUTE" + "codePostal": "80110", + "codeCommune": "80358", + "libelleAcheminement": "FRESNOY EN CHAUSSEE", + "nomCommune": "FRESNOY EN CHAUSSEE" }, { - "codePostal": "80370", - "codeCommune": "80439", - "libelleAcheminement": "HEUZECOURT", - "nomCommune": "HEUZECOURT" + "codePostal": "67290", + "codeCommune": "67198", + "libelleAcheminement": "HINSBOURG", + "nomCommune": "HINSBOURG" }, { - "codePostal": "74230", - "codeCommune": "74079", - "libelleAcheminement": "LES CLEFS", - "nomCommune": "LES CLEFS" + "codePostal": "69220", + "codeCommune": "69019", + "libelleAcheminement": "BELLEVILLE EN BEAUJOLAIS", + "nomCommune": "BELLEVILLE EN BEAUJOLAIS" }, { - "codePostal": "24420", - "codeCommune": "24137", - "libelleAcheminement": "COULAURES", - "nomCommune": "COULAURES" + "codePostal": "80640", + "codeCommune": "80443", + "libelleAcheminement": "HORNOY LE BOURG", + "nomCommune": "HORNOY LE BOURG" }, { - "codePostal": "79320", - "codeCommune": "79179", - "libelleAcheminement": "MONCOUTANT SUR SEVRE", - "nomCommune": "MONCOUTANT SUR SEVRE" + "codePostal": "70160", + "codeCommune": "70380", + "libelleAcheminement": "NEUREY EN VAUX", + "nomCommune": "NEUREY EN VAUX" }, { - "codePostal": "80400", - "codeCommune": "80442", - "libelleAcheminement": "HOMBLEUX", - "nomCommune": "HOMBLEUX" + "codePostal": "80300", + "codeCommune": "80366", + "libelleAcheminement": "FRICOURT", + "nomCommune": "FRICOURT" }, { - "codePostal": "74170", - "codeCommune": "74085", - "libelleAcheminement": "LES CONTAMINES MONTJOIE", - "nomCommune": "LES CONTAMINES MONTJOIE" + "codePostal": "67117", + "codeCommune": "67214", + "libelleAcheminement": "HURTIGHEIM", + "nomCommune": "HURTIGHEIM" }, { - "codePostal": "24660", - "codeCommune": "24138", - "libelleAcheminement": "COULOUNIEIX CHAMIERS", - "nomCommune": "COULOUNIEIX CHAMIERS" + "codePostal": "69690", + "codeCommune": "69021", + "libelleAcheminement": "BESSENAY", + "nomCommune": "BESSENAY" }, { - "codePostal": "79370", - "codeCommune": "79185", - "libelleAcheminement": "AIGONDIGNE", - "nomCommune": "AIGONDIGNE" + "codePostal": "80640", + "codeCommune": "80443", + "libelleAcheminement": "HORNOY LE BOURG", + "nomCommune": "HORNOY LE BOURG" }, { - "codePostal": "80400", - "codeCommune": "80442", - "libelleAcheminement": "HOMBLEUX", - "nomCommune": "HOMBLEUX" + "codePostal": "70600", + "codeCommune": "70402", + "libelleAcheminement": "OYRIERES", + "nomCommune": "OYRIERES" }, { - "codePostal": "74130", - "codeCommune": "74087", - "libelleAcheminement": "CONTAMINE SUR ARVE", - "nomCommune": "CONTAMINE SUR ARVE" + "codePostal": "80370", + "codeCommune": "80381", + "libelleAcheminement": "GORGES", + "nomCommune": "GORGES" }, { - "codePostal": "24430", - "codeCommune": "24139", - "libelleAcheminement": "COURSAC", - "nomCommune": "COURSAC" + "codePostal": "67230", + "codeCommune": "67216", + "libelleAcheminement": "HUTTENHEIM", + "nomCommune": "HUTTENHEIM" }, { - "codePostal": "79250", - "codeCommune": "79195", - "libelleAcheminement": "NUEIL LES AUBIERS", - "nomCommune": "NUEIL LES AUBIERS" + "codePostal": "69690", + "codeCommune": "69021", + "libelleAcheminement": "BESSENAY", + "nomCommune": "BESSENAY" }, { - "codePostal": "80640", - "codeCommune": "80443", - "libelleAcheminement": "HORNOY LE BOURG", - "nomCommune": "HORNOY LE BOURG" + "codePostal": "80500", + "codeCommune": "80453", + "libelleAcheminement": "LABOISSIERE EN SANTERRE", + "nomCommune": "LABOISSIERE EN SANTERRE" }, { - "codePostal": "74150", - "codeCommune": "74095", - "libelleAcheminement": "CREMPIGNY BONNEGUETE", - "nomCommune": "CREMPIGNY BONNEGUETE" + "codePostal": "70290", + "codeCommune": "70414", + "libelleAcheminement": "PLANCHER LES MINES", + "nomCommune": "PLANCHER LES MINES" }, { - "codePostal": "24380", - "codeCommune": "24146", - "libelleAcheminement": "CREYSSENSAC ET PISSOT", - "nomCommune": "CREYSSENSAC ET PISSOT" + "codePostal": "80132", + "codeCommune": "80385", + "libelleAcheminement": "GRAND LAVIERS", + "nomCommune": "GRAND LAVIERS" }, { - "codePostal": "79100", - "codeCommune": "79196", - "libelleAcheminement": "PLAINE ET VALLEES", - "nomCommune": "PLAINE ET VALLEES" + "codePostal": "67480", + "codeCommune": "67231", + "libelleAcheminement": "KAUFFENHEIM", + "nomCommune": "KAUFFENHEIM" }, { - "codePostal": "80140", - "codeCommune": "80446", - "libelleAcheminement": "HUPPY", - "nomCommune": "HUPPY" + "codePostal": "69620", + "codeCommune": "69024", + "libelleAcheminement": "VAL D OINGT", + "nomCommune": "VAL D OINGT" }, { - "codePostal": "01200", - "codeCommune": "74109", - "libelleAcheminement": "ELOISE", - "nomCommune": "ELOISE" + "codePostal": "80430", + "codeCommune": "80456", + "libelleAcheminement": "LAFRESGUIMONT ST MARTIN", + "nomCommune": "LAFRESGUIMONT ST MARTIN" }, { - "codePostal": "24640", - "codeCommune": "24147", - "libelleAcheminement": "CUBJAC AUVEZERE VAL D ANS", - "nomCommune": "CUBJAC AUVEZERE VAL D ANS" + "codePostal": "70200", + "codeCommune": "70432", + "libelleAcheminement": "QUERS", + "nomCommune": "QUERS" }, { - "codePostal": "79100", - "codeCommune": "79196", - "libelleAcheminement": "PLAINE ET VALLEES", - "nomCommune": "PLAINE ET VALLEES" + "codePostal": "80140", + "codeCommune": "80388", + "libelleAcheminement": "GREBAULT MESNIL", + "nomCommune": "GREBAULT MESNIL" }, { - "codePostal": "80800", - "codeCommune": "80449", - "libelleAcheminement": "IGNAUCOURT", - "nomCommune": "IGNAUCOURT" + "codePostal": "67270", + "codeCommune": "67236", + "libelleAcheminement": "KIENHEIM", + "nomCommune": "KIENHEIM" }, { - "codePostal": "74800", - "codeCommune": "74116", - "libelleAcheminement": "ETAUX", - "nomCommune": "ETAUX" + "codePostal": "69500", + "codeCommune": "69029", + "libelleAcheminement": "BRON", + "nomCommune": "BRON" }, { - "codePostal": "24640", - "codeCommune": "24147", - "libelleAcheminement": "CUBJAC AUVEZERE VAL D ANS", - "nomCommune": "CUBJAC AUVEZERE VAL D ANS" + "codePostal": "80430", + "codeCommune": "80456", + "libelleAcheminement": "LAFRESGUIMONT ST MARTIN", + "nomCommune": "LAFRESGUIMONT ST MARTIN" }, { - "codePostal": "79170", - "codeCommune": "79198", - "libelleAcheminement": "PAIZAY LE CHAPT", - "nomCommune": "PAIZAY LE CHAPT" + "codePostal": "70000", + "codeCommune": "70439", + "libelleAcheminement": "RAZE", + "nomCommune": "RAZE" }, { - "codePostal": "80230", - "codeCommune": "80464", - "libelleAcheminement": "LANCHERES", - "nomCommune": "LANCHERES" + "codePostal": "80700", + "codeCommune": "80393", + "libelleAcheminement": "GRUNY", + "nomCommune": "GRUNY" }, { - "codePostal": "74100", - "codeCommune": "74118", - "libelleAcheminement": "ETREMBIERES", - "nomCommune": "ETREMBIERES" + "codePostal": "67440", + "codeCommune": "67244", + "libelleAcheminement": "KLEINGOEFT", + "nomCommune": "KLEINGOEFT" }, { - "codePostal": "24250", - "codeCommune": "24152", - "libelleAcheminement": "DOMME", - "nomCommune": "DOMME" + "codePostal": "69840", + "codeCommune": "69035", + "libelleAcheminement": "CENVES", + "nomCommune": "CENVES" }, { - "codePostal": "79800", - "codeCommune": "79201", - "libelleAcheminement": "PAMPROUX", - "nomCommune": "PAMPROUX" + "codePostal": "80150", + "codeCommune": "80462", + "libelleAcheminement": "LAMOTTE BULEUX", + "nomCommune": "LAMOTTE BULEUX" }, { - "codePostal": "80300", - "codeCommune": "80468", - "libelleAcheminement": "LAVIEVILLE", - "nomCommune": "LAVIEVILLE" + "codePostal": "70190", + "codeCommune": "70441", + "libelleAcheminement": "RECOLOGNE LES RIOZ", + "nomCommune": "RECOLOGNE LES RIOZ" }, { - "codePostal": "74500", - "codeCommune": "74119", - "libelleAcheminement": "EVIAN LES BAINS", - "nomCommune": "EVIAN LES BAINS" + "codePostal": "80540", + "codeCommune": "80399", + "libelleAcheminement": "GUIGNEMICOURT", + "nomCommune": "GUIGNEMICOURT" }, { - "codePostal": "24120", - "codeCommune": "24153", - "libelleAcheminement": "LA DORNAC", - "nomCommune": "LA DORNAC" + "codePostal": "67230", + "codeCommune": "67246", + "libelleAcheminement": "KOGENHEIM", + "nomCommune": "KOGENHEIM" }, { - "codePostal": "79200", - "codeCommune": "79202", - "libelleAcheminement": "PARTHENAY", - "nomCommune": "PARTHENAY" + "codePostal": "69870", + "codeCommune": "69037", + "libelleAcheminement": "CHAMBOST ALLIERES", + "nomCommune": "CHAMBOST ALLIERES" }, { - "codePostal": "80560", - "codeCommune": "80470", - "libelleAcheminement": "LEALVILLERS", - "nomCommune": "LEALVILLERS" + "codePostal": "80800", + "codeCommune": "80463", + "libelleAcheminement": "LAMOTTE WARFUSEE", + "nomCommune": "LAMOTTE WARFUSEE" }, { - "codePostal": "74160", - "codeCommune": "74124", - "libelleAcheminement": "FEIGERES", - "nomCommune": "FEIGERES" + "codePostal": "70120", + "codeCommune": "70442", + "libelleAcheminement": "RENAUCOURT", + "nomCommune": "RENAUCOURT" }, { - "codePostal": "24190", - "codeCommune": "24157", - "libelleAcheminement": "DOUZILLAC", - "nomCommune": "DOUZILLAC" + "codePostal": "80170", + "codeCommune": "80400", + "libelleAcheminement": "GUILLAUCOURT", + "nomCommune": "GUILLAUCOURT" }, { - "codePostal": "79100", - "codeCommune": "79203", - "libelleAcheminement": "PAS DE JEU", - "nomCommune": "PAS DE JEU" + "codePostal": "67220", + "codeCommune": "67255", + "libelleAcheminement": "LALAYE", + "nomCommune": "LALAYE" }, { - "codePostal": "80700", - "codeCommune": "80473", - "libelleAcheminement": "LIANCOURT FOSSE", - "nomCommune": "LIANCOURT FOSSE" + "codePostal": "69260", + "codeCommune": "69044", + "libelleAcheminement": "CHARBONNIERES LES BAINS", + "nomCommune": "CHARBONNIERES LES BAINS" }, { - "codePostal": "74890", - "codeCommune": "74126", - "libelleAcheminement": "FESSY", - "nomCommune": "FESSY" + "codePostal": "80250", + "codeCommune": "80469", + "libelleAcheminement": "LAWARDE MAUGER L HORTOY", + "nomCommune": "LAWARDE MAUGER L HORTOY" }, { - "codePostal": "24380", - "codeCommune": "24160", - "libelleAcheminement": "EGLISE NEUVE DE VERGT", - "nomCommune": "EGLISE NEUVE DE VERGT" + "codePostal": "70140", + "codeCommune": "70444", + "libelleAcheminement": "LA RESIE ST MARTIN", + "nomCommune": "LA RESIE ST MARTIN" }, { - "codePostal": "79700", - "codeCommune": "79207", - "libelleAcheminement": "LA PETITE BOISSIERE", - "nomCommune": "LA PETITE BOISSIERE" + "codePostal": "80240", + "codeCommune": "80404", + "libelleAcheminement": "GUYENCOURT SAULCOURT", + "nomCommune": "GUYENCOURT SAULCOURT" }, { - "codePostal": "80500", - "codeCommune": "80478", - "libelleAcheminement": "LIGNIERES LES ROYE", - "nomCommune": "LIGNIERES" + "codePostal": "67450", + "codeCommune": "67256", + "libelleAcheminement": "LAMPERTHEIM", + "nomCommune": "LAMPERTHEIM" }, { - "codePostal": "74270", - "codeCommune": "74131", - "libelleAcheminement": "FRANGY", - "nomCommune": "FRANGY" + "codePostal": "69380", + "codeCommune": "69049", + "libelleAcheminement": "CHASSELAY", + "nomCommune": "CHASSELAY" }, { - "codePostal": "24400", - "codeCommune": "24161", - "libelleAcheminement": "EGLISE NEUVE D ISSAC", - "nomCommune": "EGLISE NEUVE D ISSAC" + "codePostal": "80240", + "codeCommune": "80475", + "libelleAcheminement": "LIERAMONT", + "nomCommune": "LIERAMONT" }, { - "codePostal": "79330", - "codeCommune": "79209", - "libelleAcheminement": "PIERREFITTE", - "nomCommune": "PIERREFITTE" + "codePostal": "70100", + "codeCommune": "70446", + "libelleAcheminement": "RIGNY", + "nomCommune": "RIGNY" }, { - "codePostal": "80290", - "codeCommune": "80479", - "libelleAcheminement": "LIGNIERES CHATELAIN", - "nomCommune": "LIGNIERES CHATELAIN" + "codePostal": "80670", + "codeCommune": "80408", + "libelleAcheminement": "HALLOY LES PERNOIS", + "nomCommune": "HALLOY LES PERNOIS" }, { - "codePostal": "74540", - "codeCommune": "74138", - "libelleAcheminement": "GRUFFY", - "nomCommune": "GRUFFY" + "codePostal": "67510", + "codeCommune": "67263", + "libelleAcheminement": "LEMBACH", + "nomCommune": "LEMBACH" }, { - "codePostal": "24420", - "codeCommune": "24162", - "libelleAcheminement": "ESCOIRE", - "nomCommune": "ESCOIRE" + "codePostal": "69840", + "codeCommune": "69053", + "libelleAcheminement": "CHENAS", + "nomCommune": "CHENAS" }, { - "codePostal": "79140", - "codeCommune": "79210", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "80320", + "codeCommune": "80481", + "libelleAcheminement": "LIHONS", + "nomCommune": "LIHONS" }, { - "codePostal": "80140", - "codeCommune": "80480", - "libelleAcheminement": "LIGNIERES EN VIMEU", - "nomCommune": "LIGNIERES EN VIMEU" + "codePostal": "70190", + "codeCommune": "70447", + "libelleAcheminement": "RIOZ", + "nomCommune": "RIOZ" }, { - "codePostal": "74420", - "codeCommune": "74139", - "libelleAcheminement": "HABERE LULLIN", - "nomCommune": "HABERE LULLIN" + "codePostal": "80400", + "codeCommune": "80410", + "libelleAcheminement": "HAM", + "nomCommune": "HAM" }, { - "codePostal": "24800", - "codeCommune": "24171", - "libelleAcheminement": "EYZERAC", - "nomCommune": "EYZERAC" + "codePostal": "67150", + "codeCommune": "67266", + "libelleAcheminement": "LIMERSHEIM", + "nomCommune": "LIMERSHEIM" }, { - "codePostal": "79230", - "codeCommune": "79216", - "libelleAcheminement": "PRAHECQ", - "nomCommune": "PRAHECQ" + "codePostal": "69470", + "codeCommune": "69066", + "libelleAcheminement": "COURS", + "nomCommune": "COURS" }, { "codePostal": "80490", @@ -203484,70 +203436,58 @@ "nomCommune": "LIMEUX" }, { - "codePostal": "74500", - "codeCommune": "74146", - "libelleAcheminement": "LARRINGES", - "nomCommune": "LARRINGES" - }, - { - "codePostal": "24620", - "codeCommune": "24172", - "libelleAcheminement": "LES EYZIES", - "nomCommune": "LES EYZIES" - }, - { - "codePostal": "79370", - "codeCommune": "79217", - "libelleAcheminement": "PRAILLES LA COUARDE", - "nomCommune": "PRAILLES LA COUARDE" + "codePostal": "70120", + "codeCommune": "70450", + "libelleAcheminement": "LA ROCHELLE", + "nomCommune": "LA ROCHELLE" }, { - "codePostal": "80430", - "codeCommune": "80484", - "libelleAcheminement": "LIOMER", - "nomCommune": "LIOMER" + "codePostal": "80800", + "codeCommune": "80411", + "libelleAcheminement": "LE HAMEL", + "nomCommune": "LE HAMEL" }, { - "codePostal": "74470", - "codeCommune": "74155", - "libelleAcheminement": "LULLIN", - "nomCommune": "LULLIN" + "codePostal": "67250", + "codeCommune": "67271", + "libelleAcheminement": "LOBSANN", + "nomCommune": "LOBSANN" }, { - "codePostal": "24290", - "codeCommune": "24175", - "libelleAcheminement": "LES FARGES", - "nomCommune": "LES FARGES" + "codePostal": "69470", + "codeCommune": "69066", + "libelleAcheminement": "COURS", + "nomCommune": "COURS" }, { - "codePostal": "79420", - "codeCommune": "79225", - "libelleAcheminement": "REFFANNES", - "nomCommune": "REFFANNES" + "codePostal": "80600", + "codeCommune": "80491", + "libelleAcheminement": "LONGUEVILLETTE", + "nomCommune": "LONGUEVILLETTE" }, { - "codePostal": "80160", - "codeCommune": "80485", - "libelleAcheminement": "O DE SELLE", - "nomCommune": "O DE SELLE" + "codePostal": "70310", + "codeCommune": "70453", + "libelleAcheminement": "LA ROSIERE", + "nomCommune": "LA ROSIERE" }, { - "codePostal": "74890", - "codeCommune": "74156", - "libelleAcheminement": "LULLY", - "nomCommune": "LULLY" + "codePostal": "80800", + "codeCommune": "80412", + "libelleAcheminement": "HAMELET", + "nomCommune": "HAMELET" }, { - "codePostal": "24120", - "codeCommune": "24179", - "libelleAcheminement": "LA FEUILLADE", - "nomCommune": "LA FEUILLADE" + "codePostal": "67490", + "codeCommune": "67275", + "libelleAcheminement": "LUPSTEIN", + "nomCommune": "LUPSTEIN" }, { - "codePostal": "79270", - "codeCommune": "79229", - "libelleAcheminement": "LA ROCHENARD", - "nomCommune": "LA ROCHENARD" + "codePostal": "69470", + "codeCommune": "69066", + "libelleAcheminement": "COURS", + "nomCommune": "COURS" }, { "codePostal": "80150", @@ -203556,30742 +203496,30796 @@ "nomCommune": "MACHY" }, { - "codePostal": "74250", - "codeCommune": "74162", - "libelleAcheminement": "MARCELLAZ", - "nomCommune": "MARCELLAZ" + "codePostal": "70280", + "codeCommune": "70460", + "libelleAcheminement": "ST BRESSON", + "nomCommune": "ST BRESSON" }, { - "codePostal": "33220", - "codeCommune": "24189", - "libelleAcheminement": "FOUGUEYROLLES", - "nomCommune": "FOUGUEYROLLES" + "codePostal": "80240", + "codeCommune": "80413", + "libelleAcheminement": "HANCOURT", + "nomCommune": "HANCOURT" }, { - "codePostal": "79120", - "codeCommune": "79230", - "libelleAcheminement": "ROM", - "nomCommune": "ROM" + "codePostal": "67130", + "codeCommune": "67276", + "libelleAcheminement": "LUTZELHOUSE", + "nomCommune": "LUTZELHOUSE" }, { - "codePostal": "80200", - "codeCommune": "80509", - "libelleAcheminement": "MARCHELEPOT MISERY", - "nomCommune": "MARCHELEPOT MISERY" + "codePostal": "69690", + "codeCommune": "69067", + "libelleAcheminement": "COURZIEU", + "nomCommune": "COURZIEU" }, { - "codePostal": "74500", - "codeCommune": "74175", - "libelleAcheminement": "MEILLERIE", - "nomCommune": "MEILLERIE" + "codePostal": "80560", + "codeCommune": "80498", + "libelleAcheminement": "MAILLY MAILLET", + "nomCommune": "MAILLY MAILLET" }, { - "codePostal": "24130", - "codeCommune": "24191", - "libelleAcheminement": "FRAISSE", - "nomCommune": "FRAISSE" + "codePostal": "70100", + "codeCommune": "70461", + "libelleAcheminement": "ST BROING", + "nomCommune": "ST BROING" }, { - "codePostal": "79300", - "codeCommune": "79238", - "libelleAcheminement": "ST AUBIN DU PLAIN", - "nomCommune": "ST AUBIN DU PLAIN" + "codePostal": "80131", + "codeCommune": "80417", + "libelleAcheminement": "HARBONNIERES", + "nomCommune": "HARBONNIERES" }, { - "codePostal": "80300", - "codeCommune": "80523", - "libelleAcheminement": "MEAULTE", - "nomCommune": "MEAULTE" + "codePostal": "67220", + "codeCommune": "67280", + "libelleAcheminement": "MAISONSGOUTTE", + "nomCommune": "MAISONSGOUTTE" }, { - "codePostal": "74290", - "codeCommune": "74176", - "libelleAcheminement": "MENTHON ST BERNARD", - "nomCommune": "MENTHON ST BERNARD" + "codePostal": "69290", + "codeCommune": "69069", + "libelleAcheminement": "CRAPONNE", + "nomCommune": "CRAPONNE" }, { - "codePostal": "24210", - "codeCommune": "24192", - "libelleAcheminement": "GABILLOU", - "nomCommune": "GABILLOU" + "codePostal": "80150", + "codeCommune": "80501", + "libelleAcheminement": "MAISON PONTHIEU", + "nomCommune": "MAISON PONTHIEU" }, { - "codePostal": "79800", - "codeCommune": "79246", - "libelleAcheminement": "STE EANNE", - "nomCommune": "STE EANNE" + "codePostal": "70700", + "codeCommune": "70471", + "libelleAcheminement": "STE REINE", + "nomCommune": "STE REINE" }, { - "codePostal": "80300", - "codeCommune": "80540", - "libelleAcheminement": "MESNIL MARTINSART", - "nomCommune": "MESNIL MARTINSART" + "codePostal": "80670", + "codeCommune": "80423", + "libelleAcheminement": "HAVERNAS", + "nomCommune": "HAVERNAS" }, { - "codePostal": "74440", - "codeCommune": "74183", - "libelleAcheminement": "MIEUSSY", - "nomCommune": "MIEUSSY" + "codePostal": "67150", + "codeCommune": "67285", + "libelleAcheminement": "MATZENHEIM", + "nomCommune": "MATZENHEIM" }, { - "codePostal": "24160", - "codeCommune": "24196", - "libelleAcheminement": "GENIS", - "nomCommune": "GENIS" + "codePostal": "69640", + "codeCommune": "69074", + "libelleAcheminement": "DENICE", + "nomCommune": "DENICE" }, { - "codePostal": "79500", - "codeCommune": "79251", - "libelleAcheminement": "MARCILLE", - "nomCommune": "MARCILLE" + "codePostal": "80290", + "codeCommune": "80515", + "libelleAcheminement": "MARLERS", + "nomCommune": "MARLERS" }, { - "codePostal": "80500", - "codeCommune": "80541", - "libelleAcheminement": "MESNIL ST GEORGES", - "nomCommune": "MESNIL ST GEORGES" + "codePostal": "70210", + "codeCommune": "70476", + "libelleAcheminement": "SAPONCOURT", + "nomCommune": "SAPONCOURT" }, { - "codePostal": "74440", - "codeCommune": "74183", - "libelleAcheminement": "MIEUSSY", - "nomCommune": "MIEUSSY" + "codePostal": "80300", + "codeCommune": "80429", + "libelleAcheminement": "HENENCOURT", + "nomCommune": "HENENCOURT" }, { - "codePostal": "24390", - "codeCommune": "24202", - "libelleAcheminement": "GRANGES D ANS", - "nomCommune": "GRANGES D ANS" + "codePostal": "67340", + "codeCommune": "67289", + "libelleAcheminement": "MENCHHOFFEN", + "nomCommune": "MENCHHOFFEN" }, { - "codePostal": "79210", - "codeCommune": "79254", - "libelleAcheminement": "ST GEORGES DE REX", - "nomCommune": "ST GEORGES DE REX" + "codePostal": "69380", + "codeCommune": "69076", + "libelleAcheminement": "DOMMARTIN", + "nomCommune": "DOMMARTIN" }, { - "codePostal": "80270", - "codeCommune": "80543", - "libelleAcheminement": "METIGNY", - "nomCommune": "METIGNY" + "codePostal": "80240", + "codeCommune": "80516", + "libelleAcheminement": "MARQUAIX", + "nomCommune": "MARQUAIX" }, { - "codePostal": "74560", - "codeCommune": "74185", - "libelleAcheminement": "MONNETIER MORNEX", - "nomCommune": "MONNETIER MORNEX" + "codePostal": "70400", + "codeCommune": "70477", + "libelleAcheminement": "SAULNOT", + "nomCommune": "SAULNOT" }, { - "codePostal": "24110", - "codeCommune": "24205", - "libelleAcheminement": "GRIGNOLS", - "nomCommune": "GRIGNOLS" + "codePostal": "80290", + "codeCommune": "80436", + "libelleAcheminement": "HESCAMPS", + "nomCommune": "HESCAMPS" }, { - "codePostal": "79100", - "codeCommune": "79265", - "libelleAcheminement": "ST LEGER DE MONTBRUN", - "nomCommune": "ST LEGER DE MONTBRUN" + "codePostal": "67206", + "codeCommune": "67296", + "libelleAcheminement": "MITTELHAUSBERGEN", + "nomCommune": "MITTELHAUSBERGEN" }, { - "codePostal": "80110", - "codeCommune": "80545", - "libelleAcheminement": "MEZIERES EN SANTERRE", - "nomCommune": "MEZIERES EN SANTERRE" + "codePostal": "69850", + "codeCommune": "69078", + "libelleAcheminement": "DUERNE", + "nomCommune": "DUERNE" }, { - "codePostal": "74440", - "codeCommune": "74190", - "libelleAcheminement": "MORILLON", - "nomCommune": "MORILLON" + "codePostal": "80370", + "codeCommune": "80526", + "libelleAcheminement": "LE MEILLARD", + "nomCommune": "LE MEILLARD" }, { - "codePostal": "24390", - "codeCommune": "24210", - "libelleAcheminement": "HAUTEFORT", - "nomCommune": "HAUTEFORT" + "codePostal": "70130", + "codeCommune": "70481", + "libelleAcheminement": "SAVOYEUX", + "nomCommune": "SAVOYEUX" }, { - "codePostal": "79600", - "codeCommune": "79268", - "libelleAcheminement": "ST LOUP LAMAIRE", - "nomCommune": "ST LOUP LAMAIRE" + "codePostal": "80270", + "codeCommune": "80437", + "libelleAcheminement": "HEUCOURT CROQUOISON", + "nomCommune": "HEUCOURT CROQUOISON" }, { - "codePostal": "80135", - "codeCommune": "80548", - "libelleAcheminement": "MILLENCOURT EN PONTHIEU", - "nomCommune": "MILLENCOURT EN PONTHIEU" + "codePostal": "67470", + "codeCommune": "67305", + "libelleAcheminement": "MOTHERN", + "nomCommune": "MOTHERN" }, { - "codePostal": "74150", - "codeCommune": "74192", - "libelleAcheminement": "MOYE", - "nomCommune": "MOYE" + "codePostal": "69700", + "codeCommune": "69080", + "libelleAcheminement": "ECHALAS", + "nomCommune": "ECHALAS" }, { - "codePostal": "24590", - "codeCommune": "24215", - "libelleAcheminement": "JAYAC", - "nomCommune": "JAYAC" + "codePostal": "80520", + "codeCommune": "80527", + "libelleAcheminement": "MENESLIES", + "nomCommune": "MENESLIES" }, { - "codePostal": "79220", - "codeCommune": "79284", - "libelleAcheminement": "STE OUENNE", - "nomCommune": "STE OUENNE" + "codePostal": "70400", + "codeCommune": "70484", + "libelleAcheminement": "SECENANS", + "nomCommune": "SECENANS" }, { - "codePostal": "80540", - "codeCommune": "80559", - "libelleAcheminement": "MONTAGNE FAYEL", - "nomCommune": "MONTAGNE FAYEL" + "codePostal": "80370", + "codeCommune": "80440", + "libelleAcheminement": "HIERMONT", + "nomCommune": "HIERMONT" }, { - "codePostal": "74300", - "codeCommune": "74196", - "libelleAcheminement": "NANCY SUR CLUSES", - "nomCommune": "NANCY SUR CLUSES" + "codePostal": "67220", + "codeCommune": "67320", + "libelleAcheminement": "NEUVE EGLISE", + "nomCommune": "NEUVE EGLISE" }, { - "codePostal": "24380", - "codeCommune": "24220", - "libelleAcheminement": "LACROPTE", - "nomCommune": "LACROPTE" + "codePostal": "69700", + "codeCommune": "69080", + "libelleAcheminement": "ECHALAS", + "nomCommune": "ECHALAS" }, { - "codePostal": "79310", - "codeCommune": "79285", - "libelleAcheminement": "ST PARDOUX SOUTIERS", - "nomCommune": "ST PARDOUX SOUTIERS" + "codePostal": "80290", + "codeCommune": "80528", + "libelleAcheminement": "MEREAUCOURT", + "nomCommune": "MEREAUCOURT" }, { - "codePostal": "80500", - "codeCommune": "80561", - "libelleAcheminement": "MONTDIDIER", - "nomCommune": "MONTDIDIER" + "codePostal": "70130", + "codeCommune": "70491", + "libelleAcheminement": "SEVEUX MOTEY", + "nomCommune": "SEVEUX MOTEY" }, { - "codePostal": "74380", - "codeCommune": "74197", - "libelleAcheminement": "NANGY", - "nomCommune": "NANGY" + "codePostal": "80400", + "codeCommune": "80442", + "libelleAcheminement": "HOMBLEUX", + "nomCommune": "HOMBLEUX" }, { - "codePostal": "24680", - "codeCommune": "24225", - "libelleAcheminement": "LAMONZIE ST MARTIN", - "nomCommune": "LAMONZIE ST MARTIN" + "codePostal": "67130", + "codeCommune": "67321", + "libelleAcheminement": "NEUVILLER LA ROCHE", + "nomCommune": "NEUVILLER LA ROCHE" }, { - "codePostal": "79700", - "codeCommune": "79289", - "libelleAcheminement": "ST PIERRE DES ECHAUBROGNES", - "nomCommune": "ST PIERRE DES ECHAUBROGNES" + "codePostal": "69210", + "codeCommune": "69086", + "libelleAcheminement": "FLEURIEUX SUR L ARBRESLE", + "nomCommune": "FLEURIEUX SUR L ARBRESLE" }, { - "codePostal": "80670", - "codeCommune": "80566", - "libelleAcheminement": "FIEFFES MONTRELET", - "nomCommune": "FIEFFES MONTRELET" + "codePostal": "80490", + "codeCommune": "80529", + "libelleAcheminement": "MERELESSART", + "nomCommune": "MERELESSART" }, { - "codePostal": "74190", - "codeCommune": "74208", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "70230", + "codeCommune": "70500", + "libelleAcheminement": "THIEFFRANS", + "nomCommune": "THIEFFRANS" }, { - "codePostal": "24130", - "codeCommune": "24246", - "libelleAcheminement": "LUNAS", - "nomCommune": "LUNAS" + "codePostal": "80640", + "codeCommune": "80443", + "libelleAcheminement": "HORNOY LE BOURG", + "nomCommune": "HORNOY LE BOURG" }, { - "codePostal": "79160", - "codeCommune": "79290", - "libelleAcheminement": "ST POMPAIN", - "nomCommune": "ST POMPAIN" + "codePostal": "67660", + "codeCommune": "67339", + "libelleAcheminement": "BETSCHDORF", + "nomCommune": "BETSCHDORF" }, { - "codePostal": "80340", - "codeCommune": "80569", - "libelleAcheminement": "MORCOURT", - "nomCommune": "MORCOURT" + "codePostal": "69620", + "codeCommune": "69090", + "libelleAcheminement": "FRONTENAS", + "nomCommune": "FRONTENAS" }, { - "codePostal": "74190", - "codeCommune": "74208", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "80190", + "codeCommune": "80542", + "libelleAcheminement": "MESNIL ST NICAISE", + "nomCommune": "MESNIL ST NICAISE" }, { - "codePostal": "24320", - "codeCommune": "24247", - "libelleAcheminement": "LUSIGNAC", - "nomCommune": "LUSIGNAC" + "codePostal": "70140", + "codeCommune": "70510", + "libelleAcheminement": "VADANS", + "nomCommune": "VADANS" }, { - "codePostal": "79410", - "codeCommune": "79293", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "80132", + "codeCommune": "80444", + "libelleAcheminement": "HUCHENNEVILLE", + "nomCommune": "HUCHENNEVILLE" }, { - "codePostal": "80110", - "codeCommune": "80570", - "libelleAcheminement": "MOREUIL", - "nomCommune": "MOREUIL" + "codePostal": "67360", + "codeCommune": "67341", + "libelleAcheminement": "OBERDORF SPACHBACH", + "nomCommune": "OBERDORF SPACHBACH" }, { - "codePostal": "74600", - "codeCommune": "74219", - "libelleAcheminement": "QUINTAL", - "nomCommune": "QUINTAL" + "codePostal": "69700", + "codeCommune": "69091", + "libelleAcheminement": "GIVORS", + "nomCommune": "GIVORS" }, { - "codePostal": "24200", - "codeCommune": "24252", - "libelleAcheminement": "MARCILLAC ST QUENTIN", - "nomCommune": "MARCILLAC ST QUENTIN" + "codePostal": "80135", + "codeCommune": "80548", + "libelleAcheminement": "MILLENCOURT EN PONTHIEU", + "nomCommune": "MILLENCOURT EN PONTHIEU" }, { - "codePostal": "79100", - "codeCommune": "79300", - "libelleAcheminement": "STE VERGE", - "nomCommune": "STE VERGE" + "codePostal": "70320", + "codeCommune": "70512", + "libelleAcheminement": "LA VAIVRE", + "nomCommune": "LA VAIVRE" }, { - "codePostal": "80140", - "codeCommune": "80575", - "libelleAcheminement": "MOUFLIERES", - "nomCommune": "MOUFLIERES" + "codePostal": "80430", + "codeCommune": "80450", + "libelleAcheminement": "INVAL BOIRON", + "nomCommune": "INVAL BOIRON" }, { - "codePostal": "74490", - "codeCommune": "74241", - "libelleAcheminement": "ST JEOIRE EN FAUCIGNY", - "nomCommune": "ST JEOIRE" + "codePostal": "67330", + "codeCommune": "67347", + "libelleAcheminement": "OBERMODERN ZUTZENDORF", + "nomCommune": "OBERMODERN ZUTZENDORF" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "69700", + "codeCommune": "69091", + "libelleAcheminement": "GIVORS", + "nomCommune": "GIVORS" }, { - "codePostal": "79270", - "codeCommune": "79304", - "libelleAcheminement": "SANSAIS", - "nomCommune": "SANSAIS" + "codePostal": "80540", + "codeCommune": "80554", + "libelleAcheminement": "MOLLIENS DREUIL", + "nomCommune": "MOLLIENS DREUIL" }, { - "codePostal": "80190", - "codeCommune": "80585", - "libelleAcheminement": "NESLE", - "nomCommune": "NESLE" + "codePostal": "70200", + "codeCommune": "70515", + "libelleAcheminement": "LE VAL DE GOUHENANS", + "nomCommune": "LE VAL DE GOUHENANS" }, { - "codePostal": "74800", - "codeCommune": "74253", - "libelleAcheminement": "ST SIXT", - "nomCommune": "ST SIXT" + "codePostal": "80800", + "codeCommune": "80463", + "libelleAcheminement": "LAMOTTE WARFUSEE", + "nomCommune": "LAMOTTE WARFUSEE" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "67210", + "codeCommune": "67348", + "libelleAcheminement": "OBERNAI", + "nomCommune": "OBERNAI" }, { - "codePostal": "79120", - "codeCommune": "79313", - "libelleAcheminement": "SEPVRET", - "nomCommune": "SEPVRET" + "codePostal": "69380", + "codeCommune": "69121", + "libelleAcheminement": "LOZANNE", + "nomCommune": "LOZANNE" }, { - "codePostal": "80140", - "codeCommune": "80587", - "libelleAcheminement": "NESLETTE", - "nomCommune": "NESLETTE" + "codePostal": "80200", + "codeCommune": "80557", + "libelleAcheminement": "ESTREES MONS", + "nomCommune": "ESTREES MONS" }, { - "codePostal": "74540", - "codeCommune": "74254", - "libelleAcheminement": "ST SYLVESTRE", - "nomCommune": "ST SYLVESTRE" + "codePostal": "70700", + "codeCommune": "70521", + "libelleAcheminement": "VANTOUX ET LONGEVELLE", + "nomCommune": "VANTOUX ET LONGEVELLE" }, { - "codePostal": "24150", - "codeCommune": "24260", - "libelleAcheminement": "MAUZAC ET GRAND CASTANG", - "nomCommune": "MAUZAC ET GRAND CASTANG" + "codePostal": "80190", + "codeCommune": "80465", + "libelleAcheminement": "LANGUEVOISIN QUIQUERY", + "nomCommune": "LANGUEVOISIN QUIQUERY" }, { - "codePostal": "79800", - "codeCommune": "79316", - "libelleAcheminement": "SOUDAN", - "nomCommune": "SOUDAN" + "codePostal": "67250", + "codeCommune": "67349", + "libelleAcheminement": "OBERROEDERN", + "nomCommune": "OBERROEDERN" }, { - "codePostal": "80150", - "codeCommune": "80599", - "libelleAcheminement": "NOYELLES EN CHAUSSEE", - "nomCommune": "NOYELLES EN CHAUSSEE" + "codePostal": "69480", + "codeCommune": "69126", + "libelleAcheminement": "MARCY", + "nomCommune": "MARCY" }, { - "codePostal": "74700", - "codeCommune": "74256", - "libelleAcheminement": "SALLANCHES", - "nomCommune": "SALLANCHES" + "codePostal": "80260", + "codeCommune": "80562", + "libelleAcheminement": "MONTIGNY SUR L HALLUE", + "nomCommune": "MONTIGNY SUR L HALLUE" }, { - "codePostal": "24240", - "codeCommune": "24267", - "libelleAcheminement": "MESCOULES", - "nomCommune": "MESCOULES" + "codePostal": "70600", + "codeCommune": "70523", + "libelleAcheminement": "VARS", + "nomCommune": "VARS" }, { - "codePostal": "79100", - "codeCommune": "79329", - "libelleAcheminement": "THOUARS", - "nomCommune": "THOUARS" + "codePostal": "80560", + "codeCommune": "80470", + "libelleAcheminement": "LEALVILLERS", + "nomCommune": "LEALVILLERS" }, { - "codePostal": "80860", - "codeCommune": "80600", - "libelleAcheminement": "NOYELLES SUR MER", - "nomCommune": "NOYELLES SUR MER" + "codePostal": "67520", + "codeCommune": "67354", + "libelleAcheminement": "ODRATZHEIM", + "nomCommune": "ODRATZHEIM" }, { - "codePostal": "74520", - "codeCommune": "74260", - "libelleAcheminement": "SAVIGNY", - "nomCommune": "SAVIGNY" + "codePostal": "69280", + "codeCommune": "69127", + "libelleAcheminement": "MARCY L ETOILE", + "nomCommune": "MARCY L ETOILE" }, { - "codePostal": "24450", - "codeCommune": "24269", - "libelleAcheminement": "MIALET", - "nomCommune": "MIALET" + "codePostal": "80370", + "codeCommune": "80563", + "libelleAcheminement": "MONTIGNY LES JONGLEURS", + "nomCommune": "MONTIGNY LES JONGLEURS" }, { - "codePostal": "79100", - "codeCommune": "79329", - "libelleAcheminement": "THOUARS", - "nomCommune": "THOUARS" + "codePostal": "70100", + "codeCommune": "70528", + "libelleAcheminement": "VELESMES ECHEVANNE", + "nomCommune": "VELESMES ECHEVANNE" }, { - "codePostal": "80290", - "codeCommune": "80604", - "libelleAcheminement": "OFFIGNIES", - "nomCommune": "OFFIGNIES" + "codePostal": "80160", + "codeCommune": "80485", + "libelleAcheminement": "O DE SELLE", + "nomCommune": "O DE SELLE" }, { - "codePostal": "74420", - "codeCommune": "74261", - "libelleAcheminement": "SAXEL", - "nomCommune": "SAXEL" + "codePostal": "67970", + "codeCommune": "67355", + "libelleAcheminement": "OERMINGEN", + "nomCommune": "OERMINGEN" }, { - "codePostal": "24540", - "codeCommune": "24280", - "libelleAcheminement": "MONPAZIER", - "nomCommune": "MONPAZIER" + "codePostal": "69550", + "codeCommune": "69130", + "libelleAcheminement": "MEAUX LA MONTAGNE", + "nomCommune": "MEAUX LA MONTAGNE" }, { - "codePostal": "79240", - "codeCommune": "79332", - "libelleAcheminement": "TRAYES", - "nomCommune": "TRAYES" + "codePostal": "80140", + "codeCommune": "80575", + "libelleAcheminement": "MOUFLIERES", + "nomCommune": "MOUFLIERES" }, { - "codePostal": "80200", - "codeCommune": "80620", - "libelleAcheminement": "PERONNE", - "nomCommune": "PERONNE" + "codePostal": "70100", + "codeCommune": "70529", + "libelleAcheminement": "VELET", + "nomCommune": "VELET" }, { - "codePostal": "74300", - "codeCommune": "74278", - "libelleAcheminement": "THYEZ", - "nomCommune": "THYEZ" + "codePostal": "80510", + "codeCommune": "80488", + "libelleAcheminement": "LONGPRE LES CORPS SAINTS", + "nomCommune": "LONGPRE LES CORPS SAINTS" }, { - "codePostal": "24440", - "codeCommune": "24281", - "libelleAcheminement": "MONSAC", - "nomCommune": "MONSAC" + "codePostal": "67350", + "codeCommune": "67372", + "libelleAcheminement": "VAL DE MODER", + "nomCommune": "VAL DE MODER" }, { - "codePostal": "79270", - "codeCommune": "79337", - "libelleAcheminement": "LE VANNEAU IRLEAU", - "nomCommune": "LE VANNEAU IRLEAU" + "codePostal": "69510", + "codeCommune": "69131", + "libelleAcheminement": "MESSIMY", + "nomCommune": "MESSIMY" }, { - "codePostal": "80320", - "codeCommune": "80621", - "libelleAcheminement": "HYPERCOURT", - "nomCommune": "HYPERCOURT" + "codePostal": "80400", + "codeCommune": "80579", + "libelleAcheminement": "MUILLE VILLETTE", + "nomCommune": "MUILLE VILLETTE" }, { - "codePostal": "74370", - "codeCommune": "74282", - "libelleAcheminement": "FILLIERE", - "nomCommune": "FILLIERE" + "codePostal": "70240", + "codeCommune": "70534", + "libelleAcheminement": "VELLEFRIE", + "nomCommune": "VELLEFRIE" }, { - "codePostal": "24140", - "codeCommune": "24285", - "libelleAcheminement": "MONTAGNAC LA CREMPSE", - "nomCommune": "MONTAGNAC LA CREMPSE" + "codePostal": "80330", + "codeCommune": "80489", + "libelleAcheminement": "LONGUEAU", + "nomCommune": "LONGUEAU" }, { - "codePostal": "79170", - "codeCommune": "79343", - "libelleAcheminement": "VERNOUX SUR BOUTONNE", - "nomCommune": "VERNOUX SUR BOUTONNE" + "codePostal": "67420", + "codeCommune": "67377", + "libelleAcheminement": "PLAINE", + "nomCommune": "PLAINE" }, { - "codePostal": "80310", - "codeCommune": "80622", - "libelleAcheminement": "PICQUIGNY", - "nomCommune": "PICQUIGNY" + "codePostal": "69390", + "codeCommune": "69133", + "libelleAcheminement": "MILLERY", + "nomCommune": "MILLERY" }, { - "codePostal": "74570", - "codeCommune": "74282", - "libelleAcheminement": "FILLIERE", - "nomCommune": "FILLIERE" + "codePostal": "80190", + "codeCommune": "80585", + "libelleAcheminement": "NESLE", + "nomCommune": "NESLE" }, { - "codePostal": "24440", - "codeCommune": "24290", - "libelleAcheminement": "MONTFERRAND DU PERIGORD", - "nomCommune": "MONTFERRAND DU PERIGORD" + "codePostal": "70300", + "codeCommune": "70541", + "libelleAcheminement": "VELORCEY", + "nomCommune": "VELORCEY" }, { - "codePostal": "79110", - "codeCommune": "79349", - "libelleAcheminement": "VILLEMAIN", - "nomCommune": "VILLEMAIN" + "codePostal": "80200", + "codeCommune": "80509", + "libelleAcheminement": "MARCHELEPOT MISERY", + "nomCommune": "MARCHELEPOT MISERY" }, { - "codePostal": "80240", - "codeCommune": "80629", - "libelleAcheminement": "POEUILLY", - "nomCommune": "POEUILLY" + "codePostal": "67420", + "codeCommune": "67384", + "libelleAcheminement": "RANRUPT", + "nomCommune": "RANRUPT" }, { - "codePostal": "74150", - "codeCommune": "74292", - "libelleAcheminement": "VAULX", - "nomCommune": "VAULX" + "codePostal": "69860", + "codeCommune": "69135", + "libelleAcheminement": "DEUX GROSNES", + "nomCommune": "DEUX GROSNES" }, { - "codePostal": "24610", - "codeCommune": "24292", - "libelleAcheminement": "MONTPEYROUX", - "nomCommune": "MONTPEYROUX" + "codePostal": "80340", + "codeCommune": "80593", + "libelleAcheminement": "LA NEUVILLE LES BRAY", + "nomCommune": "LA NEUVILLE LES BRAY" }, { - "codePostal": "80210", - "codeCommune": "80008", - "libelleAcheminement": "AIGNEVILLE", - "nomCommune": "AIGNEVILLE" + "codePostal": "70500", + "codeCommune": "70545", + "libelleAcheminement": "VENISEY", + "nomCommune": "VENISEY" }, { - "codePostal": "80132", - "codeCommune": "80637", - "libelleAcheminement": "PORT LE GRAND", - "nomCommune": "PORT LE GRAND" + "codePostal": "80360", + "codeCommune": "80513", + "libelleAcheminement": "MARICOURT", + "nomCommune": "MARICOURT" }, { - "codePostal": "74150", - "codeCommune": "74297", - "libelleAcheminement": "VERSONNEX", - "nomCommune": "VERSONNEX" + "codePostal": "67320", + "codeCommune": "67386", + "libelleAcheminement": "RAUWILLER", + "nomCommune": "RAUWILLER" }, { - "codePostal": "24520", - "codeCommune": "24296", - "libelleAcheminement": "MOULEYDIER", - "nomCommune": "MOULEYDIER" + "codePostal": "69860", + "codeCommune": "69135", + "libelleAcheminement": "DEUX GROSNES", + "nomCommune": "DEUX GROSNES" }, { - "codePostal": "80130", - "codeCommune": "80018", - "libelleAcheminement": "ALLENAY", - "nomCommune": "ALLENAY" + "codePostal": "80140", + "codeCommune": "80606", + "libelleAcheminement": "OISEMONT", + "nomCommune": "OISEMONT" }, { - "codePostal": "80190", - "codeCommune": "80638", - "libelleAcheminement": "POTTE", - "nomCommune": "POTTE" + "codePostal": "70180", + "codeCommune": "70546", + "libelleAcheminement": "VEREUX", + "nomCommune": "VEREUX" }, { - "codePostal": "74100", - "codeCommune": "74305", - "libelleAcheminement": "VILLE LA GRAND", - "nomCommune": "VILLE LA GRAND" + "codePostal": "80700", + "codeCommune": "80517", + "libelleAcheminement": "MARQUIVILLERS", + "nomCommune": "MARQUIVILLERS" }, { - "codePostal": "24750", - "codeCommune": "24312", - "libelleAcheminement": "SANILHAC", - "nomCommune": "SANILHAC" + "codePostal": "67340", + "codeCommune": "67392", + "libelleAcheminement": "REIPERTSWILLER", + "nomCommune": "REIPERTSWILLER" }, { - "codePostal": "80080", - "codeCommune": "80021", - "libelleAcheminement": "AMIENS", - "nomCommune": "AMIENS" + "codePostal": "69700", + "codeCommune": "69136", + "libelleAcheminement": "MONTAGNY", + "nomCommune": "MONTAGNY" }, { - "codePostal": "80260", - "codeCommune": "80639", - "libelleAcheminement": "POULAINVILLE", - "nomCommune": "POULAINVILLE" + "codePostal": "80700", + "codeCommune": "80617", + "libelleAcheminement": "PARVILLERS LE QUESNOY", + "nomCommune": "PARVILLERS LE QUESNOY" }, { - "codePostal": "74350", - "codeCommune": "74307", - "libelleAcheminement": "VILLY LE PELLOUX", - "nomCommune": "VILLY LE PELLOUX" + "codePostal": "70190", + "codeCommune": "70560", + "libelleAcheminement": "VILLERS BOUTON", + "nomCommune": "VILLERS BOUTON" }, { - "codePostal": "24510", - "codeCommune": "24318", - "libelleAcheminement": "PAUNAT", - "nomCommune": "PAUNAT" + "codePostal": "80400", + "codeCommune": "80519", + "libelleAcheminement": "MATIGNY", + "nomCommune": "MATIGNY" }, { - "codePostal": "80820", - "codeCommune": "80029", - "libelleAcheminement": "ARREST", - "nomCommune": "ARREST" + "codePostal": "67260", + "codeCommune": "67401", + "libelleAcheminement": "RIMSDORF", + "nomCommune": "RIMSDORF" }, { - "codePostal": "80560", - "codeCommune": "80645", - "libelleAcheminement": "PUCHEVILLERS", - "nomCommune": "PUCHEVILLERS" + "codePostal": "69250", + "codeCommune": "69153", + "libelleAcheminement": "POLEYMIEUX AU MONT D OR", + "nomCommune": "POLEYMIEUX AU MONT D OR" }, { - "codePostal": "74580", - "codeCommune": "74309", - "libelleAcheminement": "VIRY", - "nomCommune": "VIRY" + "codePostal": "80230", + "codeCommune": "80618", + "libelleAcheminement": "PENDE", + "nomCommune": "PENDE" }, { - "codePostal": "24310", - "codeCommune": "24319", - "libelleAcheminement": "PAUSSAC ET ST VIVIEN", - "nomCommune": "PAUSSAC ET ST VIVIEN" + "codePostal": "70110", + "codeCommune": "70562", + "libelleAcheminement": "VILLERS LA VILLE", + "nomCommune": "VILLERS LA VILLE" }, { - "codePostal": "80460", - "codeCommune": "80039", - "libelleAcheminement": "AULT", - "nomCommune": "AULT" + "codePostal": "80430", + "codeCommune": "80522", + "libelleAcheminement": "LE MAZIS", + "nomCommune": "LE MAZIS" }, { - "codePostal": "80320", - "codeCommune": "80646", - "libelleAcheminement": "PUNCHY", - "nomCommune": "PUNCHY" + "codePostal": "67270", + "codeCommune": "67406", + "libelleAcheminement": "ROHR", + "nomCommune": "ROHR" }, { - "codePostal": "74540", - "codeCommune": "74310", - "libelleAcheminement": "VIUZ LA CHIESAZ", - "nomCommune": "VIUZ LA CHIESAZ" + "codePostal": "69490", + "codeCommune": "69157", + "libelleAcheminement": "VINDRY SUR TURDINE", + "nomCommune": "VINDRY SUR TURDINE" }, { - "codePostal": "24600", - "codeCommune": "24323", - "libelleAcheminement": "PETIT BERSAC", - "nomCommune": "PETIT BERSAC" + "codePostal": "80500", + "codeCommune": "80623", + "libelleAcheminement": "PIENNES ONVILLERS", + "nomCommune": "PIENNES ONVILLERS" }, { - "codePostal": "80600", - "codeCommune": "80042", - "libelleAcheminement": "AUTHEUX", - "nomCommune": "AUTHEUX" + "codePostal": "70000", + "codeCommune": "70563", + "libelleAcheminement": "VILLERS LE SEC", + "nomCommune": "VILLERS LE SEC" }, { - "codePostal": "80430", - "codeCommune": "80651", - "libelleAcheminement": "LE QUESNE", - "nomCommune": "LE QUESNE" + "codePostal": "80290", + "codeCommune": "80525", + "libelleAcheminement": "MEIGNEUX", + "nomCommune": "MEIGNEUX" }, { - "codePostal": "74250", - "codeCommune": "74311", - "libelleAcheminement": "VIUZ EN SALLAZ", - "nomCommune": "VIUZ EN SALLAZ" + "codePostal": "67560", + "codeCommune": "67411", + "libelleAcheminement": "ROSHEIM", + "nomCommune": "ROSHEIM" }, { - "codePostal": "24580", - "codeCommune": "24330", - "libelleAcheminement": "PLAZAC", - "nomCommune": "PLAZAC" + "codePostal": "69400", + "codeCommune": "69159", + "libelleAcheminement": "PORTE DES PIERRES DOREES", + "nomCommune": "PORTE DES PIERRES DOREES" }, { - "codePostal": "80700", - "codeCommune": "80053", - "libelleAcheminement": "BALATRE", - "nomCommune": "BALATRE" + "codePostal": "80160", + "codeCommune": "80627", + "libelleAcheminement": "PLACHY BUYON", + "nomCommune": "PLACHY BUYON" + }, + { + "codePostal": "70190", + "codeCommune": "70565", + "libelleAcheminement": "VILLERS PATER", + "nomCommune": "VILLERS PATER" + }, + { + "codePostal": "80350", + "codeCommune": "80533", + "libelleAcheminement": "MERS LES BAINS", + "nomCommune": "MERS LES BAINS" + }, + { + "codePostal": "67130", + "codeCommune": "67420", + "libelleAcheminement": "RUSS", + "nomCommune": "RUSS" }, { - "codePostal": "80400", - "codeCommune": "80658", - "libelleAcheminement": "QUIVIERES", - "nomCommune": "QUIVIERES" + "codePostal": "69790", + "codeCommune": "69161", + "libelleAcheminement": "PROPIERES", + "nomCommune": "PROPIERES" }, { - "codePostal": "74140", - "codeCommune": "74315", - "libelleAcheminement": "YVOIRE", - "nomCommune": "YVOIRE" + "codePostal": "80290", + "codeCommune": "80630", + "libelleAcheminement": "POIX DE PICARDIE", + "nomCommune": "POIX DE PICARDIE" }, { - "codePostal": "24240", - "codeCommune": "24331", - "libelleAcheminement": "POMPORT", - "nomCommune": "POMPORT" + "codePostal": "70190", + "codeCommune": "70575", + "libelleAcheminement": "VORAY SUR L OGNON", + "nomCommune": "VORAY SUR L OGNON" }, { - "codePostal": "80260", - "codeCommune": "80056", - "libelleAcheminement": "BAVELINCOURT", - "nomCommune": "BAVELINCOURT" + "codePostal": "80270", + "codeCommune": "80543", + "libelleAcheminement": "METIGNY", + "nomCommune": "METIGNY" }, { - "codePostal": "80600", - "codeCommune": "80659", - "libelleAcheminement": "RAINCHEVAL", - "nomCommune": "RAINCHEVAL" + "codePostal": "67390", + "codeCommune": "67422", + "libelleAcheminement": "SAASENHEIM", + "nomCommune": "SAASENHEIM" }, { - "codePostal": "75002", - "codeCommune": "75102", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 02" + "codePostal": "69460", + "codeCommune": "69172", + "libelleAcheminement": "SALLES ARBUISSONNAS BEAUJOLAIS", + "nomCommune": "SALLES ARBUISSONNAS EN BEAUJOLAIS" }, { - "codePostal": "24530", - "codeCommune": "24346", - "libelleAcheminement": "QUINSAC", - "nomCommune": "QUINSAC" + "codePostal": "80115", + "codeCommune": "80634", + "libelleAcheminement": "PONT NOYELLES", + "nomCommune": "PONT NOYELLES" }, { - "codePostal": "80300", - "codeCommune": "80059", - "libelleAcheminement": "BAZENTIN", - "nomCommune": "BAZENTIN" + "codePostal": "70400", + "codeCommune": "70579", + "libelleAcheminement": "VYANS LE VAL", + "nomCommune": "VYANS LE VAL" }, { - "codePostal": "80140", - "codeCommune": "80662", - "libelleAcheminement": "RAMBURELLES", - "nomCommune": "RAMBURELLES" + "codePostal": "80200", + "codeCommune": "80552", + "libelleAcheminement": "MOISLAINS", + "nomCommune": "MOISLAINS" }, { - "codePostal": "75003", - "codeCommune": "75103", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 03" + "codePostal": "67160", + "codeCommune": "67432", + "libelleAcheminement": "SALMBACH", + "nomCommune": "SALMBACH" }, { - "codePostal": "24440", - "codeCommune": "24347", - "libelleAcheminement": "RAMPIEUX", - "nomCommune": "RAMPIEUX" + "codePostal": "69170", + "codeCommune": "69174", + "libelleAcheminement": "LES SAUVAGES", + "nomCommune": "LES SAUVAGES" }, { "codePostal": "80300", - "codeCommune": "80069", - "libelleAcheminement": "BEAUMONT HAMEL", - "nomCommune": "BEAUMONT HAMEL" + "codeCommune": "80640", + "libelleAcheminement": "POZIERES", + "nomCommune": "POZIERES" }, { - "codePostal": "80120", - "codeCommune": "80665", - "libelleAcheminement": "REGNIERE ECLUSE", - "nomCommune": "REGNIERE ECLUSE" + "codePostal": "70130", + "codeCommune": "70580", + "libelleAcheminement": "VY LE FERROUX", + "nomCommune": "VY LE FERROUX" }, { - "codePostal": "75008", - "codeCommune": "75108", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 08" + "codePostal": "80200", + "codeCommune": "80555", + "libelleAcheminement": "MONCHY LAGACHE", + "nomCommune": "MONCHY LAGACHE" }, { - "codePostal": "24250", - "codeCommune": "24355", - "libelleAcheminement": "LA ROQUE GAGEAC", - "nomCommune": "LA ROQUE GAGEAC" + "codePostal": "67260", + "codeCommune": "67435", + "libelleAcheminement": "SARREWERDEN", + "nomCommune": "SARREWERDEN" }, { - "codePostal": "80160", - "codeCommune": "80079", - "libelleAcheminement": "BELLEUSE", - "nomCommune": "BELLEUSE" + "codePostal": "69210", + "codeCommune": "69177", + "libelleAcheminement": "SOURCIEUX LES MINES", + "nomCommune": "SOURCIEUX LES MINES" }, { - "codePostal": "80160", - "codeCommune": "80675", - "libelleAcheminement": "ROGY", - "nomCommune": "ROGY" + "codePostal": "80320", + "codeCommune": "80647", + "libelleAcheminement": "PUZEAUX", + "nomCommune": "PUZEAUX" }, { - "codePostal": "75014", - "codeCommune": "75114", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 14" + "codePostal": "70230", + "codeCommune": "70583", + "libelleAcheminement": "VY LES FILAIN", + "nomCommune": "VY LES FILAIN" }, { - "codePostal": "24380", - "codeCommune": "24362", - "libelleAcheminement": "VAL DE LOUYRE ET CAUDEAU", - "nomCommune": "VAL DE LOUYRE ET CAUDEAU" + "codePostal": "80210", + "codeCommune": "80556", + "libelleAcheminement": "MONS BOUBERT", + "nomCommune": "MONS BOUBERT" }, { - "codePostal": "80370", - "codeCommune": "80086", - "libelleAcheminement": "BERNAVILLE", - "nomCommune": "BERNAVILLE" + "codePostal": "67260", + "codeCommune": "67435", + "libelleAcheminement": "SARREWERDEN", + "nomCommune": "SARREWERDEN" }, { - "codePostal": "80740", - "codeCommune": "80679", - "libelleAcheminement": "LE RONSSOY", - "nomCommune": "RONSSOY" + "codePostal": "69440", + "codeCommune": "69184", + "libelleAcheminement": "STE CATHERINE", + "nomCommune": "STE CATHERINE" }, { - "codePostal": "75016", - "codeCommune": "75116", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 16" + "codePostal": "80115", + "codeCommune": "80650", + "libelleAcheminement": "QUERRIEU", + "nomCommune": "QUERRIEU" }, { - "codePostal": "24110", - "codeCommune": "24372", - "libelleAcheminement": "ST ASTIER", - "nomCommune": "ST ASTIER" + "codePostal": "71550", + "codeCommune": "71009", + "libelleAcheminement": "ANOST", + "nomCommune": "ANOST" }, { - "codePostal": "80110", - "codeCommune": "80094", - "libelleAcheminement": "BERTEAUCOURT LES THENNES", - "nomCommune": "BERTEAUCOURT LES THENNES" + "codePostal": "80200", + "codeCommune": "80557", + "libelleAcheminement": "ESTREES MONS", + "nomCommune": "ESTREES MONS" }, { - "codePostal": "80970", - "codeCommune": "80692", - "libelleAcheminement": "SAILLY FLIBEAUCOURT", - "nomCommune": "SAILLY FLIBEAUCOURT" + "codePostal": "67270", + "codeCommune": "67444", + "libelleAcheminement": "SCHERLENHEIM", + "nomCommune": "SCHERLENHEIM" }, { - "codePostal": "75017", - "codeCommune": "75117", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 17" + "codePostal": "69440", + "codeCommune": "69184", + "libelleAcheminement": "STE CATHERINE", + "nomCommune": "STE CATHERINE" }, { - "codePostal": "24560", - "codeCommune": "24374", - "libelleAcheminement": "ST AUBIN DE LANQUAIS", - "nomCommune": "ST AUBIN DE LANQUAIS" + "codePostal": "80540", + "codeCommune": "80670", + "libelleAcheminement": "REVELLES", + "nomCommune": "REVELLES" }, { - "codePostal": "80130", - "codeCommune": "80096", - "libelleAcheminement": "BETHENCOURT SUR MER", - "nomCommune": "BETHENCOURT SUR MER" + "codePostal": "71270", + "codeCommune": "71013", + "libelleAcheminement": "AUTHUMES", + "nomCommune": "AUTHUMES" }, { - "codePostal": "80960", - "codeCommune": "80700", - "libelleAcheminement": "ST BLIMONT", - "nomCommune": "ST BLIMONT" + "codePostal": "80300", + "codeCommune": "80560", + "libelleAcheminement": "MONTAUBAN DE PICARDIE", + "nomCommune": "MONTAUBAN DE PICARDIE" }, { - "codePostal": "75019", - "codeCommune": "75119", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 19" + "codePostal": "67240", + "codeCommune": "67449", + "libelleAcheminement": "SCHIRRHEIN", + "nomCommune": "SCHIRRHEIN" }, { - "codePostal": "24250", - "codeCommune": "24375", - "libelleAcheminement": "ST AUBIN DE NABIRAT", - "nomCommune": "ST AUBIN DE NABIRAT" + "codePostal": "69790", + "codeCommune": "69186", + "libelleAcheminement": "ST CLEMENT DE VERS", + "nomCommune": "ST CLEMENT DE VERS" }, { - "codePostal": "80610", - "codeCommune": "80100", - "libelleAcheminement": "BETTENCOURT ST OUEN", - "nomCommune": "BETTENCOURT ST OUEN" + "codePostal": "80700", + "codeCommune": "80676", + "libelleAcheminement": "ROIGLISE", + "nomCommune": "ROIGLISE" }, { - "codePostal": "80680", - "codeCommune": "80702", - "libelleAcheminement": "ST FUSCIEN", - "nomCommune": "ST FUSCIEN" + "codePostal": "71400", + "codeCommune": "71015", + "libelleAcheminement": "AUXY", + "nomCommune": "AUXY" }, { - "codePostal": "76640", - "codeCommune": "76002", - "libelleAcheminement": "ALVIMARE", - "nomCommune": "ALVIMARE" + "codePostal": "80340", + "codeCommune": "80569", + "libelleAcheminement": "MORCOURT", + "nomCommune": "MORCOURT" }, { - "codePostal": "24260", - "codeCommune": "24377", - "libelleAcheminement": "ST AVIT DE VIALARD", - "nomCommune": "ST AVIT DE VIALARD" + "codePostal": "67370", + "codeCommune": "67452", + "libelleAcheminement": "SCHNERSHEIM", + "nomCommune": "SCHNERSHEIM" }, { - "codePostal": "80290", - "codeCommune": "80106", - "libelleAcheminement": "BLANGY SOUS POIX", - "nomCommune": "BLANGY SOUS POIX" + "codePostal": "69280", + "codeCommune": "69190", + "libelleAcheminement": "STE CONSORCE", + "nomCommune": "STE CONSORCE" }, { - "codePostal": "80430", - "codeCommune": "80703", - "libelleAcheminement": "ST GERMAIN SUR BRESLE", - "nomCommune": "ST GERMAIN SUR BRESLE" + "codePostal": "80500", + "codeCommune": "80678", + "libelleAcheminement": "ROLLOT", + "nomCommune": "ROLLOT" }, { - "codePostal": "76920", - "codeCommune": "76005", - "libelleAcheminement": "AMFREVILLE LA MI VOIE", - "nomCommune": "AMFREVILLE LA MI VOIE" + "codePostal": "71270", + "codeCommune": "71029", + "libelleAcheminement": "BELLEVESVRE", + "nomCommune": "BELLEVESVRE" }, { - "codePostal": "24590", - "codeCommune": "24392", - "libelleAcheminement": "ST CREPIN ET CARLUCET", - "nomCommune": "ST CREPIN ET CARLUCET" + "codePostal": "80300", + "codeCommune": "80572", + "libelleAcheminement": "MORLANCOURT", + "nomCommune": "MORLANCOURT" }, { - "codePostal": "80600", - "codeCommune": "80108", - "libelleAcheminement": "BOISBERGUES", - "nomCommune": "BOISBERGUES" + "codePostal": "67260", + "codeCommune": "67456", + "libelleAcheminement": "SCHOPPERTEN", + "nomCommune": "SCHOPPERTEN" }, { - "codePostal": "80700", - "codeCommune": "80708", - "libelleAcheminement": "ST MARD", - "nomCommune": "ST MARD" + "codePostal": "69490", + "codeCommune": "69200", + "libelleAcheminement": "ST FORGEUX", + "nomCommune": "ST FORGEUX" }, { - "codePostal": "76560", - "codeCommune": "76009", - "libelleAcheminement": "ANCOURTEVILLE SUR HERICOURT", - "nomCommune": "ANCOURTEVILLE SUR HERICOURT" + "codePostal": "80190", + "codeCommune": "80683", + "libelleAcheminement": "ROUY LE GRAND", + "nomCommune": "ROUY LE GRAND" }, { - "codePostal": "24270", - "codeCommune": "24397", - "libelleAcheminement": "ST CYR LES CHAMPAGNES", - "nomCommune": "ST CYR LES CHAMPAGNES" + "codePostal": "71800", + "codeCommune": "71041", + "libelleAcheminement": "BOIS STE MARIE", + "nomCommune": "BOIS STE MARIE" }, { - "codePostal": "80160", - "codeCommune": "80114", - "libelleAcheminement": "LE BOSQUEL", - "nomCommune": "BOSQUEL" + "codePostal": "80870", + "codeCommune": "80578", + "libelleAcheminement": "MOYENNEVILLE", + "nomCommune": "MOYENNEVILLE" }, { - "codePostal": "80470", - "codeCommune": "80718", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "67440", + "codeCommune": "67459", + "libelleAcheminement": "SCHWENHEIM", + "nomCommune": "SCHWENHEIM" }, { - "codePostal": "76760", - "codeCommune": "76010", - "libelleAcheminement": "ANCRETIEVILLE ST VICTOR", - "nomCommune": "ANCRETIEVILLE ST VICTOR" + "codePostal": "69610", + "codeCommune": "69201", + "libelleAcheminement": "STE FOY L ARGENTIERE", + "nomCommune": "STE FOY L ARGENTIERE" }, { - "codePostal": "24170", - "codeCommune": "24406", - "libelleAcheminement": "STE FOY DE BELVES", - "nomCommune": "STE FOY DE BELVES" + "codePostal": "80700", + "codeCommune": "80685", + "libelleAcheminement": "ROYE", + "nomCommune": "ROYE" }, { - "codePostal": "80310", - "codeCommune": "80123", - "libelleAcheminement": "BOURDON", - "nomCommune": "BOURDON" + "codePostal": "71110", + "codeCommune": "71048", + "libelleAcheminement": "BOURG LE COMTE", + "nomCommune": "BOURG LE COMTE" }, { - "codePostal": "80480", - "codeCommune": "80724", - "libelleAcheminement": "SALEUX", - "nomCommune": "SALEUX" + "codePostal": "80290", + "codeCommune": "80582", + "libelleAcheminement": "NAMPS MAISNIL", + "nomCommune": "NAMPS MAISNIL" }, { - "codePostal": "76480", - "codeCommune": "76020", - "libelleAcheminement": "ANNEVILLE AMBOURVILLE", - "nomCommune": "ANNEVILLE AMBOURVILLE" + "codePostal": "67260", + "codeCommune": "67468", + "libelleAcheminement": "SILTZHEIM", + "nomCommune": "SILTZHEIM" }, { - "codePostal": "24700", - "codeCommune": "24415", - "libelleAcheminement": "ST GERAUD DE CORPS", - "nomCommune": "ST GERAUD DE CORPS" + "codePostal": "69230", + "codeCommune": "69204", + "libelleAcheminement": "ST GENIS LAVAL", + "nomCommune": "ST GENIS LAVAL" }, { - "codePostal": "80500", - "codeCommune": "80125", - "libelleAcheminement": "BOUSSICOURT", - "nomCommune": "BOUSSICOURT" + "codePostal": "80260", + "codeCommune": "80686", + "libelleAcheminement": "RUBEMPRE", + "nomCommune": "RUBEMPRE" }, { - "codePostal": "80160", - "codeCommune": "80734", - "libelleAcheminement": "SENTELIE", - "nomCommune": "SENTELIE" + "codePostal": "71350", + "codeCommune": "71054", + "libelleAcheminement": "BRAGNY SUR SAONE", + "nomCommune": "BRAGNY SUR SAONE" }, { - "codePostal": "76110", - "codeCommune": "76033", - "libelleAcheminement": "AUBERVILLE LA RENAULT", - "nomCommune": "AUBERVILLE LA RENAULT" + "codePostal": "80160", + "codeCommune": "80583", + "libelleAcheminement": "NAMPTY", + "nomCommune": "NAMPTY" }, { - "codePostal": "24170", - "codeCommune": "24416", - "libelleAcheminement": "ST GERMAIN DE BELVES", - "nomCommune": "ST GERMAIN DE BELVES" + "codePostal": "67770", + "codeCommune": "67476", + "libelleAcheminement": "STATTMATTEN", + "nomCommune": "STATTMATTEN" }, { - "codePostal": "80200", - "codeCommune": "80128", - "libelleAcheminement": "BOUVINCOURT EN VERMANDOIS", - "nomCommune": "BOUVINCOURT EN VERMANDOIS" + "codePostal": "69790", + "codeCommune": "69209", + "libelleAcheminement": "ST IGNY DE VERS", + "nomCommune": "ST IGNY DE VERS" }, { - "codePostal": "80250", - "codeCommune": "80740", - "libelleAcheminement": "SOURDON", - "nomCommune": "SOURDON" + "codePostal": "80800", + "codeCommune": "80693", + "libelleAcheminement": "SAILLY LAURETTE", + "nomCommune": "SAILLY LAURETTE" }, { - "codePostal": "76190", - "codeCommune": "76043", - "libelleAcheminement": "AUZEBOSC", - "nomCommune": "AUZEBOSC" + "codePostal": "71110", + "codeCommune": "71060", + "libelleAcheminement": "BRIANT", + "nomCommune": "BRIANT" }, { - "codePostal": "24520", - "codeCommune": "24419", - "libelleAcheminement": "ST GERMAIN ET MONS", - "nomCommune": "ST GERMAIN ET MONS" + "codePostal": "80140", + "codeCommune": "80591", + "libelleAcheminement": "NEUVILLE AU BOIS", + "nomCommune": "NEUVILLE AU BOIS" }, { - "codePostal": "80110", - "codeCommune": "80132", - "libelleAcheminement": "BRACHES", - "nomCommune": "BRACHES" + "codePostal": "67440", + "codeCommune": "67489", + "libelleAcheminement": "THAL MARMOUTIER", + "nomCommune": "THAL MARMOUTIER" }, { - "codePostal": "80600", - "codeCommune": "80749", - "libelleAcheminement": "TERRAMESNIL", - "nomCommune": "TERRAMESNIL" + "codePostal": "69850", + "codeCommune": "69227", + "libelleAcheminement": "ST MARTIN EN HAUT", + "nomCommune": "ST MARTIN EN HAUT" }, { - "codePostal": "76730", - "codeCommune": "76047", - "libelleAcheminement": "AUZOUVILLE SUR SAANE", - "nomCommune": "AUZOUVILLE SUR SAANE" + "codePostal": "80360", + "codeCommune": "80695", + "libelleAcheminement": "SAILLY SAILLISEL", + "nomCommune": "SAILLY SAILLISEL" }, { - "codePostal": "24400", - "codeCommune": "24420", - "libelleAcheminement": "ST GERY", - "nomCommune": "ST GERY" + "codePostal": "71960", + "codeCommune": "71069", + "libelleAcheminement": "BUSSIERES", + "nomCommune": "BUSSIERES" }, { - "codePostal": "80160", - "codeCommune": "80134", - "libelleAcheminement": "BRASSY", - "nomCommune": "BRASSY" + "codePostal": "80430", + "codeCommune": "80592", + "libelleAcheminement": "NEUVILLE COPPEGUEULE", + "nomCommune": "NEUVILLE COPPEGUEULE" }, { - "codePostal": "80110", - "codeCommune": "80751", - "libelleAcheminement": "THENNES", - "nomCommune": "THENNES" + "codePostal": "67440", + "codeCommune": "67489", + "libelleAcheminement": "THAL MARMOUTIER", + "nomCommune": "THAL MARMOUTIER" }, { - "codePostal": "76660", - "codeCommune": "76052", - "libelleAcheminement": "BAILLEUL NEUVILLE", - "nomCommune": "BAILLEUL NEUVILLE" + "codePostal": "69440", + "codeCommune": "69228", + "libelleAcheminement": "CHABANIERE", + "nomCommune": "CHABANIERE" }, { - "codePostal": "24140", - "codeCommune": "24422", - "libelleAcheminement": "ST HILAIRE D ESTISSAC", - "nomCommune": "ST HILAIRE D ESTISSAC" + "codePostal": "80140", + "codeCommune": "80710", + "libelleAcheminement": "ST MAXENT", + "nomCommune": "ST MAXENT" }, { - "codePostal": "80580", - "codeCommune": "80135", - "libelleAcheminement": "BRAY LES MAREUIL", - "nomCommune": "BRAY LES MAREUIL" + "codePostal": "71110", + "codeCommune": "71077", + "libelleAcheminement": "CHAMBILLY", + "nomCommune": "CHAMBILLY" }, { - "codePostal": "80240", - "codeCommune": "80762", - "libelleAcheminement": "TINCOURT BOUCLY", - "nomCommune": "TINCOURT BOUCLY" + "codePostal": "80150", + "codeCommune": "80599", + "libelleAcheminement": "NOYELLES EN CHAUSSEE", + "nomCommune": "NOYELLES EN CHAUSSEE" }, { - "codePostal": "76360", - "codeCommune": "76057", - "libelleAcheminement": "BARENTIN", - "nomCommune": "BARENTIN" + "codePostal": "67370", + "codeCommune": "67495", + "libelleAcheminement": "TRUCHTERSHEIM", + "nomCommune": "TRUCHTERSHEIM" }, { - "codePostal": "24500", - "codeCommune": "24423", - "libelleAcheminement": "ST JULIEN INNOCENCE EULALIE", - "nomCommune": "ST JULIEN INNOCENCE EULALIE" + "codePostal": "69620", + "codeCommune": "69239", + "libelleAcheminement": "ST VERAND", + "nomCommune": "ST VERAND" }, { - "codePostal": "80470", - "codeCommune": "80137", - "libelleAcheminement": "BREILLY", - "nomCommune": "BREILLY" + "codePostal": "80310", + "codeCommune": "80722", + "libelleAcheminement": "ST VAAST EN CHAUSSEE", + "nomCommune": "ST VAAST EN CHAUSSEE" }, { - "codePostal": "80400", - "codeCommune": "80771", - "libelleAcheminement": "UGNY L EQUIPEE", - "nomCommune": "UGNY L EQUIPEE" + "codePostal": "71510", + "codeCommune": "71078", + "libelleAcheminement": "CHAMILLY", + "nomCommune": "CHAMILLY" }, { - "codePostal": "76440", - "codeCommune": "76060", - "libelleAcheminement": "BEAUBEC LA ROSIERE", - "nomCommune": "BEAUBEC LA ROSIERE" + "codePostal": "80210", + "codeCommune": "80603", + "libelleAcheminement": "OCHANCOURT", + "nomCommune": "OCHANCOURT" }, { - "codePostal": "24400", - "codeCommune": "24436", - "libelleAcheminement": "ST LAURENT DES HOMMES", - "nomCommune": "ST LAURENT DES HOMMES" + "codePostal": "67330", + "codeCommune": "67503", + "libelleAcheminement": "UTTWILLER", + "nomCommune": "UTTWILLER" }, { - "codePostal": "80700", - "codeCommune": "80152", - "libelleAcheminement": "BUS LA MESIERE", - "nomCommune": "BUS LA MESIERE" + "codePostal": "69240", + "codeCommune": "69240", + "libelleAcheminement": "ST VINCENT DE REINS", + "nomCommune": "ST VINCENT DE REINS" }, { - "codePostal": "80230", - "codeCommune": "80780", - "libelleAcheminement": "VAUDRICOURT", - "nomCommune": "VAUDRICOURT" + "codePostal": "80480", + "codeCommune": "80725", + "libelleAcheminement": "SALOUEL", + "nomCommune": "SALOUEL" }, { - "codePostal": "76850", - "codeCommune": "76062", - "libelleAcheminement": "BEAUMONT LE HARENG", - "nomCommune": "BEAUMONT LE HARENG" + "codePostal": "71480", + "codeCommune": "71079", + "libelleAcheminement": "CHAMPAGNAT", + "nomCommune": "CHAMPAGNAT" }, { - "codePostal": "24110", - "codeCommune": "24442", - "libelleAcheminement": "ST LEON SUR L ISLE", - "nomCommune": "ST LEON SUR L ISLE" + "codePostal": "80400", + "codeCommune": "80605", + "libelleAcheminement": "OFFOY", + "nomCommune": "OFFOY" }, { - "codePostal": "80800", - "codeCommune": "80156", - "libelleAcheminement": "BUSSY LES DAOURS", - "nomCommune": "BUSSY LES DAOURS" + "codePostal": "67290", + "codeCommune": "67509", + "libelleAcheminement": "VOLKSBERG", + "nomCommune": "VOLKSBERG" }, { - "codePostal": "80480", - "codeCommune": "80791", - "libelleAcheminement": "VERS SUR SELLE", - "nomCommune": "VERS SUR SELLE" + "codePostal": "69440", + "codeCommune": "69241", + "libelleAcheminement": "TALUYERS", + "nomCommune": "TALUYERS" }, { - "codePostal": "76890", - "codeCommune": "76063", - "libelleAcheminement": "BEAUVAL EN CAUX", - "nomCommune": "BEAUVAL EN CAUX" + "codePostal": "80140", + "codeCommune": "80732", + "libelleAcheminement": "SENARPONT", + "nomCommune": "SENARPONT" }, { - "codePostal": "24160", - "codeCommune": "24448", - "libelleAcheminement": "ST MARTIAL D ALBAREDE", - "nomCommune": "ST MARTIAL D ALBAREDE" + "codePostal": "71570", + "codeCommune": "71084", + "libelleAcheminement": "CHANES", + "nomCommune": "CHANES" }, { - "codePostal": "80170", - "codeCommune": "80162", - "libelleAcheminement": "CAIX", - "nomCommune": "CAIX" + "codePostal": "80135", + "codeCommune": "80609", + "libelleAcheminement": "ONEUX", + "nomCommune": "ONEUX" }, { - "codePostal": "80650", - "codeCommune": "80793", - "libelleAcheminement": "VIGNACOURT", - "nomCommune": "VIGNACOURT" + "codePostal": "67130", + "codeCommune": "67513", + "libelleAcheminement": "WALDERSBACH", + "nomCommune": "WALDERSBACH" }, { - "codePostal": "76890", - "codeCommune": "76072", - "libelleAcheminement": "BELLEVILLE EN CAUX", - "nomCommune": "BELLEVILLE EN CAUX" + "codePostal": "69420", + "codeCommune": "69253", + "libelleAcheminement": "TUPIN ET SEMONS", + "nomCommune": "TUPIN ET SEMONS" }, { - "codePostal": "24250", - "codeCommune": "24450", - "libelleAcheminement": "ST MARTIAL DE NABIRAT", - "nomCommune": "ST MARTIAL DE NABIRAT" + "codePostal": "80160", + "codeCommune": "80734", + "libelleAcheminement": "SENTELIE", + "nomCommune": "SENTELIE" }, { - "codePostal": "80132", - "codeCommune": "80171", - "libelleAcheminement": "CAOURS", - "nomCommune": "CAOURS" + "codePostal": "71700", + "codeCommune": "71094", + "libelleAcheminement": "LA CHAPELLE SOUS BRANCION", + "nomCommune": "LA CHAPELLE SOUS BRANCION" }, { - "codePostal": "80190", - "codeCommune": "80794", - "libelleAcheminement": "VILLECOURT", - "nomCommune": "VILLECOURT" + "codePostal": "80600", + "codeCommune": "80614", + "libelleAcheminement": "OUTREBOIS", + "nomCommune": "OUTREBOIS" }, { - "codePostal": "76590", - "codeCommune": "76085", - "libelleAcheminement": "BERTREVILLE ST OUEN", - "nomCommune": "BERTREVILLE ST OUEN" + "codePostal": "67430", + "codeCommune": "67514", + "libelleAcheminement": "WALDHAMBACH", + "nomCommune": "WALDHAMBACH" }, { - "codePostal": "24600", - "codeCommune": "24455", - "libelleAcheminement": "ST MARTIN DE RIBERAC", - "nomCommune": "ST MARTIN DE RIBERAC" + "codePostal": "69120", + "codeCommune": "69256", + "libelleAcheminement": "VAULX EN VELIN", + "nomCommune": "VAULX EN VELIN" }, { - "codePostal": "80310", - "codeCommune": "80180", - "libelleAcheminement": "CAVILLON", - "nomCommune": "CAVILLON" + "codePostal": "80620", + "codeCommune": "80742", + "libelleAcheminement": "SURCAMPS", + "nomCommune": "SURCAMPS" }, { - "codePostal": "80110", - "codeCommune": "80797", - "libelleAcheminement": "VILLERS AUX ERABLES", - "nomCommune": "VILLERS AUX ERABLES" + "codePostal": "71800", + "codeCommune": "71095", + "libelleAcheminement": "LA CHAPELLE SOUS DUN", + "nomCommune": "LA CHAPELLE SOUS DUN" }, { - "codePostal": "76480", - "codeCommune": "76088", - "libelleAcheminement": "BERVILLE SUR SEINE", - "nomCommune": "BERVILLE SUR SEINE" + "codePostal": "80320", + "codeCommune": "80621", + "libelleAcheminement": "HYPERCOURT", + "nomCommune": "HYPERCOURT" }, { - "codePostal": "24140", - "codeCommune": "24456", - "libelleAcheminement": "ST MARTIN DES COMBES", - "nomCommune": "ST MARTIN DES COMBES" + "codePostal": "67290", + "codeCommune": "67522", + "libelleAcheminement": "WEISLINGEN", + "nomCommune": "WEISLINGEN" }, { - "codePostal": "80310", - "codeCommune": "80187", - "libelleAcheminement": "LA CHAUSSEE TIRANCOURT", - "nomCommune": "LA CHAUSSEE TIRANCOURT" + "codePostal": "69200", + "codeCommune": "69259", + "libelleAcheminement": "VENISSIEUX", + "nomCommune": "VENISSIEUX" }, { - "codePostal": "80200", - "codeCommune": "80801", - "libelleAcheminement": "VILLERS CARBONNEL", - "nomCommune": "VILLERS CARBONNEL" + "codePostal": "80240", + "codeCommune": "80748", + "libelleAcheminement": "TEMPLEUX LE GUERARD", + "nomCommune": "TEMPLEUX LE GUERARD" }, { - "codePostal": "76890", - "codeCommune": "76096", - "libelleAcheminement": "BIVILLE LA BAIGNARDE", - "nomCommune": "BIVILLE LA BAIGNARDE" + "codePostal": "71710", + "codeCommune": "71103", + "libelleAcheminement": "CHARMOY", + "nomCommune": "CHARMOY" }, { - "codePostal": "24380", - "codeCommune": "24459", - "libelleAcheminement": "ST MAYME DE PEREYROL", - "nomCommune": "ST MAYME DE PEREYROL" + "codePostal": "80320", + "codeCommune": "80621", + "libelleAcheminement": "HYPERCOURT", + "nomCommune": "HYPERCOURT" }, { - "codePostal": "80560", - "codeCommune": "80203", - "libelleAcheminement": "COLINCAMPS", - "nomCommune": "COLINCAMPS" + "codePostal": "67340", + "codeCommune": "67524", + "libelleAcheminement": "WEITERSWILLER", + "nomCommune": "WEITERSWILLER" }, { - "codePostal": "80240", - "codeCommune": "80802", - "libelleAcheminement": "VILLERS FAUCON", - "nomCommune": "VILLERS FAUCON" + "codePostal": "69430", + "codeCommune": "69261", + "libelleAcheminement": "VERNAY", + "nomCommune": "VERNAY" }, { - "codePostal": "76116", - "codeCommune": "76100", - "libelleAcheminement": "BLAINVILLE CREVON", - "nomCommune": "BLAINVILLE CREVON" + "codePostal": "80200", + "codeCommune": "80750", + "libelleAcheminement": "TERTRY", + "nomCommune": "TERTRY" }, { - "codePostal": "24270", - "codeCommune": "24464", - "libelleAcheminement": "ST MESMIN", - "nomCommune": "ST MESMIN" + "codePostal": "71120", + "codeCommune": "71106", + "libelleAcheminement": "CHAROLLES", + "nomCommune": "CHAROLLES" }, { - "codePostal": "80300", - "codeCommune": "80206", - "libelleAcheminement": "CONTALMAISON", - "nomCommune": "CONTALMAISON" + "codePostal": "80500", + "codeCommune": "80623", + "libelleAcheminement": "PIENNES ONVILLERS", + "nomCommune": "PIENNES ONVILLERS" }, { - "codePostal": "80120", - "codeCommune": "80806", - "libelleAcheminement": "VILLERS SUR AUTHIE", - "nomCommune": "VILLERS SUR AUTHIE" + "codePostal": "67370", + "codeCommune": "67532", + "libelleAcheminement": "WILLGOTTHEIM", + "nomCommune": "WILLGOTTHEIM" }, { - "codePostal": "76680", - "codeCommune": "76119", - "libelleAcheminement": "BOSC BERENGER", - "nomCommune": "BOSC BERENGER" + "codePostal": "69100", + "codeCommune": "69266", + "libelleAcheminement": "VILLEURBANNE", + "nomCommune": "VILLEURBANNE" }, { - "codePostal": "24230", - "codeCommune": "24466", - "libelleAcheminement": "ST MICHEL DE MONTAIGNE", - "nomCommune": "ST MICHEL DE MONTAIGNE" + "codePostal": "80640", + "codeCommune": "80754", + "libelleAcheminement": "THIEULLOY L ABBAYE", + "nomCommune": "THIEULLOY L ABBAYE" }, { - "codePostal": "80135", - "codeCommune": "80215", - "libelleAcheminement": "COULONVILLERS", - "nomCommune": "COULONVILLERS" + "codePostal": "71380", + "codeCommune": "71117", + "libelleAcheminement": "CHATENOY EN BRESSE", + "nomCommune": "CHATENOY EN BRESSE" }, { - "codePostal": "80140", - "codeCommune": "80809", - "libelleAcheminement": "VISMES AU VAL", - "nomCommune": "VISMES" + "codePostal": "80260", + "codeCommune": "80624", + "libelleAcheminement": "PIERREGOT", + "nomCommune": "PIERREGOT" }, { - "codePostal": "76850", - "codeCommune": "76125", - "libelleAcheminement": "BOSC LE HARD", - "nomCommune": "BOSC LE HARD" + "codePostal": "67270", + "codeCommune": "67539", + "libelleAcheminement": "WINGERSHEIM LES QUATRE BANS", + "nomCommune": "WINGERSHEIM LES QUATRE BANS" }, { - "codePostal": "24200", - "codeCommune": "24471", - "libelleAcheminement": "STE NATHALENE", - "nomCommune": "STE NATHALENE" + "codePostal": "69510", + "codeCommune": "69269", + "libelleAcheminement": "YZERON", + "nomCommune": "YZERON" }, { - "codePostal": "80160", - "codeCommune": "80219", - "libelleAcheminement": "COURCELLES SOUS THOIX", - "nomCommune": "COURCELLES SOUS THOIX" + "codePostal": "80290", + "codeCommune": "80755", + "libelleAcheminement": "THIEULLOY LA VILLE", + "nomCommune": "THIEULLOY LA VILLE" }, { - "codePostal": "80150", - "codeCommune": "80810", - "libelleAcheminement": "VITZ SUR AUTHIE", - "nomCommune": "VITZ SUR AUTHIE" + "codePostal": "71150", + "codeCommune": "71119", + "libelleAcheminement": "CHAUDENAY", + "nomCommune": "CHAUDENAY" }, { - "codePostal": "76560", - "codeCommune": "76129", - "libelleAcheminement": "BOUDEVILLE", - "nomCommune": "BOUDEVILLE" + "codePostal": "80500", + "codeCommune": "80625", + "libelleAcheminement": "TROIS RIVIERES", + "nomCommune": "TROIS RIVIERES" }, { - "codePostal": "24800", - "codeCommune": "24485", - "libelleAcheminement": "ST PIERRE DE COLE", - "nomCommune": "ST PIERRE DE COLE" + "codePostal": "67470", + "codeCommune": "67541", + "libelleAcheminement": "WINTZENBACH", + "nomCommune": "WINTZENBACH" }, { - "codePostal": "80370", - "codeCommune": "80221", - "libelleAcheminement": "CRAMONT", - "nomCommune": "CRAMONT" + "codePostal": "69680", + "codeCommune": "69271", + "libelleAcheminement": "CHASSIEU", + "nomCommune": "CHASSIEU" }, { - "codePostal": "80400", - "codeCommune": "80811", - "libelleAcheminement": "VOYENNES", - "nomCommune": "VOYENNES" + "codePostal": "80160", + "codeCommune": "80757", + "libelleAcheminement": "THOIX", + "nomCommune": "THOIX" }, { - "codePostal": "76270", - "codeCommune": "76130", - "libelleAcheminement": "BOUELLES", - "nomCommune": "BOUELLES" + "codePostal": "71220", + "codeCommune": "71128", + "libelleAcheminement": "CHIDDES", + "nomCommune": "CHIDDES" }, { - "codePostal": "24410", - "codeCommune": "24490", - "libelleAcheminement": "ST PRIVAT EN PERIGORD", - "nomCommune": "ST PRIVAT EN PERIGORD" + "codePostal": "80500", + "codeCommune": "80625", + "libelleAcheminement": "TROIS RIVIERES", + "nomCommune": "TROIS RIVIERES" }, { - "codePostal": "80700", - "codeCommune": "80223", - "libelleAcheminement": "CREMERY", - "nomCommune": "CREMERY" + "codePostal": "67160", + "codeCommune": "67544", + "libelleAcheminement": "WISSEMBOURG", + "nomCommune": "WISSEMBOURG" }, { - "codePostal": "80270", - "codeCommune": "80821", - "libelleAcheminement": "WARLUS", - "nomCommune": "WARLUS" + "codePostal": "69150", + "codeCommune": "69275", + "libelleAcheminement": "DECINES CHARPIEU", + "nomCommune": "DECINES CHARPIEU" }, { - "codePostal": "76270", - "codeCommune": "76147", - "libelleAcheminement": "BULLY", - "nomCommune": "BULLY" + "codePostal": "80870", + "codeCommune": "80764", + "libelleAcheminement": "TOEUFLES", + "nomCommune": "TOEUFLES" }, { - "codePostal": "24540", - "codeCommune": "24495", - "libelleAcheminement": "ST ROMAIN DE MONPAZIER", - "nomCommune": "ST ROMAIN DE MONPAZIER" + "codePostal": "71460", + "codeCommune": "71130", + "libelleAcheminement": "CHISSEY LES MACON", + "nomCommune": "CHISSEY LES MACON" }, { - "codePostal": "80360", - "codeCommune": "80231", - "libelleAcheminement": "CURLU", - "nomCommune": "CURLU" + "codePostal": "80540", + "codeCommune": "80626", + "libelleAcheminement": "PISSY", + "nomCommune": "PISSY" }, { - "codePostal": "80500", - "codeCommune": "80822", - "libelleAcheminement": "WARSY", - "nomCommune": "WARSY" + "codePostal": "67820", + "codeCommune": "67547", + "libelleAcheminement": "WITTISHEIM", + "nomCommune": "WITTISHEIM" }, { - "codePostal": "76660", - "codeCommune": "76148", - "libelleAcheminement": "BURES EN BRAY", - "nomCommune": "BURES EN BRAY" + "codePostal": "69740", + "codeCommune": "69277", + "libelleAcheminement": "GENAS", + "nomCommune": "GENAS" }, { - "codePostal": "24470", - "codeCommune": "24498", - "libelleAcheminement": "ST SAUD LACOUSSIERE", - "nomCommune": "ST SAUD LACOUSSIERE" + "codePostal": "80560", + "codeCommune": "80776", + "libelleAcheminement": "VARENNES", + "nomCommune": "VARENNES" }, { - "codePostal": "80370", - "codeCommune": "80243", - "libelleAcheminement": "DOMESMONT", - "nomCommune": "DOMESMONT" + "codePostal": "71420", + "codeCommune": "71132", + "libelleAcheminement": "CIRY LE NOBLE", + "nomCommune": "CIRY LE NOBLE" }, { - "codePostal": "80190", - "codeCommune": "80829", - "libelleAcheminement": "Y", - "nomCommune": "Y" + "codePostal": "80110", + "codeCommune": "80628", + "libelleAcheminement": "LE PLESSIER ROZAINVILLERS", + "nomCommune": "LE PLESSIER ROZAINVILLERS" }, { - "codePostal": "76380", - "codeCommune": "76157", - "libelleAcheminement": "CANTELEU", - "nomCommune": "CANTELEU" + "codePostal": "67120", + "codeCommune": "67554", + "libelleAcheminement": "WOLXHEIM", + "nomCommune": "WOLXHEIM" }, { - "codePostal": "24700", - "codeCommune": "24500", - "libelleAcheminement": "ST SAUVEUR LALANDE", - "nomCommune": "ST SAUVEUR LALANDE" + "codePostal": "69970", + "codeCommune": "69281", + "libelleAcheminement": "MARENNES", + "nomCommune": "MARENNES" }, { - "codePostal": "80370", - "codeCommune": "80245", - "libelleAcheminement": "DOMLEGER LONGVILLERS", - "nomCommune": "DOMLEGER LONGVILLERS" + "codePostal": "80700", + "codeCommune": "80790", + "libelleAcheminement": "VERPILLIERES", + "nomCommune": "VERPILLIERES" }, { - "codePostal": "80150", - "codeCommune": "80832", - "libelleAcheminement": "YVRENCH", - "nomCommune": "YVRENCH" + "codePostal": "71460", + "codeCommune": "71145", + "libelleAcheminement": "CORMATIN", + "nomCommune": "CORMATIN" }, { - "codePostal": "76380", - "codeCommune": "76157", - "libelleAcheminement": "CANTELEU", - "nomCommune": "CANTELEU" + "codePostal": "80240", + "codeCommune": "80629", + "libelleAcheminement": "POEUILLY", + "nomCommune": "POEUILLY" }, { - "codePostal": "24190", - "codeCommune": "24509", - "libelleAcheminement": "ST VINCENT DE CONNEZAC", - "nomCommune": "ST VINCENT DE CONNEZAC" + "codePostal": "67120", + "codeCommune": "67554", + "libelleAcheminement": "WOLXHEIM", + "nomCommune": "WOLXHEIM" }, { - "codePostal": "80620", - "codeCommune": "80249", - "libelleAcheminement": "DOMQUEUR", - "nomCommune": "DOMQUEUR" + "codePostal": "69140", + "codeCommune": "69286", + "libelleAcheminement": "RILLIEUX LA PAPE", + "nomCommune": "RILLIEUX LA PAPE" }, { - "codePostal": "81350", - "codeCommune": "81013", - "libelleAcheminement": "ANDOUQUE", - "nomCommune": "ANDOUQUE" + "codePostal": "80650", + "codeCommune": "80793", + "libelleAcheminement": "VIGNACOURT", + "nomCommune": "VIGNACOURT" }, { - "codePostal": "76560", - "codeCommune": "76158", - "libelleAcheminement": "CANVILLE LES DEUX EGLISES", - "nomCommune": "CANVILLE LES DEUX EGLISES" + "codePostal": "71250", + "codeCommune": "71146", + "libelleAcheminement": "CORTAMBERT", + "nomCommune": "CORTAMBERT" }, { - "codePostal": "24220", - "codeCommune": "24510", - "libelleAcheminement": "ST VINCENT DE COSSE", - "nomCommune": "ST VINCENT DE COSSE" + "codePostal": "80860", + "codeCommune": "80633", + "libelleAcheminement": "PONTHOILE", + "nomCommune": "PONTHOILE" }, { - "codePostal": "80400", - "codeCommune": "80252", - "libelleAcheminement": "DOUILLY", - "nomCommune": "DOUILLY" + "codePostal": "67140", + "codeCommune": "67557", + "libelleAcheminement": "ZELLWILLER", + "nomCommune": "ZELLWILLER" }, { - "codePostal": "81500", - "codeCommune": "81025", - "libelleAcheminement": "BELCASTEL", - "nomCommune": "BELCASTEL" + "codePostal": "69780", + "codeCommune": "69289", + "libelleAcheminement": "ST PIERRE DE CHANDIEU", + "nomCommune": "ST PIERRE DE CHANDIEU" }, { - "codePostal": "76430", - "codeCommune": "76169", - "libelleAcheminement": "LA CERLANGUE", - "nomCommune": "LA CERLANGUE" + "codePostal": "80420", + "codeCommune": "80795", + "libelleAcheminement": "VILLE LE MARCLET", + "nomCommune": "VILLE LE MARCLET" }, { - "codePostal": "24420", - "codeCommune": "24527", - "libelleAcheminement": "SAVIGNAC LES EGLISES", - "nomCommune": "SAVIGNAC LES EGLISES" + "codePostal": "71760", + "codeCommune": "71152", + "libelleAcheminement": "CRESSY SUR SOMME", + "nomCommune": "CRESSY SUR SOMME" }, { - "codePostal": "80240", - "codeCommune": "80258", - "libelleAcheminement": "DRIENCOURT", - "nomCommune": "DRIENCOURT" + "codePostal": "80160", + "codeCommune": "80643", + "libelleAcheminement": "PROUZEL", + "nomCommune": "PROUZEL" }, { - "codePostal": "81540", - "codeCommune": "81027", - "libelleAcheminement": "BELLESERRE", - "nomCommune": "BELLESERRE" + "codePostal": "68130", + "codeCommune": "68004", + "libelleAcheminement": "ALTKIRCH", + "nomCommune": "ALTKIRCH" }, { - "codePostal": "76740", - "codeCommune": "76172", - "libelleAcheminement": "LA CHAPELLE SUR DUN", - "nomCommune": "LA CHAPELLE SUR DUN" + "codePostal": "69360", + "codeCommune": "69296", + "libelleAcheminement": "SOLAIZE", + "nomCommune": "SOLAIZE" }, { - "codePostal": "24600", - "codeCommune": "24529", - "libelleAcheminement": "SEGONZAC", - "nomCommune": "SEGONZAC" + "codePostal": "80240", + "codeCommune": "80802", + "libelleAcheminement": "VILLERS FAUCON", + "nomCommune": "VILLERS FAUCON" }, { - "codePostal": "80140", - "codeCommune": "80269", - "libelleAcheminement": "EPAUMESNIL", - "nomCommune": "EPAUMESNIL" + "codePostal": "71800", + "codeCommune": "71160", + "libelleAcheminement": "CURBIGNY", + "nomCommune": "CURBIGNY" }, { - "codePostal": "81150", - "codeCommune": "81029", - "libelleAcheminement": "BERNAC", - "nomCommune": "BERNAC" + "codePostal": "80320", + "codeCommune": "80646", + "libelleAcheminement": "PUNCHY", + "nomCommune": "PUNCHY" }, { - "codePostal": "76570", - "codeCommune": "76174", - "libelleAcheminement": "CIDEVILLE", - "nomCommune": "CIDEVILLE" + "codePostal": "68210", + "codeCommune": "68006", + "libelleAcheminement": "BERNWILLER", + "nomCommune": "BERNWILLER" }, { - "codePostal": "24410", - "codeCommune": "24533", - "libelleAcheminement": "SERVANCHES", - "nomCommune": "SERVANCHES" + "codePostal": "69008", + "codeCommune": "69388", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 08" }, { - "codePostal": "80370", - "codeCommune": "80270", - "libelleAcheminement": "EPECAMPS", - "nomCommune": "EPECAMPS" + "codePostal": "80700", + "codeCommune": "80803", + "libelleAcheminement": "VILLERS LES ROYE", + "nomCommune": "VILLERS LES ROYE" }, { - "codePostal": "81260", - "codeCommune": "81031", - "libelleAcheminement": "LE BEZ", - "nomCommune": "LE BEZ" + "codePostal": "71320", + "codeCommune": "71166", + "libelleAcheminement": "CUZY", + "nomCommune": "CUZY" }, { - "codePostal": "76690", - "codeCommune": "76179", - "libelleAcheminement": "CLERES", - "nomCommune": "CLERES" + "codePostal": "80430", + "codeCommune": "80651", + "libelleAcheminement": "LE QUESNE", + "nomCommune": "LE QUESNE" }, { - "codePostal": "24240", - "codeCommune": "24534", - "libelleAcheminement": "SIGOULES ET FLAUGEAC", - "nomCommune": "SIGOULES ET FLAUGEAC" + "codePostal": "68130", + "codeCommune": "68010", + "libelleAcheminement": "ASPACH", + "nomCommune": "ASPACH" }, { - "codePostal": "80190", - "codeCommune": "80272", - "libelleAcheminement": "EPENANCOURT", - "nomCommune": "EPENANCOURT" + "codePostal": "69009", + "codeCommune": "69389", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 09" }, { - "codePostal": "81700", - "codeCommune": "81032", - "libelleAcheminement": "BLAN", - "nomCommune": "BLAN" + "codePostal": "80150", + "codeCommune": "80808", + "libelleAcheminement": "VIRONCHAUX", + "nomCommune": "VIRONCHAUX" }, { - "codePostal": "76550", - "codeCommune": "76184", - "libelleAcheminement": "COLMESNIL MANNEVILLE", - "nomCommune": "COLMESNIL MANNEVILLE" + "codePostal": "71620", + "codeCommune": "71167", + "libelleAcheminement": "DAMEREY", + "nomCommune": "DAMEREY" }, { - "codePostal": "24240", - "codeCommune": "24534", - "libelleAcheminement": "SIGOULES ET FLAUGEAC", - "nomCommune": "SIGOULES ET FLAUGEAC" + "codePostal": "80132", + "codeCommune": "80654", + "libelleAcheminement": "QUESNOY LE MONTANT", + "nomCommune": "QUESNOY LE MONTANT" }, { - "codePostal": "80290", - "codeCommune": "80273", - "libelleAcheminement": "EPLESSIER", - "nomCommune": "EPLESSIER" + "codePostal": "68150", + "codeCommune": "68014", + "libelleAcheminement": "AUBURE", + "nomCommune": "AUBURE" }, { - "codePostal": "81660", - "codeCommune": "81036", - "libelleAcheminement": "BOUT DU PONT DE LARN", - "nomCommune": "BOUT DU PONT DE LARN" + "codePostal": "70300", + "codeCommune": "70001", + "libelleAcheminement": "ABELCOURT", + "nomCommune": "ABELCOURT" }, { - "codePostal": "76850", - "codeCommune": "76188", - "libelleAcheminement": "COTTEVRARD", - "nomCommune": "COTTEVRARD" + "codePostal": "80400", + "codeCommune": "80811", + "libelleAcheminement": "VOYENNES", + "nomCommune": "VOYENNES" }, { - "codePostal": "24370", - "codeCommune": "24535", - "libelleAcheminement": "SIMEYROLS", - "nomCommune": "SIMEYROLS" + "codePostal": "71310", + "codeCommune": "71168", + "libelleAcheminement": "DAMPIERRE EN BRESSE", + "nomCommune": "DAMPIERRE EN BRESSE" }, { - "codePostal": "80210", - "codeCommune": "80280", - "libelleAcheminement": "ERCOURT", - "nomCommune": "ERCOURT" + "codePostal": "80270", + "codeCommune": "80655", + "libelleAcheminement": "QUESNOY SUR AIRAINES", + "nomCommune": "QUESNOY SUR AIRAINES" }, { - "codePostal": "81260", - "codeCommune": "81037", - "libelleAcheminement": "BRASSAC", - "nomCommune": "BRASSAC" + "codePostal": "68390", + "codeCommune": "68015", + "libelleAcheminement": "BALDERSHEIM", + "nomCommune": "BALDERSHEIM" }, { - "codePostal": "76910", - "codeCommune": "76192", - "libelleAcheminement": "CRIEL SUR MER", - "nomCommune": "CRIEL SUR MER" + "codePostal": "70280", + "codeCommune": "70011", + "libelleAcheminement": "AMAGE", + "nomCommune": "AMAGE" }, { - "codePostal": "24170", - "codeCommune": "24538", - "libelleAcheminement": "SIORAC EN PERIGORD", - "nomCommune": "SIORAC EN PERIGORD" + "codePostal": "80170", + "codeCommune": "80814", + "libelleAcheminement": "VRELY", + "nomCommune": "VRELY" }, { - "codePostal": "80230", - "codeCommune": "80287", - "libelleAcheminement": "ESTREBOEUF", - "nomCommune": "ESTREBOEUF" + "codePostal": "71330", + "codeCommune": "71175", + "libelleAcheminement": "DICONNE", + "nomCommune": "DICONNE" }, { - "codePostal": "81390", - "codeCommune": "81039", - "libelleAcheminement": "BRIATEXTE", - "nomCommune": "BRIATEXTE" + "codePostal": "80160", + "codeCommune": "80675", + "libelleAcheminement": "ROGY", + "nomCommune": "ROGY" }, { - "codePostal": "76111", - "codeCommune": "76194", - "libelleAcheminement": "CRIQUEBEUF EN CAUX", - "nomCommune": "CRIQUEBEUF EN CAUX" + "codePostal": "68620", + "codeCommune": "68040", + "libelleAcheminement": "BITSCHWILLER LES THANN", + "nomCommune": "BITSCHWILLER LES THANN" }, { - "codePostal": "24300", - "codeCommune": "24548", - "libelleAcheminement": "TEYJAT", - "nomCommune": "TEYJAT" + "codePostal": "70200", + "codeCommune": "70014", + "libelleAcheminement": "AMBLANS ET VELOTTE", + "nomCommune": "AMBLANS ET VELOTTE" }, { - "codePostal": "80830", - "codeCommune": "80296", - "libelleAcheminement": "L ETOILE", - "nomCommune": "L ETOILE" + "codePostal": "80150", + "codeCommune": "80832", + "libelleAcheminement": "YVRENCH", + "nomCommune": "YVRENCH" }, { - "codePostal": "81170", - "codeCommune": "81045", - "libelleAcheminement": "LES CABANNES", - "nomCommune": "LES CABANNES" + "codePostal": "71160", + "codeCommune": "71176", + "libelleAcheminement": "DIGOIN", + "nomCommune": "DIGOIN" }, { - "codePostal": "76540", - "codeCommune": "76195", - "libelleAcheminement": "CRIQUETOT LE MAUCONDUIT", - "nomCommune": "CRIQUETOT LE MAUCONDUIT" + "codePostal": "80240", + "codeCommune": "80677", + "libelleAcheminement": "ROISEL", + "nomCommune": "ROISEL" }, { - "codePostal": "24240", - "codeCommune": "24549", - "libelleAcheminement": "THENAC", - "nomCommune": "THENAC" + "codePostal": "68480", + "codeCommune": "68049", + "libelleAcheminement": "BOUXWILLER", + "nomCommune": "BOUXWILLER" }, { - "codePostal": "80470", - "codeCommune": "80305", - "libelleAcheminement": "FERRIERES", - "nomCommune": "FERRIERES" + "codePostal": "70110", + "codeCommune": "70040", + "libelleAcheminement": "AUTREY LES CERRE", + "nomCommune": "AUTREY LES CERRE" }, { - "codePostal": "81600", - "codeCommune": "81046", - "libelleAcheminement": "CADALEN", - "nomCommune": "CADALEN" + "codePostal": "80132", + "codeCommune": "80836", + "libelleAcheminement": "YONVAL", + "nomCommune": "YONVAL" }, { - "codePostal": "76590", - "codeCommune": "76197", - "libelleAcheminement": "CRIQUETOT SUR LONGUEVILLE", - "nomCommune": "CRIQUETOT SUR LONGUEVILLE" + "codePostal": "71160", + "codeCommune": "71176", + "libelleAcheminement": "DIGOIN", + "nomCommune": "DIGOIN" }, { - "codePostal": "24240", - "codeCommune": "24549", - "libelleAcheminement": "THENAC", - "nomCommune": "THENAC" + "codePostal": "80740", + "codeCommune": "80679", + "libelleAcheminement": "LE RONSSOY", + "nomCommune": "RONSSOY" }, { - "codePostal": "80210", - "codeCommune": "80308", - "libelleAcheminement": "FEUQUIERES EN VIMEU", - "nomCommune": "FEUQUIERES EN VIMEU" + "codePostal": "68220", + "codeCommune": "68061", + "libelleAcheminement": "BUSCHWILLER", + "nomCommune": "BUSCHWILLER" }, { - "codePostal": "81570", - "codeCommune": "81058", - "libelleAcheminement": "CARBES", - "nomCommune": "CARBES" + "codePostal": "70100", + "codeCommune": "70043", + "libelleAcheminement": "AUVET ET LA CHAPELOTTE", + "nomCommune": "AUVET ET LA CHAPELOTTE" }, { - "codePostal": "76780", - "codeCommune": "76201", - "libelleAcheminement": "CROISY SUR ANDELLE", - "nomCommune": "CROISY SUR ANDELLE" + "codePostal": "81470", + "codeCommune": "81001", + "libelleAcheminement": "AGUTS", + "nomCommune": "AGUTS" }, { - "codePostal": "24290", - "codeCommune": "24552", - "libelleAcheminement": "THONAC", - "nomCommune": "THONAC" + "codePostal": "71520", + "codeCommune": "71178", + "libelleAcheminement": "DOMPIERRE LES ORMES", + "nomCommune": "DOMPIERRE LES ORMES" }, { - "codePostal": "80360", - "codeCommune": "80314", - "libelleAcheminement": "FLERS", - "nomCommune": "FLERS" + "codePostal": "80170", + "codeCommune": "80680", + "libelleAcheminement": "ROSIERES EN SANTERRE", + "nomCommune": "ROSIERES EN SANTERRE" }, { - "codePostal": "81400", - "codeCommune": "81060", - "libelleAcheminement": "CARMAUX", - "nomCommune": "CARMAUX" + "codePostal": "68490", + "codeCommune": "68064", + "libelleAcheminement": "CHALAMPE", + "nomCommune": "CHALAMPE" }, { - "codePostal": "76340", - "codeCommune": "76211", - "libelleAcheminement": "DANCOURT", - "nomCommune": "DANCOURT" + "codePostal": "70000", + "codeCommune": "70044", + "libelleAcheminement": "AUXON", + "nomCommune": "AUXON" }, { - "codePostal": "24350", - "codeCommune": "24553", - "libelleAcheminement": "TOCANE ST APRE", - "nomCommune": "TOCANE ST APRE" + "codePostal": "81200", + "codeCommune": "81002", + "libelleAcheminement": "AIGUEFONDE", + "nomCommune": "AIGUEFONDE" }, { - "codePostal": "80160", - "codeCommune": "80317", - "libelleAcheminement": "FLEURY", - "nomCommune": "FLEURY" + "codePostal": "71250", + "codeCommune": "71181", + "libelleAcheminement": "DONZY LE PERTUIS", + "nomCommune": "DONZY LE PERTUIS" }, { - "codePostal": "81260", - "codeCommune": "81062", - "libelleAcheminement": "FONTRIEU", - "nomCommune": "FONTRIEU" + "codePostal": "80170", + "codeCommune": "80682", + "libelleAcheminement": "ROUVROY EN SANTERRE", + "nomCommune": "ROUVROY EN SANTERRE" }, { - "codePostal": "76590", - "codeCommune": "76214", - "libelleAcheminement": "DENESTANVILLE", - "nomCommune": "DENESTANVILLE" + "codePostal": "68210", + "codeCommune": "68065", + "libelleAcheminement": "CHAVANNES SUR L ETANG", + "nomCommune": "CHAVANNES SUR L ETANG" }, { - "codePostal": "24190", - "codeCommune": "24562", - "libelleAcheminement": "VALLEREUIL", - "nomCommune": "VALLEREUIL" + "codePostal": "70140", + "codeCommune": "70048", + "libelleAcheminement": "BARD LES PESMES", + "nomCommune": "BARD LES PESMES" }, { - "codePostal": "80150", - "codeCommune": "80327", - "libelleAcheminement": "FONTAINE SUR MAYE", - "nomCommune": "FONTAINE SUR MAYE" + "codePostal": "81160", + "codeCommune": "81018", + "libelleAcheminement": "ARTHES", + "nomCommune": "ARTHES" }, { - "codePostal": "81140", - "codeCommune": "81064", - "libelleAcheminement": "CASTELNAU DE MONTMIRAL", - "nomCommune": "CASTELNAU DE MONTMIRAL" + "codePostal": "71400", + "codeCommune": "71184", + "libelleAcheminement": "DRACY ST LOUP", + "nomCommune": "DRACY ST LOUP" }, { - "codePostal": "76370", - "codeCommune": "76217", - "libelleAcheminement": "DIEPPE", - "nomCommune": "DIEPPE" + "codePostal": "80190", + "codeCommune": "80684", + "libelleAcheminement": "ROUY LE PETIT", + "nomCommune": "ROUY LE PETIT" }, { - "codePostal": "24230", - "codeCommune": "24568", - "libelleAcheminement": "VELINES", - "nomCommune": "VELINES" + "codePostal": "68780", + "codeCommune": "68071", + "libelleAcheminement": "DIEFMATTEN", + "nomCommune": "DIEFMATTEN" }, { - "codePostal": "80140", - "codeCommune": "80330", - "libelleAcheminement": "FORCEVILLE EN VIMEU", - "nomCommune": "FORCEVILLE EN VIMEU" + "codePostal": "70300", + "codeCommune": "70055", + "libelleAcheminement": "BAUDONCOURT", + "nomCommune": "BAUDONCOURT" }, { - "codePostal": "81570", - "codeCommune": "81075", - "libelleAcheminement": "CUQ LES VIELMUR", - "nomCommune": "CUQ" + "codePostal": "81340", + "codeCommune": "81019", + "libelleAcheminement": "ASSAC", + "nomCommune": "ASSAC" }, { - "codePostal": "76560", - "codeCommune": "76219", - "libelleAcheminement": "DOUDEVILLE", - "nomCommune": "DOUDEVILLE" + "codePostal": "71700", + "codeCommune": "71195", + "libelleAcheminement": "FARGES LES MACON", + "nomCommune": "FARGES LES MACON" }, { - "codePostal": "24250", - "codeCommune": "24575", - "libelleAcheminement": "VEYRINES DE DOMME", - "nomCommune": "VEYRINES DE DOMME" + "codePostal": "80540", + "codeCommune": "80698", + "libelleAcheminement": "ST AUBIN MONTENOY", + "nomCommune": "ST AUBIN MONTENOY" }, { - "codePostal": "80440", - "codeCommune": "80337", - "libelleAcheminement": "FOUENCAMPS", - "nomCommune": "FOUENCAMPS" + "codePostal": "68320", + "codeCommune": "68076", + "libelleAcheminement": "DURRENENTZEN", + "nomCommune": "DURRENENTZEN" }, { - "codePostal": "81220", - "codeCommune": "81078", - "libelleAcheminement": "DAMIATTE", - "nomCommune": "DAMIATTE" + "codePostal": "70270", + "codeCommune": "70063", + "libelleAcheminement": "BELONCHAMP", + "nomCommune": "BELONCHAMP" }, { - "codePostal": "76460", - "codeCommune": "76221", - "libelleAcheminement": "DROSAY", - "nomCommune": "DROSAY" + "codePostal": "81320", + "codeCommune": "81023", + "libelleAcheminement": "BARRE", + "nomCommune": "BARRE" }, { - "codePostal": "24530", - "codeCommune": "24582", - "libelleAcheminement": "VILLARS", - "nomCommune": "VILLARS" + "codePostal": "71150", + "codeCommune": "71202", + "libelleAcheminement": "FONTAINES", + "nomCommune": "FONTAINES" }, { - "codePostal": "80131", - "codeCommune": "80342", - "libelleAcheminement": "FRAMERVILLE RAINECOURT", - "nomCommune": "FRAMERVILLE RAINECOURT" + "codePostal": "80430", + "codeCommune": "80699", + "libelleAcheminement": "ST AUBIN RIVIERE", + "nomCommune": "ST AUBIN RIVIERE" }, { - "codePostal": "81120", - "codeCommune": "81079", - "libelleAcheminement": "DENAT", - "nomCommune": "DENAT" + "codePostal": "68210", + "codeCommune": "68079", + "libelleAcheminement": "ELBACH", + "nomCommune": "ELBACH" }, { - "codePostal": "76760", - "codeCommune": "76227", - "libelleAcheminement": "ECTOT L AUBER", - "nomCommune": "ECTOT L AUBER" + "codePostal": "70400", + "codeCommune": "70064", + "libelleAcheminement": "BELVERNE", + "nomCommune": "BELVERNE" }, { - "codePostal": "24550", - "codeCommune": "24585", - "libelleAcheminement": "VILLEFRANCHE DU PERIGORD", - "nomCommune": "VILLEFRANCHE DU PERIGORD" + "codePostal": "81150", + "codeCommune": "81029", + "libelleAcheminement": "BERNAC", + "nomCommune": "BERNAC" }, { - "codePostal": "80140", - "codeCommune": "80343", - "libelleAcheminement": "FRAMICOURT", - "nomCommune": "FRAMICOURT" + "codePostal": "71530", + "codeCommune": "71204", + "libelleAcheminement": "FRAGNES LA LOYERE", + "nomCommune": "FRAGNES LA LOYERE" }, { - "codePostal": "81540", - "codeCommune": "81083", - "libelleAcheminement": "DURFORT", - "nomCommune": "DURFORT" + "codePostal": "80680", + "codeCommune": "80702", + "libelleAcheminement": "ST FUSCIEN", + "nomCommune": "ST FUSCIEN" }, { - "codePostal": "76570", - "codeCommune": "76234", - "libelleAcheminement": "EMANVILLE", - "nomCommune": "EMANVILLE" + "codePostal": "68210", + "codeCommune": "68085", + "libelleAcheminement": "ETEIMBES", + "nomCommune": "ETEIMBES" }, { - "codePostal": "25360", - "codeCommune": "25009", - "libelleAcheminement": "AISSEY", - "nomCommune": "AISSEY" + "codePostal": "70210", + "codeCommune": "70069", + "libelleAcheminement": "BETONCOURT ST PANCRAS", + "nomCommune": "BETONCOURT ST PANCRAS" }, { - "codePostal": "80210", - "codeCommune": "80345", - "libelleAcheminement": "FRANLEU", - "nomCommune": "FRANLEU" + "codePostal": "81260", + "codeCommune": "81037", + "libelleAcheminement": "BRASSAC", + "nomCommune": "BRASSAC" }, { - "codePostal": "81600", - "codeCommune": "81090", - "libelleAcheminement": "FENOLS", - "nomCommune": "FENOLS" + "codePostal": "71270", + "codeCommune": "71208", + "libelleAcheminement": "FRONTENARD", + "nomCommune": "FRONTENARD" }, { - "codePostal": "76133", - "codeCommune": "76238", - "libelleAcheminement": "EPOUVILLE", - "nomCommune": "EPOUVILLE" + "codePostal": "80780", + "codeCommune": "80706", + "libelleAcheminement": "ST LEGER LES DOMART", + "nomCommune": "ST LEGER LES DOMART" }, { - "codePostal": "25490", - "codeCommune": "25011", - "libelleAcheminement": "ALLENJOIE", - "nomCommune": "ALLENJOIE" + "codePostal": "68720", + "codeCommune": "68093", + "libelleAcheminement": "FLAXLANDEN", + "nomCommune": "FLAXLANDEN" }, { - "codePostal": "80260", - "codeCommune": "80351", - "libelleAcheminement": "FRECHENCOURT", - "nomCommune": "FRECHENCOURT" + "codePostal": "70500", + "codeCommune": "70070", + "libelleAcheminement": "BETONCOURT SUR MANCE", + "nomCommune": "BETONCOURT SUR MANCE" }, { - "codePostal": "81150", - "codeCommune": "81093", - "libelleAcheminement": "FLORENTIN", - "nomCommune": "FLORENTIN" + "codePostal": "81100", + "codeCommune": "81042", + "libelleAcheminement": "BURLATS", + "nomCommune": "BURLATS" }, { - "codePostal": "76430", - "codeCommune": "76239", - "libelleAcheminement": "EPRETOT", - "nomCommune": "EPRETOT" + "codePostal": "71420", + "codeCommune": "71212", + "libelleAcheminement": "GENELARD", + "nomCommune": "GENELARD" }, { - "codePostal": "25330", - "codeCommune": "25016", - "libelleAcheminement": "AMATHAY VESIGNEUX", - "nomCommune": "AMATHAY VESIGNEUX" + "codePostal": "80140", + "codeCommune": "80709", + "libelleAcheminement": "ST MAULVIS", + "nomCommune": "ST MAULVIS" }, { - "codePostal": "80160", - "codeCommune": "80352", - "libelleAcheminement": "FREMONTIERS", - "nomCommune": "FREMONTIERS" + "codePostal": "68130", + "codeCommune": "68096", + "libelleAcheminement": "FRANKEN", + "nomCommune": "FRANKEN" }, { - "codePostal": "81450", - "codeCommune": "81101", - "libelleAcheminement": "LE GARRIC", - "nomCommune": "LE GARRIC" + "codePostal": "70110", + "codeCommune": "70072", + "libelleAcheminement": "BEVEUGE", + "nomCommune": "BEVEUGE" }, { - "codePostal": "76220", - "codeCommune": "76242", - "libelleAcheminement": "ERNEMONT LA VILLETTE", - "nomCommune": "ERNEMONT LA VILLETTE" + "codePostal": "81300", + "codeCommune": "81043", + "libelleAcheminement": "BUSQUE", + "nomCommune": "BUSQUE" }, { - "codePostal": "25340", - "codeCommune": "25018", - "libelleAcheminement": "ANTEUIL", - "nomCommune": "ANTEUIL" + "codePostal": "71460", + "codeCommune": "71214", + "libelleAcheminement": "GENOUILLY", + "nomCommune": "GENOUILLY" }, { - "codePostal": "80140", - "codeCommune": "80354", - "libelleAcheminement": "FRESNES TILLOLOY", - "nomCommune": "FRESNES TILLOLOY" + "codePostal": "80610", + "codeCommune": "80711", + "libelleAcheminement": "ST OUEN", + "nomCommune": "ST OUEN" }, { - "codePostal": "81500", - "codeCommune": "81102", - "libelleAcheminement": "GARRIGUES", - "nomCommune": "GARRIGUES" + "codePostal": "68250", + "codeCommune": "68116", + "libelleAcheminement": "GUNDOLSHEIM", + "nomCommune": "GUNDOLSHEIM" }, { - "codePostal": "76690", - "codeCommune": "76247", - "libelleAcheminement": "ESTEVILLE", - "nomCommune": "ESTEVILLE" + "codePostal": "70500", + "codeCommune": "70091", + "libelleAcheminement": "BOUSSERAUCOURT", + "nomCommune": "BOUSSERAUCOURT" }, { - "codePostal": "25340", - "codeCommune": "25018", - "libelleAcheminement": "ANTEUIL", - "nomCommune": "ANTEUIL" + "codePostal": "81470", + "codeCommune": "81050", + "libelleAcheminement": "CAMBON LES LAVAUR", + "nomCommune": "CAMBON LES LAVAUR" }, { - "codePostal": "80700", - "codeCommune": "80359", - "libelleAcheminement": "FRESNOY LES ROYE", - "nomCommune": "FRESNOY LES ROYE" + "codePostal": "71640", + "codeCommune": "71221", + "libelleAcheminement": "GIVRY", + "nomCommune": "GIVRY" }, { - "codePostal": "81530", - "codeCommune": "81103", - "libelleAcheminement": "GIJOUNET", - "nomCommune": "GIJOUNET" + "codePostal": "80470", + "codeCommune": "80718", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "76430", - "codeCommune": "76250", - "libelleAcheminement": "ETAINHUS", - "nomCommune": "ETAINHUS" + "codePostal": "68220", + "codeCommune": "68120", + "libelleAcheminement": "HAGENTHAL LE BAS", + "nomCommune": "HAGENTHAL LE BAS" }, { - "codePostal": "25610", - "codeCommune": "25021", - "libelleAcheminement": "ARC ET SENANS", - "nomCommune": "ARC ET SENANS" + "codePostal": "70100", + "codeCommune": "70100", + "libelleAcheminement": "BROYE LES LOUPS ET VERFONTAINE", + "nomCommune": "BROYE LES LOUPS ET VERFONTAINE" }, { - "codePostal": "80460", - "codeCommune": "80364", - "libelleAcheminement": "FRIAUCOURT", - "nomCommune": "FRIAUCOURT" + "codePostal": "81260", + "codeCommune": "81053", + "libelleAcheminement": "CAMBOUNES", + "nomCommune": "CAMBOUNES" }, { - "codePostal": "81500", - "codeCommune": "81104", - "libelleAcheminement": "GIROUSSENS", - "nomCommune": "GIROUSSENS" + "codePostal": "71990", + "codeCommune": "71223", + "libelleAcheminement": "LA GRANDE VERRIERE", + "nomCommune": "LA GRANDE VERRIERE" }, { - "codePostal": "76190", - "codeCommune": "76253", - "libelleAcheminement": "ETOUTTEVILLE", - "nomCommune": "ETOUTTEVILLE" + "codePostal": "80540", + "codeCommune": "80723", + "libelleAcheminement": "SAISSEVAL", + "nomCommune": "SAISSEVAL" }, { - "codePostal": "25150", - "codeCommune": "25033", - "libelleAcheminement": "AUTECHAUX ROIDE", - "nomCommune": "AUTECHAUX ROIDE" + "codePostal": "68210", + "codeCommune": "68125", + "libelleAcheminement": "HECKEN", + "nomCommune": "HECKEN" }, { - "codePostal": "80220", - "codeCommune": "80373", - "libelleAcheminement": "GAMACHES", - "nomCommune": "GAMACHES" + "codePostal": "70360", + "codeCommune": "70105", + "libelleAcheminement": "BUCEY LES TRAVES", + "nomCommune": "BUCEY LES TRAVES" }, { - "codePostal": "81300", - "codeCommune": "81117", - "libelleAcheminement": "LABESSIERE CANDEIL", - "nomCommune": "LABESSIERE CANDEIL" + "codePostal": "81260", + "codeCommune": "81062", + "libelleAcheminement": "FONTRIEU", + "nomCommune": "FONTRIEU" }, { - "codePostal": "76640", - "codeCommune": "76258", - "libelleAcheminement": "TERRES DE CAUX", - "nomCommune": "TERRES DE CAUX" + "codePostal": "71190", + "codeCommune": "71251", + "libelleAcheminement": "LAIZY", + "nomCommune": "LAIZY" }, { - "codePostal": "25720", - "codeCommune": "25036", - "libelleAcheminement": "AVANNE AVENEY", - "nomCommune": "AVANNE AVENEY" + "codePostal": "80470", + "codeCommune": "80730", + "libelleAcheminement": "SAVEUSE", + "nomCommune": "SAVEUSE" }, { - "codePostal": "80800", - "codeCommune": "80376", - "libelleAcheminement": "GENTELLES", - "nomCommune": "GENTELLES" + "codePostal": "68220", + "codeCommune": "68126", + "libelleAcheminement": "HEGENHEIM", + "nomCommune": "HEGENHEIM" }, { - "codePostal": "81150", - "codeCommune": "81131", - "libelleAcheminement": "LAGRAVE", - "nomCommune": "LAGRAVE" + "codePostal": "70230", + "codeCommune": "70113", + "libelleAcheminement": "CENANS", + "nomCommune": "CENANS" }, { - "codePostal": "76440", - "codeCommune": "76261", - "libelleAcheminement": "LA FERTE ST SAMSON", - "nomCommune": "LA FERTE ST SAMSON" + "codePostal": "81100", + "codeCommune": "81065", + "libelleAcheminement": "CASTRES", + "nomCommune": "CASTRES" }, { - "codePostal": "25110", - "codeCommune": "25047", - "libelleAcheminement": "BAUME LES DAMES", - "nomCommune": "BAUME LES DAMES" + "codePostal": "71140", + "codeCommune": "71255", + "libelleAcheminement": "LESME", + "nomCommune": "LESME" }, { - "codePostal": "80360", - "codeCommune": "80378", - "libelleAcheminement": "GINCHY", - "nomCommune": "GINCHY" + "codePostal": "80250", + "codeCommune": "80740", + "libelleAcheminement": "SOURDON", + "nomCommune": "SOURDON" }, { - "codePostal": "81220", - "codeCommune": "81132", - "libelleAcheminement": "GUITALENS L ALBAREDE", - "nomCommune": "GUITALENS L ALBAREDE" + "codePostal": "68420", + "codeCommune": "68134", + "libelleAcheminement": "HERRLISHEIM PRES COLMAR", + "nomCommune": "HERRLISHEIM PRES COLMAR" }, { - "codePostal": "76270", - "codeCommune": "76262", - "libelleAcheminement": "FESQUES", - "nomCommune": "FESQUES" + "codePostal": "70600", + "codeCommune": "70122", + "libelleAcheminement": "CHAMPLITTE", + "nomCommune": "CHAMPLITTE" }, { - "codePostal": "25420", - "codeCommune": "25054", - "libelleAcheminement": "BERCHE", - "nomCommune": "BERCHE" + "codePostal": "81350", + "codeCommune": "81072", + "libelleAcheminement": "CRESPIN", + "nomCommune": "CRESPIN" }, { - "codePostal": "80690", - "codeCommune": "80380", - "libelleAcheminement": "GORENFLOS", - "nomCommune": "GORENFLOS" + "codePostal": "71100", + "codeCommune": "71269", + "libelleAcheminement": "LUX", + "nomCommune": "LUX" }, { - "codePostal": "81640", - "codeCommune": "81135", - "libelleAcheminement": "LAPARROUQUIAL", - "nomCommune": "LAPARROUQUIAL" + "codePostal": "80200", + "codeCommune": "80741", + "libelleAcheminement": "SOYECOURT", + "nomCommune": "SOYECOURT" }, { - "codePostal": "76220", - "codeCommune": "76263", - "libelleAcheminement": "LA FEUILLIE", - "nomCommune": "LA FEUILLIE" + "codePostal": "68118", + "codeCommune": "68139", + "libelleAcheminement": "HIRTZBACH", + "nomCommune": "HIRTZBACH" }, { - "codePostal": "25680", - "codeCommune": "25072", - "libelleAcheminement": "BONNAL", - "nomCommune": "BONNAL" + "codePostal": "70600", + "codeCommune": "70122", + "libelleAcheminement": "CHAMPLITTE", + "nomCommune": "CHAMPLITTE" }, { - "codePostal": "80132", - "codeCommune": "80385", - "libelleAcheminement": "GRAND LAVIERS", - "nomCommune": "GRAND LAVIERS" + "codePostal": "81470", + "codeCommune": "81076", + "libelleAcheminement": "CUQ TOULZA", + "nomCommune": "CUQ TOULZA" }, { - "codePostal": "81440", - "codeCommune": "81139", - "libelleAcheminement": "LAUTREC", - "nomCommune": "LAUTREC" + "codePostal": "71110", + "codeCommune": "71275", + "libelleAcheminement": "MARCIGNY", + "nomCommune": "MARCIGNY" }, { - "codePostal": "76740", - "codeCommune": "76272", - "libelleAcheminement": "FONTAINE LE DUN", - "nomCommune": "FONTAINE LE DUN" + "codePostal": "80110", + "codeCommune": "80751", + "libelleAcheminement": "THENNES", + "nomCommune": "THENNES" }, { - "codePostal": "25870", - "codeCommune": "25073", - "libelleAcheminement": "BONNAY", - "nomCommune": "BONNAY" + "codePostal": "68740", + "codeCommune": "68140", + "libelleAcheminement": "HIRTZFELDEN", + "nomCommune": "HIRTZFELDEN" }, { - "codePostal": "80500", - "codeCommune": "80386", - "libelleAcheminement": "GRATIBUS", - "nomCommune": "GRATIBUS" + "codePostal": "70600", + "codeCommune": "70122", + "libelleAcheminement": "CHAMPLITTE", + "nomCommune": "CHAMPLITTE" }, { - "codePostal": "81700", - "codeCommune": "81142", - "libelleAcheminement": "LEMPAUT", - "nomCommune": "LEMPAUT" + "codePostal": "81120", + "codeCommune": "81079", + "libelleAcheminement": "DENAT", + "nomCommune": "DENAT" }, { - "codePostal": "76440", - "codeCommune": "76276", - "libelleAcheminement": "FORGES LES EAUX", - "nomCommune": "FORGES LES EAUX" + "codePostal": "71120", + "codeCommune": "71276", + "libelleAcheminement": "MARCILLY LA GUEURCE", + "nomCommune": "MARCILLY LA GUEURCE" }, { - "codePostal": "25210", - "codeCommune": "25074", - "libelleAcheminement": "BONNETAGE", - "nomCommune": "BONNETAGE" + "codePostal": "80250", + "codeCommune": "80758", + "libelleAcheminement": "THORY", + "nomCommune": "THORY" }, { - "codePostal": "80500", - "codeCommune": "80395", - "libelleAcheminement": "GUERBIGNY", - "nomCommune": "GUERBIGNY" + "codePostal": "68125", + "codeCommune": "68146", + "libelleAcheminement": "HOUSSEN", + "nomCommune": "HOUSSEN" }, { - "codePostal": "81310", - "codeCommune": "81145", - "libelleAcheminement": "LISLE SUR TARN", - "nomCommune": "LISLE SUR TARN" + "codePostal": "70100", + "codeCommune": "70124", + "libelleAcheminement": "CHAMPTONNAY", + "nomCommune": "CHAMPTONNAY" }, { - "codePostal": "76780", - "codeCommune": "76292", - "libelleAcheminement": "FRY", - "nomCommune": "FRY" + "codePostal": "81290", + "codeCommune": "81084", + "libelleAcheminement": "ESCOUSSENS", + "nomCommune": "ESCOUSSENS" }, { - "codePostal": "25640", - "codeCommune": "25088", - "libelleAcheminement": "BRECONCHAUX", - "nomCommune": "BRECONCHAUX" + "codePostal": "71220", + "codeCommune": "71285", + "libelleAcheminement": "MARTIGNY LE COMTE", + "nomCommune": "MARTIGNY LE COMTE" }, { - "codePostal": "80290", - "codeCommune": "80402", - "libelleAcheminement": "GUIZANCOURT", - "nomCommune": "GUIZANCOURT" + "codePostal": "80300", + "codeCommune": "80769", + "libelleAcheminement": "TREUX", + "nomCommune": "TREUX" }, { - "codePostal": "81120", - "codeCommune": "81147", - "libelleAcheminement": "LOMBERS", - "nomCommune": "LOMBERS" + "codePostal": "68470", + "codeCommune": "68151", + "libelleAcheminement": "HUSSEREN WESSERLING", + "nomCommune": "HUSSEREN WESSERLING" }, { - "codePostal": "76740", - "codeCommune": "76294", - "libelleAcheminement": "LA GAILLARDE", - "nomCommune": "LA GAILLARDE" + "codePostal": "70100", + "codeCommune": "70125", + "libelleAcheminement": "CHAMPVANS", + "nomCommune": "CHAMPVANS" }, { - "codePostal": "25640", - "codeCommune": "25092", - "libelleAcheminement": "LA BRETENIERE", - "nomCommune": "LA BRETENIERE" + "codePostal": "81600", + "codeCommune": "81090", + "libelleAcheminement": "FENOLS", + "nomCommune": "FENOLS" }, { - "codePostal": "80250", - "codeCommune": "80403", - "libelleAcheminement": "GUYENCOURT SUR NOYE", - "nomCommune": "GUYENCOURT SUR NOYE" + "codePostal": "71240", + "codeCommune": "71308", + "libelleAcheminement": "MONTCEAUX RAGNY", + "nomCommune": "MONTCEAUX RAGNY" }, { - "codePostal": "81500", - "codeCommune": "81150", - "libelleAcheminement": "LUGAN", - "nomCommune": "LUGAN" + "codePostal": "80800", + "codeCommune": "80774", + "libelleAcheminement": "VAIRE SOUS CORBIE", + "nomCommune": "VAIRE SOUS CORBIE" }, { - "codePostal": "76700", - "codeCommune": "76296", - "libelleAcheminement": "GAINNEVILLE", - "nomCommune": "GAINNEVILLE" + "codePostal": "68110", + "codeCommune": "68154", + "libelleAcheminement": "ILLZACH", + "nomCommune": "ILLZACH" }, { - "codePostal": "25560", - "codeCommune": "25100", - "libelleAcheminement": "BULLE", - "nomCommune": "BULLE" + "codePostal": "70140", + "codeCommune": "70126", + "libelleAcheminement": "CHANCEY", + "nomCommune": "CHANCEY" }, { - "codePostal": "80240", - "codeCommune": "80404", - "libelleAcheminement": "GUYENCOURT SAULCOURT", - "nomCommune": "GUYENCOURT SAULCOURT" + "codePostal": "81500", + "codeCommune": "81092", + "libelleAcheminement": "FIAC", + "nomCommune": "FIAC" }, { - "codePostal": "81530", - "codeCommune": "81158", - "libelleAcheminement": "LE MASNAU MASSUGUIES", - "nomCommune": "LE MASNAU MASSUGUIES" + "codePostal": "71210", + "codeCommune": "71310", + "libelleAcheminement": "MONTCHANIN", + "nomCommune": "MONTCHANIN" }, { - "codePostal": "76540", - "codeCommune": "76299", - "libelleAcheminement": "GERPONVILLE", - "nomCommune": "GERPONVILLE" + "codePostal": "80132", + "codeCommune": "80779", + "libelleAcheminement": "VAUCHELLES LES QUESNOY", + "nomCommune": "VAUCHELLES LES QUESNOY" }, { - "codePostal": "25440", - "codeCommune": "25104", - "libelleAcheminement": "BY", - "nomCommune": "BY" + "codePostal": "68260", + "codeCommune": "68166", + "libelleAcheminement": "KINGERSHEIM", + "nomCommune": "KINGERSHEIM" }, { - "codePostal": "80440", - "codeCommune": "80405", - "libelleAcheminement": "HAILLES", - "nomCommune": "HAILLES" + "codePostal": "70700", + "codeCommune": "70130", + "libelleAcheminement": "CHARCENNE", + "nomCommune": "CHARCENNE" }, { - "codePostal": "81200", - "codeCommune": "81163", - "libelleAcheminement": "MAZAMET", - "nomCommune": "MAZAMET" + "codePostal": "81340", + "codeCommune": "81094", + "libelleAcheminement": "FRAISSINES", + "nomCommune": "FRAISSINES" }, { - "codePostal": "76700", - "codeCommune": "76305", - "libelleAcheminement": "GONFREVILLE L ORCHER", - "nomCommune": "GONFREVILLE L ORCHER" + "codePostal": "71320", + "codeCommune": "71317", + "libelleAcheminement": "MONTMORT", + "nomCommune": "MONTMORT" }, { - "codePostal": "25640", - "codeCommune": "25107", - "libelleAcheminement": "CENDREY", - "nomCommune": "CENDREY" + "codePostal": "80131", + "codeCommune": "80781", + "libelleAcheminement": "VAUVILLERS", + "nomCommune": "VAUVILLERS" }, { - "codePostal": "80110", - "codeCommune": "80414", - "libelleAcheminement": "HANGARD", - "nomCommune": "HANGARD" + "codePostal": "68510", + "codeCommune": "68170", + "libelleAcheminement": "KOETZINGUE", + "nomCommune": "KOETZINGUE" }, { - "codePostal": "81300", - "codeCommune": "81169", - "libelleAcheminement": "MISSECLE", - "nomCommune": "MISSECLE" + "codePostal": "70240", + "codeCommune": "70140", + "libelleAcheminement": "CHATENEY", + "nomCommune": "CHATENEY" }, { - "codePostal": "76700", - "codeCommune": "76305", - "libelleAcheminement": "GONFREVILLE L ORCHER", - "nomCommune": "GONFREVILLE L ORCHER" + "codePostal": "81430", + "codeCommune": "81096", + "libelleAcheminement": "LE FRAYSSE", + "nomCommune": "LE FRAYSSE" }, { - "codePostal": "25220", - "codeCommune": "25112", - "libelleAcheminement": "CHALEZEULE", - "nomCommune": "CHALEZEULE" + "codePostal": "71300", + "codeCommune": "71320", + "libelleAcheminement": "MONT ST VINCENT", + "nomCommune": "MONT ST VINCENT" }, { - "codePostal": "80131", - "codeCommune": "80417", - "libelleAcheminement": "HARBONNIERES", - "nomCommune": "HARBONNIERES" + "codePostal": "80800", + "codeCommune": "80785", + "libelleAcheminement": "VECQUEMONT", + "nomCommune": "VECQUEMONT" }, { - "codePostal": "81600", - "codeCommune": "81171", - "libelleAcheminement": "MONTANS", - "nomCommune": "MONTANS" + "codePostal": "68820", + "codeCommune": "68171", + "libelleAcheminement": "KRUTH", + "nomCommune": "KRUTH" }, { - "codePostal": "76520", - "codeCommune": "76313", - "libelleAcheminement": "GOUY", - "nomCommune": "GOUY" + "codePostal": "70500", + "codeCommune": "70143", + "libelleAcheminement": "CHAUVIREY LE CHATEL", + "nomCommune": "CHAUVIREY LE CHATEL" }, { - "codePostal": "25380", - "codeCommune": "25113", - "libelleAcheminement": "CHAMESEY", - "nomCommune": "CHAMESEY" + "codePostal": "81990", + "codeCommune": "81097", + "libelleAcheminement": "FREJAIROLLES", + "nomCommune": "FREJAIROLLES" }, { - "codePostal": "80560", - "codeCommune": "80420", - "libelleAcheminement": "HARPONVILLE", - "nomCommune": "HARPONVILLE" + "codePostal": "71220", + "codeCommune": "71323", + "libelleAcheminement": "MORNAY", + "nomCommune": "MORNAY" }, { - "codePostal": "81440", - "codeCommune": "81174", - "libelleAcheminement": "MONTDRAGON", - "nomCommune": "MONTDRAGON" + "codePostal": "80160", + "codeCommune": "80786", + "libelleAcheminement": "VELENNES", + "nomCommune": "VELENNES" }, { - "codePostal": "76116", - "codeCommune": "76316", - "libelleAcheminement": "GRAINVILLE SUR RY", - "nomCommune": "GRAINVILLE SUR RY" + "codePostal": "68440", + "codeCommune": "68174", + "libelleAcheminement": "LANDSER", + "nomCommune": "LANDSER" }, { - "codePostal": "25140", - "codeCommune": "25127", - "libelleAcheminement": "CHARQUEMONT", - "nomCommune": "CHARQUEMONT" + "codePostal": "70500", + "codeCommune": "70144", + "libelleAcheminement": "CHAUVIREY LE VIEIL", + "nomCommune": "CHAUVIREY LE VIEIL" }, { - "codePostal": "80670", - "codeCommune": "80423", - "libelleAcheminement": "HAVERNAS", - "nomCommune": "HAVERNAS" + "codePostal": "81290", + "codeCommune": "81120", + "libelleAcheminement": "LABRUGUIERE", + "nomCommune": "LABRUGUIERE" }, { - "codePostal": "81140", - "codeCommune": "81176", - "libelleAcheminement": "MONTELS", - "nomCommune": "MONTELS" + "codePostal": "71390", + "codeCommune": "71324", + "libelleAcheminement": "MOROGES", + "nomCommune": "MOROGES" }, { - "codePostal": "76660", - "codeCommune": "76320", - "libelleAcheminement": "GRANDCOURT", - "nomCommune": "GRANDCOURT" + "codePostal": "80270", + "codeCommune": "80788", + "libelleAcheminement": "VERGIES", + "nomCommune": "VERGIES" }, { - "codePostal": "25640", - "codeCommune": "25132", - "libelleAcheminement": "CHATILLON GUYOTTE", - "nomCommune": "CHATILLON GUYOTTE" + "codePostal": "68610", + "codeCommune": "68178", + "libelleAcheminement": "LAUTENBACHZELL", + "nomCommune": "LAUTENBACHZELL" }, { - "codePostal": "80290", - "codeCommune": "80436", - "libelleAcheminement": "HESCAMPS", - "nomCommune": "HESCAMPS" + "codePostal": "70400", + "codeCommune": "70149", + "libelleAcheminement": "CHENEBIER", + "nomCommune": "CHENEBIER" }, { - "codePostal": "81470", - "codeCommune": "81179", - "libelleAcheminement": "MONTGEY", - "nomCommune": "MONTGEY" + "codePostal": "81340", + "codeCommune": "81122", + "libelleAcheminement": "LACAPELLE PINET", + "nomCommune": "LACAPELLE PINET" }, { - "codePostal": "76120", - "codeCommune": "76322", - "libelleAcheminement": "LE GRAND QUEVILLY", - "nomCommune": "LE GRAND QUEVILLY" + "codePostal": "71270", + "codeCommune": "71326", + "libelleAcheminement": "MOUTHIER EN BRESSE", + "nomCommune": "MOUTHIER EN BRESSE" }, { - "codePostal": "25440", - "codeCommune": "25134", - "libelleAcheminement": "CHATILLON SUR LISON", - "nomCommune": "CHATILLON SUR LISON" + "codePostal": "80140", + "codeCommune": "80796", + "libelleAcheminement": "VILLEROY", + "nomCommune": "VILLEROY" }, { - "codePostal": "80640", - "codeCommune": "80443", - "libelleAcheminement": "HORNOY LE BOURG", - "nomCommune": "HORNOY LE BOURG" + "codePostal": "68220", + "codeCommune": "68183", + "libelleAcheminement": "LIEBENSWILLER", + "nomCommune": "LIEBENSWILLER" }, { - "codePostal": "81360", - "codeCommune": "81182", - "libelleAcheminement": "MONTREDON LABESSONNIE", - "nomCommune": "MONTREDON LABESSONNIE" + "codePostal": "70190", + "codeCommune": "70154", + "libelleAcheminement": "CIREY", + "nomCommune": "CIREY" }, { - "codePostal": "76340", - "codeCommune": "76333", - "libelleAcheminement": "GUERVILLE", - "nomCommune": "GUERVILLE" + "codePostal": "81170", + "codeCommune": "81123", + "libelleAcheminement": "LACAPELLE SEGALAR", + "nomCommune": "LACAPELLE SEGALAR" }, { - "codePostal": "25170", - "codeCommune": "25136", - "libelleAcheminement": "CHAUCENNE", - "nomCommune": "CHAUCENNE" + "codePostal": "71420", + "codeCommune": "71334", + "libelleAcheminement": "OUDRY", + "nomCommune": "OUDRY" }, { "codePostal": "80640", - "codeCommune": "80443", - "libelleAcheminement": "HORNOY LE BOURG", - "nomCommune": "HORNOY LE BOURG" + "codeCommune": "80813", + "libelleAcheminement": "VRAIGNES LES HORNOY", + "nomCommune": "VRAIGNES LES HORNOY" }, { - "codePostal": "81320", - "codeCommune": "81193", - "libelleAcheminement": "NAGES", - "nomCommune": "NAGES" + "codePostal": "68280", + "codeCommune": "68189", + "libelleAcheminement": "LOGELHEIM", + "nomCommune": "LOGELHEIM" }, { - "codePostal": "76730", - "codeCommune": "76334", - "libelleAcheminement": "GUEURES", - "nomCommune": "GUEURES" + "codePostal": "70230", + "codeCommune": "70159", + "libelleAcheminement": "COGNIERES", + "nomCommune": "COGNIERES" }, { - "codePostal": "25240", - "codeCommune": "25142", - "libelleAcheminement": "CHAUX NEUVE", - "nomCommune": "CHAUX NEUVE" + "codePostal": "81230", + "codeCommune": "81124", + "libelleAcheminement": "LACAUNE", + "nomCommune": "LACAUNE" }, { - "codePostal": "80132", - "codeCommune": "80444", - "libelleAcheminement": "HUCHENNEVILLE", - "nomCommune": "HUCHENNEVILLE" + "codePostal": "71430", + "codeCommune": "71340", + "libelleAcheminement": "PALINGES", + "nomCommune": "PALINGES" }, { - "codePostal": "81700", - "codeCommune": "81210", - "libelleAcheminement": "POUDIS", - "nomCommune": "POUDIS" + "codePostal": "81250", + "codeCommune": "81003", + "libelleAcheminement": "ALBAN", + "nomCommune": "ALBAN" }, { - "codePostal": "76890", - "codeCommune": "76335", - "libelleAcheminement": "GUEUTTEVILLE", - "nomCommune": "GUEUTTEVILLE" + "codePostal": "68140", + "codeCommune": "68193", + "libelleAcheminement": "LUTTENBACH", + "nomCommune": "LUTTENBACH PRES MUNSTER" }, { - "codePostal": "25430", - "codeCommune": "25145", - "libelleAcheminement": "CHAZOT", - "nomCommune": "CHAZOT" + "codePostal": "70000", + "codeCommune": "70162", + "libelleAcheminement": "COLOMBE LES VESOUL", + "nomCommune": "COLOMBE LES VESOUL" }, { - "codePostal": "80430", - "codeCommune": "80450", - "libelleAcheminement": "INVAL BOIRON", - "nomCommune": "INVAL BOIRON" + "codePostal": "81220", + "codeCommune": "81132", + "libelleAcheminement": "GUITALENS L ALBAREDE", + "nomCommune": "GUITALENS L ALBAREDE" }, { - "codePostal": "81120", - "codeCommune": "81218", - "libelleAcheminement": "PUYGOUZON", - "nomCommune": "PUYGOUZON" + "codePostal": "71600", + "codeCommune": "71354", + "libelleAcheminement": "POISSON", + "nomCommune": "POISSON" }, { - "codePostal": "76450", - "codeCommune": "76339", - "libelleAcheminement": "LE HANOUARD", - "nomCommune": "LE HANOUARD" + "codePostal": "81500", + "codeCommune": "81025", + "libelleAcheminement": "BELCASTEL", + "nomCommune": "BELCASTEL" }, { - "codePostal": "25440", - "codeCommune": "25154", - "libelleAcheminement": "CHOUZELOT", - "nomCommune": "CHOUZELOT" + "codePostal": "68470", + "codeCommune": "68213", + "libelleAcheminement": "MOLLAU", + "nomCommune": "MOLLAU" }, { - "codePostal": "80250", - "codeCommune": "80452", - "libelleAcheminement": "JUMEL", - "nomCommune": "JUMEL" + "codePostal": "70240", + "codeCommune": "70164", + "libelleAcheminement": "COLOMBOTTE", + "nomCommune": "COLOMBOTTE" }, { - "codePostal": "81330", - "codeCommune": "81221", - "libelleAcheminement": "RAYSSAC", - "nomCommune": "RAYSSAC" + "codePostal": "81140", + "codeCommune": "81136", + "libelleAcheminement": "LARROQUE", + "nomCommune": "LARROQUE" }, { - "codePostal": "76440", - "codeCommune": "76343", - "libelleAcheminement": "HAUCOURT", - "nomCommune": "HAUCOURT" + "codePostal": "71270", + "codeCommune": "71357", + "libelleAcheminement": "POURLANS", + "nomCommune": "POURLANS" }, { - "codePostal": "25340", - "codeCommune": "25156", - "libelleAcheminement": "PAYS DE CLERVAL", - "nomCommune": "PAYS DE CLERVAL" + "codePostal": "81700", + "codeCommune": "81030", + "libelleAcheminement": "BERTRE", + "nomCommune": "BERTRE" }, { - "codePostal": "80430", - "codeCommune": "80456", - "libelleAcheminement": "LAFRESGUIMONT ST MARTIN", - "nomCommune": "LAFRESGUIMONT ST MARTIN" + "codePostal": "68210", + "codeCommune": "68215", + "libelleAcheminement": "MONTREUX VIEUX", + "nomCommune": "MONTREUX VIEUX" }, { - "codePostal": "81470", - "codeCommune": "81229", - "libelleAcheminement": "ROQUEVIDAL", - "nomCommune": "ROQUEVIDAL" + "codePostal": "70120", + "codeCommune": "70165", + "libelleAcheminement": "COMBEAUFONTAINE", + "nomCommune": "COMBEAUFONTAINE" }, { - "codePostal": "76550", - "codeCommune": "76349", - "libelleAcheminement": "HAUTOT SUR MER", - "nomCommune": "HAUTOT SUR MER" + "codePostal": "81440", + "codeCommune": "81139", + "libelleAcheminement": "LAUTREC", + "nomCommune": "LAUTREC" }, { - "codePostal": "25150", - "codeCommune": "25187", - "libelleAcheminement": "DAMBELIN", - "nomCommune": "DAMBELIN" + "codePostal": "71290", + "codeCommune": "71359", + "libelleAcheminement": "PRETY", + "nomCommune": "PRETY" }, { - "codePostal": "80430", - "codeCommune": "80456", - "libelleAcheminement": "LAFRESGUIMONT ST MARTIN", - "nomCommune": "LAFRESGUIMONT ST MARTIN" + "codePostal": "81660", + "codeCommune": "81036", + "libelleAcheminement": "BOUT DU PONT DE LARN", + "nomCommune": "BOUT DU PONT DE LARN" }, { - "codePostal": "81400", - "codeCommune": "81230", - "libelleAcheminement": "ROSIERES", - "nomCommune": "ROSIERES" + "codePostal": "68690", + "codeCommune": "68217", + "libelleAcheminement": "MOOSCH", + "nomCommune": "MOOSCH" }, { - "codePostal": "76620", - "codeCommune": "76351", - "libelleAcheminement": "LE HAVRE", - "nomCommune": "LE HAVRE" + "codePostal": "70160", + "codeCommune": "70170", + "libelleAcheminement": "CONTREGLISE", + "nomCommune": "CONTREGLISE" }, { - "codePostal": "25110", - "codeCommune": "25189", - "libelleAcheminement": "DAMMARTIN LES TEMPLIERS", - "nomCommune": "DAMMARTIN LES TEMPLIERS" + "codePostal": "81340", + "codeCommune": "81141", + "libelleAcheminement": "LEDAS ET PENTHIES", + "nomCommune": "LEDAS ET PENTHIES" }, { - "codePostal": "80800", - "codeCommune": "80458", - "libelleAcheminement": "LAHOUSSOYE", - "nomCommune": "LAHOUSSOYE" + "codePostal": "71960", + "codeCommune": "71360", + "libelleAcheminement": "PRISSE", + "nomCommune": "PRISSE" }, { - "codePostal": "81240", - "codeCommune": "81231", - "libelleAcheminement": "ROUAIROUX", - "nomCommune": "ROUAIROUX" + "codePostal": "81390", + "codeCommune": "81039", + "libelleAcheminement": "BRIATEXTE", + "nomCommune": "BRIATEXTE" }, { - "codePostal": "76780", - "codeCommune": "76352", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "68790", + "codeCommune": "68218", + "libelleAcheminement": "MORSCHWILLER LE BAS", + "nomCommune": "MORSCHWILLER LE BAS" }, { - "codePostal": "25310", - "codeCommune": "25194", - "libelleAcheminement": "DANNEMARIE", - "nomCommune": "DANNEMARIE" + "codePostal": "70000", + "codeCommune": "70179", + "libelleAcheminement": "COULEVON", + "nomCommune": "COULEVON" }, { - "codePostal": "80290", - "codeCommune": "80460", - "libelleAcheminement": "LAMARONDE", - "nomCommune": "LAMARONDE" + "codePostal": "81110", + "codeCommune": "81143", + "libelleAcheminement": "LESCOUT", + "nomCommune": "LESCOUT" }, { - "codePostal": "81120", - "codeCommune": "81233", - "libelleAcheminement": "TERRE DE BANCALIE", - "nomCommune": "TERRE DE BANCALIE" + "codePostal": "71500", + "codeCommune": "71367", + "libelleAcheminement": "RATTE", + "nomCommune": "RATTE" }, { - "codePostal": "76740", - "codeCommune": "76353", - "libelleAcheminement": "HEBERVILLE", - "nomCommune": "HEBERVILLE" + "codePostal": "81600", + "codeCommune": "81046", + "libelleAcheminement": "CADALEN", + "nomCommune": "CADALEN" }, { - "codePostal": "25580", - "codeCommune": "25208", - "libelleAcheminement": "DURNES", - "nomCommune": "DURNES" + "codePostal": "68480", + "codeCommune": "68243", + "libelleAcheminement": "OBERLARG", + "nomCommune": "OBERLARG" }, { - "codePostal": "80450", - "codeCommune": "80461", - "libelleAcheminement": "LAMOTTE BREBIERE", - "nomCommune": "LAMOTTE BREBIERE" + "codePostal": "70400", + "codeCommune": "70184", + "libelleAcheminement": "COUTHENANS", + "nomCommune": "COUTHENANS" }, { - "codePostal": "81240", - "codeCommune": "81239", - "libelleAcheminement": "ST AMANS VALTORET", - "nomCommune": "ST AMANS VALTORET" + "codePostal": "81130", + "codeCommune": "81152", + "libelleAcheminement": "MAILHOC", + "nomCommune": "MAILHOC" }, { - "codePostal": "76730", - "codeCommune": "76356", - "libelleAcheminement": "HERMANVILLE", - "nomCommune": "HERMANVILLE" + "codePostal": "71150", + "codeCommune": "71378", + "libelleAcheminement": "RULLY", + "nomCommune": "RULLY" }, { - "codePostal": "25290", - "codeCommune": "25220", - "libelleAcheminement": "EPEUGNEY", - "nomCommune": "EPEUGNEY" + "codePostal": "81140", + "codeCommune": "81056", + "libelleAcheminement": "CAMPAGNAC", + "nomCommune": "CAMPAGNAC" }, { - "codePostal": "80150", - "codeCommune": "80462", - "libelleAcheminement": "LAMOTTE BULEUX", - "nomCommune": "LAMOTTE BULEUX" + "codePostal": "68420", + "codeCommune": "68244", + "libelleAcheminement": "OBERMORSCHWIHR", + "nomCommune": "OBERMORSCHWIHR" }, { - "codePostal": "81400", - "codeCommune": "81244", - "libelleAcheminement": "ST BENOIT DE CARMAUX", - "nomCommune": "ST BENOIT DE CARMAUX" + "codePostal": "70100", + "codeCommune": "70185", + "libelleAcheminement": "CRESANCEY", + "nomCommune": "CRESANCEY" }, { - "codePostal": "76750", - "codeCommune": "76359", - "libelleAcheminement": "HERONCHELLES", - "nomCommune": "HERONCHELLES" + "codePostal": "81530", + "codeCommune": "81158", + "libelleAcheminement": "LE MASNAU MASSUGUIES", + "nomCommune": "LE MASNAU MASSUGUIES" }, { - "codePostal": "25580", - "codeCommune": "25222", - "libelleAcheminement": "ETALANS", - "nomCommune": "ETALANS" + "codePostal": "71250", + "codeCommune": "71381", + "libelleAcheminement": "SAILLY", + "nomCommune": "SAILLY" }, { - "codePostal": "80800", - "codeCommune": "80463", - "libelleAcheminement": "LAMOTTE WARFUSEE", - "nomCommune": "LAMOTTE WARFUSEE" + "codePostal": "81260", + "codeCommune": "81062", + "libelleAcheminement": "FONTRIEU", + "nomCommune": "FONTRIEU" }, { - "codePostal": "81190", - "codeCommune": "81245", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "68500", + "codeCommune": "68250", + "libelleAcheminement": "ORSCHWIHR", + "nomCommune": "ORSCHWIHR" }, { - "codePostal": "76770", - "codeCommune": "76366", - "libelleAcheminement": "LE HOULME", - "nomCommune": "LE HOULME" + "codePostal": "70400", + "codeCommune": "70187", + "libelleAcheminement": "CREVANS LA CHAPELLE LES GRANGES", + "nomCommune": "CREVANS ET LA CHAPELLE LES GRANGES" }, { - "codePostal": "25330", - "codeCommune": "25223", - "libelleAcheminement": "ETERNOZ", - "nomCommune": "ETERNOZ" + "codePostal": "81110", + "codeCommune": "81160", + "libelleAcheminement": "MASSAGUEL", + "nomCommune": "MASSAGUEL" }, { - "codePostal": "80800", - "codeCommune": "80463", - "libelleAcheminement": "LAMOTTE WARFUSEE", - "nomCommune": "LAMOTTE WARFUSEE" + "codePostal": "71430", + "codeCommune": "71395", + "libelleAcheminement": "ST BONNET DE VIEILLE VIGNE", + "nomCommune": "ST BONNET DE VIEILLE VIGNE" }, { - "codePostal": "81700", - "codeCommune": "81251", - "libelleAcheminement": "ST GERMAIN DES PRES", - "nomCommune": "ST GERMAIN DES PRES" + "codePostal": "81140", + "codeCommune": "81064", + "libelleAcheminement": "CASTELNAU DE MONTMIRAL", + "nomCommune": "CASTELNAU DE MONTMIRAL" }, { - "codePostal": "76110", - "codeCommune": "76368", - "libelleAcheminement": "HOUQUETOT", - "nomCommune": "HOUQUETOT" + "codePostal": "68570", + "codeCommune": "68251", + "libelleAcheminement": "OSENBACH", + "nomCommune": "OSENBACH" }, { - "codePostal": "25330", - "codeCommune": "25223", - "libelleAcheminement": "ETERNOZ", - "nomCommune": "ETERNOZ" + "codePostal": "70210", + "codeCommune": "70200", + "libelleAcheminement": "DAMPVALLEY ST PANCRAS", + "nomCommune": "DAMPVALLEY ST PANCRAS" }, { - "codePostal": "80360", - "codeCommune": "80472", - "libelleAcheminement": "LESBOEUFS", - "nomCommune": "LESBOEUFS" + "codePostal": "81200", + "codeCommune": "81163", + "libelleAcheminement": "MAZAMET", + "nomCommune": "MAZAMET" }, { - "codePostal": "81210", - "codeCommune": "81252", - "libelleAcheminement": "ST GERMIER", - "nomCommune": "ST GERMIER" + "codePostal": "71110", + "codeCommune": "71415", + "libelleAcheminement": "STE FOY", + "nomCommune": "STE FOY" }, { - "codePostal": "76117", - "codeCommune": "76374", - "libelleAcheminement": "INCHEVILLE", - "nomCommune": "INCHEVILLE" + "codePostal": "81570", + "codeCommune": "81075", + "libelleAcheminement": "CUQ LES VIELMUR", + "nomCommune": "CUQ" }, { - "codePostal": "25330", - "codeCommune": "25223", - "libelleAcheminement": "ETERNOZ", - "nomCommune": "ETERNOZ" + "codePostal": "68190", + "codeCommune": "68260", + "libelleAcheminement": "RAEDERSHEIM", + "nomCommune": "RAEDERSHEIM" }, { - "codePostal": "80320", - "codeCommune": "80474", - "libelleAcheminement": "LICOURT", - "nomCommune": "LICOURT" + "codePostal": "70210", + "codeCommune": "70202", + "libelleAcheminement": "DEMANGEVELLE", + "nomCommune": "DEMANGEVELLE" }, { - "codePostal": "81170", - "codeCommune": "81262", - "libelleAcheminement": "ST MARCEL CAMPES", - "nomCommune": "ST MARCEL CAMPES" + "codePostal": "81440", + "codeCommune": "81174", + "libelleAcheminement": "MONTDRAGON", + "nomCommune": "MONTDRAGON" }, { - "codePostal": "76730", - "codeCommune": "76379", - "libelleAcheminement": "LAMBERVILLE", - "nomCommune": "LAMBERVILLE" + "codePostal": "71370", + "codeCommune": "71420", + "libelleAcheminement": "ST GERMAIN DU PLAIN", + "nomCommune": "ST GERMAIN DU PLAIN" }, { - "codePostal": "25260", - "codeCommune": "25224", - "libelleAcheminement": "ETOUVANS", - "nomCommune": "ETOUVANS" + "codePostal": "81220", + "codeCommune": "81078", + "libelleAcheminement": "DAMIATTE", + "nomCommune": "DAMIATTE" }, { - "codePostal": "80580", - "codeCommune": "80476", - "libelleAcheminement": "LIERCOURT", - "nomCommune": "LIERCOURT" + "codePostal": "68890", + "codeCommune": "68266", + "libelleAcheminement": "REGUISHEIM", + "nomCommune": "REGUISHEIM" }, { - "codePostal": "81490", - "codeCommune": "81269", - "libelleAcheminement": "ST SALVY DE LA BALME", - "nomCommune": "ST SALVY DE LA BALME" + "codePostal": "70180", + "codeCommune": "70204", + "libelleAcheminement": "DENEVRE", + "nomCommune": "DENEVRE" }, { - "codePostal": "76730", - "codeCommune": "76383", - "libelleAcheminement": "LESTANVILLE", - "nomCommune": "LESTANVILLE" + "codePostal": "81170", + "codeCommune": "81184", + "libelleAcheminement": "MONTROSIER", + "nomCommune": "MONTROSIER" }, { - "codePostal": "25460", - "codeCommune": "25228", - "libelleAcheminement": "ETUPES", - "nomCommune": "ETUPES" + "codePostal": "71390", + "codeCommune": "71422", + "libelleAcheminement": "ST GERMAIN LES BUXY", + "nomCommune": "ST GERMAIN LES BUXY" }, { - "codePostal": "80150", - "codeCommune": "80477", - "libelleAcheminement": "LIGESCOURT", - "nomCommune": "LIGESCOURT" + "codePostal": "81110", + "codeCommune": "81081", + "libelleAcheminement": "DOURGNE", + "nomCommune": "DOURGNE" }, { - "codePostal": "81350", - "codeCommune": "81277", - "libelleAcheminement": "SAUSSENAC", - "nomCommune": "SAUSSENAC" + "codePostal": "68210", + "codeCommune": "68268", + "libelleAcheminement": "RETZWILLER", + "nomCommune": "RETZWILLER" }, { - "codePostal": "76170", - "codeCommune": "76384", - "libelleAcheminement": "LILLEBONNE", - "nomCommune": "LILLEBONNE" + "codePostal": "70310", + "codeCommune": "70217", + "libelleAcheminement": "ESMOULIERES", + "nomCommune": "ESMOULIERES" }, { - "codePostal": "25400", - "codeCommune": "25230", - "libelleAcheminement": "EXINCOURT", - "nomCommune": "EXINCOURT" + "codePostal": "81190", + "codeCommune": "81186", + "libelleAcheminement": "MOULARES", + "nomCommune": "MOULARES" }, { - "codePostal": "80510", - "codeCommune": "80486", - "libelleAcheminement": "LONG", - "nomCommune": "LONG" + "codePostal": "71170", + "codeCommune": "71428", + "libelleAcheminement": "ST IGNY DE ROCHE", + "nomCommune": "ST IGNY DE ROCHE" }, { - "codePostal": "81630", - "codeCommune": "81279", - "libelleAcheminement": "LA SAUZIERE ST JEAN", - "nomCommune": "LA SAUZIERE ST JEAN" + "codePostal": "81600", + "codeCommune": "81099", + "libelleAcheminement": "GAILLAC", + "nomCommune": "GAILLAC" }, { - "codePostal": "76440", - "codeCommune": "76393", - "libelleAcheminement": "LONGMESNIL", - "nomCommune": "LONGMESNIL" + "codePostal": "68400", + "codeCommune": "68271", + "libelleAcheminement": "RIEDISHEIM", + "nomCommune": "RIEDISHEIM" }, { - "codePostal": "25580", - "codeCommune": "25233", - "libelleAcheminement": "FALLERANS", - "nomCommune": "FALLERANS" + "codePostal": "70110", + "codeCommune": "70219", + "libelleAcheminement": "ESPRELS", + "nomCommune": "ESPRELS" }, { - "codePostal": "80330", - "codeCommune": "80489", - "libelleAcheminement": "LONGUEAU", - "nomCommune": "LONGUEAU" + "codePostal": "81170", + "codeCommune": "81191", + "libelleAcheminement": "MOUZIEYS PANENS", + "nomCommune": "MOUZIEYS PANENS" }, { - "codePostal": "81120", - "codeCommune": "81295", - "libelleAcheminement": "TEILLET", - "nomCommune": "TEILLET" + "codePostal": "71600", + "codeCommune": "71439", + "libelleAcheminement": "ST LEGER LES PARAY", + "nomCommune": "ST LEGER LES PARAY" }, { - "codePostal": "76270", - "codeCommune": "76399", - "libelleAcheminement": "LUCY", - "nomCommune": "LUCY" + "codePostal": "81450", + "codeCommune": "81101", + "libelleAcheminement": "LE GARRIC", + "nomCommune": "LE GARRIC" }, { - "codePostal": "25720", - "codeCommune": "25245", - "libelleAcheminement": "FONTAIN", - "nomCommune": "FONTAIN" + "codePostal": "68590", + "codeCommune": "68280", + "libelleAcheminement": "RODERN", + "nomCommune": "RODERN" }, { - "codePostal": "80250", - "codeCommune": "80494", - "libelleAcheminement": "LOUVRECHY", - "nomCommune": "LOUVRECHY" + "codePostal": "70310", + "codeCommune": "70227", + "libelleAcheminement": "FAUCOGNEY ET LA MER", + "nomCommune": "FAUCOGNEY ET LA MER" }, { - "codePostal": "81500", - "codeCommune": "81298", - "libelleAcheminement": "TEULAT", - "nomCommune": "TEULAT" + "codePostal": "81700", + "codeCommune": "81200", + "libelleAcheminement": "PALLEVILLE", + "nomCommune": "PALLEVILLE" }, { - "codePostal": "76940", - "codeCommune": "76401", - "libelleAcheminement": "ARELAUNE EN SEINE", - "nomCommune": "ARELAUNE EN SEINE" + "codePostal": "71510", + "codeCommune": "71442", + "libelleAcheminement": "ST LEGER SUR DHEUNE", + "nomCommune": "ST LEGER SUR DHEUNE" }, { - "codePostal": "25370", - "codeCommune": "25252", - "libelleAcheminement": "FOURCATIER ET MAISON NEUVE", - "nomCommune": "FOURCATIER ET MAISON NEUVE" + "codePostal": "81300", + "codeCommune": "81105", + "libelleAcheminement": "GRAULHET", + "nomCommune": "GRAULHET" }, { - "codePostal": "80600", - "codeCommune": "80495", - "libelleAcheminement": "LUCHEUX", - "nomCommune": "LUCHEUX" + "codePostal": "68660", + "codeCommune": "68283", + "libelleAcheminement": "ROMBACH LE FRANC", + "nomCommune": "ROMBACH LE FRANC" }, { - "codePostal": "81340", - "codeCommune": "81303", - "libelleAcheminement": "TREBAS", - "nomCommune": "TREBAS" + "codePostal": "70160", + "codeCommune": "70228", + "libelleAcheminement": "FAVERNEY", + "nomCommune": "FAVERNEY" }, { - "codePostal": "76460", - "codeCommune": "76407", - "libelleAcheminement": "MANNEVILLE ES PLAINS", - "nomCommune": "MANNEVILLE ES PLAINS" + "codePostal": "81660", + "codeCommune": "81209", + "libelleAcheminement": "PONT DE LARN", + "nomCommune": "PONT DE LARN" }, { - "codePostal": "25140", - "codeCommune": "25255", - "libelleAcheminement": "FOURNET BLANCHEROCHE", - "nomCommune": "FOURNET BLANCHEROCHE" + "codePostal": "71350", + "codeCommune": "71443", + "libelleAcheminement": "ST LOUP GEANGES", + "nomCommune": "ST LOUP GEANGES" }, { - "codePostal": "80560", - "codeCommune": "80498", - "libelleAcheminement": "MAILLY MAILLET", - "nomCommune": "MAILLY MAILLET" + "codePostal": "81800", + "codeCommune": "81106", + "libelleAcheminement": "GRAZAC", + "nomCommune": "GRAZAC" + }, + { + "codePostal": "68128", + "codeCommune": "68286", + "libelleAcheminement": "ROSENAU", + "nomCommune": "ROSENAU" }, { - "codePostal": "81330", - "codeCommune": "81305", - "libelleAcheminement": "VABRE", - "nomCommune": "VABRE" + "codePostal": "70360", + "codeCommune": "70232", + "libelleAcheminement": "FERRIERES LES SCEY", + "nomCommune": "FERRIERES LES SCEY" }, { - "codePostal": "76150", - "codeCommune": "76410", - "libelleAcheminement": "MAROMME", - "nomCommune": "MAROMME" + "codePostal": "81500", + "codeCommune": "81213", + "libelleAcheminement": "PRATVIEL", + "nomCommune": "PRATVIEL" }, { - "codePostal": "25270", - "codeCommune": "25270", - "libelleAcheminement": "GEVRESIN", - "nomCommune": "GEVRESIN" + "codePostal": "71240", + "codeCommune": "71444", + "libelleAcheminement": "ST LOUP DE VARENNES", + "nomCommune": "ST LOUP DE VARENNES" }, { - "codePostal": "80110", - "codeCommune": "80499", - "libelleAcheminement": "MAILLY RAINEVAL", - "nomCommune": "MAILLY RAINEVAL" + "codePostal": "81440", + "codeCommune": "81109", + "libelleAcheminement": "JONQUIERES", + "nomCommune": "JONQUIERES" }, { - "codePostal": "81350", - "codeCommune": "81306", - "libelleAcheminement": "VALDERIES", - "nomCommune": "VALDERIES" + "codePostal": "68250", + "codeCommune": "68287", + "libelleAcheminement": "ROUFFACH", + "nomCommune": "ROUFFACH" }, { - "codePostal": "76880", - "codeCommune": "76413", - "libelleAcheminement": "MARTIGNY", - "nomCommune": "MARTIGNY" + "codePostal": "70230", + "codeCommune": "70243", + "libelleAcheminement": "FONTENOIS LES MONTBOZON", + "nomCommune": "FONTENOIS LES MONTBOZON" }, { - "codePostal": "25310", - "codeCommune": "25274", - "libelleAcheminement": "GLAY", - "nomCommune": "GLAY" + "codePostal": "81120", + "codeCommune": "81218", + "libelleAcheminement": "PUYGOUZON", + "nomCommune": "PUYGOUZON" }, { - "codePostal": "80220", - "codeCommune": "80500", - "libelleAcheminement": "MAISNIERES", - "nomCommune": "MAISNIERES" + "codePostal": "71118", + "codeCommune": "71448", + "libelleAcheminement": "ST MARTIN BELLE ROCHE", + "nomCommune": "ST MARTIN BELLE ROCHE" }, { - "codePostal": "81500", - "codeCommune": "81310", - "libelleAcheminement": "VEILHES", - "nomCommune": "VEILHES" + "codePostal": "81190", + "codeCommune": "81110", + "libelleAcheminement": "JOUQUEVIEL", + "nomCommune": "JOUQUEVIEL" }, { - "codePostal": "76370", - "codeCommune": "76414", - "libelleAcheminement": "MARTIN EGLISE", - "nomCommune": "MARTIN EGLISE" + "codePostal": "68550", + "codeCommune": "68292", + "libelleAcheminement": "ST AMARIN", + "nomCommune": "ST AMARIN" }, { - "codePostal": "25340", - "codeCommune": "25276", - "libelleAcheminement": "GONDENANS MONTBY", - "nomCommune": "GONDENANS MONTBY" + "codePostal": "70800", + "codeCommune": "70249", + "libelleAcheminement": "FRANCALMONT", + "nomCommune": "FRANCALMONT" }, { - "codePostal": "80132", - "codeCommune": "80512", - "libelleAcheminement": "MAREUIL CAUBERT", - "nomCommune": "MAREUIL CAUBERT" + "codePostal": "81990", + "codeCommune": "81218", + "libelleAcheminement": "PUYGOUZON", + "nomCommune": "PUYGOUZON" }, { - "codePostal": "81140", - "codeCommune": "81313", - "libelleAcheminement": "LE VERDIER", - "nomCommune": "LE VERDIER" + "codePostal": "71740", + "codeCommune": "71451", + "libelleAcheminement": "ST MARTIN DE LIXY", + "nomCommune": "ST MARTIN DE LIXY" }, { - "codePostal": "76680", - "codeCommune": "76417", - "libelleAcheminement": "MAUCOMBLE", - "nomCommune": "MAUCOMBLE" + "codePostal": "81150", + "codeCommune": "81112", + "libelleAcheminement": "LABASTIDE DE LEVIS", + "nomCommune": "LABASTIDE DE LEVIS" }, { - "codePostal": "25680", - "codeCommune": "25279", - "libelleAcheminement": "GOUHELANS", - "nomCommune": "GOUHELANS" + "codePostal": "68127", + "codeCommune": "68295", + "libelleAcheminement": "STE CROIX EN PLAINE", + "nomCommune": "STE CROIX EN PLAINE" }, { - "codePostal": "80360", - "codeCommune": "80513", - "libelleAcheminement": "MARICOURT", - "nomCommune": "MARICOURT" + "codePostal": "70200", + "codeCommune": "70250", + "libelleAcheminement": "FRANCHEVELLE", + "nomCommune": "FRANCHEVELLE" }, { - "codePostal": "81430", - "codeCommune": "81317", - "libelleAcheminement": "VILLEFRANCHE D ALBIGEOIS", - "nomCommune": "VILLEFRANCHE D ALBIGEOIS" + "codePostal": "81330", + "codeCommune": "81221", + "libelleAcheminement": "RAYSSAC", + "nomCommune": "RAYSSAC" }, { - "codePostal": "76170", - "codeCommune": "76421", - "libelleAcheminement": "MELAMARE", - "nomCommune": "MELAMARE" + "codePostal": "71460", + "codeCommune": "71455", + "libelleAcheminement": "ST MARTIN DU TARTRE", + "nomCommune": "ST MARTIN DU TARTRE" }, { - "codePostal": "25620", - "codeCommune": "25297", - "libelleAcheminement": "LE GRATTERIS", - "nomCommune": "LE GRATTERIS" + "codePostal": "81400", + "codeCommune": "81114", + "libelleAcheminement": "LABASTIDE GABAUSSE", + "nomCommune": "LABASTIDE GABAUSSE" }, { - "codePostal": "80360", - "codeCommune": "80521", - "libelleAcheminement": "MAUREPAS", - "nomCommune": "MAUREPAS" + "codePostal": "68160", + "codeCommune": "68298", + "libelleAcheminement": "STE MARIE AUX MINES", + "nomCommune": "STE MARIE AUX MINES" }, { - "codePostal": "81640", - "codeCommune": "81322", - "libelleAcheminement": "VIRAC", - "nomCommune": "VIRAC" + "codePostal": "70180", + "codeCommune": "70251", + "libelleAcheminement": "FRANCOURT", + "nomCommune": "FRANCOURT" }, { - "codePostal": "76660", - "codeCommune": "76430", - "libelleAcheminement": "MESNIL FOLLEMPRISE", - "nomCommune": "MESNIL FOLLEMPRISE" + "codePostal": "81600", + "codeCommune": "81225", + "libelleAcheminement": "RIVIERES", + "nomCommune": "RIVIERES" }, { - "codePostal": "25620", - "codeCommune": "25305", - "libelleAcheminement": "L HOPITAL DU GROSBOIS", - "nomCommune": "L HOPITAL DU GROSBOIS" + "codePostal": "71350", + "codeCommune": "71457", + "libelleAcheminement": "ST MARTIN EN GATINOIS", + "nomCommune": "ST MARTIN EN GATINOIS" }, { - "codePostal": "80290", - "codeCommune": "80528", - "libelleAcheminement": "MEREAUCOURT", - "nomCommune": "MEREAUCOURT" + "codePostal": "81270", + "codeCommune": "81115", + "libelleAcheminement": "LABASTIDE ROUAIROUX", + "nomCommune": "LABASTIDE ROUAIROUX" }, { - "codePostal": "82350", - "codeCommune": "82002", - "libelleAcheminement": "ALBIAS", - "nomCommune": "ALBIAS" + "codePostal": "68570", + "codeCommune": "68318", + "libelleAcheminement": "SOULTZMATT", + "nomCommune": "SOULTZMATT" }, { - "codePostal": "76210", - "codeCommune": "76439", - "libelleAcheminement": "MIRVILLE", - "nomCommune": "MIRVILLE" + "codePostal": "70600", + "codeCommune": "70252", + "libelleAcheminement": "FRAMONT", + "nomCommune": "FRAMONT" }, { - "codePostal": "25340", - "codeCommune": "25306", - "libelleAcheminement": "L HOPITAL ST LIEFFROY", - "nomCommune": "L HOPITAL ST LIEFFROY" + "codePostal": "81240", + "codeCommune": "81231", + "libelleAcheminement": "ROUAIROUX", + "nomCommune": "ROUAIROUX" }, { - "codePostal": "80800", - "codeCommune": "80530", - "libelleAcheminement": "MERICOURT L ABBE", - "nomCommune": "MERICOURT L ABBE" + "codePostal": "71670", + "codeCommune": "71468", + "libelleAcheminement": "ST PIERRE DE VARENNES", + "nomCommune": "ST PIERRE DE VARENNES" }, { - "codePostal": "82220", - "codeCommune": "82007", - "libelleAcheminement": "AUTY", - "nomCommune": "AUTY" + "codePostal": "81240", + "codeCommune": "81121", + "libelleAcheminement": "LACABAREDE", + "nomCommune": "LACABAREDE" }, { - "codePostal": "76340", - "codeCommune": "76441", - "libelleAcheminement": "MONCHAUX SORENG", - "nomCommune": "MONCHAUX SORENG" + "codePostal": "68720", + "codeCommune": "68320", + "libelleAcheminement": "SPECHBACH", + "nomCommune": "SPECHBACH" }, { - "codePostal": "25370", - "codeCommune": "25308", - "libelleAcheminement": "LES HOPITAUX VIEUX", - "nomCommune": "LES HOPITAUX VIEUX" + "codePostal": "70700", + "codeCommune": "70253", + "libelleAcheminement": "FRASNE LE CHATEAU", + "nomCommune": "FRASNE LE CHATEAU" }, { - "codePostal": "80640", - "codeCommune": "80531", - "libelleAcheminement": "MERICOURT EN VIMEU", - "nomCommune": "MERICOURT EN VIMEU" + "codePostal": "81150", + "codeCommune": "81232", + "libelleAcheminement": "ROUFFIAC", + "nomCommune": "ROUFFIAC" }, { - "codePostal": "82340", - "codeCommune": "82008", - "libelleAcheminement": "AUVILLAR", - "nomCommune": "AUVILLAR" + "codePostal": "71320", + "codeCommune": "71474", + "libelleAcheminement": "STE RADEGONDE", + "nomCommune": "STE RADEGONDE" }, { - "codePostal": "76380", - "codeCommune": "76446", - "libelleAcheminement": "MONTIGNY", - "nomCommune": "MONTIGNY" + "codePostal": "81150", + "codeCommune": "81131", + "libelleAcheminement": "LAGRAVE", + "nomCommune": "LAGRAVE" }, { - "codePostal": "25110", - "codeCommune": "25313", - "libelleAcheminement": "HYEVRE PAROISSE", - "nomCommune": "HYEVRE PAROISSE" + "codePostal": "68440", + "codeCommune": "68323", + "libelleAcheminement": "STEINBRUNN LE BAS", + "nomCommune": "STEINBRUNN LE BAS" }, { - "codePostal": "80620", - "codeCommune": "80537", - "libelleAcheminement": "MESNIL DOMQUEUR", - "nomCommune": "MESNIL DOMQUEUR" + "codePostal": "70270", + "codeCommune": "70256", + "libelleAcheminement": "FRESSE", + "nomCommune": "FRESSE" }, { - "codePostal": "82340", - "codeCommune": "82010", - "libelleAcheminement": "BARDIGUES", - "nomCommune": "BARDIGUES" + "codePostal": "81290", + "codeCommune": "81235", + "libelleAcheminement": "ST AFFRIQUE LES MONTAGNES", + "nomCommune": "ST AFFRIQUE LES MONTAGNES" }, { - "codePostal": "76290", - "codeCommune": "76447", - "libelleAcheminement": "MONTIVILLIERS", - "nomCommune": "MONTIVILLIERS" + "codePostal": "71500", + "codeCommune": "71484", + "libelleAcheminement": "ST USUGE", + "nomCommune": "ST USUGE" }, { - "codePostal": "25550", - "codeCommune": "25316", - "libelleAcheminement": "ISSANS", - "nomCommune": "ISSANS" + "codePostal": "81700", + "codeCommune": "81142", + "libelleAcheminement": "LEMPAUT", + "nomCommune": "LEMPAUT" }, { - "codePostal": "80300", - "codeCommune": "80547", - "libelleAcheminement": "MILLENCOURT", - "nomCommune": "MILLENCOURT" + "codePostal": "68140", + "codeCommune": "68329", + "libelleAcheminement": "STOSSWIHR", + "nomCommune": "STOSSWIHR" }, { - "codePostal": "82500", - "codeCommune": "82013", - "libelleAcheminement": "BEAUMONT DE LOMAGNE", - "nomCommune": "BEAUMONT DE LOMAGNE" + "codePostal": "70110", + "codeCommune": "70264", + "libelleAcheminement": "GEORFANS", + "nomCommune": "GEORFANS" }, { - "codePostal": "76520", - "codeCommune": "76448", - "libelleAcheminement": "MONTMAIN", - "nomCommune": "MONTMAIN" + "codePostal": "81190", + "codeCommune": "81245", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "25370", - "codeCommune": "25318", - "libelleAcheminement": "JOUGNE", - "nomCommune": "JOUGNE" + "codePostal": "71440", + "codeCommune": "71489", + "libelleAcheminement": "ST VINCENT EN BRESSE", + "nomCommune": "ST VINCENT EN BRESSE" }, { - "codePostal": "80200", - "codeCommune": "80552", - "libelleAcheminement": "MOISLAINS", - "nomCommune": "MOISLAINS" + "codePostal": "81150", + "codeCommune": "81156", + "libelleAcheminement": "MARSSAC SUR TARN", + "nomCommune": "MARSSAC SUR TARN" }, { - "codePostal": "82170", - "codeCommune": "82017", - "libelleAcheminement": "BESSENS", - "nomCommune": "BESSENS" + "codePostal": "68580", + "codeCommune": "68330", + "libelleAcheminement": "STRUETH", + "nomCommune": "STRUETH" }, { - "codePostal": "76220", - "codeCommune": "76450", - "libelleAcheminement": "MONTROTY", - "nomCommune": "MONTROTY" + "codePostal": "70120", + "codeCommune": "70272", + "libelleAcheminement": "GOURGEON", + "nomCommune": "GOURGEON" }, { - "codePostal": "25820", - "codeCommune": "25323", - "libelleAcheminement": "LAISSEY", - "nomCommune": "LAISSEY" + "codePostal": "81140", + "codeCommune": "81246", + "libelleAcheminement": "STE CECILE DU CAYROU", + "nomCommune": "STE CECILE DU CAYROU" }, { - "codePostal": "80260", - "codeCommune": "80553", - "libelleAcheminement": "MOLLIENS AU BOIS", - "nomCommune": "MOLLIENS AU BOIS" + "codePostal": "71430", + "codeCommune": "71490", + "libelleAcheminement": "ST VINCENT BRAGNY", + "nomCommune": "ST VINCENT BRAGNY" }, { - "codePostal": "82190", - "codeCommune": "82022", - "libelleAcheminement": "BOURG DE VISA", - "nomCommune": "BOURG DE VISA" + "codePostal": "81500", + "codeCommune": "81157", + "libelleAcheminement": "MARZENS", + "nomCommune": "MARZENS" }, { - "codePostal": "76750", - "codeCommune": "76453", - "libelleAcheminement": "MORGNY LA POMMERAYE", - "nomCommune": "MORGNY LA POMMERAYE" + "codePostal": "70400", + "codeCommune": "70276", + "libelleAcheminement": "GRANGES LA VILLE", + "nomCommune": "GRANGES LA VILLE" }, { - "codePostal": "25530", - "codeCommune": "25325", - "libelleAcheminement": "LANDRESSE", - "nomCommune": "LANDRESSE" + "codePostal": "81340", + "codeCommune": "81247", + "libelleAcheminement": "ST CIRGUE", + "nomCommune": "ST CIRGUE" }, { - "codePostal": "80200", - "codeCommune": "80557", - "libelleAcheminement": "ESTREES MONS", - "nomCommune": "ESTREES MONS" + "codePostal": "71250", + "codeCommune": "71495", + "libelleAcheminement": "SALORNAY SUR GUYE", + "nomCommune": "SALORNAY SUR GUYE" }, { - "codePostal": "82100", - "codeCommune": "82030", - "libelleAcheminement": "CASTELFERRUS", - "nomCommune": "CASTELFERRUS" + "codePostal": "81500", + "codeCommune": "81159", + "libelleAcheminement": "MASSAC SERAN", + "nomCommune": "MASSAC SERAN" }, { - "codePostal": "76530", - "codeCommune": "76457", - "libelleAcheminement": "MOULINEAUX", - "nomCommune": "MOULINEAUX" + "codePostal": "70170", + "codeCommune": "70278", + "libelleAcheminement": "GRATTERY", + "nomCommune": "GRATTERY" }, { - "codePostal": "25170", - "codeCommune": "25326", - "libelleAcheminement": "LANTENNE VERTIERE", - "nomCommune": "LANTENNE VERTIERE" + "codePostal": "81390", + "codeCommune": "81248", + "libelleAcheminement": "ST GAUZENS", + "nomCommune": "ST GAUZENS" }, { - "codePostal": "80200", - "codeCommune": "80557", - "libelleAcheminement": "ESTREES MONS", - "nomCommune": "ESTREES MONS" + "codePostal": "71000", + "codeCommune": "71497", + "libelleAcheminement": "SANCE", + "nomCommune": "SANCE" }, { - "codePostal": "82300", - "codeCommune": "82037", - "libelleAcheminement": "CAUSSADE", - "nomCommune": "CAUSSADE" + "codePostal": "81470", + "codeCommune": "81162", + "libelleAcheminement": "MAURENS SCOPONT", + "nomCommune": "MAURENS SCOPONT" }, { - "codePostal": "76270", - "codeCommune": "76459", - "libelleAcheminement": "NESLE HODENG", - "nomCommune": "NESLE HODENG" + "codePostal": "70440", + "codeCommune": "70283", + "libelleAcheminement": "HAUT DU THEM CHATEAU LAMBERT", + "nomCommune": "HAUT DU THEM CHATEAU LAMBERT" }, { - "codePostal": "25250", - "codeCommune": "25327", - "libelleAcheminement": "LANTHENANS", - "nomCommune": "LANTHENANS" + "codePostal": "81440", + "codeCommune": "81250", + "libelleAcheminement": "ST GENEST DE CONTEST", + "nomCommune": "ST GENEST DE CONTEST" }, { - "codePostal": "80690", - "codeCommune": "80574", - "libelleAcheminement": "MOUFLERS", - "nomCommune": "MOUFLERS" + "codePostal": "71390", + "codeCommune": "71501", + "libelleAcheminement": "SASSANGY", + "nomCommune": "SASSANGY" }, { - "codePostal": "82160", - "codeCommune": "82038", - "libelleAcheminement": "CAYLUS", - "nomCommune": "CAYLUS" + "codePostal": "81300", + "codeCommune": "81169", + "libelleAcheminement": "MISSECLE", + "nomCommune": "MISSECLE" }, { - "codePostal": "76340", - "codeCommune": "76460", - "libelleAcheminement": "NESLE NORMANDEUSE", - "nomCommune": "NESLE NORMANDEUSE" + "codePostal": "70400", + "codeCommune": "70285", + "libelleAcheminement": "HERICOURT", + "nomCommune": "HERICOURT" }, { - "codePostal": "25510", - "codeCommune": "25333", - "libelleAcheminement": "LAVIRON", - "nomCommune": "LAVIRON" + "codePostal": "81350", + "codeCommune": "81253", + "libelleAcheminement": "ST GREGOIRE", + "nomCommune": "ST GREGOIRE" }, { - "codePostal": "80132", - "codeCommune": "80588", - "libelleAcheminement": "NEUFMOULIN", - "nomCommune": "NEUFMOULIN" + "codePostal": "71460", + "codeCommune": "71505", + "libelleAcheminement": "SAVIANGES", + "nomCommune": "SAVIANGES" }, { - "codePostal": "82390", - "codeCommune": "82051", - "libelleAcheminement": "DURFORT LACAPELETTE", - "nomCommune": "DURFORT LACAPELETTE" + "codePostal": "81630", + "codeCommune": "81178", + "libelleAcheminement": "MONTGAILLARD", + "nomCommune": "MONTGAILLARD" }, { - "codePostal": "76390", - "codeCommune": "76479", - "libelleAcheminement": "NULLEMONT", - "nomCommune": "NULLEMONT" + "codePostal": "70700", + "codeCommune": "70289", + "libelleAcheminement": "IGNY", + "nomCommune": "IGNY" }, { - "codePostal": "25440", - "codeCommune": "25340", - "libelleAcheminement": "LOMBARD", - "nomCommune": "LOMBARD" + "codePostal": "81170", + "codeCommune": "81262", + "libelleAcheminement": "ST MARCEL CAMPES", + "nomCommune": "ST MARCEL CAMPES" }, { - "codePostal": "80150", - "codeCommune": "80589", - "libelleAcheminement": "NEUILLY LE DIEN", - "nomCommune": "NEUILLY LE DIEN" + "codePostal": "71580", + "codeCommune": "71506", + "libelleAcheminement": "SAVIGNY EN REVERMONT", + "nomCommune": "SAVIGNY EN REVERMONT" }, { - "codePostal": "82400", - "codeCommune": "82054", - "libelleAcheminement": "ESPALAIS", - "nomCommune": "ESPALAIS" + "codePostal": "81190", + "codeCommune": "81180", + "libelleAcheminement": "MONTIRAT", + "nomCommune": "MONTIRAT" }, { - "codePostal": "76930", - "codeCommune": "76481", - "libelleAcheminement": "OCTEVILLE SUR MER", - "nomCommune": "OCTEVILLE SUR MER" + "codePostal": "70500", + "codeCommune": "70292", + "libelleAcheminement": "JUSSEY", + "nomCommune": "JUSSEY" }, { - "codePostal": "25690", - "codeCommune": "25342", - "libelleAcheminement": "LONGECHAUX", - "nomCommune": "LONGECHAUX" + "codePostal": "81640", + "codeCommune": "81275", + "libelleAcheminement": "SALLES", + "nomCommune": "SALLES" }, { - "codePostal": "80135", - "codeCommune": "80609", - "libelleAcheminement": "ONEUX", - "nomCommune": "ONEUX" + "codePostal": "71400", + "codeCommune": "71509", + "libelleAcheminement": "LA CELLE EN MORVAN", + "nomCommune": "LA CELLE EN MORVAN" }, { - "codePostal": "82500", - "codeCommune": "82055", - "libelleAcheminement": "ESPARSAC", - "nomCommune": "ESPARSAC" + "codePostal": "81300", + "codeCommune": "81187", + "libelleAcheminement": "MOULAYRES", + "nomCommune": "MOULAYRES" }, { - "codePostal": "76560", - "codeCommune": "76483", - "libelleAcheminement": "OHERVILLE", - "nomCommune": "OHERVILLE" + "codePostal": "70500", + "codeCommune": "70293", + "libelleAcheminement": "LAMBREY", + "nomCommune": "LAMBREY" }, { - "codePostal": "25260", - "codeCommune": "25350", - "libelleAcheminement": "LOUGRES", - "nomCommune": "LOUGRES" + "codePostal": "81600", + "codeCommune": "81283", + "libelleAcheminement": "SENOUILLAC", + "nomCommune": "SENOUILLAC" }, { - "codePostal": "80160", - "codeCommune": "80611", - "libelleAcheminement": "ORESMAUX", - "nomCommune": "ORESMAUX" + "codePostal": "71330", + "codeCommune": "71514", + "libelleAcheminement": "SENS SUR SEILLE", + "nomCommune": "SENS SUR SEILLE" }, { - "codePostal": "82160", - "codeCommune": "82056", - "libelleAcheminement": "ESPINAS", - "nomCommune": "ESPINAS" + "codePostal": "81320", + "codeCommune": "81188", + "libelleAcheminement": "MOULIN MAGE", + "nomCommune": "MOULIN MAGE" }, { - "codePostal": "76430", - "codeCommune": "76489", - "libelleAcheminement": "OUDALLE", - "nomCommune": "OUDALLE" + "codePostal": "70230", + "codeCommune": "70296", + "libelleAcheminement": "LARIANS ET MUNANS", + "nomCommune": "LARIANS ET MUNANS" }, { - "codePostal": "25110", - "codeCommune": "25354", - "libelleAcheminement": "LUXIOL", - "nomCommune": "LUXIOL" + "codePostal": "81190", + "codeCommune": "81302", + "libelleAcheminement": "TREBAN", + "nomCommune": "TREBAN" }, { - "codePostal": "80460", - "codeCommune": "80613", - "libelleAcheminement": "OUST MAREST", - "nomCommune": "OUST MAREST" + "codePostal": "71290", + "codeCommune": "71522", + "libelleAcheminement": "SIMANDRE", + "nomCommune": "SIMANDRE" }, { - "codePostal": "82500", - "codeCommune": "82059", - "libelleAcheminement": "FAUDOAS", - "nomCommune": "FAUDOAS" + "codePostal": "81470", + "codeCommune": "81189", + "libelleAcheminement": "MOUZENS", + "nomCommune": "MOUZENS" }, { - "codePostal": "76570", - "codeCommune": "76495", - "libelleAcheminement": "PAVILLY", - "nomCommune": "PAVILLY" + "codePostal": "70200", + "codeCommune": "70319", + "libelleAcheminement": "MAGNY JOBERT", + "nomCommune": "MAGNY JOBERT" }, { - "codePostal": "25650", - "codeCommune": "25357", - "libelleAcheminement": "MAISONS DU BOIS LIEVREMONT", - "nomCommune": "MAISONS DU BOIS LIEVREMONT" + "codePostal": "81190", + "codeCommune": "81304", + "libelleAcheminement": "TREVIEN", + "nomCommune": "TREVIEN" }, { - "codePostal": "80300", - "codeCommune": "80615", - "libelleAcheminement": "OVILLERS LA BOISSELLE", - "nomCommune": "OVILLERS LA BOISSELLE" + "codePostal": "71330", + "codeCommune": "71523", + "libelleAcheminement": "SIMARD", + "nomCommune": "SIMARD" }, { - "codePostal": "82100", - "codeCommune": "82063", - "libelleAcheminement": "GARGANVILLAR", - "nomCommune": "GARGANVILLAR" + "codePostal": "81710", + "codeCommune": "81195", + "libelleAcheminement": "NAVES", + "nomCommune": "NAVES" }, { - "codePostal": "76460", - "codeCommune": "76504", - "libelleAcheminement": "PLEINE SEVE", - "nomCommune": "PLEINE SEVE" + "codePostal": "70500", + "codeCommune": "70320", + "libelleAcheminement": "MAGNY LES JUSSEY", + "nomCommune": "MAGNY LES JUSSEY" }, { - "codePostal": "25250", - "codeCommune": "25369", - "libelleAcheminement": "MARVELISE", - "nomCommune": "MARVELISE" + "codePostal": "81330", + "codeCommune": "81305", + "libelleAcheminement": "VABRE", + "nomCommune": "VABRE" }, { - "codePostal": "80700", - "codeCommune": "80617", - "libelleAcheminement": "PARVILLERS LE QUESNOY", - "nomCommune": "PARVILLERS LE QUESNOY" + "codePostal": "71540", + "codeCommune": "71527", + "libelleAcheminement": "SOMMANT", + "nomCommune": "SOMMANT" }, { - "codePostal": "82330", - "codeCommune": "82069", - "libelleAcheminement": "GINALS", - "nomCommune": "GINALS" + "codePostal": "81490", + "codeCommune": "81196", + "libelleAcheminement": "NOAILHAC", + "nomCommune": "NOAILHAC" }, { - "codePostal": "76680", - "codeCommune": "76506", - "libelleAcheminement": "POMMEREVAL", - "nomCommune": "POMMEREVAL" + "codePostal": "70200", + "codeCommune": "70321", + "libelleAcheminement": "MAGNY VERNOIS", + "nomCommune": "MAGNY VERNOIS" }, { - "codePostal": "25310", - "codeCommune": "25378", - "libelleAcheminement": "MESLIERES", - "nomCommune": "MESLIERES" + "codePostal": "81090", + "codeCommune": "81307", + "libelleAcheminement": "VALDURENQUE", + "nomCommune": "VALDURENQUE" }, { - "codePostal": "80260", - "codeCommune": "80624", - "libelleAcheminement": "PIERREGOT", - "nomCommune": "PIERREGOT" + "codePostal": "71500", + "codeCommune": "71528", + "libelleAcheminement": "SORNAY", + "nomCommune": "SORNAY" }, { - "codePostal": "82500", - "codeCommune": "82070", - "libelleAcheminement": "GLATENS", - "nomCommune": "GLATENS" + "codePostal": "81340", + "codeCommune": "81199", + "libelleAcheminement": "PADIES", + "nomCommune": "PADIES" }, { - "codePostal": "76260", - "codeCommune": "76507", - "libelleAcheminement": "PONTS ET MARAIS", - "nomCommune": "PONTS ET MARAIS" + "codePostal": "70210", + "codeCommune": "70323", + "libelleAcheminement": "MAILLERONCOURT ST PANCRAS", + "nomCommune": "MAILLERONCOURT ST PANCRAS" }, { - "codePostal": "25680", - "codeCommune": "25385", - "libelleAcheminement": "MONTAGNEY SERVIGNEY", - "nomCommune": "MONTAGNEY SERVIGNEY" + "codePostal": "81340", + "codeCommune": "81308", + "libelleAcheminement": "VALENCE D ALBIGEOIS", + "nomCommune": "VALENCE D ALBIGEOIS" }, { - "codePostal": "80500", - "codeCommune": "80625", - "libelleAcheminement": "TROIS RIVIERES", - "nomCommune": "TROIS RIVIERES" + "codePostal": "71740", + "codeCommune": "71533", + "libelleAcheminement": "TANCON", + "nomCommune": "TANCON" }, { - "codePostal": "82500", - "codeCommune": "82071", - "libelleAcheminement": "GOAS", - "nomCommune": "GOAS" + "codePostal": "81250", + "codeCommune": "81203", + "libelleAcheminement": "PAULINET", + "nomCommune": "PAULINET" }, { - "codePostal": "76270", - "codeCommune": "76516", - "libelleAcheminement": "QUIEVRECOURT", - "nomCommune": "QUIEVRECOURT" + "codePostal": "70190", + "codeCommune": "70326", + "libelleAcheminement": "LA MALACHERE", + "nomCommune": "LA MALACHERE" }, { - "codePostal": "25200", - "codeCommune": "25388", - "libelleAcheminement": "MONTBELIARD", - "nomCommune": "MONTBELIARD" + "codePostal": "81140", + "codeCommune": "81309", + "libelleAcheminement": "VAOUR", + "nomCommune": "VAOUR" }, { - "codePostal": "80150", - "codeCommune": "80631", - "libelleAcheminement": "PONCHES ESTRUVAL", - "nomCommune": "PONCHES ESTRUVAL" + "codePostal": "71400", + "codeCommune": "71535", + "libelleAcheminement": "TAVERNAY", + "nomCommune": "TAVERNAY" }, { - "codePostal": "82400", - "codeCommune": "82072", - "libelleAcheminement": "GOLFECH", - "nomCommune": "GOLFECH" + "codePostal": "81660", + "codeCommune": "81204", + "libelleAcheminement": "PAYRIN AUGMONTEL", + "nomCommune": "PAYRIN AUGMONTEL" }, { - "codePostal": "76750", - "codeCommune": "76521", - "libelleAcheminement": "REBETS", - "nomCommune": "REBETS" + "codePostal": "70120", + "codeCommune": "70337", + "libelleAcheminement": "MELIN", + "nomCommune": "MELIN" }, { - "codePostal": "25190", - "codeCommune": "25393", - "libelleAcheminement": "MONTECHEROUX", - "nomCommune": "MONTECHEROUX" + "codePostal": "81110", + "codeCommune": "81312", + "libelleAcheminement": "VERDALLE", + "nomCommune": "VERDALLE" }, { - "codePostal": "80860", - "codeCommune": "80633", - "libelleAcheminement": "PONTHOILE", - "nomCommune": "PONTHOILE" + "codePostal": "71520", + "codeCommune": "71547", + "libelleAcheminement": "TRIVY", + "nomCommune": "TRIVY" }, { - "codePostal": "82160", - "codeCommune": "82082", - "libelleAcheminement": "LACAPELLE LIVRON", - "nomCommune": "LACAPELLE LIVRON" + "codePostal": "81470", + "codeCommune": "81205", + "libelleAcheminement": "PECHAUDIER", + "nomCommune": "PECHAUDIER" }, { - "codePostal": "76560", - "codeCommune": "76524", - "libelleAcheminement": "REUVILLE", - "nomCommune": "REUVILLE" + "codePostal": "70210", + "codeCommune": "70338", + "libelleAcheminement": "MELINCOURT", + "nomCommune": "MELINCOURT" }, { - "codePostal": "25650", - "codeCommune": "25398", - "libelleAcheminement": "MONTFLOVIN", - "nomCommune": "MONTFLOVIN" + "codePostal": "81570", + "codeCommune": "81315", + "libelleAcheminement": "VIELMUR SUR AGOUT", + "nomCommune": "VIELMUR SUR AGOUT" }, { - "codePostal": "80300", - "codeCommune": "80640", - "libelleAcheminement": "POZIERES", - "nomCommune": "POZIERES" + "codePostal": "71480", + "codeCommune": "71558", + "libelleAcheminement": "VARENNES ST SAUVEUR", + "nomCommune": "VARENNES ST SAUVEUR" }, { - "codePostal": "82250", - "codeCommune": "82088", - "libelleAcheminement": "LAGUEPIE", - "nomCommune": "LAGUEPIE" + "codePostal": "81140", + "codeCommune": "81206", + "libelleAcheminement": "PENNE", + "nomCommune": "PENNE" }, { - "codePostal": "76340", - "codeCommune": "76528", - "libelleAcheminement": "RIEUX", - "nomCommune": "RIEUX" + "codePostal": "70180", + "codeCommune": "70340", + "libelleAcheminement": "MEMBREY", + "nomCommune": "MEMBREY" }, { - "codePostal": "25500", - "codeCommune": "25411", - "libelleAcheminement": "MORTEAU", - "nomCommune": "MORTEAU" + "codePostal": "81140", + "codeCommune": "81316", + "libelleAcheminement": "VIEUX", + "nomCommune": "VIEUX" }, { - "codePostal": "80320", - "codeCommune": "80647", - "libelleAcheminement": "PUZEAUX", - "nomCommune": "PUZEAUX" + "codePostal": "71960", + "codeCommune": "71567", + "libelleAcheminement": "VERGISSON", + "nomCommune": "VERGISSON" }, { - "codePostal": "82500", - "codeCommune": "82093", - "libelleAcheminement": "LARRAZET", - "nomCommune": "LARRAZET" + "codePostal": "81220", + "codeCommune": "81212", + "libelleAcheminement": "PRADES", + "nomCommune": "PRADES" }, { - "codePostal": "76560", - "codeCommune": "76530", - "libelleAcheminement": "ROBERTOT", - "nomCommune": "ROBERTOT" + "codePostal": "70130", + "codeCommune": "70342", + "libelleAcheminement": "MERCEY SUR SAONE", + "nomCommune": "MERCEY SUR SAONE" }, { - "codePostal": "25170", - "codeCommune": "25414", - "libelleAcheminement": "LE MOUTHEROT", - "nomCommune": "LE MOUTHEROT" + "codePostal": "81220", + "codeCommune": "81323", + "libelleAcheminement": "VITERBE", + "nomCommune": "VITERBE" }, { - "codePostal": "80118", - "codeCommune": "80652", - "libelleAcheminement": "LE QUESNEL", - "nomCommune": "LE QUESNEL" + "codePostal": "71700", + "codeCommune": "71576", + "libelleAcheminement": "LE VILLARS", + "nomCommune": "LE VILLARS" }, { - "codePostal": "82110", - "codeCommune": "82094", - "libelleAcheminement": "LAUZERTE", - "nomCommune": "LAUZERTE" + "codePostal": "81390", + "codeCommune": "81215", + "libelleAcheminement": "PUYBEGON", + "nomCommune": "PUYBEGON" }, { - "codePostal": "76700", - "codeCommune": "76533", - "libelleAcheminement": "ROGERVILLE", - "nomCommune": "ROGERVILLE" + "codePostal": "70400", + "codeCommune": "70347", + "libelleAcheminement": "MIGNAVILLERS", + "nomCommune": "MIGNAVILLERS" }, { - "codePostal": "25360", - "codeCommune": "25417", - "libelleAcheminement": "NAISEY LES GRANGES", - "nomCommune": "NAISEY LES GRANGES" + "codePostal": "82600", + "codeCommune": "82005", + "libelleAcheminement": "AUCAMVILLE", + "nomCommune": "AUCAMVILLE" }, { - "codePostal": "80260", - "codeCommune": "80661", - "libelleAcheminement": "RAINNEVILLE", - "nomCommune": "RAINNEVILLE" + "codePostal": "71250", + "codeCommune": "71582", + "libelleAcheminement": "LA VINEUSE SUR FREGANDE", + "nomCommune": "LA VINEUSE SUR FREGANDE" }, { - "codePostal": "82240", - "codeCommune": "82095", - "libelleAcheminement": "LAVAURETTE", - "nomCommune": "LAVAURETTE" + "codePostal": "81440", + "codeCommune": "81216", + "libelleAcheminement": "PUYCALVEL", + "nomCommune": "PUYCALVEL" }, { - "codePostal": "76440", - "codeCommune": "76535", - "libelleAcheminement": "RONCHEROLLES EN BRAY", - "nomCommune": "RONCHEROLLES EN BRAY" + "codePostal": "70140", + "codeCommune": "70353", + "libelleAcheminement": "MONTAGNEY", + "nomCommune": "MONTAGNEY" }, { - "codePostal": "25210", - "codeCommune": "25421", - "libelleAcheminement": "NARBIEF", - "nomCommune": "NARBIEF" + "codePostal": "82600", + "codeCommune": "82014", + "libelleAcheminement": "BEAUPUY", + "nomCommune": "BEAUPUY" }, { - "codePostal": "80140", - "codeCommune": "80663", - "libelleAcheminement": "RAMBURES", - "nomCommune": "RAMBURES" + "codePostal": "71250", + "codeCommune": "71582", + "libelleAcheminement": "LA VINEUSE SUR FREGANDE", + "nomCommune": "LA VINEUSE SUR FREGANDE" }, { - "codePostal": "82120", - "codeCommune": "82097", - "libelleAcheminement": "LAVIT", - "nomCommune": "LAVIT" + "codePostal": "81140", + "codeCommune": "81217", + "libelleAcheminement": "PUYCELSI", + "nomCommune": "PUYCELSI" }, { - "codePostal": "76560", - "codeCommune": "76542", - "libelleAcheminement": "ROUTES", - "nomCommune": "ROUTES" + "codePostal": "70500", + "codeCommune": "70362", + "libelleAcheminement": "MONTIGNY LES CHERLIEU", + "nomCommune": "MONTIGNY LES CHERLIEU" }, { - "codePostal": "25580", - "codeCommune": "25424", - "libelleAcheminement": "LES PREMIERS SAPINS", - "nomCommune": "LES PREMIERS SAPINS" + "codePostal": "82150", + "codeCommune": "82016", + "libelleAcheminement": "BELVEZE", + "nomCommune": "BELVEZE" }, { - "codePostal": "80360", - "codeCommune": "80664", - "libelleAcheminement": "RANCOURT", - "nomCommune": "RANCOURT" + "codePostal": "71120", + "codeCommune": "71586", + "libelleAcheminement": "VIRY", + "nomCommune": "VIRY" }, { - "codePostal": "82120", - "codeCommune": "82104", - "libelleAcheminement": "MARSAC", - "nomCommune": "MARSAC" + "codePostal": "81120", + "codeCommune": "81233", + "libelleAcheminement": "TERRE DE BANCALIE", + "nomCommune": "TERRE DE BANCALIE" }, { - "codePostal": "76440", - "codeCommune": "76544", - "libelleAcheminement": "ROUVRAY CATILLON", - "nomCommune": "ROUVRAY CATILLON" + "codePostal": "70110", + "codeCommune": "70364", + "libelleAcheminement": "MONTJUSTIN ET VELOTTE", + "nomCommune": "MONTJUSTIN ET VELOTTE" }, { - "codePostal": "25190", - "codeCommune": "25426", - "libelleAcheminement": "NOIREFONTAINE", - "nomCommune": "NOIREFONTAINE" + "codePostal": "82110", + "codeCommune": "82021", + "libelleAcheminement": "BOULOC EN QUERCY", + "nomCommune": "BOULOC EN QUERCY" }, { - "codePostal": "80800", - "codeCommune": "80672", - "libelleAcheminement": "RIBEMONT SUR ANCRE", - "nomCommune": "RIBEMONT SUR ANCRE" + "codePostal": "71600", + "codeCommune": "71588", + "libelleAcheminement": "VITRY EN CHAROLLAIS", + "nomCommune": "VITRY EN CHAROLLAIS" }, { - "codePostal": "82500", - "codeCommune": "82106", - "libelleAcheminement": "MAUBEC", - "nomCommune": "MAUBEC" + "codePostal": "81110", + "codeCommune": "81237", + "libelleAcheminement": "ST AMANCET", + "nomCommune": "ST AMANCET" }, { - "codePostal": "76113", - "codeCommune": "76550", - "libelleAcheminement": "SAHURS", - "nomCommune": "SAHURS" + "codePostal": "70100", + "codeCommune": "70371", + "libelleAcheminement": "MONTUREUX ET PRANTIGNY", + "nomCommune": "MONTUREUX ET PRANTIGNY" }, { - "codePostal": "25220", - "codeCommune": "25429", - "libelleAcheminement": "NOVILLARS", - "nomCommune": "NOVILLARS" + "codePostal": "82190", + "codeCommune": "82022", + "libelleAcheminement": "BOURG DE VISA", + "nomCommune": "BOURG DE VISA" }, { - "codePostal": "80310", - "codeCommune": "80673", - "libelleAcheminement": "RIENCOURT", - "nomCommune": "RIENCOURT" + "codePostal": "71600", + "codeCommune": "71590", + "libelleAcheminement": "VOLESVRES", + "nomCommune": "VOLESVRES" }, { - "codePostal": "82130", - "codeCommune": "82120", - "libelleAcheminement": "MONTASTRUC", - "nomCommune": "MONTASTRUC" + "codePostal": "81250", + "codeCommune": "81240", + "libelleAcheminement": "ST ANDRE", + "nomCommune": "ST ANDRE" }, { - "codePostal": "76310", - "codeCommune": "76552", - "libelleAcheminement": "STE ADRESSE", - "nomCommune": "STE ADRESSE" + "codePostal": "70120", + "codeCommune": "70373", + "libelleAcheminement": "LA ROCHE MOREY", + "nomCommune": "LA ROCHE MOREY" }, { - "codePostal": "25640", - "codeCommune": "25430", - "libelleAcheminement": "OLLANS", - "nomCommune": "OLLANS" + "codePostal": "82370", + "codeCommune": "82027", + "libelleAcheminement": "CAMPSAS", + "nomCommune": "CAMPSAS" }, { - "codePostal": "80700", - "codeCommune": "80676", - "libelleAcheminement": "ROIGLISE", - "nomCommune": "ROIGLISE" + "codePostal": "72610", + "codeCommune": "72006", + "libelleAcheminement": "ARCONNAY", + "nomCommune": "ARCONNAY" }, { - "codePostal": "82110", - "codeCommune": "82122", - "libelleAcheminement": "MONTBARLA", - "nomCommune": "MONTBARLA" + "codePostal": "81110", + "codeCommune": "81242", + "libelleAcheminement": "ST AVIT", + "nomCommune": "ST AVIT" }, { - "codePostal": "76170", - "codeCommune": "76556", - "libelleAcheminement": "ST ANTOINE LA FORET", - "nomCommune": "ST ANTOINE LA FORET" + "codePostal": "70100", + "codeCommune": "70376", + "libelleAcheminement": "NANTILLY", + "nomCommune": "NANTILLY" }, { - "codePostal": "25120", - "codeCommune": "25433", - "libelleAcheminement": "ORGEANS BLANCHEFONTAINE", - "nomCommune": "ORGEANS BLANCHEFONTAINE" + "codePostal": "82160", + "codeCommune": "82029", + "libelleAcheminement": "CASTANET", + "nomCommune": "CASTANET" }, { - "codePostal": "80170", - "codeCommune": "80682", - "libelleAcheminement": "ROUVROY EN SANTERRE", - "nomCommune": "ROUVROY EN SANTERRE" + "codePostal": "72130", + "codeCommune": "72011", + "libelleAcheminement": "ASSE LE BOISNE", + "nomCommune": "ASSE LE BOISNE" }, { - "codePostal": "82300", - "codeCommune": "82126", - "libelleAcheminement": "MONTEILS", - "nomCommune": "MONTEILS" + "codePostal": "81140", + "codeCommune": "81243", + "libelleAcheminement": "ST BEAUZILE", + "nomCommune": "ST BEAUZILE" }, { - "codePostal": "76570", - "codeCommune": "76566", - "libelleAcheminement": "STE AUSTREBERTHE", - "nomCommune": "STE AUSTREBERTHE" + "codePostal": "70000", + "codeCommune": "70378", + "libelleAcheminement": "NAVENNE", + "nomCommune": "NAVENNE" }, { - "codePostal": "25290", - "codeCommune": "25434", - "libelleAcheminement": "ORNANS", - "nomCommune": "ORNANS" + "codePostal": "82160", + "codeCommune": "82038", + "libelleAcheminement": "CAYLUS", + "nomCommune": "CAYLUS" }, { - "codePostal": "80700", - "codeCommune": "80685", - "libelleAcheminement": "ROYE", - "nomCommune": "ROYE" + "codePostal": "72170", + "codeCommune": "72012", + "libelleAcheminement": "ASSE LE RIBOUL", + "nomCommune": "ASSE LE RIBOUL" }, { - "codePostal": "82400", - "codeCommune": "82138", - "libelleAcheminement": "PERVILLE", - "nomCommune": "PERVILLE" + "codePostal": "81440", + "codeCommune": "81258", + "libelleAcheminement": "ST JULIEN DU PUY", + "nomCommune": "ST JULIEN DU PUY" }, { - "codePostal": "76116", - "codeCommune": "76573", - "libelleAcheminement": "ST DENIS LE THIBOULT", - "nomCommune": "ST DENIS LE THIBOULT" + "codePostal": "70130", + "codeCommune": "70384", + "libelleAcheminement": "NEUVELLE LES LA CHARITE", + "nomCommune": "NEUVELLE LES LA CHARITE" }, { - "codePostal": "25430", - "codeCommune": "25436", - "libelleAcheminement": "ORVE", - "nomCommune": "ORVE" + "codePostal": "82440", + "codeCommune": "82039", + "libelleAcheminement": "CAYRAC", + "nomCommune": "CAYRAC" }, { - "codePostal": "80260", - "codeCommune": "80686", - "libelleAcheminement": "RUBEMPRE", - "nomCommune": "RUBEMPRE" + "codePostal": "72600", + "codeCommune": "72015", + "libelleAcheminement": "LES AULNEAUX", + "nomCommune": "LES AULNEAUX" }, { - "codePostal": "82340", - "codeCommune": "82139", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "81500", + "codeCommune": "81261", + "libelleAcheminement": "ST LIEUX LES LAVAUR", + "nomCommune": "ST LIEUX LES LAVAUR" }, { - "codePostal": "76590", - "codeCommune": "76582", - "libelleAcheminement": "ST GERMAIN D ETABLES", - "nomCommune": "ST GERMAIN D ETABLES" + "codePostal": "70500", + "codeCommune": "70400", + "libelleAcheminement": "OUGE", + "nomCommune": "OUGE" }, { - "codePostal": "25640", - "codeCommune": "25439", - "libelleAcheminement": "OUGNEY DOUVOT", - "nomCommune": "OUGNEY DOUVOT" + "codePostal": "82340", + "codeCommune": "82049", + "libelleAcheminement": "DONZAC", + "nomCommune": "DONZAC" }, { - "codePostal": "80500", - "codeCommune": "80687", - "libelleAcheminement": "RUBESCOURT", - "nomCommune": "RUBESCOURT" + "codePostal": "72110", + "codeCommune": "72026", + "libelleAcheminement": "BEAUFAY", + "nomCommune": "BEAUFAY" }, { - "codePostal": "82240", - "codeCommune": "82148", - "libelleAcheminement": "PUYLAROQUE", - "nomCommune": "PUYLAROQUE" + "codePostal": "81140", + "codeCommune": "81265", + "libelleAcheminement": "ST MICHEL DE VAX", + "nomCommune": "ST MICHEL DE VAX" }, { - "codePostal": "76510", - "codeCommune": "76590", - "libelleAcheminement": "ST JACQUES D ALIERMONT", - "nomCommune": "ST JACQUES D ALIERMONT" + "codePostal": "70200", + "codeCommune": "70403", + "libelleAcheminement": "PALANTE", + "nomCommune": "PALANTE" }, { - "codePostal": "25310", - "codeCommune": "25452", - "libelleAcheminement": "PIERREFONTAINE LES BLAMONT", - "nomCommune": "PIERREFONTAINE LES BLAMONT" + "codePostal": "82340", + "codeCommune": "82050", + "libelleAcheminement": "DUNES", + "nomCommune": "DUNES" }, { - "codePostal": "80800", - "codeCommune": "80694", - "libelleAcheminement": "SAILLY LE SEC", - "nomCommune": "SAILLY LE SEC" + "codePostal": "72170", + "codeCommune": "72029", + "libelleAcheminement": "BEAUMONT SUR SARTHE", + "nomCommune": "BEAUMONT SUR SARTHE" }, { - "codePostal": "82370", - "codeCommune": "82150", - "libelleAcheminement": "REYNIES", - "nomCommune": "REYNIES" + "codePostal": "81120", + "codeCommune": "81287", + "libelleAcheminement": "SIEURAC", + "nomCommune": "SIEURAC" }, { - "codePostal": "76210", - "codeCommune": "76593", - "libelleAcheminement": "ST JEAN DE LA NEUVILLE", - "nomCommune": "ST JEAN DE LA NEUVILLE" + "codePostal": "70190", + "codeCommune": "70407", + "libelleAcheminement": "PERROUSE", + "nomCommune": "PERROUSE" }, { - "codePostal": "25510", - "codeCommune": "25453", - "libelleAcheminement": "PIERREFONTAINE LES VARANS", - "nomCommune": "PIERREFONTAINE LES VARANS" + "codePostal": "82400", + "codeCommune": "82054", + "libelleAcheminement": "ESPALAIS", + "nomCommune": "ESPALAIS" }, { - "codePostal": "80480", - "codeCommune": "80725", - "libelleAcheminement": "SALOUEL", - "nomCommune": "SALOUEL" + "codePostal": "72160", + "codeCommune": "72031", + "libelleAcheminement": "BEILLE", + "nomCommune": "BEILLE" }, { - "codePostal": "82210", - "codeCommune": "82156", - "libelleAcheminement": "ST ARROUMEX", - "nomCommune": "ST ARROUMEX" + "codePostal": "81580", + "codeCommune": "81289", + "libelleAcheminement": "SOUAL", + "nomCommune": "SOUAL" }, { - "codePostal": "76280", - "codeCommune": "76595", - "libelleAcheminement": "ST JOUIN BRUNEVAL", - "nomCommune": "ST JOUIN BRUNEVAL" + "codePostal": "70140", + "codeCommune": "70408", + "libelleAcheminement": "PESMES", + "nomCommune": "PESMES" }, { - "codePostal": "25480", - "codeCommune": "25454", - "libelleAcheminement": "PIREY", - "nomCommune": "PIREY" + "codePostal": "82170", + "codeCommune": "82057", + "libelleAcheminement": "FABAS", + "nomCommune": "FABAS" }, { - "codePostal": "80290", - "codeCommune": "80728", - "libelleAcheminement": "SAULCHOY SOUS POIX", - "nomCommune": "SAULCHOY SOUS POIX" + "codePostal": "72400", + "codeCommune": "72038", + "libelleAcheminement": "BOESSE LE SEC", + "nomCommune": "BOESSE LE SEC" }, { - "codePostal": "82150", - "codeCommune": "82157", - "libelleAcheminement": "ST BEAUZEIL", - "nomCommune": "ST BEAUZEIL" + "codePostal": "81190", + "codeCommune": "81292", + "libelleAcheminement": "TANUS", + "nomCommune": "TANUS" }, { - "codePostal": "76340", - "codeCommune": "76598", - "libelleAcheminement": "ST LEGER AUX BOIS", - "nomCommune": "ST LEGER AUX BOIS" + "codePostal": "70210", + "codeCommune": "70415", + "libelleAcheminement": "POLAINCOURT ET CLAIREFONTAINE", + "nomCommune": "POLAINCOURT ET CLAIREFONTAINE" }, { - "codePostal": "25440", - "codeCommune": "25460", - "libelleAcheminement": "LE VAL", - "nomCommune": "LE VAL" + "codePostal": "82210", + "codeCommune": "82058", + "libelleAcheminement": "FAJOLLES", + "nomCommune": "FAJOLLES" }, { - "codePostal": "80110", - "codeCommune": "80729", - "libelleAcheminement": "SAUVILLERS MONGIVAL", - "nomCommune": "SAUVILLERS MONGIVAL" + "codePostal": "72400", + "codeCommune": "72040", + "libelleAcheminement": "LA BOSSE", + "nomCommune": "LA BOSSE" }, { - "codePostal": "82340", - "codeCommune": "82158", - "libelleAcheminement": "ST CIRICE", - "nomCommune": "ST CIRICE" + "codePostal": "81630", + "codeCommune": "81293", + "libelleAcheminement": "TAURIAC", + "nomCommune": "TAURIAC" }, { - "codePostal": "76340", - "codeCommune": "76612", - "libelleAcheminement": "ST MARTIN AU BOSC", - "nomCommune": "ST MARTIN AU BOSC" + "codePostal": "70240", + "codeCommune": "70416", + "libelleAcheminement": "POMOY", + "nomCommune": "POMOY" }, { - "codePostal": "25440", - "codeCommune": "25460", - "libelleAcheminement": "LE VAL", - "nomCommune": "LE VAL" + "codePostal": "82140", + "codeCommune": "82061", + "libelleAcheminement": "FENEYROLS", + "nomCommune": "FENEYROLS" }, { - "codePostal": "80470", - "codeCommune": "80730", - "libelleAcheminement": "SAVEUSE", - "nomCommune": "SAVEUSE" + "codePostal": "72370", + "codeCommune": "72046", + "libelleAcheminement": "LE BREIL SUR MERIZE", + "nomCommune": "LE BREIL SUR MERIZE" }, { - "codePostal": "82400", - "codeCommune": "82160", - "libelleAcheminement": "ST CLAIR", - "nomCommune": "ST CLAIR" + "codePostal": "81220", + "codeCommune": "81299", + "libelleAcheminement": "TEYSSODE", + "nomCommune": "TEYSSODE" }, { - "codePostal": "76540", - "codeCommune": "76613", - "libelleAcheminement": "ST MARTIN AUX BUNEAUX", - "nomCommune": "ST MARTIN AUX BUNEAUX" + "codePostal": "70130", + "codeCommune": "70418", + "libelleAcheminement": "LA ROMAINE", + "nomCommune": "LA ROMAINE" }, { - "codePostal": "25150", - "codeCommune": "25463", - "libelleAcheminement": "PONT DE ROIDE VERMONDANS", - "nomCommune": "PONT DE ROIDE VERMONDANS" + "codePostal": "82700", + "codeCommune": "82062", + "libelleAcheminement": "FINHAN", + "nomCommune": "FINHAN" }, { - "codePostal": "80240", - "codeCommune": "80737", - "libelleAcheminement": "SOREL", - "nomCommune": "SOREL" + "codePostal": "72470", + "codeCommune": "72054", + "libelleAcheminement": "CHAMPAGNE", + "nomCommune": "CHAMPAGNE" }, { - "codePostal": "82340", - "codeCommune": "82166", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "81500", + "codeCommune": "81318", + "libelleAcheminement": "VILLENEUVE LES LAVAUR", + "nomCommune": "VILLENEUVE LES LAVAUR" }, { - "codePostal": "76133", - "codeCommune": "76615", - "libelleAcheminement": "ST MARTIN DU BEC", - "nomCommune": "ST MARTIN DU BEC" + "codePostal": "70130", + "codeCommune": "70418", + "libelleAcheminement": "LA ROMAINE", + "nomCommune": "LA ROMAINE" }, { - "codePostal": "25240", - "codeCommune": "25464", - "libelleAcheminement": "LES PONTETS", - "nomCommune": "LES PONTETS" + "codePostal": "82230", + "codeCommune": "82066", + "libelleAcheminement": "GENEBRIERES", + "nomCommune": "GENEBRIERES" }, { - "codePostal": "80310", - "codeCommune": "80738", - "libelleAcheminement": "SOUES", - "nomCommune": "SOUES" + "codePostal": "72560", + "codeCommune": "72058", + "libelleAcheminement": "CHANGE", + "nomCommune": "CHANGE" }, { - "codePostal": "82370", - "codeCommune": "82167", - "libelleAcheminement": "ST NAUPHARY", - "nomCommune": "ST NAUPHARY" + "codePostal": "82120", + "codeCommune": "82004", + "libelleAcheminement": "ASQUES", + "nomCommune": "ASQUES" }, { - "codePostal": "76370", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "70170", + "codeCommune": "70421", + "libelleAcheminement": "PORT SUR SAONE", + "nomCommune": "PORT SUR SAONE" }, { - "codePostal": "25110", - "codeCommune": "25465", - "libelleAcheminement": "PONT LES MOULINS", - "nomCommune": "PONT LES MOULINS" + "codePostal": "82400", + "codeCommune": "82073", + "libelleAcheminement": "GOUDOURVILLE", + "nomCommune": "GOUDOURVILLE" }, { - "codePostal": "80200", - "codeCommune": "80741", - "libelleAcheminement": "SOYECOURT", - "nomCommune": "SOYECOURT" + "codePostal": "72800", + "codeCommune": "72060", + "libelleAcheminement": "LA CHAPELLE AUX CHOUX", + "nomCommune": "LA CHAPELLE AUX CHOUX" }, { - "codePostal": "82800", - "codeCommune": "82184", - "libelleAcheminement": "VAISSAC", - "nomCommune": "VAISSAC" + "codePostal": "82500", + "codeCommune": "82006", + "libelleAcheminement": "AUTERIVE", + "nomCommune": "AUTERIVE" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "70100", + "codeCommune": "70422", + "libelleAcheminement": "POYANS", + "nomCommune": "POYANS" }, { - "codePostal": "25410", - "codeCommune": "25466", - "libelleAcheminement": "POUILLEY FRANCAIS", - "nomCommune": "POUILLEY FRANCAIS" + "codePostal": "82170", + "codeCommune": "82075", + "libelleAcheminement": "GRISOLLES", + "nomCommune": "GRISOLLES" }, { - "codePostal": "80240", - "codeCommune": "80747", - "libelleAcheminement": "TEMPLEUX LA FOSSE", - "nomCommune": "TEMPLEUX LA FOSSE" + "codePostal": "72240", + "codeCommune": "72066", + "libelleAcheminement": "LA CHAPELLE ST FRAY", + "nomCommune": "LA CHAPELLE ST FRAY" }, { - "codePostal": "82400", - "codeCommune": "82186", - "libelleAcheminement": "VALENCE D AGEN", - "nomCommune": "VALENCE" + "codePostal": "82220", + "codeCommune": "82007", + "libelleAcheminement": "AUTY", + "nomCommune": "AUTY" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "70170", + "codeCommune": "70426", + "libelleAcheminement": "PROVENCHERE", + "nomCommune": "PROVENCHERE" }, { - "codePostal": "25640", - "codeCommune": "25468", - "libelleAcheminement": "POULIGNEY LUSANS", - "nomCommune": "POULIGNEY LUSANS" + "codePostal": "82240", + "codeCommune": "82078", + "libelleAcheminement": "LABASTIDE DE PENNE", + "nomCommune": "LABASTIDE DE PENNE" }, { - "codePostal": "80200", - "codeCommune": "80750", - "libelleAcheminement": "TERTRY", - "nomCommune": "TERTRY" + "codePostal": "72550", + "codeCommune": "72073", + "libelleAcheminement": "CHAUFOUR NOTRE DAME", + "nomCommune": "CHAUFOUR NOTRE DAME" }, { - "codePostal": "83111", - "codeCommune": "83003", - "libelleAcheminement": "AMPUS", - "nomCommune": "AMPUS" + "codePostal": "82100", + "codeCommune": "82012", + "libelleAcheminement": "LES BARTHES", + "nomCommune": "LES BARTHES" }, { - "codePostal": "76170", - "codeCommune": "76627", - "libelleAcheminement": "ST NICOLAS DE LA TAILLE", - "nomCommune": "ST NICOLAS DE LA TAILLE" + "codePostal": "70160", + "codeCommune": "70427", + "libelleAcheminement": "PURGEROT", + "nomCommune": "PURGEROT" }, { - "codePostal": "25720", - "codeCommune": "25473", - "libelleAcheminement": "PUGEY", - "nomCommune": "PUGEY" + "codePostal": "82100", + "codeCommune": "82080", + "libelleAcheminement": "LABASTIDE DU TEMPLE", + "nomCommune": "LABASTIDE DU TEMPLE" }, { - "codePostal": "80440", - "codeCommune": "80752", - "libelleAcheminement": "THEZY GLIMONT", - "nomCommune": "THEZY GLIMONT" + "codePostal": "72200", + "codeCommune": "72084", + "libelleAcheminement": "CLERMONT CREANS", + "nomCommune": "CLERMONT CREANS" }, { - "codePostal": "83630", - "codeCommune": "83005", - "libelleAcheminement": "ARTIGNOSC SUR VERDON", - "nomCommune": "ARTIGNOSC SUR VERDON" + "codePostal": "82170", + "codeCommune": "82017", + "libelleAcheminement": "BESSENS", + "nomCommune": "BESSENS" }, { - "codePostal": "76540", - "codeCommune": "76637", - "libelleAcheminement": "ST PIERRE EN PORT", - "nomCommune": "ST PIERRE EN PORT" + "codePostal": "70000", + "codeCommune": "70433", + "libelleAcheminement": "QUINCEY", + "nomCommune": "QUINCEY" }, { - "codePostal": "25430", - "codeCommune": "25476", - "libelleAcheminement": "RAHON", - "nomCommune": "RAHON" + "codePostal": "82120", + "codeCommune": "82083", + "libelleAcheminement": "LACHAPELLE", + "nomCommune": "LACHAPELLE" }, { - "codePostal": "80640", - "codeCommune": "80754", - "libelleAcheminement": "THIEULLOY L ABBAYE", - "nomCommune": "THIEULLOY L ABBAYE" + "codePostal": "72290", + "codeCommune": "72088", + "libelleAcheminement": "CONGE SUR ORNE", + "nomCommune": "CONGE SUR ORNE" }, { - "codePostal": "83630", - "codeCommune": "83007", - "libelleAcheminement": "AUPS", - "nomCommune": "AUPS" + "codePostal": "82210", + "codeCommune": "82031", + "libelleAcheminement": "CASTELMAYRAN", + "nomCommune": "CASTELMAYRAN" }, { - "codePostal": "76740", - "codeCommune": "76642", - "libelleAcheminement": "ST PIERRE LE VIGER", - "nomCommune": "ST PIERRE LE VIGER" + "codePostal": "70280", + "codeCommune": "70435", + "libelleAcheminement": "RADDON ET CHAPENDU", + "nomCommune": "RADDON ET CHAPENDU" }, { - "codePostal": "25250", - "codeCommune": "25479", - "libelleAcheminement": "RANG", - "nomCommune": "RANG" + "codePostal": "82240", + "codeCommune": "82095", + "libelleAcheminement": "LAVAURETTE", + "nomCommune": "LAVAURETTE" }, { - "codePostal": "80210", - "codeCommune": "80765", - "libelleAcheminement": "TOURS EN VIMEU", - "nomCommune": "TOURS EN VIMEU" + "codePostal": "72400", + "codeCommune": "72093", + "libelleAcheminement": "CORMES", + "nomCommune": "CORMES" }, { - "codePostal": "83600", - "codeCommune": "83008", - "libelleAcheminement": "BAGNOLS EN FORET", - "nomCommune": "BAGNOLS EN FORET" + "codePostal": "82100", + "codeCommune": "82033", + "libelleAcheminement": "CASTELSARRASIN", + "nomCommune": "CASTELSARRASIN" }, { - "codePostal": "76430", - "codeCommune": "76647", - "libelleAcheminement": "ST ROMAIN DE COLBOSC", - "nomCommune": "ST ROMAIN DE COLBOSC" + "codePostal": "70180", + "codeCommune": "70448", + "libelleAcheminement": "ROCHE ET RAUCOURT", + "nomCommune": "ROCHE ET RAUCOURT" }, { - "codePostal": "25170", - "codeCommune": "25482", - "libelleAcheminement": "RECOLOGNE", - "nomCommune": "RECOLOGNE" + "codePostal": "82290", + "codeCommune": "82096", + "libelleAcheminement": "LA VILLE DIEU DU TEMPLE", + "nomCommune": "LA VILLE DIEU DU TEMPLE" }, { - "codePostal": "80560", - "codeCommune": "80766", - "libelleAcheminement": "TOUTENCOURT", - "nomCommune": "TOUTENCOURT" + "codePostal": "72190", + "codeCommune": "72095", + "libelleAcheminement": "COULAINES", + "nomCommune": "COULAINES" }, { - "codePostal": "83840", - "codeCommune": "83010", - "libelleAcheminement": "BARGEME", - "nomCommune": "BARGEME" + "codePostal": "82500", + "codeCommune": "82055", + "libelleAcheminement": "ESPARSAC", + "nomCommune": "ESPARSAC" }, { - "codePostal": "76110", - "codeCommune": "76650", - "libelleAcheminement": "ST SAUVEUR D EMALLEVILLE", - "nomCommune": "ST SAUVEUR D EMALLEVILLE" + "codePostal": "70250", + "codeCommune": "70451", + "libelleAcheminement": "RONCHAMP", + "nomCommune": "RONCHAMP" }, { - "codePostal": "25240", - "codeCommune": "25483", - "libelleAcheminement": "RECULFOZ", - "nomCommune": "RECULFOZ" + "codePostal": "82120", + "codeCommune": "82097", + "libelleAcheminement": "LAVIT", + "nomCommune": "LAVIT" }, { - "codePostal": "80300", - "codeCommune": "80769", - "libelleAcheminement": "TREUX", - "nomCommune": "TREUX" + "codePostal": "72140", + "codeCommune": "72109", + "libelleAcheminement": "CRISSE", + "nomCommune": "CRISSE" }, { - "codePostal": "83670", - "codeCommune": "83012", - "libelleAcheminement": "BARJOLS", - "nomCommune": "BARJOLS" + "codePostal": "82500", + "codeCommune": "82071", + "libelleAcheminement": "GOAS", + "nomCommune": "GOAS" }, { - "codePostal": "76460", - "codeCommune": "76651", - "libelleAcheminement": "ST SYLVAIN", - "nomCommune": "ST SYLVAIN" + "codePostal": "70500", + "codeCommune": "70454", + "libelleAcheminement": "ROSIERES SUR MANCE", + "nomCommune": "ROSIERES SUR MANCE" }, { - "codePostal": "25150", - "codeCommune": "25485", - "libelleAcheminement": "REMONDANS VAIVRE", - "nomCommune": "REMONDANS VAIVRE" + "codePostal": "82120", + "codeCommune": "82102", + "libelleAcheminement": "MANSONVILLE", + "nomCommune": "MANSONVILLE" }, { - "codePostal": "80800", - "codeCommune": "80774", - "libelleAcheminement": "VAIRE SOUS CORBIE", - "nomCommune": "VAIRE SOUS CORBIE" + "codePostal": "72240", + "codeCommune": "72111", + "libelleAcheminement": "CURES", + "nomCommune": "CURES" }, { - "codePostal": "83630", - "codeCommune": "83015", - "libelleAcheminement": "BAUDUEN", - "nomCommune": "BAUDUEN" + "codePostal": "82400", + "codeCommune": "82072", + "libelleAcheminement": "GOLFECH", + "nomCommune": "GOLFECH" }, { - "codePostal": "76450", - "codeCommune": "76653", - "libelleAcheminement": "ST VAAST DIEPPEDALLE", - "nomCommune": "ST VAAST DIEPPEDALLE" + "codePostal": "70110", + "codeCommune": "70462", + "libelleAcheminement": "ST FERJEUX", + "nomCommune": "ST FERJEUX" }, { - "codePostal": "25340", - "codeCommune": "25496", - "libelleAcheminement": "ROCHE LES CLERVAL", - "nomCommune": "ROCHE LES CLERVAL" + "codePostal": "82500", + "codeCommune": "82106", + "libelleAcheminement": "MAUBEC", + "nomCommune": "MAUBEC" }, { - "codePostal": "80131", - "codeCommune": "80781", - "libelleAcheminement": "VAUVILLERS", - "nomCommune": "VAUVILLERS" + "codePostal": "72270", + "codeCommune": "72123", + "libelleAcheminement": "DUREIL", + "nomCommune": "DUREIL" }, { - "codePostal": "83330", - "codeCommune": "83016", - "libelleAcheminement": "LE BEAUSSET", - "nomCommune": "LE BEAUSSET" + "codePostal": "82220", + "codeCommune": "82077", + "libelleAcheminement": "LABARTHE", + "nomCommune": "LABARTHE" }, { - "codePostal": "76460", - "codeCommune": "76655", - "libelleAcheminement": "ST VALERY EN CAUX", - "nomCommune": "ST VALERY EN CAUX" + "codePostal": "70500", + "codeCommune": "70468", + "libelleAcheminement": "ST MARCEL", + "nomCommune": "ST MARCEL" }, { - "codePostal": "25440", - "codeCommune": "25500", - "libelleAcheminement": "RONCHAUX", - "nomCommune": "RONCHAUX" + "codePostal": "82120", + "codeCommune": "82107", + "libelleAcheminement": "MAUMUSSON", + "nomCommune": "MAUMUSSON" }, { - "codePostal": "80140", - "codeCommune": "80783", - "libelleAcheminement": "VAUX MARQUENNEVILLE", - "nomCommune": "VAUX MARQUENNEVILLE" + "codePostal": "72220", + "codeCommune": "72124", + "libelleAcheminement": "ECOMMOY", + "nomCommune": "ECOMMOY" }, { - "codePostal": "83890", - "codeCommune": "83018", - "libelleAcheminement": "BESSE SUR ISSOLE", - "nomCommune": "BESSE SUR ISSOLE" + "codePostal": "82370", + "codeCommune": "82079", + "libelleAcheminement": "LABASTIDE ST PIERRE", + "nomCommune": "LABASTIDE ST PIERRE" }, { - "codePostal": "76430", - "codeCommune": "76660", - "libelleAcheminement": "SANDOUVILLE", - "nomCommune": "SANDOUVILLE" + "codePostal": "70310", + "codeCommune": "70469", + "libelleAcheminement": "STE MARIE EN CHANOIS", + "nomCommune": "STE MARIE EN CHANOIS" }, { - "codePostal": "25410", - "codeCommune": "25502", - "libelleAcheminement": "ROSET FLUANS", - "nomCommune": "ROSET FLUANS" + "codePostal": "82270", + "codeCommune": "82119", + "libelleAcheminement": "MONTALZAT", + "nomCommune": "MONTALZAT" }, { - "codePostal": "80160", - "codeCommune": "80786", - "libelleAcheminement": "VELENNES", - "nomCommune": "VELENNES" + "codePostal": "72120", + "codeCommune": "72128", + "libelleAcheminement": "VAL D ETANGSON", + "nomCommune": "VAL D ETANGSON" }, { - "codePostal": "83340", - "codeCommune": "83031", - "libelleAcheminement": "LE CANNET DES MAURES", - "nomCommune": "LE CANNET DES MAURES" + "codePostal": "82290", + "codeCommune": "82085", + "libelleAcheminement": "LACOURT ST PIERRE", + "nomCommune": "LACOURT ST PIERRE" }, { - "codePostal": "76450", - "codeCommune": "76664", - "libelleAcheminement": "SASSEVILLE", - "nomCommune": "SASSEVILLE" + "codePostal": "70110", + "codeCommune": "70474", + "libelleAcheminement": "ST SULPICE", + "nomCommune": "ST SULPICE" }, { - "codePostal": "25190", - "codeCommune": "25503", - "libelleAcheminement": "ROSIERES SUR BARBECHE", - "nomCommune": "ROSIERES SUR BARBECHE" + "codePostal": "82120", + "codeCommune": "82129", + "libelleAcheminement": "MONTGAILLARD", + "nomCommune": "MONTGAILLARD" }, { - "codePostal": "80270", - "codeCommune": "80788", - "libelleAcheminement": "VERGIES", - "nomCommune": "VERGIES" + "codePostal": "72470", + "codeCommune": "72129", + "libelleAcheminement": "FATINES", + "nomCommune": "FATINES" }, { - "codePostal": "83330", - "codeCommune": "83035", - "libelleAcheminement": "LE CASTELLET", - "nomCommune": "LE CASTELLET" + "codePostal": "82360", + "codeCommune": "82089", + "libelleAcheminement": "LAMAGISTERE", + "nomCommune": "LAMAGISTERE" }, { - "codePostal": "76630", - "codeCommune": "76665", - "libelleAcheminement": "SAUCHAY", - "nomCommune": "SAUCHAY" + "codePostal": "70140", + "codeCommune": "70480", + "libelleAcheminement": "SAUVIGNEY LES PESMES", + "nomCommune": "SAUVIGNEY LES PESMES" }, { - "codePostal": "25640", - "codeCommune": "25508", - "libelleAcheminement": "ROULANS", - "nomCommune": "ROULANS" + "codePostal": "82120", + "codeCommune": "82143", + "libelleAcheminement": "POUPAS", + "nomCommune": "POUPAS" }, { - "codePostal": "80420", - "codeCommune": "80795", - "libelleAcheminement": "VILLE LE MARCLET", - "nomCommune": "VILLE LE MARCLET" + "codePostal": "72210", + "codeCommune": "72133", + "libelleAcheminement": "FILLE SUR SARTHE", + "nomCommune": "FILLE" }, { - "codePostal": "83300", - "codeCommune": "83038", - "libelleAcheminement": "CHATEAUDOUBLE", - "nomCommune": "CHATEAUDOUBLE" + "codePostal": "82500", + "codeCommune": "82091", + "libelleAcheminement": "LAMOTHE CUMONT", + "nomCommune": "LAMOTHE CUMONT" }, { - "codePostal": "76110", - "codeCommune": "76669", - "libelleAcheminement": "SAUSSEUZEMARE EN CAUX", - "nomCommune": "SAUSSEUZEMARE EN CAUX" + "codePostal": "70240", + "codeCommune": "70490", + "libelleAcheminement": "SERVIGNEY", + "nomCommune": "SERVIGNEY" }, { - "codePostal": "25290", - "codeCommune": "25511", - "libelleAcheminement": "RUREY", - "nomCommune": "RUREY" + "codePostal": "82110", + "codeCommune": "82164", + "libelleAcheminement": "STE JULIETTE", + "nomCommune": "STE JULIETTE" }, { - "codePostal": "80500", - "codeCommune": "80805", - "libelleAcheminement": "VILLERS TOURNELLE", - "nomCommune": "VILLERS TOURNELLE" + "codePostal": "72330", + "codeCommune": "72135", + "libelleAcheminement": "LA FONTAINE ST MARTIN", + "nomCommune": "LA FONTAINE ST MARTIN" }, { - "codePostal": "83310", - "codeCommune": "83042", - "libelleAcheminement": "COGOLIN", - "nomCommune": "COGOLIN" + "codePostal": "82160", + "codeCommune": "82100", + "libelleAcheminement": "LOZE", + "nomCommune": "LOZE" }, { - "codePostal": "76690", - "codeCommune": "76675", - "libelleAcheminement": "SIERVILLE", - "nomCommune": "SIERVILLE" + "codePostal": "70130", + "codeCommune": "70491", + "libelleAcheminement": "SEVEUX MOTEY", + "nomCommune": "SEVEUX MOTEY" }, { - "codePostal": "25210", - "codeCommune": "25512", - "libelleAcheminement": "LE RUSSEY", - "nomCommune": "LE RUSSEY" + "codePostal": "82340", + "codeCommune": "82166", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "80300", - "codeCommune": "80807", - "libelleAcheminement": "VILLE SUR ANCRE", - "nomCommune": "VILLE SUR ANCRE" + "codePostal": "72600", + "codeCommune": "72137", + "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", + "nomCommune": "VILLENEUVE EN PERSEIGNE" }, { - "codePostal": "83840", - "codeCommune": "83044", - "libelleAcheminement": "COMPS SUR ARTUBY", - "nomCommune": "COMPS SUR ARTUBY" + "codePostal": "82200", + "codeCommune": "82101", + "libelleAcheminement": "MALAUSE", + "nomCommune": "MALAUSE" }, { - "codePostal": "76780", - "codeCommune": "76676", - "libelleAcheminement": "SIGY EN BRAY", - "nomCommune": "SIGY EN BRAY" + "codePostal": "70130", + "codeCommune": "70492", + "libelleAcheminement": "SOING CUBRY CHARENTENAY", + "nomCommune": "SOING CUBRY CHARENTENAY" }, { - "codePostal": "25270", - "codeCommune": "25513", - "libelleAcheminement": "STE ANNE", - "nomCommune": "STE ANNE" + "codePostal": "82190", + "codeCommune": "82168", + "libelleAcheminement": "ST NAZAIRE DE VALENTANE", + "nomCommune": "ST NAZAIRE DE VALENTANE" }, { - "codePostal": "80460", - "codeCommune": "80826", - "libelleAcheminement": "WOIGNARUE", - "nomCommune": "WOIGNARUE" + "codePostal": "72600", + "codeCommune": "72137", + "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", + "nomCommune": "VILLENEUVE EN PERSEIGNE" }, { - "codePostal": "83390", - "codeCommune": "83049", - "libelleAcheminement": "CUERS", - "nomCommune": "CUERS" + "codePostal": "82500", + "codeCommune": "82103", + "libelleAcheminement": "MARIGNAC", + "nomCommune": "MARIGNAC" }, { - "codePostal": "76300", - "codeCommune": "76681", - "libelleAcheminement": "SOTTEVILLE LES ROUEN", - "nomCommune": "SOTTEVILLE LES ROUEN" + "codePostal": "70190", + "codeCommune": "70493", + "libelleAcheminement": "SORANS LES BREUREY", + "nomCommune": "SORANS LES BREUREY" }, { - "codePostal": "25300", - "codeCommune": "25515", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "82400", + "codeCommune": "82170", + "libelleAcheminement": "ST PAUL D ESPIS", + "nomCommune": "ST PAUL D ESPIS" }, { - "codePostal": "80520", - "codeCommune": "80834", - "libelleAcheminement": "YZENGREMER", - "nomCommune": "YZENGREMER" + "codePostal": "72610", + "codeCommune": "72137", + "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", + "nomCommune": "VILLENEUVE EN PERSEIGNE" }, { - "codePostal": "83300", - "codeCommune": "83050", - "libelleAcheminement": "DRAGUIGNAN", - "nomCommune": "DRAGUIGNAN" + "codePostal": "82110", + "codeCommune": "82116", + "libelleAcheminement": "MONTAGUDET", + "nomCommune": "MONTAGUDET" }, { - "codePostal": "76410", - "codeCommune": "76682", - "libelleAcheminement": "SOTTEVILLE SOUS LE VAL", - "nomCommune": "SOTTEVILLE SOUS LE VAL" + "codePostal": "70150", + "codeCommune": "70509", + "libelleAcheminement": "TROMAREY", + "nomCommune": "TROMAREY" }, { - "codePostal": "25190", - "codeCommune": "25519", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "82300", + "codeCommune": "82174", + "libelleAcheminement": "ST VINCENT D AUTEJAC", + "nomCommune": "ST VINCENT D AUTEJAC" }, { - "codePostal": "81170", - "codeCommune": "81009", - "libelleAcheminement": "AMARENS", - "nomCommune": "AMARENS" + "codePostal": "72130", + "codeCommune": "72138", + "libelleAcheminement": "FRESNAY SUR SARTHE", + "nomCommune": "FRESNAY SUR SARTHE" }, { - "codePostal": "83330", - "codeCommune": "83053", - "libelleAcheminement": "EVENOS", - "nomCommune": "EVENOS" + "codePostal": "82000", + "codeCommune": "82121", + "libelleAcheminement": "MONTAUBAN", + "nomCommune": "MONTAUBAN" }, { - "codePostal": "76540", - "codeCommune": "76688", - "libelleAcheminement": "THIERGEVILLE", - "nomCommune": "THIERGEVILLE" + "codePostal": "70210", + "codeCommune": "70526", + "libelleAcheminement": "VAUVILLERS", + "nomCommune": "VAUVILLERS" }, { - "codePostal": "25260", - "codeCommune": "25524", - "libelleAcheminement": "ST MAURICE COLOMBIER", - "nomCommune": "ST MAURICE COLOMBIER" + "codePostal": "82600", + "codeCommune": "82178", + "libelleAcheminement": "SAVENES", + "nomCommune": "SAVENES" }, { - "codePostal": "81700", - "codeCommune": "81015", - "libelleAcheminement": "APPELLE", - "nomCommune": "APPELLE" + "codePostal": "72610", + "codeCommune": "72139", + "libelleAcheminement": "FYE", + "nomCommune": "FYE" }, { - "codePostal": "83340", - "codeCommune": "83057", - "libelleAcheminement": "FLASSANS SUR ISSOLE", - "nomCommune": "FLASSANS SUR ISSOLE" + "codePostal": "82110", + "codeCommune": "82122", + "libelleAcheminement": "MONTBARLA", + "nomCommune": "MONTBARLA" }, { - "codePostal": "76450", - "codeCommune": "76692", - "libelleAcheminement": "THIOUVILLE", - "nomCommune": "THIOUVILLE" + "codePostal": "70700", + "codeCommune": "70527", + "libelleAcheminement": "VAUX LE MONCELOT", + "nomCommune": "VAUX LE MONCELOT" }, { - "codePostal": "25440", - "codeCommune": "25528", - "libelleAcheminement": "SAMSON", - "nomCommune": "SAMSON" + "codePostal": "82240", + "codeCommune": "82179", + "libelleAcheminement": "SEPTFONDS", + "nomCommune": "SEPTFONDS" }, { - "codePostal": "81160", - "codeCommune": "81018", - "libelleAcheminement": "ARTHES", - "nomCommune": "ARTHES" + "codePostal": "72300", + "codeCommune": "72151", + "libelleAcheminement": "JUIGNE SUR SARTHE", + "nomCommune": "JUIGNE SUR SARTHE" }, { - "codePostal": "83590", - "codeCommune": "83067", - "libelleAcheminement": "GONFARON", - "nomCommune": "GONFARON" + "codePostal": "82700", + "codeCommune": "82125", + "libelleAcheminement": "MONTECH", + "nomCommune": "MONTECH" }, { - "codePostal": "76910", - "codeCommune": "76703", - "libelleAcheminement": "TOUFFREVILLE SUR EU", - "nomCommune": "TOUFFREVILLE SUR EU" + "codePostal": "70000", + "codeCommune": "70536", + "libelleAcheminement": "VELLE LE CHATEL", + "nomCommune": "VELLE LE CHATEL" }, { - "codePostal": "25230", - "codeCommune": "25539", - "libelleAcheminement": "SELONCOURT", - "nomCommune": "SELONCOURT" + "codePostal": "82190", + "codeCommune": "82182", + "libelleAcheminement": "TOUFFAILLES", + "nomCommune": "TOUFFAILLES" }, { - "codePostal": "81200", - "codeCommune": "81021", - "libelleAcheminement": "AUSSILLON", - "nomCommune": "AUSSILLON" + "codePostal": "72200", + "codeCommune": "72154", + "libelleAcheminement": "LA FLECHE", + "nomCommune": "LA FLECHE" }, { - "codePostal": "83250", - "codeCommune": "83071", - "libelleAcheminement": "LA LONDE LES MAURES", - "nomCommune": "LA LONDE LES MAURES" + "codePostal": "82300", + "codeCommune": "82126", + "libelleAcheminement": "MONTEILS", + "nomCommune": "MONTEILS" }, { - "codePostal": "76550", - "codeCommune": "76707", - "libelleAcheminement": "TOURVILLE SUR ARQUES", - "nomCommune": "TOURVILLE SUR ARQUES" + "codePostal": "70700", + "codeCommune": "70538", + "libelleAcheminement": "VELLEMOZ", + "nomCommune": "VELLEMOZ" }, { - "codePostal": "25750", - "codeCommune": "25540", - "libelleAcheminement": "SEMONDANS", - "nomCommune": "SEMONDANS" + "codePostal": "82800", + "codeCommune": "82184", + "libelleAcheminement": "VAISSAC", + "nomCommune": "VAISSAC" }, { - "codePostal": "81700", - "codeCommune": "81030", - "libelleAcheminement": "BERTRE", - "nomCommune": "BERTRE" + "codePostal": "72500", + "codeCommune": "72160", + "libelleAcheminement": "LAVERNAT", + "nomCommune": "LAVERNAT" }, { - "codePostal": "83340", - "codeCommune": "83075", - "libelleAcheminement": "LES MAYONS", - "nomCommune": "LES MAYONS" + "codePostal": "82160", + "codeCommune": "82133", + "libelleAcheminement": "MOUILLAC", + "nomCommune": "MOUILLAC" }, { - "codePostal": "76580", - "codeCommune": "76709", - "libelleAcheminement": "LE TRAIT", - "nomCommune": "LE TRAIT" + "codePostal": "70700", + "codeCommune": "70540", + "libelleAcheminement": "VELLOREILLE LES CHOYE", + "nomCommune": "VELLOREILLE LES CHOYE" }, { - "codePostal": "25620", - "codeCommune": "25558", - "libelleAcheminement": "TARCENAY FOUCHERANS", - "nomCommune": "TARCENAY FOUCHERANS" + "codePostal": "82220", + "codeCommune": "82189", + "libelleAcheminement": "VAZERAC", + "nomCommune": "VAZERAC" }, { - "codePostal": "81600", - "codeCommune": "81038", - "libelleAcheminement": "BRENS", - "nomCommune": "BRENS" + "codePostal": "72610", + "codeCommune": "72164", + "libelleAcheminement": "LIVET EN SAOSNOIS", + "nomCommune": "LIVET EN SAOSNOIS" }, { - "codePostal": "83136", - "codeCommune": "83077", - "libelleAcheminement": "MEOUNES LES MONTRIEUX", - "nomCommune": "MEOUNES LES MONTRIEUX" + "codePostal": "82240", + "codeCommune": "82148", + "libelleAcheminement": "PUYLAROQUE", + "nomCommune": "PUYLAROQUE" }, { - "codePostal": "76170", - "codeCommune": "76712", - "libelleAcheminement": "LA TRINITE DU MONT", - "nomCommune": "LA TRINITE DU MONT" + "codePostal": "70200", + "codeCommune": "70544", + "libelleAcheminement": "LA VERGENNE", + "nomCommune": "LA VERGENNE" }, { - "codePostal": "25320", - "codeCommune": "25561", - "libelleAcheminement": "THORAISE", - "nomCommune": "THORAISE" + "codePostal": "83460", + "codeCommune": "83004", + "libelleAcheminement": "LES ARCS", + "nomCommune": "LES ARCS" }, { - "codePostal": "81300", - "codeCommune": "81043", - "libelleAcheminement": "BUSQUE", - "nomCommune": "BUSQUE" + "codePostal": "72300", + "codeCommune": "72167", + "libelleAcheminement": "LOUAILLES", + "nomCommune": "LOUAILLES" }, { - "codePostal": "83490", - "codeCommune": "83086", - "libelleAcheminement": "LE MUY", - "nomCommune": "LE MUY" + "codePostal": "82370", + "codeCommune": "82167", + "libelleAcheminement": "ST NAUPHARY", + "nomCommune": "ST NAUPHARY" }, { - "codePostal": "76210", - "codeCommune": "76715", - "libelleAcheminement": "TROUVILLE", - "nomCommune": "TROUVILLE" + "codePostal": "70400", + "codeCommune": "70547", + "libelleAcheminement": "VERLANS", + "nomCommune": "VERLANS" }, { - "codePostal": "25320", - "codeCommune": "25564", - "libelleAcheminement": "TORPES", - "nomCommune": "TORPES" + "codePostal": "83600", + "codeCommune": "83008", + "libelleAcheminement": "BAGNOLS EN FORET", + "nomCommune": "BAGNOLS EN FORET" }, { - "codePostal": "81580", - "codeCommune": "81054", - "libelleAcheminement": "CAMBOUNET SUR LE SOR", - "nomCommune": "CAMBOUNET SUR LE SOR" + "codePostal": "72270", + "codeCommune": "72179", + "libelleAcheminement": "MALICORNE SUR SARTHE", + "nomCommune": "MALICORNE SUR SARTHE" }, { - "codePostal": "83136", - "codeCommune": "83088", - "libelleAcheminement": "NEOULES", - "nomCommune": "NEOULES" + "codePostal": "82210", + "codeCommune": "82169", + "libelleAcheminement": "ST NICOLAS DE LA GRAVE", + "nomCommune": "ST NICOLAS DE LA GRAVE" }, { - "codePostal": "76119", - "codeCommune": "76720", - "libelleAcheminement": "VARENGEVILLE SUR MER", - "nomCommune": "VARENGEVILLE SUR MER" + "codePostal": "70160", + "codeCommune": "70555", + "libelleAcheminement": "LA VILLEDIEU EN FONTENETTE", + "nomCommune": "LA VILLEDIEU EN FONTENETTE" }, { - "codePostal": "25680", - "codeCommune": "25572", - "libelleAcheminement": "TROUVANS", - "nomCommune": "TROUVANS" + "codePostal": "83150", + "codeCommune": "83009", + "libelleAcheminement": "BANDOL", + "nomCommune": "BANDOL" }, { - "codePostal": "81990", - "codeCommune": "81059", - "libelleAcheminement": "CARLUS", - "nomCommune": "CARLUS" + "codePostal": "72260", + "codeCommune": "72189", + "libelleAcheminement": "MAROLLES LES BRAULTS", + "nomCommune": "MAROLLES LES BRAULTS" }, { - "codePostal": "83190", - "codeCommune": "83090", - "libelleAcheminement": "OLLIOULES", - "nomCommune": "OLLIOULES" + "codePostal": "82400", + "codeCommune": "82186", + "libelleAcheminement": "VALENCE D AGEN", + "nomCommune": "VALENCE" }, { - "codePostal": "76340", - "codeCommune": "76744", - "libelleAcheminement": "VILLERS SOUS FOUCARMONT", - "nomCommune": "VILLERS SOUS FOUCARMONT" + "codePostal": "70310", + "codeCommune": "70573", + "libelleAcheminement": "LA VOIVRE", + "nomCommune": "LA VOIVRE" }, { - "codePostal": "25340", - "codeCommune": "25574", - "libelleAcheminement": "UZELLE", - "nomCommune": "UZELLE" + "codePostal": "83210", + "codeCommune": "83017", + "libelleAcheminement": "BELGENTIER", + "nomCommune": "BELGENTIER" }, { - "codePostal": "81260", - "codeCommune": "81062", - "libelleAcheminement": "FONTRIEU", - "nomCommune": "FONTRIEU" + "codePostal": "72170", + "codeCommune": "72199", + "libelleAcheminement": "MOITRON SUR SARTHE", + "nomCommune": "MOITRON SUR SARTHE" }, { - "codePostal": "83670", - "codeCommune": "83095", - "libelleAcheminement": "PONTEVES", - "nomCommune": "PONTEVES" + "codePostal": "82370", + "codeCommune": "82188", + "libelleAcheminement": "VARENNES", + "nomCommune": "VARENNES" }, { - "codePostal": "76450", - "codeCommune": "76748", - "libelleAcheminement": "VITTEFLEUR", - "nomCommune": "VITTEFLEUR" + "codePostal": "70200", + "codeCommune": "70577", + "libelleAcheminement": "VOUHENANS", + "nomCommune": "VOUHENANS" }, { - "codePostal": "25360", - "codeCommune": "25590", - "libelleAcheminement": "VAUDRIVILLERS", - "nomCommune": "VAUDRIVILLERS" + "codePostal": "83890", + "codeCommune": "83018", + "libelleAcheminement": "BESSE SUR ISSOLE", + "nomCommune": "BESSE SUR ISSOLE" }, { - "codePostal": "81150", - "codeCommune": "81063", - "libelleAcheminement": "CASTELNAU DE LEVIS", - "nomCommune": "CASTELNAU DE LEVIS" + "codePostal": "72320", + "codeCommune": "72208", + "libelleAcheminement": "MONTMIRAIL", + "nomCommune": "MONTMIRAIL" }, { - "codePostal": "83910", - "codeCommune": "83097", - "libelleAcheminement": "POURRIERES", - "nomCommune": "POURRIERES" + "codePostal": "82330", + "codeCommune": "82191", + "libelleAcheminement": "VERFEIL SUR SEYE", + "nomCommune": "VERFEIL" }, { - "codePostal": "76540", - "codeCommune": "76755", - "libelleAcheminement": "YPREVILLE BIVILLE", - "nomCommune": "YPREVILLE BIVILLE" + "codePostal": "70150", + "codeCommune": "70578", + "libelleAcheminement": "VREGILLE", + "nomCommune": "VREGILLE" }, { - "codePostal": "25430", - "codeCommune": "25595", - "libelleAcheminement": "VELLEROT LES BELVOIR", - "nomCommune": "VELLEROT LES BELVOIR" + "codePostal": "83119", + "codeCommune": "83025", + "libelleAcheminement": "BRUE AURIAC", + "nomCommune": "BRUE AURIAC" }, { - "codePostal": "81170", - "codeCommune": "81095", - "libelleAcheminement": "FRAUSSEILLES", - "nomCommune": "FRAUSSEILLES" + "codePostal": "72230", + "codeCommune": "72213", + "libelleAcheminement": "MULSANNE", + "nomCommune": "MULSANNE" }, { - "codePostal": "13780", - "codeCommune": "83105", - "libelleAcheminement": "RIBOUX", - "nomCommune": "RIBOUX" + "codePostal": "82230", + "codeCommune": "82192", + "libelleAcheminement": "VERLHAC TESCOU", + "nomCommune": "VERLHAC TESCOU" }, { - "codePostal": "76560", - "codeCommune": "76757", - "libelleAcheminement": "YVECRIQUE", - "nomCommune": "YVECRIQUE" + "codePostal": "71370", + "codeCommune": "71002", + "libelleAcheminement": "L ABERGEMENT STE COLOMBE", + "nomCommune": "L ABERGEMENT STE COLOMBE" }, { - "codePostal": "25390", - "codeCommune": "25600", - "libelleAcheminement": "VENNES", - "nomCommune": "VENNES" + "codePostal": "83740", + "codeCommune": "83027", + "libelleAcheminement": "LA CADIERE D AZUR", + "nomCommune": "LA CADIERE D AZUR" }, { - "codePostal": "81430", - "codeCommune": "81096", - "libelleAcheminement": "LE FRAYSSE", - "nomCommune": "LE FRAYSSE" + "codePostal": "72240", + "codeCommune": "72216", + "libelleAcheminement": "NEUVILLALAIS", + "nomCommune": "NEUVILLALAIS" }, { - "codePostal": "83270", - "codeCommune": "83112", - "libelleAcheminement": "ST CYR SUR MER", - "nomCommune": "ST CYR SUR MER" + "codePostal": "82500", + "codeCommune": "82193", + "libelleAcheminement": "VIGUERON", + "nomCommune": "VIGUERON" }, { - "codePostal": "77410", - "codeCommune": "77005", - "libelleAcheminement": "ANNET SUR MARNE", - "nomCommune": "ANNET SUR MARNE" + "codePostal": "71460", + "codeCommune": "71007", + "libelleAcheminement": "AMEUGNY", + "nomCommune": "AMEUGNY" }, { - "codePostal": "25310", - "codeCommune": "25615", - "libelleAcheminement": "VILLARS LES BLAMONT", - "nomCommune": "VILLARS LES BLAMONT" + "codePostal": "83300", + "codeCommune": "83038", + "libelleAcheminement": "CHATEAUDOUBLE", + "nomCommune": "CHATEAUDOUBLE" }, { - "codePostal": "81570", - "codeCommune": "81098", - "libelleAcheminement": "FREJEVILLE", - "nomCommune": "FREJEVILLE" + "codePostal": "72330", + "codeCommune": "72226", + "libelleAcheminement": "OIZE", + "nomCommune": "OIZE" }, { - "codePostal": "83440", - "codeCommune": "83117", - "libelleAcheminement": "ST PAUL EN FORET", - "nomCommune": "ST PAUL EN FORET" + "codePostal": "83630", + "codeCommune": "83005", + "libelleAcheminement": "ARTIGNOSC SUR VERDON", + "nomCommune": "ARTIGNOSC SUR VERDON" }, { - "codePostal": "77630", - "codeCommune": "77006", - "libelleAcheminement": "ARBONNE LA FORET", - "nomCommune": "ARBONNE LA FORET" + "codePostal": "71540", + "codeCommune": "71020", + "libelleAcheminement": "BARNAY", + "nomCommune": "BARNAY" }, { - "codePostal": "68210", - "codeCommune": "68336", - "libelleAcheminement": "TRAUBACH LE BAS", - "nomCommune": "TRAUBACH LE BAS" + "codePostal": "83670", + "codeCommune": "83039", + "libelleAcheminement": "CHATEAUVERT", + "nomCommune": "CHATEAUVERT" }, { - "codePostal": "81190", - "codeCommune": "81110", - "libelleAcheminement": "JOUQUEVIEL", - "nomCommune": "JOUQUEVIEL" + "codePostal": "72300", + "codeCommune": "72228", + "libelleAcheminement": "PARCE SUR SARTHE", + "nomCommune": "PARCE SUR SARTHE" }, { - "codePostal": "83700", - "codeCommune": "83118", - "libelleAcheminement": "ST RAPHAEL", - "nomCommune": "ST RAPHAEL" + "codePostal": "83830", + "codeCommune": "83011", + "libelleAcheminement": "BARGEMON", + "nomCommune": "BARGEMON" }, { - "codePostal": "77440", - "codeCommune": "77008", - "libelleAcheminement": "ARMENTIERES EN BRIE", - "nomCommune": "ARMENTIERES EN BRIE" + "codePostal": "71120", + "codeCommune": "71021", + "libelleAcheminement": "BARON", + "nomCommune": "BARON" }, { - "codePostal": "68230", - "codeCommune": "68338", - "libelleAcheminement": "TURCKHEIM", - "nomCommune": "TURCKHEIM" + "codePostal": "83840", + "codeCommune": "83040", + "libelleAcheminement": "CHATEAUVIEUX", + "nomCommune": "CHATEAUVIEUX" }, { - "codePostal": "81290", - "codeCommune": "81120", - "libelleAcheminement": "LABRUGUIERE", - "nomCommune": "LABRUGUIERE" + "codePostal": "72330", + "codeCommune": "72230", + "libelleAcheminement": "PARIGNE LE POLIN", + "nomCommune": "PARIGNE LE POLIN" }, { - "codePostal": "83470", - "codeCommune": "83125", - "libelleAcheminement": "SEILLONS SOURCE D ARGENS", - "nomCommune": "SEILLONS SOURCE D ARGENS" + "codePostal": "83840", + "codeCommune": "83022", + "libelleAcheminement": "BRENON", + "nomCommune": "BRENON" }, { - "codePostal": "77720", - "codeCommune": "77010", - "libelleAcheminement": "AUBEPIERRE OZOUER LE REPOS", - "nomCommune": "AUBEPIERRE OZOUER LE REPOS" + "codePostal": "71220", + "codeCommune": "71025", + "libelleAcheminement": "BEAUBERY", + "nomCommune": "BEAUBERY" }, { - "codePostal": "68420", - "codeCommune": "68350", - "libelleAcheminement": "VOEGTLINSHOFFEN", - "nomCommune": "VOEGTLINSHOFFEN" + "codePostal": "83260", + "codeCommune": "83047", + "libelleAcheminement": "LA CRAU", + "nomCommune": "LA CRAU" }, { - "codePostal": "81170", - "codeCommune": "81123", - "libelleAcheminement": "LACAPELLE SEGALAR", - "nomCommune": "LACAPELLE SEGALAR" + "codePostal": "72260", + "codeCommune": "72233", + "libelleAcheminement": "PERAY", + "nomCommune": "PERAY" }, { - "codePostal": "83500", - "codeCommune": "83126", - "libelleAcheminement": "LA SEYNE SUR MER", - "nomCommune": "LA SEYNE SUR MER" + "codePostal": "83830", + "codeCommune": "83028", + "libelleAcheminement": "CALLAS", + "nomCommune": "CALLAS" }, { - "codePostal": "77118", - "codeCommune": "77019", - "libelleAcheminement": "BALLOY", - "nomCommune": "BALLOY" + "codePostal": "71580", + "codeCommune": "71027", + "libelleAcheminement": "BEAUREPAIRE EN BRESSE", + "nomCommune": "BEAUREPAIRE EN BRESSE" }, { - "codePostal": "68640", - "codeCommune": "68355", - "libelleAcheminement": "WALDIGHOFEN", - "nomCommune": "WALDIGHOFEN" + "codePostal": "83570", + "codeCommune": "83051", + "libelleAcheminement": "ENTRECASTEAUX", + "nomCommune": "ENTRECASTEAUX" }, { - "codePostal": "81500", - "codeCommune": "81126", - "libelleAcheminement": "LACOUGOTTE CADOUL", - "nomCommune": "LACOUGOTTE CADOUL" + "codePostal": "72140", + "codeCommune": "72234", + "libelleAcheminement": "PEZE LE ROBERT", + "nomCommune": "PEZE LE ROBERT" }, { - "codePostal": "83140", - "codeCommune": "83129", - "libelleAcheminement": "SIX FOURS LES PLAGES", - "nomCommune": "SIX FOURS LES PLAGES" + "codePostal": "83240", + "codeCommune": "83036", + "libelleAcheminement": "CAVALAIRE SUR MER", + "nomCommune": "CAVALAIRE SUR MER" }, { - "codePostal": "77970", - "codeCommune": "77020", - "libelleAcheminement": "BANNOST VILLEGAGNON", - "nomCommune": "BANNOST VILLEGAGNON" + "codePostal": "71620", + "codeCommune": "71033", + "libelleAcheminement": "BEY", + "nomCommune": "BEY" }, { - "codePostal": "68230", - "codeCommune": "68358", - "libelleAcheminement": "WASSERBOURG", - "nomCommune": "WASSERBOURG" + "codePostal": "83560", + "codeCommune": "83052", + "libelleAcheminement": "ESPARRON", + "nomCommune": "ESPARRON" }, { - "codePostal": "81120", - "codeCommune": "81133", - "libelleAcheminement": "LAMILLARIE", - "nomCommune": "LAMILLARIE" + "codePostal": "72240", + "codeCommune": "72261", + "libelleAcheminement": "RUILLE EN CHAMPAGNE", + "nomCommune": "RUILLE EN CHAMPAGNE" }, { - "codePostal": "83340", - "codeCommune": "83136", - "libelleAcheminement": "LE THORONET", - "nomCommune": "LE THORONET" + "codePostal": "83300", + "codeCommune": "83038", + "libelleAcheminement": "CHATEAUDOUBLE", + "nomCommune": "CHATEAUDOUBLE" }, { - "codePostal": "77630", - "codeCommune": "77022", - "libelleAcheminement": "BARBIZON", - "nomCommune": "BARBIZON" + "codePostal": "71460", + "codeCommune": "71037", + "libelleAcheminement": "BISSY SUR FLEY", + "nomCommune": "BISSY SUR FLEY" }, { - "codePostal": "68920", - "codeCommune": "68365", - "libelleAcheminement": "WETTOLSHEIM", - "nomCommune": "WETTOLSHEIM" + "codePostal": "83440", + "codeCommune": "83055", + "libelleAcheminement": "FAYENCE", + "nomCommune": "FAYENCE" }, { - "codePostal": "81260", - "codeCommune": "81137", - "libelleAcheminement": "LASFAILLADES", - "nomCommune": "LASFAILLADES" + "codePostal": "72340", + "codeCommune": "72262", + "libelleAcheminement": "LOIR EN VALLEE", + "nomCommune": "LOIR EN VALLEE" }, { - "codePostal": "83200", - "codeCommune": "83137", - "libelleAcheminement": "TOULON", - "nomCommune": "TOULON" + "codePostal": "83830", + "codeCommune": "83041", + "libelleAcheminement": "CLAVIERS", + "nomCommune": "CLAVIERS" }, { - "codePostal": "77118", - "codeCommune": "77025", - "libelleAcheminement": "BAZOCHES LES BRAY", - "nomCommune": "BAZOCHES LES BRAY" + "codePostal": "71250", + "codeCommune": "71039", + "libelleAcheminement": "BLANOT", + "nomCommune": "BLANOT" }, { - "codePostal": "68820", - "codeCommune": "68370", - "libelleAcheminement": "WILDENSTEIN", - "nomCommune": "WILDENSTEIN" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "81500", - "codeCommune": "81140", - "libelleAcheminement": "LAVAUR", - "nomCommune": "LAVAUR" + "codePostal": "72460", + "codeCommune": "72275", + "libelleAcheminement": "ST CORNEILLE", + "nomCommune": "ST CORNEILLE" }, { - "codePostal": "84400", - "codeCommune": "84003", - "libelleAcheminement": "APT", - "nomCommune": "APT" + "codePostal": "83260", + "codeCommune": "83047", + "libelleAcheminement": "LA CRAU", + "nomCommune": "LA CRAU" }, { - "codePostal": "77890", - "codeCommune": "77027", - "libelleAcheminement": "BEAUMONT DU GATINAIS", - "nomCommune": "BEAUMONT DU GATINAIS" + "codePostal": "71460", + "codeCommune": "71042", + "libelleAcheminement": "BONNAY", + "nomCommune": "BONNAY" }, { - "codePostal": "68270", - "codeCommune": "68376", - "libelleAcheminement": "WITTENHEIM", - "nomCommune": "WITTENHEIM" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "81340", - "codeCommune": "81141", - "libelleAcheminement": "LEDAS ET PENTHIES", - "nomCommune": "LEDAS ET PENTHIES" + "codePostal": "72320", + "codeCommune": "72292", + "libelleAcheminement": "ST JEAN DES ECHELLES", + "nomCommune": "ST JEAN DES ECHELLES" }, { - "codePostal": "84810", - "codeCommune": "84004", - "libelleAcheminement": "AUBIGNAN", - "nomCommune": "AUBIGNAN" + "codePostal": "83390", + "codeCommune": "83049", + "libelleAcheminement": "CUERS", + "nomCommune": "CUERS" }, { - "codePostal": "77540", - "codeCommune": "77031", - "libelleAcheminement": "BERNAY VILBERT", - "nomCommune": "BERNAY VILBERT" + "codePostal": "71330", + "codeCommune": "71045", + "libelleAcheminement": "BOUHANS", + "nomCommune": "BOUHANS" }, { - "codePostal": "68210", - "codeCommune": "68378", - "libelleAcheminement": "WOLFERSDORF", - "nomCommune": "WOLFERSDORF" + "codePostal": "83980", + "codeCommune": "83070", + "libelleAcheminement": "LE LAVANDOU", + "nomCommune": "LE LAVANDOU" }, { - "codePostal": "81110", - "codeCommune": "81143", - "libelleAcheminement": "LESCOUT", - "nomCommune": "LESCOUT" + "codePostal": "72220", + "codeCommune": "72299", + "libelleAcheminement": "ST MARS D OUTILLE", + "nomCommune": "ST MARS D OUTILLE" }, { - "codePostal": "84190", - "codeCommune": "84012", - "libelleAcheminement": "BEAUMES DE VENISE", - "nomCommune": "BEAUMES DE VENISE" + "codePostal": "83300", + "codeCommune": "83050", + "libelleAcheminement": "DRAGUIGNAN", + "nomCommune": "DRAGUIGNAN" }, { - "codePostal": "77940", - "codeCommune": "77035", - "libelleAcheminement": "BLENNES", - "nomCommune": "BLENNES" + "codePostal": "71320", + "codeCommune": "71046", + "libelleAcheminement": "LA BOULAYE", + "nomCommune": "LA BOULAYE" }, { - "codePostal": "68600", - "codeCommune": "68379", - "libelleAcheminement": "WOLFGANTZEN", - "nomCommune": "WOLFGANTZEN" + "codePostal": "83440", + "codeCommune": "83081", + "libelleAcheminement": "MONTAUROUX", + "nomCommune": "MONTAUROUX" }, { - "codePostal": "81170", - "codeCommune": "81148", - "libelleAcheminement": "LOUBERS", - "nomCommune": "LOUBERS" + "codePostal": "72470", + "codeCommune": "72300", + "libelleAcheminement": "ST MARS LA BRIERE", + "nomCommune": "ST MARS LA BRIERE" }, { - "codePostal": "84340", - "codeCommune": "84015", - "libelleAcheminement": "BEAUMONT DU VENTOUX", - "nomCommune": "BEAUMONT DU VENTOUX" + "codePostal": "83590", + "codeCommune": "83067", + "libelleAcheminement": "GONFARON", + "nomCommune": "GONFARON" }, { - "codePostal": "77350", - "codeCommune": "77038", - "libelleAcheminement": "BOISSETTES", - "nomCommune": "BOISSETTES" + "codePostal": "71460", + "codeCommune": "71058", + "libelleAcheminement": "BRESSE SUR GROSNE", + "nomCommune": "BRESSE SUR GROSNE" }, { - "codePostal": "68130", - "codeCommune": "68382", - "libelleAcheminement": "ZAESSINGUE", - "nomCommune": "ZAESSINGUE" + "codePostal": "83190", + "codeCommune": "83090", + "libelleAcheminement": "OLLIOULES", + "nomCommune": "OLLIOULES" }, { - "codePostal": "81220", - "codeCommune": "81151", - "libelleAcheminement": "MAGRIN", - "nomCommune": "MAGRIN" + "codePostal": "72220", + "codeCommune": "72306", + "libelleAcheminement": "ST OUEN EN BELIN", + "nomCommune": "ST OUEN EN BELIN" }, { - "codePostal": "84370", - "codeCommune": "84016", - "libelleAcheminement": "BEDARRIDES", - "nomCommune": "BEDARRIDES" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "77720", - "codeCommune": "77044", - "libelleAcheminement": "BOMBON", - "nomCommune": "BOMBON" + "codePostal": "71670", + "codeCommune": "71059", + "libelleAcheminement": "LE BREUIL", + "nomCommune": "LE BREUIL" }, { - "codePostal": "69610", - "codeCommune": "69014", - "libelleAcheminement": "AVEIZE", - "nomCommune": "AVEIZE" + "codePostal": "83790", + "codeCommune": "83092", + "libelleAcheminement": "PIGNANS", + "nomCommune": "PIGNANS" }, { - "codePostal": "81130", - "codeCommune": "81152", - "libelleAcheminement": "MAILHOC", - "nomCommune": "MAILHOC" + "codePostal": "72350", + "codeCommune": "72307", + "libelleAcheminement": "ST OUEN EN CHAMPAGNE", + "nomCommune": "ST OUEN EN CHAMPAGNE" }, { - "codePostal": "84240", - "codeCommune": "84024", - "libelleAcheminement": "CABRIERES D AIGUES", - "nomCommune": "CABRIERES D AIGUES" + "codePostal": "83310", + "codeCommune": "83079", + "libelleAcheminement": "LA MOLE", + "nomCommune": "LA MOLE" }, { - "codePostal": "77760", - "codeCommune": "77046", - "libelleAcheminement": "BOULANCOURT", - "nomCommune": "BOULANCOURT" + "codePostal": "71460", + "codeCommune": "71068", + "libelleAcheminement": "BURZY", + "nomCommune": "BURZY" }, { - "codePostal": "69620", - "codeCommune": "69026", - "libelleAcheminement": "LE BREUIL", - "nomCommune": "LE BREUIL" + "codePostal": "83480", + "codeCommune": "83099", + "libelleAcheminement": "PUGET SUR ARGENS", + "nomCommune": "PUGET SUR ARGENS" }, { - "codePostal": "81150", - "codeCommune": "81156", - "libelleAcheminement": "MARSSAC SUR TARN", - "nomCommune": "MARSSAC SUR TARN" + "codePostal": "72650", + "codeCommune": "72320", + "libelleAcheminement": "ST SATURNIN", + "nomCommune": "ST SATURNIN" }, { - "codePostal": "84220", - "codeCommune": "84025", - "libelleAcheminement": "CABRIERES D AVIGNON", - "nomCommune": "CABRIERES D AVIGNON" + "codePostal": "83440", + "codeCommune": "83080", + "libelleAcheminement": "MONS", + "nomCommune": "MONS" }, { - "codePostal": "77470", - "codeCommune": "77049", - "libelleAcheminement": "BOUTIGNY", - "nomCommune": "BOUTIGNY" + "codePostal": "71530", + "codeCommune": "71081", + "libelleAcheminement": "CHAMPFORGEUIL", + "nomCommune": "CHAMPFORGEUIL" }, { - "codePostal": "69690", - "codeCommune": "69030", - "libelleAcheminement": "BRULLIOLES", - "nomCommune": "BRULLIOLES" + "codePostal": "83380", + "codeCommune": "83107", + "libelleAcheminement": "ROQUEBRUNE SUR ARGENS", + "nomCommune": "ROQUEBRUNE SUR ARGENS" }, { - "codePostal": "81250", - "codeCommune": "81161", - "libelleAcheminement": "MASSALS", - "nomCommune": "MASSALS" + "codePostal": "72240", + "codeCommune": "72321", + "libelleAcheminement": "ST SYMPHORIEN", + "nomCommune": "ST SYMPHORIEN" }, { - "codePostal": "84290", - "codeCommune": "84028", - "libelleAcheminement": "CAIRANNE", - "nomCommune": "CAIRANNE" + "codePostal": "83470", + "codeCommune": "83096", + "libelleAcheminement": "POURCIEUX", + "nomCommune": "POURCIEUX" }, { - "codePostal": "77750", - "codeCommune": "77057", - "libelleAcheminement": "BUSSIERES", - "nomCommune": "BUSSIERES" + "codePostal": "21340", + "codeCommune": "71085", + "libelleAcheminement": "CHANGE", + "nomCommune": "CHANGE" }, { - "codePostal": "69270", - "codeCommune": "69033", - "libelleAcheminement": "CAILLOUX SUR FONTAINES", - "nomCommune": "CAILLOUX SUR FONTAINES" + "codePostal": "83136", + "codeCommune": "83108", + "libelleAcheminement": "LA ROQUEBRUSSANNE", + "nomCommune": "LA ROQUEBRUSSANNE" }, { - "codePostal": "81470", - "codeCommune": "81162", - "libelleAcheminement": "MAURENS SCOPONT", - "nomCommune": "MAURENS SCOPONT" + "codePostal": "72360", + "codeCommune": "72327", + "libelleAcheminement": "SARCE", + "nomCommune": "SARCE" }, { - "codePostal": "84850", - "codeCommune": "84029", - "libelleAcheminement": "CAMARET SUR AIGUES", - "nomCommune": "CAMARET SUR AIGUES" + "codePostal": "83270", + "codeCommune": "83112", + "libelleAcheminement": "ST CYR SUR MER", + "nomCommune": "ST CYR SUR MER" }, { - "codePostal": "77760", - "codeCommune": "77060", - "libelleAcheminement": "BUTHIERS", - "nomCommune": "BUTHIERS" + "codePostal": "71460", + "codeCommune": "71087", + "libelleAcheminement": "CHAPAIZE", + "nomCommune": "CHAPAIZE" }, { - "codePostal": "69840", - "codeCommune": "69035", - "libelleAcheminement": "CENVES", - "nomCommune": "CENVES" + "codePostal": "83136", + "codeCommune": "83111", + "libelleAcheminement": "STE ANASTASIE SUR ISSOLE", + "nomCommune": "STE ANASTASIE SUR ISSOLE" }, { - "codePostal": "81170", - "codeCommune": "81165", - "libelleAcheminement": "MILHARS", - "nomCommune": "MILHARS" + "codePostal": "72190", + "codeCommune": "72328", + "libelleAcheminement": "SARGE LES LE MANS", + "nomCommune": "SARGE LES LE MANS" }, { - "codePostal": "84330", - "codeCommune": "84030", - "libelleAcheminement": "CAROMB", - "nomCommune": "CAROMB" + "codePostal": "83270", + "codeCommune": "83112", + "libelleAcheminement": "ST CYR SUR MER", + "nomCommune": "ST CYR SUR MER" }, { - "codePostal": "77400", - "codeCommune": "77062", - "libelleAcheminement": "CARNETIN", - "nomCommune": "CARNETIN" + "codePostal": "71130", + "codeCommune": "71088", + "libelleAcheminement": "LA CHAPELLE AU MANS", + "nomCommune": "LA CHAPELLE AU MANS" }, { - "codePostal": "69870", - "codeCommune": "69037", - "libelleAcheminement": "CHAMBOST ALLIERES", - "nomCommune": "CHAMBOST ALLIERES" + "codePostal": "83270", + "codeCommune": "83112", + "libelleAcheminement": "ST CYR SUR MER", + "nomCommune": "ST CYR SUR MER" }, { - "codePostal": "81190", - "codeCommune": "81180", - "libelleAcheminement": "MONTIRAT", - "nomCommune": "MONTIRAT" + "codePostal": "72140", + "codeCommune": "72334", + "libelleAcheminement": "SILLE LE GUILLAUME", + "nomCommune": "SILLE LE GUILLAUME" }, { - "codePostal": "84750", - "codeCommune": "84032", - "libelleAcheminement": "CASENEUVE", - "nomCommune": "CASENEUVE" + "codePostal": "83560", + "codeCommune": "83114", + "libelleAcheminement": "ST MARTIN DE PALLIERES", + "nomCommune": "ST MARTIN DE PALLIERES" }, { - "codePostal": "77930", - "codeCommune": "77065", - "libelleAcheminement": "CELY EN BIERE", - "nomCommune": "CELY" + "codePostal": "71570", + "codeCommune": "71090", + "libelleAcheminement": "LA CHAPELLE DE GUINCHAY", + "nomCommune": "LA CHAPELLE DE GUINCHAY" }, { - "codePostal": "69770", - "codeCommune": "69038", - "libelleAcheminement": "CHAMBOST LONGESSAIGNE", - "nomCommune": "CHAMBOST LONGESSAIGNE" + "codePostal": "83560", + "codeCommune": "83113", + "libelleAcheminement": "ST JULIEN", + "nomCommune": "ST JULIEN" }, { - "codePostal": "81120", - "codeCommune": "81183", - "libelleAcheminement": "MONT ROC", - "nomCommune": "MONT ROC" + "codePostal": "72300", + "codeCommune": "72336", + "libelleAcheminement": "SOLESMES", + "nomCommune": "SOLESMES" }, { - "codePostal": "84510", - "codeCommune": "84034", - "libelleAcheminement": "CAUMONT SUR DURANCE", - "nomCommune": "CAUMONT SUR DURANCE" + "codePostal": "83640", + "codeCommune": "83120", + "libelleAcheminement": "ST ZACHARIE", + "nomCommune": "ST ZACHARIE" }, { - "codePostal": "77171", - "codeCommune": "77072", - "libelleAcheminement": "CHALAUTRE LA GRANDE", - "nomCommune": "CHALAUTRE LA GRANDE" + "codePostal": "71520", + "codeCommune": "71091", + "libelleAcheminement": "LA CHAPELLE DU MONT DE FRANCE", + "nomCommune": "LA CHAPELLE DU MONT DE FRANCE" }, { - "codePostal": "69410", - "codeCommune": "69040", - "libelleAcheminement": "CHAMPAGNE AU MONT D OR", - "nomCommune": "CHAMPAGNE AU MONT D OR" + "codePostal": "83530", + "codeCommune": "83118", + "libelleAcheminement": "ST RAPHAEL", + "nomCommune": "ST RAPHAEL" }, { - "codePostal": "81430", - "codeCommune": "81190", - "libelleAcheminement": "MOUZIEYS TEULET", - "nomCommune": "MOUZIEYS TEULET" + "codePostal": "72210", + "codeCommune": "72339", + "libelleAcheminement": "SOULIGNE FLACE", + "nomCommune": "SOULIGNE FLACE" }, { - "codePostal": "84300", - "codeCommune": "84035", - "libelleAcheminement": "CAVAILLON", - "nomCommune": "CAVAILLON" + "codePostal": "83630", + "codeCommune": "83122", + "libelleAcheminement": "LES SALLES SUR VERDON", + "nomCommune": "LES SALLES SUR VERDON" }, { - "codePostal": "77160", - "codeCommune": "77073", - "libelleAcheminement": "CHALAUTRE LA PETITE", - "nomCommune": "CHALAUTRE LA PETITE" + "codePostal": "71320", + "codeCommune": "71098", + "libelleAcheminement": "CHARBONNAT", + "nomCommune": "CHARBONNAT" }, { - "codePostal": "69380", - "codeCommune": "69049", - "libelleAcheminement": "CHASSELAY", - "nomCommune": "CHASSELAY" + "codePostal": "83530", + "codeCommune": "83118", + "libelleAcheminement": "ST RAPHAEL", + "nomCommune": "ST RAPHAEL" }, { - "codePostal": "81710", - "codeCommune": "81195", - "libelleAcheminement": "NAVES", - "nomCommune": "NAVES" + "codePostal": "72370", + "codeCommune": "72341", + "libelleAcheminement": "SOULITRE", + "nomCommune": "SOULITRE" }, { - "codePostal": "84470", - "codeCommune": "84036", - "libelleAcheminement": "CHATEAUNEUF DE GADAGNE", - "nomCommune": "CHATEAUNEUF DE GADAGNE" + "codePostal": "83440", + "codeCommune": "83124", + "libelleAcheminement": "SEILLANS", + "nomCommune": "SEILLANS" }, { - "codePostal": "77144", - "codeCommune": "77075", - "libelleAcheminement": "CHALIFERT", - "nomCommune": "CHALIFERT" + "codePostal": "71260", + "codeCommune": "71099", + "libelleAcheminement": "CHARBONNIERES", + "nomCommune": "CHARBONNIERES" }, { - "codePostal": "69250", - "codeCommune": "69071", - "libelleAcheminement": "CURIS AU MONT D OR", - "nomCommune": "CURIS AU MONT D OR" + "codePostal": "83990", + "codeCommune": "83119", + "libelleAcheminement": "ST TROPEZ", + "nomCommune": "ST TROPEZ" }, { - "codePostal": "81470", - "codeCommune": "81205", - "libelleAcheminement": "PECHAUDIER", - "nomCommune": "PECHAUDIER" + "codePostal": "72400", + "codeCommune": "72342", + "libelleAcheminement": "SOUVIGNE SUR MEME", + "nomCommune": "SOUVIGNE SUR MEME" }, { - "codePostal": "84460", - "codeCommune": "84038", - "libelleAcheminement": "CHEVAL BLANC", - "nomCommune": "CHEVAL BLANC" + "codePostal": "83500", + "codeCommune": "83126", + "libelleAcheminement": "LA SEYNE SUR MER", + "nomCommune": "LA SEYNE SUR MER" }, { - "codePostal": "77910", - "codeCommune": "77077", - "libelleAcheminement": "CHAMBRY", - "nomCommune": "CHAMBRY" + "codePostal": "71270", + "codeCommune": "71101", + "libelleAcheminement": "CHARETTE VARENNES", + "nomCommune": "CHARETTE VARENNES" }, { - "codePostal": "69220", - "codeCommune": "69077", - "libelleAcheminement": "DRACE", - "nomCommune": "DRACE" + "codePostal": "83690", + "codeCommune": "83121", + "libelleAcheminement": "SALERNES", + "nomCommune": "SALERNES" }, { - "codePostal": "81120", - "codeCommune": "81211", - "libelleAcheminement": "POULAN POUZOLS", - "nomCommune": "POULAN POUZOLS" + "codePostal": "72240", + "codeCommune": "72351", + "libelleAcheminement": "TENNIE", + "nomCommune": "TENNIE" }, { - "codePostal": "84110", - "codeCommune": "84040", - "libelleAcheminement": "CRESTET", - "nomCommune": "CRESTET" + "codePostal": "83690", + "codeCommune": "83128", + "libelleAcheminement": "SILLANS LA CASCADE", + "nomCommune": "SILLANS LA CASCADE" }, { - "codePostal": "77260", - "codeCommune": "77078", - "libelleAcheminement": "CHAMIGNY", - "nomCommune": "CHAMIGNY" + "codePostal": "71170", + "codeCommune": "71110", + "libelleAcheminement": "CHASSIGNY SOUS DUN", + "nomCommune": "CHASSIGNY SOUS DUN" }, { - "codePostal": "69130", - "codeCommune": "69081", - "libelleAcheminement": "ECULLY", - "nomCommune": "ECULLY" + "codePostal": "83110", + "codeCommune": "83123", + "libelleAcheminement": "SANARY SUR MER", + "nomCommune": "SANARY SUR MER" }, { - "codePostal": "81170", - "codeCommune": "81224", - "libelleAcheminement": "LE RIOLS", - "nomCommune": "LE RIOLS" + "codePostal": "72440", + "codeCommune": "72361", + "libelleAcheminement": "TRESSON", + "nomCommune": "TRESSON" }, { - "codePostal": "84320", - "codeCommune": "84043", - "libelleAcheminement": "ENTRAIGUES SUR LA SORGUE", - "nomCommune": "ENTRAIGUES SUR LA SORGUE" + "codePostal": "83140", + "codeCommune": "83129", + "libelleAcheminement": "SIX FOURS LES PLAGES", + "nomCommune": "SIX FOURS LES PLAGES" }, { - "codePostal": "77430", - "codeCommune": "77079", - "libelleAcheminement": "CHAMPAGNE SUR SEINE", - "nomCommune": "CHAMPAGNE SUR SEINE" + "codePostal": "71310", + "codeCommune": "71121", + "libelleAcheminement": "LA CHAUX", + "nomCommune": "LA CHAUX" }, { - "codePostal": "69840", - "codeCommune": "69082", - "libelleAcheminement": "EMERINGES", - "nomCommune": "EMERINGES" + "codePostal": "83500", + "codeCommune": "83126", + "libelleAcheminement": "LA SEYNE SUR MER", + "nomCommune": "LA SEYNE SUR MER" }, { - "codePostal": "81120", - "codeCommune": "81233", - "libelleAcheminement": "TERRE DE BANCALIE", - "nomCommune": "TERRE DE BANCALIE" + "codePostal": "72540", + "codeCommune": "72367", + "libelleAcheminement": "VALLON SUR GEE", + "nomCommune": "VALLON SUR GEE" }, { - "codePostal": "84410", - "codeCommune": "84046", - "libelleAcheminement": "FLASSAN", - "nomCommune": "FLASSAN" + "codePostal": "83000", + "codeCommune": "83137", + "libelleAcheminement": "TOULON", + "nomCommune": "TOULON" }, { - "codePostal": "77660", - "codeCommune": "77084", - "libelleAcheminement": "CHANGIS SUR MARNE", - "nomCommune": "CHANGIS SUR MARNE" + "codePostal": "71960", + "codeCommune": "71126", + "libelleAcheminement": "CHEVAGNY LES CHEVRIERES", + "nomCommune": "CHEVAGNY LES CHEVRIERES" }, { - "codePostal": "69210", - "codeCommune": "69086", - "libelleAcheminement": "FLEURIEUX SUR L ARBRESLE", - "nomCommune": "FLEURIEUX SUR L ARBRESLE" + "codePostal": "83500", + "codeCommune": "83126", + "libelleAcheminement": "LA SEYNE SUR MER", + "nomCommune": "LA SEYNE SUR MER" }, { - "codePostal": "81120", - "codeCommune": "81233", - "libelleAcheminement": "TERRE DE BANCALIE", - "nomCommune": "TERRE DE BANCALIE" + "codePostal": "72600", + "codeCommune": "72372", + "libelleAcheminement": "VEZOT", + "nomCommune": "VEZOT" }, { - "codePostal": "84190", - "codeCommune": "84049", - "libelleAcheminement": "GIGONDAS", - "nomCommune": "GIGONDAS" + "codePostal": "83170", + "codeCommune": "83140", + "libelleAcheminement": "TOURVES", + "nomCommune": "TOURVES" }, { - "codePostal": "77160", - "codeCommune": "77090", - "libelleAcheminement": "LA CHAPELLE ST SULPICE", - "nomCommune": "LA CHAPELLE ST SULPICE" + "codePostal": "71220", + "codeCommune": "71127", + "libelleAcheminement": "CHEVAGNY SUR GUYE", + "nomCommune": "CHEVAGNY SUR GUYE" }, { - "codePostal": "69270", - "codeCommune": "69087", - "libelleAcheminement": "FONTAINES ST MARTIN", - "nomCommune": "FONTAINES ST MARTIN" + "codePostal": "83140", + "codeCommune": "83129", + "libelleAcheminement": "SIX FOURS LES PLAGES", + "nomCommune": "SIX FOURS LES PLAGES" }, { - "codePostal": "81140", - "codeCommune": "81234", - "libelleAcheminement": "ROUSSAYROLLES", - "nomCommune": "ROUSSAYROLLES" + "codePostal": "72400", + "codeCommune": "72375", + "libelleAcheminement": "VILLAINES LA GONAIS", + "nomCommune": "VILLAINES LA GONAIS" }, { - "codePostal": "84220", - "codeCommune": "84057", - "libelleAcheminement": "JOUCAS", - "nomCommune": "JOUCAS" + "codePostal": "83143", + "codeCommune": "83143", + "libelleAcheminement": "LE VAL", + "nomCommune": "LE VAL" }, { - "codePostal": "77169", - "codeCommune": "77106", - "libelleAcheminement": "CHAUFFRY", - "nomCommune": "CHAUFFRY" + "codePostal": "71520", + "codeCommune": "71134", + "libelleAcheminement": "NAVOUR SUR GROSNE", + "nomCommune": "NAVOUR SUR GROSNE" }, { - "codePostal": "69620", - "codeCommune": "69090", - "libelleAcheminement": "FRONTENAS", - "nomCommune": "FRONTENAS" + "codePostal": "83210", + "codeCommune": "83132", + "libelleAcheminement": "SOLLIES VILLE", + "nomCommune": "SOLLIES VILLE" }, { - "codePostal": "81110", - "codeCommune": "81237", - "libelleAcheminement": "ST AMANCET", - "nomCommune": "ST AMANCET" + "codePostal": "72300", + "codeCommune": "72378", + "libelleAcheminement": "VION", + "nomCommune": "VION" }, { - "codePostal": "84220", - "codeCommune": "84066", - "libelleAcheminement": "LIOUX", - "nomCommune": "LIOUX" + "codePostal": "83160", + "codeCommune": "83144", + "libelleAcheminement": "LA VALETTE DU VAR", + "nomCommune": "LA VALETTE DU VAR" }, { - "codePostal": "77390", - "codeCommune": "77107", - "libelleAcheminement": "CHAUMES EN BRIE", - "nomCommune": "CHAUMES EN BRIE" + "codePostal": "71460", + "codeCommune": "71147", + "libelleAcheminement": "CORTEVAIX", + "nomCommune": "CORTEVAIX" }, { - "codePostal": "69610", - "codeCommune": "69098", - "libelleAcheminement": "LES HALLES", - "nomCommune": "LES HALLES" + "codePostal": "83460", + "codeCommune": "83134", + "libelleAcheminement": "TARADEAU", + "nomCommune": "TARADEAU" }, { - "codePostal": "81110", - "codeCommune": "81242", - "libelleAcheminement": "ST AVIT", - "nomCommune": "ST AVIT" + "codePostal": "72350", + "codeCommune": "72379", + "libelleAcheminement": "VIRE EN CHAMPAGNE", + "nomCommune": "VIRE EN CHAMPAGNE" }, { - "codePostal": "84870", - "codeCommune": "84067", - "libelleAcheminement": "LORIOL DU COMTAT", - "nomCommune": "LORIOL DU COMTAT" + "codePostal": "83670", + "codeCommune": "83145", + "libelleAcheminement": "VARAGES", + "nomCommune": "VARAGES" }, { - "codePostal": "77160", - "codeCommune": "77109", - "libelleAcheminement": "CHENOISE CUCHARMOY", - "nomCommune": "CHENOISE CUCHARMOY" + "codePostal": "71170", + "codeCommune": "71148", + "libelleAcheminement": "COUBLANC", + "nomCommune": "COUBLANC" }, { - "codePostal": "69610", - "codeCommune": "69099", - "libelleAcheminement": "HAUTE RIVOIRE", - "nomCommune": "HAUTE RIVOIRE" + "codePostal": "83340", + "codeCommune": "83136", + "libelleAcheminement": "LE THORONET", + "nomCommune": "LE THORONET" }, { - "codePostal": "81190", - "codeCommune": "81245", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "72530", + "codeCommune": "72386", + "libelleAcheminement": "YVRE L EVEQUE", + "nomCommune": "YVRE L EVEQUE" }, { - "codePostal": "84560", - "codeCommune": "84073", - "libelleAcheminement": "MENERBES", - "nomCommune": "MENERBES" + "codePostal": "83550", + "codeCommune": "83148", + "libelleAcheminement": "VIDAUBAN", + "nomCommune": "VIDAUBAN" }, { - "codePostal": "77410", - "codeCommune": "77118", - "libelleAcheminement": "CLAYE SOUILLY", - "nomCommune": "CLAYE SOUILLY" + "codePostal": "71680", + "codeCommune": "71150", + "libelleAcheminement": "CRECHES SUR SAONE", + "nomCommune": "CRECHES SUR SAONE" }, { - "codePostal": "69480", - "codeCommune": "69106", - "libelleAcheminement": "LACHASSAGNE", - "nomCommune": "LACHASSAGNE" + "codePostal": "83820", + "codeCommune": "83152", + "libelleAcheminement": "RAYOL CANADEL SUR MER", + "nomCommune": "RAYOL CANADEL SUR MER" }, { - "codePostal": "81340", - "codeCommune": "81247", - "libelleAcheminement": "ST CIRGUE", - "nomCommune": "ST CIRGUE" + "codePostal": "73260", + "codeCommune": "73003", + "libelleAcheminement": "GRAND AIGUEBLANCHE", + "nomCommune": "GRAND AIGUEBLANCHE" }, { - "codePostal": "84570", - "codeCommune": "84075", - "libelleAcheminement": "METHAMIS", - "nomCommune": "METHAMIS" + "codePostal": "83690", + "codeCommune": "83149", + "libelleAcheminement": "VILLECROZE", + "nomCommune": "VILLECROZE" }, { - "codePostal": "77410", - "codeCommune": "77118", - "libelleAcheminement": "CLAYE SOUILLY", - "nomCommune": "CLAYE SOUILLY" + "codePostal": "71480", + "codeCommune": "71157", + "libelleAcheminement": "CUISEAUX", + "nomCommune": "CUISEAUX" }, { - "codePostal": "69590", - "codeCommune": "69110", - "libelleAcheminement": "LARAJASSE", - "nomCommune": "LARAJASSE" + "codePostal": "83820", + "codeCommune": "83152", + "libelleAcheminement": "RAYOL CANADEL SUR MER", + "nomCommune": "RAYOL CANADEL SUR MER" }, { - "codePostal": "81440", - "codeCommune": "81250", - "libelleAcheminement": "ST GENEST DE CONTEST", - "nomCommune": "ST GENEST DE CONTEST" + "codePostal": "73410", + "codeCommune": "73010", + "libelleAcheminement": "ENTRELACS", + "nomCommune": "ENTRELACS" }, { - "codePostal": "84170", - "codeCommune": "84080", - "libelleAcheminement": "MONTEUX", - "nomCommune": "MONTEUX" + "codePostal": "83560", + "codeCommune": "83150", + "libelleAcheminement": "VINON SUR VERDON", + "nomCommune": "VINON SUR VERDON" }, { - "codePostal": "77370", - "codeCommune": "77119", - "libelleAcheminement": "CLOS FONTAINE", - "nomCommune": "CLOS FONTAINE" + "codePostal": "71130", + "codeCommune": "71161", + "libelleAcheminement": "CURDIN", + "nomCommune": "CURDIN" }, { - "codePostal": "69380", - "codeCommune": "69117", - "libelleAcheminement": "LISSIEU", - "nomCommune": "LISSIEU" + "codePostal": "84210", + "codeCommune": "84001", + "libelleAcheminement": "ALTHEN DES PALUDS", + "nomCommune": "ALTHEN DES PALUDS" }, { - "codePostal": "81350", - "codeCommune": "81254", - "libelleAcheminement": "ST JEAN DE MARCEL", - "nomCommune": "ST JEAN DE MARCEL" + "codePostal": "73300", + "codeCommune": "73013", + "libelleAcheminement": "ALBIEZ MONTROND", + "nomCommune": "ALBIEZ MONTROND" }, { - "codePostal": "84100", - "codeCommune": "84087", - "libelleAcheminement": "ORANGE", - "nomCommune": "ORANGE" + "codePostal": "84400", + "codeCommune": "84003", + "libelleAcheminement": "APT", + "nomCommune": "APT" }, { - "codePostal": "77450", - "codeCommune": "77125", - "libelleAcheminement": "CONDE STE LIBIAIRE", - "nomCommune": "CONDE STE LIBIAIRE" + "codePostal": "71460", + "codeCommune": "71164", + "libelleAcheminement": "CURTIL SOUS BURNAND", + "nomCommune": "CURTIL SOUS BURNAND" }, { - "codePostal": "69480", - "codeCommune": "69122", - "libelleAcheminement": "LUCENAY", - "nomCommune": "LUCENAY" + "codePostal": "84240", + "codeCommune": "84002", + "libelleAcheminement": "ANSOUIS", + "nomCommune": "ANSOUIS" }, { - "codePostal": "81340", - "codeCommune": "81259", - "libelleAcheminement": "ST JULIEN GAULENE", - "nomCommune": "ST JULIEN GAULENE" + "codePostal": "73550", + "codeCommune": "73015", + "libelleAcheminement": "LES ALLUES", + "nomCommune": "LES ALLUES" }, { - "codePostal": "84120", - "codeCommune": "84089", - "libelleAcheminement": "PERTUIS", - "nomCommune": "PERTUIS" + "codePostal": "84810", + "codeCommune": "84004", + "libelleAcheminement": "AUBIGNAN", + "nomCommune": "AUBIGNAN" }, { - "codePostal": "77580", - "codeCommune": "77130", - "libelleAcheminement": "COULOMMES", - "nomCommune": "COULOMMES" + "codePostal": "71510", + "codeCommune": "71171", + "libelleAcheminement": "DENNEVY", + "nomCommune": "DENNEVY" }, { - "codePostal": "69550", - "codeCommune": "69130", - "libelleAcheminement": "MEAUX LA MONTAGNE", - "nomCommune": "MEAUX LA MONTAGNE" + "codePostal": "84390", + "codeCommune": "84005", + "libelleAcheminement": "AUREL", + "nomCommune": "AUREL" }, { - "codePostal": "81500", - "codeCommune": "81261", - "libelleAcheminement": "ST LIEUX LES LAVAUR", - "nomCommune": "ST LIEUX LES LAVAUR" + "codePostal": "73550", + "codeCommune": "73015", + "libelleAcheminement": "LES ALLUES", + "nomCommune": "LES ALLUES" }, { - "codePostal": "84130", - "codeCommune": "84092", - "libelleAcheminement": "LE PONTET", - "nomCommune": "LE PONTET" + "codePostal": "84000", + "codeCommune": "84007", + "libelleAcheminement": "AVIGNON", + "nomCommune": "AVIGNON" }, { - "codePostal": "77560", - "codeCommune": "77134", - "libelleAcheminement": "COURCHAMP", - "nomCommune": "COURCHAMP" + "codePostal": "71640", + "codeCommune": "71182", + "libelleAcheminement": "DRACY LE FORT", + "nomCommune": "DRACY LE FORT" }, { - "codePostal": "69860", - "codeCommune": "69135", - "libelleAcheminement": "DEUX GROSNES", - "nomCommune": "DEUX GROSNES" + "codePostal": "84330", + "codeCommune": "84008", + "libelleAcheminement": "LE BARROUX", + "nomCommune": "LE BARROUX" }, { - "codePostal": "81330", - "codeCommune": "81267", - "libelleAcheminement": "ST PIERRE DE TRIVISY", - "nomCommune": "ST PIERRE DE TRIVISY" + "codePostal": "73190", + "codeCommune": "73017", + "libelleAcheminement": "APREMONT", + "nomCommune": "APREMONT" }, { - "codePostal": "84110", - "codeCommune": "84096", - "libelleAcheminement": "RASTEAU", - "nomCommune": "RASTEAU" + "codePostal": "84190", + "codeCommune": "84012", + "libelleAcheminement": "BEAUMES DE VENISE", + "nomCommune": "BEAUMES DE VENISE" }, { - "codePostal": "77390", - "codeCommune": "77138", - "libelleAcheminement": "COURTOMER", - "nomCommune": "COURTOMER" + "codePostal": "71580", + "codeCommune": "71196", + "libelleAcheminement": "LE FAY", + "nomCommune": "LE FAY" }, { - "codePostal": "69860", - "codeCommune": "69135", - "libelleAcheminement": "DEUX GROSNES", - "nomCommune": "DEUX GROSNES" + "codePostal": "84220", + "codeCommune": "84013", + "libelleAcheminement": "BEAUMETTES", + "nomCommune": "BEAUMETTES" }, { - "codePostal": "81370", - "codeCommune": "81271", - "libelleAcheminement": "ST SULPICE LA POINTE", - "nomCommune": "ST SULPICE LA POINTE" + "codePostal": "73610", + "codeCommune": "73022", + "libelleAcheminement": "ATTIGNAT ONCIN", + "nomCommune": "ATTIGNAT ONCIN" }, { - "codePostal": "84440", - "codeCommune": "84099", - "libelleAcheminement": "ROBION", - "nomCommune": "ROBION" + "codePostal": "84500", + "codeCommune": "84019", + "libelleAcheminement": "BOLLENE", + "nomCommune": "BOLLENE" }, { - "codePostal": "77580", - "codeCommune": "77142", - "libelleAcheminement": "CRECY LA CHAPELLE", - "nomCommune": "CRECY LA CHAPELLE" + "codePostal": "71340", + "codeCommune": "71200", + "libelleAcheminement": "FLEURY LA MONTAGNE", + "nomCommune": "FLEURY LA MONTAGNE" }, { - "codePostal": "69700", - "codeCommune": "69136", - "libelleAcheminement": "MONTAGNY", - "nomCommune": "MONTAGNY" + "codePostal": "84480", + "codeCommune": "84020", + "libelleAcheminement": "BONNIEUX", + "nomCommune": "BONNIEUX" }, { - "codePostal": "81710", - "codeCommune": "81273", - "libelleAcheminement": "SAIX", - "nomCommune": "SAIX" + "codePostal": "73260", + "codeCommune": "73024", + "libelleAcheminement": "LES AVANCHERS VALMOREL", + "nomCommune": "LES AVANCHERS VALMOREL" }, { "codePostal": "84290", - "codeCommune": "84117", - "libelleAcheminement": "ST ROMAN DE MALEGARDE", - "nomCommune": "ST ROMAN DE MALEGARDE" + "codeCommune": "84028", + "libelleAcheminement": "CAIRANNE", + "nomCommune": "CAIRANNE" }, { - "codePostal": "77580", - "codeCommune": "77142", - "libelleAcheminement": "CRECY LA CHAPELLE", - "nomCommune": "CRECY LA CHAPELLE" + "codePostal": "71120", + "codeCommune": "71203", + "libelleAcheminement": "FONTENAY", + "nomCommune": "FONTENAY" }, { - "codePostal": "69590", - "codeCommune": "69155", - "libelleAcheminement": "POMEYS", - "nomCommune": "POMEYS" + "codePostal": "84160", + "codeCommune": "84026", + "libelleAcheminement": "CADENET", + "nomCommune": "CADENET" }, { - "codePostal": "81540", - "codeCommune": "81288", - "libelleAcheminement": "SOREZE", - "nomCommune": "SOREZE" + "codePostal": "73500", + "codeCommune": "73026", + "libelleAcheminement": "AVRIEUX", + "nomCommune": "AVRIEUX" }, { "codePostal": "84300", - "codeCommune": "84131", - "libelleAcheminement": "TAILLADES", - "nomCommune": "TAILLADES" + "codeCommune": "84035", + "libelleAcheminement": "CAVAILLON", + "nomCommune": "CAVAILLON" }, { - "codePostal": "77840", - "codeCommune": "77148", - "libelleAcheminement": "CROUY SUR OURCQ", - "nomCommune": "CROUY SUR OURCQ" + "codePostal": "71330", + "codeCommune": "71205", + "libelleAcheminement": "FRANGY EN BRESSE", + "nomCommune": "FRANGY EN BRESSE" }, { - "codePostal": "69480", - "codeCommune": "69156", - "libelleAcheminement": "POMMIERS", - "nomCommune": "POMMIERS" + "codePostal": "84850", + "codeCommune": "84029", + "libelleAcheminement": "CAMARET SUR AIGUES", + "nomCommune": "CAMARET SUR AIGUES" }, { - "codePostal": "81580", - "codeCommune": "81289", - "libelleAcheminement": "SOUAL", - "nomCommune": "SOUAL" + "codePostal": "73170", + "codeCommune": "73028", + "libelleAcheminement": "LA BALME", + "nomCommune": "LA BALME" }, { - "codePostal": "84850", - "codeCommune": "84134", - "libelleAcheminement": "TRAVAILLAN", - "nomCommune": "TRAVAILLAN" + "codePostal": "84110", + "codeCommune": "84045", + "libelleAcheminement": "FAUCON", + "nomCommune": "FAUCON" }, { - "codePostal": "77440", - "codeCommune": "77157", - "libelleAcheminement": "DHUISY", - "nomCommune": "DHUISY" + "codePostal": "71440", + "codeCommune": "71206", + "libelleAcheminement": "LA FRETTE", + "nomCommune": "LA FRETTE" }, { - "codePostal": "69870", - "codeCommune": "69160", - "libelleAcheminement": "POULE LES ECHARMEAUX", - "nomCommune": "POULE LES ECHARMEAUX" + "codePostal": "84200", + "codeCommune": "84031", + "libelleAcheminement": "CARPENTRAS", + "nomCommune": "CARPENTRAS" }, { - "codePostal": "81170", - "codeCommune": "81290", - "libelleAcheminement": "SOUEL", - "nomCommune": "SOUEL" + "codePostal": "73270", + "codeCommune": "73034", + "libelleAcheminement": "BEAUFORT SUR DORON", + "nomCommune": "BEAUFORT" }, { - "codePostal": "84600", - "codeCommune": "84138", - "libelleAcheminement": "VALREAS", - "nomCommune": "VALREAS" + "codePostal": "84410", + "codeCommune": "84046", + "libelleAcheminement": "FLASSAN", + "nomCommune": "FLASSAN" }, { - "codePostal": "77830", - "codeCommune": "77164", - "libelleAcheminement": "ECHOUBOULAINS", - "nomCommune": "ECHOUBOULAINS" + "codePostal": "71960", + "codeCommune": "71210", + "libelleAcheminement": "FUISSE", + "nomCommune": "FUISSE" }, { - "codePostal": "69790", - "codeCommune": "69161", - "libelleAcheminement": "PROPIERES", - "nomCommune": "PROPIERES" + "codePostal": "84510", + "codeCommune": "84034", + "libelleAcheminement": "CAUMONT SUR DURANCE", + "nomCommune": "CAUMONT SUR DURANCE" }, { - "codePostal": "81150", - "codeCommune": "81297", - "libelleAcheminement": "TERSSAC", - "nomCommune": "TERSSAC" + "codePostal": "73340", + "codeCommune": "73036", + "libelleAcheminement": "BELLECOMBE EN BAUGES", + "nomCommune": "BELLECOMBE EN BAUGES" }, { - "codePostal": "84210", - "codeCommune": "84143", - "libelleAcheminement": "VENASQUE", - "nomCommune": "VENASQUE" + "codePostal": "84240", + "codeCommune": "84052", + "libelleAcheminement": "GRAMBOIS", + "nomCommune": "GRAMBOIS" }, { - "codePostal": "77820", - "codeCommune": "77165", - "libelleAcheminement": "LES ECRENNES", - "nomCommune": "LES ECRENNES" + "codePostal": "71590", + "codeCommune": "71215", + "libelleAcheminement": "GERGY", + "nomCommune": "GERGY" }, { - "codePostal": "69430", - "codeCommune": "69165", - "libelleAcheminement": "REGNIE DURETTE", - "nomCommune": "REGNIE DURETTE" + "codePostal": "84300", + "codeCommune": "84035", + "libelleAcheminement": "CAVAILLON", + "nomCommune": "CAVAILLON" }, { - "codePostal": "81190", - "codeCommune": "81304", - "libelleAcheminement": "TREVIEN", - "nomCommune": "TREVIEN" + "codePostal": "73480", + "codeCommune": "73040", + "libelleAcheminement": "BESSANS", + "nomCommune": "BESSANS" }, { - "codePostal": "84400", - "codeCommune": "84145", - "libelleAcheminement": "VILLARS", - "nomCommune": "VILLARS" + "codePostal": "84800", + "codeCommune": "84054", + "libelleAcheminement": "L ISLE SUR LA SORGUE", + "nomCommune": "L ISLE SUR LA SORGUE" }, { - "codePostal": "77157", - "codeCommune": "77174", - "libelleAcheminement": "EVERLY", - "nomCommune": "EVERLY" + "codePostal": "71430", + "codeCommune": "71224", + "libelleAcheminement": "GRANDVAUX", + "nomCommune": "GRANDVAUX" }, { - "codePostal": "69270", - "codeCommune": "69168", - "libelleAcheminement": "ROCHETAILLEE SUR SAONE", - "nomCommune": "ROCHETAILLEE SUR SAONE" + "codePostal": "84360", + "codeCommune": "84065", + "libelleAcheminement": "LAURIS", + "nomCommune": "LAURIS" }, { - "codePostal": "82600", - "codeCommune": "82005", - "libelleAcheminement": "AUCAMVILLE", - "nomCommune": "AUCAMVILLE" + "codePostal": "73410", + "codeCommune": "73043", + "libelleAcheminement": "LA BIOLLE", + "nomCommune": "LA BIOLLE" }, { - "codePostal": "84570", - "codeCommune": "84148", - "libelleAcheminement": "VILLES SUR AUZON", - "nomCommune": "VILLES SUR AUZON" + "codePostal": "84450", + "codeCommune": "84055", + "libelleAcheminement": "JONQUERETTES", + "nomCommune": "JONQUERETTES" }, { - "codePostal": "77220", - "codeCommune": "77177", - "libelleAcheminement": "FAVIERES", - "nomCommune": "FAVIERES" + "codePostal": "71760", + "codeCommune": "71227", + "libelleAcheminement": "GRURY", + "nomCommune": "GRURY" }, { - "codePostal": "69510", - "codeCommune": "69170", - "libelleAcheminement": "RONTALON", - "nomCommune": "RONTALON" + "codePostal": "84560", + "codeCommune": "84073", + "libelleAcheminement": "MENERBES", + "nomCommune": "MENERBES" }, { - "codePostal": "82150", - "codeCommune": "82016", - "libelleAcheminement": "BELVEZE", - "nomCommune": "BELVEZE" + "codePostal": "73570", + "codeCommune": "73057", + "libelleAcheminement": "BRIDES LES BAINS", + "nomCommune": "BRIDES LES BAINS" }, { - "codePostal": "85220", - "codeCommune": "85002", - "libelleAcheminement": "L AIGUILLON SUR VIE", - "nomCommune": "L AIGUILLON SUR VIE" + "codePostal": "84150", + "codeCommune": "84056", + "libelleAcheminement": "JONQUIERES", + "nomCommune": "JONQUIERES" }, { - "codePostal": "77150", - "codeCommune": "77180", - "libelleAcheminement": "FEROLLES ATTILLY", - "nomCommune": "FEROLLES ATTILLY" + "codePostal": "71620", + "codeCommune": "71228", + "libelleAcheminement": "GUERFAND", + "nomCommune": "GUERFAND" }, { - "codePostal": "69510", - "codeCommune": "69176", - "libelleAcheminement": "SOUCIEU EN JARREST", - "nomCommune": "SOUCIEU EN JARREST" + "codePostal": "84120", + "codeCommune": "84076", + "libelleAcheminement": "MIRABEAU", + "nomCommune": "MIRABEAU" }, { - "codePostal": "82600", - "codeCommune": "82020", - "libelleAcheminement": "BOUILLAC", - "nomCommune": "BOUILLAC" + "codePostal": "73390", + "codeCommune": "73069", + "libelleAcheminement": "CHAMOUX SUR GELON", + "nomCommune": "CHAMOUX SUR GELON" }, { - "codePostal": "85170", - "codeCommune": "85015", - "libelleAcheminement": "BEAUFOU", - "nomCommune": "BEAUFOU" + "codePostal": "84480", + "codeCommune": "84058", + "libelleAcheminement": "LACOSTE", + "nomCommune": "LACOSTE" }, { - "codePostal": "77164", - "codeCommune": "77181", - "libelleAcheminement": "FERRIERES EN BRIE", - "nomCommune": "FERRIERES EN BRIE" + "codePostal": "71160", + "codeCommune": "71229", + "libelleAcheminement": "LES GUERREAUX", + "nomCommune": "LES GUERREAUX" }, { - "codePostal": "69210", - "codeCommune": "69177", - "libelleAcheminement": "SOURCIEUX LES MINES", - "nomCommune": "SOURCIEUX LES MINES" + "codePostal": "84390", + "codeCommune": "84079", + "libelleAcheminement": "MONIEUX", + "nomCommune": "MONIEUX" }, { - "codePostal": "82190", - "codeCommune": "82024", - "libelleAcheminement": "BRASSAC", - "nomCommune": "BRASSAC" + "codePostal": "73350", + "codeCommune": "73071", + "libelleAcheminement": "CHAMPAGNY EN VANOISE", + "nomCommune": "CHAMPAGNY EN VANOISE" }, { - "codePostal": "85420", - "codeCommune": "85028", - "libelleAcheminement": "BOUILLE COURDAULT", - "nomCommune": "BOUILLE COURDAULT" + "codePostal": "84870", + "codeCommune": "84067", + "libelleAcheminement": "LORIOL DU COMTAT", + "nomCommune": "LORIOL DU COMTAT" }, { - "codePostal": "77260", - "codeCommune": "77183", - "libelleAcheminement": "LA FERTE SOUS JOUARRE", - "nomCommune": "LA FERTE SOUS JOUARRE" + "codePostal": "71130", + "codeCommune": "71230", + "libelleAcheminement": "GUEUGNON", + "nomCommune": "GUEUGNON" }, { - "codePostal": "69170", - "codeCommune": "69181", - "libelleAcheminement": "ST APPOLINAIRE", - "nomCommune": "ST APPOLINAIRE" + "codePostal": "84310", + "codeCommune": "84081", + "libelleAcheminement": "MORIERES LES AVIGNON", + "nomCommune": "MORIERES LES AVIGNON" }, { - "codePostal": "82100", - "codeCommune": "82033", - "libelleAcheminement": "CASTELSARRASIN", - "nomCommune": "CASTELSARRASIN" + "codePostal": "73370", + "codeCommune": "73076", + "libelleAcheminement": "LA CHAPELLE DU MONT DU CHAT", + "nomCommune": "LA CHAPELLE DU MONT DU CHAT" }, { - "codePostal": "85320", - "codeCommune": "85036", - "libelleAcheminement": "LA BRETONNIERE LA CLAYE", - "nomCommune": "LA BRETONNIERE LA CLAYE" + "codePostal": "84570", + "codeCommune": "84070", + "libelleAcheminement": "MALEMORT DU COMTAT", + "nomCommune": "MALEMORT DU COMTAT" }, { - "codePostal": "77300", - "codeCommune": "77186", - "libelleAcheminement": "FONTAINEBLEAU", - "nomCommune": "FONTAINEBLEAU" + "codePostal": "71220", + "codeCommune": "71231", + "libelleAcheminement": "LA GUICHE", + "nomCommune": "LA GUICHE" }, { - "codePostal": "69560", - "codeCommune": "69193", - "libelleAcheminement": "ST CYR SUR LE RHONE", - "nomCommune": "ST CYR SUR LE RHONE" + "codePostal": "84130", + "codeCommune": "84092", + "libelleAcheminement": "LE PONTET", + "nomCommune": "LE PONTET" }, { - "codePostal": "82120", - "codeCommune": "82034", - "libelleAcheminement": "CASTERA BOUZET", - "nomCommune": "CASTERA BOUZET" + "codePostal": "73700", + "codeCommune": "73077", + "libelleAcheminement": "LES CHAPELLES", + "nomCommune": "LES CHAPELLES" }, { - "codePostal": "85410", - "codeCommune": "85040", - "libelleAcheminement": "LA CAILLERE ST HILAIRE", - "nomCommune": "LA CAILLERE ST HILAIRE" + "codePostal": "84330", + "codeCommune": "84077", + "libelleAcheminement": "MODENE", + "nomCommune": "MODENE" }, { - "codePostal": "77480", - "codeCommune": "77187", - "libelleAcheminement": "FONTAINE FOURCHES", - "nomCommune": "FONTAINE FOURCHES" + "codePostal": "71600", + "codeCommune": "71232", + "libelleAcheminement": "HAUTEFOND", + "nomCommune": "HAUTEFOND" }, { - "codePostal": "69640", - "codeCommune": "69215", - "libelleAcheminement": "ST JULIEN", - "nomCommune": "ST JULIEN" + "codePostal": "84110", + "codeCommune": "84098", + "libelleAcheminement": "ROAIX", + "nomCommune": "ROAIX" }, { - "codePostal": "82500", - "codeCommune": "82036", - "libelleAcheminement": "LE CAUSE", - "nomCommune": "LE CAUSE" + "codePostal": "73590", + "codeCommune": "73088", + "libelleAcheminement": "COHENNOZ", + "nomCommune": "COHENNOZ" }, { - "codePostal": "85410", - "codeCommune": "85040", - "libelleAcheminement": "LA CAILLERE ST HILAIRE", - "nomCommune": "LA CAILLERE ST HILAIRE" + "codePostal": "84570", + "codeCommune": "84082", + "libelleAcheminement": "MORMOIRON", + "nomCommune": "MORMOIRON" }, { - "codePostal": "77165", - "codeCommune": "77193", - "libelleAcheminement": "FORFRY", - "nomCommune": "FORFRY" + "codePostal": "71290", + "codeCommune": "71234", + "libelleAcheminement": "HUILLY SUR SEILLE", + "nomCommune": "HUILLY SUR SEILLE" }, { - "codePostal": "69440", - "codeCommune": "69228", - "libelleAcheminement": "CHABANIERE", - "nomCommune": "CHABANIERE" + "codePostal": "84240", + "codeCommune": "84121", + "libelleAcheminement": "SANNES", + "nomCommune": "SANNES" }, { - "codePostal": "82370", - "codeCommune": "82044", - "libelleAcheminement": "CORBARIEU", - "nomCommune": "CORBARIEU" + "codePostal": "73800", + "codeCommune": "73089", + "libelleAcheminement": "COISE ST JEAN PIED GAUTHIER", + "nomCommune": "COISE ST JEAN PIED GAUTHIER" + }, + { + "codePostal": "84550", + "codeCommune": "84083", + "libelleAcheminement": "MORNAS", + "nomCommune": "MORNAS" }, { - "codePostal": "85450", - "codeCommune": "85042", - "libelleAcheminement": "CHAILLE LES MARAIS", - "nomCommune": "CHAILLE LES MARAIS" + "codePostal": "71760", + "codeCommune": "71239", + "libelleAcheminement": "ISSY L EVEQUE", + "nomCommune": "ISSY L EVEQUE" }, { - "codePostal": "77410", - "codeCommune": "77196", - "libelleAcheminement": "FRESNES SUR MARNE", - "nomCommune": "FRESNES SUR MARNE" + "codePostal": "84800", + "codeCommune": "84124", + "libelleAcheminement": "SAUMANE DE VAUCLUSE", + "nomCommune": "SAUMANE DE VAUCLUSE" }, { - "codePostal": "69490", - "codeCommune": "69234", - "libelleAcheminement": "ST ROMAIN DE POPEY", - "nomCommune": "ST ROMAIN DE POPEY" + "codePostal": "73630", + "codeCommune": "73090", + "libelleAcheminement": "LA COMPOTE", + "nomCommune": "LA COMPOTE" }, { - "codePostal": "82210", - "codeCommune": "82046", - "libelleAcheminement": "COUTURES", - "nomCommune": "COUTURES" + "codePostal": "84210", + "codeCommune": "84088", + "libelleAcheminement": "PERNES LES FONTAINES", + "nomCommune": "PERNES LES FONTAINES" }, { - "codePostal": "85450", - "codeCommune": "85042", - "libelleAcheminement": "CHAILLE LES MARAIS", - "nomCommune": "CHAILLE LES MARAIS" + "codePostal": "71640", + "codeCommune": "71241", + "libelleAcheminement": "JAMBLES", + "nomCommune": "JAMBLES" }, { - "codePostal": "77370", - "codeCommune": "77201", - "libelleAcheminement": "GASTINS", - "nomCommune": "GASTINS" + "codePostal": "84700", + "codeCommune": "84129", + "libelleAcheminement": "SORGUES", + "nomCommune": "SORGUES" }, { - "codePostal": "69700", - "codeCommune": "69236", - "libelleAcheminement": "ST ROMAIN EN GIER", - "nomCommune": "ST ROMAIN EN GIER" + "codePostal": "73590", + "codeCommune": "73094", + "libelleAcheminement": "CREST VOLAND", + "nomCommune": "CREST VOLAND" }, { - "codePostal": "82170", - "codeCommune": "82057", - "libelleAcheminement": "FABAS", - "nomCommune": "FABAS" + "codePostal": "84420", + "codeCommune": "84091", + "libelleAcheminement": "PIOLENC", + "nomCommune": "PIOLENC" }, { - "codePostal": "85210", - "codeCommune": "85056", - "libelleAcheminement": "LA CHAPELLE THEMER", - "nomCommune": "LA CHAPELLE THEMER" + "codePostal": "71460", + "codeCommune": "71242", + "libelleAcheminement": "JONCY", + "nomCommune": "JONCY" }, { - "codePostal": "77120", - "codeCommune": "77206", - "libelleAcheminement": "GIREMOUTIERS", - "nomCommune": "GIREMOUTIERS" + "codePostal": "84190", + "codeCommune": "84130", + "libelleAcheminement": "SUZETTE", + "nomCommune": "SUZETTE" }, { - "codePostal": "69620", - "codeCommune": "69246", - "libelleAcheminement": "THEIZE", - "nomCommune": "THEIZE" + "codePostal": "73110", + "codeCommune": "73095", + "libelleAcheminement": "LA CROIX DE LA ROCHETTE", + "nomCommune": "LA CROIX DE LA ROCHETTE" }, { - "codePostal": "82190", - "codeCommune": "82060", - "libelleAcheminement": "FAUROUX", - "nomCommune": "FAUROUX" + "codePostal": "84360", + "codeCommune": "84093", + "libelleAcheminement": "PUGET", + "nomCommune": "PUGET" }, { - "codePostal": "85220", - "codeCommune": "85070", - "libelleAcheminement": "COEX", - "nomCommune": "COEX" + "codePostal": "71290", + "codeCommune": "71244", + "libelleAcheminement": "JOUVENCON", + "nomCommune": "JOUVENCON" }, { - "codePostal": "77720", - "codeCommune": "77211", - "libelleAcheminement": "GRANDPUITS BAILLY CARROIS", - "nomCommune": "GRANDPUITS BAILLY CARROIS" + "codePostal": "84530", + "codeCommune": "84147", + "libelleAcheminement": "VILLELAURE", + "nomCommune": "VILLELAURE" }, { - "codePostal": "69240", - "codeCommune": "69248", - "libelleAcheminement": "THIZY LES BOURGS", - "nomCommune": "THIZY LES BOURGS" + "codePostal": "73350", + "codeCommune": "73113", + "libelleAcheminement": "FEISSONS SUR SALINS", + "nomCommune": "FEISSONS SUR SALINS" }, { - "codePostal": "82230", - "codeCommune": "82066", - "libelleAcheminement": "GENEBRIERES", - "nomCommune": "GENEBRIERES" + "codePostal": "84160", + "codeCommune": "84095", + "libelleAcheminement": "PUYVERT", + "nomCommune": "PUYVERT" }, { - "codePostal": "85320", - "codeCommune": "85073", - "libelleAcheminement": "CORPE", - "nomCommune": "CORPE" + "codePostal": "71570", + "codeCommune": "71258", + "libelleAcheminement": "LEYNES", + "nomCommune": "LEYNES" }, { - "codePostal": "77410", - "codeCommune": "77214", - "libelleAcheminement": "GRESSY", - "nomCommune": "GRESSY" + "codePostal": "85460", + "codeCommune": "85001", + "libelleAcheminement": "L AIGUILLON LA PRESQU ILE", + "nomCommune": "L AIGUILLON LA PRESQU ILE" }, { - "codePostal": "69240", - "codeCommune": "69248", - "libelleAcheminement": "THIZY LES BOURGS", - "nomCommune": "THIZY LES BOURGS" + "codePostal": "73300", + "codeCommune": "73116", + "libelleAcheminement": "FONTCOUVERTE LA TOUSSUIRE", + "nomCommune": "FONTCOUVERTE LA TOUSSUIRE" }, { - "codePostal": "82120", - "codeCommune": "82067", - "libelleAcheminement": "GENSAC", - "nomCommune": "GENSAC" + "codePostal": "84600", + "codeCommune": "84097", + "libelleAcheminement": "RICHERENCHES", + "nomCommune": "RICHERENCHES" }, { - "codePostal": "85420", - "codeCommune": "85078", - "libelleAcheminement": "DAMVIX", - "nomCommune": "DAMVIX" + "codePostal": "71110", + "codeCommune": "71259", + "libelleAcheminement": "LIGNY EN BRIONNAIS", + "nomCommune": "LIGNY EN BRIONNAIS" }, { - "codePostal": "77220", - "codeCommune": "77215", - "libelleAcheminement": "GRETZ ARMAINVILLIERS", - "nomCommune": "GRETZ ARMAINVILLIERS" + "codePostal": "85190", + "codeCommune": "85003", + "libelleAcheminement": "AIZENAY", + "nomCommune": "AIZENAY" }, { - "codePostal": "69670", - "codeCommune": "69255", - "libelleAcheminement": "VAUGNERAY", - "nomCommune": "VAUGNERAY" + "codePostal": "73200", + "codeCommune": "73130", + "libelleAcheminement": "GRIGNON", + "nomCommune": "GRIGNON" }, { - "codePostal": "82120", - "codeCommune": "82083", - "libelleAcheminement": "LACHAPELLE", - "nomCommune": "LACHAPELLE" + "codePostal": "84110", + "codeCommune": "84116", + "libelleAcheminement": "ST ROMAIN EN VIENNOIS", + "nomCommune": "ST ROMAIN EN VIENNOIS" }, { - "codePostal": "85200", - "codeCommune": "85080", - "libelleAcheminement": "DOIX LES FONTAINES", - "nomCommune": "DOIX LES FONTAINES" + "codePostal": "71290", + "codeCommune": "71261", + "libelleAcheminement": "LOISY", + "nomCommune": "LOISY" }, { - "codePostal": "77166", - "codeCommune": "77217", - "libelleAcheminement": "GRISY SUISNES", - "nomCommune": "GRISY SUISNES" + "codePostal": "85750", + "codeCommune": "85004", + "libelleAcheminement": "ANGLES", + "nomCommune": "ANGLES" }, { - "codePostal": "69670", - "codeCommune": "69255", - "libelleAcheminement": "VAUGNERAY", - "nomCommune": "VAUGNERAY" + "codePostal": "73300", + "codeCommune": "73135", + "libelleAcheminement": "LA TOUR EN MAURIENNE", + "nomCommune": "LA TOUR EN MAURIENNE" }, { - "codePostal": "82190", - "codeCommune": "82084", - "libelleAcheminement": "LACOUR", - "nomCommune": "LACOUR" + "codePostal": "84450", + "codeCommune": "84119", + "libelleAcheminement": "ST SATURNIN LES AVIGNON", + "nomCommune": "ST SATURNIN LES AVIGNON" }, { - "codePostal": "85170", - "codeCommune": "85081", - "libelleAcheminement": "DOMPIERRE SUR YON", - "nomCommune": "DOMPIERRE SUR YON" + "codePostal": "71540", + "codeCommune": "71266", + "libelleAcheminement": "LUCENAY L EVEQUE", + "nomCommune": "LUCENAY L EVEQUE" }, { - "codePostal": "77520", - "codeCommune": "77223", - "libelleAcheminement": "GURCY LE CHATEL", - "nomCommune": "GURCY LE CHATEL" + "codePostal": "85430", + "codeCommune": "85008", + "libelleAcheminement": "AUBIGNY LES CLOUZEAUX", + "nomCommune": "AUBIGNY LES CLOUZEAUX" }, { - "codePostal": "69200", - "codeCommune": "69259", - "libelleAcheminement": "VENISSIEUX", - "nomCommune": "VENISSIEUX" + "codePostal": "73210", + "codeCommune": "73150", + "libelleAcheminement": "LA PLAGNE TARENTAISE", + "nomCommune": "LA PLAGNE TARENTAISE" }, { - "codePostal": "82290", - "codeCommune": "82096", - "libelleAcheminement": "LA VILLE DIEU DU TEMPLE", - "nomCommune": "LA VILLE DIEU DU TEMPLE" + "codePostal": "84390", + "codeCommune": "84125", + "libelleAcheminement": "SAVOILLAN", + "nomCommune": "SAVOILLAN" }, { - "codePostal": "85590", - "codeCommune": "85082", - "libelleAcheminement": "LES EPESSES", - "nomCommune": "LES EPESSES" + "codePostal": "71000", + "codeCommune": "71270", + "libelleAcheminement": "MACON", + "nomCommune": "MACON" }, { - "codePostal": "77890", - "codeCommune": "77230", - "libelleAcheminement": "ICHY", - "nomCommune": "ICHY" + "codePostal": "85440", + "codeCommune": "85010", + "libelleAcheminement": "AVRILLE", + "nomCommune": "AVRILLE" }, { - "codePostal": "69970", - "codeCommune": "69270", - "libelleAcheminement": "CHAPONNAY", - "nomCommune": "CHAPONNAY" + "codePostal": "73200", + "codeCommune": "73154", + "libelleAcheminement": "MERCURY", + "nomCommune": "MERCURY" }, { - "codePostal": "82230", - "codeCommune": "82098", - "libelleAcheminement": "LEOJAC", - "nomCommune": "LEOJAC" + "codePostal": "84830", + "codeCommune": "84127", + "libelleAcheminement": "SERIGNAN DU COMTAT", + "nomCommune": "SERIGNAN DU COMTAT" }, { - "codePostal": "85740", - "codeCommune": "85083", - "libelleAcheminement": "L EPINE", - "nomCommune": "L EPINE" + "codePostal": "71340", + "codeCommune": "71271", + "libelleAcheminement": "MAILLY", + "nomCommune": "MAILLY" }, { - "codePostal": "77480", - "codeCommune": "77236", - "libelleAcheminement": "JAULNES", - "nomCommune": "JAULNES" + "codePostal": "85550", + "codeCommune": "85012", + "libelleAcheminement": "LA BARRE DE MONTS", + "nomCommune": "LA BARRE DE MONTS" }, { - "codePostal": "69330", - "codeCommune": "69280", - "libelleAcheminement": "JONS", - "nomCommune": "JONS" + "codePostal": "73500", + "codeCommune": "73157", + "libelleAcheminement": "MODANE", + "nomCommune": "MODANE" }, { - "codePostal": "82160", - "codeCommune": "82100", - "libelleAcheminement": "LOZE", - "nomCommune": "LOZE" + "codePostal": "84300", + "codeCommune": "84131", + "libelleAcheminement": "TAILLADES", + "nomCommune": "TAILLADES" }, { - "codePostal": "85140", - "codeCommune": "85084", - "libelleAcheminement": "ESSARTS EN BOCAGE", - "nomCommune": "ESSARTS EN BOCAGE" + "codePostal": "71460", + "codeCommune": "71272", + "libelleAcheminement": "MALAY", + "nomCommune": "MALAY" }, { - "codePostal": "77640", - "codeCommune": "77238", - "libelleAcheminement": "JOUARRE", - "nomCommune": "JOUARRE" + "codePostal": "85490", + "codeCommune": "85020", + "libelleAcheminement": "BENET", + "nomCommune": "BENET" }, { - "codePostal": "69970", - "codeCommune": "69281", - "libelleAcheminement": "MARENNES", - "nomCommune": "MARENNES" + "codePostal": "73870", + "codeCommune": "73173", + "libelleAcheminement": "MONTRICHER ALBANNE", + "nomCommune": "MONTRICHER ALBANNE" }, { - "codePostal": "82120", - "codeCommune": "82102", - "libelleAcheminement": "MANSONVILLE", - "nomCommune": "MANSONVILLE" + "codePostal": "84250", + "codeCommune": "84132", + "libelleAcheminement": "LE THOR", + "nomCommune": "LE THOR" }, { - "codePostal": "85140", - "codeCommune": "85084", - "libelleAcheminement": "ESSARTS EN BOCAGE", - "nomCommune": "ESSARTS EN BOCAGE" + "codePostal": "71300", + "codeCommune": "71278", + "libelleAcheminement": "MARIGNY", + "nomCommune": "MARIGNY" }, { - "codePostal": "77230", - "codeCommune": "77241", - "libelleAcheminement": "JUILLY", - "nomCommune": "JUILLY" + "codePostal": "85320", + "codeCommune": "85036", + "libelleAcheminement": "LA BRETONNIERE LA CLAYE", + "nomCommune": "LA BRETONNIERE LA CLAYE" }, { - "codePostal": "69140", - "codeCommune": "69286", - "libelleAcheminement": "RILLIEUX LA PAPE", - "nomCommune": "RILLIEUX LA PAPE" + "codePostal": "73700", + "codeCommune": "73176", + "libelleAcheminement": "MONTVALEZAN", + "nomCommune": "MONTVALEZAN" }, { - "codePostal": "82600", - "codeCommune": "82105", - "libelleAcheminement": "MAS GRENIER", - "nomCommune": "MAS GRENIER" + "codePostal": "84190", + "codeCommune": "84136", + "libelleAcheminement": "VACQUEYRAS", + "nomCommune": "VACQUEYRAS" }, { - "codePostal": "85240", - "codeCommune": "85087", - "libelleAcheminement": "FAYMOREAU", - "nomCommune": "FAYMOREAU" + "codePostal": "71340", + "codeCommune": "71291", + "libelleAcheminement": "MELAY", + "nomCommune": "MELAY" }, { - "codePostal": "77650", - "codeCommune": "77242", - "libelleAcheminement": "JUTIGNY", - "nomCommune": "JUTIGNY" + "codePostal": "85260", + "codeCommune": "85038", + "libelleAcheminement": "LES BROUZILS", + "nomCommune": "LES BROUZILS" }, { - "codePostal": "69720", - "codeCommune": "69287", - "libelleAcheminement": "ST BONNET DE MURE", - "nomCommune": "ST BONNET DE MURE" + "codePostal": "73340", + "codeCommune": "73178", + "libelleAcheminement": "LA MOTTE EN BAUGES", + "nomCommune": "LA MOTTE EN BAUGES" }, { - "codePostal": "82120", - "codeCommune": "82107", - "libelleAcheminement": "MAUMUSSON", - "nomCommune": "MAUMUSSON" + "codePostal": "84750", + "codeCommune": "84144", + "libelleAcheminement": "VIENS", + "nomCommune": "VIENS" }, { - "codePostal": "85700", - "codeCommune": "85090", - "libelleAcheminement": "SEVREMONT", - "nomCommune": "SEVREMONT" + "codePostal": "71640", + "codeCommune": "71292", + "libelleAcheminement": "MELLECEY", + "nomCommune": "MELLECEY" }, { - "codePostal": "77760", - "codeCommune": "77244", - "libelleAcheminement": "LARCHANT", - "nomCommune": "LARCHANT" + "codePostal": "85450", + "codeCommune": "85042", + "libelleAcheminement": "CHAILLE LES MARAIS", + "nomCommune": "CHAILLE LES MARAIS" }, { - "codePostal": "69780", - "codeCommune": "69289", - "libelleAcheminement": "ST PIERRE DE CHANDIEU", - "nomCommune": "ST PIERRE DE CHANDIEU" + "codePostal": "73290", + "codeCommune": "73179", + "libelleAcheminement": "LA MOTTE SERVOLEX", + "nomCommune": "LA MOTTE SERVOLEX" }, { - "codePostal": "82200", - "codeCommune": "82112", - "libelleAcheminement": "MOISSAC", - "nomCommune": "MOISSAC" + "codePostal": "85220", + "codeCommune": "85002", + "libelleAcheminement": "L AIGUILLON SUR VIE", + "nomCommune": "L AIGUILLON SUR VIE" }, { - "codePostal": "85200", - "codeCommune": "85092", - "libelleAcheminement": "FONTENAY LE COMTE", - "nomCommune": "FONTENAY LE COMTE" + "codePostal": "71470", + "codeCommune": "71293", + "libelleAcheminement": "MENETREUIL", + "nomCommune": "MENETREUIL" }, { - "codePostal": "77450", - "codeCommune": "77248", - "libelleAcheminement": "LESCHES", - "nomCommune": "LESCHES" + "codePostal": "85320", + "codeCommune": "85061", + "libelleAcheminement": "CHATEAU GUIBERT", + "nomCommune": "CHATEAU GUIBERT" }, { - "codePostal": "69800", - "codeCommune": "69290", - "libelleAcheminement": "ST PRIEST", - "nomCommune": "ST PRIEST" + "codePostal": "73800", + "codeCommune": "73183", + "libelleAcheminement": "MYANS", + "nomCommune": "MYANS" }, { - "codePostal": "82230", - "codeCommune": "82115", - "libelleAcheminement": "MONCLAR DE QUERCY", - "nomCommune": "MONCLAR DE QUERCY" + "codePostal": "85120", + "codeCommune": "85005", + "libelleAcheminement": "ANTIGNY", + "nomCommune": "ANTIGNY" }, { - "codePostal": "85440", - "codeCommune": "85103", - "libelleAcheminement": "GROSBREUIL", - "nomCommune": "GROSBREUIL" + "codePostal": "71640", + "codeCommune": "71294", + "libelleAcheminement": "MERCUREY", + "nomCommune": "MERCUREY" }, { - "codePostal": "77550", - "codeCommune": "77253", - "libelleAcheminement": "LISSY", - "nomCommune": "LISSY" + "codePostal": "85390", + "codeCommune": "85067", + "libelleAcheminement": "CHEFFOIS", + "nomCommune": "CHEFFOIS" }, { - "codePostal": "69580", - "codeCommune": "69292", - "libelleAcheminement": "SATHONAY CAMP", - "nomCommune": "SATHONAY CAMP" + "codePostal": "73260", + "codeCommune": "73187", + "libelleAcheminement": "LA LECHERE", + "nomCommune": "LA LECHERE" }, { - "codePostal": "82100", - "codeCommune": "82118", - "libelleAcheminement": "MONTAIN", - "nomCommune": "MONTAIN" + "codePostal": "85200", + "codeCommune": "85009", + "libelleAcheminement": "AUCHAY SUR VENDEE", + "nomCommune": "AUCHAY SUR VENDEE" }, { - "codePostal": "85260", - "codeCommune": "85108", - "libelleAcheminement": "L HERBERGEMENT", - "nomCommune": "L HERBERGEMENT" + "codePostal": "71640", + "codeCommune": "71294", + "libelleAcheminement": "MERCUREY", + "nomCommune": "MERCUREY" }, { - "codePostal": "77440", - "codeCommune": "77257", - "libelleAcheminement": "LIZY SUR OURCQ", - "nomCommune": "LIZY SUR OURCQ" + "codePostal": "85260", + "codeCommune": "85072", + "libelleAcheminement": "LA COPECHAGNIERE", + "nomCommune": "LA COPECHAGNIERE" }, { - "codePostal": "69580", - "codeCommune": "69293", - "libelleAcheminement": "SATHONAY VILLAGE", - "nomCommune": "SATHONAY VILLAGE" + "codePostal": "73710", + "codeCommune": "73206", + "libelleAcheminement": "PRALOGNAN LA VANOISE", + "nomCommune": "PRALOGNAN LA VANOISE" }, { - "codePostal": "82000", - "codeCommune": "82121", - "libelleAcheminement": "MONTAUBAN", - "nomCommune": "MONTAUBAN" + "codePostal": "85200", + "codeCommune": "85009", + "libelleAcheminement": "AUCHAY SUR VENDEE", + "nomCommune": "AUCHAY SUR VENDEE" }, { - "codePostal": "85350", - "codeCommune": "85113", - "libelleAcheminement": "L ILE D YEU", - "nomCommune": "L ILE D YEU" + "codePostal": "71390", + "codeCommune": "71302", + "libelleAcheminement": "MONTAGNY LES BUXY", + "nomCommune": "MONTAGNY LES BUXY" }, { - "codePostal": "77185", - "codeCommune": "77258", - "libelleAcheminement": "LOGNES", - "nomCommune": "LOGNES" + "codePostal": "85320", + "codeCommune": "85074", + "libelleAcheminement": "LA COUTURE", + "nomCommune": "LA COUTURE" }, { - "codePostal": "69780", - "codeCommune": "69298", - "libelleAcheminement": "TOUSSIEU", - "nomCommune": "TOUSSIEU" + "codePostal": "73220", + "codeCommune": "73212", + "libelleAcheminement": "VAL D ARC", + "nomCommune": "VAL D ARC" }, { - "codePostal": "82700", - "codeCommune": "82123", - "libelleAcheminement": "MONTBARTIER", - "nomCommune": "MONTBARTIER" + "codePostal": "85630", + "codeCommune": "85011", + "libelleAcheminement": "BARBATRE", + "nomCommune": "BARBATRE" }, { - "codePostal": "85400", - "codeCommune": "85117", - "libelleAcheminement": "LAIROUX", - "nomCommune": "LAIROUX" + "codePostal": "71710", + "codeCommune": "71309", + "libelleAcheminement": "MONTCENIS", + "nomCommune": "MONTCENIS" }, { - "codePostal": "77710", - "codeCommune": "77261", - "libelleAcheminement": "LORREZ LE BOCAGE PREAUX", - "nomCommune": "LORREZ LE BOCAGE PREAUX" + "codePostal": "85610", + "codeCommune": "85076", + "libelleAcheminement": "CUGAND", + "nomCommune": "CUGAND" }, { - "codePostal": "69007", - "codeCommune": "69387", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 07" + "codePostal": "73220", + "codeCommune": "73212", + "libelleAcheminement": "VAL D ARC", + "nomCommune": "VAL D ARC" }, { - "codePostal": "82270", - "codeCommune": "82131", - "libelleAcheminement": "MONTPEZAT DE QUERCY", - "nomCommune": "MONTPEZAT DE QUERCY" + "codePostal": "85550", + "codeCommune": "85012", + "libelleAcheminement": "LA BARRE DE MONTS", + "nomCommune": "LA BARRE DE MONTS" }, { - "codePostal": "85120", - "codeCommune": "85125", - "libelleAcheminement": "LOGE FOUGEREUSE", - "nomCommune": "LOGE FOUGEREUSE" + "codePostal": "71270", + "codeCommune": "71315", + "libelleAcheminement": "MONT LES SEURRE", + "nomCommune": "MONT LES SEURRE" }, { - "codePostal": "77560", - "codeCommune": "77262", - "libelleAcheminement": "LOUAN VILLEGRUIS FONTAINE", - "nomCommune": "LOUAN VILLEGRUIS FONTAINE" + "codePostal": "85140", + "codeCommune": "85084", + "libelleAcheminement": "ESSARTS EN BOCAGE", + "nomCommune": "ESSARTS EN BOCAGE" }, { - "codePostal": "69009", - "codeCommune": "69389", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 09" + "codePostal": "73220", + "codeCommune": "73220", + "libelleAcheminement": "ST ALBAN D HURTIERES", + "nomCommune": "ST ALBAN D HURTIERES" }, { - "codePostal": "82370", - "codeCommune": "82135", - "libelleAcheminement": "NOHIC", - "nomCommune": "NOHIC" + "codePostal": "85130", + "codeCommune": "85013", + "libelleAcheminement": "BAZOGES EN PAILLERS", + "nomCommune": "BAZOGES EN PAILLERS" }, { - "codePostal": "85200", - "codeCommune": "85126", - "libelleAcheminement": "LONGEVES", - "nomCommune": "LONGEVES" + "codePostal": "71360", + "codeCommune": "71322", + "libelleAcheminement": "MORLET", + "nomCommune": "MORLET" }, { - "codePostal": "77540", - "codeCommune": "77264", - "libelleAcheminement": "LUMIGNY NESLES ORMEAUX", - "nomCommune": "LUMIGNY NESLES ORMEAUX" + "codePostal": "85140", + "codeCommune": "85084", + "libelleAcheminement": "ESSARTS EN BOCAGE", + "nomCommune": "ESSARTS EN BOCAGE" }, { - "codePostal": "70180", - "codeCommune": "70003", - "libelleAcheminement": "ACHEY", - "nomCommune": "ACHEY" + "codePostal": "73190", + "codeCommune": "73225", + "libelleAcheminement": "ST BALDOPH", + "nomCommune": "ST BALDOPH" }, { - "codePostal": "82370", - "codeCommune": "82136", - "libelleAcheminement": "ORGUEIL", - "nomCommune": "ORGUEIL" + "codePostal": "85500", + "codeCommune": "85017", + "libelleAcheminement": "BEAUREPAIRE", + "nomCommune": "BEAUREPAIRE" }, { - "codePostal": "85190", - "codeCommune": "85130", - "libelleAcheminement": "MACHE", - "nomCommune": "MACHE" + "codePostal": "71160", + "codeCommune": "71325", + "libelleAcheminement": "LA MOTTE ST JEAN", + "nomCommune": "LA MOTTE ST JEAN" }, { - "codePostal": "77540", - "codeCommune": "77264", - "libelleAcheminement": "LUMIGNY NESLES ORMEAUX", - "nomCommune": "LUMIGNY NESLES ORMEAUX" + "codePostal": "85200", + "codeCommune": "85092", + "libelleAcheminement": "FONTENAY LE COMTE", + "nomCommune": "FONTENAY LE COMTE" }, { - "codePostal": "70280", - "codeCommune": "70011", - "libelleAcheminement": "AMAGE", - "nomCommune": "AMAGE" + "codePostal": "73520", + "codeCommune": "73226", + "libelleAcheminement": "ST BERON", + "nomCommune": "ST BERON" }, { - "codePostal": "82160", - "codeCommune": "82137", - "libelleAcheminement": "PARISOT", - "nomCommune": "PARISOT" + "codePostal": "85490", + "codeCommune": "85020", + "libelleAcheminement": "BENET", + "nomCommune": "BENET" }, { - "codePostal": "85420", - "codeCommune": "85132", - "libelleAcheminement": "MAILLE", - "nomCommune": "MAILLE" + "codePostal": "71170", + "codeCommune": "71327", + "libelleAcheminement": "MUSSY SOUS DUN", + "nomCommune": "MUSSY SOUS DUN" }, { - "codePostal": "77138", - "codeCommune": "77265", - "libelleAcheminement": "LUZANCY", - "nomCommune": "LUZANCY" + "codePostal": "85480", + "codeCommune": "85093", + "libelleAcheminement": "FOUGERE", + "nomCommune": "FOUGERE" }, { - "codePostal": "70170", - "codeCommune": "70015", - "libelleAcheminement": "AMONCOURT", - "nomCommune": "AMONCOURT" + "codePostal": "73130", + "codeCommune": "73235", + "libelleAcheminement": "ST FRANCOIS LONGCHAMP", + "nomCommune": "ST FRANCOIS LONGCHAMP" }, { - "codePostal": "82130", - "codeCommune": "82140", - "libelleAcheminement": "PIQUECOS", - "nomCommune": "PIQUECOS" + "codePostal": "85610", + "codeCommune": "85021", + "libelleAcheminement": "LA BERNARDIERE", + "nomCommune": "LA BERNARDIERE" }, { - "codePostal": "85320", - "codeCommune": "85135", - "libelleAcheminement": "MAREUIL SUR LAY DISSAIS", - "nomCommune": "MAREUIL SUR LAY DISSAIS" + "codePostal": "71240", + "codeCommune": "71328", + "libelleAcheminement": "NANTON", + "nomCommune": "NANTON" }, { - "codePostal": "77570", - "codeCommune": "77271", - "libelleAcheminement": "MAISONCELLES EN GATINAIS", - "nomCommune": "MAISONCELLES EN GATINAIS" + "codePostal": "85130", + "codeCommune": "85097", + "libelleAcheminement": "LA GAUBRETIERE", + "nomCommune": "LA GAUBRETIERE" }, { - "codePostal": "70210", - "codeCommune": "70017", - "libelleAcheminement": "ANCHENONCOURT ET CHAZEL", - "nomCommune": "ANCHENONCOURT ET CHAZEL" + "codePostal": "73530", + "codeCommune": "73242", + "libelleAcheminement": "ST JEAN D ARVES", + "nomCommune": "ST JEAN D ARVES" }, { - "codePostal": "82400", - "codeCommune": "82141", - "libelleAcheminement": "POMMEVIC", - "nomCommune": "POMMEVIC" + "codePostal": "85430", + "codeCommune": "85026", + "libelleAcheminement": "LA BOISSIERE DES LANDES", + "nomCommune": "LA BOISSIERE DES LANDES" }, { - "codePostal": "85110", - "codeCommune": "85145", - "libelleAcheminement": "MONSIREIGNE", - "nomCommune": "MONSIREIGNE" + "codePostal": "71270", + "codeCommune": "71329", + "libelleAcheminement": "NAVILLY", + "nomCommune": "NAVILLY" }, { - "codePostal": "77230", - "codeCommune": "77273", - "libelleAcheminement": "MARCHEMORET", - "nomCommune": "MARCHEMORET" + "codePostal": "85190", + "codeCommune": "85098", + "libelleAcheminement": "LA GENETOUZE", + "nomCommune": "LA GENETOUZE" }, { - "codePostal": "70200", - "codeCommune": "70021", - "libelleAcheminement": "ANDORNAY", - "nomCommune": "ANDORNAY" + "codePostal": "73190", + "codeCommune": "73249", + "libelleAcheminement": "ST JEOIRE PRIEURE", + "nomCommune": "ST JEOIRE PRIEURE" }, { - "codePostal": "82170", - "codeCommune": "82142", - "libelleAcheminement": "POMPIGNAN", - "nomCommune": "POMPIGNAN" + "codePostal": "85420", + "codeCommune": "85028", + "libelleAcheminement": "BOUILLE COURDAULT", + "nomCommune": "BOUILLE COURDAULT" }, { - "codePostal": "85600", - "codeCommune": "85146", - "libelleAcheminement": "MONTAIGU VENDEE", - "nomCommune": "MONTAIGU VENDEE" + "codePostal": "71370", + "codeCommune": "71336", + "libelleAcheminement": "OUROUX SUR SAONE", + "nomCommune": "OUROUX SUR SAONE" }, { - "codePostal": "77560", - "codeCommune": "77275", - "libelleAcheminement": "LES MARETS", - "nomCommune": "LES MARETS" + "codePostal": "85670", + "codeCommune": "85102", + "libelleAcheminement": "GRAND LANDES", + "nomCommune": "GRAND LANDES" }, { - "codePostal": "70700", - "codeCommune": "70039", - "libelleAcheminement": "AUTOREILLE", - "nomCommune": "AUTOREILLE" + "codePostal": "73870", + "codeCommune": "73250", + "libelleAcheminement": "ST JULIEN MONT DENIS", + "nomCommune": "ST JULIEN MONT DENIS" }, { - "codePostal": "82120", - "codeCommune": "82143", - "libelleAcheminement": "POUPAS", - "nomCommune": "POUPAS" + "codePostal": "85470", + "codeCommune": "85035", + "libelleAcheminement": "BRETIGNOLLES SUR MER", + "nomCommune": "BRETIGNOLLES SUR MER" }, { - "codePostal": "85600", - "codeCommune": "85146", - "libelleAcheminement": "MONTAIGU VENDEE", - "nomCommune": "MONTAIGU VENDEE" + "codePostal": "71700", + "codeCommune": "71338", + "libelleAcheminement": "OZENAY", + "nomCommune": "OZENAY" }, { - "codePostal": "77440", - "codeCommune": "77280", - "libelleAcheminement": "MARY SUR MARNE", - "nomCommune": "MARY SUR MARNE" + "codePostal": "85220", + "codeCommune": "85120", + "libelleAcheminement": "LANDEVIEILLE", + "nomCommune": "LANDEVIEILLE" }, { - "codePostal": "70100", - "codeCommune": "70041", - "libelleAcheminement": "AUTREY LES GRAY", - "nomCommune": "AUTREY LES GRAY" + "codePostal": "73360", + "codeCommune": "73275", + "libelleAcheminement": "ST PIERRE DE GENEBROZ", + "nomCommune": "ST PIERRE DE GENEBROZ" }, { - "codePostal": "82800", - "codeCommune": "82145", - "libelleAcheminement": "PUYGAILLARD DE QUERCY", - "nomCommune": "PUYGAILLARD DE QUERCY" + "codePostal": "85410", + "codeCommune": "85041", + "libelleAcheminement": "CEZAIS", + "nomCommune": "CEZAIS" }, { - "codePostal": "85320", - "codeCommune": "85171", - "libelleAcheminement": "PEAULT", - "nomCommune": "PEAULT" + "codePostal": "71120", + "codeCommune": "71339", + "libelleAcheminement": "OZOLLES", + "nomCommune": "OZOLLES" }, { - "codePostal": "77520", - "codeCommune": "77286", - "libelleAcheminement": "MEIGNEUX", - "nomCommune": "MEIGNEUX" + "codePostal": "85200", + "codeCommune": "85126", + "libelleAcheminement": "LONGEVES", + "nomCommune": "LONGEVES" }, { - "codePostal": "70100", - "codeCommune": "70043", - "libelleAcheminement": "AUVET ET LA CHAPELOTTE", - "nomCommune": "AUVET ET LA CHAPELOTTE" + "codePostal": "73800", + "codeCommune": "73276", + "libelleAcheminement": "ST PIERRE DE SOUCY", + "nomCommune": "ST PIERRE DE SOUCY" }, { - "codePostal": "82160", - "codeCommune": "82147", - "libelleAcheminement": "PUYLAGARDE", - "nomCommune": "PUYLAGARDE" + "codePostal": "85450", + "codeCommune": "85042", + "libelleAcheminement": "CHAILLE LES MARAIS", + "nomCommune": "CHAILLE LES MARAIS" }, { - "codePostal": "85300", - "codeCommune": "85172", - "libelleAcheminement": "LE PERRIER", - "nomCommune": "LE PERRIER" + "codePostal": "71350", + "codeCommune": "71341", + "libelleAcheminement": "PALLEAU", + "nomCommune": "PALLEAU" }, { - "codePostal": "77730", - "codeCommune": "77290", - "libelleAcheminement": "MERY SUR MARNE", - "nomCommune": "MERY SUR MARNE" + "codePostal": "85560", + "codeCommune": "85127", + "libelleAcheminement": "LONGEVILLE SUR MER", + "nomCommune": "LONGEVILLE SUR MER" }, { - "codePostal": "70150", - "codeCommune": "70045", - "libelleAcheminement": "AVRIGNEY VIREY", - "nomCommune": "AVRIGNEY VIREY" + "codePostal": "73110", + "codeCommune": "73289", + "libelleAcheminement": "LA TABLE", + "nomCommune": "LA TABLE" }, { - "codePostal": "82150", - "codeCommune": "82151", - "libelleAcheminement": "ROQUECOR", - "nomCommune": "ROQUECOR" + "codePostal": "85120", + "codeCommune": "85053", + "libelleAcheminement": "LA CHAPELLE AUX LYS", + "nomCommune": "LA CHAPELLE AUX LYS" }, { - "codePostal": "85250", - "codeCommune": "85186", - "libelleAcheminement": "LA RABATELIERE", - "nomCommune": "LA RABATELIERE" + "codePostal": "71420", + "codeCommune": "71346", + "libelleAcheminement": "PERRECY LES FORGES", + "nomCommune": "PERRECY LES FORGES" }, { - "codePostal": "77290", - "codeCommune": "77294", - "libelleAcheminement": "MITRY MORY", - "nomCommune": "MITRY MORY" + "codePostal": "85190", + "codeCommune": "85130", + "libelleAcheminement": "MACHE", + "nomCommune": "MACHE" }, { - "codePostal": "70140", - "codeCommune": "70048", - "libelleAcheminement": "BARD LES PESMES", - "nomCommune": "BARD LES PESMES" + "codePostal": "73200", + "codeCommune": "73292", + "libelleAcheminement": "THENESOL", + "nomCommune": "THENESOL" }, { - "codePostal": "82300", - "codeCommune": "82159", - "libelleAcheminement": "ST CIRQ", - "nomCommune": "ST CIRQ" + "codePostal": "85120", + "codeCommune": "85059", + "libelleAcheminement": "LA CHATAIGNERAIE", + "nomCommune": "LA CHATAIGNERAIE" }, { - "codePostal": "85510", - "codeCommune": "85192", - "libelleAcheminement": "ROCHETREJOUX", - "nomCommune": "ROCHETREJOUX" + "codePostal": "71510", + "codeCommune": "71347", + "libelleAcheminement": "PERREUIL", + "nomCommune": "PERREUIL" }, { - "codePostal": "77550", - "codeCommune": "77296", - "libelleAcheminement": "MOISSY CRAMAYEL", - "nomCommune": "MOISSY CRAMAYEL" + "codePostal": "85570", + "codeCommune": "85137", + "libelleAcheminement": "MARSAIS STE RADEGONDE", + "nomCommune": "MARSAIS STE RADEGONDE" }, { - "codePostal": "70100", - "codeCommune": "70054", - "libelleAcheminement": "BATTRANS", - "nomCommune": "BATTRANS" + "codePostal": "73460", + "codeCommune": "73297", + "libelleAcheminement": "TOURNON", + "nomCommune": "TOURNON" }, { - "codePostal": "82410", - "codeCommune": "82161", - "libelleAcheminement": "ST ETIENNE DE TULMONT", - "nomCommune": "ST ETIENNE DE TULMONT" + "codePostal": "85540", + "codeCommune": "85077", + "libelleAcheminement": "CURZON", + "nomCommune": "CURZON" }, { - "codePostal": "85100", - "codeCommune": "85194", - "libelleAcheminement": "LES SABLES D OLONNE", - "nomCommune": "LES SABLES D OLONNE" + "codePostal": "71160", + "codeCommune": "71348", + "libelleAcheminement": "PERRIGNY SUR LOIRE", + "nomCommune": "PERRIGNY SUR LOIRE" }, { - "codePostal": "77570", - "codeCommune": "77297", - "libelleAcheminement": "MONDREVILLE", - "nomCommune": "MONDREVILLE" + "codePostal": "85200", + "codeCommune": "85143", + "libelleAcheminement": "MERVENT", + "nomCommune": "MERVENT" }, { - "codePostal": "70150", - "codeCommune": "70057", - "libelleAcheminement": "BAY", - "nomCommune": "BAY" + "codePostal": "73170", + "codeCommune": "73299", + "libelleAcheminement": "TRAIZE", + "nomCommune": "TRAIZE" }, { - "codePostal": "82120", - "codeCommune": "82163", - "libelleAcheminement": "ST JEAN DU BOUZET", - "nomCommune": "ST JEAN DU BOUZET" + "codePostal": "85200", + "codeCommune": "85080", + "libelleAcheminement": "DOIX LES FONTAINES", + "nomCommune": "DOIX LES FONTAINES" }, { - "codePostal": "85260", - "codeCommune": "85197", - "libelleAcheminement": "MONTREVERD", - "nomCommune": "MONTREVERD" + "codePostal": "71400", + "codeCommune": "71349", + "libelleAcheminement": "LA PETITE VERRIERE", + "nomCommune": "LA PETITE VERRIERE" }, { - "codePostal": "77320", - "codeCommune": "77303", - "libelleAcheminement": "MONTDAUPHIN", - "nomCommune": "MONTDAUPHIN" + "codePostal": "85500", + "codeCommune": "85144", + "libelleAcheminement": "MESNARD LA BAROTIERE", + "nomCommune": "MESNARD LA BAROTIERE" }, { - "codePostal": "70150", - "codeCommune": "70060", - "libelleAcheminement": "BEAUMOTTE LES PIN", - "nomCommune": "BEAUMOTTE LES PIN" + "codePostal": "73110", + "codeCommune": "73302", + "libelleAcheminement": "LA TRINITE", + "nomCommune": "LA TRINITE" }, { - "codePostal": "82190", - "codeCommune": "82168", - "libelleAcheminement": "ST NAZAIRE DE VALENTANE", - "nomCommune": "ST NAZAIRE DE VALENTANE" + "codePostal": "85140", + "codeCommune": "85084", + "libelleAcheminement": "ESSARTS EN BOCAGE", + "nomCommune": "ESSARTS EN BOCAGE" }, { - "codePostal": "85260", - "codeCommune": "85197", - "libelleAcheminement": "MONTREVERD", - "nomCommune": "MONTREVERD" + "codePostal": "71960", + "codeCommune": "71350", + "libelleAcheminement": "PIERRECLOS", + "nomCommune": "PIERRECLOS" }, { - "codePostal": "77950", - "codeCommune": "77306", - "libelleAcheminement": "MONTEREAU SUR LE JARD", - "nomCommune": "MONTEREAU SUR LE JARD" + "codePostal": "85600", + "codeCommune": "85146", + "libelleAcheminement": "MONTAIGU VENDEE", + "nomCommune": "MONTAIGU VENDEE" }, { - "codePostal": "70400", - "codeCommune": "70064", - "libelleAcheminement": "BELVERNE", - "nomCommune": "BELVERNE" + "codePostal": "73450", + "codeCommune": "73307", + "libelleAcheminement": "VALMEINIER", + "nomCommune": "VALMEINIER" }, { - "codePostal": "82700", - "codeCommune": "82171", - "libelleAcheminement": "ST PORQUIER", - "nomCommune": "ST PORQUIER" + "codePostal": "85670", + "codeCommune": "85086", + "libelleAcheminement": "FALLERON", + "nomCommune": "FALLERON" }, { - "codePostal": "85260", - "codeCommune": "85197", - "libelleAcheminement": "MONTREVERD", - "nomCommune": "MONTREVERD" + "codePostal": "71270", + "codeCommune": "71351", + "libelleAcheminement": "PIERRE DE BRESSE", + "nomCommune": "PIERRE DE BRESSE" }, { - "codePostal": "77690", - "codeCommune": "77312", - "libelleAcheminement": "MONTIGNY SUR LOING", - "nomCommune": "MONTIGNY SUR LOING" + "codePostal": "85450", + "codeCommune": "85149", + "libelleAcheminement": "MOREILLES", + "nomCommune": "MOREILLES" }, { - "codePostal": "70210", - "codeCommune": "70069", - "libelleAcheminement": "BETONCOURT ST PANCRAS", - "nomCommune": "BETONCOURT ST PANCRAS" + "codePostal": "73330", + "codeCommune": "73309", + "libelleAcheminement": "VEREL DE MONTBEL", + "nomCommune": "VEREL DE MONTBEL" }, { - "codePostal": "82600", - "codeCommune": "82173", - "libelleAcheminement": "ST SARDOS", - "nomCommune": "ST SARDOS" + "codePostal": "85800", + "codeCommune": "85088", + "libelleAcheminement": "LE FENOUILLER", + "nomCommune": "LE FENOUILLER" }, { - "codePostal": "85410", - "codeCommune": "85205", - "libelleAcheminement": "ST CYR DES GATS", - "nomCommune": "ST CYR DES GATS" + "codePostal": "71270", + "codeCommune": "71355", + "libelleAcheminement": "PONTOUX", + "nomCommune": "PONTOUX" }, { - "codePostal": "77720", - "codeCommune": "77317", - "libelleAcheminement": "MORMANT", - "nomCommune": "MORMANT" + "codePostal": "85290", + "codeCommune": "85151", + "libelleAcheminement": "MORTAGNE SUR SEVRE", + "nomCommune": "MORTAGNE SUR SEVRE" }, { - "codePostal": "70500", - "codeCommune": "70074", - "libelleAcheminement": "BLONDEFONTAINE", - "nomCommune": "BLONDEFONTAINE" + "codePostal": "73300", + "codeCommune": "73320", + "libelleAcheminement": "VILLARGONDRAN", + "nomCommune": "VILLARGONDRAN" }, { - "codePostal": "82400", - "codeCommune": "82175", - "libelleAcheminement": "ST VINCENT LESPINASSE", - "nomCommune": "ST VINCENT LESPINASSE" + "codePostal": "85540", + "codeCommune": "85101", + "libelleAcheminement": "LE GIVRE", + "nomCommune": "LE GIVRE" }, { - "codePostal": "85210", - "codeCommune": "85209", - "libelleAcheminement": "ST ETIENNE DE BRILLOUET", - "nomCommune": "ST ETIENNE DE BRILLOUET" + "codePostal": "71220", + "codeCommune": "71358", + "libelleAcheminement": "PRESSY SOUS DONDIN", + "nomCommune": "PRESSY SOUS DONDIN" }, { - "codePostal": "77160", - "codeCommune": "77319", - "libelleAcheminement": "MORTERY", - "nomCommune": "MORTERY" + "codePostal": "85000", + "codeCommune": "85155", + "libelleAcheminement": "MOUILLERON LE CAPTIF", + "nomCommune": "MOUILLERON LE CAPTIF" }, { - "codePostal": "70150", - "codeCommune": "70075", - "libelleAcheminement": "BONBOILLON", - "nomCommune": "BONBOILLON" + "codePostal": "73500", + "codeCommune": "73322", + "libelleAcheminement": "VILLARODIN BOURGET", + "nomCommune": "VILLARODIN BOURGET" }, { - "codePostal": "82110", - "codeCommune": "82183", - "libelleAcheminement": "TREJOULS", - "nomCommune": "TREJOULS" + "codePostal": "85580", + "codeCommune": "85104", + "libelleAcheminement": "GRUES", + "nomCommune": "GRUES" }, { - "codePostal": "85670", - "codeCommune": "85210", - "libelleAcheminement": "ST ETIENNE DU BOIS", - "nomCommune": "ST ETIENNE DU BOIS" + "codePostal": "71290", + "codeCommune": "71365", + "libelleAcheminement": "RANCY", + "nomCommune": "RANCY" }, { - "codePostal": "77120", - "codeCommune": "77320", - "libelleAcheminement": "MOUROUX", - "nomCommune": "MOUROUX" + "codePostal": "85320", + "codeCommune": "85171", + "libelleAcheminement": "PEAULT", + "nomCommune": "PEAULT" }, { - "codePostal": "70190", - "codeCommune": "70085", - "libelleAcheminement": "BOULT", - "nomCommune": "BOULT" + "codePostal": "73640", + "codeCommune": "73323", + "libelleAcheminement": "VILLAROGER", + "nomCommune": "VILLAROGER" }, { - "codePostal": "82330", - "codeCommune": "82191", - "libelleAcheminement": "VERFEIL SUR SEYE", - "nomCommune": "VERFEIL" + "codePostal": "85570", + "codeCommune": "85110", + "libelleAcheminement": "L HERMENAULT", + "nomCommune": "L HERMENAULT" }, { - "codePostal": "85150", - "codeCommune": "85211", - "libelleAcheminement": "STE FLAIVE DES LOUPS", - "nomCommune": "STE FLAIVE DES LOUPS" + "codePostal": "71540", + "codeCommune": "71368", + "libelleAcheminement": "RECLESNE", + "nomCommune": "RECLESNE" }, { - "codePostal": "77370", - "codeCommune": "77327", - "libelleAcheminement": "NANGIS", - "nomCommune": "NANGIS" + "codePostal": "85200", + "codeCommune": "85176", + "libelleAcheminement": "PISSOTTE", + "nomCommune": "PISSOTTE" }, { - "codePostal": "70000", - "codeCommune": "70090", - "libelleAcheminement": "BOURSIERES", - "nomCommune": "BOURSIERES" + "codePostal": "73310", + "codeCommune": "73327", + "libelleAcheminement": "VIONS", + "nomCommune": "VIONS" }, { - "codePostal": "82500", - "codeCommune": "82193", - "libelleAcheminement": "VIGUERON", - "nomCommune": "VIGUERON" + "codePostal": "85150", + "codeCommune": "85118", + "libelleAcheminement": "LANDERONDE", + "nomCommune": "LANDERONDE" }, { - "codePostal": "85310", - "codeCommune": "85213", - "libelleAcheminement": "RIVES DE L YON", - "nomCommune": "RIVES DE L YON" + "codePostal": "71160", + "codeCommune": "71370", + "libelleAcheminement": "RIGNY SUR ARROUX", + "nomCommune": "RIGNY SUR ARROUX" }, { - "codePostal": "77730", - "codeCommune": "77331", - "libelleAcheminement": "NANTEUIL SUR MARNE", - "nomCommune": "NANTEUIL SUR MARNE" + "codePostal": "85450", + "codeCommune": "85185", + "libelleAcheminement": "PUYRAVAULT", + "nomCommune": "PUYRAVAULT" }, { - "codePostal": "70160", - "codeCommune": "70095", - "libelleAcheminement": "BREUREY LES FAVERNEY", - "nomCommune": "BREUREY LES FAVERNEY" + "codePostal": "73420", + "codeCommune": "73328", + "libelleAcheminement": "VIVIERS DU LAC", + "nomCommune": "VIVIERS DU LAC" }, { - "codePostal": "83630", - "codeCommune": "83002", - "libelleAcheminement": "AIGUINES", - "nomCommune": "AIGUINES" + "codePostal": "85130", + "codeCommune": "85119", + "libelleAcheminement": "LES LANDES GENUSSON", + "nomCommune": "LES LANDES GENUSSON" }, { - "codePostal": "85150", - "codeCommune": "85214", - "libelleAcheminement": "STE FOY", - "nomCommune": "STE FOY" + "codePostal": "71220", + "codeCommune": "71387", + "libelleAcheminement": "ST ANDRE LE DESERT", + "nomCommune": "ST ANDRE LE DESERT" }, { - "codePostal": "77230", - "codeCommune": "77332", - "libelleAcheminement": "NANTOUILLET", - "nomCommune": "NANTOUILLET" + "codePostal": "85510", + "codeCommune": "85192", + "libelleAcheminement": "ROCHETREJOUX", + "nomCommune": "ROCHETREJOUX" }, { - "codePostal": "70500", - "codeCommune": "70112", - "libelleAcheminement": "CEMBOING", - "nomCommune": "CEMBOING" + "codePostal": "74540", + "codeCommune": "74004", + "libelleAcheminement": "ALLEVES", + "nomCommune": "ALLEVES" }, { - "codePostal": "83560", - "codeCommune": "83006", - "libelleAcheminement": "ARTIGUES", - "nomCommune": "ARTIGUES" + "codePostal": "85120", + "codeCommune": "85125", + "libelleAcheminement": "LOGE FOUGEREUSE", + "nomCommune": "LOGE FOUGEREUSE" }, { - "codePostal": "85480", - "codeCommune": "85232", - "libelleAcheminement": "ST HILAIRE LE VOUHIS", - "nomCommune": "ST HILAIRE LE VOUHIS" + "codePostal": "71220", + "codeCommune": "71394", + "libelleAcheminement": "ST BONNET DE JOUX", + "nomCommune": "ST BONNET DE JOUX" }, { - "codePostal": "77140", - "codeCommune": "77340", - "libelleAcheminement": "NONVILLE", - "nomCommune": "NONVILLE" + "codePostal": "85100", + "codeCommune": "85194", + "libelleAcheminement": "LES SABLES D OLONNE", + "nomCommune": "LES SABLES D OLONNE" }, { - "codePostal": "70000", - "codeCommune": "70115", - "libelleAcheminement": "CERRE LES NOROY", - "nomCommune": "CERRE LES NOROY" + "codePostal": "74200", + "codeCommune": "74005", + "libelleAcheminement": "ALLINGES", + "nomCommune": "ALLINGES" }, { - "codePostal": "83119", - "codeCommune": "83025", - "libelleAcheminement": "BRUE AURIAC", - "nomCommune": "BRUE AURIAC" + "codePostal": "85400", + "codeCommune": "85128", + "libelleAcheminement": "LUCON", + "nomCommune": "LUCON" }, { - "codePostal": "85150", - "codeCommune": "85236", - "libelleAcheminement": "ST JULIEN DES LANDES", - "nomCommune": "ST JULIEN DES LANDES" + "codePostal": "71310", + "codeCommune": "71396", + "libelleAcheminement": "ST BONNET EN BRESSE", + "nomCommune": "ST BONNET EN BRESSE" }, { - "codePostal": "77114", - "codeCommune": "77341", - "libelleAcheminement": "NOYEN SUR SEINE", - "nomCommune": "NOYEN SUR SEINE" + "codePostal": "85180", + "codeCommune": "85194", + "libelleAcheminement": "LES SABLES D OLONNE", + "nomCommune": "LES SABLES D OLONNE" }, { - "codePostal": "70600", - "codeCommune": "70122", - "libelleAcheminement": "CHAMPLITTE", - "nomCommune": "CHAMPLITTE" + "codePostal": "74350", + "codeCommune": "74009", + "libelleAcheminement": "ANDILLY", + "nomCommune": "ANDILLY" }, { - "codePostal": "83340", - "codeCommune": "83026", - "libelleAcheminement": "CABASSE", - "nomCommune": "CABASSE" + "codePostal": "85420", + "codeCommune": "85133", + "libelleAcheminement": "MAILLEZAIS", + "nomCommune": "MAILLEZAIS" }, { - "codePostal": "85290", - "codeCommune": "85238", - "libelleAcheminement": "ST LAURENT SUR SEVRE", - "nomCommune": "ST LAURENT SUR SEVRE" + "codePostal": "71460", + "codeCommune": "71400", + "libelleAcheminement": "ST CLEMENT SUR GUYE", + "nomCommune": "ST CLEMENT SUR GUYE" }, { - "codePostal": "77178", - "codeCommune": "77344", - "libelleAcheminement": "OISSERY", - "nomCommune": "OISSERY" + "codePostal": "85310", + "codeCommune": "85213", + "libelleAcheminement": "RIVES DE L YON", + "nomCommune": "RIVES DE L YON" }, { - "codePostal": "70600", - "codeCommune": "70122", - "libelleAcheminement": "CHAMPLITTE", - "nomCommune": "CHAMPLITTE" + "codePostal": "74350", + "codeCommune": "74009", + "libelleAcheminement": "ANDILLY", + "nomCommune": "ANDILLY" }, { - "codePostal": "83170", - "codeCommune": "83030", - "libelleAcheminement": "CAMPS LA SOURCE", - "nomCommune": "CAMPS LA SOURCE" + "codePostal": "85590", + "codeCommune": "85134", + "libelleAcheminement": "MALLIEVRE", + "nomCommune": "MALLIEVRE" }, { - "codePostal": "85200", - "codeCommune": "85244", - "libelleAcheminement": "ST MARTIN DE FRAIGNEAU", - "nomCommune": "ST MARTIN DE FRAIGNEAU" + "codePostal": "71620", + "codeCommune": "71405", + "libelleAcheminement": "ST DIDIER EN BRESSE", + "nomCommune": "ST DIDIER EN BRESSE" }, { - "codePostal": "77167", - "codeCommune": "77348", - "libelleAcheminement": "ORMESSON", - "nomCommune": "ORMESSON" + "codePostal": "85150", + "codeCommune": "85218", + "libelleAcheminement": "ST GEORGES DE POINTINDOUX", + "nomCommune": "ST GEORGES DE POINTINDOUX" }, { - "codePostal": "70100", - "codeCommune": "70125", - "libelleAcheminement": "CHAMPVANS", - "nomCommune": "CHAMPVANS" + "codePostal": "74370", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "83660", - "codeCommune": "83033", - "libelleAcheminement": "CARNOULES", - "nomCommune": "CARNOULES" + "codePostal": "85320", + "codeCommune": "85135", + "libelleAcheminement": "MAREUIL SUR LAY DISSAIS", + "nomCommune": "MAREUIL SUR LAY DISSAIS" }, { - "codePostal": "85140", - "codeCommune": "85246", - "libelleAcheminement": "ST MARTIN DES NOYERS", - "nomCommune": "ST MARTIN DES NOYERS" + "codePostal": "71110", + "codeCommune": "71406", + "libelleAcheminement": "ST DIDIER EN BRIONNAIS", + "nomCommune": "ST DIDIER EN BRIONNAIS" }, { - "codePostal": "77520", - "codeCommune": "77355", - "libelleAcheminement": "PAROY", - "nomCommune": "PAROY" + "codePostal": "85270", + "codeCommune": "85226", + "libelleAcheminement": "ST HILAIRE DE RIEZ", + "nomCommune": "ST HILAIRE DE RIEZ" }, { - "codePostal": "70140", - "codeCommune": "70126", - "libelleAcheminement": "CHANCEY", - "nomCommune": "CHANCEY" + "codePostal": "74600", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "83610", - "codeCommune": "83043", - "libelleAcheminement": "COLLOBRIERES", - "nomCommune": "COLLOBRIERES" + "codePostal": "85240", + "codeCommune": "85136", + "libelleAcheminement": "MARILLET", + "nomCommune": "MARILLET" }, { - "codePostal": "85390", - "codeCommune": "85252", - "libelleAcheminement": "ST MAURICE LE GIRARD", - "nomCommune": "ST MAURICE LE GIRARD" + "codePostal": "71190", + "codeCommune": "71407", + "libelleAcheminement": "ST DIDIER SUR ARROUX", + "nomCommune": "ST DIDIER SUR ARROUX" }, { - "codePostal": "77970", - "codeCommune": "77357", - "libelleAcheminement": "PECY", - "nomCommune": "PECY" + "codePostal": "85120", + "codeCommune": "85229", + "libelleAcheminement": "ST HILAIRE DE VOUST", + "nomCommune": "ST HILAIRE DE VOUST" }, { - "codePostal": "70300", - "codeCommune": "70128", - "libelleAcheminement": "LA CHAPELLE LES LUXEUIL", - "nomCommune": "LA CHAPELLE LES LUXEUIL" + "codePostal": "74600", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "83570", - "codeCommune": "83045", - "libelleAcheminement": "CORRENS", - "nomCommune": "CORRENS" + "codePostal": "85150", + "codeCommune": "85138", + "libelleAcheminement": "MARTINET", + "nomCommune": "MARTINET" }, { - "codePostal": "85580", - "codeCommune": "85255", - "libelleAcheminement": "ST MICHEL EN L HERM", - "nomCommune": "ST MICHEL EN L HERM" + "codePostal": "71490", + "codeCommune": "71409", + "libelleAcheminement": "ST EMILAND", + "nomCommune": "ST EMILAND" }, { - "codePostal": "77165", - "codeCommune": "77366", - "libelleAcheminement": "LE PLESSIS L EVEQUE", - "nomCommune": "LE PLESSIS L EVEQUE" + "codePostal": "85210", + "codeCommune": "85233", + "libelleAcheminement": "ST JEAN DE BEUGNE", + "nomCommune": "ST JEAN DE BEUGNE" }, { - "codePostal": "70500", - "codeCommune": "70143", - "libelleAcheminement": "CHAUVIREY LE CHATEL", - "nomCommune": "CHAUVIREY LE CHATEL" + "codePostal": "74910", + "codeCommune": "74029", + "libelleAcheminement": "BASSY", + "nomCommune": "BASSY" }, { - "codePostal": "83420", - "codeCommune": "83048", - "libelleAcheminement": "LA CROIX VALMER", - "nomCommune": "LA CROIX VALMER" + "codePostal": "85600", + "codeCommune": "85146", + "libelleAcheminement": "MONTAIGU VENDEE", + "nomCommune": "MONTAIGU VENDEE" }, { - "codePostal": "85670", - "codeCommune": "85260", - "libelleAcheminement": "ST PAUL MONT PENIT", - "nomCommune": "ST PAUL MONT PENIT" + "codePostal": "71370", + "codeCommune": "71410", + "libelleAcheminement": "ST ETIENNE EN BRESSE", + "nomCommune": "ST ETIENNE EN BRESSE" }, { - "codePostal": "77470", - "codeCommune": "77369", - "libelleAcheminement": "POINCY", - "nomCommune": "POINCY" + "codePostal": "85470", + "codeCommune": "85243", + "libelleAcheminement": "BREM SUR MER", + "nomCommune": "BREM SUR MER" }, { - "codePostal": "70360", - "codeCommune": "70148", - "libelleAcheminement": "CHEMILLY", - "nomCommune": "CHEMILLY" + "codePostal": "74380", + "codeCommune": "74040", + "libelleAcheminement": "BONNE", + "nomCommune": "BONNE" }, { - "codePostal": "83136", - "codeCommune": "83059", - "libelleAcheminement": "FORCALQUEIRET", - "nomCommune": "FORCALQUEIRET" + "codePostal": "85200", + "codeCommune": "85148", + "libelleAcheminement": "MONTREUIL", + "nomCommune": "MONTREUIL" }, { - "codePostal": "85420", - "codeCommune": "85265", - "libelleAcheminement": "ST PIERRE LE VIEUX", - "nomCommune": "ST PIERRE LE VIEUX" + "codePostal": "71670", + "codeCommune": "71413", + "libelleAcheminement": "ST FIRMIN", + "nomCommune": "ST FIRMIN" }, { - "codePostal": "77400", - "codeCommune": "77372", - "libelleAcheminement": "POMPONNE", - "nomCommune": "POMPONNE" + "codePostal": "85130", + "codeCommune": "85247", + "libelleAcheminement": "ST MARTIN DES TILLEULS", + "nomCommune": "ST MARTIN DES TILLEULS" }, { - "codePostal": "70400", - "codeCommune": "70149", - "libelleAcheminement": "CHENEBIER", - "nomCommune": "CHENEBIER" + "codePostal": "74420", + "codeCommune": "74050", + "libelleAcheminement": "BURDIGNIN", + "nomCommune": "BURDIGNIN" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "85390", + "codeCommune": "85154", + "libelleAcheminement": "MOUILLERON ST GERMAIN", + "nomCommune": "MOUILLERON ST GERMAIN" }, { - "codePostal": "85220", - "codeCommune": "85268", - "libelleAcheminement": "ST REVEREND", - "nomCommune": "ST REVEREND" + "codePostal": "71260", + "codeCommune": "71416", + "libelleAcheminement": "ST GENGOUX DE SCISSE", + "nomCommune": "ST GENGOUX DE SCISSE" }, { - "codePostal": "77310", - "codeCommune": "77378", - "libelleAcheminement": "PRINGY", - "nomCommune": "PRINGY" + "codePostal": "85390", + "codeCommune": "85252", + "libelleAcheminement": "ST MAURICE LE GIRARD", + "nomCommune": "ST MAURICE LE GIRARD" }, { - "codePostal": "70300", - "codeCommune": "70155", - "libelleAcheminement": "CITERS", - "nomCommune": "CITERS" + "codePostal": "74350", + "codeCommune": "74051", + "libelleAcheminement": "CERCIER", + "nomCommune": "CERCIER" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "85540", + "codeCommune": "85156", + "libelleAcheminement": "MOUTIERS LES MAUXFAITS", + "nomCommune": "MOUTIERS LES MAUXFAITS" }, { - "codePostal": "85540", - "codeCommune": "85277", - "libelleAcheminement": "ST VINCENT SUR GRAON", - "nomCommune": "ST VINCENT SUR GRAON" + "codePostal": "71330", + "codeCommune": "71419", + "libelleAcheminement": "ST GERMAIN DU BOIS", + "nomCommune": "ST GERMAIN DU BOIS" }, { - "codePostal": "77860", - "codeCommune": "77382", - "libelleAcheminement": "QUINCY VOISINS", - "nomCommune": "QUINCY VOISINS" + "codePostal": "85700", + "codeCommune": "85254", + "libelleAcheminement": "ST MESMIN", + "nomCommune": "ST MESMIN" }, { - "codePostal": "70200", - "codeCommune": "70178", - "libelleAcheminement": "LA COTE", - "nomCommune": "LA COTE" + "codePostal": "74360", + "codeCommune": "74058", + "libelleAcheminement": "LA CHAPELLE D ABONDANCE", + "nomCommune": "LA CHAPELLE D ABONDANCE" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "85370", + "codeCommune": "85159", + "libelleAcheminement": "NALLIERS", + "nomCommune": "NALLIERS" }, { - "codePostal": "85200", - "codeCommune": "85281", - "libelleAcheminement": "SERIGNE", - "nomCommune": "SERIGNE" + "codePostal": "71490", + "codeCommune": "71424", + "libelleAcheminement": "ST GERVAIS SUR COUCHES", + "nomCommune": "ST GERVAIS SUR COUCHES" }, { - "codePostal": "77510", - "codeCommune": "77385", - "libelleAcheminement": "REBAIS", - "nomCommune": "REBAIS" + "codePostal": "85660", + "codeCommune": "85262", + "libelleAcheminement": "ST PHILBERT DE BOUAINE", + "nomCommune": "ST PHILBERT DE BOUAINE" }, { - "codePostal": "70000", - "codeCommune": "70179", - "libelleAcheminement": "COULEVON", - "nomCommune": "COULEVON" + "codePostal": "74270", + "codeCommune": "74066", + "libelleAcheminement": "CHAVANNAZ", + "nomCommune": "CHAVANNAZ" }, { - "codePostal": "83980", - "codeCommune": "83070", - "libelleAcheminement": "LE LAVANDOU", - "nomCommune": "LE LAVANDOU" + "codePostal": "85320", + "codeCommune": "85175", + "libelleAcheminement": "LES PINEAUX", + "nomCommune": "LES PINEAUX" }, { - "codePostal": "85310", - "codeCommune": "85285", - "libelleAcheminement": "LE TABLIER", - "nomCommune": "LE TABLIER" + "codePostal": "71460", + "codeCommune": "71427", + "libelleAcheminement": "ST HURUGE", + "nomCommune": "ST HURUGE" }, { - "codePostal": "77540", - "codeCommune": "77393", - "libelleAcheminement": "ROZAY EN BRIE", - "nomCommune": "ROZAY EN BRIE" + "codePostal": "85450", + "codeCommune": "85267", + "libelleAcheminement": "STE RADEGONDE DES NOYERS", + "nomCommune": "STE RADEGONDE DES NOYERS" }, { - "codePostal": "70110", - "codeCommune": "70180", - "libelleAcheminement": "COURCHATON", - "nomCommune": "COURCHATON" + "codePostal": "74270", + "codeCommune": "74068", + "libelleAcheminement": "CHENE EN SEMINE", + "nomCommune": "CHENE EN SEMINE" }, { - "codePostal": "83670", - "codeCommune": "83084", - "libelleAcheminement": "MONTMEYAN", - "nomCommune": "MONTMEYAN" + "codePostal": "85770", + "codeCommune": "85177", + "libelleAcheminement": "LES VELLUIRE SUR VENDEE", + "nomCommune": "LES VELLUIRE SUR VENDEE" }, { - "codePostal": "85390", - "codeCommune": "85287", - "libelleAcheminement": "TALLUD STE GEMME", - "nomCommune": "TALLUD STE GEMME" + "codePostal": "71210", + "codeCommune": "71435", + "libelleAcheminement": "ST JULIEN SUR DHEUNE", + "nomCommune": "ST JULIEN SUR DHEUNE" }, { - "codePostal": "77950", - "codeCommune": "77394", - "libelleAcheminement": "RUBELLES", - "nomCommune": "RUBELLES" + "codePostal": "85410", + "codeCommune": "85271", + "libelleAcheminement": "ST SULPICE EN PAREDS", + "nomCommune": "ST SULPICE EN PAREDS" }, { - "codePostal": "70600", - "codeCommune": "70183", - "libelleAcheminement": "COURTESOULT ET GATEY", - "nomCommune": "COURTESOULT ET GATEY" + "codePostal": "74220", + "codeCommune": "74080", + "libelleAcheminement": "LA CLUSAZ", + "nomCommune": "LA CLUSAZ" }, { - "codePostal": "83860", - "codeCommune": "83087", - "libelleAcheminement": "NANS LES PINS", - "nomCommune": "NANS LES PINS" + "codePostal": "85700", + "codeCommune": "85187", + "libelleAcheminement": "REAUMUR", + "nomCommune": "REAUMUR" }, { - "codePostal": "85120", - "codeCommune": "85289", - "libelleAcheminement": "LA TARDIERE", - "nomCommune": "LA TARDIERE" + "codePostal": "71380", + "codeCommune": "71445", + "libelleAcheminement": "ST MARCEL", + "nomCommune": "ST MARCEL" }, { - "codePostal": "77515", - "codeCommune": "77400", - "libelleAcheminement": "ST AUGUSTIN", - "nomCommune": "ST AUGUSTIN" + "codePostal": "85570", + "codeCommune": "85274", + "libelleAcheminement": "ST VALERIEN", + "nomCommune": "ST VALERIEN" }, { - "codePostal": "70800", - "codeCommune": "70194", - "libelleAcheminement": "CUVE", - "nomCommune": "CUVE" + "codePostal": "74270", + "codeCommune": "74100", + "libelleAcheminement": "DESINGY", + "nomCommune": "DESINGY" }, { - "codePostal": "83520", - "codeCommune": "83107", - "libelleAcheminement": "ROQUEBRUNE SUR ARGENS", - "nomCommune": "ROQUEBRUNE SUR ARGENS" + "codePostal": "85210", + "codeCommune": "85188", + "libelleAcheminement": "LA REORTHE", + "nomCommune": "LA REORTHE" }, { - "codePostal": "85410", - "codeCommune": "85292", - "libelleAcheminement": "THOUARSAIS BOUILDROUX", - "nomCommune": "THOUARSAIS BOUILDROUX" + "codePostal": "71220", + "codeCommune": "71452", + "libelleAcheminement": "ST MARTIN DE SALENCEY", + "nomCommune": "ST MARTIN DE SALENCEY" }, { - "codePostal": "77160", - "codeCommune": "77403", - "libelleAcheminement": "ST BRICE", - "nomCommune": "ST BRICE" + "codePostal": "85390", + "codeCommune": "85287", + "libelleAcheminement": "TALLUD STE GEMME", + "nomCommune": "TALLUD STE GEMME" }, { - "codePostal": "70230", - "codeCommune": "70197", - "libelleAcheminement": "DAMPIERRE SUR LINOTTE", - "nomCommune": "DAMPIERRE SUR LINOTTE" + "codePostal": "74520", + "codeCommune": "74101", + "libelleAcheminement": "DINGY EN VUACHE", + "nomCommune": "DINGY EN VUACHE" }, { - "codePostal": "83170", - "codeCommune": "83110", - "libelleAcheminement": "ROUGIERS", - "nomCommune": "ROUGIERS" + "codePostal": "85000", + "codeCommune": "85191", + "libelleAcheminement": "LA ROCHE SUR YON", + "nomCommune": "LA ROCHE SUR YON" }, { - "codePostal": "85360", - "codeCommune": "85294", - "libelleAcheminement": "LA TRANCHE SUR MER", - "nomCommune": "LA TRANCHE SUR MER" + "codePostal": "71640", + "codeCommune": "71459", + "libelleAcheminement": "ST MARTIN SOUS MONTAIGU", + "nomCommune": "ST MARTIN SOUS MONTAIGU" }, { - "codePostal": "77470", - "codeCommune": "77408", - "libelleAcheminement": "ST FIACRE", - "nomCommune": "ST FIACRE" + "codePostal": "85440", + "codeCommune": "85288", + "libelleAcheminement": "TALMONT ST HILAIRE", + "nomCommune": "TALMONT ST HILAIRE" }, { - "codePostal": "70180", - "codeCommune": "70201", - "libelleAcheminement": "DELAIN", - "nomCommune": "DELAIN" + "codePostal": "74140", + "codeCommune": "74105", + "libelleAcheminement": "DOUVAINE", + "nomCommune": "DOUVAINE" }, { - "codePostal": "83136", - "codeCommune": "83111", - "libelleAcheminement": "STE ANASTASIE SUR ISSOLE", - "nomCommune": "STE ANASTASIE SUR ISSOLE" + "codePostal": "85130", + "codeCommune": "85198", + "libelleAcheminement": "ST AUBIN DES ORMEAUX", + "nomCommune": "ST AUBIN DES ORMEAUX" }, { - "codePostal": "85450", - "codeCommune": "85304", - "libelleAcheminement": "VOUILLE LES MARAIS", - "nomCommune": "VOUILLE LES MARAIS" + "codePostal": "71260", + "codeCommune": "71460", + "libelleAcheminement": "ST MAURICE DE SATONNAY", + "nomCommune": "ST MAURICE DE SATONNAY" }, { - "codePostal": "77660", - "codeCommune": "77415", - "libelleAcheminement": "ST JEAN LES DEUX JUMEAUX", - "nomCommune": "ST JEAN LES DEUX JUMEAUX" + "codePostal": "85480", + "codeCommune": "85291", + "libelleAcheminement": "THORIGNY", + "nomCommune": "THORIGNY" }, { - "codePostal": "70000", - "codeCommune": "70203", - "libelleAcheminement": "LA DEMIE", - "nomCommune": "LA DEMIE" + "codePostal": "74370", + "codeCommune": "74112", + "libelleAcheminement": "EPAGNY METZ TESSY", + "nomCommune": "EPAGNY METZ TESSY" }, { - "codePostal": "83270", - "codeCommune": "83112", - "libelleAcheminement": "ST CYR SUR MER", - "nomCommune": "ST CYR SUR MER" + "codePostal": "85110", + "codeCommune": "85202", + "libelleAcheminement": "STE CECILE", + "nomCommune": "STE CECILE" }, { - "codePostal": "86330", - "codeCommune": "86005", - "libelleAcheminement": "ANGLIERS", - "nomCommune": "ANGLIERS" + "codePostal": "71570", + "codeCommune": "71481", + "libelleAcheminement": "ST SYMPHORIEN D ANCELLES", + "nomCommune": "ST SYMPHORIEN D ANCELLES" }, { - "codePostal": "77370", - "codeCommune": "77416", - "libelleAcheminement": "ST JUST EN BRIE", - "nomCommune": "ST JUST EN BRIE" + "codePostal": "85360", + "codeCommune": "85294", + "libelleAcheminement": "LA TRANCHE SUR MER", + "nomCommune": "LA TRANCHE SUR MER" }, { - "codePostal": "70400", - "codeCommune": "70215", - "libelleAcheminement": "ERREVET", - "nomCommune": "ERREVET" + "codePostal": "74270", + "codeCommune": "74131", + "libelleAcheminement": "FRANGY", + "nomCommune": "FRANGY" }, { - "codePostal": "83560", - "codeCommune": "83114", - "libelleAcheminement": "ST MARTIN DE PALLIERES", - "nomCommune": "ST MARTIN DE PALLIERES" + "codePostal": "85410", + "codeCommune": "85205", + "libelleAcheminement": "ST CYR DES GATS", + "nomCommune": "ST CYR DES GATS" }, { - "codePostal": "86210", - "codeCommune": "86009", - "libelleAcheminement": "ARCHIGNY", - "nomCommune": "ARCHIGNY" + "codePostal": "71570", + "codeCommune": "71481", + "libelleAcheminement": "ST SYMPHORIEN D ANCELLES", + "nomCommune": "ST SYMPHORIEN D ANCELLES" }, { - "codePostal": "77169", - "codeCommune": "77436", - "libelleAcheminement": "ST SIMEON", - "nomCommune": "ST SIMEON" + "codePostal": "85500", + "codeCommune": "85302", + "libelleAcheminement": "CHANVERRIE", + "nomCommune": "CHANVERRIE" }, { - "codePostal": "70300", - "codeCommune": "70216", - "libelleAcheminement": "ESBOZ BREST", - "nomCommune": "ESBOZ BREST" + "codePostal": "74450", + "codeCommune": "74136", + "libelleAcheminement": "LE GRAND BORNAND", + "nomCommune": "LE GRAND BORNAND" }, { - "codePostal": "83530", - "codeCommune": "83118", - "libelleAcheminement": "ST RAPHAEL", - "nomCommune": "ST RAPHAEL" + "codePostal": "85400", + "codeCommune": "85216", + "libelleAcheminement": "STE GEMME LA PLAINE", + "nomCommune": "STE GEMME LA PLAINE" }, { - "codePostal": "86430", - "codeCommune": "86011", - "libelleAcheminement": "ASNIERES SUR BLOUR", - "nomCommune": "ASNIERES SUR BLOUR" + "codePostal": "71800", + "codeCommune": "71483", + "libelleAcheminement": "ST SYMPHORIEN DES BOIS", + "nomCommune": "ST SYMPHORIEN DES BOIS" }, { - "codePostal": "77580", - "codeCommune": "77443", - "libelleAcheminement": "SANCY", - "nomCommune": "SANCY" + "codePostal": "85770", + "codeCommune": "85303", + "libelleAcheminement": "VIX", + "nomCommune": "VIX" }, { - "codePostal": "70310", - "codeCommune": "70217", - "libelleAcheminement": "ESMOULIERES", - "nomCommune": "ESMOULIERES" + "codePostal": "74570", + "codeCommune": "74137", + "libelleAcheminement": "GROISY", + "nomCommune": "GROISY" }, { - "codePostal": "83640", - "codeCommune": "83120", - "libelleAcheminement": "ST ZACHARIE", - "nomCommune": "ST ZACHARIE" + "codePostal": "85210", + "codeCommune": "85223", + "libelleAcheminement": "STE HERMINE", + "nomCommune": "STE HERMINE" }, { - "codePostal": "86210", - "codeCommune": "86020", - "libelleAcheminement": "BELLEFONDS", - "nomCommune": "BELLEFONDS" + "codePostal": "71390", + "codeCommune": "71485", + "libelleAcheminement": "ST VALLERIN", + "nomCommune": "ST VALLERIN" }, { - "codePostal": "77176", - "codeCommune": "77445", - "libelleAcheminement": "SAVIGNY LE TEMPLE", - "nomCommune": "SAVIGNY LE TEMPLE" + "codePostal": "85120", + "codeCommune": "85305", + "libelleAcheminement": "VOUVANT", + "nomCommune": "VOUVANT" }, { - "codePostal": "70120", - "codeCommune": "70237", - "libelleAcheminement": "FLEUREY LES LAVONCOURT", - "nomCommune": "FLEUREY LES LAVONCOURT" + "codePostal": "74540", + "codeCommune": "74138", + "libelleAcheminement": "GRUFFY", + "nomCommune": "GRUFFY" }, { - "codePostal": "83870", - "codeCommune": "83127", - "libelleAcheminement": "SIGNES", - "nomCommune": "SIGNES" + "codePostal": "85270", + "codeCommune": "85226", + "libelleAcheminement": "ST HILAIRE DE RIEZ", + "nomCommune": "ST HILAIRE DE RIEZ" }, { - "codePostal": "86800", - "codeCommune": "86028", - "libelleAcheminement": "BIGNOUX", - "nomCommune": "BIGNOUX" + "codePostal": "71250", + "codeCommune": "71488", + "libelleAcheminement": "ST VINCENT DES PRES", + "nomCommune": "ST VINCENT DES PRES" }, { - "codePostal": "77700", - "codeCommune": "77449", - "libelleAcheminement": "SERRIS", - "nomCommune": "SERRIS" + "codePostal": "86110", + "codeCommune": "86002", + "libelleAcheminement": "AMBERRE", + "nomCommune": "AMBERRE" }, { - "codePostal": "70190", - "codeCommune": "70239", - "libelleAcheminement": "FONDREMAND", - "nomCommune": "FONDREMAND" + "codePostal": "74150", + "codeCommune": "74151", + "libelleAcheminement": "LORNAY", + "nomCommune": "LORNAY" }, { - "codePostal": "83140", - "codeCommune": "83129", - "libelleAcheminement": "SIX FOURS LES PLAGES", - "nomCommune": "SIX FOURS LES PLAGES" + "codePostal": "85240", + "codeCommune": "85227", + "libelleAcheminement": "ST HILAIRE DES LOGES", + "nomCommune": "ST HILAIRE DES LOGES" }, { - "codePostal": "86510", - "codeCommune": "86039", - "libelleAcheminement": "BRUX", - "nomCommune": "BRUX" + "codePostal": "71260", + "codeCommune": "71494", + "libelleAcheminement": "LA SALLE", + "nomCommune": "LA SALLE" }, { - "codePostal": "77640", - "codeCommune": "77451", - "libelleAcheminement": "SIGNY SIGNETS", - "nomCommune": "SIGNY SIGNETS" + "codePostal": "86210", + "codeCommune": "86009", + "libelleAcheminement": "ARCHIGNY", + "nomCommune": "ARCHIGNY" }, { - "codePostal": "70220", - "codeCommune": "70245", - "libelleAcheminement": "FOUGEROLLES ST VALBERT", - "nomCommune": "FOUGEROLLES ST VALBERT" + "codePostal": "74330", + "codeCommune": "74152", + "libelleAcheminement": "LOVAGNY", + "nomCommune": "LOVAGNY" }, { - "codePostal": "83210", - "codeCommune": "83130", - "libelleAcheminement": "SOLLIES PONT", - "nomCommune": "SOLLIES PONT" + "codePostal": "85210", + "codeCommune": "85235", + "libelleAcheminement": "ST JUIRE CHAMPGILLON", + "nomCommune": "ST JUIRE CHAMPGILLON" }, { - "codePostal": "86200", - "codeCommune": "86044", - "libelleAcheminement": "CEAUX EN LOUDUN", - "nomCommune": "CEAUX EN LOUDUN" + "codePostal": "71390", + "codeCommune": "71503", + "libelleAcheminement": "SAULES", + "nomCommune": "SAULES" }, { - "codePostal": "77460", - "codeCommune": "77458", - "libelleAcheminement": "SOUPPES SUR LOING", - "nomCommune": "SOUPPES SUR LOING" + "codePostal": "86460", + "codeCommune": "86015", + "libelleAcheminement": "AVAILLES LIMOUZINE", + "nomCommune": "AVAILLES LIMOUZINE" }, { - "codePostal": "70400", - "codeCommune": "70248", - "libelleAcheminement": "FRAHIER ET CHATEBIER", - "nomCommune": "FRAHIER ET CHATEBIER" + "codePostal": "74500", + "codeCommune": "74154", + "libelleAcheminement": "LUGRIN", + "nomCommune": "LUGRIN" }, { - "codePostal": "83210", - "codeCommune": "83131", - "libelleAcheminement": "SOLLIES TOUCAS", - "nomCommune": "SOLLIES TOUCAS" + "codePostal": "85590", + "codeCommune": "85242", + "libelleAcheminement": "ST MARS LA REORTHE", + "nomCommune": "ST MARS LA REORTHE" }, { - "codePostal": "86200", - "codeCommune": "86049", - "libelleAcheminement": "CHALAIS", - "nomCommune": "CHALAIS" + "codePostal": "71350", + "codeCommune": "71504", + "libelleAcheminement": "SAUNIERES", + "nomCommune": "SAUNIERES" }, { - "codePostal": "77131", - "codeCommune": "77469", - "libelleAcheminement": "TOUQUIN", - "nomCommune": "TOUQUIN" + "codePostal": "86130", + "codeCommune": "86019", + "libelleAcheminement": "BEAUMONT ST CYR", + "nomCommune": "BEAUMONT ST CYR" }, { - "codePostal": "70200", - "codeCommune": "70260", - "libelleAcheminement": "FROTEY LES LURE", - "nomCommune": "FROTEY LES LURE" + "codePostal": "74140", + "codeCommune": "74158", + "libelleAcheminement": "MACHILLY", + "nomCommune": "MACHILLY" }, { - "codePostal": "83670", - "codeCommune": "83135", - "libelleAcheminement": "TAVERNES", - "nomCommune": "TAVERNES" + "codePostal": "85210", + "codeCommune": "85248", + "libelleAcheminement": "ST MARTIN LARS EN STE HERMINE", + "nomCommune": "ST MARTIN LARS EN STE HERMINE" }, { - "codePostal": "86170", - "codeCommune": "86053", - "libelleAcheminement": "CHAMPIGNY EN ROCHEREAU", - "nomCommune": "CHAMPIGNY EN ROCHEREAU" + "codePostal": "71440", + "codeCommune": "71508", + "libelleAcheminement": "SAVIGNY SUR SEILLE", + "nomCommune": "SAVIGNY SUR SEILLE" }, { - "codePostal": "77370", - "codeCommune": "77481", - "libelleAcheminement": "VANVILLE", - "nomCommune": "VANVILLE" + "codePostal": "86490", + "codeCommune": "86019", + "libelleAcheminement": "BEAUMONT ST CYR", + "nomCommune": "BEAUMONT ST CYR" }, { - "codePostal": "70100", - "codeCommune": "70265", - "libelleAcheminement": "GERMIGNEY", - "nomCommune": "GERMIGNEY" + "codePostal": "74300", + "codeCommune": "74159", + "libelleAcheminement": "MAGLAND", + "nomCommune": "MAGLAND" }, { - "codePostal": "83100", - "codeCommune": "83137", - "libelleAcheminement": "TOULON", - "nomCommune": "TOULON" + "codePostal": "85580", + "codeCommune": "85255", + "libelleAcheminement": "ST MICHEL EN L HERM", + "nomCommune": "ST MICHEL EN L HERM" }, { - "codePostal": "86170", - "codeCommune": "86053", - "libelleAcheminement": "CHAMPIGNY EN ROCHEREAU", - "nomCommune": "CHAMPIGNY EN ROCHEREAU" + "codePostal": "71310", + "codeCommune": "71516", + "libelleAcheminement": "SERLEY", + "nomCommune": "SERLEY" }, { - "codePostal": "77910", - "codeCommune": "77483", - "libelleAcheminement": "VARREDDES", - "nomCommune": "VARREDDES" + "codePostal": "86800", + "codeCommune": "86028", + "libelleAcheminement": "BIGNOUX", + "nomCommune": "BIGNOUX" }, { - "codePostal": "70400", - "codeCommune": "70276", - "libelleAcheminement": "GRANGES LA VILLE", - "nomCommune": "GRANGES LA VILLE" + "codePostal": "74460", + "codeCommune": "74169", + "libelleAcheminement": "MARNAZ", + "nomCommune": "MARNAZ" }, { - "codePostal": "83440", - "codeCommune": "83138", - "libelleAcheminement": "TOURRETTES", - "nomCommune": "TOURRETTES" + "codePostal": "85500", + "codeCommune": "85259", + "libelleAcheminement": "ST PAUL EN PAREDS", + "nomCommune": "ST PAUL EN PAREDS" }, { - "codePostal": "86360", - "codeCommune": "86062", - "libelleAcheminement": "CHASSENEUIL DU POITOU", - "nomCommune": "CHASSENEUIL DU POITOU" + "codePostal": "71310", + "codeCommune": "71519", + "libelleAcheminement": "SERRIGNY EN BRESSE", + "nomCommune": "SERRIGNY EN BRESSE" }, { - "codePostal": "77440", - "codeCommune": "77490", - "libelleAcheminement": "VENDREST", - "nomCommune": "VENDREST" + "codePostal": "86390", + "codeCommune": "86035", + "libelleAcheminement": "BOURG ARCHAMBAULT", + "nomCommune": "BOURG ARCHAMBAULT" }, { - "codePostal": "70440", - "codeCommune": "70283", - "libelleAcheminement": "HAUT DU THEM CHATEAU LAMBERT", - "nomCommune": "HAUT DU THEM CHATEAU LAMBERT" + "codePostal": "74140", + "codeCommune": "74180", + "libelleAcheminement": "MESSERY", + "nomCommune": "MESSERY" }, { - "codePostal": "83720", - "codeCommune": "83141", - "libelleAcheminement": "TRANS EN PROVENCE", - "nomCommune": "TRANS EN PROVENCE" + "codePostal": "85320", + "codeCommune": "85261", + "libelleAcheminement": "STE PEXINE", + "nomCommune": "STE PEXINE" }, { - "codePostal": "86100", - "codeCommune": "86066", - "libelleAcheminement": "CHATELLERAULT", - "nomCommune": "CHATELLERAULT" + "codePostal": "71100", + "codeCommune": "71520", + "libelleAcheminement": "SEVREY", + "nomCommune": "SEVREY" }, { - "codePostal": "77670", - "codeCommune": "77494", - "libelleAcheminement": "VERNOU LA CELLE SUR SEINE", - "nomCommune": "VERNOU LA CELLE SUR SEINE" + "codePostal": "86290", + "codeCommune": "86037", + "libelleAcheminement": "BRIGUEIL LE CHANTRE", + "nomCommune": "BRIGUEIL LE CHANTRE" }, { - "codePostal": "70800", - "codeCommune": "70290", - "libelleAcheminement": "JASNEY", - "nomCommune": "JASNEY" + "codePostal": "74560", + "codeCommune": "74193", + "libelleAcheminement": "LA MURAZ", + "nomCommune": "LA MURAZ" }, { - "codePostal": "83560", - "codeCommune": "83146", - "libelleAcheminement": "LA VERDIERE", - "nomCommune": "LA VERDIERE" + "codePostal": "85420", + "codeCommune": "85269", + "libelleAcheminement": "ST SIGISMOND", + "nomCommune": "ST SIGISMOND" }, { - "codePostal": "86510", - "codeCommune": "86068", - "libelleAcheminement": "CHAUNAY", - "nomCommune": "CHAUNAY" + "codePostal": "71250", + "codeCommune": "71521", + "libelleAcheminement": "SIGY LE CHATEL", + "nomCommune": "SIGY LE CHATEL" }, { - "codePostal": "77450", - "codeCommune": "77498", - "libelleAcheminement": "VIGNELY", - "nomCommune": "VIGNELY" + "codePostal": "86310", + "codeCommune": "86040", + "libelleAcheminement": "LA BUSSIERE", + "nomCommune": "LA BUSSIERE" }, { - "codePostal": "70230", - "codeCommune": "70296", - "libelleAcheminement": "LARIANS ET MUNANS", - "nomCommune": "LARIANS ET MUNANS" + "codePostal": "74370", + "codeCommune": "74198", + "libelleAcheminement": "NAVES PARMELAN", + "nomCommune": "NAVES PARMELAN" }, { - "codePostal": "83560", - "codeCommune": "83150", - "libelleAcheminement": "VINON SUR VERDON", - "nomCommune": "VINON SUR VERDON" + "codePostal": "85230", + "codeCommune": "85273", + "libelleAcheminement": "ST URBAIN", + "nomCommune": "ST URBAIN" }, { - "codePostal": "86600", - "codeCommune": "86080", - "libelleAcheminement": "CLOUE", - "nomCommune": "CLOUE" + "codePostal": "71250", + "codeCommune": "71532", + "libelleAcheminement": "TAIZE", + "nomCommune": "TAIZE" }, { - "codePostal": "77710", - "codeCommune": "77500", - "libelleAcheminement": "VILLEBEON", - "nomCommune": "VILLEBEON" + "codePostal": "37160", + "codeCommune": "86042", + "libelleAcheminement": "BUXEUIL", + "nomCommune": "BUXEUIL" }, { - "codePostal": "70120", - "codeCommune": "70299", - "libelleAcheminement": "LAVONCOURT", - "nomCommune": "LAVONCOURT" + "codePostal": "74550", + "codeCommune": "74206", + "libelleAcheminement": "ORCIER", + "nomCommune": "ORCIER" }, { - "codePostal": "83820", - "codeCommune": "83152", - "libelleAcheminement": "RAYOL CANADEL SUR MER", - "nomCommune": "RAYOL CANADEL SUR MER" + "codePostal": "85540", + "codeCommune": "85277", + "libelleAcheminement": "ST VINCENT SUR GRAON", + "nomCommune": "ST VINCENT SUR GRAON" }, { - "codePostal": "86110", - "codeCommune": "86089", - "libelleAcheminement": "CUHON", - "nomCommune": "CUHON" + "codePostal": "71330", + "codeCommune": "71534", + "libelleAcheminement": "LE TARTRE", + "nomCommune": "LE TARTRE" }, { - "codePostal": "77710", - "codeCommune": "77504", - "libelleAcheminement": "VILLEMARECHAL", - "nomCommune": "VILLEMARECHAL" + "codePostal": "86200", + "codeCommune": "86044", + "libelleAcheminement": "CEAUX EN LOUDUN", + "nomCommune": "CEAUX EN LOUDUN" }, { - "codePostal": "70140", - "codeCommune": "70302", - "libelleAcheminement": "LIEUCOURT", - "nomCommune": "LIEUCOURT" + "codePostal": "74190", + "codeCommune": "74208", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "83820", - "codeCommune": "83152", - "libelleAcheminement": "RAYOL CANADEL SUR MER", - "nomCommune": "RAYOL CANADEL SUR MER" + "codePostal": "85300", + "codeCommune": "85280", + "libelleAcheminement": "SALLERTAINE", + "nomCommune": "SALLERTAINE" }, { - "codePostal": "86600", - "codeCommune": "86091", - "libelleAcheminement": "CURZAY SUR VONNE", - "nomCommune": "CURZAY SUR VONNE" + "codePostal": "71350", + "codeCommune": "71544", + "libelleAcheminement": "TOUTENANT", + "nomCommune": "TOUTENANT" }, { - "codePostal": "77480", - "codeCommune": "77507", - "libelleAcheminement": "VILLENAUXE LA PETITE", - "nomCommune": "VILLENAUXE LA PETITE" + "codePostal": "86140", + "codeCommune": "86047", + "libelleAcheminement": "CERNAY", + "nomCommune": "CERNAY" }, { - "codePostal": "70100", - "codeCommune": "70305", - "libelleAcheminement": "LOEUILLEY", - "nomCommune": "LOEUILLEY" + "codePostal": "74190", + "codeCommune": "74208", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "84390", - "codeCommune": "84005", - "libelleAcheminement": "AUREL", - "nomCommune": "AUREL" + "codePostal": "85110", + "codeCommune": "85282", + "libelleAcheminement": "SIGOURNAIS", + "nomCommune": "SIGOURNAIS" }, { - "codePostal": "86240", - "codeCommune": "86100", - "libelleAcheminement": "FONTAINE LE COMTE", - "nomCommune": "FONTAINE LE COMTE" + "codePostal": "71440", + "codeCommune": "71548", + "libelleAcheminement": "TRONCHY", + "nomCommune": "TRONCHY" }, { - "codePostal": "77174", - "codeCommune": "77510", - "libelleAcheminement": "VILLENEUVE ST DENIS", - "nomCommune": "VILLENEUVE ST DENIS" + "codePostal": "86380", + "codeCommune": "86048", + "libelleAcheminement": "CHABOURNAY", + "nomCommune": "CHABOURNAY" }, { - "codePostal": "70110", - "codeCommune": "70307", - "libelleAcheminement": "LONGEVELLE", - "nomCommune": "LONGEVELLE" + "codePostal": "74550", + "codeCommune": "74210", + "libelleAcheminement": "PERRIGNIER", + "nomCommune": "PERRIGNIER" }, { - "codePostal": "84000", - "codeCommune": "84007", - "libelleAcheminement": "AVIGNON", - "nomCommune": "AVIGNON" + "codePostal": "85210", + "codeCommune": "85290", + "libelleAcheminement": "THIRE", + "nomCommune": "THIRE" }, { - "codePostal": "86200", - "codeCommune": "86106", - "libelleAcheminement": "GLENOUZE", - "nomCommune": "GLENOUZE" + "codePostal": "71120", + "codeCommune": "71564", + "libelleAcheminement": "VENDENESSE LES CHAROLLES", + "nomCommune": "VENDENESSE LES CHAROLLES" }, { - "codePostal": "77230", - "codeCommune": "77511", - "libelleAcheminement": "VILLENEUVE SOUS DAMMARTIN", - "nomCommune": "VILLENEUVE SOUS DAMMARTIN" + "codePostal": "86510", + "codeCommune": "86051", + "libelleAcheminement": "CHAMPAGNE LE SEC", + "nomCommune": "CHAMPAGNE LE SEC" }, { - "codePostal": "70310", - "codeCommune": "70308", - "libelleAcheminement": "LA LONGINE", - "nomCommune": "LA LONGINE" + "codePostal": "74930", + "codeCommune": "74211", + "libelleAcheminement": "PERS JUSSY", + "nomCommune": "PERS JUSSY" }, { - "codePostal": "84240", - "codeCommune": "84009", - "libelleAcheminement": "LA BASTIDE DES JOURDANS", - "nomCommune": "LA BASTIDE DES JOURDANS" + "codePostal": "85410", + "codeCommune": "85292", + "libelleAcheminement": "THOUARSAIS BOUILDROUX", + "nomCommune": "THOUARSAIS BOUILDROUX" }, { - "codePostal": "86320", - "codeCommune": "86107", - "libelleAcheminement": "GOUEX", - "nomCommune": "GOUEX" + "codePostal": "71130", + "codeCommune": "71565", + "libelleAcheminement": "VENDENESSE SUR ARROUX", + "nomCommune": "VENDENESSE SUR ARROUX" }, { - "codePostal": "77130", - "codeCommune": "77516", - "libelleAcheminement": "VILLE ST JACQUES", - "nomCommune": "VILLE ST JACQUES" + "codePostal": "86400", + "codeCommune": "86054", + "libelleAcheminement": "CHAMPNIERS", + "nomCommune": "CHAMPNIERS" }, { - "codePostal": "70230", - "codeCommune": "70309", - "libelleAcheminement": "LOULANS VERCHAMP", - "nomCommune": "LOULANS VERCHAMP" + "codePostal": "74950", + "codeCommune": "74221", + "libelleAcheminement": "LE REPOSOIR", + "nomCommune": "LE REPOSOIR" }, { - "codePostal": "84210", - "codeCommune": "84011", - "libelleAcheminement": "LE BEAUCET", - "nomCommune": "LE BEAUCET" + "codePostal": "85130", + "codeCommune": "85302", + "libelleAcheminement": "CHANVERRIE", + "nomCommune": "CHANVERRIE" }, { - "codePostal": "86800", - "codeCommune": "86114", - "libelleAcheminement": "JARDRES", - "nomCommune": "JARDRES" + "codePostal": "71110", + "codeCommune": "71581", + "libelleAcheminement": "VINDECY", + "nomCommune": "VINDECY" }, { - "codePostal": "77410", - "codeCommune": "77517", - "libelleAcheminement": "VILLEVAUDE", - "nomCommune": "VILLEVAUDE" + "codePostal": "86210", + "codeCommune": "86058", + "libelleAcheminement": "LA CHAPELLE MOULIERE", + "nomCommune": "LA CHAPELLE MOULIERE" }, { - "codePostal": "70300", - "codeCommune": "70311", - "libelleAcheminement": "LUXEUIL LES BAINS", - "nomCommune": "LUXEUIL LES BAINS" + "codePostal": "74150", + "codeCommune": "74231", + "libelleAcheminement": "ST EUSEBE", + "nomCommune": "ST EUSEBE" }, { - "codePostal": "84480", - "codeCommune": "84020", - "libelleAcheminement": "BONNIEUX", - "nomCommune": "BONNIEUX" + "codePostal": "86700", + "codeCommune": "86003", + "libelleAcheminement": "ANCHE", + "nomCommune": "ANCHE" }, { - "codePostal": "86130", - "codeCommune": "86115", - "libelleAcheminement": "JAUNAY MARIGNY", - "nomCommune": "JAUNAY MARIGNY" + "codePostal": "71260", + "codeCommune": "71584", + "libelleAcheminement": "VIRE", + "nomCommune": "VIRE" }, { - "codePostal": "77410", - "codeCommune": "77517", - "libelleAcheminement": "VILLEVAUDE", - "nomCommune": "VILLEVAUDE" + "codePostal": "86250", + "codeCommune": "86063", + "libelleAcheminement": "CHATAIN", + "nomCommune": "CHATAIN" }, { - "codePostal": "70800", - "codeCommune": "70315", - "libelleAcheminement": "MAGNONCOURT", - "nomCommune": "MAGNONCOURT" + "codePostal": "74450", + "codeCommune": "74239", + "libelleAcheminement": "ST JEAN DE SIXT", + "nomCommune": "ST JEAN DE SIXT" }, { - "codePostal": "84160", - "codeCommune": "84026", - "libelleAcheminement": "CADENET", - "nomCommune": "CADENET" + "codePostal": "86330", + "codeCommune": "86005", + "libelleAcheminement": "ANGLIERS", + "nomCommune": "ANGLIERS" }, { - "codePostal": "86290", - "codeCommune": "86118", - "libelleAcheminement": "JOURNET", - "nomCommune": "JOURNET" + "codePostal": "71140", + "codeCommune": "71589", + "libelleAcheminement": "VITRY SUR LOIRE", + "nomCommune": "VITRY SUR LOIRE" }, { - "codePostal": "77114", - "codeCommune": "77522", - "libelleAcheminement": "VILLIERS SUR SEINE", - "nomCommune": "VILLIERS SUR SEINE" + "codePostal": "86370", + "codeCommune": "86065", + "libelleAcheminement": "CHATEAU LARCHER", + "nomCommune": "CHATEAU LARCHER" }, { - "codePostal": "70200", - "codeCommune": "70319", - "libelleAcheminement": "MAGNY JOBERT", - "nomCommune": "MAGNY JOBERT" + "codePostal": "74800", + "codeCommune": "74253", + "libelleAcheminement": "ST SIXT", + "nomCommune": "ST SIXT" }, { - "codePostal": "84230", - "codeCommune": "84037", - "libelleAcheminement": "CHATEAUNEUF DU PAPE", - "nomCommune": "CHATEAUNEUF DU PAPE" + "codePostal": "86530", + "codeCommune": "86014", + "libelleAcheminement": "AVAILLES EN CHATELLERAULT", + "nomCommune": "AVAILLES EN CHATELLERAULT" }, { - "codePostal": "86350", - "codeCommune": "86119", - "libelleAcheminement": "JOUSSE", - "nomCommune": "JOUSSE" + "codePostal": "72600", + "codeCommune": "72002", + "libelleAcheminement": "AILLIERES BEAUVOIR", + "nomCommune": "AILLIERES BEAUVOIR" }, { - "codePostal": "77480", - "codeCommune": "77523", - "libelleAcheminement": "VILLUIS", - "nomCommune": "VILLUIS" + "codePostal": "86300", + "codeCommune": "86070", + "libelleAcheminement": "CHAUVIGNY", + "nomCommune": "CHAUVIGNY" }, { - "codePostal": "70200", - "codeCommune": "70321", - "libelleAcheminement": "MAGNY VERNOIS", - "nomCommune": "MAGNY VERNOIS" + "codePostal": "74270", + "codeCommune": "74257", + "libelleAcheminement": "SALLENOVES", + "nomCommune": "SALLENOVES" }, { - "codePostal": "84350", - "codeCommune": "84039", - "libelleAcheminement": "COURTHEZON", - "nomCommune": "COURTHEZON" + "codePostal": "86190", + "codeCommune": "86017", + "libelleAcheminement": "AYRON", + "nomCommune": "AYRON" }, { - "codePostal": "86390", - "codeCommune": "86120", - "libelleAcheminement": "LATHUS ST REMY", - "nomCommune": "LATHUS ST REMY" + "codePostal": "72800", + "codeCommune": "72013", + "libelleAcheminement": "AUBIGNE RACAN", + "nomCommune": "AUBIGNE RACAN" }, { - "codePostal": "77520", - "codeCommune": "77524", - "libelleAcheminement": "VIMPELLES", - "nomCommune": "VIMPELLES" + "codePostal": "86300", + "codeCommune": "86070", + "libelleAcheminement": "CHAUVIGNY", + "nomCommune": "CHAUVIGNY" }, { - "codePostal": "70210", - "codeCommune": "70323", - "libelleAcheminement": "MAILLERONCOURT ST PANCRAS", - "nomCommune": "MAILLERONCOURT ST PANCRAS" + "codePostal": "74910", + "codeCommune": "74269", + "libelleAcheminement": "SEYSSEL", + "nomCommune": "SEYSSEL" }, { - "codePostal": "84400", - "codeCommune": "84047", - "libelleAcheminement": "GARGAS", - "nomCommune": "GARGAS" + "codePostal": "86120", + "codeCommune": "86022", + "libelleAcheminement": "BERRIE", + "nomCommune": "BERRIE" }, { - "codePostal": "86470", - "codeCommune": "86123", - "libelleAcheminement": "BOIVRE LA VALLEE", - "nomCommune": "BOIVRE LA VALLEE" + "codePostal": "72400", + "codeCommune": "72020", + "libelleAcheminement": "AVEZE", + "nomCommune": "AVEZE" }, { - "codePostal": "78770", - "codeCommune": "78013", - "libelleAcheminement": "ANDELU", - "nomCommune": "ANDELU" + "codePostal": "86170", + "codeCommune": "86073", + "libelleAcheminement": "CHERVES", + "nomCommune": "CHERVES" }, { - "codePostal": "70120", - "codeCommune": "70329", - "libelleAcheminement": "MALVILLERS", - "nomCommune": "MALVILLERS" + "codePostal": "74570", + "codeCommune": "74282", + "libelleAcheminement": "FILLIERE", + "nomCommune": "FILLIERE" }, { - "codePostal": "84400", - "codeCommune": "84048", - "libelleAcheminement": "GIGNAC", - "nomCommune": "GIGNAC" + "codePostal": "86420", + "codeCommune": "86023", + "libelleAcheminement": "BERTHEGON", + "nomCommune": "BERTHEGON" }, { - "codePostal": "86240", - "codeCommune": "86133", - "libelleAcheminement": "LIGUGE", - "nomCommune": "LIGUGE" + "codePostal": "72430", + "codeCommune": "72021", + "libelleAcheminement": "AVOISE", + "nomCommune": "AVOISE" }, { - "codePostal": "78930", - "codeCommune": "78031", - "libelleAcheminement": "AUFFREVILLE BRASSEUIL", - "nomCommune": "AUFFREVILLE BRASSEUIL" + "codePostal": "86320", + "codeCommune": "86077", + "libelleAcheminement": "CIVAUX", + "nomCommune": "CIVAUX" }, { - "codePostal": "70400", - "codeCommune": "70330", - "libelleAcheminement": "MANDREVILLARS", - "nomCommune": "MANDREVILLARS" + "codePostal": "74910", + "codeCommune": "74285", + "libelleAcheminement": "USINENS", + "nomCommune": "USINENS" }, { - "codePostal": "84240", - "codeCommune": "84052", - "libelleAcheminement": "GRAMBOIS", - "nomCommune": "GRAMBOIS" + "codePostal": "86120", + "codeCommune": "86026", + "libelleAcheminement": "BEUXES", + "nomCommune": "BEUXES" + }, + { + "codePostal": "72500", + "codeCommune": "72028", + "libelleAcheminement": "BEAUMONT PIED DE BOEUF", + "nomCommune": "BEAUMONT PIED DE BOEUF" }, { "codePostal": "86200", - "codeCommune": "86137", - "libelleAcheminement": "LOUDUN", - "nomCommune": "LOUDUN" + "codeCommune": "86079", + "libelleAcheminement": "LA ROCHE RIGAULT", + "nomCommune": "LA ROCHE RIGAULT" }, { - "codePostal": "78550", - "codeCommune": "78048", - "libelleAcheminement": "BAZAINVILLE", - "nomCommune": "BAZAINVILLE" + "codePostal": "74440", + "codeCommune": "74294", + "libelleAcheminement": "VERCHAIX", + "nomCommune": "VERCHAIX" }, { - "codePostal": "70120", - "codeCommune": "70337", - "libelleAcheminement": "MELIN", - "nomCommune": "MELIN" + "codePostal": "86400", + "codeCommune": "86029", + "libelleAcheminement": "BLANZAY", + "nomCommune": "BLANZAY" }, { - "codePostal": "84400", - "codeCommune": "84060", - "libelleAcheminement": "LAGARDE D APT", - "nomCommune": "LAGARDE D APT" + "codePostal": "72320", + "codeCommune": "72032", + "libelleAcheminement": "BERFAY", + "nomCommune": "BERFAY" }, { - "codePostal": "86320", - "codeCommune": "86140", - "libelleAcheminement": "LUSSAC LES CHATEAUX", - "nomCommune": "LUSSAC LES CHATEAUX" + "codePostal": "86600", + "codeCommune": "86080", + "libelleAcheminement": "CLOUE", + "nomCommune": "CLOUE" }, { - "codePostal": "78930", - "codeCommune": "78070", - "libelleAcheminement": "BOINVILLE EN MANTOIS", - "nomCommune": "BOINVILLE EN MANTOIS" + "codePostal": "74200", + "codeCommune": "74295", + "libelleAcheminement": "LA VERNAZ", + "nomCommune": "LA VERNAZ" }, { - "codePostal": "70160", - "codeCommune": "70343", - "libelleAcheminement": "MERSUAY", - "nomCommune": "MERSUAY" + "codePostal": "86160", + "codeCommune": "86052", + "libelleAcheminement": "CHAMPAGNE ST HILAIRE", + "nomCommune": "CHAMPAGNE ST HILAIRE" }, { - "codePostal": "84290", - "codeCommune": "84061", - "libelleAcheminement": "LAGARDE PAREOL", - "nomCommune": "LAGARDE PAREOL" + "codePostal": "72610", + "codeCommune": "72034", + "libelleAcheminement": "BERUS", + "nomCommune": "BERUS" }, { - "codePostal": "86330", - "codeCommune": "86149", - "libelleAcheminement": "MARTAIZE", - "nomCommune": "MARTAIZE" + "codePostal": "86700", + "codeCommune": "86082", + "libelleAcheminement": "VALENCE EN POITOU", + "nomCommune": "VALENCE EN POITOU" }, { - "codePostal": "78125", - "codeCommune": "78077", - "libelleAcheminement": "LA BOISSIERE ECOLE", - "nomCommune": "LA BOISSIERE ECOLE" + "codePostal": "74100", + "codeCommune": "74298", + "libelleAcheminement": "VETRAZ MONTHOUX", + "nomCommune": "VETRAZ MONTHOUX" }, { - "codePostal": "70240", - "codeCommune": "70351", - "libelleAcheminement": "MOLLANS", - "nomCommune": "MOLLANS" + "codePostal": "86170", + "codeCommune": "86053", + "libelleAcheminement": "CHAMPIGNY EN ROCHEREAU", + "nomCommune": "CHAMPIGNY EN ROCHEREAU" }, { - "codePostal": "84800", - "codeCommune": "84062", - "libelleAcheminement": "LAGNES", - "nomCommune": "LAGNES" + "codePostal": "72110", + "codeCommune": "72039", + "libelleAcheminement": "BONNETABLE", + "nomCommune": "BONNETABLE" }, { - "codePostal": "86200", - "codeCommune": "86151", - "libelleAcheminement": "MAULAY", - "nomCommune": "MAULAY" + "codePostal": "86110", + "codeCommune": "86085", + "libelleAcheminement": "COUSSAY", + "nomCommune": "COUSSAY" }, { - "codePostal": "78490", - "codeCommune": "78084", - "libelleAcheminement": "BOISSY SANS AVOIR", - "nomCommune": "BOISSY SANS AVOIR" + "codePostal": "74100", + "codeCommune": "74305", + "libelleAcheminement": "VILLE LA GRAND", + "nomCommune": "VILLE LA GRAND" }, { - "codePostal": "70140", - "codeCommune": "70353", - "libelleAcheminement": "MONTAGNEY", - "nomCommune": "MONTAGNEY" + "codePostal": "86250", + "codeCommune": "86055", + "libelleAcheminement": "LA CHAPELLE BATON", + "nomCommune": "LA CHAPELLE BATON" }, { - "codePostal": "84840", - "codeCommune": "84064", - "libelleAcheminement": "LAPALUD", - "nomCommune": "LAPALUD" + "codePostal": "72610", + "codeCommune": "72043", + "libelleAcheminement": "BOURG LE ROI", + "nomCommune": "BOURG LE ROI" }, { - "codePostal": "86460", - "codeCommune": "86152", - "libelleAcheminement": "MAUPREVOIR", - "nomCommune": "MAUPREVOIR" + "codePostal": "86120", + "codeCommune": "86090", + "libelleAcheminement": "CURCAY SUR DIVE", + "nomCommune": "CURCAY SUR DIVE" }, { - "codePostal": "78830", - "codeCommune": "78087", - "libelleAcheminement": "BONNELLES", - "nomCommune": "BONNELLES" + "codePostal": "74540", + "codeCommune": "74310", + "libelleAcheminement": "VIUZ LA CHIESAZ", + "nomCommune": "VIUZ LA CHIESAZ" }, { - "codePostal": "70210", - "codeCommune": "70360", - "libelleAcheminement": "MONTDORE", - "nomCommune": "MONTDORE" + "codePostal": "86360", + "codeCommune": "86062", + "libelleAcheminement": "CHASSENEUIL DU POITOU", + "nomCommune": "CHASSENEUIL DU POITOU" }, { - "codePostal": "84160", - "codeCommune": "84068", - "libelleAcheminement": "LOURMARIN", - "nomCommune": "LOURMARIN" + "codePostal": "72300", + "codeCommune": "72061", + "libelleAcheminement": "LA CHAPELLE D ALIGNE", + "nomCommune": "LA CHAPELLE D ALIGNE" }, { - "codePostal": "86200", - "codeCommune": "86156", - "libelleAcheminement": "MESSEME", - "nomCommune": "MESSEME" + "codePostal": "86600", + "codeCommune": "86091", + "libelleAcheminement": "CURZAY SUR VONNE", + "nomCommune": "CURZAY SUR VONNE" }, { - "codePostal": "78410", - "codeCommune": "78090", - "libelleAcheminement": "BOUAFLE", - "nomCommune": "BOUAFLE" + "codePostal": "74130", + "codeCommune": "74312", + "libelleAcheminement": "VOUGY", + "nomCommune": "VOUGY" }, { - "codePostal": "70000", - "codeCommune": "70363", - "libelleAcheminement": "MONTIGNY LES VESOUL", - "nomCommune": "MONTIGNY LES VESOUL" + "codePostal": "86350", + "codeCommune": "86064", + "libelleAcheminement": "CHATEAU GARNIER", + "nomCommune": "CHATEAU GARNIER" }, { - "codePostal": "84340", - "codeCommune": "84069", - "libelleAcheminement": "MALAUCENE", - "nomCommune": "MALAUCENE" + "codePostal": "72650", + "codeCommune": "72065", + "libelleAcheminement": "LA CHAPELLE ST AUBIN", + "nomCommune": "LA CHAPELLE ST AUBIN" }, { - "codePostal": "86550", - "codeCommune": "86157", - "libelleAcheminement": "MIGNALOUX BEAUVOIR", - "nomCommune": "MIGNALOUX BEAUVOIR" + "codePostal": "86340", + "codeCommune": "86099", + "libelleAcheminement": "FLEURE", + "nomCommune": "FLEURE" }, { - "codePostal": "78955", - "codeCommune": "78123", - "libelleAcheminement": "CARRIERES SOUS POISSY", - "nomCommune": "CARRIERES SOUS POISSY" + "codePostal": "74140", + "codeCommune": "74315", + "libelleAcheminement": "YVOIRE", + "nomCommune": "YVOIRE" }, { - "codePostal": "70000", - "codeCommune": "70367", - "libelleAcheminement": "MONT LE VERNOIS", - "nomCommune": "MONT LE VERNOIS" + "codePostal": "86270", + "codeCommune": "86086", + "libelleAcheminement": "COUSSAY LES BOIS", + "nomCommune": "COUSSAY LES BOIS" }, { - "codePostal": "84360", - "codeCommune": "84074", - "libelleAcheminement": "MERINDOL", - "nomCommune": "MERINDOL" + "codePostal": "72160", + "codeCommune": "72067", + "libelleAcheminement": "LA CHAPELLE ST REMY", + "nomCommune": "LA CHAPELLE ST REMY" }, { - "codePostal": "86120", - "codeCommune": "86169", - "libelleAcheminement": "MORTON", - "nomCommune": "MORTON" + "codePostal": "86160", + "codeCommune": "86103", + "libelleAcheminement": "GENCAY", + "nomCommune": "GENCAY" }, { - "codePostal": "78720", - "codeCommune": "78128", - "libelleAcheminement": "CERNAY LA VILLE", - "nomCommune": "CERNAY LA VILLE" + "codePostal": "75009", + "codeCommune": "75109", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 09" }, { - "codePostal": "70500", - "codeCommune": "70372", - "libelleAcheminement": "MONTUREUX LES BAULAY", - "nomCommune": "MONTUREUX LES BAULAY" + "codePostal": "86110", + "codeCommune": "86087", + "libelleAcheminement": "CRAON", + "nomCommune": "CRAON" }, { - "codePostal": "84120", - "codeCommune": "84076", - "libelleAcheminement": "MIRABEAU", - "nomCommune": "MIRABEAU" + "codePostal": "72340", + "codeCommune": "72068", + "libelleAcheminement": "LA CHARTRE SUR LE LOIR", + "nomCommune": "LA CHARTRE SUR LE LOIR" }, { - "codePostal": "86430", - "codeCommune": "86172", - "libelleAcheminement": "MOUTERRE SUR BLOURDE", - "nomCommune": "MOUTERRE SUR BLOURDE" + "codePostal": "86110", + "codeCommune": "86108", + "libelleAcheminement": "LA GRIMAUDIERE", + "nomCommune": "LA GRIMAUDIERE" }, { - "codePostal": "78240", - "codeCommune": "78133", - "libelleAcheminement": "CHAMBOURCY", - "nomCommune": "CHAMBOURCY" + "codePostal": "75010", + "codeCommune": "75110", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 10" }, { - "codePostal": "70120", - "codeCommune": "70373", - "libelleAcheminement": "LA ROCHE MOREY", - "nomCommune": "LA ROCHE MOREY" + "codePostal": "86240", + "codeCommune": "86088", + "libelleAcheminement": "CROUTELLE", + "nomCommune": "CROUTELLE" }, { - "codePostal": "84220", - "codeCommune": "84085", - "libelleAcheminement": "MURS", - "nomCommune": "MURS" + "codePostal": "72500", + "codeCommune": "72071", + "libelleAcheminement": "MONTVAL SUR LOIR", + "nomCommune": "MONTVAL SUR LOIR" }, { "codePostal": "86420", - "codeCommune": "86201", - "libelleAcheminement": "PRINCAY", - "nomCommune": "PRINCAY" + "codeCommune": "86109", + "libelleAcheminement": "GUESNES", + "nomCommune": "GUESNES" }, { - "codePostal": "78150", - "codeCommune": "78158", - "libelleAcheminement": "LE CHESNAY ROCQUENCOURT", - "nomCommune": "LE CHESNAY ROCQUENCOURT" + "codePostal": "75013", + "codeCommune": "75113", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 13" }, { - "codePostal": "70120", - "codeCommune": "70373", - "libelleAcheminement": "LA ROCHE MOREY", - "nomCommune": "LA ROCHE MOREY" + "codePostal": "86410", + "codeCommune": "86094", + "libelleAcheminement": "DIENNE", + "nomCommune": "DIENNE" }, { - "codePostal": "84580", - "codeCommune": "84086", - "libelleAcheminement": "OPPEDE", - "nomCommune": "OPPEDE" + "codePostal": "72210", + "codeCommune": "72075", + "libelleAcheminement": "CHEMIRE LE GAUDIN", + "nomCommune": "CHEMIRE LE GAUDIN" }, { - "codePostal": "86340", - "codeCommune": "86209", - "libelleAcheminement": "ROCHES PREMARIE ANDILLE", - "nomCommune": "ROCHES PREMARIE ANDILLE" + "codePostal": "86220", + "codeCommune": "86111", + "libelleAcheminement": "INGRANDES", + "nomCommune": "INGRANDES" }, { - "codePostal": "78150", - "codeCommune": "78158", - "libelleAcheminement": "LE CHESNAY ROCQUENCOURT", - "nomCommune": "LE CHESNAY ROCQUENCOURT" + "codePostal": "75018", + "codeCommune": "75118", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 18" }, { - "codePostal": "70000", - "codeCommune": "70378", - "libelleAcheminement": "NAVENNE", - "nomCommune": "NAVENNE" + "codePostal": "86140", + "codeCommune": "86096", + "libelleAcheminement": "DOUSSAY", + "nomCommune": "DOUSSAY" + }, + { + "codePostal": "72610", + "codeCommune": "72076", + "libelleAcheminement": "CHENAY", + "nomCommune": "CHENAY" }, { - "codePostal": "84210", - "codeCommune": "84088", - "libelleAcheminement": "PERNES LES FONTAINES", - "nomCommune": "PERNES LES FONTAINES" + "codePostal": "86150", + "codeCommune": "86112", + "libelleAcheminement": "L ISLE JOURDAIN", + "nomCommune": "L ISLE JOURDAIN" }, { - "codePostal": "86480", - "codeCommune": "86213", - "libelleAcheminement": "ROUILLE", - "nomCommune": "ROUILLE" + "codePostal": "75019", + "codeCommune": "75119", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 19" }, { - "codePostal": "78460", - "codeCommune": "78162", - "libelleAcheminement": "CHOISEL", - "nomCommune": "CHOISEL" + "codePostal": "86300", + "codeCommune": "86098", + "libelleAcheminement": "FLEIX", + "nomCommune": "FLEIX" }, { - "codePostal": "70160", - "codeCommune": "70380", - "libelleAcheminement": "NEUREY EN VAUX", - "nomCommune": "NEUREY EN VAUX" + "codePostal": "72170", + "codeCommune": "72078", + "libelleAcheminement": "CHERANCE", + "nomCommune": "CHERANCE" }, { - "codePostal": "84110", - "codeCommune": "84098", - "libelleAcheminement": "ROAIX", - "nomCommune": "ROAIX" + "codePostal": "86130", + "codeCommune": "86115", + "libelleAcheminement": "JAUNAY MARIGNY", + "nomCommune": "JAUNAY MARIGNY" }, { - "codePostal": "86230", - "codeCommune": "86217", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "76190", + "codeCommune": "76001", + "libelleAcheminement": "ALLOUVILLE BELLEFOSSE", + "nomCommune": "ALLOUVILLE BELLEFOSSE" }, { - "codePostal": "78310", - "codeCommune": "78168", - "libelleAcheminement": "COIGNIERES", - "nomCommune": "COIGNIERES" + "codePostal": "86470", + "codeCommune": "86123", + "libelleAcheminement": "BOIVRE LA VALLEE", + "nomCommune": "BOIVRE LA VALLEE" }, { - "codePostal": "70100", - "codeCommune": "70389", - "libelleAcheminement": "NOIRON", - "nomCommune": "NOIRON" + "codePostal": "72240", + "codeCommune": "72089", + "libelleAcheminement": "CONLIE", + "nomCommune": "CONLIE" }, { - "codePostal": "84290", - "codeCommune": "84106", - "libelleAcheminement": "STE CECILE LES VIGNES", - "nomCommune": "STE CECILE LES VIGNES" + "codePostal": "86390", + "codeCommune": "86120", + "libelleAcheminement": "LATHUS ST REMY", + "nomCommune": "LATHUS ST REMY" }, { - "codePostal": "86400", - "codeCommune": "86220", - "libelleAcheminement": "ST GAUDENT", - "nomCommune": "ST GAUDENT" + "codePostal": "76920", + "codeCommune": "76005", + "libelleAcheminement": "AMFREVILLE LA MI VOIE", + "nomCommune": "AMFREVILLE LA MI VOIE" }, { - "codePostal": "78111", - "codeCommune": "78192", - "libelleAcheminement": "DAMMARTIN EN SERVE", - "nomCommune": "DAMMARTIN EN SERVE" + "codePostal": "86270", + "codeCommune": "86129", + "libelleAcheminement": "LESIGNY", + "nomCommune": "LESIGNY" }, { - "codePostal": "70120", - "codeCommune": "70392", - "libelleAcheminement": "OIGNEY", - "nomCommune": "OIGNEY" + "codePostal": "72160", + "codeCommune": "72090", + "libelleAcheminement": "CONNERRE", + "nomCommune": "CONNERRE" }, { - "codePostal": "84760", - "codeCommune": "84113", - "libelleAcheminement": "ST MARTIN DE LA BRASQUE", - "nomCommune": "ST MARTIN DE LA BRASQUE" + "codePostal": "86300", + "codeCommune": "86122", + "libelleAcheminement": "LAUTHIERS", + "nomCommune": "LAUTHIERS" }, { - "codePostal": "86140", - "codeCommune": "86221", - "libelleAcheminement": "ST GENEST D AMBIERE", - "nomCommune": "ST GENEST D AMBIERE" + "codePostal": "76710", + "codeCommune": "76007", + "libelleAcheminement": "ANCEAUMEVILLE", + "nomCommune": "ANCEAUMEVILLE" }, { - "codePostal": "78720", - "codeCommune": "78193", - "libelleAcheminement": "DAMPIERRE EN YVELINES", - "nomCommune": "DAMPIERRE EN YVELINES" + "codePostal": "86290", + "codeCommune": "86132", + "libelleAcheminement": "LIGLET", + "nomCommune": "LIGLET" }, { - "codePostal": "70360", - "codeCommune": "70401", - "libelleAcheminement": "OVANCHES", - "nomCommune": "OVANCHES" + "codePostal": "72110", + "codeCommune": "72101", + "libelleAcheminement": "COURCEMONT", + "nomCommune": "COURCEMONT" }, { - "codePostal": "84330", - "codeCommune": "84115", - "libelleAcheminement": "ST PIERRE DE VASSOLS", - "nomCommune": "ST PIERRE DE VASSOLS" + "codePostal": "86470", + "codeCommune": "86123", + "libelleAcheminement": "BOIVRE LA VALLEE", + "nomCommune": "BOIVRE LA VALLEE" }, { - "codePostal": "86230", - "codeCommune": "86224", - "libelleAcheminement": "ST GERVAIS LES TROIS CLOCHERS", - "nomCommune": "ST GERVAIS LES TROIS CLOCHERS" + "codePostal": "76540", + "codeCommune": "76013", + "libelleAcheminement": "ANGERVILLE LA MARTEL", + "nomCommune": "ANGERVILLE LA MARTEL" }, { - "codePostal": "78740", - "codeCommune": "78227", - "libelleAcheminement": "EVECQUEMONT", - "nomCommune": "EVECQUEMONT" + "codePostal": "86240", + "codeCommune": "86133", + "libelleAcheminement": "LIGUGE", + "nomCommune": "LIGUGE" }, { - "codePostal": "70130", - "codeCommune": "70418", - "libelleAcheminement": "LA ROMAINE", - "nomCommune": "LA ROMAINE" + "codePostal": "72550", + "codeCommune": "72113", + "libelleAcheminement": "DEGRE", + "nomCommune": "DEGRE" }, { - "codePostal": "84110", - "codeCommune": "84116", - "libelleAcheminement": "ST ROMAIN EN VIENNOIS", - "nomCommune": "ST ROMAIN EN VIENNOIS" + "codePostal": "86300", + "codeCommune": "86126", + "libelleAcheminement": "LEIGNES SUR FONTAINE", + "nomCommune": "LEIGNES SUR FONTAINE" }, { - "codePostal": "86330", - "codeCommune": "86225", - "libelleAcheminement": "ST JEAN DE SAUVES", - "nomCommune": "ST JEAN DE SAUVES" + "codePostal": "76280", + "codeCommune": "76014", + "libelleAcheminement": "ANGERVILLE L ORCHER", + "nomCommune": "ANGERVILLE L ORCHER" }, { - "codePostal": "78790", - "codeCommune": "78237", - "libelleAcheminement": "FLINS NEUVE EGLISE", - "nomCommune": "FLINS NEUVE EGLISE" + "codePostal": "86400", + "codeCommune": "86136", + "libelleAcheminement": "LIZANT", + "nomCommune": "LIZANT" }, { - "codePostal": "70130", - "codeCommune": "70438", - "libelleAcheminement": "RAY SUR SAONE", - "nomCommune": "RAY SUR SAONE" + "codePostal": "72170", + "codeCommune": "72120", + "libelleAcheminement": "DOUCELLES", + "nomCommune": "DOUCELLES" }, { - "codePostal": "84390", - "codeCommune": "84125", - "libelleAcheminement": "SAVOILLAN", - "nomCommune": "SAVOILLAN" + "codePostal": "86220", + "codeCommune": "86130", + "libelleAcheminement": "LEUGNY", + "nomCommune": "LEUGNY" }, { - "codePostal": "86410", - "codeCommune": "86228", - "libelleAcheminement": "ST LAURENT DE JOURDES", - "nomCommune": "ST LAURENT DE JOURDES" + "codePostal": "76280", + "codeCommune": "76017", + "libelleAcheminement": "ANGLESQUEVILLE L ESNEVAL", + "nomCommune": "ANGLESQUEVILLE L ESNEVAL" }, { - "codePostal": "78410", - "codeCommune": "78238", - "libelleAcheminement": "FLINS SUR SEINE", - "nomCommune": "FLINS SUR SEINE" + "codePostal": "86370", + "codeCommune": "86145", + "libelleAcheminement": "MARCAY", + "nomCommune": "MARCAY" }, { - "codePostal": "70190", - "codeCommune": "70441", - "libelleAcheminement": "RECOLOGNE LES RIOZ", - "nomCommune": "RECOLOGNE LES RIOZ" + "codePostal": "72540", + "codeCommune": "72126", + "libelleAcheminement": "EPINEU LE CHEVREUIL", + "nomCommune": "EPINEU LE CHEVREUIL" }, { - "codePostal": "84830", - "codeCommune": "84127", - "libelleAcheminement": "SERIGNAN DU COMTAT", - "nomCommune": "SERIGNAN DU COMTAT" + "codePostal": "86410", + "codeCommune": "86131", + "libelleAcheminement": "LHOMMAIZE", + "nomCommune": "LHOMMAIZE" }, { - "codePostal": "86290", - "codeCommune": "86230", - "libelleAcheminement": "ST LEOMER", - "nomCommune": "ST LEOMER" + "codePostal": "76480", + "codeCommune": "76020", + "libelleAcheminement": "ANNEVILLE AMBOURVILLE", + "nomCommune": "ANNEVILLE AMBOURVILLE" }, { - "codePostal": "78490", - "codeCommune": "78264", - "libelleAcheminement": "GAMBAISEUIL", - "nomCommune": "GAMBAISEUIL" + "codePostal": "86360", + "codeCommune": "86163", + "libelleAcheminement": "MONTAMISE", + "nomCommune": "MONTAMISE" }, { - "codePostal": "70120", - "codeCommune": "70442", - "libelleAcheminement": "RENAUCOURT", - "nomCommune": "RENAUCOURT" + "codePostal": "72130", + "codeCommune": "72141", + "libelleAcheminement": "GESNES LE GANDELIN", + "nomCommune": "GESNES LE GANDELIN" }, { - "codePostal": "84400", - "codeCommune": "84128", - "libelleAcheminement": "SIVERGUES", - "nomCommune": "SIVERGUES" + "codePostal": "86370", + "codeCommune": "86147", + "libelleAcheminement": "MARIGNY CHEMEREAU", + "nomCommune": "MARIGNY CHEMEREAU" }, { - "codePostal": "86300", - "codeCommune": "86233", - "libelleAcheminement": "VALDIVIENNE", - "nomCommune": "VALDIVIENNE" + "codePostal": "76480", + "codeCommune": "76020", + "libelleAcheminement": "ANNEVILLE AMBOURVILLE", + "nomCommune": "ANNEVILLE AMBOURVILLE" }, { - "codePostal": "78125", - "codeCommune": "78269", - "libelleAcheminement": "GAZERAN", - "nomCommune": "GAZERAN" + "codePostal": "86420", + "codeCommune": "86167", + "libelleAcheminement": "MONTS SUR GUESNES", + "nomCommune": "MONTS SUR GUESNES" }, { - "codePostal": "70140", - "codeCommune": "70444", - "libelleAcheminement": "LA RESIE ST MARTIN", - "nomCommune": "LA RESIE ST MARTIN" + "codePostal": "72150", + "codeCommune": "72143", + "libelleAcheminement": "LE GRAND LUCE", + "nomCommune": "LE GRAND LUCE" }, { - "codePostal": "84190", - "codeCommune": "84130", - "libelleAcheminement": "SUZETTE", - "nomCommune": "SUZETTE" + "codePostal": "86460", + "codeCommune": "86152", + "libelleAcheminement": "MAUPREVOIR", + "nomCommune": "MAUPREVOIR" }, { - "codePostal": "86300", - "codeCommune": "86233", - "libelleAcheminement": "VALDIVIENNE", - "nomCommune": "VALDIVIENNE" + "codePostal": "76390", + "codeCommune": "76028", + "libelleAcheminement": "AUBEGUIMONT", + "nomCommune": "AUBEGUIMONT" }, { - "codePostal": "78770", - "codeCommune": "78278", - "libelleAcheminement": "GOUPILLIERES", - "nomCommune": "GOUPILLIERES" + "codePostal": "86230", + "codeCommune": "86182", + "libelleAcheminement": "ORCHES", + "nomCommune": "ORCHES" }, { - "codePostal": "70100", - "codeCommune": "70446", - "libelleAcheminement": "RIGNY", - "nomCommune": "RIGNY" + "codePostal": "72540", + "codeCommune": "72149", + "libelleAcheminement": "JOUE EN CHARNIE", + "nomCommune": "JOUE EN CHARNIE" }, { - "codePostal": "84110", - "codeCommune": "84137", - "libelleAcheminement": "VAISON LA ROMAINE", - "nomCommune": "VAISON LA ROMAINE" + "codePostal": "86320", + "codeCommune": "86153", + "libelleAcheminement": "MAZEROLLES", + "nomCommune": "MAZEROLLES" }, { - "codePostal": "86300", - "codeCommune": "86233", - "libelleAcheminement": "VALDIVIENNE", - "nomCommune": "VALDIVIENNE" + "codePostal": "76340", + "codeCommune": "76029", + "libelleAcheminement": "AUBERMESNIL AUX ERABLES", + "nomCommune": "AUBERMESNIL AUX ERABLES" }, { - "codePostal": "78113", - "codeCommune": "78283", - "libelleAcheminement": "GRANDCHAMP", - "nomCommune": "GRANDCHAMP" + "codePostal": "86300", + "codeCommune": "86187", + "libelleAcheminement": "PAIZAY LE SEC", + "nomCommune": "PAIZAY LE SEC" }, { - "codePostal": "70180", - "codeCommune": "70448", - "libelleAcheminement": "ROCHE ET RAUCOURT", - "nomCommune": "ROCHE ET RAUCOURT" + "codePostal": "72220", + "codeCommune": "72155", + "libelleAcheminement": "LAIGNE EN BELIN", + "nomCommune": "LAIGNE EN BELIN" }, { - "codePostal": "84800", - "codeCommune": "84139", - "libelleAcheminement": "FONTAINE DE VAUCLUSE", - "nomCommune": "FONTAINE DE VAUCLUSE" + "codePostal": "86440", + "codeCommune": "86158", + "libelleAcheminement": "MIGNE AUXANCES", + "nomCommune": "MIGNE AUXANCES" }, { - "codePostal": "86300", - "codeCommune": "86233", - "libelleAcheminement": "VALDIVIENNE", - "nomCommune": "VALDIVIENNE" + "codePostal": "76190", + "codeCommune": "76041", + "libelleAcheminement": "LES HAUTS DE CAUX", + "nomCommune": "LES HAUTS DE CAUX" }, { - "codePostal": "78930", - "codeCommune": "78291", - "libelleAcheminement": "GUERVILLE", - "nomCommune": "GUERVILLE" + "codePostal": "86350", + "codeCommune": "86189", + "libelleAcheminement": "PAYROUX", + "nomCommune": "PAYROUX" }, { - "codePostal": "70230", - "codeCommune": "70449", - "libelleAcheminement": "ROCHE LINOTTE ET SORANS CORDIERS", - "nomCommune": "ROCHE LINOTTE ET SORANS CORDIERS" + "codePostal": "72270", + "codeCommune": "72163", + "libelleAcheminement": "LIGRON", + "nomCommune": "LIGRON" }, { - "codePostal": "84530", - "codeCommune": "84147", - "libelleAcheminement": "VILLELAURE", - "nomCommune": "VILLELAURE" + "codePostal": "86500", + "codeCommune": "86170", + "libelleAcheminement": "MOULISMES", + "nomCommune": "MOULISMES" }, { - "codePostal": "86400", - "codeCommune": "86237", - "libelleAcheminement": "ST PIERRE D EXIDEUIL", - "nomCommune": "ST PIERRE D EXIDEUIL" + "codePostal": "76730", + "codeCommune": "76047", + "libelleAcheminement": "AUZOUVILLE SUR SAANE", + "nomCommune": "AUZOUVILLE SUR SAANE" }, { - "codePostal": "78440", - "codeCommune": "78317", - "libelleAcheminement": "JAMBVILLE", - "nomCommune": "JAMBVILLE" + "codePostal": "86320", + "codeCommune": "86190", + "libelleAcheminement": "PERSAC", + "nomCommune": "PERSAC" }, { - "codePostal": "70200", - "codeCommune": "70455", - "libelleAcheminement": "ROYE", - "nomCommune": "ROYE" + "codePostal": "72450", + "codeCommune": "72165", + "libelleAcheminement": "LOMBRON", + "nomCommune": "LOMBRON" }, { - "codePostal": "84150", - "codeCommune": "84149", - "libelleAcheminement": "VIOLES", - "nomCommune": "VIOLES" + "codePostal": "86530", + "codeCommune": "86174", + "libelleAcheminement": "NAINTRE", + "nomCommune": "NAINTRE" }, { - "codePostal": "86100", - "codeCommune": "86245", - "libelleAcheminement": "SENILLE ST SAUVEUR", - "nomCommune": "SENILLE ST SAUVEUR" + "codePostal": "76630", + "codeCommune": "76054", + "libelleAcheminement": "BAILLY EN RIVIERE", + "nomCommune": "BAILLY EN RIVIERE" }, { - "codePostal": "78760", - "codeCommune": "78321", - "libelleAcheminement": "JOUARS PONTCHARTRAIN", - "nomCommune": "JOUARS PONTCHARTRAIN" + "codePostal": "86000", + "codeCommune": "86194", + "libelleAcheminement": "POITIERS", + "nomCommune": "POITIERS" }, { - "codePostal": "70110", - "codeCommune": "70462", - "libelleAcheminement": "ST FERJEUX", - "nomCommune": "ST FERJEUX" + "codePostal": "72600", + "codeCommune": "72171", + "libelleAcheminement": "LOUZES", + "nomCommune": "LOUZES" }, { - "codePostal": "84820", - "codeCommune": "84150", - "libelleAcheminement": "VISAN", - "nomCommune": "VISAN" + "codePostal": "86200", + "codeCommune": "86181", + "libelleAcheminement": "NUEIL SOUS FAYE", + "nomCommune": "NUEIL SOUS FAYE" }, { - "codePostal": "86140", - "codeCommune": "86257", - "libelleAcheminement": "SAVIGNY SOUS FAYE", - "nomCommune": "SAVIGNY SOUS FAYE" + "codePostal": "76360", + "codeCommune": "76057", + "libelleAcheminement": "BARENTIN", + "nomCommune": "BARENTIN" }, { - "codePostal": "78820", - "codeCommune": "78327", - "libelleAcheminement": "JUZIERS", - "nomCommune": "JUZIERS" + "codePostal": "86460", + "codeCommune": "86200", + "libelleAcheminement": "PRESSAC", + "nomCommune": "PRESSAC" }, { - "codePostal": "70200", - "codeCommune": "70464", - "libelleAcheminement": "ST GERMAIN", - "nomCommune": "ST GERMAIN" + "codePostal": "72390", + "codeCommune": "72172", + "libelleAcheminement": "LE LUART", + "nomCommune": "LE LUART" }, { - "codePostal": "85190", - "codeCommune": "85003", - "libelleAcheminement": "AIZENAY", - "nomCommune": "AIZENAY" + "codePostal": "86120", + "codeCommune": "86196", + "libelleAcheminement": "POUANCAY", + "nomCommune": "POUANCAY" }, { - "codePostal": "86140", - "codeCommune": "86258", - "libelleAcheminement": "SCORBE CLAIRVAUX", - "nomCommune": "SCORBE CLAIRVAUX" + "codePostal": "76870", + "codeCommune": "76065", + "libelleAcheminement": "BEAUSSAULT", + "nomCommune": "BEAUSSAULT" }, { - "codePostal": "78114", - "codeCommune": "78356", - "libelleAcheminement": "MAGNY LES HAMEAUX", - "nomCommune": "MAGNY LES HAMEAUX" + "codePostal": "86420", + "codeCommune": "86201", + "libelleAcheminement": "PRINCAY", + "nomCommune": "PRINCAY" }, { - "codePostal": "70310", - "codeCommune": "70469", - "libelleAcheminement": "STE MARIE EN CHANOIS", - "nomCommune": "STE MARIE EN CHANOIS" + "codePostal": "72500", + "codeCommune": "72173", + "libelleAcheminement": "LUCEAU", + "nomCommune": "LUCEAU" }, { - "codePostal": "85750", - "codeCommune": "85004", - "libelleAcheminement": "ANGLES", - "nomCommune": "ANGLES" + "codePostal": "86200", + "codeCommune": "86197", + "libelleAcheminement": "POUANT", + "nomCommune": "POUANT" }, { - "codePostal": "86240", - "codeCommune": "86263", - "libelleAcheminement": "SMARVES", - "nomCommune": "SMARVES" + "codePostal": "76220", + "codeCommune": "76067", + "libelleAcheminement": "BEAUVOIR EN LYONS", + "nomCommune": "BEAUVOIR EN LYONS" }, { - "codePostal": "78490", - "codeCommune": "78366", - "libelleAcheminement": "MAREIL LE GUYON", - "nomCommune": "MAREIL LE GUYON" + "codePostal": "86200", + "codeCommune": "86205", + "libelleAcheminement": "RANTON", + "nomCommune": "RANTON" }, { - "codePostal": "70300", - "codeCommune": "70470", - "libelleAcheminement": "STE MARIE EN CHAUX", - "nomCommune": "STE MARIE EN CHAUX" + "codePostal": "72800", + "codeCommune": "72176", + "libelleAcheminement": "LE LUDE", + "nomCommune": "LE LUDE" }, { - "codePostal": "85630", - "codeCommune": "85011", - "libelleAcheminement": "BARBATRE", - "nomCommune": "BARBATRE" + "codePostal": "86800", + "codeCommune": "86198", + "libelleAcheminement": "POUILLE", + "nomCommune": "POUILLE" }, { - "codePostal": "86250", - "codeCommune": "86266", - "libelleAcheminement": "SURIN", - "nomCommune": "SURIN" + "codePostal": "76110", + "codeCommune": "76076", + "libelleAcheminement": "BENARVILLE", + "nomCommune": "BENARVILLE" }, { - "codePostal": "78580", - "codeCommune": "78380", - "libelleAcheminement": "MAULE", - "nomCommune": "MAULE" + "codePostal": "86120", + "codeCommune": "86206", + "libelleAcheminement": "RASLAY", + "nomCommune": "RASLAY" }, { - "codePostal": "70700", - "codeCommune": "70471", - "libelleAcheminement": "STE REINE", - "nomCommune": "STE REINE" + "codePostal": "72510", + "codeCommune": "72182", + "libelleAcheminement": "MANSIGNE", + "nomCommune": "MANSIGNE" }, { - "codePostal": "85550", - "codeCommune": "85012", - "libelleAcheminement": "LA BARRE DE MONTS", - "nomCommune": "LA BARRE DE MONTS" + "codePostal": "86120", + "codeCommune": "86210", + "libelleAcheminement": "ROIFFE", + "nomCommune": "ROIFFE" }, { - "codePostal": "86380", - "codeCommune": "86281", - "libelleAcheminement": "ST MARTIN LA PALLU", - "nomCommune": "ST MARTIN LA PALLU" + "codePostal": "76790", + "codeCommune": "76079", + "libelleAcheminement": "BENOUVILLE", + "nomCommune": "BENOUVILLE" }, { - "codePostal": "78550", - "codeCommune": "78381", - "libelleAcheminement": "MAULETTE", - "nomCommune": "MAULETTE" + "codePostal": "86280", + "codeCommune": "86214", + "libelleAcheminement": "ST BENOIT", + "nomCommune": "ST BENOIT" }, { - "codePostal": "70160", - "codeCommune": "70472", - "libelleAcheminement": "ST REMY EN COMTE", - "nomCommune": "ST REMY EN COMTE" + "codePostal": "72340", + "codeCommune": "72183", + "libelleAcheminement": "MARCON", + "nomCommune": "MARCON" }, { - "codePostal": "85390", - "codeCommune": "85014", - "libelleAcheminement": "BAZOGES EN PAREDS", - "nomCommune": "BAZOGES EN PAREDS" + "codePostal": "86700", + "codeCommune": "86211", + "libelleAcheminement": "ROMAGNE", + "nomCommune": "ROMAGNE" }, { - "codePostal": "86410", - "codeCommune": "86285", - "libelleAcheminement": "VERRIERES", - "nomCommune": "VERRIERES" + "codePostal": "76450", + "codeCommune": "76083", + "libelleAcheminement": "BERTHEAUVILLE", + "nomCommune": "BERTHEAUVILLE" }, { - "codePostal": "78600", - "codeCommune": "78396", - "libelleAcheminement": "LE MESNIL LE ROI", - "nomCommune": "LE MESNIL LE ROI" + "codePostal": "86400", + "codeCommune": "86220", + "libelleAcheminement": "ST GAUDENT", + "nomCommune": "ST GAUDENT" }, { - "codePostal": "70300", - "codeCommune": "70473", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "72270", + "codeCommune": "72195", + "libelleAcheminement": "MEZERAY", + "nomCommune": "MEZERAY" }, { - "codePostal": "85500", - "codeCommune": "85017", - "libelleAcheminement": "BEAUREPAIRE", - "nomCommune": "BEAUREPAIRE" + "codePostal": "86130", + "codeCommune": "86222", + "libelleAcheminement": "ST GEORGES LES BAILLARGEAUX", + "nomCommune": "ST GEORGES LES BAILLARGEAUX" }, { - "codePostal": "86420", - "codeCommune": "86286", - "libelleAcheminement": "VERRUE", - "nomCommune": "VERRUE" + "codePostal": "76450", + "codeCommune": "76084", + "libelleAcheminement": "BERTREVILLE", + "nomCommune": "BERTREVILLE" }, { - "codePostal": "78490", - "codeCommune": "78398", - "libelleAcheminement": "LES MESNULS", - "nomCommune": "LES MESNULS" + "codePostal": "86330", + "codeCommune": "86225", + "libelleAcheminement": "ST JEAN DE SAUVES", + "nomCommune": "ST JEAN DE SAUVES" }, { - "codePostal": "70210", - "codeCommune": "70476", - "libelleAcheminement": "SAPONCOURT", - "nomCommune": "SAPONCOURT" + "codePostal": "72230", + "codeCommune": "72200", + "libelleAcheminement": "MONCE EN BELIN", + "nomCommune": "MONCE EN BELIN" }, { - "codePostal": "85230", - "codeCommune": "85018", - "libelleAcheminement": "BEAUVOIR SUR MER", - "nomCommune": "BEAUVOIR SUR MER" + "codePostal": "86310", + "codeCommune": "86223", + "libelleAcheminement": "ST GERMAIN", + "nomCommune": "ST GERMAIN" }, { - "codePostal": "86260", - "codeCommune": "86288", - "libelleAcheminement": "VICQ SUR GARTEMPE", - "nomCommune": "VICQ SUR GARTEMPE" + "codePostal": "76890", + "codeCommune": "76086", + "libelleAcheminement": "BERTRIMONT", + "nomCommune": "BERTRIMONT" }, { - "codePostal": "78470", - "codeCommune": "78406", - "libelleAcheminement": "MILON LA CHAPELLE", - "nomCommune": "MILON LA CHAPELLE" + "codePostal": "86120", + "codeCommune": "86229", + "libelleAcheminement": "ST LEGER DE MONTBRILLAIS", + "nomCommune": "ST LEGER DE MONTBRILLAIS" }, { - "codePostal": "70400", - "codeCommune": "70477", - "libelleAcheminement": "SAULNOT", - "nomCommune": "SAULNOT" + "codePostal": "72150", + "codeCommune": "72210", + "libelleAcheminement": "MONTREUIL LE HENRI", + "nomCommune": "MONTREUIL LE HENRI" }, { - "codePostal": "85710", - "codeCommune": "85024", - "libelleAcheminement": "BOIS DE CENE", - "nomCommune": "BOIS DE CENE" + "codePostal": "86400", + "codeCommune": "86237", + "libelleAcheminement": "ST PIERRE D EXIDEUIL", + "nomCommune": "ST PIERRE D EXIDEUIL" }, { - "codePostal": "86150", - "codeCommune": "86289", - "libelleAcheminement": "LE VIGEANT", - "nomCommune": "LE VIGEANT" + "codePostal": "76450", + "codeCommune": "76091", + "libelleAcheminement": "BEUZEVILLE LA GUERARD", + "nomCommune": "BEUZEVILLE LA GUERARD" }, { - "codePostal": "78250", - "codeCommune": "78460", - "libelleAcheminement": "OINVILLE SUR MONTCIENT", - "nomCommune": "OINVILLE SUR MONTCIENT" + "codePostal": "86290", + "codeCommune": "86230", + "libelleAcheminement": "ST LEOMER", + "nomCommune": "ST LEOMER" }, { - "codePostal": "70140", - "codeCommune": "70480", - "libelleAcheminement": "SAUVIGNEY LES PESMES", - "nomCommune": "SAUVIGNEY LES PESMES" + "codePostal": "72130", + "codeCommune": "72212", + "libelleAcheminement": "MOULINS LE CARBONNEL", + "nomCommune": "MOULINS LE CARBONNEL" }, { - "codePostal": "85600", - "codeCommune": "85025", - "libelleAcheminement": "LA BOISSIERE DE MONTAIGU", - "nomCommune": "LA BOISSIERE DE MONTAIGU" + "codePostal": "86600", + "codeCommune": "86244", + "libelleAcheminement": "ST SAUVANT", + "nomCommune": "ST SAUVANT" }, { - "codePostal": "86370", - "codeCommune": "86293", - "libelleAcheminement": "VIVONNE", - "nomCommune": "VIVONNE" + "codePostal": "76890", + "codeCommune": "76096", + "libelleAcheminement": "BIVILLE LA BAIGNARDE", + "nomCommune": "BIVILLE LA BAIGNARDE" }, { - "codePostal": "78910", - "codeCommune": "78465", - "libelleAcheminement": "ORGERUS", - "nomCommune": "ORGERUS" + "codePostal": "86300", + "codeCommune": "86233", + "libelleAcheminement": "VALDIVIENNE", + "nomCommune": "VALDIVIENNE" }, { - "codePostal": "70110", - "codeCommune": "70487", - "libelleAcheminement": "SENARGENT MIGNAFANS", - "nomCommune": "SENARGENT MIGNAFANS" + "codePostal": "72140", + "codeCommune": "72218", + "libelleAcheminement": "NEUVILLETTE EN CHARNIE", + "nomCommune": "NEUVILLETTE EN CHARNIE" }, { - "codePostal": "85230", - "codeCommune": "85029", - "libelleAcheminement": "BOUIN", - "nomCommune": "BOUIN" + "codePostal": "86400", + "codeCommune": "86247", + "libelleAcheminement": "ST SAVIOL", + "nomCommune": "ST SAVIOL" }, { - "codePostal": "87700", - "codeCommune": "87001", - "libelleAcheminement": "AIXE SUR VIENNE", - "nomCommune": "AIXE SUR VIENNE" + "codePostal": "76730", + "codeCommune": "76097", + "libelleAcheminement": "BIVILLE LA RIVIERE", + "nomCommune": "BIVILLE LA RIVIERE" }, { - "codePostal": "78910", - "codeCommune": "78474", - "libelleAcheminement": "ORVILLIERS", - "nomCommune": "ORVILLIERS" + "codePostal": "86260", + "codeCommune": "86236", + "libelleAcheminement": "ST PIERRE DE MAILLE", + "nomCommune": "ST PIERRE DE MAILLE" }, { - "codePostal": "70440", - "codeCommune": "70489", - "libelleAcheminement": "SERVANCE MIELLIN", - "nomCommune": "SERVANCE MIELLIN" + "codePostal": "72500", + "codeCommune": "72221", + "libelleAcheminement": "NOGENT SUR LOIR", + "nomCommune": "NOGENT SUR LOIR" }, { - "codePostal": "85480", - "codeCommune": "85034", - "libelleAcheminement": "BOURNEZEAU", - "nomCommune": "BOURNEZEAU" + "codePostal": "86120", + "codeCommune": "86250", + "libelleAcheminement": "SAIX", + "nomCommune": "SAIX" }, { - "codePostal": "87290", - "codeCommune": "87007", - "libelleAcheminement": "BALLEDENT", - "nomCommune": "BALLEDENT" + "codePostal": "76190", + "codeCommune": "76099", + "libelleAcheminement": "BLACQUEVILLE", + "nomCommune": "BLACQUEVILLE" }, { - "codePostal": "78300", - "codeCommune": "78498", - "libelleAcheminement": "POISSY", - "nomCommune": "POISSY" + "codePostal": "86300", + "codeCommune": "86239", + "libelleAcheminement": "STE RADEGONDE", + "nomCommune": "STE RADEGONDE" }, { - "codePostal": "70130", - "codeCommune": "70491", - "libelleAcheminement": "SEVEUX MOTEY", - "nomCommune": "SEVEUX MOTEY" + "codePostal": "72430", + "codeCommune": "72223", + "libelleAcheminement": "NOYEN SUR SARTHE", + "nomCommune": "NOYEN SUR SARTHE" }, { - "codePostal": "85310", - "codeCommune": "85046", - "libelleAcheminement": "LA CHAIZE LE VICOMTE", - "nomCommune": "LA CHAIZE LE VICOMTE" + "codePostal": "86140", + "codeCommune": "86258", + "libelleAcheminement": "SCORBE CLAIRVAUX", + "nomCommune": "SCORBE CLAIRVAUX" }, { - "codePostal": "87370", - "codeCommune": "87013", - "libelleAcheminement": "BERSAC SUR RIVALIER", - "nomCommune": "BERSAC SUR RIVALIER" + "codePostal": "76460", + "codeCommune": "76104", + "libelleAcheminement": "BLOSSEVILLE", + "nomCommune": "BLOSSEVILLE" }, { - "codePostal": "78590", - "codeCommune": "78518", - "libelleAcheminement": "RENNEMOULIN", - "nomCommune": "RENNEMOULIN" + "codePostal": "86400", + "codeCommune": "86255", + "libelleAcheminement": "SAVIGNE", + "nomCommune": "SAVIGNE" }, { - "codePostal": "70130", - "codeCommune": "70492", - "libelleAcheminement": "SOING CUBRY CHARENTENAY", - "nomCommune": "SOING CUBRY CHARENTENAY" + "codePostal": "72610", + "codeCommune": "72225", + "libelleAcheminement": "OISSEAU LE PETIT", + "nomCommune": "OISSEAU LE PETIT" }, { - "codePostal": "85450", - "codeCommune": "85049", - "libelleAcheminement": "CHAMPAGNE LES MARAIS", - "nomCommune": "CHAMPAGNE LES MARAIS" + "codePostal": "86800", + "codeCommune": "86261", + "libelleAcheminement": "SEVRES ANXAUMONT", + "nomCommune": "SEVRES ANXAUMONT" }, { - "codePostal": "87340", - "codeCommune": "87016", - "libelleAcheminement": "LES BILLANGES", - "nomCommune": "LES BILLANGES" + "codePostal": "76520", + "codeCommune": "76116", + "libelleAcheminement": "BOOS", + "nomCommune": "BOOS" }, { - "codePostal": "78550", - "codeCommune": "78520", - "libelleAcheminement": "RICHEBOURG", - "nomCommune": "RICHEBOURG" + "codePostal": "86800", + "codeCommune": "86256", + "libelleAcheminement": "SAVIGNY LEVESCAULT", + "nomCommune": "SAVIGNY LEVESCAULT" }, { - "codePostal": "70270", - "codeCommune": "70498", - "libelleAcheminement": "TERNUAY MELAY ET ST HILAIRE", - "nomCommune": "TERNUAY MELAY ET ST HILAIRE" + "codePostal": "72600", + "codeCommune": "72227", + "libelleAcheminement": "PANON", + "nomCommune": "PANON" }, { - "codePostal": "85540", - "codeCommune": "85050", - "libelleAcheminement": "LE CHAMP ST PERE", - "nomCommune": "LE CHAMP ST PERE" + "codePostal": "86320", + "codeCommune": "86262", + "libelleAcheminement": "SILLARS", + "nomCommune": "SILLARS" }, { - "codePostal": "87200", - "codeCommune": "87030", - "libelleAcheminement": "CHAILLAC SUR VIENNE", - "nomCommune": "CHAILLAC SUR VIENNE" + "codePostal": "76110", + "codeCommune": "76118", + "libelleAcheminement": "BORNAMBUSC", + "nomCommune": "BORNAMBUSC" }, { - "codePostal": "78210", - "codeCommune": "78545", - "libelleAcheminement": "ST CYR L ECOLE", - "nomCommune": "ST CYR L ECOLE" + "codePostal": "86230", + "codeCommune": "86265", + "libelleAcheminement": "SOSSAIS", + "nomCommune": "SOSSAIS" }, { - "codePostal": "70230", - "codeCommune": "70500", - "libelleAcheminement": "THIEFFRANS", - "nomCommune": "THIEFFRANS" + "codePostal": "72350", + "codeCommune": "72239", + "libelleAcheminement": "POILLE SUR VEGRE", + "nomCommune": "POILLE SUR VEGRE" }, { - "codePostal": "85120", - "codeCommune": "85053", - "libelleAcheminement": "LA CHAPELLE AUX LYS", - "nomCommune": "LA CHAPELLE AUX LYS" + "codePostal": "86160", + "codeCommune": "86264", + "libelleAcheminement": "SOMMIERES DU CLAIN", + "nomCommune": "SOMMIERES DU CLAIN" }, { - "codePostal": "87500", - "codeCommune": "87031", - "libelleAcheminement": "LE CHALARD", - "nomCommune": "LE CHALARD" + "codePostal": "76450", + "codeCommune": "76128", + "libelleAcheminement": "BOSVILLE", + "nomCommune": "BOSVILLE" }, { - "codePostal": "78112", - "codeCommune": "78551", - "libelleAcheminement": "ST GERMAIN EN LAYE", - "nomCommune": "ST GERMAIN EN LAYE" + "codePostal": "86110", + "codeCommune": "86271", + "libelleAcheminement": "THURAGEAU", + "nomCommune": "THURAGEAU" }, { - "codePostal": "70150", - "codeCommune": "70509", - "libelleAcheminement": "TROMAREY", - "nomCommune": "TROMAREY" + "codePostal": "72450", + "codeCommune": "72241", + "libelleAcheminement": "MONTFORT LE GESNOIS", + "nomCommune": "MONTFORT LE GESNOIS" }, { - "codePostal": "85670", - "codeCommune": "85055", - "libelleAcheminement": "LA CHAPELLE PALLUAU", - "nomCommune": "LA CHAPELLE PALLUAU" + "codePostal": "86170", + "codeCommune": "86281", + "libelleAcheminement": "ST MARTIN LA PALLU", + "nomCommune": "ST MARTIN LA PALLU" }, { - "codePostal": "87230", - "codeCommune": "87032", - "libelleAcheminement": "CHALUS", - "nomCommune": "CHALUS" + "codePostal": "76270", + "codeCommune": "76130", + "libelleAcheminement": "BOUELLES", + "nomCommune": "BOUELLES" }, { - "codePostal": "78980", - "codeCommune": "78559", - "libelleAcheminement": "ST ILLIERS LE BOIS", - "nomCommune": "ST ILLIERS LE BOIS" + "codePostal": "86340", + "codeCommune": "86284", + "libelleAcheminement": "VERNON", + "nomCommune": "VERNON" }, { - "codePostal": "70320", - "codeCommune": "70512", - "libelleAcheminement": "LA VAIVRE", - "nomCommune": "LA VAIVRE" + "codePostal": "72110", + "codeCommune": "72246", + "libelleAcheminement": "PREVELLES", + "nomCommune": "PREVELLES" }, { - "codePostal": "85320", - "codeCommune": "85061", - "libelleAcheminement": "CHATEAU GUIBERT", - "nomCommune": "CHATEAU GUIBERT" + "codePostal": "86420", + "codeCommune": "86286", + "libelleAcheminement": "VERRUE", + "nomCommune": "VERRUE" }, { - "codePostal": "87400", - "codeCommune": "87042", - "libelleAcheminement": "LE CHATENET EN DOGNON", - "nomCommune": "LE CHATENET EN DOGNON" + "codePostal": "76690", + "codeCommune": "76152", + "libelleAcheminement": "CAILLY", + "nomCommune": "CAILLY" }, { - "codePostal": "78610", - "codeCommune": "78562", - "libelleAcheminement": "ST LEGER EN YVELINES", - "nomCommune": "ST LEGER EN YVELINES" + "codePostal": "86410", + "codeCommune": "86285", + "libelleAcheminement": "VERRIERES", + "nomCommune": "VERRIERES" }, { - "codePostal": "70000", - "codeCommune": "70517", - "libelleAcheminement": "VALLEROIS LORIOZ", - "nomCommune": "VALLEROIS LORIOZ" + "codePostal": "72550", + "codeCommune": "72249", + "libelleAcheminement": "LA QUINTE", + "nomCommune": "LA QUINTE" }, { - "codePostal": "85710", - "codeCommune": "85062", - "libelleAcheminement": "CHATEAUNEUF", - "nomCommune": "CHATEAUNEUF" + "codePostal": "86370", + "codeCommune": "86293", + "libelleAcheminement": "VIVONNE", + "nomCommune": "VIVONNE" }, { - "codePostal": "87270", - "codeCommune": "87050", - "libelleAcheminement": "COUZEIX", - "nomCommune": "COUZEIX" + "codePostal": "76450", + "codeCommune": "76156", + "libelleAcheminement": "CANOUVILLE", + "nomCommune": "CANOUVILLE" }, { - "codePostal": "78520", - "codeCommune": "78567", - "libelleAcheminement": "ST MARTIN LA GARENNE", - "nomCommune": "ST MARTIN LA GARENNE" + "codePostal": "87370", + "codeCommune": "87013", + "libelleAcheminement": "BERSAC SUR RIVALIER", + "nomCommune": "BERSAC SUR RIVALIER" }, { - "codePostal": "70240", - "codeCommune": "70534", - "libelleAcheminement": "VELLEFRIE", - "nomCommune": "VELLEFRIE" + "codePostal": "72260", + "codeCommune": "72251", + "libelleAcheminement": "RENE", + "nomCommune": "RENE" }, { - "codePostal": "85260", - "codeCommune": "85072", - "libelleAcheminement": "LA COPECHAGNIERE", - "nomCommune": "LA COPECHAGNIERE" + "codePostal": "86190", + "codeCommune": "86294", + "libelleAcheminement": "VOUILLE", + "nomCommune": "VOUILLE" }, { - "codePostal": "87160", - "codeCommune": "87053", - "libelleAcheminement": "CROMAC", - "nomCommune": "CROMAC" + "codePostal": "76380", + "codeCommune": "76157", + "libelleAcheminement": "CANTELEU", + "nomCommune": "CANTELEU" }, { - "codePostal": "78470", - "codeCommune": "78575", - "libelleAcheminement": "ST REMY LES CHEVREUSE", - "nomCommune": "ST REMY LES CHEVREUSE" + "codePostal": "87300", + "codeCommune": "87022", + "libelleAcheminement": "BREUILAUFA", + "nomCommune": "BREUILAUFA" }, { - "codePostal": "70130", - "codeCommune": "70539", - "libelleAcheminement": "VELLEXON QUEUTREY ET VAUDEY", - "nomCommune": "VELLEXON QUEUTREY ET VAUDEY" + "codePostal": "72510", + "codeCommune": "72252", + "libelleAcheminement": "REQUEIL", + "nomCommune": "REQUEIL" }, { - "codePostal": "85140", - "codeCommune": "85084", - "libelleAcheminement": "ESSARTS EN BOCAGE", - "nomCommune": "ESSARTS EN BOCAGE" + "codePostal": "86400", + "codeCommune": "86295", + "libelleAcheminement": "VOULEME", + "nomCommune": "VOULEME" }, { - "codePostal": "87190", - "codeCommune": "87057", - "libelleAcheminement": "DOMPIERRE LES EGLISES", - "nomCommune": "DOMPIERRE LES EGLISES" + "codePostal": "76450", + "codeCommune": "76159", + "libelleAcheminement": "CANY BARVILLE", + "nomCommune": "CANY BARVILLE" }, { - "codePostal": "78120", - "codeCommune": "78601", - "libelleAcheminement": "SONCHAMP", - "nomCommune": "SONCHAMP" + "codePostal": "87140", + "codeCommune": "87023", + "libelleAcheminement": "LE BUIS", + "nomCommune": "LE BUIS" }, { - "codePostal": "70300", - "codeCommune": "70541", - "libelleAcheminement": "VELORCEY", - "nomCommune": "VELORCEY" + "codePostal": "72210", + "codeCommune": "72253", + "libelleAcheminement": "ROEZE SUR SARTHE", + "nomCommune": "ROEZE SUR SARTHE" }, { - "codePostal": "85670", - "codeCommune": "85086", - "libelleAcheminement": "FALLERON", - "nomCommune": "FALLERON" + "codePostal": "87290", + "codeCommune": "87007", + "libelleAcheminement": "BALLEDENT", + "nomCommune": "BALLEDENT" }, { - "codePostal": "87190", - "codeCommune": "87061", - "libelleAcheminement": "DROUX", - "nomCommune": "DROUX" + "codePostal": "76930", + "codeCommune": "76167", + "libelleAcheminement": "CAUVILLE SUR MER", + "nomCommune": "CAUVILLE SUR MER" }, { - "codePostal": "78740", - "codeCommune": "78638", - "libelleAcheminement": "VAUX SUR SEINE", - "nomCommune": "VAUX SUR SEINE" + "codePostal": "87800", + "codeCommune": "87025", + "libelleAcheminement": "BURGNAC", + "nomCommune": "BURGNAC" }, { - "codePostal": "70180", - "codeCommune": "70546", - "libelleAcheminement": "VEREUX", - "nomCommune": "VEREUX" + "codePostal": "72140", + "codeCommune": "72255", + "libelleAcheminement": "ROUESSE VASSE", + "nomCommune": "ROUESSE VASSE" }, { - "codePostal": "85700", - "codeCommune": "85090", - "libelleAcheminement": "SEVREMONT", - "nomCommune": "SEVREMONT" + "codePostal": "87250", + "codeCommune": "87014", + "libelleAcheminement": "BESSINES SUR GARTEMPE", + "nomCommune": "BESSINES SUR GARTEMPE" }, { - "codePostal": "87220", - "codeCommune": "87063", - "libelleAcheminement": "EYJEAUX", - "nomCommune": "EYJEAUX" + "codePostal": "76430", + "codeCommune": "76169", + "libelleAcheminement": "LA CERLANGUE", + "nomCommune": "LA CERLANGUE" }, { - "codePostal": "78540", - "codeCommune": "78643", - "libelleAcheminement": "VERNOUILLET", - "nomCommune": "VERNOUILLET" + "codePostal": "87320", + "codeCommune": "87028", + "libelleAcheminement": "VAL D OIRE ET GARTEMPE", + "nomCommune": "VAL D OIRE ET GARTEMPE" }, { - "codePostal": "70110", - "codeCommune": "70561", - "libelleAcheminement": "VILLERSEXEL", - "nomCommune": "VILLERSEXEL" + "codePostal": "72310", + "codeCommune": "72262", + "libelleAcheminement": "LOIR EN VALLEE", + "nomCommune": "LOIR EN VALLEE" }, { - "codePostal": "85710", - "codeCommune": "85096", - "libelleAcheminement": "LA GARNACHE", - "nomCommune": "LA GARNACHE" + "codePostal": "87110", + "codeCommune": "87021", + "libelleAcheminement": "BOSMIE L AIGUILLE", + "nomCommune": "BOSMIE L AIGUILLE" }, { - "codePostal": "87120", - "codeCommune": "87064", - "libelleAcheminement": "EYMOUTIERS", - "nomCommune": "EYMOUTIERS" + "codePostal": "76780", + "codeCommune": "76171", + "libelleAcheminement": "LA CHAPELLE ST OUEN", + "nomCommune": "LA CHAPELLE ST OUEN" }, { - "codePostal": "78125", - "codeCommune": "78655", - "libelleAcheminement": "VIEILLE EGLISE EN YVELINES", - "nomCommune": "VIEILLE EGLISE EN YVELINES" + "codePostal": "87210", + "codeCommune": "87052", + "libelleAcheminement": "LA CROIX SUR GARTEMPE", + "nomCommune": "LA CROIX SUR GARTEMPE" }, { - "codePostal": "70310", - "codeCommune": "70573", - "libelleAcheminement": "LA VOIVRE", - "nomCommune": "LA VOIVRE" + "codePostal": "72340", + "codeCommune": "72262", + "libelleAcheminement": "LOIR EN VALLEE", + "nomCommune": "LOIR EN VALLEE" }, { - "codePostal": "85130", - "codeCommune": "85097", - "libelleAcheminement": "LA GAUBRETIERE", - "nomCommune": "LA GAUBRETIERE" + "codePostal": "87330", + "codeCommune": "87028", + "libelleAcheminement": "VAL D OIRE ET GARTEMPE", + "nomCommune": "VAL D OIRE ET GARTEMPE" }, { - "codePostal": "87250", - "codeCommune": "87068", - "libelleAcheminement": "FROMENTAL", - "nomCommune": "FROMENTAL" + "codePostal": "76590", + "codeCommune": "76173", + "libelleAcheminement": "LA CHAUSSEE", + "nomCommune": "LA CHAUSSEE" }, { - "codePostal": "78450", - "codeCommune": "78674", - "libelleAcheminement": "VILLEPREUX", - "nomCommune": "VILLEPREUX" + "codePostal": "87120", + "codeCommune": "87058", + "libelleAcheminement": "DOMPS", + "nomCommune": "DOMPS" }, { - "codePostal": "70190", - "codeCommune": "70575", - "libelleAcheminement": "VORAY SUR L OGNON", - "nomCommune": "VORAY SUR L OGNON" + "codePostal": "72540", + "codeCommune": "72274", + "libelleAcheminement": "ST CHRISTOPHE EN CHAMPAGNE", + "nomCommune": "ST CHRISTOPHE EN CHAMPAGNE" }, { - "codePostal": "85540", - "codeCommune": "85101", - "libelleAcheminement": "LE GIVRE", - "nomCommune": "LE GIVRE" + "codePostal": "87500", + "codeCommune": "87031", + "libelleAcheminement": "LE CHALARD", + "nomCommune": "LE CHALARD" }, { - "codePostal": "87400", - "codeCommune": "87070", - "libelleAcheminement": "LA GENEYTOUSE", - "nomCommune": "LA GENEYTOUSE" + "codePostal": "76690", + "codeCommune": "76177", + "libelleAcheminement": "CLAVILLE MOTTEVILLE", + "nomCommune": "CLAVILLE MOTTEVILLE" }, { - "codePostal": "78930", - "codeCommune": "78677", - "libelleAcheminement": "VILLETTE", - "nomCommune": "VILLETTE" + "codePostal": "87230", + "codeCommune": "87060", + "libelleAcheminement": "DOURNAZAC", + "nomCommune": "DOURNAZAC" }, { - "codePostal": "70500", - "codeCommune": "70576", - "libelleAcheminement": "VOUGECOURT", - "nomCommune": "VOUGECOURT" + "codePostal": "72110", + "codeCommune": "72276", + "libelleAcheminement": "ST COSME EN VAIRAIS", + "nomCommune": "ST COSME EN VAIRAIS" }, { - "codePostal": "85680", - "codeCommune": "85106", - "libelleAcheminement": "LA GUERINIERE", - "nomCommune": "LA GUERINIERE" + "codePostal": "87150", + "codeCommune": "87034", + "libelleAcheminement": "CHAMPAGNAC LA RIVIERE", + "nomCommune": "CHAMPAGNAC LA RIVIERE" }, { - "codePostal": "87340", - "codeCommune": "87079", - "libelleAcheminement": "LA JONCHERE ST MAURICE", - "nomCommune": "LA JONCHERE ST MAURICE" + "codePostal": "76410", + "codeCommune": "76178", + "libelleAcheminement": "CLEON", + "nomCommune": "CLEON" }, { - "codePostal": "78770", - "codeCommune": "78681", - "libelleAcheminement": "VILLIERS LE MAHIEU", - "nomCommune": "VILLIERS LE MAHIEU" + "codePostal": "87190", + "codeCommune": "87061", + "libelleAcheminement": "DROUX", + "nomCommune": "DROUX" }, { - "codePostal": "70230", - "codeCommune": "70583", - "libelleAcheminement": "VY LES FILAIN", - "nomCommune": "VY LES FILAIN" + "codePostal": "72700", + "codeCommune": "72280", + "libelleAcheminement": "ST GEORGES DU BOIS", + "nomCommune": "ST GEORGES DU BOIS" }, { - "codePostal": "85340", - "codeCommune": "85112", - "libelleAcheminement": "L ILE D OLONNE", - "nomCommune": "L ILE D OLONNE" + "codePostal": "87440", + "codeCommune": "87037", + "libelleAcheminement": "LA CHAPELLE MONTBRANDEIX", + "nomCommune": "LA CHAPELLE MONTBRANDEIX" }, { - "codePostal": "87380", - "codeCommune": "87095", - "libelleAcheminement": "MEUZAC", - "nomCommune": "MEUZAC" + "codePostal": "76640", + "codeCommune": "76182", + "libelleAcheminement": "CLIPONVILLE", + "nomCommune": "CLIPONVILLE" }, { - "codePostal": "79200", - "codeCommune": "79002", - "libelleAcheminement": "ADILLY", - "nomCommune": "ADILLY" + "codePostal": "87120", + "codeCommune": "87064", + "libelleAcheminement": "EYMOUTIERS", + "nomCommune": "EYMOUTIERS" }, { - "codePostal": "71290", - "codeCommune": "71001", - "libelleAcheminement": "L ABERGEMENT DE CUISERY", - "nomCommune": "L ABERGEMENT DE CUISERY" + "codePostal": "72130", + "codeCommune": "72282", + "libelleAcheminement": "ST GEORGES LE GAULTIER", + "nomCommune": "ST GEORGES LE GAULTIER" }, { - "codePostal": "85520", - "codeCommune": "85114", - "libelleAcheminement": "JARD SUR MER", - "nomCommune": "JARD SUR MER" + "codePostal": "87380", + "codeCommune": "87039", + "libelleAcheminement": "CHATEAU CHERVIX", + "nomCommune": "CHATEAU CHERVIX" }, { - "codePostal": "87400", - "codeCommune": "87099", - "libelleAcheminement": "MOISSANNES", - "nomCommune": "MOISSANNES" + "codePostal": "76540", + "codeCommune": "76195", + "libelleAcheminement": "CRIQUETOT LE MAUCONDUIT", + "nomCommune": "CRIQUETOT LE MAUCONDUIT" }, { - "codePostal": "79600", - "codeCommune": "79005", - "libelleAcheminement": "AIRVAULT", - "nomCommune": "AIRVAULT" + "codePostal": "87400", + "codeCommune": "87070", + "libelleAcheminement": "LA GENEYTOUSE", + "nomCommune": "LA GENEYTOUSE" }, { - "codePostal": "71510", - "codeCommune": "71005", - "libelleAcheminement": "ALUZE", - "nomCommune": "ALUZE" + "codePostal": "72800", + "codeCommune": "72283", + "libelleAcheminement": "ST GERMAIN D ARCE", + "nomCommune": "ST GERMAIN D ARCE" }, { - "codePostal": "85240", - "codeCommune": "85136", - "libelleAcheminement": "MARILLET", - "nomCommune": "MARILLET" + "codePostal": "87130", + "codeCommune": "87040", + "libelleAcheminement": "CHATEAUNEUF LA FORET", + "nomCommune": "CHATEAUNEUF LA FORET" }, { - "codePostal": "87510", - "codeCommune": "87107", - "libelleAcheminement": "NIEUL", - "nomCommune": "NIEUL" + "codePostal": "76390", + "codeCommune": "76199", + "libelleAcheminement": "CRIQUIERS", + "nomCommune": "CRIQUIERS" }, { - "codePostal": "79150", - "codeCommune": "79013", - "libelleAcheminement": "ARGENTONNAY", - "nomCommune": "ARGENTONNAY" + "codePostal": "87160", + "codeCommune": "87074", + "libelleAcheminement": "LES GRANDS CHEZEAUX", + "nomCommune": "LES GRANDS CHEZEAUX" }, { - "codePostal": "71800", - "codeCommune": "71006", - "libelleAcheminement": "AMANZE", - "nomCommune": "AMANZE" + "codePostal": "72440", + "codeCommune": "72298", + "libelleAcheminement": "ST MARS DE LOCQUENAY", + "nomCommune": "ST MARS DE LOCQUENAY" }, { - "codePostal": "85420", - "codeCommune": "85139", - "libelleAcheminement": "LE MAZEAU", - "nomCommune": "LE MAZEAU" + "codePostal": "87460", + "codeCommune": "87043", + "libelleAcheminement": "CHEISSOUX", + "nomCommune": "CHEISSOUX" }, { - "codePostal": "87120", - "codeCommune": "87123", - "libelleAcheminement": "REMPNAT", - "nomCommune": "REMPNAT" + "codePostal": "76780", + "codeCommune": "76201", + "libelleAcheminement": "CROISY SUR ANDELLE", + "nomCommune": "CROISY SUR ANDELLE" }, { - "codePostal": "79150", - "codeCommune": "79013", - "libelleAcheminement": "ARGENTONNAY", - "nomCommune": "ARGENTONNAY" + "codePostal": "87100", + "codeCommune": "87085", + "libelleAcheminement": "LIMOGES", + "nomCommune": "LIMOGES" }, { - "codePostal": "71110", - "codeCommune": "71011", - "libelleAcheminement": "ANZY LE DUC", - "nomCommune": "ANZY LE DUC" + "codePostal": "72610", + "codeCommune": "72308", + "libelleAcheminement": "ST PATERNE LE CHEVAIN", + "nomCommune": "ST PATERNE LE CHEVAIN" }, { - "codePostal": "85700", - "codeCommune": "85140", - "libelleAcheminement": "LA MEILLERAIE TILLAY", - "nomCommune": "LA MEILLERAIE TILLAY" + "codePostal": "87310", + "codeCommune": "87046", + "libelleAcheminement": "COGNAC LA FORET", + "nomCommune": "COGNAC LA FORET" }, { - "codePostal": "87570", - "codeCommune": "87125", - "libelleAcheminement": "RILHAC RANCON", - "nomCommune": "RILHAC RANCON" + "codePostal": "76190", + "codeCommune": "76203", + "libelleAcheminement": "CROIX MARE", + "nomCommune": "CROIX MARE" }, { - "codePostal": "79420", - "codeCommune": "79029", - "libelleAcheminement": "BEAULIEU SOUS PARTHENAY", - "nomCommune": "BEAULIEU SOUS PARTHENAY" + "codePostal": "87100", + "codeCommune": "87085", + "libelleAcheminement": "LIMOGES", + "nomCommune": "LIMOGES" }, { - "codePostal": "71110", - "codeCommune": "71012", - "libelleAcheminement": "ARTAIX", - "nomCommune": "ARTAIX" + "codePostal": "72610", + "codeCommune": "72308", + "libelleAcheminement": "ST PATERNE LE CHEVAIN", + "nomCommune": "ST PATERNE LE CHEVAIN" }, { - "codePostal": "85600", - "codeCommune": "85146", - "libelleAcheminement": "MONTAIGU VENDEE", - "nomCommune": "MONTAIGU VENDEE" + "codePostal": "87140", + "codeCommune": "87047", + "libelleAcheminement": "COMPREIGNAC", + "nomCommune": "COMPREIGNAC" }, { - "codePostal": "87800", - "codeCommune": "87127", - "libelleAcheminement": "LA ROCHE L ABEILLE", - "nomCommune": "LA ROCHE L ABEILLE" + "codePostal": "76280", + "codeCommune": "76206", + "libelleAcheminement": "CUVERVILLE", + "nomCommune": "CUVERVILLE" }, { - "codePostal": "79360", - "codeCommune": "79031", - "libelleAcheminement": "BEAUVOIR SUR NIORT", - "nomCommune": "BEAUVOIR SUR NIORT" + "codePostal": "87190", + "codeCommune": "87089", + "libelleAcheminement": "MAGNAC LAVAL", + "nomCommune": "MAGNAC LAVAL" }, { - "codePostal": "71120", - "codeCommune": "71021", - "libelleAcheminement": "BARON", - "nomCommune": "BARON" + "codePostal": "72130", + "codeCommune": "72309", + "libelleAcheminement": "ST PAUL LE GAULTIER", + "nomCommune": "ST PAUL LE GAULTIER" }, { - "codePostal": "85700", - "codeCommune": "85147", - "libelleAcheminement": "MONTOURNAIS", - "nomCommune": "MONTOURNAIS" + "codePostal": "87160", + "codeCommune": "87053", + "libelleAcheminement": "CROMAC", + "nomCommune": "CROMAC" }, { - "codePostal": "87400", - "codeCommune": "87129", - "libelleAcheminement": "ROYERES", - "nomCommune": "ROYERES" + "codePostal": "76160", + "codeCommune": "76212", + "libelleAcheminement": "DARNETAL", + "nomCommune": "DARNETAL" }, { - "codePostal": "79360", - "codeCommune": "79031", - "libelleAcheminement": "BEAUVOIR SUR NIORT", - "nomCommune": "BEAUVOIR SUR NIORT" + "codePostal": "87800", + "codeCommune": "87094", + "libelleAcheminement": "MEILHAC", + "nomCommune": "MEILHAC" }, { - "codePostal": "71220", - "codeCommune": "71025", - "libelleAcheminement": "BEAUBERY", - "nomCommune": "BEAUBERY" + "codePostal": "72500", + "codeCommune": "72311", + "libelleAcheminement": "ST PIERRE DE CHEVILLE", + "nomCommune": "ST PIERRE DE CHEVILLE" }, { - "codePostal": "85290", - "codeCommune": "85151", - "libelleAcheminement": "MORTAGNE SUR SEVRE", - "nomCommune": "MORTAGNE SUR SEVRE" + "codePostal": "87210", + "codeCommune": "87056", + "libelleAcheminement": "DINSAC", + "nomCommune": "DINSAC" }, { - "codePostal": "87310", - "codeCommune": "87141", - "libelleAcheminement": "ST CYR", - "nomCommune": "ST CYR" + "codePostal": "76110", + "codeCommune": "76213", + "libelleAcheminement": "DAUBEUF SERVILLE", + "nomCommune": "DAUBEUF SERVILLE" }, { - "codePostal": "79210", - "codeCommune": "79046", - "libelleAcheminement": "LE BOURDET", - "nomCommune": "LE BOURDET" + "codePostal": "87130", + "codeCommune": "87105", + "libelleAcheminement": "NEUVIC ENTIER", + "nomCommune": "NEUVIC ENTIER" }, { - "codePostal": "71240", - "codeCommune": "71026", - "libelleAcheminement": "BEAUMONT SUR GROSNE", - "nomCommune": "BEAUMONT SUR GROSNE" + "codePostal": "72600", + "codeCommune": "72313", + "libelleAcheminement": "ST PIERRE DES ORMES", + "nomCommune": "ST PIERRE DES ORMES" }, { - "codePostal": "85310", - "codeCommune": "85160", - "libelleAcheminement": "NESMY", - "nomCommune": "NESMY" + "codePostal": "87210", + "codeCommune": "87059", + "libelleAcheminement": "LE DORAT", + "nomCommune": "LE DORAT" }, { - "codePostal": "87260", - "codeCommune": "87148", - "libelleAcheminement": "ST HILAIRE BONNEVAL", - "nomCommune": "ST HILAIRE BONNEVAL" + "codePostal": "76590", + "codeCommune": "76214", + "libelleAcheminement": "DENESTANVILLE", + "nomCommune": "DENESTANVILLE" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "87800", + "codeCommune": "87106", + "libelleAcheminement": "NEXON", + "nomCommune": "NEXON" }, { - "codePostal": "71270", - "codeCommune": "71029", - "libelleAcheminement": "BELLEVESVRE", - "nomCommune": "BELLEVESVRE" + "codePostal": "72600", + "codeCommune": "72316", + "libelleAcheminement": "ST REMY DES MONTS", + "nomCommune": "ST REMY DES MONTS" }, { - "codePostal": "85330", - "codeCommune": "85163", - "libelleAcheminement": "NOIRMOUTIER EN L ILE", - "nomCommune": "NOIRMOUTIER EN L ILE" + "codePostal": "87220", + "codeCommune": "87063", + "libelleAcheminement": "EYJEAUX", + "nomCommune": "EYJEAUX" }, { - "codePostal": "87800", - "codeCommune": "87150", - "libelleAcheminement": "ST HILAIRE LES PLACES", - "nomCommune": "ST HILAIRE LES PLACES" + "codePostal": "76370", + "codeCommune": "76217", + "libelleAcheminement": "DIEPPE", + "nomCommune": "DIEPPE" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "87210", + "codeCommune": "87109", + "libelleAcheminement": "ORADOUR ST GENEST", + "nomCommune": "ORADOUR ST GENEST" }, { - "codePostal": "71460", - "codeCommune": "71037", - "libelleAcheminement": "BISSY SUR FLEY", - "nomCommune": "BISSY SUR FLEY" + "codePostal": "72460", + "codeCommune": "72329", + "libelleAcheminement": "SAVIGNE L EVEQUE", + "nomCommune": "SAVIGNE L EVEQUE" }, { - "codePostal": "85320", - "codeCommune": "85175", - "libelleAcheminement": "LES PINEAUX", - "nomCommune": "LES PINEAUX" + "codePostal": "87220", + "codeCommune": "87065", + "libelleAcheminement": "FEYTIAT", + "nomCommune": "FEYTIAT" }, { - "codePostal": "87590", - "codeCommune": "87156", - "libelleAcheminement": "ST JUST LE MARTEL", - "nomCommune": "ST JUST LE MARTEL" + "codePostal": "76370", + "codeCommune": "76217", + "libelleAcheminement": "DIEPPE", + "nomCommune": "DIEPPE" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "87520", + "codeCommune": "87110", + "libelleAcheminement": "ORADOUR SUR GLANE", + "nomCommune": "ORADOUR SUR GLANE" }, { - "codePostal": "71330", - "codeCommune": "71045", - "libelleAcheminement": "BOUHANS", - "nomCommune": "BOUHANS" + "codePostal": "72800", + "codeCommune": "72330", + "libelleAcheminement": "SAVIGNE SOUS LE LUDE", + "nomCommune": "SAVIGNE SOUS LE LUDE" }, { - "codePostal": "85200", - "codeCommune": "85176", - "libelleAcheminement": "PISSOTTE", - "nomCommune": "PISSOTTE" + "codePostal": "87250", + "codeCommune": "87067", + "libelleAcheminement": "FOLLES", + "nomCommune": "FOLLES" }, { - "codePostal": "87420", - "codeCommune": "87162", - "libelleAcheminement": "STE MARIE DE VAUX", - "nomCommune": "STE MARIE DE VAUX" + "codePostal": "76560", + "codeCommune": "76219", + "libelleAcheminement": "DOUDEVILLE", + "nomCommune": "DOUDEVILLE" }, { - "codePostal": "79140", - "codeCommune": "79050", - "libelleAcheminement": "BRETIGNOLLES", - "nomCommune": "BRETIGNOLLES" + "codePostal": "87230", + "codeCommune": "87112", + "libelleAcheminement": "PAGEAS", + "nomCommune": "PAGEAS" }, { - "codePostal": "71140", - "codeCommune": "71047", - "libelleAcheminement": "BOURBON LANCY", - "nomCommune": "BOURBON LANCY" + "codePostal": "72130", + "codeCommune": "72337", + "libelleAcheminement": "SOUGE LE GANELON", + "nomCommune": "SOUGE LE GANELON" }, { - "codePostal": "85770", - "codeCommune": "85177", - "libelleAcheminement": "LES VELLUIRE SUR VENDEE", - "nomCommune": "LES VELLUIRE SUR VENDEE" + "codePostal": "87500", + "codeCommune": "87071", + "libelleAcheminement": "GLANDON", + "nomCommune": "GLANDON" }, { - "codePostal": "87440", - "codeCommune": "87168", - "libelleAcheminement": "ST MATHIEU", - "nomCommune": "ST MATHIEU" + "codePostal": "76480", + "codeCommune": "76222", + "libelleAcheminement": "DUCLAIR", + "nomCommune": "DUCLAIR" }, { - "codePostal": "79170", - "codeCommune": "79055", - "libelleAcheminement": "BRIEUIL SUR CHIZE", - "nomCommune": "BRIEUIL SUR CHIZE" + "codePostal": "87410", + "codeCommune": "87113", + "libelleAcheminement": "LE PALAIS SUR VIENNE", + "nomCommune": "LE PALAIS SUR VIENNE" }, { - "codePostal": "71350", - "codeCommune": "71054", - "libelleAcheminement": "BRAGNY SUR SAONE", - "nomCommune": "BRAGNY SUR SAONE" + "codePostal": "72380", + "codeCommune": "72338", + "libelleAcheminement": "SOUILLE", + "nomCommune": "SOUILLE" }, { - "codePostal": "85570", - "codeCommune": "85181", - "libelleAcheminement": "POUILLE", - "nomCommune": "POUILLE" + "codePostal": "87370", + "codeCommune": "87076", + "libelleAcheminement": "JABREILLES LES BORDES", + "nomCommune": "JABREILLES LES BORDES" }, { - "codePostal": "87800", - "codeCommune": "87169", - "libelleAcheminement": "ST MAURICE LES BROUSSES", - "nomCommune": "ST MAURICE LES BROUSSES" + "codePostal": "76190", + "codeCommune": "76223", + "libelleAcheminement": "ECALLES ALIX", + "nomCommune": "ECALLES ALIX" }, { - "codePostal": "79370", - "codeCommune": "79061", - "libelleAcheminement": "CELLES SUR BELLE", - "nomCommune": "CELLES SUR BELLE" + "codePostal": "87350", + "codeCommune": "87114", + "libelleAcheminement": "PANAZOL", + "nomCommune": "PANAZOL" }, { - "codePostal": "71670", - "codeCommune": "71059", - "libelleAcheminement": "LE BREUIL", - "nomCommune": "LE BREUIL" + "codePostal": "72210", + "codeCommune": "72346", + "libelleAcheminement": "LA SUZE SUR SARTHE", + "nomCommune": "LA SUZE SUR SARTHE" }, { - "codePostal": "85700", - "codeCommune": "85182", - "libelleAcheminement": "POUZAUGES", - "nomCommune": "POUZAUGES" + "codePostal": "87500", + "codeCommune": "87082", + "libelleAcheminement": "LADIGNAC LE LONG", + "nomCommune": "LADIGNAC LE LONG" }, { - "codePostal": "87800", - "codeCommune": "87176", - "libelleAcheminement": "ST PRIEST LIGOURE", - "nomCommune": "ST PRIEST LIGOURE" + "codePostal": "76780", + "codeCommune": "76230", + "libelleAcheminement": "ELBEUF SUR ANDELLE", + "nomCommune": "ELBEUF SUR ANDELLE" }, { - "codePostal": "79290", - "codeCommune": "79063", - "libelleAcheminement": "VAL EN VIGNES", - "nomCommune": "VAL EN VIGNES" + "codePostal": "87380", + "codeCommune": "87120", + "libelleAcheminement": "LA PORCHERIE", + "nomCommune": "LA PORCHERIE" }, { - "codePostal": "71250", - "codeCommune": "71065", - "libelleAcheminement": "BUFFIERES", - "nomCommune": "BUFFIERES" + "codePostal": "72290", + "codeCommune": "72349", + "libelleAcheminement": "TEILLE", + "nomCommune": "TEILLE" }, { - "codePostal": "85700", - "codeCommune": "85187", - "libelleAcheminement": "REAUMUR", - "nomCommune": "REAUMUR" + "codePostal": "87370", + "codeCommune": "87083", + "libelleAcheminement": "LAURIERE", + "nomCommune": "LAURIERE" }, { - "codePostal": "87700", - "codeCommune": "87177", - "libelleAcheminement": "ST PRIEST SOUS AIXE", - "nomCommune": "ST PRIEST SOUS AIXE" + "codePostal": "76570", + "codeCommune": "76234", + "libelleAcheminement": "EMANVILLE", + "nomCommune": "EMANVILLE" }, { - "codePostal": "79320", - "codeCommune": "79069", - "libelleAcheminement": "CHANTELOUP", - "nomCommune": "CHANTELOUP" + "codePostal": "87120", + "codeCommune": "87132", + "libelleAcheminement": "ST AMAND LE PETIT", + "nomCommune": "ST AMAND LE PETIT" }, { - "codePostal": "71260", - "codeCommune": "71066", - "libelleAcheminement": "BURGY", - "nomCommune": "BURGY" + "codePostal": "72800", + "codeCommune": "72357", + "libelleAcheminement": "THOREE LES PINS", + "nomCommune": "THOREE LES PINS" }, { - "codePostal": "85320", - "codeCommune": "85193", - "libelleAcheminement": "ROSNAY", - "nomCommune": "ROSNAY" + "codePostal": "87000", + "codeCommune": "87085", + "libelleAcheminement": "LIMOGES", + "nomCommune": "LIMOGES" }, { - "codePostal": "87500", - "codeCommune": "87187", - "libelleAcheminement": "ST YRIEIX LA PERCHE", - "nomCommune": "ST YRIEIX LA PERCHE" + "codePostal": "76640", + "codeCommune": "76236", + "libelleAcheminement": "ENVRONVILLE", + "nomCommune": "ENVRONVILLE" }, { - "codePostal": "79430", - "codeCommune": "79076", - "libelleAcheminement": "LA CHAPELLE ST LAURENT", - "nomCommune": "LA CHAPELLE ST LAURENT" + "codePostal": "87300", + "codeCommune": "87139", + "libelleAcheminement": "ST BONNET DE BELLAC", + "nomCommune": "ST BONNET DE BELLAC" }, { - "codePostal": "71460", - "codeCommune": "71068", - "libelleAcheminement": "BURZY", - "nomCommune": "BURZY" + "codePostal": "72170", + "codeCommune": "72362", + "libelleAcheminement": "LE TRONCHET", + "nomCommune": "LE TRONCHET" }, { - "codePostal": "85110", - "codeCommune": "85202", - "libelleAcheminement": "STE CECILE", - "nomCommune": "STE CECILE" + "codePostal": "87280", + "codeCommune": "87085", + "libelleAcheminement": "LIMOGES", + "nomCommune": "LIMOGES" }, { - "codePostal": "87360", - "codeCommune": "87195", - "libelleAcheminement": "TERSANNES", - "nomCommune": "TERSANNES" + "codePostal": "76480", + "codeCommune": "76237", + "libelleAcheminement": "EPINAY SUR DUCLAIR", + "nomCommune": "EPINAY SUR DUCLAIR" }, { - "codePostal": "79130", - "codeCommune": "79077", - "libelleAcheminement": "BEUGNON THIREUIL", - "nomCommune": "BEUGNON THIREUIL" + "codePostal": "87400", + "codeCommune": "87142", + "libelleAcheminement": "ST DENIS DES MURS", + "nomCommune": "ST DENIS DES MURS" }, { - "codePostal": "71150", - "codeCommune": "71073", - "libelleAcheminement": "CHAGNY", - "nomCommune": "CHAGNY" + "codePostal": "72330", + "codeCommune": "72385", + "libelleAcheminement": "YVRE LE POLIN", + "nomCommune": "YVRE LE POLIN" }, { - "codePostal": "85580", - "codeCommune": "85207", - "libelleAcheminement": "ST DENIS DU PAYRE", - "nomCommune": "ST DENIS DU PAYRE" + "codePostal": "87380", + "codeCommune": "87088", + "libelleAcheminement": "MAGNAC BOURG", + "nomCommune": "MAGNAC BOURG" }, { - "codePostal": "87520", - "codeCommune": "87202", - "libelleAcheminement": "VEYRAC", - "nomCommune": "VEYRAC" + "codePostal": "76430", + "codeCommune": "76239", + "libelleAcheminement": "EPRETOT", + "nomCommune": "EPRETOT" }, { - "codePostal": "79360", - "codeCommune": "79078", - "libelleAcheminement": "PLAINE D ARGENSON", - "nomCommune": "PLAINE D ARGENSON" + "codePostal": "87800", + "codeCommune": "87150", + "libelleAcheminement": "ST HILAIRE LES PLACES", + "nomCommune": "ST HILAIRE LES PLACES" }, { - "codePostal": "71140", - "codeCommune": "71075", - "libelleAcheminement": "CHALMOUX", - "nomCommune": "CHALMOUX" + "codePostal": "73610", + "codeCommune": "73001", + "libelleAcheminement": "AIGUEBELETTE LE LAC", + "nomCommune": "AIGUEBELETTE LE LAC" }, { - "codePostal": "85440", - "codeCommune": "85231", - "libelleAcheminement": "ST HILAIRE LA FORET", - "nomCommune": "ST HILAIRE LA FORET" + "codePostal": "87160", + "codeCommune": "87090", + "libelleAcheminement": "MAILHAC SUR BENAIZE", + "nomCommune": "MAILHAC SUR BENAIZE" }, { - "codePostal": "87260", - "codeCommune": "87203", - "libelleAcheminement": "VICQ SUR BREUILH", - "nomCommune": "VICQ SUR BREUILH" + "codePostal": "76260", + "codeCommune": "76255", + "libelleAcheminement": "EU", + "nomCommune": "EU" }, { - "codePostal": "79360", - "codeCommune": "79078", - "libelleAcheminement": "PLAINE D ARGENSON", - "nomCommune": "PLAINE D ARGENSON" + "codePostal": "87240", + "codeCommune": "87157", + "libelleAcheminement": "ST LAURENT LES EGLISES", + "nomCommune": "ST LAURENT LES EGLISES" }, { - "codePostal": "71110", - "codeCommune": "71077", - "libelleAcheminement": "CHAMBILLY", - "nomCommune": "CHAMBILLY" + "codePostal": "73260", + "codeCommune": "73003", + "libelleAcheminement": "GRAND AIGUEBLANCHE", + "nomCommune": "GRAND AIGUEBLANCHE" }, { - "codePostal": "85210", - "codeCommune": "85233", - "libelleAcheminement": "ST JEAN DE BEUGNE", - "nomCommune": "ST JEAN DE BEUGNE" + "codePostal": "87380", + "codeCommune": "87095", + "libelleAcheminement": "MEUZAC", + "nomCommune": "MEUZAC" }, { - "codePostal": "87190", - "codeCommune": "87206", - "libelleAcheminement": "VILLEFAVARD", - "nomCommune": "VILLEFAVARD" + "codePostal": "76340", + "codeCommune": "76257", + "libelleAcheminement": "FALLENCOURT", + "nomCommune": "FALLENCOURT" }, { - "codePostal": "79700", - "codeCommune": "79079", - "libelleAcheminement": "MAULEON", - "nomCommune": "MAULEON" + "codePostal": "87340", + "codeCommune": "87159", + "libelleAcheminement": "ST LEGER LA MONTAGNE", + "nomCommune": "ST LEGER LA MONTAGNE" }, { - "codePostal": "71510", - "codeCommune": "71078", - "libelleAcheminement": "CHAMILLY", - "nomCommune": "CHAMILLY" + "codePostal": "73340", + "codeCommune": "73005", + "libelleAcheminement": "AILLON LE VIEUX", + "nomCommune": "AILLON LE VIEUX" }, { - "codePostal": "85160", - "codeCommune": "85234", - "libelleAcheminement": "ST JEAN DE MONTS", - "nomCommune": "ST JEAN DE MONTS" + "codePostal": "87800", + "codeCommune": "87096", + "libelleAcheminement": "LA MEYZE", + "nomCommune": "LA MEYZE" }, { - "codePostal": "88650", - "codeCommune": "88009", - "libelleAcheminement": "ANOULD", - "nomCommune": "ANOULD" + "codePostal": "76640", + "codeCommune": "76258", + "libelleAcheminement": "TERRES DE CAUX", + "nomCommune": "TERRES DE CAUX" }, { - "codePostal": "79170", - "codeCommune": "79085", - "libelleAcheminement": "CHERIGNE", - "nomCommune": "CHERIGNE" + "codePostal": "87440", + "codeCommune": "87168", + "libelleAcheminement": "ST MATHIEU", + "nomCommune": "ST MATHIEU" }, { - "codePostal": "21340", - "codeCommune": "71085", - "libelleAcheminement": "CHANGE", - "nomCommune": "CHANGE" + "codePostal": "73210", + "codeCommune": "73006", + "libelleAcheminement": "AIME LA PLAGNE", + "nomCommune": "AIME LA PLAGNE" }, { - "codePostal": "85410", - "codeCommune": "85237", - "libelleAcheminement": "ST LAURENT DE LA SALLE", - "nomCommune": "ST LAURENT DE LA SALLE" + "codePostal": "87140", + "codeCommune": "87103", + "libelleAcheminement": "NANTIAT", + "nomCommune": "NANTIAT" }, { - "codePostal": "88380", - "codeCommune": "88011", - "libelleAcheminement": "ARCHES", - "nomCommune": "ARCHES" + "codePostal": "76270", + "codeCommune": "76262", + "libelleAcheminement": "FESQUES", + "nomCommune": "FESQUES" }, { - "codePostal": "79600", - "codeCommune": "79089", - "libelleAcheminement": "LE CHILLOU", - "nomCommune": "LE CHILLOU" + "codePostal": "87480", + "codeCommune": "87178", + "libelleAcheminement": "ST PRIEST TAURION", + "nomCommune": "ST PRIEST TAURION" }, { - "codePostal": "71520", - "codeCommune": "71091", - "libelleAcheminement": "LA CHAPELLE DU MONT DE FRANCE", - "nomCommune": "LA CHAPELLE DU MONT DE FRANCE" + "codePostal": "73210", + "codeCommune": "73006", + "libelleAcheminement": "AIME LA PLAGNE", + "nomCommune": "AIME LA PLAGNE" }, { - "codePostal": "85220", - "codeCommune": "85239", - "libelleAcheminement": "ST MAIXENT SUR VIE", - "nomCommune": "ST MAIXENT SUR VIE" + "codePostal": "87260", + "codeCommune": "87119", + "libelleAcheminement": "PIERRE BUFFIERE", + "nomCommune": "PIERRE BUFFIERE" }, { - "codePostal": "88170", - "codeCommune": "88013", - "libelleAcheminement": "AROFFE", - "nomCommune": "AROFFE" + "codePostal": "76290", + "codeCommune": "76270", + "libelleAcheminement": "FONTAINE LA MALLET", + "nomCommune": "FONTAINE LA MALLET" }, { - "codePostal": "79420", - "codeCommune": "79092", - "libelleAcheminement": "CLAVE", - "nomCommune": "CLAVE" + "codePostal": "87370", + "codeCommune": "87181", + "libelleAcheminement": "ST SULPICE LAURIERE", + "nomCommune": "ST SULPICE LAURIERE" }, { - "codePostal": "71120", - "codeCommune": "71106", - "libelleAcheminement": "CHAROLLES", - "nomCommune": "CHAROLLES" + "codePostal": "73210", + "codeCommune": "73006", + "libelleAcheminement": "AIME LA PLAGNE", + "nomCommune": "AIME LA PLAGNE" }, { - "codePostal": "85210", - "codeCommune": "85248", - "libelleAcheminement": "ST MARTIN LARS EN STE HERMINE", - "nomCommune": "ST MARTIN LARS EN STE HERMINE" + "codePostal": "87600", + "codeCommune": "87126", + "libelleAcheminement": "ROCHECHOUART", + "nomCommune": "ROCHECHOUART" }, { - "codePostal": "88130", - "codeCommune": "88024", - "libelleAcheminement": "AVRAINVILLE", - "nomCommune": "AVRAINVILLE" + "codePostal": "76690", + "codeCommune": "76271", + "libelleAcheminement": "FONTAINE LE BOURG", + "nomCommune": "FONTAINE LE BOURG" }, { - "codePostal": "79160", - "codeCommune": "79101", - "libelleAcheminement": "COULONGES SUR L AUTIZE", - "nomCommune": "COULONGES SUR L AUTIZE" + "codePostal": "87420", + "codeCommune": "87185", + "libelleAcheminement": "ST VICTURNIEN", + "nomCommune": "ST VICTURNIEN" }, { - "codePostal": "71170", - "codeCommune": "71120", - "libelleAcheminement": "CHAUFFAILLES", - "nomCommune": "CHAUFFAILLES" + "codePostal": "73410", + "codeCommune": "73010", + "libelleAcheminement": "ENTRELACS", + "nomCommune": "ENTRELACS" }, { - "codePostal": "85150", - "codeCommune": "85250", - "libelleAcheminement": "ST MATHURIN", - "nomCommune": "ST MATHURIN" + "codePostal": "87250", + "codeCommune": "87128", + "libelleAcheminement": "ST PARDOUX LE LAC", + "nomCommune": "ST PARDOUX LE LAC" }, { - "codePostal": "88630", - "codeCommune": "88025", - "libelleAcheminement": "AVRANVILLE", - "nomCommune": "AVRANVILLE" + "codePostal": "76740", + "codeCommune": "76272", + "libelleAcheminement": "FONTAINE LE DUN", + "nomCommune": "FONTAINE LE DUN" }, { - "codePostal": "79340", - "codeCommune": "79105", - "libelleAcheminement": "LES CHATELIERS", - "nomCommune": "LES CHATELIERS" + "codePostal": "87130", + "codeCommune": "87194", + "libelleAcheminement": "SUSSAC", + "nomCommune": "SUSSAC" }, { - "codePostal": "71420", - "codeCommune": "71132", - "libelleAcheminement": "CIRY LE NOBLE", - "nomCommune": "CIRY LE NOBLE" + "codePostal": "73200", + "codeCommune": "73011", + "libelleAcheminement": "ALBERTVILLE", + "nomCommune": "ALBERTVILLE" }, { - "codePostal": "85570", - "codeCommune": "85274", - "libelleAcheminement": "ST VALERIEN", - "nomCommune": "ST VALERIEN" + "codePostal": "87130", + "codeCommune": "87130", + "libelleAcheminement": "ROZIERS ST GEORGES", + "nomCommune": "ROZIERS ST GEORGES" }, { - "codePostal": "88330", - "codeCommune": "88027", - "libelleAcheminement": "BADMENIL AUX BOIS", - "nomCommune": "BADMENIL AUX BOIS" + "codePostal": "76340", + "codeCommune": "76278", + "libelleAcheminement": "FOUCARMONT", + "nomCommune": "FOUCARMONT" }, { - "codePostal": "79160", - "codeCommune": "79119", - "libelleAcheminement": "FENIOUX", - "nomCommune": "FENIOUX" + "codePostal": "87140", + "codeCommune": "87197", + "libelleAcheminement": "THOURON", + "nomCommune": "THOURON" }, { - "codePostal": "71520", - "codeCommune": "71134", - "libelleAcheminement": "NAVOUR SUR GROSNE", - "nomCommune": "NAVOUR SUR GROSNE" + "codePostal": "73300", + "codeCommune": "73012", + "libelleAcheminement": "ALBIEZ LE JEUNE", + "nomCommune": "ALBIEZ LE JEUNE" }, { - "codePostal": "85520", - "codeCommune": "85278", - "libelleAcheminement": "ST VINCENT SUR JARD", - "nomCommune": "ST VINCENT SUR JARD" + "codePostal": "87290", + "codeCommune": "87133", + "libelleAcheminement": "ST AMAND MAGNAZEIX", + "nomCommune": "ST AMAND MAGNAZEIX" }, { - "codePostal": "88520", - "codeCommune": "88032", - "libelleAcheminement": "BAN DE LAVELINE", - "nomCommune": "BAN DE LAVELINE" + "codePostal": "76510", + "codeCommune": "76288", + "libelleAcheminement": "FREULLEVILLE", + "nomCommune": "FREULLEVILLE" }, { - "codePostal": "79390", - "codeCommune": "79120", - "libelleAcheminement": "LA FERRIERE EN PARTHENAY", - "nomCommune": "LA FERRIERE EN PARTHENAY" + "codePostal": "87260", + "codeCommune": "87203", + "libelleAcheminement": "VICQ SUR BREUILH", + "nomCommune": "VICQ SUR BREUILH" }, { - "codePostal": "71250", - "codeCommune": "71137", - "libelleAcheminement": "CLUNY", - "nomCommune": "CLUNY" + "codePostal": "73500", + "codeCommune": "73023", + "libelleAcheminement": "AUSSOIS", + "nomCommune": "AUSSOIS" }, { - "codePostal": "85450", - "codeCommune": "85286", - "libelleAcheminement": "LA TAILLEE", - "nomCommune": "LA TAILLEE" + "codePostal": "87150", + "codeCommune": "87137", + "libelleAcheminement": "ST BAZILE", + "nomCommune": "ST BAZILE" }, { - "codePostal": "88640", - "codeCommune": "88035", - "libelleAcheminement": "BARBEY SEROUX", - "nomCommune": "BARBEY SEROUX" + "codePostal": "76190", + "codeCommune": "76289", + "libelleAcheminement": "ST MARTIN DE L IF", + "nomCommune": "ST MARTIN DE L IF" }, { - "codePostal": "79340", - "codeCommune": "79121", - "libelleAcheminement": "FOMPERRON", - "nomCommune": "FOMPERRON" + "codePostal": "87110", + "codeCommune": "87205", + "libelleAcheminement": "LE VIGEN", + "nomCommune": "LE VIGEN" }, { - "codePostal": "71460", - "codeCommune": "71147", - "libelleAcheminement": "CORTEVAIX", - "nomCommune": "CORTEVAIX" + "codePostal": "73470", + "codeCommune": "73027", + "libelleAcheminement": "AYN", + "nomCommune": "AYN" }, { - "codePostal": "85440", - "codeCommune": "85288", - "libelleAcheminement": "TALMONT ST HILAIRE", - "nomCommune": "TALMONT ST HILAIRE" + "codePostal": "87260", + "codeCommune": "87151", + "libelleAcheminement": "ST JEAN LIGOURE", + "nomCommune": "ST JEAN LIGOURE" }, { - "codePostal": "88700", - "codeCommune": "88042", - "libelleAcheminement": "BAZIEN", - "nomCommune": "BAZIEN" + "codePostal": "76400", + "codeCommune": "76291", + "libelleAcheminement": "FROBERVILLE", + "nomCommune": "FROBERVILLE" }, { - "codePostal": "79110", - "codeCommune": "79122", - "libelleAcheminement": "FONTENILLE ST MARTIN ENTRAIGUES", - "nomCommune": "FONTENILLE ST MARTIN D ENTRAIGUES" + "codePostal": "88270", + "codeCommune": "88001", + "libelleAcheminement": "LES ABLEUVENETTES", + "nomCommune": "LES ABLEUVENETTES" }, { - "codePostal": "71490", - "codeCommune": "71149", - "libelleAcheminement": "COUCHES", - "nomCommune": "COUCHES" + "codePostal": "73000", + "codeCommune": "73031", + "libelleAcheminement": "BASSENS", + "nomCommune": "BASSENS" }, { - "codePostal": "85590", - "codeCommune": "85296", - "libelleAcheminement": "TREIZE VENTS", - "nomCommune": "TREIZE VENTS" + "codePostal": "87300", + "codeCommune": "87155", + "libelleAcheminement": "ST JUNIEN LES COMBES", + "nomCommune": "ST JUNIEN LES COMBES" }, { - "codePostal": "88300", - "codeCommune": "88044", - "libelleAcheminement": "BAZOILLES SUR MEUSE", - "nomCommune": "BAZOILLES SUR MEUSE" + "codePostal": "76740", + "codeCommune": "76294", + "libelleAcheminement": "LA GAILLARDE", + "nomCommune": "LA GAILLARDE" }, { - "codePostal": "79380", - "codeCommune": "79123", - "libelleAcheminement": "LA FORET SUR SEVRE", - "nomCommune": "LA FORET SUR SEVRE" + "codePostal": "88110", + "codeCommune": "88005", + "libelleAcheminement": "ALLARMONT", + "nomCommune": "ALLARMONT" }, { - "codePostal": "71490", - "codeCommune": "71151", - "libelleAcheminement": "CREOT", - "nomCommune": "CREOT" + "codePostal": "73540", + "codeCommune": "73032", + "libelleAcheminement": "LA BATHIE", + "nomCommune": "LA BATHIE" }, { - "codePostal": "85770", - "codeCommune": "85303", - "libelleAcheminement": "VIX", - "nomCommune": "VIX" + "codePostal": "87590", + "codeCommune": "87156", + "libelleAcheminement": "ST JUST LE MARTEL", + "nomCommune": "ST JUST LE MARTEL" }, { - "codePostal": "88800", - "codeCommune": "88051", - "libelleAcheminement": "BELMONT SUR VAIR", - "nomCommune": "BELMONT SUR VAIR" + "codePostal": "76430", + "codeCommune": "76303", + "libelleAcheminement": "GOMMERVILLE", + "nomCommune": "GOMMERVILLE" }, { - "codePostal": "79230", - "codeCommune": "79125", - "libelleAcheminement": "FORS", - "nomCommune": "FORS" + "codePostal": "88500", + "codeCommune": "88006", + "libelleAcheminement": "AMBACOURT", + "nomCommune": "AMBACOURT" }, { - "codePostal": "71150", - "codeCommune": "71170", - "libelleAcheminement": "DEMIGNY", - "nomCommune": "DEMIGNY" + "codePostal": "73460", + "codeCommune": "73048", + "libelleAcheminement": "BONVILLARD", + "nomCommune": "BONVILLARD" }, { - "codePostal": "85120", - "codeCommune": "85305", - "libelleAcheminement": "VOUVANT", - "nomCommune": "VOUVANT" + "codePostal": "87190", + "codeCommune": "87160", + "libelleAcheminement": "ST LEGER MAGNAZEIX", + "nomCommune": "ST LEGER MAGNAZEIX" }, { - "codePostal": "88500", - "codeCommune": "88066", - "libelleAcheminement": "BOULAINCOURT", - "nomCommune": "BOULAINCOURT" + "codePostal": "76110", + "codeCommune": "76304", + "libelleAcheminement": "GONFREVILLE CAILLOT", + "nomCommune": "GONFREVILLE CAILLOT" }, { - "codePostal": "79150", - "codeCommune": "79132", - "libelleAcheminement": "GENNETON", - "nomCommune": "GENNETON" + "codePostal": "88380", + "codeCommune": "88011", + "libelleAcheminement": "ARCHES", + "nomCommune": "ARCHES" }, { - "codePostal": "71330", - "codeCommune": "71175", - "libelleAcheminement": "DICONNE", - "nomCommune": "DICONNE" + "codePostal": "73370", + "codeCommune": "73050", + "libelleAcheminement": "BOURDEAU", + "nomCommune": "BOURDEAU" }, { - "codePostal": "86430", - "codeCommune": "86001", - "libelleAcheminement": "ADRIERS", - "nomCommune": "ADRIERS" + "codePostal": "87330", + "codeCommune": "87163", + "libelleAcheminement": "ST MARTIAL SUR ISOP", + "nomCommune": "ST MARTIAL SUR ISOP" }, { - "codePostal": "88140", - "codeCommune": "88079", - "libelleAcheminement": "BULGNEVILLE", - "nomCommune": "BULGNEVILLE" + "codePostal": "76700", + "codeCommune": "76305", + "libelleAcheminement": "GONFREVILLE L ORCHER", + "nomCommune": "GONFREVILLE L ORCHER" }, { - "codePostal": "79220", - "codeCommune": "79133", - "libelleAcheminement": "GERMOND ROUVRE", - "nomCommune": "GERMOND ROUVRE" + "codePostal": "88700", + "codeCommune": "88021", + "libelleAcheminement": "AUTREY", + "nomCommune": "AUTREY" }, { - "codePostal": "71480", - "codeCommune": "71177", - "libelleAcheminement": "DOMMARTIN LES CUISEAUX", - "nomCommune": "DOMMARTIN LES CUISEAUX" + "codePostal": "73370", + "codeCommune": "73051", + "libelleAcheminement": "LE BOURGET DU LAC", + "nomCommune": "LE BOURGET DU LAC" }, { - "codePostal": "86700", - "codeCommune": "86003", - "libelleAcheminement": "ANCHE", - "nomCommune": "ANCHE" + "codePostal": "87700", + "codeCommune": "87177", + "libelleAcheminement": "ST PRIEST SOUS AIXE", + "nomCommune": "ST PRIEST SOUS AIXE" }, { - "codePostal": "88540", - "codeCommune": "88081", - "libelleAcheminement": "BUSSANG", - "nomCommune": "BUSSANG" + "codePostal": "76700", + "codeCommune": "76305", + "libelleAcheminement": "GONFREVILLE L ORCHER", + "nomCommune": "GONFREVILLE L ORCHER" }, { - "codePostal": "79110", - "codeCommune": "79136", - "libelleAcheminement": "ALLOINAY", - "nomCommune": "ALLOINAY" + "codePostal": "88330", + "codeCommune": "88027", + "libelleAcheminement": "BADMENIL AUX BOIS", + "nomCommune": "BADMENIL AUX BOIS" }, { - "codePostal": "71420", - "codeCommune": "71179", - "libelleAcheminement": "DOMPIERRE SOUS SANVIGNES", - "nomCommune": "DOMPIERRE SOUS SANVIGNES" + "codePostal": "73520", + "codeCommune": "73058", + "libelleAcheminement": "LA BRIDOIRE", + "nomCommune": "LA BRIDOIRE" }, { - "codePostal": "86260", - "codeCommune": "86004", - "libelleAcheminement": "ANGLES SUR L ANGLIN", - "nomCommune": "ANGLES SUR L ANGLIN" + "codePostal": "87290", + "codeCommune": "87180", + "libelleAcheminement": "ST SORNIN LEULAC", + "nomCommune": "ST SORNIN LEULAC" }, { - "codePostal": "88600", - "codeCommune": "88086", - "libelleAcheminement": "CHAMP LE DUC", - "nomCommune": "CHAMP LE DUC" + "codePostal": "76700", + "codeCommune": "76305", + "libelleAcheminement": "GONFREVILLE L ORCHER", + "nomCommune": "GONFREVILLE L ORCHER" }, { - "codePostal": "79110", - "codeCommune": "79140", - "libelleAcheminement": "VALDELAUME", - "nomCommune": "VALDELAUME" + "codePostal": "88240", + "codeCommune": "88029", + "libelleAcheminement": "LA VOGE LES BAINS", + "nomCommune": "LA VOGE LES BAINS" }, { - "codePostal": "71490", - "codeCommune": "71183", - "libelleAcheminement": "DRACY LES COUCHES", - "nomCommune": "DRACY LES COUCHES" + "codePostal": "73200", + "codeCommune": "73061", + "libelleAcheminement": "CESARCHES", + "nomCommune": "CESARCHES" }, { - "codePostal": "86250", - "codeCommune": "86012", - "libelleAcheminement": "ASNOIS", - "nomCommune": "ASNOIS" + "codePostal": "87500", + "codeCommune": "87187", + "libelleAcheminement": "ST YRIEIX LA PERCHE", + "nomCommune": "ST YRIEIX LA PERCHE" }, { - "codePostal": "88600", - "codeCommune": "88089", - "libelleAcheminement": "LA CHAPELLE DEVANT BRUYERES", - "nomCommune": "LA CHAPELLE DEVANT BRUYERES" + "codePostal": "76280", + "codeCommune": "76307", + "libelleAcheminement": "GONNEVILLE LA MALLET", + "nomCommune": "GONNEVILLE LA MALLET" }, { - "codePostal": "79110", - "codeCommune": "79140", - "libelleAcheminement": "VALDELAUME", - "nomCommune": "VALDELAUME" + "codePostal": "88240", + "codeCommune": "88029", + "libelleAcheminement": "LA VOGE LES BAINS", + "nomCommune": "LA VOGE LES BAINS" }, { - "codePostal": "71350", - "codeCommune": "71186", - "libelleAcheminement": "ECUELLES", - "nomCommune": "ECUELLES" + "codePostal": "73190", + "codeCommune": "73064", + "libelleAcheminement": "CHALLES LES EAUX", + "nomCommune": "CHALLES LES EAUX" }, { - "codePostal": "86190", - "codeCommune": "86017", - "libelleAcheminement": "AYRON", - "nomCommune": "AYRON" + "codePostal": "87620", + "codeCommune": "87191", + "libelleAcheminement": "SEREILHAC", + "nomCommune": "SEREILHAC" }, { - "codePostal": "88170", - "codeCommune": "88095", - "libelleAcheminement": "CHATENOIS", - "nomCommune": "CHATENOIS" + "codePostal": "76520", + "codeCommune": "76313", + "libelleAcheminement": "GOUY", + "nomCommune": "GOUY" }, { - "codePostal": "79170", - "codeCommune": "79142", - "libelleAcheminement": "JUILLE", - "nomCommune": "JUILLE" + "codePostal": "88520", + "codeCommune": "88032", + "libelleAcheminement": "BAN DE LAVELINE", + "nomCommune": "BAN DE LAVELINE" }, { - "codePostal": "71210", - "codeCommune": "71187", - "libelleAcheminement": "ECUISSES", - "nomCommune": "ECUISSES" + "codePostal": "73240", + "codeCommune": "73070", + "libelleAcheminement": "CHAMPAGNEUX", + "nomCommune": "CHAMPAGNEUX" }, { - "codePostal": "86200", - "codeCommune": "86018", - "libelleAcheminement": "BASSES", - "nomCommune": "BASSES" + "codePostal": "87600", + "codeCommune": "87199", + "libelleAcheminement": "VAYRES", + "nomCommune": "VAYRES" }, { - "codePostal": "88630", - "codeCommune": "88102", - "libelleAcheminement": "CHERMISEY", - "nomCommune": "CHERMISEY" + "codePostal": "76370", + "codeCommune": "76324", + "libelleAcheminement": "GREGES", + "nomCommune": "GREGES" }, { - "codePostal": "79190", - "codeCommune": "79150", - "libelleAcheminement": "LIMALONGES", - "nomCommune": "LIMALONGES" + "codePostal": "88210", + "codeCommune": "88033", + "libelleAcheminement": "BAN DE SAPT", + "nomCommune": "BAN DE SAPT" }, { - "codePostal": "71240", - "codeCommune": "71193", - "libelleAcheminement": "ETRIGNY", - "nomCommune": "ETRIGNY" + "codePostal": "73170", + "codeCommune": "73078", + "libelleAcheminement": "LA CHAPELLE ST MARTIN", + "nomCommune": "LA CHAPELLE ST MARTIN" }, { - "codePostal": "86490", - "codeCommune": "86019", - "libelleAcheminement": "BEAUMONT ST CYR", - "nomCommune": "BEAUMONT ST CYR" + "codePostal": "87520", + "codeCommune": "87202", + "libelleAcheminement": "VEYRAC", + "nomCommune": "VEYRAC" }, { - "codePostal": "88270", - "codeCommune": "88103", - "libelleAcheminement": "CIRCOURT", - "nomCommune": "CIRCOURT" + "codePostal": "76690", + "codeCommune": "76331", + "libelleAcheminement": "GRUGNY", + "nomCommune": "GRUGNY" }, { - "codePostal": "79170", - "codeCommune": "79158", - "libelleAcheminement": "LUCHE SUR BRIOUX", - "nomCommune": "LUCHE SUR BRIOUX" + "codePostal": "88260", + "codeCommune": "88049", + "libelleAcheminement": "BELMONT LES DARNEY", + "nomCommune": "BELMONT LES DARNEY" }, { - "codePostal": "71240", - "codeCommune": "71193", - "libelleAcheminement": "ETRIGNY", - "nomCommune": "ETRIGNY" + "codePostal": "73390", + "codeCommune": "73079", + "libelleAcheminement": "CHATEAUNEUF", + "nomCommune": "CHATEAUNEUF" }, { - "codePostal": "86420", - "codeCommune": "86023", - "libelleAcheminement": "BERTHEGON", - "nomCommune": "BERTHEGON" + "codePostal": "88140", + "codeCommune": "88003", + "libelleAcheminement": "AINGEVILLE", + "nomCommune": "AINGEVILLE" }, { - "codePostal": "88240", - "codeCommune": "88108", - "libelleAcheminement": "LE CLERJUS", - "nomCommune": "LE CLERJUS" + "codePostal": "76730", + "codeCommune": "76334", + "libelleAcheminement": "GUEURES", + "nomCommune": "GUEURES" }, { - "codePostal": "79100", - "codeCommune": "79161", - "libelleAcheminement": "LUZAY", - "nomCommune": "LUZAY" + "codePostal": "88490", + "codeCommune": "88057", + "libelleAcheminement": "LE BEULAY", + "nomCommune": "LE BEULAY" }, { - "codePostal": "71150", - "codeCommune": "71194", - "libelleAcheminement": "FARGES LES CHALON", - "nomCommune": "FARGES LES CHALON" + "codePostal": "73630", + "codeCommune": "73101", + "libelleAcheminement": "DOUCY EN BAUGES", + "nomCommune": "DOUCY EN BAUGES" }, { - "codePostal": "86120", - "codeCommune": "86026", - "libelleAcheminement": "BEUXES", - "nomCommune": "BEUXES" + "codePostal": "88320", + "codeCommune": "88004", + "libelleAcheminement": "AINVELLE", + "nomCommune": "AINVELLE" }, { - "codePostal": "88120", - "codeCommune": "88109", - "libelleAcheminement": "CLEURIE", - "nomCommune": "CLEURIE" + "codePostal": "76440", + "codeCommune": "76343", + "libelleAcheminement": "HAUCOURT", + "nomCommune": "HAUCOURT" }, { - "codePostal": "79600", - "codeCommune": "79165", - "libelleAcheminement": "MAISONTIERS", - "nomCommune": "MAISONTIERS" + "codePostal": "88320", + "codeCommune": "88062", + "libelleAcheminement": "BLEVAINCOURT", + "nomCommune": "BLEVAINCOURT" }, { - "codePostal": "71580", - "codeCommune": "71196", - "libelleAcheminement": "LE FAY", - "nomCommune": "LE FAY" + "codePostal": "73610", + "codeCommune": "73104", + "libelleAcheminement": "DULLIN", + "nomCommune": "DULLIN" }, { - "codePostal": "86400", - "codeCommune": "86029", - "libelleAcheminement": "BLANZAY", - "nomCommune": "BLANZAY" + "codePostal": "88410", + "codeCommune": "88007", + "libelleAcheminement": "AMEUVELLE", + "nomCommune": "AMEUVELLE" }, { - "codePostal": "88600", - "codeCommune": "88130", - "libelleAcheminement": "DESTORD", - "nomCommune": "DESTORD" + "codePostal": "76280", + "codeCommune": "76361", + "libelleAcheminement": "HEUQUEVILLE", + "nomCommune": "HEUQUEVILLE" }, { - "codePostal": "79600", - "codeCommune": "79167", - "libelleAcheminement": "MARNES", - "nomCommune": "MARNES" + "codePostal": "88600", + "codeCommune": "88064", + "libelleAcheminement": "BOIS DE CHAMP", + "nomCommune": "BOIS DE CHAMP" }, { - "codePostal": "71340", - "codeCommune": "71200", - "libelleAcheminement": "FLEURY LA MONTAGNE", - "nomCommune": "FLEURY LA MONTAGNE" + "codePostal": "73300", + "codeCommune": "73116", + "libelleAcheminement": "FONTCOUVERTE LA TOUSSUIRE", + "nomCommune": "FONTCOUVERTE LA TOUSSUIRE" }, { - "codePostal": "86140", - "codeCommune": "86047", - "libelleAcheminement": "CERNAY", - "nomCommune": "CERNAY" + "codePostal": "88170", + "codeCommune": "88013", + "libelleAcheminement": "AROFFE", + "nomCommune": "AROFFE" }, { - "codePostal": "88600", - "codeCommune": "88131", - "libelleAcheminement": "DEYCIMONT", - "nomCommune": "DEYCIMONT" + "codePostal": "76770", + "codeCommune": "76367", + "libelleAcheminement": "HOUPPEVILLE", + "nomCommune": "HOUPPEVILLE" }, { - "codePostal": "79310", - "codeCommune": "79172", - "libelleAcheminement": "MAZIERES EN GATINE", - "nomCommune": "MAZIERES EN GATINE" + "codePostal": "88540", + "codeCommune": "88081", + "libelleAcheminement": "BUSSANG", + "nomCommune": "BUSSANG" }, { - "codePostal": "71390", - "codeCommune": "71201", - "libelleAcheminement": "FLEY", - "nomCommune": "FLEY" + "codePostal": "73500", + "codeCommune": "73119", + "libelleAcheminement": "FRENEY", + "nomCommune": "FRENEY" }, { - "codePostal": "86250", - "codeCommune": "86055", - "libelleAcheminement": "LA CHAPELLE BATON", - "nomCommune": "LA CHAPELLE BATON" + "codePostal": "88430", + "codeCommune": "88014", + "libelleAcheminement": "ARRENTES DE CORCIEUX", + "nomCommune": "ARRENTES DE CORCIEUX" }, { - "codePostal": "88000", - "codeCommune": "88136", - "libelleAcheminement": "DOGNEVILLE", - "nomCommune": "DOGNEVILLE" + "codePostal": "76110", + "codeCommune": "76368", + "libelleAcheminement": "HOUQUETOT", + "nomCommune": "HOUQUETOT" }, { - "codePostal": "79500", - "codeCommune": "79174", - "libelleAcheminement": "MELLE", - "nomCommune": "MELLE" + "codePostal": "88640", + "codeCommune": "88085", + "libelleAcheminement": "CHAMPDRAY", + "nomCommune": "CHAMPDRAY" }, { - "codePostal": "71530", - "codeCommune": "71204", - "libelleAcheminement": "FRAGNES LA LOYERE", - "nomCommune": "FRAGNES LA LOYERE" + "codePostal": "73250", + "codeCommune": "73120", + "libelleAcheminement": "FRETERIVE", + "nomCommune": "FRETERIVE" }, { - "codePostal": "86210", - "codeCommune": "86058", - "libelleAcheminement": "LA CHAPELLE MOULIERE", - "nomCommune": "LA CHAPELLE MOULIERE" + "codePostal": "88300", + "codeCommune": "88020", + "libelleAcheminement": "AUTREVILLE", + "nomCommune": "AUTREVILLE" }, { - "codePostal": "88330", - "codeCommune": "88143", - "libelleAcheminement": "DOMEVRE SUR DURBION", - "nomCommune": "DOMEVRE SUR DURBION" + "codePostal": "76230", + "codeCommune": "76377", + "libelleAcheminement": "ISNEAUVILLE", + "nomCommune": "ISNEAUVILLE" }, { - "codePostal": "79320", - "codeCommune": "79179", - "libelleAcheminement": "MONCOUTANT SUR SEVRE", - "nomCommune": "MONCOUTANT SUR SEVRE" + "codePostal": "88330", + "codeCommune": "88094", + "libelleAcheminement": "CHATEL SUR MOSELLE", + "nomCommune": "CHATEL SUR MOSELLE" }, { - "codePostal": "71270", - "codeCommune": "71207", - "libelleAcheminement": "FRETTERANS", - "nomCommune": "FRETTERANS" + "codePostal": "73630", + "codeCommune": "73139", + "libelleAcheminement": "JARSY", + "nomCommune": "JARSY" }, { - "codePostal": "86250", - "codeCommune": "86061", - "libelleAcheminement": "CHARROUX", - "nomCommune": "CHARROUX" + "codePostal": "88500", + "codeCommune": "88023", + "libelleAcheminement": "AVILLERS", + "nomCommune": "AVILLERS" }, { - "codePostal": "88390", - "codeCommune": "88147", - "libelleAcheminement": "DOMMARTIN AUX BOIS", - "nomCommune": "DOMMARTIN AUX BOIS" + "codePostal": "76390", + "codeCommune": "76381", + "libelleAcheminement": "LANDES VIEILLES ET NEUVES", + "nomCommune": "LANDES VIEILLES ET NEUVES" }, { - "codePostal": "79380", - "codeCommune": "79179", - "libelleAcheminement": "MONCOUTANT SUR SEVRE", - "nomCommune": "MONCOUTANT SUR SEVRE" + "codePostal": "88170", + "codeCommune": "88095", + "libelleAcheminement": "CHATENOIS", + "nomCommune": "CHATENOIS" }, { - "codePostal": "71590", - "codeCommune": "71215", - "libelleAcheminement": "GERGY", - "nomCommune": "GERGY" + "codePostal": "73610", + "codeCommune": "73145", + "libelleAcheminement": "LEPIN LE LAC", + "nomCommune": "LEPIN LE LAC" }, { - "codePostal": "86250", - "codeCommune": "86063", - "libelleAcheminement": "CHATAIN", - "nomCommune": "CHATAIN" + "codePostal": "88240", + "codeCommune": "88029", + "libelleAcheminement": "LA VOGE LES BAINS", + "nomCommune": "LA VOGE LES BAINS" }, { - "codePostal": "88200", - "codeCommune": "88148", - "libelleAcheminement": "DOMMARTIN LES REMIREMONT", - "nomCommune": "DOMMARTIN LES REMIREMONT" + "codePostal": "76210", + "codeCommune": "76382", + "libelleAcheminement": "LANQUETOT", + "nomCommune": "LANQUETOT" }, { - "codePostal": "79370", - "codeCommune": "79185", - "libelleAcheminement": "AIGONDIGNE", - "nomCommune": "AIGONDIGNE" + "codePostal": "88390", + "codeCommune": "88098", + "libelleAcheminement": "CHAUMOUSEY", + "nomCommune": "CHAUMOUSEY" }, { - "codePostal": "71520", - "codeCommune": "71217", - "libelleAcheminement": "GERMOLLES SUR GROSNE", - "nomCommune": "GERMOLLES SUR GROSNE" + "codePostal": "73210", + "codeCommune": "73150", + "libelleAcheminement": "LA PLAGNE TARENTAISE", + "nomCommune": "LA PLAGNE TARENTAISE" }, { - "codePostal": "86100", - "codeCommune": "86066", - "libelleAcheminement": "CHATELLERAULT", - "nomCommune": "CHATELLERAULT" + "codePostal": "88270", + "codeCommune": "88030", + "libelleAcheminement": "BAINVILLE AUX SAULES", + "nomCommune": "BAINVILLE AUX SAULES" }, { - "codePostal": "88260", - "codeCommune": "88149", - "libelleAcheminement": "DOMMARTIN LES VALLOIS", - "nomCommune": "DOMMARTIN LES VALLOIS" + "codePostal": "76730", + "codeCommune": "76383", + "libelleAcheminement": "LESTANVILLE", + "nomCommune": "LESTANVILLE" }, { - "codePostal": "79370", - "codeCommune": "79185", - "libelleAcheminement": "AIGONDIGNE", - "nomCommune": "AIGONDIGNE" + "codePostal": "88150", + "codeCommune": "88099", + "libelleAcheminement": "CHAVELOT", + "nomCommune": "CHAVELOT" }, { - "codePostal": "71160", - "codeCommune": "71220", - "libelleAcheminement": "GILLY SUR LOIRE", - "nomCommune": "GILLY SUR LOIRE" + "codePostal": "73800", + "codeCommune": "73151", + "libelleAcheminement": "PORTE DE SAVOIE", + "nomCommune": "PORTE DE SAVOIE" }, { - "codePostal": "86110", - "codeCommune": "86075", - "libelleAcheminement": "CHOUPPES", - "nomCommune": "CHOUPPES" + "codePostal": "88130", + "codeCommune": "88038", + "libelleAcheminement": "BATTEXEY", + "nomCommune": "BATTEXEY" }, { - "codePostal": "88510", - "codeCommune": "88158", - "libelleAcheminement": "ELOYES", - "nomCommune": "ELOYES" + "codePostal": "76540", + "codeCommune": "76386", + "libelleAcheminement": "LIMPIVILLE", + "nomCommune": "LIMPIVILLE" }, { - "codePostal": "79000", - "codeCommune": "79191", - "libelleAcheminement": "NIORT", - "nomCommune": "NIORT" + "codePostal": "88270", + "codeCommune": "88103", + "libelleAcheminement": "CIRCOURT", + "nomCommune": "CIRCOURT" }, { - "codePostal": "71430", - "codeCommune": "71224", - "libelleAcheminement": "GRANDVAUX", - "nomCommune": "GRANDVAUX" + "codePostal": "73000", + "codeCommune": "73160", + "libelleAcheminement": "MONTAGNOLE", + "nomCommune": "MONTAGNOLE" }, { - "codePostal": "86170", - "codeCommune": "86076", - "libelleAcheminement": "CISSE", - "nomCommune": "CISSE" + "codePostal": "88500", + "codeCommune": "88039", + "libelleAcheminement": "BAUDRICOURT", + "nomCommune": "BAUDRICOURT" }, { - "codePostal": "88600", - "codeCommune": "88172", - "libelleAcheminement": "FIMENIL", - "nomCommune": "FIMENIL" + "codePostal": "76760", + "codeCommune": "76387", + "libelleAcheminement": "LINDEBEUF", + "nomCommune": "LINDEBEUF" }, { - "codePostal": "79100", - "codeCommune": "79196", - "libelleAcheminement": "PLAINE ET VALLEES", - "nomCommune": "PLAINE ET VALLEES" + "codePostal": "88410", + "codeCommune": "88105", + "libelleAcheminement": "CLAUDON", + "nomCommune": "CLAUDON" }, { - "codePostal": "71640", - "codeCommune": "71241", - "libelleAcheminement": "JAMBLES", - "nomCommune": "JAMBLES" + "codePostal": "73100", + "codeCommune": "73164", + "libelleAcheminement": "MONTCEL", + "nomCommune": "MONTCEL" }, { - "codePostal": "86400", - "codeCommune": "86078", - "libelleAcheminement": "CIVRAY", - "nomCommune": "CIVRAY" + "codePostal": "88260", + "codeCommune": "88052", + "libelleAcheminement": "BELRUPT", + "nomCommune": "BELRUPT" }, { - "codePostal": "88130", - "codeCommune": "88173", - "libelleAcheminement": "FLOREMONT", - "nomCommune": "FLOREMONT" + "codePostal": "76790", + "codeCommune": "76390", + "libelleAcheminement": "LES LOGES", + "nomCommune": "LES LOGES" }, { - "codePostal": "79600", - "codeCommune": "79196", - "libelleAcheminement": "PLAINE ET VALLEES", - "nomCommune": "PLAINE ET VALLEES" + "codePostal": "88230", + "codeCommune": "88106", + "libelleAcheminement": "BAN SUR MEURTHE CLEFCY", + "nomCommune": "BAN SUR MEURTHE CLEFCY" }, { - "codePostal": "71380", - "codeCommune": "71253", - "libelleAcheminement": "LANS", - "nomCommune": "LANS" + "codePostal": "73220", + "codeCommune": "73168", + "libelleAcheminement": "MONTGILBERT", + "nomCommune": "MONTGILBERT" }, { - "codePostal": "86490", - "codeCommune": "86081", - "libelleAcheminement": "COLOMBIERS", - "nomCommune": "COLOMBIERS" + "codePostal": "88520", + "codeCommune": "88054", + "libelleAcheminement": "BERTRIMOUTIER", + "nomCommune": "BERTRIMOUTIER" }, { - "codePostal": "88600", - "codeCommune": "88175", - "libelleAcheminement": "FONTENAY", - "nomCommune": "FONTENAY" + "codePostal": "76500", + "codeCommune": "76391", + "libelleAcheminement": "LA LONDE", + "nomCommune": "LA LONDE" }, { - "codePostal": "79220", - "codeCommune": "79200", - "libelleAcheminement": "PAMPLIE", - "nomCommune": "PAMPLIE" + "codePostal": "88140", + "codeCommune": "88114", + "libelleAcheminement": "CONTREXEVILLE", + "nomCommune": "CONTREXEVILLE" }, { - "codePostal": "71440", - "codeCommune": "71256", - "libelleAcheminement": "LESSARD EN BRESSE", - "nomCommune": "LESSARD EN BRESSE" + "codePostal": "73200", + "codeCommune": "73170", + "libelleAcheminement": "MONTHION", + "nomCommune": "MONTHION" }, { - "codePostal": "86600", - "codeCommune": "86083", - "libelleAcheminement": "COULOMBIERS", - "nomCommune": "COULOMBIERS" + "codePostal": "88450", + "codeCommune": "88055", + "libelleAcheminement": "BETTEGNEY ST BRICE", + "nomCommune": "BETTEGNEY ST BRICE" }, { - "codePostal": "88240", - "codeCommune": "88176", - "libelleAcheminement": "FONTENOY LE CHATEAU", - "nomCommune": "FONTENOY LE CHATEAU" + "codePostal": "76940", + "codeCommune": "76401", + "libelleAcheminement": "ARELAUNE EN SEINE", + "nomCommune": "ARELAUNE EN SEINE" }, { - "codePostal": "79190", - "codeCommune": "79212", - "libelleAcheminement": "PLIBOUX", - "nomCommune": "PLIBOUX" + "codePostal": "88270", + "codeCommune": "88122", + "libelleAcheminement": "DAMAS ET BETTEGNEY", + "nomCommune": "DAMAS ET BETTEGNEY" }, { - "codePostal": "71250", - "codeCommune": "71264", - "libelleAcheminement": "LOURNAND", - "nomCommune": "LOURNAND" + "codePostal": "73310", + "codeCommune": "73180", + "libelleAcheminement": "MOTZ", + "nomCommune": "MOTZ" }, { - "codePostal": "86240", - "codeCommune": "86088", - "libelleAcheminement": "CROUTELLE", - "nomCommune": "CROUTELLE" + "codePostal": "88430", + "codeCommune": "88059", + "libelleAcheminement": "BIFFONTAINE", + "nomCommune": "BIFFONTAINE" }, { - "codePostal": "88600", - "codeCommune": "88184", - "libelleAcheminement": "FREMIFONTAINE", - "nomCommune": "FREMIFONTAINE" + "codePostal": "76460", + "codeCommune": "76407", + "libelleAcheminement": "MANNEVILLE ES PLAINS", + "nomCommune": "MANNEVILLE ES PLAINS" }, { - "codePostal": "79130", - "codeCommune": "79215", - "libelleAcheminement": "POUGNE HERISSON", - "nomCommune": "POUGNE HERISSON" + "codePostal": "88320", + "codeCommune": "88123", + "libelleAcheminement": "DAMBLAIN", + "nomCommune": "DAMBLAIN" }, { - "codePostal": "71540", - "codeCommune": "71266", - "libelleAcheminement": "LUCENAY L EVEQUE", - "nomCommune": "LUCENAY L EVEQUE" + "codePostal": "73100", + "codeCommune": "73182", + "libelleAcheminement": "MOUXY", + "nomCommune": "MOUXY" }, { - "codePostal": "86220", - "codeCommune": "86092", - "libelleAcheminement": "DANGE ST ROMAIN", - "nomCommune": "DANGE ST ROMAIN" + "codePostal": "88410", + "codeCommune": "88061", + "libelleAcheminement": "BLEURVILLE", + "nomCommune": "BLEURVILLE" }, { - "codePostal": "88270", - "codeCommune": "88192", - "libelleAcheminement": "GELVECOURT ET ADOMPT", - "nomCommune": "GELVECOURT ET ADOMPT" + "codePostal": "76290", + "codeCommune": "76409", + "libelleAcheminement": "MANNEVILLETTE", + "nomCommune": "MANNEVILLETTE" }, { - "codePostal": "79700", - "codeCommune": "79235", - "libelleAcheminement": "ST AMAND SUR SEVRE", - "nomCommune": "ST AMAND SUR SEVRE" + "codePostal": "88170", + "codeCommune": "88125", + "libelleAcheminement": "DARNEY AUX CHENES", + "nomCommune": "DARNEY AUX CHENES" }, { - "codePostal": "71110", - "codeCommune": "71275", - "libelleAcheminement": "MARCIGNY", - "nomCommune": "MARCIGNY" + "codePostal": "73470", + "codeCommune": "73184", + "libelleAcheminement": "NANCES", + "nomCommune": "NANCES" }, { - "codePostal": "86130", - "codeCommune": "86095", - "libelleAcheminement": "DISSAY", - "nomCommune": "DISSAY" + "codePostal": "88260", + "codeCommune": "88065", + "libelleAcheminement": "BONVILLET", + "nomCommune": "BONVILLET" }, { - "codePostal": "88170", - "codeCommune": "88194", - "libelleAcheminement": "GEMMELAINCOURT", - "nomCommune": "GEMMELAINCOURT" + "codePostal": "76150", + "codeCommune": "76410", + "libelleAcheminement": "MAROMME", + "nomCommune": "MAROMME" }, { - "codePostal": "79380", - "codeCommune": "79236", - "libelleAcheminement": "ST ANDRE SUR SEVRE", - "nomCommune": "ST ANDRE SUR SEVRE" + "codePostal": "88700", + "codeCommune": "88127", + "libelleAcheminement": "DEINVILLERS", + "nomCommune": "DEINVILLERS" }, { - "codePostal": "71220", - "codeCommune": "71279", - "libelleAcheminement": "LE ROUSSET MARIZY", - "nomCommune": "LE ROUSSET MARIZY" + "codePostal": "73260", + "codeCommune": "73187", + "libelleAcheminement": "LA LECHERE", + "nomCommune": "LA LECHERE" }, { - "codePostal": "86140", - "codeCommune": "86096", - "libelleAcheminement": "DOUSSAY", - "nomCommune": "DOUSSAY" + "codePostal": "88250", + "codeCommune": "88075", + "libelleAcheminement": "LA BRESSE", + "nomCommune": "LA BRESSE" }, { - "codePostal": "88400", - "codeCommune": "88196", - "libelleAcheminement": "GERARDMER", - "nomCommune": "GERARDMER" + "codePostal": "76390", + "codeCommune": "76411", + "libelleAcheminement": "MARQUES", + "nomCommune": "MARQUES" }, { - "codePostal": "79400", - "codeCommune": "79253", - "libelleAcheminement": "ST GEORGES DE NOISNE", - "nomCommune": "ST GEORGES DE NOISNE" + "codePostal": "88000", + "codeCommune": "88136", + "libelleAcheminement": "DOGNEVILLE", + "nomCommune": "DOGNEVILLE" }, { - "codePostal": "71760", - "codeCommune": "71280", - "libelleAcheminement": "MARLY SOUS ISSY", - "nomCommune": "MARLY SOUS ISSY" + "codePostal": "73470", + "codeCommune": "73191", + "libelleAcheminement": "NOVALAISE", + "nomCommune": "NOVALAISE" }, { - "codePostal": "86160", - "codeCommune": "86097", - "libelleAcheminement": "LA FERRIERE AIROUX", - "nomCommune": "LA FERRIERE AIROUX" + "codePostal": "88140", + "codeCommune": "88079", + "libelleAcheminement": "BULGNEVILLE", + "nomCommune": "BULGNEVILLE" }, { - "codePostal": "88190", - "codeCommune": "88209", - "libelleAcheminement": "GOLBEY", - "nomCommune": "GOLBEY" + "codePostal": "76660", + "codeCommune": "76430", + "libelleAcheminement": "MESNIL FOLLEMPRISE", + "nomCommune": "MESNIL FOLLEMPRISE" }, { - "codePostal": "79100", - "codeCommune": "79258", - "libelleAcheminement": "ST JACQUES DE THOUARS", - "nomCommune": "ST JACQUES DE THOUARS" + "codePostal": "88170", + "codeCommune": "88137", + "libelleAcheminement": "DOLAINCOURT", + "nomCommune": "DOLAINCOURT" }, { - "codePostal": "71710", - "codeCommune": "71282", - "libelleAcheminement": "MARMAGNE", - "nomCommune": "MARMAGNE" + "codePostal": "73200", + "codeCommune": "73196", + "libelleAcheminement": "PALLUD", + "nomCommune": "PALLUD" }, { - "codePostal": "86300", - "codeCommune": "86098", - "libelleAcheminement": "FLEIX", - "nomCommune": "FLEIX" + "codePostal": "88700", + "codeCommune": "88080", + "libelleAcheminement": "BULT", + "nomCommune": "BULT" }, { - "codePostal": "88270", - "codeCommune": "88210", - "libelleAcheminement": "GORHEY", - "nomCommune": "GORHEY" + "codePostal": "76260", + "codeCommune": "76435", + "libelleAcheminement": "LE MESNIL REAUME", + "nomCommune": "LE MESNIL REAUME" }, { - "codePostal": "79600", - "codeCommune": "79268", - "libelleAcheminement": "ST LOUP LAMAIRE", - "nomCommune": "ST LOUP LAMAIRE" + "codePostal": "88500", + "codeCommune": "88144", + "libelleAcheminement": "DOMEVRE SOUS MONTFORT", + "nomCommune": "DOMEVRE SOUS MONTFORT" }, { - "codePostal": "71700", - "codeCommune": "71284", - "libelleAcheminement": "MARTAILLY LES BRANCION", - "nomCommune": "MARTAILLY LES BRANCION" + "codePostal": "73800", + "codeCommune": "73200", + "libelleAcheminement": "PLANAISE", + "nomCommune": "PLANAISE" }, { - "codePostal": "86160", - "codeCommune": "86103", - "libelleAcheminement": "GENCAY", - "nomCommune": "GENCAY" + "codePostal": "88600", + "codeCommune": "88086", + "libelleAcheminement": "CHAMP LE DUC", + "nomCommune": "CHAMP LE DUC" }, { - "codePostal": "88640", - "codeCommune": "88218", - "libelleAcheminement": "GRANGES AUMONTZEY", - "nomCommune": "GRANGES AUMONTZEY" + "codePostal": "76510", + "codeCommune": "76437", + "libelleAcheminement": "MEULERS", + "nomCommune": "MEULERS" }, { - "codePostal": "79160", - "codeCommune": "79269", - "libelleAcheminement": "ST MAIXENT DE BEUGNE", - "nomCommune": "ST MAIXENT DE BEUGNE" + "codePostal": "88270", + "codeCommune": "88151", + "libelleAcheminement": "DOMPAIRE", + "nomCommune": "DOMPAIRE" }, { - "codePostal": "71250", - "codeCommune": "71290", - "libelleAcheminement": "MAZILLE", - "nomCommune": "MAZILLE" + "codePostal": "73350", + "codeCommune": "73201", + "libelleAcheminement": "PLANAY", + "nomCommune": "PLANAY" }, { - "codePostal": "86340", - "codeCommune": "86105", - "libelleAcheminement": "GIZAY", - "nomCommune": "GIZAY" + "codePostal": "88000", + "codeCommune": "88087", + "libelleAcheminement": "CHANTRAINE", + "nomCommune": "CHANTRAINE" }, { - "codePostal": "88240", - "codeCommune": "88221", - "libelleAcheminement": "GRUEY LES SURANCE", - "nomCommune": "GRUEY LES SURANCE" + "codePostal": "76260", + "codeCommune": "76438", + "libelleAcheminement": "MILLEBOSC", + "nomCommune": "MILLEBOSC" }, { - "codePostal": "79230", - "codeCommune": "79273", - "libelleAcheminement": "ST MARTIN DE BERNEGOUE", - "nomCommune": "ST MARTIN DE BERNEGOUE" + "codePostal": "88500", + "codeCommune": "88155", + "libelleAcheminement": "DOMVALLIER", + "nomCommune": "DOMVALLIER" }, { - "codePostal": "71640", - "codeCommune": "71292", - "libelleAcheminement": "MELLECEY", - "nomCommune": "MELLECEY" + "codePostal": "73110", + "codeCommune": "73205", + "libelleAcheminement": "LE PONTET", + "nomCommune": "LE PONTET" }, { - "codePostal": "86600", - "codeCommune": "86116", - "libelleAcheminement": "JAZENEUIL", - "nomCommune": "JAZENEUIL" + "codePostal": "88240", + "codeCommune": "88088", + "libelleAcheminement": "LA CHAPELLE AUX BOIS", + "nomCommune": "LA CHAPELLE AUX BOIS" }, { - "codePostal": "88600", - "codeCommune": "88222", - "libelleAcheminement": "GUGNECOURT", - "nomCommune": "GUGNECOURT" + "codePostal": "76260", + "codeCommune": "76442", + "libelleAcheminement": "MONCHY SUR EU", + "nomCommune": "MONCHY SUR EU" }, { - "codePostal": "79100", - "codeCommune": "79274", - "libelleAcheminement": "ST MARTIN DE MACON", - "nomCommune": "ST MARTIN DE MACON" + "codePostal": "88320", + "codeCommune": "88179", + "libelleAcheminement": "FOUCHECOURT", + "nomCommune": "FOUCHECOURT" }, { - "codePostal": "71390", - "codeCommune": "71296", - "libelleAcheminement": "MESSEY SUR GROSNE", - "nomCommune": "MESSEY SUR GROSNE" + "codePostal": "73720", + "codeCommune": "73211", + "libelleAcheminement": "QUEIGE", + "nomCommune": "QUEIGE" }, { - "codePostal": "86470", - "codeCommune": "86123", - "libelleAcheminement": "BOIVRE LA VALLEE", - "nomCommune": "BOIVRE LA VALLEE" + "codePostal": "88600", + "codeCommune": "88089", + "libelleAcheminement": "LA CHAPELLE DEVANT BRUYERES", + "nomCommune": "LA CHAPELLE DEVANT BRUYERES" }, { - "codePostal": "88330", - "codeCommune": "88224", - "libelleAcheminement": "HADIGNY LES VERRIERES", - "nomCommune": "HADIGNY LES VERRIERES" + "codePostal": "76380", + "codeCommune": "76446", + "libelleAcheminement": "MONTIGNY", + "nomCommune": "MONTIGNY" }, { - "codePostal": "79150", - "codeCommune": "79280", - "libelleAcheminement": "ST MAURICE ETUSSON", - "nomCommune": "ST MAURICE ETUSSON" + "codePostal": "88270", + "codeCommune": "88187", + "libelleAcheminement": "FRENOIS", + "nomCommune": "FRENOIS" }, { - "codePostal": "71470", - "codeCommune": "71318", - "libelleAcheminement": "MONTPONT EN BRESSE", - "nomCommune": "MONTPONT EN BRESSE" + "codePostal": "73240", + "codeCommune": "73254", + "libelleAcheminement": "STE MARIE D ALVEY", + "nomCommune": "STE MARIE D ALVEY" }, { - "codePostal": "86470", - "codeCommune": "86123", - "libelleAcheminement": "BOIVRE LA VALLEE", - "nomCommune": "BOIVRE LA VALLEE" + "codePostal": "88460", + "codeCommune": "88091", + "libelleAcheminement": "CHARMOIS DEVANT BRUYERES", + "nomCommune": "CHARMOIS DEVANT BRUYERES" }, { - "codePostal": "88300", - "codeCommune": "88227", - "libelleAcheminement": "HAGNEVILLE ET RONCOURT", - "nomCommune": "HAGNEVILLE ET RONCOURT" + "codePostal": "76710", + "codeCommune": "76452", + "libelleAcheminement": "MONTVILLE", + "nomCommune": "MONTVILLE" }, { - "codePostal": "79240", - "codeCommune": "79286", - "libelleAcheminement": "ST PAUL EN GATINE", - "nomCommune": "ST PAUL EN GATINE" + "codePostal": "88270", + "codeCommune": "88192", + "libelleAcheminement": "GELVECOURT ET ADOMPT", + "nomCommune": "GELVECOURT ET ADOMPT" }, { - "codePostal": "71510", - "codeCommune": "71321", - "libelleAcheminement": "MOREY", - "nomCommune": "MOREY" + "codePostal": "73440", + "codeCommune": "73257", + "libelleAcheminement": "LES BELLEVILLE", + "nomCommune": "LES BELLEVILLE" }, { - "codePostal": "86290", - "codeCommune": "86132", - "libelleAcheminement": "LIGLET", - "nomCommune": "LIGLET" + "codePostal": "88500", + "codeCommune": "88097", + "libelleAcheminement": "CHAUFFECOURT", + "nomCommune": "CHAUFFECOURT" }, { - "codePostal": "88270", - "codeCommune": "88233", - "libelleAcheminement": "HAROL", - "nomCommune": "HAROL" + "codePostal": "76750", + "codeCommune": "76453", + "libelleAcheminement": "MORGNY LA POMMERAYE", + "nomCommune": "MORGNY LA POMMERAYE" }, { - "codePostal": "79270", - "codeCommune": "79298", - "libelleAcheminement": "ST SYMPHORIEN", - "nomCommune": "ST SYMPHORIEN" + "codePostal": "88170", + "codeCommune": "88194", + "libelleAcheminement": "GEMMELAINCOURT", + "nomCommune": "GEMMELAINCOURT" }, { - "codePostal": "71240", - "codeCommune": "71328", - "libelleAcheminement": "NANTON", - "nomCommune": "NANTON" + "codePostal": "73440", + "codeCommune": "73257", + "libelleAcheminement": "LES BELLEVILLE", + "nomCommune": "LES BELLEVILLE" }, { - "codePostal": "86160", - "codeCommune": "86141", - "libelleAcheminement": "MAGNE", - "nomCommune": "MAGNE" + "codePostal": "88500", + "codeCommune": "88100", + "libelleAcheminement": "CHEF HAUT", + "nomCommune": "CHEF HAUT" }, { - "codePostal": "88300", - "codeCommune": "88249", - "libelleAcheminement": "JAINVILLOTTE", - "nomCommune": "JAINVILLOTTE" + "codePostal": "76270", + "codeCommune": "76454", + "libelleAcheminement": "MORTEMER", + "nomCommune": "MORTEMER" }, { - "codePostal": "79190", - "codeCommune": "79307", - "libelleAcheminement": "SAUZE VAUSSAIS", - "nomCommune": "SAUZE VAUSSAIS" + "codePostal": "88140", + "codeCommune": "88195", + "libelleAcheminement": "GENDREVILLE", + "nomCommune": "GENDREVILLE" }, { - "codePostal": "71370", - "codeCommune": "71336", - "libelleAcheminement": "OUROUX SUR SAONE", - "nomCommune": "OUROUX SUR SAONE" + "codePostal": "73600", + "codeCommune": "73257", + "libelleAcheminement": "LES BELLEVILLE", + "nomCommune": "LES BELLEVILLE" }, { - "codePostal": "86370", - "codeCommune": "86147", - "libelleAcheminement": "MARIGNY CHEMEREAU", - "nomCommune": "MARIGNY CHEMEREAU" + "codePostal": "88630", + "codeCommune": "88102", + "libelleAcheminement": "CHERMISEY", + "nomCommune": "CHERMISEY" }, { - "codePostal": "88550", - "codeCommune": "88250", - "libelleAcheminement": "JARMENIL", - "nomCommune": "JARMENIL" + "codePostal": "76590", + "codeCommune": "76458", + "libelleAcheminement": "MUCHEDENT", + "nomCommune": "MUCHEDENT" }, { - "codePostal": "79200", - "codeCommune": "79322", - "libelleAcheminement": "LE TALLUD", - "nomCommune": "LE TALLUD" + "codePostal": "88430", + "codeCommune": "88198", + "libelleAcheminement": "GERBEPAL", + "nomCommune": "GERBEPAL" }, { - "codePostal": "71120", - "codeCommune": "71339", - "libelleAcheminement": "OZOLLES", - "nomCommune": "OZOLLES" + "codePostal": "73130", + "codeCommune": "73259", + "libelleAcheminement": "ST MARTIN SUR LA CHAMBRE", + "nomCommune": "ST MARTIN SUR LA CHAMBRE" }, { - "codePostal": "86110", - "codeCommune": "86154", - "libelleAcheminement": "MAZEUIL", - "nomCommune": "MAZEUIL" + "codePostal": "88300", + "codeCommune": "88104", + "libelleAcheminement": "CIRCOURT SUR MOUZON", + "nomCommune": "CIRCOURT SUR MOUZON" }, { - "codePostal": "88500", - "codeCommune": "88254", - "libelleAcheminement": "JORXEY", - "nomCommune": "JORXEY" + "codePostal": "76520", + "codeCommune": "76464", + "libelleAcheminement": "LA NEUVILLE CHANT D OISEL", + "nomCommune": "LA NEUVILLE CHANT D OISEL" }, { - "codePostal": "79100", - "codeCommune": "79329", - "libelleAcheminement": "THOUARS", - "nomCommune": "THOUARS" + "codePostal": "88410", + "codeCommune": "88208", + "libelleAcheminement": "GODONCOURT", + "nomCommune": "GODONCOURT" }, { - "codePostal": "71700", - "codeCommune": "71353", - "libelleAcheminement": "PLOTTES", - "nomCommune": "PLOTTES" + "codePostal": "73310", + "codeCommune": "73273", + "libelleAcheminement": "ST PIERRE DE CURTILLE", + "nomCommune": "ST PIERRE DE CURTILLE" }, { - "codePostal": "86440", - "codeCommune": "86158", - "libelleAcheminement": "MIGNE AUXANCES", - "nomCommune": "MIGNE AUXANCES" + "codePostal": "88170", + "codeCommune": "88117", + "libelleAcheminement": "COURCELLES SOUS CHATENOIS", + "nomCommune": "COURCELLES SOUS CHATENOIS" }, { - "codePostal": "88410", - "codeCommune": "88272", - "libelleAcheminement": "LIRONCOURT", - "nomCommune": "LIRONCOURT" + "codePostal": "76940", + "codeCommune": "76473", + "libelleAcheminement": "NOTRE DAME DE BLIQUETUIT", + "nomCommune": "NOTRE DAME DE BLIQUETUIT" }, { - "codePostal": "79210", - "codeCommune": "79334", - "libelleAcheminement": "VAL DU MIGNON", - "nomCommune": "VAL DU MIGNON" + "codePostal": "88640", + "codeCommune": "88218", + "libelleAcheminement": "GRANGES AUMONTZEY", + "nomCommune": "GRANGES AUMONTZEY" }, { - "codePostal": "71150", - "codeCommune": "71369", - "libelleAcheminement": "REMIGNY", - "nomCommune": "REMIGNY" + "codePostal": "73660", + "codeCommune": "73278", + "libelleAcheminement": "ST REMY DE MAURIENNE", + "nomCommune": "ST REMY DE MAURIENNE" }, { - "codePostal": "86330", - "codeCommune": "86161", - "libelleAcheminement": "MONCONTOUR", - "nomCommune": "MONCONTOUR" + "codePostal": "88140", + "codeCommune": "88119", + "libelleAcheminement": "CRAINVILLIERS", + "nomCommune": "CRAINVILLIERS" }, { - "codePostal": "88490", - "codeCommune": "88275", - "libelleAcheminement": "LUBINE", - "nomCommune": "LUBINE" + "codePostal": "76660", + "codeCommune": "76487", + "libelleAcheminement": "OSMOY ST VALERY", + "nomCommune": "OSMOY ST VALERY" }, { - "codePostal": "79120", - "codeCommune": "79338", - "libelleAcheminement": "VANZAY", - "nomCommune": "VANZAY" + "codePostal": "88240", + "codeCommune": "88221", + "libelleAcheminement": "GRUEY LES SURANCE", + "nomCommune": "GRUEY LES SURANCE" }, { - "codePostal": "71160", - "codeCommune": "71370", - "libelleAcheminement": "RIGNY SUR ARROUX", - "nomCommune": "RIGNY SUR ARROUX" + "codePostal": "73160", + "codeCommune": "73281", + "libelleAcheminement": "ST SULPICE", + "nomCommune": "ST SULPICE" }, { - "codePostal": "86330", - "codeCommune": "86161", - "libelleAcheminement": "MONCONTOUR", - "nomCommune": "MONCONTOUR" + "codePostal": "88330", + "codeCommune": "88121", + "libelleAcheminement": "DAMAS AUX BOIS", + "nomCommune": "DAMAS AUX BOIS" }, { - "codePostal": "88650", - "codeCommune": "88284", - "libelleAcheminement": "MANDRAY", - "nomCommune": "MANDRAY" + "codePostal": "76360", + "codeCommune": "76503", + "libelleAcheminement": "PISSY POVILLE", + "nomCommune": "PISSY POVILLE" }, { - "codePostal": "79420", - "codeCommune": "79340", - "libelleAcheminement": "VAUSSEROUX", - "nomCommune": "VAUSSEROUX" + "codePostal": "88300", + "codeCommune": "88232", + "libelleAcheminement": "HARMONVILLE", + "nomCommune": "HARMONVILLE" }, { - "codePostal": "71700", - "codeCommune": "71377", - "libelleAcheminement": "ROYER", - "nomCommune": "ROYER" + "codePostal": "73160", + "codeCommune": "73282", + "libelleAcheminement": "ST THIBAUD DE COUZ", + "nomCommune": "ST THIBAUD DE COUZ" }, { - "codePostal": "86330", - "codeCommune": "86161", - "libelleAcheminement": "MONCONTOUR", - "nomCommune": "MONCONTOUR" + "codePostal": "88260", + "codeCommune": "88124", + "libelleAcheminement": "DARNEY", + "nomCommune": "DARNEY" }, { - "codePostal": "88130", - "codeCommune": "88286", - "libelleAcheminement": "MARAINVILLE SUR MADON", - "nomCommune": "MARAINVILLE SUR MADON" + "codePostal": "76440", + "codeCommune": "76505", + "libelleAcheminement": "POMMEREUX", + "nomCommune": "POMMEREUX" }, { - "codePostal": "79310", - "codeCommune": "79345", - "libelleAcheminement": "VERRUYES", - "nomCommune": "VERRUYES" + "codePostal": "88270", + "codeCommune": "88237", + "libelleAcheminement": "HENNECOURT", + "nomCommune": "HENNECOURT" }, { - "codePostal": "71580", - "codeCommune": "71380", - "libelleAcheminement": "SAILLENARD", - "nomCommune": "SAILLENARD" + "codePostal": "73600", + "codeCommune": "73284", + "libelleAcheminement": "SALINS FONTAINE", + "nomCommune": "SALINS FONTAINE" }, { - "codePostal": "86500", - "codeCommune": "86165", - "libelleAcheminement": "MONTMORILLON", - "nomCommune": "MONTMORILLON" + "codePostal": "88210", + "codeCommune": "88128", + "libelleAcheminement": "DENIPAIRE", + "nomCommune": "DENIPAIRE" }, { - "codePostal": "88320", - "codeCommune": "88287", - "libelleAcheminement": "MAREY", - "nomCommune": "MAREY" + "codePostal": "76260", + "codeCommune": "76507", + "libelleAcheminement": "PONTS ET MARAIS", + "nomCommune": "PONTS ET MARAIS" }, { - "codePostal": "79160", - "codeCommune": "79351", - "libelleAcheminement": "VILLIERS EN PLAINE", - "nomCommune": "VILLIERS EN PLAINE" + "codePostal": "88130", + "codeCommune": "88239", + "libelleAcheminement": "HERGUGNEY", + "nomCommune": "HERGUGNEY" }, { - "codePostal": "71570", - "codeCommune": "71385", - "libelleAcheminement": "ST AMOUR BELLEVUE", - "nomCommune": "ST AMOUR BELLEVUE" + "codePostal": "73700", + "codeCommune": "73285", + "libelleAcheminement": "SEEZ", + "nomCommune": "SEEZ" }, { - "codePostal": "86310", - "codeCommune": "86175", - "libelleAcheminement": "NALLIERS", - "nomCommune": "NALLIERS" + "codePostal": "88270", + "codeCommune": "88129", + "libelleAcheminement": "DERBAMONT", + "nomCommune": "DERBAMONT" }, { - "codePostal": "88150", - "codeCommune": "88294", - "libelleAcheminement": "MAZELEY", - "nomCommune": "MAZELEY" + "codePostal": "76840", + "codeCommune": "76513", + "libelleAcheminement": "QUEVILLON", + "nomCommune": "QUEVILLON" }, { - "codePostal": "79170", - "codeCommune": "79352", - "libelleAcheminement": "VILLIERS SUR CHIZE", - "nomCommune": "VILLIERS SUR CHIZE" + "codePostal": "88600", + "codeCommune": "88240", + "libelleAcheminement": "HERPELMONT", + "nomCommune": "HERPELMONT" }, { - "codePostal": "71440", - "codeCommune": "71386", - "libelleAcheminement": "ST ANDRE EN BRESSE", - "nomCommune": "ST ANDRE EN BRESSE" + "codePostal": "73480", + "codeCommune": "73290", + "libelleAcheminement": "VAL CENIS", + "nomCommune": "VAL CENIS" }, { - "codePostal": "86150", - "codeCommune": "86176", - "libelleAcheminement": "NERIGNAC", - "nomCommune": "NERIGNAC" + "codePostal": "88600", + "codeCommune": "88130", + "libelleAcheminement": "DESTORD", + "nomCommune": "DESTORD" }, { - "codePostal": "88500", - "codeCommune": "88295", - "libelleAcheminement": "MAZIROT", - "nomCommune": "MAZIROT" + "codePostal": "76230", + "codeCommune": "76517", + "libelleAcheminement": "QUINCAMPOIX", + "nomCommune": "QUINCAMPOIX" }, { - "codePostal": "79220", - "codeCommune": "79357", - "libelleAcheminement": "XAINTRAY", - "nomCommune": "XAINTRAY" + "codePostal": "88320", + "codeCommune": "88248", + "libelleAcheminement": "ISCHES", + "nomCommune": "ISCHES" }, { - "codePostal": "71430", - "codeCommune": "71395", - "libelleAcheminement": "ST BONNET DE VIEILLE VIGNE", - "nomCommune": "ST BONNET DE VIEILLE VIGNE" + "codePostal": "73790", + "codeCommune": "73298", + "libelleAcheminement": "TOURS EN SAVOIE", + "nomCommune": "TOURS EN SAVOIE" }, { - "codePostal": "86200", - "codeCommune": "86181", - "libelleAcheminement": "NUEIL SOUS FAYE", - "nomCommune": "NUEIL SOUS FAYE" + "codePostal": "88600", + "codeCommune": "88131", + "libelleAcheminement": "DEYCIMONT", + "nomCommune": "DEYCIMONT" }, { - "codePostal": "88700", - "codeCommune": "88301", - "libelleAcheminement": "MENIL SUR BELVITTE", - "nomCommune": "MENIL SUR BELVITTE" + "codePostal": "76210", + "codeCommune": "76518", + "libelleAcheminement": "RAFFETOT", + "nomCommune": "RAFFETOT" }, { - "codePostal": "80100", - "codeCommune": "80001", - "libelleAcheminement": "ABBEVILLE", - "nomCommune": "ABBEVILLE" + "codePostal": "88300", + "codeCommune": "88249", + "libelleAcheminement": "JAINVILLOTTE", + "nomCommune": "JAINVILLOTTE" }, { - "codePostal": "71640", - "codeCommune": "71403", - "libelleAcheminement": "ST DENIS DE VAUX", - "nomCommune": "ST DENIS DE VAUX" + "codePostal": "73100", + "codeCommune": "73300", + "libelleAcheminement": "TRESSERVE", + "nomCommune": "TRESSERVE" }, { - "codePostal": "86220", - "codeCommune": "86183", - "libelleAcheminement": "LES ORMES", - "nomCommune": "LES ORMES" + "codePostal": "88000", + "codeCommune": "88132", + "libelleAcheminement": "DEYVILLERS", + "nomCommune": "DEYVILLERS" }, { - "codePostal": "88140", - "codeCommune": "88316", - "libelleAcheminement": "MORVILLE", - "nomCommune": "MORVILLE" + "codePostal": "76730", + "codeCommune": "76519", + "libelleAcheminement": "RAINFREVILLE", + "nomCommune": "RAINFREVILLE" }, { - "codePostal": "80270", - "codeCommune": "80013", - "libelleAcheminement": "AIRAINES", - "nomCommune": "AIRAINES" + "codePostal": "88000", + "codeCommune": "88253", + "libelleAcheminement": "JEUXEY", + "nomCommune": "JEUXEY" }, { - "codePostal": "71620", - "codeCommune": "71405", - "libelleAcheminement": "ST DIDIER EN BRESSE", - "nomCommune": "ST DIDIER EN BRESSE" + "codePostal": "73400", + "codeCommune": "73303", + "libelleAcheminement": "UGINE", + "nomCommune": "UGINE" }, { - "codePostal": "86220", - "codeCommune": "86186", - "libelleAcheminement": "OYRE", - "nomCommune": "OYRE" + "codePostal": "88000", + "codeCommune": "88133", + "libelleAcheminement": "DIGNONVILLE", + "nomCommune": "DIGNONVILLE" }, { - "codePostal": "88300", - "codeCommune": "88321", - "libelleAcheminement": "NEUFCHATEAU", - "nomCommune": "NEUFCHATEAU" + "codePostal": "76340", + "codeCommune": "76523", + "libelleAcheminement": "RETONVAL", + "nomCommune": "RETONVAL" }, { - "codePostal": "80200", - "codeCommune": "80015", - "libelleAcheminement": "AIZECOURT LE HAUT", - "nomCommune": "AIZECOURT LE HAUT" + "codePostal": "88640", + "codeCommune": "88256", + "libelleAcheminement": "JUSSARUPT", + "nomCommune": "JUSSARUPT" }, { - "codePostal": "71190", - "codeCommune": "71407", - "libelleAcheminement": "ST DIDIER SUR ARROUX", - "nomCommune": "ST DIDIER SUR ARROUX" + "codePostal": "73150", + "codeCommune": "73304", + "libelleAcheminement": "VAL D ISERE", + "nomCommune": "VAL D ISERE" }, { - "codePostal": "86300", - "codeCommune": "86187", - "libelleAcheminement": "PAIZAY LE SEC", - "nomCommune": "PAIZAY LE SEC" + "codePostal": "88390", + "codeCommune": "88147", + "libelleAcheminement": "DOMMARTIN AUX BOIS", + "nomCommune": "DOMMARTIN AUX BOIS" }, { - "codePostal": "88600", - "codeCommune": "88322", - "libelleAcheminement": "LA NEUVEVILLE DEVANT LEPANGES", - "nomCommune": "LA NEUVEVILLE DEVANT LEPANGES" + "codePostal": "76560", + "codeCommune": "76524", + "libelleAcheminement": "REUVILLE", + "nomCommune": "REUVILLE" }, { - "codePostal": "80300", - "codeCommune": "80016", - "libelleAcheminement": "ALBERT", - "nomCommune": "ALBERT" + "codePostal": "88500", + "codeCommune": "88257", + "libelleAcheminement": "JUVAINCOURT", + "nomCommune": "JUVAINCOURT" }, { - "codePostal": "71370", - "codeCommune": "71410", - "libelleAcheminement": "ST ETIENNE EN BRESSE", - "nomCommune": "ST ETIENNE EN BRESSE" + "codePostal": "73170", + "codeCommune": "73313", + "libelleAcheminement": "VERTHEMEX", + "nomCommune": "VERTHEMEX" }, { - "codePostal": "86320", - "codeCommune": "86190", - "libelleAcheminement": "PERSAC", - "nomCommune": "PERSAC" + "codePostal": "88600", + "codeCommune": "88152", + "libelleAcheminement": "DOMPIERRE", + "nomCommune": "DOMPIERRE" }, { - "codePostal": "88800", - "codeCommune": "88332", - "libelleAcheminement": "NORROY", - "nomCommune": "NORROY" + "codePostal": "76700", + "codeCommune": "76533", + "libelleAcheminement": "ROGERVILLE", + "nomCommune": "ROGERVILLE" }, { - "codePostal": "80270", - "codeCommune": "80019", - "libelleAcheminement": "ALLERY", - "nomCommune": "ALLERY" + "codePostal": "88320", + "codeCommune": "88258", + "libelleAcheminement": "LAMARCHE", + "nomCommune": "LAMARCHE" }, { - "codePostal": "71460", - "codeCommune": "71417", - "libelleAcheminement": "ST GENGOUX LE NATIONAL", - "nomCommune": "ST GENGOUX LE NATIONAL" + "codePostal": "73170", + "codeCommune": "73330", + "libelleAcheminement": "YENNE", + "nomCommune": "YENNE" }, { - "codePostal": "86450", - "codeCommune": "86193", - "libelleAcheminement": "PLEUMARTIN", - "nomCommune": "PLEUMARTIN" + "codePostal": "88700", + "codeCommune": "88153", + "libelleAcheminement": "DOMPTAIL", + "nomCommune": "DOMPTAIL" }, { - "codePostal": "88170", - "codeCommune": "88336", - "libelleAcheminement": "OLLAINVILLE", - "nomCommune": "OLLAINVILLE" + "codePostal": "76133", + "codeCommune": "76534", + "libelleAcheminement": "ROLLEVILLE", + "nomCommune": "ROLLEVILLE" }, { - "codePostal": "80260", - "codeCommune": "80020", - "libelleAcheminement": "ALLONVILLE", - "nomCommune": "ALLONVILLE" + "codePostal": "88300", + "codeCommune": "88259", + "libelleAcheminement": "LANDAVILLE", + "nomCommune": "LANDAVILLE" }, { - "codePostal": "71800", - "codeCommune": "71437", - "libelleAcheminement": "ST LAURENT EN BRIONNAIS", - "nomCommune": "ST LAURENT EN BRIONNAIS" + "codePostal": "74540", + "codeCommune": "74002", + "libelleAcheminement": "ALBY SUR CHERAN", + "nomCommune": "ALBY SUR CHERAN" }, { - "codePostal": "86000", - "codeCommune": "86194", - "libelleAcheminement": "POITIERS", - "nomCommune": "POITIERS" + "codePostal": "88630", + "codeCommune": "88154", + "libelleAcheminement": "DOMREMY LA PUCELLE", + "nomCommune": "DOMREMY LA PUCELLE" }, { - "codePostal": "88700", - "codeCommune": "88340", - "libelleAcheminement": "PADOUX", - "nomCommune": "PADOUX" + "codePostal": "76440", + "codeCommune": "76535", + "libelleAcheminement": "RONCHEROLLES EN BRAY", + "nomCommune": "RONCHEROLLES EN BRAY" }, { - "codePostal": "80090", - "codeCommune": "80021", - "libelleAcheminement": "AMIENS", - "nomCommune": "AMIENS" + "codePostal": "88600", + "codeCommune": "88266", + "libelleAcheminement": "LEPANGES SUR VOLOGNE", + "nomCommune": "LEPANGES SUR VOLOGNE" }, { - "codePostal": "71360", - "codeCommune": "71438", - "libelleAcheminement": "ST LEGER DU BOIS", - "nomCommune": "ST LEGER DU BOIS" + "codePostal": "74290", + "codeCommune": "74003", + "libelleAcheminement": "ALEX", + "nomCommune": "ALEX" }, { - "codePostal": "86460", - "codeCommune": "86200", - "libelleAcheminement": "PRESSAC", - "nomCommune": "PRESSAC" + "codePostal": "88220", + "codeCommune": "88157", + "libelleAcheminement": "DOUNOUX", + "nomCommune": "DOUNOUX" }, { - "codePostal": "88490", - "codeCommune": "88345", - "libelleAcheminement": "LA PETITE FOSSE", - "nomCommune": "LA PETITE FOSSE" + "codePostal": "76100", + "codeCommune": "76540", + "libelleAcheminement": "ROUEN", + "nomCommune": "ROUEN" }, { - "codePostal": "80500", - "codeCommune": "80032", - "libelleAcheminement": "ASSAINVILLERS", - "nomCommune": "ASSAINVILLERS" + "codePostal": "88410", + "codeCommune": "88272", + "libelleAcheminement": "LIRONCOURT", + "nomCommune": "LIRONCOURT" }, { - "codePostal": "71520", - "codeCommune": "71441", - "libelleAcheminement": "ST LEGER SOUS LA BUSSIERE", - "nomCommune": "ST LEGER SOUS LA BUSSIERE" + "codePostal": "74350", + "codeCommune": "74006", + "libelleAcheminement": "ALLONZIER LA CAILLE", + "nomCommune": "ALLONZIER LA CAILLE" }, { - "codePostal": "86250", - "codeCommune": "86242", - "libelleAcheminement": "ST ROMAIN", - "nomCommune": "ST ROMAIN" + "codePostal": "88410", + "codeCommune": "88171", + "libelleAcheminement": "FIGNEVELLE", + "nomCommune": "FIGNEVELLE" }, { - "codePostal": "88500", - "codeCommune": "88357", - "libelleAcheminement": "POUSSAY", - "nomCommune": "POUSSAY" + "codePostal": "76113", + "codeCommune": "76550", + "libelleAcheminement": "SAHURS", + "nomCommune": "SAHURS" }, { - "codePostal": "80560", - "codeCommune": "80038", - "libelleAcheminement": "AUCHONVILLERS", - "nomCommune": "AUCHONVILLERS" + "codePostal": "88000", + "codeCommune": "88273", + "libelleAcheminement": "LONGCHAMP", + "nomCommune": "LONGCHAMP" }, { - "codePostal": "71350", - "codeCommune": "71443", - "libelleAcheminement": "ST LOUP GEANGES", - "nomCommune": "ST LOUP GEANGES" + "codePostal": "74100", + "codeCommune": "74008", + "libelleAcheminement": "AMBILLY", + "nomCommune": "AMBILLY" }, { - "codePostal": "86100", - "codeCommune": "86245", - "libelleAcheminement": "SENILLE ST SAUVEUR", - "nomCommune": "SENILLE ST SAUVEUR" + "codePostal": "88600", + "codeCommune": "88172", + "libelleAcheminement": "FIMENIL", + "nomCommune": "FIMENIL" }, { - "codePostal": "88490", - "codeCommune": "88361", - "libelleAcheminement": "PROVENCHERES ET COLROY", - "nomCommune": "PROVENCHERES ET COLROY" + "codePostal": "76310", + "codeCommune": "76552", + "libelleAcheminement": "STE ADRESSE", + "nomCommune": "STE ADRESSE" }, { - "codePostal": "80490", - "codeCommune": "80051", - "libelleAcheminement": "BAILLEUL", - "nomCommune": "BAILLEUL" + "codePostal": "88170", + "codeCommune": "88274", + "libelleAcheminement": "LONGCHAMP SOUS CHATENOIS", + "nomCommune": "LONGCHAMP SOUS CHATENOIS" }, { - "codePostal": "71640", - "codeCommune": "71447", - "libelleAcheminement": "ST MARD DE VAUX", - "nomCommune": "ST MARD DE VAUX" + "codePostal": "74200", + "codeCommune": "74013", + "libelleAcheminement": "ANTHY SUR LEMAN", + "nomCommune": "ANTHY SUR LEMAN" }, { - "codePostal": "86310", - "codeCommune": "86246", - "libelleAcheminement": "ST SAVIN", - "nomCommune": "ST SAVIN" + "codePostal": "88600", + "codeCommune": "88175", + "libelleAcheminement": "FONTENAY", + "nomCommune": "FONTENAY" }, { - "codePostal": "88270", - "codeCommune": "88370", - "libelleAcheminement": "RANCOURT", - "nomCommune": "RANCOURT" + "codePostal": "76170", + "codeCommune": "76556", + "libelleAcheminement": "ST ANTOINE LA FORET", + "nomCommune": "ST ANTOINE LA FORET" }, { - "codePostal": "80600", - "codeCommune": "80055", - "libelleAcheminement": "BARLY", - "nomCommune": "BARLY" + "codePostal": "88650", + "codeCommune": "88284", + "libelleAcheminement": "MANDRAY", + "nomCommune": "MANDRAY" }, { - "codePostal": "71118", - "codeCommune": "71448", - "libelleAcheminement": "ST MARTIN BELLE ROCHE", - "nomCommune": "ST MARTIN BELLE ROCHE" + "codePostal": "74300", + "codeCommune": "74014", + "libelleAcheminement": "ARACHES LA FRASSE", + "nomCommune": "ARACHES LA FRASSE" }, { - "codePostal": "86400", - "codeCommune": "86247", - "libelleAcheminement": "ST SAVIOL", - "nomCommune": "ST SAVIOL" + "codePostal": "88240", + "codeCommune": "88176", + "libelleAcheminement": "FONTENOY LE CHATEAU", + "nomCommune": "FONTENOY LE CHATEAU" }, { - "codePostal": "88130", - "codeCommune": "88374", - "libelleAcheminement": "RAPEY", - "nomCommune": "RAPEY" + "codePostal": "76520", + "codeCommune": "76558", + "libelleAcheminement": "ST AUBIN CELLOVILLE", + "nomCommune": "ST AUBIN CELLOVILLE" }, { - "codePostal": "80170", - "codeCommune": "80058", - "libelleAcheminement": "BAYONVILLERS", - "nomCommune": "BAYONVILLERS" + "codePostal": "88410", + "codeCommune": "88291", + "libelleAcheminement": "MARTINVELLE", + "nomCommune": "MARTINVELLE" }, { - "codePostal": "71220", - "codeCommune": "71452", - "libelleAcheminement": "ST MARTIN DE SALENCEY", - "nomCommune": "ST MARTIN DE SALENCEY" + "codePostal": "74160", + "codeCommune": "74016", + "libelleAcheminement": "ARCHAMPS", + "nomCommune": "ARCHAMPS" }, { - "codePostal": "86120", - "codeCommune": "86250", - "libelleAcheminement": "SAIX", - "nomCommune": "SAIX" + "codePostal": "88530", + "codeCommune": "88177", + "libelleAcheminement": "LA FORGE", + "nomCommune": "LA FORGE" }, { - "codePostal": "88300", - "codeCommune": "88376", - "libelleAcheminement": "REBEUVILLE", - "nomCommune": "REBEUVILLE" + "codePostal": "76160", + "codeCommune": "76560", + "libelleAcheminement": "ST AUBIN EPINAY", + "nomCommune": "ST AUBIN EPINAY" }, { - "codePostal": "80500", - "codeCommune": "80074", - "libelleAcheminement": "BECQUIGNY", - "nomCommune": "BECQUIGNY" + "codePostal": "88600", + "codeCommune": "88297", + "libelleAcheminement": "MEMENIL", + "nomCommune": "MEMENIL" }, { - "codePostal": "71110", - "codeCommune": "71453", - "libelleAcheminement": "ST MARTIN DU LAC", - "nomCommune": "ST MARTIN DU LAC" + "codePostal": "74800", + "codeCommune": "74018", + "libelleAcheminement": "ARENTHON", + "nomCommune": "ARENTHON" }, { - "codePostal": "86230", - "codeCommune": "86260", - "libelleAcheminement": "SERIGNY", - "nomCommune": "SERIGNY" + "codePostal": "88500", + "codeCommune": "88185", + "libelleAcheminement": "FRENELLE LA GRANDE", + "nomCommune": "FRENELLE LA GRANDE" }, { - "codePostal": "88410", - "codeCommune": "88377", - "libelleAcheminement": "REGNEVELLE", - "nomCommune": "REGNEVELLE" + "codePostal": "76740", + "codeCommune": "76564", + "libelleAcheminement": "ST AUBIN SUR MER", + "nomCommune": "ST AUBIN SUR MER" }, { - "codePostal": "80260", - "codeCommune": "80077", - "libelleAcheminement": "BEHENCOURT", - "nomCommune": "BEHENCOURT" + "codePostal": "88630", + "codeCommune": "88303", + "libelleAcheminement": "MIDREVAUX", + "nomCommune": "MIDREVAUX" }, { - "codePostal": "71580", - "codeCommune": "71454", - "libelleAcheminement": "ST MARTIN DU MONT", - "nomCommune": "ST MARTIN DU MONT" + "codePostal": "74130", + "codeCommune": "74024", + "libelleAcheminement": "AYSE", + "nomCommune": "AYSE" }, { - "codePostal": "86290", - "codeCommune": "86270", - "libelleAcheminement": "THOLLET", - "nomCommune": "THOLLET" + "codePostal": "88160", + "codeCommune": "88188", + "libelleAcheminement": "FRESSE SUR MOSELLE", + "nomCommune": "FRESSE SUR MOSELLE" }, { - "codePostal": "88500", - "codeCommune": "88382", - "libelleAcheminement": "REMICOURT", - "nomCommune": "REMICOURT" + "codePostal": "76190", + "codeCommune": "76568", + "libelleAcheminement": "ST CLAIR SUR LES MONTS", + "nomCommune": "ST CLAIR SUR LES MONTS" }, { - "codePostal": "80140", - "codeCommune": "80084", - "libelleAcheminement": "BERMESNIL", - "nomCommune": "BERMESNIL" + "codePostal": "88330", + "codeCommune": "88313", + "libelleAcheminement": "MORIVILLE", + "nomCommune": "MORIVILLE" }, { - "codePostal": "71350", - "codeCommune": "71457", - "libelleAcheminement": "ST MARTIN EN GATINOIS", - "nomCommune": "ST MARTIN EN GATINOIS" + "codePostal": "74140", + "codeCommune": "74025", + "libelleAcheminement": "BALLAISON", + "nomCommune": "BALLAISON" }, { - "codePostal": "86540", - "codeCommune": "86272", - "libelleAcheminement": "THURE", - "nomCommune": "THURE" + "codePostal": "88350", + "codeCommune": "88189", + "libelleAcheminement": "FREVILLE", + "nomCommune": "FREVILLE" }, { - "codePostal": "88200", - "codeCommune": "88383", - "libelleAcheminement": "REMIREMONT", - "nomCommune": "REMIREMONT" + "codePostal": "76860", + "codeCommune": "76572", + "libelleAcheminement": "ST DENIS D ACLON", + "nomCommune": "ST DENIS D ACLON" }, { - "codePostal": "80140", - "codeCommune": "80084", - "libelleAcheminement": "BERMESNIL", - "nomCommune": "BERMESNIL" + "codePostal": "88210", + "codeCommune": "88317", + "libelleAcheminement": "MOUSSEY", + "nomCommune": "MOUSSEY" }, { - "codePostal": "71460", - "codeCommune": "71458", - "libelleAcheminement": "ST MARTIN LA PATROUILLE", - "nomCommune": "ST MARTIN LA PATROUILLE" + "codePostal": "74430", + "codeCommune": "74030", + "libelleAcheminement": "LA BAUME", + "nomCommune": "LA BAUME" }, { - "codePostal": "86120", - "codeCommune": "86274", - "libelleAcheminement": "LES TROIS MOUTIERS", - "nomCommune": "LES TROIS MOUTIERS" + "codePostal": "88520", + "codeCommune": "88193", + "libelleAcheminement": "GEMAINGOUTTE", + "nomCommune": "GEMAINGOUTTE" }, { - "codePostal": "88320", - "codeCommune": "88390", - "libelleAcheminement": "ROBECOURT", - "nomCommune": "ROBECOURT" + "codePostal": "76116", + "codeCommune": "76573", + "libelleAcheminement": "ST DENIS LE THIBOULT", + "nomCommune": "ST DENIS LE THIBOULT" }, { - "codePostal": "80440", - "codeCommune": "80107", - "libelleAcheminement": "BLANGY TRONVILLE", - "nomCommune": "BLANGY TRONVILLE" + "codePostal": "88470", + "codeCommune": "88328", + "libelleAcheminement": "NOMPATELIZE", + "nomCommune": "NOMPATELIZE" }, { - "codePostal": "71260", - "codeCommune": "71460", - "libelleAcheminement": "ST MAURICE DE SATONNAY", - "nomCommune": "ST MAURICE DE SATONNAY" + "codePostal": "74150", + "codeCommune": "74035", + "libelleAcheminement": "BLOYE", + "nomCommune": "BLOYE" }, { - "codePostal": "86230", - "codeCommune": "86275", - "libelleAcheminement": "USSEAU", - "nomCommune": "USSEAU" + "codePostal": "88390", + "codeCommune": "88201", + "libelleAcheminement": "GIRANCOURT", + "nomCommune": "GIRANCOURT" }, { - "codePostal": "88460", - "codeCommune": "88399", - "libelleAcheminement": "LE ROULIER", - "nomCommune": "LE ROULIER" + "codePostal": "76490", + "codeCommune": "76585", + "libelleAcheminement": "ST GILLES DE CRETOT", + "nomCommune": "ST GILLES DE CRETOT" }, { - "codePostal": "80150", - "codeCommune": "80109", - "libelleAcheminement": "LE BOISLE", - "nomCommune": "LE BOISLE" + "codePostal": "88500", + "codeCommune": "88334", + "libelleAcheminement": "OELLEVILLE", + "nomCommune": "OELLEVILLE" }, { - "codePostal": "71490", - "codeCommune": "71464", - "libelleAcheminement": "ST MAURICE LES COUCHES", - "nomCommune": "ST MAURICE LES COUCHES" + "codePostal": "74360", + "codeCommune": "74041", + "libelleAcheminement": "BONNEVAUX", + "nomCommune": "BONNEVAUX" }, { - "codePostal": "86230", - "codeCommune": "86280", - "libelleAcheminement": "VELLECHES", - "nomCommune": "VELLECHES" + "codePostal": "88500", + "codeCommune": "88202", + "libelleAcheminement": "GIRCOURT LES VIEVILLE", + "nomCommune": "GIRCOURT LES VIEVILLE" }, { - "codePostal": "88360", - "codeCommune": "88408", - "libelleAcheminement": "RUPT SUR MOSELLE", - "nomCommune": "RUPT SUR MOSELLE" + "codePostal": "76680", + "codeCommune": "76588", + "libelleAcheminement": "ST HELLIER", + "nomCommune": "ST HELLIER" }, { - "codePostal": "80220", - "codeCommune": "80120", - "libelleAcheminement": "BOUILLANCOURT EN SERY", - "nomCommune": "BOUILLANCOURT EN SERY" + "codePostal": "88500", + "codeCommune": "88335", + "libelleAcheminement": "OFFROICOURT", + "nomCommune": "OFFROICOURT" }, { - "codePostal": "71460", - "codeCommune": "71465", - "libelleAcheminement": "ST MICAUD", - "nomCommune": "ST MICAUD" + "codePostal": "74890", + "codeCommune": "74043", + "libelleAcheminement": "BONS EN CHABLAIS", + "nomCommune": "BONS EN CHABLAIS" }, { - "codePostal": "86190", - "codeCommune": "86292", - "libelleAcheminement": "VILLIERS", - "nomCommune": "VILLIERS" + "codePostal": "88270", + "codeCommune": "88210", + "libelleAcheminement": "GORHEY", + "nomCommune": "GORHEY" }, { - "codePostal": "88700", - "codeCommune": "88412", - "libelleAcheminement": "ST BENOIT LA CHIPOTTE", - "nomCommune": "ST BENOIT LA CHIPOTTE" + "codePostal": "76340", + "codeCommune": "76598", + "libelleAcheminement": "ST LEGER AUX BOIS", + "nomCommune": "ST LEGER AUX BOIS" }, { - "codePostal": "80220", - "codeCommune": "80127", - "libelleAcheminement": "BOUVAINCOURT SUR BRESLE", - "nomCommune": "BOUVAINCOURT SUR BRESLE" + "codePostal": "88100", + "codeCommune": "88341", + "libelleAcheminement": "PAIR ET GRANDRUPT", + "nomCommune": "PAIR ET GRANDRUPT" }, { - "codePostal": "71670", - "codeCommune": "71468", - "libelleAcheminement": "ST PIERRE DE VARENNES", - "nomCommune": "ST PIERRE DE VARENNES" + "codePostal": "74160", + "codeCommune": "74044", + "libelleAcheminement": "BOSSEY", + "nomCommune": "BOSSEY" }, { - "codePostal": "86700", - "codeCommune": "86296", - "libelleAcheminement": "VOULON", - "nomCommune": "VOULON" + "codePostal": "88240", + "codeCommune": "88214", + "libelleAcheminement": "GRANDRUPT DE BAINS", + "nomCommune": "GRANDRUPT DE BAINS" }, { - "codePostal": "88200", - "codeCommune": "88415", - "libelleAcheminement": "ST ETIENNE LES REMIREMONT", - "nomCommune": "ST ETIENNE LES REMIREMONT" + "codePostal": "76160", + "codeCommune": "76599", + "libelleAcheminement": "ST LEGER DU BOURG DENIS", + "nomCommune": "ST LEGER DU BOURG DENIS" }, { - "codePostal": "80440", - "codeCommune": "80131", - "libelleAcheminement": "BOVES", - "nomCommune": "BOVES" + "codePostal": "88370", + "codeCommune": "88351", + "libelleAcheminement": "PLOMBIERES LES BAINS", + "nomCommune": "PLOMBIERES LES BAINS" }, { - "codePostal": "71520", - "codeCommune": "71469", - "libelleAcheminement": "ST PIERRE LE VIEUX", - "nomCommune": "ST PIERRE LE VIEUX" + "codePostal": "74540", + "codeCommune": "74054", + "libelleAcheminement": "CHAINAZ LES FRASSES", + "nomCommune": "CHAINAZ LES FRASSES" }, { - "codePostal": "87120", - "codeCommune": "87004", - "libelleAcheminement": "AUGNE", - "nomCommune": "AUGNE" + "codePostal": "88330", + "codeCommune": "88224", + "libelleAcheminement": "HADIGNY LES VERRIERES", + "nomCommune": "HADIGNY LES VERRIERES" }, { - "codePostal": "88210", - "codeCommune": "88419", - "libelleAcheminement": "ST JEAN D ORMONT", - "nomCommune": "ST JEAN D ORMONT" + "codePostal": "76400", + "codeCommune": "76600", + "libelleAcheminement": "ST LEONARD", + "nomCommune": "ST LEONARD" }, { - "codePostal": "80150", - "codeCommune": "80133", - "libelleAcheminement": "BRAILLY CORNEHOTTE", - "nomCommune": "BRAILLY CORNEHOTTE" + "codePostal": "88370", + "codeCommune": "88351", + "libelleAcheminement": "PLOMBIERES LES BAINS", + "nomCommune": "PLOMBIERES LES BAINS" }, { - "codePostal": "71520", - "codeCommune": "71470", - "libelleAcheminement": "ST POINT", - "nomCommune": "ST POINT" + "codePostal": "74400", + "codeCommune": "74056", + "libelleAcheminement": "CHAMONIX MONT BLANC", + "nomCommune": "CHAMONIX MONT BLANC" }, { - "codePostal": "87120", - "codeCommune": "87009", - "libelleAcheminement": "BEAUMONT DU LAC", - "nomCommune": "BEAUMONT DU LAC" + "codePostal": "88270", + "codeCommune": "88226", + "libelleAcheminement": "HAGECOURT", + "nomCommune": "HAGECOURT" }, { - "codePostal": "88650", - "codeCommune": "88423", - "libelleAcheminement": "ST LEONARD", - "nomCommune": "ST LEONARD" + "codePostal": "76290", + "codeCommune": "76616", + "libelleAcheminement": "ST MARTIN DU MANOIR", + "nomCommune": "ST MARTIN DU MANOIR" }, { - "codePostal": "80300", - "codeCommune": "80138", - "libelleAcheminement": "BRESLE", - "nomCommune": "BRESLE" + "codePostal": "88370", + "codeCommune": "88351", + "libelleAcheminement": "PLOMBIERES LES BAINS", + "nomCommune": "PLOMBIERES LES BAINS" }, { - "codePostal": "71420", - "codeCommune": "71478", - "libelleAcheminement": "ST ROMAIN SOUS VERSIGNY", - "nomCommune": "ST ROMAIN SOUS VERSIGNY" + "codePostal": "74800", + "codeCommune": "74059", + "libelleAcheminement": "LA CHAPELLE RAMBAUD", + "nomCommune": "LA CHAPELLE RAMBAUD" }, { - "codePostal": "87300", - "codeCommune": "87018", - "libelleAcheminement": "BLOND", - "nomCommune": "BLOND" + "codePostal": "88300", + "codeCommune": "88227", + "libelleAcheminement": "HAGNEVILLE ET RONCOURT", + "nomCommune": "HAGNEVILLE ET RONCOURT" }, { - "codePostal": "88140", - "codeCommune": "88430", - "libelleAcheminement": "ST OUEN LES PAREY", - "nomCommune": "ST OUEN LES PAREY" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "80600", - "codeCommune": "80140", - "libelleAcheminement": "BREVILLERS", - "nomCommune": "BREVILLERS" + "codePostal": "88300", + "codeCommune": "88352", + "libelleAcheminement": "POMPIERRE", + "nomCommune": "POMPIERRE" }, { - "codePostal": "71800", - "codeCommune": "71483", - "libelleAcheminement": "ST SYMPHORIEN DES BOIS", - "nomCommune": "ST SYMPHORIEN DES BOIS" + "codePostal": "74210", + "codeCommune": "74072", + "libelleAcheminement": "CHEVALINE", + "nomCommune": "CHEVALINE" }, { - "codePostal": "87300", - "codeCommune": "87022", - "libelleAcheminement": "BREUILAUFA", - "nomCommune": "BREUILAUFA" + "codePostal": "88700", + "codeCommune": "88230", + "libelleAcheminement": "HARDANCOURT", + "nomCommune": "HARDANCOURT" }, { - "codePostal": "88170", - "codeCommune": "88431", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "80690", - "codeCommune": "80145", - "libelleAcheminement": "BRUCAMPS", - "nomCommune": "BRUCAMPS" + "codePostal": "88500", + "codeCommune": "88354", + "libelleAcheminement": "PONT SUR MADON", + "nomCommune": "PONT SUR MADON" }, { - "codePostal": "71390", - "codeCommune": "71485", - "libelleAcheminement": "ST VALLERIN", - "nomCommune": "ST VALLERIN" + "codePostal": "74350", + "codeCommune": "74088", + "libelleAcheminement": "COPPONEX", + "nomCommune": "COPPONEX" }, { - "codePostal": "87140", - "codeCommune": "87023", - "libelleAcheminement": "LE BUIS", - "nomCommune": "LE BUIS" + "codePostal": "88260", + "codeCommune": "88238", + "libelleAcheminement": "HENNEZEL", + "nomCommune": "HENNEZEL" }, { - "codePostal": "88700", - "codeCommune": "88432", - "libelleAcheminement": "ST PIERREMONT", - "nomCommune": "ST PIERREMONT" + "codePostal": "76260", + "codeCommune": "76619", + "libelleAcheminement": "ST MARTIN LE GAILLARD", + "nomCommune": "ST MARTIN LE GAILLARD" }, { - "codePostal": "80132", - "codeCommune": "80147", - "libelleAcheminement": "BUIGNY L ABBE", - "nomCommune": "BUIGNY L ABBE" + "codePostal": "88600", + "codeCommune": "88359", + "libelleAcheminement": "PREY", + "nomCommune": "PREY" }, { - "codePostal": "71230", - "codeCommune": "71486", - "libelleAcheminement": "ST VALLIER", - "nomCommune": "ST VALLIER" + "codePostal": "74800", + "codeCommune": "74090", + "libelleAcheminement": "CORNIER", + "nomCommune": "CORNIER" }, { - "codePostal": "87460", - "codeCommune": "87024", - "libelleAcheminement": "BUJALEUF", - "nomCommune": "BUJALEUF" + "codePostal": "88500", + "codeCommune": "88246", + "libelleAcheminement": "HYMONT", + "nomCommune": "HYMONT" }, { - "codePostal": "88480", - "codeCommune": "88435", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "76330", + "codeCommune": "76622", + "libelleAcheminement": "ST MAURICE D ETELAN", + "nomCommune": "ST MAURICE D ETELAN" }, { - "codePostal": "80330", - "codeCommune": "80160", - "libelleAcheminement": "CAGNY", - "nomCommune": "CAGNY" + "codePostal": "88210", + "codeCommune": "88362", + "libelleAcheminement": "LE PUID", + "nomCommune": "LE PUID" }, { - "codePostal": "71250", - "codeCommune": "71488", - "libelleAcheminement": "ST VINCENT DES PRES", - "nomCommune": "ST VINCENT DES PRES" + "codePostal": "74380", + "codeCommune": "74094", + "libelleAcheminement": "CRANVES SALES", + "nomCommune": "CRANVES SALES" }, { - "codePostal": "87800", - "codeCommune": "87025", - "libelleAcheminement": "BURGNAC", - "nomCommune": "BURGNAC" + "codePostal": "88630", + "codeCommune": "88255", + "libelleAcheminement": "JUBAINVILLE", + "nomCommune": "JUBAINVILLE" }, { - "codePostal": "88470", - "codeCommune": "88438", - "libelleAcheminement": "LA SALLE", - "nomCommune": "LA SALLE" + "codePostal": "76490", + "codeCommune": "76626", + "libelleAcheminement": "ST NICOLAS DE LA HAIE", + "nomCommune": "ST NICOLAS DE LA HAIE" }, { - "codePostal": "80670", - "codeCommune": "80166", - "libelleAcheminement": "CANAPLES", - "nomCommune": "CANAPLES" + "codePostal": "88700", + "codeCommune": "88367", + "libelleAcheminement": "RAMBERVILLERS", + "nomCommune": "RAMBERVILLERS" }, { - "codePostal": "71440", - "codeCommune": "71489", - "libelleAcheminement": "ST VINCENT EN BRESSE", - "nomCommune": "ST VINCENT EN BRESSE" + "codePostal": "74210", + "codeCommune": "74104", + "libelleAcheminement": "DOUSSARD", + "nomCommune": "DOUSSARD" }, { - "codePostal": "87230", - "codeCommune": "87027", - "libelleAcheminement": "BUSSIERE GALANT", - "nomCommune": "BUSSIERE GALANT" + "codePostal": "88640", + "codeCommune": "88263", + "libelleAcheminement": "LAVELINE DU HOUX", + "nomCommune": "LAVELINE DU HOUX" }, { - "codePostal": "88120", - "codeCommune": "88442", - "libelleAcheminement": "SAPOIS", - "nomCommune": "SAPOIS" + "codePostal": "76630", + "codeCommune": "76630", + "libelleAcheminement": "ST OUEN SOUS BAILLY", + "nomCommune": "ST OUEN SOUS BAILLY" }, { - "codePostal": "80140", - "codeCommune": "80169", - "libelleAcheminement": "CANNESSIERES", - "nomCommune": "CANNESSIERES" + "codePostal": "88110", + "codeCommune": "88372", + "libelleAcheminement": "RAON L ETAPE", + "nomCommune": "RAON L ETAPE" }, { - "codePostal": "71360", - "codeCommune": "71493", - "libelleAcheminement": "SAISY", - "nomCommune": "SAISY" + "codePostal": "01200", + "codeCommune": "74109", + "libelleAcheminement": "ELOISE", + "nomCommune": "ELOISE" }, { - "codePostal": "87400", - "codeCommune": "87035", - "libelleAcheminement": "CHAMPNETERY", - "nomCommune": "CHAMPNETERY" + "codePostal": "88400", + "codeCommune": "88269", + "libelleAcheminement": "LIEZEY", + "nomCommune": "LIEZEY" }, { - "codePostal": "88210", - "codeCommune": "88444", - "libelleAcheminement": "LE SAULCY", - "nomCommune": "LE SAULCY" + "codePostal": "76480", + "codeCommune": "76631", + "libelleAcheminement": "ST PAER", + "nomCommune": "ST PAER" }, { - "codePostal": "80500", - "codeCommune": "80170", - "libelleAcheminement": "CANTIGNY", - "nomCommune": "CANTIGNY" + "codePostal": "88300", + "codeCommune": "88376", + "libelleAcheminement": "REBEUVILLE", + "nomCommune": "REBEUVILLE" }, { - "codePostal": "71410", - "codeCommune": "71499", - "libelleAcheminement": "SANVIGNES LES MINES", - "nomCommune": "SANVIGNES LES MINES" + "codePostal": "74100", + "codeCommune": "74118", + "libelleAcheminement": "ETREMBIERES", + "nomCommune": "ETREMBIERES" }, { - "codePostal": "87380", - "codeCommune": "87039", - "libelleAcheminement": "CHATEAU CHERVIX", - "nomCommune": "CHATEAU CHERVIX" + "codePostal": "88170", + "codeCommune": "88278", + "libelleAcheminement": "MACONCOURT", + "nomCommune": "MACONCOURT" }, { - "codePostal": "88130", - "codeCommune": "88458", - "libelleAcheminement": "SOCOURT", - "nomCommune": "SOCOURT" + "codePostal": "76113", + "codeCommune": "76634", + "libelleAcheminement": "ST PIERRE DE MANNEVILLE", + "nomCommune": "ST PIERRE DE MANNEVILLE" }, { - "codePostal": "80800", - "codeCommune": "80184", - "libelleAcheminement": "CERISY", - "nomCommune": "CERISY" + "codePostal": "88410", + "codeCommune": "88377", + "libelleAcheminement": "REGNEVELLE", + "nomCommune": "REGNEVELLE" }, { - "codePostal": "71110", - "codeCommune": "71500", - "libelleAcheminement": "SARRY", - "nomCommune": "SARRY" + "codePostal": "74500", + "codeCommune": "74119", + "libelleAcheminement": "EVIAN LES BAINS", + "nomCommune": "EVIAN LES BAINS" }, { - "codePostal": "87520", - "codeCommune": "87045", - "libelleAcheminement": "CIEUX", - "nomCommune": "CIEUX" + "codePostal": "88800", + "codeCommune": "88285", + "libelleAcheminement": "MANDRES SUR VAIR", + "nomCommune": "MANDRES SUR VAIR" }, { - "codePostal": "88120", - "codeCommune": "88462", - "libelleAcheminement": "LE SYNDICAT", - "nomCommune": "LE SYNDICAT" + "codePostal": "76660", + "codeCommune": "76635", + "libelleAcheminement": "ST PIERRE DES JONQUIERES", + "nomCommune": "ST PIERRE DES JONQUIERES" }, { - "codePostal": "80320", - "codeCommune": "80186", - "libelleAcheminement": "CHAULNES", - "nomCommune": "CHAULNES" + "codePostal": "88460", + "codeCommune": "88399", + "libelleAcheminement": "LE ROULIER", + "nomCommune": "LE ROULIER" }, { - "codePostal": "71440", - "codeCommune": "71508", - "libelleAcheminement": "SAVIGNY SUR SEILLE", - "nomCommune": "SAVIGNY SUR SEILLE" + "codePostal": "74210", + "codeCommune": "74123", + "libelleAcheminement": "FAVERGES SEYTHENEX", + "nomCommune": "FAVERGES SEYTHENEX" }, { - "codePostal": "87920", - "codeCommune": "87048", - "libelleAcheminement": "CONDAT SUR VIENNE", - "nomCommune": "CONDAT SUR VIENNE" + "codePostal": "88630", + "codeCommune": "88293", + "libelleAcheminement": "MAXEY SUR MEUSE", + "nomCommune": "MAXEY SUR MEUSE" }, { - "codePostal": "88220", - "codeCommune": "88481", - "libelleAcheminement": "URIMENIL", - "nomCommune": "URIMENIL" + "codePostal": "76260", + "codeCommune": "76644", + "libelleAcheminement": "ST REMY BOSCROCOURT", + "nomCommune": "ST REMY BOSCROCOURT" }, { - "codePostal": "80250", - "codeCommune": "80188", - "libelleAcheminement": "CHAUSSOY EPAGNY", - "nomCommune": "CHAUSSOY EPAGNY" + "codePostal": "88170", + "codeCommune": "88401", + "libelleAcheminement": "ROUVRES LA CHETIVE", + "nomCommune": "ROUVRES LA CHETIVE" }, { - "codePostal": "71310", - "codeCommune": "71516", - "libelleAcheminement": "SERLEY", - "nomCommune": "SERLEY" + "codePostal": "74250", + "codeCommune": "74128", + "libelleAcheminement": "FILLINGES", + "nomCommune": "FILLINGES" }, { - "codePostal": "87130", - "codeCommune": "87051", - "libelleAcheminement": "LA CROISILLE SUR BRIANCE", - "nomCommune": "LA CROISILLE SUR BRIANCE" + "codePostal": "88160", + "codeCommune": "88302", + "libelleAcheminement": "LE MENIL", + "nomCommune": "LE MENIL" }, { - "codePostal": "88140", - "codeCommune": "88485", - "libelleAcheminement": "LA VACHERESSE ET LA ROUILLIE", - "nomCommune": "LA VACHERESSE ET LA ROUILLIE" + "codePostal": "76430", + "codeCommune": "76647", + "libelleAcheminement": "ST ROMAIN DE COLBOSC", + "nomCommune": "ST ROMAIN DE COLBOSC" }, { - "codePostal": "80210", - "codeCommune": "80190", - "libelleAcheminement": "CHEPY", - "nomCommune": "CHEPY" + "codePostal": "88630", + "codeCommune": "88407", + "libelleAcheminement": "RUPPES", + "nomCommune": "RUPPES" }, { - "codePostal": "71350", - "codeCommune": "71517", - "libelleAcheminement": "SERMESSE", - "nomCommune": "SERMESSE" + "codePostal": "74200", + "codeCommune": "74129", + "libelleAcheminement": "LA FORCLAZ", + "nomCommune": "LA FORCLAZ" }, { - "codePostal": "87230", - "codeCommune": "87060", - "libelleAcheminement": "DOURNAZAC", - "nomCommune": "DOURNAZAC" + "codePostal": "88800", + "codeCommune": "88309", + "libelleAcheminement": "MONTHUREUX LE SEC", + "nomCommune": "MONTHUREUX LE SEC" }, { - "codePostal": "88340", - "codeCommune": "88487", - "libelleAcheminement": "LE VAL D AJOL", - "nomCommune": "LE VAL D AJOL" + "codePostal": "76110", + "codeCommune": "76650", + "libelleAcheminement": "ST SAUVEUR D EMALLEVILLE", + "nomCommune": "ST SAUVEUR D EMALLEVILLE" }, { - "codePostal": "80170", - "codeCommune": "80191", - "libelleAcheminement": "CHILLY", - "nomCommune": "CHILLY" + "codePostal": "88360", + "codeCommune": "88408", + "libelleAcheminement": "RUPT SUR MOSELLE", + "nomCommune": "RUPT SUR MOSELLE" }, { - "codePostal": "71310", - "codeCommune": "71519", - "libelleAcheminement": "SERRIGNY EN BRESSE", - "nomCommune": "SERRIGNY EN BRESSE" + "codePostal": "74910", + "codeCommune": "74130", + "libelleAcheminement": "FRANCLENS", + "nomCommune": "FRANCLENS" }, { - "codePostal": "87220", - "codeCommune": "87065", - "libelleAcheminement": "FEYTIAT", - "nomCommune": "FEYTIAT" + "codePostal": "88600", + "codeCommune": "88315", + "libelleAcheminement": "MORTAGNE", + "nomCommune": "MORTAGNE" }, { - "codePostal": "88270", - "codeCommune": "88489", - "libelleAcheminement": "VALLEROY AUX SAULES", - "nomCommune": "VALLEROY AUX SAULES" + "codePostal": "76460", + "codeCommune": "76651", + "libelleAcheminement": "ST SYLVAIN", + "nomCommune": "ST SYLVAIN" }, { - "codePostal": "80250", - "codeCommune": "80193", - "libelleAcheminement": "CHIRMONT", - "nomCommune": "CHIRMONT" + "codePostal": "88260", + "codeCommune": "88411", + "libelleAcheminement": "ST BASLEMONT", + "nomCommune": "ST BASLEMONT" }, { - "codePostal": "71100", - "codeCommune": "71520", - "libelleAcheminement": "SEVREY", - "nomCommune": "SEVREY" + "codePostal": "74260", + "codeCommune": "74134", + "libelleAcheminement": "LES GETS", + "nomCommune": "LES GETS" }, { - "codePostal": "87230", - "codeCommune": "87066", - "libelleAcheminement": "FLAVIGNAC", - "nomCommune": "FLAVIGNAC" + "codePostal": "88700", + "codeCommune": "88318", + "libelleAcheminement": "MOYEMONT", + "nomCommune": "MOYEMONT" }, { - "codePostal": "88260", - "codeCommune": "88491", - "libelleAcheminement": "LES VALLOIS", - "nomCommune": "LES VALLOIS" + "codePostal": "76450", + "codeCommune": "76653", + "libelleAcheminement": "ST VAAST DIEPPEDALLE", + "nomCommune": "ST VAAST DIEPPEDALLE" }, { - "codePostal": "80490", - "codeCommune": "80196", - "libelleAcheminement": "CITERNE", - "nomCommune": "CITERNE" + "codePostal": "88200", + "codeCommune": "88415", + "libelleAcheminement": "ST ETIENNE LES REMIREMONT", + "nomCommune": "ST ETIENNE LES REMIREMONT" }, { - "codePostal": "71740", - "codeCommune": "71533", - "libelleAcheminement": "TANCON", - "nomCommune": "TANCON" + "codePostal": "74420", + "codeCommune": "74139", + "libelleAcheminement": "HABERE LULLIN", + "nomCommune": "HABERE LULLIN" }, { - "codePostal": "87330", - "codeCommune": "87069", - "libelleAcheminement": "GAJOUBERT", - "nomCommune": "GAJOUBERT" + "codePostal": "88100", + "codeCommune": "88320", + "libelleAcheminement": "NAYEMONT LES FOSSES", + "nomCommune": "NAYEMONT LES FOSSES" }, { - "codePostal": "88230", - "codeCommune": "88492", - "libelleAcheminement": "LE VALTIN", - "nomCommune": "LE VALTIN" + "codePostal": "76430", + "codeCommune": "76657", + "libelleAcheminement": "ST VIGOR D YMONVILLE", + "nomCommune": "ST VIGOR D YMONVILLE" }, { - "codePostal": "80200", - "codeCommune": "80197", - "libelleAcheminement": "CIZANCOURT", - "nomCommune": "CIZANCOURT" + "codePostal": "88700", + "codeCommune": "88416", + "libelleAcheminement": "ST GENEST", + "nomCommune": "ST GENEST" }, { - "codePostal": "71190", - "codeCommune": "71537", - "libelleAcheminement": "THIL SUR ARROUX", - "nomCommune": "THIL SUR ARROUX" + "codePostal": "74540", + "codeCommune": "74142", + "libelleAcheminement": "HERY SUR ALBY", + "nomCommune": "HERY SUR ALBY" }, { - "codePostal": "87380", - "codeCommune": "87072", - "libelleAcheminement": "GLANGES", - "nomCommune": "GLANGES" + "codePostal": "88300", + "codeCommune": "88321", + "libelleAcheminement": "NEUFCHATEAU", + "nomCommune": "NEUFCHATEAU" }, { - "codePostal": "88500", - "codeCommune": "88494", - "libelleAcheminement": "VAUBEXY", - "nomCommune": "VAUBEXY" + "codePostal": "76450", + "codeCommune": "76664", + "libelleAcheminement": "SASSEVILLE", + "nomCommune": "SASSEVILLE" }, { - "codePostal": "80890", - "codeCommune": "80205", - "libelleAcheminement": "CONDE FOLIE", - "nomCommune": "CONDE FOLIE" + "codePostal": "88700", + "codeCommune": "88418", + "libelleAcheminement": "STE HELENE", + "nomCommune": "STE HELENE" }, { - "codePostal": "71440", - "codeCommune": "71538", - "libelleAcheminement": "THUREY", - "nomCommune": "THUREY" + "codePostal": "74310", + "codeCommune": "74143", + "libelleAcheminement": "LES HOUCHES", + "nomCommune": "LES HOUCHES" }, { - "codePostal": "87800", - "codeCommune": "87077", - "libelleAcheminement": "JANAILHAC", - "nomCommune": "JANAILHAC" + "codePostal": "88600", + "codeCommune": "88322", + "libelleAcheminement": "LA NEUVEVILLE DEVANT LEPANGES", + "nomCommune": "LA NEUVEVILLE DEVANT LEPANGES" }, { - "codePostal": "88270", - "codeCommune": "88508", - "libelleAcheminement": "VILLE SUR ILLON", - "nomCommune": "VILLE SUR ILLON" + "codePostal": "76660", + "codeCommune": "76677", + "libelleAcheminement": "SMERMESNIL", + "nomCommune": "SMERMESNIL" }, { - "codePostal": "80160", - "codeCommune": "80210", - "libelleAcheminement": "CONTRE", - "nomCommune": "CONTRE" + "codePostal": "88470", + "codeCommune": "88428", + "libelleAcheminement": "ST MICHEL SUR MEURTHE", + "nomCommune": "ST MICHEL SUR MEURTHE" }, { - "codePostal": "71490", - "codeCommune": "71539", - "libelleAcheminement": "TINTRY", - "nomCommune": "TINTRY" + "codePostal": "74100", + "codeCommune": "74145", + "libelleAcheminement": "JUVIGNY", + "nomCommune": "JUVIGNY" }, { - "codePostal": "87520", - "codeCommune": "87078", - "libelleAcheminement": "JAVERDAT", - "nomCommune": "JAVERDAT" + "codePostal": "88100", + "codeCommune": "88326", + "libelleAcheminement": "NEUVILLERS SUR FAVE", + "nomCommune": "NEUVILLERS SUR FAVE" }, { - "codePostal": "88700", - "codeCommune": "88521", - "libelleAcheminement": "VOMECOURT", - "nomCommune": "VOMECOURT" + "codePostal": "76540", + "codeCommune": "76680", + "libelleAcheminement": "SORQUAINVILLE", + "nomCommune": "SORQUAINVILLE" }, { - "codePostal": "80160", - "codeCommune": "80211", - "libelleAcheminement": "CONTY", - "nomCommune": "CONTY" + "codePostal": "88270", + "codeCommune": "88437", + "libelleAcheminement": "ST VALLIER", + "nomCommune": "ST VALLIER" }, { - "codePostal": "71320", - "codeCommune": "71542", - "libelleAcheminement": "TOULON SUR ARROUX", - "nomCommune": "TOULON SUR ARROUX" + "codePostal": "74210", + "codeCommune": "74147", + "libelleAcheminement": "LATHUILE", + "nomCommune": "LATHUILE" }, { - "codePostal": "87800", - "codeCommune": "87081", - "libelleAcheminement": "JOURGNAC", - "nomCommune": "JOURGNAC" + "codePostal": "88440", + "codeCommune": "88327", + "libelleAcheminement": "NOMEXY", + "nomCommune": "NOMEXY" }, { - "codePostal": "88500", - "codeCommune": "88522", - "libelleAcheminement": "VOMECOURT SUR MADON", - "nomCommune": "VOMECOURT SUR MADON" + "codePostal": "76440", + "codeCommune": "76691", + "libelleAcheminement": "LE THIL RIBERPRE", + "nomCommune": "LE THIL RIBERPRE" }, { - "codePostal": "80160", - "codeCommune": "80211", - "libelleAcheminement": "CONTY", - "nomCommune": "CONTY" + "codePostal": "88260", + "codeCommune": "88441", + "libelleAcheminement": "SANS VALLOIS", + "nomCommune": "SANS VALLOIS" }, { - "codePostal": "71800", - "codeCommune": "71553", - "libelleAcheminement": "VAREILLES", - "nomCommune": "VAREILLES" + "codePostal": "74320", + "codeCommune": "74148", + "libelleAcheminement": "LESCHAUX", + "nomCommune": "LESCHAUX" }, { - "codePostal": "87370", - "codeCommune": "87083", - "libelleAcheminement": "LAURIERE", - "nomCommune": "LAURIERE" + "codePostal": "88260", + "codeCommune": "88330", + "libelleAcheminement": "NONVILLE", + "nomCommune": "NONVILLE" }, { - "codePostal": "88220", - "codeCommune": "88530", - "libelleAcheminement": "XERTIGNY", - "nomCommune": "XERTIGNY" + "codePostal": "76790", + "codeCommune": "76693", + "libelleAcheminement": "LE TILLEUL", + "nomCommune": "LE TILLEUL" }, { - "codePostal": "80440", - "codeCommune": "80213", - "libelleAcheminement": "COTTENCHY", - "nomCommune": "COTTENCHY" + "codePostal": "88210", + "codeCommune": "88444", + "libelleAcheminement": "LE SAULCY", + "nomCommune": "LE SAULCY" }, { - "codePostal": "71110", - "codeCommune": "71554", - "libelleAcheminement": "VARENNE L ARCONCE", - "nomCommune": "VARENNE L ARCONCE" + "codePostal": "74470", + "codeCommune": "74155", + "libelleAcheminement": "LULLIN", + "nomCommune": "LULLIN" }, { - "codePostal": "87000", - "codeCommune": "87085", - "libelleAcheminement": "LIMOGES", - "nomCommune": "LIMOGES" + "codePostal": "88800", + "codeCommune": "88332", + "libelleAcheminement": "NORROY", + "nomCommune": "NORROY" }, { - "codePostal": "89200", - "codeCommune": "89011", - "libelleAcheminement": "ANNEOT", - "nomCommune": "ANNEOT" + "codePostal": "76110", + "codeCommune": "76695", + "libelleAcheminement": "TOCQUEVILLE LES MURS", + "nomCommune": "TOCQUEVILLE LES MURS" }, { - "codePostal": "80250", - "codeCommune": "80214", - "libelleAcheminement": "COULLEMELLE", - "nomCommune": "COULLEMELLE" + "codePostal": "88260", + "codeCommune": "88452", + "libelleAcheminement": "SENONGES", + "nomCommune": "SENONGES" }, { - "codePostal": "71600", - "codeCommune": "71557", - "libelleAcheminement": "VARENNE ST GERMAIN", - "nomCommune": "VARENNE ST GERMAIN" + "codePostal": "74250", + "codeCommune": "74162", + "libelleAcheminement": "MARCELLAZ", + "nomCommune": "MARCELLAZ" }, { - "codePostal": "87130", - "codeCommune": "87086", - "libelleAcheminement": "LINARDS", - "nomCommune": "LINARDS" + "codePostal": "88330", + "codeCommune": "88342", + "libelleAcheminement": "PALLEGNEY", + "nomCommune": "PALLEGNEY" }, { - "codePostal": "89270", - "codeCommune": "89015", - "libelleAcheminement": "ARCY SUR CURE", - "nomCommune": "ARCY SUR CURE" + "codePostal": "76190", + "codeCommune": "76702", + "libelleAcheminement": "TOUFFREVILLE LA CORBELINE", + "nomCommune": "TOUFFREVILLE LA CORBELINE" }, { - "codePostal": "80500", - "codeCommune": "80220", - "libelleAcheminement": "COURTEMANCHE", - "nomCommune": "COURTEMANCHE" + "codePostal": "88630", + "codeCommune": "88460", + "libelleAcheminement": "SOULOSSE SOUS ST ELOPHE", + "nomCommune": "SOULOSSE SOUS ST ELOPHE" }, { - "codePostal": "71120", - "codeCommune": "71564", - "libelleAcheminement": "VENDENESSE LES CHAROLLES", - "nomCommune": "VENDENESSE LES CHAROLLES" + "codePostal": "74970", + "codeCommune": "74164", + "libelleAcheminement": "MARIGNIER", + "nomCommune": "MARIGNIER" }, { - "codePostal": "87330", - "codeCommune": "87097", - "libelleAcheminement": "VAL D ISSOIRE", - "nomCommune": "VAL D ISSOIRE" + "codePostal": "88210", + "codeCommune": "88346", + "libelleAcheminement": "LA PETITE RAON", + "nomCommune": "LA PETITE RAON" }, { - "codePostal": "89440", - "codeCommune": "89022", - "libelleAcheminement": "ATHIE", - "nomCommune": "ATHIE" + "codePostal": "76890", + "codeCommune": "76721", + "libelleAcheminement": "VARNEVILLE BRETTEVILLE", + "nomCommune": "VARNEVILLE BRETTEVILLE" }, { - "codePostal": "80150", - "codeCommune": "80222", - "libelleAcheminement": "CRECY EN PONTHIEU", - "nomCommune": "CRECY EN PONTHIEU" + "codePostal": "88530", + "codeCommune": "88470", + "libelleAcheminement": "LE THOLY", + "nomCommune": "LE THOLY" }, { - "codePostal": "71960", - "codeCommune": "71567", - "libelleAcheminement": "VERGISSON", - "nomCommune": "VERGISSON" + "codePostal": "74150", + "codeCommune": "74165", + "libelleAcheminement": "MARIGNY ST MARCEL", + "nomCommune": "MARIGNY ST MARCEL" }, { - "codePostal": "87330", - "codeCommune": "87108", - "libelleAcheminement": "NOUIC", - "nomCommune": "NOUIC" + "codePostal": "88230", + "codeCommune": "88349", + "libelleAcheminement": "PLAINFAING", + "nomCommune": "PLAINFAING" }, { - "codePostal": "89000", - "codeCommune": "89024", - "libelleAcheminement": "AUXERRE", - "nomCommune": "AUXERRE" + "codePostal": "76730", + "codeCommune": "76731", + "libelleAcheminement": "VENESTANVILLE", + "nomCommune": "VENESTANVILLE" }, { - "codePostal": "80290", - "codeCommune": "80227", - "libelleAcheminement": "CROIXRAULT", - "nomCommune": "CROIXRAULT" + "codePostal": "88300", + "codeCommune": "88474", + "libelleAcheminement": "TILLEUX", + "nomCommune": "TILLEUX" }, { - "codePostal": "71590", - "codeCommune": "71570", - "libelleAcheminement": "VERJUX", - "nomCommune": "VERJUX" + "codePostal": "74210", + "codeCommune": "74167", + "libelleAcheminement": "VAL DE CHAISE", + "nomCommune": "VAL DE CHAISE" }, { - "codePostal": "87210", - "codeCommune": "87109", - "libelleAcheminement": "ORADOUR ST GENEST", - "nomCommune": "ORADOUR ST GENEST" + "codePostal": "88490", + "codeCommune": "88361", + "libelleAcheminement": "PROVENCHERES ET COLROY", + "nomCommune": "PROVENCHERES ET COLROY" }, { - "codePostal": "89190", - "codeCommune": "89027", - "libelleAcheminement": "BAGNEAUX", - "nomCommune": "BAGNEAUX" + "codePostal": "76280", + "codeCommune": "76734", + "libelleAcheminement": "VERGETOT", + "nomCommune": "VERGETOT" }, { - "codePostal": "80550", - "codeCommune": "80228", - "libelleAcheminement": "LE CROTOY", - "nomCommune": "LE CROTOY" + "codePostal": "88130", + "codeCommune": "88480", + "libelleAcheminement": "UBEXY", + "nomCommune": "UBEXY" }, { - "codePostal": "71110", - "codeCommune": "71573", - "libelleAcheminement": "VERSAUGUES", - "nomCommune": "VERSAUGUES" + "codePostal": "74210", + "codeCommune": "74167", + "libelleAcheminement": "VAL DE CHAISE", + "nomCommune": "VAL DE CHAISE" }, { - "codePostal": "87300", - "codeCommune": "87116", - "libelleAcheminement": "PEYRAT DE BELLAC", - "nomCommune": "PEYRAT DE BELLAC" + "codePostal": "88500", + "codeCommune": "88368", + "libelleAcheminement": "RAMECOURT", + "nomCommune": "RAMECOURT" }, { - "codePostal": "89400", - "codeCommune": "89029", - "libelleAcheminement": "BASSOU", - "nomCommune": "BASSOU" + "codePostal": "76980", + "codeCommune": "76735", + "libelleAcheminement": "VEULES LES ROSES", + "nomCommune": "VEULES LES ROSES" }, { - "codePostal": "80800", - "codeCommune": "80234", - "libelleAcheminement": "DAOURS", - "nomCommune": "DAOURS" + "codePostal": "88220", + "codeCommune": "88481", + "libelleAcheminement": "URIMENIL", + "nomCommune": "URIMENIL" }, { - "codePostal": "71700", - "codeCommune": "71576", - "libelleAcheminement": "LE VILLARS", - "nomCommune": "LE VILLARS" + "codePostal": "74140", + "codeCommune": "74171", + "libelleAcheminement": "MASSONGY", + "nomCommune": "MASSONGY" }, { - "codePostal": "87470", - "codeCommune": "87117", - "libelleAcheminement": "PEYRAT LE CHATEAU", - "nomCommune": "PEYRAT LE CHATEAU" + "codePostal": "88160", + "codeCommune": "88369", + "libelleAcheminement": "RAMONCHAMP", + "nomCommune": "RAMONCHAMP" }, { - "codePostal": "89630", - "codeCommune": "89032", - "libelleAcheminement": "BEAUVILLIERS", - "nomCommune": "BEAUVILLIERS" + "codePostal": "76760", + "codeCommune": "76737", + "libelleAcheminement": "VIBEUF", + "nomCommune": "VIBEUF" }, { - "codePostal": "80200", - "codeCommune": "80240", - "libelleAcheminement": "DOINGT FLAMICOURT", - "nomCommune": "DOINGT" + "codePostal": "88140", + "codeCommune": "88482", + "libelleAcheminement": "URVILLE", + "nomCommune": "URVILLE" }, { - "codePostal": "71270", - "codeCommune": "71578", - "libelleAcheminement": "CLUX VILLENEUVE", - "nomCommune": "CLUX VILLENEUVE" + "codePostal": "74440", + "codeCommune": "74183", + "libelleAcheminement": "MIEUSSY", + "nomCommune": "MIEUSSY" }, { - "codePostal": "87250", - "codeCommune": "87128", - "libelleAcheminement": "ST PARDOUX LE LAC", - "nomCommune": "ST PARDOUX LE LAC" + "codePostal": "88270", + "codeCommune": "88370", + "libelleAcheminement": "RANCOURT", + "nomCommune": "RANCOURT" }, { - "codePostal": "89210", - "codeCommune": "89035", - "libelleAcheminement": "BELLECHAUME", - "nomCommune": "BELLECHAUME" + "codePostal": "76160", + "codeCommune": "76740", + "libelleAcheminement": "LA VIEUX RUE", + "nomCommune": "LA VIEUX RUE" }, { - "codePostal": "80370", - "codeCommune": "80245", - "libelleAcheminement": "DOMLEGER LONGVILLERS", - "nomCommune": "DOMLEGER LONGVILLERS" + "codePostal": "88390", + "codeCommune": "88483", + "libelleAcheminement": "UXEGNEY", + "nomCommune": "UXEGNEY" }, { - "codePostal": "71390", - "codeCommune": "71579", - "libelleAcheminement": "VILLENEUVE EN MONTAGNE", - "nomCommune": "VILLENEUVE EN MONTAGNE" + "codePostal": "74270", + "codeCommune": "74184", + "libelleAcheminement": "MINZIER", + "nomCommune": "MINZIER" }, { - "codePostal": "87260", - "codeCommune": "87138", - "libelleAcheminement": "ST BONNET BRIANCE", - "nomCommune": "ST BONNET BRIANCE" + "codePostal": "88220", + "codeCommune": "88371", + "libelleAcheminement": "RAON AUX BOIS", + "nomCommune": "RAON AUX BOIS" }, { - "codePostal": "89220", - "codeCommune": "89046", - "libelleAcheminement": "BLENEAU", - "nomCommune": "BLENEAU" + "codePostal": "76111", + "codeCommune": "76754", + "libelleAcheminement": "YPORT", + "nomCommune": "YPORT" }, { - "codePostal": "80440", - "codeCommune": "80246", - "libelleAcheminement": "DOMMARTIN", - "nomCommune": "DOMMARTIN" + "codePostal": "88270", + "codeCommune": "88489", + "libelleAcheminement": "VALLEROY AUX SAULES", + "nomCommune": "VALLEROY AUX SAULES" }, { - "codePostal": "71250", - "codeCommune": "71582", - "libelleAcheminement": "LA VINEUSE SUR FREGANDE", - "nomCommune": "LA VINEUSE SUR FREGANDE" + "codePostal": "74560", + "codeCommune": "74185", + "libelleAcheminement": "MONNETIER MORNEX", + "nomCommune": "MONNETIER MORNEX" }, { - "codePostal": "87380", - "codeCommune": "87146", - "libelleAcheminement": "ST GERMAIN LES BELLES", - "nomCommune": "ST GERMAIN LES BELLES" + "codePostal": "88110", + "codeCommune": "88373", + "libelleAcheminement": "RAON SUR PLAINE", + "nomCommune": "RAON SUR PLAINE" }, { - "codePostal": "89500", - "codeCommune": "89060", - "libelleAcheminement": "BUSSY LE REPOS", - "nomCommune": "BUSSY LE REPOS" + "codePostal": "76540", + "codeCommune": "76755", + "libelleAcheminement": "YPREVILLE BIVILLE", + "nomCommune": "YPREVILLE BIVILLE" }, { - "codePostal": "80980", - "codeCommune": "80247", - "libelleAcheminement": "DOMPIERRE BECQUINCOURT", - "nomCommune": "DOMPIERRE BECQUINCOURT" + "codePostal": "88310", + "codeCommune": "88500", + "libelleAcheminement": "VENTRON", + "nomCommune": "VENTRON" }, { - "codePostal": "71680", - "codeCommune": "71583", - "libelleAcheminement": "VINZELLES", - "nomCommune": "VINZELLES" + "codePostal": "74110", + "codeCommune": "74188", + "libelleAcheminement": "MONTRIOND", + "nomCommune": "MONTRIOND" }, { - "codePostal": "87460", - "codeCommune": "87153", - "libelleAcheminement": "ST JULIEN LE PETIT", - "nomCommune": "ST JULIEN LE PETIT" + "codePostal": "88450", + "codeCommune": "88378", + "libelleAcheminement": "REGNEY", + "nomCommune": "REGNEY" }, { - "codePostal": "89410", - "codeCommune": "89067", - "libelleAcheminement": "CEZY", - "nomCommune": "CEZY" + "codePostal": "77760", + "codeCommune": "77001", + "libelleAcheminement": "ACHERES LA FORET", + "nomCommune": "ACHERES LA FORET" }, { - "codePostal": "80150", - "codeCommune": "80250", - "libelleAcheminement": "DOMVAST", - "nomCommune": "DOMVAST" + "codePostal": "88170", + "codeCommune": "88504", + "libelleAcheminement": "VICHEREY", + "nomCommune": "VICHEREY" }, { - "codePostal": "71260", - "codeCommune": "71584", - "libelleAcheminement": "VIRE", - "nomCommune": "VIRE" + "codePostal": "74160", + "codeCommune": "74201", + "libelleAcheminement": "NEYDENS", + "nomCommune": "NEYDENS" }, { - "codePostal": "87480", - "codeCommune": "87178", - "libelleAcheminement": "ST PRIEST TAURION", - "nomCommune": "ST PRIEST TAURION" + "codePostal": "88640", + "codeCommune": "88380", + "libelleAcheminement": "REHAUPAL", + "nomCommune": "REHAUPAL" }, { - "codePostal": "89770", - "codeCommune": "89069", - "libelleAcheminement": "CHAILLEY", - "nomCommune": "CHAILLEY" + "codePostal": "77390", + "codeCommune": "77004", + "libelleAcheminement": "ANDREZEL", + "nomCommune": "ANDREZEL" }, { - "codePostal": "80600", - "codeCommune": "80253", - "libelleAcheminement": "DOULLENS", - "nomCommune": "DOULLENS" + "codePostal": "88500", + "codeCommune": "88507", + "libelleAcheminement": "VILLERS", + "nomCommune": "VILLERS" }, { - "codePostal": "71600", - "codeCommune": "71588", - "libelleAcheminement": "VITRY EN CHAROLLAIS", - "nomCommune": "VITRY EN CHAROLLAIS" + "codePostal": "74500", + "codeCommune": "74203", + "libelleAcheminement": "NOVEL", + "nomCommune": "NOVEL" }, { - "codePostal": "87210", - "codeCommune": "87179", - "libelleAcheminement": "ST SORNIN LA MARCHE", - "nomCommune": "ST SORNIN LA MARCHE" + "codePostal": "88500", + "codeCommune": "88382", + "libelleAcheminement": "REMICOURT", + "nomCommune": "REMICOURT" }, { - "codePostal": "89220", - "codeCommune": "89072", - "libelleAcheminement": "CHAMPCEVRAIS", - "nomCommune": "CHAMPCEVRAIS" + "codePostal": "77970", + "codeCommune": "77020", + "libelleAcheminement": "BANNOST VILLEGAGNON", + "nomCommune": "BANNOST VILLEGAGNON" }, { - "codePostal": "80340", - "codeCommune": "80264", - "libelleAcheminement": "ECLUSIER VAUX", - "nomCommune": "ECLUSIER VAUX" + "codePostal": "88320", + "codeCommune": "88510", + "libelleAcheminement": "VILLOTTE", + "nomCommune": "VILLOTTE" }, { - "codePostal": "72650", - "codeCommune": "72001", - "libelleAcheminement": "AIGNE", - "nomCommune": "AIGNE" + "codePostal": "74130", + "codeCommune": "74212", + "libelleAcheminement": "GLIERES VAL DE BORNE", + "nomCommune": "GLIERES VAL DE BORNE" }, { - "codePostal": "87160", - "codeCommune": "87182", - "libelleAcheminement": "ST SULPICE LES FEUILLES", - "nomCommune": "ST SULPICE LES FEUILLES" + "codePostal": "88100", + "codeCommune": "88386", + "libelleAcheminement": "REMOMEIX", + "nomCommune": "REMOMEIX" }, { - "codePostal": "89300", - "codeCommune": "89079", - "libelleAcheminement": "CHAMVRES", - "nomCommune": "CHAMVRES" + "codePostal": "77560", + "codeCommune": "77026", + "libelleAcheminement": "BEAUCHERY ST MARTIN", + "nomCommune": "BEAUCHERY ST MARTIN" }, { - "codePostal": "80570", - "codeCommune": "80265", - "libelleAcheminement": "EMBREVILLE", - "nomCommune": "EMBREVILLE" + "codePostal": "88800", + "codeCommune": "88516", + "libelleAcheminement": "VITTEL", + "nomCommune": "VITTEL" }, { - "codePostal": "72600", - "codeCommune": "72002", - "libelleAcheminement": "AILLIERES BEAUVOIR", - "nomCommune": "AILLIERES BEAUVOIR" + "codePostal": "74160", + "codeCommune": "74216", + "libelleAcheminement": "PRESILLY", + "nomCommune": "PRESILLY" }, { - "codePostal": "87420", - "codeCommune": "87185", - "libelleAcheminement": "ST VICTURNIEN", - "nomCommune": "ST VICTURNIEN" + "codePostal": "88500", + "codeCommune": "88389", + "libelleAcheminement": "REPEL", + "nomCommune": "REPEL" }, { - "codePostal": "89800", - "codeCommune": "89081", - "libelleAcheminement": "LA CHAPELLE VAUPELTEIGNE", - "nomCommune": "LA CHAPELLE VAUPELTEIGNE" + "codePostal": "77350", + "codeCommune": "77039", + "libelleAcheminement": "BOISSISE LA BERTRAND", + "nomCommune": "BOISSISE LA BERTRAND" }, { - "codePostal": "80400", - "codeCommune": "80274", - "libelleAcheminement": "EPPEVILLE", - "nomCommune": "EPPEVILLE" + "codePostal": "88470", + "codeCommune": "88519", + "libelleAcheminement": "LA VOIVRE", + "nomCommune": "LA VOIVRE" }, { - "codePostal": "72430", - "codeCommune": "72010", - "libelleAcheminement": "ASNIERES SUR VEGRE", - "nomCommune": "ASNIERES SUR VEGRE" + "codePostal": "74500", + "codeCommune": "74218", + "libelleAcheminement": "PUBLIER", + "nomCommune": "PUBLIER" }, { - "codePostal": "87380", - "codeCommune": "87186", - "libelleAcheminement": "ST VITTE SUR BRIANCE", - "nomCommune": "ST VITTE SUR BRIANCE" + "codePostal": "88120", + "codeCommune": "88409", + "libelleAcheminement": "ST AME", + "nomCommune": "ST AME" }, { - "codePostal": "89580", - "codeCommune": "89084", - "libelleAcheminement": "CHARENTENAY", - "nomCommune": "CHARENTENAY" + "codePostal": "77310", + "codeCommune": "77040", + "libelleAcheminement": "BOISSISE LE ROI", + "nomCommune": "BOISSISE LE ROI" }, { - "codePostal": "80400", - "codeCommune": "80284", - "libelleAcheminement": "ESMERY HALLON", - "nomCommune": "ESMERY HALLON" + "codePostal": "88240", + "codeCommune": "88520", + "libelleAcheminement": "LES VOIVRES", + "nomCommune": "LES VOIVRES" }, { - "codePostal": "72800", - "codeCommune": "72013", - "libelleAcheminement": "AUBIGNE RACAN", - "nomCommune": "AUBIGNE RACAN" + "codePostal": "74420", + "codeCommune": "74226", + "libelleAcheminement": "ST ANDRE DE BOEGE", + "nomCommune": "ST ANDRE DE BOEGE" }, { - "codePostal": "87600", - "codeCommune": "87199", - "libelleAcheminement": "VAYRES", - "nomCommune": "VAYRES" + "codePostal": "88700", + "codeCommune": "88412", + "libelleAcheminement": "ST BENOIT LA CHIPOTTE", + "nomCommune": "ST BENOIT LA CHIPOTTE" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "77760", + "codeCommune": "77041", + "libelleAcheminement": "BOISSY AUX CAILLES", + "nomCommune": "BOISSY AUX CAILLES" }, { - "codePostal": "80200", - "codeCommune": "80288", - "libelleAcheminement": "ESTREES DENIECOURT", - "nomCommune": "ESTREES DENIECOURT" + "codePostal": "88700", + "codeCommune": "88521", + "libelleAcheminement": "VOMECOURT", + "nomCommune": "VOMECOURT" }, { - "codePostal": "72260", - "codeCommune": "72018", - "libelleAcheminement": "AVESNES EN SAOSNOIS", - "nomCommune": "AVESNES EN SAOSNOIS" + "codePostal": "74540", + "codeCommune": "74233", + "libelleAcheminement": "ST FELIX", + "nomCommune": "ST FELIX" }, { - "codePostal": "87600", - "codeCommune": "87204", - "libelleAcheminement": "VIDEIX", - "nomCommune": "VIDEIX" + "codePostal": "88210", + "codeCommune": "88436", + "libelleAcheminement": "ST STAIL", + "nomCommune": "ST STAIL" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "77620", + "codeCommune": "77050", + "libelleAcheminement": "BRANSLES", + "nomCommune": "BRANSLES" }, { - "codePostal": "80150", - "codeCommune": "80290", - "libelleAcheminement": "ESTREES LES CRECY", - "nomCommune": "ESTREES LES CRECY" + "codePostal": "88170", + "codeCommune": "88523", + "libelleAcheminement": "VOUXEY", + "nomCommune": "VOUXEY" }, { - "codePostal": "72650", - "codeCommune": "72024", - "libelleAcheminement": "LA BAZOGE", - "nomCommune": "LA BAZOGE" + "codePostal": "74210", + "codeCommune": "74234", + "libelleAcheminement": "ST FERREOL", + "nomCommune": "ST FERREOL" }, { - "codePostal": "88110", - "codeCommune": "88005", - "libelleAcheminement": "ALLARMONT", - "nomCommune": "ALLARMONT" + "codePostal": "88170", + "codeCommune": "88440", + "libelleAcheminement": "SANDAUCOURT", + "nomCommune": "SANDAUCOURT" }, { - "codePostal": "89600", - "codeCommune": "89101", - "libelleAcheminement": "CHEU", - "nomCommune": "CHEU" + "codePostal": "77940", + "codeCommune": "77054", + "libelleAcheminement": "LA BROSSE MONTCEAUX", + "nomCommune": "LA BROSSE MONTCEAUX" }, { - "codePostal": "80190", - "codeCommune": "80292", - "libelleAcheminement": "ETALON", - "nomCommune": "ETALON" + "codePostal": "88700", + "codeCommune": "88527", + "libelleAcheminement": "XAFFEVILLERS", + "nomCommune": "XAFFEVILLERS" }, { - "codePostal": "72200", - "codeCommune": "72025", - "libelleAcheminement": "BAZOUGES CRE SUR LOIR", - "nomCommune": "BAZOUGES CRE SUR LOIR" + "codePostal": "74500", + "codeCommune": "74237", + "libelleAcheminement": "ST GINGOLPH", + "nomCommune": "ST GINGOLPH" }, { - "codePostal": "88430", - "codeCommune": "88014", - "libelleAcheminement": "ARRENTES DE CORCIEUX", - "nomCommune": "ARRENTES DE CORCIEUX" + "codePostal": "88300", + "codeCommune": "88443", + "libelleAcheminement": "SARTES", + "nomCommune": "SARTES" }, { - "codePostal": "89240", - "codeCommune": "89102", - "libelleAcheminement": "CHEVANNES", - "nomCommune": "CHEVANNES" + "codePostal": "77130", + "codeCommune": "77061", + "libelleAcheminement": "CANNES ECLUSE", + "nomCommune": "CANNES ECLUSE" }, { - "codePostal": "80340", - "codeCommune": "80295", - "libelleAcheminement": "ETINEHEM MERICOURT", - "nomCommune": "ETINEHEM MERICOURT" + "codePostal": "89110", + "codeCommune": "89003", + "libelleAcheminement": "MONTHOLON", + "nomCommune": "MONTHOLON" }, { - "codePostal": "72110", - "codeCommune": "72026", - "libelleAcheminement": "BEAUFAY", - "nomCommune": "BEAUFAY" + "codePostal": "74410", + "codeCommune": "74242", + "libelleAcheminement": "ST JORIOZ", + "nomCommune": "ST JORIOZ" }, { - "codePostal": "88300", - "codeCommune": "88019", - "libelleAcheminement": "AUTIGNY LA TOUR", - "nomCommune": "AUTIGNY LA TOUR" + "codePostal": "88580", + "codeCommune": "88445", + "libelleAcheminement": "SAULCY SUR MEURTHE", + "nomCommune": "SAULCY SUR MEURTHE" }, { - "codePostal": "89140", - "codeCommune": "89115", - "libelleAcheminement": "COMPIGNY", - "nomCommune": "COMPIGNY" + "codePostal": "77400", + "codeCommune": "77062", + "libelleAcheminement": "CARNETIN", + "nomCommune": "CARNETIN" }, { - "codePostal": "80360", - "codeCommune": "80298", - "libelleAcheminement": "ETRICOURT MANANCOURT", - "nomCommune": "ETRICOURT MANANCOURT" + "codePostal": "89710", + "codeCommune": "89003", + "libelleAcheminement": "MONTHOLON", + "nomCommune": "MONTHOLON" }, { - "codePostal": "72170", - "codeCommune": "72029", - "libelleAcheminement": "BEAUMONT SUR SARTHE", - "nomCommune": "BEAUMONT SUR SARTHE" + "codePostal": "74310", + "codeCommune": "74266", + "libelleAcheminement": "SERVOZ", + "nomCommune": "SERVOZ" }, { - "codePostal": "88500", - "codeCommune": "88023", - "libelleAcheminement": "AVILLERS", - "nomCommune": "AVILLERS" + "codePostal": "88130", + "codeCommune": "88449", + "libelleAcheminement": "SAVIGNY", + "nomCommune": "SAVIGNY" }, { - "codePostal": "89480", - "codeCommune": "89119", - "libelleAcheminement": "COULANGES SUR YONNE", - "nomCommune": "COULANGES SUR YONNE" + "codePostal": "77120", + "codeCommune": "77070", + "libelleAcheminement": "CHAILLY EN BRIE", + "nomCommune": "CHAILLY EN BRIE" }, { - "codePostal": "80250", - "codeCommune": "80299", - "libelleAcheminement": "LA FALOISE", - "nomCommune": "LA FALOISE" + "codePostal": "89390", + "codeCommune": "89004", + "libelleAcheminement": "AISY SUR ARMANCON", + "nomCommune": "AISY SUR ARMANCON" }, { - "codePostal": "72160", - "codeCommune": "72031", - "libelleAcheminement": "BEILLE", - "nomCommune": "BEILLE" + "codePostal": "74300", + "codeCommune": "74278", + "libelleAcheminement": "THYEZ", + "nomCommune": "THYEZ" }, { - "codePostal": "88240", - "codeCommune": "88029", - "libelleAcheminement": "LA VOGE LES BAINS", - "nomCommune": "LA VOGE LES BAINS" + "codePostal": "88320", + "codeCommune": "88456", + "libelleAcheminement": "SEROCOURT", + "nomCommune": "SEROCOURT" }, { - "codePostal": "89190", - "codeCommune": "89122", - "libelleAcheminement": "COURGENAY", - "nomCommune": "COURGENAY" + "codePostal": "77144", + "codeCommune": "77075", + "libelleAcheminement": "CHALIFERT", + "nomCommune": "CHALIFERT" }, { - "codePostal": "80190", - "codeCommune": "80300", - "libelleAcheminement": "FALVY", - "nomCommune": "FALVY" + "codePostal": "89160", + "codeCommune": "89005", + "libelleAcheminement": "ANCY LE FRANC", + "nomCommune": "ANCY LE FRANC" }, { - "codePostal": "72600", - "codeCommune": "72037", - "libelleAcheminement": "BLEVES", - "nomCommune": "BLEVES" + "codePostal": "74200", + "codeCommune": "74281", + "libelleAcheminement": "THONON LES BAINS", + "nomCommune": "THONON LES BAINS" }, { - "codePostal": "88270", - "codeCommune": "88030", - "libelleAcheminement": "BAINVILLE AUX SAULES", - "nomCommune": "BAINVILLE AUX SAULES" + "codePostal": "88120", + "codeCommune": "88462", + "libelleAcheminement": "LE SYNDICAT", + "nomCommune": "LE SYNDICAT" }, { - "codePostal": "89140", - "codeCommune": "89124", - "libelleAcheminement": "COURLON SUR YONNE", - "nomCommune": "COURLON SUR YONNE" + "codePostal": "77910", + "codeCommune": "77077", + "libelleAcheminement": "CHAMBRY", + "nomCommune": "CHAMBRY" }, { - "codePostal": "80290", - "codeCommune": "80301", - "libelleAcheminement": "FAMECHON", - "nomCommune": "FAMECHON" + "codePostal": "89440", + "codeCommune": "89012", + "libelleAcheminement": "ANNOUX", + "nomCommune": "ANNOUX" }, { - "codePostal": "72400", - "codeCommune": "72040", - "libelleAcheminement": "LA BOSSE", - "nomCommune": "LA BOSSE" + "codePostal": "74370", + "codeCommune": "74282", + "libelleAcheminement": "FILLIERE", + "nomCommune": "FILLIERE" }, { - "codePostal": "88210", - "codeCommune": "88053", - "libelleAcheminement": "BELVAL", - "nomCommune": "BELVAL" + "codePostal": "88120", + "codeCommune": "88462", + "libelleAcheminement": "LE SYNDICAT", + "nomCommune": "LE SYNDICAT" }, { - "codePostal": "89460", - "codeCommune": "89130", - "libelleAcheminement": "DEUX RIVIERES", - "nomCommune": "DEUX RIVIERES" + "codePostal": "77560", + "codeCommune": "77080", + "libelleAcheminement": "CHAMPCENEST", + "nomCommune": "CHAMPCENEST" }, { - "codePostal": "80500", - "codeCommune": "80306", - "libelleAcheminement": "FESCAMPS", - "nomCommune": "FESCAMPS" + "codePostal": "89270", + "codeCommune": "89015", + "libelleAcheminement": "ARCY SUR CURE", + "nomCommune": "ARCY SUR CURE" }, { - "codePostal": "72390", - "codeCommune": "72041", - "libelleAcheminement": "BOUER", - "nomCommune": "BOUER" + "codePostal": "74250", + "codeCommune": "74284", + "libelleAcheminement": "LA TOUR", + "nomCommune": "LA TOUR" }, { - "codePostal": "88520", - "codeCommune": "88054", - "libelleAcheminement": "BERTRIMOUTIER", - "nomCommune": "BERTRIMOUTIER" + "codePostal": "88460", + "codeCommune": "88464", + "libelleAcheminement": "TENDON", + "nomCommune": "TENDON" }, { - "codePostal": "89140", - "codeCommune": "89136", - "libelleAcheminement": "CUY", - "nomCommune": "CUY" + "codePostal": "77660", + "codeCommune": "77084", + "libelleAcheminement": "CHANGIS SUR MARNE", + "nomCommune": "CHANGIS SUR MARNE" }, { - "codePostal": "80140", - "codeCommune": "80324", - "libelleAcheminement": "FONTAINE LE SEC", - "nomCommune": "FONTAINE LE SEC" + "codePostal": "89160", + "codeCommune": "89016", + "libelleAcheminement": "ARGENTENAY", + "nomCommune": "ARGENTENAY" }, { - "codePostal": "72270", - "codeCommune": "72044", - "libelleAcheminement": "BOUSSE", - "nomCommune": "BOUSSE" + "codePostal": "74360", + "codeCommune": "74286", + "libelleAcheminement": "VACHERESSE", + "nomCommune": "VACHERESSE" }, { - "codePostal": "88450", - "codeCommune": "88055", - "libelleAcheminement": "BETTEGNEY ST BRICE", - "nomCommune": "BETTEGNEY ST BRICE" + "codePostal": "88150", + "codeCommune": "88465", + "libelleAcheminement": "THAON LES VOSGES", + "nomCommune": "THAON LES VOSGES" }, { - "codePostal": "89700", - "codeCommune": "89137", - "libelleAcheminement": "DANNEMOINE", - "nomCommune": "DANNEMOINE" + "codePostal": "77760", + "codeCommune": "77088", + "libelleAcheminement": "LA CHAPELLE LA REINE", + "nomCommune": "LA CHAPELLE LA REINE" }, { - "codePostal": "80340", - "codeCommune": "80325", - "libelleAcheminement": "FONTAINE LES CAPPY", - "nomCommune": "FONTAINE LES CAPPY" + "codePostal": "89190", + "codeCommune": "89027", + "libelleAcheminement": "BAGNEAUX", + "nomCommune": "BAGNEAUX" }, { - "codePostal": "72250", - "codeCommune": "72047", - "libelleAcheminement": "BRETTE LES PINS", - "nomCommune": "BRETTE LES PINS" + "codePostal": "74470", + "codeCommune": "74287", + "libelleAcheminement": "VAILLY", + "nomCommune": "VAILLY" }, { - "codePostal": "88170", - "codeCommune": "88058", - "libelleAcheminement": "BIECOURT", - "nomCommune": "BIECOURT" + "codePostal": "88260", + "codeCommune": "88472", + "libelleAcheminement": "THUILLIERES", + "nomCommune": "THUILLIERES" }, { - "codePostal": "89150", - "codeCommune": "89143", - "libelleAcheminement": "DOLLOT", - "nomCommune": "DOLLOT" + "codePostal": "77320", + "codeCommune": "77093", + "libelleAcheminement": "LA CHAPELLE MOUTILS", + "nomCommune": "LA CHAPELLE MOUTILS" }, { - "codePostal": "80120", - "codeCommune": "80332", - "libelleAcheminement": "FOREST MONTIERS", - "nomCommune": "FOREST MONTIERS" + "codePostal": "89400", + "codeCommune": "89029", + "libelleAcheminement": "BASSOU", + "nomCommune": "BASSOU" }, { - "codePostal": "72470", - "codeCommune": "72054", - "libelleAcheminement": "CHAMPAGNE", - "nomCommune": "CHAMPAGNE" + "codePostal": "74150", + "codeCommune": "74289", + "libelleAcheminement": "VALLIERES SUR FIER", + "nomCommune": "VALLIERES SUR FIER" }, { - "codePostal": "88250", - "codeCommune": "88075", - "libelleAcheminement": "LA BRESSE", - "nomCommune": "LA BRESSE" + "codePostal": "88320", + "codeCommune": "88473", + "libelleAcheminement": "TIGNECOURT", + "nomCommune": "TIGNECOURT" }, { - "codePostal": "89450", - "codeCommune": "89145", - "libelleAcheminement": "DOMECY SUR CURE", - "nomCommune": "DOMECY SUR CURE" + "codePostal": "77320", + "codeCommune": "77093", + "libelleAcheminement": "LA CHAPELLE MOUTILS", + "nomCommune": "LA CHAPELLE MOUTILS" }, { - "codePostal": "80340", - "codeCommune": "80335", - "libelleAcheminement": "FOUCAUCOURT EN SANTERRE", - "nomCommune": "FOUCAUCOURT EN SANTERRE" + "codePostal": "89460", + "codeCommune": "89030", + "libelleAcheminement": "BAZARNES", + "nomCommune": "BAZARNES" }, { - "codePostal": "72320", - "codeCommune": "72057", - "libelleAcheminement": "CHAMPROND", - "nomCommune": "CHAMPROND" + "codePostal": "74350", + "codeCommune": "74307", + "libelleAcheminement": "VILLY LE PELLOUX", + "nomCommune": "VILLY LE PELLOUX" }, { - "codePostal": "88230", - "codeCommune": "88106", - "libelleAcheminement": "BAN SUR MEURTHE CLEFCY", - "nomCommune": "BAN SUR MEURTHE CLEFCY" + "codePostal": "88320", + "codeCommune": "88475", + "libelleAcheminement": "TOLLAINCOURT", + "nomCommune": "TOLLAINCOURT" }, { - "codePostal": "89360", - "codeCommune": "89149", - "libelleAcheminement": "DYE", - "nomCommune": "DYE" + "codePostal": "77410", + "codeCommune": "77094", + "libelleAcheminement": "CHARMENTRAY", + "nomCommune": "CHARMENTRAY" }, { - "codePostal": "80800", - "codeCommune": "80338", - "libelleAcheminement": "FOUILLOY", - "nomCommune": "FOUILLOY" + "codePostal": "89250", + "codeCommune": "89031", + "libelleAcheminement": "BEAUMONT", + "nomCommune": "BEAUMONT" }, { - "codePostal": "72400", - "codeCommune": "72062", - "libelleAcheminement": "LA CHAPELLE DU BOIS", - "nomCommune": "LA CHAPELLE DU BOIS" + "codePostal": "75003", + "codeCommune": "75103", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 03" }, { - "codePostal": "88490", - "codeCommune": "88113", - "libelleAcheminement": "COMBRIMONT", - "nomCommune": "COMBRIMONT" + "codePostal": "88500", + "codeCommune": "88476", + "libelleAcheminement": "TOTAINVILLE", + "nomCommune": "TOTAINVILLE" }, { - "codePostal": "89240", - "codeCommune": "89154", - "libelleAcheminement": "ESCAMPS", - "nomCommune": "ESCAMPS" + "codePostal": "77370", + "codeCommune": "77098", + "libelleAcheminement": "CHATEAUBLEAU", + "nomCommune": "CHATEAUBLEAU" }, { - "codePostal": "80310", - "codeCommune": "80341", - "libelleAcheminement": "FOURDRINOY", - "nomCommune": "FOURDRINOY" + "codePostal": "89630", + "codeCommune": "89032", + "libelleAcheminement": "BEAUVILLIERS", + "nomCommune": "BEAUVILLIERS" }, { - "codePostal": "72240", - "codeCommune": "72066", - "libelleAcheminement": "LA CHAPELLE ST FRAY", - "nomCommune": "LA CHAPELLE ST FRAY" + "codePostal": "75012", + "codeCommune": "75112", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 12" }, { - "codePostal": "88310", - "codeCommune": "88116", - "libelleAcheminement": "CORNIMONT", - "nomCommune": "CORNIMONT" + "codePostal": "88120", + "codeCommune": "88486", + "libelleAcheminement": "VAGNEY", + "nomCommune": "VAGNEY" }, { - "codePostal": "89480", - "codeCommune": "89158", - "libelleAcheminement": "ETAIS LA SAUVIN", - "nomCommune": "ETAIS LA SAUVIN" + "codePostal": "77167", + "codeCommune": "77102", + "libelleAcheminement": "CHATENOY", + "nomCommune": "CHATENOY" }, { - "codePostal": "80690", - "codeCommune": "80344", - "libelleAcheminement": "FRANCIERES", - "nomCommune": "FRANCIERES" + "codePostal": "89410", + "codeCommune": "89037", + "libelleAcheminement": "BEON", + "nomCommune": "BEON" }, { - "codePostal": "72160", - "codeCommune": "72067", - "libelleAcheminement": "LA CHAPELLE ST REMY", - "nomCommune": "LA CHAPELLE ST REMY" + "codePostal": "76560", + "codeCommune": "76006", + "libelleAcheminement": "AMFREVILLE LES CHAMPS", + "nomCommune": "AMFREVILLE LES CHAMPS" + }, + { + "codePostal": "88270", + "codeCommune": "88499", + "libelleAcheminement": "VELOTTE ET TATIGNECOURT", + "nomCommune": "VELOTTE ET TATIGNECOURT" }, { - "codePostal": "88330", - "codeCommune": "88121", - "libelleAcheminement": "DAMAS AUX BOIS", - "nomCommune": "DAMAS AUX BOIS" + "codePostal": "77610", + "codeCommune": "77104", + "libelleAcheminement": "CHATRES", + "nomCommune": "CHATRES" }, { - "codePostal": "89140", - "codeCommune": "89162", - "libelleAcheminement": "EVRY", - "nomCommune": "EVRY" + "codePostal": "89420", + "codeCommune": "89042", + "libelleAcheminement": "BIERRY LES BELLES FONTAINES", + "nomCommune": "BIERRY LES BELLES FONTAINES" }, { - "codePostal": "80140", - "codeCommune": "80356", - "libelleAcheminement": "FRESNOY ANDAINVILLE", - "nomCommune": "FRESNOY ANDAINVILLE" + "codePostal": "76560", + "codeCommune": "76009", + "libelleAcheminement": "ANCOURTEVILLE SUR HERICOURT", + "nomCommune": "ANCOURTEVILLE SUR HERICOURT" }, { - "codePostal": "72340", - "codeCommune": "72068", - "libelleAcheminement": "LA CHARTRE SUR LE LOIR", - "nomCommune": "LA CHARTRE SUR LE LOIR" + "codePostal": "88270", + "codeCommune": "88508", + "libelleAcheminement": "VILLE SUR ILLON", + "nomCommune": "VILLE SUR ILLON" }, { - "codePostal": "88170", - "codeCommune": "88125", - "libelleAcheminement": "DARNEY AUX CHENES", - "nomCommune": "DARNEY AUX CHENES" + "codePostal": "77090", + "codeCommune": "77121", + "libelleAcheminement": "COLLEGIEN", + "nomCommune": "COLLEGIEN" }, { - "codePostal": "89113", - "codeCommune": "89167", - "libelleAcheminement": "FLEURY LA VALLEE", - "nomCommune": "FLEURY LA VALLEE" + "codePostal": "89200", + "codeCommune": "89044", + "libelleAcheminement": "BLANNAY", + "nomCommune": "BLANNAY" }, { - "codePostal": "80110", - "codeCommune": "80358", - "libelleAcheminement": "FRESNOY EN CHAUSSEE", - "nomCommune": "FRESNOY EN CHAUSSEE" + "codePostal": "76760", + "codeCommune": "76010", + "libelleAcheminement": "ANCRETIEVILLE ST VICTOR", + "nomCommune": "ANCRETIEVILLE ST VICTOR" }, { - "codePostal": "72500", - "codeCommune": "72071", - "libelleAcheminement": "MONTVAL SUR LOIR", - "nomCommune": "MONTVAL SUR LOIR" + "codePostal": "88450", + "codeCommune": "88513", + "libelleAcheminement": "VINCEY", + "nomCommune": "VINCEY" }, { - "codePostal": "88210", - "codeCommune": "88128", - "libelleAcheminement": "DENIPAIRE", - "nomCommune": "DENIPAIRE" + "codePostal": "77600", + "codeCommune": "77124", + "libelleAcheminement": "CONCHES SUR GONDOIRE", + "nomCommune": "CONCHES SUR GONDOIRE" }, { - "codePostal": "89360", - "codeCommune": "89169", - "libelleAcheminement": "FLOGNY LA CHAPELLE", - "nomCommune": "FLOGNY LA CHAPELLE" + "codePostal": "89220", + "codeCommune": "89046", + "libelleAcheminement": "BLENEAU", + "nomCommune": "BLENEAU" }, { - "codePostal": "80290", - "codeCommune": "80365", - "libelleAcheminement": "FRICAMPS", - "nomCommune": "FRICAMPS" + "codePostal": "76740", + "codeCommune": "76015", + "libelleAcheminement": "ANGIENS", + "nomCommune": "ANGIENS" }, { - "codePostal": "72540", - "codeCommune": "72074", - "libelleAcheminement": "CHEMIRE EN CHARNIE", - "nomCommune": "CHEMIRE EN CHARNIE" + "codePostal": "88500", + "codeCommune": "88525", + "libelleAcheminement": "VROVILLE", + "nomCommune": "VROVILLE" }, { - "codePostal": "88270", - "codeCommune": "88129", - "libelleAcheminement": "DERBAMONT", - "nomCommune": "DERBAMONT" + "codePostal": "77120", + "codeCommune": "77131", + "libelleAcheminement": "COULOMMIERS", + "nomCommune": "COULOMMIERS" }, { - "codePostal": "89100", - "codeCommune": "89195", - "libelleAcheminement": "GRON", - "nomCommune": "GRON" + "codePostal": "89660", + "codeCommune": "89049", + "libelleAcheminement": "BOIS D ARCY", + "nomCommune": "BOIS D ARCY" }, { - "codePostal": "80370", - "codeCommune": "80369", - "libelleAcheminement": "FROHEN SUR AUTHIE", - "nomCommune": "FROHEN SUR AUTHIE" + "codePostal": "76740", + "codeCommune": "76016", + "libelleAcheminement": "ANGLESQUEVILLE LA BRAS LONG", + "nomCommune": "ANGLESQUEVILLE LA BRAS LONG" }, { - "codePostal": "72500", - "codeCommune": "72077", - "libelleAcheminement": "CHENU", - "nomCommune": "CHENU" + "codePostal": "88220", + "codeCommune": "88530", + "libelleAcheminement": "XERTIGNY", + "nomCommune": "XERTIGNY" }, { - "codePostal": "88460", - "codeCommune": "88135", - "libelleAcheminement": "DOCELLES", - "nomCommune": "DOCELLES" + "codePostal": "77560", + "codeCommune": "77137", + "libelleAcheminement": "COURTACON", + "nomCommune": "COURTACON" }, { - "codePostal": "89110", - "codeCommune": "89196", - "libelleAcheminement": "VALRAVILLON", - "nomCommune": "VALRAVILLON" + "codePostal": "89210", + "codeCommune": "89055", + "libelleAcheminement": "BRIENON SUR ARMANCON", + "nomCommune": "BRIENON SUR ARMANCON" }, { - "codePostal": "80150", - "codeCommune": "80371", - "libelleAcheminement": "FROYELLES", - "nomCommune": "FROYELLES" + "codePostal": "76890", + "codeCommune": "76018", + "libelleAcheminement": "VAL DE SAANE", + "nomCommune": "VAL DE SAANE" }, { - "codePostal": "72170", - "codeCommune": "72078", - "libelleAcheminement": "CHERANCE", - "nomCommune": "CHERANCE" + "codePostal": "89200", + "codeCommune": "89009", + "libelleAcheminement": "ANNAY LA COTE", + "nomCommune": "ANNAY LA COTE" }, { - "codePostal": "88260", - "codeCommune": "88138", - "libelleAcheminement": "DOMBASLE DEVANT DARNEY", - "nomCommune": "DOMBASLE DEVANT DARNEY" + "codePostal": "77181", + "codeCommune": "77139", + "libelleAcheminement": "COURTRY", + "nomCommune": "COURTRY" }, { - "codePostal": "89420", - "codeCommune": "89197", - "libelleAcheminement": "GUILLON TERRE PLAINE", - "nomCommune": "GUILLON TERRE PLAINE" + "codePostal": "89400", + "codeCommune": "89056", + "libelleAcheminement": "BRION", + "nomCommune": "BRION" }, { - "codePostal": "80440", - "codeCommune": "80379", - "libelleAcheminement": "GLISY", - "nomCommune": "GLISY" + "codePostal": "76590", + "codeCommune": "76019", + "libelleAcheminement": "ANNEVILLE SUR SCIE", + "nomCommune": "ANNEVILLE SUR SCIE" }, { - "codePostal": "72350", - "codeCommune": "72083", - "libelleAcheminement": "CHEVILLE", - "nomCommune": "CHEVILLE" + "codePostal": "89700", + "codeCommune": "89039", + "libelleAcheminement": "BERU", + "nomCommune": "BERU" }, { - "codePostal": "88500", - "codeCommune": "88139", - "libelleAcheminement": "DOMBASLE EN XAINTOIS", - "nomCommune": "DOMBASLE EN XAINTOIS" + "codePostal": "77580", + "codeCommune": "77142", + "libelleAcheminement": "CRECY LA CHAPELLE", + "nomCommune": "CRECY LA CHAPELLE" }, { - "codePostal": "89420", - "codeCommune": "89197", - "libelleAcheminement": "GUILLON TERRE PLAINE", - "nomCommune": "GUILLON TERRE PLAINE" + "codePostal": "89630", + "codeCommune": "89058", + "libelleAcheminement": "BUSSIERES", + "nomCommune": "BUSSIERES" }, { - "codePostal": "80680", - "codeCommune": "80387", - "libelleAcheminement": "GRATTEPANCHE", - "nomCommune": "GRATTEPANCHE" + "codePostal": "76110", + "codeCommune": "76021", + "libelleAcheminement": "ANNOUVILLE VILMESNIL", + "nomCommune": "ANNOUVILLE VILMESNIL" }, { - "codePostal": "72310", - "codeCommune": "72085", - "libelleAcheminement": "COGNERS", - "nomCommune": "COGNERS" + "codePostal": "89500", + "codeCommune": "89051", + "libelleAcheminement": "LES BORDES", + "nomCommune": "LES BORDES" }, { - "codePostal": "88140", - "codeCommune": "88140", - "libelleAcheminement": "DOMBROT LE SEC", - "nomCommune": "DOMBROT LE SEC" + "codePostal": "77370", + "codeCommune": "77147", + "libelleAcheminement": "LA CROIX EN BRIE", + "nomCommune": "LA CROIX EN BRIE" }, { - "codePostal": "89550", - "codeCommune": "89201", - "libelleAcheminement": "HERY", - "nomCommune": "HERY" + "codePostal": "89400", + "codeCommune": "89059", + "libelleAcheminement": "BUSSY EN OTHE", + "nomCommune": "BUSSY EN OTHE" }, { - "codePostal": "80700", - "codeCommune": "80391", - "libelleAcheminement": "GRIVILLERS", - "nomCommune": "GRIVILLERS" + "codePostal": "76490", + "codeCommune": "76022", + "libelleAcheminement": "ANQUETIERVILLE", + "nomCommune": "ANQUETIERVILLE" }, { - "codePostal": "72400", - "codeCommune": "72093", - "libelleAcheminement": "CORMES", - "nomCommune": "CORMES" + "codePostal": "89150", + "codeCommune": "89054", + "libelleAcheminement": "BRANNAY", + "nomCommune": "BRANNAY" }, { - "codePostal": "88170", - "codeCommune": "88141", - "libelleAcheminement": "DOMBROT SUR VAIR", - "nomCommune": "DOMBROT SUR VAIR" + "codePostal": "77840", + "codeCommune": "77148", + "libelleAcheminement": "CROUY SUR OURCQ", + "nomCommune": "CROUY SUR OURCQ" }, { "codePostal": "89360", - "codeCommune": "89205", - "libelleAcheminement": "JAULGES", - "nomCommune": "JAULGES" + "codeCommune": "89061", + "libelleAcheminement": "BUTTEAUX", + "nomCommune": "BUTTEAUX" }, { - "codePostal": "80700", - "codeCommune": "80393", - "libelleAcheminement": "GRUNY", - "nomCommune": "GRUNY" + "codePostal": "76560", + "codeCommune": "76023", + "libelleAcheminement": "ANVEVILLE", + "nomCommune": "ANVEVILLE" }, { - "codePostal": "72440", - "codeCommune": "72094", - "libelleAcheminement": "COUDRECIEUX", - "nomCommune": "COUDRECIEUX" + "codePostal": "89210", + "codeCommune": "89055", + "libelleAcheminement": "BRIENON SUR ARMANCON", + "nomCommune": "BRIENON SUR ARMANCON" }, { - "codePostal": "88390", - "codeCommune": "88142", - "libelleAcheminement": "DOMEVRE SUR AVIERE", - "nomCommune": "DOMEVRE SUR AVIERE" + "codePostal": "77140", + "codeCommune": "77156", + "libelleAcheminement": "DARVAULT", + "nomCommune": "DARVAULT" }, { - "codePostal": "89700", - "codeCommune": "89211", - "libelleAcheminement": "JUNAY", - "nomCommune": "JUNAY" + "codePostal": "89320", + "codeCommune": "89066", + "libelleAcheminement": "CERISIERS", + "nomCommune": "CERISIERS" }, { - "codePostal": "80360", - "codeCommune": "80401", - "libelleAcheminement": "GUILLEMONT", - "nomCommune": "GUILLEMONT" + "codePostal": "76680", + "codeCommune": "76024", + "libelleAcheminement": "ARDOUVAL", + "nomCommune": "ARDOUVAL" }, { - "codePostal": "72150", - "codeCommune": "72103", - "libelleAcheminement": "COURDEMANCHE", - "nomCommune": "COURDEMANCHE" + "codePostal": "89310", + "codeCommune": "89064", + "libelleAcheminement": "CENSY", + "nomCommune": "CENSY" }, { - "codePostal": "88500", - "codeCommune": "88144", - "libelleAcheminement": "DOMEVRE SOUS MONTFORT", - "nomCommune": "DOMEVRE SOUS MONTFORT" + "codePostal": "77520", + "codeCommune": "77159", + "libelleAcheminement": "DONNEMARIE DONTILLY", + "nomCommune": "DONNEMARIE DONTILLY" }, { - "codePostal": "89290", - "codeCommune": "89212", - "libelleAcheminement": "JUSSY", - "nomCommune": "JUSSY" + "codePostal": "89800", + "codeCommune": "89068", + "libelleAcheminement": "CHABLIS", + "nomCommune": "CHABLIS" }, { - "codePostal": "80490", - "codeCommune": "80406", - "libelleAcheminement": "HALLENCOURT", - "nomCommune": "HALLENCOURT" + "codePostal": "76720", + "codeCommune": "76034", + "libelleAcheminement": "VAL DE SCIE", + "nomCommune": "VAL DE SCIE" }, { - "codePostal": "72260", - "codeCommune": "72104", - "libelleAcheminement": "COURGAINS", - "nomCommune": "COURGAINS" + "codePostal": "89220", + "codeCommune": "89072", + "libelleAcheminement": "CHAMPCEVRAIS", + "nomCommune": "CHAMPCEVRAIS" }, { - "codePostal": "88600", - "codeCommune": "88145", - "libelleAcheminement": "DOMFAING", - "nomCommune": "DOMFAING" + "codePostal": "77126", + "codeCommune": "77167", + "libelleAcheminement": "EGLIGNY", + "nomCommune": "EGLIGNY" }, { - "codePostal": "89130", - "codeCommune": "89217", - "libelleAcheminement": "LALANDE", - "nomCommune": "LALANDE" + "codePostal": "89770", + "codeCommune": "89069", + "libelleAcheminement": "CHAILLEY", + "nomCommune": "CHAILLEY" }, { - "codePostal": "80320", - "codeCommune": "80409", - "libelleAcheminement": "HALLU", - "nomCommune": "HALLU" + "codePostal": "76720", + "codeCommune": "76034", + "libelleAcheminement": "VAL DE SCIE", + "nomCommune": "VAL DE SCIE" }, { - "codePostal": "72320", - "codeCommune": "72105", - "libelleAcheminement": "COURGENARD", - "nomCommune": "COURGENARD" + "codePostal": "89350", + "codeCommune": "89073", + "libelleAcheminement": "CHAMPIGNELLES", + "nomCommune": "CHAMPIGNELLES" }, { - "codePostal": "88270", - "codeCommune": "88151", - "libelleAcheminement": "DOMPAIRE", - "nomCommune": "DOMPAIRE" + "codePostal": "77515", + "codeCommune": "77176", + "libelleAcheminement": "FAREMOUTIERS", + "nomCommune": "FAREMOUTIERS" }, { - "codePostal": "89130", - "codeCommune": "89221", - "libelleAcheminement": "LEUGNY", - "nomCommune": "LEUGNY" + "codePostal": "89350", + "codeCommune": "89073", + "libelleAcheminement": "CHAMPIGNELLES", + "nomCommune": "CHAMPIGNELLES" }, { - "codePostal": "80700", - "codeCommune": "80421", - "libelleAcheminement": "HATTENCOURT", - "nomCommune": "HATTENCOURT" + "codePostal": "76440", + "codeCommune": "76060", + "libelleAcheminement": "BEAUBEC LA ROSIERE", + "nomCommune": "BEAUBEC LA ROSIERE" }, { - "codePostal": "72170", - "codeCommune": "72120", - "libelleAcheminement": "DOUCELLES", - "nomCommune": "DOUCELLES" + "codePostal": "89290", + "codeCommune": "89077", + "libelleAcheminement": "CHAMPS SUR YONNE", + "nomCommune": "CHAMPS SUR YONNE" }, { - "codePostal": "88630", - "codeCommune": "88154", - "libelleAcheminement": "DOMREMY LA PUCELLE", - "nomCommune": "DOMREMY LA PUCELLE" + "codePostal": "77164", + "codeCommune": "77181", + "libelleAcheminement": "FERRIERES EN BRIE", + "nomCommune": "FERRIERES EN BRIE" }, { - "codePostal": "89520", - "codeCommune": "89222", - "libelleAcheminement": "LEVIS", - "nomCommune": "LEVIS" + "codePostal": "89340", + "codeCommune": "89074", + "libelleAcheminement": "CHAMPIGNY", + "nomCommune": "CHAMPIGNY" }, { - "codePostal": "80600", - "codeCommune": "80427", - "libelleAcheminement": "HEM HARDINVAL", - "nomCommune": "HEM HARDINVAL" + "codePostal": "76890", + "codeCommune": "76063", + "libelleAcheminement": "BEAUVAL EN CAUX", + "nomCommune": "BEAUVAL EN CAUX" }, { - "codePostal": "72270", - "codeCommune": "72123", - "libelleAcheminement": "DUREIL", - "nomCommune": "DUREIL" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "88500", - "codeCommune": "88155", - "libelleAcheminement": "DOMVALLIER", - "nomCommune": "DOMVALLIER" + "codePostal": "77940", + "codeCommune": "77184", + "libelleAcheminement": "FLAGY", + "nomCommune": "FLAGY" }, { - "codePostal": "89144", - "codeCommune": "89227", - "libelleAcheminement": "LIGNY LE CHATEL", - "nomCommune": "LIGNY LE CHATEL" + "codePostal": "89300", + "codeCommune": "89079", + "libelleAcheminement": "CHAMVRES", + "nomCommune": "CHAMVRES" }, { - "codePostal": "80200", - "codeCommune": "80430", - "libelleAcheminement": "HERBECOURT", - "nomCommune": "HERBECOURT" + "codePostal": "76280", + "codeCommune": "76064", + "libelleAcheminement": "BEAUREPAIRE", + "nomCommune": "BEAUREPAIRE" }, { - "codePostal": "72540", - "codeCommune": "72126", - "libelleAcheminement": "EPINEU LE CHEVREUIL", - "nomCommune": "EPINEU LE CHEVREUIL" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "88480", - "codeCommune": "88165", - "libelleAcheminement": "ETIVAL CLAIREFONTAINE", - "nomCommune": "ETIVAL CLAIREFONTAINE" + "codePostal": "77930", + "codeCommune": "77185", + "libelleAcheminement": "FLEURY EN BIERE", + "nomCommune": "FLEURY EN BIERE" }, { - "codePostal": "89270", - "codeCommune": "89237", - "libelleAcheminement": "MAILLY LA VILLE", - "nomCommune": "MAILLY LA VILLE" + "codePostal": "89800", + "codeCommune": "89081", + "libelleAcheminement": "LA CHAPELLE VAUPELTEIGNE", + "nomCommune": "LA CHAPELLE VAUPELTEIGNE" }, { - "codePostal": "80240", - "codeCommune": "80435", - "libelleAcheminement": "HESBECOURT", - "nomCommune": "HESBECOURT" + "codePostal": "76680", + "codeCommune": "76070", + "libelleAcheminement": "BELLENCOMBRE", + "nomCommune": "BELLENCOMBRE" }, { - "codePostal": "72700", - "codeCommune": "72127", - "libelleAcheminement": "ETIVAL LES LE MANS", - "nomCommune": "ETIVAL LES LE MANS" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "88450", - "codeCommune": "88166", - "libelleAcheminement": "EVAUX ET MENIL", - "nomCommune": "EVAUX ET MENIL" + "codePostal": "77370", + "codeCommune": "77191", + "libelleAcheminement": "FONTENAILLES", + "nomCommune": "FONTENAILLES" }, { - "codePostal": "89660", - "codeCommune": "89238", - "libelleAcheminement": "MAILLY LE CHATEAU", - "nomCommune": "MAILLY LE CHATEAU" + "codePostal": "89113", + "codeCommune": "89083", + "libelleAcheminement": "CHARBUY", + "nomCommune": "CHARBUY" }, { - "codePostal": "80640", - "codeCommune": "80443", - "libelleAcheminement": "HORNOY LE BOURG", - "nomCommune": "HORNOY LE BOURG" + "codePostal": "76560", + "codeCommune": "76077", + "libelleAcheminement": "BENESVILLE", + "nomCommune": "BENESVILLE" }, { - "codePostal": "72400", - "codeCommune": "72132", - "libelleAcheminement": "LA FERTE BERNARD", - "nomCommune": "LA FERTE BERNARD" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "88700", - "codeCommune": "88168", - "libelleAcheminement": "FAUCONCOURT", - "nomCommune": "FAUCONCOURT" + "codePostal": "77910", + "codeCommune": "77203", + "libelleAcheminement": "GERMIGNY L EVEQUE", + "nomCommune": "GERMIGNY L EVEQUE" }, { - "codePostal": "89440", - "codeCommune": "89246", - "libelleAcheminement": "MASSANGIS", - "nomCommune": "MASSANGIS" + "codePostal": "89580", + "codeCommune": "89084", + "libelleAcheminement": "CHARENTENAY", + "nomCommune": "CHARENTENAY" }, { - "codePostal": "80300", - "codeCommune": "80451", - "libelleAcheminement": "IRLES", - "nomCommune": "IRLES" + "codePostal": "76690", + "codeCommune": "76105", + "libelleAcheminement": "LE BOCASSE", + "nomCommune": "LE BOCASSE" }, { - "codePostal": "72210", - "codeCommune": "72133", - "libelleAcheminement": "FILLE SUR SARTHE", - "nomCommune": "FILLE" + "codePostal": "89160", + "codeCommune": "89087", + "libelleAcheminement": "CHASSIGNELLES", + "nomCommune": "CHASSIGNELLES" }, { - "codePostal": "88600", - "codeCommune": "88169", - "libelleAcheminement": "FAYS", - "nomCommune": "FAYS" + "codePostal": "77130", + "codeCommune": "77210", + "libelleAcheminement": "LA GRANDE PAROISSE", + "nomCommune": "LA GRANDE PAROISSE" }, { - "codePostal": "89400", - "codeCommune": "89257", - "libelleAcheminement": "MIGENNES", - "nomCommune": "MIGENNES" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "80500", - "codeCommune": "80453", - "libelleAcheminement": "LABOISSIERE EN SANTERRE", - "nomCommune": "LABOISSIERE EN SANTERRE" + "codePostal": "76160", + "codeCommune": "76106", + "libelleAcheminement": "BOIS D ENNEBOURG", + "nomCommune": "BOIS D ENNEBOURG" }, { - "codePostal": "72500", - "codeCommune": "72134", - "libelleAcheminement": "FLEE", - "nomCommune": "FLEE" + "codePostal": "89630", + "codeCommune": "89089", + "libelleAcheminement": "CHASTELLUX SUR CURE", + "nomCommune": "CHASTELLUX SUR CURE" }, { - "codePostal": "88390", - "codeCommune": "88174", - "libelleAcheminement": "FOMEREY", - "nomCommune": "FOMEREY" + "codePostal": "77410", + "codeCommune": "77214", + "libelleAcheminement": "GRESSY", + "nomCommune": "GRESSY" }, { - "codePostal": "89150", - "codeCommune": "89264", - "libelleAcheminement": "MONTACHER VILLEGARDIN", - "nomCommune": "MONTACHER VILLEGARDIN" + "codePostal": "89110", + "codeCommune": "89088", + "libelleAcheminement": "CHASSY", + "nomCommune": "CHASSY" }, { - "codePostal": "80240", - "codeCommune": "80475", - "libelleAcheminement": "LIERAMONT", - "nomCommune": "LIERAMONT" + "codePostal": "76750", + "codeCommune": "76107", + "libelleAcheminement": "BOIS GUILBERT", + "nomCommune": "BOIS GUILBERT" }, { - "codePostal": "72600", - "codeCommune": "72137", - "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", - "nomCommune": "VILLENEUVE EN PERSEIGNE" + "codePostal": "89660", + "codeCommune": "89091", + "libelleAcheminement": "CHATEL CENSOIR", + "nomCommune": "CHATEL CENSOIR" }, { - "codePostal": "88240", - "codeCommune": "88176", - "libelleAcheminement": "FONTENOY LE CHATEAU", - "nomCommune": "FONTENOY LE CHATEAU" + "codePostal": "77114", + "codeCommune": "77227", + "libelleAcheminement": "HERME", + "nomCommune": "HERME" }, { - "codePostal": "89660", - "codeCommune": "89266", - "libelleAcheminement": "MONTILLOT", - "nomCommune": "MONTILLOT" + "codePostal": "89310", + "codeCommune": "89092", + "libelleAcheminement": "CHATEL GERARD", + "nomCommune": "CHATEL GERARD" }, { - "codePostal": "80160", - "codeCommune": "80485", - "libelleAcheminement": "O DE SELLE", - "nomCommune": "O DE SELLE" + "codePostal": "76230", + "codeCommune": "76108", + "libelleAcheminement": "BOIS GUILLAUME", + "nomCommune": "BOIS GUILLAUME" }, { - "codePostal": "72600", - "codeCommune": "72137", - "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", - "nomCommune": "VILLENEUVE EN PERSEIGNE" + "codePostal": "89340", + "codeCommune": "89093", + "libelleAcheminement": "CHAUMONT", + "nomCommune": "CHAUMONT" }, { - "codePostal": "88320", - "codeCommune": "88180", - "libelleAcheminement": "FRAIN", - "nomCommune": "FRAIN" + "codePostal": "77165", + "codeCommune": "77233", + "libelleAcheminement": "IVERNY", + "nomCommune": "IVERNY" }, { - "codePostal": "89100", - "codeCommune": "89287", - "libelleAcheminement": "PARON", - "nomCommune": "PARON" + "codePostal": "89800", + "codeCommune": "89104", + "libelleAcheminement": "CHICHEE", + "nomCommune": "CHICHEE" }, { - "codePostal": "80160", - "codeCommune": "80485", - "libelleAcheminement": "O DE SELLE", - "nomCommune": "O DE SELLE" + "codePostal": "76750", + "codeCommune": "76113", + "libelleAcheminement": "BOISSAY", + "nomCommune": "BOISSAY" }, { - "codePostal": "72610", - "codeCommune": "72137", - "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", - "nomCommune": "VILLENEUVE EN PERSEIGNE" + "codePostal": "89190", + "codeCommune": "89111", + "libelleAcheminement": "LES CLERIMOIS", + "nomCommune": "LES CLERIMOIS" }, { - "codePostal": "88270", - "codeCommune": "88187", - "libelleAcheminement": "FRENOIS", - "nomCommune": "FRENOIS" + "codePostal": "77480", + "codeCommune": "77236", + "libelleAcheminement": "JAULNES", + "nomCommune": "JAULNES" }, { - "codePostal": "89310", - "codeCommune": "89290", - "libelleAcheminement": "PASILLY", - "nomCommune": "PASILLY" + "codePostal": "89530", + "codeCommune": "89108", + "libelleAcheminement": "CHITRY", + "nomCommune": "CHITRY" }, { - "codePostal": "80510", - "codeCommune": "80488", - "libelleAcheminement": "LONGPRE LES CORPS SAINTS", - "nomCommune": "LONGPRE LES CORPS SAINTS" + "codePostal": "76270", + "codeCommune": "76122", + "libelleAcheminement": "CALLENGEVILLE", + "nomCommune": "CALLENGEVILLE" }, { - "codePostal": "72130", - "codeCommune": "72138", - "libelleAcheminement": "FRESNAY SUR SARTHE", - "nomCommune": "FRESNAY SUR SARTHE" + "codePostal": "89500", + "codeCommune": "89116", + "libelleAcheminement": "CORNANT", + "nomCommune": "CORNANT" }, { - "codePostal": "88350", - "codeCommune": "88189", - "libelleAcheminement": "FREVILLE", - "nomCommune": "FREVILLE" + "codePostal": "77640", + "codeCommune": "77238", + "libelleAcheminement": "JOUARRE", + "nomCommune": "JOUARRE" }, { - "codePostal": "89360", - "codeCommune": "89292", - "libelleAcheminement": "PERCEY", - "nomCommune": "PERCEY" + "codePostal": "89580", + "codeCommune": "89117", + "libelleAcheminement": "COULANGERON", + "nomCommune": "COULANGERON" }, { - "codePostal": "80600", - "codeCommune": "80491", - "libelleAcheminement": "LONGUEVILLETTE", - "nomCommune": "LONGUEVILLETTE" + "codePostal": "76220", + "codeCommune": "76124", + "libelleAcheminement": "BOSC HYONS", + "nomCommune": "BOSC HYONS" }, { - "codePostal": "72130", - "codeCommune": "72138", - "libelleAcheminement": "FRESNAY SUR SARTHE", - "nomCommune": "FRESNAY SUR SARTHE" + "codePostal": "89560", + "codeCommune": "89125", + "libelleAcheminement": "COURSON LES CARRIERES", + "nomCommune": "COURSON LES CARRIERES" }, { - "codePostal": "88440", - "codeCommune": "88190", - "libelleAcheminement": "FRIZON", - "nomCommune": "FRIZON" + "codePostal": "77400", + "codeCommune": "77243", + "libelleAcheminement": "LAGNY SUR MARNE", + "nomCommune": "LAGNY SUR MARNE" }, { - "codePostal": "89450", - "codeCommune": "89297", - "libelleAcheminement": "PIERRE PERTHUIS", - "nomCommune": "PIERRE PERTHUIS" + "codePostal": "89140", + "codeCommune": "89124", + "libelleAcheminement": "COURLON SUR YONNE", + "nomCommune": "COURLON SUR YONNE" }, { - "codePostal": "80150", - "codeCommune": "80501", - "libelleAcheminement": "MAISON PONTHIEU", - "nomCommune": "MAISON PONTHIEU" + "codePostal": "76530", + "codeCommune": "76131", + "libelleAcheminement": "LA BOUILLE", + "nomCommune": "LA BOUILLE" }, { - "codePostal": "72150", - "codeCommune": "72143", - "libelleAcheminement": "LE GRAND LUCE", - "nomCommune": "LE GRAND LUCE" + "codePostal": "89440", + "codeCommune": "89141", + "libelleAcheminement": "DISSANGIS", + "nomCommune": "DISSANGIS" }, { - "codePostal": "88270", - "codeCommune": "88192", - "libelleAcheminement": "GELVECOURT ET ADOMPT", - "nomCommune": "GELVECOURT ET ADOMPT" + "codePostal": "77320", + "codeCommune": "77247", + "libelleAcheminement": "LESCHEROLLES", + "nomCommune": "LESCHEROLLES" }, { - "codePostal": "89740", - "codeCommune": "89299", - "libelleAcheminement": "PIMELLES", - "nomCommune": "PIMELLES" + "codePostal": "89100", + "codeCommune": "89127", + "libelleAcheminement": "COURTOIS SUR YONNE", + "nomCommune": "COURTOIS SUR YONNE" }, { - "codePostal": "80700", - "codeCommune": "80508", - "libelleAcheminement": "MARCHE ALLOUARDE", - "nomCommune": "MARCHE ALLOUARDE" + "codePostal": "76760", + "codeCommune": "76132", + "libelleAcheminement": "BOURDAINVILLE", + "nomCommune": "BOURDAINVILLE" }, { - "codePostal": "72320", - "codeCommune": "72144", - "libelleAcheminement": "GREEZ SUR ROC", - "nomCommune": "GREEZ SUR ROC" + "codePostal": "89290", + "codeCommune": "89155", + "libelleAcheminement": "ESCOLIVES STE CAMILLE", + "nomCommune": "ESCOLIVES STE CAMILLE" }, { - "codePostal": "88520", - "codeCommune": "88193", - "libelleAcheminement": "GEMAINGOUTTE", - "nomCommune": "GEMAINGOUTTE" + "codePostal": "77450", + "codeCommune": "77248", + "libelleAcheminement": "LESCHES", + "nomCommune": "LESCHES" }, { - "codePostal": "89140", - "codeCommune": "89309", - "libelleAcheminement": "PONT SUR YONNE", - "nomCommune": "PONT SUR YONNE" + "codePostal": "89460", + "codeCommune": "89130", + "libelleAcheminement": "DEUX RIVIERES", + "nomCommune": "DEUX RIVIERES" }, { - "codePostal": "80560", - "codeCommune": "80514", - "libelleAcheminement": "MARIEUX", - "nomCommune": "MARIEUX" + "codePostal": "76740", + "codeCommune": "76134", + "libelleAcheminement": "BOURVILLE", + "nomCommune": "BOURVILLE" }, { - "codePostal": "72230", - "codeCommune": "72146", - "libelleAcheminement": "GUECELARD", - "nomCommune": "GUECELARD" + "codePostal": "89200", + "codeCommune": "89159", + "libelleAcheminement": "ETAULE", + "nomCommune": "ETAULE" }, { - "codePostal": "88390", - "codeCommune": "88201", - "libelleAcheminement": "GIRANCOURT", - "nomCommune": "GIRANCOURT" + "codePostal": "77320", + "codeCommune": "77250", + "libelleAcheminement": "LEUDON EN BRIE", + "nomCommune": "LEUDON EN BRIE" }, { - "codePostal": "89240", - "codeCommune": "89311", - "libelleAcheminement": "POURRAIN", - "nomCommune": "POURRAIN" + "codePostal": "89460", + "codeCommune": "89130", + "libelleAcheminement": "DEUX RIVIERES", + "nomCommune": "DEUX RIVIERES" }, { - "codePostal": "80700", - "codeCommune": "80517", - "libelleAcheminement": "MARQUIVILLERS", - "nomCommune": "MARQUIVILLERS" + "codePostal": "76850", + "codeCommune": "76138", + "libelleAcheminement": "BRACQUETUIT", + "nomCommune": "BRACQUETUIT" }, { - "codePostal": "72300", - "codeCommune": "72151", - "libelleAcheminement": "JUIGNE SUR SARTHE", - "nomCommune": "JUIGNE SUR SARTHE" + "codePostal": "89510", + "codeCommune": "89160", + "libelleAcheminement": "ETIGNY", + "nomCommune": "ETIGNY" }, { - "codePostal": "88240", - "codeCommune": "88214", - "libelleAcheminement": "GRANDRUPT DE BAINS", - "nomCommune": "GRANDRUPT DE BAINS" + "codePostal": "77220", + "codeCommune": "77254", + "libelleAcheminement": "LIVERDY EN BRIE", + "nomCommune": "LIVERDY EN BRIE" }, { - "codePostal": "89630", - "codeCommune": "89318", - "libelleAcheminement": "QUARRE LES TOMBES", - "nomCommune": "QUARRE LES TOMBES" + "codePostal": "89390", + "codeCommune": "89132", + "libelleAcheminement": "CRY", + "nomCommune": "CRY" }, { - "codePostal": "80140", - "codeCommune": "80518", - "libelleAcheminement": "MARTAINNEVILLE", - "nomCommune": "MARTAINNEVILLE" + "codePostal": "76740", + "codeCommune": "76140", + "libelleAcheminement": "BRAMETOT", + "nomCommune": "BRAMETOT" }, { - "codePostal": "72170", - "codeCommune": "72152", - "libelleAcheminement": "JUILLE", - "nomCommune": "JUILLE" + "codePostal": "89140", + "codeCommune": "89162", + "libelleAcheminement": "EVRY", + "nomCommune": "EVRY" }, { - "codePostal": "88210", - "codeCommune": "88215", - "libelleAcheminement": "GRANDRUPT", - "nomCommune": "GRANDRUPT" + "codePostal": "77710", + "codeCommune": "77261", + "libelleAcheminement": "LORREZ LE BOCAGE PREAUX", + "nomCommune": "LORREZ LE BOCAGE PREAUX" }, { - "codePostal": "89290", - "codeCommune": "89319", - "libelleAcheminement": "QUENNE", - "nomCommune": "QUENNE" + "codePostal": "89150", + "codeCommune": "89143", + "libelleAcheminement": "DOLLOT", + "nomCommune": "DOLLOT" }, { - "codePostal": "80600", - "codeCommune": "80544", - "libelleAcheminement": "MEZEROLLES", - "nomCommune": "MEZEROLLES" + "codePostal": "76110", + "codeCommune": "76143", + "libelleAcheminement": "BRETTEVILLE DU GRAND CAUX", + "nomCommune": "BRETTEVILLE DU GRAND CAUX" }, { - "codePostal": "72240", - "codeCommune": "72157", - "libelleAcheminement": "LAVARDIN", - "nomCommune": "LAVARDIN" + "codePostal": "89110", + "codeCommune": "89163", + "libelleAcheminement": "LA FERTE LOUPIERE", + "nomCommune": "LA FERTE LOUPIERE" }, { - "codePostal": "88630", - "codeCommune": "88219", - "libelleAcheminement": "GREUX", - "nomCommune": "GREUX" + "codePostal": "77560", + "codeCommune": "77262", + "libelleAcheminement": "LOUAN VILLEGRUIS FONTAINE", + "nomCommune": "LOUAN VILLEGRUIS FONTAINE" }, { - "codePostal": "89340", - "codeCommune": "89332", - "libelleAcheminement": "ST AGNAN", - "nomCommune": "ST AGNAN" + "codePostal": "89130", + "codeCommune": "89147", + "libelleAcheminement": "DRACY", + "nomCommune": "DRACY" }, { - "codePostal": "80132", - "codeCommune": "80546", - "libelleAcheminement": "MIANNAY", - "nomCommune": "MIANNAY" + "codePostal": "76750", + "codeCommune": "76146", + "libelleAcheminement": "BUCHY", + "nomCommune": "BUCHY" }, { - "codePostal": "72270", - "codeCommune": "72163", - "libelleAcheminement": "LIGRON", - "nomCommune": "LIGRON" + "codePostal": "89800", + "codeCommune": "89168", + "libelleAcheminement": "FLEYS", + "nomCommune": "FLEYS" }, { - "codePostal": "88220", - "codeCommune": "88225", - "libelleAcheminement": "HADOL", - "nomCommune": "HADOL" + "codePostal": "77540", + "codeCommune": "77264", + "libelleAcheminement": "LUMIGNY NESLES ORMEAUX", + "nomCommune": "LUMIGNY NESLES ORMEAUX" }, { - "codePostal": "89630", - "codeCommune": "89336", - "libelleAcheminement": "ST BRANCHER", - "nomCommune": "ST BRANCHER" + "codePostal": "89480", + "codeCommune": "89158", + "libelleAcheminement": "ETAIS LA SAUVIN", + "nomCommune": "ETAIS LA SAUVIN" }, { - "codePostal": "80200", - "codeCommune": "80555", - "libelleAcheminement": "MONCHY LAGACHE", - "nomCommune": "MONCHY LAGACHE" + "codePostal": "76750", + "codeCommune": "76146", + "libelleAcheminement": "BUCHY", + "nomCommune": "BUCHY" }, - { - "codePostal": "72390", - "codeCommune": "72172", - "libelleAcheminement": "LE LUART", - "nomCommune": "LE LUART" + { + "codePostal": "89360", + "codeCommune": "89169", + "libelleAcheminement": "FLOGNY LA CHAPELLE", + "nomCommune": "FLOGNY LA CHAPELLE" }, { - "codePostal": "88270", - "codeCommune": "88226", - "libelleAcheminement": "HAGECOURT", - "nomCommune": "HAGECOURT" + "codePostal": "77540", + "codeCommune": "77264", + "libelleAcheminement": "LUMIGNY NESLES ORMEAUX", + "nomCommune": "LUMIGNY NESLES ORMEAUX" }, { - "codePostal": "89170", - "codeCommune": "89344", - "libelleAcheminement": "ST FARGEAU", - "nomCommune": "ST FARGEAU" + "codePostal": "89450", + "codeCommune": "89170", + "libelleAcheminement": "FOISSY LES VEZELAY", + "nomCommune": "FOISSY LES VEZELAY" }, { - "codePostal": "80210", - "codeCommune": "80556", - "libelleAcheminement": "MONS BOUBERT", - "nomCommune": "MONS BOUBERT" + "codePostal": "76270", + "codeCommune": "76147", + "libelleAcheminement": "BULLY", + "nomCommune": "BULLY" }, { - "codePostal": "72800", - "codeCommune": "72176", - "libelleAcheminement": "LE LUDE", - "nomCommune": "LE LUDE" + "codePostal": "89800", + "codeCommune": "89175", + "libelleAcheminement": "FONTENAY PRES CHABLIS", + "nomCommune": "FONTENAY PRES CHABLIS" }, { - "codePostal": "88300", - "codeCommune": "88229", - "libelleAcheminement": "HARCHECHAMP", - "nomCommune": "HARCHECHAMP" + "codePostal": "77133", + "codeCommune": "77266", + "libelleAcheminement": "MACHAULT", + "nomCommune": "MACHAULT" }, { - "codePostal": "89000", - "codeCommune": "89346", - "libelleAcheminement": "ST GEORGES SUR BAULCHE", - "nomCommune": "ST GEORGES SUR BAULCHE" + "codePostal": "89130", + "codeCommune": "89173", + "libelleAcheminement": "FONTAINES", + "nomCommune": "FONTAINES" }, { - "codePostal": "80110", - "codeCommune": "80571", - "libelleAcheminement": "MORISEL", - "nomCommune": "MORISEL" + "codePostal": "76460", + "codeCommune": "76151", + "libelleAcheminement": "CAILLEVILLE", + "nomCommune": "CAILLEVILLE" }, { - "codePostal": "72440", - "codeCommune": "72178", - "libelleAcheminement": "MAISONCELLES", - "nomCommune": "MAISONCELLES" + "codePostal": "89660", + "codeCommune": "89177", + "libelleAcheminement": "FONTENAY SOUS FOURONNES", + "nomCommune": "FONTENAY SOUS FOURONNES" }, { - "codePostal": "88700", - "codeCommune": "88243", - "libelleAcheminement": "HOUSSERAS", - "nomCommune": "HOUSSERAS" + "codePostal": "77580", + "codeCommune": "77270", + "libelleAcheminement": "MAISONCELLES EN BRIE", + "nomCommune": "MAISONCELLES EN BRIE" }, { - "codePostal": "89190", - "codeCommune": "89359", - "libelleAcheminement": "ST MAURICE AUX RICHES HOMMES", - "nomCommune": "ST MAURICE AUX RICHES HOMMES" + "codePostal": "89520", + "codeCommune": "89179", + "libelleAcheminement": "FONTENOY", + "nomCommune": "FONTENOY" }, { - "codePostal": "80300", - "codeCommune": "80572", - "libelleAcheminement": "MORLANCOURT", - "nomCommune": "MORLANCOURT" + "codePostal": "76560", + "codeCommune": "76158", + "libelleAcheminement": "CANVILLE LES DEUX EGLISES", + "nomCommune": "CANVILLE LES DEUX EGLISES" }, { - "codePostal": "72600", - "codeCommune": "72180", - "libelleAcheminement": "MAMERS", - "nomCommune": "MAMERS" + "codePostal": "89150", + "codeCommune": "89180", + "libelleAcheminement": "FOUCHERES", + "nomCommune": "FOUCHERES" }, { - "codePostal": "88320", - "codeCommune": "88248", - "libelleAcheminement": "ISCHES", - "nomCommune": "ISCHES" + "codePostal": "77370", + "codeCommune": "77272", + "libelleAcheminement": "MAISON ROUGE", + "nomCommune": "MAISON ROUGE" }, { - "codePostal": "89270", - "codeCommune": "89362", - "libelleAcheminement": "ST MORE", - "nomCommune": "ST MORE" + "codePostal": "89160", + "codeCommune": "89184", + "libelleAcheminement": "FULVY", + "nomCommune": "FULVY" }, { - "codePostal": "80290", - "codeCommune": "80573", - "libelleAcheminement": "MORVILLERS ST SATURNIN", - "nomCommune": "MORVILLERS ST SATURNIN" + "codePostal": "76560", + "codeCommune": "76161", + "libelleAcheminement": "CARVILLE POT DE FER", + "nomCommune": "CARVILLE POT DE FER" }, { - "codePostal": "72510", - "codeCommune": "72182", - "libelleAcheminement": "MANSIGNE", - "nomCommune": "MANSIGNE" + "codePostal": "89310", + "codeCommune": "89183", + "libelleAcheminement": "FRESNES", + "nomCommune": "FRESNES" }, { - "codePostal": "88260", - "codeCommune": "88252", - "libelleAcheminement": "JESONVILLE", - "nomCommune": "JESONVILLE" + "codePostal": "77100", + "codeCommune": "77276", + "libelleAcheminement": "MAREUIL LES MEAUX", + "nomCommune": "MAREUIL LES MEAUX" }, { - "codePostal": "89460", - "codeCommune": "89363", - "libelleAcheminement": "STE PALLAYE", - "nomCommune": "STE PALLAYE" + "codePostal": "89200", + "codeCommune": "89190", + "libelleAcheminement": "GIVRY", + "nomCommune": "GIVRY" }, { - "codePostal": "80290", - "codeCommune": "80573", - "libelleAcheminement": "MORVILLERS ST SATURNIN", - "nomCommune": "MORVILLERS ST SATURNIN" + "codePostal": "76116", + "codeCommune": "76163", + "libelleAcheminement": "CATENAY", + "nomCommune": "CATENAY" }, { - "codePostal": "72200", - "codeCommune": "72185", - "libelleAcheminement": "MAREIL SUR LOIR", - "nomCommune": "MAREIL SUR LOIR" + "codePostal": "89140", + "codeCommune": "89189", + "libelleAcheminement": "GISY LES NOBLES", + "nomCommune": "GISY LES NOBLES" }, { - "codePostal": "88000", - "codeCommune": "88253", - "libelleAcheminement": "JEUXEY", - "nomCommune": "JEUXEY" + "codePostal": "77990", + "codeCommune": "77282", + "libelleAcheminement": "MAUREGARD", + "nomCommune": "MAUREGARD" }, { - "codePostal": "89220", - "codeCommune": "89365", - "libelleAcheminement": "ST PRIVE", - "nomCommune": "ST PRIVE" + "codePostal": "89310", + "codeCommune": "89194", + "libelleAcheminement": "GRIMAULT", + "nomCommune": "GRIMAULT" }, { - "codePostal": "80400", - "codeCommune": "80579", - "libelleAcheminement": "MUILLE VILLETTE", - "nomCommune": "MUILLE VILLETTE" + "codePostal": "76320", + "codeCommune": "76165", + "libelleAcheminement": "CAUDEBEC LES ELBEUF", + "nomCommune": "CAUDEBEC LES ELBEUF" }, { - "codePostal": "72260", - "codeCommune": "72189", - "libelleAcheminement": "MAROLLES LES BRAULTS", - "nomCommune": "MAROLLES LES BRAULTS" + "codePostal": "89110", + "codeCommune": "89196", + "libelleAcheminement": "VALRAVILLON", + "nomCommune": "VALRAVILLON" }, { - "codePostal": "88630", - "codeCommune": "88255", - "libelleAcheminement": "JUBAINVILLE", - "nomCommune": "JUBAINVILLE" + "codePostal": "77990", + "codeCommune": "77291", + "libelleAcheminement": "LE MESNIL AMELOT", + "nomCommune": "LE MESNIL AMELOT" }, { - "codePostal": "89160", - "codeCommune": "89374", - "libelleAcheminement": "SAMBOURG", - "nomCommune": "SAMBOURG" + "codePostal": "89100", + "codeCommune": "89195", + "libelleAcheminement": "GRON", + "nomCommune": "GRON" }, { - "codePostal": "80290", - "codeCommune": "80582", - "libelleAcheminement": "NAMPS MAISNIL", - "nomCommune": "NAMPS MAISNIL" + "codePostal": "76590", + "codeCommune": "76170", + "libelleAcheminement": "LA CHAPELLE DU BOURGAY", + "nomCommune": "LA CHAPELLE DU BOURGAY" }, { - "codePostal": "72360", - "codeCommune": "72191", - "libelleAcheminement": "MAYET", - "nomCommune": "MAYET" + "codePostal": "89113", + "codeCommune": "89196", + "libelleAcheminement": "VALRAVILLON", + "nomCommune": "VALRAVILLON" }, { - "codePostal": "88640", - "codeCommune": "88256", - "libelleAcheminement": "JUSSARUPT", - "nomCommune": "JUSSARUPT" + "codePostal": "77151", + "codeCommune": "77301", + "libelleAcheminement": "MONTCEAUX LES PROVINS", + "nomCommune": "MONTCEAUX LES PROVINS" }, { - "codePostal": "89310", - "codeCommune": "89376", - "libelleAcheminement": "SARRY", - "nomCommune": "SARRY" + "codePostal": "89420", + "codeCommune": "89197", + "libelleAcheminement": "GUILLON TERRE PLAINE", + "nomCommune": "GUILLON TERRE PLAINE" }, { - "codePostal": "80140", - "codeCommune": "80586", - "libelleAcheminement": "NESLE L HOPITAL", - "nomCommune": "NESLE L HOPITAL" + "codePostal": "76740", + "codeCommune": "76172", + "libelleAcheminement": "LA CHAPELLE SUR DUN", + "nomCommune": "LA CHAPELLE SUR DUN" }, { - "codePostal": "72320", - "codeCommune": "72193", - "libelleAcheminement": "MELLERAY", - "nomCommune": "MELLERAY" + "codePostal": "89113", + "codeCommune": "89196", + "libelleAcheminement": "VALRAVILLON", + "nomCommune": "VALRAVILLON" }, { - "codePostal": "88320", - "codeCommune": "88258", - "libelleAcheminement": "LAMARCHE", - "nomCommune": "LAMARCHE" + "codePostal": "77950", + "codeCommune": "77306", + "libelleAcheminement": "MONTEREAU SUR LE JARD", + "nomCommune": "MONTEREAU SUR LE JARD" }, { - "codePostal": "89150", - "codeCommune": "89380", - "libelleAcheminement": "SAVIGNY SUR CLAIRIS", - "nomCommune": "SAVIGNY SUR CLAIRIS" + "codePostal": "89250", + "codeCommune": "89198", + "libelleAcheminement": "GURGY", + "nomCommune": "GURGY" }, { - "codePostal": "80132", - "codeCommune": "80590", - "libelleAcheminement": "NEUILLY L HOPITAL", - "nomCommune": "NEUILLY L HOPITAL" + "codePostal": "76570", + "codeCommune": "76174", + "libelleAcheminement": "CIDEVILLE", + "nomCommune": "CIDEVILLE" }, { - "codePostal": "72170", - "codeCommune": "72194", - "libelleAcheminement": "MEURCE", - "nomCommune": "MEURCE" + "codePostal": "89290", + "codeCommune": "89202", + "libelleAcheminement": "IRANCY", + "nomCommune": "IRANCY" }, { - "codePostal": "88300", - "codeCommune": "88265", - "libelleAcheminement": "LEMMECOURT", - "nomCommune": "LEMMECOURT" + "codePostal": "77520", + "codeCommune": "77311", + "libelleAcheminement": "MONTIGNY LENCOUP", + "nomCommune": "MONTIGNY LENCOUP" }, { - "codePostal": "89160", - "codeCommune": "89386", - "libelleAcheminement": "SENNEVOY LE HAUT", - "nomCommune": "SENNEVOY LE HAUT" + "codePostal": "89310", + "codeCommune": "89207", + "libelleAcheminement": "JOUANCY", + "nomCommune": "JOUANCY" }, { - "codePostal": "80600", - "codeCommune": "80596", - "libelleAcheminement": "NEUVILLETTE", - "nomCommune": "NEUVILLETTE" + "codePostal": "76450", + "codeCommune": "76176", + "libelleAcheminement": "CLASVILLE", + "nomCommune": "CLASVILLE" }, { - "codePostal": "72650", - "codeCommune": "72198", - "libelleAcheminement": "LA MILESSE", - "nomCommune": "LA MILESSE" + "codePostal": "89300", + "codeCommune": "89206", + "libelleAcheminement": "JOIGNY", + "nomCommune": "JOIGNY" }, { - "codePostal": "88260", - "codeCommune": "88267", - "libelleAcheminement": "LERRAIN", - "nomCommune": "LERRAIN" + "codePostal": "77320", + "codeCommune": "77314", + "libelleAcheminement": "MONTOLIVET", + "nomCommune": "MONTOLIVET" }, { - "codePostal": "89100", - "codeCommune": "89387", - "libelleAcheminement": "SENS", - "nomCommune": "SENS" + "codePostal": "89150", + "codeCommune": "89209", + "libelleAcheminement": "JOUY", + "nomCommune": "JOUY" }, { - "codePostal": "80210", - "codeCommune": "80603", - "libelleAcheminement": "OCHANCOURT", - "nomCommune": "OCHANCOURT" + "codePostal": "76550", + "codeCommune": "76184", + "libelleAcheminement": "COLMESNIL MANNEVILLE", + "nomCommune": "COLMESNIL MANNEVILLE" }, { - "codePostal": "72170", - "codeCommune": "72199", - "libelleAcheminement": "MOITRON SUR SARTHE", - "nomCommune": "MOITRON SUR SARTHE" + "codePostal": "89290", + "codeCommune": "89212", + "libelleAcheminement": "JUSSY", + "nomCommune": "JUSSY" }, { - "codePostal": "88400", - "codeCommune": "88269", - "libelleAcheminement": "LIEZEY", - "nomCommune": "LIEZEY" + "codePostal": "77250", + "codeCommune": "77316", + "libelleAcheminement": "MORET LOING ET ORVANNE", + "nomCommune": "MORET LOING ET ORVANNE" }, { - "codePostal": "89190", - "codeCommune": "89395", - "libelleAcheminement": "LES SIEGES", - "nomCommune": "LES SIEGES" + "codePostal": "89560", + "codeCommune": "89215", + "libelleAcheminement": "LAIN", + "nomCommune": "LAIN" }, { - "codePostal": "80540", - "codeCommune": "80607", - "libelleAcheminement": "OISSY", - "nomCommune": "OISSY" + "codePostal": "76390", + "codeCommune": "76186", + "libelleAcheminement": "CONTEVILLE", + "nomCommune": "CONTEVILLE" }, { - "codePostal": "72230", - "codeCommune": "72200", - "libelleAcheminement": "MONCE EN BELIN", - "nomCommune": "MONCE EN BELIN" + "codePostal": "89570", + "codeCommune": "89219", + "libelleAcheminement": "LASSON", + "nomCommune": "LASSON" }, { - "codePostal": "88450", - "codeCommune": "88280", - "libelleAcheminement": "MADEGNEY", - "nomCommune": "MADEGNEY" + "codePostal": "77720", + "codeCommune": "77317", + "libelleAcheminement": "MORMANT", + "nomCommune": "MORMANT" }, { - "codePostal": "89100", - "codeCommune": "89399", - "libelleAcheminement": "SOUCY", - "nomCommune": "SOUCY" + "codePostal": "89170", + "codeCommune": "89220", + "libelleAcheminement": "LAVAU", + "nomCommune": "LAVAU" }, { - "codePostal": "80190", - "codeCommune": "80616", - "libelleAcheminement": "PARGNY", - "nomCommune": "PARGNY" + "codePostal": "76850", + "codeCommune": "76193", + "libelleAcheminement": "LA CRIQUE", + "nomCommune": "LA CRIQUE" }, { - "codePostal": "72120", - "codeCommune": "72204", - "libelleAcheminement": "MONTAILLE", - "nomCommune": "MONTAILLE" + "codePostal": "89300", + "codeCommune": "89230", + "libelleAcheminement": "LOOZE", + "nomCommune": "LOOZE" }, { - "codePostal": "88270", - "codeCommune": "88281", - "libelleAcheminement": "MADONNE ET LAMEREY", - "nomCommune": "MADONNE ET LAMEREY" + "codePostal": "77120", + "codeCommune": "77320", + "libelleAcheminement": "MOUROUX", + "nomCommune": "MOUROUX" }, { - "codePostal": "89560", - "codeCommune": "89405", - "libelleAcheminement": "LES HAUTS DE FORTERRE", - "nomCommune": "LES HAUTS DE FORTERRE" + "codePostal": "89130", + "codeCommune": "89221", + "libelleAcheminement": "LEUGNY", + "nomCommune": "LEUGNY" }, { - "codePostal": "80700", - "codeCommune": "80617", - "libelleAcheminement": "PARVILLERS LE QUESNOY", - "nomCommune": "PARVILLERS LE QUESNOY" + "codePostal": "76280", + "codeCommune": "76196", + "libelleAcheminement": "CRIQUETOT L ESNEVAL", + "nomCommune": "CRIQUETOT L ESNEVAL" }, { - "codePostal": "72130", - "codeCommune": "72212", - "libelleAcheminement": "MOULINS LE CARBONNEL", - "nomCommune": "MOULINS LE CARBONNEL" + "codePostal": "89270", + "codeCommune": "89233", + "libelleAcheminement": "LUCY SUR CURE", + "nomCommune": "LUCY SUR CURE" }, { - "codePostal": "88270", - "codeCommune": "88288", - "libelleAcheminement": "MARONCOURT", - "nomCommune": "MARONCOURT" + "codePostal": "77230", + "codeCommune": "77323", + "libelleAcheminement": "MOUSSY LE VIEUX", + "nomCommune": "MOUSSY LE VIEUX" }, { - "codePostal": "89420", - "codeCommune": "89406", - "libelleAcheminement": "TALCY", - "nomCommune": "TALCY" + "codePostal": "89160", + "codeCommune": "89223", + "libelleAcheminement": "LEZINNES", + "nomCommune": "LEZINNES" }, { - "codePostal": "80230", - "codeCommune": "80618", - "libelleAcheminement": "PENDE", - "nomCommune": "PENDE" + "codePostal": "76760", + "codeCommune": "76198", + "libelleAcheminement": "CRIQUETOT SUR OUVILLE", + "nomCommune": "CRIQUETOT SUR OUVILLE" }, { - "codePostal": "72240", - "codeCommune": "72216", - "libelleAcheminement": "NEUVILLALAIS", - "nomCommune": "NEUVILLALAIS" + "codePostal": "89440", + "codeCommune": "89246", + "libelleAcheminement": "MASSANGIS", + "nomCommune": "MASSANGIS" }, { - "codePostal": "88500", - "codeCommune": "88292", - "libelleAcheminement": "MATTAINCOURT", - "nomCommune": "MATTAINCOURT" + "codePostal": "77100", + "codeCommune": "77330", + "libelleAcheminement": "NANTEUIL LES MEAUX", + "nomCommune": "NANTEUIL LES MEAUX" }, { - "codePostal": "89430", - "codeCommune": "89407", - "libelleAcheminement": "TANLAY", - "nomCommune": "TANLAY" + "codePostal": "89420", + "codeCommune": "89244", + "libelleAcheminement": "MARMEAUX", + "nomCommune": "MARMEAUX" }, { - "codePostal": "80670", - "codeCommune": "80619", - "libelleAcheminement": "PERNOIS", - "nomCommune": "PERNOIS" + "codePostal": "76260", + "codeCommune": "76207", + "libelleAcheminement": "CUVERVILLE SUR YERES", + "nomCommune": "CUVERVILLE SUR YERES" }, { - "codePostal": "72240", - "codeCommune": "72219", - "libelleAcheminement": "BERNAY NEUVY EN CHAMPAGNE", - "nomCommune": "BERNAY NEUVY EN CHAMPAGNE" + "codePostal": "89130", + "codeCommune": "89254", + "libelleAcheminement": "MEZILLES", + "nomCommune": "MEZILLES" }, { - "codePostal": "88140", - "codeCommune": "88296", - "libelleAcheminement": "MEDONVILLE", - "nomCommune": "MEDONVILLE" + "codePostal": "77730", + "codeCommune": "77331", + "libelleAcheminement": "NANTEUIL SUR MARNE", + "nomCommune": "NANTEUIL SUR MARNE" }, { - "codePostal": "89350", - "codeCommune": "89408", - "libelleAcheminement": "TANNERRE EN PUISAYE", - "nomCommune": "TANNERRE EN PUISAYE" + "codePostal": "89500", + "codeCommune": "89245", + "libelleAcheminement": "MARSANGY", + "nomCommune": "MARSANGY" }, { - "codePostal": "80500", - "codeCommune": "80623", - "libelleAcheminement": "PIENNES ONVILLERS", - "nomCommune": "PIENNES ONVILLERS" + "codePostal": "76220", + "codeCommune": "76209", + "libelleAcheminement": "DAMPIERRE EN BRAY", + "nomCommune": "DAMPIERRE EN BRAY" }, { - "codePostal": "72500", - "codeCommune": "72221", - "libelleAcheminement": "NOGENT SUR LOIR", - "nomCommune": "NOGENT SUR LOIR" + "codePostal": "89400", + "codeCommune": "89257", + "libelleAcheminement": "MIGENNES", + "nomCommune": "MIGENNES" }, { - "codePostal": "88630", - "codeCommune": "88303", - "libelleAcheminement": "MIDREVAUX", - "nomCommune": "MIDREVAUX" + "codePostal": "77124", + "codeCommune": "77335", + "libelleAcheminement": "CHAUCONIN NEUFMONTIERS", + "nomCommune": "CHAUCONIN NEUFMONTIERS" }, { - "codePostal": "89420", - "codeCommune": "89412", - "libelleAcheminement": "THIZY", - "nomCommune": "THIZY" + "codePostal": "89440", + "codeCommune": "89246", + "libelleAcheminement": "MASSANGIS", + "nomCommune": "MASSANGIS" }, { - "codePostal": "80500", - "codeCommune": "80623", - "libelleAcheminement": "PIENNES ONVILLERS", - "nomCommune": "PIENNES ONVILLERS" + "codePostal": "76510", + "codeCommune": "76210", + "libelleAcheminement": "DAMPIERRE ST NICOLAS", + "nomCommune": "DAMPIERRE ST NICOLAS" }, { - "codePostal": "72260", - "codeCommune": "72222", - "libelleAcheminement": "NOUANS", - "nomCommune": "NOUANS" + "codePostal": "89310", + "codeCommune": "89259", + "libelleAcheminement": "MOLAY", + "nomCommune": "MOLAY" }, { - "codePostal": "88630", - "codeCommune": "88305", - "libelleAcheminement": "MONCEL SUR VAIR", - "nomCommune": "MONCEL SUR VAIR" + "codePostal": "77123", + "codeCommune": "77339", + "libelleAcheminement": "NOISY SUR ECOLE", + "nomCommune": "NOISY SUR ECOLE" }, { - "codePostal": "89200", - "codeCommune": "89415", - "libelleAcheminement": "THORY", - "nomCommune": "THORY" + "codePostal": "89470", + "codeCommune": "89263", + "libelleAcheminement": "MONETEAU", + "nomCommune": "MONETEAU" }, { - "codePostal": "80500", - "codeCommune": "80625", - "libelleAcheminement": "TROIS RIVIERES", - "nomCommune": "TROIS RIVIERES" + "codePostal": "76630", + "codeCommune": "76220", + "libelleAcheminement": "DOUVREND", + "nomCommune": "DOUVREND" }, { - "codePostal": "72350", - "codeCommune": "72239", - "libelleAcheminement": "POILLE SUR VEGRE", - "nomCommune": "POILLE SUR VEGRE" + "codePostal": "89100", + "codeCommune": "89274", + "libelleAcheminement": "NAILLY", + "nomCommune": "NAILLY" }, { - "codePostal": "88320", - "codeCommune": "88307", - "libelleAcheminement": "MONT LES LAMARCHE", - "nomCommune": "MONT LES LAMARCHE" + "codePostal": "77134", + "codeCommune": "77347", + "libelleAcheminement": "LES ORMES SUR VOULZIE", + "nomCommune": "LES ORMES SUR VOULZIE" }, { - "codePostal": "89700", - "codeCommune": "89417", - "libelleAcheminement": "TISSEY", - "nomCommune": "TISSEY" + "codePostal": "89470", + "codeCommune": "89263", + "libelleAcheminement": "MONETEAU", + "nomCommune": "MONETEAU" }, { - "codePostal": "80540", - "codeCommune": "80626", - "libelleAcheminement": "PISSY", - "nomCommune": "PISSY" + "codePostal": "76110", + "codeCommune": "76224", + "libelleAcheminement": "ECRAINVILLE", + "nomCommune": "ECRAINVILLE" }, { - "codePostal": "72450", - "codeCommune": "72241", - "libelleAcheminement": "MONTFORT LE GESNOIS", - "nomCommune": "MONTFORT LE GESNOIS" + "codePostal": "89310", + "codeCommune": "89290", + "libelleAcheminement": "PASILLY", + "nomCommune": "PASILLY" }, { - "codePostal": "88300", - "codeCommune": "88308", - "libelleAcheminement": "MONT LES NEUFCHATEAU", - "nomCommune": "MONT LES NEUFCHATEAU" + "codePostal": "77167", + "codeCommune": "77348", + "libelleAcheminement": "ORMESSON", + "nomCommune": "ORMESSON" }, { "codePostal": "89150", - "codeCommune": "89428", - "libelleAcheminement": "VALLERY", - "nomCommune": "VALLERY" + "codeCommune": "89264", + "libelleAcheminement": "MONTACHER VILLEGARDIN", + "nomCommune": "MONTACHER VILLEGARDIN" }, { - "codePostal": "80480", - "codeCommune": "80632", - "libelleAcheminement": "PONT DE METZ", - "nomCommune": "PONT DE METZ" + "codePostal": "76540", + "codeCommune": "76226", + "libelleAcheminement": "ECRETTEVILLE SUR MER", + "nomCommune": "ECRETTEVILLE SUR MER" }, { - "codePostal": "72110", - "codeCommune": "72246", - "libelleAcheminement": "PREVELLES", - "nomCommune": "PREVELLES" + "codePostal": "89140", + "codeCommune": "89302", + "libelleAcheminement": "PLESSIS ST JEAN", + "nomCommune": "PLESSIS ST JEAN" }, { - "codePostal": "88410", - "codeCommune": "88310", - "libelleAcheminement": "MONTHUREUX SUR SAONE", - "nomCommune": "MONTHUREUX SUR SAONE" + "codePostal": "77480", + "codeCommune": "77356", + "libelleAcheminement": "PASSY SUR SEINE", + "nomCommune": "PASSY SUR SEINE" }, { - "codePostal": "89144", - "codeCommune": "89430", - "libelleAcheminement": "VARENNES", - "nomCommune": "VARENNES" + "codePostal": "89230", + "codeCommune": "89265", + "libelleAcheminement": "MONTIGNY LA RESLE", + "nomCommune": "MONTIGNY LA RESLE" }, { - "codePostal": "80115", - "codeCommune": "80634", - "libelleAcheminement": "PONT NOYELLES", - "nomCommune": "PONT NOYELLES" + "codePostal": "76970", + "codeCommune": "76228", + "libelleAcheminement": "ECTOT LES BAONS", + "nomCommune": "ECTOT LES BAONS" }, { - "codePostal": "72510", - "codeCommune": "72252", - "libelleAcheminement": "REQUEIL", - "nomCommune": "REQUEIL" + "codePostal": "89310", + "codeCommune": "89303", + "libelleAcheminement": "POILLY SUR SEREIN", + "nomCommune": "POILLY SUR SEREIN" }, { - "codePostal": "88170", - "codeCommune": "88312", - "libelleAcheminement": "MORELMAISON", - "nomCommune": "MORELMAISON" + "codePostal": "77124", + "codeCommune": "77358", + "libelleAcheminement": "PENCHARD", + "nomCommune": "PENCHARD" }, { - "codePostal": "89330", - "codeCommune": "89440", - "libelleAcheminement": "VERLIN", - "nomCommune": "VERLIN" + "codePostal": "89420", + "codeCommune": "89267", + "libelleAcheminement": "MONTREAL", + "nomCommune": "MONTREAL" }, { - "codePostal": "80580", - "codeCommune": "80635", - "libelleAcheminement": "PONT REMY", - "nomCommune": "PONT REMY" + "codePostal": "76220", + "codeCommune": "76229", + "libelleAcheminement": "ELBEUF EN BRAY", + "nomCommune": "ELBEUF EN BRAY" }, { - "codePostal": "72140", - "codeCommune": "72255", - "libelleAcheminement": "ROUESSE VASSE", - "nomCommune": "ROUESSE VASSE" + "codePostal": "89260", + "codeCommune": "89310", + "libelleAcheminement": "LA POSTOLLE", + "nomCommune": "LA POSTOLLE" }, { - "codePostal": "88700", - "codeCommune": "88318", - "libelleAcheminement": "MOYEMONT", - "nomCommune": "MOYEMONT" + "codePostal": "77181", + "codeCommune": "77363", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "89270", - "codeCommune": "89441", - "libelleAcheminement": "VERMENTON", - "nomCommune": "VERMENTON" + "codePostal": "89390", + "codeCommune": "89280", + "libelleAcheminement": "NUITS", + "nomCommune": "NUITS" }, { - "codePostal": "80132", - "codeCommune": "80654", - "libelleAcheminement": "QUESNOY LE MONTANT", - "nomCommune": "QUESNOY LE MONTANT" + "codePostal": "76400", + "codeCommune": "76240", + "libelleAcheminement": "EPREVILLE", + "nomCommune": "EPREVILLE" }, { - "codePostal": "72110", - "codeCommune": "72259", - "libelleAcheminement": "ROUPERROUX LE COQUET", - "nomCommune": "ROUPERROUX LE COQUET" + "codePostal": "89440", + "codeCommune": "89312", + "libelleAcheminement": "PRECY LE SEC", + "nomCommune": "PRECY LE SEC" }, { - "codePostal": "88420", - "codeCommune": "88319", - "libelleAcheminement": "MOYENMOUTIER", - "nomCommune": "MOYENMOUTIER" + "codePostal": "77440", + "codeCommune": "77367", + "libelleAcheminement": "LE PLESSIS PLACY", + "nomCommune": "LE PLESSIS PLACY" }, { - "codePostal": "89300", - "codeCommune": "89452", - "libelleAcheminement": "VILLECIEN", - "nomCommune": "VILLECIEN" + "codePostal": "89160", + "codeCommune": "89284", + "libelleAcheminement": "PACY SUR ARMANCON", + "nomCommune": "PACY SUR ARMANCON" }, { - "codePostal": "80250", - "codeCommune": "80657", - "libelleAcheminement": "QUIRY LE SEC", - "nomCommune": "QUIRY LE SEC" + "codePostal": "76220", + "codeCommune": "76242", + "libelleAcheminement": "ERNEMONT LA VILLETTE", + "nomCommune": "ERNEMONT LA VILLETTE" }, { - "codePostal": "72310", - "codeCommune": "72262", - "libelleAcheminement": "LOIR EN VALLEE", - "nomCommune": "LOIR EN VALLEE" + "codePostal": "89800", + "codeCommune": "89341", + "libelleAcheminement": "ST CYR LES COLONS", + "nomCommune": "ST CYR LES COLONS" }, { - "codePostal": "88100", - "codeCommune": "88320", - "libelleAcheminement": "NAYEMONT LES FOSSES", - "nomCommune": "NAYEMONT LES FOSSES" + "codePostal": "77340", + "codeCommune": "77373", + "libelleAcheminement": "PONTAULT COMBAULT", + "nomCommune": "PONTAULT COMBAULT" }, { - "codePostal": "89140", - "codeCommune": "89458", - "libelleAcheminement": "VILLENAVOTTE", - "nomCommune": "VILLENAVOTTE" + "codePostal": "89300", + "codeCommune": "89289", + "libelleAcheminement": "PAROY SUR THOLON", + "nomCommune": "PAROY SUR THOLON" }, { - "codePostal": "80500", - "codeCommune": "80667", - "libelleAcheminement": "REMAUGIES", - "nomCommune": "REMAUGIES" + "codePostal": "76270", + "codeCommune": "76244", + "libelleAcheminement": "ESCLAVELLES", + "nomCommune": "ESCLAVELLES" }, { - "codePostal": "72340", - "codeCommune": "72262", - "libelleAcheminement": "LOIR EN VALLEE", - "nomCommune": "LOIR EN VALLEE" + "codePostal": "89330", + "codeCommune": "89353", + "libelleAcheminement": "ST MARTIN D ORDON", + "nomCommune": "ST MARTIN D ORDON" }, { - "codePostal": "88600", - "codeCommune": "88322", - "libelleAcheminement": "LA NEUVEVILLE DEVANT LEPANGES", - "nomCommune": "LA NEUVEVILLE DEVANT LEPANGES" + "codePostal": "77139", + "codeCommune": "77380", + "libelleAcheminement": "PUISIEUX", + "nomCommune": "PUISIEUX" }, { - "codePostal": "89190", - "codeCommune": "89461", - "libelleAcheminement": "VILLENEUVE L ARCHEVEQUE", - "nomCommune": "VILLENEUVE L ARCHEVEQUE" + "codePostal": "89000", + "codeCommune": "89295", + "libelleAcheminement": "PERRIGNY", + "nomCommune": "PERRIGNY" }, { - "codePostal": "80250", - "codeCommune": "80668", - "libelleAcheminement": "REMIENCOURT", - "nomCommune": "REMIENCOURT" + "codePostal": "76190", + "codeCommune": "76253", + "libelleAcheminement": "ETOUTTEVILLE", + "nomCommune": "ETOUTTEVILLE" }, { - "codePostal": "72300", - "codeCommune": "72264", - "libelleAcheminement": "SABLE SUR SARTHE", - "nomCommune": "SABLE SUR SARTHE" + "codePostal": "89190", + "codeCommune": "89359", + "libelleAcheminement": "ST MAURICE AUX RICHES HOMMES", + "nomCommune": "ST MAURICE AUX RICHES HOMMES" }, { - "codePostal": "88260", - "codeCommune": "88330", - "libelleAcheminement": "NONVILLE", - "nomCommune": "NONVILLE" + "codePostal": "77230", + "codeCommune": "77392", + "libelleAcheminement": "ROUVRES", + "nomCommune": "ROUVRES" }, { - "codePostal": "89260", - "codeCommune": "89469", - "libelleAcheminement": "PERCENEIGE", - "nomCommune": "PERCENEIGE" + "codePostal": "89330", + "codeCommune": "89298", + "libelleAcheminement": "PIFFONDS", + "nomCommune": "PIFFONDS" }, { - "codePostal": "80240", - "codeCommune": "80677", - "libelleAcheminement": "ROISEL", - "nomCommune": "ROISEL" + "codePostal": "76640", + "codeCommune": "76258", + "libelleAcheminement": "TERRES DE CAUX", + "nomCommune": "TERRES DE CAUX" }, { - "codePostal": "72130", - "codeCommune": "72294", - "libelleAcheminement": "ST LEONARD DES BOIS", - "nomCommune": "ST LEONARD DES BOIS" + "codePostal": "89110", + "codeCommune": "89361", + "libelleAcheminement": "ST MAURICE THIZOUAILLE", + "nomCommune": "ST MAURICE THIZOUAILLE" }, { - "codePostal": "88700", - "codeCommune": "88333", - "libelleAcheminement": "NOSSONCOURT", - "nomCommune": "NOSSONCOURT" + "codePostal": "77950", + "codeCommune": "77394", + "libelleAcheminement": "RUBELLES", + "nomCommune": "RUBELLES" }, { - "codePostal": "89160", - "codeCommune": "89470", - "libelleAcheminement": "VILLIERS LES HAUTS", - "nomCommune": "VILLIERS LES HAUTS" + "codePostal": "89740", + "codeCommune": "89299", + "libelleAcheminement": "PIMELLES", + "nomCommune": "PIMELLES" }, { - "codePostal": "80500", - "codeCommune": "80678", - "libelleAcheminement": "ROLLOT", - "nomCommune": "ROLLOT" + "codePostal": "76640", + "codeCommune": "76258", + "libelleAcheminement": "TERRES DE CAUX", + "nomCommune": "TERRES DE CAUX" }, { - "codePostal": "72400", - "codeCommune": "72302", - "libelleAcheminement": "ST MARTIN DES MONTS", - "nomCommune": "ST MARTIN DES MONTS" + "codePostal": "89220", + "codeCommune": "89365", + "libelleAcheminement": "ST PRIVE", + "nomCommune": "ST PRIVE" }, { - "codePostal": "88500", - "codeCommune": "88334", - "libelleAcheminement": "OELLEVILLE", - "nomCommune": "OELLEVILLE" + "codePostal": "77560", + "codeCommune": "77396", + "libelleAcheminement": "RUPEREUX", + "nomCommune": "RUPEREUX" }, { - "codePostal": "89160", - "codeCommune": "89481", - "libelleAcheminement": "VIREAUX", - "nomCommune": "VIREAUX" + "codePostal": "89230", + "codeCommune": "89307", + "libelleAcheminement": "PONTIGNY", + "nomCommune": "PONTIGNY" }, { - "codePostal": "80190", - "codeCommune": "80683", - "libelleAcheminement": "ROUY LE GRAND", - "nomCommune": "ROUY LE GRAND" + "codePostal": "76640", + "codeCommune": "76258", + "libelleAcheminement": "TERRES DE CAUX", + "nomCommune": "TERRES DE CAUX" }, { - "codePostal": "72350", - "codeCommune": "72307", - "libelleAcheminement": "ST OUEN EN CHAMPAGNE", - "nomCommune": "ST OUEN EN CHAMPAGNE" + "codePostal": "89520", + "codeCommune": "89368", + "libelleAcheminement": "ST SAUVEUR EN PUISAYE", + "nomCommune": "ST SAUVEUR EN PUISAYE" }, { - "codePostal": "88100", - "codeCommune": "88341", - "libelleAcheminement": "PAIR ET GRANDRUPT", - "nomCommune": "PAIR ET GRANDRUPT" + "codePostal": "77515", + "codeCommune": "77400", + "libelleAcheminement": "ST AUGUSTIN", + "nomCommune": "ST AUGUSTIN" }, { - "codePostal": "90400", - "codeCommune": "90001", - "libelleAcheminement": "ANDELNANS", - "nomCommune": "ANDELNANS" + "codePostal": "89190", + "codeCommune": "89308", + "libelleAcheminement": "PONT SUR VANNE", + "nomCommune": "PONT SUR VANNE" }, { - "codePostal": "80190", - "codeCommune": "80684", - "libelleAcheminement": "ROUY LE PETIT", - "nomCommune": "ROUY LE PETIT" + "codePostal": "76270", + "codeCommune": "76265", + "libelleAcheminement": "FLAMETS FRETILS", + "nomCommune": "FLAMETS FRETILS" }, { - "codePostal": "72600", - "codeCommune": "72313", - "libelleAcheminement": "ST PIERRE DES ORMES", - "nomCommune": "ST PIERRE DES ORMES" + "codePostal": "89150", + "codeCommune": "89370", + "libelleAcheminement": "ST VALERIEN", + "nomCommune": "ST VALERIEN" }, { - "codePostal": "88210", - "codeCommune": "88346", - "libelleAcheminement": "LA PETITE RAON", - "nomCommune": "LA PETITE RAON" + "codePostal": "77950", + "codeCommune": "77410", + "libelleAcheminement": "ST GERMAIN LAXIS", + "nomCommune": "ST GERMAIN LAXIS" }, { - "codePostal": "90200", - "codeCommune": "90005", - "libelleAcheminement": "AUXELLES BAS", - "nomCommune": "AUXELLES BAS" + "codePostal": "89240", + "codeCommune": "89311", + "libelleAcheminement": "POURRAIN", + "nomCommune": "POURRAIN" }, { - "codePostal": "80120", - "codeCommune": "80688", - "libelleAcheminement": "RUE", - "nomCommune": "RUE" + "codePostal": "76260", + "codeCommune": "76266", + "libelleAcheminement": "FLOCQUES", + "nomCommune": "FLOCQUES" }, { - "codePostal": "72380", - "codeCommune": "72319", - "libelleAcheminement": "STE SABINE SUR LONGEVE", - "nomCommune": "STE SABINE SUR LONGEVE" + "codePostal": "89420", + "codeCommune": "89375", + "libelleAcheminement": "SANTIGNY", + "nomCommune": "SANTIGNY" }, { - "codePostal": "88600", - "codeCommune": "88348", - "libelleAcheminement": "PIERREPONT SUR L ARENTELE", - "nomCommune": "PIERREPONT SUR L ARENTELE" + "codePostal": "77230", + "codeCommune": "77420", + "libelleAcheminement": "ST MARD", + "nomCommune": "ST MARD" }, { - "codePostal": "90800", - "codeCommune": "90008", - "libelleAcheminement": "BAVILLIERS", - "nomCommune": "BAVILLIERS" + "codePostal": "89390", + "codeCommune": "89321", + "libelleAcheminement": "RAVIERES", + "nomCommune": "RAVIERES" }, { - "codePostal": "80680", - "codeCommune": "80690", - "libelleAcheminement": "RUMIGNY", - "nomCommune": "RUMIGNY" + "codePostal": "76280", + "codeCommune": "76268", + "libelleAcheminement": "FONGUEUSEMARE", + "nomCommune": "FONGUEUSEMARE" }, { - "codePostal": "72650", - "codeCommune": "72320", - "libelleAcheminement": "ST SATURNIN", - "nomCommune": "ST SATURNIN" + "codePostal": "89150", + "codeCommune": "89380", + "libelleAcheminement": "SAVIGNY SUR CLAIRIS", + "nomCommune": "SAVIGNY SUR CLAIRIS" }, { - "codePostal": "88300", - "codeCommune": "88352", - "libelleAcheminement": "POMPIERRE", - "nomCommune": "POMPIERRE" + "codePostal": "77720", + "codeCommune": "77426", + "libelleAcheminement": "ST MERY", + "nomCommune": "ST MERY" }, { - "codePostal": "90110", - "codeCommune": "90016", - "libelleAcheminement": "BOURG SOUS CHATELET", - "nomCommune": "BOURG SOUS CHATELET" + "codePostal": "89230", + "codeCommune": "89328", + "libelleAcheminement": "ROUVRAY", + "nomCommune": "ROUVRAY" }, { - "codePostal": "80230", - "codeCommune": "80691", - "libelleAcheminement": "SAIGNEVILLE", - "nomCommune": "SAIGNEVILLE" + "codePostal": "76440", + "codeCommune": "76269", + "libelleAcheminement": "FONTAINE EN BRAY", + "nomCommune": "FONTAINE EN BRAY" }, { - "codePostal": "72600", - "codeCommune": "72324", - "libelleAcheminement": "ST VINCENT DES PRES", - "nomCommune": "ST VINCENT DES PRES" + "codePostal": "89560", + "codeCommune": "89383", + "libelleAcheminement": "SEMENTRON", + "nomCommune": "SEMENTRON" }, { - "codePostal": "88500", - "codeCommune": "88354", - "libelleAcheminement": "PONT SUR MADON", - "nomCommune": "PONT SUR MADON" + "codePostal": "77140", + "codeCommune": "77431", + "libelleAcheminement": "ST PIERRE LES NEMOURS", + "nomCommune": "ST PIERRE LES NEMOURS" }, { - "codePostal": "90140", - "codeCommune": "90021", - "libelleAcheminement": "CHARMOIS", - "nomCommune": "CHARMOIS" + "codePostal": "89430", + "codeCommune": "89329", + "libelleAcheminement": "RUGNY", + "nomCommune": "RUGNY" }, { - "codePostal": "80800", - "codeCommune": "80693", - "libelleAcheminement": "SAILLY LAURETTE", - "nomCommune": "SAILLY LAURETTE" + "codePostal": "76160", + "codeCommune": "76273", + "libelleAcheminement": "FONTAINE SOUS PREAUX", + "nomCommune": "FONTAINE SOUS PREAUX" }, { - "codePostal": "72190", - "codeCommune": "72328", - "libelleAcheminement": "SARGE LES LE MANS", - "nomCommune": "SARGE LES LE MANS" + "codePostal": "89160", + "codeCommune": "89385", + "libelleAcheminement": "SENNEVOY LE BAS", + "nomCommune": "SENNEVOY LE BAS" }, { - "codePostal": "88260", - "codeCommune": "88360", - "libelleAcheminement": "PROVENCHERES LES DARNEY", - "nomCommune": "PROVENCHERES LES DARNEY" + "codePostal": "77176", + "codeCommune": "77445", + "libelleAcheminement": "SAVIGNY LE TEMPLE", + "nomCommune": "SAVIGNY LE TEMPLE" }, { - "codePostal": "90100", - "codeCommune": "90025", - "libelleAcheminement": "CHAVANNES LES GRANDS", - "nomCommune": "CHAVANNES LES GRANDS" + "codePostal": "89110", + "codeCommune": "89334", + "libelleAcheminement": "LE VAL D OCRE", + "nomCommune": "LE VAL D OCRE" }, { - "codePostal": "80680", - "codeCommune": "80696", - "libelleAcheminement": "SAINS EN AMIENOIS", - "nomCommune": "SAINS EN AMIENOIS" + "codePostal": "76440", + "codeCommune": "76276", + "libelleAcheminement": "FORGES LES EAUX", + "nomCommune": "FORGES LES EAUX" }, { - "codePostal": "72170", - "codeCommune": "72332", - "libelleAcheminement": "SEGRIE", - "nomCommune": "SEGRIE" + "codePostal": "89100", + "codeCommune": "89387", + "libelleAcheminement": "SENS", + "nomCommune": "SENS" }, { - "codePostal": "88490", - "codeCommune": "88361", - "libelleAcheminement": "PROVENCHERES ET COLROY", - "nomCommune": "PROVENCHERES ET COLROY" + "codePostal": "77240", + "codeCommune": "77447", + "libelleAcheminement": "SEINE PORT", + "nomCommune": "SEINE PORT" }, { - "codePostal": "90340", - "codeCommune": "90026", - "libelleAcheminement": "CHEVREMONT", - "nomCommune": "CHEVREMONT" + "codePostal": "89110", + "codeCommune": "89334", + "libelleAcheminement": "LE VAL D OCRE", + "nomCommune": "LE VAL D OCRE" }, { - "codePostal": "80780", - "codeCommune": "80706", - "libelleAcheminement": "ST LEGER LES DOMART", - "nomCommune": "ST LEGER LES DOMART" + "codePostal": "76640", + "codeCommune": "76279", + "libelleAcheminement": "FOUCART", + "nomCommune": "FOUCART" }, { - "codePostal": "72390", - "codeCommune": "72333", - "libelleAcheminement": "SEMUR EN VALLON", - "nomCommune": "SEMUR EN VALLON" + "codePostal": "89116", + "codeCommune": "89388", + "libelleAcheminement": "SEPEAUX ST ROMAIN", + "nomCommune": "SEPEAUX ST ROMAIN" }, { - "codePostal": "88210", - "codeCommune": "88362", - "libelleAcheminement": "LE PUID", - "nomCommune": "LE PUID" + "codePostal": "77170", + "codeCommune": "77450", + "libelleAcheminement": "SERVON", + "nomCommune": "SERVON" }, { - "codePostal": "90100", - "codeCommune": "90027", - "libelleAcheminement": "COURCELLES", - "nomCommune": "COURCELLES" + "codePostal": "89300", + "codeCommune": "89335", + "libelleAcheminement": "ST AUBIN SUR YONNE", + "nomCommune": "ST AUBIN SUR YONNE" }, { - "codePostal": "80140", - "codeCommune": "80707", - "libelleAcheminement": "ST LEGER SUR BRESLE", - "nomCommune": "ST LEGER SUR BRESLE" + "codePostal": "76660", + "codeCommune": "76280", + "libelleAcheminement": "FREAUVILLE", + "nomCommune": "FREAUVILLE" }, { - "codePostal": "72400", - "codeCommune": "72342", - "libelleAcheminement": "SOUVIGNE SUR MEME", - "nomCommune": "SOUVIGNE SUR MEME" + "codePostal": "89140", + "codeCommune": "89391", + "libelleAcheminement": "SERGINES", + "nomCommune": "SERGINES" }, { - "codePostal": "88700", - "codeCommune": "88367", - "libelleAcheminement": "RAMBERVILLERS", - "nomCommune": "RAMBERVILLERS" + "codePostal": "77111", + "codeCommune": "77455", + "libelleAcheminement": "SOIGNOLLES EN BRIE", + "nomCommune": "SOIGNOLLES EN BRIE" }, { - "codePostal": "90300", - "codeCommune": "90029", - "libelleAcheminement": "CRAVANCHE", - "nomCommune": "CRAVANCHE" + "codePostal": "89100", + "codeCommune": "89342", + "libelleAcheminement": "ST DENIS LES SENS", + "nomCommune": "ST DENIS LES SENS" }, { - "codePostal": "80140", - "codeCommune": "80710", - "libelleAcheminement": "ST MAXENT", - "nomCommune": "ST MAXENT" + "codePostal": "76170", + "codeCommune": "76281", + "libelleAcheminement": "LA FRENAYE", + "nomCommune": "LA FRENAYE" }, { - "codePostal": "72300", - "codeCommune": "72343", - "libelleAcheminement": "SOUVIGNE SUR SARTHE", - "nomCommune": "SOUVIGNE SUR SARTHE" + "codePostal": "89200", + "codeCommune": "89392", + "libelleAcheminement": "SERMIZELLES", + "nomCommune": "SERMIZELLES" }, { - "codePostal": "88500", - "codeCommune": "88368", - "libelleAcheminement": "RAMECOURT", - "nomCommune": "RAMECOURT" + "codePostal": "77810", + "codeCommune": "77463", + "libelleAcheminement": "THOMERY", + "nomCommune": "THOMERY" }, { - "codePostal": "90350", - "codeCommune": "90042", - "libelleAcheminement": "EVETTE SALBERT", - "nomCommune": "EVETTE SALBERT" + "codePostal": "89170", + "codeCommune": "89352", + "libelleAcheminement": "ST MARTIN DES CHAMPS", + "nomCommune": "ST MARTIN DES CHAMPS" }, { - "codePostal": "80610", - "codeCommune": "80711", - "libelleAcheminement": "ST OUEN", - "nomCommune": "ST OUEN" + "codePostal": "76270", + "codeCommune": "76283", + "libelleAcheminement": "FRESLES", + "nomCommune": "FRESLES" }, { - "codePostal": "72290", - "codeCommune": "72349", - "libelleAcheminement": "TEILLE", - "nomCommune": "TEILLE" + "codePostal": "89100", + "codeCommune": "89404", + "libelleAcheminement": "SUBLIGNY", + "nomCommune": "SUBLIGNY" }, { - "codePostal": "88220", - "codeCommune": "88371", - "libelleAcheminement": "RAON AUX BOIS", - "nomCommune": "RAON AUX BOIS" + "codePostal": "77220", + "codeCommune": "77470", + "libelleAcheminement": "TOURNAN EN BRIE", + "nomCommune": "TOURNAN EN BRIE" }, { - "codePostal": "90600", - "codeCommune": "90053", - "libelleAcheminement": "GRANDVILLARS", - "nomCommune": "GRANDVILLARS" + "codePostal": "89460", + "codeCommune": "89363", + "libelleAcheminement": "STE PALLAYE", + "nomCommune": "STE PALLAYE" }, { - "codePostal": "80135", - "codeCommune": "80716", - "libelleAcheminement": "ST RIQUIER", - "nomCommune": "ST RIQUIER" + "codePostal": "76520", + "codeCommune": "76285", + "libelleAcheminement": "FRESNE LE PLAN", + "nomCommune": "FRESNE LE PLAN" }, { - "codePostal": "72240", - "codeCommune": "72351", - "libelleAcheminement": "TENNIE", - "nomCommune": "TENNIE" + "codePostal": "89430", + "codeCommune": "89407", + "libelleAcheminement": "TANLAY", + "nomCommune": "TANLAY" }, { - "codePostal": "88110", - "codeCommune": "88373", - "libelleAcheminement": "RAON SUR PLAINE", - "nomCommune": "RAON SUR PLAINE" + "codePostal": "77670", + "codeCommune": "77494", + "libelleAcheminement": "VERNOU LA CELLE SUR SEINE", + "nomCommune": "VERNOU LA CELLE SUR SEINE" }, { - "codePostal": "90200", - "codeCommune": "90054", - "libelleAcheminement": "GROSMAGNY", - "nomCommune": "GROSMAGNY" + "codePostal": "89140", + "codeCommune": "89369", + "libelleAcheminement": "ST SEROTIN", + "nomCommune": "ST SEROTIN" }, { - "codePostal": "80160", - "codeCommune": "80717", - "libelleAcheminement": "ST SAUFLIEU", - "nomCommune": "ST SAUFLIEU" + "codePostal": "76570", + "codeCommune": "76287", + "libelleAcheminement": "FRESQUIENNES", + "nomCommune": "FRESQUIENNES" }, { - "codePostal": "72500", - "codeCommune": "72356", - "libelleAcheminement": "THOIRE SUR DINAN", - "nomCommune": "THOIRE SUR DINAN" + "codePostal": "89190", + "codeCommune": "89411", + "libelleAcheminement": "LES VALLEES DE LA VANNE", + "nomCommune": "LES VALLEES DE LA VANNE" }, { - "codePostal": "88520", - "codeCommune": "88375", - "libelleAcheminement": "RAVES", - "nomCommune": "RAVES" + "codePostal": "77240", + "codeCommune": "77495", + "libelleAcheminement": "VERT ST DENIS", + "nomCommune": "VERT ST DENIS" }, { - "codePostal": "90150", - "codeCommune": "90059", - "libelleAcheminement": "LACOLLONGE", - "nomCommune": "LACOLLONGE" + "codePostal": "89310", + "codeCommune": "89376", + "libelleAcheminement": "SARRY", + "nomCommune": "SARRY" }, { - "codePostal": "80290", - "codeCommune": "80719", - "libelleAcheminement": "STE SEGREE", - "nomCommune": "STE SEGREE" + "codePostal": "76190", + "codeCommune": "76289", + "libelleAcheminement": "ST MARTIN DE L IF", + "nomCommune": "ST MARTIN DE L IF" }, { - "codePostal": "72800", - "codeCommune": "72357", - "libelleAcheminement": "THOREE LES PINS", - "nomCommune": "THOREE LES PINS" + "codePostal": "89320", + "codeCommune": "89411", + "libelleAcheminement": "LES VALLEES DE LA VANNE", + "nomCommune": "LES VALLEES DE LA VANNE" }, { - "codePostal": "88450", - "codeCommune": "88378", - "libelleAcheminement": "REGNEY", - "nomCommune": "REGNEY" + "codePostal": "77710", + "codeCommune": "77500", + "libelleAcheminement": "VILLEBEON", + "nomCommune": "VILLEBEON" }, { - "codePostal": "90130", - "codeCommune": "90071", - "libelleAcheminement": "MONTREUX CHATEAU", - "nomCommune": "MONTREUX CHATEAU" + "codePostal": "89420", + "codeCommune": "89377", + "libelleAcheminement": "SAUVIGNY LE BEUREAL", + "nomCommune": "SAUVIGNY LE BEUREAL" }, { - "codePostal": "80230", - "codeCommune": "80721", - "libelleAcheminement": "ST VALERY SUR SOMME", - "nomCommune": "ST VALERY SUR SOMME" + "codePostal": "76560", + "codeCommune": "76293", + "libelleAcheminement": "FULTOT", + "nomCommune": "FULTOT" }, { - "codePostal": "72650", - "codeCommune": "72360", - "libelleAcheminement": "TRANGE", - "nomCommune": "TRANGE" + "codePostal": "89430", + "codeCommune": "89413", + "libelleAcheminement": "THOREY", + "nomCommune": "THOREY" }, { - "codePostal": "88800", - "codeCommune": "88385", - "libelleAcheminement": "REMONCOURT", - "nomCommune": "REMONCOURT" + "codePostal": "77250", + "codeCommune": "77506", + "libelleAcheminement": "VILLEMER", + "nomCommune": "VILLEMER" }, { - "codePostal": "90360", - "codeCommune": "90078", - "libelleAcheminement": "PETITEFONTAINE", - "nomCommune": "PETITEFONTAINE" + "codePostal": "89160", + "codeCommune": "89386", + "libelleAcheminement": "SENNEVOY LE HAUT", + "nomCommune": "SENNEVOY LE HAUT" }, { - "codePostal": "80310", - "codeCommune": "80722", - "libelleAcheminement": "ST VAAST EN CHAUSSEE", - "nomCommune": "ST VAAST EN CHAUSSEE" + "codePostal": "76730", + "codeCommune": "76306", + "libelleAcheminement": "GONNETOT", + "nomCommune": "GONNETOT" }, { - "codePostal": "72500", - "codeCommune": "72364", - "libelleAcheminement": "VAAS", - "nomCommune": "VAAS" + "codePostal": "89260", + "codeCommune": "89414", + "libelleAcheminement": "THORIGNY SUR OREUSE", + "nomCommune": "THORIGNY SUR OREUSE" }, { - "codePostal": "88170", - "codeCommune": "88401", - "libelleAcheminement": "ROUVRES LA CHETIVE", - "nomCommune": "ROUVRES LA CHETIVE" + "codePostal": "77480", + "codeCommune": "77507", + "libelleAcheminement": "VILLENAUXE LA PETITE", + "nomCommune": "VILLENAUXE LA PETITE" }, { - "codePostal": "90170", - "codeCommune": "90079", - "libelleAcheminement": "PETITMAGNY", - "nomCommune": "PETITMAGNY" + "codePostal": "89270", + "codeCommune": "89394", + "libelleAcheminement": "SERY", + "nomCommune": "SERY" }, { - "codePostal": "80300", - "codeCommune": "80733", - "libelleAcheminement": "SENLIS LE SEC", - "nomCommune": "SENLIS LE SEC" + "codePostal": "76570", + "codeCommune": "76311", + "libelleAcheminement": "GOUPILLIERES", + "nomCommune": "GOUPILLIERES" }, { - "codePostal": "72320", - "codeCommune": "72366", - "libelleAcheminement": "VALENNES", - "nomCommune": "VALENNES" + "codePostal": "89260", + "codeCommune": "89414", + "libelleAcheminement": "THORIGNY SUR OREUSE", + "nomCommune": "THORIGNY SUR OREUSE" }, { - "codePostal": "88120", - "codeCommune": "88409", - "libelleAcheminement": "ST AME", - "nomCommune": "ST AME" + "codePostal": "77410", + "codeCommune": "77517", + "libelleAcheminement": "VILLEVAUDE", + "nomCommune": "VILLEVAUDE" }, { - "codePostal": "90150", - "codeCommune": "90084", - "libelleAcheminement": "REPPE", - "nomCommune": "REPPE" + "codePostal": "89190", + "codeCommune": "89395", + "libelleAcheminement": "LES SIEGES", + "nomCommune": "LES SIEGES" }, { - "codePostal": "80490", - "codeCommune": "80736", - "libelleAcheminement": "SOREL EN VIMEU", - "nomCommune": "SOREL EN VIMEU" + "codePostal": "76116", + "codeCommune": "76316", + "libelleAcheminement": "GRAINVILLE SUR RY", + "nomCommune": "GRAINVILLE SUR RY" }, { - "codePostal": "72310", - "codeCommune": "72368", - "libelleAcheminement": "VANCE", - "nomCommune": "VANCE" + "codePostal": "89200", + "codeCommune": "89415", + "libelleAcheminement": "THORY", + "nomCommune": "THORY" }, { - "codePostal": "88800", - "codeCommune": "88434", - "libelleAcheminement": "ST REMIMONT", - "nomCommune": "ST REMIMONT" + "codePostal": "77870", + "codeCommune": "77533", + "libelleAcheminement": "VULAINES SUR SEINE", + "nomCommune": "VULAINES SUR SEINE" }, { - "codePostal": "90110", - "codeCommune": "90089", - "libelleAcheminement": "ROUGEMONT LE CHATEAU", - "nomCommune": "ROUGEMONT LE CHATEAU" + "codePostal": "89570", + "codeCommune": "89398", + "libelleAcheminement": "SORMERY", + "nomCommune": "SORMERY" }, { - "codePostal": "80340", - "codeCommune": "80743", - "libelleAcheminement": "SUZANNE", - "nomCommune": "SUZANNE" + "codePostal": "76530", + "codeCommune": "76319", + "libelleAcheminement": "GRAND COURONNE", + "nomCommune": "GRAND COURONNE" }, { - "codePostal": "72170", - "codeCommune": "72370", - "libelleAcheminement": "VERNIE", - "nomCommune": "VERNIE" + "codePostal": "89130", + "codeCommune": "89419", + "libelleAcheminement": "TOUCY", + "nomCommune": "TOUCY" }, { - "codePostal": "88600", - "codeCommune": "88454", - "libelleAcheminement": "SERCOEUR", - "nomCommune": "SERCOEUR" + "codePostal": "78113", + "codeCommune": "78006", + "libelleAcheminement": "ADAINVILLE", + "nomCommune": "ADAINVILLE" }, { - "codePostal": "90100", - "codeCommune": "90090", - "libelleAcheminement": "ST DIZIER L EVEQUE", - "nomCommune": "ST DIZIER L EVEQUE" + "codePostal": "89100", + "codeCommune": "89399", + "libelleAcheminement": "SOUCY", + "nomCommune": "SOUCY" }, { - "codePostal": "80240", - "codeCommune": "80748", - "libelleAcheminement": "TEMPLEUX LE GUERARD", - "nomCommune": "TEMPLEUX LE GUERARD" + "codePostal": "76660", + "codeCommune": "76320", + "libelleAcheminement": "GRANDCOURT", + "nomCommune": "GRANDCOURT" }, { - "codePostal": "72320", - "codeCommune": "72373", - "libelleAcheminement": "VIBRAYE", - "nomCommune": "VIBRAYE" + "codePostal": "89210", + "codeCommune": "89436", + "libelleAcheminement": "VENIZY", + "nomCommune": "VENIZY" }, { - "codePostal": "88800", - "codeCommune": "88466", - "libelleAcheminement": "THEY SOUS MONTFORT", - "nomCommune": "THEY SOUS MONTFORT" + "codePostal": "78570", + "codeCommune": "78015", + "libelleAcheminement": "ANDRESY", + "nomCommune": "ANDRESY" }, { - "codePostal": "91150", - "codeCommune": "91001", - "libelleAcheminement": "ABBEVILLE LA RIVIERE", - "nomCommune": "ABBEVILLE LA RIVIERE" + "codePostal": "89520", + "codeCommune": "89400", + "libelleAcheminement": "SOUGERES EN PUISAYE", + "nomCommune": "SOUGERES EN PUISAYE" }, { - "codePostal": "80290", - "codeCommune": "80755", - "libelleAcheminement": "THIEULLOY LA VILLE", - "nomCommune": "THIEULLOY LA VILLE" + "codePostal": "76950", + "codeCommune": "76321", + "libelleAcheminement": "LES GRANDES VENTES", + "nomCommune": "LES GRANDES VENTES" }, { - "codePostal": "72440", - "codeCommune": "72382", - "libelleAcheminement": "VOLNAY", - "nomCommune": "VOLNAY" + "codePostal": "89230", + "codeCommune": "89437", + "libelleAcheminement": "VENOUSE", + "nomCommune": "VENOUSE" }, { - "codePostal": "88530", - "codeCommune": "88470", - "libelleAcheminement": "LE THOLY", - "nomCommune": "LE THOLY" + "codePostal": "78610", + "codeCommune": "78030", + "libelleAcheminement": "AUFFARGIS", + "nomCommune": "AUFFARGIS" }, { - "codePostal": "91670", - "codeCommune": "91016", - "libelleAcheminement": "ANGERVILLE", - "nomCommune": "ANGERVILLE" + "codePostal": "89450", + "codeCommune": "89409", + "libelleAcheminement": "THAROISEAU", + "nomCommune": "THAROISEAU" }, { - "codePostal": "80700", - "codeCommune": "80759", - "libelleAcheminement": "TILLOLOY", - "nomCommune": "TILLOLOY" + "codePostal": "76270", + "codeCommune": "76323", + "libelleAcheminement": "GRAVAL", + "nomCommune": "GRAVAL" }, { - "codePostal": "73610", - "codeCommune": "73001", - "libelleAcheminement": "AIGUEBELETTE LE LAC", - "nomCommune": "AIGUEBELETTE LE LAC" + "codePostal": "89600", + "codeCommune": "89439", + "libelleAcheminement": "VERGIGNY", + "nomCommune": "VERGIGNY" }, { - "codePostal": "88320", - "codeCommune": "88475", - "libelleAcheminement": "TOLLAINCOURT", - "nomCommune": "TOLLAINCOURT" + "codePostal": "78930", + "codeCommune": "78031", + "libelleAcheminement": "AUFFREVILLE BRASSEUIL", + "nomCommune": "AUFFREVILLE BRASSEUIL" }, { - "codePostal": "91290", - "codeCommune": "91021", - "libelleAcheminement": "ARPAJON", - "nomCommune": "ARPAJON" + "codePostal": "89200", + "codeCommune": "89410", + "libelleAcheminement": "THAROT", + "nomCommune": "THAROT" }, { - "codePostal": "80140", - "codeCommune": "80767", - "libelleAcheminement": "LE TRANSLAY", - "nomCommune": "LE TRANSLAY" + "codePostal": "76850", + "codeCommune": "76328", + "libelleAcheminement": "GRIGNEUSEVILLE", + "nomCommune": "GRIGNEUSEVILLE" }, { - "codePostal": "73210", - "codeCommune": "73006", - "libelleAcheminement": "AIME LA PLAGNE", - "nomCommune": "AIME LA PLAGNE" + "codePostal": "89700", + "codeCommune": "89445", + "libelleAcheminement": "VEZANNES", + "nomCommune": "VEZANNES" }, { - "codePostal": "88350", - "codeCommune": "88477", - "libelleAcheminement": "TRAMPOT", - "nomCommune": "TRAMPOT" + "codePostal": "78650", + "codeCommune": "78062", + "libelleAcheminement": "BEYNES", + "nomCommune": "BEYNES" }, { - "codePostal": "91830", - "codeCommune": "91037", - "libelleAcheminement": "AUVERNAUX", - "nomCommune": "AUVERNAUX" + "codePostal": "89320", + "codeCommune": "89411", + "libelleAcheminement": "LES VALLEES DE LA VANNE", + "nomCommune": "LES VALLEES DE LA VANNE" }, { - "codePostal": "80210", - "codeCommune": "80775", - "libelleAcheminement": "VALINES", - "nomCommune": "VALINES" + "codePostal": "76810", + "codeCommune": "76330", + "libelleAcheminement": "GRUCHET ST SIMEON", + "nomCommune": "GRUCHET ST SIMEON" }, { - "codePostal": "73100", - "codeCommune": "73008", - "libelleAcheminement": "AIX LES BAINS", - "nomCommune": "AIX LES BAINS" + "codePostal": "89140", + "codeCommune": "89456", + "libelleAcheminement": "VILLEMANOCHE", + "nomCommune": "VILLEMANOCHE" }, { - "codePostal": "88220", - "codeCommune": "88484", - "libelleAcheminement": "UZEMAIN", - "nomCommune": "UZEMAIN" + "codePostal": "78270", + "codeCommune": "78068", + "libelleAcheminement": "BLARU", + "nomCommune": "BLARU" }, { - "codePostal": "91580", - "codeCommune": "91038", - "libelleAcheminement": "AUVERS ST GEORGES", - "nomCommune": "AUVERS ST GEORGES" + "codePostal": "89420", + "codeCommune": "89412", + "libelleAcheminement": "THIZY", + "nomCommune": "THIZY" }, { - "codePostal": "80560", - "codeCommune": "80777", - "libelleAcheminement": "VAUCHELLES LES AUTHIE", - "nomCommune": "VAUCHELLES LES AUTHIE" + "codePostal": "76640", + "codeCommune": "76342", + "libelleAcheminement": "HATTENVILLE", + "nomCommune": "HATTENVILLE" }, { - "codePostal": "73410", - "codeCommune": "73010", - "libelleAcheminement": "ENTRELACS", - "nomCommune": "ENTRELACS" + "codePostal": "89340", + "codeCommune": "89460", + "libelleAcheminement": "VILLENEUVE LA GUYARD", + "nomCommune": "VILLENEUVE LA GUYARD" }, { - "codePostal": "88450", - "codeCommune": "88493", - "libelleAcheminement": "VARMONZEY", - "nomCommune": "VARMONZEY" + "codePostal": "78660", + "codeCommune": "78071", + "libelleAcheminement": "BOINVILLE LE GAILLARD", + "nomCommune": "BOINVILLE LE GAILLARD" }, { - "codePostal": "91590", - "codeCommune": "91080", - "libelleAcheminement": "BOISSY LE CUTTE", - "nomCommune": "BOISSY LE CUTTE" + "codePostal": "89520", + "codeCommune": "89420", + "libelleAcheminement": "TREIGNY PERREUSE STE COLOMBE", + "nomCommune": "TREIGNY PERREUSE STE COLOMBE" }, { - "codePostal": "80260", - "codeCommune": "80782", - "libelleAcheminement": "VAUX EN AMIENOIS", - "nomCommune": "VAUX EN AMIENOIS" + "codePostal": "76440", + "codeCommune": "76345", + "libelleAcheminement": "HAUSSEZ", + "nomCommune": "HAUSSEZ" }, { - "codePostal": "73410", - "codeCommune": "73010", - "libelleAcheminement": "ENTRELACS", - "nomCommune": "ENTRELACS" + "codePostal": "89140", + "codeCommune": "89467", + "libelleAcheminement": "VILLETHIERRY", + "nomCommune": "VILLETHIERRY" }, { - "codePostal": "88200", - "codeCommune": "88498", - "libelleAcheminement": "VECOUX", - "nomCommune": "VECOUX" + "codePostal": "78910", + "codeCommune": "78076", + "libelleAcheminement": "BOISSETS", + "nomCommune": "BOISSETS" }, { - "codePostal": "91150", - "codeCommune": "91098", - "libelleAcheminement": "BOUTERVILLIERS", - "nomCommune": "BOUTERVILLIERS" + "codePostal": "89580", + "codeCommune": "89426", + "libelleAcheminement": "VAL DE MERCY", + "nomCommune": "VAL DE MERCY" }, { - "codePostal": "80800", - "codeCommune": "80784", - "libelleAcheminement": "VAUX SUR SOMME", - "nomCommune": "VAUX SUR SOMME" + "codePostal": "76550", + "codeCommune": "76349", + "libelleAcheminement": "HAUTOT SUR MER", + "nomCommune": "HAUTOT SUR MER" }, { - "codePostal": "73200", - "codeCommune": "73011", - "libelleAcheminement": "ALBERTVILLE", - "nomCommune": "ALBERTVILLE" + "codePostal": "89260", + "codeCommune": "89469", + "libelleAcheminement": "PERCENEIGE", + "nomCommune": "PERCENEIGE" }, { - "codePostal": "88430", - "codeCommune": "88505", - "libelleAcheminement": "VIENVILLE", - "nomCommune": "VIENVILLE" + "codePostal": "78830", + "codeCommune": "78087", + "libelleAcheminement": "BONNELLES", + "nomCommune": "BONNELLES" }, { - "codePostal": "91820", - "codeCommune": "91099", - "libelleAcheminement": "BOUTIGNY SUR ESSONNE", - "nomCommune": "BOUTIGNY SUR ESSONNE" + "codePostal": "89150", + "codeCommune": "89428", + "libelleAcheminement": "VALLERY", + "nomCommune": "VALLERY" }, { - "codePostal": "80320", - "codeCommune": "80789", - "libelleAcheminement": "VERMANDOVILLERS", - "nomCommune": "VERMANDOVILLERS" + "codePostal": "76600", + "codeCommune": "76351", + "libelleAcheminement": "LE HAVRE", + "nomCommune": "LE HAVRE" }, { - "codePostal": "73200", - "codeCommune": "73014", - "libelleAcheminement": "ALLONDAZ", - "nomCommune": "ALLONDAZ" + "codePostal": "89260", + "codeCommune": "89469", + "libelleAcheminement": "PERCENEIGE", + "nomCommune": "PERCENEIGE" }, { - "codePostal": "88150", - "codeCommune": "88509", - "libelleAcheminement": "VILLONCOURT", - "nomCommune": "VILLONCOURT" + "codePostal": "78200", + "codeCommune": "78118", + "libelleAcheminement": "BUCHELAY", + "nomCommune": "BUCHELAY" }, { - "codePostal": "91740", - "codeCommune": "91131", - "libelleAcheminement": "CHALOU MOULINEUX", - "nomCommune": "CHALOU MOULINEUX" + "codePostal": "89320", + "codeCommune": "89432", + "libelleAcheminement": "VAUDEURS", + "nomCommune": "VAUDEURS" }, { - "codePostal": "80260", - "codeCommune": "80798", - "libelleAcheminement": "VILLERS BOCAGE", - "nomCommune": "VILLERS BOCAGE" + "codePostal": "76840", + "codeCommune": "76354", + "libelleAcheminement": "HENOUVILLE", + "nomCommune": "HENOUVILLE" }, { - "codePostal": "73550", - "codeCommune": "73015", - "libelleAcheminement": "LES ALLUES", - "nomCommune": "LES ALLUES" + "codePostal": "89320", + "codeCommune": "89471", + "libelleAcheminement": "VILLIERS LOUIS", + "nomCommune": "VILLIERS LOUIS" }, { - "codePostal": "88800", - "codeCommune": "88516", - "libelleAcheminement": "VITTEL", - "nomCommune": "VITTEL" + "codePostal": "78955", + "codeCommune": "78123", + "libelleAcheminement": "CARRIERES SOUS POISSY", + "nomCommune": "CARRIERES SOUS POISSY" }, { - "codePostal": "91750", - "codeCommune": "91135", - "libelleAcheminement": "CHAMPCUEIL", - "nomCommune": "CHAMPCUEIL" + "codePostal": "89600", + "codeCommune": "89439", + "libelleAcheminement": "VERGIGNY", + "nomCommune": "VERGIGNY" }, { - "codePostal": "80170", - "codeCommune": "80824", - "libelleAcheminement": "WIENCOURT L EQUIPEE", - "nomCommune": "WIENCOURT L EQUIPEE" + "codePostal": "76740", + "codeCommune": "76365", + "libelleAcheminement": "HOUDETOT", + "nomCommune": "HOUDETOT" }, { - "codePostal": "73610", - "codeCommune": "73022", - "libelleAcheminement": "ATTIGNAT ONCIN", - "nomCommune": "ATTIGNAT ONCIN" + "codePostal": "89360", + "codeCommune": "89474", + "libelleAcheminement": "VILLIERS VINEUX", + "nomCommune": "VILLIERS VINEUX" }, { - "codePostal": "88500", - "codeCommune": "88518", - "libelleAcheminement": "VIVIERS LES OFFROICOURT", - "nomCommune": "VIVIERS LES OFFROICOURT" + "codePostal": "78570", + "codeCommune": "78138", + "libelleAcheminement": "CHANTELOUP LES VIGNES", + "nomCommune": "CHANTELOUP LES VIGNES" }, { - "codePostal": "91160", - "codeCommune": "91136", - "libelleAcheminement": "CHAMPLAN", - "nomCommune": "CHAMPLAN" + "codePostal": "89330", + "codeCommune": "89440", + "libelleAcheminement": "VERLIN", + "nomCommune": "VERLIN" }, { - "codePostal": "80140", - "codeCommune": "80828", - "libelleAcheminement": "WOIREL", - "nomCommune": "WOIREL" + "codePostal": "76570", + "codeCommune": "76370", + "libelleAcheminement": "HUGLEVILLE EN CAUX", + "nomCommune": "HUGLEVILLE EN CAUX" }, { - "codePostal": "73260", - "codeCommune": "73024", - "libelleAcheminement": "LES AVANCHERS VALMOREL", - "nomCommune": "LES AVANCHERS VALMOREL" + "codePostal": "90200", + "codeCommune": "90005", + "libelleAcheminement": "AUXELLES BAS", + "nomCommune": "AUXELLES BAS" }, { - "codePostal": "88520", - "codeCommune": "88526", - "libelleAcheminement": "WISEMBACH", - "nomCommune": "WISEMBACH" + "codePostal": "78130", + "codeCommune": "78140", + "libelleAcheminement": "CHAPET", + "nomCommune": "CHAPET" }, { - "codePostal": "91490", - "codeCommune": "91195", - "libelleAcheminement": "DANNEMOIS", - "nomCommune": "DANNEMOIS" + "codePostal": "89510", + "codeCommune": "89443", + "libelleAcheminement": "VERON", + "nomCommune": "VERON" }, { - "codePostal": "80135", - "codeCommune": "80830", - "libelleAcheminement": "YAUCOURT BUSSUS", - "nomCommune": "YAUCOURT BUSSUS" + "codePostal": "76390", + "codeCommune": "76372", + "libelleAcheminement": "ILLOIS", + "nomCommune": "ILLOIS" }, { - "codePostal": "73170", - "codeCommune": "73028", - "libelleAcheminement": "LA BALME", - "nomCommune": "LA BALME" + "codePostal": "90200", + "codeCommune": "90006", + "libelleAcheminement": "AUXELLES HAUT", + "nomCommune": "AUXELLES HAUT" }, { - "codePostal": "89710", - "codeCommune": "89003", - "libelleAcheminement": "MONTHOLON", - "nomCommune": "MONTHOLON" + "codePostal": "78400", + "codeCommune": "78146", + "libelleAcheminement": "CHATOU", + "nomCommune": "CHATOU" }, { - "codePostal": "91410", - "codeCommune": "91200", - "libelleAcheminement": "DOURDAN", - "nomCommune": "DOURDAN" + "codePostal": "89340", + "codeCommune": "89449", + "libelleAcheminement": "VILLEBLEVIN", + "nomCommune": "VILLEBLEVIN" }, { - "codePostal": "80150", - "codeCommune": "80833", - "libelleAcheminement": "YVRENCHEUX", - "nomCommune": "YVRENCHEUX" + "codePostal": "76117", + "codeCommune": "76374", + "libelleAcheminement": "INCHEVILLE", + "nomCommune": "INCHEVILLE" }, { - "codePostal": "73360", - "codeCommune": "73033", - "libelleAcheminement": "LA BAUCHE", - "nomCommune": "LA BAUCHE" + "codePostal": "90500", + "codeCommune": "90009", + "libelleAcheminement": "BEAUCOURT", + "nomCommune": "BEAUCOURT" }, { - "codePostal": "89390", - "codeCommune": "89004", - "libelleAcheminement": "AISY SUR ARMANCON", - "nomCommune": "AISY SUR ARMANCON" + "codePostal": "78460", + "codeCommune": "78162", + "libelleAcheminement": "CHOISEL", + "nomCommune": "CHOISEL" }, { - "codePostal": "91520", - "codeCommune": "91207", - "libelleAcheminement": "EGLY", - "nomCommune": "EGLY" + "codePostal": "89240", + "codeCommune": "89453", + "libelleAcheminement": "VILLEFARGEAU", + "nomCommune": "VILLEFARGEAU" }, { - "codePostal": "81240", - "codeCommune": "81005", - "libelleAcheminement": "ALBINE", - "nomCommune": "ALBINE" + "codePostal": "76260", + "codeCommune": "76394", + "libelleAcheminement": "LONGROY", + "nomCommune": "LONGROY" }, { - "codePostal": "73270", - "codeCommune": "73034", - "libelleAcheminement": "BEAUFORT SUR DORON", - "nomCommune": "BEAUFORT" + "codePostal": "90110", + "codeCommune": "90016", + "libelleAcheminement": "BOURG SOUS CHATELET", + "nomCommune": "BOURG SOUS CHATELET" }, { - "codePostal": "89160", - "codeCommune": "89005", - "libelleAcheminement": "ANCY LE FRANC", - "nomCommune": "ANCY LE FRANC" + "codePostal": "78340", + "codeCommune": "78165", + "libelleAcheminement": "LES CLAYES SOUS BOIS", + "nomCommune": "LES CLAYES SOUS BOIS" }, { - "codePostal": "91590", - "codeCommune": "91232", - "libelleAcheminement": "LA FERTE ALAIS", - "nomCommune": "LA FERTE ALAIS" + "codePostal": "89350", + "codeCommune": "89462", + "libelleAcheminement": "VILLENEUVE LES GENETS", + "nomCommune": "VILLENEUVE LES GENETS" }, { - "codePostal": "81190", - "codeCommune": "81008", - "libelleAcheminement": "ALMAYRAC", - "nomCommune": "ALMAYRAC" + "codePostal": "76860", + "codeCommune": "76395", + "libelleAcheminement": "LONGUEIL", + "nomCommune": "LONGUEIL" }, { - "codePostal": "73340", - "codeCommune": "73036", - "libelleAcheminement": "BELLECOMBE EN BAUGES", - "nomCommune": "BELLECOMBE EN BAUGES" + "codePostal": "90800", + "codeCommune": "90020", + "libelleAcheminement": "BUC", + "nomCommune": "BUC" }, { - "codePostal": "89480", - "codeCommune": "89007", - "libelleAcheminement": "ANDRYES", - "nomCommune": "ANDRYES" + "codePostal": "78310", + "codeCommune": "78168", + "libelleAcheminement": "COIGNIERES", + "nomCommune": "COIGNIERES" }, { - "codePostal": "91700", - "codeCommune": "91235", - "libelleAcheminement": "FLEURY MEROGIS", - "nomCommune": "FLEURY MEROGIS" + "codePostal": "89140", + "codeCommune": "89465", + "libelleAcheminement": "VILLEPERROT", + "nomCommune": "VILLEPERROT" }, { - "codePostal": "81140", - "codeCommune": "81012", - "libelleAcheminement": "ANDILLAC", - "nomCommune": "ANDILLAC" + "codePostal": "76133", + "codeCommune": "76404", + "libelleAcheminement": "MANEGLISE", + "nomCommune": "MANEGLISE" }, { - "codePostal": "73330", - "codeCommune": "73039", - "libelleAcheminement": "BELMONT TRAMONET", - "nomCommune": "BELMONT TRAMONET" + "codePostal": "90100", + "codeCommune": "90024", + "libelleAcheminement": "CHAVANATTE", + "nomCommune": "CHAVANATTE" }, { - "codePostal": "89200", - "codeCommune": "89009", - "libelleAcheminement": "ANNAY LA COTE", - "nomCommune": "ANNAY LA COTE" + "codePostal": "78700", + "codeCommune": "78172", + "libelleAcheminement": "CONFLANS STE HONORINE", + "nomCommune": "CONFLANS STE HONORINE" }, { - "codePostal": "91410", - "codeCommune": "91247", - "libelleAcheminement": "LA FORET LE ROI", - "nomCommune": "LA FORET LE ROI" + "codePostal": "89260", + "codeCommune": "89469", + "libelleAcheminement": "PERCENEIGE", + "nomCommune": "PERCENEIGE" }, { - "codePostal": "81340", - "codeCommune": "81019", - "libelleAcheminement": "ASSAC", - "nomCommune": "ASSAC" + "codePostal": "76400", + "codeCommune": "76406", + "libelleAcheminement": "MANIQUERVILLE", + "nomCommune": "MANIQUERVILLE" }, { - "codePostal": "73480", - "codeCommune": "73040", - "libelleAcheminement": "BESSANS", - "nomCommune": "BESSANS" + "codePostal": "90160", + "codeCommune": "90034", + "libelleAcheminement": "DENNEY", + "nomCommune": "DENNEY" }, { - "codePostal": "89440", - "codeCommune": "89012", - "libelleAcheminement": "ANNOUX", - "nomCommune": "ANNOUX" + "codePostal": "78111", + "codeCommune": "78192", + "libelleAcheminement": "DAMMARTIN EN SERVE", + "nomCommune": "DAMMARTIN EN SERVE" }, { - "codePostal": "91690", - "codeCommune": "91294", - "libelleAcheminement": "GUILLERVAL", - "nomCommune": "GUILLERVAL" + "codePostal": "89260", + "codeCommune": "89469", + "libelleAcheminement": "PERCENEIGE", + "nomCommune": "PERCENEIGE" }, { - "codePostal": "81430", - "codeCommune": "81026", - "libelleAcheminement": "BELLEGARDE MARSAL", - "nomCommune": "BELLEGARDE MARSAL" + "codePostal": "76116", + "codeCommune": "76412", + "libelleAcheminement": "MARTAINVILLE EPREVILLE", + "nomCommune": "MARTAINVILLE EPREVILLE" }, { - "codePostal": "73390", - "codeCommune": "73041", - "libelleAcheminement": "BETTON BETTONET", - "nomCommune": "BETTON BETTONET" + "codePostal": "90400", + "codeCommune": "90035", + "libelleAcheminement": "DORANS", + "nomCommune": "DORANS" }, { - "codePostal": "89320", - "codeCommune": "89014", - "libelleAcheminement": "ARCES DILO", - "nomCommune": "ARCES DILO" + "codePostal": "78440", + "codeCommune": "78202", + "libelleAcheminement": "DROCOURT", + "nomCommune": "DROCOURT" }, { - "codePostal": "91640", - "codeCommune": "91319", - "libelleAcheminement": "JANVRY", - "nomCommune": "JANVRY" + "codePostal": "89130", + "codeCommune": "89472", + "libelleAcheminement": "VILLIERS ST BENOIT", + "nomCommune": "VILLIERS ST BENOIT" }, { - "codePostal": "81400", - "codeCommune": "81033", - "libelleAcheminement": "BLAYE LES MINES", - "nomCommune": "BLAYE LES MINES" + "codePostal": "76680", + "codeCommune": "76417", + "libelleAcheminement": "MAUCOMBLE", + "nomCommune": "MAUCOMBLE" }, { - "codePostal": "73410", - "codeCommune": "73043", - "libelleAcheminement": "LA BIOLLE", - "nomCommune": "LA BIOLLE" + "codePostal": "90340", + "codeCommune": "90048", + "libelleAcheminement": "FONTENELLE", + "nomCommune": "FONTENELLE" }, { - "codePostal": "89320", - "codeCommune": "89014", - "libelleAcheminement": "ARCES DILO", - "nomCommune": "ARCES DILO" + "codePostal": "78680", + "codeCommune": "78217", + "libelleAcheminement": "EPONE", + "nomCommune": "EPONE" }, { - "codePostal": "91160", - "codeCommune": "91345", - "libelleAcheminement": "LONGJUMEAU", - "nomCommune": "LONGJUMEAU" + "codePostal": "89130", + "codeCommune": "89472", + "libelleAcheminement": "VILLIERS ST BENOIT", + "nomCommune": "VILLIERS ST BENOIT" }, { - "codePostal": "81600", - "codeCommune": "81041", - "libelleAcheminement": "BROZE", - "nomCommune": "BROZE" + "codePostal": "76490", + "codeCommune": "76418", + "libelleAcheminement": "MAULEVRIER STE GERTRUDE", + "nomCommune": "MAULEVRIER STE GERTRUDE" }, { - "codePostal": "73700", - "codeCommune": "73054", - "libelleAcheminement": "BOURG ST MAURICE", - "nomCommune": "BOURG ST MAURICE" + "codePostal": "90140", + "codeCommune": "90051", + "libelleAcheminement": "FROIDEFONTAINE", + "nomCommune": "FROIDEFONTAINE" }, { - "codePostal": "89740", - "codeCommune": "89019", - "libelleAcheminement": "ARTHONNAY", - "nomCommune": "ARTHONNAY" + "codePostal": "78410", + "codeCommune": "78230", + "libelleAcheminement": "LA FALAISE", + "nomCommune": "LA FALAISE" }, { - "codePostal": "91720", - "codeCommune": "91359", - "libelleAcheminement": "MAISSE", - "nomCommune": "MAISSE" + "codePostal": "89800", + "codeCommune": "89477", + "libelleAcheminement": "VILLY", + "nomCommune": "VILLY" }, { - "codePostal": "81100", - "codeCommune": "81042", - "libelleAcheminement": "BURLATS", - "nomCommune": "BURLATS" + "codePostal": "76530", + "codeCommune": "76419", + "libelleAcheminement": "MAUNY", + "nomCommune": "MAUNY" }, { - "codePostal": "73570", - "codeCommune": "73057", - "libelleAcheminement": "BRIDES LES BAINS", - "nomCommune": "BRIDES LES BAINS" + "codePostal": "90100", + "codeCommune": "90055", + "libelleAcheminement": "GROSNE", + "nomCommune": "GROSNE" }, { - "codePostal": "89290", - "codeCommune": "89024", - "libelleAcheminement": "AUXERRE", - "nomCommune": "AUXERRE" + "codePostal": "78200", + "codeCommune": "78234", + "libelleAcheminement": "FLACOURT", + "nomCommune": "FLACOURT" }, { - "codePostal": "91460", - "codeCommune": "91363", - "libelleAcheminement": "MARCOUSSIS", - "nomCommune": "MARCOUSSIS" + "codePostal": "89290", + "codeCommune": "89479", + "libelleAcheminement": "VINCELOTTES", + "nomCommune": "VINCELOTTES" }, { - "codePostal": "81500", - "codeCommune": "81044", - "libelleAcheminement": "CABANES", - "nomCommune": "CABANES" + "codePostal": "76270", + "codeCommune": "76424", + "libelleAcheminement": "MENONVAL", + "nomCommune": "MENONVAL" }, { - "codePostal": "73520", - "codeCommune": "73058", - "libelleAcheminement": "LA BRIDOIRE", - "nomCommune": "LA BRIDOIRE" + "codePostal": "90360", + "codeCommune": "90058", + "libelleAcheminement": "LACHAPELLE SOUS ROUGEMONT", + "nomCommune": "LACHAPELLE SOUS ROUGEMONT" }, { - "codePostal": "89200", - "codeCommune": "89025", - "libelleAcheminement": "AVALLON", - "nomCommune": "AVALLON" + "codePostal": "78910", + "codeCommune": "78236", + "libelleAcheminement": "FLEXANVILLE", + "nomCommune": "FLEXANVILLE" }, { - "codePostal": "91150", - "codeCommune": "91399", - "libelleAcheminement": "MESPUITS", - "nomCommune": "MESPUITS" + "codePostal": "89700", + "codeCommune": "89486", + "libelleAcheminement": "YROUERRE", + "nomCommune": "YROUERRE" }, { - "codePostal": "81130", - "codeCommune": "81048", - "libelleAcheminement": "CAGNAC LES MINES", - "nomCommune": "CAGNAC LES MINES" + "codePostal": "76270", + "codeCommune": "76427", + "libelleAcheminement": "MESNIERES EN BRAY", + "nomCommune": "MESNIERES EN BRAY" }, { - "codePostal": "73100", - "codeCommune": "73059", - "libelleAcheminement": "BRISON ST INNOCENT", - "nomCommune": "BRISON ST INNOCENT" + "codePostal": "90100", + "codeCommune": "90063", + "libelleAcheminement": "LEBETAIN", + "nomCommune": "LEBETAIN" }, { - "codePostal": "89460", - "codeCommune": "89030", - "libelleAcheminement": "BAZARNES", - "nomCommune": "BAZARNES" + "codePostal": "78440", + "codeCommune": "78246", + "libelleAcheminement": "FONTENAY ST PERE", + "nomCommune": "FONTENAY ST PERE" }, { - "codePostal": "91230", - "codeCommune": "91421", - "libelleAcheminement": "MONTGERON", - "nomCommune": "MONTGERON" + "codePostal": "90400", + "codeCommune": "90001", + "libelleAcheminement": "ANDELNANS", + "nomCommune": "ANDELNANS" }, { - "codePostal": "81540", - "codeCommune": "81049", - "libelleAcheminement": "CAHUZAC", - "nomCommune": "CAHUZAC" + "codePostal": "76460", + "codeCommune": "76428", + "libelleAcheminement": "LE MESNIL DURDENT", + "nomCommune": "LE MESNIL DURDENT" }, { - "codePostal": "73000", - "codeCommune": "73065", - "libelleAcheminement": "CHAMBERY", - "nomCommune": "CHAMBERY" + "codePostal": "90400", + "codeCommune": "90068", + "libelleAcheminement": "MEROUX MOVAL", + "nomCommune": "MEROUX MOVAL" }, { - "codePostal": "89240", - "codeCommune": "89033", - "libelleAcheminement": "BEAUVOIR", - "nomCommune": "BEAUVOIR" + "codePostal": "78113", + "codeCommune": "78283", + "libelleAcheminement": "GRANDCHAMP", + "nomCommune": "GRANDCHAMP" }, { - "codePostal": "91250", - "codeCommune": "91435", - "libelleAcheminement": "MORSANG SUR SEINE", - "nomCommune": "MORSANG SUR SEINE" + "codePostal": "90800", + "codeCommune": "90008", + "libelleAcheminement": "BAVILLIERS", + "nomCommune": "BAVILLIERS" }, { - "codePostal": "81470", - "codeCommune": "81050", - "libelleAcheminement": "CAMBON LES LAVAUR", - "nomCommune": "CAMBON LES LAVAUR" + "codePostal": "76780", + "codeCommune": "76431", + "libelleAcheminement": "LE MESNIL LIEUBRAY", + "nomCommune": "LE MESNIL LIEUBRAY" }, { - "codePostal": "73350", - "codeCommune": "73071", - "libelleAcheminement": "CHAMPAGNY EN VANOISE", - "nomCommune": "CHAMPAGNY EN VANOISE" + "codePostal": "90120", + "codeCommune": "90072", + "libelleAcheminement": "MORVILLARS", + "nomCommune": "MORVILLARS" }, { - "codePostal": "89570", - "codeCommune": "89041", - "libelleAcheminement": "BEUGNON", - "nomCommune": "BEUGNON" + "codePostal": "78200", + "codeCommune": "78324", + "libelleAcheminement": "JOUY MAUVOISIN", + "nomCommune": "JOUY MAUVOISIN" }, { - "codePostal": "91400", - "codeCommune": "91471", - "libelleAcheminement": "ORSAY", - "nomCommune": "ORSAY" + "codePostal": "90130", + "codeCommune": "90019", + "libelleAcheminement": "BRETAGNE", + "nomCommune": "BRETAGNE" }, { - "codePostal": "81990", - "codeCommune": "81052", - "libelleAcheminement": "CAMBON D ALBI", - "nomCommune": "CAMBON" + "codePostal": "76440", + "codeCommune": "76432", + "libelleAcheminement": "MESNIL MAUGER", + "nomCommune": "MESNIL MAUGER" }, { - "codePostal": "73390", - "codeCommune": "73079", - "libelleAcheminement": "CHATEAUNEUF", - "nomCommune": "CHATEAUNEUF" + "codePostal": "90200", + "codeCommune": "90085", + "libelleAcheminement": "RIERVESCEMONT", + "nomCommune": "RIERVESCEMONT" }, { - "codePostal": "89200", - "codeCommune": "89044", - "libelleAcheminement": "BLANNAY", - "nomCommune": "BLANNAY" + "codePostal": "78440", + "codeCommune": "78329", + "libelleAcheminement": "LAINVILLE EN VEXIN", + "nomCommune": "LAINVILLE EN VEXIN" }, { - "codePostal": "91470", - "codeCommune": "91482", - "libelleAcheminement": "PECQUEUSE", - "nomCommune": "PECQUEUSE" + "codePostal": "90700", + "codeCommune": "90022", + "libelleAcheminement": "CHATENOIS LES FORGES", + "nomCommune": "CHATENOIS LES FORGES" }, { - "codePostal": "81140", - "codeCommune": "81056", - "libelleAcheminement": "CAMPAGNAC", - "nomCommune": "CAMPAGNAC" + "codePostal": "76520", + "codeCommune": "76434", + "libelleAcheminement": "MESNIL RAOUL", + "nomCommune": "MESNIL RAOUL" }, { - "codePostal": "73460", - "codeCommune": "73086", - "libelleAcheminement": "CLERY", - "nomCommune": "CLERY" + "codePostal": "90200", + "codeCommune": "90088", + "libelleAcheminement": "ROUGEGOUTTE", + "nomCommune": "ROUGEGOUTTE" }, { - "codePostal": "89230", - "codeCommune": "89045", - "libelleAcheminement": "BLEIGNY LE CARREAU", - "nomCommune": "BLEIGNY LE CARREAU" + "codePostal": "78430", + "codeCommune": "78350", + "libelleAcheminement": "LOUVECIENNES", + "nomCommune": "LOUVECIENNES" }, { - "codePostal": "91740", - "codeCommune": "91511", - "libelleAcheminement": "PUSSAY", - "nomCommune": "PUSSAY" + "codePostal": "90100", + "codeCommune": "90030", + "libelleAcheminement": "CROIX", + "nomCommune": "CROIX" }, { - "codePostal": "81260", - "codeCommune": "81062", - "libelleAcheminement": "FONTRIEU", - "nomCommune": "FONTRIEU" + "codePostal": "76480", + "codeCommune": "76436", + "libelleAcheminement": "LE MESNIL SOUS JUMIEGES", + "nomCommune": "LE MESNIL SOUS JUMIEGES" }, { - "codePostal": "73160", - "codeCommune": "73092", - "libelleAcheminement": "CORBEL", - "nomCommune": "CORBEL" + "codePostal": "90100", + "codeCommune": "90095", + "libelleAcheminement": "SUARCE", + "nomCommune": "SUARCE" }, { - "codePostal": "89500", - "codeCommune": "89051", - "libelleAcheminement": "LES BORDES", - "nomCommune": "LES BORDES" + "codePostal": "78200", + "codeCommune": "78361", + "libelleAcheminement": "MANTES LA JOLIE", + "nomCommune": "MANTES LA JOLIE" }, { - "codePostal": "91410", - "codeCommune": "91525", - "libelleAcheminement": "ROINVILLE", - "nomCommune": "ROINVILLE" + "codePostal": "90100", + "codeCommune": "90033", + "libelleAcheminement": "DELLE", + "nomCommune": "DELLE" }, { - "codePostal": "81640", - "codeCommune": "81068", - "libelleAcheminement": "COMBEFA", - "nomCommune": "COMBEFA" + "codePostal": "76220", + "codeCommune": "76440", + "libelleAcheminement": "MOLAGNIES", + "nomCommune": "MOLAGNIES" }, { - "codePostal": "73590", - "codeCommune": "73094", - "libelleAcheminement": "CREST VOLAND", - "nomCommune": "CREST VOLAND" + "codePostal": "90100", + "codeCommune": "90096", + "libelleAcheminement": "THIANCOURT", + "nomCommune": "THIANCOURT" }, { - "codePostal": "89150", - "codeCommune": "89054", - "libelleAcheminement": "BRANNAY", - "nomCommune": "BRANNAY" + "codePostal": "78711", + "codeCommune": "78362", + "libelleAcheminement": "MANTES LA VILLE", + "nomCommune": "MANTES LA VILLE" }, { - "codePostal": "91400", - "codeCommune": "91534", - "libelleAcheminement": "SACLAY", - "nomCommune": "SACLAY" + "codePostal": "90300", + "codeCommune": "90037", + "libelleAcheminement": "ELOIE", + "nomCommune": "ELOIE" }, { - "codePostal": "81800", - "codeCommune": "81070", - "libelleAcheminement": "COUFOULEUX", - "nomCommune": "COUFOULEUX" + "codePostal": "76290", + "codeCommune": "76447", + "libelleAcheminement": "MONTIVILLIERS", + "nomCommune": "MONTIVILLIERS" }, { - "codePostal": "73420", - "codeCommune": "73103", - "libelleAcheminement": "DRUMETTAZ CLARAFOND", - "nomCommune": "DRUMETTAZ CLARAFOND" + "codePostal": "90300", + "codeCommune": "90099", + "libelleAcheminement": "VALDOIE", + "nomCommune": "VALDOIE" }, { - "codePostal": "89210", - "codeCommune": "89055", - "libelleAcheminement": "BRIENON SUR ARMANCON", - "nomCommune": "BRIENON SUR ARMANCON" + "codePostal": "78580", + "codeCommune": "78380", + "libelleAcheminement": "MAULE", + "nomCommune": "MAULE" }, { - "codePostal": "91530", - "codeCommune": "91540", - "libelleAcheminement": "ST CHERON", - "nomCommune": "ST CHERON" + "codePostal": "90170", + "codeCommune": "90041", + "libelleAcheminement": "ETUEFFONT", + "nomCommune": "ETUEFFONT" }, { - "codePostal": "81350", - "codeCommune": "81072", - "libelleAcheminement": "CRESPIN", - "nomCommune": "CRESPIN" + "codePostal": "76220", + "codeCommune": "76450", + "libelleAcheminement": "MONTROTY", + "nomCommune": "MONTROTY" }, { - "codePostal": "73670", - "codeCommune": "73107", - "libelleAcheminement": "ENTREMONT LE VIEUX", - "nomCommune": "ENTREMONT LE VIEUX" + "codePostal": "90100", + "codeCommune": "90101", + "libelleAcheminement": "VELLESCOT", + "nomCommune": "VELLESCOT" }, { - "codePostal": "89660", - "codeCommune": "89057", - "libelleAcheminement": "BROSSES", - "nomCommune": "BROSSES" + "codePostal": "78780", + "codeCommune": "78382", + "libelleAcheminement": "MAURECOURT", + "nomCommune": "MAURECOURT" }, { - "codePostal": "91250", - "codeCommune": "91553", - "libelleAcheminement": "ST GERMAIN LES CORBEIL", - "nomCommune": "ST GERMAIN LES CORBEIL" + "codePostal": "90350", + "codeCommune": "90042", + "libelleAcheminement": "EVETTE SALBERT", + "nomCommune": "EVETTE SALBERT" }, { - "codePostal": "81350", - "codeCommune": "81073", - "libelleAcheminement": "CRESPINET", - "nomCommune": "CRESPINET" + "codePostal": "76970", + "codeCommune": "76456", + "libelleAcheminement": "MOTTEVILLE", + "nomCommune": "MOTTEVILLE" }, { - "codePostal": "73300", - "codeCommune": "73116", - "libelleAcheminement": "FONTCOUVERTE LA TOUSSUIRE", - "nomCommune": "FONTCOUVERTE LA TOUSSUIRE" + "codePostal": "90200", + "codeCommune": "90102", + "libelleAcheminement": "VESCEMONT", + "nomCommune": "VESCEMONT" }, { - "codePostal": "89360", - "codeCommune": "89061", - "libelleAcheminement": "BUTTEAUX", - "nomCommune": "BUTTEAUX" + "codePostal": "78490", + "codeCommune": "78389", + "libelleAcheminement": "MERE", + "nomCommune": "MERE" }, { - "codePostal": "91940", - "codeCommune": "91560", - "libelleAcheminement": "ST JEAN DE BEAUREGARD", - "nomCommune": "ST JEAN DE BEAUREGARD" + "codePostal": "90300", + "codeCommune": "90057", + "libelleAcheminement": "LACHAPELLE SOUS CHAUX", + "nomCommune": "LACHAPELLE SOUS CHAUX" }, { - "codePostal": "81250", - "codeCommune": "81077", - "libelleAcheminement": "CURVALLE", - "nomCommune": "CURVALLE" + "codePostal": "76530", + "codeCommune": "76457", + "libelleAcheminement": "MOULINEAUX", + "nomCommune": "MOULINEAUX" }, { - "codePostal": "73460", - "codeCommune": "73129", - "libelleAcheminement": "GRESY SUR ISERE", - "nomCommune": "GRESY SUR ISERE" + "codePostal": "90100", + "codeCommune": "90105", + "libelleAcheminement": "VILLARS LE SEC", + "nomCommune": "VILLARS LE SEC" }, { - "codePostal": "89310", - "codeCommune": "89064", - "libelleAcheminement": "CENSY", - "nomCommune": "CENSY" + "codePostal": "78600", + "codeCommune": "78396", + "libelleAcheminement": "LE MESNIL LE ROI", + "nomCommune": "LE MESNIL LE ROI" }, { - "codePostal": "91250", - "codeCommune": "91577", - "libelleAcheminement": "SAINTRY SUR SEINE", - "nomCommune": "SAINTRY SUR SEINE" + "codePostal": "90150", + "codeCommune": "90059", + "libelleAcheminement": "LACOLLONGE", + "nomCommune": "LACOLLONGE" }, { - "codePostal": "81110", - "codeCommune": "81081", - "libelleAcheminement": "DOURGNE", - "nomCommune": "DOURGNE" + "codePostal": "76220", + "codeCommune": "76463", + "libelleAcheminement": "NEUF MARCHE", + "nomCommune": "NEUF MARCHE" }, { - "codePostal": "73620", - "codeCommune": "73132", - "libelleAcheminement": "HAUTELUCE", - "nomCommune": "HAUTELUCE" + "codePostal": "91670", + "codeCommune": "91016", + "libelleAcheminement": "ANGERVILLE", + "nomCommune": "ANGERVILLE" }, { - "codePostal": "89320", - "codeCommune": "89065", - "libelleAcheminement": "CERILLY", - "nomCommune": "CERILLY" + "codePostal": "78250", + "codeCommune": "78401", + "libelleAcheminement": "MEULAN EN YVELINES", + "nomCommune": "MEULAN EN YVELINES" }, { - "codePostal": "91770", - "codeCommune": "91579", - "libelleAcheminement": "ST VRAIN", - "nomCommune": "ST VRAIN" + "codePostal": "90150", + "codeCommune": "90060", + "libelleAcheminement": "LAGRANGE", + "nomCommune": "LAGRANGE" }, { - "codePostal": "81340", - "codeCommune": "81082", - "libelleAcheminement": "LE DOURN", - "nomCommune": "LE DOURN" + "codePostal": "76270", + "codeCommune": "76465", + "libelleAcheminement": "NEUVILLE FERRIERES", + "nomCommune": "NEUVILLE FERRIERES" }, { - "codePostal": "73000", - "codeCommune": "73137", - "libelleAcheminement": "JACOB BELLECOMBETTE", - "nomCommune": "JACOB BELLECOMBETTE" + "codePostal": "91590", + "codeCommune": "91047", + "libelleAcheminement": "BAULNE", + "nomCommune": "BAULNE" }, { - "codePostal": "89800", - "codeCommune": "89068", - "libelleAcheminement": "CHABLIS", - "nomCommune": "CHABLIS" + "codePostal": "78250", + "codeCommune": "78403", + "libelleAcheminement": "MEZY SUR SEINE", + "nomCommune": "MEZY SUR SEINE" }, { - "codePostal": "91160", - "codeCommune": "91587", - "libelleAcheminement": "SAULX LES CHARTREUX", - "nomCommune": "SAULX LES CHARTREUX" + "codePostal": "90170", + "codeCommune": "90061", + "libelleAcheminement": "LAMADELEINE VAL DES ANGES", + "nomCommune": "LAMADELEINE VAL DES ANGES" }, { - "codePostal": "81530", - "codeCommune": "81085", - "libelleAcheminement": "ESCROUX", - "nomCommune": "ESCROUX" + "codePostal": "76210", + "codeCommune": "76468", + "libelleAcheminement": "NOINTOT", + "nomCommune": "NOINTOT" }, { - "codePostal": "73170", - "codeCommune": "73149", - "libelleAcheminement": "LUCEY", - "nomCommune": "LUCEY" + "codePostal": "91150", + "codeCommune": "91075", + "libelleAcheminement": "BOIS HERPIN", + "nomCommune": "BOIS HERPIN" }, { - "codePostal": "89660", - "codeCommune": "89071", - "libelleAcheminement": "CHAMOUX", - "nomCommune": "CHAMOUX" + "codePostal": "78490", + "codeCommune": "78420", + "libelleAcheminement": "MONTFORT L AMAURY", + "nomCommune": "MONTFORT L AMAURY" }, { - "codePostal": "91530", - "codeCommune": "91593", - "libelleAcheminement": "SERMAISE", - "nomCommune": "SERMAISE" + "codePostal": "90150", + "codeCommune": "90067", + "libelleAcheminement": "MENONCOURT", + "nomCommune": "MENONCOURT" }, { - "codePostal": "81340", - "codeCommune": "81089", - "libelleAcheminement": "FAUSSERGUES", - "nomCommune": "FAUSSERGUES" + "codePostal": "76510", + "codeCommune": "76472", + "libelleAcheminement": "NOTRE DAME D ALIERMONT", + "nomCommune": "NOTRE DAME D ALIERMONT" }, { - "codePostal": "73210", - "codeCommune": "73150", - "libelleAcheminement": "LA PLAGNE TARENTAISE", - "nomCommune": "LA PLAGNE TARENTAISE" + "codePostal": "91870", + "codeCommune": "91081", + "libelleAcheminement": "BOISSY LE SEC", + "nomCommune": "BOISSY LE SEC" }, { - "codePostal": "89260", - "codeCommune": "89080", - "libelleAcheminement": "LA CHAPELLE SUR OREUSE", - "nomCommune": "LA CHAPELLE SUR OREUSE" + "codePostal": "78630", + "codeCommune": "78431", + "libelleAcheminement": "MORAINVILLIERS", + "nomCommune": "MORAINVILLIERS" }, { - "codePostal": "91740", - "codeCommune": "91613", - "libelleAcheminement": "CONGERVILLE THIONVILLE", - "nomCommune": "CONGERVILLE THIONVILLE" + "codePostal": "90400", + "codeCommune": "90068", + "libelleAcheminement": "MEROUX MOVAL", + "nomCommune": "MEROUX MOVAL" }, { - "codePostal": "81340", - "codeCommune": "81094", - "libelleAcheminement": "FRAISSINES", - "nomCommune": "FRAISSINES" + "codePostal": "76550", + "codeCommune": "76482", + "libelleAcheminement": "OFFRANVILLE", + "nomCommune": "OFFRANVILLE" }, { - "codePostal": "73210", - "codeCommune": "73150", - "libelleAcheminement": "LA PLAGNE TARENTAISE", - "nomCommune": "LA PLAGNE TARENTAISE" + "codePostal": "91790", + "codeCommune": "91085", + "libelleAcheminement": "BOISSY SOUS ST YON", + "nomCommune": "BOISSY SOUS ST YON" }, { - "codePostal": "89113", - "codeCommune": "89083", - "libelleAcheminement": "CHARBUY", - "nomCommune": "CHARBUY" + "codePostal": "78980", + "codeCommune": "78444", + "libelleAcheminement": "NEAUPHLETTE", + "nomCommune": "NEAUPHLETTE" }, { - "codePostal": "91740", - "codeCommune": "91613", - "libelleAcheminement": "CONGERVILLE THIONVILLE", - "nomCommune": "CONGERVILLE THIONVILLE" + "codePostal": "90300", + "codeCommune": "90075", + "libelleAcheminement": "OFFEMONT", + "nomCommune": "OFFEMONT" }, { - "codePostal": "81300", - "codeCommune": "81105", - "libelleAcheminement": "GRAULHET", - "nomCommune": "GRAULHET" + "codePostal": "76560", + "codeCommune": "76483", + "libelleAcheminement": "OHERVILLE", + "nomCommune": "OHERVILLE" }, { - "codePostal": "73210", - "codeCommune": "73150", - "libelleAcheminement": "LA PLAGNE TARENTAISE", - "nomCommune": "LA PLAGNE TARENTAISE" + "codePostal": "91820", + "codeCommune": "91099", + "libelleAcheminement": "BOUTIGNY SUR ESSONNE", + "nomCommune": "BOUTIGNY SUR ESSONNE" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "78250", + "codeCommune": "78460", + "libelleAcheminement": "OINVILLE SUR MONTCIENT", + "nomCommune": "OINVILLE SUR MONTCIENT" }, { - "codePostal": "91720", - "codeCommune": "91629", - "libelleAcheminement": "VALPUISEAUX", - "nomCommune": "VALPUISEAUX" + "codePostal": "90160", + "codeCommune": "90076", + "libelleAcheminement": "PEROUSE", + "nomCommune": "PEROUSE" }, { - "codePostal": "81170", - "codeCommune": "81111", - "libelleAcheminement": "LABARTHE BLEYS", - "nomCommune": "LABARTHE BLEYS" + "codePostal": "76430", + "codeCommune": "76489", + "libelleAcheminement": "OUDALLE", + "nomCommune": "OUDALLE" }, { - "codePostal": "73170", - "codeCommune": "73156", - "libelleAcheminement": "MEYRIEUX TROUET", - "nomCommune": "MEYRIEUX TROUET" + "codePostal": "91800", + "codeCommune": "91114", + "libelleAcheminement": "BRUNOY", + "nomCommune": "BRUNOY" }, { - "codePostal": "89660", - "codeCommune": "89091", - "libelleAcheminement": "CHATEL CENSOIR", - "nomCommune": "CHATEL CENSOIR" + "codePostal": "78660", + "codeCommune": "78472", + "libelleAcheminement": "ORSONVILLE", + "nomCommune": "ORSONVILLE" }, { - "codePostal": "91890", - "codeCommune": "91654", - "libelleAcheminement": "VIDELLES", - "nomCommune": "VIDELLES" + "codePostal": "90170", + "codeCommune": "90079", + "libelleAcheminement": "PETITMAGNY", + "nomCommune": "PETITMAGNY" }, { - "codePostal": "81270", - "codeCommune": "81115", - "libelleAcheminement": "LABASTIDE ROUAIROUX", - "nomCommune": "LABASTIDE ROUAIROUX" + "codePostal": "76450", + "codeCommune": "76490", + "libelleAcheminement": "OURVILLE EN CAUX", + "nomCommune": "OURVILLE EN CAUX" }, { - "codePostal": "73800", - "codeCommune": "73159", - "libelleAcheminement": "LES MOLLETTES", - "nomCommune": "LES MOLLETTES" + "codePostal": "91590", + "codeCommune": "91129", + "libelleAcheminement": "CERNY", + "nomCommune": "CERNY" }, { - "codePostal": "89310", - "codeCommune": "89092", - "libelleAcheminement": "CHATEL GERARD", - "nomCommune": "CHATEL GERARD" + "codePostal": "78910", + "codeCommune": "78475", + "libelleAcheminement": "OSMOY", + "nomCommune": "OSMOY" }, { - "codePostal": "91190", - "codeCommune": "91679", - "libelleAcheminement": "VILLIERS LE BACLE", - "nomCommune": "VILLIERS LE BACLE" + "codePostal": "90150", + "codeCommune": "90080", + "libelleAcheminement": "PHAFFANS", + "nomCommune": "PHAFFANS" }, { - "codePostal": "81100", - "codeCommune": "81118", - "libelleAcheminement": "LABOULBENE", - "nomCommune": "LABOULBENE" + "codePostal": "76140", + "codeCommune": "76498", + "libelleAcheminement": "LE PETIT QUEVILLY", + "nomCommune": "LE PETIT QUEVILLY" }, { - "codePostal": "73390", - "codeCommune": "73166", - "libelleAcheminement": "MONTENDRY", - "nomCommune": "MONTENDRY" + "codePostal": "91380", + "codeCommune": "91161", + "libelleAcheminement": "CHILLY MAZARIN", + "nomCommune": "CHILLY MAZARIN" }, { - "codePostal": "89340", - "codeCommune": "89093", - "libelleAcheminement": "CHAUMONT", - "nomCommune": "CHAUMONT" + "codePostal": "78660", + "codeCommune": "78478", + "libelleAcheminement": "PARAY DOUAVILLE", + "nomCommune": "PARAY DOUAVILLE" }, { - "codePostal": "91940", - "codeCommune": "91692", - "libelleAcheminement": "LES ULIS", - "nomCommune": "LES ULIS" + "codePostal": "90110", + "codeCommune": "90086", + "libelleAcheminement": "ROMAGNY SOUS ROUGEMONT", + "nomCommune": "ROMAGNY SOUS ROUGEMONT" }, { - "codePostal": "81120", - "codeCommune": "81119", - "libelleAcheminement": "LABOUTARIE", - "nomCommune": "LABOUTARIE" + "codePostal": "76330", + "codeCommune": "76499", + "libelleAcheminement": "PETIVILLE", + "nomCommune": "PETIVILLE" }, { - "codePostal": "73220", - "codeCommune": "73175", - "libelleAcheminement": "MONTSAPEY", - "nomCommune": "MONTSAPEY" + "codePostal": "91590", + "codeCommune": "91198", + "libelleAcheminement": "D HUISON LONGUEVILLE", + "nomCommune": "D HUISON LONGUEVILLE" }, { - "codePostal": "89500", - "codeCommune": "89094", - "libelleAcheminement": "CHAUMOT", - "nomCommune": "CHAUMOT" + "codePostal": "78610", + "codeCommune": "78486", + "libelleAcheminement": "LE PERRAY EN YVELINES", + "nomCommune": "LE PERRAY EN YVELINES" }, { - "codePostal": "92140", - "codeCommune": "92023", - "libelleAcheminement": "CLAMART", - "nomCommune": "CLAMART" + "codePostal": "90380", + "codeCommune": "90087", + "libelleAcheminement": "ROPPE", + "nomCommune": "ROPPE" }, { - "codePostal": "81240", - "codeCommune": "81121", - "libelleAcheminement": "LACABAREDE", - "nomCommune": "LACABAREDE" + "codePostal": "76340", + "codeCommune": "76500", + "libelleAcheminement": "PIERRECOURT", + "nomCommune": "PIERRECOURT" }, { - "codePostal": "73700", - "codeCommune": "73176", - "libelleAcheminement": "MONTVALEZAN", - "nomCommune": "MONTVALEZAN" + "codePostal": "91860", + "codeCommune": "91215", + "libelleAcheminement": "EPINAY SOUS SENART", + "nomCommune": "EPINAY SOUS SENART" }, { - "codePostal": "89800", - "codeCommune": "89095", - "libelleAcheminement": "CHEMILLY SUR SEREIN", - "nomCommune": "CHEMILLY SUR SEREIN" + "codePostal": "78440", + "codeCommune": "78501", + "libelleAcheminement": "PORCHEVILLE", + "nomCommune": "PORCHEVILLE" }, { - "codePostal": "92230", - "codeCommune": "92036", - "libelleAcheminement": "GENNEVILLIERS", - "nomCommune": "GENNEVILLIERS" + "codePostal": "90110", + "codeCommune": "90089", + "libelleAcheminement": "ROUGEMONT LE CHATEAU", + "nomCommune": "ROUGEMONT LE CHATEAU" }, { - "codePostal": "81110", - "codeCommune": "81129", - "libelleAcheminement": "LAGARDIOLLE", - "nomCommune": "LAGARDIOLLE" + "codePostal": "76280", + "codeCommune": "76501", + "libelleAcheminement": "PIERREFIQUES", + "nomCommune": "PIERREFIQUES" }, { - "codePostal": "73290", - "codeCommune": "73179", - "libelleAcheminement": "LA MOTTE SERVOLEX", - "nomCommune": "LA MOTTE SERVOLEX" + "codePostal": "91450", + "codeCommune": "91225", + "libelleAcheminement": "ETIOLLES", + "nomCommune": "ETIOLLES" }, { - "codePostal": "89250", - "codeCommune": "89096", - "libelleAcheminement": "CHEMILLY SUR YONNE", - "nomCommune": "CHEMILLY SUR YONNE" + "codePostal": "78560", + "codeCommune": "78502", + "libelleAcheminement": "LE PORT MARLY", + "nomCommune": "LE PORT MARLY" }, { - "codePostal": "92360", - "codeCommune": "92048", - "libelleAcheminement": "MEUDON", - "nomCommune": "MEUDON" + "codePostal": "90100", + "codeCommune": "90090", + "libelleAcheminement": "ST DIZIER L EVEQUE", + "nomCommune": "ST DIZIER L EVEQUE" }, { - "codePostal": "81090", - "codeCommune": "81130", - "libelleAcheminement": "LAGARRIGUE", - "nomCommune": "LAGARRIGUE" + "codePostal": "76160", + "codeCommune": "76509", + "libelleAcheminement": "PREAUX", + "nomCommune": "PREAUX" }, { - "codePostal": "73600", - "codeCommune": "73181", - "libelleAcheminement": "MOUTIERS TARENTAISE", - "nomCommune": "MOUTIERS" + "codePostal": "91470", + "codeCommune": "91249", + "libelleAcheminement": "FORGES LES BAINS", + "nomCommune": "FORGES LES BAINS" }, { - "codePostal": "89700", - "codeCommune": "89098", - "libelleAcheminement": "CHENEY", - "nomCommune": "CHENEY" + "codePostal": "78910", + "codeCommune": "78505", + "libelleAcheminement": "PRUNAY LE TEMPLE", + "nomCommune": "PRUNAY LE TEMPLE" }, { - "codePostal": "92000", - "codeCommune": "92050", - "libelleAcheminement": "NANTERRE", - "nomCommune": "NANTERRE" + "codePostal": "90800", + "codeCommune": "90098", + "libelleAcheminement": "URCEREY", + "nomCommune": "URCEREY" }, { - "codePostal": "81260", - "codeCommune": "81134", - "libelleAcheminement": "LAMONTELARIE", - "nomCommune": "LAMONTELARIE" + "codePostal": "76560", + "codeCommune": "76510", + "libelleAcheminement": "PRETOT VICQUEMARE", + "nomCommune": "PRETOT VICQUEMARE" }, { - "codePostal": "73590", - "codeCommune": "73186", - "libelleAcheminement": "NOTRE DAME DE BELLECOMBE", - "nomCommune": "NOTRE DAME DE BELLECOMBE" + "codePostal": "91940", + "codeCommune": "91275", + "libelleAcheminement": "GOMETZ LE CHATEL", + "nomCommune": "GOMETZ LE CHATEL" }, { - "codePostal": "89150", - "codeCommune": "89126", - "libelleAcheminement": "COURTOIN", - "nomCommune": "COURTOIN" + "codePostal": "78270", + "codeCommune": "78528", + "libelleAcheminement": "ROLLEBOISE", + "nomCommune": "ROLLEBOISE" }, { - "codePostal": "92500", - "codeCommune": "92063", - "libelleAcheminement": "RUEIL MALMAISON", - "nomCommune": "RUEIL MALMAISON" + "codePostal": "91670", + "codeCommune": "91016", + "libelleAcheminement": "ANGERVILLE", + "nomCommune": "ANGERVILLE" }, { - "codePostal": "81140", - "codeCommune": "81136", - "libelleAcheminement": "LARROQUE", - "nomCommune": "LARROQUE" + "codePostal": "76540", + "codeCommune": "76529", + "libelleAcheminement": "RIVILLE", + "nomCommune": "RIVILLE" }, { - "codePostal": "73260", - "codeCommune": "73187", - "libelleAcheminement": "LA LECHERE", - "nomCommune": "LA LECHERE" + "codePostal": "91760", + "codeCommune": "91315", + "libelleAcheminement": "ITTEVILLE", + "nomCommune": "ITTEVILLE" }, { - "codePostal": "89100", - "codeCommune": "89127", - "libelleAcheminement": "COURTOIS SUR YONNE", - "nomCommune": "COURTOIS SUR YONNE" + "codePostal": "78790", + "codeCommune": "78530", + "libelleAcheminement": "ROSAY", + "nomCommune": "ROSAY" }, { - "codePostal": "93000", - "codeCommune": "93008", - "libelleAcheminement": "BOBIGNY", - "nomCommune": "BOBIGNY" + "codePostal": "91470", + "codeCommune": "91017", + "libelleAcheminement": "ANGERVILLIERS", + "nomCommune": "ANGERVILLIERS" }, { - "codePostal": "81300", - "codeCommune": "81138", - "libelleAcheminement": "LASGRAISSES", - "nomCommune": "LASGRAISSES" + "codePostal": "76680", + "codeCommune": "76532", + "libelleAcheminement": "ROCQUEMONT", + "nomCommune": "ROCQUEMONT" }, { - "codePostal": "73260", - "codeCommune": "73187", - "libelleAcheminement": "LA LECHERE", - "nomCommune": "LA LECHERE" + "codePostal": "91510", + "codeCommune": "91318", + "libelleAcheminement": "JANVILLE SUR JUINE", + "nomCommune": "JANVILLE SUR JUINE" }, { - "codePostal": "89240", - "codeCommune": "89139", - "libelleAcheminement": "DIGES", - "nomCommune": "DIGES" + "codePostal": "78210", + "codeCommune": "78545", + "libelleAcheminement": "ST CYR L ECOLE", + "nomCommune": "ST CYR L ECOLE" }, { - "codePostal": "93260", - "codeCommune": "93045", - "libelleAcheminement": "LES LILAS", - "nomCommune": "LES LILAS" + "codePostal": "91150", + "codeCommune": "91067", + "libelleAcheminement": "BLANDY", + "nomCommune": "BLANDY" }, { - "codePostal": "81380", - "codeCommune": "81144", - "libelleAcheminement": "LESCURE D ALBIGEOIS", - "nomCommune": "LESCURE D ALBIGEOIS" + "codePostal": "76680", + "codeCommune": "76538", + "libelleAcheminement": "ROSAY", + "nomCommune": "ROSAY" }, { - "codePostal": "73600", - "codeCommune": "73190", - "libelleAcheminement": "NOTRE DAME DU PRE", - "nomCommune": "NOTRE DAME DU PRE" + "codePostal": "91470", + "codeCommune": "91338", + "libelleAcheminement": "LIMOURS", + "nomCommune": "LIMOURS" }, { - "codePostal": "89560", - "codeCommune": "89148", - "libelleAcheminement": "DRUYES LES BELLES FONTAINES", - "nomCommune": "DRUYES LES BELLES FONTAINES" + "codePostal": "78125", + "codeCommune": "78557", + "libelleAcheminement": "ST HILARION", + "nomCommune": "ST HILARION" }, { - "codePostal": "93380", - "codeCommune": "93059", - "libelleAcheminement": "PIERREFITTE SUR SEINE", - "nomCommune": "PIERREFITTE SUR SEINE" + "codePostal": "91720", + "codeCommune": "91069", + "libelleAcheminement": "BOIGNEVILLE", + "nomCommune": "BOIGNEVILLE" }, { - "codePostal": "81800", - "codeCommune": "81149", - "libelleAcheminement": "LOUPIAC", - "nomCommune": "LOUPIAC" + "codePostal": "76480", + "codeCommune": "76541", + "libelleAcheminement": "ROUMARE", + "nomCommune": "ROUMARE" }, { - "codePostal": "73470", - "codeCommune": "73191", - "libelleAcheminement": "NOVALAISE", - "nomCommune": "NOVALAISE" + "codePostal": "91160", + "codeCommune": "91345", + "libelleAcheminement": "LONGJUMEAU", + "nomCommune": "LONGJUMEAU" }, { - "codePostal": "89400", - "codeCommune": "89152", - "libelleAcheminement": "EPINEAU LES VOVES", - "nomCommune": "EPINEAU LES VOVES" + "codePostal": "78470", + "codeCommune": "78561", + "libelleAcheminement": "ST LAMBERT DES BOIS", + "nomCommune": "ST LAMBERT" }, { - "codePostal": "93270", - "codeCommune": "93071", - "libelleAcheminement": "SEVRAN", - "nomCommune": "SEVRAN" + "codePostal": "91650", + "codeCommune": "91105", + "libelleAcheminement": "BREUILLET", + "nomCommune": "BREUILLET" }, { - "codePostal": "81500", - "codeCommune": "81157", - "libelleAcheminement": "MARZENS", - "nomCommune": "MARZENS" + "codePostal": "76560", + "codeCommune": "76542", + "libelleAcheminement": "ROUTES", + "nomCommune": "ROUTES" }, { - "codePostal": "73340", - "codeCommune": "73192", - "libelleAcheminement": "LE NOYER", - "nomCommune": "LE NOYER" + "codePostal": "91150", + "codeCommune": "91399", + "libelleAcheminement": "MESPUITS", + "nomCommune": "MESPUITS" }, { - "codePostal": "89480", - "codeCommune": "89164", - "libelleAcheminement": "FESTIGNY", - "nomCommune": "FESTIGNY" + "codePostal": "78520", + "codeCommune": "78567", + "libelleAcheminement": "ST MARTIN LA GARENNE", + "nomCommune": "ST MARTIN LA GARENNE" }, { - "codePostal": "93430", - "codeCommune": "93079", - "libelleAcheminement": "VILLETANEUSE", - "nomCommune": "VILLETANEUSE" + "codePostal": "91680", + "codeCommune": "91115", + "libelleAcheminement": "BRUYERES LE CHATEL", + "nomCommune": "BRUYERES LE CHATEL" }, { - "codePostal": "81800", - "codeCommune": "81164", - "libelleAcheminement": "MEZENS", - "nomCommune": "MEZENS" + "codePostal": "76730", + "codeCommune": "76549", + "libelleAcheminement": "SAANE ST JUST", + "nomCommune": "SAANE ST JUST" }, { - "codePostal": "73100", - "codeCommune": "73208", - "libelleAcheminement": "PUGNY CHATENOD", - "nomCommune": "PUGNY CHATENOD" + "codePostal": "91150", + "codeCommune": "91433", + "libelleAcheminement": "MORIGNY CHAMPIGNY", + "nomCommune": "MORIGNY CHAMPIGNY" }, { - "codePostal": "89450", - "codeCommune": "89170", - "libelleAcheminement": "FOISSY LES VEZELAY", - "nomCommune": "FOISSY LES VEZELAY" + "codePostal": "78500", + "codeCommune": "78586", + "libelleAcheminement": "SARTROUVILLE", + "nomCommune": "SARTROUVILLE" }, { - "codePostal": "94140", - "codeCommune": "94002", - "libelleAcheminement": "ALFORTVILLE", - "nomCommune": "ALFORTVILLE" + "codePostal": "91440", + "codeCommune": "91122", + "libelleAcheminement": "BURES SUR YVETTE", + "nomCommune": "BURES SUR YVETTE" }, { - "codePostal": "81130", - "codeCommune": "81166", - "libelleAcheminement": "MILHAVET", - "nomCommune": "MILHAVET" + "codePostal": "76430", + "codeCommune": "76551", + "libelleAcheminement": "SAINNEVILLE", + "nomCommune": "SAINNEVILLE" }, { - "codePostal": "73720", - "codeCommune": "73211", - "libelleAcheminement": "QUEIGE", - "nomCommune": "QUEIGE" + "codePostal": "91590", + "codeCommune": "91473", + "libelleAcheminement": "ORVEAU", + "nomCommune": "ORVEAU" }, { - "codePostal": "89190", - "codeCommune": "89171", - "libelleAcheminement": "FOISSY SUR VANNE", - "nomCommune": "FOISSY SUR VANNE" + "codePostal": "78720", + "codeCommune": "78590", + "libelleAcheminement": "SENLISSE", + "nomCommune": "SENLISSE" }, { - "codePostal": "94230", - "codeCommune": "94016", - "libelleAcheminement": "CACHAN", - "nomCommune": "CACHAN" + "codePostal": "91730", + "codeCommune": "91132", + "libelleAcheminement": "CHAMARANDE", + "nomCommune": "CHAMARANDE" }, { - "codePostal": "81250", - "codeCommune": "81167", - "libelleAcheminement": "MIOLLES", - "nomCommune": "MIOLLES" + "codePostal": "76116", + "codeCommune": "76554", + "libelleAcheminement": "ST AIGNAN SUR RY", + "nomCommune": "ST AIGNAN SUR RY" }, { - "codePostal": "73490", - "codeCommune": "73213", - "libelleAcheminement": "LA RAVOIRE", - "nomCommune": "LA RAVOIRE" + "codePostal": "91470", + "codeCommune": "91482", + "libelleAcheminement": "PECQUEUSE", + "nomCommune": "PECQUEUSE" }, { - "codePostal": "89100", - "codeCommune": "89172", - "libelleAcheminement": "FONTAINE LA GAILLARDE", - "nomCommune": "FONTAINE LA GAILLARDE" + "codePostal": "78790", + "codeCommune": "78591", + "libelleAcheminement": "SEPTEUIL", + "nomCommune": "SEPTEUIL" }, { - "codePostal": "94220", - "codeCommune": "94018", - "libelleAcheminement": "CHARENTON LE PONT", - "nomCommune": "CHARENTON LE PONT" + "codePostal": "91750", + "codeCommune": "91135", + "libelleAcheminement": "CHAMPCUEIL", + "nomCommune": "CHAMPCUEIL" }, { - "codePostal": "81190", - "codeCommune": "81172", - "libelleAcheminement": "MONTAURIOL", - "nomCommune": "MONTAURIOL" + "codePostal": "76510", + "codeCommune": "76562", + "libelleAcheminement": "ST AUBIN LE CAUF", + "nomCommune": "ST AUBIN LE CAUF" }, { - "codePostal": "73110", - "codeCommune": "73215", - "libelleAcheminement": "VALGELON LA ROCHETTE", - "nomCommune": "VALGELON LA ROCHETTE" + "codePostal": "91150", + "codeCommune": "91508", + "libelleAcheminement": "PUISELET LE MARAIS", + "nomCommune": "PUISELET LE MARAIS" }, { - "codePostal": "89660", - "codeCommune": "89177", - "libelleAcheminement": "FONTENAY SOUS FOURONNES", - "nomCommune": "FONTENAY SOUS FOURONNES" + "codePostal": "78910", + "codeCommune": "78605", + "libelleAcheminement": "TACOIGNIERES", + "nomCommune": "TACOIGNIERES" }, { - "codePostal": "94000", - "codeCommune": "94028", - "libelleAcheminement": "CRETEIL", - "nomCommune": "CRETEIL" + "codePostal": "91160", + "codeCommune": "91136", + "libelleAcheminement": "CHAMPLAN", + "nomCommune": "CHAMPLAN" }, { - "codePostal": "81500", - "codeCommune": "81173", - "libelleAcheminement": "MONTCABRIER", - "nomCommune": "MONTCABRIER" + "codePostal": "76270", + "codeCommune": "76567", + "libelleAcheminement": "STE BEUVE EN RIVIERE", + "nomCommune": "STE BEUVE EN RIVIERE" }, { - "codePostal": "73190", - "codeCommune": "73225", - "libelleAcheminement": "ST BALDOPH", - "nomCommune": "ST BALDOPH" + "codePostal": "91410", + "codeCommune": "91519", + "libelleAcheminement": "RICHARVILLE", + "nomCommune": "RICHARVILLE" }, { - "codePostal": "89600", - "codeCommune": "89186", - "libelleAcheminement": "GERMIGNY", - "nomCommune": "GERMIGNY" + "codePostal": "78113", + "codeCommune": "78606", + "libelleAcheminement": "LE TARTRE GAUDRAN", + "nomCommune": "LE TARTRE GAUDRAN" }, { - "codePostal": "94250", - "codeCommune": "94037", - "libelleAcheminement": "GENTILLY", - "nomCommune": "GENTILLY" + "codePostal": "91150", + "codeCommune": "91223", + "libelleAcheminement": "ETAMPES", + "nomCommune": "ETAMPES" }, { - "codePostal": "81630", - "codeCommune": "81175", - "libelleAcheminement": "MONTDURAUSSE", - "nomCommune": "MONTDURAUSSE" + "codePostal": "76590", + "codeCommune": "76570", + "libelleAcheminement": "ST CRESPIN", + "nomCommune": "ST CRESPIN" }, { - "codePostal": "73520", - "codeCommune": "73226", - "libelleAcheminement": "ST BERON", - "nomCommune": "ST BERON" + "codePostal": "91690", + "codeCommune": "91533", + "libelleAcheminement": "SACLAS", + "nomCommune": "SACLAS" }, { - "codePostal": "89160", - "codeCommune": "89187", - "libelleAcheminement": "GIGNY", - "nomCommune": "GIGNY" + "codePostal": "78980", + "codeCommune": "78608", + "libelleAcheminement": "LE TERTRE ST DENIS", + "nomCommune": "LE TERTRE ST DENIS" }, { - "codePostal": "94880", - "codeCommune": "94053", - "libelleAcheminement": "NOISEAU", - "nomCommune": "NOISEAU" + "codePostal": "91580", + "codeCommune": "91226", + "libelleAcheminement": "ETRECHY", + "nomCommune": "ETRECHY" }, { - "codePostal": "81440", - "codeCommune": "81181", - "libelleAcheminement": "MONTPINIER", - "nomCommune": "MONTPINIER" + "codePostal": "76690", + "codeCommune": "76583", + "libelleAcheminement": "ST GERMAIN SOUS CAILLY", + "nomCommune": "ST GERMAIN SOUS CAILLY" }, { - "codePostal": "73360", - "codeCommune": "73229", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "91400", + "codeCommune": "91534", + "libelleAcheminement": "SACLAY", + "nomCommune": "SACLAY" }, { - "codePostal": "89200", - "codeCommune": "89188", - "libelleAcheminement": "GIROLLES", - "nomCommune": "GIROLLES" + "codePostal": "78770", + "codeCommune": "78616", + "libelleAcheminement": "THOIRY", + "nomCommune": "THOIRY" }, { - "codePostal": "94510", - "codeCommune": "94060", - "libelleAcheminement": "LA QUEUE EN BRIE", - "nomCommune": "LA QUEUE EN BRIE" + "codePostal": "91590", + "codeCommune": "91232", + "libelleAcheminement": "LA FERTE ALAIS", + "nomCommune": "LA FERTE ALAIS" }, { - "codePostal": "81170", - "codeCommune": "81184", - "libelleAcheminement": "MONTROSIER", - "nomCommune": "MONTROSIER" + "codePostal": "76160", + "codeCommune": "76591", + "libelleAcheminement": "ST JACQUES SUR DARNETAL", + "nomCommune": "ST JACQUES SUR DARNETAL" }, { - "codePostal": "73130", - "codeCommune": "73235", - "libelleAcheminement": "ST FRANCOIS LONGCHAMP", - "nomCommune": "ST FRANCOIS LONGCHAMP" + "codePostal": "91530", + "codeCommune": "91540", + "libelleAcheminement": "ST CHERON", + "nomCommune": "ST CHERON" }, { - "codePostal": "89140", - "codeCommune": "89189", - "libelleAcheminement": "GISY LES NOBLES", - "nomCommune": "GISY LES NOBLES" + "codePostal": "78190", + "codeCommune": "78621", + "libelleAcheminement": "TRAPPES", + "nomCommune": "TRAPPES" }, { - "codePostal": "94150", - "codeCommune": "94065", - "libelleAcheminement": "RUNGIS", - "nomCommune": "RUNGIS" + "codePostal": "91150", + "codeCommune": "91248", + "libelleAcheminement": "LA FORET STE CROIX", + "nomCommune": "LA FORET STE CROIX" }, { - "codePostal": "81320", - "codeCommune": "81188", - "libelleAcheminement": "MOULIN MAGE", - "nomCommune": "MOULIN MAGE" + "codePostal": "76150", + "codeCommune": "76594", + "libelleAcheminement": "ST JEAN DU CARDONNAY", + "nomCommune": "ST JEAN DU CARDONNAY" }, { - "codePostal": "73170", - "codeCommune": "73245", - "libelleAcheminement": "ST JEAN DE CHEVELU", - "nomCommune": "ST JEAN DE CHEVELU" + "codePostal": "91410", + "codeCommune": "91547", + "libelleAcheminement": "ST ESCOBILLE", + "nomCommune": "ST ESCOBILLE" }, { - "codePostal": "89740", - "codeCommune": "89191", - "libelleAcheminement": "GLAND", - "nomCommune": "GLAND" + "codePostal": "78510", + "codeCommune": "78624", + "libelleAcheminement": "TRIEL SUR SEINE", + "nomCommune": "TRIEL SUR SEINE" }, { - "codePostal": "94460", - "codeCommune": "94074", - "libelleAcheminement": "VALENTON", - "nomCommune": "VALENTON" + "codePostal": "91590", + "codeCommune": "91293", + "libelleAcheminement": "GUIGNEVILLE SUR ESSONNE", + "nomCommune": "GUIGNEVILLE SUR ESSONNE" }, { - "codePostal": "81340", - "codeCommune": "81199", - "libelleAcheminement": "PADIES", - "nomCommune": "PADIES" + "codePostal": "76780", + "codeCommune": "76601", + "libelleAcheminement": "ST LUCIEN", + "nomCommune": "ST LUCIEN" }, { - "codePostal": "73140", - "codeCommune": "73258", - "libelleAcheminement": "ST MARTIN DE LA PORTE", - "nomCommune": "ST MARTIN DE LA PORTE" + "codePostal": "91700", + "codeCommune": "91549", + "libelleAcheminement": "STE GENEVIEVE DES BOIS", + "nomCommune": "STE GENEVIEVE DES BOIS" }, { - "codePostal": "89113", - "codeCommune": "89196", - "libelleAcheminement": "VALRAVILLON", - "nomCommune": "VALRAVILLON" + "codePostal": "78740", + "codeCommune": "78638", + "libelleAcheminement": "VAUX SUR SEINE", + "nomCommune": "VAUX SUR SEINE" }, { - "codePostal": "94300", - "codeCommune": "94080", - "libelleAcheminement": "VINCENNES", - "nomCommune": "VINCENNES" + "codePostal": "91430", + "codeCommune": "91312", + "libelleAcheminement": "IGNY", + "nomCommune": "IGNY" }, { - "codePostal": "81310", - "codeCommune": "81202", - "libelleAcheminement": "PARISOT", - "nomCommune": "PARISOT" + "codePostal": "76110", + "codeCommune": "76603", + "libelleAcheminement": "ST MACLOU LA BRIERE", + "nomCommune": "ST MACLOU LA BRIERE" }, { - "codePostal": "73140", - "codeCommune": "73261", - "libelleAcheminement": "ST MICHEL DE MAURIENNE", - "nomCommune": "ST MICHEL DE MAURIENNE" + "codePostal": "91250", + "codeCommune": "91553", + "libelleAcheminement": "ST GERMAIN LES CORBEIL", + "nomCommune": "ST GERMAIN LES CORBEIL" }, { - "codePostal": "89160", - "codeCommune": "89210", - "libelleAcheminement": "JULLY", - "nomCommune": "JULLY" + "codePostal": "78140", + "codeCommune": "78640", + "libelleAcheminement": "VELIZY VILLACOUBLAY", + "nomCommune": "VELIZY VILLACOUBLAY" }, { - "codePostal": "94400", - "codeCommune": "94081", - "libelleAcheminement": "VITRY SUR SEINE", - "nomCommune": "VITRY SUR SEINE" + "codePostal": "91090", + "codeCommune": "91340", + "libelleAcheminement": "LISSES", + "nomCommune": "LISSES" }, { - "codePostal": "81660", - "codeCommune": "81204", - "libelleAcheminement": "PAYRIN AUGMONTEL", - "nomCommune": "PAYRIN AUGMONTEL" + "codePostal": "76480", + "codeCommune": "76608", + "libelleAcheminement": "STE MARGUERITE SUR DUCLAIR", + "nomCommune": "STE MARGUERITE SUR DUCLAIR" }, { - "codePostal": "73670", - "codeCommune": "73274", - "libelleAcheminement": "ST PIERRE D ENTREMONT", - "nomCommune": "ST PIERRE D ENTREMONT" + "codePostal": "91940", + "codeCommune": "91560", + "libelleAcheminement": "ST JEAN DE BEAUREGARD", + "nomCommune": "ST JEAN DE BEAUREGARD" }, { - "codePostal": "89190", - "codeCommune": "89214", - "libelleAcheminement": "LAILLY", - "nomCommune": "LAILLY" + "codePostal": "78960", + "codeCommune": "78688", + "libelleAcheminement": "VOISINS LE BRETONNEUX", + "nomCommune": "VOISINS LE BRETONNEUX" }, { - "codePostal": "95100", - "codeCommune": "95018", - "libelleAcheminement": "ARGENTEUIL", - "nomCommune": "ARGENTEUIL" + "codePostal": "91310", + "codeCommune": "91347", + "libelleAcheminement": "LONGPONT SUR ORGE", + "nomCommune": "LONGPONT SUR ORGE" }, { - "codePostal": "81140", - "codeCommune": "81206", - "libelleAcheminement": "PENNE", - "nomCommune": "PENNE" + "codePostal": "76540", + "codeCommune": "76613", + "libelleAcheminement": "ST MARTIN AUX BUNEAUX", + "nomCommune": "ST MARTIN AUX BUNEAUX" }, { - "codePostal": "73630", - "codeCommune": "73277", - "libelleAcheminement": "STE REINE", - "nomCommune": "STE REINE" + "codePostal": "91910", + "codeCommune": "91578", + "libelleAcheminement": "ST SULPICE DE FAVIERES", + "nomCommune": "ST SULPICE DE FAVIERES" }, { - "codePostal": "89160", - "codeCommune": "89223", - "libelleAcheminement": "LEZINNES", - "nomCommune": "LEZINNES" + "codePostal": "79230", + "codeCommune": "79003", + "libelleAcheminement": "AIFFRES", + "nomCommune": "AIFFRES" }, { - "codePostal": "95270", - "codeCommune": "95026", - "libelleAcheminement": "ASNIERES SUR OISE", - "nomCommune": "ASNIERES SUR OISE" + "codePostal": "91300", + "codeCommune": "91377", + "libelleAcheminement": "MASSY", + "nomCommune": "MASSY" }, { - "codePostal": "81440", - "codeCommune": "81207", - "libelleAcheminement": "PEYREGOUX", - "nomCommune": "PEYREGOUX" + "codePostal": "76840", + "codeCommune": "76614", + "libelleAcheminement": "ST MARTIN DE BOSCHERVILLE", + "nomCommune": "ST MARTIN DE BOSCHERVILLE" }, { - "codePostal": "73160", - "codeCommune": "73282", - "libelleAcheminement": "ST THIBAUD DE COUZ", - "nomCommune": "ST THIBAUD DE COUZ" + "codePostal": "91600", + "codeCommune": "91589", + "libelleAcheminement": "SAVIGNY SUR ORGE", + "nomCommune": "SAVIGNY SUR ORGE" }, { - "codePostal": "89270", - "codeCommune": "89233", - "libelleAcheminement": "LUCY SUR CURE", - "nomCommune": "LUCY SUR CURE" + "codePostal": "79150", + "codeCommune": "79013", + "libelleAcheminement": "ARGENTONNAY", + "nomCommune": "ARGENTONNAY" }, { - "codePostal": "95250", - "codeCommune": "95051", - "libelleAcheminement": "BEAUCHAMP", - "nomCommune": "BEAUCHAMP" + "codePostal": "91540", + "codeCommune": "91386", + "libelleAcheminement": "MENNECY", + "nomCommune": "MENNECY" }, { - "codePostal": "81660", - "codeCommune": "81209", - "libelleAcheminement": "PONT DE LARN", - "nomCommune": "PONT DE LARN" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "73600", - "codeCommune": "73284", - "libelleAcheminement": "SALINS FONTAINE", - "nomCommune": "SALINS FONTAINE" + "codePostal": "91530", + "codeCommune": "91593", + "libelleAcheminement": "SERMAISE", + "nomCommune": "SERMAISE" }, { - "codePostal": "89100", - "codeCommune": "89239", - "libelleAcheminement": "MALAY LE GRAND", - "nomCommune": "MALAY LE GRAND" + "codePostal": "79150", + "codeCommune": "79013", + "libelleAcheminement": "ARGENTONNAY", + "nomCommune": "ARGENTONNAY" }, { - "codePostal": "95340", - "codeCommune": "95058", - "libelleAcheminement": "BERNES SUR OISE", - "nomCommune": "BERNES SUR OISE" + "codePostal": "91660", + "codeCommune": "91390", + "libelleAcheminement": "LE MEREVILLOIS", + "nomCommune": "LE MEREVILLOIS" }, { - "codePostal": "81500", - "codeCommune": "81213", - "libelleAcheminement": "PRATVIEL", - "nomCommune": "PRATVIEL" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "73500", - "codeCommune": "73290", - "libelleAcheminement": "VAL CENIS", - "nomCommune": "VAL CENIS" + "codePostal": "91450", + "codeCommune": "91600", + "libelleAcheminement": "SOISY SUR SEINE", + "nomCommune": "SOISY SUR SEINE" }, { - "codePostal": "89100", - "codeCommune": "89240", - "libelleAcheminement": "MALAY LE PETIT", - "nomCommune": "MALAY LE PETIT" + "codePostal": "79390", + "codeCommune": "79019", + "libelleAcheminement": "AUBIGNY", + "nomCommune": "AUBIGNY" }, { - "codePostal": "95720", - "codeCommune": "95094", - "libelleAcheminement": "BOUQUEVAL", - "nomCommune": "BOUQUEVAL" + "codePostal": "91780", + "codeCommune": "91393", + "libelleAcheminement": "MEROBERT", + "nomCommune": "MEROBERT" }, { - "codePostal": "81440", - "codeCommune": "81216", - "libelleAcheminement": "PUYCALVEL", - "nomCommune": "PUYCALVEL" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "73190", - "codeCommune": "73294", - "libelleAcheminement": "LA THUILE", - "nomCommune": "LA THUILE" + "codePostal": "91580", + "codeCommune": "91602", + "libelleAcheminement": "SOUZY LA BRICHE", + "nomCommune": "SOUZY LA BRICHE" }, { - "codePostal": "89450", - "codeCommune": "89248", - "libelleAcheminement": "MENADES", - "nomCommune": "MENADES" + "codePostal": "79400", + "codeCommune": "79024", + "libelleAcheminement": "AZAY LE BRULE", + "nomCommune": "AZAY LE BRULE" }, { - "codePostal": "95710", - "codeCommune": "95101", - "libelleAcheminement": "BRAY ET LU", - "nomCommune": "BRAY ET LU" + "codePostal": "91310", + "codeCommune": "91425", + "libelleAcheminement": "MONTLHERY", + "nomCommune": "MONTLHERY" }, { - "codePostal": "81140", - "codeCommune": "81217", - "libelleAcheminement": "PUYCELSI", - "nomCommune": "PUYCELSI" + "codePostal": "76270", + "codeCommune": "76620", + "libelleAcheminement": "ST MARTIN L HORTIER", + "nomCommune": "ST MARTIN L HORTIER" }, { - "codePostal": "73400", - "codeCommune": "73303", - "libelleAcheminement": "UGINE", - "nomCommune": "UGINE" + "codePostal": "91740", + "codeCommune": "91613", + "libelleAcheminement": "CONGERVILLE THIONVILLE", + "nomCommune": "CONGERVILLE THIONVILLE" }, { - "codePostal": "89210", - "codeCommune": "89249", - "libelleAcheminement": "MERCY", - "nomCommune": "MERCY" + "codePostal": "79130", + "codeCommune": "79025", + "libelleAcheminement": "AZAY SUR THOUET", + "nomCommune": "AZAY SUR THOUET" }, { - "codePostal": "95640", - "codeCommune": "95102", - "libelleAcheminement": "BREANCON", - "nomCommune": "BREANCON" + "codePostal": "91250", + "codeCommune": "91435", + "libelleAcheminement": "MORSANG SUR SEINE", + "nomCommune": "MORSANG SUR SEINE" }, { - "codePostal": "81700", - "codeCommune": "81219", - "libelleAcheminement": "PUYLAURENS", - "nomCommune": "PUYLAURENS" + "codePostal": "76400", + "codeCommune": "76670", + "libelleAcheminement": "SENNEVILLE SUR FECAMP", + "nomCommune": "SENNEVILLE SUR FECAMP" }, { - "codePostal": "73150", - "codeCommune": "73304", - "libelleAcheminement": "VAL D ISERE", - "nomCommune": "VAL D ISERE" + "codePostal": "91480", + "codeCommune": "91631", + "libelleAcheminement": "VARENNES JARCY", + "nomCommune": "VARENNES JARCY" }, { - "codePostal": "89140", - "codeCommune": "89255", - "libelleAcheminement": "MICHERY", - "nomCommune": "MICHERY" + "codePostal": "79370", + "codeCommune": "79030", + "libelleAcheminement": "BEAUSSAIS VITRE", + "nomCommune": "BEAUSSAIS VITRE" }, { - "codePostal": "95820", - "codeCommune": "95116", - "libelleAcheminement": "BRUYERES SUR OISE", - "nomCommune": "BRUYERES SUR OISE" + "codePostal": "91540", + "codeCommune": "91468", + "libelleAcheminement": "ORMOY", + "nomCommune": "ORMOY" }, { - "codePostal": "81800", - "codeCommune": "81220", - "libelleAcheminement": "RABASTENS", - "nomCommune": "RABASTENS" + "codePostal": "76116", + "codeCommune": "76673", + "libelleAcheminement": "SERVAVILLE SALMONVILLE", + "nomCommune": "SERVAVILLE SALMONVILLE" }, { - "codePostal": "73450", - "codeCommune": "73306", - "libelleAcheminement": "VALLOIRE", - "nomCommune": "VALLOIRE" + "codePostal": "91820", + "codeCommune": "91639", + "libelleAcheminement": "VAYRES SUR ESSONNE", + "nomCommune": "VAYRES SUR ESSONNE" }, { - "codePostal": "89190", - "codeCommune": "89261", - "libelleAcheminement": "MOLINONS", - "nomCommune": "MOLINONS" + "codePostal": "79160", + "codeCommune": "79032", + "libelleAcheminement": "BECELEUF", + "nomCommune": "BECELEUF" }, { - "codePostal": "95770", - "codeCommune": "95119", - "libelleAcheminement": "BUHY", - "nomCommune": "BUHY" + "codePostal": "91150", + "codeCommune": "91469", + "libelleAcheminement": "ORMOY LA RIVIERE", + "nomCommune": "ORMOY LA RIVIERE" }, { - "codePostal": "81120", - "codeCommune": "81222", - "libelleAcheminement": "REALMONT", - "nomCommune": "REALMONT" + "codePostal": "76690", + "codeCommune": "76675", + "libelleAcheminement": "SIERVILLE", + "nomCommune": "SIERVILLE" }, { - "codePostal": "73450", - "codeCommune": "73307", - "libelleAcheminement": "VALMEINIER", - "nomCommune": "VALMEINIER" + "codePostal": "91890", + "codeCommune": "91654", + "libelleAcheminement": "VIDELLES", + "nomCommune": "VIDELLES" }, { - "codePostal": "89470", - "codeCommune": "89263", - "libelleAcheminement": "MONETEAU", - "nomCommune": "MONETEAU" + "codePostal": "79000", + "codeCommune": "79034", + "libelleAcheminement": "BESSINES", + "nomCommune": "BESSINES" }, { - "codePostal": "95750", - "codeCommune": "95142", - "libelleAcheminement": "CHARS", - "nomCommune": "CHARS" + "codePostal": "91400", + "codeCommune": "91471", + "libelleAcheminement": "ORSAY", + "nomCommune": "ORSAY" }, { - "codePostal": "81240", - "codeCommune": "81223", - "libelleAcheminement": "LE RIALET", - "nomCommune": "LE RIALET" + "codePostal": "76560", + "codeCommune": "76679", + "libelleAcheminement": "SOMMESNIL", + "nomCommune": "SOMMESNIL" }, { - "codePostal": "73230", - "codeCommune": "73310", - "libelleAcheminement": "VEREL PRAGONDRAN", - "nomCommune": "VEREL PRAGONDRAN" + "codePostal": "91620", + "codeCommune": "91665", + "libelleAcheminement": "LA VILLE DU BOIS", + "nomCommune": "LA VILLE DU BOIS" }, { - "codePostal": "89420", - "codeCommune": "89267", - "libelleAcheminement": "MONTREAL", - "nomCommune": "MONTREAL" + "codePostal": "79260", + "codeCommune": "79048", + "libelleAcheminement": "LA CRECHE", + "nomCommune": "LA CRECHE" }, { - "codePostal": "95190", - "codeCommune": "95144", - "libelleAcheminement": "CHATENAY EN FRANCE", - "nomCommune": "CHATENAY EN FRANCE" + "codePostal": "91120", + "codeCommune": "91477", + "libelleAcheminement": "PALAISEAU", + "nomCommune": "PALAISEAU" }, { - "codePostal": "81800", - "codeCommune": "81228", - "libelleAcheminement": "ROQUEMAURE", - "nomCommune": "ROQUEMAURE" + "codePostal": "76540", + "codeCommune": "76686", + "libelleAcheminement": "THEUVILLE AUX MAILLOTS", + "nomCommune": "THEUVILLE AUX MAILLOTS" }, { - "codePostal": "73170", - "codeCommune": "73313", - "libelleAcheminement": "VERTHEMEX", - "nomCommune": "VERTHEMEX" + "codePostal": "92320", + "codeCommune": "92020", + "libelleAcheminement": "CHATILLON", + "nomCommune": "CHATILLON" }, { - "codePostal": "89310", - "codeCommune": "89271", - "libelleAcheminement": "MOULINS EN TONNERROIS", - "nomCommune": "MOULINS EN TONNERROIS" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "95420", - "codeCommune": "95166", - "libelleAcheminement": "CLERY EN VEXIN", - "nomCommune": "CLERY EN VEXIN" + "codePostal": "91740", + "codeCommune": "91511", + "libelleAcheminement": "PUSSAY", + "nomCommune": "PUSSAY" }, { - "codePostal": "81150", - "codeCommune": "81232", - "libelleAcheminement": "ROUFFIAC", - "nomCommune": "ROUFFIAC" + "codePostal": "76540", + "codeCommune": "76689", + "libelleAcheminement": "THIETREVILLE", + "nomCommune": "THIETREVILLE" }, { - "codePostal": "73300", - "codeCommune": "73318", - "libelleAcheminement": "VILLAREMBERT", - "nomCommune": "VILLAREMBERT" + "codePostal": "92400", + "codeCommune": "92026", + "libelleAcheminement": "COURBEVOIE", + "nomCommune": "COURBEVOIE" }, { - "codePostal": "89400", - "codeCommune": "89282", - "libelleAcheminement": "ORMOY", - "nomCommune": "ORMOY" + "codePostal": "79170", + "codeCommune": "79057", + "libelleAcheminement": "BRIOUX SUR BOUTONNE", + "nomCommune": "BRIOUX SUR BOUTONNE" }, { - "codePostal": "95380", - "codeCommune": "95212", - "libelleAcheminement": "EPIAIS LES LOUVRES", - "nomCommune": "EPIAIS LES LOUVRES" + "codePostal": "91400", + "codeCommune": "91534", + "libelleAcheminement": "SACLAY", + "nomCommune": "SACLAY" }, { - "codePostal": "81120", - "codeCommune": "81233", - "libelleAcheminement": "TERRE DE BANCALIE", - "nomCommune": "TERRE DE BANCALIE" + "codePostal": "76450", + "codeCommune": "76692", + "libelleAcheminement": "THIOUVILLE", + "nomCommune": "THIOUVILLE" }, { - "codePostal": "73110", - "codeCommune": "73324", - "libelleAcheminement": "VILLAROUX", - "nomCommune": "VILLAROUX" + "codePostal": "92260", + "codeCommune": "92032", + "libelleAcheminement": "FONTENAY AUX ROSES", + "nomCommune": "FONTENAY AUX ROSES" }, { - "codePostal": "89390", - "codeCommune": "89296", - "libelleAcheminement": "PERRIGNY SUR ARMANCON", - "nomCommune": "PERRIGNY SUR ARMANCON" + "codePostal": "79370", + "codeCommune": "79061", + "libelleAcheminement": "CELLES SUR BELLE", + "nomCommune": "CELLES SUR BELLE" }, { - "codePostal": "95610", - "codeCommune": "95218", - "libelleAcheminement": "ERAGNY SUR OISE", - "nomCommune": "ERAGNY" + "codePostal": "91190", + "codeCommune": "91538", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "81120", - "codeCommune": "81233", - "libelleAcheminement": "TERRE DE BANCALIE", - "nomCommune": "TERRE DE BANCALIE" + "codePostal": "76410", + "codeCommune": "76705", + "libelleAcheminement": "TOURVILLE LA RIVIERE", + "nomCommune": "TOURVILLE LA RIVIERE" }, { - "codePostal": "73160", - "codeCommune": "73326", - "libelleAcheminement": "VIMINES", - "nomCommune": "VIMINES" + "codePostal": "92250", + "codeCommune": "92035", + "libelleAcheminement": "LA GARENNE COLOMBES", + "nomCommune": "LA GARENNE COLOMBES" }, { - "codePostal": "89700", - "codeCommune": "89323", - "libelleAcheminement": "ROFFEY", - "nomCommune": "ROFFEY" + "codePostal": "79370", + "codeCommune": "79061", + "libelleAcheminement": "CELLES SUR BELLE", + "nomCommune": "CELLES SUR BELLE" }, { - "codePostal": "95470", - "codeCommune": "95250", - "libelleAcheminement": "FOSSES", - "nomCommune": "FOSSES" + "codePostal": "91690", + "codeCommune": "91544", + "libelleAcheminement": "ST CYR LA RIVIERE", + "nomCommune": "ST CYR LA RIVIERE" }, { - "codePostal": "81290", - "codeCommune": "81235", - "libelleAcheminement": "ST AFFRIQUE LES MONTAGNES", - "nomCommune": "ST AFFRIQUE LES MONTAGNES" + "codePostal": "76400", + "codeCommune": "76706", + "libelleAcheminement": "TOURVILLE LES IFS", + "nomCommune": "TOURVILLE LES IFS" }, { - "codePostal": "74540", - "codeCommune": "74002", - "libelleAcheminement": "ALBY SUR CHERAN", - "nomCommune": "ALBY SUR CHERAN" + "codePostal": "92000", + "codeCommune": "92050", + "libelleAcheminement": "NANTERRE", + "nomCommune": "NANTERRE" }, { - "codePostal": "89110", - "codeCommune": "89334", - "libelleAcheminement": "LE VAL D OCRE", - "nomCommune": "LE VAL D OCRE" + "codePostal": "79140", + "codeCommune": "79062", + "libelleAcheminement": "CERIZAY", + "nomCommune": "CERIZAY" }, { - "codePostal": "95640", - "codeCommune": "95298", - "libelleAcheminement": "HARAVILLIERS", - "nomCommune": "HARAVILLIERS" + "codePostal": "91780", + "codeCommune": "91556", + "libelleAcheminement": "ST HILAIRE", + "nomCommune": "ST HILAIRE" }, { - "codePostal": "81170", - "codeCommune": "81262", - "libelleAcheminement": "ST MARCEL CAMPES", - "nomCommune": "ST MARCEL CAMPES" + "codePostal": "76940", + "codeCommune": "76727", + "libelleAcheminement": "VATTEVILLE LA RUE", + "nomCommune": "VATTEVILLE LA RUE" }, { - "codePostal": "74540", - "codeCommune": "74004", - "libelleAcheminement": "ALLEVES", - "nomCommune": "ALLEVES" + "codePostal": "92800", + "codeCommune": "92062", + "libelleAcheminement": "PUTEAUX", + "nomCommune": "PUTEAUX" }, { - "codePostal": "89100", - "codeCommune": "89338", - "libelleAcheminement": "ST CLEMENT", - "nomCommune": "ST CLEMENT" + "codePostal": "79220", + "codeCommune": "79066", + "libelleAcheminement": "CHAMPDENIERS", + "nomCommune": "CHAMPDENIERS" }, { - "codePostal": "95780", - "codeCommune": "95301", - "libelleAcheminement": "HAUTE ISLE", - "nomCommune": "HAUTE ISLE" + "codePostal": "91840", + "codeCommune": "91599", + "libelleAcheminement": "SOISY SUR ECOLE", + "nomCommune": "SOISY SUR ECOLE" }, { - "codePostal": "81170", - "codeCommune": "81263", - "libelleAcheminement": "ST MARTIN LAGUEPIE", - "nomCommune": "ST MARTIN LAGUEPIE" + "codePostal": "76110", + "codeCommune": "76747", + "libelleAcheminement": "VIRVILLE", + "nomCommune": "VIRVILLE" }, { - "codePostal": "74200", - "codeCommune": "74005", - "libelleAcheminement": "ALLINGES", - "nomCommune": "ALLINGES" + "codePostal": "92210", + "codeCommune": "92064", + "libelleAcheminement": "ST CLOUD", + "nomCommune": "ST CLOUD" }, { - "codePostal": "89800", - "codeCommune": "89341", - "libelleAcheminement": "ST CYR LES COLONS", - "nomCommune": "ST CYR LES COLONS" + "codePostal": "79220", + "codeCommune": "79070", + "libelleAcheminement": "LA CHAPELLE BATON", + "nomCommune": "LA CHAPELLE BATON" }, { - "codePostal": "95280", - "codeCommune": "95323", - "libelleAcheminement": "JOUY LE MOUTIER", - "nomCommune": "JOUY LE MOUTIER" + "codePostal": "91740", + "codeCommune": "91613", + "libelleAcheminement": "CONGERVILLE THIONVILLE", + "nomCommune": "CONGERVILLE THIONVILLE" }, { - "codePostal": "81220", - "codeCommune": "81266", - "libelleAcheminement": "ST PAUL CAP DE JOUX", - "nomCommune": "ST PAUL CAP DE JOUX" + "codePostal": "76480", + "codeCommune": "76750", + "libelleAcheminement": "YAINVILLE", + "nomCommune": "YAINVILLE" }, { - "codePostal": "74600", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "93460", + "codeCommune": "93033", + "libelleAcheminement": "GOURNAY SUR MARNE", + "nomCommune": "GOURNAY SUR MARNE" }, { - "codePostal": "89420", - "codeCommune": "89351", - "libelleAcheminement": "STE MAGNANCE", - "nomCommune": "STE MAGNANCE" + "codePostal": "79430", + "codeCommune": "79076", + "libelleAcheminement": "LA CHAPELLE ST LAURENT", + "nomCommune": "LA CHAPELLE ST LAURENT" }, { - "codePostal": "95270", - "codeCommune": "95331", - "libelleAcheminement": "LASSY", - "nomCommune": "LASSY" + "codePostal": "91720", + "codeCommune": "91629", + "libelleAcheminement": "VALPUISEAUX", + "nomCommune": "VALPUISEAUX" }, { - "codePostal": "81700", - "codeCommune": "81270", - "libelleAcheminement": "ST SERNIN LES LAVAUR", - "nomCommune": "ST SERNIN LES LAVAUR" + "codePostal": "76560", + "codeCommune": "76757", + "libelleAcheminement": "YVECRIQUE", + "nomCommune": "YVECRIQUE" }, { - "codePostal": "74940", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "93190", + "codeCommune": "93046", + "libelleAcheminement": "LIVRY GARGAN", + "nomCommune": "LIVRY GARGAN" }, { - "codePostal": "89700", - "codeCommune": "89355", - "libelleAcheminement": "ST MARTIN SUR ARMANCON", - "nomCommune": "ST MARTIN SUR ARMANCON" + "codePostal": "79130", + "codeCommune": "79077", + "libelleAcheminement": "BEUGNON THIREUIL", + "nomCommune": "BEUGNON THIREUIL" }, { - "codePostal": "95450", - "codeCommune": "95348", - "libelleAcheminement": "LONGUESSE", - "nomCommune": "LONGUESSE" + "codePostal": "91370", + "codeCommune": "91645", + "libelleAcheminement": "VERRIERES LE BUISSON", + "nomCommune": "VERRIERES LE BUISSON" }, { - "codePostal": "81990", - "codeCommune": "81274", - "libelleAcheminement": "SALIES", - "nomCommune": "SALIES" + "codePostal": "76190", + "codeCommune": "76758", + "libelleAcheminement": "YVETOT", + "nomCommune": "YVETOT" }, { - "codePostal": "74930", - "codeCommune": "74015", - "libelleAcheminement": "ARBUSIGNY", - "nomCommune": "ARBUSIGNY" + "codePostal": "93430", + "codeCommune": "93079", + "libelleAcheminement": "VILLETANEUSE", + "nomCommune": "VILLETANEUSE" }, { - "codePostal": "89520", - "codeCommune": "89368", - "libelleAcheminement": "ST SAUVEUR EN PUISAYE", - "nomCommune": "ST SAUVEUR EN PUISAYE" + "codePostal": "79160", + "codeCommune": "79077", + "libelleAcheminement": "BEUGNON THIREUIL", + "nomCommune": "BEUGNON THIREUIL" }, { - "codePostal": "95630", - "codeCommune": "95392", - "libelleAcheminement": "MERIEL", - "nomCommune": "MERIEL" + "codePostal": "91710", + "codeCommune": "91649", + "libelleAcheminement": "VERT LE PETIT", + "nomCommune": "VERT LE PETIT" }, { - "codePostal": "81630", - "codeCommune": "81276", - "libelleAcheminement": "SALVAGNAC", - "nomCommune": "SALVAGNAC" + "codePostal": "76530", + "codeCommune": "76759", + "libelleAcheminement": "YVILLE SUR SEINE", + "nomCommune": "YVILLE SUR SEINE" }, { - "codePostal": "74800", - "codeCommune": "74018", - "libelleAcheminement": "ARENTHON", - "nomCommune": "ARENTHON" + "codePostal": "94480", + "codeCommune": "94001", + "libelleAcheminement": "ABLON SUR SEINE", + "nomCommune": "ABLON SUR SEINE" }, { - "codePostal": "89140", - "codeCommune": "89369", - "libelleAcheminement": "ST SEROTIN", - "nomCommune": "ST SEROTIN" + "codePostal": "79360", + "codeCommune": "79078", + "libelleAcheminement": "PLAINE D ARGENSON", + "nomCommune": "PLAINE D ARGENSON" }, { - "codePostal": "95570", - "codeCommune": "95409", - "libelleAcheminement": "MOISSELLES", - "nomCommune": "MOISSELLES" + "codePostal": "91100", + "codeCommune": "91659", + "libelleAcheminement": "VILLABE", + "nomCommune": "VILLABE" }, { - "codePostal": "81570", - "codeCommune": "81281", - "libelleAcheminement": "SEMALENS", - "nomCommune": "SEMALENS" + "codePostal": "77120", + "codeCommune": "77002", + "libelleAcheminement": "AMILLIS", + "nomCommune": "AMILLIS" }, { - "codePostal": "74380", - "codeCommune": "74021", - "libelleAcheminement": "ARTHAZ PONT NOTRE DAME", - "nomCommune": "ARTHAZ PONT NOTRE DAME" + "codePostal": "94120", + "codeCommune": "94033", + "libelleAcheminement": "FONTENAY SOUS BOIS", + "nomCommune": "FONTENAY SOUS BOIS" }, { - "codePostal": "89310", - "codeCommune": "89371", - "libelleAcheminement": "STE VERTU", - "nomCommune": "STE VERTU" + "codePostal": "79700", + "codeCommune": "79079", + "libelleAcheminement": "MAULEON", + "nomCommune": "MAULEON" }, { - "codePostal": "95770", - "codeCommune": "95429", - "libelleAcheminement": "MONTREUIL SUR EPTE", - "nomCommune": "MONTREUIL SUR EPTE" + "codePostal": "91140", + "codeCommune": "91666", + "libelleAcheminement": "VILLEJUST", + "nomCommune": "VILLEJUST" }, { - "codePostal": "81350", - "codeCommune": "81285", - "libelleAcheminement": "SERENAC", - "nomCommune": "SERENAC" + "codePostal": "77760", + "codeCommune": "77003", + "libelleAcheminement": "AMPONVILLE", + "nomCommune": "AMPONVILLE" }, { - "codePostal": "74130", - "codeCommune": "74024", - "libelleAcheminement": "AYSE", - "nomCommune": "AYSE" + "codePostal": "94490", + "codeCommune": "94055", + "libelleAcheminement": "ORMESSON SUR MARNE", + "nomCommune": "ORMESSON SUR MARNE" }, { - "codePostal": "89250", - "codeCommune": "89382", - "libelleAcheminement": "SEIGNELAY", - "nomCommune": "SEIGNELAY" + "codePostal": "79700", + "codeCommune": "79079", + "libelleAcheminement": "MAULEON", + "nomCommune": "MAULEON" }, { - "codePostal": "95560", - "codeCommune": "95430", - "libelleAcheminement": "MONTSOULT", - "nomCommune": "MONTSOULT" + "codePostal": "91360", + "codeCommune": "91667", + "libelleAcheminement": "VILLEMOISSON SUR ORGE", + "nomCommune": "VILLEMOISSON SUR ORGE" }, { - "codePostal": "81220", - "codeCommune": "81286", - "libelleAcheminement": "SERVIES", - "nomCommune": "SERVIES" + "codePostal": "77910", + "codeCommune": "77023", + "libelleAcheminement": "BARCY", + "nomCommune": "BARCY" }, { - "codePostal": "74160", - "codeCommune": "74031", - "libelleAcheminement": "BEAUMONT", - "nomCommune": "BEAUMONT" + "codePostal": "94520", + "codeCommune": "94056", + "libelleAcheminement": "PERIGNY SUR YERRES", + "nomCommune": "PERIGNY" }, { - "codePostal": "89710", - "codeCommune": "89384", - "libelleAcheminement": "SENAN", - "nomCommune": "SENAN" + "codePostal": "79110", + "codeCommune": "79083", + "libelleAcheminement": "CHEF BOUTONNE", + "nomCommune": "CHEF BOUTONNE" }, { - "codePostal": "95590", - "codeCommune": "95452", - "libelleAcheminement": "NOINTEL", - "nomCommune": "NOINTEL" + "codePostal": "92230", + "codeCommune": "92036", + "libelleAcheminement": "GENNEVILLIERS", + "nomCommune": "GENNEVILLIERS" }, { - "codePostal": "81190", - "codeCommune": "81292", - "libelleAcheminement": "TANUS", - "nomCommune": "TANUS" + "codePostal": "77750", + "codeCommune": "77024", + "libelleAcheminement": "BASSEVELLE", + "nomCommune": "BASSEVELLE" }, { - "codePostal": "74150", - "codeCommune": "74035", - "libelleAcheminement": "BLOYE", - "nomCommune": "BLOYE" + "codePostal": "94100", + "codeCommune": "94068", + "libelleAcheminement": "ST MAUR DES FOSSES", + "nomCommune": "ST MAUR DES FOSSES" }, { - "codePostal": "89160", - "codeCommune": "89385", - "libelleAcheminement": "SENNEVOY LE BAS", - "nomCommune": "SENNEVOY LE BAS" + "codePostal": "79170", + "codeCommune": "79085", + "libelleAcheminement": "CHERIGNE", + "nomCommune": "CHERIGNE" }, { - "codePostal": "95450", - "codeCommune": "95483", - "libelleAcheminement": "LE PERCHAY", - "nomCommune": "LE PERCHAY" + "codePostal": "92430", + "codeCommune": "92047", + "libelleAcheminement": "MARNES LA COQUETTE", + "nomCommune": "MARNES LA COQUETTE" }, { - "codePostal": "81220", - "codeCommune": "81299", - "libelleAcheminement": "TEYSSODE", - "nomCommune": "TEYSSODE" + "codePostal": "77390", + "codeCommune": "77029", + "libelleAcheminement": "BEAUVOIR", + "nomCommune": "BEAUVOIR" }, { - "codePostal": "74290", - "codeCommune": "74036", - "libelleAcheminement": "BLUFFY", - "nomCommune": "BLUFFY" + "codePostal": "94410", + "codeCommune": "94069", + "libelleAcheminement": "ST MAURICE", + "nomCommune": "ST MAURICE" }, { - "codePostal": "89140", - "codeCommune": "89390", - "libelleAcheminement": "SERBONNES", - "nomCommune": "SERBONNES" + "codePostal": "79600", + "codeCommune": "79089", + "libelleAcheminement": "LE CHILLOU", + "nomCommune": "LE CHILLOU" }, { - "codePostal": "95350", - "codeCommune": "95489", - "libelleAcheminement": "PISCOP", - "nomCommune": "PISCOP" + "codePostal": "92310", + "codeCommune": "92072", + "libelleAcheminement": "SEVRES", + "nomCommune": "SEVRES" }, { - "codePostal": "81170", - "codeCommune": "81300", - "libelleAcheminement": "TONNAC", - "nomCommune": "TONNAC" + "codePostal": "77320", + "codeCommune": "77032", + "libelleAcheminement": "BETON BAZOCHES", + "nomCommune": "BETON BAZOCHES" }, { - "codePostal": "74360", - "codeCommune": "74041", - "libelleAcheminement": "BONNEVAUX", - "nomCommune": "BONNEVAUX" + "codePostal": "94460", + "codeCommune": "94074", + "libelleAcheminement": "VALENTON", + "nomCommune": "VALENTON" }, { - "codePostal": "89140", - "codeCommune": "89391", - "libelleAcheminement": "SERGINES", - "nomCommune": "SERGINES" + "codePostal": "79170", + "codeCommune": "79090", + "libelleAcheminement": "CHIZE", + "nomCommune": "CHIZE" }, { - "codePostal": "95000", - "codeCommune": "95500", - "libelleAcheminement": "PONTOISE", - "nomCommune": "PONTOISE" + "codePostal": "92170", + "codeCommune": "92075", + "libelleAcheminement": "VANVES", + "nomCommune": "VANVES" }, { - "codePostal": "81190", - "codeCommune": "81302", - "libelleAcheminement": "TREBAN", - "nomCommune": "TREBAN" + "codePostal": "77720", + "codeCommune": "77044", + "libelleAcheminement": "BOMBON", + "nomCommune": "BOMBON" }, { - "codePostal": "74230", - "codeCommune": "74045", - "libelleAcheminement": "LE BOUCHET MONT CHARVIN", - "nomCommune": "LE BOUCHET" + "codePostal": "94460", + "codeCommune": "94074", + "libelleAcheminement": "VALENTON", + "nomCommune": "VALENTON" }, { - "codePostal": "89270", - "codeCommune": "89394", - "libelleAcheminement": "SERY", - "nomCommune": "SERY" + "codePostal": "79350", + "codeCommune": "79094", + "libelleAcheminement": "CLESSE", + "nomCommune": "CLESSE" }, { - "codePostal": "95780", - "codeCommune": "95523", - "libelleAcheminement": "LA ROCHE GUYON", - "nomCommune": "LA ROCHE GUYON" + "codePostal": "93300", + "codeCommune": "93001", + "libelleAcheminement": "AUBERVILLIERS", + "nomCommune": "AUBERVILLIERS" }, { - "codePostal": "81440", - "codeCommune": "81311", - "libelleAcheminement": "VENES", - "nomCommune": "VENES" + "codePostal": "77470", + "codeCommune": "77049", + "libelleAcheminement": "BOUTIGNY", + "nomCommune": "BOUTIGNY" }, { - "codePostal": "74890", - "codeCommune": "74048", - "libelleAcheminement": "BRENTHONNE", - "nomCommune": "BRENTHONNE" + "codePostal": "94440", + "codeCommune": "94075", + "libelleAcheminement": "VILLECRESNES", + "nomCommune": "VILLECRESNES" }, { - "codePostal": "89430", - "codeCommune": "89407", - "libelleAcheminement": "TANLAY", - "nomCommune": "TANLAY" + "codePostal": "79140", + "codeCommune": "79096", + "libelleAcheminement": "COMBRAND", + "nomCommune": "COMBRAND" }, { - "codePostal": "95450", - "codeCommune": "95535", - "libelleAcheminement": "SAGY", - "nomCommune": "SAGY" + "codePostal": "93170", + "codeCommune": "93006", + "libelleAcheminement": "BAGNOLET", + "nomCommune": "BAGNOLET" }, { - "codePostal": "81110", - "codeCommune": "81312", - "libelleAcheminement": "VERDALLE", - "nomCommune": "VERDALLE" + "codePostal": "77480", + "codeCommune": "77051", + "libelleAcheminement": "BRAY SUR SEINE", + "nomCommune": "BRAY SUR SEINE" }, { - "codePostal": "74420", - "codeCommune": "74050", - "libelleAcheminement": "BURDIGNIN", - "nomCommune": "BURDIGNIN" + "codePostal": "94190", + "codeCommune": "94078", + "libelleAcheminement": "VILLENEUVE ST GEORGES", + "nomCommune": "VILLENEUVE ST GEORGES" }, { - "codePostal": "89430", - "codeCommune": "89407", - "libelleAcheminement": "TANLAY", - "nomCommune": "TANLAY" + "codePostal": "79330", + "codeCommune": "79102", + "libelleAcheminement": "COULONGES THOUARSAIS", + "nomCommune": "COULONGES THOUARSAIS" }, { - "codePostal": "95770", - "codeCommune": "95541", - "libelleAcheminement": "ST CLAIR SUR EPTE", - "nomCommune": "ST CLAIR SUR EPTE" + "codePostal": "93000", + "codeCommune": "93008", + "libelleAcheminement": "BOBIGNY", + "nomCommune": "BOBIGNY" }, { - "codePostal": "81240", - "codeCommune": "81321", - "libelleAcheminement": "LE VINTROU", - "nomCommune": "LE VINTROU" + "codePostal": "77750", + "codeCommune": "77057", + "libelleAcheminement": "BUSSIERES", + "nomCommune": "BUSSIERES" }, { - "codePostal": "74540", - "codeCommune": "74054", - "libelleAcheminement": "CHAINAZ LES FRASSES", - "nomCommune": "CHAINAZ LES FRASSES" + "codePostal": "95450", + "codeCommune": "95002", + "libelleAcheminement": "ABLEIGES", + "nomCommune": "ABLEIGES" }, { - "codePostal": "89190", - "codeCommune": "89411", - "libelleAcheminement": "LES VALLEES DE LA VANNE", - "nomCommune": "LES VALLEES DE LA VANNE" + "codePostal": "79400", + "codeCommune": "79114", + "libelleAcheminement": "EXIREUIL", + "nomCommune": "EXIREUIL" }, { - "codePostal": "95270", - "codeCommune": "95566", - "libelleAcheminement": "ST MARTIN DU TERTRE", - "nomCommune": "ST MARTIN DU TERTRE" + "codePostal": "93470", + "codeCommune": "93015", + "libelleAcheminement": "COUBRON", + "nomCommune": "COUBRON" }, { - "codePostal": "82120", - "codeCommune": "82004", - "libelleAcheminement": "ASQUES", - "nomCommune": "ASQUES" + "codePostal": "77460", + "codeCommune": "77071", + "libelleAcheminement": "CHAINTREAUX", + "nomCommune": "CHAINTREAUX" }, { - "codePostal": "74400", - "codeCommune": "74056", - "libelleAcheminement": "CHAMONIX MONT BLANC", - "nomCommune": "CHAMONIX MONT BLANC" + "codePostal": "95510", + "codeCommune": "95012", + "libelleAcheminement": "AMENUCOURT", + "nomCommune": "AMENUCOURT" }, { - "codePostal": "89260", - "codeCommune": "89414", - "libelleAcheminement": "THORIGNY SUR OREUSE", - "nomCommune": "THORIGNY SUR OREUSE" + "codePostal": "79160", + "codeCommune": "79119", + "libelleAcheminement": "FENIOUX", + "nomCommune": "FENIOUX" }, { - "codePostal": "95270", - "codeCommune": "95594", - "libelleAcheminement": "SEUGY", - "nomCommune": "SEUGY" + "codePostal": "93800", + "codeCommune": "93031", + "libelleAcheminement": "EPINAY SUR SEINE", + "nomCommune": "EPINAY SUR SEINE" }, { - "codePostal": "82800", - "codeCommune": "82018", - "libelleAcheminement": "BIOULE", - "nomCommune": "BIOULE" + "codePostal": "77171", + "codeCommune": "77072", + "libelleAcheminement": "CHALAUTRE LA GRANDE", + "nomCommune": "CHALAUTRE LA GRANDE" }, { - "codePostal": "74540", - "codeCommune": "74061", - "libelleAcheminement": "CHAPEIRY", - "nomCommune": "CHAPEIRY" + "codePostal": "95420", + "codeCommune": "95024", + "libelleAcheminement": "ARTHIES", + "nomCommune": "ARTHIES" }, { - "codePostal": "89700", - "codeCommune": "89418", - "libelleAcheminement": "TONNERRE", - "nomCommune": "TONNERRE" + "codePostal": "79390", + "codeCommune": "79120", + "libelleAcheminement": "LA FERRIERE EN PARTHENAY", + "nomCommune": "LA FERRIERE EN PARTHENAY" }, { - "codePostal": "95150", - "codeCommune": "95607", - "libelleAcheminement": "TAVERNY", - "nomCommune": "TAVERNY" + "codePostal": "93220", + "codeCommune": "93032", + "libelleAcheminement": "GAGNY", + "nomCommune": "GAGNY" }, { - "codePostal": "82110", - "codeCommune": "82021", - "libelleAcheminement": "BOULOC EN QUERCY", - "nomCommune": "BOULOC EN QUERCY" + "codePostal": "77160", + "codeCommune": "77073", + "libelleAcheminement": "CHALAUTRE LA PETITE", + "nomCommune": "CHALAUTRE LA PETITE" }, { - "codePostal": "74390", - "codeCommune": "74063", - "libelleAcheminement": "CHATEL", - "nomCommune": "CHATEL" + "codePostal": "95570", + "codeCommune": "95028", + "libelleAcheminement": "ATTAINVILLE", + "nomCommune": "ATTAINVILLE" }, { - "codePostal": "89130", - "codeCommune": "89419", - "libelleAcheminement": "TOUCY", - "nomCommune": "TOUCY" + "codePostal": "79380", + "codeCommune": "79123", + "libelleAcheminement": "LA FORET SUR SEVRE", + "nomCommune": "LA FORET SUR SEVRE" }, { - "codePostal": "95810", - "codeCommune": "95627", - "libelleAcheminement": "VALLANGOUJARD", - "nomCommune": "VALLANGOUJARD" + "codePostal": "93130", + "codeCommune": "93053", + "libelleAcheminement": "NOISY LE SEC", + "nomCommune": "NOISY LE SEC" }, { - "codePostal": "82700", - "codeCommune": "82023", - "libelleAcheminement": "BOURRET", - "nomCommune": "BOURRET" + "codePostal": "77430", + "codeCommune": "77079", + "libelleAcheminement": "CHAMPAGNE SUR SEINE", + "nomCommune": "CHAMPAGNE SUR SEINE" }, { - "codePostal": "74270", - "codeCommune": "74068", - "libelleAcheminement": "CHENE EN SEMINE", - "nomCommune": "CHENE EN SEMINE" + "codePostal": "95560", + "codeCommune": "95042", + "libelleAcheminement": "BAILLET EN FRANCE", + "nomCommune": "BAILLET EN FRANCE" }, { - "codePostal": "89580", - "codeCommune": "89427", - "libelleAcheminement": "VALLAN", - "nomCommune": "VALLAN" + "codePostal": "79380", + "codeCommune": "79123", + "libelleAcheminement": "LA FORET SUR SEVRE", + "nomCommune": "LA FORET SUR SEVRE" }, { - "codePostal": "95450", - "codeCommune": "95658", - "libelleAcheminement": "VIGNY", - "nomCommune": "VIGNY" + "codePostal": "93310", + "codeCommune": "93061", + "libelleAcheminement": "LE PRE ST GERVAIS", + "nomCommune": "LE PRE ST GERVAIS" }, { - "codePostal": "82170", - "codeCommune": "82028", - "libelleAcheminement": "CANALS", - "nomCommune": "CANALS" + "codePostal": "77390", + "codeCommune": "77081", + "libelleAcheminement": "CHAMPDEUIL", + "nomCommune": "CHAMPDEUIL" }, { - "codePostal": "74500", - "codeCommune": "74073", - "libelleAcheminement": "CHEVENOZ", - "nomCommune": "CHEVENOZ" + "codePostal": "95270", + "codeCommune": "95055", + "libelleAcheminement": "BELLEFONTAINE", + "nomCommune": "BELLEFONTAINE" }, { - "codePostal": "89420", - "codeCommune": "89431", - "libelleAcheminement": "VASSY SOUS PISY", - "nomCommune": "VASSY SOUS PISY" + "codePostal": "79340", + "codeCommune": "79124", + "libelleAcheminement": "LES FORGES", + "nomCommune": "LES FORGES" }, { - "codePostal": "95400", - "codeCommune": "95680", - "libelleAcheminement": "VILLIERS LE BEL", - "nomCommune": "VILLIERS LE BEL" + "codePostal": "93270", + "codeCommune": "93071", + "libelleAcheminement": "SEVRAN", + "nomCommune": "SEVRAN" }, { - "codePostal": "82160", - "codeCommune": "82029", - "libelleAcheminement": "CASTANET", - "nomCommune": "CASTANET" + "codePostal": "77720", + "codeCommune": "77082", + "libelleAcheminement": "CHAMPEAUX", + "nomCommune": "CHAMPEAUX" }, { - "codePostal": "74270", - "codeCommune": "74077", - "libelleAcheminement": "CLARAFOND ARCINE", - "nomCommune": "CLARAFOND ARCINE" + "codePostal": "95270", + "codeCommune": "95056", + "libelleAcheminement": "BELLOY EN FRANCE", + "nomCommune": "BELLOY EN FRANCE" }, { - "codePostal": "89320", - "codeCommune": "89434", - "libelleAcheminement": "VAUMORT", - "nomCommune": "VAUMORT" + "codePostal": "79330", + "codeCommune": "79134", + "libelleAcheminement": "GLENAY", + "nomCommune": "GLENAY" }, { - "codePostal": "95420", - "codeCommune": "95690", - "libelleAcheminement": "WY DIT JOLI VILLAGE", - "nomCommune": "WY DIT JOLI VILLAGE" + "codePostal": "94140", + "codeCommune": "94002", + "libelleAcheminement": "ALFORTVILLE", + "nomCommune": "ALFORTVILLE" }, { - "codePostal": "82210", - "codeCommune": "82031", - "libelleAcheminement": "CASTELMAYRAN", - "nomCommune": "CASTELMAYRAN" + "codePostal": "77590", + "codeCommune": "77096", + "libelleAcheminement": "CHARTRETTES", + "nomCommune": "CHARTRETTES" }, { - "codePostal": "74220", - "codeCommune": "74080", - "libelleAcheminement": "LA CLUSAZ", - "nomCommune": "LA CLUSAZ" + "codePostal": "95650", + "codeCommune": "95078", + "libelleAcheminement": "BOISSY L AILLERIE", + "nomCommune": "BOISSY L AILLERIE" }, { - "codePostal": "89290", - "codeCommune": "89438", - "libelleAcheminement": "VENOY", - "nomCommune": "VENOY" + "codePostal": "79360", + "codeCommune": "79137", + "libelleAcheminement": "GRANZAY GRIPT", + "nomCommune": "GRANZAY GRIPT" }, { - "codePostal": "97139", - "codeCommune": "97101", - "libelleAcheminement": "LES ABYMES", - "nomCommune": "LES ABYMES" + "codePostal": "94470", + "codeCommune": "94004", + "libelleAcheminement": "BOISSY ST LEGER", + "nomCommune": "BOISSY ST LEGER" }, { - "codePostal": "82400", - "codeCommune": "82032", - "libelleAcheminement": "CASTELSAGRAT", - "nomCommune": "CASTELSAGRAT" + "codePostal": "77390", + "codeCommune": "77107", + "libelleAcheminement": "CHAUMES EN BRIE", + "nomCommune": "CHAUMES EN BRIE" }, { - "codePostal": "74350", - "codeCommune": "74088", - "libelleAcheminement": "COPPONEX", - "nomCommune": "COPPONEX" + "codePostal": "95000", + "codeCommune": "95127", + "libelleAcheminement": "CERGY", + "nomCommune": "CERGY" }, { - "codePostal": "89150", - "codeCommune": "89442", - "libelleAcheminement": "VERNOY", - "nomCommune": "VERNOY" + "codePostal": "79600", + "codeCommune": "79141", + "libelleAcheminement": "IRAIS", + "nomCommune": "IRAIS" }, { - "codePostal": "97100", - "codeCommune": "97105", - "libelleAcheminement": "BASSE TERRE", - "nomCommune": "BASSE TERRE" + "codePostal": "94220", + "codeCommune": "94018", + "libelleAcheminement": "CHARENTON LE PONT", + "nomCommune": "CHARENTON LE PONT" }, { - "codePostal": "82240", - "codeCommune": "82040", - "libelleAcheminement": "CAYRIECH", - "nomCommune": "CAYRIECH" + "codePostal": "77320", + "codeCommune": "77113", + "libelleAcheminement": "CHEVRU", + "nomCommune": "CHEVRU" }, { - "codePostal": "74700", - "codeCommune": "74089", - "libelleAcheminement": "CORDON", - "nomCommune": "CORDON" + "codePostal": "95420", + "codeCommune": "95139", + "libelleAcheminement": "LA CHAPELLE EN VEXIN", + "nomCommune": "LA CHAPELLE EN VEXIN" }, { - "codePostal": "89510", - "codeCommune": "89443", - "libelleAcheminement": "VERON", - "nomCommune": "VERON" + "codePostal": "79110", + "codeCommune": "79154", + "libelleAcheminement": "LOUBILLE", + "nomCommune": "LOUBILLE" }, { - "codePostal": "97125", - "codeCommune": "97106", - "libelleAcheminement": "BOUILLANTE", - "nomCommune": "BOUILLANTE" + "codePostal": "94550", + "codeCommune": "94021", + "libelleAcheminement": "CHEVILLY LARUE", + "nomCommune": "CHEVILLY LARUE" }, { - "codePostal": "82500", - "codeCommune": "82047", - "libelleAcheminement": "CUMONT", - "nomCommune": "CUMONT" + "codePostal": "77173", + "codeCommune": "77114", + "libelleAcheminement": "CHEVRY COSSIGNY", + "nomCommune": "CHEVRY COSSIGNY" }, { - "codePostal": "74150", - "codeCommune": "74095", - "libelleAcheminement": "CREMPIGNY BONNEGUETE", - "nomCommune": "CREMPIGNY BONNEGUETE" + "codePostal": "95750", + "codeCommune": "95142", + "libelleAcheminement": "CHARS", + "nomCommune": "CHARS" }, { - "codePostal": "89700", - "codeCommune": "89447", - "libelleAcheminement": "VEZINNES", - "nomCommune": "VEZINNES" + "codePostal": "79100", + "codeCommune": "79157", + "libelleAcheminement": "LOUZY", + "nomCommune": "LOUZY" }, { - "codePostal": "97130", - "codeCommune": "97107", - "libelleAcheminement": "CAPESTERRE BELLE EAU", - "nomCommune": "CAPESTERRE BELLE EAU" + "codePostal": "94600", + "codeCommune": "94022", + "libelleAcheminement": "CHOISY LE ROI", + "nomCommune": "CHOISY LE ROI" }, { - "codePostal": "82700", - "codeCommune": "82052", - "libelleAcheminement": "ESCATALENS", - "nomCommune": "ESCATALENS" + "codePostal": "77410", + "codeCommune": "77118", + "libelleAcheminement": "CLAYE SOUILLY", + "nomCommune": "CLAYE SOUILLY" }, { - "codePostal": "74350", - "codeCommune": "74096", - "libelleAcheminement": "CRUSEILLES", - "nomCommune": "CRUSEILLES" + "codePostal": "95190", + "codeCommune": "95144", + "libelleAcheminement": "CHATENAY EN FRANCE", + "nomCommune": "CHATENAY EN FRANCE" }, { - "codePostal": "89340", - "codeCommune": "89460", - "libelleAcheminement": "VILLENEUVE LA GUYARD", - "nomCommune": "VILLENEUVE LA GUYARD" + "codePostal": "79170", + "codeCommune": "79160", + "libelleAcheminement": "LUSSERAY", + "nomCommune": "LUSSERAY" }, { - "codePostal": "97127", - "codeCommune": "97110", - "libelleAcheminement": "LA DESIRADE", - "nomCommune": "LA DESIRADE" + "codePostal": "94240", + "codeCommune": "94038", + "libelleAcheminement": "L HAY LES ROSES", + "nomCommune": "L HAY LES ROSES" }, { - "codePostal": "82140", - "codeCommune": "82061", - "libelleAcheminement": "FENEYROLS", - "nomCommune": "FENEYROLS" + "codePostal": "77380", + "codeCommune": "77122", + "libelleAcheminement": "COMBS LA VILLE", + "nomCommune": "COMBS LA VILLE" }, { - "codePostal": "74270", - "codeCommune": "74107", - "libelleAcheminement": "DROISY", - "nomCommune": "DROISY" + "codePostal": "95420", + "codeCommune": "95166", + "libelleAcheminement": "CLERY EN VEXIN", + "nomCommune": "CLERY EN VEXIN" }, { - "codePostal": "89140", - "codeCommune": "89465", - "libelleAcheminement": "VILLEPERROT", - "nomCommune": "VILLEPERROT" + "codePostal": "79460", + "codeCommune": "79162", + "libelleAcheminement": "MAGNE", + "nomCommune": "MAGNE" }, { - "codePostal": "97190", - "codeCommune": "97113", - "libelleAcheminement": "LE GOSIER", - "nomCommune": "LE GOSIER" + "codePostal": "94200", + "codeCommune": "94041", + "libelleAcheminement": "IVRY SUR SEINE", + "nomCommune": "IVRY SUR SEINE" }, { - "codePostal": "82400", - "codeCommune": "82065", - "libelleAcheminement": "GASQUES", - "nomCommune": "GASQUES" + "codePostal": "77440", + "codeCommune": "77126", + "libelleAcheminement": "CONGIS SUR THEROUANNE", + "nomCommune": "CONGIS SUR THEROUANNE" }, { - "codePostal": "74410", - "codeCommune": "74108", - "libelleAcheminement": "DUINGT", - "nomCommune": "DUINGT" + "codePostal": "95330", + "codeCommune": "95199", + "libelleAcheminement": "DOMONT", + "nomCommune": "DOMONT" }, { - "codePostal": "89330", - "codeCommune": "89468", - "libelleAcheminement": "VILLEVALLIER", - "nomCommune": "VILLEVALLIER" + "codePostal": "79500", + "codeCommune": "79164", + "libelleAcheminement": "MAISONNAY", + "nomCommune": "MAISONNAY" }, { - "codePostal": "97128", - "codeCommune": "97114", - "libelleAcheminement": "GOYAVE", - "nomCommune": "GOYAVE" + "codePostal": "94270", + "codeCommune": "94043", + "libelleAcheminement": "LE KREMLIN BICETRE", + "nomCommune": "LE KREMLIN BICETRE" }, { - "codePostal": "82500", - "codeCommune": "82068", - "libelleAcheminement": "GIMAT", - "nomCommune": "GIMAT" + "codePostal": "77170", + "codeCommune": "77127", + "libelleAcheminement": "COUBERT", + "nomCommune": "COUBERT" }, { - "codePostal": "74330", - "codeCommune": "74112", - "libelleAcheminement": "EPAGNY METZ TESSY", - "nomCommune": "EPAGNY METZ TESSY" + "codePostal": "95460", + "codeCommune": "95229", + "libelleAcheminement": "EZANVILLE", + "nomCommune": "EZANVILLE" }, { - "codePostal": "89260", - "codeCommune": "89469", - "libelleAcheminement": "PERCENEIGE", - "nomCommune": "PERCENEIGE" + "codePostal": "79360", + "codeCommune": "79166", + "libelleAcheminement": "MARIGNY", + "nomCommune": "MARIGNY" }, { - "codePostal": "97120", - "codeCommune": "97124", - "libelleAcheminement": "ST CLAUDE", - "nomCommune": "ST CLAUDE" + "codePostal": "94450", + "codeCommune": "94044", + "libelleAcheminement": "LIMEIL BREVANNES", + "nomCommune": "LIMEIL BREVANNES" }, { - "codePostal": "82170", - "codeCommune": "82075", - "libelleAcheminement": "GRISOLLES", - "nomCommune": "GRISOLLES" + "codePostal": "77390", + "codeCommune": "77138", + "libelleAcheminement": "COURTOMER", + "nomCommune": "COURTOMER" }, { - "codePostal": "74100", - "codeCommune": "74118", - "libelleAcheminement": "ETREMBIERES", - "nomCommune": "ETREMBIERES" + "codePostal": "95830", + "codeCommune": "95254", + "libelleAcheminement": "FREMECOURT", + "nomCommune": "FREMECOURT" }, { - "codePostal": "89260", - "codeCommune": "89469", - "libelleAcheminement": "PERCENEIGE", - "nomCommune": "PERCENEIGE" + "codePostal": "79210", + "codeCommune": "79170", + "libelleAcheminement": "MAUZE SUR LE MIGNON", + "nomCommune": "MAUZE SUR LE MIGNON" }, { - "codePostal": "97118", - "codeCommune": "97125", - "libelleAcheminement": "ST FRANCOIS", - "nomCommune": "ST FRANCOIS" + "codePostal": "94880", + "codeCommune": "94053", + "libelleAcheminement": "NOISEAU", + "nomCommune": "NOISEAU" }, { - "codePostal": "82130", - "codeCommune": "82076", - "libelleAcheminement": "L HONOR DE COS", - "nomCommune": "L HONOR DE COS" + "codePostal": "77154", + "codeCommune": "77140", + "libelleAcheminement": "COUTENCON", + "nomCommune": "COUTENCON" }, { - "codePostal": "74130", - "codeCommune": "74122", - "libelleAcheminement": "FAUCIGNY", - "nomCommune": "FAUCIGNY" + "codePostal": "95500", + "codeCommune": "95277", + "libelleAcheminement": "GONESSE", + "nomCommune": "GONESSE" }, { - "codePostal": "89130", - "codeCommune": "89472", - "libelleAcheminement": "VILLIERS ST BENOIT", - "nomCommune": "VILLIERS ST BENOIT" + "codePostal": "79500", + "codeCommune": "79174", + "libelleAcheminement": "MELLE", + "nomCommune": "MELLE" }, { - "codePostal": "97134", - "codeCommune": "97126", - "libelleAcheminement": "ST LOUIS", - "nomCommune": "ST LOUIS" + "codePostal": "94310", + "codeCommune": "94054", + "libelleAcheminement": "ORLY", + "nomCommune": "ORLY" }, { - "codePostal": "82100", - "codeCommune": "82080", - "libelleAcheminement": "LABASTIDE DU TEMPLE", - "nomCommune": "LABASTIDE DU TEMPLE" + "codePostal": "77124", + "codeCommune": "77143", + "libelleAcheminement": "CREGY LES MEAUX", + "nomCommune": "CREGY LES MEAUX" }, { - "codePostal": "74500", - "codeCommune": "74127", - "libelleAcheminement": "FETERNES", - "nomCommune": "FETERNES" + "codePostal": "95410", + "codeCommune": "95288", + "libelleAcheminement": "GROSLAY", + "nomCommune": "GROSLAY" }, { - "codePostal": "89140", - "codeCommune": "89480", - "libelleAcheminement": "VINNEUF", - "nomCommune": "VINNEUF" + "codePostal": "79190", + "codeCommune": "79175", + "libelleAcheminement": "MELLERAN", + "nomCommune": "MELLERAN" }, { - "codePostal": "97216", - "codeCommune": "97201", - "libelleAcheminement": "L AJOUPA BOUILLON", - "nomCommune": "L AJOUPA BOUILLON" + "codePostal": "94320", + "codeCommune": "94073", + "libelleAcheminement": "THIAIS", + "nomCommune": "THIAIS" }, { - "codePostal": "82360", - "codeCommune": "82089", - "libelleAcheminement": "LAMAGISTERE", - "nomCommune": "LAMAGISTERE" + "codePostal": "77183", + "codeCommune": "77146", + "libelleAcheminement": "CROISSY BEAUBOURG", + "nomCommune": "CROISSY BEAUBOURG" }, { - "codePostal": "74240", - "codeCommune": "74133", - "libelleAcheminement": "GAILLARD", - "nomCommune": "GAILLARD" + "codePostal": "95450", + "codeCommune": "95295", + "libelleAcheminement": "GUIRY EN VEXIN", + "nomCommune": "GUIRY EN VEXIN" }, { - "codePostal": "89700", - "codeCommune": "89482", - "libelleAcheminement": "VIVIERS", - "nomCommune": "VIVIERS" + "codePostal": "79320", + "codeCommune": "79179", + "libelleAcheminement": "MONCOUTANT SUR SEVRE", + "nomCommune": "MONCOUTANT SUR SEVRE" }, { - "codePostal": "97232", - "codeCommune": "97213", - "libelleAcheminement": "LE LAMENTIN", - "nomCommune": "LE LAMENTIN" + "codePostal": "94400", + "codeCommune": "94081", + "libelleAcheminement": "VITRY SUR SEINE", + "nomCommune": "VITRY SUR SEINE" }, { - "codePostal": "82500", - "codeCommune": "82091", - "libelleAcheminement": "LAMOTHE CUMONT", - "nomCommune": "LAMOTHE CUMONT" + "codePostal": "77320", + "codeCommune": "77151", + "libelleAcheminement": "DAGNY", + "nomCommune": "DAGNY" }, { - "codePostal": "74210", - "codeCommune": "74147", - "libelleAcheminement": "LATHUILE", - "nomCommune": "LATHUILE" + "codePostal": "95640", + "codeCommune": "95298", + "libelleAcheminement": "HARAVILLIERS", + "nomCommune": "HARAVILLIERS" }, { - "codePostal": "89700", - "codeCommune": "89486", - "libelleAcheminement": "YROUERRE", - "nomCommune": "YROUERRE" + "codePostal": "79800", + "codeCommune": "79184", + "libelleAcheminement": "LA MOTHE ST HERAY", + "nomCommune": "LA MOTHE ST HERAY" }, { - "codePostal": "97260", - "codeCommune": "97218", - "libelleAcheminement": "LE MORNE ROUGE", - "nomCommune": "LE MORNE ROUGE" + "codePostal": "95100", + "codeCommune": "95018", + "libelleAcheminement": "ARGENTEUIL", + "nomCommune": "ARGENTEUIL" }, { - "codePostal": "82200", - "codeCommune": "82099", - "libelleAcheminement": "LIZAC", - "nomCommune": "LIZAC" + "codePostal": "77163", + "codeCommune": "77154", + "libelleAcheminement": "DAMMARTIN SUR TIGEAUX", + "nomCommune": "DAMMARTIN SUR TIGEAUX" }, { - "codePostal": "74320", - "codeCommune": "74148", - "libelleAcheminement": "LESCHAUX", - "nomCommune": "LESCHAUX" + "codePostal": "95420", + "codeCommune": "95309", + "libelleAcheminement": "HODENT", + "nomCommune": "HODENT" }, { - "codePostal": "90150", - "codeCommune": "90002", - "libelleAcheminement": "ANGEOT", - "nomCommune": "ANGEOT" + "codePostal": "79130", + "codeCommune": "79190", + "libelleAcheminement": "NEUVY BOUIN", + "nomCommune": "NEUVY BOUIN" }, { - "codePostal": "97250", - "codeCommune": "97225", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "95450", + "codeCommune": "95040", + "libelleAcheminement": "AVERNES", + "nomCommune": "AVERNES" }, { - "codePostal": "82440", - "codeCommune": "82110", - "libelleAcheminement": "MIRABEL", - "nomCommune": "MIRABEL" + "codePostal": "77400", + "codeCommune": "77155", + "libelleAcheminement": "DAMPMART", + "nomCommune": "DAMPMART" }, { - "codePostal": "74140", - "codeCommune": "74150", - "libelleAcheminement": "LOISIN", - "nomCommune": "LOISIN" + "codePostal": "95280", + "codeCommune": "95323", + "libelleAcheminement": "JOUY LE MOUTIER", + "nomCommune": "JOUY LE MOUTIER" }, { - "codePostal": "90170", - "codeCommune": "90003", - "libelleAcheminement": "ANJOUTEY", - "nomCommune": "ANJOUTEY" + "codePostal": "79250", + "codeCommune": "79195", + "libelleAcheminement": "NUEIL LES AUBIERS", + "nomCommune": "NUEIL LES AUBIERS" }, { - "codePostal": "97220", - "codeCommune": "97230", - "libelleAcheminement": "LA TRINITE", - "nomCommune": "LA TRINITE" + "codePostal": "95340", + "codeCommune": "95058", + "libelleAcheminement": "BERNES SUR OISE", + "nomCommune": "BERNES SUR OISE" }, { - "codePostal": "82220", - "codeCommune": "82113", - "libelleAcheminement": "MOLIERES", - "nomCommune": "MOLIERES" + "codePostal": "77139", + "codeCommune": "77163", + "libelleAcheminement": "DOUY LA RAMEE", + "nomCommune": "DOUY LA RAMEE" }, { - "codePostal": "74380", - "codeCommune": "74153", - "libelleAcheminement": "LUCINGES", - "nomCommune": "LUCINGES" + "codePostal": "95270", + "codeCommune": "95352", + "libelleAcheminement": "LUZARCHES", + "nomCommune": "LUZARCHES" }, { - "codePostal": "90800", - "codeCommune": "90007", - "libelleAcheminement": "BANVILLARS", - "nomCommune": "BANVILLARS" + "codePostal": "79100", + "codeCommune": "79196", + "libelleAcheminement": "PLAINE ET VALLEES", + "nomCommune": "PLAINE ET VALLEES" }, { - "codePostal": "97226", - "codeCommune": "97233", - "libelleAcheminement": "LE MORNE VERT", - "nomCommune": "LE MORNE VERT" + "codePostal": "95550", + "codeCommune": "95060", + "libelleAcheminement": "BESSANCOURT", + "nomCommune": "BESSANCOURT" }, { - "codePostal": "82150", - "codeCommune": "82117", - "libelleAcheminement": "MONTAIGU DE QUERCY", - "nomCommune": "MONTAIGU DE QUERCY" + "codePostal": "77830", + "codeCommune": "77164", + "libelleAcheminement": "ECHOUBOULAINS", + "nomCommune": "ECHOUBOULAINS" }, { - "codePostal": "74200", - "codeCommune": "74157", - "libelleAcheminement": "LYAUD", - "nomCommune": "LYAUD" + "codePostal": "95560", + "codeCommune": "95353", + "libelleAcheminement": "MAFFLIERS", + "nomCommune": "MAFFLIERS" }, { - "codePostal": "90160", - "codeCommune": "90012", - "libelleAcheminement": "BESSONCOURT", - "nomCommune": "BESSONCOURT" + "codePostal": "79100", + "codeCommune": "79196", + "libelleAcheminement": "PLAINE ET VALLEES", + "nomCommune": "PLAINE ET VALLEES" }, { - "codePostal": "97310", - "codeCommune": "97304", - "libelleAcheminement": "KOUROU", - "nomCommune": "KOUROU" + "codePostal": "95840", + "codeCommune": "95061", + "libelleAcheminement": "BETHEMONT LA FORET", + "nomCommune": "BETHEMONT LA FORET" }, { - "codePostal": "82700", - "codeCommune": "82125", - "libelleAcheminement": "MONTECH", - "nomCommune": "MONTECH" + "codePostal": "77184", + "codeCommune": "77169", + "libelleAcheminement": "EMERAINVILLE", + "nomCommune": "EMERAINVILLE" }, { - "codePostal": "74200", - "codeCommune": "74166", - "libelleAcheminement": "MARIN", - "nomCommune": "MARIN" + "codePostal": "95420", + "codeCommune": "95379", + "libelleAcheminement": "MAUDETOUR EN VEXIN", + "nomCommune": "MAUDETOUR EN VEXIN" }, { - "codePostal": "90100", - "codeCommune": "90014", - "libelleAcheminement": "BORON", - "nomCommune": "BORON" + "codePostal": "79600", + "codeCommune": "79196", + "libelleAcheminement": "PLAINE ET VALLEES", + "nomCommune": "PLAINE ET VALLEES" }, { - "codePostal": "97355", - "codeCommune": "97305", - "libelleAcheminement": "MACOURIA TONATE", - "nomCommune": "MACOURIA" + "codePostal": "95500", + "codeCommune": "95088", + "libelleAcheminement": "BONNEUIL EN FRANCE", + "nomCommune": "BONNEUIL EN FRANCE" }, { - "codePostal": "82200", - "codeCommune": "82127", - "libelleAcheminement": "MONTESQUIEU", - "nomCommune": "MONTESQUIEU" + "codePostal": "77157", + "codeCommune": "77174", + "libelleAcheminement": "EVERLY", + "nomCommune": "EVERLY" }, { - "codePostal": "74150", - "codeCommune": "74170", - "libelleAcheminement": "MASSINGY", - "nomCommune": "MASSINGY" + "codePostal": "95630", + "codeCommune": "95392", + "libelleAcheminement": "MERIEL", + "nomCommune": "MERIEL" }, { - "codePostal": "90130", - "codeCommune": "90019", - "libelleAcheminement": "BRETAGNE", - "nomCommune": "BRETAGNE" + "codePostal": "79390", + "codeCommune": "79197", + "libelleAcheminement": "OROUX", + "nomCommune": "OROUX" }, { - "codePostal": "97318", - "codeCommune": "97306", - "libelleAcheminement": "MANA", - "nomCommune": "MANA" + "codePostal": "95640", + "codeCommune": "95102", + "libelleAcheminement": "BREANCON", + "nomCommune": "BREANCON" }, { - "codePostal": "82150", - "codeCommune": "82153", - "libelleAcheminement": "ST AMANS DU PECH", - "nomCommune": "ST AMANS DU PECH" + "codePostal": "77166", + "codeCommune": "77175", + "libelleAcheminement": "EVRY GREGY SUR YERRE", + "nomCommune": "EVRY GREGY SUR YERRE" }, { - "codePostal": "74560", - "codeCommune": "74193", - "libelleAcheminement": "LA MURAZ", - "nomCommune": "LA MURAZ" + "codePostal": "95540", + "codeCommune": "95394", + "libelleAcheminement": "MERY SUR OISE", + "nomCommune": "MERY SUR OISE" }, { - "codePostal": "90800", - "codeCommune": "90020", - "libelleAcheminement": "BUC", - "nomCommune": "BUC" + "codePostal": "79100", + "codeCommune": "79203", + "libelleAcheminement": "PAS DE JEU", + "nomCommune": "PAS DE JEU" }, { - "codePostal": "97360", - "codeCommune": "97306", - "libelleAcheminement": "MANA", - "nomCommune": "MANA" + "codePostal": "95420", + "codeCommune": "95141", + "libelleAcheminement": "CHARMONT", + "nomCommune": "CHARMONT" }, { - "codePostal": "82140", - "codeCommune": "82155", - "libelleAcheminement": "ST ANTONIN NOBLE VAL", - "nomCommune": "ST ANTONIN NOBLE VAL" + "codePostal": "77590", + "codeCommune": "77188", + "libelleAcheminement": "FONTAINE LE PORT", + "nomCommune": "FONTAINE LE PORT" }, { - "codePostal": "74500", - "codeCommune": "74200", - "libelleAcheminement": "NEUVECELLE", - "nomCommune": "NEUVECELLE" + "codePostal": "95720", + "codeCommune": "95395", + "libelleAcheminement": "LE MESNIL AUBRY", + "nomCommune": "LE MESNIL AUBRY" }, { - "codePostal": "90700", - "codeCommune": "90022", - "libelleAcheminement": "CHATENOIS LES FORGES", - "nomCommune": "CHATENOIS LES FORGES" + "codePostal": "79200", + "codeCommune": "79208", + "libelleAcheminement": "LA PEYRATTE", + "nomCommune": "LA PEYRATTE" }, { - "codePostal": "97352", - "codeCommune": "97310", - "libelleAcheminement": "ROURA", - "nomCommune": "ROURA" + "codePostal": "95510", + "codeCommune": "95157", + "libelleAcheminement": "CHERENCE", + "nomCommune": "CHERENCE" }, { - "codePostal": "82110", - "codeCommune": "82164", - "libelleAcheminement": "STE JULIETTE", - "nomCommune": "STE JULIETTE" + "codePostal": "77370", + "codeCommune": "77190", + "libelleAcheminement": "FONTAINS", + "nomCommune": "FONTAINS" }, { - "codePostal": "74330", - "codeCommune": "74202", - "libelleAcheminement": "NONGLARD", - "nomCommune": "NONGLARD" + "codePostal": "95770", + "codeCommune": "95429", + "libelleAcheminement": "MONTREUIL SUR EPTE", + "nomCommune": "MONTREUIL SUR EPTE" }, { - "codePostal": "90330", - "codeCommune": "90023", - "libelleAcheminement": "CHAUX", - "nomCommune": "CHAUX" + "codePostal": "79330", + "codeCommune": "79209", + "libelleAcheminement": "PIERREFITTE", + "nomCommune": "PIERREFITTE" }, { - "codePostal": "97330", - "codeCommune": "97356", - "libelleAcheminement": "CAMOPI", - "nomCommune": "CAMOPI" + "codePostal": "95450", + "codeCommune": "95169", + "libelleAcheminement": "COMMENY", + "nomCommune": "COMMENY" }, { - "codePostal": "82300", - "codeCommune": "82174", - "libelleAcheminement": "ST VINCENT D AUTEJAC", - "nomCommune": "ST VINCENT D AUTEJAC" + "codePostal": "77165", + "codeCommune": "77193", + "libelleAcheminement": "FORFRY", + "nomCommune": "FORFRY" }, { - "codePostal": "74930", - "codeCommune": "74211", - "libelleAcheminement": "PERS JUSSY", - "nomCommune": "PERS JUSSY" + "codePostal": "95590", + "codeCommune": "95445", + "libelleAcheminement": "NERVILLE LA FORET", + "nomCommune": "NERVILLE LA FORET" }, { - "codePostal": "90100", - "codeCommune": "90030", - "libelleAcheminement": "CROIX", - "nomCommune": "CROIX" + "codePostal": "79140", + "codeCommune": "79210", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "97412", - "codeCommune": "97402", - "libelleAcheminement": "BRAS PANON", - "nomCommune": "BRAS PANON" + "codePostal": "95800", + "codeCommune": "95183", + "libelleAcheminement": "COURDIMANCHE", + "nomCommune": "COURDIMANCHE" }, { - "codePostal": "82110", - "codeCommune": "82177", - "libelleAcheminement": "SAUVETERRE", - "nomCommune": "SAUVETERRE" + "codePostal": "77390", + "codeCommune": "77195", + "libelleAcheminement": "FOUJU", + "nomCommune": "FOUJU" }, { - "codePostal": "74160", - "codeCommune": "74216", - "libelleAcheminement": "PRESILLY", - "nomCommune": "PRESILLY" + "codePostal": "95300", + "codeCommune": "95500", + "libelleAcheminement": "PONTOISE", + "nomCommune": "PONTOISE" }, { - "codePostal": "90100", - "codeCommune": "90033", - "libelleAcheminement": "DELLE", - "nomCommune": "DELLE" + "codePostal": "79190", + "codeCommune": "79212", + "libelleAcheminement": "PLIBOUX", + "nomCommune": "PLIBOUX" }, { - "codePostal": "97412", - "codeCommune": "97402", - "libelleAcheminement": "BRAS PANON", - "nomCommune": "BRAS PANON" + "codePostal": "95600", + "codeCommune": "95203", + "libelleAcheminement": "EAUBONNE", + "nomCommune": "EAUBONNE" }, { - "codePostal": "82600", - "codeCommune": "82178", - "libelleAcheminement": "SAVENES", - "nomCommune": "SAVENES" + "codePostal": "77410", + "codeCommune": "77196", + "libelleAcheminement": "FRESNES SUR MARNE", + "nomCommune": "FRESNES SUR MARNE" }, { - "codePostal": "74500", - "codeCommune": "74218", - "libelleAcheminement": "PUBLIER", - "nomCommune": "PUBLIER" + "codePostal": "95700", + "codeCommune": "95527", + "libelleAcheminement": "ROISSY EN FRANCE", + "nomCommune": "ROISSY EN FRANCE" }, { - "codePostal": "90150", - "codeCommune": "90036", - "libelleAcheminement": "EGUENIGUE", - "nomCommune": "EGUENIGUE" + "codePostal": "79130", + "codeCommune": "79215", + "libelleAcheminement": "POUGNE HERISSON", + "nomCommune": "POUGNE HERISSON" }, { - "codePostal": "97429", - "codeCommune": "97405", - "libelleAcheminement": "PETITE ILE", - "nomCommune": "PETITE ILE" + "codePostal": "95440", + "codeCommune": "95205", + "libelleAcheminement": "ECOUEN", + "nomCommune": "ECOUEN" }, { - "codePostal": "82330", - "codeCommune": "82187", - "libelleAcheminement": "VAREN", - "nomCommune": "VAREN" + "codePostal": "77720", + "codeCommune": "77211", + "libelleAcheminement": "GRANDPUITS BAILLY CARROIS", + "nomCommune": "GRANDPUITS BAILLY CARROIS" }, { - "codePostal": "74500", - "codeCommune": "74218", - "libelleAcheminement": "PUBLIER", - "nomCommune": "PUBLIER" + "codePostal": "95200", + "codeCommune": "95585", + "libelleAcheminement": "SARCELLES", + "nomCommune": "SARCELLES" }, { - "codePostal": "90110", - "codeCommune": "90044", - "libelleAcheminement": "FELON", - "nomCommune": "FELON" + "codePostal": "79130", + "codeCommune": "79226", + "libelleAcheminement": "LE RETAIL", + "nomCommune": "LE RETAIL" }, { - "codePostal": "97440", - "codeCommune": "97409", - "libelleAcheminement": "ST ANDRE", - "nomCommune": "ST ANDRE" + "codePostal": "95300", + "codeCommune": "95211", + "libelleAcheminement": "ENNERY", + "nomCommune": "ENNERY" }, { - "codePostal": "82370", - "codeCommune": "82188", - "libelleAcheminement": "VARENNES", - "nomCommune": "VARENNES" + "codePostal": "77720", + "codeCommune": "77211", + "libelleAcheminement": "GRANDPUITS BAILLY CARROIS", + "nomCommune": "GRANDPUITS BAILLY CARROIS" }, { - "codePostal": "74930", - "codeCommune": "74220", - "libelleAcheminement": "REIGNIER ESERY", - "nomCommune": "REIGNIER ESERY" + "codePostal": "95470", + "codeCommune": "95604", + "libelleAcheminement": "SURVILLIERS", + "nomCommune": "SURVILLIERS" }, { - "codePostal": "90150", - "codeCommune": "90050", - "libelleAcheminement": "FRAIS", - "nomCommune": "FRAIS" + "codePostal": "79300", + "codeCommune": "79238", + "libelleAcheminement": "ST AUBIN DU PLAIN", + "nomCommune": "ST AUBIN DU PLAIN" }, { - "codePostal": "97417", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "95270", + "codeCommune": "95214", + "libelleAcheminement": "EPINAY CHAMPLATREUX", + "nomCommune": "EPINAY CHAMPLATREUX" }, { - "codePostal": "82220", - "codeCommune": "82189", - "libelleAcheminement": "VAZERAC", - "nomCommune": "VAZERAC" + "codePostal": "77220", + "codeCommune": "77215", + "libelleAcheminement": "GRETZ ARMAINVILLIERS", + "nomCommune": "GRETZ ARMAINVILLIERS" }, { - "codePostal": "74440", - "codeCommune": "74223", - "libelleAcheminement": "LA RIVIERE ENVERSE", - "nomCommune": "LA RIVIERE ENVERSE" + "codePostal": "95510", + "codeCommune": "95651", + "libelleAcheminement": "VETHEUIL", + "nomCommune": "VETHEUIL" }, { - "codePostal": "90300", - "codeCommune": "90057", - "libelleAcheminement": "LACHAPELLE SOUS CHAUX", - "nomCommune": "LACHAPELLE SOUS CHAUX" + "codePostal": "79220", + "codeCommune": "79241", + "libelleAcheminement": "ST CHRISTOPHE SUR ROC", + "nomCommune": "ST CHRISTOPHE SUR ROC" }, { - "codePostal": "97417", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "95140", + "codeCommune": "95268", + "libelleAcheminement": "GARGES LES GONESSE", + "nomCommune": "GARGES LES GONESSE" }, { - "codePostal": "82600", - "codeCommune": "82190", - "libelleAcheminement": "VERDUN SUR GARONNE", - "nomCommune": "VERDUN SUR GARONNE" + "codePostal": "77480", + "codeCommune": "77218", + "libelleAcheminement": "GRISY SUR SEINE", + "nomCommune": "GRISY SUR SEINE" }, { - "codePostal": "74800", - "codeCommune": "74224", - "libelleAcheminement": "LA ROCHE SUR FORON", - "nomCommune": "LA ROCHE SUR FORON" + "codePostal": "95450", + "codeCommune": "95658", + "libelleAcheminement": "VIGNY", + "nomCommune": "VIGNY" }, { - "codePostal": "90150", - "codeCommune": "90060", - "libelleAcheminement": "LAGRANGE", - "nomCommune": "LAGRANGE" + "codePostal": "79100", + "codeCommune": "79244", + "libelleAcheminement": "ST CYR LA LANDE", + "nomCommune": "ST CYR LA LANDE" }, { - "codePostal": "97480", - "codeCommune": "97412", - "libelleAcheminement": "ST JOSEPH", - "nomCommune": "ST JOSEPH" + "codePostal": "95190", + "codeCommune": "95280", + "libelleAcheminement": "GOUSSAINVILLE", + "nomCommune": "GOUSSAINVILLE" }, { - "codePostal": "82370", - "codeCommune": "82194", - "libelleAcheminement": "VILLEBRUMIER", - "nomCommune": "VILLEBRUMIER" + "codePostal": "77440", + "codeCommune": "77235", + "libelleAcheminement": "JAIGNES", + "nomCommune": "JAIGNES" }, { - "codePostal": "74350", - "codeCommune": "74228", - "libelleAcheminement": "ST BLAISE", - "nomCommune": "ST BLAISE" + "codePostal": "95720", + "codeCommune": "95682", + "libelleAcheminement": "VILLIERS LE SEC", + "nomCommune": "VILLIERS LE SEC" }, { - "codePostal": "90110", - "codeCommune": "90066", - "libelleAcheminement": "LEVAL", - "nomCommune": "LEVAL" + "codePostal": "79310", + "codeCommune": "79271", + "libelleAcheminement": "ST MARC LA LANDE", + "nomCommune": "ST MARC LA LANDE" }, { - "codePostal": "97435", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "95810", + "codeCommune": "95287", + "libelleAcheminement": "GRISY LES PLATRES", + "nomCommune": "GRISY LES PLATRES" }, { - "codePostal": "82130", - "codeCommune": "82195", - "libelleAcheminement": "VILLEMADE", - "nomCommune": "VILLEMADE" + "codePostal": "77127", + "codeCommune": "77251", + "libelleAcheminement": "LIEUSAINT", + "nomCommune": "LIEUSAINT" }, { - "codePostal": "74140", - "codeCommune": "74229", - "libelleAcheminement": "ST CERGUES", - "nomCommune": "ST CERGUES" + "codePostal": "97139", + "codeCommune": "97101", + "libelleAcheminement": "LES ABYMES", + "nomCommune": "LES ABYMES" }, { - "codePostal": "90400", - "codeCommune": "90068", - "libelleAcheminement": "MEROUX MOVAL", - "nomCommune": "MEROUX MOVAL" + "codePostal": "79100", + "codeCommune": "79274", + "libelleAcheminement": "ST MARTIN DE MACON", + "nomCommune": "ST MARTIN DE MACON" }, { - "codePostal": "97460", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "95780", + "codeCommune": "95301", + "libelleAcheminement": "HAUTE ISLE", + "nomCommune": "HAUTE ISLE" }, { - "codePostal": "83150", - "codeCommune": "83009", - "libelleAcheminement": "BANDOL", - "nomCommune": "BANDOL" + "codePostal": "77550", + "codeCommune": "77252", + "libelleAcheminement": "LIMOGES FOURCHES", + "nomCommune": "LIMOGES FOURCHES" }, { - "codePostal": "74150", - "codeCommune": "74231", - "libelleAcheminement": "ST EUSEBE", - "nomCommune": "ST EUSEBE" + "codePostal": "97127", + "codeCommune": "97110", + "libelleAcheminement": "LA DESIRADE", + "nomCommune": "LA DESIRADE" }, { - "codePostal": "90400", - "codeCommune": "90068", - "libelleAcheminement": "MEROUX MOVAL", - "nomCommune": "MEROUX MOVAL" + "codePostal": "79410", + "codeCommune": "79281", + "libelleAcheminement": "ST MAXIRE", + "nomCommune": "ST MAXIRE" }, { - "codePostal": "97438", - "codeCommune": "97418", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "95690", + "codeCommune": "95304", + "libelleAcheminement": "HEDOUVILLE", + "nomCommune": "HEDOUVILLE" }, { - "codePostal": "83630", - "codeCommune": "83014", - "libelleAcheminement": "BAUDINARD SUR VERDON", - "nomCommune": "BAUDINARD SUR VERDON" + "codePostal": "77185", + "codeCommune": "77258", + "libelleAcheminement": "LOGNES", + "nomCommune": "LOGNES" }, { - "codePostal": "74500", - "codeCommune": "74237", - "libelleAcheminement": "ST GINGOLPH", - "nomCommune": "ST GINGOLPH" + "codePostal": "97110", + "codeCommune": "97120", + "libelleAcheminement": "POINTE A PITRE", + "nomCommune": "POINTE A PITRE" }, { - "codePostal": "90120", - "codeCommune": "90069", - "libelleAcheminement": "MEZIRE", - "nomCommune": "MEZIRE" + "codePostal": "79260", + "codeCommune": "79283", + "libelleAcheminement": "STE NEOMAYE", + "nomCommune": "STE NEOMAYE" }, { - "codePostal": "97433", - "codeCommune": "97421", - "libelleAcheminement": "SALAZIE", - "nomCommune": "SALAZIE" + "codePostal": "95220", + "codeCommune": "95306", + "libelleAcheminement": "HERBLAY SUR SEINE", + "nomCommune": "HERBLAY SUR SEINE" }, { - "codePostal": "83149", - "codeCommune": "83021", - "libelleAcheminement": "BRAS", - "nomCommune": "BRAS" + "codePostal": "77650", + "codeCommune": "77260", + "libelleAcheminement": "LONGUEVILLE", + "nomCommune": "LONGUEVILLE" }, { - "codePostal": "74450", - "codeCommune": "74239", - "libelleAcheminement": "ST JEAN DE SIXT", - "nomCommune": "ST JEAN DE SIXT" + "codePostal": "97118", + "codeCommune": "97125", + "libelleAcheminement": "ST FRANCOIS", + "nomCommune": "ST FRANCOIS" }, { - "codePostal": "90300", - "codeCommune": "90075", - "libelleAcheminement": "OFFEMONT", - "nomCommune": "OFFEMONT" + "codePostal": "79160", + "codeCommune": "79290", + "libelleAcheminement": "ST POMPAIN", + "nomCommune": "ST POMPAIN" }, { - "codePostal": "97430", - "codeCommune": "97422", - "libelleAcheminement": "LE TAMPON", - "nomCommune": "LE TAMPON" + "codePostal": "95220", + "codeCommune": "95306", + "libelleAcheminement": "HERBLAY SUR SEINE", + "nomCommune": "HERBLAY SUR SEINE" }, { - "codePostal": "83320", - "codeCommune": "83034", - "libelleAcheminement": "CARQUEIRANNE", - "nomCommune": "CARQUEIRANNE" + "codePostal": "77560", + "codeCommune": "77262", + "libelleAcheminement": "LOUAN VILLEGRUIS FONTAINE", + "nomCommune": "LOUAN VILLEGRUIS FONTAINE" }, { - "codePostal": "74410", - "codeCommune": "74242", - "libelleAcheminement": "ST JORIOZ", - "nomCommune": "ST JORIOZ" + "codePostal": "97223", + "codeCommune": "97206", + "libelleAcheminement": "LE DIAMANT", + "nomCommune": "LE DIAMANT" }, { - "codePostal": "90370", - "codeCommune": "90081", - "libelleAcheminement": "RECHESY", - "nomCommune": "RECHESY" + "codePostal": "79410", + "codeCommune": "79293", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "97650", - "codeCommune": "97602", - "libelleAcheminement": "BANDRABOUA", - "nomCommune": "BANDRABOUA" + "codePostal": "95300", + "codeCommune": "95308", + "libelleAcheminement": "HEROUVILLE EN VEXIN", + "nomCommune": "HEROUVILLE EN VEXIN" }, { - "codePostal": "83330", - "codeCommune": "83035", - "libelleAcheminement": "LE CASTELLET", - "nomCommune": "LE CASTELLET" + "codePostal": "77138", + "codeCommune": "77265", + "libelleAcheminement": "LUZANCY", + "nomCommune": "LUZANCY" }, { - "codePostal": "74800", - "codeCommune": "74244", - "libelleAcheminement": "ST LAURENT", - "nomCommune": "ST LAURENT" + "codePostal": "97234", + "codeCommune": "97209", + "libelleAcheminement": "FORT DE FRANCE", + "nomCommune": "FORT DE FRANCE" }, { - "codePostal": "90200", - "codeCommune": "90085", - "libelleAcheminement": "RIERVESCEMONT", - "nomCommune": "RIERVESCEMONT" + "codePostal": "79230", + "codeCommune": "79294", + "libelleAcheminement": "ST ROMANS DES CHAMPS", + "nomCommune": "ST ROMANS DES CHAMPS" }, { - "codePostal": "97600", - "codeCommune": "97611", - "libelleAcheminement": "MAMOUDZOU", - "nomCommune": "MAMOUDZOU" + "codePostal": "95290", + "codeCommune": "95313", + "libelleAcheminement": "L ISLE ADAM", + "nomCommune": "L ISLE ADAM" }, { - "codePostal": "83330", - "codeCommune": "83035", - "libelleAcheminement": "LE CASTELLET", - "nomCommune": "LE CASTELLET" + "codePostal": "77230", + "codeCommune": "77273", + "libelleAcheminement": "MARCHEMORET", + "nomCommune": "MARCHEMORET" }, { - "codePostal": "74150", - "codeCommune": "74255", - "libelleAcheminement": "SALES", - "nomCommune": "SALES" + "codePostal": "97222", + "codeCommune": "97234", + "libelleAcheminement": "BELLEFONTAINE", + "nomCommune": "BELLEFONTAINE" }, { - "codePostal": "90300", - "codeCommune": "90093", - "libelleAcheminement": "SERMAMAGNY", - "nomCommune": "SERMAMAGNY" + "codePostal": "79240", + "codeCommune": "79309", + "libelleAcheminement": "SCILLE", + "nomCommune": "SCILLE" }, { - "codePostal": "97650", - "codeCommune": "97613", - "libelleAcheminement": "M TSANGAMOUJI", - "nomCommune": "M TSANGAMOUJI" + "codePostal": "95280", + "codeCommune": "95323", + "libelleAcheminement": "JOUY LE MOUTIER", + "nomCommune": "JOUY LE MOUTIER" }, { - "codePostal": "83300", - "codeCommune": "83038", - "libelleAcheminement": "CHATEAUDOUBLE", - "nomCommune": "CHATEAUDOUBLE" + "codePostal": "77139", + "codeCommune": "77274", + "libelleAcheminement": "MARCILLY", + "nomCommune": "MARCILLY" }, { - "codePostal": "74340", - "codeCommune": "74258", - "libelleAcheminement": "SAMOENS", - "nomCommune": "SAMOENS" + "codePostal": "97360", + "codeCommune": "97306", + "libelleAcheminement": "MANA", + "nomCommune": "MANA" }, { - "codePostal": "90400", - "codeCommune": "90094", - "libelleAcheminement": "SEVENANS", - "nomCommune": "SEVENANS" + "codePostal": "79170", + "codeCommune": "79310", + "libelleAcheminement": "SECONDIGNE SUR BELLE", + "nomCommune": "SECONDIGNE SUR BELLE" }, { - "codePostal": "97640", - "codeCommune": "97616", - "libelleAcheminement": "SADA", - "nomCommune": "SADA" + "codePostal": "95300", + "codeCommune": "95341", + "libelleAcheminement": "LIVILLIERS", + "nomCommune": "LIVILLIERS" }, { - "codePostal": "83670", - "codeCommune": "83039", - "libelleAcheminement": "CHATEAUVERT", - "nomCommune": "CHATEAUVERT" + "codePostal": "77350", + "codeCommune": "77285", + "libelleAcheminement": "LE MEE SUR SEINE", + "nomCommune": "LE MEE SUR SEINE" }, { - "codePostal": "74350", - "codeCommune": "74259", - "libelleAcheminement": "LE SAPPEY", - "nomCommune": "LE SAPPEY" + "codePostal": "97320", + "codeCommune": "97311", + "libelleAcheminement": "ST LAURENT DU MARONI", + "nomCommune": "ST LAURENT DU MARONI" }, { - "codePostal": "90100", - "codeCommune": "90095", - "libelleAcheminement": "SUARCE", - "nomCommune": "SUARCE" + "codePostal": "79130", + "codeCommune": "79311", + "libelleAcheminement": "SECONDIGNY", + "nomCommune": "SECONDIGNY" }, { - "codePostal": "97680", - "codeCommune": "97617", - "libelleAcheminement": "TSINGONI", - "nomCommune": "TSINGONI" + "codePostal": "95380", + "codeCommune": "95351", + "libelleAcheminement": "LOUVRES", + "nomCommune": "LOUVRES" }, { - "codePostal": "83260", - "codeCommune": "83047", - "libelleAcheminement": "LA CRAU", - "nomCommune": "LA CRAU" + "codePostal": "77520", + "codeCommune": "77286", + "libelleAcheminement": "MEIGNEUX", + "nomCommune": "MEIGNEUX" }, { - "codePostal": "74230", - "codeCommune": "74265", - "libelleAcheminement": "SERRAVAL", - "nomCommune": "SERRAVAL" + "codePostal": "97314", + "codeCommune": "97352", + "libelleAcheminement": "SAUL", + "nomCommune": "SAUL" }, { - "codePostal": "90400", - "codeCommune": "90097", - "libelleAcheminement": "TREVENANS", - "nomCommune": "TREVENANS" + "codePostal": "79120", + "codeCommune": "79313", + "libelleAcheminement": "SEPVRET", + "nomCommune": "SEPVRET" }, { - "codePostal": "97150", - "codeCommune": "97801", - "libelleAcheminement": "ST MARTIN", - "nomCommune": "ST MARTIN" + "codePostal": "95850", + "codeCommune": "95365", + "libelleAcheminement": "MAREIL EN FRANCE", + "nomCommune": "MAREIL EN FRANCE" }, { - "codePostal": "83210", - "codeCommune": "83054", - "libelleAcheminement": "LA FARLEDE", - "nomCommune": "LA FARLEDE" + "codePostal": "77130", + "codeCommune": "77293", + "libelleAcheminement": "MISY SUR YONNE", + "nomCommune": "MISY SUR YONNE" }, { - "codePostal": "74310", - "codeCommune": "74266", - "libelleAcheminement": "SERVOZ", - "nomCommune": "SERVOZ" + "codePostal": "97370", + "codeCommune": "97353", + "libelleAcheminement": "MARIPASOULA", + "nomCommune": "MARIPASOULA" }, { - "codePostal": "90800", - "codeCommune": "90098", - "libelleAcheminement": "URCEREY", - "nomCommune": "URCEREY" + "codePostal": "79220", + "codeCommune": "79320", + "libelleAcheminement": "SURIN", + "nomCommune": "SURIN" }, { - "codePostal": "98760", - "codeCommune": "98711", - "libelleAcheminement": "TUUHORA", - "nomCommune": "ANAA" + "codePostal": "95810", + "codeCommune": "95387", + "libelleAcheminement": "MENOUVILLE", + "nomCommune": "MENOUVILLE" }, { - "codePostal": "83670", - "codeCommune": "83060", - "libelleAcheminement": "FOX AMPHOUX", - "nomCommune": "FOX AMPHOUX" + "codePostal": "77290", + "codeCommune": "77294", + "libelleAcheminement": "MITRY MORY", + "nomCommune": "MITRY MORY" }, { - "codePostal": "74210", - "codeCommune": "74275", - "libelleAcheminement": "TALLOIRES MONTMIN", - "nomCommune": "TALLOIRES MONTMIN" + "codePostal": "97340", + "codeCommune": "97357", + "libelleAcheminement": "GRAND SANTI", + "nomCommune": "GRAND SANTI" }, { - "codePostal": "90300", - "codeCommune": "90099", - "libelleAcheminement": "VALDOIE", - "nomCommune": "VALDOIE" + "codePostal": "79100", + "codeCommune": "79329", + "libelleAcheminement": "THOUARS", + "nomCommune": "THOUARS" }, { - "codePostal": "98790", - "codeCommune": "98716", - "libelleAcheminement": "MOTU TAPU", - "nomCommune": "FAKARAVA" + "codePostal": "95570", + "codeCommune": "95409", + "libelleAcheminement": "MOISSELLES", + "nomCommune": "MOISSELLES" }, { - "codePostal": "83130", - "codeCommune": "83062", - "libelleAcheminement": "LA GARDE", - "nomCommune": "LA GARDE" + "codePostal": "77550", + "codeCommune": "77296", + "libelleAcheminement": "MOISSY CRAMAYEL", + "nomCommune": "MOISSY CRAMAYEL" }, { - "codePostal": "74290", - "codeCommune": "74275", - "libelleAcheminement": "TALLOIRES MONTMIN", - "nomCommune": "TALLOIRES MONTMIN" + "codePostal": "97312", + "codeCommune": "97358", + "libelleAcheminement": "ST ELIE", + "nomCommune": "ST ELIE" }, { - "codePostal": "90150", - "codeCommune": "90100", - "libelleAcheminement": "VAUTHIERMONT", - "nomCommune": "VAUTHIERMONT" + "codePostal": "79210", + "codeCommune": "79334", + "libelleAcheminement": "VAL DU MIGNON", + "nomCommune": "VAL DU MIGNON" }, { - "codePostal": "98755", - "codeCommune": "98719", - "libelleAcheminement": "AUKENA", - "nomCommune": "GAMBIER" + "codePostal": "95360", + "codeCommune": "95427", + "libelleAcheminement": "MONTMAGNY", + "nomCommune": "MONTMAGNY" }, { - "codePostal": "83136", - "codeCommune": "83064", - "libelleAcheminement": "GAREOULT", - "nomCommune": "GAREOULT" + "codePostal": "77320", + "codeCommune": "77304", + "libelleAcheminement": "MONTENILS", + "nomCommune": "MONTENILS" }, { - "codePostal": "74440", - "codeCommune": "74276", - "libelleAcheminement": "TANINGES", - "nomCommune": "TANINGES" + "codePostal": "97317", + "codeCommune": "97360", + "libelleAcheminement": "APATOU", + "nomCommune": "APATOU" }, { - "codePostal": "91160", - "codeCommune": "91044", - "libelleAcheminement": "BALLAINVILLIERS", - "nomCommune": "BALLAINVILLIERS" + "codePostal": "79270", + "codeCommune": "79337", + "libelleAcheminement": "LE VANNEAU IRLEAU", + "nomCommune": "LE VANNEAU IRLEAU" }, { - "codePostal": "98755", - "codeCommune": "98719", - "libelleAcheminement": "MAKAROA", - "nomCommune": "GAMBIER" + "codePostal": "95640", + "codeCommune": "95438", + "libelleAcheminement": "MOUSSY", + "nomCommune": "MOUSSY" }, { - "codePostal": "83580", - "codeCommune": "83065", - "libelleAcheminement": "GASSIN", - "nomCommune": "GASSIN" + "codePostal": "77144", + "codeCommune": "77307", + "libelleAcheminement": "MONTEVRAIN", + "nomCommune": "MONTEVRAIN" }, { - "codePostal": "74230", - "codeCommune": "74280", - "libelleAcheminement": "THONES", - "nomCommune": "THONES" + "codePostal": "97316", + "codeCommune": "97362", + "libelleAcheminement": "POMPIDOU PAPA ICHTON", + "nomCommune": "PAPAICHTON" }, { - "codePostal": "91570", - "codeCommune": "91064", - "libelleAcheminement": "BIEVRES", - "nomCommune": "BIEVRES" + "codePostal": "79120", + "codeCommune": "79338", + "libelleAcheminement": "VANZAY", + "nomCommune": "VANZAY" }, { - "codePostal": "98792", - "codeCommune": "98719", - "libelleAcheminement": "TENARUNGA", - "nomCommune": "GAMBIER" + "codePostal": "95420", + "codeCommune": "95462", + "libelleAcheminement": "OMERVILLE", + "nomCommune": "OMERVILLE" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "77230", + "codeCommune": "77308", + "libelleAcheminement": "MONTGE EN GOELE", + "nomCommune": "MONTGE EN GOELE" }, { - "codePostal": "74200", - "codeCommune": "74281", - "libelleAcheminement": "THONON LES BAINS", - "nomCommune": "THONON LES BAINS" + "codePostal": "97414", + "codeCommune": "97403", + "libelleAcheminement": "ENTRE DEUX", + "nomCommune": "ENTRE DEUX" }, { - "codePostal": "91470", - "codeCommune": "91093", - "libelleAcheminement": "BOULLAY LES TROUX", - "nomCommune": "BOULLAY LES TROUX" + "codePostal": "79170", + "codeCommune": "79343", + "libelleAcheminement": "VERNOUX SUR BOUTONNE", + "nomCommune": "VERNOUX SUR BOUTONNE" }, { - "codePostal": "98790", - "codeCommune": "98720", - "libelleAcheminement": "HEREHRETUE", - "nomCommune": "HAO" + "codePostal": "95450", + "codeCommune": "95483", + "libelleAcheminement": "LE PERCHAY", + "nomCommune": "LE PERCHAY" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "77163", + "codeCommune": "77318", + "libelleAcheminement": "MORTCERF", + "nomCommune": "MORTCERF" }, { - "codePostal": "74200", - "codeCommune": "74281", - "libelleAcheminement": "THONON LES BAINS", - "nomCommune": "THONON LES BAINS" + "codePostal": "97429", + "codeCommune": "97405", + "libelleAcheminement": "PETITE ILE", + "nomCommune": "PETITE ILE" }, { - "codePostal": "91800", - "codeCommune": "91097", - "libelleAcheminement": "BOUSSY ST ANTOINE", - "nomCommune": "BOUSSY ST ANTOINE" + "codePostal": "79170", + "codeCommune": "79346", + "libelleAcheminement": "LE VERT", + "nomCommune": "LE VERT" }, { - "codePostal": "98790", - "codeCommune": "98720", - "libelleAcheminement": "PARAOA", - "nomCommune": "HAO" + "codePostal": "95220", + "codeCommune": "95488", + "libelleAcheminement": "PIERRELAYE", + "nomCommune": "PIERRELAYE" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "77480", + "codeCommune": "77321", + "libelleAcheminement": "MOUSSEAUX LES BRAY", + "nomCommune": "MOUSSEAUX LES BRAY" }, { - "codePostal": "74570", - "codeCommune": "74282", - "libelleAcheminement": "FILLIERE", - "nomCommune": "FILLIERE" + "codePostal": "97420", + "codeCommune": "97407", + "libelleAcheminement": "LE PORT", + "nomCommune": "LE PORT" }, { - "codePostal": "91880", - "codeCommune": "91100", - "libelleAcheminement": "BOUVILLE", - "nomCommune": "BOUVILLE" + "codePostal": "79160", + "codeCommune": "79351", + "libelleAcheminement": "VILLIERS EN PLAINE", + "nomCommune": "VILLIERS EN PLAINE" }, { - "codePostal": "98790", - "codeCommune": "98720", - "libelleAcheminement": "AHUNUI", - "nomCommune": "HAO" + "codePostal": "95380", + "codeCommune": "95509", + "libelleAcheminement": "PUISEUX EN FRANCE", + "nomCommune": "PUISEUX EN FRANCE" }, { - "codePostal": "83510", - "codeCommune": "83072", - "libelleAcheminement": "LORGUES", - "nomCommune": "LORGUES" + "codePostal": "77176", + "codeCommune": "77326", + "libelleAcheminement": "NANDY", + "nomCommune": "NANDY" }, { - "codePostal": "74910", - "codeCommune": "74285", - "libelleAcheminement": "USINENS", - "nomCommune": "USINENS" + "codePostal": "97420", + "codeCommune": "97407", + "libelleAcheminement": "LE PORT", + "nomCommune": "LE PORT" }, { - "codePostal": "91220", - "codeCommune": "91103", - "libelleAcheminement": "BRETIGNY SUR ORGE", - "nomCommune": "BRETIGNY SUR ORGE" + "codePostal": "80150", + "codeCommune": "80006", + "libelleAcheminement": "AGENVILLERS", + "nomCommune": "AGENVILLERS" }, { - "codePostal": "98790", - "codeCommune": "98721", - "libelleAcheminement": "TEPEPERU", - "nomCommune": "HIKUERU" + "codePostal": "95650", + "codeCommune": "95510", + "libelleAcheminement": "PUISEUX PONTOISE", + "nomCommune": "PUISEUX PONTOISE" }, { - "codePostal": "83840", - "codeCommune": "83074", - "libelleAcheminement": "LA MARTRE", - "nomCommune": "LA MARTRE" + "codePostal": "77140", + "codeCommune": "77333", + "libelleAcheminement": "NEMOURS", + "nomCommune": "NEMOURS" }, { - "codePostal": "74270", - "codeCommune": "74291", - "libelleAcheminement": "VANZY", - "nomCommune": "VANZY" + "codePostal": "97440", + "codeCommune": "97409", + "libelleAcheminement": "ST ANDRE", + "nomCommune": "ST ANDRE" }, { - "codePostal": "91640", - "codeCommune": "91111", - "libelleAcheminement": "BRIIS SOUS FORGES", - "nomCommune": "BRIIS SOUS FORGES" + "codePostal": "80270", + "codeCommune": "80013", + "libelleAcheminement": "AIRAINES", + "nomCommune": "AIRAINES" }, { - "codePostal": "98790", - "codeCommune": "98721", - "libelleAcheminement": "MAHETIKA", - "nomCommune": "HIKUERU" + "codePostal": "95780", + "codeCommune": "95523", + "libelleAcheminement": "LA ROCHE GUYON", + "nomCommune": "LA ROCHE GUYON" }, { - "codePostal": "83440", - "codeCommune": "83081", - "libelleAcheminement": "MONTAUROUX", - "nomCommune": "MONTAUROUX" + "codePostal": "77610", + "codeCommune": "77336", + "libelleAcheminement": "NEUFMOUTIERS EN BRIE", + "nomCommune": "NEUFMOUTIERS EN BRIE" }, { - "codePostal": "74290", - "codeCommune": "74299", - "libelleAcheminement": "VEYRIER DU LAC", - "nomCommune": "VEYRIER DU LAC" + "codePostal": "97437", + "codeCommune": "97410", + "libelleAcheminement": "ST BENOIT", + "nomCommune": "ST BENOIT" }, { - "codePostal": "91680", - "codeCommune": "91115", - "libelleAcheminement": "BRUYERES LE CHATEL", - "nomCommune": "BRUYERES LE CHATEL" + "codePostal": "80260", + "codeCommune": "80020", + "libelleAcheminement": "ALLONVILLE", + "nomCommune": "ALLONVILLE" }, { - "codePostal": "98707", - "codeCommune": "98722", - "libelleAcheminement": "PAPENOO", - "nomCommune": "HITIAA O TE RA" + "codePostal": "95700", + "codeCommune": "95527", + "libelleAcheminement": "ROISSY EN FRANCE", + "nomCommune": "ROISSY EN FRANCE" }, { - "codePostal": "83131", - "codeCommune": "83082", - "libelleAcheminement": "MONTFERRAT", - "nomCommune": "MONTFERRAT" + "codePostal": "77940", + "codeCommune": "77338", + "libelleAcheminement": "NOISY RUDIGNON", + "nomCommune": "NOISY RUDIGNON" }, { - "codePostal": "74500", - "codeCommune": "74308", - "libelleAcheminement": "VINZIER", - "nomCommune": "VINZIER" + "codePostal": "97400", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "91590", - "codeCommune": "91129", - "libelleAcheminement": "CERNY", - "nomCommune": "CERNY" + "codePostal": "80080", + "codeCommune": "80021", + "libelleAcheminement": "AMIENS", + "nomCommune": "AMIENS" }, { - "codePostal": "98741", - "codeCommune": "98723", - "libelleAcheminement": "EIAONE", - "nomCommune": "HIVA OA" + "codePostal": "95450", + "codeCommune": "95535", + "libelleAcheminement": "SAGY", + "nomCommune": "SAGY" }, { - "codePostal": "83920", - "codeCommune": "83085", - "libelleAcheminement": "LA MOTTE", - "nomCommune": "LA MOTTE" + "codePostal": "77890", + "codeCommune": "77342", + "libelleAcheminement": "OBSONVILLE", + "nomCommune": "OBSONVILLE" }, { - "codePostal": "75001", - "codeCommune": "75101", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 01" + "codePostal": "97417", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "91780", - "codeCommune": "91130", - "libelleAcheminement": "CHALO ST MARS", - "nomCommune": "CHALO ST MARS" + "codePostal": "80120", + "codeCommune": "80025", + "libelleAcheminement": "ARGOULES", + "nomCommune": "ARGOULES" }, { - "codePostal": "98741", - "codeCommune": "98723", - "libelleAcheminement": "MOTU UA", - "nomCommune": "HIVA OA" + "codePostal": "95770", + "codeCommune": "95541", + "libelleAcheminement": "ST CLAIR SUR EPTE", + "nomCommune": "ST CLAIR SUR EPTE" }, { - "codePostal": "83390", - "codeCommune": "83100", - "libelleAcheminement": "PUGET VILLE", - "nomCommune": "PUGET VILLE" + "codePostal": "77750", + "codeCommune": "77345", + "libelleAcheminement": "ORLY SUR MORIN", + "nomCommune": "ORLY SUR MORIN" }, { - "codePostal": "75005", - "codeCommune": "75105", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 05" + "codePostal": "97434", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "91380", - "codeCommune": "91161", - "libelleAcheminement": "CHILLY MAZARIN", - "nomCommune": "CHILLY MAZARIN" + "codePostal": "80500", + "codeCommune": "80032", + "libelleAcheminement": "ASSAINVILLERS", + "nomCommune": "ASSAINVILLERS" }, { - "codePostal": "98741", - "codeCommune": "98723", - "libelleAcheminement": "NAHOE", - "nomCommune": "HIVA OA" + "codePostal": "95510", + "codeCommune": "95543", + "libelleAcheminement": "ST CYR EN ARTHIES", + "nomCommune": "ST CYR EN ARTHIES" }, { - "codePostal": "83200", - "codeCommune": "83103", - "libelleAcheminement": "LE REVEST LES EAUX", - "nomCommune": "LE REVEST LES EAUX" + "codePostal": "77280", + "codeCommune": "77349", + "libelleAcheminement": "OTHIS", + "nomCommune": "OTHIS" }, { - "codePostal": "75009", - "codeCommune": "75109", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 09" + "codePostal": "97435", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "91830", - "codeCommune": "91179", - "libelleAcheminement": "LE COUDRAY MONTCEAUX", - "nomCommune": "LE COUDRAY MONTCEAUX" + "codePostal": "80200", + "codeCommune": "80033", + "libelleAcheminement": "ASSEVILLERS", + "nomCommune": "ASSEVILLERS" }, { - "codePostal": "98741", - "codeCommune": "98723", - "libelleAcheminement": "PAUMAU", - "nomCommune": "HIVA OA" + "codePostal": "95640", + "codeCommune": "95584", + "libelleAcheminement": "SANTEUIL", + "nomCommune": "SANTEUIL" }, { - "codePostal": "83136", - "codeCommune": "83106", - "libelleAcheminement": "ROCBARON", - "nomCommune": "ROCBARON" + "codePostal": "77330", + "codeCommune": "77350", + "libelleAcheminement": "OZOIR LA FERRIERE", + "nomCommune": "OZOIR LA FERRIERE" }, { - "codePostal": "75010", - "codeCommune": "75110", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 10" + "codePostal": "97410", + "codeCommune": "97416", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "91830", - "codeCommune": "91179", - "libelleAcheminement": "LE COUDRAY MONTCEAUX", - "nomCommune": "LE COUDRAY MONTCEAUX" + "codePostal": "80460", + "codeCommune": "80039", + "libelleAcheminement": "AULT", + "nomCommune": "AULT" }, { - "codePostal": "98731", - "codeCommune": "98724", - "libelleAcheminement": "MAROE", - "nomCommune": "HUAHINE" + "codePostal": "95810", + "codeCommune": "95611", + "libelleAcheminement": "THEUVILLE", + "nomCommune": "THEUVILLE" }, { - "codePostal": "83136", - "codeCommune": "83108", - "libelleAcheminement": "LA ROQUEBRUSSANNE", - "nomCommune": "LA ROQUEBRUSSANNE" + "codePostal": "77390", + "codeCommune": "77352", + "libelleAcheminement": "OZOUER LE VOULGIS", + "nomCommune": "OZOUER LE VOULGIS" }, { - "codePostal": "76540", - "codeCommune": "76011", - "libelleAcheminement": "ANCRETTEVILLE SUR MER", - "nomCommune": "ANCRETTEVILLE SUR MER" + "codePostal": "97441", + "codeCommune": "97420", + "libelleAcheminement": "STE SUZANNE", + "nomCommune": "STE SUZANNE" }, { - "codePostal": "91490", - "codeCommune": "91180", - "libelleAcheminement": "COURANCES", - "nomCommune": "COURANCES" + "codePostal": "80300", + "codeCommune": "80052", + "libelleAcheminement": "BAIZIEUX", + "nomCommune": "BAIZIEUX" }, { - "codePostal": "98731", - "codeCommune": "98724", - "libelleAcheminement": "PAREA", - "nomCommune": "HUAHINE" + "codePostal": "95760", + "codeCommune": "95628", + "libelleAcheminement": "VALMONDOIS", + "nomCommune": "VALMONDOIS" }, { - "codePostal": "83530", - "codeCommune": "83118", - "libelleAcheminement": "ST RAPHAEL", - "nomCommune": "ST RAPHAEL" + "codePostal": "77131", + "codeCommune": "77360", + "libelleAcheminement": "PEZARCHES", + "nomCommune": "PEZARCHES" }, { - "codePostal": "76110", - "codeCommune": "76012", - "libelleAcheminement": "ANGERVILLE BAILLEUL", - "nomCommune": "ANGERVILLE BAILLEUL" + "codePostal": "97430", + "codeCommune": "97422", + "libelleAcheminement": "LE TAMPON", + "nomCommune": "LE TAMPON" }, { - "codePostal": "91720", - "codeCommune": "91184", - "libelleAcheminement": "COURDIMANCHE SUR ESSONNE", - "nomCommune": "COURDIMANCHE SUR ESSONNE" + "codePostal": "80430", + "codeCommune": "80062", + "libelleAcheminement": "BEAUCAMPS LE VIEUX", + "nomCommune": "BEAUCAMPS LE VIEUX" }, { - "codePostal": "98771", - "codeCommune": "98727", - "libelleAcheminement": "TURIPAOA", - "nomCommune": "MANIHI" + "codePostal": "95270", + "codeCommune": "95652", + "libelleAcheminement": "VIARMES", + "nomCommune": "VIARMES" }, { - "codePostal": "83530", - "codeCommune": "83118", - "libelleAcheminement": "ST RAPHAEL", - "nomCommune": "ST RAPHAEL" + "codePostal": "77165", + "codeCommune": "77366", + "libelleAcheminement": "LE PLESSIS L EVEQUE", + "nomCommune": "LE PLESSIS L EVEQUE" }, { - "codePostal": "76280", - "codeCommune": "76014", - "libelleAcheminement": "ANGERVILLE L ORCHER", - "nomCommune": "ANGERVILLE L ORCHER" + "codePostal": "97430", + "codeCommune": "97422", + "libelleAcheminement": "LE TAMPON", + "nomCommune": "LE TAMPON" }, { - "codePostal": "91680", - "codeCommune": "91186", - "libelleAcheminement": "COURSON MONTELOUP", - "nomCommune": "COURSON MONTELOUP" + "codePostal": "80770", + "codeCommune": "80063", + "libelleAcheminement": "BEAUCHAMPS", + "nomCommune": "BEAUCHAMPS" }, { - "codePostal": "98732", - "codeCommune": "98728", - "libelleAcheminement": "MOTU ONE", - "nomCommune": "MAUPITI" + "codePostal": "95570", + "codeCommune": "95660", + "libelleAcheminement": "VILLAINES SOUS BOIS", + "nomCommune": "VILLAINES SOUS BOIS" }, { - "codePostal": "83530", - "codeCommune": "83118", - "libelleAcheminement": "ST RAPHAEL", - "nomCommune": "ST RAPHAEL" + "codePostal": "77400", + "codeCommune": "77372", + "libelleAcheminement": "POMPONNE", + "nomCommune": "POMPONNE" }, { - "codePostal": "76740", - "codeCommune": "76015", - "libelleAcheminement": "ANGIENS", - "nomCommune": "ANGIENS" + "codePostal": "97430", + "codeCommune": "97422", + "libelleAcheminement": "LE TAMPON", + "nomCommune": "LE TAMPON" }, { - "codePostal": "91590", - "codeCommune": "91198", - "libelleAcheminement": "D HUISON LONGUEVILLE", - "nomCommune": "D HUISON LONGUEVILLE" + "codePostal": "80300", + "codeCommune": "80065", + "libelleAcheminement": "BEAUCOURT SUR L ANCRE", + "nomCommune": "BEAUCOURT SUR L ANCRE" }, { - "codePostal": "98732", - "codeCommune": "98728", - "libelleAcheminement": "SCILLY", - "nomCommune": "MAUPITI" + "codePostal": "95380", + "codeCommune": "95675", + "libelleAcheminement": "VILLERON", + "nomCommune": "VILLERON" }, { - "codePostal": "83630", - "codeCommune": "83122", - "libelleAcheminement": "LES SALLES SUR VERDON", - "nomCommune": "LES SALLES SUR VERDON" + "codePostal": "77340", + "codeCommune": "77373", + "libelleAcheminement": "PONTAULT COMBAULT", + "nomCommune": "PONTAULT COMBAULT" }, { - "codePostal": "76280", - "codeCommune": "76017", - "libelleAcheminement": "ANGLESQUEVILLE L ESNEVAL", - "nomCommune": "ANGLESQUEVILLE L ESNEVAL" + "codePostal": "97413", + "codeCommune": "97424", + "libelleAcheminement": "CILAOS", + "nomCommune": "CILAOS" }, { - "codePostal": "91540", - "codeCommune": "91204", - "libelleAcheminement": "ECHARCON", - "nomCommune": "ECHARCON" + "codePostal": "80300", + "codeCommune": "80069", + "libelleAcheminement": "BEAUMONT HAMEL", + "nomCommune": "BEAUMONT HAMEL" }, { - "codePostal": "98729", - "codeCommune": "98729", - "libelleAcheminement": "OPUNOHU", - "nomCommune": "MOOREA MAIAO" + "codePostal": "95840", + "codeCommune": "95678", + "libelleAcheminement": "VILLIERS ADAM", + "nomCommune": "VILLIERS ADAM" }, { - "codePostal": "83440", - "codeCommune": "83124", - "libelleAcheminement": "SEILLANS", - "nomCommune": "SEILLANS" + "codePostal": "77410", + "codeCommune": "77376", + "libelleAcheminement": "PRECY SUR MARNE", + "nomCommune": "PRECY SUR MARNE" }, { - "codePostal": "76890", - "codeCommune": "76018", - "libelleAcheminement": "VAL DE SAANE", - "nomCommune": "VAL DE SAANE" + "codePostal": "97660", + "codeCommune": "97603", + "libelleAcheminement": "BANDRELE", + "nomCommune": "BANDRELE" }, { - "codePostal": "91150", - "codeCommune": "91223", - "libelleAcheminement": "ETAMPES", - "nomCommune": "ETAMPES" + "codePostal": "80270", + "codeCommune": "80081", + "libelleAcheminement": "BELLOY ST LEONARD", + "nomCommune": "BELLOY ST LEONARD" }, { - "codePostal": "98729", - "codeCommune": "98729", - "libelleAcheminement": "PAOPAO", - "nomCommune": "MOOREA MAIAO" + "codePostal": "97123", + "codeCommune": "97104", + "libelleAcheminement": "BAILLIF", + "nomCommune": "BAILLIF" }, { - "codePostal": "83500", - "codeCommune": "83126", - "libelleAcheminement": "LA SEYNE SUR MER", - "nomCommune": "LA SEYNE SUR MER" + "codePostal": "77220", + "codeCommune": "77377", + "libelleAcheminement": "PRESLES EN BRIE", + "nomCommune": "PRESLES EN BRIE" }, { - "codePostal": "76480", - "codeCommune": "76020", - "libelleAcheminement": "ANNEVILLE AMBOURVILLE", - "nomCommune": "ANNEVILLE AMBOURVILLE" + "codePostal": "97620", + "codeCommune": "97604", + "libelleAcheminement": "BOUENI", + "nomCommune": "BOUENI" }, { - "codePostal": "91450", - "codeCommune": "91225", - "libelleAcheminement": "ETIOLLES", - "nomCommune": "ETIOLLES" + "codePostal": "80140", + "codeCommune": "80084", + "libelleAcheminement": "BERMESNIL", + "nomCommune": "BERMESNIL" }, { - "codePostal": "98772", - "codeCommune": "98730", - "libelleAcheminement": "TEPUKAMARUIA", - "nomCommune": "NAPUKA" + "codePostal": "97125", + "codeCommune": "97106", + "libelleAcheminement": "BOUILLANTE", + "nomCommune": "BOUILLANTE" }, { - "codePostal": "83210", - "codeCommune": "83132", - "libelleAcheminement": "SOLLIES VILLE", - "nomCommune": "SOLLIES VILLE" + "codePostal": "77510", + "codeCommune": "77385", + "libelleAcheminement": "REBAIS", + "nomCommune": "REBAIS" }, { - "codePostal": "76560", - "codeCommune": "76023", - "libelleAcheminement": "ANVEVILLE", - "nomCommune": "ANVEVILLE" + "codePostal": "97600", + "codeCommune": "97611", + "libelleAcheminement": "MAMOUDZOU", + "nomCommune": "MAMOUDZOU" }, { - "codePostal": "91640", - "codeCommune": "91243", - "libelleAcheminement": "FONTENAY LES BRIIS", - "nomCommune": "FONTENAY LES BRIIS" + "codePostal": "80560", + "codeCommune": "80095", + "libelleAcheminement": "BERTRANCOURT", + "nomCommune": "BERTRANCOURT" }, { - "codePostal": "98796", - "codeCommune": "98731", - "libelleAcheminement": "HATU ITI", - "nomCommune": "NUKU HIVA" + "codePostal": "97160", + "codeCommune": "97117", + "libelleAcheminement": "LE MOULE", + "nomCommune": "LE MOULE" }, { - "codePostal": "83440", - "codeCommune": "83133", - "libelleAcheminement": "TANNERON", - "nomCommune": "TANNERON" + "codePostal": "77680", + "codeCommune": "77390", + "libelleAcheminement": "ROISSY EN BRIE", + "nomCommune": "ROISSY EN BRIE" }, { - "codePostal": "76880", - "codeCommune": "76026", - "libelleAcheminement": "ARQUES LA BATAILLE", - "nomCommune": "ARQUES LA BATAILLE" + "codePostal": "97605", + "codeCommune": "97611", + "libelleAcheminement": "MAMOUDZOU", + "nomCommune": "MAMOUDZOU" }, { - "codePostal": "91540", - "codeCommune": "91244", - "libelleAcheminement": "FONTENAY LE VICOMTE", - "nomCommune": "FONTENAY LE VICOMTE" + "codePostal": "80270", + "codeCommune": "80099", + "libelleAcheminement": "BETTENCOURT RIVIERE", + "nomCommune": "BETTENCOURT RIVIERE" }, { - "codePostal": "98714", - "codeCommune": "98735", - "libelleAcheminement": "PAPEETE", - "nomCommune": "PAPEETE" + "codePostal": "97131", + "codeCommune": "97119", + "libelleAcheminement": "PETIT CANAL", + "nomCommune": "PETIT CANAL" }, { - "codePostal": "83143", - "codeCommune": "83143", - "libelleAcheminement": "LE VAL", - "nomCommune": "LE VAL" + "codePostal": "77540", + "codeCommune": "77393", + "libelleAcheminement": "ROZAY EN BRIE", + "nomCommune": "ROZAY EN BRIE" }, { - "codePostal": "76390", - "codeCommune": "76028", - "libelleAcheminement": "AUBEGUIMONT", - "nomCommune": "AUBEGUIMONT" + "codePostal": "97680", + "codeCommune": "97617", + "libelleAcheminement": "TSINGONI", + "nomCommune": "TSINGONI" }, { - "codePostal": "91940", - "codeCommune": "91275", - "libelleAcheminement": "GOMETZ LE CHATEL", - "nomCommune": "GOMETZ LE CHATEL" + "codePostal": "80440", + "codeCommune": "80107", + "libelleAcheminement": "BLANGY TRONVILLE", + "nomCommune": "BLANGY TRONVILLE" }, { - "codePostal": "98716", - "codeCommune": "98736", - "libelleAcheminement": "PIRAE", - "nomCommune": "PIRAE" + "codePostal": "97131", + "codeCommune": "97119", + "libelleAcheminement": "PETIT CANAL", + "nomCommune": "PETIT CANAL" }, { - "codePostal": "83160", - "codeCommune": "83144", - "libelleAcheminement": "LA VALETTE DU VAR", - "nomCommune": "LA VALETTE DU VAR" + "codePostal": "77730", + "codeCommune": "77397", + "libelleAcheminement": "SAACY SUR MARNE", + "nomCommune": "SAACY SUR MARNE" }, { - "codePostal": "76450", - "codeCommune": "76032", - "libelleAcheminement": "AUBERVILLE LA MANUEL", - "nomCommune": "AUBERVILLE LA MANUEL" + "codePostal": "98620", + "codeCommune": "98612", + "libelleAcheminement": "SIGAVE", + "nomCommune": "SIGAVE" }, { - "codePostal": "91410", - "codeCommune": "91284", - "libelleAcheminement": "LES GRANGES LE ROI", - "nomCommune": "LES GRANGES LE ROI" + "codePostal": "80800", + "codeCommune": "80112", + "libelleAcheminement": "BONNAY", + "nomCommune": "BONNAY" }, { - "codePostal": "98703", - "codeCommune": "98738", - "libelleAcheminement": "PUNAAUIA", - "nomCommune": "PUNAAUIA" + "codePostal": "97117", + "codeCommune": "97122", + "libelleAcheminement": "PORT LOUIS", + "nomCommune": "PORT LOUIS" }, { - "codePostal": "83690", - "codeCommune": "83149", - "libelleAcheminement": "VILLECROZE", - "nomCommune": "VILLECROZE" + "codePostal": "77310", + "codeCommune": "77407", + "libelleAcheminement": "ST FARGEAU PONTHIERRY", + "nomCommune": "ST FARGEAU PONTHIERRY" }, { - "codePostal": "76720", - "codeCommune": "76034", - "libelleAcheminement": "VAL DE SCIE", - "nomCommune": "VAL DE SCIE" + "codePostal": "98785", + "codeCommune": "98713", + "libelleAcheminement": "RAITAHITI", + "nomCommune": "ARUTUA" }, { - "codePostal": "91630", - "codeCommune": "91292", - "libelleAcheminement": "GUIBEVILLE", - "nomCommune": "GUIBEVILLE" + "codePostal": "80670", + "codeCommune": "80113", + "libelleAcheminement": "BONNEVILLE", + "nomCommune": "BONNEVILLE" }, { - "codePostal": "98718", - "codeCommune": "98738", - "libelleAcheminement": "PUNAAUIA", - "nomCommune": "PUNAAUIA" + "codePostal": "97180", + "codeCommune": "97128", + "libelleAcheminement": "STE ANNE", + "nomCommune": "STE ANNE" }, { - "codePostal": "84240", - "codeCommune": "84002", - "libelleAcheminement": "ANSOUIS", - "nomCommune": "ANSOUIS" + "codePostal": "77310", + "codeCommune": "77407", + "libelleAcheminement": "ST FARGEAU PONTHIERRY", + "nomCommune": "ST FARGEAU PONTHIERRY" }, { - "codePostal": "76850", - "codeCommune": "76034", - "libelleAcheminement": "VAL DE SCIE", - "nomCommune": "VAL DE SCIE" + "codePostal": "98787", + "codeCommune": "98716", + "libelleAcheminement": "TEARAVERO", + "nomCommune": "FAKARAVA" }, { - "codePostal": "91430", - "codeCommune": "91312", - "libelleAcheminement": "IGNY", - "nomCommune": "IGNY" + "codePostal": "80500", + "codeCommune": "80121", + "libelleAcheminement": "BOUILLANCOURT LA BATAILLE", + "nomCommune": "BOUILLANCOURT LA BATAILLE" }, { - "codePostal": "98750", - "codeCommune": "98739", - "libelleAcheminement": "VAIURU", - "nomCommune": "RAIVAVAE" + "codePostal": "97180", + "codeCommune": "97128", + "libelleAcheminement": "STE ANNE", + "nomCommune": "STE ANNE" }, { - "codePostal": "84330", - "codeCommune": "84008", - "libelleAcheminement": "LE BARROUX", - "nomCommune": "LE BARROUX" + "codePostal": "77320", + "codeCommune": "77423", + "libelleAcheminement": "ST MARTIN DES CHAMPS", + "nomCommune": "ST MARTIN DES CHAMPS" }, { - "codePostal": "76390", - "codeCommune": "76035", - "libelleAcheminement": "AUMALE", - "nomCommune": "AUMALE" + "codePostal": "98755", + "codeCommune": "98719", + "libelleAcheminement": "ANGAKAUITAI", + "nomCommune": "GAMBIER" }, { - "codePostal": "91510", - "codeCommune": "91318", - "libelleAcheminement": "JANVILLE SUR JUINE", - "nomCommune": "JANVILLE SUR JUINE" + "codePostal": "80500", + "codeCommune": "80125", + "libelleAcheminement": "BOUSSICOURT", + "nomCommune": "BOUSSICOURT" }, { - "codePostal": "98779", - "codeCommune": "98742", - "libelleAcheminement": "TAPUARAVA", - "nomCommune": "REAO" + "codePostal": "97141", + "codeCommune": "97133", + "libelleAcheminement": "VIEUX FORT", + "nomCommune": "VIEUX FORT" }, { - "codePostal": "84410", - "codeCommune": "84017", - "libelleAcheminement": "BEDOIN", - "nomCommune": "BEDOIN" + "codePostal": "77320", + "codeCommune": "77424", + "libelleAcheminement": "ST MARTIN DU BOSCHET", + "nomCommune": "ST MARTIN DU BOSCHET" }, { - "codePostal": "76740", - "codeCommune": "76040", - "libelleAcheminement": "AUTIGNY", - "nomCommune": "AUTIGNY" + "codePostal": "98792", + "codeCommune": "98719", + "libelleAcheminement": "VAHANGA", + "nomCommune": "GAMBIER" }, { - "codePostal": "91310", - "codeCommune": "91339", - "libelleAcheminement": "LINAS", - "nomCommune": "LINAS" + "codePostal": "80150", + "codeCommune": "80133", + "libelleAcheminement": "BRAILLY CORNEHOTTE", + "nomCommune": "BRAILLY CORNEHOTTE" }, { - "codePostal": "98752", - "codeCommune": "98743", - "libelleAcheminement": "AMARU", - "nomCommune": "RIMATARA" + "codePostal": "97216", + "codeCommune": "97201", + "libelleAcheminement": "L AJOUPA BOUILLON", + "nomCommune": "L AJOUPA BOUILLON" }, { - "codePostal": "84500", - "codeCommune": "84019", - "libelleAcheminement": "BOLLENE", - "nomCommune": "BOLLENE" + "codePostal": "77630", + "codeCommune": "77425", + "libelleAcheminement": "ST MARTIN EN BIERE", + "nomCommune": "ST MARTIN EN BIERE" }, { - "codePostal": "76270", - "codeCommune": "76042", - "libelleAcheminement": "AUVILLIERS", - "nomCommune": "AUVILLIERS" + "codePostal": "98792", + "codeCommune": "98719", + "libelleAcheminement": "MARIA EST", + "nomCommune": "GAMBIER" }, { - "codePostal": "91300", - "codeCommune": "91377", - "libelleAcheminement": "MASSY", - "nomCommune": "MASSY" + "codePostal": "80160", + "codeCommune": "80134", + "libelleAcheminement": "BRASSY", + "nomCommune": "BRASSY" }, { - "codePostal": "98753", - "codeCommune": "98744", - "libelleAcheminement": "HAUTI", - "nomCommune": "RURUTU" + "codePostal": "97218", + "codeCommune": "97203", + "libelleAcheminement": "BASSE POINTE", + "nomCommune": "BASSE POINTE" }, { - "codePostal": "84480", - "codeCommune": "84023", - "libelleAcheminement": "BUOUX", - "nomCommune": "BUOUX" + "codePostal": "77750", + "codeCommune": "77429", + "libelleAcheminement": "ST OUEN SUR MORIN", + "nomCommune": "ST OUEN SUR MORIN" }, { - "codePostal": "76220", - "codeCommune": "76048", - "libelleAcheminement": "AVESNES EN BRAY", - "nomCommune": "AVESNES EN BRAY" + "codePostal": "98790", + "codeCommune": "98720", + "libelleAcheminement": "AMANU", + "nomCommune": "HAO" }, { - "codePostal": "91540", - "codeCommune": "91386", - "libelleAcheminement": "MENNECY", - "nomCommune": "MENNECY" + "codePostal": "80400", + "codeCommune": "80144", + "libelleAcheminement": "BROUCHY", + "nomCommune": "BROUCHY" }, { - "codePostal": "98733", - "codeCommune": "98745", - "libelleAcheminement": "IRIPAU", - "nomCommune": "TAHAA" + "codePostal": "97221", + "codeCommune": "97204", + "libelleAcheminement": "LE CARBET", + "nomCommune": "LE CARBET" }, { - "codePostal": "84410", - "codeCommune": "84041", - "libelleAcheminement": "CRILLON LE BRAVE", - "nomCommune": "CRILLON LE BRAVE" + "codePostal": "77120", + "codeCommune": "77433", + "libelleAcheminement": "BEAUTHEIL SAINTS", + "nomCommune": "BEAUTHEIL SAINTS" }, { - "codePostal": "76190", - "codeCommune": "76055", - "libelleAcheminement": "BAONS LE COMTE", - "nomCommune": "BAONS LE COMTE" + "codePostal": "98790", + "codeCommune": "98720", + "libelleAcheminement": "HIKITAKE", + "nomCommune": "HAO" }, { - "codePostal": "91780", - "codeCommune": "91393", - "libelleAcheminement": "MEROBERT", - "nomCommune": "MEROBERT" + "codePostal": "80300", + "codeCommune": "80151", + "libelleAcheminement": "BUIRE SUR L ANCRE", + "nomCommune": "BUIRE SUR L ANCRE" }, { - "codePostal": "98743", - "codeCommune": "98746", - "libelleAcheminement": "VAITAHU", - "nomCommune": "TAHUATA" + "codePostal": "97232", + "codeCommune": "97213", + "libelleAcheminement": "LE LAMENTIN", + "nomCommune": "LE LAMENTIN" }, { - "codePostal": "84220", - "codeCommune": "84050", - "libelleAcheminement": "GORDES", - "nomCommune": "GORDES" + "codePostal": "77169", + "codeCommune": "77436", + "libelleAcheminement": "ST SIMEON", + "nomCommune": "ST SIMEON" }, { - "codePostal": "76260", - "codeCommune": "76058", - "libelleAcheminement": "BAROMESNIL", - "nomCommune": "BAROMESNIL" + "codePostal": "98790", + "codeCommune": "98720", + "libelleAcheminement": "MANUHANGI", + "nomCommune": "HAO" }, { - "codePostal": "91490", - "codeCommune": "91405", - "libelleAcheminement": "MILLY LA FORET", - "nomCommune": "MILLY LA FORET" + "codePostal": "80700", + "codeCommune": "80152", + "libelleAcheminement": "BUS LA MESIERE", + "nomCommune": "BUS LA MESIERE" }, { - "codePostal": "98721", - "codeCommune": "98747", - "libelleAcheminement": "PUEU", - "nomCommune": "TAIARAPU EST" + "codePostal": "97214", + "codeCommune": "97214", + "libelleAcheminement": "LE LORRAIN", + "nomCommune": "LE LORRAIN" }, { - "codePostal": "84220", - "codeCommune": "84051", - "libelleAcheminement": "GOULT", - "nomCommune": "GOULT" + "codePostal": "77148", + "codeCommune": "77439", + "libelleAcheminement": "SALINS", + "nomCommune": "SALINS" }, { - "codePostal": "76890", - "codeCommune": "76066", - "libelleAcheminement": "BEAUTOT", - "nomCommune": "BEAUTOT" + "codePostal": "98790", + "codeCommune": "98720", + "libelleAcheminement": "TEANOGA", + "nomCommune": "HAO" }, { - "codePostal": "91590", - "codeCommune": "91412", - "libelleAcheminement": "MONDEVILLE", - "nomCommune": "MONDEVILLE" + "codePostal": "80560", + "codeCommune": "80153", + "libelleAcheminement": "BUS LES ARTOIS", + "nomCommune": "BUS LES ARTOIS" }, { - "codePostal": "98725", - "codeCommune": "98748", - "libelleAcheminement": "VAIRAO", - "nomCommune": "TAIARAPU OUEST" + "codePostal": "97218", + "codeCommune": "97215", + "libelleAcheminement": "MACOUBA", + "nomCommune": "MACOUBA" }, { - "codePostal": "84600", - "codeCommune": "84053", - "libelleAcheminement": "GRILLON", - "nomCommune": "GRILLON" + "codePostal": "77260", + "codeCommune": "77440", + "libelleAcheminement": "SAMMERON", + "nomCommune": "SAMMERON" }, { - "codePostal": "76110", - "codeCommune": "76076", - "libelleAcheminement": "BENARVILLE", - "nomCommune": "BENARVILLE" + "codePostal": "98705", + "codeCommune": "98722", + "libelleAcheminement": "HITIAA", + "nomCommune": "HITIAA O TE RA" }, { - "codePostal": "91150", - "codeCommune": "91433", - "libelleAcheminement": "MORIGNY CHAMPIGNY", - "nomCommune": "MORIGNY CHAMPIGNY" + "codePostal": "80200", + "codeCommune": "80154", + "libelleAcheminement": "BUSSU", + "nomCommune": "BUSSU" }, { - "codePostal": "98782", - "codeCommune": "98749", - "libelleAcheminement": "FAKATOPATERE", - "nomCommune": "TAKAROA" + "codePostal": "97250", + "codeCommune": "97225", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "84800", - "codeCommune": "84054", - "libelleAcheminement": "L ISLE SUR LA SORGUE", - "nomCommune": "L ISLE SUR LA SORGUE" + "codePostal": "77920", + "codeCommune": "77441", + "libelleAcheminement": "SAMOIS SUR SEINE", + "nomCommune": "SAMOIS SUR SEINE" }, { - "codePostal": "76450", - "codeCommune": "76083", - "libelleAcheminement": "BERTHEAUVILLE", - "nomCommune": "BERTHEAUVILLE" + "codePostal": "98706", + "codeCommune": "98722", + "libelleAcheminement": "MAHAENA", + "nomCommune": "HITIAA O TE RA" }, { - "codePostal": "91750", - "codeCommune": "91441", - "libelleAcheminement": "NAINVILLE LES ROCHES", - "nomCommune": "NAINVILLE LES ROCHES" + "codePostal": "80290", + "codeCommune": "80157", + "libelleAcheminement": "BUSSY LES POIX", + "nomCommune": "BUSSY LES POIX" }, { - "codePostal": "98735", - "codeCommune": "98750", - "libelleAcheminement": "AVERA", - "nomCommune": "TAPUTAPUATEA" + "codePostal": "97227", + "codeCommune": "97226", + "libelleAcheminement": "STE ANNE", + "nomCommune": "STE ANNE" }, { - "codePostal": "84150", - "codeCommune": "84056", - "libelleAcheminement": "JONQUIERES", - "nomCommune": "JONQUIERES" + "codePostal": "77210", + "codeCommune": "77442", + "libelleAcheminement": "SAMOREAU", + "nomCommune": "SAMOREAU" }, { - "codePostal": "76210", - "codeCommune": "76090", - "libelleAcheminement": "BEUZEVILLE LA GRENIER", - "nomCommune": "BEUZEVILLE LA GRENIER" + "codePostal": "98741", + "codeCommune": "98723", + "libelleAcheminement": "HANAPAOA", + "nomCommune": "HIVA OA" }, { - "codePostal": "91340", - "codeCommune": "91461", - "libelleAcheminement": "OLLAINVILLE", - "nomCommune": "OLLAINVILLE" + "codePostal": "80132", + "codeCommune": "80161", + "libelleAcheminement": "CAHON GOUY", + "nomCommune": "CAHON" }, { - "codePostal": "98754", - "codeCommune": "98753", - "libelleAcheminement": "TAAHUAIA", - "nomCommune": "TUBUAI" + "codePostal": "97230", + "codeCommune": "97228", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "84360", - "codeCommune": "84065", - "libelleAcheminement": "LAURIS", - "nomCommune": "LAURIS" + "codePostal": "77320", + "codeCommune": "77444", + "libelleAcheminement": "SANCY LES PROVINS", + "nomCommune": "SANCY LES PROVINS" }, { - "codePostal": "76210", - "codeCommune": "76092", - "libelleAcheminement": "BEUZEVILLETTE", - "nomCommune": "BEUZEVILLETTE" + "codePostal": "98749", + "codeCommune": "98723", + "libelleAcheminement": "PUAMAU", + "nomCommune": "HIVA OA" }, { - "codePostal": "91400", - "codeCommune": "91471", - "libelleAcheminement": "ORSAY", - "nomCommune": "ORSAY" + "codePostal": "80132", + "codeCommune": "80163", + "libelleAcheminement": "CAMBRON", + "nomCommune": "CAMBRON" }, { - "codePostal": "98735", - "codeCommune": "98754", - "libelleAcheminement": "TEVAITOA", - "nomCommune": "TUMARAA" + "codePostal": "97229", + "codeCommune": "97231", + "libelleAcheminement": "LES TROIS ILETS", + "nomCommune": "LES TROIS ILETS" }, { - "codePostal": "84660", - "codeCommune": "84071", - "libelleAcheminement": "MAUBEC", - "nomCommune": "MAUBEC" + "codePostal": "77650", + "codeCommune": "77446", + "libelleAcheminement": "SAVINS", + "nomCommune": "SAVINS" }, { - "codePostal": "76220", - "codeCommune": "76093", - "libelleAcheminement": "BEZANCOURT", - "nomCommune": "BEZANCOURT" + "codePostal": "98796", + "codeCommune": "98723", + "libelleAcheminement": "FATU HUKU", + "nomCommune": "HIVA OA" }, { - "codePostal": "94390", - "codeCommune": "91479", - "libelleAcheminement": "PARAY VIEILLE POSTE", - "nomCommune": "PARAY VIEILLE POSTE" + "codePostal": "80540", + "codeCommune": "80165", + "libelleAcheminement": "CAMPS EN AMIENOIS", + "nomCommune": "CAMPS EN AMIENOIS" }, { - "codePostal": "98744", - "codeCommune": "98756", - "libelleAcheminement": "VAIPAEE", - "nomCommune": "UA HUKA" + "codePostal": "97280", + "codeCommune": "97232", + "libelleAcheminement": "LE VAUCLIN", + "nomCommune": "LE VAUCLIN" }, { - "codePostal": "84380", - "codeCommune": "84072", - "libelleAcheminement": "MAZAN", - "nomCommune": "MAZAN" + "codePostal": "77520", + "codeCommune": "77454", + "libelleAcheminement": "SOGNOLLES EN MONTOIS", + "nomCommune": "SOGNOLLES EN MONTOIS" }, { - "codePostal": "76730", - "codeCommune": "76097", - "libelleAcheminement": "BIVILLE LA RIVIERE", - "nomCommune": "BIVILLE LA RIVIERE" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "FAIE", + "nomCommune": "HUAHINE" }, { - "codePostal": "91690", - "codeCommune": "91544", - "libelleAcheminement": "ST CYR LA RIVIERE", - "nomCommune": "ST CYR LA RIVIERE" + "codePostal": "80140", + "codeCommune": "80169", + "libelleAcheminement": "CANNESSIERES", + "nomCommune": "CANNESSIERES" }, { - "codePostal": "98745", - "codeCommune": "98757", - "libelleAcheminement": "HAKAHETAU", - "nomCommune": "UA POU" + "codePostal": "97226", + "codeCommune": "97233", + "libelleAcheminement": "LE MORNE VERT", + "nomCommune": "LE MORNE VERT" }, { - "codePostal": "84390", - "codeCommune": "84079", - "libelleAcheminement": "MONIEUX", - "nomCommune": "MONIEUX" + "codePostal": "77130", + "codeCommune": "77467", + "libelleAcheminement": "LA TOMBE", + "nomCommune": "LA TOMBE" }, { - "codePostal": "76460", - "codeCommune": "76104", - "libelleAcheminement": "BLOSSEVILLE", - "nomCommune": "BLOSSEVILLE" + "codePostal": "98769", + "codeCommune": "98726", + "libelleAcheminement": "POUHEVA", + "nomCommune": "MAKEMO" }, { - "codePostal": "91180", - "codeCommune": "91552", - "libelleAcheminement": "ST GERMAIN LES ARPAJON", - "nomCommune": "ST GERMAIN LES ARPAJON" + "codePostal": "80290", + "codeCommune": "80179", + "libelleAcheminement": "CAULIERES", + "nomCommune": "CAULIERES" }, { - "codePostal": "98745", - "codeCommune": "98757", - "libelleAcheminement": "HAKAHAU", - "nomCommune": "UA POU" + "codePostal": "97350", + "codeCommune": "97303", + "libelleAcheminement": "IRACOUBO", + "nomCommune": "IRACOUBO" }, { - "codePostal": "84310", - "codeCommune": "84081", - "libelleAcheminement": "MORIERES LES AVIGNON", - "nomCommune": "MORIERES LES AVIGNON" + "codePostal": "77260", + "codeCommune": "77478", + "libelleAcheminement": "USSY SUR MARNE", + "nomCommune": "USSY SUR MARNE" }, { - "codePostal": "76750", - "codeCommune": "76107", - "libelleAcheminement": "BOIS GUILBERT", - "nomCommune": "BOIS GUILBERT" + "codePostal": "98790", + "codeCommune": "98726", + "libelleAcheminement": "MARUTEA NORD", + "nomCommune": "MAKEMO" }, { - "codePostal": "91530", - "codeCommune": "91568", - "libelleAcheminement": "ST MAURICE MONTCOURONNE", - "nomCommune": "ST MAURICE MONTCOURONNE" + "codePostal": "80800", + "codeCommune": "80181", + "libelleAcheminement": "CAYEUX EN SANTERRE", + "nomCommune": "CAYEUX EN SANTERRE" }, { - "codePostal": "98735", - "codeCommune": "98758", - "libelleAcheminement": "UTUROA", - "nomCommune": "UTUROA" + "codePostal": "97310", + "codeCommune": "97304", + "libelleAcheminement": "KOUROU", + "nomCommune": "KOUROU" }, { - "codePostal": "84550", - "codeCommune": "84083", - "libelleAcheminement": "MORNAS", - "nomCommune": "MORNAS" + "codePostal": "77360", + "codeCommune": "77479", + "libelleAcheminement": "VAIRES SUR MARNE", + "nomCommune": "VAIRES SUR MARNE" }, { - "codePostal": "76750", - "codeCommune": "76109", - "libelleAcheminement": "BOIS HEROULT", - "nomCommune": "BOIS HEROULT" + "codePostal": "98790", + "codeCommune": "98726", + "libelleAcheminement": "OTATAKE", + "nomCommune": "MAKEMO" }, { - "codePostal": "91910", - "codeCommune": "91578", - "libelleAcheminement": "ST SULPICE DE FAVIERES", - "nomCommune": "ST SULPICE DE FAVIERES" + "codePostal": "80320", + "codeCommune": "80186", + "libelleAcheminement": "CHAULNES", + "nomCommune": "CHAULNES" }, { - "codePostal": "98813", - "codeCommune": "98804", - "libelleAcheminement": "CANALA", - "nomCommune": "CANALA" + "codePostal": "97355", + "codeCommune": "97305", + "libelleAcheminement": "MACOURIA TONATE", + "nomCommune": "MACOURIA" }, { - "codePostal": "84110", - "codeCommune": "84094", - "libelleAcheminement": "PUYMERAS", - "nomCommune": "PUYMERAS" + "codePostal": "77370", + "codeCommune": "77481", + "libelleAcheminement": "VANVILLE", + "nomCommune": "VANVILLE" }, { - "codePostal": "76160", - "codeCommune": "76111", - "libelleAcheminement": "BOIS L EVEQUE", - "nomCommune": "BOIS L EVEQUE" + "codePostal": "98790", + "codeCommune": "98726", + "libelleAcheminement": "TEPOTO SUD", + "nomCommune": "MAKEMO" }, { - "codePostal": "91450", - "codeCommune": "91600", - "libelleAcheminement": "SOISY SUR SEINE", - "nomCommune": "SOISY SUR SEINE" + "codePostal": "80310", + "codeCommune": "80187", + "libelleAcheminement": "LA CHAUSSEE TIRANCOURT", + "nomCommune": "LA CHAUSSEE TIRANCOURT" }, { - "codePostal": "98881", - "codeCommune": "98806", - "libelleAcheminement": "FARINO", - "nomCommune": "FARINO" + "codePostal": "97311", + "codeCommune": "97310", + "libelleAcheminement": "ROURA", + "nomCommune": "ROURA" }, { - "codePostal": "84190", - "codeCommune": "84100", - "libelleAcheminement": "LA ROQUE ALRIC", - "nomCommune": "LA ROQUE ALRIC" + "codePostal": "77580", + "codeCommune": "77484", + "libelleAcheminement": "VAUCOURTOIS", + "nomCommune": "VAUCOURTOIS" }, { - "codePostal": "76110", - "codeCommune": "76118", - "libelleAcheminement": "BORNAMBUSC", - "nomCommune": "BORNAMBUSC" + "codePostal": "98790", + "codeCommune": "98726", + "libelleAcheminement": "TUANAKE", + "nomCommune": "MAKEMO" }, { - "codePostal": "91580", - "codeCommune": "91602", - "libelleAcheminement": "SOUZY LA BRICHE", - "nomCommune": "SOUZY LA BRICHE" + "codePostal": "80360", + "codeCommune": "80204", + "libelleAcheminement": "COMBLES", + "nomCommune": "COMBLES" }, { - "codePostal": "98817", - "codeCommune": "98810", - "libelleAcheminement": "KAALA GOMEN", - "nomCommune": "KAALA GOMEN" + "codePostal": "97319", + "codeCommune": "97361", + "libelleAcheminement": "AWALA YALIMAPO", + "nomCommune": "AWALA YALIMAPO" }, { - "codePostal": "84400", - "codeCommune": "84103", - "libelleAcheminement": "RUSTREL", - "nomCommune": "RUSTREL" + "codePostal": "77000", + "codeCommune": "77487", + "libelleAcheminement": "VAUX LE PENIL", + "nomCommune": "VAUX LE PENIL" }, { - "codePostal": "76270", - "codeCommune": "76122", - "libelleAcheminement": "CALLENGEVILLE", - "nomCommune": "CALLENGEVILLE" + "codePostal": "98728", + "codeCommune": "98729", + "libelleAcheminement": "AFAREAITU", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "91640", - "codeCommune": "91634", - "libelleAcheminement": "VAUGRIGNEUSE", - "nomCommune": "VAUGRIGNEUSE" + "codePostal": "80890", + "codeCommune": "80205", + "libelleAcheminement": "CONDE FOLIE", + "nomCommune": "CONDE FOLIE" }, { - "codePostal": "98880", - "codeCommune": "98813", - "libelleAcheminement": "LA FOA", - "nomCommune": "LA FOA" + "codePostal": "97425", + "codeCommune": "97401", + "libelleAcheminement": "LES AVIRONS", + "nomCommune": "LES AVIRONS" }, { - "codePostal": "84400", - "codeCommune": "84105", - "libelleAcheminement": "SAIGNON", - "nomCommune": "SAIGNON" + "codePostal": "77440", + "codeCommune": "77490", + "libelleAcheminement": "VENDREST", + "nomCommune": "VENDREST" }, { - "codePostal": "76110", - "codeCommune": "76141", - "libelleAcheminement": "BREAUTE", - "nomCommune": "BREAUTE" + "codePostal": "98729", + "codeCommune": "98729", + "libelleAcheminement": "MAIAO", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "91810", - "codeCommune": "91648", - "libelleAcheminement": "VERT LE GRAND", - "nomCommune": "VERT LE GRAND" + "codePostal": "80135", + "codeCommune": "80215", + "libelleAcheminement": "COULONVILLERS", + "nomCommune": "COULONVILLERS" }, { - "codePostal": "98885", - "codeCommune": "98814", - "libelleAcheminement": "MOU", - "nomCommune": "LIFOU" + "codePostal": "97412", + "codeCommune": "97402", + "libelleAcheminement": "BRAS PANON", + "nomCommune": "BRAS PANON" }, { - "codePostal": "84210", - "codeCommune": "84108", - "libelleAcheminement": "ST DIDIER", - "nomCommune": "ST DIDIER" + "codePostal": "77230", + "codeCommune": "77511", + "libelleAcheminement": "VILLENEUVE SOUS DAMMARTIN", + "nomCommune": "VILLENEUVE SOUS DAMMARTIN" }, { - "codePostal": "76560", - "codeCommune": "76144", - "libelleAcheminement": "BRETTEVILLE ST LAURENT", - "nomCommune": "BRETTEVILLE ST LAURENT" + "codePostal": "98729", + "codeCommune": "98729", + "libelleAcheminement": "HAURU", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "91100", - "codeCommune": "91659", - "libelleAcheminement": "VILLABE", - "nomCommune": "VILLABE" + "codePostal": "80500", + "codeCommune": "80220", + "libelleAcheminement": "COURTEMANCHE", + "nomCommune": "COURTEMANCHE" }, { - "codePostal": "98828", - "codeCommune": "98815", - "libelleAcheminement": "TADINE", - "nomCommune": "MARE" + "codePostal": "97412", + "codeCommune": "97402", + "libelleAcheminement": "BRAS PANON", + "nomCommune": "BRAS PANON" }, { - "codePostal": "84390", - "codeCommune": "84110", - "libelleAcheminement": "ST LEGER DU VENTOUX", - "nomCommune": "ST LEGER DU VENTOUX" + "codePostal": "77130", + "codeCommune": "77516", + "libelleAcheminement": "VILLE ST JACQUES", + "nomCommune": "VILLE ST JACQUES" }, { - "codePostal": "76460", - "codeCommune": "76151", - "libelleAcheminement": "CAILLEVILLE", - "nomCommune": "CAILLEVILLE" + "codePostal": "98729", + "codeCommune": "98729", + "libelleAcheminement": "PAPETOAI", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "91140", - "codeCommune": "91661", - "libelleAcheminement": "VILLEBON SUR YVETTE", - "nomCommune": "VILLEBON SUR YVETTE" + "codePostal": "80800", + "codeCommune": "80234", + "libelleAcheminement": "DAOURS", + "nomCommune": "DAOURS" }, { - "codePostal": "98878", - "codeCommune": "98815", - "libelleAcheminement": "LA ROCHE", - "nomCommune": "MARE" + "codePostal": "97419", + "codeCommune": "97408", + "libelleAcheminement": "LA POSSESSION", + "nomCommune": "LA POSSESSION" }, { - "codePostal": "84390", - "codeCommune": "84123", - "libelleAcheminement": "SAULT", - "nomCommune": "SAULT" + "codePostal": "77410", + "codeCommune": "77517", + "libelleAcheminement": "VILLEVAUDE", + "nomCommune": "VILLEVAUDE" }, { - "codePostal": "76340", - "codeCommune": "76154", - "libelleAcheminement": "CAMPNEUSEVILLE", - "nomCommune": "CAMPNEUSEVILLE" + "codePostal": "98729", + "codeCommune": "98729", + "libelleAcheminement": "TIAHURA", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "91170", - "codeCommune": "91687", - "libelleAcheminement": "VIRY CHATILLON", - "nomCommune": "VIRY CHATILLON" + "codePostal": "80370", + "codeCommune": "80245", + "libelleAcheminement": "DOMLEGER LONGVILLERS", + "nomCommune": "DOMLEGER LONGVILLERS" }, { - "codePostal": "98822", - "codeCommune": "98822", - "libelleAcheminement": "POINDIMIE", - "nomCommune": "POINDIMIE" + "codePostal": "97419", + "codeCommune": "97408", + "libelleAcheminement": "LA POSSESSION", + "nomCommune": "LA POSSESSION" }, { - "codePostal": "84700", - "codeCommune": "84129", - "libelleAcheminement": "SORGUES", - "nomCommune": "SORGUES" + "codePostal": "77190", + "codeCommune": "77518", + "libelleAcheminement": "VILLIERS EN BIERE", + "nomCommune": "VILLIERS EN BIERE" }, { - "codePostal": "76260", - "codeCommune": "76155", - "libelleAcheminement": "CANEHAN", - "nomCommune": "CANEHAN" + "codePostal": "98729", + "codeCommune": "98729", + "libelleAcheminement": "VAIANAE", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "92290", - "codeCommune": "92019", - "libelleAcheminement": "CHATENAY MALABRY", - "nomCommune": "CHATENAY MALABRY" + "codePostal": "80140", + "codeCommune": "80251", + "libelleAcheminement": "DOUDELAINVILLE", + "nomCommune": "DOUDELAINVILLE" }, { - "codePostal": "98829", - "codeCommune": "98829", - "libelleAcheminement": "THIO", - "nomCommune": "THIO" + "codePostal": "97419", + "codeCommune": "97408", + "libelleAcheminement": "LA POSSESSION", + "nomCommune": "LA POSSESSION" }, { - "codePostal": "84750", - "codeCommune": "84144", - "libelleAcheminement": "VIENS", - "nomCommune": "VIENS" + "codePostal": "77580", + "codeCommune": "77521", + "libelleAcheminement": "VILLIERS SUR MORIN", + "nomCommune": "VILLIERS SUR MORIN" }, { - "codePostal": "76490", - "codeCommune": "76164", - "libelleAcheminement": "RIVES EN SEINE", - "nomCommune": "RIVES EN SEINE" + "codePostal": "98742", + "codeCommune": "98731", + "libelleAcheminement": "TAIOHAE", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "92140", - "codeCommune": "92023", - "libelleAcheminement": "CLAMART", - "nomCommune": "CLAMART" + "codePostal": "80700", + "codeCommune": "80263", + "libelleAcheminement": "L ECHELLE ST AURIN", + "nomCommune": "L ECHELLE ST AURIN" }, { - "codePostal": "98833", - "codeCommune": "98831", - "libelleAcheminement": "VOH", - "nomCommune": "VOH" + "codePostal": "97400", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "85120", - "codeCommune": "85005", - "libelleAcheminement": "ANTIGNY", - "nomCommune": "ANTIGNY" + "codePostal": "77520", + "codeCommune": "77524", + "libelleAcheminement": "VIMPELLES", + "nomCommune": "VIMPELLES" }, { - "codePostal": "76320", - "codeCommune": "76165", - "libelleAcheminement": "CAUDEBEC LES ELBEUF", - "nomCommune": "CAUDEBEC LES ELBEUF" + "codePostal": "98796", + "codeCommune": "98731", + "libelleAcheminement": "EIAO", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "92110", - "codeCommune": "92024", - "libelleAcheminement": "CLICHY", - "nomCommune": "CLICHY" + "codePostal": "80290", + "codeCommune": "80276", + "libelleAcheminement": "EQUENNES ERAMECOURT", + "nomCommune": "EQUENNES ERAMECOURT" }, { - "codePostal": "98834", - "codeCommune": "98832", - "libelleAcheminement": "YATE", - "nomCommune": "YATE" + "codePostal": "97400", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "85430", - "codeCommune": "85008", - "libelleAcheminement": "AUBIGNY LES CLOUZEAUX", - "nomCommune": "AUBIGNY LES CLOUZEAUX" + "codePostal": "77540", + "codeCommune": "77527", + "libelleAcheminement": "VOINSLES", + "nomCommune": "VOINSLES" }, { - "codePostal": "76390", - "codeCommune": "76166", - "libelleAcheminement": "LE CAULE STE BEUVE", - "nomCommune": "LE CAULE STE BEUVE" + "codePostal": "98788", + "codeCommune": "98732", + "libelleAcheminement": "TEMANUFAARA", + "nomCommune": "NUKUTAVAKE" }, { - "codePostal": "92130", - "codeCommune": "92040", - "libelleAcheminement": "ISSY LES MOULINEAUX", - "nomCommune": "ISSY LES MOULINEAUX" + "codePostal": "80500", + "codeCommune": "80278", + "libelleAcheminement": "ERCHES", + "nomCommune": "ERCHES" }, { - "codePostal": "98000", - "codeCommune": "99138", - "libelleAcheminement": "MONACO", - "nomCommune": "MONACO" + "codePostal": "97490", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "85200", - "codeCommune": "85009", - "libelleAcheminement": "AUCHAY SUR VENDEE", - "nomCommune": "AUCHAY SUR VENDEE" + "codePostal": "78660", + "codeCommune": "78003", + "libelleAcheminement": "ABLIS", + "nomCommune": "ABLIS" }, { - "codePostal": "76590", - "codeCommune": "76168", - "libelleAcheminement": "LES CENT ACRES", - "nomCommune": "LES CENT ACRES" + "codePostal": "98776", + "codeCommune": "98740", + "libelleAcheminement": "TIPUTA", + "nomCommune": "RANGIROA" }, { - "codePostal": "92120", - "codeCommune": "92049", - "libelleAcheminement": "MONTROUGE", - "nomCommune": "MONTROUGE" + "codePostal": "80200", + "codeCommune": "80288", + "libelleAcheminement": "ESTREES DENIECOURT", + "nomCommune": "ESTREES DENIECOURT" }, { - "codePostal": "85170", - "codeCommune": "85019", - "libelleAcheminement": "BELLEVIGNY", - "nomCommune": "BELLEVIGNY" + "codePostal": "97490", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "76590", - "codeCommune": "76170", - "libelleAcheminement": "LA CHAPELLE DU BOURGAY", - "nomCommune": "LA CHAPELLE DU BOURGAY" + "codePostal": "78580", + "codeCommune": "78049", + "libelleAcheminement": "BAZEMONT", + "nomCommune": "BAZEMONT" }, { - "codePostal": "92350", - "codeCommune": "92060", - "libelleAcheminement": "LE PLESSIS ROBINSON", - "nomCommune": "LE PLESSIS ROBINSON" + "codePostal": "98790", + "codeCommune": "98740", + "libelleAcheminement": "VAITEPAUA", + "nomCommune": "RANGIROA" }, { - "codePostal": "85320", - "codeCommune": "85023", - "libelleAcheminement": "BESSAY", - "nomCommune": "BESSAY" + "codePostal": "80360", + "codeCommune": "80298", + "libelleAcheminement": "ETRICOURT MANANCOURT", + "nomCommune": "ETRICOURT MANANCOURT" }, { - "codePostal": "76660", - "codeCommune": "76175", - "libelleAcheminement": "CLAIS", - "nomCommune": "CLAIS" + "codePostal": "97480", + "codeCommune": "97412", + "libelleAcheminement": "ST JOSEPH", + "nomCommune": "ST JOSEPH" }, { - "codePostal": "92350", - "codeCommune": "92060", - "libelleAcheminement": "LE PLESSIS ROBINSON", - "nomCommune": "LE PLESSIS ROBINSON" + "codePostal": "78910", + "codeCommune": "78053", + "libelleAcheminement": "BEHOUST", + "nomCommune": "BEHOUST" }, { - "codePostal": "85470", - "codeCommune": "85035", - "libelleAcheminement": "BRETIGNOLLES SUR MER", - "nomCommune": "BRETIGNOLLES SUR MER" + "codePostal": "98780", + "codeCommune": "98742", + "libelleAcheminement": "MARAUTAGAROA", + "nomCommune": "REAO" }, { - "codePostal": "76640", - "codeCommune": "76181", - "libelleAcheminement": "CLEVILLE", - "nomCommune": "CLEVILLE" + "codePostal": "80500", + "codeCommune": "80302", + "libelleAcheminement": "FAVEROLLES", + "nomCommune": "FAVEROLLES" }, { - "codePostal": "92170", - "codeCommune": "92075", - "libelleAcheminement": "VANVES", - "nomCommune": "VANVES" + "codePostal": "97480", + "codeCommune": "97412", + "libelleAcheminement": "ST JOSEPH", + "nomCommune": "ST JOSEPH" }, { - "codePostal": "85320", - "codeCommune": "85036", - "libelleAcheminement": "LA BRETONNIERE LA CLAYE", - "nomCommune": "LA BRETONNIERE LA CLAYE" + "codePostal": "78650", + "codeCommune": "78062", + "libelleAcheminement": "BEYNES", + "nomCommune": "BEYNES" }, { - "codePostal": "76390", - "codeCommune": "76186", - "libelleAcheminement": "CONTEVILLE", - "nomCommune": "CONTEVILLE" + "codePostal": "98752", + "codeCommune": "98743", + "libelleAcheminement": "ANAPOTO", + "nomCommune": "RIMATARA" }, { - "codePostal": "92390", - "codeCommune": "92078", - "libelleAcheminement": "VILLENEUVE LA GARENNE", - "nomCommune": "VILLENEUVE LA GARENNE" + "codePostal": "80470", + "codeCommune": "80305", + "libelleAcheminement": "FERRIERES", + "nomCommune": "FERRIERES" }, { - "codePostal": "85220", - "codeCommune": "85045", - "libelleAcheminement": "LA CHAIZE GIRAUD", - "nomCommune": "LA CHAIZE GIRAUD" + "codePostal": "97416", + "codeCommune": "97413", + "libelleAcheminement": "ST LEU", + "nomCommune": "ST LEU" }, { - "codePostal": "76760", - "codeCommune": "76198", - "libelleAcheminement": "CRIQUETOT SUR OUVILLE", - "nomCommune": "CRIQUETOT SUR OUVILLE" + "codePostal": "78270", + "codeCommune": "78089", + "libelleAcheminement": "BONNIERES SUR SEINE", + "nomCommune": "BONNIERES SUR SEINE" }, { - "codePostal": "93300", - "codeCommune": "93001", - "libelleAcheminement": "AUBERVILLIERS", - "nomCommune": "AUBERVILLIERS" + "codePostal": "98752", + "codeCommune": "98743", + "libelleAcheminement": "MUTUAURA", + "nomCommune": "RIMATARA" }, { - "codePostal": "85310", - "codeCommune": "85046", - "libelleAcheminement": "LA CHAIZE LE VICOMTE", - "nomCommune": "LA CHAIZE LE VICOMTE" + "codePostal": "80200", + "codeCommune": "80307", + "libelleAcheminement": "FEUILLERES", + "nomCommune": "FEUILLERES" }, { - "codePostal": "76390", - "codeCommune": "76199", - "libelleAcheminement": "CRIQUIERS", - "nomCommune": "CRIQUIERS" + "codePostal": "97460", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "93170", - "codeCommune": "93006", - "libelleAcheminement": "BAGNOLET", - "nomCommune": "BAGNOLET" + "codePostal": "78930", + "codeCommune": "78104", + "libelleAcheminement": "BREUIL BOIS ROBERT", + "nomCommune": "BREUIL BOIS ROBERT" }, { - "codePostal": "85300", - "codeCommune": "85047", - "libelleAcheminement": "CHALLANS", - "nomCommune": "CHALLANS" + "codePostal": "98753", + "codeCommune": "98744", + "libelleAcheminement": "AVERA", + "nomCommune": "RURUTU" }, { - "codePostal": "76220", - "codeCommune": "76209", - "libelleAcheminement": "DAMPIERRE EN BRAY", - "nomCommune": "DAMPIERRE EN BRAY" + "codePostal": "80750", + "codeCommune": "80310", + "libelleAcheminement": "FIENVILLERS", + "nomCommune": "FIENVILLERS" }, { - "codePostal": "93440", - "codeCommune": "93030", - "libelleAcheminement": "DUGNY", - "nomCommune": "DUGNY" + "codePostal": "97438", + "codeCommune": "97418", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "85610", - "codeCommune": "85076", - "libelleAcheminement": "CUGAND", - "nomCommune": "CUGAND" + "codePostal": "78980", + "codeCommune": "78107", + "libelleAcheminement": "BREVAL", + "nomCommune": "BREVAL" }, { - "codePostal": "76110", - "codeCommune": "76213", - "libelleAcheminement": "DAUBEUF SERVILLE", - "nomCommune": "DAUBEUF SERVILLE" + "codePostal": "98733", + "codeCommune": "98745", + "libelleAcheminement": "RUUTIA", + "nomCommune": "TAHAA" }, { - "codePostal": "93800", - "codeCommune": "93031", - "libelleAcheminement": "EPINAY SUR SEINE", - "nomCommune": "EPINAY SUR SEINE" + "codePostal": "80360", + "codeCommune": "80314", + "libelleAcheminement": "FLERS", + "nomCommune": "FLERS" }, { - "codePostal": "85200", - "codeCommune": "85092", - "libelleAcheminement": "FONTENAY LE COMTE", - "nomCommune": "FONTENAY LE COMTE" + "codePostal": "97439", + "codeCommune": "97419", + "libelleAcheminement": "STE ROSE", + "nomCommune": "STE ROSE" }, { - "codePostal": "76200", - "codeCommune": "76217", - "libelleAcheminement": "DIEPPE", - "nomCommune": "DIEPPE" + "codePostal": "78830", + "codeCommune": "78120", + "libelleAcheminement": "BULLION", + "nomCommune": "BULLION" }, { - "codePostal": "93450", - "codeCommune": "93039", - "libelleAcheminement": "L ILE ST DENIS", - "nomCommune": "L ILE ST DENIS" + "codePostal": "98733", + "codeCommune": "98745", + "libelleAcheminement": "TAPUAMU", + "nomCommune": "TAHAA" }, { - "codePostal": "85480", - "codeCommune": "85093", - "libelleAcheminement": "FOUGERE", - "nomCommune": "FOUGERE" + "codePostal": "80540", + "codeCommune": "80319", + "libelleAcheminement": "FLUY", + "nomCommune": "FLUY" }, { - "codePostal": "76220", - "codeCommune": "76229", - "libelleAcheminement": "ELBEUF EN BRAY", - "nomCommune": "ELBEUF EN BRAY" + "codePostal": "97439", + "codeCommune": "97419", + "libelleAcheminement": "STE ROSE", + "nomCommune": "STE ROSE" }, { - "codePostal": "93100", - "codeCommune": "93048", - "libelleAcheminement": "MONTREUIL", - "nomCommune": "MONTREUIL" + "codePostal": "78720", + "codeCommune": "78125", + "libelleAcheminement": "LA CELLE LES BORDES", + "nomCommune": "LA CELLE LES BORDES" }, { - "codePostal": "85300", - "codeCommune": "85095", - "libelleAcheminement": "FROIDFOND", - "nomCommune": "FROIDFOND" + "codePostal": "98734", + "codeCommune": "98745", + "libelleAcheminement": "VAITOARE", + "nomCommune": "TAHAA" }, { - "codePostal": "76500", - "codeCommune": "76231", - "libelleAcheminement": "ELBEUF", - "nomCommune": "ELBEUF" + "codePostal": "80340", + "codeCommune": "80325", + "libelleAcheminement": "FONTAINE LES CAPPY", + "nomCommune": "FONTAINE LES CAPPY" }, { - "codePostal": "93360", - "codeCommune": "93049", - "libelleAcheminement": "NEUILLY PLAISANCE", - "nomCommune": "NEUILLY PLAISANCE" + "codePostal": "97433", + "codeCommune": "97421", + "libelleAcheminement": "SALAZIE", + "nomCommune": "SALAZIE" }, { - "codePostal": "85570", - "codeCommune": "85110", - "libelleAcheminement": "L HERMENAULT", - "nomCommune": "L HERMENAULT" + "codePostal": "78270", + "codeCommune": "78147", + "libelleAcheminement": "CHAUFOUR LES BONNIERES", + "nomCommune": "CHAUFOUR LES BONNIERES" }, - { - "codePostal": "76540", - "codeCommune": "76232", - "libelleAcheminement": "ELETOT", - "nomCommune": "ELETOT" + { + "codePostal": "98743", + "codeCommune": "98746", + "libelleAcheminement": "MOTOPU", + "nomCommune": "TAHUATA" }, { - "codePostal": "93160", - "codeCommune": "93051", - "libelleAcheminement": "NOISY LE GRAND", - "nomCommune": "NOISY LE GRAND" + "codePostal": "80510", + "codeCommune": "80328", + "libelleAcheminement": "FONTAINE SUR SOMME", + "nomCommune": "FONTAINE SUR SOMME" }, { - "codePostal": "85110", - "codeCommune": "85115", - "libelleAcheminement": "LA JAUDONNIERE", - "nomCommune": "LA JAUDONNIERE" + "codePostal": "97430", + "codeCommune": "97422", + "libelleAcheminement": "LE TAMPON", + "nomCommune": "LE TAMPON" }, { - "codePostal": "76390", - "codeCommune": "76233", - "libelleAcheminement": "ELLECOURT", - "nomCommune": "ELLECOURT" + "codePostal": "78150", + "codeCommune": "78158", + "libelleAcheminement": "LE CHESNAY ROCQUENCOURT", + "nomCommune": "LE CHESNAY ROCQUENCOURT" }, { - "codePostal": "93110", - "codeCommune": "93064", - "libelleAcheminement": "ROSNY SOUS BOIS", - "nomCommune": "ROSNY SOUS BOIS" + "codePostal": "98743", + "codeCommune": "98746", + "libelleAcheminement": "HANATETENA", + "nomCommune": "TAHUATA" }, { - "codePostal": "85220", - "codeCommune": "85120", - "libelleAcheminement": "LANDEVIEILLE", - "nomCommune": "LANDEVIEILLE" + "codePostal": "80560", + "codeCommune": "80329", + "libelleAcheminement": "FORCEVILLE EN AMIENOIS", + "nomCommune": "FORCEVILLE" }, { - "codePostal": "76710", - "codeCommune": "76245", - "libelleAcheminement": "ESLETTES", - "nomCommune": "ESLETTES" + "codePostal": "97630", + "codeCommune": "97612", + "libelleAcheminement": "MTSAMBORO", + "nomCommune": "MTSAMBORO" }, { - "codePostal": "93200", - "codeCommune": "93066", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "78460", + "codeCommune": "78160", + "libelleAcheminement": "CHEVREUSE", + "nomCommune": "CHEVREUSE" }, { - "codePostal": "85420", - "codeCommune": "85123", - "libelleAcheminement": "LIEZ", - "nomCommune": "LIEZ" + "codePostal": "98723", + "codeCommune": "98748", + "libelleAcheminement": "TEAHUPOO", + "nomCommune": "TAIARAPU OUEST" }, { - "codePostal": "76850", - "codeCommune": "76249", - "libelleAcheminement": "ETAIMPUIS", - "nomCommune": "ETAIMPUIS" + "codePostal": "80340", + "codeCommune": "80335", + "libelleAcheminement": "FOUCAUCOURT EN SANTERRE", + "nomCommune": "FOUCAUCOURT EN SANTERRE" }, { - "codePostal": "93400", - "codeCommune": "93070", - "libelleAcheminement": "ST OUEN SUR SEINE", - "nomCommune": "ST OUEN SUR SEINE" + "codePostal": "97650", + "codeCommune": "97613", + "libelleAcheminement": "M TSANGAMOUJI", + "nomCommune": "M TSANGAMOUJI" }, { - "codePostal": "85150", - "codeCommune": "85138", - "libelleAcheminement": "MARTINET", - "nomCommune": "MARTINET" + "codePostal": "78270", + "codeCommune": "78188", + "libelleAcheminement": "CRAVENT", + "nomCommune": "CRAVENT" }, { - "codePostal": "76340", - "codeCommune": "76257", - "libelleAcheminement": "FALLENCOURT", - "nomCommune": "FALLENCOURT" + "codePostal": "98735", + "codeCommune": "98750", + "libelleAcheminement": "TAPUTAPUATEA", + "nomCommune": "TAPUTAPUATEA" }, { - "codePostal": "93240", - "codeCommune": "93072", - "libelleAcheminement": "STAINS", - "nomCommune": "STAINS" + "codePostal": "80140", + "codeCommune": "80336", + "libelleAcheminement": "FOUCAUCOURT HORS NESLE", + "nomCommune": "FOUCAUCOURT HORS NESLE" }, { - "codePostal": "85140", - "codeCommune": "85142", - "libelleAcheminement": "LA MERLATIERE", - "nomCommune": "LA MERLATIERE" + "codePostal": "97670", + "codeCommune": "97614", + "libelleAcheminement": "OUANGANI", + "nomCommune": "OUANGANI" }, { - "codePostal": "76640", - "codeCommune": "76258", - "libelleAcheminement": "TERRES DE CAUX", - "nomCommune": "TERRES DE CAUX" + "codePostal": "78990", + "codeCommune": "78208", + "libelleAcheminement": "ELANCOURT", + "nomCommune": "ELANCOURT" }, { - "codePostal": "94470", - "codeCommune": "94004", - "libelleAcheminement": "BOISSY ST LEGER", - "nomCommune": "BOISSY ST LEGER" + "codePostal": "98726", + "codeCommune": "98752", + "libelleAcheminement": "MATAIEA", + "nomCommune": "TEVA I UTA" }, { - "codePostal": "85200", - "codeCommune": "85143", - "libelleAcheminement": "MERVENT", - "nomCommune": "MERVENT" + "codePostal": "80210", + "codeCommune": "80345", + "libelleAcheminement": "FRANLEU", + "nomCommune": "FRANLEU" }, { - "codePostal": "76640", - "codeCommune": "76258", - "libelleAcheminement": "TERRES DE CAUX", - "nomCommune": "TERRES DE CAUX" + "codePostal": "98610", + "codeCommune": "98611", + "libelleAcheminement": "ALO", + "nomCommune": "ALO" }, { - "codePostal": "94380", - "codeCommune": "94011", - "libelleAcheminement": "BONNEUIL SUR MARNE", - "nomCommune": "BONNEUIL SUR MARNE" + "codePostal": "78690", + "codeCommune": "78220", + "libelleAcheminement": "LES ESSARTS LE ROI", + "nomCommune": "LES ESSARTS LE ROI" }, { - "codePostal": "85600", - "codeCommune": "85146", - "libelleAcheminement": "MONTAIGU VENDEE", - "nomCommune": "MONTAIGU VENDEE" + "codePostal": "98754", + "codeCommune": "98753", + "libelleAcheminement": "MAHU", + "nomCommune": "TUBUAI" }, { - "codePostal": "76290", - "codeCommune": "76275", - "libelleAcheminement": "FONTENAY", - "nomCommune": "FONTENAY" + "codePostal": "80620", + "codeCommune": "80348", + "libelleAcheminement": "FRANSU", + "nomCommune": "FRANSU" }, { - "codePostal": "94500", - "codeCommune": "94017", - "libelleAcheminement": "CHAMPIGNY SUR MARNE", - "nomCommune": "CHAMPIGNY SUR MARNE" + "codePostal": "98790", + "codeCommune": "98711", + "libelleAcheminement": "TEPUPAHEA", + "nomCommune": "ANAA" }, { - "codePostal": "85540", - "codeCommune": "85156", - "libelleAcheminement": "MOUTIERS LES MAUXFAITS", - "nomCommune": "MOUTIERS LES MAUXFAITS" + "codePostal": "78200", + "codeCommune": "78231", + "libelleAcheminement": "FAVRIEUX", + "nomCommune": "FAVRIEUX" }, { - "codePostal": "76440", - "codeCommune": "76276", - "libelleAcheminement": "FORGES LES EAUX", - "nomCommune": "FORGES LES EAUX" + "codePostal": "98747", + "codeCommune": "98756", + "libelleAcheminement": "HANE", + "nomCommune": "UA HUKA" }, { - "codePostal": "94600", - "codeCommune": "94022", - "libelleAcheminement": "CHOISY LE ROI", - "nomCommune": "CHOISY LE ROI" + "codePostal": "80160", + "codeCommune": "80349", + "libelleAcheminement": "FRANSURES", + "nomCommune": "FRANSURES" }, { - "codePostal": "85370", - "codeCommune": "85158", - "libelleAcheminement": "MOUZEUIL ST MARTIN", - "nomCommune": "MOUZEUIL ST MARTIN" + "codePostal": "98790", + "codeCommune": "98716", + "libelleAcheminement": "TOAU", + "nomCommune": "FAKARAVA" }, { - "codePostal": "76640", - "codeCommune": "76279", - "libelleAcheminement": "FOUCART", - "nomCommune": "FOUCART" + "codePostal": "78840", + "codeCommune": "78255", + "libelleAcheminement": "FRENEUSE", + "nomCommune": "FRENEUSE" }, { - "codePostal": "94260", - "codeCommune": "94034", - "libelleAcheminement": "FRESNES", - "nomCommune": "FRESNES" + "codePostal": "98812", + "codeCommune": "98802", + "libelleAcheminement": "BOULOUPARIS", + "nomCommune": "BOULOUPARI" }, { - "codePostal": "85370", - "codeCommune": "85159", - "libelleAcheminement": "NALLIERS", - "nomCommune": "NALLIERS" + "codePostal": "80800", + "codeCommune": "80350", + "libelleAcheminement": "FRANVILLERS", + "nomCommune": "FRANVILLERS" }, { - "codePostal": "76850", - "codeCommune": "76284", - "libelleAcheminement": "FRESNAY LE LONG", - "nomCommune": "FRESNAY LE LONG" + "codePostal": "98765", + "codeCommune": "98717", + "libelleAcheminement": "TEANA", + "nomCommune": "FANGATAU" }, { - "codePostal": "94490", - "codeCommune": "94055", - "libelleAcheminement": "ORMESSON SUR MARNE", - "nomCommune": "ORMESSON SUR MARNE" + "codePostal": "78250", + "codeCommune": "78261", + "libelleAcheminement": "GAILLON SUR MONTCIENT", + "nomCommune": "GAILLON SUR MONTCIENT" }, { - "codePostal": "85430", - "codeCommune": "85161", - "libelleAcheminement": "NIEUL LE DOLENT", - "nomCommune": "NIEUL LE DOLENT" + "codePostal": "98836", + "codeCommune": "98805", + "libelleAcheminement": "DUMBEA GA", + "nomCommune": "DUMBEA" }, { - "codePostal": "76570", - "codeCommune": "76287", - "libelleAcheminement": "FRESQUIENNES", - "nomCommune": "FRESQUIENNES" + "codePostal": "80260", + "codeCommune": "80351", + "libelleAcheminement": "FRECHENCOURT", + "nomCommune": "FRECHENCOURT" }, { - "codePostal": "94170", - "codeCommune": "94058", - "libelleAcheminement": "LE PERREUX SUR MARNE", - "nomCommune": "LE PERREUX SUR MARNE" + "codePostal": "98766", + "codeCommune": "98717", + "libelleAcheminement": "TARIONE", + "nomCommune": "FANGATAU" }, { - "codePostal": "85570", - "codeCommune": "85174", - "libelleAcheminement": "PETOSSE", - "nomCommune": "PETOSSE" + "codePostal": "78950", + "codeCommune": "78263", + "libelleAcheminement": "GAMBAIS", + "nomCommune": "GAMBAIS" }, { - "codePostal": "76190", - "codeCommune": "76289", - "libelleAcheminement": "ST MARTIN DE L IF", - "nomCommune": "ST MARTIN DE L IF" + "codePostal": "98815", + "codeCommune": "98807", + "libelleAcheminement": "HIENGHENE", + "nomCommune": "HIENGHENE" }, { - "codePostal": "94420", - "codeCommune": "94059", - "libelleAcheminement": "LE PLESSIS TREVISE", - "nomCommune": "LE PLESSIS TREVISE" + "codePostal": "80320", + "codeCommune": "80353", + "libelleAcheminement": "FRESNES MAZANCOURT", + "nomCommune": "FRESNES MAZANCOURT" }, { - "codePostal": "85170", - "codeCommune": "85178", - "libelleAcheminement": "LE POIRE SUR VIE", - "nomCommune": "LE POIRE SUR VIE" + "codePostal": "98740", + "codeCommune": "98718", + "libelleAcheminement": "OMOA", + "nomCommune": "FATU HIVA" }, { - "codePostal": "76400", - "codeCommune": "76291", - "libelleAcheminement": "FROBERVILLE", - "nomCommune": "FROBERVILLE" + "codePostal": "78490", + "codeCommune": "78264", + "libelleAcheminement": "GAMBAISEUIL", + "nomCommune": "GAMBAISEUIL" }, { - "codePostal": "94100", - "codeCommune": "94068", - "libelleAcheminement": "ST MAUR DES FOSSES", - "nomCommune": "ST MAUR DES FOSSES" + "codePostal": "98832", + "codeCommune": "98809", + "libelleAcheminement": "VAO", + "nomCommune": "L ILE DES PINS" }, { - "codePostal": "85440", - "codeCommune": "85179", - "libelleAcheminement": "POIROUX", - "nomCommune": "POIROUX" + "codePostal": "80290", + "codeCommune": "80357", + "libelleAcheminement": "FRESNOY AU VAL", + "nomCommune": "FRESNOY AU VAL" }, { - "codePostal": "76790", - "codeCommune": "76300", - "libelleAcheminement": "GERVILLE", - "nomCommune": "GERVILLE" + "codePostal": "98755", + "codeCommune": "98719", + "libelleAcheminement": "MANGAREVA", + "nomCommune": "GAMBIER" }, { - "codePostal": "94410", - "codeCommune": "94069", - "libelleAcheminement": "ST MAURICE", - "nomCommune": "ST MAURICE" + "codePostal": "78890", + "codeCommune": "78265", + "libelleAcheminement": "GARANCIERES", + "nomCommune": "GARANCIERES" }, { - "codePostal": "85210", - "codeCommune": "85188", - "libelleAcheminement": "LA REORTHE", - "nomCommune": "LA REORTHE" + "codePostal": "98810", + "codeCommune": "98817", + "libelleAcheminement": "MONT DORE", + "nomCommune": "LE MONT DORE" }, { - "codePostal": "76700", - "codeCommune": "76305", - "libelleAcheminement": "GONFREVILLE L ORCHER", - "nomCommune": "GONFREVILLE L ORCHER" + "codePostal": "80700", + "codeCommune": "80383", + "libelleAcheminement": "GOYENCOURT", + "nomCommune": "GOYENCOURT" }, { - "codePostal": "94350", - "codeCommune": "94079", - "libelleAcheminement": "VILLIERS SUR MARNE", - "nomCommune": "VILLIERS SUR MARNE" + "codePostal": "98755", + "codeCommune": "98719", + "libelleAcheminement": "TARAVAI", + "nomCommune": "GAMBIER" }, { - "codePostal": "85270", - "codeCommune": "85189", - "libelleAcheminement": "NOTRE DAME DE RIEZ", - "nomCommune": "NOTRE DAME DE RIEZ" + "codePostal": "78440", + "codeCommune": "78267", + "libelleAcheminement": "GARGENVILLE", + "nomCommune": "GARGENVILLE" }, { - "codePostal": "76450", - "codeCommune": "76315", - "libelleAcheminement": "GRAINVILLE LA TEINTURIERE", - "nomCommune": "GRAINVILLE LA TEINTURIERE" + "codePostal": "98824", + "codeCommune": "98824", + "libelleAcheminement": "POUEBO", + "nomCommune": "POUEBO" }, { - "codePostal": "95710", - "codeCommune": "95011", - "libelleAcheminement": "AMBLEVILLE", - "nomCommune": "AMBLEVILLE" + "codePostal": "80360", + "codeCommune": "80397", + "libelleAcheminement": "GUEUDECOURT", + "nomCommune": "GUEUDECOURT" }, { - "codePostal": "85000", - "codeCommune": "85191", - "libelleAcheminement": "LA ROCHE SUR YON", - "nomCommune": "LA ROCHE SUR YON" + "codePostal": "98792", + "codeCommune": "98719", + "libelleAcheminement": "MORANE", + "nomCommune": "GAMBIER" }, { - "codePostal": "76110", - "codeCommune": "76317", - "libelleAcheminement": "GRAINVILLE YMAUVILLE", - "nomCommune": "GRAINVILLE YMAUVILLE" + "codePostal": "78520", + "codeCommune": "78290", + "libelleAcheminement": "GUERNES", + "nomCommune": "GUERNES" }, { - "codePostal": "95570", - "codeCommune": "95028", - "libelleAcheminement": "ATTAINVILLE", - "nomCommune": "ATTAINVILLE" + "codePostal": "98825", + "codeCommune": "98825", + "libelleAcheminement": "POUEMBOUT", + "nomCommune": "POUEMBOUT" }, { - "codePostal": "85250", - "codeCommune": "85196", - "libelleAcheminement": "ST ANDRE GOULE D OIE", - "nomCommune": "ST ANDRE GOULE D OIE" + "codePostal": "80490", + "codeCommune": "80406", + "libelleAcheminement": "HALLENCOURT", + "nomCommune": "HALLENCOURT" }, { - "codePostal": "76270", - "codeCommune": "76323", - "libelleAcheminement": "GRAVAL", - "nomCommune": "GRAVAL" + "codePostal": "98767", + "codeCommune": "98720", + "libelleAcheminement": "OTEPA", + "nomCommune": "HAO" }, { - "codePostal": "95560", - "codeCommune": "95042", - "libelleAcheminement": "BAILLET EN FRANCE", - "nomCommune": "BAILLET EN FRANCE" + "codePostal": "78440", + "codeCommune": "78296", + "libelleAcheminement": "GUITRANCOURT", + "nomCommune": "GUITRANCOURT" }, { - "codePostal": "85210", - "codeCommune": "85199", - "libelleAcheminement": "ST AUBIN LA PLAINE", - "nomCommune": "ST AUBIN LA PLAINE" + "codePostal": "98882", + "codeCommune": "98828", + "libelleAcheminement": "SARRAMEA", + "nomCommune": "SARRAMEA" }, { - "codePostal": "76370", - "codeCommune": "76324", - "libelleAcheminement": "GREGES", - "nomCommune": "GREGES" + "codePostal": "80250", + "codeCommune": "80407", + "libelleAcheminement": "HALLIVILLERS", + "nomCommune": "HALLIVILLERS" }, { - "codePostal": "95260", - "codeCommune": "95052", - "libelleAcheminement": "BEAUMONT SUR OISE", - "nomCommune": "BEAUMONT SUR OISE" + "codePostal": "98708", + "codeCommune": "98722", + "libelleAcheminement": "TIAREI", + "nomCommune": "HITIAA O TE RA" }, { - "codePostal": "85310", - "codeCommune": "85213", - "libelleAcheminement": "RIVES DE L YON", - "nomCommune": "RIVES DE L YON" + "codePostal": "78790", + "codeCommune": "78300", + "libelleAcheminement": "HARGEVILLE", + "nomCommune": "HARGEVILLE" }, { - "codePostal": "76440", - "codeCommune": "76332", - "libelleAcheminement": "GRUMESNIL", - "nomCommune": "GRUMESNIL" + "codePostal": "98831", + "codeCommune": "98830", + "libelleAcheminement": "TOUHO", + "nomCommune": "TOUHO" }, { - "codePostal": "95800", - "codeCommune": "95127", - "libelleAcheminement": "CERGY", - "nomCommune": "CERGY" + "codePostal": "80110", + "codeCommune": "80414", + "libelleAcheminement": "HANGARD", + "nomCommune": "HANGARD" }, { - "codePostal": "85400", - "codeCommune": "85216", - "libelleAcheminement": "STE GEMME LA PLAINE", - "nomCommune": "STE GEMME LA PLAINE" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "HUAHINE", + "nomCommune": "HUAHINE" }, { - "codePostal": "76390", - "codeCommune": "76344", - "libelleAcheminement": "HAUDRICOURT", - "nomCommune": "HAUDRICOURT" + "codePostal": "78820", + "codeCommune": "78327", + "libelleAcheminement": "JUZIERS", + "nomCommune": "JUZIERS" }, { - "codePostal": "95660", - "codeCommune": "95134", - "libelleAcheminement": "CHAMPAGNE SUR OISE", - "nomCommune": "CHAMPAGNE SUR OISE" + "codePostal": "80132", + "codeCommune": "80422", + "libelleAcheminement": "HAUTVILLERS OUVILLE", + "nomCommune": "HAUTVILLERS OUVILLE" }, { - "codePostal": "85110", - "codeCommune": "85220", - "libelleAcheminement": "ST GERMAIN DE PRINCAY", - "nomCommune": "ST GERMAIN DE PRINCAY" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "TEFARERII", + "nomCommune": "HUAHINE" }, { - "codePostal": "76450", - "codeCommune": "76346", - "libelleAcheminement": "HAUTOT L AUVRAY", - "nomCommune": "HAUTOT L AUVRAY" + "codePostal": "78730", + "codeCommune": "78349", + "libelleAcheminement": "LONGVILLIERS", + "nomCommune": "LONGVILLIERS" }, { - "codePostal": "95420", - "codeCommune": "95139", - "libelleAcheminement": "LA CHAPELLE EN VEXIN", - "nomCommune": "LA CHAPELLE EN VEXIN" + "codePostal": "80560", + "codeCommune": "80425", + "libelleAcheminement": "HEDAUVILLE", + "nomCommune": "HEDAUVILLE" }, { - "codePostal": "85800", - "codeCommune": "85222", - "libelleAcheminement": "ST GILLES CROIX DE VIE", - "nomCommune": "ST GILLES CROIX DE VIE" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "MAEVA", + "nomCommune": "HUAHINE" }, { - "codePostal": "76610", - "codeCommune": "76351", - "libelleAcheminement": "LE HAVRE", - "nomCommune": "LE HAVRE" + "codePostal": "78310", + "codeCommune": "78383", + "libelleAcheminement": "MAUREPAS", + "nomCommune": "MAUREPAS" }, { - "codePostal": "95380", - "codeCommune": "95154", - "libelleAcheminement": "CHENNEVIERES LES LOUVRES", - "nomCommune": "CHENNEVIERES LES LOUVRES" + "codePostal": "80360", + "codeCommune": "80428", + "libelleAcheminement": "HEM MONACU", + "nomCommune": "HEM MONACU" }, { - "codePostal": "85240", - "codeCommune": "85227", - "libelleAcheminement": "ST HILAIRE DES LOGES", - "nomCommune": "ST HILAIRE DES LOGES" + "codePostal": "98789", + "codeCommune": "98726", + "libelleAcheminement": "HITIANAU", + "nomCommune": "MAKEMO" }, { - "codePostal": "76280", - "codeCommune": "76357", - "libelleAcheminement": "HERMEVILLE", - "nomCommune": "HERMEVILLE" + "codePostal": "78270", + "codeCommune": "78391", + "libelleAcheminement": "MERICOURT", + "nomCommune": "MERICOURT" }, { - "codePostal": "95830", - "codeCommune": "95177", - "libelleAcheminement": "CORMEILLES EN VEXIN", - "nomCommune": "CORMEILLES EN VEXIN" + "codePostal": "80200", + "codeCommune": "80430", + "libelleAcheminement": "HERBECOURT", + "nomCommune": "HERBECOURT" }, { - "codePostal": "85210", - "codeCommune": "85235", - "libelleAcheminement": "ST JUIRE CHAMPGILLON", - "nomCommune": "ST JUIRE CHAMPGILLON" + "codePostal": "98732", + "codeCommune": "98728", + "libelleAcheminement": "MOPELIA", + "nomCommune": "MAUPITI" }, { - "codePostal": "76720", - "codeCommune": "76360", - "libelleAcheminement": "HEUGLEVILLE SUR SCIE", - "nomCommune": "HEUGLEVILLE SUR SCIE" + "codePostal": "78600", + "codeCommune": "78396", + "libelleAcheminement": "LE MESNIL LE ROI", + "nomCommune": "LE MESNIL LE ROI" }, { - "codePostal": "95650", - "codeCommune": "95181", - "libelleAcheminement": "COURCELLES SUR VIOSNE", - "nomCommune": "COURCELLES SUR VIOSNE" + "codePostal": "80190", + "codeCommune": "80433", + "libelleAcheminement": "HERLY", + "nomCommune": "HERLY" }, { - "codePostal": "85570", - "codeCommune": "85245", - "libelleAcheminement": "ST MARTIN DES FONTAINES", - "nomCommune": "ST MARTIN DES FONTAINES" + "codePostal": "98728", + "codeCommune": "98729", + "libelleAcheminement": "TEAVARO", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "76570", - "codeCommune": "76370", - "libelleAcheminement": "HUGLEVILLE EN CAUX", - "nomCommune": "HUGLEVILLE EN CAUX" + "codePostal": "78320", + "codeCommune": "78397", + "libelleAcheminement": "LE MESNIL ST DENIS", + "nomCommune": "LE MESNIL ST DENIS" }, { - "codePostal": "95800", - "codeCommune": "95183", - "libelleAcheminement": "COURDIMANCHE", - "nomCommune": "COURDIMANCHE" + "codePostal": "80290", + "codeCommune": "80436", + "libelleAcheminement": "HESCAMPS", + "nomCommune": "HESCAMPS" }, { - "codePostal": "85130", - "codeCommune": "85247", - "libelleAcheminement": "ST MARTIN DES TILLEULS", - "nomCommune": "ST MARTIN DES TILLEULS" + "codePostal": "98728", + "codeCommune": "98729", + "libelleAcheminement": "TIAIA", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "76230", - "codeCommune": "76377", - "libelleAcheminement": "ISNEAUVILLE", - "nomCommune": "ISNEAUVILLE" + "codePostal": "78970", + "codeCommune": "78402", + "libelleAcheminement": "MEZIERES SUR SEINE", + "nomCommune": "MEZIERES SUR SEINE" }, { - "codePostal": "95300", - "codeCommune": "95211", - "libelleAcheminement": "ENNERY", - "nomCommune": "ENNERY" + "codePostal": "80122", + "codeCommune": "80438", + "libelleAcheminement": "HEUDICOURT", + "nomCommune": "HEUDICOURT" }, { - "codePostal": "85120", - "codeCommune": "85251", - "libelleAcheminement": "ST MAURICE DES NOUES", - "nomCommune": "ST MAURICE DES NOUES" + "codePostal": "98729", + "codeCommune": "98729", + "libelleAcheminement": "PIHAENA", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "76480", - "codeCommune": "76378", - "libelleAcheminement": "JUMIEGES", - "nomCommune": "JUMIEGES" + "codePostal": "78940", + "codeCommune": "78404", + "libelleAcheminement": "MILLEMONT", + "nomCommune": "MILLEMONT" }, { - "codePostal": "95270", - "codeCommune": "95214", - "libelleAcheminement": "EPINAY CHAMPLATREUX", - "nomCommune": "EPINAY CHAMPLATREUX" + "codePostal": "80370", + "codeCommune": "80439", + "libelleAcheminement": "HEUZECOURT", + "nomCommune": "HEUZECOURT" }, { - "codePostal": "85500", - "codeCommune": "85259", - "libelleAcheminement": "ST PAUL EN PAREDS", - "nomCommune": "ST PAUL EN PAREDS" + "codePostal": "98742", + "codeCommune": "98731", + "libelleAcheminement": "NUKUATAHA", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "76540", - "codeCommune": "76386", - "libelleAcheminement": "LIMPIVILLE", - "nomCommune": "LIMPIVILLE" + "codePostal": "78360", + "codeCommune": "78418", + "libelleAcheminement": "MONTESSON", + "nomCommune": "MONTESSON" }, { - "codePostal": "95460", - "codeCommune": "95229", - "libelleAcheminement": "EZANVILLE", - "nomCommune": "EZANVILLE" + "codePostal": "80640", + "codeCommune": "80443", + "libelleAcheminement": "HORNOY LE BOURG", + "nomCommune": "HORNOY LE BOURG" }, { - "codePostal": "85230", - "codeCommune": "85273", - "libelleAcheminement": "ST URBAIN", - "nomCommune": "ST URBAIN" + "codePostal": "98742", + "codeCommune": "98731", + "libelleAcheminement": "TERRE DESERTE", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "76590", - "codeCommune": "76389", - "libelleAcheminement": "LINTOT LES BOIS", - "nomCommune": "LINTOT LES BOIS" + "codePostal": "78130", + "codeCommune": "78440", + "libelleAcheminement": "LES MUREAUX", + "nomCommune": "LES MUREAUX" }, { - "codePostal": "95650", - "codeCommune": "95271", - "libelleAcheminement": "GENICOURT", - "nomCommune": "GENICOURT" + "codePostal": "80800", + "codeCommune": "80449", + "libelleAcheminement": "IGNAUCOURT", + "nomCommune": "IGNAUCOURT" }, { - "codePostal": "85300", - "codeCommune": "85284", - "libelleAcheminement": "SOULLANS", - "nomCommune": "SOULLANS" + "codePostal": "98748", + "codeCommune": "98731", + "libelleAcheminement": "HATIHEU", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "76660", - "codeCommune": "76392", - "libelleAcheminement": "LONDINIERES", - "nomCommune": "LONDINIERES" + "codePostal": "78640", + "codeCommune": "78443", + "libelleAcheminement": "NEAUPHLE LE VIEUX", + "nomCommune": "NEAUPHLE LE VIEUX" }, { - "codePostal": "95410", - "codeCommune": "95288", - "libelleAcheminement": "GROSLAY", - "nomCommune": "GROSLAY" + "codePostal": "80300", + "codeCommune": "80451", + "libelleAcheminement": "IRLES", + "nomCommune": "IRLES" }, { - "codePostal": "85130", - "codeCommune": "85293", - "libelleAcheminement": "TIFFAUGES", - "nomCommune": "TIFFAUGES" + "codePostal": "98796", + "codeCommune": "98731", + "libelleAcheminement": "HATUTAA", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "76260", - "codeCommune": "76394", - "libelleAcheminement": "LONGROY", - "nomCommune": "LONGROY" + "codePostal": "78125", + "codeCommune": "78464", + "libelleAcheminement": "ORCEMONT", + "nomCommune": "ORCEMONT" }, { - "codePostal": "95300", - "codeCommune": "95308", - "libelleAcheminement": "HEROUVILLE EN VEXIN", - "nomCommune": "HEROUVILLE EN VEXIN" + "codePostal": "80290", + "codeCommune": "80455", + "libelleAcheminement": "LA CHAPELLE SOUS POIX", + "nomCommune": "LACHAPELLE" }, { - "codePostal": "85600", - "codeCommune": "85295", - "libelleAcheminement": "TREIZE SEPTIERS", - "nomCommune": "TREIZE SEPTIERS" + "codePostal": "98774", + "codeCommune": "98737", + "libelleAcheminement": "TEONEMAHINA", + "nomCommune": "PUKAPUKA" }, { - "codePostal": "76590", - "codeCommune": "76397", - "libelleAcheminement": "LONGUEVILLE SUR SCIE", - "nomCommune": "LONGUEVILLE SUR SCIE" + "codePostal": "78910", + "codeCommune": "78465", + "libelleAcheminement": "ORGERUS", + "nomCommune": "ORGERUS" }, { - "codePostal": "95300", - "codeCommune": "95341", - "libelleAcheminement": "LIVILLIERS", - "nomCommune": "LIVILLIERS" + "codePostal": "80430", + "codeCommune": "80456", + "libelleAcheminement": "LAFRESGUIMONT ST MARTIN", + "nomCommune": "LAFRESGUIMONT ST MARTIN" }, { - "codePostal": "85190", - "codeCommune": "85300", - "libelleAcheminement": "VENANSAULT", - "nomCommune": "VENANSAULT" + "codePostal": "98777", + "codeCommune": "98740", + "libelleAcheminement": "PAHUA", + "nomCommune": "RANGIROA" }, { - "codePostal": "76770", - "codeCommune": "76402", - "libelleAcheminement": "MALAUNAY", - "nomCommune": "MALAUNAY" + "codePostal": "78630", + "codeCommune": "78466", + "libelleAcheminement": "ORGEVAL", + "nomCommune": "ORGEVAL" }, { - "codePostal": "95560", - "codeCommune": "95353", - "libelleAcheminement": "MAFFLIERS", - "nomCommune": "MAFFLIERS" + "codePostal": "80800", + "codeCommune": "80458", + "libelleAcheminement": "LAHOUSSOYE", + "nomCommune": "LAHOUSSOYE" }, { - "codePostal": "85130", - "codeCommune": "85302", - "libelleAcheminement": "CHANVERRIE", - "nomCommune": "CHANVERRIE" + "codePostal": "98751", + "codeCommune": "98741", + "libelleAcheminement": "AHUREI", + "nomCommune": "RAPA" }, { - "codePostal": "76450", - "codeCommune": "76403", - "libelleAcheminement": "MALLEVILLE LES GRES", - "nomCommune": "MALLEVILLE LES GRES" + "codePostal": "78125", + "codeCommune": "78470", + "libelleAcheminement": "ORPHIN", + "nomCommune": "ORPHIN" }, { - "codePostal": "95850", - "codeCommune": "95365", - "libelleAcheminement": "MAREIL EN FRANCE", - "nomCommune": "MAREIL EN FRANCE" + "codePostal": "80620", + "codeCommune": "80466", + "libelleAcheminement": "LANCHES ST HILAIRE", + "nomCommune": "LANCHES ST HILAIRE" }, { - "codePostal": "85460", - "codeCommune": "85307", - "libelleAcheminement": "LA FAUTE SUR MER", - "nomCommune": "LA FAUTE SUR MER" + "codePostal": "98794", + "codeCommune": "98741", + "libelleAcheminement": "MAROTIRI", + "nomCommune": "RAPA" }, { - "codePostal": "76116", - "codeCommune": "76412", - "libelleAcheminement": "MARTAINVILLE EPREVILLE", - "nomCommune": "MARTAINVILLE EPREVILLE" + "codePostal": "78230", + "codeCommune": "78481", + "libelleAcheminement": "LE PECQ", + "nomCommune": "LE PECQ" }, { - "codePostal": "95670", - "codeCommune": "95371", - "libelleAcheminement": "MARLY LA VILLE", - "nomCommune": "MARLY LA VILLE" + "codePostal": "80300", + "codeCommune": "80468", + "libelleAcheminement": "LAVIEVILLE", + "nomCommune": "LAVIEVILLE" }, { - "codePostal": "86110", - "codeCommune": "86002", - "libelleAcheminement": "AMBERRE", - "nomCommune": "AMBERRE" + "codePostal": "98753", + "codeCommune": "98744", + "libelleAcheminement": "MOERAI", + "nomCommune": "RURUTU" }, { - "codePostal": "76270", - "codeCommune": "76427", - "libelleAcheminement": "MESNIERES EN BRAY", - "nomCommune": "MESNIERES EN BRAY" + "codePostal": "78550", + "codeCommune": "78520", + "libelleAcheminement": "RICHEBOURG", + "nomCommune": "RICHEBOURG" }, { - "codePostal": "95180", - "codeCommune": "95388", - "libelleAcheminement": "MENUCOURT", - "nomCommune": "MENUCOURT" + "codePostal": "80700", + "codeCommune": "80473", + "libelleAcheminement": "LIANCOURT FOSSE", + "nomCommune": "LIANCOURT FOSSE" }, { - "codePostal": "86330", - "codeCommune": "86013", - "libelleAcheminement": "AULNAY", - "nomCommune": "AULNAY" + "codePostal": "98733", + "codeCommune": "98745", + "libelleAcheminement": "TIVA", + "nomCommune": "TAHAA" }, { - "codePostal": "76510", - "codeCommune": "76437", - "libelleAcheminement": "MEULERS", - "nomCommune": "MEULERS" + "codePostal": "78710", + "codeCommune": "78531", + "libelleAcheminement": "ROSNY SUR SEINE", + "nomCommune": "ROSNY SUR SEINE" }, { - "codePostal": "95160", - "codeCommune": "95428", - "libelleAcheminement": "MONTMORENCY", - "nomCommune": "MONTMORENCY" + "codePostal": "80320", + "codeCommune": "80474", + "libelleAcheminement": "LICOURT", + "nomCommune": "LICOURT" }, { - "codePostal": "86530", - "codeCommune": "86014", - "libelleAcheminement": "AVAILLES EN CHATELLERAULT", - "nomCommune": "AVAILLES EN CHATELLERAULT" + "codePostal": "98734", + "codeCommune": "98745", + "libelleAcheminement": "HAAMENE", + "nomCommune": "TAHAA" }, { - "codePostal": "76850", - "codeCommune": "76449", - "libelleAcheminement": "MONTREUIL EN CAUX", - "nomCommune": "MONTREUIL EN CAUX" + "codePostal": "78640", + "codeCommune": "78550", + "libelleAcheminement": "ST GERMAIN DE LA GRANGE", + "nomCommune": "ST GERMAIN DE LA GRANGE" }, { - "codePostal": "95260", - "codeCommune": "95436", - "libelleAcheminement": "MOURS", - "nomCommune": "MOURS" + "codePostal": "80160", + "codeCommune": "80485", + "libelleAcheminement": "O DE SELLE", + "nomCommune": "O DE SELLE" }, { - "codePostal": "86460", - "codeCommune": "86015", - "libelleAcheminement": "AVAILLES LIMOUZINE", - "nomCommune": "AVAILLES LIMOUZINE" + "codePostal": "98734", + "codeCommune": "98745", + "libelleAcheminement": "FAAAHA", + "nomCommune": "TAHAA" }, { - "codePostal": "76130", - "codeCommune": "76451", - "libelleAcheminement": "MONT ST AIGNAN", - "nomCommune": "MONT ST AIGNAN" + "codePostal": "78980", + "codeCommune": "78559", + "libelleAcheminement": "ST ILLIERS LE BOIS", + "nomCommune": "ST ILLIERS LE BOIS" }, { - "codePostal": "95420", - "codeCommune": "95459", - "libelleAcheminement": "NUCOURT", - "nomCommune": "NUCOURT" + "codePostal": "80160", + "codeCommune": "80485", + "libelleAcheminement": "O DE SELLE", + "nomCommune": "O DE SELLE" }, { - "codePostal": "86170", - "codeCommune": "86016", - "libelleAcheminement": "AVANTON", - "nomCommune": "AVANTON" + "codePostal": "98719", + "codeCommune": "98747", + "libelleAcheminement": "TARAVAO", + "nomCommune": "TAIARAPU EST" }, { - "codePostal": "76780", - "codeCommune": "76455", - "libelleAcheminement": "MORVILLE SUR ANDELLE", - "nomCommune": "MORVILLE SUR ANDELLE" + "codePostal": "78470", + "codeCommune": "78575", + "libelleAcheminement": "ST REMY LES CHEVREUSE", + "nomCommune": "ST REMY LES CHEVREUSE" }, { - "codePostal": "95420", - "codeCommune": "95462", - "libelleAcheminement": "OMERVILLE", - "nomCommune": "OMERVILLE" + "codePostal": "80510", + "codeCommune": "80486", + "libelleAcheminement": "LONG", + "nomCommune": "LONG" }, { - "codePostal": "86130", - "codeCommune": "86019", - "libelleAcheminement": "BEAUMONT ST CYR", - "nomCommune": "BEAUMONT ST CYR" + "codePostal": "98790", + "codeCommune": "98749", + "libelleAcheminement": "TIKEI", + "nomCommune": "TAKAROA" }, { - "codePostal": "76970", - "codeCommune": "76456", - "libelleAcheminement": "MOTTEVILLE", - "nomCommune": "MOTTEVILLE" + "codePostal": "78650", + "codeCommune": "78588", + "libelleAcheminement": "SAULX MARCHAIS", + "nomCommune": "SAULX MARCHAIS" }, { - "codePostal": "95520", - "codeCommune": "95476", - "libelleAcheminement": "OSNY", - "nomCommune": "OSNY" + "codePostal": "80220", + "codeCommune": "80500", + "libelleAcheminement": "MAISNIERES", + "nomCommune": "MAISNIERES" }, { - "codePostal": "86410", - "codeCommune": "86034", - "libelleAcheminement": "BOURESSE", - "nomCommune": "BOURESSE" + "codePostal": "98735", + "codeCommune": "98754", + "libelleAcheminement": "TEHURUI", + "nomCommune": "TUMARAA" }, { - "codePostal": "76590", - "codeCommune": "76458", - "libelleAcheminement": "MUCHEDENT", - "nomCommune": "MUCHEDENT" + "codePostal": "78120", + "codeCommune": "78601", + "libelleAcheminement": "SONCHAMP", + "nomCommune": "SONCHAMP" }, { - "codePostal": "95720", - "codeCommune": "95492", - "libelleAcheminement": "LE PLESSIS GASSOT", - "nomCommune": "LE PLESSIS GASSOT" + "codePostal": "80135", + "codeCommune": "80502", + "libelleAcheminement": "MAISON ROLAND", + "nomCommune": "MAISON ROLAND" }, { - "codePostal": "86390", - "codeCommune": "86035", - "libelleAcheminement": "BOURG ARCHAMBAULT", - "nomCommune": "BOURG ARCHAMBAULT" + "codePostal": "98746", + "codeCommune": "98757", + "libelleAcheminement": "HAKAMAII", + "nomCommune": "UA POU" }, { - "codePostal": "76270", - "codeCommune": "76462", - "libelleAcheminement": "NEUFCHATEL EN BRAY", - "nomCommune": "NEUFCHATEL EN BRAY" + "codePostal": "78250", + "codeCommune": "78609", + "libelleAcheminement": "TESSANCOURT SUR AUBETTE", + "nomCommune": "TESSANCOURT SUR AUBETTE" }, { - "codePostal": "95270", - "codeCommune": "95493", - "libelleAcheminement": "LE PLESSIS LUZARCHES", - "nomCommune": "LE PLESSIS LUZARCHES" + "codePostal": "80370", + "codeCommune": "80503", + "libelleAcheminement": "MAIZICOURT", + "nomCommune": "MAIZICOURT" }, { - "codePostal": "86160", - "codeCommune": "86038", - "libelleAcheminement": "BRION", - "nomCommune": "BRION" + "codePostal": "98811", + "codeCommune": "98801", + "libelleAcheminement": "BELEP", + "nomCommune": "BELEP" }, { - "codePostal": "76640", - "codeCommune": "76470", - "libelleAcheminement": "NORMANVILLE", - "nomCommune": "NORMANVILLE" + "codePostal": "78790", + "codeCommune": "78618", + "libelleAcheminement": "TILLY", + "nomCommune": "TILLY" }, { - "codePostal": "95650", - "codeCommune": "95510", - "libelleAcheminement": "PUISEUX PONTOISE", - "nomCommune": "PUISEUX PONTOISE" + "codePostal": "80300", + "codeCommune": "80505", + "libelleAcheminement": "CARNOY MAMETZ", + "nomCommune": "CARNOY MAMETZ" }, { - "codePostal": "86310", - "codeCommune": "86040", - "libelleAcheminement": "LA BUSSIERE", - "nomCommune": "LA BUSSIERE" + "codePostal": "98870", + "codeCommune": "98803", + "libelleAcheminement": "BOURAIL", + "nomCommune": "BOURAIL" }, { - "codePostal": "76510", - "codeCommune": "76472", - "libelleAcheminement": "NOTRE DAME D ALIERMONT", - "nomCommune": "NOTRE DAME D ALIERMONT" + "codePostal": "78490", + "codeCommune": "78623", + "libelleAcheminement": "LE TREMBLAY SUR MAULDRE", + "nomCommune": "LE TREMBLAY SUR MAULDRE" }, { - "codePostal": "95420", - "codeCommune": "95554", - "libelleAcheminement": "ST GERVAIS", - "nomCommune": "ST GERVAIS" + "codePostal": "80800", + "codeCommune": "80507", + "libelleAcheminement": "MARCELCAVE", + "nomCommune": "MARCELCAVE" }, { - "codePostal": "86180", - "codeCommune": "86041", - "libelleAcheminement": "BUXEROLLES", - "nomCommune": "BUXEROLLES" + "codePostal": "98837", + "codeCommune": "98805", + "libelleAcheminement": "DUMBEA", + "nomCommune": "DUMBEA" }, { - "codePostal": "76170", - "codeCommune": "76476", - "libelleAcheminement": "PORT JEROME SUR SEINE", - "nomCommune": "PORT JEROME SUR SEINE" + "codePostal": "78110", + "codeCommune": "78650", + "libelleAcheminement": "LE VESINET", + "nomCommune": "LE VESINET" }, { - "codePostal": "95210", - "codeCommune": "95555", - "libelleAcheminement": "ST GRATIEN", - "nomCommune": "ST GRATIEN" + "codePostal": "80700", + "codeCommune": "80508", + "libelleAcheminement": "MARCHE ALLOUARDE", + "nomCommune": "MARCHE ALLOUARDE" }, { - "codePostal": "86530", - "codeCommune": "86046", - "libelleAcheminement": "CENON SUR VIENNE", - "nomCommune": "CENON SUR VIENNE" + "codePostal": "98839", + "codeCommune": "98805", + "libelleAcheminement": "DUMBEA", + "nomCommune": "DUMBEA" }, { - "codePostal": "76170", - "codeCommune": "76476", - "libelleAcheminement": "PORT JEROME SUR SEINE", - "nomCommune": "PORT JEROME SUR SEINE" + "codePostal": "78125", + "codeCommune": "78655", + "libelleAcheminement": "VIEILLE EGLISE EN YVELINES", + "nomCommune": "VIEILLE EGLISE EN YVELINES" }, { - "codePostal": "95310", - "codeCommune": "95572", - "libelleAcheminement": "ST OUEN L AUMONE", - "nomCommune": "ST OUEN L AUMONE" + "codePostal": "80200", + "codeCommune": "80509", + "libelleAcheminement": "MARCHELEPOT MISERY", + "nomCommune": "MARCHELEPOT MISERY" }, { - "codePostal": "86380", - "codeCommune": "86048", - "libelleAcheminement": "CHABOURNAY", - "nomCommune": "CHABOURNAY" + "codePostal": "98816", + "codeCommune": "98808", + "libelleAcheminement": "HOUAILOU", + "nomCommune": "HOUAILOU" }, { - "codePostal": "76550", - "codeCommune": "76482", - "libelleAcheminement": "OFFRANVILLE", - "nomCommune": "OFFRANVILLE" + "codePostal": "78450", + "codeCommune": "78674", + "libelleAcheminement": "VILLEPREUX", + "nomCommune": "VILLEPREUX" }, { - "codePostal": "95390", - "codeCommune": "95574", - "libelleAcheminement": "ST PRIX", - "nomCommune": "ST PRIX" + "codePostal": "80140", + "codeCommune": "80518", + "libelleAcheminement": "MARTAINNEVILLE", + "nomCommune": "MARTAINNEVILLE" }, { - "codePostal": "86400", - "codeCommune": "86054", - "libelleAcheminement": "CHAMPNIERS", - "nomCommune": "CHAMPNIERS" + "codePostal": "98860", + "codeCommune": "98811", + "libelleAcheminement": "KONE", + "nomCommune": "KONE" }, { - "codePostal": "76500", - "codeCommune": "76486", - "libelleAcheminement": "ORIVAL", - "nomCommune": "ORIVAL" + "codePostal": "78220", + "codeCommune": "78686", + "libelleAcheminement": "VIROFLAY", + "nomCommune": "VIROFLAY" }, { - "codePostal": "95470", - "codeCommune": "95580", - "libelleAcheminement": "ST WITZ", - "nomCommune": "ST WITZ" + "codePostal": "80360", + "codeCommune": "80521", + "libelleAcheminement": "MAUREPAS", + "nomCommune": "MAUREPAS" }, { - "codePostal": "86370", - "codeCommune": "86065", - "libelleAcheminement": "CHATEAU LARCHER", - "nomCommune": "CHATEAU LARCHER" + "codePostal": "98850", + "codeCommune": "98812", + "libelleAcheminement": "KOUMAC", + "nomCommune": "KOUMAC" }, { - "codePostal": "76660", - "codeCommune": "76487", - "libelleAcheminement": "OSMOY ST VALERY", - "nomCommune": "OSMOY ST VALERY" + "codePostal": "79600", + "codeCommune": "79005", + "libelleAcheminement": "AIRVAULT", + "nomCommune": "AIRVAULT" }, { - "codePostal": "95490", - "codeCommune": "95637", - "libelleAcheminement": "VAUREAL", - "nomCommune": "VAUREAL" + "codePostal": "80800", + "codeCommune": "80530", + "libelleAcheminement": "MERICOURT L ABBE", + "nomCommune": "MERICOURT L ABBE" }, { - "codePostal": "86450", - "codeCommune": "86072", - "libelleAcheminement": "CHENEVELLES", - "nomCommune": "CHENEVELLES" + "codePostal": "98809", + "codeCommune": "98817", + "libelleAcheminement": "MONT DORE", + "nomCommune": "LE MONT DORE" }, { - "codePostal": "76450", - "codeCommune": "76488", - "libelleAcheminement": "OUAINVILLE", - "nomCommune": "OUAINVILLE" + "codePostal": "79600", + "codeCommune": "79005", + "libelleAcheminement": "AIRVAULT", + "nomCommune": "AIRVAULT" }, { - "codePostal": "95510", - "codeCommune": "95651", - "libelleAcheminement": "VETHEUIL", - "nomCommune": "VETHEUIL" + "codePostal": "80640", + "codeCommune": "80531", + "libelleAcheminement": "MERICOURT EN VIMEU", + "nomCommune": "MERICOURT EN VIMEU" }, { - "codePostal": "86170", - "codeCommune": "86073", - "libelleAcheminement": "CHERVES", - "nomCommune": "CHERVES" + "codePostal": "98814", + "codeCommune": "98820", + "libelleAcheminement": "FAYAOUE", + "nomCommune": "OUVEA" }, { - "codePostal": "76210", - "codeCommune": "76494", - "libelleAcheminement": "PARC D ANXTOT", - "nomCommune": "PARC D ANXTOT" + "codePostal": "79130", + "codeCommune": "79007", + "libelleAcheminement": "ALLONNE", + "nomCommune": "ALLONNE" }, { - "codePostal": "95380", - "codeCommune": "95675", - "libelleAcheminement": "VILLERON", - "nomCommune": "VILLERON" + "codePostal": "80310", + "codeCommune": "80535", + "libelleAcheminement": "LE MESGE", + "nomCommune": "LE MESGE" }, { - "codePostal": "86320", - "codeCommune": "86077", - "libelleAcheminement": "CIVAUX", - "nomCommune": "CIVAUX" + "codePostal": "98826", + "codeCommune": "98826", + "libelleAcheminement": "POUM", + "nomCommune": "POUM" }, { - "codePostal": "76440", - "codeCommune": "76505", - "libelleAcheminement": "POMMEREUX", - "nomCommune": "POMMEREUX" + "codePostal": "79150", + "codeCommune": "79013", + "libelleAcheminement": "ARGENTONNAY", + "nomCommune": "ARGENTONNAY" }, { - "codePostal": "95510", - "codeCommune": "95676", - "libelleAcheminement": "VILLERS EN ARTHIES", - "nomCommune": "VILLERS EN ARTHIES" + "codePostal": "80360", + "codeCommune": "80538", + "libelleAcheminement": "MESNIL EN ARROUAISE", + "nomCommune": "MESNIL EN ARROUAISE" }, { - "codePostal": "86200", - "codeCommune": "86079", - "libelleAcheminement": "LA ROCHE RIGAULT", - "nomCommune": "LA ROCHE RIGAULT" + "codePostal": "98883", + "codeCommune": "98831", + "libelleAcheminement": "OUACO", + "nomCommune": "VOH" }, { - "codePostal": "76280", - "codeCommune": "76508", - "libelleAcheminement": "LA POTERIE CAP D ANTIFER", - "nomCommune": "LA POTERIE CAP D ANTIFER" + "codePostal": "79150", + "codeCommune": "79013", + "libelleAcheminement": "ARGENTONNAY", + "nomCommune": "ARGENTONNAY" }, { - "codePostal": "97123", - "codeCommune": "97104", - "libelleAcheminement": "BAILLIF", - "nomCommune": "BAILLIF" + "codePostal": "80110", + "codeCommune": "80545", + "libelleAcheminement": "MEZIERES EN SANTERRE", + "nomCommune": "MEZIERES EN SANTERRE" }, { - "codePostal": "86700", - "codeCommune": "86082", - "libelleAcheminement": "VALENCE EN POITOU", - "nomCommune": "VALENCE EN POITOU" + "codePostal": "98818", + "codeCommune": "98833", + "libelleAcheminement": "KOUAOUA", + "nomCommune": "KOUAOUA" }, { - "codePostal": "76160", - "codeCommune": "76509", - "libelleAcheminement": "PREAUX", - "nomCommune": "PREAUX" + "codePostal": "79290", + "codeCommune": "79014", + "libelleAcheminement": "LORETZ D ARGENTON", + "nomCommune": "LORETZ D ARGENTON" }, { - "codePostal": "97140", - "codeCommune": "97108", - "libelleAcheminement": "CAPESTERRE DE MARIE GALANTE", - "nomCommune": "CAPESTERRE DE MARIE GALANTE" + "codePostal": "80132", + "codeCommune": "80546", + "libelleAcheminement": "MIANNAY", + "nomCommune": "MIANNAY" }, { - "codePostal": "86700", - "codeCommune": "86082", - "libelleAcheminement": "VALENCE EN POITOU", - "nomCommune": "VALENCE EN POITOU" + "codePostal": "98000", + "codeCommune": "99138", + "libelleAcheminement": "MONACO", + "nomCommune": "MONACO" }, { - "codePostal": "76560", - "codeCommune": "76510", - "libelleAcheminement": "PRETOT VICQUEMARE", - "nomCommune": "PRETOT VICQUEMARE" + "codePostal": "79170", + "codeCommune": "79015", + "libelleAcheminement": "ASNIERES EN POITOU", + "nomCommune": "ASNIERES EN POITOU" }, { - "codePostal": "97131", - "codeCommune": "97119", - "libelleAcheminement": "PETIT CANAL", - "nomCommune": "PETIT CANAL" + "codePostal": "80300", + "codeCommune": "80547", + "libelleAcheminement": "MILLENCOURT", + "nomCommune": "MILLENCOURT" }, { - "codePostal": "86110", - "codeCommune": "86085", - "libelleAcheminement": "COUSSAY", - "nomCommune": "COUSSAY" + "codePostal": "79600", + "codeCommune": "79016", + "libelleAcheminement": "ASSAIS LES JUMEAUX", + "nomCommune": "ASSAIS LES JUMEAUX" }, { - "codePostal": "76660", - "codeCommune": "76511", - "libelleAcheminement": "PREUSEVILLE", - "nomCommune": "PREUSEVILLE" + "codePostal": "80260", + "codeCommune": "80550", + "libelleAcheminement": "MIRVAUX", + "nomCommune": "MIRVAUX" }, { - "codePostal": "97110", - "codeCommune": "97120", - "libelleAcheminement": "POINTE A PITRE", - "nomCommune": "POINTE A PITRE" + "codePostal": "79800", + "codeCommune": "79023", + "libelleAcheminement": "AVON", + "nomCommune": "AVON" }, { - "codePostal": "86270", - "codeCommune": "86086", - "libelleAcheminement": "COUSSAY LES BOIS", - "nomCommune": "COUSSAY LES BOIS" + "codePostal": "80260", + "codeCommune": "80565", + "libelleAcheminement": "MONTONVILLERS", + "nomCommune": "MONTONVILLERS" }, { - "codePostal": "76660", - "codeCommune": "76512", - "libelleAcheminement": "PUISENVAL", - "nomCommune": "PUISENVAL" + "codePostal": "79420", + "codeCommune": "79029", + "libelleAcheminement": "BEAULIEU SOUS PARTHENAY", + "nomCommune": "BEAULIEU SOUS PARTHENAY" }, { - "codePostal": "97116", - "codeCommune": "97121", - "libelleAcheminement": "POINTE NOIRE", - "nomCommune": "POINTE NOIRE" + "codePostal": "80670", + "codeCommune": "80566", + "libelleAcheminement": "FIEFFES MONTRELET", + "nomCommune": "FIEFFES MONTRELET" }, { - "codePostal": "86120", - "codeCommune": "86090", - "libelleAcheminement": "CURCAY SUR DIVE", - "nomCommune": "CURCAY SUR DIVE" + "codePostal": "79210", + "codeCommune": "79046", + "libelleAcheminement": "LE BOURDET", + "nomCommune": "LE BOURDET" }, { - "codePostal": "76730", - "codeCommune": "76519", - "libelleAcheminement": "RAINFREVILLE", - "nomCommune": "RAINFREVILLE" + "codePostal": "80190", + "codeCommune": "80568", + "libelleAcheminement": "MORCHAIN", + "nomCommune": "MORCHAIN" }, { - "codePostal": "97180", - "codeCommune": "97128", - "libelleAcheminement": "STE ANNE", - "nomCommune": "STE ANNE" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "86190", - "codeCommune": "86102", - "libelleAcheminement": "FROZES", - "nomCommune": "FROZES" + "codePostal": "80110", + "codeCommune": "80570", + "libelleAcheminement": "MOREUIL", + "nomCommune": "MOREUIL" }, { - "codePostal": "76390", - "codeCommune": "76527", - "libelleAcheminement": "RICHEMONT", - "nomCommune": "RICHEMONT" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "97223", - "codeCommune": "97206", - "libelleAcheminement": "LE DIAMANT", - "nomCommune": "LE DIAMANT" + "codePostal": "80290", + "codeCommune": "80573", + "libelleAcheminement": "MORVILLERS ST SATURNIN", + "nomCommune": "MORVILLERS ST SATURNIN" }, { - "codePostal": "86250", - "codeCommune": "86104", - "libelleAcheminement": "GENOUILLE", - "nomCommune": "GENOUILLE" + "codePostal": "79170", + "codeCommune": "79055", + "libelleAcheminement": "BRIEUIL SUR CHIZE", + "nomCommune": "BRIEUIL SUR CHIZE" }, { - "codePostal": "76540", - "codeCommune": "76529", - "libelleAcheminement": "RIVILLE", - "nomCommune": "RIVILLE" + "codePostal": "80140", + "codeCommune": "80587", + "libelleAcheminement": "NESLETTE", + "nomCommune": "NESLETTE" }, { - "codePostal": "97250", - "codeCommune": "97208", - "libelleAcheminement": "FONDS ST DENIS", - "nomCommune": "FONDS ST DENIS" + "codePostal": "79190", + "codeCommune": "79060", + "libelleAcheminement": "CAUNAY", + "nomCommune": "CAUNAY" }, { - "codePostal": "86110", - "codeCommune": "86108", - "libelleAcheminement": "LA GRIMAUDIERE", - "nomCommune": "LA GRIMAUDIERE" + "codePostal": "80110", + "codeCommune": "80595", + "libelleAcheminement": "LA NEUVILLE SIRE BERNARD", + "nomCommune": "LA NEUVILLE SIRE BERNARD" }, { - "codePostal": "76680", - "codeCommune": "76532", - "libelleAcheminement": "ROCQUEMONT", - "nomCommune": "ROCQUEMONT" + "codePostal": "79150", + "codeCommune": "79063", + "libelleAcheminement": "VAL EN VIGNES", + "nomCommune": "VAL EN VIGNES" }, { - "codePostal": "97231", - "codeCommune": "97222", - "libelleAcheminement": "LE ROBERT", - "nomCommune": "LE ROBERT" + "codePostal": "80240", + "codeCommune": "80601", + "libelleAcheminement": "NURLU", + "nomCommune": "NURLU" }, { - "codePostal": "86330", - "codeCommune": "86108", - "libelleAcheminement": "LA GRIMAUDIERE", - "nomCommune": "LA GRIMAUDIERE" + "codePostal": "79290", + "codeCommune": "79063", + "libelleAcheminement": "VAL EN VIGNES", + "nomCommune": "VAL EN VIGNES" }, { - "codePostal": "76160", - "codeCommune": "76560", - "libelleAcheminement": "ST AUBIN EPINAY", - "nomCommune": "ST AUBIN EPINAY" + "codePostal": "80700", + "codeCommune": "80617", + "libelleAcheminement": "PARVILLERS LE QUESNOY", + "nomCommune": "PARVILLERS LE QUESNOY" }, { - "codePostal": "97229", - "codeCommune": "97231", - "libelleAcheminement": "LES TROIS ILETS", - "nomCommune": "LES TROIS ILETS" + "codePostal": "79220", + "codeCommune": "79066", + "libelleAcheminement": "CHAMPDENIERS", + "nomCommune": "CHAMPDENIERS" }, { - "codePostal": "86330", - "codeCommune": "86108", - "libelleAcheminement": "LA GRIMAUDIERE", - "nomCommune": "LA GRIMAUDIERE" + "codePostal": "80580", + "codeCommune": "80635", + "libelleAcheminement": "PONT REMY", + "nomCommune": "PONT REMY" }, { - "codePostal": "76460", - "codeCommune": "76569", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "79190", + "codeCommune": "79074", + "libelleAcheminement": "LA CHAPELLE POUILLOUX", + "nomCommune": "LA CHAPELLE POUILLOUX" }, { - "codePostal": "97280", - "codeCommune": "97232", - "libelleAcheminement": "LE VAUCLIN", - "nomCommune": "LE VAUCLIN" + "codePostal": "80260", + "codeCommune": "80639", + "libelleAcheminement": "POULAINVILLE", + "nomCommune": "POULAINVILLE" }, { - "codePostal": "86420", - "codeCommune": "86109", - "libelleAcheminement": "GUESNES", - "nomCommune": "GUESNES" + "codePostal": "79360", + "codeCommune": "79078", + "libelleAcheminement": "PLAINE D ARGENSON", + "nomCommune": "PLAINE D ARGENSON" }, { - "codePostal": "76750", - "codeCommune": "76581", - "libelleAcheminement": "ST GERMAIN DES ESSOURTS", - "nomCommune": "ST GERMAIN DES ESSOURTS" + "codePostal": "80370", + "codeCommune": "80642", + "libelleAcheminement": "PROUVILLE", + "nomCommune": "PROUVILLE" }, { - "codePostal": "97351", - "codeCommune": "97307", - "libelleAcheminement": "MATOURY", - "nomCommune": "MATOURY" + "codePostal": "79360", + "codeCommune": "79078", + "libelleAcheminement": "PLAINE D ARGENSON", + "nomCommune": "PLAINE D ARGENSON" }, { - "codePostal": "86310", - "codeCommune": "86110", - "libelleAcheminement": "HAIMS", - "nomCommune": "HAIMS" + "codePostal": "80340", + "codeCommune": "80644", + "libelleAcheminement": "PROYART", + "nomCommune": "PROYART" }, { - "codePostal": "76490", - "codeCommune": "76585", - "libelleAcheminement": "ST GILLES DE CRETOT", - "nomCommune": "ST GILLES DE CRETOT" + "codePostal": "79350", + "codeCommune": "79088", + "libelleAcheminement": "CHICHE", + "nomCommune": "CHICHE" }, { - "codePostal": "97313", - "codeCommune": "97308", - "libelleAcheminement": "ST GEORGES", - "nomCommune": "ST GEORGES" + "codePostal": "80560", + "codeCommune": "80645", + "libelleAcheminement": "PUCHEVILLERS", + "nomCommune": "PUCHEVILLERS" }, { - "codePostal": "86220", - "codeCommune": "86111", - "libelleAcheminement": "INGRANDES", - "nomCommune": "INGRANDES" + "codePostal": "79510", + "codeCommune": "79100", + "libelleAcheminement": "COULON", + "nomCommune": "COULON" }, { - "codePostal": "76400", - "codeCommune": "76587", - "libelleAcheminement": "STE HELENE BONDEVILLE", - "nomCommune": "STE HELENE BONDEVILLE" + "codePostal": "80118", + "codeCommune": "80652", + "libelleAcheminement": "LE QUESNEL", + "nomCommune": "LE QUESNEL" }, { - "codePostal": "97356", - "codeCommune": "97313", - "libelleAcheminement": "MONTSINERY TONNEGRANDE", - "nomCommune": "MONTSINERY TONNEGRANDE" + "codePostal": "79800", + "codeCommune": "79115", + "libelleAcheminement": "EXOUDUN", + "nomCommune": "EXOUDUN" }, { - "codePostal": "86240", - "codeCommune": "86113", - "libelleAcheminement": "ITEUIL", - "nomCommune": "ITEUIL" + "codePostal": "80710", + "codeCommune": "80656", + "libelleAcheminement": "QUEVAUVILLERS", + "nomCommune": "QUEVAUVILLERS" }, { - "codePostal": "76160", - "codeCommune": "76591", - "libelleAcheminement": "ST JACQUES SUR DARNETAL", - "nomCommune": "ST JACQUES SUR DARNETAL" + "codePostal": "79160", + "codeCommune": "79117", + "libelleAcheminement": "FAYE SUR ARDIN", + "nomCommune": "FAYE SUR ARDIN" }, { - "codePostal": "97370", - "codeCommune": "97353", - "libelleAcheminement": "MARIPASOULA", - "nomCommune": "MARIPASOULA" + "codePostal": "80140", + "codeCommune": "80662", + "libelleAcheminement": "RAMBURELLES", + "nomCommune": "RAMBURELLES" }, { - "codePostal": "86390", - "codeCommune": "86120", - "libelleAcheminement": "LATHUS ST REMY", - "nomCommune": "LATHUS ST REMY" + "codePostal": "79340", + "codeCommune": "79121", + "libelleAcheminement": "FOMPERRON", + "nomCommune": "FOMPERRON" }, { - "codePostal": "76170", - "codeCommune": "76592", - "libelleAcheminement": "ST JEAN DE FOLLEVILLE", - "nomCommune": "ST JEAN DE FOLLEVILLE" + "codePostal": "80120", + "codeCommune": "80665", + "libelleAcheminement": "REGNIERE ECLUSE", + "nomCommune": "REGNIERE ECLUSE" }, { - "codePostal": "97425", - "codeCommune": "97401", - "libelleAcheminement": "LES AVIRONS", - "nomCommune": "LES AVIRONS" + "codePostal": "79380", + "codeCommune": "79123", + "libelleAcheminement": "LA FORET SUR SEVRE", + "nomCommune": "LA FORET SUR SEVRE" }, { - "codePostal": "86470", - "codeCommune": "86123", - "libelleAcheminement": "BOIVRE LA VALLEE", - "nomCommune": "BOIVRE LA VALLEE" + "codePostal": "80250", + "codeCommune": "80668", + "libelleAcheminement": "REMIENCOURT", + "nomCommune": "REMIENCOURT" }, { - "codePostal": "76700", - "codeCommune": "76596", - "libelleAcheminement": "ST LAURENT DE BREVEDENT", - "nomCommune": "ST LAURENT DE BREVEDENT" + "codePostal": "79360", + "codeCommune": "79126", + "libelleAcheminement": "LES FOSSES", + "nomCommune": "LES FOSSES" }, { - "codePostal": "97429", - "codeCommune": "97405", - "libelleAcheminement": "PETITE ILE", - "nomCommune": "PETITE ILE" + "codePostal": "80680", + "codeCommune": "80690", + "libelleAcheminement": "RUMIGNY", + "nomCommune": "RUMIGNY" }, { - "codePostal": "86450", - "codeCommune": "86125", - "libelleAcheminement": "LEIGNE LES BOIS", - "nomCommune": "LEIGNE LES BOIS" + "codePostal": "79200", + "codeCommune": "79135", + "libelleAcheminement": "GOURGE", + "nomCommune": "GOURGE" }, { - "codePostal": "76780", - "codeCommune": "76601", - "libelleAcheminement": "ST LUCIEN", - "nomCommune": "ST LUCIEN" + "codePostal": "80230", + "codeCommune": "80691", + "libelleAcheminement": "SAIGNEVILLE", + "nomCommune": "SAIGNEVILLE" }, { - "codePostal": "97419", - "codeCommune": "97408", - "libelleAcheminement": "LA POSSESSION", - "nomCommune": "LA POSSESSION" + "codePostal": "79110", + "codeCommune": "79136", + "libelleAcheminement": "ALLOINAY", + "nomCommune": "ALLOINAY" }, { - "codePostal": "86270", - "codeCommune": "86129", - "libelleAcheminement": "LESIGNY", - "nomCommune": "LESIGNY" + "codePostal": "80680", + "codeCommune": "80696", + "libelleAcheminement": "SAINS EN AMIENOIS", + "nomCommune": "SAINS EN AMIENOIS" }, { - "codePostal": "76110", - "codeCommune": "76603", - "libelleAcheminement": "ST MACLOU LA BRIERE", - "nomCommune": "ST MACLOU LA BRIERE" + "codePostal": "79360", + "codeCommune": "79137", + "libelleAcheminement": "GRANZAY GRIPT", + "nomCommune": "GRANZAY GRIPT" }, { - "codePostal": "97437", - "codeCommune": "97410", - "libelleAcheminement": "ST BENOIT", - "nomCommune": "ST BENOIT" + "codePostal": "80430", + "codeCommune": "80703", + "libelleAcheminement": "ST GERMAIN SUR BRESLE", + "nomCommune": "ST GERMAIN SUR BRESLE" }, { - "codePostal": "86400", - "codeCommune": "86134", - "libelleAcheminement": "LINAZAY", - "nomCommune": "LINAZAY" + "codePostal": "79220", + "codeCommune": "79139", + "libelleAcheminement": "LES GROSEILLERS", + "nomCommune": "LES GROSEILLERS" }, { - "codePostal": "76390", - "codeCommune": "76606", - "libelleAcheminement": "MORIENNE", - "nomCommune": "MORIENNE" + "codePostal": "80260", + "codeCommune": "80704", + "libelleAcheminement": "ST GRATIEN", + "nomCommune": "ST GRATIEN" }, { - "codePostal": "97470", - "codeCommune": "97410", - "libelleAcheminement": "ST BENOIT", - "nomCommune": "ST BENOIT" + "codePostal": "79110", + "codeCommune": "79140", + "libelleAcheminement": "VALDELAUME", + "nomCommune": "VALDELAUME" }, { - "codePostal": "86400", - "codeCommune": "86136", - "libelleAcheminement": "LIZANT", - "nomCommune": "LIZANT" + "codePostal": "80880", + "codeCommune": "80714", + "libelleAcheminement": "ST QUENTIN LA MOTTE CROIX BAILLY", + "nomCommune": "ST QUENTIN LA MOTTE CROIX AU BAILLY" }, { - "codePostal": "76450", - "codeCommune": "76613", - "libelleAcheminement": "ST MARTIN AUX BUNEAUX", - "nomCommune": "ST MARTIN AUX BUNEAUX" + "codePostal": "79110", + "codeCommune": "79140", + "libelleAcheminement": "VALDELAUME", + "nomCommune": "VALDELAUME" }, { - "codePostal": "97470", - "codeCommune": "97410", - "libelleAcheminement": "ST BENOIT", - "nomCommune": "ST BENOIT" + "codePostal": "80290", + "codeCommune": "80719", + "libelleAcheminement": "STE SEGREE", + "nomCommune": "STE SEGREE" }, { - "codePostal": "86430", - "codeCommune": "86138", - "libelleAcheminement": "LUCHAPT", - "nomCommune": "LUCHAPT" + "codePostal": "79190", + "codeCommune": "79150", + "libelleAcheminement": "LIMALONGES", + "nomCommune": "LIMALONGES" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "80400", + "codeCommune": "80726", + "libelleAcheminement": "SANCOURT", + "nomCommune": "SANCOURT" }, { - "codePostal": "97400", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "79500", + "codeCommune": "79174", + "libelleAcheminement": "MELLE", + "nomCommune": "MELLE" }, { - "codePostal": "86600", - "codeCommune": "86139", - "libelleAcheminement": "LUSIGNAN", - "nomCommune": "LUSIGNAN" + "codePostal": "80300", + "codeCommune": "80733", + "libelleAcheminement": "SENLIS LE SEC", + "nomCommune": "SENLIS LE SEC" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "79320", + "codeCommune": "79179", + "libelleAcheminement": "MONCOUTANT SUR SEVRE", + "nomCommune": "MONCOUTANT SUR SEVRE" }, { - "codePostal": "97490", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "80270", + "codeCommune": "80744", + "libelleAcheminement": "TAILLY L ARBRE A MOUCHES", + "nomCommune": "TAILLY" }, { - "codePostal": "86190", - "codeCommune": "86142", - "libelleAcheminement": "MAILLE", - "nomCommune": "MAILLE" + "codePostal": "79320", + "codeCommune": "79179", + "libelleAcheminement": "MONCOUTANT SUR SEVRE", + "nomCommune": "MONCOUTANT SUR SEVRE" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "80240", + "codeCommune": "80747", + "libelleAcheminement": "TEMPLEUX LA FOSSE", + "nomCommune": "TEMPLEUX LA FOSSE" }, { - "codePostal": "97490", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "79370", + "codeCommune": "79185", + "libelleAcheminement": "AIGONDIGNE", + "nomCommune": "AIGONDIGNE" }, { - "codePostal": "86270", - "codeCommune": "86143", - "libelleAcheminement": "MAIRE", - "nomCommune": "MAIRE" + "codePostal": "80560", + "codeCommune": "80756", + "libelleAcheminement": "THIEVRES", + "nomCommune": "THIEVRES" }, { - "codePostal": "76680", - "codeCommune": "76621", - "libelleAcheminement": "ST MARTIN OSMONVILLE", - "nomCommune": "ST MARTIN OSMONVILLE" + "codePostal": "79400", + "codeCommune": "79189", + "libelleAcheminement": "NANTEUIL", + "nomCommune": "NANTEUIL" }, { - "codePostal": "97480", - "codeCommune": "97412", - "libelleAcheminement": "ST JOSEPH", - "nomCommune": "ST JOSEPH" + "codePostal": "80700", + "codeCommune": "80759", + "libelleAcheminement": "TILLOLOY", + "nomCommune": "TILLOLOY" }, { - "codePostal": "86170", - "codeCommune": "86150", - "libelleAcheminement": "MASSOGNES", - "nomCommune": "MASSOGNES" + "codePostal": "79000", + "codeCommune": "79191", + "libelleAcheminement": "NIORT", + "nomCommune": "NIORT" }, { - "codePostal": "76890", - "codeCommune": "76632", - "libelleAcheminement": "ST PIERRE BENOUVILLE", - "nomCommune": "ST PIERRE BENOUVILLE" + "codePostal": "80560", + "codeCommune": "80773", + "libelleAcheminement": "VADENCOURT", + "nomCommune": "VADENCOURT" }, { - "codePostal": "97460", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "79250", + "codeCommune": "79195", + "libelleAcheminement": "NUEIL LES AUBIERS", + "nomCommune": "NUEIL LES AUBIERS" }, { - "codePostal": "86330", - "codeCommune": "86161", - "libelleAcheminement": "MONCONTOUR", - "nomCommune": "MONCONTOUR" + "codePostal": "80210", + "codeCommune": "80775", + "libelleAcheminement": "VALINES", + "nomCommune": "VALINES" }, { - "codePostal": "76740", - "codeCommune": "76641", - "libelleAcheminement": "ST PIERRE LE VIEUX", - "nomCommune": "ST PIERRE LE VIEUX" + "codePostal": "79100", + "codeCommune": "79196", + "libelleAcheminement": "PLAINE ET VALLEES", + "nomCommune": "PLAINE ET VALLEES" }, { - "codePostal": "97410", - "codeCommune": "97416", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "80620", + "codeCommune": "80778", + "libelleAcheminement": "VAUCHELLES LES DOMART", + "nomCommune": "VAUCHELLES LES DOMART" }, { - "codePostal": "86230", - "codeCommune": "86162", - "libelleAcheminement": "MONDION", - "nomCommune": "MONDION" + "codePostal": "79170", + "codeCommune": "79198", + "libelleAcheminement": "PAIZAY LE CHAPT", + "nomCommune": "PAIZAY LE CHAPT" }, { - "codePostal": "76260", - "codeCommune": "76644", - "libelleAcheminement": "ST REMY BOSCROCOURT", - "nomCommune": "ST REMY BOSCROCOURT" + "codePostal": "80140", + "codeCommune": "80783", + "libelleAcheminement": "VAUX MARQUENNEVILLE", + "nomCommune": "VAUX MARQUENNEVILLE" }, { - "codePostal": "97410", - "codeCommune": "97416", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "79220", + "codeCommune": "79200", + "libelleAcheminement": "PAMPLIE", + "nomCommune": "PAMPLIE" }, { - "codePostal": "86420", - "codeCommune": "86167", - "libelleAcheminement": "MONTS SUR GUESNES", - "nomCommune": "MONTS SUR GUESNES" + "codePostal": "80120", + "codeCommune": "80787", + "libelleAcheminement": "VERCOURT", + "nomCommune": "VERCOURT" }, { - "codePostal": "76340", - "codeCommune": "76645", - "libelleAcheminement": "ST RIQUIER EN RIVIERE", - "nomCommune": "ST RIQUIER EN RIVIERE" + "codePostal": "79190", + "codeCommune": "79205", + "libelleAcheminement": "PERS", + "nomCommune": "PERS" }, { - "codePostal": "97410", - "codeCommune": "97416", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "80320", + "codeCommune": "80789", + "libelleAcheminement": "VERMANDOVILLERS", + "nomCommune": "VERMANDOVILLERS" }, { - "codePostal": "86150", - "codeCommune": "86171", - "libelleAcheminement": "MOUSSAC", - "nomCommune": "MOUSSAC" + "codePostal": "79700", + "codeCommune": "79235", + "libelleAcheminement": "ST AMAND SUR SEVRE", + "nomCommune": "ST AMAND SUR SEVRE" }, { - "codePostal": "76460", - "codeCommune": "76646", - "libelleAcheminement": "ST RIQUIER ES PLAINS", - "nomCommune": "ST RIQUIER ES PLAINS" + "codePostal": "80260", + "codeCommune": "80792", + "libelleAcheminement": "LA VICOGNE", + "nomCommune": "LA VICOGNE" }, { - "codePostal": "97432", - "codeCommune": "97416", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "79150", + "codeCommune": "79242", + "libelleAcheminement": "VOULMENTIN", + "nomCommune": "VOULMENTIN" }, { - "codePostal": "86340", - "codeCommune": "86178", - "libelleAcheminement": "NIEUIL L ESPOIR", - "nomCommune": "NIEUIL L ESPOIR" + "codePostal": "80190", + "codeCommune": "80794", + "libelleAcheminement": "VILLECOURT", + "nomCommune": "VILLECOURT" }, { - "codePostal": "76270", - "codeCommune": "76649", - "libelleAcheminement": "ST SAIRE", - "nomCommune": "ST SAIRE" + "codePostal": "79120", + "codeCommune": "79243", + "libelleAcheminement": "ST COUTANT", + "nomCommune": "ST COUTANT" }, { - "codePostal": "97433", - "codeCommune": "97421", - "libelleAcheminement": "SALAZIE", - "nomCommune": "SALAZIE" + "codePostal": "80140", + "codeCommune": "80800", + "libelleAcheminement": "VILLERS CAMPSART", + "nomCommune": "VILLERS CAMPSART" }, { - "codePostal": "86340", - "codeCommune": "86180", - "libelleAcheminement": "NOUAILLE MAUPERTUIS", - "nomCommune": "NOUAILLE MAUPERTUIS" + "codePostal": "79800", + "codeCommune": "79246", + "libelleAcheminement": "STE EANNE", + "nomCommune": "STE EANNE" }, { - "codePostal": "76430", - "codeCommune": "76657", - "libelleAcheminement": "ST VIGOR D YMONVILLE", - "nomCommune": "ST VIGOR D YMONVILLE" + "codePostal": "80140", + "codeCommune": "80809", + "libelleAcheminement": "VISMES AU VAL", + "nomCommune": "VISMES" }, { - "codePostal": "97500", - "codeCommune": "97502", - "libelleAcheminement": "ST PIERRE ET MIQUELON", - "nomCommune": "ST PIERRE" + "codePostal": "79100", + "codeCommune": "79258", + "libelleAcheminement": "ST JACQUES DE THOUARS", + "nomCommune": "ST JACQUES DE THOUARS" }, { - "codePostal": "86500", - "codeCommune": "86192", - "libelleAcheminement": "PLAISANCE", - "nomCommune": "PLAISANCE" + "codePostal": "80270", + "codeCommune": "80825", + "libelleAcheminement": "WIRY AU MONT", + "nomCommune": "WIRY AU MONT" }, { - "codePostal": "76730", - "codeCommune": "76662", - "libelleAcheminement": "SASSETOT LE MALGARDE", - "nomCommune": "SASSETOT LE MALGARDE" + "codePostal": "79100", + "codeCommune": "79265", + "libelleAcheminement": "ST LEGER DE MONTBRUN", + "nomCommune": "ST LEGER DE MONTBRUN" }, { - "codePostal": "97615", - "codeCommune": "97608", - "libelleAcheminement": "DZAOUDZI", - "nomCommune": "DZAOUDZI" + "codePostal": "80520", + "codeCommune": "80827", + "libelleAcheminement": "WOINCOURT", + "nomCommune": "WOINCOURT" }, { - "codePostal": "86220", - "codeCommune": "86195", - "libelleAcheminement": "PORT DE PILES", - "nomCommune": "PORT DE PILES" + "codePostal": "79420", + "codeCommune": "79267", + "libelleAcheminement": "ST LIN", + "nomCommune": "ST LIN" }, { - "codePostal": "76540", - "codeCommune": "76663", - "libelleAcheminement": "SASSETOT LE MAUCONDUIT", - "nomCommune": "SASSETOT LE MAUCONDUIT" + "codePostal": "80190", + "codeCommune": "80829", + "libelleAcheminement": "Y", + "nomCommune": "Y" }, { - "codePostal": "97630", - "codeCommune": "97612", - "libelleAcheminement": "MTSAMBORO", - "nomCommune": "MTSAMBORO" + "codePostal": "79160", + "codeCommune": "79269", + "libelleAcheminement": "ST MAIXENT DE BEUGNE", + "nomCommune": "ST MAIXENT DE BEUGNE" }, { - "codePostal": "86200", - "codeCommune": "86205", - "libelleAcheminement": "RANTON", - "nomCommune": "RANTON" + "codePostal": "80135", + "codeCommune": "80830", + "libelleAcheminement": "YAUCOURT BUSSUS", + "nomCommune": "YAUCOURT BUSSUS" }, { - "codePostal": "76760", - "codeCommune": "76668", - "libelleAcheminement": "SAUSSAY", - "nomCommune": "SAUSSAY" + "codePostal": "79230", + "codeCommune": "79273", + "libelleAcheminement": "ST MARTIN DE BERNEGOUE", + "nomCommune": "ST MARTIN DE BERNEGOUE" }, { - "codePostal": "97680", - "codeCommune": "97617", - "libelleAcheminement": "TSINGONI", - "nomCommune": "TSINGONI" + "codePostal": "81000", + "codeCommune": "81004", + "libelleAcheminement": "ALBI", + "nomCommune": "ALBI" }, { - "codePostal": "86280", - "codeCommune": "86214", - "libelleAcheminement": "ST BENOIT", - "nomCommune": "ST BENOIT" + "codePostal": "79400", + "codeCommune": "79276", + "libelleAcheminement": "ST MARTIN DE ST MAIXENT", + "nomCommune": "ST MARTIN DE ST MAIXENT" }, { - "codePostal": "76660", - "codeCommune": "76677", - "libelleAcheminement": "SMERMESNIL", - "nomCommune": "SMERMESNIL" + "codePostal": "81470", + "codeCommune": "81006", + "libelleAcheminement": "ALGANS", + "nomCommune": "ALGANS" }, { - "codePostal": "97133", - "codeCommune": "97701", - "libelleAcheminement": "ST BARTHELEMY", - "nomCommune": "ST BARTHELEMY" + "codePostal": "79220", + "codeCommune": "79284", + "libelleAcheminement": "STE OUENNE", + "nomCommune": "STE OUENNE" }, { - "codePostal": "86330", - "codeCommune": "86218", - "libelleAcheminement": "ST CLAIR", - "nomCommune": "ST CLAIR" + "codePostal": "81140", + "codeCommune": "81012", + "libelleAcheminement": "ANDILLAC", + "nomCommune": "ANDILLAC" }, { - "codePostal": "76740", - "codeCommune": "76683", - "libelleAcheminement": "SOTTEVILLE SUR MER", - "nomCommune": "SOTTEVILLE SUR MER" + "codePostal": "79700", + "codeCommune": "79289", + "libelleAcheminement": "ST PIERRE DES ECHAUBROGNES", + "nomCommune": "ST PIERRE DES ECHAUBROGNES" }, { - "codePostal": "98620", - "codeCommune": "98612", - "libelleAcheminement": "SIGAVE", - "nomCommune": "SIGAVE" + "codePostal": "81700", + "codeCommune": "81015", + "libelleAcheminement": "APPELLE", + "nomCommune": "APPELLE" }, { - "codePostal": "86350", - "codeCommune": "86234", - "libelleAcheminement": "ST MARTIN L ARS", - "nomCommune": "ST MARTIN L ARS" + "codePostal": "79100", + "codeCommune": "79300", + "libelleAcheminement": "STE VERGE", + "nomCommune": "STE VERGE" }, { - "codePostal": "76540", - "codeCommune": "76689", - "libelleAcheminement": "THIETREVILLE", - "nomCommune": "THIETREVILLE" + "codePostal": "81600", + "codeCommune": "81020", + "libelleAcheminement": "AUSSAC", + "nomCommune": "AUSSAC" }, { - "codePostal": "98730", - "codeCommune": "98714", - "libelleAcheminement": "FAANUI", - "nomCommune": "BORA BORA" + "codePostal": "79400", + "codeCommune": "79302", + "libelleAcheminement": "SAIVRES", + "nomCommune": "SAIVRES" }, { - "codePostal": "86260", - "codeCommune": "86236", - "libelleAcheminement": "ST PIERRE DE MAILLE", - "nomCommune": "ST PIERRE DE MAILLE" + "codePostal": "81200", + "codeCommune": "81021", + "libelleAcheminement": "AUSSILLON", + "nomCommune": "AUSSILLON" }, { - "codePostal": "76110", - "codeCommune": "76695", - "libelleAcheminement": "TOCQUEVILLE LES MURS", - "nomCommune": "TOCQUEVILLE LES MURS" + "codePostal": "79270", + "codeCommune": "79304", + "libelleAcheminement": "SANSAIS", + "nomCommune": "SANSAIS" }, { - "codePostal": "98730", - "codeCommune": "98714", - "libelleAcheminement": "VAITAPE", - "nomCommune": "BORA BORA" + "codePostal": "81430", + "codeCommune": "81026", + "libelleAcheminement": "BELLEGARDE MARSAL", + "nomCommune": "BELLEGARDE MARSAL" }, { - "codePostal": "86300", - "codeCommune": "86239", - "libelleAcheminement": "STE RADEGONDE", - "nomCommune": "STE RADEGONDE" + "codePostal": "79200", + "codeCommune": "79306", + "libelleAcheminement": "SAURAIS", + "nomCommune": "SAURAIS" }, { - "codePostal": "76590", - "codeCommune": "76697", - "libelleAcheminement": "TORCY LE GRAND", - "nomCommune": "TORCY LE GRAND" + "codePostal": "81260", + "codeCommune": "81031", + "libelleAcheminement": "LE BEZ", + "nomCommune": "LE BEZ" }, { - "codePostal": "98763", - "codeCommune": "98716", - "libelleAcheminement": "ROTOAVA", - "nomCommune": "FAKARAVA" + "codePostal": "79200", + "codeCommune": "79322", + "libelleAcheminement": "LE TALLUD", + "nomCommune": "LE TALLUD" }, { - "codePostal": "86220", - "codeCommune": "86241", - "libelleAcheminement": "ST REMY SUR CREUSE", - "nomCommune": "ST REMY SUR CREUSE" + "codePostal": "81600", + "codeCommune": "81038", + "libelleAcheminement": "BRENS", + "nomCommune": "BRENS" }, { - "codePostal": "76400", - "codeCommune": "76708", - "libelleAcheminement": "TOUSSAINT", - "nomCommune": "TOUSSAINT" + "codePostal": "79100", + "codeCommune": "79329", + "libelleAcheminement": "THOUARS", + "nomCommune": "THOUARS" }, { - "codePostal": "98764", - "codeCommune": "98716", - "libelleAcheminement": "PAPARARA", - "nomCommune": "FAKARAVA" + "codePostal": "81500", + "codeCommune": "81044", + "libelleAcheminement": "CABANES", + "nomCommune": "CABANES" }, { - "codePostal": "86200", - "codeCommune": "86252", - "libelleAcheminement": "SAMMARCOLLES", - "nomCommune": "SAMMARCOLLES" + "codePostal": "79100", + "codeCommune": "79329", + "libelleAcheminement": "THOUARS", + "nomCommune": "THOUARS" }, { - "codePostal": "76640", - "codeCommune": "76710", - "libelleAcheminement": "TREMAUVILLE", - "nomCommune": "TREMAUVILLE" + "codePostal": "81540", + "codeCommune": "81049", + "libelleAcheminement": "CAHUZAC", + "nomCommune": "CAHUZAC" }, { - "codePostal": "98755", - "codeCommune": "98719", - "libelleAcheminement": "MANIUI", - "nomCommune": "GAMBIER" + "codePostal": "79240", + "codeCommune": "79332", + "libelleAcheminement": "TRAYES", + "nomCommune": "TRAYES" }, { - "codePostal": "86400", - "codeCommune": "86255", - "libelleAcheminement": "SAVIGNE", - "nomCommune": "SAVIGNE" + "codePostal": "81990", + "codeCommune": "81059", + "libelleAcheminement": "CARLUS", + "nomCommune": "CARLUS" }, { - "codePostal": "76430", - "codeCommune": "76714", - "libelleAcheminement": "LES TROIS PIERRES", - "nomCommune": "LES TROIS PIERRES" + "codePostal": "79240", + "codeCommune": "79342", + "libelleAcheminement": "VERNOUX EN GATINE", + "nomCommune": "VERNOUX EN GATINE" }, { - "codePostal": "98755", - "codeCommune": "98719", - "libelleAcheminement": "RIKITEA", - "nomCommune": "GAMBIER" + "codePostal": "81400", + "codeCommune": "81060", + "libelleAcheminement": "CARMAUX", + "nomCommune": "CARMAUX" }, { - "codePostal": "86800", - "codeCommune": "86261", - "libelleAcheminement": "SEVRES ANXAUMONT", - "nomCommune": "SEVRES ANXAUMONT" + "codePostal": "79360", + "codeCommune": "79350", + "libelleAcheminement": "VILLIERS EN BOIS", + "nomCommune": "VILLIERS EN BOIS" }, { - "codePostal": "76380", - "codeCommune": "76717", - "libelleAcheminement": "VAL DE LA HAYE", - "nomCommune": "VAL DE LA HAYE" + "codePostal": "81150", + "codeCommune": "81067", + "libelleAcheminement": "CESTAYROLS", + "nomCommune": "CESTAYROLS" }, { - "codePostal": "98792", - "codeCommune": "98719", - "libelleAcheminement": "TEMOE", - "nomCommune": "GAMBIER" + "codePostal": "80100", + "codeCommune": "80001", + "libelleAcheminement": "ABBEVILLE", + "nomCommune": "ABBEVILLE" }, { - "codePostal": "86230", - "codeCommune": "86265", - "libelleAcheminement": "SOSSAIS", - "nomCommune": "SOSSAIS" + "codePostal": "81640", + "codeCommune": "81068", + "libelleAcheminement": "COMBEFA", + "nomCommune": "COMBEFA" }, { - "codePostal": "76540", - "codeCommune": "76719", - "libelleAcheminement": "VALMONT", - "nomCommune": "VALMONT" + "codePostal": "80300", + "codeCommune": "80016", + "libelleAcheminement": "ALBERT", + "nomCommune": "ALBERT" }, { - "codePostal": "98790", - "codeCommune": "98720", - "libelleAcheminement": "NENGONENGO", - "nomCommune": "HAO" + "codePostal": "81170", + "codeCommune": "81069", + "libelleAcheminement": "CORDES SUR CIEL", + "nomCommune": "CORDES SUR CIEL" }, { - "codePostal": "86110", - "codeCommune": "86271", - "libelleAcheminement": "THURAGEAU", - "nomCommune": "THURAGEAU" + "codePostal": "80270", + "codeCommune": "80019", + "libelleAcheminement": "ALLERY", + "nomCommune": "ALLERY" }, { - "codePostal": "76890", - "codeCommune": "76721", - "libelleAcheminement": "VARNEVILLE BRETTEVILLE", - "nomCommune": "VARNEVILLE BRETTEVILLE" + "codePostal": "81990", + "codeCommune": "81074", + "libelleAcheminement": "CUNAC", + "nomCommune": "CUNAC" }, { - "codePostal": "98768", - "codeCommune": "98721", - "libelleAcheminement": "TUPAPATI", - "nomCommune": "HIKUERU" + "codePostal": "80000", + "codeCommune": "80021", + "libelleAcheminement": "AMIENS", + "nomCommune": "AMIENS" }, { - "codePostal": "86290", - "codeCommune": "86273", - "libelleAcheminement": "LA TRIMOUILLE", - "nomCommune": "LA TRIMOUILLE" + "codePostal": "81250", + "codeCommune": "81077", + "libelleAcheminement": "CURVALLE", + "nomCommune": "CURVALLE" }, { - "codePostal": "76890", - "codeCommune": "76723", - "libelleAcheminement": "VASSONVILLE", - "nomCommune": "VASSONVILLE" + "codePostal": "80700", + "codeCommune": "80023", + "libelleAcheminement": "ANDECHY", + "nomCommune": "ANDECHY" }, { - "codePostal": "98741", - "codeCommune": "98723", - "libelleAcheminement": "ATUONA", - "nomCommune": "HIVA OA" + "codePostal": "81340", + "codeCommune": "81082", + "libelleAcheminement": "LE DOURN", + "nomCommune": "LE DOURN" }, { - "codePostal": "86220", - "codeCommune": "86279", - "libelleAcheminement": "VAUX SUR VIENNE", - "nomCommune": "VAUX SUR VIENNE" + "codePostal": "80560", + "codeCommune": "80028", + "libelleAcheminement": "ARQUEVES", + "nomCommune": "ARQUEVES" }, { - "codePostal": "76110", - "codeCommune": "76725", - "libelleAcheminement": "VATTETOT SOUS BEAUMONT", - "nomCommune": "VATTETOT SOUS BEAUMONT" + "codePostal": "81540", + "codeCommune": "81083", + "libelleAcheminement": "DURFORT", + "nomCommune": "DURFORT" }, { - "codePostal": "98796", - "codeCommune": "98723", - "libelleAcheminement": "MOHOTANI", - "nomCommune": "HIVA OA" + "codePostal": "80200", + "codeCommune": "80034", + "libelleAcheminement": "ATHIES", + "nomCommune": "ATHIES" }, { - "codePostal": "86170", - "codeCommune": "86281", - "libelleAcheminement": "ST MARTIN LA PALLU", - "nomCommune": "ST MARTIN LA PALLU" + "codePostal": "81530", + "codeCommune": "81085", + "libelleAcheminement": "ESCROUX", + "nomCommune": "ESCROUX" }, { - "codePostal": "76760", - "codeCommune": "76737", - "libelleAcheminement": "VIBEUF", - "nomCommune": "VIBEUF" + "codePostal": "80800", + "codeCommune": "80036", + "libelleAcheminement": "AUBIGNY", + "nomCommune": "AUBIGNY" }, { - "codePostal": "98731", - "codeCommune": "98724", - "libelleAcheminement": "HAAPU", - "nomCommune": "HUAHINE" + "codePostal": "81150", + "codeCommune": "81093", + "libelleAcheminement": "FLORENTIN", + "nomCommune": "FLORENTIN" }, { - "codePostal": "86380", - "codeCommune": "86281", - "libelleAcheminement": "ST MARTIN LA PALLU", - "nomCommune": "ST MARTIN LA PALLU" + "codePostal": "80600", + "codeCommune": "80042", + "libelleAcheminement": "AUTHEUX", + "nomCommune": "AUTHEUX" }, { - "codePostal": "76260", - "codeCommune": "76745", - "libelleAcheminement": "VILLY SUR YERES", - "nomCommune": "VILLY SUR YERES" + "codePostal": "81170", + "codeCommune": "81095", + "libelleAcheminement": "FRAUSSEILLES", + "nomCommune": "FRAUSSEILLES" }, { - "codePostal": "98790", - "codeCommune": "98726", - "libelleAcheminement": "GARUMAOA", - "nomCommune": "MAKEMO" + "codePostal": "80560", + "codeCommune": "80043", + "libelleAcheminement": "AUTHIE", + "nomCommune": "AUTHIE" }, { - "codePostal": "86580", - "codeCommune": "86297", - "libelleAcheminement": "VOUNEUIL SOUS BIARD", - "nomCommune": "VOUNEUIL SOUS BIARD" + "codePostal": "81570", + "codeCommune": "81098", + "libelleAcheminement": "FREJEVILLE", + "nomCommune": "FREJEVILLE" }, { - "codePostal": "76540", - "codeCommune": "76746", - "libelleAcheminement": "VINNEMERVILLE", - "nomCommune": "VINNEMERVILLE" + "codePostal": "80270", + "codeCommune": "80046", + "libelleAcheminement": "AVELESGES", + "nomCommune": "AVELESGES" }, { - "codePostal": "98770", - "codeCommune": "98727", - "libelleAcheminement": "TENOKUPARA", - "nomCommune": "MANIHI" + "codePostal": "81700", + "codeCommune": "81100", + "libelleAcheminement": "GARREVAQUES", + "nomCommune": "GARREVAQUES" }, { - "codePostal": "86170", - "codeCommune": "86299", - "libelleAcheminement": "VOUZAILLES", - "nomCommune": "VOUZAILLES" + "codePostal": "80500", + "codeCommune": "80049", + "libelleAcheminement": "AYENCOURT LE MONCHEL", + "nomCommune": "AYENCOURT" }, { - "codePostal": "76660", - "codeCommune": "76749", - "libelleAcheminement": "WANCHY CAPVAL", - "nomCommune": "WANCHY CAPVAL" + "codePostal": "81530", + "codeCommune": "81103", + "libelleAcheminement": "GIJOUNET", + "nomCommune": "GIJOUNET" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "HAUMI", - "nomCommune": "MOOREA MAIAO" + "codePostal": "80480", + "codeCommune": "80050", + "libelleAcheminement": "BACOUEL SUR SELLE", + "nomCommune": "BACOUEL SUR SELLE" }, { - "codePostal": "87160", - "codeCommune": "87003", - "libelleAcheminement": "ARNAC LA POSTE", - "nomCommune": "ARNAC LA POSTE" + "codePostal": "81170", + "codeCommune": "81108", + "libelleAcheminement": "ITZAC", + "nomCommune": "ITZAC" }, { - "codePostal": "76690", - "codeCommune": "76756", - "libelleAcheminement": "YQUEBEUF", - "nomCommune": "YQUEBEUF" + "codePostal": "80260", + "codeCommune": "80056", + "libelleAcheminement": "BAVELINCOURT", + "nomCommune": "BAVELINCOURT" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "MAATEA", - "nomCommune": "MOOREA MAIAO" + "codePostal": "81120", + "codeCommune": "81119", + "libelleAcheminement": "LABOUTARIE", + "nomCommune": "LABOUTARIE" }, { - "codePostal": "87220", - "codeCommune": "87005", - "libelleAcheminement": "AUREIL", - "nomCommune": "AUREIL" + "codePostal": "80370", + "codeCommune": "80060", + "libelleAcheminement": "BEALCOURT", + "nomCommune": "BEALCOURT" }, { - "codePostal": "77120", - "codeCommune": "77002", - "libelleAcheminement": "AMILLIS", - "nomCommune": "AMILLIS" + "codePostal": "81500", + "codeCommune": "81126", + "libelleAcheminement": "LACOUGOTTE CADOUL", + "nomCommune": "LACOUGOTTE CADOUL" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "MAHAREPA", - "nomCommune": "MOOREA MAIAO" + "codePostal": "80110", + "codeCommune": "80064", + "libelleAcheminement": "BEAUCOURT EN SANTERRE", + "nomCommune": "BEAUCOURT EN SANTERRE" }, { - "codePostal": "87300", - "codeCommune": "87012", - "libelleAcheminement": "BERNEUIL", - "nomCommune": "BERNEUIL" + "codePostal": "81110", + "codeCommune": "81129", + "libelleAcheminement": "LAGARDIOLLE", + "nomCommune": "LAGARDIOLLE" }, { - "codePostal": "77120", - "codeCommune": "77013", - "libelleAcheminement": "AULNOY", - "nomCommune": "AULNOY" + "codePostal": "80370", + "codeCommune": "80068", + "libelleAcheminement": "BEAUMETZ", + "nomCommune": "BEAUMETZ" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "PAOPAO", - "nomCommune": "MOOREA MAIAO" + "codePostal": "81090", + "codeCommune": "81130", + "libelleAcheminement": "LAGARRIGUE", + "nomCommune": "LAGARRIGUE" }, { - "codePostal": "87220", - "codeCommune": "87019", - "libelleAcheminement": "BOISSEUIL", - "nomCommune": "BOISSEUIL" + "codePostal": "80300", + "codeCommune": "80073", + "libelleAcheminement": "BECORDEL BECOURT", + "nomCommune": "BECORDEL BECOURT" }, { - "codePostal": "77750", - "codeCommune": "77024", - "libelleAcheminement": "BASSEVELLE", - "nomCommune": "BASSEVELLE" + "codePostal": "81260", + "codeCommune": "81134", + "libelleAcheminement": "LAMONTELARIE", + "nomCommune": "LAMONTELARIE" }, { - "codePostal": "98742", - "codeCommune": "98731", - "libelleAcheminement": "TAIPIVAI", - "nomCommune": "NUKU HIVA" + "codePostal": "80132", + "codeCommune": "80078", + "libelleAcheminement": "BELLANCOURT", + "nomCommune": "BELLANCOURT" }, { - "codePostal": "87270", - "codeCommune": "87020", - "libelleAcheminement": "BONNAC LA COTE", - "nomCommune": "BONNAC LA COTE" + "codePostal": "81170", + "codeCommune": "81146", + "libelleAcheminement": "LIVERS CAZELLES", + "nomCommune": "LIVERS CAZELLES" }, { - "codePostal": "77540", - "codeCommune": "77031", - "libelleAcheminement": "BERNAY VILBERT", - "nomCommune": "BERNAY VILBERT" + "codePostal": "80310", + "codeCommune": "80082", + "libelleAcheminement": "BELLOY SUR SOMME", + "nomCommune": "BELLOY SUR SOMME" }, { - "codePostal": "98742", - "codeCommune": "98731", - "libelleAcheminement": "AAKAPA", - "nomCommune": "NUKU HIVA" + "codePostal": "81800", + "codeCommune": "81149", + "libelleAcheminement": "LOUPIAC", + "nomCommune": "LOUPIAC" }, { - "codePostal": "87320", - "codeCommune": "87028", - "libelleAcheminement": "VAL D OIRE ET GARTEMPE", - "nomCommune": "VAL D OIRE ET GARTEMPE" + "codePostal": "80370", + "codeCommune": "80085", + "libelleAcheminement": "BERNATRE", + "nomCommune": "BERNATRE" }, { - "codePostal": "77320", - "codeCommune": "77032", - "libelleAcheminement": "BETON BAZOCHES", - "nomCommune": "BETON BAZOCHES" + "codePostal": "81500", + "codeCommune": "81150", + "libelleAcheminement": "LUGAN", + "nomCommune": "LUGAN" }, { - "codePostal": "98711", - "codeCommune": "98733", - "libelleAcheminement": "PAEA", - "nomCommune": "PAEA" + "codePostal": "80370", + "codeCommune": "80086", + "libelleAcheminement": "BERNAVILLE", + "nomCommune": "BERNAVILLE" }, { - "codePostal": "87320", - "codeCommune": "87028", - "libelleAcheminement": "VAL D OIRE ET GARTEMPE", - "nomCommune": "VAL D OIRE ET GARTEMPE" + "codePostal": "81170", + "codeCommune": "81165", + "libelleAcheminement": "MILHARS", + "nomCommune": "MILHARS" }, { - "codePostal": "77970", - "codeCommune": "77033", - "libelleAcheminement": "BEZALLES", - "nomCommune": "BEZALLES" + "codePostal": "80850", + "codeCommune": "80093", + "libelleAcheminement": "BERTEAUCOURT LES DAMES", + "nomCommune": "BERTEAUCOURT LES DAMES" }, { - "codePostal": "98750", - "codeCommune": "98739", - "libelleAcheminement": "RAIRUA", - "nomCommune": "RAIVAVAE" + "codePostal": "81190", + "codeCommune": "81168", + "libelleAcheminement": "MIRANDOL BOURGNOUNAC", + "nomCommune": "MIRANDOL BOURGNOUNAC" }, { - "codePostal": "87150", - "codeCommune": "87034", - "libelleAcheminement": "CHAMPAGNAC LA RIVIERE", - "nomCommune": "CHAMPAGNAC LA RIVIERE" + "codePostal": "80130", + "codeCommune": "80096", + "libelleAcheminement": "BETHENCOURT SUR MER", + "nomCommune": "BETHENCOURT SUR MER" }, { - "codePostal": "77590", - "codeCommune": "77037", - "libelleAcheminement": "BOIS LE ROI", - "nomCommune": "BOIS LE ROI" + "codePostal": "81640", + "codeCommune": "81170", + "libelleAcheminement": "MONESTIES", + "nomCommune": "MONESTIES" }, { - "codePostal": "98750", - "codeCommune": "98739", - "libelleAcheminement": "ANATONU", - "nomCommune": "RAIVAVAE" + "codePostal": "80290", + "codeCommune": "80098", + "libelleAcheminement": "BETTEMBOS", + "nomCommune": "BETTEMBOS" }, { - "codePostal": "87230", - "codeCommune": "87036", - "libelleAcheminement": "CHAMPSAC", - "nomCommune": "CHAMPSAC" + "codePostal": "81500", + "codeCommune": "81173", + "libelleAcheminement": "MONTCABRIER", + "nomCommune": "MONTCABRIER" }, { - "codePostal": "77350", - "codeCommune": "77039", - "libelleAcheminement": "BOISSISE LA BERTRAND", - "nomCommune": "BOISSISE LA BERTRAND" + "codePostal": "80700", + "codeCommune": "80101", + "libelleAcheminement": "BEUVRAIGNES", + "nomCommune": "BEUVRAIGNES" }, { - "codePostal": "98778", - "codeCommune": "98740", - "libelleAcheminement": "TUHERAHERA", - "nomCommune": "RANGIROA" + "codePostal": "81440", + "codeCommune": "81181", + "libelleAcheminement": "MONTPINIER", + "nomCommune": "MONTPINIER" }, { - "codePostal": "87460", - "codeCommune": "87043", - "libelleAcheminement": "CHEISSOUX", - "nomCommune": "CHEISSOUX" + "codePostal": "80290", + "codeCommune": "80106", + "libelleAcheminement": "BLANGY SOUS POIX", + "nomCommune": "BLANGY SOUS POIX" }, { - "codePostal": "77310", - "codeCommune": "77040", - "libelleAcheminement": "BOISSISE LE ROI", - "nomCommune": "BOISSISE LE ROI" + "codePostal": "81360", + "codeCommune": "81182", + "libelleAcheminement": "MONTREDON LABESSONNIE", + "nomCommune": "MONTREDON LABESSONNIE" }, { - "codePostal": "98752", - "codeCommune": "98743", - "libelleAcheminement": "RIMATARA", - "nomCommune": "RIMATARA" + "codePostal": "80340", + "codeCommune": "80136", + "libelleAcheminement": "BRAY SUR SOMME", + "nomCommune": "BRAY SUR SOMME" }, { - "codePostal": "87600", - "codeCommune": "87044", - "libelleAcheminement": "CHERONNAC", - "nomCommune": "CHERONNAC" + "codePostal": "81120", + "codeCommune": "81183", + "libelleAcheminement": "MONT ROC", + "nomCommune": "MONT ROC" }, { - "codePostal": "77620", - "codeCommune": "77050", - "libelleAcheminement": "BRANSLES", - "nomCommune": "BRANSLES" + "codePostal": "80470", + "codeCommune": "80137", + "libelleAcheminement": "BREILLY", + "nomCommune": "BREILLY" }, { - "codePostal": "98795", - "codeCommune": "98743", - "libelleAcheminement": "MARIA ILOTS", - "nomCommune": "RIMATARA" + "codePostal": "81630", + "codeCommune": "81185", + "libelleAcheminement": "MONTVALEN", + "nomCommune": "MONTVALEN" }, { - "codePostal": "87500", - "codeCommune": "87049", - "libelleAcheminement": "COUSSAC BONNEVAL", - "nomCommune": "COUSSAC BONNEVAL" + "codePostal": "80400", + "codeCommune": "80139", + "libelleAcheminement": "BREUIL", + "nomCommune": "BREUIL" }, { - "codePostal": "77720", - "codeCommune": "77052", - "libelleAcheminement": "BREAU", - "nomCommune": "BREAU" + "codePostal": "81320", + "codeCommune": "81193", + "libelleAcheminement": "NAGES", + "nomCommune": "NAGES" }, { - "codePostal": "98733", - "codeCommune": "98745", - "libelleAcheminement": "TAHAA", - "nomCommune": "TAHAA" + "codePostal": "80600", + "codeCommune": "80140", + "libelleAcheminement": "BREVILLERS", + "nomCommune": "BREVILLERS" }, { - "codePostal": "87310", - "codeCommune": "87073", - "libelleAcheminement": "GORRE", - "nomCommune": "GORRE" + "codePostal": "81310", + "codeCommune": "81208", + "libelleAcheminement": "PEYROLE", + "nomCommune": "PEYROLE" }, { - "codePostal": "77170", - "codeCommune": "77053", - "libelleAcheminement": "BRIE COMTE ROBERT", - "nomCommune": "BRIE COMTE ROBERT" + "codePostal": "80800", + "codeCommune": "80159", + "libelleAcheminement": "CACHY", + "nomCommune": "CACHY" }, { - "codePostal": "98733", - "codeCommune": "98745", - "libelleAcheminement": "HIPU", - "nomCommune": "TAHAA" + "codePostal": "81700", + "codeCommune": "81210", + "libelleAcheminement": "POUDIS", + "nomCommune": "POUDIS" }, { - "codePostal": "87230", - "codeCommune": "87084", - "libelleAcheminement": "LAVIGNAC", - "nomCommune": "LAVIGNAC" + "codePostal": "80450", + "codeCommune": "80164", + "libelleAcheminement": "CAMON", + "nomCommune": "CAMON" }, { - "codePostal": "77760", - "codeCommune": "77056", - "libelleAcheminement": "BURCY", - "nomCommune": "BURCY" + "codePostal": "81700", + "codeCommune": "81219", + "libelleAcheminement": "PUYLAURENS", + "nomCommune": "PUYLAURENS" }, { - "codePostal": "98734", - "codeCommune": "98745", - "libelleAcheminement": "POUTORU", - "nomCommune": "TAHAA" + "codePostal": "80150", + "codeCommune": "80167", + "libelleAcheminement": "CANCHY", + "nomCommune": "CANCHY" }, { - "codePostal": "87100", - "codeCommune": "87085", - "libelleAcheminement": "LIMOGES", - "nomCommune": "LIMOGES" + "codePostal": "81120", + "codeCommune": "81233", + "libelleAcheminement": "TERRE DE BANCALIE", + "nomCommune": "TERRE DE BANCALIE" }, { - "codePostal": "77600", - "codeCommune": "77058", - "libelleAcheminement": "BUSSY ST GEORGES", - "nomCommune": "BUSSY ST GEORGES" + "codePostal": "80132", + "codeCommune": "80171", + "libelleAcheminement": "CAOURS", + "nomCommune": "CAOURS" }, { - "codePostal": "98722", - "codeCommune": "98747", - "libelleAcheminement": "TAUTIRA", - "nomCommune": "TAIARAPU EST" + "codePostal": "81120", + "codeCommune": "81233", + "libelleAcheminement": "TERRE DE BANCALIE", + "nomCommune": "TERRE DE BANCALIE" }, { - "codePostal": "87280", - "codeCommune": "87085", - "libelleAcheminement": "LIMOGES", - "nomCommune": "LIMOGES" + "codePostal": "80340", + "codeCommune": "80172", + "libelleAcheminement": "CAPPY", + "nomCommune": "CAPPY" }, { - "codePostal": "77600", - "codeCommune": "77059", - "libelleAcheminement": "BUSSY ST MARTIN", - "nomCommune": "BUSSY ST MARTIN" + "codePostal": "81120", + "codeCommune": "81233", + "libelleAcheminement": "TERRE DE BANCALIE", + "nomCommune": "TERRE DE BANCALIE" }, { - "codePostal": "98735", - "codeCommune": "98750", - "libelleAcheminement": "PUOHINE", - "nomCommune": "TAPUTAPUATEA" + "codePostal": "80410", + "codeCommune": "80182", + "libelleAcheminement": "CAYEUX SUR MER", + "nomCommune": "CAYEUX SUR MER" }, { - "codePostal": "87360", - "codeCommune": "87087", - "libelleAcheminement": "LUSSAC LES EGLISES", - "nomCommune": "LUSSAC LES EGLISES" + "codePostal": "81500", + "codeCommune": "81236", + "libelleAcheminement": "ST AGNAN", + "nomCommune": "ST AGNAN" }, { - "codePostal": "77600", - "codeCommune": "77059", - "libelleAcheminement": "BUSSY ST MARTIN", - "nomCommune": "BUSSY ST MARTIN" + "codePostal": "80700", + "codeCommune": "80185", + "libelleAcheminement": "CHAMPIEN", + "nomCommune": "CHAMPIEN" }, { - "codePostal": "98783", - "codeCommune": "98751", - "libelleAcheminement": "TUMUKURU", - "nomCommune": "TATAKOTO" + "codePostal": "81400", + "codeCommune": "81244", + "libelleAcheminement": "ST BENOIT DE CARMAUX", + "nomCommune": "ST BENOIT DE CARMAUX" }, { - "codePostal": "87440", - "codeCommune": "87092", - "libelleAcheminement": "MARVAL", - "nomCommune": "MARVAL" + "codePostal": "80250", + "codeCommune": "80188", + "libelleAcheminement": "CHAUSSOY EPAGNY", + "nomCommune": "CHAUSSOY EPAGNY" }, { - "codePostal": "77460", - "codeCommune": "77071", - "libelleAcheminement": "CHAINTREAUX", - "nomCommune": "CHAINTREAUX" + "codePostal": "81700", + "codeCommune": "81251", + "libelleAcheminement": "ST GERMAIN DES PRES", + "nomCommune": "ST GERMAIN DES PRES" }, { - "codePostal": "98727", - "codeCommune": "98752", - "libelleAcheminement": "PAPEARI", - "nomCommune": "TEVA I UTA" + "codePostal": "80700", + "codeCommune": "80189", + "libelleAcheminement": "LA CHAVATTE", + "nomCommune": "LA CHAVATTE" }, { - "codePostal": "87130", - "codeCommune": "87093", - "libelleAcheminement": "MASLEON", - "nomCommune": "MASLEON" + "codePostal": "81340", + "codeCommune": "81264", + "libelleAcheminement": "ST MICHEL LABADIE", + "nomCommune": "ST MICHEL LABADIE" }, { - "codePostal": "77600", - "codeCommune": "77085", - "libelleAcheminement": "CHANTELOUP EN BRIE", - "nomCommune": "CHANTELOUP EN BRIE" + "codePostal": "80170", + "codeCommune": "80191", + "libelleAcheminement": "CHILLY", + "nomCommune": "CHILLY" }, { - "codePostal": "98754", - "codeCommune": "98753", - "libelleAcheminement": "MATAURA", - "nomCommune": "TUBUAI" + "codePostal": "81220", + "codeCommune": "81266", + "libelleAcheminement": "ST PAUL CAP DE JOUX", + "nomCommune": "ST PAUL CAP DE JOUX" }, { - "codePostal": "87330", - "codeCommune": "87097", - "libelleAcheminement": "VAL D ISSOIRE", - "nomCommune": "VAL D ISSOIRE" + "codePostal": "80800", + "codeCommune": "80192", + "libelleAcheminement": "CHIPILLY", + "nomCommune": "CHIPILLY" }, { - "codePostal": "77590", - "codeCommune": "77096", - "libelleAcheminement": "CHARTRETTES", - "nomCommune": "CHARTRETTES" + "codePostal": "81530", + "codeCommune": "81268", + "libelleAcheminement": "ST SALVI DE CARCAVES", + "nomCommune": "ST SALVI DE CARCAVES" }, { - "codePostal": "98735", - "codeCommune": "98754", - "libelleAcheminement": "TUMARAA", - "nomCommune": "TUMARAA" + "codePostal": "80250", + "codeCommune": "80193", + "libelleAcheminement": "CHIRMONT", + "nomCommune": "CHIRMONT" }, { - "codePostal": "87330", - "codeCommune": "87100", - "libelleAcheminement": "MONTROL SENARD", - "nomCommune": "MONTROL SENARD" + "codePostal": "81710", + "codeCommune": "81273", + "libelleAcheminement": "SAIX", + "nomCommune": "SAIX" }, { - "codePostal": "77320", - "codeCommune": "77097", - "libelleAcheminement": "CHARTRONGES", - "nomCommune": "CHARTRONGES" + "codePostal": "80490", + "codeCommune": "80196", + "libelleAcheminement": "CITERNE", + "nomCommune": "CITERNE" }, { - "codePostal": "98735", - "codeCommune": "98754", - "libelleAcheminement": "FETUNA", - "nomCommune": "TUMARAA" + "codePostal": "81990", + "codeCommune": "81274", + "libelleAcheminement": "SALIES", + "nomCommune": "SALIES" }, { - "codePostal": "87520", - "codeCommune": "87110", - "libelleAcheminement": "ORADOUR SUR GLANE", - "nomCommune": "ORADOUR SUR GLANE" + "codePostal": "80160", + "codeCommune": "80210", + "libelleAcheminement": "CONTRE", + "nomCommune": "CONTRE" }, { - "codePostal": "77500", - "codeCommune": "77108", - "libelleAcheminement": "CHELLES", - "nomCommune": "CHELLES" + "codePostal": "81640", + "codeCommune": "81280", + "libelleAcheminement": "LE SEGUR", + "nomCommune": "LE SEGUR" }, { - "codePostal": "98745", - "codeCommune": "98757", - "libelleAcheminement": "HAKATAO", - "nomCommune": "UA POU" + "codePostal": "80160", + "codeCommune": "80219", + "libelleAcheminement": "COURCELLES SOUS THOIX", + "nomCommune": "COURCELLES SOUS THOIX" }, { - "codePostal": "87150", - "codeCommune": "87111", - "libelleAcheminement": "ORADOUR SUR VAYRES", - "nomCommune": "ORADOUR SUR VAYRES" + "codePostal": "81530", + "codeCommune": "81282", + "libelleAcheminement": "SENAUX", + "nomCommune": "SENAUX" }, { - "codePostal": "77700", - "codeCommune": "77111", - "libelleAcheminement": "CHESSY", - "nomCommune": "CHESSY" + "codePostal": "80370", + "codeCommune": "80221", + "libelleAcheminement": "CRAMONT", + "nomCommune": "CRAMONT" }, { - "codePostal": "98835", - "codeCommune": "98805", - "libelleAcheminement": "DUMBEA", - "nomCommune": "DUMBEA" + "codePostal": "81220", + "codeCommune": "81286", + "libelleAcheminement": "SERVIES", + "nomCommune": "SERVIES" }, { - "codePostal": "87230", - "codeCommune": "87112", - "libelleAcheminement": "PAGEAS", - "nomCommune": "PAGEAS" + "codePostal": "80480", + "codeCommune": "80225", + "libelleAcheminement": "CREUSE", + "nomCommune": "CREUSE" }, { - "codePostal": "77760", - "codeCommune": "77112", - "libelleAcheminement": "CHEVRAINVILLIERS", - "nomCommune": "CHEVRAINVILLIERS" + "codePostal": "81170", + "codeCommune": "81290", + "libelleAcheminement": "SOUEL", + "nomCommune": "SOUEL" }, { - "codePostal": "98838", - "codeCommune": "98808", - "libelleAcheminement": "PORO", - "nomCommune": "HOUAILOU" + "codePostal": "80400", + "codeCommune": "80226", + "libelleAcheminement": "CROIX MOLIGNEAUX", + "nomCommune": "CROIX MOLIGNEAUX" }, { - "codePostal": "87410", - "codeCommune": "87113", - "libelleAcheminement": "LE PALAIS SUR VIENNE", - "nomCommune": "LE PALAIS SUR VIENNE" + "codePostal": "81130", + "codeCommune": "81291", + "libelleAcheminement": "TAIX", + "nomCommune": "TAIX" }, { - "codePostal": "77320", - "codeCommune": "77113", - "libelleAcheminement": "CHEVRU", - "nomCommune": "CHEVRU" + "codePostal": "80190", + "codeCommune": "80230", + "libelleAcheminement": "CURCHY", + "nomCommune": "CURCHY" }, { - "codePostal": "98884", - "codeCommune": "98814", - "libelleAcheminement": "CHEPENEHE", - "nomCommune": "LIFOU" + "codePostal": "81600", + "codeCommune": "81294", + "libelleAcheminement": "TECOU", + "nomCommune": "TECOU" }, { - "codePostal": "87440", - "codeCommune": "87115", - "libelleAcheminement": "PENSOL", - "nomCommune": "PENSOL" + "codePostal": "80700", + "codeCommune": "80232", + "libelleAcheminement": "DAMERY", + "nomCommune": "DAMERY" }, { - "codePostal": "77440", - "codeCommune": "77120", - "libelleAcheminement": "COCHEREL", - "nomCommune": "COCHEREL" + "codePostal": "81150", + "codeCommune": "81297", + "libelleAcheminement": "TERSSAC", + "nomCommune": "TERSSAC" }, { - "codePostal": "98875", - "codeCommune": "98817", - "libelleAcheminement": "PLUM", - "nomCommune": "LE MONT DORE" + "codePostal": "80570", + "codeCommune": "80235", + "libelleAcheminement": "DARGNIES", + "nomCommune": "DARGNIES" }, { - "codePostal": "87510", - "codeCommune": "87118", - "libelleAcheminement": "PEYRILHAC", - "nomCommune": "PEYRILHAC" + "codePostal": "81350", + "codeCommune": "81306", + "libelleAcheminement": "VALDERIES", + "nomCommune": "VALDERIES" }, { - "codePostal": "77090", - "codeCommune": "77121", - "libelleAcheminement": "COLLEGIEN", - "nomCommune": "COLLEGIEN" + "codePostal": "80300", + "codeCommune": "80238", + "libelleAcheminement": "DERNANCOURT", + "nomCommune": "DERNANCOURT" }, { - "codePostal": "98821", - "codeCommune": "98819", - "libelleAcheminement": "OUEGOA", - "nomCommune": "OUEGOA" + "codePostal": "82350", + "codeCommune": "82002", + "libelleAcheminement": "ALBIAS", + "nomCommune": "ALBIAS" }, { - "codePostal": "87640", - "codeCommune": "87122", - "libelleAcheminement": "RAZES", - "nomCommune": "RAZES" + "codePostal": "80370", + "codeCommune": "80243", + "libelleAcheminement": "DOMESMONT", + "nomCommune": "DOMESMONT" }, { - "codePostal": "77380", - "codeCommune": "77122", - "libelleAcheminement": "COMBS LA VILLE", - "nomCommune": "COMBS LA VILLE" + "codePostal": "82210", + "codeCommune": "82003", + "libelleAcheminement": "ANGEVILLE", + "nomCommune": "ANGEVILLE" }, { - "codePostal": "98890", - "codeCommune": "98821", - "libelleAcheminement": "PAITA", - "nomCommune": "PAITA" + "codePostal": "80120", + "codeCommune": "80244", + "libelleAcheminement": "DOMINOIS", + "nomCommune": "DOMINOIS" }, { - "codePostal": "87800", - "codeCommune": "87124", - "libelleAcheminement": "RILHAC LASTOURS", - "nomCommune": "RILHAC LASTOURS" + "codePostal": "82340", + "codeCommune": "82008", + "libelleAcheminement": "AUVILLAR", + "nomCommune": "AUVILLAR" }, { - "codePostal": "77840", - "codeCommune": "77129", - "libelleAcheminement": "COULOMBS EN VALOIS", - "nomCommune": "COULOMBS EN VALOIS" + "codePostal": "80150", + "codeCommune": "80248", + "libelleAcheminement": "DOMPIERRE SUR AUTHIE", + "nomCommune": "DOMPIERRE SUR AUTHIE" }, { - "codePostal": "98827", - "codeCommune": "98827", - "libelleAcheminement": "POYA", - "nomCommune": "POYA" + "codePostal": "82340", + "codeCommune": "82010", + "libelleAcheminement": "BARDIGUES", + "nomCommune": "BARDIGUES" }, { - "codePostal": "87140", - "codeCommune": "87128", - "libelleAcheminement": "ST PARDOUX LE LAC", - "nomCommune": "ST PARDOUX LE LAC" + "codePostal": "80620", + "codeCommune": "80249", + "libelleAcheminement": "DOMQUEUR", + "nomCommune": "DOMQUEUR" }, { - "codePostal": "77120", - "codeCommune": "77131", - "libelleAcheminement": "COULOMMIERS", - "nomCommune": "COULOMMIERS" + "codePostal": "82500", + "codeCommune": "82013", + "libelleAcheminement": "BEAUMONT DE LOMAGNE", + "nomCommune": "BEAUMONT DE LOMAGNE" }, { - "codePostal": "98877", - "codeCommune": "98827", - "libelleAcheminement": "NEPOUI", - "nomCommune": "POYA" + "codePostal": "80600", + "codeCommune": "80253", + "libelleAcheminement": "DOULLENS", + "nomCommune": "DOULLENS" }, { - "codePostal": "87120", - "codeCommune": "87134", - "libelleAcheminement": "STE ANNE ST PRIEST", - "nomCommune": "STE ANNE ST PRIEST" + "codePostal": "82500", + "codeCommune": "82015", + "libelleAcheminement": "BELBEZE EN LOMAGNE", + "nomCommune": "BELBEZE EN LOMAGNE" }, { - "codePostal": "77700", - "codeCommune": "77132", - "libelleAcheminement": "COUPVRAY", - "nomCommune": "COUPVRAY" + "codePostal": "80470", + "codeCommune": "80256", + "libelleAcheminement": "DREUIL LES AMIENS", + "nomCommune": "DREUIL LES AMIENS" }, { - "codePostal": "87310", - "codeCommune": "87135", - "libelleAcheminement": "ST AUVENT", - "nomCommune": "ST AUVENT" + "codePostal": "82700", + "codeCommune": "82023", + "libelleAcheminement": "BOURRET", + "nomCommune": "BOURRET" }, { - "codePostal": "77560", - "codeCommune": "77137", - "libelleAcheminement": "COURTACON", - "nomCommune": "COURTACON" + "codePostal": "80240", + "codeCommune": "80258", + "libelleAcheminement": "DRIENCOURT", + "nomCommune": "DRIENCOURT" }, { - "codePostal": "87260", - "codeCommune": "87144", - "libelleAcheminement": "ST GENEST SUR ROSELLE", - "nomCommune": "ST GENEST SUR ROSELLE" + "codePostal": "82710", + "codeCommune": "82025", + "libelleAcheminement": "BRESSOLS", + "nomCommune": "BRESSOLS" }, { - "codePostal": "77181", - "codeCommune": "77139", - "libelleAcheminement": "COURTRY", - "nomCommune": "COURTRY" + "codePostal": "80640", + "codeCommune": "80259", + "libelleAcheminement": "DROMESNIL", + "nomCommune": "DROMESNIL" }, { - "codePostal": "87160", - "codeCommune": "87145", - "libelleAcheminement": "ST GEORGES LES LANDES", - "nomCommune": "ST GEORGES LES LANDES" + "codePostal": "82170", + "codeCommune": "82028", + "libelleAcheminement": "CANALS", + "nomCommune": "CANALS" }, { - "codePostal": "77610", - "codeCommune": "77144", - "libelleAcheminement": "CREVECOEUR EN BRIE", - "nomCommune": "CREVECOEUR EN BRIE" + "codePostal": "80580", + "codeCommune": "80262", + "libelleAcheminement": "EAUCOURT SUR SOMME", + "nomCommune": "EAUCOURT SUR SOMME" }, { - "codePostal": "87130", - "codeCommune": "87147", - "libelleAcheminement": "ST GILLES LES FORETS", - "nomCommune": "ST GILLES LES FORETS" + "codePostal": "82140", + "codeCommune": "82041", + "libelleAcheminement": "CAZALS", + "nomCommune": "CAZALS" }, { - "codePostal": "77320", - "codeCommune": "77151", - "libelleAcheminement": "DAGNY", - "nomCommune": "DAGNY" + "codePostal": "80570", + "codeCommune": "80265", + "libelleAcheminement": "EMBREVILLE", + "nomCommune": "EMBREVILLE" }, { - "codePostal": "87190", - "codeCommune": "87149", - "libelleAcheminement": "ST HILAIRE LA TREILLE", - "nomCommune": "ST HILAIRE LA TREILLE" + "codePostal": "82600", + "codeCommune": "82043", + "libelleAcheminement": "COMBEROUGER", + "nomCommune": "COMBEROUGER" }, { - "codePostal": "77940", - "codeCommune": "77158", - "libelleAcheminement": "DIANT", - "nomCommune": "DIANT" + "codePostal": "80200", + "codeCommune": "80267", + "libelleAcheminement": "ENNEMAIN", + "nomCommune": "ENNEMAIN" }, { - "codePostal": "87510", - "codeCommune": "87152", - "libelleAcheminement": "ST JOUVENT", - "nomCommune": "ST JOUVENT" + "codePostal": "82500", + "codeCommune": "82047", + "libelleAcheminement": "CUMONT", + "nomCommune": "CUMONT" }, { - "codePostal": "77130", - "codeCommune": "77161", - "libelleAcheminement": "DORMELLES", - "nomCommune": "DORMELLES" + "codePostal": "80580", + "codeCommune": "80268", + "libelleAcheminement": "EPAGNE EPAGNETTE", + "nomCommune": "EPAGNE EPAGNETTE" }, { - "codePostal": "87200", - "codeCommune": "87154", - "libelleAcheminement": "ST JUNIEN", - "nomCommune": "ST JUNIEN" + "codePostal": "82160", + "codeCommune": "82056", + "libelleAcheminement": "ESPINAS", + "nomCommune": "ESPINAS" }, { - "codePostal": "77510", - "codeCommune": "77162", - "libelleAcheminement": "DOUE", - "nomCommune": "DOUE" + "codePostal": "80190", + "codeCommune": "80272", + "libelleAcheminement": "EPENANCOURT", + "nomCommune": "EPENANCOURT" }, { - "codePostal": "87400", - "codeCommune": "87161", - "libelleAcheminement": "ST LEONARD DE NOBLAT", - "nomCommune": "ST LEONARD DE NOBLAT" + "codePostal": "82500", + "codeCommune": "82068", + "libelleAcheminement": "GIMAT", + "nomCommune": "GIMAT" }, { - "codePostal": "77184", - "codeCommune": "77169", - "libelleAcheminement": "EMERAINVILLE", - "nomCommune": "EMERAINVILLE" + "codePostal": "80210", + "codeCommune": "80280", + "libelleAcheminement": "ERCOURT", + "nomCommune": "ERCOURT" }, { - "codePostal": "87360", - "codeCommune": "87165", - "libelleAcheminement": "ST MARTIN LE MAULT", - "nomCommune": "ST MARTIN LE MAULT" + "codePostal": "82120", + "codeCommune": "82074", + "libelleAcheminement": "GRAMONT", + "nomCommune": "GRAMONT" }, { - "codePostal": "77167", - "codeCommune": "77178", - "libelleAcheminement": "FAY LES NEMOURS", - "nomCommune": "FAY LES NEMOURS" + "codePostal": "80500", + "codeCommune": "80293", + "libelleAcheminement": "ETELFAY", + "nomCommune": "ETELFAY" }, { - "codePostal": "87400", - "codeCommune": "87167", - "libelleAcheminement": "ST MARTIN TERRESSUS", - "nomCommune": "ST MARTIN TERRESSUS" + "codePostal": "82130", + "codeCommune": "82076", + "libelleAcheminement": "L HONOR DE COS", + "nomCommune": "L HONOR DE COS" }, { - "codePostal": "77610", - "codeCommune": "77192", - "libelleAcheminement": "FONTENAY TRESIGNY", - "nomCommune": "FONTENAY TRESIGNY" + "codePostal": "80340", + "codeCommune": "80295", + "libelleAcheminement": "ETINEHEM MERICOURT", + "nomCommune": "ETINEHEM MERICOURT" }, { - "codePostal": "87130", - "codeCommune": "87170", - "libelleAcheminement": "ST MEARD", - "nomCommune": "ST MEARD" + "codePostal": "82190", + "codeCommune": "82084", + "libelleAcheminement": "LACOUR", + "nomCommune": "LACOUR" }, { - "codePostal": "77130", - "codeCommune": "77194", - "libelleAcheminement": "FORGES", - "nomCommune": "FORGES" + "codePostal": "80360", + "codeCommune": "80312", + "libelleAcheminement": "FINS", + "nomCommune": "FINS" }, { - "codePostal": "87300", - "codeCommune": "87172", - "libelleAcheminement": "ST OUEN SUR GARTEMPE", - "nomCommune": "ST OUEN SUR GARTEMPE" + "codePostal": "82130", + "codeCommune": "82090", + "libelleAcheminement": "LAMOTHE CAPDEVILLE", + "nomCommune": "LAMOTHE CAPDEVILLE" }, { - "codePostal": "77890", - "codeCommune": "77200", - "libelleAcheminement": "GARENTREVILLE", - "nomCommune": "GARENTREVILLE" + "codePostal": "80420", + "codeCommune": "80318", + "libelleAcheminement": "FLIXECOURT", + "nomCommune": "FLIXECOURT" }, { - "codePostal": "87240", - "codeCommune": "87183", - "libelleAcheminement": "ST SYLVESTRE", - "nomCommune": "ST SYLVESTRE" + "codePostal": "82120", + "codeCommune": "82104", + "libelleAcheminement": "MARSAC", + "nomCommune": "MARSAC" }, { - "codePostal": "77165", - "codeCommune": "77205", - "libelleAcheminement": "GESVRES LE CHAPITRE", - "nomCommune": "GESVRES LE CHAPITRE" + "codePostal": "80140", + "codeCommune": "80324", + "libelleAcheminement": "FONTAINE LE SEC", + "nomCommune": "FONTAINE LE SEC" }, { - "codePostal": "87400", - "codeCommune": "87190", - "libelleAcheminement": "SAUVIAT SUR VIGE", - "nomCommune": "SAUVIAT SUR VIGE" + "codePostal": "82290", + "codeCommune": "82108", + "libelleAcheminement": "MEAUZAC", + "nomCommune": "MEAUZAC" }, { - "codePostal": "77890", - "codeCommune": "77207", - "libelleAcheminement": "GIRONVILLE", - "nomCommune": "GIRONVILLE" + "codePostal": "80150", + "codeCommune": "80327", + "libelleAcheminement": "FONTAINE SUR MAYE", + "nomCommune": "FONTAINE SUR MAYE" }, { - "codePostal": "87110", - "codeCommune": "87192", - "libelleAcheminement": "SOLIGNAC", - "nomCommune": "SOLIGNAC" + "codePostal": "82440", + "codeCommune": "82110", + "libelleAcheminement": "MIRABEL", + "nomCommune": "MIRABEL" }, { - "codePostal": "77400", - "codeCommune": "77209", - "libelleAcheminement": "GOUVERNES", - "nomCommune": "GOUVERNES" + "codePostal": "80160", + "codeCommune": "80334", + "libelleAcheminement": "FOSSEMANANT", + "nomCommune": "FOSSEMANANT" }, { - "codePostal": "87130", - "codeCommune": "87193", - "libelleAcheminement": "SURDOUX", - "nomCommune": "SURDOUX" + "codePostal": "82170", + "codeCommune": "82114", + "libelleAcheminement": "MONBEQUI", + "nomCommune": "MONBEQUI" }, { - "codePostal": "77880", - "codeCommune": "77216", - "libelleAcheminement": "GREZ SUR LOING", - "nomCommune": "GREZ SUR LOING" + "codePostal": "80170", + "codeCommune": "80339", + "libelleAcheminement": "FOUQUESCOURT", + "nomCommune": "FOUQUESCOURT" }, { - "codePostal": "87110", - "codeCommune": "87205", - "libelleAcheminement": "LE VIGEN", - "nomCommune": "LE VIGEN" + "codePostal": "82150", + "codeCommune": "82117", + "libelleAcheminement": "MONTAIGU DE QUERCY", + "nomCommune": "MONTAIGU DE QUERCY" }, { - "codePostal": "77760", - "codeCommune": "77220", - "libelleAcheminement": "GUERCHEVILLE", - "nomCommune": "GUERCHEVILLE" + "codePostal": "80290", + "codeCommune": "80340", + "libelleAcheminement": "FOURCIGNY", + "nomCommune": "FOURCIGNY" }, { - "codePostal": "88500", - "codeCommune": "88002", - "libelleAcheminement": "AHEVILLE", - "nomCommune": "AHEVILLE" + "codePostal": "82700", + "codeCommune": "82123", + "libelleAcheminement": "MONTBARTIER", + "nomCommune": "MONTBARTIER" }, { - "codePostal": "77600", - "codeCommune": "77221", - "libelleAcheminement": "GUERMANTES", - "nomCommune": "GUERMANTES" + "codePostal": "80310", + "codeCommune": "80341", + "libelleAcheminement": "FOURDRINOY", + "nomCommune": "FOURDRINOY" }, { - "codePostal": "88140", - "codeCommune": "88003", - "libelleAcheminement": "AINGEVILLE", - "nomCommune": "AINGEVILLE" + "codePostal": "82290", + "codeCommune": "82124", + "libelleAcheminement": "MONTBETON", + "nomCommune": "MONTBETON" }, { - "codePostal": "77390", - "codeCommune": "77222", - "libelleAcheminement": "GUIGNES", - "nomCommune": "GUIGNES" + "codePostal": "80700", + "codeCommune": "80359", + "libelleAcheminement": "FRESNOY LES ROYE", + "nomCommune": "FRESNOY LES ROYE" }, { - "codePostal": "88320", - "codeCommune": "88004", - "libelleAcheminement": "AINVELLE", - "nomCommune": "AINVELLE" + "codePostal": "82200", + "codeCommune": "82127", + "libelleAcheminement": "MONTESQUIEU", + "nomCommune": "MONTESQUIEU" }, { - "codePostal": "77515", - "codeCommune": "77224", - "libelleAcheminement": "HAUTEFEUILLE", - "nomCommune": "HAUTEFEUILLE" + "codePostal": "80140", + "codeCommune": "80361", + "libelleAcheminement": "FRETTECUISSE", + "nomCommune": "FRETTECUISSE" }, { - "codePostal": "88500", - "codeCommune": "88006", - "libelleAcheminement": "AMBACOURT", - "nomCommune": "AMBACOURT" + "codePostal": "82270", + "codeCommune": "82131", + "libelleAcheminement": "MONTPEZAT DE QUERCY", + "nomCommune": "MONTPEZAT DE QUERCY" }, { - "codePostal": "77580", - "codeCommune": "77225", - "libelleAcheminement": "LA HAUTE MAISON", - "nomCommune": "LA HAUTE MAISON" + "codePostal": "80290", + "codeCommune": "80365", + "libelleAcheminement": "FRICAMPS", + "nomCommune": "FRICAMPS" }, { - "codePostal": "88410", - "codeCommune": "88007", - "libelleAcheminement": "AMEUVELLE", - "nomCommune": "AMEUVELLE" + "codePostal": "82370", + "codeCommune": "82135", + "libelleAcheminement": "NOHIC", + "nomCommune": "NOHIC" }, { - "codePostal": "77440", - "codeCommune": "77231", - "libelleAcheminement": "ISLES LES MELDEUSES", - "nomCommune": "ISLES LES MELDEUSES" + "codePostal": "80290", + "codeCommune": "80375", + "libelleAcheminement": "GAUVILLE", + "nomCommune": "GAUVILLE" }, { - "codePostal": "88170", - "codeCommune": "88010", - "libelleAcheminement": "AOUZE", - "nomCommune": "AOUZE" + "codePostal": "82160", + "codeCommune": "82137", + "libelleAcheminement": "PARISOT", + "nomCommune": "PARISOT" }, { - "codePostal": "77320", - "codeCommune": "77247", - "libelleAcheminement": "LESCHEROLLES", - "nomCommune": "LESCHEROLLES" + "codePostal": "80360", + "codeCommune": "80378", + "libelleAcheminement": "GINCHY", + "nomCommune": "GINCHY" }, { - "codePostal": "88300", - "codeCommune": "88017", - "libelleAcheminement": "AULNOIS", - "nomCommune": "AULNOIS" + "codePostal": "82130", + "codeCommune": "82140", + "libelleAcheminement": "PIQUECOS", + "nomCommune": "PIQUECOS" }, { - "codePostal": "77150", - "codeCommune": "77249", - "libelleAcheminement": "LESIGNY", - "nomCommune": "LESIGNY" + "codePostal": "80300", + "codeCommune": "80384", + "libelleAcheminement": "GRANDCOURT", + "nomCommune": "GRANDCOURT" }, { - "codePostal": "88140", - "codeCommune": "88022", - "libelleAcheminement": "AUZAINVILLIERS", - "nomCommune": "AUZAINVILLIERS" + "codePostal": "82160", + "codeCommune": "82147", + "libelleAcheminement": "PUYLAGARDE", + "nomCommune": "PUYLAGARDE" }, { - "codePostal": "77320", - "codeCommune": "77250", - "libelleAcheminement": "LEUDON EN BRIE", - "nomCommune": "LEUDON EN BRIE" + "codePostal": "80600", + "codeCommune": "80392", + "libelleAcheminement": "GROUCHES LUCHUEL", + "nomCommune": "GROUCHES LUCHUEL" }, { - "codePostal": "88600", - "codeCommune": "88026", - "libelleAcheminement": "AYDOILLES", - "nomCommune": "AYDOILLES" + "codePostal": "82370", + "codeCommune": "82150", + "libelleAcheminement": "REYNIES", + "nomCommune": "REYNIES" }, { - "codePostal": "77000", - "codeCommune": "77255", - "libelleAcheminement": "LIVRY SUR SEINE", - "nomCommune": "LIVRY SUR SEINE" + "codePostal": "80360", + "codeCommune": "80401", + "libelleAcheminement": "GUILLEMONT", + "nomCommune": "GUILLEMONT" }, { - "codePostal": "88240", - "codeCommune": "88029", - "libelleAcheminement": "LA VOGE LES BAINS", - "nomCommune": "LA VOGE LES BAINS" + "codePostal": "82100", + "codeCommune": "82152", + "libelleAcheminement": "ST AIGNAN", + "nomCommune": "ST AIGNAN" }, { - "codePostal": "77650", - "codeCommune": "77256", - "libelleAcheminement": "LIZINES", - "nomCommune": "LIZINES" + "codePostal": "80290", + "codeCommune": "80402", + "libelleAcheminement": "GUIZANCOURT", + "nomCommune": "GUIZANCOURT" }, { - "codePostal": "88240", - "codeCommune": "88029", - "libelleAcheminement": "LA VOGE LES BAINS", - "nomCommune": "LA VOGE LES BAINS" + "codePostal": "82210", + "codeCommune": "82156", + "libelleAcheminement": "ST ARROUMEX", + "nomCommune": "ST ARROUMEX" }, { - "codePostal": "77650", - "codeCommune": "77260", - "libelleAcheminement": "LONGUEVILLE", - "nomCommune": "LONGUEVILLE" + "codePostal": "80490", + "codeCommune": "80406", + "libelleAcheminement": "HALLENCOURT", + "nomCommune": "HALLENCOURT" }, { - "codePostal": "88170", - "codeCommune": "88031", - "libelleAcheminement": "BALLEVILLE", - "nomCommune": "BALLEVILLE" + "codePostal": "82300", + "codeCommune": "82159", + "libelleAcheminement": "ST CIRQ", + "nomCommune": "ST CIRQ" }, { - "codePostal": "77520", - "codeCommune": "77263", - "libelleAcheminement": "LUISETAINES", - "nomCommune": "LUISETAINES" + "codePostal": "80134", + "codeCommune": "80415", + "libelleAcheminement": "HANGEST EN SANTERRE", + "nomCommune": "HANGEST EN SANTERRE" }, { - "codePostal": "88130", - "codeCommune": "88038", - "libelleAcheminement": "BATTEXEY", - "nomCommune": "BATTEXEY" + "codePostal": "82400", + "codeCommune": "82160", + "libelleAcheminement": "ST CLAIR", + "nomCommune": "ST CLAIR" }, { - "codePostal": "77540", - "codeCommune": "77264", - "libelleAcheminement": "LUMIGNY NESLES ORMEAUX", - "nomCommune": "LUMIGNY NESLES ORMEAUX" + "codePostal": "80360", + "codeCommune": "80418", + "libelleAcheminement": "HARDECOURT AUX BOIS", + "nomCommune": "HARDECOURT AUX BOIS" }, { - "codePostal": "88500", - "codeCommune": "88039", - "libelleAcheminement": "BAUDRICOURT", - "nomCommune": "BAUDRICOURT" + "codePostal": "82340", + "codeCommune": "82165", + "libelleAcheminement": "ST LOUP", + "nomCommune": "ST LOUP" }, { - "codePostal": "77133", - "codeCommune": "77266", - "libelleAcheminement": "MACHAULT", - "nomCommune": "MACHAULT" + "codePostal": "80700", + "codeCommune": "80421", + "libelleAcheminement": "HATTENCOURT", + "nomCommune": "HATTENCOURT" }, { - "codePostal": "88270", - "codeCommune": "88047", - "libelleAcheminement": "BEGNECOURT", - "nomCommune": "BEGNECOURT" + "codePostal": "82700", + "codeCommune": "82171", + "libelleAcheminement": "ST PORQUIER", + "nomCommune": "ST PORQUIER" }, { - "codePostal": "77580", - "codeCommune": "77270", - "libelleAcheminement": "MAISONCELLES EN BRIE", - "nomCommune": "MAISONCELLES EN BRIE" + "codePostal": "80680", + "codeCommune": "80424", + "libelleAcheminement": "HEBECOURT", + "nomCommune": "HEBECOURT" }, { - "codePostal": "88370", - "codeCommune": "88048", - "libelleAcheminement": "BELLEFONTAINE", - "nomCommune": "BELLEFONTAINE" + "codePostal": "82160", + "codeCommune": "82172", + "libelleAcheminement": "ST PROJET", + "nomCommune": "ST PROJET" }, { - "codePostal": "77120", - "codeCommune": "77281", - "libelleAcheminement": "MAUPERTHUIS", - "nomCommune": "MAUPERTHUIS" + "codePostal": "80340", + "codeCommune": "80432", + "libelleAcheminement": "HERLEVILLE", + "nomCommune": "HERLEVILLE" }, { - "codePostal": "88430", - "codeCommune": "88059", - "libelleAcheminement": "BIFFONTAINE", - "nomCommune": "BIFFONTAINE" + "codePostal": "82600", + "codeCommune": "82173", + "libelleAcheminement": "ST SARDOS", + "nomCommune": "ST SARDOS" }, { - "codePostal": "77990", - "codeCommune": "77291", - "libelleAcheminement": "LE MESNIL AMELOT", - "nomCommune": "LE MESNIL AMELOT" + "codePostal": "80240", + "codeCommune": "80435", + "libelleAcheminement": "HESBECOURT", + "nomCommune": "HESBECOURT" }, { - "codePostal": "88500", - "codeCommune": "88060", - "libelleAcheminement": "BLEMEREY", - "nomCommune": "BLEMEREY" + "codePostal": "82340", + "codeCommune": "82181", + "libelleAcheminement": "SISTELS", + "nomCommune": "SISTELS" }, { - "codePostal": "77144", - "codeCommune": "77307", - "libelleAcheminement": "MONTEVRAIN", - "nomCommune": "MONTEVRAIN" + "codePostal": "80250", + "codeCommune": "80452", + "libelleAcheminement": "JUMEL", + "nomCommune": "JUMEL" }, { - "codePostal": "88410", - "codeCommune": "88061", - "libelleAcheminement": "BLEURVILLE", - "nomCommune": "BLEURVILLE" + "codePostal": "82600", + "codeCommune": "82190", + "libelleAcheminement": "VERDUN SUR GARONNE", + "nomCommune": "VERDUN SUR GARONNE" }, { - "codePostal": "77250", - "codeCommune": "77316", - "libelleAcheminement": "MORET LOING ET ORVANNE", - "nomCommune": "MORET LOING ET ORVANNE" + "codePostal": "80230", + "codeCommune": "80464", + "libelleAcheminement": "LANCHERES", + "nomCommune": "LANCHERES" }, { - "codePostal": "88270", - "codeCommune": "88063", - "libelleAcheminement": "BOCQUEGNEY", - "nomCommune": "BOCQUEGNEY" + "codePostal": "83840", + "codeCommune": "83010", + "libelleAcheminement": "BARGEME", + "nomCommune": "BARGEME" }, { - "codePostal": "77250", - "codeCommune": "77316", - "libelleAcheminement": "MORET LOING ET ORVANNE", - "nomCommune": "MORET LOING ET ORVANNE" + "codePostal": "80150", + "codeCommune": "80477", + "libelleAcheminement": "LIGESCOURT", + "nomCommune": "LIGESCOURT" }, { - "codePostal": "88260", - "codeCommune": "88065", - "libelleAcheminement": "BONVILLET", - "nomCommune": "BONVILLET" + "codePostal": "83670", + "codeCommune": "83012", + "libelleAcheminement": "BARJOLS", + "nomCommune": "BARJOLS" }, { - "codePostal": "77163", - "codeCommune": "77318", - "libelleAcheminement": "MORTCERF", - "nomCommune": "MORTCERF" + "codePostal": "80500", + "codeCommune": "80478", + "libelleAcheminement": "LIGNIERES LES ROYE", + "nomCommune": "LIGNIERES" }, { - "codePostal": "88470", - "codeCommune": "88068", - "libelleAcheminement": "LA BOURGONCE", - "nomCommune": "LA BOURGONCE" + "codePostal": "83840", + "codeCommune": "83013", + "libelleAcheminement": "LA BASTIDE", + "nomCommune": "LA BASTIDE" }, { - "codePostal": "77760", - "codeCommune": "77328", - "libelleAcheminement": "NANTEAU SUR ESSONNE", - "nomCommune": "NANTEAU SUR ESSONNE" + "codePostal": "80290", + "codeCommune": "80479", + "libelleAcheminement": "LIGNIERES CHATELAIN", + "nomCommune": "LIGNIERES CHATELAIN" }, { - "codePostal": "88700", - "codeCommune": "88077", - "libelleAcheminement": "BRU", - "nomCommune": "BRU" + "codePostal": "83149", + "codeCommune": "83021", + "libelleAcheminement": "BRAS", + "nomCommune": "BRAS" }, { - "codePostal": "77140", - "codeCommune": "77333", - "libelleAcheminement": "NEMOURS", - "nomCommune": "NEMOURS" + "codePostal": "80140", + "codeCommune": "80480", + "libelleAcheminement": "LIGNIERES EN VIMEU", + "nomCommune": "LIGNIERES EN VIMEU" }, { - "codePostal": "88700", - "codeCommune": "88080", - "libelleAcheminement": "BULT", - "nomCommune": "BULT" + "codePostal": "83740", + "codeCommune": "83027", + "libelleAcheminement": "LA CADIERE D AZUR", + "nomCommune": "LA CADIERE D AZUR" }, { - "codePostal": "77186", - "codeCommune": "77337", - "libelleAcheminement": "NOISIEL", - "nomCommune": "NOISIEL" + "codePostal": "80430", + "codeCommune": "80484", + "libelleAcheminement": "LIOMER", + "nomCommune": "LIOMER" }, { - "codePostal": "88130", - "codeCommune": "88084", - "libelleAcheminement": "CHAMAGNE", - "nomCommune": "CHAMAGNE" + "codePostal": "83170", + "codeCommune": "83030", + "libelleAcheminement": "CAMPS LA SOURCE", + "nomCommune": "CAMPS LA SOURCE" }, { - "codePostal": "77830", - "codeCommune": "77354", - "libelleAcheminement": "PAMFOU", - "nomCommune": "PAMFOU" + "codePostal": "80560", + "codeCommune": "80493", + "libelleAcheminement": "LOUVENCOURT", + "nomCommune": "LOUVENCOURT" }, { - "codePostal": "88240", - "codeCommune": "88088", - "libelleAcheminement": "LA CHAPELLE AUX BOIS", - "nomCommune": "LA CHAPELLE AUX BOIS" + "codePostal": "83330", + "codeCommune": "83035", + "libelleAcheminement": "LE CASTELLET", + "nomCommune": "LE CASTELLET" }, { - "codePostal": "77480", - "codeCommune": "77356", - "libelleAcheminement": "PASSY SUR SEINE", - "nomCommune": "PASSY SUR SEINE" + "codePostal": "80150", + "codeCommune": "80496", + "libelleAcheminement": "MACHIEL", + "nomCommune": "MACHIEL" }, { - "codePostal": "88410", - "codeCommune": "88096", - "libelleAcheminement": "CHATILLON SUR SAONE", - "nomCommune": "CHATILLON SUR SAONE" + "codePostal": "83570", + "codeCommune": "83046", + "libelleAcheminement": "COTIGNAC", + "nomCommune": "COTIGNAC" }, { - "codePostal": "77440", - "codeCommune": "77367", - "libelleAcheminement": "LE PLESSIS PLACY", - "nomCommune": "LE PLESSIS PLACY" + "codePostal": "80110", + "codeCommune": "80499", + "libelleAcheminement": "MAILLY RAINEVAL", + "nomCommune": "MAILLY RAINEVAL" }, { - "codePostal": "88460", - "codeCommune": "88101", - "libelleAcheminement": "CHENIMENIL", - "nomCommune": "CHENIMENIL" + "codePostal": "83210", + "codeCommune": "83054", + "libelleAcheminement": "LA FARLEDE", + "nomCommune": "LA FARLEDE" }, { - "codePostal": "77167", - "codeCommune": "77370", - "libelleAcheminement": "POLIGNY", - "nomCommune": "POLIGNY" + "codePostal": "80250", + "codeCommune": "80504", + "libelleAcheminement": "MALPART", + "nomCommune": "MALPART" }, { - "codePostal": "88300", - "codeCommune": "88104", - "libelleAcheminement": "CIRCOURT SUR MOUZON", - "nomCommune": "CIRCOURT SUR MOUZON" + "codePostal": "83340", + "codeCommune": "83057", + "libelleAcheminement": "FLASSANS SUR ISSOLE", + "nomCommune": "FLASSANS SUR ISSOLE" }, { - "codePostal": "77760", - "codeCommune": "77386", - "libelleAcheminement": "RECLOSES", - "nomCommune": "RECLOSES" + "codePostal": "80300", + "codeCommune": "80505", + "libelleAcheminement": "CARNOY MAMETZ", + "nomCommune": "CARNOY MAMETZ" }, { - "codePostal": "88700", - "codeCommune": "88110", - "libelleAcheminement": "CLEZENTAINE", - "nomCommune": "CLEZENTAINE" + "codePostal": "83780", + "codeCommune": "83058", + "libelleAcheminement": "FLAYOSC", + "nomCommune": "FLAYOSC" }, { - "codePostal": "77710", - "codeCommune": "77387", - "libelleAcheminement": "REMAUVILLE", - "nomCommune": "REMAUVILLE" + "codePostal": "80500", + "codeCommune": "80511", + "libelleAcheminement": "MARESTMONTIERS", + "nomCommune": "MARESTMONTIERS" }, { - "codePostal": "88140", - "codeCommune": "88119", - "libelleAcheminement": "CRAINVILLIERS", - "nomCommune": "CRAINVILLIERS" + "codePostal": "83370", + "codeCommune": "83061", + "libelleAcheminement": "FREJUS", + "nomCommune": "FREJUS" }, { - "codePostal": "77260", - "codeCommune": "77388", - "libelleAcheminement": "REUIL EN BRIE", - "nomCommune": "REUIL EN BRIE" + "codePostal": "80300", + "codeCommune": "80523", + "libelleAcheminement": "MEAULTE", + "nomCommune": "MEAULTE" }, { - "codePostal": "88390", - "codeCommune": "88126", - "libelleAcheminement": "DARNIEULLES", - "nomCommune": "DARNIEULLES" + "codePostal": "83130", + "codeCommune": "83062", + "libelleAcheminement": "LA GARDE", + "nomCommune": "LA GARDE" }, { - "codePostal": "77320", - "codeCommune": "77402", - "libelleAcheminement": "ST BARTHELEMY", - "nomCommune": "ST BARTHELEMY" + "codePostal": "80200", + "codeCommune": "80536", + "libelleAcheminement": "MESNIL BRUNTEL", + "nomCommune": "MESNIL BRUNTEL" }, { - "codePostal": "88000", - "codeCommune": "88132", - "libelleAcheminement": "DEYVILLERS", - "nomCommune": "DEYVILLERS" + "codePostal": "83136", + "codeCommune": "83064", + "libelleAcheminement": "GAREOULT", + "nomCommune": "GAREOULT" }, { - "codePostal": "77310", - "codeCommune": "77407", - "libelleAcheminement": "ST FARGEAU PONTHIERRY", - "nomCommune": "ST FARGEAU PONTHIERRY" + "codePostal": "80620", + "codeCommune": "80537", + "libelleAcheminement": "MESNIL DOMQUEUR", + "nomCommune": "MESNIL DOMQUEUR" }, { - "codePostal": "88700", - "codeCommune": "88153", - "libelleAcheminement": "DOMPTAIL", - "nomCommune": "DOMPTAIL" + "codePostal": "83580", + "codeCommune": "83065", + "libelleAcheminement": "GASSIN", + "nomCommune": "GASSIN" }, { - "codePostal": "77169", - "codeCommune": "77411", - "libelleAcheminement": "ST GERMAIN SOUS DOUE", - "nomCommune": "ST GERMAIN SOUS DOUE" + "codePostal": "80300", + "codeCommune": "80540", + "libelleAcheminement": "MESNIL MARTINSART", + "nomCommune": "MESNIL MARTINSART" }, { - "codePostal": "88360", - "codeCommune": "88170", - "libelleAcheminement": "FERDRUPT", - "nomCommune": "FERDRUPT" + "codePostal": "83310", + "codeCommune": "83068", + "libelleAcheminement": "GRIMAUD", + "nomCommune": "GRIMAUD" }, { - "codePostal": "77650", - "codeCommune": "77418", - "libelleAcheminement": "ST LOUP DE NAUD", - "nomCommune": "ST LOUP DE NAUD" + "codePostal": "80540", + "codeCommune": "80554", + "libelleAcheminement": "MOLLIENS DREUIL", + "nomCommune": "MOLLIENS DREUIL" }, { - "codePostal": "88490", - "codeCommune": "88182", - "libelleAcheminement": "FRAPELLE", - "nomCommune": "FRAPELLE" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "77320", - "codeCommune": "77421", - "libelleAcheminement": "ST MARS VIEUX MAISONS", - "nomCommune": "ST MARS VIEUX MAISONS" + "codePostal": "80160", + "codeCommune": "80558", + "libelleAcheminement": "MONSURES", + "nomCommune": "MONSURES" }, { - "codePostal": "88160", - "codeCommune": "88188", - "libelleAcheminement": "FRESSE SUR MOSELLE", - "nomCommune": "FRESSE SUR MOSELLE" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "77410", - "codeCommune": "77427", - "libelleAcheminement": "ST MESMES", - "nomCommune": "ST MESMES" + "codePostal": "80540", + "codeCommune": "80559", + "libelleAcheminement": "MONTAGNE FAYEL", + "nomCommune": "MONTAGNE FAYEL" }, { - "codePostal": "88300", - "codeCommune": "88227", - "libelleAcheminement": "HAGNEVILLE ET RONCOURT", - "nomCommune": "HAGNEVILLE ET RONCOURT" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "77750", - "codeCommune": "77429", - "libelleAcheminement": "ST OUEN SUR MORIN", - "nomCommune": "ST OUEN SUR MORIN" + "codePostal": "80670", + "codeCommune": "80566", + "libelleAcheminement": "FIEFFES MONTRELET", + "nomCommune": "FIEFFES MONTRELET" }, { - "codePostal": "88700", - "codeCommune": "88230", - "libelleAcheminement": "HARDANCOURT", - "nomCommune": "HARDANCOURT" + "codePostal": "83340", + "codeCommune": "83073", + "libelleAcheminement": "LE LUC", + "nomCommune": "LE LUC" }, { - "codePostal": "77240", - "codeCommune": "77447", - "libelleAcheminement": "SEINE PORT", - "nomCommune": "SEINE PORT" + "codePostal": "80110", + "codeCommune": "80571", + "libelleAcheminement": "MORISEL", + "nomCommune": "MORISEL" }, { - "codePostal": "88300", - "codeCommune": "88232", - "libelleAcheminement": "HARMONVILLE", - "nomCommune": "HARMONVILLE" + "codePostal": "83136", + "codeCommune": "83077", + "libelleAcheminement": "MEOUNES LES MONTRIEUX", + "nomCommune": "MEOUNES LES MONTRIEUX" }, { - "codePostal": "77520", - "codeCommune": "77454", - "libelleAcheminement": "SOGNOLLES EN MONTOIS", - "nomCommune": "SOGNOLLES EN MONTOIS" + "codePostal": "80690", + "codeCommune": "80574", + "libelleAcheminement": "MOUFLERS", + "nomCommune": "MOUFLERS" }, { - "codePostal": "88240", - "codeCommune": "88236", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "83570", + "codeCommune": "83083", + "libelleAcheminement": "MONTFORT SUR ARGENS", + "nomCommune": "MONTFORT SUR ARGENS" }, { - "codePostal": "77520", - "codeCommune": "77461", - "libelleAcheminement": "THENISY", - "nomCommune": "THENISY" + "codePostal": "80400", + "codeCommune": "80576", + "libelleAcheminement": "MOYENCOURT", + "nomCommune": "MOYENCOURT" }, { - "codePostal": "88260", - "codeCommune": "88238", - "libelleAcheminement": "HENNEZEL", - "nomCommune": "HENNEZEL" + "codePostal": "83490", + "codeCommune": "83086", + "libelleAcheminement": "LE MUY", + "nomCommune": "LE MUY" }, { - "codePostal": "77230", - "codeCommune": "77462", - "libelleAcheminement": "THIEUX", - "nomCommune": "THIEUX" + "codePostal": "80120", + "codeCommune": "80580", + "libelleAcheminement": "NAMPONT ST MARTIN", + "nomCommune": "NAMPONT" }, { - "codePostal": "88300", - "codeCommune": "88242", - "libelleAcheminement": "HOUEVILLE", - "nomCommune": "HOUEVILLE" + "codePostal": "83860", + "codeCommune": "83087", + "libelleAcheminement": "NANS LES PINS", + "nomCommune": "NANS LES PINS" }, { - "codePostal": "77123", - "codeCommune": "77471", - "libelleAcheminement": "TOUSSON", - "nomCommune": "TOUSSON" + "codePostal": "80290", + "codeCommune": "80582", + "libelleAcheminement": "NAMPS MAISNIL", + "nomCommune": "NAMPS MAISNIL" }, { - "codePostal": "88210", - "codeCommune": "88245", - "libelleAcheminement": "HURBACHE", - "nomCommune": "HURBACHE" + "codePostal": "83136", + "codeCommune": "83088", + "libelleAcheminement": "NEOULES", + "nomCommune": "NEOULES" }, { - "codePostal": "77760", - "codeCommune": "77477", - "libelleAcheminement": "URY", - "nomCommune": "URY" + "codePostal": "80290", + "codeCommune": "80582", + "libelleAcheminement": "NAMPS MAISNIL", + "nomCommune": "NAMPS MAISNIL" }, { - "codePostal": "88300", - "codeCommune": "88259", - "libelleAcheminement": "LANDAVILLE", - "nomCommune": "LANDAVILLE" + "codePostal": "83120", + "codeCommune": "83094", + "libelleAcheminement": "LE PLAN DE LA TOUR", + "nomCommune": "LE PLAN DE LA TOUR" }, { - "codePostal": "77830", - "codeCommune": "77480", - "libelleAcheminement": "VALENCE EN BRIE", - "nomCommune": "VALENCE EN BRIE" + "codePostal": "80260", + "codeCommune": "80584", + "libelleAcheminement": "NAOURS", + "nomCommune": "NAOURS" }, { - "codePostal": "88600", - "codeCommune": "88261", - "libelleAcheminement": "LAVAL SUR VOLOGNE", - "nomCommune": "LAVAL SUR VOLOGNE" + "codePostal": "83520", + "codeCommune": "83107", + "libelleAcheminement": "ROQUEBRUNE SUR ARGENS", + "nomCommune": "ROQUEBRUNE SUR ARGENS" }, { - "codePostal": "77240", - "codeCommune": "77495", - "libelleAcheminement": "VERT ST DENIS", - "nomCommune": "VERT ST DENIS" + "codePostal": "80140", + "codeCommune": "80586", + "libelleAcheminement": "NESLE L HOPITAL", + "nomCommune": "NESLE L HOPITAL" }, { - "codePostal": "88600", - "codeCommune": "88262", - "libelleAcheminement": "LAVELINE DEVANT BRUYERES", - "nomCommune": "LAVELINE DEVANT BRUYERES" + "codePostal": "83840", + "codeCommune": "83109", + "libelleAcheminement": "LA ROQUE ESCLAPON", + "nomCommune": "LA ROQUE ESCLAPON" }, { - "codePostal": "77250", - "codeCommune": "77506", - "libelleAcheminement": "VILLEMER", - "nomCommune": "VILLEMER" + "codePostal": "80600", + "codeCommune": "80596", + "libelleAcheminement": "NEUVILLETTE", + "nomCommune": "NEUVILLETTE" }, { - "codePostal": "88600", - "codeCommune": "88266", - "libelleAcheminement": "LEPANGES SUR VOLOGNE", - "nomCommune": "LEPANGES SUR VOLOGNE" + "codePostal": "83170", + "codeCommune": "83110", + "libelleAcheminement": "ROUGIERS", + "nomCommune": "ROUGIERS" }, { - "codePostal": "77174", - "codeCommune": "77508", - "libelleAcheminement": "VILLENEUVE LE COMTE", - "nomCommune": "VILLENEUVE LE COMTE" + "codePostal": "80860", + "codeCommune": "80598", + "libelleAcheminement": "NOUVION", + "nomCommune": "NOUVION" }, { - "codePostal": "88350", - "codeCommune": "88270", - "libelleAcheminement": "LIFFOL LE GRAND", - "nomCommune": "LIFFOL LE GRAND" + "codePostal": "83270", + "codeCommune": "83112", + "libelleAcheminement": "ST CYR SUR MER", + "nomCommune": "ST CYR SUR MER" }, { - "codePostal": "77410", - "codeCommune": "77517", - "libelleAcheminement": "VILLEVAUDE", - "nomCommune": "VILLEVAUDE" + "codePostal": "80540", + "codeCommune": "80607", + "libelleAcheminement": "OISSY", + "nomCommune": "OISSY" }, { - "codePostal": "88800", - "codeCommune": "88271", - "libelleAcheminement": "LIGNEVILLE", - "nomCommune": "LIGNEVILLE" + "codePostal": "83700", + "codeCommune": "83118", + "libelleAcheminement": "ST RAPHAEL", + "nomCommune": "ST RAPHAEL" }, { - "codePostal": "77190", - "codeCommune": "77518", - "libelleAcheminement": "VILLIERS EN BIERE", - "nomCommune": "VILLIERS EN BIERE" + "codePostal": "80300", + "codeCommune": "80615", + "libelleAcheminement": "OVILLERS LA BOISSELLE", + "nomCommune": "OVILLERS LA BOISSELLE" }, { - "codePostal": "88490", - "codeCommune": "88276", - "libelleAcheminement": "LUSSE", - "nomCommune": "LUSSE" + "codePostal": "83440", + "codeCommune": "83124", + "libelleAcheminement": "SEILLANS", + "nomCommune": "SEILLANS" }, { - "codePostal": "77139", - "codeCommune": "77526", - "libelleAcheminement": "VINCY MANOEUVRE", - "nomCommune": "VINCY MANOEUVRE" + "codePostal": "80190", + "codeCommune": "80616", + "libelleAcheminement": "PARGNY", + "nomCommune": "PARGNY" }, { - "codePostal": "88110", - "codeCommune": "88277", - "libelleAcheminement": "LUVIGNY", - "nomCommune": "LUVIGNY" + "codePostal": "83870", + "codeCommune": "83127", + "libelleAcheminement": "SIGNES", + "nomCommune": "SIGNES" }, { - "codePostal": "77540", - "codeCommune": "77527", - "libelleAcheminement": "VOINSLES", - "nomCommune": "VOINSLES" + "codePostal": "80670", + "codeCommune": "80619", + "libelleAcheminement": "PERNOIS", + "nomCommune": "PERNOIS" }, { - "codePostal": "88270", - "codeCommune": "88279", - "libelleAcheminement": "MADECOURT", - "nomCommune": "MADECOURT" + "codePostal": "83140", + "codeCommune": "83129", + "libelleAcheminement": "SIX FOURS LES PLAGES", + "nomCommune": "SIX FOURS LES PLAGES" }, { - "codePostal": "77580", - "codeCommune": "77529", - "libelleAcheminement": "VOULANGIS", - "nomCommune": "VOULANGIS" + "codePostal": "80320", + "codeCommune": "80621", + "libelleAcheminement": "HYPERCOURT", + "nomCommune": "HYPERCOURT" }, { - "codePostal": "88140", - "codeCommune": "88283", - "libelleAcheminement": "MALAINCOURT", - "nomCommune": "MALAINCOURT" + "codePostal": "83440", + "codeCommune": "83133", + "libelleAcheminement": "TANNERON", + "nomCommune": "TANNERON" }, { - "codePostal": "77870", - "codeCommune": "77533", - "libelleAcheminement": "VULAINES SUR SEINE", - "nomCommune": "VULAINES SUR SEINE" + "codePostal": "80310", + "codeCommune": "80622", + "libelleAcheminement": "PICQUIGNY", + "nomCommune": "PICQUIGNY" }, { - "codePostal": "88800", - "codeCommune": "88285", - "libelleAcheminement": "MANDRES SUR VAIR", - "nomCommune": "MANDRES SUR VAIR" + "codePostal": "83720", + "codeCommune": "83141", + "libelleAcheminement": "TRANS EN PROVENCE", + "nomCommune": "TRANS EN PROVENCE" }, { - "codePostal": "77390", - "codeCommune": "77534", - "libelleAcheminement": "YEBLES", - "nomCommune": "YEBLES" + "codePostal": "80150", + "codeCommune": "80631", + "libelleAcheminement": "PONCHES ESTRUVAL", + "nomCommune": "PONCHES ESTRUVAL" }, { - "codePostal": "88410", - "codeCommune": "88291", - "libelleAcheminement": "MARTINVELLE", - "nomCommune": "MARTINVELLE" + "codePostal": "83840", + "codeCommune": "83142", + "libelleAcheminement": "TRIGANCE", + "nomCommune": "TRIGANCE" }, { - "codePostal": "78260", - "codeCommune": "78005", - "libelleAcheminement": "ACHERES", - "nomCommune": "ACHERES" + "codePostal": "80480", + "codeCommune": "80632", + "libelleAcheminement": "PONT DE METZ", + "nomCommune": "PONT DE METZ" }, { - "codePostal": "88630", - "codeCommune": "88293", - "libelleAcheminement": "MAXEY SUR MEUSE", - "nomCommune": "MAXEY SUR MEUSE" + "codePostal": "84140", + "codeCommune": "84007", + "libelleAcheminement": "AVIGNON", + "nomCommune": "AVIGNON" }, { - "codePostal": "78660", - "codeCommune": "78009", - "libelleAcheminement": "ALLAINVILLE AUX BOIS", - "nomCommune": "ALLAINVILLE" + "codePostal": "80190", + "codeCommune": "80638", + "libelleAcheminement": "POTTE", + "nomCommune": "POTTE" }, { - "codePostal": "88600", - "codeCommune": "88297", - "libelleAcheminement": "MEMENIL", - "nomCommune": "MEMENIL" + "codePostal": "84120", + "codeCommune": "84010", + "libelleAcheminement": "LA BASTIDONNE", + "nomCommune": "LA BASTIDONNE" }, { - "codePostal": "78490", - "codeCommune": "78050", - "libelleAcheminement": "BAZOCHES SUR GUYONNE", - "nomCommune": "BAZOCHES SUR GUYONNE" + "codePostal": "80400", + "codeCommune": "80658", + "libelleAcheminement": "QUIVIERES", + "nomCommune": "QUIVIERES" }, { - "codePostal": "88700", - "codeCommune": "88298", - "libelleAcheminement": "MENARMONT", - "nomCommune": "MENARMONT" + "codePostal": "84210", + "codeCommune": "84011", + "libelleAcheminement": "LE BEAUCET", + "nomCommune": "LE BEAUCET" }, { - "codePostal": "78910", - "codeCommune": "78053", - "libelleAcheminement": "BEHOUST", - "nomCommune": "BEHOUST" + "codePostal": "80600", + "codeCommune": "80659", + "libelleAcheminement": "RAINCHEVAL", + "nomCommune": "RAINCHEVAL" }, { - "codePostal": "88210", - "codeCommune": "88300", - "libelleAcheminement": "MENIL DE SENONES", - "nomCommune": "MENIL DE SENONES" + "codePostal": "84370", + "codeCommune": "84016", + "libelleAcheminement": "BEDARRIDES", + "nomCommune": "BEDARRIDES" }, { - "codePostal": "78650", - "codeCommune": "78062", - "libelleAcheminement": "BEYNES", - "nomCommune": "BEYNES" + "codePostal": "80140", + "codeCommune": "80663", + "libelleAcheminement": "RAMBURES", + "nomCommune": "RAMBURES" }, { - "codePostal": "88210", - "codeCommune": "88306", - "libelleAcheminement": "LE MONT", - "nomCommune": "LE MONT" + "codePostal": "84110", + "codeCommune": "84022", + "libelleAcheminement": "BUISSON", + "nomCommune": "BUISSON" }, { - "codePostal": "78390", - "codeCommune": "78073", - "libelleAcheminement": "BOIS D ARCY", - "nomCommune": "BOIS D ARCY" + "codePostal": "80360", + "codeCommune": "80664", + "libelleAcheminement": "RANCOURT", + "nomCommune": "RANCOURT" }, { - "codePostal": "88800", - "codeCommune": "88309", - "libelleAcheminement": "MONTHUREUX LE SEC", - "nomCommune": "MONTHUREUX LE SEC" + "codePostal": "84860", + "codeCommune": "84027", + "libelleAcheminement": "CADEROUSSE", + "nomCommune": "CADEROUSSE" }, { - "codePostal": "78200", - "codeCommune": "78082", - "libelleAcheminement": "BOISSY MAUVOISIN", - "nomCommune": "BOISSY MAUVOISIN" + "codePostal": "80800", + "codeCommune": "80672", + "libelleAcheminement": "RIBEMONT SUR ANCRE", + "nomCommune": "RIBEMONT SUR ANCRE" }, { - "codePostal": "88470", - "codeCommune": "88328", - "libelleAcheminement": "NOMPATELIZE", - "nomCommune": "NOMPATELIZE" + "codePostal": "84330", + "codeCommune": "84030", + "libelleAcheminement": "CAROMB", + "nomCommune": "CAROMB" }, { - "codePostal": "78380", - "codeCommune": "78092", - "libelleAcheminement": "BOUGIVAL", - "nomCommune": "BOUGIVAL" + "codePostal": "80136", + "codeCommune": "80674", + "libelleAcheminement": "RIVERY", + "nomCommune": "RIVERY" }, { - "codePostal": "88700", - "codeCommune": "88338", - "libelleAcheminement": "ORTONCOURT", - "nomCommune": "ORTONCOURT" + "codePostal": "84750", + "codeCommune": "84032", + "libelleAcheminement": "CASENEUVE", + "nomCommune": "CASENEUVE" }, { - "codePostal": "78930", - "codeCommune": "78104", - "libelleAcheminement": "BREUIL BOIS ROBERT", - "nomCommune": "BREUIL BOIS ROBERT" + "codePostal": "80250", + "codeCommune": "80681", + "libelleAcheminement": "ROUVREL", + "nomCommune": "ROUVREL" }, { - "codePostal": "88330", - "codeCommune": "88342", - "libelleAcheminement": "PALLEGNEY", - "nomCommune": "PALLEGNEY" + "codePostal": "84230", + "codeCommune": "84037", + "libelleAcheminement": "CHATEAUNEUF DU PAPE", + "nomCommune": "CHATEAUNEUF DU PAPE" }, { - "codePostal": "78955", - "codeCommune": "78123", - "libelleAcheminement": "CARRIERES SOUS POISSY", - "nomCommune": "CARRIERES SOUS POISSY" + "codePostal": "80500", + "codeCommune": "80687", + "libelleAcheminement": "RUBESCOURT", + "nomCommune": "RUBESCOURT" }, { - "codePostal": "88350", - "codeCommune": "88344", - "libelleAcheminement": "PARGNY SOUS MUREAU", - "nomCommune": "PARGNY SOUS MUREAU" + "codePostal": "84350", + "codeCommune": "84039", + "libelleAcheminement": "COURTHEZON", + "nomCommune": "COURTHEZON" }, { - "codePostal": "78720", - "codeCommune": "78125", - "libelleAcheminement": "LA CELLE LES BORDES", - "nomCommune": "LA CELLE LES BORDES" + "codePostal": "80370", + "codeCommune": "80697", + "libelleAcheminement": "ST ACHEUL", + "nomCommune": "ST ACHEUL" }, { - "codePostal": "88330", - "codeCommune": "88355", - "libelleAcheminement": "PORTIEUX", - "nomCommune": "PORTIEUX" + "codePostal": "84410", + "codeCommune": "84041", + "libelleAcheminement": "CRILLON LE BRAVE", + "nomCommune": "CRILLON LE BRAVE" }, { - "codePostal": "78570", - "codeCommune": "78138", - "libelleAcheminement": "CHANTELOUP LES VIGNES", - "nomCommune": "CHANTELOUP LES VIGNES" + "codePostal": "80430", + "codeCommune": "80703", + "libelleAcheminement": "ST GERMAIN SUR BRESLE", + "nomCommune": "ST GERMAIN SUR BRESLE" }, { - "codePostal": "88550", - "codeCommune": "88358", - "libelleAcheminement": "POUXEUX", - "nomCommune": "POUXEUX" + "codePostal": "84160", + "codeCommune": "84042", + "libelleAcheminement": "CUCURON", + "nomCommune": "CUCURON" }, { - "codePostal": "78270", - "codeCommune": "78147", - "libelleAcheminement": "CHAUFOUR LES BONNIERES", - "nomCommune": "CHAUFOUR LES BONNIERES" + "codePostal": "80560", + "codeCommune": "80705", + "libelleAcheminement": "ST LEGER LES AUTHIE", + "nomCommune": "ST LEGER LES AUTHIE" }, { - "codePostal": "88600", - "codeCommune": "88359", - "libelleAcheminement": "PREY", - "nomCommune": "PREY" + "codePostal": "84400", + "codeCommune": "84048", + "libelleAcheminement": "GIGNAC", + "nomCommune": "GIGNAC" }, { - "codePostal": "78340", - "codeCommune": "78165", - "libelleAcheminement": "LES CLAYES SOUS BOIS", - "nomCommune": "LES CLAYES SOUS BOIS" + "codePostal": "80140", + "codeCommune": "80707", + "libelleAcheminement": "ST LEGER SUR BRESLE", + "nomCommune": "ST LEGER SUR BRESLE" }, { - "codePostal": "88630", - "codeCommune": "88363", - "libelleAcheminement": "PUNEROT", - "nomCommune": "PUNEROT" + "codePostal": "84400", + "codeCommune": "84060", + "libelleAcheminement": "LAGARDE D APT", + "nomCommune": "LAGARDE D APT" }, { - "codePostal": "78790", - "codeCommune": "78185", - "libelleAcheminement": "COURGENT", - "nomCommune": "COURGENT" + "codePostal": "80120", + "codeCommune": "80713", + "libelleAcheminement": "ST QUENTIN EN TOURMONT", + "nomCommune": "ST QUENTIN EN TOURMONT" }, { - "codePostal": "88500", - "codeCommune": "88364", - "libelleAcheminement": "PUZIEUX", - "nomCommune": "PUZIEUX" + "codePostal": "84840", + "codeCommune": "84064", + "libelleAcheminement": "LAPALUD", + "nomCommune": "LAPALUD" }, { - "codePostal": "78121", - "codeCommune": "78189", - "libelleAcheminement": "CRESPIERES", - "nomCommune": "CRESPIERES" + "codePostal": "80290", + "codeCommune": "80728", + "libelleAcheminement": "SAULCHOY SOUS POIX", + "nomCommune": "SAULCHOY SOUS POIX" }, { - "codePostal": "88270", - "codeCommune": "88365", - "libelleAcheminement": "RACECOURT", - "nomCommune": "RACECOURT" + "codePostal": "84100", + "codeCommune": "84087", + "libelleAcheminement": "ORANGE", + "nomCommune": "ORANGE" }, { - "codePostal": "78520", - "codeCommune": "78239", - "libelleAcheminement": "FOLLAINVILLE DENNEMONT", - "nomCommune": "FOLLAINVILLE DENNEMONT" + "codePostal": "80110", + "codeCommune": "80729", + "libelleAcheminement": "SAUVILLERS MONGIVAL", + "nomCommune": "SAUVILLERS MONGIVAL" }, { - "codePostal": "88640", - "codeCommune": "88380", - "libelleAcheminement": "REHAUPAL", - "nomCommune": "REHAUPAL" + "codePostal": "84240", + "codeCommune": "84090", + "libelleAcheminement": "PEYPIN D AIGUES", + "nomCommune": "PEYPIN D AIGUES" }, { - "codePostal": "78330", - "codeCommune": "78242", - "libelleAcheminement": "FONTENAY LE FLEURY", - "nomCommune": "FONTENAY LE FLEURY" + "codePostal": "80540", + "codeCommune": "80735", + "libelleAcheminement": "SEUX", + "nomCommune": "SEUX" }, { - "codePostal": "88170", - "codeCommune": "88387", - "libelleAcheminement": "REMOVILLE", - "nomCommune": "REMOVILLE" + "codePostal": "84190", + "codeCommune": "84100", + "libelleAcheminement": "LA ROQUE ALRIC", + "nomCommune": "LA ROQUE ALRIC" }, { - "codePostal": "78200", - "codeCommune": "78245", - "libelleAcheminement": "FONTENAY MAUVOISIN", - "nomCommune": "FONTENAY MAUVOISIN" + "codePostal": "80490", + "codeCommune": "80736", + "libelleAcheminement": "SOREL EN VIMEU", + "nomCommune": "SOREL EN VIMEU" }, { - "codePostal": "88390", - "codeCommune": "88388", - "libelleAcheminement": "RENAUVOID", - "nomCommune": "RENAUVOID" + "codePostal": "84400", + "codeCommune": "84103", + "libelleAcheminement": "RUSTREL", + "nomCommune": "RUSTREL" }, { - "codePostal": "78490", - "codeCommune": "78262", - "libelleAcheminement": "GALLUIS", - "nomCommune": "GALLUIS" + "codePostal": "80240", + "codeCommune": "80737", + "libelleAcheminement": "SOREL", + "nomCommune": "SOREL" }, { - "codePostal": "88120", - "codeCommune": "88391", - "libelleAcheminement": "ROCHESSON", - "nomCommune": "ROCHESSON" + "codePostal": "84110", + "codeCommune": "84104", + "libelleAcheminement": "SABLET", + "nomCommune": "SABLET" }, { - "codePostal": "78440", - "codeCommune": "78267", - "libelleAcheminement": "GARGENVILLE", - "nomCommune": "GARGENVILLE" + "codePostal": "80300", + "codeCommune": "80753", + "libelleAcheminement": "THIEPVAL", + "nomCommune": "THIEPVAL" }, { - "codePostal": "88320", - "codeCommune": "88394", - "libelleAcheminement": "ROMAIN AUX BOIS", - "nomCommune": "ROMAIN AUX BOIS" + "codePostal": "84390", + "codeCommune": "84107", + "libelleAcheminement": "ST CHRISTOL", + "nomCommune": "ST CHRISTOL" }, { - "codePostal": "78550", - "codeCommune": "78285", - "libelleAcheminement": "GRESSEY", - "nomCommune": "GRESSEY" + "codePostal": "80220", + "codeCommune": "80760", + "libelleAcheminement": "TILLOY FLORIVILLE", + "nomCommune": "TILLOY FLORIVILLE" }, { - "codePostal": "88500", - "codeCommune": "88403", - "libelleAcheminement": "ROZEROTTE", - "nomCommune": "ROZEROTTE" + "codePostal": "84210", + "codeCommune": "84108", + "libelleAcheminement": "ST DIDIER", + "nomCommune": "ST DIDIER" }, { - "codePostal": "78280", - "codeCommune": "78297", - "libelleAcheminement": "GUYANCOURT", - "nomCommune": "GUYANCOURT" + "codePostal": "80240", + "codeCommune": "80762", + "libelleAcheminement": "TINCOURT BOUCLY", + "nomCommune": "TINCOURT BOUCLY" }, { - "codePostal": "88200", - "codeCommune": "88429", - "libelleAcheminement": "ST NABORD", - "nomCommune": "ST NABORD" + "codePostal": "84330", + "codeCommune": "84109", + "libelleAcheminement": "ST HIPPOLYTE LE GRAVEYRON", + "nomCommune": "ST HIPPOLYTE LE GRAVEYRON" }, { - "codePostal": "78280", - "codeCommune": "78297", - "libelleAcheminement": "GUYANCOURT", - "nomCommune": "GUYANCOURT" + "codePostal": "80210", + "codeCommune": "80765", + "libelleAcheminement": "TOURS EN VIMEU", + "nomCommune": "TOURS EN VIMEU" }, { - "codePostal": "88210", - "codeCommune": "88436", - "libelleAcheminement": "ST STAIL", - "nomCommune": "ST STAIL" + "codePostal": "84110", + "codeCommune": "84111", + "libelleAcheminement": "ST MARCELLIN LES VAISON", + "nomCommune": "ST MARCELLIN LES VAISON" }, { - "codePostal": "78270", - "codeCommune": "78320", - "libelleAcheminement": "NOTRE DAME DE LA MER", - "nomCommune": "NOTRE DAME DE LA MER" + "codePostal": "80400", + "codeCommune": "80771", + "libelleAcheminement": "UGNY L EQUIPEE", + "nomCommune": "UGNY L EQUIPEE" }, { - "codePostal": "88170", - "codeCommune": "88440", - "libelleAcheminement": "SANDAUCOURT", - "nomCommune": "SANDAUCOURT" + "codePostal": "84330", + "codeCommune": "84115", + "libelleAcheminement": "ST PIERRE DE VASSOLS", + "nomCommune": "ST PIERRE DE VASSOLS" }, { - "codePostal": "78200", - "codeCommune": "78324", - "libelleAcheminement": "JOUY MAUVOISIN", - "nomCommune": "JOUY MAUVOISIN" + "codePostal": "80260", + "codeCommune": "80782", + "libelleAcheminement": "VAUX EN AMIENOIS", + "nomCommune": "VAUX EN AMIENOIS" }, { - "codePostal": "88300", - "codeCommune": "88443", - "libelleAcheminement": "SARTES", - "nomCommune": "SARTES" + "codePostal": "84490", + "codeCommune": "84118", + "libelleAcheminement": "ST SATURNIN LES APT", + "nomCommune": "ST SATURNIN LES APT" }, { - "codePostal": "78580", - "codeCommune": "78325", - "libelleAcheminement": "JUMEAUVILLE", - "nomCommune": "JUMEAUVILLE" + "codePostal": "80800", + "codeCommune": "80784", + "libelleAcheminement": "VAUX SUR SOMME", + "nomCommune": "VAUX SUR SOMME" }, { - "codePostal": "88140", - "codeCommune": "88446", - "libelleAcheminement": "SAULXURES LES BULGNEVILLE", - "nomCommune": "SAULXURES LES BULGNEVILLE" + "codePostal": "84260", + "codeCommune": "84122", + "libelleAcheminement": "SARRIANS", + "nomCommune": "SARRIANS" }, { - "codePostal": "78980", - "codeCommune": "78346", - "libelleAcheminement": "LONGNES", - "nomCommune": "LONGNES" + "codePostal": "80260", + "codeCommune": "80798", + "libelleAcheminement": "VILLERS BOCAGE", + "nomCommune": "VILLERS BOCAGE" }, { - "codePostal": "88290", - "codeCommune": "88447", - "libelleAcheminement": "SAULXURES SUR MOSELOTTE", - "nomCommune": "SAULXURES SUR MOSELOTTE" + "codePostal": "84240", + "codeCommune": "84133", + "libelleAcheminement": "LA TOUR D AIGUES", + "nomCommune": "LA TOUR D AIGUES" }, { - "codePostal": "78711", - "codeCommune": "78362", - "libelleAcheminement": "MANTES LA VILLE", - "nomCommune": "MANTES LA VILLE" + "codePostal": "80800", + "codeCommune": "80799", + "libelleAcheminement": "VILLERS BRETONNEUX", + "nomCommune": "VILLERS BRETONNEUX" }, { - "codePostal": "88140", - "codeCommune": "88448", - "libelleAcheminement": "SAUVILLE", - "nomCommune": "SAUVILLE" + "codePostal": "84850", + "codeCommune": "84134", + "libelleAcheminement": "TRAVAILLAN", + "nomCommune": "TRAVAILLAN" }, { - "codePostal": "78160", - "codeCommune": "78372", - "libelleAcheminement": "MARLY LE ROI", - "nomCommune": "MARLY LE ROI" + "codePostal": "80500", + "codeCommune": "80805", + "libelleAcheminement": "VILLERS TOURNELLE", + "nomCommune": "VILLERS TOURNELLE" }, { - "codePostal": "88130", - "codeCommune": "88449", - "libelleAcheminement": "SAVIGNY", - "nomCommune": "SAVIGNY" + "codePostal": "84110", + "codeCommune": "84137", + "libelleAcheminement": "VAISON LA ROMAINE", + "nomCommune": "VAISON LA ROMAINE" }, { - "codePostal": "78670", - "codeCommune": "78384", - "libelleAcheminement": "MEDAN", - "nomCommune": "MEDAN" + "codePostal": "80120", + "codeCommune": "80806", + "libelleAcheminement": "VILLERS SUR AUTHIE", + "nomCommune": "VILLERS SUR AUTHIE" }, { - "codePostal": "88140", - "codeCommune": "88461", - "libelleAcheminement": "SURIAUVILLE", - "nomCommune": "SURIAUVILLE" + "codePostal": "84270", + "codeCommune": "84141", + "libelleAcheminement": "VEDENE", + "nomCommune": "VEDENE" }, { - "codePostal": "78490", - "codeCommune": "78389", - "libelleAcheminement": "MERE", - "nomCommune": "MERE" + "codePostal": "80670", + "codeCommune": "80819", + "libelleAcheminement": "WARGNIES", + "nomCommune": "WARGNIES" }, { - "codePostal": "88100", - "codeCommune": "88463", - "libelleAcheminement": "TAINTRUX", - "nomCommune": "TAINTRUX" + "codePostal": "84820", + "codeCommune": "84150", + "libelleAcheminement": "VISAN", + "nomCommune": "VISAN" }, { - "codePostal": "78320", - "codeCommune": "78397", - "libelleAcheminement": "LE MESNIL ST DENIS", - "nomCommune": "LE MESNIL ST DENIS" + "codePostal": "80300", + "codeCommune": "80820", + "libelleAcheminement": "WARLOY BAILLON", + "nomCommune": "WARLOY BAILLON" }, { - "codePostal": "88150", - "codeCommune": "88465", - "libelleAcheminement": "CAPAVENIR VOSGES", - "nomCommune": "CAPAVENIR VOSGES" + "codePostal": "85220", + "codeCommune": "85006", + "libelleAcheminement": "APREMONT", + "nomCommune": "APREMONT" }, { - "codePostal": "78250", - "codeCommune": "78403", - "libelleAcheminement": "MEZY SUR SEINE", - "nomCommune": "MEZY SUR SEINE" + "codePostal": "80140", + "codeCommune": "80828", + "libelleAcheminement": "WOIREL", + "nomCommune": "WOIREL" }, { - "codePostal": "88530", - "codeCommune": "88470", - "libelleAcheminement": "LE THOLY", - "nomCommune": "LE THOLY" + "codePostal": "85230", + "codeCommune": "85018", + "libelleAcheminement": "BEAUVOIR SUR MER", + "nomCommune": "BEAUVOIR SUR MER" }, { - "codePostal": "78790", - "codeCommune": "78417", - "libelleAcheminement": "MONTCHAUVET", - "nomCommune": "MONTCHAUVET" + "codePostal": "80310", + "codeCommune": "80835", + "libelleAcheminement": "YZEUX", + "nomCommune": "YZEUX" }, { - "codePostal": "88410", - "codeCommune": "88471", - "libelleAcheminement": "LES THONS", - "nomCommune": "LES THONS" + "codePostal": "85170", + "codeCommune": "85019", + "libelleAcheminement": "BELLEVIGNY", + "nomCommune": "BELLEVIGNY" }, { - "codePostal": "78490", - "codeCommune": "78420", - "libelleAcheminement": "MONTFORT L AMAURY", - "nomCommune": "MONTFORT L AMAURY" + "codePostal": "81140", + "codeCommune": "81007", + "libelleAcheminement": "ALOS", + "nomCommune": "ALOS" }, { - "codePostal": "88500", - "codeCommune": "88476", - "libelleAcheminement": "TOTAINVILLE", - "nomCommune": "TOTAINVILLE" + "codePostal": "85560", + "codeCommune": "85022", + "libelleAcheminement": "LE BERNARD", + "nomCommune": "LE BERNARD" }, { - "codePostal": "78630", - "codeCommune": "78431", - "libelleAcheminement": "MORAINVILLIERS", - "nomCommune": "MORAINVILLIERS" + "codePostal": "81360", + "codeCommune": "81017", + "libelleAcheminement": "ARIFAT", + "nomCommune": "ARIFAT" }, { - "codePostal": "88300", - "codeCommune": "88478", - "libelleAcheminement": "TRANQUEVILLE GRAUX", - "nomCommune": "TRANQUEVILLE GRAUX" + "codePostal": "85710", + "codeCommune": "85024", + "libelleAcheminement": "BOIS DE CENE", + "nomCommune": "BOIS DE CENE" }, { - "codePostal": "78270", - "codeCommune": "78437", - "libelleAcheminement": "MOUSSEAUX SUR SEINE", - "nomCommune": "MOUSSEAUX SUR SEINE" + "codePostal": "81500", + "codeCommune": "81022", + "libelleAcheminement": "BANNIERES", + "nomCommune": "BANNIERES" }, { - "codePostal": "88140", - "codeCommune": "88482", - "libelleAcheminement": "URVILLE", - "nomCommune": "URVILLE" + "codePostal": "85200", + "codeCommune": "85033", + "libelleAcheminement": "BOURNEAU", + "nomCommune": "BOURNEAU" }, { - "codePostal": "78640", - "codeCommune": "78442", - "libelleAcheminement": "NEAUPHLE LE CHATEAU", - "nomCommune": "NEAUPHLE LE CHATEAU" + "codePostal": "81430", + "codeCommune": "81026", + "libelleAcheminement": "BELLEGARDE MARSAL", + "nomCommune": "BELLEGARDE MARSAL" }, { - "codePostal": "88270", - "codeCommune": "88488", - "libelleAcheminement": "VALFROICOURT", - "nomCommune": "VALFROICOURT" + "codePostal": "85120", + "codeCommune": "85037", + "libelleAcheminement": "BREUIL BARRET", + "nomCommune": "BREUIL BARRET" }, { - "codePostal": "78640", - "codeCommune": "78443", - "libelleAcheminement": "NEAUPHLE LE VIEUX", - "nomCommune": "NEAUPHLE LE VIEUX" + "codePostal": "81260", + "codeCommune": "81028", + "libelleAcheminement": "BERLATS", + "nomCommune": "BERLATS" }, { - "codePostal": "88800", - "codeCommune": "88490", - "libelleAcheminement": "VALLEROY LE SEC", - "nomCommune": "VALLEROY LE SEC" + "codePostal": "85410", + "codeCommune": "85040", + "libelleAcheminement": "LA CAILLERE ST HILAIRE", + "nomCommune": "LA CAILLERE ST HILAIRE" }, { - "codePostal": "78125", - "codeCommune": "78464", - "libelleAcheminement": "ORCEMONT", - "nomCommune": "ORCEMONT" + "codePostal": "81400", + "codeCommune": "81033", + "libelleAcheminement": "BLAYE LES MINES", + "nomCommune": "BLAYE LES MINES" }, { - "codePostal": "88000", - "codeCommune": "88495", - "libelleAcheminement": "VAUDEVILLE", - "nomCommune": "VAUDEVILLE" + "codePostal": "85220", + "codeCommune": "85045", + "libelleAcheminement": "LA CHAIZE GIRAUD", + "nomCommune": "LA CHAIZE GIRAUD" }, { - "codePostal": "78910", - "codeCommune": "78475", - "libelleAcheminement": "OSMOY", - "nomCommune": "OSMOY" + "codePostal": "81170", + "codeCommune": "81035", + "libelleAcheminement": "BOURNAZEL", + "nomCommune": "BOURNAZEL" }, { - "codePostal": "88140", - "codeCommune": "88496", - "libelleAcheminement": "VAUDONCOURT", - "nomCommune": "VAUDONCOURT" + "codePostal": "85300", + "codeCommune": "85047", + "libelleAcheminement": "CHALLANS", + "nomCommune": "CHALLANS" }, { - "codePostal": "78730", - "codeCommune": "78499", - "libelleAcheminement": "PONTHEVRARD", - "nomCommune": "PONTHEVRARD" + "codePostal": "81440", + "codeCommune": "81040", + "libelleAcheminement": "BROUSSE", + "nomCommune": "BROUSSE" }, { - "codePostal": "88310", - "codeCommune": "88500", - "libelleAcheminement": "VENTRON", - "nomCommune": "VENTRON" + "codePostal": "85540", + "codeCommune": "85050", + "libelleAcheminement": "LE CHAMP ST PERE", + "nomCommune": "LE CHAMP ST PERE" }, { - "codePostal": "78440", - "codeCommune": "78501", - "libelleAcheminement": "PORCHEVILLE", - "nomCommune": "PORCHEVILLE" + "codePostal": "81600", + "codeCommune": "81041", + "libelleAcheminement": "BROZE", + "nomCommune": "BROZE" }, { - "codePostal": "88210", - "codeCommune": "88501", - "libelleAcheminement": "LE VERMONT", - "nomCommune": "LE VERMONT" + "codePostal": "85110", + "codeCommune": "85051", + "libelleAcheminement": "CHANTONNAY", + "nomCommune": "CHANTONNAY" }, { - "codePostal": "78560", - "codeCommune": "78502", - "libelleAcheminement": "LE PORT MARLY", - "nomCommune": "LE PORT MARLY" + "codePostal": "81340", + "codeCommune": "81047", + "libelleAcheminement": "CADIX", + "nomCommune": "CADIX" }, { - "codePostal": "88600", - "codeCommune": "88502", - "libelleAcheminement": "VERVEZELLE", - "nomCommune": "VERVEZELLE" + "codePostal": "85110", + "codeCommune": "85051", + "libelleAcheminement": "CHANTONNAY", + "nomCommune": "CHANTONNAY" }, { - "codePostal": "78100", - "codeCommune": "78551", - "libelleAcheminement": "ST GERMAIN EN LAYE", - "nomCommune": "ST GERMAIN EN LAYE" + "codePostal": "81130", + "codeCommune": "81048", + "libelleAcheminement": "CAGNAC LES MINES", + "nomCommune": "CAGNAC LES MINES" }, { - "codePostal": "88110", - "codeCommune": "88503", - "libelleAcheminement": "VEXAINCOURT", - "nomCommune": "VEXAINCOURT" + "codePostal": "85670", + "codeCommune": "85055", + "libelleAcheminement": "LA CHAPELLE PALLUAU", + "nomCommune": "LA CHAPELLE PALLUAU" }, { - "codePostal": "78860", - "codeCommune": "78571", - "libelleAcheminement": "ST NOM LA BRETECHE", - "nomCommune": "ST NOM LA BRETECHE" + "codePostal": "81990", + "codeCommune": "81052", + "libelleAcheminement": "CAMBON D ALBI", + "nomCommune": "CAMBON" }, { - "codePostal": "88170", - "codeCommune": "88504", - "libelleAcheminement": "VICHEREY", - "nomCommune": "VICHEREY" + "codePostal": "85210", + "codeCommune": "85056", + "libelleAcheminement": "LA CHAPELLE THEMER", + "nomCommune": "LA CHAPELLE THEMER" }, { - "codePostal": "78500", - "codeCommune": "78586", - "libelleAcheminement": "SARTROUVILLE", - "nomCommune": "SARTROUVILLE" + "codePostal": "81580", + "codeCommune": "81054", + "libelleAcheminement": "CAMBOUNET SUR LE SOR", + "nomCommune": "CAMBOUNET SUR LE SOR" }, { - "codePostal": "88210", - "codeCommune": "88506", - "libelleAcheminement": "VIEUX MOULIN", - "nomCommune": "VIEUX MOULIN" + "codePostal": "85140", + "codeCommune": "85064", + "libelleAcheminement": "CHAUCHE", + "nomCommune": "CHAUCHE" }, { - "codePostal": "78650", - "codeCommune": "78588", - "libelleAcheminement": "SAULX MARCHAIS", - "nomCommune": "SAULX MARCHAIS" + "codePostal": "81200", + "codeCommune": "81066", + "libelleAcheminement": "CAUCALIERES", + "nomCommune": "CAUCALIERES" }, { - "codePostal": "88350", - "codeCommune": "88511", - "libelleAcheminement": "VILLOUXEL", - "nomCommune": "VILLOUXEL" + "codePostal": "85390", + "codeCommune": "85066", + "libelleAcheminement": "CHAVAGNES LES REDOUX", + "nomCommune": "CHAVAGNES LES REDOUX" }, { - "codePostal": "78790", - "codeCommune": "78591", - "libelleAcheminement": "SEPTEUIL", - "nomCommune": "SEPTEUIL" + "codePostal": "81800", + "codeCommune": "81070", + "libelleAcheminement": "COUFOULEUX", + "nomCommune": "COUFOULEUX" }, { - "codePostal": "88450", - "codeCommune": "88513", - "libelleAcheminement": "VINCEY", - "nomCommune": "VINCEY" + "codePostal": "85200", + "codeCommune": "85080", + "libelleAcheminement": "DOIX LES FONTAINES", + "nomCommune": "DOIX LES FONTAINES" }, { - "codePostal": "78980", - "codeCommune": "78608", - "libelleAcheminement": "LE TERTRE ST DENIS", - "nomCommune": "LE TERTRE ST DENIS" + "codePostal": "81340", + "codeCommune": "81071", + "libelleAcheminement": "COURRIS", + "nomCommune": "COURRIS" }, { - "codePostal": "88260", - "codeCommune": "88515", - "libelleAcheminement": "VIOMENIL", - "nomCommune": "VIOMENIL" + "codePostal": "85700", + "codeCommune": "85090", + "libelleAcheminement": "SEVREMONT", + "nomCommune": "SEVREMONT" }, { - "codePostal": "78790", - "codeCommune": "78618", - "libelleAcheminement": "TILLY", - "nomCommune": "TILLY" + "codePostal": "81170", + "codeCommune": "81080", + "libelleAcheminement": "DONNAZAC", + "nomCommune": "DONNAZAC" }, { - "codePostal": "88470", - "codeCommune": "88519", - "libelleAcheminement": "LA VOIVRE", - "nomCommune": "LA VOIVRE" + "codePostal": "85700", + "codeCommune": "85090", + "libelleAcheminement": "SEVREMONT", + "nomCommune": "SEVREMONT" }, { - "codePostal": "78480", - "codeCommune": "78642", - "libelleAcheminement": "VERNEUIL SUR SEINE", - "nomCommune": "VERNEUIL SUR SEINE" + "codePostal": "81260", + "codeCommune": "81086", + "libelleAcheminement": "ESPERAUSSES", + "nomCommune": "ESPERAUSSES" }, { - "codePostal": "88460", - "codeCommune": "88528", - "libelleAcheminement": "XAMONTARUPT", - "nomCommune": "XAMONTARUPT" + "codePostal": "85700", + "codeCommune": "85090", + "libelleAcheminement": "SEVREMONT", + "nomCommune": "SEVREMONT" }, { - "codePostal": "79350", - "codeCommune": "79008", - "libelleAcheminement": "AMAILLOUX", - "nomCommune": "AMAILLOUX" + "codePostal": "81150", + "codeCommune": "81087", + "libelleAcheminement": "FAYSSAC", + "nomCommune": "FAYSSAC" }, { - "codePostal": "88220", - "codeCommune": "88530", - "libelleAcheminement": "XERTIGNY", - "nomCommune": "XERTIGNY" + "codePostal": "85800", + "codeCommune": "85100", + "libelleAcheminement": "GIVRAND", + "nomCommune": "GIVRAND" }, { - "codePostal": "79210", - "codeCommune": "79010", - "libelleAcheminement": "ARCAIS", - "nomCommune": "ARCAIS" + "codePostal": "81340", + "codeCommune": "81089", + "libelleAcheminement": "FAUSSERGUES", + "nomCommune": "FAUSSERGUES" }, { - "codePostal": "88400", - "codeCommune": "88531", - "libelleAcheminement": "XONRUPT LONGEMER", - "nomCommune": "XONRUPT LONGEMER" + "codePostal": "85260", + "codeCommune": "85108", + "libelleAcheminement": "L HERBERGEMENT", + "nomCommune": "L HERBERGEMENT" }, { - "codePostal": "79150", - "codeCommune": "79013", - "libelleAcheminement": "ARGENTONNAY", - "nomCommune": "ARGENTONNAY" + "codePostal": "81500", + "codeCommune": "81102", + "libelleAcheminement": "GARRIGUES", + "nomCommune": "GARRIGUES" }, { - "codePostal": "89710", - "codeCommune": "89003", - "libelleAcheminement": "MONTHOLON", - "nomCommune": "MONTHOLON" + "codePostal": "85340", + "codeCommune": "85112", + "libelleAcheminement": "L ILE D OLONNE", + "nomCommune": "L ILE D OLONNE" }, { - "codePostal": "79600", - "codeCommune": "79016", - "libelleAcheminement": "ASSAIS LES JUMEAUX", - "nomCommune": "ASSAIS LES JUMEAUX" + "codePostal": "81170", + "codeCommune": "81111", + "libelleAcheminement": "LABARTHE BLEYS", + "nomCommune": "LABARTHE BLEYS" }, { - "codePostal": "89160", - "codeCommune": "89006", - "libelleAcheminement": "ANCY LE LIBRE", - "nomCommune": "ANCY LE LIBRE" + "codePostal": "85520", + "codeCommune": "85114", + "libelleAcheminement": "JARD SUR MER", + "nomCommune": "JARD SUR MER" }, { - "codePostal": "79400", - "codeCommune": "79024", - "libelleAcheminement": "AZAY LE BRULE", - "nomCommune": "AZAY LE BRULE" + "codePostal": "81330", + "codeCommune": "81125", + "libelleAcheminement": "LACAZE", + "nomCommune": "LACAZE" }, { - "codePostal": "89440", - "codeCommune": "89008", - "libelleAcheminement": "ANGELY", - "nomCommune": "ANGELY" + "codePostal": "85110", + "codeCommune": "85115", + "libelleAcheminement": "LA JAUDONNIERE", + "nomCommune": "LA JAUDONNIERE" }, { - "codePostal": "79130", - "codeCommune": "79025", - "libelleAcheminement": "AZAY SUR THOUET", - "nomCommune": "AZAY SUR THOUET" + "codePostal": "81210", + "codeCommune": "81128", + "libelleAcheminement": "LACROUZETTE", + "nomCommune": "LACROUZETTE" }, { - "codePostal": "89310", - "codeCommune": "89010", - "libelleAcheminement": "ANNAY SUR SEREIN", - "nomCommune": "ANNAY SUR SEREIN" + "codePostal": "85420", + "codeCommune": "85123", + "libelleAcheminement": "LIEZ", + "nomCommune": "LIEZ" }, { - "codePostal": "79000", - "codeCommune": "79034", - "libelleAcheminement": "BESSINES", - "nomCommune": "BESSINES" + "codePostal": "81640", + "codeCommune": "81135", + "libelleAcheminement": "LAPARROUQUIAL", + "nomCommune": "LAPARROUQUIAL" }, { - "codePostal": "89160", - "codeCommune": "89016", - "libelleAcheminement": "ARGENTENAY", - "nomCommune": "ARGENTENAY" + "codePostal": "85400", + "codeCommune": "85131", + "libelleAcheminement": "LES MAGNILS REIGNIERS", + "nomCommune": "LES MAGNILS REIGNIERS" }, { - "codePostal": "79800", - "codeCommune": "79042", - "libelleAcheminement": "BOUGON", - "nomCommune": "BOUGON" + "codePostal": "81300", + "codeCommune": "81138", + "libelleAcheminement": "LASGRAISSES", + "nomCommune": "LASGRAISSES" }, { - "codePostal": "89160", - "codeCommune": "89017", - "libelleAcheminement": "ARGENTEUIL SUR ARMANCON", - "nomCommune": "ARGENTEUIL SUR ARMANCON" + "codePostal": "85420", + "codeCommune": "85132", + "libelleAcheminement": "MAILLE", + "nomCommune": "MAILLE" }, { - "codePostal": "79600", - "codeCommune": "79047", - "libelleAcheminement": "BOUSSAIS", - "nomCommune": "BOUSSAIS" + "codePostal": "81500", + "codeCommune": "81140", + "libelleAcheminement": "LAVAUR", + "nomCommune": "LAVAUR" }, { - "codePostal": "89800", - "codeCommune": "89034", - "libelleAcheminement": "BEINE", - "nomCommune": "BEINE" + "codePostal": "85320", + "codeCommune": "85135", + "libelleAcheminement": "MAREUIL SUR LAY DISSAIS", + "nomCommune": "MAREUIL SUR LAY DISSAIS" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "81120", + "codeCommune": "81147", + "libelleAcheminement": "LOMBERS", + "nomCommune": "LOMBERS" }, { - "codePostal": "89410", - "codeCommune": "89037", - "libelleAcheminement": "BEON", - "nomCommune": "BEON" + "codePostal": "85420", + "codeCommune": "85139", + "libelleAcheminement": "LE MAZEAU", + "nomCommune": "LE MAZEAU" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "81170", + "codeCommune": "81148", + "libelleAcheminement": "LOUBERS", + "nomCommune": "LOUBERS" }, { - "codePostal": "89420", - "codeCommune": "89042", - "libelleAcheminement": "BIERRY LES BELLES FONTAINES", - "nomCommune": "BIERRY LES BELLES FONTAINES" + "codePostal": "85600", + "codeCommune": "85146", + "libelleAcheminement": "MONTAIGU VENDEE", + "nomCommune": "MONTAIGU VENDEE" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "81220", + "codeCommune": "81151", + "libelleAcheminement": "MAGRIN", + "nomCommune": "MAGRIN" }, { - "codePostal": "89660", - "codeCommune": "89049", - "libelleAcheminement": "BOIS D ARCY", - "nomCommune": "BOIS D ARCY" + "codePostal": "85150", + "codeCommune": "85152", + "libelleAcheminement": "LES ACHARDS", + "nomCommune": "LES ACHARDS" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "81250", + "codeCommune": "81161", + "libelleAcheminement": "MASSALS", + "nomCommune": "MASSALS" }, { - "codePostal": "89400", - "codeCommune": "89050", - "libelleAcheminement": "BONNARD", - "nomCommune": "BONNARD" + "codePostal": "85150", + "codeCommune": "85152", + "libelleAcheminement": "LES ACHARDS", + "nomCommune": "LES ACHARDS" }, { - "codePostal": "79370", - "codeCommune": "79061", - "libelleAcheminement": "CELLES SUR BELLE", - "nomCommune": "CELLES SUR BELLE" + "codePostal": "81800", + "codeCommune": "81164", + "libelleAcheminement": "MEZENS", + "nomCommune": "MEZENS" }, { - "codePostal": "89210", - "codeCommune": "89055", - "libelleAcheminement": "BRIENON SUR ARMANCON", - "nomCommune": "BRIENON SUR ARMANCON" + "codePostal": "85390", + "codeCommune": "85154", + "libelleAcheminement": "MOUILLERON ST GERMAIN", + "nomCommune": "MOUILLERON ST GERMAIN" }, { - "codePostal": "79220", - "codeCommune": "79070", - "libelleAcheminement": "LA CHAPELLE BATON", - "nomCommune": "LA CHAPELLE BATON" + "codePostal": "81250", + "codeCommune": "81167", + "libelleAcheminement": "MIOLLES", + "nomCommune": "MIOLLES" }, { - "codePostal": "89400", - "codeCommune": "89059", - "libelleAcheminement": "BUSSY EN OTHE", - "nomCommune": "BUSSY EN OTHE" + "codePostal": "85430", + "codeCommune": "85161", + "libelleAcheminement": "NIEUL LE DOLENT", + "nomCommune": "NIEUL LE DOLENT" }, { - "codePostal": "79360", - "codeCommune": "79078", - "libelleAcheminement": "PLAINE D ARGENSON", - "nomCommune": "PLAINE D ARGENSON" + "codePostal": "81190", + "codeCommune": "81172", + "libelleAcheminement": "MONTAURIOL", + "nomCommune": "MONTAURIOL" }, { - "codePostal": "89116", - "codeCommune": "89063", - "libelleAcheminement": "LA CELLE ST CYR", - "nomCommune": "LA CELLE ST CYR" + "codePostal": "85330", + "codeCommune": "85163", + "libelleAcheminement": "NOIRMOUTIER EN L ILE", + "nomCommune": "NOIRMOUTIER EN L ILE" }, { - "codePostal": "79360", - "codeCommune": "79078", - "libelleAcheminement": "PLAINE D ARGENSON", - "nomCommune": "PLAINE D ARGENSON" + "codePostal": "81470", + "codeCommune": "81179", + "libelleAcheminement": "MONTGEY", + "nomCommune": "MONTGEY" }, { - "codePostal": "89320", - "codeCommune": "89066", - "libelleAcheminement": "CERISIERS", - "nomCommune": "CERISIERS" + "codePostal": "85170", + "codeCommune": "85178", + "libelleAcheminement": "LE POIRE SUR VIE", + "nomCommune": "LE POIRE SUR VIE" }, { - "codePostal": "79700", - "codeCommune": "79079", - "libelleAcheminement": "MAULEON", - "nomCommune": "MAULEON" + "codePostal": "81430", + "codeCommune": "81190", + "libelleAcheminement": "MOUZIEYS TEULET", + "nomCommune": "MOUZIEYS TEULET" }, { - "codePostal": "89800", - "codeCommune": "89068", - "libelleAcheminement": "CHABLIS", - "nomCommune": "CHABLIS" + "codePostal": "85440", + "codeCommune": "85179", + "libelleAcheminement": "POIROUX", + "nomCommune": "POIROUX" }, { - "codePostal": "79700", - "codeCommune": "79079", - "libelleAcheminement": "MAULEON", - "nomCommune": "MAULEON" + "codePostal": "81120", + "codeCommune": "81198", + "libelleAcheminement": "ORBAN", + "nomCommune": "ORBAN" }, { - "codePostal": "89350", - "codeCommune": "89073", - "libelleAcheminement": "CHAMPIGNELLES", - "nomCommune": "CHAMPIGNELLES" + "codePostal": "85320", + "codeCommune": "85193", + "libelleAcheminement": "ROSNAY", + "nomCommune": "ROSNAY" }, { - "codePostal": "79350", - "codeCommune": "79088", - "libelleAcheminement": "CHICHE", - "nomCommune": "CHICHE" + "codePostal": "81310", + "codeCommune": "81202", + "libelleAcheminement": "PARISOT", + "nomCommune": "PARISOT" }, { - "codePostal": "89340", - "codeCommune": "89074", - "libelleAcheminement": "CHAMPIGNY", - "nomCommune": "CHAMPIGNY" + "codePostal": "85260", + "codeCommune": "85197", + "libelleAcheminement": "MONTREVERD", + "nomCommune": "MONTREVERD" }, { - "codePostal": "79170", - "codeCommune": "79090", - "libelleAcheminement": "CHIZE", - "nomCommune": "CHIZE" + "codePostal": "81800", + "codeCommune": "81220", + "libelleAcheminement": "RABASTENS", + "nomCommune": "RABASTENS" }, { - "codePostal": "89290", - "codeCommune": "89077", - "libelleAcheminement": "CHAMPS SUR YONNE", - "nomCommune": "CHAMPS SUR YONNE" + "codePostal": "85540", + "codeCommune": "85200", + "libelleAcheminement": "ST AVAUGOURD DES LANDES", + "nomCommune": "ST AVAUGOURD DES LANDES" }, { - "codePostal": "79140", - "codeCommune": "79091", - "libelleAcheminement": "CIRIERES", - "nomCommune": "CIRIERES" + "codePostal": "81240", + "codeCommune": "81223", + "libelleAcheminement": "LE RIALET", + "nomCommune": "LE RIALET" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "85580", + "codeCommune": "85207", + "libelleAcheminement": "ST DENIS DU PAYRE", + "nomCommune": "ST DENIS DU PAYRE" }, { - "codePostal": "79510", - "codeCommune": "79100", - "libelleAcheminement": "COULON", - "nomCommune": "COULON" + "codePostal": "81170", + "codeCommune": "81224", + "libelleAcheminement": "LE RIOLS", + "nomCommune": "LE RIOLS" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "85250", + "codeCommune": "85215", + "libelleAcheminement": "ST FULGENT", + "nomCommune": "ST FULGENT" }, { - "codePostal": "79330", - "codeCommune": "79102", - "libelleAcheminement": "COULONGES THOUARSAIS", - "nomCommune": "COULONGES THOUARSAIS" + "codePostal": "81210", + "codeCommune": "81227", + "libelleAcheminement": "ROQUECOURBE", + "nomCommune": "ROQUECOURBE" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "85110", + "codeCommune": "85220", + "libelleAcheminement": "ST GERMAIN DE PRINCAY", + "nomCommune": "ST GERMAIN DE PRINCAY" }, { - "codePostal": "79450", - "codeCommune": "79118", - "libelleAcheminement": "FENERY", - "nomCommune": "FENERY" + "codePostal": "81800", + "codeCommune": "81228", + "libelleAcheminement": "ROQUEMAURE", + "nomCommune": "ROQUEMAURE" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "85440", + "codeCommune": "85231", + "libelleAcheminement": "ST HILAIRE LA FORET", + "nomCommune": "ST HILAIRE LA FORET" }, { - "codePostal": "79340", - "codeCommune": "79124", - "libelleAcheminement": "LES FORGES", - "nomCommune": "LES FORGES" + "codePostal": "81120", + "codeCommune": "81233", + "libelleAcheminement": "TERRE DE BANCALIE", + "nomCommune": "TERRE DE BANCALIE" }, { - "codePostal": "89690", - "codeCommune": "89100", - "libelleAcheminement": "CHEROY", - "nomCommune": "CHEROY" + "codePostal": "85480", + "codeCommune": "85232", + "libelleAcheminement": "ST HILAIRE LE VOUHIS", + "nomCommune": "ST HILAIRE LE VOUHIS" }, { - "codePostal": "79370", - "codeCommune": "79129", - "libelleAcheminement": "FRESSINES", - "nomCommune": "FRESSINES" + "codePostal": "81120", + "codeCommune": "81233", + "libelleAcheminement": "TERRE DE BANCALIE", + "nomCommune": "TERRE DE BANCALIE" }, { - "codePostal": "89100", - "codeCommune": "89113", - "libelleAcheminement": "COLLEMIERS", - "nomCommune": "COLLEMIERS" + "codePostal": "85590", + "codeCommune": "85240", + "libelleAcheminement": "ST MALO DU BOIS", + "nomCommune": "ST MALO DU BOIS" }, { - "codePostal": "79330", - "codeCommune": "79134", - "libelleAcheminement": "GLENAY", - "nomCommune": "GLENAY" + "codePostal": "81140", + "codeCommune": "81234", + "libelleAcheminement": "ROUSSAYROLLES", + "nomCommune": "ROUSSAYROLLES" }, { - "codePostal": "89500", - "codeCommune": "89116", - "libelleAcheminement": "CORNANT", - "nomCommune": "CORNANT" + "codePostal": "85140", + "codeCommune": "85246", + "libelleAcheminement": "ST MARTIN DES NOYERS", + "nomCommune": "ST MARTIN DES NOYERS" }, { - "codePostal": "79110", - "codeCommune": "79136", - "libelleAcheminement": "ALLOINAY", - "nomCommune": "ALLOINAY" + "codePostal": "81240", + "codeCommune": "81239", + "libelleAcheminement": "ST AMANS VALTORET", + "nomCommune": "ST AMANS VALTORET" }, { - "codePostal": "89580", - "codeCommune": "89117", - "libelleAcheminement": "COULANGERON", - "nomCommune": "COULANGERON" + "codePostal": "85150", + "codeCommune": "85250", + "libelleAcheminement": "ST MATHURIN", + "nomCommune": "ST MATHURIN" }, { - "codePostal": "79360", - "codeCommune": "79137", - "libelleAcheminement": "GRANZAY GRIPT", - "nomCommune": "GRANZAY GRIPT" + "codePostal": "81210", + "codeCommune": "81252", + "libelleAcheminement": "ST GERMIER", + "nomCommune": "ST GERMIER" }, { - "codePostal": "89320", - "codeCommune": "89120", - "libelleAcheminement": "COULOURS", - "nomCommune": "COULOURS" + "codePostal": "85120", + "codeCommune": "85251", + "libelleAcheminement": "ST MAURICE DES NOUES", + "nomCommune": "ST MAURICE DES NOUES" }, { - "codePostal": "79500", - "codeCommune": "79174", - "libelleAcheminement": "MELLE", - "nomCommune": "MELLE" + "codePostal": "81500", + "codeCommune": "81255", + "libelleAcheminement": "ST JEAN DE RIVES", + "nomCommune": "ST JEAN DE RIVES" }, { - "codePostal": "89480", - "codeCommune": "89129", - "libelleAcheminement": "CRAIN", - "nomCommune": "CRAIN" + "codePostal": "85200", + "codeCommune": "85256", + "libelleAcheminement": "ST MICHEL LE CLOUCQ", + "nomCommune": "ST MICHEL LE CLOUCQ" }, { - "codePostal": "79120", - "codeCommune": "79177", - "libelleAcheminement": "MESSE", - "nomCommune": "MESSE" + "codePostal": "81210", + "codeCommune": "81256", + "libelleAcheminement": "ST JEAN DE VALS", + "nomCommune": "ST JEAN DE VALS" }, { - "codePostal": "89740", - "codeCommune": "89131", - "libelleAcheminement": "CRUZY LE CHATEL", - "nomCommune": "CRUZY LE CHATEL" + "codePostal": "85670", + "codeCommune": "85260", + "libelleAcheminement": "ST PAUL MONT PENIT", + "nomCommune": "ST PAUL MONT PENIT" }, { - "codePostal": "79320", - "codeCommune": "79179", - "libelleAcheminement": "MONCOUTANT SUR SEVRE", - "nomCommune": "MONCOUTANT SUR SEVRE" + "codePostal": "81340", + "codeCommune": "81259", + "libelleAcheminement": "ST JULIEN GAULENE", + "nomCommune": "ST JULIEN GAULENE" }, { - "codePostal": "89440", - "codeCommune": "89141", - "libelleAcheminement": "DISSANGIS", - "nomCommune": "DISSANGIS" + "codePostal": "85120", + "codeCommune": "85264", + "libelleAcheminement": "ST PIERRE DU CHEMIN", + "nomCommune": "ST PIERRE DU CHEMIN" }, { - "codePostal": "79370", - "codeCommune": "79185", - "libelleAcheminement": "AIGONDIGNE", - "nomCommune": "AIGONDIGNE" + "codePostal": "81170", + "codeCommune": "81262", + "libelleAcheminement": "ST MARCEL CAMPES", + "nomCommune": "ST MARCEL CAMPES" }, { - "codePostal": "89150", - "codeCommune": "89144", - "libelleAcheminement": "DOMATS", - "nomCommune": "DOMATS" + "codePostal": "85420", + "codeCommune": "85265", + "libelleAcheminement": "ST PIERRE LE VIEUX", + "nomCommune": "ST PIERRE LE VIEUX" }, { - "codePostal": "79000", - "codeCommune": "79191", - "libelleAcheminement": "NIORT", - "nomCommune": "NIORT" + "codePostal": "81330", + "codeCommune": "81267", + "libelleAcheminement": "ST PIERRE DE TRIVISY", + "nomCommune": "ST PIERRE DE TRIVISY" }, { - "codePostal": "89200", - "codeCommune": "89146", - "libelleAcheminement": "DOMECY SUR LE VAULT", - "nomCommune": "DOMECY SUR LE VAULT" + "codePostal": "85540", + "codeCommune": "85277", + "libelleAcheminement": "ST VINCENT SUR GRAON", + "nomCommune": "ST VINCENT SUR GRAON" }, { - "codePostal": "79000", - "codeCommune": "79191", - "libelleAcheminement": "NIORT", - "nomCommune": "NIORT" + "codePostal": "81700", + "codeCommune": "81270", + "libelleAcheminement": "ST SERNIN LES LAVAUR", + "nomCommune": "ST SERNIN LES LAVAUR" }, { - "codePostal": "89130", - "codeCommune": "89147", - "libelleAcheminement": "DRACY", - "nomCommune": "DRACY" + "codePostal": "85200", + "codeCommune": "85281", + "libelleAcheminement": "SERIGNE", + "nomCommune": "SERIGNE" }, { - "codePostal": "79250", - "codeCommune": "79195", - "libelleAcheminement": "NUEIL LES AUBIERS", - "nomCommune": "NUEIL LES AUBIERS" + "codePostal": "81370", + "codeCommune": "81271", + "libelleAcheminement": "ST SULPICE LA POINTE", + "nomCommune": "ST SULPICE LA POINTE" }, { - "codePostal": "89700", - "codeCommune": "89153", - "libelleAcheminement": "EPINEUIL", - "nomCommune": "EPINEUIL" + "codePostal": "85440", + "codeCommune": "85288", + "libelleAcheminement": "TALMONT ST HILAIRE", + "nomCommune": "TALMONT ST HILAIRE" }, { - "codePostal": "79100", - "codeCommune": "79196", - "libelleAcheminement": "PLAINE ET VALLEES", - "nomCommune": "PLAINE ET VALLEES" + "codePostal": "81630", + "codeCommune": "81276", + "libelleAcheminement": "SALVAGNAC", + "nomCommune": "SALVAGNAC" }, { - "codePostal": "89210", - "codeCommune": "89156", - "libelleAcheminement": "ESNON", - "nomCommune": "ESNON" + "codePostal": "85120", + "codeCommune": "85289", + "libelleAcheminement": "LA TARDIERE", + "nomCommune": "LA TARDIERE" }, { - "codePostal": "79200", - "codeCommune": "79208", - "libelleAcheminement": "LA PEYRATTE", - "nomCommune": "LA PEYRATTE" + "codePostal": "81630", + "codeCommune": "81279", + "libelleAcheminement": "LA SAUZIERE ST JEAN", + "nomCommune": "LA SAUZIERE ST JEAN" }, { - "codePostal": "89800", - "codeCommune": "89168", - "libelleAcheminement": "FLEYS", - "nomCommune": "FLEYS" + "codePostal": "85580", + "codeCommune": "85297", + "libelleAcheminement": "TRIAIZE", + "nomCommune": "TRIAIZE" }, { - "codePostal": "79200", - "codeCommune": "79213", - "libelleAcheminement": "POMPAIRE", - "nomCommune": "POMPAIRE" + "codePostal": "81570", + "codeCommune": "81281", + "libelleAcheminement": "SEMALENS", + "nomCommune": "SEMALENS" }, { - "codePostal": "89800", - "codeCommune": "89175", - "libelleAcheminement": "FONTENAY PRES CHABLIS", - "nomCommune": "FONTENAY PRES CHABLIS" + "codePostal": "85190", + "codeCommune": "85300", + "libelleAcheminement": "VENANSAULT", + "nomCommune": "VENANSAULT" }, { - "codePostal": "79390", - "codeCommune": "79218", - "libelleAcheminement": "PRESSIGNY", - "nomCommune": "PRESSIGNY" + "codePostal": "81990", + "codeCommune": "81284", + "libelleAcheminement": "LE SEQUESTRE", + "nomCommune": "LE SEQUESTRE" }, { - "codePostal": "89310", - "codeCommune": "89194", - "libelleAcheminement": "GRIMAULT", - "nomCommune": "GRIMAULT" + "codePostal": "85240", + "codeCommune": "85306", + "libelleAcheminement": "XANTON CHASSENON", + "nomCommune": "XANTON CHASSENON" }, { - "codePostal": "79210", - "codeCommune": "79220", - "libelleAcheminement": "PRIN DEYRANCON", - "nomCommune": "PRIN DEYRANCON" + "codePostal": "81350", + "codeCommune": "81285", + "libelleAcheminement": "SERENAC", + "nomCommune": "SERENAC" }, { - "codePostal": "89113", - "codeCommune": "89196", - "libelleAcheminement": "VALRAVILLON", - "nomCommune": "VALRAVILLON" + "codePostal": "86170", + "codeCommune": "86016", + "libelleAcheminement": "AVANTON", + "nomCommune": "AVANTON" }, { - "codePostal": "79220", - "codeCommune": "79241", - "libelleAcheminement": "ST CHRISTOPHE SUR ROC", - "nomCommune": "ST CHRISTOPHE SUR ROC" + "codePostal": "81540", + "codeCommune": "81288", + "libelleAcheminement": "SOREZE", + "nomCommune": "SOREZE" }, { - "codePostal": "89420", - "codeCommune": "89197", - "libelleAcheminement": "GUILLON TERRE PLAINE", - "nomCommune": "GUILLON TERRE PLAINE" + "codePostal": "86210", + "codeCommune": "86020", + "libelleAcheminement": "BELLEFONDS", + "nomCommune": "BELLEFONDS" }, { - "codePostal": "79150", - "codeCommune": "79242", - "libelleAcheminement": "VOULMENTIN", - "nomCommune": "VOULMENTIN" + "codePostal": "81440", + "codeCommune": "81311", + "libelleAcheminement": "VENES", + "nomCommune": "VENES" }, { - "codePostal": "89420", - "codeCommune": "89197", - "libelleAcheminement": "GUILLON TERRE PLAINE", - "nomCommune": "GUILLON TERRE PLAINE" + "codePostal": "86210", + "codeCommune": "86032", + "libelleAcheminement": "BONNEUIL MATOURS", + "nomCommune": "BONNEUIL MATOURS" }, { - "codePostal": "79100", - "codeCommune": "79244", - "libelleAcheminement": "ST CYR LA LANDE", - "nomCommune": "ST CYR LA LANDE" + "codePostal": "81140", + "codeCommune": "81313", + "libelleAcheminement": "LE VERDIER", + "nomCommune": "LE VERDIER" }, { - "codePostal": "89580", - "codeCommune": "89199", - "libelleAcheminement": "GY L EVEQUE", - "nomCommune": "GY L EVEQUE" + "codePostal": "86410", + "codeCommune": "86034", + "libelleAcheminement": "BOURESSE", + "nomCommune": "BOURESSE" }, { - "codePostal": "79200", - "codeCommune": "79255", - "libelleAcheminement": "ST GERMAIN DE LONGUE CHAUME", - "nomCommune": "ST GERMAIN DE LONGUE CHAUME" + "codePostal": "81430", + "codeCommune": "81317", + "libelleAcheminement": "VILLEFRANCHE D ALBIGEOIS", + "nomCommune": "VILLEFRANCHE D ALBIGEOIS" }, { - "codePostal": "89250", - "codeCommune": "89200", - "libelleAcheminement": "HAUTERIVE", - "nomCommune": "HAUTERIVE" + "codePostal": "86510", + "codeCommune": "86039", + "libelleAcheminement": "BRUX", + "nomCommune": "BRUX" }, { - "codePostal": "79340", - "codeCommune": "79256", - "libelleAcheminement": "ST GERMIER", - "nomCommune": "ST GERMIER" + "codePostal": "81240", + "codeCommune": "81321", + "libelleAcheminement": "LE VINTROU", + "nomCommune": "LE VINTROU" }, { - "codePostal": "89290", - "codeCommune": "89202", - "libelleAcheminement": "IRANCY", - "nomCommune": "IRANCY" + "codePostal": "86110", + "codeCommune": "86075", + "libelleAcheminement": "CHOUPPES", + "nomCommune": "CHOUPPES" }, { - "codePostal": "79420", - "codeCommune": "79267", - "libelleAcheminement": "ST LIN", - "nomCommune": "ST LIN" + "codePostal": "81290", + "codeCommune": "81325", + "libelleAcheminement": "VIVIERS LES MONTAGNES", + "nomCommune": "VIVIERS LES MONTAGNES" }, { - "codePostal": "89200", - "codeCommune": "89203", - "libelleAcheminement": "ISLAND", - "nomCommune": "ISLAND" + "codePostal": "86400", + "codeCommune": "86078", + "libelleAcheminement": "CIVRAY", + "nomCommune": "CIVRAY" }, { - "codePostal": "79400", - "codeCommune": "79270", - "libelleAcheminement": "ST MAIXENT L ECOLE", - "nomCommune": "ST MAIXENT L ECOLE" + "codePostal": "82290", + "codeCommune": "82001", + "libelleAcheminement": "ALBEFEUILLE LAGARDE", + "nomCommune": "ALBEFEUILLE LAGARDE" }, { - "codePostal": "89300", - "codeCommune": "89206", - "libelleAcheminement": "JOIGNY", - "nomCommune": "JOIGNY" + "codePostal": "86700", + "codeCommune": "86082", + "libelleAcheminement": "VALENCE EN POITOU", + "nomCommune": "VALENCE EN POITOU" }, { - "codePostal": "79420", - "codeCommune": "79278", - "libelleAcheminement": "ST MARTIN DU FOUILLOUX", - "nomCommune": "ST MARTIN DU FOUILLOUX" + "codePostal": "82120", + "codeCommune": "82009", + "libelleAcheminement": "BALIGNAC", + "nomCommune": "BALIGNAC" }, { - "codePostal": "89440", - "codeCommune": "89208", - "libelleAcheminement": "JOUX LA VILLE", - "nomCommune": "JOUX LA VILLE" + "codePostal": "86700", + "codeCommune": "86082", + "libelleAcheminement": "VALENCE EN POITOU", + "nomCommune": "VALENCE EN POITOU" }, { - "codePostal": "79230", - "codeCommune": "79294", - "libelleAcheminement": "ST ROMANS DES CHAMPS", - "nomCommune": "ST ROMANS DES CHAMPS" + "codePostal": "82190", + "codeCommune": "82024", + "libelleAcheminement": "BRASSAC", + "nomCommune": "BRASSAC" }, { - "codePostal": "89560", - "codeCommune": "89215", - "libelleAcheminement": "LAIN", - "nomCommune": "LAIN" + "codePostal": "86700", + "codeCommune": "86082", + "libelleAcheminement": "VALENCE EN POITOU", + "nomCommune": "VALENCE EN POITOU" }, { - "codePostal": "79120", - "codeCommune": "79297", - "libelleAcheminement": "STE SOLINE", - "nomCommune": "STE SOLINE" + "codePostal": "82800", + "codeCommune": "82026", + "libelleAcheminement": "BRUNIQUEL", + "nomCommune": "BRUNIQUEL" }, { - "codePostal": "89520", - "codeCommune": "89216", - "libelleAcheminement": "LAINSECQ", - "nomCommune": "LAINSECQ" + "codePostal": "86600", + "codeCommune": "86083", + "libelleAcheminement": "COULOMBIERS", + "nomCommune": "COULOMBIERS" }, { - "codePostal": "79500", - "codeCommune": "79301", - "libelleAcheminement": "ST VINCENT LA CHATRE", - "nomCommune": "ST VINCENT LA CHATRE" + "codePostal": "82400", + "codeCommune": "82032", + "libelleAcheminement": "CASTELSAGRAT", + "nomCommune": "CASTELSAGRAT" }, { - "codePostal": "89570", - "codeCommune": "89219", - "libelleAcheminement": "LASSON", - "nomCommune": "LASSON" + "codePostal": "86110", + "codeCommune": "86089", + "libelleAcheminement": "CUHON", + "nomCommune": "CUHON" }, { - "codePostal": "79000", - "codeCommune": "79308", - "libelleAcheminement": "SCIECQ", - "nomCommune": "SCIECQ" + "codePostal": "82120", + "codeCommune": "82034", + "libelleAcheminement": "CASTERA BOUZET", + "nomCommune": "CASTERA BOUZET" }, { - "codePostal": "89170", - "codeCommune": "89220", - "libelleAcheminement": "LAVAU", - "nomCommune": "LAVAU" + "codePostal": "86420", + "codeCommune": "86093", + "libelleAcheminement": "DERCE", + "nomCommune": "DERCE" }, { - "codePostal": "79130", - "codeCommune": "79311", - "libelleAcheminement": "SECONDIGNY", - "nomCommune": "SECONDIGNY" + "codePostal": "82210", + "codeCommune": "82035", + "libelleAcheminement": "CAUMONT", + "nomCommune": "CAUMONT" }, { - "codePostal": "89800", - "codeCommune": "89224", - "libelleAcheminement": "LICHERES PRES AIGREMONT", - "nomCommune": "LICHERES PRES AIGREMONT" + "codePostal": "86340", + "codeCommune": "86105", + "libelleAcheminement": "GIZAY", + "nomCommune": "GIZAY" }, { - "codePostal": "79170", - "codeCommune": "79312", - "libelleAcheminement": "SELIGNE", - "nomCommune": "SELIGNE" + "codePostal": "82500", + "codeCommune": "82036", + "libelleAcheminement": "LE CAUSE", + "nomCommune": "LE CAUSE" }, { - "codePostal": "89660", - "codeCommune": "89225", - "libelleAcheminement": "LICHERES SUR YONNE", - "nomCommune": "LICHERES SUR YONNE" + "codePostal": "86200", + "codeCommune": "86106", + "libelleAcheminement": "GLENOUZE", + "nomCommune": "GLENOUZE" }, { - "codePostal": "79390", - "codeCommune": "79326", - "libelleAcheminement": "THENEZAY", - "nomCommune": "THENEZAY" + "codePostal": "82240", + "codeCommune": "82040", + "libelleAcheminement": "CAYRIECH", + "nomCommune": "CAYRIECH" }, { - "codePostal": "89800", - "codeCommune": "89226", - "libelleAcheminement": "LIGNORELLES", - "nomCommune": "LIGNORELLES" + "codePostal": "86240", + "codeCommune": "86113", + "libelleAcheminement": "ITEUIL", + "nomCommune": "ITEUIL" }, { - "codePostal": "79100", - "codeCommune": "79329", - "libelleAcheminement": "THOUARS", - "nomCommune": "THOUARS" + "codePostal": "82370", + "codeCommune": "82044", + "libelleAcheminement": "CORBARIEU", + "nomCommune": "CORBARIEU" }, { - "codePostal": "89240", - "codeCommune": "89228", - "libelleAcheminement": "LINDRY", - "nomCommune": "LINDRY" + "codePostal": "86800", + "codeCommune": "86114", + "libelleAcheminement": "JARDRES", + "nomCommune": "JARDRES" }, { - "codePostal": "79100", - "codeCommune": "79329", - "libelleAcheminement": "THOUARS", - "nomCommune": "THOUARS" + "codePostal": "82700", + "codeCommune": "82045", + "libelleAcheminement": "CORDES TOLOSANNES", + "nomCommune": "CORDES TOLOSANNES" }, { - "codePostal": "89140", - "codeCommune": "89229", - "libelleAcheminement": "LIXY", - "nomCommune": "LIXY" + "codePostal": "86500", + "codeCommune": "86117", + "libelleAcheminement": "JOUHET", + "nomCommune": "JOUHET" }, { - "codePostal": "79100", - "codeCommune": "79331", - "libelleAcheminement": "TOURTENAY", - "nomCommune": "TOURTENAY" + "codePostal": "82210", + "codeCommune": "82046", + "libelleAcheminement": "COUTURES", + "nomCommune": "COUTURES" }, { - "codePostal": "89300", - "codeCommune": "89230", - "libelleAcheminement": "LOOZE", - "nomCommune": "LOOZE" + "codePostal": "86190", + "codeCommune": "86121", + "libelleAcheminement": "LATILLE", + "nomCommune": "LATILLE" }, { - "codePostal": "79200", - "codeCommune": "79347", - "libelleAcheminement": "VIENNAY", - "nomCommune": "VIENNAY" + "codePostal": "82170", + "codeCommune": "82048", + "libelleAcheminement": "DIEUPENTALE", + "nomCommune": "DIEUPENTALE" }, { - "codePostal": "89480", - "codeCommune": "89234", - "libelleAcheminement": "LUCY SUR YONNE", - "nomCommune": "LUCY SUR YONNE" + "codePostal": "86800", + "codeCommune": "86124", + "libelleAcheminement": "LAVOUX", + "nomCommune": "LAVOUX" }, { - "codePostal": "80320", - "codeCommune": "80002", - "libelleAcheminement": "ABLAINCOURT PRESSOIR", - "nomCommune": "ABLAINCOURT PRESSOIR" + "codePostal": "82500", + "codeCommune": "82064", + "libelleAcheminement": "GARIES", + "nomCommune": "GARIES" }, { - "codePostal": "89100", - "codeCommune": "89236", - "libelleAcheminement": "MAILLOT", - "nomCommune": "MAILLOT" + "codePostal": "86800", + "codeCommune": "86135", + "libelleAcheminement": "LINIERS", + "nomCommune": "LINIERS" }, { - "codePostal": "80560", - "codeCommune": "80003", - "libelleAcheminement": "ACHEUX EN AMIENOIS", - "nomCommune": "ACHEUX EN AMIENOIS" + "codePostal": "82400", + "codeCommune": "82065", + "libelleAcheminement": "GASQUES", + "nomCommune": "GASQUES" }, { - "codePostal": "89500", - "codeCommune": "89245", - "libelleAcheminement": "MARSANGY", - "nomCommune": "MARSANGY" + "codePostal": "86200", + "codeCommune": "86137", + "libelleAcheminement": "LOUDUN", + "nomCommune": "LOUDUN" }, { - "codePostal": "80690", - "codeCommune": "80009", - "libelleAcheminement": "AILLY LE HAUT CLOCHER", - "nomCommune": "AILLY LE HAUT CLOCHER" + "codePostal": "82500", + "codeCommune": "82070", + "libelleAcheminement": "GLATENS", + "nomCommune": "GLATENS" }, { - "codePostal": "89660", - "codeCommune": "89253", - "libelleAcheminement": "MERRY SUR YONNE", - "nomCommune": "MERRY SUR YONNE" + "codePostal": "86270", + "codeCommune": "86143", + "libelleAcheminement": "MAIRE", + "nomCommune": "MAIRE" }, { - "codePostal": "80270", - "codeCommune": "80013", - "libelleAcheminement": "AIRAINES", - "nomCommune": "AIRAINES" + "codePostal": "82160", + "codeCommune": "82082", + "libelleAcheminement": "LACAPELLE LIVRON", + "nomCommune": "LACAPELLE LIVRON" }, { - "codePostal": "89580", - "codeCommune": "89256", - "libelleAcheminement": "MIGE", - "nomCommune": "MIGE" + "codePostal": "86170", + "codeCommune": "86144", + "libelleAcheminement": "MAISONNEUVE", + "nomCommune": "MAISONNEUVE" }, { - "codePostal": "80200", - "codeCommune": "80017", - "libelleAcheminement": "ALLAINES", - "nomCommune": "ALLAINES" + "codePostal": "82100", + "codeCommune": "82086", + "libelleAcheminement": "LAFITTE", + "nomCommune": "LAFITTE" }, { - "codePostal": "89700", - "codeCommune": "89262", - "libelleAcheminement": "MOLOSMES", - "nomCommune": "MOLOSMES" + "codePostal": "86110", + "codeCommune": "86160", + "libelleAcheminement": "MIREBEAU", + "nomCommune": "MIREBEAU" }, { - "codePostal": "80000", - "codeCommune": "80021", - "libelleAcheminement": "AMIENS", - "nomCommune": "AMIENS" + "codePostal": "82130", + "codeCommune": "82087", + "libelleAcheminement": "LAFRANCAISE", + "nomCommune": "LAFRANCAISE" }, { - "codePostal": "89100", - "codeCommune": "89274", - "libelleAcheminement": "NAILLY", - "nomCommune": "NAILLY" + "codePostal": "86330", + "codeCommune": "86161", + "libelleAcheminement": "MONCONTOUR", + "nomCommune": "MONCONTOUR" }, { - "codePostal": "80140", - "codeCommune": "80022", - "libelleAcheminement": "ANDAINVILLE", - "nomCommune": "ANDAINVILLE" + "codePostal": "82240", + "codeCommune": "82092", + "libelleAcheminement": "LAPENCHE", + "nomCommune": "LAPENCHE" }, { - "codePostal": "89390", - "codeCommune": "89280", - "libelleAcheminement": "NUITS", - "nomCommune": "NUITS" + "codePostal": "86330", + "codeCommune": "86161", + "libelleAcheminement": "MONCONTOUR", + "nomCommune": "MONCONTOUR" }, { - "codePostal": "80120", - "codeCommune": "80025", - "libelleAcheminement": "ARGOULES", - "nomCommune": "ARGOULES" + "codePostal": "82230", + "codeCommune": "82098", + "libelleAcheminement": "LEOJAC", + "nomCommune": "LEOJAC" }, { - "codePostal": "89110", - "codeCommune": "89281", - "libelleAcheminement": "LES ORMES", - "nomCommune": "LES ORMES" + "codePostal": "86430", + "codeCommune": "86172", + "libelleAcheminement": "MOUTERRE SUR BLOURDE", + "nomCommune": "MOUTERRE SUR BLOURDE" }, { - "codePostal": "80910", - "codeCommune": "80031", - "libelleAcheminement": "ARVILLERS", - "nomCommune": "ARVILLERS" + "codePostal": "82210", + "codeCommune": "82109", + "libelleAcheminement": "MERLES", + "nomCommune": "MERLES" }, { - "codePostal": "89560", - "codeCommune": "89283", - "libelleAcheminement": "OUANNE", - "nomCommune": "OUANNE" + "codePostal": "86310", + "codeCommune": "86175", + "libelleAcheminement": "NALLIERS", + "nomCommune": "NALLIERS" }, { - "codePostal": "80800", - "codeCommune": "80036", - "libelleAcheminement": "AUBIGNY", - "nomCommune": "AUBIGNY" + "codePostal": "82190", + "codeCommune": "82111", + "libelleAcheminement": "MIRAMONT DE QUERCY", + "nomCommune": "MIRAMONT DE QUERCY" }, { - "codePostal": "89240", - "codeCommune": "89286", - "libelleAcheminement": "PARLY", - "nomCommune": "PARLY" + "codePostal": "86170", + "codeCommune": "86177", + "libelleAcheminement": "NEUVILLE DE POITOU", + "nomCommune": "NEUVILLE DE POITOU" }, { - "codePostal": "80140", - "codeCommune": "80040", - "libelleAcheminement": "AUMATRE", - "nomCommune": "AUMATRE" + "codePostal": "82230", + "codeCommune": "82115", + "libelleAcheminement": "MONCLAR DE QUERCY", + "nomCommune": "MONCLAR DE QUERCY" }, { - "codePostal": "89000", - "codeCommune": "89295", - "libelleAcheminement": "PERRIGNY", - "nomCommune": "PERRIGNY" + "codePostal": "86340", + "codeCommune": "86178", + "libelleAcheminement": "NIEUIL L ESPOIR", + "nomCommune": "NIEUIL L ESPOIR" }, { - "codePostal": "80640", - "codeCommune": "80041", - "libelleAcheminement": "AUMONT", - "nomCommune": "AUMONT" + "codePostal": "82100", + "codeCommune": "82118", + "libelleAcheminement": "MONTAIN", + "nomCommune": "MONTAIN" }, { - "codePostal": "89460", - "codeCommune": "89314", - "libelleAcheminement": "PREGILBERT", - "nomCommune": "PREGILBERT" + "codePostal": "86340", + "codeCommune": "86180", + "libelleAcheminement": "NOUAILLE MAUPERTUIS", + "nomCommune": "NOUAILLE MAUPERTUIS" }, { - "codePostal": "80600", - "codeCommune": "80044", - "libelleAcheminement": "AUTHIEULE", - "nomCommune": "AUTHIEULE" + "codePostal": "82400", + "codeCommune": "82130", + "libelleAcheminement": "MONTJOI", + "nomCommune": "MONTJOI" }, { - "codePostal": "89800", - "codeCommune": "89315", - "libelleAcheminement": "PREHY", - "nomCommune": "PREHY" + "codePostal": "86450", + "codeCommune": "86193", + "libelleAcheminement": "PLEUMARTIN", + "nomCommune": "PLEUMARTIN" }, { - "codePostal": "80300", - "codeCommune": "80045", - "libelleAcheminement": "AUTHUILLE", - "nomCommune": "AUTHUILLE" + "codePostal": "82800", + "codeCommune": "82134", + "libelleAcheminement": "NEGREPELISSE", + "nomCommune": "NEGREPELISSE" }, { - "codePostal": "89200", - "codeCommune": "89316", - "libelleAcheminement": "PROVENCY", - "nomCommune": "PROVENCY" + "codePostal": "86260", + "codeCommune": "86202", + "libelleAcheminement": "LA PUYE", + "nomCommune": "LA PUYE" }, { - "codePostal": "80370", - "codeCommune": "80060", - "libelleAcheminement": "BEALCOURT", - "nomCommune": "BEALCOURT" + "codePostal": "82370", + "codeCommune": "82136", + "libelleAcheminement": "ORGUEIL", + "nomCommune": "ORGUEIL" }, { - "codePostal": "89390", - "codeCommune": "89321", - "libelleAcheminement": "RAVIERES", - "nomCommune": "RAVIERES" + "codePostal": "86150", + "codeCommune": "86203", + "libelleAcheminement": "QUEAUX", + "nomCommune": "QUEAUX" }, { - "codePostal": "80110", - "codeCommune": "80064", - "libelleAcheminement": "BEAUCOURT EN SANTERRE", - "nomCommune": "BEAUCOURT EN SANTERRE" + "codePostal": "82340", + "codeCommune": "82139", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "89170", - "codeCommune": "89325", - "libelleAcheminement": "RONCHERES", - "nomCommune": "RONCHERES" + "codePostal": "86270", + "codeCommune": "86207", + "libelleAcheminement": "LA ROCHE POSAY", + "nomCommune": "LA ROCHE POSAY" }, { - "codePostal": "80260", - "codeCommune": "80066", - "libelleAcheminement": "BEAUCOURT SUR L HALLUE", - "nomCommune": "BEAUCOURT SUR L HALLUE" + "codePostal": "82170", + "codeCommune": "82142", + "libelleAcheminement": "POMPIGNAN", + "nomCommune": "POMPIGNAN" }, { - "codePostal": "89500", - "codeCommune": "89327", - "libelleAcheminement": "ROUSSON", - "nomCommune": "ROUSSON" + "codePostal": "86340", + "codeCommune": "86209", + "libelleAcheminement": "ROCHES PREMARIE ANDILLE", + "nomCommune": "ROCHES PREMARIE ANDILLE" }, { - "codePostal": "80870", - "codeCommune": "80076", - "libelleAcheminement": "BEHEN", - "nomCommune": "BEHEN" + "codePostal": "82800", + "codeCommune": "82145", + "libelleAcheminement": "PUYGAILLARD DE QUERCY", + "nomCommune": "PUYGAILLARD DE QUERCY" }, { - "codePostal": "89420", - "codeCommune": "89333", - "libelleAcheminement": "ST ANDRE EN TERRE PLAINE", - "nomCommune": "ST ANDRE EN TERRE PLAINE" + "codePostal": "86480", + "codeCommune": "86213", + "libelleAcheminement": "ROUILLE", + "nomCommune": "ROUILLE" }, { - "codePostal": "80310", - "codeCommune": "80082", - "libelleAcheminement": "BELLOY SUR SOMME", - "nomCommune": "BELLOY SUR SOMME" + "codePostal": "82440", + "codeCommune": "82149", + "libelleAcheminement": "REALVILLE", + "nomCommune": "REALVILLE" }, { - "codePostal": "89100", - "codeCommune": "89342", - "libelleAcheminement": "ST DENIS LES SENS", - "nomCommune": "ST DENIS LES SENS" + "codePostal": "86230", + "codeCommune": "86217", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "80290", - "codeCommune": "80083", - "libelleAcheminement": "BERGICOURT", - "nomCommune": "BERGICOURT" + "codePostal": "82150", + "codeCommune": "82151", + "libelleAcheminement": "ROQUECOR", + "nomCommune": "ROQUECOR" }, { - "codePostal": "89170", - "codeCommune": "89344", - "libelleAcheminement": "ST FARGEAU", - "nomCommune": "ST FARGEAU" + "codePostal": "86140", + "codeCommune": "86221", + "libelleAcheminement": "ST GENEST D AMBIERE", + "nomCommune": "ST GENEST D AMBIERE" }, { - "codePostal": "80290", - "codeCommune": "80098", - "libelleAcheminement": "BETTEMBOS", - "nomCommune": "BETTEMBOS" + "codePostal": "82140", + "codeCommune": "82155", + "libelleAcheminement": "ST ANTONIN NOBLE VAL", + "nomCommune": "ST ANTONIN NOBLE VAL" }, { - "codePostal": "89600", - "codeCommune": "89345", - "libelleAcheminement": "ST FLORENTIN", - "nomCommune": "ST FLORENTIN" + "codePostal": "86230", + "codeCommune": "86224", + "libelleAcheminement": "ST GERVAIS LES TROIS CLOCHERS", + "nomCommune": "ST GERVAIS LES TROIS CLOCHERS" }, { - "codePostal": "80270", - "codeCommune": "80099", - "libelleAcheminement": "BETTENCOURT RIVIERE", - "nomCommune": "BETTENCOURT RIVIERE" + "codePostal": "82150", + "codeCommune": "82157", + "libelleAcheminement": "ST BEAUZEIL", + "nomCommune": "ST BEAUZEIL" }, { - "codePostal": "89630", - "codeCommune": "89347", - "libelleAcheminement": "ST GERMAIN DES CHAMPS", - "nomCommune": "ST GERMAIN DES CHAMPS" + "codePostal": "86330", + "codeCommune": "86225", + "libelleAcheminement": "ST JEAN DE SAUVES", + "nomCommune": "ST JEAN DE SAUVES" }, { - "codePostal": "80200", - "codeCommune": "80102", - "libelleAcheminement": "BIACHES", - "nomCommune": "BIACHES" + "codePostal": "82340", + "codeCommune": "82158", + "libelleAcheminement": "ST CIRICE", + "nomCommune": "ST CIRICE" }, { - "codePostal": "89450", - "codeCommune": "89364", - "libelleAcheminement": "ST PERE", - "nomCommune": "ST PERE" + "codePostal": "86800", + "codeCommune": "86226", + "libelleAcheminement": "ST JULIEN L ARS", + "nomCommune": "ST JULIEN L ARS" }, { - "codePostal": "80190", - "codeCommune": "80105", - "libelleAcheminement": "BILLANCOURT", - "nomCommune": "BILLANCOURT" + "codePostal": "82120", + "codeCommune": "82163", + "libelleAcheminement": "ST JEAN DU BOUZET", + "nomCommune": "ST JEAN DU BOUZET" }, { - "codePostal": "89520", - "codeCommune": "89367", - "libelleAcheminement": "SAINTS EN PUISAYE", - "nomCommune": "SAINTS EN PUISAYE" + "codePostal": "86300", + "codeCommune": "86233", + "libelleAcheminement": "VALDIVIENNE", + "nomCommune": "VALDIVIENNE" }, { - "codePostal": "80230", - "codeCommune": "80110", - "libelleAcheminement": "BOISMONT", - "nomCommune": "BOISMONT" + "codePostal": "82400", + "codeCommune": "82175", + "libelleAcheminement": "ST VINCENT LESPINASSE", + "nomCommune": "ST VINCENT LESPINASSE" }, { - "codePostal": "89420", - "codeCommune": "89375", - "libelleAcheminement": "SANTIGNY", - "nomCommune": "SANTIGNY" + "codePostal": "86160", + "codeCommune": "86235", + "libelleAcheminement": "ST MAURICE LA CLOUERE", + "nomCommune": "ST MAURICE LA CLOUERE" }, { - "codePostal": "80910", - "codeCommune": "80116", - "libelleAcheminement": "BOUCHOIR", - "nomCommune": "BOUCHOIR" + "codePostal": "82110", + "codeCommune": "82183", + "libelleAcheminement": "TREJOULS", + "nomCommune": "TREJOULS" }, { - "codePostal": "89700", - "codeCommune": "89393", - "libelleAcheminement": "SERRIGNY", - "nomCommune": "SERRIGNY" + "codePostal": "86250", + "codeCommune": "86242", + "libelleAcheminement": "ST ROMAIN", + "nomCommune": "ST ROMAIN" }, { - "codePostal": "80540", - "codeCommune": "80119", - "libelleAcheminement": "BOUGAINVILLE", - "nomCommune": "BOUGAINVILLE" + "codePostal": "82150", + "codeCommune": "82185", + "libelleAcheminement": "VALEILLES", + "nomCommune": "VALEILLES" }, { - "codePostal": "89110", - "codeCommune": "89397", - "libelleAcheminement": "SOMMECAISE", - "nomCommune": "SOMMECAISE" + "codePostal": "86100", + "codeCommune": "86245", + "libelleAcheminement": "SENILLE ST SAUVEUR", + "nomCommune": "SENILLE ST SAUVEUR" }, { - "codePostal": "80220", - "codeCommune": "80126", - "libelleAcheminement": "BOUTTENCOURT", - "nomCommune": "BOUTTENCOURT" + "codePostal": "83600", + "codeCommune": "83001", + "libelleAcheminement": "LES ADRETS DE L ESTEREL", + "nomCommune": "LES ADRETS DE L ESTEREL" }, { - "codePostal": "89570", - "codeCommune": "89398", - "libelleAcheminement": "SORMERY", - "nomCommune": "SORMERY" + "codePostal": "86310", + "codeCommune": "86246", + "libelleAcheminement": "ST SAVIN", + "nomCommune": "ST SAVIN" }, { - "codePostal": "80540", - "codeCommune": "80142", - "libelleAcheminement": "BRIQUEMESNIL FLOXICOURT", - "nomCommune": "BRIQUEMESNIL FLOXICOURT" + "codePostal": "83840", + "codeCommune": "83020", + "libelleAcheminement": "LE BOURGUET", + "nomCommune": "LE BOURGUET" }, { - "codePostal": "89560", - "codeCommune": "89405", - "libelleAcheminement": "LES HAUTS DE FORTERRE", - "nomCommune": "LES HAUTS DE FORTERRE" + "codePostal": "86600", + "codeCommune": "86253", + "libelleAcheminement": "SANXAY", + "nomCommune": "SANXAY" }, { - "codePostal": "80430", - "codeCommune": "80143", - "libelleAcheminement": "BROCOURT", - "nomCommune": "BROCOURT" + "codePostal": "83170", + "codeCommune": "83023", + "libelleAcheminement": "BRIGNOLES", + "nomCommune": "BRIGNOLES" }, { - "codePostal": "89450", - "codeCommune": "89409", - "libelleAcheminement": "THAROISEAU", - "nomCommune": "THAROISEAU" + "codePostal": "86500", + "codeCommune": "86254", + "libelleAcheminement": "SAULGE", + "nomCommune": "SAULGE" }, { - "codePostal": "80220", - "codeCommune": "80148", - "libelleAcheminement": "BUIGNY LES GAMACHES", - "nomCommune": "BUIGNY LES GAMACHES" + "codePostal": "83340", + "codeCommune": "83026", + "libelleAcheminement": "CABASSE", + "nomCommune": "CABASSE" }, { - "codePostal": "89320", - "codeCommune": "89411", - "libelleAcheminement": "LES VALLEES DE LA VANNE", - "nomCommune": "LES VALLEES DE LA VANNE" + "codePostal": "86250", + "codeCommune": "86266", + "libelleAcheminement": "SURIN", + "nomCommune": "SURIN" }, { - "codePostal": "80132", - "codeCommune": "80149", - "libelleAcheminement": "BUIGNY ST MACLOU", - "nomCommune": "BUIGNY ST MACLOU" + "codePostal": "83440", + "codeCommune": "83029", + "libelleAcheminement": "CALLIAN", + "nomCommune": "CALLIAN" }, { - "codePostal": "89430", - "codeCommune": "89413", - "libelleAcheminement": "THOREY", - "nomCommune": "THOREY" + "codePostal": "86540", + "codeCommune": "86272", + "libelleAcheminement": "THURE", + "nomCommune": "THURE" }, { - "codePostal": "80560", - "codeCommune": "80153", - "libelleAcheminement": "BUS LES ARTOIS", - "nomCommune": "BUS LES ARTOIS" + "codePostal": "83570", + "codeCommune": "83032", + "libelleAcheminement": "CARCES", + "nomCommune": "CARCES" }, { - "codePostal": "89520", - "codeCommune": "89416", - "libelleAcheminement": "THURY", - "nomCommune": "THURY" + "codePostal": "86230", + "codeCommune": "86275", + "libelleAcheminement": "USSEAU", + "nomCommune": "USSEAU" }, { - "codePostal": "80450", - "codeCommune": "80164", - "libelleAcheminement": "CAMON", - "nomCommune": "CAMON" + "codePostal": "83320", + "codeCommune": "83034", + "libelleAcheminement": "CARQUEIRANNE", + "nomCommune": "CARQUEIRANNE" }, { - "codePostal": "89520", - "codeCommune": "89420", - "libelleAcheminement": "TREIGNY PERREUSE STE COLOMBE", - "nomCommune": "TREIGNY PERREUSE STE COLOMBE" + "codePostal": "86220", + "codeCommune": "86279", + "libelleAcheminement": "VAUX SUR VIENNE", + "nomCommune": "VAUX SUR VIENNE" }, { - "codePostal": "80290", - "codeCommune": "80179", - "libelleAcheminement": "CAULIERES", - "nomCommune": "CAULIERES" + "codePostal": "83330", + "codeCommune": "83035", + "libelleAcheminement": "LE CASTELLET", + "nomCommune": "LE CASTELLET" }, { - "codePostal": "89230", - "codeCommune": "89437", - "libelleAcheminement": "VENOUSE", - "nomCommune": "VENOUSE" + "codePostal": "86380", + "codeCommune": "86281", + "libelleAcheminement": "ST MARTIN LA PALLU", + "nomCommune": "ST MARTIN LA PALLU" }, { - "codePostal": "80700", - "codeCommune": "80189", - "libelleAcheminement": "LA CHAVATTE", - "nomCommune": "LA CHAVATTE" + "codePostal": "83170", + "codeCommune": "83037", + "libelleAcheminement": "LA CELLE", + "nomCommune": "LA CELLE" }, { - "codePostal": "89150", - "codeCommune": "89450", - "libelleAcheminement": "VILLEBOUGIS", - "nomCommune": "VILLEBOUGIS" + "codePostal": "86380", + "codeCommune": "86281", + "libelleAcheminement": "ST MARTIN LA PALLU", + "nomCommune": "ST MARTIN LA PALLU" }, { - "codePostal": "80340", - "codeCommune": "80194", - "libelleAcheminement": "CHUIGNES", - "nomCommune": "CHUIGNES" + "codePostal": "83610", + "codeCommune": "83043", + "libelleAcheminement": "COLLOBRIERES", + "nomCommune": "COLLOBRIERES" }, { - "codePostal": "89320", - "codeCommune": "89451", - "libelleAcheminement": "VILLECHETIVE", - "nomCommune": "VILLECHETIVE" + "codePostal": "86260", + "codeCommune": "86288", + "libelleAcheminement": "VICQ SUR GARTEMPE", + "nomCommune": "VICQ SUR GARTEMPE" }, { - "codePostal": "80370", - "codeCommune": "80208", - "libelleAcheminement": "CONTEVILLE", - "nomCommune": "CONTEVILLE" + "codePostal": "83840", + "codeCommune": "83044", + "libelleAcheminement": "COMPS SUR ARTUBY", + "nomCommune": "COMPS SUR ARTUBY" }, { - "codePostal": "89350", - "codeCommune": "89462", - "libelleAcheminement": "VILLENEUVE LES GENETS", - "nomCommune": "VILLENEUVE LES GENETS" + "codePostal": "86340", + "codeCommune": "86290", + "libelleAcheminement": "LA VILLEDIEU DU CLAIN", + "nomCommune": "LA VILLEDIEU DU CLAIN" }, { - "codePostal": "80800", - "codeCommune": "80212", - "libelleAcheminement": "CORBIE", - "nomCommune": "CORBIE" + "codePostal": "83330", + "codeCommune": "83053", + "libelleAcheminement": "EVENOS", + "nomCommune": "EVENOS" }, { - "codePostal": "89230", - "codeCommune": "89463", - "libelleAcheminement": "VILLENEUVE ST SALVES", - "nomCommune": "VILLENEUVE ST SALVES" + "codePostal": "86310", + "codeCommune": "86291", + "libelleAcheminement": "VILLEMORT", + "nomCommune": "VILLEMORT" }, { - "codePostal": "80300", - "codeCommune": "80216", - "libelleAcheminement": "COURCELETTE", - "nomCommune": "COURCELETTE" + "codePostal": "83830", + "codeCommune": "83056", + "libelleAcheminement": "FIGANIERES", + "nomCommune": "FIGANIERES" }, { - "codePostal": "89140", - "codeCommune": "89467", - "libelleAcheminement": "VILLETHIERRY", - "nomCommune": "VILLETHIERRY" + "codePostal": "86580", + "codeCommune": "86297", + "libelleAcheminement": "VOUNEUIL SOUS BIARD", + "nomCommune": "VOUNEUIL SOUS BIARD" }, { - "codePostal": "80290", - "codeCommune": "80218", - "libelleAcheminement": "COURCELLES SOUS MOYENCOURT", - "nomCommune": "COURCELLES SOUS MOYENCOURT" + "codePostal": "83136", + "codeCommune": "83059", + "libelleAcheminement": "FORCALQUEIRET", + "nomCommune": "FORCALQUEIRET" }, { - "codePostal": "89800", - "codeCommune": "89477", - "libelleAcheminement": "VILLY", - "nomCommune": "VILLY" + "codePostal": "86170", + "codeCommune": "86299", + "libelleAcheminement": "VOUZAILLES", + "nomCommune": "VOUZAILLES" }, { - "codePostal": "80190", - "codeCommune": "80224", - "libelleAcheminement": "CRESSY OMENCOURT", - "nomCommune": "CRESSY OMENCOURT" + "codePostal": "83670", + "codeCommune": "83060", + "libelleAcheminement": "FOX AMPHOUX", + "nomCommune": "FOX AMPHOUX" }, { - "codePostal": "89290", - "codeCommune": "89478", - "libelleAcheminement": "VINCELLES", - "nomCommune": "VINCELLES" + "codePostal": "87700", + "codeCommune": "87001", + "libelleAcheminement": "AIXE SUR VIENNE", + "nomCommune": "AIXE SUR VIENNE" }, { - "codePostal": "80190", - "codeCommune": "80230", - "libelleAcheminement": "CURCHY", - "nomCommune": "CURCHY" + "codePostal": "83600", + "codeCommune": "83061", + "libelleAcheminement": "FREJUS", + "nomCommune": "FREJUS" }, { - "codePostal": "89270", - "codeCommune": "89485", - "libelleAcheminement": "VOUTENAY SUR CURE", - "nomCommune": "VOUTENAY SUR CURE" + "codePostal": "87240", + "codeCommune": "87002", + "libelleAcheminement": "AMBAZAC", + "nomCommune": "AMBAZAC" }, { - "codePostal": "80700", - "codeCommune": "80232", - "libelleAcheminement": "DAMERY", - "nomCommune": "DAMERY" + "codePostal": "83560", + "codeCommune": "83066", + "libelleAcheminement": "GINASSERVIS", + "nomCommune": "GINASSERVIS" }, { - "codePostal": "90800", - "codeCommune": "90004", - "libelleAcheminement": "ARGIESANS", - "nomCommune": "ARGIESANS" + "codePostal": "87120", + "codeCommune": "87004", + "libelleAcheminement": "AUGNE", + "nomCommune": "AUGNE" }, { - "codePostal": "80700", - "codeCommune": "80233", - "libelleAcheminement": "DANCOURT POPINCOURT", - "nomCommune": "DANCOURT POPINCOURT" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "90140", - "codeCommune": "90018", - "libelleAcheminement": "BREBOTTE", - "nomCommune": "BREBOTTE" + "codePostal": "87120", + "codeCommune": "87009", + "libelleAcheminement": "BEAUMONT DU LAC", + "nomCommune": "BEAUMONT DU LAC" }, { - "codePostal": "80110", - "codeCommune": "80237", - "libelleAcheminement": "DEMUIN", - "nomCommune": "DEMUIN" + "codePostal": "83980", + "codeCommune": "83070", + "libelleAcheminement": "LE LAVANDOU", + "nomCommune": "LE LAVANDOU" }, { - "codePostal": "90160", - "codeCommune": "90034", - "libelleAcheminement": "DENNEY", - "nomCommune": "DENNEY" + "codePostal": "87340", + "codeCommune": "87016", + "libelleAcheminement": "LES BILLANGES", + "nomCommune": "LES BILLANGES" }, { - "codePostal": "80200", - "codeCommune": "80239", - "libelleAcheminement": "DEVISE", - "nomCommune": "DEVISE" + "codePostal": "83840", + "codeCommune": "83074", + "libelleAcheminement": "LA MARTRE", + "nomCommune": "LA MARTRE" }, { - "codePostal": "90400", - "codeCommune": "90035", - "libelleAcheminement": "DORANS", - "nomCommune": "DORANS" + "codePostal": "87230", + "codeCommune": "87027", + "libelleAcheminement": "BUSSIERE GALANT", + "nomCommune": "BUSSIERE GALANT" }, { - "codePostal": "80110", - "codeCommune": "80242", - "libelleAcheminement": "DOMART SUR LA LUCE", - "nomCommune": "DOMART SUR LA LUCE" + "codePostal": "83670", + "codeCommune": "83084", + "libelleAcheminement": "MONTMEYAN", + "nomCommune": "MONTMEYAN" }, { - "codePostal": "90300", - "codeCommune": "90037", - "libelleAcheminement": "ELOIE", - "nomCommune": "ELOIE" + "codePostal": "87320", + "codeCommune": "87028", + "libelleAcheminement": "VAL D OIRE ET GARTEMPE", + "nomCommune": "VAL D OIRE ET GARTEMPE" }, { - "codePostal": "80140", - "codeCommune": "80251", - "libelleAcheminement": "DOUDELAINVILLE", - "nomCommune": "DOUDELAINVILLE" + "codePostal": "83920", + "codeCommune": "83085", + "libelleAcheminement": "LA MOTTE", + "nomCommune": "LA MOTTE" }, { - "codePostal": "90200", - "codeCommune": "90052", - "libelleAcheminement": "GIROMAGNY", - "nomCommune": "GIROMAGNY" + "codePostal": "87140", + "codeCommune": "87033", + "libelleAcheminement": "CHAMBORET", + "nomCommune": "CHAMBORET" }, { - "codePostal": "80640", - "codeCommune": "80259", - "libelleAcheminement": "DROMESNIL", - "nomCommune": "DROMESNIL" + "codePostal": "83390", + "codeCommune": "83091", + "libelleAcheminement": "PIERREFEU DU VAR", + "nomCommune": "PIERREFEU DU VAR" }, { - "codePostal": "90360", - "codeCommune": "90058", - "libelleAcheminement": "LACHAPELLE SOUS ROUGEMONT", - "nomCommune": "LACHAPELLE SOUS ROUGEMONT" + "codePostal": "87230", + "codeCommune": "87036", + "libelleAcheminement": "CHAMPSAC", + "nomCommune": "CHAMPSAC" }, { - "codePostal": "80480", - "codeCommune": "80261", - "libelleAcheminement": "DURY", - "nomCommune": "DURY" + "codePostal": "83640", + "codeCommune": "83093", + "libelleAcheminement": "PLAN D AUPS STE BAUME", + "nomCommune": "PLAN D AUPS STE BAUME" }, { - "codePostal": "90170", - "codeCommune": "90061", - "libelleAcheminement": "LAMADELEINE VAL DES ANGES", - "nomCommune": "LAMADELEINE VAL DES ANGES" + "codePostal": "87290", + "codeCommune": "87041", + "libelleAcheminement": "CHATEAUPONSAC", + "nomCommune": "CHATEAUPONSAC" }, { - "codePostal": "80700", - "codeCommune": "80263", - "libelleAcheminement": "L ECHELLE ST AURIN", - "nomCommune": "L ECHELLE ST AURIN" + "codePostal": "83670", + "codeCommune": "83095", + "libelleAcheminement": "PONTEVES", + "nomCommune": "PONTEVES" }, { - "codePostal": "90150", - "codeCommune": "90062", - "libelleAcheminement": "LARIVIERE", - "nomCommune": "LARIVIERE" + "codePostal": "87400", + "codeCommune": "87042", + "libelleAcheminement": "LE CHATENET EN DOGNON", + "nomCommune": "LE CHATENET EN DOGNON" }, { - "codePostal": "80200", - "codeCommune": "80267", - "libelleAcheminement": "ENNEMAIN", - "nomCommune": "ENNEMAIN" + "codePostal": "83630", + "codeCommune": "83102", + "libelleAcheminement": "REGUSSE", + "nomCommune": "REGUSSE" }, { - "codePostal": "90200", - "codeCommune": "90065", - "libelleAcheminement": "LEPUIX", - "nomCommune": "LEPUIX" + "codePostal": "87520", + "codeCommune": "87045", + "libelleAcheminement": "CIEUX", + "nomCommune": "CIEUX" }, { - "codePostal": "80740", - "codeCommune": "80271", - "libelleAcheminement": "EPEHY", - "nomCommune": "EPEHY" + "codePostal": "83200", + "codeCommune": "83103", + "libelleAcheminement": "LE REVEST LES EAUX", + "nomCommune": "LE REVEST LES EAUX" }, { - "codePostal": "90130", - "codeCommune": "90077", - "libelleAcheminement": "PETIT CROIX", - "nomCommune": "PETIT CROIX" + "codePostal": "87500", + "codeCommune": "87049", + "libelleAcheminement": "COUSSAC BONNEVAL", + "nomCommune": "COUSSAC BONNEVAL" }, { - "codePostal": "80360", - "codeCommune": "80275", - "libelleAcheminement": "EQUANCOURT", - "nomCommune": "EQUANCOURT" + "codePostal": "83560", + "codeCommune": "83104", + "libelleAcheminement": "RIANS", + "nomCommune": "RIANS" }, { - "codePostal": "90140", - "codeCommune": "90083", - "libelleAcheminement": "RECOUVRANCE", - "nomCommune": "RECOUVRANCE" + "codePostal": "87150", + "codeCommune": "87054", + "libelleAcheminement": "CUSSAC", + "nomCommune": "CUSSAC" }, { - "codePostal": "80580", - "codeCommune": "80282", - "libelleAcheminement": "ERONDELLE", - "nomCommune": "ERONDELLE" + "codePostal": "83136", + "codeCommune": "83106", + "libelleAcheminement": "ROCBARON", + "nomCommune": "ROCBARON" }, { - "codePostal": "90100", - "codeCommune": "90101", - "libelleAcheminement": "VELLESCOT", - "nomCommune": "VELLESCOT" + "codePostal": "87190", + "codeCommune": "87057", + "libelleAcheminement": "DOMPIERRE LES EGLISES", + "nomCommune": "DOMPIERRE LES EGLISES" }, { - "codePostal": "80340", - "codeCommune": "80295", - "libelleAcheminement": "ETINEHEM MERICOURT", - "nomCommune": "ETINEHEM MERICOURT" + "codePostal": "83120", + "codeCommune": "83115", + "libelleAcheminement": "STE MAXIME", + "nomCommune": "STE MAXIME" }, { - "codePostal": "90400", - "codeCommune": "90104", - "libelleAcheminement": "VEZELOIS", - "nomCommune": "VEZELOIS" + "codePostal": "87520", + "codeCommune": "87078", + "libelleAcheminement": "JAVERDAT", + "nomCommune": "JAVERDAT" }, { - "codePostal": "80500", - "codeCommune": "80302", - "libelleAcheminement": "FAVEROLLES", - "nomCommune": "FAVEROLLES" + "codePostal": "83470", + "codeCommune": "83116", + "libelleAcheminement": "ST MAXIMIN LA STE BAUME", + "nomCommune": "ST MAXIMIN LA STE BAUME" }, { - "codePostal": "91670", - "codeCommune": "91016", - "libelleAcheminement": "ANGERVILLE", - "nomCommune": "ANGERVILLE" + "codePostal": "87440", + "codeCommune": "87091", + "libelleAcheminement": "MAISONNAIS SUR TARDOIRE", + "nomCommune": "MAISONNAIS SUR TARDOIRE" }, { - "codePostal": "80120", - "codeCommune": "80303", - "libelleAcheminement": "FAVIERES", - "nomCommune": "FAVIERES" + "codePostal": "83530", + "codeCommune": "83118", + "libelleAcheminement": "ST RAPHAEL", + "nomCommune": "ST RAPHAEL" }, { - "codePostal": "91610", - "codeCommune": "91045", - "libelleAcheminement": "BALLANCOURT SUR ESSONNE", - "nomCommune": "BALLANCOURT SUR ESSONNE" + "codePostal": "87330", + "codeCommune": "87097", + "libelleAcheminement": "VAL D ISSOIRE", + "nomCommune": "VAL D ISSOIRE" }, { - "codePostal": "80200", - "codeCommune": "80304", - "libelleAcheminement": "FAY", - "nomCommune": "FAY" + "codePostal": "83470", + "codeCommune": "83125", + "libelleAcheminement": "SEILLONS SOURCE D ARGENS", + "nomCommune": "SEILLONS SOURCE D ARGENS" }, { - "codePostal": "91150", - "codeCommune": "91075", - "libelleAcheminement": "BOIS HERPIN", - "nomCommune": "BOIS HERPIN" + "codePostal": "87330", + "codeCommune": "87097", + "libelleAcheminement": "VAL D ISSOIRE", + "nomCommune": "VAL D ISSOIRE" }, { - "codePostal": "80750", - "codeCommune": "80310", - "libelleAcheminement": "FIENVILLERS", - "nomCommune": "FIENVILLERS" + "codePostal": "83670", + "codeCommune": "83135", + "libelleAcheminement": "TAVERNES", + "nomCommune": "TAVERNES" }, { - "codePostal": "91070", - "codeCommune": "91086", - "libelleAcheminement": "BONDOUFLE", - "nomCommune": "BONDOUFLE" + "codePostal": "87440", + "codeCommune": "87115", + "libelleAcheminement": "PENSOL", + "nomCommune": "PENSOL" }, { - "codePostal": "80360", - "codeCommune": "80312", - "libelleAcheminement": "FINS", - "nomCommune": "FINS" + "codePostal": "83200", + "codeCommune": "83137", + "libelleAcheminement": "TOULON", + "nomCommune": "TOULON" }, { - "codePostal": "91650", - "codeCommune": "91105", - "libelleAcheminement": "BREUILLET", - "nomCommune": "BREUILLET" + "codePostal": "87470", + "codeCommune": "87117", + "libelleAcheminement": "PEYRAT LE CHATEAU", + "nomCommune": "PEYRAT LE CHATEAU" }, { - "codePostal": "80260", - "codeCommune": "80316", - "libelleAcheminement": "FLESSELLES", - "nomCommune": "FLESSELLES" + "codePostal": "83440", + "codeCommune": "83138", + "libelleAcheminement": "TOURRETTES", + "nomCommune": "TOURRETTES" }, { - "codePostal": "91650", - "codeCommune": "91106", - "libelleAcheminement": "BREUX JOUY", - "nomCommune": "BREUX JOUY" + "codePostal": "87510", + "codeCommune": "87118", + "libelleAcheminement": "PEYRILHAC", + "nomCommune": "PEYRILHAC" }, { - "codePostal": "80560", - "codeCommune": "80329", - "libelleAcheminement": "FORCEVILLE EN AMIENOIS", - "nomCommune": "FORCEVILLE" + "codePostal": "83560", + "codeCommune": "83146", + "libelleAcheminement": "LA VERDIERE", + "nomCommune": "LA VERDIERE" }, { - "codePostal": "91800", - "codeCommune": "91114", - "libelleAcheminement": "BRUNOY", - "nomCommune": "BRUNOY" + "codePostal": "87640", + "codeCommune": "87122", + "libelleAcheminement": "RAZES", + "nomCommune": "RAZES" }, { - "codePostal": "80160", - "codeCommune": "80334", - "libelleAcheminement": "FOSSEMANANT", - "nomCommune": "FOSSEMANANT" + "codePostal": "83630", + "codeCommune": "83147", + "libelleAcheminement": "VERIGNON", + "nomCommune": "VERIGNON" }, { - "codePostal": "91720", - "codeCommune": "91121", - "libelleAcheminement": "BUNO BONNEVAUX", - "nomCommune": "BUNO BONNEVAUX" + "codePostal": "87570", + "codeCommune": "87125", + "libelleAcheminement": "RILHAC RANCON", + "nomCommune": "RILHAC RANCON" }, { - "codePostal": "80170", - "codeCommune": "80339", - "libelleAcheminement": "FOUQUESCOURT", - "nomCommune": "FOUQUESCOURT" + "codePostal": "83170", + "codeCommune": "83151", + "libelleAcheminement": "VINS SUR CARAMY", + "nomCommune": "VINS SUR CARAMY" }, { - "codePostal": "91440", - "codeCommune": "91122", - "libelleAcheminement": "BURES SUR YVETTE", - "nomCommune": "BURES SUR YVETTE" + "codePostal": "87800", + "codeCommune": "87127", + "libelleAcheminement": "LA ROCHE L ABEILLE", + "nomCommune": "LA ROCHE L ABEILLE" }, { - "codePostal": "80290", - "codeCommune": "80357", - "libelleAcheminement": "FRESNOY AU VAL", - "nomCommune": "FRESNOY AU VAL" + "codePostal": "83430", + "codeCommune": "83153", + "libelleAcheminement": "ST MANDRIER SUR MER", + "nomCommune": "ST MANDRIER SUR MER" }, { - "codePostal": "91560", - "codeCommune": "91191", - "libelleAcheminement": "CROSNE", - "nomCommune": "CROSNE" + "codePostal": "87310", + "codeCommune": "87135", + "libelleAcheminement": "ST AUVENT", + "nomCommune": "ST AUVENT" }, { - "codePostal": "80370", - "codeCommune": "80369", - "libelleAcheminement": "FROHEN SUR AUTHIE", - "nomCommune": "FROHEN SUR AUTHIE" + "codePostal": "83510", + "codeCommune": "83154", + "libelleAcheminement": "ST ANTONIN DU VAR", + "nomCommune": "ST ANTONIN DU VAR" }, { - "codePostal": "91080", - "codeCommune": "91228", - "libelleAcheminement": "EVRY COURCOURONNES", - "nomCommune": "EVRY COURCOURONNES" + "codePostal": "87200", + "codeCommune": "87140", + "libelleAcheminement": "ST BRICE SUR VIENNE", + "nomCommune": "ST BRICE SUR VIENNE" }, { - "codePostal": "80600", - "codeCommune": "80377", - "libelleAcheminement": "GEZAINCOURT", - "nomCommune": "GEZAINCOURT" + "codePostal": "84400", + "codeCommune": "84006", + "libelleAcheminement": "AURIBEAU", + "nomCommune": "AURIBEAU" }, { - "codePostal": "91690", - "codeCommune": "91240", - "libelleAcheminement": "FONTAINE LA RIVIERE", - "nomCommune": "FONTAINE LA RIVIERE" + "codePostal": "87510", + "codeCommune": "87143", + "libelleAcheminement": "ST GENCE", + "nomCommune": "ST GENCE" }, { - "codePostal": "80300", - "codeCommune": "80384", - "libelleAcheminement": "GRANDCOURT", - "nomCommune": "GRANDCOURT" + "codePostal": "84340", + "codeCommune": "84015", + "libelleAcheminement": "BEAUMONT DU VENTOUX", + "nomCommune": "BEAUMONT DU VENTOUX" }, { - "codePostal": "91150", - "codeCommune": "91248", - "libelleAcheminement": "LA FORET STE CROIX", - "nomCommune": "LA FORET STE CROIX" + "codePostal": "87130", + "codeCommune": "87147", + "libelleAcheminement": "ST GILLES LES FORETS", + "nomCommune": "ST GILLES LES FORETS" }, { - "codePostal": "80140", - "codeCommune": "80388", - "libelleAcheminement": "GREBAULT MESNIL", - "nomCommune": "GREBAULT MESNIL" + "codePostal": "84410", + "codeCommune": "84017", + "libelleAcheminement": "BEDOIN", + "nomCommune": "BEDOIN" }, { - "codePostal": "91190", - "codeCommune": "91272", - "libelleAcheminement": "GIF SUR YVETTE", - "nomCommune": "GIF SUR YVETTE" + "codePostal": "87260", + "codeCommune": "87148", + "libelleAcheminement": "ST HILAIRE BONNEVAL", + "nomCommune": "ST HILAIRE BONNEVAL" }, { - "codePostal": "80600", - "codeCommune": "80392", - "libelleAcheminement": "GROUCHES LUCHUEL", - "nomCommune": "GROUCHES LUCHUEL" + "codePostal": "84390", + "codeCommune": "84021", + "libelleAcheminement": "BRANTES", + "nomCommune": "BRANTES" }, { - "codePostal": "91720", - "codeCommune": "91273", - "libelleAcheminement": "GIRONVILLE SUR ESSONNE", - "nomCommune": "GIRONVILLE SUR ESSONNE" + "codePostal": "87510", + "codeCommune": "87152", + "libelleAcheminement": "ST JOUVENT", + "nomCommune": "ST JOUVENT" }, { - "codePostal": "80490", - "codeCommune": "80406", - "libelleAcheminement": "HALLENCOURT", - "nomCommune": "HALLENCOURT" + "codePostal": "84480", + "codeCommune": "84023", + "libelleAcheminement": "BUOUX", + "nomCommune": "BUOUX" }, { - "codePostal": "91400", - "codeCommune": "91274", - "libelleAcheminement": "GOMETZ LA VILLE", - "nomCommune": "GOMETZ LA VILLE" + "codePostal": "87420", + "codeCommune": "87162", + "libelleAcheminement": "STE MARIE DE VAUX", + "nomCommune": "STE MARIE DE VAUX" }, { - "codePostal": "80360", - "codeCommune": "80418", - "libelleAcheminement": "HARDECOURT AUX BOIS", - "nomCommune": "HARDECOURT AUX BOIS" + "codePostal": "84240", + "codeCommune": "84024", + "libelleAcheminement": "CABRIERES D AIGUES", + "nomCommune": "CABRIERES D AIGUES" }, { - "codePostal": "91350", - "codeCommune": "91286", - "libelleAcheminement": "GRIGNY", - "nomCommune": "GRIGNY" + "codePostal": "87400", + "codeCommune": "87167", + "libelleAcheminement": "ST MARTIN TERRESSUS", + "nomCommune": "ST MARTIN TERRESSUS" }, { - "codePostal": "80132", - "codeCommune": "80422", - "libelleAcheminement": "HAUTVILLERS OUVILLE", - "nomCommune": "HAUTVILLERS OUVILLE" + "codePostal": "84400", + "codeCommune": "84033", + "libelleAcheminement": "CASTELLET EN LUBERON", + "nomCommune": "CASTELLET EN LUBERON" }, { - "codePostal": "91760", - "codeCommune": "91315", - "libelleAcheminement": "ITTEVILLE", - "nomCommune": "ITTEVILLE" + "codePostal": "87300", + "codeCommune": "87172", + "libelleAcheminement": "ST OUEN SUR GARTEMPE", + "nomCommune": "ST OUEN SUR GARTEMPE" }, { - "codePostal": "80680", - "codeCommune": "80424", - "libelleAcheminement": "HEBECOURT", - "nomCommune": "HEBECOURT" + "codePostal": "84470", + "codeCommune": "84036", + "libelleAcheminement": "CHATEAUNEUF DE GADAGNE", + "nomCommune": "CHATEAUNEUF DE GADAGNE" }, { - "codePostal": "91510", - "codeCommune": "91330", - "libelleAcheminement": "LARDY", - "nomCommune": "LARDY" + "codePostal": "87260", + "codeCommune": "87174", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "80800", - "codeCommune": "80426", - "libelleAcheminement": "HEILLY", - "nomCommune": "HEILLY" + "codePostal": "84110", + "codeCommune": "84040", + "libelleAcheminement": "CRESTET", + "nomCommune": "CRESTET" }, { - "codePostal": "91310", - "codeCommune": "91333", - "libelleAcheminement": "LEUVILLE SUR ORGE", - "nomCommune": "LEUVILLE SUR ORGE" + "codePostal": "87290", + "codeCommune": "87180", + "libelleAcheminement": "ST SORNIN LEULAC", + "nomCommune": "ST SORNIN LEULAC" }, { - "codePostal": "80360", - "codeCommune": "80428", - "libelleAcheminement": "HEM MONACU", - "nomCommune": "HEM MONACU" + "codePostal": "84320", + "codeCommune": "84043", + "libelleAcheminement": "ENTRAIGUES SUR LA SORGUE", + "nomCommune": "ENTRAIGUES SUR LA SORGUE" }, { - "codePostal": "91090", - "codeCommune": "91340", - "libelleAcheminement": "LISSES", - "nomCommune": "LISSES" + "codePostal": "87110", + "codeCommune": "87192", + "libelleAcheminement": "SOLIGNAC", + "nomCommune": "SOLIGNAC" }, { - "codePostal": "80300", - "codeCommune": "80429", - "libelleAcheminement": "HENENCOURT", - "nomCommune": "HENENCOURT" + "codePostal": "84190", + "codeCommune": "84049", + "libelleAcheminement": "GIGONDAS", + "nomCommune": "GIGONDAS" }, { - "codePostal": "91630", - "codeCommune": "91376", - "libelleAcheminement": "MAROLLES EN HUREPOIX", - "nomCommune": "MAROLLES EN HUREPOIX" + "codePostal": "87360", + "codeCommune": "87195", + "libelleAcheminement": "TERSANNES", + "nomCommune": "TERSANNES" }, { - "codePostal": "80290", - "codeCommune": "80436", - "libelleAcheminement": "HESCAMPS", - "nomCommune": "HESCAMPS" + "codePostal": "84220", + "codeCommune": "84050", + "libelleAcheminement": "GORDES", + "nomCommune": "GORDES" }, { - "codePostal": "91730", - "codeCommune": "91378", - "libelleAcheminement": "MAUCHAMPS", - "nomCommune": "MAUCHAMPS" + "codePostal": "87430", + "codeCommune": "87201", + "libelleAcheminement": "VERNEUIL SUR VIENNE", + "nomCommune": "VERNEUIL SUR VIENNE" }, { - "codePostal": "80370", - "codeCommune": "80440", - "libelleAcheminement": "HIERMONT", - "nomCommune": "HIERMONT" + "codePostal": "84600", + "codeCommune": "84053", + "libelleAcheminement": "GRILLON", + "nomCommune": "GRILLON" }, { - "codePostal": "91660", - "codeCommune": "91390", - "libelleAcheminement": "LE MEREVILLOIS", - "nomCommune": "LE MEREVILLOIS" + "codePostal": "87520", + "codeCommune": "87202", + "libelleAcheminement": "VEYRAC", + "nomCommune": "VEYRAC" }, { - "codePostal": "80640", - "codeCommune": "80443", - "libelleAcheminement": "HORNOY LE BOURG", - "nomCommune": "HORNOY LE BOURG" + "codePostal": "84290", + "codeCommune": "84061", + "libelleAcheminement": "LAGARDE PAREOL", + "nomCommune": "LAGARDE PAREOL" }, { - "codePostal": "91420", - "codeCommune": "91432", - "libelleAcheminement": "MORANGIS", - "nomCommune": "MORANGIS" + "codePostal": "87190", + "codeCommune": "87206", + "libelleAcheminement": "VILLEFAVARD", + "nomCommune": "VILLEFAVARD" }, { - "codePostal": "80430", - "codeCommune": "80456", - "libelleAcheminement": "LAFRESGUIMONT ST MARTIN", - "nomCommune": "LAFRESGUIMONT ST MARTIN" + "codePostal": "84840", + "codeCommune": "84063", + "libelleAcheminement": "LAMOTTE DU RHONE", + "nomCommune": "LAMOTTE DU RHONE" }, { - "codePostal": "91490", - "codeCommune": "91463", - "libelleAcheminement": "ONCY SUR ECOLE", - "nomCommune": "ONCY SUR ECOLE" + "codePostal": "88170", + "codeCommune": "88010", + "libelleAcheminement": "AOUZE", + "nomCommune": "AOUZE" }, { - "codePostal": "80620", - "codeCommune": "80466", - "libelleAcheminement": "LANCHES ST HILAIRE", - "nomCommune": "LANCHES ST HILAIRE" + "codePostal": "84220", + "codeCommune": "84066", + "libelleAcheminement": "LIOUX", + "nomCommune": "LIOUX" }, { - "codePostal": "91720", - "codeCommune": "91507", - "libelleAcheminement": "PRUNAY SUR ESSONNE", - "nomCommune": "PRUNAY SUR ESSONNE" + "codePostal": "88300", + "codeCommune": "88019", + "libelleAcheminement": "AUTIGNY LA TOUR", + "nomCommune": "AUTIGNY LA TOUR" }, { - "codePostal": "80560", - "codeCommune": "80493", - "libelleAcheminement": "LOUVENCOURT", - "nomCommune": "LOUVENCOURT" + "codePostal": "84220", + "codeCommune": "84085", + "libelleAcheminement": "MURS", + "nomCommune": "MURS" }, { - "codePostal": "91480", - "codeCommune": "91514", - "libelleAcheminement": "QUINCY SOUS SENART", - "nomCommune": "QUINCY SOUS SENART" + "codePostal": "88140", + "codeCommune": "88022", + "libelleAcheminement": "AUZAINVILLIERS", + "nomCommune": "AUZAINVILLIERS" }, { - "codePostal": "80150", - "codeCommune": "80496", - "libelleAcheminement": "MACHIEL", - "nomCommune": "MACHIEL" + "codePostal": "84580", + "codeCommune": "84086", + "libelleAcheminement": "OPPEDE", + "nomCommune": "OPPEDE" }, { - "codePostal": "91410", - "codeCommune": "91519", - "libelleAcheminement": "RICHARVILLE", - "nomCommune": "RICHARVILLE" + "codePostal": "88600", + "codeCommune": "88026", + "libelleAcheminement": "AYDOILLES", + "nomCommune": "AYDOILLES" }, { - "codePostal": "80135", - "codeCommune": "80502", - "libelleAcheminement": "MAISON ROLAND", - "nomCommune": "MAISON ROLAND" + "codePostal": "84110", + "codeCommune": "84094", + "libelleAcheminement": "PUYMERAS", + "nomCommune": "PUYMERAS" }, { - "codePostal": "91130", - "codeCommune": "91521", - "libelleAcheminement": "RIS ORANGIS", - "nomCommune": "RIS ORANGIS" + "codePostal": "88240", + "codeCommune": "88029", + "libelleAcheminement": "LA VOGE LES BAINS", + "nomCommune": "LA VOGE LES BAINS" }, { - "codePostal": "80250", - "codeCommune": "80504", - "libelleAcheminement": "MALPART", - "nomCommune": "MALPART" + "codePostal": "84110", + "codeCommune": "84096", + "libelleAcheminement": "RASTEAU", + "nomCommune": "RASTEAU" }, { - "codePostal": "91730", - "codeCommune": "91619", - "libelleAcheminement": "TORFOU", - "nomCommune": "TORFOU" + "codePostal": "88300", + "codeCommune": "88036", + "libelleAcheminement": "BARVILLE", + "nomCommune": "BARVILLE" }, { - "codePostal": "80800", - "codeCommune": "80507", - "libelleAcheminement": "MARCELCAVE", - "nomCommune": "MARCELCAVE" + "codePostal": "84440", + "codeCommune": "84099", + "libelleAcheminement": "ROBION", + "nomCommune": "ROBION" }, { - "codePostal": "91530", - "codeCommune": "91630", - "libelleAcheminement": "LE VAL ST GERMAIN", - "nomCommune": "LE VAL ST GERMAIN" + "codePostal": "88120", + "codeCommune": "88037", + "libelleAcheminement": "BASSE SUR LE RUPT", + "nomCommune": "BASSE SUR LE RUPT" }, { - "codePostal": "80200", - "codeCommune": "80509", - "libelleAcheminement": "MARCHELEPOT MISERY", - "nomCommune": "MARCHELEPOT MISERY" + "codePostal": "84210", + "codeCommune": "84101", + "libelleAcheminement": "LA ROQUE SUR PERNES", + "nomCommune": "LA ROQUE SUR PERNES" }, { - "codePostal": "91480", - "codeCommune": "91631", - "libelleAcheminement": "VARENNES JARCY", - "nomCommune": "VARENNES JARCY" + "codePostal": "88150", + "codeCommune": "88040", + "libelleAcheminement": "BAYECOURT", + "nomCommune": "BAYECOURT" }, { - "codePostal": "80290", - "codeCommune": "80515", - "libelleAcheminement": "MARLERS", - "nomCommune": "MARLERS" + "codePostal": "84220", + "codeCommune": "84102", + "libelleAcheminement": "ROUSSILLON", + "nomCommune": "ROUSSILLON" }, { - "codePostal": "91820", - "codeCommune": "91639", - "libelleAcheminement": "VAYRES SUR ESSONNE", - "nomCommune": "VAYRES SUR ESSONNE" + "codePostal": "88270", + "codeCommune": "88041", + "libelleAcheminement": "BAZEGNEY", + "nomCommune": "BAZEGNEY" }, { - "codePostal": "80240", - "codeCommune": "80516", - "libelleAcheminement": "MARQUAIX", - "nomCommune": "MARQUAIX" + "codePostal": "84290", + "codeCommune": "84106", + "libelleAcheminement": "STE CECILE LES VIGNES", + "nomCommune": "STE CECILE LES VIGNES" }, { - "codePostal": "91620", - "codeCommune": "91665", - "libelleAcheminement": "LA VILLE DU BOIS", - "nomCommune": "LA VILLE DU BOIS" + "codePostal": "88370", + "codeCommune": "88048", + "libelleAcheminement": "BELLEFONTAINE", + "nomCommune": "BELLEFONTAINE" }, { - "codePostal": "80400", - "codeCommune": "80519", - "libelleAcheminement": "MATIGNY", - "nomCommune": "MATIGNY" + "codePostal": "84750", + "codeCommune": "84112", + "libelleAcheminement": "ST MARTIN DE CASTILLON", + "nomCommune": "ST MARTIN DE CASTILLON" }, { - "codePostal": "91580", - "codeCommune": "91671", - "libelleAcheminement": "VILLENEUVE SUR AUVERS", - "nomCommune": "VILLENEUVE SUR AUVERS" + "codePostal": "88500", + "codeCommune": "88056", + "libelleAcheminement": "BETTONCOURT", + "nomCommune": "BETTONCOURT" }, { - "codePostal": "80170", - "codeCommune": "80520", - "libelleAcheminement": "MAUCOURT", - "nomCommune": "MAUCOURT" + "codePostal": "84290", + "codeCommune": "84117", + "libelleAcheminement": "ST ROMAN DE MALEGARDE", + "nomCommune": "ST ROMAN DE MALEGARDE" }, { - "codePostal": "91700", - "codeCommune": "91685", - "libelleAcheminement": "VILLIERS SUR ORGE", - "nomCommune": "VILLIERS SUR ORGE" + "codePostal": "88500", + "codeCommune": "88060", + "libelleAcheminement": "BLEMEREY", + "nomCommune": "BLEMEREY" }, { - "codePostal": "80430", - "codeCommune": "80522", - "libelleAcheminement": "LE MAZIS", - "nomCommune": "LE MAZIS" + "codePostal": "84390", + "codeCommune": "84123", + "libelleAcheminement": "SAULT", + "nomCommune": "SAULT" }, { - "codePostal": "92270", - "codeCommune": "92009", - "libelleAcheminement": "BOIS COLOMBES", - "nomCommune": "BOIS COLOMBES" + "codePostal": "88470", + "codeCommune": "88068", + "libelleAcheminement": "LA BOURGONCE", + "nomCommune": "LA BOURGONCE" }, { - "codePostal": "80170", - "codeCommune": "80524", - "libelleAcheminement": "MEHARICOURT", - "nomCommune": "MEHARICOURT" + "codePostal": "84110", + "codeCommune": "84126", + "libelleAcheminement": "SEGURET", + "nomCommune": "SEGURET" }, { - "codePostal": "92100", - "codeCommune": "92012", - "libelleAcheminement": "BOULOGNE BILLANCOURT", - "nomCommune": "BOULOGNE BILLANCOURT" + "codePostal": "88130", + "codeCommune": "88070", + "libelleAcheminement": "BOUXURULLES", + "nomCommune": "BOUXURULLES" }, { - "codePostal": "80290", - "codeCommune": "80525", - "libelleAcheminement": "MEIGNEUX", - "nomCommune": "MEIGNEUX" + "codePostal": "84400", + "codeCommune": "84128", + "libelleAcheminement": "SIVERGUES", + "nomCommune": "SIVERGUES" }, { - "codePostal": "92370", - "codeCommune": "92022", - "libelleAcheminement": "CHAVILLE", - "nomCommune": "CHAVILLE" + "codePostal": "88270", + "codeCommune": "88071", + "libelleAcheminement": "BOUZEMONT", + "nomCommune": "BOUZEMONT" }, { - "codePostal": "80520", - "codeCommune": "80527", - "libelleAcheminement": "MENESLIES", - "nomCommune": "MENESLIES" + "codePostal": "84160", + "codeCommune": "84140", + "libelleAcheminement": "VAUGINES", + "nomCommune": "VAUGINES" }, { - "codePostal": "92400", - "codeCommune": "92026", - "libelleAcheminement": "COURBEVOIE", - "nomCommune": "COURBEVOIE" + "codePostal": "88130", + "codeCommune": "88073", + "libelleAcheminement": "BRANTIGNY", + "nomCommune": "BRANTIGNY" }, { - "codePostal": "80490", - "codeCommune": "80529", - "libelleAcheminement": "MERELESSART", - "nomCommune": "MERELESSART" + "codePostal": "84740", + "codeCommune": "84142", + "libelleAcheminement": "VELLERON", + "nomCommune": "VELLERON" }, { - "codePostal": "92250", - "codeCommune": "92035", - "libelleAcheminement": "LA GARENNE COLOMBES", - "nomCommune": "LA GARENNE COLOMBES" + "codePostal": "88270", + "codeCommune": "88092", + "libelleAcheminement": "CHARMOIS L ORGUEILLEUX", + "nomCommune": "CHARMOIS L ORGUEILLEUX" }, { - "codePostal": "80300", - "codeCommune": "80549", - "libelleAcheminement": "MIRAUMONT", - "nomCommune": "MIRAUMONT" + "codePostal": "84210", + "codeCommune": "84143", + "libelleAcheminement": "VENASQUE", + "nomCommune": "VENASQUE" }, { - "codePostal": "92300", - "codeCommune": "92044", - "libelleAcheminement": "LEVALLOIS PERRET", - "nomCommune": "LEVALLOIS PERRET" + "codePostal": "88210", + "codeCommune": "88093", + "libelleAcheminement": "CHATAS", + "nomCommune": "CHATAS" }, { - "codePostal": "80260", - "codeCommune": "80550", - "libelleAcheminement": "MIRVAUX", - "nomCommune": "MIRVAUX" + "codePostal": "85430", + "codeCommune": "85008", + "libelleAcheminement": "AUBIGNY LES CLOUZEAUX", + "nomCommune": "AUBIGNY LES CLOUZEAUX" }, { - "codePostal": "92240", - "codeCommune": "92046", - "libelleAcheminement": "MALAKOFF", - "nomCommune": "MALAKOFF" + "codePostal": "88170", + "codeCommune": "88095", + "libelleAcheminement": "CHATENOIS", + "nomCommune": "CHATENOIS" }, { - "codePostal": "80540", - "codeCommune": "80554", - "libelleAcheminement": "MOLLIENS DREUIL", - "nomCommune": "MOLLIENS DREUIL" + "codePostal": "85170", + "codeCommune": "85015", + "libelleAcheminement": "BEAUFOU", + "nomCommune": "BEAUFOU" }, { - "codePostal": "92500", - "codeCommune": "92063", - "libelleAcheminement": "RUEIL MALMAISON", - "nomCommune": "RUEIL MALMAISON" + "codePostal": "88410", + "codeCommune": "88096", + "libelleAcheminement": "CHATILLON SUR SAONE", + "nomCommune": "CHATILLON SUR SAONE" }, { - "codePostal": "80540", - "codeCommune": "80554", - "libelleAcheminement": "MOLLIENS DREUIL", - "nomCommune": "MOLLIENS DREUIL" + "codePostal": "85600", + "codeCommune": "85025", + "libelleAcheminement": "LA BOISSIERE DE MONTAIGU", + "nomCommune": "LA BOISSIERE DE MONTAIGU" }, { - "codePostal": "92330", - "codeCommune": "92071", - "libelleAcheminement": "SCEAUX", - "nomCommune": "SCEAUX" + "codePostal": "88630", + "codeCommune": "88107", + "libelleAcheminement": "CLEREY LA COTE", + "nomCommune": "CLEREY LA COTE" }, { - "codePostal": "80160", - "codeCommune": "80558", - "libelleAcheminement": "MONSURES", - "nomCommune": "MONSURES" + "codePostal": "85510", + "codeCommune": "85031", + "libelleAcheminement": "LE BOUPERE", + "nomCommune": "LE BOUPERE" }, { - "codePostal": "92310", - "codeCommune": "92072", - "libelleAcheminement": "SEVRES", - "nomCommune": "SEVRES" + "codePostal": "88240", + "codeCommune": "88108", + "libelleAcheminement": "LE CLERJUS", + "nomCommune": "LE CLERJUS" }, { - "codePostal": "80300", - "codeCommune": "80560", - "libelleAcheminement": "MONTAUBAN DE PICARDIE", - "nomCommune": "MONTAUBAN DE PICARDIE" + "codePostal": "85480", + "codeCommune": "85034", + "libelleAcheminement": "BOURNEZEAU", + "nomCommune": "BOURNEZEAU" }, { - "codePostal": "93350", - "codeCommune": "93013", - "libelleAcheminement": "LE BOURGET", - "nomCommune": "LE BOURGET" + "codePostal": "88390", + "codeCommune": "88126", + "libelleAcheminement": "DARNIEULLES", + "nomCommune": "DARNIEULLES" }, { - "codePostal": "80670", - "codeCommune": "80566", - "libelleAcheminement": "FIEFFES MONTRELET", - "nomCommune": "FIEFFES MONTRELET" + "codePostal": "85320", + "codeCommune": "85036", + "libelleAcheminement": "LA BRETONNIERE LA CLAYE", + "nomCommune": "LA BRETONNIERE LA CLAYE" }, { - "codePostal": "93470", - "codeCommune": "93015", - "libelleAcheminement": "COUBRON", - "nomCommune": "COUBRON" + "codePostal": "88000", + "codeCommune": "88134", + "libelleAcheminement": "DINOZE", + "nomCommune": "DINOZE" }, { - "codePostal": "80400", - "codeCommune": "80576", - "libelleAcheminement": "MOYENCOURT", - "nomCommune": "MOYENCOURT" + "codePostal": "85410", + "codeCommune": "85040", + "libelleAcheminement": "LA CAILLERE ST HILAIRE", + "nomCommune": "LA CAILLERE ST HILAIRE" }, { - "codePostal": "93370", - "codeCommune": "93047", - "libelleAcheminement": "MONTFERMEIL", - "nomCommune": "MONTFERMEIL" + "codePostal": "88260", + "codeCommune": "88138", + "libelleAcheminement": "DOMBASLE DEVANT DARNEY", + "nomCommune": "DOMBASLE DEVANT DARNEY" }, { - "codePostal": "80290", - "codeCommune": "80577", - "libelleAcheminement": "MOYENCOURT LES POIX", - "nomCommune": "MOYENCOURT LES POIX" + "codePostal": "85310", + "codeCommune": "85046", + "libelleAcheminement": "LA CHAIZE LE VICOMTE", + "nomCommune": "LA CHAIZE LE VICOMTE" }, { - "codePostal": "93330", - "codeCommune": "93050", - "libelleAcheminement": "NEUILLY SUR MARNE", - "nomCommune": "NEUILLY SUR MARNE" + "codePostal": "88170", + "codeCommune": "88141", + "libelleAcheminement": "DOMBROT SUR VAIR", + "nomCommune": "DOMBROT SUR VAIR" }, { - "codePostal": "80120", - "codeCommune": "80580", - "libelleAcheminement": "NAMPONT ST MARTIN", - "nomCommune": "NAMPONT" + "codePostal": "85450", + "codeCommune": "85049", + "libelleAcheminement": "CHAMPAGNE LES MARAIS", + "nomCommune": "CHAMPAGNE LES MARAIS" }, { - "codePostal": "93500", - "codeCommune": "93055", - "libelleAcheminement": "PANTIN", - "nomCommune": "PANTIN" + "codePostal": "88700", + "codeCommune": "88156", + "libelleAcheminement": "DONCIERES", + "nomCommune": "DONCIERES" }, { - "codePostal": "80290", - "codeCommune": "80582", - "libelleAcheminement": "NAMPS MAISNIL", - "nomCommune": "NAMPS MAISNIL" + "codePostal": "85220", + "codeCommune": "85054", + "libelleAcheminement": "LA CHAPELLE HERMIER", + "nomCommune": "LA CHAPELLE HERMIER" }, { - "codePostal": "93320", - "codeCommune": "93057", - "libelleAcheminement": "LES PAVILLONS SOUS BOIS", - "nomCommune": "LES PAVILLONS SOUS BOIS" + "codePostal": "88000", + "codeCommune": "88160", + "libelleAcheminement": "EPINAL", + "nomCommune": "EPINAL" }, { - "codePostal": "80290", - "codeCommune": "80582", - "libelleAcheminement": "NAMPS MAISNIL", - "nomCommune": "NAMPS MAISNIL" + "codePostal": "85400", + "codeCommune": "85058", + "libelleAcheminement": "CHASNAIS", + "nomCommune": "CHASNAIS" }, { - "codePostal": "93410", - "codeCommune": "93074", - "libelleAcheminement": "VAUJOURS", - "nomCommune": "VAUJOURS" + "codePostal": "88260", + "codeCommune": "88162", + "libelleAcheminement": "ESLEY", + "nomCommune": "ESLEY" }, { - "codePostal": "80260", - "codeCommune": "80584", - "libelleAcheminement": "NAOURS", - "nomCommune": "NAOURS" + "codePostal": "85220", + "codeCommune": "85070", + "libelleAcheminement": "COEX", + "nomCommune": "COEX" }, { - "codePostal": "94480", - "codeCommune": "94001", - "libelleAcheminement": "ABLON SUR SEINE", - "nomCommune": "ABLON SUR SEINE" + "codePostal": "88500", + "codeCommune": "88164", + "libelleAcheminement": "ESTRENNES", + "nomCommune": "ESTRENNES" }, { - "codePostal": "80140", - "codeCommune": "80591", - "libelleAcheminement": "NEUVILLE AU BOIS", - "nomCommune": "NEUVILLE AU BOIS" + "codePostal": "85220", + "codeCommune": "85071", + "libelleAcheminement": "COMMEQUIERS", + "nomCommune": "COMMEQUIERS" }, { - "codePostal": "94500", - "codeCommune": "94017", - "libelleAcheminement": "CHAMPIGNY SUR MARNE", - "nomCommune": "CHAMPIGNY SUR MARNE" + "codePostal": "88480", + "codeCommune": "88165", + "libelleAcheminement": "ETIVAL CLAIREFONTAINE", + "nomCommune": "ETIVAL CLAIREFONTAINE" }, { - "codePostal": "80340", - "codeCommune": "80593", - "libelleAcheminement": "LA NEUVILLE LES BRAY", - "nomCommune": "LA NEUVILLE LES BRAY" + "codePostal": "85320", + "codeCommune": "85073", + "libelleAcheminement": "CORPE", + "nomCommune": "CORPE" }, { - "codePostal": "94430", - "codeCommune": "94019", - "libelleAcheminement": "CHENNEVIERES SUR MARNE", - "nomCommune": "CHENNEVIERES SUR MARNE" + "codePostal": "88460", + "codeCommune": "88167", + "libelleAcheminement": "FAUCOMPIERRE", + "nomCommune": "FAUCOMPIERRE" }, { - "codePostal": "80860", - "codeCommune": "80598", - "libelleAcheminement": "NOUVION", - "nomCommune": "NOUVION" + "codePostal": "85420", + "codeCommune": "85078", + "libelleAcheminement": "DAMVIX", + "nomCommune": "DAMVIX" }, { - "codePostal": "94120", - "codeCommune": "94033", - "libelleAcheminement": "FONTENAY SOUS BOIS", - "nomCommune": "FONTENAY SOUS BOIS" + "codePostal": "88700", + "codeCommune": "88168", + "libelleAcheminement": "FAUCONCOURT", + "nomCommune": "FAUCONCOURT" }, { - "codePostal": "80240", - "codeCommune": "80601", - "libelleAcheminement": "NURLU", - "nomCommune": "NURLU" + "codePostal": "85170", + "codeCommune": "85081", + "libelleAcheminement": "DOMPIERRE SUR YON", + "nomCommune": "DOMPIERRE SUR YON" }, { - "codePostal": "94240", - "codeCommune": "94038", - "libelleAcheminement": "L HAY LES ROSES", - "nomCommune": "L HAY LES ROSES" + "codePostal": "88320", + "codeCommune": "88180", + "libelleAcheminement": "FRAIN", + "nomCommune": "FRAIN" }, { - "codePostal": "80600", - "codeCommune": "80614", - "libelleAcheminement": "OUTREBOIS", - "nomCommune": "OUTREBOIS" + "codePostal": "85590", + "codeCommune": "85082", + "libelleAcheminement": "LES EPESSES", + "nomCommune": "LES EPESSES" }, { - "codePostal": "94340", - "codeCommune": "94042", - "libelleAcheminement": "JOINVILLE LE PONT", - "nomCommune": "JOINVILLE LE PONT" + "codePostal": "88230", + "codeCommune": "88181", + "libelleAcheminement": "FRAIZE", + "nomCommune": "FRAIZE" }, { - "codePostal": "80320", - "codeCommune": "80621", - "libelleAcheminement": "HYPERCOURT", - "nomCommune": "HYPERCOURT" + "codePostal": "85140", + "codeCommune": "85084", + "libelleAcheminement": "ESSARTS EN BOCAGE", + "nomCommune": "ESSARTS EN BOCAGE" }, { - "codePostal": "94700", - "codeCommune": "94046", - "libelleAcheminement": "MAISONS ALFORT", - "nomCommune": "MAISONS ALFORT" + "codePostal": "88500", + "codeCommune": "88186", + "libelleAcheminement": "FRENELLE LA PETITE", + "nomCommune": "FRENELLE LA PETITE" }, { - "codePostal": "80500", - "codeCommune": "80625", - "libelleAcheminement": "TROIS RIVIERES", - "nomCommune": "TROIS RIVIERES" + "codePostal": "85240", + "codeCommune": "85087", + "libelleAcheminement": "FAYMOREAU", + "nomCommune": "FAYMOREAU" }, { - "codePostal": "94160", - "codeCommune": "94067", - "libelleAcheminement": "ST MANDE", - "nomCommune": "ST MANDE" + "codePostal": "88400", + "codeCommune": "88196", + "libelleAcheminement": "GERARDMER", + "nomCommune": "GERARDMER" }, { - "codePostal": "80110", - "codeCommune": "80628", - "libelleAcheminement": "LE PLESSIER ROZAINVILLERS", - "nomCommune": "LE PLESSIER ROZAINVILLERS" + "codePostal": "85280", + "codeCommune": "85089", + "libelleAcheminement": "LA FERRIERE", + "nomCommune": "LA FERRIERE" }, { - "codePostal": "94210", - "codeCommune": "94068", - "libelleAcheminement": "ST MAUR DES FOSSES", - "nomCommune": "ST MAUR DES FOSSES" + "codePostal": "88120", + "codeCommune": "88197", + "libelleAcheminement": "GERBAMONT", + "nomCommune": "GERBAMONT" }, { - "codePostal": "80290", - "codeCommune": "80630", - "libelleAcheminement": "POIX DE PICARDIE", - "nomCommune": "POIX DE PICARDIE" + "codePostal": "85700", + "codeCommune": "85090", + "libelleAcheminement": "SEVREMONT", + "nomCommune": "SEVREMONT" }, { - "codePostal": "94370", - "codeCommune": "94071", - "libelleAcheminement": "SUCY EN BRIE", - "nomCommune": "SUCY EN BRIE" + "codePostal": "88340", + "codeCommune": "88205", + "libelleAcheminement": "GIRMONT VAL D AJOL", + "nomCommune": "GIRMONT VAL D AJOL" }, { - "codePostal": "80290", - "codeCommune": "80630", - "libelleAcheminement": "POIX DE PICARDIE", - "nomCommune": "POIX DE PICARDIE" + "codePostal": "85150", + "codeCommune": "85099", + "libelleAcheminement": "LE GIROUARD", + "nomCommune": "LE GIROUARD" }, { - "codePostal": "94190", - "codeCommune": "94078", - "libelleAcheminement": "VILLENEUVE ST GEORGES", - "nomCommune": "VILLENEUVE ST GEORGES" + "codePostal": "88350", + "codeCommune": "88212", + "libelleAcheminement": "GRAND", + "nomCommune": "GRAND" }, { - "codePostal": "80340", - "codeCommune": "80644", - "libelleAcheminement": "PROYART", - "nomCommune": "PROYART" + "codePostal": "85440", + "codeCommune": "85103", + "libelleAcheminement": "GROSBREUIL", + "nomCommune": "GROSBREUIL" }, { - "codePostal": "95450", - "codeCommune": "95002", - "libelleAcheminement": "ABLEIGES", - "nomCommune": "ABLEIGES" + "codePostal": "88600", + "codeCommune": "88216", + "libelleAcheminement": "GRANDVILLERS", + "nomCommune": "GRANDVILLERS" }, { - "codePostal": "80300", - "codeCommune": "80648", - "libelleAcheminement": "PYS", - "nomCommune": "PYS" + "codePostal": "85770", + "codeCommune": "85105", + "libelleAcheminement": "LE GUE DE VELLUIRE", + "nomCommune": "LE GUE DE VELLUIRE" }, { - "codePostal": "95510", - "codeCommune": "95008", - "libelleAcheminement": "AINCOURT", - "nomCommune": "AINCOURT" + "codePostal": "88640", + "codeCommune": "88218", + "libelleAcheminement": "GRANGES AUMONTZEY", + "nomCommune": "GRANGES AUMONTZEY" }, { - "codePostal": "80710", - "codeCommune": "80656", - "libelleAcheminement": "QUEVAUVILLERS", - "nomCommune": "QUEVAUVILLERS" + "codePostal": "85770", + "codeCommune": "85111", + "libelleAcheminement": "L ILE D ELLE", + "nomCommune": "L ILE D ELLE" }, { - "codePostal": "95510", - "codeCommune": "95012", - "libelleAcheminement": "AMENUCOURT", - "nomCommune": "AMENUCOURT" + "codePostal": "88600", + "codeCommune": "88222", + "libelleAcheminement": "GUGNECOURT", + "nomCommune": "GUGNECOURT" }, { - "codePostal": "80700", - "codeCommune": "80669", - "libelleAcheminement": "RETHONVILLERS", - "nomCommune": "RETHONVILLERS" + "codePostal": "85350", + "codeCommune": "85113", + "libelleAcheminement": "L ILE D YEU", + "nomCommune": "L ILE D YEU" }, { - "codePostal": "95810", - "codeCommune": "95023", - "libelleAcheminement": "ARRONVILLE", - "nomCommune": "ARRONVILLE" + "codePostal": "88220", + "codeCommune": "88225", + "libelleAcheminement": "HADOL", + "nomCommune": "HADOL" }, { - "codePostal": "80250", - "codeCommune": "80681", - "libelleAcheminement": "ROUVREL", - "nomCommune": "ROUVREL" + "codePostal": "85350", + "codeCommune": "85113", + "libelleAcheminement": "L ILE D YEU", + "nomCommune": "L ILE D YEU" }, { - "codePostal": "95450", - "codeCommune": "95040", - "libelleAcheminement": "AVERNES", - "nomCommune": "AVERNES" + "codePostal": "88300", + "codeCommune": "88227", + "libelleAcheminement": "HAGNEVILLE ET RONCOURT", + "nomCommune": "HAGNEVILLE ET RONCOURT" }, { - "codePostal": "80360", - "codeCommune": "80695", - "libelleAcheminement": "SAILLY SAILLISEL", - "nomCommune": "SAILLY SAILLISEL" + "codePostal": "85400", + "codeCommune": "85117", + "libelleAcheminement": "LAIROUX", + "nomCommune": "LAIROUX" }, { - "codePostal": "95270", - "codeCommune": "95055", - "libelleAcheminement": "BELLEFONTAINE", - "nomCommune": "BELLEFONTAINE" + "codePostal": "88300", + "codeCommune": "88229", + "libelleAcheminement": "HARCHECHAMP", + "nomCommune": "HARCHECHAMP" }, { - "codePostal": "80540", - "codeCommune": "80698", - "libelleAcheminement": "ST AUBIN MONTENOY", - "nomCommune": "ST AUBIN MONTENOY" + "codePostal": "85370", + "codeCommune": "85121", + "libelleAcheminement": "LE LANGON", + "nomCommune": "LE LANGON" }, { - "codePostal": "95500", - "codeCommune": "95088", - "libelleAcheminement": "BONNEUIL EN FRANCE", - "nomCommune": "BONNEUIL EN FRANCE" + "codePostal": "88800", + "codeCommune": "88231", + "libelleAcheminement": "HAREVILLE", + "nomCommune": "HAREVILLE" }, { - "codePostal": "80200", - "codeCommune": "80701", - "libelleAcheminement": "ST CHRIST BRIOST", - "nomCommune": "ST CHRIST BRIOST" + "codePostal": "85140", + "codeCommune": "85142", + "libelleAcheminement": "LA MERLATIERE", + "nomCommune": "LA MERLATIERE" }, { - "codePostal": "95570", - "codeCommune": "95091", - "libelleAcheminement": "BOUFFEMONT", - "nomCommune": "BOUFFEMONT" + "codePostal": "88270", + "codeCommune": "88233", + "libelleAcheminement": "HAROL", + "nomCommune": "HAROL" }, { - "codePostal": "80430", - "codeCommune": "80703", - "libelleAcheminement": "ST GERMAIN SUR BRESLE", - "nomCommune": "ST GERMAIN SUR BRESLE" + "codePostal": "85240", + "codeCommune": "85162", + "libelleAcheminement": "RIVES D AUTISE", + "nomCommune": "RIVES D AUTISE" }, { - "codePostal": "95000", - "codeCommune": "95127", - "libelleAcheminement": "CERGY", - "nomCommune": "CERGY" + "codePostal": "88240", + "codeCommune": "88236", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "80260", - "codeCommune": "80704", - "libelleAcheminement": "ST GRATIEN", - "nomCommune": "ST GRATIEN" + "codePostal": "85420", + "codeCommune": "85162", + "libelleAcheminement": "RIVES D AUTISE", + "nomCommune": "RIVES D AUTISE" }, { - "codePostal": "95710", - "codeCommune": "95150", - "libelleAcheminement": "CHAUSSY", - "nomCommune": "CHAUSSY" + "codePostal": "88300", + "codeCommune": "88242", + "libelleAcheminement": "HOUEVILLE", + "nomCommune": "HOUEVILLE" }, { - "codePostal": "80120", - "codeCommune": "80713", - "libelleAcheminement": "ST QUENTIN EN TOURMONT", - "nomCommune": "ST QUENTIN EN TOURMONT" + "codePostal": "85570", + "codeCommune": "85174", + "libelleAcheminement": "PETOSSE", + "nomCommune": "PETOSSE" }, { - "codePostal": "95170", - "codeCommune": "95197", - "libelleAcheminement": "DEUIL LA BARRE", - "nomCommune": "DEUIL LA BARRE" + "codePostal": "88700", + "codeCommune": "88243", + "libelleAcheminement": "HOUSSERAS", + "nomCommune": "HOUSSERAS" }, { - "codePostal": "80880", - "codeCommune": "80714", - "libelleAcheminement": "ST QUENTIN LA MOTTE CROIX BAILLY", - "nomCommune": "ST QUENTIN LA MOTTE CROIX AU BAILLY" + "codePostal": "85770", + "codeCommune": "85177", + "libelleAcheminement": "LES VELLUIRE SUR VENDEE", + "nomCommune": "LES VELLUIRE SUR VENDEE" }, { - "codePostal": "95880", - "codeCommune": "95210", - "libelleAcheminement": "ENGHIEN LES BAINS", - "nomCommune": "ENGHIEN LES BAINS" + "codePostal": "88150", + "codeCommune": "88247", + "libelleAcheminement": "IGNEY", + "nomCommune": "IGNEY" }, { - "codePostal": "80400", - "codeCommune": "80726", - "libelleAcheminement": "SANCOURT", - "nomCommune": "SANCOURT" + "codePostal": "85250", + "codeCommune": "85186", + "libelleAcheminement": "LA RABATELIERE", + "nomCommune": "LA RABATELIERE" }, { - "codePostal": "95810", - "codeCommune": "95213", - "libelleAcheminement": "EPIAIS RHUS", - "nomCommune": "EPIAIS RHUS" + "codePostal": "88550", + "codeCommune": "88250", + "libelleAcheminement": "JARMENIL", + "nomCommune": "JARMENIL" }, { - "codePostal": "80620", - "codeCommune": "80742", - "libelleAcheminement": "SURCAMPS", - "nomCommune": "SURCAMPS" + "codePostal": "85620", + "codeCommune": "85190", + "libelleAcheminement": "ROCHESERVIERE", + "nomCommune": "ROCHESERVIERE" }, { - "codePostal": "95120", - "codeCommune": "95219", - "libelleAcheminement": "ERMONT", - "nomCommune": "ERMONT" + "codePostal": "88130", + "codeCommune": "88260", + "libelleAcheminement": "LANGLEY", + "nomCommune": "LANGLEY" }, { - "codePostal": "80260", - "codeCommune": "80746", - "libelleAcheminement": "TALMAS", - "nomCommune": "TALMAS" + "codePostal": "85340", + "codeCommune": "85194", + "libelleAcheminement": "LES SABLES D OLONNE", + "nomCommune": "LES SABLES D OLONNE" }, { - "codePostal": "95190", - "codeCommune": "95241", - "libelleAcheminement": "FONTENAY EN PARISIS", - "nomCommune": "FONTENAY EN PARISIS" + "codePostal": "88300", + "codeCommune": "88265", + "libelleAcheminement": "LEMMECOURT", + "nomCommune": "LEMMECOURT" }, { - "codePostal": "80560", - "codeCommune": "80756", - "libelleAcheminement": "THIEVRES", - "nomCommune": "THIEVRES" + "codePostal": "85250", + "codeCommune": "85196", + "libelleAcheminement": "ST ANDRE GOULE D OIE", + "nomCommune": "ST ANDRE GOULE D OIE" }, { - "codePostal": "95740", - "codeCommune": "95256", - "libelleAcheminement": "FREPILLON", - "nomCommune": "FREPILLON" + "codePostal": "88260", + "codeCommune": "88267", + "libelleAcheminement": "LERRAIN", + "nomCommune": "LERRAIN" }, { - "codePostal": "80250", - "codeCommune": "80758", - "libelleAcheminement": "THORY", - "nomCommune": "THORY" + "codePostal": "85260", + "codeCommune": "85197", + "libelleAcheminement": "MONTREVERD", + "nomCommune": "MONTREVERD" }, { - "codePostal": "95530", - "codeCommune": "95257", - "libelleAcheminement": "LA FRETTE SUR SEINE", - "nomCommune": "LA FRETTE SUR SEINE" + "codePostal": "88490", + "codeCommune": "88275", + "libelleAcheminement": "LUBINE", + "nomCommune": "LUBINE" }, { - "codePostal": "80220", - "codeCommune": "80760", - "libelleAcheminement": "TILLOY FLORIVILLE", - "nomCommune": "TILLOY FLORIVILLE" + "codePostal": "85260", + "codeCommune": "85197", + "libelleAcheminement": "MONTREVERD", + "nomCommune": "MONTREVERD" }, { - "codePostal": "95690", - "codeCommune": "95258", - "libelleAcheminement": "FROUVILLE", - "nomCommune": "FROUVILLE" + "codePostal": "88140", + "codeCommune": "88283", + "libelleAcheminement": "MALAINCOURT", + "nomCommune": "MALAINCOURT" }, { - "codePostal": "80132", - "codeCommune": "80763", - "libelleAcheminement": "LE TITRE", - "nomCommune": "LE TITRE" + "codePostal": "85210", + "codeCommune": "85199", + "libelleAcheminement": "ST AUBIN LA PLAINE", + "nomCommune": "ST AUBIN LA PLAINE" }, { - "codePostal": "95450", - "codeCommune": "95282", - "libelleAcheminement": "GOUZANGREZ", - "nomCommune": "GOUZANGREZ" + "codePostal": "88500", + "codeCommune": "88292", + "libelleAcheminement": "MATTAINCOURT", + "nomCommune": "MATTAINCOURT" }, { - "codePostal": "80130", - "codeCommune": "80770", - "libelleAcheminement": "TULLY", - "nomCommune": "TULLY" + "codePostal": "85210", + "codeCommune": "85209", + "libelleAcheminement": "ST ETIENNE DE BRILLOUET", + "nomCommune": "ST ETIENNE DE BRILLOUET" }, { - "codePostal": "95640", - "codeCommune": "95303", - "libelleAcheminement": "LE HEAULME", - "nomCommune": "LE HEAULME" + "codePostal": "88500", + "codeCommune": "88299", + "libelleAcheminement": "MENIL EN XAINTOIS", + "nomCommune": "MENIL EN XAINTOIS" }, { - "codePostal": "80800", - "codeCommune": "80785", - "libelleAcheminement": "VECQUEMONT", - "nomCommune": "VECQUEMONT" + "codePostal": "85670", + "codeCommune": "85210", + "libelleAcheminement": "ST ETIENNE DU BOIS", + "nomCommune": "ST ETIENNE DU BOIS" }, { - "codePostal": "95690", - "codeCommune": "95304", - "libelleAcheminement": "HEDOUVILLE", - "nomCommune": "HEDOUVILLE" + "codePostal": "88170", + "codeCommune": "88312", + "libelleAcheminement": "MORELMAISON", + "nomCommune": "MORELMAISON" }, { - "codePostal": "80120", - "codeCommune": "80787", - "libelleAcheminement": "VERCOURT", - "nomCommune": "VERCOURT" + "codePostal": "85150", + "codeCommune": "85214", + "libelleAcheminement": "STE FOY", + "nomCommune": "STE FOY" }, { - "codePostal": "95420", - "codeCommune": "95309", - "libelleAcheminement": "HODENT", - "nomCommune": "HODENT" + "codePostal": "88320", + "codeCommune": "88314", + "libelleAcheminement": "MORIZECOURT", + "nomCommune": "MORIZECOURT" }, { - "codePostal": "80700", - "codeCommune": "80790", - "libelleAcheminement": "VERPILLIERES", - "nomCommune": "VERPILLIERES" + "codePostal": "85160", + "codeCommune": "85234", + "libelleAcheminement": "ST JEAN DE MONTS", + "nomCommune": "ST JEAN DE MONTS" }, { - "codePostal": "95280", - "codeCommune": "95323", - "libelleAcheminement": "JOUY LE MOUTIER", - "nomCommune": "JOUY LE MOUTIER" + "codePostal": "88600", + "codeCommune": "88322", + "libelleAcheminement": "LA NEUVEVILLE DEVANT LEPANGES", + "nomCommune": "LA NEUVEVILLE DEVANT LEPANGES" }, { - "codePostal": "80260", - "codeCommune": "80792", - "libelleAcheminement": "LA VICOGNE", - "nomCommune": "LA VICOGNE" + "codePostal": "85150", + "codeCommune": "85236", + "libelleAcheminement": "ST JULIEN DES LANDES", + "nomCommune": "ST JULIEN DES LANDES" }, { - "codePostal": "95420", - "codeCommune": "95355", - "libelleAcheminement": "MAGNY EN VEXIN", - "nomCommune": "MAGNY EN VEXIN" + "codePostal": "88170", + "codeCommune": "88324", + "libelleAcheminement": "LA NEUVEVILLE SOUS CHATENOIS", + "nomCommune": "LA NEUVEVILLE SOUS CHATENOIS" }, { - "codePostal": "80140", - "codeCommune": "80800", - "libelleAcheminement": "VILLERS CAMPSART", - "nomCommune": "VILLERS CAMPSART" + "codePostal": "85410", + "codeCommune": "85237", + "libelleAcheminement": "ST LAURENT DE LA SALLE", + "nomCommune": "ST LAURENT DE LA SALLE" }, { - "codePostal": "95810", - "codeCommune": "95387", - "libelleAcheminement": "MENOUVILLE", - "nomCommune": "MENOUVILLE" + "codePostal": "88800", + "codeCommune": "88325", + "libelleAcheminement": "LA NEUVEVILLE SOUS MONTFORT", + "nomCommune": "LA NEUVEVILLE SOUS MONTFORT" }, { - "codePostal": "80700", - "codeCommune": "80803", - "libelleAcheminement": "VILLERS LES ROYE", - "nomCommune": "VILLERS LES ROYE" + "codePostal": "85220", + "codeCommune": "85239", + "libelleAcheminement": "ST MAIXENT SUR VIE", + "nomCommune": "ST MAIXENT SUR VIE" }, { - "codePostal": "95640", - "codeCommune": "95447", - "libelleAcheminement": "NEUILLY EN VEXIN", - "nomCommune": "NEUILLY EN VEXIN" + "codePostal": "88600", + "codeCommune": "88331", + "libelleAcheminement": "NONZEVILLE", + "nomCommune": "NONZEVILLE" }, { - "codePostal": "80690", - "codeCommune": "80804", - "libelleAcheminement": "VILLERS SOUS AILLY", - "nomCommune": "VILLERS SOUS AILLY" + "codePostal": "85470", + "codeCommune": "85243", + "libelleAcheminement": "BREM SUR MER", + "nomCommune": "BREM SUR MER" }, { - "codePostal": "95620", - "codeCommune": "95480", - "libelleAcheminement": "PARMAIN", - "nomCommune": "PARMAIN" + "codePostal": "88700", + "codeCommune": "88338", + "libelleAcheminement": "ORTONCOURT", + "nomCommune": "ORTONCOURT" }, { - "codePostal": "80120", - "codeCommune": "80815", - "libelleAcheminement": "VRON", - "nomCommune": "VRON" + "codePostal": "85200", + "codeCommune": "85244", + "libelleAcheminement": "ST MARTIN DE FRAIGNEAU", + "nomCommune": "ST MARTIN DE FRAIGNEAU" }, { - "codePostal": "95300", - "codeCommune": "95500", - "libelleAcheminement": "PONTOISE", - "nomCommune": "PONTOISE" + "codePostal": "88700", + "codeCommune": "88340", + "libelleAcheminement": "PADOUX", + "nomCommune": "PADOUX" }, { - "codePostal": "80300", - "codeCommune": "80820", - "libelleAcheminement": "WARLOY BAILLON", - "nomCommune": "WARLOY BAILLON" + "codePostal": "85570", + "codeCommune": "85245", + "libelleAcheminement": "ST MARTIN DES FONTAINES", + "nomCommune": "ST MARTIN DES FONTAINES" }, { - "codePostal": "95700", - "codeCommune": "95527", - "libelleAcheminement": "ROISSY EN FRANCE", - "nomCommune": "ROISSY EN FRANCE" + "codePostal": "88800", + "codeCommune": "88343", + "libelleAcheminement": "PAREY SOUS MONTFORT", + "nomCommune": "PAREY SOUS MONTFORT" }, { - "codePostal": "80270", - "codeCommune": "80825", - "libelleAcheminement": "WIRY AU MONT", - "nomCommune": "WIRY AU MONT" + "codePostal": "85220", + "codeCommune": "85268", + "libelleAcheminement": "ST REVEREND", + "nomCommune": "ST REVEREND" }, { - "codePostal": "95340", - "codeCommune": "95529", - "libelleAcheminement": "RONQUEROLLES", - "nomCommune": "RONQUEROLLES" + "codePostal": "88600", + "codeCommune": "88348", + "libelleAcheminement": "PIERREPONT SUR L ARENTELE", + "nomCommune": "PIERREPONT SUR L ARENTELE" }, { - "codePostal": "80132", - "codeCommune": "80836", - "libelleAcheminement": "YONVAL", - "nomCommune": "YONVAL" + "codePostal": "85520", + "codeCommune": "85278", + "libelleAcheminement": "ST VINCENT SUR JARD", + "nomCommune": "ST VINCENT SUR JARD" }, { - "codePostal": "95510", - "codeCommune": "95543", - "libelleAcheminement": "ST CYR EN ARTHIES", - "nomCommune": "ST CYR EN ARTHIES" + "codePostal": "88330", + "codeCommune": "88355", + "libelleAcheminement": "PORTIEUX", + "nomCommune": "PORTIEUX" }, { - "codePostal": "81250", - "codeCommune": "81003", - "libelleAcheminement": "ALBAN", - "nomCommune": "ALBAN" + "codePostal": "85450", + "codeCommune": "85286", + "libelleAcheminement": "LA TAILLEE", + "nomCommune": "LA TAILLEE" }, { - "codePostal": "95640", - "codeCommune": "95584", - "libelleAcheminement": "SANTEUIL", - "nomCommune": "SANTEUIL" + "codePostal": "88260", + "codeCommune": "88360", + "libelleAcheminement": "PROVENCHERES LES DARNEY", + "nomCommune": "PROVENCHERES LES DARNEY" }, { - "codePostal": "81000", - "codeCommune": "81004", - "libelleAcheminement": "ALBI", - "nomCommune": "ALBI" + "codePostal": "85600", + "codeCommune": "85295", + "libelleAcheminement": "TREIZE SEPTIERS", + "nomCommune": "TREIZE SEPTIERS" }, { - "codePostal": "95230", - "codeCommune": "95598", - "libelleAcheminement": "SOISY SOUS MONTMORENCY", - "nomCommune": "SOISY SOUS MONTMORENCY" + "codePostal": "88630", + "codeCommune": "88363", + "libelleAcheminement": "PUNEROT", + "nomCommune": "PUNEROT" }, { - "codePostal": "81470", - "codeCommune": "81006", - "libelleAcheminement": "ALGANS", - "nomCommune": "ALGANS" + "codePostal": "85590", + "codeCommune": "85296", + "libelleAcheminement": "TREIZE VENTS", + "nomCommune": "TREIZE VENTS" }, { - "codePostal": "95810", - "codeCommune": "95611", - "libelleAcheminement": "THEUVILLE", - "nomCommune": "THEUVILLE" + "codePostal": "88500", + "codeCommune": "88364", + "libelleAcheminement": "PUZIEUX", + "nomCommune": "PUZIEUX" }, { - "codePostal": "81430", - "codeCommune": "81010", - "libelleAcheminement": "AMBIALET", - "nomCommune": "AMBIALET" + "codePostal": "85250", + "codeCommune": "85301", + "libelleAcheminement": "VENDRENNES", + "nomCommune": "VENDRENNES" }, { - "codePostal": "95760", - "codeCommune": "95628", - "libelleAcheminement": "VALMONDOIS", - "nomCommune": "VALMONDOIS" + "codePostal": "88130", + "codeCommune": "88374", + "libelleAcheminement": "RAPEY", + "nomCommune": "RAPEY" }, { - "codePostal": "81110", - "codeCommune": "81016", - "libelleAcheminement": "ARFONS", - "nomCommune": "ARFONS" + "codePostal": "85450", + "codeCommune": "85304", + "libelleAcheminement": "VOUILLE LES MARAIS", + "nomCommune": "VOUILLE LES MARAIS" }, { - "codePostal": "95500", - "codeCommune": "95633", - "libelleAcheminement": "VAUDHERLAND", - "nomCommune": "VAUDHERLAND" + "codePostal": "88330", + "codeCommune": "88379", + "libelleAcheminement": "REHAINCOURT", + "nomCommune": "REHAINCOURT" }, { - "codePostal": "81360", - "codeCommune": "81017", - "libelleAcheminement": "ARIFAT", - "nomCommune": "ARIFAT" + "codePostal": "86430", + "codeCommune": "86001", + "libelleAcheminement": "ADRIERS", + "nomCommune": "ADRIERS" }, { - "codePostal": "95270", - "codeCommune": "95652", - "libelleAcheminement": "VIARMES", - "nomCommune": "VIARMES" + "codePostal": "88300", + "codeCommune": "88393", + "libelleAcheminement": "ROLLAINVILLE", + "nomCommune": "ROLLAINVILLE" }, { - "codePostal": "81320", - "codeCommune": "81023", - "libelleAcheminement": "BARRE", - "nomCommune": "BARRE" + "codePostal": "86310", + "codeCommune": "86006", + "libelleAcheminement": "ANTIGNY", + "nomCommune": "ANTIGNY" }, { - "codePostal": "95510", - "codeCommune": "95656", - "libelleAcheminement": "VIENNE EN ARTHIES", - "nomCommune": "VIENNE EN ARTHIES" + "codePostal": "88600", + "codeCommune": "88398", + "libelleAcheminement": "LES ROUGES EAUX", + "nomCommune": "LES ROUGES EAUX" }, { - "codePostal": "81630", - "codeCommune": "81024", - "libelleAcheminement": "BEAUVAIS SUR TESCOU", - "nomCommune": "BEAUVAIS SUR TESCOU" + "codePostal": "86100", + "codeCommune": "86007", + "libelleAcheminement": "ANTRAN", + "nomCommune": "ANTRAN" }, { - "codePostal": "97121", - "codeCommune": "97102", - "libelleAcheminement": "ANSE BERTRAND", - "nomCommune": "ANSE BERTRAND" + "codePostal": "88500", + "codeCommune": "88400", + "libelleAcheminement": "ROUVRES EN XAINTOIS", + "nomCommune": "ROUVRES EN XAINTOIS" }, { - "codePostal": "81430", - "codeCommune": "81026", - "libelleAcheminement": "BELLEGARDE MARSAL", - "nomCommune": "BELLEGARDE MARSAL" + "codePostal": "86200", + "codeCommune": "86008", + "libelleAcheminement": "ARCAY", + "nomCommune": "ARCAY" }, { - "codePostal": "97125", - "codeCommune": "97106", - "libelleAcheminement": "BOUILLANTE", - "nomCommune": "BOUILLANTE" + "codePostal": "88320", + "codeCommune": "88404", + "libelleAcheminement": "ROZIERES SUR MOUZON", + "nomCommune": "ROZIERES SUR MOUZON" }, { - "codePostal": "81260", - "codeCommune": "81028", - "libelleAcheminement": "BERLATS", - "nomCommune": "BERLATS" + "codePostal": "86250", + "codeCommune": "86012", + "libelleAcheminement": "ASNOIS", + "nomCommune": "ASNOIS" }, { - "codePostal": "97130", - "codeCommune": "97107", - "libelleAcheminement": "CAPESTERRE BELLE EAU", - "nomCommune": "CAPESTERRE BELLE EAU" + "codePostal": "88700", + "codeCommune": "88410", + "libelleAcheminement": "STE BARBE", + "nomCommune": "STE BARBE" }, { - "codePostal": "81440", - "codeCommune": "81040", - "libelleAcheminement": "BROUSSE", - "nomCommune": "BROUSSE" + "codePostal": "86330", + "codeCommune": "86013", + "libelleAcheminement": "AULNAY", + "nomCommune": "AULNAY" }, { - "codePostal": "97130", - "codeCommune": "97107", - "libelleAcheminement": "CAPESTERRE BELLE EAU", - "nomCommune": "CAPESTERRE BELLE EAU" + "codePostal": "88210", + "codeCommune": "88419", + "libelleAcheminement": "ST JEAN D ORMONT", + "nomCommune": "ST JEAN D ORMONT" }, { - "codePostal": "81150", - "codeCommune": "81061", - "libelleAcheminement": "CASTANET", - "nomCommune": "CASTANET" + "codePostal": "86200", + "codeCommune": "86018", + "libelleAcheminement": "BASSES", + "nomCommune": "BASSES" }, { - "codePostal": "97113", - "codeCommune": "97109", - "libelleAcheminement": "GOURBEYRE", - "nomCommune": "GOURBEYRE" + "codePostal": "88700", + "codeCommune": "88425", + "libelleAcheminement": "ST MAURICE SUR MORTAGNE", + "nomCommune": "ST MAURICE SUR MORTAGNE" }, { - "codePostal": "81200", - "codeCommune": "81066", - "libelleAcheminement": "CAUCALIERES", - "nomCommune": "CAUCALIERES" + "codePostal": "86490", + "codeCommune": "86019", + "libelleAcheminement": "BEAUMONT ST CYR", + "nomCommune": "BEAUMONT ST CYR" }, { - "codePostal": "97131", - "codeCommune": "97119", - "libelleAcheminement": "PETIT CANAL", - "nomCommune": "PETIT CANAL" + "codePostal": "88200", + "codeCommune": "88429", + "libelleAcheminement": "ST NABORD", + "nomCommune": "ST NABORD" }, { - "codePostal": "81170", - "codeCommune": "81069", - "libelleAcheminement": "CORDES SUR CIEL", - "nomCommune": "CORDES SUR CIEL" + "codePostal": "86190", + "codeCommune": "86024", + "libelleAcheminement": "BERUGES", + "nomCommune": "BERUGES" }, { - "codePostal": "97117", - "codeCommune": "97122", - "libelleAcheminement": "PORT LOUIS", - "nomCommune": "PORT LOUIS" + "codePostal": "88140", + "codeCommune": "88430", + "libelleAcheminement": "ST OUEN LES PAREY", + "nomCommune": "ST OUEN LES PAREY" }, { - "codePostal": "81470", - "codeCommune": "81076", - "libelleAcheminement": "CUQ TOULZA", - "nomCommune": "CUQ TOULZA" + "codePostal": "86310", + "codeCommune": "86025", + "libelleAcheminement": "BETHINES", + "nomCommune": "BETHINES" }, { - "codePostal": "97136", - "codeCommune": "97130", - "libelleAcheminement": "TERRE DE BAS", - "nomCommune": "TERRE DE BAS" + "codePostal": "88700", + "codeCommune": "88432", + "libelleAcheminement": "ST PIERREMONT", + "nomCommune": "ST PIERREMONT" }, { - "codePostal": "81170", - "codeCommune": "81080", - "libelleAcheminement": "DONNAZAC", - "nomCommune": "DONNAZAC" + "codePostal": "86300", + "codeCommune": "86031", + "libelleAcheminement": "BONNES", + "nomCommune": "BONNES" }, { - "codePostal": "97141", - "codeCommune": "97133", - "libelleAcheminement": "VIEUX FORT", - "nomCommune": "VIEUX FORT" + "codePostal": "88480", + "codeCommune": "88435", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "81150", - "codeCommune": "81087", - "libelleAcheminement": "FAYSSAC", - "nomCommune": "FAYSSAC" + "codePostal": "86120", + "codeCommune": "86036", + "libelleAcheminement": "BOURNAND", + "nomCommune": "BOURNAND" }, { - "codePostal": "97217", - "codeCommune": "97202", - "libelleAcheminement": "LES ANSES D ARLET", - "nomCommune": "LES ANSES D ARLET" + "codePostal": "88390", + "codeCommune": "88439", + "libelleAcheminement": "SANCHEY", + "nomCommune": "SANCHEY" }, { - "codePostal": "81120", - "codeCommune": "81088", - "libelleAcheminement": "FAUCH", - "nomCommune": "FAUCH" + "codePostal": "86160", + "codeCommune": "86038", + "libelleAcheminement": "BRION", + "nomCommune": "BRION" }, { - "codePostal": "97221", - "codeCommune": "97204", - "libelleAcheminement": "LE CARBET", - "nomCommune": "LE CARBET" + "codePostal": "88120", + "codeCommune": "88442", + "libelleAcheminement": "SAPOIS", + "nomCommune": "SAPOIS" }, { - "codePostal": "81500", - "codeCommune": "81092", - "libelleAcheminement": "FIAC", - "nomCommune": "FIAC" + "codePostal": "86180", + "codeCommune": "86041", + "libelleAcheminement": "BUXEROLLES", + "nomCommune": "BUXEROLLES" }, { - "codePostal": "97200", - "codeCommune": "97209", - "libelleAcheminement": "FORT DE FRANCE", - "nomCommune": "FORT DE FRANCE" + "codePostal": "88140", + "codeCommune": "88446", + "libelleAcheminement": "SAULXURES LES BULGNEVILLE", + "nomCommune": "SAULXURES LES BULGNEVILLE" }, { - "codePostal": "81600", - "codeCommune": "81099", - "libelleAcheminement": "GAILLAC", - "nomCommune": "GAILLAC" + "codePostal": "86600", + "codeCommune": "86045", + "libelleAcheminement": "CELLE LEVESCAULT", + "nomCommune": "CELLE LEVESCAULT" }, { - "codePostal": "97234", - "codeCommune": "97209", - "libelleAcheminement": "FORT DE FRANCE", - "nomCommune": "FORT DE FRANCE" + "codePostal": "88290", + "codeCommune": "88447", + "libelleAcheminement": "SAULXURES SUR MOSELOTTE", + "nomCommune": "SAULXURES SUR MOSELOTTE" }, { - "codePostal": "81700", - "codeCommune": "81100", - "libelleAcheminement": "GARREVAQUES", - "nomCommune": "GARREVAQUES" + "codePostal": "86530", + "codeCommune": "86046", + "libelleAcheminement": "CENON SUR VIENNE", + "nomCommune": "CENON SUR VIENNE" }, { - "codePostal": "97211", - "codeCommune": "97220", - "libelleAcheminement": "RIVIERE PILOTE", - "nomCommune": "RIVIERE PILOTE" + "codePostal": "88630", + "codeCommune": "88453", + "libelleAcheminement": "SERAUMONT", + "nomCommune": "SERAUMONT" }, { - "codePostal": "81800", - "codeCommune": "81106", - "libelleAcheminement": "GRAZAC", - "nomCommune": "GRAZAC" + "codePostal": "86200", + "codeCommune": "86049", + "libelleAcheminement": "CHALAIS", + "nomCommune": "CHALAIS" }, { - "codePostal": "97270", - "codeCommune": "97223", - "libelleAcheminement": "ST ESPRIT", - "nomCommune": "ST ESPRIT" + "codePostal": "88100", + "codeCommune": "88463", + "libelleAcheminement": "TAINTRUX", + "nomCommune": "TAINTRUX" }, { - "codePostal": "81440", - "codeCommune": "81109", - "libelleAcheminement": "JONQUIERES", - "nomCommune": "JONQUIERES" + "codePostal": "86170", + "codeCommune": "86053", + "libelleAcheminement": "CHAMPIGNY EN ROCHEREAU", + "nomCommune": "CHAMPIGNY EN ROCHEREAU" }, { - "codePostal": "97212", - "codeCommune": "97224", - "libelleAcheminement": "ST JOSEPH", - "nomCommune": "ST JOSEPH" + "codePostal": "88150", + "codeCommune": "88465", + "libelleAcheminement": "THAON LES VOSGES", + "nomCommune": "THAON LES VOSGES" }, { - "codePostal": "81340", - "codeCommune": "81122", - "libelleAcheminement": "LACAPELLE PINET", - "nomCommune": "LACAPELLE PINET" + "codePostal": "86100", + "codeCommune": "86066", + "libelleAcheminement": "CHATELLERAULT", + "nomCommune": "CHATELLERAULT" }, { - "codePostal": "97222", - "codeCommune": "97234", - "libelleAcheminement": "BELLEFONTAINE", - "nomCommune": "BELLEFONTAINE" + "codePostal": "88290", + "codeCommune": "88467", + "libelleAcheminement": "THIEFOSSE", + "nomCommune": "THIEFOSSE" }, { - "codePostal": "81230", - "codeCommune": "81124", - "libelleAcheminement": "LACAUNE", - "nomCommune": "LACAUNE" + "codePostal": "86450", + "codeCommune": "86072", + "libelleAcheminement": "CHENEVELLES", + "nomCommune": "CHENEVELLES" }, { - "codePostal": "97390", - "codeCommune": "97301", - "libelleAcheminement": "REGINA", - "nomCommune": "REGINA" + "codePostal": "88530", + "codeCommune": "88470", + "libelleAcheminement": "LE THOLY", + "nomCommune": "LE THOLY" }, { - "codePostal": "81330", - "codeCommune": "81125", - "libelleAcheminement": "LACAZE", - "nomCommune": "LACAZE" + "codePostal": "86170", + "codeCommune": "86076", + "libelleAcheminement": "CISSE", + "nomCommune": "CISSE" }, { - "codePostal": "97350", - "codeCommune": "97303", - "libelleAcheminement": "IRACOUBO", - "nomCommune": "IRACOUBO" + "codePostal": "88300", + "codeCommune": "88478", + "libelleAcheminement": "TRANQUEVILLE GRAUX", + "nomCommune": "TRANQUEVILLE GRAUX" }, { - "codePostal": "81220", - "codeCommune": "81132", - "libelleAcheminement": "GUITALENS L ALBAREDE", - "nomCommune": "GUITALENS L ALBAREDE" + "codePostal": "86200", + "codeCommune": "86079", + "libelleAcheminement": "LA ROCHE RIGAULT", + "nomCommune": "LA ROCHE RIGAULT" }, { - "codePostal": "97354", - "codeCommune": "97309", - "libelleAcheminement": "REMIRE MONTJOLY", - "nomCommune": "REMIRE MONTJOLY" + "codePostal": "88220", + "codeCommune": "88484", + "libelleAcheminement": "UZEMAIN", + "nomCommune": "UZEMAIN" }, { - "codePostal": "81500", - "codeCommune": "81159", - "libelleAcheminement": "MASSAC SERAN", - "nomCommune": "MASSAC SERAN" + "codePostal": "86700", + "codeCommune": "86082", + "libelleAcheminement": "VALENCE EN POITOU", + "nomCommune": "VALENCE EN POITOU" }, { - "codePostal": "97314", - "codeCommune": "97352", - "libelleAcheminement": "SAUL", - "nomCommune": "SAUL" + "codePostal": "88270", + "codeCommune": "88488", + "libelleAcheminement": "VALFROICOURT", + "nomCommune": "VALFROICOURT" }, { - "codePostal": "81110", - "codeCommune": "81160", - "libelleAcheminement": "MASSAGUEL", - "nomCommune": "MASSAGUEL" + "codePostal": "86130", + "codeCommune": "86095", + "libelleAcheminement": "DISSAY", + "nomCommune": "DISSAY" }, { - "codePostal": "97316", - "codeCommune": "97362", - "libelleAcheminement": "POMPIDOU PAPA ICHTON", - "nomCommune": "PAPAICHTON" + "codePostal": "88230", + "codeCommune": "88492", + "libelleAcheminement": "LE VALTIN", + "nomCommune": "LE VALTIN" }, { - "codePostal": "81190", - "codeCommune": "81168", - "libelleAcheminement": "MIRANDOL BOURGNOUNAC", - "nomCommune": "MIRANDOL BOURGNOUNAC" + "codePostal": "86330", + "codeCommune": "86108", + "libelleAcheminement": "LA GRIMAUDIERE", + "nomCommune": "LA GRIMAUDIERE" }, { - "codePostal": "97431", - "codeCommune": "97406", - "libelleAcheminement": "LA PLAINE DES PALMISTES", - "nomCommune": "LA PLAINE DES PALMISTES" + "codePostal": "88450", + "codeCommune": "88493", + "libelleAcheminement": "VARMONZEY", + "nomCommune": "VARMONZEY" }, { - "codePostal": "81210", - "codeCommune": "81177", - "libelleAcheminement": "MONTFA", - "nomCommune": "MONTFA" + "codePostal": "86330", + "codeCommune": "86108", + "libelleAcheminement": "LA GRIMAUDIERE", + "nomCommune": "LA GRIMAUDIERE" }, { - "codePostal": "97420", - "codeCommune": "97407", - "libelleAcheminement": "LE PORT", - "nomCommune": "LE PORT" + "codePostal": "88330", + "codeCommune": "88497", + "libelleAcheminement": "VAXONCOURT", + "nomCommune": "VAXONCOURT" + }, + { + "codePostal": "86380", + "codeCommune": "86115", + "libelleAcheminement": "JAUNAY MARIGNY", + "nomCommune": "JAUNAY MARIGNY" }, { - "codePostal": "81630", - "codeCommune": "81178", - "libelleAcheminement": "MONTGAILLARD", - "nomCommune": "MONTGAILLARD" + "codePostal": "88200", + "codeCommune": "88498", + "libelleAcheminement": "VECOUX", + "nomCommune": "VECOUX" }, { - "codePostal": "97420", - "codeCommune": "97407", - "libelleAcheminement": "LE PORT", - "nomCommune": "LE PORT" + "codePostal": "86600", + "codeCommune": "86116", + "libelleAcheminement": "JAZENEUIL", + "nomCommune": "JAZENEUIL" }, { - "codePostal": "81170", - "codeCommune": "81191", - "libelleAcheminement": "MOUZIEYS PANENS", - "nomCommune": "MOUZIEYS PANENS" + "codePostal": "88210", + "codeCommune": "88501", + "libelleAcheminement": "LE VERMONT", + "nomCommune": "LE VERMONT" }, { - "codePostal": "97400", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "86350", + "codeCommune": "86119", + "libelleAcheminement": "JOUSSE", + "nomCommune": "JOUSSE" }, { - "codePostal": "81320", - "codeCommune": "81192", - "libelleAcheminement": "MURAT SUR VEBRE", - "nomCommune": "MURAT SUR VEBRE" + "codePostal": "88430", + "codeCommune": "88505", + "libelleAcheminement": "VIENVILLE", + "nomCommune": "VIENVILLE" }, { - "codePostal": "97400", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "86470", + "codeCommune": "86123", + "libelleAcheminement": "BOIVRE LA VALLEE", + "nomCommune": "BOIVRE LA VALLEE" }, { - "codePostal": "81700", - "codeCommune": "81200", - "libelleAcheminement": "PALLEVILLE", - "nomCommune": "PALLEVILLE" + "codePostal": "88210", + "codeCommune": "88506", + "libelleAcheminement": "VIEUX MOULIN", + "nomCommune": "VIEUX MOULIN" }, { - "codePostal": "97490", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "86470", + "codeCommune": "86123", + "libelleAcheminement": "BOIVRE LA VALLEE", + "nomCommune": "BOIVRE LA VALLEE" }, { - "codePostal": "81190", - "codeCommune": "81201", - "libelleAcheminement": "PAMPELONNE", - "nomCommune": "PAMPELONNE" + "codePostal": "88600", + "codeCommune": "88512", + "libelleAcheminement": "VIMENIL", + "nomCommune": "VIMENIL" }, { - "codePostal": "97490", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "86600", + "codeCommune": "86139", + "libelleAcheminement": "LUSIGNAN", + "nomCommune": "LUSIGNAN" }, { - "codePostal": "81310", - "codeCommune": "81208", - "libelleAcheminement": "PEYROLE", - "nomCommune": "PEYROLE" + "codePostal": "88500", + "codeCommune": "88518", + "libelleAcheminement": "VIVIERS LES OFFROICOURT", + "nomCommune": "VIVIERS LES OFFROICOURT" }, { - "codePostal": "97480", - "codeCommune": "97412", - "libelleAcheminement": "ST JOSEPH", - "nomCommune": "ST JOSEPH" + "codePostal": "86320", + "codeCommune": "86140", + "libelleAcheminement": "LUSSAC LES CHATEAUX", + "nomCommune": "LUSSAC LES CHATEAUX" }, { - "codePostal": "81600", - "codeCommune": "81225", - "libelleAcheminement": "RIVIERES", - "nomCommune": "RIVIERES" + "codePostal": "88400", + "codeCommune": "88531", + "libelleAcheminement": "XONRUPT LONGEMER", + "nomCommune": "XONRUPT LONGEMER" }, { - "codePostal": "97421", - "codeCommune": "97414", - "libelleAcheminement": "ST LOUIS", - "nomCommune": "ST LOUIS" + "codePostal": "86160", + "codeCommune": "86141", + "libelleAcheminement": "MAGNE", + "nomCommune": "MAGNE" }, { - "codePostal": "81120", - "codeCommune": "81233", - "libelleAcheminement": "TERRE DE BANCALIE", - "nomCommune": "TERRE DE BANCALIE" + "codePostal": "89310", + "codeCommune": "89010", + "libelleAcheminement": "ANNAY SUR SEREIN", + "nomCommune": "ANNAY SUR SEREIN" }, { - "codePostal": "97411", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "86190", + "codeCommune": "86142", + "libelleAcheminement": "MAILLE", + "nomCommune": "MAILLE" }, { - "codePostal": "81240", - "codeCommune": "81238", - "libelleAcheminement": "ST AMANS SOULT", - "nomCommune": "ST AMANS SOULT" + "codePostal": "89380", + "codeCommune": "89013", + "libelleAcheminement": "APPOIGNY", + "nomCommune": "APPOIGNY" }, { - "codePostal": "97434", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "86160", + "codeCommune": "86148", + "libelleAcheminement": "MARNAY", + "nomCommune": "MARNAY" }, { - "codePostal": "81140", - "codeCommune": "81243", - "libelleAcheminement": "ST BEAUZILE", - "nomCommune": "ST BEAUZILE" + "codePostal": "89320", + "codeCommune": "89014", + "libelleAcheminement": "ARCES DILO", + "nomCommune": "ARCES DILO" }, { - "codePostal": "97435", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "86200", + "codeCommune": "86151", + "libelleAcheminement": "MAULAY", + "nomCommune": "MAULAY" }, { - "codePostal": "81140", - "codeCommune": "81246", - "libelleAcheminement": "STE CECILE DU CAYROU", - "nomCommune": "STE CECILE DU CAYROU" + "codePostal": "89320", + "codeCommune": "89014", + "libelleAcheminement": "ARCES DILO", + "nomCommune": "ARCES DILO" }, { - "codePostal": "97442", - "codeCommune": "97417", - "libelleAcheminement": "ST PHILIPPE", - "nomCommune": "ST PHILIPPE" + "codePostal": "86110", + "codeCommune": "86154", + "libelleAcheminement": "MAZEUIL", + "nomCommune": "MAZEUIL" }, { - "codePostal": "81190", - "codeCommune": "81249", - "libelleAcheminement": "STE GEMME", - "nomCommune": "STE GEMME" + "codePostal": "89500", + "codeCommune": "89018", + "libelleAcheminement": "ARMEAU", + "nomCommune": "ARMEAU" }, { - "codePostal": "97442", - "codeCommune": "97417", - "libelleAcheminement": "ST PHILIPPE", - "nomCommune": "ST PHILIPPE" + "codePostal": "86550", + "codeCommune": "86157", + "libelleAcheminement": "MIGNALOUX BEAUVOIR", + "nomCommune": "MIGNALOUX BEAUVOIR" }, { - "codePostal": "81350", - "codeCommune": "81253", - "libelleAcheminement": "ST GREGOIRE", - "nomCommune": "ST GREGOIRE" + "codePostal": "89450", + "codeCommune": "89021", + "libelleAcheminement": "ASQUINS", + "nomCommune": "ASQUINS" }, { - "codePostal": "97438", - "codeCommune": "97418", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "86330", + "codeCommune": "86161", + "libelleAcheminement": "MONCONTOUR", + "nomCommune": "MONCONTOUR" }, { - "codePostal": "81500", - "codeCommune": "81255", - "libelleAcheminement": "ST JEAN DE RIVES", - "nomCommune": "ST JEAN DE RIVES" + "codePostal": "89200", + "codeCommune": "89025", + "libelleAcheminement": "AVALLON", + "nomCommune": "AVALLON" }, { - "codePostal": "97438", - "codeCommune": "97418", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "86230", + "codeCommune": "86162", + "libelleAcheminement": "MONDION", + "nomCommune": "MONDION" }, { - "codePostal": "81210", - "codeCommune": "81256", - "libelleAcheminement": "ST JEAN DE VALS", - "nomCommune": "ST JEAN DE VALS" + "codePostal": "89430", + "codeCommune": "89028", + "libelleAcheminement": "BAON", + "nomCommune": "BAON" }, { - "codePostal": "97438", - "codeCommune": "97418", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "86210", + "codeCommune": "86164", + "libelleAcheminement": "MONTHOIRON", + "nomCommune": "MONTHOIRON" }, { - "codePostal": "81440", - "codeCommune": "81258", - "libelleAcheminement": "ST JULIEN DU PUY", - "nomCommune": "ST JULIEN DU PUY" + "codePostal": "89210", + "codeCommune": "89035", + "libelleAcheminement": "BELLECHAUME", + "nomCommune": "BELLECHAUME" }, { - "codePostal": "97439", - "codeCommune": "97419", - "libelleAcheminement": "STE ROSE", - "nomCommune": "STE ROSE" + "codePostal": "86500", + "codeCommune": "86165", + "libelleAcheminement": "MONTMORILLON", + "nomCommune": "MONTMORILLON" }, { - "codePostal": "81140", - "codeCommune": "81265", - "libelleAcheminement": "ST MICHEL DE VAX", - "nomCommune": "ST MICHEL DE VAX" + "codePostal": "89570", + "codeCommune": "89041", + "libelleAcheminement": "BEUGNON", + "nomCommune": "BEUGNON" }, { - "codePostal": "97418", - "codeCommune": "97422", - "libelleAcheminement": "LE TAMPON", - "nomCommune": "LE TAMPON" + "codePostal": "86200", + "codeCommune": "86173", + "libelleAcheminement": "MOUTERRE SILLY", + "nomCommune": "MOUTERRE SILLY" }, { - "codePostal": "81640", - "codeCommune": "81275", - "libelleAcheminement": "SALLES", - "nomCommune": "SALLES" + "codePostal": "89440", + "codeCommune": "89043", + "libelleAcheminement": "BLACY", + "nomCommune": "BLACY" }, { - "codePostal": "97430", - "codeCommune": "97422", - "libelleAcheminement": "LE TAMPON", - "nomCommune": "LE TAMPON" + "codePostal": "86380", + "codeCommune": "86184", + "libelleAcheminement": "OUZILLY", + "nomCommune": "OUZILLY" }, { - "codePostal": "81600", - "codeCommune": "81283", - "libelleAcheminement": "SENOUILLAC", - "nomCommune": "SENOUILLAC" + "codePostal": "89230", + "codeCommune": "89045", + "libelleAcheminement": "BLEIGNY LE CARREAU", + "nomCommune": "BLEIGNY LE CARREAU" }, { - "codePostal": "97413", - "codeCommune": "97424", - "libelleAcheminement": "CILAOS", - "nomCommune": "CILAOS" + "codePostal": "86220", + "codeCommune": "86186", + "libelleAcheminement": "OYRE", + "nomCommune": "OYRE" }, { - "codePostal": "81630", - "codeCommune": "81293", - "libelleAcheminement": "TAURIAC", - "nomCommune": "TAURIAC" + "codePostal": "89500", + "codeCommune": "89060", + "libelleAcheminement": "BUSSY LE REPOS", + "nomCommune": "BUSSY LE REPOS" }, { - "codePostal": "97500", - "codeCommune": "97501", - "libelleAcheminement": "ST PIERRE ET MIQUELON", - "nomCommune": "MIQUELON LANGLADE" + "codePostal": "86220", + "codeCommune": "86195", + "libelleAcheminement": "PORT DE PILES", + "nomCommune": "PORT DE PILES" }, { - "codePostal": "81340", - "codeCommune": "81308", - "libelleAcheminement": "VALENCE D ALBIGEOIS", - "nomCommune": "VALENCE D ALBIGEOIS" + "codePostal": "89660", + "codeCommune": "89071", + "libelleAcheminement": "CHAMOUX", + "nomCommune": "CHAMOUX" }, { - "codePostal": "97630", - "codeCommune": "97601", - "libelleAcheminement": "ACOUA", - "nomCommune": "ACOUA" + "codePostal": "86190", + "codeCommune": "86204", + "libelleAcheminement": "QUINCAY", + "nomCommune": "QUINCAY" }, { - "codePostal": "81140", - "codeCommune": "81309", - "libelleAcheminement": "VAOUR", - "nomCommune": "VAOUR" + "codePostal": "89260", + "codeCommune": "89080", + "libelleAcheminement": "LA CHAPELLE SUR OREUSE", + "nomCommune": "LA CHAPELLE SUR OREUSE" }, { - "codePostal": "97670", - "codeCommune": "97605", - "libelleAcheminement": "CHICONI", - "nomCommune": "CHICONI" + "codePostal": "86330", + "codeCommune": "86218", + "libelleAcheminement": "ST CLAIR", + "nomCommune": "ST CLAIR" }, { - "codePostal": "81570", - "codeCommune": "81315", - "libelleAcheminement": "VIELMUR SUR AGOUT", - "nomCommune": "VIELMUR SUR AGOUT" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "97620", - "codeCommune": "97606", - "libelleAcheminement": "CHIRONGUI", - "nomCommune": "CHIRONGUI" + "codePostal": "86200", + "codeCommune": "86227", + "libelleAcheminement": "ST LAON", + "nomCommune": "ST LAON" }, { - "codePostal": "81140", - "codeCommune": "81316", - "libelleAcheminement": "VIEUX", - "nomCommune": "VIEUX" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "97625", - "codeCommune": "97609", - "libelleAcheminement": "KANI KELI", - "nomCommune": "KANI KELI" + "codePostal": "86300", + "codeCommune": "86233", + "libelleAcheminement": "VALDIVIENNE", + "nomCommune": "VALDIVIENNE" }, { - "codePostal": "81500", - "codeCommune": "81318", - "libelleAcheminement": "VILLENEUVE LES LAVAUR", - "nomCommune": "VILLENEUVE LES LAVAUR" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "97600", - "codeCommune": "97610", - "libelleAcheminement": "KOUNGOU", - "nomCommune": "KOUNGOU" + "codePostal": "86300", + "codeCommune": "86233", + "libelleAcheminement": "VALDIVIENNE", + "nomCommune": "VALDIVIENNE" }, { - "codePostal": "81500", - "codeCommune": "81324", - "libelleAcheminement": "VIVIERS LES LAVAUR", - "nomCommune": "VIVIERS LES LAVAUR" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "97670", - "codeCommune": "97614", - "libelleAcheminement": "OUANGANI", - "nomCommune": "OUANGANI" + "codePostal": "86350", + "codeCommune": "86248", + "libelleAcheminement": "ST SECONDIN", + "nomCommune": "ST SECONDIN" }, { - "codePostal": "81290", - "codeCommune": "81325", - "libelleAcheminement": "VIVIERS LES MONTAGNES", - "nomCommune": "VIVIERS LES MONTAGNES" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "97670", - "codeCommune": "97614", - "libelleAcheminement": "OUANGANI", - "nomCommune": "OUANGANI" + "codePostal": "86420", + "codeCommune": "86249", + "libelleAcheminement": "SAIRES", + "nomCommune": "SAIRES" }, { - "codePostal": "81150", - "codeCommune": "81326", - "libelleAcheminement": "STE CROIX", - "nomCommune": "STE CROIX" + "codePostal": "89500", + "codeCommune": "89094", + "libelleAcheminement": "CHAUMOT", + "nomCommune": "CHAUMOT" }, { - "codePostal": "98786", - "codeCommune": "98711", - "libelleAcheminement": "HITIANAU", - "nomCommune": "ANAA" + "codePostal": "86120", + "codeCommune": "86269", + "libelleAcheminement": "TERNAY", + "nomCommune": "TERNAY" }, { - "codePostal": "82290", - "codeCommune": "82001", - "libelleAcheminement": "ALBEFEUILLE LAGARDE", - "nomCommune": "ALBEFEUILLE LAGARDE" + "codePostal": "89690", + "codeCommune": "89100", + "libelleAcheminement": "CHEROY", + "nomCommune": "CHEROY" }, { - "codePostal": "98701", - "codeCommune": "98712", - "libelleAcheminement": "ARUE", - "nomCommune": "ARUE" + "codePostal": "86290", + "codeCommune": "86273", + "libelleAcheminement": "LA TRIMOUILLE", + "nomCommune": "LA TRIMOUILLE" }, { - "codePostal": "82100", - "codeCommune": "82012", - "libelleAcheminement": "LES BARTHES", - "nomCommune": "LES BARTHES" + "codePostal": "89400", + "codeCommune": "89105", + "libelleAcheminement": "CHICHERY", + "nomCommune": "CHICHERY" }, { - "codePostal": "98761", - "codeCommune": "98713", - "libelleAcheminement": "RAUTINI", - "nomCommune": "ARUTUA" + "codePostal": "86120", + "codeCommune": "86274", + "libelleAcheminement": "LES TROIS MOUTIERS", + "nomCommune": "LES TROIS MOUTIERS" }, { - "codePostal": "82600", - "codeCommune": "82014", - "libelleAcheminement": "BEAUPUY", - "nomCommune": "BEAUPUY" + "codePostal": "89700", + "codeCommune": "89112", + "libelleAcheminement": "COLLAN", + "nomCommune": "COLLAN" }, { - "codePostal": "98762", - "codeCommune": "98713", - "libelleAcheminement": "NIUTAHI", - "nomCommune": "ARUTUA" + "codePostal": "86350", + "codeCommune": "86276", + "libelleAcheminement": "USSON DU POITOU", + "nomCommune": "USSON DU POITOU" }, { - "codePostal": "82370", - "codeCommune": "82027", - "libelleAcheminement": "CAMPSAS", - "nomCommune": "CAMPSAS" + "codePostal": "89100", + "codeCommune": "89113", + "libelleAcheminement": "COLLEMIERS", + "nomCommune": "COLLEMIERS" }, { - "codePostal": "98730", - "codeCommune": "98714", - "libelleAcheminement": "ANAU", - "nomCommune": "BORA BORA" + "codePostal": "86230", + "codeCommune": "86280", + "libelleAcheminement": "VELLECHES", + "nomCommune": "VELLECHES" }, { - "codePostal": "82210", - "codeCommune": "82035", - "libelleAcheminement": "CAUMONT", - "nomCommune": "CAUMONT" + "codePostal": "89140", + "codeCommune": "89115", + "libelleAcheminement": "COMPIGNY", + "nomCommune": "COMPIGNY" }, { - "codePostal": "98730", - "codeCommune": "98714", - "libelleAcheminement": "NUNUE", - "nomCommune": "BORA BORA" + "codePostal": "86700", + "codeCommune": "86296", + "libelleAcheminement": "VOULON", + "nomCommune": "VOULON" }, { - "codePostal": "82440", - "codeCommune": "82039", - "libelleAcheminement": "CAYRAC", - "nomCommune": "CAYRAC" + "codePostal": "89580", + "codeCommune": "89118", + "libelleAcheminement": "COULANGES LA VINEUSE", + "nomCommune": "COULANGES LA VINEUSE" }, { - "codePostal": "98704", - "codeCommune": "98715", - "libelleAcheminement": "FAAA", - "nomCommune": "FAAA" + "codePostal": "86580", + "codeCommune": "86297", + "libelleAcheminement": "VOUNEUIL SOUS BIARD", + "nomCommune": "VOUNEUIL SOUS BIARD" }, { - "codePostal": "82140", - "codeCommune": "82041", - "libelleAcheminement": "CAZALS", - "nomCommune": "CAZALS" + "codePostal": "89190", + "codeCommune": "89122", + "libelleAcheminement": "COURGENAY", + "nomCommune": "COURGENAY" }, { - "codePostal": "98790", - "codeCommune": "98716", - "libelleAcheminement": "OFARE", - "nomCommune": "FAKARAVA" + "codePostal": "86170", + "codeCommune": "86300", + "libelleAcheminement": "YVERSAY", + "nomCommune": "YVERSAY" }, { - "codePostal": "82700", - "codeCommune": "82045", - "libelleAcheminement": "CORDES TOLOSANNES", - "nomCommune": "CORDES TOLOSANNES" + "codePostal": "89150", + "codeCommune": "89126", + "libelleAcheminement": "COURTOIN", + "nomCommune": "COURTOIN" }, { - "codePostal": "98740", - "codeCommune": "98718", - "libelleAcheminement": "HANAVAVE", - "nomCommune": "FATU HIVA" + "codePostal": "87160", + "codeCommune": "87003", + "libelleAcheminement": "ARNAC LA POSTE", + "nomCommune": "ARNAC LA POSTE" }, { - "codePostal": "82170", - "codeCommune": "82048", - "libelleAcheminement": "DIEUPENTALE", - "nomCommune": "DIEUPENTALE" + "codePostal": "89440", + "codeCommune": "89128", + "libelleAcheminement": "COUTARNOUX", + "nomCommune": "COUTARNOUX" }, { - "codePostal": "98755", - "codeCommune": "98719", - "libelleAcheminement": "KAMAKA", - "nomCommune": "GAMBIER" + "codePostal": "87220", + "codeCommune": "87005", + "libelleAcheminement": "AUREIL", + "nomCommune": "AUREIL" }, { - "codePostal": "82340", - "codeCommune": "82049", - "libelleAcheminement": "DONZAC", - "nomCommune": "DONZAC" + "codePostal": "89116", + "codeCommune": "89133", + "libelleAcheminement": "CUDOT", + "nomCommune": "CUDOT" }, { - "codePostal": "98755", - "codeCommune": "98719", - "libelleAcheminement": "AKAMARU", - "nomCommune": "GAMBIER" + "codePostal": "87360", + "codeCommune": "87006", + "libelleAcheminement": "AZAT LE RIS", + "nomCommune": "AZAT LE RIS" }, { - "codePostal": "82210", - "codeCommune": "82058", - "libelleAcheminement": "FAJOLLES", - "nomCommune": "FAJOLLES" + "codePostal": "89140", + "codeCommune": "89136", + "libelleAcheminement": "CUY", + "nomCommune": "CUY" }, { - "codePostal": "98792", - "codeCommune": "98719", - "libelleAcheminement": "MOTUREIVAVAO", - "nomCommune": "GAMBIER" + "codePostal": "87210", + "codeCommune": "87008", + "libelleAcheminement": "LA BAZEUGE", + "nomCommune": "LA BAZEUGE" }, { - "codePostal": "82120", - "codeCommune": "82074", - "libelleAcheminement": "GRAMONT", - "nomCommune": "GRAMONT" + "codePostal": "89150", + "codeCommune": "89144", + "libelleAcheminement": "DOMATS", + "nomCommune": "DOMATS" }, { - "codePostal": "98792", - "codeCommune": "98719", - "libelleAcheminement": "TENARARO", - "nomCommune": "GAMBIER" + "codePostal": "87220", + "codeCommune": "87019", + "libelleAcheminement": "BOISSEUIL", + "nomCommune": "BOISSEUIL" }, { - "codePostal": "82240", - "codeCommune": "82078", - "libelleAcheminement": "LABASTIDE DE PENNE", - "nomCommune": "LABASTIDE DE PENNE" + "codePostal": "89450", + "codeCommune": "89145", + "libelleAcheminement": "DOMECY SUR CURE", + "nomCommune": "DOMECY SUR CURE" }, { - "codePostal": "98793", - "codeCommune": "98719", - "libelleAcheminement": "MARUTEA SUD", - "nomCommune": "GAMBIER" + "codePostal": "87270", + "codeCommune": "87020", + "libelleAcheminement": "BONNAC LA COTE", + "nomCommune": "BONNAC LA COTE" }, { - "codePostal": "82370", - "codeCommune": "82079", - "libelleAcheminement": "LABASTIDE ST PIERRE", - "nomCommune": "LABASTIDE ST PIERRE" + "codePostal": "89360", + "codeCommune": "89149", + "libelleAcheminement": "DYE", + "nomCommune": "DYE" }, { - "codePostal": "98790", - "codeCommune": "98720", - "libelleAcheminement": "OTETOU", - "nomCommune": "HAO" + "codePostal": "87460", + "codeCommune": "87024", + "libelleAcheminement": "BUJALEUF", + "nomCommune": "BUJALEUF" }, { - "codePostal": "82290", - "codeCommune": "82085", - "libelleAcheminement": "LACOURT ST PIERRE", - "nomCommune": "LACOURT ST PIERRE" + "codePostal": "89240", + "codeCommune": "89154", + "libelleAcheminement": "ESCAMPS", + "nomCommune": "ESCAMPS" }, { - "codePostal": "98790", - "codeCommune": "98721", - "libelleAcheminement": "MOTUTAPU", - "nomCommune": "HIKUERU" + "codePostal": "87230", + "codeCommune": "87027", + "libelleAcheminement": "BUSSIERE GALANT", + "nomCommune": "BUSSIERE GALANT" }, { - "codePostal": "82130", - "codeCommune": "82087", - "libelleAcheminement": "LAFRANCAISE", - "nomCommune": "LAFRANCAISE" + "codePostal": "89310", + "codeCommune": "89161", + "libelleAcheminement": "ETIVEY", + "nomCommune": "ETIVEY" }, { - "codePostal": "98790", - "codeCommune": "98721", - "libelleAcheminement": "RAVAHERE", - "nomCommune": "HIKUERU" + "codePostal": "87320", + "codeCommune": "87028", + "libelleAcheminement": "VAL D OIRE ET GARTEMPE", + "nomCommune": "VAL D OIRE ET GARTEMPE" }, { - "codePostal": "82200", - "codeCommune": "82101", - "libelleAcheminement": "MALAUSE", - "nomCommune": "MALAUSE" + "codePostal": "89480", + "codeCommune": "89164", + "libelleAcheminement": "FESTIGNY", + "nomCommune": "FESTIGNY" }, { - "codePostal": "98741", - "codeCommune": "98723", - "libelleAcheminement": "HANAIAPA", - "nomCommune": "HIVA OA" + "codePostal": "87920", + "codeCommune": "87048", + "libelleAcheminement": "CONDAT SUR VIENNE", + "nomCommune": "CONDAT SUR VIENNE" }, { - "codePostal": "82170", - "codeCommune": "82114", - "libelleAcheminement": "MONBEQUI", - "nomCommune": "MONBEQUI" + "codePostal": "89100", + "codeCommune": "89172", + "libelleAcheminement": "FONTAINE LA GAILLARDE", + "nomCommune": "FONTAINE LA GAILLARDE" }, { - "codePostal": "98731", - "codeCommune": "98724", - "libelleAcheminement": "FARE", - "nomCommune": "HUAHINE" + "codePostal": "87400", + "codeCommune": "87062", + "libelleAcheminement": "EYBOULEUF", + "nomCommune": "EYBOULEUF" }, { - "codePostal": "82110", - "codeCommune": "82116", - "libelleAcheminement": "MONTAGUDET", - "nomCommune": "MONTAGUDET" + "codePostal": "89560", + "codeCommune": "89182", + "libelleAcheminement": "FOURONNES", + "nomCommune": "FOURONNES" }, { - "codePostal": "98731", - "codeCommune": "98724", - "libelleAcheminement": "FITII", - "nomCommune": "HUAHINE" + "codePostal": "87170", + "codeCommune": "87075", + "libelleAcheminement": "ISLE", + "nomCommune": "ISLE" }, { - "codePostal": "82270", - "codeCommune": "82119", - "libelleAcheminement": "MONTALZAT", - "nomCommune": "MONTALZAT" + "codePostal": "89200", + "codeCommune": "89188", + "libelleAcheminement": "GIROLLES", + "nomCommune": "GIROLLES" }, { - "codePostal": "98732", - "codeCommune": "98724", - "libelleAcheminement": "AVERA", - "nomCommune": "HUAHINE" + "codePostal": "87800", + "codeCommune": "87077", + "libelleAcheminement": "JANAILHAC", + "nomCommune": "JANAILHAC" }, { - "codePostal": "82290", - "codeCommune": "82124", - "libelleAcheminement": "MONTBETON", - "nomCommune": "MONTBETON" + "codePostal": "89740", + "codeCommune": "89191", + "libelleAcheminement": "GLAND", + "nomCommune": "GLAND" }, { - "codePostal": "98709", - "codeCommune": "98725", - "libelleAcheminement": "MAHINA", - "nomCommune": "MAHINA" + "codePostal": "87340", + "codeCommune": "87079", + "libelleAcheminement": "LA JONCHERE ST MAURICE", + "nomCommune": "LA JONCHERE ST MAURICE" }, { - "codePostal": "82400", - "codeCommune": "82130", - "libelleAcheminement": "MONTJOI", - "nomCommune": "MONTJOI" + "codePostal": "89420", + "codeCommune": "89197", + "libelleAcheminement": "GUILLON TERRE PLAINE", + "nomCommune": "GUILLON TERRE PLAINE" }, { - "codePostal": "98710", - "codeCommune": "98725", - "libelleAcheminement": "OROFARA", - "nomCommune": "MAHINA" + "codePostal": "87230", + "codeCommune": "87084", + "libelleAcheminement": "LAVIGNAC", + "nomCommune": "LAVIGNAC" }, { - "codePostal": "82800", - "codeCommune": "82132", - "libelleAcheminement": "MONTRICOUX", - "nomCommune": "MONTRICOUX" + "codePostal": "89360", + "codeCommune": "89205", + "libelleAcheminement": "JAULGES", + "nomCommune": "JAULGES" }, { - "codePostal": "98790", - "codeCommune": "98726", - "libelleAcheminement": "HARAIKI", - "nomCommune": "MAKEMO" + "codePostal": "87280", + "codeCommune": "87085", + "libelleAcheminement": "LIMOGES", + "nomCommune": "LIMOGES" }, { - "codePostal": "82160", - "codeCommune": "82133", - "libelleAcheminement": "MOUILLAC", - "nomCommune": "MOUILLAC" + "codePostal": "89160", + "codeCommune": "89210", + "libelleAcheminement": "JULLY", + "nomCommune": "JULLY" }, { - "codePostal": "98790", - "codeCommune": "98726", - "libelleAcheminement": "HENUAPAREA", - "nomCommune": "MAKEMO" + "codePostal": "87360", + "codeCommune": "87087", + "libelleAcheminement": "LUSSAC LES EGLISES", + "nomCommune": "LUSSAC LES EGLISES" }, { - "codePostal": "82800", - "codeCommune": "82134", - "libelleAcheminement": "NEGREPELISSE", - "nomCommune": "NEGREPELISSE" + "codePostal": "89700", + "codeCommune": "89211", + "libelleAcheminement": "JUNAY", + "nomCommune": "JUNAY" }, { - "codePostal": "98790", - "codeCommune": "98726", - "libelleAcheminement": "HITI", - "nomCommune": "MAKEMO" + "codePostal": "87440", + "codeCommune": "87092", + "libelleAcheminement": "MARVAL", + "nomCommune": "MARVAL" }, { - "codePostal": "82120", - "codeCommune": "82146", - "libelleAcheminement": "PUYGAILLARD DE LOMAGNE", - "nomCommune": "PUYGAILLARD DE LOMAGNE" + "codePostal": "89520", + "codeCommune": "89216", + "libelleAcheminement": "LAINSECQ", + "nomCommune": "LAINSECQ" }, { - "codePostal": "98732", - "codeCommune": "98728", - "libelleAcheminement": "MAUPITI", - "nomCommune": "MAUPITI" + "codePostal": "87400", + "codeCommune": "87099", + "libelleAcheminement": "MOISSANNES", + "nomCommune": "MOISSANNES" }, { - "codePostal": "82100", - "codeCommune": "82152", - "libelleAcheminement": "ST AIGNAN", - "nomCommune": "ST AIGNAN" + "codePostal": "89660", + "codeCommune": "89225", + "libelleAcheminement": "LICHERES SUR YONNE", + "nomCommune": "LICHERES SUR YONNE" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "TEMAE", - "nomCommune": "MOOREA MAIAO" + "codePostal": "87330", + "codeCommune": "87100", + "libelleAcheminement": "MONTROL SENARD", + "nomCommune": "MONTROL SENARD" }, { - "codePostal": "82240", - "codeCommune": "82162", - "libelleAcheminement": "ST GEORGES", - "nomCommune": "ST GEORGES" + "codePostal": "89800", + "codeCommune": "89226", + "libelleAcheminement": "LIGNORELLES", + "nomCommune": "LIGNORELLES" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "VAIARE", - "nomCommune": "MOOREA MAIAO" + "codePostal": "87150", + "codeCommune": "87111", + "libelleAcheminement": "ORADOUR SUR VAYRES", + "nomCommune": "ORADOUR SUR VAYRES" }, { - "codePostal": "82400", - "codeCommune": "82170", - "libelleAcheminement": "ST PAUL D ESPIS", - "nomCommune": "ST PAUL D ESPIS" + "codePostal": "89270", + "codeCommune": "89233", + "libelleAcheminement": "LUCY SUR CURE", + "nomCommune": "LUCY SUR CURE" }, { - "codePostal": "98729", - "codeCommune": "98729", - "libelleAcheminement": "ATIHA", - "nomCommune": "MOOREA MAIAO" + "codePostal": "87120", + "codeCommune": "87123", + "libelleAcheminement": "REMPNAT", + "nomCommune": "REMPNAT" }, { - "codePostal": "82340", - "codeCommune": "82181", - "libelleAcheminement": "SISTELS", - "nomCommune": "SISTELS" + "codePostal": "89480", + "codeCommune": "89234", + "libelleAcheminement": "LUCY SUR YONNE", + "nomCommune": "LUCY SUR YONNE" }, { - "codePostal": "98729", - "codeCommune": "98729", - "libelleAcheminement": "HAAPITI", - "nomCommune": "MOOREA MAIAO" + "codePostal": "87140", + "codeCommune": "87128", + "libelleAcheminement": "ST PARDOUX LE LAC", + "nomCommune": "ST PARDOUX LE LAC" }, { - "codePostal": "82190", - "codeCommune": "82182", - "libelleAcheminement": "TOUFFAILLES", - "nomCommune": "TOUFFAILLES" + "codePostal": "89200", + "codeCommune": "89235", + "libelleAcheminement": "MAGNY", + "nomCommune": "MAGNY" }, { - "codePostal": "98729", - "codeCommune": "98729", - "libelleAcheminement": "VARARI", - "nomCommune": "MOOREA MAIAO" + "codePostal": "87400", + "codeCommune": "87129", + "libelleAcheminement": "ROYERES", + "nomCommune": "ROYERES" }, { - "codePostal": "82230", - "codeCommune": "82192", - "libelleAcheminement": "VERLHAC TESCOU", - "nomCommune": "VERLHAC TESCOU" + "codePostal": "89270", + "codeCommune": "89237", + "libelleAcheminement": "MAILLY LA VILLE", + "nomCommune": "MAILLY LA VILLE" }, { - "codePostal": "98773", - "codeCommune": "98732", - "libelleAcheminement": "TAVAVA", - "nomCommune": "NUKUTAVAKE" + "codePostal": "87380", + "codeCommune": "87146", + "libelleAcheminement": "ST GERMAIN LES BELLES", + "nomCommune": "ST GERMAIN LES BELLES" }, { - "codePostal": "83830", - "codeCommune": "83011", - "libelleAcheminement": "BARGEMON", - "nomCommune": "BARGEMON" + "codePostal": "89450", + "codeCommune": "89248", + "libelleAcheminement": "MENADES", + "nomCommune": "MENADES" }, { - "codePostal": "98712", - "codeCommune": "98734", - "libelleAcheminement": "PAPARA", - "nomCommune": "PAPARA" + "codePostal": "87460", + "codeCommune": "87153", + "libelleAcheminement": "ST JULIEN LE PETIT", + "nomCommune": "ST JULIEN LE PETIT" }, { - "codePostal": "83210", - "codeCommune": "83017", - "libelleAcheminement": "BELGENTIER", - "nomCommune": "BELGENTIER" + "codePostal": "89144", + "codeCommune": "89250", + "libelleAcheminement": "MERE", + "nomCommune": "MERE" }, { - "codePostal": "98750", - "codeCommune": "98739", - "libelleAcheminement": "MAHANATOA", - "nomCommune": "RAIVAVAE" + "codePostal": "87400", + "codeCommune": "87161", + "libelleAcheminement": "ST LEONARD DE NOBLAT", + "nomCommune": "ST LEONARD DE NOBLAT" }, { - "codePostal": "83230", - "codeCommune": "83019", - "libelleAcheminement": "BORMES LES MIMOSAS", - "nomCommune": "BORMES LES MIMOSAS" + "codePostal": "89560", + "codeCommune": "89252", + "libelleAcheminement": "MERRY SEC", + "nomCommune": "MERRY SEC" }, { - "codePostal": "98775", - "codeCommune": "98740", - "libelleAcheminement": "AVATORU", - "nomCommune": "RANGIROA" + "codePostal": "87360", + "codeCommune": "87165", + "libelleAcheminement": "ST MARTIN LE MAULT", + "nomCommune": "ST MARTIN LE MAULT" }, { - "codePostal": "83840", - "codeCommune": "83020", - "libelleAcheminement": "LE BOURGUET", - "nomCommune": "LE BOURGUET" + "codePostal": "89660", + "codeCommune": "89253", + "libelleAcheminement": "MERRY SUR YONNE", + "nomCommune": "MERRY SUR YONNE" }, { - "codePostal": "98733", - "codeCommune": "98745", - "libelleAcheminement": "PATIO", - "nomCommune": "TAHAA" + "codePostal": "87800", + "codeCommune": "87176", + "libelleAcheminement": "ST PRIEST LIGOURE", + "nomCommune": "ST PRIEST LIGOURE" }, { - "codePostal": "83840", - "codeCommune": "83022", - "libelleAcheminement": "BRENON", - "nomCommune": "BRENON" + "codePostal": "89140", + "codeCommune": "89255", + "libelleAcheminement": "MICHERY", + "nomCommune": "MICHERY" }, { - "codePostal": "98734", - "codeCommune": "98745", - "libelleAcheminement": "NIUA", - "nomCommune": "TAHAA" + "codePostal": "87440", + "codeCommune": "87189", + "libelleAcheminement": "LES SALLES LAVAUGUYON", + "nomCommune": "LES SALLES LAVAUGUYON" }, { - "codePostal": "83740", - "codeCommune": "83027", - "libelleAcheminement": "LA CADIERE D AZUR", - "nomCommune": "LA CADIERE D AZUR" + "codePostal": "89250", + "codeCommune": "89268", + "libelleAcheminement": "MONT ST SULPICE", + "nomCommune": "MONT ST SULPICE" }, { - "codePostal": "98743", - "codeCommune": "98746", - "libelleAcheminement": "HAPATONI", - "nomCommune": "TAHUATA" + "codePostal": "87600", + "codeCommune": "87204", + "libelleAcheminement": "VIDEIX", + "nomCommune": "VIDEIX" }, { - "codePostal": "83740", - "codeCommune": "83027", - "libelleAcheminement": "LA CADIERE D AZUR", - "nomCommune": "LA CADIERE D AZUR" + "codePostal": "89560", + "codeCommune": "89270", + "libelleAcheminement": "MOUFFY", + "nomCommune": "MOUFFY" }, { - "codePostal": "98719", - "codeCommune": "98747", - "libelleAcheminement": "AFAAHITI", - "nomCommune": "TAIARAPU EST" + "codePostal": "88700", + "codeCommune": "88008", + "libelleAcheminement": "ANGLEMONT", + "nomCommune": "ANGLEMONT" }, { - "codePostal": "83830", - "codeCommune": "83028", - "libelleAcheminement": "CALLAS", - "nomCommune": "CALLAS" + "codePostal": "89520", + "codeCommune": "89273", + "libelleAcheminement": "MOUTIERS EN PUISAYE", + "nomCommune": "MOUTIERS EN PUISAYE" }, { - "codePostal": "98720", - "codeCommune": "98747", - "libelleAcheminement": "FAAONE", - "nomCommune": "TAIARAPU EST" + "codePostal": "88650", + "codeCommune": "88009", + "libelleAcheminement": "ANOULD", + "nomCommune": "ANOULD" }, { - "codePostal": "83570", - "codeCommune": "83032", - "libelleAcheminement": "CARCES", - "nomCommune": "CARCES" + "codePostal": "89320", + "codeCommune": "89278", + "libelleAcheminement": "NOE", + "nomCommune": "NOE" }, { - "codePostal": "98724", - "codeCommune": "98748", - "libelleAcheminement": "TOAHOTU", - "nomCommune": "TAIARAPU OUEST" + "codePostal": "88300", + "codeCommune": "88015", + "libelleAcheminement": "ATTIGNEVILLE", + "nomCommune": "ATTIGNEVILLE" }, { - "codePostal": "83240", - "codeCommune": "83036", - "libelleAcheminement": "CAVALAIRE SUR MER", - "nomCommune": "CAVALAIRE SUR MER" + "codePostal": "89110", + "codeCommune": "89281", + "libelleAcheminement": "LES ORMES", + "nomCommune": "LES ORMES" }, { - "codePostal": "98781", - "codeCommune": "98749", - "libelleAcheminement": "TEAVAROA", - "nomCommune": "TAKAROA" + "codePostal": "88260", + "codeCommune": "88016", + "libelleAcheminement": "ATTIGNY", + "nomCommune": "ATTIGNY" }, { - "codePostal": "83840", - "codeCommune": "83040", - "libelleAcheminement": "CHATEAUVIEUX", - "nomCommune": "CHATEAUVIEUX" + "codePostal": "89400", + "codeCommune": "89282", + "libelleAcheminement": "ORMOY", + "nomCommune": "ORMOY" }, { - "codePostal": "98735", - "codeCommune": "98750", - "libelleAcheminement": "OPOA", - "nomCommune": "TAPUTAPUATEA" + "codePostal": "88130", + "codeCommune": "88024", + "libelleAcheminement": "AVRAINVILLE", + "nomCommune": "AVRAINVILLE" }, { - "codePostal": "83260", - "codeCommune": "83047", - "libelleAcheminement": "LA CRAU", - "nomCommune": "LA CRAU" + "codePostal": "89100", + "codeCommune": "89287", + "libelleAcheminement": "PARON", + "nomCommune": "PARON" }, { - "codePostal": "98784", - "codeCommune": "98755", - "libelleAcheminement": "FAKAMARU", - "nomCommune": "TUREIA" + "codePostal": "88630", + "codeCommune": "88025", + "libelleAcheminement": "AVRANVILLE", + "nomCommune": "AVRANVILLE" }, { - "codePostal": "83570", - "codeCommune": "83051", - "libelleAcheminement": "ENTRECASTEAUX", - "nomCommune": "ENTRECASTEAUX" + "codePostal": "89210", + "codeCommune": "89288", + "libelleAcheminement": "PAROY EN OTHE", + "nomCommune": "PAROY EN OTHE" }, { - "codePostal": "98745", - "codeCommune": "98757", - "libelleAcheminement": "HOHOI", - "nomCommune": "UA POU" + "codePostal": "88170", + "codeCommune": "88031", + "libelleAcheminement": "BALLEVILLE", + "nomCommune": "BALLEVILLE" }, { - "codePostal": "83830", - "codeCommune": "83056", - "libelleAcheminement": "FIGANIERES", - "nomCommune": "FIGANIERES" + "codePostal": "89510", + "codeCommune": "89291", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "98746", - "codeCommune": "98757", - "libelleAcheminement": "HAAKUTI", - "nomCommune": "UA POU" + "codePostal": "88300", + "codeCommune": "88045", + "libelleAcheminement": "BEAUFREMONT", + "nomCommune": "BEAUFREMONT" }, { - "codePostal": "83780", - "codeCommune": "83058", - "libelleAcheminement": "FLAYOSC", - "nomCommune": "FLAYOSC" + "codePostal": "89450", + "codeCommune": "89297", + "libelleAcheminement": "PIERRE PERTHUIS", + "nomCommune": "PIERRE PERTHUIS" }, { - "codePostal": "98830", - "codeCommune": "98805", - "libelleAcheminement": "DUMBEA", - "nomCommune": "DUMBEA" + "codePostal": "88270", + "codeCommune": "88047", + "libelleAcheminement": "BEGNECOURT", + "nomCommune": "BEGNECOURT" }, { - "codePostal": "83370", - "codeCommune": "83061", - "libelleAcheminement": "FREJUS", - "nomCommune": "FREJUS" + "codePostal": "89110", + "codeCommune": "89304", + "libelleAcheminement": "POILLY SUR THOLON", + "nomCommune": "POILLY SUR THOLON" }, { - "codePostal": "98859", - "codeCommune": "98811", - "libelleAcheminement": "KONE", - "nomCommune": "KONE" + "codePostal": "88600", + "codeCommune": "88050", + "libelleAcheminement": "BELMONT SUR BUTTANT", + "nomCommune": "BELMONT SUR BUTTANT" }, { - "codePostal": "83680", - "codeCommune": "83063", - "libelleAcheminement": "LA GARDE FREINET", - "nomCommune": "LA GARDE FREINET" + "codePostal": "89200", + "codeCommune": "89306", + "libelleAcheminement": "PONTAUBERT", + "nomCommune": "PONTAUBERT" }, { - "codePostal": "98820", - "codeCommune": "98814", - "libelleAcheminement": "WE", - "nomCommune": "LIFOU" + "codePostal": "88800", + "codeCommune": "88051", + "libelleAcheminement": "BELMONT SUR VAIR", + "nomCommune": "BELMONT SUR VAIR" }, { - "codePostal": "83310", - "codeCommune": "83068", - "libelleAcheminement": "GRIMAUD", - "nomCommune": "GRIMAUD" + "codePostal": "89116", + "codeCommune": "89313", + "libelleAcheminement": "PRECY SUR VRIN", + "nomCommune": "PRECY SUR VRIN" }, { - "codePostal": "98819", - "codeCommune": "98816", - "libelleAcheminement": "MOINDOU", - "nomCommune": "MOINDOU" + "codePostal": "88270", + "codeCommune": "88063", + "libelleAcheminement": "BOCQUEGNEY", + "nomCommune": "BOCQUEGNEY" }, { - "codePostal": "83310", - "codeCommune": "83068", - "libelleAcheminement": "GRIMAUD", - "nomCommune": "GRIMAUD" + "codePostal": "89460", + "codeCommune": "89314", + "libelleAcheminement": "PREGILBERT", + "nomCommune": "PREGILBERT" }, { - "codePostal": "98874", - "codeCommune": "98817", - "libelleAcheminement": "PONT DES FRANCAIS", - "nomCommune": "LE MONT DORE" + "codePostal": "88270", + "codeCommune": "88069", + "libelleAcheminement": "BOUXIERES AUX BOIS", + "nomCommune": "BOUXIERES AUX BOIS" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "89740", + "codeCommune": "89320", + "libelleAcheminement": "QUINCEROT", + "nomCommune": "QUINCEROT" }, { - "codePostal": "98876", - "codeCommune": "98817", - "libelleAcheminement": "LA COULEE", - "nomCommune": "LE MONT DORE" + "codePostal": "88600", + "codeCommune": "88076", + "libelleAcheminement": "BROUVELIEURES", + "nomCommune": "BROUVELIEURES" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "89220", + "codeCommune": "89324", + "libelleAcheminement": "ROGNY LES SEPT ECLUSES", + "nomCommune": "ROGNY LES SEPT ECLUSES" }, { - "codePostal": "98800", - "codeCommune": "98818", - "libelleAcheminement": "NOUMEA", - "nomCommune": "NOUMEA" + "codePostal": "88700", + "codeCommune": "88077", + "libelleAcheminement": "BRU", + "nomCommune": "BRU" }, { - "codePostal": "83340", - "codeCommune": "83073", - "libelleAcheminement": "LE LUC", - "nomCommune": "LE LUC" + "codePostal": "89170", + "codeCommune": "89325", + "libelleAcheminement": "RONCHERES", + "nomCommune": "RONCHERES" }, { - "codePostal": "98840", - "codeCommune": "98821", - "libelleAcheminement": "TONTOUTA", - "nomCommune": "PAITA" + "codePostal": "88600", + "codeCommune": "88078", + "libelleAcheminement": "BRUYERES", + "nomCommune": "BRUYERES" }, { - "codePostal": "83136", - "codeCommune": "83076", - "libelleAcheminement": "MAZAUGUES", - "nomCommune": "MAZAUGUES" + "codePostal": "89500", + "codeCommune": "89327", + "libelleAcheminement": "ROUSSON", + "nomCommune": "ROUSSON" }, { - "codePostal": "98889", - "codeCommune": "98821", - "libelleAcheminement": "PAITA", - "nomCommune": "PAITA" + "codePostal": "88110", + "codeCommune": "88082", + "libelleAcheminement": "CELLES SUR PLAINE", + "nomCommune": "CELLES SUR PLAINE" }, { - "codePostal": "83630", - "codeCommune": "83078", - "libelleAcheminement": "MOISSAC BELLEVUE", - "nomCommune": "MOISSAC BELLEVUE" + "codePostal": "89530", + "codeCommune": "89337", + "libelleAcheminement": "ST BRIS LE VINEUX", + "nomCommune": "ST BRIS LE VINEUX" }, { - "codePostal": "98823", - "codeCommune": "98823", - "libelleAcheminement": "PONERIHOUEN", - "nomCommune": "PONERIHOUEN" + "codePostal": "88240", + "codeCommune": "88088", + "libelleAcheminement": "LA CHAPELLE AUX BOIS", + "nomCommune": "LA CHAPELLE AUX BOIS" }, { - "codePostal": "83310", - "codeCommune": "83079", - "libelleAcheminement": "LA MOLE", - "nomCommune": "LA MOLE" + "codePostal": "89440", + "codeCommune": "89339", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "83570", - "codeCommune": "83083", - "libelleAcheminement": "MONTFORT SUR ARGENS", - "nomCommune": "MONTFORT SUR ARGENS" + "codePostal": "88230", + "codeCommune": "88106", + "libelleAcheminement": "BAN SUR MEURTHE CLEFCY", + "nomCommune": "BAN SUR MEURTHE CLEFCY" }, { - "codePostal": "83790", - "codeCommune": "83092", - "libelleAcheminement": "PIGNANS", - "nomCommune": "PIGNANS" + "codePostal": "89170", + "codeCommune": "89344", + "libelleAcheminement": "ST FARGEAU", + "nomCommune": "ST FARGEAU" }, { - "codePostal": "83640", - "codeCommune": "83093", - "libelleAcheminement": "PLAN D AUPS STE BAUME", - "nomCommune": "PLAN D AUPS STE BAUME" + "codePostal": "88120", + "codeCommune": "88109", + "libelleAcheminement": "CLEURIE", + "nomCommune": "CLEURIE" }, { - "codePostal": "83120", - "codeCommune": "83094", - "libelleAcheminement": "LE PLAN DE LA TOUR", - "nomCommune": "LE PLAN DE LA TOUR" + "codePostal": "89630", + "codeCommune": "89349", + "libelleAcheminement": "ST LEGER VAUBAN", + "nomCommune": "ST LEGER VAUBAN" }, { - "codePostal": "83220", - "codeCommune": "83098", - "libelleAcheminement": "LE PRADET", - "nomCommune": "LE PRADET" + "codePostal": "88430", + "codeCommune": "88115", + "libelleAcheminement": "CORCIEUX", + "nomCommune": "CORCIEUX" }, { - "codePostal": "83350", - "codeCommune": "83101", - "libelleAcheminement": "RAMATUELLE", - "nomCommune": "RAMATUELLE" + "codePostal": "89330", + "codeCommune": "89350", + "libelleAcheminement": "ST LOUP D ORDON", + "nomCommune": "ST LOUP D ORDON" }, { - "codePostal": "83380", - "codeCommune": "83107", - "libelleAcheminement": "ROQUEBRUNE SUR ARGENS", - "nomCommune": "ROQUEBRUNE SUR ARGENS" + "codePostal": "88310", + "codeCommune": "88116", + "libelleAcheminement": "CORNIMONT", + "nomCommune": "CORNIMONT" }, { - "codePostal": "83840", - "codeCommune": "83109", - "libelleAcheminement": "LA ROQUE ESCLAPON", - "nomCommune": "LA ROQUE ESCLAPON" + "codePostal": "89420", + "codeCommune": "89351", + "libelleAcheminement": "STE MAGNANCE", + "nomCommune": "STE MAGNANCE" }, { - "codePostal": "83270", - "codeCommune": "83112", - "libelleAcheminement": "ST CYR SUR MER", - "nomCommune": "ST CYR SUR MER" + "codePostal": "88460", + "codeCommune": "88135", + "libelleAcheminement": "DOCELLES", + "nomCommune": "DOCELLES" }, { - "codePostal": "83560", - "codeCommune": "83113", - "libelleAcheminement": "ST JULIEN", - "nomCommune": "ST JULIEN" + "codePostal": "89110", + "codeCommune": "89360", + "libelleAcheminement": "ST MAURICE LE VIEIL", + "nomCommune": "ST MAURICE LE VIEIL" }, { - "codePostal": "83120", - "codeCommune": "83115", - "libelleAcheminement": "STE MAXIME", - "nomCommune": "STE MAXIME" + "codePostal": "88140", + "codeCommune": "88140", + "libelleAcheminement": "DOMBROT LE SEC", + "nomCommune": "DOMBROT LE SEC" }, { - "codePostal": "83470", - "codeCommune": "83116", - "libelleAcheminement": "ST MAXIMIN LA STE BAUME", - "nomCommune": "ST MAXIMIN LA STE BAUME" + "codePostal": "89270", + "codeCommune": "89362", + "libelleAcheminement": "ST MORE", + "nomCommune": "ST MORE" }, { - "codePostal": "83990", - "codeCommune": "83119", - "libelleAcheminement": "ST TROPEZ", - "nomCommune": "ST TROPEZ" + "codePostal": "88330", + "codeCommune": "88143", + "libelleAcheminement": "DOMEVRE SUR DURBION", + "nomCommune": "DOMEVRE SUR DURBION" }, { - "codePostal": "83500", - "codeCommune": "83126", - "libelleAcheminement": "LA SEYNE SUR MER", - "nomCommune": "LA SEYNE SUR MER" + "codePostal": "89450", + "codeCommune": "89364", + "libelleAcheminement": "ST PERE", + "nomCommune": "ST PERE" }, { - "codePostal": "83140", - "codeCommune": "83129", - "libelleAcheminement": "SIX FOURS LES PLAGES", - "nomCommune": "SIX FOURS LES PLAGES" + "codePostal": "88600", + "codeCommune": "88145", + "libelleAcheminement": "DOMFAING", + "nomCommune": "DOMFAING" }, { - "codePostal": "83460", - "codeCommune": "83134", - "libelleAcheminement": "TARADEAU", - "nomCommune": "TARADEAU" + "codePostal": "89520", + "codeCommune": "89367", + "libelleAcheminement": "SAINTS EN PUISAYE", + "nomCommune": "SAINTS EN PUISAYE" }, { - "codePostal": "83170", - "codeCommune": "83140", - "libelleAcheminement": "TOURVES", - "nomCommune": "TOURVES" + "codePostal": "88800", + "codeCommune": "88146", + "libelleAcheminement": "DOMJULIEN", + "nomCommune": "DOMJULIEN" }, { - "codePostal": "83170", - "codeCommune": "83151", - "libelleAcheminement": "VINS SUR CARAMY", - "nomCommune": "VINS SUR CARAMY" + "codePostal": "89310", + "codeCommune": "89371", + "libelleAcheminement": "STE VERTU", + "nomCommune": "STE VERTU" }, { - "codePostal": "83430", - "codeCommune": "83153", - "libelleAcheminement": "ST MANDRIER SUR MER", - "nomCommune": "ST MANDRIER SUR MER" + "codePostal": "88200", + "codeCommune": "88148", + "libelleAcheminement": "DOMMARTIN LES REMIREMONT", + "nomCommune": "DOMMARTIN LES REMIREMONT" }, { - "codePostal": "83510", - "codeCommune": "83154", - "libelleAcheminement": "ST ANTONIN DU VAR", - "nomCommune": "ST ANTONIN DU VAR" + "codePostal": "89250", + "codeCommune": "89382", + "libelleAcheminement": "SEIGNELAY", + "nomCommune": "SEIGNELAY" }, { - "codePostal": "84400", - "codeCommune": "84006", - "libelleAcheminement": "AURIBEAU", - "nomCommune": "AURIBEAU" + "codePostal": "88260", + "codeCommune": "88149", + "libelleAcheminement": "DOMMARTIN LES VALLOIS", + "nomCommune": "DOMMARTIN LES VALLOIS" }, { - "codePostal": "84140", - "codeCommune": "84007", - "libelleAcheminement": "AVIGNON", - "nomCommune": "AVIGNON" + "codePostal": "89710", + "codeCommune": "89384", + "libelleAcheminement": "SENAN", + "nomCommune": "SENAN" }, { - "codePostal": "84120", - "codeCommune": "84010", - "libelleAcheminement": "LA BASTIDONNE", - "nomCommune": "LA BASTIDONNE" + "codePostal": "88170", + "codeCommune": "88150", + "libelleAcheminement": "DOMMARTIN SUR VRAINE", + "nomCommune": "DOMMARTIN SUR VRAINE" }, { - "codePostal": "84220", - "codeCommune": "84013", - "libelleAcheminement": "BEAUMETTES", - "nomCommune": "BEAUMETTES" + "codePostal": "89570", + "codeCommune": "89402", + "libelleAcheminement": "SOUMAINTRAIN", + "nomCommune": "SOUMAINTRAIN" }, { - "codePostal": "84120", - "codeCommune": "84014", - "libelleAcheminement": "BEAUMONT DE PERTUIS", - "nomCommune": "BEAUMONT DE PERTUIS" + "codePostal": "88450", + "codeCommune": "88166", + "libelleAcheminement": "EVAUX ET MENIL", + "nomCommune": "EVAUX ET MENIL" }, { - "codePostal": "84390", - "codeCommune": "84021", - "libelleAcheminement": "BRANTES", - "nomCommune": "BRANTES" + "codePostal": "89560", + "codeCommune": "89405", + "libelleAcheminement": "LES HAUTS DE FORTERRE", + "nomCommune": "LES HAUTS DE FORTERRE" }, { - "codePostal": "84400", - "codeCommune": "84033", - "libelleAcheminement": "CASTELLET EN LUBERON", - "nomCommune": "CASTELLET EN LUBERON" + "codePostal": "88600", + "codeCommune": "88184", + "libelleAcheminement": "FREMIFONTAINE", + "nomCommune": "FREMIFONTAINE" }, { - "codePostal": "84450", - "codeCommune": "84055", - "libelleAcheminement": "JONQUERETTES", - "nomCommune": "JONQUERETTES" + "codePostal": "89430", + "codeCommune": "89407", + "libelleAcheminement": "TANLAY", + "nomCommune": "TANLAY" }, { - "codePostal": "84330", - "codeCommune": "84077", - "libelleAcheminement": "MODENE", - "nomCommune": "MODENE" + "codePostal": "88320", + "codeCommune": "88199", + "libelleAcheminement": "GIGNEVILLE", + "nomCommune": "GIGNEVILLE" }, { - "codePostal": "84430", - "codeCommune": "84078", - "libelleAcheminement": "MONDRAGON", - "nomCommune": "MONDRAGON" + "codePostal": "89350", + "codeCommune": "89408", + "libelleAcheminement": "TANNERRE EN PUISAYE", + "nomCommune": "TANNERRE EN PUISAYE" }, { - "codePostal": "84240", - "codeCommune": "84084", - "libelleAcheminement": "LA MOTTE D AIGUES", - "nomCommune": "LA MOTTE D AIGUES" + "codePostal": "88390", + "codeCommune": "88200", + "libelleAcheminement": "GIGNEY", + "nomCommune": "GIGNEY" }, { - "codePostal": "84420", - "codeCommune": "84091", - "libelleAcheminement": "PIOLENC", - "nomCommune": "PIOLENC" + "codePostal": "89520", + "codeCommune": "89416", + "libelleAcheminement": "THURY", + "nomCommune": "THURY" }, { - "codePostal": "84160", - "codeCommune": "84095", - "libelleAcheminement": "PUYVERT", - "nomCommune": "PUYVERT" + "codePostal": "88600", + "codeCommune": "88203", + "libelleAcheminement": "GIRECOURT SUR DURBION", + "nomCommune": "GIRECOURT SUR DURBION" }, { - "codePostal": "84330", - "codeCommune": "84109", - "libelleAcheminement": "ST HIPPOLYTE LE GRAVEYRON", - "nomCommune": "ST HIPPOLYTE LE GRAVEYRON" + "codePostal": "89700", + "codeCommune": "89417", + "libelleAcheminement": "TISSEY", + "nomCommune": "TISSEY" }, { - "codePostal": "84110", - "codeCommune": "84111", - "libelleAcheminement": "ST MARCELLIN LES VAISON", - "nomCommune": "ST MARCELLIN LES VAISON" + "codePostal": "88490", + "codeCommune": "88213", + "libelleAcheminement": "LA GRANDE FOSSE", + "nomCommune": "LA GRANDE FOSSE" }, { - "codePostal": "84750", - "codeCommune": "84112", - "libelleAcheminement": "ST MARTIN DE CASTILLON", - "nomCommune": "ST MARTIN DE CASTILLON" + "codePostal": "89700", + "codeCommune": "89418", + "libelleAcheminement": "TONNERRE", + "nomCommune": "TONNERRE" }, { - "codePostal": "84220", - "codeCommune": "84114", - "libelleAcheminement": "ST PANTALEON", - "nomCommune": "ST PANTALEON" + "codePostal": "88450", + "codeCommune": "88223", + "libelleAcheminement": "GUGNEY AUX AULX", + "nomCommune": "GUGNEY AUX AULX" }, { - "codePostal": "84450", - "codeCommune": "84119", - "libelleAcheminement": "ST SATURNIN LES AVIGNON", - "nomCommune": "ST SATURNIN LES AVIGNON" + "codePostal": "89520", + "codeCommune": "89420", + "libelleAcheminement": "TREIGNY PERREUSE STE COLOMBE", + "nomCommune": "TREIGNY PERREUSE STE COLOMBE" }, { - "codePostal": "84800", - "codeCommune": "84124", - "libelleAcheminement": "SAUMANE DE VAUCLUSE", - "nomCommune": "SAUMANE DE VAUCLUSE" + "codePostal": "88330", + "codeCommune": "88228", + "libelleAcheminement": "HAILLAINVILLE", + "nomCommune": "HAILLAINVILLE" }, { - "codePostal": "84100", - "codeCommune": "84135", - "libelleAcheminement": "UCHAUX", - "nomCommune": "UCHAUX" + "codePostal": "89430", + "codeCommune": "89422", + "libelleAcheminement": "TRICHEY", + "nomCommune": "TRICHEY" }, { - "codePostal": "84190", - "codeCommune": "84136", - "libelleAcheminement": "VACQUEYRAS", - "nomCommune": "VACQUEYRAS" + "codePostal": "88430", + "codeCommune": "88244", + "libelleAcheminement": "LA HOUSSIERE", + "nomCommune": "LA HOUSSIERE" }, { - "codePostal": "84160", - "codeCommune": "84140", - "libelleAcheminement": "VAUGINES", - "nomCommune": "VAUGINES" + "codePostal": "89700", + "codeCommune": "89423", + "libelleAcheminement": "TRONCHOY", + "nomCommune": "TRONCHOY" }, { - "codePostal": "84740", - "codeCommune": "84142", - "libelleAcheminement": "VELLERON", - "nomCommune": "VELLERON" + "codePostal": "88700", + "codeCommune": "88251", + "libelleAcheminement": "JEANMENIL", + "nomCommune": "JEANMENIL" }, { - "codePostal": "84110", - "codeCommune": "84146", - "libelleAcheminement": "VILLEDIEU", - "nomCommune": "VILLEDIEU" + "codePostal": "89460", + "codeCommune": "89424", + "libelleAcheminement": "TRUCY SUR YONNE", + "nomCommune": "TRUCY SUR YONNE" }, { - "codePostal": "85460", - "codeCommune": "85001", - "libelleAcheminement": "L AIGUILLON SUR MER", - "nomCommune": "L AIGUILLON SUR MER" + "codePostal": "88260", + "codeCommune": "88252", + "libelleAcheminement": "JESONVILLE", + "nomCommune": "JESONVILLE" }, { - "codePostal": "85220", - "codeCommune": "85006", - "libelleAcheminement": "APREMONT", - "nomCommune": "APREMONT" + "codePostal": "89200", + "codeCommune": "89433", + "libelleAcheminement": "VAULT DE LUGNY", + "nomCommune": "VAULT DE LUGNY" }, { - "codePostal": "85440", - "codeCommune": "85010", - "libelleAcheminement": "AVRILLE", - "nomCommune": "AVRILLE" + "codePostal": "88500", + "codeCommune": "88254", + "libelleAcheminement": "JORXEY", + "nomCommune": "JORXEY" }, { - "codePostal": "85550", - "codeCommune": "85012", - "libelleAcheminement": "LA BARRE DE MONTS", - "nomCommune": "LA BARRE DE MONTS" + "codePostal": "89600", + "codeCommune": "89439", + "libelleAcheminement": "VERGIGNY", + "nomCommune": "VERGIGNY" }, { - "codePostal": "85130", - "codeCommune": "85013", - "libelleAcheminement": "BAZOGES EN PAILLERS", - "nomCommune": "BAZOGES EN PAILLERS" + "codePostal": "88600", + "codeCommune": "88262", + "libelleAcheminement": "LAVELINE DEVANT BRUYERES", + "nomCommune": "LAVELINE DEVANT BRUYERES" }, { - "codePostal": "85490", - "codeCommune": "85020", - "libelleAcheminement": "BENET", - "nomCommune": "BENET" + "codePostal": "89270", + "codeCommune": "89441", + "libelleAcheminement": "VERMENTON", + "nomCommune": "VERMENTON" }, { - "codePostal": "85490", - "codeCommune": "85020", - "libelleAcheminement": "BENET", - "nomCommune": "BENET" + "codePostal": "88270", + "codeCommune": "88264", + "libelleAcheminement": "LEGEVILLE ET BONFAYS", + "nomCommune": "LEGEVILLE ET BONFAYS" }, { - "codePostal": "85610", - "codeCommune": "85021", - "libelleAcheminement": "LA BERNARDIERE", - "nomCommune": "LA BERNARDIERE" + "codePostal": "89300", + "codeCommune": "89452", + "libelleAcheminement": "VILLECIEN", + "nomCommune": "VILLECIEN" }, { - "codePostal": "85200", - "codeCommune": "85033", - "libelleAcheminement": "BOURNEAU", - "nomCommune": "BOURNEAU" + "codePostal": "88490", + "codeCommune": "88268", + "libelleAcheminement": "LESSEUX", + "nomCommune": "LESSEUX" }, { - "codePostal": "85260", - "codeCommune": "85038", - "libelleAcheminement": "LES BROUZILS", - "nomCommune": "LES BROUZILS" + "codePostal": "89230", + "codeCommune": "89463", + "libelleAcheminement": "VILLENEUVE ST SALVES", + "nomCommune": "VILLENEUVE ST SALVES" }, { - "codePostal": "85410", - "codeCommune": "85041", - "libelleAcheminement": "CEZAIS", - "nomCommune": "CEZAIS" + "codePostal": "88350", + "codeCommune": "88270", + "libelleAcheminement": "LIFFOL LE GRAND", + "nomCommune": "LIFFOL LE GRAND" }, { - "codePostal": "85450", - "codeCommune": "85042", - "libelleAcheminement": "CHAILLE LES MARAIS", - "nomCommune": "CHAILLE LES MARAIS" + "codePostal": "89500", + "codeCommune": "89464", + "libelleAcheminement": "VILLENEUVE SUR YONNE", + "nomCommune": "VILLENEUVE SUR YONNE" }, { - "codePostal": "85220", - "codeCommune": "85054", - "libelleAcheminement": "LA CHAPELLE HERMIER", - "nomCommune": "LA CHAPELLE HERMIER" + "codePostal": "88110", + "codeCommune": "88277", + "libelleAcheminement": "LUVIGNY", + "nomCommune": "LUVIGNY" }, { - "codePostal": "85120", - "codeCommune": "85059", - "libelleAcheminement": "LA CHATAIGNERAIE", - "nomCommune": "LA CHATAIGNERAIE" + "codePostal": "89160", + "codeCommune": "89470", + "libelleAcheminement": "VILLIERS LES HAUTS", + "nomCommune": "VILLIERS LES HAUTS" }, { - "codePostal": "85390", - "codeCommune": "85066", - "libelleAcheminement": "CHAVAGNES LES REDOUX", - "nomCommune": "CHAVAGNES LES REDOUX" + "codePostal": "88130", + "codeCommune": "88286", + "libelleAcheminement": "MARAINVILLE SUR MADON", + "nomCommune": "MARAINVILLE SUR MADON" }, { - "codePostal": "85390", - "codeCommune": "85067", - "libelleAcheminement": "CHEFFOIS", - "nomCommune": "CHEFFOIS" + "codePostal": "89740", + "codeCommune": "89475", + "libelleAcheminement": "VILLON", + "nomCommune": "VILLON" }, { - "codePostal": "85800", - "codeCommune": "85088", - "libelleAcheminement": "LE FENOUILLER", - "nomCommune": "LE FENOUILLER" + "codePostal": "88320", + "codeCommune": "88287", + "libelleAcheminement": "MAREY", + "nomCommune": "MAREY" }, { - "codePostal": "85800", - "codeCommune": "85100", - "libelleAcheminement": "GIVRAND", - "nomCommune": "GIVRAND" + "codePostal": "89290", + "codeCommune": "89478", + "libelleAcheminement": "VINCELLES", + "nomCommune": "VINCELLES" }, { - "codePostal": "85770", - "codeCommune": "85105", - "libelleAcheminement": "LE GUE DE VELLUIRE", - "nomCommune": "LE GUE DE VELLUIRE" + "codePostal": "88320", + "codeCommune": "88289", + "libelleAcheminement": "MARTIGNY LES BAINS", + "nomCommune": "MARTIGNY LES BAINS" }, { - "codePostal": "85500", - "codeCommune": "85109", - "libelleAcheminement": "LES HERBIERS", - "nomCommune": "LES HERBIERS" + "codePostal": "89700", + "codeCommune": "89482", + "libelleAcheminement": "VIVIERS", + "nomCommune": "VIVIERS" }, { - "codePostal": "85770", - "codeCommune": "85111", - "libelleAcheminement": "L ILE D ELLE", - "nomCommune": "L ILE D ELLE" + "codePostal": "88300", + "codeCommune": "88290", + "libelleAcheminement": "MARTIGNY LES GERBONVAUX", + "nomCommune": "MARTIGNY LES GERBONVAUX" }, { - "codePostal": "85350", - "codeCommune": "85113", - "libelleAcheminement": "L ILE D YEU", - "nomCommune": "L ILE D YEU" + "codePostal": "90150", + "codeCommune": "90002", + "libelleAcheminement": "ANGEOT", + "nomCommune": "ANGEOT" }, { - "codePostal": "85540", - "codeCommune": "85116", - "libelleAcheminement": "LA JONCHERE", - "nomCommune": "LA JONCHERE" + "codePostal": "88150", + "codeCommune": "88294", + "libelleAcheminement": "MAZELEY", + "nomCommune": "MAZELEY" }, { - "codePostal": "85130", - "codeCommune": "85119", - "libelleAcheminement": "LES LANDES GENUSSON", - "nomCommune": "LES LANDES GENUSSON" + "codePostal": "90800", + "codeCommune": "90007", + "libelleAcheminement": "BANVILLARS", + "nomCommune": "BANVILLARS" }, { - "codePostal": "85400", - "codeCommune": "85128", - "libelleAcheminement": "LUCON", - "nomCommune": "LUCON" + "codePostal": "88140", + "codeCommune": "88296", + "libelleAcheminement": "MEDONVILLE", + "nomCommune": "MEDONVILLE" }, { - "codePostal": "85400", - "codeCommune": "85131", - "libelleAcheminement": "LES MAGNILS REIGNIERS", - "nomCommune": "LES MAGNILS REIGNIERS" + "codePostal": "90100", + "codeCommune": "90014", + "libelleAcheminement": "BORON", + "nomCommune": "BORON" }, { - "codePostal": "85590", - "codeCommune": "85134", - "libelleAcheminement": "MALLIEVRE", - "nomCommune": "MALLIEVRE" + "codePostal": "88210", + "codeCommune": "88300", + "libelleAcheminement": "MENIL DE SENONES", + "nomCommune": "MENIL DE SENONES" }, { - "codePostal": "85320", - "codeCommune": "85135", - "libelleAcheminement": "MAREUIL SUR LAY DISSAIS", - "nomCommune": "MAREUIL SUR LAY DISSAIS" + "codePostal": "90400", + "codeCommune": "90015", + "libelleAcheminement": "BOTANS", + "nomCommune": "BOTANS" }, { - "codePostal": "85570", - "codeCommune": "85137", - "libelleAcheminement": "MARSAIS STE RADEGONDE", - "nomCommune": "MARSAIS STE RADEGONDE" + "codePostal": "88700", + "codeCommune": "88301", + "libelleAcheminement": "MENIL SUR BELVITTE", + "nomCommune": "MENIL SUR BELVITTE" }, { - "codePostal": "85700", - "codeCommune": "85141", - "libelleAcheminement": "MENOMBLET", - "nomCommune": "MENOMBLET" + "codePostal": "90140", + "codeCommune": "90018", + "libelleAcheminement": "BREBOTTE", + "nomCommune": "BREBOTTE" }, { - "codePostal": "85600", - "codeCommune": "85146", - "libelleAcheminement": "MONTAIGU VENDEE", - "nomCommune": "MONTAIGU VENDEE" + "codePostal": "88320", + "codeCommune": "88307", + "libelleAcheminement": "MONT LES LAMARCHE", + "nomCommune": "MONT LES LAMARCHE" }, { - "codePostal": "85640", - "codeCommune": "85153", - "libelleAcheminement": "MOUCHAMPS", - "nomCommune": "MOUCHAMPS" + "codePostal": "90140", + "codeCommune": "90021", + "libelleAcheminement": "CHARMOIS", + "nomCommune": "CHARMOIS" }, { - "codePostal": "85390", - "codeCommune": "85154", - "libelleAcheminement": "MOUILLERON ST GERMAIN", - "nomCommune": "MOUILLERON ST GERMAIN" + "codePostal": "88240", + "codeCommune": "88311", + "libelleAcheminement": "MONTMOTIER", + "nomCommune": "MONTMOTIER" }, { - "codePostal": "85690", - "codeCommune": "85164", - "libelleAcheminement": "NOTRE DAME DE MONTS", - "nomCommune": "NOTRE DAME DE MONTS" + "codePostal": "90340", + "codeCommune": "90026", + "libelleAcheminement": "CHEVREMONT", + "nomCommune": "CHEVREMONT" }, { - "codePostal": "85770", - "codeCommune": "85177", - "libelleAcheminement": "LES VELLUIRE SUR VENDEE", - "nomCommune": "LES VELLUIRE SUR VENDEE" + "codePostal": "88700", + "codeCommune": "88333", + "libelleAcheminement": "NOSSONCOURT", + "nomCommune": "NOSSONCOURT" }, { - "codePostal": "85620", - "codeCommune": "85190", - "libelleAcheminement": "ROCHESERVIERE", - "nomCommune": "ROCHESERVIERE" + "codePostal": "90100", + "codeCommune": "90028", + "libelleAcheminement": "COURTELEVANT", + "nomCommune": "COURTELEVANT" }, { - "codePostal": "85130", - "codeCommune": "85198", - "libelleAcheminement": "ST AUBIN DES ORMEAUX", - "nomCommune": "ST AUBIN DES ORMEAUX" + "codePostal": "88260", + "codeCommune": "88353", + "libelleAcheminement": "PONT LES BONFAYS", + "nomCommune": "PONT LES BONFAYS" }, { - "codePostal": "85540", - "codeCommune": "85201", - "libelleAcheminement": "ST BENOIST SUR MER", - "nomCommune": "ST BENOIST SUR MER" + "codePostal": "90300", + "codeCommune": "90029", + "libelleAcheminement": "CRAVANCHE", + "nomCommune": "CRAVANCHE" }, { - "codePostal": "85670", - "codeCommune": "85204", - "libelleAcheminement": "ST CHRISTOPHE DU LIGNERON", - "nomCommune": "ST CHRISTOPHE DU LIGNERON" + "codePostal": "88490", + "codeCommune": "88361", + "libelleAcheminement": "PROVENCHERES ET COLROY", + "nomCommune": "PROVENCHERES ET COLROY" }, { - "codePostal": "85150", - "codeCommune": "85218", - "libelleAcheminement": "ST GEORGES DE POINTINDOUX", - "nomCommune": "ST GEORGES DE POINTINDOUX" + "codePostal": "90150", + "codeCommune": "90031", + "libelleAcheminement": "CUNELIERES", + "nomCommune": "CUNELIERES" }, { - "codePostal": "85230", - "codeCommune": "85221", - "libelleAcheminement": "ST GERVAIS", - "nomCommune": "ST GERVAIS" + "codePostal": "88270", + "codeCommune": "88365", + "libelleAcheminement": "RACECOURT", + "nomCommune": "RACECOURT" }, { - "codePostal": "85210", - "codeCommune": "85223", - "libelleAcheminement": "STE HERMINE", - "nomCommune": "STE HERMINE" + "codePostal": "90400", + "codeCommune": "90032", + "libelleAcheminement": "DANJOUTIN", + "nomCommune": "DANJOUTIN" }, { - "codePostal": "85270", - "codeCommune": "85226", - "libelleAcheminement": "ST HILAIRE DE RIEZ", - "nomCommune": "ST HILAIRE DE RIEZ" + "codePostal": "88800", + "codeCommune": "88385", + "libelleAcheminement": "REMONCOURT", + "nomCommune": "REMONCOURT" }, { - "codePostal": "85270", - "codeCommune": "85226", - "libelleAcheminement": "ST HILAIRE DE RIEZ", - "nomCommune": "ST HILAIRE DE RIEZ" + "codePostal": "90850", + "codeCommune": "90039", + "libelleAcheminement": "ESSERT", + "nomCommune": "ESSERT" }, { - "codePostal": "85120", - "codeCommune": "85229", - "libelleAcheminement": "ST HILAIRE DE VOUST", - "nomCommune": "ST HILAIRE DE VOUST" + "codePostal": "88170", + "codeCommune": "88387", + "libelleAcheminement": "REMOVILLE", + "nomCommune": "REMOVILLE" }, { - "codePostal": "85590", - "codeCommune": "85240", - "libelleAcheminement": "ST MALO DU BOIS", - "nomCommune": "ST MALO DU BOIS" + "codePostal": "90100", + "codeCommune": "90045", + "libelleAcheminement": "FECHE L EGLISE", + "nomCommune": "FECHE L EGLISE" }, { - "codePostal": "85590", - "codeCommune": "85242", - "libelleAcheminement": "ST MARS LA REORTHE", - "nomCommune": "ST MARS LA REORTHE" + "codePostal": "88390", + "codeCommune": "88388", + "libelleAcheminement": "RENAUVOID", + "nomCommune": "RENAUVOID" }, { - "codePostal": "85470", - "codeCommune": "85243", - "libelleAcheminement": "BREM SUR MER", - "nomCommune": "BREM SUR MER" + "codePostal": "90100", + "codeCommune": "90046", + "libelleAcheminement": "FLORIMONT", + "nomCommune": "FLORIMONT" }, { - "codePostal": "85700", - "codeCommune": "85254", - "libelleAcheminement": "ST MESMIN", - "nomCommune": "ST MESMIN" + "codePostal": "88320", + "codeCommune": "88390", + "libelleAcheminement": "ROBECOURT", + "nomCommune": "ROBECOURT" }, { - "codePostal": "85200", - "codeCommune": "85256", - "libelleAcheminement": "ST MICHEL LE CLOUCQ", - "nomCommune": "ST MICHEL LE CLOUCQ" + "codePostal": "90150", + "codeCommune": "90049", + "libelleAcheminement": "FOUSSEMAGNE", + "nomCommune": "FOUSSEMAGNE" }, { - "codePostal": "85420", - "codeCommune": "85269", - "libelleAcheminement": "ST SIGISMOND", - "nomCommune": "ST SIGISMOND" + "codePostal": "88120", + "codeCommune": "88391", + "libelleAcheminement": "ROCHESSON", + "nomCommune": "ROCHESSON" }, { - "codePostal": "85110", - "codeCommune": "85276", - "libelleAcheminement": "ST VINCENT STERLANGES", - "nomCommune": "ST VINCENT STERLANGES" + "codePostal": "90150", + "codeCommune": "90062", + "libelleAcheminement": "LARIVIERE", + "nomCommune": "LARIVIERE" }, { - "codePostal": "85540", - "codeCommune": "85277", - "libelleAcheminement": "ST VINCENT SUR GRAON", - "nomCommune": "ST VINCENT SUR GRAON" + "codePostal": "88700", + "codeCommune": "88395", + "libelleAcheminement": "ROMONT", + "nomCommune": "ROMONT" }, { - "codePostal": "85300", - "codeCommune": "85280", - "libelleAcheminement": "SALLERTAINE", - "nomCommune": "SALLERTAINE" + "codePostal": "90110", + "codeCommune": "90066", + "libelleAcheminement": "LEVAL", + "nomCommune": "LEVAL" }, { - "codePostal": "85110", - "codeCommune": "85282", - "libelleAcheminement": "SIGOURNAIS", - "nomCommune": "SIGOURNAIS" + "codePostal": "88100", + "codeCommune": "88413", + "libelleAcheminement": "ST DIE DES VOSGES", + "nomCommune": "ST DIE DES VOSGES" }, { - "codePostal": "85480", - "codeCommune": "85291", - "libelleAcheminement": "THORIGNY", - "nomCommune": "THORIGNY" + "codePostal": "90500", + "codeCommune": "90070", + "libelleAcheminement": "MONTBOUTON", + "nomCommune": "MONTBOUTON" }, { - "codePostal": "85580", - "codeCommune": "85297", - "libelleAcheminement": "TRIAIZE", - "nomCommune": "TRIAIZE" + "codePostal": "88170", + "codeCommune": "88431", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "85240", - "codeCommune": "85306", - "libelleAcheminement": "XANTON CHASSENON", - "nomCommune": "XANTON CHASSENON" + "codePostal": "90370", + "codeCommune": "90081", + "libelleAcheminement": "RECHESY", + "nomCommune": "RECHESY" }, { - "codePostal": "86310", - "codeCommune": "86006", - "libelleAcheminement": "ANTIGNY", - "nomCommune": "ANTIGNY" + "codePostal": "88500", + "codeCommune": "88433", + "libelleAcheminement": "ST PRANCHER", + "nomCommune": "ST PRANCHER" }, { - "codePostal": "86200", - "codeCommune": "86008", - "libelleAcheminement": "ARCAY", - "nomCommune": "ARCAY" + "codePostal": "90140", + "codeCommune": "90082", + "libelleAcheminement": "AUTRECHENE", + "nomCommune": "AUTRECHENE" }, { - "codePostal": "86340", - "codeCommune": "86010", - "libelleAcheminement": "ASLONNES", - "nomCommune": "ASLONNES" + "codePostal": "88800", + "codeCommune": "88434", + "libelleAcheminement": "ST REMIMONT", + "nomCommune": "ST REMIMONT" }, { - "codePostal": "86190", - "codeCommune": "86024", - "libelleAcheminement": "BERUGES", - "nomCommune": "BERUGES" + "codePostal": "90110", + "codeCommune": "90091", + "libelleAcheminement": "ST GERMAIN LE CHATELET", + "nomCommune": "ST GERMAIN LE CHATELET" }, { - "codePostal": "86310", - "codeCommune": "86025", - "libelleAcheminement": "BETHINES", - "nomCommune": "BETHINES" + "codePostal": "88140", + "codeCommune": "88448", + "libelleAcheminement": "SAUVILLE", + "nomCommune": "SAUVILLE" }, { - "codePostal": "86300", - "codeCommune": "86031", - "libelleAcheminement": "BONNES", - "nomCommune": "BONNES" + "codePostal": "90400", + "codeCommune": "90094", + "libelleAcheminement": "SEVENANS", + "nomCommune": "SEVENANS" }, { - "codePostal": "86120", - "codeCommune": "86036", - "libelleAcheminement": "BOURNAND", - "nomCommune": "BOURNAND" + "codePostal": "88320", + "codeCommune": "88450", + "libelleAcheminement": "SENAIDE", + "nomCommune": "SENAIDE" }, { - "codePostal": "86290", - "codeCommune": "86037", - "libelleAcheminement": "BRIGUEIL LE CHANTRE", - "nomCommune": "BRIGUEIL LE CHANTRE" + "codePostal": "90300", + "codeCommune": "90103", + "libelleAcheminement": "VETRIGNE", + "nomCommune": "VETRIGNE" }, { - "codePostal": "37160", - "codeCommune": "86042", - "libelleAcheminement": "BUXEUIL", - "nomCommune": "BUXEUIL" + "codePostal": "88210", + "codeCommune": "88451", + "libelleAcheminement": "SENONES", + "nomCommune": "SENONES" }, { - "codePostal": "86600", - "codeCommune": "86045", - "libelleAcheminement": "CELLE LEVESCAULT", - "nomCommune": "CELLE LEVESCAULT" + "codePostal": "91290", + "codeCommune": "91021", + "libelleAcheminement": "ARPAJON", + "nomCommune": "ARPAJON" }, { - "codePostal": "86510", - "codeCommune": "86051", - "libelleAcheminement": "CHAMPAGNE LE SEC", - "nomCommune": "CHAMPAGNE LE SEC" + "codePostal": "88630", + "codeCommune": "88457", + "libelleAcheminement": "SIONNE", + "nomCommune": "SIONNE" }, { - "codePostal": "86300", - "codeCommune": "86059", - "libelleAcheminement": "CHAPELLE VIVIERS", - "nomCommune": "CHAPELLE VIVIERS" + "codePostal": "91690", + "codeCommune": "91022", + "libelleAcheminement": "ARRANCOURT", + "nomCommune": "ARRANCOURT" }, { - "codePostal": "86350", - "codeCommune": "86064", - "libelleAcheminement": "CHATEAU GARNIER", - "nomCommune": "CHATEAU GARNIER" + "codePostal": "88170", + "codeCommune": "88459", + "libelleAcheminement": "SONCOURT", + "nomCommune": "SONCOURT" }, { - "codePostal": "86330", - "codeCommune": "86069", - "libelleAcheminement": "LA CHAUSSEE", - "nomCommune": "LA CHAUSSEE" + "codePostal": "91830", + "codeCommune": "91037", + "libelleAcheminement": "AUVERNAUX", + "nomCommune": "AUVERNAUX" }, { - "codePostal": "86300", - "codeCommune": "86070", - "libelleAcheminement": "CHAUVIGNY", - "nomCommune": "CHAUVIGNY" + "codePostal": "88150", + "codeCommune": "88465", + "libelleAcheminement": "THAON LES VOSGES", + "nomCommune": "THAON LES VOSGES" }, { - "codePostal": "86190", - "codeCommune": "86074", - "libelleAcheminement": "CHIRE EN MONTREUIL", - "nomCommune": "CHIRE EN MONTREUIL" + "codePostal": "91160", + "codeCommune": "91044", + "libelleAcheminement": "BALLAINVILLIERS", + "nomCommune": "BALLAINVILLIERS" }, { - "codePostal": "86200", - "codeCommune": "86079", - "libelleAcheminement": "LA ROCHE RIGAULT", - "nomCommune": "LA ROCHE RIGAULT" + "codePostal": "88800", + "codeCommune": "88466", + "libelleAcheminement": "THEY SOUS MONTFORT", + "nomCommune": "THEY SOUS MONTFORT" }, { - "codePostal": "86200", - "codeCommune": "86079", - "libelleAcheminement": "LA ROCHE RIGAULT", - "nomCommune": "LA ROCHE RIGAULT" + "codePostal": "91610", + "codeCommune": "91045", + "libelleAcheminement": "BALLANCOURT SUR ESSONNE", + "nomCommune": "BALLANCOURT SUR ESSONNE" }, { - "codePostal": "86700", - "codeCommune": "86082", - "libelleAcheminement": "VALENCE EN POITOU", - "nomCommune": "VALENCE EN POITOU" + "codePostal": "88500", + "codeCommune": "88469", + "libelleAcheminement": "THIRAUCOURT", + "nomCommune": "THIRAUCOURT" }, { - "codePostal": "86290", - "codeCommune": "86084", - "libelleAcheminement": "COULONGES", - "nomCommune": "COULONGES" + "codePostal": "91690", + "codeCommune": "91079", + "libelleAcheminement": "BOISSY LA RIVIERE", + "nomCommune": "BOISSY LA RIVIERE" }, { - "codePostal": "86110", - "codeCommune": "86087", - "libelleAcheminement": "CRAON", - "nomCommune": "CRAON" + "codePostal": "88350", + "codeCommune": "88477", + "libelleAcheminement": "TRAMPOT", + "nomCommune": "TRAMPOT" }, { - "codePostal": "86420", - "codeCommune": "86093", - "libelleAcheminement": "DERCE", - "nomCommune": "DERCE" + "codePostal": "91590", + "codeCommune": "91080", + "libelleAcheminement": "BOISSY LE CUTTE", + "nomCommune": "BOISSY LE CUTTE" }, { - "codePostal": "86300", - "codeCommune": "86122", - "libelleAcheminement": "LAUTHIERS", - "nomCommune": "LAUTHIERS" + "codePostal": "88340", + "codeCommune": "88487", + "libelleAcheminement": "LE VAL D AJOL", + "nomCommune": "LE VAL D AJOL" }, { - "codePostal": "86300", - "codeCommune": "86126", - "libelleAcheminement": "LEIGNES SUR FONTAINE", - "nomCommune": "LEIGNES SUR FONTAINE" + "codePostal": "91070", + "codeCommune": "91086", + "libelleAcheminement": "BONDOUFLE", + "nomCommune": "BONDOUFLE" }, { - "codePostal": "86230", - "codeCommune": "86127", - "libelleAcheminement": "LEIGNE SUR USSEAU", - "nomCommune": "LEIGNE SUR USSEAU" + "codePostal": "88800", + "codeCommune": "88490", + "libelleAcheminement": "VALLEROY LE SEC", + "nomCommune": "VALLEROY LE SEC" }, { - "codePostal": "86220", - "codeCommune": "86130", - "libelleAcheminement": "LEUGNY", - "nomCommune": "LEUGNY" + "codePostal": "91470", + "codeCommune": "91093", + "libelleAcheminement": "BOULLAY LES TROUX", + "nomCommune": "BOULLAY LES TROUX" }, { - "codePostal": "86200", - "codeCommune": "86137", - "libelleAcheminement": "LOUDUN", - "nomCommune": "LOUDUN" + "codePostal": "88000", + "codeCommune": "88495", + "libelleAcheminement": "VAUDEVILLE", + "nomCommune": "VAUDEVILLE" }, { - "codePostal": "86170", - "codeCommune": "86144", - "libelleAcheminement": "MAISONNEUVE", - "nomCommune": "MAISONNEUVE" + "codePostal": "91220", + "codeCommune": "91103", + "libelleAcheminement": "BRETIGNY SUR ORGE", + "nomCommune": "BRETIGNY SUR ORGE" }, { - "codePostal": "86370", - "codeCommune": "86145", - "libelleAcheminement": "MARCAY", - "nomCommune": "MARCAY" + "codePostal": "88600", + "codeCommune": "88502", + "libelleAcheminement": "VERVEZELLE", + "nomCommune": "VERVEZELLE" }, { - "codePostal": "86160", - "codeCommune": "86148", - "libelleAcheminement": "MARNAY", - "nomCommune": "MARNAY" + "codePostal": "91150", + "codeCommune": "91109", + "libelleAcheminement": "BRIERES LES SCELLES", + "nomCommune": "BRIERES LES SCELLES" }, { - "codePostal": "86150", - "codeCommune": "86159", - "libelleAcheminement": "MILLAC", - "nomCommune": "MILLAC" + "codePostal": "88110", + "codeCommune": "88503", + "libelleAcheminement": "VEXAINCOURT", + "nomCommune": "VEXAINCOURT" }, { - "codePostal": "86210", - "codeCommune": "86164", - "libelleAcheminement": "MONTHOIRON", - "nomCommune": "MONTHOIRON" + "codePostal": "91640", + "codeCommune": "91111", + "libelleAcheminement": "BRIIS SOUS FORGES", + "nomCommune": "BRIIS SOUS FORGES" }, { - "codePostal": "86200", - "codeCommune": "86173", - "libelleAcheminement": "MOUTERRE SILLY", - "nomCommune": "MOUTERRE SILLY" + "codePostal": "88150", + "codeCommune": "88509", + "libelleAcheminement": "VILLONCOURT", + "nomCommune": "VILLONCOURT" }, { - "codePostal": "86170", - "codeCommune": "86177", - "libelleAcheminement": "NEUVILLE DE POITOU", - "nomCommune": "NEUVILLE DE POITOU" + "codePostal": "91740", + "codeCommune": "91131", + "libelleAcheminement": "CHALOU MOULINEUX", + "nomCommune": "CHALOU MOULINEUX" }, { - "codePostal": "86260", - "codeCommune": "86202", - "libelleAcheminement": "LA PUYE", - "nomCommune": "LA PUYE" + "codePostal": "88170", + "codeCommune": "88514", + "libelleAcheminement": "VIOCOURT", + "nomCommune": "VIOCOURT" }, { - "codePostal": "86150", - "codeCommune": "86203", - "libelleAcheminement": "QUEAUX", - "nomCommune": "QUEAUX" + "codePostal": "91150", + "codeCommune": "91137", + "libelleAcheminement": "CHAMPMOTTEUX", + "nomCommune": "CHAMPMOTTEUX" }, { - "codePostal": "86190", - "codeCommune": "86204", - "libelleAcheminement": "QUINCAY", - "nomCommune": "QUINCAY" + "codePostal": "88260", + "codeCommune": "88517", + "libelleAcheminement": "VIVIERS LE GRAS", + "nomCommune": "VIVIERS LE GRAS" }, { - "codePostal": "86270", - "codeCommune": "86207", - "libelleAcheminement": "LA ROCHE POSAY", - "nomCommune": "LA ROCHE POSAY" + "codePostal": "91410", + "codeCommune": "91145", + "libelleAcheminement": "CHATIGNONVILLE", + "nomCommune": "CHATIGNONVILLE" }, { - "codePostal": "86310", - "codeCommune": "86223", - "libelleAcheminement": "ST GERMAIN", - "nomCommune": "ST GERMAIN" + "codePostal": "88500", + "codeCommune": "88522", + "libelleAcheminement": "VOMECOURT SUR MADON", + "nomCommune": "VOMECOURT SUR MADON" }, { - "codePostal": "86330", - "codeCommune": "86225", - "libelleAcheminement": "ST JEAN DE SAUVES", - "nomCommune": "ST JEAN DE SAUVES" + "codePostal": "91630", + "codeCommune": "91156", + "libelleAcheminement": "CHEPTAINVILLE", + "nomCommune": "CHEPTAINVILLE" }, { - "codePostal": "86800", - "codeCommune": "86226", - "libelleAcheminement": "ST JULIEN L ARS", - "nomCommune": "ST JULIEN L ARS" + "codePostal": "88170", + "codeCommune": "88523", + "libelleAcheminement": "VOUXEY", + "nomCommune": "VOUXEY" }, { - "codePostal": "86120", - "codeCommune": "86229", - "libelleAcheminement": "ST LEGER DE MONTBRILLAIS", - "nomCommune": "ST LEGER DE MONTBRILLAIS" + "codePostal": "91750", + "codeCommune": "91159", + "libelleAcheminement": "CHEVANNES", + "nomCommune": "CHEVANNES" }, { - "codePostal": "86400", - "codeCommune": "86231", - "libelleAcheminement": "ST MACOUX", - "nomCommune": "ST MACOUX" + "codePostal": "88140", + "codeCommune": "88524", + "libelleAcheminement": "VRECOURT", + "nomCommune": "VRECOURT" }, { - "codePostal": "86160", - "codeCommune": "86235", - "libelleAcheminement": "ST MAURICE LA CLOUERE", - "nomCommune": "ST MAURICE LA CLOUERE" + "codePostal": "91830", + "codeCommune": "91179", + "libelleAcheminement": "LE COUDRAY MONTCEAUX", + "nomCommune": "LE COUDRAY MONTCEAUX" }, { - "codePostal": "86600", - "codeCommune": "86244", - "libelleAcheminement": "ST SAUVANT", - "nomCommune": "ST SAUVANT" + "codePostal": "88460", + "codeCommune": "88528", + "libelleAcheminement": "XAMONTARUPT", + "nomCommune": "XAMONTARUPT" }, { - "codePostal": "86350", - "codeCommune": "86248", - "libelleAcheminement": "ST SECONDIN", - "nomCommune": "ST SECONDIN" + "codePostal": "91830", + "codeCommune": "91179", + "libelleAcheminement": "LE COUDRAY MONTCEAUX", + "nomCommune": "LE COUDRAY MONTCEAUX" }, { - "codePostal": "86420", - "codeCommune": "86249", - "libelleAcheminement": "SAIRES", - "nomCommune": "SAIRES" + "codePostal": "89800", + "codeCommune": "89002", + "libelleAcheminement": "AIGREMONT", + "nomCommune": "AIGREMONT" }, { - "codePostal": "86500", - "codeCommune": "86254", - "libelleAcheminement": "SAULGE", - "nomCommune": "SAULGE" + "codePostal": "91490", + "codeCommune": "91180", + "libelleAcheminement": "COURANCES", + "nomCommune": "COURANCES" }, { - "codePostal": "86800", - "codeCommune": "86256", - "libelleAcheminement": "SAVIGNY LEVESCAULT", - "nomCommune": "SAVIGNY LEVESCAULT" + "codePostal": "89710", + "codeCommune": "89003", + "libelleAcheminement": "MONTHOLON", + "nomCommune": "MONTHOLON" }, { - "codePostal": "86320", - "codeCommune": "86262", - "libelleAcheminement": "SILLARS", - "nomCommune": "SILLARS" + "codePostal": "91680", + "codeCommune": "91186", + "libelleAcheminement": "COURSON MONTELOUP", + "nomCommune": "COURSON MONTELOUP" }, { - "codePostal": "86120", - "codeCommune": "86269", - "libelleAcheminement": "TERNAY", - "nomCommune": "TERNAY" + "codePostal": "89160", + "codeCommune": "89005", + "libelleAcheminement": "ANCY LE FRANC", + "nomCommune": "ANCY LE FRANC" }, { - "codePostal": "86120", - "codeCommune": "86287", - "libelleAcheminement": "VEZIERES", - "nomCommune": "VEZIERES" + "codePostal": "91560", + "codeCommune": "91191", + "libelleAcheminement": "CROSNE", + "nomCommune": "CROSNE" }, { - "codePostal": "86310", - "codeCommune": "86291", - "libelleAcheminement": "VILLEMORT", - "nomCommune": "VILLEMORT" + "codePostal": "89480", + "codeCommune": "89007", + "libelleAcheminement": "ANDRYES", + "nomCommune": "ANDRYES" }, { - "codePostal": "86190", - "codeCommune": "86294", - "libelleAcheminement": "VOUILLE", - "nomCommune": "VOUILLE" + "codePostal": "91360", + "codeCommune": "91216", + "libelleAcheminement": "EPINAY SUR ORGE", + "nomCommune": "EPINAY SUR ORGE" }, { - "codePostal": "86400", - "codeCommune": "86295", - "libelleAcheminement": "VOULEME", - "nomCommune": "VOULEME" + "codePostal": "89440", + "codeCommune": "89008", + "libelleAcheminement": "ANGELY", + "nomCommune": "ANGELY" }, { - "codePostal": "86580", - "codeCommune": "86297", - "libelleAcheminement": "VOUNEUIL SOUS BIARD", - "nomCommune": "VOUNEUIL SOUS BIARD" + "codePostal": "91000", + "codeCommune": "91228", + "libelleAcheminement": "EVRY COURCOURONNES", + "nomCommune": "EVRY COURCOURONNES" }, { - "codePostal": "86210", - "codeCommune": "86298", - "libelleAcheminement": "VOUNEUIL SUR VIENNE", - "nomCommune": "VOUNEUIL SUR VIENNE" + "codePostal": "89200", + "codeCommune": "89011", + "libelleAcheminement": "ANNEOT", + "nomCommune": "ANNEOT" }, { - "codePostal": "87240", - "codeCommune": "87002", - "libelleAcheminement": "AMBAZAC", - "nomCommune": "AMBAZAC" + "codePostal": "91540", + "codeCommune": "91244", + "libelleAcheminement": "FONTENAY LE VICOMTE", + "nomCommune": "FONTENAY LE VICOMTE" }, { - "codePostal": "87360", - "codeCommune": "87006", - "libelleAcheminement": "AZAT LE RIS", - "nomCommune": "AZAT LE RIS" + "codePostal": "89160", + "codeCommune": "89017", + "libelleAcheminement": "ARGENTEUIL SUR ARMANCON", + "nomCommune": "ARGENTEUIL SUR ARMANCON" }, { - "codePostal": "87210", - "codeCommune": "87008", - "libelleAcheminement": "LA BAZEUGE", - "nomCommune": "LA BAZEUGE" + "codePostal": "91400", + "codeCommune": "91274", + "libelleAcheminement": "GOMETZ LA VILLE", + "nomCommune": "GOMETZ LA VILLE" }, { - "codePostal": "87300", - "codeCommune": "87011", - "libelleAcheminement": "BELLAC", - "nomCommune": "BELLAC" + "codePostal": "89660", + "codeCommune": "89020", + "libelleAcheminement": "ASNIERES SOUS BOIS", + "nomCommune": "ASNIERES SOUS BOIS" }, { - "codePostal": "87700", - "codeCommune": "87015", - "libelleAcheminement": "BEYNAC", - "nomCommune": "BEYNAC" + "codePostal": "91350", + "codeCommune": "91286", + "libelleAcheminement": "GRIGNY", + "nomCommune": "GRIGNY" }, { - "codePostal": "87110", - "codeCommune": "87021", - "libelleAcheminement": "BOSMIE L AIGUILLE", - "nomCommune": "BOSMIE L AIGUILLE" + "codePostal": "89440", + "codeCommune": "89022", + "libelleAcheminement": "ATHIE", + "nomCommune": "ATHIE" }, { - "codePostal": "87330", - "codeCommune": "87028", - "libelleAcheminement": "VAL D OIRE ET GARTEMPE", - "nomCommune": "VAL D OIRE ET GARTEMPE" + "codePostal": "91690", + "codeCommune": "91294", + "libelleAcheminement": "GUILLERVAL", + "nomCommune": "GUILLERVAL" }, { - "codePostal": "87230", - "codeCommune": "87029", - "libelleAcheminement": "LES CARS", - "nomCommune": "LES CARS" + "codePostal": "89000", + "codeCommune": "89024", + "libelleAcheminement": "AUXERRE", + "nomCommune": "AUXERRE" }, { - "codePostal": "87440", - "codeCommune": "87037", - "libelleAcheminement": "LA CHAPELLE MONTBRANDEIX", - "nomCommune": "LA CHAPELLE MONTBRANDEIX" + "codePostal": "91640", + "codeCommune": "91319", + "libelleAcheminement": "JANVRY", + "nomCommune": "JANVRY" }, { - "codePostal": "87130", - "codeCommune": "87040", - "libelleAcheminement": "CHATEAUNEUF LA FORET", - "nomCommune": "CHATEAUNEUF LA FORET" + "codePostal": "89800", + "codeCommune": "89034", + "libelleAcheminement": "BEINE", + "nomCommune": "BEINE" }, { - "codePostal": "87290", - "codeCommune": "87041", - "libelleAcheminement": "CHATEAUPONSAC", - "nomCommune": "CHATEAUPONSAC" + "codePostal": "91310", + "codeCommune": "91339", + "libelleAcheminement": "LINAS", + "nomCommune": "LINAS" }, { - "codePostal": "87210", - "codeCommune": "87052", - "libelleAcheminement": "LA CROIX SUR GARTEMPE", - "nomCommune": "LA CROIX SUR GARTEMPE" + "codePostal": "89360", + "codeCommune": "89038", + "libelleAcheminement": "BERNOUIL", + "nomCommune": "BERNOUIL" }, { - "codePostal": "87150", - "codeCommune": "87054", - "libelleAcheminement": "CUSSAC", - "nomCommune": "CUSSAC" + "codePostal": "91720", + "codeCommune": "91359", + "libelleAcheminement": "MAISSE", + "nomCommune": "MAISSE" }, { - "codePostal": "87210", - "codeCommune": "87056", - "libelleAcheminement": "DINSAC", - "nomCommune": "DINSAC" + "codePostal": "89270", + "codeCommune": "89040", + "libelleAcheminement": "BESSY SUR CURE", + "nomCommune": "BESSY SUR CURE" }, { - "codePostal": "87400", - "codeCommune": "87062", - "libelleAcheminement": "EYBOULEUF", - "nomCommune": "EYBOULEUF" + "codePostal": "91150", + "codeCommune": "91374", + "libelleAcheminement": "MAROLLES EN BEAUCE", + "nomCommune": "MAROLLES EN BEAUCE" }, { - "codePostal": "87500", - "codeCommune": "87071", - "libelleAcheminement": "GLANDON", - "nomCommune": "GLANDON" + "codePostal": "89770", + "codeCommune": "89048", + "libelleAcheminement": "BOEURS EN OTHE", + "nomCommune": "BOEURS EN OTHE" }, { - "codePostal": "87160", - "codeCommune": "87074", - "libelleAcheminement": "LES GRANDS CHEZEAUX", - "nomCommune": "LES GRANDS CHEZEAUX" + "codePostal": "91630", + "codeCommune": "91376", + "libelleAcheminement": "MAROLLES EN HUREPOIX", + "nomCommune": "MAROLLES EN HUREPOIX" }, { - "codePostal": "87160", - "codeCommune": "87090", - "libelleAcheminement": "MAILHAC SUR BENAIZE", - "nomCommune": "MAILHAC SUR BENAIZE" + "codePostal": "89400", + "codeCommune": "89050", + "libelleAcheminement": "BONNARD", + "nomCommune": "BONNARD" }, { - "codePostal": "87440", - "codeCommune": "87092", - "libelleAcheminement": "MARVAL", - "nomCommune": "MARVAL" + "codePostal": "91660", + "codeCommune": "91390", + "libelleAcheminement": "LE MEREVILLOIS", + "nomCommune": "LE MEREVILLOIS" }, { - "codePostal": "87800", - "codeCommune": "87094", - "libelleAcheminement": "MEILHAC", - "nomCommune": "MEILHAC" + "codePostal": "89113", + "codeCommune": "89053", + "libelleAcheminement": "BRANCHES", + "nomCommune": "BRANCHES" }, { - "codePostal": "87330", - "codeCommune": "87101", - "libelleAcheminement": "MORTEMART", - "nomCommune": "MORTEMART" + "codePostal": "91490", + "codeCommune": "91405", + "libelleAcheminement": "MILLY LA FORET", + "nomCommune": "MILLY LA FORET" }, { - "codePostal": "87800", - "codeCommune": "87106", - "libelleAcheminement": "NEXON", - "nomCommune": "NEXON" + "codePostal": "89360", + "codeCommune": "89062", + "libelleAcheminement": "CARISEY", + "nomCommune": "CARISEY" }, { - "codePostal": "87380", - "codeCommune": "87120", - "libelleAcheminement": "LA PORCHERIE", - "nomCommune": "LA PORCHERIE" + "codePostal": "91590", + "codeCommune": "91412", + "libelleAcheminement": "MONDEVILLE", + "nomCommune": "MONDEVILLE" }, { - "codePostal": "87290", - "codeCommune": "87133", - "libelleAcheminement": "ST AMAND MAGNAZEIX", - "nomCommune": "ST AMAND MAGNAZEIX" + "codePostal": "89116", + "codeCommune": "89063", + "libelleAcheminement": "LA CELLE ST CYR", + "nomCommune": "LA CELLE ST CYR" }, { - "codePostal": "87200", - "codeCommune": "87140", - "libelleAcheminement": "ST BRICE SUR VIENNE", - "nomCommune": "ST BRICE SUR VIENNE" + "codePostal": "91930", + "codeCommune": "91414", + "libelleAcheminement": "MONNERVILLE", + "nomCommune": "MONNERVILLE" }, { - "codePostal": "87510", - "codeCommune": "87143", - "libelleAcheminement": "ST GENCE", - "nomCommune": "ST GENCE" + "codePostal": "89320", + "codeCommune": "89065", + "libelleAcheminement": "CERILLY", + "nomCommune": "CERILLY" }, { - "codePostal": "87260", - "codeCommune": "87151", - "libelleAcheminement": "ST JEAN LIGOURE", - "nomCommune": "ST JEAN LIGOURE" + "codePostal": "91340", + "codeCommune": "91461", + "libelleAcheminement": "OLLAINVILLE", + "nomCommune": "OLLAINVILLE" }, { - "codePostal": "87240", - "codeCommune": "87157", - "libelleAcheminement": "ST LAURENT LES EGLISES", - "nomCommune": "ST LAURENT LES EGLISES" + "codePostal": "89800", + "codeCommune": "89068", + "libelleAcheminement": "CHABLIS", + "nomCommune": "CHABLIS" }, { - "codePostal": "87330", - "codeCommune": "87163", - "libelleAcheminement": "ST MARTIAL SUR ISOP", - "nomCommune": "ST MARTIAL SUR ISOP" + "codePostal": "91400", + "codeCommune": "91471", + "libelleAcheminement": "ORSAY", + "nomCommune": "ORSAY" }, { - "codePostal": "87200", - "codeCommune": "87164", - "libelleAcheminement": "ST MARTIN DE JUSSAC", - "nomCommune": "ST MARTIN DE JUSSAC" + "codePostal": "89800", + "codeCommune": "89068", + "libelleAcheminement": "CHABLIS", + "nomCommune": "CHABLIS" }, { - "codePostal": "87260", - "codeCommune": "87174", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "94390", + "codeCommune": "91479", + "libelleAcheminement": "PARAY VIEILLE POSTE", + "nomCommune": "PARAY VIEILLE POSTE" }, { - "codePostal": "87290", - "codeCommune": "87180", - "libelleAcheminement": "ST SORNIN LEULAC", - "nomCommune": "ST SORNIN LEULAC" + "codePostal": "89300", + "codeCommune": "89075", + "libelleAcheminement": "CHAMPLAY", + "nomCommune": "CHAMPLAY" }, { - "codePostal": "87700", - "codeCommune": "87188", - "libelleAcheminement": "ST YRIEIX SOUS AIXE", - "nomCommune": "ST YRIEIX SOUS AIXE" + "codePostal": "91220", + "codeCommune": "91494", + "libelleAcheminement": "LE PLESSIS PATE", + "nomCommune": "LE PLESSIS PATE" }, { - "codePostal": "87620", - "codeCommune": "87191", - "libelleAcheminement": "SEREILHAC", - "nomCommune": "SEREILHAC" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "87130", - "codeCommune": "87194", - "libelleAcheminement": "SUSSAC", - "nomCommune": "SUSSAC" + "codePostal": "91480", + "codeCommune": "91514", + "libelleAcheminement": "QUINCY SOUS SENART", + "nomCommune": "QUINCY SOUS SENART" }, { - "codePostal": "87140", - "codeCommune": "87197", - "libelleAcheminement": "THOURON", - "nomCommune": "THOURON" + "codePostal": "89800", + "codeCommune": "89095", + "libelleAcheminement": "CHEMILLY SUR SEREIN", + "nomCommune": "CHEMILLY SUR SEREIN" }, { - "codePostal": "87140", - "codeCommune": "87198", - "libelleAcheminement": "VAULRY", - "nomCommune": "VAULRY" + "codePostal": "91240", + "codeCommune": "91570", + "libelleAcheminement": "ST MICHEL SUR ORGE", + "nomCommune": "ST MICHEL SUR ORGE" }, { - "codePostal": "88270", - "codeCommune": "88001", - "libelleAcheminement": "LES ABLEUVENETTES", - "nomCommune": "LES ABLEUVENETTES" + "codePostal": "89250", + "codeCommune": "89096", + "libelleAcheminement": "CHEMILLY SUR YONNE", + "nomCommune": "CHEMILLY SUR YONNE" }, { - "codePostal": "88300", - "codeCommune": "88015", - "libelleAcheminement": "ATTIGNEVILLE", - "nomCommune": "ATTIGNEVILLE" + "codePostal": "91650", + "codeCommune": "91581", + "libelleAcheminement": "ST YON", + "nomCommune": "ST YON" }, { - "codePostal": "88300", - "codeCommune": "88020", - "libelleAcheminement": "AUTREVILLE", - "nomCommune": "AUTREVILLE" + "codePostal": "89600", + "codeCommune": "89101", + "libelleAcheminement": "CHEU", + "nomCommune": "CHEU" }, { - "codePostal": "88700", - "codeCommune": "88021", - "libelleAcheminement": "AUTREY", - "nomCommune": "AUTREY" + "codePostal": "91250", + "codeCommune": "91617", + "libelleAcheminement": "TIGERY", + "nomCommune": "TIGERY" }, { - "codePostal": "88460", - "codeCommune": "88028", - "libelleAcheminement": "LA BAFFE", - "nomCommune": "LA BAFFE" + "codePostal": "89320", + "codeCommune": "89120", + "libelleAcheminement": "COULOURS", + "nomCommune": "COULOURS" }, { - "codePostal": "88240", - "codeCommune": "88029", - "libelleAcheminement": "LA VOGE LES BAINS", - "nomCommune": "LA VOGE LES BAINS" + "codePostal": "91140", + "codeCommune": "91661", + "libelleAcheminement": "VILLEBON SUR YVETTE", + "nomCommune": "VILLEBON SUR YVETTE" }, { - "codePostal": "88240", - "codeCommune": "88029", - "libelleAcheminement": "LA VOGE LES BAINS", - "nomCommune": "LA VOGE LES BAINS" + "codePostal": "89800", + "codeCommune": "89123", + "libelleAcheminement": "COURGIS", + "nomCommune": "COURGIS" }, { - "codePostal": "88210", - "codeCommune": "88033", - "libelleAcheminement": "BAN DE SAPT", - "nomCommune": "BAN DE SAPT" + "codePostal": "91170", + "codeCommune": "91687", + "libelleAcheminement": "VIRY CHATILLON", + "nomCommune": "VIRY CHATILLON" }, { - "codePostal": "88300", - "codeCommune": "88036", - "libelleAcheminement": "BARVILLE", - "nomCommune": "BARVILLE" + "codePostal": "89480", + "codeCommune": "89129", + "libelleAcheminement": "CRAIN", + "nomCommune": "CRAIN" }, { - "codePostal": "88120", - "codeCommune": "88037", - "libelleAcheminement": "BASSE SUR LE RUPT", - "nomCommune": "BASSE SUR LE RUPT" + "codePostal": "92160", + "codeCommune": "92002", + "libelleAcheminement": "ANTONY", + "nomCommune": "ANTONY" }, { - "codePostal": "88150", - "codeCommune": "88040", - "libelleAcheminement": "BAYECOURT", - "nomCommune": "BAYECOURT" + "codePostal": "89420", + "codeCommune": "89134", + "libelleAcheminement": "CUSSY LES FORGES", + "nomCommune": "CUSSY LES FORGES" }, { - "codePostal": "88270", - "codeCommune": "88041", - "libelleAcheminement": "BAZEGNEY", - "nomCommune": "BAZEGNEY" + "codePostal": "92600", + "codeCommune": "92004", + "libelleAcheminement": "ASNIERES SUR SEINE", + "nomCommune": "ASNIERES SUR SEINE" }, { - "codePostal": "88500", - "codeCommune": "88043", - "libelleAcheminement": "BAZOILLES ET MENIL", - "nomCommune": "BAZOILLES ET MENIL" + "codePostal": "89700", + "codeCommune": "89137", + "libelleAcheminement": "DANNEMOINE", + "nomCommune": "DANNEMOINE" }, { - "codePostal": "88300", - "codeCommune": "88045", - "libelleAcheminement": "BEAUFREMONT", - "nomCommune": "BEAUFREMONT" + "codePostal": "92340", + "codeCommune": "92014", + "libelleAcheminement": "BOURG LA REINE", + "nomCommune": "BOURG LA REINE" }, { - "codePostal": "88600", - "codeCommune": "88046", - "libelleAcheminement": "BEAUMENIL", - "nomCommune": "BEAUMENIL" + "codePostal": "89560", + "codeCommune": "89148", + "libelleAcheminement": "DRUYES LES BELLES FONTAINES", + "nomCommune": "DRUYES LES BELLES FONTAINES" }, { - "codePostal": "88260", - "codeCommune": "88049", - "libelleAcheminement": "BELMONT LES DARNEY", - "nomCommune": "BELMONT LES DARNEY" + "codePostal": "92380", + "codeCommune": "92033", + "libelleAcheminement": "GARCHES", + "nomCommune": "GARCHES" }, { - "codePostal": "88260", - "codeCommune": "88052", - "libelleAcheminement": "BELRUPT", - "nomCommune": "BELRUPT" + "codePostal": "89700", + "codeCommune": "89153", + "libelleAcheminement": "EPINEUIL", + "nomCommune": "EPINEUIL" }, { - "codePostal": "88490", - "codeCommune": "88057", - "libelleAcheminement": "LE BEULAY", - "nomCommune": "LE BEULAY" + "codePostal": "92130", + "codeCommune": "92040", + "libelleAcheminement": "ISSY LES MOULINEAUX", + "nomCommune": "ISSY LES MOULINEAUX" }, { - "codePostal": "88320", - "codeCommune": "88062", - "libelleAcheminement": "BLEVAINCOURT", - "nomCommune": "BLEVAINCOURT" + "codePostal": "89190", + "codeCommune": "89171", + "libelleAcheminement": "FOISSY SUR VANNE", + "nomCommune": "FOISSY SUR VANNE" }, { - "codePostal": "88270", - "codeCommune": "88069", - "libelleAcheminement": "BOUXIERES AUX BOIS", - "nomCommune": "BOUXIERES AUX BOIS" + "codePostal": "92300", + "codeCommune": "92044", + "libelleAcheminement": "LEVALLOIS PERRET", + "nomCommune": "LEVALLOIS PERRET" }, { - "codePostal": "88270", - "codeCommune": "88071", - "libelleAcheminement": "BOUZEMONT", - "nomCommune": "BOUZEMONT" + "codePostal": "89450", + "codeCommune": "89176", + "libelleAcheminement": "FONTENAY PRES VEZELAY", + "nomCommune": "FONTENAY PRES VEZELAY" }, { - "codePostal": "88350", - "codeCommune": "88074", - "libelleAcheminement": "BRECHAINVILLE", - "nomCommune": "BRECHAINVILLE" + "codePostal": "92330", + "codeCommune": "92071", + "libelleAcheminement": "SCEAUX", + "nomCommune": "SCEAUX" }, { - "codePostal": "88600", - "codeCommune": "88078", - "libelleAcheminement": "BRUYERES", - "nomCommune": "BRUYERES" + "codePostal": "89600", + "codeCommune": "89186", + "libelleAcheminement": "GERMIGNY", + "nomCommune": "GERMIGNY" }, { - "codePostal": "88300", - "codeCommune": "88083", - "libelleAcheminement": "CERTILLEUX", - "nomCommune": "CERTILLEUX" + "codePostal": "92150", + "codeCommune": "92073", + "libelleAcheminement": "SURESNES", + "nomCommune": "SURESNES" }, { - "codePostal": "88640", - "codeCommune": "88085", - "libelleAcheminement": "CHAMPDRAY", - "nomCommune": "CHAMPDRAY" + "codePostal": "89113", + "codeCommune": "89196", + "libelleAcheminement": "VALRAVILLON", + "nomCommune": "VALRAVILLON" }, { - "codePostal": "88000", - "codeCommune": "88087", - "libelleAcheminement": "CHANTRAINE", - "nomCommune": "CHANTRAINE" + "codePostal": "92410", + "codeCommune": "92077", + "libelleAcheminement": "VILLE D AVRAY", + "nomCommune": "VILLE D AVRAY" }, { - "codePostal": "88240", - "codeCommune": "88088", - "libelleAcheminement": "LA CHAPELLE AUX BOIS", - "nomCommune": "LA CHAPELLE AUX BOIS" + "codePostal": "89420", + "codeCommune": "89197", + "libelleAcheminement": "GUILLON TERRE PLAINE", + "nomCommune": "GUILLON TERRE PLAINE" }, { - "codePostal": "88130", - "codeCommune": "88090", - "libelleAcheminement": "CHARMES", - "nomCommune": "CHARMES" + "codePostal": "92390", + "codeCommune": "92078", + "libelleAcheminement": "VILLENEUVE LA GARENNE", + "nomCommune": "VILLENEUVE LA GARENNE" }, { - "codePostal": "88460", - "codeCommune": "88091", - "libelleAcheminement": "CHARMOIS DEVANT BRUYERES", - "nomCommune": "CHARMOIS DEVANT BRUYERES" + "codePostal": "89580", + "codeCommune": "89199", + "libelleAcheminement": "GY L EVEQUE", + "nomCommune": "GY L EVEQUE" }, { - "codePostal": "88210", - "codeCommune": "88093", - "libelleAcheminement": "CHATAS", - "nomCommune": "CHATAS" + "codePostal": "93150", + "codeCommune": "93007", + "libelleAcheminement": "LE BLANC MESNIL", + "nomCommune": "LE BLANC MESNIL" }, { - "codePostal": "88150", - "codeCommune": "88099", - "libelleAcheminement": "CHAVELOT", - "nomCommune": "CHAVELOT" + "codePostal": "89200", + "codeCommune": "89203", + "libelleAcheminement": "ISLAND", + "nomCommune": "ISLAND" }, { - "codePostal": "88500", - "codeCommune": "88100", - "libelleAcheminement": "CHEF HAUT", - "nomCommune": "CHEF HAUT" + "codePostal": "93440", + "codeCommune": "93030", + "libelleAcheminement": "DUGNY", + "nomCommune": "DUGNY" }, { - "codePostal": "88100", - "codeCommune": "88111", - "libelleAcheminement": "COINCHES", - "nomCommune": "COINCHES" + "codePostal": "89130", + "codeCommune": "89217", + "libelleAcheminement": "LALANDE", + "nomCommune": "LALANDE" }, { - "codePostal": "88430", - "codeCommune": "88115", - "libelleAcheminement": "CORCIEUX", - "nomCommune": "CORCIEUX" + "codePostal": "93320", + "codeCommune": "93057", + "libelleAcheminement": "LES PAVILLONS SOUS BOIS", + "nomCommune": "LES PAVILLONS SOUS BOIS" }, { - "codePostal": "88170", - "codeCommune": "88117", - "libelleAcheminement": "COURCELLES SOUS CHATENOIS", - "nomCommune": "COURCELLES SOUS CHATENOIS" + "codePostal": "89520", + "codeCommune": "89222", + "libelleAcheminement": "LEVIS", + "nomCommune": "LEVIS" }, { - "codePostal": "88270", - "codeCommune": "88122", - "libelleAcheminement": "DAMAS ET BETTEGNEY", - "nomCommune": "DAMAS ET BETTEGNEY" + "codePostal": "93110", + "codeCommune": "93064", + "libelleAcheminement": "ROSNY SOUS BOIS", + "nomCommune": "ROSNY SOUS BOIS" }, { - "codePostal": "88320", - "codeCommune": "88123", - "libelleAcheminement": "DAMBLAIN", - "nomCommune": "DAMBLAIN" + "codePostal": "89144", + "codeCommune": "89227", + "libelleAcheminement": "LIGNY LE CHATEL", + "nomCommune": "LIGNY LE CHATEL" }, { - "codePostal": "88700", - "codeCommune": "88127", - "libelleAcheminement": "DEINVILLERS", - "nomCommune": "DEINVILLERS" + "codePostal": "93400", + "codeCommune": "93070", + "libelleAcheminement": "ST OUEN SUR SEINE", + "nomCommune": "ST OUEN SUR SEINE" }, { - "codePostal": "88000", - "codeCommune": "88133", - "libelleAcheminement": "DIGNONVILLE", - "nomCommune": "DIGNONVILLE" + "codePostal": "89140", + "codeCommune": "89229", + "libelleAcheminement": "LIXY", + "nomCommune": "LIXY" }, { - "codePostal": "88800", - "codeCommune": "88146", - "libelleAcheminement": "DOMJULIEN", - "nomCommune": "DOMJULIEN" + "codePostal": "93290", + "codeCommune": "93073", + "libelleAcheminement": "TREMBLAY EN FRANCE", + "nomCommune": "TREMBLAY EN FRANCE" }, { - "codePostal": "88170", - "codeCommune": "88150", - "libelleAcheminement": "DOMMARTIN SUR VRAINE", - "nomCommune": "DOMMARTIN SUR VRAINE" + "codePostal": "89200", + "codeCommune": "89232", + "libelleAcheminement": "LUCY LE BOIS", + "nomCommune": "LUCY LE BOIS" }, { - "codePostal": "88650", - "codeCommune": "88159", - "libelleAcheminement": "ENTRE DEUX EAUX", - "nomCommune": "ENTRE DEUX EAUX" + "codePostal": "93410", + "codeCommune": "93074", + "libelleAcheminement": "VAUJOURS", + "nomCommune": "VAUJOURS" }, { - "codePostal": "88260", - "codeCommune": "88161", - "libelleAcheminement": "ESCLES", - "nomCommune": "ESCLES" + "codePostal": "89100", + "codeCommune": "89240", + "libelleAcheminement": "MALAY LE PETIT", + "nomCommune": "MALAY LE PETIT" }, { - "codePostal": "88260", - "codeCommune": "88162", - "libelleAcheminement": "ESLEY", - "nomCommune": "ESLEY" + "codePostal": "94110", + "codeCommune": "94003", + "libelleAcheminement": "ARCUEIL", + "nomCommune": "ARCUEIL" }, { - "codePostal": "88410", - "codeCommune": "88171", - "libelleAcheminement": "FIGNEVELLE", - "nomCommune": "FIGNEVELLE" + "codePostal": "89430", + "codeCommune": "89247", + "libelleAcheminement": "MELISEY", + "nomCommune": "MELISEY" }, { - "codePostal": "88530", - "codeCommune": "88177", - "libelleAcheminement": "LA FORGE", - "nomCommune": "LA FORGE" + "codePostal": "94380", + "codeCommune": "94011", + "libelleAcheminement": "BONNEUIL SUR MARNE", + "nomCommune": "BONNEUIL SUR MARNE" }, { - "codePostal": "88390", - "codeCommune": "88178", - "libelleAcheminement": "LES FORGES", - "nomCommune": "LES FORGES" + "codePostal": "89190", + "codeCommune": "89261", + "libelleAcheminement": "MOLINONS", + "nomCommune": "MOLINONS" }, { - "codePostal": "88630", - "codeCommune": "88183", - "libelleAcheminement": "FREBECOURT", - "nomCommune": "FREBECOURT" + "codePostal": "94500", + "codeCommune": "94017", + "libelleAcheminement": "CHAMPIGNY SUR MARNE", + "nomCommune": "CHAMPIGNY SUR MARNE" }, { - "codePostal": "88500", - "codeCommune": "88185", - "libelleAcheminement": "FRENELLE LA GRANDE", - "nomCommune": "FRENELLE LA GRANDE" + "codePostal": "89700", + "codeCommune": "89262", + "libelleAcheminement": "MOLOSMES", + "nomCommune": "MOLOSMES" }, { - "codePostal": "88500", - "codeCommune": "88186", - "libelleAcheminement": "FRENELLE LA PETITE", - "nomCommune": "FRENELLE LA PETITE" + "codePostal": "94000", + "codeCommune": "94028", + "libelleAcheminement": "CRETEIL", + "nomCommune": "CRETEIL" }, { - "codePostal": "88120", - "codeCommune": "88197", - "libelleAcheminement": "GERBAMONT", - "nomCommune": "GERBAMONT" + "codePostal": "89130", + "codeCommune": "89272", + "libelleAcheminement": "MOULINS SUR OUANNE", + "nomCommune": "MOULINS SUR OUANNE" }, { - "codePostal": "88390", - "codeCommune": "88200", - "libelleAcheminement": "GIGNEY", - "nomCommune": "GIGNEY" + "codePostal": "94420", + "codeCommune": "94059", + "libelleAcheminement": "LE PLESSIS TREVISE", + "nomCommune": "LE PLESSIS TREVISE" }, { - "codePostal": "88500", - "codeCommune": "88202", - "libelleAcheminement": "GIRCOURT LES VIEVILLE", - "nomCommune": "GIRCOURT LES VIEVILLE" + "codePostal": "89570", + "codeCommune": "89276", + "libelleAcheminement": "NEUVY SAUTOUR", + "nomCommune": "NEUVY SAUTOUR" }, { - "codePostal": "88170", - "codeCommune": "88206", - "libelleAcheminement": "GIRONCOURT SUR VRAINE", - "nomCommune": "GIRONCOURT SUR VRAINE" + "codePostal": "94370", + "codeCommune": "94071", + "libelleAcheminement": "SUCY EN BRIE", + "nomCommune": "SUCY EN BRIE" }, { - "codePostal": "88410", - "codeCommune": "88208", - "libelleAcheminement": "GODONCOURT", - "nomCommune": "GODONCOURT" + "codePostal": "89310", + "codeCommune": "89277", + "libelleAcheminement": "NITRY", + "nomCommune": "NITRY" }, { - "codePostal": "88350", - "codeCommune": "88212", - "libelleAcheminement": "GRAND", - "nomCommune": "GRAND" + "codePostal": "94290", + "codeCommune": "94077", + "libelleAcheminement": "VILLENEUVE LE ROI", + "nomCommune": "VILLENEUVE LE ROI" }, { - "codePostal": "88600", - "codeCommune": "88216", - "libelleAcheminement": "GRANDVILLERS", - "nomCommune": "GRANDVILLERS" + "codePostal": "89560", + "codeCommune": "89283", + "libelleAcheminement": "OUANNE", + "nomCommune": "OUANNE" }, { - "codePostal": "88640", - "codeCommune": "88218", - "libelleAcheminement": "GRANGES AUMONTZEY", - "nomCommune": "GRANGES AUMONTZEY" + "codePostal": "94350", + "codeCommune": "94079", + "libelleAcheminement": "VILLIERS SUR MARNE", + "nomCommune": "VILLIERS SUR MARNE" }, { - "codePostal": "88330", - "codeCommune": "88228", - "libelleAcheminement": "HAILLAINVILLE", - "nomCommune": "HAILLAINVILLE" + "codePostal": "89140", + "codeCommune": "89285", + "libelleAcheminement": "PAILLY", + "nomCommune": "PAILLY" }, { - "codePostal": "88130", - "codeCommune": "88239", - "libelleAcheminement": "HERGUGNEY", - "nomCommune": "HERGUGNEY" + "codePostal": "95420", + "codeCommune": "95011", + "libelleAcheminement": "AMBLEVILLE", + "nomCommune": "AMBLEVILLE" }, { - "codePostal": "88500", - "codeCommune": "88257", - "libelleAcheminement": "JUVAINCOURT", - "nomCommune": "JUVAINCOURT" + "codePostal": "89390", + "codeCommune": "89296", + "libelleAcheminement": "PERRIGNY SUR ARMANCON", + "nomCommune": "PERRIGNY SUR ARMANCON" }, { - "codePostal": "88130", - "codeCommune": "88260", - "libelleAcheminement": "LANGLEY", - "nomCommune": "LANGLEY" + "codePostal": "95270", + "codeCommune": "95026", + "libelleAcheminement": "ASNIERES SUR OISE", + "nomCommune": "ASNIERES SUR OISE" }, { - "codePostal": "88490", - "codeCommune": "88268", - "libelleAcheminement": "LESSEUX", - "nomCommune": "LESSEUX" + "codePostal": "89420", + "codeCommune": "89300", + "libelleAcheminement": "PISY", + "nomCommune": "PISY" }, { - "codePostal": "88000", - "codeCommune": "88273", - "libelleAcheminement": "LONGCHAMP", - "nomCommune": "LONGCHAMP" + "codePostal": "95450", + "codeCommune": "95040", + "libelleAcheminement": "AVERNES", + "nomCommune": "AVERNES" }, { - "codePostal": "88170", - "codeCommune": "88274", - "libelleAcheminement": "LONGCHAMP SOUS CHATENOIS", - "nomCommune": "LONGCHAMP SOUS CHATENOIS" + "codePostal": "89290", + "codeCommune": "89319", + "libelleAcheminement": "QUENNE", + "nomCommune": "QUENNE" }, { - "codePostal": "88300", - "codeCommune": "88290", - "libelleAcheminement": "MARTIGNY LES GERBONVAUX", - "nomCommune": "MARTIGNY LES GERBONVAUX" + "codePostal": "95260", + "codeCommune": "95052", + "libelleAcheminement": "BEAUMONT SUR OISE", + "nomCommune": "BEAUMONT SUR OISE" }, { - "codePostal": "88160", - "codeCommune": "88302", - "libelleAcheminement": "LE MENIL", - "nomCommune": "LE MENIL" + "codePostal": "89100", + "codeCommune": "89326", + "libelleAcheminement": "ROSOY", + "nomCommune": "ROSOY" }, { - "codePostal": "88240", - "codeCommune": "88311", - "libelleAcheminement": "MONTMOTIER", - "nomCommune": "MONTMOTIER" + "codePostal": "95750", + "codeCommune": "95054", + "libelleAcheminement": "LE BELLAY EN VEXIN", + "nomCommune": "LE BELLAY EN VEXIN" }, { - "codePostal": "88330", - "codeCommune": "88313", - "libelleAcheminement": "MORIVILLE", - "nomCommune": "MORIVILLE" + "codePostal": "89340", + "codeCommune": "89332", + "libelleAcheminement": "ST AGNAN", + "nomCommune": "ST AGNAN" }, { - "codePostal": "88600", - "codeCommune": "88315", - "libelleAcheminement": "MORTAGNE", - "nomCommune": "MORTAGNE" + "codePostal": "95810", + "codeCommune": "95059", + "libelleAcheminement": "BERVILLE", + "nomCommune": "BERVILLE" }, { - "codePostal": "88210", - "codeCommune": "88317", - "libelleAcheminement": "MOUSSEY", - "nomCommune": "MOUSSEY" + "codePostal": "89630", + "codeCommune": "89336", + "libelleAcheminement": "ST BRANCHER", + "nomCommune": "ST BRANCHER" }, { - "codePostal": "88600", - "codeCommune": "88322", - "libelleAcheminement": "LA NEUVEVILLE DEVANT LEPANGES", - "nomCommune": "LA NEUVEVILLE DEVANT LEPANGES" + "codePostal": "95720", + "codeCommune": "95094", + "libelleAcheminement": "BOUQUEVAL", + "nomCommune": "BOUQUEVAL" }, { - "codePostal": "88440", - "codeCommune": "88327", - "libelleAcheminement": "NOMEXY", - "nomCommune": "NOMEXY" + "codePostal": "89100", + "codeCommune": "89338", + "libelleAcheminement": "ST CLEMENT", + "nomCommune": "ST CLEMENT" }, { - "codePostal": "88600", - "codeCommune": "88331", - "libelleAcheminement": "NONZEVILLE", - "nomCommune": "NONZEVILLE" + "codePostal": "95820", + "codeCommune": "95116", + "libelleAcheminement": "BRUYERES SUR OISE", + "nomCommune": "BRUYERES SUR OISE" }, { - "codePostal": "88500", - "codeCommune": "88335", - "libelleAcheminement": "OFFROICOURT", - "nomCommune": "OFFROICOURT" + "codePostal": "89000", + "codeCommune": "89346", + "libelleAcheminement": "ST GEORGES SUR BAULCHE", + "nomCommune": "ST GEORGES SUR BAULCHE" }, { - "codePostal": "88370", - "codeCommune": "88351", - "libelleAcheminement": "PLOMBIERES LES BAINS", - "nomCommune": "PLOMBIERES LES BAINS" + "codePostal": "95800", + "codeCommune": "95127", + "libelleAcheminement": "CERGY", + "nomCommune": "CERGY" }, { - "codePostal": "88260", - "codeCommune": "88353", - "libelleAcheminement": "PONT LES BONFAYS", - "nomCommune": "PONT LES BONFAYS" + "codePostal": "89630", + "codeCommune": "89347", + "libelleAcheminement": "ST GERMAIN DES CHAMPS", + "nomCommune": "ST GERMAIN DES CHAMPS" }, { - "codePostal": "88170", - "codeCommune": "88366", - "libelleAcheminement": "RAINVILLE", - "nomCommune": "RAINVILLE" + "codePostal": "95710", + "codeCommune": "95150", + "libelleAcheminement": "CHAUSSY", + "nomCommune": "CHAUSSY" }, { - "codePostal": "88160", - "codeCommune": "88369", - "libelleAcheminement": "RAMONCHAMP", - "nomCommune": "RAMONCHAMP" + "codePostal": "89330", + "codeCommune": "89348", + "libelleAcheminement": "ST JULIEN DU SAULT", + "nomCommune": "ST JULIEN DU SAULT" }, { - "codePostal": "88110", - "codeCommune": "88372", - "libelleAcheminement": "RAON L ETAPE", - "nomCommune": "RAON L ETAPE" + "codePostal": "95560", + "codeCommune": "95151", + "libelleAcheminement": "CHAUVRY", + "nomCommune": "CHAUVRY" }, { - "codePostal": "88110", - "codeCommune": "88372", - "libelleAcheminement": "RAON L ETAPE", - "nomCommune": "RAON L ETAPE" + "codePostal": "89100", + "codeCommune": "89373", + "libelleAcheminement": "SALIGNY", + "nomCommune": "SALIGNY" }, { - "codePostal": "88100", - "codeCommune": "88386", - "libelleAcheminement": "REMOMEIX", - "nomCommune": "REMOMEIX" + "codePostal": "95380", + "codeCommune": "95154", + "libelleAcheminement": "CHENNEVIERES LES LOUVRES", + "nomCommune": "CHENNEVIERES LES LOUVRES" }, { - "codePostal": "88500", - "codeCommune": "88389", - "libelleAcheminement": "REPEL", - "nomCommune": "REPEL" + "codePostal": "89200", + "codeCommune": "89378", + "libelleAcheminement": "SAUVIGNY LE BOIS", + "nomCommune": "SAUVIGNY LE BOIS" }, { - "codePostal": "88700", - "codeCommune": "88395", - "libelleAcheminement": "ROMONT", - "nomCommune": "ROMONT" + "codePostal": "95450", + "codeCommune": "95170", + "libelleAcheminement": "CONDECOURT", + "nomCommune": "CONDECOURT" }, { - "codePostal": "88700", - "codeCommune": "88402", - "libelleAcheminement": "ROVILLE AUX CHENES", - "nomCommune": "ROVILLE AUX CHENES" + "codePostal": "89420", + "codeCommune": "89379", + "libelleAcheminement": "SAVIGNY EN TERRE PLAINE", + "nomCommune": "SAVIGNY EN TERRE PLAINE" }, { - "codePostal": "88320", - "codeCommune": "88404", - "libelleAcheminement": "ROZIERES SUR MOUZON", - "nomCommune": "ROZIERES SUR MOUZON" + "codePostal": "95650", + "codeCommune": "95181", + "libelleAcheminement": "COURCELLES SUR VIOSNE", + "nomCommune": "COURCELLES SUR VIOSNE" }, { - "codePostal": "88130", - "codeCommune": "88406", - "libelleAcheminement": "RUGNEY", - "nomCommune": "RUGNEY" + "codePostal": "89116", + "codeCommune": "89388", + "libelleAcheminement": "SEPEAUX ST ROMAIN", + "nomCommune": "SEPEAUX ST ROMAIN" }, { - "codePostal": "88260", - "codeCommune": "88411", - "libelleAcheminement": "ST BASLEMONT", - "nomCommune": "ST BASLEMONT" + "codePostal": "95380", + "codeCommune": "95212", + "libelleAcheminement": "EPIAIS LES LOUVRES", + "nomCommune": "EPIAIS LES LOUVRES" }, { - "codePostal": "88100", - "codeCommune": "88413", - "libelleAcheminement": "ST DIE DES VOSGES", - "nomCommune": "ST DIE DES VOSGES" + "codePostal": "89700", + "codeCommune": "89393", + "libelleAcheminement": "SERRIGNY", + "nomCommune": "SERRIGNY" }, { - "codePostal": "88700", - "codeCommune": "88416", - "libelleAcheminement": "ST GENEST", - "nomCommune": "ST GENEST" + "codePostal": "95120", + "codeCommune": "95219", + "libelleAcheminement": "ERMONT", + "nomCommune": "ERMONT" }, { - "codePostal": "88700", - "codeCommune": "88417", - "libelleAcheminement": "ST GORGON", - "nomCommune": "ST GORGON" + "codePostal": "89560", + "codeCommune": "89405", + "libelleAcheminement": "LES HAUTS DE FORTERRE", + "nomCommune": "LES HAUTS DE FORTERRE" }, { - "codePostal": "88700", - "codeCommune": "88418", - "libelleAcheminement": "STE HELENE", - "nomCommune": "STE HELENE" + "codePostal": "95450", + "codeCommune": "95253", + "libelleAcheminement": "FREMAINVILLE", + "nomCommune": "FREMAINVILLE" }, { - "codePostal": "88410", - "codeCommune": "88421", - "libelleAcheminement": "ST JULIEN", - "nomCommune": "ST JULIEN" + "codePostal": "89420", + "codeCommune": "89406", + "libelleAcheminement": "TALCY", + "nomCommune": "TALCY" }, { - "codePostal": "88470", - "codeCommune": "88428", - "libelleAcheminement": "ST MICHEL SUR MEURTHE", - "nomCommune": "ST MICHEL SUR MEURTHE" + "codePostal": "95530", + "codeCommune": "95257", + "libelleAcheminement": "LA FRETTE SUR SEINE", + "nomCommune": "LA FRETTE SUR SEINE" }, { - "codePostal": "88500", - "codeCommune": "88433", - "libelleAcheminement": "ST PRANCHER", - "nomCommune": "ST PRANCHER" + "codePostal": "89260", + "codeCommune": "89414", + "libelleAcheminement": "THORIGNY SUR OREUSE", + "nomCommune": "THORIGNY SUR OREUSE" }, { - "codePostal": "88270", - "codeCommune": "88437", - "libelleAcheminement": "ST VALLIER", - "nomCommune": "ST VALLIER" + "codePostal": "95690", + "codeCommune": "95258", + "libelleAcheminement": "FROUVILLE", + "nomCommune": "FROUVILLE" }, { - "codePostal": "88260", - "codeCommune": "88441", - "libelleAcheminement": "SANS VALLOIS", - "nomCommune": "SANS VALLOIS" + "codePostal": "89144", + "codeCommune": "89430", + "libelleAcheminement": "VARENNES", + "nomCommune": "VARENNES" }, { - "codePostal": "88580", - "codeCommune": "88445", - "libelleAcheminement": "SAULCY SUR MEURTHE", - "nomCommune": "SAULCY SUR MEURTHE" + "codePostal": "95650", + "codeCommune": "95271", + "libelleAcheminement": "GENICOURT", + "nomCommune": "GENICOURT" }, { - "codePostal": "88320", - "codeCommune": "88450", - "libelleAcheminement": "SENAIDE", - "nomCommune": "SENAIDE" + "codePostal": "89420", + "codeCommune": "89431", + "libelleAcheminement": "VASSY SOUS PISY", + "nomCommune": "VASSY SOUS PISY" }, { - "codePostal": "88210", - "codeCommune": "88451", - "libelleAcheminement": "SENONES", - "nomCommune": "SENONES" + "codePostal": "95450", + "codeCommune": "95282", + "libelleAcheminement": "GOUZANGREZ", + "nomCommune": "GOUZANGREZ" }, { - "codePostal": "88630", - "codeCommune": "88453", - "libelleAcheminement": "SERAUMONT", - "nomCommune": "SERAUMONT" + "codePostal": "89270", + "codeCommune": "89441", + "libelleAcheminement": "VERMENTON", + "nomCommune": "VERMENTON" }, { - "codePostal": "88320", - "codeCommune": "88455", - "libelleAcheminement": "SERECOURT", - "nomCommune": "SERECOURT" + "codePostal": "95640", + "codeCommune": "95303", + "libelleAcheminement": "LE HEAULME", + "nomCommune": "LE HEAULME" }, { - "codePostal": "88320", - "codeCommune": "88456", - "libelleAcheminement": "SEROCOURT", - "nomCommune": "SEROCOURT" + "codePostal": "89700", + "codeCommune": "89447", + "libelleAcheminement": "VEZINNES", + "nomCommune": "VEZINNES" }, { - "codePostal": "88300", - "codeCommune": "88474", - "libelleAcheminement": "TILLEUX", - "nomCommune": "TILLEUX" + "codePostal": "95850", + "codeCommune": "95316", + "libelleAcheminement": "JAGNY SOUS BOIS", + "nomCommune": "JAGNY SOUS BOIS" }, { - "codePostal": "88320", - "codeCommune": "88475", - "libelleAcheminement": "TOLLAINCOURT", - "nomCommune": "TOLLAINCOURT" + "codePostal": "89150", + "codeCommune": "89450", + "libelleAcheminement": "VILLEBOUGIS", + "nomCommune": "VILLEBOUGIS" }, { - "codePostal": "88240", - "codeCommune": "88479", - "libelleAcheminement": "TREMONZEY", - "nomCommune": "TREMONZEY" + "codePostal": "95180", + "codeCommune": "95388", + "libelleAcheminement": "MENUCOURT", + "nomCommune": "MENUCOURT" }, { - "codePostal": "88120", - "codeCommune": "88486", - "libelleAcheminement": "VAGNEY", - "nomCommune": "VAGNEY" + "codePostal": "89320", + "codeCommune": "89451", + "libelleAcheminement": "VILLECHETIVE", + "nomCommune": "VILLECHETIVE" }, { - "codePostal": "88270", - "codeCommune": "88499", - "libelleAcheminement": "VELOTTE ET TATIGNECOURT", - "nomCommune": "VELOTTE ET TATIGNECOURT" + "codePostal": "95650", + "codeCommune": "95422", + "libelleAcheminement": "MONTGEROULT", + "nomCommune": "MONTGEROULT" }, { - "codePostal": "88500", - "codeCommune": "88507", - "libelleAcheminement": "VILLERS", - "nomCommune": "VILLERS" + "codePostal": "89150", + "codeCommune": "89459", + "libelleAcheminement": "VILLENEUVE LA DONDAGRE", + "nomCommune": "VILLENEUVE LA DONDAGRE" }, { - "codePostal": "88600", - "codeCommune": "88512", - "libelleAcheminement": "VIMENIL", - "nomCommune": "VIMENIL" + "codePostal": "95260", + "codeCommune": "95436", + "libelleAcheminement": "MOURS", + "nomCommune": "MOURS" }, { - "codePostal": "88260", - "codeCommune": "88517", - "libelleAcheminement": "VIVIERS LE GRAS", - "nomCommune": "VIVIERS LE GRAS" + "codePostal": "89100", + "codeCommune": "89466", + "libelleAcheminement": "VILLEROY", + "nomCommune": "VILLEROY" }, { - "codePostal": "88500", - "codeCommune": "88525", - "libelleAcheminement": "VROVILLE", - "nomCommune": "VROVILLE" + "codePostal": "95590", + "codeCommune": "95452", + "libelleAcheminement": "NOINTEL", + "nomCommune": "NOINTEL" }, { - "codePostal": "89800", - "codeCommune": "89002", - "libelleAcheminement": "AIGREMONT", - "nomCommune": "AIGREMONT" + "codePostal": "89260", + "codeCommune": "89469", + "libelleAcheminement": "PERCENEIGE", + "nomCommune": "PERCENEIGE" }, { - "codePostal": "89160", - "codeCommune": "89005", - "libelleAcheminement": "ANCY LE FRANC", - "nomCommune": "ANCY LE FRANC" + "codePostal": "95340", + "codeCommune": "95487", + "libelleAcheminement": "PERSAN", + "nomCommune": "PERSAN" }, { - "codePostal": "89380", - "codeCommune": "89013", - "libelleAcheminement": "APPOIGNY", - "nomCommune": "APPOIGNY" + "codePostal": "89260", + "codeCommune": "89469", + "libelleAcheminement": "PERCENEIGE", + "nomCommune": "PERCENEIGE" }, { - "codePostal": "89500", - "codeCommune": "89018", - "libelleAcheminement": "ARMEAU", - "nomCommune": "ARMEAU" + "codePostal": "95480", + "codeCommune": "95488", + "libelleAcheminement": "PIERRELAYE", + "nomCommune": "PIERRELAYE" }, { - "codePostal": "89660", - "codeCommune": "89020", - "libelleAcheminement": "ASNIERES SOUS BOIS", - "nomCommune": "ASNIERES SOUS BOIS" + "codePostal": "89140", + "codeCommune": "89480", + "libelleAcheminement": "VINNEUF", + "nomCommune": "VINNEUF" }, { - "codePostal": "89290", - "codeCommune": "89023", - "libelleAcheminement": "AUGY", - "nomCommune": "AUGY" + "codePostal": "95270", + "codeCommune": "95493", + "libelleAcheminement": "LE PLESSIS LUZARCHES", + "nomCommune": "LE PLESSIS LUZARCHES" }, { - "codePostal": "89430", - "codeCommune": "89028", - "libelleAcheminement": "BAON", - "nomCommune": "BAON" + "codePostal": "89260", + "codeCommune": "89483", + "libelleAcheminement": "VOISINES", + "nomCommune": "VOISINES" }, { - "codePostal": "89250", - "codeCommune": "89031", - "libelleAcheminement": "BEAUMONT", - "nomCommune": "BEAUMONT" + "codePostal": "95000", + "codeCommune": "95500", + "libelleAcheminement": "PONTOISE", + "nomCommune": "PONTOISE" }, { - "codePostal": "89360", - "codeCommune": "89038", - "libelleAcheminement": "BERNOUIL", - "nomCommune": "BERNOUIL" + "codePostal": "90400", + "codeCommune": "90001", + "libelleAcheminement": "ANDELNANS", + "nomCommune": "ANDELNANS" }, { - "codePostal": "89270", - "codeCommune": "89040", - "libelleAcheminement": "BESSY SUR CURE", - "nomCommune": "BESSY SUR CURE" + "codePostal": "95420", + "codeCommune": "95554", + "libelleAcheminement": "ST GERVAIS", + "nomCommune": "ST GERVAIS" }, { - "codePostal": "89440", - "codeCommune": "89043", - "libelleAcheminement": "BLACY", - "nomCommune": "BLACY" + "codePostal": "90000", + "codeCommune": "90010", + "libelleAcheminement": "BELFORT", + "nomCommune": "BELFORT" }, { - "codePostal": "89400", - "codeCommune": "89056", - "libelleAcheminement": "BRION", - "nomCommune": "BRION" + "codePostal": "95110", + "codeCommune": "95582", + "libelleAcheminement": "SANNOIS", + "nomCommune": "SANNOIS" }, { - "codePostal": "89800", - "codeCommune": "89068", - "libelleAcheminement": "CHABLIS", - "nomCommune": "CHABLIS" + "codePostal": "90400", + "codeCommune": "90011", + "libelleAcheminement": "BERMONT", + "nomCommune": "BERMONT" }, { - "codePostal": "89800", - "codeCommune": "89068", - "libelleAcheminement": "CHABLIS", - "nomCommune": "CHABLIS" + "codePostal": "95500", + "codeCommune": "95612", + "libelleAcheminement": "LE THILLAY", + "nomCommune": "LE THILLAY" }, { - "codePostal": "89350", - "codeCommune": "89073", - "libelleAcheminement": "CHAMPIGNELLES", - "nomCommune": "CHAMPIGNELLES" + "codePostal": "90100", + "codeCommune": "90027", + "libelleAcheminement": "COURCELLES", + "nomCommune": "COURCELLES" }, { - "codePostal": "89300", - "codeCommune": "89075", - "libelleAcheminement": "CHAMPLAY", - "nomCommune": "CHAMPLAY" + "codePostal": "95490", + "codeCommune": "95637", + "libelleAcheminement": "VAUREAL", + "nomCommune": "VAUREAL" }, { - "codePostal": "89210", - "codeCommune": "89076", - "libelleAcheminement": "CHAMPLOST", - "nomCommune": "CHAMPLOST" + "codePostal": "90100", + "codeCommune": "90043", + "libelleAcheminement": "FAVEROIS", + "nomCommune": "FAVEROIS" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "95400", + "codeCommune": "95680", + "libelleAcheminement": "VILLIERS LE BEL", + "nomCommune": "VILLIERS LE BEL" }, { - "codePostal": "89160", - "codeCommune": "89087", - "libelleAcheminement": "CHASSIGNELLES", - "nomCommune": "CHASSIGNELLES" + "codePostal": "90110", + "codeCommune": "90044", + "libelleAcheminement": "FELON", + "nomCommune": "FELON" }, { - "codePostal": "89110", - "codeCommune": "89088", - "libelleAcheminement": "CHASSY", - "nomCommune": "CHASSY" + "codePostal": "97100", + "codeCommune": "97105", + "libelleAcheminement": "BASSE TERRE", + "nomCommune": "BASSE TERRE" }, { - "codePostal": "89630", - "codeCommune": "89089", - "libelleAcheminement": "CHASTELLUX SUR CURE", - "nomCommune": "CHASTELLUX SUR CURE" + "codePostal": "90150", + "codeCommune": "90047", + "libelleAcheminement": "FONTAINE", + "nomCommune": "FONTAINE" }, { - "codePostal": "89800", - "codeCommune": "89104", - "libelleAcheminement": "CHICHEE", - "nomCommune": "CHICHEE" + "codePostal": "97130", + "codeCommune": "97107", + "libelleAcheminement": "CAPESTERRE BELLE EAU", + "nomCommune": "CAPESTERRE BELLE EAU" }, { - "codePostal": "89530", - "codeCommune": "89108", - "libelleAcheminement": "CHITRY", - "nomCommune": "CHITRY" + "codePostal": "90200", + "codeCommune": "90052", + "libelleAcheminement": "GIROMAGNY", + "nomCommune": "GIROMAGNY" }, { - "codePostal": "89190", - "codeCommune": "89111", - "libelleAcheminement": "LES CLERIMOIS", - "nomCommune": "LES CLERIMOIS" + "codePostal": "97113", + "codeCommune": "97109", + "libelleAcheminement": "GOURBEYRE", + "nomCommune": "GOURBEYRE" }, { - "codePostal": "89700", - "codeCommune": "89112", - "libelleAcheminement": "COLLAN", - "nomCommune": "COLLAN" + "codePostal": "90600", + "codeCommune": "90053", + "libelleAcheminement": "GRANDVILLARS", + "nomCommune": "GRANDVILLARS" }, { - "codePostal": "89580", - "codeCommune": "89118", - "libelleAcheminement": "COULANGES LA VINEUSE", - "nomCommune": "COULANGES LA VINEUSE" + "codePostal": "97126", + "codeCommune": "97111", + "libelleAcheminement": "DESHAIES", + "nomCommune": "DESHAIES" }, { - "codePostal": "89560", - "codeCommune": "89125", - "libelleAcheminement": "COURSON LES CARRIERES", - "nomCommune": "COURSON LES CARRIERES" + "codePostal": "90100", + "codeCommune": "90056", + "libelleAcheminement": "JONCHEREY", + "nomCommune": "JONCHEREY" }, { - "codePostal": "89460", - "codeCommune": "89130", - "libelleAcheminement": "DEUX RIVIERES", - "nomCommune": "DEUX RIVIERES" + "codePostal": "97170", + "codeCommune": "97118", + "libelleAcheminement": "PETIT BOURG", + "nomCommune": "PETIT BOURG" }, { - "codePostal": "89116", - "codeCommune": "89133", - "libelleAcheminement": "CUDOT", - "nomCommune": "CUDOT" + "codePostal": "90200", + "codeCommune": "90065", + "libelleAcheminement": "LEPUIX", + "nomCommune": "LEPUIX" }, { - "codePostal": "89500", - "codeCommune": "89142", - "libelleAcheminement": "DIXMONT", - "nomCommune": "DIXMONT" + "codePostal": "97115", + "codeCommune": "97129", + "libelleAcheminement": "STE ROSE", + "nomCommune": "STE ROSE" }, { - "codePostal": "89240", - "codeCommune": "89150", - "libelleAcheminement": "EGLENY", - "nomCommune": "EGLENY" + "codePostal": "90130", + "codeCommune": "90071", + "libelleAcheminement": "MONTREUX CHATEAU", + "nomCommune": "MONTREUX CHATEAU" }, { - "codePostal": "89500", - "codeCommune": "89151", - "libelleAcheminement": "EGRISELLES LE BOCAGE", - "nomCommune": "EGRISELLES LE BOCAGE" + "codePostal": "97136", + "codeCommune": "97130", + "libelleAcheminement": "TERRE DE BAS", + "nomCommune": "TERRE DE BAS" }, { - "codePostal": "89200", - "codeCommune": "89159", - "libelleAcheminement": "ETAULE", - "nomCommune": "ETAULE" + "codePostal": "90340", + "codeCommune": "90074", + "libelleAcheminement": "NOVILLARD", + "nomCommune": "NOVILLARD" }, { - "codePostal": "89310", - "codeCommune": "89161", - "libelleAcheminement": "ETIVEY", - "nomCommune": "ETIVEY" + "codePostal": "97260", + "codeCommune": "97218", + "libelleAcheminement": "LE MORNE ROUGE", + "nomCommune": "LE MORNE ROUGE" }, { - "codePostal": "89520", - "codeCommune": "89179", - "libelleAcheminement": "FONTENOY", - "nomCommune": "FONTENOY" + "codePostal": "90130", + "codeCommune": "90077", + "libelleAcheminement": "PETIT CROIX", + "nomCommune": "PETIT CROIX" }, { - "codePostal": "89320", - "codeCommune": "89181", - "libelleAcheminement": "FOURNAUDIN", - "nomCommune": "FOURNAUDIN" + "codePostal": "97250", + "codeCommune": "97219", + "libelleAcheminement": "LE PRECHEUR", + "nomCommune": "LE PRECHEUR" }, { - "codePostal": "89560", - "codeCommune": "89182", - "libelleAcheminement": "FOURONNES", - "nomCommune": "FOURONNES" + "codePostal": "90360", + "codeCommune": "90078", + "libelleAcheminement": "PETITEFONTAINE", + "nomCommune": "PETITEFONTAINE" }, { - "codePostal": "89310", - "codeCommune": "89183", - "libelleAcheminement": "FRESNES", - "nomCommune": "FRESNES" + "codePostal": "97211", + "codeCommune": "97220", + "libelleAcheminement": "RIVIERE PILOTE", + "nomCommune": "RIVIERE PILOTE" }, { - "codePostal": "89440", - "codeCommune": "89204", - "libelleAcheminement": "L ISLE SUR SEREIN", - "nomCommune": "L ISLE SUR SEREIN" + "codePostal": "90300", + "codeCommune": "90093", + "libelleAcheminement": "SERMAMAGNY", + "nomCommune": "SERMAMAGNY" }, { - "codePostal": "89310", - "codeCommune": "89207", - "libelleAcheminement": "JOUANCY", - "nomCommune": "JOUANCY" + "codePostal": "97231", + "codeCommune": "97222", + "libelleAcheminement": "LE ROBERT", + "nomCommune": "LE ROBERT" }, { - "codePostal": "89150", - "codeCommune": "89209", - "libelleAcheminement": "JOUY", - "nomCommune": "JOUY" + "codePostal": "90400", + "codeCommune": "90097", + "libelleAcheminement": "TREVENANS", + "nomCommune": "TREVENANS" }, { - "codePostal": "89400", - "codeCommune": "89218", - "libelleAcheminement": "LAROCHE ST CYDROINE", - "nomCommune": "LAROCHE ST CYDROINE" + "codePostal": "97220", + "codeCommune": "97230", + "libelleAcheminement": "LA TRINITE", + "nomCommune": "LA TRINITE" }, { - "codePostal": "89200", - "codeCommune": "89232", - "libelleAcheminement": "LUCY LE BOIS", - "nomCommune": "LUCY LE BOIS" + "codePostal": "90150", + "codeCommune": "90100", + "libelleAcheminement": "VAUTHIERMONT", + "nomCommune": "VAUTHIERMONT" }, { - "codePostal": "89200", - "codeCommune": "89235", - "libelleAcheminement": "MAGNY", - "nomCommune": "MAGNY" + "codePostal": "97354", + "codeCommune": "97309", + "libelleAcheminement": "REMIRE MONTJOLY", + "nomCommune": "REMIRE MONTJOLY" }, { - "codePostal": "89800", - "codeCommune": "89242", - "libelleAcheminement": "MALIGNY", - "nomCommune": "MALIGNY" + "codePostal": "91410", + "codeCommune": "91035", + "libelleAcheminement": "AUTHON LA PLAINE", + "nomCommune": "AUTHON LA PLAINE" }, { - "codePostal": "89430", - "codeCommune": "89247", - "libelleAcheminement": "MELISEY", - "nomCommune": "MELISEY" + "codePostal": "97315", + "codeCommune": "97312", + "libelleAcheminement": "SINNAMARY", + "nomCommune": "SINNAMARY" }, { - "codePostal": "89310", - "codeCommune": "89259", - "libelleAcheminement": "MOLAY", - "nomCommune": "MOLAY" + "codePostal": "91580", + "codeCommune": "91038", + "libelleAcheminement": "AUVERS ST GEORGES", + "nomCommune": "AUVERS ST GEORGES" }, { - "codePostal": "89470", - "codeCommune": "89263", - "libelleAcheminement": "MONETEAU", - "nomCommune": "MONETEAU" + "codePostal": "97356", + "codeCommune": "97313", + "libelleAcheminement": "MONTSINERY TONNEGRANDE", + "nomCommune": "MONTSINERY TONNEGRANDE" }, { - "codePostal": "89250", - "codeCommune": "89268", - "libelleAcheminement": "MONT ST SULPICE", - "nomCommune": "MONT ST SULPICE" + "codePostal": "91630", + "codeCommune": "91041", + "libelleAcheminement": "AVRAINVILLE", + "nomCommune": "AVRAINVILLE" }, { - "codePostal": "89560", - "codeCommune": "89270", - "libelleAcheminement": "MOUFFY", - "nomCommune": "MOUFFY" + "codePostal": "97380", + "codeCommune": "97314", + "libelleAcheminement": "OUANARY", + "nomCommune": "OUANARY" }, { - "codePostal": "89130", - "codeCommune": "89272", - "libelleAcheminement": "MOULINS SUR OUANNE", - "nomCommune": "MOULINS SUR OUANNE" + "codePostal": "91570", + "codeCommune": "91064", + "libelleAcheminement": "BIEVRES", + "nomCommune": "BIEVRES" }, { - "codePostal": "89520", - "codeCommune": "89273", - "libelleAcheminement": "MOUTIERS EN PUISAYE", - "nomCommune": "MOUTIERS EN PUISAYE" + "codePostal": "97330", + "codeCommune": "97356", + "libelleAcheminement": "CAMOPI", + "nomCommune": "CAMOPI" }, { - "codePostal": "89310", - "codeCommune": "89277", - "libelleAcheminement": "NITRY", - "nomCommune": "NITRY" + "codePostal": "91800", + "codeCommune": "91097", + "libelleAcheminement": "BOUSSY ST ANTOINE", + "nomCommune": "BOUSSY ST ANTOINE" }, { - "codePostal": "89320", - "codeCommune": "89278", - "libelleAcheminement": "NOE", - "nomCommune": "NOE" + "codePostal": "97427", + "codeCommune": "97404", + "libelleAcheminement": "L ETANG SALE", + "nomCommune": "L ETANG SALE" }, { - "codePostal": "89310", - "codeCommune": "89279", - "libelleAcheminement": "NOYERS", - "nomCommune": "NOYERS" + "codePostal": "91880", + "codeCommune": "91100", + "libelleAcheminement": "BOUVILLE", + "nomCommune": "BOUVILLE" }, { - "codePostal": "89560", - "codeCommune": "89283", - "libelleAcheminement": "OUANNE", - "nomCommune": "OUANNE" + "codePostal": "97427", + "codeCommune": "97404", + "libelleAcheminement": "L ETANG SALE", + "nomCommune": "L ETANG SALE" }, { - "codePostal": "89140", - "codeCommune": "89285", - "libelleAcheminement": "PAILLY", - "nomCommune": "PAILLY" + "codePostal": "91150", + "codeCommune": "91112", + "libelleAcheminement": "BROUY", + "nomCommune": "BROUY" }, { - "codePostal": "89210", - "codeCommune": "89288", - "libelleAcheminement": "PAROY EN OTHE", - "nomCommune": "PAROY EN OTHE" + "codePostal": "97429", + "codeCommune": "97405", + "libelleAcheminement": "PETITE ILE", + "nomCommune": "PETITE ILE" }, { - "codePostal": "89140", - "codeCommune": "89302", - "libelleAcheminement": "PLESSIS ST JEAN", - "nomCommune": "PLESSIS ST JEAN" + "codePostal": "91580", + "codeCommune": "91148", + "libelleAcheminement": "CHAUFFOUR LES ETRECHY", + "nomCommune": "CHAUFFOUR LES ETRECHY" }, { - "codePostal": "89110", - "codeCommune": "89304", - "libelleAcheminement": "POILLY SUR THOLON", - "nomCommune": "POILLY SUR THOLON" + "codePostal": "97431", + "codeCommune": "97406", + "libelleAcheminement": "LA PLAINE DES PALMISTES", + "nomCommune": "LA PLAINE DES PALMISTES" }, { - "codePostal": "89200", - "codeCommune": "89306", - "libelleAcheminement": "PONTAUBERT", - "nomCommune": "PONTAUBERT" + "codePostal": "91720", + "codeCommune": "91184", + "libelleAcheminement": "COURDIMANCHE SUR ESSONNE", + "nomCommune": "COURDIMANCHE SUR ESSONNE" }, { - "codePostal": "89260", - "codeCommune": "89310", - "libelleAcheminement": "LA POSTOLLE", - "nomCommune": "LA POSTOLLE" + "codePostal": "97440", + "codeCommune": "97409", + "libelleAcheminement": "ST ANDRE", + "nomCommune": "ST ANDRE" }, { - "codePostal": "89440", - "codeCommune": "89312", - "libelleAcheminement": "PRECY LE SEC", - "nomCommune": "PRECY LE SEC" + "codePostal": "91490", + "codeCommune": "91195", + "libelleAcheminement": "DANNEMOIS", + "nomCommune": "DANNEMOIS" }, { - "codePostal": "89740", - "codeCommune": "89320", - "libelleAcheminement": "QUINCEROT", - "nomCommune": "QUINCEROT" + "codePostal": "97400", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "89230", - "codeCommune": "89328", - "libelleAcheminement": "ROUVRAY", - "nomCommune": "ROUVRAY" + "codePostal": "91210", + "codeCommune": "91201", + "libelleAcheminement": "DRAVEIL", + "nomCommune": "DRAVEIL" }, { - "codePostal": "89110", - "codeCommune": "89334", - "libelleAcheminement": "LE VAL D OCRE", - "nomCommune": "LE VAL D OCRE" + "codePostal": "97424", + "codeCommune": "97413", + "libelleAcheminement": "ST LEU", + "nomCommune": "ST LEU" }, { - "codePostal": "89300", - "codeCommune": "89335", - "libelleAcheminement": "ST AUBIN SUR YONNE", - "nomCommune": "ST AUBIN SUR YONNE" + "codePostal": "91210", + "codeCommune": "91201", + "libelleAcheminement": "DRAVEIL", + "nomCommune": "DRAVEIL" }, { - "codePostal": "89530", - "codeCommune": "89337", - "libelleAcheminement": "ST BRIS LE VINEUX", - "nomCommune": "ST BRIS LE VINEUX" + "codePostal": "97424", + "codeCommune": "97413", + "libelleAcheminement": "ST LEU", + "nomCommune": "ST LEU" }, { - "codePostal": "89600", - "codeCommune": "89345", - "libelleAcheminement": "ST FLORENTIN", - "nomCommune": "ST FLORENTIN" + "codePostal": "91540", + "codeCommune": "91204", + "libelleAcheminement": "ECHARCON", + "nomCommune": "ECHARCON" }, { - "codePostal": "89630", - "codeCommune": "89349", - "libelleAcheminement": "ST LEGER VAUBAN", - "nomCommune": "ST LEGER VAUBAN" + "codePostal": "97421", + "codeCommune": "97414", + "libelleAcheminement": "ST LOUIS", + "nomCommune": "ST LOUIS" }, { - "codePostal": "89330", - "codeCommune": "89350", - "libelleAcheminement": "ST LOUP D ORDON", - "nomCommune": "ST LOUP D ORDON" + "codePostal": "91080", + "codeCommune": "91228", + "libelleAcheminement": "EVRY COURCOURONNES", + "nomCommune": "EVRY COURCOURONNES" }, { - "codePostal": "89170", - "codeCommune": "89352", - "libelleAcheminement": "ST MARTIN DES CHAMPS", - "nomCommune": "ST MARTIN DES CHAMPS" + "codePostal": "97421", + "codeCommune": "97414", + "libelleAcheminement": "ST LOUIS", + "nomCommune": "ST LOUIS" }, { - "codePostal": "89330", - "codeCommune": "89353", - "libelleAcheminement": "ST MARTIN D ORDON", - "nomCommune": "ST MARTIN D ORDON" + "codePostal": "91640", + "codeCommune": "91243", + "libelleAcheminement": "FONTENAY LES BRIIS", + "nomCommune": "FONTENAY LES BRIIS" }, { - "codePostal": "89100", - "codeCommune": "89354", - "libelleAcheminement": "ST MARTIN DU TERTRE", - "nomCommune": "ST MARTIN DU TERTRE" + "codePostal": "97422", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "89420", - "codeCommune": "89379", - "libelleAcheminement": "SAVIGNY EN TERRE PLAINE", - "nomCommune": "SAVIGNY EN TERRE PLAINE" + "codePostal": "91410", + "codeCommune": "91247", + "libelleAcheminement": "LA FORET LE ROI", + "nomCommune": "LA FORET LE ROI" }, { - "codePostal": "89560", - "codeCommune": "89383", - "libelleAcheminement": "SEMENTRON", - "nomCommune": "SEMENTRON" + "codePostal": "97435", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "89116", - "codeCommune": "89388", - "libelleAcheminement": "SEPEAUX ST ROMAIN", - "nomCommune": "SEPEAUX ST ROMAIN" + "codePostal": "91190", + "codeCommune": "91272", + "libelleAcheminement": "GIF SUR YVETTE", + "nomCommune": "GIF SUR YVETTE" }, { - "codePostal": "89116", - "codeCommune": "89388", - "libelleAcheminement": "SEPEAUX ST ROMAIN", - "nomCommune": "SEPEAUX ST ROMAIN" + "codePostal": "97438", + "codeCommune": "97418", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "89200", - "codeCommune": "89392", - "libelleAcheminement": "SERMIZELLES", - "nomCommune": "SERMIZELLES" + "codePostal": "91630", + "codeCommune": "91292", + "libelleAcheminement": "GUIBEVILLE", + "nomCommune": "GUIBEVILLE" }, { - "codePostal": "89320", - "codeCommune": "89411", - "libelleAcheminement": "LES VALLEES DE LA VANNE", - "nomCommune": "LES VALLEES DE LA VANNE" + "codePostal": "97438", + "codeCommune": "97418", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "89260", - "codeCommune": "89414", - "libelleAcheminement": "THORIGNY SUR OREUSE", - "nomCommune": "THORIGNY SUR OREUSE" + "codePostal": "91310", + "codeCommune": "91333", + "libelleAcheminement": "LEUVILLE SUR ORGE", + "nomCommune": "LEUVILLE SUR ORGE" }, { - "codePostal": "89520", - "codeCommune": "89420", - "libelleAcheminement": "TREIGNY PERREUSE STE COLOMBE", - "nomCommune": "TREIGNY PERREUSE STE COLOMBE" + "codePostal": "97433", + "codeCommune": "97421", + "libelleAcheminement": "SALAZIE", + "nomCommune": "SALAZIE" }, { - "codePostal": "89520", - "codeCommune": "89420", - "libelleAcheminement": "TREIGNY PERREUSE STE COLOMBE", - "nomCommune": "TREIGNY PERREUSE STE COLOMBE" + "codePostal": "91160", + "codeCommune": "91345", + "libelleAcheminement": "LONGJUMEAU", + "nomCommune": "LONGJUMEAU" }, { - "codePostal": "89430", - "codeCommune": "89422", - "libelleAcheminement": "TRICHEY", - "nomCommune": "TRICHEY" + "codePostal": "97418", + "codeCommune": "97422", + "libelleAcheminement": "LE TAMPON", + "nomCommune": "LE TAMPON" }, { - "codePostal": "89700", - "codeCommune": "89423", - "libelleAcheminement": "TRONCHOY", - "nomCommune": "TRONCHOY" + "codePostal": "91490", + "codeCommune": "91408", + "libelleAcheminement": "MOIGNY SUR ECOLE", + "nomCommune": "MOIGNY SUR ECOLE" }, { - "codePostal": "89570", - "codeCommune": "89425", - "libelleAcheminement": "TURNY", - "nomCommune": "TURNY" + "codePostal": "97625", + "codeCommune": "97609", + "libelleAcheminement": "KANI KELI", + "nomCommune": "KANI KELI" }, { - "codePostal": "89580", - "codeCommune": "89426", - "libelleAcheminement": "VAL DE MERCY", - "nomCommune": "VAL DE MERCY" + "codePostal": "91390", + "codeCommune": "91434", + "libelleAcheminement": "MORSANG SUR ORGE", + "nomCommune": "MORSANG SUR ORGE" }, { - "codePostal": "89200", - "codeCommune": "89433", - "libelleAcheminement": "VAULT DE LUGNY", - "nomCommune": "VAULT DE LUGNY" + "codePostal": "97640", + "codeCommune": "97616", + "libelleAcheminement": "SADA", + "nomCommune": "SADA" }, { - "codePostal": "89600", - "codeCommune": "89439", - "libelleAcheminement": "VERGIGNY", - "nomCommune": "VERGIGNY" + "codePostal": "91750", + "codeCommune": "91441", + "libelleAcheminement": "NAINVILLE LES ROCHES", + "nomCommune": "NAINVILLE LES ROCHES" }, { - "codePostal": "89600", - "codeCommune": "89439", - "libelleAcheminement": "VERGIGNY", - "nomCommune": "VERGIGNY" + "codePostal": "97150", + "codeCommune": "97801", + "libelleAcheminement": "ST MARTIN", + "nomCommune": "ST MARTIN" }, { - "codePostal": "89600", - "codeCommune": "89439", - "libelleAcheminement": "VERGIGNY", - "nomCommune": "VERGIGNY" + "codePostal": "91550", + "codeCommune": "91479", + "libelleAcheminement": "PARAY VIEILLE POSTE", + "nomCommune": "PARAY VIEILLE POSTE" }, { - "codePostal": "89270", - "codeCommune": "89441", - "libelleAcheminement": "VERMENTON", - "nomCommune": "VERMENTON" + "codePostal": "98730", + "codeCommune": "98714", + "libelleAcheminement": "FAANUI", + "nomCommune": "BORA BORA" }, { - "codePostal": "89700", - "codeCommune": "89445", - "libelleAcheminement": "VEZANNES", - "nomCommune": "VEZANNES" + "codePostal": "91720", + "codeCommune": "91507", + "libelleAcheminement": "PRUNAY SUR ESSONNE", + "nomCommune": "PRUNAY SUR ESSONNE" }, { - "codePostal": "89450", - "codeCommune": "89446", - "libelleAcheminement": "VEZELAY", - "nomCommune": "VEZELAY" + "codePostal": "98730", + "codeCommune": "98714", + "libelleAcheminement": "VAITAPE", + "nomCommune": "BORA BORA" }, { - "codePostal": "89340", - "codeCommune": "89449", - "libelleAcheminement": "VILLEBLEVIN", - "nomCommune": "VILLEBLEVIN" + "codePostal": "91150", + "codeCommune": "91526", + "libelleAcheminement": "ROINVILLIERS", + "nomCommune": "ROINVILLIERS" }, { - "codePostal": "89500", - "codeCommune": "89464", - "libelleAcheminement": "VILLENEUVE SUR YONNE", - "nomCommune": "VILLENEUVE SUR YONNE" + "codePostal": "98763", + "codeCommune": "98716", + "libelleAcheminement": "ROTOAVA", + "nomCommune": "FAKARAVA" }, { - "codePostal": "89100", - "codeCommune": "89466", - "libelleAcheminement": "VILLEROY", - "nomCommune": "VILLEROY" + "codePostal": "91410", + "codeCommune": "91546", + "libelleAcheminement": "ST CYR SOUS DOURDAN", + "nomCommune": "ST CYR SOUS DOURDAN" }, { - "codePostal": "89260", - "codeCommune": "89469", - "libelleAcheminement": "PERCENEIGE", - "nomCommune": "PERCENEIGE" + "codePostal": "98764", + "codeCommune": "98716", + "libelleAcheminement": "PAPARARA", + "nomCommune": "FAKARAVA" }, { - "codePostal": "89260", - "codeCommune": "89469", - "libelleAcheminement": "PERCENEIGE", - "nomCommune": "PERCENEIGE" + "codePostal": "91180", + "codeCommune": "91552", + "libelleAcheminement": "ST GERMAIN LES ARPAJON", + "nomCommune": "ST GERMAIN LES ARPAJON" }, { - "codePostal": "89320", - "codeCommune": "89471", - "libelleAcheminement": "VILLIERS LOUIS", - "nomCommune": "VILLIERS LOUIS" + "codePostal": "98755", + "codeCommune": "98719", + "libelleAcheminement": "MANIUI", + "nomCommune": "GAMBIER" }, { - "codePostal": "90400", - "codeCommune": "90001", - "libelleAcheminement": "ANDELNANS", - "nomCommune": "ANDELNANS" + "codePostal": "91940", + "codeCommune": "91560", + "libelleAcheminement": "ST JEAN DE BEAUREGARD", + "nomCommune": "ST JEAN DE BEAUREGARD" }, { - "codePostal": "90200", - "codeCommune": "90006", - "libelleAcheminement": "AUXELLES HAUT", - "nomCommune": "AUXELLES HAUT" + "codePostal": "98755", + "codeCommune": "98719", + "libelleAcheminement": "RIKITEA", + "nomCommune": "GAMBIER" }, { - "codePostal": "90000", - "codeCommune": "90010", - "libelleAcheminement": "BELFORT", - "nomCommune": "BELFORT" + "codePostal": "91530", + "codeCommune": "91568", + "libelleAcheminement": "ST MAURICE MONTCOURONNE", + "nomCommune": "ST MAURICE MONTCOURONNE" }, { - "codePostal": "90400", - "codeCommune": "90011", - "libelleAcheminement": "BERMONT", - "nomCommune": "BERMONT" + "codePostal": "98792", + "codeCommune": "98719", + "libelleAcheminement": "TEMOE", + "nomCommune": "GAMBIER" }, { - "codePostal": "90150", - "codeCommune": "90013", - "libelleAcheminement": "BETHONVILLIERS", - "nomCommune": "BETHONVILLIERS" + "codePostal": "91280", + "codeCommune": "91573", + "libelleAcheminement": "ST PIERRE DU PERRAY", + "nomCommune": "ST PIERRE DU PERRAY" }, { - "codePostal": "90400", - "codeCommune": "90015", - "libelleAcheminement": "BOTANS", - "nomCommune": "BOTANS" + "codePostal": "98790", + "codeCommune": "98720", + "libelleAcheminement": "NENGONENGO", + "nomCommune": "HAO" }, { - "codePostal": "90140", - "codeCommune": "90017", - "libelleAcheminement": "BOUROGNE", - "nomCommune": "BOUROGNE" + "codePostal": "91770", + "codeCommune": "91579", + "libelleAcheminement": "ST VRAIN", + "nomCommune": "ST VRAIN" }, { - "codePostal": "90100", - "codeCommune": "90024", - "libelleAcheminement": "CHAVANATTE", - "nomCommune": "CHAVANATTE" + "codePostal": "98768", + "codeCommune": "98721", + "libelleAcheminement": "TUPAPATI", + "nomCommune": "HIKUERU" }, { - "codePostal": "90150", - "codeCommune": "90031", - "libelleAcheminement": "CUNELIERES", - "nomCommune": "CUNELIERES" + "codePostal": "91810", + "codeCommune": "91648", + "libelleAcheminement": "VERT LE GRAND", + "nomCommune": "VERT LE GRAND" }, { - "codePostal": "90850", - "codeCommune": "90039", - "libelleAcheminement": "ESSERT", - "nomCommune": "ESSERT" + "codePostal": "98741", + "codeCommune": "98723", + "libelleAcheminement": "ATUONA", + "nomCommune": "HIVA OA" }, { - "codePostal": "90170", - "codeCommune": "90041", - "libelleAcheminement": "ETUEFFONT", - "nomCommune": "ETUEFFONT" + "codePostal": "91270", + "codeCommune": "91657", + "libelleAcheminement": "VIGNEUX SUR SEINE", + "nomCommune": "VIGNEUX SUR SEINE" }, { - "codePostal": "90100", - "codeCommune": "90045", - "libelleAcheminement": "FECHE L EGLISE", - "nomCommune": "FECHE L EGLISE" + "codePostal": "98796", + "codeCommune": "98723", + "libelleAcheminement": "MOHOTANI", + "nomCommune": "HIVA OA" }, { - "codePostal": "90100", - "codeCommune": "90046", - "libelleAcheminement": "FLORIMONT", - "nomCommune": "FLORIMONT" + "codePostal": "91190", + "codeCommune": "91679", + "libelleAcheminement": "VILLIERS LE BACLE", + "nomCommune": "VILLIERS LE BACLE" }, { - "codePostal": "90150", - "codeCommune": "90047", - "libelleAcheminement": "FONTAINE", - "nomCommune": "FONTAINE" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "HAAPU", + "nomCommune": "HUAHINE" }, { - "codePostal": "90150", - "codeCommune": "90049", - "libelleAcheminement": "FOUSSEMAGNE", - "nomCommune": "FOUSSEMAGNE" + "codePostal": "91320", + "codeCommune": "91689", + "libelleAcheminement": "WISSOUS", + "nomCommune": "WISSOUS" }, { - "codePostal": "90100", - "codeCommune": "90063", - "libelleAcheminement": "LEBETAIN", - "nomCommune": "LEBETAIN" + "codePostal": "98790", + "codeCommune": "98726", + "libelleAcheminement": "GARUMAOA", + "nomCommune": "MAKEMO" }, { - "codePostal": "90100", - "codeCommune": "90064", - "libelleAcheminement": "LEPUIX NEUF", - "nomCommune": "LEPUIX NEUF" + "codePostal": "91330", + "codeCommune": "91691", + "libelleAcheminement": "YERRES", + "nomCommune": "YERRES" }, { - "codePostal": "90150", - "codeCommune": "90067", - "libelleAcheminement": "MENONCOURT", - "nomCommune": "MENONCOURT" + "codePostal": "98770", + "codeCommune": "98727", + "libelleAcheminement": "TENOKUPARA", + "nomCommune": "MANIHI" }, { - "codePostal": "90120", - "codeCommune": "90072", - "libelleAcheminement": "MORVILLARS", - "nomCommune": "MORVILLARS" + "codePostal": "92270", + "codeCommune": "92009", + "libelleAcheminement": "BOIS COLOMBES", + "nomCommune": "BOIS COLOMBES" }, { - "codePostal": "90160", - "codeCommune": "90076", - "libelleAcheminement": "PEROUSE", - "nomCommune": "PEROUSE" + "codePostal": "98728", + "codeCommune": "98729", + "libelleAcheminement": "HAUMI", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "90150", - "codeCommune": "90080", - "libelleAcheminement": "PHAFFANS", - "nomCommune": "PHAFFANS" + "codePostal": "92100", + "codeCommune": "92012", + "libelleAcheminement": "BOULOGNE BILLANCOURT", + "nomCommune": "BOULOGNE BILLANCOURT" }, { - "codePostal": "90140", - "codeCommune": "90082", - "libelleAcheminement": "AUTRECHENE", - "nomCommune": "AUTRECHENE" + "codePostal": "98728", + "codeCommune": "98729", + "libelleAcheminement": "MAATEA", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "90200", - "codeCommune": "90088", - "libelleAcheminement": "ROUGEGOUTTE", - "nomCommune": "ROUGEGOUTTE" + "codePostal": "92290", + "codeCommune": "92019", + "libelleAcheminement": "CHATENAY MALABRY", + "nomCommune": "CHATENAY MALABRY" }, { - "codePostal": "90110", - "codeCommune": "90091", - "libelleAcheminement": "ST GERMAIN LE CHATELET", - "nomCommune": "ST GERMAIN LE CHATELET" + "codePostal": "98728", + "codeCommune": "98729", + "libelleAcheminement": "MAHAREPA", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "90100", - "codeCommune": "90105", - "libelleAcheminement": "VILLARS LE SEC", - "nomCommune": "VILLARS LE SEC" + "codePostal": "92140", + "codeCommune": "92023", + "libelleAcheminement": "CLAMART", + "nomCommune": "CLAMART" }, { - "codePostal": "91690", - "codeCommune": "91022", - "libelleAcheminement": "ARRANCOURT", - "nomCommune": "ARRANCOURT" + "codePostal": "98728", + "codeCommune": "98729", + "libelleAcheminement": "PAOPAO", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "91870", - "codeCommune": "91081", - "libelleAcheminement": "BOISSY LE SEC", - "nomCommune": "BOISSY LE SEC" + "codePostal": "92140", + "codeCommune": "92023", + "libelleAcheminement": "CLAMART", + "nomCommune": "CLAMART" }, { - "codePostal": "91790", - "codeCommune": "91085", - "libelleAcheminement": "BOISSY SOUS ST YON", - "nomCommune": "BOISSY SOUS ST YON" + "codePostal": "98742", + "codeCommune": "98731", + "libelleAcheminement": "TAIPIVAI", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "91850", - "codeCommune": "91095", - "libelleAcheminement": "BOURAY SUR JUINE", - "nomCommune": "BOURAY SUR JUINE" + "codePostal": "92110", + "codeCommune": "92024", + "libelleAcheminement": "CLICHY", + "nomCommune": "CLICHY" }, { - "codePostal": "91730", - "codeCommune": "91132", - "libelleAcheminement": "CHAMARANDE", - "nomCommune": "CHAMARANDE" + "codePostal": "98742", + "codeCommune": "98731", + "libelleAcheminement": "AAKAPA", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "91150", - "codeCommune": "91137", - "libelleAcheminement": "CHAMPMOTTEUX", - "nomCommune": "CHAMPMOTTEUX" + "codePostal": "92190", + "codeCommune": "92048", + "libelleAcheminement": "MEUDON", + "nomCommune": "MEUDON" }, { - "codePostal": "91410", - "codeCommune": "91145", - "libelleAcheminement": "CHATIGNONVILLE", - "nomCommune": "CHATIGNONVILLE" + "codePostal": "98711", + "codeCommune": "98733", + "libelleAcheminement": "PAEA", + "nomCommune": "PAEA" }, { - "codePostal": "91630", - "codeCommune": "91156", - "libelleAcheminement": "CHEPTAINVILLE", - "nomCommune": "CHEPTAINVILLE" + "codePostal": "92120", + "codeCommune": "92049", + "libelleAcheminement": "MONTROUGE", + "nomCommune": "MONTROUGE" }, { - "codePostal": "91750", - "codeCommune": "91159", - "libelleAcheminement": "CHEVANNES", - "nomCommune": "CHEVANNES" + "codePostal": "98750", + "codeCommune": "98739", + "libelleAcheminement": "RAIRUA", + "nomCommune": "RAIVAVAE" }, { - "codePostal": "91100", - "codeCommune": "91174", - "libelleAcheminement": "CORBEIL ESSONNES", - "nomCommune": "CORBEIL ESSONNES" + "codePostal": "92350", + "codeCommune": "92060", + "libelleAcheminement": "LE PLESSIS ROBINSON", + "nomCommune": "LE PLESSIS ROBINSON" }, { - "codePostal": "91410", - "codeCommune": "91175", - "libelleAcheminement": "CORBREUSE", - "nomCommune": "CORBREUSE" + "codePostal": "98750", + "codeCommune": "98739", + "libelleAcheminement": "ANATONU", + "nomCommune": "RAIVAVAE" }, { - "codePostal": "91860", - "codeCommune": "91215", - "libelleAcheminement": "EPINAY SOUS SENART", - "nomCommune": "EPINAY SOUS SENART" + "codePostal": "92420", + "codeCommune": "92076", + "libelleAcheminement": "VAUCRESSON", + "nomCommune": "VAUCRESSON" }, { - "codePostal": "91000", - "codeCommune": "91228", - "libelleAcheminement": "EVRY COURCOURONNES", - "nomCommune": "EVRY COURCOURONNES" + "codePostal": "98778", + "codeCommune": "98740", + "libelleAcheminement": "TUHERAHERA", + "nomCommune": "RANGIROA" }, { - "codePostal": "91260", - "codeCommune": "91326", - "libelleAcheminement": "JUVISY SUR ORGE", - "nomCommune": "JUVISY SUR ORGE" + "codePostal": "93600", + "codeCommune": "93005", + "libelleAcheminement": "AULNAY SOUS BOIS", + "nomCommune": "AULNAY SOUS BOIS" }, { - "codePostal": "91470", - "codeCommune": "91338", - "libelleAcheminement": "LIMOURS", - "nomCommune": "LIMOURS" + "codePostal": "98752", + "codeCommune": "98743", + "libelleAcheminement": "RIMATARA", + "nomCommune": "RIMATARA" }, { - "codePostal": "91310", - "codeCommune": "91347", - "libelleAcheminement": "LONGPONT SUR ORGE", - "nomCommune": "LONGPONT SUR ORGE" + "codePostal": "93390", + "codeCommune": "93014", + "libelleAcheminement": "CLICHY SOUS BOIS", + "nomCommune": "CLICHY SOUS BOIS" }, { - "codePostal": "91150", - "codeCommune": "91374", - "libelleAcheminement": "MAROLLES EN BEAUCE", - "nomCommune": "MAROLLES EN BEAUCE" + "codePostal": "98795", + "codeCommune": "98743", + "libelleAcheminement": "MARIA ILOTS", + "nomCommune": "RIMATARA" }, { - "codePostal": "91470", - "codeCommune": "91411", - "libelleAcheminement": "LES MOLIERES", - "nomCommune": "LES MOLIERES" + "codePostal": "93120", + "codeCommune": "93027", + "libelleAcheminement": "LA COURNEUVE", + "nomCommune": "LA COURNEUVE" }, { - "codePostal": "91930", - "codeCommune": "91414", - "libelleAcheminement": "MONNERVILLE", - "nomCommune": "MONNERVILLE" + "codePostal": "98733", + "codeCommune": "98745", + "libelleAcheminement": "TAHAA", + "nomCommune": "TAHAA" }, { - "codePostal": "91290", - "codeCommune": "91457", - "libelleAcheminement": "LA NORVILLE", - "nomCommune": "LA NORVILLE" + "codePostal": "93450", + "codeCommune": "93039", + "libelleAcheminement": "L ILE ST DENIS", + "nomCommune": "L ILE ST DENIS" }, { - "codePostal": "91620", - "codeCommune": "91458", - "libelleAcheminement": "NOZAY", - "nomCommune": "NOZAY" + "codePostal": "98733", + "codeCommune": "98745", + "libelleAcheminement": "HIPU", + "nomCommune": "TAHAA" }, { - "codePostal": "91540", - "codeCommune": "91468", - "libelleAcheminement": "ORMOY", - "nomCommune": "ORMOY" + "codePostal": "93370", + "codeCommune": "93047", + "libelleAcheminement": "MONTFERMEIL", + "nomCommune": "MONTFERMEIL" }, { - "codePostal": "91150", - "codeCommune": "91469", - "libelleAcheminement": "ORMOY LA RIVIERE", - "nomCommune": "ORMOY LA RIVIERE" + "codePostal": "98734", + "codeCommune": "98745", + "libelleAcheminement": "POUTORU", + "nomCommune": "TAHAA" }, { - "codePostal": "91120", - "codeCommune": "91477", - "libelleAcheminement": "PALAISEAU", - "nomCommune": "PALAISEAU" + "codePostal": "93360", + "codeCommune": "93049", + "libelleAcheminement": "NEUILLY PLAISANCE", + "nomCommune": "NEUILLY PLAISANCE" }, { - "codePostal": "91220", - "codeCommune": "91494", - "libelleAcheminement": "LE PLESSIS PATE", - "nomCommune": "LE PLESSIS PATE" + "codePostal": "98722", + "codeCommune": "98747", + "libelleAcheminement": "TAUTIRA", + "nomCommune": "TAIARAPU EST" }, { - "codePostal": "91150", - "codeCommune": "91526", - "libelleAcheminement": "ROINVILLIERS", - "nomCommune": "ROINVILLIERS" + "codePostal": "93330", + "codeCommune": "93050", + "libelleAcheminement": "NEUILLY SUR MARNE", + "nomCommune": "NEUILLY SUR MARNE" }, { - "codePostal": "91700", - "codeCommune": "91549", - "libelleAcheminement": "STE GENEVIEVE DES BOIS", - "nomCommune": "STE GENEVIEVE DES BOIS" + "codePostal": "98735", + "codeCommune": "98750", + "libelleAcheminement": "PUOHINE", + "nomCommune": "TAPUTAPUATEA" }, { - "codePostal": "91780", - "codeCommune": "91556", - "libelleAcheminement": "ST HILAIRE", - "nomCommune": "ST HILAIRE" + "codePostal": "93500", + "codeCommune": "93055", + "libelleAcheminement": "PANTIN", + "nomCommune": "PANTIN" }, { - "codePostal": "91940", - "codeCommune": "91560", - "libelleAcheminement": "ST JEAN DE BEAUREGARD", - "nomCommune": "ST JEAN DE BEAUREGARD" + "codePostal": "98783", + "codeCommune": "98751", + "libelleAcheminement": "TUMUKURU", + "nomCommune": "TATAKOTO" }, { - "codePostal": "91240", - "codeCommune": "91570", - "libelleAcheminement": "ST MICHEL SUR ORGE", - "nomCommune": "ST MICHEL SUR ORGE" + "codePostal": "93380", + "codeCommune": "93059", + "libelleAcheminement": "PIERREFITTE SUR SEINE", + "nomCommune": "PIERREFITTE SUR SEINE" }, { - "codePostal": "91840", - "codeCommune": "91599", - "libelleAcheminement": "SOISY SUR ECOLE", - "nomCommune": "SOISY SUR ECOLE" + "codePostal": "98727", + "codeCommune": "98752", + "libelleAcheminement": "PAPEARI", + "nomCommune": "TEVA I UTA" }, { - "codePostal": "91270", - "codeCommune": "91657", - "libelleAcheminement": "VIGNEUX SUR SEINE", - "nomCommune": "VIGNEUX SUR SEINE" + "codePostal": "93230", + "codeCommune": "93063", + "libelleAcheminement": "ROMAINVILLE", + "nomCommune": "ROMAINVILLE" }, { - "codePostal": "91140", - "codeCommune": "91666", - "libelleAcheminement": "VILLEJUST", - "nomCommune": "VILLEJUST" + "codePostal": "98754", + "codeCommune": "98753", + "libelleAcheminement": "MATAURA", + "nomCommune": "TUBUAI" }, { - "codePostal": "91320", - "codeCommune": "91689", - "libelleAcheminement": "WISSOUS", - "nomCommune": "WISSOUS" + "codePostal": "93240", + "codeCommune": "93072", + "libelleAcheminement": "STAINS", + "nomCommune": "STAINS" }, { - "codePostal": "92160", - "codeCommune": "92002", - "libelleAcheminement": "ANTONY", - "nomCommune": "ANTONY" + "codePostal": "98735", + "codeCommune": "98754", + "libelleAcheminement": "TUMARAA", + "nomCommune": "TUMARAA" }, { - "codePostal": "92600", - "codeCommune": "92004", - "libelleAcheminement": "ASNIERES SUR SEINE", - "nomCommune": "ASNIERES SUR SEINE" + "codePostal": "93250", + "codeCommune": "93077", + "libelleAcheminement": "VILLEMOMBLE", + "nomCommune": "VILLEMOMBLE" }, { - "codePostal": "92340", - "codeCommune": "92014", - "libelleAcheminement": "BOURG LA REINE", - "nomCommune": "BOURG LA REINE" + "codePostal": "98735", + "codeCommune": "98754", + "libelleAcheminement": "FETUNA", + "nomCommune": "TUMARAA" }, { - "codePostal": "92700", - "codeCommune": "92025", - "libelleAcheminement": "COLOMBES", - "nomCommune": "COLOMBES" + "codePostal": "93420", + "codeCommune": "93078", + "libelleAcheminement": "VILLEPINTE", + "nomCommune": "VILLEPINTE" }, { - "codePostal": "92260", - "codeCommune": "92032", - "libelleAcheminement": "FONTENAY AUX ROSES", - "nomCommune": "FONTENAY AUX ROSES" + "codePostal": "98745", + "codeCommune": "98757", + "libelleAcheminement": "HAKATAO", + "nomCommune": "UA POU" }, { - "codePostal": "92380", - "codeCommune": "92033", - "libelleAcheminement": "GARCHES", - "nomCommune": "GARCHES" + "codePostal": "94500", + "codeCommune": "94017", + "libelleAcheminement": "CHAMPIGNY SUR MARNE", + "nomCommune": "CHAMPIGNY SUR MARNE" }, { - "codePostal": "92800", - "codeCommune": "92062", - "libelleAcheminement": "PUTEAUX", - "nomCommune": "PUTEAUX" + "codePostal": "98835", + "codeCommune": "98805", + "libelleAcheminement": "DUMBEA", + "nomCommune": "DUMBEA" }, { - "codePostal": "92210", - "codeCommune": "92064", - "libelleAcheminement": "ST CLOUD", - "nomCommune": "ST CLOUD" + "codePostal": "94260", + "codeCommune": "94034", + "libelleAcheminement": "FRESNES", + "nomCommune": "FRESNES" }, { - "codePostal": "92150", - "codeCommune": "92073", - "libelleAcheminement": "SURESNES", - "nomCommune": "SURESNES" + "codePostal": "98838", + "codeCommune": "98808", + "libelleAcheminement": "PORO", + "nomCommune": "HOUAILOU" }, { - "codePostal": "93150", - "codeCommune": "93007", - "libelleAcheminement": "LE BLANC MESNIL", - "nomCommune": "LE BLANC MESNIL" + "codePostal": "94250", + "codeCommune": "94037", + "libelleAcheminement": "GENTILLY", + "nomCommune": "GENTILLY" }, { - "codePostal": "93390", - "codeCommune": "93014", - "libelleAcheminement": "CLICHY SOUS BOIS", - "nomCommune": "CLICHY SOUS BOIS" + "codePostal": "98884", + "codeCommune": "98814", + "libelleAcheminement": "CHEPENEHE", + "nomCommune": "LIFOU" }, { - "codePostal": "93120", - "codeCommune": "93027", - "libelleAcheminement": "LA COURNEUVE", - "nomCommune": "LA COURNEUVE" + "codePostal": "94700", + "codeCommune": "94046", + "libelleAcheminement": "MAISONS ALFORT", + "nomCommune": "MAISONS ALFORT" }, { - "codePostal": "93220", - "codeCommune": "93032", - "libelleAcheminement": "GAGNY", - "nomCommune": "GAGNY" + "codePostal": "98875", + "codeCommune": "98817", + "libelleAcheminement": "PLUM", + "nomCommune": "LE MONT DORE" }, { - "codePostal": "93460", - "codeCommune": "93033", - "libelleAcheminement": "GOURNAY SUR MARNE", - "nomCommune": "GOURNAY SUR MARNE" + "codePostal": "94130", + "codeCommune": "94052", + "libelleAcheminement": "NOGENT SUR MARNE", + "nomCommune": "NOGENT SUR MARNE" }, { - "codePostal": "93130", - "codeCommune": "93053", - "libelleAcheminement": "NOISY LE SEC", - "nomCommune": "NOISY LE SEC" + "codePostal": "98821", + "codeCommune": "98819", + "libelleAcheminement": "OUEGOA", + "nomCommune": "OUEGOA" }, { - "codePostal": "93310", - "codeCommune": "93061", - "libelleAcheminement": "LE PRE ST GERVAIS", - "nomCommune": "LE PRE ST GERVAIS" + "codePostal": "94150", + "codeCommune": "94065", + "libelleAcheminement": "RUNGIS", + "nomCommune": "RUNGIS" }, { - "codePostal": "93210", - "codeCommune": "93066", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "98890", + "codeCommune": "98821", + "libelleAcheminement": "PAITA", + "nomCommune": "PAITA" }, { - "codePostal": "94550", - "codeCommune": "94021", - "libelleAcheminement": "CHEVILLY LARUE", - "nomCommune": "CHEVILLY LARUE" + "codePostal": "94160", + "codeCommune": "94067", + "libelleAcheminement": "ST MANDE", + "nomCommune": "ST MANDE" }, { - "codePostal": "94200", - "codeCommune": "94041", - "libelleAcheminement": "IVRY SUR SEINE", - "nomCommune": "IVRY SUR SEINE" + "codePostal": "98827", + "codeCommune": "98827", + "libelleAcheminement": "POYA", + "nomCommune": "POYA" }, { - "codePostal": "94520", - "codeCommune": "94047", - "libelleAcheminement": "MANDRES LES ROSES", - "nomCommune": "MANDRES LES ROSES" + "codePostal": "94210", + "codeCommune": "94068", + "libelleAcheminement": "ST MAUR DES FOSSES", + "nomCommune": "ST MAUR DES FOSSES" }, { - "codePostal": "94130", - "codeCommune": "94052", - "libelleAcheminement": "NOGENT SUR MARNE", - "nomCommune": "NOGENT SUR MARNE" + "codePostal": "98877", + "codeCommune": "98827", + "libelleAcheminement": "NEPOUI", + "nomCommune": "POYA" }, { "codePostal": "94440", @@ -234299,42 +234293,42 @@ "libelleAcheminement": "SANTENY", "nomCommune": "SANTENY" }, - { - "codePostal": "94370", - "codeCommune": "94071", - "libelleAcheminement": "SUCY EN BRIE", - "nomCommune": "SUCY EN BRIE" - }, - { - "codePostal": "94320", - "codeCommune": "94073", - "libelleAcheminement": "THIAIS", - "nomCommune": "THIAIS" - }, { "codePostal": "94800", "codeCommune": "94076", "libelleAcheminement": "VILLEJUIF", "nomCommune": "VILLEJUIF" }, + { + "codePostal": "94300", + "codeCommune": "94080", + "libelleAcheminement": "VINCENNES", + "nomCommune": "VINCENNES" + }, + { + "codePostal": "95510", + "codeCommune": "95008", + "libelleAcheminement": "AINCOURT", + "nomCommune": "AINCOURT" + }, { "codePostal": "95580", "codeCommune": "95014", "libelleAcheminement": "ANDILLY", "nomCommune": "ANDILLY" }, + { + "codePostal": "95810", + "codeCommune": "95023", + "libelleAcheminement": "ARRONVILLE", + "nomCommune": "ARRONVILLE" + }, { "codePostal": "95430", "codeCommune": "95039", "libelleAcheminement": "AUVERS SUR OISE", "nomCommune": "AUVERS SUR OISE" }, - { - "codePostal": "95450", - "codeCommune": "95040", - "libelleAcheminement": "AVERNES", - "nomCommune": "AVERNES" - }, { "codePostal": "95420", "codeCommune": "95046", @@ -234342,40 +234336,34 @@ "nomCommune": "BANTHELU" }, { - "codePostal": "95270", - "codeCommune": "95056", - "libelleAcheminement": "BELLOY EN FRANCE", - "nomCommune": "BELLOY EN FRANCE" - }, - { - "codePostal": "95810", - "codeCommune": "95059", - "libelleAcheminement": "BERVILLE", - "nomCommune": "BERVILLE" + "codePostal": "95250", + "codeCommune": "95051", + "libelleAcheminement": "BEAUCHAMP", + "nomCommune": "BEAUCHAMP" }, { - "codePostal": "95870", - "codeCommune": "95063", - "libelleAcheminement": "BEZONS", - "nomCommune": "BEZONS" + "codePostal": "95710", + "codeCommune": "95101", + "libelleAcheminement": "BRAY ET LU", + "nomCommune": "BRAY ET LU" }, { - "codePostal": "95000", - "codeCommune": "95074", - "libelleAcheminement": "BOISEMONT", - "nomCommune": "BOISEMONT" + "codePostal": "95640", + "codeCommune": "95110", + "libelleAcheminement": "BRIGNANCOURT", + "nomCommune": "BRIGNANCOURT" }, { - "codePostal": "95420", - "codeCommune": "95141", - "libelleAcheminement": "CHARMONT", - "nomCommune": "CHARMONT" + "codePostal": "95430", + "codeCommune": "95120", + "libelleAcheminement": "BUTRY SUR OISE", + "nomCommune": "BUTRY SUR OISE" }, { - "codePostal": "95450", - "codeCommune": "95170", - "libelleAcheminement": "CONDECOURT", - "nomCommune": "CONDECOURT" + "codePostal": "95000", + "codeCommune": "95127", + "libelleAcheminement": "CERGY", + "nomCommune": "CERGY" }, { "codePostal": "95240", @@ -234384,58 +234372,22 @@ "nomCommune": "CORMEILLES EN PARISIS" }, { - "codePostal": "95330", - "codeCommune": "95199", - "libelleAcheminement": "DOMONT", - "nomCommune": "DOMONT" - }, - { - "codePostal": "95440", - "codeCommune": "95205", - "libelleAcheminement": "ECOUEN", - "nomCommune": "ECOUEN" - }, - { - "codePostal": "95450", - "codeCommune": "95253", - "libelleAcheminement": "FREMAINVILLE", - "nomCommune": "FREMAINVILLE" - }, - { - "codePostal": "95830", - "codeCommune": "95254", - "libelleAcheminement": "FREMECOURT", - "nomCommune": "FREMECOURT" - }, - { - "codePostal": "95140", - "codeCommune": "95268", - "libelleAcheminement": "GARGES LES GONESSE", - "nomCommune": "GARGES LES GONESSE" - }, - { - "codePostal": "95420", - "codeCommune": "95270", - "libelleAcheminement": "GENAINVILLE", - "nomCommune": "GENAINVILLE" - }, - { - "codePostal": "95220", - "codeCommune": "95306", - "libelleAcheminement": "HERBLAY SUR SEINE", - "nomCommune": "HERBLAY SUR SEINE" + "codePostal": "95880", + "codeCommune": "95210", + "libelleAcheminement": "ENGHIEN LES BAINS", + "nomCommune": "ENGHIEN LES BAINS" }, { - "codePostal": "95220", - "codeCommune": "95306", - "libelleAcheminement": "HERBLAY SUR SEINE", - "nomCommune": "HERBLAY SUR SEINE" + "codePostal": "95610", + "codeCommune": "95218", + "libelleAcheminement": "ERAGNY SUR OISE", + "nomCommune": "ERAGNY" }, { - "codePostal": "95290", - "codeCommune": "95313", - "libelleAcheminement": "L ISLE ADAM", - "nomCommune": "L ISLE ADAM" + "codePostal": "95740", + "codeCommune": "95256", + "libelleAcheminement": "FREPILLON", + "nomCommune": "FREPILLON" }, { "codePostal": "95690", @@ -234443,6 +234395,12 @@ "libelleAcheminement": "LABBEVILLE", "nomCommune": "LABBEVILLE" }, + { + "codePostal": "95270", + "codeCommune": "95331", + "libelleAcheminement": "LASSY", + "nomCommune": "LASSY" + }, { "codePostal": "95580", "codeCommune": "95369", @@ -234456,16 +234414,10 @@ "nomCommune": "MARINES" }, { - "codePostal": "95420", - "codeCommune": "95379", - "libelleAcheminement": "MAUDETOUR EN VEXIN", - "nomCommune": "MAUDETOUR EN VEXIN" - }, - { - "codePostal": "95650", - "codeCommune": "95422", - "libelleAcheminement": "MONTGEROULT", - "nomCommune": "MONTGEROULT" + "codePostal": "95670", + "codeCommune": "95371", + "libelleAcheminement": "MARLY LA VILLE", + "nomCommune": "MARLY LA VILLE" }, { "codePostal": "95370", @@ -234480,10 +234432,16 @@ "nomCommune": "MONTLIGNON" }, { - "codePostal": "95360", - "codeCommune": "95427", - "libelleAcheminement": "MONTMAGNY", - "nomCommune": "MONTMAGNY" + "codePostal": "95160", + "codeCommune": "95428", + "libelleAcheminement": "MONTMORENCY", + "nomCommune": "MONTMORENCY" + }, + { + "codePostal": "95690", + "codeCommune": "95446", + "libelleAcheminement": "NESLES LA VALLEE", + "nomCommune": "NESLES LA VALLEE" }, { "codePostal": "95000", @@ -234491,12 +234449,30 @@ "libelleAcheminement": "NEUVILLE SUR OISE", "nomCommune": "NEUVILLE SUR OISE" }, + { + "codePostal": "95420", + "codeCommune": "95459", + "libelleAcheminement": "NUCOURT", + "nomCommune": "NUCOURT" + }, + { + "codePostal": "95130", + "codeCommune": "95491", + "libelleAcheminement": "LE PLESSIS BOUCHARD", + "nomCommune": "LE PLESSIS BOUCHARD" + }, { "codePostal": "95350", "codeCommune": "95539", "libelleAcheminement": "ST BRICE SOUS FORET", "nomCommune": "ST BRICE SOUS FORET" }, + { + "codePostal": "95210", + "codeCommune": "95555", + "libelleAcheminement": "ST GRATIEN", + "nomCommune": "ST GRATIEN" + }, { "codePostal": "95320", "codeCommune": "95563", @@ -234504,10 +234480,22 @@ "nomCommune": "ST LEU LA FORET" }, { - "codePostal": "95110", - "codeCommune": "95582", - "libelleAcheminement": "SANNOIS", - "nomCommune": "SANNOIS" + "codePostal": "95270", + "codeCommune": "95566", + "libelleAcheminement": "ST MARTIN DU TERTRE", + "nomCommune": "ST MARTIN DU TERTRE" + }, + { + "codePostal": "95310", + "codeCommune": "95572", + "libelleAcheminement": "ST OUEN L AUMONE", + "nomCommune": "ST OUEN L AUMONE" + }, + { + "codePostal": "95470", + "codeCommune": "95580", + "libelleAcheminement": "ST WITZ", + "nomCommune": "ST WITZ" }, { "codePostal": "95450", @@ -234516,10 +234504,16 @@ "nomCommune": "SERAINCOURT" }, { - "codePostal": "95500", - "codeCommune": "95612", - "libelleAcheminement": "LE THILLAY", - "nomCommune": "LE THILLAY" + "codePostal": "95150", + "codeCommune": "95607", + "libelleAcheminement": "TAVERNY", + "nomCommune": "TAVERNY" + }, + { + "codePostal": "95450", + "codeCommune": "95610", + "libelleAcheminement": "THEMERICOURT", + "nomCommune": "THEMERICOURT" }, { "codePostal": "95450", @@ -234528,28 +234522,34 @@ "nomCommune": "US" }, { - "codePostal": "95470", - "codeCommune": "95641", - "libelleAcheminement": "VEMARS", - "nomCommune": "VEMARS" + "codePostal": "95500", + "codeCommune": "95633", + "libelleAcheminement": "VAUDHERLAND", + "nomCommune": "VAUDHERLAND" }, { - "codePostal": "95840", - "codeCommune": "95678", - "libelleAcheminement": "VILLIERS ADAM", - "nomCommune": "VILLIERS ADAM" + "codePostal": "97142", + "codeCommune": "97101", + "libelleAcheminement": "LES ABYMES", + "nomCommune": "LES ABYMES" }, { - "codePostal": "95720", - "codeCommune": "95682", - "libelleAcheminement": "VILLIERS LE SEC", - "nomCommune": "VILLIERS LE SEC" + "codePostal": "97130", + "codeCommune": "97107", + "libelleAcheminement": "CAPESTERRE BELLE EAU", + "nomCommune": "CAPESTERRE BELLE EAU" }, { - "codePostal": "97112", - "codeCommune": "97112", - "libelleAcheminement": "GRAND BOURG", - "nomCommune": "GRAND BOURG" + "codePostal": "97130", + "codeCommune": "97107", + "libelleAcheminement": "CAPESTERRE BELLE EAU", + "nomCommune": "CAPESTERRE BELLE EAU" + }, + { + "codePostal": "97128", + "codeCommune": "97114", + "libelleAcheminement": "GOYAVE", + "nomCommune": "GOYAVE" }, { "codePostal": "97129", @@ -234558,22 +234558,28 @@ "nomCommune": "LAMENTIN" }, { - "codePostal": "97111", - "codeCommune": "97116", - "libelleAcheminement": "MORNE A L EAU", - "nomCommune": "MORNE A L EAU" + "codePostal": "97116", + "codeCommune": "97121", + "libelleAcheminement": "POINTE NOIRE", + "nomCommune": "POINTE NOIRE" }, { - "codePostal": "97170", - "codeCommune": "97118", - "libelleAcheminement": "PETIT BOURG", - "nomCommune": "PETIT BOURG" + "codePostal": "97134", + "codeCommune": "97126", + "libelleAcheminement": "ST LOUIS", + "nomCommune": "ST LOUIS" }, { - "codePostal": "97115", - "codeCommune": "97129", - "libelleAcheminement": "STE ROSE", - "nomCommune": "STE ROSE" + "codePostal": "97137", + "codeCommune": "97131", + "libelleAcheminement": "TERRE DE HAUT", + "nomCommune": "TERRE DE HAUT" + }, + { + "codePostal": "97114", + "codeCommune": "97132", + "libelleAcheminement": "TROIS RIVIERES", + "nomCommune": "TROIS RIVIERES" }, { "codePostal": "97119", @@ -234582,16 +234588,22 @@ "nomCommune": "VIEUX HABITANTS" }, { - "codePostal": "97218", - "codeCommune": "97203", - "libelleAcheminement": "BASSE POINTE", - "nomCommune": "BASSE POINTE" + "codePostal": "97217", + "codeCommune": "97202", + "libelleAcheminement": "LES ANSES D ARLET", + "nomCommune": "LES ANSES D ARLET" }, { - "codePostal": "97240", - "codeCommune": "97210", - "libelleAcheminement": "LE FRANCOIS", - "nomCommune": "LE FRANCOIS" + "codePostal": "97224", + "codeCommune": "97207", + "libelleAcheminement": "DUCOS", + "nomCommune": "DUCOS" + }, + { + "codePostal": "97200", + "codeCommune": "97209", + "libelleAcheminement": "FORT DE FRANCE", + "nomCommune": "FORT DE FRANCE" }, { "codePostal": "97213", @@ -234600,22 +234612,10 @@ "nomCommune": "GROS MORNE" }, { - "codePostal": "97214", - "codeCommune": "97214", - "libelleAcheminement": "LE LORRAIN", - "nomCommune": "LE LORRAIN" - }, - { - "codePostal": "97250", - "codeCommune": "97219", - "libelleAcheminement": "LE PRECHEUR", - "nomCommune": "LE PRECHEUR" - }, - { - "codePostal": "97215", - "codeCommune": "97221", - "libelleAcheminement": "RIVIERE SALEE", - "nomCommune": "RIVIERE SALEE" + "codePostal": "97290", + "codeCommune": "97217", + "libelleAcheminement": "LE MARIN", + "nomCommune": "LE MARIN" }, { "codePostal": "97215", @@ -234630,10 +234630,16 @@ "nomCommune": "LE ROBERT" }, { - "codePostal": "97228", - "codeCommune": "97227", - "libelleAcheminement": "STE LUCE", - "nomCommune": "STE LUCE" + "codePostal": "97212", + "codeCommune": "97224", + "libelleAcheminement": "ST JOSEPH", + "nomCommune": "ST JOSEPH" + }, + { + "codePostal": "97230", + "codeCommune": "97228", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { "codePostal": "97233", @@ -234642,46 +234648,22 @@ "nomCommune": "SCHOELCHER" }, { - "codePostal": "97353", + "codePostal": "97390", "codeCommune": "97301", "libelleAcheminement": "REGINA", "nomCommune": "REGINA" }, { - "codePostal": "97300", - "codeCommune": "97302", - "libelleAcheminement": "CAYENNE", - "nomCommune": "CAYENNE" - }, - { - "codePostal": "97320", - "codeCommune": "97311", - "libelleAcheminement": "ST LAURENT DU MARONI", - "nomCommune": "ST LAURENT DU MARONI" - }, - { - "codePostal": "97315", - "codeCommune": "97312", - "libelleAcheminement": "SINNAMARY", - "nomCommune": "SINNAMARY" - }, - { - "codePostal": "97340", - "codeCommune": "97357", - "libelleAcheminement": "GRAND SANTI", - "nomCommune": "GRAND SANTI" - }, - { - "codePostal": "97312", - "codeCommune": "97358", - "libelleAcheminement": "ST ELIE", - "nomCommune": "ST ELIE" + "codePostal": "97318", + "codeCommune": "97306", + "libelleAcheminement": "MANA", + "nomCommune": "MANA" }, { - "codePostal": "97319", - "codeCommune": "97361", - "libelleAcheminement": "AWALA YALIMAPO", - "nomCommune": "AWALA YALIMAPO" + "codePostal": "97352", + "codeCommune": "97310", + "libelleAcheminement": "ROURA", + "nomCommune": "ROURA" }, { "codePostal": "97425", @@ -234689,24 +234671,6 @@ "libelleAcheminement": "LES AVIRONS", "nomCommune": "LES AVIRONS" }, - { - "codePostal": "97414", - "codeCommune": "97403", - "libelleAcheminement": "ENTRE DEUX", - "nomCommune": "ENTRE DEUX" - }, - { - "codePostal": "97427", - "codeCommune": "97404", - "libelleAcheminement": "L ETANG SALE", - "nomCommune": "L ETANG SALE" - }, - { - "codePostal": "97427", - "codeCommune": "97404", - "libelleAcheminement": "L ETANG SALE", - "nomCommune": "L ETANG SALE" - }, { "codePostal": "97420", "codeCommune": "97407", @@ -234719,12 +234683,6 @@ "libelleAcheminement": "LA POSSESSION", "nomCommune": "LA POSSESSION" }, - { - "codePostal": "97419", - "codeCommune": "97408", - "libelleAcheminement": "LA POSSESSION", - "nomCommune": "LA POSSESSION" - }, { "codePostal": "97440", "codeCommune": "97409", @@ -234738,13 +234696,37 @@ "nomCommune": "ST DENIS" }, { - "codePostal": "97424", + "codePostal": "97480", + "codeCommune": "97412", + "libelleAcheminement": "ST JOSEPH", + "nomCommune": "ST JOSEPH" + }, + { + "codePostal": "97436", "codeCommune": "97413", "libelleAcheminement": "ST LEU", "nomCommune": "ST LEU" }, { - "codePostal": "97422", + "codePostal": "97411", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" + }, + { + "codePostal": "97423", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" + }, + { + "codePostal": "97460", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" + }, + { + "codePostal": "97460", "codeCommune": "97415", "libelleAcheminement": "ST PAUL", "nomCommune": "ST PAUL" @@ -234762,16 +234744,10 @@ "nomCommune": "ST PIERRE" }, { - "codePostal": "97439", - "codeCommune": "97419", - "libelleAcheminement": "STE ROSE", - "nomCommune": "STE ROSE" - }, - { - "codePostal": "97441", - "codeCommune": "97420", - "libelleAcheminement": "STE SUZANNE", - "nomCommune": "STE SUZANNE" + "codePostal": "97432", + "codeCommune": "97416", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { "codePostal": "97418", @@ -234780,28 +234756,40 @@ "nomCommune": "LE TAMPON" }, { - "codePostal": "97430", - "codeCommune": "97422", - "libelleAcheminement": "LE TAMPON", - "nomCommune": "LE TAMPON" + "codePostal": "97500", + "codeCommune": "97501", + "libelleAcheminement": "ST PIERRE ET MIQUELON", + "nomCommune": "MIQUELON LANGLADE" }, { - "codePostal": "97426", - "codeCommune": "97423", - "libelleAcheminement": "LES TROIS BASSINS", - "nomCommune": "LES TROIS BASSINS" + "codePostal": "97500", + "codeCommune": "97502", + "libelleAcheminement": "ST PIERRE ET MIQUELON", + "nomCommune": "ST PIERRE" }, { - "codePostal": "97620", - "codeCommune": "97604", - "libelleAcheminement": "BOUENI", - "nomCommune": "BOUENI" + "codePostal": "97650", + "codeCommune": "97602", + "libelleAcheminement": "BANDRABOUA", + "nomCommune": "BANDRABOUA" }, { - "codePostal": "97660", - "codeCommune": "97607", - "libelleAcheminement": "DEMBENI", - "nomCommune": "DEMBENI" + "codePostal": "97650", + "codeCommune": "97602", + "libelleAcheminement": "BANDRABOUA", + "nomCommune": "BANDRABOUA" + }, + { + "codePostal": "97670", + "codeCommune": "97605", + "libelleAcheminement": "CHICONI", + "nomCommune": "CHICONI" + }, + { + "codePostal": "97620", + "codeCommune": "97606", + "libelleAcheminement": "CHIRONGUI", + "nomCommune": "CHIRONGUI" }, { "codePostal": "97615", @@ -234809,6 +234797,12 @@ "libelleAcheminement": "DZAOUDZI", "nomCommune": "DZAOUDZI" }, + { + "codePostal": "97670", + "codeCommune": "97614", + "libelleAcheminement": "OUANGANI", + "nomCommune": "OUANGANI" + }, { "codePostal": "97615", "codeCommune": "97615", @@ -234816,345 +234810,363 @@ "nomCommune": "PAMANDZI" }, { - "codePostal": "98610", - "codeCommune": "98611", - "libelleAcheminement": "ALO", - "nomCommune": "ALO" + "codePostal": "97133", + "codeCommune": "97701", + "libelleAcheminement": "ST BARTHELEMY", + "nomCommune": "ST BARTHELEMY" }, { - "codePostal": "98600", - "codeCommune": "98613", - "libelleAcheminement": "UVEA", - "nomCommune": "UVEA" + "codePostal": "98786", + "codeCommune": "98711", + "libelleAcheminement": "HITIANAU", + "nomCommune": "ANAA" }, { - "codePostal": "98785", + "codePostal": "98701", + "codeCommune": "98712", + "libelleAcheminement": "ARUE", + "nomCommune": "ARUE" + }, + { + "codePostal": "98761", "codeCommune": "98713", - "libelleAcheminement": "RAITAHITI", + "libelleAcheminement": "RAUTINI", "nomCommune": "ARUTUA" }, { - "codePostal": "98787", + "codePostal": "98762", + "codeCommune": "98713", + "libelleAcheminement": "NIUTAHI", + "nomCommune": "ARUTUA" + }, + { + "codePostal": "98730", + "codeCommune": "98714", + "libelleAcheminement": "ANAU", + "nomCommune": "BORA BORA" + }, + { + "codePostal": "98730", + "codeCommune": "98714", + "libelleAcheminement": "NUNUE", + "nomCommune": "BORA BORA" + }, + { + "codePostal": "98704", + "codeCommune": "98715", + "libelleAcheminement": "FAAA", + "nomCommune": "FAAA" + }, + { + "codePostal": "98790", "codeCommune": "98716", - "libelleAcheminement": "TEARAVERO", + "libelleAcheminement": "OFARE", "nomCommune": "FAKARAVA" }, + { + "codePostal": "98740", + "codeCommune": "98718", + "libelleAcheminement": "HANAVAVE", + "nomCommune": "FATU HIVA" + }, { "codePostal": "98755", "codeCommune": "98719", - "libelleAcheminement": "ANGAKAUITAI", + "libelleAcheminement": "KAMAKA", "nomCommune": "GAMBIER" }, { - "codePostal": "98792", + "codePostal": "98755", "codeCommune": "98719", - "libelleAcheminement": "VAHANGA", + "libelleAcheminement": "AKAMARU", "nomCommune": "GAMBIER" }, { "codePostal": "98792", "codeCommune": "98719", - "libelleAcheminement": "MARIA EST", + "libelleAcheminement": "MOTUREIVAVAO", "nomCommune": "GAMBIER" }, { - "codePostal": "98790", - "codeCommune": "98720", - "libelleAcheminement": "AMANU", - "nomCommune": "HAO" + "codePostal": "98792", + "codeCommune": "98719", + "libelleAcheminement": "TENARARO", + "nomCommune": "GAMBIER" }, { - "codePostal": "98790", - "codeCommune": "98720", - "libelleAcheminement": "HIKITAKE", - "nomCommune": "HAO" + "codePostal": "98793", + "codeCommune": "98719", + "libelleAcheminement": "MARUTEA SUD", + "nomCommune": "GAMBIER" }, { "codePostal": "98790", "codeCommune": "98720", - "libelleAcheminement": "MANUHANGI", + "libelleAcheminement": "OTETOU", "nomCommune": "HAO" }, { "codePostal": "98790", - "codeCommune": "98720", - "libelleAcheminement": "TEANOGA", - "nomCommune": "HAO" - }, - { - "codePostal": "98705", - "codeCommune": "98722", - "libelleAcheminement": "HITIAA", - "nomCommune": "HITIAA O TE RA" + "codeCommune": "98721", + "libelleAcheminement": "MOTUTAPU", + "nomCommune": "HIKUERU" }, { - "codePostal": "98706", - "codeCommune": "98722", - "libelleAcheminement": "MAHAENA", - "nomCommune": "HITIAA O TE RA" + "codePostal": "98790", + "codeCommune": "98721", + "libelleAcheminement": "RAVAHERE", + "nomCommune": "HIKUERU" }, { "codePostal": "98741", "codeCommune": "98723", - "libelleAcheminement": "HANAPAOA", + "libelleAcheminement": "HANAIAPA", "nomCommune": "HIVA OA" }, { - "codePostal": "98749", - "codeCommune": "98723", - "libelleAcheminement": "PUAMAU", - "nomCommune": "HIVA OA" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "FARE", + "nomCommune": "HUAHINE" }, { - "codePostal": "98796", - "codeCommune": "98723", - "libelleAcheminement": "FATU HUKU", - "nomCommune": "HIVA OA" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "FITII", + "nomCommune": "HUAHINE" }, { - "codePostal": "98731", + "codePostal": "98732", "codeCommune": "98724", - "libelleAcheminement": "FAIE", + "libelleAcheminement": "AVERA", "nomCommune": "HUAHINE" }, { - "codePostal": "98769", - "codeCommune": "98726", - "libelleAcheminement": "POUHEVA", - "nomCommune": "MAKEMO" + "codePostal": "98709", + "codeCommune": "98725", + "libelleAcheminement": "MAHINA", + "nomCommune": "MAHINA" }, { - "codePostal": "98790", - "codeCommune": "98726", - "libelleAcheminement": "MARUTEA NORD", - "nomCommune": "MAKEMO" + "codePostal": "98710", + "codeCommune": "98725", + "libelleAcheminement": "OROFARA", + "nomCommune": "MAHINA" }, { "codePostal": "98790", "codeCommune": "98726", - "libelleAcheminement": "OTATAKE", + "libelleAcheminement": "HARAIKI", "nomCommune": "MAKEMO" }, { "codePostal": "98790", "codeCommune": "98726", - "libelleAcheminement": "TEPOTO SUD", + "libelleAcheminement": "HENUAPAREA", "nomCommune": "MAKEMO" }, { "codePostal": "98790", "codeCommune": "98726", - "libelleAcheminement": "TUANAKE", + "libelleAcheminement": "HITI", "nomCommune": "MAKEMO" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "AFAREAITU", - "nomCommune": "MOOREA MAIAO" + "codePostal": "98732", + "codeCommune": "98728", + "libelleAcheminement": "MAUPITI", + "nomCommune": "MAUPITI" }, { - "codePostal": "98729", + "codePostal": "98728", "codeCommune": "98729", - "libelleAcheminement": "MAIAO", + "libelleAcheminement": "TEMAE", "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "98729", + "codePostal": "98728", "codeCommune": "98729", - "libelleAcheminement": "HAURU", + "libelleAcheminement": "VAIARE", "nomCommune": "MOOREA MAIAO" }, { "codePostal": "98729", "codeCommune": "98729", - "libelleAcheminement": "PAPETOAI", + "libelleAcheminement": "ATIHA", "nomCommune": "MOOREA MAIAO" }, { "codePostal": "98729", "codeCommune": "98729", - "libelleAcheminement": "TIAHURA", + "libelleAcheminement": "HAAPITI", "nomCommune": "MOOREA MAIAO" }, { "codePostal": "98729", "codeCommune": "98729", - "libelleAcheminement": "VAIANAE", + "libelleAcheminement": "VARARI", "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "98742", - "codeCommune": "98731", - "libelleAcheminement": "TAIOHAE", - "nomCommune": "NUKU HIVA" - }, - { - "codePostal": "98796", - "codeCommune": "98731", - "libelleAcheminement": "EIAO", - "nomCommune": "NUKU HIVA" - }, - { - "codePostal": "98788", + "codePostal": "98773", "codeCommune": "98732", - "libelleAcheminement": "TEMANUFAARA", + "libelleAcheminement": "TAVAVA", "nomCommune": "NUKUTAVAKE" }, { - "codePostal": "98776", - "codeCommune": "98740", - "libelleAcheminement": "TIPUTA", - "nomCommune": "RANGIROA" - }, - { - "codePostal": "98790", - "codeCommune": "98740", - "libelleAcheminement": "VAITEPAUA", - "nomCommune": "RANGIROA" - }, - { - "codePostal": "98780", - "codeCommune": "98742", - "libelleAcheminement": "MARAUTAGAROA", - "nomCommune": "REAO" - }, - { - "codePostal": "98752", - "codeCommune": "98743", - "libelleAcheminement": "ANAPOTO", - "nomCommune": "RIMATARA" - }, - { - "codePostal": "98752", - "codeCommune": "98743", - "libelleAcheminement": "MUTUAURA", - "nomCommune": "RIMATARA" + "codePostal": "98712", + "codeCommune": "98734", + "libelleAcheminement": "PAPARA", + "nomCommune": "PAPARA" }, { - "codePostal": "98753", - "codeCommune": "98744", - "libelleAcheminement": "AVERA", - "nomCommune": "RURUTU" + "codePostal": "98750", + "codeCommune": "98739", + "libelleAcheminement": "MAHANATOA", + "nomCommune": "RAIVAVAE" }, { - "codePostal": "98733", - "codeCommune": "98745", - "libelleAcheminement": "RUUTIA", - "nomCommune": "TAHAA" + "codePostal": "98775", + "codeCommune": "98740", + "libelleAcheminement": "AVATORU", + "nomCommune": "RANGIROA" }, { "codePostal": "98733", "codeCommune": "98745", - "libelleAcheminement": "TAPUAMU", + "libelleAcheminement": "PATIO", "nomCommune": "TAHAA" }, { "codePostal": "98734", "codeCommune": "98745", - "libelleAcheminement": "VAITOARE", + "libelleAcheminement": "NIUA", "nomCommune": "TAHAA" }, { "codePostal": "98743", "codeCommune": "98746", - "libelleAcheminement": "MOTOPU", + "libelleAcheminement": "HAPATONI", "nomCommune": "TAHUATA" }, { - "codePostal": "98743", - "codeCommune": "98746", - "libelleAcheminement": "HANATETENA", - "nomCommune": "TAHUATA" + "codePostal": "98719", + "codeCommune": "98747", + "libelleAcheminement": "AFAAHITI", + "nomCommune": "TAIARAPU EST" }, { - "codePostal": "98723", + "codePostal": "98720", + "codeCommune": "98747", + "libelleAcheminement": "FAAONE", + "nomCommune": "TAIARAPU EST" + }, + { + "codePostal": "98724", "codeCommune": "98748", - "libelleAcheminement": "TEAHUPOO", + "libelleAcheminement": "TOAHOTU", "nomCommune": "TAIARAPU OUEST" }, + { + "codePostal": "98781", + "codeCommune": "98749", + "libelleAcheminement": "TEAVAROA", + "nomCommune": "TAKAROA" + }, { "codePostal": "98735", "codeCommune": "98750", - "libelleAcheminement": "TAPUTAPUATEA", + "libelleAcheminement": "OPOA", "nomCommune": "TAPUTAPUATEA" }, { - "codePostal": "98726", - "codeCommune": "98752", - "libelleAcheminement": "MATAIEA", - "nomCommune": "TEVA I UTA" - }, - { - "codePostal": "98754", - "codeCommune": "98753", - "libelleAcheminement": "MAHU", - "nomCommune": "TUBUAI" + "codePostal": "98784", + "codeCommune": "98755", + "libelleAcheminement": "FAKAMARU", + "nomCommune": "TUREIA" }, { - "codePostal": "98747", - "codeCommune": "98756", - "libelleAcheminement": "HANE", - "nomCommune": "UA HUKA" + "codePostal": "98745", + "codeCommune": "98757", + "libelleAcheminement": "HOHOI", + "nomCommune": "UA POU" }, { - "codePostal": "98812", - "codeCommune": "98802", - "libelleAcheminement": "BOULOUPARIS", - "nomCommune": "BOULOUPARI" + "codePostal": "98746", + "codeCommune": "98757", + "libelleAcheminement": "HAAKUTI", + "nomCommune": "UA POU" }, { - "codePostal": "98836", + "codePostal": "98830", "codeCommune": "98805", - "libelleAcheminement": "DUMBEA GA", + "libelleAcheminement": "DUMBEA", "nomCommune": "DUMBEA" }, { - "codePostal": "98815", - "codeCommune": "98807", - "libelleAcheminement": "HIENGHENE", - "nomCommune": "HIENGHENE" + "codePostal": "98859", + "codeCommune": "98811", + "libelleAcheminement": "KONE", + "nomCommune": "KONE" }, { - "codePostal": "98832", - "codeCommune": "98809", - "libelleAcheminement": "VAO", - "nomCommune": "L ILE DES PINS" + "codePostal": "98820", + "codeCommune": "98814", + "libelleAcheminement": "WE", + "nomCommune": "LIFOU" }, { - "codePostal": "98810", + "codePostal": "98819", + "codeCommune": "98816", + "libelleAcheminement": "MOINDOU", + "nomCommune": "MOINDOU" + }, + { + "codePostal": "98874", "codeCommune": "98817", - "libelleAcheminement": "MONT DORE", + "libelleAcheminement": "PONT DES FRANCAIS", "nomCommune": "LE MONT DORE" }, { - "codePostal": "98824", - "codeCommune": "98824", - "libelleAcheminement": "POUEBO", - "nomCommune": "POUEBO" + "codePostal": "98876", + "codeCommune": "98817", + "libelleAcheminement": "LA COULEE", + "nomCommune": "LE MONT DORE" }, { - "codePostal": "98825", - "codeCommune": "98825", - "libelleAcheminement": "POUEMBOUT", - "nomCommune": "POUEMBOUT" + "codePostal": "98800", + "codeCommune": "98818", + "libelleAcheminement": "NOUMEA", + "nomCommune": "NOUMEA" }, { - "codePostal": "98882", - "codeCommune": "98828", - "libelleAcheminement": "SARRAMEA", - "nomCommune": "SARRAMEA" + "codePostal": "98840", + "codeCommune": "98821", + "libelleAcheminement": "TONTOUTA", + "nomCommune": "PAITA" }, { - "codePostal": "98831", - "codeCommune": "98830", - "libelleAcheminement": "TOUHO", - "nomCommune": "TOUHO" + "codePostal": "98889", + "codeCommune": "98821", + "libelleAcheminement": "PAITA", + "nomCommune": "PAITA" }, { - "codePostal": "98799", - "codeCommune": "98901", - "libelleAcheminement": "ILE DE CLIPPERTON", - "nomCommune": "ILE DE CLIPPERTON" + "codePostal": "98823", + "codeCommune": "98823", + "libelleAcheminement": "PONERIHOUEN", + "nomCommune": "PONERIHOUEN" + }, + { + "codePostal": "27940", + "codeCommune": "27676", + "libelleAcheminement": "LES TROIS LACS", + "nomCommune": "LES TROIS LACS" + }, + { + "codePostal": "27700", + "codeCommune": "27676", + "libelleAcheminement": "LES TROIS LACS", + "nomCommune": "LES TROIS LACS" } ] diff --git a/sources/codes-postaux.json b/sources/codes-postaux.json index 86f7b15..e96ca52 100644 --- a/sources/codes-postaux.json +++ b/sources/codes-postaux.json @@ -1,12099 +1,12123 @@ [ { - "codePostal": "01300", - "codeCommune": "01009", - "libelleAcheminement": "ANDERT ET CONDON", - "nomCommune": "ANDERT ET CONDON" + "codePostal": "25650", + "codeCommune": "25620", + "libelleAcheminement": "VILLE DU PONT", + "nomCommune": "VILLE DU PONT" }, { - "codePostal": "01110", - "codeCommune": "01012", - "libelleAcheminement": "ARANC", - "nomCommune": "ARANC" + "codePostal": "25640", + "codeCommune": "25624", + "libelleAcheminement": "VILLERS GRELOT", + "nomCommune": "VILLERS GRELOT" }, { - "codePostal": "01570", - "codeCommune": "01023", - "libelleAcheminement": "ASNIERES SUR SAONE", - "nomCommune": "ASNIERES SUR SAONE" + "codePostal": "26150", + "codeCommune": "26001", + "libelleAcheminement": "SOLAURE EN DIOIS", + "nomCommune": "SOLAURE EN DIOIS" }, { - "codePostal": "01270", - "codeCommune": "01029", - "libelleAcheminement": "BEAUPONT", - "nomCommune": "BEAUPONT" + "codePostal": "26770", + "codeCommune": "26003", + "libelleAcheminement": "ALEYRAC", + "nomCommune": "ALEYRAC" }, { - "codePostal": "01360", - "codeCommune": "01032", - "libelleAcheminement": "BELIGNEUX", - "nomCommune": "BELIGNEUX" + "codePostal": "26140", + "codeCommune": "26009", + "libelleAcheminement": "ANDANCETTE", + "nomCommune": "ANDANCETTE" }, { - "codePostal": "01200", - "codeCommune": "01033", - "libelleAcheminement": "VALSERHONE", - "nomCommune": "VALSERHONE" + "codePostal": "26400", + "codeCommune": "26011", + "libelleAcheminement": "AOUSTE SUR SYE", + "nomCommune": "AOUSTE SUR SYE" }, { - "codePostal": "01260", - "codeCommune": "01036", - "libelleAcheminement": "VALROMEY SUR SERAN", - "nomCommune": "VALROMEY SUR SERAN" + "codePostal": "26110", + "codeCommune": "26013", + "libelleAcheminement": "ARPAVON", + "nomCommune": "ARPAVON" }, { - "codePostal": "01260", - "codeCommune": "01036", - "libelleAcheminement": "VALROMEY SUR SERAN", - "nomCommune": "VALROMEY SUR SERAN" + "codePostal": "26400", + "codeCommune": "26021", + "libelleAcheminement": "AUTICHAMP", + "nomCommune": "AUTICHAMP" }, { - "codePostal": "01260", - "codeCommune": "01036", - "libelleAcheminement": "VALROMEY SUR SERAN", - "nomCommune": "VALROMEY SUR SERAN" + "codePostal": "26120", + "codeCommune": "26024", + "libelleAcheminement": "BARCELONNE", + "nomCommune": "BARCELONNE" }, { - "codePostal": "01260", - "codeCommune": "01036", - "libelleAcheminement": "VALROMEY SUR SERAN", - "nomCommune": "VALROMEY SUR SERAN" + "codePostal": "26570", + "codeCommune": "26026", + "libelleAcheminement": "BARRET DE LIOURE", + "nomCommune": "BARRET DE LIOURE" }, { - "codePostal": "01330", - "codeCommune": "01045", - "libelleAcheminement": "BIRIEUX", - "nomCommune": "BIRIEUX" + "codePostal": "26150", + "codeCommune": "26027", + "libelleAcheminement": "BARSAC", + "nomCommune": "BARSAC" }, { - "codePostal": "01120", - "codeCommune": "01049", - "libelleAcheminement": "LA BOISSE", - "nomCommune": "LA BOISSE" + "codePostal": "26260", + "codeCommune": "26028", + "libelleAcheminement": "BATHERNAY", + "nomCommune": "BATHERNAY" }, { - "codePostal": "01190", - "codeCommune": "01050", - "libelleAcheminement": "BOISSEY", - "nomCommune": "BOISSEY" + "codePostal": "26790", + "codeCommune": "26033", + "libelleAcheminement": "LA BAUME DE TRANSIT", + "nomCommune": "LA BAUME DE TRANSIT" }, { - "codePostal": "01800", - "codeCommune": "01054", - "libelleAcheminement": "BOURG ST CHRISTOPHE", - "nomCommune": "BOURG ST CHRISTOPHE" + "codePostal": "26600", + "codeCommune": "26038", + "libelleAcheminement": "BEAUMONT MONTEUX", + "nomCommune": "BEAUMONT MONTEUX" }, { - "codePostal": "01510", - "codeCommune": "01066", - "libelleAcheminement": "LA BURBANCHE", - "nomCommune": "LA BURBANCHE" + "codePostal": "26310", + "codeCommune": "26040", + "libelleAcheminement": "BEAURIERES", + "nomCommune": "BEAURIERES" }, { - "codePostal": "01630", - "codeCommune": "01078", - "libelleAcheminement": "CHALLEX", - "nomCommune": "CHALLEX" + "codePostal": "26460", + "codeCommune": "26051", + "libelleAcheminement": "BEZAUDUN SUR BINE", + "nomCommune": "BEZAUDUN SUR BINE" }, { - "codePostal": "01260", - "codeCommune": "01079", - "libelleAcheminement": "CHAMPAGNE EN VALROMEY", - "nomCommune": "CHAMPAGNE EN VALROMEY" + "codePostal": "26460", + "codeCommune": "26056", + "libelleAcheminement": "BOURDEAUX", + "nomCommune": "BOURDEAUX" }, { - "codePostal": "01260", - "codeCommune": "01079", - "libelleAcheminement": "CHAMPAGNE EN VALROMEY", - "nomCommune": "CHAMPAGNE EN VALROMEY" + "codePostal": "26460", + "codeCommune": "26060", + "libelleAcheminement": "BOUVIERES", + "nomCommune": "BOUVIERES" }, { - "codePostal": "01240", - "codeCommune": "01085", - "libelleAcheminement": "LA CHAPELLE DU CHATELARD", - "nomCommune": "LA CHAPELLE DU CHATELARD" + "codePostal": "26120", + "codeCommune": "26064", + "libelleAcheminement": "CHABEUIL", + "nomCommune": "CHABEUIL" }, { - "codePostal": "01430", - "codeCommune": "01101", - "libelleAcheminement": "CHEVILLARD", - "nomCommune": "CHEVILLARD" + "codePostal": "26470", + "codeCommune": "26067", + "libelleAcheminement": "CHALANCON", + "nomCommune": "CHALANCON" }, { - "codePostal": "01390", - "codeCommune": "01105", - "libelleAcheminement": "CIVRIEUX", - "nomCommune": "CIVRIEUX" + "codePostal": "26310", + "codeCommune": "26076", + "libelleAcheminement": "CHARENS", + "nomCommune": "CHARENS" }, { - "codePostal": "01310", - "codeCommune": "01115", - "libelleAcheminement": "CONFRANCON", - "nomCommune": "CONFRANCON" + "codePostal": "26110", + "codeCommune": "26082", + "libelleAcheminement": "CHATEAUNEUF DE BORDETTE", + "nomCommune": "CHATEAUNEUF DE BORDETTE" }, { - "codePostal": "01250", - "codeCommune": "01125", - "libelleAcheminement": "CORVEISSIAT", - "nomCommune": "CORVEISSIAT" + "codePostal": "26330", + "codeCommune": "26083", + "libelleAcheminement": "CHATEAUNEUF DE GALAURE", + "nomCommune": "CHATEAUNEUF DE GALAURE" }, { - "codePostal": "01370", - "codeCommune": "01127", - "libelleAcheminement": "COURMANGOUX", - "nomCommune": "COURMANGOUX" + "codePostal": "26410", + "codeCommune": "26086", + "libelleAcheminement": "CHATILLON EN DIOIS", + "nomCommune": "CHATILLON EN DIOIS" }, { - "codePostal": "01320", - "codeCommune": "01129", - "libelleAcheminement": "CRANS", - "nomCommune": "CRANS" + "codePostal": "26340", + "codeCommune": "26090", + "libelleAcheminement": "LA CHAUDIERE", + "nomCommune": "LA CHAUDIERE" }, { - "codePostal": "01340", - "codeCommune": "01130", - "libelleAcheminement": "BRESSE VALLONS", - "nomCommune": "BRESSE VALLONS" + "codePostal": "26130", + "codeCommune": "26093", + "libelleAcheminement": "CLANSAYES", + "nomCommune": "CLANSAYES" }, { - "codePostal": "01300", - "codeCommune": "01141", - "libelleAcheminement": "CUZIEU", - "nomCommune": "CUZIEU" + "codePostal": "26270", + "codeCommune": "26097", + "libelleAcheminement": "CLIOUSCLAT", + "nomCommune": "CLIOUSCLAT" }, { - "codePostal": "01240", - "codeCommune": "01145", - "libelleAcheminement": "DOMPIERRE SUR VEYLE", - "nomCommune": "DOMPIERRE SUR VEYLE" + "codePostal": "26230", + "codeCommune": "26099", + "libelleAcheminement": "COLONZELLE", + "nomCommune": "COLONZELLE" }, { - "codePostal": "01500", - "codeCommune": "01149", - "libelleAcheminement": "DOUVRES", - "nomCommune": "DOUVRES" + "codePostal": "26400", + "codeCommune": "26108", + "libelleAcheminement": "CREST", + "nomCommune": "CREST" }, { - "codePostal": "01160", - "codeCommune": "01151", - "libelleAcheminement": "DRUILLAT", - "nomCommune": "DRUILLAT" + "codePostal": "26110", + "codeCommune": "26112", + "libelleAcheminement": "CURNIER", + "nomCommune": "CURNIER" }, { - "codePostal": "01230", - "codeCommune": "01155", - "libelleAcheminement": "EVOSGES", - "nomCommune": "EVOSGES" + "codePostal": "26150", + "codeCommune": "26113", + "libelleAcheminement": "DIE", + "nomCommune": "DIE" }, { - "codePostal": "01210", - "codeCommune": "01160", - "libelleAcheminement": "FERNEY VOLTAIRE", - "nomCommune": "FERNEY VOLTAIRE" + "codePostal": "26600", + "codeCommune": "26119", + "libelleAcheminement": "EROME", + "nomCommune": "EROME" }, { - "codePostal": "01350", - "codeCommune": "01162", - "libelleAcheminement": "FLAXIEU", - "nomCommune": "FLAXIEU" + "codePostal": "26340", + "codeCommune": "26122", + "libelleAcheminement": "ESPENEL", + "nomCommune": "ESPENEL" }, { - "codePostal": "01090", - "codeCommune": "01169", - "libelleAcheminement": "GENOUILLEUX", - "nomCommune": "GENOUILLEUX" + "codePostal": "26400", + "codeCommune": "26125", + "libelleAcheminement": "EURRE", + "nomCommune": "EURRE" }, { - "codePostal": "01460", - "codeCommune": "01170", - "libelleAcheminement": "BEARD GEOVREISSIAT", - "nomCommune": "BEARD GEOVREISSIAT" + "codePostal": "26400", + "codeCommune": "26128", + "libelleAcheminement": "EYGLUY ESCOULIN", + "nomCommune": "EYGLUY ESCOULIN" }, { - "codePostal": "01130", - "codeCommune": "01174", - "libelleAcheminement": "GIRON", - "nomCommune": "GIRON" + "codePostal": "26110", + "codeCommune": "26130", + "libelleAcheminement": "EYROLES", + "nomCommune": "EYROLES" }, { - "codePostal": "01250", - "codeCommune": "01184", - "libelleAcheminement": "HAUTECOURT ROMANECHE", - "nomCommune": "HAUTECOURT ROMANECHE" + "codePostal": "26310", + "codeCommune": "26136", + "libelleAcheminement": "VAL MARAVEL", + "nomCommune": "VAL MARAVEL" }, { - "codePostal": "01250", - "codeCommune": "01184", - "libelleAcheminement": "HAUTECOURT ROMANECHE", - "nomCommune": "HAUTECOURT ROMANECHE" + "codePostal": "26290", + "codeCommune": "26145", + "libelleAcheminement": "LES GRANGES GONTARDES", + "nomCommune": "LES GRANGES GONTARDES" }, { - "codePostal": "01140", - "codeCommune": "01188", - "libelleAcheminement": "ILLIAT", - "nomCommune": "ILLIAT" + "codePostal": "26230", + "codeCommune": "26146", + "libelleAcheminement": "GRIGNAN", + "nomCommune": "GRIGNAN" }, { - "codePostal": "01480", - "codeCommune": "01194", - "libelleAcheminement": "JASSANS RIOTTIER", - "nomCommune": "JASSANS RIOTTIER" + "codePostal": "26210", + "codeCommune": "26155", + "libelleAcheminement": "LAPEYROUSE MORNAY", + "nomCommune": "LAPEYROUSE MORNAY" }, { - "codePostal": "01250", - "codeCommune": "01195", - "libelleAcheminement": "JASSERON", - "nomCommune": "JASSERON" + "codePostal": "26600", + "codeCommune": "26156", + "libelleAcheminement": "LARNAGE", + "nomCommune": "LARNAGE" }, { - "codePostal": "01430", - "codeCommune": "01206", - "libelleAcheminement": "LANTENAY", - "nomCommune": "LANTENAY" + "codePostal": "26160", + "codeCommune": "26171", + "libelleAcheminement": "MANAS", + "nomCommune": "MANAS" }, { - "codePostal": "01200", - "codeCommune": "01209", - "libelleAcheminement": "LEAZ", - "nomCommune": "LEAZ" + "codePostal": "26740", + "codeCommune": "26176", + "libelleAcheminement": "MARSANNE", + "nomCommune": "MARSANNE" }, { - "codePostal": "01090", - "codeCommune": "01225", - "libelleAcheminement": "LURCY", - "nomCommune": "LURCY" + "codePostal": "26400", + "codeCommune": "26195", + "libelleAcheminement": "MONTCLAR SUR GERVANNE", + "nomCommune": "MONTCLAR SUR GERVANNE" }, { - "codePostal": "01340", - "codeCommune": "01229", - "libelleAcheminement": "MALAFRETAZ", - "nomCommune": "MALAFRETAZ" + "codePostal": "26200", + "codeCommune": "26198", + "libelleAcheminement": "MONTELIMAR", + "nomCommune": "MONTELIMAR" }, { - "codePostal": "01560", - "codeCommune": "01230", - "libelleAcheminement": "MANTENAY MONTLIN", - "nomCommune": "MANTENAY MONTLIN" + "codePostal": "26170", + "codeCommune": "26201", + "libelleAcheminement": "MONTGUERS", + "nomCommune": "MONTGUERS" }, { - "codePostal": "01340", - "codeCommune": "01236", - "libelleAcheminement": "MARSONNAS", - "nomCommune": "MARSONNAS" + "codePostal": "26230", + "codeCommune": "26203", + "libelleAcheminement": "MONTJOYER", + "nomCommune": "MONTJOYER" }, { - "codePostal": "01100", - "codeCommune": "01237", - "libelleAcheminement": "MARTIGNAT", - "nomCommune": "MARTIGNAT" + "codePostal": "26350", + "codeCommune": "26210", + "libelleAcheminement": "VALHERBASSE", + "nomCommune": "VALHERBASSE" }, { - "codePostal": "01450", - "codeCommune": "01242", - "libelleAcheminement": "MERIGNAT", - "nomCommune": "MERIGNAT" + "codePostal": "26350", + "codeCommune": "26210", + "libelleAcheminement": "VALHERBASSE", + "nomCommune": "VALHERBASSE" }, { - "codePostal": "01480", - "codeCommune": "01243", - "libelleAcheminement": "MESSIMY SUR SAONE", - "nomCommune": "MESSIMY SUR SAONE" + "codePostal": "26190", + "codeCommune": "26223", + "libelleAcheminement": "ORIOL EN ROYANS", + "nomCommune": "ORIOL EN ROYANS" }, { - "codePostal": "01800", - "codeCommune": "01244", - "libelleAcheminement": "MEXIMIEUX", - "nomCommune": "MEXIMIEUX" + "codePostal": "26750", + "codeCommune": "26225", + "libelleAcheminement": "PARNANS", + "nomCommune": "PARNANS" }, { - "codePostal": "01250", - "codeCommune": "01245", - "libelleAcheminement": "BOHAS MEYRIAT RIGNAT", - "nomCommune": "BOHAS MEYRIAT RIGNAT" + "codePostal": "26770", + "codeCommune": "26226", + "libelleAcheminement": "LE PEGUE", + "nomCommune": "LE PEGUE" }, { - "codePostal": "01390", - "codeCommune": "01248", - "libelleAcheminement": "MIONNAY", - "nomCommune": "MIONNAY" + "codePostal": "26700", + "codeCommune": "26235", + "libelleAcheminement": "PIERRELATTE", + "nomCommune": "PIERRELATTE" }, { - "codePostal": "01700", - "codeCommune": "01249", - "libelleAcheminement": "MIRIBEL", - "nomCommune": "MIRIBEL" + "codePostal": "26460", + "codeCommune": "26241", + "libelleAcheminement": "LE POET CELARD", + "nomCommune": "LE POET CELARD" }, { - "codePostal": "01700", - "codeCommune": "01249", - "libelleAcheminement": "MIRIBEL", - "nomCommune": "MIRIBEL" + "codePostal": "26150", + "codeCommune": "26246", + "libelleAcheminement": "PONET ET ST AUBAN", + "nomCommune": "PONET ET ST AUBAN" }, { - "codePostal": "01090", - "codeCommune": "01258", - "libelleAcheminement": "MONTCEAUX", - "nomCommune": "MONTCEAUX" + "codePostal": "26160", + "codeCommune": "26251", + "libelleAcheminement": "PORTES EN VALDAINE", + "nomCommune": "PORTES EN VALDAINE" }, { - "codePostal": "01090", - "codeCommune": "01263", - "libelleAcheminement": "MONTMERLE SUR SAONE", - "nomCommune": "MONTMERLE SUR SAONE" + "codePostal": "26800", + "codeCommune": "26252", + "libelleAcheminement": "PORTES LES VALENCE", + "nomCommune": "PORTES LES VALENCE" }, { - "codePostal": "01130", - "codeCommune": "01269", - "libelleAcheminement": "NANTUA", - "nomCommune": "NANTUA" + "codePostal": "26160", + "codeCommune": "26257", + "libelleAcheminement": "PUYGIRON", + "nomCommune": "PUYGIRON" }, { - "codePostal": "01160", - "codeCommune": "01273", - "libelleAcheminement": "NEUVILLE SUR AIN", - "nomCommune": "NEUVILLE SUR AIN" + "codePostal": "26330", + "codeCommune": "26259", + "libelleAcheminement": "RATIERES", + "nomCommune": "RATIERES" }, { - "codePostal": "01130", - "codeCommune": "01274", - "libelleAcheminement": "LES NEYROLLES", - "nomCommune": "LES NEYROLLES" + "codePostal": "26190", + "codeCommune": "26270", + "libelleAcheminement": "ROCHECHINARD", + "nomCommune": "ROCHECHINARD" }, { - "codePostal": "01230", - "codeCommune": "01277", - "libelleAcheminement": "NIVOLLET MONTGRIFFON", - "nomCommune": "NIVOLLET MONTGRIFFON" + "codePostal": "26400", + "codeCommune": "26277", + "libelleAcheminement": "LA ROCHE SUR GRANE", + "nomCommune": "LA ROCHE SUR GRANE" }, { - "codePostal": "01510", - "codeCommune": "01280", - "libelleAcheminement": "ORDONNAZ", - "nomCommune": "ORDONNAZ" + "codePostal": "26170", + "codeCommune": "26279", + "libelleAcheminement": "LA ROCHETTE DU BUIS", + "nomCommune": "LA ROCHETTE DU BUIS" }, { - "codePostal": "01100", - "codeCommune": "01283", - "libelleAcheminement": "OYONNAX", - "nomCommune": "OYONNAX" + "codePostal": "26450", + "codeCommune": "26287", + "libelleAcheminement": "ROYNAC", + "nomCommune": "ROYNAC" }, { - "codePostal": "01190", - "codeCommune": "01284", - "libelleAcheminement": "OZAN", - "nomCommune": "OZAN" + "codePostal": "26510", + "codeCommune": "26288", + "libelleAcheminement": "SAHUNE", + "nomCommune": "SAHUNE" }, { - "codePostal": "01800", - "codeCommune": "01290", - "libelleAcheminement": "PEROUGES", - "nomCommune": "PEROUGES" + "codePostal": "26190", + "codeCommune": "26311", + "libelleAcheminement": "ST LAURENT EN ROYANS", + "nomCommune": "ST LAURENT EN ROYANS" }, { - "codePostal": "01160", - "codeCommune": "01304", - "libelleAcheminement": "PONT D AIN", - "nomCommune": "PONT D AIN" + "codePostal": "26320", + "codeCommune": "26313", + "libelleAcheminement": "ST MARCEL LES VALENCE", + "nomCommune": "ST MARCEL LES VALENCE" }, { - "codePostal": "01460", - "codeCommune": "01307", - "libelleAcheminement": "PORT", - "nomCommune": "PORT" + "codePostal": "26750", + "codeCommune": "26319", + "libelleAcheminement": "ST MICHEL SUR SAVASSE", + "nomCommune": "ST MICHEL SUR SAVASSE" }, { - "codePostal": "01550", - "codeCommune": "01308", - "libelleAcheminement": "POUGNY", - "nomCommune": "POUGNY" + "codePostal": "26750", + "codeCommune": "26323", + "libelleAcheminement": "ST PAUL LES ROMANS", + "nomCommune": "ST PAUL LES ROMANS" }, { - "codePostal": "01300", - "codeCommune": "01310", - "libelleAcheminement": "PREMEYZEL", - "nomCommune": "PREMEYZEL" + "codePostal": "26130", + "codeCommune": "26324", + "libelleAcheminement": "ST PAUL TROIS CHATEAUX", + "nomCommune": "ST PAUL TROIS CHATEAUX" }, { - "codePostal": "01280", - "codeCommune": "01313", - "libelleAcheminement": "PREVESSIN MOENS", - "nomCommune": "PREVESSIN MOENS" + "codePostal": "26740", + "codeCommune": "26339", + "libelleAcheminement": "SAVASSE", + "nomCommune": "SAVASSE" }, { - "codePostal": "01280", - "codeCommune": "01313", - "libelleAcheminement": "PREVESSIN MOENS", - "nomCommune": "PREVESSIN MOENS" + "codePostal": "26600", + "codeCommune": "26341", + "libelleAcheminement": "SERVES SUR RHONE", + "nomCommune": "SERVES SUR RHONE" }, { - "codePostal": "01250", - "codeCommune": "01317", - "libelleAcheminement": "RAMASSE", - "nomCommune": "RAMASSE" + "codePostal": "26390", + "codeCommune": "26349", + "libelleAcheminement": "TERSANNE", + "nomCommune": "TERSANNE" }, { - "codePostal": "01750", - "codeCommune": "01320", - "libelleAcheminement": "REPLONGES", - "nomCommune": "REPLONGES" + "codePostal": "26160", + "codeCommune": "26352", + "libelleAcheminement": "LA TOUCHE", + "nomCommune": "LA TOUCHE" }, { - "codePostal": "01000", - "codeCommune": "01344", - "libelleAcheminement": "ST DENIS LES BOURG", - "nomCommune": "ST DENIS LES BOURG" + "codePostal": "26150", + "codeCommune": "26359", + "libelleAcheminement": "VACHERES EN QUINT", + "nomCommune": "VACHERES EN QUINT" }, { - "codePostal": "01800", - "codeCommune": "01349", - "libelleAcheminement": "ST ELOI", - "nomCommune": "ST ELOI" + "codePostal": "26230", + "codeCommune": "26360", + "libelleAcheminement": "VALAURIE", + "nomCommune": "VALAURIE" }, { - "codePostal": "01600", - "codeCommune": "01353", - "libelleAcheminement": "STE EUPHEMIE", - "nomCommune": "STE EUPHEMIE" + "codePostal": "26340", + "codeCommune": "26368", + "libelleAcheminement": "VERCHENY", + "nomCommune": "VERCHENY" }, { - "codePostal": "01630", - "codeCommune": "01354", - "libelleAcheminement": "ST GENIS POUILLY", - "nomCommune": "ST GENIS POUILLY" + "codePostal": "05700", + "codeCommune": "26374", + "libelleAcheminement": "VILLEBOIS LES PINS", + "nomCommune": "VILLEBOIS LES PINS" }, { - "codePostal": "01630", - "codeCommune": "01360", - "libelleAcheminement": "ST JEAN DE GONVILLE", - "nomCommune": "ST JEAN DE GONVILLE" + "codePostal": "27400", + "codeCommune": "27014", + "libelleAcheminement": "AMFREVILLE SUR ITON", + "nomCommune": "AMFREVILLE SUR ITON" }, { - "codePostal": "01150", - "codeCommune": "01366", - "libelleAcheminement": "STE JULIE", - "nomCommune": "STE JULIE" + "codePostal": "27240", + "codeCommune": "27032", + "libelleAcheminement": "CHAMBOIS", + "nomCommune": "CHAMBOIS" }, { - "codePostal": "01540", - "codeCommune": "01368", - "libelleAcheminement": "ST JULIEN SUR VEYLE", - "nomCommune": "ST JULIEN SUR VEYLE" + "codePostal": "27160", + "codeCommune": "27043", + "libelleAcheminement": "LES BAUX DE BRETEUIL", + "nomCommune": "LES BAUX DE BRETEUIL" }, { - "codePostal": "01390", - "codeCommune": "01371", - "libelleAcheminement": "ST MARCEL", - "nomCommune": "ST MARCEL" + "codePostal": "27140", + "codeCommune": "27045", + "libelleAcheminement": "BAZINCOURT SUR EPTE", + "nomCommune": "BAZINCOURT SUR EPTE" }, { - "codePostal": "01430", - "codeCommune": "01373", - "libelleAcheminement": "ST MARTIN DU FRENE", - "nomCommune": "ST MARTIN DU FRENE" + "codePostal": "27190", + "codeCommune": "27047", + "libelleAcheminement": "BEAUBRAY", + "nomCommune": "BEAUBRAY" }, { - "codePostal": "01160", - "codeCommune": "01374", - "libelleAcheminement": "ST MARTIN DU MONT", - "nomCommune": "ST MARTIN DU MONT" + "codePostal": "27480", + "codeCommune": "27048", + "libelleAcheminement": "BEAUFICEL EN LYONS", + "nomCommune": "BEAUFICEL EN LYONS" }, { - "codePostal": "01310", - "codeCommune": "01375", - "libelleAcheminement": "ST MARTIN LE CHATEL", - "nomCommune": "ST MARTIN LE CHATEL" + "codePostal": "27330", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "01700", - "codeCommune": "01376", - "libelleAcheminement": "ST MAURICE DE BEYNOST", - "nomCommune": "ST MAURICE DE BEYNOST" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "01310", - "codeCommune": "01385", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "01150", - "codeCommune": "01390", - "libelleAcheminement": "ST VULBAS", - "nomCommune": "ST VULBAS" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "01580", - "codeCommune": "01392", - "libelleAcheminement": "SAMOGNAT", - "nomCommune": "SAMOGNAT" + "codePostal": "27170", + "codeCommune": "27050", + "libelleAcheminement": "BEAUMONTEL", + "nomCommune": "BEAUMONTEL" }, { - "codePostal": "01150", - "codeCommune": "01396", - "libelleAcheminement": "SAULT BRENAZ", - "nomCommune": "SAULT BRENAZ" + "codePostal": "27800", + "codeCommune": "27052", + "libelleAcheminement": "LE BEC HELLOUIN", + "nomCommune": "LE BEC HELLOUIN" }, { - "codePostal": "01630", - "codeCommune": "01401", - "libelleAcheminement": "SERGY", - "nomCommune": "SERGY" + "codePostal": "27110", + "codeCommune": "27055", + "libelleAcheminement": "BERENGEVILLE LA CAMPAGNE", + "nomCommune": "BERENGEVILLE LA CAMPAGNE" }, { - "codePostal": "01470", - "codeCommune": "01403", - "libelleAcheminement": "SERRIERES DE BRIORD", - "nomCommune": "SERRIERES DE BRIORD" + "codePostal": "27480", + "codeCommune": "27066", + "libelleAcheminement": "BEZU LA FORET", + "nomCommune": "BEZU LA FORET" }, { - "codePostal": "01960", - "codeCommune": "01405", - "libelleAcheminement": "SERVAS", - "nomCommune": "SERVAS" + "codePostal": "27260", + "codeCommune": "27071", + "libelleAcheminement": "LE BOIS HELLAIN", + "nomCommune": "LE BOIS HELLAIN" }, { - "codePostal": "01580", - "codeCommune": "01410", - "libelleAcheminement": "SONTHONNAX LA MONTAGNE", - "nomCommune": "SONTHONNAX LA MONTAGNE" + "codePostal": "27620", + "codeCommune": "27072", + "libelleAcheminement": "BOIS JEROME ST OUEN", + "nomCommune": "BOIS JEROME ST OUEN" }, { - "codePostal": "01150", - "codeCommune": "01411", - "libelleAcheminement": "SOUCLIN", - "nomCommune": "SOUCLIN" + "codePostal": "27220", + "codeCommune": "27078", + "libelleAcheminement": "LA BOISSIERE", + "nomCommune": "LA BOISSIERE" }, { - "codePostal": "01210", - "codeCommune": "01435", - "libelleAcheminement": "VERSONNEX", - "nomCommune": "VERSONNEX" + "codePostal": "27120", + "codeCommune": "27081", + "libelleAcheminement": "BONCOURT", + "nomCommune": "BONCOURT" }, { - "codePostal": "01150", - "codeCommune": "01444", - "libelleAcheminement": "VILLEBOIS", - "nomCommune": "VILLEBOIS" + "codePostal": "27190", + "codeCommune": "27082", + "libelleAcheminement": "LA BONNEVILLE SUR ITON", + "nomCommune": "LA BONNEVILLE SUR ITON" }, { - "codePostal": "01480", - "codeCommune": "01446", - "libelleAcheminement": "VILLENEUVE", - "nomCommune": "VILLENEUVE" + "codePostal": "27290", + "codeCommune": "27089", + "libelleAcheminement": "THENOUVILLE", + "nomCommune": "THENOUVILLE" }, { - "codePostal": "01320", - "codeCommune": "01449", - "libelleAcheminement": "VILLETTE SUR AIN", - "nomCommune": "VILLETTE SUR AIN" + "codePostal": "27520", + "codeCommune": "27089", + "libelleAcheminement": "THENOUVILLE", + "nomCommune": "THENOUVILLE" }, { - "codePostal": "01800", - "codeCommune": "01450", - "libelleAcheminement": "VILLIEU LOYES MOLLON", - "nomCommune": "VILLIEU LOYES MOLLON" + "codePostal": "27480", + "codeCommune": "27094", + "libelleAcheminement": "BOSQUENTIN", + "nomCommune": "BOSQUENTIN" }, { - "codePostal": "01260", - "codeCommune": "01453", - "libelleAcheminement": "ARVIERE EN VALROMEY", - "nomCommune": "ARVIERE EN VALROMEY" + "codePostal": "27800", + "codeCommune": "27095", + "libelleAcheminement": "BOSROBERT", + "nomCommune": "BOSROBERT" }, { - "codePostal": "01260", - "codeCommune": "01453", - "libelleAcheminement": "ARVIERE EN VALROMEY", - "nomCommune": "ARVIERE EN VALROMEY" + "codePostal": "27250", + "codeCommune": "27096", + "libelleAcheminement": "LES BOTTEREAUX", + "nomCommune": "LES BOTTEREAUX" }, { - "codePostal": "01540", - "codeCommune": "01457", - "libelleAcheminement": "VONNAS", - "nomCommune": "VONNAS" + "codePostal": "27250", + "codeCommune": "27096", + "libelleAcheminement": "LES BOTTEREAUX", + "nomCommune": "LES BOTTEREAUX" }, { - "codePostal": "02110", - "codeCommune": "02006", - "libelleAcheminement": "AISONVILLE ET BERNOVILLE", - "nomCommune": "AISONVILLE ET BERNOVILLE" + "codePostal": "27930", + "codeCommune": "27099", + "libelleAcheminement": "LE BOULAY MORIN", + "nomCommune": "LE BOULAY MORIN" }, { - "codePostal": "02370", - "codeCommune": "02008", - "libelleAcheminement": "AIZY JOUY", - "nomCommune": "AIZY JOUY" + "codePostal": "27210", + "codeCommune": "27100", + "libelleAcheminement": "BOULLEVILLE", + "nomCommune": "BOULLEVILLE" }, { - "codePostal": "02800", - "codeCommune": "02017", - "libelleAcheminement": "ANGUILCOURT LE SART", - "nomCommune": "ANGUILCOURT LE SART" + "codePostal": "27310", + "codeCommune": "27102", + "libelleAcheminement": "BOUQUETOT", + "nomCommune": "BOUQUETOT" }, { - "codePostal": "02480", - "codeCommune": "02019", - "libelleAcheminement": "ANNOIS", - "nomCommune": "ANNOIS" + "codePostal": "27520", + "codeCommune": "27105", + "libelleAcheminement": "GRAND BOURGTHEROULDE", + "nomCommune": "GRAND BOURGTHEROULDE" }, { - "codePostal": "02360", - "codeCommune": "02021", - "libelleAcheminement": "ARCHON", - "nomCommune": "ARCHON" + "codePostal": "27230", + "codeCommune": "27106", + "libelleAcheminement": "BOURNAINVILLE FAVEROLLES", + "nomCommune": "BOURNAINVILLE FAVEROLLES" }, { - "codePostal": "02210", - "codeCommune": "02023", - "libelleAcheminement": "ARMENTIERES SUR OURCQ", - "nomCommune": "ARMENTIERES SUR OURCQ" + "codePostal": "27230", + "codeCommune": "27106", + "libelleAcheminement": "BOURNAINVILLE FAVEROLLES", + "nomCommune": "BOURNAINVILLE FAVEROLLES" }, { - "codePostal": "02860", - "codeCommune": "02024", - "libelleAcheminement": "ARRANCY", - "nomCommune": "ARRANCY" + "codePostal": "27230", + "codeCommune": "27106", + "libelleAcheminement": "BOURNAINVILLE FAVEROLLES", + "nomCommune": "BOURNAINVILLE FAVEROLLES" }, { - "codePostal": "02500", - "codeCommune": "02031", - "libelleAcheminement": "AUBENTON", - "nomCommune": "AUBENTON" + "codePostal": "27500", + "codeCommune": "27107", + "libelleAcheminement": "BOURNEVILLE STE CROIX", + "nomCommune": "BOURNEVILLE STE CROIX" }, { - "codePostal": "02250", - "codeCommune": "02039", - "libelleAcheminement": "AUTREMENCOURT", - "nomCommune": "AUTREMENCOURT" + "codePostal": "27580", + "codeCommune": "27108", + "libelleAcheminement": "BOURTH", + "nomCommune": "BOURTH" }, { - "codePostal": "02580", - "codeCommune": "02040", - "libelleAcheminement": "AUTREPPES", - "nomCommune": "AUTREPPES" + "codePostal": "27170", + "codeCommune": "27109", + "libelleAcheminement": "BRAY", + "nomCommune": "BRAY" }, { - "codePostal": "02220", - "codeCommune": "02054", - "libelleAcheminement": "BAZOCHES SUR VESLES", - "nomCommune": "BAZOCHES SUR VESLES" + "codePostal": "27160", + "codeCommune": "27112", + "libelleAcheminement": "BRETEUIL", + "nomCommune": "BRETEUIL" }, { - "codePostal": "02800", - "codeCommune": "02059", - "libelleAcheminement": "BEAUTOR", - "nomCommune": "BEAUTOR" + "codePostal": "27570", + "codeCommune": "27115", + "libelleAcheminement": "BREUX SUR AVRE", + "nomCommune": "BREUX SUR AVRE" }, { - "codePostal": "02450", - "codeCommune": "02067", - "libelleAcheminement": "BERGUES SUR SAMBRE", - "nomCommune": "BERGUES SUR SAMBRE" + "codePostal": "27310", + "codeCommune": "27133", + "libelleAcheminement": "CAUMONT", + "nomCommune": "CAUMONT" }, { - "codePostal": "02190", - "codeCommune": "02076", - "libelleAcheminement": "BERTRICOURT", - "nomCommune": "BERTRICOURT" + "codePostal": "27350", + "codeCommune": "27134", + "libelleAcheminement": "CAUVERVILLE EN ROUMOIS", + "nomCommune": "CAUVERVILLE EN ROUMOIS" }, { - "codePostal": "02500", - "codeCommune": "02079", - "libelleAcheminement": "BESMONT", - "nomCommune": "BESMONT" + "codePostal": "27270", + "codeCommune": "27138", + "libelleAcheminement": "CHAMBLAC", + "nomCommune": "CHAMBLAC" }, { - "codePostal": "02400", - "codeCommune": "02094", - "libelleAcheminement": "BLESMES", - "nomCommune": "BLESMES" + "codePostal": "27250", + "codeCommune": "27139", + "libelleAcheminement": "CHAMBORD", + "nomCommune": "CHAMBORD" }, { - "codePostal": "02350", - "codeCommune": "02097", - "libelleAcheminement": "BONCOURT", - "nomCommune": "BONCOURT" + "codePostal": "27930", + "codeCommune": "27147", + "libelleAcheminement": "LA CHAPELLE DU BOIS DES FAULX", + "nomCommune": "LA CHAPELLE DU BOIS DES FAULX" }, { - "codePostal": "02160", - "codeCommune": "02104", - "libelleAcheminement": "BOUFFIGNEREUX", - "nomCommune": "BOUFFIGNEREUX" + "codePostal": "27150", + "codeCommune": "27153", + "libelleAcheminement": "CHAUVINCOURT PROVEMONT", + "nomCommune": "CHAUVINCOURT PROVEMONT" }, { - "codePostal": "02000", - "codeCommune": "02108", - "libelleAcheminement": "BOURGUIGNON SOUS MONTBAVIN", - "nomCommune": "BOURGUIGNON SOUS MONTBAVIN" + "codePostal": "27930", + "codeCommune": "27158", + "libelleAcheminement": "CIERREY", + "nomCommune": "CIERREY" }, { - "codePostal": "02320", - "codeCommune": "02111", - "libelleAcheminement": "BRANCOURT EN LAONNOIS", - "nomCommune": "BRANCOURT EN LAONNOIS" + "codePostal": "27190", + "codeCommune": "27162", + "libelleAcheminement": "COLLANDRES QUINCARNON", + "nomCommune": "COLLANDRES QUINCARNON" }, { - "codePostal": "02210", - "codeCommune": "02121", - "libelleAcheminement": "BRENY", - "nomCommune": "BRENY" + "codePostal": "27190", + "codeCommune": "27165", + "libelleAcheminement": "CONCHES EN OUCHE", + "nomCommune": "CONCHES EN OUCHE" }, { - "codePostal": "02130", - "codeCommune": "02127", - "libelleAcheminement": "BRUYERES SUR FERE", - "nomCommune": "BRUYERES SUR FERE" + "codePostal": "27290", + "codeCommune": "27167", + "libelleAcheminement": "CONDE SUR RISLE", + "nomCommune": "CONDE SUR RISLE" }, { - "codePostal": "02500", - "codeCommune": "02130", - "libelleAcheminement": "BUCILLY", - "nomCommune": "BUCILLY" + "codePostal": "27430", + "codeCommune": "27168", + "libelleAcheminement": "CONNELLES", + "nomCommune": "CONNELLES" }, { - "codePostal": "02620", - "codeCommune": "02135", - "libelleAcheminement": "BUIRONFOSSE", - "nomCommune": "BUIRONFOSSE" + "codePostal": "27220", + "codeCommune": "27177", + "libelleAcheminement": "COUDRES", + "nomCommune": "COUDRES" }, { - "codePostal": "02300", - "codeCommune": "02139", - "libelleAcheminement": "CAILLOUEL CREPIGNY", - "nomCommune": "CAILLOUEL CREPIGNY" + "codePostal": "27190", + "codeCommune": "27189", + "libelleAcheminement": "LA CROISILLE", + "nomCommune": "LA CROISILLE" }, { - "codePostal": "02300", - "codeCommune": "02140", - "libelleAcheminement": "CAMELIN", - "nomCommune": "CAMELIN" + "codePostal": "27110", + "codeCommune": "27192", + "libelleAcheminement": "CROSVILLE LA VIEILLE", + "nomCommune": "CROSVILLE LA VIEILLE" }, { - "codePostal": "02330", - "codeCommune": "02146", - "libelleAcheminement": "CELLES LES CONDE", - "nomCommune": "CELLES LES CONDE" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "02870", - "codeCommune": "02151", - "libelleAcheminement": "CERNY LES BUCY", - "nomCommune": "CERNY LES BUCY" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "02000", - "codeCommune": "02155", - "libelleAcheminement": "CHAILLEVOIS", - "nomCommune": "CHAILLEVOIS" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "02670", - "codeCommune": "02159", - "libelleAcheminement": "CHAMPS", - "nomCommune": "CHAMPS" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "02310", - "codeCommune": "02163", - "libelleAcheminement": "CHARLY SUR MARNE", - "nomCommune": "CHARLY SUR MARNE" + "codePostal": "27430", + "codeCommune": "27202", + "libelleAcheminement": "DAUBEUF PRES VATTEVILLE", + "nomCommune": "DAUBEUF PRES VATTEVILLE" }, { - "codePostal": "02200", - "codeCommune": "02172", - "libelleAcheminement": "CHAUDUN", - "nomCommune": "CHAUDUN" + "codePostal": "27510", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "02370", - "codeCommune": "02176", - "libelleAcheminement": "CHAVONNE", - "nomCommune": "CHAVONNE" + "codePostal": "27510", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "02860", - "codeCommune": "02178", - "libelleAcheminement": "CHERMIZY AILLES", - "nomCommune": "CHERMIZY AILLES" + "codePostal": "27630", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "02000", - "codeCommune": "02180", - "libelleAcheminement": "CHERY LES POUILLY", - "nomCommune": "CHERY LES POUILLY" + "codePostal": "27000", + "codeCommune": "27229", + "libelleAcheminement": "EVREUX", + "nomCommune": "EVREUX" }, { - "codePostal": "02250", - "codeCommune": "02182", - "libelleAcheminement": "CHEVENNES", - "nomCommune": "CHEVENNES" + "codePostal": "27000", + "codeCommune": "27229", + "libelleAcheminement": "EVREUX", + "nomCommune": "EVREUX" }, { - "codePostal": "02400", - "codeCommune": "02187", - "libelleAcheminement": "CHIERRY", - "nomCommune": "CHIERRY" + "codePostal": "27120", + "codeCommune": "27231", + "libelleAcheminement": "FAINS", + "nomCommune": "FAINS" }, { - "codePostal": "02000", - "codeCommune": "02191", - "libelleAcheminement": "CHIVY LES ETOUVELLES", - "nomCommune": "CHIVY LES ETOUVELLES" + "codePostal": "27210", + "codeCommune": "27233", + "libelleAcheminement": "FATOUVILLE GRESTAIN", + "nomCommune": "FATOUVILLE GRESTAIN" }, { - "codePostal": "02210", - "codeCommune": "02192", - "libelleAcheminement": "CHOUY", - "nomCommune": "CHOUY" + "codePostal": "27230", + "codeCommune": "27237", + "libelleAcheminement": "LE FAVRIL", + "nomCommune": "LE FAVRIL" }, { - "codePostal": "02250", - "codeCommune": "02194", - "libelleAcheminement": "CILLY", - "nomCommune": "CILLY" + "codePostal": "27210", + "codeCommune": "27243", + "libelleAcheminement": "FIQUEFLEUR EQUAINVILLE", + "nomCommune": "FIQUEFLEUR EQUAINVILLE" }, { - "codePostal": "02000", - "codeCommune": "02196", - "libelleAcheminement": "CLACY ET THIERRET", - "nomCommune": "CLACY ET THIERRET" + "codePostal": "27380", + "codeCommune": "27246", + "libelleAcheminement": "FLEURY SUR ANDELLE", + "nomCommune": "FLEURY SUR ANDELLE" }, { - "codePostal": "02360", - "codeCommune": "02204", - "libelleAcheminement": "COINGT", - "nomCommune": "COINGT" + "codePostal": "27210", + "codeCommune": "27258", + "libelleAcheminement": "FORT MOVILLE", + "nomCommune": "FORT MOVILLE" }, { - "codePostal": "02120", - "codeCommune": "02206", - "libelleAcheminement": "COLONFAY", - "nomCommune": "COLONFAY" + "codePostal": "27150", + "codeCommune": "27276", + "libelleAcheminement": "GAMACHES EN VEXIN", + "nomCommune": "GAMACHES EN VEXIN" }, { - "codePostal": "02820", - "codeCommune": "02215", - "libelleAcheminement": "CORBENY", - "nomCommune": "CORBENY" + "codePostal": "27220", + "codeCommune": "27277", + "libelleAcheminement": "LA BARONNIE", + "nomCommune": "LA BARONNIE" }, { - "codePostal": "02380", - "codeCommune": "02217", - "libelleAcheminement": "COUCY LE CHATEAU AUFFRIQUE", - "nomCommune": "COUCY LE CHATEAU AUFFRIQUE" + "codePostal": "27440", + "codeCommune": "27294", + "libelleAcheminement": "VAL D ORGER", + "nomCommune": "VAL D ORGER" }, { - "codePostal": "02380", - "codeCommune": "02219", - "libelleAcheminement": "COUCY LA VILLE", - "nomCommune": "COUCY LA VILLE" + "codePostal": "27370", + "codeCommune": "27302", + "libelleAcheminement": "LE BOSC DU THEIL", + "nomCommune": "LE BOSC DU THEIL" }, { - "codePostal": "02270", - "codeCommune": "02231", - "libelleAcheminement": "COUVRON ET AUMENCOURT", - "nomCommune": "COUVRON ET AUMENCOURT" + "codePostal": "27120", + "codeCommune": "27312", + "libelleAcheminement": "HARDENCOURT COCHEREL", + "nomCommune": "HARDENCOURT COCHEREL" }, { - "codePostal": "02600", - "codeCommune": "02232", - "libelleAcheminement": "COYOLLES", - "nomCommune": "COYOLLES" + "codePostal": "27350", + "codeCommune": "27316", + "libelleAcheminement": "HAUVILLE", + "nomCommune": "HAUVILLE" }, { - "codePostal": "02880", - "codeCommune": "02243", - "libelleAcheminement": "CROUY", - "nomCommune": "CROUY" + "codePostal": "27350", + "codeCommune": "27319", + "libelleAcheminement": "LA HAYE DE ROUTOT", + "nomCommune": "LA HAYE DE ROUTOT" }, { - "codePostal": "02880", - "codeCommune": "02245", - "libelleAcheminement": "CUFFIES", - "nomCommune": "CUFFIES" + "codePostal": "27400", + "codeCommune": "27322", + "libelleAcheminement": "LA HAYE MALHERBE", + "nomCommune": "LA HAYE MALHERBE" }, { - "codePostal": "02480", - "codeCommune": "02246", - "libelleAcheminement": "CUGNY", - "nomCommune": "CUGNY" + "codePostal": "27330", + "codeCommune": "27323", + "libelleAcheminement": "LA HAYE ST SYLVESTRE", + "nomCommune": "LA HAYE ST SYLVESTRE" }, { - "codePostal": "02160", - "codeCommune": "02250", - "libelleAcheminement": "CUIRY LES CHAUDARDES", - "nomCommune": "CUIRY LES CHAUDARDES" + "codePostal": "27120", + "codeCommune": "27326", + "libelleAcheminement": "HECOURT", + "nomCommune": "HECOURT" }, { - "codePostal": "02360", - "codeCommune": "02251", - "libelleAcheminement": "CUIRY LES IVIERS", - "nomCommune": "CUIRY LES IVIERS" + "codePostal": "27630", + "codeCommune": "27331", + "libelleAcheminement": "HEUBECOURT HARICOURT", + "nomCommune": "HEUBECOURT HARICOURT" }, { - "codePostal": "02680", - "codeCommune": "02257", - "libelleAcheminement": "DALLON", - "nomCommune": "DALLON" + "codePostal": "27910", + "codeCommune": "27338", + "libelleAcheminement": "LES HOGUES", + "nomCommune": "LES HOGUES" }, { - "codePostal": "02600", - "codeCommune": "02259", - "libelleAcheminement": "DAMPLEUX", - "nomCommune": "DAMPLEUX" + "codePostal": "27410", + "codeCommune": "27345", + "libelleAcheminement": "LA HOUSSAYE", + "nomCommune": "LA HOUSSAYE" }, { - "codePostal": "02340", - "codeCommune": "02264", - "libelleAcheminement": "DIZY LE GROS", - "nomCommune": "DIZY LE GROS" + "codePostal": "27770", + "codeCommune": "27350", + "libelleAcheminement": "ILLIERS L EVEQUE", + "nomCommune": "ILLIERS L EVEQUE" }, { - "codePostal": "02360", - "codeCommune": "02266", - "libelleAcheminement": "DOLIGNON", - "nomCommune": "DOLIGNON" + "codePostal": "27930", + "codeCommune": "27353", + "libelleAcheminement": "IRREVILLE", + "nomCommune": "IRREVILLE" }, { - "codePostal": "02600", - "codeCommune": "02267", - "libelleAcheminement": "DOMMIERS", - "nomCommune": "DOMMIERS" + "codePostal": "27910", + "codeCommune": "27366", + "libelleAcheminement": "LETTEGUIVES", + "nomCommune": "LETTEGUIVES" }, { - "codePostal": "02450", - "codeCommune": "02269", - "libelleAcheminement": "DORENGT", - "nomCommune": "DORENGT" + "codePostal": "27440", + "codeCommune": "27370", + "libelleAcheminement": "LISORS", + "nomCommune": "LISORS" }, { - "codePostal": "02500", - "codeCommune": "02275", - "libelleAcheminement": "EFFRY", - "nomCommune": "EFFRY" + "codePostal": "27800", + "codeCommune": "27371", + "libelleAcheminement": "LIVET SUR AUTHOU", + "nomCommune": "LIVET SUR AUTHOU" }, { - "codePostal": "02540", - "codeCommune": "02281", - "libelleAcheminement": "L EPINE AUX BOIS", - "nomCommune": "L EPINE AUX BOIS" + "codePostal": "27480", + "codeCommune": "27373", + "libelleAcheminement": "LORLEAU", + "nomCommune": "LORLEAU" }, { - "codePostal": "02250", - "codeCommune": "02283", - "libelleAcheminement": "ERLON", - "nomCommune": "ERLON" + "codePostal": "27800", + "codeCommune": "27380", + "libelleAcheminement": "MALLEVILLE SUR LE BEC", + "nomCommune": "MALLEVILLE SUR LE BEC" }, { - "codePostal": "02400", - "codeCommune": "02290", - "libelleAcheminement": "ESSOMES SUR MARNE", - "nomCommune": "ESSOMES SUR MARNE" + "codePostal": "27320", + "codeCommune": "27390", + "libelleAcheminement": "MARCILLY LA CAMPAGNE", + "nomCommune": "MARCILLY LA CAMPAGNE" }, { - "codePostal": "02510", - "codeCommune": "02298", - "libelleAcheminement": "ETREUX", - "nomCommune": "ETREUX" + "codePostal": "27810", + "codeCommune": "27391", + "libelleAcheminement": "MARCILLY SUR EURE", + "nomCommune": "MARCILLY SUR EURE" }, { - "codePostal": "02800", - "codeCommune": "02304", - "libelleAcheminement": "LA FERE", - "nomCommune": "LA FERE" + "codePostal": "27150", + "codeCommune": "27392", + "libelleAcheminement": "MARTAGNY", + "nomCommune": "MARTAGNY" }, { - "codePostal": "02840", - "codeCommune": "02309", - "libelleAcheminement": "FESTIEUX", - "nomCommune": "FESTIEUX" + "codePostal": "27300", + "codeCommune": "27398", + "libelleAcheminement": "MENNEVAL", + "nomCommune": "MENNEVAL" }, { - "codePostal": "02120", - "codeCommune": "02313", - "libelleAcheminement": "FLAVIGNY LE GRAND ET BEAURAIN", - "nomCommune": "FLAVIGNY LE GRAND ET BEAURAIN" + "codePostal": "27950", + "codeCommune": "27399", + "libelleAcheminement": "MERCEY", + "nomCommune": "MERCEY" }, { - "codePostal": "02680", - "codeCommune": "02320", - "libelleAcheminement": "FONTAINE LES CLERCS", - "nomCommune": "FONTAINE LES CLERCS" + "codePostal": "27320", + "codeCommune": "27411", + "libelleAcheminement": "MOISVILLE", + "nomCommune": "MOISVILLE" }, { - "codePostal": "02110", - "codeCommune": "02322", - "libelleAcheminement": "FONTAINE NOTRE DAME", - "nomCommune": "FONTAINE NOTRE DAME" + "codePostal": "27400", + "codeCommune": "27412", + "libelleAcheminement": "TERRES DE BORD", + "nomCommune": "TERRES DE BORD" }, { - "codePostal": "02590", - "codeCommune": "02327", - "libelleAcheminement": "FORESTE", - "nomCommune": "FORESTE" + "codePostal": "27260", + "codeCommune": "27415", + "libelleAcheminement": "MORAINVILLE JOUVEAUX", + "nomCommune": "MORAINVILLE JOUVEAUX" }, { - "codePostal": "02650", - "codeCommune": "02328", - "libelleAcheminement": "FOSSOY", - "nomCommune": "FOSSOY" + "codePostal": "27220", + "codeCommune": "27419", + "libelleAcheminement": "MOUETTES", + "nomCommune": "MOUETTES" }, { - "codePostal": "02140", - "codeCommune": "02331", - "libelleAcheminement": "FRANQUEVILLE", - "nomCommune": "FRANQUEVILLE" + "codePostal": "27560", + "codeCommune": "27434", + "libelleAcheminement": "NOARDS", + "nomCommune": "NOARDS" }, { - "codePostal": "02260", - "codeCommune": "02337", - "libelleAcheminement": "FROIDESTREES", - "nomCommune": "FROIDESTREES" + "codePostal": "27320", + "codeCommune": "27438", + "libelleAcheminement": "NONANCOURT", + "nomCommune": "NONANCOURT" }, { - "codePostal": "02270", - "codeCommune": "02338", - "libelleAcheminement": "FROIDMONT COHARTILLE", - "nomCommune": "FROIDMONT COHARTILLE" + "codePostal": "27800", + "codeCommune": "27441", + "libelleAcheminement": "NOTRE DAME D EPINE", + "nomCommune": "NOTRE DAME D EPINE" }, { - "codePostal": "02140", - "codeCommune": "02341", - "libelleAcheminement": "GERCY", - "nomCommune": "GERCY" + "codePostal": "27410", + "codeCommune": "27444", + "libelleAcheminement": "LE NOYER EN OUCHE", + "nomCommune": "LE NOYER EN OUCHE" }, { - "codePostal": "02420", - "codeCommune": "02352", - "libelleAcheminement": "GOUY", - "nomCommune": "GOUY" + "codePostal": "27190", + "codeCommune": "27447", + "libelleAcheminement": "LE VAL DORE", + "nomCommune": "LE VAL DORE" }, { - "codePostal": "02140", - "codeCommune": "02357", - "libelleAcheminement": "GRONARD", - "nomCommune": "GRONARD" + "codePostal": "27590", + "codeCommune": "27458", + "libelleAcheminement": "PITRES", + "nomCommune": "PITRES" }, { - "codePostal": "02110", - "codeCommune": "02358", - "libelleAcheminement": "GROUGIS", - "nomCommune": "GROUGIS" + "codePostal": "27300", + "codeCommune": "27463", + "libelleAcheminement": "PLASNES", + "nomCommune": "PLASNES" }, { - "codePostal": "02680", - "codeCommune": "02359", - "libelleAcheminement": "GRUGIES", - "nomCommune": "GRUGIES" + "codePostal": "27110", + "codeCommune": "27486", + "libelleAcheminement": "QUITTEBEUF", + "nomCommune": "QUITTEBEUF" }, { - "codePostal": "02100", - "codeCommune": "02371", - "libelleAcheminement": "HARLY", - "nomCommune": "HARLY" + "codePostal": "27380", + "codeCommune": "27487", + "libelleAcheminement": "RADEPONT", + "nomCommune": "RADEPONT" }, { - "codePostal": "02720", - "codeCommune": "02383", - "libelleAcheminement": "HOMBLIERES", - "nomCommune": "HOMBLIERES" + "codePostal": "27910", + "codeCommune": "27488", + "libelleAcheminement": "RENNEVILLE", + "nomCommune": "RENNEVILLE" }, { - "codePostal": "02140", - "codeCommune": "02384", - "libelleAcheminement": "HOURY", - "nomCommune": "HOURY" + "codePostal": "27700", + "codeCommune": "27495", + "libelleAcheminement": "LA ROQUETTE", + "nomCommune": "LA ROQUETTE" }, { - "codePostal": "02510", - "codeCommune": "02386", - "libelleAcheminement": "IRON", - "nomCommune": "IRON" + "codePostal": "27250", + "codeCommune": "27502", + "libelleAcheminement": "RUGLES", + "nomCommune": "RUGLES" }, { - "codePostal": "02240", - "codeCommune": "02387", - "libelleAcheminement": "ITANCOURT", - "nomCommune": "ITANCOURT" + "codePostal": "27220", + "codeCommune": "27507", + "libelleAcheminement": "ST ANDRE DE L EURE", + "nomCommune": "ST ANDRE DE L EURE" }, { - "codePostal": "02360", - "codeCommune": "02388", - "libelleAcheminement": "IVIERS", - "nomCommune": "IVIERS" + "codePostal": "27300", + "codeCommune": "27516", + "libelleAcheminement": "TREIS SANTS EN OUCHE", + "nomCommune": "TREIS SANTS EN OUCHE" }, { - "codePostal": "02850", - "codeCommune": "02389", - "libelleAcheminement": "JAULGONNE", - "nomCommune": "JAULGONNE" + "codePostal": "27680", + "codeCommune": "27518", + "libelleAcheminement": "ST AUBIN SUR QUILLEBEUF", + "nomCommune": "ST AUBIN SUR QUILLEBEUF" }, { - "codePostal": "02140", - "codeCommune": "02401", - "libelleAcheminement": "LAIGNY", - "nomCommune": "LAIGNY" + "codePostal": "27370", + "codeCommune": "27529", + "libelleAcheminement": "ST CYR LA CAMPAGNE", + "nomCommune": "ST CYR LA CAMPAGNE" }, { - "codePostal": "02120", - "codeCommune": "02403", - "libelleAcheminement": "LANDIFAY ET BERTAIGNEMONT", - "nomCommune": "LANDIFAY ET BERTAIGNEMONT" + "codePostal": "27390", + "codeCommune": "27530", + "libelleAcheminement": "ST DENIS D AUGERONS", + "nomCommune": "ST DENIS D AUGERONS" }, { - "codePostal": "02140", - "codeCommune": "02405", - "libelleAcheminement": "LANDOUZY LA VILLE", - "nomCommune": "LANDOUZY LA VILLE" + "codePostal": "27140", + "codeCommune": "27533", + "libelleAcheminement": "ST DENIS LE FERMENT", + "nomCommune": "ST DENIS LE FERMENT" }, { - "codePostal": "02600", - "codeCommune": "02415", - "libelleAcheminement": "LAVERSINE", - "nomCommune": "LAVERSINE" + "codePostal": "27430", + "codeCommune": "27537", + "libelleAcheminement": "ST ETIENNE DU VAUVRAY", + "nomCommune": "ST ETIENNE DU VAUVRAY" }, { - "codePostal": "02880", - "codeCommune": "02424", - "libelleAcheminement": "LEURY", - "nomCommune": "LEURY" + "codePostal": "27600", + "codeCommune": "27553", + "libelleAcheminement": "ST JULIEN DE LA LIEGUE", + "nomCommune": "ST JULIEN DE LA LIEGUE" }, { - "codePostal": "02500", - "codeCommune": "02425", - "libelleAcheminement": "LEUZE", - "nomCommune": "LEUZE" + "codePostal": "27950", + "codeCommune": "27562", + "libelleAcheminement": "ST MARCEL", + "nomCommune": "ST MARCEL" }, { - "codePostal": "02420", - "codeCommune": "02426", - "libelleAcheminement": "LEVERGIES", - "nomCommune": "LEVERGIES" + "codePostal": "27160", + "codeCommune": "27565", + "libelleAcheminement": "LE LESME", + "nomCommune": "LE LESME" }, { - "codePostal": "02220", - "codeCommune": "02427", - "libelleAcheminement": "LHUYS", - "nomCommune": "LHUYS" + "codePostal": "27160", + "codeCommune": "27565", + "libelleAcheminement": "LE LESME", + "nomCommune": "LE LESME" }, { - "codePostal": "02810", - "codeCommune": "02428", - "libelleAcheminement": "LICY CLIGNON", - "nomCommune": "LICY CLIGNON" + "codePostal": "27370", + "codeCommune": "27572", + "libelleAcheminement": "ST MESLIN DU BOSC", + "nomCommune": "ST MESLIN DU BOSC" }, { - "codePostal": "02860", - "codeCommune": "02429", - "libelleAcheminement": "LIERVAL", - "nomCommune": "LIERVAL" + "codePostal": "27670", + "codeCommune": "27582", + "libelleAcheminement": "ST OUEN DU TILLEUL", + "nomCommune": "ST OUEN DU TILLEUL" }, { - "codePostal": "02700", - "codeCommune": "02431", - "libelleAcheminement": "LIEZ", - "nomCommune": "LIEZ" + "codePostal": "27390", + "codeCommune": "27590", + "libelleAcheminement": "ST PIERRE DE CERNIERES", + "nomCommune": "ST PIERRE DE CERNIERES" }, { - "codePostal": "02400", - "codeCommune": "02443", - "libelleAcheminement": "LUCY LE BOCAGE", - "nomCommune": "LUCY LE BOCAGE" + "codePostal": "27210", + "codeCommune": "27597", + "libelleAcheminement": "ST PIERRE DU VAL", + "nomCommune": "ST PIERRE DU VAL" }, { - "codePostal": "02500", - "codeCommune": "02445", - "libelleAcheminement": "LUZOIR", - "nomCommune": "LUZOIR" + "codePostal": "27430", + "codeCommune": "27598", + "libelleAcheminement": "ST PIERRE DU VAUVRAY", + "nomCommune": "ST PIERRE DU VAUVRAY" }, { - "codePostal": "02540", - "codeCommune": "02458", - "libelleAcheminement": "DHUYS ET MORIN EN BRIE", - "nomCommune": "DHUYS ET MORIN EN BRIE" + "codePostal": "27500", + "codeCommune": "27606", + "libelleAcheminement": "ST SYMPHORIEN", + "nomCommune": "ST SYMPHORIEN" }, { - "codePostal": "02880", - "codeCommune": "02464", - "libelleAcheminement": "MARGIVAL", - "nomCommune": "MARGIVAL" + "codePostal": "27230", + "codeCommune": "27613", + "libelleAcheminement": "ST VINCENT DU BOULAY", + "nomCommune": "ST VINCENT DU BOULAY" }, { - "codePostal": "02820", - "codeCommune": "02472", - "libelleAcheminement": "MAUREGNY EN HAYE", - "nomCommune": "MAUREGNY EN HAYE" + "codePostal": "27930", + "codeCommune": "27615", + "libelleAcheminement": "SASSEY", + "nomCommune": "SASSEY" }, { - "codePostal": "02000", - "codeCommune": "02478", - "libelleAcheminement": "MERLIEUX ET FOUQUEROLLES", - "nomCommune": "MERLIEUX ET FOUQUEROLLES" + "codePostal": "27420", + "codeCommune": "27625", + "libelleAcheminement": "SUZAY", + "nomCommune": "SUZAY" }, { - "codePostal": "02160", - "codeCommune": "02482", - "libelleAcheminement": "MEURIVAL", - "nomCommune": "MEURIVAL" + "codePostal": "27230", + "codeCommune": "27627", + "libelleAcheminement": "LE THEIL NOLENT", + "nomCommune": "LE THEIL NOLENT" }, { - "codePostal": "02000", - "codeCommune": "02490", - "libelleAcheminement": "MONAMPTEUIL", - "nomCommune": "MONAMPTEUIL" + "codePostal": "27150", + "codeCommune": "27632", + "libelleAcheminement": "LE THIL EN VEXIN", + "nomCommune": "LE THIL" }, { - "codePostal": "02820", - "codeCommune": "02498", - "libelleAcheminement": "MONTAIGU", - "nomCommune": "MONTAIGU" + "codePostal": "27170", + "codeCommune": "27640", + "libelleAcheminement": "TILLEUL DAME AGNES", + "nomCommune": "TILLEUL DAME AGNES" }, { - "codePostal": "02390", - "codeCommune": "02503", - "libelleAcheminement": "MONT D ORIGNY", - "nomCommune": "MONT D ORIGNY" + "codePostal": "27110", + "codeCommune": "27641", + "libelleAcheminement": "LE TILLEUL LAMBERT", + "nomCommune": "LE TILLEUL LAMBERT" }, { - "codePostal": "02250", - "codeCommune": "02516", - "libelleAcheminement": "MONTIGNY SOUS MARLE", - "nomCommune": "MONTIGNY SOUS MARLE" + "codePostal": "27310", + "codeCommune": "27661", + "libelleAcheminement": "LA TRINITE DE THOUBERVILLE", + "nomCommune": "LA TRINITE DE THOUBERVILLE" }, { - "codePostal": "02220", - "codeCommune": "02520", - "libelleAcheminement": "MONT NOTRE DAME", - "nomCommune": "MONT NOTRE DAME" + "codePostal": "27500", + "codeCommune": "27662", + "libelleAcheminement": "TRIQUEVILLE", + "nomCommune": "TRIQUEVILLE" }, { - "codePostal": "02220", - "codeCommune": "02523", - "libelleAcheminement": "MONT ST MARTIN", - "nomCommune": "MONT ST MARTIN" + "codePostal": "27400", + "codeCommune": "27666", + "libelleAcheminement": "LA VACHERIE", + "nomCommune": "LA VACHERIE" }, { - "codePostal": "02400", - "codeCommune": "02524", - "libelleAcheminement": "MONT ST PERE", - "nomCommune": "MONT ST PERE" + "codePostal": "27380", + "codeCommune": "27670", + "libelleAcheminement": "VANDRIMARE", + "nomCommune": "VANDRIMARE" }, { - "codePostal": "02360", - "codeCommune": "02526", - "libelleAcheminement": "MORGNY EN THIERACHE", - "nomCommune": "MORGNY EN THIERACHE" + "codePostal": "27210", + "codeCommune": "27671", + "libelleAcheminement": "VANNECROCQ", + "nomCommune": "VANNECROCQ" }, { - "codePostal": "02610", - "codeCommune": "02532", - "libelleAcheminement": "MOY DE L AISNE", - "nomCommune": "MOY DE L AISNE" + "codePostal": "27120", + "codeCommune": "27674", + "libelleAcheminement": "VAUX SUR EURE", + "nomCommune": "VAUX SUR EURE" }, { - "codePostal": "02160", - "codeCommune": "02534", - "libelleAcheminement": "MUSCOURT", - "nomCommune": "MUSCOURT" + "codePostal": "27160", + "codeCommune": "27679", + "libelleAcheminement": "VERNEUIL D AVRE ET D ITON", + "nomCommune": "VERNEUIL D AVRE ET D ITON" }, { - "codePostal": "02420", - "codeCommune": "02539", - "libelleAcheminement": "NAUROY", - "nomCommune": "NAUROY" + "codePostal": "27200", + "codeCommune": "27681", + "libelleAcheminement": "VERNON", + "nomCommune": "VERNON" }, { - "codePostal": "02470", - "codeCommune": "02543", - "libelleAcheminement": "NEUILLY ST FRONT", - "nomCommune": "NEUILLY ST FRONT" + "codePostal": "27870", + "codeCommune": "27682", + "libelleAcheminement": "VESLY", + "nomCommune": "VESLY" }, { - "codePostal": "02500", - "codeCommune": "02544", - "libelleAcheminement": "NEUVE MAISON", - "nomCommune": "NEUVE MAISON" + "codePostal": "27700", + "codeCommune": "27683", + "libelleAcheminement": "VEZILLON", + "nomCommune": "VEZILLON" }, { - "codePostal": "02300", - "codeCommune": "02546", - "libelleAcheminement": "LA NEUVILLE EN BEINE", - "nomCommune": "LA NEUVILLE EN BEINE" + "codePostal": "27330", + "codeCommune": "27685", + "libelleAcheminement": "LA VIEILLE LYRE", + "nomCommune": "LA VIEILLE LYRE" }, { - "codePostal": "02150", - "codeCommune": "02553", - "libelleAcheminement": "NIZY LE COMTE", - "nomCommune": "NIZY LE COMTE" + "codePostal": "27640", + "codeCommune": "27696", + "libelleAcheminement": "VILLIERS EN DESOEUVRE", + "nomCommune": "VILLIERS EN DESOEUVRE" }, { - "codePostal": "02600", - "codeCommune": "02557", - "libelleAcheminement": "NOROY SUR OURCQ", - "nomCommune": "NOROY SUR OURCQ" + "codePostal": "28150", + "codeCommune": "28004", + "libelleAcheminement": "ALLONNES", + "nomCommune": "ALLONNES" }, { - "codePostal": "02300", - "codeCommune": "02566", - "libelleAcheminement": "OGNES", - "nomCommune": "OGNES" + "codePostal": "28290", + "codeCommune": "28012", + "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", + "nomCommune": "COMMUNE NOUVELLE D ARROU" }, { - "codePostal": "02600", - "codeCommune": "02568", - "libelleAcheminement": "OIGNY EN VALOIS", - "nomCommune": "OIGNY EN VALOIS" + "codePostal": "28700", + "codeCommune": "28015", + "libelleAcheminement": "AUNEAU BLEURY ST SYMPHORIEN", + "nomCommune": "AUNEAU BLEURY ST SYMPHORIEN" }, { - "codePostal": "02190", - "codeCommune": "02572", - "libelleAcheminement": "ORAINVILLE", - "nomCommune": "ORAINVILLE" + "codePostal": "28320", + "codeCommune": "28023", + "libelleAcheminement": "BAILLEAU ARMENONVILLE", + "nomCommune": "BAILLEAU ARMENONVILLE" }, { - "codePostal": "02210", - "codeCommune": "02580", - "libelleAcheminement": "OULCHY LE CHATEAU", - "nomCommune": "OULCHY LE CHATEAU" + "codePostal": "28330", + "codeCommune": "28027", + "libelleAcheminement": "LA BAZOCHE GOUET", + "nomCommune": "LA BAZOCHE GOUET" }, { - "codePostal": "02220", - "codeCommune": "02581", - "libelleAcheminement": "PAARS", - "nomCommune": "PAARS" + "codePostal": "28300", + "codeCommune": "28034", + "libelleAcheminement": "BERCHERES ST GERMAIN", + "nomCommune": "BERCHERES ST GERMAIN" }, { - "codePostal": "02860", - "codeCommune": "02583", - "libelleAcheminement": "PANCY COURTECON", - "nomCommune": "PANCY COURTECON" + "codePostal": "28630", + "codeCommune": "28035", + "libelleAcheminement": "BERCHERES LES PIERRES", + "nomCommune": "BERCHERES LES PIERRES" }, { - "codePostal": "02360", - "codeCommune": "02586", - "libelleAcheminement": "PARFONDEVAL", - "nomCommune": "PARFONDEVAL" + "codePostal": "28260", + "codeCommune": "28036", + "libelleAcheminement": "BERCHERES SUR VESGRE", + "nomCommune": "BERCHERES SUR VESGRE" }, { - "codePostal": "02470", - "codeCommune": "02594", - "libelleAcheminement": "PASSY EN VALOIS", - "nomCommune": "PASSY EN VALOIS" + "codePostal": "28190", + "codeCommune": "28040", + "libelleAcheminement": "BILLANCELLES", + "nomCommune": "BILLANCELLES" }, { - "codePostal": "02850", - "codeCommune": "02595", - "libelleAcheminement": "PASSY SUR MARNE", - "nomCommune": "PASSY SUR MARNE" + "codePostal": "28500", + "codeCommune": "28045", + "libelleAcheminement": "BOISSY EN DROUAIS", + "nomCommune": "BOISSY EN DROUAIS" }, { - "codePostal": "02310", - "codeCommune": "02596", - "libelleAcheminement": "PAVANT", - "nomCommune": "PAVANT" + "codePostal": "28150", + "codeCommune": "28047", + "libelleAcheminement": "BOISVILLE LA ST PERE", + "nomCommune": "BOISVILLE LA ST PERE" }, { - "codePostal": "02190", - "codeCommune": "02601", - "libelleAcheminement": "PIGNICOURT", - "nomCommune": "PIGNICOURT" + "codePostal": "28360", + "codeCommune": "28048", + "libelleAcheminement": "LA BOURDINIERE ST LOUP", + "nomCommune": "LA BOURDINIERE ST LOUP" }, { - "codePostal": "02210", - "codeCommune": "02606", - "libelleAcheminement": "LE PLESSIER HULEU", - "nomCommune": "LE PLESSIER HULEU" + "codePostal": "28260", + "codeCommune": "28050", + "libelleAcheminement": "BONCOURT", + "nomCommune": "BONCOURT" }, { - "codePostal": "02160", - "codeCommune": "02613", - "libelleAcheminement": "PONTAVERT", - "nomCommune": "PONTAVERT" + "codePostal": "28800", + "codeCommune": "28051", + "libelleAcheminement": "BONNEVAL", + "nomCommune": "BONNEVAL" }, { - "codePostal": "02380", - "codeCommune": "02616", - "libelleAcheminement": "PONT ST MARD", - "nomCommune": "PONT ST MARD" + "codePostal": "28410", + "codeCommune": "28062", + "libelleAcheminement": "BROUE", + "nomCommune": "BROUE" }, { - "codePostal": "02600", - "codeCommune": "02628", - "libelleAcheminement": "PUISEUX EN RETZ", - "nomCommune": "PUISEUX EN RETZ" + "codePostal": "28330", + "codeCommune": "28078", + "libelleAcheminement": "CHAPELLE GUILLAUME", + "nomCommune": "CHAPELLE GUILLAUME" }, { - "codePostal": "02220", - "codeCommune": "02633", - "libelleAcheminement": "QUINCY SOUS LE MONT", - "nomCommune": "QUINCY SOUS LE MONT" + "codePostal": "28480", + "codeCommune": "28086", + "libelleAcheminement": "CHASSANT", + "nomCommune": "CHASSANT" }, { - "codePostal": "02240", - "codeCommune": "02640", - "libelleAcheminement": "RENANSART", - "nomCommune": "RENANSART" + "codePostal": "28170", + "codeCommune": "28089", + "libelleAcheminement": "CHATEAUNEUF EN THYMERAIS", + "nomCommune": "CHATEAUNEUF EN THYMERAIS" }, { - "codePostal": "02360", - "codeCommune": "02642", - "libelleAcheminement": "RESIGNY", - "nomCommune": "RESIGNY" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "02600", - "codeCommune": "02644", - "libelleAcheminement": "RETHEUIL", - "nomCommune": "RETHEUIL" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "02260", - "codeCommune": "02650", - "libelleAcheminement": "ROCQUIGNY", - "nomCommune": "ROCQUIGNY" + "codePostal": "28630", + "codeCommune": "28107", + "libelleAcheminement": "CORANCEZ", + "nomCommune": "CORANCEZ" }, { - "codePostal": "02160", - "codeCommune": "02656", - "libelleAcheminement": "ROUCY", - "nomCommune": "ROUCY" + "codePostal": "28210", + "codeCommune": "28113", + "libelleAcheminement": "COULOMBS", + "nomCommune": "COULOMBS" }, { - "codePostal": "02100", - "codeCommune": "02659", - "libelleAcheminement": "ROUVROY", - "nomCommune": "ROUVROY" + "codePostal": "28270", + "codeCommune": "28120", + "libelleAcheminement": "CRUCEY VILLAGES", + "nomCommune": "CRUCEY VILLAGES" }, { - "codePostal": "02360", - "codeCommune": "02660", - "libelleAcheminement": "ROUVROY SUR SERRE", - "nomCommune": "ROUVROY SUR SERRE" + "codePostal": "28190", + "codeCommune": "28128", + "libelleAcheminement": "DANGERS", + "nomCommune": "DANGERS" }, { - "codePostal": "02210", - "codeCommune": "02662", - "libelleAcheminement": "ROZET ST ALBIN", - "nomCommune": "ROZET ST ALBIN" + "codePostal": "28320", + "codeCommune": "28137", + "libelleAcheminement": "ECROSNES", + "nomCommune": "ECROSNES" }, { - "codePostal": "02540", - "codeCommune": "02664", - "libelleAcheminement": "ROZOY BELLEVALLE", - "nomCommune": "ROZOY BELLEVALLE" + "codePostal": "28120", + "codeCommune": "28139", + "libelleAcheminement": "EPEAUTROLLES", + "nomCommune": "EPEAUTROLLES" }, { - "codePostal": "02300", - "codeCommune": "02671", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "28120", + "codeCommune": "28141", + "libelleAcheminement": "ERMENONVILLE LA GRANDE", + "nomCommune": "ERMENONVILLE LA GRANDE" }, { - "codePostal": "02810", - "codeCommune": "02679", - "libelleAcheminement": "ST GENGOULPH", - "nomCommune": "ST GENGOULPH" + "codePostal": "28240", + "codeCommune": "28156", + "libelleAcheminement": "FONTAINE SIMON", + "nomCommune": "FONTAINE SIMON" }, { - "codePostal": "02830", - "codeCommune": "02684", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "28630", + "codeCommune": "28158", + "libelleAcheminement": "FONTENAY SUR EURE", + "nomCommune": "FONTENAY SUR EURE" }, { - "codePostal": "02250", - "codeCommune": "02689", - "libelleAcheminement": "ST PIERREMONT", - "nomCommune": "ST PIERREMONT" + "codePostal": "28160", + "codeCommune": "28161", + "libelleAcheminement": "FRAZE", + "nomCommune": "FRAZE" }, { - "codePostal": "02820", - "codeCommune": "02696", - "libelleAcheminement": "ST THOMAS", - "nomCommune": "ST THOMAS" + "codePostal": "28320", + "codeCommune": "28168", + "libelleAcheminement": "GALLARDON", + "nomCommune": "GALLARDON" }, { - "codePostal": "02840", - "codeCommune": "02697", - "libelleAcheminement": "SAMOUSSY", - "nomCommune": "SAMOUSSY" + "codePostal": "28500", + "codeCommune": "28170", + "libelleAcheminement": "GARANCIERES EN DROUAIS", + "nomCommune": "GARANCIERES EN DROUAIS" }, { - "codePostal": "02590", - "codeCommune": "02702", - "libelleAcheminement": "SAVY", - "nomCommune": "SAVY" + "codePostal": "28310", + "codeCommune": "28184", + "libelleAcheminement": "GOUILLONS", + "nomCommune": "GOUILLONS" }, { - "codePostal": "02200", - "codeCommune": "02706", - "libelleAcheminement": "SEPTMONTS", - "nomCommune": "SEPTMONTS" + "codePostal": "28410", + "codeCommune": "28185", + "libelleAcheminement": "GOUSSAINVILLE", + "nomCommune": "GOUSSAINVILLE" }, { - "codePostal": "02410", - "codeCommune": "02707", - "libelleAcheminement": "SEPTVAUX", - "nomCommune": "SEPTVAUX" + "codePostal": "28310", + "codeCommune": "28197", + "libelleAcheminement": "INTREVILLE", + "nomCommune": "INTREVILLE" }, { - "codePostal": "02420", - "codeCommune": "02708", - "libelleAcheminement": "SEQUEHART", - "nomCommune": "SEQUEHART" + "codePostal": "28310", + "codeCommune": "28199", + "libelleAcheminement": "JANVILLE EN BEAUCE", + "nomCommune": "JANVILLE EN BEAUCE" }, { - "codePostal": "02130", - "codeCommune": "02712", - "libelleAcheminement": "SERGY", - "nomCommune": "SERGY" + "codePostal": "28600", + "codeCommune": "28220", + "libelleAcheminement": "LUISANT", + "nomCommune": "LUISANT" }, { - "codePostal": "02600", - "codeCommune": "02729", - "libelleAcheminement": "SOUCY", - "nomCommune": "SOUCY" + "codePostal": "28120", + "codeCommune": "28225", + "libelleAcheminement": "MAGNY", + "nomCommune": "MAGNY" }, { - "codePostal": "02700", - "codeCommune": "02738", - "libelleAcheminement": "TERGNIER", - "nomCommune": "TERGNIER" + "codePostal": "28170", + "codeCommune": "28226", + "libelleAcheminement": "MAILLEBOIS", + "nomCommune": "MAILLEBOIS" }, { - "codePostal": "02140", - "codeCommune": "02740", - "libelleAcheminement": "THENAILLES", - "nomCommune": "THENAILLES" + "codePostal": "28700", + "codeCommune": "28230", + "libelleAcheminement": "MAISONS", + "nomCommune": "MAISONS" }, { - "codePostal": "02250", - "codeCommune": "02742", - "libelleAcheminement": "THIERNU", - "nomCommune": "THIERNU" + "codePostal": "28120", + "codeCommune": "28242", + "libelleAcheminement": "MEREGLISE", + "nomCommune": "MEREGLISE" }, { - "codePostal": "02250", - "codeCommune": "02745", - "libelleAcheminement": "TOULIS ET ATTENCOURT", - "nomCommune": "TOULIS ET ATTENCOURT" + "codePostal": "28200", + "codeCommune": "28256", + "libelleAcheminement": "MOLEANS", + "nomCommune": "MOLEANS" }, { - "codePostal": "02690", - "codeCommune": "02756", - "libelleAcheminement": "URVILLERS", - "nomCommune": "URVILLERS" + "codePostal": "28800", + "codeCommune": "28259", + "libelleAcheminement": "MONTBOISSIER", + "nomCommune": "MONTBOISSIER" }, { - "codePostal": "02200", - "codeCommune": "02767", - "libelleAcheminement": "VAUXREZIS", - "nomCommune": "VAUXREZIS" + "codePostal": "28210", + "codeCommune": "28275", + "libelleAcheminement": "NERON", + "nomCommune": "NERON" }, { - "codePostal": "02110", - "codeCommune": "02769", - "libelleAcheminement": "VAUX ANDIGNY", - "nomCommune": "VAUX ANDIGNY" + "codePostal": "28130", + "codeCommune": "28298", + "libelleAcheminement": "PIERRES", + "nomCommune": "PIERRES" }, { - "codePostal": "02200", - "codeCommune": "02770", - "libelleAcheminement": "VAUXBUIN", - "nomCommune": "VAUXBUIN" + "codePostal": "28800", + "codeCommune": "28305", + "libelleAcheminement": "PRE ST EVROULT", + "nomCommune": "PRE ST EVROULT" }, { - "codePostal": "02490", - "codeCommune": "02774", - "libelleAcheminement": "VENDELLES", - "nomCommune": "VENDELLES" + "codePostal": "28170", + "codeCommune": "28312", + "libelleAcheminement": "PUISEUX", + "nomCommune": "PUISEUX" }, { - "codePostal": "02420", - "codeCommune": "02776", - "libelleAcheminement": "VENDHUILE", - "nomCommune": "VENDHUILE" + "codePostal": "28310", + "codeCommune": "28319", + "libelleAcheminement": "ROUVRAY ST DENIS", + "nomCommune": "ROUVRAY ST DENIS" }, { - "codePostal": "02160", - "codeCommune": "02778", - "libelleAcheminement": "VENDRESSE BEAULNE", - "nomCommune": "VENDRESSE BEAULNE" + "codePostal": "28260", + "codeCommune": "28321", + "libelleAcheminement": "ROUVRES", + "nomCommune": "ROUVRES" }, { - "codePostal": "02140", - "codeCommune": "02789", - "libelleAcheminement": "VERVINS", - "nomCommune": "VERVINS" + "codePostal": "28200", + "codeCommune": "28330", + "libelleAcheminement": "VILLEMAURY", + "nomCommune": "VILLEMAURY" }, { - "codePostal": "02840", - "codeCommune": "02791", - "libelleAcheminement": "VESLUD", - "nomCommune": "VESLUD" + "codePostal": "28480", + "codeCommune": "28331", + "libelleAcheminement": "SAINTIGNY", + "nomCommune": "SAINTIGNY" }, { - "codePostal": "02290", - "codeCommune": "02793", - "libelleAcheminement": "VEZAPONIN", - "nomCommune": "VEZAPONIN" + "codePostal": "28200", + "codeCommune": "28334", + "libelleAcheminement": "ST DENIS LANNERAY", + "nomCommune": "ST DENIS LANNERAY" }, { - "codePostal": "02540", - "codeCommune": "02798", - "libelleAcheminement": "VIELS MAISONS", - "nomCommune": "VIELS MAISONS" + "codePostal": "28200", + "codeCommune": "28334", + "libelleAcheminement": "ST DENIS LANNERAY", + "nomCommune": "ST DENIS LANNERAY" }, { - "codePostal": "02130", - "codeCommune": "02816", - "libelleAcheminement": "VILLERS SUR FERE", - "nomCommune": "VILLERS SUR FERE" + "codePostal": "28300", + "codeCommune": "28358", + "libelleAcheminement": "ST PREST", + "nomCommune": "ST PREST" }, { - "codePostal": "02220", - "codeCommune": "02817", - "libelleAcheminement": "VILLE SAVOYE", - "nomCommune": "VILLE SAVOYE" + "codePostal": "28170", + "codeCommune": "28360", + "libelleAcheminement": "ST SAUVEUR MARVILLE", + "nomCommune": "ST SAUVEUR MARVILLE" }, { - "codePostal": "02860", - "codeCommune": "02824", - "libelleAcheminement": "VORGES", - "nomCommune": "VORGES" + "codePostal": "28700", + "codeCommune": "28363", + "libelleAcheminement": "SAINVILLE", + "nomCommune": "SAINVILLE" }, { - "codePostal": "02630", - "codeCommune": "02830", - "libelleAcheminement": "WASSIGNY", - "nomCommune": "WASSIGNY" + "codePostal": "28210", + "codeCommune": "28372", + "libelleAcheminement": "SENANTES", + "nomCommune": "SENANTES" }, { - "codePostal": "02120", - "codeCommune": "02832", - "libelleAcheminement": "WIEGE FATY", - "nomCommune": "WIEGE FATY" + "codePostal": "28150", + "codeCommune": "28383", + "libelleAcheminement": "THEUVILLE", + "nomCommune": "THEUVILLE" }, { - "codePostal": "03200", - "codeCommune": "03001", - "libelleAcheminement": "ABREST", - "nomCommune": "ABREST" + "codePostal": "28310", + "codeCommune": "28391", + "libelleAcheminement": "TOURY", + "nomCommune": "TOURY" }, { - "codePostal": "03210", - "codeCommune": "03002", - "libelleAcheminement": "AGONGES", - "nomCommune": "AGONGES" + "codePostal": "28170", + "codeCommune": "28393", + "libelleAcheminement": "TREMBLAY LES VILLAGES", + "nomCommune": "TREMBLAY LES VILLAGES" }, { - "codePostal": "03120", - "codeCommune": "03004", - "libelleAcheminement": "ANDELAROCHE", - "nomCommune": "ANDELAROCHE" + "codePostal": "28170", + "codeCommune": "28393", + "libelleAcheminement": "TREMBLAY LES VILLAGES", + "nomCommune": "TREMBLAY LES VILLAGES" }, { - "codePostal": "03460", - "codeCommune": "03009", - "libelleAcheminement": "AUBIGNY", - "nomCommune": "AUBIGNY" + "codePostal": "28160", + "codeCommune": "28398", + "libelleAcheminement": "UNVERRE", + "nomCommune": "UNVERRE" }, { - "codePostal": "03460", - "codeCommune": "03011", - "libelleAcheminement": "AUROUER", - "nomCommune": "AUROUER" + "codePostal": "28140", + "codeCommune": "28406", + "libelleAcheminement": "EOLE EN BEAUCE", + "nomCommune": "EOLE EN BEAUCE" }, { - "codePostal": "03000", - "codeCommune": "03013", - "libelleAcheminement": "AVERMES", - "nomCommune": "AVERMES" + "codePostal": "28200", + "codeCommune": "28410", + "libelleAcheminement": "VILLAMPUY", + "nomCommune": "VILLAMPUY" }, { - "codePostal": "03800", - "codeCommune": "03021", - "libelleAcheminement": "BEGUES", - "nomCommune": "BEGUES" + "codePostal": "28190", + "codeCommune": "28414", + "libelleAcheminement": "VILLEBON", + "nomCommune": "VILLEBON" }, { - "codePostal": "03330", - "codeCommune": "03022", - "libelleAcheminement": "BELLENAVES", - "nomCommune": "BELLENAVES" + "codePostal": "28150", + "codeCommune": "28426", + "libelleAcheminement": "YMONVILLE", + "nomCommune": "YMONVILLE" }, { - "codePostal": "03700", - "codeCommune": "03023", - "libelleAcheminement": "BELLERIVE SUR ALLIER", - "nomCommune": "BELLERIVE SUR ALLIER" + "codePostal": "29300", + "codeCommune": "29005", + "libelleAcheminement": "BAYE", + "nomCommune": "BAYE" }, { - "codePostal": "03340", - "codeCommune": "03025", - "libelleAcheminement": "BESSAY SUR ALLIER", - "nomCommune": "BESSAY SUR ALLIER" + "codePostal": "29400", + "codeCommune": "29010", + "libelleAcheminement": "BODILIS", + "nomCommune": "BODILIS" }, { - "codePostal": "03210", - "codeCommune": "03026", - "libelleAcheminement": "BESSON", - "nomCommune": "BESSON" + "codePostal": "29690", + "codeCommune": "29018", + "libelleAcheminement": "BRENNILIS", + "nomCommune": "BRENNILIS" }, { - "codePostal": "03390", - "codeCommune": "03032", - "libelleAcheminement": "BLOMARD", - "nomCommune": "BLOMARD" + "codePostal": "29570", + "codeCommune": "29022", + "libelleAcheminement": "CAMARET SUR MER", + "nomCommune": "CAMARET SUR MER" }, { - "codePostal": "03130", - "codeCommune": "03035", - "libelleAcheminement": "LE BOUCHAUD", - "nomCommune": "LE BOUCHAUD" + "codePostal": "29520", + "codeCommune": "29027", + "libelleAcheminement": "CHATEAUNEUF DU FAOU", + "nomCommune": "CHATEAUNEUF DU FAOU" }, { - "codePostal": "03160", - "codeCommune": "03036", - "libelleAcheminement": "BOURBON L ARCHAMBAULT", - "nomCommune": "BOURBON L ARCHAMBAULT" + "codePostal": "29270", + "codeCommune": "29029", + "libelleAcheminement": "CLEDEN POHER", + "nomCommune": "CLEDEN POHER" }, { - "codePostal": "03270", - "codeCommune": "03045", - "libelleAcheminement": "BUSSET", - "nomCommune": "BUSSET" + "codePostal": "29410", + "codeCommune": "29034", + "libelleAcheminement": "LE CLOITRE ST THEGONNEC", + "nomCommune": "LE CLOITRE ST THEGONNEC" }, { - "codePostal": "03600", - "codeCommune": "03047", - "libelleAcheminement": "LA CELLE", - "nomCommune": "LA CELLE" + "codePostal": "29217", + "codeCommune": "29040", + "libelleAcheminement": "LE CONQUET", + "nomCommune": "LE CONQUET" }, { - "codePostal": "03140", - "codeCommune": "03059", - "libelleAcheminement": "CHAREIL CINTRAT", - "nomCommune": "CHAREIL CINTRAT" + "codePostal": "29370", + "codeCommune": "29041", + "libelleAcheminement": "CORAY", + "nomCommune": "CORAY" }, { - "codePostal": "03500", - "codeCommune": "03065", - "libelleAcheminement": "CHATEL DE NEUVRE", - "nomCommune": "CHATEL DE NEUVRE" + "codePostal": "29510", + "codeCommune": "29048", + "libelleAcheminement": "EDERN", + "nomCommune": "EDERN" }, { - "codePostal": "03220", - "codeCommune": "03071", - "libelleAcheminement": "CHAVROCHES", - "nomCommune": "CHAVROCHES" + "codePostal": "29170", + "codeCommune": "29058", + "libelleAcheminement": "FOUESNANT", + "nomCommune": "FOUESNANT" }, { - "codePostal": "03370", - "codeCommune": "03072", - "libelleAcheminement": "CHAZEMAIS", - "nomCommune": "CHAZEMAIS" + "codePostal": "29610", + "codeCommune": "29059", + "libelleAcheminement": "GARLAN", + "nomCommune": "GARLAN" }, { - "codePostal": "03210", - "codeCommune": "03073", - "libelleAcheminement": "CHEMILLY", - "nomCommune": "CHEMILLY" + "codePostal": "29950", + "codeCommune": "29060", + "libelleAcheminement": "GOUESNACH", + "nomCommune": "GOUESNACH" }, { - "codePostal": "03140", - "codeCommune": "03075", - "libelleAcheminement": "CHEZELLE", - "nomCommune": "CHEZELLE" + "codePostal": "29850", + "codeCommune": "29061", + "libelleAcheminement": "GOUESNOU", + "nomCommune": "GOUESNOU" }, { - "codePostal": "03450", - "codeCommune": "03078", - "libelleAcheminement": "CHOUVIGNY", - "nomCommune": "CHOUVIGNY" + "codePostal": "29890", + "codeCommune": "29064", + "libelleAcheminement": "GOULVEN", + "nomCommune": "GOULVEN" }, { - "codePostal": "03110", - "codeCommune": "03080", - "libelleAcheminement": "COGNAT LYONNE", - "nomCommune": "COGNAT LYONNE" + "codePostal": "29410", + "codeCommune": "29068", + "libelleAcheminement": "GUICLAN", + "nomCommune": "GUICLAN" }, { - "codePostal": "03430", - "codeCommune": "03084", - "libelleAcheminement": "COSNE D ALLIER", - "nomCommune": "COSNE D ALLIER" + "codePostal": "29400", + "codeCommune": "29074", + "libelleAcheminement": "GUIMILIAU", + "nomCommune": "GUIMILIAU" }, { - "codePostal": "03370", - "codeCommune": "03088", - "libelleAcheminement": "COURCAIS", - "nomCommune": "COURCAIS" + "codePostal": "29290", + "codeCommune": "29076", + "libelleAcheminement": "MILIZAC GUIPRONVEL", + "nomCommune": "MILIZAC GUIPRONVEL" }, { - "codePostal": "03330", - "codeCommune": "03089", - "libelleAcheminement": "COUTANSOUZE", - "nomCommune": "COUTANSOUZE" + "codePostal": "29460", + "codeCommune": "29080", + "libelleAcheminement": "L HOPITAL CAMFROUT", + "nomCommune": "HOPITAL CAMFROUT" }, { - "codePostal": "03300", - "codeCommune": "03093", - "libelleAcheminement": "CREUZIER LE NEUF", - "nomCommune": "CREUZIER LE NEUF" + "codePostal": "29690", + "codeCommune": "29081", + "libelleAcheminement": "HUELGOAT", + "nomCommune": "HUELGOAT" }, { - "codePostal": "03630", - "codeCommune": "03098", - "libelleAcheminement": "DESERTINES", - "nomCommune": "DESERTINES" + "codePostal": "29259", + "codeCommune": "29084", + "libelleAcheminement": "ILE MOLENE", + "nomCommune": "ILE MOLENE" }, { - "codePostal": "03290", - "codeCommune": "03102", - "libelleAcheminement": "DOMPIERRE SUR BESBRE", - "nomCommune": "DOMPIERRE SUR BESBRE" + "codePostal": "29270", + "codeCommune": "29089", + "libelleAcheminement": "KERGLOFF", + "nomCommune": "KERGLOFF" }, { - "codePostal": "03130", - "codeCommune": "03103", - "libelleAcheminement": "LE DONJON", - "nomCommune": "LE DONJON" + "codePostal": "29260", + "codeCommune": "29093", + "libelleAcheminement": "KERNILIS", + "nomCommune": "KERNILIS" }, { - "codePostal": "03120", - "codeCommune": "03105", - "libelleAcheminement": "DROITURIER", - "nomCommune": "DROITURIER" + "codePostal": "29510", + "codeCommune": "29110", + "libelleAcheminement": "LANGOLEN", + "nomCommune": "LANGOLEN" }, { - "codePostal": "03140", - "codeCommune": "03112", - "libelleAcheminement": "ETROUSSAT", - "nomCommune": "ETROUSSAT" + "codePostal": "29840", + "codeCommune": "29112", + "libelleAcheminement": "LANILDUT", + "nomCommune": "LANILDUT" }, { - "codePostal": "03190", - "codeCommune": "03127", - "libelleAcheminement": "HERISSON", - "nomCommune": "HERISSON" + "codePostal": "29400", + "codeCommune": "29116", + "libelleAcheminement": "LANNEUFFRET", + "nomCommune": "LANNEUFFRET" }, { - "codePostal": "03600", - "codeCommune": "03129", - "libelleAcheminement": "HYDS", - "nomCommune": "HYDS" + "codePostal": "29870", + "codeCommune": "29117", + "libelleAcheminement": "LANNILIS", + "nomCommune": "LANNILIS" }, { - "codePostal": "03120", - "codeCommune": "03138", - "libelleAcheminement": "LAPALISSE", - "nomCommune": "LAPALISSE" + "codePostal": "29290", + "codeCommune": "29119", + "libelleAcheminement": "LANRIVOARE", + "nomCommune": "LANRIVOARE" }, { - "codePostal": "03130", - "codeCommune": "03147", - "libelleAcheminement": "LODDES", - "nomCommune": "LODDES" + "codePostal": "29260", + "codeCommune": "29126", + "libelleAcheminement": "LOC BREVALAIRE", + "nomCommune": "LOC BREVALAIRE" }, { - "codePostal": "03270", - "codeCommune": "03163", - "libelleAcheminement": "MARIOL", - "nomCommune": "MARIOL" + "codePostal": "29400", + "codeCommune": "29128", + "libelleAcheminement": "LOC EGUINER", + "nomCommune": "LOC EGUINER" }, { - "codePostal": "03800", - "codeCommune": "03164", - "libelleAcheminement": "LE MAYET D ECOLE", - "nomCommune": "LE MAYET D ECOLE" + "codePostal": "29180", + "codeCommune": "29134", + "libelleAcheminement": "LOCRONAN", + "nomCommune": "LOCRONAN" }, { - "codePostal": "03500", - "codeCommune": "03169", - "libelleAcheminement": "MEILLARD", - "nomCommune": "MEILLARD" + "codePostal": "29790", + "codeCommune": "29145", + "libelleAcheminement": "CONFORT MEILARS", + "nomCommune": "CONFORT MEILARS" }, { - "codePostal": "03340", - "codeCommune": "03171", - "libelleAcheminement": "MERCY", - "nomCommune": "MERCY" + "codePostal": "29170", + "codeCommune": "29161", + "libelleAcheminement": "PLEUVEN", + "nomCommune": "PLEUVEN" }, { - "codePostal": "03370", - "codeCommune": "03172", - "libelleAcheminement": "MESPLES", - "nomCommune": "MESPLES" + "codePostal": "29710", + "codeCommune": "29167", + "libelleAcheminement": "PLOGASTEL ST GERMAIN", + "nomCommune": "PLOGASTEL ST GERMAIN" }, { - "codePostal": "03140", - "codeCommune": "03175", - "libelleAcheminement": "MONESTIER", - "nomCommune": "MONESTIER" + "codePostal": "29180", + "codeCommune": "29169", + "libelleAcheminement": "PLOGONNEC", + "nomCommune": "PLOGONNEC" }, { - "codePostal": "03340", - "codeCommune": "03180", - "libelleAcheminement": "MONTBEUGNY", - "nomCommune": "MONTBEUGNY" + "codePostal": "29550", + "codeCommune": "29172", + "libelleAcheminement": "PLOMODIERN", + "nomCommune": "PLOMODIERN" }, { - "codePostal": "03150", - "codeCommune": "03215", - "libelleAcheminement": "RONGERES", - "nomCommune": "RONGERES" + "codePostal": "29830", + "codeCommune": "29178", + "libelleAcheminement": "PLOUDALMEZEAU", + "nomCommune": "PLOUDALMEZEAU" }, { - "codePostal": "03120", - "codeCommune": "03223", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "29630", + "codeCommune": "29188", + "libelleAcheminement": "PLOUGASNOU", + "nomCommune": "PLOUGASNOU" }, { - "codePostal": "03370", - "codeCommune": "03225", - "libelleAcheminement": "ST DESIRE", - "nomCommune": "ST DESIRE" + "codePostal": "29830", + "codeCommune": "29196", + "libelleAcheminement": "PLOUGUIN", + "nomCommune": "PLOUGUIN" }, { - "codePostal": "03370", - "codeCommune": "03228", - "libelleAcheminement": "ST ELOY D ALLIER", - "nomCommune": "ST ELOY D ALLIER" + "codePostal": "29430", + "codeCommune": "29206", + "libelleAcheminement": "PLOUNEVEZ LOCHRIST", + "nomCommune": "PLOUNEVEZ LOCHRIST" }, { - "codePostal": "03340", - "codeCommune": "03234", - "libelleAcheminement": "ST GERAND DE VAUX", - "nomCommune": "ST GERAND DE VAUX" + "codePostal": "29600", + "codeCommune": "29207", + "libelleAcheminement": "PLOURIN LES MORLAIX", + "nomCommune": "PLOURIN LES MORLAIX" }, { - "codePostal": "03440", - "codeCommune": "03238", - "libelleAcheminement": "ST HILAIRE", - "nomCommune": "ST HILAIRE" + "codePostal": "29710", + "codeCommune": "29215", + "libelleAcheminement": "PLOZEVET", + "nomCommune": "PLOZEVET" }, { - "codePostal": "03160", - "codeCommune": "03241", - "libelleAcheminement": "ST LEOPARDIN D AUGY", - "nomCommune": "ST LEOPARDIN D AUGY" + "codePostal": "29930", + "codeCommune": "29217", + "libelleAcheminement": "PONT AVEN", + "nomCommune": "PONT AVEN" }, { - "codePostal": "03230", - "codeCommune": "03245", - "libelleAcheminement": "ST MARTIN DES LAIS", - "nomCommune": "ST MARTIN DES LAIS" + "codePostal": "29150", + "codeCommune": "29222", + "libelleAcheminement": "PORT LAUNAY", + "nomCommune": "PORT LAUNAY" }, { - "codePostal": "03150", - "codeCommune": "03266", - "libelleAcheminement": "SANSSAT", - "nomCommune": "SANSSAT" + "codePostal": "29100", + "codeCommune": "29226", + "libelleAcheminement": "POULLAN SUR MER", + "nomCommune": "POULLAN SUR MER" }, { - "codePostal": "03500", - "codeCommune": "03267", - "libelleAcheminement": "SAULCET", - "nomCommune": "SAULCET" + "codePostal": "29480", + "codeCommune": "29235", + "libelleAcheminement": "LE RELECQ KERHUON", + "nomCommune": "LE RELECQ KERHUON" }, { - "codePostal": "03390", - "codeCommune": "03270", - "libelleAcheminement": "SAZERET", - "nomCommune": "SAZERET" + "codePostal": "29680", + "codeCommune": "29239", + "libelleAcheminement": "ROSCOFF", + "nomCommune": "ROSCOFF" }, { - "codePostal": "03700", - "codeCommune": "03271", - "libelleAcheminement": "SERBANNES", - "nomCommune": "SERBANNES" + "codePostal": "29140", + "codeCommune": "29241", + "libelleAcheminement": "ROSPORDEN", + "nomCommune": "ROSPORDEN" }, { - "codePostal": "03120", - "codeCommune": "03272", - "libelleAcheminement": "SERVILLY", - "nomCommune": "SERVILLY" + "codePostal": "29140", + "codeCommune": "29241", + "libelleAcheminement": "ROSPORDEN", + "nomCommune": "ROSPORDEN" }, { - "codePostal": "03220", - "codeCommune": "03274", - "libelleAcheminement": "SORBIER", - "nomCommune": "SORBIER" + "codePostal": "29440", + "codeCommune": "29244", + "libelleAcheminement": "ST DERRIEN", + "nomCommune": "ST DERRIEN" }, { - "codePostal": "03210", - "codeCommune": "03275", - "libelleAcheminement": "SOUVIGNY", - "nomCommune": "SOUVIGNY" + "codePostal": "29800", + "codeCommune": "29245", + "libelleAcheminement": "ST DIVY", + "nomCommune": "ST DIVY" }, { - "codePostal": "03450", - "codeCommune": "03276", - "libelleAcheminement": "SUSSAT", - "nomCommune": "SUSSAT" + "codePostal": "29460", + "codeCommune": "29246", + "libelleAcheminement": "ST ELOY", + "nomCommune": "ST ELOY" }, { - "codePostal": "03240", - "codeCommune": "03287", - "libelleAcheminement": "TREBAN", - "nomCommune": "TREBAN" + "codePostal": "29520", + "codeCommune": "29249", + "libelleAcheminement": "ST GOAZEC", + "nomCommune": "ST GOAZEC" }, { - "codePostal": "03360", - "codeCommune": "03293", - "libelleAcheminement": "URCAY", - "nomCommune": "URCAY" + "codePostal": "29250", + "codeCommune": "29259", + "libelleAcheminement": "ST POL DE LEON", + "nomCommune": "ST POL DE LEON" }, { - "codePostal": "03390", - "codeCommune": "03308", - "libelleAcheminement": "VERNUSSE", - "nomCommune": "VERNUSSE" + "codePostal": "29400", + "codeCommune": "29264", + "libelleAcheminement": "ST SERVAIS", + "nomCommune": "ST SERVAIS" }, { - "codePostal": "03320", - "codeCommune": "03309", - "libelleAcheminement": "LE VEURDRE", - "nomCommune": "LE VEURDRE" + "codePostal": "29450", + "codeCommune": "29277", + "libelleAcheminement": "SIZUN", + "nomCommune": "SIZUN" }, { - "codePostal": "03310", - "codeCommune": "03314", - "libelleAcheminement": "VILLEBRET", - "nomCommune": "VILLEBRET" + "codePostal": "29540", + "codeCommune": "29278", + "libelleAcheminement": "SPEZET", + "nomCommune": "SPEZET" }, { - "codePostal": "03460", - "codeCommune": "03316", - "libelleAcheminement": "VILLENEUVE SUR ALLIER", - "nomCommune": "VILLENEUVE SUR ALLIER" + "codePostal": "29217", + "codeCommune": "29282", + "libelleAcheminement": "TREBABU", + "nomCommune": "TREBABU" }, { - "codePostal": "03400", - "codeCommune": "03321", - "libelleAcheminement": "YZEURE", - "nomCommune": "YZEURE" + "codePostal": "29730", + "codeCommune": "29284", + "libelleAcheminement": "TREFFIAGAT", + "nomCommune": "TREFFIAGAT" }, { - "codePostal": "04170", - "codeCommune": "04007", - "libelleAcheminement": "ANGLES", - "nomCommune": "ANGLES" + "codePostal": "29430", + "codeCommune": "29287", + "libelleAcheminement": "TREFLEZ", + "nomCommune": "TREFLEZ" }, { - "codePostal": "04140", - "codeCommune": "04017", - "libelleAcheminement": "AUZET", - "nomCommune": "AUZET" + "codePostal": "29120", + "codeCommune": "29296", + "libelleAcheminement": "TREMEOC", + "nomCommune": "TREMEOC" }, { - "codePostal": "04150", - "codeCommune": "04018", - "libelleAcheminement": "BANON", - "nomCommune": "BANON" + "codePostal": "29440", + "codeCommune": "29301", + "libelleAcheminement": "TREZILIDE", + "nomCommune": "TREZILIDE" }, { - "codePostal": "04330", - "codeCommune": "04022", - "libelleAcheminement": "BARREME", - "nomCommune": "BARREME" + "codePostal": "29590", + "codeCommune": "29302", + "libelleAcheminement": "PONT DE BUIS LES QUIMERCH", + "nomCommune": "PONT DE BUIS LES QUIMERCH" }, { - "codePostal": "04250", - "codeCommune": "04023", - "libelleAcheminement": "BAYONS", - "nomCommune": "BAYONS" + "codePostal": "29590", + "codeCommune": "29302", + "libelleAcheminement": "PONT DE BUIS LES QUIMERCH", + "nomCommune": "PONT DE BUIS LES QUIMERCH" }, { - "codePostal": "04250", - "codeCommune": "04026", - "libelleAcheminement": "BELLAFFAIRE", - "nomCommune": "BELLAFFAIRE" + "codePostal": "20167", + "codeCommune": "2A017", + "libelleAcheminement": "APPIETTO", + "nomCommune": "APPIETTO" }, { - "codePostal": "04340", - "codeCommune": "04033", - "libelleAcheminement": "UBAYE SERRE PONCON", - "nomCommune": "UBAYE SERRE PONCON" + "codePostal": "20110", + "codeCommune": "2A018", + "libelleAcheminement": "ARBELLARA", + "nomCommune": "ARBELLARA" }, { - "codePostal": "04120", - "codeCommune": "04039", - "libelleAcheminement": "CASTELLANE", - "nomCommune": "CASTELLANE" + "codePostal": "20190", + "codeCommune": "2A026", + "libelleAcheminement": "AZILONE AMPAZA", + "nomCommune": "AZILONE AMPAZA" }, { - "codePostal": "04700", - "codeCommune": "04041", - "libelleAcheminement": "LE CASTELLET", - "nomCommune": "LE CASTELLET" + "codePostal": "20119", + "codeCommune": "2A031", + "libelleAcheminement": "BASTELICA", + "nomCommune": "BASTELICA" }, { - "codePostal": "04330", - "codeCommune": "04059", - "libelleAcheminement": "CLUMANC", - "nomCommune": "CLUMANC" + "codePostal": "20133", + "codeCommune": "2A062", + "libelleAcheminement": "CARBUCCIA", + "nomCommune": "CARBUCCIA" }, { - "codePostal": "04220", - "codeCommune": "04063", - "libelleAcheminement": "CORBIERES EN PROVENCE", - "nomCommune": "CORBIERES EN PROVENCE" + "codePostal": "20134", + "codeCommune": "2A089", + "libelleAcheminement": "CIAMANNACCE", + "nomCommune": "CIAMANNACCE" }, { - "codePostal": "04270", - "codeCommune": "04084", - "libelleAcheminement": "ESTOUBLON", - "nomCommune": "ESTOUBLON" + "codePostal": "20166", + "codeCommune": "2A091", + "libelleAcheminement": "COGNOCOLI MONTICCHI", + "nomCommune": "COGNOCOLI MONTICCHI" }, { - "codePostal": "04120", - "codeCommune": "04092", - "libelleAcheminement": "LA GARDE", - "nomCommune": "LA GARDE" + "codePostal": "20143", + "codeCommune": "2A118", + "libelleAcheminement": "FOZZANO", + "nomCommune": "FOZZANO" }, { - "codePostal": "04230", - "codeCommune": "04101", - "libelleAcheminement": "LARDIERS", - "nomCommune": "LARDIERS" + "codePostal": "20157", + "codeCommune": "2A119", + "libelleAcheminement": "FRASSETO", + "nomCommune": "FRASSETO" }, { - "codePostal": "04270", - "codeCommune": "04107", - "libelleAcheminement": "MAJASTRES", - "nomCommune": "MAJASTRES" + "codePostal": "20100", + "codeCommune": "2A129", + "libelleAcheminement": "GROSSA", + "nomCommune": "GROSSA" }, { - "codePostal": "04350", - "codeCommune": "04108", - "libelleAcheminement": "MALIJAI", - "nomCommune": "MALIJAI" + "codePostal": "20137", + "codeCommune": "2A139", + "libelleAcheminement": "LECCI", + "nomCommune": "LECCI" }, { - "codePostal": "04510", - "codeCommune": "04110", - "libelleAcheminement": "MALLEMOISSON", - "nomCommune": "MALLEMOISSON" + "codePostal": "20140", + "codeCommune": "2A186", + "libelleAcheminement": "OLIVESE", + "nomCommune": "OLIVESE" }, { - "codePostal": "04530", - "codeCommune": "04120", - "libelleAcheminement": "VAL D ORONAYE", - "nomCommune": "VAL D ORONAYE" + "codePostal": "20115", + "codeCommune": "2A212", + "libelleAcheminement": "PIANA", + "nomCommune": "PIANA" }, { - "codePostal": "04500", - "codeCommune": "04124", - "libelleAcheminement": "MONTAGNAC MONTPEZAT", - "nomCommune": "MONTAGNAC MONTPEZAT" + "codePostal": "20160", + "codeCommune": "2A240", + "libelleAcheminement": "POGGIOLO", + "nomCommune": "POGGIOLO" }, { - "codePostal": "04500", - "codeCommune": "04124", - "libelleAcheminement": "MONTAGNAC MONTPEZAT", - "nomCommune": "MONTAGNAC MONTPEZAT" + "codePostal": "20122", + "codeCommune": "2A254", + "libelleAcheminement": "QUENZA", + "nomCommune": "QUENZA" }, { - "codePostal": "04600", - "codeCommune": "04127", - "libelleAcheminement": "MONTFORT", - "nomCommune": "MONTFORT" + "codePostal": "20160", + "codeCommune": "2A258", + "libelleAcheminement": "RENNO", + "nomCommune": "RENNO" }, { - "codePostal": "04230", - "codeCommune": "04130", - "libelleAcheminement": "MONTLAUX", - "nomCommune": "MONTLAUX" + "codePostal": "20151", + "codeCommune": "2A295", + "libelleAcheminement": "SANT ANDREA D ORCINO", + "nomCommune": "SANT ANDREA D ORCINO" }, { - "codePostal": "04170", - "codeCommune": "04136", - "libelleAcheminement": "LA MURE ARGENS", - "nomCommune": "LA MURE ARGENS" + "codePostal": "20137", + "codeCommune": "2A300", + "libelleAcheminement": "SAN GAVINO DI CARBINI", + "nomCommune": "SAN GAVINO DI CARBINI" }, { - "codePostal": "04120", - "codeCommune": "04144", - "libelleAcheminement": "LA PALUD SUR VERDON", - "nomCommune": "LA PALUD SUR VERDON" + "codePostal": "20170", + "codeCommune": "2A300", + "libelleAcheminement": "SAN GAVINO DI CARBINI", + "nomCommune": "SAN GAVINO DI CARBINI" }, { - "codePostal": "04120", - "codeCommune": "04148", - "libelleAcheminement": "PEYROULES", - "nomCommune": "PEYROULES" + "codePostal": "20190", + "codeCommune": "2A312", + "libelleAcheminement": "SANTA MARIA SICHE", + "nomCommune": "SANTA MARIA SICHE" }, { - "codePostal": "05160", - "codeCommune": "04154", - "libelleAcheminement": "PONTIS", - "nomCommune": "PONTIS" + "codePostal": "20117", + "codeCommune": "2A326", + "libelleAcheminement": "TOLLA", + "nomCommune": "TOLLA" }, { - "codePostal": "04340", - "codeCommune": "04161", - "libelleAcheminement": "MEOLANS REVEL", - "nomCommune": "MEOLANS REVEL" + "codePostal": "20133", + "codeCommune": "2A330", + "libelleAcheminement": "UCCIANI", + "nomCommune": "UCCIANI" }, { - "codePostal": "04150", - "codeCommune": "04163", - "libelleAcheminement": "REVEST DU BION", - "nomCommune": "REVEST DU BION" + "codePostal": "20172", + "codeCommune": "2A345", + "libelleAcheminement": "VERO", + "nomCommune": "VERO" }, { - "codePostal": "04230", - "codeCommune": "04164", - "libelleAcheminement": "REVEST ST MARTIN", - "nomCommune": "REVEST ST MARTIN" + "codePostal": "20160", + "codeCommune": "2A348", + "libelleAcheminement": "VICO", + "nomCommune": "VICO" }, { - "codePostal": "06260", - "codeCommune": "04170", - "libelleAcheminement": "LA ROCHETTE", - "nomCommune": "LA ROCHETTE" + "codePostal": "20173", + "codeCommune": "2A358", + "libelleAcheminement": "ZEVACO", + "nomCommune": "ZEVACO" }, { - "codePostal": "04110", - "codeCommune": "04175", - "libelleAcheminement": "STE CROIX A LAUZE", - "nomCommune": "STE CROIX A LAUZE" + "codePostal": "20251", + "codeCommune": "2B012", + "libelleAcheminement": "ALTIANI", + "nomCommune": "ALTIANI" }, { - "codePostal": "04380", - "codeCommune": "04177", - "libelleAcheminement": "HAUTES DUYES", - "nomCommune": "HAUTES DUYES" + "codePostal": "20272", + "codeCommune": "2B015", + "libelleAcheminement": "AMPRIANI", + "nomCommune": "AMPRIANI" }, { - "codePostal": "04230", - "codeCommune": "04178", - "libelleAcheminement": "ST ETIENNE LES ORGUES", - "nomCommune": "ST ETIENNE LES ORGUES" + "codePostal": "20290", + "codeCommune": "2B042", + "libelleAcheminement": "BORGO", + "nomCommune": "BORGO" }, { - "codePostal": "04170", - "codeCommune": "04183", - "libelleAcheminement": "ST JULIEN DU VERDON", - "nomCommune": "ST JULIEN DU VERDON" + "codePostal": "20228", + "codeCommune": "2B046", + "libelleAcheminement": "CAGNANO", + "nomCommune": "CAGNANO" }, { - "codePostal": "04290", - "codeCommune": "04200", - "libelleAcheminement": "SALIGNAC", - "nomCommune": "SALIGNAC" + "codePostal": "20224", + "codeCommune": "2B047", + "libelleAcheminement": "CALACUCCIA", + "nomCommune": "CALACUCCIA" }, { - "codePostal": "04320", - "codeCommune": "04202", - "libelleAcheminement": "SAUSSES", - "nomCommune": "SAUSSES" + "codePostal": "20260", + "codeCommune": "2B050", + "libelleAcheminement": "CALVI", + "nomCommune": "CALVI" }, { - "codePostal": "04140", - "codeCommune": "04203", - "libelleAcheminement": "SELONNET", - "nomCommune": "SELONNET" + "codePostal": "20235", + "codeCommune": "2B059", + "libelleAcheminement": "CANAVAGGIA", + "nomCommune": "CANAVAGGIA" }, { - "codePostal": "04330", - "codeCommune": "04204", - "libelleAcheminement": "SENEZ", - "nomCommune": "SENEZ" + "codePostal": "20212", + "codeCommune": "2B078", + "libelleAcheminement": "CASTELLARE DI MERCURIO", + "nomCommune": "CASTELLARE DI MERCURIO" }, { - "codePostal": "04140", - "codeCommune": "04205", - "libelleAcheminement": "SEYNE LES ALPES", - "nomCommune": "SEYNE" + "codePostal": "20235", + "codeCommune": "2B079", + "libelleAcheminement": "CASTELLO DI ROSTINO", + "nomCommune": "CASTELLO DI ROSTINO" }, { - "codePostal": "04150", - "codeCommune": "04208", - "libelleAcheminement": "SIMIANE LA ROTONDE", - "nomCommune": "SIMIANE LA ROTONDE" + "codePostal": "20218", + "codeCommune": "2B080", + "libelleAcheminement": "CASTIFAO", + "nomCommune": "CASTIFAO" }, { - "codePostal": "04290", - "codeCommune": "04211", - "libelleAcheminement": "SOURRIBES", - "nomCommune": "SOURRIBES" + "codePostal": "20238", + "codeCommune": "2B086", + "libelleAcheminement": "CENTURI", + "nomCommune": "CENTURI" }, { - "codePostal": "04380", - "codeCommune": "04217", - "libelleAcheminement": "THOARD", - "nomCommune": "THOARD" + "codePostal": "20221", + "codeCommune": "2B087", + "libelleAcheminement": "CERVIONE", + "nomCommune": "CERVIONE" }, { - "codePostal": "04170", - "codeCommune": "04219", - "libelleAcheminement": "THORAME HAUTE", - "nomCommune": "THORAME HAUTE" + "codePostal": "20220", + "codeCommune": "2B093", + "libelleAcheminement": "CORBARA", + "nomCommune": "CORBARA" }, { - "codePostal": "04170", - "codeCommune": "04219", - "libelleAcheminement": "THORAME HAUTE", - "nomCommune": "THORAME HAUTE" + "codePostal": "20256", + "codeCommune": "2B093", + "libelleAcheminement": "CORBARA", + "nomCommune": "CORBARA" }, { - "codePostal": "04240", - "codeCommune": "04224", - "libelleAcheminement": "UBRAYE", - "nomCommune": "UBRAYE" + "codePostal": "20226", + "codeCommune": "2B097", + "libelleAcheminement": "COSTA", + "nomCommune": "COSTA" }, { - "codePostal": "04400", - "codeCommune": "04226", - "libelleAcheminement": "UVERNET FOURS", - "nomCommune": "UVERNET FOURS" + "codePostal": "20275", + "codeCommune": "2B107", + "libelleAcheminement": "ERSA", + "nomCommune": "ERSA" }, { - "codePostal": "04200", - "codeCommune": "04231", - "libelleAcheminement": "VALERNES", - "nomCommune": "VALERNES" + "codePostal": "20253", + "codeCommune": "2B109", + "libelleAcheminement": "FARINOLE", + "nomCommune": "FARINOLE" }, { - "codePostal": "05350", - "codeCommune": "05007", - "libelleAcheminement": "ARVIEUX", - "nomCommune": "ARVIEUX" + "codePostal": "20240", + "codeCommune": "2B123", + "libelleAcheminement": "GHISONACCIA", + "nomCommune": "GHISONACCIA" }, { - "codePostal": "05100", - "codeCommune": "05023", - "libelleAcheminement": "BRIANCON", - "nomCommune": "BRIANCON" + "codePostal": "20240", + "codeCommune": "2B123", + "libelleAcheminement": "GHISONACCIA", + "nomCommune": "GHISONACCIA" }, { - "codePostal": "05500", - "codeCommune": "05025", - "libelleAcheminement": "BUISSARD", - "nomCommune": "BUISSARD" + "codePostal": "20227", + "codeCommune": "2B124", + "libelleAcheminement": "GHISONI", + "nomCommune": "GHISONI" }, { - "codePostal": "05100", - "codeCommune": "05027", - "libelleAcheminement": "CERVIERES", - "nomCommune": "CERVIERES" + "codePostal": "20251", + "codeCommune": "2B126", + "libelleAcheminement": "GIUNCAGGIO", + "nomCommune": "GIUNCAGGIO" }, { - "codePostal": "05260", - "codeCommune": "05032", - "libelleAcheminement": "CHAMPOLEON", - "nomCommune": "CHAMPOLEON" + "codePostal": "20243", + "codeCommune": "2B135", + "libelleAcheminement": "ISOLACCIO DI FIUMORBO", + "nomCommune": "ISOLACCIO DI FIUMORBO" }, { - "codePostal": "05700", - "codeCommune": "05033", - "libelleAcheminement": "CHANOUSSE", - "nomCommune": "CHANOUSSE" + "codePostal": "20218", + "codeCommune": "2B136", + "libelleAcheminement": "LAMA", + "nomCommune": "LAMA" }, { - "codePostal": "05380", - "codeCommune": "05036", - "libelleAcheminement": "CHATEAUROUX LES ALPES", - "nomCommune": "CHATEAUROUX LES ALPES" + "codePostal": "20290", + "codeCommune": "2B148", + "libelleAcheminement": "LUCCIANA", + "nomCommune": "LUCCIANA" }, { - "codePostal": "05500", - "codeCommune": "05039", - "libelleAcheminement": "AUBESSAGNE", - "nomCommune": "AUBESSAGNE" + "codePostal": "20229", + "codeCommune": "2B164", + "libelleAcheminement": "MONACIA D OREZZA", + "nomCommune": "MONACIA D OREZZA" }, { - "codePostal": "05500", - "codeCommune": "05039", - "libelleAcheminement": "AUBESSAGNE", - "nomCommune": "AUBESSAGNE" + "codePostal": "20290", + "codeCommune": "2B166", + "libelleAcheminement": "MONTE", + "nomCommune": "MONTE" }, { - "codePostal": "05230", - "codeCommune": "05040", - "libelleAcheminement": "CHORGES", - "nomCommune": "CHORGES" + "codePostal": "20214", + "codeCommune": "2B167", + "libelleAcheminement": "MONTEGROSSO", + "nomCommune": "MONTEGROSSO" }, { - "codePostal": "05200", - "codeCommune": "05045", - "libelleAcheminement": "CROTS", - "nomCommune": "CROTS" + "codePostal": "20229", + "codeCommune": "2B176", + "libelleAcheminement": "NOCARIO", + "nomCommune": "NOCARIO" }, { - "codePostal": "05200", - "codeCommune": "05046", - "libelleAcheminement": "EMBRUN", - "nomCommune": "EMBRUN" + "codePostal": "20217", + "codeCommune": "2B178", + "libelleAcheminement": "NONZA", + "nomCommune": "NONZA" }, { - "codePostal": "05300", - "codeCommune": "05053", - "libelleAcheminement": "GARDE COLOMBE", - "nomCommune": "GARDE COLOMBE" + "codePostal": "20217", + "codeCommune": "2B183", + "libelleAcheminement": "OGLIASTRO", + "nomCommune": "OGLIASTRO" }, { - "codePostal": "05500", - "codeCommune": "05054", - "libelleAcheminement": "LA FARE EN CHAMPSAUR", - "nomCommune": "LA FARE EN CHAMPSAUR" + "codePostal": "20259", + "codeCommune": "2B190", + "libelleAcheminement": "OLMI CAPPELLA", + "nomCommune": "OLMI CAPPELLA" }, { - "codePostal": "05310", - "codeCommune": "05058", - "libelleAcheminement": "FREISSINIERES", - "nomCommune": "FREISSINIERES" + "codePostal": "20234", + "codeCommune": "2B194", + "libelleAcheminement": "ORTALE", + "nomCommune": "ORTALE" }, { - "codePostal": "05400", - "codeCommune": "05060", - "libelleAcheminement": "FURMEYER", - "nomCommune": "FURMEYER" + "codePostal": "20290", + "codeCommune": "2B195", + "libelleAcheminement": "ORTIPORIO", + "nomCommune": "ORTIPORIO" }, { - "codePostal": "05800", - "codeCommune": "05062", - "libelleAcheminement": "LE GLAIZIL", - "nomCommune": "LE GLAIZIL" + "codePostal": "20226", + "codeCommune": "2B199", + "libelleAcheminement": "PALASCA", + "nomCommune": "PALASCA" }, { - "codePostal": "05140", - "codeCommune": "05066", - "libelleAcheminement": "LA HAUTE BEAUME", - "nomCommune": "LA HAUTE BEAUME" + "codePostal": "20213", + "codeCommune": "2B207", + "libelleAcheminement": "PENTA DI CASINCA", + "nomCommune": "PENTA DI CASINCA" }, { - "codePostal": "05110", - "codeCommune": "05078", - "libelleAcheminement": "MONETIER ALLEMONT", - "nomCommune": "MONETIER ALLEMONT" + "codePostal": "20229", + "codeCommune": "2B217", + "libelleAcheminement": "PIAZZOLE", + "nomCommune": "PIAZZOLE" }, { - "codePostal": "05140", - "codeCommune": "05080", - "libelleAcheminement": "MONTBRAND", - "nomCommune": "MONTBRAND" + "codePostal": "20229", + "codeCommune": "2B222", + "libelleAcheminement": "PIE D OREZZA", + "nomCommune": "PIE D OREZZA" }, { - "codePostal": "05600", - "codeCommune": "05082", - "libelleAcheminement": "MONT DAUPHIN", - "nomCommune": "MONT DAUPHIN" + "codePostal": "20218", + "codeCommune": "2B223", + "libelleAcheminement": "PIETRALBA", + "nomCommune": "PIETRALBA" }, { - "codePostal": "05150", - "codeCommune": "05086", - "libelleAcheminement": "MONTJAY", - "nomCommune": "MONTJAY" + "codePostal": "20234", + "codeCommune": "2B227", + "libelleAcheminement": "PIETRICAGGIO", + "nomCommune": "PIETRICAGGIO" }, { - "codePostal": "05400", - "codeCommune": "05087", - "libelleAcheminement": "MONTMAUR", - "nomCommune": "MONTMAUR" + "codePostal": "20242", + "codeCommune": "2B229", + "libelleAcheminement": "PIETROSO", + "nomCommune": "PIETROSO" }, { - "codePostal": "05150", - "codeCommune": "05091", - "libelleAcheminement": "MOYDANS", - "nomCommune": "MOYDANS" + "codePostal": "20220", + "codeCommune": "2B231", + "libelleAcheminement": "PIGNA", + "nomCommune": "PIGNA" }, { - "codePostal": "05000", - "codeCommune": "05092", - "libelleAcheminement": "NEFFES", - "nomCommune": "NEFFES" + "codePostal": "20234", + "codeCommune": "2B234", + "libelleAcheminement": "PIOBETTA", + "nomCommune": "PIOBETTA" }, { - "codePostal": "05100", - "codeCommune": "05093", - "libelleAcheminement": "NEVACHE", - "nomCommune": "NEVACHE" + "codePostal": "20215", + "codeCommune": "2B245", + "libelleAcheminement": "PORRI", + "nomCommune": "PORRI" }, { - "codePostal": "05200", - "codeCommune": "05098", - "libelleAcheminement": "LES ORRES", - "nomCommune": "LES ORRES" + "codePostal": "20290", + "codeCommune": "2B250", + "libelleAcheminement": "PRUNELLI DI CASACCONI", + "nomCommune": "PRUNELLI DI CASACCONI" }, { - "codePostal": "05400", - "codeCommune": "05112", - "libelleAcheminement": "RABOU", - "nomCommune": "RABOU" + "codePostal": "20248", + "codeCommune": "2B261", + "libelleAcheminement": "ROGLIANO", + "nomCommune": "ROGLIANO" }, { - "codePostal": "05400", - "codeCommune": "05131", - "libelleAcheminement": "ST AUBAN D OZE", - "nomCommune": "ST AUBAN D OZE" + "codePostal": "20242", + "codeCommune": "2B263", + "libelleAcheminement": "ROSPIGLIANI", + "nomCommune": "ROSPIGLIANI" }, { - "codePostal": "05330", - "codeCommune": "05133", - "libelleAcheminement": "ST CHAFFREY", - "nomCommune": "ST CHAFFREY" + "codePostal": "20218", + "codeCommune": "2B267", + "libelleAcheminement": "SALICETO", + "nomCommune": "SALICETO" }, { - "codePostal": "05600", - "codeCommune": "05134", - "libelleAcheminement": "ST CLEMENT SUR DURANCE", - "nomCommune": "ST CLEMENT SUR DURANCE" + "codePostal": "20213", + "codeCommune": "2B273", + "libelleAcheminement": "SCATA", + "nomCommune": "SCATA" }, { - "codePostal": "05140", - "codeCommune": "05154", - "libelleAcheminement": "ST PIERRE D ARGENCON", - "nomCommune": "ST PIERRE D ARGENCON" + "codePostal": "20213", + "codeCommune": "2B286", + "libelleAcheminement": "SORBO OCAGNANO", + "nomCommune": "SORBO OCAGNANO" }, { - "codePostal": "05350", - "codeCommune": "05157", - "libelleAcheminement": "ST VERAN", - "nomCommune": "ST VERAN" + "codePostal": "20217", + "codeCommune": "2B298", + "libelleAcheminement": "ST FLORENT", + "nomCommune": "ST FLORENT" }, { - "codePostal": "05240", - "codeCommune": "05161", - "libelleAcheminement": "LA SALLE LES ALPES", - "nomCommune": "LA SALLE LES ALPES" + "codePostal": "20246", + "codeCommune": "2B301", + "libelleAcheminement": "SAN GAVINO DI TENDA", + "nomCommune": "SAN GAVINO DI TENDA" }, { - "codePostal": "05160", - "codeCommune": "05163", - "libelleAcheminement": "LE SAUZE DU LAC", - "nomCommune": "LE SAUZE DU LAC" + "codePostal": "20230", + "codeCommune": "2B303", + "libelleAcheminement": "SAN GIULIANO", + "nomCommune": "SAN GIULIANO" }, { - "codePostal": "05160", - "codeCommune": "05164", - "libelleAcheminement": "SAVINES LE LAC", - "nomCommune": "SAVINES LE LAC" + "codePostal": "20200", + "codeCommune": "2B305", + "libelleAcheminement": "SAN MARTINO DI LOTA", + "nomCommune": "SAN MARTINO DI LOTA" }, { - "codePostal": "05700", - "codeCommune": "05165", - "libelleAcheminement": "SAVOURNON", - "nomCommune": "SAVOURNON" + "codePostal": "20246", + "codeCommune": "2B314", + "libelleAcheminement": "SANTO PIETRO DI TENDA", + "nomCommune": "SANTO PIETRO DI TENDA" }, { - "codePostal": "05700", - "codeCommune": "05167", - "libelleAcheminement": "SIGOTTIER", - "nomCommune": "SIGOTTIER" + "codePostal": "20230", + "codeCommune": "2B317", + "libelleAcheminement": "SANTA REPARATA DI MORIANI", + "nomCommune": "SANTA REPARATA DI MORIANI" }, { - "codePostal": "05700", - "codeCommune": "05172", - "libelleAcheminement": "TRESCLEOUX", - "nomCommune": "TRESCLEOUX" + "codePostal": "20230", + "codeCommune": "2B318", + "libelleAcheminement": "TAGLIO ISOLACCIO", + "nomCommune": "TAGLIO ISOLACCIO" }, { - "codePostal": "05300", - "codeCommune": "05178", - "libelleAcheminement": "VENTAVON", - "nomCommune": "VENTAVON" + "codePostal": "20219", + "codeCommune": "2B354", + "libelleAcheminement": "VIVARIO", + "nomCommune": "VIVARIO" }, { - "codePostal": "05120", - "codeCommune": "05180", - "libelleAcheminement": "LES VIGNEAUX", - "nomCommune": "LES VIGNEAUX" + "codePostal": "20219", + "codeCommune": "2B354", + "libelleAcheminement": "VIVARIO", + "nomCommune": "VIVARIO" }, { - "codePostal": "06390", - "codeCommune": "06014", - "libelleAcheminement": "BENDEJUN", - "nomCommune": "BENDEJUN" + "codePostal": "20272", + "codeCommune": "2B356", + "libelleAcheminement": "ZALANA", + "nomCommune": "ZALANA" }, { - "codePostal": "06470", - "codeCommune": "06016", - "libelleAcheminement": "BEUIL", - "nomCommune": "BEUIL" + "codePostal": "20272", + "codeCommune": "2B364", + "libelleAcheminement": "ZUANI", + "nomCommune": "ZUANI" }, { - "codePostal": "06410", - "codeCommune": "06018", - "libelleAcheminement": "BIOT", - "nomCommune": "BIOT" + "codePostal": "30670", + "codeCommune": "30004", + "libelleAcheminement": "AIGUES VIVES", + "nomCommune": "AIGUES VIVES" }, { - "codePostal": "06440", - "codeCommune": "06019", - "libelleAcheminement": "BLAUSASC", - "nomCommune": "BLAUSASC" + "codePostal": "30140", + "codeCommune": "30010", + "libelleAcheminement": "ANDUZE", + "nomCommune": "ANDUZE" }, { - "codePostal": "06510", - "codeCommune": "06022", - "libelleAcheminement": "BOUYON", - "nomCommune": "BOUYON" + "codePostal": "30120", + "codeCommune": "30016", + "libelleAcheminement": "ARRE", + "nomCommune": "ARRE" }, { - "codePostal": "06400", - "codeCommune": "06029", - "libelleAcheminement": "CANNES", - "nomCommune": "CANNES" + "codePostal": "30250", + "codeCommune": "30019", + "libelleAcheminement": "AUBAIS", + "nomCommune": "AUBAIS" }, { - "codePostal": "06110", - "codeCommune": "06030", - "libelleAcheminement": "LE CANNET", - "nomCommune": "LE CANNET" + "codePostal": "30430", + "codeCommune": "30029", + "libelleAcheminement": "BARJAC", + "nomCommune": "BARJAC" }, { - "codePostal": "06110", - "codeCommune": "06030", - "libelleAcheminement": "LE CANNET", - "nomCommune": "LE CANNET" + "codePostal": "30330", + "codeCommune": "30031", + "libelleAcheminement": "LA BASTIDE D ENGRAS", + "nomCommune": "LA BASTIDE D ENGRAS" }, { - "codePostal": "06670", - "codeCommune": "06034", - "libelleAcheminement": "CASTAGNIERS", - "nomCommune": "CASTAGNIERS" + "codePostal": "30640", + "codeCommune": "30033", + "libelleAcheminement": "BEAUVOISIN", + "nomCommune": "BEAUVOISIN" }, { - "codePostal": "06620", - "codeCommune": "06041", - "libelleAcheminement": "CIPIERES", - "nomCommune": "CIPIERES" + "codePostal": "30120", + "codeCommune": "30038", + "libelleAcheminement": "BEZ ET ESPARON", + "nomCommune": "BEZ ET ESPARON" }, { - "codePostal": "06670", - "codeCommune": "06046", - "libelleAcheminement": "COLOMARS", - "nomCommune": "COLOMARS" + "codePostal": "30450", + "codeCommune": "30044", + "libelleAcheminement": "BONNEVAUX", + "nomCommune": "BONNEVAUX" }, { - "codePostal": "06510", - "codeCommune": "06047", - "libelleAcheminement": "CONSEGUDES", - "nomCommune": "CONSEGUDES" + "codePostal": "30190", + "codeCommune": "30046", + "libelleAcheminement": "BOUCOIRAN ET NOZIERES", + "nomCommune": "BOUCOIRAN ET NOZIERES" }, { - "codePostal": "06360", - "codeCommune": "06059", - "libelleAcheminement": "EZE", - "nomCommune": "EZE" + "codePostal": "30580", + "codeCommune": "30056", + "libelleAcheminement": "LA BRUGUIERE", + "nomCommune": "LA BRUGUIERE" }, { - "codePostal": "06260", - "codeCommune": "06076", - "libelleAcheminement": "LIEUCHE", - "nomCommune": "LIEUCHE" + "codePostal": "30190", + "codeCommune": "30061", + "libelleAcheminement": "LA CALMETTE", + "nomCommune": "LA CALMETTE" }, { - "codePostal": "06440", - "codeCommune": "06077", - "libelleAcheminement": "LUCERAM", - "nomCommune": "LUCERAM" + "codePostal": "30420", + "codeCommune": "30062", + "libelleAcheminement": "CALVISSON", + "nomCommune": "CALVISSON" }, { - "codePostal": "06210", - "codeCommune": "06079", - "libelleAcheminement": "MANDELIEU LA NAPOULE", - "nomCommune": "MANDELIEU LA NAPOULE" + "codePostal": "30350", + "codeCommune": "30071", + "libelleAcheminement": "CASSAGNOLES", + "nomCommune": "CASSAGNOLES" }, { - "codePostal": "06910", - "codeCommune": "06081", - "libelleAcheminement": "LE MAS", - "nomCommune": "LE MAS" + "codePostal": "30210", + "codeCommune": "30073", + "libelleAcheminement": "CASTILLON DU GARD", + "nomCommune": "CASTILLON DU GARD" }, { - "codePostal": "06710", - "codeCommune": "06082", - "libelleAcheminement": "MASSOINS", - "nomCommune": "MASSOINS" + "codePostal": "30200", + "codeCommune": "30084", + "libelleAcheminement": "CODOLET", + "nomCommune": "CODOLET" }, { - "codePostal": "06200", - "codeCommune": "06088", - "libelleAcheminement": "NICE", - "nomCommune": "NICE" + "codePostal": "30460", + "codeCommune": "30087", + "libelleAcheminement": "COLOGNAC", + "nomCommune": "COLOGNAC" }, { - "codePostal": "06440", - "codeCommune": "06091", - "libelleAcheminement": "PEILLE", - "nomCommune": "PEILLE" + "codePostal": "30300", + "codeCommune": "30089", + "libelleAcheminement": "COMPS", + "nomCommune": "COMPS" }, { - "codePostal": "06260", - "codeCommune": "06098", - "libelleAcheminement": "PUGET ROSTANG", - "nomCommune": "PUGET ROSTANG" + "codePostal": "30140", + "codeCommune": "30094", + "libelleAcheminement": "CORBES", + "nomCommune": "CORBES" }, { - "codePostal": "06260", - "codeCommune": "06101", - "libelleAcheminement": "RIGAUD", - "nomCommune": "RIGAUD" + "codePostal": "30260", + "codeCommune": "30098", + "libelleAcheminement": "CRESPIAN", + "nomCommune": "CRESPIAN" }, { - "codePostal": "06190", - "codeCommune": "06104", - "libelleAcheminement": "ROQUEBRUNE CAP MARTIN", - "nomCommune": "ROQUEBRUNE CAP MARTIN" + "codePostal": "30190", + "codeCommune": "30102", + "libelleAcheminement": "DIONS", + "nomCommune": "DIONS" }, { - "codePostal": "06190", - "codeCommune": "06104", - "libelleAcheminement": "ROQUEBRUNE CAP MARTIN", - "nomCommune": "ROQUEBRUNE CAP MARTIN" + "codePostal": "30390", + "codeCommune": "30103", + "libelleAcheminement": "DOMAZAN", + "nomCommune": "DOMAZAN" }, { - "codePostal": "06910", - "codeCommune": "06106", - "libelleAcheminement": "ROQUESTERON", - "nomCommune": "ROQUESTERON" + "codePostal": "30350", + "codeCommune": "30104", + "libelleAcheminement": "DOMESSARGUES", + "nomCommune": "DOMESSARGUES" }, { - "codePostal": "06260", - "codeCommune": "06115", - "libelleAcheminement": "ST ANTONIN", - "nomCommune": "ST ANTONIN" + "codePostal": "30170", + "codeCommune": "30106", + "libelleAcheminement": "DURFORT ET ST MARTIN DE SOSSENAC", + "nomCommune": "DURFORT ET ST MARTIN DE SOSSENAC" }, { - "codePostal": "06670", - "codeCommune": "06117", - "libelleAcheminement": "ST BLAISE", - "nomCommune": "ST BLAISE" + "codePostal": "30360", + "codeCommune": "30109", + "libelleAcheminement": "EUZET", + "nomCommune": "EUZET" }, { - "codePostal": "06660", - "codeCommune": "06120", - "libelleAcheminement": "ST ETIENNE DE TINEE", - "nomCommune": "ST ETIENNE DE TINEE" + "codePostal": "30700", + "codeCommune": "30110", + "libelleAcheminement": "FLAUX", + "nomCommune": "FLAUX" }, { - "codePostal": "06230", - "codeCommune": "06121", - "libelleAcheminement": "ST JEAN CAP FERRAT", - "nomCommune": "ST JEAN CAP FERRAT" + "codePostal": "30700", + "codeCommune": "30111", + "libelleAcheminement": "FOISSAC", + "nomCommune": "FOISSAC" }, { - "codePostal": "06670", - "codeCommune": "06126", - "libelleAcheminement": "ST MARTIN DU VAR", - "nomCommune": "ST MARTIN DU VAR" + "codePostal": "30580", + "codeCommune": "30113", + "libelleAcheminement": "FONS SUR LUSSAN", + "nomCommune": "FONS SUR LUSSAN" }, { - "codePostal": "06450", - "codeCommune": "06127", - "libelleAcheminement": "ST MARTIN VESUBIE", - "nomCommune": "ST MARTIN VESUBIE" + "codePostal": "30128", + "codeCommune": "30125", + "libelleAcheminement": "GARONS", + "nomCommune": "GARONS" }, { - "codePostal": "06420", - "codeCommune": "06129", - "libelleAcheminement": "ST SAUVEUR SUR TINEE", - "nomCommune": "ST SAUVEUR SUR TINEE" + "codePostal": "30980", + "codeCommune": "30138", + "libelleAcheminement": "LANGLADE", + "nomCommune": "LANGLADE" }, { - "codePostal": "06910", - "codeCommune": "06131", - "libelleAcheminement": "SALLAGRIFFON", - "nomCommune": "SALLAGRIFFON" + "codePostal": "30210", + "codeCommune": "30145", + "libelleAcheminement": "LEDENON", + "nomCommune": "LEDENON" }, { - "codePostal": "06590", - "codeCommune": "06138", - "libelleAcheminement": "THEOULE SUR MER", - "nomCommune": "THEOULE SUR MER" + "codePostal": "30140", + "codeCommune": "30162", + "libelleAcheminement": "MASSILLARGUES ATTUECH", + "nomCommune": "MASSILLARGUES ATTUECH" }, { - "codePostal": "06710", - "codeCommune": "06143", - "libelleAcheminement": "TOUET SUR VAR", - "nomCommune": "TOUET SUR VAR" + "codePostal": "30430", + "codeCommune": "30164", + "libelleAcheminement": "MEJANNES LE CLAP", + "nomCommune": "MEJANNES LE CLAP" }, { - "codePostal": "06420", - "codeCommune": "06146", - "libelleAcheminement": "TOURNEFORT", - "nomCommune": "TOURNEFORT" + "codePostal": "30630", + "codeCommune": "30175", + "libelleAcheminement": "MONTCLUS", + "nomCommune": "MONTCLUS" }, { - "codePostal": "06140", - "codeCommune": "06148", - "libelleAcheminement": "TOURRETTES SUR LOUP", - "nomCommune": "TOURRETTES SUR LOUP" + "codePostal": "30190", + "codeCommune": "30180", + "libelleAcheminement": "MONTIGNARGUES", + "nomCommune": "MONTIGNARGUES" }, { - "codePostal": "06220", - "codeCommune": "06155", - "libelleAcheminement": "VALLAURIS", - "nomCommune": "VALLAURIS" + "codePostal": "30000", + "codeCommune": "30189", + "libelleAcheminement": "NIMES", + "nomCommune": "NIMES" }, { - "codePostal": "06470", - "codeCommune": "06160", - "libelleAcheminement": "VILLENEUVE D ENTRAUNES", - "nomCommune": "VILLENEUVE D ENTRAUNES" + "codePostal": "30260", + "codeCommune": "30192", + "libelleAcheminement": "ORTHOUX SERIGNAC QUILHAN", + "nomCommune": "ORTHOUX SERIGNAC QUILHAN" }, { - "codePostal": "07200", - "codeCommune": "07002", - "libelleAcheminement": "AILHON", - "nomCommune": "AILHON" + "codePostal": "30330", + "codeCommune": "30196", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "07100", - "codeCommune": "07010", - "libelleAcheminement": "ANNONAY", - "nomCommune": "ANNONAY" + "codePostal": "30750", + "codeCommune": "30213", + "libelleAcheminement": "REVENS", + "nomCommune": "REVENS" }, { - "codePostal": "07410", - "codeCommune": "07014", - "libelleAcheminement": "ARLEBOSC", - "nomCommune": "ARLEBOSC" + "codePostal": "30160", + "codeCommune": "30216", + "libelleAcheminement": "ROBIAC ROCHESSADOULE", + "nomCommune": "ROBIAC ROCHESSADOULE" }, { - "codePostal": "07110", - "codeCommune": "07029", - "libelleAcheminement": "BEAUMONT", - "nomCommune": "BEAUMONT" + "codePostal": "30120", + "codeCommune": "30219", + "libelleAcheminement": "ROGUES", + "nomCommune": "ROGUES" }, { - "codePostal": "07340", - "codeCommune": "07036", - "libelleAcheminement": "BOGY", - "nomCommune": "BOGY" + "codePostal": "30200", + "codeCommune": "30225", + "libelleAcheminement": "SABRAN", + "nomCommune": "SABRAN" }, { - "codePostal": "07410", - "codeCommune": "07039", - "libelleAcheminement": "BOZAS", - "nomCommune": "BOZAS" + "codePostal": "30630", + "codeCommune": "30230", + "libelleAcheminement": "ST ANDRE DE ROQUEPERTUIS", + "nomCommune": "ST ANDRE DE ROQUEPERTUIS" }, { - "codePostal": "07340", - "codeCommune": "07044", - "libelleAcheminement": "BROSSAINC", - "nomCommune": "BROSSAINC" + "codePostal": "30350", + "codeCommune": "30234", + "libelleAcheminement": "ST BENEZET", + "nomCommune": "ST BENEZET" }, { - "codePostal": "07140", - "codeCommune": "07050", - "libelleAcheminement": "CHAMBONAS", - "nomCommune": "CHAMBONAS" + "codePostal": "30440", + "codeCommune": "30238", + "libelleAcheminement": "ST BRESSON", + "nomCommune": "ST BRESSON" }, { - "codePostal": "07340", - "codeCommune": "07051", - "libelleAcheminement": "CHAMPAGNE", - "nomCommune": "CHAMPAGNE" + "codePostal": "30110", + "codeCommune": "30239", + "libelleAcheminement": "STE CECILE D ANDORGE", + "nomCommune": "STE CECILE D ANDORGE" }, { - "codePostal": "07230", - "codeCommune": "07053", - "libelleAcheminement": "CHANDOLAS", - "nomCommune": "CHANDOLAS" + "codePostal": "30200", + "codeCommune": "30251", + "libelleAcheminement": "ST ETIENNE DES SORTS", + "nomCommune": "ST ETIENNE DES SORTS" }, { - "codePostal": "07800", - "codeCommune": "07055", - "libelleAcheminement": "CHARMES SUR RHONE", - "nomCommune": "CHARMES SUR RHONE" + "codePostal": "30360", + "codeCommune": "30261", + "libelleAcheminement": "ST HIPPOLYTE DE CATON", + "nomCommune": "ST HIPPOLYTE DE CATON" }, { - "codePostal": "07110", - "codeCommune": "07058", - "libelleAcheminement": "CHASSIERS", - "nomCommune": "CHASSIERS" + "codePostal": "30330", + "codeCommune": "30279", + "libelleAcheminement": "ST LAURENT LA VERNEDE", + "nomCommune": "ST LAURENT LA VERNEDE" }, { - "codePostal": "07130", - "codeCommune": "07059", - "libelleAcheminement": "CHATEAUBOURG", - "nomCommune": "CHATEAUBOURG" + "codePostal": "30730", + "codeCommune": "30281", + "libelleAcheminement": "ST MAMERT DU GARD", + "nomCommune": "ST MAMERT DU GARD" }, { - "codePostal": "07110", - "codeCommune": "07062", - "libelleAcheminement": "CHAZEAUX", - "nomCommune": "CHAZEAUX" + "codePostal": "30520", + "codeCommune": "30284", + "libelleAcheminement": "ST MARTIN DE VALGALGUES", + "nomCommune": "ST MARTIN DE VALGALGUES" }, { - "codePostal": "07300", - "codeCommune": "07063", - "libelleAcheminement": "CHEMINAS", - "nomCommune": "CHEMINAS" + "codePostal": "30130", + "codeCommune": "30290", + "libelleAcheminement": "ST PAULET DE CAISSON", + "nomCommune": "ST PAULET DE CAISSON" }, { - "codePostal": "07210", - "codeCommune": "07066", - "libelleAcheminement": "CHOMERAC", - "nomCommune": "CHOMERAC" + "codePostal": "30140", + "codeCommune": "30298", + "libelleAcheminement": "ST SEBASTIEN D AIGREFEUILLE", + "nomCommune": "ST SEBASTIEN D AIGREFEUILLE" }, { - "codePostal": "07410", - "codeCommune": "07069", - "libelleAcheminement": "COLOMBIER LE VIEUX", - "nomCommune": "COLOMBIER LE VIEUX" + "codePostal": "30290", + "codeCommune": "30302", + "libelleAcheminement": "ST VICTOR LA COSTE", + "nomCommune": "ST VICTOR LA COSTE" }, { - "codePostal": "07270", - "codeCommune": "07073", - "libelleAcheminement": "LE CRESTET", - "nomCommune": "LE CRESTET" + "codePostal": "30760", + "codeCommune": "30304", + "libelleAcheminement": "SALAZAC", + "nomCommune": "SALAZAC" }, { - "codePostal": "07350", - "codeCommune": "07076", - "libelleAcheminement": "CRUAS", - "nomCommune": "CRUAS" + "codePostal": "30440", + "codeCommune": "30325", + "libelleAcheminement": "SUMENE", + "nomCommune": "SUMENE" }, { - "codePostal": "07260", - "codeCommune": "07081", - "libelleAcheminement": "DOMPNAC", - "nomCommune": "DOMPNAC" + "codePostal": "30140", + "codeCommune": "30330", + "libelleAcheminement": "TORNAC", + "nomCommune": "TORNAC" }, { - "codePostal": "07360", - "codeCommune": "07083", - "libelleAcheminement": "DUNIERE SUR EYRIEUX", - "nomCommune": "DUNIERE SUR EYRIEUX" + "codePostal": "30700", + "codeCommune": "30337", + "libelleAcheminement": "VALLABRIX", + "nomCommune": "VALLABRIX" }, { - "codePostal": "07270", - "codeCommune": "07085", - "libelleAcheminement": "EMPURANY", - "nomCommune": "EMPURANY" + "codePostal": "30570", + "codeCommune": "30339", + "libelleAcheminement": "VAL D AIGOUAL", + "nomCommune": "VAL D AIGOUAL" }, { - "codePostal": "07000", - "codeCommune": "07090", - "libelleAcheminement": "FLAVIAC", - "nomCommune": "FLAVIAC" + "codePostal": "30600", + "codeCommune": "30341", + "libelleAcheminement": "VAUVERT", + "nomCommune": "VAUVERT" }, { - "codePostal": "07200", - "codeCommune": "07091", - "libelleAcheminement": "FONS", - "nomCommune": "FONS" + "codePostal": "30330", + "codeCommune": "30355", + "libelleAcheminement": "ST PAUL LES FONTS", + "nomCommune": "ST PAUL LES FONTS" }, { - "codePostal": "07120", - "codeCommune": "07115", - "libelleAcheminement": "LABEAUME", - "nomCommune": "LABEAUME" + "codePostal": "31230", + "codeCommune": "31008", + "libelleAcheminement": "ANAN", + "nomCommune": "ANAN" }, { - "codePostal": "07530", - "codeCommune": "07120", - "libelleAcheminement": "LACHAMP RAPHAEL", - "nomCommune": "LACHAMP RAPHAEL" + "codePostal": "31510", + "codeCommune": "31009", + "libelleAcheminement": "ANTICHAN DE FRONTIGNES", + "nomCommune": "ANTICHAN DE FRONTIGNES" }, { - "codePostal": "07270", - "codeCommune": "07129", - "libelleAcheminement": "LAMASTRE", - "nomCommune": "LAMASTRE" + "codePostal": "31110", + "codeCommune": "31010", + "libelleAcheminement": "ANTIGNAC", + "nomCommune": "ANTIGNAC" }, { - "codePostal": "07140", - "codeCommune": "07147", - "libelleAcheminement": "MALARCE SUR LA THINES", - "nomCommune": "MALARCE SUR LA THINES" + "codePostal": "31160", + "codeCommune": "31020", + "libelleAcheminement": "ASPET", + "nomCommune": "ASPET" }, { - "codePostal": "07140", - "codeCommune": "07147", - "libelleAcheminement": "MALARCE SUR LA THINES", - "nomCommune": "MALARCE SUR LA THINES" + "codePostal": "31140", + "codeCommune": "31022", + "libelleAcheminement": "AUCAMVILLE", + "nomCommune": "AUCAMVILLE" }, { - "codePostal": "07140", - "codeCommune": "07148", - "libelleAcheminement": "MALBOSC", - "nomCommune": "MALBOSC" + "codePostal": "31260", + "codeCommune": "31030", + "libelleAcheminement": "AUSSEING", + "nomCommune": "AUSSEING" }, { - "codePostal": "07200", - "codeCommune": "07155", - "libelleAcheminement": "MERCUER", - "nomCommune": "MERCUER" + "codePostal": "31210", + "codeCommune": "31031", + "libelleAcheminement": "AUSSON", + "nomCommune": "AUSSON" }, { - "codePostal": "07110", - "codeCommune": "07162", - "libelleAcheminement": "MONTREAL", - "nomCommune": "MONTREAL" + "codePostal": "31380", + "codeCommune": "31038", + "libelleAcheminement": "AZAS", + "nomCommune": "AZAS" }, { - "codePostal": "07360", - "codeCommune": "07167", - "libelleAcheminement": "LES OLLIERES SUR EYRIEUX", - "nomCommune": "LES OLLIERES SUR EYRIEUX" + "codePostal": "31110", + "codeCommune": "31042", + "libelleAcheminement": "BAGNERES DE LUCHON", + "nomCommune": "BAGNERES DE LUCHON" }, { - "codePostal": "07370", - "codeCommune": "07169", - "libelleAcheminement": "OZON", - "nomCommune": "OZON" + "codePostal": "31440", + "codeCommune": "31046", + "libelleAcheminement": "BAREN", + "nomCommune": "BAREN" }, { - "codePostal": "07300", - "codeCommune": "07177", - "libelleAcheminement": "PLATS", - "nomCommune": "PLATS" + "codePostal": "31700", + "codeCommune": "31056", + "libelleAcheminement": "BEAUZELLE", + "nomCommune": "BEAUZELLE" }, { - "codePostal": "07250", - "codeCommune": "07198", - "libelleAcheminement": "ROMPON", - "nomCommune": "ROMPON" + "codePostal": "31530", + "codeCommune": "31061", + "libelleAcheminement": "BELLEGARDE STE MARIE", + "nomCommune": "BELLEGARDE STE MARIE" }, { - "codePostal": "07790", - "codeCommune": "07205", - "libelleAcheminement": "ST ALBAN D AY", - "nomCommune": "ST ALBAN D AY" + "codePostal": "31390", + "codeCommune": "31071", + "libelleAcheminement": "BOIS DE LA PIERRE", + "nomCommune": "BOIS DE LA PIERRE" }, { - "codePostal": "07590", - "codeCommune": "07206", - "libelleAcheminement": "ST ALBAN EN MONTAGNE", - "nomCommune": "ST ALBAN EN MONTAGNE" + "codePostal": "31230", + "codeCommune": "31072", + "libelleAcheminement": "BOISSEDE", + "nomCommune": "BOISSEDE" }, { - "codePostal": "07120", - "codeCommune": "07207", - "libelleAcheminement": "ST ALBAN AURIOLLES", - "nomCommune": "ST ALBAN AURIOLLES" + "codePostal": "31440", + "codeCommune": "31085", + "libelleAcheminement": "BOUTX", + "nomCommune": "BOUTX" }, { - "codePostal": "07170", - "codeCommune": "07208", - "libelleAcheminement": "ST ANDEOL DE BERG", - "nomCommune": "ST ANDEOL DE BERG" + "codePostal": "31480", + "codeCommune": "31090", + "libelleAcheminement": "BRIGNEMONT", + "nomCommune": "BRIGNEMONT" }, { - "codePostal": "07460", - "codeCommune": "07211", - "libelleAcheminement": "ST ANDRE DE CRUZIERES", - "nomCommune": "ST ANDRE DE CRUZIERES" + "codePostal": "31150", + "codeCommune": "31091", + "libelleAcheminement": "BRUGUIERES", + "nomCommune": "BRUGUIERES" }, { - "codePostal": "07240", - "codeCommune": "07214", - "libelleAcheminement": "ST APOLLINAIRE DE RIAS", - "nomCommune": "ST APOLLINAIRE DE RIAS" + "codePostal": "31440", + "codeCommune": "31092", + "libelleAcheminement": "BURGALAYS", + "nomCommune": "BURGALAYS" }, { - "codePostal": "07160", - "codeCommune": "07222", - "libelleAcheminement": "ST CIERGE SOUS LE CHEYLARD", - "nomCommune": "ST CIERGE SOUS LE CHEYLARD" + "codePostal": "31560", + "codeCommune": "31099", + "libelleAcheminement": "CAIGNAC", + "nomCommune": "CAIGNAC" }, { - "codePostal": "07430", - "codeCommune": "07227", - "libelleAcheminement": "ST CYR", - "nomCommune": "ST CYR" + "codePostal": "31470", + "codeCommune": "31101", + "libelleAcheminement": "CAMBERNARD", + "nomCommune": "CAMBERNARD" }, { - "codePostal": "07580", - "codeCommune": "07242", - "libelleAcheminement": "ST GINEYS EN COIRON", - "nomCommune": "ST GINEYS EN COIRON" + "codePostal": "31460", + "codeCommune": "31105", + "libelleAcheminement": "CARAGOUDES", + "nomCommune": "CARAGOUDES" }, { - "codePostal": "07320", - "codeCommune": "07249", - "libelleAcheminement": "ST JEURE D ANDAURE", - "nomCommune": "ST JEURE D ANDAURE" + "codePostal": "31310", + "codeCommune": "31111", + "libelleAcheminement": "CASTAGNAC", + "nomCommune": "CASTAGNAC" }, { - "codePostal": "07240", - "codeCommune": "07257", - "libelleAcheminement": "ST JULIEN LE ROUX", - "nomCommune": "ST JULIEN LE ROUX" + "codePostal": "31260", + "codeCommune": "31112", + "libelleAcheminement": "CASTAGNEDE", + "nomCommune": "CASTAGNEDE" }, { - "codePostal": "07690", - "codeCommune": "07258", - "libelleAcheminement": "ST JULIEN VOCANCE", - "nomCommune": "ST JULIEN VOCANCE" + "codePostal": "31180", + "codeCommune": "31117", + "libelleAcheminement": "CASTELMAUROU", + "nomCommune": "CASTELMAUROU" }, { - "codePostal": "07590", - "codeCommune": "07262", - "libelleAcheminement": "ST LAURENT BAINS LAVAL D AURELLE", - "nomCommune": "ST LAURENT BAINS LAVAL D AURELLE" + "codePostal": "31110", + "codeCommune": "31123", + "libelleAcheminement": "CASTILLON DE LARBOUST", + "nomCommune": "CASTILLON DE LARBOUST" }, { - "codePostal": "07100", - "codeCommune": "07265", - "libelleAcheminement": "ST MARCEL LES ANNONAY", - "nomCommune": "ST MARCEL LES ANNONAY" + "codePostal": "31110", + "codeCommune": "31125", + "libelleAcheminement": "CATHERVIELLE", + "nomCommune": "CATHERVIELLE" }, { - "codePostal": "07140", - "codeCommune": "07266", - "libelleAcheminement": "STE MARGUERITE LAFIGERE", - "nomCommune": "STE MARGUERITE LAFIGERE" + "codePostal": "31440", + "codeCommune": "31139", + "libelleAcheminement": "CHAUM", + "nomCommune": "CHAUM" }, { - "codePostal": "07400", - "codeCommune": "07270", - "libelleAcheminement": "ST MARTIN SUR LAVEZON", - "nomCommune": "ST MARTIN SUR LAVEZON" + "codePostal": "31550", + "codeCommune": "31145", + "libelleAcheminement": "CINTEGABELLE", + "nomCommune": "CINTEGABELLE" }, { - "codePostal": "07400", - "codeCommune": "07270", - "libelleAcheminement": "ST MARTIN SUR LAVEZON", - "nomCommune": "ST MARTIN SUR LAVEZON" + "codePostal": "31110", + "codeCommune": "31146", + "libelleAcheminement": "CIRES", + "nomCommune": "CIRES" }, { - "codePostal": "07460", - "codeCommune": "07280", - "libelleAcheminement": "ST PAUL LE JEUNE", - "nomCommune": "ST PAUL LE JEUNE" + "codePostal": "31210", + "codeCommune": "31158", + "libelleAcheminement": "CUGURON", + "nomCommune": "CUGURON" }, { - "codePostal": "07130", - "codeCommune": "07281", - "libelleAcheminement": "ST PERAY", - "nomCommune": "ST PERAY" + "codePostal": "31280", + "codeCommune": "31163", + "libelleAcheminement": "DREMIL LAFAGE", + "nomCommune": "DREMIL LAFAGE" }, { - "codePostal": "07140", - "codeCommune": "07284", - "libelleAcheminement": "ST PIERRE ST JEAN", - "nomCommune": "ST PIERRE ST JEAN" + "codePostal": "31470", + "codeCommune": "31166", + "libelleAcheminement": "EMPEAUX", + "nomCommune": "EMPEAUX" }, { - "codePostal": "07580", - "codeCommune": "07287", - "libelleAcheminement": "ST PONS", - "nomCommune": "ST PONS" + "codePostal": "31420", + "codeCommune": "31168", + "libelleAcheminement": "EOUX", + "nomCommune": "EOUX" }, { - "codePostal": "07200", - "codeCommune": "07289", - "libelleAcheminement": "ST PRIVAT", - "nomCommune": "ST PRIVAT" + "codePostal": "31350", + "codeCommune": "31170", + "libelleAcheminement": "ESCANECRABE", + "nomCommune": "ESCANECRABE" }, { - "codePostal": "07270", - "codeCommune": "07290", - "libelleAcheminement": "ST PRIX", - "nomCommune": "ST PRIX" + "codePostal": "31420", + "codeCommune": "31172", + "libelleAcheminement": "ESPARRON", + "nomCommune": "ESPARRON" }, { - "codePostal": "07290", - "codeCommune": "07299", - "libelleAcheminement": "ST SYMPHORIEN DE MAHUN", - "nomCommune": "ST SYMPHORIEN DE MAHUN" + "codePostal": "31190", + "codeCommune": "31173", + "libelleAcheminement": "ESPERCE", + "nomCommune": "ESPERCE" }, { - "codePostal": "07130", - "codeCommune": "07316", - "libelleAcheminement": "SOYONS", - "nomCommune": "SOYONS" + "codePostal": "31460", + "codeCommune": "31179", + "libelleAcheminement": "LE FAGET", + "nomCommune": "LE FAGET" }, { - "codePostal": "07110", - "codeCommune": "07318", - "libelleAcheminement": "TAURIERS", - "nomCommune": "TAURIERS" + "codePostal": "31410", + "codeCommune": "31181", + "libelleAcheminement": "LE FAUGA", + "nomCommune": "LE FAUGA" }, { - "codePostal": "07400", - "codeCommune": "07319", - "libelleAcheminement": "LE TEIL", - "nomCommune": "LE TEIL" + "codePostal": "31150", + "codeCommune": "31182", + "libelleAcheminement": "FENOUILLET", + "nomCommune": "FENOUILLET" }, { - "codePostal": "07130", - "codeCommune": "07323", - "libelleAcheminement": "TOULAUD", - "nomCommune": "TOULAUD" + "codePostal": "31130", + "codeCommune": "31184", + "libelleAcheminement": "FLOURENS", + "nomCommune": "FLOURENS" }, { - "codePostal": "07110", - "codeCommune": "07327", - "libelleAcheminement": "UZER", - "nomCommune": "UZER" + "codePostal": "31450", + "codeCommune": "31192", + "libelleAcheminement": "FOURQUEVAUX", + "nomCommune": "FOURQUEVAUX" }, { - "codePostal": "07110", - "codeCommune": "07329", - "libelleAcheminement": "VALGORGE", - "nomCommune": "VALGORGE" + "codePostal": "31360", + "codeCommune": "31198", + "libelleAcheminement": "LE FRECHET", + "nomCommune": "LE FRECHET" }, { - "codePostal": "07140", - "codeCommune": "07334", - "libelleAcheminement": "LES VANS", - "nomCommune": "LES VANS" + "codePostal": "31480", + "codeCommune": "31209", + "libelleAcheminement": "GARAC", + "nomCommune": "GARAC" }, { - "codePostal": "07200", - "codeCommune": "07339", - "libelleAcheminement": "VESSEAUX", - "nomCommune": "VESSEAUX" + "codePostal": "31620", + "codeCommune": "31211", + "libelleAcheminement": "GARGAS", + "nomCommune": "GARGAS" }, { - "codePostal": "07690", - "codeCommune": "07347", - "libelleAcheminement": "VOCANCE", - "nomCommune": "VOCANCE" + "codePostal": "31590", + "codeCommune": "31215", + "libelleAcheminement": "GAURE", + "nomCommune": "GAURE" }, { - "codePostal": "07200", - "codeCommune": "07348", - "libelleAcheminement": "VOGUE", - "nomCommune": "VOGUE" + "codePostal": "31380", + "codeCommune": "31216", + "libelleAcheminement": "GEMIL", + "nomCommune": "GEMIL" }, { - "codePostal": "08130", - "codeCommune": "08006", - "libelleAcheminement": "ALLAND HUY ET SAUSSEUIL", - "nomCommune": "ALLAND HUY ET SAUSSEUIL" + "codePostal": "31110", + "codeCommune": "31221", + "libelleAcheminement": "GOUAUX DE LARBOUST", + "nomCommune": "GOUAUX DE LARBOUST" }, { - "codePostal": "08260", - "codeCommune": "08015", - "libelleAcheminement": "ANTHENY", - "nomCommune": "ANTHENY" + "codePostal": "31310", + "codeCommune": "31226", + "libelleAcheminement": "GOUZENS", + "nomCommune": "GOUZENS" }, { - "codePostal": "08250", - "codeCommune": "08017", - "libelleAcheminement": "APREMONT", - "nomCommune": "APREMONT" + "codePostal": "31430", + "codeCommune": "31229", + "libelleAcheminement": "GRATENS", + "nomCommune": "GRATENS" }, { - "codePostal": "08390", - "codeCommune": "08019", - "libelleAcheminement": "LES GRANDES ARMOISES", - "nomCommune": "LES GRANDES ARMOISES" + "codePostal": "31800", + "codeCommune": "31247", + "libelleAcheminement": "LABARTHE RIVIERE", + "nomCommune": "LABARTHE RIVIERE" }, { - "codePostal": "08390", - "codeCommune": "08020", - "libelleAcheminement": "LES PETITES ARMOISES", - "nomCommune": "LES PETITES ARMOISES" + "codePostal": "31860", + "codeCommune": "31248", + "libelleAcheminement": "LABARTHE SUR LEZE", + "nomCommune": "LABARTHE SUR LEZE" }, { - "codePostal": "08090", - "codeCommune": "08022", - "libelleAcheminement": "ARREUX", - "nomCommune": "ARREUX" + "codePostal": "31600", + "codeCommune": "31253", + "libelleAcheminement": "LABASTIDETTE", + "nomCommune": "LABASTIDETTE" }, { - "codePostal": "08270", - "codeCommune": "08027", - "libelleAcheminement": "AUBONCOURT VAUZELLES", - "nomCommune": "AUBONCOURT VAUZELLES" + "codePostal": "31670", + "codeCommune": "31254", + "libelleAcheminement": "LABEGE", + "nomCommune": "LABEGE" }, { - "codePostal": "08260", - "codeCommune": "08037", - "libelleAcheminement": "AUVILLERS LES FORGES", - "nomCommune": "AUVILLERS LES FORGES" + "codePostal": "31510", + "codeCommune": "31255", + "libelleAcheminement": "LABROQUERE", + "nomCommune": "LABROQUERE" }, { - "codePostal": "08300", - "codeCommune": "08038", - "libelleAcheminement": "AVANCON", - "nomCommune": "AVANCON" + "codePostal": "31390", + "codeCommune": "31258", + "libelleAcheminement": "LACAUGNE", + "nomCommune": "LACAUGNE" }, { - "codePostal": "08430", - "codeCommune": "08041", - "libelleAcheminement": "BAALONS", - "nomCommune": "BAALONS" + "codePostal": "31120", + "codeCommune": "31259", + "libelleAcheminement": "LACROIX FALGARDE", + "nomCommune": "LACROIX FALGARDE" }, { - "codePostal": "08290", - "codeCommune": "08069", - "libelleAcheminement": "BLANCHEFOSSE ET BAY", - "nomCommune": "BLANCHEFOSSE ET BAY" + "codePostal": "31360", + "codeCommune": "31260", + "libelleAcheminement": "LAFFITE TOUPIERE", + "nomCommune": "LAFFITE TOUPIERE" }, { - "codePostal": "08240", - "codeCommune": "08075", - "libelleAcheminement": "BOULT AUX BOIS", - "nomCommune": "BOULT AUX BOIS" + "codePostal": "31290", + "codeCommune": "31262", + "libelleAcheminement": "LAGARDE", + "nomCommune": "LAGARDE" }, { - "codePostal": "08410", - "codeCommune": "08076", - "libelleAcheminement": "BOULZICOURT", - "nomCommune": "BOULZICOURT" + "codePostal": "31370", + "codeCommune": "31266", + "libelleAcheminement": "LAHAGE", + "nomCommune": "LAHAGE" }, { - "codePostal": "08140", - "codeCommune": "08083", - "libelleAcheminement": "BREVILLY", - "nomCommune": "BREVILLY" + "codePostal": "31310", + "codeCommune": "31272", + "libelleAcheminement": "LAPEYRERE", + "nomCommune": "LAPEYRERE" }, { - "codePostal": "08240", - "codeCommune": "08086", - "libelleAcheminement": "BRIQUENAY", - "nomCommune": "BRIQUENAY" + "codePostal": "31140", + "codeCommune": "31282", + "libelleAcheminement": "LAUNAGUET", + "nomCommune": "LAUNAGUET" }, { - "codePostal": "08260", - "codeCommune": "08094", - "libelleAcheminement": "CERNION", - "nomCommune": "CERNION" + "codePostal": "31580", + "codeCommune": "31289", + "libelleAcheminement": "LECUSSAN", + "nomCommune": "LECUSSAN" }, { - "codePostal": "08430", - "codeCommune": "08095", - "libelleAcheminement": "CHAGNY", - "nomCommune": "CHAGNY" + "codePostal": "31150", + "codeCommune": "31293", + "libelleAcheminement": "LESPINASSE", + "nomCommune": "LESPINASSE" }, { - "codePostal": "08600", - "codeCommune": "08106", - "libelleAcheminement": "CHARNOIS", - "nomCommune": "CHARNOIS" + "codePostal": "31350", + "codeCommune": "31295", + "libelleAcheminement": "LESPUGUE", + "nomCommune": "LESPUGUE" }, { - "codePostal": "08360", - "codeCommune": "08107", - "libelleAcheminement": "CHATEAU PORCIEN", - "nomCommune": "CHATEAU PORCIEN" + "codePostal": "31600", + "codeCommune": "31299", + "libelleAcheminement": "LHERM", + "nomCommune": "LHERM" }, { - "codePostal": "08270", - "codeCommune": "08117", - "libelleAcheminement": "CHESNOIS AUBONCOURT", - "nomCommune": "CHESNOIS AUBONCOURT" + "codePostal": "31340", + "codeCommune": "31311", + "libelleAcheminement": "LA MAGDELAINE SUR TARN", + "nomCommune": "LA MAGDELAINE SUR TARN" }, { - "codePostal": "08260", - "codeCommune": "08121", - "libelleAcheminement": "CHILLY", - "nomCommune": "CHILLY" + "codePostal": "31540", + "codeCommune": "31329", + "libelleAcheminement": "MAURENS", + "nomCommune": "MAURENS" }, { - "codePostal": "08090", - "codeCommune": "08137", - "libelleAcheminement": "DAMOUZY", - "nomCommune": "DAMOUZY" + "codePostal": "31190", + "codeCommune": "31330", + "libelleAcheminement": "MAURESSAC", + "nomCommune": "MAURESSAC" }, { - "codePostal": "08140", - "codeCommune": "08145", - "libelleAcheminement": "DOUZY", - "nomCommune": "DOUZY" + "codePostal": "31410", + "codeCommune": "31334", + "libelleAcheminement": "MAUZAC", + "nomCommune": "MAUZAC" }, { - "codePostal": "08140", - "codeCommune": "08145", - "libelleAcheminement": "DOUZY", - "nomCommune": "DOUZY" + "codePostal": "31260", + "codeCommune": "31336", + "libelleAcheminement": "MAZERES SUR SALAT", + "nomCommune": "MAZERES SUR SALAT" }, { - "codePostal": "08150", - "codeCommune": "08149", - "libelleAcheminement": "L ECHELLE", - "nomCommune": "L ECHELLE" + "codePostal": "31440", + "codeCommune": "31337", + "libelleAcheminement": "MELLES", + "nomCommune": "MELLES" }, { - "codePostal": "08160", - "codeCommune": "08173", - "libelleAcheminement": "FLIZE", - "nomCommune": "FLIZE" + "codePostal": "31530", + "codeCommune": "31338", + "libelleAcheminement": "MENVILLE", + "nomCommune": "MENVILLE" }, { - "codePostal": "08240", - "codeCommune": "08176", - "libelleAcheminement": "FOSSE", - "nomCommune": "FOSSE" + "codePostal": "31530", + "codeCommune": "31339", + "libelleAcheminement": "MERENVIELLE", + "nomCommune": "MERENVIELLE" }, { - "codePostal": "08220", - "codeCommune": "08178", - "libelleAcheminement": "FRAILLICOURT", - "nomCommune": "FRAILLICOURT" + "codePostal": "31330", + "codeCommune": "31341", + "libelleAcheminement": "MERVILLE", + "nomCommune": "MERVILLE" }, { - "codePostal": "08600", - "codeCommune": "08183", - "libelleAcheminement": "FROMELENNES", - "nomCommune": "FROMELENNES" + "codePostal": "31190", + "codeCommune": "31345", + "libelleAcheminement": "MIREMONT", + "nomCommune": "MIREMONT" }, { - "codePostal": "08600", - "codeCommune": "08183", - "libelleAcheminement": "FROMELENNES", - "nomCommune": "FROMELENNES" + "codePostal": "31340", + "codeCommune": "31346", + "libelleAcheminement": "MIREPOIX SUR TARN", + "nomCommune": "MIREPOIX SUR TARN" }, { - "codePostal": "08260", - "codeCommune": "08189", - "libelleAcheminement": "GIRONDELLE", - "nomCommune": "GIRONDELLE" + "codePostal": "31530", + "codeCommune": "31356", + "libelleAcheminement": "MONTAIGUT SUR SAVE", + "nomCommune": "MONTAIGUT SUR SAVE" }, { - "codePostal": "08600", - "codeCommune": "08190", - "libelleAcheminement": "GIVET", - "nomCommune": "GIVET" + "codePostal": "31410", + "codeCommune": "31361", + "libelleAcheminement": "MONTAUT", + "nomCommune": "MONTAUT" }, { - "codePostal": "08190", - "codeCommune": "08195", - "libelleAcheminement": "GOMONT", - "nomCommune": "GOMONT" + "codePostal": "31430", + "codeCommune": "31370", + "libelleAcheminement": "MONTEGUT BOURJAC", + "nomCommune": "MONTEGUT BOURJAC" }, { - "codePostal": "08400", - "codeCommune": "08200", - "libelleAcheminement": "GRIVY LOISY", - "nomCommune": "GRIVY LOISY" + "codePostal": "31260", + "codeCommune": "31372", + "libelleAcheminement": "MONTESPAN", + "nomCommune": "MONTESPAN" }, { - "codePostal": "08090", - "codeCommune": "08206", - "libelleAcheminement": "HAM LES MOINES", - "nomCommune": "HAM LES MOINES" + "codePostal": "31290", + "codeCommune": "31377", + "libelleAcheminement": "MONTGAILLARD LAURAGAIS", + "nomCommune": "MONTGAILLARD LAURAGAIS" }, { - "codePostal": "08450", - "codeCommune": "08211", - "libelleAcheminement": "HARAUCOURT", - "nomCommune": "HARAUCOURT" + "codePostal": "31380", + "codeCommune": "31383", + "libelleAcheminement": "MONTJOIRE", + "nomCommune": "MONTJOIRE" }, { - "codePostal": "08240", - "codeCommune": "08215", - "libelleAcheminement": "HARRICOURT", - "nomCommune": "HARRICOURT" + "codePostal": "31380", + "codeCommune": "31388", + "libelleAcheminement": "MONTPITOL", + "nomCommune": "MONTPITOL" }, { - "codePostal": "08090", - "codeCommune": "08216", - "libelleAcheminement": "HAUDRECY", - "nomCommune": "HAUDRECY" + "codePostal": "31110", + "codeCommune": "31404", + "libelleAcheminement": "OO", + "nomCommune": "OO" }, { - "codePostal": "08800", - "codeCommune": "08218", - "libelleAcheminement": "LES HAUTES RIVIERES", - "nomCommune": "LES HAUTES RIVIERES" + "codePostal": "31380", + "codeCommune": "31407", + "libelleAcheminement": "PAULHAC", + "nomCommune": "PAULHAC" }, { - "codePostal": "08800", - "codeCommune": "08218", - "libelleAcheminement": "LES HAUTES RIVIERES", - "nomCommune": "LES HAUTES RIVIERES" + "codePostal": "31510", + "codeCommune": "31408", + "libelleAcheminement": "PAYSSOUS", + "nomCommune": "PAYSSOUS" }, { - "codePostal": "08430", - "codeCommune": "08228", - "libelleAcheminement": "LA HORGNE", - "nomCommune": "LA HORGNE" + "codePostal": "31350", + "codeCommune": "31412", + "libelleAcheminement": "PEGUILHAN", + "nomCommune": "PEGUILHAN" }, { - "codePostal": "08440", - "codeCommune": "08235", - "libelleAcheminement": "ISSANCOURT ET RUMEL", - "nomCommune": "ISSANCOURT ET RUMEL" + "codePostal": "31420", + "codeCommune": "31415", + "libelleAcheminement": "PEYROUZET", + "nomCommune": "PEYROUZET" }, { - "codePostal": "08430", - "codeCommune": "08236", - "libelleAcheminement": "JANDUN", - "nomCommune": "JANDUN" + "codePostal": "31210", + "codeCommune": "31426", + "libelleAcheminement": "POINTIS DE RIVIERE", + "nomCommune": "POINTIS DE RIVIERE" }, { - "codePostal": "08700", - "codeCommune": "08237", - "libelleAcheminement": "JOIGNY SUR MEUSE", - "nomCommune": "JOIGNY SUR MEUSE" + "codePostal": "31110", + "codeCommune": "31434", + "libelleAcheminement": "POUBEAU", + "nomCommune": "POUBEAU" }, { - "codePostal": "08460", - "codeCommune": "08243", - "libelleAcheminement": "LALOBBE", - "nomCommune": "LALOBBE" + "codePostal": "31370", + "codeCommune": "31435", + "libelleAcheminement": "POUCHARRAMET", + "nomCommune": "POUCHARRAMET" }, { - "codePostal": "08250", - "codeCommune": "08245", - "libelleAcheminement": "LANCON", - "nomCommune": "LANCON" + "codePostal": "31360", + "codeCommune": "31440", + "libelleAcheminement": "PROUPIARY", + "nomCommune": "PROUPIARY" }, { - "codePostal": "08430", - "codeCommune": "08248", - "libelleAcheminement": "LAUNOIS SUR VENCE", - "nomCommune": "LAUNOIS SUR VENCE" + "codePostal": "31290", + "codeCommune": "31453", + "libelleAcheminement": "RIEUMAJOU", + "nomCommune": "RIEUMAJOU" }, { - "codePostal": "08210", - "codeCommune": "08252", - "libelleAcheminement": "LETANNE", - "nomCommune": "LETANNE" + "codePostal": "31370", + "codeCommune": "31454", + "libelleAcheminement": "RIEUMES", + "nomCommune": "RIEUMES" }, { - "codePostal": "08150", - "codeCommune": "08257", - "libelleAcheminement": "LOGNY BOGNY", - "nomCommune": "LOGNY BOGNY" + "codePostal": "31160", + "codeCommune": "31461", + "libelleAcheminement": "ROUEDE", + "nomCommune": "ROUEDE" }, { - "codePostal": "08400", - "codeCommune": "08259", - "libelleAcheminement": "LONGWE", - "nomCommune": "LONGWE" + "codePostal": "31140", + "codeCommune": "31467", + "libelleAcheminement": "ST ALBAN", + "nomCommune": "ST ALBAN" }, { - "codePostal": "08150", - "codeCommune": "08260", - "libelleAcheminement": "LONNY", - "nomCommune": "LONNY" + "codePostal": "31430", + "codeCommune": "31469", + "libelleAcheminement": "ST ARAILLE", + "nomCommune": "ST ARAILLE" }, { - "codePostal": "08450", - "codeCommune": "08268", - "libelleAcheminement": "MAISONCELLE ET VILLERS", - "nomCommune": "MAISONCELLE ET VILLERS" + "codePostal": "31510", + "codeCommune": "31472", + "libelleAcheminement": "ST BERTRAND DE COMMINGES", + "nomCommune": "ST BERTRAND DE COMMINGES" }, { - "codePostal": "08370", - "codeCommune": "08276", - "libelleAcheminement": "MARGUT", - "nomCommune": "MARGUT" + "codePostal": "31600", + "codeCommune": "31475", + "libelleAcheminement": "ST CLAR DE RIVIERE", + "nomCommune": "ST CLAR DE RIVIERE" }, { - "codePostal": "08290", - "codeCommune": "08277", - "libelleAcheminement": "MARLEMONT", - "nomCommune": "MARLEMONT" + "codePostal": "31230", + "codeCommune": "31482", + "libelleAcheminement": "ST FRAJOU", + "nomCommune": "ST FRAJOU" }, { - "codePostal": "08110", - "codeCommune": "08291", - "libelleAcheminement": "MOGUES", - "nomCommune": "MOGUES" + "codePostal": "31410", + "codeCommune": "31486", + "libelleAcheminement": "ST HILAIRE", + "nomCommune": "ST HILAIRE" }, { - "codePostal": "08140", - "codeCommune": "08294", - "libelleAcheminement": "LA MONCELLE", - "nomCommune": "LA MONCELLE" + "codePostal": "31540", + "codeCommune": "31491", + "libelleAcheminement": "ST JULIA", + "nomCommune": "ST JULIA" }, { - "codePostal": "08220", - "codeCommune": "08307", - "libelleAcheminement": "MONTMEILLANT", - "nomCommune": "MONTMEILLANT" + "codePostal": "31350", + "codeCommune": "31493", + "libelleAcheminement": "ST LARY BOUJEAN", + "nomCommune": "ST LARY BOUJEAN" }, { - "codePostal": "08700", - "codeCommune": "08316", - "libelleAcheminement": "NEUFMANIL", - "nomCommune": "NEUFMANIL" + "codePostal": "31800", + "codeCommune": "31502", + "libelleAcheminement": "ST MARCET", + "nomCommune": "ST MARCET" }, { - "codePostal": "08450", - "codeCommune": "08317", - "libelleAcheminement": "LA NEUVILLE A MAIRE", - "nomCommune": "LA NEUVILLE A MAIRE" + "codePostal": "31350", + "codeCommune": "31510", + "libelleAcheminement": "ST PE DELBOSC", + "nomCommune": "ST PE DELBOSC" }, { - "codePostal": "08380", - "codeCommune": "08319", - "libelleAcheminement": "NEUVILLE LEZ BEAULIEU", - "nomCommune": "NEUVILLE LEZ BEAULIEU" + "codePostal": "31790", + "codeCommune": "31516", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "08310", - "codeCommune": "08320", - "libelleAcheminement": "NEUVILLE EN TOURNE A FUY", - "nomCommune": "LA NEUVILLE EN TOURNE A FUY" + "codePostal": "31410", + "codeCommune": "31517", + "libelleAcheminement": "ST SULPICE SUR LEZE", + "nomCommune": "ST SULPICE SUR LEZE" }, { - "codePostal": "08270", - "codeCommune": "08323", - "libelleAcheminement": "LA NEUVILLE LES WASIGNY", - "nomCommune": "LA NEUVILLE LES WASIGNY" + "codePostal": "31290", + "codeCommune": "31519", + "libelleAcheminement": "ST VINCENT", + "nomCommune": "ST VINCENT" }, { - "codePostal": "08400", - "codeCommune": "08325", - "libelleAcheminement": "NOIRVAL", - "nomCommune": "NOIRVAL" + "codePostal": "31370", + "codeCommune": "31520", + "libelleAcheminement": "SAJAS", + "nomCommune": "SAJAS" }, { - "codePostal": "08270", - "codeCommune": "08329", - "libelleAcheminement": "NOVION PORCIEN", - "nomCommune": "NOVION PORCIEN" + "codePostal": "31880", + "codeCommune": "31526", + "libelleAcheminement": "LA SALVETAT ST GILLES", + "nomCommune": "LA SALVETAT ST GILLES" }, { - "codePostal": "08350", - "codeCommune": "08331", - "libelleAcheminement": "NOYERS PONT MAUGIS", - "nomCommune": "NOYERS PONT MAUGIS" + "codePostal": "31460", + "codeCommune": "31527", + "libelleAcheminement": "LA SALVETAT LAURAGAIS", + "nomCommune": "LA SALVETAT LAURAGAIS" }, { - "codePostal": "08000", - "codeCommune": "08346", - "libelleAcheminement": "PRIX LES MEZIERES", - "nomCommune": "PRIX LES MEZIERES" + "codePostal": "31350", + "codeCommune": "31531", + "libelleAcheminement": "SARRECAVE", + "nomCommune": "SARRECAVE" }, { - "codePostal": "08600", - "codeCommune": "08353", - "libelleAcheminement": "RANCENNES", - "nomCommune": "RANCENNES" + "codePostal": "31510", + "codeCommune": "31542", + "libelleAcheminement": "SEILHAN", + "nomCommune": "SEILHAN" }, { - "codePostal": "08450", - "codeCommune": "08354", - "libelleAcheminement": "RAUCOURT ET FLABA", - "nomCommune": "RAUCOURT ET FLABA" + "codePostal": "31360", + "codeCommune": "31545", + "libelleAcheminement": "SEPX", + "nomCommune": "SEPX" }, { - "codePostal": "08220", - "codeCommune": "08366", - "libelleAcheminement": "ROCQUIGNY", - "nomCommune": "ROCQUIGNY" + "codePostal": "31600", + "codeCommune": "31547", + "libelleAcheminement": "SEYSSES", + "nomCommune": "SEYSSES" }, { - "codePostal": "08220", - "codeCommune": "08366", - "libelleAcheminement": "ROCQUIGNY", - "nomCommune": "ROCQUIGNY" + "codePostal": "31530", + "codeCommune": "31553", + "libelleAcheminement": "THIL", + "nomCommune": "THIL" }, { - "codePostal": "08220", - "codeCommune": "08366", - "libelleAcheminement": "ROCQUIGNY", - "nomCommune": "ROCQUIGNY" + "codePostal": "31100", + "codeCommune": "31555", + "libelleAcheminement": "TOULOUSE", + "nomCommune": "TOULOUSE" }, { - "codePostal": "08230", - "codeCommune": "08367", - "libelleAcheminement": "ROCROI", - "nomCommune": "ROCROI" + "codePostal": "31300", + "codeCommune": "31555", + "libelleAcheminement": "TOULOUSE", + "nomCommune": "TOULOUSE" }, { - "codePostal": "08220", - "codeCommune": "08372", - "libelleAcheminement": "RUBIGNY", - "nomCommune": "RUBIGNY" + "codePostal": "31110", + "codeCommune": "31559", + "libelleAcheminement": "TREBONS DE LUCHON", + "nomCommune": "TREBONS DE LUCHON" }, { - "codePostal": "08110", - "codeCommune": "08375", - "libelleAcheminement": "SACHY", - "nomCommune": "SACHY" + "codePostal": "31290", + "codeCommune": "31560", + "libelleAcheminement": "TREBONS SUR LA GRASSE", + "nomCommune": "TREBONS SUR LA GRASSE" }, { - "codePostal": "08310", - "codeCommune": "08378", - "libelleAcheminement": "ST CLEMENT A ARNES", - "nomCommune": "ST CLEMENT A ARNES" + "codePostal": "31800", + "codeCommune": "31565", + "libelleAcheminement": "VALENTINE", + "nomCommune": "VALENTINE" }, { - "codePostal": "08220", - "codeCommune": "08382", - "libelleAcheminement": "ST JEAN AUX BOIS", - "nomCommune": "ST JEAN AUX BOIS" + "codePostal": "31570", + "codeCommune": "31567", + "libelleAcheminement": "VALLESVILLES", + "nomCommune": "VALLESVILLES" }, { - "codePostal": "08130", - "codeCommune": "08387", - "libelleAcheminement": "ST LOUP TERRIER", - "nomCommune": "ST LOUP TERRIER" + "codePostal": "31250", + "codeCommune": "31569", + "libelleAcheminement": "VAUDREUILLE", + "nomCommune": "VAUDREUILLE" }, { - "codePostal": "08460", - "codeCommune": "08389", - "libelleAcheminement": "ST MARCEL", - "nomCommune": "ST MARCEL" + "codePostal": "31590", + "codeCommune": "31573", + "libelleAcheminement": "VERFEIL", + "nomCommune": "VERFEIL" }, { - "codePostal": "08430", - "codeCommune": "08395", - "libelleAcheminement": "ST PIERRE SUR VENCE", - "nomCommune": "ST PIERRE SUR VENCE" + "codePostal": "31810", + "codeCommune": "31574", + "libelleAcheminement": "VERNET", + "nomCommune": "VERNET" }, { - "codePostal": "08220", - "codeCommune": "08396", - "libelleAcheminement": "ST QUENTIN LE PETIT", - "nomCommune": "ST QUENTIN LE PETIT" + "codePostal": "31290", + "codeCommune": "31582", + "libelleAcheminement": "VILLEFRANCHE DE LAURAGAIS", + "nomCommune": "VILLEFRANCHE DE LAURAGAIS" }, { - "codePostal": "08160", - "codeCommune": "08400", - "libelleAcheminement": "SAPOGNE ET FEUCHERES", - "nomCommune": "SAPOGNE ET FEUCHERES" + "codePostal": "31330", + "codeCommune": "31592", + "libelleAcheminement": "LARRA", + "nomCommune": "LARRA" }, { - "codePostal": "08300", - "codeCommune": "08403", - "libelleAcheminement": "SAULT LES RETHEL", - "nomCommune": "SAULT LES RETHEL" + "codePostal": "32290", + "codeCommune": "32001", + "libelleAcheminement": "AIGNAN", + "nomCommune": "AIGNAN" }, { - "codePostal": "08150", - "codeCommune": "08408", - "libelleAcheminement": "SECHEVAL", - "nomCommune": "SECHEVAL" + "codePostal": "32270", + "codeCommune": "32012", + "libelleAcheminement": "AUBIET", + "nomCommune": "AUBIET" }, { - "codePostal": "08200", - "codeCommune": "08409", - "libelleAcheminement": "SEDAN", - "nomCommune": "SEDAN" + "codePostal": "32120", + "codeCommune": "32014", + "libelleAcheminement": "AUGNAX", + "nomCommune": "AUGNAX" }, { - "codePostal": "08220", - "codeCommune": "08418", - "libelleAcheminement": "SEVIGNY WALEPPE", - "nomCommune": "SEVIGNY WALEPPE" + "codePostal": "32400", + "codeCommune": "32017", + "libelleAcheminement": "AURENSAN", + "nomCommune": "AURENSAN" }, { - "codePostal": "08460", - "codeCommune": "08419", - "libelleAcheminement": "SIGNY L ABBAYE", - "nomCommune": "SIGNY L ABBAYE" + "codePostal": "32550", + "codeCommune": "32019", + "libelleAcheminement": "AUTERIVE", + "nomCommune": "AUTERIVE" }, { - "codePostal": "08430", - "codeCommune": "08422", - "libelleAcheminement": "SINGLY", - "nomCommune": "SINGLY" + "codePostal": "32290", + "codeCommune": "32022", + "libelleAcheminement": "AVERON BERGELLE", + "nomCommune": "AVERON BERGELLE" }, { - "codePostal": "08090", - "codeCommune": "08432", - "libelleAcheminement": "SURY", - "nomCommune": "SURY" + "codePostal": "32170", + "codeCommune": "32028", + "libelleAcheminement": "BARCUGNAN", + "nomCommune": "BARCUGNAN" }, { - "codePostal": "08240", - "codeCommune": "08437", - "libelleAcheminement": "TAILLY", - "nomCommune": "TAILLY" + "codePostal": "32170", + "codeCommune": "32034", + "libelleAcheminement": "BAZUGUES", + "nomCommune": "BAZUGUES" }, { - "codePostal": "08390", - "codeCommune": "08439", - "libelleAcheminement": "TANNAY", - "nomCommune": "TANNAY" + "codePostal": "32600", + "codeCommune": "32038", + "libelleAcheminement": "BEAUPUY", + "nomCommune": "BEAUPUY" }, { - "codePostal": "08190", - "codeCommune": "08451", - "libelleAcheminement": "LE THOUR", - "nomCommune": "LE THOUR" + "codePostal": "32730", + "codeCommune": "32039", + "libelleAcheminement": "BECCAS", + "nomCommune": "BECCAS" }, { - "codePostal": "08400", - "codeCommune": "08455", - "libelleAcheminement": "TOURCELLES CHAUMONT", - "nomCommune": "TOURCELLES CHAUMONT" + "codePostal": "32450", + "codeCommune": "32040", + "libelleAcheminement": "BEDECHAN", + "nomCommune": "BEDECHAN" }, { - "codePostal": "08250", - "codeCommune": "08464", - "libelleAcheminement": "VAUX LES MOURON", - "nomCommune": "VAUX LES MOURON" + "codePostal": "32300", + "codeCommune": "32042", + "libelleAcheminement": "BELLOC ST CLAMENS", + "nomCommune": "BELLOC ST CLAMENS" }, { - "codePostal": "08210", - "codeCommune": "08477", - "libelleAcheminement": "VILLERS DEVANT MOUZON", - "nomCommune": "VILLERS DEVANT MOUZON" + "codePostal": "32190", + "codeCommune": "32043", + "libelleAcheminement": "BELMONT", + "nomCommune": "BELMONT" }, { - "codePostal": "08430", - "codeCommune": "08482", - "libelleAcheminement": "VILLERS SUR LE MONT", - "nomCommune": "VILLERS SUR LE MONT" + "codePostal": "32730", + "codeCommune": "32050", + "libelleAcheminement": "BETPLAN", + "nomCommune": "BETPLAN" }, { - "codePostal": "08320", - "codeCommune": "08487", - "libelleAcheminement": "VIREUX WALLERAND", - "nomCommune": "VIREUX WALLERAND" + "codePostal": "32270", + "codeCommune": "32056", + "libelleAcheminement": "BLANQUEFORT", + "nomCommune": "BLANQUEFORT" }, { - "codePostal": "08400", - "codeCommune": "08489", - "libelleAcheminement": "VONCQ", - "nomCommune": "VONCQ" + "codePostal": "32410", + "codeCommune": "32059", + "libelleAcheminement": "BONAS", + "nomCommune": "BONAS" }, { - "codePostal": "08400", - "codeCommune": "08490", - "libelleAcheminement": "VOUZIERS", - "nomCommune": "VOUZIERS" + "codePostal": "32220", + "codeCommune": "32069", + "libelleAcheminement": "CADEILLAN", + "nomCommune": "CADEILLAN" }, { - "codePostal": "08350", - "codeCommune": "08491", - "libelleAcheminement": "VRIGNE AUX BOIS", - "nomCommune": "VRIGNE AUX BOIS" + "codePostal": "32190", + "codeCommune": "32072", + "libelleAcheminement": "CALLIAN", + "nomCommune": "CALLIAN" }, { - "codePostal": "08350", - "codeCommune": "08492", - "libelleAcheminement": "VRIGNE MEUSE", - "nomCommune": "VRIGNE MEUSE" + "codePostal": "32100", + "codeCommune": "32075", + "libelleAcheminement": "CASSAIGNE", + "nomCommune": "CASSAIGNE" }, { - "codePostal": "08270", - "codeCommune": "08499", - "libelleAcheminement": "WASIGNY", - "nomCommune": "WASIGNY" + "codePostal": "32450", + "codeCommune": "32076", + "libelleAcheminement": "CASTELNAU BARBARENS", + "nomCommune": "CASTELNAU BARBARENS" }, { - "codePostal": "08210", - "codeCommune": "08502", - "libelleAcheminement": "YONCQ", - "nomCommune": "YONCQ" + "codePostal": "32250", + "codeCommune": "32079", + "libelleAcheminement": "CASTELNAU D AUZAN LABARRERE", + "nomCommune": "CASTELNAU D AUZAN LABARRERE" }, { - "codePostal": "09200", - "codeCommune": "09008", - "libelleAcheminement": "ALOS", - "nomCommune": "ALOS" + "codePostal": "32380", + "codeCommune": "32084", + "libelleAcheminement": "CASTERON", + "nomCommune": "CASTERON" }, { - "codePostal": "09800", - "codeCommune": "09011", - "libelleAcheminement": "ANTRAS", - "nomCommune": "ANTRAS" + "codePostal": "32200", + "codeCommune": "32092", + "libelleAcheminement": "CATONVIELLE", + "nomCommune": "CATONVIELLE" }, { - "codePostal": "09400", - "codeCommune": "09015", - "libelleAcheminement": "ARIGNAC", - "nomCommune": "ARIGNAC" + "codePostal": "32150", + "codeCommune": "32096", + "libelleAcheminement": "CAZAUBON", + "nomCommune": "CAZAUBON" }, { - "codePostal": "09400", - "codeCommune": "09016", - "libelleAcheminement": "ARNAVE", - "nomCommune": "ARNAVE" + "codePostal": "32230", + "codeCommune": "32099", + "libelleAcheminement": "CAZAUX VILLECOMTAL", + "nomCommune": "CAZAUX VILLECOMTAL" }, { - "codePostal": "09120", - "codeCommune": "09021", - "libelleAcheminement": "ARTIX", - "nomCommune": "ARTIX" + "codePostal": "32600", + "codeCommune": "32105", + "libelleAcheminement": "CLERMONT SAVES", + "nomCommune": "CLERMONT SAVES" }, { - "codePostal": "09140", - "codeCommune": "09029", - "libelleAcheminement": "AULUS LES BAINS", - "nomCommune": "AULUS LES BAINS" + "codePostal": "32270", + "codeCommune": "32112", + "libelleAcheminement": "CRASTES", + "nomCommune": "CRASTES" }, { - "codePostal": "09700", - "codeCommune": "09040", - "libelleAcheminement": "LA BASTIDE DE LORDAT", - "nomCommune": "LA BASTIDE DE LORDAT" + "codePostal": "32300", + "codeCommune": "32114", + "libelleAcheminement": "CUELAS", + "nomCommune": "CUELAS" }, { - "codePostal": "09230", - "codeCommune": "09046", - "libelleAcheminement": "BEDEILLE", - "nomCommune": "BEDEILLE" + "codePostal": "32600", + "codeCommune": "32121", + "libelleAcheminement": "ENDOUFIELLE", + "nomCommune": "ENDOUFIELLE" }, { - "codePostal": "09100", - "codeCommune": "09056", - "libelleAcheminement": "BEZAC", - "nomCommune": "BEZAC" + "codePostal": "32380", + "codeCommune": "32129", + "libelleAcheminement": "ESTRAMIAC", + "nomCommune": "ESTRAMIAC" }, { - "codePostal": "09800", - "codeCommune": "09059", - "libelleAcheminement": "BONAC IRAZEIN", - "nomCommune": "BONAC IRAZEIN" + "codePostal": "32450", + "codeCommune": "32130", + "libelleAcheminement": "FAGET ABBATIAL", + "nomCommune": "FAGET ABBATIAL" }, { - "codePostal": "09350", - "codeCommune": "09061", - "libelleAcheminement": "LES BORDES SUR ARIZE", - "nomCommune": "LES BORDES SUR ARIZE" + "codePostal": "32340", + "codeCommune": "32131", + "libelleAcheminement": "FLAMARENS", + "nomCommune": "FLAMARENS" }, { - "codePostal": "09800", - "codeCommune": "09062", - "libelleAcheminement": "BORDES UCHENTEIN", - "nomCommune": "BORDES UCHENTEIN" + "codePostal": "32500", + "codeCommune": "32132", + "libelleAcheminement": "FLEURANCE", + "nomCommune": "FLEURANCE" }, { - "codePostal": "09310", - "codeCommune": "09064", - "libelleAcheminement": "BOUAN", - "nomCommune": "BOUAN" + "codePostal": "32160", + "codeCommune": "32136", + "libelleAcheminement": "GALIAX", + "nomCommune": "GALIAX" }, { - "codePostal": "09000", - "codeCommune": "09068", - "libelleAcheminement": "BURRET", - "nomCommune": "BURRET" + "codePostal": "32330", + "codeCommune": "32149", + "libelleAcheminement": "GONDRIN", + "nomCommune": "GONDRIN" }, { - "codePostal": "09400", - "codeCommune": "09077", - "libelleAcheminement": "CAPOULET ET JUNAC", - "nomCommune": "CAPOULET ET JUNAC" + "codePostal": "32270", + "codeCommune": "32157", + "libelleAcheminement": "L ISLE ARNE", + "nomCommune": "L ISLE ARNE" }, { - "codePostal": "09460", - "codeCommune": "09078", - "libelleAcheminement": "CARCANIERES", - "nomCommune": "CARCANIERES" + "codePostal": "32300", + "codeCommune": "32159", + "libelleAcheminement": "L ISLE DE NOE", + "nomCommune": "L ISLE DE NOE" }, { - "codePostal": "09130", - "codeCommune": "09079", - "libelleAcheminement": "CARLA BAYLE", - "nomCommune": "CARLA BAYLE" + "codePostal": "32230", + "codeCommune": "32164", + "libelleAcheminement": "JUILLAC", + "nomCommune": "JUILLAC" }, { - "codePostal": "09130", - "codeCommune": "09083", - "libelleAcheminement": "CASTERAS", - "nomCommune": "CASTERAS" + "codePostal": "32170", + "codeCommune": "32167", + "libelleAcheminement": "LAAS", + "nomCommune": "LAAS" }, { - "codePostal": "09400", - "codeCommune": "09092", - "libelleAcheminement": "CAZENAVE SERRES ET ALLENS", - "nomCommune": "CAZENAVE SERRES ET ALLENS" + "codePostal": "32300", + "codeCommune": "32172", + "libelleAcheminement": "LABEJAN", + "nomCommune": "LABEJAN" }, { - "codePostal": "09310", - "codeCommune": "09096", - "libelleAcheminement": "CHATEAU VERDUN", - "nomCommune": "CHATEAU VERDUN" + "codePostal": "32120", + "codeCommune": "32173", + "libelleAcheminement": "LABRIHE", + "nomCommune": "LABRIHE" }, { - "codePostal": "09230", - "codeCommune": "09098", - "libelleAcheminement": "CONTRAZY", - "nomCommune": "CONTRAZY" + "codePostal": "32230", + "codeCommune": "32174", + "libelleAcheminement": "LADEVEZE RIVIERE", + "nomCommune": "LADEVEZE RIVIERE" }, { - "codePostal": "09140", - "codeCommune": "09100", - "libelleAcheminement": "COUFLENS", - "nomCommune": "COUFLENS" + "codePostal": "32230", + "codeCommune": "32175", + "libelleAcheminement": "LADEVEZE VILLE", + "nomCommune": "LADEVEZE VILLE" }, { - "codePostal": "09140", - "codeCommune": "09100", - "libelleAcheminement": "COUFLENS", - "nomCommune": "COUFLENS" + "codePostal": "32130", + "codeCommune": "32182", + "libelleAcheminement": "LAHAS", + "nomCommune": "LAHAS" }, { - "codePostal": "09600", - "codeCommune": "09107", - "libelleAcheminement": "DUN", - "nomCommune": "DUN" + "codePostal": "32260", + "codeCommune": "32186", + "libelleAcheminement": "LAMAGUERE", + "nomCommune": "LAMAGUERE" }, { - "codePostal": "09800", - "codeCommune": "09111", - "libelleAcheminement": "ENGOMER", - "nomCommune": "ENGOMER" + "codePostal": "32500", + "codeCommune": "32188", + "libelleAcheminement": "LAMOTHE GOAS", + "nomCommune": "LAMOTHE GOAS" }, { - "codePostal": "09100", - "codeCommune": "09116", - "libelleAcheminement": "ESCOSSE", - "nomCommune": "ESCOSSE" + "codePostal": "32150", + "codeCommune": "32193", + "libelleAcheminement": "LAREE", + "nomCommune": "LAREE" }, { - "codePostal": "09420", - "codeCommune": "09118", - "libelleAcheminement": "ESPLAS DE SEROU", - "nomCommune": "ESPLAS DE SEROU" + "codePostal": "32160", + "codeCommune": "32199", + "libelleAcheminement": "LASSERRADE", + "nomCommune": "LASSERRADE" }, { - "codePostal": "09000", - "codeCommune": "09121", - "libelleAcheminement": "FERRIERES SUR ARIEGE", - "nomCommune": "FERRIERES SUR ARIEGE" + "codePostal": "32550", + "codeCommune": "32200", + "libelleAcheminement": "LASSERAN", + "nomCommune": "LASSERAN" }, { - "codePostal": "09000", - "codeCommune": "09122", - "libelleAcheminement": "FOIX", - "nomCommune": "FOIX" + "codePostal": "32810", + "codeCommune": "32207", + "libelleAcheminement": "LEBOULIN", + "nomCommune": "LEBOULIN" }, { - "codePostal": "09300", - "codeCommune": "09126", - "libelleAcheminement": "FREYCHENET", - "nomCommune": "FREYCHENET" + "codePostal": "32110", + "codeCommune": "32214", + "libelleAcheminement": "LOUBEDAT", + "nomCommune": "LOUBEDAT" }, { - "codePostal": "09290", - "codeCommune": "09127", - "libelleAcheminement": "GABRE", - "nomCommune": "GABRE" + "codePostal": "32310", + "codeCommune": "32230", + "libelleAcheminement": "MANSENCOME", + "nomCommune": "MANSENCOME" }, { - "codePostal": "09700", - "codeCommune": "09132", - "libelleAcheminement": "GAUDIES", - "nomCommune": "GAUDIES" + "codePostal": "32490", + "codeCommune": "32234", + "libelleAcheminement": "MARESTAING", + "nomCommune": "MARESTAING" }, { - "codePostal": "09400", - "codeCommune": "09133", - "libelleAcheminement": "GENAT", - "nomCommune": "GENAT" + "codePostal": "32700", + "codeCommune": "32241", + "libelleAcheminement": "MAS D AUVIGNON", + "nomCommune": "MAS D AUVIGNON" }, { - "codePostal": "09220", - "codeCommune": "09134", - "libelleAcheminement": "GESTIES", - "nomCommune": "GESTIES" + "codePostal": "32240", + "codeCommune": "32243", + "libelleAcheminement": "MAULEON D ARMAGNAC", + "nomCommune": "MAULEON D ARMAGNAC" }, { - "codePostal": "09120", - "codeCommune": "09137", - "libelleAcheminement": "GUDAS", - "nomCommune": "GUDAS" + "codePostal": "32380", + "codeCommune": "32248", + "libelleAcheminement": "MAUROUX", + "nomCommune": "MAUROUX" }, { - "codePostal": "09000", - "codeCommune": "09138", - "libelleAcheminement": "L HERM", - "nomCommune": "L HERM" + "codePostal": "32260", + "codeCommune": "32266", + "libelleAcheminement": "MONCORNEIL GRAZAN", + "nomCommune": "MONCORNEIL GRAZAN" }, { - "codePostal": "09700", - "codeCommune": "09146", - "libelleAcheminement": "JUSTINIAC", - "nomCommune": "JUSTINIAC" + "codePostal": "32120", + "codeCommune": "32269", + "libelleAcheminement": "MONFORT", + "nomCommune": "MONFORT" }, { - "codePostal": "09160", - "codeCommune": "09148", - "libelleAcheminement": "LACAVE", - "nomCommune": "LACAVE" + "codePostal": "32220", + "codeCommune": "32270", + "libelleAcheminement": "MONGAUSY", + "nomCommune": "MONGAUSY" }, { - "codePostal": "09400", - "codeCommune": "09152", - "libelleAcheminement": "LAPEGE", - "nomCommune": "LAPEGE" + "codePostal": "32140", + "codeCommune": "32280", + "libelleAcheminement": "MONT D ASTARAC", + "nomCommune": "MONT D ASTARAC" }, { - "codePostal": "09500", - "codeCommune": "09153", - "libelleAcheminement": "LAPENNE", - "nomCommune": "LAPENNE" + "codePostal": "32420", + "codeCommune": "32287", + "libelleAcheminement": "MONTIES", + "nomCommune": "MONTIES" }, { - "codePostal": "09600", - "codeCommune": "09157", - "libelleAcheminement": "LAROQUE D OLMES", - "nomCommune": "LAROQUE D OLMES" + "codePostal": "32270", + "codeCommune": "32298", + "libelleAcheminement": "NOUGAROULET", + "nomCommune": "NOUGAROULET" }, { - "codePostal": "09300", - "codeCommune": "09160", - "libelleAcheminement": "LAVELANET", - "nomCommune": "LAVELANET" + "codePostal": "32350", + "codeCommune": "32301", + "libelleAcheminement": "ORDAN LARROQUE", + "nomCommune": "ORDAN LARROQUE" }, { - "codePostal": "09700", - "codeCommune": "09170", - "libelleAcheminement": "LISSAC", - "nomCommune": "LISSAC" + "codePostal": "32230", + "codeCommune": "32303", + "libelleAcheminement": "PALLANNE", + "nomCommune": "PALLANNE" }, { - "codePostal": "09500", - "codeCommune": "09180", - "libelleAcheminement": "MANSES", - "nomCommune": "MANSES" + "codePostal": "32700", + "codeCommune": "32311", + "libelleAcheminement": "PERGAIN TAILLAC", + "nomCommune": "PERGAIN TAILLAC" }, { - "codePostal": "09270", - "codeCommune": "09185", - "libelleAcheminement": "MAZERES", - "nomCommune": "MAZERES" + "codePostal": "32340", + "codeCommune": "32314", + "libelleAcheminement": "PEYRECAVE", + "nomCommune": "PEYRECAVE" }, { - "codePostal": "09160", - "codeCommune": "09187", - "libelleAcheminement": "MERCENAC", - "nomCommune": "MERCENAC" + "codePostal": "32340", + "codeCommune": "32320", + "libelleAcheminement": "PLIEUX", + "nomCommune": "PLIEUX" }, { - "codePostal": "09400", - "codeCommune": "09188", - "libelleAcheminement": "MERCUS GARRABET", - "nomCommune": "MERCUS GARRABET" + "codePostal": "32290", + "codeCommune": "32325", + "libelleAcheminement": "POUYDRAGUIN", + "nomCommune": "POUYDRAGUIN" }, { - "codePostal": "09110", - "codeCommune": "09197", - "libelleAcheminement": "MONTAILLOU", - "nomCommune": "MONTAILLOU" + "codePostal": "32160", + "codeCommune": "32330", + "libelleAcheminement": "PRECHAC SUR ADOUR", + "nomCommune": "PRECHAC SUR ADOUR" }, { - "codePostal": "09200", - "codeCommune": "09201", - "libelleAcheminement": "MONTEGUT EN COUSERANS", - "nomCommune": "MONTEGUT EN COUSERANS" + "codePostal": "32220", + "codeCommune": "32336", + "libelleAcheminement": "PUYLAUSIC", + "nomCommune": "PUYLAUSIC" }, { - "codePostal": "09160", - "codeCommune": "09208", - "libelleAcheminement": "MONTGAUCH", - "nomCommune": "MONTGAUCH" + "codePostal": "32600", + "codeCommune": "32339", + "libelleAcheminement": "RAZENGUES", + "nomCommune": "RAZENGUES" }, { - "codePostal": "09000", - "codeCommune": "09210", - "libelleAcheminement": "MONTOULIEU", - "nomCommune": "MONTOULIEU" + "codePostal": "32320", + "codeCommune": "32343", + "libelleAcheminement": "RIGUEPEU", + "nomCommune": "RIGUEPEU" }, { - "codePostal": "09300", - "codeCommune": "09215", - "libelleAcheminement": "NALZEN", - "nomCommune": "NALZEN" + "codePostal": "32480", + "codeCommune": "32345", + "libelleAcheminement": "LA ROMIEU", + "nomCommune": "LA ROMIEU" }, { - "codePostal": "09400", - "codeCommune": "09221", - "libelleAcheminement": "ORNOLAC USSAT LES BAINS", - "nomCommune": "ORNOLAC USSAT LES BAINS" + "codePostal": "32190", + "codeCommune": "32352", + "libelleAcheminement": "ROZES", + "nomCommune": "ROZES" }, { - "codePostal": "09220", - "codeCommune": "09222", - "libelleAcheminement": "ORUS", - "nomCommune": "ORUS" + "codePostal": "32420", + "codeCommune": "32353", + "libelleAcheminement": "SABAILLAN", + "nomCommune": "SABAILLAN" }, { - "codePostal": "09460", - "codeCommune": "09230", - "libelleAcheminement": "LE PLA", - "nomCommune": "LE PLA" + "codePostal": "32290", + "codeCommune": "32354", + "libelleAcheminement": "SABAZAN", + "nomCommune": "SABAZAN" }, { - "codePostal": "09320", - "codeCommune": "09231", - "libelleAcheminement": "LE PORT", - "nomCommune": "LE PORT" + "codePostal": "32350", + "codeCommune": "32360", + "libelleAcheminement": "ST ARAILLES", + "nomCommune": "ST ARAILLES" }, { - "codePostal": "09600", - "codeCommune": "09233", - "libelleAcheminement": "PRADETTES", - "nomCommune": "PRADETTES" + "codePostal": "32200", + "codeCommune": "32379", + "libelleAcheminement": "ST GERMIER", + "nomCommune": "ST GERMIER" }, { - "codePostal": "09000", - "codeCommune": "09236", - "libelleAcheminement": "PRAYOLS", - "nomCommune": "PRAYOLS" + "codePostal": "32110", + "codeCommune": "32380", + "libelleAcheminement": "ST GRIEDE", + "nomCommune": "ST GRIEDE" }, { - "codePostal": "09300", - "codeCommune": "09242", - "libelleAcheminement": "RAISSAC", - "nomCommune": "RAISSAC" + "codePostal": "32190", + "codeCommune": "32382", + "libelleAcheminement": "ST JEAN POUTGE", + "nomCommune": "ST JEAN POUTGE" }, { - "codePostal": "09300", - "codeCommune": "09250", - "libelleAcheminement": "ROQUEFORT LES CASCADES", - "nomCommune": "ROQUEFORT LES CASCADES" + "codePostal": "32200", + "codeCommune": "32388", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "09460", - "codeCommune": "09252", - "libelleAcheminement": "ROUZE", - "nomCommune": "ROUZE" + "codePostal": "32300", + "codeCommune": "32389", + "libelleAcheminement": "ST MARTIN", + "nomCommune": "ST MARTIN" }, { - "codePostal": "09230", - "codeCommune": "09257", - "libelleAcheminement": "STE CROIX VOLVESTRE", - "nomCommune": "STE CROIX VOLVESTRE" + "codePostal": "32110", + "codeCommune": "32390", + "libelleAcheminement": "ST MARTIN D ARMAGNAC", + "nomCommune": "ST MARTIN D ARMAGNAC" }, { - "codePostal": "09500", - "codeCommune": "09259", - "libelleAcheminement": "ST FELIX DE TOURNEGAT", - "nomCommune": "ST FELIX DE TOURNEGAT" + "codePostal": "32300", + "codeCommune": "32394", + "libelleAcheminement": "ST MEDARD", + "nomCommune": "ST MEDARD" }, { - "codePostal": "09000", - "codeCommune": "09264", - "libelleAcheminement": "ST JEAN DE VERGES", - "nomCommune": "ST JEAN DE VERGES" + "codePostal": "32300", + "codeCommune": "32397", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "09700", - "codeCommune": "09275", - "libelleAcheminement": "ST QUIRC", - "nomCommune": "ST QUIRC" + "codePostal": "32120", + "codeCommune": "32399", + "libelleAcheminement": "ST ORENS", + "nomCommune": "ST ORENS" }, { - "codePostal": "09100", - "codeCommune": "09276", - "libelleAcheminement": "ST VICTOR ROUZAUD", - "nomCommune": "ST VICTOR ROUZAUD" + "codePostal": "32290", + "codeCommune": "32403", + "libelleAcheminement": "ST PIERRE D AUBEZIES", + "nomCommune": "ST PIERRE D AUBEZIES" }, { - "codePostal": "09140", - "codeCommune": "09285", - "libelleAcheminement": "SEIX", - "nomCommune": "SEIX" + "codePostal": "32310", + "codeCommune": "32404", + "libelleAcheminement": "ST PUY", + "nomCommune": "ST PUY" }, { - "codePostal": "09250", - "codeCommune": "09287", - "libelleAcheminement": "SENCONAC", - "nomCommune": "SENCONAC" + "codePostal": "32270", + "codeCommune": "32406", + "libelleAcheminement": "ST SAUVY", + "nomCommune": "ST SAUVY" }, { - "codePostal": "09190", - "codeCommune": "09289", - "libelleAcheminement": "LORP SENTARAILLE", - "nomCommune": "LORP SENTARAILLE" + "codePostal": "32170", + "codeCommune": "32415", + "libelleAcheminement": "SARRAGUZAN", + "nomCommune": "SARRAGUZAN" }, { - "codePostal": "09220", - "codeCommune": "09295", - "libelleAcheminement": "SIGUER", - "nomCommune": "SIGUER" + "codePostal": "32190", + "codeCommune": "32423", + "libelleAcheminement": "SEAILLES", + "nomCommune": "SEAILLES" }, { - "codePostal": "09700", - "codeCommune": "09315", - "libelleAcheminement": "TREMOULET", - "nomCommune": "TREMOULET" + "codePostal": "32400", + "codeCommune": "32424", + "libelleAcheminement": "SEGOS", + "nomCommune": "SEGOS" }, { - "codePostal": "09250", - "codeCommune": "09318", - "libelleAcheminement": "UNAC", - "nomCommune": "UNAC" + "codePostal": "32140", + "codeCommune": "32430", + "libelleAcheminement": "SERE", + "nomCommune": "SERE" }, { - "codePostal": "09100", - "codeCommune": "09319", - "libelleAcheminement": "UNZENT", - "nomCommune": "UNZENT" + "codePostal": "32110", + "codeCommune": "32434", + "libelleAcheminement": "SION", + "nomCommune": "SION" }, { - "codePostal": "09140", - "codeCommune": "09322", - "libelleAcheminement": "USTOU", - "nomCommune": "USTOU" + "codePostal": "32160", + "codeCommune": "32445", + "libelleAcheminement": "TIESTE URAGNOUX", + "nomCommune": "TIESTE URAGNOUX" }, { - "codePostal": "09120", - "codeCommune": "09324", - "libelleAcheminement": "VARILHES", - "nomCommune": "VARILHES" + "codePostal": "32240", + "codeCommune": "32449", + "libelleAcheminement": "TOUJOUSE", + "nomCommune": "TOUJOUSE" }, { - "codePostal": "09250", - "codeCommune": "09330", - "libelleAcheminement": "VERNAUX", - "nomCommune": "VERNAUX" + "codePostal": "32390", + "codeCommune": "32453", + "libelleAcheminement": "TOURRENQUETS", + "nomCommune": "TOURRENQUETS" }, { - "codePostal": "10200", - "codeCommune": "10002", - "libelleAcheminement": "AILLEVILLE", - "nomCommune": "AILLEVILLE" + "codePostal": "32450", + "codeCommune": "32454", + "libelleAcheminement": "TRAVERSERES", + "nomCommune": "TRAVERSERES" }, { - "codePostal": "10160", - "codeCommune": "10003", - "libelleAcheminement": "AIX VILLEMAUR PALIS", - "nomCommune": "AIX VILLEMAUR PALIS" + "codePostal": "32310", + "codeCommune": "32459", + "libelleAcheminement": "VALENCE SUR BAISE", + "nomCommune": "VALENCE SUR BAISE" }, { - "codePostal": "10190", - "codeCommune": "10003", - "libelleAcheminement": "AIX VILLEMAUR PALIS", - "nomCommune": "AIX VILLEMAUR PALIS" + "codePostal": "33460", + "codeCommune": "33012", + "libelleAcheminement": "ARSAC", + "nomCommune": "ARSAC" }, { - "codePostal": "10330", - "codeCommune": "10010", - "libelleAcheminement": "ARREMBECOURT", - "nomCommune": "ARREMBECOURT" + "codePostal": "33570", + "codeCommune": "33014", + "libelleAcheminement": "LES ARTIGUES DE LUSSAC", + "nomCommune": "LES ARTIGUES DE LUSSAC" }, { - "codePostal": "10400", - "codeCommune": "10020", - "libelleAcheminement": "AVANT LES MARCILLY", - "nomCommune": "AVANT LES MARCILLY" + "codePostal": "33240", + "codeCommune": "33016", + "libelleAcheminement": "ASQUES", + "nomCommune": "ASQUES" }, { - "codePostal": "10240", - "codeCommune": "10021", - "libelleAcheminement": "AVANT LES RAMERUPT", - "nomCommune": "AVANT LES RAMERUPT" + "codePostal": "33240", + "codeCommune": "33018", + "libelleAcheminement": "VAL DE VIRVEE", + "nomCommune": "VAL DE VIRVEE" }, { - "codePostal": "10330", - "codeCommune": "10026", - "libelleAcheminement": "BAILLY LE FRANC", - "nomCommune": "BAILLY LE FRANC" + "codePostal": "33760", + "codeCommune": "33025", + "libelleAcheminement": "BAIGNEAUX", + "nomCommune": "BAIGNEAUX" }, { - "codePostal": "10200", - "codeCommune": "10033", - "libelleAcheminement": "BAR SUR AUBE", - "nomCommune": "BAR SUR AUBE" + "codePostal": "33530", + "codeCommune": "33032", + "libelleAcheminement": "BASSENS", + "nomCommune": "BASSENS" }, { - "codePostal": "10310", - "codeCommune": "10035", - "libelleAcheminement": "BAYEL", - "nomCommune": "BAYEL" + "codePostal": "33710", + "codeCommune": "33035", + "libelleAcheminement": "BAYON SUR GIRONDE", + "nomCommune": "BAYON SUR GIRONDE" }, { - "codePostal": "10190", - "codeCommune": "10037", - "libelleAcheminement": "BERCENAY EN OTHE", - "nomCommune": "BERCENAY EN OTHE" + "codePostal": "33830", + "codeCommune": "33042", + "libelleAcheminement": "BELIN BELIET", + "nomCommune": "BELIN BELIET" }, { - "codePostal": "10500", - "codeCommune": "10047", - "libelleAcheminement": "BLIGNICOURT", - "nomCommune": "BLIGNICOURT" + "codePostal": "33760", + "codeCommune": "33043", + "libelleAcheminement": "BELLEBAT", + "nomCommune": "BELLEBAT" }, { - "codePostal": "10290", - "codeCommune": "10054", - "libelleAcheminement": "BOURDENAY", - "nomCommune": "BOURDENAY" + "codePostal": "33210", + "codeCommune": "33050", + "libelleAcheminement": "BIEUJAC", + "nomCommune": "BIEUJAC" }, { - "codePostal": "10500", - "codeCommune": "10059", - "libelleAcheminement": "BRAUX", - "nomCommune": "BRAUX" + "codePostal": "33380", + "codeCommune": "33051", + "libelleAcheminement": "BIGANOS", + "nomCommune": "BIGANOS" }, { - "codePostal": "10500", - "codeCommune": "10063", - "libelleAcheminement": "BRIENNE LA VIEILLE", - "nomCommune": "BRIENNE LA VIEILLE" + "codePostal": "33390", + "codeCommune": "33058", + "libelleAcheminement": "BLAYE", + "nomCommune": "BLAYE" }, { - "codePostal": "10190", - "codeCommune": "10066", - "libelleAcheminement": "BUCEY EN OTHE", - "nomCommune": "BUCEY EN OTHE" + "codePostal": "33800", + "codeCommune": "33063", + "libelleAcheminement": "BORDEAUX", + "nomCommune": "BORDEAUX" }, { - "codePostal": "10800", - "codeCommune": "10067", - "libelleAcheminement": "BUCHERES", - "nomCommune": "BUCHERES" + "codePostal": "33110", + "codeCommune": "33069", + "libelleAcheminement": "LE BOUSCAT", + "nomCommune": "LE BOUSCAT" }, { - "codePostal": "10700", - "codeCommune": "10077", - "libelleAcheminement": "CHAMPIGNY SUR AUBE", - "nomCommune": "CHAMPIGNY SUR AUBE" + "codePostal": "33520", + "codeCommune": "33075", + "libelleAcheminement": "BRUGES", + "nomCommune": "BRUGES" }, { - "codePostal": "10140", - "codeCommune": "10078", - "libelleAcheminement": "CHAMP SUR BARSE", - "nomCommune": "CHAMP SUR BARSE" + "codePostal": "33650", + "codeCommune": "33077", + "libelleAcheminement": "CABANAC ET VILLAGRAINS", + "nomCommune": "CABANAC ET VILLAGRAINS" }, { - "codePostal": "10510", - "codeCommune": "10089", - "libelleAcheminement": "CHATRES", - "nomCommune": "CHATRES" + "codePostal": "33420", + "codeCommune": "33078", + "libelleAcheminement": "CABARA", + "nomCommune": "CABARA" }, { - "codePostal": "10500", - "codeCommune": "10093", - "libelleAcheminement": "CHAUMESNIL", - "nomCommune": "CHAUMESNIL" + "codePostal": "33140", + "codeCommune": "33080", + "libelleAcheminement": "CADAUJAC", + "nomCommune": "CADAUJAC" }, { - "codePostal": "10210", - "codeCommune": "10098", - "libelleAcheminement": "CHESLEY", - "nomCommune": "CHESLEY" + "codePostal": "33880", + "codeCommune": "33084", + "libelleAcheminement": "CAMBES", + "nomCommune": "CAMBES" }, { - "codePostal": "10390", - "codeCommune": "10100", - "libelleAcheminement": "CLEREY", - "nomCommune": "CLEREY" + "codePostal": "33390", + "codeCommune": "33089", + "libelleAcheminement": "CAMPUGNAN", + "nomCommune": "CAMPUGNAN" }, { - "codePostal": "10210", - "codeCommune": "10112", - "libelleAcheminement": "COUSSEGREY", - "nomCommune": "COUSSEGREY" + "codePostal": "33560", + "codeCommune": "33096", + "libelleAcheminement": "CARBON BLANC", + "nomCommune": "CARBON BLANC" }, { - "codePostal": "10190", - "codeCommune": "10124", - "libelleAcheminement": "DIERREY ST JULIEN", - "nomCommune": "DIERREY ST JULIEN" + "codePostal": "33210", + "codeCommune": "33106", + "libelleAcheminement": "CASTETS ET CASTILLON", + "nomCommune": "CASTETS ET CASTILLON" }, { - "codePostal": "10240", - "codeCommune": "10127", - "libelleAcheminement": "DOMMARTIN LE COQ", - "nomCommune": "DOMMARTIN LE COQ" + "codePostal": "33350", + "codeCommune": "33108", + "libelleAcheminement": "CASTILLON LA BATAILLE", + "nomCommune": "CASTILLON LA BATAILLE" }, { - "codePostal": "10130", - "codeCommune": "10133", - "libelleAcheminement": "EAUX PUISEAUX", - "nomCommune": "EAUX PUISEAUX" + "codePostal": "33710", + "codeCommune": "33132", + "libelleAcheminement": "COMPS", + "nomCommune": "COMPS" }, { - "codePostal": "10350", - "codeCommune": "10134", - "libelleAcheminement": "ECHEMINES", - "nomCommune": "ECHEMINES" + "codePostal": "33890", + "codeCommune": "33133", + "libelleAcheminement": "COUBEYRAC", + "nomCommune": "COUBEYRAC" }, { - "codePostal": "10200", - "codeCommune": "10135", - "libelleAcheminement": "ECLANCE", - "nomCommune": "ECLANCE" + "codePostal": "33760", + "codeCommune": "33135", + "libelleAcheminement": "COURPIAC", + "nomCommune": "COURPIAC" }, { - "codePostal": "10500", - "codeCommune": "10138", - "libelleAcheminement": "EPAGNE", - "nomCommune": "EPAGNE" + "codePostal": "33690", + "codeCommune": "33137", + "libelleAcheminement": "COURS LES BAINS", + "nomCommune": "COURS LES BAINS" }, { - "codePostal": "10210", - "codeCommune": "10143", - "libelleAcheminement": "ETOURVY", - "nomCommune": "ETOURVY" + "codePostal": "33670", + "codeCommune": "33140", + "libelleAcheminement": "CREON", + "nomCommune": "CREON" }, { - "codePostal": "10290", - "codeCommune": "10146", - "libelleAcheminement": "FAY LES MARCILLY", - "nomCommune": "FAY LES MARCILLY" + "codePostal": "33620", + "codeCommune": "33142", + "libelleAcheminement": "CUBNEZAIS", + "nomCommune": "CUBNEZAIS" }, { - "codePostal": "10320", - "codeCommune": "10147", - "libelleAcheminement": "FAYS LA CHAPELLE", - "nomCommune": "FAYS LA CHAPELLE" + "codePostal": "33350", + "codeCommune": "33153", + "libelleAcheminement": "DOULEZON", + "nomCommune": "DOULEZON" }, { - "codePostal": "10400", - "codeCommune": "10148", - "libelleAcheminement": "FERREUX QUINCEY", - "nomCommune": "FERREUX QUINCEY" + "codePostal": "33190", + "codeCommune": "33158", + "libelleAcheminement": "LES ESSEINTES", + "nomCommune": "LES ESSEINTES" }, { - "codePostal": "10200", - "codeCommune": "10150", - "libelleAcheminement": "FONTAINE", - "nomCommune": "FONTAINE" + "codePostal": "33320", + "codeCommune": "33162", + "libelleAcheminement": "EYSINES", + "nomCommune": "EYSINES" }, { - "codePostal": "10280", - "codeCommune": "10151", - "libelleAcheminement": "FONTAINE LES GRES", - "nomCommune": "FONTAINE LES GRES" + "codePostal": "33370", + "codeCommune": "33165", + "libelleAcheminement": "FARGUES ST HILAIRE", + "nomCommune": "FARGUES ST HILAIRE" }, { - "codePostal": "10100", - "codeCommune": "10157", - "libelleAcheminement": "LA FOSSE CORDUAN", - "nomCommune": "LA FOSSE CORDUAN" + "codePostal": "33230", + "codeCommune": "33166", + "libelleAcheminement": "LE FIEU", + "nomCommune": "LE FIEU" }, { - "codePostal": "10260", - "codeCommune": "10158", - "libelleAcheminement": "FOUCHERES", - "nomCommune": "FOUCHERES" + "codePostal": "33190", + "codeCommune": "33171", + "libelleAcheminement": "FOSSES ET BALEYSSAC", + "nomCommune": "FOSSES ET BALEYSSAC" }, { - "codePostal": "10200", - "codeCommune": "10161", - "libelleAcheminement": "FRESNAY", - "nomCommune": "FRESNAY" + "codePostal": "33390", + "codeCommune": "33172", + "libelleAcheminement": "FOURS", + "nomCommune": "FOURS" }, { - "codePostal": "10120", - "codeCommune": "10186", - "libelleAcheminement": "LAINES AUX BOIS", - "nomCommune": "LAINES AUX BOIS" + "codePostal": "33420", + "codeCommune": "33185", + "libelleAcheminement": "GENISSAC", + "nomCommune": "GENISSAC" }, { - "codePostal": "10110", - "codeCommune": "10187", - "libelleAcheminement": "LANDREVILLE", - "nomCommune": "LANDREVILLE" + "codePostal": "33890", + "codeCommune": "33186", + "libelleAcheminement": "GENSAC", + "nomCommune": "GENSAC" }, { - "codePostal": "10270", - "codeCommune": "10190", - "libelleAcheminement": "LAUBRESSEL", - "nomCommune": "LAUBRESSEL" + "codePostal": "33540", + "codeCommune": "33189", + "libelleAcheminement": "GORNAC", + "nomCommune": "GORNAC" }, { - "codePostal": "10150", - "codeCommune": "10191", - "libelleAcheminement": "LAVAU", - "nomCommune": "LAVAU" + "codePostal": "33470", + "codeCommune": "33199", + "libelleAcheminement": "GUJAN MESTRAS", + "nomCommune": "GUJAN MESTRAS" }, { - "codePostal": "10310", - "codeCommune": "10203", - "libelleAcheminement": "LONGCHAMP SUR AUJON", - "nomCommune": "LONGCHAMP SUR AUJON" + "codePostal": "33890", + "codeCommune": "33210", + "libelleAcheminement": "JUILLAC", + "nomCommune": "JUILLAC" }, { - "codePostal": "10210", - "codeCommune": "10218", - "libelleAcheminement": "MAISONS LES CHAOURCE", - "nomCommune": "MAISONS LES CHAOURCE" + "codePostal": "33650", + "codeCommune": "33213", + "libelleAcheminement": "LA BREDE", + "nomCommune": "LA BREDE" }, { - "codePostal": "10510", - "codeCommune": "10220", - "libelleAcheminement": "MAIZIERES LA GRANDE PAROISSE", - "nomCommune": "MAIZIERES LA GRANDE PAROISSE" + "codePostal": "33680", + "codeCommune": "33214", + "libelleAcheminement": "LACANAU", + "nomCommune": "LACANAU" }, { - "codePostal": "10510", - "codeCommune": "10220", - "libelleAcheminement": "MAIZIERES LA GRANDE PAROISSE", - "nomCommune": "MAIZIERES LA GRANDE PAROISSE" + "codePostal": "33680", + "codeCommune": "33214", + "libelleAcheminement": "LACANAU", + "nomCommune": "LACANAU" }, { - "codePostal": "10160", - "codeCommune": "10222", - "libelleAcheminement": "MARAYE EN OTHE", - "nomCommune": "MARAYE EN OTHE" + "codePostal": "33190", + "codeCommune": "33221", + "libelleAcheminement": "LAMOTHE LANDERRON", + "nomCommune": "LAMOTHE LANDERRON" }, { - "codePostal": "10400", - "codeCommune": "10225", - "libelleAcheminement": "MARNAY SUR SEINE", - "nomCommune": "MARNAY SUR SEINE" + "codePostal": "33620", + "codeCommune": "33230", + "libelleAcheminement": "LAPOUYADE", + "nomCommune": "LAPOUYADE" }, { - "codePostal": "10110", - "codeCommune": "10226", - "libelleAcheminement": "MAROLLES LES BAILLY", - "nomCommune": "MAROLLES LES BAILLY" + "codePostal": "33360", + "codeCommune": "33234", + "libelleAcheminement": "LATRESNE", + "nomCommune": "LATRESNE" }, { - "codePostal": "10320", - "codeCommune": "10229", - "libelleAcheminement": "MAUPAS", - "nomCommune": "MAUPAS" + "codePostal": "33970", + "codeCommune": "33236", + "libelleAcheminement": "LEGE CAP FERRET", + "nomCommune": "LEGE CAP FERRET" }, { - "codePostal": "10200", - "codeCommune": "10242", - "libelleAcheminement": "MEURVILLE", - "nomCommune": "MEURVILLE" + "codePostal": "33970", + "codeCommune": "33236", + "libelleAcheminement": "LEGE CAP FERRET", + "nomCommune": "LEGE CAP FERRET" }, { - "codePostal": "10130", - "codeCommune": "10247", - "libelleAcheminement": "MONTFEY", - "nomCommune": "MONTFEY" + "codePostal": "33850", + "codeCommune": "33238", + "libelleAcheminement": "LEOGNAN", + "nomCommune": "LEOGNAN" }, { - "codePostal": "10300", - "codeCommune": "10248", - "libelleAcheminement": "MONTGUEUX", - "nomCommune": "MONTGUEUX" + "codePostal": "33500", + "codeCommune": "33243", + "libelleAcheminement": "LIBOURNE", + "nomCommune": "LIBOURNE" }, { - "codePostal": "10400", - "codeCommune": "10254", - "libelleAcheminement": "MONTPOTHIER", - "nomCommune": "MONTPOTHIER" + "codePostal": "33310", + "codeCommune": "33249", + "libelleAcheminement": "LORMONT", + "nomCommune": "LORMONT" }, { - "codePostal": "10500", - "codeCommune": "10258", - "libelleAcheminement": "MORVILLIERS", - "nomCommune": "MORVILLIERS" + "codePostal": "33570", + "codeCommune": "33261", + "libelleAcheminement": "LUSSAC", + "nomCommune": "LUSSAC" }, { - "codePostal": "10800", - "codeCommune": "10260", - "libelleAcheminement": "MOUSSEY", - "nomCommune": "MOUSSEY" + "codePostal": "33460", + "codeCommune": "33262", + "libelleAcheminement": "MACAU", + "nomCommune": "MACAU" }, { - "codePostal": "10190", - "codeCommune": "10263", - "libelleAcheminement": "NEUVILLE SUR VANNE", - "nomCommune": "NEUVILLE SUR VANNE" + "codePostal": "33127", + "codeCommune": "33273", + "libelleAcheminement": "MARTIGNAS SUR JALLE", + "nomCommune": "MARTIGNAS SUR JALLE" }, { - "codePostal": "10220", - "codeCommune": "10287", - "libelleAcheminement": "PINEY", - "nomCommune": "PINEY" + "codePostal": "33760", + "codeCommune": "33275", + "libelleAcheminement": "MARTRES", + "nomCommune": "MARTRES" }, { - "codePostal": "10150", - "codeCommune": "10297", - "libelleAcheminement": "PONT STE MARIE", - "nomCommune": "PONT STE MARIE" + "codePostal": "33690", + "codeCommune": "33276", + "libelleAcheminement": "MASSEILLES", + "nomCommune": "MASSEILLES" }, { - "codePostal": "10140", - "codeCommune": "10310", - "libelleAcheminement": "PUITS ET NUISEMENT", - "nomCommune": "PUITS ET NUISEMENT" + "codePostal": "33570", + "codeCommune": "33290", + "libelleAcheminement": "MONTAGNE", + "nomCommune": "MONTAGNE" }, { - "codePostal": "10240", - "codeCommune": "10314", - "libelleAcheminement": "RAMERUPT", - "nomCommune": "RAMERUPT" + "codePostal": "33570", + "codeCommune": "33290", + "libelleAcheminement": "MONTAGNE", + "nomCommune": "MONTAGNE" }, { - "codePostal": "10240", - "codeCommune": "10314", - "libelleAcheminement": "RAMERUPT", - "nomCommune": "RAMERUPT" + "codePostal": "33190", + "codeCommune": "33291", + "libelleAcheminement": "MONTAGOUDIN", + "nomCommune": "MONTAGOUDIN" }, { - "codePostal": "10440", - "codeCommune": "10321", - "libelleAcheminement": "LA RIVIERE DE CORPS", - "nomCommune": "LA RIVIERE DE CORPS" + "codePostal": "33760", + "codeCommune": "33292", + "libelleAcheminement": "MONTIGNAC", + "nomCommune": "MONTIGNAC" }, { - "codePostal": "10400", - "codeCommune": "10334", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "33190", + "codeCommune": "33306", + "libelleAcheminement": "NOAILLAC", + "nomCommune": "NOAILLAC" }, { - "codePostal": "10500", - "codeCommune": "10337", - "libelleAcheminement": "ST CHRISTOPHE DODINICOURT", - "nomCommune": "ST CHRISTOPHE DODINICOURT" + "codePostal": "33410", + "codeCommune": "33308", + "libelleAcheminement": "OMET", + "nomCommune": "OMET" }, { - "codePostal": "10180", - "codeCommune": "10349", - "libelleAcheminement": "ST LYE", - "nomCommune": "ST LYE" + "codePostal": "33230", + "codeCommune": "33315", + "libelleAcheminement": "LES PEINTURES", + "nomCommune": "LES PEINTURES" }, { - "codePostal": "10100", - "codeCommune": "10351", - "libelleAcheminement": "ST MARTIN DE BOSSENAY", - "nomCommune": "ST MARTIN DE BOSSENAY" + "codePostal": "33490", + "codeCommune": "33323", + "libelleAcheminement": "LE PIAN SUR GARONNE", + "nomCommune": "LE PIAN SUR GARONNE" }, { - "codePostal": "10700", - "codeCommune": "10354", - "libelleAcheminement": "ST NABORD SUR AUBE", - "nomCommune": "ST NABORD SUR AUBE" + "codePostal": "33220", + "codeCommune": "33324", + "libelleAcheminement": "PINEUILH", + "nomCommune": "PINEUILH" }, { - "codePostal": "10400", - "codeCommune": "10355", - "libelleAcheminement": "ST NICOLAS LA CHAPELLE", - "nomCommune": "ST NICOLAS LA CHAPELLE" + "codePostal": "33820", + "codeCommune": "33326", + "libelleAcheminement": "PLEINE SELVE", + "nomCommune": "PLEINE SELVE" }, { - "codePostal": "10300", - "codeCommune": "10362", - "libelleAcheminement": "STE SAVINE", - "nomCommune": "STE SAVINE" + "codePostal": "33190", + "codeCommune": "33331", + "libelleAcheminement": "PONDAURAT", + "nomCommune": "PONDAURAT" }, { - "codePostal": "10700", - "codeCommune": "10365", - "libelleAcheminement": "SALON", - "nomCommune": "SALON" + "codePostal": "33210", + "codeCommune": "33337", + "libelleAcheminement": "PREIGNAC", + "nomCommune": "PREIGNAC" }, { - "codePostal": "10200", - "codeCommune": "10372", - "libelleAcheminement": "SOULAINES DHUYS", - "nomCommune": "SOULAINES DHUYS" + "codePostal": "33570", + "codeCommune": "33342", + "libelleAcheminement": "PUISSEGUIN", + "nomCommune": "PUISSEGUIN" }, { - "codePostal": "10200", - "codeCommune": "10374", - "libelleAcheminement": "SPOY", - "nomCommune": "SPOY" + "codePostal": "33210", + "codeCommune": "33343", + "libelleAcheminement": "PUJOLS SUR CIRON", + "nomCommune": "PUJOLS SUR CIRON" }, { - "codePostal": "10410", - "codeCommune": "10375", - "libelleAcheminement": "THENNELIERES", - "nomCommune": "THENNELIERES" + "codePostal": "33580", + "codeCommune": "33345", + "libelleAcheminement": "LE PUY", + "nomCommune": "LE PUY" }, { - "codePostal": "10200", - "codeCommune": "10378", - "libelleAcheminement": "THORS", - "nomCommune": "THORS" + "codePostal": "33210", + "codeCommune": "33357", + "libelleAcheminement": "ROAILLAN", + "nomCommune": "ROAILLAN" }, { - "codePostal": "10700", - "codeCommune": "10386", - "libelleAcheminement": "TROUANS", - "nomCommune": "TROUANS" + "codePostal": "33350", + "codeCommune": "33361", + "libelleAcheminement": "RUCH", + "nomCommune": "RUCH" }, { - "codePostal": "10000", - "codeCommune": "10387", - "libelleAcheminement": "TROYES", - "nomCommune": "TROYES" + "codePostal": "33240", + "codeCommune": "33366", + "libelleAcheminement": "ST ANDRE DE CUBZAC", + "nomCommune": "ST ANDRE DE CUBZAC" }, { - "codePostal": "10210", - "codeCommune": "10395", - "libelleAcheminement": "VANLAY", - "nomCommune": "VANLAY" + "codePostal": "33220", + "codeCommune": "33369", + "libelleAcheminement": "ST ANDRE ET APPELLES", + "nomCommune": "ST ANDRE ET APPELLES" }, { - "codePostal": "10380", - "codeCommune": "10408", - "libelleAcheminement": "VIAPRES LE PETIT", - "nomCommune": "VIAPRES LE PETIT" + "codePostal": "33220", + "codeCommune": "33378", + "libelleAcheminement": "ST AVIT ST NAZAIRE", + "nomCommune": "ST AVIT ST NAZAIRE" }, { - "codePostal": "10350", - "codeCommune": "10414", - "libelleAcheminement": "VILLELOUP", - "nomCommune": "VILLELOUP" + "codePostal": "33820", + "codeCommune": "33380", + "libelleAcheminement": "VAL DE LIVENNE", + "nomCommune": "VAL DE LIVENNE" }, { - "codePostal": "10130", - "codeCommune": "10422", - "libelleAcheminement": "VILLENEUVE AU CHEMIN", - "nomCommune": "VILLENEUVE AU CHEMIN" + "codePostal": "33880", + "codeCommune": "33381", + "libelleAcheminement": "ST CAPRAIS DE BORDEAUX", + "nomCommune": "ST CAPRAIS DE BORDEAUX" }, { - "codePostal": "10800", - "codeCommune": "10434", - "libelleAcheminement": "VILLY LE BOIS", - "nomCommune": "VILLY LE BOIS" + "codePostal": "33330", + "codeCommune": "33384", + "libelleAcheminement": "ST CHRISTOPHE DES BARDES", + "nomCommune": "ST CHRISTOPHE DES BARDES" }, { - "codePostal": "10260", - "codeCommune": "10437", - "libelleAcheminement": "VIREY SOUS BAR", - "nomCommune": "VIREY SOUS BAR" + "codePostal": "33910", + "codeCommune": "33387", + "libelleAcheminement": "ST CIERS D ABZAC", + "nomCommune": "ST CIERS D ABZAC" }, { - "codePostal": "10200", - "codeCommune": "10440", - "libelleAcheminement": "VOIGNY", - "nomCommune": "VOIGNY" + "codePostal": "33820", + "codeCommune": "33389", + "libelleAcheminement": "ST CIERS SUR GIRONDE", + "nomCommune": "ST CIERS SUR GIRONDE" }, { - "codePostal": "10130", - "codeCommune": "10441", - "libelleAcheminement": "VOSNON", - "nomCommune": "VOSNON" + "codePostal": "33330", + "codeCommune": "33396", + "libelleAcheminement": "ST ETIENNE DE LISSE", + "nomCommune": "ST ETIENNE DE LISSE" }, { - "codePostal": "10500", - "codeCommune": "10445", - "libelleAcheminement": "YEVRES LE PETIT", - "nomCommune": "YEVRES LE PETIT" + "codePostal": "33240", + "codeCommune": "33407", + "libelleAcheminement": "ST GENES DE FRONSAC", + "nomCommune": "ST GENES DE FRONSAC" }, { - "codePostal": "11580", - "codeCommune": "11008", - "libelleAcheminement": "ALET LES BAINS", - "nomCommune": "ALET LES BAINS" + "codePostal": "33750", + "codeCommune": "33413", + "libelleAcheminement": "ST GERMAIN DU PUCH", + "nomCommune": "ST GERMAIN DU PUCH" }, { - "codePostal": "11600", - "codeCommune": "11011", - "libelleAcheminement": "ARAGON", - "nomCommune": "ARAGON" + "codePostal": "33240", + "codeCommune": "33415", + "libelleAcheminement": "ST GERVAIS", + "nomCommune": "ST GERVAIS" }, { - "codePostal": "11140", - "codeCommune": "11021", - "libelleAcheminement": "AXAT", - "nomCommune": "AXAT" + "codePostal": "33190", + "codeCommune": "33418", + "libelleAcheminement": "ST HILAIRE DE LA NOAILLE", + "nomCommune": "ST HILAIRE DE LA NOAILLE" }, { - "codePostal": "11140", - "codeCommune": "11038", - "libelleAcheminement": "BESSEDE DE SAULT", - "nomCommune": "BESSEDE DE SAULT" + "codePostal": "33330", + "codeCommune": "33420", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "11330", - "codeCommune": "11044", - "libelleAcheminement": "BOUISSE", - "nomCommune": "BOUISSE" + "codePostal": "33420", + "codeCommune": "33421", + "libelleAcheminement": "ST JEAN DE BLAIGNAC", + "nomCommune": "ST JEAN DE BLAIGNAC" }, { - "codePostal": "11200", - "codeCommune": "11048", - "libelleAcheminement": "BOUTENAC", - "nomCommune": "BOUTENAC" + "codePostal": "33250", + "codeCommune": "33423", + "libelleAcheminement": "ST JULIEN BEYCHEVELLE", + "nomCommune": "ST JULIEN BEYCHEVELLE" }, { - "codePostal": "11150", - "codeCommune": "11049", - "libelleAcheminement": "BRAM", - "nomCommune": "BRAM" + "codePostal": "33330", + "codeCommune": "33426", + "libelleAcheminement": "ST LAURENT DES COMBES", + "nomCommune": "ST LAURENT DES COMBES" }, { - "codePostal": "11390", - "codeCommune": "11052", - "libelleAcheminement": "BROUSSES ET VILLARET", - "nomCommune": "BROUSSES ET VILLARET" + "codePostal": "33210", + "codeCommune": "33432", + "libelleAcheminement": "ST LOUBERT", + "nomCommune": "ST LOUBERT" }, { - "codePostal": "11300", - "codeCommune": "11053", - "libelleAcheminement": "BRUGAIROLLES", - "nomCommune": "BRUGAIROLLES" + "codePostal": "33350", + "codeCommune": "33437", + "libelleAcheminement": "ST MAGNE DE CASTILLON", + "nomCommune": "ST MAGNE DE CASTILLON" }, { - "codePostal": "11190", - "codeCommune": "11055", - "libelleAcheminement": "BUGARACH", - "nomCommune": "BUGARACH" + "codePostal": "33540", + "codeCommune": "33446", + "libelleAcheminement": "ST MARTIN DU PUY", + "nomCommune": "ST MARTIN DU PUY" }, { - "codePostal": "11140", - "codeCommune": "11062", - "libelleAcheminement": "CAMPAGNA DE SAULT", - "nomCommune": "CAMPAGNA DE SAULT" + "codePostal": "33230", + "codeCommune": "33447", + "libelleAcheminement": "ST MEDARD DE GUIZIERES", + "nomCommune": "ST MEDARD DE GUIZIERES" }, { - "codePostal": "11260", - "codeCommune": "11063", - "libelleAcheminement": "CAMPAGNE SUR AUDE", - "nomCommune": "CAMPAGNE SUR AUDE" + "codePostal": "33126", + "codeCommune": "33451", + "libelleAcheminement": "ST MICHEL DE FRONSAC", + "nomCommune": "ST MICHEL DE FRONSAC" }, { - "codePostal": "11000", - "codeCommune": "11069", - "libelleAcheminement": "CARCASSONNE", - "nomCommune": "CARCASSONNE" + "codePostal": "33720", + "codeCommune": "33452", + "libelleAcheminement": "ST MICHEL DE RIEUFRET", + "nomCommune": "ST MICHEL DE RIEUFRET" }, { - "codePostal": "11170", - "codeCommune": "11070", - "libelleAcheminement": "CARLIPA", - "nomCommune": "CARLIPA" + "codePostal": "33190", + "codeCommune": "33453", + "libelleAcheminement": "ST MICHEL DE LAPUJADE", + "nomCommune": "ST MICHEL DE LAPUJADE" }, { - "codePostal": "11570", - "codeCommune": "11085", - "libelleAcheminement": "CAVANAC", - "nomCommune": "CAVANAC" + "codePostal": "33210", + "codeCommune": "33465", + "libelleAcheminement": "ST PIERRE DE MONS", + "nomCommune": "ST PIERRE DE MONS" }, { - "codePostal": "11510", - "codeCommune": "11086", - "libelleAcheminement": "CAVES", - "nomCommune": "CAVES" + "codePostal": "33350", + "codeCommune": "33468", + "libelleAcheminement": "STE RADEGONDE", + "nomCommune": "STE RADEGONDE" }, { - "codePostal": "11240", - "codeCommune": "11108", - "libelleAcheminement": "LA COURTETE", - "nomCommune": "LA COURTETE" + "codePostal": "33920", + "codeCommune": "33473", + "libelleAcheminement": "ST SAVIN", + "nomCommune": "ST SAVIN" }, { - "codePostal": "11200", - "codeCommune": "11111", - "libelleAcheminement": "CRUSCADES", - "nomCommune": "CRUSCADES" + "codePostal": "33180", + "codeCommune": "33476", + "libelleAcheminement": "ST SEURIN DE CADOURNE", + "nomCommune": "ST SEURIN DE CADOURNE" }, { - "codePostal": "11330", - "codeCommune": "11117", - "libelleAcheminement": "DAVEJEAN", - "nomCommune": "DAVEJEAN" + "codePostal": "33660", + "codeCommune": "33478", + "libelleAcheminement": "ST SEURIN SUR L ISLE", + "nomCommune": "ST SEURIN SUR L ISLE" }, { - "codePostal": "11330", - "codeCommune": "11118", - "libelleAcheminement": "DERNACUEILLETTE", - "nomCommune": "DERNACUEILLETTE" + "codePostal": "33190", + "codeCommune": "33479", + "libelleAcheminement": "ST SEVE", + "nomCommune": "ST SEVE" }, { - "codePostal": "11140", - "codeCommune": "11127", - "libelleAcheminement": "ESCOULOUBRE", - "nomCommune": "ESCOULOUBRE" + "codePostal": "33580", + "codeCommune": "33481", + "libelleAcheminement": "ST SULPICE DE GUILLERAGUES", + "nomCommune": "ST SULPICE DE GUILLERAGUES" }, { - "codePostal": "11260", - "codeCommune": "11129", - "libelleAcheminement": "ESPERAZA", - "nomCommune": "ESPERAZA" + "codePostal": "33350", + "codeCommune": "33485", + "libelleAcheminement": "STE TERRE", + "nomCommune": "STE TERRE" }, { - "codePostal": "11260", - "codeCommune": "11131", - "libelleAcheminement": "VAL DU FABY", - "nomCommune": "VAL DU FABY" + "codePostal": "33590", + "codeCommune": "33490", + "libelleAcheminement": "ST VIVIEN DE MEDOC", + "nomCommune": "ST VIVIEN DE MEDOC" }, { - "codePostal": "11220", - "codeCommune": "11133", - "libelleAcheminement": "FAJAC EN VAL", - "nomCommune": "FAJAC EN VAL" + "codePostal": "33350", + "codeCommune": "33499", + "libelleAcheminement": "LES SALLES DE CASTILLON", + "nomCommune": "LES SALLES DE CASTILLON" }, { - "codePostal": "11200", - "codeCommune": "11140", - "libelleAcheminement": "FERRALS LES CORBIERES", - "nomCommune": "FERRALS LES CORBIERES" + "codePostal": "33710", + "codeCommune": "33500", + "libelleAcheminement": "SAMONAC", + "nomCommune": "SAMONAC" }, { - "codePostal": "11560", - "codeCommune": "11145", - "libelleAcheminement": "FLEURY D AUDE", - "nomCommune": "FLEURY" + "codePostal": "33680", + "codeCommune": "33503", + "libelleAcheminement": "SAUMOS", + "nomCommune": "SAUMOS" }, { - "codePostal": "11560", - "codeCommune": "11145", - "libelleAcheminement": "FLEURY D AUDE", - "nomCommune": "FLEURY" + "codePostal": "33670", + "codeCommune": "33505", + "libelleAcheminement": "LA SAUVE", + "nomCommune": "LA SAUVE" }, { - "codePostal": "11270", - "codeCommune": "11153", - "libelleAcheminement": "LA FORCE", - "nomCommune": "LA FORCE" + "codePostal": "33124", + "codeCommune": "33508", + "libelleAcheminement": "SAVIGNAC", + "nomCommune": "SAVIGNAC" }, { - "codePostal": "11140", - "codeCommune": "11160", - "libelleAcheminement": "GALINAGUES", - "nomCommune": "GALINAGUES" + "codePostal": "33690", + "codeCommune": "33511", + "libelleAcheminement": "SENDETS", + "nomCommune": "SENDETS" }, { - "codePostal": "11120", - "codeCommune": "11164", - "libelleAcheminement": "GINESTAS", - "nomCommune": "GINESTAS" + "codePostal": "33400", + "codeCommune": "33522", + "libelleAcheminement": "TALENCE", + "nomCommune": "TALENCE" }, { - "codePostal": "11240", - "codeCommune": "11167", - "libelleAcheminement": "GRAMAZIE", - "nomCommune": "GRAMAZIE" + "codePostal": "33570", + "codeCommune": "33526", + "libelleAcheminement": "TAYAC", + "nomCommune": "TAYAC" }, { - "codePostal": "11380", - "codeCommune": "11174", - "libelleAcheminement": "LES ILHES", - "nomCommune": "LES ILHES" + "codePostal": "33680", + "codeCommune": "33528", + "libelleAcheminement": "LE TEMPLE", + "nomCommune": "LE TEMPLE" }, { - "codePostal": "11400", - "codeCommune": "11175", - "libelleAcheminement": "ISSEL", - "nomCommune": "ISSEL" + "codePostal": "33115", + "codeCommune": "33529", + "libelleAcheminement": "LA TESTE DE BUCH", + "nomCommune": "LA TESTE DE BUCH" }, { - "codePostal": "11220", - "codeCommune": "11176", - "libelleAcheminement": "JONQUIERES", - "nomCommune": "JONQUIERES" + "codePostal": "33115", + "codeCommune": "33529", + "libelleAcheminement": "LA TESTE DE BUCH", + "nomCommune": "LA TESTE DE BUCH" }, { - "codePostal": "11140", - "codeCommune": "11177", - "libelleAcheminement": "JOUCOU", - "nomCommune": "JOUCOU" + "codePostal": "33260", + "codeCommune": "33529", + "libelleAcheminement": "LA TESTE DE BUCH", + "nomCommune": "LA TESTE DE BUCH" }, { - "codePostal": "11320", - "codeCommune": "11178", - "libelleAcheminement": "LABASTIDE D ANJOU", - "nomCommune": "LABASTIDE D ANJOU" + "codePostal": "33620", + "codeCommune": "33532", + "libelleAcheminement": "TIZAC DE LAPOUYADE", + "nomCommune": "TIZAC DE LAPOUYADE" }, { - "codePostal": "11330", - "codeCommune": "11187", - "libelleAcheminement": "LANET", - "nomCommune": "LANET" + "codePostal": "33340", + "codeCommune": "33538", + "libelleAcheminement": "VALEYRAC", + "nomCommune": "VALEYRAC" }, { - "codePostal": "11700", - "codeCommune": "11190", - "libelleAcheminement": "LA REDORTE", - "nomCommune": "LA REDORTE" + "codePostal": "33870", + "codeCommune": "33539", + "libelleAcheminement": "VAYRES", + "nomCommune": "VAYRES" }, { - "codePostal": "11330", - "codeCommune": "11191", - "libelleAcheminement": "LAROQUE DE FA", - "nomCommune": "LAROQUE DE FA" + "codePostal": "33590", + "codeCommune": "33541", + "libelleAcheminement": "VENSAC", + "nomCommune": "VENSAC" }, { - "codePostal": "11270", - "codeCommune": "11196", - "libelleAcheminement": "LAURAC", - "nomCommune": "LAURAC" + "codePostal": "33550", + "codeCommune": "33549", + "libelleAcheminement": "VILLENAVE DE RIONS", + "nomCommune": "VILLENAVE DE RIONS" }, { - "codePostal": "11800", - "codeCommune": "11198", - "libelleAcheminement": "LAURE MINERVOIS", - "nomCommune": "LAURE MINERVOIS" + "codePostal": "33140", + "codeCommune": "33550", + "libelleAcheminement": "VILLENAVE D ORNON", + "nomCommune": "VILLENAVE D ORNON" }, { - "codePostal": "11370", - "codeCommune": "11202", - "libelleAcheminement": "LEUCATE", - "nomCommune": "LEUCATE" + "codePostal": "33710", + "codeCommune": "33551", + "libelleAcheminement": "VILLENEUVE", + "nomCommune": "VILLENEUVE" }, { - "codePostal": "11300", - "codeCommune": "11207", - "libelleAcheminement": "LOUPIA", - "nomCommune": "LOUPIA" + "codePostal": "34380", + "codeCommune": "34012", + "libelleAcheminement": "ARGELLIERS", + "nomCommune": "ARGELLIERS" }, { - "codePostal": "11190", - "codeCommune": "11209", - "libelleAcheminement": "LUC SUR AUDE", - "nomCommune": "LUC SUR AUDE" + "codePostal": "34210", + "codeCommune": "34020", + "libelleAcheminement": "AZILLANET", + "nomCommune": "AZILLANET" }, { - "codePostal": "11300", - "codeCommune": "11211", - "libelleAcheminement": "MAGRIE", - "nomCommune": "MAGRIE" + "codePostal": "34670", + "codeCommune": "34022", + "libelleAcheminement": "BAILLARGUES", + "nomCommune": "BAILLARGUES" }, { - "codePostal": "11330", - "codeCommune": "11213", - "libelleAcheminement": "MAISONS", - "nomCommune": "MAISONS" + "codePostal": "34540", + "codeCommune": "34023", + "libelleAcheminement": "BALARUC LES BAINS", + "nomCommune": "BALARUC LES BAINS" }, { - "codePostal": "11600", - "codeCommune": "11215", - "libelleAcheminement": "MALVES EN MINERVOIS", - "nomCommune": "MALVES EN MINERVOIS" + "codePostal": "34160", + "codeCommune": "34027", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "11570", - "codeCommune": "11223", - "libelleAcheminement": "MAS DES COURS", - "nomCommune": "MAS DES COURS" + "codePostal": "34260", + "codeCommune": "34038", + "libelleAcheminement": "LE BOUSQUET D ORB", + "nomCommune": "LE BOUSQUET D ORB" }, { - "codePostal": "11240", - "codeCommune": "11228", - "libelleAcheminement": "MAZEROLLES DU RAZES", - "nomCommune": "MAZEROLLES DU RAZES" + "codePostal": "34480", + "codeCommune": "34044", + "libelleAcheminement": "CABREROLLES", + "nomCommune": "CABREROLLES" }, { - "codePostal": "11140", - "codeCommune": "11230", - "libelleAcheminement": "MERIAL", - "nomCommune": "MERIAL" + "codePostal": "34160", + "codeCommune": "34048", + "libelleAcheminement": "CAMPAGNE", + "nomCommune": "CAMPAGNE" }, { - "codePostal": "11380", - "codeCommune": "11232", - "libelleAcheminement": "MIRAVAL CABARDES", - "nomCommune": "MIRAVAL CABARDES" + "codePostal": "34130", + "codeCommune": "34050", + "libelleAcheminement": "CANDILLARGUES", + "nomCommune": "CANDILLARGUES" }, { - "codePostal": "11410", - "codeCommune": "11238", - "libelleAcheminement": "MOLLEVILLE", - "nomCommune": "MOLLEVILLE" + "codePostal": "34800", + "codeCommune": "34051", + "libelleAcheminement": "CANET", + "nomCommune": "CANET" }, { - "codePostal": "11410", - "codeCommune": "11239", - "libelleAcheminement": "MONTAURIOL", - "nomCommune": "MONTAURIOL" + "codePostal": "34120", + "codeCommune": "34056", + "libelleAcheminement": "CASTELNAU DE GUERS", + "nomCommune": "CASTELNAU DE GUERS" }, { - "codePostal": "11190", - "codeCommune": "11240", - "libelleAcheminement": "MONTAZELS", - "nomCommune": "MONTAZELS" + "codePostal": "34210", + "codeCommune": "34059", + "libelleAcheminement": "LA CAUNETTE", + "nomCommune": "LA CAUNETTE" }, { - "codePostal": "11700", - "codeCommune": "11241", - "libelleAcheminement": "MONTBRUN DES CORBIERES", - "nomCommune": "MONTBRUN DES CORBIERES" + "codePostal": "34460", + "codeCommune": "34065", + "libelleAcheminement": "CAZEDARNES", + "nomCommune": "CAZEDARNES" }, { - "codePostal": "11240", - "codeCommune": "11247", - "libelleAcheminement": "MONTHAUT", - "nomCommune": "MONTHAUT" + "codePostal": "34260", + "codeCommune": "34071", + "libelleAcheminement": "CEILHES ET ROCOZELS", + "nomCommune": "CEILHES ET ROCOZELS" }, { - "codePostal": "11170", - "codeCommune": "11259", - "libelleAcheminement": "MOUSSOULENS", - "nomCommune": "MOUSSOULENS" + "codePostal": "34800", + "codeCommune": "34076", + "libelleAcheminement": "CEYRAS", + "nomCommune": "CEYRAS" }, { - "codePostal": "11200", - "codeCommune": "11264", - "libelleAcheminement": "NEVIAN", - "nomCommune": "NEVIAN" + "codePostal": "34240", + "codeCommune": "34083", + "libelleAcheminement": "COMBES", + "nomCommune": "COMBES" }, { - "codePostal": "11210", - "codeCommune": "11266", - "libelleAcheminement": "PORT LA NOUVELLE", - "nomCommune": "PORT LA NOUVELLE" + "codePostal": "34290", + "codeCommune": "34085", + "libelleAcheminement": "COULOBRES", + "nomCommune": "COULOBRES" }, { - "codePostal": "11700", - "codeCommune": "11280", - "libelleAcheminement": "PEPIEUX", - "nomCommune": "PEPIEUX" + "codePostal": "34220", + "codeCommune": "34086", + "libelleAcheminement": "COURNIOU", + "nomCommune": "COURNIOU" }, { - "codePostal": "11230", - "codeCommune": "11282", - "libelleAcheminement": "PEYREFITTE DU RAZES", - "nomCommune": "PEYREFITTE DU RAZES" + "codePostal": "34660", + "codeCommune": "34087", + "libelleAcheminement": "COURNONSEC", + "nomCommune": "COURNONSEC" }, { - "codePostal": "11420", - "codeCommune": "11283", - "libelleAcheminement": "PEYREFITTE SUR L HERS", - "nomCommune": "PEYREFITTE SUR L HERS" + "codePostal": "34520", + "codeCommune": "34091", + "libelleAcheminement": "LE CROS", + "nomCommune": "LE CROS" }, { - "codePostal": "11190", - "codeCommune": "11287", - "libelleAcheminement": "PEYROLLES", - "nomCommune": "PEYROLLES" + "codePostal": "34310", + "codeCommune": "34092", + "libelleAcheminement": "CRUZY", + "nomCommune": "CRUZY" }, { - "codePostal": "11300", - "codeCommune": "11289", - "libelleAcheminement": "PIEUSSE", - "nomCommune": "PIEUSSE" + "codePostal": "34290", + "codeCommune": "34094", + "libelleAcheminement": "ESPONDEILHAN", + "nomCommune": "ESPONDEILHAN" }, { - "codePostal": "11400", - "codeCommune": "11292", - "libelleAcheminement": "LA POMAREDE", - "nomCommune": "LA POMAREDE" + "codePostal": "34690", + "codeCommune": "34095", + "libelleAcheminement": "FABREGUES", + "nomCommune": "FABREGUES" }, { - "codePostal": "11160", - "codeCommune": "11315", - "libelleAcheminement": "RIEUX MINERVOIS", - "nomCommune": "RIEUX MINERVOIS" + "codePostal": "34600", + "codeCommune": "34096", + "libelleAcheminement": "FAUGERES", + "nomCommune": "FAUGERES" }, { - "codePostal": "11230", - "codeCommune": "11316", - "libelleAcheminement": "RIVEL", - "nomCommune": "RIVEL" + "codePostal": "34770", + "codeCommune": "34113", + "libelleAcheminement": "GIGEAN", + "nomCommune": "GIGEAN" }, { - "codePostal": "11700", - "codeCommune": "11318", - "libelleAcheminement": "ROQUECOURBE MINERVOIS", - "nomCommune": "ROQUECOURBE MINERVOIS" + "codePostal": "34150", + "codeCommune": "34114", + "libelleAcheminement": "GIGNAC", + "nomCommune": "GIGNAC" }, { - "codePostal": "11200", - "codeCommune": "11324", - "libelleAcheminement": "ROUBIA", - "nomCommune": "ROUBIA" + "codePostal": "34800", + "codeCommune": "34124", + "libelleAcheminement": "LACOSTE", + "nomCommune": "LACOSTE" }, { - "codePostal": "11250", - "codeCommune": "11325", - "libelleAcheminement": "ROUFFIAC D AUDE", - "nomCommune": "ROUFFIAC D AUDE" + "codePostal": "34970", + "codeCommune": "34129", + "libelleAcheminement": "LATTES", + "nomCommune": "LATTES" }, { - "codePostal": "11350", - "codeCommune": "11326", - "libelleAcheminement": "ROUFFIAC DES CORBIERES", - "nomCommune": "ROUFFIAC DES CORBIERES" + "codePostal": "34000", + "codeCommune": "34172", + "libelleAcheminement": "MONTPELLIER", + "nomCommune": "MONTPELLIER" }, { - "codePostal": "11240", - "codeCommune": "11328", - "libelleAcheminement": "ROUTIER", - "nomCommune": "ROUTIER" + "codePostal": "34070", + "codeCommune": "34172", + "libelleAcheminement": "MONTPELLIER", + "nomCommune": "MONTPELLIER" }, { - "codePostal": "11500", - "codeCommune": "11341", - "libelleAcheminement": "ST FERRIOL", - "nomCommune": "ST FERRIOL" + "codePostal": "34190", + "codeCommune": "34174", + "libelleAcheminement": "MOULES ET BAUCELS", + "nomCommune": "MOULES ET BAUCELS" }, { - "codePostal": "11500", - "codeCommune": "11347", - "libelleAcheminement": "ST JULIA DE BEC", - "nomCommune": "ST JULIA DE BEC" + "codePostal": "34130", + "codeCommune": "34176", + "libelleAcheminement": "MUDAISON", + "nomCommune": "MUDAISON" }, { - "codePostal": "11270", - "codeCommune": "11348", - "libelleAcheminement": "ST JULIEN DE BRIOLA", - "nomCommune": "ST JULIEN DE BRIOLA" + "codePostal": "34120", + "codeCommune": "34182", + "libelleAcheminement": "NEZIGNAN L EVEQUE", + "nomCommune": "NEZIGNAN L EVEQUE" }, { - "codePostal": "11300", - "codeCommune": "11364", - "libelleAcheminement": "ST POLYCARPE", - "nomCommune": "ST POLYCARPE" + "codePostal": "34700", + "codeCommune": "34196", + "libelleAcheminement": "PEGAIROLLES DE L ESCALETTE", + "nomCommune": "PEGAIROLLES DE L ESCALETTE" }, { - "codePostal": "11120", - "codeCommune": "11366", - "libelleAcheminement": "STE VALIERE", - "nomCommune": "STE VALIERE" + "codePostal": "34360", + "codeCommune": "34201", + "libelleAcheminement": "PIERRERUE", + "nomCommune": "PIERRERUE" }, { - "codePostal": "11230", - "codeCommune": "11380", - "libelleAcheminement": "SONNAC SUR L HERS", - "nomCommune": "SONNAC SUR L HERS" + "codePostal": "34600", + "codeCommune": "34211", + "libelleAcheminement": "LE POUJOL SUR ORB", + "nomCommune": "LE POUJOL SUR ORB" }, { - "codePostal": "11190", - "codeCommune": "11381", - "libelleAcheminement": "SOUGRAIGNE", - "nomCommune": "SOUGRAIGNE" + "codePostal": "34360", + "codeCommune": "34218", + "libelleAcheminement": "PRADES SUR VERNAZOBRE", + "nomCommune": "PRADES SUR VERNAZOBRE" }, { - "codePostal": "11330", - "codeCommune": "11384", - "libelleAcheminement": "SOULATGE", - "nomCommune": "SOULATGE" + "codePostal": "34700", + "codeCommune": "34220", + "libelleAcheminement": "LE PUECH", + "nomCommune": "LE PUECH" }, { - "codePostal": "11220", - "codeCommune": "11386", - "libelleAcheminement": "TALAIRAN", - "nomCommune": "TALAIRAN" + "codePostal": "34480", + "codeCommune": "34224", + "libelleAcheminement": "PUISSALICON", + "nomCommune": "PUISSALICON" }, { - "codePostal": "11300", - "codeCommune": "11394", - "libelleAcheminement": "TOURREILLES", - "nomCommune": "TOURREILLES" + "codePostal": "34620", + "codeCommune": "34225", + "libelleAcheminement": "PUISSERGUIER", + "nomCommune": "PUISSERGUIER" }, { - "codePostal": "11160", - "codeCommune": "11395", - "libelleAcheminement": "TRASSANEL", - "nomCommune": "TRASSANEL" + "codePostal": "34520", + "codeCommune": "34230", + "libelleAcheminement": "LES RIVES", + "nomCommune": "LES RIVES" }, { - "codePostal": "11160", - "codeCommune": "11396", - "libelleAcheminement": "TRAUSSE", - "nomCommune": "TRAUSSE" + "codePostal": "34610", + "codeCommune": "34235", + "libelleAcheminement": "ROSIS", + "nomCommune": "ROSIS" }, { - "codePostal": "11250", - "codeCommune": "11415", - "libelleAcheminement": "VILLAR ST ANSELME", - "nomCommune": "VILLAR ST ANSELME" + "codePostal": "34130", + "codeCommune": "34240", + "libelleAcheminement": "ST AUNES", + "nomCommune": "ST AUNES" }, { - "codePostal": "11150", - "codeCommune": "11418", - "libelleAcheminement": "VILLASAVARY", - "nomCommune": "VILLASAVARY" + "codePostal": "34190", + "codeCommune": "34243", + "libelleAcheminement": "ST BAUZILLE DE PUTOIS", + "nomCommune": "ST BAUZILLE DE PUTOIS" }, { - "codePostal": "11420", - "codeCommune": "11419", - "libelleAcheminement": "VILLAUTOU", - "nomCommune": "VILLAUTOU" + "codePostal": "34700", + "codeCommune": "34251", + "libelleAcheminement": "ST ETIENNE DE GOURGAS", + "nomCommune": "ST ETIENNE DE GOURGAS" }, { - "codePostal": "11250", - "codeCommune": "11420", - "libelleAcheminement": "VILLEBAZY", - "nomCommune": "VILLEBAZY" + "codePostal": "34520", + "codeCommune": "34253", + "libelleAcheminement": "ST FELIX DE L HERAS", + "nomCommune": "ST FELIX DE L HERAS" }, { - "codePostal": "11160", - "codeCommune": "11433", - "libelleAcheminement": "VILLENEUVE MINERVOIS", - "nomCommune": "VILLENEUVE MINERVOIS" + "codePostal": "34610", + "codeCommune": "34257", + "libelleAcheminement": "ST GENIES DE VARENSAL", + "nomCommune": "ST GENIES DE VARENSAL" }, { - "codePostal": "11330", - "codeCommune": "11435", - "libelleAcheminement": "VILLEROUGE TERMENES", - "nomCommune": "VILLEROUGE TERMENES" + "codePostal": "34160", + "codeCommune": "34263", + "libelleAcheminement": "ST HILAIRE DE BEAUVOIR", + "nomCommune": "ST HILAIRE DE BEAUVOIR" }, { - "codePostal": "11110", - "codeCommune": "11441", - "libelleAcheminement": "VINASSAN", - "nomCommune": "VINASSAN" + "codePostal": "34270", + "codeCommune": "34266", + "libelleAcheminement": "ST JEAN DE CUCULLES", + "nomCommune": "ST JEAN DE CUCULLES" }, { - "codePostal": "12390", - "codeCommune": "12008", - "libelleAcheminement": "ANGLARS ST FELIX", - "nomCommune": "ANGLARS ST FELIX" + "codePostal": "34700", + "codeCommune": "34268", + "libelleAcheminement": "ST JEAN DE LA BLAQUIERE", + "nomCommune": "ST JEAN DE LA BLAQUIERE" }, { - "codePostal": "12290", - "codeCommune": "12010", - "libelleAcheminement": "ARQUES", - "nomCommune": "ARQUES" + "codePostal": "34390", + "codeCommune": "34271", + "libelleAcheminement": "ST JULIEN", + "nomCommune": "ST JULIEN" }, { - "codePostal": "12110", - "codeCommune": "12013", - "libelleAcheminement": "AUBIN", - "nomCommune": "AUBIN" + "codePostal": "34400", + "codeCommune": "34272", + "libelleAcheminement": "ST JUST", + "nomCommune": "ST JUST" }, { - "codePostal": "12200", - "codeCommune": "12021", - "libelleAcheminement": "LE BAS SEGALA", - "nomCommune": "LE BAS SEGALA" + "codePostal": "34190", + "codeCommune": "34277", + "libelleAcheminement": "ST MAURICE NAVACELLES", + "nomCommune": "ST MAURICE NAVACELLES" }, { - "codePostal": "12550", - "codeCommune": "12023", - "libelleAcheminement": "LA BASTIDE SOLAGES", - "nomCommune": "LA BASTIDE SOLAGES" + "codePostal": "34520", + "codeCommune": "34277", + "libelleAcheminement": "ST MAURICE NAVACELLES", + "nomCommune": "ST MAURICE NAVACELLES" }, { - "codePostal": "12390", - "codeCommune": "12024", - "libelleAcheminement": "BELCASTEL", - "nomCommune": "BELCASTEL" + "codePostal": "34160", + "codeCommune": "34296", + "libelleAcheminement": "SAUSSINES", + "nomCommune": "SAUSSINES" }, { - "codePostal": "12300", - "codeCommune": "12028", - "libelleAcheminement": "BOISSE PENCHOT", - "nomCommune": "BOISSE PENCHOT" + "codePostal": "34210", + "codeCommune": "34302", + "libelleAcheminement": "SIRAN", + "nomCommune": "SIRAN" }, { - "codePostal": "12300", - "codeCommune": "12030", - "libelleAcheminement": "BOUILLAC", - "nomCommune": "BOUILLAC" + "codePostal": "34520", + "codeCommune": "34303", + "libelleAcheminement": "SORBS", + "nomCommune": "SORBS" }, { - "codePostal": "12600", - "codeCommune": "12036", - "libelleAcheminement": "BROMMAT", - "nomCommune": "BROMMAT" + "codePostal": "34230", + "codeCommune": "34315", + "libelleAcheminement": "USCLAS D HERAULT", + "nomCommune": "USCLAS D HERAULT" }, { - "codePostal": "12480", - "codeCommune": "12038", - "libelleAcheminement": "BROUSSE LE CHATEAU", - "nomCommune": "BROUSSE LE CHATEAU" + "codePostal": "34740", + "codeCommune": "34327", + "libelleAcheminement": "VENDARGUES", + "nomCommune": "VENDARGUES" }, { - "codePostal": "12450", - "codeCommune": "12043", - "libelleAcheminement": "CALMONT", - "nomCommune": "CALMONT" + "codePostal": "34450", + "codeCommune": "34332", + "libelleAcheminement": "VIAS", + "nomCommune": "VIAS" }, { - "codePostal": "12360", - "codeCommune": "12044", - "libelleAcheminement": "CAMARES", - "nomCommune": "CAMARES" + "codePostal": "34390", + "codeCommune": "34334", + "libelleAcheminement": "VIEUSSAN", + "nomCommune": "VIEUSSAN" }, { - "codePostal": "12580", - "codeCommune": "12049", - "libelleAcheminement": "CAMPUAC", - "nomCommune": "CAMPUAC" + "codePostal": "34600", + "codeCommune": "34335", + "libelleAcheminement": "VILLEMAGNE L ARGENTIERE", + "nomCommune": "VILLEMAGNE L ARGENTIERE" }, { - "codePostal": "12520", - "codeCommune": "12070", - "libelleAcheminement": "COMPEYRE", - "nomCommune": "COMPEYRE" + "codePostal": "34420", + "codeCommune": "34336", + "libelleAcheminement": "VILLENEUVE LES BEZIERS", + "nomCommune": "VILLENEUVE LES BEZIERS" }, { - "codePostal": "12120", - "codeCommune": "12073", - "libelleAcheminement": "COMPS LA GRAND VILLE", - "nomCommune": "COMPS LA GRAND VILLE" + "codePostal": "35690", + "codeCommune": "35001", + "libelleAcheminement": "ACIGNE", + "nomCommune": "ACIGNE" }, { - "codePostal": "12320", - "codeCommune": "12076", - "libelleAcheminement": "CONQUES EN ROUERGUE", - "nomCommune": "CONQUES EN ROUERGUE" + "codePostal": "35560", + "codeCommune": "35004", + "libelleAcheminement": "VAL COUESNON", + "nomCommune": "VAL COUESNON" }, { - "codePostal": "12320", - "codeCommune": "12076", - "libelleAcheminement": "CONQUES EN ROUERGUE", - "nomCommune": "CONQUES EN ROUERGUE" + "codePostal": "35120", + "codeCommune": "35010", + "libelleAcheminement": "BAGUER PICAN", + "nomCommune": "BAGUER PICAN" }, { - "codePostal": "12190", - "codeCommune": "12079", - "libelleAcheminement": "COUBISOU", - "nomCommune": "COUBISOU" + "codePostal": "35580", + "codeCommune": "35016", + "libelleAcheminement": "BAULON", + "nomCommune": "BAULON" }, { - "codePostal": "12100", - "codeCommune": "12084", - "libelleAcheminement": "CREISSELS", - "nomCommune": "CREISSELS" + "codePostal": "35190", + "codeCommune": "35017", + "libelleAcheminement": "LA BAUSSAINE", + "nomCommune": "LA BAUSSAINE" }, { - "codePostal": "12800", - "codeCommune": "12085", - "libelleAcheminement": "CRESPIN", - "nomCommune": "CRESPIN" + "codePostal": "35133", + "codeCommune": "35021", + "libelleAcheminement": "BEAUCE", + "nomCommune": "BEAUCE" }, { - "codePostal": "12170", - "codeCommune": "12092", - "libelleAcheminement": "DURENQUE", - "nomCommune": "DURENQUE" + "codePostal": "35133", + "codeCommune": "35025", + "libelleAcheminement": "BILLE", + "nomCommune": "BILLE" }, { - "codePostal": "12260", - "codeCommune": "12104", - "libelleAcheminement": "FOISSAC", - "nomCommune": "FOISSAC" + "codePostal": "35120", + "codeCommune": "35044", + "libelleAcheminement": "BROUALAN", + "nomCommune": "BROUALAN" }, { - "codePostal": "12270", - "codeCommune": "12105", - "libelleAcheminement": "LA FOUILLADE", - "nomCommune": "LA FOUILLADE" + "codePostal": "35550", + "codeCommune": "35045", + "libelleAcheminement": "BRUC SUR AFF", + "nomCommune": "BRUC SUR AFF" }, { - "codePostal": "12160", - "codeCommune": "12113", - "libelleAcheminement": "GRAMOND", - "nomCommune": "GRAMOND" + "codePostal": "35170", + "codeCommune": "35047", + "libelleAcheminement": "BRUZ", + "nomCommune": "BRUZ" }, { - "codePostal": "12460", - "codeCommune": "12116", - "libelleAcheminement": "HUPARLAC", - "nomCommune": "HUPARLAC" + "codePostal": "35510", + "codeCommune": "35051", + "libelleAcheminement": "CESSON SEVIGNE", + "nomCommune": "CESSON SEVIGNE" }, { - "codePostal": "12500", - "codeCommune": "12124", - "libelleAcheminement": "LASSOUTS", - "nomCommune": "LASSOUTS" + "codePostal": "35190", + "codeCommune": "35056", + "libelleAcheminement": "LA CHAPELLE AUX FILTZMEENS", + "nomCommune": "LA CHAPELLE AUX FILTZMEENS" }, { - "codePostal": "12430", - "codeCommune": "12129", - "libelleAcheminement": "LESTRADE ET THOUELS", - "nomCommune": "LESTRADE ET THOUELS" + "codePostal": "35630", + "codeCommune": "35058", + "libelleAcheminement": "LA CHAPELLE CHAUSSEE", + "nomCommune": "LA CHAPELLE CHAUSSEE" }, { - "codePostal": "12450", - "codeCommune": "12133", - "libelleAcheminement": "LUC LA PRIMAUBE", - "nomCommune": "LUC LA PRIMAUBE" + "codePostal": "35360", + "codeCommune": "35060", + "libelleAcheminement": "LA CHAPELLE DU LOU DU LAC", + "nomCommune": "LA CHAPELLE DU LOU DU LAC" }, { - "codePostal": "12350", - "codeCommune": "12136", - "libelleAcheminement": "MALEVILLE", - "nomCommune": "MALEVILLE" + "codePostal": "35140", + "codeCommune": "35063", + "libelleAcheminement": "LA CHAPELLE ST AUBERT", + "nomCommune": "LA CHAPELLE ST AUBERT" }, { - "codePostal": "12490", - "codeCommune": "12153", - "libelleAcheminement": "MONTJAUX", - "nomCommune": "MONTJAUX" + "codePostal": "35131", + "codeCommune": "35066", + "libelleAcheminement": "CHARTRES DE BRETAGNE", + "nomCommune": "CHARTRES DE BRETAGNE" }, { - "codePostal": "12400", - "codeCommune": "12154", - "libelleAcheminement": "MONTLAUR", - "nomCommune": "MONTLAUR" + "codePostal": "35220", + "codeCommune": "35068", + "libelleAcheminement": "CHATEAUBOURG", + "nomCommune": "CHATEAUBOURG" }, { - "codePostal": "12600", - "codeCommune": "12166", - "libelleAcheminement": "MUROLS", - "nomCommune": "MUROLS" + "codePostal": "35210", + "codeCommune": "35072", + "libelleAcheminement": "CHATILLON EN VENDELAIS", + "nomCommune": "CHATILLON EN VENDELAIS" }, { - "codePostal": "12230", - "codeCommune": "12168", - "libelleAcheminement": "NANT", - "nomCommune": "NANT" + "codePostal": "35310", + "codeCommune": "35076", + "libelleAcheminement": "CHAVAGNE", + "nomCommune": "CHAVAGNE" }, { - "codePostal": "12800", - "codeCommune": "12169", - "libelleAcheminement": "NAUCELLE", - "nomCommune": "NAUCELLE" + "codePostal": "35290", + "codeCommune": "35091", + "libelleAcheminement": "LE CROUAIS", + "nomCommune": "LE CROUAIS" }, { - "codePostal": "12310", - "codeCommune": "12177", - "libelleAcheminement": "PALMAS D AVEYRON", - "nomCommune": "PALMAS D AVEYRON" + "codePostal": "35800", + "codeCommune": "35093", + "libelleAcheminement": "DINARD", + "nomCommune": "DINARD" }, { - "codePostal": "12310", - "codeCommune": "12177", - "libelleAcheminement": "PALMAS D AVEYRON", - "nomCommune": "PALMAS D AVEYRON" + "codePostal": "35680", + "codeCommune": "35097", + "libelleAcheminement": "DOMALAIN", + "nomCommune": "DOMALAIN" }, { - "codePostal": "12720", - "codeCommune": "12180", - "libelleAcheminement": "PEYRELEAU", - "nomCommune": "PEYRELEAU" + "codePostal": "35410", + "codeCommune": "35099", + "libelleAcheminement": "DOMLOUP", + "nomCommune": "DOMLOUP" }, { - "codePostal": "12220", - "codeCommune": "12181", - "libelleAcheminement": "PEYRUSSE LE ROC", - "nomCommune": "PEYRUSSE LE ROC" + "codePostal": "35340", + "codeCommune": "35107", + "libelleAcheminement": "ERCE PRES LIFFRE", + "nomCommune": "ERCE PRES LIFFRE" }, { - "codePostal": "12130", - "codeCommune": "12184", - "libelleAcheminement": "POMAYROLS", - "nomCommune": "POMAYROLS" + "codePostal": "35640", + "codeCommune": "35114", + "libelleAcheminement": "FORGES LA FORET", + "nomCommune": "FORGES LA FORET" }, { - "codePostal": "12800", - "codeCommune": "12194", - "libelleAcheminement": "QUINS", - "nomCommune": "QUINS" + "codePostal": "35290", + "codeCommune": "35117", + "libelleAcheminement": "GAEL", + "nomCommune": "GAEL" }, { - "codePostal": "12400", - "codeCommune": "12195", - "libelleAcheminement": "REBOURGUIL", - "nomCommune": "REBOURGUIL" + "codePostal": "35370", + "codeCommune": "35119", + "libelleAcheminement": "GENNES SUR SEICHE", + "nomCommune": "GENNES SUR SEICHE" }, { - "codePostal": "12170", - "codeCommune": "12197", - "libelleAcheminement": "REQUISTA", - "nomCommune": "REQUISTA" + "codePostal": "35120", + "codeCommune": "35132", + "libelleAcheminement": "HIREL", + "nomCommune": "HIREL" }, { - "codePostal": "12100", - "codeCommune": "12204", - "libelleAcheminement": "LA ROQUE STE MARGUERITE", - "nomCommune": "LA ROQUE STE MARGUERITE" + "codePostal": "35120", + "codeCommune": "35132", + "libelleAcheminement": "HIREL", + "nomCommune": "HIREL" }, { - "codePostal": "12200", - "codeCommune": "12205", - "libelleAcheminement": "LA ROUQUETTE", - "nomCommune": "LA ROUQUETTE" + "codePostal": "35133", + "codeCommune": "35138", + "libelleAcheminement": "LAIGNELET", + "nomCommune": "LAIGNELET" }, { - "codePostal": "12120", - "codeCommune": "12207", - "libelleAcheminement": "RULLAC ST CIRQ", - "nomCommune": "RULLAC ST CIRQ" + "codePostal": "35320", + "codeCommune": "35140", + "libelleAcheminement": "LALLEU", + "nomCommune": "LALLEU" }, { - "codePostal": "12400", - "codeCommune": "12208", - "libelleAcheminement": "ST AFFRIQUE", - "nomCommune": "ST AFFRIQUE" + "codePostal": "35270", + "codeCommune": "35148", + "libelleAcheminement": "LANRIGAN", + "nomCommune": "LANRIGAN" }, { - "codePostal": "12330", - "codeCommune": "12215", - "libelleAcheminement": "ST CHRISTOPHE VALLON", - "nomCommune": "ST CHRISTOPHE VALLON" + "codePostal": "35550", + "codeCommune": "35155", + "libelleAcheminement": "LOHEAC", + "nomCommune": "LOHEAC" }, { - "codePostal": "12500", - "codeCommune": "12216", - "libelleAcheminement": "ST COME D OLT", - "nomCommune": "ST COME D OLT" + "codePostal": "35133", + "codeCommune": "35157", + "libelleAcheminement": "LE LOROUX", + "nomCommune": "LE LOROUX" }, { - "codePostal": "12420", - "codeCommune": "12223", - "libelleAcheminement": "ARGENCES EN AUBRAC", - "nomCommune": "ARGENCES EN AUBRAC" + "codePostal": "35330", + "codeCommune": "35160", + "libelleAcheminement": "LOUTEHEL", + "nomCommune": "LOUTEHEL" }, { - "codePostal": "12130", - "codeCommune": "12224", - "libelleAcheminement": "ST GENIEZ D OLT ET D AUBRAC", - "nomCommune": "ST GENIEZ D OLT ET D AUBRAC" + "codePostal": "35380", + "codeCommune": "35169", + "libelleAcheminement": "MAXENT", + "nomCommune": "MAXENT" }, { - "codePostal": "12100", - "codeCommune": "12225", - "libelleAcheminement": "ST GEORGES DE LUZENCON", - "nomCommune": "ST GEORGES DE LUZENCON" + "codePostal": "35210", + "codeCommune": "35185", + "libelleAcheminement": "MONTAUTOUR", + "nomCommune": "MONTAUTOUR" }, { - "codePostal": "12800", - "codeCommune": "12235", - "libelleAcheminement": "ST JUST SUR VIAUR", - "nomCommune": "ST JUST SUR VIAUR" + "codePostal": "35160", + "codeCommune": "35188", + "libelleAcheminement": "MONTFORT SUR MEU", + "nomCommune": "MONTFORT SUR MEU" }, { - "codePostal": "12560", - "codeCommune": "12237", - "libelleAcheminement": "ST LAURENT D OLT", - "nomCommune": "ST LAURENT D OLT" + "codePostal": "35420", + "codeCommune": "35190", + "libelleAcheminement": "MONTHAULT", + "nomCommune": "MONTHAULT" }, { - "codePostal": "12200", - "codeCommune": "12242", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "35130", + "codeCommune": "35200", + "libelleAcheminement": "MOUTIERS", + "nomCommune": "MOUTIERS" }, { - "codePostal": "12560", - "codeCommune": "12247", - "libelleAcheminement": "ST SATURNIN DE LENNE", - "nomCommune": "ST SATURNIN DE LENNE" + "codePostal": "35470", + "codeCommune": "35202", + "libelleAcheminement": "LA NOE BLANCHE", + "nomCommune": "LA NOE BLANCHE" }, { - "codePostal": "12380", - "codeCommune": "12248", - "libelleAcheminement": "ST SERNIN SUR RANCE", - "nomCommune": "ST SERNIN SUR RANCE" + "codePostal": "35137", + "codeCommune": "35203", + "libelleAcheminement": "LA NOUAYE", + "nomCommune": "LA NOUAYE" }, { - "codePostal": "12400", - "codeCommune": "12251", - "libelleAcheminement": "ST VICTOR ET MELVIEU", - "nomCommune": "ST VICTOR ET MELVIEU" + "codePostal": "35850", + "codeCommune": "35216", + "libelleAcheminement": "PARTHENAY DE BRETAGNE", + "nomCommune": "PARTHENAY DE BRETAGNE" }, { - "codePostal": "12260", - "codeCommune": "12256", - "libelleAcheminement": "SALVAGNAC CAJARC", - "nomCommune": "SALVAGNAC CAJARC" + "codePostal": "35720", + "codeCommune": "35225", + "libelleAcheminement": "PLESDER", + "nomCommune": "PLESDER" }, { - "codePostal": "12230", - "codeCommune": "12260", - "libelleAcheminement": "SAUCLIERES", - "nomCommune": "SAUCLIERES" + "codePostal": "35720", + "codeCommune": "35226", + "libelleAcheminement": "PLEUGUENEUC", + "nomCommune": "PLEUGUENEUC" }, { - "codePostal": "12380", - "codeCommune": "12269", - "libelleAcheminement": "LA SERRE", - "nomCommune": "LA SERRE" + "codePostal": "35420", + "codeCommune": "35230", + "libelleAcheminement": "POILLEY", + "nomCommune": "POILLEY" }, { - "codePostal": "12360", - "codeCommune": "12274", - "libelleAcheminement": "SYLVANES", - "nomCommune": "SYLVANES" + "codePostal": "35210", + "codeCommune": "35232", + "libelleAcheminement": "PRINCE", + "nomCommune": "PRINCE" }, { - "codePostal": "12600", - "codeCommune": "12277", - "libelleAcheminement": "TAUSSAC", - "nomCommune": "TAUSSAC" + "codePostal": "35130", + "codeCommune": "35235", + "libelleAcheminement": "RANNEE", + "nomCommune": "RANNEE" }, { - "codePostal": "12330", - "codeCommune": "12288", - "libelleAcheminement": "VALADY", - "nomCommune": "VALADY" + "codePostal": "35600", + "codeCommune": "35236", + "libelleAcheminement": "REDON", + "nomCommune": "REDON" }, { - "codePostal": "12220", - "codeCommune": "12289", - "libelleAcheminement": "VALZERGUES", - "nomCommune": "VALZERGUES" + "codePostal": "35660", + "codeCommune": "35237", + "libelleAcheminement": "RENAC", + "nomCommune": "RENAC" }, { - "codePostal": "12220", - "codeCommune": "12290", - "libelleAcheminement": "VAUREILLES", - "nomCommune": "VAUREILLES" + "codePostal": "35133", + "codeCommune": "35243", + "libelleAcheminement": "ROMAGNE", + "nomCommune": "ROMAGNE" }, { - "codePostal": "12520", - "codeCommune": "12291", - "libelleAcheminement": "VERRIERES", - "nomCommune": "VERRIERES" + "codePostal": "35114", + "codeCommune": "35255", + "libelleAcheminement": "ST BENOIT DES ONDES", + "nomCommune": "ST BENOIT DES ONDES" }, { - "codePostal": "12780", - "codeCommune": "12294", - "libelleAcheminement": "VEZINS DE LEVEZOU", - "nomCommune": "VEZINS DE LEVEZOU" + "codePostal": "35460", + "codeCommune": "35257", + "libelleAcheminement": "MAEN ROCH", + "nomCommune": "MAEN ROCH" }, { - "codePostal": "12250", - "codeCommune": "12295", - "libelleAcheminement": "VIALA DU PAS DE JAUX", - "nomCommune": "VIALA DU PAS DE JAUX" + "codePostal": "35220", + "codeCommune": "35264", + "libelleAcheminement": "ST DIDIER", + "nomCommune": "ST DIDIER" }, { - "codePostal": "12260", - "codeCommune": "12301", - "libelleAcheminement": "VILLENEUVE", - "nomCommune": "VILLENEUVE" + "codePostal": "35550", + "codeCommune": "35268", + "libelleAcheminement": "ST GANTON", + "nomCommune": "ST GANTON" }, { - "codePostal": "13090", - "codeCommune": "13001", - "libelleAcheminement": "AIX EN PROVENCE", - "nomCommune": "AIX EN PROVENCE" + "codePostal": "35250", + "codeCommune": "35274", + "libelleAcheminement": "ST GERMAIN SUR ILLE", + "nomCommune": "ST GERMAIN SUR ILLE" }, { - "codePostal": "13100", - "codeCommune": "13001", - "libelleAcheminement": "AIX EN PROVENCE", - "nomCommune": "AIX EN PROVENCE" + "codePostal": "35760", + "codeCommune": "35278", + "libelleAcheminement": "ST GREGOIRE", + "nomCommune": "ST GREGOIRE" }, { - "codePostal": "13280", - "codeCommune": "13004", - "libelleAcheminement": "ARLES", - "nomCommune": "ARLES" + "codePostal": "35140", + "codeCommune": "35280", + "libelleAcheminement": "ST HILAIRE DES LANDES", + "nomCommune": "ST HILAIRE DES LANDES" }, { - "codePostal": "13570", - "codeCommune": "13010", - "libelleAcheminement": "BARBENTANE", - "nomCommune": "BARBENTANE" + "codePostal": "35136", + "codeCommune": "35281", + "libelleAcheminement": "ST JACQUES DE LA LANDE", + "nomCommune": "ST JACQUES DE LA LANDE" }, { - "codePostal": "13720", - "codeCommune": "13013", - "libelleAcheminement": "BELCODENE", - "nomCommune": "BELCODENE" + "codePostal": "35140", + "codeCommune": "35282", + "libelleAcheminement": "RIVES DU COUESNON", + "nomCommune": "RIVES DU COUESNON" }, { - "codePostal": "13130", - "codeCommune": "13014", - "libelleAcheminement": "BERRE L ETANG", - "nomCommune": "BERRE L ETANG" + "codePostal": "35550", + "codeCommune": "35285", + "libelleAcheminement": "ST JUST", + "nomCommune": "ST JUST" }, { - "codePostal": "13720", - "codeCommune": "13016", - "libelleAcheminement": "LA BOUILLADISSE", - "nomCommune": "LA BOUILLADISSE" + "codePostal": "35400", + "codeCommune": "35288", + "libelleAcheminement": "ST MALO", + "nomCommune": "ST MALO" }, { - "codePostal": "13440", - "codeCommune": "13018", - "libelleAcheminement": "CABANNES", - "nomCommune": "CABANNES" + "codePostal": "35400", + "codeCommune": "35288", + "libelleAcheminement": "ST MALO", + "nomCommune": "ST MALO" }, { - "codePostal": "13480", - "codeCommune": "13019", - "libelleAcheminement": "CABRIES", - "nomCommune": "CABRIES" + "codePostal": "35400", + "codeCommune": "35288", + "libelleAcheminement": "ST MALO", + "nomCommune": "ST MALO" }, { - "codePostal": "13480", - "codeCommune": "13019", - "libelleAcheminement": "CABRIES", - "nomCommune": "CABRIES" + "codePostal": "35120", + "codeCommune": "35291", + "libelleAcheminement": "ST MARCAN", + "nomCommune": "ST MARCAN" }, { - "codePostal": "13950", - "codeCommune": "13020", - "libelleAcheminement": "CADOLIVE", - "nomCommune": "CADOLIVE" + "codePostal": "35600", + "codeCommune": "35294", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "13350", - "codeCommune": "13024", - "libelleAcheminement": "CHARLEVAL", - "nomCommune": "CHARLEVAL" + "codePostal": "35250", + "codeCommune": "35296", + "libelleAcheminement": "ST MEDARD SUR ILLE", + "nomCommune": "ST MEDARD SUR ILLE" }, { - "codePostal": "13220", - "codeCommune": "13026", - "libelleAcheminement": "CHATEAUNEUF LES MARTIGUES", - "nomCommune": "CHATEAUNEUF LES MARTIGUES" + "codePostal": "35290", + "codeCommune": "35297", + "libelleAcheminement": "ST MEEN LE GRAND", + "nomCommune": "ST MEEN LE GRAND" }, { - "codePostal": "13780", - "codeCommune": "13030", - "libelleAcheminement": "CUGES LES PINS", - "nomCommune": "CUGES LES PINS" + "codePostal": "35380", + "codeCommune": "35305", + "libelleAcheminement": "ST PERAN", + "nomCommune": "ST PERAN" }, { - "codePostal": "13810", - "codeCommune": "13034", - "libelleAcheminement": "EYGALIERES", - "nomCommune": "EYGALIERES" + "codePostal": "35430", + "codeCommune": "35306", + "libelleAcheminement": "ST PERE MARC EN POULET", + "nomCommune": "ST PERE MARC EN POULET" }, { - "codePostal": "13430", - "codeCommune": "13035", - "libelleAcheminement": "EYGUIERES", - "nomCommune": "EYGUIERES" + "codePostal": "35720", + "codeCommune": "35308", + "libelleAcheminement": "MESNIL ROC H", + "nomCommune": "MESNIL ROC H" }, { - "codePostal": "13580", - "codeCommune": "13037", - "libelleAcheminement": "LA FARE LES OLIVIERS", - "nomCommune": "LA FARE LES OLIVIERS" + "codePostal": "35720", + "codeCommune": "35308", + "libelleAcheminement": "MESNIL ROC H", + "nomCommune": "MESNIL ROC H" }, { - "codePostal": "13270", - "codeCommune": "13039", - "libelleAcheminement": "FOS SUR MER", - "nomCommune": "FOS SUR MER" + "codePostal": "35250", + "codeCommune": "35315", + "libelleAcheminement": "ST SULPICE LA FORET", + "nomCommune": "ST SULPICE LA FORET" }, { - "codePostal": "13120", - "codeCommune": "13041", - "libelleAcheminement": "GARDANNE", - "nomCommune": "GARDANNE" + "codePostal": "35390", + "codeCommune": "35316", + "libelleAcheminement": "ST SULPICE DES LANDES", + "nomCommune": "ST SULPICE DES LANDES" }, { - "codePostal": "13420", - "codeCommune": "13042", - "libelleAcheminement": "GEMENOS", - "nomCommune": "GEMENOS" + "codePostal": "35360", + "codeCommune": "35320", + "libelleAcheminement": "ST UNIAC", + "nomCommune": "ST UNIAC" }, { - "codePostal": "13113", - "codeCommune": "13049", - "libelleAcheminement": "LAMANON", - "nomCommune": "LAMANON" + "codePostal": "35490", + "codeCommune": "35326", + "libelleAcheminement": "SENS DE BRETAGNE", + "nomCommune": "SENS DE BRETAGNE" }, { - "codePostal": "13700", - "codeCommune": "13054", - "libelleAcheminement": "MARIGNANE", - "nomCommune": "MARIGNANE" + "codePostal": "35134", + "codeCommune": "35335", + "libelleAcheminement": "THOURIE", + "nomCommune": "THOURIE" }, { - "codePostal": "13117", - "codeCommune": "13056", - "libelleAcheminement": "MARTIGUES", - "nomCommune": "MARTIGUES" + "codePostal": "35190", + "codeCommune": "35346", + "libelleAcheminement": "TRIMER", + "nomCommune": "TRIMER" }, { - "codePostal": "13940", - "codeCommune": "13064", - "libelleAcheminement": "MOLLEGES", - "nomCommune": "MOLLEGES" + "codePostal": "36140", + "codeCommune": "36001", + "libelleAcheminement": "AIGURANDE", + "nomCommune": "AIGURANDE" }, { - "codePostal": "13660", - "codeCommune": "13067", - "libelleAcheminement": "ORGON", - "nomCommune": "ORGON" + "codePostal": "36120", + "codeCommune": "36005", + "libelleAcheminement": "ARDENTES", + "nomCommune": "ARDENTES" }, { - "codePostal": "13821", - "codeCommune": "13070", - "libelleAcheminement": "LA PENNE SUR HUVEAUNE", - "nomCommune": "LA PENNE SUR HUVEAUNE" + "codePostal": "36200", + "codeCommune": "36006", + "libelleAcheminement": "ARGENTON SUR CREUSE", + "nomCommune": "ARGENTON SUR CREUSE" }, { - "codePostal": "13790", - "codeCommune": "13072", - "libelleAcheminement": "PEYNIER", - "nomCommune": "PEYNIER" + "codePostal": "36700", + "codeCommune": "36008", + "libelleAcheminement": "ARPHEUILLES", + "nomCommune": "ARPHEUILLES" }, { - "codePostal": "13360", - "codeCommune": "13086", - "libelleAcheminement": "ROQUEVAIRE", - "nomCommune": "ROQUEVAIRE" + "codePostal": "36290", + "codeCommune": "36010", + "libelleAcheminement": "AZAY LE FERRON", + "nomCommune": "AZAY LE FERRON" }, { - "codePostal": "13360", - "codeCommune": "13086", - "libelleAcheminement": "ROQUEVAIRE", - "nomCommune": "ROQUEVAIRE" + "codePostal": "36270", + "codeCommune": "36014", + "libelleAcheminement": "BAZAIGES", + "nomCommune": "BAZAIGES" }, { - "codePostal": "13740", - "codeCommune": "13088", - "libelleAcheminement": "LE ROVE", - "nomCommune": "LE ROVE" + "codePostal": "36370", + "codeCommune": "36016", + "libelleAcheminement": "BELABRE", + "nomCommune": "BELABRE" }, { - "codePostal": "13103", - "codeCommune": "13094", - "libelleAcheminement": "ST ETIENNE DU GRES", - "nomCommune": "ST ETIENNE DU GRES" + "codePostal": "36400", + "codeCommune": "36017", + "libelleAcheminement": "LA BERTHENOUX", + "nomCommune": "LA BERTHENOUX" }, { - "codePostal": "13100", - "codeCommune": "13095", - "libelleAcheminement": "ST MARC JAUMEGARDE", - "nomCommune": "ST MARC JAUMEGARDE" + "codePostal": "36300", + "codeCommune": "36018", + "libelleAcheminement": "LE BLANC", + "nomCommune": "LE BLANC" }, { - "codePostal": "13115", - "codeCommune": "13099", - "libelleAcheminement": "ST PAUL LES DURANCE", - "nomCommune": "ST PAUL LES DURANCE" + "codePostal": "36310", + "codeCommune": "36020", + "libelleAcheminement": "BONNEUIL", + "nomCommune": "BONNEUIL" }, { - "codePostal": "13960", - "codeCommune": "13104", - "libelleAcheminement": "SAUSSET LES PINS", - "nomCommune": "SAUSSET LES PINS" + "codePostal": "36200", + "codeCommune": "36022", + "libelleAcheminement": "BOUESSE", + "nomCommune": "BOUESSE" }, { - "codePostal": "13240", - "codeCommune": "13106", - "libelleAcheminement": "SEPTEMES LES VALLONS", - "nomCommune": "SEPTEMES LES VALLONS" + "codePostal": "36110", + "codeCommune": "36026", + "libelleAcheminement": "BRION", + "nomCommune": "BRION" }, { - "codePostal": "13150", - "codeCommune": "13108", - "libelleAcheminement": "TARASCON", - "nomCommune": "TARASCON" + "codePostal": "36500", + "codeCommune": "36040", + "libelleAcheminement": "LA CHAPELLE ORTHEMALE", + "nomCommune": "LA CHAPELLE ORTHEMALE" }, { - "codePostal": "13530", - "codeCommune": "13110", - "libelleAcheminement": "TRETS", - "nomCommune": "TRETS" + "codePostal": "36500", + "codeCommune": "36050", + "libelleAcheminement": "CHEZELLES", + "nomCommune": "CHEZELLES" }, { - "codePostal": "13126", - "codeCommune": "13111", - "libelleAcheminement": "VAUVENARGUES", - "nomCommune": "VAUVENARGUES" + "codePostal": "36700", + "codeCommune": "36054", + "libelleAcheminement": "CLERE DU BOIS", + "nomCommune": "CLERE DU BOIS" }, { - "codePostal": "13770", - "codeCommune": "13113", - "libelleAcheminement": "VENELLES", - "nomCommune": "VENELLES" + "codePostal": "36700", + "codeCommune": "36055", + "libelleAcheminement": "CLION", + "nomCommune": "CLION" }, { - "codePostal": "13007", - "codeCommune": "13207", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 07" + "codePostal": "36140", + "codeCommune": "36060", + "libelleAcheminement": "CREVANT", + "nomCommune": "CREVANT" }, { - "codePostal": "13009", - "codeCommune": "13209", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 09" + "codePostal": "36140", + "codeCommune": "36061", + "libelleAcheminement": "CROZON SUR VAUVRE", + "nomCommune": "CROZON SUR VAUVRE" }, { - "codePostal": "13012", - "codeCommune": "13212", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 12" + "codePostal": "36190", + "codeCommune": "36062", + "libelleAcheminement": "CUZION", + "nomCommune": "CUZION" }, { - "codePostal": "14190", - "codeCommune": "14005", - "libelleAcheminement": "VALAMBRAY", - "nomCommune": "VALAMBRAY" + "codePostal": "36130", + "codeCommune": "36064", + "libelleAcheminement": "DIORS", + "nomCommune": "DIORS" }, { - "codePostal": "14310", - "codeCommune": "14007", - "libelleAcheminement": "AMAYE SUR SEULLES", - "nomCommune": "AMAYE SUR SEULLES" + "codePostal": "36270", + "codeCommune": "36070", + "libelleAcheminement": "EGUZON CHANTOME", + "nomCommune": "EGUZON CHANTOME" }, { - "codePostal": "14240", - "codeCommune": "14011", - "libelleAcheminement": "AURSEULLES", - "nomCommune": "AURSEULLES" + "codePostal": "36600", + "codeCommune": "36077", + "libelleAcheminement": "FONTGUENAND", + "nomCommune": "FONTGUENAND" }, { - "codePostal": "14240", - "codeCommune": "14011", - "libelleAcheminement": "AURSEULLES", - "nomCommune": "AURSEULLES" + "codePostal": "36230", + "codeCommune": "36078", + "libelleAcheminement": "FOUGEROLLES", + "nomCommune": "FOUGEROLLES" }, { - "codePostal": "14610", - "codeCommune": "14014", - "libelleAcheminement": "COLOMBY ANGUERNY", - "nomCommune": "COLOMBY ANGUERNY" + "codePostal": "36110", + "codeCommune": "36079", + "libelleAcheminement": "FRANCILLON", + "nomCommune": "FRANCILLON" }, { - "codePostal": "14430", - "codeCommune": "14016", - "libelleAcheminement": "ANNEBAULT", - "nomCommune": "ANNEBAULT" + "codePostal": "36190", + "codeCommune": "36081", + "libelleAcheminement": "GARGILESSE DAMPIERRE", + "nomCommune": "GARGILESSE DAMPIERRE" }, { - "codePostal": "14400", - "codeCommune": "14019", - "libelleAcheminement": "ARGANCHY", - "nomCommune": "ARGANCHY" + "codePostal": "36100", + "codeCommune": "36088", + "libelleAcheminement": "ISSOUDUN", + "nomCommune": "ISSOUDUN" }, { - "codePostal": "14960", - "codeCommune": "14022", - "libelleAcheminement": "ASNELLES", - "nomCommune": "ASNELLES" + "codePostal": "36120", + "codeCommune": "36089", + "libelleAcheminement": "JEU LES BOIS", + "nomCommune": "JEU LES BOIS" }, { - "codePostal": "14250", - "codeCommune": "14026", - "libelleAcheminement": "AUDRIEU", - "nomCommune": "AUDRIEU" + "codePostal": "36400", + "codeCommune": "36091", + "libelleAcheminement": "LACS", + "nomCommune": "LACS" }, { - "codePostal": "14260", - "codeCommune": "14027", - "libelleAcheminement": "LES MONTS D AUNAY", - "nomCommune": "LES MONTS D AUNAY" + "codePostal": "36110", + "codeCommune": "36093", + "libelleAcheminement": "LEVROUX", + "nomCommune": "LEVROUX" }, { - "codePostal": "14480", - "codeCommune": "14049", - "libelleAcheminement": "BAZENVILLE", - "nomCommune": "BAZENVILLE" + "codePostal": "36360", + "codeCommune": "36103", + "libelleAcheminement": "LUCAY LE MALE", + "nomCommune": "LUCAY LE MALE" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "36340", + "codeCommune": "36111", + "libelleAcheminement": "MALICORNAY", + "nomCommune": "MALICORNAY" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "36220", + "codeCommune": "36113", + "libelleAcheminement": "MARTIZAY", + "nomCommune": "MARTIZAY" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "36210", + "codeCommune": "36115", + "libelleAcheminement": "MENETOU SUR NAHON", + "nomCommune": "MENETOU SUR NAHON" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "36220", + "codeCommune": "36119", + "libelleAcheminement": "MERIGNY", + "nomCommune": "MERIGNY" }, { - "codePostal": "14430", - "codeCommune": "14070", - "libelleAcheminement": "BEUVRON EN AUGE", - "nomCommune": "BEUVRON EN AUGE" + "codePostal": "36230", + "codeCommune": "36120", + "libelleAcheminement": "MERS SUR INDRE", + "nomCommune": "MERS SUR INDRE" }, { - "codePostal": "14340", - "codeCommune": "14082", - "libelleAcheminement": "LA BOISSIERE", - "nomCommune": "LA BOISSIERE" + "codePostal": "36260", + "codeCommune": "36125", + "libelleAcheminement": "MIGNY", + "nomCommune": "MIGNY" }, { - "codePostal": "14210", - "codeCommune": "14089", - "libelleAcheminement": "BOUGY", - "nomCommune": "BOUGY" + "codePostal": "36230", + "codeCommune": "36129", + "libelleAcheminement": "MONTIPOURET", + "nomCommune": "MONTIPOURET" }, { - "codePostal": "14740", - "codeCommune": "14098", - "libelleAcheminement": "THUE ET MUE", - "nomCommune": "THUE ET MUE" + "codePostal": "36200", + "codeCommune": "36131", + "libelleAcheminement": "MOSNAY", + "nomCommune": "MOSNAY" }, { - "codePostal": "14740", - "codeCommune": "14098", - "libelleAcheminement": "THUE ET MUE", - "nomCommune": "THUE ET MUE" + "codePostal": "36220", + "codeCommune": "36137", + "libelleAcheminement": "NEONS SUR CREUSE", + "nomCommune": "NEONS SUR CREUSE" }, { - "codePostal": "14740", - "codeCommune": "14098", - "libelleAcheminement": "THUE ET MUE", - "nomCommune": "THUE ET MUE" + "codePostal": "36400", + "codeCommune": "36143", + "libelleAcheminement": "NOHANT VIC", + "nomCommune": "NOHANT VIC" }, { - "codePostal": "14710", - "codeCommune": "14107", - "libelleAcheminement": "BRICQUEVILLE", - "nomCommune": "BRICQUEVILLE" + "codePostal": "36190", + "codeCommune": "36146", + "libelleAcheminement": "ORSENNES", + "nomCommune": "ORSENNES" }, { - "codePostal": "14610", - "codeCommune": "14123", - "libelleAcheminement": "CAIRON", - "nomCommune": "CAIRON" + "codePostal": "36170", + "codeCommune": "36150", + "libelleAcheminement": "PARNAC", + "nomCommune": "PARNAC" }, { - "codePostal": "14340", - "codeCommune": "14126", - "libelleAcheminement": "CAMBREMER", - "nomCommune": "CAMBREMER" + "codePostal": "36180", + "codeCommune": "36155", + "libelleAcheminement": "PELLEVOISIN", + "nomCommune": "PELLEVOISIN" }, { - "codePostal": "14340", - "codeCommune": "14126", - "libelleAcheminement": "CAMBREMER", - "nomCommune": "CAMBREMER" + "codePostal": "36160", + "codeCommune": "36156", + "libelleAcheminement": "PERASSAY", + "nomCommune": "PERASSAY" }, { - "codePostal": "14500", - "codeCommune": "14127", - "libelleAcheminement": "CAMPAGNOLLES", - "nomCommune": "CAMPAGNOLLES" + "codePostal": "36330", + "codeCommune": "36159", + "libelleAcheminement": "LE POINCONNET", + "nomCommune": "LE POINCONNET" }, { - "codePostal": "14370", - "codeCommune": "14134", - "libelleAcheminement": "CANTELOUP", - "nomCommune": "CANTELOUP" + "codePostal": "36190", + "codeCommune": "36160", + "libelleAcheminement": "POMMIERS", + "nomCommune": "POMMIERS" }, { - "codePostal": "14230", - "codeCommune": "14136", - "libelleAcheminement": "CARDONVILLE", - "nomCommune": "CARDONVILLE" + "codePostal": "36160", + "codeCommune": "36164", + "libelleAcheminement": "POULIGNY ST MARTIN", + "nomCommune": "POULIGNY ST MARTIN" }, { - "codePostal": "14650", - "codeCommune": "14137", - "libelleAcheminement": "CARPIQUET", - "nomCommune": "CARPIQUET" + "codePostal": "36220", + "codeCommune": "36167", + "libelleAcheminement": "PREUILLY LA VILLE", + "nomCommune": "PREUILLY LA VILLE" }, { - "codePostal": "14330", - "codeCommune": "14138", - "libelleAcheminement": "CARTIGNY L EPINAY", - "nomCommune": "CARTIGNY L EPINAY" + "codePostal": "36150", + "codeCommune": "36170", + "libelleAcheminement": "REBOURSIN", + "nomCommune": "REBOURSIN" }, { - "codePostal": "14240", - "codeCommune": "14143", - "libelleAcheminement": "CAUMONT SUR AURE", - "nomCommune": "CAUMONT SUR AURE" + "codePostal": "36230", + "codeCommune": "36189", + "libelleAcheminement": "ST DENIS DE JOUHET", + "nomCommune": "ST DENIS DE JOUHET" }, { - "codePostal": "14240", - "codeCommune": "14143", - "libelleAcheminement": "CAUMONT SUR AURE", - "nomCommune": "CAUMONT SUR AURE" + "codePostal": "36150", + "codeCommune": "36191", + "libelleAcheminement": "ST FLORENTIN", + "nomCommune": "ST FLORENTIN" }, { - "codePostal": "14770", - "codeCommune": "14146", - "libelleAcheminement": "CAUVILLE", - "nomCommune": "CAUVILLE" + "codePostal": "36100", + "codeCommune": "36195", + "libelleAcheminement": "ST GEORGES SUR ARNON", + "nomCommune": "ST GEORGES SUR ARNON" }, { - "codePostal": "14250", - "codeCommune": "14159", - "libelleAcheminement": "CHOUAIN", - "nomCommune": "CHOUAIN" + "codePostal": "36200", + "codeCommune": "36200", + "libelleAcheminement": "ST MARCEL", + "nomCommune": "ST MARCEL" }, { - "codePostal": "14680", - "codeCommune": "14160", - "libelleAcheminement": "CINTHEAUX", - "nomCommune": "CINTHEAUX" + "codePostal": "36190", + "codeCommune": "36207", + "libelleAcheminement": "ST PLANTAIRE", + "nomCommune": "ST PLANTAIRE" }, { - "codePostal": "14570", - "codeCommune": "14162", - "libelleAcheminement": "CLECY", - "nomCommune": "CLECY" + "codePostal": "36230", + "codeCommune": "36210", + "libelleAcheminement": "SARZAY", + "nomCommune": "SARZAY" }, { - "codePostal": "14710", - "codeCommune": "14165", - "libelleAcheminement": "COLLEVILLE SUR MER", - "nomCommune": "COLLEVILLE SUR MER" + "codePostal": "36200", + "codeCommune": "36219", + "libelleAcheminement": "TENDU", + "nomCommune": "TENDU" }, { - "codePostal": "14880", - "codeCommune": "14166", - "libelleAcheminement": "COLLEVILLE MONTGOMERY", - "nomCommune": "COLLEVILLE MONTGOMERY" + "codePostal": "36500", + "codeCommune": "36232", + "libelleAcheminement": "VENDOEUVRES", + "nomCommune": "VENDOEUVRES" }, { - "codePostal": "14110", - "codeCommune": "14174", - "libelleAcheminement": "CONDE EN NORMANDIE", - "nomCommune": "CONDE EN NORMANDIE" + "codePostal": "36110", + "codeCommune": "36242", + "libelleAcheminement": "VILLEGONGIS", + "nomCommune": "VILLEGONGIS" }, { - "codePostal": "14130", - "codeCommune": "14177", - "libelleAcheminement": "COQUAINVILLIERS", - "nomCommune": "COQUAINVILLIERS" + "codePostal": "36290", + "codeCommune": "36246", + "libelleAcheminement": "VILLIERS", + "nomCommune": "VILLIERS" }, { - "codePostal": "14700", - "codeCommune": "14180", - "libelleAcheminement": "CORDEY", - "nomCommune": "CORDEY" + "codePostal": "37800", + "codeCommune": "37005", + "libelleAcheminement": "ANTOGNY LE TILLAC", + "nomCommune": "ANTOGNY LE TILLAC" }, { - "codePostal": "14470", - "codeCommune": "14191", - "libelleAcheminement": "COURSEULLES SUR MER", - "nomCommune": "COURSEULLES SUR MER" + "codePostal": "37110", + "codeCommune": "37009", + "libelleAcheminement": "AUTRECHE", + "nomCommune": "AUTRECHE" }, { - "codePostal": "14480", - "codeCommune": "14200", - "libelleAcheminement": "CREULLY SUR SEULLES", - "nomCommune": "CREULLY SUR SEULLES" + "codePostal": "37220", + "codeCommune": "37012", + "libelleAcheminement": "AVON LES ROCHES", + "nomCommune": "AVON LES ROCHES" }, { - "codePostal": "14620", - "codeCommune": "14206", - "libelleAcheminement": "CROCY", - "nomCommune": "CROCY" + "codePostal": "37360", + "codeCommune": "37021", + "libelleAcheminement": "BEAUMONT LOUESTAULT", + "nomCommune": "BEAUMONT LOUESTAULT" }, { - "codePostal": "14220", - "codeCommune": "14211", - "libelleAcheminement": "CULEY LE PATRY", - "nomCommune": "CULEY LE PATRY" + "codePostal": "37150", + "codeCommune": "37027", + "libelleAcheminement": "BLERE", + "nomCommune": "BLERE" }, { - "codePostal": "14800", - "codeCommune": "14220", - "libelleAcheminement": "DEAUVILLE", - "nomCommune": "DEAUVILLE" + "codePostal": "37290", + "codeCommune": "37028", + "libelleAcheminement": "BOSSAY SUR CLAISE", + "nomCommune": "BOSSAY SUR CLAISE" }, { - "codePostal": "14160", - "codeCommune": "14225", - "libelleAcheminement": "DIVES SUR MER", - "nomCommune": "DIVES SUR MER" + "codePostal": "37370", + "codeCommune": "37041", + "libelleAcheminement": "BUEIL EN TOURAINE", + "nomCommune": "BUEIL EN TOURAINE" }, { - "codePostal": "14440", - "codeCommune": "14228", - "libelleAcheminement": "DOUVRES LA DELIVRANDE", - "nomCommune": "DOUVRES LA DELIVRANDE" + "codePostal": "37530", + "codeCommune": "37043", + "libelleAcheminement": "CANGEY", + "nomCommune": "CANGEY" }, { - "codePostal": "14440", - "codeCommune": "14228", - "libelleAcheminement": "DOUVRES LA DELIVRANDE", - "nomCommune": "DOUVRES LA DELIVRANDE" + "codePostal": "37390", + "codeCommune": "37054", + "libelleAcheminement": "CHANCEAUX SUR CHOISILLE", + "nomCommune": "CHANCEAUX SUR CHOISILLE" }, { - "codePostal": "14430", - "codeCommune": "14229", - "libelleAcheminement": "DOZULE", - "nomCommune": "DOZULE" + "codePostal": "37330", + "codeCommune": "37055", + "libelleAcheminement": "CHANNAY SUR LATHAN", + "nomCommune": "CHANNAY SUR LATHAN" }, { - "codePostal": "14130", - "codeCommune": "14230", - "libelleAcheminement": "DRUBEC", - "nomCommune": "DRUBEC" + "codePostal": "37390", + "codeCommune": "37059", + "libelleAcheminement": "CHARENTILLY", + "nomCommune": "CHARENTILLY" }, { - "codePostal": "14340", - "codeCommune": "14231", - "libelleAcheminement": "BEAUFOUR DRUVAL", - "nomCommune": "BEAUFOUR DRUVAL" + "codePostal": "37350", + "codeCommune": "37064", + "libelleAcheminement": "CHAUMUSSAY", + "nomCommune": "CHAUMUSSAY" }, { - "codePostal": "14400", - "codeCommune": "14250", - "libelleAcheminement": "ESQUAY SUR SEULLES", - "nomCommune": "ESQUAY SUR SEULLES" + "codePostal": "37310", + "codeCommune": "37066", + "libelleAcheminement": "CHEDIGNY", + "nomCommune": "CHEDIGNY" }, { - "codePostal": "14130", - "codeCommune": "14261", - "libelleAcheminement": "LE FAULQ", - "nomCommune": "LE FAULQ" + "codePostal": "37150", + "codeCommune": "37070", + "libelleAcheminement": "CHENONCEAUX", + "nomCommune": "CHENONCEAUX" }, { - "codePostal": "14710", - "codeCommune": "14272", - "libelleAcheminement": "LA FOLIE", - "nomCommune": "LA FOLIE" + "codePostal": "37150", + "codeCommune": "37079", + "libelleAcheminement": "CIVRAY DE TOURAINE", + "nomCommune": "CIVRAY DE TOURAINE" }, { - "codePostal": "14340", - "codeCommune": "14285", - "libelleAcheminement": "LE FOURNET", - "nomCommune": "LE FOURNET" + "codePostal": "37340", + "codeCommune": "37081", + "libelleAcheminement": "CLERE LES PINS", + "nomCommune": "CLERE LES PINS" }, { - "codePostal": "14430", - "codeCommune": "14308", - "libelleAcheminement": "GOUSTRANVILLE", - "nomCommune": "GOUSTRANVILLE" + "codePostal": "37320", + "codeCommune": "37083", + "libelleAcheminement": "CORMERY", + "nomCommune": "CORMERY" }, { - "codePostal": "14190", - "codeCommune": "14310", - "libelleAcheminement": "GRAINVILLE LANGANNERIE", - "nomCommune": "GRAINVILLE LANGANNERIE" + "codePostal": "37330", + "codeCommune": "37086", + "libelleAcheminement": "COURCELLES DE TOURAINE", + "nomCommune": "COURCELLES DE TOURAINE" }, { - "codePostal": "14210", - "codeCommune": "14311", - "libelleAcheminement": "GRAINVILLE SUR ODON", - "nomCommune": "GRAINVILLE SUR ODON" + "codePostal": "37120", + "codeCommune": "37087", + "libelleAcheminement": "COURCOUE", + "nomCommune": "COURCOUE" }, { - "codePostal": "14450", - "codeCommune": "14312", - "libelleAcheminement": "GRANDCAMP MAISY", - "nomCommune": "GRANDCAMP MAISY" + "codePostal": "37150", + "codeCommune": "37091", + "libelleAcheminement": "LA CROIX EN TOURAINE", + "nomCommune": "LA CROIX EN TOURAINE" }, { - "codePostal": "14470", - "codeCommune": "14318", - "libelleAcheminement": "GRAYE SUR MER", - "nomCommune": "GRAYE SUR MER" + "codePostal": "37800", + "codeCommune": "37098", + "libelleAcheminement": "DRACHE", + "nomCommune": "DRACHE" }, { - "codePostal": "14600", - "codeCommune": "14333", - "libelleAcheminement": "HONFLEUR", - "nomCommune": "HONFLEUR" + "codePostal": "37320", + "codeCommune": "37104", + "libelleAcheminement": "ESVRES", + "nomCommune": "ESVRES" }, { - "codePostal": "14100", - "codeCommune": "14334", - "libelleAcheminement": "L HOTELLERIE", - "nomCommune": "L HOTELLERIE" + "codePostal": "37600", + "codeCommune": "37108", + "libelleAcheminement": "FERRIERE SUR BEAULIEU", + "nomCommune": "FERRIERE SUR BEAULIEU" }, { - "codePostal": "14330", - "codeCommune": "14342", - "libelleAcheminement": "ISIGNY SUR MER", - "nomCommune": "ISIGNY SUR MER" + "codePostal": "37460", + "codeCommune": "37111", + "libelleAcheminement": "GENILLE", + "nomCommune": "GENILLE" }, { - "codePostal": "14690", - "codeCommune": "14343", - "libelleAcheminement": "LES ISLES BARDEL", - "nomCommune": "LES ISLES BARDEL" + "codePostal": "37130", + "codeCommune": "37123", + "libelleAcheminement": "LANGEAIS", + "nomCommune": "LANGEAIS" }, { - "codePostal": "14670", - "codeCommune": "14344", - "libelleAcheminement": "JANVILLE", - "nomCommune": "JANVILLE" + "codePostal": "37460", + "codeCommune": "37133", + "libelleAcheminement": "LOCHE SUR INDROIS", + "nomCommune": "LOCHE SUR INDROIS" }, { - "codePostal": "14260", - "codeCommune": "14347", - "libelleAcheminement": "DIALAN SUR CHAINE", - "nomCommune": "DIALAN SUR CHAINE" + "codePostal": "37120", + "codeCommune": "37140", + "libelleAcheminement": "LUZE", + "nomCommune": "LUZE" }, { - "codePostal": "14320", - "codeCommune": "14349", - "libelleAcheminement": "LAIZE CLINCHAMPS", - "nomCommune": "LAIZE CLINCHAMPS" + "codePostal": "37800", + "codeCommune": "37147", + "libelleAcheminement": "MARCILLY SUR VIENNE", + "nomCommune": "MARCILLY SUR VIENNE" }, { - "codePostal": "14480", - "codeCommune": "14355", - "libelleAcheminement": "PONTS SUR SEULLES", - "nomCommune": "PONTS SUR SEULLES" + "codePostal": "37130", + "codeCommune": "37150", + "libelleAcheminement": "MAZIERES DE TOURAINE", + "nomCommune": "MAZIERES DE TOURAINE" }, { - "codePostal": "14480", - "codeCommune": "14355", - "libelleAcheminement": "PONTS SUR SEULLES", - "nomCommune": "PONTS SUR SEULLES" + "codePostal": "37390", + "codeCommune": "37151", + "libelleAcheminement": "LA MEMBROLLE SUR CHOISILLE", + "nomCommune": "LA MEMBROLLE SUR CHOISILLE" }, { - "codePostal": "14770", - "codeCommune": "14357", - "libelleAcheminement": "TERRES DE DRUANCE", - "nomCommune": "TERRES DE DRUANCE" + "codePostal": "37110", + "codeCommune": "37155", + "libelleAcheminement": "MONTHODON", + "nomCommune": "MONTHODON" }, { - "codePostal": "14140", - "codeCommune": "14368", - "libelleAcheminement": "LISORES", - "nomCommune": "LISORES" + "codePostal": "37270", + "codeCommune": "37156", + "libelleAcheminement": "MONTLOUIS SUR LOIRE", + "nomCommune": "MONTLOUIS SUR LOIRE" }, { - "codePostal": "14490", - "codeCommune": "14369", - "libelleAcheminement": "LITTEAU", - "nomCommune": "LITTEAU" + "codePostal": "37530", + "codeCommune": "37161", + "libelleAcheminement": "MOSNES", + "nomCommune": "MOSNES" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "37600", + "codeCommune": "37162", + "libelleAcheminement": "MOUZAY", + "nomCommune": "MOUZAY" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "37390", + "codeCommune": "37172", + "libelleAcheminement": "NOTRE DAME D OE", + "nomCommune": "NOTRE DAME D OE" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "37380", + "codeCommune": "37175", + "libelleAcheminement": "NOUZILLY", + "nomCommune": "NOUZILLY" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "37800", + "codeCommune": "37176", + "libelleAcheminement": "NOYANT DE TOURAINE", + "nomCommune": "NOYANT DE TOURAINE" }, { - "codePostal": "14290", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "37210", + "codeCommune": "37179", + "libelleAcheminement": "PARCAY MESLAY", + "nomCommune": "PARCAY MESLAY" }, { - "codePostal": "14290", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "37220", + "codeCommune": "37180", + "libelleAcheminement": "PARCAY SUR VIENNE", + "nomCommune": "PARCAY SUR VIENNE" }, { - "codePostal": "14310", - "codeCommune": "14379", - "libelleAcheminement": "LONGVILLERS", - "nomCommune": "LONGVILLERS" + "codePostal": "37350", + "codeCommune": "37181", + "libelleAcheminement": "PAULMY", + "nomCommune": "PAULMY" }, { - "codePostal": "14100", - "codeCommune": "14403", - "libelleAcheminement": "MAROLLES", - "nomCommune": "MAROLLES" + "codePostal": "37350", + "codeCommune": "37184", + "libelleAcheminement": "LE PETIT PRESSIGNY", + "nomCommune": "LE PETIT PRESSIGNY" }, { - "codePostal": "14740", - "codeCommune": "14406", - "libelleAcheminement": "MOULINS EN BESSIN", - "nomCommune": "MOULINS EN BESSIN" + "codePostal": "37800", + "codeCommune": "37188", + "libelleAcheminement": "POUZAY", + "nomCommune": "POUZAY" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "37290", + "codeCommune": "37189", + "libelleAcheminement": "PREUILLY SUR CLAISE", + "nomCommune": "PREUILLY SUR CLAISE" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "37310", + "codeCommune": "37192", + "libelleAcheminement": "REIGNAC SUR INDRE", + "nomCommune": "REIGNAC SUR INDRE" }, { - "codePostal": "14370", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "37210", + "codeCommune": "37203", + "libelleAcheminement": "ROCHECORBON", + "nomCommune": "ROCHECORBON" }, { - "codePostal": "14490", - "codeCommune": "14445", - "libelleAcheminement": "MONTFIQUET", - "nomCommune": "MONTFIQUET" + "codePostal": "37320", + "codeCommune": "37211", + "libelleAcheminement": "ST BRANCHS", + "nomCommune": "ST BRANCHS" }, { - "codePostal": "14210", - "codeCommune": "14446", - "libelleAcheminement": "MONTIGNY", - "nomCommune": "MONTIGNY" + "codePostal": "37600", + "codeCommune": "37221", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "14590", - "codeCommune": "14460", - "libelleAcheminement": "MOYAUX", - "nomCommune": "MOYAUX" + "codePostal": "37530", + "codeCommune": "37236", + "libelleAcheminement": "ST REGLE", + "nomCommune": "ST REGLE" }, { - "codePostal": "14220", - "codeCommune": "14461", - "libelleAcheminement": "MUTRECY", - "nomCommune": "MUTRECY" + "codePostal": "37250", + "codeCommune": "37250", + "libelleAcheminement": "SORIGNY", + "nomCommune": "SORIGNY" }, { - "codePostal": "14490", - "codeCommune": "14468", - "libelleAcheminement": "NORON LA POTERIE", - "nomCommune": "NORON LA POTERIE" + "codePostal": "37310", + "codeCommune": "37254", + "libelleAcheminement": "TAUXIGNY ST BAULD", + "nomCommune": "TAUXIGNY ST BAULD" }, { - "codePostal": "14230", - "codeCommune": "14480", - "libelleAcheminement": "OSMANVILLE", - "nomCommune": "OSMANVILLE" + "codePostal": "37260", + "codeCommune": "37257", + "libelleAcheminement": "THILOUZE", + "nomCommune": "THILOUZE" }, { - "codePostal": "14220", - "codeCommune": "14483", - "libelleAcheminement": "OUFFIERES", - "nomCommune": "OUFFIERES" + "codePostal": "37500", + "codeCommune": "37258", + "libelleAcheminement": "THIZAY", + "nomCommune": "THIZAY" }, { - "codePostal": "14600", - "codeCommune": "14492", - "libelleAcheminement": "PENNEDEPIE", - "nomCommune": "PENNEDEPIE" + "codePostal": "37290", + "codeCommune": "37259", + "libelleAcheminement": "TOURNON ST PIERRE", + "nomCommune": "TOURNON ST PIERRE" }, { - "codePostal": "14112", - "codeCommune": "14495", - "libelleAcheminement": "PERIERS SUR LE DAN", - "nomCommune": "PERIERS SUR LE DAN" + "codePostal": "37100", + "codeCommune": "37261", + "libelleAcheminement": "TOURS", + "nomCommune": "TOURS" }, { - "codePostal": "14770", - "codeCommune": "14496", - "libelleAcheminement": "PERIGNY", - "nomCommune": "PERIGNY" + "codePostal": "37220", + "codeCommune": "37262", + "libelleAcheminement": "TROGUES", + "nomCommune": "TROGUES" }, { - "codePostal": "14690", - "codeCommune": "14501", - "libelleAcheminement": "PIERREFITTE EN CINGLAIS", - "nomCommune": "PIERREFITTE EN CINGLAIS" + "codePostal": "37320", + "codeCommune": "37263", + "libelleAcheminement": "TRUYES", + "nomCommune": "TRUYES" }, { - "codePostal": "14380", - "codeCommune": "14511", - "libelleAcheminement": "PONT BELLANGER", - "nomCommune": "PONT BELLANGER" + "codePostal": "37250", + "codeCommune": "37266", + "libelleAcheminement": "VEIGNE", + "nomCommune": "VEIGNE" }, { - "codePostal": "14520", - "codeCommune": "14515", - "libelleAcheminement": "PORT EN BESSIN HUPPAIN", - "nomCommune": "PORT EN BESSIN HUPPAIN" + "codePostal": "37240", + "codeCommune": "37280", + "libelleAcheminement": "VOU", + "nomCommune": "VOU" }, { - "codePostal": "14420", - "codeCommune": "14516", - "libelleAcheminement": "POTIGNY", - "nomCommune": "POTIGNY" + "codePostal": "38490", + "codeCommune": "38001", + "libelleAcheminement": "LES ABRETS EN DAUPHINE", + "nomCommune": "LES ABRETS EN DAUPHINE" }, { - "codePostal": "14140", - "codeCommune": "14522", - "libelleAcheminement": "PRETREVILLE", - "nomCommune": "PRETREVILLE" + "codePostal": "38150", + "codeCommune": "38003", + "libelleAcheminement": "AGNIN", + "nomCommune": "AGNIN" }, { - "codePostal": "14740", - "codeCommune": "14543", - "libelleAcheminement": "ROTS", - "nomCommune": "ROTS" + "codePostal": "38580", + "codeCommune": "38006", + "libelleAcheminement": "ALLEVARD", + "nomCommune": "ALLEVARD" }, { - "codePostal": "14190", - "codeCommune": "14546", - "libelleAcheminement": "ROUVRES", - "nomCommune": "ROUVRES" + "codePostal": "38970", + "codeCommune": "38008", + "libelleAcheminement": "AMBEL", + "nomCommune": "AMBEL" }, { - "codePostal": "14800", - "codeCommune": "14557", - "libelleAcheminement": "ST ARNOULT", - "nomCommune": "ST ARNOULT" + "codePostal": "38150", + "codeCommune": "38017", + "libelleAcheminement": "ASSIEU", + "nomCommune": "ASSIEU" }, { - "codePostal": "14380", - "codeCommune": "14559", - "libelleAcheminement": "ST AUBIN DES BOIS", - "nomCommune": "ST AUBIN DES BOIS" + "codePostal": "38650", + "codeCommune": "38023", + "libelleAcheminement": "AVIGNONET", + "nomCommune": "AVIGNONET" }, { - "codePostal": "14280", - "codeCommune": "14566", - "libelleAcheminement": "ST CONTEST", - "nomCommune": "ST CONTEST" + "codePostal": "38110", + "codeCommune": "38029", + "libelleAcheminement": "LA BATIE MONTGASCON", + "nomCommune": "LA BATIE MONTGASCON" }, { - "codePostal": "14950", - "codeCommune": "14575", - "libelleAcheminement": "ST ETIENNE LA THILLAYE", - "nomCommune": "ST ETIENNE LA THILLAYE" + "codePostal": "38970", + "codeCommune": "38031", + "libelleAcheminement": "BEAUFIN", + "nomCommune": "BEAUFIN" }, { - "codePostal": "14260", - "codeCommune": "14579", - "libelleAcheminement": "SEULLINE", - "nomCommune": "SEULLINE" + "codePostal": "38270", + "codeCommune": "38032", + "libelleAcheminement": "BEAUFORT", + "nomCommune": "BEAUFORT" }, { - "codePostal": "14310", - "codeCommune": "14579", - "libelleAcheminement": "SEULLINE", - "nomCommune": "SEULLINE" + "codePostal": "38160", + "codeCommune": "38041", + "libelleAcheminement": "BESSINS", + "nomCommune": "BESSINS" }, { - "codePostal": "14100", - "codeCommune": "14582", - "libelleAcheminement": "ST GERMAIN DE LIVET", - "nomCommune": "ST GERMAIN DE LIVET" + "codePostal": "38850", + "codeCommune": "38043", + "libelleAcheminement": "BILIEU", + "nomCommune": "BILIEU" }, { - "codePostal": "14700", - "codeCommune": "14588", - "libelleAcheminement": "ST GERMAIN LANGOT", - "nomCommune": "ST GERMAIN LANGOT" + "codePostal": "38690", + "codeCommune": "38044", + "libelleAcheminement": "BIOL", + "nomCommune": "BIOL" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "38390", + "codeCommune": "38054", + "libelleAcheminement": "BOUVESSE QUIRIEU", + "nomCommune": "BOUVESSE QUIRIEU" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "38690", + "codeCommune": "38065", + "libelleAcheminement": "CHABONS", + "nomCommune": "CHABONS" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "38260", + "codeCommune": "38069", + "libelleAcheminement": "CHAMPIER", + "nomCommune": "CHAMPIER" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "38730", + "codeCommune": "38089", + "libelleAcheminement": "CHASSIGNIEU", + "nomCommune": "CHASSIGNIEU" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "38650", + "codeCommune": "38090", + "libelleAcheminement": "CHATEAU BERNARD", + "nomCommune": "CHATEAU BERNARD" }, { - "codePostal": "14350", - "codeCommune": "14672", - "libelleAcheminement": "VAL DE DROME", - "nomCommune": "VAL DE DROME" + "codePostal": "38300", + "codeCommune": "38091", + "libelleAcheminement": "CHATEAUVILAIN", + "nomCommune": "CHATEAUVILAIN" }, { - "codePostal": "14420", - "codeCommune": "14678", - "libelleAcheminement": "SOUMONT ST QUENTIN", - "nomCommune": "SOUMONT ST QUENTIN" + "codePostal": "38160", + "codeCommune": "38095", + "libelleAcheminement": "CHATTE", + "nomCommune": "CHATTE" }, { - "codePostal": "14400", - "codeCommune": "14680", - "libelleAcheminement": "SULLY", - "nomCommune": "SULLY" + "codePostal": "38570", + "codeCommune": "38100", + "libelleAcheminement": "LE CHEYLAS", + "nomCommune": "LE CHEYLAS" }, { - "codePostal": "14250", - "codeCommune": "14684", - "libelleAcheminement": "TESSEL", - "nomCommune": "TESSEL" + "codePostal": "38850", + "codeCommune": "38105", + "libelleAcheminement": "CHIRENS", + "nomCommune": "CHIRENS" }, { - "codePostal": "14690", - "codeCommune": "14710", - "libelleAcheminement": "TREPREL", - "nomCommune": "TREPREL" + "codePostal": "38220", + "codeCommune": "38106", + "libelleAcheminement": "CHOLONGE", + "nomCommune": "CHOLONGE" }, { - "codePostal": "14490", - "codeCommune": "14714", - "libelleAcheminement": "LE TRONQUAY", - "nomCommune": "LE TRONQUAY" + "codePostal": "38122", + "codeCommune": "38134", + "libelleAcheminement": "COUR ET BUIS", + "nomCommune": "COUR ET BUIS" }, { - "codePostal": "14350", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "38510", + "codeCommune": "38135", + "libelleAcheminement": "COURTENAY", + "nomCommune": "COURTENAY" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "38730", + "codeCommune": "38147", + "libelleAcheminement": "DOISSIN", + "nomCommune": "DOISSIN" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "38300", + "codeCommune": "38152", + "libelleAcheminement": "ECLOSE BADINIERES", + "nomCommune": "ECLOSE BADINIERES" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "38580", + "codeCommune": "38163", + "libelleAcheminement": "LE HAUT BREDA", + "nomCommune": "LE HAUT BREDA" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "38580", + "codeCommune": "38163", + "libelleAcheminement": "LE HAUT BREDA", + "nomCommune": "LE HAUT BREDA" }, { - "codePostal": "14700", - "codeCommune": "14737", - "libelleAcheminement": "VERSAINVILLE", - "nomCommune": "VERSAINVILLE" + "codePostal": "38142", + "codeCommune": "38173", + "libelleAcheminement": "LE FRENEY D OISANS", + "nomCommune": "LE FRENEY D OISANS" }, { - "codePostal": "14114", - "codeCommune": "14739", - "libelleAcheminement": "VER SUR MER", - "nomCommune": "VER SUR MER" + "codePostal": "38690", + "codeCommune": "38182", + "libelleAcheminement": "LE GRAND LEMPS", + "nomCommune": "LE GRAND LEMPS" }, { - "codePostal": "14290", - "codeCommune": "14740", - "libelleAcheminement": "LA VESPIERE FRIARDEL", - "nomCommune": "LA VESPIERE FRIARDEL" + "codePostal": "38490", + "codeCommune": "38183", + "libelleAcheminement": "GRANIEU", + "nomCommune": "GRANIEU" }, { - "codePostal": "14170", - "codeCommune": "14742", - "libelleAcheminement": "VICQUES", - "nomCommune": "VICQUES" + "codePostal": "38450", + "codeCommune": "38187", + "libelleAcheminement": "LE GUA", + "nomCommune": "LE GUA" }, { - "codePostal": "14640", - "codeCommune": "14754", - "libelleAcheminement": "VILLERS SUR MER", - "nomCommune": "VILLERS SUR MER" + "codePostal": "38140", + "codeCommune": "38194", + "libelleAcheminement": "IZEAUX", + "nomCommune": "IZEAUX" }, { - "codePostal": "14113", - "codeCommune": "14755", - "libelleAcheminement": "VILLERVILLE", - "nomCommune": "VILLERVILLE" + "codePostal": "38560", + "codeCommune": "38200", + "libelleAcheminement": "JARRIE", + "nomCommune": "JARRIE" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "38220", + "codeCommune": "38203", + "libelleAcheminement": "LAFFREY", + "nomCommune": "LAFFREY" }, { - "codePostal": "15130", - "codeCommune": "15012", - "libelleAcheminement": "ARPAJON SUR CERE", - "nomCommune": "ARPAJON SUR CERE" + "codePostal": "38930", + "codeCommune": "38204", + "libelleAcheminement": "LALLEY", + "nomCommune": "LALLEY" }, { - "codePostal": "15240", - "codeCommune": "15015", - "libelleAcheminement": "AUZERS", - "nomCommune": "AUZERS" + "codePostal": "38250", + "codeCommune": "38205", + "libelleAcheminement": "LANS EN VERCORS", + "nomCommune": "LANS EN VERCORS" }, { - "codePostal": "15270", - "codeCommune": "15020", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "38270", + "codeCommune": "38209", + "libelleAcheminement": "LENTIOL", + "nomCommune": "LENTIOL" }, { - "codePostal": "15600", - "codeCommune": "15021", - "libelleAcheminement": "BOISSET", - "nomCommune": "BOISSET" + "codePostal": "38220", + "codeCommune": "38212", + "libelleAcheminement": "LIVET ET GAVET", + "nomCommune": "LIVET ET GAVET" }, { - "codePostal": "15700", - "codeCommune": "15024", - "libelleAcheminement": "BRAGEAC", - "nomCommune": "BRAGEAC" + "codePostal": "38710", + "codeCommune": "38226", + "libelleAcheminement": "MENS", + "nomCommune": "MENS" }, { - "codePostal": "15340", - "codeCommune": "15029", - "libelleAcheminement": "CASSANIOUZE", - "nomCommune": "CASSANIOUZE" + "codePostal": "38650", + "codeCommune": "38242", + "libelleAcheminement": "MONESTIER DE CLERMONT", + "nomCommune": "MONESTIER DE CLERMONT" }, { - "codePostal": "15290", - "codeCommune": "15030", - "libelleAcheminement": "CAYROLS", - "nomCommune": "CAYROLS" + "codePostal": "38122", + "codeCommune": "38244", + "libelleAcheminement": "MONSTEROUX MILIEU", + "nomCommune": "MONSTEROUX MILIEU" }, { - "codePostal": "15270", - "codeCommune": "15038", - "libelleAcheminement": "CHAMPS SUR TARENTAINE MARCHAL", - "nomCommune": "CHAMPS SUR TARENTAINE MARCHAL" + "codePostal": "38860", + "codeCommune": "38253", + "libelleAcheminement": "LES DEUX ALPES", + "nomCommune": "LES DEUX ALPES" }, { - "codePostal": "15500", - "codeCommune": "15042", - "libelleAcheminement": "LA CHAPELLE LAURENT", - "nomCommune": "LA CHAPELLE LAURENT" + "codePostal": "38860", + "codeCommune": "38253", + "libelleAcheminement": "LES DEUX ALPES", + "nomCommune": "LES DEUX ALPES" }, { - "codePostal": "15400", - "codeCommune": "15052", - "libelleAcheminement": "COLLANDRES", - "nomCommune": "COLLANDRES" + "codePostal": "38120", + "codeCommune": "38258", + "libelleAcheminement": "MONT ST MARTIN", + "nomCommune": "MONT ST MARTIN" }, { - "codePostal": "15170", - "codeCommune": "15053", - "libelleAcheminement": "COLTINES", - "nomCommune": "COLTINES" + "codePostal": "38260", + "codeCommune": "38267", + "libelleAcheminement": "LE MOTTIER", + "nomCommune": "MOTTIER" }, { - "codePostal": "15430", - "codeCommune": "15059", - "libelleAcheminement": "CUSSAC", - "nomCommune": "CUSSAC" + "codePostal": "38350", + "codeCommune": "38269", + "libelleAcheminement": "LA MURE D ISERE", + "nomCommune": "LA MURE" }, { - "codePostal": "15110", - "codeCommune": "15060", - "libelleAcheminement": "DEUX VERGES", - "nomCommune": "DEUX VERGES" + "codePostal": "38470", + "codeCommune": "38278", + "libelleAcheminement": "NOTRE DAME DE L OSIER", + "nomCommune": "NOTRE DAME DE L OSIER" }, { - "codePostal": "15140", - "codeCommune": "15063", - "libelleAcheminement": "DRUGEAC", - "nomCommune": "DRUGEAC" + "codePostal": "38260", + "codeCommune": "38284", + "libelleAcheminement": "ORNACIEUX BALBINS", + "nomCommune": "ORNACIEUX BALBINS" }, { - "codePostal": "15170", - "codeCommune": "15069", - "libelleAcheminement": "FERRIERES ST MARY", - "nomCommune": "FERRIERES ST MARY" + "codePostal": "38690", + "codeCommune": "38287", + "libelleAcheminement": "OYEU", + "nomCommune": "OYEU" }, { - "codePostal": "15150", - "codeCommune": "15076", - "libelleAcheminement": "GLENAT", - "nomCommune": "GLENAT" + "codePostal": "38850", + "codeCommune": "38292", + "libelleAcheminement": "VILLAGES DU LAC DE PALADRU", + "nomCommune": "VILLAGES DU LAC DE PALADRU" }, { - "codePostal": "15120", - "codeCommune": "15084", - "libelleAcheminement": "LABESSERETTE", - "nomCommune": "LABESSERETTE" + "codePostal": "38510", + "codeCommune": "38297", + "libelleAcheminement": "ARANDON PASSINS", + "nomCommune": "ARANDON PASSINS" }, { - "codePostal": "15500", - "codeCommune": "15098", - "libelleAcheminement": "LAURIE", - "nomCommune": "LAURIE" + "codePostal": "38510", + "codeCommune": "38297", + "libelleAcheminement": "ARANDON PASSINS", + "nomCommune": "ARANDON PASSINS" }, { - "codePostal": "15300", - "codeCommune": "15101", - "libelleAcheminement": "LAVEISSIERE", - "nomCommune": "LAVEISSIERE" + "codePostal": "38570", + "codeCommune": "38303", + "libelleAcheminement": "LA PIERRE", + "nomCommune": "LA PIERRE" }, { - "codePostal": "15110", - "codeCommune": "15106", - "libelleAcheminement": "LIEUTADES", - "nomCommune": "LIEUTADES" + "codePostal": "38480", + "codeCommune": "38315", + "libelleAcheminement": "LE PONT DE BEAUVOISIN", + "nomCommune": "LE PONT DE BEAUVOISIN" }, { - "codePostal": "15320", - "codeCommune": "15107", - "libelleAcheminement": "LORCIERES", - "nomCommune": "LORCIERES" + "codePostal": "38780", + "codeCommune": "38318", + "libelleAcheminement": "PONT EVEQUE", + "nomCommune": "PONT EVEQUE" }, { - "codePostal": "15320", - "codeCommune": "15108", - "libelleAcheminement": "VAL D ARCOMIE", - "nomCommune": "VAL D ARCOMIE" + "codePostal": "38480", + "codeCommune": "38323", + "libelleAcheminement": "PRESSINS", + "nomCommune": "PRESSINS" }, { - "codePostal": "15320", - "codeCommune": "15108", - "libelleAcheminement": "VAL D ARCOMIE", - "nomCommune": "VAL D ARCOMIE" + "codePostal": "38110", + "codeCommune": "38341", + "libelleAcheminement": "ROCHETOIRIN", + "nomCommune": "ROCHETOIRIN" }, { - "codePostal": "15230", - "codeCommune": "15112", - "libelleAcheminement": "MALBO", - "nomCommune": "MALBO" + "codePostal": "38650", + "codeCommune": "38342", + "libelleAcheminement": "ROISSARD", + "nomCommune": "ROISSARD" }, { - "codePostal": "15400", - "codeCommune": "15116", - "libelleAcheminement": "MARCHASTEL", - "nomCommune": "MARCHASTEL" + "codePostal": "38550", + "codeCommune": "38349", + "libelleAcheminement": "SABLONS", + "nomCommune": "SABLONS" }, { - "codePostal": "15500", - "codeCommune": "15119", - "libelleAcheminement": "MASSIAC", - "nomCommune": "MASSIAC" + "codePostal": "38480", + "codeCommune": "38354", + "libelleAcheminement": "ST ALBIN DE VAULSERRE", + "nomCommune": "ST ALBIN DE VAULSERRE" }, { - "codePostal": "15120", - "codeCommune": "15134", - "libelleAcheminement": "MONTSALVY", - "nomCommune": "MONTSALVY" + "codePostal": "38160", + "codeCommune": "38360", + "libelleAcheminement": "ST APPOLINARD", + "nomCommune": "ST APPOLINARD" }, { - "codePostal": "15300", - "codeCommune": "15138", - "libelleAcheminement": "MURAT", - "nomCommune": "MURAT" + "codePostal": "38960", + "codeCommune": "38362", + "libelleAcheminement": "ST AUPRE", + "nomCommune": "ST AUPRE" }, { - "codePostal": "15170", - "codeCommune": "15141", - "libelleAcheminement": "NEUSSARGUES EN PINATELLE", - "nomCommune": "NEUSSARGUES EN PINATELLE" + "codePostal": "38110", + "codeCommune": "38369", + "libelleAcheminement": "STE BLANDINE", + "nomCommune": "STE BLANDINE" }, { - "codePostal": "15170", - "codeCommune": "15141", - "libelleAcheminement": "NEUSSARGUES EN PINATELLE", - "nomCommune": "NEUSSARGUES EN PINATELLE" + "codePostal": "38500", + "codeCommune": "38373", + "libelleAcheminement": "ST CASSIEN", + "nomCommune": "ST CASSIEN" }, { - "codePostal": "15300", - "codeCommune": "15141", - "libelleAcheminement": "NEUSSARGUES EN PINATELLE", - "nomCommune": "NEUSSARGUES EN PINATELLE" + "codePostal": "38890", + "codeCommune": "38374", + "libelleAcheminement": "ST CHEF", + "nomCommune": "ST CHEF" }, { - "codePostal": "15430", - "codeCommune": "15148", - "libelleAcheminement": "PAULHAC", - "nomCommune": "PAULHAC" + "codePostal": "38370", + "codeCommune": "38378", + "libelleAcheminement": "ST CLAIR DU RHONE", + "nomCommune": "ST CLAIR DU RHONE" }, { - "codePostal": "15170", - "codeCommune": "15151", - "libelleAcheminement": "PEYRUSSE", - "nomCommune": "PEYRUSSE" + "codePostal": "38120", + "codeCommune": "38382", + "libelleAcheminement": "ST EGREVE", + "nomCommune": "ST EGREVE" }, { - "codePostal": "15500", - "codeCommune": "15158", - "libelleAcheminement": "RAGEADE", - "nomCommune": "RAGEADE" + "codePostal": "38460", + "codeCommune": "38392", + "libelleAcheminement": "ST HILAIRE DE BRENS", + "nomCommune": "ST HILAIRE DE BRENS" }, { - "codePostal": "15220", - "codeCommune": "15163", - "libelleAcheminement": "ROANNES ST MARY", - "nomCommune": "ROANNES ST MARY" + "codePostal": "38480", + "codeCommune": "38398", + "libelleAcheminement": "ST JEAN D AVELANNE", + "nomCommune": "ST JEAN D AVELANNE" }, { - "codePostal": "15150", - "codeCommune": "15165", - "libelleAcheminement": "ROUFFIAC", - "nomCommune": "ROUFFIAC" + "codePostal": "38220", + "codeCommune": "38402", + "libelleAcheminement": "ST JEAN DE VAULX", + "nomCommune": "ST JEAN DE VAULX" }, { - "codePostal": "15600", - "codeCommune": "15181", - "libelleAcheminement": "ST CONSTANT FOURNOULES", - "nomCommune": "ST CONSTANT FOURNOULES" + "codePostal": "38380", + "codeCommune": "38412", + "libelleAcheminement": "ST LAURENT DU PONT", + "nomCommune": "ST LAURENT DU PONT" }, { - "codePostal": "15600", - "codeCommune": "15181", - "libelleAcheminement": "ST CONSTANT FOURNOULES", - "nomCommune": "ST CONSTANT FOURNOULES" + "codePostal": "38350", + "codeCommune": "38413", + "libelleAcheminement": "ST LAURENT EN BEAUMONT", + "nomCommune": "ST LAURENT EN BEAUMONT" }, { - "codePostal": "15600", - "codeCommune": "15194", - "libelleAcheminement": "ST JULIEN DE TOURSAC", - "nomCommune": "ST JULIEN DE TOURSAC" + "codePostal": "38660", + "codeCommune": "38417", + "libelleAcheminement": "STE MARIE D ALLOIX", + "nomCommune": "STE MARIE D ALLOIX" }, { - "codePostal": "15140", - "codeCommune": "15202", - "libelleAcheminement": "ST MARTIN VALMEROUX", - "nomCommune": "ST MARTIN VALMEROUX" + "codePostal": "38480", + "codeCommune": "38420", + "libelleAcheminement": "ST MARTIN DE VAULSERRE", + "nomCommune": "ST MARTIN DE VAULSERRE" }, { - "codePostal": "15150", - "codeCommune": "15217", - "libelleAcheminement": "ST VICTOR", - "nomCommune": "ST VICTOR" + "codePostal": "38400", + "codeCommune": "38421", + "libelleAcheminement": "ST MARTIN D HERES", + "nomCommune": "ST MARTIN D HERES" }, { - "codePostal": "15150", - "codeCommune": "15228", - "libelleAcheminement": "SIRAN", - "nomCommune": "SIRAN" + "codePostal": "38530", + "codeCommune": "38426", + "libelleAcheminement": "ST MAXIMIN", + "nomCommune": "ST MAXIMIN" }, { - "codePostal": "15600", - "codeCommune": "15242", - "libelleAcheminement": "LE TRIOULOU", - "nomCommune": "LE TRIOULOU" + "codePostal": "38350", + "codeCommune": "38428", + "libelleAcheminement": "ST MICHEL EN BEAUMONT", + "nomCommune": "ST MICHEL EN BEAUMONT" }, { - "codePostal": "15300", - "codeCommune": "15244", - "libelleAcheminement": "USSEL", - "nomCommune": "USSEL" + "codePostal": "38650", + "codeCommune": "38438", + "libelleAcheminement": "ST PAUL LES MONESTIER", + "nomCommune": "ST PAUL LES MONESTIER" }, { - "codePostal": "15170", - "codeCommune": "15247", - "libelleAcheminement": "VALJOUZE", - "nomCommune": "VALJOUZE" + "codePostal": "38830", + "codeCommune": "38439", + "libelleAcheminement": "CRETS EN BELLEDONNE", + "nomCommune": "CRETS EN BELLEDONNE" }, { - "codePostal": "15380", - "codeCommune": "15249", - "libelleAcheminement": "LE VAULMIER", - "nomCommune": "LE VAULMIER" + "codePostal": "38710", + "codeCommune": "38456", + "libelleAcheminement": "CHATEL EN TRIEVES", + "nomCommune": "CHATEL EN TRIEVES" }, { - "codePostal": "15350", - "codeCommune": "15254", - "libelleAcheminement": "VEYRIERES", - "nomCommune": "VEYRIERES" + "codePostal": "38150", + "codeCommune": "38468", + "libelleAcheminement": "SALAISE SUR SANNE", + "nomCommune": "SALAISE SUR SANNE" }, { - "codePostal": "15500", - "codeCommune": "15259", - "libelleAcheminement": "VIEILLESPESSE", - "nomCommune": "VIEILLESPESSE" + "codePostal": "38350", + "codeCommune": "38470", + "libelleAcheminement": "LA SALLE EN BEAUMONT", + "nomCommune": "LA SALLE EN BEAUMONT" }, { - "codePostal": "15200", - "codeCommune": "15261", - "libelleAcheminement": "LE VIGEAN", - "nomCommune": "LE VIGEAN" + "codePostal": "38700", + "codeCommune": "38472", + "libelleAcheminement": "SARCENAS", + "nomCommune": "SARCENAS" }, { - "codePostal": "15220", - "codeCommune": "15264", - "libelleAcheminement": "VITRAC", - "nomCommune": "VITRAC" + "codePostal": "38360", + "codeCommune": "38474", + "libelleAcheminement": "SASSENAGE", + "nomCommune": "SASSENAGE" }, { - "codePostal": "15130", - "codeCommune": "15267", - "libelleAcheminement": "YTRAC", - "nomCommune": "YTRAC" + "codePostal": "38290", + "codeCommune": "38475", + "libelleAcheminement": "SATOLAS ET BONCE", + "nomCommune": "SATOLAS ET BONCE" }, { - "codePostal": "16500", - "codeCommune": "16001", - "libelleAcheminement": "ABZAC", - "nomCommune": "ABZAC" + "codePostal": "38220", + "codeCommune": "38478", + "libelleAcheminement": "SECHILIENNE", + "nomCommune": "SECHILIENNE" }, { - "codePostal": "16140", - "codeCommune": "16005", - "libelleAcheminement": "AIGRE", - "nomCommune": "AIGRE" + "codePostal": "38260", + "codeCommune": "38479", + "libelleAcheminement": "PORTE DES BONNEVAUX", + "nomCommune": "PORTE DES BONNEVAUX" }, { - "codePostal": "16560", - "codeCommune": "16011", - "libelleAcheminement": "ANAIS", - "nomCommune": "ANAIS" + "codePostal": "38170", + "codeCommune": "38485", + "libelleAcheminement": "SEYSSINET PARISET", + "nomCommune": "SEYSSINET PARISET" }, { - "codePostal": "16130", - "codeCommune": "16012", - "libelleAcheminement": "ANGEAC CHAMPAGNE", - "nomCommune": "ANGEAC CHAMPAGNE" + "codePostal": "38840", + "codeCommune": "38495", + "libelleAcheminement": "LA SONE", + "nomCommune": "LA SONE" }, { - "codePostal": "16290", - "codeCommune": "16019", - "libelleAcheminement": "ASNIERES SUR NOUERE", - "nomCommune": "ASNIERES SUR NOUERE" + "codePostal": "38150", + "codeCommune": "38496", + "libelleAcheminement": "SONNAY", + "nomCommune": "SONNAY" }, { - "codePostal": "16140", - "codeCommune": "16027", - "libelleAcheminement": "BARBEZIERES", - "nomCommune": "BARBEZIERES" + "codePostal": "38350", + "codeCommune": "38497", + "libelleAcheminement": "SOUSVILLE", + "nomCommune": "SOUSVILLE" }, { - "codePostal": "16300", - "codeCommune": "16030", - "libelleAcheminement": "BARRET", - "nomCommune": "BARRET" + "codePostal": "38470", + "codeCommune": "38500", + "libelleAcheminement": "TECHE", + "nomCommune": "TECHE" }, { - "codePostal": "16250", - "codeCommune": "16036", - "libelleAcheminement": "BECHERESSE", - "nomCommune": "BECHERESSE" + "codePostal": "38650", + "codeCommune": "38513", + "libelleAcheminement": "TREFFORT", + "nomCommune": "TREFFORT" }, { - "codePostal": "16250", - "codeCommune": "16041", - "libelleAcheminement": "BESSAC", - "nomCommune": "BESSAC" + "codePostal": "38540", + "codeCommune": "38519", + "libelleAcheminement": "VALENCIN", + "nomCommune": "VALENCIN" }, { - "codePostal": "16120", - "codeCommune": "16045", - "libelleAcheminement": "BIRAC", - "nomCommune": "BIRAC" + "codePostal": "38760", + "codeCommune": "38524", + "libelleAcheminement": "VARCES ALLIERES ET RISSET", + "nomCommune": "VARCES ALLIERES ET RISSET" }, { - "codePostal": "16250", - "codeCommune": "16046", - "libelleAcheminement": "COTEAUX DU BLANZACAIS", - "nomCommune": "COTEAUX DU BLANZACAIS" + "codePostal": "38410", + "codeCommune": "38529", + "libelleAcheminement": "VAULNAVEYS LE HAUT", + "nomCommune": "VAULNAVEYS LE HAUT" }, { - "codePostal": "16590", - "codeCommune": "16061", - "libelleAcheminement": "BRIE", - "nomCommune": "BRIE" + "codePostal": "38090", + "codeCommune": "38530", + "libelleAcheminement": "VAULX MILIEU", + "nomCommune": "VAULX MILIEU" }, { - "codePostal": "16210", - "codeCommune": "16063", - "libelleAcheminement": "BRIE SOUS CHALAIS", - "nomCommune": "BRIE SOUS CHALAIS" + "codePostal": "38200", + "codeCommune": "38544", + "libelleAcheminement": "VIENNE", + "nomCommune": "VIENNE" }, { - "codePostal": "16250", - "codeCommune": "16072", - "libelleAcheminement": "CHADURIE", - "nomCommune": "CHADURIE" + "codePostal": "38980", + "codeCommune": "38561", + "libelleAcheminement": "VIRIVILLE", + "nomCommune": "VIRIVILLE" }, { - "codePostal": "16380", - "codeCommune": "16084", - "libelleAcheminement": "CHARRAS", - "nomCommune": "CHARRAS" + "codePostal": "38220", + "codeCommune": "38562", + "libelleAcheminement": "VIZILLE", + "nomCommune": "VIZILLE" }, { - "codePostal": "16150", - "codeCommune": "16086", - "libelleAcheminement": "CHASSENON", - "nomCommune": "CHASSENON" + "codePostal": "38620", + "codeCommune": "38564", + "libelleAcheminement": "VOISSANT", + "nomCommune": "VOISSANT" }, { - "codePostal": "16460", - "codeCommune": "16095", - "libelleAcheminement": "CHENON", - "nomCommune": "CHENON" + "codePostal": "39270", + "codeCommune": "39007", + "libelleAcheminement": "ALIEZE", + "nomCommune": "ALIEZE" }, { - "codePostal": "16480", - "codeCommune": "16099", - "libelleAcheminement": "CHILLAC", - "nomCommune": "CHILLAC" + "codePostal": "39240", + "codeCommune": "39016", + "libelleAcheminement": "ARINTHOD", + "nomCommune": "ARINTHOD" }, { - "codePostal": "16320", - "codeCommune": "16103", - "libelleAcheminement": "COMBIERS", - "nomCommune": "COMBIERS" + "codePostal": "39210", + "codeCommune": "39017", + "libelleAcheminement": "ARLAY", + "nomCommune": "ARLAY" }, { - "codePostal": "16200", - "codeCommune": "16109", - "libelleAcheminement": "COURBILLAC", - "nomCommune": "COURBILLAC" + "codePostal": "39270", + "codeCommune": "39021", + "libelleAcheminement": "LA CHAILLEUSE", + "nomCommune": "LA CHAILLEUSE" }, { - "codePostal": "16210", - "codeCommune": "16112", - "libelleAcheminement": "COURLAC", - "nomCommune": "COURLAC" + "codePostal": "39800", + "codeCommune": "39028", + "libelleAcheminement": "AUMONT", + "nomCommune": "AUMONT" }, { - "codePostal": "16410", - "codeCommune": "16120", - "libelleAcheminement": "DIRAC", - "nomCommune": "DIRAC" + "codePostal": "39700", + "codeCommune": "39031", + "libelleAcheminement": "AUXANGE", + "nomCommune": "AUXANGE" }, { - "codePostal": "16240", - "codeCommune": "16127", - "libelleAcheminement": "EMPURE", - "nomCommune": "EMPURE" + "codePostal": "39200", + "codeCommune": "39032", + "libelleAcheminement": "AVIGNON LES ST CLAUDE", + "nomCommune": "AVIGNON LES ST CLAUDE" }, { - "codePostal": "16150", - "codeCommune": "16134", - "libelleAcheminement": "EXIDEUIL SUR VIENNE", - "nomCommune": "EXIDEUIL SUR VIENNE" + "codePostal": "39380", + "codeCommune": "39037", + "libelleAcheminement": "BANS", + "nomCommune": "BANS" }, { - "codePostal": "16230", - "codeCommune": "16141", - "libelleAcheminement": "FONTENILLE", - "nomCommune": "FONTENILLE" + "codePostal": "39100", + "codeCommune": "39042", + "libelleAcheminement": "BAVERANS", + "nomCommune": "BAVERANS" }, { - "codePostal": "16240", - "codeCommune": "16142", - "libelleAcheminement": "LA FORET DE TESSE", - "nomCommune": "LA FORET DE TESSE" + "codePostal": "39190", + "codeCommune": "39043", + "libelleAcheminement": "BEAUFORT ORBAGNA", + "nomCommune": "BEAUFORT ORBAGNA" }, { - "codePostal": "16250", - "codeCommune": "16175", - "libelleAcheminement": "VAL DES VIGNES", - "nomCommune": "VAL DES VIGNES" + "codePostal": "39400", + "codeCommune": "39047", + "libelleAcheminement": "BELLEFONTAINE", + "nomCommune": "BELLEFONTAINE" }, { - "codePostal": "16300", - "codeCommune": "16178", - "libelleAcheminement": "LAGARDE SUR LE NE", - "nomCommune": "LAGARDE SUR LE NE" + "codePostal": "39380", + "codeCommune": "39048", + "libelleAcheminement": "BELMONT", + "nomCommune": "BELMONT" }, { - "codePostal": "16140", - "codeCommune": "16185", - "libelleAcheminement": "LIGNE", - "nomCommune": "LIGNE" + "codePostal": "39800", + "codeCommune": "39049", + "libelleAcheminement": "BERSAILLIN", + "nomCommune": "BERSAILLIN" }, { - "codePostal": "16270", - "codeCommune": "16192", - "libelleAcheminement": "TERRES DE HAUTE CHARENTE", - "nomCommune": "TERRES DE HAUTE CHARENTE" + "codePostal": "39110", + "codeCommune": "39072", + "libelleAcheminement": "BRACON", + "nomCommune": "BRACON" }, { - "codePostal": "16320", - "codeCommune": "16198", - "libelleAcheminement": "MAGNAC LAVALETTE VILLARS", - "nomCommune": "MAGNAC LAVALETTE VILLARS" + "codePostal": "39800", + "codeCommune": "39081", + "libelleAcheminement": "BUVILLY", + "nomCommune": "BUVILLY" }, { - "codePostal": "16600", - "codeCommune": "16199", - "libelleAcheminement": "MAGNAC SUR TOUVRE", - "nomCommune": "MAGNAC SUR TOUVRE" + "codePostal": "39240", + "codeCommune": "39086", + "libelleAcheminement": "CERNON", + "nomCommune": "CERNON" }, { - "codePostal": "16120", - "codeCommune": "16204", - "libelleAcheminement": "BELLEVIGNE", - "nomCommune": "BELLEVIGNE" + "codePostal": "39150", + "codeCommune": "39091", + "libelleAcheminement": "LES CHALESMES", + "nomCommune": "LES CHALESMES" }, { - "codePostal": "16380", - "codeCommune": "16211", - "libelleAcheminement": "MARTHON", - "nomCommune": "MARTHON" + "codePostal": "39250", + "codeCommune": "39108", + "libelleAcheminement": "CHARENCY", + "nomCommune": "CHARENCY" }, { - "codePostal": "16420", - "codeCommune": "16231", - "libelleAcheminement": "MONTROLLET", - "nomCommune": "MONTROLLET" + "codePostal": "39130", + "codeCommune": "39109", + "libelleAcheminement": "CHAREZIER", + "nomCommune": "CHAREZIER" }, { - "codePostal": "16390", - "codeCommune": "16240", - "libelleAcheminement": "NABINAUD", - "nomCommune": "NABINAUD" + "codePostal": "39210", + "codeCommune": "39114", + "libelleAcheminement": "CHATEAU CHALON", + "nomCommune": "CHATEAU CHALON" }, { - "codePostal": "16700", - "codeCommune": "16242", - "libelleAcheminement": "NANTEUIL EN VALLEE", - "nomCommune": "NANTEUIL EN VALLEE" + "codePostal": "39230", + "codeCommune": "39119", + "libelleAcheminement": "LE CHATELEY", + "nomCommune": "LE CHATELEY" }, { - "codePostal": "16200", - "codeCommune": "16243", - "libelleAcheminement": "NERCILLAC", - "nomCommune": "NERCILLAC" + "codePostal": "39130", + "codeCommune": "39122", + "libelleAcheminement": "CHATILLON", + "nomCommune": "CHATILLON" }, { - "codePostal": "16270", - "codeCommune": "16245", - "libelleAcheminement": "NIEUIL", - "nomCommune": "NIEUIL" + "codePostal": "39200", + "codeCommune": "39130", + "libelleAcheminement": "NANCHEZ", + "nomCommune": "NANCHEZ" }, { - "codePostal": "16500", - "codeCommune": "16249", - "libelleAcheminement": "ORADOUR FANAIS", - "nomCommune": "ORADOUR FANAIS" + "codePostal": "39110", + "codeCommune": "39133", + "libelleAcheminement": "CHAUX CHAMPAGNY", + "nomCommune": "CHAUX CHAMPAGNY" }, { - "codePostal": "16250", - "codeCommune": "16258", - "libelleAcheminement": "PERIGNAC", - "nomCommune": "PERIGNAC" + "codePostal": "39570", + "codeCommune": "39145", + "libelleAcheminement": "CHILLE", + "nomCommune": "CHILLE" }, { - "codePostal": "16490", - "codeCommune": "16264", - "libelleAcheminement": "PLEUVILLE", - "nomCommune": "PLEUVILLE" + "codePostal": "39110", + "codeCommune": "39147", + "libelleAcheminement": "CHILLY SUR SALINS", + "nomCommune": "CHILLY SUR SALINS" }, { - "codePostal": "16230", - "codeCommune": "16272", - "libelleAcheminement": "PUYREAUX", - "nomCommune": "PUYREAUX" + "codePostal": "39380", + "codeCommune": "39149", + "libelleAcheminement": "CHISSEY SUR LOUE", + "nomCommune": "CHISSEY SUR LOUE" }, { - "codePostal": "16210", - "codeCommune": "16279", - "libelleAcheminement": "RIOUX MARTIN", - "nomCommune": "RIOUX MARTIN" + "codePostal": "39140", + "codeCommune": "39160", + "libelleAcheminement": "COMMENAILLES", + "nomCommune": "COMMENAILLES" }, { - "codePostal": "16110", - "codeCommune": "16281", - "libelleAcheminement": "LA ROCHEFOUCAULD EN ANGOUMOIS", - "nomCommune": "LA ROCHEFOUCAULD EN ANGOUMOIS" + "codePostal": "39570", + "codeCommune": "39170", + "libelleAcheminement": "COURLANS", + "nomCommune": "COURLANS" }, { - "codePostal": "16110", - "codeCommune": "16282", - "libelleAcheminement": "LA ROCHETTE", - "nomCommune": "LA ROCHETTE" + "codePostal": "39570", + "codeCommune": "39171", + "libelleAcheminement": "COURLAOUX", + "nomCommune": "COURLAOUX" }, { - "codePostal": "16170", - "codeCommune": "16286", - "libelleAcheminement": "ROUILLAC", - "nomCommune": "ROUILLAC" + "codePostal": "39700", + "codeCommune": "39172", + "libelleAcheminement": "COURTEFONTAINE", + "nomCommune": "COURTEFONTAINE" }, { - "codePostal": "16170", - "codeCommune": "16286", - "libelleAcheminement": "ROUILLAC", - "nomCommune": "ROUILLAC" + "codePostal": "39260", + "codeCommune": "39175", + "libelleAcheminement": "COYRON", + "nomCommune": "COYRON" }, { - "codePostal": "16330", - "codeCommune": "16295", - "libelleAcheminement": "ST AMANT DE BOIXE", - "nomCommune": "ST AMANT DE BOIXE" + "codePostal": "39210", + "codeCommune": "39177", + "libelleAcheminement": "HAUTEROCHE", + "nomCommune": "HAUTEROCHE" }, { - "codePostal": "16120", - "codeCommune": "16297", - "libelleAcheminement": "GRAVES ST AMANT", - "nomCommune": "GRAVES ST AMANT" + "codePostal": "39260", + "codeCommune": "39179", + "libelleAcheminement": "CRENANS", + "nomCommune": "CRENANS" }, { - "codePostal": "16170", - "codeCommune": "16298", - "libelleAcheminement": "ST AMANT DE NOUERE", - "nomCommune": "ST AMANT DE NOUERE" + "codePostal": "39100", + "codeCommune": "39182", + "libelleAcheminement": "CRISSEY", + "nomCommune": "CRISSEY" }, { - "codePostal": "16210", - "codeCommune": "16302", - "libelleAcheminement": "ST AVIT", - "nomCommune": "ST AVIT" + "codePostal": "39700", + "codeCommune": "39190", + "libelleAcheminement": "DAMPIERRE", + "nomCommune": "DAMPIERRE" }, { - "codePostal": "16420", - "codeCommune": "16306", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "39130", + "codeCommune": "39192", + "libelleAcheminement": "DENEZIERES", + "nomCommune": "DENEZIERES" }, { - "codePostal": "16140", - "codeCommune": "16317", - "libelleAcheminement": "ST FRAIGNE", - "nomCommune": "ST FRAIGNE" + "codePostal": "39120", + "codeCommune": "39193", + "libelleAcheminement": "LE DESCHAUX", + "nomCommune": "LE DESCHAUX" }, { - "codePostal": "16700", - "codeCommune": "16321", - "libelleAcheminement": "ST GEORGES", - "nomCommune": "ST GEORGES" + "codePostal": "39230", + "codeCommune": "39196", + "libelleAcheminement": "LES DEUX FAYS", + "nomCommune": "LES DEUX FAYS" }, { - "codePostal": "16230", - "codeCommune": "16326", - "libelleAcheminement": "ST GROUX", - "nomCommune": "ST GROUX" + "codePostal": "39190", + "codeCommune": "39197", + "libelleAcheminement": "DIGNA", + "nomCommune": "DIGNA" }, { - "codePostal": "16260", - "codeCommune": "16336", - "libelleAcheminement": "ST MARY", - "nomCommune": "ST MARY" + "codePostal": "39100", + "codeCommune": "39198", + "libelleAcheminement": "DOLE", + "nomCommune": "DOLE" }, { - "codePostal": "16170", - "codeCommune": "16339", - "libelleAcheminement": "VAL D AUGE", - "nomCommune": "VAL D AUGE" + "codePostal": "39270", + "codeCommune": "39200", + "libelleAcheminement": "DOMPIERRE SUR MONT", + "nomCommune": "DOMPIERRE SUR MONT" }, { - "codePostal": "16130", - "codeCommune": "16343", - "libelleAcheminement": "ST PREUIL", - "nomCommune": "ST PREUIL" + "codePostal": "39240", + "codeCommune": "39204", + "libelleAcheminement": "DRAMELAY", + "nomCommune": "DRAMELAY" }, { - "codePostal": "16200", - "codeCommune": "16349", - "libelleAcheminement": "STE SEVERE", - "nomCommune": "STE SEVERE" + "codePostal": "39160", + "codeCommune": "39209", + "libelleAcheminement": "VAL D EPY", + "nomCommune": "VAL D EPY" }, { - "codePostal": "16120", - "codeCommune": "16352", - "libelleAcheminement": "ST SIMON", - "nomCommune": "ST SIMON" + "codePostal": "39320", + "codeCommune": "39209", + "libelleAcheminement": "VAL D EPY", + "nomCommune": "VAL D EPY" }, { - "codePostal": "16460", - "codeCommune": "16356", - "libelleAcheminement": "ST SULPICE DE RUFFEC", - "nomCommune": "ST SULPICE DE RUFFEC" + "codePostal": "39300", + "codeCommune": "39210", + "libelleAcheminement": "EQUEVILLON", + "nomCommune": "EQUEVILLON" }, { - "codePostal": "16480", - "codeCommune": "16357", - "libelleAcheminement": "ST VALLIER", - "nomCommune": "ST VALLIER" + "codePostal": "39130", + "codeCommune": "39216", + "libelleAcheminement": "ETIVAL", + "nomCommune": "ETIVAL" }, { - "codePostal": "16130", - "codeCommune": "16359", - "libelleAcheminement": "SALLES D ANGLES", - "nomCommune": "SALLES D ANGLES" + "codePostal": "39230", + "codeCommune": "39236", + "libelleAcheminement": "FRANCHEVILLE", + "nomCommune": "FRANCHEVILLE" }, { - "codePostal": "16300", - "codeCommune": "16360", - "libelleAcheminement": "SALLES DE BARBEZIEUX", - "nomCommune": "SALLES DE BARBEZIEUX" + "codePostal": "39130", + "codeCommune": "39240", + "libelleAcheminement": "LE FRASNOIS", + "nomCommune": "LE FRASNOIS" }, { - "codePostal": "16700", - "codeCommune": "16361", - "libelleAcheminement": "SALLES DE VILLEFAGNAN", - "nomCommune": "SALLES DE VILLEFAGNAN" + "codePostal": "39110", + "codeCommune": "39248", + "libelleAcheminement": "GERAISE", + "nomCommune": "GERAISE" }, { - "codePostal": "16700", - "codeCommune": "16378", - "libelleAcheminement": "TAIZE AIZIE", - "nomCommune": "TAIZE AIZIE" + "codePostal": "39380", + "codeCommune": "39249", + "libelleAcheminement": "GERMIGNEY", + "nomCommune": "GERMIGNEY" }, { - "codePostal": "16110", - "codeCommune": "16379", - "libelleAcheminement": "TAPONNAT FLEURIGNAC", - "nomCommune": "TAPONNAT FLEURIGNAC" + "codePostal": "39570", + "codeCommune": "39251", + "libelleAcheminement": "GEVINGEY", + "nomCommune": "GEVINGEY" }, { - "codePostal": "16360", - "codeCommune": "16384", - "libelleAcheminement": "TOUVERAC", - "nomCommune": "TOUVERAC" + "codePostal": "39150", + "codeCommune": "39258", + "libelleAcheminement": "GRANDE RIVIERE CHATEAU", + "nomCommune": "GRANDE RIVIERE CHATEAU" }, { - "codePostal": "16600", - "codeCommune": "16385", - "libelleAcheminement": "TOUVRE", - "nomCommune": "TOUVRE" + "codePostal": "39320", + "codeCommune": "39261", + "libelleAcheminement": "GRAYE ET CHARNAY", + "nomCommune": "GRAYE ET CHARNAY" }, { - "codePostal": "16200", - "codeCommune": "16387", - "libelleAcheminement": "TRIAC LAUTRAIT", - "nomCommune": "TRIAC LAUTRAIT" + "codePostal": "39110", + "codeCommune": "39268", + "libelleAcheminement": "IVREY", + "nomCommune": "IVREY" }, { - "codePostal": "16120", - "codeCommune": "16402", - "libelleAcheminement": "VIBRAC", - "nomCommune": "VIBRAC" + "codePostal": "39210", + "codeCommune": "39272", + "libelleAcheminement": "LADOYE SUR SEILLE", + "nomCommune": "LADOYE SUR SEILLE" }, { - "codePostal": "16220", - "codeCommune": "16406", - "libelleAcheminement": "MOULINS SUR TARDOIRE", - "nomCommune": "MOULINS SUR TARDOIRE" + "codePostal": "01410", + "codeCommune": "39274", + "libelleAcheminement": "LAJOUX", + "nomCommune": "LAJOUX" }, { - "codePostal": "17123", - "codeCommune": "17004", - "libelleAcheminement": "ILE D AIX", - "nomCommune": "ILE D AIX" + "codePostal": "39140", + "codeCommune": "39279", + "libelleAcheminement": "LARNAUD", + "nomCommune": "LARNAUD" }, { - "codePostal": "17770", - "codeCommune": "17023", - "libelleAcheminement": "AUJAC", - "nomCommune": "AUJAC" + "codePostal": "39250", + "codeCommune": "39282", + "libelleAcheminement": "LA LATETTE", + "nomCommune": "LA LATETTE" }, { - "codePostal": "17470", - "codeCommune": "17024", - "libelleAcheminement": "AULNAY", - "nomCommune": "AULNAY" + "codePostal": "39170", + "codeCommune": "39286", + "libelleAcheminement": "LAVANS LES ST CLAUDE", + "nomCommune": "LAVANS LES ST CLAUDE" }, { - "codePostal": "17440", - "codeCommune": "17028", - "libelleAcheminement": "AYTRE", - "nomCommune": "AYTRE" + "codePostal": "39170", + "codeCommune": "39286", + "libelleAcheminement": "LAVANS LES ST CLAUDE", + "nomCommune": "LAVANS LES ST CLAUDE" }, { - "codePostal": "17160", - "codeCommune": "17031", - "libelleAcheminement": "BALLANS", - "nomCommune": "BALLANS" + "codePostal": "39170", + "codeCommune": "39286", + "libelleAcheminement": "LAVANS LES ST CLAUDE", + "nomCommune": "LAVANS LES ST CLAUDE" }, { - "codePostal": "17620", - "codeCommune": "17036", - "libelleAcheminement": "BEAUGEAY", - "nomCommune": "BEAUGEAY" + "codePostal": "39210", + "codeCommune": "39288", + "libelleAcheminement": "LAVIGNY", + "nomCommune": "LAVIGNY" }, { - "codePostal": "17170", - "codeCommune": "17041", - "libelleAcheminement": "BENON", - "nomCommune": "BENON" + "codePostal": "39210", + "codeCommune": "39288", + "libelleAcheminement": "LAVIGNY", + "nomCommune": "LAVIGNY" }, { - "codePostal": "17800", - "codeCommune": "17047", - "libelleAcheminement": "BIRON", - "nomCommune": "BIRON" + "codePostal": "39260", + "codeCommune": "39289", + "libelleAcheminement": "LECT", + "nomCommune": "LECT" }, { - "codePostal": "17580", - "codeCommune": "17051", - "libelleAcheminement": "LE BOIS PLAGE EN RE", - "nomCommune": "LE BOIS PLAGE EN RE" + "codePostal": "39110", + "codeCommune": "39291", + "libelleAcheminement": "LEMUY", + "nomCommune": "LEMUY" }, { - "codePostal": "17430", - "codeCommune": "17053", - "libelleAcheminement": "BORDS", - "nomCommune": "BORDS" + "codePostal": "39300", + "codeCommune": "39292", + "libelleAcheminement": "LENT", + "nomCommune": "LENT" }, { - "codePostal": "17220", - "codeCommune": "17059", - "libelleAcheminement": "BOURGNEUF", - "nomCommune": "BOURGNEUF" + "codePostal": "39250", + "codeCommune": "39298", + "libelleAcheminement": "LONGCOCHON", + "nomCommune": "LONGCOCHON" }, { - "codePostal": "17120", - "codeCommune": "17060", - "libelleAcheminement": "BOUTENAC TOUVENT", - "nomCommune": "BOUTENAC TOUVENT" + "codePostal": "39380", + "codeCommune": "39305", + "libelleAcheminement": "LA LOYE", + "nomCommune": "LA LOYE" }, { - "codePostal": "17210", - "codeCommune": "17061", - "libelleAcheminement": "BRAN", - "nomCommune": "BRAN" + "codePostal": "39270", + "codeCommune": "39314", + "libelleAcheminement": "MARNEZIA", + "nomCommune": "MARNEZIA" }, { - "codePostal": "17800", - "codeCommune": "17078", - "libelleAcheminement": "CHADENAC", - "nomCommune": "CHADENAC" + "codePostal": "39600", + "codeCommune": "39325", + "libelleAcheminement": "MESNAY", + "nomCommune": "MESNAY" }, { - "codePostal": "17890", - "codeCommune": "17079", - "libelleAcheminement": "CHAILLEVETTE", - "nomCommune": "CHAILLEVETTE" + "codePostal": "39250", + "codeCommune": "39331", + "libelleAcheminement": "MIGNOVILLARD", + "nomCommune": "MIGNOVILLARD" }, { - "codePostal": "17620", - "codeCommune": "17083", - "libelleAcheminement": "CHAMPAGNE", - "nomCommune": "CHAMPAGNE" + "codePostal": "39250", + "codeCommune": "39331", + "libelleAcheminement": "MIGNOVILLARD", + "nomCommune": "MIGNOVILLARD" }, { - "codePostal": "17480", - "codeCommune": "17093", - "libelleAcheminement": "LE CHATEAU D OLERON", - "nomCommune": "LE CHATEAU D OLERON" + "codePostal": "39800", + "codeCommune": "39336", + "libelleAcheminement": "MOLAIN", + "nomCommune": "MOLAIN" }, { - "codePostal": "17460", - "codeCommune": "17102", - "libelleAcheminement": "CHERMIGNAC", - "nomCommune": "CHERMIGNAC" + "codePostal": "39500", + "codeCommune": "39338", + "libelleAcheminement": "MOLAY", + "nomCommune": "MOLAY" }, { - "codePostal": "17360", - "codeCommune": "17113", - "libelleAcheminement": "LA CLOTTE", - "nomCommune": "LA CLOTTE" + "codePostal": "39230", + "codeCommune": "39342", + "libelleAcheminement": "MONAY", + "nomCommune": "MONAY" }, { - "codePostal": "17460", - "codeCommune": "17115", - "libelleAcheminement": "COLOMBIERS", - "nomCommune": "COLOMBIERS" + "codePostal": "39100", + "codeCommune": "39345", + "libelleAcheminement": "MONNIERES", + "nomCommune": "MONNIERES" }, { - "codePostal": "17170", - "codeCommune": "17132", - "libelleAcheminement": "CRAMCHABAN", - "nomCommune": "CRAMCHABAN" + "codePostal": "39800", + "codeCommune": "39354", + "libelleAcheminement": "MONTHOLIER", + "nomCommune": "MONTHOLIER" }, { - "codePostal": "17160", - "codeCommune": "17135", - "libelleAcheminement": "CRESSE", - "nomCommune": "CRESSE" + "codePostal": "39600", + "codeCommune": "39355", + "libelleAcheminement": "MONTIGNY LES ARSURES", + "nomCommune": "MONTIGNY LES ARSURES" }, { - "codePostal": "17330", - "codeCommune": "17137", - "libelleAcheminement": "LA CROIX COMTESSE", - "nomCommune": "LA CROIX COMTESSE" + "codePostal": "39300", + "codeCommune": "39356", + "libelleAcheminement": "MONTIGNY SUR L AIN", + "nomCommune": "MONTIGNY SUR L AIN" }, { - "codePostal": "17620", - "codeCommune": "17146", - "libelleAcheminement": "ECHILLAIS", - "nomCommune": "ECHILLAIS" + "codePostal": "39290", + "codeCommune": "39360", + "libelleAcheminement": "MONTMIREY LA VILLE", + "nomCommune": "MONTMIREY LA VILLE" }, { - "codePostal": "17510", - "codeCommune": "17149", - "libelleAcheminement": "LES EDUTS", - "nomCommune": "LES EDUTS" + "codePostal": "39290", + "codeCommune": "39361", + "libelleAcheminement": "MONTMIREY LE CHATEAU", + "nomCommune": "MONTMIREY LE CHATEAU" }, { - "codePostal": "17130", - "codeCommune": "17156", - "libelleAcheminement": "EXPIREMONT", - "nomCommune": "EXPIREMONT" + "codePostal": "39300", + "codeCommune": "39364", + "libelleAcheminement": "MONTROND", + "nomCommune": "MONTROND" }, { - "codePostal": "17350", - "codeCommune": "17157", - "libelleAcheminement": "FENIOUX", - "nomCommune": "FENIOUX" + "codePostal": "39400", + "codeCommune": "39367", + "libelleAcheminement": "MORBIER", + "nomCommune": "MORBIER" }, { - "codePostal": "17170", - "codeCommune": "17158", - "libelleAcheminement": "FERRIERES", - "nomCommune": "FERRIERES" + "codePostal": "39250", + "codeCommune": "39372", + "libelleAcheminement": "MOURNANS CHARBONNY", + "nomCommune": "MOURNANS CHARBONNY" }, { - "codePostal": "17800", - "codeCommune": "17159", - "libelleAcheminement": "FLEAC SUR SEUGNE", - "nomCommune": "FLEAC SUR SEUGNE" + "codePostal": "39310", + "codeCommune": "39373", + "libelleAcheminement": "LES MOUSSIERES", + "nomCommune": "LES MOUSSIERES" }, { - "codePostal": "17100", - "codeCommune": "17164", - "libelleAcheminement": "FONTCOUVERTE", - "nomCommune": "FONTCOUVERTE" + "codePostal": "39300", + "codeCommune": "39376", + "libelleAcheminement": "MOUTOUX", + "nomCommune": "MOUTOUX" }, { - "codePostal": "17400", - "codeCommune": "17165", - "libelleAcheminement": "FONTENET", - "nomCommune": "FONTENET" + "codePostal": "39160", + "codeCommune": "39378", + "libelleAcheminement": "LES TROIS CHATEAUX", + "nomCommune": "LES TROIS CHATEAUX" }, { - "codePostal": "17290", - "codeCommune": "17166", - "libelleAcheminement": "FORGES", - "nomCommune": "FORGES" + "codePostal": "39270", + "codeCommune": "39380", + "libelleAcheminement": "NANCUISE", + "nomCommune": "NANCUISE" }, { - "codePostal": "17250", - "codeCommune": "17171", - "libelleAcheminement": "GEAY", - "nomCommune": "GEAY" + "codePostal": "39300", + "codeCommune": "39381", + "libelleAcheminement": "LES NANS", + "nomCommune": "LES NANS" }, { - "codePostal": "17520", - "codeCommune": "17175", - "libelleAcheminement": "GERMIGNAC", - "nomCommune": "GERMIGNAC" + "codePostal": "39380", + "codeCommune": "39387", + "libelleAcheminement": "NEVY LES DOLE", + "nomCommune": "NEVY LES DOLE" }, { - "codePostal": "17170", - "codeCommune": "17182", - "libelleAcheminement": "LA GREVE SUR MIGNON", - "nomCommune": "LA GREVE SUR MIGNON" + "codePostal": "39210", + "codeCommune": "39388", + "libelleAcheminement": "NEVY SUR SEILLE", + "nomCommune": "NEVY SUR SEILLE" }, { - "codePostal": "17620", - "codeCommune": "17184", - "libelleAcheminement": "LA GRIPPERIE ST SYMPHORIEN", - "nomCommune": "LA GRIPPERIE ST SYMPHORIEN" + "codePostal": "39290", + "codeCommune": "39392", + "libelleAcheminement": "OFFLANGES", + "nomCommune": "OFFLANGES" }, { - "codePostal": "17260", - "codeCommune": "17196", - "libelleAcheminement": "JAZENNES", - "nomCommune": "JAZENNES" + "codePostal": "39270", + "codeCommune": "39394", + "libelleAcheminement": "ONOZ", + "nomCommune": "ONOZ" }, { - "codePostal": "17130", - "codeCommune": "17199", - "libelleAcheminement": "JUSSAS", - "nomCommune": "JUSSAS" + "codePostal": "39270", + "codeCommune": "39397", + "libelleAcheminement": "ORGELET", + "nomCommune": "ORGELET" }, { - "codePostal": "17470", - "codeCommune": "17206", - "libelleAcheminement": "LOIRE SUR NIE", - "nomCommune": "LOIRE SUR NIE" + "codePostal": "39350", + "codeCommune": "39402", + "libelleAcheminement": "PAGNEY", + "nomCommune": "PAGNEY" }, { - "codePostal": "17320", - "codeCommune": "17219", - "libelleAcheminement": "MARENNES HIERS BROUAGE", - "nomCommune": "MARENNES HIERS BROUAGE" + "codePostal": "39230", + "codeCommune": "39407", + "libelleAcheminement": "PASSENANS", + "nomCommune": "PASSENANS" }, { - "codePostal": "17320", - "codeCommune": "17219", - "libelleAcheminement": "MARENNES HIERS BROUAGE", - "nomCommune": "MARENNES HIERS BROUAGE" + "codePostal": "39120", + "codeCommune": "39412", + "libelleAcheminement": "PESEUX", + "nomCommune": "PESEUX" }, { - "codePostal": "17700", - "codeCommune": "17221", - "libelleAcheminement": "MARSAIS", - "nomCommune": "MARSAIS" + "codePostal": "39800", + "codeCommune": "39418", + "libelleAcheminement": "PICARREAU", + "nomCommune": "PICARREAU" }, { - "codePostal": "17490", - "codeCommune": "17223", - "libelleAcheminement": "MASSAC", - "nomCommune": "MASSAC" + "codePostal": "39800", + "codeCommune": "39426", + "libelleAcheminement": "PLASNE", + "nomCommune": "PLASNE" }, { - "codePostal": "17570", - "codeCommune": "17225", - "libelleAcheminement": "LES MATHES", - "nomCommune": "LES MATHES" + "codePostal": "39570", + "codeCommune": "39431", + "libelleAcheminement": "POIDS DE FIOLE", + "nomCommune": "POIDS DE FIOLE" }, { - "codePostal": "17600", - "codeCommune": "17228", - "libelleAcheminement": "MEDIS", - "nomCommune": "MEDIS" + "codePostal": "39800", + "codeCommune": "39434", + "libelleAcheminement": "POLIGNY", + "nomCommune": "POLIGNY" }, { - "codePostal": "17210", - "codeCommune": "17229", - "libelleAcheminement": "MERIGNAC", - "nomCommune": "MERIGNAC" + "codePostal": "39300", + "codeCommune": "39437", + "libelleAcheminement": "PONT DU NAVOY", + "nomCommune": "PONT DU NAVOY" }, { - "codePostal": "17330", - "codeCommune": "17234", - "libelleAcheminement": "MIGRE", - "nomCommune": "MIGRE" + "codePostal": "39120", + "codeCommune": "39448", + "libelleAcheminement": "RAHON", + "nomCommune": "RAHON" }, { - "codePostal": "17770", - "codeCommune": "17235", - "libelleAcheminement": "MIGRON", - "nomCommune": "MIGRON" + "codePostal": "39190", + "codeCommune": "39467", + "libelleAcheminement": "ROTALIER", + "nomCommune": "ROTALIER" }, { - "codePostal": "17270", - "codeCommune": "17241", - "libelleAcheminement": "MONTGUYON", - "nomCommune": "MONTGUYON" + "codePostal": "39270", + "codeCommune": "39468", + "libelleAcheminement": "ROTHONAY", + "nomCommune": "ROTHONAY" }, { - "codePostal": "17220", - "codeCommune": "17245", - "libelleAcheminement": "MONTROY", - "nomCommune": "MONTROY" + "codePostal": "39350", + "codeCommune": "39469", + "libelleAcheminement": "ROUFFANGE", + "nomCommune": "ROUFFANGE" }, { - "codePostal": "17500", - "codeCommune": "17249", - "libelleAcheminement": "MORTIERS", - "nomCommune": "MORTIERS" + "codePostal": "39220", + "codeCommune": "39470", + "libelleAcheminement": "LES ROUSSES", + "nomCommune": "LES ROUSSES" }, { - "codePostal": "17510", - "codeCommune": "17257", - "libelleAcheminement": "NERE", - "nomCommune": "NERE" + "codePostal": "39400", + "codeCommune": "39470", + "libelleAcheminement": "LES ROUSSES", + "nomCommune": "LES ROUSSES" }, { - "codePostal": "17270", - "codeCommune": "17260", - "libelleAcheminement": "NEUVICQ", - "nomCommune": "NEUVICQ" + "codePostal": "39190", + "codeCommune": "39474", + "libelleAcheminement": "STE AGNES", + "nomCommune": "STE AGNES" }, { - "codePostal": "17380", - "codeCommune": "17266", - "libelleAcheminement": "LES NOUILLERS", - "nomCommune": "LES NOUILLERS" + "codePostal": "39200", + "codeCommune": "39478", + "libelleAcheminement": "ST CLAUDE", + "nomCommune": "ST CLAUDE" }, { - "codePostal": "17210", - "codeCommune": "17269", - "libelleAcheminement": "ORIGNOLLES", - "nomCommune": "ORIGNOLLES" + "codePostal": "39600", + "codeCommune": "39479", + "libelleAcheminement": "ST CYR MONTMALIN", + "nomCommune": "ST CYR MONTMALIN" }, { - "codePostal": "17810", - "codeCommune": "17275", - "libelleAcheminement": "PESSINES", - "nomCommune": "PESSINES" + "codePostal": "39570", + "codeCommune": "39480", + "libelleAcheminement": "ST DIDIER", + "nomCommune": "ST DIDIER" }, { - "codePostal": "17210", - "codeCommune": "17276", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "39320", + "codeCommune": "39485", + "libelleAcheminement": "VAL SURAN", + "nomCommune": "VAL SURAN" }, { - "codePostal": "17400", - "codeCommune": "17277", - "libelleAcheminement": "ESSOUVERT", - "nomCommune": "ESSOUVERT" + "codePostal": "39320", + "codeCommune": "39485", + "libelleAcheminement": "VAL SURAN", + "nomCommune": "VAL SURAN" }, { - "codePostal": "17350", - "codeCommune": "17285", - "libelleAcheminement": "PORT D ENVAUX", - "nomCommune": "PORT D ENVAUX" + "codePostal": "39170", + "codeCommune": "39491", + "libelleAcheminement": "COTEAUX DU LIZON", + "nomCommune": "COTEAUX DU LIZON" }, { - "codePostal": "17210", - "codeCommune": "17287", - "libelleAcheminement": "POUILLAC", - "nomCommune": "POUILLAC" + "codePostal": "39570", + "codeCommune": "39492", + "libelleAcheminement": "ST MAUR", + "nomCommune": "ST MAUR" }, { - "codePostal": "17380", - "codeCommune": "17292", - "libelleAcheminement": "PUY DU LAC", - "nomCommune": "PUY DU LAC" + "codePostal": "39130", + "codeCommune": "39493", + "libelleAcheminement": "ST MAURICE CRILLAT", + "nomCommune": "ST MAURICE CRILLAT" }, { - "codePostal": "17500", - "codeCommune": "17295", - "libelleAcheminement": "REAUX SUR TREFLE", - "nomCommune": "REAUX SUR TREFLE" + "codePostal": "39700", + "codeCommune": "39498", + "libelleAcheminement": "SALANS", + "nomCommune": "SALANS" }, { - "codePostal": "17000", - "codeCommune": "17300", - "libelleAcheminement": "LA ROCHELLE", - "nomCommune": "LA ROCHELLE" + "codePostal": "39380", + "codeCommune": "39502", + "libelleAcheminement": "SANTANS", + "nomCommune": "SANTANS" }, { - "codePostal": "17600", - "codeCommune": "17307", - "libelleAcheminement": "SABLONCEAUX", - "nomCommune": "SABLONCEAUX" + "codePostal": "39270", + "codeCommune": "39504", + "libelleAcheminement": "SARROGNA", + "nomCommune": "SARROGNA" }, { - "codePostal": "17150", - "codeCommune": "17312", - "libelleAcheminement": "ST BONNET SUR GIRONDE", - "nomCommune": "ST BONNET SUR GIRONDE" + "codePostal": "39130", + "codeCommune": "39518", + "libelleAcheminement": "SONGESON", + "nomCommune": "SONGESON" }, { - "codePostal": "17770", - "codeCommune": "17313", - "libelleAcheminement": "ST BRIS DES BOIS", - "nomCommune": "ST BRIS DES BOIS" + "codePostal": "39130", + "codeCommune": "39519", + "libelleAcheminement": "SOUCIA", + "nomCommune": "SOUCIA" }, { - "codePostal": "17150", - "codeCommune": "17324", - "libelleAcheminement": "ST DIZANT DU BOIS", - "nomCommune": "ST DIZANT DU BOIS" + "codePostal": "39380", + "codeCommune": "39520", + "libelleAcheminement": "SOUVANS", + "nomCommune": "SOUVANS" }, { - "codePostal": "17520", - "codeCommune": "17326", - "libelleAcheminement": "ST EUGENE", - "nomCommune": "ST EUGENE" + "codePostal": "39120", + "codeCommune": "39525", + "libelleAcheminement": "TASSENIERES", + "nomCommune": "TASSENIERES" }, { - "codePostal": "17240", - "codeCommune": "17332", - "libelleAcheminement": "ST GEORGES ANTIGNAC", - "nomCommune": "ST GEORGES ANTIGNAC" + "codePostal": "39270", + "codeCommune": "39534", + "libelleAcheminement": "LA TOUR DU MEIX", + "nomCommune": "LA TOUR DU MEIX" }, { - "codePostal": "17810", - "codeCommune": "17336", - "libelleAcheminement": "ST GEORGES DES COTEAUX", - "nomCommune": "ST GEORGES DES COTEAUX" + "codePostal": "39570", + "codeCommune": "39537", + "libelleAcheminement": "TRENAL", + "nomCommune": "TRENAL" }, { - "codePostal": "17190", - "codeCommune": "17337", - "libelleAcheminement": "ST GEORGES D OLERON", - "nomCommune": "ST GEORGES D OLERON" + "codePostal": "39570", + "codeCommune": "39550", + "libelleAcheminement": "VERGES", + "nomCommune": "VERGES" }, { - "codePostal": "17190", - "codeCommune": "17337", - "libelleAcheminement": "ST GEORGES D OLERON", - "nomCommune": "ST GEORGES D OLERON" + "codePostal": "39800", + "codeCommune": "39568", + "libelleAcheminement": "VILLERSERINE", + "nomCommune": "VILLERSERINE" }, { - "codePostal": "17190", - "codeCommune": "17337", - "libelleAcheminement": "ST GEORGES D OLERON", - "nomCommune": "ST GEORGES D OLERON" + "codePostal": "39600", + "codeCommune": "39572", + "libelleAcheminement": "VILLETTE LES ARBOIS", + "nomCommune": "VILLETTE LES ARBOIS" }, { - "codePostal": "17190", - "codeCommune": "17337", - "libelleAcheminement": "ST GEORGES D OLERON", - "nomCommune": "ST GEORGES D OLERON" + "codePostal": "39230", + "codeCommune": "39575", + "libelleAcheminement": "LE VILLEY", + "nomCommune": "LE VILLEY" }, { - "codePostal": "17770", - "codeCommune": "17344", - "libelleAcheminement": "ST HILAIRE DE VILLEFRANCHE", - "nomCommune": "ST HILAIRE DE VILLEFRANCHE" + "codePostal": "39190", + "codeCommune": "39576", + "libelleAcheminement": "VAL SONNETTE", + "nomCommune": "VAL SONNETTE" }, { - "codePostal": "17770", - "codeCommune": "17344", - "libelleAcheminement": "ST HILAIRE DE VILLEFRANCHE", - "nomCommune": "ST HILAIRE DE VILLEFRANCHE" + "codePostal": "39190", + "codeCommune": "39576", + "libelleAcheminement": "VAL SONNETTE", + "nomCommune": "VAL SONNETTE" }, { - "codePostal": "17400", - "codeCommune": "17350", - "libelleAcheminement": "ST JULIEN DE L ESCAP", - "nomCommune": "ST JULIEN DE L ESCAP" + "codePostal": "39230", + "codeCommune": "39577", + "libelleAcheminement": "VINCENT FROIDEVILLE", + "nomCommune": "VINCENT FROIDEVILLE" }, { - "codePostal": "17150", - "codeCommune": "17362", - "libelleAcheminement": "ST MARTIAL DE MIRAMBEAU", - "nomCommune": "ST MARTIAL DE MIRAMBEAU" + "codePostal": "39240", + "codeCommune": "39583", + "libelleAcheminement": "VOSBLES VALFIN", + "nomCommune": "VOSBLES VALFIN" }, { - "codePostal": "17220", - "codeCommune": "17373", - "libelleAcheminement": "ST MEDARD D AUNIS", - "nomCommune": "ST MEDARD D AUNIS" + "codePostal": "40150", + "codeCommune": "40004", + "libelleAcheminement": "ANGRESSE", + "nomCommune": "ANGRESSE" }, { - "codePostal": "17210", - "codeCommune": "17378", - "libelleAcheminement": "ST PALAIS DE NEGRIGNAC", - "nomCommune": "ST PALAIS DE NEGRIGNAC" + "codePostal": "40320", + "codeCommune": "40005", + "libelleAcheminement": "ARBOUCAVE", + "nomCommune": "ARBOUCAVE" }, { - "codePostal": "17250", - "codeCommune": "17387", - "libelleAcheminement": "ST PORCHAIRE", - "nomCommune": "ST PORCHAIRE" + "codePostal": "40310", + "codeCommune": "40015", + "libelleAcheminement": "ARX", + "nomCommune": "ARX" }, { - "codePostal": "17220", - "codeCommune": "17391", - "libelleAcheminement": "ST ROGATIEN", - "nomCommune": "ST ROGATIEN" + "codePostal": "40500", + "codeCommune": "40017", + "libelleAcheminement": "AUDIGNON", + "nomCommune": "AUDIGNON" }, { - "codePostal": "17350", - "codeCommune": "17397", - "libelleAcheminement": "ST SAVINIEN", - "nomCommune": "ST SAVINIEN" + "codePostal": "40200", + "codeCommune": "40019", + "libelleAcheminement": "AUREILHAN", + "nomCommune": "AUREILHAN" }, { - "codePostal": "17800", - "codeCommune": "17400", - "libelleAcheminement": "ST SEVER DE SAINTONGE", - "nomCommune": "ST SEVER DE SAINTONGE" + "codePostal": "40310", + "codeCommune": "40030", + "libelleAcheminement": "BAUDIGNAN", + "nomCommune": "BAUDIGNAN" }, { - "codePostal": "17700", - "codeCommune": "17434", - "libelleAcheminement": "SURGERES", - "nomCommune": "SURGERES" + "codePostal": "40120", + "codeCommune": "40033", + "libelleAcheminement": "BELIS", + "nomCommune": "BELIS" }, { - "codePostal": "17170", - "codeCommune": "17439", - "libelleAcheminement": "TAUGON", - "nomCommune": "TAUGON" + "codePostal": "40180", + "codeCommune": "40035", + "libelleAcheminement": "BENESSE LES DAX", + "nomCommune": "BENESSE LES DAX" }, { - "codePostal": "17400", - "codeCommune": "17440", - "libelleAcheminement": "TERNANT", - "nomCommune": "TERNANT" + "codePostal": "40250", + "codeCommune": "40038", + "libelleAcheminement": "BERGOUEY", + "nomCommune": "BERGOUEY" }, { - "codePostal": "17120", - "codeCommune": "17442", - "libelleAcheminement": "THAIMS", - "nomCommune": "THAIMS" + "codePostal": "40700", + "codeCommune": "40041", + "libelleAcheminement": "BEYRIES", + "nomCommune": "BEYRIES" }, { - "codePostal": "17250", - "codeCommune": "17453", - "libelleAcheminement": "TRIZAY", - "nomCommune": "TRIZAY" + "codePostal": "40420", + "codeCommune": "40056", + "libelleAcheminement": "BROCAS", + "nomCommune": "BROCAS" }, { - "codePostal": "17460", - "codeCommune": "17460", - "libelleAcheminement": "VARZAY", - "nomCommune": "VARZAY" + "codePostal": "40300", + "codeCommune": "40059", + "libelleAcheminement": "CAGNOTTE", + "nomCommune": "CAGNOTTE" }, { - "codePostal": "17260", - "codeCommune": "17469", - "libelleAcheminement": "VILLARS EN PONS", - "nomCommune": "VILLARS EN PONS" + "codePostal": "40430", + "codeCommune": "40060", + "libelleAcheminement": "CALLEN", + "nomCommune": "CALLEN" }, { - "codePostal": "17340", - "codeCommune": "17483", - "libelleAcheminement": "YVES", - "nomCommune": "YVES" + "codePostal": "40090", + "codeCommune": "40062", + "libelleAcheminement": "CAMPET ET LAMOLERE", + "nomCommune": "CAMPET ET LAMOLERE" }, { - "codePostal": "17340", - "codeCommune": "17483", - "libelleAcheminement": "YVES", - "nomCommune": "YVES" + "codePostal": "40130", + "codeCommune": "40065", + "libelleAcheminement": "CAPBRETON", + "nomCommune": "CAPBRETON" }, { - "codePostal": "18250", - "codeCommune": "18001", - "libelleAcheminement": "ACHERES", - "nomCommune": "ACHERES" + "codePostal": "40400", + "codeCommune": "40066", + "libelleAcheminement": "CARCARES STE CROIX", + "nomCommune": "CARCARES STE CROIX" }, { - "codePostal": "18110", - "codeCommune": "18004", - "libelleAcheminement": "ALLOGNY", - "nomCommune": "ALLOGNY" + "codePostal": "40700", + "codeCommune": "40069", + "libelleAcheminement": "CASTAIGNOS SOUSLENS", + "nomCommune": "CASTAIGNOS SOUSLENS" }, { - "codePostal": "18150", - "codeCommune": "18007", - "libelleAcheminement": "APREMONT SUR ALLIER", - "nomCommune": "APREMONT SUR ALLIER" + "codePostal": "40270", + "codeCommune": "40070", + "libelleAcheminement": "CASTANDET", + "nomCommune": "CASTANDET" }, { - "codePostal": "18200", - "codeCommune": "18009", - "libelleAcheminement": "ARCOMPS", - "nomCommune": "ARCOMPS" + "codePostal": "40320", + "codeCommune": "40072", + "libelleAcheminement": "CASTELNAU TURSAN", + "nomCommune": "CASTELNAU TURSAN" }, { - "codePostal": "18170", - "codeCommune": "18010", - "libelleAcheminement": "ARDENAIS", - "nomCommune": "ARDENAIS" + "codePostal": "40500", + "codeCommune": "40076", + "libelleAcheminement": "CAUNA", + "nomCommune": "CAUNA" }, { - "codePostal": "18140", - "codeCommune": "18012", - "libelleAcheminement": "ARGENVIERES", - "nomCommune": "ARGENVIERES" + "codePostal": "40700", + "codeCommune": "40079", + "libelleAcheminement": "CAZALIS", + "nomCommune": "CAZALIS" }, { - "codePostal": "18600", - "codeCommune": "18017", - "libelleAcheminement": "AUGY SUR AUBOIS", - "nomCommune": "AUGY SUR AUBOIS" + "codePostal": "40270", + "codeCommune": "40080", + "libelleAcheminement": "CAZERES SUR L ADOUR", + "nomCommune": "CAZERES SUR L ADOUR" }, { - "codePostal": "18520", - "codeCommune": "18027", - "libelleAcheminement": "BENGY SUR CRAON", - "nomCommune": "BENGY SUR CRAON" + "codePostal": "40240", + "codeCommune": "40087", + "libelleAcheminement": "CREON D ARMAGNAC", + "nomCommune": "CREON D ARMAGNAC" }, { - "codePostal": "18500", - "codeCommune": "18028", - "libelleAcheminement": "BERRY BOUY", - "nomCommune": "BERRY BOUY" + "codePostal": "40360", + "codeCommune": "40090", + "libelleAcheminement": "DONZACQ", + "nomCommune": "DONZACQ" }, { - "codePostal": "18410", - "codeCommune": "18030", - "libelleAcheminement": "BLANCAFORT", - "nomCommune": "BLANCAFORT" + "codePostal": "40500", + "codeCommune": "40098", + "libelleAcheminement": "EYRES MONCUBE", + "nomCommune": "EYRES MONCUBE" }, { - "codePostal": "18200", - "codeCommune": "18034", - "libelleAcheminement": "BOUZAIS", - "nomCommune": "BOUZAIS" + "codePostal": "40160", + "codeCommune": "40108", + "libelleAcheminement": "GASTES", + "nomCommune": "GASTES" }, { - "codePostal": "18410", - "codeCommune": "18037", - "libelleAcheminement": "BRINON SUR SAULDRE", - "nomCommune": "BRINON SUR SAULDRE" + "codePostal": "40320", + "codeCommune": "40110", + "libelleAcheminement": "GEAUNE", + "nomCommune": "GEAUNE" }, { - "codePostal": "18130", - "codeCommune": "18040", - "libelleAcheminement": "BUSSY", - "nomCommune": "BUSSY" + "codePostal": "40180", + "codeCommune": "40113", + "libelleAcheminement": "GOOS", + "nomCommune": "GOOS" }, { - "codePostal": "18160", - "codeCommune": "18043", - "libelleAcheminement": "LA CELLE CONDE", - "nomCommune": "LA CELLE CONDE" + "codePostal": "40700", + "codeCommune": "40119", + "libelleAcheminement": "HAGETMAU", + "nomCommune": "HAGETMAU" }, { - "codePostal": "18140", - "codeCommune": "18049", - "libelleAcheminement": "LA CHAPELLE MONTLINARD", - "nomCommune": "LA CHAPELLE MONTLINARD" + "codePostal": "40990", + "codeCommune": "40123", + "libelleAcheminement": "HERM", + "nomCommune": "HERM" }, { - "codePostal": "18140", - "codeCommune": "18053", - "libelleAcheminement": "CHARENTONNAY", - "nomCommune": "CHARENTONNAY" + "codePostal": "40420", + "codeCommune": "40135", + "libelleAcheminement": "LABRIT", + "nomCommune": "LABRIT" }, { - "codePostal": "18800", - "codeCommune": "18056", - "libelleAcheminement": "CHASSY", - "nomCommune": "CHASSY" + "codePostal": "40320", + "codeCommune": "40136", + "libelleAcheminement": "LACAJUNTE", + "nomCommune": "LACAJUNTE" }, { - "codePostal": "18370", - "codeCommune": "18057", - "libelleAcheminement": "CHATEAUMEILLANT", - "nomCommune": "CHATEAUMEILLANT" + "codePostal": "40800", + "codeCommune": "40146", + "libelleAcheminement": "LATRILLE", + "nomCommune": "LATRILLE" }, { - "codePostal": "18190", - "codeCommune": "18058", - "libelleAcheminement": "CHATEAUNEUF SUR CHER", - "nomCommune": "CHATEAUNEUF SUR CHER" + "codePostal": "40210", + "codeCommune": "40163", + "libelleAcheminement": "LUE", + "nomCommune": "LUE" }, { - "codePostal": "18190", - "codeCommune": "18063", - "libelleAcheminement": "CHAVANNES", - "nomCommune": "CHAVANNES" + "codePostal": "40410", + "codeCommune": "40171", + "libelleAcheminement": "MANO", + "nomCommune": "MANO" }, { - "codePostal": "18120", - "codeCommune": "18064", - "libelleAcheminement": "CHERY", - "nomCommune": "CHERY" + "codePostal": "40330", + "codeCommune": "40173", + "libelleAcheminement": "MARPAPS", + "nomCommune": "MARPAPS" }, { - "codePostal": "18410", - "codeCommune": "18067", - "libelleAcheminement": "CLEMONT", - "nomCommune": "CLEMONT" + "codePostal": "40990", + "codeCommune": "40179", + "libelleAcheminement": "MEES", + "nomCommune": "MEES" }, { - "codePostal": "18260", - "codeCommune": "18070", - "libelleAcheminement": "CONCRESSAULT", - "nomCommune": "CONCRESSAULT" + "codePostal": "40170", + "codeCommune": "40182", + "libelleAcheminement": "MEZOS", + "nomCommune": "MEZOS" }, { - "codePostal": "18130", - "codeCommune": "18071", - "libelleAcheminement": "CONTRES", - "nomCommune": "CONTRES" + "codePostal": "40000", + "codeCommune": "40192", + "libelleAcheminement": "MONT DE MARSAN", + "nomCommune": "MONT DE MARSAN" }, { - "codePostal": "18210", - "codeCommune": "18076", - "libelleAcheminement": "COUST", - "nomCommune": "COUST" + "codePostal": "40500", + "codeCommune": "40195", + "libelleAcheminement": "MONTGAILLARD", + "nomCommune": "MONTGAILLARD" }, { - "codePostal": "18340", - "codeCommune": "18081", - "libelleAcheminement": "CROSSES", - "nomCommune": "CROSSES" + "codePostal": "40290", + "codeCommune": "40199", + "libelleAcheminement": "MOUSCARDES", + "nomCommune": "MOUSCARDES" }, { - "codePostal": "18260", - "codeCommune": "18084", - "libelleAcheminement": "DAMPIERRE EN CROT", - "nomCommune": "DAMPIERRE EN CROT" + "codePostal": "40250", + "codeCommune": "40201", + "libelleAcheminement": "MUGRON", + "nomCommune": "MUGRON" }, { - "codePostal": "18310", - "codeCommune": "18085", - "libelleAcheminement": "DAMPIERRE EN GRACAY", - "nomCommune": "DAMPIERRE EN GRACAY" + "codePostal": "40330", + "codeCommune": "40203", + "libelleAcheminement": "NASSIET", + "nomCommune": "NASSIET" }, { - "codePostal": "18200", - "codeCommune": "18091", - "libelleAcheminement": "FARGES ALLICHAMPS", - "nomCommune": "FARGES ALLICHAMPS" + "codePostal": "40180", + "codeCommune": "40207", + "libelleAcheminement": "OEYRELUY", + "nomCommune": "OEYRELUY" }, { - "codePostal": "18360", - "codeCommune": "18093", - "libelleAcheminement": "FAVERDINES", - "nomCommune": "FAVERDINES" + "codePostal": "40230", + "codeCommune": "40213", + "libelleAcheminement": "ORX", + "nomCommune": "ORX" }, { - "codePostal": "18110", - "codeCommune": "18097", - "libelleAcheminement": "FUSSY", - "nomCommune": "FUSSY" + "codePostal": "40320", + "codeCommune": "40219", + "libelleAcheminement": "PAYROS CAZAUTETS", + "nomCommune": "PAYROS CAZAUTETS" }, { - "codePostal": "18140", - "codeCommune": "18099", - "libelleAcheminement": "GARIGNY", - "nomCommune": "GARIGNY" + "codePostal": "40320", + "codeCommune": "40220", + "libelleAcheminement": "PECORADE", + "nomCommune": "PECORADE" }, { - "codePostal": "18200", - "codeCommune": "18107", - "libelleAcheminement": "LA GROUTTE", - "nomCommune": "LA GROUTTE" + "codePostal": "40320", + "codeCommune": "40225", + "libelleAcheminement": "PHILONDENX", + "nomCommune": "PHILONDENX" }, { - "codePostal": "18250", - "codeCommune": "18109", - "libelleAcheminement": "HENRICHEMONT", - "nomCommune": "HENRICHEMONT" + "codePostal": "40300", + "codeCommune": "40231", + "libelleAcheminement": "PORT DE LANNE", + "nomCommune": "PORT DE LANNE" }, { - "codePostal": "18380", - "codeCommune": "18115", - "libelleAcheminement": "IVOY LE PRE", - "nomCommune": "IVOY LE PRE" + "codePostal": "40350", + "codeCommune": "40233", + "libelleAcheminement": "POUILLON", + "nomCommune": "POUILLON" }, { - "codePostal": "18300", - "codeCommune": "18116", - "libelleAcheminement": "JALOGNES", - "nomCommune": "JALOGNES" + "codePostal": "40310", + "codeCommune": "40242", + "libelleAcheminement": "RIMBEZ ET BAUDIETS", + "nomCommune": "RIMBEZ ET BAUDIETS" }, { - "codePostal": "18320", - "codeCommune": "18118", - "libelleAcheminement": "JOUET SUR L AUBOIS", - "nomCommune": "JOUET SUR L AUBOIS" + "codePostal": "40250", + "codeCommune": "40249", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "18350", - "codeCommune": "18131", - "libelleAcheminement": "LUGNY BOURBONNAIS", - "nomCommune": "LUGNY BOURBONNAIS" + "codePostal": "40700", + "codeCommune": "40252", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "18400", - "codeCommune": "18133", - "libelleAcheminement": "LUNERY", - "nomCommune": "LUNERY" + "codePostal": "40390", + "codeCommune": "40268", + "libelleAcheminement": "ST LAURENT DE GOSSE", + "nomCommune": "ST LAURENT DE GOSSE" }, { - "codePostal": "18170", - "codeCommune": "18135", - "libelleAcheminement": "MAISONNAIS", - "nomCommune": "MAISONNAIS" + "codePostal": "40090", + "codeCommune": "40274", + "libelleAcheminement": "ST MARTIN D ONEY", + "nomCommune": "ST MARTIN D ONEY" }, { - "codePostal": "18500", - "codeCommune": "18138", - "libelleAcheminement": "MARMAGNE", - "nomCommune": "MARMAGNE" + "codePostal": "40090", + "codeCommune": "40280", + "libelleAcheminement": "ST PERDON", + "nomCommune": "ST PERDON" }, { - "codePostal": "18120", - "codeCommune": "18140", - "libelleAcheminement": "MASSAY", - "nomCommune": "MASSAY" + "codePostal": "40460", + "codeCommune": "40287", + "libelleAcheminement": "SANGUINET", + "nomCommune": "SANGUINET" }, { - "codePostal": "18500", - "codeCommune": "18141", - "libelleAcheminement": "MEHUN SUR YEVRE", - "nomCommune": "MEHUN SUR YEVRE" + "codePostal": "40230", + "codeCommune": "40292", + "libelleAcheminement": "SAUBRIGUES", + "nomCommune": "SAUBRIGUES" }, { - "codePostal": "18200", - "codeCommune": "18142", - "libelleAcheminement": "MEILLANT", - "nomCommune": "MEILLANT" + "codePostal": "40180", + "codeCommune": "40293", + "libelleAcheminement": "SAUBUSSE", + "nomCommune": "SAUBUSSE" }, { - "codePostal": "18160", - "codeCommune": "18152", - "libelleAcheminement": "MONTLOUIS", - "nomCommune": "MONTLOUIS" + "codePostal": "40700", + "codeCommune": "40299", + "libelleAcheminement": "SERRESLOUS ET ARRIBANS", + "nomCommune": "SERRESLOUS ET ARRIBANS" }, { - "codePostal": "18250", - "codeCommune": "18163", - "libelleAcheminement": "NEUVY DEUX CLOCHERS", - "nomCommune": "NEUVY DEUX CLOCHERS" + "codePostal": "40180", + "codeCommune": "40300", + "libelleAcheminement": "SEYRESSE", + "nomCommune": "SEYRESSE" }, { - "codePostal": "18390", - "codeCommune": "18166", - "libelleAcheminement": "NOHANT EN GOUT", - "nomCommune": "NOHANT EN GOUT" + "codePostal": "40180", + "codeCommune": "40301", + "libelleAcheminement": "SIEST", + "nomCommune": "SIEST" }, { - "codePostal": "18700", - "codeCommune": "18170", - "libelleAcheminement": "OIZON", - "nomCommune": "OIZON" + "codePostal": "40210", + "codeCommune": "40303", + "libelleAcheminement": "SOLFERINO", + "nomCommune": "SOLFERINO" }, { - "codePostal": "18220", - "codeCommune": "18176", - "libelleAcheminement": "PARASSY", - "nomCommune": "PARASSY" + "codePostal": "40170", + "codeCommune": "40322", + "libelleAcheminement": "UZA", + "nomCommune": "UZA" }, { - "codePostal": "18130", - "codeCommune": "18177", - "libelleAcheminement": "PARNAY", - "nomCommune": "PARNAY" + "codePostal": "40560", + "codeCommune": "40326", + "libelleAcheminement": "VIELLE ST GIRONS", + "nomCommune": "VIELLE ST GIRONS" }, { - "codePostal": "18140", - "codeCommune": "18184", - "libelleAcheminement": "PRECY", - "nomCommune": "PRECY" + "codePostal": "41310", + "codeCommune": "41001", + "libelleAcheminement": "AMBLOY", + "nomCommune": "AMBLOY" }, { - "codePostal": "18110", - "codeCommune": "18189", - "libelleAcheminement": "QUANTILLY", - "nomCommune": "QUANTILLY" + "codePostal": "41400", + "codeCommune": "41002", + "libelleAcheminement": "ANGE", + "nomCommune": "ANGE" }, { - "codePostal": "18120", - "codeCommune": "18190", - "libelleAcheminement": "QUINCY", - "nomCommune": "QUINCY" + "codePostal": "41500", + "codeCommune": "41008", + "libelleAcheminement": "AVARAY", + "nomCommune": "AVARAY" }, { - "codePostal": "18270", - "codeCommune": "18192", - "libelleAcheminement": "REIGNY", - "nomCommune": "REIGNY" + "codePostal": "41100", + "codeCommune": "41010", + "libelleAcheminement": "AZE", + "nomCommune": "AZE" }, { - "codePostal": "18220", - "codeCommune": "18194", - "libelleAcheminement": "RIANS", - "nomCommune": "RIANS" + "codePostal": "41170", + "codeCommune": "41012", + "libelleAcheminement": "BAILLOU", + "nomCommune": "BAILLOU" }, { - "codePostal": "18200", - "codeCommune": "18197", - "libelleAcheminement": "ST AMAND MONTROND", - "nomCommune": "ST AMAND MONTROND" + "codePostal": "41240", + "codeCommune": "41017", + "libelleAcheminement": "BINAS", + "nomCommune": "BINAS" }, { - "codePostal": "18160", - "codeCommune": "18199", - "libelleAcheminement": "ST BAUDEL", - "nomCommune": "ST BAUDEL" + "codePostal": "41370", + "codeCommune": "41027", + "libelleAcheminement": "BRIOU", + "nomCommune": "BRIOU" }, { - "codePostal": "18230", - "codeCommune": "18205", - "libelleAcheminement": "ST DOULCHARD", - "nomCommune": "ST DOULCHARD" + "codePostal": "41120", + "codeCommune": "41029", + "libelleAcheminement": "CANDE SUR BEUVRON", + "nomCommune": "CANDE SUR BEUVRON" }, { - "codePostal": "18240", - "codeCommune": "18208", - "libelleAcheminement": "STE GEMME EN SANCERROIS", - "nomCommune": "STE GEMME EN SANCERROIS" + "codePostal": "41330", + "codeCommune": "41035", + "libelleAcheminement": "CHAMPIGNY EN BEAUCE", + "nomCommune": "CHAMPIGNY EN BEAUCE" }, { - "codePostal": "18190", - "codeCommune": "18221", - "libelleAcheminement": "ST LOUP DES CHAUMES", - "nomCommune": "ST LOUP DES CHAUMES" + "codePostal": "41290", + "codeCommune": "41037", + "libelleAcheminement": "LA CHAPELLE ENCHERIE", + "nomCommune": "LA CHAPELLE ENCHERIE" }, { - "codePostal": "18310", - "codeCommune": "18228", - "libelleAcheminement": "ST OUTRILLE", - "nomCommune": "ST OUTRILLE" + "codePostal": "41270", + "codeCommune": "41048", + "libelleAcheminement": "CHAUVIGNY DU PERCHE", + "nomCommune": "CHAUVIGNY DU PERCHE" }, { - "codePostal": "18500", - "codeCommune": "18237", - "libelleAcheminement": "STE THORETTE", - "nomCommune": "STE THORETTE" + "codePostal": "41150", + "codeCommune": "41055", + "libelleAcheminement": "VALLOIRE SUR CISSE", + "nomCommune": "VALLOIRE SUR CISSE" }, { - "codePostal": "18240", - "codeCommune": "18243", - "libelleAcheminement": "SANTRANGES", - "nomCommune": "SANTRANGES" + "codePostal": "41400", + "codeCommune": "41059", + "libelleAcheminement": "LE CONTROIS EN SOLOGNE", + "nomCommune": "LE CONTROIS EN SOLOGNE" }, { - "codePostal": "18240", - "codeCommune": "18246", - "libelleAcheminement": "SAVIGNY EN SANCERRE", - "nomCommune": "SAVIGNY EN SANCERRE" + "codePostal": "41290", + "codeCommune": "41077", + "libelleAcheminement": "EPIAIS", + "nomCommune": "EPIAIS" }, { - "codePostal": "18390", - "codeCommune": "18247", - "libelleAcheminement": "SAVIGNY EN SEPTAINE", - "nomCommune": "SAVIGNY EN SEPTAINE" + "codePostal": "41400", + "codeCommune": "41080", + "libelleAcheminement": "FAVEROLLES SUR CHER", + "nomCommune": "FAVEROLLES SUR CHER" }, { - "codePostal": "18340", - "codeCommune": "18254", - "libelleAcheminement": "SOYE EN SEPTAINE", - "nomCommune": "SOYE EN SEPTAINE" + "codePostal": "41210", + "codeCommune": "41083", + "libelleAcheminement": "LA FERTE BEAUHARNAIS", + "nomCommune": "LA FERTE BEAUHARNAIS" }, { - "codePostal": "18260", - "codeCommune": "18259", - "libelleAcheminement": "SURY ES BOIS", - "nomCommune": "SURY ES BOIS" + "codePostal": "41270", + "codeCommune": "41089", + "libelleAcheminement": "LA FONTENELLE", + "nomCommune": "LA FONTENELLE" }, { - "codePostal": "18350", - "codeCommune": "18260", - "libelleAcheminement": "TENDRON", - "nomCommune": "TENDRON" + "codePostal": "41330", + "codeCommune": "41091", + "libelleAcheminement": "FOSSE", + "nomCommune": "FOSSE" }, { - "codePostal": "18190", - "codeCommune": "18273", - "libelleAcheminement": "VENESMES", - "nomCommune": "VENESMES" + "codePostal": "41190", + "codeCommune": "41101", + "libelleAcheminement": "HERBAULT", + "nomCommune": "HERBAULT" }, { - "codePostal": "18210", - "codeCommune": "18276", - "libelleAcheminement": "VERNAIS", - "nomCommune": "VERNAIS" + "codePostal": "41800", + "codeCommune": "41102", + "libelleAcheminement": "HOUSSAY", + "nomCommune": "HOUSSAY" }, { - "codePostal": "18210", - "codeCommune": "18277", - "libelleAcheminement": "VERNEUIL", - "nomCommune": "VERNEUIL" + "codePostal": "41320", + "codeCommune": "41122", + "libelleAcheminement": "MARAY", + "nomCommune": "MARAY" }, { - "codePostal": "18160", - "codeCommune": "18283", - "libelleAcheminement": "VILLECELIN", - "nomCommune": "VILLECELIN" + "codePostal": "41100", + "codeCommune": "41131", + "libelleAcheminement": "MAZANGE", + "nomCommune": "MAZANGE" }, { - "codePostal": "18400", - "codeCommune": "18285", - "libelleAcheminement": "VILLENEUVE SUR CHER", - "nomCommune": "VILLENEUVE SUR CHER" + "codePostal": "41140", + "codeCommune": "41132", + "libelleAcheminement": "MEHERS", + "nomCommune": "MEHERS" }, { - "codePostal": "18300", - "codeCommune": "18287", - "libelleAcheminement": "VINON", - "nomCommune": "VINON" + "codePostal": "41150", + "codeCommune": "41137", + "libelleAcheminement": "MESLAND", + "nomCommune": "MESLAND" }, { - "codePostal": "18340", - "codeCommune": "18288", - "libelleAcheminement": "VORLY", - "nomCommune": "VORLY" + "codePostal": "41130", + "codeCommune": "41139", + "libelleAcheminement": "MEUSNES", + "nomCommune": "MEUSNES" }, { - "codePostal": "19240", - "codeCommune": "19005", - "libelleAcheminement": "ALLASSAC", - "nomCommune": "ALLASSAC" + "codePostal": "41190", + "codeCommune": "41142", + "libelleAcheminement": "VALENCISSE", + "nomCommune": "VALENCISSE" }, { - "codePostal": "19200", - "codeCommune": "19006", - "libelleAcheminement": "ALLEYRAT", - "nomCommune": "ALLEYRAT" + "codePostal": "41120", + "codeCommune": "41147", + "libelleAcheminement": "LES MONTILS", + "nomCommune": "LES MONTILS" }, { - "codePostal": "19190", - "codeCommune": "19013", - "libelleAcheminement": "AUBAZINES", - "nomCommune": "AUBAZINES" + "codePostal": "41800", + "codeCommune": "41149", + "libelleAcheminement": "MONTOIRE SUR LE LOIR", + "nomCommune": "MONTOIRE SUR LE LOIR" }, { - "codePostal": "19800", - "codeCommune": "19016", - "libelleAcheminement": "BAR", - "nomCommune": "BAR" + "codePostal": "41400", + "codeCommune": "41151", + "libelleAcheminement": "MONTRICHARD VAL DE CHER", + "nomCommune": "MONTRICHARD VAL DE CHER" }, { - "codePostal": "19310", - "codeCommune": "19030", - "libelleAcheminement": "BRIGNAC LA PLAINE", - "nomCommune": "BRIGNAC LA PLAINE" + "codePostal": "41210", + "codeCommune": "41152", + "libelleAcheminement": "MONTRIEUX EN SOLOGNE", + "nomCommune": "MONTRIEUX EN SOLOGNE" }, { - "codePostal": "19450", - "codeCommune": "19037", - "libelleAcheminement": "CHAMBOULIVE", - "nomCommune": "CHAMBOULIVE" + "codePostal": "41160", + "codeCommune": "41154", + "libelleAcheminement": "MOREE", + "nomCommune": "MOREE" }, { - "codePostal": "19330", - "codeCommune": "19038", - "libelleAcheminement": "CHAMEYRAT", - "nomCommune": "CHAMEYRAT" + "codePostal": "41310", + "codeCommune": "41163", + "libelleAcheminement": "NOURRAY", + "nomCommune": "NOURRAY" }, { - "codePostal": "19120", - "codeCommune": "19044", - "libelleAcheminement": "LA CHAPELLE AUX SAINTS", - "nomCommune": "LA CHAPELLE AUX SAINTS" + "codePostal": "41290", + "codeCommune": "41171", + "libelleAcheminement": "OUCQUES LA NOUVELLE", + "nomCommune": "OUCQUES LA NOUVELLE" }, { - "codePostal": "19600", - "codeCommune": "19049", - "libelleAcheminement": "CHASTEAUX", - "nomCommune": "CHASTEAUX" + "codePostal": "41160", + "codeCommune": "41172", + "libelleAcheminement": "OUZOUER LE DOYEN", + "nomCommune": "OUZOUER LE DOYEN" }, { - "codePostal": "19150", - "codeCommune": "19061", - "libelleAcheminement": "CORNIL", - "nomCommune": "CORNIL" + "codePostal": "41160", + "codeCommune": "41173", + "libelleAcheminement": "BEAUCE LA ROMAINE", + "nomCommune": "BEAUCE LA ROMAINE" }, { - "codePostal": "19360", - "codeCommune": "19063", - "libelleAcheminement": "COSNAC", - "nomCommune": "COSNAC" + "codePostal": "41160", + "codeCommune": "41173", + "libelleAcheminement": "BEAUCE LA ROMAINE", + "nomCommune": "BEAUCE LA ROMAINE" }, { - "codePostal": "19360", - "codeCommune": "19068", - "libelleAcheminement": "DAMPNIAT", - "nomCommune": "DAMPNIAT" + "codePostal": "41240", + "codeCommune": "41173", + "libelleAcheminement": "BEAUCE LA ROMAINE", + "nomCommune": "BEAUCE LA ROMAINE" }, { - "codePostal": "19250", - "codeCommune": "19071", - "libelleAcheminement": "DAVIGNAC", - "nomCommune": "DAVIGNAC" + "codePostal": "41160", + "codeCommune": "41186", + "libelleAcheminement": "RAHART", + "nomCommune": "RAHART" }, { - "codePostal": "19150", - "codeCommune": "19075", - "libelleAcheminement": "ESPAGNAC", - "nomCommune": "ESPAGNAC" + "codePostal": "41150", + "codeCommune": "41189", + "libelleAcheminement": "RILLY SUR LOIRE", + "nomCommune": "RILLY SUR LOIRE" }, { - "codePostal": "19340", - "codeCommune": "19083", - "libelleAcheminement": "FEYT", - "nomCommune": "FEYT" + "codePostal": "41100", + "codeCommune": "41190", + "libelleAcheminement": "ROCE", + "nomCommune": "ROCE" }, { - "codePostal": "19300", - "codeCommune": "19088", - "libelleAcheminement": "GRANDSAIGNE", - "nomCommune": "GRANDSAIGNE" + "codePostal": "41370", + "codeCommune": "41191", + "libelleAcheminement": "ROCHES", + "nomCommune": "ROCHES" }, { - "codePostal": "19320", - "codeCommune": "19089", - "libelleAcheminement": "GROS CHASTANG", - "nomCommune": "GROS CHASTANG" + "codePostal": "41800", + "codeCommune": "41192", + "libelleAcheminement": "LES ROCHES L EVEQUE", + "nomCommune": "LES ROCHES L EVEQUE" }, { - "codePostal": "19320", - "codeCommune": "19090", - "libelleAcheminement": "GUMOND", - "nomCommune": "GUMOND" + "codePostal": "41230", + "codeCommune": "41195", + "libelleAcheminement": "ROUGEOU", + "nomCommune": "ROUGEOU" }, { - "codePostal": "19190", - "codeCommune": "19105", - "libelleAcheminement": "LANTEUIL", - "nomCommune": "LANTEUIL" + "codePostal": "41110", + "codeCommune": "41198", + "libelleAcheminement": "ST AIGNAN", + "nomCommune": "ST AIGNAN" }, { - "codePostal": "19550", - "codeCommune": "19106", - "libelleAcheminement": "LAPLEAU", - "nomCommune": "LAPLEAU" + "codePostal": "41190", + "codeCommune": "41205", + "libelleAcheminement": "ST CYR DU GAULT", + "nomCommune": "ST CYR DU GAULT" }, { - "codePostal": "19600", - "codeCommune": "19107", - "libelleAcheminement": "LARCHE", - "nomCommune": "LARCHE" + "codePostal": "41400", + "codeCommune": "41211", + "libelleAcheminement": "ST GEORGES SUR CHER", + "nomCommune": "ST GEORGES SUR CHER" }, { - "codePostal": "19340", - "codeCommune": "19108", - "libelleAcheminement": "LAROCHE PRES FEYT", - "nomCommune": "LAROCHE PRES FEYT" + "codePostal": "41350", + "codeCommune": "41212", + "libelleAcheminement": "ST GERVAIS LA FORET", + "nomCommune": "ST GERVAIS LA FORET" }, { - "codePostal": "19160", - "codeCommune": "19110", - "libelleAcheminement": "LATRONCHE", - "nomCommune": "LATRONCHE" + "codePostal": "41310", + "codeCommune": "41213", + "libelleAcheminement": "ST GOURGON", + "nomCommune": "ST GOURGON" }, { - "codePostal": "19550", - "codeCommune": "19111", - "libelleAcheminement": "LAVAL SUR LUZEGE", - "nomCommune": "LAVAL SUR LUZEGE" + "codePostal": "41400", + "codeCommune": "41217", + "libelleAcheminement": "ST JULIEN DE CHEDON", + "nomCommune": "ST JULIEN DE CHEDON" }, { - "codePostal": "19170", - "codeCommune": "19112", - "libelleAcheminement": "LESTARDS", - "nomCommune": "LESTARDS" + "codePostal": "41240", + "codeCommune": "41219", + "libelleAcheminement": "ST LAURENT DES BOIS", + "nomCommune": "ST LAURENT DES BOIS" }, { - "codePostal": "19200", - "codeCommune": "19114", - "libelleAcheminement": "LIGNAREIX", - "nomCommune": "LIGNAREIX" + "codePostal": "41190", + "codeCommune": "41223", + "libelleAcheminement": "ST LUBIN EN VERGONNOIS", + "nomCommune": "ST LUBIN EN VERGONNOIS" }, { - "codePostal": "19470", - "codeCommune": "19118", - "libelleAcheminement": "LE LONZAC", - "nomCommune": "LE LONZAC" + "codePostal": "41300", + "codeCommune": "41241", + "libelleAcheminement": "SELLES ST DENIS", + "nomCommune": "SELLES ST DENIS" }, { - "codePostal": "19310", - "codeCommune": "19120", - "libelleAcheminement": "LOUIGNAC", - "nomCommune": "LOUIGNAC" + "codePostal": "41100", + "codeCommune": "41243", + "libelleAcheminement": "SELOMMES", + "nomCommune": "SELOMMES" }, { - "codePostal": "19360", - "codeCommune": "19123", - "libelleAcheminement": "MALEMORT", - "nomCommune": "MALEMORT" + "codePostal": "41170", + "codeCommune": "41248", + "libelleAcheminement": "COUETRON AU PERCHE", + "nomCommune": "COUETRON AU PERCHE" }, { - "codePostal": "19520", - "codeCommune": "19124", - "libelleAcheminement": "MANSAC", - "nomCommune": "MANSAC" + "codePostal": "41500", + "codeCommune": "41252", + "libelleAcheminement": "SUEVRES", + "nomCommune": "SUEVRES" }, { - "codePostal": "19250", - "codeCommune": "19130", - "libelleAcheminement": "MAUSSAC", - "nomCommune": "MAUSSAC" + "codePostal": "41120", + "codeCommune": "41266", + "libelleAcheminement": "VALAIRE", + "nomCommune": "VALAIRE" }, { - "codePostal": "19400", - "codeCommune": "19140", - "libelleAcheminement": "MONCEAUX SUR DORDOGNE", - "nomCommune": "MONCEAUX SUR DORDOGNE" + "codePostal": "41230", + "codeCommune": "41271", + "libelleAcheminement": "VERNOU EN SOLOGNE", + "nomCommune": "VERNOU EN SOLOGNE" }, { - "codePostal": "19110", - "codeCommune": "19142", - "libelleAcheminement": "MONESTIER PORT DIEU", - "nomCommune": "MONESTIER PORT DIEU" + "codePostal": "41290", + "codeCommune": "41284", + "libelleAcheminement": "VILLENEUVE FROUVILLE", + "nomCommune": "VILLENEUVE FROUVILLE" }, { - "codePostal": "19600", - "codeCommune": "19147", - "libelleAcheminement": "NESPOULS", - "nomCommune": "NESPOULS" + "codePostal": "41240", + "codeCommune": "41289", + "libelleAcheminement": "VILLERMAIN", + "nomCommune": "VILLERMAIN" }, { - "codePostal": "19380", - "codeCommune": "19149", - "libelleAcheminement": "NEUVILLE", - "nomCommune": "NEUVILLE" + "codePostal": "42660", + "codeCommune": "42017", + "libelleAcheminement": "LE BESSAT", + "nomCommune": "LE BESSAT" }, { - "codePostal": "19120", - "codeCommune": "19152", - "libelleAcheminement": "NONARDS", - "nomCommune": "NONARDS" + "codePostal": "42160", + "codeCommune": "42022", + "libelleAcheminement": "BONSON", + "nomCommune": "BONSON" }, { - "codePostal": "19130", - "codeCommune": "19153", - "libelleAcheminement": "OBJAT", - "nomCommune": "OBJAT" + "codePostal": "42260", + "codeCommune": "42030", + "libelleAcheminement": "BUSSY ALBIEUX", + "nomCommune": "BUSSY ALBIEUX" }, { - "codePostal": "19160", - "codeCommune": "19157", - "libelleAcheminement": "PALISSE", - "nomCommune": "PALISSE" + "codePostal": "42320", + "codeCommune": "42032", + "libelleAcheminement": "CELLIEU", + "nomCommune": "CELLIEU" }, { - "codePostal": "19150", - "codeCommune": "19158", - "libelleAcheminement": "PANDRIGNES", - "nomCommune": "PANDRIGNES" + "codePostal": "42170", + "codeCommune": "42042", + "libelleAcheminement": "CHAMBLES", + "nomCommune": "CHAMBLES" }, { - "codePostal": "19410", - "codeCommune": "19162", - "libelleAcheminement": "PERPEZAC LE NOIR", - "nomCommune": "PERPEZAC LE NOIR" + "codePostal": "42330", + "codeCommune": "42043", + "libelleAcheminement": "CHAMBOEUF", + "nomCommune": "CHAMBOEUF" }, { - "codePostal": "19290", - "codeCommune": "19164", - "libelleAcheminement": "PEYRELEVADE", - "nomCommune": "PEYRELEVADE" + "codePostal": "42440", + "codeCommune": "42045", + "libelleAcheminement": "LA CHAMBONIE", + "nomCommune": "LA CHAMBONIE" }, { - "codePostal": "19450", - "codeCommune": "19166", - "libelleAcheminement": "PIERREFITTE", - "nomCommune": "PIERREFITTE" + "codePostal": "42430", + "codeCommune": "42047", + "libelleAcheminement": "CHAMPOLY", + "nomCommune": "CHAMPOLY" }, { - "codePostal": "19170", - "codeCommune": "19168", - "libelleAcheminement": "PRADINES", - "nomCommune": "PRADINES" + "codePostal": "42190", + "codeCommune": "42048", + "libelleAcheminement": "CHANDON", + "nomCommune": "CHANDON" }, { - "codePostal": "19320", - "codeCommune": "19174", - "libelleAcheminement": "LA ROCHE CANILLAC", - "nomCommune": "LA ROCHE CANILLAC" + "codePostal": "42800", + "codeCommune": "42053", + "libelleAcheminement": "CHATEAUNEUF", + "nomCommune": "CHATEAUNEUF" }, { - "codePostal": "19270", - "codeCommune": "19178", - "libelleAcheminement": "SADROC", - "nomCommune": "SADROC" + "codePostal": "42560", + "codeCommune": "42060", + "libelleAcheminement": "CHENEREILLES", + "nomCommune": "CHENEREILLES" }, { - "codePostal": "19130", - "codeCommune": "19187", - "libelleAcheminement": "ST BONNET LA RIVIERE", - "nomCommune": "ST BONNET LA RIVIERE" + "codePostal": "42430", + "codeCommune": "42061", + "libelleAcheminement": "CHERIER", + "nomCommune": "CHERIER" }, { - "codePostal": "19290", - "codeCommune": "19206", - "libelleAcheminement": "ST GERMAIN LAVOLPS", - "nomCommune": "ST GERMAIN LAVOLPS" + "codePostal": "42840", + "codeCommune": "42068", + "libelleAcheminement": "COMBRE", + "nomCommune": "COMBRE" }, { - "codePostal": "19330", - "codeCommune": "19207", - "libelleAcheminement": "ST GERMAIN LES VERGNES", - "nomCommune": "ST GERMAIN LES VERGNES" + "codePostal": "42260", + "codeCommune": "42076", + "libelleAcheminement": "CREMEAUX", + "nomCommune": "CREMEAUX" }, { - "codePostal": "19500", - "codeCommune": "19217", - "libelleAcheminement": "ST JULIEN MAUMONT", - "nomCommune": "ST JULIEN MAUMONT" + "codePostal": "42310", + "codeCommune": "42078", + "libelleAcheminement": "LE CROZET", + "nomCommune": "LE CROZET" }, { - "codePostal": "19320", - "codeCommune": "19222", - "libelleAcheminement": "ST MARTIN LA MEANNE", - "nomCommune": "ST MARTIN LA MEANNE" + "codePostal": "42740", + "codeCommune": "42085", + "libelleAcheminement": "DOIZIEUX", + "nomCommune": "DOIZIEUX" }, { - "codePostal": "19170", - "codeCommune": "19226", - "libelleAcheminement": "ST MERD LES OUSSINES", - "nomCommune": "ST MERD LES OUSSINES" + "codePostal": "42360", + "codeCommune": "42090", + "libelleAcheminement": "ESSERTINES EN DONZY", + "nomCommune": "ESSERTINES EN DONZY" }, { - "codePostal": "19330", - "codeCommune": "19227", - "libelleAcheminement": "ST MEXANT", - "nomCommune": "ST MEXANT" + "codePostal": "42380", + "codeCommune": "42091", + "libelleAcheminement": "ESTIVAREILLES", + "nomCommune": "ESTIVAREILLES" }, { - "codePostal": "19160", - "codeCommune": "19228", - "libelleAcheminement": "ST PANTALEON DE LAPLEAU", - "nomCommune": "ST PANTALEON DE LAPLEAU" + "codePostal": "42580", + "codeCommune": "42092", + "libelleAcheminement": "L ETRAT", + "nomCommune": "L ETRAT" }, { - "codePostal": "19200", - "codeCommune": "19232", - "libelleAcheminement": "ST PARDOUX LE NEUF", - "nomCommune": "ST PARDOUX LE NEUF" + "codePostal": "42140", + "codeCommune": "42100", + "libelleAcheminement": "LA GIMOND", + "nomCommune": "LA GIMOND" }, { - "codePostal": "19700", - "codeCommune": "19240", - "libelleAcheminement": "ST SALVADOUR", - "nomCommune": "ST SALVADOUR" + "codePostal": "42320", + "codeCommune": "42103", + "libelleAcheminement": "LA GRAND CROIX", + "nomCommune": "LA GRAND CROIX" }, { - "codePostal": "19290", - "codeCommune": "19241", - "libelleAcheminement": "ST SETIERS", - "nomCommune": "ST SETIERS" + "codePostal": "42152", + "codeCommune": "42110", + "libelleAcheminement": "L HORME", + "nomCommune": "L HORME" }, { - "codePostal": "19200", - "codeCommune": "19247", - "libelleAcheminement": "ST VICTOUR", - "nomCommune": "ST VICTOUR" + "codePostal": "42660", + "codeCommune": "42115", + "libelleAcheminement": "JONZIEUX", + "nomCommune": "JONZIEUX" }, { - "codePostal": "19300", - "codeCommune": "19249", - "libelleAcheminement": "ST YRIEIX LE DEJALAT", - "nomCommune": "ST YRIEIX LE DEJALAT" + "codePostal": "42600", + "codeCommune": "42121", + "libelleAcheminement": "LERIGNEUX", + "nomCommune": "LERIGNEUX" }, { - "codePostal": "19800", - "codeCommune": "19251", - "libelleAcheminement": "SARRAN", - "nomCommune": "SARRAN" + "codePostal": "42260", + "codeCommune": "42125", + "libelleAcheminement": "LURE", + "nomCommune": "LURE" }, { - "codePostal": "19110", - "codeCommune": "19252", - "libelleAcheminement": "SARROUX ST JULIEN", - "nomCommune": "SARROUX ST JULIEN" + "codePostal": "42380", + "codeCommune": "42126", + "libelleAcheminement": "LURIECQ", + "nomCommune": "LURIECQ" }, { - "codePostal": "19230", - "codeCommune": "19254", - "libelleAcheminement": "SEGUR LE CHATEAU", - "nomCommune": "SEGUR LE CHATEAU" + "codePostal": "42130", + "codeCommune": "42136", + "libelleAcheminement": "MARCOUX", + "nomCommune": "MARCOUX" }, { - "codePostal": "19300", - "codeCommune": "19263", - "libelleAcheminement": "SOUDEILLES", - "nomCommune": "SOUDEILLES" + "codePostal": "42750", + "codeCommune": "42141", + "libelleAcheminement": "MARS", + "nomCommune": "MARS" }, { - "codePostal": "19170", - "codeCommune": "19268", - "libelleAcheminement": "TOY VIAM", - "nomCommune": "TOY VIAM" + "codePostal": "42600", + "codeCommune": "42147", + "libelleAcheminement": "MONTBRISON", + "nomCommune": "MONTBRISON" }, { - "codePostal": "19200", - "codeCommune": "19275", - "libelleAcheminement": "USSEL", - "nomCommune": "USSEL" + "codePostal": "42210", + "codeCommune": "42149", + "libelleAcheminement": "MONTROND LES BAINS", + "nomCommune": "MONTROND LES BAINS" }, { - "codePostal": "19170", - "codeCommune": "19284", - "libelleAcheminement": "VIAM", - "nomCommune": "VIAM" + "codePostal": "42510", + "codeCommune": "42154", + "libelleAcheminement": "NERONDE", + "nomCommune": "NERONDE" }, { - "codePostal": "21410", - "codeCommune": "21002", - "libelleAcheminement": "AGEY", - "nomCommune": "AGEY" + "codePostal": "42370", + "codeCommune": "42158", + "libelleAcheminement": "LES NOES", + "nomCommune": "LES NOES" }, { - "codePostal": "21510", - "codeCommune": "21004", - "libelleAcheminement": "AIGNAY LE DUC", - "nomCommune": "AIGNAY LE DUC" + "codePostal": "42410", + "codeCommune": "42168", + "libelleAcheminement": "PELUSSIN", + "nomCommune": "PELUSSIN" }, { - "codePostal": "21230", - "codeCommune": "21009", - "libelleAcheminement": "ALLEREY", - "nomCommune": "ALLEREY" + "codePostal": "42110", + "codeCommune": "42174", + "libelleAcheminement": "PONCINS", + "nomCommune": "PONCINS" }, { - "codePostal": "21500", - "codeCommune": "21025", - "libelleAcheminement": "ARRANS", - "nomCommune": "ARRANS" + "codePostal": "42630", + "codeCommune": "42181", + "libelleAcheminement": "REGNY", + "nomCommune": "REGNY" }, { - "codePostal": "21360", - "codeCommune": "21036", - "libelleAcheminement": "AUXANT", - "nomCommune": "AUXANT" + "codePostal": "42300", + "codeCommune": "42187", + "libelleAcheminement": "ROANNE", + "nomCommune": "ROANNE" }, { - "codePostal": "21410", - "codeCommune": "21045", - "libelleAcheminement": "BARBIREY SUR OUCHE", - "nomCommune": "BARBIREY SUR OUCHE" + "codePostal": "42520", + "codeCommune": "42201", + "libelleAcheminement": "ST APPOLINARD", + "nomCommune": "ST APPOLINARD" }, { - "codePostal": "21430", - "codeCommune": "21046", - "libelleAcheminement": "BARD LE REGULIER", - "nomCommune": "BARD LE REGULIER" + "codePostal": "42940", + "codeCommune": "42205", + "libelleAcheminement": "ST BONNET LE COURREAU", + "nomCommune": "ST BONNET LE COURREAU" }, { - "codePostal": "21200", - "codeCommune": "21054", - "libelleAcheminement": "BEAUNE", - "nomCommune": "BEAUNE" + "codePostal": "42400", + "codeCommune": "42207", + "libelleAcheminement": "ST CHAMOND", + "nomCommune": "ST CHAMOND" }, { - "codePostal": "21310", - "codeCommune": "21060", - "libelleAcheminement": "BELLENEUVE", - "nomCommune": "BELLENEUVE" + "codePostal": "42540", + "codeCommune": "42209", + "libelleAcheminement": "STE COLOMBE SUR GAND", + "nomCommune": "STE COLOMBE SUR GAND" }, { - "codePostal": "21320", - "codeCommune": "21062", - "libelleAcheminement": "BELLENOT SOUS POUILLY", - "nomCommune": "BELLENOT SOUS POUILLY" + "codePostal": "42210", + "codeCommune": "42214", + "libelleAcheminement": "ST CYR LES VIGNES", + "nomCommune": "ST CYR LES VIGNES" }, { - "codePostal": "21500", - "codeCommune": "21064", - "libelleAcheminement": "BENOISEY", - "nomCommune": "BENOISEY" + "codePostal": "42750", + "codeCommune": "42215", + "libelleAcheminement": "ST DENIS DE CABANNE", + "nomCommune": "ST DENIS DE CABANNE" }, { - "codePostal": "21350", - "codeCommune": "21069", - "libelleAcheminement": "BEURIZOT", - "nomCommune": "BEURIZOT" + "codePostal": "42230", + "codeCommune": "42218", + "libelleAcheminement": "ST ETIENNE", + "nomCommune": "ST ETIENNE" }, { - "codePostal": "21310", - "codeCommune": "21072", - "libelleAcheminement": "BEZOUOTTE", - "nomCommune": "BEZOUOTTE" + "codePostal": "42130", + "codeCommune": "42219", + "libelleAcheminement": "ST ETIENNE LE MOLARD", + "nomCommune": "ST ETIENNE LE MOLARD" }, { - "codePostal": "21520", - "codeCommune": "21077", - "libelleAcheminement": "BISSEY LA COTE", - "nomCommune": "BISSEY LA COTE" + "codePostal": "42330", + "codeCommune": "42222", + "libelleAcheminement": "ST GALMIER", + "nomCommune": "ST GALMIER" }, { - "codePostal": "21200", - "codeCommune": "21086", - "libelleAcheminement": "BLIGNY LES BEAUNE", - "nomCommune": "BLIGNY LES BEAUNE" + "codePostal": "42530", + "codeCommune": "42223", + "libelleAcheminement": "ST GENEST LERPT", + "nomCommune": "ST GENEST LERPT" }, { - "codePostal": "21350", - "codeCommune": "21100", - "libelleAcheminement": "BRAIN", - "nomCommune": "BRAIN" + "codePostal": "42660", + "codeCommune": "42224", + "libelleAcheminement": "ST GENEST MALIFAUX", + "nomCommune": "ST GENEST MALIFAUX" }, { - "codePostal": "21470", - "codeCommune": "21103", - "libelleAcheminement": "BRAZEY EN PLAINE", - "nomCommune": "BRAZEY EN PLAINE" + "codePostal": "42670", + "codeCommune": "42229", + "libelleAcheminement": "ST GERMAIN LA MONTAGNE", + "nomCommune": "ST GERMAIN LA MONTAGNE" }, { - "codePostal": "21400", - "codeCommune": "21104", - "libelleAcheminement": "BREMUR ET VAUROIS", - "nomCommune": "BREMUR ET VAUROIS" + "codePostal": "42370", + "codeCommune": "42233", + "libelleAcheminement": "ST HAON LE VIEUX", + "nomCommune": "ST HAON LE VIEUX" }, { - "codePostal": "21110", - "codeCommune": "21106", - "libelleAcheminement": "BRETENIERE", - "nomCommune": "BRETENIERE" + "codePostal": "42190", + "codeCommune": "42236", + "libelleAcheminement": "ST HILAIRE SOUS CHARLIEU", + "nomCommune": "ST HILAIRE SOUS CHARLIEU" }, { - "codePostal": "21580", - "codeCommune": "21119", - "libelleAcheminement": "BUSSIERES", - "nomCommune": "BUSSIERES" + "codePostal": "42800", + "codeCommune": "42242", + "libelleAcheminement": "ST JOSEPH", + "nomCommune": "ST JOSEPH" }, { - "codePostal": "21330", - "codeCommune": "21125", - "libelleAcheminement": "CERILLY", - "nomCommune": "CERILLY" + "codePostal": "42260", + "codeCommune": "42243", + "libelleAcheminement": "ST JULIEN D ODDES", + "nomCommune": "ST JULIEN D ODDES" }, { - "codePostal": "21320", - "codeCommune": "21128", - "libelleAcheminement": "CHAILLY SUR ARMANCON", - "nomCommune": "CHAILLY SUR ARMANCON" + "codePostal": "42130", + "codeCommune": "42252", + "libelleAcheminement": "ST LAURENT ROCHEFORT", + "nomCommune": "ST LAURENT ROCHEFORT" }, { - "codePostal": "21220", - "codeCommune": "21132", - "libelleAcheminement": "CHAMBOEUF", - "nomCommune": "CHAMBOEUF" + "codePostal": "42155", + "codeCommune": "42253", + "libelleAcheminement": "ST LEGER SUR ROANNE", + "nomCommune": "ST LEGER SUR ROANNE" }, { - "codePostal": "21210", - "codeCommune": "21139", - "libelleAcheminement": "CHAMPEAU EN MORVAN", - "nomCommune": "CHAMPEAU EN MORVAN" + "codePostal": "42122", + "codeCommune": "42254", + "libelleAcheminement": "ST MARCEL DE FELINES", + "nomCommune": "ST MARCEL DE FELINES" }, { - "codePostal": "21440", - "codeCommune": "21142", - "libelleAcheminement": "CHANCEAUX", - "nomCommune": "CHANCEAUX" + "codePostal": "42430", + "codeCommune": "42255", + "libelleAcheminement": "ST MARCEL D URFE", + "nomCommune": "ST MARCEL D URFE" }, { - "codePostal": "21330", - "codeCommune": "21143", - "libelleAcheminement": "CHANNAY", - "nomCommune": "CHANNAY" + "codePostal": "42260", + "codeCommune": "42260", + "libelleAcheminement": "ST MARTIN LA SAUVETE", + "nomCommune": "ST MARTIN LA SAUVETE" }, { - "codePostal": "21360", - "codeCommune": "21155", - "libelleAcheminement": "CHAUDENAY LA VILLE", - "nomCommune": "CHAUDENAY LA VILLE" + "codePostal": "42110", + "codeCommune": "42261", + "libelleAcheminement": "ST MARTIN LESTRA", + "nomCommune": "ST MARTIN LESTRA" }, { - "codePostal": "21400", - "codeCommune": "21161", - "libelleAcheminement": "CHAUMONT LE BOIS", - "nomCommune": "CHAUMONT LE BOIS" + "codePostal": "42240", + "codeCommune": "42262", + "libelleAcheminement": "ST MAURICE EN GOURGOIS", + "nomCommune": "ST MAURICE EN GOURGOIS" }, { - "codePostal": "21310", - "codeCommune": "21167", - "libelleAcheminement": "CHEUGE", - "nomCommune": "CHEUGE" + "codePostal": "42380", + "codeCommune": "42266", + "libelleAcheminement": "ST NIZIER DE FORNAS", + "nomCommune": "ST NIZIER DE FORNAS" }, { - "codePostal": "21540", - "codeCommune": "21168", - "libelleAcheminement": "CHEVANNAY", - "nomCommune": "CHEVANNAY" + "codePostal": "42190", + "codeCommune": "42267", + "libelleAcheminement": "ST NIZIER SOUS CHARLIEU", + "nomCommune": "ST NIZIER SOUS CHARLIEU" }, { - "codePostal": "21220", - "codeCommune": "21169", - "libelleAcheminement": "CHEVANNES", - "nomCommune": "CHEVANNES" + "codePostal": "42590", + "codeCommune": "42268", + "libelleAcheminement": "VEZELIN SUR LOIRE", + "nomCommune": "VEZELIN SUR LOIRE" }, { - "codePostal": "21320", - "codeCommune": "21176", - "libelleAcheminement": "CIVRY EN MONTAGNE", - "nomCommune": "CIVRY EN MONTAGNE" + "codePostal": "42600", + "codeCommune": "42269", + "libelleAcheminement": "ST PAUL D UZORE", + "nomCommune": "ST PAUL D UZORE" }, { - "codePostal": "21390", - "codeCommune": "21177", - "libelleAcheminement": "CLAMEREY", - "nomCommune": "CLAMEREY" + "codePostal": "42170", + "codeCommune": "42279", + "libelleAcheminement": "ST JUST ST RAMBERT", + "nomCommune": "ST JUST ST RAMBERT" }, { - "codePostal": "21270", - "codeCommune": "21180", - "libelleAcheminement": "CLERY", - "nomCommune": "CLERY" + "codePostal": "42220", + "codeCommune": "42287", + "libelleAcheminement": "ST SAUVEUR EN RUE", + "nomCommune": "ST SAUVEUR EN RUE" }, { - "codePostal": "21220", - "codeCommune": "21182", - "libelleAcheminement": "COLLONGES LES BEVY", - "nomCommune": "COLLONGES LES BEVY" + "codePostal": "42130", + "codeCommune": "42288", + "libelleAcheminement": "ST SIXTE", + "nomCommune": "ST SIXTE" }, { - "codePostal": "21340", - "codeCommune": "21195", - "libelleAcheminement": "CORMOT VAUCHIGNON", - "nomCommune": "CORMOT VAUCHIGNON" + "codePostal": "42630", + "codeCommune": "42293", + "libelleAcheminement": "ST VICTOR SUR RHINS", + "nomCommune": "ST VICTOR SUR RHINS" }, { - "codePostal": "21500", - "codeCommune": "21204", - "libelleAcheminement": "COURCELLES LES MONTBARD", - "nomCommune": "COURCELLES LES MONTBARD" + "codePostal": "42120", + "codeCommune": "42294", + "libelleAcheminement": "ST VINCENT DE BOISSET", + "nomCommune": "ST VINCENT DE BOISSET" }, { - "codePostal": "21140", - "codeCommune": "21205", - "libelleAcheminement": "COURCELLES LES SEMUR", - "nomCommune": "COURCELLES LES SEMUR" + "codePostal": "42560", + "codeCommune": "42301", + "libelleAcheminement": "SOLEYMIEUX", + "nomCommune": "SOLEYMIEUX" }, { - "codePostal": "21320", - "codeCommune": "21210", - "libelleAcheminement": "CREANCEY", - "nomCommune": "CREANCEY" + "codePostal": "42350", + "codeCommune": "42305", + "libelleAcheminement": "LA TALAUDIERE", + "nomCommune": "LA TALAUDIERE" }, { - "codePostal": "21310", - "codeCommune": "21215", - "libelleAcheminement": "CUISEREY", - "nomCommune": "CUISEREY" + "codePostal": "42550", + "codeCommune": "42318", + "libelleAcheminement": "USSON EN FOREZ", + "nomCommune": "USSON EN FOREZ" }, { - "codePostal": "21580", - "codeCommune": "21220", - "libelleAcheminement": "CUSSEY LES FORGES", - "nomCommune": "CUSSEY LES FORGES" + "codePostal": "42110", + "codeCommune": "42319", + "libelleAcheminement": "VALEILLE", + "nomCommune": "VALEILLE" }, { - "codePostal": "21270", - "codeCommune": "21233", - "libelleAcheminement": "DRAMBON", - "nomCommune": "DRAMBON" + "codePostal": "42340", + "codeCommune": "42323", + "libelleAcheminement": "VEAUCHE", + "nomCommune": "VEAUCHE" }, { - "codePostal": "21190", - "codeCommune": "21236", - "libelleAcheminement": "EBATY", - "nomCommune": "EBATY" + "codePostal": "42460", + "codeCommune": "42333", + "libelleAcheminement": "VILLERS", + "nomCommune": "VILLERS" }, { - "codePostal": "21460", - "codeCommune": "21247", - "libelleAcheminement": "EPOISSES", - "nomCommune": "EPOISSES" + "codePostal": "42310", + "codeCommune": "42337", + "libelleAcheminement": "VIVANS", + "nomCommune": "VIVANS" }, { - "codePostal": "21170", - "codeCommune": "21249", - "libelleAcheminement": "ESBARRES", - "nomCommune": "ESBARRES" + "codePostal": "43270", + "codeCommune": "43003", + "libelleAcheminement": "ALLEGRE", + "nomCommune": "ALLEGRE" }, { - "codePostal": "21320", - "codeCommune": "21251", - "libelleAcheminement": "ESSEY", - "nomCommune": "ESSEY" + "codePostal": "43150", + "codeCommune": "43004", + "libelleAcheminement": "ALLEYRAC", + "nomCommune": "ALLEYRAC" }, { - "codePostal": "21220", - "codeCommune": "21254", - "libelleAcheminement": "L ETANG VERGY", - "nomCommune": "L ETANG VERGY" + "codePostal": "43200", + "codeCommune": "43007", + "libelleAcheminement": "ARAULES", + "nomCommune": "ARAULES" }, { - "codePostal": "21121", - "codeCommune": "21255", - "libelleAcheminement": "ETAULES", - "nomCommune": "ETAULES" + "codePostal": "43380", + "codeCommune": "43009", + "libelleAcheminement": "ARLET", + "nomCommune": "ARLET" }, { - "codePostal": "21500", - "codeCommune": "21260", - "libelleAcheminement": "FAIN LES MOUTIERS", - "nomCommune": "FAIN LES MOUTIERS" + "codePostal": "43300", + "codeCommune": "43015", + "libelleAcheminement": "AUVERS", + "nomCommune": "AUVERS" }, { - "codePostal": "21110", - "codeCommune": "21261", - "libelleAcheminement": "FAUVERNEY", - "nomCommune": "FAUVERNEY" + "codePostal": "43390", + "codeCommune": "43016", + "libelleAcheminement": "AUZON", + "nomCommune": "AUZON" }, { - "codePostal": "21640", - "codeCommune": "21267", - "libelleAcheminement": "FLAGEY ECHEZEAUX", - "nomCommune": "FLAGEY ECHEZEAUX" + "codePostal": "43370", + "codeCommune": "43018", + "libelleAcheminement": "BAINS", + "nomCommune": "BAINS" }, { - "codePostal": "21160", - "codeCommune": "21270", - "libelleAcheminement": "FLAVIGNEROT", - "nomCommune": "FLAVIGNEROT" + "codePostal": "43800", + "codeCommune": "43021", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "21230", - "codeCommune": "21274", - "libelleAcheminement": "FOISSY", - "nomCommune": "FOISSY" + "codePostal": "43200", + "codeCommune": "43024", + "libelleAcheminement": "BEAUX", + "nomCommune": "BEAUX" }, { - "codePostal": "21460", - "codeCommune": "21282", - "libelleAcheminement": "FORLEANS", - "nomCommune": "FORLEANS" + "codePostal": "43160", + "codeCommune": "43035", + "libelleAcheminement": "BONNEVAL", + "nomCommune": "BONNEVAL" }, { - "codePostal": "21150", - "codeCommune": "21288", - "libelleAcheminement": "FROLOIS", - "nomCommune": "FROLOIS" + "codePostal": "43360", + "codeCommune": "43038", + "libelleAcheminement": "BOURNONCLE ST PIERRE", + "nomCommune": "BOURNONCLE ST PIERRE" }, { - "codePostal": "21120", - "codeCommune": "21290", - "libelleAcheminement": "GEMEAUX", - "nomCommune": "GEMEAUX" + "codePostal": "43770", + "codeCommune": "43046", + "libelleAcheminement": "CHADRAC", + "nomCommune": "CHADRAC" }, { - "codePostal": "21410", - "codeCommune": "21293", - "libelleAcheminement": "GERGUEIL", - "nomCommune": "GERGUEIL" + "codePostal": "43800", + "codeCommune": "43049", + "libelleAcheminement": "CHAMALIERES SUR LOIRE", + "nomCommune": "CHAMALIERES SUR LOIRE" }, { - "codePostal": "21220", - "codeCommune": "21295", - "libelleAcheminement": "GEVREY CHAMBERTIN", - "nomCommune": "GEVREY CHAMBERTIN" + "codePostal": "43270", + "codeCommune": "43057", + "libelleAcheminement": "LA CHAPELLE BERTIN", + "nomCommune": "LA CHAPELLE BERTIN" }, { - "codePostal": "21640", - "codeCommune": "21297", - "libelleAcheminement": "GILLY LES CITEAUX", - "nomCommune": "GILLY LES CITEAUX" + "codePostal": "43700", + "codeCommune": "43061", + "libelleAcheminement": "CHASPINHAC", + "nomCommune": "CHASPINHAC" }, { - "codePostal": "21580", - "codeCommune": "21304", - "libelleAcheminement": "GRANCEY LE CHATEAU", - "nomCommune": "GRANCEY LE CHATEAU NEUVELLE" + "codePostal": "43300", + "codeCommune": "43068", + "libelleAcheminement": "CHAZELLES", + "nomCommune": "CHAZELLES" }, { - "codePostal": "21570", - "codeCommune": "21305", - "libelleAcheminement": "GRANCEY SUR OURCE", - "nomCommune": "GRANCEY SUR OURCE" + "codePostal": "43190", + "codeCommune": "43069", + "libelleAcheminement": "CHENEREILLES", + "nomCommune": "CHENEREILLES" }, { - "codePostal": "21150", - "codeCommune": "21321", - "libelleAcheminement": "JAILLY LES MOULINS", - "nomCommune": "JAILLY LES MOULINS" + "codePostal": "43300", + "codeCommune": "43082", + "libelleAcheminement": "CRONCE", + "nomCommune": "CRONCE" }, { - "codePostal": "21310", - "codeCommune": "21323", - "libelleAcheminement": "JANCIGNY", - "nomCommune": "JANCIGNY" + "codePostal": "43450", + "codeCommune": "43088", + "libelleAcheminement": "ESPALEM", + "nomCommune": "ESPALEM" }, { - "codePostal": "21230", - "codeCommune": "21325", - "libelleAcheminement": "JOUEY", - "nomCommune": "JOUEY" + "codePostal": "43150", + "codeCommune": "43091", + "libelleAcheminement": "LES ESTABLES", + "nomCommune": "LES ESTABLES" }, { - "codePostal": "21230", - "codeCommune": "21334", - "libelleAcheminement": "LACANCHE", - "nomCommune": "LACANCHE" + "codePostal": "43430", + "codeCommune": "43092", + "libelleAcheminement": "FAY SUR LIGNON", + "nomCommune": "FAY SUR LIGNON" }, { - "codePostal": "21440", - "codeCommune": "21345", - "libelleAcheminement": "LERY", - "nomCommune": "LERY" + "codePostal": "43100", + "codeCommune": "43096", + "libelleAcheminement": "FONTANNES", + "nomCommune": "FONTANNES" }, { - "codePostal": "21610", - "codeCommune": "21348", - "libelleAcheminement": "LICEY SUR VINGEANNE", - "nomCommune": "LICEY SUR VINGEANNE" + "codePostal": "43150", + "codeCommune": "43098", + "libelleAcheminement": "FREYCENET LA TOUR", + "nomCommune": "FREYCENET LA TOUR" }, { - "codePostal": "21110", - "codeCommune": "21352", - "libelleAcheminement": "LONGEAULT PLUVAULT", - "nomCommune": "LONGEAULT PLUVAULT" + "codePostal": "43170", + "codeCommune": "43104", + "libelleAcheminement": "GREZES", + "nomCommune": "GREZES" }, { - "codePostal": "21110", - "codeCommune": "21352", - "libelleAcheminement": "LONGEAULT PLUVAULT", - "nomCommune": "LONGEAULT PLUVAULT" + "codePostal": "43230", + "codeCommune": "43106", + "libelleAcheminement": "JAX", + "nomCommune": "JAX" }, { - "codePostal": "21230", - "codeCommune": "21354", - "libelleAcheminement": "LONGECOURT LES CULETRE", - "nomCommune": "LONGECOURT LES CULETRE" + "codePostal": "43410", + "codeCommune": "43120", + "libelleAcheminement": "LEMPDES SUR ALLAGNON", + "nomCommune": "LEMPDES SUR ALLAGNON" }, { - "codePostal": "21120", - "codeCommune": "21361", - "libelleAcheminement": "LUX", - "nomCommune": "LUX" + "codePostal": "43410", + "codeCommune": "43121", + "libelleAcheminement": "LEOTOING", + "nomCommune": "LEOTOING" }, { - "codePostal": "21230", - "codeCommune": "21363", - "libelleAcheminement": "MAGNIEN", - "nomCommune": "MAGNIEN" + "codePostal": "43320", + "codeCommune": "43124", + "libelleAcheminement": "LOUDES", + "nomCommune": "LOUDES" }, { - "codePostal": "21450", - "codeCommune": "21364", - "libelleAcheminement": "MAGNY LAMBERT", - "nomCommune": "MAGNY LAMBERT" + "codePostal": "43230", + "codeCommune": "43139", + "libelleAcheminement": "MONTCLARD", + "nomCommune": "MONTCLARD" }, { - "codePostal": "21140", - "codeCommune": "21365", - "libelleAcheminement": "MAGNY LA VILLE", - "nomCommune": "MAGNY LA VILLE" + "codePostal": "43510", + "codeCommune": "43145", + "libelleAcheminement": "OUIDES", + "nomCommune": "OUIDES" }, { - "codePostal": "21130", - "codeCommune": "21371", - "libelleAcheminement": "LES MAILLYS", - "nomCommune": "LES MAILLYS" + "codePostal": "43100", + "codeCommune": "43147", + "libelleAcheminement": "PAULHAC", + "nomCommune": "PAULHAC" }, { - "codePostal": "21410", - "codeCommune": "21373", - "libelleAcheminement": "MALAIN", - "nomCommune": "MALAIN" + "codePostal": "43260", + "codeCommune": "43158", + "libelleAcheminement": "QUEYRIERES", + "nomCommune": "QUEYRIERES" }, { - "codePostal": "21230", - "codeCommune": "21374", - "libelleAcheminement": "MALIGNY", - "nomCommune": "MALIGNY" + "codePostal": "43130", + "codeCommune": "43162", + "libelleAcheminement": "RETOURNAC", + "nomCommune": "RETOURNAC" }, { - "codePostal": "21350", - "codeCommune": "21377", - "libelleAcheminement": "MARCELLOIS", - "nomCommune": "MARCELLOIS" + "codePostal": "43380", + "codeCommune": "43169", + "libelleAcheminement": "ST AUSTREMOINE", + "nomCommune": "ST AUSTREMOINE" }, { - "codePostal": "21330", - "codeCommune": "21378", - "libelleAcheminement": "MARCENAY", - "nomCommune": "MARCENAY" + "codePostal": "43100", + "codeCommune": "43170", + "libelleAcheminement": "ST BEAUZIRE", + "nomCommune": "ST BEAUZIRE" }, { - "codePostal": "21350", - "codeCommune": "21381", - "libelleAcheminement": "MARCILLY ET DRACY", - "nomCommune": "MARCILLY ET DRACY" + "codePostal": "43440", + "codeCommune": "43178", + "libelleAcheminement": "ST DIDIER SUR DOULON", + "nomCommune": "ST DIDIER SUR DOULON" }, { - "codePostal": "21700", - "codeCommune": "21384", - "libelleAcheminement": "MAREY LES FUSSEY", - "nomCommune": "MAREY LES FUSSEY" + "codePostal": "43330", + "codeCommune": "43184", + "libelleAcheminement": "ST FERREOL D AUROURE", + "nomCommune": "ST FERREOL D AUROURE" }, { - "codePostal": "21200", - "codeCommune": "21387", - "libelleAcheminement": "MARIGNY LES REULLEE", - "nomCommune": "MARIGNY LES REULLEE" + "codePostal": "43550", + "codeCommune": "43186", + "libelleAcheminement": "ST FRONT", + "nomCommune": "ST FRONT" }, { - "codePostal": "21110", - "codeCommune": "21388", - "libelleAcheminement": "MARLIENS", - "nomCommune": "MARLIENS" + "codePostal": "43230", + "codeCommune": "43188", + "libelleAcheminement": "ST GEORGES D AURAC", + "nomCommune": "ST GEORGES D AURAC" }, { - "codePostal": "21160", - "codeCommune": "21390", - "libelleAcheminement": "MARSANNAY LA COTE", - "nomCommune": "MARSANNAY LA COTE" + "codePostal": "43340", + "codeCommune": "43192", + "libelleAcheminement": "ST HAON", + "nomCommune": "ST HAON" }, { - "codePostal": "21320", - "codeCommune": "21399", - "libelleAcheminement": "MEILLY SUR ROUVRES", - "nomCommune": "MEILLY SUR ROUVRES" + "codePostal": "43500", + "codeCommune": "43196", + "libelleAcheminement": "ST JEAN D AUBRIGOUX", + "nomCommune": "ST JEAN D AUBRIGOUX" }, { - "codePostal": "21580", - "codeCommune": "21400", - "libelleAcheminement": "LE MEIX", - "nomCommune": "LE MEIX" + "codePostal": "43580", + "codeCommune": "43220", + "libelleAcheminement": "ST PREJET D ALLIER", + "nomCommune": "ST PREJET D ALLIER" }, { - "codePostal": "21290", - "codeCommune": "21402", - "libelleAcheminement": "MENESBLE", - "nomCommune": "MENESBLE" + "codePostal": "43580", + "codeCommune": "43221", + "libelleAcheminement": "ST PRIVAT D ALLIER", + "nomCommune": "ST PRIVAT D ALLIER" }, { - "codePostal": "21430", - "codeCommune": "21403", - "libelleAcheminement": "MENESSAIRE", - "nomCommune": "MENESSAIRE" + "codePostal": "43320", + "codeCommune": "43229", + "libelleAcheminement": "ST VIDAL", + "nomCommune": "ST VIDAL" }, { - "codePostal": "21150", - "codeCommune": "21404", - "libelleAcheminement": "MENETREUX LE PITOIS", - "nomCommune": "MENETREUX LE PITOIS" + "codePostal": "43300", + "codeCommune": "43239", + "libelleAcheminement": "SIAUGUES STE MARIE", + "nomCommune": "SIAUGUES STE MARIE" }, { - "codePostal": "21510", - "codeCommune": "21410", - "libelleAcheminement": "MEULSON", - "nomCommune": "MEULSON" + "codePostal": "43130", + "codeCommune": "43240", + "libelleAcheminement": "SOLIGNAC SOUS ROCHE", + "nomCommune": "SOLIGNAC SOUS ROCHE" }, { - "codePostal": "21230", - "codeCommune": "21414", - "libelleAcheminement": "MIMEURE", - "nomCommune": "MIMEURE" + "codePostal": "43370", + "codeCommune": "43241", + "libelleAcheminement": "SOLIGNAC SUR LOIRE", + "nomCommune": "SOLIGNAC SUR LOIRE" }, { - "codePostal": "21330", - "codeCommune": "21419", - "libelleAcheminement": "MOLESME", - "nomCommune": "MOLESME" + "codePostal": "43170", + "codeCommune": "43245", + "libelleAcheminement": "THORAS", + "nomCommune": "THORAS" }, { - "codePostal": "21120", - "codeCommune": "21421", - "libelleAcheminement": "MOLOY", - "nomCommune": "MOLOY" + "codePostal": "43270", + "codeCommune": "43252", + "libelleAcheminement": "VARENNES ST HONORAT", + "nomCommune": "VARENNES ST HONORAT" }, { - "codePostal": "21200", - "codeCommune": "21423", - "libelleAcheminement": "MONTAGNY LES BEAUNE", - "nomCommune": "MONTAGNY LES BEAUNE" + "codePostal": "43390", + "codeCommune": "43261", + "libelleAcheminement": "VEZEZOUX", + "nomCommune": "VEZEZOUX" }, { - "codePostal": "21520", - "codeCommune": "21432", - "libelleAcheminement": "MONTIGNY SUR AUBE", - "nomCommune": "MONTIGNY SUR AUBE" + "codePostal": "43100", + "codeCommune": "43262", + "libelleAcheminement": "VIEILLE BRIOUDE", + "nomCommune": "VIEILLE BRIOUDE" }, { - "codePostal": "21210", - "codeCommune": "21434", - "libelleAcheminement": "MONTLAY EN AUXOIS", - "nomCommune": "MONTLAY EN AUXOIS" + "codePostal": "44170", + "codeCommune": "44001", + "libelleAcheminement": "ABBARETZ", + "nomCommune": "ABBARETZ" }, { - "codePostal": "21250", - "codeCommune": "21436", - "libelleAcheminement": "MONTMAIN", - "nomCommune": "MONTMAIN" + "codePostal": "44150", + "codeCommune": "44003", + "libelleAcheminement": "ANCENIS ST GEREON", + "nomCommune": "ANCENIS ST GEREON" }, { - "codePostal": "21910", - "codeCommune": "21458", - "libelleAcheminement": "NOIRON SOUS GEVREY", - "nomCommune": "NOIRON SOUS GEVREY" + "codePostal": "44460", + "codeCommune": "44007", + "libelleAcheminement": "AVESSAC", + "nomCommune": "AVESSAC" }, { - "codePostal": "21310", - "codeCommune": "21459", - "libelleAcheminement": "NOIRON SUR BEZE", - "nomCommune": "NOIRON SUR BEZE" + "codePostal": "44760", + "codeCommune": "44012", + "libelleAcheminement": "LA BERNERIE EN RETZ", + "nomCommune": "LA BERNERIE EN RETZ" }, { - "codePostal": "21390", - "codeCommune": "21463", - "libelleAcheminement": "NORMIER", - "nomCommune": "NORMIER" + "codePostal": "44140", + "codeCommune": "44014", + "libelleAcheminement": "LE BIGNON", + "nomCommune": "LE BIGNON" }, { - "codePostal": "21510", - "codeCommune": "21470", - "libelleAcheminement": "ORIGNY", - "nomCommune": "ORIGNY" + "codePostal": "44130", + "codeCommune": "44015", + "libelleAcheminement": "BLAIN", + "nomCommune": "BLAIN" }, { - "codePostal": "21450", - "codeCommune": "21471", - "libelleAcheminement": "ORRET", - "nomCommune": "ORRET" + "codePostal": "44340", + "codeCommune": "44020", + "libelleAcheminement": "BOUGUENAIS", + "nomCommune": "BOUGUENAIS" }, { - "codePostal": "21600", - "codeCommune": "21473", - "libelleAcheminement": "OUGES", - "nomCommune": "OUGES" + "codePostal": "44330", + "codeCommune": "44032", + "libelleAcheminement": "LA CHAPELLE HEULIN", + "nomCommune": "LA CHAPELLE HEULIN" }, { - "codePostal": "21540", - "codeCommune": "21477", - "libelleAcheminement": "PANGES", - "nomCommune": "PANGES" + "codePostal": "44260", + "codeCommune": "44033", + "libelleAcheminement": "LA CHAPELLE LAUNAY", + "nomCommune": "LA CHAPELLE LAUNAY" }, { - "codePostal": "21270", - "codeCommune": "21482", - "libelleAcheminement": "PERRIGNY SUR L OGNON", - "nomCommune": "PERRIGNY SUR L OGNON" + "codePostal": "44320", + "codeCommune": "44038", + "libelleAcheminement": "CHAUVE", + "nomCommune": "CHAUVE" }, { - "codePostal": "21500", - "codeCommune": "21484", - "libelleAcheminement": "PLANAY", - "nomCommune": "PLANAY" + "codePostal": "44118", + "codeCommune": "44041", + "libelleAcheminement": "LA CHEVROLIERE", + "nomCommune": "LA CHEVROLIERE" }, { - "codePostal": "21330", - "codeCommune": "21488", - "libelleAcheminement": "POINCON LES LARREY", - "nomCommune": "POINCON LES LARREY" + "codePostal": "44290", + "codeCommune": "44044", + "libelleAcheminement": "CONQUEREUIL", + "nomCommune": "CONQUEREUIL" }, { - "codePostal": "21130", - "codeCommune": "21493", - "libelleAcheminement": "PONCEY LES ATHEE", - "nomCommune": "PONCEY LES ATHEE" + "codePostal": "44490", + "codeCommune": "44049", + "libelleAcheminement": "LE CROISIC", + "nomCommune": "LE CROISIC" }, { - "codePostal": "21320", - "codeCommune": "21501", - "libelleAcheminement": "POUILLY EN AUXOIS", - "nomCommune": "POUILLY EN AUXOIS" + "codePostal": "44290", + "codeCommune": "44067", + "libelleAcheminement": "GUEMENE PENFAO", + "nomCommune": "GUEMENE PENFAO" }, { - "codePostal": "21250", - "codeCommune": "21502", - "libelleAcheminement": "POUILLY SUR SAONE", - "nomCommune": "POUILLY SUR SAONE" + "codePostal": "44350", + "codeCommune": "44069", + "libelleAcheminement": "GUERANDE", + "nomCommune": "GUERANDE" }, { - "codePostal": "21700", - "codeCommune": "21506", - "libelleAcheminement": "PREMEAUX PRISSEY", - "nomCommune": "PREMEAUX PRISSEY" + "codePostal": "44350", + "codeCommune": "44069", + "libelleAcheminement": "GUERANDE", + "nomCommune": "GUERANDE" }, { - "codePostal": "21400", - "codeCommune": "21510", - "libelleAcheminement": "PRUSLY SUR OURCE", - "nomCommune": "PRUSLY SUR OURCE" + "codePostal": "44690", + "codeCommune": "44070", + "libelleAcheminement": "LA HAIE FOUASSIERE", + "nomCommune": "LA HAIE FOUASSIERE" }, { - "codePostal": "21500", - "codeCommune": "21516", - "libelleAcheminement": "QUINCEROT", - "nomCommune": "QUINCEROT" + "codePostal": "44610", + "codeCommune": "44074", + "libelleAcheminement": "INDRE", + "nomCommune": "INDRE" }, { - "codePostal": "21290", - "codeCommune": "21519", - "libelleAcheminement": "RECEY SUR OURCE", - "nomCommune": "RECEY SUR OURCE" + "codePostal": "44440", + "codeCommune": "44077", + "libelleAcheminement": "JOUE SUR ERDRE", + "nomCommune": "JOUE SUR ERDRE" }, { - "codePostal": "21510", - "codeCommune": "21526", - "libelleAcheminement": "ROCHEFORT SUR BREVON", - "nomCommune": "ROCHEFORT SUR BREVON" + "codePostal": "44260", + "codeCommune": "44080", + "libelleAcheminement": "LAVAU SUR LOIRE", + "nomCommune": "LAVAU SUR LOIRE" }, { - "codePostal": "21390", - "codeCommune": "21529", - "libelleAcheminement": "ROILLY", - "nomCommune": "ROILLY" + "codePostal": "44270", + "codeCommune": "44087", + "libelleAcheminement": "MACHECOUL ST MEME", + "nomCommune": "MACHECOUL ST MEME" }, { - "codePostal": "21260", - "codeCommune": "21536", - "libelleAcheminement": "SACQUENAY", - "nomCommune": "SACQUENAY" + "codePostal": "44260", + "codeCommune": "44089", + "libelleAcheminement": "MALVILLE", + "nomCommune": "MALVILLE" }, { - "codePostal": "21530", - "codeCommune": "21538", - "libelleAcheminement": "ST ANDEUX", - "nomCommune": "ST ANDEUX" + "codePostal": "44522", + "codeCommune": "44096", + "libelleAcheminement": "MESANGER", + "nomCommune": "MESANGER" }, { - "codePostal": "21190", - "codeCommune": "21541", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "44420", + "codeCommune": "44097", + "libelleAcheminement": "MESQUER", + "nomCommune": "MESQUER" }, { - "codePostal": "21290", - "codeCommune": "21543", - "libelleAcheminement": "ST BROING LES MOINES", - "nomCommune": "ST BROING LES MOINES" + "codePostal": "44370", + "codeCommune": "44104", + "libelleAcheminement": "MONTRELAIS", + "nomCommune": "MONTRELAIS" }, { - "codePostal": "21530", - "codeCommune": "21548", - "libelleAcheminement": "ST GERMAIN DE MODEON", - "nomCommune": "ST GERMAIN DE MODEON" + "codePostal": "44590", + "codeCommune": "44105", + "libelleAcheminement": "MOUAIS", + "nomCommune": "MOUAIS" }, { - "codePostal": "21440", - "codeCommune": "21561", - "libelleAcheminement": "ST MARTIN DU MONT", - "nomCommune": "ST MARTIN DU MONT" + "codePostal": "44100", + "codeCommune": "44109", + "libelleAcheminement": "NANTES", + "nomCommune": "NANTES" }, { - "codePostal": "21610", - "codeCommune": "21562", - "libelleAcheminement": "ST MAURICE SUR VINGEANNE", - "nomCommune": "ST MAURICE SUR VINGEANNE" + "codePostal": "44130", + "codeCommune": "44111", + "libelleAcheminement": "NOTRE DAME DES LANDES", + "nomCommune": "NOTRE DAME DES LANDES" }, { - "codePostal": "21500", - "codeCommune": "21568", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "44700", + "codeCommune": "44114", + "libelleAcheminement": "ORVAULT", + "nomCommune": "ORVAULT" }, { - "codePostal": "21320", - "codeCommune": "21570", - "libelleAcheminement": "STE SABINE", - "nomCommune": "STE SABINE" + "codePostal": "44540", + "codeCommune": "44124", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "21440", - "codeCommune": "21573", - "libelleAcheminement": "ST SEINE L ABBAYE", - "nomCommune": "ST SEINE L ABBAYE" + "codePostal": "44630", + "codeCommune": "44128", + "libelleAcheminement": "PLESSE", + "nomCommune": "PLESSE" }, { - "codePostal": "21410", - "codeCommune": "21578", - "libelleAcheminement": "ST VICTOR SUR OUCHE", - "nomCommune": "ST VICTOR SUR OUCHE" + "codePostal": "44860", + "codeCommune": "44130", + "libelleAcheminement": "PONT ST MARTIN", + "nomCommune": "PONT ST MARTIN" }, { - "codePostal": "21420", - "codeCommune": "21590", - "libelleAcheminement": "SAVIGNY LES BEAUNE", - "nomCommune": "SAVIGNY LES BEAUNE" + "codePostal": "44210", + "codeCommune": "44131", + "libelleAcheminement": "PORNIC", + "nomCommune": "PORNIC" }, { - "codePostal": "21310", - "codeCommune": "21595", - "libelleAcheminement": "SAVOLLES", - "nomCommune": "SAVOLLES" + "codePostal": "44380", + "codeCommune": "44132", + "libelleAcheminement": "PORNICHET", + "nomCommune": "PORNICHET" }, { - "codePostal": "21270", - "codeCommune": "21610", - "libelleAcheminement": "SOISSONS SUR NACEY", - "nomCommune": "SOISSONS SUR NACEY" + "codePostal": "44522", + "codeCommune": "44134", + "libelleAcheminement": "POUILLE LES COTEAUX", + "nomCommune": "POUILLE LES COTEAUX" }, { - "codePostal": "21270", - "codeCommune": "21618", - "libelleAcheminement": "TALMAY", - "nomCommune": "TALMAY" + "codePostal": "44260", + "codeCommune": "44137", + "libelleAcheminement": "PRINQUIAU", + "nomCommune": "PRINQUIAU" }, { - "codePostal": "21120", - "codeCommune": "21620", - "libelleAcheminement": "TARSUL", - "nomCommune": "TARSUL" + "codePostal": "44330", + "codeCommune": "44140", + "libelleAcheminement": "LA REGRIPPIERE", + "nomCommune": "LA REGRIPPIERE" }, { - "codePostal": "21110", - "codeCommune": "21623", - "libelleAcheminement": "TART", - "nomCommune": "TART" + "codePostal": "44400", + "codeCommune": "44143", + "libelleAcheminement": "REZE", + "nomCommune": "REZE" }, { - "codePostal": "21150", - "codeCommune": "21627", - "libelleAcheminement": "THENISSEY", - "nomCommune": "THENISSEY" + "codePostal": "44660", + "codeCommune": "44146", + "libelleAcheminement": "ROUGE", + "nomCommune": "ROUGE" }, { - "codePostal": "21320", - "codeCommune": "21630", - "libelleAcheminement": "THOISY LE DESERT", - "nomCommune": "THOISY LE DESERT" + "codePostal": "44660", + "codeCommune": "44148", + "libelleAcheminement": "RUFFIGNE", + "nomCommune": "RUFFIGNE" }, { - "codePostal": "21360", - "codeCommune": "21631", - "libelleAcheminement": "THOMIREY", - "nomCommune": "THOMIREY" + "codePostal": "44390", + "codeCommune": "44149", + "libelleAcheminement": "SAFFRE", + "nomCommune": "SAFFRE" }, { - "codePostal": "21360", - "codeCommune": "21634", - "libelleAcheminement": "THOREY SUR OUCHE", - "nomCommune": "THOREY SUR OUCHE" + "codePostal": "44650", + "codeCommune": "44156", + "libelleAcheminement": "CORCOUE SUR LOGNE", + "nomCommune": "CORCOUE SUR LOGNE" }, { - "codePostal": "21500", - "codeCommune": "21641", - "libelleAcheminement": "TOUILLON", - "nomCommune": "TOUILLON" + "codePostal": "44710", + "codeCommune": "44171", + "libelleAcheminement": "ST LEGER LES VIGNES", + "nomCommune": "ST LEGER LES VIGNES" }, { - "codePostal": "21130", - "codeCommune": "21643", - "libelleAcheminement": "TRECLUN", - "nomCommune": "TRECLUN" + "codePostal": "44980", + "codeCommune": "44172", + "libelleAcheminement": "STE LUCE SUR LOIRE", + "nomCommune": "STE LUCE SUR LOIRE" }, { - "codePostal": "21250", - "codeCommune": "21647", - "libelleAcheminement": "TRUGNY", - "nomCommune": "TRUGNY" + "codePostal": "44680", + "codeCommune": "44178", + "libelleAcheminement": "ST MARS DE COUTAIS", + "nomCommune": "ST MARS DE COUTAIS" }, { - "codePostal": "21490", - "codeCommune": "21657", - "libelleAcheminement": "VAROIS ET CHAIGNOT", - "nomCommune": "VAROIS ET CHAIGNOT" + "codePostal": "44850", + "codeCommune": "44179", + "libelleAcheminement": "ST MARS DU DESERT", + "nomCommune": "ST MARS DU DESERT" }, { - "codePostal": "21260", - "codeCommune": "21667", - "libelleAcheminement": "VERONNES", - "nomCommune": "VERONNES" + "codePostal": "44540", + "codeCommune": "44180", + "libelleAcheminement": "VALLONS DE L ERDRE", + "nomCommune": "VALLONS DE L ERDRE" }, { - "codePostal": "21330", - "codeCommune": "21671", - "libelleAcheminement": "VERTAULT", - "nomCommune": "VERTAULT" + "codePostal": "44540", + "codeCommune": "44180", + "libelleAcheminement": "VALLONS DE L ERDRE", + "nomCommune": "VALLONS DE L ERDRE" }, { - "codePostal": "21350", - "codeCommune": "21672", - "libelleAcheminement": "VESVRES", - "nomCommune": "VESVRES" + "codePostal": "44350", + "codeCommune": "44183", + "libelleAcheminement": "ST MOLF", + "nomCommune": "ST MOLF" }, { - "codePostal": "21540", - "codeCommune": "21679", - "libelleAcheminement": "VIEILMOULIN", - "nomCommune": "VIEILMOULIN" + "codePostal": "44310", + "codeCommune": "44188", + "libelleAcheminement": "ST PHILBERT DE GRAND LIEU", + "nomCommune": "ST PHILBERT DE GRAND LIEU" }, { - "codePostal": "21310", - "codeCommune": "21682", - "libelleAcheminement": "VIEVIGNE", - "nomCommune": "VIEVIGNE" + "codePostal": "44590", + "codeCommune": "44197", + "libelleAcheminement": "SION LES MINES", + "nomCommune": "SION LES MINES" }, { - "codePostal": "21700", - "codeCommune": "21688", - "libelleAcheminement": "VILLARS FONTAINE", - "nomCommune": "VILLARS FONTAINE" + "codePostal": "44390", + "codeCommune": "44205", + "libelleAcheminement": "LES TOUCHES", + "nomCommune": "LES TOUCHES" }, { - "codePostal": "21350", - "codeCommune": "21690", - "libelleAcheminement": "VILLEBERNY", - "nomCommune": "VILLEBERNY" + "codePostal": "44170", + "codeCommune": "44208", + "libelleAcheminement": "TREFFIEUX", + "nomCommune": "TREFFIEUX" }, { - "codePostal": "21450", - "codeCommune": "21695", - "libelleAcheminement": "LA VILLENEUVE LES CONVERS", - "nomCommune": "LA VILLENEUVE LES CONVERS" + "codePostal": "44110", + "codeCommune": "44218", + "libelleAcheminement": "VILLEPOT", + "nomCommune": "VILLEPOT" }, { - "codePostal": "21400", - "codeCommune": "21700", - "libelleAcheminement": "VILLERS PATRAS", - "nomCommune": "VILLERS PATRAS" + "codePostal": "44522", + "codeCommune": "44222", + "libelleAcheminement": "LA ROCHE BLANCHE", + "nomCommune": "LA ROCHE BLANCHE" }, { - "codePostal": "21130", - "codeCommune": "21701", - "libelleAcheminement": "VILLERS ROTIN", - "nomCommune": "VILLERS ROTIN" + "codePostal": "45230", + "codeCommune": "45002", + "libelleAcheminement": "AILLANT SUR MILLERON", + "nomCommune": "AILLANT SUR MILLERON" }, { - "codePostal": "22140", - "codeCommune": "22004", - "libelleAcheminement": "BEGARD", - "nomCommune": "BEGARD" + "codePostal": "45410", + "codeCommune": "45008", + "libelleAcheminement": "ARTENAY", + "nomCommune": "ARTENAY" }, { - "codePostal": "22170", - "codeCommune": "22011", - "libelleAcheminement": "BOQUEHO", - "nomCommune": "BOQUEHO" + "codePostal": "45300", + "codeCommune": "45012", + "libelleAcheminement": "AUDEVILLE", + "nomCommune": "AUDEVILLE" }, { - "codePostal": "22390", - "codeCommune": "22013", - "libelleAcheminement": "BOURBRIAC", - "nomCommune": "BOURBRIAC" + "codePostal": "45480", + "codeCommune": "45015", + "libelleAcheminement": "AUTRUY SUR JUINE", + "nomCommune": "AUTRUY SUR JUINE" }, { - "codePostal": "22170", - "codeCommune": "22019", - "libelleAcheminement": "BRINGOLO", - "nomCommune": "BRINGOLO" + "codePostal": "45130", + "codeCommune": "45024", + "libelleAcheminement": "BAULE", + "nomCommune": "BAULE" }, { - "codePostal": "22480", - "codeCommune": "22029", - "libelleAcheminement": "CANIHUEL", - "nomCommune": "CANIHUEL" + "codePostal": "45270", + "codeCommune": "45031", + "libelleAcheminement": "BELLEGARDE", + "nomCommune": "BELLEGARDE" }, { - "codePostal": "22160", - "codeCommune": "22031", - "libelleAcheminement": "CARNOET", - "nomCommune": "CARNOET" + "codePostal": "45390", + "codeCommune": "45033", + "libelleAcheminement": "BOESSES", + "nomCommune": "BOESSES" }, { - "codePostal": "22630", - "codeCommune": "22035", - "libelleAcheminement": "LES CHAMPS GERAUX", - "nomCommune": "LES CHAMPS GERAUX" + "codePostal": "45290", + "codeCommune": "45036", + "libelleAcheminement": "BOISMORAND", + "nomCommune": "BOISMORAND" }, { - "codePostal": "22400", - "codeCommune": "22044", - "libelleAcheminement": "COETMIEUX", - "nomCommune": "COETMIEUX" + "codePostal": "45290", + "codeCommune": "45036", + "libelleAcheminement": "BOISMORAND", + "nomCommune": "BOISMORAND" }, { - "codePostal": "22330", - "codeCommune": "22046", - "libelleAcheminement": "LE MENE", - "nomCommune": "LE MENE" + "codePostal": "45300", + "codeCommune": "45038", + "libelleAcheminement": "BONDAROY", + "nomCommune": "BONDAROY" }, { - "codePostal": "22330", - "codeCommune": "22046", - "libelleAcheminement": "LE MENE", - "nomCommune": "LE MENE" + "codePostal": "45340", + "codeCommune": "45041", + "libelleAcheminement": "BORDEAUX EN GATINAIS", + "nomCommune": "BORDEAUX EN GATINAIS" }, { - "codePostal": "22330", - "codeCommune": "22046", - "libelleAcheminement": "LE MENE", - "nomCommune": "LE MENE" + "codePostal": "45140", + "codeCommune": "45046", + "libelleAcheminement": "BOULAY LES BARRES", + "nomCommune": "BOULAY LES BARRES" }, { - "codePostal": "22330", - "codeCommune": "22046", - "libelleAcheminement": "LE MENE", - "nomCommune": "LE MENE" + "codePostal": "45460", + "codeCommune": "45049", + "libelleAcheminement": "BOUZY LA FORET", + "nomCommune": "BOUZY LA FORET" }, { - "codePostal": "22320", - "codeCommune": "22047", - "libelleAcheminement": "CORLAY", - "nomCommune": "CORLAY" + "codePostal": "45250", + "codeCommune": "45053", + "libelleAcheminement": "BRIARE", + "nomCommune": "BRIARE" }, { - "codePostal": "22130", - "codeCommune": "22048", - "libelleAcheminement": "CORSEUL", - "nomCommune": "CORSEUL" + "codePostal": "45120", + "codeCommune": "45068", + "libelleAcheminement": "CHALETTE SUR LOING", + "nomCommune": "CHALETTE SUR LOING" }, { - "codePostal": "22130", - "codeCommune": "22049", - "libelleAcheminement": "CREHEN", - "nomCommune": "CREHEN" + "codePostal": "45320", + "codeCommune": "45073", + "libelleAcheminement": "CHANTECOQ", + "nomCommune": "CHANTECOQ" }, { - "codePostal": "22800", - "codeCommune": "22059", - "libelleAcheminement": "LE FOEIL", - "nomCommune": "LE FOEIL" + "codePostal": "45210", + "codeCommune": "45076", + "libelleAcheminement": "LA CHAPELLE ST SEPULCRE", + "nomCommune": "LA CHAPELLE ST SEPULCRE" }, { - "codePostal": "22110", - "codeCommune": "22061", - "libelleAcheminement": "GLOMEL", - "nomCommune": "GLOMEL" + "codePostal": "45110", + "codeCommune": "45082", + "libelleAcheminement": "CHATEAUNEUF SUR LOIRE", + "nomCommune": "CHATEAUNEUF SUR LOIRE" }, { - "codePostal": "22290", - "codeCommune": "22063", - "libelleAcheminement": "GOMMENEC H", - "nomCommune": "GOMMENEC H" + "codePostal": "45480", + "codeCommune": "45086", + "libelleAcheminement": "CHATILLON LE ROI", + "nomCommune": "CHATILLON LE ROI" }, { - "codePostal": "22570", - "codeCommune": "22064", - "libelleAcheminement": "GOUAREC", - "nomCommune": "GOUAREC" + "codePostal": "45430", + "codeCommune": "45089", + "libelleAcheminement": "CHECY", + "nomCommune": "CHECY" }, { - "codePostal": "22350", - "codeCommune": "22071", - "libelleAcheminement": "GUITTE", - "nomCommune": "GUITTE" + "codePostal": "45700", + "codeCommune": "45092", + "libelleAcheminement": "CHEVILLON SUR HUILLARD", + "nomCommune": "CHEVILLON SUR HUILLARD" }, { - "codePostal": "22550", - "codeCommune": "22076", - "libelleAcheminement": "HENANBIHEN", - "nomCommune": "HENANBIHEN" + "codePostal": "45210", + "codeCommune": "45094", + "libelleAcheminement": "CHEVRY SOUS LE BIGNON", + "nomCommune": "CHEVRY SOUS LE BIGNON" }, { - "codePostal": "22270", - "codeCommune": "22084", - "libelleAcheminement": "JUGON LES LACS COMMUNE NOUVELLE", - "nomCommune": "JUGON LES LACS COMMUNE NOUVELLE" + "codePostal": "45370", + "codeCommune": "45098", + "libelleAcheminement": "CLERY ST ANDRE", + "nomCommune": "CLERY ST ANDRE" }, { - "codePostal": "22290", - "codeCommune": "22108", - "libelleAcheminement": "LANLEFF", - "nomCommune": "LANLEFF" + "codePostal": "45490", + "codeCommune": "45103", + "libelleAcheminement": "CORBEILLES", + "nomCommune": "CORBEILLES" }, { - "codePostal": "22580", - "codeCommune": "22109", - "libelleAcheminement": "LANLOUP", - "nomCommune": "LANLOUP" + "codePostal": "45700", + "codeCommune": "45105", + "libelleAcheminement": "CORTRAT", + "nomCommune": "CORTRAT" }, { - "codePostal": "22420", - "codeCommune": "22119", - "libelleAcheminement": "LANVELLEC", - "nomCommune": "LANVELLEC" + "codePostal": "45260", + "codeCommune": "45107", + "libelleAcheminement": "COUDROY", + "nomCommune": "COUDROY" }, { - "codePostal": "22810", - "codeCommune": "22129", - "libelleAcheminement": "LOC ENVEL", - "nomCommune": "LOC ENVEL" + "codePostal": "45190", + "codeCommune": "45116", + "libelleAcheminement": "CRAVANT", + "nomCommune": "CRAVANT" }, { - "codePostal": "22160", - "codeCommune": "22132", - "libelleAcheminement": "LOHUEC", - "nomCommune": "LOHUEC" + "codePostal": "45300", + "codeCommune": "45119", + "libelleAcheminement": "DADONVILLE", + "nomCommune": "DADONVILLE" }, { - "codePostal": "22600", - "codeCommune": "22136", - "libelleAcheminement": "LOUDEAC", - "nomCommune": "LOUDEAC" + "codePostal": "45130", + "codeCommune": "45134", + "libelleAcheminement": "EPIEDS EN BEAUCE", + "nomCommune": "EPIEDS EN BEAUCE" }, { - "codePostal": "22640", - "codeCommune": "22140", - "libelleAcheminement": "LA MALHOURE", - "nomCommune": "LA MALHOURE" + "codePostal": "45320", + "codeCommune": "45136", + "libelleAcheminement": "ERVAUVILLE", + "nomCommune": "ERVAUVILLE" }, { - "codePostal": "22450", - "codeCommune": "22141", - "libelleAcheminement": "MANTALLOT", - "nomCommune": "MANTALLOT" + "codePostal": "45210", + "codeCommune": "45145", + "libelleAcheminement": "FERRIERES EN GATINAIS", + "nomCommune": "FERRIERES EN GATINAIS" }, { - "codePostal": "22230", - "codeCommune": "22147", - "libelleAcheminement": "MERDRIGNAC", - "nomCommune": "MERDRIGNAC" + "codePostal": "45500", + "codeCommune": "45155", + "libelleAcheminement": "GIEN", + "nomCommune": "GIEN" }, { - "codePostal": "22200", - "codeCommune": "22150", - "libelleAcheminement": "LE MERZER", - "nomCommune": "LE MERZER" + "codePostal": "45390", + "codeCommune": "45159", + "libelleAcheminement": "GRANGERMONT", + "nomCommune": "GRANGERMONT" }, { - "codePostal": "22600", - "codeCommune": "22155", - "libelleAcheminement": "LA MOTTE", - "nomCommune": "LA MOTTE" + "codePostal": "45450", + "codeCommune": "45168", + "libelleAcheminement": "INGRANNES", + "nomCommune": "INGRANNES" }, { - "codePostal": "22530", - "codeCommune": "22158", - "libelleAcheminement": "GUERLEDAN", - "nomCommune": "GUERLEDAN" + "codePostal": "45300", + "codeCommune": "45177", + "libelleAcheminement": "LAAS", + "nomCommune": "LAAS" }, { - "codePostal": "22200", - "codeCommune": "22161", - "libelleAcheminement": "PABU", - "nomCommune": "PABU" + "codePostal": "45330", + "codeCommune": "45191", + "libelleAcheminement": "LE MALESHERBOIS", + "nomCommune": "LE MALESHERBOIS" }, { - "codePostal": "22710", - "codeCommune": "22166", - "libelleAcheminement": "PENVENAN", - "nomCommune": "PENVENAN" + "codePostal": "45330", + "codeCommune": "45191", + "libelleAcheminement": "LE MALESHERBOIS", + "nomCommune": "LE MALESHERBOIS" }, { - "codePostal": "22700", - "codeCommune": "22168", - "libelleAcheminement": "PERROS GUIREC", - "nomCommune": "PERROS GUIREC" + "codePostal": "45430", + "codeCommune": "45194", + "libelleAcheminement": "MARDIE", + "nomCommune": "MARDIE" }, { - "codePostal": "22940", - "codeCommune": "22171", - "libelleAcheminement": "PLAINTEL", - "nomCommune": "PLAINTEL" + "codePostal": "45760", + "codeCommune": "45197", + "libelleAcheminement": "MARIGNY LES USAGES", + "nomCommune": "MARIGNY LES USAGES" }, { - "codePostal": "22240", - "codeCommune": "22179", - "libelleAcheminement": "FREHEL", - "nomCommune": "FREHEL" + "codePostal": "45300", + "codeCommune": "45198", + "libelleAcheminement": "MARSAINVILLIERS", + "nomCommune": "MARSAINVILLIERS" }, { - "codePostal": "22170", - "codeCommune": "22182", - "libelleAcheminement": "PLELO", - "nomCommune": "PLELO" + "codePostal": "45210", + "codeCommune": "45201", + "libelleAcheminement": "MERINVILLE", + "nomCommune": "MERINVILLE" }, { - "codePostal": "22210", - "codeCommune": "22183", - "libelleAcheminement": "PLEMET", - "nomCommune": "PLEMET" + "codePostal": "45270", + "codeCommune": "45205", + "libelleAcheminement": "MEZIERES EN GATINAIS", + "nomCommune": "MEZIERES EN GATINAIS" }, { - "codePostal": "22150", - "codeCommune": "22184", - "libelleAcheminement": "PLEMY", - "nomCommune": "PLEMY" + "codePostal": "45340", + "codeCommune": "45215", + "libelleAcheminement": "MONTLIARD", + "nomCommune": "MONTLIARD" }, { - "codePostal": "22190", - "codeCommune": "22187", - "libelleAcheminement": "PLERIN", - "nomCommune": "PLERIN" + "codePostal": "45700", + "codeCommune": "45216", + "libelleAcheminement": "MORMANT SUR VERNISSON", + "nomCommune": "MORMANT SUR VERNISSON" }, { - "codePostal": "22740", - "codeCommune": "22196", - "libelleAcheminement": "PLEUDANIEL", - "nomCommune": "PLEUDANIEL" + "codePostal": "45290", + "codeCommune": "45218", + "libelleAcheminement": "LE MOULINET SUR SOLIN", + "nomCommune": "LE MOULINET SUR SOLIN" }, { - "codePostal": "22690", - "codeCommune": "22197", - "libelleAcheminement": "PLEUDIHEN SUR RANCE", - "nomCommune": "PLEUDIHEN SUR RANCE" + "codePostal": "45270", + "codeCommune": "45219", + "libelleAcheminement": "MOULON", + "nomCommune": "MOULON" }, { - "codePostal": "22560", - "codeCommune": "22198", - "libelleAcheminement": "PLEUMEUR BODOU", - "nomCommune": "PLEUMEUR BODOU" + "codePostal": "45260", + "codeCommune": "45230", + "libelleAcheminement": "NOYERS", + "nomCommune": "NOYERS" }, { - "codePostal": "22560", - "codeCommune": "22198", - "libelleAcheminement": "PLEUMEUR BODOU", - "nomCommune": "PLEUMEUR BODOU" + "codePostal": "45160", + "codeCommune": "45232", + "libelleAcheminement": "OLIVET", + "nomCommune": "OLIVET" }, { - "codePostal": "22130", - "codeCommune": "22200", - "libelleAcheminement": "PLEVEN", - "nomCommune": "PLEVEN" + "codePostal": "45570", + "codeCommune": "45244", + "libelleAcheminement": "OUZOUER SUR LOIRE", + "nomCommune": "OUZOUER SUR LOIRE" }, { - "codePostal": "22620", - "codeCommune": "22210", - "libelleAcheminement": "PLOUBAZLANEC", - "nomCommune": "PLOUBAZLANEC" + "codePostal": "45250", + "codeCommune": "45245", + "libelleAcheminement": "OUZOUER SUR TREZEE", + "nomCommune": "OUZOUER SUR TREZEE" }, { - "codePostal": "22440", - "codeCommune": "22215", - "libelleAcheminement": "PLOUFRAGAN", - "nomCommune": "PLOUFRAGAN" + "codePostal": "45300", + "codeCommune": "45246", + "libelleAcheminement": "PANNECIERES", + "nomCommune": "PANNECIERES" }, { - "codePostal": "22410", - "codeCommune": "22232", - "libelleAcheminement": "PLOURHAN", - "nomCommune": "PLOURHAN" + "codePostal": "45210", + "codeCommune": "45250", + "libelleAcheminement": "PERS EN GATINAIS", + "nomCommune": "PERS EN GATINAIS" }, { - "codePostal": "22160", - "codeCommune": "22243", - "libelleAcheminement": "PLUSQUELLEC", - "nomCommune": "PLUSQUELLEC" + "codePostal": "45290", + "codeCommune": "45257", + "libelleAcheminement": "PRESSIGNY LES PINS", + "nomCommune": "PRESSIGNY LES PINS" }, { - "codePostal": "22140", - "codeCommune": "22245", - "libelleAcheminement": "PLUZUNET", - "nomCommune": "PLUZUNET" + "codePostal": "45300", + "codeCommune": "45260", + "libelleAcheminement": "RAMOULU", + "nomCommune": "RAMOULU" }, { - "codePostal": "22390", - "codeCommune": "22249", - "libelleAcheminement": "PONT MELVEZ", - "nomCommune": "PONT MELVEZ" + "codePostal": "45470", + "codeCommune": "45261", + "libelleAcheminement": "REBRECHIEN", + "nomCommune": "REBRECHIEN" }, { - "codePostal": "22590", - "codeCommune": "22251", - "libelleAcheminement": "PORDIC", - "nomCommune": "PORDIC" + "codePostal": "45600", + "codeCommune": "45268", + "libelleAcheminement": "ST AIGNAN LE JAILLARD", + "nomCommune": "ST AIGNAN LE JAILLARD" }, { - "codePostal": "22210", - "codeCommune": "22255", - "libelleAcheminement": "LA PRENESSAYE", - "nomCommune": "LA PRENESSAYE" + "codePostal": "45140", + "codeCommune": "45285", + "libelleAcheminement": "ST JEAN DE LA RUELLE", + "nomCommune": "ST JEAN DE LA RUELLE" }, { - "codePostal": "22630", - "codeCommune": "22263", - "libelleAcheminement": "LE QUIOU", - "nomCommune": "LE QUIOU" + "codePostal": "45340", + "codeCommune": "45288", + "libelleAcheminement": "ST LOUP DES VIGNES", + "nomCommune": "ST LOUP DES VIGNES" }, { - "codePostal": "22450", - "codeCommune": "22264", - "libelleAcheminement": "LA ROCHE JAUDY", - "nomCommune": "LA ROCHE JAUDY" + "codePostal": "45110", + "codeCommune": "45290", + "libelleAcheminement": "ST MARTIN D ABBAT", + "nomCommune": "ST MARTIN D ABBAT" }, { - "codePostal": "22480", - "codeCommune": "22284", - "libelleAcheminement": "ST CONNAN", - "nomCommune": "ST CONNAN" + "codePostal": "45230", + "codeCommune": "45292", + "libelleAcheminement": "ST MAURICE SUR AVEYRON", + "nomCommune": "ST MAURICE SUR AVEYRON" }, { - "codePostal": "22400", - "codeCommune": "22286", - "libelleAcheminement": "ST DENOUAL", - "nomCommune": "ST DENOUAL" + "codePostal": "45600", + "codeCommune": "45297", + "libelleAcheminement": "ST PERE SUR LOIRE", + "nomCommune": "ST PERE SUR LOIRE" }, { - "codePostal": "22480", - "codeCommune": "22294", - "libelleAcheminement": "ST GILLES PLIGEAUX", - "nomCommune": "ST GILLES PLIGEAUX" + "codePostal": "45770", + "codeCommune": "45302", + "libelleAcheminement": "SARAN", + "nomCommune": "SARAN" }, { - "codePostal": "22510", - "codeCommune": "22296", - "libelleAcheminement": "ST GLEN", - "nomCommune": "ST GLEN" + "codePostal": "45530", + "codeCommune": "45305", + "libelleAcheminement": "SEICHEBRIERES", + "nomCommune": "SEICHEBRIERES" }, { - "codePostal": "22100", - "codeCommune": "22299", - "libelleAcheminement": "ST HELEN", - "nomCommune": "ST HELEN" + "codePostal": "45210", + "codeCommune": "45307", + "libelleAcheminement": "LA SELLE SUR LE BIED", + "nomCommune": "LA SELLE SUR LE BIED" }, { - "codePostal": "22170", - "codeCommune": "22304", - "libelleAcheminement": "ST JEAN KERDANIEL", - "nomCommune": "ST JEAN KERDANIEL" + "codePostal": "45410", + "codeCommune": "45313", + "libelleAcheminement": "SOUGY", + "nomCommune": "SOUGY" }, { - "codePostal": "22350", - "codeCommune": "22305", - "libelleAcheminement": "ST JOUAN DE L ISLE", - "nomCommune": "ST JOUAN DE L ISLE" + "codePostal": "45450", + "codeCommune": "45314", + "libelleAcheminement": "SULLY LA CHAPELLE", + "nomCommune": "SULLY LA CHAPELLE" }, { - "codePostal": "22980", - "codeCommune": "22318", - "libelleAcheminement": "ST MICHEL DE PLELAN", - "nomCommune": "ST MICHEL DE PLELAN" + "codePostal": "45420", + "codeCommune": "45323", + "libelleAcheminement": "THOU", + "nomCommune": "THOU" }, { - "codePostal": "22700", - "codeCommune": "22324", - "libelleAcheminement": "ST QUAY PERROS", - "nomCommune": "ST QUAY PERROS" + "codePostal": "45470", + "codeCommune": "45327", + "libelleAcheminement": "TRAINOU", + "nomCommune": "TRAINOU" }, { - "codePostal": "22100", - "codeCommune": "22327", - "libelleAcheminement": "ST SAMSON SUR RANCE", - "nomCommune": "ST SAMSON SUR RANCE" + "codePostal": "45410", + "codeCommune": "45330", + "libelleAcheminement": "TRINAY", + "nomCommune": "TRINAY" }, { - "codePostal": "22160", - "codeCommune": "22328", - "libelleAcheminement": "ST SERVAIS", - "nomCommune": "ST SERVAIS" + "codePostal": "45290", + "codeCommune": "45332", + "libelleAcheminement": "VARENNES CHANGY", + "nomCommune": "VARENNES CHANGY" }, { - "codePostal": "22230", - "codeCommune": "22333", - "libelleAcheminement": "ST VRAN", - "nomCommune": "ST VRAN" + "codePostal": "45270", + "codeCommune": "45339", + "libelleAcheminement": "VILLEMOUTIERS", + "nomCommune": "VILLEMOUTIERS" }, { - "codePostal": "22220", - "codeCommune": "22347", - "libelleAcheminement": "TREDARZEC", - "nomCommune": "TREDARZEC" + "codePostal": "45300", + "codeCommune": "45347", + "libelleAcheminement": "VRIGNY", + "nomCommune": "VRIGNY" }, { - "codePostal": "22340", - "codeCommune": "22351", - "libelleAcheminement": "TREFFRIN", - "nomCommune": "TREFFRIN" + "codePostal": "46140", + "codeCommune": "46001", + "libelleAcheminement": "ALBAS", + "nomCommune": "ALBAS" }, { - "codePostal": "22540", - "codeCommune": "22354", - "libelleAcheminement": "TREGLAMUS", - "nomCommune": "TREGLAMUS" + "codePostal": "46500", + "codeCommune": "46002", + "libelleAcheminement": "ALBIAC", + "nomCommune": "ALBIAC" }, { - "codePostal": "22660", - "codeCommune": "22363", - "libelleAcheminement": "TRELEVERN", - "nomCommune": "TRELEVERN" + "codePostal": "46500", + "codeCommune": "46003", + "libelleAcheminement": "ALVIGNAC", + "nomCommune": "ALVIGNAC" }, { - "codePostal": "22290", - "codeCommune": "22375", - "libelleAcheminement": "TRESSIGNAUX", - "nomCommune": "TRESSIGNAUX" + "codePostal": "46400", + "codeCommune": "46011", + "libelleAcheminement": "AUTOIRE", + "nomCommune": "AUTOIRE" }, { - "codePostal": "22460", - "codeCommune": "22384", - "libelleAcheminement": "UZEL PRES L OUST", - "nomCommune": "UZEL" + "codePostal": "46120", + "codeCommune": "46012", + "libelleAcheminement": "AYNAC", + "nomCommune": "AYNAC" }, { - "codePostal": "23210", - "codeCommune": "23011", - "libelleAcheminement": "AULON", - "nomCommune": "AULON" + "codePostal": "46140", + "codeCommune": "46022", + "libelleAcheminement": "BELAYE", + "nomCommune": "BELAYE" }, { - "codePostal": "23260", - "codeCommune": "23017", - "libelleAcheminement": "BASVILLE", - "nomCommune": "BASVILLE" + "codePostal": "46230", + "codeCommune": "46023", + "libelleAcheminement": "BELFORT DU QUERCY", + "nomCommune": "BELFORT DU QUERCY" }, { - "codePostal": "23200", - "codeCommune": "23024", - "libelleAcheminement": "BLESSAC", - "nomCommune": "BLESSAC" + "codePostal": "46130", + "codeCommune": "46024", + "libelleAcheminement": "BELMONT BRETENOUX", + "nomCommune": "BELMONT BRETENOUX" }, { - "codePostal": "23400", - "codeCommune": "23030", - "libelleAcheminement": "BOURGANEUF", - "nomCommune": "BOURGANEUF" + "codePostal": "46230", + "codeCommune": "46026", + "libelleAcheminement": "BELMONT STE FOI", + "nomCommune": "BELMONT STE FOI" }, { - "codePostal": "23170", - "codeCommune": "23035", - "libelleAcheminement": "BUDELIERE", - "nomCommune": "BUDELIERE" + "codePostal": "46110", + "codeCommune": "46028", + "libelleAcheminement": "BETAILLE", + "nomCommune": "BETAILLE" }, { - "codePostal": "23320", - "codeCommune": "23036", - "libelleAcheminement": "BUSSIERE DUNOISE", - "nomCommune": "BUSSIERE DUNOISE" + "codePostal": "46500", + "codeCommune": "46030", + "libelleAcheminement": "BIO", + "nomCommune": "BIO" }, { - "codePostal": "23800", - "codeCommune": "23039", - "libelleAcheminement": "LA CELLE DUNOISE", - "nomCommune": "LA CELLE DUNOISE" + "codePostal": "46150", + "codeCommune": "46032", + "libelleAcheminement": "BOISSIERES", + "nomCommune": "BOISSIERES" }, { - "codePostal": "23220", - "codeCommune": "23044", - "libelleAcheminement": "CHAMBON STE CROIX", - "nomCommune": "CHAMBON STE CROIX" + "codePostal": "46330", + "codeCommune": "46040", + "libelleAcheminement": "CABRERETS", + "nomCommune": "CABRERETS" }, { - "codePostal": "23170", - "codeCommune": "23045", - "libelleAcheminement": "CHAMBON SUR VOUEIZE", - "nomCommune": "CHAMBON SUR VOUEIZE" + "codePostal": "46140", + "codeCommune": "46062", + "libelleAcheminement": "CASTELFRANC", + "nomCommune": "CASTELFRANC" }, { - "codePostal": "23240", - "codeCommune": "23047", - "libelleAcheminement": "CHAMBORAND", - "nomCommune": "CHAMBORAND" + "codePostal": "46170", + "codeCommune": "46063", + "libelleAcheminement": "CASTELNAU MONTRATIER STE ALAUZIE", + "nomCommune": "CASTELNAU MONTRATIER STE ALAUZIE" }, { - "codePostal": "23270", - "codeCommune": "23057", - "libelleAcheminement": "CHATELUS MALVALEIX", - "nomCommune": "CHATELUS MALVALEIX" + "codePostal": "46230", + "codeCommune": "46070", + "libelleAcheminement": "CIEURAC", + "nomCommune": "CIEURAC" }, { - "codePostal": "23250", - "codeCommune": "23060", - "libelleAcheminement": "CHAVANAT", - "nomCommune": "CHAVANAT" + "codePostal": "46360", + "codeCommune": "46079", + "libelleAcheminement": "CRAS", + "nomCommune": "CRAS" }, { - "codePostal": "23500", - "codeCommune": "23063", - "libelleAcheminement": "CLAIRAVAUX", - "nomCommune": "CLAIRAVAUX" + "codePostal": "46230", + "codeCommune": "46082", + "libelleAcheminement": "CREMPS", + "nomCommune": "CREMPS" }, { - "codePostal": "23100", - "codeCommune": "23067", - "libelleAcheminement": "LA COURTINE", - "nomCommune": "LA COURTINE" + "codePostal": "46600", + "codeCommune": "46083", + "libelleAcheminement": "CRESSENSAC SARRAZAC", + "nomCommune": "CRESSENSAC SARRAZAC" }, { - "codePostal": "23140", - "codeCommune": "23068", - "libelleAcheminement": "CRESSAT", - "nomCommune": "CRESSAT" + "codePostal": "46340", + "codeCommune": "46087", + "libelleAcheminement": "DEGAGNAC", + "nomCommune": "DEGAGNAC" }, { - "codePostal": "23260", - "codeCommune": "23069", - "libelleAcheminement": "CROCQ", - "nomCommune": "CROCQ" + "codePostal": "46140", + "codeCommune": "46088", + "libelleAcheminement": "DOUELLE", + "nomCommune": "DOUELLE" }, { - "codePostal": "23350", - "codeCommune": "23089", - "libelleAcheminement": "GENOUILLAC", - "nomCommune": "GENOUILLAC" + "codePostal": "46130", + "codeCommune": "46097", + "libelleAcheminement": "ESTAL", + "nomCommune": "ESTAL" }, { - "codePostal": "23340", - "codeCommune": "23090", - "libelleAcheminement": "GENTIOUX PIGEROLLES", - "nomCommune": "GENTIOUX PIGEROLLES" + "codePostal": "46300", + "codeCommune": "46098", + "libelleAcheminement": "FAJOLES", + "nomCommune": "FAJOLES" }, { - "codePostal": "23230", - "codeCommune": "23093", - "libelleAcheminement": "GOUZON", - "nomCommune": "GOUZON" + "codePostal": "46320", + "codeCommune": "46104", + "libelleAcheminement": "FLAUJAC GARE", + "nomCommune": "FLAUJAC GARE" }, { - "codePostal": "23140", - "codeCommune": "23100", - "libelleAcheminement": "JARNAGES", - "nomCommune": "JARNAGES" + "codePostal": "46230", + "codeCommune": "46109", + "libelleAcheminement": "FONTANES", + "nomCommune": "FONTANES" }, { - "codePostal": "23600", - "codeCommune": "23104", - "libelleAcheminement": "LAVAUFRANCHE", - "nomCommune": "LAVAUFRANCHE" + "codePostal": "46310", + "codeCommune": "46113", + "libelleAcheminement": "FRAYSSINET", + "nomCommune": "FRAYSSINET" }, { - "codePostal": "23150", - "codeCommune": "23105", - "libelleAcheminement": "LAVAVEIX LES MINES", - "nomCommune": "LAVAVEIX LES MINES" + "codePostal": "46600", + "codeCommune": "46118", + "libelleAcheminement": "GIGNAC", + "nomCommune": "GIGNAC" }, { - "codePostal": "23150", - "codeCommune": "23107", - "libelleAcheminement": "LEPINAS", - "nomCommune": "LEPINAS" + "codePostal": "46250", + "codeCommune": "46120", + "libelleAcheminement": "GINDOU", + "nomCommune": "GINDOU" }, { - "codePostal": "23600", - "codeCommune": "23108", - "libelleAcheminement": "LEYRAT", - "nomCommune": "LEYRAT" + "codePostal": "46300", + "codeCommune": "46127", + "libelleAcheminement": "GOURDON", + "nomCommune": "GOURDON" }, { - "codePostal": "23360", - "codeCommune": "23112", - "libelleAcheminement": "LOURDOUEIX ST PIERRE", - "nomCommune": "LOURDOUEIX ST PIERRE" + "codePostal": "46150", + "codeCommune": "46134", + "libelleAcheminement": "LES JUNIES", + "nomCommune": "LES JUNIES" }, { - "codePostal": "23170", - "codeCommune": "23114", - "libelleAcheminement": "LUSSAT", - "nomCommune": "LUSSAT" + "codePostal": "46150", + "codeCommune": "46136", + "libelleAcheminement": "LABASTIDE DU VERT", + "nomCommune": "LABASTIDE DU VERT" }, { - "codePostal": "23700", - "codeCommune": "23116", - "libelleAcheminement": "MAINSAT", - "nomCommune": "MAINSAT" + "codePostal": "46240", + "codeCommune": "46138", + "libelleAcheminement": "COEUR DE CAUSSE", + "nomCommune": "COEUR DE CAUSSE" }, { - "codePostal": "23800", - "codeCommune": "23117", - "libelleAcheminement": "MAISON FEYNE", - "nomCommune": "MAISON FEYNE" + "codePostal": "46240", + "codeCommune": "46138", + "libelleAcheminement": "COEUR DE CAUSSE", + "nomCommune": "COEUR DE CAUSSE" }, { - "codePostal": "23400", - "codeCommune": "23133", - "libelleAcheminement": "MONTBOUCHER", - "nomCommune": "MONTBOUCHER" + "codePostal": "46200", + "codeCommune": "46144", + "libelleAcheminement": "LACAVE", + "nomCommune": "LACAVE" }, { - "codePostal": "23800", - "codeCommune": "23141", - "libelleAcheminement": "NAILLAT", - "nomCommune": "NAILLAT" + "codePostal": "46400", + "codeCommune": "46146", + "libelleAcheminement": "LADIRAT", + "nomCommune": "LADIRAT" }, { - "codePostal": "23200", - "codeCommune": "23142", - "libelleAcheminement": "NEOUX", - "nomCommune": "NEOUX" + "codePostal": "46090", + "codeCommune": "46149", + "libelleAcheminement": "LAMAGDELAINE", + "nomCommune": "LAMAGDELAINE" }, { - "codePostal": "23300", - "codeCommune": "23143", - "libelleAcheminement": "NOTH", - "nomCommune": "NOTH" + "codePostal": "46200", + "codeCommune": "46153", + "libelleAcheminement": "LANZAC", + "nomCommune": "LANZAC" }, { - "codePostal": "23140", - "codeCommune": "23149", - "libelleAcheminement": "PARSAC RIMONDEIX", - "nomCommune": "PARSAC RIMONDEIX" + "codePostal": "46090", + "codeCommune": "46156", + "libelleAcheminement": "BELLEFONT LA RAUZE", + "nomCommune": "BELLEFONT LA RAUZE" }, { - "codePostal": "23700", - "codeCommune": "23164", - "libelleAcheminement": "ROUGNAT", - "nomCommune": "ROUGNAT" + "codePostal": "46400", + "codeCommune": "46159", + "libelleAcheminement": "LATOUILLE LENTILLAC", + "nomCommune": "LATOUILLE LENTILLAC" }, { - "codePostal": "23000", - "codeCommune": "23170", - "libelleAcheminement": "SAVENNES", - "nomCommune": "SAVENNES" + "codePostal": "46210", + "codeCommune": "46161", + "libelleAcheminement": "LAURESSES", + "nomCommune": "LAURESSES" }, { - "codePostal": "23190", - "codeCommune": "23190", - "libelleAcheminement": "ST DOMET", - "nomCommune": "ST DOMET" + "codePostal": "46320", + "codeCommune": "46176", + "libelleAcheminement": "LIVERNON", + "nomCommune": "LIVERNON" }, { - "codePostal": "23000", - "codeCommune": "23195", - "libelleAcheminement": "ST FIEL", - "nomCommune": "ST FIEL" + "codePostal": "46100", + "codeCommune": "46180", + "libelleAcheminement": "LUNAN", + "nomCommune": "LUNAN" }, { - "codePostal": "23250", - "codeCommune": "23197", - "libelleAcheminement": "ST GEORGES LA POUGE", - "nomCommune": "ST GEORGES LA POUGE" + "codePostal": "46240", + "codeCommune": "46181", + "libelleAcheminement": "LUNEGARDE", + "nomCommune": "LUNEGARDE" }, { - "codePostal": "23160", - "codeCommune": "23199", - "libelleAcheminement": "ST GERMAIN BEAUPRE", - "nomCommune": "ST GERMAIN BEAUPRE" + "codePostal": "46600", + "codeCommune": "46185", + "libelleAcheminement": "MARTEL", + "nomCommune": "MARTEL" }, { - "codePostal": "23160", - "codeCommune": "23199", - "libelleAcheminement": "ST GERMAIN BEAUPRE", - "nomCommune": "ST GERMAIN BEAUPRE" + "codePostal": "46250", + "codeCommune": "46200", + "libelleAcheminement": "MONTCLERA", + "nomCommune": "MONTCLERA" }, { - "codePostal": "23200", - "codeCommune": "23210", - "libelleAcheminement": "ST MAIXANT", - "nomCommune": "ST MAIXANT" + "codePostal": "46800", + "codeCommune": "46201", + "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", + "nomCommune": "MONTCUQ EN QUERCY BLANC" }, { - "codePostal": "23460", - "codeCommune": "23216", - "libelleAcheminement": "ST MARTIN CHATEAU", - "nomCommune": "ST MARTIN CHATEAU" + "codePostal": "46240", + "codeCommune": "46204", + "libelleAcheminement": "MONTFAUCON", + "nomCommune": "MONTFAUCON" }, { - "codePostal": "23480", - "codeCommune": "23222", - "libelleAcheminement": "ST MICHEL DE VEISSE", - "nomCommune": "ST MICHEL DE VEISSE" + "codePostal": "46800", + "codeCommune": "46206", + "libelleAcheminement": "MONTLAUZUN", + "nomCommune": "MONTLAUZUN" }, { - "codePostal": "23100", - "codeCommune": "23224", - "libelleAcheminement": "ST ORADOUX DE CHIROUZE", - "nomCommune": "ST ORADOUX DE CHIROUZE" + "codePostal": "46270", + "codeCommune": "46207", + "libelleAcheminement": "MONTREDON", + "nomCommune": "MONTREDON" }, { - "codePostal": "23260", - "codeCommune": "23225", - "libelleAcheminement": "ST ORADOUX PRES CROCQ", - "nomCommune": "ST ORADOUX PRES CROCQ" + "codePostal": "46150", + "codeCommune": "46211", + "libelleAcheminement": "NUZEJOULS", + "nomCommune": "NUZEJOULS" }, { - "codePostal": "23150", - "codeCommune": "23229", - "libelleAcheminement": "ST PARDOUX LES CARDS", - "nomCommune": "ST PARDOUX LES CARDS" + "codePostal": "46140", + "codeCommune": "46214", + "libelleAcheminement": "PARNAC", + "nomCommune": "PARNAC" }, { - "codePostal": "23300", - "codeCommune": "23258", - "libelleAcheminement": "VAREILLES", - "nomCommune": "VAREILLES" + "codePostal": "46350", + "codeCommune": "46215", + "libelleAcheminement": "PAYRAC", + "nomCommune": "PAYRAC" }, { - "codePostal": "23170", - "codeCommune": "23261", - "libelleAcheminement": "VIERSAT", - "nomCommune": "VIERSAT" + "codePostal": "46170", + "codeCommune": "46217", + "libelleAcheminement": "PERN", + "nomCommune": "PERN" }, { - "codePostal": "23140", - "codeCommune": "23262", - "libelleAcheminement": "VIGEVILLE", - "nomCommune": "VIGEVILLE" + "codePostal": "46270", + "codeCommune": "46226", + "libelleAcheminement": "PRENDEIGNES", + "nomCommune": "PRENDEIGNES" }, { - "codePostal": "24600", - "codeCommune": "24007", - "libelleAcheminement": "ALLEMANS", - "nomCommune": "ALLEMANS" + "codePostal": "46130", + "codeCommune": "46228", + "libelleAcheminement": "PRUDHOMAT", + "nomCommune": "PRUDHOMAT" }, { - "codePostal": "24290", - "codeCommune": "24014", - "libelleAcheminement": "AUBAS", - "nomCommune": "AUBAS" + "codePostal": "46340", + "codeCommune": "46234", + "libelleAcheminement": "RAMPOUX", + "nomCommune": "RAMPOUX" }, { - "codePostal": "24290", - "codeCommune": "24018", - "libelleAcheminement": "AURIAC DU PERIGORD", - "nomCommune": "AURIAC DU PERIGORD" + "codePostal": "46200", + "codeCommune": "46239", + "libelleAcheminement": "LE ROC", + "nomCommune": "LE ROC" }, { - "codePostal": "24330", - "codeCommune": "24026", - "libelleAcheminement": "BASSILLAC ET AUBEROCHE", - "nomCommune": "BASSILLAC ET AUBEROCHE" + "codePostal": "46210", + "codeCommune": "46244", + "libelleAcheminement": "SABADEL LATRONQUIERE", + "nomCommune": "SABADEL LATRONQUIERE" }, { - "codePostal": "24440", - "codeCommune": "24028", - "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", - "nomCommune": "BEAUMONTOIS EN PERIGORD" + "codePostal": "46250", + "codeCommune": "46250", + "libelleAcheminement": "ST CAPRAIS", + "nomCommune": "ST CAPRAIS" }, { - "codePostal": "24440", - "codeCommune": "24028", - "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", - "nomCommune": "BEAUMONTOIS EN PERIGORD" + "codePostal": "46210", + "codeCommune": "46255", + "libelleAcheminement": "ST CIRGUES", + "nomCommune": "ST CIRGUES" }, { - "codePostal": "24440", - "codeCommune": "24028", - "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", - "nomCommune": "BEAUMONTOIS EN PERIGORD" + "codePostal": "46330", + "codeCommune": "46256", + "libelleAcheminement": "ST CIRQ LAPOPIE", + "nomCommune": "ST CIRQ LAPOPIE" }, { - "codePostal": "24120", - "codeCommune": "24030", - "libelleAcheminement": "BEAUREGARD DE TERRASSON", - "nomCommune": "BEAUREGARD DE TERRASSON" + "codePostal": "46300", + "codeCommune": "46259", + "libelleAcheminement": "ST CLAIR", + "nomCommune": "ST CLAIR" }, { - "codePostal": "24140", - "codeCommune": "24031", - "libelleAcheminement": "BEAUREGARD ET BASSAC", - "nomCommune": "BEAUREGARD ET BASSAC" + "codePostal": "46800", + "codeCommune": "46262", + "libelleAcheminement": "LENDOU EN QUERCY", + "nomCommune": "LENDOU EN QUERCY" }, { - "codePostal": "24140", - "codeCommune": "24034", - "libelleAcheminement": "BELEYMAS", - "nomCommune": "BELEYMAS" + "codePostal": "46800", + "codeCommune": "46262", + "libelleAcheminement": "LENDOU EN QUERCY", + "nomCommune": "LENDOU EN QUERCY" }, { - "codePostal": "24170", - "codeCommune": "24035", - "libelleAcheminement": "PAYS DE BELVES", - "nomCommune": "PAYS DE BELVES" + "codePostal": "46310", + "codeCommune": "46267", + "libelleAcheminement": "ST GERMAIN DU BEL AIR", + "nomCommune": "ST GERMAIN DU BEL AIR" }, { - "codePostal": "24100", - "codeCommune": "24037", - "libelleAcheminement": "BERGERAC", - "nomCommune": "BERGERAC" + "codePostal": "46090", + "codeCommune": "46268", + "libelleAcheminement": "ST GERY VERS", + "nomCommune": "ST GERY VERS" }, { - "codePostal": "24220", - "codeCommune": "24040", - "libelleAcheminement": "BEYNAC ET CAZENAC", - "nomCommune": "BEYNAC ET CAZENAC" + "codePostal": "46330", + "codeCommune": "46268", + "libelleAcheminement": "ST GERY VERS", + "nomCommune": "ST GERY VERS" }, { - "codePostal": "24560", - "codeCommune": "24045", - "libelleAcheminement": "BOISSE", - "nomCommune": "BOISSE" + "codePostal": "46270", + "codeCommune": "46272", + "libelleAcheminement": "ST JEAN MIRABEL", + "nomCommune": "ST JEAN MIRABEL" }, { - "codePostal": "24390", - "codeCommune": "24046", - "libelleAcheminement": "BOISSEUILH", - "nomCommune": "BOISSEUILH" + "codePostal": "46400", + "codeCommune": "46286", + "libelleAcheminement": "ST PAUL DE VERN", + "nomCommune": "ST PAUL DE VERN" }, { - "codePostal": "24480", - "codeCommune": "24052", - "libelleAcheminement": "BOUILLAC", - "nomCommune": "BOUILLAC" + "codePostal": "46100", + "codeCommune": "46288", + "libelleAcheminement": "ST PERDOUX", + "nomCommune": "ST PERDOUX" }, { - "codePostal": "24750", - "codeCommune": "24053", - "libelleAcheminement": "BOULAZAC ISLE MANOIRE", - "nomCommune": "BOULAZAC ISLE MANOIRE" + "codePostal": "46300", + "codeCommune": "46290", + "libelleAcheminement": "ST PROJET", + "nomCommune": "ST PROJET" }, { - "codePostal": "24110", - "codeCommune": "24061", - "libelleAcheminement": "BOURROU", - "nomCommune": "BOURROU" + "codePostal": "46320", + "codeCommune": "46292", + "libelleAcheminement": "ST SIMON", + "nomCommune": "ST SIMON" }, { - "codePostal": "24310", - "codeCommune": "24064", - "libelleAcheminement": "BRANTOME EN PERIGORD", - "nomCommune": "BRANTOME EN PERIGORD" + "codePostal": "46160", + "codeCommune": "46294", + "libelleAcheminement": "ST SULPICE", + "nomCommune": "ST SULPICE" }, { - "codePostal": "24480", - "codeCommune": "24068", - "libelleAcheminement": "LE BUISSON DE CADOUIN", - "nomCommune": "LE BUISSON DE CADOUIN" + "codePostal": "46360", + "codeCommune": "46303", + "libelleAcheminement": "SENAILLAC LAUZES", + "nomCommune": "SENAILLAC LAUZES" }, { - "codePostal": "24480", - "codeCommune": "24068", - "libelleAcheminement": "LE BUISSON DE CADOUIN", - "nomCommune": "LE BUISSON DE CADOUIN" + "codePostal": "46700", + "codeCommune": "46305", + "libelleAcheminement": "SERIGNAC", + "nomCommune": "SERIGNAC" }, { - "codePostal": "24170", - "codeCommune": "24084", - "libelleAcheminement": "CARVES", - "nomCommune": "CARVES" + "codePostal": "46320", + "codeCommune": "46306", + "libelleAcheminement": "SONAC", + "nomCommune": "SONAC" }, { - "codePostal": "24150", - "codeCommune": "24088", - "libelleAcheminement": "CAUSE DE CLERANS", - "nomCommune": "CAUSE DE CLERANS" + "codePostal": "46240", + "codeCommune": "46310", + "libelleAcheminement": "SOULOMES", + "nomCommune": "SOULOMES" }, { - "codePostal": "24600", - "codeCommune": "24090", - "libelleAcheminement": "CELLES", - "nomCommune": "CELLES" + "codePostal": "46120", + "codeCommune": "46314", + "libelleAcheminement": "TERROU", + "nomCommune": "TERROU" }, { - "codePostal": "24530", - "codeCommune": "24096", - "libelleAcheminement": "CHAMPAGNAC DE BELAIR", - "nomCommune": "CHAMPAGNAC DE BELAIR" + "codePostal": "46500", + "codeCommune": "46317", + "libelleAcheminement": "THEGRA", + "nomCommune": "THEGRA" }, { - "codePostal": "24290", - "codeCommune": "24106", - "libelleAcheminement": "LA CHAPELLE AUBAREIL", - "nomCommune": "LA CHAPELLE AUBAREIL" + "codePostal": "46120", + "codeCommune": "46318", + "libelleAcheminement": "THEMINES", + "nomCommune": "THEMINES" }, { - "codePostal": "24320", - "codeCommune": "24110", - "libelleAcheminement": "LA CHAPELLE MONTABOURLET", - "nomCommune": "LA CHAPELLE MONTABOURLET" + "codePostal": "46300", + "codeCommune": "46334", + "libelleAcheminement": "LE VIGAN", + "nomCommune": "LE VIGAN" }, { - "codePostal": "24300", - "codeCommune": "24111", - "libelleAcheminement": "LA CHAPELLE MONTMOREAU", - "nomCommune": "LA CHAPELLE MONTMOREAU" + "codePostal": "46090", + "codeCommune": "46335", + "libelleAcheminement": "VILLESEQUE", + "nomCommune": "VILLESEQUE" }, { - "codePostal": "24390", - "codeCommune": "24113", - "libelleAcheminement": "LA CHAPELLE ST JEAN", - "nomCommune": "LA CHAPELLE ST JEAN" + "codePostal": "46200", + "codeCommune": "46337", + "libelleAcheminement": "MAYRAC", + "nomCommune": "MAYRAC" }, { - "codePostal": "24600", - "codeCommune": "24114", - "libelleAcheminement": "CHASSAIGNES", - "nomCommune": "CHASSAIGNES" + "codePostal": "47800", + "codeCommune": "47005", + "libelleAcheminement": "ALLEMANS DU DROPT", + "nomCommune": "ALLEMANS DU DROPT" }, { - "codePostal": "24460", - "codeCommune": "24115", - "libelleAcheminement": "CHATEAU L EVEQUE", - "nomCommune": "CHATEAU L EVEQUE" + "codePostal": "47700", + "codeCommune": "47010", + "libelleAcheminement": "ANTAGNAC", + "nomCommune": "ANTAGNAC" }, { - "codePostal": "24120", - "codeCommune": "24116", - "libelleAcheminement": "CHATRES", - "nomCommune": "CHATRES" + "codePostal": "47230", + "codeCommune": "47021", + "libelleAcheminement": "BARBASTE", + "nomCommune": "BARBASTE" }, { - "codePostal": "24520", - "codeCommune": "24140", - "libelleAcheminement": "COURS DE PILE", - "nomCommune": "COURS DE PILE" + "codePostal": "47200", + "codeCommune": "47024", + "libelleAcheminement": "BEAUPUY", + "nomCommune": "BEAUPUY" }, { - "codePostal": "24320", - "codeCommune": "24141", - "libelleAcheminement": "COUTURES", - "nomCommune": "COUTURES" + "codePostal": "47260", + "codeCommune": "47042", + "libelleAcheminement": "BRUGNAC", + "nomCommune": "BRUGNAC" }, { - "codePostal": "24220", - "codeCommune": "24142", - "libelleAcheminement": "COUX ET BIGAROQUE MOUZENS", - "nomCommune": "COUX ET BIGAROQUE MOUZENS" + "codePostal": "47330", + "codeCommune": "47044", + "libelleAcheminement": "CAHUZAC", + "nomCommune": "CAHUZAC" }, { - "codePostal": "24640", - "codeCommune": "24147", - "libelleAcheminement": "CUBJAC AUVEZERE VAL D ANS", - "nomCommune": "CUBJAC AUVEZERE VAL D ANS" + "codePostal": "47340", + "codeCommune": "47050", + "libelleAcheminement": "CASSIGNAS", + "nomCommune": "CASSIGNAS" }, { - "codePostal": "24500", - "codeCommune": "24167", - "libelleAcheminement": "EYMET", - "nomCommune": "EYMET" + "codePostal": "47160", + "codeCommune": "47058", + "libelleAcheminement": "CAUBEYRES", + "nomCommune": "CAUBEYRES" }, { - "codePostal": "24130", - "codeCommune": "24182", - "libelleAcheminement": "LE FLEIX", - "nomCommune": "LE FLEIX" + "codePostal": "47120", + "codeCommune": "47059", + "libelleAcheminement": "CAUBON ST SAUVEUR", + "nomCommune": "CAUBON ST SAUVEUR" }, { - "codePostal": "24540", - "codeCommune": "24195", - "libelleAcheminement": "GAUGEAC", - "nomCommune": "GAUGEAC" + "codePostal": "47470", + "codeCommune": "47062", + "libelleAcheminement": "CAUZAC", + "nomCommune": "CAUZAC" }, { - "codePostal": "24350", - "codeCommune": "24200", - "libelleAcheminement": "GRAND BRASSAC", - "nomCommune": "GRAND BRASSAC" + "codePostal": "47330", + "codeCommune": "47063", + "libelleAcheminement": "CAVARC", + "nomCommune": "CAVARC" }, { - "codePostal": "24250", - "codeCommune": "24207", - "libelleAcheminement": "GROLEJAC", - "nomCommune": "GROLEJAC" + "codePostal": "47130", + "codeCommune": "47066", + "libelleAcheminement": "CLERMONT DESSOUS", + "nomCommune": "CLERMONT DESSOUS" }, { - "codePostal": "24300", - "codeCommune": "24209", - "libelleAcheminement": "HAUTEFAYE", - "nomCommune": "HAUTEFAYE" + "codePostal": "47600", + "codeCommune": "47090", + "libelleAcheminement": "ESPIENS", + "nomCommune": "ESPIENS" }, { - "codePostal": "24400", - "codeCommune": "24211", - "libelleAcheminement": "ISSAC", - "nomCommune": "ISSAC" + "codePostal": "47700", + "codeCommune": "47093", + "libelleAcheminement": "FARGUES SUR OURBISE", + "nomCommune": "FARGUES SUR OURBISE" }, { - "codePostal": "24140", - "codeCommune": "24213", - "libelleAcheminement": "JAURE", - "nomCommune": "JAURE" + "codePostal": "47260", + "codeCommune": "47099", + "libelleAcheminement": "FONGRAVE", + "nomCommune": "FONGRAVE" }, { - "codePostal": "24340", - "codeCommune": "24221", - "libelleAcheminement": "RUDEAU LADOSSE", - "nomCommune": "RUDEAU LADOSSE" + "codePostal": "47140", + "codeCommune": "47105", + "libelleAcheminement": "FRESPECH", + "nomCommune": "FRESPECH" }, { - "codePostal": "24520", - "codeCommune": "24224", - "libelleAcheminement": "LAMONZIE MONTASTRUC", - "nomCommune": "LAMONZIE MONTASTRUC" + "codePostal": "47500", + "codeCommune": "47106", + "libelleAcheminement": "FUMEL", + "nomCommune": "FUMEL" }, { - "codePostal": "24170", - "codeCommune": "24230", - "libelleAcheminement": "LARZAC", - "nomCommune": "LARZAC" + "codePostal": "47400", + "codeCommune": "47112", + "libelleAcheminement": "GRATELOUP ST GAYRAND", + "nomCommune": "GRATELOUP ST GAYRAND" }, { - "codePostal": "24350", - "codeCommune": "24243", - "libelleAcheminement": "LISLE", - "nomCommune": "LISLE" + "codePostal": "47250", + "codeCommune": "47114", + "libelleAcheminement": "GREZET CAVAGNAN", + "nomCommune": "GREZET CAVAGNAN" }, { - "codePostal": "24550", - "codeCommune": "24245", - "libelleAcheminement": "LOUBEJAC", - "nomCommune": "LOUBEJAC" + "codePostal": "47340", + "codeCommune": "47117", + "libelleAcheminement": "HAUTEFAGE LA TOUR", + "nomCommune": "HAUTEFAGE LA TOUR" }, { - "codePostal": "24300", - "codeCommune": "24248", - "libelleAcheminement": "LUSSAS ET NONTRONNEAU", - "nomCommune": "LUSSAS ET NONTRONNEAU" + "codePostal": "47180", + "codeCommune": "47120", + "libelleAcheminement": "JUSIX", + "nomCommune": "JUSIX" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "47150", + "codeCommune": "47123", + "libelleAcheminement": "LACAPELLE BIRON", + "nomCommune": "LACAPELLE BIRON" }, { - "codePostal": "24540", - "codeCommune": "24257", - "libelleAcheminement": "MARSALES", - "nomCommune": "MARSALES" + "codePostal": "47150", + "codeCommune": "47124", + "libelleAcheminement": "LACAUSSADE", + "nomCommune": "LACAUSSADE" }, { - "codePostal": "24140", - "codeCommune": "24259", - "libelleAcheminement": "EYRAUD CREMPSE MAURENS", - "nomCommune": "EYRAUD CREMPSE MAURENS" + "codePostal": "47180", + "codeCommune": "47131", + "libelleAcheminement": "LAGUPIE", + "nomCommune": "LAGUPIE" }, { - "codePostal": "24220", - "codeCommune": "24268", - "libelleAcheminement": "MEYRALS", - "nomCommune": "MEYRALS" + "codePostal": "47330", + "codeCommune": "47132", + "libelleAcheminement": "LALANDUSSE", + "nomCommune": "LALANDUSSE" }, { - "codePostal": "24470", - "codeCommune": "24271", - "libelleAcheminement": "MILHAC DE NONTRON", - "nomCommune": "MILHAC DE NONTRON" + "codePostal": "47800", + "codeCommune": "47136", + "libelleAcheminement": "LAPERCHE", + "nomCommune": "LAPERCHE" }, { - "codePostal": "24560", - "codeCommune": "24278", - "libelleAcheminement": "MONMADALES", - "nomCommune": "MONMADALES" + "codePostal": "47410", + "codeCommune": "47142", + "libelleAcheminement": "LAUZUN", + "nomCommune": "LAUZUN" }, { - "codePostal": "24560", - "codeCommune": "24279", - "libelleAcheminement": "MONMARVES", - "nomCommune": "MONMARVES" + "codePostal": "47120", + "codeCommune": "47151", + "libelleAcheminement": "LOUBES BERNAC", + "nomCommune": "LOUBES BERNAC" }, { - "codePostal": "24700", - "codeCommune": "24297", - "libelleAcheminement": "MOULIN NEUF", - "nomCommune": "MOULIN NEUF" + "codePostal": "47290", + "codeCommune": "47152", + "libelleAcheminement": "LOUGRATTE", + "nomCommune": "LOUGRATTE" }, { - "codePostal": "24590", - "codeCommune": "24301", - "libelleAcheminement": "NADAILLAC", - "nomCommune": "NADAILLAC" + "codePostal": "47380", + "codeCommune": "47182", + "libelleAcheminement": "MONTASTRUC", + "nomCommune": "MONTASTRUC" }, { - "codePostal": "24440", - "codeCommune": "24307", - "libelleAcheminement": "NAUSSANNES", - "nomCommune": "NAUSSANNES" + "codePostal": "47330", + "codeCommune": "47183", + "libelleAcheminement": "MONTAURIOL", + "nomCommune": "MONTAURIOL" }, { - "codePostal": "24660", - "codeCommune": "24312", - "libelleAcheminement": "SANILHAC", - "nomCommune": "SANILHAC" + "codePostal": "47500", + "codeCommune": "47185", + "libelleAcheminement": "MONTAYRAL", + "nomCommune": "MONTAYRAL" }, { - "codePostal": "24410", - "codeCommune": "24316", - "libelleAcheminement": "PARCOUL CHENAUD", - "nomCommune": "PARCOUL CHENAUD" + "codePostal": "47360", + "codeCommune": "47190", + "libelleAcheminement": "MONTPEZAT", + "nomCommune": "MONTPEZAT" }, { - "codePostal": "24210", - "codeCommune": "24324", - "libelleAcheminement": "PEYRIGNAC", - "nomCommune": "PEYRIGNAC" + "codePostal": "47800", + "codeCommune": "47194", + "libelleAcheminement": "MOUSTIER", + "nomCommune": "MOUSTIER" }, { - "codePostal": "24370", - "codeCommune": "24325", - "libelleAcheminement": "PECHS DE L ESPERANCE", - "nomCommune": "PECHS DE L ESPERANCE" + "codePostal": "47440", + "codeCommune": "47198", + "libelleAcheminement": "PAILLOLES", + "nomCommune": "PAILLOLES" }, { - "codePostal": "24150", - "codeCommune": "24338", - "libelleAcheminement": "PRESSIGNAC VICQ", - "nomCommune": "PRESSIGNAC VICQ" + "codePostal": "47150", + "codeCommune": "47202", + "libelleAcheminement": "PAULHIAC", + "nomCommune": "PAULHIAC" }, { - "codePostal": "24160", - "codeCommune": "24339", - "libelleAcheminement": "PREYSSAC D EXCIDEUIL", - "nomCommune": "PREYSSAC D EXCIDEUIL" + "codePostal": "47380", + "codeCommune": "47206", + "libelleAcheminement": "PINEL HAUTERIVE", + "nomCommune": "PINEL HAUTERIVE" }, { - "codePostal": "24130", - "codeCommune": "24340", - "libelleAcheminement": "PRIGONRIEUX", - "nomCommune": "PRIGONRIEUX" + "codePostal": "47480", + "codeCommune": "47209", + "libelleAcheminement": "PONT DU CASSE", + "nomCommune": "PONT DU CASSE" }, { - "codePostal": "24140", - "codeCommune": "24345", - "libelleAcheminement": "QUEYSSAC", - "nomCommune": "QUEYSSAC" + "codePostal": "47700", + "codeCommune": "47212", + "libelleAcheminement": "POUSSIGNAC", + "nomCommune": "POUSSIGNAC" }, { - "codePostal": "24240", - "codeCommune": "24349", - "libelleAcheminement": "RAZAC DE SAUSSIGNAC", - "nomCommune": "RAZAC DE SAUSSIGNAC" + "codePostal": "47340", + "codeCommune": "47228", + "libelleAcheminement": "ST ANTOINE DE FICALBA", + "nomCommune": "ST ANTOINE DE FICALBA" }, { - "codePostal": "24240", - "codeCommune": "24351", - "libelleAcheminement": "RIBAGNAC", - "nomCommune": "RIBAGNAC" + "codePostal": "47120", + "codeCommune": "47229", + "libelleAcheminement": "ST ASTIER", + "nomCommune": "ST ASTIER" }, { - "codePostal": "24580", - "codeCommune": "24356", - "libelleAcheminement": "ROUFFIGNAC ST CERNIN DE REILHAC", - "nomCommune": "ROUFFIGNAC ST CERNIN DE REILHAC" + "codePostal": "47350", + "codeCommune": "47232", + "libelleAcheminement": "ST BARTHELEMY D AGENAIS", + "nomCommune": "ST BARTHELEMY D AGENAIS" }, { - "codePostal": "24170", - "codeCommune": "24360", - "libelleAcheminement": "SAGELAT", - "nomCommune": "SAGELAT" + "codePostal": "47300", + "codeCommune": "47237", + "libelleAcheminement": "STE COLOMBE DE VILLENEUVE", + "nomCommune": "STE COLOMBE DE VILLENEUVE" }, { - "codePostal": "24520", - "codeCommune": "24361", - "libelleAcheminement": "ST AGNE", - "nomCommune": "ST AGNE" + "codePostal": "47380", + "codeCommune": "47239", + "libelleAcheminement": "ST ETIENNE DE FOUGERES", + "nomCommune": "ST ETIENNE DE FOUGERES" }, { - "codePostal": "24510", - "codeCommune": "24362", - "libelleAcheminement": "VAL DE LOUYRE ET CAUDEAU", - "nomCommune": "VAL DE LOUYRE ET CAUDEAU" + "codePostal": "47500", + "codeCommune": "47242", + "libelleAcheminement": "ST FRONT SUR LEMANCE", + "nomCommune": "ST FRONT SUR LEMANCE" }, { - "codePostal": "24120", - "codeCommune": "24364", - "libelleAcheminement": "COLY ST AMAND", - "nomCommune": "COLY ST AMAND" + "codePostal": "47110", + "codeCommune": "47252", + "libelleAcheminement": "STE LIVRADE SUR LOT", + "nomCommune": "STE LIVRADE SUR LOT" }, { - "codePostal": "24410", - "codeCommune": "24376", - "libelleAcheminement": "ST AULAYE PUYMANGOU", - "nomCommune": "ST AULAYE PUYMANGOU" + "codePostal": "47290", + "codeCommune": "47259", + "libelleAcheminement": "ST MAURICE DE LESTAPEL", + "nomCommune": "ST MAURICE DE LESTAPEL" }, { - "codePostal": "24440", - "codeCommune": "24379", - "libelleAcheminement": "ST AVIT SENIEUR", - "nomCommune": "ST AVIT SENIEUR" + "codePostal": "47290", + "codeCommune": "47265", + "libelleAcheminement": "ST PASTOUR", + "nomCommune": "ST PASTOUR" }, { - "codePostal": "24360", - "codeCommune": "24381", - "libelleAcheminement": "ST BARTHELEMY DE BUSSIERE", - "nomCommune": "ST BARTHELEMY DE BUSSIERE" + "codePostal": "47170", + "codeCommune": "47266", + "libelleAcheminement": "ST PE ST SIMON", + "nomCommune": "ST PE ST SIMON" }, { - "codePostal": "24560", - "codeCommune": "24385", - "libelleAcheminement": "ST CERNIN DE LABARDE", - "nomCommune": "ST CERNIN DE LABARDE" + "codePostal": "47340", + "codeCommune": "47273", + "libelleAcheminement": "ST ROBERT", + "nomCommune": "ST ROBERT" }, { - "codePostal": "24260", - "codeCommune": "24388", - "libelleAcheminement": "ST CHAMASSY", - "nomCommune": "ST CHAMASSY" + "codePostal": "47270", + "codeCommune": "47281", + "libelleAcheminement": "ST URCISSE", + "nomCommune": "ST URCISSE" }, { - "codePostal": "24340", - "codeCommune": "24403", - "libelleAcheminement": "ST FELIX DE BOURDEILLES", - "nomCommune": "ST FELIX DE BOURDEILLES" + "codePostal": "47310", + "codeCommune": "47282", + "libelleAcheminement": "ST VINCENT DE LAMONTJOIE", + "nomCommune": "ST VINCENT DE LAMONTJOIE" }, { - "codePostal": "24460", - "codeCommune": "24408", - "libelleAcheminement": "ST FRONT D ALEMPS", - "nomCommune": "ST FRONT D ALEMPS" + "codePostal": "47150", + "codeCommune": "47284", + "libelleAcheminement": "SALLES", + "nomCommune": "SALLES" }, { - "codePostal": "24300", - "codeCommune": "24410", - "libelleAcheminement": "ST FRONT LA RIVIERE", - "nomCommune": "ST FRONT LA RIVIERE" + "codePostal": "47120", + "codeCommune": "47294", + "libelleAcheminement": "SAVIGNAC DE DURAS", + "nomCommune": "SAVIGNAC DE DURAS" }, { - "codePostal": "24300", - "codeCommune": "24411", - "libelleAcheminement": "ST FRONT SUR NIZONNE", - "nomCommune": "ST FRONT SUR NIZONNE" + "codePostal": "47120", + "codeCommune": "47303", + "libelleAcheminement": "SOUMENSAC", + "nomCommune": "SOUMENSAC" }, { - "codePostal": "24590", - "codeCommune": "24412", - "libelleAcheminement": "ST GENIES", - "nomCommune": "ST GENIES" + "codePostal": "47200", + "codeCommune": "47304", + "libelleAcheminement": "TAILLEBOURG", + "nomCommune": "TAILLEBOURG" }, { - "codePostal": "24330", - "codeCommune": "24421", - "libelleAcheminement": "ST GEYRAC", - "nomCommune": "ST GEYRAC" + "codePostal": "47370", + "codeCommune": "47307", + "libelleAcheminement": "THEZAC", + "nomCommune": "THEZAC" }, { - "codePostal": "24190", - "codeCommune": "24424", - "libelleAcheminement": "ST JEAN D ATAUX", - "nomCommune": "ST JEAN D ATAUX" + "codePostal": "47230", + "codeCommune": "47308", + "libelleAcheminement": "THOUARS SUR GARONNE", + "nomCommune": "THOUARS SUR GARONNE" }, { - "codePostal": "24140", - "codeCommune": "24426", - "libelleAcheminement": "ST JEAN D ESTISSAC", - "nomCommune": "ST JEAN D ESTISSAC" + "codePostal": "47380", + "codeCommune": "47309", + "libelleAcheminement": "TOMBEBOEUF", + "nomCommune": "TOMBEBOEUF" }, { - "codePostal": "24370", - "codeCommune": "24432", - "libelleAcheminement": "ST JULIEN DE LAMPON", - "nomCommune": "ST JULIEN DE LAMPON" + "codePostal": "47260", + "codeCommune": "47317", + "libelleAcheminement": "VERTEUIL D AGENAIS", + "nomCommune": "VERTEUIL D AGENAIS" }, { - "codePostal": "24170", - "codeCommune": "24438", - "libelleAcheminement": "ST LAURENT LA VALLEE", - "nomCommune": "ST LAURENT LA VALLEE" + "codePostal": "47230", + "codeCommune": "47318", + "libelleAcheminement": "VIANNE", + "nomCommune": "VIANNE" }, { - "codePostal": "24560", - "codeCommune": "24441", - "libelleAcheminement": "ST LEON D ISSIGEAC", - "nomCommune": "ST LEON D ISSIGEAC" + "codePostal": "47370", + "codeCommune": "47328", + "libelleAcheminement": "ST GEORGES", + "nomCommune": "ST GEORGES" }, { - "codePostal": "24290", - "codeCommune": "24443", - "libelleAcheminement": "ST LEON SUR VEZERE", - "nomCommune": "ST LEON SUR VEZERE" + "codePostal": "48130", + "codeCommune": "48009", + "libelleAcheminement": "PEYRE EN AUBRAC", + "nomCommune": "PEYRE EN AUBRAC" }, { - "codePostal": "24610", - "codeCommune": "24454", - "libelleAcheminement": "ST MARTIN DE GURSON", - "nomCommune": "ST MARTIN DE GURSON" + "codePostal": "48200", + "codeCommune": "48012", + "libelleAcheminement": "LES MONTS VERTS", + "nomCommune": "LES MONTS VERTS" }, { - "codePostal": "24600", - "codeCommune": "24460", - "libelleAcheminement": "ST MEARD DE DRONE", - "nomCommune": "ST MEARD DE DRONE" + "codePostal": "48000", + "codeCommune": "48013", + "libelleAcheminement": "BADAROUX", + "nomCommune": "BADAROUX" }, { - "codePostal": "24380", - "codeCommune": "24468", - "libelleAcheminement": "ST MICHEL DE VILLADEIX", - "nomCommune": "ST MICHEL DE VILLADEIX" + "codePostal": "48000", + "codeCommune": "48016", + "libelleAcheminement": "BALSIEGES", + "nomCommune": "BALSIEGES" }, { - "codePostal": "24530", - "codeCommune": "24474", - "libelleAcheminement": "ST PANCRACE", - "nomCommune": "ST PANCRACE" + "codePostal": "48500", + "codeCommune": "48017", + "libelleAcheminement": "BANASSAC CANILHAC", + "nomCommune": "BANASSAC CANILHAC" }, { - "codePostal": "24470", - "codeCommune": "24479", - "libelleAcheminement": "ST PARDOUX LA RIVIERE", - "nomCommune": "ST PARDOUX LA RIVIERE" + "codePostal": "48000", + "codeCommune": "48018", + "libelleAcheminement": "BARJAC", + "nomCommune": "BARJAC" }, { - "codePostal": "24410", - "codeCommune": "24490", - "libelleAcheminement": "ST PRIVAT EN PERIGORD", - "nomCommune": "ST PRIVAT EN PERIGORD" + "codePostal": "48400", + "codeCommune": "48050", + "libelleAcheminement": "BEDOUES COCURES", + "nomCommune": "BEDOUES COCURES" }, { - "codePostal": "24160", - "codeCommune": "24493", - "libelleAcheminement": "ST RAPHAEL", - "nomCommune": "ST RAPHAEL" + "codePostal": "48110", + "codeCommune": "48067", + "libelleAcheminement": "GABRIAC", + "nomCommune": "GABRIAC" }, { - "codePostal": "24600", - "codeCommune": "24504", - "libelleAcheminement": "ST SULPICE DE ROUMAGNAC", - "nomCommune": "ST SULPICE DE ROUMAGNAC" + "codePostal": "48600", + "codeCommune": "48070", + "libelleAcheminement": "GRANDRIEU", + "nomCommune": "GRANDRIEU" }, { - "codePostal": "24270", - "codeCommune": "24519", - "libelleAcheminement": "SARLANDE", - "nomCommune": "SARLANDE" + "codePostal": "48150", + "codeCommune": "48074", + "libelleAcheminement": "HURES LA PARADE", + "nomCommune": "HURES LA PARADE" }, { - "codePostal": "24420", - "codeCommune": "24521", - "libelleAcheminement": "SARLIAC SUR L ISLE", - "nomCommune": "SARLIAC SUR L ISLE" + "codePostal": "48140", + "codeCommune": "48077", + "libelleAcheminement": "JULIANGES", + "nomCommune": "JULIANGES" }, { - "codePostal": "24260", - "codeCommune": "24524", - "libelleAcheminement": "SAVIGNAC DE MIREMONT", - "nomCommune": "SAVIGNAC DE MIREMONT" + "codePostal": "48250", + "codeCommune": "48086", + "libelleAcheminement": "LUC", + "nomCommune": "LUC" }, { - "codePostal": "24300", - "codeCommune": "24525", - "libelleAcheminement": "SAVIGNAC DE NONTRON", - "nomCommune": "SAVIGNAC DE NONTRON" + "codePostal": "48100", + "codeCommune": "48087", + "libelleAcheminement": "PRINSUEJOLS MALBOUZON", + "nomCommune": "PRINSUEJOLS MALBOUZON" }, { - "codePostal": "24500", - "codeCommune": "24536", - "libelleAcheminement": "SINGLEYRAC", - "nomCommune": "SINGLEYRAC" + "codePostal": "48270", + "codeCommune": "48087", + "libelleAcheminement": "PRINSUEJOLS MALBOUZON", + "nomCommune": "PRINSUEJOLS MALBOUZON" }, { - "codePostal": "24360", - "codeCommune": "24541", - "libelleAcheminement": "SOUDAT", - "nomCommune": "SOUDAT" + "codePostal": "48210", + "codeCommune": "48094", + "libelleAcheminement": "MASSEGROS CAUSSES GORGES", + "nomCommune": "MASSEGROS CAUSSES GORGES" }, { - "codePostal": "24400", - "codeCommune": "24543", - "libelleAcheminement": "SOURZAC", - "nomCommune": "SOURZAC" + "codePostal": "48500", + "codeCommune": "48094", + "libelleAcheminement": "MASSEGROS CAUSSES GORGES", + "nomCommune": "MASSEGROS CAUSSES GORGES" }, { - "codePostal": "24620", - "codeCommune": "24544", - "libelleAcheminement": "TAMNIES", - "nomCommune": "TAMNIES" + "codePostal": "48170", + "codeCommune": "48100", + "libelleAcheminement": "MONTBEL", + "nomCommune": "MONTBEL" }, { - "codePostal": "24390", - "codeCommune": "24545", - "libelleAcheminement": "TEILLOTS", - "nomCommune": "TEILLOTS" + "codePostal": "48310", + "codeCommune": "48106", + "libelleAcheminement": "NOALHAC", + "nomCommune": "NOALHAC" }, { - "codePostal": "24210", - "codeCommune": "24550", - "libelleAcheminement": "THENON", - "nomCommune": "THENON" + "codePostal": "48300", + "codeCommune": "48112", + "libelleAcheminement": "PIERREFICHE", + "nomCommune": "PIERREFICHE" }, { - "codePostal": "24510", - "codeCommune": "24558", - "libelleAcheminement": "TREMOLAT", - "nomCommune": "TREMOLAT" + "codePostal": "48220", + "codeCommune": "48116", + "libelleAcheminement": "PONT DE MONTVERT SUD MONT LOZERE", + "nomCommune": "PONT DE MONTVERT SUD MONT LOZERE" }, { - "codePostal": "24620", - "codeCommune": "24559", - "libelleAcheminement": "TURSAC", - "nomCommune": "TURSAC" + "codePostal": "48100", + "codeCommune": "48124", + "libelleAcheminement": "RECOULES DE FUMAS", + "nomCommune": "RECOULES DE FUMAS" }, { - "codePostal": "24800", - "codeCommune": "24567", - "libelleAcheminement": "VAUNAC", - "nomCommune": "VAUNAC" + "codePostal": "48700", + "codeCommune": "48127", + "libelleAcheminement": "MONTS DE RANDON", + "nomCommune": "MONTS DE RANDON" }, { - "codePostal": "24380", - "codeCommune": "24571", - "libelleAcheminement": "VERGT", - "nomCommune": "VERGT" + "codePostal": "48700", + "codeCommune": "48127", + "libelleAcheminement": "MONTS DE RANDON", + "nomCommune": "MONTS DE RANDON" }, { - "codePostal": "24120", - "codeCommune": "24580", - "libelleAcheminement": "VILLAC", - "nomCommune": "VILLAC" + "codePostal": "48200", + "codeCommune": "48128", + "libelleAcheminement": "RIMEIZE", + "nomCommune": "RIMEIZE" }, { - "codePostal": "25320", - "codeCommune": "25001", - "libelleAcheminement": "ABBANS DESSOUS", - "nomCommune": "ABBANS DESSOUS" + "codePostal": "48300", + "codeCommune": "48129", + "libelleAcheminement": "ROCLES", + "nomCommune": "ROCLES" }, { - "codePostal": "25440", - "codeCommune": "25002", - "libelleAcheminement": "ABBANS DESSUS", - "nomCommune": "ABBANS DESSUS" + "codePostal": "48120", + "codeCommune": "48132", + "libelleAcheminement": "ST ALBAN SUR LIMAGNOLE", + "nomCommune": "ST ALBAN SUR LIMAGNOLE" }, { - "codePostal": "25750", - "codeCommune": "25008", - "libelleAcheminement": "AIBRE", - "nomCommune": "AIBRE" + "codePostal": "48600", + "codeCommune": "48139", + "libelleAcheminement": "ST BONNET LAVAL", + "nomCommune": "ST BONNET LAVAL" }, { - "codePostal": "25300", - "codeCommune": "25012", - "libelleAcheminement": "LES ALLIES", - "nomCommune": "LES ALLIES" + "codePostal": "48210", + "codeCommune": "48146", + "libelleAcheminement": "GORGES DU TARN CAUSSES", + "nomCommune": "GORGES DU TARN CAUSSES" }, { - "codePostal": "25220", - "codeCommune": "25014", - "libelleAcheminement": "AMAGNEY", - "nomCommune": "AMAGNEY" + "codePostal": "48320", + "codeCommune": "48146", + "libelleAcheminement": "GORGES DU TARN CAUSSES", + "nomCommune": "GORGES DU TARN CAUSSES" }, { - "codePostal": "25750", - "codeCommune": "25022", - "libelleAcheminement": "ARCEY", - "nomCommune": "ARCEY" + "codePostal": "48160", + "codeCommune": "48152", + "libelleAcheminement": "VENTALON EN CEVENNES", + "nomCommune": "VENTALON EN CEVENNES" }, { - "codePostal": "25520", - "codeCommune": "25029", - "libelleAcheminement": "AUBONNE", - "nomCommune": "AUBONNE" + "codePostal": "48370", + "codeCommune": "48155", + "libelleAcheminement": "ST GERMAIN DE CALBERTE", + "nomCommune": "ST GERMAIN DE CALBERTE" }, { - "codePostal": "25110", - "codeCommune": "25032", - "libelleAcheminement": "AUTECHAUX", - "nomCommune": "AUTECHAUX" + "codePostal": "48190", + "codeCommune": "48157", + "libelleAcheminement": "STE HELENE", + "nomCommune": "STE HELENE" }, { - "codePostal": "25380", - "codeCommune": "25046", - "libelleAcheminement": "BATTENANS VARIN", - "nomCommune": "BATTENANS VARIN" + "codePostal": "48100", + "codeCommune": "48165", + "libelleAcheminement": "ST LAURENT DE MURET", + "nomCommune": "ST LAURENT DE MURET" }, { - "codePostal": "25550", - "codeCommune": "25048", - "libelleAcheminement": "BAVANS", - "nomCommune": "BAVANS" + "codePostal": "48100", + "codeCommune": "48168", + "libelleAcheminement": "ST LEGER DE PEYRE", + "nomCommune": "ST LEGER DE PEYRE" }, { - "codePostal": "25500", - "codeCommune": "25050", - "libelleAcheminement": "LE BELIEU", - "nomCommune": "LE BELIEU" + "codePostal": "48160", + "codeCommune": "48170", + "libelleAcheminement": "ST MARTIN DE BOUBAUX", + "nomCommune": "ST MARTIN DE BOUBAUX" }, { - "codePostal": "25430", - "codeCommune": "25053", - "libelleAcheminement": "BELVOIR", - "nomCommune": "BELVOIR" + "codePostal": "48170", + "codeCommune": "48182", + "libelleAcheminement": "ST SAUVEUR DE GINESTOUX", + "nomCommune": "ST SAUVEUR DE GINESTOUX" }, { - "codePostal": "25410", - "codeCommune": "25055", - "libelleAcheminement": "BERTHELANGE", - "nomCommune": "BERTHELANGE" + "codePostal": "48340", + "codeCommune": "48192", + "libelleAcheminement": "TRELANS", + "nomCommune": "TRELANS" }, { - "codePostal": "25200", - "codeCommune": "25057", - "libelleAcheminement": "BETHONCOURT", - "nomCommune": "BETHONCOURT" + "codePostal": "48400", + "codeCommune": "48193", + "libelleAcheminement": "VEBRON", + "nomCommune": "VEBRON" }, { - "codePostal": "25640", - "codeCommune": "25065", - "libelleAcheminement": "BLARIANS", - "nomCommune": "BLARIANS" + "codePostal": "49260", + "codeCommune": "49009", + "libelleAcheminement": "ANTOIGNE", + "nomCommune": "ANTOIGNE" }, { - "codePostal": "25150", - "codeCommune": "25082", - "libelleAcheminement": "BOURGUIGNON", - "nomCommune": "BOURGUIGNON" + "codePostal": "49240", + "codeCommune": "49015", + "libelleAcheminement": "AVRILLE", + "nomCommune": "AVRILLE" }, { - "codePostal": "25640", - "codeCommune": "25086", - "libelleAcheminement": "BRAILLANS", - "nomCommune": "BRAILLANS" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "25440", - "codeCommune": "25090", - "libelleAcheminement": "BRERES", - "nomCommune": "BRERES" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "25240", - "codeCommune": "25121", - "libelleAcheminement": "CHAPELLE DES BOIS", - "nomCommune": "CHAPELLE DES BOIS" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "25270", - "codeCommune": "25122", - "libelleAcheminement": "CHAPELLE D HUIN", - "nomCommune": "CHAPELLE D HUIN" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "25140", - "codeCommune": "25127", - "libelleAcheminement": "CHARQUEMONT", - "nomCommune": "CHARQUEMONT" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "25870", - "codeCommune": "25133", - "libelleAcheminement": "CHATILLON LE DUC", - "nomCommune": "CHATILLON LE DUC" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "25440", - "codeCommune": "25143", - "libelleAcheminement": "CHAY", - "nomCommune": "CHAY" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "25620", - "codeCommune": "25152", - "libelleAcheminement": "LA CHEVILLOTTE", - "nomCommune": "LA CHEVILLOTTE" + "codePostal": "49600", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "25330", - "codeCommune": "25155", - "libelleAcheminement": "CLERON", - "nomCommune": "CLERON" + "codePostal": "49600", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "25640", - "codeCommune": "25163", - "libelleAcheminement": "CORCELLE MIESLOT", - "nomCommune": "CORCELLE MIESLOT" + "codePostal": "49390", + "codeCommune": "49045", + "libelleAcheminement": "LA BREILLE LES PINS", + "nomCommune": "LA BREILLE LES PINS" }, { - "codePostal": "25560", - "codeCommune": "25176", - "libelleAcheminement": "COURVIERES", - "nomCommune": "COURVIERES" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "25340", - "codeCommune": "25177", - "libelleAcheminement": "CROSEY LE GRAND", - "nomCommune": "CROSEY LE GRAND" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "25240", - "codeCommune": "25179", - "libelleAcheminement": "LE CROUZET", - "nomCommune": "LE CROUZET" + "codePostal": "49260", + "codeCommune": "49060", + "libelleAcheminement": "BELLEVIGNE LES CHATEAUX", + "nomCommune": "BELLEVIGNE LES CHATEAUX" }, { - "codePostal": "25110", - "codeCommune": "25183", - "libelleAcheminement": "CUSANCE", - "nomCommune": "CUSANCE" + "codePostal": "49220", + "codeCommune": "49064", + "libelleAcheminement": "CHAMBELLAY", + "nomCommune": "CHAMBELLAY" }, { - "codePostal": "25440", - "codeCommune": "25185", - "libelleAcheminement": "CUSSEY SUR LISON", - "nomCommune": "CUSSEY SUR LISON" + "codePostal": "49220", + "codeCommune": "49067", + "libelleAcheminement": "CHENILLE CHAMPTEUSSE", + "nomCommune": "CHENILLE CHAMPTEUSSE" }, { - "codePostal": "25490", - "codeCommune": "25190", - "libelleAcheminement": "DAMPIERRE LES BOIS", - "nomCommune": "DAMPIERRE LES BOIS" + "codePostal": "49270", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "25300", - "codeCommune": "25201", - "libelleAcheminement": "DOMMARTIN", - "nomCommune": "DOMMARTIN" + "codePostal": "49330", + "codeCommune": "49080", + "libelleAcheminement": "LES HAUTS D ANJOU", + "nomCommune": "LES HAUTS D ANJOU" }, { - "codePostal": "25300", - "codeCommune": "25204", - "libelleAcheminement": "DOUBS", - "nomCommune": "DOUBS" + "codePostal": "49290", + "codeCommune": "49082", + "libelleAcheminement": "CHAUDEFONDS SUR LAYON", + "nomCommune": "CHAUDEFONDS SUR LAYON" }, { - "codePostal": "25480", - "codeCommune": "25212", - "libelleAcheminement": "ECOLE VALENTIN", - "nomCommune": "ECOLE VALENTIN" + "codePostal": "49380", + "codeCommune": "49086", + "libelleAcheminement": "TERRANJOU", + "nomCommune": "TERRANJOU" }, { - "codePostal": "25110", - "codeCommune": "25221", - "libelleAcheminement": "ESNANS", - "nomCommune": "ESNANS" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "25620", - "codeCommune": "25222", - "libelleAcheminement": "ETALANS", - "nomCommune": "ETALANS" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "25330", - "codeCommune": "25223", - "libelleAcheminement": "ETERNOZ", - "nomCommune": "ETERNOZ" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "25250", - "codeCommune": "25226", - "libelleAcheminement": "ETRAPPE", - "nomCommune": "ETRAPPE" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "25330", - "codeCommune": "25241", - "libelleAcheminement": "FLAGEY", - "nomCommune": "FLAGEY" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "25640", - "codeCommune": "25242", - "libelleAcheminement": "FLAGEY RIGNEY", - "nomCommune": "FLAGEY RIGNEY" + "codePostal": "49300", + "codeCommune": "49099", + "libelleAcheminement": "CHOLET", + "nomCommune": "CHOLET" }, { - "codePostal": "25190", - "codeCommune": "25244", - "libelleAcheminement": "FLEUREY", - "nomCommune": "FLEUREY" + "codePostal": "49690", + "codeCommune": "49109", + "libelleAcheminement": "CORON", + "nomCommune": "CORON" }, { - "codePostal": "25340", - "codeCommune": "25246", - "libelleAcheminement": "FONTAINE LES CLERVAL", - "nomCommune": "FONTAINE LES CLERVAL" + "codePostal": "49700", + "codeCommune": "49125", + "libelleAcheminement": "DOUE EN ANJOU", + "nomCommune": "DOUE EN ANJOU" }, { - "codePostal": "25250", - "codeCommune": "25264", - "libelleAcheminement": "GEMONVAL", - "nomCommune": "GEMONVAL" + "codePostal": "49700", + "codeCommune": "49125", + "libelleAcheminement": "DOUE EN ANJOU", + "nomCommune": "DOUE EN ANJOU" }, { - "codePostal": "25250", - "codeCommune": "25266", - "libelleAcheminement": "GENEY", - "nomCommune": "GENEY" + "codePostal": "49460", + "codeCommune": "49130", + "libelleAcheminement": "ECUILLE", + "nomCommune": "ECUILLE" }, { - "codePostal": "25510", - "codeCommune": "25268", - "libelleAcheminement": "GERMEFONTAINE", - "nomCommune": "GERMEFONTAINE" + "codePostal": "49250", + "codeCommune": "49138", + "libelleAcheminement": "LES BOIS D ANJOU", + "nomCommune": "LES BOIS D ANJOU" }, { - "codePostal": "25360", - "codeCommune": "25273", - "libelleAcheminement": "GLAMONDANS", - "nomCommune": "GLAMONDANS" + "codePostal": "49220", + "codeCommune": "49155", + "libelleAcheminement": "GREZ NEUVILLE", + "nomCommune": "GREZ NEUVILLE" }, { - "codePostal": "25190", - "codeCommune": "25275", - "libelleAcheminement": "GLERE", - "nomCommune": "GLERE" + "codePostal": "49140", + "codeCommune": "49163", + "libelleAcheminement": "JARZE VILLAGES", + "nomCommune": "JARZE VILLAGES" }, { - "codePostal": "25360", - "codeCommune": "25278", - "libelleAcheminement": "GONSANS", - "nomCommune": "GONSANS" + "codePostal": "49330", + "codeCommune": "49170", + "libelleAcheminement": "JUVARDEIL", + "nomCommune": "JUVARDEIL" }, { - "codePostal": "25570", - "codeCommune": "25285", - "libelleAcheminement": "GRAND COMBE CHATELEU", - "nomCommune": "GRAND COMBE CHATELEU" + "codePostal": "49430", + "codeCommune": "49174", + "libelleAcheminement": "HUILLE LEZIGNE", + "nomCommune": "HUILLE LEZIGNE" }, { - "codePostal": "25790", - "codeCommune": "25296", - "libelleAcheminement": "LES GRAS", - "nomCommune": "LES GRAS" + "codePostal": "49360", + "codeCommune": "49192", + "libelleAcheminement": "MAULEVRIER", + "nomCommune": "MAULEVRIER" }, { - "codePostal": "25390", - "codeCommune": "25301", - "libelleAcheminement": "GUYANS VENNES", - "nomCommune": "GUYANS VENNES" + "codePostal": "49600", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "25680", - "codeCommune": "25310", - "libelleAcheminement": "HUANNE MONTMARTIN", - "nomCommune": "HUANNE MONTMARTIN" + "codePostal": "49600", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "25440", - "codeCommune": "25330", - "libelleAcheminement": "LAVANS QUINGEY", - "nomCommune": "LAVANS QUINGEY" + "codePostal": "49640", + "codeCommune": "49220", + "libelleAcheminement": "MORANNES SUR SARTHE DAUMERAY", + "nomCommune": "MORANNES SUR SARTHE DAUMERAY" }, { - "codePostal": "25270", - "codeCommune": "25334", - "libelleAcheminement": "LEVIER", - "nomCommune": "LEVIER" + "codePostal": "49610", + "codeCommune": "49222", + "libelleAcheminement": "MOZE SUR LOUET", + "nomCommune": "MOZE SUR LOUET" }, { - "codePostal": "25330", - "codeCommune": "25338", - "libelleAcheminement": "LIZINE", - "nomCommune": "LIZINE" + "codePostal": "49680", + "codeCommune": "49224", + "libelleAcheminement": "NEUILLE", + "nomCommune": "NEUILLE" }, { - "codePostal": "25370", - "codeCommune": "25348", - "libelleAcheminement": "LONGEVILLES MONT D OR", - "nomCommune": "LONGEVILLES MONT D OR" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "25390", - "codeCommune": "25349", - "libelleAcheminement": "LORAY", - "nomCommune": "LORAY" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "25160", - "codeCommune": "25361", - "libelleAcheminement": "MALBUISSON", - "nomCommune": "MALBUISSON" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "25160", - "codeCommune": "25362", - "libelleAcheminement": "MALPAS", - "nomCommune": "MALPAS" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "25250", - "codeCommune": "25365", - "libelleAcheminement": "MANCENANS", - "nomCommune": "MANCENANS" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "25120", - "codeCommune": "25366", - "libelleAcheminement": "MANCENANS LIZERNE", - "nomCommune": "MANCENANS LIZERNE" + "codePostal": "49340", + "codeCommune": "49231", + "libelleAcheminement": "NUAILLE", + "nomCommune": "NUAILLE" }, { - "codePostal": "25640", - "codeCommune": "25368", - "libelleAcheminement": "MARCHAUX CHAUDEFONTAINE", - "nomCommune": "MARCHAUX CHAUDEFONTAINE" + "codePostal": "49124", + "codeCommune": "49241", + "libelleAcheminement": "LE PLESSIS GRAMMOIRE", + "nomCommune": "LE PLESSIS GRAMMOIRE" }, { - "codePostal": "25700", - "codeCommune": "25370", - "libelleAcheminement": "MATHAY", - "nomCommune": "MATHAY" + "codePostal": "49290", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "25250", - "codeCommune": "25372", - "libelleAcheminement": "MEDIERE", - "nomCommune": "MEDIERE" + "codePostal": "49410", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "25410", - "codeCommune": "25374", - "libelleAcheminement": "MERCEY LE GRAND", - "nomCommune": "MERCEY LE GRAND" + "codePostal": "49410", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "25480", - "codeCommune": "25381", - "libelleAcheminement": "MISEREY SALINES", - "nomCommune": "MISEREY SALINES" + "codePostal": "49420", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "25680", - "codeCommune": "25384", - "libelleAcheminement": "MONDON", - "nomCommune": "MONDON" + "codePostal": "49350", + "codeCommune": "49261", + "libelleAcheminement": "GENNES VAL DE LOIRE", + "nomCommune": "GENNES VAL DE LOIRE" }, { - "codePostal": "25680", - "codeCommune": "25385", - "libelleAcheminement": "MONTAGNEY SERVIGNEY", - "nomCommune": "MONTAGNEY SERVIGNEY" + "codePostal": "49350", + "codeCommune": "49261", + "libelleAcheminement": "GENNES VAL DE LOIRE", + "nomCommune": "GENNES VAL DE LOIRE" }, { - "codePostal": "25120", - "codeCommune": "25392", - "libelleAcheminement": "MONT DE VOUGNEY", - "nomCommune": "MONT DE VOUGNEY" + "codePostal": "49400", + "codeCommune": "49262", + "libelleAcheminement": "ROU MARSON", + "nomCommune": "ROU MARSON" }, { - "codePostal": "25660", - "codeCommune": "25395", - "libelleAcheminement": "MONTFAUCON", - "nomCommune": "MONTFAUCON" + "codePostal": "49280", + "codeCommune": "49269", + "libelleAcheminement": "ST CHRISTOPHE DU BOIS", + "nomCommune": "ST CHRISTOPHE DU BOIS" }, { - "codePostal": "25500", - "codeCommune": "25403", - "libelleAcheminement": "MONTLEBON", - "nomCommune": "MONTLEBON" + "codePostal": "49170", + "codeCommune": "49284", + "libelleAcheminement": "ST GERMAIN DES PRES", + "nomCommune": "ST GERMAIN DES PRES" }, { - "codePostal": "25660", - "codeCommune": "25406", - "libelleAcheminement": "MONTROND LE CHATEAU", - "nomCommune": "MONTROND LE CHATEAU" + "codePostal": "49230", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "25360", - "codeCommune": "25418", - "libelleAcheminement": "NANCRAY", - "nomCommune": "NANCRAY" + "codePostal": "49450", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "25580", - "codeCommune": "25424", - "libelleAcheminement": "LES PREMIERS SAPINS", - "nomCommune": "LES PREMIERS SAPINS" + "codePostal": "49610", + "codeCommune": "49308", + "libelleAcheminement": "ST MELAINE SUR AUBANCE", + "nomCommune": "ST MELAINE SUR AUBANCE" }, { - "codePostal": "25500", - "codeCommune": "25425", - "libelleAcheminement": "NOEL CERNEUX", - "nomCommune": "NOEL CERNEUX" + "codePostal": "49800", + "codeCommune": "49326", + "libelleAcheminement": "SARRIGNE", + "nomCommune": "SARRIGNE" }, { - "codePostal": "25170", - "codeCommune": "25427", - "libelleAcheminement": "NOIRONTE", - "nomCommune": "NOIRONTE" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "25600", - "codeCommune": "25428", - "libelleAcheminement": "NOMMAY", - "nomCommune": "NOMMAY" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "25410", - "codeCommune": "25438", - "libelleAcheminement": "OSSELLE ROUTELLE", - "nomCommune": "OSSELLE ROUTELLE" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "25520", - "codeCommune": "25440", - "libelleAcheminement": "OUHANS", - "nomCommune": "OUHANS" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "25160", - "codeCommune": "25442", - "libelleAcheminement": "OYE ET PALLET", - "nomCommune": "OYE ET PALLET" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "25440", - "codeCommune": "25443", - "libelleAcheminement": "PALANTINE", - "nomCommune": "PALANTINE" + "codePostal": "49140", + "codeCommune": "49333", + "libelleAcheminement": "SEICHES SUR LE LOIR", + "nomCommune": "SEICHES SUR LE LOIR" }, { - "codePostal": "25870", - "codeCommune": "25444", - "libelleAcheminement": "PALISE", - "nomCommune": "PALISE" + "codePostal": "49140", + "codeCommune": "49334", + "libelleAcheminement": "SERMAISE", + "nomCommune": "SERMAISE" }, { - "codePostal": "25190", - "codeCommune": "25449", - "libelleAcheminement": "PESEUX", - "nomCommune": "PESEUX" + "codePostal": "49700", + "codeCommune": "49359", + "libelleAcheminement": "LES ULMES", + "nomCommune": "LES ULMES" }, { - "codePostal": "25240", - "codeCommune": "25451", - "libelleAcheminement": "PETITE CHAUX", - "nomCommune": "PETITE CHAUX" + "codePostal": "49400", + "codeCommune": "49362", + "libelleAcheminement": "VARRAINS", + "nomCommune": "VARRAINS" }, { - "codePostal": "25300", - "codeCommune": "25462", - "libelleAcheminement": "PONTARLIER", - "nomCommune": "PONTARLIER" + "codePostal": "49260", + "codeCommune": "49364", + "libelleAcheminement": "VAUDELNAY", + "nomCommune": "VAUDELNAY" }, { - "codePostal": "25640", - "codeCommune": "25468", - "libelleAcheminement": "POULIGNEY LUSANS", - "nomCommune": "POULIGNEY LUSANS" + "codePostal": "49340", + "codeCommune": "49371", + "libelleAcheminement": "VEZINS", + "nomCommune": "VEZINS" }, { - "codePostal": "25250", - "codeCommune": "25470", - "libelleAcheminement": "LA PRETIERE", - "nomCommune": "LA PRETIERE" + "codePostal": "50660", + "codeCommune": "50015", + "libelleAcheminement": "ANNOVILLE", + "nomCommune": "ANNOVILLE" }, { - "codePostal": "25430", - "codeCommune": "25478", - "libelleAcheminement": "RANDEVILLERS", - "nomCommune": "RANDEVILLERS" + "codePostal": "50500", + "codeCommune": "50024", + "libelleAcheminement": "AUXAIS", + "nomCommune": "AUXAIS" }, { - "codePostal": "25160", - "codeCommune": "25486", - "libelleAcheminement": "REMORAY BOUJEONS", - "nomCommune": "REMORAY BOUJEONS" + "codePostal": "50000", + "codeCommune": "50034", + "libelleAcheminement": "BAUDRE", + "nomCommune": "BAUDRE" }, { - "codePostal": "25240", - "codeCommune": "25501", - "libelleAcheminement": "RONDEFONTAINE", - "nomCommune": "RONDEFONTAINE" + "codePostal": "50320", + "codeCommune": "50038", + "libelleAcheminement": "BEAUCHAMPS", + "nomCommune": "BEAUCHAMPS" }, { - "codePostal": "25680", - "codeCommune": "25505", - "libelleAcheminement": "ROUGEMONT", - "nomCommune": "ROUGEMONT" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "25520", - "codeCommune": "25517", - "libelleAcheminement": "ST GORGON MAIN", - "nomCommune": "ST GORGON MAIN" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "25190", - "codeCommune": "25519", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "25550", - "codeCommune": "25521", - "libelleAcheminement": "ST JULIEN LES MONTBELIARD", - "nomCommune": "ST JULIEN LES MONTBELIARD" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "25260", - "codeCommune": "25524", - "libelleAcheminement": "ST MAURICE COLOMBIER", - "nomCommune": "ST MAURICE COLOMBIER" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "25160", - "codeCommune": "25525", - "libelleAcheminement": "ST POINT LAC", - "nomCommune": "ST POINT LAC" + "codePostal": "50460", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "25430", - "codeCommune": "25529", - "libelleAcheminement": "SANCEY", - "nomCommune": "SANCEY" + "codePostal": "50810", + "codeCommune": "50046", + "libelleAcheminement": "BERIGNY", + "nomCommune": "BERIGNY" }, { - "codePostal": "25170", - "codeCommune": "25536", - "libelleAcheminement": "SAUVAGNEY", - "nomCommune": "SAUVAGNEY" + "codePostal": "50800", + "codeCommune": "50060", + "libelleAcheminement": "LA BLOUTIERE", + "nomCommune": "LA BLOUTIERE" }, { - "codePostal": "25290", - "codeCommune": "25537", - "libelleAcheminement": "SCEY MAISIERES", - "nomCommune": "SCEY MAISIERES" + "codePostal": "50110", + "codeCommune": "50077", + "libelleAcheminement": "BRETTEVILLE", + "nomCommune": "BRETTEVILLE" }, { - "codePostal": "25270", - "codeCommune": "25541", - "libelleAcheminement": "SEPTFONTAINES", - "nomCommune": "SEPTFONTAINES" + "codePostal": "50260", + "codeCommune": "50082", + "libelleAcheminement": "BRICQUEBEC EN COTENTIN", + "nomCommune": "BRICQUEBEC EN COTENTIN" }, { - "codePostal": "25770", - "codeCommune": "25542", - "libelleAcheminement": "SERRE LES SAPINS", - "nomCommune": "SERRE LES SAPINS" + "codePostal": "50700", + "codeCommune": "50087", + "libelleAcheminement": "BRIX", + "nomCommune": "BRIX" }, { - "codePostal": "25330", - "codeCommune": "25545", - "libelleAcheminement": "SILLEY AMANCEY", - "nomCommune": "SILLEY AMANCEY" + "codePostal": "50640", + "codeCommune": "50090", + "libelleAcheminement": "BUAIS LES MONTS", + "nomCommune": "BUAIS LES MONTS" }, { - "codePostal": "25110", - "codeCommune": "25546", - "libelleAcheminement": "SILLEY BLEFOND", - "nomCommune": "SILLEY BLEFOND" + "codePostal": "50750", + "codeCommune": "50095", + "libelleAcheminement": "CANISY", + "nomCommune": "CANISY" }, { - "codePostal": "25600", - "codeCommune": "25547", - "libelleAcheminement": "SOCHAUX", - "nomCommune": "SOCHAUX" + "codePostal": "50330", + "codeCommune": "50096", + "libelleAcheminement": "CANTELOUP", + "nomCommune": "CANTELOUP" }, { - "codePostal": "25190", - "codeCommune": "25551", - "libelleAcheminement": "SOULCE CERNAY", - "nomCommune": "SOULCE CERNAY" + "codePostal": "50500", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "25250", - "codeCommune": "25552", - "libelleAcheminement": "SOURANS", - "nomCommune": "SOURANS" + "codePostal": "50500", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "25380", - "codeCommune": "25554", - "libelleAcheminement": "SURMONT", - "nomCommune": "SURMONT" + "codePostal": "50320", + "codeCommune": "50115", + "libelleAcheminement": "LE GRIPPON", + "nomCommune": "LE GRIPPON" }, { - "codePostal": "25620", - "codeCommune": "25558", - "libelleAcheminement": "TARCENAY FOUCHERANS", - "nomCommune": "TARCENAY FOUCHERANS" + "codePostal": "50510", + "codeCommune": "50120", + "libelleAcheminement": "CHANTELOUP", + "nomCommune": "CHANTELOUP" }, { - "codePostal": "25470", - "codeCommune": "25559", - "libelleAcheminement": "THIEBOUHANS", - "nomCommune": "THIEBOUHANS" + "codePostal": "50800", + "codeCommune": "50121", + "libelleAcheminement": "LA CHAPELLE CECELIN", + "nomCommune": "LA CHAPELLE CECELIN" }, { - "codePostal": "25870", - "codeCommune": "25563", - "libelleAcheminement": "THUREY LE MONT", - "nomCommune": "THUREY LE MONT" + "codePostal": "50470", + "codeCommune": "50129", + "libelleAcheminement": "CHERBOURG EN COTENTIN", + "nomCommune": "CHERBOURG EN COTENTIN" }, { - "codePostal": "25370", - "codeCommune": "25565", - "libelleAcheminement": "TOUILLON ET LOUTELET", - "nomCommune": "TOUILLON ET LOUTELET" + "codePostal": "50800", + "codeCommune": "50130", + "libelleAcheminement": "CHERENCE LE HERON", + "nomCommune": "CHERENCE LE HERON" }, { - "codePostal": "25680", - "codeCommune": "25567", - "libelleAcheminement": "TOURNANS", - "nomCommune": "TOURNANS" + "codePostal": "50420", + "codeCommune": "50139", + "libelleAcheminement": "CONDE SUR VIRE", + "nomCommune": "CONDE SUR VIRE" }, { - "codePostal": "25220", - "codeCommune": "25575", - "libelleAcheminement": "VAIRE", - "nomCommune": "VAIRE" + "codePostal": "50330", + "codeCommune": "50142", + "libelleAcheminement": "VICQ SUR MER", + "nomCommune": "VICQ SUR MER" }, { - "codePostal": "25220", - "codeCommune": "25575", - "libelleAcheminement": "VAIRE", - "nomCommune": "VAIRE" + "codePostal": "50200", + "codeCommune": "50145", + "libelleAcheminement": "COURCY", + "nomCommune": "COURCY" }, { - "codePostal": "25220", - "codeCommune": "25575", - "libelleAcheminement": "VAIRE", - "nomCommune": "VAIRE" + "codePostal": "50680", + "codeCommune": "50148", + "libelleAcheminement": "COUVAINS", + "nomCommune": "COUVAINS" }, { - "codePostal": "25800", - "codeCommune": "25578", - "libelleAcheminement": "VALDAHON", - "nomCommune": "VALDAHON" + "codePostal": "50750", + "codeCommune": "50159", + "libelleAcheminement": "DANGY", + "nomCommune": "DANGY" }, { - "codePostal": "25640", - "codeCommune": "25579", - "libelleAcheminement": "VAL DE ROULANS", - "nomCommune": "VAL DE ROULANS" + "codePostal": "50530", + "codeCommune": "50167", + "libelleAcheminement": "DRAGEY RONTHON", + "nomCommune": "DRAGEY RONTHON" }, { - "codePostal": "25700", - "codeCommune": "25580", - "libelleAcheminement": "VALENTIGNEY", - "nomCommune": "VALENTIGNEY" + "codePostal": "50840", + "codeCommune": "50178", + "libelleAcheminement": "FERMANVILLE", + "nomCommune": "FERMANVILLE" }, { - "codePostal": "25870", - "codeCommune": "25582", - "libelleAcheminement": "VALLEROY", - "nomCommune": "VALLEROY" + "codePostal": "50800", + "codeCommune": "50185", + "libelleAcheminement": "FLEURY", + "nomCommune": "FLEURY" }, { - "codePostal": "25230", - "codeCommune": "25586", - "libelleAcheminement": "VANDONCOURT", - "nomCommune": "VANDONCOURT" + "codePostal": "50310", + "codeCommune": "50190", + "libelleAcheminement": "FONTENAY SUR MER", + "nomCommune": "FONTENAY SUR MER" }, { - "codePostal": "25410", - "codeCommune": "25594", - "libelleAcheminement": "VELESMES ESSARTS", - "nomCommune": "VELESMES ESSARTS" + "codePostal": "50450", + "codeCommune": "50197", + "libelleAcheminement": "GAVRAY SUR SIENNE", + "nomCommune": "GAVRAY SUR SIENNE" }, { - "codePostal": "25430", - "codeCommune": "25597", - "libelleAcheminement": "VELLEVANS", - "nomCommune": "VELLEVANS" + "codePostal": "50390", + "codeCommune": "50207", + "libelleAcheminement": "GOLLEVILLE", + "nomCommune": "GOLLEVILLE" }, { - "codePostal": "25300", - "codeCommune": "25609", - "libelleAcheminement": "VERRIERES DE JOUX", - "nomCommune": "VERRIERES DE JOUX" + "codePostal": "50200", + "codeCommune": "50215", + "libelleAcheminement": "GOUVILLE SUR MER", + "nomCommune": "GOUVILLE SUR MER" }, { - "codePostal": "50390", - "codeCommune": "50233", - "libelleAcheminement": "HAUTTEVILLE BOCAGE", - "nomCommune": "HAUTTEVILLE BOCAGE" + "codePostal": "50370", + "codeCommune": "50217", + "libelleAcheminement": "LE GRAND CELLAND", + "nomCommune": "LE GRAND CELLAND" }, { - "codePostal": "50250", - "codeCommune": "50236", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "50400", + "codeCommune": "50218", + "libelleAcheminement": "GRANVILLE", + "nomCommune": "GRANVILLE" + }, + { + "codePostal": "50340", + "codeCommune": "50222", + "libelleAcheminement": "GROSVILLE", + "nomCommune": "GROSVILLE" + }, + { + "codePostal": "50450", + "codeCommune": "50228", + "libelleAcheminement": "HAMBYE", + "nomCommune": "HAMBYE" + }, + { + "codePostal": "50590", + "codeCommune": "50231", + "libelleAcheminement": "HAUTEVILLE SUR MER", + "nomCommune": "HAUTEVILLE SUR MER" + }, + { + "codePostal": "50270", + "codeCommune": "50235", + "libelleAcheminement": "LA HAYE D ECTOT", + "nomCommune": "LA HAYE D ECTOT" }, { "codePostal": "50250", @@ -12108,10 +12132,28 @@ "nomCommune": "LA HAYE" }, { - "codePostal": "50340", - "codeCommune": "50240", - "libelleAcheminement": "HELLEVILLE", - "nomCommune": "HELLEVILLE" + "codePostal": "50320", + "codeCommune": "50237", + "libelleAcheminement": "LA HAYE PESNEL", + "nomCommune": "LA HAYE PESNEL" + }, + { + "codePostal": "50700", + "codeCommune": "50241", + "libelleAcheminement": "HEMEVEZ", + "nomCommune": "HEMEVEZ" + }, + { + "codePostal": "50200", + "codeCommune": "50243", + "libelleAcheminement": "HEUGUEVILLE SUR SIENNE", + "nomCommune": "HEUGUEVILLE SUR SIENNE" + }, + { + "codePostal": "50480", + "codeCommune": "50246", + "libelleAcheminement": "HIESVILLE", + "nomCommune": "HIESVILLE" }, { "codePostal": "50540", @@ -12131,6 +12173,24 @@ "libelleAcheminement": "ISIGNY LE BUAT", "nomCommune": "ISIGNY LE BUAT" }, + { + "codePostal": "50520", + "codeCommune": "50260", + "libelleAcheminement": "JUVIGNY LES VALLEES", + "nomCommune": "JUVIGNY LES VALLEES" + }, + { + "codePostal": "50520", + "codeCommune": "50260", + "libelleAcheminement": "JUVIGNY LES VALLEES", + "nomCommune": "JUVIGNY LES VALLEES" + }, + { + "codePostal": "50430", + "codeCommune": "50265", + "libelleAcheminement": "LAULNE", + "nomCommune": "LAULNE" + }, { "codePostal": "50450", "codeCommune": "50266", @@ -12144,28 +12204,10 @@ "nomCommune": "LESSAY" }, { - "codePostal": "50250", - "codeCommune": "50273", - "libelleAcheminement": "MONTSENELLE", - "nomCommune": "MONTSENELLE" - }, - { - "codePostal": "50250", - "codeCommune": "50273", - "libelleAcheminement": "MONTSENELLE", - "nomCommune": "MONTSENELLE" - }, - { - "codePostal": "50370", - "codeCommune": "50275", - "libelleAcheminement": "LES LOGES SUR BRECEY", - "nomCommune": "LES LOGES SUR BRECEY" - }, - { - "codePostal": "50530", - "codeCommune": "50276", - "libelleAcheminement": "LOLIF", - "nomCommune": "LOLIF" + "codePostal": "50310", + "codeCommune": "50268", + "libelleAcheminement": "LESTRE", + "nomCommune": "LESTRE" }, { "codePostal": "50570", @@ -12174,16 +12216,10 @@ "nomCommune": "LE LOREY" }, { - "codePostal": "50680", - "codeCommune": "50283", - "libelleAcheminement": "LA LUZERNE", - "nomCommune": "LA LUZERNE" - }, - { - "codePostal": "50570", - "codeCommune": "50292", - "libelleAcheminement": "MARIGNY LE LOZON", - "nomCommune": "MARIGNY LE LOZON" + "codePostal": "50190", + "codeCommune": "50289", + "libelleAcheminement": "MARCHESIEUX", + "nomCommune": "MARCHESIEUX" }, { "codePostal": "50330", @@ -12192,34 +12228,22 @@ "nomCommune": "MAUPERTUS SUR MER" }, { - "codePostal": "50580", - "codeCommune": "50299", - "libelleAcheminement": "LE MESNIL", - "nomCommune": "LE MESNIL" - }, - { - "codePostal": "50110", - "codeCommune": "50305", - "libelleAcheminement": "LE MESNIL AU VAL", - "nomCommune": "LE MESNIL AU VAL" + "codePostal": "50410", + "codeCommune": "50334", + "libelleAcheminement": "MONTABOT", + "nomCommune": "MONTABOT" }, { "codePostal": "50450", - "codeCommune": "50311", - "libelleAcheminement": "LE MESNIL GARNIER", - "nomCommune": "LE MESNIL GARNIER" - }, - { - "codePostal": "50270", - "codeCommune": "50332", - "libelleAcheminement": "LES MOITIERS D ALLONNE", - "nomCommune": "LES MOITIERS D ALLONNE" + "codeCommune": "50336", + "libelleAcheminement": "MONTAIGU LES BOIS", + "nomCommune": "MONTAIGU LES BOIS" }, { - "codePostal": "50310", - "codeCommune": "50341", - "libelleAcheminement": "MONTEBOURG", - "nomCommune": "MONTEBOURG" + "codePostal": "50240", + "codeCommune": "50347", + "libelleAcheminement": "MONTJOIE ST MARTIN", + "nomCommune": "MONTJOIE ST MARTIN" }, { "codePostal": "50590", @@ -12228,55 +12252,49 @@ "nomCommune": "MONTMARTIN SUR MER" }, { - "codePostal": "50680", - "codeCommune": "50356", - "libelleAcheminement": "MOON SUR ELLE", - "nomCommune": "MOON SUR ELLE" - }, - { - "codePostal": "50140", - "codeCommune": "50359", - "libelleAcheminement": "MORTAIN BOCAGE", - "nomCommune": "MORTAIN BOCAGE" - }, - { - "codePostal": "50140", - "codeCommune": "50359", - "libelleAcheminement": "MORTAIN BOCAGE", - "nomCommune": "MORTAIN BOCAGE" + "codePostal": "50170", + "codeCommune": "50353", + "libelleAcheminement": "LE MONT ST MICHEL", + "nomCommune": "LE MONT ST MICHEL" }, { - "codePostal": "50700", - "codeCommune": "50360", - "libelleAcheminement": "MORVILLE", - "nomCommune": "MORVILLE" + "codePostal": "50320", + "codeCommune": "50361", + "libelleAcheminement": "LA MOUCHE", + "nomCommune": "LA MOUCHE" }, { - "codePostal": "50420", + "codePostal": "50860", "codeCommune": "50363", "libelleAcheminement": "MOYON VILLAGES", "nomCommune": "MOYON VILLAGES" }, { - "codePostal": "50260", - "codeCommune": "50369", - "libelleAcheminement": "NEGREVILLE", - "nomCommune": "NEGREVILLE" + "codePostal": "50290", + "codeCommune": "50365", + "libelleAcheminement": "MUNEVILLE SUR MER", + "nomCommune": "MUNEVILLE SUR MER" }, { - "codePostal": "50480", - "codeCommune": "50373", - "libelleAcheminement": "NEUVILLE AU PLAIN", - "nomCommune": "NEUVILLE AU PLAIN" + "codePostal": "50390", + "codeCommune": "50387", + "libelleAcheminement": "ORGLANDES", + "nomCommune": "ORGLANDES" }, { - "codePostal": "50310", - "codeCommune": "50390", - "libelleAcheminement": "OZEVILLE", - "nomCommune": "OZEVILLE" + "codePostal": "50660", + "codeCommune": "50388", + "libelleAcheminement": "ORVAL SUR SIENNE", + "nomCommune": "ORVAL SUR SIENNE" }, { - "codePostal": "50360", + "codePostal": "50250", + "codeCommune": "50400", + "libelleAcheminement": "PICAUVILLE", + "nomCommune": "PICAUVILLE" + }, + { + "codePostal": "50480", "codeCommune": "50400", "libelleAcheminement": "PICAUVILLE", "nomCommune": "PICAUVILLE" @@ -12288,10 +12306,16 @@ "nomCommune": "PIERREVILLE" }, { - "codePostal": "50880", - "codeCommune": "50409", - "libelleAcheminement": "PONT HEBERT", - "nomCommune": "PONT HEBERT" + "codePostal": "50220", + "codeCommune": "50408", + "libelleAcheminement": "PONTAUBAULT", + "nomCommune": "PONTAUBAULT" + }, + { + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { "codePostal": "50580", @@ -12306,16 +12330,16 @@ "nomCommune": "QUETTEHOU" }, { - "codePostal": "50660", - "codeCommune": "50419", - "libelleAcheminement": "QUETTREVILLE SUR SIENNE", - "nomCommune": "QUETTREVILLE SUR SIENNE" + "codePostal": "50590", + "codeCommune": "50429", + "libelleAcheminement": "REGNEVILLE SUR MER", + "nomCommune": "REGNEVILLE SUR MER" }, { - "codePostal": "50570", - "codeCommune": "50431", - "libelleAcheminement": "REMILLY LES MARAIS", - "nomCommune": "REMILLY LES MARAIS" + "codePostal": "50390", + "codeCommune": "50430", + "libelleAcheminement": "REIGNEVILLE BOCAGE", + "nomCommune": "REIGNEVILLE BOCAGE" }, { "codePostal": "50260", @@ -12324,10 +12348,16 @@ "nomCommune": "ROCHEVILLE" }, { - "codePostal": "50160", - "codeCommune": "50444", - "libelleAcheminement": "ST AMAND VILLAGES", - "nomCommune": "ST AMAND VILLAGES" + "codePostal": "50140", + "codeCommune": "50436", + "libelleAcheminement": "ROMAGNY FONTENAY", + "nomCommune": "ROMAGNY FONTENAY" + }, + { + "codePostal": "50140", + "codeCommune": "50436", + "libelleAcheminement": "ROMAGNY FONTENAY", + "nomCommune": "ROMAGNY FONTENAY" }, { "codePostal": "50240", @@ -12336,40 +12366,10 @@ "nomCommune": "ST AUBIN DE TERREGATTE" }, { - "codePostal": "50800", - "codeCommune": "50453", - "libelleAcheminement": "STE CECILE", - "nomCommune": "STE CECILE" - }, - { - "codePostal": "50680", - "codeCommune": "50455", - "libelleAcheminement": "ST CLAIR SUR L ELLE", - "nomCommune": "ST CLAIR SUR L ELLE" - }, - { - "codePostal": "50720", - "codeCommune": "50462", - "libelleAcheminement": "ST CYR DU BAILLEUL", - "nomCommune": "ST CYR DU BAILLEUL" - }, - { - "codePostal": "50450", - "codeCommune": "50463", - "libelleAcheminement": "ST DENIS LE GAST", - "nomCommune": "ST DENIS LE GAST" - }, - { - "codePostal": "50680", - "codeCommune": "50473", - "libelleAcheminement": "ST GEORGES D ELLE", - "nomCommune": "ST GEORGES D ELLE" - }, - { - "codePostal": "50720", - "codeCommune": "50474", - "libelleAcheminement": "ST GEORGES DE ROUELLEY", - "nomCommune": "ST GEORGES DE ROUELLEY" + "codePostal": "50140", + "codeCommune": "50456", + "libelleAcheminement": "ST CLEMENT RANCOUDRAY", + "nomCommune": "ST CLEMENT RANCOUDRAY" }, { "codePostal": "50810", @@ -12378,34 +12378,28 @@ "nomCommune": "ST GERMAIN D ELLE" }, { - "codePostal": "50700", - "codeCommune": "50478", - "libelleAcheminement": "ST GERMAIN DE TOURNEBUT", - "nomCommune": "ST GERMAIN DE TOURNEBUT" - }, - { - "codePostal": "50730", - "codeCommune": "50484", - "libelleAcheminement": "ST HILAIRE DU HARCOUET", - "nomCommune": "ST HILAIRE DU HARCOUET" + "codePostal": "50430", + "codeCommune": "50481", + "libelleAcheminement": "ST GERMAIN SUR AY", + "nomCommune": "ST GERMAIN SUR AY" }, { - "codePostal": "50240", - "codeCommune": "50487", - "libelleAcheminement": "ST JAMES", - "nomCommune": "ST JAMES" + "codePostal": "50620", + "codeCommune": "50488", + "libelleAcheminement": "ST JEAN DE DAYE", + "nomCommune": "ST JEAN DE DAYE" }, { - "codePostal": "50240", - "codeCommune": "50487", - "libelleAcheminement": "ST JAMES", - "nomCommune": "ST JAMES" + "codePostal": "50270", + "codeCommune": "50490", + "libelleAcheminement": "ST JEAN DE LA RIVIERE", + "nomCommune": "ST JEAN DE LA RIVIERE" }, { - "codePostal": "50810", - "codeCommune": "50492", - "libelleAcheminement": "ST JEAN D ELLE", - "nomCommune": "ST JEAN D ELLE" + "codePostal": "50320", + "codeCommune": "50493", + "libelleAcheminement": "ST JEAN DES CHAMPS", + "nomCommune": "ST JEAN DES CHAMPS" }, { "codePostal": "50670", @@ -12414,10 +12408,16 @@ "nomCommune": "ST LAURENT DE CUVES" }, { - "codePostal": "50200", - "codeCommune": "50506", - "libelleAcheminement": "ST MALO DE LA LANDE", - "nomCommune": "ST MALO DE LA LANDE" + "codePostal": "50000", + "codeCommune": "50502", + "libelleAcheminement": "ST LO", + "nomCommune": "ST LO" + }, + { + "codePostal": "50480", + "codeCommune": "50509", + "libelleAcheminement": "STE MARIE DU MONT", + "nomCommune": "STE MARIE DU MONT" }, { "codePostal": "50190", @@ -12432,16 +12432,10 @@ "nomCommune": "STE MERE EGLISE" }, { - "codePostal": "50670", - "codeCommune": "50525", - "libelleAcheminement": "ST MICHEL DE MONTJOIE", - "nomCommune": "ST MICHEL DE MONTJOIE" - }, - { - "codePostal": "50300", - "codeCommune": "50531", - "libelleAcheminement": "ST OVIN", - "nomCommune": "ST OVIN" + "codePostal": "50480", + "codeCommune": "50523", + "libelleAcheminement": "STE MERE EGLISE", + "nomCommune": "STE MERE EGLISE" }, { "codePostal": "50810", @@ -12449,30 +12443,12 @@ "libelleAcheminement": "ST PIERRE DE SEMILLY", "nomCommune": "ST PIERRE DE SEMILLY" }, - { - "codePostal": "50670", - "codeCommune": "50542", - "libelleAcheminement": "ST POIS", - "nomCommune": "ST POIS" - }, - { - "codePostal": "50750", - "codeCommune": "50546", - "libelleAcheminement": "BOURGVALLEES", - "nomCommune": "BOURGVALLEES" - }, { "codePostal": "50750", "codeCommune": "50546", "libelleAcheminement": "BOURGVALLEES", "nomCommune": "BOURGVALLEES" }, - { - "codePostal": "50510", - "codeCommune": "50549", - "libelleAcheminement": "ST SAUVEUR LA POMMERAYE", - "nomCommune": "ST SAUVEUR LA POMMERAYE" - }, { "codePostal": "50490", "codeCommune": "50550", @@ -12480,10 +12456,10 @@ "nomCommune": "ST SAUVEUR VILLAGES" }, { - "codePostal": "50530", - "codeCommune": "50565", - "libelleAcheminement": "SARTILLY BAIE BOCAGE", - "nomCommune": "SARTILLY BAIE BOCAGE" + "codePostal": "50490", + "codeCommune": "50550", + "libelleAcheminement": "ST SAUVEUR VILLAGES", + "nomCommune": "ST SAUVEUR VILLAGES" }, { "codePostal": "50530", @@ -12492,40 +12468,10 @@ "nomCommune": "SARTILLY BAIE BOCAGE" }, { - "codePostal": "50700", - "codeCommune": "50567", - "libelleAcheminement": "SAUSSEMESNIL", - "nomCommune": "SAUSSEMESNIL" - }, - { - "codePostal": "50210", - "codeCommune": "50569", - "libelleAcheminement": "SAVIGNY", - "nomCommune": "SAVIGNY" - }, - { - "codePostal": "50640", - "codeCommune": "50570", - "libelleAcheminement": "SAVIGNY LE VIEUX", - "nomCommune": "SAVIGNY LE VIEUX" - }, - { - "codePostal": "50340", - "codeCommune": "50580", - "libelleAcheminement": "SOTTEVILLE", - "nomCommune": "SOTTEVILLE" - }, - { - "codePostal": "50390", - "codeCommune": "50587", - "libelleAcheminement": "TAILLEPIED", - "nomCommune": "TAILLEPIED" - }, - { - "codePostal": "50320", - "codeCommune": "50590", - "libelleAcheminement": "LE TANU", - "nomCommune": "LE TANU" + "codePostal": "50310", + "codeCommune": "50578", + "libelleAcheminement": "SORTOSVILLE", + "nomCommune": "SORTOSVILLE" }, { "codePostal": "50640", @@ -12540,16 +12486,22 @@ "nomCommune": "LE TEILLEUL" }, { - "codePostal": "50330", - "codeCommune": "50596", - "libelleAcheminement": "THEVILLE", - "nomCommune": "THEVILLE" + "codePostal": "50420", + "codeCommune": "50592", + "libelleAcheminement": "TESSY BOCAGE", + "nomCommune": "TESSY BOCAGE" }, { - "codePostal": "50300", - "codeCommune": "50597", - "libelleAcheminement": "TIREPIED SUR SEE", - "nomCommune": "TIREPIED SUR SEE" + "codePostal": "50630", + "codeCommune": "50593", + "libelleAcheminement": "TEURTHEVILLE BOCAGE", + "nomCommune": "TEURTHEVILLE BOCAGE" + }, + { + "codePostal": "50690", + "codeCommune": "50594", + "libelleAcheminement": "TEURTHEVILLE HAGUE", + "nomCommune": "TEURTHEVILLE HAGUE" }, { "codePostal": "50160", @@ -12558,34 +12510,10 @@ "nomCommune": "TORIGNY LES VILLES" }, { - "codePostal": "50200", - "codeCommune": "50603", - "libelleAcheminement": "TOURVILLE SUR SIENNE", - "nomCommune": "TOURVILLE SUR SIENNE" - }, - { - "codePostal": "50480", - "codeCommune": "50609", - "libelleAcheminement": "TURQUEVILLE", - "nomCommune": "TURQUEVILLE" - }, - { - "codePostal": "50700", - "codeCommune": "50610", - "libelleAcheminement": "URVILLE", - "nomCommune": "URVILLE" - }, - { - "codePostal": "50700", - "codeCommune": "50615", - "libelleAcheminement": "VALOGNES", - "nomCommune": "VALOGNES" - }, - { - "codePostal": "50330", - "codeCommune": "50618", - "libelleAcheminement": "VAROUVILLE", - "nomCommune": "VAROUVILLE" + "codePostal": "50160", + "codeCommune": "50601", + "libelleAcheminement": "TORIGNY LES VILLES", + "nomCommune": "TORIGNY LES VILLES" }, { "codePostal": "50630", @@ -12594,10 +12522,10 @@ "nomCommune": "LE VAST" }, { - "codePostal": "50760", - "codeCommune": "50633", - "libelleAcheminement": "LE VICEL", - "nomCommune": "LE VICEL" + "codePostal": "50370", + "codeCommune": "50628", + "libelleAcheminement": "VERNIX", + "nomCommune": "VERNIX" }, { "codePostal": "50400", @@ -12605,71 +12533,35 @@ "libelleAcheminement": "YQUELON", "nomCommune": "YQUELON" }, - { - "codePostal": "51240", - "codeCommune": "51001", - "libelleAcheminement": "ABLANCOURT", - "nomCommune": "ABLANCOURT" - }, - { - "codePostal": "51230", - "codeCommune": "51010", - "libelleAcheminement": "ANGLUZELLES ET COURCELLES", - "nomCommune": "ANGLUZELLES ET COURCELLES" - }, - { - "codePostal": "51170", - "codeCommune": "51013", - "libelleAcheminement": "AOUGNY", - "nomCommune": "AOUGNY" - }, - { - "codePostal": "51170", - "codeCommune": "51014", - "libelleAcheminement": "ARCIS LE PONSART", - "nomCommune": "ARCIS LE PONSART" - }, - { - "codePostal": "51150", - "codeCommune": "51018", - "libelleAcheminement": "ATHIS", - "nomCommune": "ATHIS" - }, - { - "codePostal": "51240", - "codeCommune": "51022", - "libelleAcheminement": "AULNAY L AITRE", - "nomCommune": "AULNAY L AITRE" - }, { "codePostal": "51150", - "codeCommune": "51023", - "libelleAcheminement": "AULNAY SUR MARNE", - "nomCommune": "AULNAY SUR MARNE" + "codeCommune": "51007", + "libelleAcheminement": "AMBONNAY", + "nomCommune": "AMBONNAY" }, { - "codePostal": "51270", - "codeCommune": "51033", - "libelleAcheminement": "LE BAIZIL", - "nomCommune": "LE BAIZIL" + "codePostal": "51110", + "codeCommune": "51025", + "libelleAcheminement": "AUMENANCOURT", + "nomCommune": "AUMENANCOURT" }, { - "codePostal": "51170", - "codeCommune": "51037", - "libelleAcheminement": "BASLIEUX LES FISMES", - "nomCommune": "BASLIEUX LES FISMES" + "codePostal": "51800", + "codeCommune": "51027", + "libelleAcheminement": "AUVE", + "nomCommune": "AUVE" }, { - "codePostal": "51700", - "codeCommune": "51038", - "libelleAcheminement": "BASLIEUX SOUS CHATILLON", - "nomCommune": "BASLIEUX SOUS CHATILLON" + "codePostal": "51150", + "codeCommune": "51030", + "libelleAcheminement": "AY CHAMPAGNE", + "nomCommune": "AY CHAMPAGNE" }, { - "codePostal": "51330", - "codeCommune": "51047", - "libelleAcheminement": "BELVAL EN ARGONNE", - "nomCommune": "BELVAL EN ARGONNE" + "codePostal": "51110", + "codeCommune": "51043", + "libelleAcheminement": "BAZANCOURT", + "nomCommune": "BAZANCOURT" }, { "codePostal": "51480", @@ -12678,16 +12570,10 @@ "nomCommune": "BELVAL SOUS CHATILLON" }, { - "codePostal": "51210", - "codeCommune": "51050", - "libelleAcheminement": "BERGERES SOUS MONTMIRAIL", - "nomCommune": "BERGERES SOUS MONTMIRAIL" - }, - { - "codePostal": "51800", - "codeCommune": "51053", - "libelleAcheminement": "BERZIEUX", - "nomCommune": "BERZIEUX" + "codePostal": "51420", + "codeCommune": "51052", + "libelleAcheminement": "BERRU", + "nomCommune": "BERRU" }, { "codePostal": "51490", @@ -12696,16 +12582,10 @@ "nomCommune": "BETHENIVILLE" }, { - "codePostal": "51430", - "codeCommune": "51058", - "libelleAcheminement": "BEZANNES", - "nomCommune": "BEZANNES" - }, - { - "codePostal": "51400", - "codeCommune": "51061", - "libelleAcheminement": "BILLY LE GRAND", - "nomCommune": "BILLY LE GRAND" + "codePostal": "51800", + "codeCommune": "51062", + "libelleAcheminement": "BINARVILLE", + "nomCommune": "BINARVILLE" }, { "codePostal": "51300", @@ -12714,10 +12594,28 @@ "nomCommune": "BLACY" }, { - "codePostal": "51300", - "codeCommune": "51066", - "libelleAcheminement": "BLAISE SOUS ARZILLIERES", - "nomCommune": "BLAISE SOUS ARZILLIERES" + "codePostal": "51210", + "codeCommune": "51070", + "libelleAcheminement": "BOISSY LE REPOS", + "nomCommune": "BOISSY LE REPOS" + }, + { + "codePostal": "51140", + "codeCommune": "51077", + "libelleAcheminement": "BOUVANCOURT", + "nomCommune": "BOUVANCOURT" + }, + { + "codePostal": "51140", + "codeCommune": "51081", + "libelleAcheminement": "BRANSCOURT", + "nomCommune": "BRANSCOURT" + }, + { + "codePostal": "51320", + "codeCommune": "51084", + "libelleAcheminement": "BREBAN", + "nomCommune": "BREBAN" }, { "codePostal": "51210", @@ -12726,22 +12624,22 @@ "nomCommune": "LE BREUIL" }, { - "codePostal": "51530", - "codeCommune": "51093", - "libelleAcheminement": "BRUGNY VAUDANCOURT", - "nomCommune": "BRUGNY VAUDANCOURT" + "codePostal": "51230", + "codeCommune": "51090", + "libelleAcheminement": "BROUSSY LE GRAND", + "nomCommune": "BROUSSY LE GRAND" }, { - "codePostal": "51330", - "codeCommune": "51098", - "libelleAcheminement": "BUSSY LE REPOS", - "nomCommune": "BUSSY LE REPOS" + "codePostal": "51270", + "codeCommune": "51100", + "libelleAcheminement": "LA CAURE", + "nomCommune": "LA CAURE" }, { - "codePostal": "51000", - "codeCommune": "51108", - "libelleAcheminement": "CHALONS EN CHAMPAGNE", - "nomCommune": "CHALONS EN CHAMPAGNE" + "codePostal": "51220", + "codeCommune": "51102", + "libelleAcheminement": "CAUROY LES HERMONVILLE", + "nomCommune": "CAUROY LES HERMONVILLE" }, { "codePostal": "51140", @@ -12756,22 +12654,16 @@ "nomCommune": "CHAMBRECY" }, { - "codePostal": "51500", - "codeCommune": "51112", - "libelleAcheminement": "CHAMERY", - "nomCommune": "CHAMERY" - }, - { - "codePostal": "51500", - "codeCommune": "51115", - "libelleAcheminement": "CHAMPFLEURY", - "nomCommune": "CHAMPFLEURY" + "codePostal": "51370", + "codeCommune": "51118", + "libelleAcheminement": "CHAMPIGNY", + "nomCommune": "CHAMPIGNY" }, { - "codePostal": "51300", - "codeCommune": "51122", - "libelleAcheminement": "CHANGY", - "nomCommune": "CHANGY" + "codePostal": "51160", + "codeCommune": "51119", + "libelleAcheminement": "CHAMPILLON", + "nomCommune": "CHAMPILLON" }, { "codePostal": "51290", @@ -12780,22 +12672,34 @@ "nomCommune": "CHAPELAINE" }, { - "codePostal": "51290", - "codeCommune": "51135", - "libelleAcheminement": "CHATILLON SUR BROUE", - "nomCommune": "CHATILLON SUR BROUE" + "codePostal": "51800", + "codeCommune": "51126", + "libelleAcheminement": "LA CHAPELLE FELCOURT", + "nomCommune": "LA CHAPELLE FELCOURT" }, { - "codePostal": "51250", - "codeCommune": "51144", - "libelleAcheminement": "CHEMINON", - "nomCommune": "CHEMINON" + "codePostal": "51270", + "codeCommune": "51128", + "libelleAcheminement": "LA CHAPELLE SOUS ORBAIS", + "nomCommune": "LA CHAPELLE SOUS ORBAIS" }, { - "codePostal": "51150", - "codeCommune": "51150", - "libelleAcheminement": "CHERVILLE", - "nomCommune": "CHERVILLE" + "codePostal": "51330", + "codeCommune": "51132", + "libelleAcheminement": "LES CHARMONTOIS", + "nomCommune": "LES CHARMONTOIS" + }, + { + "codePostal": "51300", + "codeCommune": "51134", + "libelleAcheminement": "CHATELRAOULD ST LOUVENT", + "nomCommune": "CHATELRAOULD ST LOUVENT" + }, + { + "codePostal": "51600", + "codeCommune": "51147", + "libelleAcheminement": "LA CHEPPE", + "nomCommune": "LA CHEPPE" }, { "codePostal": "51530", @@ -12810,58 +12714,10 @@ "nomCommune": "VAL DES MARAIS" }, { - "codePostal": "51150", - "codeCommune": "51161", - "libelleAcheminement": "CONDE SUR MARNE", - "nomCommune": "CONDE SUR MARNE" - }, - { - "codePostal": "51260", - "codeCommune": "51162", - "libelleAcheminement": "CONFLANS SUR SEINE", - "nomCommune": "CONFLANS SUR SEINE" - }, - { - "codePostal": "51270", - "codeCommune": "51163", - "libelleAcheminement": "CONGY", - "nomCommune": "CONGY" - }, - { - "codePostal": "51320", - "codeCommune": "51167", - "libelleAcheminement": "COOLE", - "nomCommune": "COOLE" - }, - { - "codePostal": "51510", - "codeCommune": "51168", - "libelleAcheminement": "COOLUS", - "nomCommune": "COOLUS" - }, - { - "codePostal": "51220", - "codeCommune": "51171", - "libelleAcheminement": "CORMICY", - "nomCommune": "CORMICY" - }, - { - "codePostal": "51480", - "codeCommune": "51173", - "libelleAcheminement": "CORMOYEUX", - "nomCommune": "CORMOYEUX" - }, - { - "codePostal": "51390", - "codeCommune": "51177", - "libelleAcheminement": "COULOMMES LA MONTAGNE", - "nomCommune": "COULOMMES LA MONTAGNE" - }, - { - "codePostal": "51240", - "codeCommune": "51179", - "libelleAcheminement": "COUPEVILLE", - "nomCommune": "COUPEVILLE" + "codePostal": "51140", + "codeCommune": "51181", + "libelleAcheminement": "COURCELLES SAPICOURT", + "nomCommune": "COURCELLES SAPICOURT" }, { "codePostal": "51260", @@ -12870,64 +12726,58 @@ "nomCommune": "COURCEMAIN" }, { - "codePostal": "51220", - "codeCommune": "51183", - "libelleAcheminement": "COURCY", - "nomCommune": "COURCY" - }, - { - "codePostal": "51170", - "codeCommune": "51187", - "libelleAcheminement": "COURLANDON", - "nomCommune": "COURLANDON" + "codePostal": "51400", + "codeCommune": "51203", + "libelleAcheminement": "CUPERLY", + "nomCommune": "CUPERLY" }, { - "codePostal": "51300", - "codeCommune": "51195", - "libelleAcheminement": "COUVROT", - "nomCommune": "COUVROT" + "codePostal": "51530", + "codeCommune": "51210", + "libelleAcheminement": "DIZY", + "nomCommune": "DIZY" }, { - "codePostal": "51530", - "codeCommune": "51200", - "libelleAcheminement": "CUIS", - "nomCommune": "CUIS" + "codePostal": "51800", + "codeCommune": "51213", + "libelleAcheminement": "DOMMARTIN SOUS HANS", + "nomCommune": "DOMMARTIN SOUS HANS" }, { - "codePostal": "51480", - "codeCommune": "51204", - "libelleAcheminement": "DAMERY", - "nomCommune": "DAMERY" + "codePostal": "51490", + "codeCommune": "51216", + "libelleAcheminement": "DONTRIEN", + "nomCommune": "DONTRIEN" }, { - "codePostal": "51330", - "codeCommune": "51214", - "libelleAcheminement": "DOMMARTIN VARIMONT", - "nomCommune": "DOMMARTIN VARIMONT" + "codePostal": "51700", + "codeCommune": "51217", + "libelleAcheminement": "DORMANS", + "nomCommune": "DORMANS" }, { - "codePostal": "51290", - "codeCommune": "51219", - "libelleAcheminement": "DROSNAY", - "nomCommune": "DROSNAY" + "codePostal": "51300", + "codeCommune": "51220", + "libelleAcheminement": "DROUILLY", + "nomCommune": "DROUILLY" }, { - "codePostal": "51290", - "codeCommune": "51223", - "libelleAcheminement": "ECOLLEMONT", - "nomCommune": "ECOLLEMONT" + "codePostal": "51200", + "codeCommune": "51230", + "libelleAcheminement": "EPERNAY", + "nomCommune": "EPERNAY" }, { - "codePostal": "51800", - "codeCommune": "51228", - "libelleAcheminement": "ELISE DAUCOURT", - "nomCommune": "ELISE DAUCOURT" + "codePostal": "51460", + "codeCommune": "51231", + "libelleAcheminement": "L EPINE", + "nomCommune": "L EPINE" }, { - "codePostal": "51120", - "codeCommune": "51235", - "libelleAcheminement": "LES ESSARTS LES SEZANNE", - "nomCommune": "LES ESSARTS LES SEZANNE" + "codePostal": "51310", + "codeCommune": "51237", + "libelleAcheminement": "ESTERNAY", + "nomCommune": "ESTERNAY" }, { "codePostal": "51340", @@ -12936,46 +12786,28 @@ "nomCommune": "ETREPY" }, { - "codePostal": "51230", - "codeCommune": "51243", - "libelleAcheminement": "FAUX FRESNAY", - "nomCommune": "FAUX FRESNAY" - }, - { - "codePostal": "51230", - "codeCommune": "51248", - "libelleAcheminement": "FERE CHAMPENOISE", - "nomCommune": "FERE CHAMPENOISE" - }, - { - "codePostal": "51700", - "codeCommune": "51249", - "libelleAcheminement": "FESTIGNY", - "nomCommune": "FESTIGNY" - }, - { - "codePostal": "51170", - "codeCommune": "51250", - "libelleAcheminement": "FISMES", - "nomCommune": "FISMES" + "codePostal": "51240", + "codeCommune": "51259", + "libelleAcheminement": "FRANCHEVILLE", + "nomCommune": "FRANCHEVILLE" }, { - "codePostal": "51120", - "codeCommune": "51265", - "libelleAcheminement": "GAYE", - "nomCommune": "GAYE" + "codePostal": "51300", + "codeCommune": "51262", + "libelleAcheminement": "FRIGNICOURT", + "nomCommune": "FRIGNICOURT" }, { - "codePostal": "51290", - "codeCommune": "51269", - "libelleAcheminement": "GIFFAUMONT CHAMPAUBERT", - "nomCommune": "GIFFAUMONT CHAMPAUBERT" + "codePostal": "51210", + "codeCommune": "51263", + "libelleAcheminement": "FROMENTIERES", + "nomCommune": "FROMENTIERES" }, { - "codePostal": "51290", - "codeCommune": "51270", - "libelleAcheminement": "GIGNY BUSSY", - "nomCommune": "GIGNY BUSSY" + "codePostal": "51390", + "codeCommune": "51267", + "libelleAcheminement": "GERMIGNY", + "nomCommune": "GERMIGNY" }, { "codePostal": "51300", @@ -12984,22 +12816,22 @@ "nomCommune": "GLANNES" }, { - "codePostal": "51340", - "codeCommune": "51289", - "libelleAcheminement": "HEILTZ LE MAURUPT", - "nomCommune": "HEILTZ LE MAURUPT" + "codePostal": "51190", + "codeCommune": "51281", + "libelleAcheminement": "GRAUVES", + "nomCommune": "GRAUVES" }, { - "codePostal": "51220", - "codeCommune": "51291", - "libelleAcheminement": "HERMONVILLE", - "nomCommune": "HERMONVILLE" + "codePostal": "51800", + "codeCommune": "51283", + "libelleAcheminement": "HANS", + "nomCommune": "HANS" }, { - "codePostal": "51700", - "codeCommune": "51298", - "libelleAcheminement": "IGNY COMBLIZY", - "nomCommune": "IGNY COMBLIZY" + "codePostal": "51320", + "codeCommune": "51296", + "libelleAcheminement": "HUMBAUVILLE", + "nomCommune": "HUMBAUVILLE" }, { "codePostal": "51310", @@ -13008,16 +12840,34 @@ "nomCommune": "JOISELLE" }, { - "codePostal": "51170", - "codeCommune": "51314", - "libelleAcheminement": "LAGERY", - "nomCommune": "LAGERY" + "codePostal": "51140", + "codeCommune": "51308", + "libelleAcheminement": "JONCHERY SUR VESLE", + "nomCommune": "JONCHERY SUR VESLE" }, { - "codePostal": "51800", - "codeCommune": "51336", - "libelleAcheminement": "MAFFRECOURT", - "nomCommune": "MAFFRECOURT" + "codePostal": "51230", + "codeCommune": "51319", + "libelleAcheminement": "LENHARREE", + "nomCommune": "LENHARREE" + }, + { + "codePostal": "51700", + "codeCommune": "51320", + "libelleAcheminement": "LEUVRIGNY", + "nomCommune": "LEUVRIGNY" + }, + { + "codePostal": "51130", + "codeCommune": "51327", + "libelleAcheminement": "LOISY EN BRIE", + "nomCommune": "LOISY EN BRIE" + }, + { + "codePostal": "51300", + "codeCommune": "51340", + "libelleAcheminement": "MAISONS EN CHAMPAGNE", + "nomCommune": "MAISONS EN CHAMPAGNE" }, { "codePostal": "51260", @@ -13037,36 +12887,66 @@ "libelleAcheminement": "MARGERIE HANCOURT", "nomCommune": "MARGERIE HANCOURT" }, - { - "codePostal": "51210", - "codeCommune": "51350", - "libelleAcheminement": "MARGNY", - "nomCommune": "MARGNY" - }, { "codePostal": "51300", "codeCommune": "51352", "libelleAcheminement": "MAROLLES", "nomCommune": "MAROLLES" }, + { + "codePostal": "51260", + "codeCommune": "51353", + "libelleAcheminement": "MARSANGIS", + "nomCommune": "MARSANGIS" + }, + { + "codePostal": "51340", + "codeCommune": "51358", + "libelleAcheminement": "MAURUPT LE MONTOIS", + "nomCommune": "MAURUPT LE MONTOIS" + }, { "codePostal": "51210", "codeCommune": "51359", "libelleAcheminement": "MECRINGES", "nomCommune": "MECRINGES" }, + { + "codePostal": "51120", + "codeCommune": "51360", + "libelleAcheminement": "LE MEIX ST EPOING", + "nomCommune": "LE MEIX ST EPOING" + }, + { + "codePostal": "51320", + "codeCommune": "51361", + "libelleAcheminement": "LE MEIX TIERCELIN", + "nomCommune": "LE MEIX TIERCELIN" + }, + { + "codePostal": "51220", + "codeCommune": "51362", + "libelleAcheminement": "MERFY", + "nomCommune": "MERFY" + }, + { + "codePostal": "51300", + "codeCommune": "51363", + "libelleAcheminement": "MERLAUT", + "nomCommune": "MERLAUT" + }, + { + "codePostal": "51370", + "codeCommune": "51365", + "libelleAcheminement": "LES MESNEUX", + "nomCommune": "LES MESNEUX" + }, { "codePostal": "51120", "codeCommune": "51369", "libelleAcheminement": "MOEURS VERDEY", "nomCommune": "MOEURS VERDEY" }, - { - "codePostal": "51290", - "codeCommune": "51373", - "libelleAcheminement": "MONCETZ L ABBAYE", - "nomCommune": "MONCETZ L ABBAYE" - }, { "codePostal": "51320", "codeCommune": "51377", @@ -13080,28 +12960,58 @@ "nomCommune": "MONTHELON" }, { - "codePostal": "51270", - "codeCommune": "51381", - "libelleAcheminement": "MONTMORT LUCY", - "nomCommune": "MONTMORT LUCY" + "codePostal": "51140", + "codeCommune": "51379", + "libelleAcheminement": "MONTIGNY SUR VESLE", + "nomCommune": "MONTIGNY SUR VESLE" }, { - "codePostal": "51420", - "codeCommune": "51403", - "libelleAcheminement": "NOGENT L ABBESSE", - "nomCommune": "NOGENT L ABBESSE" + "codePostal": "51530", + "codeCommune": "51384", + "libelleAcheminement": "MORANGIS", + "nomCommune": "MORANGIS" + }, + { + "codePostal": "51140", + "codeCommune": "51391", + "libelleAcheminement": "MUIZON", + "nomCommune": "MUIZON" + }, + { + "codePostal": "51120", + "codeCommune": "51395", + "libelleAcheminement": "NESLE LA REPOSTE", + "nomCommune": "NESLE LA REPOSTE" }, { "codePostal": "51330", - "codeCommune": "51404", - "libelleAcheminement": "NOIRLIEU", - "nomCommune": "NOIRLIEU" + "codeCommune": "51397", + "libelleAcheminement": "LA NEUVILLE AUX BOIS", + "nomCommune": "LA NEUVILLE AUX BOIS" + }, + { + "codePostal": "51310", + "codeCommune": "51402", + "libelleAcheminement": "NEUVY", + "nomCommune": "NEUVY" + }, + { + "codePostal": "51530", + "codeCommune": "51413", + "libelleAcheminement": "OIRY", + "nomCommune": "OIRY" + }, + { + "codePostal": "51290", + "codeCommune": "51419", + "libelleAcheminement": "OUTINES", + "nomCommune": "OUTINES" }, { "codePostal": "51120", - "codeCommune": "51426", - "libelleAcheminement": "PEAS", - "nomCommune": "PEAS" + "codeCommune": "51421", + "libelleAcheminement": "OYES", + "nomCommune": "OYES" }, { "codePostal": "51400", @@ -13110,16 +13020,28 @@ "nomCommune": "LES PETITES LOGES" }, { - "codePostal": "51130", - "codeCommune": "51430", - "libelleAcheminement": "PIERRE MORAINS", - "nomCommune": "PIERRE MORAINS" + "codePostal": "51530", + "codeCommune": "51431", + "libelleAcheminement": "PIERRY", + "nomCommune": "PIERRY" }, { - "codePostal": "51130", - "codeCommune": "51435", - "libelleAcheminement": "POCANCY", - "nomCommune": "POCANCY" + "codePostal": "51300", + "codeCommune": "51441", + "libelleAcheminement": "PONTHION", + "nomCommune": "PONTHION" + }, + { + "codePostal": "51220", + "codeCommune": "51444", + "libelleAcheminement": "POUILLON", + "nomCommune": "POUILLON" + }, + { + "codePostal": "51400", + "codeCommune": "51447", + "libelleAcheminement": "PROSNES", + "nomCommune": "PROSNES" }, { "codePostal": "51500", @@ -13134,10 +13056,10 @@ "nomCommune": "RAPSECOURT" }, { - "codePostal": "51520", - "codeCommune": "51453", - "libelleAcheminement": "RECY", - "nomCommune": "RECY" + "codePostal": "51100", + "codeCommune": "51454", + "libelleAcheminement": "REIMS", + "nomCommune": "REIMS" }, { "codePostal": "51120", @@ -13146,22 +13068,10 @@ "nomCommune": "REUVES" }, { - "codePostal": "51310", - "codeCommune": "51459", - "libelleAcheminement": "REVEILLON", - "nomCommune": "REVEILLON" - }, - { - "codePostal": "51500", - "codeCommune": "51461", - "libelleAcheminement": "RILLY LA MONTAGNE", - "nomCommune": "RILLY LA MONTAGNE" - }, - { - "codePostal": "51170", - "codeCommune": "51466", - "libelleAcheminement": "ROMIGNY", - "nomCommune": "ROMIGNY" + "codePostal": "51480", + "codeCommune": "51465", + "libelleAcheminement": "ROMERY", + "nomCommune": "ROMERY" }, { "codePostal": "51130", @@ -13170,28 +13080,28 @@ "nomCommune": "ROUFFY" }, { - "codePostal": "51240", - "codeCommune": "51482", - "libelleAcheminement": "ST GERMAIN LA VILLE", - "nomCommune": "ST GERMAIN LA VILLE" + "codePostal": "51290", + "codeCommune": "51475", + "libelleAcheminement": "ST CHERON", + "nomCommune": "ST CHERON" }, { - "codePostal": "51490", - "codeCommune": "51487", - "libelleAcheminement": "ST HILAIRE LE PETIT", - "nomCommune": "ST HILAIRE LE PETIT" + "codePostal": "51460", + "codeCommune": "51476", + "libelleAcheminement": "ST ETIENNE AU TEMPLE", + "nomCommune": "ST ETIENNE AU TEMPLE" }, { - "codePostal": "51160", - "codeCommune": "51488", - "libelleAcheminement": "ST IMOGES", - "nomCommune": "ST IMOGES" + "codePostal": "51110", + "codeCommune": "51477", + "libelleAcheminement": "ST ETIENNE SUR SUIPPE", + "nomCommune": "ST ETIENNE SUR SUIPPE" }, { - "codePostal": "51260", - "codeCommune": "51492", - "libelleAcheminement": "ST JUST SAUVAGE", - "nomCommune": "ST JUST SAUVAGE" + "codePostal": "51510", + "codeCommune": "51483", + "libelleAcheminement": "ST GIBRIEN", + "nomCommune": "ST GIBRIEN" }, { "codePostal": "51500", @@ -13200,16 +13110,16 @@ "nomCommune": "ST LEONARD" }, { - "codePostal": "51800", - "codeCommune": "51498", - "libelleAcheminement": "ST MARD SUR AUVE", - "nomCommune": "ST MARD SUR AUVE" + "codePostal": "51120", + "codeCommune": "51495", + "libelleAcheminement": "ST LOUP", + "nomCommune": "ST LOUP" }, { - "codePostal": "51490", - "codeCommune": "51503", - "libelleAcheminement": "ST MARTIN L HEUREUX", - "nomCommune": "ST MARTIN L HEUREUX" + "codePostal": "51320", + "codeCommune": "51508", + "libelleAcheminement": "ST OUEN DOMPROT", + "nomCommune": "ST OUEN DOMPROT" }, { "codePostal": "51510", @@ -13218,10 +13128,10 @@ "nomCommune": "ST PIERRE" }, { - "codePostal": "51120", - "codeCommune": "51511", - "libelleAcheminement": "ST QUENTIN LE VERGER", - "nomCommune": "ST QUENTIN LE VERGER" + "codePostal": "51600", + "codeCommune": "51515", + "libelleAcheminement": "ST REMY SUR BUSSY", + "nomCommune": "ST REMY SUR BUSSY" }, { "codePostal": "51260", @@ -13229,30 +13139,12 @@ "libelleAcheminement": "ST SATURNIN", "nomCommune": "ST SATURNIN" }, - { - "codePostal": "51220", - "codeCommune": "51518", - "libelleAcheminement": "ST THIERRY", - "nomCommune": "ST THIERRY" - }, - { - "codePostal": "51290", - "codeCommune": "51520", - "libelleAcheminement": "ST UTIN", - "nomCommune": "ST UTIN" - }, { "codePostal": "51260", "codeCommune": "51524", "libelleAcheminement": "SARON SUR AUBE", "nomCommune": "SARON SUR AUBE" }, - { - "codePostal": "51490", - "codeCommune": "51529", - "libelleAcheminement": "SELLES", - "nomCommune": "SELLES" - }, { "codePostal": "51120", "codeCommune": "51535", @@ -13260,94 +13152,136 @@ "nomCommune": "SEZANNE" }, { - "codePostal": "51290", - "codeCommune": "51551", - "libelleAcheminement": "SOMSOIS", - "nomCommune": "SOMSOIS" + "codePostal": "51800", + "codeCommune": "51537", + "libelleAcheminement": "SIVRY ANTE", + "nomCommune": "SIVRY ANTE" }, { - "codePostal": "51220", - "codeCommune": "51568", - "libelleAcheminement": "THIL", - "nomCommune": "THIL" + "codePostal": "51130", + "codeCommune": "51558", + "libelleAcheminement": "SOULIERES", + "nomCommune": "SOULIERES" + }, + { + "codePostal": "51270", + "codeCommune": "51563", + "libelleAcheminement": "TALUS ST PRIX", + "nomCommune": "TALUS ST PRIX" }, { "codePostal": "51150", - "codeCommune": "51576", - "libelleAcheminement": "TOURS SUR MARNE", - "nomCommune": "TOURS SUR MARNE" + "codeCommune": "51564", + "libelleAcheminement": "VAL DE LIVRE", + "nomCommune": "VAL DE LIVRE" }, { - "codePostal": "51170", - "codeCommune": "51577", - "libelleAcheminement": "TRAMERY", - "nomCommune": "TRAMERY" + "codePostal": "51230", + "codeCommune": "51565", + "libelleAcheminement": "THAAS", + "nomCommune": "THAAS" }, { - "codePostal": "51130", - "codeCommune": "51578", - "libelleAcheminement": "TRECON", - "nomCommune": "TRECON" + "codePostal": "51510", + "codeCommune": "51566", + "libelleAcheminement": "THIBIE", + "nomCommune": "THIBIE" }, { - "codePostal": "51700", - "codeCommune": "51585", - "libelleAcheminement": "TROISSY", - "nomCommune": "TROISSY" + "codePostal": "51460", + "codeCommune": "51572", + "libelleAcheminement": "TILLOY ET BELLAY", + "nomCommune": "TILLOY ET BELLAY" }, { - "codePostal": "51320", - "codeCommune": "51594", - "libelleAcheminement": "VASSIMONT ET CHAPELAINE", - "nomCommune": "VASSIMONT ET CHAPELAINE" + "codePostal": "51240", + "codeCommune": "51574", + "libelleAcheminement": "TOGNY AUX BOEUFS", + "nomCommune": "TOGNY AUX BOEUFS" }, { - "codePostal": "51320", - "codeCommune": "51595", - "libelleAcheminement": "VATRY", - "nomCommune": "VATRY" + "codePostal": "51140", + "codeCommune": "51581", + "libelleAcheminement": "TRESLON", + "nomCommune": "TRESLON" }, { - "codePostal": "51480", - "codeCommune": "51597", - "libelleAcheminement": "VAUCIENNES", - "nomCommune": "VAUCIENNES" + "codePostal": "51170", + "codeCommune": "51586", + "libelleAcheminement": "UNCHAIR", + "nomCommune": "UNCHAIR" }, { - "codePostal": "51380", - "codeCommune": "51599", - "libelleAcheminement": "VAUDEMANGE", - "nomCommune": "VAUDEMANGE" + "codePostal": "51330", + "codeCommune": "51589", + "libelleAcheminement": "VANAULT LE CHATEL", + "nomCommune": "VANAULT LE CHATEL" }, { - "codePostal": "51300", - "codeCommune": "51601", - "libelleAcheminement": "VAVRAY LE GRAND", - "nomCommune": "VAVRAY LE GRAND" + "codePostal": "51600", + "codeCommune": "51600", + "libelleAcheminement": "VAUDESINCOURT", + "nomCommune": "VAUDESINCOURT" }, { - "codePostal": "51130", - "codeCommune": "51603", - "libelleAcheminement": "VELYE", - "nomCommune": "VELYE" + "codePostal": "51480", + "codeCommune": "51605", + "libelleAcheminement": "VENTEUIL", + "nomCommune": "VENTEUIL" }, { - "codePostal": "51360", - "codeCommune": "51613", - "libelleAcheminement": "VERZENAY", - "nomCommune": "VERZENAY" + "codePostal": "51330", + "codeCommune": "51608", + "libelleAcheminement": "VERNANCOURT", + "nomCommune": "VERNANCOURT" }, { - "codePostal": "51170", - "codeCommune": "51624", + "codePostal": "51700", + "codeCommune": "51609", + "libelleAcheminement": "VERNEUIL", + "nomCommune": "VERNEUIL" + }, + { + "codePostal": "51130", + "codeCommune": "51611", + "libelleAcheminement": "VERT TOULON", + "nomCommune": "VERT TOULON" + }, + { + "codePostal": "51130", + "codeCommune": "51612", + "libelleAcheminement": "BLANCS COTEAUX", + "nomCommune": "BLANCS COTEAUX" + }, + { + "codePostal": "51240", + "codeCommune": "51616", + "libelleAcheminement": "VESIGNEUL SUR MARNE", + "nomCommune": "VESIGNEUL SUR MARNE" + }, + { + "codePostal": "51210", + "codeCommune": "51618", + "libelleAcheminement": "LE VEZIER", + "nomCommune": "LE VEZIER" + }, + { + "codePostal": "51390", + "codeCommune": "51622", + "libelleAcheminement": "VILLE DOMMANGE", + "nomCommune": "VILLE DOMMANGE" + }, + { + "codePostal": "51170", + "codeCommune": "51624", "libelleAcheminement": "VILLE EN TARDENOIS", "nomCommune": "VILLE EN TARDENOIS" }, { - "codePostal": "51120", - "codeCommune": "51626", - "libelleAcheminement": "LA VILLENEUVE LES CHARLEVILLE", - "nomCommune": "LA VILLENEUVE LES CHARLEVILLE" + "codePostal": "51130", + "codeCommune": "51627", + "libelleAcheminement": "VILLENEUVE RENNEVILLE CHEVIGNY", + "nomCommune": "VILLENEUVE RENNEVILLE CHEVIGNY" }, { "codePostal": "51130", @@ -13356,46 +13290,40 @@ "nomCommune": "VILLERS AUX BOIS" }, { - "codePostal": "51220", - "codeCommune": "51633", - "libelleAcheminement": "VILLERS FRANQUEUX", - "nomCommune": "VILLERS FRANQUEUX" - }, - { - "codePostal": "51250", - "codeCommune": "51635", - "libelleAcheminement": "VILLERS LE SEC", - "nomCommune": "VILLERS LE SEC" + "codePostal": "51800", + "codeCommune": "51632", + "libelleAcheminement": "VILLERS EN ARGONNE", + "nomCommune": "VILLERS EN ARGONNE" }, { - "codePostal": "51800", - "codeCommune": "51640", - "libelleAcheminement": "VILLE SUR TOURBE", - "nomCommune": "VILLE SUR TOURBE" + "codePostal": "51510", + "codeCommune": "51634", + "libelleAcheminement": "VILLERS LE CHATEAU", + "nomCommune": "VILLERS LE CHATEAU" }, { - "codePostal": "51270", - "codeCommune": "51641", - "libelleAcheminement": "VILLEVENARD", - "nomCommune": "VILLEVENARD" + "codePostal": "51380", + "codeCommune": "51636", + "libelleAcheminement": "VILLERS MARMERY", + "nomCommune": "VILLERS MARMERY" }, { - "codePostal": "51300", - "codeCommune": "51647", - "libelleAcheminement": "VITRY EN PERTHOIS", - "nomCommune": "VITRY EN PERTHOIS" + "codePostal": "51130", + "codeCommune": "51638", + "libelleAcheminement": "VILLESENEUX", + "nomCommune": "VILLESENEUX" }, { - "codePostal": "51240", - "codeCommune": "51648", - "libelleAcheminement": "VITRY LA VILLE", - "nomCommune": "VITRY LA VILLE" + "codePostal": "51260", + "codeCommune": "51642", + "libelleAcheminement": "VILLIERS AUX CORNEILLES", + "nomCommune": "VILLIERS AUX CORNEILLES" }, { - "codePostal": "51240", - "codeCommune": "51648", - "libelleAcheminement": "VITRY LA VILLE", - "nomCommune": "VITRY LA VILLE" + "codePostal": "51700", + "codeCommune": "51644", + "libelleAcheminement": "VINCELLES", + "nomCommune": "VINCELLES" }, { "codePostal": "51800", @@ -13404,46 +13332,64 @@ "nomCommune": "VOILEMONT" }, { - "codePostal": "51130", - "codeCommune": "51655", - "libelleAcheminement": "VOUZY", - "nomCommune": "VOUZY" + "codePostal": "51260", + "codeCommune": "51652", + "libelleAcheminement": "VOUARCES", + "nomCommune": "VOUARCES" }, { - "codePostal": "51390", - "codeCommune": "51657", - "libelleAcheminement": "VRIGNY", - "nomCommune": "VRIGNY" + "codePostal": "51800", + "codeCommune": "51659", + "libelleAcheminement": "WARGEMOULIN HURLUS", + "nomCommune": "WARGEMOULIN HURLUS" }, { - "codePostal": "51530", - "codeCommune": "51663", - "libelleAcheminement": "MAGENTA", - "nomCommune": "MAGENTA" + "codePostal": "51420", + "codeCommune": "51662", + "libelleAcheminement": "WITRY LES REIMS", + "nomCommune": "WITRY LES REIMS" }, { - "codePostal": "52230", - "codeCommune": "52004", - "libelleAcheminement": "AINGOULAINCOURT", - "nomCommune": "AINGOULAINCOURT" + "codePostal": "52340", + "codeCommune": "52001", + "libelleAcheminement": "AGEVILLE", + "nomCommune": "AGEVILLE" }, { - "codePostal": "52700", - "codeCommune": "52008", - "libelleAcheminement": "ANDELOT BLANCHEVILLE", - "nomCommune": "ANDELOT BLANCHEVILLE" + "codePostal": "52310", + "codeCommune": "52011", + "libelleAcheminement": "ANNEVILLE LA PRAIRIE", + "nomCommune": "ANNEVILLE LA PRAIRIE" }, { - "codePostal": "52360", - "codeCommune": "52009", - "libelleAcheminement": "ANDILLY EN BASSIGNY", - "nomCommune": "ANDILLY EN BASSIGNY" + "codePostal": "52110", + "codeCommune": "52019", + "libelleAcheminement": "ARNANCOURT", + "nomCommune": "ARNANCOURT" }, { - "codePostal": "52230", - "codeCommune": "52012", - "libelleAcheminement": "ANNONVILLE", - "nomCommune": "ANNONVILLE" + "codePostal": "52240", + "codeCommune": "52025", + "libelleAcheminement": "AUDELONCOURT", + "nomCommune": "AUDELONCOURT" + }, + { + "codePostal": "52330", + "codeCommune": "52031", + "libelleAcheminement": "AUTREVILLE SUR LA RENNE", + "nomCommune": "AUTREVILLE SUR LA RENNE" + }, + { + "codePostal": "52250", + "codeCommune": "52035", + "libelleAcheminement": "BAISSEY", + "nomCommune": "BAISSEY" + }, + { + "codePostal": "52160", + "codeCommune": "52040", + "libelleAcheminement": "BAY SUR AUBE", + "nomCommune": "BAY SUR AUBE" }, { "codePostal": "52270", @@ -13452,10 +13398,22 @@ "nomCommune": "ROCHES BETTAINCOURT" }, { - "codePostal": "52120", - "codeCommune": "52056", - "libelleAcheminement": "BLESSONVILLE", - "nomCommune": "BLESSONVILLE" + "codePostal": "52270", + "codeCommune": "52044", + "libelleAcheminement": "ROCHES BETTAINCOURT", + "nomCommune": "ROCHES BETTAINCOURT" + }, + { + "codePostal": "52100", + "codeCommune": "52045", + "libelleAcheminement": "BETTANCOURT LA FERREE", + "nomCommune": "BETTANCOURT LA FERREE" + }, + { + "codePostal": "52340", + "codeCommune": "52050", + "libelleAcheminement": "BIESLES", + "nomCommune": "BIESLES" }, { "codePostal": "52310", @@ -13464,16 +13422,10 @@ "nomCommune": "BOLOGNE" }, { - "codePostal": "52360", - "codeCommune": "52059", - "libelleAcheminement": "BONNECOURT", - "nomCommune": "BONNECOURT" - }, - { - "codePostal": "52400", - "codeCommune": "52060", - "libelleAcheminement": "BOURBONNE LES BAINS", - "nomCommune": "BOURBONNE LES BAINS" + "codePostal": "52200", + "codeCommune": "52062", + "libelleAcheminement": "BOURG", + "nomCommune": "BOURG" }, { "codePostal": "52150", @@ -13482,34 +13434,16 @@ "nomCommune": "BOURMONT ENTRE MEUSE ET MOUZON" }, { - "codePostal": "52240", - "codeCommune": "52074", - "libelleAcheminement": "BREUVANNES EN BASSIGNY", - "nomCommune": "BREUVANNES EN BASSIGNY" - }, - { - "codePostal": "52120", - "codeCommune": "52076", - "libelleAcheminement": "BRICON", - "nomCommune": "BRICON" - }, - { - "codePostal": "52500", - "codeCommune": "52083", - "libelleAcheminement": "CHAMPSEVRAINE", - "nomCommune": "CHAMPSEVRAINE" - }, - { - "codePostal": "52500", - "codeCommune": "52083", - "libelleAcheminement": "CHAMPSEVRAINE", - "nomCommune": "CHAMPSEVRAINE" + "codePostal": "52110", + "codeCommune": "52065", + "libelleAcheminement": "BOUZANCOURT", + "nomCommune": "BOUZANCOURT" }, { - "codePostal": "52700", - "codeCommune": "52084", - "libelleAcheminement": "BUSSON", - "nomCommune": "BUSSON" + "codePostal": "52210", + "codeCommune": "52082", + "libelleAcheminement": "BUGNIERES", + "nomCommune": "BUGNIERES" }, { "codePostal": "52220", @@ -13517,53 +13451,23 @@ "libelleAcheminement": "CEFFONDS", "nomCommune": "CEFFONDS" }, - { - "codePostal": "52160", - "codeCommune": "52094", - "libelleAcheminement": "VALS DES TILLES", - "nomCommune": "VALS DES TILLES" - }, { "codePostal": "52700", - "codeCommune": "52097", - "libelleAcheminement": "CHAMBRONCOURT", - "nomCommune": "CHAMBRONCOURT" + "codeCommune": "52095", + "libelleAcheminement": "CHALVRAINES", + "nomCommune": "CHALVRAINES" }, { - "codePostal": "52400", - "codeCommune": "52103", - "libelleAcheminement": "CHAMPIGNY SOUS VARENNES", - "nomCommune": "CHAMPIGNY SOUS VARENNES" + "codePostal": "52200", + "codeCommune": "52102", + "libelleAcheminement": "CHAMPIGNY LES LANGRES", + "nomCommune": "CHAMPIGNY LES LANGRES" }, { "codePostal": "52360", - "codeCommune": "52105", - "libelleAcheminement": "CHANGEY", - "nomCommune": "CHANGEY" - }, - { - "codePostal": "52120", - "codeCommune": "52114", - "libelleAcheminement": "CHATEAUVILLAIN", - "nomCommune": "CHATEAUVILLAIN" - }, - { - "codePostal": "52300", - "codeCommune": "52118", - "libelleAcheminement": "CHATONRUPT SOMMERMONT", - "nomCommune": "CHATONRUPT SOMMERMONT" - }, - { - "codePostal": "52600", - "codeCommune": "52119", - "libelleAcheminement": "CHAUDENAY", - "nomCommune": "CHAUDENAY" - }, - { - "codePostal": "52000", - "codeCommune": "52121", - "libelleAcheminement": "CHAUMONT", - "nomCommune": "CHAUMONT" + "codeCommune": "52108", + "libelleAcheminement": "CHARMES", + "nomCommune": "CHARMES" }, { "codePostal": "52000", @@ -13578,88 +13482,34 @@ "nomCommune": "CHEVILLON" }, { - "codePostal": "52190", - "codeCommune": "52126", - "libelleAcheminement": "CHOILLEY DARDENAY", - "nomCommune": "CHOILLEY DARDENAY" - }, - { - "codePostal": "52230", - "codeCommune": "52131", - "libelleAcheminement": "CIRFONTAINES EN ORNOIS", - "nomCommune": "CIRFONTAINES EN ORNOIS" - }, - { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "52240", + "codeCommune": "52132", + "libelleAcheminement": "CLEFMONT", + "nomCommune": "CLEFMONT" }, { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "52190", + "codeCommune": "52158", + "libelleAcheminement": "CUSEY", + "nomCommune": "CUSEY" }, { - "codePostal": "52210", - "codeCommune": "52146", - "libelleAcheminement": "COUPRAY", - "nomCommune": "COUPRAY" + "codePostal": "52140", + "codeCommune": "52162", + "libelleAcheminement": "DAMMARTIN SUR MEUSE", + "nomCommune": "DAMMARTIN SUR MEUSE" }, { - "codePostal": "52300", - "codeCommune": "52156", - "libelleAcheminement": "CUREL", - "nomCommune": "CUREL" + "codePostal": "52700", + "codeCommune": "52167", + "libelleAcheminement": "DARMANNES", + "nomCommune": "DARMANNES" }, { "codePostal": "52110", - "codeCommune": "52160", - "libelleAcheminement": "DAILLANCOURT", - "nomCommune": "DAILLANCOURT" - }, - { - "codePostal": "52360", - "codeCommune": "52163", - "libelleAcheminement": "DAMPIERRE", - "nomCommune": "DAMPIERRE" - }, - { - "codePostal": "52210", - "codeCommune": "52165", - "libelleAcheminement": "DANCEVOIR", - "nomCommune": "DANCEVOIR" - }, - { - "codePostal": "52120", - "codeCommune": "52168", - "libelleAcheminement": "DINTEVILLE", - "nomCommune": "DINTEVILLE" - }, - { - "codePostal": "52300", - "codeCommune": "52175", - "libelleAcheminement": "DONJEUX", - "nomCommune": "DONJEUX" - }, - { - "codePostal": "52130", - "codeCommune": "52179", - "libelleAcheminement": "DOULEVANT LE PETIT", - "nomCommune": "DOULEVANT LE PETIT" - }, - { - "codePostal": "52290", - "codeCommune": "52182", - "libelleAcheminement": "ECLARON BRAUCOURT STE LIVIERE", - "nomCommune": "ECLARON BRAUCOURT STE LIVIERE" - }, - { - "codePostal": "52290", - "codeCommune": "52182", - "libelleAcheminement": "ECLARON BRAUCOURT STE LIVIERE", - "nomCommune": "ECLARON BRAUCOURT STE LIVIERE" + "codeCommune": "52178", + "libelleAcheminement": "DOULEVANT LE CHATEAU", + "nomCommune": "DOULEVANT LE CHATEAU" }, { "codePostal": "52290", @@ -13667,12 +13517,6 @@ "libelleAcheminement": "ECLARON BRAUCOURT STE LIVIERE", "nomCommune": "ECLARON BRAUCOURT STE LIVIERE" }, - { - "codePostal": "52700", - "codeCommune": "52183", - "libelleAcheminement": "ECOT LA COMBE", - "nomCommune": "ECOT LA COMBE" - }, { "codePostal": "52300", "codeCommune": "52184", @@ -13680,34 +13524,28 @@ "nomCommune": "EFFINCOURT" }, { - "codePostal": "52190", - "codeCommune": "52189", - "libelleAcheminement": "LE VAL D ESNOMS", - "nomCommune": "LE VAL D ESNOMS" - }, - { - "codePostal": "52340", - "codeCommune": "52190", - "libelleAcheminement": "ESNOUVEAUX", - "nomCommune": "ESNOUVEAUX" + "codePostal": "52230", + "codeCommune": "52187", + "libelleAcheminement": "EPIZON", + "nomCommune": "EPIZON" }, { - "codePostal": "52000", - "codeCommune": "52193", - "libelleAcheminement": "EUFFIGNEIX", - "nomCommune": "EUFFIGNEIX" + "codePostal": "52270", + "codeCommune": "52187", + "libelleAcheminement": "EPIZON", + "nomCommune": "EPIZON" }, { - "codePostal": "52130", - "codeCommune": "52198", - "libelleAcheminement": "FAYS", - "nomCommune": "FAYS" + "codePostal": "52500", + "codeCommune": "52197", + "libelleAcheminement": "FAYL BILLOT", + "nomCommune": "FAYL BILLOT" }, { - "codePostal": "52400", - "codeCommune": "52208", - "libelleAcheminement": "FRESNES SUR APANCE", - "nomCommune": "FRESNES SUR APANCE" + "codePostal": "52320", + "codeCommune": "52211", + "libelleAcheminement": "FRONCLES", + "nomCommune": "FRONCLES" }, { "codePostal": "52320", @@ -13716,34 +13554,34 @@ "nomCommune": "FRONCLES" }, { - "codePostal": "52150", - "codeCommune": "52227", - "libelleAcheminement": "GRAFFIGNY CHEMIN", - "nomCommune": "GRAFFIGNY CHEMIN" + "codePostal": "52320", + "codeCommune": "52214", + "libelleAcheminement": "LA GENEVROYE", + "nomCommune": "LA GENEVROYE" }, { - "codePostal": "52500", - "codeCommune": "52229", - "libelleAcheminement": "GRENANT", - "nomCommune": "GRENANT" + "codePostal": "52230", + "codeCommune": "52218", + "libelleAcheminement": "GERMAY", + "nomCommune": "GERMAY" }, { - "codePostal": "52300", - "codeCommune": "52231", - "libelleAcheminement": "GUINDRECOURT AUX ORMES", - "nomCommune": "GUINDRECOURT AUX ORMES" + "codePostal": "52210", + "codeCommune": "52220", + "libelleAcheminement": "GIEY SUR AUJON", + "nomCommune": "GIEY SUR AUJON" }, { - "codePostal": "52150", - "codeCommune": "52237", - "libelleAcheminement": "HARREVILLE LES CHANTEURS", - "nomCommune": "HARREVILLE LES CHANTEURS" + "codePostal": "52330", + "codeCommune": "52221", + "libelleAcheminement": "GILLANCOURT", + "nomCommune": "GILLANCOURT" }, { - "codePostal": "52600", - "codeCommune": "52240", - "libelleAcheminement": "HEUILLEY LE GRAND", - "nomCommune": "HEUILLEY LE GRAND" + "codePostal": "52330", + "codeCommune": "52232", + "libelleAcheminement": "GUINDRECOURT SUR BLAISE", + "nomCommune": "GUINDRECOURT SUR BLAISE" }, { "codePostal": "52600", @@ -13751,6 +13589,18 @@ "libelleAcheminement": "HAUTE AMANCE", "nomCommune": "HAUTE AMANCE" }, + { + "codePostal": "52150", + "codeCommune": "52243", + "libelleAcheminement": "HUILLIECOURT", + "nomCommune": "HUILLIECOURT" + }, + { + "codePostal": "52200", + "codeCommune": "52246", + "libelleAcheminement": "HUMES JORQUENAY", + "nomCommune": "HUMES JORQUENAY" + }, { "codePostal": "52000", "codeCommune": "52251", @@ -13758,16 +13608,10 @@ "nomCommune": "JONCHERY" }, { - "codePostal": "52120", - "codeCommune": "52258", - "libelleAcheminement": "LAFERTE SUR AUBE", - "nomCommune": "LAFERTE SUR AUBE" - }, - { - "codePostal": "52400", - "codeCommune": "52264", - "libelleAcheminement": "LANEUVELLE", - "nomCommune": "LANEUVELLE" + "codePostal": "52500", + "codeCommune": "52257", + "libelleAcheminement": "LAFERTE SUR AMANCE", + "nomCommune": "LAFERTE SUR AMANCE" }, { "codePostal": "52170", @@ -13776,10 +13620,28 @@ "nomCommune": "BAYARD SUR MARNE" }, { - "codePostal": "52170", - "codeCommune": "52265", - "libelleAcheminement": "BAYARD SUR MARNE", - "nomCommune": "BAYARD SUR MARNE" + "codePostal": "52100", + "codeCommune": "52267", + "libelleAcheminement": "LANEUVILLE AU PONT", + "nomCommune": "LANEUVILLE AU PONT" + }, + { + "codePostal": "52120", + "codeCommune": "52272", + "libelleAcheminement": "LANTY SUR AUBE", + "nomCommune": "LANTY SUR AUBE" + }, + { + "codePostal": "52400", + "codeCommune": "52273", + "libelleAcheminement": "LARIVIERE ARNONCOURT", + "nomCommune": "LARIVIERE ARNONCOURT" + }, + { + "codePostal": "52120", + "codeCommune": "52274", + "libelleAcheminement": "LATRECEY ORMOY SUR AUBE", + "nomCommune": "LATRECEY ORMOY SUR AUBE" }, { "codePostal": "52140", @@ -13793,12 +13655,6 @@ "libelleAcheminement": "LAVILLENEUVE AU ROI", "nomCommune": "LAVILLENEUVE AU ROI" }, - { - "codePostal": "52210", - "codeCommune": "52282", - "libelleAcheminement": "LEFFONDS", - "nomCommune": "LEFFONDS" - }, { "codePostal": "52110", "codeCommune": "52284", @@ -13806,28 +13662,22 @@ "nomCommune": "LESCHERES SUR LE BLAISERON" }, { - "codePostal": "52230", - "codeCommune": "52288", - "libelleAcheminement": "LEZEVILLE", - "nomCommune": "LEZEVILLE" - }, - { - "codePostal": "52240", - "codeCommune": "52291", - "libelleAcheminement": "LONGCHAMP", - "nomCommune": "LONGCHAMP" + "codePostal": "52700", + "codeCommune": "52289", + "libelleAcheminement": "LIFFOL LE PETIT", + "nomCommune": "LIFFOL LE PETIT" }, { - "codePostal": "52250", - "codeCommune": "52292", - "libelleAcheminement": "LONGEAU PERCEY", - "nomCommune": "LONGEAU PERCEY" + "codePostal": "52500", + "codeCommune": "52298", + "libelleAcheminement": "MAATZ", + "nomCommune": "MAATZ" }, { - "codePostal": "52240", - "codeCommune": "52301", - "libelleAcheminement": "MAISONCELLES", - "nomCommune": "MAISONCELLES" + "codePostal": "52300", + "codeCommune": "52302", + "libelleAcheminement": "MAIZIERES", + "nomCommune": "MAIZIERES" }, { "codePostal": "52700", @@ -13836,58 +13686,58 @@ "nomCommune": "MANOIS" }, { - "codePostal": "52400", - "codeCommune": "52328", - "libelleAcheminement": "MONTCHARVOT", - "nomCommune": "MONTCHARVOT" + "codePostal": "52370", + "codeCommune": "52308", + "libelleAcheminement": "MARANVILLE", + "nomCommune": "MARANVILLE" }, { - "codePostal": "52330", - "codeCommune": "52330", - "libelleAcheminement": "MONTHERIES", - "nomCommune": "MONTHERIES" + "codePostal": "52400", + "codeCommune": "52318", + "libelleAcheminement": "MELAY", + "nomCommune": "MELAY" }, { - "codePostal": "52700", - "codeCommune": "52342", - "libelleAcheminement": "MORIONVILLIERS", - "nomCommune": "MORIONVILLIERS" + "codePostal": "52240", + "codeCommune": "52325", + "libelleAcheminement": "MILLIERES", + "nomCommune": "MILLIERES" }, { - "codePostal": "52400", - "codeCommune": "52350", - "libelleAcheminement": "NEUVELLE LES VOISEY", - "nomCommune": "NEUVELLE LES VOISEY" + "codePostal": "52100", + "codeCommune": "52327", + "libelleAcheminement": "MOESLAINS", + "nomCommune": "MOESLAINS" }, { - "codePostal": "52800", - "codeCommune": "52353", - "libelleAcheminement": "NOGENT", - "nomCommune": "NOGENT" + "codePostal": "52140", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "52300", - "codeCommune": "52356", - "libelleAcheminement": "NOMECOURT", - "nomCommune": "NOMECOURT" + "codePostal": "52140", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "52230", - "codeCommune": "52357", - "libelleAcheminement": "NONCOURT SUR LE RONGEANT", - "nomCommune": "NONCOURT SUR LE RONGEANT" + "codePostal": "52170", + "codeCommune": "52347", + "libelleAcheminement": "NARCY", + "nomCommune": "NARCY" }, { - "codePostal": "52360", - "codeCommune": "52363", - "libelleAcheminement": "ORBIGNY AU VAL", - "nomCommune": "ORBIGNY AU VAL" + "codePostal": "52400", + "codeCommune": "52350", + "libelleAcheminement": "NEUVELLE LES VOISEY", + "nomCommune": "NEUVELLE LES VOISEY" }, { - "codePostal": "52700", - "codeCommune": "52369", - "libelleAcheminement": "ORQUEVAUX", - "nomCommune": "ORQUEVAUX" + "codePostal": "52240", + "codeCommune": "52358", + "libelleAcheminement": "NOYERS", + "nomCommune": "NOYERS" }, { "codePostal": "52310", @@ -13895,6 +13745,12 @@ "libelleAcheminement": "OUDINCOURT", "nomCommune": "OUDINCOURT" }, + { + "codePostal": "52700", + "codeCommune": "52373", + "libelleAcheminement": "OZIERES", + "nomCommune": "OZIERES" + }, { "codePostal": "52600", "codeCommune": "52374", @@ -13902,22 +13758,16 @@ "nomCommune": "LE PAILLY" }, { - "codePostal": "52400", - "codeCommune": "52377", - "libelleAcheminement": "PARNOY EN BASSIGNY", - "nomCommune": "PARNOY EN BASSIGNY" - }, - { - "codePostal": "52200", - "codeCommune": "52383", - "libelleAcheminement": "PERRANCEY LES VIEUX MOULINS", - "nomCommune": "PERRANCEY LES VIEUX MOULINS" + "codePostal": "52160", + "codeCommune": "52384", + "libelleAcheminement": "PERROGNEY LES FONTAINES", + "nomCommune": "PERROGNEY LES FONTAINES" }, { - "codePostal": "52500", - "codeCommune": "52388", - "libelleAcheminement": "PIERREMONT SUR AMANCE", - "nomCommune": "PIERREMONT SUR AMANCE" + "codePostal": "52100", + "codeCommune": "52386", + "libelleAcheminement": "PERTHES", + "nomCommune": "PERTHES" }, { "codePostal": "52220", @@ -13926,10 +13776,10 @@ "nomCommune": "PLANRUPT" }, { - "codePostal": "52160", - "codeCommune": "52395", - "libelleAcheminement": "POINSON LES GRANCEY", - "nomCommune": "POINSON LES GRANCEY" + "codePostal": "52800", + "codeCommune": "52396", + "libelleAcheminement": "POINSON LES NOGENT", + "nomCommune": "POINSON LES NOGENT" }, { "codePostal": "52360", @@ -13937,12 +13787,6 @@ "libelleAcheminement": "POISEUL", "nomCommune": "POISEUL" }, - { - "codePostal": "52230", - "codeCommune": "52398", - "libelleAcheminement": "POISSONS", - "nomCommune": "POISSONS" - }, { "codePostal": "52400", "codeCommune": "52400", @@ -13950,22 +13794,10 @@ "nomCommune": "LE CHATELET SUR MEUSE" }, { - "codePostal": "52160", - "codeCommune": "52403", - "libelleAcheminement": "PRASLAY", - "nomCommune": "PRASLAY" - }, - { - "codePostal": "52190", - "codeCommune": "52405", - "libelleAcheminement": "LE MONTSAUGEONNAIS", - "nomCommune": "LE MONTSAUGEONNAIS" - }, - { - "codePostal": "52500", - "codeCommune": "52406", - "libelleAcheminement": "PRESSIGNY", - "nomCommune": "PRESSIGNY" + "codePostal": "52800", + "codeCommune": "52401", + "libelleAcheminement": "POULANGY", + "nomCommune": "POULANGY" }, { "codePostal": "52220", @@ -13973,18 +13805,6 @@ "libelleAcheminement": "RIVES DERVOISES", "nomCommune": "RIVES DERVOISES" }, - { - "codePostal": "52130", - "codeCommune": "52413", - "libelleAcheminement": "RACHECOURT SUZEMONT", - "nomCommune": "RACHECOURT SUZEMONT" - }, - { - "codePostal": "52120", - "codeCommune": "52422", - "libelleAcheminement": "RICHEBOURG", - "nomCommune": "RICHEBOURG" - }, { "codePostal": "52410", "codeCommune": "52429", @@ -13998,10 +13818,40 @@ "nomCommune": "ROLAMPONT" }, { - "codePostal": "52100", - "codeCommune": "52448", - "libelleAcheminement": "ST DIZIER", - "nomCommune": "ST DIZIER" + "codePostal": "52300", + "codeCommune": "52442", + "libelleAcheminement": "RUPT", + "nomCommune": "RUPT" + }, + { + "codePostal": "52200", + "codeCommune": "52447", + "libelleAcheminement": "ST CIERGUES", + "nomCommune": "ST CIERGUES" + }, + { + "codePostal": "52300", + "codeCommune": "52456", + "libelleAcheminement": "ST URBAIN MACONCOURT", + "nomCommune": "ST URBAIN MACONCOURT" + }, + { + "codePostal": "52300", + "codeCommune": "52456", + "libelleAcheminement": "ST URBAIN MACONCOURT", + "nomCommune": "ST URBAIN MACONCOURT" + }, + { + "codePostal": "52230", + "codeCommune": "52463", + "libelleAcheminement": "SAUDRON", + "nomCommune": "SAUDRON" + }, + { + "codePostal": "52140", + "codeCommune": "52465", + "libelleAcheminement": "SAULXURES", + "nomCommune": "SAULXURES" }, { "codePostal": "52500", @@ -14010,76 +13860,88 @@ "nomCommune": "SAVIGNY" }, { - "codePostal": "52330", - "codeCommune": "52472", - "libelleAcheminement": "SEXFONTAINES", - "nomCommune": "SEXFONTAINES" + "codePostal": "52210", + "codeCommune": "52486", + "libelleAcheminement": "TERNAT", + "nomCommune": "TERNAT" }, { - "codePostal": "52700", - "codeCommune": "52473", - "libelleAcheminement": "SIGNEVILLE", - "nomCommune": "SIGNEVILLE" + "codePostal": "52800", + "codeCommune": "52488", + "libelleAcheminement": "THIVET", + "nomCommune": "THIVET" }, { - "codePostal": "52120", - "codeCommune": "52474", - "libelleAcheminement": "SILVAROUVRES", - "nomCommune": "SILVAROUVRES" + "codePostal": "52000", + "codeCommune": "52494", + "libelleAcheminement": "TREIX", + "nomCommune": "TREIX" }, { - "codePostal": "52220", - "codeCommune": "52479", - "libelleAcheminement": "SOMMEVOIRE", - "nomCommune": "SOMMEVOIRE" + "codePostal": "52500", + "codeCommune": "52503", + "libelleAcheminement": "VALLEROY", + "nomCommune": "VALLEROY" }, { - "codePostal": "52130", - "codeCommune": "52497", - "libelleAcheminement": "TROISFONTAINES LA VILLE", - "nomCommune": "TROISFONTAINES LA VILLE" + "codePostal": "52150", + "codeCommune": "52505", + "libelleAcheminement": "VAUDRECOURT", + "nomCommune": "VAUDRECOURT" }, { - "codePostal": "52130", - "codeCommune": "52502", - "libelleAcheminement": "VALLERET", - "nomCommune": "VALLERET" + "codePostal": "52400", + "codeCommune": "52520", + "libelleAcheminement": "VICQ", + "nomCommune": "VICQ" }, { - "codePostal": "52250", - "codeCommune": "52515", - "libelleAcheminement": "VERSEILLES LE BAS", - "nomCommune": "VERSEILLES LE BAS" + "codePostal": "52700", + "codeCommune": "52523", + "libelleAcheminement": "VIGNES LA COTE", + "nomCommune": "VIGNES LA COTE" }, { "codePostal": "52190", - "codeCommune": "52519", - "libelleAcheminement": "VESVRES SOUS CHALANCEY", - "nomCommune": "VESVRES SOUS CHALANCEY" + "codeCommune": "52529", + "libelleAcheminement": "VILLEGUSIEN LE LAC", + "nomCommune": "VILLEGUSIEN LE LAC" }, { - "codePostal": "52700", - "codeCommune": "52523", - "libelleAcheminement": "VIGNES LA COTE", - "nomCommune": "VIGNES LA COTE" + "codePostal": "52190", + "codeCommune": "52529", + "libelleAcheminement": "VILLEGUSIEN LE LAC", + "nomCommune": "VILLEGUSIEN LE LAC" }, { - "codePostal": "52320", - "codeCommune": "52524", - "libelleAcheminement": "VIGNORY", - "nomCommune": "VIGNORY" + "codePostal": "52190", + "codeCommune": "52536", + "libelleAcheminement": "VILLIERS LES APREY", + "nomCommune": "VILLIERS LES APREY" }, { - "codePostal": "53300", - "codeCommune": "53003", - "libelleAcheminement": "AMBRIERES LES VALLEES", - "nomCommune": "AMBRIERES LES VALLEES" + "codePostal": "52160", + "codeCommune": "52540", + "libelleAcheminement": "VITRY EN MONTAGNE", + "nomCommune": "VITRY EN MONTAGNE" }, { - "codePostal": "53440", - "codeCommune": "53008", - "libelleAcheminement": "ARON", - "nomCommune": "ARON" + "codePostal": "52800", + "codeCommune": "52541", + "libelleAcheminement": "VITRY LES NOGENT", + "nomCommune": "VITRY LES NOGENT" + }, + { + "codePostal": "52200", + "codeCommune": "52545", + "libelleAcheminement": "VOISINES", + "nomCommune": "VOISINES" + }, + { + "codePostal": "52240", + "codeCommune": "52549", + "libelleAcheminement": "VRONCOURT LA COTE", + "nomCommune": "VRONCOURT LA COTE" }, { "codePostal": "53240", @@ -14088,34 +13950,40 @@ "nomCommune": "LA BACONNIERE" }, { - "codePostal": "53170", - "codeCommune": "53022", - "libelleAcheminement": "LA BAZOUGE DE CHEMERE", - "nomCommune": "LA BAZOUGE DE CHEMERE" + "codePostal": "53350", + "codeCommune": "53018", + "libelleAcheminement": "BALLOTS", + "nomCommune": "BALLOTS" }, { "codePostal": "53440", - "codeCommune": "53028", - "libelleAcheminement": "BELGEARD", - "nomCommune": "BELGEARD" + "codeCommune": "53021", + "libelleAcheminement": "LA BAZOGE MONTPINCON", + "nomCommune": "LA BAZOGE MONTPINCON" }, { - "codePostal": "53800", - "codeCommune": "53033", - "libelleAcheminement": "LA BOISSIERE", - "nomCommune": "LA BOISSIERE" + "codePostal": "53320", + "codeCommune": "53026", + "libelleAcheminement": "BEAULIEU SUR OUDON", + "nomCommune": "BEAULIEU SUR OUDON" }, { - "codePostal": "53800", - "codeCommune": "53035", - "libelleAcheminement": "BOUCHAMPS LES CRAON", - "nomCommune": "BOUCHAMPS LES CRAON" + "codePostal": "53290", + "codeCommune": "53029", + "libelleAcheminement": "BIERNE LES VILLAGES", + "nomCommune": "BIERNE LES VILLAGES" }, { - "codePostal": "53290", - "codeCommune": "53036", - "libelleAcheminement": "BOUERE", - "nomCommune": "BOUERE" + "codePostal": "53170", + "codeCommune": "53030", + "libelleAcheminement": "LE BIGNON DU MAINE", + "nomCommune": "LE BIGNON DU MAINE" + }, + { + "codePostal": "53960", + "codeCommune": "53034", + "libelleAcheminement": "BONCHAMP LES LAVAL", + "nomCommune": "BONCHAMP LES LAVAL" }, { "codePostal": "53370", @@ -14124,16 +13992,10 @@ "nomCommune": "BOULAY LES IFS" }, { - "codePostal": "53410", - "codeCommune": "53039", - "libelleAcheminement": "LE BOURGNEUF LA FORET", - "nomCommune": "LE BOURGNEUF LA FORET" - }, - { - "codePostal": "53410", - "codeCommune": "53040", - "libelleAcheminement": "BOURGON", - "nomCommune": "BOURGON" + "codePostal": "53350", + "codeCommune": "53041", + "libelleAcheminement": "BRAINS SUR LES MARCHES", + "nomCommune": "BRAINS SUR LES MARCHES" }, { "codePostal": "53120", @@ -14142,94 +14004,112 @@ "nomCommune": "CARELLES" }, { - "codePostal": "53250", - "codeCommune": "53061", - "libelleAcheminement": "CHARCHIGNE", - "nomCommune": "CHARCHIGNE" + "codePostal": "53300", + "codeCommune": "53055", + "libelleAcheminement": "CHANTRIGNE", + "nomCommune": "CHANTRIGNE" }, { - "codePostal": "53250", - "codeCommune": "53069", - "libelleAcheminement": "CHEVAIGNE DU MAINE", - "nomCommune": "CHEVAIGNE DU MAINE" + "codePostal": "53200", + "codeCommune": "53062", + "libelleAcheminement": "CHATEAU GONTIER SUR MAYENNE", + "nomCommune": "CHATEAU GONTIER SUR MAYENNE" }, { - "codePostal": "53120", - "codeCommune": "53071", - "libelleAcheminement": "COLOMBIERS DU PLESSIS", - "nomCommune": "COLOMBIERS DU PLESSIS" + "codePostal": "53100", + "codeCommune": "53064", + "libelleAcheminement": "CHATILLON SUR COLMONT", + "nomCommune": "CHATILLON SUR COLMONT" }, { - "codePostal": "53230", - "codeCommune": "53077", - "libelleAcheminement": "COSSE LE VIVIEN", - "nomCommune": "COSSE LE VIVIEN" + "codePostal": "53340", + "codeCommune": "53067", + "libelleAcheminement": "CHEMERE LE ROI", + "nomCommune": "CHEMERE LE ROI" }, { - "codePostal": "53500", - "codeCommune": "53096", - "libelleAcheminement": "ERNEE", - "nomCommune": "ERNEE" + "codePostal": "53340", + "codeCommune": "53076", + "libelleAcheminement": "COSSE EN CHAMPAGNE", + "nomCommune": "COSSE EN CHAMPAGNE" }, { - "codePostal": "53440", - "codeCommune": "53109", - "libelleAcheminement": "GRAZAY", - "nomCommune": "GRAZAY" + "codePostal": "53200", + "codeCommune": "53089", + "libelleAcheminement": "DAON", + "nomCommune": "DAON" }, { - "codePostal": "53300", - "codeCommune": "53111", - "libelleAcheminement": "LA HAIE TRAVERSAINE", - "nomCommune": "LA HAIE TRAVERSAINE" + "codePostal": "53400", + "codeCommune": "53090", + "libelleAcheminement": "DENAZE", + "nomCommune": "DENAZE" }, { - "codePostal": "53250", - "codeCommune": "53112", - "libelleAcheminement": "LE HAM", - "nomCommune": "LE HAM" + "codePostal": "53150", + "codeCommune": "53097", + "libelleAcheminement": "EVRON", + "nomCommune": "EVRON" }, { - "codePostal": "53220", - "codeCommune": "53126", - "libelleAcheminement": "LARCHAMP", - "nomCommune": "LARCHAMP" + "codePostal": "53350", + "codeCommune": "53098", + "libelleAcheminement": "FONTAINE COUVERTE", + "nomCommune": "FONTAINE COUVERTE" }, { - "codePostal": "53540", - "codeCommune": "53128", - "libelleAcheminement": "LAUBRIERES", - "nomCommune": "LAUBRIERES" + "codePostal": "53940", + "codeCommune": "53103", + "libelleAcheminement": "LE GENEST ST ISLE", + "nomCommune": "LE GENEST ST ISLE" }, { - "codePostal": "53000", - "codeCommune": "53130", - "libelleAcheminement": "LAVAL", - "nomCommune": "LAVAL" + "codePostal": "53200", + "codeCommune": "53104", + "libelleAcheminement": "GENNES LONGUEFUYE", + "nomCommune": "GENNES LONGUEFUYE" }, { - "codePostal": "53140", - "codeCommune": "53133", - "libelleAcheminement": "LIGNIERES ORGERES", - "nomCommune": "LIGNIERES ORGERES" + "codePostal": "53120", + "codeCommune": "53107", + "libelleAcheminement": "GORRON", + "nomCommune": "GORRON" }, { - "codePostal": "53360", - "codeCommune": "53136", - "libelleAcheminement": "LA ROCHE NEUVILLE", - "nomCommune": "LA ROCHE NEUVILLE" + "codePostal": "53290", + "codeCommune": "53110", + "libelleAcheminement": "GREZ EN BOUERE", + "nomCommune": "GREZ EN BOUERE" }, { - "codePostal": "53320", - "codeCommune": "53137", - "libelleAcheminement": "LOIRON RUILLE", - "nomCommune": "LOIRON RUILLE" + "codePostal": "53640", + "codeCommune": "53114", + "libelleAcheminement": "HARDANGES", + "nomCommune": "HARDANGES" }, { - "codePostal": "53320", - "codeCommune": "53137", - "libelleAcheminement": "LOIRON RUILLE", - "nomCommune": "LOIRON RUILLE" + "codePostal": "53250", + "codeCommune": "53121", + "libelleAcheminement": "JAVRON LES CHAPELLES", + "nomCommune": "JAVRON LES CHAPELLES" + }, + { + "codePostal": "53110", + "codeCommune": "53127", + "libelleAcheminement": "LASSAY LES CHATEAUX", + "nomCommune": "LASSAY LES CHATEAUX" + }, + { + "codePostal": "53400", + "codeCommune": "53135", + "libelleAcheminement": "LIVRE LA TOUCHE", + "nomCommune": "LIVRE LA TOUCHE" + }, + { + "codePostal": "53200", + "codeCommune": "53145", + "libelleAcheminement": "MARIGNE PEUTON", + "nomCommune": "MARIGNE PEUTON" }, { "codePostal": "53400", @@ -14238,40 +14118,34 @@ "nomCommune": "MEE" }, { - "codePostal": "53230", - "codeCommune": "53151", - "libelleAcheminement": "MERAL", - "nomCommune": "MERAL" - }, - { - "codePostal": "53500", - "codeCommune": "53155", - "libelleAcheminement": "MONTENAY", - "nomCommune": "MONTENAY" + "codePostal": "53640", + "codeCommune": "53160", + "libelleAcheminement": "MONTREUIL POULAY", + "nomCommune": "MONTREUIL POULAY" }, { - "codePostal": "53100", - "codeCommune": "53162", - "libelleAcheminement": "MOULAY", - "nomCommune": "MOULAY" + "codePostal": "53150", + "codeCommune": "53161", + "libelleAcheminement": "MONTSURS", + "nomCommune": "MONTSURS" }, { - "codePostal": "53300", - "codeCommune": "53170", - "libelleAcheminement": "OISSEAU", - "nomCommune": "OISSEAU" + "codePostal": "53150", + "codeCommune": "53161", + "libelleAcheminement": "MONTSURS", + "nomCommune": "MONTSURS" }, { - "codePostal": "53260", - "codeCommune": "53175", - "libelleAcheminement": "PARNE SUR ROC", - "nomCommune": "PARNE SUR ROC" + "codePostal": "53150", + "codeCommune": "53161", + "libelleAcheminement": "MONTSURS", + "nomCommune": "MONTSURS" }, { - "codePostal": "53220", - "codeCommune": "53181", - "libelleAcheminement": "PONTMAIN", - "nomCommune": "PONTMAIN" + "codePostal": "53360", + "codeCommune": "53172", + "libelleAcheminement": "ORIGNE", + "nomCommune": "ORIGNE" }, { "codePostal": "53220", @@ -14280,64 +14154,40 @@ "nomCommune": "ST BERTHEVIN LA TANNIERE" }, { - "codePostal": "53140", - "codeCommune": "53204", - "libelleAcheminement": "ST CALAIS DU DESERT", - "nomCommune": "ST CALAIS DU DESERT" - }, - { - "codePostal": "53320", - "codeCommune": "53209", - "libelleAcheminement": "ST CYR LE GRAVELAIS", - "nomCommune": "ST CYR LE GRAVELAIS" - }, - { - "codePostal": "53600", - "codeCommune": "53218", - "libelleAcheminement": "STE GEMMES LE ROBERT", - "nomCommune": "STE GEMMES LE ROBERT" - }, - { - "codePostal": "53480", - "codeCommune": "53220", - "libelleAcheminement": "ST GEORGES LE FLECHARD", - "nomCommune": "ST GEORGES LE FLECHARD" - }, - { - "codePostal": "53600", - "codeCommune": "53221", - "libelleAcheminement": "ST GEORGES SUR ERVE", - "nomCommune": "ST GEORGES SUR ERVE" + "codePostal": "53290", + "codeCommune": "53210", + "libelleAcheminement": "ST DENIS D ANJOU", + "nomCommune": "ST DENIS D ANJOU" }, { - "codePostal": "53700", - "codeCommune": "53223", - "libelleAcheminement": "ST GERMAIN DE COULAMER", - "nomCommune": "ST GERMAIN DE COULAMER" + "codePostal": "53170", + "codeCommune": "53212", + "libelleAcheminement": "ST DENIS DU MAINE", + "nomCommune": "ST DENIS DU MAINE" }, { - "codePostal": "53240", - "codeCommune": "53229", - "libelleAcheminement": "ST JEAN SUR MAYENNE", - "nomCommune": "ST JEAN SUR MAYENNE" + "codePostal": "53380", + "codeCommune": "53226", + "libelleAcheminement": "ST HILAIRE DU MAINE", + "nomCommune": "ST HILAIRE DU MAINE" }, { "codePostal": "53300", - "codeCommune": "53234", - "libelleAcheminement": "ST LOUP DU GAST", - "nomCommune": "ST LOUP DU GAST" + "codeCommune": "53237", + "libelleAcheminement": "ST MARS SUR COLMONT", + "nomCommune": "ST MARS SUR COLMONT" }, { - "codePostal": "53700", - "codeCommune": "53236", - "libelleAcheminement": "ST MARS DU DESERT", - "nomCommune": "ST MARS DU DESERT" + "codePostal": "53220", + "codeCommune": "53238", + "libelleAcheminement": "ST MARS SUR LA FUTAIE", + "nomCommune": "ST MARS SUR LA FUTAIE" }, { "codePostal": "53410", - "codeCommune": "53243", - "libelleAcheminement": "ST OUEN DES TOITS", - "nomCommune": "ST OUEN DES TOITS" + "codeCommune": "53247", + "libelleAcheminement": "ST PIERRE LA COUR", + "nomCommune": "ST PIERRE LA COUR" }, { "codePostal": "53160", @@ -14345,18 +14195,6 @@ "libelleAcheminement": "VIMARTIN SUR ORTHE", "nomCommune": "VIMARTIN SUR ORTHE" }, - { - "codePostal": "53800", - "codeCommune": "53253", - "libelleAcheminement": "ST SATURNIN DU LIMET", - "nomCommune": "ST SATURNIN DU LIMET" - }, - { - "codePostal": "53270", - "codeCommune": "53255", - "libelleAcheminement": "STE SUZANNE ET CHAMMES", - "nomCommune": "STE SUZANNE ET CHAMMES" - }, { "codePostal": "53210", "codeCommune": "53262", @@ -14364,76 +14202,52 @@ "nomCommune": "SOULGE SUR OUETTE" }, { - "codePostal": "53110", - "codeCommune": "53263", - "libelleAcheminement": "THUBOEUF", - "nomCommune": "THUBOEUF" - }, - { - "codePostal": "53250", - "codeCommune": "53272", - "libelleAcheminement": "VILLEPAIL", - "nomCommune": "VILLEPAIL" - }, - { - "codePostal": "54800", - "codeCommune": "54002", - "libelleAcheminement": "ABBEVILLE LES CONFLANS", - "nomCommune": "ABBEVILLE LES CONFLANS" - }, - { - "codePostal": "54115", - "codeCommune": "54003", - "libelleAcheminement": "ABONCOURT", - "nomCommune": "ABONCOURT" - }, - { - "codePostal": "54800", - "codeCommune": "54004", - "libelleAcheminement": "AFFLEVILLE", - "nomCommune": "AFFLEVILLE" + "codePostal": "54560", + "codeCommune": "54029", + "libelleAcheminement": "AUDUN LE ROMAN", + "nomCommune": "AUDUN LE ROMAN" }, { - "codePostal": "54740", - "codeCommune": "54005", - "libelleAcheminement": "AFFRACOURT", - "nomCommune": "AFFRACOURT" + "codePostal": "54450", + "codeCommune": "54030", + "libelleAcheminement": "AUTREPIERRE", + "nomCommune": "AUTREPIERRE" }, { "codePostal": "54450", - "codeCommune": "54013", - "libelleAcheminement": "AMENONCOURT", - "nomCommune": "AMENONCOURT" + "codeCommune": "54035", + "libelleAcheminement": "AVRICOURT", + "nomCommune": "AVRICOURT" }, { - "codePostal": "54450", - "codeCommune": "54014", - "libelleAcheminement": "ANCERVILLER", - "nomCommune": "ANCERVILLER" + "codePostal": "54122", + "codeCommune": "54038", + "libelleAcheminement": "AZERAILLES", + "nomCommune": "AZERAILLES" }, { - "codePostal": "54200", - "codeCommune": "54016", - "libelleAcheminement": "ANDILLY", - "nomCommune": "ANDILLY" + "codePostal": "54120", + "codeCommune": "54039", + "libelleAcheminement": "BACCARAT", + "nomCommune": "BACCARAT" }, { - "codePostal": "54110", - "codeCommune": "54020", - "libelleAcheminement": "ANTHELUPT", - "nomCommune": "ANTHELUPT" + "codePostal": "54540", + "codeCommune": "54040", + "libelleAcheminement": "BADONVILLER", + "nomCommune": "BADONVILLER" }, { - "codePostal": "54122", - "codeCommune": "54038", - "libelleAcheminement": "AZERAILLES", - "nomCommune": "AZERAILLES" + "codePostal": "54450", + "codeCommune": "54044", + "libelleAcheminement": "BARBAS", + "nomCommune": "BARBAS" }, { - "codePostal": "54550", - "codeCommune": "54043", - "libelleAcheminement": "BAINVILLE SUR MADON", - "nomCommune": "BAINVILLE SUR MADON" + "codePostal": "54170", + "codeCommune": "54047", + "libelleAcheminement": "BARISEY LA COTE", + "nomCommune": "BARISEY LA COTE" }, { "codePostal": "54150", @@ -14442,10 +14256,16 @@ "nomCommune": "LES BAROCHES" }, { - "codePostal": "54150", - "codeCommune": "54048", - "libelleAcheminement": "LES BAROCHES", - "nomCommune": "LES BAROCHES" + "codePostal": "54620", + "codeCommune": "54049", + "libelleAcheminement": "BASLIEUX", + "nomCommune": "BASLIEUX" + }, + { + "codePostal": "54115", + "codeCommune": "54052", + "libelleAcheminement": "BATTIGNY", + "nomCommune": "BATTIGNY" }, { "codePostal": "54470", @@ -14460,22 +14280,10 @@ "nomCommune": "BELLEAU" }, { - "codePostal": "54940", - "codeCommune": "54060", - "libelleAcheminement": "BELLEVILLE", - "nomCommune": "BELLEVILLE" - }, - { - "codePostal": "54620", - "codeCommune": "54067", - "libelleAcheminement": "BEUVEILLE", - "nomCommune": "BEUVEILLE" - }, - { - "codePostal": "54115", - "codeCommune": "54068", - "libelleAcheminement": "BEUVEZIN", - "nomCommune": "BEUVEZIN" + "codePostal": "54120", + "codeCommune": "54065", + "libelleAcheminement": "BERTRICHAMPS", + "nomCommune": "BERTRICHAMPS" }, { "codePostal": "54760", @@ -14484,46 +14292,40 @@ "nomCommune": "BEY SUR SEILLE" }, { - "codePostal": "54370", - "codeCommune": "54071", - "libelleAcheminement": "BEZANGE LA GRANDE", - "nomCommune": "BEZANGE LA GRANDE" - }, - { - "codePostal": "54800", - "codeCommune": "54082", - "libelleAcheminement": "BONCOURT", - "nomCommune": "BONCOURT" + "codePostal": "54540", + "codeCommune": "54075", + "libelleAcheminement": "BIONVILLE", + "nomCommune": "BIONVILLE" }, { - "codePostal": "54470", - "codeCommune": "54087", - "libelleAcheminement": "BOUILLONVILLE", - "nomCommune": "BOUILLONVILLE" + "codePostal": "54770", + "codeCommune": "54089", + "libelleAcheminement": "BOUXIERES AUX CHENES", + "nomCommune": "BOUXIERES AUX CHENES" }, { - "codePostal": "54200", - "codeCommune": "54088", - "libelleAcheminement": "BOUVRON", - "nomCommune": "BOUVRON" + "codePostal": "54700", + "codeCommune": "54091", + "libelleAcheminement": "BOUXIERES SOUS FROIDMONT", + "nomCommune": "BOUXIERES SOUS FROIDMONT" }, { - "codePostal": "54610", - "codeCommune": "54095", - "libelleAcheminement": "BRATTE", - "nomCommune": "BRATTE" + "codePostal": "54930", + "codeCommune": "54092", + "libelleAcheminement": "BOUZANVILLE", + "nomCommune": "BOUZANVILLE" }, { - "codePostal": "54190", - "codeCommune": "54096", - "libelleAcheminement": "BREHAIN LA VILLE", - "nomCommune": "BREHAIN LA VILLE" + "codePostal": "54150", + "codeCommune": "54099", + "libelleAcheminement": "VAL DE BRIEY", + "nomCommune": "VAL DE BRIEY" }, { - "codePostal": "54200", - "codeCommune": "54102", - "libelleAcheminement": "BRULEY", - "nomCommune": "BRULEY" + "codePostal": "54280", + "codeCommune": "54100", + "libelleAcheminement": "BRIN SUR SEILLE", + "nomCommune": "BRIN SUR SEILLE" }, { "codePostal": "54420", @@ -14538,70 +14340,70 @@ "nomCommune": "CHAMPEY SUR MOSELLE" }, { - "codePostal": "54260", - "codeCommune": "54118", - "libelleAcheminement": "CHARENCY VEZIN", - "nomCommune": "CHARENCY VEZIN" + "codePostal": "54250", + "codeCommune": "54115", + "libelleAcheminement": "CHAMPIGNEULLES", + "nomCommune": "CHAMPIGNEULLES" }, { - "codePostal": "54113", - "codeCommune": "54120", - "libelleAcheminement": "CHARMES LA COTE", - "nomCommune": "CHARMES LA COTE" + "codePostal": "54470", + "codeCommune": "54119", + "libelleAcheminement": "CHAREY", + "nomCommune": "CHAREY" }, { - "codePostal": "54230", - "codeCommune": "54123", - "libelleAcheminement": "CHAVIGNY", - "nomCommune": "CHAVIGNY" + "codePostal": "54450", + "codeCommune": "54124", + "libelleAcheminement": "CHAZELLES SUR ALBE", + "nomCommune": "CHAZELLES SUR ALBE" }, { - "codePostal": "54170", - "codeCommune": "54135", - "libelleAcheminement": "COLOMBEY LES BELLES", - "nomCommune": "COLOMBEY LES BELLES" + "codePostal": "54610", + "codeCommune": "54131", + "libelleAcheminement": "CLEMERY", + "nomCommune": "CLEMERY" }, { - "codePostal": "54290", - "codeCommune": "54144", - "libelleAcheminement": "CREVECHAMPS", - "nomCommune": "CREVECHAMPS" + "codePostal": "54260", + "codeCommune": "54134", + "libelleAcheminement": "COLMEY", + "nomCommune": "COLMEY" }, { - "codePostal": "54300", - "codeCommune": "54147", - "libelleAcheminement": "CRION", - "nomCommune": "CRION" + "codePostal": "54400", + "codeCommune": "54138", + "libelleAcheminement": "COSNES ET ROMAIN", + "nomCommune": "COSNES ET ROMAIN" }, { - "codePostal": "54680", - "codeCommune": "54149", - "libelleAcheminement": "CRUSNES", - "nomCommune": "CRUSNES" + "codePostal": "54930", + "codeCommune": "54140", + "libelleAcheminement": "COURCELLES", + "nomCommune": "COURCELLES" }, { - "codePostal": "54670", - "codeCommune": "54150", - "libelleAcheminement": "CUSTINES", - "nomCommune": "CUSTINES" + "codePostal": "54110", + "codeCommune": "54145", + "libelleAcheminement": "CREVIC", + "nomCommune": "CREVIC" }, { - "codePostal": "54930", - "codeCommune": "54156", - "libelleAcheminement": "DIARVILLE", - "nomCommune": "DIARVILLE" + "codePostal": "54120", + "codeCommune": "54154", + "libelleAcheminement": "DENEUVRE", + "nomCommune": "DENEUVRE" }, { - "codePostal": "54385", - "codeCommune": "54160", - "libelleAcheminement": "DOMEVRE EN HAYE", - "nomCommune": "DOMEVRE EN HAYE" + "codePostal": "54130", + "codeCommune": "54165", + "libelleAcheminement": "DOMMARTEMONT", + "nomCommune": "DOMMARTEMONT" }, { - "codePostal": "54115", - "codeCommune": "54164", - "libelleAcheminement": "DOMMARIE EULMONT", - "nomCommune": "DOMMARIE EULMONT" + "codePostal": "54200", + "codeCommune": "54167", + "libelleAcheminement": "DOMMARTIN LES TOUL", + "nomCommune": "DOMMARTIN LES TOUL" }, { "codePostal": "54490", @@ -14616,130 +14418,160 @@ "nomCommune": "DOMPTAIL EN L AIR" }, { - "codePostal": "54620", - "codeCommune": "54172", - "libelleAcheminement": "DONCOURT LES LONGUYON", - "nomCommune": "DONCOURT LES LONGUYON" + "codePostal": "54280", + "codeCommune": "54180", + "libelleAcheminement": "ERBEVILLER SUR AMEZULE", + "nomCommune": "ERBEVILLER SUR AMEZULE" }, { - "codePostal": "54830", - "codeCommune": "54183", - "libelleAcheminement": "ESSEY LA COTE", - "nomCommune": "ESSEY LA COTE" + "codePostal": "54690", + "codeCommune": "54186", + "libelleAcheminement": "EULMONT", + "nomCommune": "EULMONT" }, { - "codePostal": "54270", - "codeCommune": "54184", - "libelleAcheminement": "ESSEY LES NANCY", - "nomCommune": "ESSEY LES NANCY" + "codePostal": "54760", + "codeCommune": "54188", + "libelleAcheminement": "FAULX", + "nomCommune": "FAULX" }, { - "codePostal": "54630", - "codeCommune": "54196", - "libelleAcheminement": "FLAVIGNY SUR MOSELLE", - "nomCommune": "FLAVIGNY SUR MOSELLE" + "codePostal": "54122", + "codeCommune": "54199", + "libelleAcheminement": "FLIN", + "nomCommune": "FLIN" }, { - "codePostal": "54470", - "codeCommune": "54200", - "libelleAcheminement": "FLIREY", - "nomCommune": "FLIREY" + "codePostal": "54930", + "codeCommune": "54204", + "libelleAcheminement": "FORCELLES SOUS GUGNEY", + "nomCommune": "FORCELLES SOUS GUGNEY" + }, + { + "codePostal": "54570", + "codeCommune": "54205", + "libelleAcheminement": "FOUG", + "nomCommune": "FOUG" }, { "codePostal": "54450", - "codeCommune": "54210", - "libelleAcheminement": "FREMENIL", - "nomCommune": "FREMENIL" + "codeCommune": "54211", + "libelleAcheminement": "FREMONVILLE", + "nomCommune": "FREMONVILLE" }, { - "codePostal": "54290", - "codeCommune": "54216", - "libelleAcheminement": "FROVILLE", - "nomCommune": "FROVILLE" + "codePostal": "54260", + "codeCommune": "54212", + "libelleAcheminement": "FRESNOIS LA MONTAGNE", + "nomCommune": "FRESNOIS LA MONTAGNE" }, { - "codePostal": "54110", - "codeCommune": "54219", - "libelleAcheminement": "GELLENONCOURT", - "nomCommune": "GELLENONCOURT" + "codePostal": "54800", + "codeCommune": "54213", + "libelleAcheminement": "FRIAUVILLE", + "nomCommune": "FRIAUVILLE" + }, + { + "codePostal": "54390", + "codeCommune": "54215", + "libelleAcheminement": "FROUARD", + "nomCommune": "FROUARD" + }, + { + "codePostal": "54120", + "codeCommune": "54217", + "libelleAcheminement": "GELACOURT", + "nomCommune": "GELACOURT" }, { "codePostal": "54830", - "codeCommune": "54228", - "libelleAcheminement": "GIRIVILLER", - "nomCommune": "GIRIVILLER" + "codeCommune": "54222", + "libelleAcheminement": "GERBEVILLER", + "nomCommune": "GERBEVILLER" }, { - "codePostal": "54840", - "codeCommune": "54232", - "libelleAcheminement": "GONDREVILLE", - "nomCommune": "GONDREVILLE" + "codePostal": "54740", + "codeCommune": "54224", + "libelleAcheminement": "GERMONVILLE", + "nomCommune": "GERMONVILLE" }, { - "codePostal": "54730", - "codeCommune": "54234", - "libelleAcheminement": "GORCY", - "nomCommune": "GORCY" + "codePostal": "54800", + "codeCommune": "54231", + "libelleAcheminement": "GONDRECOURT AIX", + "nomCommune": "GONDRECOURT AIX" + }, + { + "codePostal": "54260", + "codeCommune": "54236", + "libelleAcheminement": "GRAND FAILLY", + "nomCommune": "GRAND FAILLY" + }, + { + "codePostal": "54470", + "codeCommune": "54240", + "libelleAcheminement": "GROSROUVRES", + "nomCommune": "GROSROUVRES" }, { "codePostal": "54290", - "codeCommune": "54245", - "libelleAcheminement": "HAIGNEVILLE", - "nomCommune": "HAIGNEVILLE" + "codeCommune": "54256", + "libelleAcheminement": "HAUSSONVILLE", + "nomCommune": "HAUSSONVILLE" }, { - "codePostal": "54450", - "codeCommune": "54246", - "libelleAcheminement": "HALLOVILLE", - "nomCommune": "HALLOVILLE" + "codePostal": "54180", + "codeCommune": "54257", + "libelleAcheminement": "HEILLECOURT", + "nomCommune": "HEILLECOURT" }, { - "codePostal": "54800", - "codeCommune": "54253", - "libelleAcheminement": "HATRIZE", - "nomCommune": "HATRIZE" + "codePostal": "54590", + "codeCommune": "54270", + "libelleAcheminement": "HUSSIGNY GODBRANGE", + "nomCommune": "HUSSIGNY GODBRANGE" }, { - "codePostal": "54860", - "codeCommune": "54254", - "libelleAcheminement": "HAUCOURT MOULAINE", - "nomCommune": "HAUCOURT MOULAINE" + "codePostal": "54800", + "codeCommune": "54273", + "libelleAcheminement": "JARNY", + "nomCommune": "JARNY" }, { - "codePostal": "54450", - "codeCommune": "54259", - "libelleAcheminement": "HERBEVILLER", - "nomCommune": "HERBEVILLER" + "codePostal": "54370", + "codeCommune": "54285", + "libelleAcheminement": "JUVRECOURT", + "nomCommune": "JUVRECOURT" }, { "codePostal": "54200", - "codeCommune": "54272", - "libelleAcheminement": "JAILLON", - "nomCommune": "JAILLON" + "codeCommune": "54288", + "libelleAcheminement": "LAGNEY", + "nomCommune": "LAGNEY" }, { - "codePostal": "54800", - "codeCommune": "54283", - "libelleAcheminement": "JOUAVILLE", - "nomCommune": "JOUAVILLE" + "codePostal": "54770", + "codeCommune": "54289", + "libelleAcheminement": "LAITRE SOUS AMANCE", + "nomCommune": "LAITRE SOUS AMANCE" }, { - "codePostal": "54720", - "codeCommune": "54290", - "libelleAcheminement": "LAIX", - "nomCommune": "LAIX" + "codePostal": "54300", + "codeCommune": "54292", + "libelleAcheminement": "LAMATH", + "nomCommune": "LAMATH" }, { - "codePostal": "54360", - "codeCommune": "54293", - "libelleAcheminement": "LANDECOURT", - "nomCommune": "LANDECOURT" + "codePostal": "54950", + "codeCommune": "54303", + "libelleAcheminement": "LARONXE", + "nomCommune": "LARONXE" }, { - "codePostal": "54150", - "codeCommune": "54302", - "libelleAcheminement": "LANTEFONTAINE", - "nomCommune": "LANTEFONTAINE" + "codePostal": "54570", + "codeCommune": "54306", + "libelleAcheminement": "LAY ST REMY", + "nomCommune": "LAY ST REMY" }, { "codePostal": "54740", @@ -14747,18 +14579,6 @@ "libelleAcheminement": "LEBEUVILLE", "nomCommune": "LEBEUVILLE" }, - { - "codePostal": "54450", - "codeCommune": "54308", - "libelleAcheminement": "LEINTREY", - "nomCommune": "LEINTREY" - }, - { - "codePostal": "54110", - "codeCommune": "54311", - "libelleAcheminement": "LENONCOURT", - "nomCommune": "LENONCOURT" - }, { "codePostal": "54470", "codeCommune": "54316", @@ -14766,82 +14586,76 @@ "nomCommune": "LIMEY REMENAUVILLE" }, { - "codePostal": "54460", - "codeCommune": "54318", - "libelleAcheminement": "LIVERDUN", - "nomCommune": "LIVERDUN" - }, - { - "codePostal": "54290", - "codeCommune": "54324", - "libelleAcheminement": "LOREY", - "nomCommune": "LOREY" + "codePostal": "54260", + "codeCommune": "54322", + "libelleAcheminement": "LONGUYON", + "nomCommune": "LONGUYON" }, { - "codePostal": "54129", - "codeCommune": "54331", - "libelleAcheminement": "MAGNIERES", - "nomCommune": "MAGNIERES" + "codePostal": "54260", + "codeCommune": "54322", + "libelleAcheminement": "LONGUYON", + "nomCommune": "LONGUYON" }, { - "codePostal": "54610", - "codeCommune": "54333", - "libelleAcheminement": "MAILLY SUR SEILLE", - "nomCommune": "MAILLY SUR SEILLE" + "codePostal": "54260", + "codeCommune": "54322", + "libelleAcheminement": "LONGUYON", + "nomCommune": "LONGUYON" }, { - "codePostal": "54300", - "codeCommune": "54349", - "libelleAcheminement": "MANONVILLER", - "nomCommune": "MANONVILLER" + "codePostal": "54710", + "codeCommune": "54328", + "libelleAcheminement": "LUDRES", + "nomCommune": "LUDRES" }, { - "codePostal": "54380", - "codeCommune": "54355", - "libelleAcheminement": "MARTINCOURT", - "nomCommune": "MARTINCOURT" + "codePostal": "54700", + "codeCommune": "54332", + "libelleAcheminement": "MAIDIERES", + "nomCommune": "MAIDIERES" }, { - "codePostal": "54360", - "codeCommune": "54359", - "libelleAcheminement": "MEHONCOURT", - "nomCommune": "MEHONCOURT" + "codePostal": "54670", + "codeCommune": "54338", + "libelleAcheminement": "MALLELOY", + "nomCommune": "MALLELOY" }, { - "codePostal": "54135", - "codeCommune": "54367", - "libelleAcheminement": "MEXY", - "nomCommune": "MEXY" + "codePostal": "54470", + "codeCommune": "54340", + "libelleAcheminement": "MAMEY", + "nomCommune": "MAMEY" }, { - "codePostal": "54670", - "codeCommune": "54369", - "libelleAcheminement": "MILLERY", - "nomCommune": "MILLERY" + "codePostal": "54200", + "codeCommune": "54360", + "libelleAcheminement": "MENIL LA TOUR", + "nomCommune": "MENIL LA TOUR" }, { - "codePostal": "54280", - "codeCommune": "54374", - "libelleAcheminement": "MONCEL SUR SEILLE", - "nomCommune": "MONCEL SUR SEILLE" + "codePostal": "54560", + "codeCommune": "54363", + "libelleAcheminement": "MERCY LE HAUT", + "nomCommune": "MERCY LE HAUT" }, { - "codePostal": "54350", - "codeCommune": "54382", - "libelleAcheminement": "MONT ST MARTIN", - "nomCommune": "MONT ST MARTIN" + "codePostal": "54385", + "codeCommune": "54370", + "libelleAcheminement": "MINORVILLE", + "nomCommune": "MINORVILLE" }, { - "codePostal": "54700", - "codeCommune": "54387", - "libelleAcheminement": "MORVILLE SUR SEILLE", - "nomCommune": "MORVILLE SUR SEILLE" + "codePostal": "54760", + "codeCommune": "54372", + "libelleAcheminement": "MOIVRONS", + "nomCommune": "MOIVRONS" }, { - "codePostal": "54118", - "codeCommune": "54393", - "libelleAcheminement": "MOYEN", - "nomCommune": "MOYEN" + "codePostal": "54170", + "codeCommune": "54379", + "libelleAcheminement": "MONT L ETROIT", + "nomCommune": "MONT L ETROIT" }, { "codePostal": "54100", @@ -14850,16 +14664,10 @@ "nomCommune": "NANCY" }, { - "codePostal": "54540", - "codeCommune": "54396", - "libelleAcheminement": "NEUFMAISONS", - "nomCommune": "NEUFMAISONS" - }, - { - "codePostal": "54290", - "codeCommune": "54399", - "libelleAcheminement": "NEUVILLER SUR MOSELLE", - "nomCommune": "NEUVILLER SUR MOSELLE" + "codePostal": "54450", + "codeCommune": "54401", + "libelleAcheminement": "NONHIGNY", + "nomCommune": "NONHIGNY" }, { "codePostal": "54700", @@ -14867,6 +14675,18 @@ "libelleAcheminement": "NORROY LES PONT A MOUSSON", "nomCommune": "NORROY LES PONT A MOUSSON" }, + { + "codePostal": "54385", + "codeCommune": "54404", + "libelleAcheminement": "NOVIANT AUX PRES", + "nomCommune": "NOVIANT AUX PRES" + }, + { + "codePostal": "54450", + "codeCommune": "54406", + "libelleAcheminement": "OGEVILLER", + "nomCommune": "OGEVILLER" + }, { "codePostal": "54330", "codeCommune": "54407", @@ -14874,28 +14694,52 @@ "nomCommune": "OGNEVILLE" }, { - "codePostal": "54200", - "codeCommune": "54414", - "libelleAcheminement": "PAGNEY DERRIERE BARINE", - "nomCommune": "PAGNEY DERRIERE BARINE" + "codePostal": "54150", + "codeCommune": "54413", + "libelleAcheminement": "OZERAILLES", + "nomCommune": "OZERAILLES" }, { - "codePostal": "54620", - "codeCommune": "54428", - "libelleAcheminement": "PIERREPONT", - "nomCommune": "PIERREPONT" + "codePostal": "54480", + "codeCommune": "54419", + "libelleAcheminement": "PARUX", + "nomCommune": "PARUX" }, { - "codePostal": "54370", - "codeCommune": "54446", - "libelleAcheminement": "RECHICOURT LA PETITE", - "nomCommune": "RECHICOURT LA PETITE" + "codePostal": "54700", + "codeCommune": "54431", + "libelleAcheminement": "PONT A MOUSSON", + "nomCommune": "PONT A MOUSSON" }, { - "codePostal": "54300", - "codeCommune": "54449", - "libelleAcheminement": "REHAINVILLER", - "nomCommune": "REHAINVILLER" + "codePostal": "54550", + "codeCommune": "54432", + "libelleAcheminement": "PONT ST VINCENT", + "nomCommune": "PONT ST VINCENT" + }, + { + "codePostal": "54700", + "codeCommune": "54433", + "libelleAcheminement": "PORT SUR SEILLE", + "nomCommune": "PORT SUR SEILLE" + }, + { + "codePostal": "54490", + "codeCommune": "54436", + "libelleAcheminement": "PREUTIN HIGNY", + "nomCommune": "PREUTIN HIGNY" + }, + { + "codePostal": "54120", + "codeCommune": "54450", + "libelleAcheminement": "REHERREY", + "nomCommune": "REHERREY" + }, + { + "codePostal": "54430", + "codeCommune": "54451", + "libelleAcheminement": "REHON", + "nomCommune": "REHON" }, { "codePostal": "54370", @@ -14904,28 +14748,22 @@ "nomCommune": "REMONCOURT" }, { - "codePostal": "54110", - "codeCommune": "54462", - "libelleAcheminement": "ROSIERES AUX SALINES", - "nomCommune": "ROSIERES AUX SALINES" - }, - { - "codePostal": "54290", - "codeCommune": "54467", - "libelleAcheminement": "ROZELIEURES", - "nomCommune": "ROZELIEURES" + "codePostal": "54450", + "codeCommune": "54458", + "libelleAcheminement": "REPAIX", + "nomCommune": "REPAIX" }, { - "codePostal": "54950", - "codeCommune": "54472", - "libelleAcheminement": "ST CLEMENT", - "nomCommune": "ST CLEMENT" + "codePostal": "54360", + "codeCommune": "54461", + "libelleAcheminement": "ROMAIN", + "nomCommune": "ROMAIN" }, { - "codePostal": "54260", - "codeCommune": "54476", - "libelleAcheminement": "ST JEAN LES LONGUYON", - "nomCommune": "ST JEAN LES LONGUYON" + "codePostal": "54290", + "codeCommune": "54471", + "libelleAcheminement": "ST BOINGT", + "nomCommune": "ST BOINGT" }, { "codePostal": "54800", @@ -14934,460 +14772,412 @@ "nomCommune": "ST MARCEL" }, { - "codePostal": "54290", - "codeCommune": "54479", - "libelleAcheminement": "ST MARD", - "nomCommune": "ST MARD" + "codePostal": "54450", + "codeCommune": "54480", + "libelleAcheminement": "ST MARTIN", + "nomCommune": "ST MARTIN" }, { - "codePostal": "54650", - "codeCommune": "54493", - "libelleAcheminement": "SAULNES", - "nomCommune": "SAULNES" + "codePostal": "54130", + "codeCommune": "54482", + "libelleAcheminement": "ST MAX", + "nomCommune": "ST MAX" }, { - "codePostal": "54370", - "codeCommune": "54502", - "libelleAcheminement": "SERRES", - "nomCommune": "SERRES" + "codePostal": "54210", + "codeCommune": "54483", + "libelleAcheminement": "ST NICOLAS DE PORT", + "nomCommune": "ST NICOLAS DE PORT" }, { - "codePostal": "54300", - "codeCommune": "54507", - "libelleAcheminement": "SIONVILLER", - "nomCommune": "SIONVILLER" + "codePostal": "54170", + "codeCommune": "54496", + "libelleAcheminement": "SAULXURES LES VANNES", + "nomCommune": "SAULXURES LES VANNES" }, { - "codePostal": "54880", - "codeCommune": "54521", - "libelleAcheminement": "THIL", - "nomCommune": "THIL" + "codePostal": "54550", + "codeCommune": "54505", + "libelleAcheminement": "SEXEY AUX FORGES", + "nomCommune": "SEXEY AUX FORGES" }, { - "codePostal": "54385", - "codeCommune": "54532", - "libelleAcheminement": "TREMBLECOURT", - "nomCommune": "TREMBLECOURT" + "codePostal": "54280", + "codeCommune": "54510", + "libelleAcheminement": "SORNEVILLE", + "nomCommune": "SORNEVILLE" }, { - "codePostal": "54750", - "codeCommune": "54533", - "libelleAcheminement": "TRIEUX", - "nomCommune": "TRIEUX" + "codePostal": "54800", + "codeCommune": "54511", + "libelleAcheminement": "SPONVILLE", + "nomCommune": "SPONVILLE" }, { - "codePostal": "54890", - "codeCommune": "54544", - "libelleAcheminement": "VANDELAINVILLE", - "nomCommune": "VANDELAINVILLE" + "codePostal": "54260", + "codeCommune": "54514", + "libelleAcheminement": "TELLANCOURT", + "nomCommune": "TELLANCOURT" }, { - "codePostal": "54121", - "codeCommune": "54546", - "libelleAcheminement": "VANDIERES", - "nomCommune": "VANDIERES" + "codePostal": "54930", + "codeCommune": "54516", + "libelleAcheminement": "THEY SOUS VAUDEMONT", + "nomCommune": "THEY SOUS VAUDEMONT" }, { - "codePostal": "54830", - "codeCommune": "54561", - "libelleAcheminement": "VENNEZEY", - "nomCommune": "VENNEZEY" + "codePostal": "54610", + "codeCommune": "54517", + "libelleAcheminement": "THEZEY ST MARTIN", + "nomCommune": "THEZEY ST MARTIN" }, { - "codePostal": "54330", - "codeCommune": "54563", - "libelleAcheminement": "VEZELISE", - "nomCommune": "VEZELISE" + "codePostal": "54470", + "codeCommune": "54518", + "libelleAcheminement": "THIAUCOURT REGNIEVILLE", + "nomCommune": "THIAUCOURT REGNIEVILLE" }, { - "codePostal": "54260", - "codeCommune": "54582", - "libelleAcheminement": "VILLETTE", - "nomCommune": "VILLETTE" + "codePostal": "54800", + "codeCommune": "54524", + "libelleAcheminement": "THUMEREVILLE", + "nomCommune": "THUMEREVILLE" }, { - "codePostal": "54700", - "codeCommune": "54589", - "libelleAcheminement": "VITTONVILLE", - "nomCommune": "VITTONVILLE" + "codePostal": "54115", + "codeCommune": "54529", + "libelleAcheminement": "TRAMONT EMY", + "nomCommune": "TRAMONT EMY" }, { - "codePostal": "54330", - "codeCommune": "54592", - "libelleAcheminement": "VRONCOURT", - "nomCommune": "VRONCOURT" + "codePostal": "54570", + "codeCommune": "54534", + "libelleAcheminement": "TRONDES", + "nomCommune": "TRONDES" }, { - "codePostal": "55300", - "codeCommune": "55007", - "libelleAcheminement": "AMBLY SUR MEUSE", - "nomCommune": "AMBLY SUR MEUSE" + "codePostal": "54800", + "codeCommune": "54535", + "libelleAcheminement": "TRONVILLE", + "nomCommune": "TRONVILLE" }, { - "codePostal": "55230", - "codeCommune": "55008", - "libelleAcheminement": "AMEL SUR L ETANG", - "nomCommune": "AMEL SUR L ETANG" + "codePostal": "54870", + "codeCommune": "54537", + "libelleAcheminement": "UGNY", + "nomCommune": "UGNY" }, { - "codePostal": "55320", - "codeCommune": "55009", - "libelleAcheminement": "ANCEMONT", - "nomCommune": "ANCEMONT" + "codePostal": "54480", + "codeCommune": "54540", + "libelleAcheminement": "VAL ET CHATILLON", + "nomCommune": "VAL ET CHATILLON" }, { - "codePostal": "55300", - "codeCommune": "55012", - "libelleAcheminement": "APREMONT LA FORET", - "nomCommune": "APREMONT LA FORET" + "codePostal": "54370", + "codeCommune": "54541", + "libelleAcheminement": "VALHEY", + "nomCommune": "VALHEY" }, { - "codePostal": "55130", - "codeCommune": "55026", - "libelleAcheminement": "BADONVILLIERS GERAUVILLIERS", - "nomCommune": "BADONVILLIERS GERAUVILLIERS" + "codePostal": "54910", + "codeCommune": "54542", + "libelleAcheminement": "VALLEROY", + "nomCommune": "VALLEROY" }, { - "codePostal": "55300", - "codeCommune": "55027", - "libelleAcheminement": "BANNONCOURT", - "nomCommune": "BANNONCOURT" + "codePostal": "54830", + "codeCommune": "54543", + "libelleAcheminement": "VALLOIS", + "nomCommune": "VALLOIS" }, { - "codePostal": "55250", - "codeCommune": "55040", - "libelleAcheminement": "BEAUSITE", - "nomCommune": "BEAUSITE" + "codePostal": "54890", + "codeCommune": "54544", + "libelleAcheminement": "VANDELAINVILLE", + "nomCommune": "VANDELAINVILLE" }, { - "codePostal": "55000", - "codeCommune": "55041", - "libelleAcheminement": "BEHONNE", - "nomCommune": "BEHONNE" + "codePostal": "54740", + "codeCommune": "54553", + "libelleAcheminement": "VAUDEVILLE", + "nomCommune": "VAUDEVILLE" }, { - "codePostal": "55100", - "codeCommune": "55047", - "libelleAcheminement": "BETHELAINVILLE", - "nomCommune": "BETHELAINVILLE" + "codePostal": "54700", + "codeCommune": "54566", + "libelleAcheminement": "VILCEY SUR TREY", + "nomCommune": "VILCEY SUR TREY" }, { - "codePostal": "55270", - "codeCommune": "55048", - "libelleAcheminement": "BETHINCOURT", - "nomCommune": "BETHINCOURT" + "codePostal": "54380", + "codeCommune": "54569", + "libelleAcheminement": "VILLE AU VAL", + "nomCommune": "VILLE AU VAL" }, { - "codePostal": "55100", - "codeCommune": "55050", - "libelleAcheminement": "BEZONVAUX", - "nomCommune": "BEZONVAUX" + "codePostal": "54210", + "codeCommune": "54571", + "libelleAcheminement": "VILLE EN VERMOIS", + "nomCommune": "VILLE EN VERMOIS" }, { - "codePostal": "55230", - "codeCommune": "55053", - "libelleAcheminement": "BILLY SOUS MANGIENNES", - "nomCommune": "BILLY SOUS MANGIENNES" + "codePostal": "54700", + "codeCommune": "54579", + "libelleAcheminement": "VILLERS SOUS PRENY", + "nomCommune": "VILLERS SOUS PRENY" }, { - "codePostal": "55400", - "codeCommune": "55055", - "libelleAcheminement": "BLANZEE", - "nomCommune": "BLANZEE" + "codePostal": "54290", + "codeCommune": "54585", + "libelleAcheminement": "VIRECOURT", + "nomCommune": "VIRECOURT" }, { - "codePostal": "55200", - "codeCommune": "55058", - "libelleAcheminement": "BONCOURT SUR MEUSE", - "nomCommune": "BONCOURT SUR MEUSE" + "codePostal": "54123", + "codeCommune": "54586", + "libelleAcheminement": "VITERNE", + "nomCommune": "VITERNE" }, { - "codePostal": "55240", - "codeCommune": "55063", - "libelleAcheminement": "BOULIGNY", - "nomCommune": "BOULIGNY" + "codePostal": "54800", + "codeCommune": "54599", + "libelleAcheminement": "XONVILLE", + "nomCommune": "XONVILLE" }, { - "codePostal": "55300", - "codeCommune": "55064", - "libelleAcheminement": "BOUQUEMONT", - "nomCommune": "BOUQUEMONT" + "codePostal": "55170", + "codeCommune": "55010", + "libelleAcheminement": "ANCERVILLE", + "nomCommune": "ANCERVILLE" }, { "codePostal": "55800", - "codeCommune": "55069", - "libelleAcheminement": "BRABANT LE ROI", - "nomCommune": "BRABANT LE ROI" + "codeCommune": "55011", + "libelleAcheminement": "ANDERNAY", + "nomCommune": "ANDERNAY" }, { - "codePostal": "55000", - "codeCommune": "55079", - "libelleAcheminement": "BRILLON EN BARROIS", - "nomCommune": "BRILLON EN BARROIS" + "codePostal": "55300", + "codeCommune": "55012", + "libelleAcheminement": "APREMONT LA FORET", + "nomCommune": "APREMONT LA FORET" }, { "codePostal": "55120", - "codeCommune": "55082", - "libelleAcheminement": "BROCOURT EN ARGONNE", - "nomCommune": "BROCOURT EN ARGONNE" - }, - { - "codePostal": "55290", - "codeCommune": "55087", - "libelleAcheminement": "BURE", - "nomCommune": "BURE" + "codeCommune": "55017", + "libelleAcheminement": "AUTRECOURT SUR AIRE", + "nomCommune": "AUTRECOURT SUR AIRE" }, { - "codePostal": "55140", - "codeCommune": "55089", - "libelleAcheminement": "BUREY LA COTE", - "nomCommune": "BUREY LA COTE" + "codePostal": "55000", + "codeCommune": "55029", + "libelleAcheminement": "BAR LE DUC", + "nomCommune": "BAR LE DUC" }, { - "codePostal": "55300", - "codeCommune": "55093", - "libelleAcheminement": "BUXIERES SOUS LES COTES", - "nomCommune": "BUXIERES SOUS LES COTES" + "codePostal": "55170", + "codeCommune": "55031", + "libelleAcheminement": "BAUDONVILLIERS", + "nomCommune": "BAUDONVILLIERS" }, { - "codePostal": "55700", - "codeCommune": "55095", - "libelleAcheminement": "CESSE", - "nomCommune": "CESSE" + "codePostal": "55250", + "codeCommune": "55040", + "libelleAcheminement": "BEAUSITE", + "nomCommune": "BEAUSITE" }, { - "codePostal": "55140", - "codeCommune": "55097", - "libelleAcheminement": "CHALAINES", - "nomCommune": "CHALAINES" + "codePostal": "55430", + "codeCommune": "55043", + "libelleAcheminement": "BELLEVILLE SUR MEUSE", + "nomCommune": "BELLEVILLE SUR MEUSE" }, { - "codePostal": "55150", - "codeCommune": "55107", - "libelleAcheminement": "CHAUMONT DEVANT DAMVILLERS", - "nomCommune": "CHAUMONT DEVANT DAMVILLERS" + "codePostal": "55260", + "codeCommune": "55044", + "libelleAcheminement": "BELRAIN", + "nomCommune": "BELRAIN" }, { "codePostal": "55270", - "codeCommune": "55113", - "libelleAcheminement": "CHEPPY", - "nomCommune": "CHEPPY" - }, - { - "codePostal": "55120", - "codeCommune": "55117", - "libelleAcheminement": "CLERMONT EN ARGONNE", - "nomCommune": "CLERMONT EN ARGONNE" + "codeCommune": "55048", + "libelleAcheminement": "BETHINCOURT", + "nomCommune": "BETHINCOURT" }, { - "codePostal": "55120", - "codeCommune": "55117", - "libelleAcheminement": "CLERMONT EN ARGONNE", - "nomCommune": "CLERMONT EN ARGONNE" + "codePostal": "55000", + "codeCommune": "55049", + "libelleAcheminement": "BEUREY SUR SAULX", + "nomCommune": "BEUREY SUR SAULX" }, { - "codePostal": "55120", - "codeCommune": "55117", - "libelleAcheminement": "CLERMONT EN ARGONNE", - "nomCommune": "CLERMONT EN ARGONNE" + "codePostal": "55100", + "codeCommune": "55050", + "libelleAcheminement": "BEZONVAUX", + "nomCommune": "BEZONVAUX" }, { - "codePostal": "55110", - "codeCommune": "55118", - "libelleAcheminement": "CLERY LE GRAND", - "nomCommune": "CLERY LE GRAND" + "codePostal": "55130", + "codeCommune": "55059", + "libelleAcheminement": "BONNET", + "nomCommune": "BONNET" }, { - "codePostal": "55110", - "codeCommune": "55119", - "libelleAcheminement": "CLERY LE PETIT", - "nomCommune": "CLERY LE PETIT" + "codePostal": "55160", + "codeCommune": "55060", + "libelleAcheminement": "BONZEE", + "nomCommune": "BONZEE" }, { - "codePostal": "55110", - "codeCommune": "55124", - "libelleAcheminement": "CONSENVOYE", - "nomCommune": "CONSENVOYE" + "codePostal": "55100", + "codeCommune": "55073", + "libelleAcheminement": "BRAS SUR MEUSE", + "nomCommune": "BRAS SUR MEUSE" }, { - "codePostal": "55800", - "codeCommune": "55125", - "libelleAcheminement": "CONTRISSON", - "nomCommune": "CONTRISSON" + "codePostal": "55000", + "codeCommune": "55079", + "libelleAcheminement": "BRILLON EN BARROIS", + "nomCommune": "BRILLON EN BARROIS" }, { - "codePostal": "55260", - "codeCommune": "55127", - "libelleAcheminement": "COURCELLES EN BARROIS", - "nomCommune": "COURCELLES EN BARROIS" + "codePostal": "55140", + "codeCommune": "55088", + "libelleAcheminement": "BUREY EN VAUX", + "nomCommune": "BUREY EN VAUX" }, { - "codePostal": "55800", - "codeCommune": "55134", - "libelleAcheminement": "COUVONGES", - "nomCommune": "COUVONGES" + "codePostal": "55100", + "codeCommune": "55102", + "libelleAcheminement": "CHARNY SUR MEUSE", + "nomCommune": "CHARNY SUR MEUSE" }, { - "codePostal": "55270", - "codeCommune": "55137", - "libelleAcheminement": "CUISY", - "nomCommune": "CUISY" + "codePostal": "55100", + "codeCommune": "55106", + "libelleAcheminement": "CHATTANCOURT", + "nomCommune": "CHATTANCOURT" }, { - "codePostal": "55500", - "codeCommune": "55141", - "libelleAcheminement": "DAGONVILLE", - "nomCommune": "DAGONVILLE" + "codePostal": "55150", + "codeCommune": "55107", + "libelleAcheminement": "CHAUMONT DEVANT DAMVILLERS", + "nomCommune": "CHAUMONT DEVANT DAMVILLERS" }, { - "codePostal": "55130", - "codeCommune": "55148", - "libelleAcheminement": "DELOUZE ROSIERES", - "nomCommune": "DELOUZE ROSIERES" + "codePostal": "55270", + "codeCommune": "55115", + "libelleAcheminement": "CIERGES SOUS MONTFAUCON", + "nomCommune": "CIERGES SOUS MONTFAUCON" }, { "codePostal": "55120", - "codeCommune": "55155", - "libelleAcheminement": "DOMBASLE EN ARGONNE", - "nomCommune": "DOMBASLE EN ARGONNE" + "codeCommune": "55116", + "libelleAcheminement": "LE CLAON", + "nomCommune": "LE CLAON" }, { - "codePostal": "55400", - "codeCommune": "55171", - "libelleAcheminement": "EIX", - "nomCommune": "EIX" + "codePostal": "55110", + "codeCommune": "55119", + "libelleAcheminement": "CLERY LE PETIT", + "nomCommune": "CLERY LE PETIT" }, { - "codePostal": "55270", - "codeCommune": "55174", - "libelleAcheminement": "EPINONVILLE", - "nomCommune": "EPINONVILLE" + "codePostal": "55160", + "codeCommune": "55121", + "libelleAcheminement": "COMBRES SOUS LES COTES", + "nomCommune": "COMBRES SOUS LES COTES" }, { - "codePostal": "55260", - "codeCommune": "55177", - "libelleAcheminement": "ERIZE LA PETITE", - "nomCommune": "ERIZE LA PETITE" + "codePostal": "55200", + "codeCommune": "55122", + "libelleAcheminement": "COMMERCY", + "nomCommune": "COMMERCY" }, { "codePostal": "55000", - "codeCommune": "55178", - "libelleAcheminement": "ERIZE ST DIZIER", - "nomCommune": "ERIZE ST DIZIER" - }, - { - "codePostal": "55500", - "codeCommune": "55179", - "libelleAcheminement": "ERNEVILLE AUX BOIS", - "nomCommune": "ERNEVILLE AUX BOIS" - }, - { - "codePostal": "55100", - "codeCommune": "55180", - "libelleAcheminement": "ESNES EN ARGONNE", - "nomCommune": "ESNES EN ARGONNE" - }, - { - "codePostal": "55250", - "codeCommune": "55185", - "libelleAcheminement": "EVRES", - "nomCommune": "EVRES" - }, - { - "codePostal": "55600", - "codeCommune": "55188", - "libelleAcheminement": "FLASSIGNY", - "nomCommune": "FLASSIGNY" - }, - { - "codePostal": "55200", - "codeCommune": "55196", - "libelleAcheminement": "FREMEREVILLE SOUS LES COTES", - "nomCommune": "FREMEREVILLE SOUS LES COTES" + "codeCommune": "55123", + "libelleAcheminement": "LES HAUTS DE CHEE", + "nomCommune": "LES HAUTS DE CHEE" }, { "codePostal": "55260", - "codeCommune": "55197", - "libelleAcheminement": "FRESNES AU MONT", - "nomCommune": "FRESNES AU MONT" + "codeCommune": "55127", + "libelleAcheminement": "COURCELLES EN BARROIS", + "nomCommune": "COURCELLES EN BARROIS" }, { - "codePostal": "55100", - "codeCommune": "55200", - "libelleAcheminement": "FROMEREVILLE LES VALLONS", - "nomCommune": "FROMEREVILLE LES VALLONS" + "codePostal": "55170", + "codeCommune": "55132", + "libelleAcheminement": "COUSANCES LES FORGES", + "nomCommune": "COUSANCES LES FORGES" }, { - "codePostal": "55320", - "codeCommune": "55204", - "libelleAcheminement": "GENICOURT SUR MEUSE", - "nomCommune": "GENICOURT SUR MEUSE" + "codePostal": "55400", + "codeCommune": "55153", + "libelleAcheminement": "DIEPPE SOUS DOUAUMONT", + "nomCommune": "DIEPPE SOUS DOUAUMONT" }, { - "codePostal": "55130", - "codeCommune": "55215", - "libelleAcheminement": "GONDRECOURT LE CHATEAU", - "nomCommune": "GONDRECOURT LE CHATEAU" + "codePostal": "55160", + "codeCommune": "55157", + "libelleAcheminement": "DOMMARTIN LA MONTAGNE", + "nomCommune": "DOMMARTIN LA MONTAGNE" }, { - "codePostal": "55130", - "codeCommune": "55215", - "libelleAcheminement": "GONDRECOURT LE CHATEAU", - "nomCommune": "GONDRECOURT LE CHATEAU" + "codePostal": "55100", + "codeCommune": "55180", + "libelleAcheminement": "ESNES EN ARGONNE", + "nomCommune": "ESNES EN ARGONNE" }, { - "codePostal": "55230", - "codeCommune": "55216", - "libelleAcheminement": "GOURAINCOURT", - "nomCommune": "GOURAINCOURT" + "codePostal": "55400", + "codeCommune": "55181", + "libelleAcheminement": "ETAIN", + "nomCommune": "ETAIN" }, { "codePostal": "55150", - "codeCommune": "55218", - "libelleAcheminement": "GREMILLY", - "nomCommune": "GREMILLY" - }, - { - "codePostal": "55700", - "codeCommune": "55225", - "libelleAcheminement": "HALLES SOUS LES COTES", - "nomCommune": "HALLES SOUS LES COTES" + "codeCommune": "55183", + "libelleAcheminement": "ETRAYE", + "nomCommune": "ETRAYE" }, { - "codePostal": "55300", - "codeCommune": "55229", - "libelleAcheminement": "HAN SUR MEUSE", - "nomCommune": "HAN SUR MEUSE" + "codePostal": "55400", + "codeCommune": "55211", + "libelleAcheminement": "GINCREY", + "nomCommune": "GINCREY" }, { - "codePostal": "55300", - "codeCommune": "55229", - "libelleAcheminement": "HAN SUR MEUSE", - "nomCommune": "HAN SUR MEUSE" + "codePostal": "55400", + "codeCommune": "55219", + "libelleAcheminement": "GRIMAUCOURT EN WOEVRE", + "nomCommune": "GRIMAUCOURT EN WOEVRE" }, { - "codePostal": "55220", - "codeCommune": "55241", - "libelleAcheminement": "HEIPPES", - "nomCommune": "HEIPPES" + "codePostal": "55000", + "codeCommune": "55224", + "libelleAcheminement": "HAIRONVILLE", + "nomCommune": "HAIRONVILLE" }, { "codePostal": "55210", - "codeCommune": "55243", - "libelleAcheminement": "HERBEUVILLE", - "nomCommune": "HERBEUVILLE" + "codeCommune": "55228", + "libelleAcheminement": "HANNONVILLE SOUS LES COTES", + "nomCommune": "HANNONVILLE SOUS LES COTES" }, { - "codePostal": "55290", - "codeCommune": "55246", - "libelleAcheminement": "HEVILLIERS", - "nomCommune": "HEVILLIERS" + "codePostal": "55400", + "codeCommune": "55244", + "libelleAcheminement": "HERMEVILLE EN WOEVRE", + "nomCommune": "HERMEVILLE EN WOEVRE" }, { - "codePostal": "55120", - "codeCommune": "55257", - "libelleAcheminement": "JOUY EN ARGONNE", - "nomCommune": "JOUY EN ARGONNE" + "codePostal": "55220", + "codeCommune": "55254", + "libelleAcheminement": "LES TROIS DOMAINES", + "nomCommune": "LES TROIS DOMAINES" }, { "codePostal": "55200", @@ -15395,29 +15185,17 @@ "libelleAcheminement": "GEVILLE", "nomCommune": "GEVILLE" }, - { - "codePostal": "55210", - "codeCommune": "55267", - "libelleAcheminement": "LACHAUSSEE", - "nomCommune": "LACHAUSSEE" - }, - { - "codePostal": "55260", - "codeCommune": "55269", - "libelleAcheminement": "LAHAYMEIX", - "nomCommune": "LAHAYMEIX" - }, { "codePostal": "55300", - "codeCommune": "55274", - "libelleAcheminement": "LAMORVILLE", - "nomCommune": "LAMORVILLE" + "codeCommune": "55270", + "libelleAcheminement": "LAHAYVILLE", + "nomCommune": "LAHAYVILLE" }, { - "codePostal": "55700", - "codeCommune": "55275", - "libelleAcheminement": "LAMOUILLY", - "nomCommune": "LAMOUILLY" + "codePostal": "55100", + "codeCommune": "55276", + "libelleAcheminement": "LANDRECOURT LEMPIRE", + "nomCommune": "LANDRECOURT LEMPIRE" }, { "codePostal": "55190", @@ -15425,12 +15203,6 @@ "libelleAcheminement": "LANEUVILLE AU RUPT", "nomCommune": "LANEUVILLE AU RUPT" }, - { - "codePostal": "55160", - "codeCommune": "55281", - "libelleAcheminement": "LATOUR EN WOEVRE", - "nomCommune": "LATOUR EN WOEVRE" - }, { "codePostal": "55260", "codeCommune": "55282", @@ -15438,88 +15210,70 @@ "nomCommune": "LAVALLEE" }, { - "codePostal": "55220", - "codeCommune": "55286", - "libelleAcheminement": "LEMMES", - "nomCommune": "LEMMES" + "codePostal": "55260", + "codeCommune": "55290", + "libelleAcheminement": "LIGNIERES SUR AIRE", + "nomCommune": "LIGNIERES SUR AIRE" }, { - "codePostal": "55150", - "codeCommune": "55297", - "libelleAcheminement": "LISSEY", - "nomCommune": "LISSEY" + "codePostal": "55250", + "codeCommune": "55295", + "libelleAcheminement": "LISLE EN BARROIS", + "nomCommune": "LISLE EN BARROIS" }, { - "codePostal": "55800", - "codeCommune": "55304", - "libelleAcheminement": "LOUPPY LE CHATEAU", - "nomCommune": "LOUPPY LE CHATEAU" + "codePostal": "55000", + "codeCommune": "55298", + "libelleAcheminement": "LOISEY", + "nomCommune": "LOISEY" }, { - "codePostal": "55290", - "codeCommune": "55315", - "libelleAcheminement": "MANDRES EN BARROIS", - "nomCommune": "MANDRES EN BARROIS" + "codePostal": "55140", + "codeCommune": "55328", + "libelleAcheminement": "MAXEY SUR VAISE", + "nomCommune": "MAXEY SUR VAISE" }, { - "codePostal": "55100", - "codeCommune": "55321", - "libelleAcheminement": "MARRE", - "nomCommune": "MARRE" + "codePostal": "55150", + "codeCommune": "55336", + "libelleAcheminement": "MERLES SUR LOISON", + "nomCommune": "MERLES SUR LOISON" }, { - "codePostal": "55190", - "codeCommune": "55327", - "libelleAcheminement": "MAUVAGES", - "nomCommune": "MAUVAGES" + "codePostal": "55800", + "codeCommune": "55340", + "libelleAcheminement": "MOGNEVILLE", + "nomCommune": "MOGNEVILLE" }, { - "codePostal": "55110", - "codeCommune": "55338", - "libelleAcheminement": "MILLY SUR BRADON", - "nomCommune": "MILLY SUR BRADON" + "codePostal": "55150", + "codeCommune": "55341", + "libelleAcheminement": "MOIREY FLABAS CREPION", + "nomCommune": "MOIREY FLABAS CREPION" }, { - "codePostal": "55400", - "codeCommune": "55339", - "libelleAcheminement": "MOGEVILLE", - "nomCommune": "MOGEVILLE" + "codePostal": "55290", + "codeCommune": "55348", + "libelleAcheminement": "MONTIERS SUR SAULX", + "nomCommune": "MONTIERS SUR SAULX" }, { - "codePostal": "55140", - "codeCommune": "55350", - "libelleAcheminement": "MONTIGNY LES VAUCOULEURS", - "nomCommune": "MONTIGNY LES VAUCOULEURS" + "codePostal": "55500", + "codeCommune": "55358", + "libelleAcheminement": "CHANTERAINE", + "nomCommune": "CHANTERAINE" }, { "codePostal": "55000", - "codeCommune": "55352", - "libelleAcheminement": "MONTPLONNE", - "nomCommune": "MONTPLONNE" - }, - { - "codePostal": "55400", - "codeCommune": "55357", - "libelleAcheminement": "MORGEMOULIN", - "nomCommune": "MORGEMOULIN" - }, - { - "codePostal": "55400", - "codeCommune": "55361", - "libelleAcheminement": "MOULAINVILLE", - "nomCommune": "MOULAINVILLE" - }, - { - "codePostal": "55190", - "codeCommune": "55368", - "libelleAcheminement": "NAIVES EN BLOIS", - "nomCommune": "NAIVES EN BLOIS" + "codeCommune": "55366", + "libelleAcheminement": "VAL D ORNAIN", + "nomCommune": "VAL D ORNAIN" }, { "codePostal": "55500", - "codeCommune": "55371", - "libelleAcheminement": "NANCOIS LE GRAND", - "nomCommune": "NANCOIS LE GRAND" + "codeCommune": "55370", + "libelleAcheminement": "NAIX AUX FORGES", + "nomCommune": "NAIX AUX FORGES" }, { "codePostal": "55500", @@ -15540,34 +15294,64 @@ "nomCommune": "NETTANCOURT" }, { - "codePostal": "55140", - "codeCommune": "55381", - "libelleAcheminement": "NEUVILLE LES VAUCOULEURS", - "nomCommune": "NEUVILLE LES VAUCOULEURS" + "codePostal": "55800", + "codeCommune": "55382", + "libelleAcheminement": "NEUVILLE SUR ORNAIN", + "nomCommune": "NEUVILLE SUR ORNAIN" }, { - "codePostal": "55230", - "codeCommune": "55387", - "libelleAcheminement": "NOUILLONPONT", - "nomCommune": "NOUILLONPONT" + "codePostal": "55260", + "codeCommune": "55384", + "libelleAcheminement": "NICEY SUR AIRE", + "nomCommune": "NICEY SUR AIRE" }, { - "codePostal": "55150", - "codeCommune": "55394", - "libelleAcheminement": "ORNES", - "nomCommune": "ORNES" + "codePostal": "55120", + "codeCommune": "55385", + "libelleAcheminement": "NIXEVILLE BLERCOURT", + "nomCommune": "NIXEVILLE BLERCOURT" }, { - "codePostal": "55140", - "codeCommune": "55397", - "libelleAcheminement": "PAGNY LA BLANCHE COTE", - "nomCommune": "PAGNY LA BLANCHE COTE" + "codePostal": "55800", + "codeCommune": "55388", + "libelleAcheminement": "NOYERS AUZECOURT", + "nomCommune": "NOYERS AUZECOURT" }, { - "codePostal": "55600", - "codeCommune": "55410", - "libelleAcheminement": "QUINCY LANDZECOURT", - "nomCommune": "QUINCY LANDZECOURT" + "codePostal": "55250", + "codeCommune": "55389", + "libelleAcheminement": "NUBECOURT", + "nomCommune": "NUBECOURT" + }, + { + "codePostal": "55220", + "codeCommune": "55395", + "libelleAcheminement": "OSCHES", + "nomCommune": "OSCHES" + }, + { + "codePostal": "55160", + "codeCommune": "55406", + "libelleAcheminement": "PINTHEVILLE", + "nomCommune": "PINTHEVILLE" + }, + { + "codePostal": "55250", + "codeCommune": "55409", + "libelleAcheminement": "PRETZ EN ARGONNE", + "nomCommune": "PRETZ EN ARGONNE" + }, + { + "codePostal": "55300", + "codeCommune": "55412", + "libelleAcheminement": "RAMBUCOURT", + "nomCommune": "RAMBUCOURT" + }, + { + "codePostal": "55110", + "codeCommune": "55422", + "libelleAcheminement": "REGNEVILLE SUR MEUSE", + "nomCommune": "REGNEVILLE SUR MEUSE" }, { "codePostal": "55250", @@ -15576,28 +15360,58 @@ "nomCommune": "REMBERCOURT SOMMAISNE" }, { - "codePostal": "55000", - "codeCommune": "55426", - "libelleAcheminement": "RESSON", - "nomCommune": "RESSON" + "codePostal": "55800", + "codeCommune": "55424", + "libelleAcheminement": "REMENNECOURT", + "nomCommune": "REMENNECOURT" }, { - "codePostal": "55150", - "codeCommune": "55428", - "libelleAcheminement": "REVILLE AUX BOIS", - "nomCommune": "REVILLE AUX BOIS" + "codePostal": "55600", + "codeCommune": "55425", + "libelleAcheminement": "REMOIVILLE", + "nomCommune": "REMOIVILLE" }, { - "codePostal": "55110", - "codeCommune": "55438", - "libelleAcheminement": "ROMAGNE SOUS MONTFAUCON", - "nomCommune": "ROMAGNE SOUS MONTFAUCON" + "codePostal": "55290", + "codeCommune": "55430", + "libelleAcheminement": "RIBEAUCOURT", + "nomCommune": "RIBEAUCOURT" }, { - "codePostal": "55170", - "codeCommune": "55447", - "libelleAcheminement": "RUPT AUX NONAINS", - "nomCommune": "RUPT AUX NONAINS" + "codePostal": "55140", + "codeCommune": "55434", + "libelleAcheminement": "RIGNY ST MARTIN", + "nomCommune": "RIGNY ST MARTIN" + }, + { + "codePostal": "55160", + "codeCommune": "55439", + "libelleAcheminement": "RONVAUX", + "nomCommune": "RONVAUX" + }, + { + "codePostal": "55260", + "codeCommune": "55442", + "libelleAcheminement": "RAIVAL", + "nomCommune": "RAIVAL" + }, + { + "codePostal": "55300", + "codeCommune": "55444", + "libelleAcheminement": "ROUVROIS SUR MEUSE", + "nomCommune": "ROUVROIS SUR MEUSE" + }, + { + "codePostal": "55230", + "codeCommune": "55445", + "libelleAcheminement": "ROUVROIS SUR OTHAIN", + "nomCommune": "ROUVROIS SUR OTHAIN" + }, + { + "codePostal": "55260", + "codeCommune": "55448", + "libelleAcheminement": "RUPT DEVANT ST MIHIEL", + "nomCommune": "RUPT DEVANT ST MIHIEL" }, { "codePostal": "55500", @@ -15606,82 +15420,124 @@ "nomCommune": "ST AMAND SUR ORNAIN" }, { - "codePostal": "55140", - "codeCommune": "55456", - "libelleAcheminement": "ST GERMAIN SUR MEUSE", - "nomCommune": "ST GERMAIN SUR MEUSE" + "codePostal": "55500", + "codeCommune": "55454", + "libelleAcheminement": "ST AUBIN SUR AIRE", + "nomCommune": "ST AUBIN SUR AIRE" }, { - "codePostal": "55160", - "codeCommune": "55457", - "libelleAcheminement": "ST HILAIRE EN WOEVRE", - "nomCommune": "ST HILAIRE EN WOEVRE" + "codePostal": "55200", + "codeCommune": "55460", + "libelleAcheminement": "ST JULIEN SOUS LES COTES", + "nomCommune": "ST JULIEN SOUS LES COTES" }, { - "codePostal": "55110", - "codeCommune": "55469", - "libelleAcheminement": "SASSEY SUR MEUSE", - "nomCommune": "SASSEY SUR MEUSE" + "codePostal": "55150", + "codeCommune": "55461", + "libelleAcheminement": "ST LAURENT SUR OTHAIN", + "nomCommune": "ST LAURENT SUR OTHAIN" }, { - "codePostal": "55000", - "codeCommune": "55470", - "libelleAcheminement": "SAUDRUPT", - "nomCommune": "SAUDRUPT" + "codePostal": "55210", + "codeCommune": "55462", + "libelleAcheminement": "ST MAURICE SOUS LES COTES", + "nomCommune": "ST MAURICE SOUS LES COTES" }, { - "codePostal": "55500", - "codeCommune": "55472", - "libelleAcheminement": "SAULVAUX", - "nomCommune": "SAULVAUX" + "codePostal": "55230", + "codeCommune": "55464", + "libelleAcheminement": "ST PIERREVILLERS", + "nomCommune": "ST PIERREVILLERS" }, { - "codePostal": "55190", - "codeCommune": "55475", - "libelleAcheminement": "SAUVOY", - "nomCommune": "SAUVOY" + "codePostal": "55100", + "codeCommune": "55489", + "libelleAcheminement": "SIVRY LA PERCHE", + "nomCommune": "SIVRY LA PERCHE" }, { - "codePostal": "55270", - "codeCommune": "55484", - "libelleAcheminement": "SEPTSARGES", - "nomCommune": "SEPTSARGES" + "codePostal": "55220", + "codeCommune": "55497", + "libelleAcheminement": "LES SOUHESMES RAMPONT", + "nomCommune": "LES SOUHESMES RAMPONT" }, { - "codePostal": "55170", - "codeCommune": "55494", - "libelleAcheminement": "SOMMELONNE", - "nomCommune": "SOMMELONNE" + "codePostal": "55230", + "codeCommune": "55500", + "libelleAcheminement": "SPINCOURT", + "nomCommune": "SPINCOURT" }, { - "codePostal": "55840", - "codeCommune": "55505", - "libelleAcheminement": "THIERVILLE SUR MEUSE", - "nomCommune": "THIERVILLE SUR MEUSE" + "codePostal": "55230", + "codeCommune": "55500", + "libelleAcheminement": "SPINCOURT", + "nomCommune": "SPINCOURT" }, { - "codePostal": "55140", - "codeCommune": "55522", - "libelleAcheminement": "UGNY SUR MEUSE", - "nomCommune": "UGNY SUR MEUSE" + "codePostal": "55230", + "codeCommune": "55500", + "libelleAcheminement": "SPINCOURT", + "nomCommune": "SPINCOURT" }, { - "codePostal": "55100", - "codeCommune": "55523", - "libelleAcheminement": "VACHERAUVILLE", - "nomCommune": "VACHERAUVILLE" + "codePostal": "55600", + "codeCommune": "55509", + "libelleAcheminement": "THONNE LE THIL", + "nomCommune": "THONNE LE THIL" }, { - "codePostal": "55200", - "codeCommune": "55526", - "libelleAcheminement": "VADONVILLE", - "nomCommune": "VADONVILLE" + "codePostal": "55220", + "codeCommune": "55512", + "libelleAcheminement": "TILLY SUR MEUSE", + "nomCommune": "TILLY SUR MEUSE" + }, + { + "codePostal": "55160", + "codeCommune": "55515", + "libelleAcheminement": "TRESAUVAUX", + "nomCommune": "TRESAUVAUX" + }, + { + "codePostal": "55250", + "codeCommune": "55517", + "libelleAcheminement": "SEUIL D ARGONNE", + "nomCommune": "SEUIL D ARGONNE" + }, + { + "codePostal": "55300", + "codeCommune": "55521", + "libelleAcheminement": "TROYON", + "nomCommune": "TROYON" + }, + { + "codePostal": "55220", + "codeCommune": "55525", + "libelleAcheminement": "VADELAINCOURT", + "nomCommune": "VADELAINCOURT" + }, + { + "codePostal": "55300", + "codeCommune": "55530", + "libelleAcheminement": "VALBOIS", + "nomCommune": "VALBOIS" + }, + { + "codePostal": "55140", + "codeCommune": "55533", + "libelleAcheminement": "VAUCOULEURS", + "nomCommune": "VAUCOULEURS" }, { "codePostal": "55270", - "codeCommune": "55549", - "libelleAcheminement": "VERY", - "nomCommune": "VERY" + "codeCommune": "55536", + "libelleAcheminement": "VAUQUOIS", + "nomCommune": "VAUQUOIS" + }, + { + "codePostal": "55100", + "codeCommune": "55537", + "libelleAcheminement": "DOUAUMONT VAUX", + "nomCommune": "DOUAUMONT VAUX" }, { "codePostal": "55210", @@ -15689,12 +15545,6 @@ "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", "nomCommune": "VIGNEULLES LES HATTONCHATEL" }, - { - "codePostal": "55200", - "codeCommune": "55553", - "libelleAcheminement": "VIGNOT", - "nomCommune": "VIGNOT" - }, { "codePostal": "55160", "codeCommune": "55557", @@ -15708,22 +15558,28 @@ "nomCommune": "VILLEROY SUR MEHOLLE" }, { - "codePostal": "55000", - "codeCommune": "55568", - "libelleAcheminement": "VILLE SUR SAULX", - "nomCommune": "VILLE SUR SAULX" + "codePostal": "55220", + "codeCommune": "55566", + "libelleAcheminement": "VILLERS SUR MEUSE", + "nomCommune": "VILLERS SUR MEUSE" }, { - "codePostal": "55110", - "codeCommune": "55571", - "libelleAcheminement": "VILOSNES HARAUMONT", - "nomCommune": "VILOSNES HARAUMONT" + "codePostal": "55120", + "codeCommune": "55567", + "libelleAcheminement": "VILLE SUR COUSANCES", + "nomCommune": "VILLE SUR COUSANCES" }, { - "codePostal": "55160", - "codeCommune": "55579", - "libelleAcheminement": "WATRONVILLE", - "nomCommune": "WATRONVILLE" + "codePostal": "55260", + "codeCommune": "55570", + "libelleAcheminement": "VILLOTTE SUR AIRE", + "nomCommune": "VILLOTTE SUR AIRE" + }, + { + "codePostal": "55250", + "codeCommune": "55577", + "libelleAcheminement": "WALY", + "nomCommune": "WALY" }, { "codePostal": "55700", @@ -15731,23 +15587,11 @@ "libelleAcheminement": "WISEPPE", "nomCommune": "WISEPPE" }, - { - "codePostal": "55210", - "codeCommune": "55583", - "libelleAcheminement": "WOEL", - "nomCommune": "WOEL" - }, { "codePostal": "55300", - "codeCommune": "55584", - "libelleAcheminement": "WOIMBEY", - "nomCommune": "WOIMBEY" - }, - { - "codePostal": "56610", - "codeCommune": "56003", - "libelleAcheminement": "ARRADON", - "nomCommune": "ARRADON" + "codeCommune": "55586", + "libelleAcheminement": "XIVRAY ET MARVOISIN", + "nomCommune": "XIVRAY ET MARVOISIN" }, { "codePostal": "56400", @@ -15755,18 +15599,6 @@ "libelleAcheminement": "AURAY", "nomCommune": "AURAY" }, - { - "codePostal": "56870", - "codeCommune": "56008", - "libelleAcheminement": "BADEN", - "nomCommune": "BADEN" - }, - { - "codePostal": "56150", - "codeCommune": "56010", - "libelleAcheminement": "BAUD", - "nomCommune": "BAUD" - }, { "codePostal": "56230", "codeCommune": "56015", @@ -15774,52 +15606,76 @@ "nomCommune": "BERRIC" }, { - "codePostal": "56700", - "codeCommune": "56021", - "libelleAcheminement": "BRANDERION", - "nomCommune": "BRANDERION" + "codePostal": "56310", + "codeCommune": "56026", + "libelleAcheminement": "BUBRY", + "nomCommune": "BUBRY" }, { - "codePostal": "56400", - "codeCommune": "56023", - "libelleAcheminement": "BRECH", - "nomCommune": "BRECH" + "codePostal": "56220", + "codeCommune": "56028", + "libelleAcheminement": "CADEN", + "nomCommune": "CADEN" }, { - "codePostal": "56140", - "codeCommune": "56035", - "libelleAcheminement": "CARO", - "nomCommune": "CARO" + "codePostal": "56240", + "codeCommune": "56029", + "libelleAcheminement": "CALAN", + "nomCommune": "CALAN" }, { - "codePostal": "56850", - "codeCommune": "56036", - "libelleAcheminement": "CAUDAN", - "nomCommune": "CAUDAN" + "codePostal": "56340", + "codeCommune": "56034", + "libelleAcheminement": "CARNAC", + "nomCommune": "CARNAC" }, { - "codePostal": "56480", - "codeCommune": "56041", - "libelleAcheminement": "CLEGUEREC", - "nomCommune": "CLEGUEREC" + "codePostal": "56500", + "codeCommune": "56039", + "libelleAcheminement": "LA CHAPELLE NEUVE", + "nomCommune": "LA CHAPELLE NEUVE" }, { - "codePostal": "56950", - "codeCommune": "56046", - "libelleAcheminement": "CRACH", - "nomCommune": "CRACH" + "codePostal": "56430", + "codeCommune": "56043", + "libelleAcheminement": "CONCORET", + "nomCommune": "CONCORET" }, { - "codePostal": "56580", - "codeCommune": "56047", - "libelleAcheminement": "CREDIN", - "nomCommune": "CREDIN" + "codePostal": "56750", + "codeCommune": "56052", + "libelleAcheminement": "DAMGAN", + "nomCommune": "DAMGAN" }, { - "codePostal": "56390", - "codeCommune": "56067", - "libelleAcheminement": "GRAND CHAMP", - "nomCommune": "GRAND CHAMP" + "codePostal": "56250", + "codeCommune": "56053", + "libelleAcheminement": "ELVEN", + "nomCommune": "ELVEN" + }, + { + "codePostal": "56410", + "codeCommune": "56055", + "libelleAcheminement": "ETEL", + "nomCommune": "ETEL" + }, + { + "codePostal": "56490", + "codeCommune": "56056", + "libelleAcheminement": "EVRIGUET", + "nomCommune": "EVRIGUET" + }, + { + "codePostal": "56200", + "codeCommune": "56061", + "libelleAcheminement": "LA GACILLY", + "nomCommune": "LA GACILLY" + }, + { + "codePostal": "56200", + "codeCommune": "56061", + "libelleAcheminement": "LA GACILLY", + "nomCommune": "LA GACILLY" }, { "codePostal": "56920", @@ -15828,118 +15684,70 @@ "nomCommune": "GUELTAS" }, { - "codePostal": "56160", - "codeCommune": "56073", - "libelleAcheminement": "GUEMENE SUR SCORFF", - "nomCommune": "GUEMENE SUR SCORFF" + "codePostal": "56120", + "codeCommune": "56082", + "libelleAcheminement": "HELLEAN", + "nomCommune": "HELLEAN" }, { - "codePostal": "56700", - "codeCommune": "56083", - "libelleAcheminement": "HENNEBONT", - "nomCommune": "HENNEBONT" + "codePostal": "56650", + "codeCommune": "56090", + "libelleAcheminement": "INZINZAC LOCHRIST", + "nomCommune": "INZINZAC LOCHRIST" }, { - "codePostal": "56170", - "codeCommune": "56086", - "libelleAcheminement": "ILE D HOUAT", - "nomCommune": "ILE D HOUAT" + "codePostal": "56160", + "codeCommune": "56099", + "libelleAcheminement": "LANGOELAN", + "nomCommune": "LANGOELAN" }, { - "codePostal": "56780", - "codeCommune": "56087", - "libelleAcheminement": "ILE AUX MOINES", - "nomCommune": "ILE AUX MOINES" + "codePostal": "56740", + "codeCommune": "56116", + "libelleAcheminement": "LOCMARIAQUER", + "nomCommune": "LOCMARIAQUER" }, { - "codePostal": "56240", - "codeCommune": "56089", - "libelleAcheminement": "INGUINIEL", - "nomCommune": "INGUINIEL" + "codePostal": "56570", + "codeCommune": "56118", + "libelleAcheminement": "LOCMIQUELIC", + "nomCommune": "LOCMIQUELIC" + }, + { + "codePostal": "56100", + "codeCommune": "56121", + "libelleAcheminement": "LORIENT", + "nomCommune": "LORIENT" }, { "codePostal": "56700", - "codeCommune": "56094", - "libelleAcheminement": "KERVIGNAC", - "nomCommune": "KERVIGNAC" + "codeCommune": "56130", + "libelleAcheminement": "MERLEVENEZ", + "nomCommune": "MERLEVENEZ" }, { - "codePostal": "56600", - "codeCommune": "56098", - "libelleAcheminement": "LANESTER", - "nomCommune": "LANESTER" + "codePostal": "56800", + "codeCommune": "56139", + "libelleAcheminement": "MONTERTELOT", + "nomCommune": "MONTERTELOT" }, { - "codePostal": "56320", - "codeCommune": "56105", - "libelleAcheminement": "LANVENEGEN", - "nomCommune": "LANVENEGEN" + "codePostal": "56430", + "codeCommune": "56145", + "libelleAcheminement": "NEANT SUR YVEL", + "nomCommune": "NEANT SUR YVEL" }, { - "codePostal": "56160", - "codeCommune": "56110", - "libelleAcheminement": "LIGNOL", - "nomCommune": "LIGNOL" + "codePostal": "56920", + "codeCommune": "56151", + "libelleAcheminement": "NOYAL PONTIVY", + "nomCommune": "NOYAL PONTIVY" }, { - "codePostal": "56390", - "codeCommune": "56115", - "libelleAcheminement": "LOCMARIA GRAND CHAMP", - "nomCommune": "LOCMARIA GRAND CHAMP" - }, - { - "codePostal": "56550", - "codeCommune": "56119", - "libelleAcheminement": "LOCOAL MENDON", - "nomCommune": "LOCOAL MENDON" - }, - { - "codePostal": "56390", - "codeCommune": "56120", - "libelleAcheminement": "LOCQUELTAS", - "nomCommune": "LOCQUELTAS" - }, - { - "codePostal": "56220", - "codeCommune": "56123", - "libelleAcheminement": "MALANSAC", - "nomCommune": "MALANSAC" - }, - { - "codePostal": "56310", - "codeCommune": "56128", - "libelleAcheminement": "MELRAND", - "nomCommune": "MELRAND" - }, - { - "codePostal": "56490", - "codeCommune": "56129", - "libelleAcheminement": "MENEAC", - "nomCommune": "MENEAC" - }, - { - "codePostal": "56140", - "codeCommune": "56133", - "libelleAcheminement": "MISSIRIAC", - "nomCommune": "MISSIRIAC" - }, - { - "codePostal": "56500", - "codeCommune": "56144", - "libelleAcheminement": "EVELLYS", - "nomCommune": "EVELLYS" - }, - { - "codePostal": "56220", - "codeCommune": "56154", - "libelleAcheminement": "PEILLAC", - "nomCommune": "PEILLAC" - }, - { - "codePostal": "56160", - "codeCommune": "56156", - "libelleAcheminement": "PERSQUEN", - "nomCommune": "PERSQUEN" + "codePostal": "56400", + "codeCommune": "56161", + "libelleAcheminement": "PLOEMEL", + "nomCommune": "PLOEMEL" }, { "codePostal": "56270", @@ -15959,18 +15767,6 @@ "libelleAcheminement": "PLOERMEL", "nomCommune": "PLOERMEL" }, - { - "codePostal": "56340", - "codeCommune": "56168", - "libelleAcheminement": "PLOUHARNEL", - "nomCommune": "PLOUHARNEL" - }, - { - "codePostal": "56770", - "codeCommune": "56170", - "libelleAcheminement": "PLOURAY", - "nomCommune": "PLOURAY" - }, { "codePostal": "56220", "codeCommune": "56171", @@ -15978,10 +15774,10 @@ "nomCommune": "PLUHERLIN" }, { - "codePostal": "56380", - "codeCommune": "56180", - "libelleAcheminement": "PORCARO", - "nomCommune": "PORCARO" + "codePostal": "56620", + "codeCommune": "56179", + "libelleAcheminement": "PONT SCORFF", + "nomCommune": "PONT SCORFF" }, { "codePostal": "56170", @@ -15990,40 +15786,40 @@ "nomCommune": "QUIBERON" }, { - "codePostal": "56310", - "codeCommune": "56188", - "libelleAcheminement": "QUISTINIC", - "nomCommune": "QUISTINIC" + "codePostal": "56500", + "codeCommune": "56190", + "libelleAcheminement": "REGUINY", + "nomCommune": "REGUINY" }, { - "codePostal": "56500", - "codeCommune": "56189", - "libelleAcheminement": "RADENAC", - "nomCommune": "RADENAC" + "codePostal": "56460", + "codeCommune": "56197", + "libelleAcheminement": "VAL D OUST", + "nomCommune": "VAL D OUST" }, { - "codePostal": "56580", - "codeCommune": "56198", - "libelleAcheminement": "ROHAN", - "nomCommune": "ROHAN" + "codePostal": "56800", + "codeCommune": "56197", + "libelleAcheminement": "VAL D OUST", + "nomCommune": "VAL D OUST" }, { - "codePostal": "56580", - "codeCommune": "56198", - "libelleAcheminement": "ROHAN", - "nomCommune": "ROHAN" + "codePostal": "56140", + "codeCommune": "56202", + "libelleAcheminement": "ST ABRAHAM", + "nomCommune": "ST ABRAHAM" }, { - "codePostal": "56890", - "codeCommune": "56206", - "libelleAcheminement": "ST AVE", - "nomCommune": "ST AVE" + "codePostal": "56480", + "codeCommune": "56203", + "libelleAcheminement": "ST AIGNAN", + "nomCommune": "ST AIGNAN" }, { - "codePostal": "56130", - "codeCommune": "56212", - "libelleAcheminement": "ST DOLAY", - "nomCommune": "ST DOLAY" + "codePostal": "56150", + "codeCommune": "56207", + "libelleAcheminement": "ST BARTHELEMY", + "nomCommune": "ST BARTHELEMY" }, { "codePostal": "56920", @@ -16031,12 +15827,6 @@ "libelleAcheminement": "ST GERAND CROIXANVEC", "nomCommune": "ST GERAND CROIXANVEC" }, - { - "codePostal": "56730", - "codeCommune": "56214", - "libelleAcheminement": "ST GILDAS DE RHUYS", - "nomCommune": "ST GILDAS DE RHUYS" - }, { "codePostal": "56350", "codeCommune": "56216", @@ -16044,46 +15834,34 @@ "nomCommune": "ST GORGON" }, { - "codePostal": "56140", - "codeCommune": "56224", - "libelleAcheminement": "ST LAURENT SUR OUST", - "nomCommune": "ST LAURENT SUR OUST" - }, - { - "codePostal": "56510", - "codeCommune": "56234", - "libelleAcheminement": "ST PIERRE QUIBERON", - "nomCommune": "ST PIERRE QUIBERON" - }, - { - "codePostal": "56370", - "codeCommune": "56240", - "libelleAcheminement": "SARZEAU", - "nomCommune": "SARZEAU" + "codePostal": "56350", + "codeCommune": "56223", + "libelleAcheminement": "ST JEAN LA POTERIE", + "nomCommune": "ST JEAN LA POTERIE" }, { - "codePostal": "56160", - "codeCommune": "56242", - "libelleAcheminement": "SEGLIEN", - "nomCommune": "SEGLIEN" + "codePostal": "56200", + "codeCommune": "56229", + "libelleAcheminement": "ST MARTIN SUR OUST", + "nomCommune": "ST MARTIN SUR OUST" }, { - "codePostal": "56460", - "codeCommune": "56244", - "libelleAcheminement": "SERENT", - "nomCommune": "SERENT" + "codePostal": "56360", + "codeCommune": "56241", + "libelleAcheminement": "SAUZON", + "nomCommune": "SAUZON" }, { - "codePostal": "56480", - "codeCommune": "56245", - "libelleAcheminement": "SILFIAC", - "nomCommune": "SILFIAC" + "codePostal": "56250", + "codeCommune": "56247", + "libelleAcheminement": "SULNIAC", + "nomCommune": "SULNIAC" }, { - "codePostal": "56800", - "codeCommune": "56249", - "libelleAcheminement": "TAUPONT", - "nomCommune": "TAUPONT" + "codePostal": "56370", + "codeCommune": "56252", + "libelleAcheminement": "LE TOUR DU PARC", + "nomCommune": "LE TOUR DU PARC" }, { "codePostal": "56430", @@ -16091,12 +15869,6 @@ "libelleAcheminement": "TREHORENTEUC", "nomCommune": "TREHORENTEUC" }, - { - "codePostal": "56490", - "codeCommune": "56257", - "libelleAcheminement": "LA TRINITE PORHOET", - "nomCommune": "LA TRINITE PORHOET" - }, { "codePostal": "56470", "codeCommune": "56258", @@ -16104,28 +15876,28 @@ "nomCommune": "LA TRINITE SUR MER" }, { - "codePostal": "57590", - "codeCommune": "57002", - "libelleAcheminement": "ABONCOURT SUR SEILLE", - "nomCommune": "ABONCOURT SUR SEILLE" + "codePostal": "56540", + "codeCommune": "56264", + "libelleAcheminement": "KERNASCLEDEN", + "nomCommune": "KERNASCLEDEN" }, { - "codePostal": "57380", - "codeCommune": "57008", - "libelleAcheminement": "ADELANGE", - "nomCommune": "ADELANGE" + "codePostal": "57580", + "codeCommune": "57007", + "libelleAcheminement": "ADAINCOURT", + "nomCommune": "ADAINCOURT" }, { - "codePostal": "57515", - "codeCommune": "57013", - "libelleAcheminement": "ALSTING", - "nomCommune": "ALSTING" + "codePostal": "57580", + "codeCommune": "57029", + "libelleAcheminement": "ARRIANCE", + "nomCommune": "ARRIANCE" }, { - "codePostal": "57640", - "codeCommune": "57028", - "libelleAcheminement": "ARGANCY", - "nomCommune": "ARGANCY" + "codePostal": "57680", + "codeCommune": "57030", + "libelleAcheminement": "ARRY", + "nomCommune": "ARRY" }, { "codePostal": "57530", @@ -16134,34 +15906,22 @@ "nomCommune": "ARS LAQUENEXY" }, { - "codePostal": "57790", - "codeCommune": "57034", - "libelleAcheminement": "ASPACH", - "nomCommune": "ASPACH" - }, - { - "codePostal": "57390", - "codeCommune": "57038", - "libelleAcheminement": "AUDUN LE TICHE", - "nomCommune": "AUDUN LE TICHE" - }, - { - "codePostal": "57300", - "codeCommune": "57043", - "libelleAcheminement": "AY SUR MOSELLE", - "nomCommune": "AY SUR MOSELLE" + "codePostal": "57685", + "codeCommune": "57039", + "libelleAcheminement": "AUGNY", + "nomCommune": "AUGNY" }, { - "codePostal": "57590", - "codeCommune": "57045", - "libelleAcheminement": "BACOURT", - "nomCommune": "BACOURT" + "codePostal": "57690", + "codeCommune": "57047", + "libelleAcheminement": "BAMBIDERSTROFF", + "nomCommune": "BAMBIDERSTROFF" }, { - "codePostal": "57830", - "codeCommune": "57056", - "libelleAcheminement": "BEBING", - "nomCommune": "BEBING" + "codePostal": "57670", + "codeCommune": "57060", + "libelleAcheminement": "BENESTROFF", + "nomCommune": "BENESTROFF" }, { "codePostal": "57660", @@ -16170,16 +15930,16 @@ "nomCommune": "BERIG VINTRANGE" }, { - "codePostal": "57340", - "codeCommune": "57065", - "libelleAcheminement": "BERMERING", - "nomCommune": "BERMERING" + "codePostal": "57930", + "codeCommune": "57066", + "libelleAcheminement": "BERTHELMING", + "nomCommune": "BERTHELMING" }, { - "codePostal": "57550", - "codeCommune": "57069", - "libelleAcheminement": "BERVILLER EN MOSELLE", - "nomCommune": "BERVILLER EN MOSELLE" + "codePostal": "57310", + "codeCommune": "57067", + "libelleAcheminement": "BERTRANGE", + "nomCommune": "BERTRANGE" }, { "codePostal": "57640", @@ -16188,22 +15948,16 @@ "nomCommune": "BETTELAINVILLE" }, { - "codePostal": "57800", - "codeCommune": "57073", - "libelleAcheminement": "BETTING", - "nomCommune": "BETTING" - }, - { - "codePostal": "57635", - "codeCommune": "57080", - "libelleAcheminement": "BICKENHOLTZ", - "nomCommune": "BICKENHOLTZ" + "codePostal": "57570", + "codeCommune": "57076", + "libelleAcheminement": "BEYREN LES SIERCK", + "nomCommune": "BEYREN LES SIERCK" }, { - "codePostal": "57660", - "codeCommune": "57082", - "libelleAcheminement": "BIDING", - "nomCommune": "BIDING" + "codePostal": "57260", + "codeCommune": "57081", + "libelleAcheminement": "BIDESTROFF", + "nomCommune": "BIDESTROFF" }, { "codePostal": "57930", @@ -16211,59 +15965,23 @@ "libelleAcheminement": "BELLES FORETS", "nomCommune": "BELLES FORETS" }, - { - "codePostal": "57660", - "codeCommune": "57088", - "libelleAcheminement": "BISTROFF", - "nomCommune": "BISTROFF" - }, - { - "codePostal": "57220", - "codeCommune": "57095", - "libelleAcheminement": "BOUCHEPORN", - "nomCommune": "BOUCHEPORN" - }, { "codePostal": "57230", - "codeCommune": "57103", - "libelleAcheminement": "BOUSSEVILLER", - "nomCommune": "BOUSSEVILLER" - }, - { - "codePostal": "57920", - "codeCommune": "57117", - "libelleAcheminement": "BUDING", - "nomCommune": "BUDING" - }, - { - "codePostal": "57170", - "codeCommune": "57120", - "libelleAcheminement": "BURLIONCOURT", - "nomCommune": "BURLIONCOURT" + "codeCommune": "57089", + "libelleAcheminement": "BITCHE", + "nomCommune": "BITCHE" }, { "codePostal": "57220", - "codeCommune": "57121", - "libelleAcheminement": "BURTONCOURT", - "nomCommune": "BURTONCOURT" - }, - { - "codePostal": "57340", - "codeCommune": "57130", - "libelleAcheminement": "CHATEAU BREHAIN", - "nomCommune": "CHATEAU BREHAIN" - }, - { - "codePostal": "57320", - "codeCommune": "57131", - "libelleAcheminement": "CHATEAU ROUGE", - "nomCommune": "CHATEAU ROUGE" + "codeCommune": "57097", + "libelleAcheminement": "BOULAY", + "nomCommune": "BOULAY MOSELLE" }, { - "codePostal": "57170", - "codeCommune": "57132", - "libelleAcheminement": "CHATEAU SALINS", - "nomCommune": "CHATEAU SALINS" + "codePostal": "57400", + "codeCommune": "57119", + "libelleAcheminement": "BUHL LORRAINE", + "nomCommune": "BUHL LORRAINE" }, { "codePostal": "57320", @@ -16278,10 +15996,10 @@ "nomCommune": "CHENOIS" }, { - "codePostal": "57590", - "codeCommune": "57141", - "libelleAcheminement": "CHICOURT", - "nomCommune": "CHICOURT" + "codePostal": "57800", + "codeCommune": "57144", + "libelleAcheminement": "COCHEREN", + "nomCommune": "COCHEREN" }, { "codePostal": "57530", @@ -16295,17 +16013,23 @@ "libelleAcheminement": "COLMEN", "nomCommune": "COLMEN" }, + { + "codePostal": "57680", + "codeCommune": "57153", + "libelleAcheminement": "CORNY SUR MOSELLE", + "nomCommune": "CORNY SUR MOSELLE" + }, { "codePostal": "57220", - "codeCommune": "57150", - "libelleAcheminement": "CONDE NORTHEN", - "nomCommune": "CONDE NORTHEN" + "codeCommune": "57154", + "libelleAcheminement": "COUME", + "nomCommune": "COUME" }, { - "codePostal": "57320", - "codeCommune": "57167", - "libelleAcheminement": "DALSTEIN", - "nomCommune": "DALSTEIN" + "codePostal": "57690", + "codeCommune": "57159", + "libelleAcheminement": "CREHANGE", + "nomCommune": "CREHANGE" }, { "codePostal": "57820", @@ -16315,33 +16039,21 @@ }, { "codePostal": "57260", - "codeCommune": "57173", - "libelleAcheminement": "DESSELING", - "nomCommune": "DESSELING" - }, - { - "codePostal": "57660", - "codeCommune": "57178", - "libelleAcheminement": "DIFFEMBACH LES HELLIMER", - "nomCommune": "DIFFEMBACH LES HELLIMER" - }, - { - "codePostal": "57365", - "codeCommune": "57193", - "libelleAcheminement": "ENNERY", - "nomCommune": "ENNERY" + "codeCommune": "57177", + "libelleAcheminement": "DIEUZE", + "nomCommune": "DIEUZE" }, { - "codePostal": "57720", - "codeCommune": "57195", - "libelleAcheminement": "EPPING", - "nomCommune": "EPPING" + "codePostal": "57590", + "codeCommune": "57182", + "libelleAcheminement": "DONJEUX", + "nomCommune": "DONJEUX" }, { - "codePostal": "57510", - "codeCommune": "57197", - "libelleAcheminement": "ERNESTVILLER", - "nomCommune": "ERNESTVILLER" + "codePostal": "57415", + "codeCommune": "57192", + "libelleAcheminement": "ENCHENBERG", + "nomCommune": "ENCHENBERG" }, { "codePostal": "57330", @@ -16350,16 +16062,10 @@ "nomCommune": "ESCHERANGE" }, { - "codePostal": "57530", - "codeCommune": "57200", - "libelleAcheminement": "LES ETANGS", - "nomCommune": "LES ETANGS" - }, - { - "codePostal": "57412", - "codeCommune": "57201", - "libelleAcheminement": "ETTING", - "nomCommune": "ETTING" + "codePostal": "57570", + "codeCommune": "57203", + "libelleAcheminement": "EVRANGE", + "nomCommune": "EVRANGE" }, { "codePostal": "57550", @@ -16368,28 +16074,28 @@ "nomCommune": "FALCK" }, { - "codePostal": "57290", - "codeCommune": "57206", - "libelleAcheminement": "FAMECK", - "nomCommune": "FAMECK" + "codePostal": "57380", + "codeCommune": "57209", + "libelleAcheminement": "FAULQUEMONT", + "nomCommune": "FAULQUEMONT" }, { - "codePostal": "57290", - "codeCommune": "57206", - "libelleAcheminement": "FAMECK", - "nomCommune": "FAMECK" + "codePostal": "57570", + "codeCommune": "57214", + "libelleAcheminement": "FIXEM", + "nomCommune": "FIXEM" }, { "codePostal": "57320", - "codeCommune": "57213", - "libelleAcheminement": "FILSTROFF", - "nomCommune": "FILSTROFF" + "codeCommune": "57215", + "libelleAcheminement": "FLASTROFF", + "nomCommune": "FLASTROFF" }, { - "codePostal": "57420", - "codeCommune": "57218", - "libelleAcheminement": "FLEURY", - "nomCommune": "FLEURY" + "codePostal": "57690", + "codeCommune": "57217", + "libelleAcheminement": "FLETRANGE", + "nomCommune": "FLETRANGE" }, { "codePostal": "57590", @@ -16398,28 +16104,22 @@ "nomCommune": "FONTENY" }, { - "codePostal": "57670", - "codeCommune": "57232", - "libelleAcheminement": "FRANCALTROFF", - "nomCommune": "FRANCALTROFF" - }, - { - "codePostal": "57790", - "codeCommune": "57233", - "libelleAcheminement": "FRAQUELFING", - "nomCommune": "FRAQUELFING" + "codePostal": "57600", + "codeCommune": "57227", + "libelleAcheminement": "FORBACH", + "nomCommune": "FORBACH" }, { - "codePostal": "57200", - "codeCommune": "57234", - "libelleAcheminement": "FRAUENBERG", - "nomCommune": "FRAUENBERG" + "codePostal": "57220", + "codeCommune": "57230", + "libelleAcheminement": "FOULIGNY", + "nomCommune": "FOULIGNY" }, { - "codePostal": "57660", - "codeCommune": "57239", - "libelleAcheminement": "FREYBOUSE", - "nomCommune": "FREYBOUSE" + "codePostal": "57420", + "codeCommune": "57231", + "libelleAcheminement": "FOVILLE", + "nomCommune": "FOVILLE" }, { "codePostal": "57800", @@ -16427,12 +16127,42 @@ "libelleAcheminement": "FREYMING MERLEBACH", "nomCommune": "FREYMING MERLEBACH" }, + { + "codePostal": "57570", + "codeCommune": "57245", + "libelleAcheminement": "GAVISSE", + "nomCommune": "GAVISSE" + }, + { + "codePostal": "57170", + "codeCommune": "57247", + "libelleAcheminement": "GERBECOURT", + "nomCommune": "GERBECOURT" + }, + { + "codePostal": "57530", + "codeCommune": "57249", + "libelleAcheminement": "GLATIGNY", + "nomCommune": "GLATIGNY" + }, + { + "codePostal": "57620", + "codeCommune": "57250", + "libelleAcheminement": "GOETZENBRUCK", + "nomCommune": "GOETZENBRUCK" + }, { "codePostal": "57420", "codeCommune": "57251", "libelleAcheminement": "GOIN", "nomCommune": "GOIN" }, + { + "codePostal": "57680", + "codeCommune": "57254", + "libelleAcheminement": "GORZE", + "nomCommune": "GORZE" + }, { "codePostal": "57930", "codeCommune": "57255", @@ -16440,22 +16170,16 @@ "nomCommune": "GOSSELMING" }, { - "codePostal": "57130", - "codeCommune": "57256", - "libelleAcheminement": "GRAVELOTTE", - "nomCommune": "GRAVELOTTE" - }, - { - "codePostal": "57410", - "codeCommune": "57261", - "libelleAcheminement": "GROS REDERCHING", - "nomCommune": "GROS REDERCHING" + "codePostal": "57510", + "codeCommune": "57263", + "libelleAcheminement": "GRUNDVILLER", + "nomCommune": "GRUNDVILLER" }, { - "codePostal": "57510", - "codeCommune": "57264", - "libelleAcheminement": "GUEBENHOUSE", - "nomCommune": "GUEBENHOUSE" + "codePostal": "57430", + "codeCommune": "57267", + "libelleAcheminement": "LE VAL DE GUEBLANGE", + "nomCommune": "LE VAL DE GUEBLANGE" }, { "codePostal": "57310", @@ -16464,58 +16188,34 @@ "nomCommune": "GUENANGE" }, { - "codePostal": "57260", - "codeCommune": "57270", - "libelleAcheminement": "VAL DE BRIDE", - "nomCommune": "VAL DE BRIDE" - }, - { - "codePostal": "57260", - "codeCommune": "57272", - "libelleAcheminement": "GUERMANGE", - "nomCommune": "GUERMANGE" - }, - { - "codePostal": "57320", - "codeCommune": "57273", - "libelleAcheminement": "GUERSTLING", - "nomCommune": "GUERSTLING" - }, - { - "codePostal": "57380", - "codeCommune": "57275", - "libelleAcheminement": "GUESSLING HEMERING", - "nomCommune": "GUESSLING HEMERING" - }, - { - "codePostal": "57670", - "codeCommune": "57278", - "libelleAcheminement": "GUINZELING", - "nomCommune": "GUINZELING" + "codePostal": "57470", + "codeCommune": "57271", + "libelleAcheminement": "GUENVILLER", + "nomCommune": "GUENVILLER" }, { - "codePostal": "57480", - "codeCommune": "57286", - "libelleAcheminement": "HALSTROFF", - "nomCommune": "HALSTROFF" + "codePostal": "57880", + "codeCommune": "57274", + "libelleAcheminement": "GUERTING", + "nomCommune": "GUERTING" }, { - "codePostal": "57590", - "codeCommune": "57292", - "libelleAcheminement": "HANNOCOURT", - "nomCommune": "HANNOCOURT" + "codePostal": "57230", + "codeCommune": "57294", + "libelleAcheminement": "HANVILLER", + "nomCommune": "HANVILLER" }, { - "codePostal": "57580", - "codeCommune": "57293", - "libelleAcheminement": "HAN SUR NIED", - "nomCommune": "HAN SUR NIED" + "codePostal": "57340", + "codeCommune": "57297", + "libelleAcheminement": "HARPRICH", + "nomCommune": "HARPRICH" }, { - "codePostal": "57400", - "codeCommune": "57304", - "libelleAcheminement": "HAUT CLOCHER", - "nomCommune": "HAUT CLOCHER" + "codePostal": "57700", + "codeCommune": "57306", + "libelleAcheminement": "HAYANGE", + "nomCommune": "HAYANGE" }, { "codePostal": "57430", @@ -16523,6 +16223,12 @@ "libelleAcheminement": "HAZEMBOURG", "nomCommune": "HAZEMBOURG" }, + { + "codePostal": "57830", + "codeCommune": "57314", + "libelleAcheminement": "HEMING", + "nomCommune": "HEMING" + }, { "codePostal": "57635", "codeCommune": "57317", @@ -16530,16 +16236,40 @@ "nomCommune": "HERANGE" }, { - "codePostal": "57670", - "codeCommune": "57335", - "libelleAcheminement": "HONSKIRCH", - "nomCommune": "HONSKIRCH" + "codePostal": "57790", + "codeCommune": "57318", + "libelleAcheminement": "HERMELANGE", + "nomCommune": "HERMELANGE" }, { - "codePostal": "57490", - "codeCommune": "57336", - "libelleAcheminement": "L HOPITAL", - "nomCommune": "L HOPITAL" + "codePostal": "57830", + "codeCommune": "57320", + "libelleAcheminement": "HERTZING", + "nomCommune": "HERTZING" + }, + { + "codePostal": "57320", + "codeCommune": "57322", + "libelleAcheminement": "HESTROFF", + "nomCommune": "HESTROFF" + }, + { + "codePostal": "57380", + "codeCommune": "57328", + "libelleAcheminement": "HOLACOURT", + "nomCommune": "HOLACOURT" + }, + { + "codePostal": "57220", + "codeCommune": "57329", + "libelleAcheminement": "HOLLING", + "nomCommune": "HOLLING" + }, + { + "codePostal": "57670", + "codeCommune": "57346", + "libelleAcheminement": "INSMING", + "nomCommune": "INSMING" }, { "codePostal": "57670", @@ -16548,22 +16278,28 @@ "nomCommune": "INSVILLER" }, { - "codePostal": "57245", - "codeCommune": "57351", - "libelleAcheminement": "JURY", - "nomCommune": "JURY" + "codePostal": "57590", + "codeCommune": "57349", + "libelleAcheminement": "JALLAUCOURT", + "nomCommune": "JALLAUCOURT" }, { - "codePostal": "57130", - "codeCommune": "57352", - "libelleAcheminement": "JUSSY", - "nomCommune": "JUSSY" + "codePostal": "57920", + "codeCommune": "57359", + "libelleAcheminement": "KEMPLICH", + "nomCommune": "KEMPLICH" }, { - "codePostal": "57340", - "codeCommune": "57379", - "libelleAcheminement": "LANDROFF", - "nomCommune": "LANDROFF" + "codePostal": "57460", + "codeCommune": "57360", + "libelleAcheminement": "KERBACH", + "nomCommune": "KERBACH" + }, + { + "codePostal": "57730", + "codeCommune": "57373", + "libelleAcheminement": "LACHAMBRE", + "nomCommune": "LACHAMBRE" }, { "codePostal": "57400", @@ -16572,34 +16308,52 @@ "nomCommune": "LANGATTE" }, { - "codePostal": "57160", - "codeCommune": "57396", - "libelleAcheminement": "LESSY", - "nomCommune": "LESSY" + "codePostal": "57385", + "codeCommune": "57386", + "libelleAcheminement": "LAUDREFANG", + "nomCommune": "LAUDREFANG" + }, + { + "codePostal": "57230", + "codeCommune": "57402", + "libelleAcheminement": "LIEDERSCHIEDT", + "nomCommune": "LIEDERSCHIEDT" + }, + { + "codePostal": "57420", + "codeCommune": "57403", + "libelleAcheminement": "LIEHON", + "nomCommune": "LIEHON" }, { "codePostal": "57260", - "codeCommune": "57405", - "libelleAcheminement": "LINDRE HAUTE", - "nomCommune": "LINDRE HAUTE" + "codeCommune": "57404", + "libelleAcheminement": "LINDRE BASSE", + "nomCommune": "LINDRE BASSE" }, { - "codePostal": "57590", - "codeCommune": "57406", - "libelleAcheminement": "LIOCOURT", - "nomCommune": "LIOCOURT" + "codePostal": "57520", + "codeCommune": "57408", + "libelleAcheminement": "LIXING LES ROUHLING", + "nomCommune": "LIXING LES ROUHLING" }, { - "codePostal": "57740", - "codeCommune": "57413", - "libelleAcheminement": "LONGEVILLE LES ST AVOLD", - "nomCommune": "LONGEVILLE LES ST AVOLD" + "codePostal": "57420", + "codeCommune": "57422", + "libelleAcheminement": "LOUVIGNY", + "nomCommune": "LOUVIGNY" }, { - "codePostal": "57590", - "codeCommune": "57424", - "libelleAcheminement": "LUCY", - "nomCommune": "LUCY" + "codePostal": "57580", + "codeCommune": "57425", + "libelleAcheminement": "LUPPY", + "nomCommune": "LUPPY" + }, + { + "codePostal": "57820", + "codeCommune": "57427", + "libelleAcheminement": "LUTZELBOURG", + "nomCommune": "LUTZELBOURG" }, { "codePostal": "57380", @@ -16614,22 +16368,10 @@ "nomCommune": "MAIZIERES LES VIC" }, { - "codePostal": "57590", - "codeCommune": "57436", - "libelleAcheminement": "MALAUCOURT SUR SEILLE", - "nomCommune": "MALAUCOURT SUR SEILLE" - }, - { - "codePostal": "57530", - "codeCommune": "57449", - "libelleAcheminement": "MARSILLY", - "nomCommune": "MARSILLY" - }, - { - "codePostal": "57140", - "codeCommune": "57452", - "libelleAcheminement": "LA MAXE", - "nomCommune": "LA MAXE" + "codePostal": "57690", + "codeCommune": "57444", + "libelleAcheminement": "MARANGE ZONDRANGE", + "nomCommune": "MARANGE ZONDRANGE" }, { "codePostal": "57245", @@ -16638,10 +16380,10 @@ "nomCommune": "MECLEUVES" }, { - "codePostal": "57320", - "codeCommune": "57457", - "libelleAcheminement": "MENSKIRCH", - "nomCommune": "MENSKIRCH" + "codePostal": "57550", + "codeCommune": "57460", + "libelleAcheminement": "MERTEN", + "nomCommune": "MERTEN" }, { "codePostal": "57370", @@ -16650,11 +16392,17 @@ "nomCommune": "METTING" }, { - "codePostal": "57070", + "codePostal": "57050", "codeCommune": "57463", "libelleAcheminement": "METZ", "nomCommune": "METZ" }, + { + "codePostal": "57370", + "codeCommune": "57468", + "libelleAcheminement": "MITTELBRONN", + "nomCommune": "MITTELBRONN" + }, { "codePostal": "57220", "codeCommune": "57471", @@ -16662,40 +16410,22 @@ "nomCommune": "MOMERSTROFF" }, { - "codePostal": "57250", - "codeCommune": "57492", - "libelleAcheminement": "MOYEUVRE PETITE", - "nomCommune": "MOYEUVRE PETITE" - }, - { - "codePostal": "57670", - "codeCommune": "57494", - "libelleAcheminement": "MUNSTER", - "nomCommune": "MUNSTER" - }, - { - "codePostal": "57670", - "codeCommune": "57497", - "libelleAcheminement": "NELLING", - "nomCommune": "NELLING" - }, - { - "codePostal": "57670", - "codeCommune": "57501", - "libelleAcheminement": "NEUFVILLAGE", - "nomCommune": "NEUFVILLAGE" + "codePostal": "57950", + "codeCommune": "57480", + "libelleAcheminement": "MONTIGNY LES METZ", + "nomCommune": "MONTIGNY LES METZ" }, { - "codePostal": "57320", - "codeCommune": "57502", - "libelleAcheminement": "NEUNKIRCHEN LES BOUZONVILLE", - "nomCommune": "NEUNKIRCHEN LES BOUZONVILLE" + "codePostal": "57630", + "codeCommune": "57490", + "libelleAcheminement": "MOYENVIC", + "nomCommune": "MOYENVIC" }, { - "codePostal": "57930", - "codeCommune": "57506", - "libelleAcheminement": "NIEDERSTINZEL", - "nomCommune": "NIEDERSTINZEL" + "codePostal": "57565", + "codeCommune": "57505", + "libelleAcheminement": "NIDERVILLER", + "nomCommune": "NIDERVILLER" }, { "codePostal": "57240", @@ -16703,6 +16433,18 @@ "libelleAcheminement": "NILVANGE", "nomCommune": "NILVANGE" }, + { + "codePostal": "57790", + "codeCommune": "57509", + "libelleAcheminement": "NITTING", + "nomCommune": "NITTING" + }, + { + "codePostal": "57140", + "codeCommune": "57511", + "libelleAcheminement": "NORROY LE VENEUR", + "nomCommune": "NORROY LE VENEUR" + }, { "codePostal": "57645", "codeCommune": "57512", @@ -16710,58 +16452,100 @@ "nomCommune": "NOUILLY" }, { - "codePostal": "57720", - "codeCommune": "57526", - "libelleAcheminement": "ORMERSVILLER", - "nomCommune": "ORMERSVILLER" + "codePostal": "57990", + "codeCommune": "57514", + "libelleAcheminement": "NOUSSEVILLER ST NABOR", + "nomCommune": "NOUSSEVILLER ST NABOR" + }, + { + "codePostal": "57930", + "codeCommune": "57518", + "libelleAcheminement": "OBERSTINZEL", + "nomCommune": "OBERSTINZEL" + }, + { + "codePostal": "57170", + "codeCommune": "57520", + "libelleAcheminement": "OBRECK", + "nomCommune": "OBRECK" + }, + { + "codePostal": "57600", + "codeCommune": "57521", + "libelleAcheminement": "OETING", + "nomCommune": "OETING" + }, + { + "codePostal": "57810", + "codeCommune": "57524", + "libelleAcheminement": "OMMERAY", + "nomCommune": "OMMERAY" }, { "codePostal": "57420", - "codeCommune": "57532", - "libelleAcheminement": "PAGNY LES GOIN", - "nomCommune": "PAGNY LES GOIN" + "codeCommune": "57527", + "libelleAcheminement": "ORNY", + "nomCommune": "ORNY" }, { - "codePostal": "57220", - "codeCommune": "57542", - "libelleAcheminement": "PIBLANGE", - "nomCommune": "PIBLANGE" + "codePostal": "57590", + "codeCommune": "57528", + "libelleAcheminement": "ORON", + "nomCommune": "ORON" + }, + { + "codePostal": "57660", + "codeCommune": "57536", + "libelleAcheminement": "PETIT TENQUIN", + "nomCommune": "PETIT TENQUIN" }, { "codePostal": "57420", - "codeCommune": "57548", - "libelleAcheminement": "PONTOY", - "nomCommune": "PONTOY" + "codeCommune": "57547", + "libelleAcheminement": "POMMERIEUX", + "nomCommune": "POMMERIEUX" }, { - "codePostal": "57890", - "codeCommune": "57550", - "libelleAcheminement": "PORCELETTE", - "nomCommune": "PORCELETTE" + "codePostal": "57930", + "codeCommune": "57551", + "libelleAcheminement": "POSTROFF", + "nomCommune": "POSTROFF" }, { - "codePostal": "57340", - "codeCommune": "57560", - "libelleAcheminement": "RACRANGE", - "nomCommune": "RACRANGE" + "codePostal": "57420", + "codeCommune": "57552", + "libelleAcheminement": "POUILLY", + "nomCommune": "POUILLY" }, { - "codePostal": "57480", - "codeCommune": "57569", - "libelleAcheminement": "REMELING", - "nomCommune": "REMELING" + "codePostal": "57420", + "codeCommune": "57553", + "libelleAcheminement": "POURNOY LA CHETIVE", + "nomCommune": "POURNOY LA CHETIVE" }, { - "codePostal": "57510", - "codeCommune": "57581", - "libelleAcheminement": "RICHELING", - "nomCommune": "RICHELING" + "codePostal": "57320", + "codeCommune": "57567", + "libelleAcheminement": "REMELFANG", + "nomCommune": "REMELFANG" }, { - "codePostal": "57830", - "codeCommune": "57583", - "libelleAcheminement": "RICHEVAL", - "nomCommune": "RICHEVAL" + "codePostal": "57670", + "codeCommune": "57573", + "libelleAcheminement": "RENING", + "nomCommune": "RENING" + }, + { + "codePostal": "57410", + "codeCommune": "57589", + "libelleAcheminement": "ROHRBACH LES BITCHE", + "nomCommune": "ROHRBACH LES BITCHE" + }, + { + "codePostal": "57260", + "codeCommune": "57595", + "libelleAcheminement": "RORBACH LES DIEUZE", + "nomCommune": "RORBACH LES DIEUZE" }, { "codePostal": "57800", @@ -16770,34 +16554,34 @@ "nomCommune": "ROSBRUCK" }, { - "codePostal": "57520", - "codeCommune": "57598", - "libelleAcheminement": "ROUHLING", - "nomCommune": "ROUHLING" + "codePostal": "57370", + "codeCommune": "57614", + "libelleAcheminement": "ST JEAN KOURTZERODE", + "nomCommune": "ST JEAN KOURTZERODE" }, { - "codePostal": "57220", - "codeCommune": "57599", - "libelleAcheminement": "ROUPELDANGE", - "nomCommune": "ROUPELDANGE" + "codePostal": "57510", + "codeCommune": "57615", + "libelleAcheminement": "ST JEAN ROHRBACH", + "nomCommune": "ST JEAN ROHRBACH" }, { - "codePostal": "57310", - "codeCommune": "57602", - "libelleAcheminement": "RURANGE LES THIONVILLE", - "nomCommune": "RURANGE LES THIONVILLE" + "codePostal": "57070", + "codeCommune": "57616", + "libelleAcheminement": "ST JULIEN LES METZ", + "nomCommune": "ST JULIEN LES METZ" }, { - "codePostal": "57580", - "codeCommune": "57609", - "libelleAcheminement": "ST EPVRE", - "nomCommune": "ST EPVRE" + "codePostal": "57420", + "codeCommune": "57617", + "libelleAcheminement": "ST JURE", + "nomCommune": "ST JURE" }, { - "codePostal": "57855", - "codeCommune": "57622", - "libelleAcheminement": "ST PRIVAT LA MONTAGNE", - "nomCommune": "ST PRIVAT LA MONTAGNE" + "codePostal": "57620", + "codeCommune": "57619", + "libelleAcheminement": "ST LOUIS LES BITCHE", + "nomCommune": "ST LOUIS LES BITCHE" }, { "codePostal": "57400", @@ -16806,52 +16590,46 @@ "nomCommune": "SARRALTROFF" }, { - "codePostal": "57370", - "codeCommune": "57635", - "libelleAcheminement": "SCHALBACH", - "nomCommune": "SCHALBACH" - }, - { - "codePostal": "57412", - "codeCommune": "57636", - "libelleAcheminement": "SCHMITTVILLER", - "nomCommune": "SCHMITTVILLER" - }, - { - "codePostal": "57455", - "codeCommune": "57644", - "libelleAcheminement": "SEINGBOUSE", - "nomCommune": "SEINGBOUSE" + "codePostal": "57400", + "codeCommune": "57630", + "libelleAcheminement": "SARREBOURG", + "nomCommune": "SARREBOURG" }, { - "codePostal": "57290", - "codeCommune": "57647", - "libelleAcheminement": "SEREMANGE ERZANGE", - "nomCommune": "SEREMANGE ERZANGE" + "codePostal": "57140", + "codeCommune": "57634", + "libelleAcheminement": "SAULNY", + "nomCommune": "SAULNY" }, { - "codePostal": "57410", - "codeCommune": "57651", - "libelleAcheminement": "SIERSTHAL", - "nomCommune": "SIERSTHAL" + "codePostal": "57420", + "codeCommune": "57643", + "libelleAcheminement": "SECOURT", + "nomCommune": "SECOURT" }, { "codePostal": "57530", - "codeCommune": "57654", - "libelleAcheminement": "SILLY SUR NIED", - "nomCommune": "SILLY SUR NIED" + "codeCommune": "57648", + "libelleAcheminement": "SERVIGNY LES RAVILLE", + "nomCommune": "SERVIGNY LES RAVILLE" }, { "codePostal": "57420", - "codeCommune": "57655", - "libelleAcheminement": "SOLGNE", - "nomCommune": "SOLGNE" - }, - { - "codePostal": "57170", - "codeCommune": "57657", - "libelleAcheminement": "SOTZELING", - "nomCommune": "SOTZELING" + "codeCommune": "57652", + "libelleAcheminement": "SILLEGNY", + "nomCommune": "SILLEGNY" + }, + { + "codePostal": "57350", + "codeCommune": "57659", + "libelleAcheminement": "SPICHEREN", + "nomCommune": "SPICHEREN" + }, + { + "codePostal": "57350", + "codeCommune": "57659", + "libelleAcheminement": "SPICHEREN", + "nomCommune": "SPICHEREN" }, { "codePostal": "57350", @@ -16860,34 +16638,28 @@ "nomCommune": "STIRING WENDEL" }, { - "codePostal": "57340", - "codeCommune": "57662", - "libelleAcheminement": "SUISSE", - "nomCommune": "SUISSE" - }, - { - "codePostal": "57525", - "codeCommune": "57663", - "libelleAcheminement": "TALANGE", - "nomCommune": "TALANGE" + "codePostal": "57230", + "codeCommune": "57661", + "libelleAcheminement": "STURZELBRONN", + "nomCommune": "STURZELBRONN" }, { - "codePostal": "57580", - "codeCommune": "57671", - "libelleAcheminement": "THIMONVILLE", - "nomCommune": "THIMONVILLE" + "codePostal": "57980", + "codeCommune": "57665", + "libelleAcheminement": "TENTELING", + "nomCommune": "TENTELING" }, { - "codePostal": "57100", - "codeCommune": "57672", - "libelleAcheminement": "THIONVILLE", - "nomCommune": "THIONVILLE" + "codePostal": "57380", + "codeCommune": "57670", + "libelleAcheminement": "THICOURT", + "nomCommune": "THICOURT" }, { - "codePostal": "57100", - "codeCommune": "57672", - "libelleAcheminement": "THIONVILLE", - "nomCommune": "THIONVILLE" + "codePostal": "57590", + "codeCommune": "57674", + "libelleAcheminement": "TINCRY", + "nomCommune": "TINCRY" }, { "codePostal": "57710", @@ -16896,58 +16668,40 @@ "nomCommune": "TRESSANGE" }, { - "codePostal": "57870", - "codeCommune": "57680", - "libelleAcheminement": "TROISFONTAINES", - "nomCommune": "TROISFONTAINES" + "codePostal": "57670", + "codeCommune": "57685", + "libelleAcheminement": "VAHL LES BENESTROFF", + "nomCommune": "VAHL LES BENESTROFF" }, { - "codePostal": "57380", - "codeCommune": "57686", - "libelleAcheminement": "VAHL LES FAULQUEMONT", - "nomCommune": "VAHL LES FAULQUEMONT" + "codePostal": "57970", + "codeCommune": "57689", + "libelleAcheminement": "VALMESTROFF", + "nomCommune": "VALMESTROFF" }, { "codePostal": "57220", - "codeCommune": "57695", - "libelleAcheminement": "VARIZE VAUDONCOURT", - "nomCommune": "VARIZE VAUDONCOURT" - }, - { - "codePostal": "57880", - "codeCommune": "57696", - "libelleAcheminement": "VARSBERG", - "nomCommune": "VARSBERG" + "codeCommune": "57691", + "libelleAcheminement": "VALMUNSTER", + "nomCommune": "VALMUNSTER" }, { - "codePostal": "57560", - "codeCommune": "57697", - "libelleAcheminement": "VASPERVILLER", - "nomCommune": "VASPERVILLER" + "codePostal": "57320", + "codeCommune": "57700", + "libelleAcheminement": "VAUDRECHING", + "nomCommune": "VAUDRECHING" }, { "codePostal": "57130", - "codeCommune": "57701", - "libelleAcheminement": "VAUX", - "nomCommune": "VAUX" - }, - { - "codePostal": "57370", - "codeCommune": "57703", - "libelleAcheminement": "VECKERSVILLER", - "nomCommune": "VECKERSVILLER" - }, - { - "codePostal": "57220", - "codeCommune": "57705", - "libelleAcheminement": "VELVING", - "nomCommune": "VELVING" + "codeCommune": "57707", + "libelleAcheminement": "VERNEVILLE", + "nomCommune": "VERNEVILLE" }, { - "codePostal": "57630", - "codeCommune": "57712", - "libelleAcheminement": "VIC SUR SEILLE", - "nomCommune": "VIC SUR SEILLE" + "codePostal": "57420", + "codeCommune": "57708", + "libelleAcheminement": "VERNY", + "nomCommune": "VERNY" }, { "codePostal": "57420", @@ -16956,22 +16710,28 @@ "nomCommune": "VIGNY" }, { - "codePostal": "57550", - "codeCommune": "57720", - "libelleAcheminement": "VILLING", - "nomCommune": "VILLING" + "codePostal": "57340", + "codeCommune": "57717", + "libelleAcheminement": "VILLER", + "nomCommune": "VILLER" }, { - "codePostal": "57185", - "codeCommune": "57724", - "libelleAcheminement": "VITRY SUR ORNE", - "nomCommune": "VITRY SUR ORNE" + "codePostal": "57530", + "codeCommune": "57718", + "libelleAcheminement": "VILLERS STONCOURT", + "nomCommune": "VILLERS STONCOURT" }, { - "codePostal": "57580", - "codeCommune": "57726", - "libelleAcheminement": "VITTONCOURT", - "nomCommune": "VITTONCOURT" + "codePostal": "57340", + "codeCommune": "57719", + "libelleAcheminement": "VILLERS SUR NIED", + "nomCommune": "VILLERS SUR NIED" + }, + { + "codePostal": "57370", + "codeCommune": "57721", + "libelleAcheminement": "VILSBERG", + "nomCommune": "VILSBERG" }, { "codePostal": "57720", @@ -16980,10 +16740,10 @@ "nomCommune": "WALDHOUSE" }, { - "codePostal": "57870", - "codeCommune": "57742", - "libelleAcheminement": "WALSCHEID", - "nomCommune": "WALSCHEID" + "codePostal": "57370", + "codeCommune": "57743", + "libelleAcheminement": "WALTEMBOURG", + "nomCommune": "WALTEMBOURG" }, { "codePostal": "57430", @@ -16998,10 +16758,16 @@ "nomCommune": "WITTRING" }, { - "codePostal": "57905", - "codeCommune": "57760", - "libelleAcheminement": "ZETTING", - "nomCommune": "ZETTING" + "codePostal": "57830", + "codeCommune": "57756", + "libelleAcheminement": "XOUAXANGE", + "nomCommune": "XOUAXANGE" + }, + { + "codePostal": "57260", + "codeCommune": "57763", + "libelleAcheminement": "ZOMMANGE", + "nomCommune": "ZOMMANGE" }, { "codePostal": "58110", @@ -17010,34 +16776,28 @@ "nomCommune": "ACHUN" }, { - "codePostal": "58230", - "codeCommune": "58003", - "libelleAcheminement": "ALLIGNY EN MORVAN", - "nomCommune": "ALLIGNY EN MORVAN" - }, - { - "codePostal": "58800", - "codeCommune": "58008", - "libelleAcheminement": "ANTHIEN", - "nomCommune": "ANTHIEN" + "codePostal": "58110", + "codeCommune": "58004", + "libelleAcheminement": "ALLUY", + "nomCommune": "ALLUY" }, { - "codePostal": "58350", - "codeCommune": "58009", - "libelleAcheminement": "ARBOURSE", - "nomCommune": "ARBOURSE" + "codePostal": "58450", + "codeCommune": "58007", + "libelleAcheminement": "ANNAY", + "nomCommune": "ANNAY" }, { - "codePostal": "58420", - "codeCommune": "58015", - "libelleAcheminement": "ASNAN", - "nomCommune": "ASNAN" + "codePostal": "58310", + "codeCommune": "58012", + "libelleAcheminement": "ARQUIAN", + "nomCommune": "ARQUIAN" }, { - "codePostal": "58300", - "codeCommune": "58020", - "libelleAcheminement": "AVRIL SUR LOIRE", - "nomCommune": "AVRIL SUR LOIRE" + "codePostal": "58700", + "codeCommune": "58018", + "libelleAcheminement": "AUTHIOU", + "nomCommune": "AUTHIOU" }, { "codePostal": "58240", @@ -17045,125 +16805,113 @@ "libelleAcheminement": "AZY LE VIF", "nomCommune": "AZY LE VIF" }, - { - "codePostal": "58190", - "codeCommune": "58023", - "libelleAcheminement": "BAZOCHES", - "nomCommune": "BAZOCHES" - }, - { - "codePostal": "58310", - "codeCommune": "58033", - "libelleAcheminement": "BITRY", - "nomCommune": "BITRY" - }, { "codePostal": "58110", - "codeCommune": "58040", - "libelleAcheminement": "BRINAY", - "nomCommune": "BRINAY" + "codeCommune": "58024", + "libelleAcheminement": "BAZOLLES", + "nomCommune": "BAZOLLES" }, { - "codePostal": "58400", - "codeCommune": "58042", - "libelleAcheminement": "BULCY", - "nomCommune": "BULCY" + "codePostal": "58160", + "codeCommune": "58025", + "libelleAcheminement": "BEARD", + "nomCommune": "BEARD" }, { - "codePostal": "58420", - "codeCommune": "58043", - "libelleAcheminement": "BUSSY LA PESLE", - "nomCommune": "BUSSY LA PESLE" + "codePostal": "58270", + "codeCommune": "58028", + "libelleAcheminement": "BEAUMONT SARDOLLES", + "nomCommune": "BEAUMONT SARDOLLES" }, { - "codePostal": "58440", - "codeCommune": "58044", - "libelleAcheminement": "LA CELLE SUR LOIRE", - "nomCommune": "LA CELLE SUR LOIRE" + "codePostal": "58330", + "codeCommune": "58035", + "libelleAcheminement": "BONA", + "nomCommune": "BONA" }, { - "codePostal": "58700", - "codeCommune": "58045", - "libelleAcheminement": "LA CELLE SUR NIEVRE", - "nomCommune": "LA CELLE SUR NIEVRE" + "codePostal": "58110", + "codeCommune": "58040", + "libelleAcheminement": "BRINAY", + "nomCommune": "BRINAY" }, { - "codePostal": "58140", - "codeCommune": "58049", - "libelleAcheminement": "CHALAUX", - "nomCommune": "CHALAUX" + "codePostal": "58420", + "codeCommune": "58052", + "libelleAcheminement": "CHAMPALLEMENT", + "nomCommune": "CHAMPALLEMENT" }, { "codePostal": "58210", - "codeCommune": "58058", - "libelleAcheminement": "LA CHAPELLE ST ANDRE", - "nomCommune": "LA CHAPELLE ST ANDRE" + "codeCommune": "58053", + "libelleAcheminement": "CHAMPLEMY", + "nomCommune": "CHAMPLEMY" }, { - "codePostal": "58800", - "codeCommune": "58080", - "libelleAcheminement": "LA COLLANCELLE", - "nomCommune": "LA COLLANCELLE" + "codePostal": "58400", + "codeCommune": "58056", + "libelleAcheminement": "CHAMPVOUX", + "nomCommune": "CHAMPVOUX" }, { - "codePostal": "58350", - "codeCommune": "58081", - "libelleAcheminement": "COLMERY", - "nomCommune": "COLMERY" + "codePostal": "58240", + "codeCommune": "58057", + "libelleAcheminement": "CHANTENAY ST IMBERT", + "nomCommune": "CHANTENAY ST IMBERT" }, { - "codePostal": "58200", - "codeCommune": "58086", - "libelleAcheminement": "COSNE COURS SUR LOIRE", - "nomCommune": "COSNE COURS SUR LOIRE" + "codePostal": "58120", + "codeCommune": "58068", + "libelleAcheminement": "CHAUMARD", + "nomCommune": "CHAUMARD" }, { - "codePostal": "58210", - "codeCommune": "58093", - "libelleAcheminement": "CUNCY LES VARZY", - "nomCommune": "CUNCY LES VARZY" + "codePostal": "58160", + "codeCommune": "58072", + "libelleAcheminement": "CHEVENON", + "nomCommune": "CHEVENON" }, { - "codePostal": "58300", - "codeCommune": "58096", - "libelleAcheminement": "DEVAY", - "nomCommune": "DEVAY" + "codePostal": "58800", + "codeCommune": "58075", + "libelleAcheminement": "CHITRY LES MINES", + "nomCommune": "CHITRY LES MINES" }, { - "codePostal": "58160", - "codeCommune": "58105", - "libelleAcheminement": "DRUY PARIGNY", - "nomCommune": "DRUY PARIGNY" + "codePostal": "58500", + "codeCommune": "58079", + "libelleAcheminement": "CLAMECY", + "nomCommune": "CLAMECY" }, { - "codePostal": "58270", - "codeCommune": "58113", - "libelleAcheminement": "FERTREVE", - "nomCommune": "FERTREVE" + "codePostal": "58120", + "codeCommune": "58082", + "libelleAcheminement": "CORANCY", + "nomCommune": "CORANCY" }, { - "codePostal": "58250", - "codeCommune": "58118", - "libelleAcheminement": "FOURS", - "nomCommune": "FOURS" + "codePostal": "58350", + "codeCommune": "58101", + "libelleAcheminement": "DOMPIERRE SUR NIEVRE", + "nomCommune": "DOMPIERRE SUR NIEVRE" }, { - "codePostal": "58150", - "codeCommune": "58122", - "libelleAcheminement": "GARCHY", - "nomCommune": "GARCHY" + "codePostal": "58230", + "codeCommune": "58106", + "libelleAcheminement": "DUN LES PLACES", + "nomCommune": "DUN LES PLACES" }, { - "codePostal": "58150", - "codeCommune": "58122", - "libelleAcheminement": "GARCHY", - "nomCommune": "GARCHY" + "codePostal": "58430", + "codeCommune": "58111", + "libelleAcheminement": "FACHIN", + "nomCommune": "FACHIN" }, { - "codePostal": "58370", - "codeCommune": "58128", - "libelleAcheminement": "GLUX EN GLENNE", - "nomCommune": "GLUX EN GLENNE" + "codePostal": "58800", + "codeCommune": "58123", + "libelleAcheminement": "GERMENAY", + "nomCommune": "GERMENAY" }, { "codePostal": "58800", @@ -17172,22 +16920,34 @@ "nomCommune": "HERY" }, { - "codePostal": "58300", - "codeCommune": "58137", - "libelleAcheminement": "LAMENAY SUR LOIRE", - "nomCommune": "LAMENAY SUR LOIRE" + "codePostal": "58160", + "codeCommune": "58134", + "libelleAcheminement": "IMPHY", + "nomCommune": "IMPHY" }, { - "codePostal": "58470", - "codeCommune": "58152", - "libelleAcheminement": "MAGNY COURS", - "nomCommune": "MAGNY COURS" + "codePostal": "58330", + "codeCommune": "58136", + "libelleAcheminement": "JAILLY", + "nomCommune": "JAILLY" + }, + { + "codePostal": "58240", + "codeCommune": "58148", + "libelleAcheminement": "LUTHENAY UXELOUP", + "nomCommune": "LUTHENAY UXELOUP" + }, + { + "codePostal": "58170", + "codeCommune": "58149", + "libelleAcheminement": "LUZY", + "nomCommune": "LUZY" }, { "codePostal": "58190", - "codeCommune": "58154", - "libelleAcheminement": "LA MAISON DIEU", - "nomCommune": "LA MAISON DIEU" + "codeCommune": "58150", + "libelleAcheminement": "LYS", + "nomCommune": "LYS" }, { "codePostal": "58210", @@ -17196,76 +16956,82 @@ "nomCommune": "MARCY" }, { - "codePostal": "58290", - "codeCommune": "58161", - "libelleAcheminement": "MAUX", - "nomCommune": "MAUX" + "codePostal": "58180", + "codeCommune": "58160", + "libelleAcheminement": "MARZY", + "nomCommune": "MARZY" }, { - "codePostal": "58400", - "codeCommune": "58164", - "libelleAcheminement": "MESVES SUR LOIRE", - "nomCommune": "MESVES SUR LOIRE" + "codePostal": "58190", + "codeCommune": "58170", + "libelleAcheminement": "MONCEAUX LE COMTE", + "nomCommune": "MONCEAUX LE COMTE" }, { - "codePostal": "58190", - "codeCommune": "58165", - "libelleAcheminement": "METZ LE COMTE", - "nomCommune": "METZ LE COMTE" + "codePostal": "58110", + "codeCommune": "58171", + "libelleAcheminement": "MONTAPAS", + "nomCommune": "MONTAPAS" }, { - "codePostal": "58250", - "codeCommune": "58172", - "libelleAcheminement": "MONTAMBERT", - "nomCommune": "MONTAMBERT" + "codePostal": "58110", + "codeCommune": "58175", + "libelleAcheminement": "MONT ET MARRE", + "nomCommune": "MONT ET MARRE" }, { - "codePostal": "58700", - "codeCommune": "58174", - "libelleAcheminement": "MONTENOISON", - "nomCommune": "MONTENOISON" + "codePostal": "58800", + "codeCommune": "58179", + "libelleAcheminement": "MONTREUILLON", + "nomCommune": "MONTREUILLON" }, { - "codePostal": "58420", - "codeCommune": "58181", - "libelleAcheminement": "MORACHES", - "nomCommune": "MORACHES" + "codePostal": "58230", + "codeCommune": "58180", + "libelleAcheminement": "MONTSAUCHE LES SETTONS", + "nomCommune": "MONTSAUCHE LES SETTONS" }, { - "codePostal": "58700", - "codeCommune": "58184", - "libelleAcheminement": "MOUSSY", - "nomCommune": "MOUSSY" + "codePostal": "58800", + "codeCommune": "58183", + "libelleAcheminement": "MOURON SUR YONNE", + "nomCommune": "MOURON SUR YONNE" }, { - "codePostal": "58210", - "codeCommune": "58206", - "libelleAcheminement": "PARIGNY LA ROSE", - "nomCommune": "PARIGNY LA ROSE" + "codePostal": "58230", + "codeCommune": "58185", + "libelleAcheminement": "MOUX EN MORVAN", + "nomCommune": "MOUX EN MORVAN" }, { - "codePostal": "58170", - "codeCommune": "58211", - "libelleAcheminement": "POIL", - "nomCommune": "POIL" + "codePostal": "58400", + "codeCommune": "58189", + "libelleAcheminement": "NARCY", + "nomCommune": "NARCY" }, { - "codePostal": "58500", - "codeCommune": "58222", - "libelleAcheminement": "RIX", - "nomCommune": "RIX" + "codePostal": "58370", + "codeCommune": "58199", + "libelleAcheminement": "ONLAY", + "nomCommune": "ONLAY" }, { - "codePostal": "58470", - "codeCommune": "58225", - "libelleAcheminement": "SAINCAIZE MEAUCE", - "nomCommune": "SAINCAIZE MEAUCE" + "codePostal": "58210", + "codeCommune": "58201", + "libelleAcheminement": "OUDAN", + "nomCommune": "OUDAN" }, { - "codePostal": "58150", - "codeCommune": "58228", - "libelleAcheminement": "ST ANDELAIN", - "nomCommune": "ST ANDELAIN" + "codePostal": "58230", + "codeCommune": "58205", + "libelleAcheminement": "OUROUX EN MORVAN", + "nomCommune": "OUROUX EN MORVAN" + }, + { + "codePostal": "58800", + "codeCommune": "58208", + "libelleAcheminement": "PAZY", + "nomCommune": "PAZY" }, { "codePostal": "58700", @@ -17274,22 +17040,28 @@ "nomCommune": "ST BONNOT" }, { - "codePostal": "58340", - "codeCommune": "58243", - "libelleAcheminement": "ST GRATIEN SAVIGNY", - "nomCommune": "ST GRATIEN SAVIGNY" + "codePostal": "58270", + "codeCommune": "58247", + "libelleAcheminement": "ST JEAN AUX AMOGNES", + "nomCommune": "ST JEAN AUX AMOGNES" }, { - "codePostal": "58120", - "codeCommune": "58244", - "libelleAcheminement": "ST HILAIRE EN MORVAN", - "nomCommune": "ST HILAIRE EN MORVAN" + "codePostal": "58300", + "codeCommune": "58250", + "libelleAcheminement": "ST LEGER DES VIGNES", + "nomCommune": "ST LEGER DES VIGNES" }, { - "codePostal": "58140", - "codeCommune": "58255", - "libelleAcheminement": "ST MARTIN DU PUY", - "nomCommune": "ST MARTIN DU PUY" + "codePostal": "58330", + "codeCommune": "58253", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" + }, + { + "codePostal": "58330", + "codeCommune": "58257", + "libelleAcheminement": "ST MAURICE", + "nomCommune": "ST MAURICE" }, { "codePostal": "58160", @@ -17298,22 +17070,22 @@ "nomCommune": "ST OUEN SUR LOIRE" }, { - "codePostal": "58240", - "codeCommune": "58264", - "libelleAcheminement": "ST PIERRE LE MOUTIER", - "nomCommune": "ST PIERRE LE MOUTIER" + "codePostal": "58250", + "codeCommune": "58268", + "libelleAcheminement": "ST SEINE", + "nomCommune": "ST SEINE" }, { - "codePostal": "58800", - "codeCommune": "58272", - "libelleAcheminement": "SARDY LES EPIRY", - "nomCommune": "SARDY LES EPIRY" + "codePostal": "58360", + "codeCommune": "58276", + "libelleAcheminement": "SEMELAY", + "nomCommune": "SEMELAY" }, { - "codePostal": "58190", - "codeCommune": "58286", - "libelleAcheminement": "TANNAY", - "nomCommune": "TANNAY" + "codePostal": "58150", + "codeCommune": "58281", + "libelleAcheminement": "SUILLY LA TOUR", + "nomCommune": "SUILLY LA TOUR" }, { "codePostal": "58190", @@ -17321,6 +17093,12 @@ "libelleAcheminement": "TEIGNY", "nomCommune": "TEIGNY" }, + { + "codePostal": "58150", + "codeCommune": "58295", + "libelleAcheminement": "TRACY SUR LOIRE", + "nomCommune": "TRACY SUR LOIRE" + }, { "codePostal": "58240", "codeCommune": "58296", @@ -17328,22 +17106,22 @@ "nomCommune": "TRESNAY" }, { - "codePostal": "58140", - "codeCommune": "58305", - "libelleAcheminement": "VAUCLAIX", - "nomCommune": "VAUCLAIX" + "codePostal": "58460", + "codeCommune": "58299", + "libelleAcheminement": "TRUCY L ORGUEILLEUX", + "nomCommune": "TRUCY L ORGUEILLEUX" }, { - "codePostal": "58190", - "codeCommune": "58308", - "libelleAcheminement": "VIGNOL", - "nomCommune": "VIGNOL" + "codePostal": "58270", + "codeCommune": "58311", + "libelleAcheminement": "VILLE LANGY", + "nomCommune": "VILLE LANGY" }, { - "codePostal": "59149", - "codeCommune": "59003", - "libelleAcheminement": "AIBES", - "nomCommune": "AIBES" + "codePostal": "59215", + "codeCommune": "59002", + "libelleAcheminement": "ABSCON", + "nomCommune": "ABSCON" }, { "codePostal": "59194", @@ -17352,10 +17130,10 @@ "nomCommune": "ANHIERS" }, { - "codePostal": "59112", - "codeCommune": "59011", - "libelleAcheminement": "ANNOEULLIN", - "nomCommune": "ANNOEULLIN" + "codePostal": "59580", + "codeCommune": "59008", + "libelleAcheminement": "ANICHE", + "nomCommune": "ANICHE" }, { "codePostal": "59152", @@ -17364,16 +17142,10 @@ "nomCommune": "ANSTAING" }, { - "codePostal": "59151", - "codeCommune": "59015", - "libelleAcheminement": "ARLEUX", - "nomCommune": "ARLEUX" - }, - { - "codePostal": "59285", - "codeCommune": "59018", - "libelleAcheminement": "ARNEKE", - "nomCommune": "ARNEKE" + "codePostal": "59269", + "codeCommune": "59019", + "libelleAcheminement": "ARTRES", + "nomCommune": "ARTRES" }, { "codePostal": "59265", @@ -17382,22 +17154,16 @@ "nomCommune": "AUBENCHEUL AU BAC" }, { - "codePostal": "59265", - "codeCommune": "59026", - "libelleAcheminement": "AUBIGNY AU BAC", - "nomCommune": "AUBIGNY AU BAC" - }, - { - "codePostal": "59570", - "codeCommune": "59031", - "libelleAcheminement": "AUDIGNIES", - "nomCommune": "AUDIGNIES" + "codePostal": "59300", + "codeCommune": "59032", + "libelleAcheminement": "AULNOY LEZ VALENCIENNES", + "nomCommune": "AULNOY LEZ VALENCIENNES" }, { - "codePostal": "59440", - "codeCommune": "59036", - "libelleAcheminement": "AVESNES SUR HELPE", - "nomCommune": "AVESNES SUR HELPE" + "codePostal": "59620", + "codeCommune": "59033", + "libelleAcheminement": "AULNOYE AYMERIES", + "nomCommune": "AULNOYE AYMERIES" }, { "codePostal": "59129", @@ -17405,6 +17171,24 @@ "libelleAcheminement": "AVESNES LES AUBERT", "nomCommune": "AVESNES LES AUBERT" }, + { + "codePostal": "59830", + "codeCommune": "59042", + "libelleAcheminement": "BACHY", + "nomCommune": "BACHY" + }, + { + "codePostal": "59470", + "codeCommune": "59046", + "libelleAcheminement": "BAMBECQUE", + "nomCommune": "BAMBECQUE" + }, + { + "codePostal": "59570", + "codeCommune": "59053", + "libelleAcheminement": "BAVAY", + "nomCommune": "BAVAY" + }, { "codePostal": "59530", "codeCommune": "59057", @@ -17418,40 +17202,16 @@ "nomCommune": "BEAUREPAIRE SUR SAMBRE" }, { - "codePostal": "59740", - "codeCommune": "59066", - "libelleAcheminement": "BERELLES", - "nomCommune": "BERELLES" - }, - { - "codePostal": "59380", - "codeCommune": "59067", - "libelleAcheminement": "BERGUES", - "nomCommune": "BERGUES" - }, - { - "codePostal": "59213", - "codeCommune": "59069", - "libelleAcheminement": "BERMERAIN", - "nomCommune": "BERMERAIN" - }, - { - "codePostal": "59600", - "codeCommune": "59076", - "libelleAcheminement": "BETTIGNIES", - "nomCommune": "BETTIGNIES" - }, - { - "codePostal": "59310", - "codeCommune": "59080", - "libelleAcheminement": "BEUVRY LA FORET", - "nomCommune": "BEUVRY LA FORET" + "codePostal": "59216", + "codeCommune": "59078", + "libelleAcheminement": "BEUGNIES", + "nomCommune": "BEUGNIES" }, { - "codePostal": "59173", - "codeCommune": "59084", - "libelleAcheminement": "BLARINGHEM", - "nomCommune": "BLARINGHEM" + "codePostal": "59192", + "codeCommune": "59079", + "libelleAcheminement": "BEUVRAGES", + "nomCommune": "BEUVRAGES" }, { "codePostal": "59299", @@ -17460,10 +17220,16 @@ "nomCommune": "BOESCHEPE" }, { - "codePostal": "59189", - "codeCommune": "59087", - "libelleAcheminement": "BOESEGHEM", - "nomCommune": "BOESEGHEM" + "codePostal": "59280", + "codeCommune": "59088", + "libelleAcheminement": "BOIS GRENIER", + "nomCommune": "BOIS GRENIER" + }, + { + "codePostal": "59470", + "codeCommune": "59089", + "libelleAcheminement": "BOLLEZEELE", + "nomCommune": "BOLLEZEELE" }, { "codePostal": "59910", @@ -17471,12 +17237,6 @@ "libelleAcheminement": "BONDUES", "nomCommune": "BONDUES" }, - { - "codePostal": "59111", - "codeCommune": "59092", - "libelleAcheminement": "BOUCHAIN", - "nomCommune": "BOUCHAIN" - }, { "codePostal": "59400", "codeCommune": "59097", @@ -17484,52 +17244,76 @@ "nomCommune": "BOURSIES" }, { - "codePostal": "59860", - "codeCommune": "59112", - "libelleAcheminement": "BRUAY SUR L ESCAUT", - "nomCommune": "BRUAY SUR L ESCAUT" + "codePostal": "59149", + "codeCommune": "59101", + "libelleAcheminement": "BOUSIGNIES SUR ROC", + "nomCommune": "BOUSIGNIES SUR ROC" }, { - "codePostal": "59400", - "codeCommune": "59122", - "libelleAcheminement": "CAMBRAI", - "nomCommune": "CAMBRAI" + "codePostal": "59330", + "codeCommune": "59103", + "libelleAcheminement": "BOUSSIERES SUR SAMBRE", + "nomCommune": "BOUSSIERES SUR SAMBRE" }, { - "codePostal": "59133", - "codeCommune": "59123", - "libelleAcheminement": "CAMPHIN EN CAREMBAULT", - "nomCommune": "CAMPHIN EN CAREMBAULT" + "codePostal": "59168", + "codeCommune": "59104", + "libelleAcheminement": "BOUSSOIS", + "nomCommune": "BOUSSOIS" }, { - "codePostal": "59267", - "codeCommune": "59125", - "libelleAcheminement": "CANTAING SUR ESCAUT", - "nomCommune": "CANTAING SUR ESCAUT" + "codePostal": "59178", + "codeCommune": "59109", + "libelleAcheminement": "BRILLON", + "nomCommune": "BRILLON" }, { - "codePostal": "59213", - "codeCommune": "59127", - "libelleAcheminement": "CAPELLE", - "nomCommune": "CAPELLE" + "codePostal": "59630", + "codeCommune": "59110", + "libelleAcheminement": "BROUCKERQUE", + "nomCommune": "BROUCKERQUE" }, { - "codePostal": "59112", - "codeCommune": "59133", - "libelleAcheminement": "CARNIN", - "nomCommune": "CARNIN" + "codePostal": "59137", + "codeCommune": "59118", + "libelleAcheminement": "BUSIGNY", + "nomCommune": "BUSIGNY" }, { - "codePostal": "59670", - "codeCommune": "59135", - "libelleAcheminement": "CASSEL", - "nomCommune": "CASSEL" + "codePostal": "59285", + "codeCommune": "59119", + "libelleAcheminement": "BUYSSCHEURE", + "nomCommune": "BUYSSCHEURE" }, { - "codePostal": "59360", - "codeCommune": "59137", - "libelleAcheminement": "CATILLON SUR SAMBRE", - "nomCommune": "CATILLON SUR SAMBRE" + "codePostal": "59190", + "codeCommune": "59120", + "libelleAcheminement": "CAESTRE", + "nomCommune": "CAESTRE" + }, + { + "codePostal": "59242", + "codeCommune": "59129", + "libelleAcheminement": "CAPPELLE EN PEVELE", + "nomCommune": "CAPPELLE EN PEVELE" + }, + { + "codePostal": "59630", + "codeCommune": "59130", + "libelleAcheminement": "CAPPELLE BROUCK", + "nomCommune": "CAPPELLE BROUCK" + }, + { + "codePostal": "59217", + "codeCommune": "59132", + "libelleAcheminement": "CARNIERES", + "nomCommune": "CARNIERES" + }, + { + "codePostal": "59217", + "codeCommune": "59138", + "libelleAcheminement": "CATTENIERES", + "nomCommune": "CATTENIERES" }, { "codePostal": "59540", @@ -17544,82 +17328,94 @@ "nomCommune": "CERFONTAINE" }, { - "codePostal": "59152", - "codeCommune": "59146", - "libelleAcheminement": "CHERENG", - "nomCommune": "CHERENG" + "codePostal": "59147", + "codeCommune": "59145", + "libelleAcheminement": "CHEMY", + "nomCommune": "CHEMY" }, { - "codePostal": "59830", - "codeCommune": "59150", - "libelleAcheminement": "COBRIEUX", - "nomCommune": "COBRIEUX" + "codePostal": "59500", + "codeCommune": "59178", + "libelleAcheminement": "DOUAI", + "nomCommune": "DOUAI" }, { - "codePostal": "59552", - "codeCommune": "59156", - "libelleAcheminement": "COURCHELETTES", - "nomCommune": "COURCHELETTES" + "codePostal": "59140", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "59154", - "codeCommune": "59160", - "libelleAcheminement": "CRESPIN", - "nomCommune": "CRESPIN" + "codePostal": "59430", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "59170", - "codeCommune": "59163", - "libelleAcheminement": "CROIX", - "nomCommune": "CROIX" + "codePostal": "59640", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "59680", - "codeCommune": "59169", - "libelleAcheminement": "DAMOUSIES", - "nomCommune": "DAMOUSIES" + "codePostal": "59600", + "codeCommune": "59190", + "libelleAcheminement": "ELESMES", + "nomCommune": "ELESMES" }, { - "codePostal": "59282", - "codeCommune": "59179", - "libelleAcheminement": "DOUCHY LES MINES", - "nomCommune": "DOUCHY LES MINES" + "codePostal": "59127", + "codeCommune": "59191", + "libelleAcheminement": "ELINCOURT", + "nomCommune": "ELINCOURT" }, { - "codePostal": "59940", - "codeCommune": "59180", - "libelleAcheminement": "LE DOULIEU", - "nomCommune": "LE DOULIEU" + "codePostal": "59320", + "codeCommune": "59193", + "libelleAcheminement": "EMMERIN", + "nomCommune": "EMMERIN" }, { - "codePostal": "59640", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "59530", + "codeCommune": "59194", + "libelleAcheminement": "ENGLEFONTAINE", + "nomCommune": "ENGLEFONTAINE" }, { - "codePostal": "59330", - "codeCommune": "59187", - "libelleAcheminement": "ECLAIBES", - "nomCommune": "ECLAIBES" + "codePostal": "59171", + "codeCommune": "59203", + "libelleAcheminement": "ERRE", + "nomCommune": "ERRE" }, { - "codePostal": "59580", - "codeCommune": "59192", - "libelleAcheminement": "EMERCHICOURT", - "nomCommune": "EMERCHICOURT" + "codePostal": "59144", + "codeCommune": "59217", + "libelleAcheminement": "ETH", + "nomCommune": "ETH" }, { - "codePostal": "59553", - "codeCommune": "59211", - "libelleAcheminement": "ESQUERCHIN", - "nomCommune": "ESQUERCHIN" + "codePostal": "59300", + "codeCommune": "59221", + "libelleAcheminement": "FAMARS", + "nomCommune": "FAMARS" }, { - "codePostal": "59247", - "codeCommune": "59224", - "libelleAcheminement": "FECHAIN", - "nomCommune": "FECHAIN" + "codePostal": "59550", + "codeCommune": "59223", + "libelleAcheminement": "LE FAVRIL", + "nomCommune": "LE FAVRIL" + }, + { + "codePostal": "59750", + "codeCommune": "59225", + "libelleAcheminement": "FEIGNIES", + "nomCommune": "FEIGNIES" + }, + { + "codePostal": "59680", + "codeCommune": "59231", + "libelleAcheminement": "FERRIERE LA PETITE", + "nomCommune": "FERRIERE LA PETITE" }, { "codePostal": "59570", @@ -17627,12 +17423,6 @@ "libelleAcheminement": "LA FLAMENGRIE", "nomCommune": "LA FLAMENGRIE" }, - { - "codePostal": "59440", - "codeCommune": "59233", - "libelleAcheminement": "FLAUMONT WAUDRECHIES", - "nomCommune": "FLAUMONT WAUDRECHIES" - }, { "codePostal": "59267", "codeCommune": "59236", @@ -17640,16 +17430,22 @@ "nomCommune": "FLESQUIERES" }, { - "codePostal": "59270", - "codeCommune": "59237", - "libelleAcheminement": "FLETRE", - "nomCommune": "FLETRE" + "codePostal": "59222", + "codeCommune": "59246", + "libelleAcheminement": "FOREST EN CAMBRESIS", + "nomCommune": "FOREST EN CAMBRESIS" }, { - "codePostal": "59440", - "codeCommune": "59240", - "libelleAcheminement": "FLOURSIES", - "nomCommune": "FLOURSIES" + "codePostal": "59610", + "codeCommune": "59249", + "libelleAcheminement": "FOURMIES", + "nomCommune": "FOURMIES" + }, + { + "codePostal": "59530", + "codeCommune": "59251", + "libelleAcheminement": "FRASNOY", + "nomCommune": "FRASNOY" }, { "codePostal": "59970", @@ -17658,16 +17454,34 @@ "nomCommune": "FRESNES SUR ESCAUT" }, { - "codePostal": "59270", - "codeCommune": "59262", - "libelleAcheminement": "GODEWAERSVELDE", - "nomCommune": "GODEWAERSVELDE" + "codePostal": "59273", + "codeCommune": "59256", + "libelleAcheminement": "FRETIN", + "nomCommune": "FRETIN" }, { - "codePostal": "59600", - "codeCommune": "59264", - "libelleAcheminement": "GOGNIES CHAUSSEE", - "nomCommune": "GOGNIES CHAUSSEE" + "codePostal": "59530", + "codeCommune": "59259", + "libelleAcheminement": "GHISSIGNIES", + "nomCommune": "GHISSIGNIES" + }, + { + "codePostal": "59122", + "codeCommune": "59260", + "libelleAcheminement": "GHYVELDE", + "nomCommune": "GHYVELDE" + }, + { + "codePostal": "59132", + "codeCommune": "59261", + "libelleAcheminement": "GLAGEON", + "nomCommune": "GLAGEON" + }, + { + "codePostal": "59169", + "codeCommune": "59263", + "libelleAcheminement": "GOEULZIN", + "nomCommune": "GOEULZIN" }, { "codePostal": "59147", @@ -17676,10 +17490,16 @@ "nomCommune": "GONDECOURT" }, { - "codePostal": "59152", - "codeCommune": "59275", - "libelleAcheminement": "GRUSON", - "nomCommune": "GRUSON" + "codePostal": "59760", + "codeCommune": "59271", + "libelleAcheminement": "GRANDE SYNTHE", + "nomCommune": "GRANDE SYNTHE" + }, + { + "codePostal": "59287", + "codeCommune": "59276", + "libelleAcheminement": "GUESNAIN", + "nomCommune": "GUESNAIN" }, { "codePostal": "59320", @@ -17688,64 +17508,46 @@ "nomCommune": "HALLENNES LEZ HAUBOURDIN" }, { - "codePostal": "59178", - "codeCommune": "59284", - "libelleAcheminement": "HASNON", - "nomCommune": "HASNON" + "codePostal": "59496", + "codeCommune": "59281", + "libelleAcheminement": "HANTAY", + "nomCommune": "HANTAY" }, { - "codePostal": "59440", - "codeCommune": "59290", - "libelleAcheminement": "HAUT LIEU", - "nomCommune": "HAUT LIEU" + "codePostal": "59138", + "codeCommune": "59283", + "libelleAcheminement": "HARGNIES", + "nomCommune": "HARGNIES" }, { - "codePostal": "59255", - "codeCommune": "59292", - "libelleAcheminement": "HAVELUY", - "nomCommune": "HAVELUY" + "codePostal": "59320", + "codeCommune": "59286", + "libelleAcheminement": "HAUBOURDIN", + "nomCommune": "HAUBOURDIN" }, { - "codePostal": "59268", - "codeCommune": "59294", - "libelleAcheminement": "HAYNECOURT", - "nomCommune": "HAYNECOURT" + "codePostal": "59191", + "codeCommune": "59287", + "libelleAcheminement": "HAUCOURT EN CAMBRESIS", + "nomCommune": "HAUCOURT EN CAMBRESIS" }, { - "codePostal": "59247", - "codeCommune": "59300", - "libelleAcheminement": "HEM LENGLET", - "nomCommune": "HEM LENGLET" + "codePostal": "59294", + "codeCommune": "59289", + "libelleAcheminement": "HAUSSY", + "nomCommune": "HAUSSY" }, { - "codePostal": "59147", - "codeCommune": "59304", - "libelleAcheminement": "HERRIN", - "nomCommune": "HERRIN" + "codePostal": "59255", + "codeCommune": "59292", + "libelleAcheminement": "HAVELUY", + "nomCommune": "HAVELUY" }, { - "codePostal": "59122", - "codeCommune": "59309", - "libelleAcheminement": "HONDSCHOOTE", - "nomCommune": "HONDSCHOOTE" - }, - { - "codePostal": "59570", - "codeCommune": "59315", - "libelleAcheminement": "HOUDAIN LEZ BAVAY", - "nomCommune": "HOUDAIN LEZ BAVAY" - }, - { - "codePostal": "59263", - "codeCommune": "59316", - "libelleAcheminement": "HOUPLIN ANCOISNE", - "nomCommune": "HOUPLIN ANCOISNE" - }, - { - "codePostal": "59470", - "codeCommune": "59318", - "libelleAcheminement": "HOUTKERQUE", - "nomCommune": "HOUTKERQUE" + "codePostal": "59199", + "codeCommune": "59301", + "libelleAcheminement": "HERGNIES", + "nomCommune": "HERGNIES" }, { "codePostal": "59492", @@ -17754,22 +17556,28 @@ "nomCommune": "HOYMILLE" }, { - "codePostal": "59480", - "codeCommune": "59320", - "libelleAcheminement": "ILLIES", - "nomCommune": "ILLIES" + "codePostal": "59141", + "codeCommune": "59322", + "libelleAcheminement": "IWUY", + "nomCommune": "IWUY" }, { - "codePostal": "59122", - "codeCommune": "59326", - "libelleAcheminement": "KILLEM", - "nomCommune": "KILLEM" + "codePostal": "59552", + "codeCommune": "59329", + "libelleAcheminement": "LAMBRES LEZ DOUAI", + "nomCommune": "LAMBRES LEZ DOUAI" }, { - "codePostal": "59130", - "codeCommune": "59328", - "libelleAcheminement": "LAMBERSART", - "nomCommune": "LAMBERSART" + "codePostal": "59390", + "codeCommune": "59332", + "libelleAcheminement": "LANNOY", + "nomCommune": "LANNOY" + }, + { + "codePostal": "59470", + "codeCommune": "59338", + "libelleAcheminement": "LEDRINGHEM", + "nomCommune": "LEDRINGHEM" }, { "codePostal": "59258", @@ -17783,6 +17591,18 @@ "libelleAcheminement": "LIEU ST AMAND", "nomCommune": "LIEU ST AMAND" }, + { + "codePostal": "59160", + "codeCommune": "59350", + "libelleAcheminement": "LILLE", + "nomCommune": "LILLE" + }, + { + "codePostal": "59800", + "codeCommune": "59350", + "libelleAcheminement": "LILLE", + "nomCommune": "LILLE" + }, { "codePostal": "59126", "codeCommune": "59352", @@ -17790,10 +17610,10 @@ "nomCommune": "LINSELLES" }, { - "codePostal": "59840", - "codeCommune": "59356", - "libelleAcheminement": "LOMPRET", - "nomCommune": "LOMPRET" + "codePostal": "59182", + "codeCommune": "59354", + "libelleAcheminement": "LOFFRE", + "nomCommune": "LOFFRE" }, { "codePostal": "59630", @@ -17802,28 +17622,28 @@ "nomCommune": "LOOBERGHE" }, { - "codePostal": "59233", - "codeCommune": "59369", - "libelleAcheminement": "MAING", - "nomCommune": "MAING" + "codePostal": "59238", + "codeCommune": "59382", + "libelleAcheminement": "MARETZ", + "nomCommune": "MARETZ" }, { - "codePostal": "59550", - "codeCommune": "59384", - "libelleAcheminement": "MAROILLES", - "nomCommune": "MAROILLES" + "codePostal": "59520", + "codeCommune": "59386", + "libelleAcheminement": "MARQUETTE LEZ LILLE", + "nomCommune": "MARQUETTE LEZ LILLE" }, { - "codePostal": "59274", - "codeCommune": "59388", - "libelleAcheminement": "MARQUILLIES", - "nomCommune": "MARQUILLIES" + "codePostal": "59710", + "codeCommune": "59398", + "libelleAcheminement": "MERIGNIES", + "nomCommune": "MERIGNIES" }, { - "codePostal": "59470", - "codeCommune": "59397", - "libelleAcheminement": "MERCKEGHEM", - "nomCommune": "MERCKEGHEM" + "codePostal": "59270", + "codeCommune": "59399", + "libelleAcheminement": "MERRIS", + "nomCommune": "MERRIS" }, { "codePostal": "59270", @@ -17832,16 +17652,28 @@ "nomCommune": "METEREN" }, { - "codePostal": "59400", - "codeCommune": "59405", - "libelleAcheminement": "MOEUVRES", - "nomCommune": "MOEUVRES" + "codePostal": "59178", + "codeCommune": "59403", + "libelleAcheminement": "MILLONFOSSE", + "nomCommune": "MILLONFOSSE" }, { - "codePostal": "59234", - "codeCommune": "59409", - "libelleAcheminement": "MONCHECOURT", - "nomCommune": "MONCHECOURT" + "codePostal": "59246", + "codeCommune": "59411", + "libelleAcheminement": "MONS EN PEVELE", + "nomCommune": "MONS EN PEVELE" + }, + { + "codePostal": "59227", + "codeCommune": "59415", + "libelleAcheminement": "MONTRECOURT", + "nomCommune": "MONTRECOURT" + }, + { + "codePostal": "59158", + "codeCommune": "59418", + "libelleAcheminement": "MORTAGNE DU NORD", + "nomCommune": "MORTAGNE DU NORD" }, { "codePostal": "59132", @@ -17850,112 +17682,106 @@ "nomCommune": "MOUSTIER EN FAGNE" }, { - "codePostal": "59420", - "codeCommune": "59421", - "libelleAcheminement": "MOUVAUX", - "nomCommune": "MOUVAUX" - }, - { - "codePostal": "59940", - "codeCommune": "59423", - "libelleAcheminement": "NEUF BERQUIN", - "nomCommune": "NEUF BERQUIN" + "codePostal": "59330", + "codeCommune": "59424", + "libelleAcheminement": "NEUF MESNIL", + "nomCommune": "NEUF MESNIL" }, { - "codePostal": "59143", - "codeCommune": "59433", - "libelleAcheminement": "NIEURLET", - "nomCommune": "NIEURLET" + "codePostal": "59670", + "codeCommune": "59436", + "libelleAcheminement": "NOORDPEENE", + "nomCommune": "NOORDPEENE" }, { - "codePostal": "59310", - "codeCommune": "59435", - "libelleAcheminement": "NOMAIN", - "nomCommune": "NOMAIN" + "codePostal": "59159", + "codeCommune": "59438", + "libelleAcheminement": "NOYELLES SUR ESCAUT", + "nomCommune": "NOYELLES SUR ESCAUT" }, { - "codePostal": "59139", - "codeCommune": "59437", - "libelleAcheminement": "NOYELLES LES SECLIN", - "nomCommune": "NOYELLES LES SECLIN" + "codePostal": "59132", + "codeCommune": "59445", + "libelleAcheminement": "OHAIN", + "nomCommune": "OHAIN" }, { - "codePostal": "59282", - "codeCommune": "59440", - "libelleAcheminement": "NOYELLES SUR SELLE", - "nomCommune": "NOYELLES SUR SELLE" + "codePostal": "59264", + "codeCommune": "59447", + "libelleAcheminement": "ONNAING", + "nomCommune": "ONNAING" }, { - "codePostal": "59970", - "codeCommune": "59444", - "libelleAcheminement": "ODOMEZ", - "nomCommune": "ODOMEZ" + "codePostal": "59710", + "codeCommune": "59466", + "libelleAcheminement": "PONT A MARCQ", + "nomCommune": "PONT A MARCQ" }, { - "codePostal": "59122", - "codeCommune": "59448", - "libelleAcheminement": "OOST CAPPEL", - "nomCommune": "OOST CAPPEL" + "codePostal": "59990", + "codeCommune": "59471", + "libelleAcheminement": "PRESEAU", + "nomCommune": "PRESEAU" }, { - "codePostal": "59360", - "codeCommune": "59450", - "libelleAcheminement": "ORS", - "nomCommune": "ORS" + "codePostal": "59185", + "codeCommune": "59477", + "libelleAcheminement": "PROVIN", + "nomCommune": "PROVIN" }, { - "codePostal": "59162", - "codeCommune": "59452", - "libelleAcheminement": "OSTRICOURT", - "nomCommune": "OSTRICOURT" + "codePostal": "59680", + "codeCommune": "59483", + "libelleAcheminement": "QUIEVELON", + "nomCommune": "QUIEVELON" }, { - "codePostal": "59146", - "codeCommune": "59456", - "libelleAcheminement": "PECQUENCOURT", - "nomCommune": "PECQUENCOURT" + "codePostal": "59920", + "codeCommune": "59484", + "libelleAcheminement": "QUIEVRECHAIN", + "nomCommune": "QUIEVRECHAIN" }, { - "codePostal": "59284", - "codeCommune": "59463", - "libelleAcheminement": "PITGAM", - "nomCommune": "PITGAM" + "codePostal": "59320", + "codeCommune": "59487", + "libelleAcheminement": "RADINGHEM EN WEPPES", + "nomCommune": "RADINGHEM EN WEPPES" }, { - "codePostal": "59138", - "codeCommune": "59467", - "libelleAcheminement": "PONT SUR SAMBRE", - "nomCommune": "PONT SUR SAMBRE" + "codePostal": "59590", + "codeCommune": "59491", + "libelleAcheminement": "RAISMES", + "nomCommune": "RAISMES" }, { - "codePostal": "59840", - "codeCommune": "59470", - "libelleAcheminement": "PREMESQUES", - "nomCommune": "PREMESQUES" + "codePostal": "59173", + "codeCommune": "59497", + "libelleAcheminement": "RENESCURE", + "nomCommune": "RENESCURE" }, { - "codePostal": "59144", - "codeCommune": "59473", - "libelleAcheminement": "PREUX AU SART", - "nomCommune": "PREUX AU SART" + "codePostal": "59980", + "codeCommune": "59498", + "libelleAcheminement": "REUMONT", + "nomCommune": "REUMONT" }, { - "codePostal": "59121", - "codeCommune": "59475", - "libelleAcheminement": "PROUVY", - "nomCommune": "PROUVY" + "codePostal": "59159", + "codeCommune": "59500", + "libelleAcheminement": "RIBECOURT LA TOUR", + "nomCommune": "RIBECOURT LA TOUR" }, { - "codePostal": "59530", - "codeCommune": "59481", - "libelleAcheminement": "LE QUESNOY", - "nomCommune": "LE QUESNOY" + "codePostal": "59870", + "codeCommune": "59501", + "libelleAcheminement": "RIEULAY", + "nomCommune": "RIEULAY" }, { - "codePostal": "59283", - "codeCommune": "59489", - "libelleAcheminement": "RAIMBEAUCOURT", - "nomCommune": "RAIMBEAUCOURT" + "codePostal": "59730", + "codeCommune": "59506", + "libelleAcheminement": "ROMERIES", + "nomCommune": "ROMERIES" }, { "codePostal": "59169", @@ -17964,34 +17790,22 @@ "nomCommune": "ROUCOURT" }, { - "codePostal": "59220", - "codeCommune": "59515", - "libelleAcheminement": "ROUVIGNIES", - "nomCommune": "ROUVIGNIES" - }, - { - "codePostal": "59285", - "codeCommune": "59516", - "libelleAcheminement": "RUBROUCK", - "nomCommune": "RUBROUCK" - }, - { - "codePostal": "59390", - "codeCommune": "59522", - "libelleAcheminement": "SAILLY LEZ LANNOY", - "nomCommune": "SAILLY LEZ LANNOY" + "codePostal": "59226", + "codeCommune": "59519", + "libelleAcheminement": "RUMEGIES", + "nomCommune": "RUMEGIES" }, { - "codePostal": "59184", - "codeCommune": "59524", - "libelleAcheminement": "SAINGHIN EN WEPPES", - "nomCommune": "SAINGHIN EN WEPPES" + "codePostal": "59820", + "codeCommune": "59532", + "libelleAcheminement": "ST GEORGES SUR L AA", + "nomCommune": "ST GEORGES SUR L AA" }, { - "codePostal": "59177", - "codeCommune": "59525", - "libelleAcheminement": "SAINS DU NORD", - "nomCommune": "SAINS DU NORD" + "codePostal": "59270", + "codeCommune": "59535", + "libelleAcheminement": "ST JANS CAPPEL", + "nomCommune": "ST JANS CAPPEL" }, { "codePostal": "59114", @@ -18006,58 +17820,58 @@ "nomCommune": "ST WAAST" }, { - "codePostal": "59269", - "codeCommune": "59565", - "libelleAcheminement": "SEPMERIES", - "nomCommune": "SEPMERIES" + "codePostal": "59310", + "codeCommune": "59551", + "libelleAcheminement": "SAMEON", + "nomCommune": "SAMEON" }, { - "codePostal": "59400", - "codeCommune": "59567", - "libelleAcheminement": "SERANVILLERS FORENVILLE", - "nomCommune": "SERANVILLERS FORENVILLE" + "codePostal": "59113", + "codeCommune": "59560", + "libelleAcheminement": "SECLIN", + "nomCommune": "SECLIN" }, { - "codePostal": "59740", - "codeCommune": "59572", - "libelleAcheminement": "SOLRE LE CHATEAU", - "nomCommune": "SOLRE LE CHATEAU" + "codePostal": "59174", + "codeCommune": "59564", + "libelleAcheminement": "LA SENTINELLE", + "nomCommune": "LA SENTINELLE" }, { - "codePostal": "59490", - "codeCommune": "59574", - "libelleAcheminement": "SOMAIN", - "nomCommune": "SOMAIN" + "codePostal": "59114", + "codeCommune": "59580", + "libelleAcheminement": "STEENVOORDE", + "nomCommune": "STEENVOORDE" }, { - "codePostal": "59380", - "codeCommune": "59579", - "libelleAcheminement": "STEENE", - "nomCommune": "STEENE" + "codePostal": "59270", + "codeCommune": "59582", + "libelleAcheminement": "STRAZEELE", + "nomCommune": "STRAZEELE" }, { - "codePostal": "59181", - "codeCommune": "59581", - "libelleAcheminement": "STEENWERCK", - "nomCommune": "STEENWERCK" + "codePostal": "59550", + "codeCommune": "59583", + "libelleAcheminement": "TAISNIERES EN THIERACHE", + "nomCommune": "TAISNIERES EN THIERACHE" }, { - "codePostal": "59570", - "codeCommune": "59584", - "libelleAcheminement": "TAISNIERES SUR HON", - "nomCommune": "TAISNIERES SUR HON" + "codePostal": "59242", + "codeCommune": "59586", + "libelleAcheminement": "TEMPLEUVE EN PEVELE", + "nomCommune": "TEMPLEUVE EN PEVELE" }, { - "codePostal": "59870", - "codeCommune": "59596", - "libelleAcheminement": "TILLOY LEZ MARCHIENNES", - "nomCommune": "TILLOY LEZ MARCHIENNES" + "codePostal": "59163", + "codeCommune": "59591", + "libelleAcheminement": "THIVENCELLE", + "nomCommune": "THIVENCELLE" }, { - "codePostal": "59551", - "codeCommune": "59600", - "libelleAcheminement": "TOURMIGNIES", - "nomCommune": "TOURMIGNIES" + "codePostal": "59141", + "codeCommune": "59593", + "libelleAcheminement": "THUN L EVEQUE", + "nomCommune": "THUN L EVEQUE" }, { "codePostal": "59132", @@ -18066,28 +17880,52 @@ "nomCommune": "TRELON" }, { - "codePostal": "59690", - "codeCommune": "59616", - "libelleAcheminement": "VIEUX CONDE", - "nomCommune": "VIEUX CONDE" + "codePostal": "59125", + "codeCommune": "59603", + "libelleAcheminement": "TRITH ST LEGER", + "nomCommune": "TRITH ST LEGER" }, { - "codePostal": "59600", - "codeCommune": "59618", - "libelleAcheminement": "VIEUX RENG", - "nomCommune": "VIEUX RENG" + "codePostal": "59300", + "codeCommune": "59606", + "libelleAcheminement": "VALENCIENNES", + "nomCommune": "VALENCIENNES" }, { - "codePostal": "59600", - "codeCommune": "59627", - "libelleAcheminement": "VILLERS SIRE NICOLE", - "nomCommune": "VILLERS SIRE NICOLE" + "codePostal": "59730", + "codeCommune": "59612", + "libelleAcheminement": "VERTAIN", + "nomCommune": "VERTAIN" }, { - "codePostal": "59470", - "codeCommune": "59628", - "libelleAcheminement": "VOLCKERINCKHOVE", - "nomCommune": "VOLCKERINCKHOVE" + "codePostal": "59271", + "codeCommune": "59614", + "libelleAcheminement": "VIESLY", + "nomCommune": "VIESLY" + }, + { + "codePostal": "59142", + "codeCommune": "59624", + "libelleAcheminement": "VILLERS OUTREAUX", + "nomCommune": "VILLERS OUTREAUX" + }, + { + "codePostal": "59870", + "codeCommune": "59629", + "libelleAcheminement": "VRED", + "nomCommune": "VRED" + }, + { + "codePostal": "59135", + "codeCommune": "59632", + "libelleAcheminement": "WALLERS", + "nomCommune": "WALLERS" + }, + { + "codePostal": "59144", + "codeCommune": "59640", + "libelleAcheminement": "WARGNIES LE PETIT", + "nomCommune": "WARGNIES LE PETIT" }, { "codePostal": "59680", @@ -18095,24 +17933,12 @@ "libelleAcheminement": "WATTIGNIES LA VICTOIRE", "nomCommune": "WATTIGNIES LA VICTOIRE" }, - { - "codePostal": "59119", - "codeCommune": "59654", - "libelleAcheminement": "WAZIERS", - "nomCommune": "WAZIERS" - }, { "codePostal": "59117", "codeCommune": "59656", "libelleAcheminement": "WERVICQ SUD", "nomCommune": "WERVICQ SUD" }, - { - "codePostal": "59134", - "codeCommune": "59658", - "libelleAcheminement": "WICRES", - "nomCommune": "WICRES" - }, { "codePostal": "59212", "codeCommune": "59659", @@ -18120,34 +17946,40 @@ "nomCommune": "WIGNEHIES" }, { - "codePostal": "59143", - "codeCommune": "59664", - "libelleAcheminement": "WULVERDINGHE", - "nomCommune": "WULVERDINGHE" + "codePostal": "59780", + "codeCommune": "59660", + "libelleAcheminement": "WILLEMS", + "nomCommune": "WILLEMS" }, { - "codePostal": "59670", - "codeCommune": "59667", - "libelleAcheminement": "ZERMEZEELE", - "nomCommune": "ZERMEZEELE" + "codePostal": "59740", + "codeCommune": "59661", + "libelleAcheminement": "WILLIES", + "nomCommune": "WILLIES" }, { - "codePostal": "59670", - "codeCommune": "59669", - "libelleAcheminement": "ZUYTPEENE", - "nomCommune": "ZUYTPEENE" + "codePostal": "59123", + "codeCommune": "59668", + "libelleAcheminement": "ZUYDCOOTE", + "nomCommune": "ZUYDCOOTE" }, { - "codePostal": "60220", - "codeCommune": "60001", - "libelleAcheminement": "ABANCOURT", - "nomCommune": "ABANCOURT" + "codePostal": "60430", + "codeCommune": "60002", + "libelleAcheminement": "ABBECOURT", + "nomCommune": "ABBECOURT" }, { - "codePostal": "60600", - "codeCommune": "60007", - "libelleAcheminement": "AGNETZ", - "nomCommune": "AGNETZ" + "codePostal": "60620", + "codeCommune": "60005", + "libelleAcheminement": "ACY EN MULTIEN", + "nomCommune": "ACY EN MULTIEN" + }, + { + "codePostal": "60700", + "codeCommune": "60006", + "libelleAcheminement": "LES AGEUX", + "nomCommune": "LES AGEUX" }, { "codePostal": "60110", @@ -18156,34 +17988,64 @@ "nomCommune": "AMBLAINVILLE" }, { - "codePostal": "60570", - "codeCommune": "60012", - "libelleAcheminement": "ANDEVILLE", - "nomCommune": "ANDEVILLE" + "codePostal": "60940", + "codeCommune": "60013", + "libelleAcheminement": "ANGICOURT", + "nomCommune": "ANGICOURT" }, { - "codePostal": "60162", - "codeCommune": "60019", - "libelleAcheminement": "ANTHEUIL PORTES", - "nomCommune": "ANTHEUIL PORTES" + "codePostal": "60130", + "codeCommune": "60014", + "libelleAcheminement": "ANGIVILLERS", + "nomCommune": "ANGIVILLERS" }, { - "codePostal": "60800", - "codeCommune": "60027", - "libelleAcheminement": "AUGER ST VINCENT", - "nomCommune": "AUGER ST VINCENT" + "codePostal": "60250", + "codeCommune": "60015", + "libelleAcheminement": "ANGY", + "nomCommune": "ANGY" }, { - "codePostal": "60140", - "codeCommune": "60042", - "libelleAcheminement": "BAILLEVAL", - "nomCommune": "BAILLEVAL" + "codePostal": "60250", + "codeCommune": "60016", + "libelleAcheminement": "ANSACQ", + "nomCommune": "ANSACQ" + }, + { + "codePostal": "60400", + "codeCommune": "60021", + "libelleAcheminement": "APPILLY", + "nomCommune": "APPILLY" + }, + { + "codePostal": "60880", + "codeCommune": "60023", + "libelleAcheminement": "ARMANCOURT", + "nomCommune": "ARMANCOURT" + }, + { + "codePostal": "60190", + "codeCommune": "60024", + "libelleAcheminement": "ARSY", + "nomCommune": "ARSY" + }, + { + "codePostal": "60390", + "codeCommune": "60029", + "libelleAcheminement": "AUNEUIL", + "nomCommune": "AUNEUIL" }, { "codePostal": "60300", - "codeCommune": "60047", - "libelleAcheminement": "BARON", - "nomCommune": "BARON" + "codeCommune": "60033", + "libelleAcheminement": "AVILLY ST LEONARD", + "nomCommune": "AVILLY ST LEONARD" + }, + { + "codePostal": "60170", + "codeCommune": "60043", + "libelleAcheminement": "BAILLY", + "nomCommune": "BAILLY" }, { "codePostal": "60113", @@ -18192,16 +18054,10 @@ "nomCommune": "BAUGY" }, { - "codePostal": "60700", - "codeCommune": "60050", - "libelleAcheminement": "BAZICOURT", - "nomCommune": "BAZICOURT" - }, - { - "codePostal": "60120", - "codeCommune": "60058", - "libelleAcheminement": "BEAUVOIR", - "nomCommune": "BEAUVOIR" + "codePostal": "60000", + "codeCommune": "60057", + "libelleAcheminement": "BEAUVAIS", + "nomCommune": "BEAUVAIS" }, { "codePostal": "60400", @@ -18209,12 +18065,6 @@ "libelleAcheminement": "BEHERICOURT", "nomCommune": "BEHERICOURT" }, - { - "codePostal": "60540", - "codeCommune": "60060", - "libelleAcheminement": "BELLE EGLISE", - "nomCommune": "BELLE EGLISE" - }, { "codePostal": "60640", "codeCommune": "60062", @@ -18222,34 +18072,16 @@ "nomCommune": "BERLANCOURT" }, { - "codePostal": "60370", - "codeCommune": "60065", - "libelleAcheminement": "BERTHECOURT", - "nomCommune": "BERTHECOURT" - }, - { - "codePostal": "60620", - "codeCommune": "60069", - "libelleAcheminement": "BETZ", - "nomCommune": "BETZ" - }, - { - "codePostal": "60280", - "codeCommune": "60070", - "libelleAcheminement": "BIENVILLE", - "nomCommune": "BIENVILLE" - }, - { - "codePostal": "60650", - "codeCommune": "60073", - "libelleAcheminement": "BLACOURT", - "nomCommune": "BLACOURT" + "codePostal": "60320", + "codeCommune": "60067", + "libelleAcheminement": "BETHISY ST MARTIN", + "nomCommune": "BETHISY ST MARTIN" }, { - "codePostal": "60460", - "codeCommune": "60074", - "libelleAcheminement": "BLAINCOURT LES PRECY", - "nomCommune": "BLAINCOURT LES PRECY" + "codePostal": "60350", + "codeCommune": "60072", + "libelleAcheminement": "BITRY", + "nomCommune": "BITRY" }, { "codePostal": "60220", @@ -18257,6 +18089,12 @@ "libelleAcheminement": "BLARGIES", "nomCommune": "BLARGIES" }, + { + "codePostal": "60860", + "codeCommune": "60077", + "libelleAcheminement": "BLICOURT", + "nomCommune": "BLICOURT" + }, { "codePostal": "60540", "codeCommune": "60088", @@ -18276,10 +18114,10 @@ "nomCommune": "BOUILLANCY" }, { - "codePostal": "60240", - "codeCommune": "60095", - "libelleAcheminement": "BOURY EN VEXIN", - "nomCommune": "BOURY EN VEXIN" + "codePostal": "60490", + "codeCommune": "60093", + "libelleAcheminement": "BOULOGNE LA GRASSE", + "nomCommune": "BOULOGNE LA GRASSE" }, { "codePostal": "60590", @@ -18287,6 +18125,12 @@ "libelleAcheminement": "BOUTENCOURT", "nomCommune": "BOUTENCOURT" }, + { + "codePostal": "60113", + "codeCommune": "60099", + "libelleAcheminement": "BRAISNES SUR ARONDE", + "nomCommune": "BRAISNES SUR ARONDE" + }, { "codePostal": "60810", "codeCommune": "60100", @@ -18294,16 +18138,10 @@ "nomCommune": "BRASSEUSE" }, { - "codePostal": "60120", - "codeCommune": "60104", - "libelleAcheminement": "BRETEUIL", - "nomCommune": "BRETEUIL" - }, - { - "codePostal": "60120", - "codeCommune": "60111", - "libelleAcheminement": "BROYES", - "nomCommune": "BROYES" + "codePostal": "60210", + "codeCommune": "60109", + "libelleAcheminement": "BROMBOS", + "nomCommune": "BROMBOS" }, { "codePostal": "60130", @@ -18312,10 +18150,10 @@ "nomCommune": "BRUNVILLERS LA MOTTE" }, { - "codePostal": "60310", - "codeCommune": "60126", - "libelleAcheminement": "CANNECTANCOURT", - "nomCommune": "CANNECTANCOURT" + "codePostal": "60250", + "codeCommune": "60116", + "libelleAcheminement": "BURY", + "nomCommune": "BURY" }, { "codePostal": "60220", @@ -18323,41 +18161,71 @@ "libelleAcheminement": "CANNY SUR THERAIN", "nomCommune": "CANNY SUR THERAIN" }, + { + "codePostal": "60190", + "codeCommune": "60137", + "libelleAcheminement": "CERNOY", + "nomCommune": "CERNOY" + }, + { + "codePostal": "60300", + "codeCommune": "60138", + "libelleAcheminement": "CHAMANT", + "nomCommune": "CHAMANT" + }, { "codePostal": "60360", - "codeCommune": "60131", - "libelleAcheminement": "CATHEUX", - "nomCommune": "CATHEUX" + "codeCommune": "60153", + "libelleAcheminement": "CHOQUEUSE LES BENARDS", + "nomCommune": "CHOQUEUSE LES BENARDS" }, { - "codePostal": "60210", - "codeCommune": "60136", - "libelleAcheminement": "CEMPUIS", - "nomCommune": "CEMPUIS" + "codePostal": "60660", + "codeCommune": "60155", + "libelleAcheminement": "CIRES LES MELLO", + "nomCommune": "CIRES LES MELLO" }, { - "codePostal": "60190", - "codeCommune": "60137", - "libelleAcheminement": "CERNOY", - "nomCommune": "CERNOY" + "codePostal": "60200", + "codeCommune": "60159", + "libelleAcheminement": "COMPIEGNE", + "nomCommune": "COMPIEGNE" }, { - "codePostal": "60240", - "codeCommune": "60140", - "libelleAcheminement": "CHAMBORS", - "nomCommune": "CHAMBORS" + "codePostal": "60490", + "codeCommune": "60160", + "libelleAcheminement": "CONCHY LES POTS", + "nomCommune": "CONCHY LES POTS" + }, + { + "codePostal": "60850", + "codeCommune": "60164", + "libelleAcheminement": "LE COUDRAY ST GERMER", + "nomCommune": "LE COUDRAY ST GERMER" + }, + { + "codePostal": "60430", + "codeCommune": "60165", + "libelleAcheminement": "LE COUDRAY SUR THELLE", + "nomCommune": "LE COUDRAY SUR THELLE" }, { "codePostal": "60240", - "codeCommune": "60143", - "libelleAcheminement": "CHAUMONT EN VEXIN", - "nomCommune": "CHAUMONT EN VEXIN" + "codeCommune": "60169", + "libelleAcheminement": "COURCELLES LES GISORS", + "nomCommune": "COURCELLES LES GISORS" }, { - "codePostal": "60600", - "codeCommune": "60157", - "libelleAcheminement": "CLERMONT", - "nomCommune": "CLERMONT" + "codePostal": "60300", + "codeCommune": "60170", + "libelleAcheminement": "COURTEUIL", + "nomCommune": "COURTEUIL" + }, + { + "codePostal": "60310", + "codeCommune": "60174", + "libelleAcheminement": "CRAPEAUMESNIL", + "nomCommune": "CRAPEAUMESNIL" }, { "codePostal": "60100", @@ -18366,46 +18234,40 @@ "nomCommune": "CREIL" }, { - "codePostal": "60120", - "codeCommune": "60182", - "libelleAcheminement": "LE CROCQ", - "nomCommune": "LE CROCQ" - }, - { - "codePostal": "60350", - "codeCommune": "60184", - "libelleAcheminement": "CROUTOY", - "nomCommune": "CROUTOY" + "codePostal": "60190", + "codeCommune": "60177", + "libelleAcheminement": "CRESSONSACQ", + "nomCommune": "CRESSONSACQ" }, { - "codePostal": "60130", - "codeCommune": "60186", - "libelleAcheminement": "CUIGNIERES", - "nomCommune": "CUIGNIERES" + "codePostal": "60112", + "codeCommune": "60180", + "libelleAcheminement": "CRILLON", + "nomCommune": "CRILLON" }, { - "codePostal": "60310", - "codeCommune": "60192", - "libelleAcheminement": "CUY", - "nomCommune": "CUY" + "codePostal": "60400", + "codeCommune": "60181", + "libelleAcheminement": "CRISOLLES", + "nomCommune": "CRISOLLES" }, { - "codePostal": "60240", - "codeCommune": "60195", - "libelleAcheminement": "DELINCOURT", - "nomCommune": "DELINCOURT" + "codePostal": "60490", + "codeCommune": "60191", + "libelleAcheminement": "CUVILLY", + "nomCommune": "CUVILLY" }, { - "codePostal": "60420", - "codeCommune": "60201", - "libelleAcheminement": "DOMPIERRE", - "nomCommune": "DOMPIERRE" + "codePostal": "60790", + "codeCommune": "60196", + "libelleAcheminement": "LA DRENNE", + "nomCommune": "LA DRENNE" }, { - "codePostal": "60310", - "codeCommune": "60204", - "libelleAcheminement": "ECUVILLY", - "nomCommune": "ECUVILLY" + "codePostal": "60360", + "codeCommune": "60199", + "libelleAcheminement": "DOMELIERS", + "nomCommune": "DOMELIERS" }, { "codePostal": "60240", @@ -18414,16 +18276,16 @@ "nomCommune": "LA CORNE EN VEXIN" }, { - "codePostal": "60240", - "codeCommune": "60209", - "libelleAcheminement": "LA CORNE EN VEXIN", - "nomCommune": "LA CORNE EN VEXIN" + "codePostal": "60590", + "codeCommune": "60211", + "libelleAcheminement": "ERAGNY SUR EPTE", + "nomCommune": "ERAGNY SUR EPTE" }, { - "codePostal": "60380", - "codeCommune": "60217", - "libelleAcheminement": "ESCAMES", - "nomCommune": "ESCAMES" + "codePostal": "60950", + "codeCommune": "60213", + "libelleAcheminement": "ERMENONVILLE", + "nomCommune": "ERMENONVILLE" }, { "codePostal": "60650", @@ -18438,214 +18300,280 @@ "nomCommune": "ESSUILES" }, { - "codePostal": "60640", - "codeCommune": "60236", - "libelleAcheminement": "FLAVY LE MELDEUX", - "nomCommune": "FLAVY LE MELDEUX" + "codePostal": "60190", + "codeCommune": "60223", + "libelleAcheminement": "ESTREES ST DENIS", + "nomCommune": "ESTREES ST DENIS" }, { - "codePostal": "60700", - "codeCommune": "60238", - "libelleAcheminement": "FLEURINES", - "nomCommune": "FLEURINES" + "codePostal": "60620", + "codeCommune": "60224", + "libelleAcheminement": "ETAVIGNY", + "nomCommune": "ETAVIGNY" }, { "codePostal": "60240", - "codeCommune": "60239", - "libelleAcheminement": "FLEURY", - "nomCommune": "FLEURY" - }, - { - "codePostal": "60420", - "codeCommune": "60262", - "libelleAcheminement": "LE FRESTOY VAUX", - "nomCommune": "LE FRESTOY VAUX" - }, - { - "codePostal": "60120", - "codeCommune": "60268", - "libelleAcheminement": "GANNES", - "nomCommune": "GANNES" + "codeCommune": "60228", + "libelleAcheminement": "FAY LES ETANGS", + "nomCommune": "FAY LES ETANGS" }, { - "codePostal": "60150", - "codeCommune": "60273", - "libelleAcheminement": "GIRAUMONT", - "nomCommune": "GIRAUMONT" + "codePostal": "60800", + "codeCommune": "60231", + "libelleAcheminement": "FEIGNEUX", + "nomCommune": "FEIGNEUX" }, { - "codePostal": "60190", - "codeCommune": "60281", - "libelleAcheminement": "GOURNAY SUR ARONDE", - "nomCommune": "GOURNAY SUR ARONDE" + "codePostal": "60600", + "codeCommune": "60234", + "libelleAcheminement": "FITZ JAMES", + "nomCommune": "FITZ JAMES" }, { - "codePostal": "60190", - "codeCommune": "60285", - "libelleAcheminement": "GRANDVILLERS AUX BOIS", - "nomCommune": "GRANDVILLERS AUX BOIS" + "codePostal": "60360", + "codeCommune": "60240", + "libelleAcheminement": "FONTAINE BONNELEAU", + "nomCommune": "FONTAINE BONNELEAU" }, { "codePostal": "60480", - "codeCommune": "60290", - "libelleAcheminement": "GUIGNECOURT", - "nomCommune": "GUIGNECOURT" + "codeCommune": "60243", + "libelleAcheminement": "FONTAINE ST LUCIEN", + "nomCommune": "FONTAINE ST LUCIEN" }, { - "codePostal": "60490", - "codeCommune": "60294", - "libelleAcheminement": "HAINVILLERS", - "nomCommune": "HAINVILLERS" + "codePostal": "60380", + "codeCommune": "60244", + "libelleAcheminement": "FONTENAY TORCY", + "nomCommune": "FONTENAY TORCY" }, { - "codePostal": "60210", - "codeCommune": "60295", - "libelleAcheminement": "HALLOY", - "nomCommune": "HALLOY" + "codePostal": "60000", + "codeCommune": "60250", + "libelleAcheminement": "FOUQUENIES", + "nomCommune": "FOUQUENIES" }, { - "codePostal": "60120", - "codeCommune": "60299", - "libelleAcheminement": "HARDIVILLERS", - "nomCommune": "HARDIVILLERS" + "codePostal": "60640", + "codeCommune": "60255", + "libelleAcheminement": "FRENICHES", + "nomCommune": "FRENICHES" }, { - "codePostal": "60112", - "codeCommune": "60301", - "libelleAcheminement": "HAUCOURT", - "nomCommune": "HAUCOURT" + "codePostal": "60129", + "codeCommune": "60272", + "libelleAcheminement": "GILOCOURT", + "nomCommune": "GILOCOURT" }, { - "codePostal": "60250", - "codeCommune": "60307", - "libelleAcheminement": "HEILLES", - "nomCommune": "HEILLES" + "codePostal": "60150", + "codeCommune": "60273", + "libelleAcheminement": "GIRAUMONT", + "nomCommune": "GIRAUMONT" }, { - "codePostal": "60370", - "codeCommune": "60313", - "libelleAcheminement": "HERMES", - "nomCommune": "HERMES" + "codePostal": "60420", + "codeCommune": "60276", + "libelleAcheminement": "GODENVILLERS", + "nomCommune": "GODENVILLERS" }, { - "codePostal": "60150", - "codeCommune": "60323", - "libelleAcheminement": "JANVILLE", - "nomCommune": "JANVILLE" + "codePostal": "60680", + "codeCommune": "60284", + "libelleAcheminement": "GRANDFRESNOY", + "nomCommune": "GRANDFRESNOY" }, { - "codePostal": "60570", - "codeCommune": "60330", - "libelleAcheminement": "LABOISSIERE EN THELLE", - "nomCommune": "LABOISSIERE EN THELLE" + "codePostal": "60640", + "codeCommune": "60291", + "libelleAcheminement": "GUISCARD", + "nomCommune": "GUISCARD" }, { - "codePostal": "60140", - "codeCommune": "60332", - "libelleAcheminement": "LABRUYERE", - "nomCommune": "LABRUYERE" + "codePostal": "60310", + "codeCommune": "60292", + "libelleAcheminement": "GURY", + "nomCommune": "GURY" }, { - "codePostal": "60650", - "codeCommune": "60333", - "libelleAcheminement": "LACHAPELLE AUX POTS", - "nomCommune": "LACHAPELLE AUX POTS" + "codePostal": "60240", + "codeCommune": "60293", + "libelleAcheminement": "HADANCOURT LE HAUT CLOCHER", + "nomCommune": "HADANCOURT LE HAUT CLOCHER" }, { - "codePostal": "60510", - "codeCommune": "60339", - "libelleAcheminement": "LAFRAYE", - "nomCommune": "LAFRAYE" + "codePostal": "60650", + "codeCommune": "60296", + "libelleAcheminement": "HANNACHES", + "nomCommune": "HANNACHES" }, { - "codePostal": "60310", - "codeCommune": "60350", - "libelleAcheminement": "LASSIGNY", - "nomCommune": "LASSIGNY" + "codePostal": "60690", + "codeCommune": "60304", + "libelleAcheminement": "HAUTE EPINE", + "nomCommune": "HAUTE EPINE" }, { - "codePostal": "60240", - "codeCommune": "60356", - "libelleAcheminement": "LAVILLETERTRE", - "nomCommune": "LAVILLETERTRE" + "codePostal": "60380", + "codeCommune": "60306", + "libelleAcheminement": "HECOURT", + "nomCommune": "HECOURT" }, { "codePostal": "60380", - "codeCommune": "60371", - "libelleAcheminement": "LOUEUSE", - "nomCommune": "LOUEUSE" + "codeCommune": "60312", + "libelleAcheminement": "HERICOURT SUR THERAIN", + "nomCommune": "HERICOURT SUR THERAIN" }, { - "codePostal": "60360", - "codeCommune": "60372", - "libelleAcheminement": "LUCHY", - "nomCommune": "LUCHY" + "codePostal": "60141", + "codeCommune": "60320", + "libelleAcheminement": "IVORS", + "nomCommune": "IVORS" }, { - "codePostal": "60150", - "codeCommune": "60373", - "libelleAcheminement": "MACHEMONT", - "nomCommune": "MACHEMONT" + "codePostal": "60310", + "codeCommune": "60329", + "libelleAcheminement": "LABERLIERE", + "nomCommune": "LABERLIERE" }, { - "codePostal": "60420", - "codeCommune": "60374", - "libelleAcheminement": "MAIGNELAY MONTIGNY", - "nomCommune": "MAIGNELAY MONTIGNY" + "codePostal": "60730", + "codeCommune": "60334", + "libelleAcheminement": "LACHAPELLE ST PIERRE", + "nomCommune": "LACHAPELLE ST PIERRE" }, { - "codePostal": "60112", - "codeCommune": "60388", - "libelleAcheminement": "MARTINCOURT", - "nomCommune": "MARTINCOURT" + "codePostal": "60610", + "codeCommune": "60338", + "libelleAcheminement": "LACROIX ST OUEN", + "nomCommune": "LACROIX ST OUEN" }, { - "codePostal": "60640", - "codeCommune": "60389", - "libelleAcheminement": "MAUCOURT", - "nomCommune": "MAUCOURT" + "codePostal": "60290", + "codeCommune": "60342", + "libelleAcheminement": "LAIGNEVILLE", + "nomCommune": "LAIGNEVILLE" }, { - "codePostal": "60420", - "codeCommune": "60396", - "libelleAcheminement": "MERY LA BATAILLE", - "nomCommune": "MERY LA BATAILLE" + "codePostal": "60120", + "codeCommune": "60353", + "libelleAcheminement": "LAVACQUERIE", + "nomCommune": "LAVACQUERIE" }, { - "codePostal": "60530", - "codeCommune": "60398", - "libelleAcheminement": "LE MESNIL EN THELLE", - "nomCommune": "LE MESNIL EN THELLE" + "codePostal": "60210", + "codeCommune": "60354", + "libelleAcheminement": "LAVERRIERE", + "nomCommune": "LAVERRIERE" }, { - "codePostal": "60120", - "codeCommune": "60399", - "libelleAcheminement": "LE MESNIL ST FIRMIN", - "nomCommune": "LE MESNIL ST FIRMIN" + "codePostal": "60510", + "codeCommune": "60355", + "libelleAcheminement": "LAVERSINES", + "nomCommune": "LAVERSINES" }, { - "codePostal": "60400", - "codeCommune": "60410", - "libelleAcheminement": "MONDESCOURT", - "nomCommune": "MONDESCOURT" + "codePostal": "60240", + "codeCommune": "60356", + "libelleAcheminement": "LAVILLETERTRE", + "nomCommune": "LAVILLETERTRE" + }, + { + "codePostal": "60800", + "codeCommune": "60358", + "libelleAcheminement": "LEVIGNEN", + "nomCommune": "LEVIGNEN" }, { "codePostal": "60240", - "codeCommune": "60412", - "libelleAcheminement": "MONTAGNY EN VEXIN", - "nomCommune": "MONTAGNY EN VEXIN" + "codeCommune": "60361", + "libelleAcheminement": "LIANCOURT ST PIERRE", + "nomCommune": "LIANCOURT ST PIERRE" }, { - "codePostal": "60190", - "codeCommune": "60424", - "libelleAcheminement": "MONTMARTIN", - "nomCommune": "MONTMARTIN" + "codePostal": "60240", + "codeCommune": "60367", + "libelleAcheminement": "LOCONVILLE", + "nomCommune": "LOCONVILLE" }, { - "codePostal": "60127", - "codeCommune": "60430", - "libelleAcheminement": "MORIENVAL", - "nomCommune": "MORIENVAL" + "codePostal": "60110", + "codeCommune": "60370", + "libelleAcheminement": "LORMAISON", + "nomCommune": "LORMAISON" + }, + { + "codePostal": "60360", + "codeCommune": "60372", + "libelleAcheminement": "LUCHY", + "nomCommune": "LUCHY" + }, + { + "codePostal": "60490", + "codeCommune": "60379", + "libelleAcheminement": "MAREUIL LA MOTTE", + "nomCommune": "MAREUIL LA MOTTE" + }, + { + "codePostal": "60890", + "codeCommune": "60380", + "libelleAcheminement": "MAREUIL SUR OURCQ", + "nomCommune": "MAREUIL SUR OURCQ" + }, + { + "codePostal": "60490", + "codeCommune": "60383", + "libelleAcheminement": "MARGNY SUR MATZ", + "nomCommune": "MARGNY SUR MATZ" + }, + { + "codePostal": "60112", + "codeCommune": "60388", + "libelleAcheminement": "MARTINCOURT", + "nomCommune": "MARTINCOURT" + }, + { + "codePostal": "60150", + "codeCommune": "60392", + "libelleAcheminement": "MELICOCQ", + "nomCommune": "MELICOCQ" + }, + { + "codePostal": "60112", + "codeCommune": "60403", + "libelleAcheminement": "MILLY SUR THERAIN", + "nomCommune": "MILLY SUR THERAIN" + }, + { + "codePostal": "60220", + "codeCommune": "60405", + "libelleAcheminement": "MOLIENS", + "nomCommune": "MOLIENS" + }, + { + "codePostal": "60240", + "codeCommune": "60420", + "libelleAcheminement": "MONTJAVOULT", + "nomCommune": "MONTJAVOULT" + }, + { + "codePostal": "60650", + "codeCommune": "60428", + "libelleAcheminement": "LE MONT ST ADRIEN", + "nomCommune": "LE MONT ST ADRIEN" + }, + { + "codePostal": "60120", + "codeCommune": "60436", + "libelleAcheminement": "MORY MONTCRUX", + "nomCommune": "MORY MONTCRUX" + }, + { + "codePostal": "60190", + "codeCommune": "60440", + "libelleAcheminement": "MOYENNEVILLE", + "nomCommune": "MOYENNEVILLE" }, { "codePostal": "60640", @@ -18654,16 +18582,22 @@ "nomCommune": "MUIRANCOURT" }, { - "codePostal": "60320", - "codeCommune": "60447", - "libelleAcheminement": "NERY", - "nomCommune": "NERY" + "codePostal": "60890", + "codeCommune": "60448", + "libelleAcheminement": "NEUFCHELLES", + "nomCommune": "NEUFCHELLES" }, { - "codePostal": "60510", - "codeCommune": "60454", - "libelleAcheminement": "LA NEUVILLE EN HEZ", - "nomCommune": "LA NEUVILLE EN HEZ" + "codePostal": "60290", + "codeCommune": "60451", + "libelleAcheminement": "NEUILLY SOUS CLERMONT", + "nomCommune": "NEUILLY SOUS CLERMONT" + }, + { + "codePostal": "60190", + "codeCommune": "60456", + "libelleAcheminement": "LA NEUVILLE ROY", + "nomCommune": "LA NEUVILLE ROY" }, { "codePostal": "60480", @@ -18689,24 +18623,30 @@ "libelleAcheminement": "LA NEUVILLE VAULT", "nomCommune": "LA NEUVILLE VAULT" }, - { - "codePostal": "60840", - "codeCommune": "60464", - "libelleAcheminement": "NOINTEL", - "nomCommune": "NOINTEL" - }, - { - "codePostal": "60480", - "codeCommune": "60465", - "libelleAcheminement": "NOIREMONT", - "nomCommune": "NOIREMONT" - }, { "codePostal": "60130", "codeCommune": "60466", "libelleAcheminement": "NOROY", "nomCommune": "NOROY" }, + { + "codePostal": "60130", + "codeCommune": "60468", + "libelleAcheminement": "NOURARD LE FRANC", + "nomCommune": "NOURARD LE FRANC" + }, + { + "codePostal": "60400", + "codeCommune": "60471", + "libelleAcheminement": "NOYON", + "nomCommune": "NOYON" + }, + { + "codePostal": "60220", + "codeCommune": "60476", + "libelleAcheminement": "OMECOURT", + "nomCommune": "OMECOURT" + }, { "codePostal": "60650", "codeCommune": "60477", @@ -18714,16 +18654,10 @@ "nomCommune": "ONS EN BRAY" }, { - "codePostal": "60620", - "codeCommune": "60478", - "libelleAcheminement": "ORMOY LE DAVIEN", - "nomCommune": "ORMOY LE DAVIEN" - }, - { - "codePostal": "60480", - "codeCommune": "60485", - "libelleAcheminement": "OURSEL MAISON", - "nomCommune": "OURSEL MAISON" + "codePostal": "60560", + "codeCommune": "60482", + "libelleAcheminement": "ORRY LA VILLE", + "nomCommune": "ORRY LA VILLE" }, { "codePostal": "60240", @@ -18738,118 +18672,106 @@ "nomCommune": "PEROY LES GOMBRIES" }, { - "codePostal": "60112", - "codeCommune": "60490", - "libelleAcheminement": "PIERREFITTE EN BEAUVAISIS", - "nomCommune": "PIERREFITTE EN BEAUVAISIS" + "codePostal": "60350", + "codeCommune": "60491", + "libelleAcheminement": "PIERREFONDS", + "nomCommune": "PIERREFONDS" }, { - "codePostal": "60120", - "codeCommune": "60496", - "libelleAcheminement": "PLAINVILLE", - "nomCommune": "PLAINVILLE" + "codePostal": "60128", + "codeCommune": "60494", + "libelleAcheminement": "PLAILLY", + "nomCommune": "PLAILLY" }, { "codePostal": "60130", - "codeCommune": "60498", - "libelleAcheminement": "LE PLESSIER SUR ST JUST", - "nomCommune": "LE PLESSIER SUR ST JUST" - }, - { - "codePostal": "60150", - "codeCommune": "60501", - "libelleAcheminement": "LE PLESSIS BRION", - "nomCommune": "LE PLESSIS BRION" + "codeCommune": "60497", + "libelleAcheminement": "LE PLESSIER SUR BULLES", + "nomCommune": "LE PLESSIER SUR BULLES" }, { - "codePostal": "60390", - "codeCommune": "60510", - "libelleAcheminement": "PORCHEUX", - "nomCommune": "PORCHEUX" + "codePostal": "60520", + "codeCommune": "60505", + "libelleAcheminement": "PONTARME", + "nomCommune": "PONTARME" }, { - "codePostal": "60540", - "codeCommune": "60517", - "libelleAcheminement": "PUISEUX LE HAUBERGER", - "nomCommune": "PUISEUX LE HAUBERGER" + "codePostal": "60360", + "codeCommune": "60514", + "libelleAcheminement": "PREVILLERS", + "nomCommune": "PREVILLERS" }, { - "codePostal": "60480", - "codeCommune": "60520", - "libelleAcheminement": "LE QUESNEL AUBRY", - "nomCommune": "LE QUESNEL AUBRY" + "codePostal": "60190", + "codeCommune": "60515", + "libelleAcheminement": "PRONLEROY", + "nomCommune": "PRONLEROY" }, { - "codePostal": "60810", - "codeCommune": "60525", - "libelleAcheminement": "RARAY", - "nomCommune": "RARAY" + "codePostal": "60240", + "codeCommune": "60528", + "libelleAcheminement": "REILLY", + "nomCommune": "REILLY" }, { - "codePostal": "60153", - "codeCommune": "60534", - "libelleAcheminement": "RETHONDES", - "nomCommune": "RETHONDES" + "codePostal": "60600", + "codeCommune": "60529", + "libelleAcheminement": "REMECOURT", + "nomCommune": "REMECOURT" }, { - "codePostal": "60490", - "codeCommune": "60538", - "libelleAcheminement": "RICQUEBOURG", - "nomCommune": "RICQUEBOURG" + "codePostal": "60126", + "codeCommune": "60540", + "libelleAcheminement": "RIVECOURT", + "nomCommune": "RIVECOURT" }, { - "codePostal": "60870", - "codeCommune": "60539", - "libelleAcheminement": "RIEUX", - "nomCommune": "RIEUX" + "codePostal": "60220", + "codeCommune": "60545", + "libelleAcheminement": "ROMESCAMPS", + "nomCommune": "ROMESCAMPS" }, { - "codePostal": "60360", - "codeCommune": "60549", - "libelleAcheminement": "ROTANGY", - "nomCommune": "ROTANGY" + "codePostal": "60120", + "codeCommune": "60555", + "libelleAcheminement": "ROUVROY LES MERLES", + "nomCommune": "ROUVROY LES MERLES" }, { - "codePostal": "60620", - "codeCommune": "60554", - "libelleAcheminement": "ROUVRES EN MULTIEN", - "nomCommune": "ROUVRES EN MULTIEN" + "codePostal": "60480", + "codeCommune": "60565", + "libelleAcheminement": "ST ANDRE FARIVILLERS", + "nomCommune": "ST ANDRE FARIVILLERS" }, { - "codePostal": "60190", - "codeCommune": "60563", - "libelleAcheminement": "SACY LE PETIT", - "nomCommune": "SACY LE PETIT" + "codePostal": "60370", + "codeCommune": "60574", + "libelleAcheminement": "ST FELIX", + "nomCommune": "ST FELIX" }, { "codePostal": "60350", - "codeCommune": "60572", - "libelleAcheminement": "ST ETIENNE ROILAYE", - "nomCommune": "ST ETIENNE ROILAYE" - }, - { - "codePostal": "60480", - "codeCommune": "60573", - "libelleAcheminement": "STE EUSOYE", - "nomCommune": "STE EUSOYE" + "codeCommune": "60579", + "libelleAcheminement": "ST JEAN AUX BOIS", + "nomCommune": "ST JEAN AUX BOIS" }, { - "codePostal": "60650", - "codeCommune": "60576", - "libelleAcheminement": "ST GERMAIN LA POTERIE", - "nomCommune": "ST GERMAIN LA POTERIE" + "codePostal": "60340", + "codeCommune": "60584", + "libelleAcheminement": "ST LEU D ESSERENT", + "nomCommune": "ST LEU D ESSERENT" }, { - "codePostal": "60850", - "codeCommune": "60577", - "libelleAcheminement": "ST GERMER DE FLY", - "nomCommune": "ST GERMER DE FLY" + "codePostal": "60000", + "codeCommune": "60586", + "libelleAcheminement": "ST MARTIN LE NOEUD", + "nomCommune": "ST MARTIN LE NOEUD" }, { - "codePostal": "60350", - "codeCommune": "60579", - "libelleAcheminement": "ST JEAN AUX BOIS", - "nomCommune": "ST JEAN AUX BOIS" + "codePostal": "60210", + "codeCommune": "60588", + "libelleAcheminement": "ST MAUR", + "nomCommune": "ST MAUR" }, { "codePostal": "60740", @@ -18858,16 +18780,10 @@ "nomCommune": "ST MAXIMIN" }, { - "codePostal": "60660", - "codeCommune": "60601", - "libelleAcheminement": "ST VAAST LES MELLO", - "nomCommune": "ST VAAST LES MELLO" - }, - { - "codePostal": "60400", - "codeCommune": "60603", - "libelleAcheminement": "SALENCY", - "nomCommune": "SALENCY" + "codePostal": "60130", + "codeCommune": "60595", + "libelleAcheminement": "ST REMY EN L EAU", + "nomCommune": "ST REMY EN L EAU" }, { "codePostal": "60210", @@ -18876,22 +18792,16 @@ "nomCommune": "SARCUS" }, { - "codePostal": "60650", - "codeCommune": "60609", - "libelleAcheminement": "SAVIGNIES", - "nomCommune": "SAVIGNIES" - }, - { - "codePostal": "60310", - "codeCommune": "60621", - "libelleAcheminement": "SOLENTE", - "nomCommune": "SOLENTE" + "codePostal": "60360", + "codeCommune": "60608", + "libelleAcheminement": "LE SAULCHOY", + "nomCommune": "LE SAULCHOY" }, { - "codePostal": "60400", - "codeCommune": "60625", - "libelleAcheminement": "SUZOY", - "nomCommune": "SUZOY" + "codePostal": "60430", + "codeCommune": "60620", + "libelleAcheminement": "SILLY TILLARD", + "nomCommune": "SILLY TILLARD" }, { "codePostal": "60240", @@ -18900,58 +18810,52 @@ "nomCommune": "THIBIVILLERS" }, { - "codePostal": "60210", - "codeCommune": "60633", - "libelleAcheminement": "THIEULOY ST ANTOINE", - "nomCommune": "THIEULOY ST ANTOINE" - }, - { - "codePostal": "60240", - "codeCommune": "60640", - "libelleAcheminement": "TOURLY", - "nomCommune": "TOURLY" + "codePostal": "60170", + "codeCommune": "60641", + "libelleAcheminement": "TRACY LE MONT", + "nomCommune": "TRACY LE MONT" }, { - "codePostal": "60420", - "codeCommune": "60643", - "libelleAcheminement": "TRICOT", - "nomCommune": "TRICOT" + "codePostal": "60800", + "codeCommune": "60650", + "libelleAcheminement": "TRUMILLY", + "nomCommune": "TRUMILLY" }, { - "codePostal": "60130", - "codeCommune": "60653", - "libelleAcheminement": "VALESCOURT", - "nomCommune": "VALESCOURT" + "codePostal": "60790", + "codeCommune": "60652", + "libelleAcheminement": "VALDAMPIERRE", + "nomCommune": "VALDAMPIERRE" }, { - "codePostal": "60400", - "codeCommune": "60655", - "libelleAcheminement": "VARESNES", - "nomCommune": "VARESNES" + "codePostal": "60490", + "codeCommune": "60654", + "libelleAcheminement": "VANDELICOURT", + "nomCommune": "VANDELICOURT" }, { - "codePostal": "60117", - "codeCommune": "60658", - "libelleAcheminement": "VAUCIENNES", - "nomCommune": "VAUCIENNES" + "codePostal": "60890", + "codeCommune": "60656", + "libelleAcheminement": "VARINFROY", + "nomCommune": "VARINFROY" }, { - "codePostal": "60510", - "codeCommune": "60663", - "libelleAcheminement": "VELENNES", - "nomCommune": "VELENNES" + "codePostal": "60240", + "codeCommune": "60659", + "libelleAcheminement": "VAUDANCOURT", + "nomCommune": "VAUDANCOURT" }, { - "codePostal": "60280", - "codeCommune": "60665", - "libelleAcheminement": "VENETTE", - "nomCommune": "VENETTE" + "codePostal": "60112", + "codeCommune": "60668", + "libelleAcheminement": "VERDEREL LES SAUQUEUSE", + "nomCommune": "VERDEREL LES SAUQUEUSE" }, { - "codePostal": "60890", - "codeCommune": "60679", - "libelleAcheminement": "LA VILLENEUVE SOUS THURY", - "nomCommune": "LA VILLENEUVE SOUS THURY" + "codePostal": "60112", + "codeCommune": "60668", + "libelleAcheminement": "VERDEREL LES SAUQUEUSE", + "nomCommune": "VERDEREL LES SAUQUEUSE" }, { "codePostal": "60410", @@ -18960,76 +18864,106 @@ "nomCommune": "VILLENEUVE SUR VERBERIE" }, { - "codePostal": "60620", - "codeCommune": "60683", - "libelleAcheminement": "VILLERS ST GENEST", - "nomCommune": "VILLERS ST GENEST" + "codePostal": "60380", + "codeCommune": "60691", + "libelleAcheminement": "VILLERS VERMONT", + "nomCommune": "VILLERS VERMONT" }, { - "codePostal": "60112", - "codeCommune": "60697", - "libelleAcheminement": "VROCOURT", - "nomCommune": "VROCOURT" + "codePostal": "60500", + "codeCommune": "60695", + "libelleAcheminement": "VINEUIL ST FIRMIN", + "nomCommune": "VINEUIL ST FIRMIN" }, { - "codePostal": "60000", - "codeCommune": "60703", - "libelleAcheminement": "AUX MARAIS", - "nomCommune": "AUX MARAIS" + "codePostal": "60430", + "codeCommune": "60700", + "libelleAcheminement": "WARLUIS", + "nomCommune": "WARLUIS" }, { - "codePostal": "61200", - "codeCommune": "61006", - "libelleAcheminement": "ARGENTAN", - "nomCommune": "ARGENTAN" + "codePostal": "61000", + "codeCommune": "61001", + "libelleAcheminement": "ALENCON", + "nomCommune": "ALENCON" }, { - "codePostal": "61270", - "codeCommune": "61008", - "libelleAcheminement": "AUBE", - "nomCommune": "AUBE" + "codePostal": "61130", + "codeCommune": "61005", + "libelleAcheminement": "APPENAI SOUS BELLEME", + "nomCommune": "APPENAI SOUS BELLEME" }, { - "codePostal": "61200", - "codeCommune": "61014", - "libelleAcheminement": "AUNOU LE FAUCON", - "nomCommune": "AUNOU LE FAUCON" + "codePostal": "61100", + "codeCommune": "61007", + "libelleAcheminement": "ATHIS VAL DE ROUVRE", + "nomCommune": "ATHIS VAL DE ROUVRE" + }, + { + "codePostal": "61430", + "codeCommune": "61007", + "libelleAcheminement": "ATHIS VAL DE ROUVRE", + "nomCommune": "ATHIS VAL DE ROUVRE" }, { "codePostal": "61500", - "codeCommune": "61036", - "libelleAcheminement": "BELFONDS", - "nomCommune": "BELFONDS" + "codeCommune": "61015", + "libelleAcheminement": "AUNOU SUR ORNE", + "nomCommune": "AUNOU SUR ORNE" }, { - "codePostal": "61360", - "codeCommune": "61037", - "libelleAcheminement": "BELLAVILLIERS", - "nomCommune": "BELLAVILLIERS" + "codePostal": "61190", + "codeCommune": "61034", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "61130", - "codeCommune": "61041", - "libelleAcheminement": "BELLOU LE TRICHARD", - "nomCommune": "BELLOU LE TRICHARD" + "codePostal": "61220", + "codeCommune": "61040", + "libelleAcheminement": "BELLOU EN HOULME", + "nomCommune": "BELLOU EN HOULME" }, { - "codePostal": "61170", - "codeCommune": "61067", - "libelleAcheminement": "BURES", - "nomCommune": "BURES" + "codePostal": "61500", + "codeCommune": "61056", + "libelleAcheminement": "LE BOUILLON", + "nomCommune": "LE BOUILLON" }, { - "codePostal": "61100", - "codeCommune": "61070", - "libelleAcheminement": "CALIGNY", - "nomCommune": "CALIGNY" + "codePostal": "61500", + "codeCommune": "61068", + "libelleAcheminement": "BURSARD", + "nomCommune": "BURSARD" }, { - "codePostal": "61260", - "codeCommune": "61079", - "libelleAcheminement": "CETON", - "nomCommune": "CETON" + "codePostal": "61500", + "codeCommune": "61076", + "libelleAcheminement": "LE CERCUEIL", + "nomCommune": "LE CERCUEIL" + }, + { + "codePostal": "61500", + "codeCommune": "61081", + "libelleAcheminement": "CHAILLOUE", + "nomCommune": "CHAILLOUE" + }, + { + "codePostal": "61320", + "codeCommune": "61085", + "libelleAcheminement": "LE CHAMP DE LA PIERRE", + "nomCommune": "LE CHAMP DE LA PIERRE" + }, + { + "codePostal": "61300", + "codeCommune": "61092", + "libelleAcheminement": "CHANDAI", + "nomCommune": "CHANDAI" + }, + { + "codePostal": "61140", + "codeCommune": "61096", + "libelleAcheminement": "RIVES D ANDAINE", + "nomCommune": "RIVES D ANDAINE" }, { "codePostal": "61500", @@ -19037,12 +18971,6 @@ "libelleAcheminement": "LA CHAPELLE PRES SEES", "nomCommune": "LA CHAPELLE PRES SEES" }, - { - "codePostal": "61570", - "codeCommune": "61101", - "libelleAcheminement": "LE CHATEAU D ALMENECHES", - "nomCommune": "LE CHATEAU D ALMENECHES" - }, { "codePostal": "61450", "codeCommune": "61102", @@ -19055,6 +18983,42 @@ "libelleAcheminement": "LA CHAUX", "nomCommune": "LA CHAUX" }, + { + "codePostal": "61320", + "codeCommune": "61107", + "libelleAcheminement": "CIRAL", + "nomCommune": "CIRAL" + }, + { + "codePostal": "61250", + "codeCommune": "61111", + "libelleAcheminement": "COLOMBIERS", + "nomCommune": "COLOMBIERS" + }, + { + "codePostal": "61250", + "codeCommune": "61117", + "libelleAcheminement": "CONDE SUR SARTHE", + "nomCommune": "CONDE SUR SARTHE" + }, + { + "codePostal": "61220", + "codeCommune": "61124", + "libelleAcheminement": "LA COULONCHE", + "nomCommune": "LA COULONCHE" + }, + { + "codePostal": "61390", + "codeCommune": "61133", + "libelleAcheminement": "COURTOMER", + "nomCommune": "COURTOMER" + }, + { + "codePostal": "61130", + "codeCommune": "61142", + "libelleAcheminement": "DAME MARIE", + "nomCommune": "DAME MARIE" + }, { "codePostal": "61700", "codeCommune": "61145", @@ -19067,6 +19031,12 @@ "libelleAcheminement": "DOMPIERRE", "nomCommune": "DOMPIERRE" }, + { + "codePostal": "61270", + "codeCommune": "61151", + "libelleAcheminement": "ECORCEI", + "nomCommune": "ECORCEI" + }, { "codePostal": "61150", "codeCommune": "61153", @@ -19086,94 +19056,58 @@ "nomCommune": "FEINGS" }, { - "codePostal": "61470", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" - }, - { - "codePostal": "61550", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" - }, - { - "codePostal": "61550", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" + "codePostal": "61380", + "codeCommune": "61162", + "libelleAcheminement": "LA FERRIERE AU DOYEN", + "nomCommune": "LA FERRIERE AU DOYEN" }, { - "codePostal": "61550", + "codePostal": "61470", "codeCommune": "61167", "libelleAcheminement": "LA FERTE EN OUCHE", "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "61410", - "codeCommune": "61168", - "libelleAcheminement": "LA FERTE MACE", - "nomCommune": "LA FERTE MACE" - }, - { - "codePostal": "61570", - "codeCommune": "61176", - "libelleAcheminement": "FRANCHEVILLE", - "nomCommune": "FRANCHEVILLE" - }, - { - "codePostal": "61150", - "codeCommune": "61194", - "libelleAcheminement": "MONTS SUR ORNE", - "nomCommune": "MONTS SUR ORNE" - }, - { - "codePostal": "61150", - "codeCommune": "61194", - "libelleAcheminement": "MONTS SUR ORNE", - "nomCommune": "MONTS SUR ORNE" - }, - { - "codePostal": "61130", - "codeCommune": "61196", - "libelleAcheminement": "BELFORET EN PERCHE", - "nomCommune": "BELFORET EN PERCHE" + "codePostal": "61420", + "codeCommune": "61182", + "libelleAcheminement": "GANDELAIN", + "nomCommune": "GANDELAIN" }, { - "codePostal": "61130", - "codeCommune": "61196", - "libelleAcheminement": "BELFORET EN PERCHE", - "nomCommune": "BELFORET EN PERCHE" + "codePostal": "61270", + "codeCommune": "61187", + "libelleAcheminement": "LES GENETTES", + "nomCommune": "LES GENETTES" }, { - "codePostal": "61290", - "codeCommune": "61206", - "libelleAcheminement": "L HOME CHAMONDOT", - "nomCommune": "L HOME CHAMONDOT" + "codePostal": "61240", + "codeCommune": "61188", + "libelleAcheminement": "LA GENEVRAIE", + "nomCommune": "LA GENEVRAIE" }, { - "codePostal": "61190", - "codeCommune": "61208", - "libelleAcheminement": "IRAI", - "nomCommune": "IRAI" + "codePostal": "61600", + "codeCommune": "61195", + "libelleAcheminement": "LE GRAIS", + "nomCommune": "LE GRAIS" }, { - "codePostal": "61170", - "codeCommune": "61215", - "libelleAcheminement": "LALEU", - "nomCommune": "LALEU" + "codePostal": "61160", + "codeCommune": "61197", + "libelleAcheminement": "GUEPREI", + "nomCommune": "GUEPREI" }, { - "codePostal": "61210", - "codeCommune": "61217", - "libelleAcheminement": "LA LANDE DE LOUGE", - "nomCommune": "LA LANDE DE LOUGE" + "codePostal": "61120", + "codeCommune": "61198", + "libelleAcheminement": "GUERQUESALLES", + "nomCommune": "GUERQUESALLES" }, { - "codePostal": "61100", - "codeCommune": "61218", - "libelleAcheminement": "LA LANDE PATRY", - "nomCommune": "LA LANDE PATRY" + "codePostal": "61300", + "codeCommune": "61214", + "libelleAcheminement": "L AIGLE", + "nomCommune": "L AIGLE" }, { "codePostal": "61100", @@ -19182,34 +19116,34 @@ "nomCommune": "LA LANDE ST SIMEON" }, { - "codePostal": "61290", - "codeCommune": "61230", - "libelleAcheminement": "LONGNY LES VILLAGES", - "nomCommune": "LONGNY LES VILLAGES" + "codePostal": "61100", + "codeCommune": "61221", + "libelleAcheminement": "LANDIGOU", + "nomCommune": "LANDIGOU" }, { - "codePostal": "61700", - "codeCommune": "61232", - "libelleAcheminement": "LONLAY L ABBAYE", - "nomCommune": "LONLAY L ABBAYE" + "codePostal": "61400", + "codeCommune": "61229", + "libelleAcheminement": "LOISAIL", + "nomCommune": "LOISAIL" }, { - "codePostal": "61600", - "codeCommune": "61233", - "libelleAcheminement": "LONLAY LE TESSON", - "nomCommune": "LONLAY LE TESSON" + "codePostal": "61250", + "codeCommune": "61234", + "libelleAcheminement": "LONRAI", + "nomCommune": "LONRAI" }, { - "codePostal": "61170", - "codeCommune": "61251", - "libelleAcheminement": "MARCHEMAISONS", - "nomCommune": "MARCHEMAISONS" + "codePostal": "61290", + "codeCommune": "61242", + "libelleAcheminement": "LE MAGE", + "nomCommune": "LE MAGE" }, { - "codePostal": "61570", - "codeCommune": "61256", - "libelleAcheminement": "MEDAVY", - "nomCommune": "MEDAVY" + "codePostal": "61350", + "codeCommune": "61248", + "libelleAcheminement": "MANTILLY", + "nomCommune": "MANTILLY" }, { "codePostal": "61220", @@ -19223,29 +19157,17 @@ "libelleAcheminement": "LE MENIL BROUT", "nomCommune": "LE MENIL BROUT" }, - { - "codePostal": "61250", - "codeCommune": "61263", - "libelleAcheminement": "MENIL ERREUX", - "nomCommune": "MENIL ERREUX" - }, - { - "codePostal": "61240", - "codeCommune": "61264", - "libelleAcheminement": "MENIL FROGER", - "nomCommune": "MENIL FROGER" - }, { "codePostal": "61210", - "codeCommune": "61267", - "libelleAcheminement": "MENIL HERMEI", - "nomCommune": "MENIL HERMEI" + "codeCommune": "61265", + "libelleAcheminement": "MENIL GONDOUIN", + "nomCommune": "MENIL GONDOUIN" }, { - "codePostal": "61320", - "codeCommune": "61271", - "libelleAcheminement": "LE MENIL SCELLEUR", - "nomCommune": "LE MENIL SCELLEUR" + "codePostal": "61210", + "codeCommune": "61273", + "libelleAcheminement": "MENIL VIN", + "nomCommune": "MENIL VIN" }, { "codePostal": "61290", @@ -19254,16 +19176,16 @@ "nomCommune": "LES MENUS" }, { - "codePostal": "61250", - "codeCommune": "61279", - "libelleAcheminement": "MIEUXCE", - "nomCommune": "MIEUXCE" + "codePostal": "61210", + "codeCommune": "61290", + "libelleAcheminement": "MONTREUIL AU HOULME", + "nomCommune": "MONTREUIL AU HOULME" }, { - "codePostal": "61160", - "codeCommune": "61291", - "libelleAcheminement": "MONTREUIL LA CAMBE", - "nomCommune": "MONTREUIL LA CAMBE" + "codePostal": "61800", + "codeCommune": "61292", + "libelleAcheminement": "MONTSECRET CLAIREFOUGERE", + "nomCommune": "MONTSECRET CLAIREFOUGERE" }, { "codePostal": "61400", @@ -19277,6 +19199,18 @@ "libelleAcheminement": "MORTREE", "nomCommune": "MORTREE" }, + { + "codePostal": "61600", + "codeCommune": "61295", + "libelleAcheminement": "LA MOTTE FOUQUET", + "nomCommune": "LA MOTTE FOUQUET" + }, + { + "codePostal": "61200", + "codeCommune": "61298", + "libelleAcheminement": "MOULINS SUR ORNE", + "nomCommune": "MOULINS SUR ORNE" + }, { "codePostal": "61500", "codeCommune": "61301", @@ -19284,16 +19218,10 @@ "nomCommune": "NEAUPHE SOUS ESSAI" }, { - "codePostal": "61160", - "codeCommune": "61302", - "libelleAcheminement": "NEAUPHE SUR DIVE", - "nomCommune": "NEAUPHE SUR DIVE" - }, - { - "codePostal": "61340", - "codeCommune": "61309", - "libelleAcheminement": "PERCHE EN NOCE", - "nomCommune": "PERCHE EN NOCE" + "codePostal": "61250", + "codeCommune": "61304", + "libelleAcheminement": "NEUILLY LE BISSON", + "nomCommune": "NEUILLY LE BISSON" }, { "codePostal": "61340", @@ -19302,28 +19230,10 @@ "nomCommune": "PERCHE EN NOCE" }, { - "codePostal": "61240", - "codeCommune": "61310", - "libelleAcheminement": "NONANT LE PIN", - "nomCommune": "NONANT LE PIN" - }, - { - "codePostal": "61350", - "codeCommune": "61324", - "libelleAcheminement": "PASSAIS VILLAGES", - "nomCommune": "PASSAIS VILLAGES" - }, - { - "codePostal": "61350", - "codeCommune": "61324", - "libelleAcheminement": "PASSAIS VILLAGES", - "nomCommune": "PASSAIS VILLAGES" - }, - { - "codePostal": "61350", - "codeCommune": "61324", - "libelleAcheminement": "PASSAIS VILLAGES", - "nomCommune": "PASSAIS VILLAGES" + "codePostal": "61310", + "codeCommune": "61328", + "libelleAcheminement": "LE PIN AU HARAS", + "nomCommune": "LE PIN AU HARAS" }, { "codePostal": "61400", @@ -19331,6 +19241,12 @@ "libelleAcheminement": "LE PIN LA GARENNE", "nomCommune": "LE PIN LA GARENNE" }, + { + "codePostal": "61130", + "codeCommune": "61336", + "libelleAcheminement": "POUVRAI", + "nomCommune": "POUVRAI" + }, { "codePostal": "61210", "codeCommune": "61339", @@ -19344,10 +19260,10 @@ "nomCommune": "ECOUVES" }, { - "codePostal": "61120", - "codeCommune": "61346", - "libelleAcheminement": "LE RENOUARD", - "nomCommune": "LE RENOUARD" + "codePostal": "61270", + "codeCommune": "61342", + "libelleAcheminement": "RAI", + "nomCommune": "RAI" }, { "codePostal": "61400", @@ -19356,106 +19272,118 @@ "nomCommune": "REVEILLON" }, { - "codePostal": "61420", - "codeCommune": "61350", - "libelleAcheminement": "LA ROCHE MABILE", - "nomCommune": "LA ROCHE MABILE" + "codePostal": "61170", + "codeCommune": "61365", + "libelleAcheminement": "ST AUBIN D APPENAI", + "nomCommune": "ST AUBIN D APPENAI" }, { - "codePostal": "61120", - "codeCommune": "61351", - "libelleAcheminement": "ROIVILLE", - "nomCommune": "ROIVILLE" + "codePostal": "61800", + "codeCommune": "61374", + "libelleAcheminement": "ST CHRISTOPHE DE CHAULIEU", + "nomCommune": "ST CHRISTOPHE DE CHAULIEU" }, { - "codePostal": "61200", - "codeCommune": "61358", - "libelleAcheminement": "SAI", - "nomCommune": "SAI" + "codePostal": "61570", + "codeCommune": "61375", + "libelleAcheminement": "BOISCHAMPRE", + "nomCommune": "BOISCHAMPRE" }, { - "codePostal": "61440", - "codeCommune": "61362", - "libelleAcheminement": "ST ANDRE DE MESSEI", - "nomCommune": "ST ANDRE DE MESSEI" + "codePostal": "61130", + "codeCommune": "61388", + "libelleAcheminement": "ST FULGENT DES ORMES", + "nomCommune": "ST FULGENT DES ORMES" }, { - "codePostal": "61170", - "codeCommune": "61365", - "libelleAcheminement": "ST AUBIN D APPENAI", - "nomCommune": "ST AUBIN D APPENAI" + "codePostal": "61100", + "codeCommune": "61391", + "libelleAcheminement": "ST GEORGES DES GROSEILLERS", + "nomCommune": "ST GEORGES DES GROSEILLERS" }, { - "codePostal": "61700", - "codeCommune": "61369", - "libelleAcheminement": "ST BOMER LES FORGES", - "nomCommune": "ST BOMER LES FORGES" + "codePostal": "61240", + "codeCommune": "61393", + "libelleAcheminement": "ST GERMAIN DE CLAIREFEUILLE", + "nomCommune": "ST GERMAIN DE CLAIREFEUILLE" + }, + { + "codePostal": "61160", + "codeCommune": "61399", + "libelleAcheminement": "ST GERVAIS DES SABLONS", + "nomCommune": "ST GERVAIS DES SABLONS" }, { "codePostal": "61700", - "codeCommune": "61370", - "libelleAcheminement": "ST BRICE", - "nomCommune": "ST BRICE" + "codeCommune": "61401", + "libelleAcheminement": "ST GILLES DES MARAIS", + "nomCommune": "ST GILLES DES MARAIS" }, { - "codePostal": "61370", - "codeCommune": "61389", - "libelleAcheminement": "STE GAUBURGE STE COLOMBE", - "nomCommune": "STE GAUBURGE STE COLOMBE" + "codePostal": "61170", + "codeCommune": "61412", + "libelleAcheminement": "ST JULIEN SUR SARTHE", + "nomCommune": "ST JULIEN SUR SARTHE" }, { - "codePostal": "61000", - "codeCommune": "61397", - "libelleAcheminement": "ST GERMAIN DU CORBEIS", - "nomCommune": "ST GERMAIN DU CORBEIS" + "codePostal": "61160", + "codeCommune": "61413", + "libelleAcheminement": "ST LAMBERT SUR DIVE", + "nomCommune": "ST LAMBERT SUR DIVE" }, { - "codePostal": "61340", - "codeCommune": "61405", - "libelleAcheminement": "ST HILAIRE SUR ERRE", - "nomCommune": "ST HILAIRE SUR ERRE" + "codePostal": "61390", + "codeCommune": "61416", + "libelleAcheminement": "ST LEONARD DES PARCS", + "nomCommune": "ST LEONARD DES PARCS" }, { - "codePostal": "61430", - "codeCommune": "61407", - "libelleAcheminement": "STE HONORINE LA CHARDONNE", - "nomCommune": "STE HONORINE LA CHARDONNE" + "codePostal": "61320", + "codeCommune": "61420", + "libelleAcheminement": "STE MARIE LA ROBERT", + "nomCommune": "STE MARIE LA ROBERT" }, { - "codePostal": "61210", - "codeCommune": "61408", - "libelleAcheminement": "STE HONORINE LA GUILLAUME", - "nomCommune": "STE HONORINE LA GUILLAUME" + "codePostal": "61350", + "codeCommune": "61421", + "libelleAcheminement": "ST MARS D EGRENNE", + "nomCommune": "ST MARS D EGRENNE" }, { - "codePostal": "61400", - "codeCommune": "61418", - "libelleAcheminement": "ST MARD DE RENO", - "nomCommune": "ST MARD DE RENO" + "codePostal": "61300", + "codeCommune": "61423", + "libelleAcheminement": "ST MARTIN D ECUBLEI", + "nomCommune": "ST MARTIN D ECUBLEI" }, { - "codePostal": "61320", - "codeCommune": "61427", - "libelleAcheminement": "ST MARTIN L AIGUILLON", - "nomCommune": "ST MARTIN L AIGUILLON" + "codePostal": "61380", + "codeCommune": "61425", + "libelleAcheminement": "ST MARTIN DES PEZERITS", + "nomCommune": "ST MARTIN DES PEZERITS" }, { - "codePostal": "61190", - "codeCommune": "61429", - "libelleAcheminement": "CHARENCEY", - "nomCommune": "CHARENCEY" + "codePostal": "61130", + "codeCommune": "61426", + "libelleAcheminement": "ST MARTIN DU VIEUX BELLEME", + "nomCommune": "ST MARTIN DU VIEUX BELLEME" }, { - "codePostal": "61190", - "codeCommune": "61429", - "libelleAcheminement": "CHARENCEY", - "nomCommune": "CHARENCEY" + "codePostal": "61100", + "codeCommune": "61436", + "libelleAcheminement": "STE OPPORTUNE", + "nomCommune": "STE OPPORTUNE" }, { - "codePostal": "61550", - "codeCommune": "61435", - "libelleAcheminement": "ST NICOLAS DE SOMMAIRE", - "nomCommune": "ST NICOLAS DE SOMMAIRE" + "codePostal": "61410", + "codeCommune": "61439", + "libelleAcheminement": "ST OUEN LE BRISOULT", + "nomCommune": "ST OUEN LE BRISOULT" + }, + { + "codePostal": "61300", + "codeCommune": "61440", + "libelleAcheminement": "ST OUEN SUR ITON", + "nomCommune": "ST OUEN SUR ITON" }, { "codePostal": "61600", @@ -19464,40 +19392,22 @@ "nomCommune": "ST PATRICE DU DESERT" }, { - "codePostal": "61790", - "codeCommune": "61447", - "libelleAcheminement": "ST PIERRE DU REGARD", - "nomCommune": "ST PIERRE DU REGARD" + "codePostal": "61800", + "codeCommune": "61445", + "libelleAcheminement": "ST PIERRE D ENTREMONT", + "nomCommune": "ST PIERRE D ENTREMONT" }, { - "codePostal": "61220", - "codeCommune": "61459", - "libelleAcheminement": "SAIRES LA VERRERIE", - "nomCommune": "SAIRES LA VERRERIE" - }, - { - "codePostal": "61200", - "codeCommune": "61462", - "libelleAcheminement": "SARCEAUX", - "nomCommune": "SARCEAUX" - }, - { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" - }, - { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "61600", + "codeCommune": "61463", + "libelleAcheminement": "LES MONTS D ANDAINE", + "nomCommune": "LES MONTS D ANDAINE" }, { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "61100", + "codeCommune": "61466", + "libelleAcheminement": "LA SELLE LA FORGE", + "nomCommune": "LA SELLE LA FORGE" }, { "codePostal": "61380", @@ -19505,18 +19415,24 @@ "libelleAcheminement": "SOLIGNY LA TRAPPE", "nomCommune": "SOLIGNY LA TRAPPE" }, - { - "codePostal": "61150", - "codeCommune": "61479", - "libelleAcheminement": "TANQUES", - "nomCommune": "TANQUES" - }, { "codePostal": "61140", "codeCommune": "61483", "libelleAcheminement": "BAGNOLES DE L ORNE NORMANDIE", "nomCommune": "BAGNOLES DE L ORNE NORMANDIE" }, + { + "codePostal": "61260", + "codeCommune": "61484", + "libelleAcheminement": "VAL AU PERCHE", + "nomCommune": "VAL AU PERCHE" + }, + { + "codePostal": "61120", + "codeCommune": "61485", + "libelleAcheminement": "TICHEVILLE", + "nomCommune": "TICHEVILLE" + }, { "codePostal": "61800", "codeCommune": "61486", @@ -19524,16 +19440,16 @@ "nomCommune": "TINCHEBRAY BOCAGE" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "61800", + "codeCommune": "61486", + "libelleAcheminement": "TINCHEBRAY BOCAGE", + "nomCommune": "TINCHEBRAY BOCAGE" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "61160", + "codeCommune": "61490", + "libelleAcheminement": "TOURNAI SUR DIVE", + "nomCommune": "TOURNAI SUR DIVE" }, { "codePostal": "61190", @@ -19542,16 +19458,16 @@ "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "61130", - "codeCommune": "61498", - "libelleAcheminement": "VAUNOISE", - "nomCommune": "VAUNOISE" + "codePostal": "61230", + "codeCommune": "61493", + "libelleAcheminement": "LA TRINITE DES LAITIERS", + "nomCommune": "LA TRINITE DES LAITIERS" }, { - "codePostal": "61190", - "codeCommune": "61500", - "libelleAcheminement": "LA VENTROUZE", - "nomCommune": "LA VENTROUZE" + "codePostal": "61110", + "codeCommune": "61501", + "libelleAcheminement": "VERRIERES", + "nomCommune": "VERRIERES" }, { "codePostal": "61150", @@ -19560,28 +19476,46 @@ "nomCommune": "VIEUX PONT" }, { - "codePostal": "62144", - "codeCommune": "62007", - "libelleAcheminement": "ACQ", - "nomCommune": "ACQ" + "codePostal": "61120", + "codeCommune": "61508", + "libelleAcheminement": "VIMOUTIERS", + "nomCommune": "VIMOUTIERS" }, { - "codePostal": "62380", - "codeCommune": "62008", - "libelleAcheminement": "ACQUIN WESTBECOURT", - "nomCommune": "ACQUIN WESTBECOURT" + "codePostal": "62153", + "codeCommune": "62001", + "libelleAcheminement": "ABLAIN ST NAZAIRE", + "nomCommune": "ABLAIN ST NAZAIRE" + }, + { + "codePostal": "62116", + "codeCommune": "62002", + "libelleAcheminement": "ABLAINZEVELLE", + "nomCommune": "ABLAINZEVELLE" + }, + { + "codePostal": "62121", + "codeCommune": "62005", + "libelleAcheminement": "ACHIET LE GRAND", + "nomCommune": "ACHIET LE GRAND" + }, + { + "codePostal": "62690", + "codeCommune": "62012", + "libelleAcheminement": "AGNIERES", + "nomCommune": "AGNIERES" }, { "codePostal": "62180", - "codeCommune": "62016", - "libelleAcheminement": "AIRON ST VAAST", - "nomCommune": "AIRON ST VAAST" + "codeCommune": "62015", + "libelleAcheminement": "AIRON NOTRE DAME", + "nomCommune": "AIRON NOTRE DAME" }, { - "codePostal": "62160", - "codeCommune": "62019", - "libelleAcheminement": "AIX NOULETTE", - "nomCommune": "AIX NOULETTE" + "codePostal": "62850", + "codeCommune": "62020", + "libelleAcheminement": "ALEMBON", + "nomCommune": "ALEMBON" }, { "codePostal": "62142", @@ -19590,22 +19524,34 @@ "nomCommune": "ALINCTHUN" }, { - "codePostal": "62127", - "codeCommune": "62027", - "libelleAcheminement": "AMBRINES", - "nomCommune": "AMBRINES" + "codePostal": "62260", + "codeCommune": "62029", + "libelleAcheminement": "AMETTES", + "nomCommune": "AMETTES" }, { - "codePostal": "62143", - "codeCommune": "62032", - "libelleAcheminement": "ANGRES", - "nomCommune": "ANGRES" + "codePostal": "62760", + "codeCommune": "62030", + "libelleAcheminement": "AMPLIER", + "nomCommune": "AMPLIER" }, { - "codePostal": "62880", - "codeCommune": "62033", - "libelleAcheminement": "ANNAY", - "nomCommune": "ANNAY" + "codePostal": "62610", + "codeCommune": "62038", + "libelleAcheminement": "ARDRES", + "nomCommune": "ARDRES" + }, + { + "codePostal": "62610", + "codeCommune": "62038", + "libelleAcheminement": "ARDRES", + "nomCommune": "ARDRES" + }, + { + "codePostal": "62000", + "codeCommune": "62041", + "libelleAcheminement": "ARRAS", + "nomCommune": "ARRAS" }, { "codePostal": "62730", @@ -19614,40 +19560,34 @@ "nomCommune": "LES ATTAQUES" }, { - "codePostal": "62190", - "codeCommune": "62049", - "libelleAcheminement": "AUCHY AU BOIS", - "nomCommune": "AUCHY AU BOIS" - }, - { - "codePostal": "62250", - "codeCommune": "62052", - "libelleAcheminement": "AUDEMBERT", - "nomCommune": "AUDEMBERT" + "codePostal": "62140", + "codeCommune": "62046", + "libelleAcheminement": "AUBIN ST VAAST", + "nomCommune": "AUBIN ST VAAST" }, { - "codePostal": "62560", - "codeCommune": "62053", - "libelleAcheminement": "AUDINCTHUN", - "nomCommune": "AUDINCTHUN" + "codePostal": "62390", + "codeCommune": "62047", + "libelleAcheminement": "AUBROMETZ", + "nomCommune": "AUBROMETZ" }, { - "codePostal": "62810", - "codeCommune": "62063", - "libelleAcheminement": "AVESNES LE COMTE", - "nomCommune": "AVESNES LE COMTE" + "codePostal": "62770", + "codeCommune": "62050", + "libelleAcheminement": "AUCHY LES HESDIN", + "nomCommune": "AUCHY LES HESDIN" }, { - "codePostal": "62210", - "codeCommune": "62065", - "libelleAcheminement": "AVION", - "nomCommune": "AVION" + "codePostal": "62310", + "codeCommune": "62066", + "libelleAcheminement": "AVONDANCE", + "nomCommune": "AVONDANCE" }, { - "codePostal": "62560", - "codeCommune": "62067", - "libelleAcheminement": "AVROULT", - "nomCommune": "AVROULT" + "codePostal": "62123", + "codeCommune": "62072", + "libelleAcheminement": "BAILLEULMONT", + "nomCommune": "BAILLEULMONT" }, { "codePostal": "62850", @@ -19656,46 +19596,58 @@ "nomCommune": "BAINGHEN" }, { - "codePostal": "62150", - "codeCommune": "62077", - "libelleAcheminement": "BAJUS", - "nomCommune": "BAJUS" + "codePostal": "62450", + "codeCommune": "62080", + "libelleAcheminement": "BAPAUME", + "nomCommune": "BAPAUME" }, { - "codePostal": "62450", - "codeCommune": "62079", - "libelleAcheminement": "BANCOURT", - "nomCommune": "BANCOURT" + "codePostal": "62124", + "codeCommune": "62082", + "libelleAcheminement": "BARASTRE", + "nomCommune": "BARASTRE" }, { - "codePostal": "62380", - "codeCommune": "62088", - "libelleAcheminement": "BAYENGHEM LES SENINGHEM", - "nomCommune": "BAYENGHEM LES SENINGHEM" + "codePostal": "62910", + "codeCommune": "62087", + "libelleAcheminement": "BAYENGHEM LES EPERLECQUES", + "nomCommune": "BAYENGHEM LES EPERLECQUES" }, { - "codePostal": "62170", - "codeCommune": "62094", - "libelleAcheminement": "BEAUMERIE ST MARTIN", - "nomCommune": "BEAUMERIE ST MARTIN" + "codePostal": "62250", + "codeCommune": "62089", + "libelleAcheminement": "BAZINGHEN", + "nomCommune": "BAZINGHEN" }, { - "codePostal": "62121", - "codeCommune": "62103", - "libelleAcheminement": "BEHAGNIES", - "nomCommune": "BEHAGNIES" + "codePostal": "62130", + "codeCommune": "62101", + "libelleAcheminement": "BEAUVOIS", + "nomCommune": "BEAUVOIS" }, { - "codePostal": "62410", - "codeCommune": "62107", - "libelleAcheminement": "BENIFONTAINE", - "nomCommune": "BENIFONTAINE" + "codePostal": "62142", + "codeCommune": "62104", + "libelleAcheminement": "BELLEBRUNE", + "nomCommune": "BELLEBRUNE" + }, + { + "codePostal": "62490", + "codeCommune": "62106", + "libelleAcheminement": "BELLONNE", + "nomCommune": "BELLONNE" + }, + { + "codePostal": "62130", + "codeCommune": "62114", + "libelleAcheminement": "BERMICOURT", + "nomCommune": "BERMICOURT" }, { "codePostal": "62123", - "codeCommune": "62112", - "libelleAcheminement": "BERLES AU BOIS", - "nomCommune": "BERLES AU BOIS" + "codeCommune": "62115", + "libelleAcheminement": "BERNEVILLE", + "nomCommune": "BERNEVILLE" }, { "codePostal": "62124", @@ -19704,22 +19656,22 @@ "nomCommune": "BERTINCOURT" }, { - "codePostal": "62690", - "codeCommune": "62118", - "libelleAcheminement": "BETHONSART", - "nomCommune": "BETHONSART" + "codePostal": "62400", + "codeCommune": "62119", + "libelleAcheminement": "BETHUNE", + "nomCommune": "BETHUNE" }, { - "codePostal": "62111", - "codeCommune": "62130", - "libelleAcheminement": "BIENVILLERS AU BOIS", - "nomCommune": "BIENVILLERS AU BOIS" + "codePostal": "62660", + "codeCommune": "62126", + "libelleAcheminement": "BEUVRY", + "nomCommune": "BEUVRY" }, { - "codePostal": "62173", - "codeCommune": "62135", - "libelleAcheminement": "BLAIRVILLE", - "nomCommune": "BLAIRVILLE" + "codePostal": "62420", + "codeCommune": "62133", + "libelleAcheminement": "BILLY MONTIGNY", + "nomCommune": "BILLY MONTIGNY" }, { "codePostal": "62270", @@ -19728,16 +19680,40 @@ "nomCommune": "BLANGERVAL BLANGERMONT" }, { - "codePostal": "62175", - "codeCommune": "62146", - "libelleAcheminement": "BOIRY ST MARTIN", - "nomCommune": "BOIRY ST MARTIN" + "codePostal": "62770", + "codeCommune": "62138", + "libelleAcheminement": "BLANGY SUR TERNOISE", + "nomCommune": "BLANGY SUR TERNOISE" }, { - "codePostal": "62175", - "codeCommune": "62147", - "libelleAcheminement": "BOIRY STE RICTRUDE", - "nomCommune": "BOIRY STE RICTRUDE" + "codePostal": "62156", + "codeCommune": "62145", + "libelleAcheminement": "BOIRY NOTRE DAME", + "nomCommune": "BOIRY NOTRE DAME" + }, + { + "codePostal": "62500", + "codeCommune": "62149", + "libelleAcheminement": "BOISDINGHEM", + "nomCommune": "BOISDINGHEM" + }, + { + "codePostal": "62270", + "codeCommune": "62154", + "libelleAcheminement": "BONNIERES", + "nomCommune": "BONNIERES" + }, + { + "codePostal": "62270", + "codeCommune": "62154", + "libelleAcheminement": "BONNIERES", + "nomCommune": "BONNIERES" + }, + { + "codePostal": "62340", + "codeCommune": "62156", + "libelleAcheminement": "BONNINGUES LES CALAIS", + "nomCommune": "BONNINGUES LES CALAIS" }, { "codePostal": "62990", @@ -19746,10 +19722,16 @@ "nomCommune": "BOUBERS LES HESMOND" }, { - "codePostal": "62190", - "codeCommune": "62162", - "libelleAcheminement": "BOURECQ", - "nomCommune": "BOURECQ" + "codePostal": "62270", + "codeCommune": "62158", + "libelleAcheminement": "BOUBERS SUR CANCHE", + "nomCommune": "BOUBERS SUR CANCHE" + }, + { + "codePostal": "62550", + "codeCommune": "62166", + "libelleAcheminement": "BOURS", + "nomCommune": "BOURS" }, { "codePostal": "62132", @@ -19758,16 +19740,28 @@ "nomCommune": "BOURSIN" }, { - "codePostal": "62650", - "codeCommune": "62168", - "libelleAcheminement": "BOURTHES", - "nomCommune": "BOURTHES" + "codePostal": "62380", + "codeCommune": "62169", + "libelleAcheminement": "BOUVELINGHEM", + "nomCommune": "BOUVELINGHEM" }, { - "codePostal": "62610", - "codeCommune": "62174", - "libelleAcheminement": "BREMES", - "nomCommune": "BREMES" + "codePostal": "62172", + "codeCommune": "62170", + "libelleAcheminement": "BOUVIGNY BOYEFFLES", + "nomCommune": "BOUVIGNY BOYEFFLES" + }, + { + "codePostal": "62134", + "codeCommune": "62171", + "libelleAcheminement": "BOYAVAL", + "nomCommune": "BOYAVAL" + }, + { + "codePostal": "62170", + "codeCommune": "62176", + "libelleAcheminement": "BREXENT ENOCQ", + "nomCommune": "BREXENT ENOCQ" }, { "codePostal": "62160", @@ -19787,6 +19781,24 @@ "libelleAcheminement": "BURBURE", "nomCommune": "BURBURE" }, + { + "codePostal": "62124", + "codeCommune": "62189", + "libelleAcheminement": "BUS", + "nomCommune": "BUS" + }, + { + "codePostal": "62470", + "codeCommune": "62194", + "libelleAcheminement": "CALONNE RICOUART", + "nomCommune": "CALONNE RICOUART" + }, + { + "codePostal": "62350", + "codeCommune": "62195", + "libelleAcheminement": "CALONNE SUR LA LYS", + "nomCommune": "CALONNE SUR LA LYS" + }, { "codePostal": "62170", "codeCommune": "62196", @@ -19794,10 +19806,10 @@ "nomCommune": "LA CALOTTERIE" }, { - "codePostal": "62470", - "codeCommune": "62197", - "libelleAcheminement": "CAMBLAIN CHATELAIN", - "nomCommune": "CAMBLAIN CHATELAIN" + "codePostal": "62690", + "codeCommune": "62199", + "libelleAcheminement": "CAMBLAIN L ABBE", + "nomCommune": "CAMBLAIN L ABBE" }, { "codePostal": "62176", @@ -19811,18 +19823,6 @@ "libelleAcheminement": "CAMPAGNE LES BOULONNAIS", "nomCommune": "CAMPAGNE LES BOULONNAIS" }, - { - "codePostal": "62870", - "codeCommune": "62204", - "libelleAcheminement": "CAMPAGNE LES HESDIN", - "nomCommune": "CAMPAGNE LES HESDIN" - }, - { - "codePostal": "62120", - "codeCommune": "62205", - "libelleAcheminement": "CAMPAGNE LES WARDRECQUES", - "nomCommune": "CAMPAGNE LES WARDRECQUES" - }, { "codePostal": "62170", "codeCommune": "62206", @@ -19830,34 +19830,46 @@ "nomCommune": "CAMPIGNEULLES LES GRANDES" }, { - "codePostal": "62170", - "codeCommune": "62207", - "libelleAcheminement": "CAMPIGNEULLES LES PETITES", - "nomCommune": "CAMPIGNEULLES LES PETITES" + "codePostal": "62690", + "codeCommune": "62211", + "libelleAcheminement": "CAPELLE FERMONT", + "nomCommune": "CAPELLE FERMONT" }, { - "codePostal": "62144", - "codeCommune": "62213", - "libelleAcheminement": "CARENCY", - "nomCommune": "CARENCY" + "codePostal": "62150", + "codeCommune": "62218", + "libelleAcheminement": "CAUCOURT", + "nomCommune": "CAUCOURT" }, { - "codePostal": "62650", - "codeCommune": "62227", - "libelleAcheminement": "CLENLEU", - "nomCommune": "CLENLEU" + "codePostal": "62500", + "codeCommune": "62225", + "libelleAcheminement": "CLAIRMARAIS", + "nomCommune": "CLAIRMARAIS" }, { - "codePostal": "62890", - "codeCommune": "62228", - "libelleAcheminement": "CLERQUES", - "nomCommune": "CLERQUES" + "codePostal": "62231", + "codeCommune": "62239", + "libelleAcheminement": "COQUELLES", + "nomCommune": "COQUELLES" }, { - "codePostal": "62137", - "codeCommune": "62244", - "libelleAcheminement": "COULOGNE", - "nomCommune": "COULOGNE" + "codePostal": "62112", + "codeCommune": "62240", + "libelleAcheminement": "CORBEHEM", + "nomCommune": "CORBEHEM" + }, + { + "codePostal": "62630", + "codeCommune": "62241", + "libelleAcheminement": "CORMONT", + "nomCommune": "CORMONT" + }, + { + "codePostal": "62380", + "codeCommune": "62245", + "libelleAcheminement": "COULOMBY", + "nomCommune": "COULOMBY" }, { "codePostal": "62310", @@ -19871,6 +19883,12 @@ "libelleAcheminement": "COUPELLE VIEILLE", "nomCommune": "COUPELLE VIEILLE" }, + { + "codePostal": "62710", + "codeCommune": "62250", + "libelleAcheminement": "COURRIERES", + "nomCommune": "COURRIERES" + }, { "codePostal": "62240", "codeCommune": "62251", @@ -19878,40 +19896,22 @@ "nomCommune": "COURSET" }, { - "codePostal": "62560", - "codeCommune": "62254", - "libelleAcheminement": "COYECQUES", - "nomCommune": "COYECQUES" - }, - { - "codePostal": "62240", - "codeCommune": "62255", - "libelleAcheminement": "CREMAREST", - "nomCommune": "CREMAREST" - }, - { - "codePostal": "62780", - "codeCommune": "62261", - "libelleAcheminement": "CUCQ", - "nomCommune": "CUCQ" - }, - { - "codePostal": "62187", - "codeCommune": "62264", - "libelleAcheminement": "DANNES", - "nomCommune": "DANNES" + "codePostal": "62310", + "codeCommune": "62257", + "libelleAcheminement": "CREQUY", + "nomCommune": "CREQUY" }, { - "codePostal": "62830", - "codeCommune": "62273", - "libelleAcheminement": "DOUDEAUVILLE", - "nomCommune": "DOUDEAUVILLE" + "codePostal": "62130", + "codeCommune": "62258", + "libelleAcheminement": "CROISETTE", + "nomCommune": "CROISETTE" }, { - "codePostal": "62860", - "codeCommune": "62284", - "libelleAcheminement": "ECOURT ST QUENTIN", - "nomCommune": "ECOURT ST QUENTIN" + "codePostal": "62240", + "codeCommune": "62268", + "libelleAcheminement": "DESVRES", + "nomCommune": "DESVRES" }, { "codePostal": "62129", @@ -19919,30 +19919,30 @@ "libelleAcheminement": "ECQUES", "nomCommune": "ECQUES" }, - { - "codePostal": "62380", - "codeCommune": "62292", - "libelleAcheminement": "ELNES", - "nomCommune": "ELNES" - }, { "codePostal": "62910", "codeCommune": "62297", "libelleAcheminement": "EPERLECQUES", "nomCommune": "EPERLECQUES" }, - { - "codePostal": "62134", - "codeCommune": "62303", - "libelleAcheminement": "ERIN", - "nomCommune": "ERIN" - }, { "codePostal": "62960", "codeCommune": "62304", "libelleAcheminement": "ERNY ST JULIEN", "nomCommune": "ERNY ST JULIEN" }, + { + "codePostal": "62121", + "codeCommune": "62306", + "libelleAcheminement": "ERVILLERS", + "nomCommune": "ERVILLERS" + }, + { + "codePostal": "62850", + "codeCommune": "62308", + "libelleAcheminement": "ESCOEUILLES", + "nomCommune": "ESCOEUILLES" + }, { "codePostal": "62880", "codeCommune": "62311", @@ -19950,16 +19950,10 @@ "nomCommune": "ESTEVELLES" }, { - "codePostal": "62145", - "codeCommune": "62313", - "libelleAcheminement": "ESTREE BLANCHE", - "nomCommune": "ESTREE BLANCHE" - }, - { - "codePostal": "62690", - "codeCommune": "62314", - "libelleAcheminement": "ESTREE CAUCHY", - "nomCommune": "ESTREE CAUCHY" + "codePostal": "62170", + "codeCommune": "62312", + "libelleAcheminement": "ESTREE", + "nomCommune": "ESTREE" }, { "codePostal": "62156", @@ -19968,34 +19962,40 @@ "nomCommune": "ETAING" }, { - "codePostal": "62760", - "codeCommune": "62322", - "libelleAcheminement": "FAMECHON", - "nomCommune": "FAMECHON" + "codePostal": "62630", + "codeCommune": "62318", + "libelleAcheminement": "ETAPLES", + "nomCommune": "ETAPLES" }, { - "codePostal": "62118", - "codeCommune": "62323", - "libelleAcheminement": "FAMPOUX", - "nomCommune": "FAMPOUX" + "codePostal": "62141", + "codeCommune": "62321", + "libelleAcheminement": "EVIN MALMAISON", + "nomCommune": "EVIN MALMAISON" }, { - "codePostal": "62149", - "codeCommune": "62330", - "libelleAcheminement": "FESTUBERT", - "nomCommune": "FESTUBERT" + "codePostal": "62450", + "codeCommune": "62326", + "libelleAcheminement": "FAVREUIL", + "nomCommune": "FAVREUIL" }, { - "codePostal": "62770", - "codeCommune": "62335", - "libelleAcheminement": "FILLIEVRES", - "nomCommune": "FILLIEVRES" + "codePostal": "62132", + "codeCommune": "62334", + "libelleAcheminement": "FIENNES", + "nomCommune": "FIENNES" }, { - "codePostal": "62270", - "codeCommune": "62337", - "libelleAcheminement": "FLERS", - "nomCommune": "FLERS" + "codePostal": "62960", + "codeCommune": "62336", + "libelleAcheminement": "FLECHIN", + "nomCommune": "FLECHIN" + }, + { + "codePostal": "62111", + "codeCommune": "62341", + "libelleAcheminement": "FONCQUEVILLERS", + "nomCommune": "FONCQUEVILLERS" }, { "codePostal": "62550", @@ -20003,30 +20003,12 @@ "libelleAcheminement": "FONTAINE LES HERMANS", "nomCommune": "FONTAINE LES HERMANS" }, - { - "codePostal": "62130", - "codeCommune": "62348", - "libelleAcheminement": "FOUFFLIN RICAMETZ", - "nomCommune": "FOUFFLIN RICAMETZ" - }, { "codePostal": "62232", "codeCommune": "62349", "libelleAcheminement": "FOUQUEREUIL", "nomCommune": "FOUQUEREUIL" }, - { - "codePostal": "62740", - "codeCommune": "62351", - "libelleAcheminement": "FOUQUIERES LES LENS", - "nomCommune": "FOUQUIERES LES LENS" - }, - { - "codePostal": "62450", - "codeCommune": "62353", - "libelleAcheminement": "FREMICOURT", - "nomCommune": "FREMICOURT" - }, { "codePostal": "62630", "codeCommune": "62354", @@ -20034,40 +20016,16 @@ "nomCommune": "FRENCQ" }, { - "codePostal": "62580", - "codeCommune": "62358", - "libelleAcheminement": "FRESNOY EN GOHELLE", - "nomCommune": "FRESNOY EN GOHELLE" - }, - { - "codePostal": "62270", - "codeCommune": "62361", - "libelleAcheminement": "FREVENT", - "nomCommune": "FREVENT" - }, - { - "codePostal": "62127", - "codeCommune": "62362", - "libelleAcheminement": "FREVILLERS", - "nomCommune": "FREVILLERS" - }, - { - "codePostal": "62760", - "codeCommune": "62368", - "libelleAcheminement": "GAUDIEMPRE", - "nomCommune": "GAUDIEMPRE" - }, - { - "codePostal": "62390", - "codeCommune": "62370", - "libelleAcheminement": "GENNES IVERGNY", - "nomCommune": "GENNES IVERGNY" + "codePostal": "62490", + "codeCommune": "62355", + "libelleAcheminement": "FRESNES LES MONTAUBAN", + "nomCommune": "FRESNES LES MONTAUBAN" }, { - "codePostal": "62580", - "codeCommune": "62371", - "libelleAcheminement": "GIVENCHY EN GOHELLE", - "nomCommune": "GIVENCHY EN GOHELLE" + "codePostal": "62810", + "codeCommune": "62372", + "libelleAcheminement": "GIVENCHY LE NOBLE", + "nomCommune": "GIVENCHY LE NOBLE" }, { "codePostal": "62149", @@ -20075,6 +20033,18 @@ "libelleAcheminement": "GIVENCHY LES LA BASSEE", "nomCommune": "GIVENCHY LES LA BASSEE" }, + { + "codePostal": "62111", + "codeCommune": "62375", + "libelleAcheminement": "GOMMECOURT", + "nomCommune": "GOMMECOURT" + }, + { + "codePostal": "62920", + "codeCommune": "62376", + "libelleAcheminement": "GONNEHEM", + "nomCommune": "GONNEHEM" + }, { "codePostal": "62199", "codeCommune": "62377", @@ -20082,22 +20052,16 @@ "nomCommune": "GOSNAY" }, { - "codePostal": "62127", - "codeCommune": "62381", - "libelleAcheminement": "GOUY EN TERNOIS", - "nomCommune": "GOUY EN TERNOIS" - }, - { - "codePostal": "62810", - "codeCommune": "62385", - "libelleAcheminement": "GRAND RULLECOURT", - "nomCommune": "GRAND RULLECOURT" + "codePostal": "62870", + "codeCommune": "62382", + "libelleAcheminement": "GOUY ST ANDRE", + "nomCommune": "GOUY ST ANDRE" }, { - "codePostal": "62600", - "codeCommune": "62390", - "libelleAcheminement": "GROFFLIERS", - "nomCommune": "GROFFLIERS" + "codePostal": "62140", + "codeCommune": "62388", + "libelleAcheminement": "GRIGNY", + "nomCommune": "GRIGNY" }, { "codePostal": "62370", @@ -20106,10 +20070,10 @@ "nomCommune": "GUEMPS" }, { - "codePostal": "62140", - "codeCommune": "62398", - "libelleAcheminement": "GUISY", - "nomCommune": "GUISY" + "codePostal": "62130", + "codeCommune": "62396", + "libelleAcheminement": "GUINECOURT", + "nomCommune": "GUINECOURT" }, { "codePostal": "62940", @@ -20118,58 +20082,64 @@ "nomCommune": "HAILLICOURT" }, { - "codePostal": "62830", - "codeCommune": "62402", - "libelleAcheminement": "HALINGHEN", - "nomCommune": "HALINGHEN" + "codePostal": "62340", + "codeCommune": "62408", + "libelleAcheminement": "HAMES BOUCRES", + "nomCommune": "HAMES BOUCRES" }, { - "codePostal": "62760", - "codeCommune": "62430", - "libelleAcheminement": "HENU", - "nomCommune": "HENU" + "codePostal": "62390", + "codeCommune": "62411", + "libelleAcheminement": "HARAVESNES", + "nomCommune": "HARAVESNES" }, { - "codePostal": "62158", - "codeCommune": "62434", - "libelleAcheminement": "LA HERLIERE", - "nomCommune": "LA HERLIERE" + "codePostal": "62132", + "codeCommune": "62412", + "libelleAcheminement": "HARDINGHEN", + "nomCommune": "HARDINGHEN" }, { - "codePostal": "62130", - "codeCommune": "62435", - "libelleAcheminement": "HERLINCOURT", - "nomCommune": "HERLINCOURT" + "codePostal": "62147", + "codeCommune": "62421", + "libelleAcheminement": "HAVRINCOURT", + "nomCommune": "HAVRINCOURT" }, { - "codePostal": "62130", - "codeCommune": "62442", - "libelleAcheminement": "HERNICOURT", - "nomCommune": "HERNICOURT" + "codePostal": "62570", + "codeCommune": "62423", + "libelleAcheminement": "HELFAUT", + "nomCommune": "HELFAUT" }, { - "codePostal": "62179", - "codeCommune": "62444", - "libelleAcheminement": "HERVELINGHEN", - "nomCommune": "HERVELINGHEN" + "codePostal": "62650", + "codeCommune": "62437", + "libelleAcheminement": "HERLY", + "nomCommune": "HERLY" }, { - "codePostal": "62134", - "codeCommune": "62451", - "libelleAcheminement": "HEUCHIN", - "nomCommune": "HEUCHIN" + "codePostal": "62132", + "codeCommune": "62439", + "libelleAcheminement": "HERMELINGHEN", + "nomCommune": "HERMELINGHEN" }, { - "codePostal": "62620", - "codeCommune": "62456", - "libelleAcheminement": "HOUCHIN", - "nomCommune": "HOUCHIN" + "codePostal": "62196", + "codeCommune": "62445", + "libelleAcheminement": "HESDIGNEUL LES BETHUNE", + "nomCommune": "HESDIGNEUL LES BETHUNE" }, { - "codePostal": "62910", - "codeCommune": "62458", - "libelleAcheminement": "HOULLE", - "nomCommune": "HOULLE" + "codePostal": "62850", + "codeCommune": "62455", + "libelleAcheminement": "HOCQUINGHEN", + "nomCommune": "HOCQUINGHEN" + }, + { + "codePostal": "62270", + "codeCommune": "62459", + "libelleAcheminement": "HOUVIN HOUVIGNEUL", + "nomCommune": "HOUVIN HOUVIGNEUL" }, { "codePostal": "62140", @@ -20177,6 +20147,12 @@ "libelleAcheminement": "HUBY ST LEU", "nomCommune": "HUBY ST LEU" }, + { + "codePostal": "62130", + "codeCommune": "62462", + "libelleAcheminement": "HUCLIER", + "nomCommune": "HUCLIER" + }, { "codePostal": "62650", "codeCommune": "62466", @@ -20184,28 +20160,22 @@ "nomCommune": "HUMBERT" }, { - "codePostal": "62860", - "codeCommune": "62469", - "libelleAcheminement": "INCHY EN ARTOIS", - "nomCommune": "INCHY EN ARTOIS" - }, - { - "codePostal": "62129", - "codeCommune": "62471", - "libelleAcheminement": "BELLINGHEM", - "nomCommune": "BELLINGHEM" + "codePostal": "62490", + "codeCommune": "62476", + "libelleAcheminement": "IZEL LES EQUERCHIN", + "nomCommune": "IZEL LES EQUERCHIN" }, { - "codePostal": "62170", - "codeCommune": "62472", - "libelleAcheminement": "INXENT", - "nomCommune": "INXENT" + "codePostal": "62113", + "codeCommune": "62480", + "libelleAcheminement": "LABOURSE", + "nomCommune": "LABOURSE" }, { - "codePostal": "62810", - "codeCommune": "62475", - "libelleAcheminement": "IVERGNY", - "nomCommune": "IVERGNY" + "codePostal": "62159", + "codeCommune": "62484", + "libelleAcheminement": "LAGNICOURT MARCEL", + "nomCommune": "LAGNICOURT MARCEL" }, { "codePostal": "62120", @@ -20220,46 +20190,34 @@ "nomCommune": "LANDRETHUN LE NORD" }, { - "codePostal": "62810", - "codeCommune": "62490", - "libelleAcheminement": "LATTRE ST QUENTIN", - "nomCommune": "LATTRE ST QUENTIN" - }, - { - "codePostal": "62124", - "codeCommune": "62494", - "libelleAcheminement": "LECHELLE", - "nomCommune": "LECHELLE" - }, - { - "codePostal": "62380", - "codeCommune": "62495", - "libelleAcheminement": "LEDINGHEM", - "nomCommune": "LEDINGHEM" + "codePostal": "62122", + "codeCommune": "62489", + "libelleAcheminement": "LAPUGNOY", + "nomCommune": "LAPUGNOY" }, { - "codePostal": "62170", - "codeCommune": "62499", - "libelleAcheminement": "LEPINE", - "nomCommune": "LEPINE" + "codePostal": "62190", + "codeCommune": "62500", + "libelleAcheminement": "LESPESSES", + "nomCommune": "LESPESSES" }, { - "codePostal": "62990", - "codeCommune": "62501", - "libelleAcheminement": "LESPINOY", - "nomCommune": "LESPINOY" + "codePostal": "62190", + "codeCommune": "62508", + "libelleAcheminement": "LIERES", + "nomCommune": "LIERES" }, { - "codePostal": "62240", - "codeCommune": "62524", - "libelleAcheminement": "LONGFOSSE", - "nomCommune": "LONGFOSSE" + "codePostal": "62810", + "codeCommune": "62511", + "libelleAcheminement": "LIGNEREUIL", + "nomCommune": "LIGNEREUIL" }, { - "codePostal": "62219", - "codeCommune": "62525", - "libelleAcheminement": "LONGUENESSE", - "nomCommune": "LONGUENESSE" + "codePostal": "62140", + "codeCommune": "62521", + "libelleAcheminement": "LA LOGE", + "nomCommune": "LA LOGE" }, { "codePostal": "62142", @@ -20268,10 +20226,22 @@ "nomCommune": "LONGUEVILLE" }, { - "codePostal": "62240", - "codeCommune": "62530", - "libelleAcheminement": "LOTTINGHEN", - "nomCommune": "LOTTINGHEN" + "codePostal": "62630", + "codeCommune": "62527", + "libelleAcheminement": "LONGVILLIERS", + "nomCommune": "LONGVILLIERS" + }, + { + "codePostal": "62750", + "codeCommune": "62528", + "libelleAcheminement": "LOOS EN GOHELLE", + "nomCommune": "LOOS EN GOHELLE" + }, + { + "codePostal": "62840", + "codeCommune": "62529", + "libelleAcheminement": "LORGIES", + "nomCommune": "LORGIES" }, { "codePostal": "62380", @@ -20280,40 +20250,40 @@ "nomCommune": "LUMBRES" }, { - "codePostal": "62170", - "codeCommune": "62535", - "libelleAcheminement": "LA MADELAINE SOUS MONTREUIL", - "nomCommune": "LA MADELAINE SOUS MONTREUIL" + "codePostal": "62730", + "codeCommune": "62548", + "libelleAcheminement": "MARCK", + "nomCommune": "MARCK" }, { - "codePostal": "62127", - "codeCommune": "62536", - "libelleAcheminement": "MAGNICOURT EN COMTE", - "nomCommune": "MAGNICOURT EN COMTE" + "codePostal": "62990", + "codeCommune": "62552", + "libelleAcheminement": "MARESQUEL ECQUEMICOURT", + "nomCommune": "MARESQUEL ECQUEMICOURT" }, { - "codePostal": "62120", - "codeCommune": "62543", - "libelleAcheminement": "MAMETZ", - "nomCommune": "MAMETZ" + "codePostal": "62550", + "codeCommune": "62553", + "libelleAcheminement": "MAREST", + "nomCommune": "MAREST" }, { - "codePostal": "62650", - "codeCommune": "62545", - "libelleAcheminement": "MANINGHEM", - "nomCommune": "MANINGHEM" + "codePostal": "62630", + "codeCommune": "62554", + "libelleAcheminement": "MARESVILLE", + "nomCommune": "MARESVILLE" }, { - "codePostal": "62140", - "codeCommune": "62550", - "libelleAcheminement": "MARCONNELLE", - "nomCommune": "MARCONNELLE" + "codePostal": "62540", + "codeCommune": "62555", + "libelleAcheminement": "MARLES LES MINES", + "nomCommune": "MARLES LES MINES" }, { - "codePostal": "62990", - "codeCommune": "62551", - "libelleAcheminement": "MARENLA", - "nomCommune": "MARENLA" + "codePostal": "62250", + "codeCommune": "62560", + "libelleAcheminement": "MARQUISE", + "nomCommune": "MARQUISE" }, { "codePostal": "62310", @@ -20322,16 +20292,10 @@ "nomCommune": "MATRINGHEM" }, { - "codePostal": "62270", - "codeCommune": "62576", - "libelleAcheminement": "MONCHEAUX LES FREVENT", - "nomCommune": "MONCHEAUX LES FREVENT" - }, - { - "codePostal": "62111", - "codeCommune": "62579", - "libelleAcheminement": "MONCHY AU BOIS", - "nomCommune": "MONCHY AU BOIS" + "codePostal": "62123", + "codeCommune": "62578", + "libelleAcheminement": "MONCHIET", + "nomCommune": "MONCHIET" }, { "codePostal": "62760", @@ -20346,118 +20310,124 @@ "nomCommune": "MONT BERNANCHON" }, { - "codePostal": "62144", - "codeCommune": "62589", - "libelleAcheminement": "MONT ST ELOI", - "nomCommune": "MONT ST ELOI" - }, - { - "codePostal": "62910", - "codeCommune": "62595", - "libelleAcheminement": "MOULLE", - "nomCommune": "MOULLE" + "codePostal": "62450", + "codeCommune": "62593", + "libelleAcheminement": "MORVAL", + "nomCommune": "MORVAL" }, { - "codePostal": "62840", - "codeCommune": "62606", - "libelleAcheminement": "NEUVE CHAPELLE", - "nomCommune": "NEUVE CHAPELLE" + "codePostal": "62121", + "codeCommune": "62597", + "libelleAcheminement": "MOYENNEVILLE", + "nomCommune": "MOYENNEVILLE" }, { - "codePostal": "62124", - "codeCommune": "62608", - "libelleAcheminement": "NEUVILLE BOURJONVAL", - "nomCommune": "NEUVILLE BOURJONVAL" + "codePostal": "62152", + "codeCommune": "62603", + "libelleAcheminement": "NESLES", + "nomCommune": "NESLES" }, { - "codePostal": "62380", - "codeCommune": "62613", - "libelleAcheminement": "NIELLES LES BLEQUIN", - "nomCommune": "NIELLES LES BLEQUIN" + "codePostal": "62152", + "codeCommune": "62604", + "libelleAcheminement": "NEUFCHATEL HARDELOT", + "nomCommune": "NEUFCHATEL HARDELOT" }, { - "codePostal": "62221", - "codeCommune": "62628", - "libelleAcheminement": "NOYELLES SOUS LENS", - "nomCommune": "NOYELLES SOUS LENS" + "codePostal": "62170", + "codeCommune": "62610", + "libelleAcheminement": "NEUVILLE SOUS MONTREUIL", + "nomCommune": "NEUVILLE SOUS MONTREUIL" }, { - "codePostal": "62590", - "codeCommune": "62637", - "libelleAcheminement": "OIGNIES", - "nomCommune": "OIGNIES" + "codePostal": "62217", + "codeCommune": "62611", + "libelleAcheminement": "NEUVILLE VITASSE", + "nomCommune": "NEUVILLE VITASSE" }, { - "codePostal": "62130", - "codeCommune": "62641", - "libelleAcheminement": "OSTREVILLE", - "nomCommune": "OSTREVILLE" + "codePostal": "62580", + "codeCommune": "62612", + "libelleAcheminement": "NEUVIREUIL", + "nomCommune": "NEUVIREUIL" }, { - "codePostal": "62380", - "codeCommune": "62644", - "libelleAcheminement": "OUVE WIRQUIN", - "nomCommune": "OUVE WIRQUIN" + "codePostal": "62610", + "codeCommune": "62614", + "libelleAcheminement": "NIELLES LES ARDRES", + "nomCommune": "NIELLES LES ARDRES" + }, + { + "codePostal": "62120", + "codeCommune": "62620", + "libelleAcheminement": "NORRENT FONTES", + "nomCommune": "NORRENT FONTES" + }, + { + "codePostal": "62370", + "codeCommune": "62623", + "libelleAcheminement": "NOUVELLE EGLISE", + "nomCommune": "NOUVELLE EGLISE" }, { "codePostal": "62770", - "codeCommune": "62647", - "libelleAcheminement": "LE PARCQ", - "nomCommune": "LE PARCQ" + "codeCommune": "62625", + "libelleAcheminement": "NOYELLES LES HUMIERES", + "nomCommune": "NOYELLES LES HUMIERES" }, { - "codePostal": "62340", - "codeCommune": "62657", - "libelleAcheminement": "PIHEN LES GUINES", - "nomCommune": "PIHEN LES GUINES" + "codePostal": "62990", + "codeCommune": "62635", + "libelleAcheminement": "OFFIN", + "nomCommune": "OFFIN" }, { - "codePostal": "62860", - "codeCommune": "62673", - "libelleAcheminement": "QUEANT", - "nomCommune": "QUEANT" + "codePostal": "62460", + "codeCommune": "62642", + "libelleAcheminement": "OURTON", + "nomCommune": "OURTON" }, { - "codePostal": "62500", - "codeCommune": "62674", - "libelleAcheminement": "QUELMES", - "nomCommune": "QUELMES" + "codePostal": "62215", + "codeCommune": "62645", + "libelleAcheminement": "OYE PLAGE", + "nomCommune": "OYE PLAGE" }, { - "codePostal": "62140", - "codeCommune": "62677", - "libelleAcheminement": "LE QUESNOY EN ARTOIS", - "nomCommune": "LE QUESNOY EN ARTOIS" + "codePostal": "62134", + "codeCommune": "62668", + "libelleAcheminement": "PREDEFIN", + "nomCommune": "PREDEFIN" }, { - "codePostal": "62490", - "codeCommune": "62680", - "libelleAcheminement": "QUIERY LA MOTTE", - "nomCommune": "QUIERY LA MOTTE" + "codePostal": "62860", + "codeCommune": "62671", + "libelleAcheminement": "PRONVILLE EN ARTOIS", + "nomCommune": "PRONVILLE EN ARTOIS" }, { - "codePostal": "62650", - "codeCommune": "62682", - "libelleAcheminement": "QUILEN", - "nomCommune": "QUILEN" + "codePostal": "62240", + "codeCommune": "62678", + "libelleAcheminement": "QUESQUES", + "nomCommune": "QUESQUES" }, { - "codePostal": "62180", - "codeCommune": "62688", - "libelleAcheminement": "RANG DU FLIERS", - "nomCommune": "RANG DU FLIERS" + "codePostal": "62130", + "codeCommune": "62686", + "libelleAcheminement": "RAMECOURT", + "nomCommune": "RAMECOURT" }, { - "codePostal": "62140", - "codeCommune": "62690", - "libelleAcheminement": "RAYE SUR AUTHIE", - "nomCommune": "RAYE SUR AUTHIE" + "codePostal": "62850", + "codeCommune": "62692", + "libelleAcheminement": "REBERGUES", + "nomCommune": "REBERGUES" }, { - "codePostal": "62170", - "codeCommune": "62698", - "libelleAcheminement": "RECQUES SUR COURSE", - "nomCommune": "RECQUES SUR COURSE" + "codePostal": "62270", + "codeCommune": "62694", + "libelleAcheminement": "REBREUVE SUR CANCHE", + "nomCommune": "REBREUVE SUR CANCHE" }, { "codePostal": "62890", @@ -20466,28 +20436,16 @@ "nomCommune": "RECQUES SUR HEM" }, { - "codePostal": "62120", - "codeCommune": "62701", - "libelleAcheminement": "RELY", - "nomCommune": "RELY" - }, - { - "codePostal": "62720", - "codeCommune": "62711", - "libelleAcheminement": "RINXENT", - "nomCommune": "RINXENT" - }, - { - "codePostal": "62118", - "codeCommune": "62718", - "libelleAcheminement": "ROEUX", - "nomCommune": "ROEUX" + "codePostal": "62350", + "codeCommune": "62713", + "libelleAcheminement": "ROBECQ", + "nomCommune": "ROBECQ" }, { - "codePostal": "62120", - "codeCommune": "62721", - "libelleAcheminement": "ROQUETOIRE", - "nomCommune": "ROQUETOIRE" + "codePostal": "62450", + "codeCommune": "62715", + "libelleAcheminement": "ROCQUIGNY", + "nomCommune": "ROCQUIGNY" }, { "codePostal": "62650", @@ -20496,16 +20454,28 @@ "nomCommune": "RUMILLY" }, { - "codePostal": "62310", - "codeCommune": "62738", - "libelleAcheminement": "SAINS LES FRESSIN", - "nomCommune": "SAINS LES FRESSIN" + "codePostal": "62124", + "codeCommune": "62731", + "libelleAcheminement": "RUYAULCOURT", + "nomCommune": "RUYAULCOURT" }, { - "codePostal": "62223", - "codeCommune": "62744", - "libelleAcheminement": "STE CATHERINE", - "nomCommune": "STE CATHERINE" + "codePostal": "62840", + "codeCommune": "62736", + "libelleAcheminement": "SAILLY SUR LA LYS", + "nomCommune": "SAILLY SUR LA LYS" + }, + { + "codePostal": "62550", + "codeCommune": "62740", + "libelleAcheminement": "SAINS LES PERNES", + "nomCommune": "SAINS LES PERNES" + }, + { + "codePostal": "62140", + "codeCommune": "62743", + "libelleAcheminement": "STE AUSTREBERTHE", + "nomCommune": "STE AUSTREBERTHE" }, { "codePostal": "62770", @@ -20520,70 +20490,88 @@ "nomCommune": "ST HILAIRE COTTES" }, { - "codePostal": "62223", - "codeCommune": "62753", - "libelleAcheminement": "ST LAURENT BLANGY", - "nomCommune": "ST LAURENT BLANGY" + "codePostal": "62185", + "codeCommune": "62769", + "libelleAcheminement": "ST TRICAT", + "nomCommune": "ST TRICAT" }, { - "codePostal": "62560", - "codeCommune": "62760", - "libelleAcheminement": "ST MARTIN D HARDINGHEM", - "nomCommune": "ST MARTIN D HARDINGHEM" + "codePostal": "62350", + "codeCommune": "62770", + "libelleAcheminement": "ST VENANT", + "nomCommune": "ST VENANT" }, { - "codePostal": "62500", - "codeCommune": "62765", - "libelleAcheminement": "ST OMER", - "nomCommune": "ST OMER" + "codePostal": "62860", + "codeCommune": "62780", + "libelleAcheminement": "SAUCHY CAUCHY", + "nomCommune": "SAUCHY CAUCHY" }, { - "codePostal": "62162", - "codeCommune": "62766", - "libelleAcheminement": "ST OMER CAPELLE", - "nomCommune": "ST OMER CAPELLE" + "codePostal": "62860", + "codeCommune": "62782", + "libelleAcheminement": "SAUDEMONT", + "nomCommune": "SAUDEMONT" }, { - "codePostal": "62870", - "codeCommune": "62768", - "libelleAcheminement": "ST REMY AU BOIS", - "nomCommune": "ST REMY AU BOIS" + "codePostal": "62380", + "codeCommune": "62788", + "libelleAcheminement": "SENINGHEM", + "nomCommune": "SENINGHEM" }, { - "codePostal": "62170", - "codeCommune": "62787", - "libelleAcheminement": "SEMPY", - "nomCommune": "SEMPY" + "codePostal": "62240", + "codeCommune": "62789", + "libelleAcheminement": "SENLECQUES", + "nomCommune": "SENLECQUES" }, { - "codePostal": "62111", - "codeCommune": "62800", - "libelleAcheminement": "SOUASTRE", - "nomCommune": "SOUASTRE" + "codePostal": "62910", + "codeCommune": "62792", + "libelleAcheminement": "SERQUES", + "nomCommune": "SERQUES" }, { - "codePostal": "62810", - "codeCommune": "62804", - "libelleAcheminement": "SUS ST LEGER", - "nomCommune": "SUS ST LEGER" + "codePostal": "62530", + "codeCommune": "62793", + "libelleAcheminement": "SERVINS", + "nomCommune": "SERVINS" }, { - "codePostal": "62140", - "codeCommune": "62824", - "libelleAcheminement": "TORTEFONTAINE", - "nomCommune": "TORTEFONTAINE" + "codePostal": "62129", + "codeCommune": "62811", + "libelleAcheminement": "THEROUANNE", + "nomCommune": "THEROUANNE" }, { - "codePostal": "62270", - "codeCommune": "62833", - "libelleAcheminement": "VACQUERIE LE BOUCQ", - "nomCommune": "VACQUERIE LE BOUCQ" + "codePostal": "62690", + "codeCommune": "62816", + "libelleAcheminement": "TILLOY LES HERMAVILLE", + "nomCommune": "TILLOY LES HERMAVILLE" }, { - "codePostal": "62131", - "codeCommune": "62836", - "libelleAcheminement": "VAUDRICOURT", - "nomCommune": "VAUDRICOURT" + "codePostal": "62134", + "codeCommune": "62818", + "libelleAcheminement": "TILLY CAPELLE", + "nomCommune": "TILLY CAPELLE" + }, + { + "codePostal": "62310", + "codeCommune": "62823", + "libelleAcheminement": "TORCY", + "nomCommune": "TORCY" + }, + { + "codePostal": "62890", + "codeCommune": "62827", + "libelleAcheminement": "TOURNEHEM SUR LA HEM", + "nomCommune": "TOURNEHEM SUR LA HEM" + }, + { + "codePostal": "62310", + "codeCommune": "62828", + "libelleAcheminement": "TRAMECOURT", + "nomCommune": "TRAMECOURT" }, { "codePostal": "62390", @@ -20592,28 +20580,22 @@ "nomCommune": "VAULX" }, { - "codePostal": "62159", - "codeCommune": "62839", - "libelleAcheminement": "VAULX VRAUCOURT", - "nomCommune": "VAULX VRAUCOURT" - }, - { - "codePostal": "62310", - "codeCommune": "62843", - "libelleAcheminement": "VERCHIN", - "nomCommune": "VERCHIN" + "codePostal": "62560", + "codeCommune": "62844", + "libelleAcheminement": "VERCHOCQ", + "nomCommune": "VERCHOCQ" }, { - "codePostal": "62131", - "codeCommune": "62848", - "libelleAcheminement": "VERQUIN", - "nomCommune": "VERQUIN" + "codePostal": "62162", + "codeCommune": "62852", + "libelleAcheminement": "VIEILLE EGLISE", + "nomCommune": "VIEILLE EGLISE" }, { - "codePostal": "62144", - "codeCommune": "62854", - "libelleAcheminement": "VILLERS AU BOIS", - "nomCommune": "VILLERS AU BOIS" + "codePostal": "62450", + "codeCommune": "62855", + "libelleAcheminement": "VILLERS AU FLOS", + "nomCommune": "VILLERS AU FLOS" }, { "codePostal": "62690", @@ -20622,82 +20604,70 @@ "nomCommune": "VILLERS CHATEL" }, { - "codePostal": "62156", - "codeCommune": "62864", - "libelleAcheminement": "VIS EN ARTOIS", - "nomCommune": "VIS EN ARTOIS" - }, - { - "codePostal": "62490", - "codeCommune": "62865", - "libelleAcheminement": "VITRY EN ARTOIS", - "nomCommune": "VITRY EN ARTOIS" - }, - { - "codePostal": "62123", - "codeCommune": "62874", - "libelleAcheminement": "WANQUETIN", - "nomCommune": "WANQUETIN" + "codePostal": "62127", + "codeCommune": "62860", + "libelleAcheminement": "VILLERS SIR SIMON", + "nomCommune": "VILLERS SIR SIMON" }, { - "codePostal": "62450", - "codeCommune": "62876", - "libelleAcheminement": "WARLENCOURT EAUCOURT", - "nomCommune": "WARLENCOURT EAUCOURT" + "codePostal": "62250", + "codeCommune": "62867", + "libelleAcheminement": "WACQUINGHEN", + "nomCommune": "WACQUINGHEN" }, { - "codePostal": "62810", - "codeCommune": "62879", - "libelleAcheminement": "WARLUZEL", - "nomCommune": "WARLUZEL" + "codePostal": "62217", + "codeCommune": "62869", + "libelleAcheminement": "WAILLY", + "nomCommune": "WAILLY" }, { - "codePostal": "62142", - "codeCommune": "62880", - "libelleAcheminement": "LE WAST", - "nomCommune": "LE WAST" + "codePostal": "62580", + "codeCommune": "62892", + "libelleAcheminement": "WILLERVAL", + "nomCommune": "WILLERVAL" }, { - "codePostal": "62650", - "codeCommune": "62886", - "libelleAcheminement": "WICQUINGHEM", - "nomCommune": "WICQUINGHEM" + "codePostal": "62219", + "codeCommune": "62898", + "libelleAcheminement": "WISQUES", + "nomCommune": "WISQUES" }, { - "codePostal": "62630", - "codeCommune": "62887", - "libelleAcheminement": "WIDEHEM", - "nomCommune": "WIDEHEM" + "codePostal": "62120", + "codeCommune": "62901", + "libelleAcheminement": "WITTES", + "nomCommune": "WITTES" }, { - "codePostal": "62830", - "codeCommune": "62888", - "libelleAcheminement": "WIERRE AU BOIS", - "nomCommune": "WIERRE AU BOIS" + "codePostal": "62370", + "codeCommune": "62906", + "libelleAcheminement": "ZUTKERQUE", + "nomCommune": "ZUTKERQUE" }, { - "codePostal": "62500", - "codeCommune": "62905", - "libelleAcheminement": "ZUDAUSQUES", - "nomCommune": "ZUDAUSQUES" + "codePostal": "62124", + "codeCommune": "62909", + "libelleAcheminement": "YTRES", + "nomCommune": "YTRES" }, { - "codePostal": "63420", - "codeCommune": "63006", - "libelleAcheminement": "ANZAT LE LUGUET", - "nomCommune": "ANZAT LE LUGUET" + "codePostal": "63980", + "codeCommune": "63002", + "libelleAcheminement": "AIX LA FAYETTE", + "nomCommune": "AIX LA FAYETTE" }, { - "codePostal": "63420", - "codeCommune": "63007", - "libelleAcheminement": "APCHAT", - "nomCommune": "APCHAT" + "codePostal": "63770", + "codeCommune": "63004", + "libelleAcheminement": "LES ANCIZES COMPS", + "nomCommune": "LES ANCIZES COMPS" }, { - "codePostal": "63930", - "codeCommune": "63016", - "libelleAcheminement": "AUGEROLLES", - "nomCommune": "AUGEROLLES" + "codePostal": "63120", + "codeCommune": "63015", + "libelleAcheminement": "AUBUSSON D AUVERGNE", + "nomCommune": "AUBUSSON D AUVERGNE" }, { "codePostal": "63570", @@ -20706,10 +20676,16 @@ "nomCommune": "AUZAT LA COMBELLE" }, { - "codePostal": "63910", - "codeCommune": "63049", - "libelleAcheminement": "BOUZEL", - "nomCommune": "BOUZEL" + "codePostal": "63690", + "codeCommune": "63024", + "libelleAcheminement": "AVEZE", + "nomCommune": "AVEZE" + }, + { + "codePostal": "63970", + "codeCommune": "63026", + "libelleAcheminement": "AYDAT", + "nomCommune": "AYDAT" }, { "codePostal": "63570", @@ -20718,28 +20694,34 @@ "nomCommune": "BRASSAC LES MINES" }, { - "codePostal": "63500", - "codeCommune": "63051", - "libelleAcheminement": "BRENAT", - "nomCommune": "BRENAT" + "codePostal": "63820", + "codeCommune": "63053", + "libelleAcheminement": "BRIFFONS", + "nomCommune": "BRIFFONS" }, { - "codePostal": "63340", - "codeCommune": "63052", - "libelleAcheminement": "LE BREUIL SUR COUZE", - "nomCommune": "LE BREUIL SUR COUZE" + "codePostal": "63118", + "codeCommune": "63063", + "libelleAcheminement": "CEBAZAT", + "nomCommune": "CEBAZAT" }, { - "codePostal": "63880", - "codeCommune": "63057", - "libelleAcheminement": "LE BRUGERON", - "nomCommune": "LE BRUGERON" + "codePostal": "63620", + "codeCommune": "63064", + "libelleAcheminement": "LA CELLE", + "nomCommune": "LA CELLE" }, { - "codePostal": "63340", - "codeCommune": "63074", - "libelleAcheminement": "CHALUS", - "nomCommune": "CHALUS" + "codePostal": "63330", + "codeCommune": "63067", + "libelleAcheminement": "LA CELLETTE", + "nomCommune": "LA CELLETTE" + }, + { + "codePostal": "63320", + "codeCommune": "63073", + "libelleAcheminement": "CHADELEUF", + "nomCommune": "CHADELEUF" }, { "codePostal": "63400", @@ -20748,34 +20730,16 @@ "nomCommune": "CHAMALIERES" }, { - "codePostal": "63580", - "codeCommune": "63079", - "libelleAcheminement": "CHAMPAGNAT LE JEUNE", - "nomCommune": "CHAMPAGNAT LE JEUNE" - }, - { - "codePostal": "63320", - "codeCommune": "63080", - "libelleAcheminement": "CHAMPEIX", - "nomCommune": "CHAMPEIX" - }, - { - "codePostal": "63420", - "codeCommune": "63087", - "libelleAcheminement": "LA CHAPELLE MARCOUSSE", - "nomCommune": "LA CHAPELLE MARCOUSSE" - }, - { - "codePostal": "63340", - "codeCommune": "63091", - "libelleAcheminement": "CHARBONNIER LES MINES", - "nomCommune": "CHARBONNIER LES MINES" + "codePostal": "63980", + "codeCommune": "63076", + "libelleAcheminement": "CHAMBON SUR DOLORE", + "nomCommune": "CHAMBON SUR DOLORE" }, { - "codePostal": "63410", - "codeCommune": "63093", - "libelleAcheminement": "CHARBONNIERES LES VIEILLES", - "nomCommune": "CHARBONNIERES LES VIEILLES" + "codePostal": "63260", + "codeCommune": "63090", + "libelleAcheminement": "CHAPTUZAT", + "nomCommune": "CHAPTUZAT" }, { "codePostal": "63640", @@ -20785,15 +20749,9 @@ }, { "codePostal": "63290", - "codeCommune": "63095", - "libelleAcheminement": "CHARNAT", - "nomCommune": "CHARNAT" - }, - { - "codePostal": "63330", - "codeCommune": "63101", - "libelleAcheminement": "CHATEAU SUR CHER", - "nomCommune": "CHATEAU SUR CHER" + "codeCommune": "63102", + "libelleAcheminement": "CHATELDON", + "nomCommune": "CHATELDON" }, { "codePostal": "63660", @@ -20802,34 +20760,40 @@ "nomCommune": "LA CHAULME" }, { - "codePostal": "63100", + "codePostal": "63117", + "codeCommune": "63106", + "libelleAcheminement": "CHAURIAT", + "nomCommune": "CHAURIAT" + }, + { + "codePostal": "63720", + "codeCommune": "63107", + "libelleAcheminement": "CHAVAROUX", + "nomCommune": "CHAVAROUX" + }, + { + "codePostal": "63000", "codeCommune": "63113", "libelleAcheminement": "CLERMONT FERRAND", "nomCommune": "CLERMONT FERRAND" }, { - "codePostal": "63380", - "codeCommune": "63115", - "libelleAcheminement": "COMBRAILLES", - "nomCommune": "COMBRAILLES" - }, - { - "codePostal": "63450", - "codeCommune": "63123", - "libelleAcheminement": "COURNOLS", - "nomCommune": "COURNOLS" + "codePostal": "63340", + "codeCommune": "63114", + "libelleAcheminement": "COLLANGES", + "nomCommune": "COLLANGES" }, { - "codePostal": "63700", - "codeCommune": "63130", - "libelleAcheminement": "LA CROUZILLE", - "nomCommune": "LA CROUZILLE" + "codePostal": "63460", + "codeCommune": "63116", + "libelleAcheminement": "COMBRONDE", + "nomCommune": "COMBRONDE" }, { - "codePostal": "63590", - "codeCommune": "63132", - "libelleAcheminement": "CUNLHAT", - "nomCommune": "CUNLHAT" + "codePostal": "63810", + "codeCommune": "63129", + "libelleAcheminement": "CROS", + "nomCommune": "CROS" }, { "codePostal": "63340", @@ -20838,34 +20802,70 @@ "nomCommune": "DAUZAT SUR VODABLE" }, { - "codePostal": "63720", - "codeCommune": "63148", - "libelleAcheminement": "ENNEZAT", - "nomCommune": "ENNEZAT" + "codePostal": "63520", + "codeCommune": "63136", + "libelleAcheminement": "DOMAIZE", + "nomCommune": "DOMAIZE" }, { - "codePostal": "63850", - "codeCommune": "63153", - "libelleAcheminement": "ESPINCHAL", - "nomCommune": "ESPINCHAL" + "codePostal": "63260", + "codeCommune": "63143", + "libelleAcheminement": "EFFIAT", + "nomCommune": "EFFIAT" + }, + { + "codePostal": "63530", + "codeCommune": "63150", + "libelleAcheminement": "ENVAL", + "nomCommune": "ENVAL" + }, + { + "codePostal": "63300", + "codeCommune": "63151", + "libelleAcheminement": "ESCOUTOUX", + "nomCommune": "ESCOUTOUX" + }, + { + "codePostal": "63160", + "codeCommune": "63154", + "libelleAcheminement": "ESPIRAT", + "nomCommune": "ESPIRAT" + }, + { + "codePostal": "63160", + "codeCommune": "63157", + "libelleAcheminement": "FAYET LE CHATEAU", + "nomCommune": "FAYET LE CHATEAU" + }, + { + "codePostal": "63630", + "codeCommune": "63158", + "libelleAcheminement": "FAYET RONAYE", + "nomCommune": "FAYET RONAYE" + }, + { + "codePostal": "63740", + "codeCommune": "63163", + "libelleAcheminement": "GELLES", + "nomCommune": "GELLES" }, { "codePostal": "63620", - "codeCommune": "63159", - "libelleAcheminement": "FERNOEL", - "nomCommune": "FERNOEL" + "codeCommune": "63165", + "libelleAcheminement": "GIAT", + "nomCommune": "GIAT" }, { - "codePostal": "63600", - "codeCommune": "63161", - "libelleAcheminement": "LA FORIE", - "nomCommune": "LA FORIE" + "codePostal": "63200", + "codeCommune": "63167", + "libelleAcheminement": "GIMEAUX", + "nomCommune": "GIMEAUX" }, { - "codePostal": "63360", - "codeCommune": "63164", - "libelleAcheminement": "GERZAT", - "nomCommune": "GERZAT" + "codePostal": "63230", + "codeCommune": "63170", + "libelleAcheminement": "LA GOUTELLE", + "nomCommune": "LA GOUTELLE" }, { "codePostal": "63600", @@ -20874,76 +20874,76 @@ "nomCommune": "GRANDRIF" }, { - "codePostal": "63990", - "codeCommune": "63179", - "libelleAcheminement": "JOB", - "nomCommune": "JOB" + "codePostal": "63460", + "codeCommune": "63181", + "libelleAcheminement": "JOZERAND", + "nomCommune": "JOZERAND" }, { - "codePostal": "63370", - "codeCommune": "63193", - "libelleAcheminement": "LEMPDES", - "nomCommune": "LEMPDES" + "codePostal": "63680", + "codeCommune": "63192", + "libelleAcheminement": "LA TOUR D AUVERGNE", + "nomCommune": "LA TOUR D AUVERGNE" }, { - "codePostal": "63190", - "codeCommune": "63194", - "libelleAcheminement": "LEMPTY", - "nomCommune": "LEMPTY" + "codePostal": "63290", + "codeCommune": "63196", + "libelleAcheminement": "LIMONS", + "nomCommune": "LIMONS" }, { - "codePostal": "63360", - "codeCommune": "63200", - "libelleAcheminement": "LUSSAT", - "nomCommune": "LUSSAT" + "codePostal": "63410", + "codeCommune": "63198", + "libelleAcheminement": "LOUBEYRAT", + "nomCommune": "LOUBEYRAT" }, { - "codePostal": "63200", - "codeCommune": "63212", - "libelleAcheminement": "MARSAT", - "nomCommune": "MARSAT" + "codePostal": "63350", + "codeCommune": "63201", + "libelleAcheminement": "LUZILLAT", + "nomCommune": "LUZILLAT" }, { - "codePostal": "63230", - "codeCommune": "63219", - "libelleAcheminement": "MAZAYE", - "nomCommune": "MAZAYE" + "codePostal": "63200", + "codeCommune": "63203", + "libelleAcheminement": "MALAUZAT", + "nomCommune": "MALAUZAT" }, { - "codePostal": "63200", - "codeCommune": "63224", - "libelleAcheminement": "MENETROL", - "nomCommune": "MENETROL" + "codePostal": "63440", + "codeCommune": "63208", + "libelleAcheminement": "MARCILLAT", + "nomCommune": "MARCILLAT" }, { - "codePostal": "63190", - "codeCommune": "63229", - "libelleAcheminement": "MOISSAT", - "nomCommune": "MOISSAT" + "codePostal": "63940", + "codeCommune": "63211", + "libelleAcheminement": "MARSAC EN LIVRADOIS", + "nomCommune": "MARSAC EN LIVRADOIS" }, { - "codePostal": "63890", - "codeCommune": "63230", - "libelleAcheminement": "LE MONESTIER", - "nomCommune": "LE MONESTIER" + "codePostal": "63420", + "codeCommune": "63220", + "libelleAcheminement": "MAZOIRES", + "nomCommune": "MAZOIRES" }, { - "codePostal": "63310", - "codeCommune": "63232", - "libelleAcheminement": "MONS", - "nomCommune": "MONS" + "codePostal": "63240", + "codeCommune": "63236", + "libelleAcheminement": "LE MONT DORE", + "nomCommune": "MONT DORE" }, { - "codePostal": "63460", - "codeCommune": "63235", - "libelleAcheminement": "MONTCEL", - "nomCommune": "MONTCEL" + "codePostal": "63230", + "codeCommune": "63238", + "libelleAcheminement": "MONTFERMY", + "nomCommune": "MONTFERMY" }, { - "codePostal": "63340", - "codeCommune": "63242", - "libelleAcheminement": "MORIAT", - "nomCommune": "MORIAT" + "codePostal": "63260", + "codeCommune": "63240", + "libelleAcheminement": "MONTPENSIER", + "nomCommune": "MONTPENSIER" }, { "codePostal": "63200", @@ -20952,34 +20952,46 @@ "nomCommune": "CHAMBARON SUR MORGE" }, { - "codePostal": "63200", - "codeCommune": "63245", - "libelleAcheminement": "MOZAC", - "nomCommune": "MOZAC" + "codePostal": "63150", + "codeCommune": "63246", + "libelleAcheminement": "MURAT LE QUAIRE", + "nomCommune": "MURAT LE QUAIRE" }, { - "codePostal": "63120", - "codeCommune": "63249", - "libelleAcheminement": "NERONDE SUR DORE", - "nomCommune": "NERONDE SUR DORE" + "codePostal": "63320", + "codeCommune": "63250", + "libelleAcheminement": "NESCHERS", + "nomCommune": "NESCHERS" }, { - "codePostal": "63560", - "codeCommune": "63251", - "libelleAcheminement": "NEUF EGLISE", - "nomCommune": "NEUF EGLISE" + "codePostal": "63160", + "codeCommune": "63252", + "libelleAcheminement": "NEUVILLE", + "nomCommune": "NEUVILLE" }, { - "codePostal": "63210", - "codeCommune": "63257", - "libelleAcheminement": "OLBY", - "nomCommune": "OLBY" + "codePostal": "63220", + "codeCommune": "63256", + "libelleAcheminement": "NOVACELLES", + "nomCommune": "NOVACELLES" }, { - "codePostal": "63190", - "codeCommune": "63265", - "libelleAcheminement": "ORLEAT", - "nomCommune": "ORLEAT" + "codePostal": "63500", + "codeCommune": "63261", + "libelleAcheminement": "ORBEIL", + "nomCommune": "ORBEIL" + }, + { + "codePostal": "63290", + "codeCommune": "63271", + "libelleAcheminement": "PASLIERES", + "nomCommune": "PASLIERES" + }, + { + "codePostal": "63210", + "codeCommune": "63274", + "libelleAcheminement": "PERPEZAT", + "nomCommune": "PERPEZAT" }, { "codePostal": "63500", @@ -20988,118 +21000,124 @@ "nomCommune": "PERRIER" }, { - "codePostal": "63330", - "codeCommune": "63281", - "libelleAcheminement": "PIONSAT", - "nomCommune": "PIONSAT" + "codePostal": "63920", + "codeCommune": "63276", + "libelleAcheminement": "PESCHADOIRES", + "nomCommune": "PESCHADOIRES" }, { - "codePostal": "63230", - "codeCommune": "63285", - "libelleAcheminement": "PONTGIBAUD", - "nomCommune": "PONTGIBAUD" + "codePostal": "63113", + "codeCommune": "63279", + "libelleAcheminement": "PICHERANDE", + "nomCommune": "PICHERANDE" }, { - "codePostal": "63420", - "codeCommune": "63303", - "libelleAcheminement": "ROCHE CHARLES LA MAYRAND", - "nomCommune": "ROCHE CHARLES LA MAYRAND" + "codePostal": "63200", + "codeCommune": "63288", + "libelleAcheminement": "PROMPSAT", + "nomCommune": "PROMPSAT" }, { - "codePostal": "63260", - "codeCommune": "63311", - "libelleAcheminement": "ST AGOULIN", - "nomCommune": "ST AGOULIN" + "codePostal": "63470", + "codeCommune": "63289", + "libelleAcheminement": "PRONDINES", + "nomCommune": "PRONDINES" }, { - "codePostal": "63520", - "codeCommune": "63334", - "libelleAcheminement": "ST DIER D AUVERGNE", - "nomCommune": "ST DIER D AUVERGNE" + "codePostal": "63290", + "codeCommune": "63291", + "libelleAcheminement": "PUY GUILLAUME", + "nomCommune": "PUY GUILLAUME" }, { - "codePostal": "63680", - "codeCommune": "63336", - "libelleAcheminement": "ST DONAT", - "nomCommune": "ST DONAT" + "codePostal": "63160", + "codeCommune": "63297", + "libelleAcheminement": "REIGNAT", + "nomCommune": "REIGNAT" }, { - "codePostal": "63890", - "codeCommune": "63337", - "libelleAcheminement": "ST ELOY LA GLACIERE", - "nomCommune": "ST ELOY LA GLACIERE" + "codePostal": "63800", + "codeCommune": "63306", + "libelleAcheminement": "LA ROCHE NOIRE", + "nomCommune": "LA ROCHE NOIRE" }, { - "codePostal": "63600", - "codeCommune": "63341", - "libelleAcheminement": "ST FERREOL DES COTES", - "nomCommune": "ST FERREOL DES COTES" + "codePostal": "63540", + "codeCommune": "63307", + "libelleAcheminement": "ROMAGNAT", + "nomCommune": "ROMAGNAT" }, { - "codePostal": "63340", - "codeCommune": "63352", - "libelleAcheminement": "ST GERMAIN LEMBRON", - "nomCommune": "ST GERMAIN LEMBRON" + "codePostal": "63450", + "codeCommune": "63315", + "libelleAcheminement": "ST AMANT TALLENDE", + "nomCommune": "ST AMANT TALLENDE" }, { - "codePostal": "63440", - "codeCommune": "63358", - "libelleAcheminement": "ST HILAIRE LA CROIX", - "nomCommune": "ST HILAIRE LA CROIX" + "codePostal": "63410", + "codeCommune": "63318", + "libelleAcheminement": "ST ANGEL", + "nomCommune": "ST ANGEL" }, { - "codePostal": "63380", - "codeCommune": "63359", - "libelleAcheminement": "ST HILAIRE LES MONGES", - "nomCommune": "ST HILAIRE LES MONGES" + "codePostal": "63360", + "codeCommune": "63322", + "libelleAcheminement": "ST BEAUZIRE", + "nomCommune": "ST BEAUZIRE" }, { - "codePostal": "63160", - "codeCommune": "63368", - "libelleAcheminement": "ST JULIEN DE COPPEL", - "nomCommune": "ST JULIEN DE COPPEL" + "codePostal": "63390", + "codeCommune": "63329", + "libelleAcheminement": "STE CHRISTINE", + "nomCommune": "STE CHRISTINE" }, { - "codePostal": "63390", - "codeCommune": "63369", - "libelleAcheminement": "ST JULIEN LA GENESTE", - "nomCommune": "ST JULIEN LA GENESTE" + "codePostal": "63660", + "codeCommune": "63331", + "libelleAcheminement": "ST CLEMENT DE VALORGUE", + "nomCommune": "ST CLEMENT DE VALORGUE" }, { - "codePostal": "63350", - "codeCommune": "63372", - "libelleAcheminement": "ST LAURE", - "nomCommune": "ST LAURE" + "codePostal": "63310", + "codeCommune": "63332", + "libelleAcheminement": "ST CLEMENT DE REGNAT", + "nomCommune": "ST CLEMENT DE REGNAT" }, { - "codePostal": "63270", - "codeCommune": "63378", - "libelleAcheminement": "ST MAURICE", - "nomCommune": "ST MAURICE" + "codePostal": "63850", + "codeCommune": "63346", + "libelleAcheminement": "ST GENES CHAMPESPE", + "nomCommune": "ST GENES CHAMPESPE" }, { - "codePostal": "63710", - "codeCommune": "63380", - "libelleAcheminement": "ST NECTAIRE", - "nomCommune": "ST NECTAIRE" + "codePostal": "63800", + "codeCommune": "63350", + "libelleAcheminement": "ST GEORGES SUR ALLIER", + "nomCommune": "ST GEORGES SUR ALLIER" }, { - "codePostal": "63440", - "codeCommune": "63382", - "libelleAcheminement": "ST PARDOUX", - "nomCommune": "ST PARDOUX" + "codePostal": "63230", + "codeCommune": "63363", + "libelleAcheminement": "ST JACQUES D AMBUR", + "nomCommune": "ST JACQUES D AMBUR" }, { - "codePostal": "63610", - "codeCommune": "63383", - "libelleAcheminement": "ST PIERRE COLAMINE", - "nomCommune": "ST PIERRE COLAMINE" + "codePostal": "63490", + "codeCommune": "63366", + "libelleAcheminement": "ST JEAN EN VAL", + "nomCommune": "ST JEAN EN VAL" }, { - "codePostal": "63550", - "codeCommune": "63393", - "libelleAcheminement": "ST REMY SUR DUROLLE", - "nomCommune": "ST REMY SUR DUROLLE" + "codePostal": "63310", + "codeCommune": "63387", + "libelleAcheminement": "ST PRIEST BRAMEFANT", + "nomCommune": "ST PRIEST BRAMEFANT" + }, + { + "codePostal": "63440", + "codeCommune": "63390", + "libelleAcheminement": "ST QUINTIN SUR SIOULE", + "nomCommune": "ST QUINTIN SUR SIOULE" }, { "codePostal": "63450", @@ -21108,16 +21126,10 @@ "nomCommune": "ST SANDOUX" }, { - "codePostal": "63950", - "codeCommune": "63397", - "libelleAcheminement": "ST SAUVES D AUVERGNE", - "nomCommune": "ST SAUVES D AUVERGNE" - }, - { - "codePostal": "63220", - "codeCommune": "63398", - "libelleAcheminement": "ST SAUVEUR LA SAGNE", - "nomCommune": "ST SAUVEUR LA SAGNE" + "codePostal": "63550", + "codeCommune": "63402", + "libelleAcheminement": "ST VICTOR MONTVIANEIX", + "nomCommune": "ST VICTOR MONTVIANEIX" }, { "codePostal": "63260", @@ -21132,16 +21144,22 @@ "nomCommune": "SAURET BESSERVE" }, { - "codePostal": "63840", - "codeCommune": "63412", - "libelleAcheminement": "SAUVESSANGES", - "nomCommune": "SAUVESSANGES" + "codePostal": "63320", + "codeCommune": "63409", + "libelleAcheminement": "SAURIER", + "nomCommune": "SAURIER" }, { - "codePostal": "63730", - "codeCommune": "63413", - "libelleAcheminement": "LA SAUVETAT", - "nomCommune": "LA SAUVETAT" + "codePostal": "63120", + "codeCommune": "63414", + "libelleAcheminement": "SAUVIAT", + "nomCommune": "SAUVIAT" + }, + { + "codePostal": "63490", + "codeCommune": "63415", + "libelleAcheminement": "SAUXILLANGES", + "nomCommune": "SAUXILLANGES" }, { "codePostal": "63530", @@ -21150,16 +21168,34 @@ "nomCommune": "SAYAT" }, { - "codePostal": "63560", - "codeCommune": "63419", - "libelleAcheminement": "SERVANT", - "nomCommune": "SERVANT" + "codePostal": "63690", + "codeCommune": "63426", + "libelleAcheminement": "TAUVES", + "nomCommune": "TAUVES" }, { - "codePostal": "63490", - "codeCommune": "63423", - "libelleAcheminement": "SUGERES", - "nomCommune": "SUGERES" + "codePostal": "63460", + "codeCommune": "63427", + "libelleAcheminement": "TEILHEDE", + "nomCommune": "TEILHEDE" + }, + { + "codePostal": "63300", + "codeCommune": "63430", + "libelleAcheminement": "THIERS", + "nomCommune": "THIERS" + }, + { + "codePostal": "63600", + "codeCommune": "63431", + "libelleAcheminement": "THIOLIERES", + "nomCommune": "THIOLIERES" + }, + { + "codePostal": "63590", + "codeCommune": "63434", + "libelleAcheminement": "TOURS SUR MEYMONT", + "nomCommune": "TOURS SUR MEYMONT" }, { "codePostal": "63320", @@ -21168,22 +21204,28 @@ "nomCommune": "TOURZEL RONZIERES" }, { - "codePostal": "63520", - "codeCommune": "63438", - "libelleAcheminement": "TREZIOUX", - "nomCommune": "TREZIOUX" + "codePostal": "63490", + "codeCommune": "63439", + "libelleAcheminement": "USSON", + "nomCommune": "USSON" }, { - "codePostal": "63600", - "codeCommune": "63441", - "libelleAcheminement": "VALCIVIERES", - "nomCommune": "VALCIVIERES" + "codePostal": "63710", + "codeCommune": "63449", + "libelleAcheminement": "LE VERNET STE MARGUERITE", + "nomCommune": "LE VERNET STE MARGUERITE" }, { - "codePostal": "63580", - "codeCommune": "63442", - "libelleAcheminement": "VALZ SOUS CHATEAUNEUF", - "nomCommune": "VALZ SOUS CHATEAUNEUF" + "codePostal": "63470", + "codeCommune": "63450", + "libelleAcheminement": "VERNEUGHEOL", + "nomCommune": "VERNEUGHEOL" + }, + { + "codePostal": "63910", + "codeCommune": "63453", + "libelleAcheminement": "VERTAIZON", + "nomCommune": "VERTAIZON" }, { "codePostal": "63960", @@ -21197,12 +21239,6 @@ "libelleAcheminement": "VICHEL", "nomCommune": "VICHEL" }, - { - "codePostal": "63340", - "codeCommune": "63458", - "libelleAcheminement": "VILLENEUVE", - "nomCommune": "VILLENEUVE" - }, { "codePostal": "63350", "codeCommune": "63461", @@ -21210,46 +21246,70 @@ "nomCommune": "VINZELLES" }, { - "codePostal": "64360", - "codeCommune": "64005", - "libelleAcheminement": "ABOS", - "nomCommune": "ABOS" - }, - { - "codePostal": "64220", - "codeCommune": "64008", - "libelleAcheminement": "AHAXE ALCIETTE BASCASSAN", - "nomCommune": "AHAXE ALCIETTE BASCASSAN" + "codePostal": "63410", + "codeCommune": "63464", + "libelleAcheminement": "VITRAC", + "nomCommune": "VITRAC" + }, + { + "codePostal": "63840", + "codeCommune": "63465", + "libelleAcheminement": "VIVEROLS", + "nomCommune": "VIVEROLS" + }, + { + "codePostal": "63200", + "codeCommune": "63473", + "libelleAcheminement": "YSSAC LA TOURETTE", + "nomCommune": "YSSAC LA TOURETTE" + }, + { + "codePostal": "64210", + "codeCommune": "64009", + "libelleAcheminement": "AHETZE", + "nomCommune": "AHETZE" + }, + { + "codePostal": "64470", + "codeCommune": "64017", + "libelleAcheminement": "ALOS SIBAS ABENSE", + "nomCommune": "ALOS SIBAS ABENSE" }, { "codePostal": "64120", - "codeCommune": "64010", - "libelleAcheminement": "AICIRITS CAMOU SUHAST", - "nomCommune": "AICIRITS CAMOU SUHAST" + "codeCommune": "64019", + "libelleAcheminement": "AMOROTS SUCCOS", + "nomCommune": "AMOROTS SUCCOS" }, { - "codePostal": "64430", - "codeCommune": "64016", - "libelleAcheminement": "ALDUDES", - "nomCommune": "ALDUDES" + "codePostal": "64600", + "codeCommune": "64024", + "libelleAcheminement": "ANGLET", + "nomCommune": "ANGLET" + }, + { + "codePostal": "64350", + "codeCommune": "64028", + "libelleAcheminement": "ANOYE", + "nomCommune": "ANOYE" }, { "codePostal": "64190", - "codeCommune": "64025", - "libelleAcheminement": "ANGOUS", - "nomCommune": "ANGOUS" + "codeCommune": "64032", + "libelleAcheminement": "ARAUJUZON", + "nomCommune": "ARAUJUZON" }, { - "codePostal": "64570", - "codeCommune": "64029", - "libelleAcheminement": "ARAMITS", - "nomCommune": "ARAMITS" + "codePostal": "64230", + "codeCommune": "64037", + "libelleAcheminement": "ARBUS", + "nomCommune": "ARBUS" }, { - "codePostal": "64210", - "codeCommune": "64035", - "libelleAcheminement": "ARBONNE", - "nomCommune": "ARBONNE" + "codePostal": "64200", + "codeCommune": "64038", + "libelleAcheminement": "ARCANGUES", + "nomCommune": "ARCANGUES" }, { "codePostal": "64300", @@ -21257,53 +21317,77 @@ "libelleAcheminement": "ARGAGNON", "nomCommune": "ARGAGNON" }, - { - "codePostal": "64370", - "codeCommune": "64048", - "libelleAcheminement": "ARNOS", - "nomCommune": "ARNOS" - }, { "codePostal": "64120", - "codeCommune": "64049", - "libelleAcheminement": "AROUE ITHOROTS OLHAIBY", - "nomCommune": "AROUE ITHOROTS OLHAIBY" + "codeCommune": "64045", + "libelleAcheminement": "ARHANSUS", + "nomCommune": "ARHANSUS" }, { - "codePostal": "64130", - "codeCommune": "64050", - "libelleAcheminement": "ARRAST LARREBIEU", - "nomCommune": "ARRAST LARREBIEU" + "codePostal": "64640", + "codeCommune": "64046", + "libelleAcheminement": "ARMENDARITS", + "nomCommune": "ARMENDARITS" }, { - "codePostal": "64420", - "codeCommune": "64059", - "libelleAcheminement": "ARTIGUELOUTAN", - "nomCommune": "ARTIGUELOUTAN" + "codePostal": "64120", + "codeCommune": "64051", + "libelleAcheminement": "ARRAUTE CHARRITTE", + "nomCommune": "ARRAUTE CHARRITTE" }, { "codePostal": "64800", - "codeCommune": "64068", - "libelleAcheminement": "ASSON", - "nomCommune": "ASSON" + "codeCommune": "64058", + "libelleAcheminement": "ARTHEZ D ASSON", + "nomCommune": "ARTHEZ D ASSON" + }, + { + "codePostal": "64230", + "codeCommune": "64060", + "libelleAcheminement": "ARTIGUELOUVE", + "nomCommune": "ARTIGUELOUVE" }, { "codePostal": "64260", - "codeCommune": "64069", - "libelleAcheminement": "ASTE BEON", - "nomCommune": "ASTE BEON" + "codeCommune": "64062", + "libelleAcheminement": "ARUDY", + "nomCommune": "ARUDY" }, { - "codePostal": "64230", - "codeCommune": "64073", - "libelleAcheminement": "AUBIN", - "nomCommune": "AUBIN" + "codePostal": "64660", + "codeCommune": "64064", + "libelleAcheminement": "ASASP ARROS", + "nomCommune": "ASASP ARROS" }, { - "codePostal": "64460", - "codeCommune": "64089", - "libelleAcheminement": "BALEIX", - "nomCommune": "BALEIX" + "codePostal": "64510", + "codeCommune": "64067", + "libelleAcheminement": "ASSAT", + "nomCommune": "ASSAT" + }, + { + "codePostal": "64450", + "codeCommune": "64077", + "libelleAcheminement": "AUGA", + "nomCommune": "AUGA" + }, + { + "codePostal": "64450", + "codeCommune": "64078", + "libelleAcheminement": "AURIAC", + "nomCommune": "AURIAC" + }, + { + "codePostal": "64390", + "codeCommune": "64083", + "libelleAcheminement": "AUTEVIELLE ST MARTIN BIDEREN", + "nomCommune": "AUTEVIELLE ST MARTIN BIDEREN" + }, + { + "codePostal": "64300", + "codeCommune": "64088", + "libelleAcheminement": "BALANSUN", + "nomCommune": "BALANSUN" }, { "codePostal": "64330", @@ -21312,16 +21396,22 @@ "nomCommune": "BALIRACQ MAUMUSSON" }, { - "codePostal": "64530", - "codeCommune": "64097", - "libelleAcheminement": "BARZUN", - "nomCommune": "BARZUN" + "codePostal": "64800", + "codeCommune": "64101", + "libelleAcheminement": "BAUDREIX", + "nomCommune": "BAUDREIX" }, { - "codePostal": "64460", - "codeCommune": "64103", - "libelleAcheminement": "BEDEILLE", - "nomCommune": "BEDEILLE" + "codePostal": "64120", + "codeCommune": "64105", + "libelleAcheminement": "BEGUIOS", + "nomCommune": "BEGUIOS" + }, + { + "codePostal": "64270", + "codeCommune": "64108", + "libelleAcheminement": "BELLOCQ", + "nomCommune": "BELLOCQ" }, { "codePostal": "64440", @@ -21330,22 +21420,16 @@ "nomCommune": "BEOST" }, { - "codePostal": "64460", - "codeCommune": "64111", - "libelleAcheminement": "BENTAYOU SEREE", - "nomCommune": "BENTAYOU SEREE" - }, - { - "codePostal": "64300", - "codeCommune": "64112", - "libelleAcheminement": "BERENX", - "nomCommune": "BERENX" + "codePostal": "64270", + "codeCommune": "64113", + "libelleAcheminement": "BERGOUEY VIELLENAVE", + "nomCommune": "BERGOUEY VIELLENAVE" }, { - "codePostal": "64130", - "codeCommune": "64115", - "libelleAcheminement": "BERROGAIN LARUNS", - "nomCommune": "BERROGAIN LARUNS" + "codePostal": "64350", + "codeCommune": "64118", + "libelleAcheminement": "BETRACQ", + "nomCommune": "BETRACQ" }, { "codePostal": "64800", @@ -21354,40 +21438,70 @@ "nomCommune": "BEUSTE" }, { - "codePostal": "64260", - "codeCommune": "64127", - "libelleAcheminement": "BIELLE", - "nomCommune": "BIELLE" + "codePostal": "64210", + "codeCommune": "64125", + "libelleAcheminement": "BIDART", + "nomCommune": "BIDART" }, { - "codePostal": "64240", - "codeCommune": "64134", - "libelleAcheminement": "BONLOC", - "nomCommune": "BONLOC" + "codePostal": "64140", + "codeCommune": "64129", + "libelleAcheminement": "BILLERE", + "nomCommune": "BILLERE" + }, + { + "codePostal": "64700", + "codeCommune": "64130", + "libelleAcheminement": "BIRIATOU", + "nomCommune": "BIRIATOU" }, { "codePostal": "64300", - "codeCommune": "64135", - "libelleAcheminement": "BONNUT", - "nomCommune": "BONNUT" + "codeCommune": "64131", + "libelleAcheminement": "BIRON", + "nomCommune": "BIRON" }, { - "codePostal": "64410", - "codeCommune": "64143", - "libelleAcheminement": "BOUILLON", - "nomCommune": "BOUILLON" + "codePostal": "64320", + "codeCommune": "64132", + "libelleAcheminement": "BIZANOS", + "nomCommune": "BIZANOS" }, { - "codePostal": "64800", - "codeCommune": "64148", - "libelleAcheminement": "BRUGES CAPBIS MIFAGET", - "nomCommune": "BRUGES CAPBIS MIFAGET" + "codePostal": "64450", + "codeCommune": "64146", + "libelleAcheminement": "BOURNOS", + "nomCommune": "BOURNOS" }, { - "codePostal": "64360", - "codeCommune": "64165", - "libelleAcheminement": "CARDESSE", - "nomCommune": "CARDESSE" + "codePostal": "64190", + "codeCommune": "64149", + "libelleAcheminement": "BUGNEIN", + "nomCommune": "BUGNEIN" + }, + { + "codePostal": "64390", + "codeCommune": "64151", + "libelleAcheminement": "BURGARONNE", + "nomCommune": "BURGARONNE" + }, + { + "codePostal": "64220", + "codeCommune": "64154", + "libelleAcheminement": "BUSSUNARITS SARRASQUETTE", + "nomCommune": "BUSSUNARITS SARRASQUETTE" + }, + { + "codePostal": "64680", + "codeCommune": "64156", + "libelleAcheminement": "BUZIET", + "nomCommune": "BUZIET" + }, + { + "codePostal": "64410", + "codeCommune": "64158", + "libelleAcheminement": "CABIDOS", + "nomCommune": "CABIDOS" }, { "codePostal": "64270", @@ -21396,40 +21510,52 @@ "nomCommune": "CARRESSE CASSABER" }, { - "codePostal": "64300", - "codeCommune": "64177", - "libelleAcheminement": "CASTETIS", - "nomCommune": "CASTETIS" + "codePostal": "64270", + "codeCommune": "64168", + "libelleAcheminement": "CARRESSE CASSABER", + "nomCommune": "CARRESSE CASSABER" }, { - "codePostal": "64350", - "codeCommune": "64182", - "libelleAcheminement": "CASTILLON DE LEMBEYE", - "nomCommune": "CASTILLON DE LEMBEYE" + "codePostal": "64370", + "codeCommune": "64172", + "libelleAcheminement": "CASTEIDE CANDAU", + "nomCommune": "CASTEIDE CANDAU" }, { - "codePostal": "64230", - "codeCommune": "64183", - "libelleAcheminement": "CAUBIOS LOOS", - "nomCommune": "CAUBIOS LOOS" + "codePostal": "64190", + "codeCommune": "64176", + "libelleAcheminement": "CASTETBON", + "nomCommune": "CASTETBON" }, { - "codePostal": "64230", - "codeCommune": "64198", - "libelleAcheminement": "DENGUIN", - "nomCommune": "DENGUIN" + "codePostal": "64330", + "codeCommune": "64180", + "libelleAcheminement": "CASTETPUGON", + "nomCommune": "CASTETPUGON" }, { - "codePostal": "64870", - "codeCommune": "64207", - "libelleAcheminement": "ESCOU", - "nomCommune": "ESCOU" + "codePostal": "64410", + "codeCommune": "64195", + "libelleAcheminement": "COUBLUCQ", + "nomCommune": "COUBLUCQ" }, { - "codePostal": "64870", - "codeCommune": "64209", - "libelleAcheminement": "ESCOUT", - "nomCommune": "ESCOUT" + "codePostal": "64350", + "codeCommune": "64196", + "libelleAcheminement": "CROUSEILLES", + "nomCommune": "CROUSEILLES" + }, + { + "codePostal": "64330", + "codeCommune": "64199", + "libelleAcheminement": "DIUSSE", + "nomCommune": "DIUSSE" + }, + { + "codePostal": "64120", + "codeCommune": "64202", + "libelleAcheminement": "DOMEZAIN BERRAUTE", + "nomCommune": "DOMEZAIN BERRAUTE" }, { "codePostal": "64350", @@ -21437,12 +21563,6 @@ "libelleAcheminement": "ESCURES", "nomCommune": "ESCURES" }, - { - "codePostal": "64250", - "codeCommune": "64213", - "libelleAcheminement": "ESPELETTE", - "nomCommune": "ESPELETTE" - }, { "codePostal": "64130", "codeCommune": "64214", @@ -21450,16 +21570,16 @@ "nomCommune": "ESPES UNDUREIN" }, { - "codePostal": "64400", - "codeCommune": "64220", - "libelleAcheminement": "ESTOS", - "nomCommune": "ESTOS" + "codePostal": "64420", + "codeCommune": "64216", + "libelleAcheminement": "ESPOEY", + "nomCommune": "ESPOEY" }, { - "codePostal": "64470", - "codeCommune": "64222", - "libelleAcheminement": "ETCHEBAR", - "nomCommune": "ETCHEBAR" + "codePostal": "64400", + "codeCommune": "64224", + "libelleAcheminement": "EYSUS", + "nomCommune": "EYSUS" }, { "codePostal": "64570", @@ -21474,112 +21594,112 @@ "nomCommune": "ANCE FEAS" }, { - "codePostal": "64130", - "codeCommune": "64231", - "libelleAcheminement": "GARINDEIN", - "nomCommune": "GARINDEIN" + "codePostal": "64410", + "codeCommune": "64226", + "libelleAcheminement": "FICHOUS RIUMAYOU", + "nomCommune": "FICHOUS RIUMAYOU" }, { - "codePostal": "64400", - "codeCommune": "64245", - "libelleAcheminement": "GOES", - "nomCommune": "GOES" + "codePostal": "64220", + "codeCommune": "64229", + "libelleAcheminement": "GAMARTHE", + "nomCommune": "GAMARTHE" + }, + { + "codePostal": "64290", + "codeCommune": "64230", + "libelleAcheminement": "GAN", + "nomCommune": "GAN" }, { "codePostal": "64130", - "codeCommune": "64247", - "libelleAcheminement": "GOTEIN LIBARRENX", - "nomCommune": "GOTEIN LIBARRENX" + "codeCommune": "64231", + "libelleAcheminement": "GARINDEIN", + "nomCommune": "GARINDEIN" }, { - "codePostal": "64390", - "codeCommune": "64251", - "libelleAcheminement": "GUINARTHE PARENTIES", - "nomCommune": "GUINARTHE PARENTIES" + "codePostal": "64330", + "codeCommune": "64233", + "libelleAcheminement": "GARLIN", + "nomCommune": "GARLIN" }, { - "codePostal": "64480", - "codeCommune": "64255", - "libelleAcheminement": "HALSOU", - "nomCommune": "HALSOU" + "codePostal": "64120", + "codeCommune": "64235", + "libelleAcheminement": "GARRIS", + "nomCommune": "GARRIS" }, { - "codePostal": "64160", - "codeCommune": "64262", - "libelleAcheminement": "HIGUERES SOUYE", - "nomCommune": "HIGUERES SOUYE" + "codePostal": "64350", + "codeCommune": "64236", + "libelleAcheminement": "GAYON", + "nomCommune": "GAYON" }, { - "codePostal": "64120", - "codeCommune": "64265", - "libelleAcheminement": "HOSTA", - "nomCommune": "HOSTA" + "codePostal": "64160", + "codeCommune": "64239", + "libelleAcheminement": "GERDEREST", + "nomCommune": "GERDEREST" }, { "codePostal": "64420", - "codeCommune": "64266", - "libelleAcheminement": "HOURS", - "nomCommune": "HOURS" + "codeCommune": "64246", + "libelleAcheminement": "GOMER", + "nomCommune": "GOMER" }, { - "codePostal": "64120", - "codeCommune": "64267", - "libelleAcheminement": "IBARROLLE", - "nomCommune": "IBARROLLE" + "codePostal": "64130", + "codeCommune": "64247", + "libelleAcheminement": "GOTEIN LIBARRENX", + "nomCommune": "GOTEIN LIBARRENX" }, { - "codePostal": "64240", - "codeCommune": "64277", - "libelleAcheminement": "ISTURITS", - "nomCommune": "ISTURITS" + "codePostal": "64210", + "codeCommune": "64249", + "libelleAcheminement": "GUETHARY", + "nomCommune": "GUETHARY" }, { - "codePostal": "64190", - "codeCommune": "64281", - "libelleAcheminement": "JASSES", - "nomCommune": "JASSES" + "codePostal": "64470", + "codeCommune": "64258", + "libelleAcheminement": "HAUX", + "nomCommune": "HAUX" }, { "codePostal": "64120", - "codeCommune": "64285", - "libelleAcheminement": "JUXUE", - "nomCommune": "JUXUE" - }, - { - "codePostal": "64170", - "codeCommune": "64288", - "libelleAcheminement": "LABASTIDE CEZERACQ", - "nomCommune": "LABASTIDE CEZERACQ" + "codeCommune": "64265", + "libelleAcheminement": "HOSTA", + "nomCommune": "HOSTA" }, { - "codePostal": "64170", - "codeCommune": "64290", - "libelleAcheminement": "LABASTIDE MONREJEAU", - "nomCommune": "LABASTIDE MONREJEAU" + "codePostal": "64120", + "codeCommune": "64272", + "libelleAcheminement": "ILHARRE", + "nomCommune": "ILHARRE" }, { - "codePostal": "64300", - "codeCommune": "64296", - "libelleAcheminement": "LACADEE", - "nomCommune": "LACADEE" + "codePostal": "64220", + "codeCommune": "64274", + "libelleAcheminement": "IROULEGUY", + "nomCommune": "IROULEGUY" }, { - "codePostal": "64470", - "codeCommune": "64303", - "libelleAcheminement": "LAGUINGE RESTOUE", - "nomCommune": "LAGUINGE RESTOUE" + "codePostal": "64570", + "codeCommune": "64276", + "libelleAcheminement": "ISSOR", + "nomCommune": "ISSOR" }, { - "codePostal": "64150", - "codeCommune": "64306", - "libelleAcheminement": "LAHOURCADE", - "nomCommune": "LAHOURCADE" + "codePostal": "64800", + "codeCommune": "64302", + "libelleAcheminement": "LAGOS", + "nomCommune": "LAGOS" }, { - "codePostal": "64450", - "codeCommune": "64308", - "libelleAcheminement": "LALONQUETTE", - "nomCommune": "LALONQUETTE" + "codePostal": "64350", + "codeCommune": "64311", + "libelleAcheminement": "LANNECAUBE", + "nomCommune": "LANNECAUBE" }, { "codePostal": "64640", @@ -21588,16 +21708,10 @@ "nomCommune": "LANTABAT" }, { - "codePostal": "64120", - "codeCommune": "64314", - "libelleAcheminement": "LARCEVEAU ARROS CIBITS", - "nomCommune": "LARCEVEAU ARROS CIBITS" - }, - { - "codePostal": "64560", - "codeCommune": "64316", - "libelleAcheminement": "LARRAU", - "nomCommune": "LARRAU" + "codePostal": "64480", + "codeCommune": "64317", + "libelleAcheminement": "LARRESSORE", + "nomCommune": "LARRESSORE" }, { "codePostal": "64440", @@ -21612,82 +21726,34 @@ "nomCommune": "LASSERRE" }, { - "codePostal": "64290", - "codeCommune": "64324", - "libelleAcheminement": "LASSEUBE", - "nomCommune": "LASSEUBE" - }, - { - "codePostal": "64290", - "codeCommune": "64325", - "libelleAcheminement": "LASSEUBETAT", - "nomCommune": "LASSEUBETAT" - }, - { - "codePostal": "64220", - "codeCommune": "64327", - "libelleAcheminement": "LECUMBERRY", - "nomCommune": "LECUMBERRY" - }, - { - "codePostal": "64400", - "codeCommune": "64328", - "libelleAcheminement": "LEDEUIX", - "nomCommune": "LEDEUIX" - }, - { - "codePostal": "64450", - "codeCommune": "64332", - "libelleAcheminement": "LEME", - "nomCommune": "LEME" - }, - { - "codePostal": "64350", - "codeCommune": "64337", - "libelleAcheminement": "LESPIELLE", - "nomCommune": "LESPIELLE" - }, - { - "codePostal": "64120", - "codeCommune": "64345", - "libelleAcheminement": "LOHITZUN OYHERCQ", - "nomCommune": "LOHITZUN OYHERCQ" - }, - { - "codePostal": "64160", - "codeCommune": "64346", - "libelleAcheminement": "LOMBIA", - "nomCommune": "LOMBIA" - }, - { - "codePostal": "64440", - "codeCommune": "64354", - "libelleAcheminement": "LOUVIE SOUBIRON", - "nomCommune": "LOUVIE SOUBIRON" + "codePostal": "64270", + "codeCommune": "64334", + "libelleAcheminement": "LEREN", + "nomCommune": "LEREN" }, { - "codePostal": "64360", - "codeCommune": "64359", - "libelleAcheminement": "LUCQ DE BEARN", - "nomCommune": "LUCQ DE BEARN" + "codePostal": "64490", + "codeCommune": "64336", + "libelleAcheminement": "LESCUN", + "nomCommune": "LESCUN" }, { - "codePostal": "64330", - "codeCommune": "64366", - "libelleAcheminement": "MASCARAAS HARON", - "nomCommune": "MASCARAAS HARON" + "codePostal": "64560", + "codeCommune": "64342", + "libelleAcheminement": "LICQ ATHEREY", + "nomCommune": "LICQ ATHEREY" }, { "codePostal": "64160", - "codeCommune": "64370", - "libelleAcheminement": "MAUCOR", - "nomCommune": "MAUCOR" + "codeCommune": "64361", + "libelleAcheminement": "LUSSAGNET LUSSON", + "nomCommune": "LUSSAGNET LUSSON" }, { - "codePostal": "64240", - "codeCommune": "64377", - "libelleAcheminement": "MENDIONDE", - "nomCommune": "MENDIONDE" + "codePostal": "64190", + "codeCommune": "64381", + "libelleAcheminement": "MERITEIN", + "nomCommune": "MERITEIN" }, { "codePostal": "64450", @@ -21696,22 +21762,22 @@ "nomCommune": "MIOSSENS LANUSSE" }, { - "codePostal": "64800", - "codeCommune": "64386", - "libelleAcheminement": "MIREPEIX", - "nomCommune": "MIREPEIX" + "codePostal": "64230", + "codeCommune": "64387", + "libelleAcheminement": "MOMAS", + "nomCommune": "MOMAS" }, { - "codePostal": "64350", - "codeCommune": "64388", - "libelleAcheminement": "MOMY", - "nomCommune": "MOMY" + "codePostal": "64360", + "codeCommune": "64393", + "libelleAcheminement": "MONEIN", + "nomCommune": "MONEIN" }, { - "codePostal": "64130", - "codeCommune": "64391", - "libelleAcheminement": "MONCAYOLLE LARRORY MENDIBIEU", - "nomCommune": "MONCAYOLLE LARRORY MENDIBIEU" + "codePostal": "64350", + "codeCommune": "64394", + "libelleAcheminement": "MONPEZAT", + "nomCommune": "MONPEZAT" }, { "codePostal": "64300", @@ -21726,52 +21792,82 @@ "nomCommune": "MONTANER" }, { - "codePostal": "64420", - "codeCommune": "64419", - "libelleAcheminement": "NOUSTY", - "nomCommune": "NOUSTY" + "codePostal": "64800", + "codeCommune": "64400", + "libelleAcheminement": "MONTAUT", + "nomCommune": "MONTAUT" + }, + { + "codePostal": "64330", + "codeCommune": "64401", + "libelleAcheminement": "MONT DISSE", + "nomCommune": "MONT DISSE" + }, + { + "codePostal": "64160", + "codeCommune": "64405", + "libelleAcheminement": "MORLAAS", + "nomCommune": "MORLAAS" + }, + { + "codePostal": "64130", + "codeCommune": "64411", + "libelleAcheminement": "MUSCULDY", + "nomCommune": "MUSCULDY" }, { "codePostal": "64390", - "codeCommune": "64428", - "libelleAcheminement": "ORRIULE", - "nomCommune": "ORRIULE" + "codeCommune": "64423", + "libelleAcheminement": "ORAAS", + "nomCommune": "ORAAS" + }, + { + "codePostal": "64130", + "codeCommune": "64424", + "libelleAcheminement": "ORDIARP", + "nomCommune": "ORDIARP" }, { "codePostal": "64120", - "codeCommune": "64429", - "libelleAcheminement": "ORSANCO", - "nomCommune": "ORSANCO" + "codeCommune": "64425", + "libelleAcheminement": "OREGUE", + "nomCommune": "OREGUE" }, { - "codePostal": "64470", - "codeCommune": "64432", - "libelleAcheminement": "OSSAS SUHARE", - "nomCommune": "OSSAS SUHARE" + "codePostal": "64150", + "codeCommune": "64431", + "libelleAcheminement": "OS MARSILLON", + "nomCommune": "OS MARSILLON" }, { - "codePostal": "64390", - "codeCommune": "64435", - "libelleAcheminement": "OSSERAIN RIVAREYTE", - "nomCommune": "OSSERAIN RIVAREYTE" + "codePostal": "64120", + "codeCommune": "64437", + "libelleAcheminement": "OSTABAT ASME", + "nomCommune": "OSTABAT ASME" }, { - "codePostal": "64320", - "codeCommune": "64439", - "libelleAcheminement": "OUSSE", - "nomCommune": "OUSSE" + "codePostal": "64360", + "codeCommune": "64442", + "libelleAcheminement": "PARBAYSE", + "nomCommune": "PARBAYSE" }, { - "codePostal": "64350", - "codeCommune": "64446", - "libelleAcheminement": "PEYRELONGUE ABOS", - "nomCommune": "PEYRELONGUE ABOS" + "codePostal": "64230", + "codeCommune": "64448", + "libelleAcheminement": "POEY DE LESCAR", + "nomCommune": "POEY DE LESCAR" }, { - "codePostal": "64410", - "codeCommune": "64447", - "libelleAcheminement": "PIETS PLASENCE MOUSTROU", - "nomCommune": "PIETS PLASENCE MOUSTROU" + "codePostal": "64460", + "codeCommune": "64452", + "libelleAcheminement": "PONSON DESSUS", + "nomCommune": "PONSON DESSUS" + }, + { + "codePostal": "64530", + "codeCommune": "64453", + "libelleAcheminement": "PONTACQ", + "nomCommune": "PONTACQ" }, { "codePostal": "64410", @@ -21780,22 +21876,16 @@ "nomCommune": "POULIACQ" }, { - "codePostal": "64400", - "codeCommune": "64460", - "libelleAcheminement": "PRECILHON", - "nomCommune": "PRECILHON" - }, - { - "codePostal": "64160", - "codeCommune": "64465", - "libelleAcheminement": "RIUPEYROUS", - "nomCommune": "RIUPEYROUS" + "codePostal": "64260", + "codeCommune": "64463", + "libelleAcheminement": "REBENACQ", + "nomCommune": "REBENACQ" }, { - "codePostal": "64110", - "codeCommune": "64467", - "libelleAcheminement": "RONTIGNON", - "nomCommune": "RONTIGNON" + "codePostal": "64330", + "codeCommune": "64464", + "libelleAcheminement": "RIBARROUY", + "nomCommune": "RIBARROUY" }, { "codePostal": "64130", @@ -21804,22 +21894,28 @@ "nomCommune": "ROQUIAGUE" }, { - "codePostal": "64800", - "codeCommune": "64469", - "libelleAcheminement": "ST ABIT", - "nomCommune": "ST ABIT" + "codePostal": "64300", + "codeCommune": "64471", + "libelleAcheminement": "ST BOES", + "nomCommune": "ST BOES" }, { - "codePostal": "64260", - "codeCommune": "64473", - "libelleAcheminement": "STE COLOME", - "nomCommune": "STE COLOME" + "codePostal": "64160", + "codeCommune": "64472", + "libelleAcheminement": "ST CASTIN", + "nomCommune": "ST CASTIN" }, { - "codePostal": "64270", - "codeCommune": "64474", - "libelleAcheminement": "ST DOS", - "nomCommune": "ST DOS" + "codePostal": "64640", + "codeCommune": "64476", + "libelleAcheminement": "ST ESTEBEN", + "nomCommune": "ST ESTEBEN" + }, + { + "codePostal": "64430", + "codeCommune": "64477", + "libelleAcheminement": "ST ETIENNE DE BAIGORRY", + "nomCommune": "ST ETIENNE DE BAIGORRY" }, { "codePostal": "64220", @@ -21828,16 +21924,16 @@ "nomCommune": "ST JEAN PIED DE PORT" }, { - "codePostal": "64120", - "codeCommune": "64487", - "libelleAcheminement": "ST JUST IBARRE", - "nomCommune": "ST JUST IBARRE" + "codePostal": "64640", + "codeCommune": "64489", + "libelleAcheminement": "ST MARTIN D ARBEROUE", + "nomCommune": "ST MARTIN D ARBEROUE" }, { - "codePostal": "64300", - "codeCommune": "64501", - "libelleAcheminement": "SALLESPISSE", - "nomCommune": "SALLESPISSE" + "codePostal": "64780", + "codeCommune": "64490", + "libelleAcheminement": "ST MARTIN D ARROSSA", + "nomCommune": "ST MARTIN D ARROSSA" }, { "codePostal": "64520", @@ -21852,40 +21948,34 @@ "nomCommune": "SAMSONS LION" }, { - "codePostal": "64310", - "codeCommune": "64504", - "libelleAcheminement": "SARE", - "nomCommune": "SARE" - }, - { - "codePostal": "64300", - "codeCommune": "64505", - "libelleAcheminement": "SARPOURENX", - "nomCommune": "SARPOURENX" + "codePostal": "64230", + "codeCommune": "64511", + "libelleAcheminement": "SAUVAGNON", + "nomCommune": "SAUVAGNON" }, { - "codePostal": "64320", - "codeCommune": "64518", - "libelleAcheminement": "SENDETS", - "nomCommune": "SENDETS" + "codePostal": "64410", + "codeCommune": "64514", + "libelleAcheminement": "SEBY", + "nomCommune": "SEBY" }, { - "codePostal": "64121", - "codeCommune": "64519", - "libelleAcheminement": "SERRES CASTET", - "nomCommune": "SERRES CASTET" + "codePostal": "64160", + "codeCommune": "64516", + "libelleAcheminement": "SEDZERE", + "nomCommune": "SEDZERE" }, { - "codePostal": "64230", - "codeCommune": "64525", - "libelleAcheminement": "SIROS", - "nomCommune": "SIROS" + "codePostal": "64160", + "codeCommune": "64523", + "libelleAcheminement": "SEVIGNACQ", + "nomCommune": "SEVIGNACQ" }, { - "codePostal": "64780", - "codeCommune": "64528", - "libelleAcheminement": "SUHESCUN", - "nomCommune": "SUHESCUN" + "codePostal": "64420", + "codeCommune": "64526", + "libelleAcheminement": "SOUMOULOU", + "nomCommune": "SOUMOULOU" }, { "codePostal": "64190", @@ -21894,64 +21984,70 @@ "nomCommune": "SUS" }, { - "codePostal": "64330", - "codeCommune": "64532", - "libelleAcheminement": "TADOUSSE USSAU", - "nomCommune": "TADOUSSE USSAU" + "codePostal": "64990", + "codeCommune": "64540", + "libelleAcheminement": "URCUIT", + "nomCommune": "URCUIT" }, { - "codePostal": "64450", - "codeCommune": "64536", - "libelleAcheminement": "THEZE", - "nomCommune": "THEZE" + "codePostal": "64990", + "codeCommune": "64558", + "libelleAcheminement": "VILLEFRANQUE", + "nomCommune": "VILLEFRANQUE" }, { - "codePostal": "64240", - "codeCommune": "64546", - "libelleAcheminement": "URT", - "nomCommune": "URT" + "codePostal": "64130", + "codeCommune": "64559", + "libelleAcheminement": "VIODOS ABENSE DE BAS", + "nomCommune": "VIODOS ABENSE DE BAS" }, { - "codePostal": "64370", - "codeCommune": "64548", - "libelleAcheminement": "UZAN", - "nomCommune": "UZAN" + "codePostal": "64450", + "codeCommune": "64560", + "libelleAcheminement": "VIVEN", + "nomCommune": "VIVEN" }, { - "codePostal": "64990", - "codeCommune": "64558", - "libelleAcheminement": "VILLEFRANQUE", - "nomCommune": "VILLEFRANQUE" + "codePostal": "65100", + "codeCommune": "65002", + "libelleAcheminement": "ADE", + "nomCommune": "ADE" }, { - "codePostal": "65240", - "codeCommune": "65003", - "libelleAcheminement": "ADERVIELLE POUCHERGUES", - "nomCommune": "ADERVIELLE POUCHERGUES" + "codePostal": "65370", + "codeCommune": "65014", + "libelleAcheminement": "ANTICHAN", + "nomCommune": "ANTICHAN" }, { - "codePostal": "65360", - "codeCommune": "65005", - "libelleAcheminement": "ALLIER", - "nomCommune": "ALLIER" + "codePostal": "65220", + "codeCommune": "65015", + "libelleAcheminement": "ANTIN", + "nomCommune": "ANTIN" }, { - "codePostal": "65690", - "codeCommune": "65010", - "libelleAcheminement": "ANGOS", - "nomCommune": "ANGOS" + "codePostal": "65360", + "codeCommune": "65019", + "libelleAcheminement": "ARCIZAC ADOUR", + "nomCommune": "ARCIZAC ADOUR" }, { - "codePostal": "65670", - "codeCommune": "65028", - "libelleAcheminement": "ARNE", - "nomCommune": "ARNE" + "codePostal": "65200", + "codeCommune": "65024", + "libelleAcheminement": "ARGELES BAGNERES", + "nomCommune": "ARGELES BAGNERES" }, { "codePostal": "65400", - "codeCommune": "65029", - "libelleAcheminement": "ARRAS EN LAVEDAN", - "nomCommune": "ARRAS EN LAVEDAN" + "codeCommune": "65032", + "libelleAcheminement": "ARRENS MARSOUS", + "nomCommune": "ARRENS MARSOUS" + }, + { + "codePostal": "65100", + "codeCommune": "65033", + "libelleAcheminement": "ARRODETS EZ ANGLES", + "nomCommune": "ARRODETS EZ ANGLES" }, { "codePostal": "65130", @@ -21959,29 +22055,65 @@ "libelleAcheminement": "ARRODETS", "nomCommune": "ARRODETS" }, + { + "codePostal": "65400", + "codeCommune": "65036", + "libelleAcheminement": "ARTALENS SOUIN", + "nomCommune": "ARTALENS SOUIN" + }, + { + "codePostal": "65350", + "codeCommune": "65044", + "libelleAcheminement": "AUBAREDE", + "nomCommune": "AUBAREDE" + }, + { + "codePostal": "65800", + "codeCommune": "65047", + "libelleAcheminement": "AUREILHAN", + "nomCommune": "AUREILHAN" + }, + { + "codePostal": "65700", + "codeCommune": "65049", + "libelleAcheminement": "AURIEBAT", + "nomCommune": "AURIEBAT" + }, + { + "codePostal": "65370", + "codeCommune": "65053", + "libelleAcheminement": "AVEUX", + "nomCommune": "AVEUX" + }, { "codePostal": "65130", - "codeCommune": "65037", - "libelleAcheminement": "ARTIGUEMY", - "nomCommune": "ARTIGUEMY" + "codeCommune": "65054", + "libelleAcheminement": "AVEZAC PRAT LAHITTE", + "nomCommune": "AVEZAC PRAT LAHITTE" + }, + { + "codePostal": "65170", + "codeCommune": "65058", + "libelleAcheminement": "AZET", + "nomCommune": "AZET" }, { "codePostal": "65200", - "codeCommune": "65042", - "libelleAcheminement": "ASTE", - "nomCommune": "ASTE" + "codeCommune": "65060", + "libelleAcheminement": "BANIOS", + "nomCommune": "BANIOS" }, { - "codePostal": "65380", - "codeCommune": "65057", - "libelleAcheminement": "AZEREIX", - "nomCommune": "AZEREIX" + "codePostal": "65690", + "codeCommune": "65062", + "libelleAcheminement": "BARBAZAN DEBAT", + "nomCommune": "BARBAZAN DEBAT" }, { - "codePostal": "65200", - "codeCommune": "65059", - "libelleAcheminement": "BAGNERES DE BIGORRE", - "nomCommune": "BAGNERES DE BIGORRE" + "codePostal": "65240", + "codeCommune": "65064", + "libelleAcheminement": "BAREILLES", + "nomCommune": "BAREILLES" }, { "codePostal": "65230", @@ -21990,22 +22122,34 @@ "nomCommune": "BARTHE" }, { - "codePostal": "65130", - "codeCommune": "65081", - "libelleAcheminement": "BENQUE MOLERE", - "nomCommune": "BENQUE MOLERE" + "codePostal": "65670", + "codeCommune": "65074", + "libelleAcheminement": "BAZORDAN", + "nomCommune": "BAZORDAN" }, { - "codePostal": "65360", - "codeCommune": "65083", - "libelleAcheminement": "BERNAC DEBAT", - "nomCommune": "BERNAC DEBAT" + "codePostal": "65190", + "codeCommune": "65079", + "libelleAcheminement": "BEGOLE", + "nomCommune": "BEGOLE" }, { - "codePostal": "65370", - "codeCommune": "65087", - "libelleAcheminement": "BERTREN", - "nomCommune": "BERTREN" + "codePostal": "65190", + "codeCommune": "65086", + "libelleAcheminement": "BERNADETS DESSUS", + "nomCommune": "BERNADETS DESSUS" + }, + { + "codePostal": "65120", + "codeCommune": "65089", + "libelleAcheminement": "BETPOUEY", + "nomCommune": "BETPOUEY" + }, + { + "codePostal": "65230", + "codeCommune": "65090", + "libelleAcheminement": "BETPOUY", + "nomCommune": "BETPOUY" }, { "codePostal": "65130", @@ -22013,12 +22157,6 @@ "libelleAcheminement": "BETTES", "nomCommune": "BETTES" }, - { - "codePostal": "65410", - "codeCommune": "65092", - "libelleAcheminement": "BEYREDE JUMET CAMOUS", - "nomCommune": "BEYREDE JUMET CAMOUS" - }, { "codePostal": "65150", "codeCommune": "65093", @@ -22026,76 +22164,64 @@ "nomCommune": "BIZE" }, { - "codePostal": "65150", - "codeCommune": "65094", - "libelleAcheminement": "BIZOUS", - "nomCommune": "BIZOUS" + "codePostal": "65220", + "codeCommune": "65095", + "libelleAcheminement": "BONNEFONT", + "nomCommune": "BONNEFONT" }, { "codePostal": "65190", - "codeCommune": "65101", - "libelleAcheminement": "BORDES", - "nomCommune": "BORDES" - }, - { - "codePostal": "65140", - "codeCommune": "65102", - "libelleAcheminement": "BOUILH DEVANT", - "nomCommune": "BOUILH DEVANT" - }, - { - "codePostal": "65350", - "codeCommune": "65103", - "libelleAcheminement": "BOUILH PEREUILH", - "nomCommune": "BOUILH PEREUILH" + "codeCommune": "65113", + "libelleAcheminement": "BURG", + "nomCommune": "BURG" }, { - "codePostal": "65170", - "codeCommune": "65106", - "libelleAcheminement": "BOURISP", - "nomCommune": "BOURISP" + "codePostal": "65130", + "codeCommune": "65127", + "libelleAcheminement": "CAPVERN LES BAINS", + "nomCommune": "CAPVERN" }, { - "codePostal": "65140", - "codeCommune": "65114", - "libelleAcheminement": "BUZON", - "nomCommune": "BUZON" + "codePostal": "65700", + "codeCommune": "65130", + "libelleAcheminement": "CASTELNAU RIVIERE BASSE", + "nomCommune": "CASTELNAU RIVIERE BASSE" }, { - "codePostal": "65170", - "codeCommune": "65117", - "libelleAcheminement": "CADEILHAN TRACHERE", - "nomCommune": "CADEILHAN TRACHERE" + "codePostal": "65190", + "codeCommune": "65132", + "libelleAcheminement": "CASTERA LANUSSE", + "nomCommune": "CASTERA LANUSSE" }, { - "codePostal": "65190", - "codeCommune": "65120", - "libelleAcheminement": "CALAVANTE", - "nomCommune": "CALAVANTE" + "codePostal": "65350", + "codeCommune": "65133", + "libelleAcheminement": "CASTERA LOU", + "nomCommune": "CASTERA LOU" }, { - "codePostal": "65710", - "codeCommune": "65123", - "libelleAcheminement": "CAMPAN", - "nomCommune": "CAMPAN" + "codePostal": "65370", + "codeCommune": "65139", + "libelleAcheminement": "CAZARILH", + "nomCommune": "CAZARILH" }, { - "codePostal": "65230", - "codeCommune": "65129", - "libelleAcheminement": "CASTELNAU MAGNOAC", - "nomCommune": "CASTELNAU MAGNOAC" + "codePostal": "65240", + "codeCommune": "65141", + "libelleAcheminement": "CAZAUX FRECHET ANERAN CAMORS", + "nomCommune": "CAZAUX FRECHET ANERAN CAMORS" }, { - "codePostal": "65700", - "codeCommune": "65137", - "libelleAcheminement": "CAUSSADE RIVIERE", - "nomCommune": "CAUSSADE RIVIERE" + "codePostal": "65350", + "codeCommune": "65142", + "libelleAcheminement": "CHELLE DEBAT", + "nomCommune": "CHELLE DEBAT" }, { - "codePostal": "65590", - "codeCommune": "65140", - "libelleAcheminement": "CAZAUX DEBAT", - "nomCommune": "CAZAUX DEBAT" + "codePostal": "65100", + "codeCommune": "65144", + "libelleAcheminement": "CHEUST", + "nomCommune": "CHEUST" }, { "codePostal": "65120", @@ -22103,30 +22229,18 @@ "libelleAcheminement": "CHEZE", "nomCommune": "CHEZE" }, - { - "codePostal": "65800", - "codeCommune": "65146", - "libelleAcheminement": "CHIS", - "nomCommune": "CHIS" - }, - { - "codePostal": "65230", - "codeCommune": "65148", - "libelleAcheminement": "CIZOS", - "nomCommune": "CIZOS" - }, - { - "codePostal": "65350", - "codeCommune": "65153", - "libelleAcheminement": "COUSSAN", - "nomCommune": "COUSSAN" - }, { "codePostal": "65230", "codeCommune": "65155", "libelleAcheminement": "DEVEZE", "nomCommune": "DEVEZE" }, + { + "codePostal": "65170", + "codeCommune": "65157", + "libelleAcheminement": "ENS", + "nomCommune": "ENS" + }, { "codePostal": "65140", "codeCommune": "65161", @@ -22140,52 +22254,58 @@ "nomCommune": "ESCOTS" }, { - "codePostal": "65100", - "codeCommune": "65164", - "libelleAcheminement": "ESCOUBES POUTS", - "nomCommune": "ESCOUBES POUTS" + "codePostal": "65240", + "codeCommune": "65171", + "libelleAcheminement": "ESTARVIELLE", + "nomCommune": "ESTARVIELLE" }, { - "codePostal": "65130", - "codeCommune": "65167", - "libelleAcheminement": "ESPIEILH", - "nomCommune": "ESPIEILH" + "codePostal": "65120", + "codeCommune": "65173", + "libelleAcheminement": "ESTERRE", + "nomCommune": "ESTERRE" }, { - "codePostal": "65120", - "codeCommune": "65168", - "libelleAcheminement": "ESQUIEZE SERE", - "nomCommune": "ESQUIEZE SERE" + "codePostal": "65220", + "codeCommune": "65178", + "libelleAcheminement": "FRECHEDE", + "nomCommune": "FRECHEDE" }, { - "codePostal": "65560", - "codeCommune": "65176", - "libelleAcheminement": "FERRIERES", - "nomCommune": "FERRIERES" + "codePostal": "65130", + "codeCommune": "65179", + "libelleAcheminement": "FRECHENDETS", + "nomCommune": "FRECHENDETS" }, { - "codePostal": "65320", - "codeCommune": "65185", - "libelleAcheminement": "GARDERES", - "nomCommune": "GARDERES" + "codePostal": "65330", + "codeCommune": "65183", + "libelleAcheminement": "GALAN", + "nomCommune": "GALAN" }, { - "codePostal": "65320", - "codeCommune": "65189", - "libelleAcheminement": "GAYAN", - "nomCommune": "GAYAN" + "codePostal": "65250", + "codeCommune": "65190", + "libelleAcheminement": "GAZAVE", + "nomCommune": "GAZAVE" }, { - "codePostal": "65370", - "codeCommune": "65193", - "libelleAcheminement": "GEMBRIE", - "nomCommune": "GEMBRIE" + "codePostal": "65120", + "codeCommune": "65192", + "libelleAcheminement": "GAVARNIE GEDRE", + "nomCommune": "GAVARNIE GEDRE" }, { - "codePostal": "65200", - "codeCommune": "65198", - "libelleAcheminement": "GERDE", - "nomCommune": "GERDE" + "codePostal": "65120", + "codeCommune": "65192", + "libelleAcheminement": "GAVARNIE GEDRE", + "nomCommune": "GAVARNIE GEDRE" + }, + { + "codePostal": "65240", + "codeCommune": "65199", + "libelleAcheminement": "GERM", + "nomCommune": "GERM" }, { "codePostal": "65200", @@ -22201,105 +22321,123 @@ }, { "codePostal": "65170", - "codeCommune": "65211", - "libelleAcheminement": "GUCHAN", - "nomCommune": "GUCHAN" + "codeCommune": "65208", + "libelleAcheminement": "GRAILHEN", + "nomCommune": "GRAILHEN" }, { - "codePostal": "65240", - "codeCommune": "65212", - "libelleAcheminement": "GUCHEN", - "nomCommune": "GUCHEN" + "codePostal": "65370", + "codeCommune": "65230", + "libelleAcheminement": "IZAOURT", + "nomCommune": "IZAOURT" }, { - "codePostal": "65700", - "codeCommune": "65215", - "libelleAcheminement": "HAGEDET", - "nomCommune": "HAGEDET" + "codePostal": "65100", + "codeCommune": "65236", + "libelleAcheminement": "JULOS", + "nomCommune": "JULOS" }, { - "codePostal": "65700", - "codeCommune": "65219", - "libelleAcheminement": "HERES", - "nomCommune": "HERES" + "codePostal": "65100", + "codeCommune": "65237", + "libelleAcheminement": "JUNCALAS", + "nomCommune": "JUNCALAS" }, { - "codePostal": "65350", - "codeCommune": "65225", - "libelleAcheminement": "HOURC", - "nomCommune": "HOURC" + "codePostal": "65140", + "codeCommune": "65242", + "libelleAcheminement": "LACASSAGNE", + "nomCommune": "LACASSAGNE" }, { - "codePostal": "65410", - "codeCommune": "65228", - "libelleAcheminement": "ILHET", - "nomCommune": "ILHET" + "codePostal": "65230", + "codeCommune": "65249", + "libelleAcheminement": "LALANNE", + "nomCommune": "LALANNE" }, { - "codePostal": "65370", - "codeCommune": "65229", - "libelleAcheminement": "ILHEU", - "nomCommune": "ILHEU" + "codePostal": "65310", + "codeCommune": "65251", + "libelleAcheminement": "LALOUBERE", + "nomCommune": "LALOUBERE" }, { - "codePostal": "65290", - "codeCommune": "65235", - "libelleAcheminement": "JUILLAN", - "nomCommune": "JUILLAN" + "codePostal": "65300", + "codeCommune": "65258", + "libelleAcheminement": "LANNEMEZAN", + "nomCommune": "LANNEMEZAN" }, { - "codePostal": "65100", - "codeCommune": "65236", - "libelleAcheminement": "JULOS", - "nomCommune": "JULOS" + "codePostal": "65670", + "codeCommune": "65261", + "libelleAcheminement": "LARAN", + "nomCommune": "LARAN" }, { - "codePostal": "65700", - "codeCommune": "65240", - "libelleAcheminement": "LABATUT RIVIERE", - "nomCommune": "LABATUT RIVIERE" + "codePostal": "65230", + "codeCommune": "65263", + "libelleAcheminement": "LARROQUE", + "nomCommune": "LARROQUE" }, { - "codePostal": "65700", - "codeCommune": "65248", - "libelleAcheminement": "LAHITTE TOUPIERE", - "nomCommune": "LAHITTE TOUPIERE" + "codePostal": "65670", + "codeCommune": "65266", + "libelleAcheminement": "LASSALES", + "nomCommune": "LASSALES" }, { - "codePostal": "65220", - "codeCommune": "65250", - "libelleAcheminement": "LALANNE TRIE", - "nomCommune": "LALANNE TRIE" + "codePostal": "65400", + "codeCommune": "65267", + "libelleAcheminement": "LAU BALAGNAS", + "nomCommune": "LAU BALAGNAS" }, { - "codePostal": "65700", - "codeCommune": "65262", - "libelleAcheminement": "LARREULE", - "nomCommune": "LARREULE" + "codePostal": "65100", + "codeCommune": "65271", + "libelleAcheminement": "LEZIGNAN", + "nomCommune": "LEZIGNAN" }, { - "codePostal": "65240", - "codeCommune": "65282", - "libelleAcheminement": "LOUDENVIELLE", - "nomCommune": "LOUDENVIELLE" + "codePostal": "65190", + "codeCommune": "65272", + "libelleAcheminement": "LHEZ", + "nomCommune": "LHEZ" }, { - "codePostal": "65220", - "codeCommune": "65288", - "libelleAcheminement": "LUBRET ST LUC", - "nomCommune": "LUBRET ST LUC" + "codePostal": "65140", + "codeCommune": "65273", + "libelleAcheminement": "LIAC", + "nomCommune": "LIAC" }, { - "codePostal": "65220", - "codeCommune": "65289", - "libelleAcheminement": "LUBY BETMONT", - "nomCommune": "LUBY BETMONT" + "codePostal": "65200", + "codeCommune": "65275", + "libelleAcheminement": "LIES", + "nomCommune": "LIES" }, { - "codePostal": "65300", - "codeCommune": "65294", - "libelleAcheminement": "LUTILHOUS", - "nomCommune": "LUTILHOUS" + "codePostal": "65200", + "codeCommune": "65281", + "libelleAcheminement": "LOUCRUP", + "nomCommune": "LOUCRUP" + }, + { + "codePostal": "65290", + "codeCommune": "65284", + "libelleAcheminement": "LOUEY", + "nomCommune": "LOUEY" + }, + { + "codePostal": "65350", + "codeCommune": "65301", + "libelleAcheminement": "MARSEILLAN", + "nomCommune": "MARSEILLAN" + }, + { + "codePostal": "65190", + "codeCommune": "65303", + "libelleAcheminement": "MASCARAS", + "nomCommune": "MASCARAS" }, { "codePostal": "65370", @@ -22308,10 +22446,10 @@ "nomCommune": "MAULEON BAROUSSE" }, { - "codePostal": "65250", - "codeCommune": "65309", - "libelleAcheminement": "MAZOUAU", - "nomCommune": "MAZOUAU" + "codePostal": "65670", + "codeCommune": "65315", + "libelleAcheminement": "MONLEON MAGNOAC", + "nomCommune": "MONLEON MAGNOAC" }, { "codePostal": "65690", @@ -22320,16 +22458,28 @@ "nomCommune": "MONTIGNAC" }, { - "codePostal": "65190", - "codeCommune": "65324", - "libelleAcheminement": "MOULEDOUS", - "nomCommune": "MOULEDOUS" + "codePostal": "65140", + "codeCommune": "65325", + "libelleAcheminement": "MOUMOULOUS", + "nomCommune": "MOUMOULOUS" }, { - "codePostal": "65350", - "codeCommune": "65332", - "libelleAcheminement": "OLEAC DEBAT", - "nomCommune": "OLEAC DEBAT" + "codePostal": "65150", + "codeCommune": "65329", + "libelleAcheminement": "NISTOS", + "nomCommune": "NISTOS" + }, + { + "codePostal": "65310", + "codeCommune": "65331", + "libelleAcheminement": "ODOS", + "nomCommune": "ODOS" + }, + { + "codePostal": "65190", + "codeCommune": "65333", + "libelleAcheminement": "OLEAC DESSUS", + "nomCommune": "OLEAC DESSUS" }, { "codePostal": "65230", @@ -22338,10 +22488,16 @@ "nomCommune": "ORGAN" }, { - "codePostal": "65380", - "codeCommune": "65344", - "libelleAcheminement": "OSSUN", - "nomCommune": "OSSUN" + "codePostal": "65100", + "codeCommune": "65345", + "libelleAcheminement": "OSSUN EZ ANGLES", + "nomCommune": "OSSUN EZ ANGLES" + }, + { + "codePostal": "65230", + "codeCommune": "65358", + "libelleAcheminement": "PEYRET ST ANDRE", + "nomCommune": "PEYRET ST ANDRE" }, { "codePostal": "65260", @@ -22355,24 +22511,6 @@ "libelleAcheminement": "PINTAC", "nomCommune": "PINTAC" }, - { - "codePostal": "65200", - "codeCommune": "65370", - "libelleAcheminement": "POUZAC", - "nomCommune": "POUZAC" - }, - { - "codePostal": "65400", - "codeCommune": "65371", - "libelleAcheminement": "PRECHAC", - "nomCommune": "PRECHAC" - }, - { - "codePostal": "65500", - "codeCommune": "65372", - "libelleAcheminement": "PUJO", - "nomCommune": "PUJO" - }, { "codePostal": "65190", "codeCommune": "65378", @@ -22381,9 +22519,9 @@ }, { "codePostal": "65170", - "codeCommune": "65384", - "libelleAcheminement": "SAILHAN", - "nomCommune": "SAILHAN" + "codeCommune": "65388", + "libelleAcheminement": "ST LARY SOULAN", + "nomCommune": "ST LARY SOULAN" }, { "codePostal": "65360", @@ -22391,12 +22529,6 @@ "libelleAcheminement": "ST MARTIN", "nomCommune": "ST MARTIN" }, - { - "codePostal": "65150", - "codeCommune": "65394", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" - }, { "codePostal": "65270", "codeCommune": "65395", @@ -22404,76 +22536,94 @@ "nomCommune": "ST PE DE BIGORRE" }, { - "codePostal": "65400", - "codeCommune": "65400", - "libelleAcheminement": "SALLES", - "nomCommune": "SALLES" + "codePostal": "65360", + "codeCommune": "65401", + "libelleAcheminement": "SALLES ADOUR", + "nomCommune": "SALLES ADOUR" }, { - "codePostal": "65600", - "codeCommune": "65410", - "libelleAcheminement": "SARROUILLES", - "nomCommune": "SARROUILLES" + "codePostal": "65500", + "codeCommune": "65403", + "libelleAcheminement": "SANOUS", + "nomCommune": "SANOUS" }, { - "codePostal": "65150", - "codeCommune": "65416", - "libelleAcheminement": "SEICH", - "nomCommune": "SEICH" + "codePostal": "65230", + "codeCommune": "65404", + "libelleAcheminement": "SARIAC MAGNOAC", + "nomCommune": "SARIAC MAGNOAC" }, { - "codePostal": "65120", - "codeCommune": "65424", - "libelleAcheminement": "SERS", - "nomCommune": "SERS" + "codePostal": "65390", + "codeCommune": "65406", + "libelleAcheminement": "SARNIGUET", + "nomCommune": "SARNIGUET" }, { "codePostal": "65370", - "codeCommune": "65431", - "libelleAcheminement": "SOST", - "nomCommune": "SOST" + "codeCommune": "65407", + "libelleAcheminement": "SARP", + "nomCommune": "SARP" }, { - "codePostal": "65500", - "codeCommune": "65438", - "libelleAcheminement": "TALAZAC", - "nomCommune": "TALAZAC" + "codePostal": "65600", + "codeCommune": "65417", + "libelleAcheminement": "SEMEAC", + "nomCommune": "SEMEAC" }, { - "codePostal": "65220", - "codeCommune": "65448", - "libelleAcheminement": "TOURNOUS DARRE", - "nomCommune": "TOURNOUS DARRE" + "codePostal": "65140", + "codeCommune": "65418", + "libelleAcheminement": "SENAC", + "nomCommune": "SENAC" }, { - "codePostal": "65170", - "codeCommune": "65450", - "libelleAcheminement": "TRAMEZAIGUES", - "nomCommune": "TRAMEZAIGUES" + "codePostal": "65400", + "codeCommune": "65420", + "libelleAcheminement": "SERE EN LAVEDAN", + "nomCommune": "SERE EN LAVEDAN" }, { "codePostal": "65220", - "codeCommune": "65452", - "libelleAcheminement": "TRIE SUR BAISE", - "nomCommune": "TRIE SUR BAISE" + "codeCommune": "65423", + "libelleAcheminement": "SERE RUSTAING", + "nomCommune": "SERE RUSTAING" }, { - "codePostal": "65140", - "codeCommune": "65454", - "libelleAcheminement": "TROULEY LABARTHE", - "nomCommune": "TROULEY LABARTHE" + "codePostal": "65350", + "codeCommune": "65430", + "libelleAcheminement": "SOREAC", + "nomCommune": "SOREAC" }, { - "codePostal": "65200", - "codeCommune": "65459", - "libelleAcheminement": "UZER", - "nomCommune": "UZER" + "codePostal": "65260", + "codeCommune": "65435", + "libelleAcheminement": "SOULOM", + "nomCommune": "SOULOM" }, { - "codePostal": "65700", - "codeCommune": "65462", - "libelleAcheminement": "VIDOUZE", - "nomCommune": "VIDOUZE" + "codePostal": "65350", + "codeCommune": "65436", + "libelleAcheminement": "SOUYEAUX", + "nomCommune": "SOUYEAUX" + }, + { + "codePostal": "65000", + "codeCommune": "65440", + "libelleAcheminement": "TARBES", + "nomCommune": "TARBES" + }, + { + "codePostal": "65330", + "codeCommune": "65449", + "libelleAcheminement": "TOURNOUS DEVANT", + "nomCommune": "TOURNOUS DEVANT" + }, + { + "codePostal": "65170", + "codeCommune": "65465", + "libelleAcheminement": "VIELLE AURE", + "nomCommune": "VIELLE AURE" }, { "codePostal": "65240", @@ -22481,12 +22631,6 @@ "libelleAcheminement": "VIELLE LOURON", "nomCommune": "VIELLE LOURON" }, - { - "codePostal": "65400", - "codeCommune": "65467", - "libelleAcheminement": "VIER BORDES", - "nomCommune": "VIER BORDES" - }, { "codePostal": "65120", "codeCommune": "65469", @@ -22494,28 +22638,22 @@ "nomCommune": "VIEY" }, { - "codePostal": "65100", - "codeCommune": "65470", - "libelleAcheminement": "VIGER", - "nomCommune": "VIGER" - }, - { - "codePostal": "65170", - "codeCommune": "65471", - "libelleAcheminement": "VIGNEC", - "nomCommune": "VIGNEC" + "codePostal": "65500", + "codeCommune": "65477", + "libelleAcheminement": "VILLENAVE PRES MARSAC", + "nomCommune": "VILLENAVE PRES MARSAC" }, { - "codePostal": "65700", - "codeCommune": "65472", - "libelleAcheminement": "VILLEFRANQUE", - "nomCommune": "VILLEFRANQUE" + "codePostal": "65120", + "codeCommune": "65478", + "libelleAcheminement": "VISCOS", + "nomCommune": "VISCOS" }, { - "codePostal": "65220", - "codeCommune": "65474", - "libelleAcheminement": "VILLEMBITS", - "nomCommune": "VILLEMBITS" + "codePostal": "65120", + "codeCommune": "65481", + "libelleAcheminement": "BAREGES", + "nomCommune": "BAREGES" }, { "codePostal": "66110", @@ -22524,28 +22662,58 @@ "nomCommune": "AMELIE LES BAINS PALALDA" }, { - "codePostal": "66210", - "codeCommune": "66004", - "libelleAcheminement": "LES ANGLES", - "nomCommune": "LES ANGLES" + "codePostal": "66760", + "codeCommune": "66005", + "libelleAcheminement": "ANGOUSTRINE VILLENEUVE ESCALDES", + "nomCommune": "ANGOUSTRINE VILLENEUVE DES ESCALDES" }, { - "codePostal": "66320", - "codeCommune": "66007", - "libelleAcheminement": "ARBOUSSOLS", - "nomCommune": "ARBOUSSOLS" + "codePostal": "66760", + "codeCommune": "66005", + "libelleAcheminement": "ANGOUSTRINE VILLENEUVE ESCALDES", + "nomCommune": "ANGOUSTRINE VILLENEUVE DES ESCALDES" }, { - "codePostal": "66700", - "codeCommune": "66008", - "libelleAcheminement": "ARGELES SUR MER", - "nomCommune": "ARGELES SUR MER" + "codePostal": "66220", + "codeCommune": "66006", + "libelleAcheminement": "ANSIGNAN", + "nomCommune": "ANSIGNAN" }, { - "codePostal": "66390", - "codeCommune": "66014", - "libelleAcheminement": "BAIXAS", - "nomCommune": "BAIXAS" + "codePostal": "66150", + "codeCommune": "66009", + "libelleAcheminement": "ARLES SUR TECH", + "nomCommune": "ARLES SUR TECH" + }, + { + "codePostal": "66360", + "codeCommune": "66010", + "libelleAcheminement": "AYGUATEBIA TALAU", + "nomCommune": "AYGUATEBIA TALAU" + }, + { + "codePostal": "66360", + "codeCommune": "66010", + "libelleAcheminement": "AYGUATEBIA TALAU", + "nomCommune": "AYGUATEBIA TALAU" + }, + { + "codePostal": "66300", + "codeCommune": "66015", + "libelleAcheminement": "BANYULS DELS ASPRES", + "nomCommune": "BANYULS DELS ASPRES" + }, + { + "codePostal": "66210", + "codeCommune": "66020", + "libelleAcheminement": "BOLQUERE", + "nomCommune": "BOLQUERE" + }, + { + "codePostal": "66210", + "codeCommune": "66020", + "libelleAcheminement": "BOLQUERE", + "nomCommune": "BOLQUERE" }, { "codePostal": "66430", @@ -22555,15 +22723,15 @@ }, { "codePostal": "66130", - "codeCommune": "66023", - "libelleAcheminement": "BOULETERNERE", - "nomCommune": "BOULETERNERE" + "codeCommune": "66022", + "libelleAcheminement": "BOULE D AMONT", + "nomCommune": "BOULE D AMONT" }, { - "codePostal": "66760", - "codeCommune": "66025", - "libelleAcheminement": "BOURG MADAME", - "nomCommune": "BOURG MADAME" + "codePostal": "66330", + "codeCommune": "66028", + "libelleAcheminement": "CABESTANY", + "nomCommune": "CABESTANY" }, { "codePostal": "66140", @@ -22572,34 +22740,22 @@ "nomCommune": "CANET EN ROUSSILLON" }, { - "codePostal": "66720", - "codeCommune": "66039", - "libelleAcheminement": "CARAMANY", - "nomCommune": "CARAMANY" - }, - { - "codePostal": "66290", - "codeCommune": "66048", - "libelleAcheminement": "CERBERE", - "nomCommune": "CERBERE" - }, - { - "codePostal": "66130", - "codeCommune": "66055", - "libelleAcheminement": "CORBERE", - "nomCommune": "CORBERE" + "codePostal": "66680", + "codeCommune": "66038", + "libelleAcheminement": "CANOHES", + "nomCommune": "CANOHES" }, { - "codePostal": "66820", - "codeCommune": "66057", - "libelleAcheminement": "CORNEILLA DE CONFLENT", - "nomCommune": "CORNEILLA DE CONFLENT" + "codePostal": "66300", + "codeCommune": "66044", + "libelleAcheminement": "CASTELNOU", + "nomCommune": "CASTELNOU" }, { - "codePostal": "66150", - "codeCommune": "66060", - "libelleAcheminement": "CORSAVY", - "nomCommune": "CORSAVY" + "codePostal": "66480", + "codeCommune": "66063", + "libelleAcheminement": "LES CLUSES", + "nomCommune": "LES CLUSES" }, { "codePostal": "66120", @@ -22607,18 +22763,18 @@ "libelleAcheminement": "EGAT", "nomCommune": "EGAT" }, + { + "codePostal": "66310", + "codeCommune": "66071", + "libelleAcheminement": "ESTAGEL", + "nomCommune": "ESTAGEL" + }, { "codePostal": "66820", "codeCommune": "66078", "libelleAcheminement": "FILLOLS", "nomCommune": "FILLOLS" }, - { - "codePostal": "66210", - "codeCommune": "66081", - "libelleAcheminement": "FONTRABIOUSE", - "nomCommune": "FONTRABIOUSE" - }, { "codePostal": "66130", "codeCommune": "66088", @@ -22626,16 +22782,16 @@ "nomCommune": "ILLE SUR TET" }, { - "codePostal": "66300", - "codeCommune": "66099", - "libelleAcheminement": "LLAURO", - "nomCommune": "LLAURO" + "codePostal": "66480", + "codeCommune": "66106", + "libelleAcheminement": "MAUREILLAS LAS ILLAS", + "nomCommune": "MAUREILLAS LAS ILLAS" }, { - "codePostal": "66300", - "codeCommune": "66101", - "libelleAcheminement": "LLUPIA", - "nomCommune": "LLUPIA" + "codePostal": "66500", + "codeCommune": "66109", + "libelleAcheminement": "MOLITG LES BAINS", + "nomCommune": "MOLITG LES BAINS" }, { "codePostal": "66130", @@ -22644,112 +22800,76 @@ "nomCommune": "MONTALBA LE CHATEAU" }, { - "codePostal": "66110", - "codeCommune": "66113", - "libelleAcheminement": "MONTBOLO", - "nomCommune": "MONTBOLO" - }, - { - "codePostal": "66210", - "codeCommune": "66117", - "libelleAcheminement": "MONT LOUIS", - "nomCommune": "MONT LOUIS" - }, - { - "codePostal": "66340", - "codeCommune": "66120", - "libelleAcheminement": "NAHUJA", - "nomCommune": "NAHUJA" - }, - { - "codePostal": "66500", - "codeCommune": "66122", - "libelleAcheminement": "NOHEDES", - "nomCommune": "NOHEDES" - }, - { - "codePostal": "66690", - "codeCommune": "66133", - "libelleAcheminement": "PALAU DEL VIDRE", - "nomCommune": "PALAU DEL VIDRE" + "codePostal": "66740", + "codeCommune": "66115", + "libelleAcheminement": "MONTESQUIEU DES ALBERES", + "nomCommune": "MONTESQUIEU DES ALBERES" }, { - "codePostal": "66300", - "codeCommune": "66134", - "libelleAcheminement": "PASSA", - "nomCommune": "PASSA" + "codePostal": "66120", + "codeCommune": "66124", + "libelleAcheminement": "FONT ROMEU ODEILLO VIA", + "nomCommune": "FONT ROMEU ODEILLO VIA" }, { "codePostal": "66360", - "codeCommune": "66155", - "libelleAcheminement": "PY", - "nomCommune": "PY" - }, - { - "codePostal": "66730", - "codeCommune": "66156", - "libelleAcheminement": "RABOUILLET", - "nomCommune": "RABOUILLET" - }, - { - "codePostal": "66240", - "codeCommune": "66172", - "libelleAcheminement": "ST ESTEVE", - "nomCommune": "ST ESTEVE" + "codeCommune": "66125", + "libelleAcheminement": "OLETTE", + "nomCommune": "OLETTE" }, { - "codePostal": "66170", - "codeCommune": "66173", - "libelleAcheminement": "ST FELIU D AMONT", - "nomCommune": "ST FELIU D AMONT" + "codePostal": "66600", + "codeCommune": "66127", + "libelleAcheminement": "OPOUL PERILLOS", + "nomCommune": "OPOUL PERILLOS" }, { - "codePostal": "66740", - "codeCommune": "66175", - "libelleAcheminement": "ST GENIS DES FONTAINES", - "nomCommune": "ST GENIS DES FONTAINES" + "codePostal": "66100", + "codeCommune": "66136", + "libelleAcheminement": "PERPIGNAN", + "nomCommune": "PERPIGNAN" }, { - "codePostal": "66490", - "codeCommune": "66178", - "libelleAcheminement": "ST JEAN PLA DE CORTS", - "nomCommune": "ST JEAN PLA DE CORTS" + "codePostal": "66380", + "codeCommune": "66141", + "libelleAcheminement": "PIA", + "nomCommune": "PIA" }, { - "codePostal": "66250", - "codeCommune": "66180", - "libelleAcheminement": "ST LAURENT DE LA SALANQUE", - "nomCommune": "ST LAURENT DE LA SALANQUE" + "codePostal": "66210", + "codeCommune": "66154", + "libelleAcheminement": "PUYVALADOR", + "nomCommune": "PUYVALADOR" }, { - "codePostal": "66220", - "codeCommune": "66184", - "libelleAcheminement": "ST MARTIN DE FENOUILLET", - "nomCommune": "ST MARTIN DE FENOUILLET" + "codePostal": "66360", + "codeCommune": "66157", + "libelleAcheminement": "RAILLEU", + "nomCommune": "RAILLEU" }, { - "codePostal": "66570", - "codeCommune": "66186", - "libelleAcheminement": "ST NAZAIRE", - "nomCommune": "ST NAZAIRE" + "codePostal": "66500", + "codeCommune": "66161", + "libelleAcheminement": "RIA SIRACH", + "nomCommune": "RIA SIRACH" }, { - "codePostal": "66210", - "codeCommune": "66188", - "libelleAcheminement": "ST PIERRE DELS FORCATS", - "nomCommune": "ST PIERRE DELS FORCATS" + "codePostal": "66470", + "codeCommune": "66182", + "libelleAcheminement": "STE MARIE LA MER", + "nomCommune": "STE MARIE LA MER" }, { - "codePostal": "66690", - "codeCommune": "66196", - "libelleAcheminement": "SOREDE", - "nomCommune": "SOREDE" + "codePostal": "66360", + "codeCommune": "66193", + "libelleAcheminement": "SERDINYA", + "nomCommune": "SERDINYA" }, { - "codePostal": "66120", - "codeCommune": "66202", - "libelleAcheminement": "TARGASSONNE", - "nomCommune": "TARGASSONNE" + "codePostal": "66270", + "codeCommune": "66195", + "libelleAcheminement": "LE SOLER", + "nomCommune": "LE SOLER" }, { "codePostal": "66110", @@ -22757,30 +22877,6 @@ "libelleAcheminement": "TAULIS", "nomCommune": "TAULIS" }, - { - "codePostal": "66500", - "codeCommune": "66204", - "libelleAcheminement": "TAURINYA", - "nomCommune": "TAURINYA" - }, - { - "codePostal": "66300", - "codeCommune": "66207", - "libelleAcheminement": "TERRATS", - "nomCommune": "TERRATS" - }, - { - "codePostal": "66200", - "codeCommune": "66208", - "libelleAcheminement": "THEZA", - "nomCommune": "THEZA" - }, - { - "codePostal": "66300", - "codeCommune": "66210", - "libelleAcheminement": "THUIR", - "nomCommune": "THUIR" - }, { "codePostal": "66300", "codeCommune": "66211", @@ -22788,34 +22884,28 @@ "nomCommune": "TORDERES" }, { - "codePostal": "66220", - "codeCommune": "66216", - "libelleAcheminement": "TRILLA", - "nomCommune": "TRILLA" - }, - { - "codePostal": "66760", - "codeCommune": "66218", - "libelleAcheminement": "UR", - "nomCommune": "UR" + "codePostal": "66440", + "codeCommune": "66212", + "libelleAcheminement": "TORREILLES", + "nomCommune": "TORREILLES" }, { - "codePostal": "66410", - "codeCommune": "66224", - "libelleAcheminement": "VILLELONGUE DE LA SALANQUE", - "nomCommune": "VILLELONGUE DE LA SALANQUE" + "codePostal": "66300", + "codeCommune": "66217", + "libelleAcheminement": "TROUILLAS", + "nomCommune": "TROUILLAS" }, { - "codePostal": "66740", - "codeCommune": "66225", - "libelleAcheminement": "VILLELONGUE DELS MONTS", - "nomCommune": "VILLELONGUE DELS MONTS" + "codePostal": "66340", + "codeCommune": "66220", + "libelleAcheminement": "VALCEBOLLERE", + "nomCommune": "VALCEBOLLERE" }, { - "codePostal": "66490", - "codeCommune": "66233", - "libelleAcheminement": "VIVES", - "nomCommune": "VIVES" + "codePostal": "66610", + "codeCommune": "66228", + "libelleAcheminement": "VILLENEUVE LA RIVIERE", + "nomCommune": "VILLENEUVE LA RIVIERE" }, { "codePostal": "67204", @@ -22823,18 +22913,6 @@ "libelleAcheminement": "ACHENHEIM", "nomCommune": "ACHENHEIM" }, - { - "codePostal": "67220", - "codeCommune": "67003", - "libelleAcheminement": "ALBE", - "nomCommune": "ALBE" - }, - { - "codePostal": "67310", - "codeCommune": "67004", - "libelleAcheminement": "SOMMERAU", - "nomCommune": "SOMMERAU" - }, { "codePostal": "67440", "codeCommune": "67004", @@ -22842,64 +22920,52 @@ "nomCommune": "SOMMERAU" }, { - "codePostal": "67310", - "codeCommune": "67018", - "libelleAcheminement": "BALBRONN", - "nomCommune": "BALBRONN" - }, - { - "codePostal": "67600", - "codeCommune": "67019", - "libelleAcheminement": "BALDENHEIM", - "nomCommune": "BALDENHEIM" - }, - { - "codePostal": "67320", - "codeCommune": "67029", - "libelleAcheminement": "BERG", - "nomCommune": "BERG" + "codePostal": "67270", + "codeCommune": "67005", + "libelleAcheminement": "ALTECKENDORF", + "nomCommune": "ALTECKENDORF" }, { "codePostal": "67140", - "codeCommune": "67032", - "libelleAcheminement": "BERNARDVILLE", - "nomCommune": "BERNARDVILLE" + "codeCommune": "67021", + "libelleAcheminement": "BARR", + "nomCommune": "BARR" }, { - "codePostal": "67370", - "codeCommune": "67034", - "libelleAcheminement": "BERSTETT", - "nomCommune": "BERSTETT" + "codePostal": "67500", + "codeCommune": "67023", + "libelleAcheminement": "BATZENDORF", + "nomCommune": "BATZENDORF" }, { - "codePostal": "67370", - "codeCommune": "67034", - "libelleAcheminement": "BERSTETT", - "nomCommune": "BERSTETT" + "codePostal": "67130", + "codeCommune": "67027", + "libelleAcheminement": "BELMONT", + "nomCommune": "BELMONT" }, { - "codePostal": "67320", - "codeCommune": "67036", - "libelleAcheminement": "BETTWILLER", - "nomCommune": "BETTWILLER" + "codePostal": "67340", + "codeCommune": "67044", + "libelleAcheminement": "BISCHHOLTZ", + "nomCommune": "BISCHHOLTZ" }, { - "codePostal": "67390", - "codeCommune": "67053", - "libelleAcheminement": "BOESENBIESEN", - "nomCommune": "BOESENBIESEN" + "codePostal": "67240", + "codeCommune": "67046", + "libelleAcheminement": "BISCHWILLER", + "nomCommune": "BISCHWILLER" }, { - "codePostal": "67860", - "codeCommune": "67055", - "libelleAcheminement": "BOOFZHEIM", - "nomCommune": "BOOFZHEIM" + "codePostal": "67530", + "codeCommune": "67052", + "libelleAcheminement": "BOERSCH", + "nomCommune": "BOERSCH" }, { - "codePostal": "67330", - "codeCommune": "67057", - "libelleAcheminement": "BOSSELSHAUSEN", - "nomCommune": "BOSSELSHAUSEN" + "codePostal": "67150", + "codeCommune": "67054", + "libelleAcheminement": "BOLSENHEIM", + "nomCommune": "BOLSENHEIM" }, { "codePostal": "67270", @@ -22913,18 +22979,6 @@ "libelleAcheminement": "BOUXWILLER", "nomCommune": "BOUXWILLER" }, - { - "codePostal": "67220", - "codeCommune": "67062", - "libelleAcheminement": "BREITENAU", - "nomCommune": "BREITENAU" - }, - { - "codePostal": "67112", - "codeCommune": "67065", - "libelleAcheminement": "BREUSCHWICKERSHEIM", - "nomCommune": "BREUSCHWICKERSHEIM" - }, { "codePostal": "67130", "codeCommune": "67066", @@ -22932,28 +22986,10 @@ "nomCommune": "LA BROQUE" }, { - "codePostal": "67570", - "codeCommune": "67066", - "libelleAcheminement": "LA BROQUE", - "nomCommune": "LA BROQUE" - }, - { - "codePostal": "67470", - "codeCommune": "67069", - "libelleAcheminement": "BUHL", - "nomCommune": "BUHL" - }, - { - "codePostal": "67260", - "codeCommune": "67070", - "libelleAcheminement": "BURBACH", - "nomCommune": "BURBACH" - }, - { - "codePostal": "67430", - "codeCommune": "67072", - "libelleAcheminement": "BUTTEN", - "nomCommune": "BUTTEN" + "codePostal": "67310", + "codeCommune": "67077", + "libelleAcheminement": "COSSWILLER", + "nomCommune": "COSSWILLER" }, { "codePostal": "67310", @@ -22962,76 +22998,46 @@ "nomCommune": "CRASTATT" }, { - "codePostal": "67310", - "codeCommune": "67081", - "libelleAcheminement": "DAHLENHEIM", - "nomCommune": "DAHLENHEIM" + "codePostal": "67120", + "codeCommune": "67080", + "libelleAcheminement": "DACHSTEIN", + "nomCommune": "DACHSTEIN" }, { - "codePostal": "67770", - "codeCommune": "67082", - "libelleAcheminement": "DALHUNDEN", - "nomCommune": "DALHUNDEN" + "codePostal": "67350", + "codeCommune": "67087", + "libelleAcheminement": "DAUENDORF", + "nomCommune": "DAUENDORF" }, { - "codePostal": "67110", - "codeCommune": "67083", - "libelleAcheminement": "DAMBACH", - "nomCommune": "DAMBACH" - }, - { - "codePostal": "67650", - "codeCommune": "67084", - "libelleAcheminement": "DAMBACH LA VILLE", - "nomCommune": "DAMBACH LA VILLE" - }, - { - "codePostal": "67350", - "codeCommune": "67087", - "libelleAcheminement": "DAUENDORF", - "nomCommune": "DAUENDORF" - }, - { - "codePostal": "67430", - "codeCommune": "67088", - "libelleAcheminement": "DEHLINGEN", - "nomCommune": "DEHLINGEN" - }, - { - "codePostal": "67370", - "codeCommune": "67097", - "libelleAcheminement": "DINGSHEIM", - "nomCommune": "DINGSHEIM" - }, - { - "codePostal": "67430", - "codeCommune": "67099", - "libelleAcheminement": "DOMFESSEL", - "nomCommune": "DOMFESSEL" + "codePostal": "67230", + "codeCommune": "67090", + "libelleAcheminement": "DIEBOLSHEIM", + "nomCommune": "DIEBOLSHEIM" }, { - "codePostal": "67320", - "codeCommune": "67105", - "libelleAcheminement": "DRULINGEN", - "nomCommune": "DRULINGEN" + "codePostal": "67190", + "codeCommune": "67098", + "libelleAcheminement": "DINSHEIM SUR BRUCHE", + "nomCommune": "DINSHEIM SUR BRUCHE" }, { "codePostal": "67120", - "codeCommune": "67108", - "libelleAcheminement": "DUPPIGHEIM", - "nomCommune": "DUPPIGHEIM" + "codeCommune": "67112", + "libelleAcheminement": "DUTTLENHEIM", + "nomCommune": "DUTTLENHEIM" }, { - "codePostal": "67700", - "codeCommune": "67117", - "libelleAcheminement": "ECKARTSWILLER", - "nomCommune": "ECKARTSWILLER" + "codePostal": "67600", + "codeCommune": "67116", + "libelleAcheminement": "EBERSMUNSTER", + "nomCommune": "EBERSMUNSTER" }, { - "codePostal": "67201", - "codeCommune": "67118", - "libelleAcheminement": "ECKBOLSHEIM", - "nomCommune": "ECKBOLSHEIM" + "codePostal": "67710", + "codeCommune": "67122", + "libelleAcheminement": "WANGENBOURG ENGENTHAL", + "nomCommune": "WANGENBOURG ENGENTHAL" }, { "codePostal": "67710", @@ -23040,10 +23046,10 @@ "nomCommune": "WANGENBOURG ENGENTHAL" }, { - "codePostal": "67120", - "codeCommune": "67128", - "libelleAcheminement": "ERNOLSHEIM BRUCHE", - "nomCommune": "ERNOLSHEIM BRUCHE" + "codePostal": "67960", + "codeCommune": "67124", + "libelleAcheminement": "ENTZHEIM", + "nomCommune": "ENTZHEIM" }, { "codePostal": "67320", @@ -23051,24 +23057,12 @@ "libelleAcheminement": "ESCHBOURG", "nomCommune": "ESCHBOURG" }, - { - "codePostal": "67320", - "codeCommune": "67134", - "libelleAcheminement": "ESCHWILLER", - "nomCommune": "ESCHWILLER" - }, { "codePostal": "67350", "codeCommune": "67135", "libelleAcheminement": "ETTENDORF", "nomCommune": "ETTENDORF" }, - { - "codePostal": "67640", - "codeCommune": "67137", - "libelleAcheminement": "FEGERSHEIM", - "nomCommune": "FEGERSHEIM" - }, { "codePostal": "67480", "codeCommune": "67142", @@ -23076,34 +23070,22 @@ "nomCommune": "FORT LOUIS" }, { - "codePostal": "67130", - "codeCommune": "67144", - "libelleAcheminement": "FOUDAY", - "nomCommune": "FOUDAY" - }, - { - "codePostal": "67360", - "codeCommune": "67147", - "libelleAcheminement": "FROESCHWILLER", - "nomCommune": "FROESCHWILLER" - }, - { - "codePostal": "67700", - "codeCommune": "67149", - "libelleAcheminement": "FURCHHAUSEN", - "nomCommune": "FURCHHAUSEN" + "codePostal": "67760", + "codeCommune": "67151", + "libelleAcheminement": "GAMBSHEIM", + "nomCommune": "GAMBSHEIM" }, { - "codePostal": "67117", - "codeCommune": "67150", - "libelleAcheminement": "FURDENHEIM", - "nomCommune": "FURDENHEIM" + "codePostal": "67150", + "codeCommune": "67154", + "libelleAcheminement": "GERSTHEIM", + "nomCommune": "GERSTHEIM" }, { - "codePostal": "67270", - "codeCommune": "67153", - "libelleAcheminement": "GEISWILLER ZOEBERSDORF", - "nomCommune": "GEISWILLER ZOEBERSDORF" + "codePostal": "67170", + "codeCommune": "67156", + "libelleAcheminement": "GEUDERTHEIM", + "nomCommune": "GEUDERTHEIM" }, { "codePostal": "67320", @@ -23112,70 +23094,106 @@ "nomCommune": "GOERLINGEN" }, { - "codePostal": "67130", - "codeCommune": "67165", - "libelleAcheminement": "GRANDFONTAINE", - "nomCommune": "GRANDFONTAINE" + "codePostal": "67190", + "codeCommune": "67167", + "libelleAcheminement": "GRENDELBRUCH", + "nomCommune": "GRENDELBRUCH" + }, + { + "codePostal": "67870", + "codeCommune": "67172", + "libelleAcheminement": "GRIESHEIM PRES MOLSHEIM", + "nomCommune": "GRIESHEIM PRES MOLSHEIM" }, { "codePostal": "67110", - "codeCommune": "67174", - "libelleAcheminement": "GUMBRECHTSHOFFEN", - "nomCommune": "GUMBRECHTSHOFFEN" + "codeCommune": "67176", + "libelleAcheminement": "GUNDERSHOFFEN", + "nomCommune": "GUNDERSHOFFEN" }, { - "codePostal": "67700", - "codeCommune": "67179", - "libelleAcheminement": "HAEGEN", - "nomCommune": "HAEGEN" + "codePostal": "67360", + "codeCommune": "67177", + "libelleAcheminement": "GUNSTETT", + "nomCommune": "GUNSTETT" }, { - "codePostal": "67260", - "codeCommune": "67183", - "libelleAcheminement": "HARSKIRCHEN", - "nomCommune": "HARSKIRCHEN" + "codePostal": "67500", + "codeCommune": "67180", + "libelleAcheminement": "HAGUENAU", + "nomCommune": "HAGUENAU" }, { - "codePostal": "67330", - "codeCommune": "67185", - "libelleAcheminement": "HATTMATT", - "nomCommune": "HATTMATT" + "codePostal": "67440", + "codeCommune": "67190", + "libelleAcheminement": "HENGWILLER", + "nomCommune": "HENGWILLER" }, { - "codePostal": "67360", - "codeCommune": "67186", - "libelleAcheminement": "HEGENEY", - "nomCommune": "HEGENEY" + "codePostal": "67320", + "codeCommune": "67201", + "libelleAcheminement": "HIRSCHLAND", + "nomCommune": "HIRSCHLAND" }, { - "codePostal": "67850", - "codeCommune": "67194", - "libelleAcheminement": "HERRLISHEIM", - "nomCommune": "HERRLISHEIM" + "codePostal": "67170", + "codeCommune": "67203", + "libelleAcheminement": "HOCHSTETT", + "nomCommune": "HOCHSTETT" }, { - "codePostal": "67390", - "codeCommune": "67195", - "libelleAcheminement": "HESSENHEIM", - "nomCommune": "HESSENHEIM" + "codePostal": "67250", + "codeCommune": "67206", + "libelleAcheminement": "HOFFEN", + "nomCommune": "HOFFEN" }, { - "codePostal": "67150", - "codeCommune": "67197", - "libelleAcheminement": "HINDISHEIM", - "nomCommune": "HINDISHEIM" + "codePostal": "67250", + "codeCommune": "67206", + "libelleAcheminement": "HOFFEN", + "nomCommune": "HOFFEN" }, { - "codePostal": "67800", - "codeCommune": "67204", - "libelleAcheminement": "HOENHEIM", - "nomCommune": "HOENHEIM" + "codePostal": "67140", + "codeCommune": "67210", + "libelleAcheminement": "LE HOHWALD", + "nomCommune": "LE HOHWALD" }, { - "codePostal": "67720", - "codeCommune": "67205", - "libelleAcheminement": "HOERDT", - "nomCommune": "HOERDT" + "codePostal": "67250", + "codeCommune": "67221", + "libelleAcheminement": "INGOLSHEIM", + "nomCommune": "INGOLSHEIM" + }, + { + "codePostal": "67330", + "codeCommune": "67225", + "libelleAcheminement": "ISSENHAUSEN", + "nomCommune": "ISSENHAUSEN" + }, + { + "codePostal": "67117", + "codeCommune": "67226", + "libelleAcheminement": "ITTENHEIM", + "nomCommune": "ITTENHEIM" + }, + { + "codePostal": "67370", + "codeCommune": "67228", + "libelleAcheminement": "NEUGARTHEIM ITTLENHEIM", + "nomCommune": "NEUGARTHEIM ITTLENHEIM" + }, + { + "codePostal": "67370", + "codeCommune": "67228", + "libelleAcheminement": "NEUGARTHEIM ITTLENHEIM", + "nomCommune": "NEUGARTHEIM ITTLENHEIM" + }, + { + "codePostal": "67440", + "codeCommune": "67229", + "libelleAcheminement": "JETTERSWILLER", + "nomCommune": "JETTERSWILLER" }, { "codePostal": "67240", @@ -23190,16 +23208,10 @@ "nomCommune": "KEFFENACH" }, { - "codePostal": "67840", - "codeCommune": "67237", - "libelleAcheminement": "KILSTETT", - "nomCommune": "KILSTETT" - }, - { - "codePostal": "67600", - "codeCommune": "67239", - "libelleAcheminement": "KINTZHEIM", - "nomCommune": "KINTZHEIM" + "codePostal": "67350", + "codeCommune": "67238", + "libelleAcheminement": "KINDWILLER", + "nomCommune": "KINDWILLER" }, { "codePostal": "67520", @@ -23208,70 +23220,94 @@ "nomCommune": "KIRCHHEIM" }, { - "codePostal": "67120", - "codeCommune": "67247", - "libelleAcheminement": "KOLBSHEIM", - "nomCommune": "KOLBSHEIM" + "codePostal": "67320", + "codeCommune": "67241", + "libelleAcheminement": "KIRRBERG", + "nomCommune": "KIRRBERG" }, { - "codePostal": "67880", - "codeCommune": "67248", - "libelleAcheminement": "KRAUTERGERSHEIM", - "nomCommune": "KRAUTERGERSHEIM" + "codePostal": "67330", + "codeCommune": "67242", + "libelleAcheminement": "KIRRWILLER", + "nomCommune": "KIRRWILLER" }, { - "codePostal": "67170", - "codeCommune": "67250", - "libelleAcheminement": "KRIEGSHEIM", - "nomCommune": "KRIEGSHEIM" + "codePostal": "67310", + "codeCommune": "67245", + "libelleAcheminement": "KNOERSHEIM", + "nomCommune": "KNOERSHEIM" }, { - "codePostal": "67640", - "codeCommune": "67268", - "libelleAcheminement": "LIPSHEIM", - "nomCommune": "LIPSHEIM" + "codePostal": "67250", + "codeCommune": "67254", + "libelleAcheminement": "KUTZENHAUSEN", + "nomCommune": "KUTZENHAUSEN" }, { - "codePostal": "67490", - "codeCommune": "67269", - "libelleAcheminement": "LITTENHEIM", - "nomCommune": "LITTENHEIM" + "codePostal": "67250", + "codeCommune": "67257", + "libelleAcheminement": "LAMPERTSLOCH", + "nomCommune": "LAMPERTSLOCH" }, { - "codePostal": "67270", - "codeCommune": "67270", - "libelleAcheminement": "LIXHAUSEN", - "nomCommune": "LIXHAUSEN" + "codePostal": "67360", + "codeCommune": "67259", + "libelleAcheminement": "LANGENSOULTZBACH", + "nomCommune": "LANGENSOULTZBACH" }, { - "codePostal": "67170", - "codeCommune": "67298", - "libelleAcheminement": "MITTELSCHAEFFOLSHEIM", - "nomCommune": "MITTELSCHAEFFOLSHEIM" + "codePostal": "67580", + "codeCommune": "67260", + "libelleAcheminement": "LAUBACH", + "nomCommune": "LAUBACH" }, { - "codePostal": "67670", - "codeCommune": "67301", - "libelleAcheminement": "MOMMENHEIM", - "nomCommune": "MOMMENHEIM" + "codePostal": "67520", + "codeCommune": "67282", + "libelleAcheminement": "MARLENHEIM", + "nomCommune": "MARLENHEIM" + }, + { + "codePostal": "67440", + "codeCommune": "67283", + "libelleAcheminement": "MARMOUTIER", + "nomCommune": "MARMOUTIER" + }, + { + "codePostal": "67210", + "codeCommune": "67286", + "libelleAcheminement": "MEISTRATZHEIM", + "nomCommune": "MEISTRATZHEIM" + }, + { + "codePostal": "67250", + "codeCommune": "67290", + "libelleAcheminement": "MERKWILLER PECHELBRONN", + "nomCommune": "MERKWILLER PECHELBRONN" + }, + { + "codePostal": "67580", + "codeCommune": "67291", + "libelleAcheminement": "MERTZWILLER", + "nomCommune": "MERTZWILLER" }, { "codePostal": "67350", - "codeCommune": "67304", - "libelleAcheminement": "MORSCHWILLER", - "nomCommune": "MORSCHWILLER" + "codeCommune": "67307", + "libelleAcheminement": "MULHAUSEN", + "nomCommune": "MULHAUSEN" }, { - "codePostal": "67470", - "codeCommune": "67305", - "libelleAcheminement": "MOTHERN", - "nomCommune": "MOTHERN" + "codePostal": "67450", + "codeCommune": "67309", + "libelleAcheminement": "MUNDOLSHEIM", + "nomCommune": "MUNDOLSHEIM" }, { - "codePostal": "67130", - "codeCommune": "67306", - "libelleAcheminement": "MUHLBACH SUR BRUCHE", - "nomCommune": "MUHLBACH SUR BRUCHE" + "codePostal": "67600", + "codeCommune": "67311", + "libelleAcheminement": "MUTTERSHOLTZ", + "nomCommune": "MUTTERSHOLTZ" }, { "codePostal": "67270", @@ -23280,10 +23316,22 @@ "nomCommune": "MUTZENHOUSE" }, { - "codePostal": "67210", - "codeCommune": "67329", - "libelleAcheminement": "NIEDERNAI", - "nomCommune": "NIEDERNAI" + "codePostal": "67220", + "codeCommune": "67317", + "libelleAcheminement": "NEUBOIS", + "nomCommune": "NEUBOIS" + }, + { + "codePostal": "67470", + "codeCommune": "67330", + "libelleAcheminement": "NIEDERROEDERN", + "nomCommune": "NIEDERROEDERN" + }, + { + "codePostal": "67500", + "codeCommune": "67331", + "libelleAcheminement": "NIEDERSCHAEFFOLSHEIM", + "nomCommune": "NIEDERSCHAEFFOLSHEIM" }, { "codePostal": "67150", @@ -23292,70 +23340,70 @@ "nomCommune": "NORDHOUSE" }, { - "codePostal": "67680", - "codeCommune": "67337", - "libelleAcheminement": "NOTHALTEN", - "nomCommune": "NOTHALTEN" + "codePostal": "67660", + "codeCommune": "67339", + "libelleAcheminement": "BETSCHDORF", + "nomCommune": "BETSCHDORF" }, { - "codePostal": "67240", - "codeCommune": "67345", - "libelleAcheminement": "OBERHOFFEN SUR MODER", - "nomCommune": "OBERHOFFEN SUR MODER" + "codePostal": "67110", + "codeCommune": "67340", + "libelleAcheminement": "OBERBRONN", + "nomCommune": "OBERBRONN" }, { - "codePostal": "67210", - "codeCommune": "67348", - "libelleAcheminement": "OBERNAI", - "nomCommune": "OBERNAI" + "codePostal": "67280", + "codeCommune": "67342", + "libelleAcheminement": "OBERHASLACH", + "nomCommune": "OBERHASLACH" }, { - "codePostal": "67250", - "codeCommune": "67349", - "libelleAcheminement": "OBERROEDERN", - "nomCommune": "OBERROEDERN" + "codePostal": "67205", + "codeCommune": "67343", + "libelleAcheminement": "OBERHAUSBERGEN", + "nomCommune": "OBERHAUSBERGEN" }, { "codePostal": "67160", - "codeCommune": "67351", - "libelleAcheminement": "SEEBACH", - "nomCommune": "SEEBACH" + "codeCommune": "67344", + "libelleAcheminement": "OBERHOFFEN LES WISSEMBOURG", + "nomCommune": "OBERHOFFEN LES WISSEMBOURG" }, { - "codePostal": "67160", - "codeCommune": "67351", - "libelleAcheminement": "SEEBACH", - "nomCommune": "SEEBACH" + "codePostal": "67240", + "codeCommune": "67345", + "libelleAcheminement": "OBERHOFFEN SUR MODER", + "nomCommune": "OBERHOFFEN SUR MODER" }, { - "codePostal": "67520", - "codeCommune": "67354", - "libelleAcheminement": "ODRATZHEIM", - "nomCommune": "ODRATZHEIM" + "codePostal": "67160", + "codeCommune": "67346", + "libelleAcheminement": "OBERLAUTERBACH", + "nomCommune": "OBERLAUTERBACH" }, { - "codePostal": "67590", - "codeCommune": "67359", - "libelleAcheminement": "OHLUNGEN", - "nomCommune": "OHLUNGEN" + "codePostal": "67203", + "codeCommune": "67350", + "libelleAcheminement": "OBERSCHAEFFOLSHEIM", + "nomCommune": "OBERSCHAEFFOLSHEIM" }, { - "codePostal": "67600", - "codeCommune": "67362", - "libelleAcheminement": "ORSCHWILLER", - "nomCommune": "ORSCHWILLER" + "codePostal": "67850", + "codeCommune": "67356", + "libelleAcheminement": "OFFENDORF", + "nomCommune": "OFFENDORF" }, { - "codePostal": "67540", - "codeCommune": "67365", - "libelleAcheminement": "OSTWALD", - "nomCommune": "OSTWALD" + "codePostal": "67170", + "codeCommune": "67361", + "libelleAcheminement": "OLWISHEIM", + "nomCommune": "OLWISHEIM" }, { - "codePostal": "67320", - "codeCommune": "67369", - "libelleAcheminement": "OTTWILLER", - "nomCommune": "OTTWILLER" + "codePostal": "67290", + "codeCommune": "67370", + "libelleAcheminement": "PETERSBACH", + "nomCommune": "PETERSBACH" }, { "codePostal": "67350", @@ -23364,34 +23412,46 @@ "nomCommune": "VAL DE MODER" }, { - "codePostal": "67310", - "codeCommune": "67383", - "libelleAcheminement": "RANGEN", - "nomCommune": "RANGEN" + "codePostal": "67420", + "codeCommune": "67377", + "libelleAcheminement": "PLAINE", + "nomCommune": "PLAINE" }, { - "codePostal": "67440", - "codeCommune": "67391", - "libelleAcheminement": "REINHARDSMUNSTER", - "nomCommune": "REINHARDSMUNSTER" + "codePostal": "67250", + "codeCommune": "67379", + "libelleAcheminement": "PREUSCHDORF", + "nomCommune": "PREUSCHDORF" }, { - "codePostal": "67320", - "codeCommune": "67396", - "libelleAcheminement": "REXINGEN", - "nomCommune": "REXINGEN" + "codePostal": "67290", + "codeCommune": "67381", + "libelleAcheminement": "PUBERG", + "nomCommune": "PUBERG" }, { - "codePostal": "67690", - "codeCommune": "67404", - "libelleAcheminement": "RITTERSHOFFEN", - "nomCommune": "RITTERSHOFFEN" + "codePostal": "67117", + "codeCommune": "67382", + "libelleAcheminement": "QUATZENHEIM", + "nomCommune": "QUATZENHEIM" }, { - "codePostal": "67480", - "codeCommune": "67405", - "libelleAcheminement": "ROESCHWOOG", - "nomCommune": "ROESCHWOOG" + "codePostal": "67310", + "codeCommune": "67383", + "libelleAcheminement": "RANGEN", + "nomCommune": "RANGEN" + }, + { + "codePostal": "67116", + "codeCommune": "67389", + "libelleAcheminement": "REICHSTETT", + "nomCommune": "REICHSTETT" + }, + { + "codePostal": "67160", + "codeCommune": "67400", + "libelleAcheminement": "RIEDSELTZ", + "nomCommune": "RIEDSELTZ" }, { "codePostal": "67410", @@ -23399,12 +23459,6 @@ "libelleAcheminement": "ROHRWILLER", "nomCommune": "ROHRWILLER" }, - { - "codePostal": "67480", - "codeCommune": "67409", - "libelleAcheminement": "ROPPENHEIM", - "nomCommune": "ROPPENHEIM" - }, { "codePostal": "67230", "codeCommune": "67412", @@ -23417,18 +23471,6 @@ "libelleAcheminement": "ROTT", "nomCommune": "ROTT" }, - { - "codePostal": "67480", - "codeCommune": "67418", - "libelleAcheminement": "ROUNTZENHEIM AUENHEIM", - "nomCommune": "ROUNTZENHEIM AUENHEIM" - }, - { - "codePostal": "67130", - "codeCommune": "67420", - "libelleAcheminement": "RUSS", - "nomCommune": "RUSS" - }, { "codePostal": "67130", "codeCommune": "67420", @@ -23442,70 +23484,58 @@ "nomCommune": "SAALES" }, { - "codePostal": "67270", - "codeCommune": "67423", - "libelleAcheminement": "SAESSOLSHEIM", - "nomCommune": "SAESSOLSHEIM" - }, - { - "codePostal": "67700", - "codeCommune": "67425", - "libelleAcheminement": "ST JEAN SAVERNE", - "nomCommune": "ST JEAN SAVERNE" - }, - { - "codePostal": "67260", - "codeCommune": "67434", - "libelleAcheminement": "SARRE UNION", - "nomCommune": "SARRE UNION" + "codePostal": "67220", + "codeCommune": "67427", + "libelleAcheminement": "ST MAURICE", + "nomCommune": "ST MAURICE" }, { - "codePostal": "67260", - "codeCommune": "67435", - "libelleAcheminement": "SARREWERDEN", - "nomCommune": "SARREWERDEN" + "codePostal": "67140", + "codeCommune": "67429", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "67470", - "codeCommune": "67440", - "libelleAcheminement": "SCHAFFHOUSE PRES SELTZ", - "nomCommune": "SCHAFFHOUSE PRES SELTZ" + "codePostal": "67220", + "codeCommune": "67430", + "libelleAcheminement": "ST PIERRE BOIS", + "nomCommune": "ST PIERRE BOIS" }, { - "codePostal": "67340", - "codeCommune": "67446", - "libelleAcheminement": "SCHILLERSDORF", - "nomCommune": "SCHILLERSDORF" + "codePostal": "67220", + "codeCommune": "67430", + "libelleAcheminement": "ST PIERRE BOIS", + "nomCommune": "ST PIERRE BOIS" }, { - "codePostal": "67130", - "codeCommune": "67448", - "libelleAcheminement": "SCHIRMECK", - "nomCommune": "SCHIRMECK" + "codePostal": "67700", + "codeCommune": "67437", + "libelleAcheminement": "SAVERNE", + "nomCommune": "SAVERNE" }, { - "codePostal": "67240", - "codeCommune": "67449", - "libelleAcheminement": "SCHIRRHEIN", - "nomCommune": "SCHIRRHEIN" + "codePostal": "67150", + "codeCommune": "67438", + "libelleAcheminement": "SCHAEFFERSHEIM", + "nomCommune": "SCHAEFFERSHEIM" }, { - "codePostal": "67370", - "codeCommune": "67452", - "libelleAcheminement": "SCHNERSHEIM", - "nomCommune": "SCHNERSHEIM" + "codePostal": "67630", + "codeCommune": "67443", + "libelleAcheminement": "SCHEIBENHARD", + "nomCommune": "SCHEIBENHARD" }, { - "codePostal": "67370", - "codeCommune": "67452", - "libelleAcheminement": "SCHNERSHEIM", - "nomCommune": "SCHNERSHEIM" + "codePostal": "67340", + "codeCommune": "67446", + "libelleAcheminement": "SCHILLERSDORF", + "nomCommune": "SCHILLERSDORF" }, { - "codePostal": "67320", - "codeCommune": "67454", - "libelleAcheminement": "SCHOENBOURG", - "nomCommune": "SCHOENBOURG" + "codePostal": "67300", + "codeCommune": "67447", + "libelleAcheminement": "SCHILTIGHEIM", + "nomCommune": "SCHILTIGHEIM" }, { "codePostal": "67250", @@ -23514,16 +23544,16 @@ "nomCommune": "SCHOENENBOURG" }, { - "codePostal": "67260", - "codeCommune": "67456", - "libelleAcheminement": "SCHOPPERTEN", - "nomCommune": "SCHOPPERTEN" + "codePostal": "67590", + "codeCommune": "67458", + "libelleAcheminement": "SCHWEIGHOUSE SUR MODER", + "nomCommune": "SCHWEIGHOUSE SUR MODER" }, { - "codePostal": "67470", - "codeCommune": "67463", - "libelleAcheminement": "SELTZ", - "nomCommune": "SELTZ" + "codePostal": "67390", + "codeCommune": "67461", + "libelleAcheminement": "SCHWOBSHEIM", + "nomCommune": "SCHWOBSHEIM" }, { "codePostal": "67230", @@ -23532,10 +23562,34 @@ "nomCommune": "SERMERSHEIM" }, { - "codePostal": "67160", - "codeCommune": "67466", - "libelleAcheminement": "SIEGEN", - "nomCommune": "SIEGEN" + "codePostal": "67770", + "codeCommune": "67465", + "libelleAcheminement": "SESSENHEIM", + "nomCommune": "SESSENHEIM" + }, + { + "codePostal": "67130", + "codeCommune": "67470", + "libelleAcheminement": "SOLBACH", + "nomCommune": "SOLBACH" + }, + { + "codePostal": "67460", + "codeCommune": "67471", + "libelleAcheminement": "SOUFFELWEYERSHEIM", + "nomCommune": "SOUFFELWEYERSHEIM" + }, + { + "codePostal": "67250", + "codeCommune": "67474", + "libelleAcheminement": "SOULTZ SOUS FORETS", + "nomCommune": "SOULTZ SOUS FORETS" + }, + { + "codePostal": "67340", + "codeCommune": "67475", + "libelleAcheminement": "SPARSBACH", + "nomCommune": "SPARSBACH" }, { "codePostal": "67160", @@ -23544,10 +23598,22 @@ "nomCommune": "STEINSELTZ" }, { - "codePostal": "67000", - "codeCommune": "67482", - "libelleAcheminement": "STRASBOURG", - "nomCommune": "STRASBOURG" + "codePostal": "67140", + "codeCommune": "67481", + "libelleAcheminement": "STOTZHEIM", + "nomCommune": "STOTZHEIM" + }, + { + "codePostal": "67370", + "codeCommune": "67485", + "libelleAcheminement": "STUTZHEIM OFFENHEIM", + "nomCommune": "STUTZHEIM OFFENHEIM" + }, + { + "codePostal": "67320", + "codeCommune": "67488", + "libelleAcheminement": "THAL DRULINGEN", + "nomCommune": "THAL DRULINGEN" }, { "codePostal": "67440", @@ -23562,52 +23628,34 @@ "nomCommune": "TIEFFENBACH" }, { - "codePostal": "67310", - "codeCommune": "67492", - "libelleAcheminement": "TRAENHEIM", - "nomCommune": "TRAENHEIM" - }, - { - "codePostal": "67370", - "codeCommune": "67495", - "libelleAcheminement": "TRUCHTERSHEIM", - "nomCommune": "TRUCHTERSHEIM" - }, - { - "codePostal": "67370", - "codeCommune": "67495", - "libelleAcheminement": "TRUCHTERSHEIM", - "nomCommune": "TRUCHTERSHEIM" - }, - { - "codePostal": "67110", - "codeCommune": "67502", - "libelleAcheminement": "UTTENHOFFEN", - "nomCommune": "UTTENHOFFEN" + "codePostal": "67150", + "codeCommune": "67501", + "libelleAcheminement": "UTTENHEIM", + "nomCommune": "UTTENHEIM" }, { - "codePostal": "67730", - "codeCommune": "67505", - "libelleAcheminement": "LA VANCELLE", - "nomCommune": "LA VANCELLE" + "codePostal": "67220", + "codeCommune": "67507", + "libelleAcheminement": "VILLE", + "nomCommune": "VILLE" }, { - "codePostal": "67550", - "codeCommune": "67506", - "libelleAcheminement": "VENDENHEIM", - "nomCommune": "VENDENHEIM" + "codePostal": "67430", + "codeCommune": "67508", + "libelleAcheminement": "VOELLERDINGEN", + "nomCommune": "VOELLERDINGEN" }, { - "codePostal": "67430", - "codeCommune": "67514", - "libelleAcheminement": "WALDHAMBACH", - "nomCommune": "WALDHAMBACH" + "codePostal": "67700", + "codeCommune": "67515", + "libelleAcheminement": "WALDOLWISHEIM", + "nomCommune": "WALDOLWISHEIM" }, { - "codePostal": "67310", - "codeCommune": "67520", - "libelleAcheminement": "WASSELONNE", - "nomCommune": "WASSELONNE" + "codePostal": "67610", + "codeCommune": "67519", + "libelleAcheminement": "LA WANTZENAU", + "nomCommune": "LA WANTZENAU" }, { "codePostal": "67340", @@ -23622,16 +23670,16 @@ "nomCommune": "WESTHOUSE" }, { - "codePostal": "67290", - "codeCommune": "67535", - "libelleAcheminement": "WIMMENAU", - "nomCommune": "WIMMENAU" + "codePostal": "67320", + "codeCommune": "67528", + "libelleAcheminement": "WEYER", + "nomCommune": "WEYER" }, { - "codePostal": "67510", - "codeCommune": "67537", - "libelleAcheminement": "WINGEN", - "nomCommune": "WINGEN" + "codePostal": "67270", + "codeCommune": "67530", + "libelleAcheminement": "WICKERSHEIM WILSHAUSEN", + "nomCommune": "WICKERSHEIM WILSHAUSEN" }, { "codePostal": "67510", @@ -23639,12 +23687,6 @@ "libelleAcheminement": "WINGEN", "nomCommune": "WINGEN" }, - { - "codePostal": "67170", - "codeCommune": "67539", - "libelleAcheminement": "WINGERSHEIM LES QUATRE BANS", - "nomCommune": "WINGERSHEIM LES QUATRE BANS" - }, { "codePostal": "67590", "codeCommune": "67540", @@ -23652,22 +23694,28 @@ "nomCommune": "WINTERSHOUSE" }, { - "codePostal": "67370", - "codeCommune": "67548", - "libelleAcheminement": "WIWERSHEIM", - "nomCommune": "WIWERSHEIM" + "codePostal": "67130", + "codeCommune": "67543", + "libelleAcheminement": "WISCHES", + "nomCommune": "WISCHES" }, { - "codePostal": "67360", - "codeCommune": "67550", - "libelleAcheminement": "WOERTH", - "nomCommune": "WOERTH" + "codePostal": "67160", + "codeCommune": "67544", + "libelleAcheminement": "WISSEMBOURG", + "nomCommune": "WISSEMBOURG" }, { - "codePostal": "67140", - "codeCommune": "67557", - "libelleAcheminement": "ZELLWILLER", - "nomCommune": "ZELLWILLER" + "codePostal": "67230", + "codeCommune": "67545", + "libelleAcheminement": "WITTERNHEIM", + "nomCommune": "WITTERNHEIM" + }, + { + "codePostal": "67110", + "codeCommune": "67558", + "libelleAcheminement": "ZINSWILLER", + "nomCommune": "ZINSWILLER" }, { "codePostal": "67290", @@ -23676,10 +23724,16 @@ "nomCommune": "ZITTERSHEIM" }, { - "codePostal": "68130", - "codeCommune": "68010", - "libelleAcheminement": "ASPACH", - "nomCommune": "ASPACH" + "codePostal": "68210", + "codeCommune": "68002", + "libelleAcheminement": "ALTENACH", + "nomCommune": "ALTENACH" + }, + { + "codePostal": "68410", + "codeCommune": "68005", + "libelleAcheminement": "AMMERSCHWIHR", + "nomCommune": "AMMERSCHWIHR" }, { "codePostal": "68700", @@ -23688,10 +23742,22 @@ "nomCommune": "ASPACH MICHELBACH" }, { - "codePostal": "68220", - "codeCommune": "68013", - "libelleAcheminement": "ATTENSCHWILLER", - "nomCommune": "ATTENSCHWILLER" + "codePostal": "68740", + "codeCommune": "68016", + "libelleAcheminement": "BALGAU", + "nomCommune": "BALGAU" + }, + { + "codePostal": "68210", + "codeCommune": "68018", + "libelleAcheminement": "BALSCHWILLER", + "nomCommune": "BALSCHWILLER" + }, + { + "codePostal": "68320", + "codeCommune": "68019", + "libelleAcheminement": "BALTZENHEIM", + "nomCommune": "BALTZENHEIM" }, { "codePostal": "68390", @@ -23700,10 +23766,10 @@ "nomCommune": "BATTENHEIM" }, { - "codePostal": "68630", - "codeCommune": "68026", - "libelleAcheminement": "BENNWIHR MITTELWIHR", - "nomCommune": "BENNWIHR" + "codePostal": "68980", + "codeCommune": "68023", + "libelleAcheminement": "BEBLENHEIM", + "nomCommune": "BEBLENHEIM" }, { "codePostal": "68750", @@ -23718,22 +23784,28 @@ "nomCommune": "BERGHOLTZ" }, { - "codePostal": "68320", - "codeCommune": "68038", - "libelleAcheminement": "BISCHWIHR", - "nomCommune": "BISCHWIHR" + "codePostal": "68500", + "codeCommune": "68032", + "libelleAcheminement": "BERRWILLER", + "nomCommune": "BERRWILLER" }, { - "codePostal": "68740", - "codeCommune": "68041", - "libelleAcheminement": "BLODELSHEIM", - "nomCommune": "BLODELSHEIM" + "codePostal": "68480", + "codeCommune": "68034", + "libelleAcheminement": "BETTLACH", + "nomCommune": "BETTLACH" }, { - "codePostal": "68650", - "codeCommune": "68044", - "libelleAcheminement": "LE BONHOMME", - "nomCommune": "LE BONHOMME" + "codePostal": "68127", + "codeCommune": "68037", + "libelleAcheminement": "BILTZHEIM", + "nomCommune": "BILTZHEIM" + }, + { + "codePostal": "68290", + "codeCommune": "68045", + "libelleAcheminement": "BOURBACH LE BAS", + "nomCommune": "BOURBACH LE BAS" }, { "codePostal": "68290", @@ -23742,16 +23814,40 @@ "nomCommune": "BOURBACH LE HAUT" }, { - "codePostal": "68320", - "codeCommune": "68076", - "libelleAcheminement": "DURRENENTZEN", - "nomCommune": "DURRENENTZEN" + "codePostal": "68780", + "codeCommune": "68052", + "libelleAcheminement": "BRETTEN", + "nomCommune": "BRETTEN" }, { - "codePostal": "68210", - "codeCommune": "68079", - "libelleAcheminement": "ELBACH", - "nomCommune": "ELBACH" + "codePostal": "68350", + "codeCommune": "68056", + "libelleAcheminement": "BRUNSTATT DIDENHEIM", + "nomCommune": "BRUNSTATT DIDENHEIM" + }, + { + "codePostal": "68000", + "codeCommune": "68066", + "libelleAcheminement": "COLMAR", + "nomCommune": "COLMAR" + }, + { + "codePostal": "68290", + "codeCommune": "68073", + "libelleAcheminement": "DOLLEREN", + "nomCommune": "DOLLEREN" + }, + { + "codePostal": "68480", + "codeCommune": "68074", + "libelleAcheminement": "DURLINSDORF", + "nomCommune": "DURLINSDORF" + }, + { + "codePostal": "68540", + "codeCommune": "68088", + "libelleAcheminement": "FELDKIRCH", + "nomCommune": "FELDKIRCH" }, { "codePostal": "68470", @@ -23760,10 +23856,22 @@ "nomCommune": "FELLERING" }, { - "codePostal": "68720", - "codeCommune": "68093", - "libelleAcheminement": "FLAXLANDEN", - "nomCommune": "FLAXLANDEN" + "codePostal": "68740", + "codeCommune": "68091", + "libelleAcheminement": "FESSENHEIM", + "nomCommune": "FESSENHEIM" + }, + { + "codePostal": "68480", + "codeCommune": "68092", + "libelleAcheminement": "FISLIS", + "nomCommune": "FISLIS" + }, + { + "codePostal": "68320", + "codeCommune": "68095", + "libelleAcheminement": "FORTSCHWIHR", + "nomCommune": "FORTSCHWIHR" }, { "codePostal": "68240", @@ -23772,40 +23880,52 @@ "nomCommune": "FRELAND" }, { - "codePostal": "68720", - "codeCommune": "68099", - "libelleAcheminement": "FROENINGEN", - "nomCommune": "FROENINGEN" + "codePostal": "68690", + "codeCommune": "68102", + "libelleAcheminement": "GEISHOUSE", + "nomCommune": "GEISHOUSE" }, { - "codePostal": "68420", - "codeCommune": "68111", - "libelleAcheminement": "GUEBERSCHWIHR", - "nomCommune": "GUEBERSCHWIHR" + "codePostal": "68210", + "codeCommune": "68105", + "libelleAcheminement": "GILDWILLER", + "nomCommune": "GILDWILLER" }, { - "codePostal": "68250", - "codeCommune": "68116", - "libelleAcheminement": "GUNDOLSHEIM", - "nomCommune": "GUNDOLSHEIM" + "codePostal": "68760", + "codeCommune": "68106", + "libelleAcheminement": "GOLDBACH ALTENBACH", + "nomCommune": "GOLDBACH ALTENBACH" }, { - "codePostal": "68220", - "codeCommune": "68121", - "libelleAcheminement": "HAGENTHAL LE HAUT", - "nomCommune": "HAGENTHAL LE HAUT" + "codePostal": "68210", + "codeCommune": "68107", + "libelleAcheminement": "GOMMERSDORF", + "nomCommune": "GOMMERSDORF" }, { - "codePostal": "68220", - "codeCommune": "68126", - "libelleAcheminement": "HEGENHEIM", - "nomCommune": "HEGENHEIM" + "codePostal": "68320", + "codeCommune": "68110", + "libelleAcheminement": "GRUSSENHEIM", + "nomCommune": "GRUSSENHEIM" }, { - "codePostal": "68420", - "codeCommune": "68134", - "libelleAcheminement": "HERRLISHEIM PRES COLMAR", - "nomCommune": "HERRLISHEIM PRES COLMAR" + "codePostal": "68210", + "codeCommune": "68114", + "libelleAcheminement": "GUEVENATTEN", + "nomCommune": "GUEVENATTEN" + }, + { + "codePostal": "68140", + "codeCommune": "68117", + "libelleAcheminement": "GUNSBACH", + "nomCommune": "GUNSBACH" + }, + { + "codePostal": "68510", + "codeCommune": "68132", + "libelleAcheminement": "HELFRANTZKIRCH", + "nomCommune": "HELFRANTZKIRCH" }, { "codePostal": "68220", @@ -23820,10 +23940,16 @@ "nomCommune": "HIRSINGUE" }, { - "codePostal": "68150", - "codeCommune": "68147", - "libelleAcheminement": "HUNAWIHR", - "nomCommune": "HUNAWIHR" + "codePostal": "68110", + "codeCommune": "68154", + "libelleAcheminement": "ILLZACH", + "nomCommune": "ILLZACH" + }, + { + "codePostal": "68040", + "codeCommune": "68155", + "libelleAcheminement": "INGERSHEIM", + "nomCommune": "INGERSHEIM" }, { "codePostal": "68130", @@ -23838,40 +23964,16 @@ "nomCommune": "KAPPELEN" }, { - "codePostal": "68240", - "codeCommune": "68162", - "libelleAcheminement": "KAYSERSBERG VIGNOBLE", - "nomCommune": "KAYSERSBERG VIGNOBLE" + "codePostal": "68680", + "codeCommune": "68163", + "libelleAcheminement": "KEMBS", + "nomCommune": "KEMBS" }, { - "codePostal": "68220", - "codeCommune": "68168", - "libelleAcheminement": "KNOERINGUE", - "nomCommune": "KNOERINGUE" - }, - { - "codePostal": "68820", - "codeCommune": "68171", - "libelleAcheminement": "KRUTH", - "nomCommune": "KRUTH" - }, - { - "codePostal": "68610", - "codeCommune": "68177", - "libelleAcheminement": "LAUTENBACH", - "nomCommune": "LAUTENBACH" - }, - { - "codePostal": "68610", - "codeCommune": "68177", - "libelleAcheminement": "LAUTENBACH", - "nomCommune": "LAUTENBACH" - }, - { - "codePostal": "68610", - "codeCommune": "68178", - "libelleAcheminement": "LAUTENBACHZELL", - "nomCommune": "LAUTENBACHZELL" + "codePostal": "68650", + "codeCommune": "68175", + "libelleAcheminement": "LAPOUTROIE", + "nomCommune": "LAPOUTROIE" }, { "codePostal": "68800", @@ -23880,28 +23982,40 @@ "nomCommune": "LEIMBACH" }, { - "codePostal": "68220", - "codeCommune": "68183", - "libelleAcheminement": "LIEBENSWILLER", - "nomCommune": "LIEBENSWILLER" + "codePostal": "68480", + "codeCommune": "68181", + "libelleAcheminement": "LEVONCOURT", + "nomCommune": "LEVONCOURT" }, { "codePostal": "68480", - "codeCommune": "68186", - "libelleAcheminement": "LIGSDORF", - "nomCommune": "LIGSDORF" + "codeCommune": "68184", + "libelleAcheminement": "LIEBSDORF", + "nomCommune": "LIEBSDORF" + }, + { + "codePostal": "68610", + "codeCommune": "68188", + "libelleAcheminement": "LINTHAL", + "nomCommune": "LINTHAL" }, { "codePostal": "68480", - "codeCommune": "68187", - "libelleAcheminement": "LINSDORF", - "nomCommune": "LINSDORF" + "codeCommune": "68194", + "libelleAcheminement": "LUTTER", + "nomCommune": "LUTTER" }, { - "codePostal": "68550", - "codeCommune": "68199", - "libelleAcheminement": "MALMERSPACH", - "nomCommune": "MALMERSPACH" + "codePostal": "68510", + "codeCommune": "68198", + "libelleAcheminement": "MAGSTATT LE HAUT", + "nomCommune": "MAGSTATT LE HAUT" + }, + { + "codePostal": "68210", + "codeCommune": "68202", + "libelleAcheminement": "MERTZEN", + "nomCommune": "MERTZEN" }, { "codePostal": "68500", @@ -23909,6 +24023,12 @@ "libelleAcheminement": "MERXHEIM", "nomCommune": "MERXHEIM" }, + { + "codePostal": "68890", + "codeCommune": "68205", + "libelleAcheminement": "MEYENHEIM", + "nomCommune": "MEYENHEIM" + }, { "codePostal": "68730", "codeCommune": "68207", @@ -23927,6 +24047,12 @@ "libelleAcheminement": "MITTLACH", "nomCommune": "MITTLACH" }, + { + "codePostal": "68470", + "codeCommune": "68211", + "libelleAcheminement": "MITZACH", + "nomCommune": "MITZACH" + }, { "codePostal": "68580", "codeCommune": "68216", @@ -23934,10 +24060,10 @@ "nomCommune": "MOOSLARGUE" }, { - "codePostal": "68790", - "codeCommune": "68218", - "libelleAcheminement": "MORSCHWILLER LE BAS", - "nomCommune": "MORSCHWILLER LE BAS" + "codePostal": "68640", + "codeCommune": "68221", + "libelleAcheminement": "MUESPACH", + "nomCommune": "MUESPACH" }, { "codePostal": "68200", @@ -23946,16 +24072,22 @@ "nomCommune": "MULHOUSE" }, { - "codePostal": "68200", - "codeCommune": "68224", - "libelleAcheminement": "MULHOUSE", - "nomCommune": "MULHOUSE" + "codePostal": "68740", + "codeCommune": "68225", + "libelleAcheminement": "MUNCHHOUSE", + "nomCommune": "MUNCHHOUSE" }, { - "codePostal": "68530", - "codeCommune": "68229", - "libelleAcheminement": "MURBACH", - "nomCommune": "MURBACH" + "codePostal": "68320", + "codeCommune": "68227", + "libelleAcheminement": "MUNTZENHEIM", + "nomCommune": "MUNTZENHEIM" + }, + { + "codePostal": "68740", + "codeCommune": "68230", + "libelleAcheminement": "NAMBSHEIM", + "nomCommune": "NAMBSHEIM" }, { "codePostal": "68220", @@ -23964,22 +24096,10 @@ "nomCommune": "NEUWILLER" }, { - "codePostal": "68127", - "codeCommune": "68235", - "libelleAcheminement": "NIEDERHERGHEIM", - "nomCommune": "NIEDERHERGHEIM" - }, - { - "codePostal": "68420", - "codeCommune": "68244", - "libelleAcheminement": "OBERMORSCHWIHR", - "nomCommune": "OBERMORSCHWIHR" - }, - { - "codePostal": "68600", - "codeCommune": "68246", - "libelleAcheminement": "OBERSAASHEIM", - "nomCommune": "OBERSAASHEIM" + "codePostal": "68960", + "codeCommune": "68240", + "libelleAcheminement": "ILLTAL", + "nomCommune": "ILLTAL" }, { "codePostal": "68830", @@ -23988,22 +24108,16 @@ "nomCommune": "ODEREN" }, { - "codePostal": "68500", - "codeCommune": "68250", - "libelleAcheminement": "ORSCHWIHR", - "nomCommune": "ORSCHWIHR" - }, - { - "codePostal": "68570", - "codeCommune": "68251", - "libelleAcheminement": "OSENBACH", - "nomCommune": "OSENBACH" + "codePostal": "68370", + "codeCommune": "68249", + "libelleAcheminement": "ORBEY", + "nomCommune": "ORBEY" }, { - "codePostal": "68250", - "codeCommune": "68255", - "libelleAcheminement": "PFAFFENHEIM", - "nomCommune": "PFAFFENHEIM" + "codePostal": "68150", + "codeCommune": "68252", + "libelleAcheminement": "OSTHEIM", + "nomCommune": "OSTHEIM" }, { "codePostal": "68480", @@ -24012,22 +24126,46 @@ "nomCommune": "PFETTERHOUSE" }, { - "codePostal": "68730", - "codeCommune": "68263", - "libelleAcheminement": "RANSPACH LE BAS", - "nomCommune": "RANSPACH LE BAS" + "codePostal": "68470", + "codeCommune": "68262", + "libelleAcheminement": "RANSPACH", + "nomCommune": "RANSPACH" }, { - "codePostal": "68500", - "codeCommune": "68276", - "libelleAcheminement": "RIMBACHZELL", - "nomCommune": "RIMBACHZELL" + "codePostal": "68150", + "codeCommune": "68269", + "libelleAcheminement": "RIBEAUVILLE", + "nomCommune": "RIBEAUVILLE" }, { - "codePostal": "68800", - "codeCommune": "68279", - "libelleAcheminement": "RODEREN", - "nomCommune": "RODEREN" + "codePostal": "68340", + "codeCommune": "68277", + "libelleAcheminement": "RIQUEWIHR", + "nomCommune": "RIQUEWIHR" + }, + { + "codePostal": "68590", + "codeCommune": "68285", + "libelleAcheminement": "RORSCHWIHR", + "nomCommune": "RORSCHWIHR" + }, + { + "codePostal": "68270", + "codeCommune": "68289", + "libelleAcheminement": "RUELISHEIM", + "nomCommune": "RUELISHEIM" + }, + { + "codePostal": "68740", + "codeCommune": "68290", + "libelleAcheminement": "RUSTENHART", + "nomCommune": "RUSTENHART" + }, + { + "codePostal": "68160", + "codeCommune": "68294", + "libelleAcheminement": "STE CROIX AUX MINES", + "nomCommune": "STE CROIX AUX MINES" }, { "codePostal": "68590", @@ -24041,6 +24179,12 @@ "libelleAcheminement": "ST LOUIS", "nomCommune": "ST LOUIS" }, + { + "codePostal": "68300", + "codeCommune": "68297", + "libelleAcheminement": "ST LOUIS", + "nomCommune": "ST LOUIS" + }, { "codePostal": "68160", "codeCommune": "68298", @@ -24054,52 +24198,22 @@ "nomCommune": "SAUSHEIM" }, { - "codePostal": "68780", - "codeCommune": "68304", - "libelleAcheminement": "SENTHEIM", - "nomCommune": "SENTHEIM" - }, - { - "codePostal": "68290", - "codeCommune": "68307", - "libelleAcheminement": "SEWEN", - "nomCommune": "SEWEN" - }, - { - "codePostal": "68510", - "codeCommune": "68309", - "libelleAcheminement": "SIERENTZ", - "nomCommune": "SIERENTZ" - }, - { - "codePostal": "68380", - "codeCommune": "68311", - "libelleAcheminement": "SONDERNACH", - "nomCommune": "SONDERNACH" - }, - { - "codePostal": "68570", - "codeCommune": "68318", - "libelleAcheminement": "SOULTZMATT", - "nomCommune": "SOULTZMATT" - }, - { - "codePostal": "68720", - "codeCommune": "68320", - "libelleAcheminement": "SPECHBACH", - "nomCommune": "SPECHBACH" + "codePostal": "68130", + "codeCommune": "68303", + "libelleAcheminement": "SCHWOBEN", + "nomCommune": "SCHWOBEN" }, { - "codePostal": "68640", - "codeCommune": "68325", - "libelleAcheminement": "STEINSOULTZ", - "nomCommune": "STEINSOULTZ" + "codePostal": "68580", + "codeCommune": "68306", + "libelleAcheminement": "SEPPOIS LE HAUT", + "nomCommune": "SEPPOIS LE HAUT" }, { - "codePostal": "68470", - "codeCommune": "68328", - "libelleAcheminement": "STORCKENSOHN", - "nomCommune": "STORCKENSOHN" + "codePostal": "68700", + "codeCommune": "68322", + "libelleAcheminement": "STEINBACH", + "nomCommune": "STEINBACH" }, { "codePostal": "68280", @@ -24114,25936 +24228,25852 @@ "nomCommune": "TAGOLSHEIM" }, { - "codePostal": "25650", - "codeCommune": "25620", - "libelleAcheminement": "VILLE DU PONT", - "nomCommune": "VILLE DU PONT" + "codePostal": "68580", + "codeCommune": "68340", + "libelleAcheminement": "UEBERSTRASS", + "nomCommune": "UEBERSTRASS" }, { - "codePostal": "25170", - "codeCommune": "25622", - "libelleAcheminement": "VILLERS BUZON", - "nomCommune": "VILLERS BUZON" + "codePostal": "68700", + "codeCommune": "68342", + "libelleAcheminement": "UFFHOLTZ", + "nomCommune": "UFFHOLTZ" }, { - "codePostal": "25640", - "codeCommune": "25624", - "libelleAcheminement": "VILLERS GRELOT", - "nomCommune": "VILLERS GRELOT" + "codePostal": "68190", + "codeCommune": "68343", + "libelleAcheminement": "UNGERSHEIM", + "nomCommune": "UNGERSHEIM" }, { - "codePostal": "25320", - "codeCommune": "25631", - "libelleAcheminement": "VORGES LES PINS", - "nomCommune": "VORGES LES PINS" + "codePostal": "68320", + "codeCommune": "68345", + "libelleAcheminement": "URSCHENHEIM", + "nomCommune": "URSCHENHEIM" }, { - "codePostal": "25430", - "codeCommune": "25635", - "libelleAcheminement": "VYT LES BELVOIR", - "nomCommune": "VYT LES BELVOIR" + "codePostal": "68128", + "codeCommune": "68349", + "libelleAcheminement": "VILLAGE NEUF", + "nomCommune": "VILLAGE NEUF" }, { - "codePostal": "26770", - "codeCommune": "26003", - "libelleAcheminement": "ALEYRAC", - "nomCommune": "ALEYRAC" + "codePostal": "68600", + "codeCommune": "68351", + "libelleAcheminement": "VOGELGRUN", + "nomCommune": "VOGELGRUN" }, { - "codePostal": "26140", - "codeCommune": "26009", - "libelleAcheminement": "ANDANCETTE", - "nomCommune": "ANDANCETTE" + "codePostal": "68130", + "codeCommune": "68353", + "libelleAcheminement": "WAHLBACH", + "nomCommune": "WAHLBACH" }, { - "codePostal": "26140", - "codeCommune": "26010", - "libelleAcheminement": "ANNEYRON", - "nomCommune": "ANNEYRON" + "codePostal": "68250", + "codeCommune": "68364", + "libelleAcheminement": "WESTHALTEN", + "nomCommune": "WESTHALTEN" }, { - "codePostal": "26110", - "codeCommune": "26016", - "libelleAcheminement": "AUBRES", - "nomCommune": "AUBRES" + "codePostal": "68320", + "codeCommune": "68367", + "libelleAcheminement": "WIDENSOLEN", + "nomCommune": "WIDENSOLEN" }, { - "codePostal": "26150", - "codeCommune": "26027", - "libelleAcheminement": "BARSAC", - "nomCommune": "BARSAC" + "codePostal": "68230", + "codeCommune": "68368", + "libelleAcheminement": "WIHR AU VAL", + "nomCommune": "WIHR AU VAL" }, { - "codePostal": "26160", - "codeCommune": "26031", - "libelleAcheminement": "LA BATIE ROLLAND", - "nomCommune": "LA BATIE ROLLAND" + "codePostal": "68124", + "codeCommune": "68374", + "libelleAcheminement": "WINTZENHEIM", + "nomCommune": "WINTZENHEIM" }, { - "codePostal": "26790", - "codeCommune": "26033", - "libelleAcheminement": "LA BAUME DE TRANSIT", - "nomCommune": "LA BAUME DE TRANSIT" + "codePostal": "68130", + "codeCommune": "68377", + "libelleAcheminement": "WITTERSDORF", + "nomCommune": "WITTERSDORF" }, { - "codePostal": "26400", - "codeCommune": "26035", - "libelleAcheminement": "BEAUFORT SUR GERVANNE", - "nomCommune": "BEAUFORT SUR GERVANNE" + "codePostal": "68500", + "codeCommune": "68381", + "libelleAcheminement": "WUENHEIM", + "nomCommune": "WUENHEIM" }, { - "codePostal": "26460", - "codeCommune": "26056", - "libelleAcheminement": "BOURDEAUX", - "nomCommune": "BOURDEAUX" + "codePostal": "69430", + "codeCommune": "69012", + "libelleAcheminement": "LES ARDILLATS", + "nomCommune": "LES ARDILLATS" }, { - "codePostal": "26260", - "codeCommune": "26061", - "libelleAcheminement": "BREN", - "nomCommune": "BREN" + "codePostal": "69790", + "codeCommune": "69016", + "libelleAcheminement": "AZOLETTE", + "nomCommune": "AZOLETTE" }, { - "codePostal": "26340", - "codeCommune": "26062", - "libelleAcheminement": "BRETTE", - "nomCommune": "BRETTE" + "codePostal": "69430", + "codeCommune": "69018", + "libelleAcheminement": "BEAUJEU", + "nomCommune": "BEAUJEU" }, { - "codePostal": "26120", - "codeCommune": "26064", - "libelleAcheminement": "CHABEUIL", - "nomCommune": "CHABEUIL" + "codePostal": "69220", + "codeCommune": "69019", + "libelleAcheminement": "BELLEVILLE EN BEAUJOLAIS", + "nomCommune": "BELLEVILLE EN BEAUJOLAIS" }, { - "codePostal": "26230", - "codeCommune": "26070", - "libelleAcheminement": "CHAMARET", - "nomCommune": "CHAMARET" + "codePostal": "69690", + "codeCommune": "69022", + "libelleAcheminement": "BIBOST", + "nomCommune": "BIBOST" }, { - "codePostal": "26450", - "codeCommune": "26078", - "libelleAcheminement": "CHAROLS", - "nomCommune": "CHAROLS" + "codePostal": "69690", + "codeCommune": "69022", + "libelleAcheminement": "BIBOST", + "nomCommune": "BIBOST" }, { - "codePostal": "26300", - "codeCommune": "26079", - "libelleAcheminement": "CHARPEY", - "nomCommune": "CHARPEY" + "codePostal": "69460", + "codeCommune": "69023", + "libelleAcheminement": "BLACE", + "nomCommune": "BLACE" }, { - "codePostal": "26340", - "codeCommune": "26080", - "libelleAcheminement": "CHASTEL ARNAUD", - "nomCommune": "CHASTEL ARNAUD" + "codePostal": "69620", + "codeCommune": "69024", + "libelleAcheminement": "VAL D OINGT", + "nomCommune": "VAL D OINGT" }, { - "codePostal": "26300", - "codeCommune": "26084", - "libelleAcheminement": "CHATEAUNEUF SUR ISERE", - "nomCommune": "CHATEAUNEUF SUR ISERE" + "codePostal": "69530", + "codeCommune": "69027", + "libelleAcheminement": "BRIGNAIS", + "nomCommune": "BRIGNAIS" }, { - "codePostal": "26780", - "codeCommune": "26085", - "libelleAcheminement": "CHATEAUNEUF DU RHONE", - "nomCommune": "CHATEAUNEUF DU RHONE" + "codePostal": "69690", + "codeCommune": "69030", + "libelleAcheminement": "BRULLIOLES", + "nomCommune": "BRULLIOLES" }, { - "codePostal": "26110", - "codeCommune": "26089", - "libelleAcheminement": "CHAUDEBONNE", - "nomCommune": "CHAUDEBONNE" + "codePostal": "69770", + "codeCommune": "69038", + "libelleAcheminement": "CHAMBOST LONGESSAIGNE", + "nomCommune": "CHAMBOST LONGESSAIGNE" }, { - "codePostal": "26510", - "codeCommune": "26091", - "libelleAcheminement": "CHAUVAC LAUX MONTAUX", - "nomCommune": "CHAUVAC LAUX MONTAUX" + "codePostal": "69620", + "codeCommune": "69039", + "libelleAcheminement": "CHAMELET", + "nomCommune": "CHAMELET" }, { - "codePostal": "26450", - "codeCommune": "26095", - "libelleAcheminement": "CLEON D ANDRAN", - "nomCommune": "CLEON D ANDRAN" + "codePostal": "69430", + "codeCommune": "69054", + "libelleAcheminement": "CHENELETTE", + "nomCommune": "CHENELETTE" }, { - "codePostal": "26400", - "codeCommune": "26098", - "libelleAcheminement": "COBONNE", - "nomCommune": "COBONNE" + "codePostal": "69210", + "codeCommune": "69057", + "libelleAcheminement": "CHEVINAY", + "nomCommune": "CHEVINAY" }, { - "codePostal": "26230", - "codeCommune": "26099", - "libelleAcheminement": "COLONZELLE", - "nomCommune": "COLONZELLE" + "codePostal": "69660", + "codeCommune": "69063", + "libelleAcheminement": "COLLONGES AU MONT D OR", + "nomCommune": "COLLONGES AU MONT D OR" }, { - "codePostal": "26740", - "codeCommune": "26106", - "libelleAcheminement": "LA COUCOURDE", - "nomCommune": "LA COUCOURDE" + "codePostal": "69170", + "codeCommune": "69075", + "libelleAcheminement": "DIEME", + "nomCommune": "DIEME" }, { - "codePostal": "26470", - "codeCommune": "26123", - "libelleAcheminement": "ESTABLET", - "nomCommune": "ESTABLET" + "codePostal": "69840", + "codeCommune": "69082", + "libelleAcheminement": "EMERINGES", + "nomCommune": "EMERINGES" }, { - "codePostal": "26400", - "codeCommune": "26125", - "libelleAcheminement": "EURRE", - "nomCommune": "EURRE" + "codePostal": "69820", + "codeCommune": "69084", + "libelleAcheminement": "FLEURIE", + "nomCommune": "FLEURIE" }, { - "codePostal": "26110", - "codeCommune": "26130", - "libelleAcheminement": "EYROLES", - "nomCommune": "EYROLES" + "codePostal": "69340", + "codeCommune": "69089", + "libelleAcheminement": "FRANCHEVILLE", + "nomCommune": "FRANCHEVILLE" }, { - "codePostal": "26310", - "codeCommune": "26136", - "libelleAcheminement": "VAL MARAVEL", - "nomCommune": "VAL MARAVEL" + "codePostal": "69610", + "codeCommune": "69099", + "libelleAcheminement": "HAUTE RIVOIRE", + "nomCommune": "HAUTE RIVOIRE" }, { - "codePostal": "26400", - "codeCommune": "26144", - "libelleAcheminement": "GRANE", - "nomCommune": "GRANE" + "codePostal": "69220", + "codeCommune": "69108", + "libelleAcheminement": "LANCIE", + "nomCommune": "LANCIE" }, { - "codePostal": "26230", - "codeCommune": "26146", - "libelleAcheminement": "GRIGNAN", - "nomCommune": "GRIGNAN" + "codePostal": "69620", + "codeCommune": "69113", + "libelleAcheminement": "LETRA", + "nomCommune": "LETRA" }, { - "codePostal": "26470", - "codeCommune": "26147", - "libelleAcheminement": "GUMIANE", - "nomCommune": "GUMIANE" + "codePostal": "69400", + "codeCommune": "69115", + "libelleAcheminement": "LIMAS", + "nomCommune": "LIMAS" }, { - "codePostal": "26560", - "codeCommune": "26150", - "libelleAcheminement": "IZON LA BRUISSE", - "nomCommune": "IZON LA BRUISSE" + "codePostal": "69420", + "codeCommune": "69119", + "libelleAcheminement": "LONGES", + "nomCommune": "LONGES" }, { - "codePostal": "26310", - "codeCommune": "26152", - "libelleAcheminement": "JONCHERES", - "nomCommune": "JONCHERES" + "codePostal": "69480", + "codeCommune": "69122", + "libelleAcheminement": "LUCENAY", + "nomCommune": "LUCENAY" }, { - "codePostal": "26560", - "codeCommune": "26153", - "libelleAcheminement": "LABOREL", - "nomCommune": "LABOREL" + "codePostal": "69860", + "codeCommune": "69135", + "libelleAcheminement": "DEUX GROSNES", + "nomCommune": "DEUX GROSNES" }, { - "codePostal": "26310", - "codeCommune": "26167", - "libelleAcheminement": "LUC EN DIOIS", - "nomCommune": "LUC EN DIOIS" + "codePostal": "69700", + "codeCommune": "69136", + "libelleAcheminement": "MONTAGNY", + "nomCommune": "MONTAGNY" }, { - "codePostal": "26160", - "codeCommune": "26171", - "libelleAcheminement": "MANAS", - "nomCommune": "MANAS" + "codePostal": "69480", + "codeCommune": "69140", + "libelleAcheminement": "MORANCE", + "nomCommune": "MORANCE" }, { - "codePostal": "26110", - "codeCommune": "26190", - "libelleAcheminement": "MONTAULIEU", - "nomCommune": "MONTAULIEU" + "codePostal": "69440", + "codeCommune": "69141", + "libelleAcheminement": "MORNANT", + "nomCommune": "MORNANT" }, { - "codePostal": "26120", - "codeCommune": "26197", - "libelleAcheminement": "MONTELIER", - "nomCommune": "MONTELIER" + "codePostal": "69600", + "codeCommune": "69149", + "libelleAcheminement": "OULLINS", + "nomCommune": "OULLINS" }, { - "codePostal": "26510", - "codeCommune": "26199", - "libelleAcheminement": "MONTFERRAND LA FARE", - "nomCommune": "MONTFERRAND LA FARE" + "codePostal": "69490", + "codeCommune": "69157", + "libelleAcheminement": "VINDRY SUR TURDINE", + "nomCommune": "VINDRY SUR TURDINE" }, { - "codePostal": "26560", - "codeCommune": "26200", - "libelleAcheminement": "MONTFROC", - "nomCommune": "MONTFROC" + "codePostal": "69560", + "codeCommune": "69189", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "26220", - "codeCommune": "26202", - "libelleAcheminement": "MONTJOUX", - "nomCommune": "MONTJOUX" + "codePostal": "69430", + "codeCommune": "69196", + "libelleAcheminement": "ST DIDIER SUR BEAUJEU", + "nomCommune": "ST DIDIER SUR BEAUJEU" }, { - "codePostal": "26120", - "codeCommune": "26212", - "libelleAcheminement": "MONTVENDRE", - "nomCommune": "MONTVENDRE" + "codePostal": "69460", + "codeCommune": "69198", + "libelleAcheminement": "ST ETIENNE LA VARENNE", + "nomCommune": "ST ETIENNE LA VARENNE" }, { - "codePostal": "26510", - "codeCommune": "26227", - "libelleAcheminement": "PELONNE", - "nomCommune": "PELONNE" + "codePostal": "69610", + "codeCommune": "69203", + "libelleAcheminement": "ST GENIS L ARGENTIERE", + "nomCommune": "ST GENIS L ARGENTIERE" }, { - "codePostal": "26400", - "codeCommune": "26234", - "libelleAcheminement": "PIEGROS LA CLASTRE", - "nomCommune": "PIEGROS LA CLASTRE" + "codePostal": "69210", + "codeCommune": "69208", + "libelleAcheminement": "ST GERMAIN NUELLES", + "nomCommune": "ST GERMAIN NUELLES" }, { - "codePostal": "26700", - "codeCommune": "26235", - "libelleAcheminement": "PIERRELATTE", - "nomCommune": "PIERRELATTE" + "codePostal": "69210", + "codeCommune": "69208", + "libelleAcheminement": "ST GERMAIN NUELLES", + "nomCommune": "ST GERMAIN NUELLES" }, { - "codePostal": "26170", - "codeCommune": "26239", - "libelleAcheminement": "PLAISIANS", - "nomCommune": "PLAISIANS" + "codePostal": "69930", + "codeCommune": "69220", + "libelleAcheminement": "ST LAURENT DE CHAMOUSSET", + "nomCommune": "ST LAURENT DE CHAMOUSSET" }, { - "codePostal": "26160", - "codeCommune": "26243", - "libelleAcheminement": "LE POET LAVAL", - "nomCommune": "LE POET LAVAL" + "codePostal": "69440", + "codeCommune": "69228", + "libelleAcheminement": "CHABANIERE", + "nomCommune": "CHABANIERE" }, { - "codePostal": "26160", - "codeCommune": "26249", - "libelleAcheminement": "PONT DE BARRET", - "nomCommune": "PONT DE BARRET" + "codePostal": "69620", + "codeCommune": "69230", + "libelleAcheminement": "STE PAULE", + "nomCommune": "STE PAULE" }, { - "codePostal": "26310", - "codeCommune": "26255", - "libelleAcheminement": "LES PRES", - "nomCommune": "LES PRES" + "codePostal": "69560", + "codeCommune": "69235", + "libelleAcheminement": "ST ROMAIN EN GAL", + "nomCommune": "ST ROMAIN EN GAL" }, { - "codePostal": "26160", - "codeCommune": "26257", - "libelleAcheminement": "PUYGIRON", - "nomCommune": "PUYGIRON" + "codePostal": "69700", + "codeCommune": "69236", + "libelleAcheminement": "ST ROMAIN EN GIER", + "nomCommune": "ST ROMAIN EN GIER" }, { - "codePostal": "26330", - "codeCommune": "26259", - "libelleAcheminement": "RATIERES", - "nomCommune": "RATIERES" + "codePostal": "69220", + "codeCommune": "69242", + "libelleAcheminement": "TAPONAS", + "nomCommune": "TAPONAS" }, { - "codePostal": "26340", - "codeCommune": "26266", - "libelleAcheminement": "RIMON ET SAVEL", - "nomCommune": "RIMON ET SAVEL" + "codePostal": "69160", + "codeCommune": "69244", + "libelleAcheminement": "TASSIN LA DEMI LUNE", + "nomCommune": "TASSIN LA DEMI LUNE" }, { - "codePostal": "26170", - "codeCommune": "26267", - "libelleAcheminement": "RIOMS", - "nomCommune": "RIOMS" + "codePostal": "69620", + "codeCommune": "69245", + "libelleAcheminement": "TERNAND", + "nomCommune": "TERNAND" }, { - "codePostal": "26110", - "codeCommune": "26269", - "libelleAcheminement": "ROCHEBRUNE", - "nomCommune": "ROCHEBRUNE" + "codePostal": "69240", + "codeCommune": "69248", + "libelleAcheminement": "THIZY LES BOURGS", + "nomCommune": "THIZY LES BOURGS" }, { - "codePostal": "26160", - "codeCommune": "26272", - "libelleAcheminement": "ROCHEFORT EN VALDAINE", - "nomCommune": "ROCHEFORT EN VALDAINE" + "codePostal": "69240", + "codeCommune": "69248", + "libelleAcheminement": "THIZY LES BOURGS", + "nomCommune": "THIZY LES BOURGS" }, { - "codePostal": "26770", - "codeCommune": "26276", - "libelleAcheminement": "ROCHE ST SECRET BECONNE", - "nomCommune": "ROCHE ST SECRET BECONNE" + "codePostal": "69400", + "codeCommune": "69264", + "libelleAcheminement": "VILLEFRANCHE SUR SAONE", + "nomCommune": "VILLEFRANCHE SUR SAONE" }, { - "codePostal": "26400", - "codeCommune": "26277", - "libelleAcheminement": "LA ROCHE SUR GRANE", - "nomCommune": "LA ROCHE SUR GRANE" + "codePostal": "69730", + "codeCommune": "69278", + "libelleAcheminement": "GENAY", + "nomCommune": "GENAY" }, { - "codePostal": "26770", - "codeCommune": "26285", - "libelleAcheminement": "ROUSSET LES VIGNES", - "nomCommune": "ROUSSET LES VIGNES" + "codePostal": "69330", + "codeCommune": "69279", + "libelleAcheminement": "JONAGE", + "nomCommune": "JONAGE" }, { - "codePostal": "26510", - "codeCommune": "26288", - "libelleAcheminement": "SAHUNE", - "nomCommune": "SAHUNE" + "codePostal": "69800", + "codeCommune": "69290", + "libelleAcheminement": "ST PRIEST", + "nomCommune": "ST PRIEST" }, { - "codePostal": "26420", - "codeCommune": "26290", - "libelleAcheminement": "ST AGNAN EN VERCORS", - "nomCommune": "ST AGNAN EN VERCORS" + "codePostal": "69580", + "codeCommune": "69292", + "libelleAcheminement": "SATHONAY CAMP", + "nomCommune": "SATHONAY CAMP" }, { - "codePostal": "26420", - "codeCommune": "26290", - "libelleAcheminement": "ST AGNAN EN VERCORS", - "nomCommune": "ST AGNAN EN VERCORS" + "codePostal": "69780", + "codeCommune": "69298", + "libelleAcheminement": "TOUSSIEU", + "nomCommune": "TOUSSIEU" }, { - "codePostal": "26170", - "codeCommune": "26292", - "libelleAcheminement": "ST AUBAN SUR L OUVEZE", - "nomCommune": "ST AUBAN SUR L OUVEZE" + "codePostal": "69125", + "codeCommune": "69299", + "libelleAcheminement": "COLOMBIER SAUGNIEU", + "nomCommune": "COLOMBIER SAUGNIEU" }, { - "codePostal": "26330", - "codeCommune": "26293", - "libelleAcheminement": "ST AVIT", - "nomCommune": "ST AVIT" + "codePostal": "69002", + "codeCommune": "69382", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 02" }, { - "codePostal": "26240", - "codeCommune": "26295", - "libelleAcheminement": "ST BARTHELEMY DE VALS", - "nomCommune": "ST BARTHELEMY DE VALS" + "codePostal": "70110", + "codeCommune": "70005", + "libelleAcheminement": "AILLEVANS", + "nomCommune": "AILLEVANS" }, { - "codePostal": "26340", - "codeCommune": "26296", - "libelleAcheminement": "ST BENOIT EN DIOIS", - "nomCommune": "ST BENOIT EN DIOIS" + "codePostal": "70320", + "codeCommune": "70006", + "libelleAcheminement": "AILLEVILLERS ET LYAUMONT", + "nomCommune": "AILLEVILLERS ET LYAUMONT" }, { - "codePostal": "26170", - "codeCommune": "26303", - "libelleAcheminement": "STE EUPHEMIE SUR OUVEZE", - "nomCommune": "STE EUPHEMIE SUR OUVEZE" + "codePostal": "70500", + "codeCommune": "70009", + "libelleAcheminement": "AISEY ET RICHECOURT", + "nomCommune": "AISEY ET RICHECOURT" }, { - "codePostal": "26110", - "codeCommune": "26304", - "libelleAcheminement": "ST FERREOL TRENTE PAS", - "nomCommune": "ST FERREOL TRENTE PAS" + "codePostal": "70160", + "codeCommune": "70012", + "libelleAcheminement": "AMANCE", + "nomCommune": "AMANCE" }, { - "codePostal": "26110", - "codeCommune": "26306", - "libelleAcheminement": "STE JALLE", - "nomCommune": "STE JALLE" + "codePostal": "70210", + "codeCommune": "70017", + "libelleAcheminement": "ANCHENONCOURT ET CHAZEL", + "nomCommune": "ANCHENONCOURT ET CHAZEL" }, { - "codePostal": "26190", - "codeCommune": "26307", - "libelleAcheminement": "ST JEAN EN ROYANS", - "nomCommune": "ST JEAN EN ROYANS" + "codePostal": "70000", + "codeCommune": "70019", + "libelleAcheminement": "ANDELARRE", + "nomCommune": "ANDELARRE" }, { - "codePostal": "26320", - "codeCommune": "26313", - "libelleAcheminement": "ST MARCEL LES VALENCE", - "nomCommune": "ST MARCEL LES VALENCE" + "codePostal": "70700", + "codeCommune": "70022", + "libelleAcheminement": "ANGIREY", + "nomCommune": "ANGIREY" }, { - "codePostal": "26340", - "codeCommune": "26321", - "libelleAcheminement": "ST NAZAIRE LE DESERT", - "nomCommune": "ST NAZAIRE LE DESERT" + "codePostal": "70180", + "codeCommune": "70037", + "libelleAcheminement": "AUTET", + "nomCommune": "AUTET" }, { - "codePostal": "26770", - "codeCommune": "26322", - "libelleAcheminement": "ST PANTALEON LES VIGNES", - "nomCommune": "ST PANTALEON LES VIGNES" + "codePostal": "70150", + "codeCommune": "70045", + "libelleAcheminement": "AVRIGNEY VIREY", + "nomCommune": "AVRIGNEY VIREY" }, { - "codePostal": "26110", - "codeCommune": "26329", - "libelleAcheminement": "ST SAUVEUR GOUVERNET", - "nomCommune": "ST SAUVEUR GOUVERNET" + "codePostal": "70100", + "codeCommune": "70054", + "libelleAcheminement": "BATTRANS", + "nomCommune": "BATTRANS" }, { - "codePostal": "26400", - "codeCommune": "26336", - "libelleAcheminement": "SAOU", - "nomCommune": "SAOU" + "codePostal": "70190", + "codeCommune": "70059", + "libelleAcheminement": "BEAUMOTTE AUBERTANS", + "nomCommune": "BEAUMOTTE AUBERTANS" }, { - "codePostal": "26740", - "codeCommune": "26339", - "libelleAcheminement": "SAVASSE", - "nomCommune": "SAVASSE" + "codePostal": "70190", + "codeCommune": "70059", + "libelleAcheminement": "BEAUMOTTE AUBERTANS", + "nomCommune": "BEAUMOTTE AUBERTANS" }, { - "codePostal": "26740", - "codeCommune": "26339", - "libelleAcheminement": "SAVASSE", - "nomCommune": "SAVASSE" + "codePostal": "70500", + "codeCommune": "70066", + "libelleAcheminement": "BETAUCOURT", + "nomCommune": "BETAUCOURT" }, { - "codePostal": "26160", - "codeCommune": "26343", - "libelleAcheminement": "SOUSPIERRE", - "nomCommune": "SOUSPIERRE" + "codePostal": "70170", + "codeCommune": "70079", + "libelleAcheminement": "BOUGNON", + "nomCommune": "BOUGNON" }, { - "codePostal": "26790", - "codeCommune": "26345", - "libelleAcheminement": "SUZE LA ROUSSE", - "nomCommune": "SUZE LA ROUSSE" + "codePostal": "70190", + "codeCommune": "70085", + "libelleAcheminement": "BOULT", + "nomCommune": "BOULT" }, { - "codePostal": "26740", - "codeCommune": "26353", - "libelleAcheminement": "LES TOURRETTES", - "nomCommune": "LES TOURRETTES" + "codePostal": "70000", + "codeCommune": "70090", + "libelleAcheminement": "BOURSIERES", + "nomCommune": "BOURSIERES" }, { - "codePostal": "26460", - "codeCommune": "26356", - "libelleAcheminement": "TRUINAS", - "nomCommune": "TRUINAS" + "codePostal": "70160", + "codeCommune": "70095", + "libelleAcheminement": "BREUREY LES FAVERNEY", + "nomCommune": "BREUREY LES FAVERNEY" }, { - "codePostal": "26790", - "codeCommune": "26357", - "libelleAcheminement": "TULETTE", - "nomCommune": "TULETTE" + "codePostal": "70400", + "codeCommune": "70096", + "libelleAcheminement": "BREVILLIERS", + "nomCommune": "BREVILLIERS" }, { - "codePostal": "26150", - "codeCommune": "26359", - "libelleAcheminement": "VACHERES EN QUINT", - "nomCommune": "VACHERES EN QUINT" + "codePostal": "70800", + "codeCommune": "70097", + "libelleAcheminement": "BRIAUCOURT", + "nomCommune": "BRIAUCOURT" }, { - "codePostal": "26110", - "codeCommune": "26367", - "libelleAcheminement": "VENTEROL", - "nomCommune": "VENTEROL" + "codePostal": "70180", + "codeCommune": "70099", + "libelleAcheminement": "BROTTE LES RAY", + "nomCommune": "BROTTE LES RAY" }, { - "codePostal": "26560", - "codeCommune": "26372", - "libelleAcheminement": "VERS SUR MEOUGE", - "nomCommune": "VERS SUR MEOUGE" + "codePostal": "70140", + "codeCommune": "70101", + "libelleAcheminement": "BROYE AUBIGNEY MONTSEUGNY", + "nomCommune": "BROYE AUBIGNEY MONTSEUGNY" }, { - "codePostal": "27800", - "codeCommune": "27001", - "libelleAcheminement": "ACLOU", - "nomCommune": "ACLOU" + "codePostal": "70150", + "codeCommune": "70102", + "libelleAcheminement": "BRUSSEY", + "nomCommune": "BRUSSEY" }, { - "codePostal": "27570", - "codeCommune": "27002", - "libelleAcheminement": "ACON", - "nomCommune": "ACON" + "codePostal": "70400", + "codeCommune": "70117", + "libelleAcheminement": "CHALONVILLARS", + "nomCommune": "CHALONVILLARS" }, { - "codePostal": "27370", - "codeCommune": "27011", - "libelleAcheminement": "AMFREVILLE ST AMAND", - "nomCommune": "AMFREVILLE ST AMAND" + "codePostal": "70150", + "codeCommune": "70119", + "libelleAcheminement": "CHAMBORNAY LES PIN", + "nomCommune": "CHAMBORNAY LES PIN" }, { - "codePostal": "27370", - "codeCommune": "27011", - "libelleAcheminement": "AMFREVILLE ST AMAND", - "nomCommune": "AMFREVILLE ST AMAND" + "codePostal": "70290", + "codeCommune": "70120", + "libelleAcheminement": "CHAMPAGNEY", + "nomCommune": "CHAMPAGNEY" }, { - "codePostal": "27430", - "codeCommune": "27015", - "libelleAcheminement": "ANDE", - "nomCommune": "ANDE" + "codePostal": "70400", + "codeCommune": "70121", + "libelleAcheminement": "CHAMPEY", + "nomCommune": "CHAMPEY" }, { - "codePostal": "27930", - "codeCommune": "27017", - "libelleAcheminement": "ANGERVILLE LA CAMPAGNE", - "nomCommune": "ANGERVILLE LA CAMPAGNE" + "codePostal": "70600", + "codeCommune": "70122", + "libelleAcheminement": "CHAMPLITTE", + "nomCommune": "CHAMPLITTE" }, { - "codePostal": "27490", - "codeCommune": "27025", - "libelleAcheminement": "AUTHEUIL AUTHOUILLET", - "nomCommune": "AUTHEUIL AUTHOUILLET" + "codePostal": "70700", + "codeCommune": "70129", + "libelleAcheminement": "LA CHAPELLE ST QUILLAIN", + "nomCommune": "LA CHAPELLE ST QUILLAIN" }, { - "codePostal": "27240", - "codeCommune": "27032", - "libelleAcheminement": "CHAMBOIS", - "nomCommune": "CHAMBOIS" + "codePostal": "70140", + "codeCommune": "70151", + "libelleAcheminement": "CHEVIGNEY", + "nomCommune": "CHEVIGNEY" }, { - "codePostal": "27440", - "codeCommune": "27034", - "libelleAcheminement": "BACQUEVILLE", - "nomCommune": "BACQUEVILLE" + "codePostal": "70120", + "codeCommune": "70153", + "libelleAcheminement": "CINTREY", + "nomCommune": "CINTREY" }, { - "codePostal": "27260", - "codeCommune": "27035", - "libelleAcheminement": "BAILLEUL LA VALLEE", - "nomCommune": "BAILLEUL LA VALLEE" + "codePostal": "70190", + "codeCommune": "70174", + "libelleAcheminement": "CORDONNET", + "nomCommune": "CORDONNET" }, { - "codePostal": "27130", - "codeCommune": "27036", - "libelleAcheminement": "BALINES", - "nomCommune": "BALINES" + "codePostal": "70500", + "codeCommune": "70177", + "libelleAcheminement": "CORRE", + "nomCommune": "CORRE" }, { - "codePostal": "27170", - "codeCommune": "27037", - "libelleAcheminement": "BARC", - "nomCommune": "BARC" + "codePostal": "70110", + "codeCommune": "70180", + "libelleAcheminement": "COURCHATON", + "nomCommune": "COURCHATON" }, { - "codePostal": "27180", - "codeCommune": "27044", - "libelleAcheminement": "LES BAUX STE CROIX", - "nomCommune": "LES BAUX STE CROIX" + "codePostal": "70600", + "codeCommune": "70183", + "libelleAcheminement": "COURTESOULT ET GATEY", + "nomCommune": "COURTESOULT ET GATEY" }, { - "codePostal": "27480", - "codeCommune": "27048", - "libelleAcheminement": "BEAUFICEL EN LYONS", - "nomCommune": "BEAUFICEL EN LYONS" + "codePostal": "70240", + "codeCommune": "70188", + "libelleAcheminement": "CREVENEY", + "nomCommune": "CREVENEY" }, { - "codePostal": "27270", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "70160", + "codeCommune": "70190", + "libelleAcheminement": "CUBRY LES FAVERNEY", + "nomCommune": "CUBRY LES FAVERNEY" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "70800", + "codeCommune": "70194", + "libelleAcheminement": "CUVE", + "nomCommune": "CUVE" }, { - "codePostal": "27170", - "codeCommune": "27051", - "libelleAcheminement": "BEAUMONT LE ROGER", - "nomCommune": "BEAUMONT LE ROGER" + "codePostal": "70200", + "codeCommune": "70195", + "libelleAcheminement": "DAMBENOIT LES COLOMBE", + "nomCommune": "DAMBENOIT LES COLOMBE" }, { - "codePostal": "27180", - "codeCommune": "27057", - "libelleAcheminement": "BERNIENVILLE", - "nomCommune": "BERNIENVILLE" + "codePostal": "70230", + "codeCommune": "70197", + "libelleAcheminement": "DAMPIERRE SUR LINOTTE", + "nomCommune": "DAMPIERRE SUR LINOTTE" }, { - "codePostal": "27700", - "codeCommune": "27058", - "libelleAcheminement": "LES TROIS LACS", - "nomCommune": "LES TROIS LACS" + "codePostal": "70000", + "codeCommune": "70203", + "libelleAcheminement": "LA DEMIE", + "nomCommune": "LA DEMIE" }, { - "codePostal": "27370", - "codeCommune": "27062", - "libelleAcheminement": "LES MONTS DU ROUMOIS", - "nomCommune": "LES MONTS DU ROUMOIS" + "codePostal": "70100", + "codeCommune": "70220", + "libelleAcheminement": "ESSERTENNE ET CECEY", + "nomCommune": "ESSERTENNE ET CECEY" }, { - "codePostal": "27220", - "codeCommune": "27073", - "libelleAcheminement": "BOIS LE ROI", - "nomCommune": "BOIS LE ROI" + "codePostal": "70110", + "codeCommune": "70226", + "libelleAcheminement": "FALLON", + "nomCommune": "FALLON" }, { - "codePostal": "27800", - "codeCommune": "27074", - "libelleAcheminement": "BOISNEY", - "nomCommune": "BOISNEY" + "codePostal": "70160", + "codeCommune": "70228", + "libelleAcheminement": "FAVERNEY", + "nomCommune": "FAVERNEY" }, { - "codePostal": "27150", - "codeCommune": "27098", - "libelleAcheminement": "BOUCHEVILLIERS", - "nomCommune": "BOUCHEVILLIERS" + "codePostal": "70310", + "codeCommune": "70233", + "libelleAcheminement": "LES FESSEY", + "nomCommune": "LES FESSEY" }, { - "codePostal": "27520", - "codeCommune": "27105", - "libelleAcheminement": "GRAND BOURGTHEROULDE", - "nomCommune": "GRAND BOURGTHEROULDE" + "codePostal": "70210", + "codeCommune": "70242", + "libelleAcheminement": "FONTENOIS LA VILLE", + "nomCommune": "FONTENOIS LA VILLE" }, { - "codePostal": "27520", - "codeCommune": "27105", - "libelleAcheminement": "GRAND BOURGTHEROULDE", - "nomCommune": "GRAND BOURGTHEROULDE" + "codePostal": "70220", + "codeCommune": "70245", + "libelleAcheminement": "FOUGEROLLES ST VALBERT", + "nomCommune": "FOUGEROLLES ST VALBERT" }, { - "codePostal": "27160", - "codeCommune": "27112", - "libelleAcheminement": "BRETEUIL", - "nomCommune": "BRETEUIL" + "codePostal": "70600", + "codeCommune": "70247", + "libelleAcheminement": "FOUVENT ST ANDOCHE", + "nomCommune": "FOUVENT ST ANDOCHE" }, { - "codePostal": "27400", - "codeCommune": "27127", - "libelleAcheminement": "CANAPPEVILLE", - "nomCommune": "CANAPPEVILLE" + "codePostal": "70240", + "codeCommune": "70262", + "libelleAcheminement": "GENEVREUILLE", + "nomCommune": "GENEVREUILLE" }, { - "codePostal": "27300", - "codeCommune": "27129", - "libelleAcheminement": "CAORCHES ST NICOLAS", - "nomCommune": "CAORCHES ST NICOLAS" + "codePostal": "70100", + "codeCommune": "70265", + "libelleAcheminement": "GERMIGNEY", + "nomCommune": "GERMIGNEY" }, { - "codePostal": "27270", - "codeCommune": "27130", - "libelleAcheminement": "CAPELLE LES GRANDS", - "nomCommune": "CAPELLE LES GRANDS" + "codePostal": "70210", + "codeCommune": "70269", + "libelleAcheminement": "GIREFONTAINE", + "nomCommune": "GIREFONTAINE" }, { - "codePostal": "27120", - "codeCommune": "27140", - "libelleAcheminement": "CHAMBRAY", - "nomCommune": "CHAMBRAY" + "codePostal": "70100", + "codeCommune": "70279", + "libelleAcheminement": "GRAY", + "nomCommune": "GRAY" }, { - "codePostal": "27270", - "codeCommune": "27148", - "libelleAcheminement": "LA CHAPELLE GAUTHIER", - "nomCommune": "LA CHAPELLE GAUTHIER" + "codePostal": "70500", + "codeCommune": "70292", + "libelleAcheminement": "JUSSEY", + "nomCommune": "JUSSEY" }, { - "codePostal": "27240", - "codeCommune": "27157", - "libelleAcheminement": "MARBOIS", - "nomCommune": "MARBOIS" + "codePostal": "70240", + "codeCommune": "70303", + "libelleAcheminement": "LIEVANS", + "nomCommune": "LIEVANS" }, { - "codePostal": "27180", - "codeCommune": "27161", - "libelleAcheminement": "CLAVILLE", - "nomCommune": "CLAVILLE" + "codePostal": "70200", + "codeCommune": "70306", + "libelleAcheminement": "LOMONT", + "nomCommune": "LOMONT" }, { - "codePostal": "27170", - "codeCommune": "27164", - "libelleAcheminement": "COMBON", - "nomCommune": "COMBON" + "codePostal": "70310", + "codeCommune": "70308", + "libelleAcheminement": "LA LONGINE", + "nomCommune": "LA LONGINE" }, { - "codePostal": "27190", - "codeCommune": "27165", - "libelleAcheminement": "CONCHES EN OUCHE", - "nomCommune": "CONCHES EN OUCHE" + "codePostal": "70230", + "codeCommune": "70309", + "libelleAcheminement": "LOULANS VERCHAMP", + "nomCommune": "LOULANS VERCHAMP" }, { - "codePostal": "27210", - "codeCommune": "27169", - "libelleAcheminement": "CONTEVILLE", - "nomCommune": "CONTEVILLE" + "codePostal": "70230", + "codeCommune": "70309", + "libelleAcheminement": "LOULANS VERCHAMP", + "nomCommune": "LOULANS VERCHAMP" }, { - "codePostal": "27940", - "codeCommune": "27180", - "libelleAcheminement": "COURCELLES SUR SEINE", - "nomCommune": "COURCELLES SUR SEINE" + "codePostal": "70800", + "codeCommune": "70315", + "libelleAcheminement": "MAGNONCOURT", + "nomCommune": "MAGNONCOURT" }, { - "codePostal": "27130", - "codeCommune": "27182", - "libelleAcheminement": "COURTEILLES", - "nomCommune": "COURTEILLES" + "codePostal": "70110", + "codeCommune": "70317", + "libelleAcheminement": "LES MAGNY", + "nomCommune": "LES MAGNY" }, { - "codePostal": "27110", - "codeCommune": "27185", - "libelleAcheminement": "CRESTOT", - "nomCommune": "CRESTOT" + "codePostal": "70400", + "codeCommune": "70330", + "libelleAcheminement": "MANDREVILLARS", + "nomCommune": "MANDREVILLARS" }, { - "codePostal": "27110", - "codeCommune": "27187", - "libelleAcheminement": "CRIQUEBEUF LA CAMPAGNE", - "nomCommune": "CRIQUEBEUF LA CAMPAGNE" + "codePostal": "70310", + "codeCommune": "70352", + "libelleAcheminement": "LA MONTAGNE", + "nomCommune": "LA MONTAGNE" }, { - "codePostal": "27110", - "codeCommune": "27192", - "libelleAcheminement": "CROSVILLE LA VIEILLE", - "nomCommune": "CROSVILLE LA VIEILLE" + "codePostal": "70700", + "codeCommune": "70356", + "libelleAcheminement": "MONTBOILLON", + "nomCommune": "MONTBOILLON" }, { - "codePostal": "27340", - "codeCommune": "27196", - "libelleAcheminement": "LES DAMPS", - "nomCommune": "LES DAMPS" + "codePostal": "70230", + "codeCommune": "70357", + "libelleAcheminement": "MONTBOZON", + "nomCommune": "MONTBOZON" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "70120", + "codeCommune": "70373", + "libelleAcheminement": "LA ROCHE MOREY", + "nomCommune": "LA ROCHE MOREY" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "70360", + "codeCommune": "70386", + "libelleAcheminement": "LA NEUVELLE LES SCEY", + "nomCommune": "LA NEUVELLE LES SCEY" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "70000", + "codeCommune": "70388", + "libelleAcheminement": "NOIDANS LES VESOUL", + "nomCommune": "NOIDANS LES VESOUL" }, { - "codePostal": "27930", - "codeCommune": "27200", - "libelleAcheminement": "DARDEZ", - "nomCommune": "DARDEZ" + "codePostal": "70000", + "codeCommune": "70390", + "libelleAcheminement": "NOROY LE BOURG", + "nomCommune": "NOROY LE BOURG" }, { - "codePostal": "27110", - "codeCommune": "27201", - "libelleAcheminement": "DAUBEUF LA CAMPAGNE", - "nomCommune": "DAUBEUF LA CAMPAGNE" + "codePostal": "70120", + "codeCommune": "70392", + "libelleAcheminement": "OIGNEY", + "nomCommune": "OIGNEY" }, { - "codePostal": "27430", - "codeCommune": "27202", - "libelleAcheminement": "DAUBEUF PRES VATTEVILLE", - "nomCommune": "DAUBEUF PRES VATTEVILLE" + "codePostal": "70230", + "codeCommune": "70397", + "libelleAcheminement": "ORMENANS", + "nomCommune": "ORMENANS" }, { - "codePostal": "27290", - "codeCommune": "27209", - "libelleAcheminement": "ECAQUELON", - "nomCommune": "ECAQUELON" + "codePostal": "70360", + "codeCommune": "70401", + "libelleAcheminement": "OVANCHES", + "nomCommune": "OVANCHES" }, { - "codePostal": "27170", - "codeCommune": "27210", - "libelleAcheminement": "ECARDENVILLE LA CAMPAGNE", - "nomCommune": "ECARDENVILLE LA CAMPAGNE" + "codePostal": "70800", + "codeCommune": "70412", + "libelleAcheminement": "PLAINEMONT", + "nomCommune": "PLAINEMONT" }, { - "codePostal": "27510", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "70310", + "codeCommune": "70425", + "libelleAcheminement": "LA PROISELIERE ET LANGLE", + "nomCommune": "LA PROISELIERE ET LANGLE" }, { - "codePostal": "27510", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "70000", + "codeCommune": "70428", + "libelleAcheminement": "PUSEY", + "nomCommune": "PUSEY" }, { - "codePostal": "27630", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "70140", + "codeCommune": "70443", + "libelleAcheminement": "LA GRANDE RESIE", + "nomCommune": "LA GRANDE RESIE" }, { - "codePostal": "27630", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "70000", + "codeCommune": "70452", + "libelleAcheminement": "ROSEY", + "nomCommune": "ROSEY" }, { - "codePostal": "27630", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "70190", + "codeCommune": "70456", + "libelleAcheminement": "RUHANS", + "nomCommune": "RUHANS" }, { - "codePostal": "27630", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "70100", + "codeCommune": "70466", + "libelleAcheminement": "ST LOUP NANTOUARD", + "nomCommune": "ST LOUP NANTOUARD" }, { - "codePostal": "27930", - "codeCommune": "27216", - "libelleAcheminement": "EMALLEVILLE", - "nomCommune": "EMALLEVILLE" + "codePostal": "70800", + "codeCommune": "70467", + "libelleAcheminement": "ST LOUP SUR SEMOUSE", + "nomCommune": "ST LOUP SUR SEMOUSE" }, { - "codePostal": "27190", - "codeCommune": "27217", - "libelleAcheminement": "EMANVILLE", - "nomCommune": "EMANVILLE" + "codePostal": "70300", + "codeCommune": "70473", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "27350", - "codeCommune": "27228", - "libelleAcheminement": "ETURQUERAYE", - "nomCommune": "ETURQUERAYE" + "codePostal": "70240", + "codeCommune": "70478", + "libelleAcheminement": "SAULX", + "nomCommune": "SAULX" }, { - "codePostal": "27530", - "codeCommune": "27230", - "libelleAcheminement": "EZY SUR EURE", - "nomCommune": "EZY SUR EURE" + "codePostal": "70120", + "codeCommune": "70486", + "libelleAcheminement": "SEMMADON", + "nomCommune": "SEMMADON" }, { - "codePostal": "27190", - "codeCommune": "27235", - "libelleAcheminement": "FAVEROLLES LA CAMPAGNE", - "nomCommune": "FAVEROLLES LA CAMPAGNE" + "codePostal": "70110", + "codeCommune": "70487", + "libelleAcheminement": "SENARGENT MIGNAFANS", + "nomCommune": "SENARGENT MIGNAFANS" }, { - "codePostal": "27230", - "codeCommune": "27237", - "libelleAcheminement": "LE FAVRIL", - "nomCommune": "LE FAVRIL" + "codePostal": "70440", + "codeCommune": "70489", + "libelleAcheminement": "SERVANCE MIELLIN", + "nomCommune": "SERVANCE MIELLIN" }, { - "codePostal": "27190", - "codeCommune": "27242", - "libelleAcheminement": "LE FIDELAIRE", - "nomCommune": "LE FIDELAIRE" + "codePostal": "70150", + "codeCommune": "70494", + "libelleAcheminement": "SORNAY", + "nomCommune": "SORNAY" }, { - "codePostal": "27230", - "codeCommune": "27248", - "libelleAcheminement": "FOLLEVILLE", - "nomCommune": "FOLLEVILLE" + "codePostal": "70120", + "codeCommune": "70499", + "libelleAcheminement": "THEULEY", + "nomCommune": "THEULEY" }, { - "codePostal": "27220", - "codeCommune": "27256", - "libelleAcheminement": "LA FORET DU PARC", - "nomCommune": "LA FORET DU PARC" + "codePostal": "70360", + "codeCommune": "70504", + "libelleAcheminement": "TRAVES", + "nomCommune": "TRAVES" }, { - "codePostal": "27370", - "codeCommune": "27261", - "libelleAcheminement": "FOUQUEVILLE", - "nomCommune": "FOUQUEVILLE" + "codePostal": "70000", + "codeCommune": "70517", + "libelleAcheminement": "VALLEROIS LORIOZ", + "nomCommune": "VALLEROIS LORIOZ" }, { - "codePostal": "27680", - "codeCommune": "27263", - "libelleAcheminement": "LE PERREY", - "nomCommune": "LE PERREY" + "codePostal": "70130", + "codeCommune": "70520", + "libelleAcheminement": "VANNE", + "nomCommune": "VANNE" }, { - "codePostal": "27800", - "codeCommune": "27266", - "libelleAcheminement": "FRANQUEVILLE", - "nomCommune": "FRANQUEVILLE" + "codePostal": "70170", + "codeCommune": "70524", + "libelleAcheminement": "VAUCHOUX", + "nomCommune": "VAUCHOUX" }, { - "codePostal": "27620", - "codeCommune": "27279", - "libelleAcheminement": "GASNY", - "nomCommune": "GASNY" + "codePostal": "70110", + "codeCommune": "70530", + "libelleAcheminement": "VELLECHEVREUX ET COURBENANS", + "nomCommune": "VELLECHEVREUX ET COURBENANS" }, { - "codePostal": "27390", - "codeCommune": "27289", - "libelleAcheminement": "LA GOULAFRIERE", - "nomCommune": "LA GOULAFRIERE" + "codePostal": "70700", + "codeCommune": "70533", + "libelleAcheminement": "VELLEFREY ET VELLEFRANGE", + "nomCommune": "VELLEFREY ET VELLEFRANGE" }, { - "codePostal": "27930", - "codeCommune": "27299", - "libelleAcheminement": "GRAVIGNY", - "nomCommune": "GRAVIGNY" + "codePostal": "70130", + "codeCommune": "70539", + "libelleAcheminement": "VELLEXON QUEUTREY ET VAUDEY", + "nomCommune": "VELLEXON QUEUTREY ET VAUDEY" }, { - "codePostal": "27120", - "codeCommune": "27312", - "libelleAcheminement": "HARDENCOURT COCHEREL", - "nomCommune": "HARDENCOURT COCHEREL" + "codePostal": "70100", + "codeCommune": "70542", + "libelleAcheminement": "VENERE", + "nomCommune": "VENERE" }, { - "codePostal": "27700", - "codeCommune": "27315", - "libelleAcheminement": "HARQUENCY", - "nomCommune": "HARQUENCY" + "codePostal": "70500", + "codeCommune": "70548", + "libelleAcheminement": "VERNOIS SUR MANCE", + "nomCommune": "VERNOIS SUR MANCE" }, { - "codePostal": "27350", - "codeCommune": "27319", - "libelleAcheminement": "LA HAYE DE ROUTOT", - "nomCommune": "LA HAYE DE ROUTOT" + "codePostal": "70110", + "codeCommune": "70552", + "libelleAcheminement": "VILLAFANS", + "nomCommune": "VILLAFANS" }, { - "codePostal": "27330", - "codeCommune": "27323", - "libelleAcheminement": "LA HAYE ST SYLVESTRE", - "nomCommune": "LA HAYE ST SYLVESTRE" + "codePostal": "70500", + "codeCommune": "70554", + "libelleAcheminement": "VILLARS LE PAUTEL", + "nomCommune": "VILLARS LE PAUTEL" }, { - "codePostal": "27630", - "codeCommune": "27331", - "libelleAcheminement": "HEUBECOURT HARICOURT", - "nomCommune": "HEUBECOURT HARICOURT" + "codePostal": "70240", + "codeCommune": "70558", + "libelleAcheminement": "LA VILLENEUVE BELLENOYE LA MAIZE", + "nomCommune": "LA VILLENEUVE BELLENOYE LA MAIZE" }, { - "codePostal": "27230", - "codeCommune": "27334", - "libelleAcheminement": "HEUDREVILLE EN LIEUVIN", - "nomCommune": "HEUDREVILLE EN LIEUVIN" + "codePostal": "70300", + "codeCommune": "70564", + "libelleAcheminement": "VILLERS LES LUXEUIL", + "nomCommune": "VILLERS LES LUXEUIL" }, { - "codePostal": "27400", - "codeCommune": "27339", - "libelleAcheminement": "HONDOUVILLE", - "nomCommune": "HONDOUVILLE" + "codePostal": "70400", + "codeCommune": "70567", + "libelleAcheminement": "VILLERS SUR SAULNOT", + "nomCommune": "VILLERS SUR SAULNOT" }, { - "codePostal": "27440", - "codeCommune": "27346", - "libelleAcheminement": "HOUVILLE EN VEXIN", - "nomCommune": "HOUVILLE EN VEXIN" + "codePostal": "70300", + "codeCommune": "70571", + "libelleAcheminement": "VISONCOURT", + "nomCommune": "VISONCOURT" }, { - "codePostal": "27110", - "codeCommune": "27354", - "libelleAcheminement": "IVILLE", - "nomCommune": "IVILLE" + "codePostal": "70180", + "codeCommune": "70574", + "libelleAcheminement": "VOLON", + "nomCommune": "VOLON" }, { - "codePostal": "27210", - "codeCommune": "27361", - "libelleAcheminement": "LA LANDE ST LEGER", - "nomCommune": "LA LANDE ST LEGER" + "codePostal": "70120", + "codeCommune": "70582", + "libelleAcheminement": "VY LES RUPT", + "nomCommune": "VY LES RUPT" }, { - "codePostal": "27470", - "codeCommune": "27364", - "libelleAcheminement": "LAUNAY", - "nomCommune": "LAUNAY" + "codePostal": "71800", + "codeCommune": "71006", + "libelleAcheminement": "AMANZE", + "nomCommune": "AMANZE" }, { - "codePostal": "27690", - "codeCommune": "27365", - "libelleAcheminement": "LERY", - "nomCommune": "LERY" + "codePostal": "71170", + "codeCommune": "71008", + "libelleAcheminement": "ANGLURE SOUS DUN", + "nomCommune": "ANGLURE SOUS DUN" }, { - "codePostal": "27480", - "codeCommune": "27373", - "libelleAcheminement": "LORLEAU", - "nomCommune": "LORLEAU" + "codePostal": "71110", + "codeCommune": "71012", + "libelleAcheminement": "ARTAIX", + "nomCommune": "ARTAIX" }, { - "codePostal": "27650", - "codeCommune": "27376", - "libelleAcheminement": "LOUYE", - "nomCommune": "LOUYE" + "codePostal": "71640", + "codeCommune": "71019", + "libelleAcheminement": "BARIZEY", + "nomCommune": "BARIZEY" }, { - "codePostal": "27640", - "codeCommune": "27400", - "libelleAcheminement": "MEREY", - "nomCommune": "MEREY" + "codePostal": "71370", + "codeCommune": "71023", + "libelleAcheminement": "BAUDRIERES", + "nomCommune": "BAUDRIERES" }, { - "codePostal": "27390", - "codeCommune": "27404", - "libelleAcheminement": "MESNIL ROUSSET", - "nomCommune": "MESNIL ROUSSET" + "codePostal": "71270", + "codeCommune": "71028", + "libelleAcheminement": "BEAUVERNOIS", + "nomCommune": "BEAUVERNOIS" }, { - "codePostal": "27150", - "codeCommune": "27405", - "libelleAcheminement": "MESNIL SOUS VIENNE", - "nomCommune": "MESNIL SOUS VIENNE" + "codePostal": "71250", + "codeCommune": "71030", + "libelleAcheminement": "BERGESSERIN", + "nomCommune": "BERGESSERIN" }, { - "codePostal": "27260", - "codeCommune": "27415", - "libelleAcheminement": "MORAINVILLE JOUVEAUX", - "nomCommune": "MORAINVILLE JOUVEAUX" + "codePostal": "71460", + "codeCommune": "71036", + "libelleAcheminement": "BISSY SOUS UXELLES", + "nomCommune": "BISSY SOUS UXELLES" }, { - "codePostal": "27220", - "codeCommune": "27419", - "libelleAcheminement": "MOUETTES", - "nomCommune": "MOUETTES" + "codePostal": "71710", + "codeCommune": "71038", + "libelleAcheminement": "LES BIZOTS", + "nomCommune": "LES BIZOTS" }, { - "codePostal": "27220", - "codeCommune": "27421", - "libelleAcheminement": "MOUSSEAUX NEUVILLE", - "nomCommune": "MOUSSEAUX NEUVILLE" + "codePostal": "71140", + "codeCommune": "71047", + "libelleAcheminement": "BOURBON LANCY", + "nomCommune": "BOURBON LANCY" }, { - "codePostal": "27650", - "codeCommune": "27423", - "libelleAcheminement": "MUZY", - "nomCommune": "MUZY" + "codePostal": "71700", + "codeCommune": "71052", + "libelleAcheminement": "BOYER", + "nomCommune": "BOYER" }, { - "codePostal": "27730", - "codeCommune": "27429", - "libelleAcheminement": "NEUILLY", - "nomCommune": "NEUILLY" + "codePostal": "71250", + "codeCommune": "71057", + "libelleAcheminement": "BRAY", + "nomCommune": "BRAY" }, { - "codePostal": "27560", - "codeCommune": "27435", - "libelleAcheminement": "LA NOE POULAIN", - "nomCommune": "LA NOE POULAIN" + "codePostal": "71290", + "codeCommune": "71061", + "libelleAcheminement": "BRIENNE", + "nomCommune": "BRIENNE" }, { - "codePostal": "27190", - "codeCommune": "27447", - "libelleAcheminement": "LE VAL DORE", - "nomCommune": "LE VAL DORE" + "codePostal": "71190", + "codeCommune": "71063", + "libelleAcheminement": "BROYE", + "nomCommune": "BROYE" }, { - "codePostal": "27910", - "codeCommune": "27453", - "libelleAcheminement": "PERRIERS SUR ANDELLE", - "nomCommune": "PERRIERS SUR ANDELLE" + "codePostal": "71250", + "codeCommune": "71065", + "libelleAcheminement": "BUFFIERES", + "nomCommune": "BUFFIERES" }, { - "codePostal": "27230", - "codeCommune": "27462", - "libelleAcheminement": "LE PLANQUAY", - "nomCommune": "LE PLANQUAY" + "codePostal": "71390", + "codeCommune": "71070", + "libelleAcheminement": "BUXY", + "nomCommune": "BUXY" }, { - "codePostal": "27510", - "codeCommune": "27477", - "libelleAcheminement": "PRESSAGNY L ORGUEILLEUX", - "nomCommune": "PRESSAGNY L ORGUEILLEUX" + "codePostal": "71150", + "codeCommune": "71073", + "libelleAcheminement": "CHAGNY", + "nomCommune": "CHAGNY" }, { - "codePostal": "27910", - "codeCommune": "27488", - "libelleAcheminement": "RENNEVILLE", - "nomCommune": "RENNEVILLE" + "codePostal": "71120", + "codeCommune": "71086", + "libelleAcheminement": "CHANGY", + "nomCommune": "CHANGY" }, { - "codePostal": "27170", - "codeCommune": "27492", - "libelleAcheminement": "ROMILLY LA PUTHENAYE", - "nomCommune": "ROMILLY LA PUTHENAYE" + "codePostal": "71240", + "codeCommune": "71089", + "libelleAcheminement": "LA CHAPELLE DE BRAGNY", + "nomCommune": "LA CHAPELLE DE BRAGNY" }, { - "codePostal": "27120", - "codeCommune": "27501", - "libelleAcheminement": "ROUVRAY", - "nomCommune": "ROUVRAY" + "codePostal": "71570", + "codeCommune": "71090", + "libelleAcheminement": "LA CHAPELLE DE GUINCHAY", + "nomCommune": "LA CHAPELLE DE GUINCHAY" }, { - "codePostal": "27390", - "codeCommune": "27505", - "libelleAcheminement": "ST AGNAN DE CERNIERES", - "nomCommune": "ST AGNAN DE CERNIERES" + "codePostal": "71310", + "codeCommune": "71093", + "libelleAcheminement": "LA CHAPELLE ST SAUVEUR", + "nomCommune": "LA CHAPELLE ST SAUVEUR" }, { - "codePostal": "27600", - "codeCommune": "27517", - "libelleAcheminement": "ST AUBIN SUR GAILLON", - "nomCommune": "ST AUBIN SUR GAILLON" + "codePostal": "71190", + "codeCommune": "71096", + "libelleAcheminement": "LA CHAPELLE SOUS UCHON", + "nomCommune": "LA CHAPELLE SOUS UCHON" }, { - "codePostal": "27450", - "codeCommune": "27520", - "libelleAcheminement": "ST BENOIT DES OMBRES", - "nomCommune": "ST BENOIT DES OMBRES" + "codePostal": "71700", + "codeCommune": "71100", + "libelleAcheminement": "CHARDONNAY", + "nomCommune": "CHARDONNAY" }, { - "codePostal": "27820", - "codeCommune": "27521", - "libelleAcheminement": "ST CHRISTOPHE SUR AVRE", - "nomCommune": "ST CHRISTOPHE SUR AVRE" + "codePostal": "71130", + "codeCommune": "71111", + "libelleAcheminement": "CHASSY", + "nomCommune": "CHASSY" }, { - "codePostal": "27100", - "codeCommune": "27528", - "libelleAcheminement": "LE VAUDREUIL", - "nomCommune": "LE VAUDREUIL" + "codePostal": "71250", + "codeCommune": "71112", + "libelleAcheminement": "CHATEAU", + "nomCommune": "CHATEAU" }, { - "codePostal": "27520", - "codeCommune": "27531", - "libelleAcheminement": "ST DENIS DES MONTS", - "nomCommune": "ST DENIS DES MONTS" + "codePostal": "71740", + "codeCommune": "71113", + "libelleAcheminement": "CHATEAUNEUF", + "nomCommune": "CHATEAUNEUF" }, { - "codePostal": "27930", - "codeCommune": "27546", - "libelleAcheminement": "ST GERMAIN DES ANGLES", - "nomCommune": "ST GERMAIN DES ANGLES" + "codePostal": "71510", + "codeCommune": "71115", + "libelleAcheminement": "CHATEL MORON", + "nomCommune": "CHATEL MORON" }, { - "codePostal": "27320", - "codeCommune": "27548", - "libelleAcheminement": "ST GERMAIN SUR AVRE", - "nomCommune": "ST GERMAIN SUR AVRE" + "codePostal": "71170", + "codeCommune": "71120", + "libelleAcheminement": "CHAUFFAILLES", + "nomCommune": "CHAUFFAILLES" }, { - "codePostal": "27600", - "codeCommune": "27553", - "libelleAcheminement": "ST JULIEN DE LA LIEGUE", - "nomCommune": "ST JULIEN DE LA LIEGUE" + "codePostal": "71340", + "codeCommune": "71123", + "libelleAcheminement": "CHENAY LE CHATEL", + "nomCommune": "CHENAY LE CHATEL" }, { - "codePostal": "27950", - "codeCommune": "27554", - "libelleAcheminement": "LA CHAPELLE LONGUEVILLE", - "nomCommune": "LA CHAPELLE LONGUEVILLE" + "codePostal": "71390", + "codeCommune": "71124", + "libelleAcheminement": "CHENOVES", + "nomCommune": "CHENOVES" }, { - "codePostal": "27520", - "codeCommune": "27558", - "libelleAcheminement": "ST LEGER DU GENNETEY", - "nomCommune": "ST LEGER DU GENNETEY" + "codePostal": "71800", + "codeCommune": "71133", + "libelleAcheminement": "LA CLAYETTE", + "nomCommune": "LA CLAYETTE" }, { - "codePostal": "27950", - "codeCommune": "27562", - "libelleAcheminement": "ST MARCEL", - "nomCommune": "ST MARCEL" + "codePostal": "71520", + "codeCommune": "71134", + "libelleAcheminement": "NAVOUR SUR GROSNE", + "nomCommune": "NAVOUR SUR GROSNE" }, { - "codePostal": "27230", - "codeCommune": "27564", - "libelleAcheminement": "ST MARDS DE FRESNE", - "nomCommune": "ST MARDS DE FRESNE" + "codePostal": "71520", + "codeCommune": "71134", + "libelleAcheminement": "NAVOUR SUR GROSNE", + "nomCommune": "NAVOUR SUR GROSNE" }, { - "codePostal": "27160", - "codeCommune": "27565", - "libelleAcheminement": "LE LESME", - "nomCommune": "LE LESME" + "codePostal": "71360", + "codeCommune": "71140", + "libelleAcheminement": "COLLONGE LA MADELEINE", + "nomCommune": "COLLONGE LA MADELEINE" }, { - "codePostal": "27300", - "codeCommune": "27569", - "libelleAcheminement": "ST MARTIN DU TILLEUL", - "nomCommune": "ST MARTIN DU TILLEUL" + "codePostal": "71800", + "codeCommune": "71141", + "libelleAcheminement": "COLOMBIER EN BRIONNAIS", + "nomCommune": "COLOMBIER EN BRIONNAIS" }, { - "codePostal": "27930", - "codeCommune": "27570", - "libelleAcheminement": "ST MARTIN LA CAMPAGNE", - "nomCommune": "ST MARTIN LA CAMPAGNE" + "codePostal": "71490", + "codeCommune": "71149", + "libelleAcheminement": "COUCHES", + "nomCommune": "COUCHES" }, { - "codePostal": "27450", - "codeCommune": "27571", - "libelleAcheminement": "ST MARTIN ST FIRMIN", - "nomCommune": "ST MARTIN ST FIRMIN" + "codePostal": "71530", + "codeCommune": "71154", + "libelleAcheminement": "CRISSEY", + "nomCommune": "CRISSEY" }, { - "codePostal": "27110", - "codeCommune": "27576", - "libelleAcheminement": "STE OPPORTUNE DU BOSC", - "nomCommune": "STE OPPORTUNE DU BOSC" + "codePostal": "71140", + "codeCommune": "71155", + "libelleAcheminement": "CRONAT", + "nomCommune": "CRONAT" }, { - "codePostal": "27800", - "codeCommune": "27584", - "libelleAcheminement": "ST PAUL DE FOURQUES", - "nomCommune": "ST PAUL DE FOURQUES" + "codePostal": "71400", + "codeCommune": "71162", + "libelleAcheminement": "CURGY", + "nomCommune": "CURGY" }, { - "codePostal": "27520", - "codeCommune": "27586", - "libelleAcheminement": "ST PHILBERT SUR BOISSEY", - "nomCommune": "ST PHILBERT SUR BOISSEY" + "codePostal": "71550", + "codeCommune": "71165", + "libelleAcheminement": "CUSSY EN MORVAN", + "nomCommune": "CUSSY EN MORVAN" }, { - "codePostal": "27290", - "codeCommune": "27587", - "libelleAcheminement": "ST PHILBERT SUR RISLE", - "nomCommune": "ST PHILBERT SUR RISLE" + "codePostal": "71960", + "codeCommune": "71169", + "libelleAcheminement": "DAVAYE", + "nomCommune": "DAVAYE" }, { - "codePostal": "27600", - "codeCommune": "27599", - "libelleAcheminement": "ST PIERRE LA GARENNE", - "nomCommune": "ST PIERRE LA GARENNE" + "codePostal": "71210", + "codeCommune": "71187", + "libelleAcheminement": "ECUISSES", + "nomCommune": "ECUISSES" }, { - "codePostal": "27930", - "codeCommune": "27611", - "libelleAcheminement": "ST VIGOR", - "nomCommune": "ST VIGOR" + "codePostal": "71190", + "codeCommune": "71192", + "libelleAcheminement": "ETANG SUR ARROUX", + "nomCommune": "ETANG SUR ARROUX" }, { - "codePostal": "27150", - "codeCommune": "27614", - "libelleAcheminement": "SANCOURT", - "nomCommune": "SANCOURT" + "codePostal": "71150", + "codeCommune": "71194", + "libelleAcheminement": "FARGES LES CHALON", + "nomCommune": "FARGES LES CHALON" }, { - "codePostal": "27930", - "codeCommune": "27615", - "libelleAcheminement": "SASSEY", - "nomCommune": "SASSEY" + "codePostal": "71250", + "codeCommune": "71199", + "libelleAcheminement": "FLAGY", + "nomCommune": "FLAGY" }, { - "codePostal": "27190", - "codeCommune": "27618", - "libelleAcheminement": "SEBECOURT", - "nomCommune": "SEBECOURT" + "codePostal": "71530", + "codeCommune": "71204", + "libelleAcheminement": "FRAGNES LA LOYERE", + "nomCommune": "FRAGNES LA LOYERE" }, { - "codePostal": "27470", - "codeCommune": "27622", - "libelleAcheminement": "SERQUIGNY", - "nomCommune": "SERQUIGNY" + "codePostal": "71240", + "codeCommune": "71219", + "libelleAcheminement": "GIGNY SUR SAONE", + "nomCommune": "GIGNY SUR SAONE" }, { - "codePostal": "27420", - "codeCommune": "27625", - "libelleAcheminement": "SUZAY", - "nomCommune": "SUZAY" + "codePostal": "71700", + "codeCommune": "71226", + "libelleAcheminement": "GREVILLY", + "nomCommune": "GREVILLY" }, { - "codePostal": "27230", - "codeCommune": "27627", - "libelleAcheminement": "LE THEIL NOLENT", - "nomCommune": "LE THEIL NOLENT" + "codePostal": "71540", + "codeCommune": "71237", + "libelleAcheminement": "IGORNAY", + "nomCommune": "IGORNAY" }, { - "codePostal": "27230", - "codeCommune": "27629", - "libelleAcheminement": "THIBERVILLE", - "nomCommune": "THIBERVILLE" + "codePostal": "71250", + "codeCommune": "71240", + "libelleAcheminement": "JALOGNY", + "nomCommune": "JALOGNY" }, { - "codePostal": "27510", - "codeCommune": "27644", - "libelleAcheminement": "TILLY", - "nomCommune": "TILLY" + "codePostal": "71240", + "codeCommune": "71245", + "libelleAcheminement": "JUGY", + "nomCommune": "JUGY" }, { - "codePostal": "27180", - "codeCommune": "27650", - "libelleAcheminement": "TOURNEDOS BOIS HUBERT", - "nomCommune": "TOURNEDOS BOIS HUBERT" + "codePostal": "71870", + "codeCommune": "71250", + "libelleAcheminement": "LAIZE", + "nomCommune": "LAIZE" }, { - "codePostal": "27500", - "codeCommune": "27655", - "libelleAcheminement": "TOURVILLE SUR PONT AUDEMER", - "nomCommune": "TOURVILLE SUR PONT AUDEMER" + "codePostal": "71270", + "codeCommune": "71254", + "libelleAcheminement": "LAYS SUR LE DOUBS", + "nomCommune": "LAYS SUR LE DOUBS" }, { - "codePostal": "27270", - "codeCommune": "27660", - "libelleAcheminement": "LA TRINITE DE REVILLE", - "nomCommune": "LA TRINITE DE REVILLE" + "codePostal": "71250", + "codeCommune": "71264", + "libelleAcheminement": "LOURNAND", + "nomCommune": "LOURNAND" }, { - "codePostal": "27500", - "codeCommune": "27662", - "libelleAcheminement": "TRIQUEVILLE", - "nomCommune": "TRIQUEVILLE" + "codePostal": "71710", + "codeCommune": "71282", + "libelleAcheminement": "MARMAGNE", + "nomCommune": "MARMAGNE" }, { - "codePostal": "27120", - "codeCommune": "27668", - "libelleAcheminement": "LE VAL DAVID", - "nomCommune": "LE VAL DAVID" + "codePostal": "71700", + "codeCommune": "71284", + "libelleAcheminement": "MARTAILLY LES BRANCION", + "nomCommune": "MARTAILLY LES BRANCION" }, { - "codePostal": "27210", - "codeCommune": "27671", - "libelleAcheminement": "VANNECROCQ", - "nomCommune": "VANNECROCQ" + "codePostal": "71310", + "codeCommune": "71295", + "libelleAcheminement": "MERVANS", + "nomCommune": "MERVANS" }, { - "codePostal": "27110", - "codeCommune": "27677", - "libelleAcheminement": "VENON", - "nomCommune": "VENON" + "codePostal": "71960", + "codeCommune": "71299", + "libelleAcheminement": "MILLY LAMARTINE", + "nomCommune": "MILLY LAMARTINE" }, { - "codePostal": "27390", - "codeCommune": "27680", - "libelleAcheminement": "VERNEUSSES", - "nomCommune": "VERNEUSSES" + "codePostal": "71140", + "codeCommune": "71301", + "libelleAcheminement": "MONT", + "nomCommune": "MONT" }, { - "codePostal": "27120", - "codeCommune": "27689", - "libelleAcheminement": "VILLEGATS", - "nomCommune": "VILLEGATS" + "codePostal": "71300", + "codeCommune": "71306", + "libelleAcheminement": "MONTCEAU LES MINES", + "nomCommune": "MONTCEAU LES MINES" }, { - "codePostal": "27420", - "codeCommune": "27690", - "libelleAcheminement": "VILLERS EN VEXIN", - "nomCommune": "VILLERS EN VEXIN" + "codePostal": "71470", + "codeCommune": "71318", + "libelleAcheminement": "MONTPONT EN BRESSE", + "nomCommune": "MONTPONT EN BRESSE" }, { - "codePostal": "27240", - "codeCommune": "27693", - "libelleAcheminement": "SYLVAINS LES MOULINS", - "nomCommune": "SYLVAINS LES MOULINS" + "codePostal": "71440", + "codeCommune": "71319", + "libelleAcheminement": "MONTRET", + "nomCommune": "MONTRET" }, { - "codePostal": "27400", - "codeCommune": "27697", - "libelleAcheminement": "VIRONVAY", - "nomCommune": "VIRONVAY" + "codePostal": "71380", + "codeCommune": "71333", + "libelleAcheminement": "OSLON", + "nomCommune": "OSLON" }, { - "codePostal": "27520", - "codeCommune": "27699", - "libelleAcheminement": "VOISCREVILLE", - "nomCommune": "VOISCREVILLE" + "codePostal": "71800", + "codeCommune": "71335", + "libelleAcheminement": "OUROUX SOUS LE BOIS STE MARIE", + "nomCommune": "OUROUX SOUS LE BOIS STE MARIE" }, { - "codePostal": "28300", - "codeCommune": "28006", - "libelleAcheminement": "AMILLY", - "nomCommune": "AMILLY" + "codePostal": "71600", + "codeCommune": "71342", + "libelleAcheminement": "PARAY LE MONIAL", + "nomCommune": "PARAY LE MONIAL" }, { - "codePostal": "28170", - "codeCommune": "28008", - "libelleAcheminement": "ARDELLES", - "nomCommune": "ARDELLES" + "codePostal": "71270", + "codeCommune": "71351", + "libelleAcheminement": "PIERRE DE BRESSE", + "nomCommune": "PIERRE DE BRESSE" }, { - "codePostal": "28220", - "codeCommune": "28012", - "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", - "nomCommune": "COMMUNE NOUVELLE D ARROU" + "codePostal": "71330", + "codeCommune": "71352", + "libelleAcheminement": "LE PLANOIS", + "nomCommune": "LE PLANOIS" }, { - "codePostal": "28290", - "codeCommune": "28012", - "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", - "nomCommune": "COMMUNE NOUVELLE D ARROU" + "codePostal": "71800", + "codeCommune": "71361", + "libelleAcheminement": "PRIZY", + "nomCommune": "PRIZY" }, { - "codePostal": "28700", - "codeCommune": "28015", - "libelleAcheminement": "AUNEAU BLEURY ST SYMPHORIEN", - "nomCommune": "AUNEAU BLEURY ST SYMPHORIEN" + "codePostal": "71150", + "codeCommune": "71369", + "libelleAcheminement": "REMIGNY", + "nomCommune": "REMIGNY" }, { - "codePostal": "28140", - "codeCommune": "28019", - "libelleAcheminement": "BAIGNEAUX", - "nomCommune": "BAIGNEAUX" + "codePostal": "71570", + "codeCommune": "71372", + "libelleAcheminement": "ROMANECHE THORINS", + "nomCommune": "ROMANECHE THORINS" }, { - "codePostal": "28320", - "codeCommune": "28023", - "libelleAcheminement": "BAILLEAU ARMENONVILLE", - "nomCommune": "BAILLEAU ARMENONVILLE" + "codePostal": "71580", + "codeCommune": "71379", + "libelleAcheminement": "SAGY", + "nomCommune": "SAGY" }, { - "codePostal": "28140", - "codeCommune": "28029", - "libelleAcheminement": "BAZOCHES LES HAUTES", - "nomCommune": "BAZOCHES LES HAUTES" + "codePostal": "71160", + "codeCommune": "71382", + "libelleAcheminement": "ST AGNAN", + "nomCommune": "ST AGNAN" }, { - "codePostal": "28300", - "codeCommune": "28034", - "libelleAcheminement": "BERCHERES ST GERMAIN", - "nomCommune": "BERCHERES ST GERMAIN" + "codePostal": "71240", + "codeCommune": "71384", + "libelleAcheminement": "ST AMBREUIL", + "nomCommune": "ST AMBREUIL" }, { - "codePostal": "28630", - "codeCommune": "28035", - "libelleAcheminement": "BERCHERES LES PIERRES", - "nomCommune": "BERCHERES LES PIERRES" + "codePostal": "71640", + "codeCommune": "71403", + "libelleAcheminement": "ST DENIS DE VAUX", + "nomCommune": "ST DENIS DE VAUX" }, { - "codePostal": "28260", - "codeCommune": "28050", - "libelleAcheminement": "BONCOURT", - "nomCommune": "BONCOURT" + "codePostal": "71390", + "codeCommune": "71404", + "libelleAcheminement": "ST DESERT", + "nomCommune": "ST DESERT" }, { - "codePostal": "28130", - "codeCommune": "28052", - "libelleAcheminement": "BOUGLAINVAL", - "nomCommune": "BOUGLAINVAL" + "codePostal": "71740", + "codeCommune": "71408", + "libelleAcheminement": "ST EDMOND", + "nomCommune": "ST EDMOND" }, { - "codePostal": "28270", - "codeCommune": "28059", - "libelleAcheminement": "BREZOLLES", - "nomCommune": "BREZOLLES" + "codePostal": "71320", + "codeCommune": "71411", + "libelleAcheminement": "ST EUGENE", + "nomCommune": "ST EUGENE" }, { - "codePostal": "28300", - "codeCommune": "28068", - "libelleAcheminement": "CHALLET", - "nomCommune": "CHALLET" + "codePostal": "71400", + "codeCommune": "71414", + "libelleAcheminement": "ST FORGEOT", + "nomCommune": "ST FORGEOT" }, { - "codePostal": "28000", - "codeCommune": "28085", - "libelleAcheminement": "CHARTRES", - "nomCommune": "CHARTRES" + "codePostal": "71460", + "codeCommune": "71417", + "libelleAcheminement": "ST GENGOUX LE NATIONAL", + "nomCommune": "ST GENGOUX LE NATIONAL" }, { - "codePostal": "28200", - "codeCommune": "28088", - "libelleAcheminement": "CHATEAUDUN", - "nomCommune": "CHATEAUDUN" + "codePostal": "71800", + "codeCommune": "71421", + "libelleAcheminement": "ST GERMAIN EN BRIONNAIS", + "nomCommune": "ST GERMAIN EN BRIONNAIS" }, { - "codePostal": "28170", - "codeCommune": "28089", - "libelleAcheminement": "CHATEAUNEUF EN THYMERAIS", - "nomCommune": "CHATEAUNEUF EN THYMERAIS" + "codePostal": "71490", + "codeCommune": "71431", + "libelleAcheminement": "ST JEAN DE TREZY", + "nomCommune": "ST JEAN DE TREZY" }, { - "codePostal": "28270", - "codeCommune": "28090", - "libelleAcheminement": "LES CHATELETS", - "nomCommune": "LES CHATELETS" + "codePostal": "71990", + "codeCommune": "71440", + "libelleAcheminement": "ST LEGER SOUS BEUVRAY", + "nomCommune": "ST LEGER SOUS BEUVRAY" }, { - "codePostal": "28700", - "codeCommune": "28092", - "libelleAcheminement": "CHATENAY", - "nomCommune": "CHATENAY" + "codePostal": "71350", + "codeCommune": "71443", + "libelleAcheminement": "ST LOUP GEANGES", + "nomCommune": "ST LOUP GEANGES" }, { - "codePostal": "28210", - "codeCommune": "28094", - "libelleAcheminement": "CHAUDON", - "nomCommune": "CHAUDON" + "codePostal": "71390", + "codeCommune": "71449", + "libelleAcheminement": "ST MARTIN D AUXY", + "nomCommune": "ST MARTIN D AUXY" }, { - "codePostal": "28190", - "codeCommune": "28116", - "libelleAcheminement": "COURVILLE SUR EURE", - "nomCommune": "COURVILLE SUR EURE" + "codePostal": "71490", + "codeCommune": "71450", + "libelleAcheminement": "ST MARTIN DE COMMUNE", + "nomCommune": "ST MARTIN DE COMMUNE" }, { - "codePostal": "28140", - "codeCommune": "28121", - "libelleAcheminement": "DAMBRON", - "nomCommune": "DAMBRON" + "codePostal": "71110", + "codeCommune": "71453", + "libelleAcheminement": "ST MARTIN DU LAC", + "nomCommune": "ST MARTIN DU LAC" }, { - "codePostal": "28160", - "codeCommune": "28123", - "libelleAcheminement": "DAMPIERRE SOUS BROU", - "nomCommune": "DAMPIERRE SOUS BROU" + "codePostal": "71580", + "codeCommune": "71454", + "libelleAcheminement": "ST MARTIN DU MONT", + "nomCommune": "ST MARTIN DU MONT" }, { - "codePostal": "28800", - "codeCommune": "28126", - "libelleAcheminement": "DANCY", - "nomCommune": "DANCY" + "codePostal": "71620", + "codeCommune": "71456", + "libelleAcheminement": "ST MARTIN EN BRESSE", + "nomCommune": "ST MARTIN EN BRESSE" }, { - "codePostal": "28160", - "codeCommune": "28127", - "libelleAcheminement": "DANGEAU", - "nomCommune": "DANGEAU" + "codePostal": "71460", + "codeCommune": "71461", + "libelleAcheminement": "ST MAURICE DES CHAMPS", + "nomCommune": "ST MAURICE DES CHAMPS" }, { - "codePostal": "28320", - "codeCommune": "28137", - "libelleAcheminement": "ECROSNES", - "nomCommune": "ECROSNES" + "codePostal": "71190", + "codeCommune": "71466", + "libelleAcheminement": "ST NIZIER SUR ARROUX", + "nomCommune": "ST NIZIER SUR ARROUX" }, { - "codePostal": "28270", - "codeCommune": "28143", - "libelleAcheminement": "ESCORPAIN", - "nomCommune": "ESCORPAIN" + "codePostal": "71390", + "codeCommune": "71471", + "libelleAcheminement": "ST PRIVE", + "nomCommune": "ST PRIVE" }, { - "codePostal": "28210", - "codeCommune": "28146", - "libelleAcheminement": "FAVEROLLES", - "nomCommune": "FAVEROLLES" + "codePostal": "71800", + "codeCommune": "71473", + "libelleAcheminement": "ST RACHO", + "nomCommune": "ST RACHO" }, { - "codePostal": "28340", - "codeCommune": "28149", - "libelleAcheminement": "LA FERTE VIDAME", - "nomCommune": "LA FERTE VIDAME" + "codePostal": "71100", + "codeCommune": "71475", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "28140", - "codeCommune": "28157", - "libelleAcheminement": "FONTENAY SUR CONIE", - "nomCommune": "FONTENAY SUR CONIE" + "codePostal": "71570", + "codeCommune": "71487", + "libelleAcheminement": "ST VERAND", + "nomCommune": "ST VERAND" }, { - "codePostal": "28250", - "codeCommune": "28159", - "libelleAcheminement": "LA FRAMBOISIERE", - "nomCommune": "LA FRAMBOISIERE" + "codePostal": "71430", + "codeCommune": "71490", + "libelleAcheminement": "ST VINCENT BRAGNY", + "nomCommune": "ST VINCENT BRAGNY" }, { - "codePostal": "28700", - "codeCommune": "28160", - "libelleAcheminement": "FRANCOURVILLE", - "nomCommune": "FRANCOURVILLE" + "codePostal": "71460", + "codeCommune": "71492", + "libelleAcheminement": "ST YTHAIRE", + "nomCommune": "ST YTHAIRE" }, { - "codePostal": "28800", - "codeCommune": "28176", - "libelleAcheminement": "LE GAULT ST DENIS", - "nomCommune": "LE GAULT ST DENIS" + "codePostal": "71460", + "codeCommune": "71515", + "libelleAcheminement": "SERCY", + "nomCommune": "SERCY" }, { - "codePostal": "28630", - "codeCommune": "28177", - "libelleAcheminement": "GELLAINVILLE", - "nomCommune": "GELLAINVILLE" + "codePostal": "71960", + "codeCommune": "71518", + "libelleAcheminement": "SERRIERES", + "nomCommune": "SERRIERES" }, { - "codePostal": "28700", - "codeCommune": "28188", - "libelleAcheminement": "LE GUE DE LONGROI", - "nomCommune": "LE GUE DE LONGROI" + "codePostal": "71190", + "codeCommune": "71537", + "libelleAcheminement": "THIL SUR ARROUX", + "nomCommune": "THIL SUR ARROUX" }, { - "codePostal": "28130", - "codeCommune": "28191", - "libelleAcheminement": "HANCHES", - "nomCommune": "HANCHES" + "codePostal": "71440", + "codeCommune": "71538", + "libelleAcheminement": "THUREY", + "nomCommune": "THUREY" }, { - "codePostal": "28120", - "codeCommune": "28196", - "libelleAcheminement": "ILLIERS COMBRAY", - "nomCommune": "ILLIERS COMBRAY" + "codePostal": "71490", + "codeCommune": "71539", + "libelleAcheminement": "TINTRY", + "nomCommune": "TINTRY" }, { - "codePostal": "28310", - "codeCommune": "28197", - "libelleAcheminement": "INTREVILLE", - "nomCommune": "INTREVILLE" + "codePostal": "71210", + "codeCommune": "71540", + "libelleAcheminement": "TORCY", + "nomCommune": "TORCY" }, { - "codePostal": "28310", - "codeCommune": "28199", - "libelleAcheminement": "JANVILLE EN BEAUCE", - "nomCommune": "JANVILLE EN BEAUCE" + "codePostal": "71320", + "codeCommune": "71542", + "libelleAcheminement": "TOULON SUR ARROUX", + "nomCommune": "TOULON SUR ARROUX" }, { - "codePostal": "28340", - "codeCommune": "28202", - "libelleAcheminement": "LAMBLORE", - "nomCommune": "LAMBLORE" + "codePostal": "71700", + "codeCommune": "71543", + "libelleAcheminement": "TOURNUS", + "nomCommune": "TOURNUS" }, { - "codePostal": "28300", - "codeCommune": "28209", - "libelleAcheminement": "LEVES", - "nomCommune": "LEVES" + "codePostal": "71520", + "codeCommune": "71545", + "libelleAcheminement": "TRAMAYES", + "nomCommune": "TRAMAYES" }, { - "codePostal": "28150", - "codeCommune": "28215", - "libelleAcheminement": "LOUVILLE LA CHENARD", - "nomCommune": "LOUVILLE LA CHENARD" + "codePostal": "71290", + "codeCommune": "71549", + "libelleAcheminement": "LA TRUCHERE", + "nomCommune": "LA TRUCHERE" }, { - "codePostal": "28600", - "codeCommune": "28220", - "libelleAcheminement": "LUISANT", - "nomCommune": "LUISANT" + "codePostal": "71240", + "codeCommune": "71555", + "libelleAcheminement": "VARENNES LE GRAND", + "nomCommune": "VARENNES LE GRAND" }, { - "codePostal": "28170", - "codeCommune": "28226", - "libelleAcheminement": "MAILLEBOIS", - "nomCommune": "MAILLEBOIS" + "codePostal": "71800", + "codeCommune": "71559", + "libelleAcheminement": "VARENNES SOUS DUN", + "nomCommune": "VARENNES SOUS DUN" }, { - "codePostal": "28130", - "codeCommune": "28227", - "libelleAcheminement": "MAINTENON", - "nomCommune": "MAINTENON" + "codePostal": "71440", + "codeCommune": "71568", + "libelleAcheminement": "VERISSEY", + "nomCommune": "VERISSEY" }, { - "codePostal": "28200", - "codeCommune": "28233", - "libelleAcheminement": "MARBOUE", - "nomCommune": "MARBOUE" + "codePostal": "71240", + "codeCommune": "71572", + "libelleAcheminement": "VERS", + "nomCommune": "VERS" }, { - "codePostal": "28400", - "codeCommune": "28236", - "libelleAcheminement": "ARCISSES", - "nomCommune": "ARCISSES" + "codePostal": "71390", + "codeCommune": "71579", + "libelleAcheminement": "VILLENEUVE EN MONTAGNE", + "nomCommune": "VILLENEUVE EN MONTAGNE" }, { - "codePostal": "28400", - "codeCommune": "28236", - "libelleAcheminement": "ARCISSES", - "nomCommune": "ARCISSES" + "codePostal": "71250", + "codeCommune": "71582", + "libelleAcheminement": "LA VINEUSE SUR FREGANDE", + "nomCommune": "LA VINEUSE SUR FREGANDE" }, { - "codePostal": "28240", - "codeCommune": "28240", - "libelleAcheminement": "MEAUCE", - "nomCommune": "MEAUCE" + "codePostal": "71260", + "codeCommune": "71584", + "libelleAcheminement": "VIRE", + "nomCommune": "VIRE" }, { - "codePostal": "28120", - "codeCommune": "28242", - "libelleAcheminement": "MEREGLISE", - "nomCommune": "MEREGLISE" + "codePostal": "72610", + "codeCommune": "72005", + "libelleAcheminement": "ANCINNES", + "nomCommune": "ANCINNES" }, { - "codePostal": "28360", - "codeCommune": "28246", - "libelleAcheminement": "MESLAY LE VIDAME", - "nomCommune": "MESLAY LE VIDAME" + "codePostal": "72230", + "codeCommune": "72008", + "libelleAcheminement": "ARNAGE", + "nomCommune": "ARNAGE" }, { - "codePostal": "28500", - "codeCommune": "28251", - "libelleAcheminement": "MEZIERES EN DROUAIS", - "nomCommune": "MEZIERES EN DROUAIS" + "codePostal": "72270", + "codeCommune": "72009", + "libelleAcheminement": "ARTHEZE", + "nomCommune": "ARTHEZE" }, { - "codePostal": "28630", - "codeCommune": "28253", - "libelleAcheminement": "MIGNIERES", - "nomCommune": "MIGNIERES" + "codePostal": "72310", + "codeCommune": "72035", + "libelleAcheminement": "BESSE SUR BRAYE", + "nomCommune": "BESSE SUR BRAYE" }, { - "codePostal": "28200", - "codeCommune": "28256", - "libelleAcheminement": "MOLEANS", - "nomCommune": "MOLEANS" + "codePostal": "72600", + "codeCommune": "72037", + "libelleAcheminement": "BLEVES", + "nomCommune": "BLEVES" }, { - "codePostal": "28210", - "codeCommune": "28279", - "libelleAcheminement": "NOGENT LE ROI", - "nomCommune": "NOGENT LE ROI" + "codePostal": "72550", + "codeCommune": "72045", + "libelleAcheminement": "BRAINS SUR GEE", + "nomCommune": "BRAINS SUR GEE" }, { - "codePostal": "28140", - "codeCommune": "28283", - "libelleAcheminement": "NOTTONVILLE", - "nomCommune": "NOTTONVILLE" + "codePostal": "72110", + "codeCommune": "72048", + "libelleAcheminement": "BRIOSNE LES SABLES", + "nomCommune": "BRIOSNE LES SABLES" }, { - "codePostal": "28310", - "codeCommune": "28284", - "libelleAcheminement": "OINVILLE ST LIPHARD", - "nomCommune": "OINVILLE ST LIPHARD" + "codePostal": "72610", + "codeCommune": "72056", + "libelleAcheminement": "CHAMPFLEUR", + "nomCommune": "CHAMPFLEUR" }, { - "codePostal": "28260", - "codeCommune": "28321", - "libelleAcheminement": "ROUVRES", - "nomCommune": "ROUVRES" + "codePostal": "72430", + "codeCommune": "72059", + "libelleAcheminement": "CHANTENAY VILLEDIEU", + "nomCommune": "CHANTENAY VILLEDIEU" }, { - "codePostal": "28300", - "codeCommune": "28325", - "libelleAcheminement": "ST AUBIN DES BOIS", - "nomCommune": "ST AUBIN DES BOIS" + "codePostal": "72500", + "codeCommune": "72071", + "libelleAcheminement": "MONTVAL SUR LOIR", + "nomCommune": "MONTVAL SUR LOIR" }, { - "codePostal": "28500", - "codeCommune": "28332", - "libelleAcheminement": "STE GEMME MORONVAL", - "nomCommune": "STE GEMME MORONVAL" + "codePostal": "72540", + "codeCommune": "72074", + "libelleAcheminement": "CHEMIRE EN CHARNIE", + "nomCommune": "CHEMIRE EN CHARNIE" }, { - "codePostal": "28190", - "codeCommune": "28339", - "libelleAcheminement": "ST GERMAIN LE GAILLARD", - "nomCommune": "ST GERMAIN LE GAILLARD" + "codePostal": "72350", + "codeCommune": "72083", + "libelleAcheminement": "CHEVILLE", + "nomCommune": "CHEVILLE" }, { - "codePostal": "28400", - "codeCommune": "28342", - "libelleAcheminement": "ST JEAN PIERRE FIXTE", - "nomCommune": "ST JEAN PIERRE FIXTE" + "codePostal": "72600", + "codeCommune": "72091", + "libelleAcheminement": "CONTILLY", + "nomCommune": "CONTILLY" }, { - "codePostal": "28700", - "codeCommune": "28344", - "libelleAcheminement": "ST LEGER DES AUBEES", - "nomCommune": "ST LEGER DES AUBEES" + "codePostal": "72440", + "codeCommune": "72094", + "libelleAcheminement": "COUDRECIEUX", + "nomCommune": "COUDRECIEUX" }, { - "codePostal": "28410", - "codeCommune": "28347", - "libelleAcheminement": "ST LUBIN DE LA HAYE", - "nomCommune": "ST LUBIN DE LA HAYE" + "codePostal": "72800", + "codeCommune": "72098", + "libelleAcheminement": "COULONGE", + "nomCommune": "COULONGE" }, { - "codePostal": "28260", - "codeCommune": "28355", - "libelleAcheminement": "ST OUEN MARCHEFROY", - "nomCommune": "ST OUEN MARCHEFROY" + "codePostal": "72290", + "codeCommune": "72099", + "libelleAcheminement": "COURCEBOEUFS", + "nomCommune": "COURCEBOEUFS" }, { - "codePostal": "28240", - "codeCommune": "28362", - "libelleAcheminement": "ST VICTOR DE BUTHON", - "nomCommune": "ST VICTOR DE BUTHON" + "codePostal": "72150", + "codeCommune": "72103", + "libelleAcheminement": "COURDEMANCHE", + "nomCommune": "COURDEMANCHE" }, { - "codePostal": "28700", - "codeCommune": "28363", - "libelleAcheminement": "SAINVILLE", - "nomCommune": "SAINVILLE" + "codePostal": "72300", + "codeCommune": "72106", + "libelleAcheminement": "COURTILLERS", + "nomCommune": "COURTILLERS" }, { - "codePostal": "28120", - "codeCommune": "28365", - "libelleAcheminement": "SANDARVILLE", - "nomCommune": "SANDARVILLE" + "codePostal": "72540", + "codeCommune": "72107", + "libelleAcheminement": "CRANNES EN CHAMPAGNE", + "nomCommune": "CRANNES EN CHAMPAGNE" }, { - "codePostal": "28410", - "codeCommune": "28375", - "libelleAcheminement": "SERVILLE", - "nomCommune": "SERVILLE" + "codePostal": "72200", + "codeCommune": "72110", + "libelleAcheminement": "CROSMIERES", + "nomCommune": "CROSMIERES" }, { - "codePostal": "28260", - "codeCommune": "28377", - "libelleAcheminement": "SOREL MOUSSEL", - "nomCommune": "SOREL MOUSSEL" + "codePostal": "72400", + "codeCommune": "72114", + "libelleAcheminement": "DEHAULT", + "nomCommune": "DEHAULT" }, { - "codePostal": "28630", - "codeCommune": "28380", - "libelleAcheminement": "SOURS", - "nomCommune": "SOURS" + "codePostal": "72500", + "codeCommune": "72115", + "libelleAcheminement": "DISSAY SOUS COURCILLON", + "nomCommune": "DISSAY SOUS COURCILLON" }, { - "codePostal": "28140", - "codeCommune": "28382", - "libelleAcheminement": "TERMINIERS", - "nomCommune": "TERMINIERS" + "codePostal": "72130", + "codeCommune": "72121", + "libelleAcheminement": "DOUILLET LE JOLY", + "nomCommune": "DOUILLET" }, { - "codePostal": "28360", - "codeCommune": "28383", - "libelleAcheminement": "THEUVILLE", - "nomCommune": "THEUVILLE" + "codePostal": "72700", + "codeCommune": "72127", + "libelleAcheminement": "ETIVAL LES LE MANS", + "nomCommune": "ETIVAL LES LE MANS" }, { - "codePostal": "28200", - "codeCommune": "28389", - "libelleAcheminement": "THIVILLE", - "nomCommune": "THIVILLE" + "codePostal": "72120", + "codeCommune": "72128", + "libelleAcheminement": "VAL D ETANGSON", + "nomCommune": "VAL D ETANGSON" }, { - "codePostal": "28170", - "codeCommune": "28393", - "libelleAcheminement": "TREMBLAY LES VILLAGES", - "nomCommune": "TREMBLAY LES VILLAGES" + "codePostal": "72600", + "codeCommune": "72137", + "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", + "nomCommune": "VILLENEUVE EN PERSEIGNE" }, { - "codePostal": "28700", - "codeCommune": "28397", - "libelleAcheminement": "UMPEAU", - "nomCommune": "UMPEAU" + "codePostal": "72610", + "codeCommune": "72137", + "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", + "nomCommune": "VILLENEUVE EN PERSEIGNE" }, { - "codePostal": "28160", - "codeCommune": "28398", - "libelleAcheminement": "UNVERRE", - "nomCommune": "UNVERRE" + "codePostal": "72610", + "codeCommune": "72137", + "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", + "nomCommune": "VILLENEUVE EN PERSEIGNE" }, { - "codePostal": "28500", - "codeCommune": "28405", - "libelleAcheminement": "VERT EN DROUAIS", - "nomCommune": "VERT EN DROUAIS" + "codePostal": "72130", + "codeCommune": "72138", + "libelleAcheminement": "FRESNAY SUR SARTHE", + "nomCommune": "FRESNAY SUR SARTHE" }, { - "codePostal": "28700", - "codeCommune": "28408", - "libelleAcheminement": "VIERVILLE", - "nomCommune": "VIERVILLE" + "codePostal": "72130", + "codeCommune": "72138", + "libelleAcheminement": "FRESNAY SUR SARTHE", + "nomCommune": "FRESNAY SUR SARTHE" }, { - "codePostal": "28120", - "codeCommune": "28409", - "libelleAcheminement": "VIEUVICQ", - "nomCommune": "VIEUVICQ" + "codePostal": "72610", + "codeCommune": "72142", + "libelleAcheminement": "GRANDCHAMP", + "nomCommune": "GRANDCHAMP" }, { - "codePostal": "28130", - "codeCommune": "28417", - "libelleAcheminement": "VILLIERS LE MORHIER", - "nomCommune": "VILLIERS LE MORHIER" + "codePostal": "72140", + "codeCommune": "72145", + "libelleAcheminement": "LE GREZ", + "nomCommune": "LE GREZ" }, { - "codePostal": "28150", - "codeCommune": "28422", - "libelleAcheminement": "LES VILLAGES VOVEENS", - "nomCommune": "LES VILLAGES VOVEENS" + "codePostal": "72110", + "codeCommune": "72148", + "libelleAcheminement": "JAUZE", + "nomCommune": "JAUZE" }, { - "codePostal": "29560", - "codeCommune": "29001", - "libelleAcheminement": "ARGOL", - "nomCommune": "ARGOL" + "codePostal": "72500", + "codeCommune": "72153", + "libelleAcheminement": "JUPILLES", + "nomCommune": "JUPILLES" }, { - "codePostal": "29380", - "codeCommune": "29004", - "libelleAcheminement": "BANNALEC", - "nomCommune": "BANNALEC" + "codePostal": "72320", + "codeCommune": "72156", + "libelleAcheminement": "LAMNAY", + "nomCommune": "LAMNAY" }, { - "codePostal": "29790", - "codeCommune": "29008", - "libelleAcheminement": "BEUZEC CAP SIZUN", - "nomCommune": "BEUZEC CAP SIZUN" + "codePostal": "72240", + "codeCommune": "72157", + "libelleAcheminement": "LAVARDIN", + "nomCommune": "LAVARDIN" }, { - "codePostal": "29690", - "codeCommune": "29018", - "libelleAcheminement": "BRENNILIS", - "nomCommune": "BRENNILIS" + "codePostal": "72340", + "codeCommune": "72161", + "libelleAcheminement": "LHOMME", + "nomCommune": "LHOMME" }, { - "codePostal": "29890", - "codeCommune": "29021", - "libelleAcheminement": "PLOUNEOUR BRIGNOGAN PLAGES", - "nomCommune": "PLOUNEOUR BRIGNOGAN PLAGES" + "codePostal": "72290", + "codeCommune": "72174", + "libelleAcheminement": "LUCE SOUS BALLON", + "nomCommune": "LUCE SOUS BALLON" }, { - "codePostal": "29360", - "codeCommune": "29031", - "libelleAcheminement": "CLOHARS CARNOET", - "nomCommune": "CLOHARS CARNOET" + "codePostal": "72800", + "codeCommune": "72175", + "libelleAcheminement": "LUCHE PRINGE", + "nomCommune": "LUCHE PRINGE" }, { - "codePostal": "29950", - "codeCommune": "29032", - "libelleAcheminement": "CLOHARS FOUESNANT", - "nomCommune": "CLOHARS FOUESNANT" + "codePostal": "72100", + "codeCommune": "72181", + "libelleAcheminement": "LE MANS", + "nomCommune": "LE MANS" }, { - "codePostal": "29450", - "codeCommune": "29038", - "libelleAcheminement": "COMMANA", - "nomCommune": "COMMANA" + "codePostal": "72540", + "codeCommune": "72184", + "libelleAcheminement": "MAREIL EN CHAMPAGNE", + "nomCommune": "MAREIL EN CHAMPAGNE" }, { - "codePostal": "29900", - "codeCommune": "29039", - "libelleAcheminement": "CONCARNEAU", - "nomCommune": "CONCARNEAU" + "codePostal": "72200", + "codeCommune": "72185", + "libelleAcheminement": "MAREIL SUR LOIR", + "nomCommune": "MAREIL SUR LOIR" }, { - "codePostal": "29217", - "codeCommune": "29040", - "libelleAcheminement": "LE CONQUET", - "nomCommune": "LE CONQUET" + "codePostal": "72220", + "codeCommune": "72187", + "libelleAcheminement": "MARIGNE LAILLE", + "nomCommune": "MARIGNE LAILLE" }, { - "codePostal": "29370", - "codeCommune": "29041", - "libelleAcheminement": "CORAY", - "nomCommune": "CORAY" + "codePostal": "72260", + "codeCommune": "72189", + "libelleAcheminement": "MAROLLES LES BRAULTS", + "nomCommune": "MAROLLES LES BRAULTS" }, { - "codePostal": "29860", - "codeCommune": "29047", - "libelleAcheminement": "LE DRENNEC", - "nomCommune": "LE DRENNEC" + "codePostal": "72360", + "codeCommune": "72191", + "libelleAcheminement": "MAYET", + "nomCommune": "MAYET" }, { - "codePostal": "29800", - "codeCommune": "29056", - "libelleAcheminement": "LA FOREST LANDERNEAU", - "nomCommune": "LA FOREST LANDERNEAU" + "codePostal": "72260", + "codeCommune": "72192", + "libelleAcheminement": "LES MEES", + "nomCommune": "LES MEES" }, { - "codePostal": "29170", - "codeCommune": "29058", - "libelleAcheminement": "FOUESNANT", - "nomCommune": "FOUESNANT" + "codePostal": "72170", + "codeCommune": "72194", + "libelleAcheminement": "MEURCE", + "nomCommune": "MEURCE" }, { - "codePostal": "29950", - "codeCommune": "29060", - "libelleAcheminement": "GOUESNACH", - "nomCommune": "GOUESNACH" + "codePostal": "72290", + "codeCommune": "72196", + "libelleAcheminement": "MEZIERES SUR PONTHOUIN", + "nomCommune": "MEZIERES SUR PONTHOUIN" }, { - "codePostal": "29890", - "codeCommune": "29064", - "libelleAcheminement": "GOULVEN", - "nomCommune": "GOULVEN" + "codePostal": "72260", + "codeCommune": "72201", + "libelleAcheminement": "MONCE EN SAOSNOIS", + "nomCommune": "MONCE EN SAOSNOIS" }, { - "codePostal": "29820", - "codeCommune": "29069", - "libelleAcheminement": "GUILERS", - "nomCommune": "GUILERS" + "codePostal": "72120", + "codeCommune": "72204", + "libelleAcheminement": "MONTAILLE", + "nomCommune": "MONTAILLE" }, { - "codePostal": "29460", - "codeCommune": "29078", - "libelleAcheminement": "HANVEC", - "nomCommune": "HANVEC" + "codePostal": "72130", + "codeCommune": "72209", + "libelleAcheminement": "MONTREUIL LE CHETIF", + "nomCommune": "MONTREUIL LE CHETIF" }, { - "codePostal": "29460", - "codeCommune": "29080", - "libelleAcheminement": "L HOPITAL CAMFROUT", - "nomCommune": "HOPITAL CAMFROUT" + "codePostal": "72240", + "codeCommune": "72219", + "libelleAcheminement": "BERNAY NEUVY EN CHAMPAGNE", + "nomCommune": "BERNAY NEUVY EN CHAMPAGNE" }, { - "codePostal": "29990", - "codeCommune": "29083", - "libelleAcheminement": "ILE DE SEIN", - "nomCommune": "ILE DE SEIN" + "codePostal": "72110", + "codeCommune": "72220", + "libelleAcheminement": "NOGENT LE BERNARD", + "nomCommune": "NOGENT LE BERNARD" }, { - "codePostal": "29259", - "codeCommune": "29084", - "libelleAcheminement": "ILE MOLENE", - "nomCommune": "ILE MOLENE" + "codePostal": "72260", + "codeCommune": "72222", + "libelleAcheminement": "NOUANS", + "nomCommune": "NOUANS" }, { - "codePostal": "29980", - "codeCommune": "29085", - "libelleAcheminement": "ILE TUDY", - "nomCommune": "ILE TUDY" + "codePostal": "72140", + "codeCommune": "72229", + "libelleAcheminement": "PARENNES", + "nomCommune": "PARENNES" }, { - "codePostal": "29870", - "codeCommune": "29101", - "libelleAcheminement": "LANDEDA", - "nomCommune": "LANDEDA" + "codePostal": "72250", + "codeCommune": "72231", + "libelleAcheminement": "PARIGNE L EVEQUE", + "nomCommune": "PARIGNE L EVEQUE" }, { - "codePostal": "29510", - "codeCommune": "29106", - "libelleAcheminement": "LANDREVARZEC", - "nomCommune": "LANDREVARZEC" + "codePostal": "72300", + "codeCommune": "72236", + "libelleAcheminement": "PINCE", + "nomCommune": "PINCE" }, { - "codePostal": "29510", - "codeCommune": "29110", - "libelleAcheminement": "LANGOLEN", - "nomCommune": "LANGOLEN" + "codePostal": "72600", + "codeCommune": "72238", + "libelleAcheminement": "PIZIEUX", + "nomCommune": "PIZIEUX" }, { - "codePostal": "29670", - "codeCommune": "29132", - "libelleAcheminement": "LOCQUENOLE", - "nomCommune": "LOCQUENOLE" + "codePostal": "72400", + "codeCommune": "72245", + "libelleAcheminement": "PREVAL", + "nomCommune": "PREVAL" }, { - "codePostal": "29790", - "codeCommune": "29143", - "libelleAcheminement": "MAHALON", - "nomCommune": "MAHALON" + "codePostal": "72150", + "codeCommune": "72248", + "libelleAcheminement": "PRUILLE L EGUILLE", + "nomCommune": "PRUILLE L EGUILLE" }, { - "codePostal": "29300", - "codeCommune": "29147", - "libelleAcheminement": "MELLAC", - "nomCommune": "MELLAC" + "codePostal": "72700", + "codeCommune": "72257", + "libelleAcheminement": "ROUILLON", + "nomCommune": "ROUILLON" }, { - "codePostal": "29420", - "codeCommune": "29148", - "libelleAcheminement": "MESPAUL", - "nomCommune": "MESPAUL" + "codePostal": "72110", + "codeCommune": "72259", + "libelleAcheminement": "ROUPERROUX LE COQUET", + "nomCommune": "ROUPERROUX LE COQUET" }, { - "codePostal": "29350", - "codeCommune": "29150", - "libelleAcheminement": "MOELAN SUR MER", - "nomCommune": "MOELAN SUR MER" + "codePostal": "72340", + "codeCommune": "72262", + "libelleAcheminement": "LOIR EN VALLEE", + "nomCommune": "LOIR EN VALLEE" }, { - "codePostal": "29800", - "codeCommune": "29156", - "libelleAcheminement": "PENCRAN", - "nomCommune": "PENCRAN" + "codePostal": "72130", + "codeCommune": "72266", + "libelleAcheminement": "ST AUBIN DE LOCQUENAY", + "nomCommune": "ST AUBIN DE LOCQUENAY" }, { - "codePostal": "29740", - "codeCommune": "29165", - "libelleAcheminement": "PLOBANNALEC LESCONIL", - "nomCommune": "PLOBANNALEC LESCONIL" + "codePostal": "72120", + "codeCommune": "72286", + "libelleAcheminement": "ST GERVAIS DE VIC", + "nomCommune": "ST GERVAIS DE VIC" }, { - "codePostal": "29770", - "codeCommune": "29168", - "libelleAcheminement": "PLOGOFF", - "nomCommune": "PLOGOFF" + "codePostal": "72380", + "codeCommune": "72289", + "libelleAcheminement": "STE JAMME SUR SARTHE", + "nomCommune": "STE JAMME SUR SARTHE" }, { - "codePostal": "29550", - "codeCommune": "29172", - "libelleAcheminement": "PLOMODIERN", - "nomCommune": "PLOMODIERN" + "codePostal": "72380", + "codeCommune": "72290", + "libelleAcheminement": "ST JEAN D ASSE", + "nomCommune": "ST JEAN D ASSE" }, { - "codePostal": "29650", - "codeCommune": "29183", - "libelleAcheminement": "PLOUEGAT MOYSAN", - "nomCommune": "PLOUEGAT MOYSAN" + "codePostal": "72170", + "codeCommune": "72297", + "libelleAcheminement": "ST MARCEAU", + "nomCommune": "ST MARCEAU" }, { - "codePostal": "29217", - "codeCommune": "29190", - "libelleAcheminement": "PLOUGONVELIN", - "nomCommune": "PLOUGONVELIN" + "codePostal": "72400", + "codeCommune": "72302", + "libelleAcheminement": "ST MARTIN DES MONTS", + "nomCommune": "ST MARTIN DES MONTS" }, { - "codePostal": "29610", - "codeCommune": "29199", - "libelleAcheminement": "PLOUIGNEAU", - "nomCommune": "PLOUIGNEAU" + "codePostal": "72130", + "codeCommune": "72305", + "libelleAcheminement": "ST OUEN DE MIMBRE", + "nomCommune": "ST OUEN DE MIMBRE" }, { - "codePostal": "29600", - "codeCommune": "29207", - "libelleAcheminement": "PLOURIN LES MORLAIX", - "nomCommune": "PLOURIN LES MORLAIX" + "codePostal": "72150", + "codeCommune": "72314", + "libelleAcheminement": "ST PIERRE DU LOROUER", + "nomCommune": "ST PIERRE DU LOROUER" }, { - "codePostal": "29690", - "codeCommune": "29211", - "libelleAcheminement": "PLOUYE", - "nomCommune": "PLOUYE" + "codePostal": "72140", + "codeCommune": "72315", + "libelleAcheminement": "ST REMY DE SILLE", + "nomCommune": "ST REMY DE SILLE" }, { - "codePostal": "29710", - "codeCommune": "29215", - "libelleAcheminement": "PLOZEVET", - "nomCommune": "PLOZEVET" + "codePostal": "72600", + "codeCommune": "72324", + "libelleAcheminement": "ST VINCENT DES PRES", + "nomCommune": "ST VINCENT DES PRES" }, { - "codePostal": "29930", - "codeCommune": "29217", - "libelleAcheminement": "PONT AVEN", - "nomCommune": "PONT AVEN" + "codePostal": "72150", + "codeCommune": "72325", + "libelleAcheminement": "ST VINCENT DU LOROUER", + "nomCommune": "ST VINCENT DU LOROUER" }, { - "codePostal": "29120", - "codeCommune": "29220", - "libelleAcheminement": "PONT L ABBE", - "nomCommune": "PONT L ABBE" + "codePostal": "72160", + "codeCommune": "72331", + "libelleAcheminement": "SCEAUX SUR HUISNE", + "nomCommune": "SCEAUX SUR HUISNE" }, { - "codePostal": "29840", - "codeCommune": "29221", - "libelleAcheminement": "PORSPODER", - "nomCommune": "PORSPODER" + "codePostal": "72110", + "codeCommune": "72359", + "libelleAcheminement": "TORCE EN VALLEE", + "nomCommune": "TORCE EN VALLEE" }, { - "codePostal": "29100", - "codeCommune": "29226", - "libelleAcheminement": "POULLAN SUR MER", - "nomCommune": "POULLAN SUR MER" + "codePostal": "72650", + "codeCommune": "72360", + "libelleAcheminement": "TRANGE", + "nomCommune": "TRANGE" }, { - "codePostal": "29246", - "codeCommune": "29227", - "libelleAcheminement": "POULLAOUEN", - "nomCommune": "POULLAOUEN" + "codePostal": "72160", + "codeCommune": "72363", + "libelleAcheminement": "TUFFE VAL DE LA CHERONNE", + "nomCommune": "TUFFE VAL DE LA CHERONNE" }, { - "codePostal": "29690", - "codeCommune": "29227", - "libelleAcheminement": "POULLAOUEN", - "nomCommune": "POULLAOUEN" + "codePostal": "72500", + "codeCommune": "72364", + "libelleAcheminement": "VAAS", + "nomCommune": "VAAS" }, { - "codePostal": "29590", - "codeCommune": "29240", - "libelleAcheminement": "ROSNOEN", - "nomCommune": "ROSNOEN" + "codePostal": "72320", + "codeCommune": "72366", + "libelleAcheminement": "VALENNES", + "nomCommune": "VALENNES" }, { - "codePostal": "29140", - "codeCommune": "29241", - "libelleAcheminement": "ROSPORDEN", - "nomCommune": "ROSPORDEN" + "codePostal": "72310", + "codeCommune": "72368", + "libelleAcheminement": "VANCE", + "nomCommune": "VANCE" }, { - "codePostal": "29270", - "codeCommune": "29250", - "libelleAcheminement": "ST HERNIN", - "nomCommune": "ST HERNIN" + "codePostal": "72170", + "codeCommune": "72380", + "libelleAcheminement": "VIVOIN", + "nomCommune": "VIVOIN" }, { - "codePostal": "29550", - "codeCommune": "29256", - "libelleAcheminement": "ST NIC", - "nomCommune": "ST NIC" + "codePostal": "72160", + "codeCommune": "72383", + "libelleAcheminement": "VOUVRAY SUR HUISNE", + "nomCommune": "VOUVRAY SUR HUISNE" }, { - "codePostal": "29380", - "codeCommune": "29269", - "libelleAcheminement": "ST THURIEN", - "nomCommune": "ST THURIEN" + "codePostal": "73260", + "codeCommune": "73003", + "libelleAcheminement": "GRAND AIGUEBLANCHE", + "nomCommune": "GRAND AIGUEBLANCHE" }, { - "codePostal": "29640", - "codeCommune": "29275", - "libelleAcheminement": "SCRIGNAC", - "nomCommune": "SCRIGNAC" + "codePostal": "73340", + "codeCommune": "73004", + "libelleAcheminement": "AILLON LE JEUNE", + "nomCommune": "AILLON LE JEUNE" }, { - "codePostal": "29540", - "codeCommune": "29278", - "libelleAcheminement": "SPEZET", - "nomCommune": "SPEZET" + "codePostal": "73210", + "codeCommune": "73006", + "libelleAcheminement": "AIME LA PLAGNE", + "nomCommune": "AIME LA PLAGNE" }, { - "codePostal": "29380", - "codeCommune": "29300", - "libelleAcheminement": "LE TREVOUX", - "nomCommune": "LE TREVOUX" + "codePostal": "73220", + "codeCommune": "73007", + "libelleAcheminement": "AITON", + "nomCommune": "AITON" }, { - "codePostal": "20128", - "codeCommune": "2A008", - "libelleAcheminement": "ALBITRECCIA", - "nomCommune": "ALBITRECCIA" + "codePostal": "73100", + "codeCommune": "73008", + "libelleAcheminement": "AIX LES BAINS", + "nomCommune": "AIX LES BAINS" }, { - "codePostal": "20110", - "codeCommune": "2A018", - "libelleAcheminement": "ARBELLARA", - "nomCommune": "ARBELLARA" + "codePostal": "73410", + "codeCommune": "73010", + "libelleAcheminement": "ENTRELACS", + "nomCommune": "ENTRELACS" }, { - "codePostal": "20140", - "codeCommune": "2A021", - "libelleAcheminement": "ARGIUSTA MORICCIO", - "nomCommune": "ARGIUSTA MORICCIO" + "codePostal": "73410", + "codeCommune": "73010", + "libelleAcheminement": "ENTRELACS", + "nomCommune": "ENTRELACS" }, { - "codePostal": "20134", - "codeCommune": "2A089", - "libelleAcheminement": "CIAMANNACCE", - "nomCommune": "CIAMANNACCE" + "codePostal": "73340", + "codeCommune": "73020", + "libelleAcheminement": "ARITH", + "nomCommune": "ARITH" }, { - "codePostal": "20118", - "codeCommune": "2A090", - "libelleAcheminement": "COGGIA", - "nomCommune": "COGGIA" + "codePostal": "73270", + "codeCommune": "73034", + "libelleAcheminement": "BEAUFORT SUR DORON", + "nomCommune": "BEAUFORT" }, { - "codePostal": "20166", - "codeCommune": "2A091", - "libelleAcheminement": "COGNOCOLI MONTICCHI", - "nomCommune": "COGNOCOLI MONTICCHI" + "codePostal": "73170", + "codeCommune": "73042", + "libelleAcheminement": "BILLIEME", + "nomCommune": "BILLIEME" }, { - "codePostal": "20138", - "codeCommune": "2A098", - "libelleAcheminement": "COTI CHIAVARI", - "nomCommune": "COTI CHIAVARI" + "codePostal": "73220", + "codeCommune": "73049", + "libelleAcheminement": "BONVILLARET", + "nomCommune": "BONVILLARET" }, { - "codePostal": "20114", - "codeCommune": "2A114", - "libelleAcheminement": "FIGARI", - "nomCommune": "FIGARI" + "codePostal": "73700", + "codeCommune": "73054", + "libelleAcheminement": "BOURG ST MAURICE", + "nomCommune": "BOURG ST MAURICE" }, { - "codePostal": "20100", - "codeCommune": "2A115", - "libelleAcheminement": "FOCE", - "nomCommune": "FOCE" + "codePostal": "73100", + "codeCommune": "73059", + "libelleAcheminement": "BRISON ST INNOCENT", + "nomCommune": "BRISON ST INNOCENT" }, { - "codePostal": "20100", - "codeCommune": "2A127", - "libelleAcheminement": "GIUNCHETO", - "nomCommune": "GIUNCHETO" + "codePostal": "73130", + "codeCommune": "73067", + "libelleAcheminement": "LA CHAMBRE", + "nomCommune": "LA CHAMBRE" }, { - "codePostal": "20160", - "codeCommune": "2A131", - "libelleAcheminement": "GUAGNO", - "nomCommune": "GUAGNO" + "codePostal": "73660", + "codeCommune": "73074", + "libelleAcheminement": "LA CHAPELLE", + "nomCommune": "LA CHAPELLE" }, { - "codePostal": "20153", - "codeCommune": "2A133", - "libelleAcheminement": "GUITERA LES BAINS", - "nomCommune": "GUITERA LES BAINS" + "codePostal": "73630", + "codeCommune": "73081", + "libelleAcheminement": "LE CHATELARD", + "nomCommune": "LE CHATELARD" }, { - "codePostal": "20141", - "codeCommune": "2A154", - "libelleAcheminement": "MARIGNANA", - "nomCommune": "MARIGNANA" + "codePostal": "73400", + "codeCommune": "73088", + "libelleAcheminement": "COHENNOZ", + "nomCommune": "COHENNOZ" }, { - "codePostal": "20113", - "codeCommune": "2A189", - "libelleAcheminement": "OLMETO", - "nomCommune": "OLMETO" + "codePostal": "73230", + "codeCommune": "73098", + "libelleAcheminement": "LES DESERTS", + "nomCommune": "LES DESERTS" }, { - "codePostal": "20167", - "codeCommune": "2A209", - "libelleAcheminement": "PERI", - "nomCommune": "PERI" + "codePostal": "73420", + "codeCommune": "73103", + "libelleAcheminement": "DRUMETTAZ CLARAFOND", + "nomCommune": "DRUMETTAZ CLARAFOND" }, { - "codePostal": "20131", - "codeCommune": "2A215", - "libelleAcheminement": "PIANOTTOLI CALDARELLO", - "nomCommune": "PIANOTTOLI CALDARELLO" + "codePostal": "73220", + "codeCommune": "73109", + "libelleAcheminement": "EPIERRE", + "nomCommune": "EPIERRE" }, { - "codePostal": "20166", - "codeCommune": "2A228", - "libelleAcheminement": "PIETROSELLA", - "nomCommune": "PIETROSELLA" + "codePostal": "73540", + "codeCommune": "73110", + "libelleAcheminement": "ESSERTS BLAY", + "nomCommune": "ESSERTS BLAY" }, { - "codePostal": "20140", - "codeCommune": "2A276", - "libelleAcheminement": "SERRA DI FERRO", - "nomCommune": "SERRA DI FERRO" + "codePostal": "73590", + "codeCommune": "73114", + "libelleAcheminement": "FLUMET", + "nomCommune": "FLUMET" }, { - "codePostal": "20146", - "codeCommune": "2A288", - "libelleAcheminement": "SOTTA", - "nomCommune": "SOTTA" + "codePostal": "73460", + "codeCommune": "73121", + "libelleAcheminement": "FRONTENEX", + "nomCommune": "FRONTENEX" }, { - "codePostal": "20134", - "codeCommune": "2A322", - "libelleAcheminement": "TASSO", - "nomCommune": "TASSO" + "codePostal": "73470", + "codeCommune": "73122", + "libelleAcheminement": "GERBAIX", + "nomCommune": "GERBAIX" }, { - "codePostal": "20116", - "codeCommune": "2A357", - "libelleAcheminement": "ZERUBIA", - "nomCommune": "ZERUBIA" + "codePostal": "73100", + "codeCommune": "73128", + "libelleAcheminement": "GRESY SUR AIX", + "nomCommune": "GRESY SUR AIX" }, { - "codePostal": "20190", - "codeCommune": "2A360", - "libelleAcheminement": "ZIGLIARA", - "nomCommune": "ZIGLIARA" + "codePostal": "73300", + "codeCommune": "73138", + "libelleAcheminement": "JARRIER", + "nomCommune": "JARRIER" }, { - "codePostal": "20112", - "codeCommune": "2A363", - "libelleAcheminement": "ZOZA", - "nomCommune": "ZOZA" + "codePostal": "73210", + "codeCommune": "73142", + "libelleAcheminement": "LANDRY", + "nomCommune": "LANDRY" }, { - "codePostal": "20212", - "codeCommune": "2B005", - "libelleAcheminement": "ALANDO", - "nomCommune": "ALANDO" + "codePostal": "73340", + "codeCommune": "73146", + "libelleAcheminement": "LESCHERAINES", + "nomCommune": "LESCHERAINES" }, { - "codePostal": "20224", - "codeCommune": "2B007", - "libelleAcheminement": "ALBERTACCE", - "nomCommune": "ALBERTACCE" + "codePostal": "73170", + "codeCommune": "73147", + "libelleAcheminement": "LOISIEUX", + "nomCommune": "LOISIEUX" }, { - "codePostal": "20220", - "codeCommune": "2B010", - "libelleAcheminement": "ALGAJOLA", - "nomCommune": "ALGAJOLA" + "codePostal": "73210", + "codeCommune": "73150", + "libelleAcheminement": "LA PLAGNE TARENTAISE", + "nomCommune": "LA PLAGNE TARENTAISE" }, { - "codePostal": "20272", - "codeCommune": "2B015", - "libelleAcheminement": "AMPRIANI", - "nomCommune": "AMPRIANI" + "codePostal": "73210", + "codeCommune": "73150", + "libelleAcheminement": "LA PLAGNE TARENTAISE", + "nomCommune": "LA PLAGNE TARENTAISE" }, { - "codePostal": "20600", - "codeCommune": "2B033", - "libelleAcheminement": "BASTIA", - "nomCommune": "BASTIA" + "codePostal": "73800", + "codeCommune": "73151", + "libelleAcheminement": "PORTE DE SAVOIE", + "nomCommune": "PORTE DE SAVOIE" }, { - "codePostal": "20620", - "codeCommune": "2B037", - "libelleAcheminement": "BIGUGLIA", - "nomCommune": "BIGUGLIA" + "codePostal": "73390", + "codeCommune": "73166", + "libelleAcheminement": "MONTENDRY", + "nomCommune": "MONTENDRY" }, { - "codePostal": "20222", - "codeCommune": "2B043", - "libelleAcheminement": "BRANDO", - "nomCommune": "BRANDO" + "codePostal": "73220", + "codeCommune": "73175", + "libelleAcheminement": "MONTSAPEY", + "nomCommune": "MONTSAPEY" }, { - "codePostal": "20228", - "codeCommune": "2B046", - "libelleAcheminement": "CAGNANO", - "nomCommune": "CAGNANO" + "codePostal": "73590", + "codeCommune": "73186", + "libelleAcheminement": "NOTRE DAME DE BELLECOMBE", + "nomCommune": "NOTRE DAME DE BELLECOMBE" }, { - "codePostal": "20244", - "codeCommune": "2B051", - "libelleAcheminement": "CAMBIA", - "nomCommune": "CAMBIA" + "codePostal": "73260", + "codeCommune": "73187", + "libelleAcheminement": "LA LECHERE", + "nomCommune": "LA LECHERE" }, { - "codePostal": "20217", - "codeCommune": "2B058", - "libelleAcheminement": "CANARI", - "nomCommune": "CANARI" + "codePostal": "73130", + "codeCommune": "73189", + "libelleAcheminement": "NOTRE DAME DU CRUET", + "nomCommune": "NOTRE DAME DU CRUET" }, { - "codePostal": "20244", - "codeCommune": "2B068", - "libelleAcheminement": "CARTICASI", - "nomCommune": "CARTICASI" + "codePostal": "73210", + "codeCommune": "73197", + "libelleAcheminement": "PEISEY NANCROIX", + "nomCommune": "PEISEY NANCROIX" }, { - "codePostal": "20237", - "codeCommune": "2B069", - "libelleAcheminement": "CASABIANCA", - "nomCommune": "CASABIANCA" + "codePostal": "73330", + "codeCommune": "73204", + "libelleAcheminement": "LE PONT DE BEAUVOISIN", + "nomCommune": "LE PONT DE BEAUVOISIN" }, { - "codePostal": "20224", - "codeCommune": "2B073", - "libelleAcheminement": "CASAMACCIOLI", - "nomCommune": "CASAMACCIOLI" + "codePostal": "73190", + "codeCommune": "73210", + "libelleAcheminement": "PUYGROS", + "nomCommune": "PUYGROS" }, { - "codePostal": "20213", - "codeCommune": "2B077", - "libelleAcheminement": "CASTELLARE DI CASINCA", - "nomCommune": "CASTELLARE DI CASINCA" + "codePostal": "73490", + "codeCommune": "73213", + "libelleAcheminement": "LA RAVOIRE", + "nomCommune": "LA RAVOIRE" }, { - "codePostal": "20218", - "codeCommune": "2B082", - "libelleAcheminement": "CASTINETA", - "nomCommune": "CASTINETA" + "codePostal": "73240", + "codeCommune": "73214", + "libelleAcheminement": "ROCHEFORT", + "nomCommune": "ROCHEFORT" }, { - "codePostal": "20220", - "codeCommune": "2B093", - "libelleAcheminement": "CORBARA", - "nomCommune": "CORBARA" + "codePostal": "73610", + "codeCommune": "73219", + "libelleAcheminement": "ST ALBAN DE MONTBEL", + "nomCommune": "ST ALBAN DE MONTBEL" }, { - "codePostal": "20256", - "codeCommune": "2B093", - "libelleAcheminement": "CORBARA", - "nomCommune": "CORBARA" + "codePostal": "73360", + "codeCommune": "73229", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "20290", - "codeCommune": "2B102", - "libelleAcheminement": "CROCICCHIA", - "nomCommune": "CROCICCHIA" + "codePostal": "73130", + "codeCommune": "73230", + "libelleAcheminement": "ST COLOMBAN DES VILLARDS", + "nomCommune": "ST COLOMBAN DES VILLARDS" }, { - "codePostal": "20244", - "codeCommune": "2B106", - "libelleAcheminement": "ERONE", - "nomCommune": "ERONE" + "codePostal": "73640", + "codeCommune": "73232", + "libelleAcheminement": "STE FOY TARENTAISE", + "nomCommune": "STE FOY TARENTAISE" }, { - "codePostal": "20275", - "codeCommune": "2B107", - "libelleAcheminement": "ERSA", - "nomCommune": "ERSA" + "codePostal": "73240", + "codeCommune": "73236", + "libelleAcheminement": "ST GENIX LES VILLAGES", + "nomCommune": "ST GENIX LES VILLAGES" }, { - "codePostal": "20253", - "codeCommune": "2B109", - "libelleAcheminement": "FARINOLE", - "nomCommune": "FARINOLE" + "codePostal": "73220", + "codeCommune": "73237", + "libelleAcheminement": "ST GEORGES D HURTIERES", + "nomCommune": "ST GEORGES D HURTIERES" }, { - "codePostal": "20218", - "codeCommune": "2B122", - "libelleAcheminement": "GAVIGNANO", - "nomCommune": "GAVIGNANO" + "codePostal": "73460", + "codeCommune": "73241", + "libelleAcheminement": "STE HELENE SUR ISERE", + "nomCommune": "STE HELENE SUR ISERE" }, { - "codePostal": "20227", - "codeCommune": "2B124", - "libelleAcheminement": "GHISONI", - "nomCommune": "GHISONI" + "codePostal": "73250", + "codeCommune": "73247", + "libelleAcheminement": "ST JEAN DE LA PORTE", + "nomCommune": "ST JEAN DE LA PORTE" }, { - "codePostal": "20237", - "codeCommune": "2B125", - "libelleAcheminement": "GIOCATOJO", - "nomCommune": "GIOCATOJO" + "codePostal": "73220", + "codeCommune": "73252", + "libelleAcheminement": "ST LEGER", + "nomCommune": "ST LEGER" }, { - "codePostal": "20243", - "codeCommune": "2B135", - "libelleAcheminement": "ISOLACCIO DI FIUMORBO", - "nomCommune": "ISOLACCIO DI FIUMORBO" + "codePostal": "73600", + "codeCommune": "73253", + "libelleAcheminement": "ST MARCEL", + "nomCommune": "ST MARCEL" }, { - "codePostal": "20218", - "codeCommune": "2B136", - "libelleAcheminement": "LAMA", - "nomCommune": "LAMA" + "codePostal": "73410", + "codeCommune": "73265", + "libelleAcheminement": "ST OURS", + "nomCommune": "ST OURS" }, { - "codePostal": "20230", - "codeCommune": "2B143", - "libelleAcheminement": "LINGUIZZETTA", - "nomCommune": "LINGUIZZETTA" + "codePostal": "73300", + "codeCommune": "73267", + "libelleAcheminement": "ST PANCRACE", + "nomCommune": "ST PANCRACE" }, { - "codePostal": "20290", - "codeCommune": "2B148", - "libelleAcheminement": "LUCCIANA", - "nomCommune": "LUCCIANA" + "codePostal": "73170", + "codeCommune": "73269", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "20290", - "codeCommune": "2B148", - "libelleAcheminement": "LUCCIANA", - "nomCommune": "LUCCIANA" + "codePostal": "73250", + "codeCommune": "73270", + "libelleAcheminement": "ST PIERRE D ALBIGNY", + "nomCommune": "ST PIERRE D ALBIGNY" }, { - "codePostal": "20228", - "codeCommune": "2B152", - "libelleAcheminement": "LURI", - "nomCommune": "LURI" + "codePostal": "73670", + "codeCommune": "73274", + "libelleAcheminement": "ST PIERRE D ENTREMONT", + "nomCommune": "ST PIERRE D ENTREMONT" }, { - "codePostal": "20214", - "codeCommune": "2B167", - "libelleAcheminement": "MONTEGROSSO", - "nomCommune": "MONTEGROSSO" + "codePostal": "73310", + "codeCommune": "73286", + "libelleAcheminement": "SERRIERES EN CHAUTAGNE", + "nomCommune": "SERRIERES EN CHAUTAGNE" }, { - "codePostal": "20214", - "codeCommune": "2B167", - "libelleAcheminement": "MONTEGROSSO", - "nomCommune": "MONTEGROSSO" + "codePostal": "73480", + "codeCommune": "73290", + "libelleAcheminement": "VAL CENIS", + "nomCommune": "VAL CENIS" }, { - "codePostal": "20214", - "codeCommune": "2B167", - "libelleAcheminement": "MONTEGROSSO", - "nomCommune": "MONTEGROSSO" + "codePostal": "73500", + "codeCommune": "73290", + "libelleAcheminement": "VAL CENIS", + "nomCommune": "VAL CENIS" }, { - "codePostal": "20220", - "codeCommune": "2B168", - "libelleAcheminement": "MONTICELLO", - "nomCommune": "MONTICELLO" + "codePostal": "73500", + "codeCommune": "73290", + "libelleAcheminement": "VAL CENIS", + "nomCommune": "VAL CENIS" }, { - "codePostal": "20225", - "codeCommune": "2B173", - "libelleAcheminement": "MURO", - "nomCommune": "MURO" + "codePostal": "73230", + "codeCommune": "73293", + "libelleAcheminement": "THOIRY", + "nomCommune": "THOIRY" }, { - "codePostal": "20225", - "codeCommune": "2B175", - "libelleAcheminement": "NESSA", - "nomCommune": "NESSA" + "codePostal": "73190", + "codeCommune": "73294", + "libelleAcheminement": "LA THUILE", + "nomCommune": "LA THUILE" }, { - "codePostal": "20229", - "codeCommune": "2B176", - "libelleAcheminement": "NOCARIO", - "nomCommune": "NOCARIO" + "codePostal": "73200", + "codeCommune": "73308", + "libelleAcheminement": "VENTHON", + "nomCommune": "VENTHON" }, { - "codePostal": "20242", - "codeCommune": "2B177", - "libelleAcheminement": "NOCETA", - "nomCommune": "NOCETA" + "codePostal": "73110", + "codeCommune": "73311", + "libelleAcheminement": "LE VERNEIL", + "nomCommune": "LE VERNEIL" }, { - "codePostal": "20226", - "codeCommune": "2B182", - "libelleAcheminement": "OCCHIATANA", - "nomCommune": "OCCHIATANA" + "codePostal": "73270", + "codeCommune": "73317", + "libelleAcheminement": "VILLARD SUR DORON", + "nomCommune": "VILLARD SUR DORON" }, { - "codePostal": "20290", - "codeCommune": "2B195", - "libelleAcheminement": "ORTIPORIO", - "nomCommune": "ORTIPORIO" + "codePostal": "73300", + "codeCommune": "73318", + "libelleAcheminement": "VILLAREMBERT", + "nomCommune": "VILLAREMBERT" }, { - "codePostal": "20213", - "codeCommune": "2B207", - "libelleAcheminement": "PENTA DI CASINCA", - "nomCommune": "PENTA DI CASINCA" + "codePostal": "73420", + "codeCommune": "73329", + "libelleAcheminement": "VOGLANS", + "nomCommune": "VOGLANS" }, { - "codePostal": "20215", - "codeCommune": "2B214", - "libelleAcheminement": "PIANO", - "nomCommune": "PIANO" + "codePostal": "74360", + "codeCommune": "74001", + "libelleAcheminement": "ABONDANCE", + "nomCommune": "ABONDANCE" }, { - "codePostal": "20251", - "codeCommune": "2B218", - "libelleAcheminement": "PIEDICORTE DI GAGGIO", - "nomCommune": "PIEDICORTE DI GAGGIO" + "codePostal": "74960", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "20229", - "codeCommune": "2B219", - "libelleAcheminement": "PIEDICROCE", - "nomCommune": "PIEDICROCE" + "codePostal": "74960", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "20242", - "codeCommune": "2B229", - "libelleAcheminement": "PIETROSO", - "nomCommune": "PIETROSO" + "codePostal": "74200", + "codeCommune": "74020", + "libelleAcheminement": "ARMOY", + "nomCommune": "ARMOY" }, { - "codePostal": "20220", - "codeCommune": "2B231", - "libelleAcheminement": "PIGNA", - "nomCommune": "PIGNA" + "codePostal": "74380", + "codeCommune": "74021", + "libelleAcheminement": "ARTHAZ PONT NOTRE DAME", + "nomCommune": "ARTHAZ PONT NOTRE DAME" }, { - "codePostal": "20228", - "codeCommune": "2B233", - "libelleAcheminement": "PINO", - "nomCommune": "PINO" + "codePostal": "74330", + "codeCommune": "74026", + "libelleAcheminement": "LA BALME DE SILLINGY", + "nomCommune": "LA BALME DE SILLINGY" }, { - "codePostal": "20240", - "codeCommune": "2B236", - "libelleAcheminement": "POGGIO DI NAZZA", - "nomCommune": "POGGIO DI NAZZA" + "codePostal": "74470", + "codeCommune": "74032", + "libelleAcheminement": "BELLEVAUX", + "nomCommune": "BELLEVAUX" }, { - "codePostal": "20232", - "codeCommune": "2B239", - "libelleAcheminement": "POGGIO D OLETTA", - "nomCommune": "POGGIO D OLETTA" + "codePostal": "74500", + "codeCommune": "74033", + "libelleAcheminement": "BERNEX", + "nomCommune": "BERNEX" }, { - "codePostal": "20215", - "codeCommune": "2B245", - "libelleAcheminement": "PORRI", - "nomCommune": "PORRI" + "codePostal": "74430", + "codeCommune": "74034", + "libelleAcheminement": "LE BIOT", + "nomCommune": "LE BIOT" }, { - "codePostal": "20243", - "codeCommune": "2B251", - "libelleAcheminement": "PRUNELLI DI FIUMORBO", - "nomCommune": "PRUNELLI DI FIUMORBO" + "codePostal": "74290", + "codeCommune": "74036", + "libelleAcheminement": "BLUFFY", + "nomCommune": "BLUFFY" }, { - "codePostal": "20226", - "codeCommune": "2B290", - "libelleAcheminement": "SPELONCATO", - "nomCommune": "SPELONCATO" + "codePostal": "74420", + "codeCommune": "74037", + "libelleAcheminement": "BOEGE", + "nomCommune": "BOEGE" }, { - "codePostal": "20221", - "codeCommune": "2B293", - "libelleAcheminement": "SANT ANDREA DI COTONE", - "nomCommune": "SANT ANDREA DI COTONE" + "codePostal": "74250", + "codeCommune": "74038", + "libelleAcheminement": "BOGEVE", + "nomCommune": "BOGEVE" }, { - "codePostal": "20230", - "codeCommune": "2B302", - "libelleAcheminement": "SAN GIOVANNI DI MORIANI", - "nomCommune": "SAN GIOVANNI DI MORIANI" + "codePostal": "74130", + "codeCommune": "74049", + "libelleAcheminement": "BRIZON", + "nomCommune": "BRIZON" }, { - "codePostal": "20230", - "codeCommune": "2B303", - "libelleAcheminement": "SAN GIULIANO", - "nomCommune": "SAN GIULIANO" + "codePostal": "74350", + "codeCommune": "74052", + "libelleAcheminement": "CERNEX", + "nomCommune": "CERNEX" }, { - "codePostal": "20200", - "codeCommune": "2B305", - "libelleAcheminement": "SAN MARTINO DI LOTA", - "nomCommune": "SAN MARTINO DI LOTA" + "codePostal": "74400", + "codeCommune": "74056", + "libelleAcheminement": "CHAMONIX MONT BLANC", + "nomCommune": "CHAMONIX MONT BLANC" }, { - "codePostal": "20230", - "codeCommune": "2B313", - "libelleAcheminement": "SAN NICOLAO", - "nomCommune": "SAN NICOLAO" + "codePostal": "74400", + "codeCommune": "74056", + "libelleAcheminement": "CHAMONIX MONT BLANC", + "nomCommune": "CHAMONIX MONT BLANC" }, { - "codePostal": "20230", - "codeCommune": "2B317", - "libelleAcheminement": "SANTA REPARATA DI MORIANI", - "nomCommune": "SANTA REPARATA DI MORIANI" + "codePostal": "74400", + "codeCommune": "74056", + "libelleAcheminement": "CHAMONIX MONT BLANC", + "nomCommune": "CHAMONIX MONT BLANC" }, { - "codePostal": "20270", - "codeCommune": "2B320", - "libelleAcheminement": "TALLONE", - "nomCommune": "TALLONE" + "codePostal": "74370", + "codeCommune": "74062", + "libelleAcheminement": "CHARVONNEX", + "nomCommune": "CHARVONNEX" }, { - "codePostal": "20234", - "codeCommune": "2B334", - "libelleAcheminement": "VALLE D ALESANI", - "nomCommune": "VALLE D ALESANI" + "codePostal": "74300", + "codeCommune": "74064", + "libelleAcheminement": "CHATILLON SUR CLUSES", + "nomCommune": "CHATILLON SUR CLUSES" }, { - "codePostal": "20259", - "codeCommune": "2B339", - "libelleAcheminement": "VALLICA", - "nomCommune": "VALLICA" + "codePostal": "74650", + "codeCommune": "74067", + "libelleAcheminement": "CHAVANOD", + "nomCommune": "CHAVANOD" }, { - "codePostal": "20229", - "codeCommune": "2B344", - "libelleAcheminement": "VERDESE", - "nomCommune": "VERDESE" + "codePostal": "74520", + "codeCommune": "74069", + "libelleAcheminement": "CHENEX", + "nomCommune": "CHENEX" }, { - "codePostal": "20215", - "codeCommune": "2B346", - "libelleAcheminement": "VESCOVATO", - "nomCommune": "VESCOVATO" + "codePostal": "74270", + "codeCommune": "74075", + "libelleAcheminement": "CHILLY", + "nomCommune": "CHILLY" }, { - "codePostal": "20290", - "codeCommune": "2B350", - "libelleAcheminement": "VIGNALE", - "nomCommune": "VIGNALE" + "codePostal": "74330", + "codeCommune": "74076", + "libelleAcheminement": "CHOISY", + "nomCommune": "CHOISY" }, { - "codePostal": "20290", - "codeCommune": "2B355", - "libelleAcheminement": "VOLPAJOLA", - "nomCommune": "VOLPAJOLA" + "codePostal": "74270", + "codeCommune": "74077", + "libelleAcheminement": "CLARAFOND ARCINE", + "nomCommune": "CLARAFOND ARCINE" }, { - "codePostal": "30700", - "codeCommune": "30001", - "libelleAcheminement": "AIGALIERS", - "nomCommune": "AIGALIERS" + "codePostal": "74270", + "codeCommune": "74077", + "libelleAcheminement": "CLARAFOND ARCINE", + "nomCommune": "CLARAFOND ARCINE" }, { - "codePostal": "30670", - "codeCommune": "30004", - "libelleAcheminement": "AIGUES VIVES", - "nomCommune": "AIGUES VIVES" + "codePostal": "74300", + "codeCommune": "74081", + "libelleAcheminement": "CLUSES", + "nomCommune": "CLUSES" }, { - "codePostal": "30470", - "codeCommune": "30006", - "libelleAcheminement": "AIMARGUES", - "nomCommune": "AIMARGUES" + "codePostal": "74700", + "codeCommune": "74089", + "libelleAcheminement": "CORDON", + "nomCommune": "CORDON" }, { - "codePostal": "30770", - "codeCommune": "30009", - "libelleAcheminement": "ALZON", - "nomCommune": "ALZON" + "codePostal": "74150", + "codeCommune": "74095", + "libelleAcheminement": "CREMPIGNY BONNEGUETE", + "nomCommune": "CREMPIGNY BONNEGUETE" }, { - "codePostal": "30390", - "codeCommune": "30012", - "libelleAcheminement": "ARAMON", - "nomCommune": "ARAMON" + "codePostal": "74540", + "codeCommune": "74097", + "libelleAcheminement": "CUSY", + "nomCommune": "CUSY" }, { - "codePostal": "30250", - "codeCommune": "30018", - "libelleAcheminement": "ASPERES", - "nomCommune": "ASPERES" + "codePostal": "74120", + "codeCommune": "74099", + "libelleAcheminement": "DEMI QUARTIER", + "nomCommune": "DEMI QUARTIER" }, { - "codePostal": "30430", - "codeCommune": "30029", - "libelleAcheminement": "BARJAC", - "nomCommune": "BARJAC" + "codePostal": "74140", + "codeCommune": "74121", + "libelleAcheminement": "EXCENEVEX", + "nomCommune": "EXCENEVEX" }, { - "codePostal": "30300", - "codeCommune": "30032", - "libelleAcheminement": "BEAUCAIRE", - "nomCommune": "BEAUCAIRE" + "codePostal": "74160", + "codeCommune": "74124", + "libelleAcheminement": "FEIGERES", + "nomCommune": "FEIGERES" }, { - "codePostal": "30640", - "codeCommune": "30033", - "libelleAcheminement": "BEAUVOISIN", - "nomCommune": "BEAUVOISIN" + "codePostal": "74500", + "codeCommune": "74127", + "libelleAcheminement": "FETERNES", + "nomCommune": "FETERNES" }, { - "codePostal": "30640", - "codeCommune": "30033", - "libelleAcheminement": "BEAUVOISIN", - "nomCommune": "BEAUVOISIN" + "codePostal": "74210", + "codeCommune": "74135", + "libelleAcheminement": "GIEZ", + "nomCommune": "GIEZ" }, { - "codePostal": "30114", - "codeCommune": "30043", - "libelleAcheminement": "BOISSIERES", - "nomCommune": "BOISSIERES" + "codePostal": "74500", + "codeCommune": "74146", + "libelleAcheminement": "LARRINGES", + "nomCommune": "LARRINGES" }, { - "codePostal": "30160", - "codeCommune": "30045", - "libelleAcheminement": "BORDEZAC", - "nomCommune": "BORDEZAC" + "codePostal": "74200", + "codeCommune": "74163", + "libelleAcheminement": "MARGENCEL", + "nomCommune": "MARGENCEL" }, { - "codePostal": "30230", - "codeCommune": "30047", - "libelleAcheminement": "BOUILLARGUES", - "nomCommune": "BOUILLARGUES" + "codePostal": "74200", + "codeCommune": "74166", + "libelleAcheminement": "MARIN", + "nomCommune": "MARIN" }, { - "codePostal": "30190", - "codeCommune": "30049", - "libelleAcheminement": "BOURDIC", - "nomCommune": "BOURDIC" + "codePostal": "74500", + "codeCommune": "74172", + "libelleAcheminement": "MAXILLY SUR LEMAN", + "nomCommune": "MAXILLY SUR LEMAN" }, { - "codePostal": "30120", - "codeCommune": "30052", - "libelleAcheminement": "BREAU MARS", - "nomCommune": "BREAU MARS" + "codePostal": "74120", + "codeCommune": "74173", + "libelleAcheminement": "MEGEVE", + "nomCommune": "MEGEVE" }, { - "codePostal": "30190", - "codeCommune": "30053", - "libelleAcheminement": "BRIGNON", - "nomCommune": "BRIGNON" + "codePostal": "74330", + "codeCommune": "74179", + "libelleAcheminement": "MESIGNY", + "nomCommune": "MESIGNY" }, { - "codePostal": "30580", - "codeCommune": "30056", - "libelleAcheminement": "LA BRUGUIERE", - "nomCommune": "LA BRUGUIERE" + "codePostal": "74600", + "codeCommune": "74186", + "libelleAcheminement": "MONTAGNY LES LANCHES", + "nomCommune": "MONTAGNY LES LANCHES" }, { - "codePostal": "30170", - "codeCommune": "30058", - "libelleAcheminement": "LA CADIERE ET CAMBO", - "nomCommune": "LA CADIERE ET CAMBO" + "codePostal": "74490", + "codeCommune": "74205", + "libelleAcheminement": "ONNION", + "nomCommune": "ONNION" }, { - "codePostal": "30740", - "codeCommune": "30059", - "libelleAcheminement": "LE CAILAR", - "nomCommune": "LE CAILAR" + "codePostal": "74190", + "codeCommune": "74208", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "30190", - "codeCommune": "30061", - "libelleAcheminement": "LA CALMETTE", - "nomCommune": "LA CALMETTE" + "codePostal": "74250", + "codeCommune": "74209", + "libelleAcheminement": "PEILLONNEX", + "nomCommune": "PEILLONNEX" }, { - "codePostal": "30130", - "codeCommune": "30070", - "libelleAcheminement": "CARSAN", - "nomCommune": "CARSAN" + "codePostal": "74130", + "codeCommune": "74212", + "libelleAcheminement": "GLIERES VAL DE BORNE", + "nomCommune": "GLIERES VAL DE BORNE" }, { - "codePostal": "30210", - "codeCommune": "30073", - "libelleAcheminement": "CASTILLON DU GARD", - "nomCommune": "CASTILLON DU GARD" + "codePostal": "74330", + "codeCommune": "74213", + "libelleAcheminement": "POISY", + "nomCommune": "POISY" }, { - "codePostal": "30480", - "codeCommune": "30077", - "libelleAcheminement": "CENDRAS", - "nomCommune": "CENDRAS" + "codePostal": "74500", + "codeCommune": "74218", + "libelleAcheminement": "PUBLIER", + "nomCommune": "PUBLIER" }, { - "codePostal": "30200", - "codeCommune": "30081", - "libelleAcheminement": "CHUSCLAN", - "nomCommune": "CHUSCLAN" + "codePostal": "74930", + "codeCommune": "74220", + "libelleAcheminement": "REIGNIER ESERY", + "nomCommune": "REIGNIER ESERY" }, { - "codePostal": "30200", - "codeCommune": "30081", - "libelleAcheminement": "CHUSCLAN", - "nomCommune": "CHUSCLAN" + "codePostal": "74800", + "codeCommune": "74224", + "libelleAcheminement": "LA ROCHE SUR FORON", + "nomCommune": "LA ROCHE SUR FORON" }, { - "codePostal": "30250", - "codeCommune": "30088", - "libelleAcheminement": "COMBAS", - "nomCommune": "COMBAS" + "codePostal": "74150", + "codeCommune": "74225", + "libelleAcheminement": "RUMILLY", + "nomCommune": "RUMILLY" }, { - "codePostal": "30450", - "codeCommune": "30090", - "libelleAcheminement": "CONCOULES", - "nomCommune": "CONCOULES" + "codePostal": "74140", + "codeCommune": "74229", + "libelleAcheminement": "ST CERGUES", + "nomCommune": "ST CERGUES" }, { - "codePostal": "30111", - "codeCommune": "30091", - "libelleAcheminement": "CONGENIES", - "nomCommune": "CONGENIES" + "codePostal": "74910", + "codeCommune": "74235", + "libelleAcheminement": "ST GERMAIN SUR RHONE", + "nomCommune": "ST GERMAIN SUR RHONE" }, { - "codePostal": "30330", - "codeCommune": "30092", - "libelleAcheminement": "CONNAUX", - "nomCommune": "CONNAUX" + "codePostal": "74170", + "codeCommune": "74236", + "libelleAcheminement": "ST GERVAIS LES BAINS", + "nomCommune": "ST GERVAIS LES BAINS" }, { - "codePostal": "30170", - "codeCommune": "30093", - "libelleAcheminement": "CONQUEYRAC", - "nomCommune": "CONQUEYRAC" + "codePostal": "74500", + "codeCommune": "74249", + "libelleAcheminement": "ST PAUL EN CHABLAIS", + "nomCommune": "ST PAUL EN CHABLAIS" }, { - "codePostal": "30260", - "codeCommune": "30095", - "libelleAcheminement": "CORCONNE", - "nomCommune": "CORCONNE" + "codePostal": "74300", + "codeCommune": "74252", + "libelleAcheminement": "ST SIGISMOND", + "nomCommune": "ST SIGISMOND" }, { - "codePostal": "30500", - "codeCommune": "30097", - "libelleAcheminement": "COURRY", - "nomCommune": "COURRY" + "codePostal": "74520", + "codeCommune": "74260", + "libelleAcheminement": "SAVIGNY", + "nomCommune": "SAVIGNY" }, { - "codePostal": "30360", - "codeCommune": "30109", - "libelleAcheminement": "EUZET", - "nomCommune": "EUZET" + "codePostal": "74950", + "codeCommune": "74264", + "libelleAcheminement": "SCIONZIER", + "nomCommune": "SCIONZIER" }, { - "codePostal": "30700", - "codeCommune": "30111", - "libelleAcheminement": "FOISSAC", - "nomCommune": "FOISSAC" + "codePostal": "74440", + "codeCommune": "74276", + "libelleAcheminement": "TANINGES", + "nomCommune": "TANINGES" }, { - "codePostal": "30330", - "codeCommune": "30127", - "libelleAcheminement": "GAUJAC", - "nomCommune": "GAUJAC" + "codePostal": "74500", + "codeCommune": "74279", + "libelleAcheminement": "THOLLON LES MEMISES", + "nomCommune": "THOLLON LES MEMISES" }, { - "codePostal": "30140", - "codeCommune": "30129", - "libelleAcheminement": "GENERARGUES", - "nomCommune": "GENERARGUES" + "codePostal": "74230", + "codeCommune": "74280", + "libelleAcheminement": "THONES", + "nomCommune": "THONES" }, { - "codePostal": "30110", - "codeCommune": "30132", - "libelleAcheminement": "LA GRAND COMBE", - "nomCommune": "LA GRAND COMBE" + "codePostal": "74200", + "codeCommune": "74281", + "libelleAcheminement": "THONON LES BAINS", + "nomCommune": "THONON LES BAINS" }, { - "codePostal": "30750", - "codeCommune": "30139", - "libelleAcheminement": "LANUEJOLS", - "nomCommune": "LANUEJOLS" + "codePostal": "74570", + "codeCommune": "74282", + "libelleAcheminement": "FILLIERE", + "nomCommune": "FILLIERE" }, { - "codePostal": "30110", - "codeCommune": "30142", - "libelleAcheminement": "LAVAL PRADEL", - "nomCommune": "LAVAL PRADEL" + "codePostal": "74150", + "codeCommune": "74292", + "libelleAcheminement": "VAULX", + "nomCommune": "VAULX" }, { - "codePostal": "30210", - "codeCommune": "30145", - "libelleAcheminement": "LEDENON", - "nomCommune": "LEDENON" + "codePostal": "74140", + "codeCommune": "74293", + "libelleAcheminement": "VEIGY FONCENEX", + "nomCommune": "VEIGY FONCENEX" }, { - "codePostal": "30580", - "codeCommune": "30151", - "libelleAcheminement": "LUSSAN", - "nomCommune": "LUSSAN" + "codePostal": "74150", + "codeCommune": "74297", + "libelleAcheminement": "VERSONNEX", + "nomCommune": "VERSONNEX" }, { - "codePostal": "30960", - "codeCommune": "30159", - "libelleAcheminement": "LE MARTINET", - "nomCommune": "LE MARTINET" + "codePostal": "74370", + "codeCommune": "74303", + "libelleAcheminement": "VILLAZ", + "nomCommune": "VILLAZ" }, { - "codePostal": "30350", - "codeCommune": "30160", - "libelleAcheminement": "MARUEJOLS LES GARDON", - "nomCommune": "MARUEJOLS LES GARDON" + "codePostal": "74520", + "codeCommune": "74314", + "libelleAcheminement": "VULBENS", + "nomCommune": "VULBENS" }, { - "codePostal": "30350", - "codeCommune": "30163", - "libelleAcheminement": "MAURESSARGUES", - "nomCommune": "MAURESSARGUES" + "codePostal": "75002", + "codeCommune": "75102", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 02" }, { - "codePostal": "30340", - "codeCommune": "30165", - "libelleAcheminement": "MEJANNES LES ALES", - "nomCommune": "MEJANNES LES ALES" + "codePostal": "75015", + "codeCommune": "75115", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 15" }, { - "codePostal": "30120", - "codeCommune": "30170", - "libelleAcheminement": "MOLIERES CAVAILLAC", - "nomCommune": "MOLIERES CAVAILLAC" + "codePostal": "75116", + "codeCommune": "75116", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 16" }, { - "codePostal": "30121", - "codeCommune": "30185", - "libelleAcheminement": "MUS", - "nomCommune": "MUS" + "codePostal": "76550", + "codeCommune": "76004", + "libelleAcheminement": "AMBRUMESNIL", + "nomCommune": "AMBRUMESNIL" }, { - "codePostal": "30200", - "codeCommune": "30191", - "libelleAcheminement": "ORSAN", - "nomCommune": "ORSAN" + "codePostal": "76780", + "codeCommune": "76025", + "libelleAcheminement": "ARGUEIL", + "nomCommune": "ARGUEIL" }, { - "codePostal": "30730", - "codeCommune": "30193", - "libelleAcheminement": "PARIGNARGUES", - "nomCommune": "PARIGNARGUES" + "codePostal": "76110", + "codeCommune": "76033", + "libelleAcheminement": "AUBERVILLE LA RENAULT", + "nomCommune": "AUBERVILLE LA RENAULT" }, { - "codePostal": "30120", - "codeCommune": "30199", - "libelleAcheminement": "POMMIERS", - "nomCommune": "POMMIERS" + "codePostal": "76390", + "codeCommune": "76035", + "libelleAcheminement": "AUMALE", + "nomCommune": "AUMALE" }, { - "codePostal": "30210", - "codeCommune": "30212", - "libelleAcheminement": "REMOULINS", - "nomCommune": "REMOULINS" + "codePostal": "76690", + "codeCommune": "76038", + "libelleAcheminement": "AUTHIEUX RATIEVILLE", + "nomCommune": "AUTHIEUX RATIEVILLE" }, { - "codePostal": "30160", - "codeCommune": "30216", - "libelleAcheminement": "ROBIAC ROCHESSADOULE", - "nomCommune": "ROBIAC ROCHESSADOULE" + "codePostal": "76740", + "codeCommune": "76040", + "libelleAcheminement": "AUTIGNY", + "nomCommune": "AUTIGNY" }, { - "codePostal": "30430", - "codeCommune": "30218", - "libelleAcheminement": "ROCHEGUDE", - "nomCommune": "ROCHEGUDE" + "codePostal": "76190", + "codeCommune": "76041", + "libelleAcheminement": "LES HAUTS DE CAUX", + "nomCommune": "LES HAUTS DE CAUX" }, { - "codePostal": "30440", - "codeCommune": "30220", - "libelleAcheminement": "ROQUEDUR", - "nomCommune": "ROQUEDUR" + "codePostal": "76190", + "codeCommune": "76043", + "libelleAcheminement": "AUZEBOSC", + "nomCommune": "AUZEBOSC" }, { - "codePostal": "30150", - "codeCommune": "30221", - "libelleAcheminement": "ROQUEMAURE", - "nomCommune": "ROQUEMAURE" + "codePostal": "76760", + "codeCommune": "76045", + "libelleAcheminement": "AUZOUVILLE L ESNEVAL", + "nomCommune": "AUZOUVILLE L ESNEVAL" }, { - "codePostal": "30340", - "codeCommune": "30223", - "libelleAcheminement": "ROUSSON", - "nomCommune": "ROUSSON" + "codePostal": "76660", + "codeCommune": "76052", + "libelleAcheminement": "BAILLEUL NEUVILLE", + "nomCommune": "BAILLEUL NEUVILLE" }, { - "codePostal": "30500", - "codeCommune": "30237", - "libelleAcheminement": "ST BRES", - "nomCommune": "ST BRES" + "codePostal": "76660", + "codeCommune": "76053", + "libelleAcheminement": "BAILLOLET", + "nomCommune": "BAILLOLET" }, { - "codePostal": "30440", - "codeCommune": "30238", - "libelleAcheminement": "ST BRESSON", - "nomCommune": "ST BRESSON" + "codePostal": "76480", + "codeCommune": "76056", + "libelleAcheminement": "BARDOUVILLE", + "nomCommune": "BARDOUVILLE" }, { - "codePostal": "30760", - "codeCommune": "30242", - "libelleAcheminement": "ST CHRISTOL DE RODIERES", - "nomCommune": "ST CHRISTOL DE RODIERES" + "codePostal": "76850", + "codeCommune": "76062", + "libelleAcheminement": "BEAUMONT LE HARENG", + "nomCommune": "BEAUMONT LE HARENG" }, { - "codePostal": "30870", - "codeCommune": "30245", - "libelleAcheminement": "ST COME ET MARUEJOLS", - "nomCommune": "ST COME ET MARUEJOLS" + "codePostal": "76240", + "codeCommune": "76069", + "libelleAcheminement": "BELBEUF", + "nomCommune": "BELBEUF" }, { - "codePostal": "30500", - "codeCommune": "30247", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "76210", + "codeCommune": "76090", + "libelleAcheminement": "BEUZEVILLE LA GRENIER", + "nomCommune": "BEUZEVILLE LA GRENIER" }, { - "codePostal": "30980", - "codeCommune": "30249", - "libelleAcheminement": "ST DIONISY", - "nomCommune": "ST DIONISY" + "codePostal": "76190", + "codeCommune": "76110", + "libelleAcheminement": "BOIS HIMONT", + "nomCommune": "BOIS HIMONT" }, { - "codePostal": "30800", - "codeCommune": "30258", - "libelleAcheminement": "ST GILLES", - "nomCommune": "ST GILLES" + "codePostal": "76590", + "codeCommune": "76112", + "libelleAcheminement": "LE BOIS ROBERT", + "nomCommune": "LE BOIS ROBERT" }, { - "codePostal": "30610", - "codeCommune": "30265", - "libelleAcheminement": "ST JEAN DE CRIEULON", - "nomCommune": "ST JEAN DE CRIEULON" + "codePostal": "76210", + "codeCommune": "76114", + "libelleAcheminement": "BOLBEC", + "nomCommune": "BOLBEC" }, { - "codePostal": "30960", - "codeCommune": "30268", - "libelleAcheminement": "ST JEAN DE VALERISCLE", - "nomCommune": "ST JEAN DE VALERISCLE" + "codePostal": "76790", + "codeCommune": "76117", + "libelleAcheminement": "BORDEAUX ST CLAIR", + "nomCommune": "BORDEAUX ST CLAIR" }, { - "codePostal": "30140", - "codeCommune": "30270", - "libelleAcheminement": "ST JEAN DU PIN", - "nomCommune": "ST JEAN DU PIN" + "codePostal": "76680", + "codeCommune": "76119", + "libelleAcheminement": "BOSC BERENGER", + "nomCommune": "BOSC BERENGER" }, { - "codePostal": "30220", - "codeCommune": "30276", - "libelleAcheminement": "ST LAURENT D AIGOUZE", - "nomCommune": "ST LAURENT D AIGOUZE" + "codePostal": "76710", + "codeCommune": "76123", + "libelleAcheminement": "BOSC GUERARD ST ADRIEN", + "nomCommune": "BOSC GUERARD ST ADRIEN" }, { - "codePostal": "30330", - "codeCommune": "30279", - "libelleAcheminement": "ST LAURENT LA VERNEDE", - "nomCommune": "ST LAURENT LA VERNEDE" + "codePostal": "76360", + "codeCommune": "76135", + "libelleAcheminement": "BOUVILLE", + "nomCommune": "BOUVILLE" }, { - "codePostal": "30730", - "codeCommune": "30281", - "libelleAcheminement": "ST MAMERT DU GARD", - "nomCommune": "ST MAMERT DU GARD" + "codePostal": "76730", + "codeCommune": "76136", + "libelleAcheminement": "BRACHY", + "nomCommune": "BRACHY" }, { - "codePostal": "30520", - "codeCommune": "30284", - "libelleAcheminement": "ST MARTIN DE VALGALGUES", - "nomCommune": "ST MARTIN DE VALGALGUES" + "codePostal": "76110", + "codeCommune": "76141", + "libelleAcheminement": "BREAUTE", + "nomCommune": "BREAUTE" }, { - "codePostal": "30610", - "codeCommune": "30289", - "libelleAcheminement": "ST NAZAIRE DES GARDIES", - "nomCommune": "ST NAZAIRE DES GARDIES" + "codePostal": "76750", + "codeCommune": "76146", + "libelleAcheminement": "BUCHY", + "nomCommune": "BUCHY" }, { - "codePostal": "30430", - "codeCommune": "30293", - "libelleAcheminement": "ST PRIVAT DE CHAMPCLOS", - "nomCommune": "ST PRIVAT DE CHAMPCLOS" + "codePostal": "76660", + "codeCommune": "76148", + "libelleAcheminement": "BURES EN BRAY", + "nomCommune": "BURES EN BRAY" }, { - "codePostal": "30440", - "codeCommune": "30296", - "libelleAcheminement": "ST ROMAN DE CODIERES", - "nomCommune": "ST ROMAN DE CODIERES" + "codePostal": "76890", + "codeCommune": "76149", + "libelleAcheminement": "BUTOT", + "nomCommune": "BUTOT" }, { - "codePostal": "30250", - "codeCommune": "30306", - "libelleAcheminement": "SALINELLES", - "nomCommune": "SALINELLES" + "codePostal": "76380", + "codeCommune": "76157", + "libelleAcheminement": "CANTELEU", + "nomCommune": "CANTELEU" }, { - "codePostal": "30125", - "codeCommune": "30310", - "libelleAcheminement": "SAUMANE", - "nomCommune": "SAUMANE" + "codePostal": "76490", + "codeCommune": "76164", + "libelleAcheminement": "RIVES EN SEINE", + "nomCommune": "RIVES EN SEINE" }, { - "codePostal": "30440", - "codeCommune": "30325", - "libelleAcheminement": "SUMENE", - "nomCommune": "SUMENE" + "codePostal": "76450", + "codeCommune": "76180", + "libelleAcheminement": "CLEUVILLE", + "nomCommune": "CLEUVILLE" }, { - "codePostal": "30390", - "codeCommune": "30328", - "libelleAcheminement": "THEZIERS", - "nomCommune": "THEZIERS" + "codePostal": "76450", + "codeCommune": "76189", + "libelleAcheminement": "CRASVILLE LA MALLET", + "nomCommune": "CRASVILLE LA MALLET" }, { - "codePostal": "30330", - "codeCommune": "30331", - "libelleAcheminement": "TRESQUES", - "nomCommune": "TRESQUES" + "codePostal": "76590", + "codeCommune": "76197", + "libelleAcheminement": "CRIQUETOT SUR LONGUEVILLE", + "nomCommune": "CRIQUETOT SUR LONGUEVILLE" }, { - "codePostal": "30600", - "codeCommune": "30341", - "libelleAcheminement": "VAUVERT", - "nomCommune": "VAUVERT" + "codePostal": "76680", + "codeCommune": "76200", + "libelleAcheminement": "CRITOT", + "nomCommune": "CRITOT" }, { - "codePostal": "30530", - "codeCommune": "30345", - "libelleAcheminement": "LA VERNAREDE", - "nomCommune": "LA VERNAREDE" + "codePostal": "76590", + "codeCommune": "76205", + "libelleAcheminement": "CROSVILLE SUR SCIE", + "nomCommune": "CROSVILLE SUR SCIE" }, { - "codePostal": "30600", - "codeCommune": "30347", - "libelleAcheminement": "VESTRIC ET CANDIAC", - "nomCommune": "VESTRIC ET CANDIAC" + "codePostal": "76200", + "codeCommune": "76217", + "libelleAcheminement": "DIEPPE", + "nomCommune": "DIEPPE" }, { - "codePostal": "30120", - "codeCommune": "30350", - "libelleAcheminement": "LE VIGAN", - "nomCommune": "LE VIGAN" + "codePostal": "76190", + "codeCommune": "76225", + "libelleAcheminement": "ECRETTEVILLE LES BAONS", + "nomCommune": "ECRETTEVILLE LES BAONS" }, { - "codePostal": "30330", - "codeCommune": "30355", - "libelleAcheminement": "ST PAUL LES FONTS", - "nomCommune": "ST PAUL LES FONTS" + "codePostal": "76390", + "codeCommune": "76233", + "libelleAcheminement": "ELLECOURT", + "nomCommune": "ELLECOURT" }, { - "codePostal": "31230", - "codeCommune": "31001", - "libelleAcheminement": "AGASSAC", - "nomCommune": "AGASSAC" + "codePostal": "76740", + "codeCommune": "76241", + "libelleAcheminement": "ERMENOUVILLE", + "nomCommune": "ERMENOUVILLE" }, { - "codePostal": "31280", - "codeCommune": "31003", - "libelleAcheminement": "AIGREFEUILLE", - "nomCommune": "AIGREFEUILLE" + "codePostal": "76850", + "codeCommune": "76249", + "libelleAcheminement": "ETAIMPUIS", + "nomCommune": "ETAIMPUIS" }, { - "codePostal": "31420", - "codeCommune": "31005", - "libelleAcheminement": "ALAN", - "nomCommune": "ALAN" + "codePostal": "76560", + "codeCommune": "76251", + "libelleAcheminement": "ETALLEVILLE", + "nomCommune": "ETALLEVILLE" }, { - "codePostal": "31230", - "codeCommune": "31007", - "libelleAcheminement": "AMBAX", - "nomCommune": "AMBAX" + "codePostal": "76790", + "codeCommune": "76254", + "libelleAcheminement": "ETRETAT", + "nomCommune": "ETRETAT" }, { - "codePostal": "31440", - "codeCommune": "31017", - "libelleAcheminement": "ARLOS", - "nomCommune": "ARLOS" + "codePostal": "76640", + "codeCommune": "76258", + "libelleAcheminement": "TERRES DE CAUX", + "nomCommune": "TERRES DE CAUX" }, { - "codePostal": "31140", - "codeCommune": "31022", - "libelleAcheminement": "AUCAMVILLE", - "nomCommune": "AUCAMVILLE" + "codePostal": "76410", + "codeCommune": "76282", + "libelleAcheminement": "FRENEUSE", + "nomCommune": "FRENEUSE" }, { - "codePostal": "31320", - "codeCommune": "31025", - "libelleAcheminement": "AUREVILLE", - "nomCommune": "AUREVILLE" + "codePostal": "76850", + "codeCommune": "76284", + "libelleAcheminement": "FRESNAY LE LONG", + "nomCommune": "FRESNAY LE LONG" }, { - "codePostal": "31190", - "codeCommune": "31027", - "libelleAcheminement": "AURIBAIL", - "nomCommune": "AURIBAIL" + "codePostal": "76700", + "codeCommune": "76296", + "libelleAcheminement": "GAINNEVILLE", + "nomCommune": "GAINNEVILLE" }, { - "codePostal": "31420", - "codeCommune": "31028", - "libelleAcheminement": "AURIGNAC", - "nomCommune": "AURIGNAC" + "codePostal": "76220", + "codeCommune": "76297", + "libelleAcheminement": "GANCOURT ST ETIENNE", + "nomCommune": "GANCOURT ST ETIENNE" }, { - "codePostal": "31210", - "codeCommune": "31031", - "libelleAcheminement": "AUSSON", - "nomCommune": "AUSSON" + "codePostal": "76400", + "codeCommune": "76298", + "libelleAcheminement": "GANZEVILLE", + "nomCommune": "GANZEVILLE" }, { - "codePostal": "31290", - "codeCommune": "31037", - "libelleAcheminement": "AVIGNONET LAURAGAIS", - "nomCommune": "AVIGNONET LAURAGAIS" + "codePostal": "76560", + "codeCommune": "76309", + "libelleAcheminement": "GONZEVILLE", + "nomCommune": "GONZEVILLE" }, { - "codePostal": "31510", - "codeCommune": "31045", - "libelleAcheminement": "BARBAZAN", - "nomCommune": "BARBAZAN" + "codePostal": "76430", + "codeCommune": "76314", + "libelleAcheminement": "GRAIMBOUVILLE", + "nomCommune": "GRAIMBOUVILLE" }, { - "codePostal": "31450", - "codeCommune": "31058", - "libelleAcheminement": "BELBEZE DE LAURAGAIS", - "nomCommune": "BELBEZE DE LAURAGAIS" + "codePostal": "76120", + "codeCommune": "76322", + "libelleAcheminement": "LE GRAND QUEVILLY", + "nomCommune": "LE GRAND QUEVILLY" }, { - "codePostal": "31660", - "codeCommune": "31066", - "libelleAcheminement": "BESSIERES", - "nomCommune": "BESSIERES" + "codePostal": "76210", + "codeCommune": "76329", + "libelleAcheminement": "GRUCHET LE VALASSE", + "nomCommune": "GRUCHET LE VALASSE" }, { - "codePostal": "31110", - "codeCommune": "31068", - "libelleAcheminement": "BILLIERE", - "nomCommune": "BILLIERE" + "codePostal": "76890", + "codeCommune": "76335", + "libelleAcheminement": "GUEUTTEVILLE", + "nomCommune": "GUEUTTEVILLE" }, { - "codePostal": "31700", - "codeCommune": "31069", - "libelleAcheminement": "BLAGNAC", - "nomCommune": "BLAGNAC" + "codePostal": "76460", + "codeCommune": "76336", + "libelleAcheminement": "GUEUTTEVILLE LES GRES", + "nomCommune": "GUEUTTEVILLE LES GRES" }, { - "codePostal": "31340", - "codeCommune": "31073", - "libelleAcheminement": "BONDIGOUX", - "nomCommune": "BONDIGOUX" + "codePostal": "76560", + "codeCommune": "76340", + "libelleAcheminement": "HARCANVILLE", + "nomCommune": "HARCANVILLE" }, { - "codePostal": "31590", - "codeCommune": "31074", - "libelleAcheminement": "BONREPOS RIQUET", - "nomCommune": "BONREPOS RIQUET" + "codePostal": "76190", + "codeCommune": "76348", + "libelleAcheminement": "HAUTOT ST SULPICE", + "nomCommune": "HAUTOT ST SULPICE" }, { - "codePostal": "31210", - "codeCommune": "31076", - "libelleAcheminement": "BORDES DE RIVIERE", - "nomCommune": "BORDES DE RIVIERE" + "codePostal": "76550", + "codeCommune": "76349", + "libelleAcheminement": "HAUTOT SUR MER", + "nomCommune": "HAUTOT SUR MER" }, { - "codePostal": "31340", - "codeCommune": "31077", - "libelleAcheminement": "LE BORN", - "nomCommune": "LE BORN" + "codePostal": "76610", + "codeCommune": "76351", + "libelleAcheminement": "LE HAVRE", + "nomCommune": "LE HAVRE" }, { - "codePostal": "31160", - "codeCommune": "31085", - "libelleAcheminement": "BOUTX", - "nomCommune": "BOUTX" + "codePostal": "76780", + "codeCommune": "76352", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "31420", - "codeCommune": "31086", - "libelleAcheminement": "BOUZIN", - "nomCommune": "BOUZIN" + "codePostal": "76740", + "codeCommune": "76353", + "libelleAcheminement": "HEBERVILLE", + "nomCommune": "HEBERVILLE" }, { - "codePostal": "31470", - "codeCommune": "31087", - "libelleAcheminement": "BRAGAYRAC", - "nomCommune": "BRAGAYRAC" + "codePostal": "76560", + "codeCommune": "76355", + "libelleAcheminement": "HERICOURT EN CAUX", + "nomCommune": "HERICOURT EN CAUX" }, { - "codePostal": "31150", - "codeCommune": "31091", - "libelleAcheminement": "BRUGUIERES", - "nomCommune": "BRUGUIERES" + "codePostal": "76780", + "codeCommune": "76358", + "libelleAcheminement": "LE HERON", + "nomCommune": "LE HERON" }, { - "codePostal": "31160", - "codeCommune": "31095", - "libelleAcheminement": "CABANAC CAZAUX", - "nomCommune": "CABANAC CAZAUX" + "codePostal": "76750", + "codeCommune": "76359", + "libelleAcheminement": "HERONCHELLES", + "nomCommune": "HERONCHELLES" }, { - "codePostal": "31460", - "codeCommune": "31105", - "libelleAcheminement": "CARAGOUDES", - "nomCommune": "CARAGOUDES" + "codePostal": "76340", + "codeCommune": "76363", + "libelleAcheminement": "HODENG AU BOSC", + "nomCommune": "HODENG AU BOSC" }, { - "codePostal": "31390", - "codeCommune": "31107", - "libelleAcheminement": "CARBONNE", - "nomCommune": "CARBONNE" + "codePostal": "76770", + "codeCommune": "76366", + "libelleAcheminement": "LE HOULME", + "nomCommune": "LE HOULME" }, { - "codePostal": "31350", - "codeCommune": "31108", - "libelleAcheminement": "CARDEILHAC", - "nomCommune": "CARDEILHAC" + "codePostal": "76690", + "codeCommune": "76369", + "libelleAcheminement": "LA HOUSSAYE BERANGER", + "nomCommune": "LA HOUSSAYE BERANGER" }, { - "codePostal": "31420", - "codeCommune": "31134", - "libelleAcheminement": "CAZENEUVE MONTAUT", - "nomCommune": "CAZENEUVE MONTAUT" + "codePostal": "76630", + "codeCommune": "76371", + "libelleAcheminement": "LES IFS", + "nomCommune": "LES IFS" }, { - "codePostal": "31160", - "codeCommune": "31140", - "libelleAcheminement": "CHEIN DESSUS", - "nomCommune": "CHEIN DESSUS" + "codePostal": "76460", + "codeCommune": "76375", + "libelleAcheminement": "INGOUVILLE", + "nomCommune": "INGOUVILLE" }, { - "codePostal": "31440", - "codeCommune": "31144", - "libelleAcheminement": "CIERP GAUD", - "nomCommune": "CIERP GAUD" + "codePostal": "76480", + "codeCommune": "76378", + "libelleAcheminement": "JUMIEGES", + "nomCommune": "JUMIEGES" }, { - "codePostal": "31450", - "codeCommune": "31162", - "libelleAcheminement": "DONNEVILLE", - "nomCommune": "DONNEVILLE" + "codePostal": "76730", + "codeCommune": "76379", + "libelleAcheminement": "LAMBERVILLE", + "nomCommune": "LAMBERVILLE" }, { - "codePostal": "31280", - "codeCommune": "31163", - "libelleAcheminement": "DREMIL LAFAGE", - "nomCommune": "DREMIL LAFAGE" + "codePostal": "76170", + "codeCommune": "76384", + "libelleAcheminement": "LILLEBONNE", + "nomCommune": "LILLEBONNE" }, { - "codePostal": "31480", - "codeCommune": "31164", - "libelleAcheminement": "DRUDAS", - "nomCommune": "DRUDAS" + "codePostal": "76210", + "codeCommune": "76388", + "libelleAcheminement": "LINTOT", + "nomCommune": "LINTOT" }, { - "codePostal": "31750", - "codeCommune": "31169", - "libelleAcheminement": "ESCALQUENS", - "nomCommune": "ESCALQUENS" + "codePostal": "76660", + "codeCommune": "76392", + "libelleAcheminement": "LONDINIERES", + "nomCommune": "LONDINIERES" }, { - "codePostal": "31440", - "codeCommune": "31176", - "libelleAcheminement": "ESTENOS", - "nomCommune": "ESTENOS" + "codePostal": "76750", + "codeCommune": "76396", + "libelleAcheminement": "LONGUERUE", + "nomCommune": "LONGUERUE" }, { - "codePostal": "31260", - "codeCommune": "31195", - "libelleAcheminement": "FRANCAZAL", - "nomCommune": "FRANCAZAL" + "codePostal": "76590", + "codeCommune": "76405", + "libelleAcheminement": "MANEHOUVILLE", + "nomCommune": "MANEHOUVILLE" }, { - "codePostal": "31360", - "codeCommune": "31198", - "libelleAcheminement": "LE FRECHET", - "nomCommune": "LE FRECHET" + "codePostal": "76110", + "codeCommune": "76408", + "libelleAcheminement": "MANNEVILLE LA GOUPIL", + "nomCommune": "MANNEVILLE LA GOUPIL" }, { - "codePostal": "31510", - "codeCommune": "31200", - "libelleAcheminement": "FRONTIGNAN DE COMMINGES", - "nomCommune": "FRONTIGNAN DE COMMINGES" + "codePostal": "76150", + "codeCommune": "76410", + "libelleAcheminement": "MAROMME", + "nomCommune": "MAROMME" }, { - "codePostal": "31230", - "codeCommune": "31201", - "libelleAcheminement": "FRONTIGNAN SAVES", - "nomCommune": "FRONTIGNAN SAVES" + "codePostal": "76880", + "codeCommune": "76413", + "libelleAcheminement": "MARTIGNY", + "nomCommune": "MARTIGNY" }, { - "codePostal": "31620", - "codeCommune": "31202", - "libelleAcheminement": "FRONTON", - "nomCommune": "FRONTON" + "codePostal": "76370", + "codeCommune": "76414", + "libelleAcheminement": "MARTIN EGLISE", + "nomCommune": "MARTIN EGLISE" }, { - "codePostal": "31150", - "codeCommune": "31205", - "libelleAcheminement": "GAGNAC SUR GARONNE", - "nomCommune": "GAGNAC SUR GARONNE" + "codePostal": "76170", + "codeCommune": "76421", + "libelleAcheminement": "MELAMARE", + "nomCommune": "MELAMARE" }, { - "codePostal": "31110", - "codeCommune": "31221", - "libelleAcheminement": "GOUAUX DE LARBOUST", - "nomCommune": "GOUAUX DE LARBOUST" + "codePostal": "76260", + "codeCommune": "76422", + "libelleAcheminement": "MELLEVILLE", + "nomCommune": "MELLEVILLE" }, { - "codePostal": "31310", - "codeCommune": "31226", - "libelleAcheminement": "GOUZENS", - "nomCommune": "GOUZENS" + "codePostal": "76780", + "codeCommune": "76426", + "libelleAcheminement": "MESANGUEVILLE", + "nomCommune": "MESANGUEVILLE" }, { - "codePostal": "31150", - "codeCommune": "31230", - "libelleAcheminement": "GRATENTOUR", - "nomCommune": "GRATENTOUR" + "codePostal": "76570", + "codeCommune": "76433", + "libelleAcheminement": "MESNIL PANNEVILLE", + "nomCommune": "MESNIL PANNEVILLE" }, { - "codePostal": "31230", - "codeCommune": "31239", - "libelleAcheminement": "L ISLE EN DODON", - "nomCommune": "L ISLE EN DODON" + "codePostal": "76270", + "codeCommune": "76459", + "libelleAcheminement": "NESLE HODENG", + "nomCommune": "NESLE HODENG" }, { - "codePostal": "31510", - "codeCommune": "31255", - "libelleAcheminement": "LABROQUERE", - "nomCommune": "LABROQUERE" + "codePostal": "76680", + "codeCommune": "76461", + "libelleAcheminement": "NEUFBOSC", + "nomCommune": "NEUFBOSC" }, { - "codePostal": "31390", - "codeCommune": "31258", - "libelleAcheminement": "LACAUGNE", - "nomCommune": "LACAUGNE" + "codePostal": "76270", + "codeCommune": "76462", + "libelleAcheminement": "NEUFCHATEL EN BRAY", + "nomCommune": "NEUFCHATEL EN BRAY" }, { - "codePostal": "31870", - "codeCommune": "31263", - "libelleAcheminement": "LAGARDELLE SUR LEZE", - "nomCommune": "LAGARDELLE SUR LEZE" + "codePostal": "76460", + "codeCommune": "76467", + "libelleAcheminement": "NEVILLE", + "nomCommune": "NEVILLE" }, { - "codePostal": "31370", - "codeCommune": "31266", - "libelleAcheminement": "LAHAGE", - "nomCommune": "LAHAGE" + "codePostal": "76640", + "codeCommune": "76470", + "libelleAcheminement": "NORMANVILLE", + "nomCommune": "NORMANVILLE" }, { - "codePostal": "31570", - "codeCommune": "31271", - "libelleAcheminement": "LANTA", - "nomCommune": "LANTA" + "codePostal": "76330", + "codeCommune": "76471", + "libelleAcheminement": "NORVILLE", + "nomCommune": "NORVILLE" }, { - "codePostal": "31480", - "codeCommune": "31275", - "libelleAcheminement": "LAREOLE", - "nomCommune": "LAREOLE" + "codePostal": "76520", + "codeCommune": "76475", + "libelleAcheminement": "FRANQUEVILLE ST PIERRE", + "nomCommune": "FRANQUEVILLE ST PIERRE" }, { - "codePostal": "31530", - "codeCommune": "31277", - "libelleAcheminement": "LASSERRE PRADERE", - "nomCommune": "LASSERRE PRADERE" + "codePostal": "76170", + "codeCommune": "76476", + "libelleAcheminement": "PORT JEROME SUR SEINE", + "nomCommune": "PORT JEROME SUR SEINE" }, { - "codePostal": "31590", - "codeCommune": "31285", - "libelleAcheminement": "LAVALETTE", - "nomCommune": "LAVALETTE" + "codePostal": "76170", + "codeCommune": "76476", + "libelleAcheminement": "PORT JEROME SUR SEINE", + "nomCommune": "PORT JEROME SUR SEINE" }, { - "codePostal": "31440", - "codeCommune": "31290", - "libelleAcheminement": "LEGE", - "nomCommune": "LEGE" + "codePostal": "76170", + "codeCommune": "76476", + "libelleAcheminement": "PORT JEROME SUR SEINE", + "nomCommune": "PORT JEROME SUR SEINE" }, { - "codePostal": "31350", - "codeCommune": "31295", - "libelleAcheminement": "LESPUGUE", - "nomCommune": "LESPUGUE" + "codePostal": "76350", + "codeCommune": "76484", + "libelleAcheminement": "OISSEL", + "nomCommune": "OISSEL" }, { - "codePostal": "31600", - "codeCommune": "31299", - "libelleAcheminement": "LHERM", - "nomCommune": "LHERM" + "codePostal": "76730", + "codeCommune": "76485", + "libelleAcheminement": "OMONVILLE", + "nomCommune": "OMONVILLE" }, { - "codePostal": "31410", - "codeCommune": "31303", - "libelleAcheminement": "LONGAGES", - "nomCommune": "LONGAGES" + "codePostal": "76500", + "codeCommune": "76486", + "libelleAcheminement": "ORIVAL", + "nomCommune": "ORIVAL" }, { - "codePostal": "31510", - "codeCommune": "31308", - "libelleAcheminement": "LUSCAN", - "nomCommune": "LUSCAN" + "codePostal": "76450", + "codeCommune": "76493", + "libelleAcheminement": "PALUEL", + "nomCommune": "PALUEL" }, { - "codePostal": "31430", - "codeCommune": "31309", - "libelleAcheminement": "LUSSAN ADEILHAC", - "nomCommune": "LUSSAN ADEILHAC" + "codePostal": "76210", + "codeCommune": "76494", + "libelleAcheminement": "PARC D ANXTOT", + "nomCommune": "PARC D ANXTOT" }, { - "codePostal": "31360", - "codeCommune": "31314", - "libelleAcheminement": "MANCIOUX", - "nomCommune": "MANCIOUX" + "codePostal": "76750", + "codeCommune": "76502", + "libelleAcheminement": "PIERREVAL", + "nomCommune": "PIERREVAL" }, { - "codePostal": "31440", - "codeCommune": "31316", - "libelleAcheminement": "MARIGNAC", - "nomCommune": "MARIGNAC" + "codePostal": "76860", + "codeCommune": "76515", + "libelleAcheminement": "QUIBERVILLE", + "nomCommune": "QUIBERVILLE" }, { - "codePostal": "31220", - "codeCommune": "31318", - "libelleAcheminement": "MARIGNAC LASPEYRES", - "nomCommune": "MARIGNAC LASPEYRES" + "codePostal": "76340", + "codeCommune": "76528", + "libelleAcheminement": "RIEUX", + "nomCommune": "RIEUX" }, { - "codePostal": "31210", - "codeCommune": "31323", - "libelleAcheminement": "MARTRES DE RIVIERE", - "nomCommune": "MARTRES DE RIVIERE" + "codePostal": "76890", + "codeCommune": "76574", + "libelleAcheminement": "ST DENIS SUR SCIE", + "nomCommune": "ST DENIS SUR SCIE" }, { - "codePostal": "31220", - "codeCommune": "31324", - "libelleAcheminement": "MARTRES TOLOSANE", - "nomCommune": "MARTRES TOLOSANE" + "codePostal": "76590", + "codeCommune": "76582", + "libelleAcheminement": "ST GERMAIN D ETABLES", + "nomCommune": "ST GERMAIN D ETABLES" }, { - "codePostal": "31220", - "codeCommune": "31327", - "libelleAcheminement": "MAURAN", - "nomCommune": "MAURAN" + "codePostal": "76430", + "codeCommune": "76586", + "libelleAcheminement": "ST GILLES DE LA NEUVILLE", + "nomCommune": "ST GILLES DE LA NEUVILLE" }, { - "codePostal": "31190", - "codeCommune": "31332", - "libelleAcheminement": "MAUVAISIN", - "nomCommune": "MAUVAISIN" + "codePostal": "76400", + "codeCommune": "76587", + "libelleAcheminement": "STE HELENE BONDEVILLE", + "nomCommune": "STE HELENE BONDEVILLE" }, { - "codePostal": "31220", - "codeCommune": "31349", - "libelleAcheminement": "MONDAVEZAN", - "nomCommune": "MONDAVEZAN" + "codePostal": "76590", + "codeCommune": "76589", + "libelleAcheminement": "ST HONORE", + "nomCommune": "ST HONORE" }, { - "codePostal": "31700", - "codeCommune": "31351", - "libelleAcheminement": "MONDONVILLE", - "nomCommune": "MONDONVILLE" + "codePostal": "76510", + "codeCommune": "76590", + "libelleAcheminement": "ST JACQUES D ALIERMONT", + "nomCommune": "ST JACQUES D ALIERMONT" }, { - "codePostal": "31310", - "codeCommune": "31365", - "libelleAcheminement": "MONTBRUN BOCAGE", - "nomCommune": "MONTBRUN BOCAGE" + "codePostal": "76170", + "codeCommune": "76592", + "libelleAcheminement": "ST JEAN DE FOLLEVILLE", + "nomCommune": "ST JEAN DE FOLLEVILLE" }, { - "codePostal": "31220", - "codeCommune": "31367", - "libelleAcheminement": "MONTCLAR DE COMMINGES", - "nomCommune": "MONTCLAR DE COMMINGES" + "codePostal": "76210", + "codeCommune": "76593", + "libelleAcheminement": "ST JEAN DE LA NEUVILLE", + "nomCommune": "ST JEAN DE LA NEUVILLE" }, { - "codePostal": "31260", - "codeCommune": "31372", - "libelleAcheminement": "MONTESPAN", - "nomCommune": "MONTESPAN" + "codePostal": "76280", + "codeCommune": "76595", + "libelleAcheminement": "ST JOUIN BRUNEVAL", + "nomCommune": "ST JOUIN BRUNEVAL" }, { - "codePostal": "31410", - "codeCommune": "31379", - "libelleAcheminement": "MONTGAZIN", - "nomCommune": "MONTGAZIN" + "codePostal": "76890", + "codeCommune": "76602", + "libelleAcheminement": "ST MACLOU DE FOLLEVILLE", + "nomCommune": "ST MACLOU DE FOLLEVILLE" }, { - "codePostal": "31380", - "codeCommune": "31383", - "libelleAcheminement": "MONTJOIRE", - "nomCommune": "MONTJOIRE" + "codePostal": "76730", + "codeCommune": "76604", + "libelleAcheminement": "ST MARDS", + "nomCommune": "ST MARDS" }, { - "codePostal": "31380", - "codeCommune": "31388", - "libelleAcheminement": "MONTPITOL", - "nomCommune": "MONTPITOL" + "codePostal": "76370", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "31540", - "codeCommune": "31393", - "libelleAcheminement": "MOURVILLES HAUTES", - "nomCommune": "MOURVILLES HAUTES" + "codePostal": "76370", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "31540", - "codeCommune": "31400", - "libelleAcheminement": "NOGARET", - "nomCommune": "NOGARET" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "31450", - "codeCommune": "31401", - "libelleAcheminement": "NOUEILLES", - "nomCommune": "NOUEILLES" + "codePostal": "76680", + "codeCommune": "76621", + "libelleAcheminement": "ST MARTIN OSMONVILLE", + "nomCommune": "ST MARTIN OSMONVILLE" }, { - "codePostal": "31510", - "codeCommune": "31405", - "libelleAcheminement": "ORE", - "nomCommune": "ORE" + "codePostal": "76730", + "codeCommune": "76629", + "libelleAcheminement": "ST OUEN LE MAUGER", + "nomCommune": "ST OUEN LE MAUGER" }, { - "codePostal": "31380", - "codeCommune": "31407", - "libelleAcheminement": "PAULHAC", - "nomCommune": "PAULHAC" + "codePostal": "76540", + "codeCommune": "76637", + "libelleAcheminement": "ST PIERRE EN PORT", + "nomCommune": "ST PIERRE EN PORT" }, { - "codePostal": "31420", - "codeCommune": "31414", - "libelleAcheminement": "PEYRISSAS", - "nomCommune": "PEYRISSAS" + "codePostal": "76270", + "codeCommune": "76649", + "libelleAcheminement": "ST SAIRE", + "nomCommune": "ST SAIRE" }, { - "codePostal": "31420", - "codeCommune": "31415", - "libelleAcheminement": "PEYROUZET", - "nomCommune": "PEYROUZET" + "codePostal": "76890", + "codeCommune": "76656", + "libelleAcheminement": "ST VICTOR L ABBAYE", + "nomCommune": "ST VICTOR L ABBAYE" }, { - "codePostal": "31220", - "codeCommune": "31422", - "libelleAcheminement": "PLAGNE", - "nomCommune": "PLAGNE" + "codePostal": "76540", + "codeCommune": "76663", + "libelleAcheminement": "SASSETOT LE MAUCONDUIT", + "nomCommune": "SASSETOT LE MAUCONDUIT" }, { - "codePostal": "31210", - "codeCommune": "31426", - "libelleAcheminement": "POINTIS DE RIVIERE", - "nomCommune": "POINTIS DE RIVIERE" + "codePostal": "76110", + "codeCommune": "76669", + "libelleAcheminement": "SAUSSEUZEMARE EN CAUX", + "nomCommune": "SAUSSEUZEMARE EN CAUX" }, { - "codePostal": "31430", - "codeCommune": "31428", - "libelleAcheminement": "POLASTRON", - "nomCommune": "POLASTRON" + "codePostal": "76430", + "codeCommune": "76684", + "libelleAcheminement": "TANCARVILLE", + "nomCommune": "TANCARVILLE" }, { - "codePostal": "31110", - "codeCommune": "31434", - "libelleAcheminement": "POUBEAU", - "nomCommune": "POUBEAU" + "codePostal": "76540", + "codeCommune": "76688", + "libelleAcheminement": "THIERGEVILLE", + "nomCommune": "THIERGEVILLE" }, { - "codePostal": "31370", - "codeCommune": "31435", - "libelleAcheminement": "POUCHARRAMET", - "nomCommune": "POUCHARRAMET" + "codePostal": "76890", + "codeCommune": "76700", + "libelleAcheminement": "TOTES", + "nomCommune": "TOTES" }, { - "codePostal": "31480", - "codeCommune": "31444", - "libelleAcheminement": "PUYSSEGUR", - "nomCommune": "PUYSSEGUR" + "codePostal": "76400", + "codeCommune": "76708", + "libelleAcheminement": "TOUSSAINT", + "nomCommune": "TOUSSAINT" }, { - "codePostal": "31130", - "codeCommune": "31445", - "libelleAcheminement": "QUINT FONSEGRIVES", - "nomCommune": "QUINT FONSEGRIVES" + "codePostal": "76170", + "codeCommune": "76712", + "libelleAcheminement": "LA TRINITE DU MONT", + "nomCommune": "LA TRINITE DU MONT" }, { - "codePostal": "31160", - "codeCommune": "31447", - "libelleAcheminement": "RAZECUEILLE", - "nomCommune": "RAZECUEILLE" + "codePostal": "76430", + "codeCommune": "76714", + "libelleAcheminement": "LES TROIS PIERRES", + "nomCommune": "LES TROIS PIERRES" }, { - "codePostal": "31310", - "codeCommune": "31455", - "libelleAcheminement": "RIEUX VOLVESTRE", - "nomCommune": "RIEUX VOLVESTRE" + "codePostal": "76280", + "codeCommune": "76716", + "libelleAcheminement": "TURRETOT", + "nomCommune": "TURRETOT" }, { - "codePostal": "31380", - "codeCommune": "31459", - "libelleAcheminement": "ROQUESERIERE", - "nomCommune": "ROQUESERIERE" + "codePostal": "76380", + "codeCommune": "76717", + "libelleAcheminement": "VAL DE LA HAYE", + "nomCommune": "VAL DE LA HAYE" }, { - "codePostal": "31160", - "codeCommune": "31461", - "libelleAcheminement": "ROUEDE", - "nomCommune": "ROUEDE" + "codePostal": "76119", + "codeCommune": "76720", + "libelleAcheminement": "VARENGEVILLE SUR MER", + "nomCommune": "VARENGEVILLE SUR MER" }, { - "codePostal": "31370", - "codeCommune": "31464", - "libelleAcheminement": "SABONNERES", - "nomCommune": "SABONNERES" + "codePostal": "76450", + "codeCommune": "76732", + "libelleAcheminement": "BUTOT VENESVILLE", + "nomCommune": "BUTOT VENESVILLE" }, { - "codePostal": "31110", - "codeCommune": "31465", - "libelleAcheminement": "SACCOURVIELLE", - "nomCommune": "SACCOURVIELLE" + "codePostal": "76680", + "codeCommune": "76733", + "libelleAcheminement": "VENTES ST REMY", + "nomCommune": "VENTES ST REMY" }, { - "codePostal": "31510", - "codeCommune": "31472", - "libelleAcheminement": "ST BERTRAND DE COMMINGES", - "nomCommune": "ST BERTRAND DE COMMINGES" + "codePostal": "76390", + "codeCommune": "76739", + "libelleAcheminement": "VIEUX ROUEN SUR BRESLE", + "nomCommune": "VIEUX ROUEN SUR BRESLE" }, { - "codePostal": "31330", - "codeCommune": "31473", - "libelleAcheminement": "ST CEZERT", - "nomCommune": "ST CEZERT" + "codePostal": "76450", + "codeCommune": "76748", + "libelleAcheminement": "VITTEFLEUR", + "nomCommune": "VITTEFLEUR" }, { - "codePostal": "31310", - "codeCommune": "31474", - "libelleAcheminement": "ST CHRISTAUD", - "nomCommune": "ST CHRISTAUD" + "codePostal": "76760", + "codeCommune": "76752", + "libelleAcheminement": "YERVILLE", + "nomCommune": "YERVILLE" }, { - "codePostal": "31290", - "codeCommune": "31485", - "libelleAcheminement": "ST GERMIER", - "nomCommune": "ST GERMIER" + "codePostal": "76690", + "codeCommune": "76756", + "libelleAcheminement": "YQUEBEUF", + "nomCommune": "YQUEBEUF" }, { - "codePostal": "31410", - "codeCommune": "31486", - "libelleAcheminement": "ST HILAIRE", - "nomCommune": "ST HILAIRE" + "codePostal": "77890", + "codeCommune": "77009", + "libelleAcheminement": "ARVILLE", + "nomCommune": "ARVILLE" }, { - "codePostal": "31220", - "codeCommune": "31492", - "libelleAcheminement": "ST JULIEN SUR GARONNE", - "nomCommune": "ST JULIEN SUR GARONNE" + "codePostal": "77720", + "codeCommune": "77010", + "libelleAcheminement": "AUBEPIERRE OZOUER LE REPOS", + "nomCommune": "AUBEPIERRE OZOUER LE REPOS" }, { - "codePostal": "31110", - "codeCommune": "31500", - "libelleAcheminement": "ST MAMET", - "nomCommune": "ST MAMET" + "codePostal": "77210", + "codeCommune": "77014", + "libelleAcheminement": "AVON", + "nomCommune": "AVON" }, { - "codePostal": "31800", - "codeCommune": "31502", - "libelleAcheminement": "ST MARCET", - "nomCommune": "ST MARCET" + "codePostal": "77480", + "codeCommune": "77015", + "libelleAcheminement": "BABY", + "nomCommune": "BABY" }, { - "codePostal": "31220", - "codeCommune": "31505", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "77970", + "codeCommune": "77020", + "libelleAcheminement": "BANNOST VILLEGAGNON", + "nomCommune": "BANNOST VILLEGAGNON" }, { - "codePostal": "31570", - "codeCommune": "31512", - "libelleAcheminement": "ST PIERRE DE LAGES", - "nomCommune": "ST PIERRE DE LAGES" + "codePostal": "77560", + "codeCommune": "77026", + "libelleAcheminement": "BEAUCHERY ST MARTIN", + "nomCommune": "BEAUCHERY ST MARTIN" }, { - "codePostal": "31790", - "codeCommune": "31516", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "77970", + "codeCommune": "77033", + "libelleAcheminement": "BEZALLES", + "nomCommune": "BEZALLES" }, { - "codePostal": "31220", - "codeCommune": "31530", - "libelleAcheminement": "SANA", - "nomCommune": "SANA" + "codePostal": "77115", + "codeCommune": "77034", + "libelleAcheminement": "BLANDY", + "nomCommune": "BLANDY" }, { - "codePostal": "31350", - "codeCommune": "31532", - "libelleAcheminement": "SARREMEZAN", - "nomCommune": "SARREMEZAN" + "codePostal": "77940", + "codeCommune": "77035", + "libelleAcheminement": "BLENNES", + "nomCommune": "BLENNES" }, { - "codePostal": "31460", - "codeCommune": "31534", - "libelleAcheminement": "SAUSSENS", - "nomCommune": "SAUSSENS" + "codePostal": "77750", + "codeCommune": "77043", + "libelleAcheminement": "BOITRON", + "nomCommune": "BOITRON" }, { - "codePostal": "31370", - "codeCommune": "31538", - "libelleAcheminement": "SAVERES", - "nomCommune": "SAVERES" + "codePostal": "77570", + "codeCommune": "77045", + "libelleAcheminement": "BOUGLIGNY", + "nomCommune": "BOUGLIGNY" }, { - "codePostal": "31580", - "codeCommune": "31539", - "libelleAcheminement": "SEDEILHAC", - "nomCommune": "SEDEILHAC" + "codePostal": "77760", + "codeCommune": "77046", + "libelleAcheminement": "BOULANCOURT", + "nomCommune": "BOULANCOURT" }, { - "codePostal": "31510", - "codeCommune": "31542", - "libelleAcheminement": "SEILHAN", - "nomCommune": "SEILHAN" + "codePostal": "77720", + "codeCommune": "77052", + "libelleAcheminement": "BREAU", + "nomCommune": "BREAU" }, { - "codePostal": "31600", - "codeCommune": "31547", - "libelleAcheminement": "SEYSSES", - "nomCommune": "SEYSSES" + "codePostal": "77170", + "codeCommune": "77053", + "libelleAcheminement": "BRIE COMTE ROBERT", + "nomCommune": "BRIE COMTE ROBERT" }, { - "codePostal": "31160", - "codeCommune": "31550", - "libelleAcheminement": "SOUEICH", - "nomCommune": "SOUEICH" + "codePostal": "77600", + "codeCommune": "77058", + "libelleAcheminement": "BUSSY ST GEORGES", + "nomCommune": "BUSSY ST GEORGES" }, { - "codePostal": "31420", - "codeCommune": "31552", - "libelleAcheminement": "TERREBASSE", - "nomCommune": "TERREBASSE" + "codePostal": "77515", + "codeCommune": "77063", + "libelleAcheminement": "LA CELLE SUR MORIN", + "nomCommune": "LA CELLE SUR MORIN" }, { - "codePostal": "31530", - "codeCommune": "31553", - "libelleAcheminement": "THIL", - "nomCommune": "THIL" + "codePostal": "77930", + "codeCommune": "77065", + "libelleAcheminement": "CELY EN BIERE", + "nomCommune": "CELY" }, { - "codePostal": "31000", - "codeCommune": "31555", - "libelleAcheminement": "TOULOUSE", - "nomCommune": "TOULOUSE" + "codePostal": "77650", + "codeCommune": "77076", + "libelleAcheminement": "CHALMAISON", + "nomCommune": "CHALMAISON" }, { - "codePostal": "31210", - "codeCommune": "31556", - "libelleAcheminement": "LES TOURREILLES", - "nomCommune": "LES TOURREILLES" + "codePostal": "77600", + "codeCommune": "77085", + "libelleAcheminement": "CHANTELOUP EN BRIE", + "nomCommune": "CHANTELOUP EN BRIE" }, { - "codePostal": "31110", - "codeCommune": "31559", - "libelleAcheminement": "TREBONS DE LUCHON", - "nomCommune": "TREBONS DE LUCHON" + "codePostal": "77370", + "codeCommune": "77089", + "libelleAcheminement": "LA CHAPELLE RABLAIS", + "nomCommune": "LA CHAPELLE RABLAIS" }, { - "codePostal": "31240", - "codeCommune": "31561", - "libelleAcheminement": "L UNION", - "nomCommune": "L UNION" + "codePostal": "77160", + "codeCommune": "77090", + "libelleAcheminement": "LA CHAPELLE ST SULPICE", + "nomCommune": "LA CHAPELLE ST SULPICE" }, { - "codePostal": "31260", - "codeCommune": "31562", - "libelleAcheminement": "URAU", - "nomCommune": "URAU" + "codePostal": "77410", + "codeCommune": "77095", + "libelleAcheminement": "CHARNY", + "nomCommune": "CHARNY" }, { - "codePostal": "31290", - "codeCommune": "31566", - "libelleAcheminement": "VALLEGUE", - "nomCommune": "VALLEGUE" + "codePostal": "77820", + "codeCommune": "77100", + "libelleAcheminement": "LE CHATELET EN BRIE", + "nomCommune": "LE CHATELET EN BRIE" }, { - "codePostal": "31590", - "codeCommune": "31573", - "libelleAcheminement": "VERFEIL", - "nomCommune": "VERFEIL" + "codePostal": "77160", + "codeCommune": "77109", + "libelleAcheminement": "CHENOISE CUCHARMOY", + "nomCommune": "CHENOISE CUCHARMOY" }, { - "codePostal": "31810", - "codeCommune": "31574", - "libelleAcheminement": "VERNET", - "nomCommune": "VERNET" + "codePostal": "77570", + "codeCommune": "77110", + "libelleAcheminement": "CHENOU", + "nomCommune": "CHENOU" }, { - "codePostal": "31320", - "codeCommune": "31575", - "libelleAcheminement": "VIEILLE TOULOUSE", - "nomCommune": "VIEILLE TOULOUSE" + "codePostal": "77173", + "codeCommune": "77114", + "libelleAcheminement": "CHEVRY COSSIGNY", + "nomCommune": "CHEVRY COSSIGNY" }, { - "codePostal": "31380", - "codeCommune": "31579", - "libelleAcheminement": "VILLARIES", - "nomCommune": "VILLARIES" + "codePostal": "77320", + "codeCommune": "77116", + "libelleAcheminement": "CHOISY EN BRIE", + "nomCommune": "CHOISY EN BRIE" }, { - "codePostal": "31580", - "codeCommune": "31586", - "libelleAcheminement": "VILLENEUVE LECUSSAN", - "nomCommune": "VILLENEUVE LECUSSAN" + "codePostal": "77730", + "codeCommune": "77117", + "libelleAcheminement": "CITRY", + "nomCommune": "CITRY" }, { - "codePostal": "31290", - "codeCommune": "31589", - "libelleAcheminement": "VILLENOUVELLE", - "nomCommune": "VILLENOUVELLE" + "codePostal": "77440", + "codeCommune": "77120", + "libelleAcheminement": "COCHEREL", + "nomCommune": "COCHEREL" }, { - "codePostal": "32360", - "codeCommune": "32003", - "libelleAcheminement": "ANTRAS", - "nomCommune": "ANTRAS" + "codePostal": "77290", + "codeCommune": "77123", + "libelleAcheminement": "COMPANS", + "nomCommune": "COMPANS" }, { - "codePostal": "32230", - "codeCommune": "32009", - "libelleAcheminement": "ARMOUS ET CAU", - "nomCommune": "ARMOUS ET CAU" + "codePostal": "77700", + "codeCommune": "77132", + "libelleAcheminement": "COUPVRAY", + "nomCommune": "COUPVRAY" }, { - "codePostal": "32120", - "codeCommune": "32014", - "libelleAcheminement": "AUGNAX", - "nomCommune": "AUGNAX" + "codePostal": "77560", + "codeCommune": "77134", + "libelleAcheminement": "COURCHAMP", + "nomCommune": "COURCHAMP" }, { - "codePostal": "32170", - "codeCommune": "32020", - "libelleAcheminement": "AUX AUSSAT", - "nomCommune": "AUX AUSSAT" + "codePostal": "77610", + "codeCommune": "77144", + "libelleAcheminement": "CREVECOEUR EN BRIE", + "nomCommune": "CREVECOEUR EN BRIE" }, { - "codePostal": "32800", - "codeCommune": "32025", - "libelleAcheminement": "AYZIEU", - "nomCommune": "AYZIEU" + "codePostal": "77165", + "codeCommune": "77150", + "libelleAcheminement": "CUISY", + "nomCommune": "CUISY" }, { - "codePostal": "32350", - "codeCommune": "32029", - "libelleAcheminement": "BARRAN", - "nomCommune": "BARRAN" + "codePostal": "77440", + "codeCommune": "77157", + "libelleAcheminement": "DHUISY", + "nomCommune": "DHUISY" }, { - "codePostal": "32320", - "codeCommune": "32033", - "libelleAcheminement": "BAZIAN", - "nomCommune": "BAZIAN" + "codePostal": "77130", + "codeCommune": "77161", + "libelleAcheminement": "DORMELLES", + "nomCommune": "DORMELLES" }, { - "codePostal": "32170", - "codeCommune": "32034", - "libelleAcheminement": "BAZUGUES", - "nomCommune": "BAZUGUES" + "codePostal": "77510", + "codeCommune": "77162", + "libelleAcheminement": "DOUE", + "nomCommune": "DOUE" }, { - "codePostal": "32730", - "codeCommune": "32039", - "libelleAcheminement": "BECCAS", - "nomCommune": "BECCAS" + "codePostal": "77184", + "codeCommune": "77169", + "libelleAcheminement": "EMERAINVILLE", + "nomCommune": "EMERAINVILLE" }, { - "codePostal": "32190", - "codeCommune": "32043", - "libelleAcheminement": "BELMONT", - "nomCommune": "BELMONT" + "codePostal": "77133", + "codeCommune": "77179", + "libelleAcheminement": "FERICY", + "nomCommune": "FERICY" }, { - "codePostal": "32480", - "codeCommune": "32047", - "libelleAcheminement": "BERRAC", - "nomCommune": "BERRAC" + "codePostal": "77320", + "codeCommune": "77182", + "libelleAcheminement": "LA FERTE GAUCHER", + "nomCommune": "LA FERTE GAUCHER" }, { - "codePostal": "32310", - "codeCommune": "32052", - "libelleAcheminement": "BEZOLLES", - "nomCommune": "BEZOLLES" + "codePostal": "77610", + "codeCommune": "77192", + "libelleAcheminement": "FONTENAY TRESIGNY", + "nomCommune": "FONTENAY TRESIGNY" }, { - "codePostal": "32140", - "codeCommune": "32053", - "libelleAcheminement": "BEZUES BAJON", - "nomCommune": "BEZUES BAJON" + "codePostal": "77130", + "codeCommune": "77194", + "libelleAcheminement": "FORGES", + "nomCommune": "FORGES" }, { - "codePostal": "32140", - "codeCommune": "32067", - "libelleAcheminement": "CABAS LOUMASSES", - "nomCommune": "CABAS LOUMASSES" + "codePostal": "77690", + "codeCommune": "77202", + "libelleAcheminement": "LA GENEVRAYE", + "nomCommune": "LA GENEVRAYE" }, { - "codePostal": "32380", - "codeCommune": "32068", - "libelleAcheminement": "CADEILHAN", - "nomCommune": "CADEILHAN" + "codePostal": "77120", + "codeCommune": "77206", + "libelleAcheminement": "GIREMOUTIERS", + "nomCommune": "GIREMOUTIERS" }, { - "codePostal": "32400", - "codeCommune": "32070", - "libelleAcheminement": "CAHUZAC SUR ADOUR", - "nomCommune": "CAHUZAC SUR ADOUR" + "codePostal": "77166", + "codeCommune": "77217", + "libelleAcheminement": "GRISY SUISNES", + "nomCommune": "GRISY SUISNES" }, { - "codePostal": "32190", - "codeCommune": "32072", - "libelleAcheminement": "CALLIAN", - "nomCommune": "CALLIAN" + "codePostal": "77166", + "codeCommune": "77217", + "libelleAcheminement": "GRISY SUISNES", + "nomCommune": "GRISY SUISNES" }, { - "codePostal": "32500", - "codeCommune": "32078", - "libelleAcheminement": "CASTELNAU D ARBIEU", - "nomCommune": "CASTELNAU D ARBIEU" + "codePostal": "77580", + "codeCommune": "77219", + "libelleAcheminement": "GUERARD", + "nomCommune": "GUERARD" }, { - "codePostal": "32440", - "codeCommune": "32079", - "libelleAcheminement": "CASTELNAU D AUZAN LABARRERE", - "nomCommune": "CASTELNAU D AUZAN LABARRERE" + "codePostal": "77510", + "codeCommune": "77228", + "libelleAcheminement": "HONDEVILLIERS", + "nomCommune": "HONDEVILLIERS" }, { - "codePostal": "32700", - "codeCommune": "32082", - "libelleAcheminement": "CASTERA LECTOUROIS", - "nomCommune": "CASTERA LECTOUROIS" + "codePostal": "77450", + "codeCommune": "77232", + "libelleAcheminement": "ISLES LES VILLENOY", + "nomCommune": "ISLES LES VILLENOY" }, { - "codePostal": "32190", - "codeCommune": "32088", - "libelleAcheminement": "CASTILLON DEBATS", - "nomCommune": "CASTILLON DEBATS" + "codePostal": "77600", + "codeCommune": "77237", + "libelleAcheminement": "JOSSIGNY", + "nomCommune": "JOSSIGNY" }, { - "codePostal": "32410", - "codeCommune": "32102", - "libelleAcheminement": "CEZAN", - "nomCommune": "CEZAN" + "codePostal": "77650", + "codeCommune": "77242", + "libelleAcheminement": "JUTIGNY", + "nomCommune": "JUTIGNY" }, { - "codePostal": "32600", - "codeCommune": "32105", - "libelleAcheminement": "CLERMONT SAVES", - "nomCommune": "CLERMONT SAVES" + "codePostal": "77148", + "codeCommune": "77245", + "libelleAcheminement": "LAVAL EN BRIE", + "nomCommune": "LAVAL EN BRIE" }, { - "codePostal": "32200", - "codeCommune": "32123", - "libelleAcheminement": "ESCORNEBOEUF", - "nomCommune": "ESCORNEBOEUF" + "codePostal": "77171", + "codeCommune": "77246", + "libelleAcheminement": "LECHELLE", + "nomCommune": "LECHELLE" }, { - "codePostal": "32370", - "codeCommune": "32125", - "libelleAcheminement": "ESPAS", - "nomCommune": "ESPAS" + "codePostal": "77550", + "codeCommune": "77253", + "libelleAcheminement": "LISSY", + "nomCommune": "LISSY" }, { - "codePostal": "32500", - "codeCommune": "32132", - "libelleAcheminement": "FLEURANCE", - "nomCommune": "FLEURANCE" + "codePostal": "77000", + "codeCommune": "77255", + "libelleAcheminement": "LIVRY SUR SEINE", + "nomCommune": "LIVRY SUR SEINE" }, { - "codePostal": "32400", - "codeCommune": "32135", - "libelleAcheminement": "FUSTEROUAU", - "nomCommune": "FUSTEROUAU" + "codePostal": "77440", + "codeCommune": "77257", + "libelleAcheminement": "LIZY SUR OURCQ", + "nomCommune": "LIZY SUR OURCQ" }, { - "codePostal": "32160", - "codeCommune": "32136", - "libelleAcheminement": "GALIAX", - "nomCommune": "GALIAX" + "codePostal": "77710", + "codeCommune": "77261", + "libelleAcheminement": "LORREZ LE BOCAGE PREAUX", + "nomCommune": "LORREZ LE BOCAGE PREAUX" }, { - "codePostal": "32420", - "codeCommune": "32141", - "libelleAcheminement": "GAUJAN", - "nomCommune": "GAUJAN" + "codePostal": "77520", + "codeCommune": "77263", + "libelleAcheminement": "LUISETAINES", + "nomCommune": "LUISETAINES" }, { - "codePostal": "32500", - "codeCommune": "32150", - "libelleAcheminement": "GOUTZ", - "nomCommune": "GOUTZ" + "codePostal": "77540", + "codeCommune": "77264", + "libelleAcheminement": "LUMIGNY NESLES ORMEAUX", + "nomCommune": "LUMIGNY NESLES ORMEAUX" }, { - "codePostal": "32550", - "codeCommune": "32153", - "libelleAcheminement": "HAULIES", - "nomCommune": "HAULIES" + "codePostal": "77700", + "codeCommune": "77268", + "libelleAcheminement": "MAGNY LE HONGRE", + "nomCommune": "MAGNY LE HONGRE" }, { - "codePostal": "32120", - "codeCommune": "32154", - "libelleAcheminement": "HOMPS", - "nomCommune": "HOMPS" + "codePostal": "77950", + "codeCommune": "77269", + "libelleAcheminement": "MAINCY", + "nomCommune": "MAINCY" }, { - "codePostal": "32360", - "codeCommune": "32162", - "libelleAcheminement": "JEGUN", - "nomCommune": "JEGUN" + "codePostal": "77120", + "codeCommune": "77278", + "libelleAcheminement": "MAROLLES EN BRIE", + "nomCommune": "MAROLLES EN BRIE" }, { - "codePostal": "32160", - "codeCommune": "32163", - "libelleAcheminement": "JU BELLOC", - "nomCommune": "JU BELLOC" + "codePostal": "77440", + "codeCommune": "77280", + "libelleAcheminement": "MARY SUR MARNE", + "nomCommune": "MARY SUR MARNE" }, { - "codePostal": "32190", - "codeCommune": "32166", - "libelleAcheminement": "JUSTIAN", - "nomCommune": "JUSTIAN" + "codePostal": "77120", + "codeCommune": "77281", + "libelleAcheminement": "MAUPERTHUIS", + "nomCommune": "MAUPERTHUIS" }, { - "codePostal": "32120", - "codeCommune": "32173", - "libelleAcheminement": "LABRIHE", - "nomCommune": "LABRIHE" + "codePostal": "77145", + "codeCommune": "77283", + "libelleAcheminement": "MAY EN MULTIEN", + "nomCommune": "MAY EN MULTIEN" }, { - "codePostal": "32300", - "codeCommune": "32177", - "libelleAcheminement": "LAGARDE HACHAN", - "nomCommune": "LAGARDE HACHAN" + "codePostal": "77730", + "codeCommune": "77290", + "libelleAcheminement": "MERY SUR MARNE", + "nomCommune": "MERY SUR MARNE" }, { - "codePostal": "32500", - "codeCommune": "32184", - "libelleAcheminement": "LALANNE", - "nomCommune": "LALANNE" + "codePostal": "77950", + "codeCommune": "77295", + "libelleAcheminement": "MOISENAY", + "nomCommune": "MOISENAY" }, { - "codePostal": "32300", - "codeCommune": "32187", - "libelleAcheminement": "LAMAZERE", - "nomCommune": "LAMAZERE" + "codePostal": "77480", + "codeCommune": "77310", + "libelleAcheminement": "MONTIGNY LE GUESDIER", + "nomCommune": "MONTIGNY LE GUESDIER" }, { - "codePostal": "32100", - "codeCommune": "32194", - "libelleAcheminement": "LARRESSINGLE", - "nomCommune": "LARRESSINGLE" + "codePostal": "77690", + "codeCommune": "77312", + "libelleAcheminement": "MONTIGNY SUR LOING", + "nomCommune": "MONTIGNY SUR LOING" }, { - "codePostal": "32290", - "codeCommune": "32219", - "libelleAcheminement": "LUPIAC", - "nomCommune": "LUPIAC" + "codePostal": "77940", + "codeCommune": "77313", + "libelleAcheminement": "MONTMACHOUX", + "nomCommune": "MONTMACHOUX" }, { - "codePostal": "32310", - "codeCommune": "32224", - "libelleAcheminement": "MAIGNAUT TAUZIA", - "nomCommune": "MAIGNAUT TAUZIA" + "codePostal": "77230", + "codeCommune": "77322", + "libelleAcheminement": "MOUSSY LE NEUF", + "nomCommune": "MOUSSY LE NEUF" }, { - "codePostal": "32310", - "codeCommune": "32230", - "libelleAcheminement": "MANSENCOME", - "nomCommune": "MANSENCOME" + "codePostal": "77124", + "codeCommune": "77335", + "libelleAcheminement": "CHAUCONIN NEUFMONTIERS", + "nomCommune": "CHAUCONIN NEUFMONTIERS" }, { - "codePostal": "32230", - "codeCommune": "32233", - "libelleAcheminement": "MARCIAC", - "nomCommune": "MARCIAC" + "codePostal": "77186", + "codeCommune": "77337", + "libelleAcheminement": "NOISIEL", + "nomCommune": "NOISIEL" }, { - "codePostal": "32240", - "codeCommune": "32243", - "libelleAcheminement": "MAULEON D ARMAGNAC", - "nomCommune": "MAULEON D ARMAGNAC" + "codePostal": "77140", + "codeCommune": "77340", + "libelleAcheminement": "NONVILLE", + "nomCommune": "NONVILLE" }, { - "codePostal": "32400", - "codeCommune": "32245", - "libelleAcheminement": "MAUMUSSON LAGUIAN", - "nomCommune": "MAUMUSSON LAGUIAN" + "codePostal": "77178", + "codeCommune": "77344", + "libelleAcheminement": "OISSERY", + "nomCommune": "OISSERY" }, { - "codePostal": "32200", - "codeCommune": "32247", - "libelleAcheminement": "MAURENS", - "nomCommune": "MAURENS" + "codePostal": "77520", + "codeCommune": "77355", + "libelleAcheminement": "PAROY", + "nomCommune": "PAROY" }, { - "codePostal": "32300", - "codeCommune": "32254", - "libelleAcheminement": "MIRAMONT D ASTARAC", - "nomCommune": "MIRAMONT D ASTARAC" + "codePostal": "77165", + "codeCommune": "77364", + "libelleAcheminement": "LE PLESSIS AUX BOIS", + "nomCommune": "LE PLESSIS AUX BOIS" }, { - "codePostal": "32390", - "codeCommune": "32258", - "libelleAcheminement": "MIREPOIX", - "nomCommune": "MIREPOIX" + "codePostal": "77310", + "codeCommune": "77378", + "libelleAcheminement": "PRINGY", + "nomCommune": "PRINGY" }, { - "codePostal": "32600", - "codeCommune": "32262", - "libelleAcheminement": "MONBRUN", - "nomCommune": "MONBRUN" + "codePostal": "77760", + "codeCommune": "77386", + "libelleAcheminement": "RECLOSES", + "nomCommune": "RECLOSES" }, { - "codePostal": "32150", - "codeCommune": "32264", - "libelleAcheminement": "MONCLAR D ARMAGNAC", - "nomCommune": "MONCLAR" + "codePostal": "77160", + "codeCommune": "77391", + "libelleAcheminement": "ROUILLY", + "nomCommune": "ROUILLY" }, { - "codePostal": "32300", - "codeCommune": "32265", - "libelleAcheminement": "MONCLAR SUR LOSSE", - "nomCommune": "MONCLAR SUR LOSSE" + "codePostal": "77260", + "codeCommune": "77401", + "libelleAcheminement": "STE AULDE", + "nomCommune": "STE AULDE" }, { - "codePostal": "32260", - "codeCommune": "32266", - "libelleAcheminement": "MONCORNEIL GRAZAN", - "nomCommune": "MONCORNEIL GRAZAN" + "codePostal": "77750", + "codeCommune": "77405", + "libelleAcheminement": "ST CYR SUR MORIN", + "nomCommune": "ST CYR SUR MORIN" }, { - "codePostal": "32490", - "codeCommune": "32268", - "libelleAcheminement": "MONFERRAN SAVES", - "nomCommune": "MONFERRAN SAVES" + "codePostal": "77130", + "codeCommune": "77409", + "libelleAcheminement": "ST GERMAIN LAVAL", + "nomCommune": "ST GERMAIN LAVAL" }, { - "codePostal": "32220", - "codeCommune": "32270", - "libelleAcheminement": "MONGAUSY", - "nomCommune": "MONGAUSY" + "codePostal": "77320", + "codeCommune": "77421", + "libelleAcheminement": "ST MARS VIEUX MAISONS", + "nomCommune": "ST MARS VIEUX MAISONS" }, { - "codePostal": "32220", - "codeCommune": "32277", - "libelleAcheminement": "MONTAMAT", - "nomCommune": "MONTAMAT" + "codePostal": "77320", + "codeCommune": "77432", + "libelleAcheminement": "ST REMY LA VANNE", + "nomCommune": "ST REMY LA VANNE" }, { - "codePostal": "32320", - "codeCommune": "32285", - "libelleAcheminement": "MONTESQUIOU", - "nomCommune": "MONTESQUIOU" + "codePostal": "77480", + "codeCommune": "77434", + "libelleAcheminement": "ST SAUVEUR LES BRAY", + "nomCommune": "ST SAUVEUR LES BRAY" }, { - "codePostal": "32420", - "codeCommune": "32287", - "libelleAcheminement": "MONTIES", - "nomCommune": "MONTIES" + "codePostal": "77580", + "codeCommune": "77443", + "libelleAcheminement": "SANCY", + "nomCommune": "SANCY" }, { - "codePostal": "32200", - "codeCommune": "32288", - "libelleAcheminement": "MONTIRON", - "nomCommune": "MONTIRON" + "codePostal": "77640", + "codeCommune": "77451", + "libelleAcheminement": "SIGNY SIGNETS", + "nomCommune": "SIGNY SIGNETS" }, { - "codePostal": "32220", - "codeCommune": "32289", - "libelleAcheminement": "MONTPEZAT", - "nomCommune": "MONTPEZAT" + "codePostal": "77650", + "codeCommune": "77456", + "libelleAcheminement": "SOISY BOUY", + "nomCommune": "SOISY BOUY" }, { - "codePostal": "32250", - "codeCommune": "32290", - "libelleAcheminement": "MONTREAL DU GERS", - "nomCommune": "MONTREAL" + "codePostal": "77460", + "codeCommune": "77458", + "libelleAcheminement": "SOUPPES SUR LOING", + "nomCommune": "SOUPPES SUR LOING" }, { - "codePostal": "32190", - "codeCommune": "32294", - "libelleAcheminement": "MOUREDE", - "nomCommune": "MOUREDE" + "codePostal": "77440", + "codeCommune": "77460", + "libelleAcheminement": "TANCROU", + "nomCommune": "TANCROU" }, { - "codePostal": "32110", - "codeCommune": "32296", - "libelleAcheminement": "NOGARO", - "nomCommune": "NOGARO" + "codePostal": "77400", + "codeCommune": "77464", + "libelleAcheminement": "THORIGNY SUR MARNE", + "nomCommune": "THORIGNY SUR MARNE" }, { - "codePostal": "32130", - "codeCommune": "32297", - "libelleAcheminement": "NOILHAN", - "nomCommune": "NOILHAN" + "codePostal": "77163", + "codeCommune": "77466", + "libelleAcheminement": "TIGEAUX", + "nomCommune": "TIGEAUX" }, { - "codePostal": "32350", - "codeCommune": "32301", - "libelleAcheminement": "ORDAN LARROQUE", - "nomCommune": "ORDAN LARROQUE" + "codePostal": "77200", + "codeCommune": "77468", + "libelleAcheminement": "TORCY", + "nomCommune": "TORCY" }, { - "codePostal": "32110", - "codeCommune": "32305", - "libelleAcheminement": "PANJAS", - "nomCommune": "PANJAS" + "codePostal": "77450", + "codeCommune": "77474", + "libelleAcheminement": "TRILBARDOU", + "nomCommune": "TRILBARDOU" }, { - "codePostal": "32160", - "codeCommune": "32319", - "libelleAcheminement": "PLAISANCE", - "nomCommune": "PLAISANCE" + "codePostal": "77440", + "codeCommune": "77476", + "libelleAcheminement": "TROCY EN MULTIEN", + "nomCommune": "TROCY EN MULTIEN" }, { - "codePostal": "32300", - "codeCommune": "32324", - "libelleAcheminement": "PONSAN SOUBIRAN", - "nomCommune": "PONSAN SOUBIRAN" + "codePostal": "77830", + "codeCommune": "77480", + "libelleAcheminement": "VALENCE EN BRIE", + "nomCommune": "VALENCE EN BRIE" }, { - "codePostal": "32390", - "codeCommune": "32329", - "libelleAcheminement": "PRECHAC", - "nomCommune": "PRECHAC" + "codePostal": "77390", + "codeCommune": "77493", + "libelleAcheminement": "VERNEUIL L ETANG", + "nomCommune": "VERNEUIL L ETANG" }, { - "codePostal": "32190", - "codeCommune": "32332", - "libelleAcheminement": "PRENERON", - "nomCommune": "PRENERON" + "codePostal": "77370", + "codeCommune": "77496", + "libelleAcheminement": "VIEUX CHAMPAGNE", + "nomCommune": "VIEUX CHAMPAGNE" }, { - "codePostal": "32600", - "codeCommune": "32334", - "libelleAcheminement": "PUJAUDRAN", - "nomCommune": "PUJAUDRAN" + "codePostal": "77450", + "codeCommune": "77498", + "libelleAcheminement": "VIGNELY", + "nomCommune": "VIGNELY" }, { - "codePostal": "32120", - "codeCommune": "32335", - "libelleAcheminement": "PUYCASQUIER", - "nomCommune": "PUYCASQUIER" + "codePostal": "77174", + "codeCommune": "77508", + "libelleAcheminement": "VILLENEUVE LE COMTE", + "nomCommune": "VILLENEUVE LE COMTE" }, { - "codePostal": "32600", - "codeCommune": "32339", - "libelleAcheminement": "RAZENGUES", - "nomCommune": "RAZENGUES" + "codePostal": "77174", + "codeCommune": "77510", + "libelleAcheminement": "VILLENEUVE ST DENIS", + "nomCommune": "VILLENEUVE ST DENIS" }, { - "codePostal": "32230", - "codeCommune": "32342", - "libelleAcheminement": "RICOURT", - "nomCommune": "RICOURT" + "codePostal": "77270", + "codeCommune": "77514", + "libelleAcheminement": "VILLEPARISIS", + "nomCommune": "VILLEPARISIS" }, { - "codePostal": "32400", - "codeCommune": "32344", - "libelleAcheminement": "RISCLE", - "nomCommune": "RISCLE" + "codePostal": "77760", + "codeCommune": "77520", + "libelleAcheminement": "VILLIERS SOUS GREZ", + "nomCommune": "VILLIERS SOUS GREZ" }, { - "codePostal": "32480", - "codeCommune": "32345", - "libelleAcheminement": "LA ROMIEU", - "nomCommune": "LA ROMIEU" + "codePostal": "77580", + "codeCommune": "77529", + "libelleAcheminement": "VOULANGIS", + "nomCommune": "VOULANGIS" }, { - "codePostal": "32290", - "codeCommune": "32354", - "libelleAcheminement": "SABAZAN", - "nomCommune": "SABAZAN" + "codePostal": "77940", + "codeCommune": "77531", + "libelleAcheminement": "VOULX", + "nomCommune": "VOULX" }, { - "codePostal": "32120", - "codeCommune": "32359", - "libelleAcheminement": "ST ANTONIN", - "nomCommune": "ST ANTONIN" + "codePostal": "77160", + "codeCommune": "77532", + "libelleAcheminement": "VULAINES LES PROVINS", + "nomCommune": "VULAINES LES PROVINS" }, { - "codePostal": "32350", - "codeCommune": "32360", - "libelleAcheminement": "ST ARAILLES", - "nomCommune": "ST ARAILLES" + "codePostal": "77390", + "codeCommune": "77534", + "libelleAcheminement": "YEBLES", + "nomCommune": "YEBLES" }, { - "codePostal": "32140", - "codeCommune": "32365", - "libelleAcheminement": "ST BLANCARD", - "nomCommune": "ST BLANCARD" + "codePostal": "78260", + "codeCommune": "78005", + "libelleAcheminement": "ACHERES", + "nomCommune": "ACHERES" }, { - "codePostal": "32120", - "codeCommune": "32366", - "libelleAcheminement": "ST BRES", - "nomCommune": "ST BRES" + "codePostal": "78240", + "codeCommune": "78007", + "libelleAcheminement": "AIGREMONT", + "nomCommune": "AIGREMONT" }, { - "codePostal": "32300", - "codeCommune": "32389", - "libelleAcheminement": "ST MARTIN", - "nomCommune": "ST MARTIN" + "codePostal": "78570", + "codeCommune": "78015", + "libelleAcheminement": "ANDRESY", + "nomCommune": "ANDRESY" }, { - "codePostal": "32480", - "codeCommune": "32391", - "libelleAcheminement": "ST MARTIN DE GOYNE", - "nomCommune": "ST MARTIN DE GOYNE" + "codePostal": "78790", + "codeCommune": "78020", + "libelleAcheminement": "ARNOUVILLE LES MANTES", + "nomCommune": "ARNOUVILLE LES MANTES" }, { - "codePostal": "32300", - "codeCommune": "32393", - "libelleAcheminement": "ST MAUR", - "nomCommune": "ST MAUR" + "codePostal": "78410", + "codeCommune": "78029", + "libelleAcheminement": "AUBERGENVILLE", + "nomCommune": "AUBERGENVILLE" }, { - "codePostal": "32700", - "codeCommune": "32396", - "libelleAcheminement": "ST MEZARD", - "nomCommune": "ST MEZARD" + "codePostal": "78126", + "codeCommune": "78033", + "libelleAcheminement": "AULNAY SUR MAULDRE", + "nomCommune": "AULNAY SUR MAULDRE" }, { - "codePostal": "32400", - "codeCommune": "32398", - "libelleAcheminement": "ST MONT", - "nomCommune": "ST MONT" + "codePostal": "78770", + "codeCommune": "78036", + "libelleAcheminement": "AUTOUILLET", + "nomCommune": "AUTOUILLET" }, { - "codePostal": "32120", - "codeCommune": "32399", - "libelleAcheminement": "ST ORENS", - "nomCommune": "ST ORENS" + "codePostal": "78870", + "codeCommune": "78043", + "libelleAcheminement": "BAILLY", + "nomCommune": "BAILLY" }, { - "codePostal": "32310", - "codeCommune": "32404", - "libelleAcheminement": "ST PUY", - "nomCommune": "ST PUY" + "codePostal": "78490", + "codeCommune": "78050", + "libelleAcheminement": "BAZOCHES SUR GUYONNE", + "nomCommune": "BAZOCHES SUR GUYONNE" }, { - "codePostal": "32500", - "codeCommune": "32405", - "libelleAcheminement": "STE RADEGONDE", - "nomCommune": "STE RADEGONDE" + "codePostal": "78270", + "codeCommune": "78057", + "libelleAcheminement": "BENNECOURT", + "nomCommune": "BENNECOURT" }, { - "codePostal": "32140", - "codeCommune": "32409", - "libelleAcheminement": "SAMARAN", - "nomCommune": "SAMARAN" + "codePostal": "78650", + "codeCommune": "78062", + "libelleAcheminement": "BEYNES", + "nomCommune": "BEYNES" }, { - "codePostal": "32260", - "codeCommune": "32411", - "libelleAcheminement": "SANSAN", - "nomCommune": "SANSAN" + "codePostal": "78390", + "codeCommune": "78073", + "libelleAcheminement": "BOIS D ARCY", + "nomCommune": "BOIS D ARCY" }, { - "codePostal": "32260", - "codeCommune": "32426", - "libelleAcheminement": "SEISSAN", - "nomCommune": "SEISSAN" + "codePostal": "78530", + "codeCommune": "78117", + "libelleAcheminement": "BUC", + "nomCommune": "BUC" }, { - "codePostal": "32230", - "codeCommune": "32427", - "libelleAcheminement": "SEMBOUES", - "nomCommune": "SEMBOUES" + "codePostal": "78955", + "codeCommune": "78123", + "libelleAcheminement": "CARRIERES SOUS POISSY", + "nomCommune": "CARRIERES SOUS POISSY" }, { - "codePostal": "32120", - "codeCommune": "32431", - "libelleAcheminement": "SEREMPUY", - "nomCommune": "SEREMPUY" + "codePostal": "78420", + "codeCommune": "78124", + "libelleAcheminement": "CARRIERES SUR SEINE", + "nomCommune": "CARRIERES SUR SEINE" }, { - "codePostal": "32260", - "codeCommune": "32438", - "libelleAcheminement": "TACHOIRES", - "nomCommune": "TACHOIRES" + "codePostal": "78170", + "codeCommune": "78126", + "libelleAcheminement": "LA CELLE ST CLOUD", + "nomCommune": "LA CELLE ST CLOUD" }, { - "codePostal": "32120", - "codeCommune": "32441", - "libelleAcheminement": "TAYBOSC", - "nomCommune": "TAYBOSC" + "codePostal": "78720", + "codeCommune": "78128", + "libelleAcheminement": "CERNAY LA VILLE", + "nomCommune": "CERNAY LA VILLE" }, { - "codePostal": "32400", - "codeCommune": "32443", - "libelleAcheminement": "TERMES D ARMAGNAC", - "nomCommune": "TERMES D ARMAGNAC" + "codePostal": "78117", + "codeCommune": "78143", + "libelleAcheminement": "CHATEAUFORT", + "nomCommune": "CHATEAUFORT" }, { - "codePostal": "32230", - "codeCommune": "32450", - "libelleAcheminement": "TOURDUN", - "nomCommune": "TOURDUN" + "codePostal": "78150", + "codeCommune": "78158", + "libelleAcheminement": "LE CHESNAY ROCQUENCOURT", + "nomCommune": "LE CHESNAY ROCQUENCOURT" }, { - "codePostal": "32390", - "codeCommune": "32453", - "libelleAcheminement": "TOURRENQUETS", - "nomCommune": "TOURRENQUETS" + "codePostal": "78121", + "codeCommune": "78189", + "libelleAcheminement": "CRESPIERES", + "nomCommune": "CRESPIERES" }, { - "codePostal": "32500", - "codeCommune": "32457", - "libelleAcheminement": "URDENS", - "nomCommune": "URDENS" + "codePostal": "78720", + "codeCommune": "78193", + "libelleAcheminement": "DAMPIERRE EN YVELINES", + "nomCommune": "DAMPIERRE EN YVELINES" }, { - "codePostal": "32310", - "codeCommune": "32459", - "libelleAcheminement": "VALENCE SUR BAISE", - "nomCommune": "VALENCE SUR BAISE" + "codePostal": "78720", + "codeCommune": "78193", + "libelleAcheminement": "DAMPIERRE EN YVELINES", + "nomCommune": "DAMPIERRE EN YVELINES" }, { - "codePostal": "32720", - "codeCommune": "32460", - "libelleAcheminement": "VERGOIGNAN", - "nomCommune": "VERGOIGNAN" + "codePostal": "78690", + "codeCommune": "78220", + "libelleAcheminement": "LES ESSARTS LE ROI", + "nomCommune": "LES ESSARTS LE ROI" }, { - "codePostal": "32190", - "codeCommune": "32462", - "libelleAcheminement": "VIC FEZENSAC", - "nomCommune": "VIC FEZENSAC" + "codePostal": "78810", + "codeCommune": "78233", + "libelleAcheminement": "FEUCHEROLLES", + "nomCommune": "FEUCHEROLLES" }, { - "codePostal": "32420", - "codeCommune": "32465", - "libelleAcheminement": "VILLEFRANCHE", - "nomCommune": "VILLEFRANCHE" + "codePostal": "78520", + "codeCommune": "78239", + "libelleAcheminement": "FOLLAINVILLE DENNEMONT", + "nomCommune": "FOLLAINVILLE DENNEMONT" }, { - "codePostal": "33230", - "codeCommune": "33001", - "libelleAcheminement": "ABZAC", - "nomCommune": "ABZAC" + "codePostal": "78270", + "codeCommune": "78276", + "libelleAcheminement": "GOMMECOURT", + "nomCommune": "GOMMECOURT" }, { - "codePostal": "33390", - "codeCommune": "33006", - "libelleAcheminement": "ANGLADE", - "nomCommune": "ANGLADE" + "codePostal": "78930", + "codeCommune": "78281", + "libelleAcheminement": "GOUSSONVILLE", + "nomCommune": "GOUSSONVILLE" }, { - "codePostal": "33120", - "codeCommune": "33009", - "libelleAcheminement": "ARCACHON", - "nomCommune": "ARCACHON" + "codePostal": "78280", + "codeCommune": "78297", + "libelleAcheminement": "GUYANCOURT", + "nomCommune": "GUYANCOURT" }, { - "codePostal": "33370", - "codeCommune": "33013", - "libelleAcheminement": "ARTIGUES PRES BORDEAUX", - "nomCommune": "ARTIGUES PRES BORDEAUX" + "codePostal": "78280", + "codeCommune": "78297", + "libelleAcheminement": "GUYANCOURT", + "nomCommune": "GUYANCOURT" }, { - "codePostal": "33240", - "codeCommune": "33018", - "libelleAcheminement": "VAL DE VIRVEE", - "nomCommune": "VAL DE VIRVEE" + "codePostal": "78580", + "codeCommune": "78305", + "libelleAcheminement": "HERBEVILLE", + "nomCommune": "HERBEVILLE" }, { - "codePostal": "33730", - "codeCommune": "33026", - "libelleAcheminement": "BALIZAC", - "nomCommune": "BALIZAC" + "codePostal": "78550", + "codeCommune": "78310", + "libelleAcheminement": "HOUDAN", + "nomCommune": "HOUDAN" }, { - "codePostal": "33340", - "codeCommune": "33038", - "libelleAcheminement": "BEGADAN", - "nomCommune": "BEGADAN" + "codePostal": "78270", + "codeCommune": "78320", + "libelleAcheminement": "NOTRE DAME DE LA MER", + "nomCommune": "NOTRE DAME DE LA MER" }, { - "codePostal": "33130", - "codeCommune": "33039", - "libelleAcheminement": "BEGLES", - "nomCommune": "BEGLES" + "codePostal": "78760", + "codeCommune": "78321", + "libelleAcheminement": "JOUARS PONTCHARTRAIN", + "nomCommune": "JOUARS PONTCHARTRAIN" }, { - "codePostal": "33430", - "codeCommune": "33046", - "libelleAcheminement": "BERNOS BEAULAC", - "nomCommune": "BERNOS BEAULAC" + "codePostal": "78320", + "codeCommune": "78334", + "libelleAcheminement": "LEVIS ST NOM", + "nomCommune": "LEVIS ST NOM" }, { - "codePostal": "33124", - "codeCommune": "33048", - "libelleAcheminement": "BERTHEZ", - "nomCommune": "BERTHEZ" + "codePostal": "78520", + "codeCommune": "78335", + "libelleAcheminement": "LIMAY", + "nomCommune": "LIMAY" }, { - "codePostal": "33380", - "codeCommune": "33051", - "libelleAcheminement": "BIGANOS", - "nomCommune": "BIGANOS" + "codePostal": "78490", + "codeCommune": "78366", + "libelleAcheminement": "MAREIL LE GUYON", + "nomCommune": "MAREIL LE GUYON" }, { - "codePostal": "33210", - "codeCommune": "33060", - "libelleAcheminement": "BOMMES", - "nomCommune": "BOMMES" + "codePostal": "78160", + "codeCommune": "78372", + "libelleAcheminement": "MARLY LE ROI", + "nomCommune": "MARLY LE ROI" }, { - "codePostal": "33200", - "codeCommune": "33063", - "libelleAcheminement": "BORDEAUX", - "nomCommune": "BORDEAUX" + "codePostal": "78490", + "codeCommune": "78398", + "libelleAcheminement": "LES MESNULS", + "nomCommune": "LES MESNULS" }, { - "codePostal": "33270", - "codeCommune": "33065", - "libelleAcheminement": "BOULIAC", - "nomCommune": "BOULIAC" + "codePostal": "78440", + "codeCommune": "78416", + "libelleAcheminement": "MONTALET LE BOIS", + "nomCommune": "MONTALET LE BOIS" }, { - "codePostal": "33124", - "codeCommune": "33072", - "libelleAcheminement": "BRANNENS", - "nomCommune": "BRANNENS" + "codePostal": "78790", + "codeCommune": "78417", + "libelleAcheminement": "MONTCHAUVET", + "nomCommune": "MONTCHAUVET" }, { - "codePostal": "33124", - "codeCommune": "33074", - "libelleAcheminement": "BROUQUEYRAN", - "nomCommune": "BROUQUEYRAN" + "codePostal": "78410", + "codeCommune": "78451", + "libelleAcheminement": "NEZEL", + "nomCommune": "NEZEL" }, { - "codePostal": "33520", - "codeCommune": "33075", - "libelleAcheminement": "BRUGES", - "nomCommune": "BRUGES" + "codePostal": "78200", + "codeCommune": "78484", + "libelleAcheminement": "PERDREAUVILLE", + "nomCommune": "PERDREAUVILLE" }, { - "codePostal": "33410", - "codeCommune": "33081", - "libelleAcheminement": "CADILLAC", - "nomCommune": "CADILLAC" + "codePostal": "78125", + "codeCommune": "78516", + "libelleAcheminement": "RAIZEUX", + "nomCommune": "RAIZEUX" }, { - "codePostal": "33420", - "codeCommune": "33086", - "libelleAcheminement": "CAMIAC ET ST DENIS", - "nomCommune": "CAMIAC ET ST DENIS" + "codePostal": "78790", + "codeCommune": "78565", + "libelleAcheminement": "ST MARTIN DES CHAMPS", + "nomCommune": "ST MARTIN DES CHAMPS" }, { - "codePostal": "33190", - "codeCommune": "33087", - "libelleAcheminement": "CAMIRAN", - "nomCommune": "CAMIRAN" + "codePostal": "78730", + "codeCommune": "78569", + "libelleAcheminement": "STE MESME", + "nomCommune": "STE MESME" }, { - "codePostal": "33550", - "codeCommune": "33093", - "libelleAcheminement": "CAPIAN", - "nomCommune": "CAPIAN" + "codePostal": "78860", + "codeCommune": "78571", + "libelleAcheminement": "ST NOM LA BRETECHE", + "nomCommune": "ST NOM LA BRETECHE" }, { - "codePostal": "33360", - "codeCommune": "33118", - "libelleAcheminement": "CENAC", - "nomCommune": "CENAC" + "codePostal": "78690", + "codeCommune": "78576", + "libelleAcheminement": "ST REMY L HONORE", + "nomCommune": "ST REMY L HONORE" }, { - "codePostal": "33610", - "codeCommune": "33122", - "libelleAcheminement": "CESTAS", - "nomCommune": "CESTAS" + "codePostal": "78850", + "codeCommune": "78615", + "libelleAcheminement": "THIVERVAL GRIGNON", + "nomCommune": "THIVERVAL GRIGNON" }, { - "codePostal": "33350", - "codeCommune": "33127", - "libelleAcheminement": "CIVRAC SUR DORDOGNE", - "nomCommune": "CIVRAC SUR DORDOGNE" + "codePostal": "78510", + "codeCommune": "78624", + "libelleAcheminement": "TRIEL SUR SEINE", + "nomCommune": "TRIEL SUR SEINE" }, { - "codePostal": "33210", - "codeCommune": "33130", - "libelleAcheminement": "COIMERES", - "nomCommune": "COIMERES" + "codePostal": "78480", + "codeCommune": "78642", + "libelleAcheminement": "VERNEUIL SUR SEINE", + "nomCommune": "VERNEUIL SUR SEINE" }, { - "codePostal": "33540", - "codeCommune": "33131", - "libelleAcheminement": "COIRAC", - "nomCommune": "COIRAC" + "codePostal": "78320", + "codeCommune": "78644", + "libelleAcheminement": "LA VERRIERE", + "nomCommune": "LA VERRIERE" }, { - "codePostal": "33760", - "codeCommune": "33135", - "libelleAcheminement": "COURPIAC", - "nomCommune": "COURPIAC" + "codePostal": "78930", + "codeCommune": "78647", + "libelleAcheminement": "VERT", + "nomCommune": "VERT" }, { - "codePostal": "33670", - "codeCommune": "33140", - "libelleAcheminement": "CREON", - "nomCommune": "CREON" + "codePostal": "78490", + "codeCommune": "78653", + "libelleAcheminement": "VICQ", + "nomCommune": "VICQ" }, { - "codePostal": "33460", - "codeCommune": "33146", - "libelleAcheminement": "CUSSAC FORT MEDOC", - "nomCommune": "CUSSAC FORT MEDOC" + "codePostal": "78930", + "codeCommune": "78677", + "libelleAcheminement": "VILLETTE", + "nomCommune": "VILLETTE" }, { - "codePostal": "33420", - "codeCommune": "33147", - "libelleAcheminement": "DAIGNAC", - "nomCommune": "DAIGNAC" + "codePostal": "79210", + "codeCommune": "79009", + "libelleAcheminement": "AMURE", + "nomCommune": "AMURE" }, { - "codePostal": "33580", - "codeCommune": "33150", - "libelleAcheminement": "DIEULIVOL", - "nomCommune": "DIEULIVOL" + "codePostal": "79210", + "codeCommune": "79010", + "libelleAcheminement": "ARCAIS", + "nomCommune": "ARCAIS" }, { - "codePostal": "33320", - "codeCommune": "33162", - "libelleAcheminement": "EYSINES", - "nomCommune": "EYSINES" + "codePostal": "79150", + "codeCommune": "79013", + "libelleAcheminement": "ARGENTONNAY", + "nomCommune": "ARGENTONNAY" }, { - "codePostal": "33760", - "codeCommune": "33163", - "libelleAcheminement": "FALEYRAS", - "nomCommune": "FALEYRAS" + "codePostal": "79290", + "codeCommune": "79014", + "libelleAcheminement": "LORETZ D ARGENTON", + "nomCommune": "LORETZ D ARGENTON" }, { - "codePostal": "33350", - "codeCommune": "33168", - "libelleAcheminement": "FLAUJAGUES", - "nomCommune": "FLAUJAGUES" + "codePostal": "79600", + "codeCommune": "79016", + "libelleAcheminement": "ASSAIS LES JUMEAUX", + "nomCommune": "ASSAIS LES JUMEAUX" }, { - "codePostal": "33190", - "codeCommune": "33169", - "libelleAcheminement": "FLOUDES", - "nomCommune": "FLOUDES" + "codePostal": "79600", + "codeCommune": "79022", + "libelleAcheminement": "AVAILLES THOUARSAIS", + "nomCommune": "AVAILLES THOUARSAIS" }, { - "codePostal": "33540", - "codeCommune": "33189", - "libelleAcheminement": "GORNAC", - "nomCommune": "GORNAC" + "codePostal": "79360", + "codeCommune": "79031", + "libelleAcheminement": "BEAUVOIR SUR NIORT", + "nomCommune": "BEAUVOIR SUR NIORT" }, { - "codePostal": "33170", - "codeCommune": "33192", - "libelleAcheminement": "GRADIGNAN", - "nomCommune": "GRADIGNAN" + "codePostal": "79300", + "codeCommune": "79038", + "libelleAcheminement": "BOISME", + "nomCommune": "BOISME" }, { - "codePostal": "33590", - "codeCommune": "33193", - "libelleAcheminement": "GRAYAN ET L HOPITAL", - "nomCommune": "GRAYAN ET L HOPITAL" + "codePostal": "79800", + "codeCommune": "79042", + "libelleAcheminement": "BOUGON", + "nomCommune": "BOUGON" }, { - "codePostal": "33125", - "codeCommune": "33202", - "libelleAcheminement": "HOSTENS", - "nomCommune": "HOSTENS" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "33190", - "codeCommune": "33204", - "libelleAcheminement": "HURE", - "nomCommune": "HURE" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "33450", - "codeCommune": "33207", - "libelleAcheminement": "IZON", - "nomCommune": "IZON" + "codePostal": "79140", + "codeCommune": "79050", + "libelleAcheminement": "BRETIGNOLLES", + "nomCommune": "BRETIGNOLLES" }, { - "codePostal": "33760", - "codeCommune": "33215", - "libelleAcheminement": "LADAUX", - "nomCommune": "LADAUX" + "codePostal": "79290", + "codeCommune": "79056", + "libelleAcheminement": "BRION PRES THOUET", + "nomCommune": "BRION PRES THOUET" }, { - "codePostal": "33230", - "codeCommune": "33218", - "libelleAcheminement": "LAGORCE", - "nomCommune": "LAGORCE" + "codePostal": "79240", + "codeCommune": "79059", + "libelleAcheminement": "LE BUSSEAU", + "nomCommune": "LE BUSSEAU" }, { - "codePostal": "33240", - "codeCommune": "33219", - "libelleAcheminement": "LA LANDE DE FRONSAC", - "nomCommune": "LA LANDE DE FRONSAC" + "codePostal": "79370", + "codeCommune": "79061", + "libelleAcheminement": "CELLES SUR BELLE", + "nomCommune": "CELLES SUR BELLE" }, { - "codePostal": "33540", - "codeCommune": "33224", - "libelleAcheminement": "LANDERROUET SUR SEGUR", - "nomCommune": "LANDERROUET SUR SEGUR" + "codePostal": "79290", + "codeCommune": "79063", + "libelleAcheminement": "VAL EN VIGNES", + "nomCommune": "VAL EN VIGNES" }, { - "codePostal": "33710", - "codeCommune": "33228", - "libelleAcheminement": "LANSAC", - "nomCommune": "LANSAC" + "codePostal": "79700", + "codeCommune": "79079", + "libelleAcheminement": "MAULEON", + "nomCommune": "MAULEON" }, { - "codePostal": "33950", - "codeCommune": "33236", - "libelleAcheminement": "LEGE CAP FERRET", - "nomCommune": "LEGE CAP FERRET" + "codePostal": "79700", + "codeCommune": "79079", + "libelleAcheminement": "MAULEON", + "nomCommune": "MAULEON" }, { - "codePostal": "33950", - "codeCommune": "33236", - "libelleAcheminement": "LEGE CAP FERRET", - "nomCommune": "LEGE CAP FERRET" + "codePostal": "79200", + "codeCommune": "79080", + "libelleAcheminement": "CHATILLON SUR THOUET", + "nomCommune": "CHATILLON SUR THOUET" }, { - "codePostal": "33210", - "codeCommune": "33237", - "libelleAcheminement": "LEOGEATS", - "nomCommune": "LEOGEATS" + "codePostal": "79110", + "codeCommune": "79083", + "libelleAcheminement": "CHEF BOUTONNE", + "nomCommune": "CHEF BOUTONNE" }, { - "codePostal": "33360", - "codeCommune": "33245", - "libelleAcheminement": "LIGNAN DE BORDEAUX", - "nomCommune": "LIGNAN DE BORDEAUX" + "codePostal": "79110", + "codeCommune": "79083", + "libelleAcheminement": "CHEF BOUTONNE", + "nomCommune": "CHEF BOUTONNE" }, { - "codePostal": "33125", - "codeCommune": "33251", - "libelleAcheminement": "LOUCHATS", - "nomCommune": "LOUCHATS" + "codePostal": "79420", + "codeCommune": "79092", + "libelleAcheminement": "CLAVE", + "nomCommune": "CLAVE" }, { - "codePostal": "33190", - "codeCommune": "33254", - "libelleAcheminement": "LOUPIAC DE LA REOLE", - "nomCommune": "LOUPIAC DE LA REOLE" + "codePostal": "79190", + "codeCommune": "79095", + "libelleAcheminement": "CLUSSAIS LA POMMERAIE", + "nomCommune": "CLUSSAIS LA POMMERAIE" }, { - "codePostal": "33670", - "codeCommune": "33263", - "libelleAcheminement": "MADIRAC", - "nomCommune": "MADIRAC" + "codePostal": "79110", + "codeCommune": "79106", + "libelleAcheminement": "COUTURE D ARGENSON", + "nomCommune": "COUTURE D ARGENSON" }, { - "codePostal": "33460", - "codeCommune": "33268", - "libelleAcheminement": "MARGAUX CANTENAC", - "nomCommune": "MARGAUX CANTENAC" + "codePostal": "79390", + "codeCommune": "79108", + "libelleAcheminement": "DOUX", + "nomCommune": "DOUX" }, { - "codePostal": "33760", - "codeCommune": "33275", - "libelleAcheminement": "MARTRES", - "nomCommune": "MARTRES" + "codePostal": "79410", + "codeCommune": "79109", + "libelleAcheminement": "ECHIRE", + "nomCommune": "ECHIRE" }, { - "codePostal": "33540", - "codeCommune": "33283", - "libelleAcheminement": "MESTERRIEUX", - "nomCommune": "MESTERRIEUX" + "codePostal": "79110", + "codeCommune": "79122", + "libelleAcheminement": "FONTENILLE ST MARTIN ENTRAIGUES", + "nomCommune": "FONTENILLE ST MARTIN D ENTRAIGUES" }, { - "codePostal": "33710", - "codeCommune": "33285", - "libelleAcheminement": "MOMBRIER", - "nomCommune": "MOMBRIER" + "codePostal": "79110", + "codeCommune": "79122", + "libelleAcheminement": "FONTENILLE ST MARTIN ENTRAIGUES", + "nomCommune": "FONTENILLE ST MARTIN D ENTRAIGUES" }, { - "codePostal": "33580", - "codeCommune": "33289", - "libelleAcheminement": "MONSEGUR", - "nomCommune": "MONSEGUR" + "codePostal": "79380", + "codeCommune": "79123", + "libelleAcheminement": "LA FORET SUR SEVRE", + "nomCommune": "LA FORET SUR SEVRE" }, { - "codePostal": "33570", - "codeCommune": "33290", - "libelleAcheminement": "MONTAGNE", - "nomCommune": "MONTAGNE" + "codePostal": "79330", + "codeCommune": "79131", + "libelleAcheminement": "GEAY", + "nomCommune": "GEAY" }, { - "codePostal": "33760", - "codeCommune": "33292", - "libelleAcheminement": "MONTIGNAC", - "nomCommune": "MONTIGNAC" + "codePostal": "79220", + "codeCommune": "79133", + "libelleAcheminement": "GERMOND ROUVRE", + "nomCommune": "GERMOND ROUVRE" }, { - "codePostal": "33420", - "codeCommune": "33298", - "libelleAcheminement": "MOULON", - "nomCommune": "MOULON" + "codePostal": "79190", + "codeCommune": "79136", + "libelleAcheminement": "ALLOINAY", + "nomCommune": "ALLOINAY" }, { - "codePostal": "33730", - "codeCommune": "33307", - "libelleAcheminement": "NOAILLAN", - "nomCommune": "NOAILLAN" + "codePostal": "79110", + "codeCommune": "79140", + "libelleAcheminement": "VALDELAUME", + "nomCommune": "VALDELAUME" }, { - "codePostal": "33113", - "codeCommune": "33310", - "libelleAcheminement": "ORIGNE", - "nomCommune": "ORIGNE" + "codePostal": "79110", + "codeCommune": "79140", + "libelleAcheminement": "VALDELAUME", + "nomCommune": "VALDELAUME" }, { - "codePostal": "33240", - "codeCommune": "33317", - "libelleAcheminement": "PERISSAC", - "nomCommune": "PERISSAC" + "codePostal": "79170", + "codeCommune": "79142", + "libelleAcheminement": "JUILLE", + "nomCommune": "JUILLE" }, { - "codePostal": "33600", - "codeCommune": "33318", - "libelleAcheminement": "PESSAC", - "nomCommune": "PESSAC" + "codePostal": "79200", + "codeCommune": "79145", + "libelleAcheminement": "LAGEON", + "nomCommune": "LAGEON" }, { - "codePostal": "33390", - "codeCommune": "33325", - "libelleAcheminement": "PLASSAC", - "nomCommune": "PLASSAC" + "codePostal": "79240", + "codeCommune": "79147", + "libelleAcheminement": "LARGEASSE", + "nomCommune": "LARGEASSE" }, { - "codePostal": "33730", - "codeCommune": "33336", - "libelleAcheminement": "PRECHAC", - "nomCommune": "PRECHAC" + "codePostal": "79110", + "codeCommune": "79153", + "libelleAcheminement": "LOUBIGNE", + "nomCommune": "LOUBIGNE" }, { - "codePostal": "33210", - "codeCommune": "33337", - "libelleAcheminement": "PREIGNAC", - "nomCommune": "PREIGNAC" + "codePostal": "79190", + "codeCommune": "79163", + "libelleAcheminement": "MAIRE LEVESCAULT", + "nomCommune": "MAIRE LEVESCAULT" }, { - "codePostal": "33210", - "codeCommune": "33343", - "libelleAcheminement": "PUJOLS SUR CIRON", - "nomCommune": "PUJOLS SUR CIRON" + "codePostal": "79600", + "codeCommune": "79165", + "libelleAcheminement": "MAISONTIERS", + "nomCommune": "MAISONTIERS" }, { - "codePostal": "33660", - "codeCommune": "33347", - "libelleAcheminement": "PUYNORMAND", - "nomCommune": "PUYNORMAND" + "codePostal": "79600", + "codeCommune": "79167", + "libelleAcheminement": "MARNES", + "nomCommune": "MARNES" }, { - "codePostal": "33340", - "codeCommune": "33348", - "libelleAcheminement": "QUEYRAC", - "nomCommune": "QUEYRAC" + "codePostal": "79340", + "codeCommune": "79176", + "libelleAcheminement": "MENIGOUTE", + "nomCommune": "MENIGOUTE" }, { - "codePostal": "33190", - "codeCommune": "33352", - "libelleAcheminement": "LA REOLE", - "nomCommune": "LA REOLE" + "codePostal": "79240", + "codeCommune": "79179", + "libelleAcheminement": "MONCOUTANT SUR SEVRE", + "nomCommune": "MONCOUTANT SUR SEVRE" }, { - "codePostal": "33210", - "codeCommune": "33357", - "libelleAcheminement": "ROAILLAN", - "nomCommune": "ROAILLAN" + "codePostal": "79190", + "codeCommune": "79180", + "libelleAcheminement": "MONTALEMBERT", + "nomCommune": "MONTALEMBERT" }, { - "codePostal": "33350", - "codeCommune": "33361", - "libelleAcheminement": "RUCH", - "nomCommune": "RUCH" + "codePostal": "79370", + "codeCommune": "79185", + "libelleAcheminement": "AIGONDIGNE", + "nomCommune": "AIGONDIGNE" }, { - "codePostal": "33141", - "codeCommune": "33364", - "libelleAcheminement": "SAILLANS", - "nomCommune": "SAILLANS" + "codePostal": "79000", + "codeCommune": "79191", + "libelleAcheminement": "NIORT", + "nomCommune": "NIORT" }, { - "codePostal": "33490", - "codeCommune": "33367", - "libelleAcheminement": "ST ANDRE DU BOIS", - "nomCommune": "ST ANDRE DU BOIS" + "codePostal": "79200", + "codeCommune": "79213", + "libelleAcheminement": "POMPAIRE", + "nomCommune": "POMPAIRE" }, { - "codePostal": "33790", - "codeCommune": "33372", - "libelleAcheminement": "ST ANTOINE DU QUEYRET", - "nomCommune": "ST ANTOINE DU QUEYRET" + "codePostal": "79370", + "codeCommune": "79217", + "libelleAcheminement": "PRAILLES LA COUARDE", + "nomCommune": "PRAILLES LA COUARDE" }, { - "codePostal": "33220", - "codeCommune": "33378", - "libelleAcheminement": "ST AVIT ST NAZAIRE", - "nomCommune": "ST AVIT ST NAZAIRE" + "codePostal": "79390", + "codeCommune": "79218", + "libelleAcheminement": "PRESSIGNY", + "nomCommune": "PRESSIGNY" }, { - "codePostal": "33820", - "codeCommune": "33380", - "libelleAcheminement": "VAL DE LIVENNE", - "nomCommune": "VAL DE LIVENNE" + "codePostal": "79210", + "codeCommune": "79220", + "libelleAcheminement": "PRIN DEYRANCON", + "nomCommune": "PRIN DEYRANCON" }, { - "codePostal": "33910", - "codeCommune": "33387", - "libelleAcheminement": "ST CIERS D ABZAC", - "nomCommune": "ST CIERS D ABZAC" + "codePostal": "79420", + "codeCommune": "79225", + "libelleAcheminement": "REFFANNES", + "nomCommune": "REFFANNES" }, { - "codePostal": "33180", - "codeCommune": "33395", - "libelleAcheminement": "ST ESTEPHE", - "nomCommune": "ST ESTEPHE" + "codePostal": "79410", + "codeCommune": "79249", + "libelleAcheminement": "ST GELAIS", + "nomCommune": "ST GELAIS" }, { - "codePostal": "33540", - "codeCommune": "33399", - "libelleAcheminement": "ST FELIX DE FONCAUDE", - "nomCommune": "ST FELIX DE FONCAUDE" + "codePostal": "79210", + "codeCommune": "79254", + "libelleAcheminement": "ST GEORGES DE REX", + "nomCommune": "ST GEORGES DE REX" }, { - "codePostal": "33580", - "codeCommune": "33400", - "libelleAcheminement": "ST FERME", - "nomCommune": "ST FERME" + "codePostal": "79200", + "codeCommune": "79255", + "libelleAcheminement": "ST GERMAIN DE LONGUE CHAUME", + "nomCommune": "ST GERMAIN DE LONGUE CHAUME" }, { - "codePostal": "33760", - "codeCommune": "33409", - "libelleAcheminement": "ST GENIS DU BOIS", - "nomCommune": "ST GENIS DU BOIS" + "codePostal": "79210", + "codeCommune": "79257", + "libelleAcheminement": "ST HILAIRE LA PALUD", + "nomCommune": "ST HILAIRE LA PALUD" }, { - "codePostal": "33920", - "codeCommune": "33416", - "libelleAcheminement": "ST GIRONS D AIGUEVIVES", - "nomCommune": "ST GIRONS D AIGUEVIVES" + "codePostal": "79600", + "codeCommune": "79268", + "libelleAcheminement": "ST LOUP LAMAIRE", + "nomCommune": "ST LOUP LAMAIRE" }, { - "codePostal": "33420", - "codeCommune": "33421", - "libelleAcheminement": "ST JEAN DE BLAIGNAC", - "nomCommune": "ST JEAN DE BLAIGNAC" + "codePostal": "79150", + "codeCommune": "79280", + "libelleAcheminement": "ST MAURICE ETUSSON", + "nomCommune": "ST MAURICE ETUSSON" }, { - "codePostal": "33330", - "codeCommune": "33426", - "libelleAcheminement": "ST LAURENT DES COMBES", - "nomCommune": "ST LAURENT DES COMBES" + "codePostal": "79310", + "codeCommune": "79285", + "libelleAcheminement": "ST PARDOUX SOUTIERS", + "nomCommune": "ST PARDOUX SOUTIERS" }, { - "codePostal": "33540", - "codeCommune": "33427", - "libelleAcheminement": "ST LAURENT DU BOIS", - "nomCommune": "ST LAURENT DU BOIS" + "codePostal": "79500", + "codeCommune": "79295", + "libelleAcheminement": "ST ROMANS LES MELLE", + "nomCommune": "ST ROMANS LES MELLE" }, { - "codePostal": "33190", - "codeCommune": "33428", - "libelleAcheminement": "ST LAURENT DU PLAN", - "nomCommune": "ST LAURENT DU PLAN" + "codePostal": "79500", + "codeCommune": "79301", + "libelleAcheminement": "ST VINCENT LA CHATRE", + "nomCommune": "ST VINCENT LA CHATRE" }, { - "codePostal": "33125", - "codeCommune": "33436", - "libelleAcheminement": "ST MAGNE", - "nomCommune": "ST MAGNE" + "codePostal": "79800", + "codeCommune": "79303", + "libelleAcheminement": "SALLES", + "nomCommune": "SALLES" }, { - "codePostal": "33350", - "codeCommune": "33437", - "libelleAcheminement": "ST MAGNE DE CASTILLON", - "nomCommune": "ST MAGNE DE CASTILLON" + "codePostal": "79000", + "codeCommune": "79308", + "libelleAcheminement": "SCIECQ", + "nomCommune": "SCIECQ" }, { - "codePostal": "33490", - "codeCommune": "33444", - "libelleAcheminement": "ST MARTIN DE SESCAS", - "nomCommune": "ST MARTIN DE SESCAS" + "codePostal": "79170", + "codeCommune": "79312", + "libelleAcheminement": "SELIGNE", + "nomCommune": "SELIGNE" }, { - "codePostal": "33650", - "codeCommune": "33448", - "libelleAcheminement": "ST MEDARD D EYRANS", - "nomCommune": "ST MEDARD D EYRANS" + "codePostal": "79390", + "codeCommune": "79326", + "libelleAcheminement": "THENEZAY", + "nomCommune": "THENEZAY" }, { - "codePostal": "33840", - "codeCommune": "33450", - "libelleAcheminement": "ST MICHEL DE CASTELNAU", - "nomCommune": "ST MICHEL DE CASTELNAU" + "codePostal": "79360", + "codeCommune": "79334", + "libelleAcheminement": "VAL DU MIGNON", + "nomCommune": "VAL DU MIGNON" }, { - "codePostal": "33720", - "codeCommune": "33452", - "libelleAcheminement": "ST MICHEL DE RIEUFRET", - "nomCommune": "ST MICHEL DE RIEUFRET" + "codePostal": "79270", + "codeCommune": "79335", + "libelleAcheminement": "VALLANS", + "nomCommune": "VALLANS" }, { - "codePostal": "33190", - "codeCommune": "33453", - "libelleAcheminement": "ST MICHEL DE LAPUJADE", - "nomCommune": "ST MICHEL DE LAPUJADE" + "codePostal": "79120", + "codeCommune": "79336", + "libelleAcheminement": "VANCAIS", + "nomCommune": "VANCAIS" }, { - "codePostal": "33920", - "codeCommune": "33473", - "libelleAcheminement": "ST SAVIN", - "nomCommune": "ST SAVIN" + "codePostal": "79340", + "codeCommune": "79339", + "libelleAcheminement": "VASLES", + "nomCommune": "VASLES" }, { - "codePostal": "33710", - "codeCommune": "33475", - "libelleAcheminement": "ST SEURIN DE BOURG", - "nomCommune": "ST SEURIN DE BOURG" + "codePostal": "79420", + "codeCommune": "79340", + "libelleAcheminement": "VAUSSEROUX", + "nomCommune": "VAUSSEROUX" }, { - "codePostal": "33190", - "codeCommune": "33479", - "libelleAcheminement": "ST SEVE", - "nomCommune": "ST SEVE" + "codePostal": "79110", + "codeCommune": "79349", + "libelleAcheminement": "VILLEMAIN", + "nomCommune": "VILLEMAIN" }, { - "codePostal": "33710", - "codeCommune": "33500", - "libelleAcheminement": "SAMONAC", - "nomCommune": "SAMONAC" + "codePostal": "79170", + "codeCommune": "79352", + "libelleAcheminement": "VILLIERS SUR CHIZE", + "nomCommune": "VILLIERS SUR CHIZE" }, { - "codePostal": "33650", - "codeCommune": "33501", - "libelleAcheminement": "SAUCATS", - "nomCommune": "SAUCATS" + "codePostal": "79310", + "codeCommune": "79354", + "libelleAcheminement": "VOUHE", + "nomCommune": "VOUHE" }, { - "codePostal": "33920", - "codeCommune": "33502", - "libelleAcheminement": "SAUGON", - "nomCommune": "SAUGON" + "codePostal": "79230", + "codeCommune": "79355", + "libelleAcheminement": "VOUILLE", + "nomCommune": "VOUILLE" }, { - "codePostal": "33680", - "codeCommune": "33503", - "libelleAcheminement": "SAUMOS", - "nomCommune": "SAUMOS" + "codePostal": "79220", + "codeCommune": "79357", + "libelleAcheminement": "XAINTRAY", + "nomCommune": "XAINTRAY" }, { - "codePostal": "33540", - "codeCommune": "33506", - "libelleAcheminement": "SAUVETERRE DE GUYENNE", - "nomCommune": "SAUVETERRE DE GUYENNE" + "codePostal": "80200", + "codeCommune": "80015", + "libelleAcheminement": "AIZECOURT LE HAUT", + "nomCommune": "AIZECOURT LE HAUT" }, { - "codePostal": "33910", - "codeCommune": "33509", - "libelleAcheminement": "SAVIGNAC DE L ISLE", - "nomCommune": "SAVIGNAC DE L ISLE" + "codePostal": "80200", + "codeCommune": "80017", + "libelleAcheminement": "ALLAINES", + "nomCommune": "ALLAINES" }, { - "codePostal": "33690", - "codeCommune": "33512", - "libelleAcheminement": "SIGALENS", - "nomCommune": "SIGALENS" + "codePostal": "80130", + "codeCommune": "80018", + "libelleAcheminement": "ALLENAY", + "nomCommune": "ALLENAY" }, { - "codePostal": "33690", - "codeCommune": "33513", - "libelleAcheminement": "SILLAS", - "nomCommune": "SILLAS" + "codePostal": "80140", + "codeCommune": "80022", + "libelleAcheminement": "ANDAINVILLE", + "nomCommune": "ANDAINVILLE" }, { - "codePostal": "33240", - "codeCommune": "33524", - "libelleAcheminement": "TARNES", - "nomCommune": "TARNES" + "codePostal": "80700", + "codeCommune": "80027", + "libelleAcheminement": "ARMANCOURT", + "nomCommune": "ARMANCOURT" }, { - "codePostal": "33115", - "codeCommune": "33529", - "libelleAcheminement": "LA TESTE DE BUCH", - "nomCommune": "LA TESTE DE BUCH" + "codePostal": "80820", + "codeCommune": "80029", + "libelleAcheminement": "ARREST", + "nomCommune": "ARREST" }, { - "codePostal": "33115", - "codeCommune": "33529", - "libelleAcheminement": "LA TESTE DE BUCH", - "nomCommune": "LA TESTE DE BUCH" + "codePostal": "80110", + "codeCommune": "80035", + "libelleAcheminement": "AUBERCOURT", + "nomCommune": "AUBERCOURT" }, { - "codePostal": "33260", - "codeCommune": "33529", - "libelleAcheminement": "LA TESTE DE BUCH", - "nomCommune": "LA TESTE DE BUCH" + "codePostal": "80110", + "codeCommune": "80037", + "libelleAcheminement": "AUBVILLERS", + "nomCommune": "AUBVILLERS" }, { - "codePostal": "33420", - "codeCommune": "33531", - "libelleAcheminement": "TIZAC DE CURTON", - "nomCommune": "TIZAC DE CURTON" + "codePostal": "80600", + "codeCommune": "80044", + "libelleAcheminement": "AUTHIEULE", + "nomCommune": "AUTHIEULE" }, { - "codePostal": "33620", - "codeCommune": "33532", - "libelleAcheminement": "TIZAC DE LAPOUYADE", - "nomCommune": "TIZAC DE LAPOUYADE" + "codePostal": "80300", + "codeCommune": "80045", + "libelleAcheminement": "AUTHUILLE", + "nomCommune": "AUTHUILLE" }, { - "codePostal": "33730", - "codeCommune": "33537", - "libelleAcheminement": "UZESTE", - "nomCommune": "UZESTE" + "codePostal": "80600", + "codeCommune": "80055", + "libelleAcheminement": "BARLY", + "nomCommune": "BARLY" }, { - "codePostal": "33870", - "codeCommune": "33539", - "libelleAcheminement": "VAYRES", - "nomCommune": "VAYRES" + "codePostal": "80560", + "codeCommune": "80057", + "libelleAcheminement": "BAYENCOURT", + "nomCommune": "BAYENCOURT" }, { - "codePostal": "33490", - "codeCommune": "33543", - "libelleAcheminement": "VERDELAIS", - "nomCommune": "VERDELAIS" + "codePostal": "80600", + "codeCommune": "80070", + "libelleAcheminement": "BEAUQUESNE", + "nomCommune": "BEAUQUESNE" }, { - "codePostal": "33330", - "codeCommune": "33546", - "libelleAcheminement": "VIGNONET", - "nomCommune": "VIGNONET" + "codePostal": "80160", + "codeCommune": "80079", + "libelleAcheminement": "BELLEUSE", + "nomCommune": "BELLEUSE" }, { - "codePostal": "33730", - "codeCommune": "33547", - "libelleAcheminement": "VILLANDRAUT", - "nomCommune": "VILLANDRAUT" + "codePostal": "80290", + "codeCommune": "80083", + "libelleAcheminement": "BERGICOURT", + "nomCommune": "BERGICOURT" }, { - "codePostal": "34300", - "codeCommune": "34003", - "libelleAcheminement": "AGDE", - "nomCommune": "AGDE" + "codePostal": "80620", + "codeCommune": "80089", + "libelleAcheminement": "BERNEUIL", + "nomCommune": "BERNEUIL" }, { - "codePostal": "34210", - "codeCommune": "34006", - "libelleAcheminement": "AIGNE", - "nomCommune": "AIGNE" + "codePostal": "80260", + "codeCommune": "80092", + "libelleAcheminement": "BERTANGLES", + "nomCommune": "BERTANGLES" }, { - "codePostal": "34290", - "codeCommune": "34009", - "libelleAcheminement": "ALIGNAN DU VENT", - "nomCommune": "ALIGNAN DU VENT" + "codePostal": "80610", + "codeCommune": "80100", + "libelleAcheminement": "BETTENCOURT ST OUEN", + "nomCommune": "BETTENCOURT ST OUEN" }, { - "codePostal": "34530", - "codeCommune": "34017", - "libelleAcheminement": "AUMES", - "nomCommune": "AUMES" + "codePostal": "80190", + "codeCommune": "80103", + "libelleAcheminement": "BIARRE", + "nomCommune": "BIARRE" }, { - "codePostal": "34360", - "codeCommune": "34021", - "libelleAcheminement": "BABEAU BOULDOUX", - "nomCommune": "BABEAU BOULDOUX" + "codePostal": "80140", + "codeCommune": "80104", + "libelleAcheminement": "BIENCOURT", + "nomCommune": "BIENCOURT" }, { - "codePostal": "34540", - "codeCommune": "34024", - "libelleAcheminement": "BALARUC LE VIEUX", - "nomCommune": "BALARUC LE VIEUX" + "codePostal": "80230", + "codeCommune": "80110", + "libelleAcheminement": "BOISMONT", + "nomCommune": "BOISMONT" }, { - "codePostal": "34210", - "codeCommune": "34026", - "libelleAcheminement": "BEAUFORT", - "nomCommune": "BEAUFORT" + "codePostal": "80160", + "codeCommune": "80114", + "libelleAcheminement": "LE BOSQUEL", + "nomCommune": "BOSQUEL" }, { - "codePostal": "34230", - "codeCommune": "34029", - "libelleAcheminement": "BELARGA", - "nomCommune": "BELARGA" + "codePostal": "80150", + "codeCommune": "80118", + "libelleAcheminement": "BOUFFLERS", + "nomCommune": "BOUFFLERS" }, { - "codePostal": "34360", - "codeCommune": "34030", - "libelleAcheminement": "BERLOU", - "nomCommune": "BERLOU" + "codePostal": "80130", + "codeCommune": "80124", + "libelleAcheminement": "BOURSEVILLE", + "nomCommune": "BOURSEVILLE" }, { - "codePostal": "34220", - "codeCommune": "34034", - "libelleAcheminement": "BOISSET", - "nomCommune": "BOISSET" + "codePostal": "80580", + "codeCommune": "80135", + "libelleAcheminement": "BRAY LES MAREUIL", + "nomCommune": "BRAY LES MAREUIL" }, { - "codePostal": "34160", - "codeCommune": "34043", - "libelleAcheminement": "BUZIGNARGUES", - "nomCommune": "BUZIGNARGUES" + "codePostal": "80300", + "codeCommune": "80138", + "libelleAcheminement": "BRESLE", + "nomCommune": "BRESLE" }, { - "codePostal": "34330", - "codeCommune": "34046", - "libelleAcheminement": "CAMBON ET SALVERGUES", - "nomCommune": "CAMBON ET SALVERGUES" + "codePostal": "80540", + "codeCommune": "80142", + "libelleAcheminement": "BRIQUEMESNIL FLOXICOURT", + "nomCommune": "BRIQUEMESNIL FLOXICOURT" }, { - "codePostal": "34130", - "codeCommune": "34050", - "libelleAcheminement": "CANDILLARGUES", - "nomCommune": "CANDILLARGUES" + "codePostal": "80132", + "codeCommune": "80147", + "libelleAcheminement": "BUIGNY L ABBE", + "nomCommune": "BUIGNY L ABBE" }, { - "codePostal": "34310", - "codeCommune": "34052", - "libelleAcheminement": "CAPESTANG", - "nomCommune": "CAPESTANG" + "codePostal": "80220", + "codeCommune": "80148", + "libelleAcheminement": "BUIGNY LES GAMACHES", + "nomCommune": "BUIGNY LES GAMACHES" }, { - "codePostal": "34210", - "codeCommune": "34054", - "libelleAcheminement": "CASSAGNOLES", - "nomCommune": "CASSAGNOLES" + "codePostal": "80800", + "codeCommune": "80156", + "libelleAcheminement": "BUSSY LES DAOURS", + "nomCommune": "BUSSY LES DAOURS" }, { - "codePostal": "34610", - "codeCommune": "34055", - "libelleAcheminement": "CASTANET LE HAUT", - "nomCommune": "CASTANET LE HAUT" + "codePostal": "80400", + "codeCommune": "80158", + "libelleAcheminement": "BUVERCHY", + "nomCommune": "BUVERCHY" }, { - "codePostal": "34170", - "codeCommune": "34057", - "libelleAcheminement": "CASTELNAU LE LEZ", - "nomCommune": "CASTELNAU LE LEZ" + "codePostal": "80750", + "codeCommune": "80168", + "libelleAcheminement": "CANDAS", + "nomCommune": "CANDAS" }, { - "codePostal": "34160", - "codeCommune": "34058", - "libelleAcheminement": "CASTRIES", - "nomCommune": "CASTRIES" + "codePostal": "80500", + "codeCommune": "80174", + "libelleAcheminement": "LE CARDONNOIS", + "nomCommune": "LE CARDONNOIS" }, { - "codePostal": "34210", - "codeCommune": "34059", - "libelleAcheminement": "LA CAUNETTE", - "nomCommune": "LA CAUNETTE" + "codePostal": "80200", + "codeCommune": "80177", + "libelleAcheminement": "CARTIGNY", + "nomCommune": "CARTIGNY" }, { - "codePostal": "34380", - "codeCommune": "34060", - "libelleAcheminement": "CAUSSE DE LA SELLE", - "nomCommune": "CAUSSE DE LA SELLE" + "codePostal": "80800", + "codeCommune": "80184", + "libelleAcheminement": "CERISY", + "nomCommune": "CERISY" }, { - "codePostal": "34600", - "codeCommune": "34062", - "libelleAcheminement": "CAUSSINIOJOULS", - "nomCommune": "CAUSSINIOJOULS" + "codePostal": "80210", + "codeCommune": "80190", + "libelleAcheminement": "CHEPY", + "nomCommune": "CHEPY" }, { - "codePostal": "34460", - "codeCommune": "34065", - "libelleAcheminement": "CAZEDARNES", - "nomCommune": "CAZEDARNES" + "codePostal": "80200", + "codeCommune": "80197", + "libelleAcheminement": "CIZANCOURT", + "nomCommune": "CIZANCOURT" }, { - "codePostal": "34370", - "codeCommune": "34069", - "libelleAcheminement": "CAZOULS LES BEZIERS", - "nomCommune": "CAZOULS LES BEZIERS" + "codePostal": "80200", + "codeCommune": "80199", + "libelleAcheminement": "CLERY SUR SOMME", + "nomCommune": "CLERY SUR SOMME" }, { - "codePostal": "34460", - "codeCommune": "34074", - "libelleAcheminement": "CESSENON SUR ORB", - "nomCommune": "CESSENON SUR ORB" + "codePostal": "80300", + "codeCommune": "80206", + "libelleAcheminement": "CONTALMAISON", + "nomCommune": "CONTALMAISON" }, { - "codePostal": "34980", - "codeCommune": "34082", - "libelleAcheminement": "COMBAILLAUX", - "nomCommune": "COMBAILLAUX" + "codePostal": "80370", + "codeCommune": "80208", + "libelleAcheminement": "CONTEVILLE", + "nomCommune": "CONTEVILLE" }, { - "codePostal": "34490", - "codeCommune": "34084", - "libelleAcheminement": "CORNEILHAN", - "nomCommune": "CORNEILHAN" + "codePostal": "80160", + "codeCommune": "80211", + "libelleAcheminement": "CONTY", + "nomCommune": "CONTY" }, { - "codePostal": "34310", - "codeCommune": "34092", - "libelleAcheminement": "CRUZY", - "nomCommune": "CRUZY" + "codePostal": "80800", + "codeCommune": "80212", + "libelleAcheminement": "CORBIE", + "nomCommune": "CORBIE" }, { - "codePostal": "34290", - "codeCommune": "34094", - "libelleAcheminement": "ESPONDEILHAN", - "nomCommune": "ESPONDEILHAN" + "codePostal": "80250", + "codeCommune": "80214", + "libelleAcheminement": "COULLEMELLE", + "nomCommune": "COULLEMELLE" }, { - "codePostal": "34770", - "codeCommune": "34113", - "libelleAcheminement": "GIGEAN", - "nomCommune": "GIGEAN" + "codePostal": "80290", + "codeCommune": "80218", + "libelleAcheminement": "COURCELLES SOUS MOYENCOURT", + "nomCommune": "COURCELLES SOUS MOYENCOURT" }, { - "codePostal": "34800", - "codeCommune": "34124", - "libelleAcheminement": "LACOSTE", - "nomCommune": "LACOSTE" + "codePostal": "80310", + "codeCommune": "80229", + "libelleAcheminement": "CROUY ST PIERRE", + "nomCommune": "CROUY ST PIERRE" }, { - "codePostal": "34130", - "codeCommune": "34127", - "libelleAcheminement": "LANSARGUES", - "nomCommune": "LANSARGUES" + "codePostal": "80700", + "codeCommune": "80233", + "libelleAcheminement": "DANCOURT POPINCOURT", + "nomCommune": "DANCOURT POPINCOURT" }, { - "codePostal": "34970", - "codeCommune": "34129", - "libelleAcheminement": "LATTES", - "nomCommune": "LATTES" + "codePostal": "80200", + "codeCommune": "80240", + "libelleAcheminement": "DOINGT FLAMICOURT", + "nomCommune": "DOINGT" }, { - "codePostal": "34700", - "codeCommune": "34132", - "libelleAcheminement": "LAUROUX", - "nomCommune": "LAUROUX" + "codePostal": "80400", + "codeCommune": "80252", + "libelleAcheminement": "DOUILLY", + "nomCommune": "DOUILLY" }, { - "codePostal": "34120", - "codeCommune": "34136", - "libelleAcheminement": "LEZIGNAN LA CEBE", - "nomCommune": "LEZIGNAN LA CEBE" + "codePostal": "80340", + "codeCommune": "80264", + "libelleAcheminement": "ECLUSIER VAUX", + "nomCommune": "ECLUSIER VAUX" }, { - "codePostal": "34140", - "codeCommune": "34143", - "libelleAcheminement": "LOUPIAN", - "nomCommune": "LOUPIAN" + "codePostal": "80300", + "codeCommune": "80266", + "libelleAcheminement": "ENGLEBELMER", + "nomCommune": "ENGLEBELMER" }, { - "codePostal": "34400", - "codeCommune": "34145", - "libelleAcheminement": "LUNEL", - "nomCommune": "LUNEL" + "codePostal": "80400", + "codeCommune": "80274", + "libelleAcheminement": "EPPEVILLE", + "nomCommune": "EPPEVILLE" }, { - "codePostal": "34590", - "codeCommune": "34151", - "libelleAcheminement": "MARSILLARGUES", - "nomCommune": "MARSILLARGUES" + "codePostal": "80400", + "codeCommune": "80279", + "libelleAcheminement": "ERCHEU", + "nomCommune": "ERCHEU" }, { - "codePostal": "34380", - "codeCommune": "34152", - "libelleAcheminement": "MAS DE LONDRES", - "nomCommune": "MAS DE LONDRES" + "codePostal": "80160", + "codeCommune": "80285", + "libelleAcheminement": "ESSERTAUX", + "nomCommune": "ESSERTAUX" }, { - "codePostal": "34210", - "codeCommune": "34158", - "libelleAcheminement": "MINERVE", - "nomCommune": "MINERVE" + "codePostal": "80230", + "codeCommune": "80287", + "libelleAcheminement": "ESTREBOEUF", + "nomCommune": "ESTREBOEUF" }, { - "codePostal": "34530", - "codeCommune": "34162", - "libelleAcheminement": "MONTAGNAC", - "nomCommune": "MONTAGNAC" + "codePostal": "80150", + "codeCommune": "80290", + "libelleAcheminement": "ESTREES LES CRECY", + "nomCommune": "ESTREES LES CRECY" }, { - "codePostal": "34160", - "codeCommune": "34164", - "libelleAcheminement": "MONTAUD", - "nomCommune": "MONTAUD" + "codePostal": "80340", + "codeCommune": "80295", + "libelleAcheminement": "ETINEHEM MERICOURT", + "nomCommune": "ETINEHEM MERICOURT" }, { - "codePostal": "34070", - "codeCommune": "34172", - "libelleAcheminement": "MONTPELLIER", - "nomCommune": "MONTPELLIER" + "codePostal": "80140", + "codeCommune": "80297", + "libelleAcheminement": "ETREJUST", + "nomCommune": "ETREJUST" }, { - "codePostal": "34570", - "codeCommune": "34179", - "libelleAcheminement": "MURVIEL LES MONTPELLIER", - "nomCommune": "MURVIEL LES MONTPELLIER" + "codePostal": "80290", + "codeCommune": "80301", + "libelleAcheminement": "FAMECHON", + "nomCommune": "FAMECHON" }, { - "codePostal": "34800", - "codeCommune": "34186", - "libelleAcheminement": "OCTON", - "nomCommune": "OCTON" + "codePostal": "80200", + "codeCommune": "80304", + "libelleAcheminement": "FAY", + "nomCommune": "FAY" }, { - "codePostal": "34210", - "codeCommune": "34190", - "libelleAcheminement": "OUPIA", - "nomCommune": "OUPIA" + "codePostal": "80500", + "codeCommune": "80311", + "libelleAcheminement": "FIGNIERES", + "nomCommune": "FIGNIERES" }, { - "codePostal": "34490", - "codeCommune": "34191", - "libelleAcheminement": "PAILHES", - "nomCommune": "PAILHES" + "codePostal": "80160", + "codeCommune": "80315", + "libelleAcheminement": "FLERS SUR NOYE", + "nomCommune": "FLERS SUR NOYE" }, { - "codePostal": "34250", - "codeCommune": "34192", - "libelleAcheminement": "PALAVAS LES FLOTS", - "nomCommune": "PALAVAS LES FLOTS" + "codePostal": "80170", + "codeCommune": "80320", + "libelleAcheminement": "FOLIES", + "nomCommune": "FOLIES" }, { - "codePostal": "34850", - "codeCommune": "34203", - "libelleAcheminement": "PINET", - "nomCommune": "PINET" + "codePostal": "80440", + "codeCommune": "80337", + "libelleAcheminement": "FOUENCAMPS", + "nomCommune": "FOUENCAMPS" }, { - "codePostal": "34310", - "codeCommune": "34206", - "libelleAcheminement": "POILHES", - "nomCommune": "POILHES" + "codePostal": "80800", + "codeCommune": "80338", + "libelleAcheminement": "FOUILLOY", + "nomCommune": "FOUILLOY" }, { - "codePostal": "34230", - "codeCommune": "34215", - "libelleAcheminement": "POUZOLS", - "nomCommune": "POUZOLS" + "codePostal": "80620", + "codeCommune": "80346", + "libelleAcheminement": "FRANQUEVILLE", + "nomCommune": "FRANQUEVILLE" }, { - "codePostal": "34600", - "codeCommune": "34216", - "libelleAcheminement": "LE PRADAL", - "nomCommune": "LE PRADAL" + "codePostal": "80700", + "codeCommune": "80347", + "libelleAcheminement": "FRANSART", + "nomCommune": "FRANSART" }, { - "codePostal": "34360", - "codeCommune": "34218", - "libelleAcheminement": "PRADES SUR VERNAZOBRE", - "nomCommune": "PRADES SUR VERNAZOBRE" + "codePostal": "80130", + "codeCommune": "80368", + "libelleAcheminement": "FRIVILLE ESCARBOTIN", + "nomCommune": "FRIVILLE ESCARBOTIN" }, { - "codePostal": "34700", - "codeCommune": "34220", - "libelleAcheminement": "LE PUECH", - "nomCommune": "LE PUECH" + "codePostal": "80370", + "codeCommune": "80369", + "libelleAcheminement": "FROHEN SUR AUTHIE", + "nomCommune": "FROHEN SUR AUTHIE" }, { - "codePostal": "34230", - "codeCommune": "34222", - "libelleAcheminement": "PUILACHER", - "nomCommune": "PUILACHER" + "codePostal": "80370", + "codeCommune": "80369", + "libelleAcheminement": "FROHEN SUR AUTHIE", + "nomCommune": "FROHEN SUR AUTHIE" }, { - "codePostal": "34620", - "codeCommune": "34225", - "libelleAcheminement": "PUISSERGUIER", - "nomCommune": "PUISSERGUIER" + "codePostal": "80220", + "codeCommune": "80373", + "libelleAcheminement": "GAMACHES", + "nomCommune": "GAMACHES" }, { - "codePostal": "34220", - "codeCommune": "34229", - "libelleAcheminement": "RIOLS", - "nomCommune": "RIOLS" + "codePostal": "80600", + "codeCommune": "80377", + "libelleAcheminement": "GEZAINCOURT", + "nomCommune": "GEZAINCOURT" }, { - "codePostal": "34520", - "codeCommune": "34230", - "libelleAcheminement": "LES RIVES", - "nomCommune": "LES RIVES" + "codePostal": "80440", + "codeCommune": "80379", + "libelleAcheminement": "GLISY", + "nomCommune": "GLISY" }, { - "codePostal": "34460", - "codeCommune": "34232", - "libelleAcheminement": "ROQUEBRUN", - "nomCommune": "ROQUEBRUN" + "codePostal": "80250", + "codeCommune": "80390", + "libelleAcheminement": "GRIVESNES", + "nomCommune": "GRIVESNES" }, { - "codePostal": "34725", - "codeCommune": "34239", - "libelleAcheminement": "ST ANDRE DE SANGONIS", - "nomCommune": "ST ANDRE DE SANGONIS" + "codePostal": "80500", + "codeCommune": "80395", + "libelleAcheminement": "GUERBIGNY", + "nomCommune": "GUERBIGNY" }, { - "codePostal": "34190", - "codeCommune": "34243", - "libelleAcheminement": "ST BAUZILLE DE PUTOIS", - "nomCommune": "ST BAUZILLE DE PUTOIS" + "codePostal": "80440", + "codeCommune": "80405", + "libelleAcheminement": "HAILLES", + "nomCommune": "HAILLES" }, { - "codePostal": "34160", - "codeCommune": "34249", - "libelleAcheminement": "ST DREZERY", - "nomCommune": "ST DREZERY" + "codePostal": "80490", + "codeCommune": "80406", + "libelleAcheminement": "HALLENCOURT", + "nomCommune": "HALLENCOURT" }, { - "codePostal": "34700", - "codeCommune": "34251", - "libelleAcheminement": "ST ETIENNE DE GOURGAS", - "nomCommune": "ST ETIENNE DE GOURGAS" + "codePostal": "80310", + "codeCommune": "80416", + "libelleAcheminement": "HANGEST SUR SOMME", + "nomCommune": "HANGEST SUR SOMME" }, { - "codePostal": "34680", - "codeCommune": "34259", - "libelleAcheminement": "ST GEORGES D ORQUES", - "nomCommune": "ST GEORGES D ORQUES" + "codePostal": "80240", + "codeCommune": "80434", + "libelleAcheminement": "HERVILLY", + "nomCommune": "HERVILLY" }, { - "codePostal": "34150", - "codeCommune": "34261", - "libelleAcheminement": "ST GUILHEM LE DESERT", - "nomCommune": "ST GUILHEM LE DESERT" + "codePostal": "80290", + "codeCommune": "80436", + "libelleAcheminement": "HESCAMPS", + "nomCommune": "HESCAMPS" }, { - "codePostal": "34725", - "codeCommune": "34262", - "libelleAcheminement": "ST GUIRAUD", - "nomCommune": "ST GUIRAUD" + "codePostal": "80400", + "codeCommune": "80442", + "libelleAcheminement": "HOMBLEUX", + "nomCommune": "HOMBLEUX" }, { - "codePostal": "34380", - "codeCommune": "34264", - "libelleAcheminement": "ST JEAN DE BUEGES", - "nomCommune": "ST JEAN DE BUEGES" + "codePostal": "80640", + "codeCommune": "80443", + "libelleAcheminement": "HORNOY LE BOURG", + "nomCommune": "HORNOY LE BOURG" }, { - "codePostal": "34150", - "codeCommune": "34267", - "libelleAcheminement": "ST JEAN DE FOS", - "nomCommune": "ST JEAN DE FOS" + "codePostal": "80640", + "codeCommune": "80443", + "libelleAcheminement": "HORNOY LE BOURG", + "nomCommune": "HORNOY LE BOURG" }, { - "codePostal": "34390", - "codeCommune": "34271", - "libelleAcheminement": "ST JULIEN", - "nomCommune": "ST JULIEN" + "codePostal": "80640", + "codeCommune": "80443", + "libelleAcheminement": "HORNOY LE BOURG", + "nomCommune": "HORNOY LE BOURG" }, { - "codePostal": "34380", - "codeCommune": "34274", - "libelleAcheminement": "ST MARTIN DE LONDRES", - "nomCommune": "ST MARTIN DE LONDRES" + "codePostal": "80600", + "codeCommune": "80445", + "libelleAcheminement": "HUMBERCOURT", + "nomCommune": "HUMBERCOURT" }, { - "codePostal": "34230", - "codeCommune": "34281", - "libelleAcheminement": "ST PARGOIRE", - "nomCommune": "ST PARGOIRE" + "codePostal": "80140", + "codeCommune": "80446", + "libelleAcheminement": "HUPPY", + "nomCommune": "HUPPY" }, { - "codePostal": "34160", - "codeCommune": "34296", - "libelleAcheminement": "SAUSSINES", - "nomCommune": "SAUSSINES" + "codePostal": "80430", + "codeCommune": "80456", + "libelleAcheminement": "LAFRESGUIMONT ST MARTIN", + "nomCommune": "LAFRESGUIMONT ST MARTIN" }, { - "codePostal": "34290", - "codeCommune": "34300", - "libelleAcheminement": "SERVIAN", - "nomCommune": "SERVIAN" + "codePostal": "80270", + "codeCommune": "80459", + "libelleAcheminement": "LALEU", + "nomCommune": "LALEU" }, { - "codePostal": "34520", - "codeCommune": "34303", - "libelleAcheminement": "SORBS", - "nomCommune": "SORBS" + "codePostal": "80290", + "codeCommune": "80460", + "libelleAcheminement": "LAMARONDE", + "nomCommune": "LAMARONDE" }, { - "codePostal": "34600", - "codeCommune": "34308", - "libelleAcheminement": "TAUSSAC LA BILLIERE", - "nomCommune": "TAUSSAC LA BILLIERE" + "codePostal": "80450", + "codeCommune": "80461", + "libelleAcheminement": "LAMOTTE BREBIERE", + "nomCommune": "LAMOTTE BREBIERE" }, { - "codePostal": "34260", - "codeCommune": "34312", - "libelleAcheminement": "LA TOUR SUR ORB", - "nomCommune": "LA TOUR SUR ORB" + "codePostal": "80700", + "codeCommune": "80467", + "libelleAcheminement": "LAUCOURT", + "nomCommune": "LAUCOURT" }, { - "codePostal": "34520", - "codeCommune": "34317", - "libelleAcheminement": "LA VACQUERIE ST MARTIN CASTRIES", - "nomCommune": "LA VACQUERIE ET ST MARTIN DE CASTRIES" + "codePostal": "80360", + "codeCommune": "80472", + "libelleAcheminement": "LESBOEUFS", + "nomCommune": "LESBOEUFS" }, { - "codePostal": "34570", - "codeCommune": "34320", - "libelleAcheminement": "VAILHAUQUES", - "nomCommune": "VAILHAUQUES" + "codePostal": "80580", + "codeCommune": "80476", + "libelleAcheminement": "LIERCOURT", + "nomCommune": "LIERCOURT" }, { - "codePostal": "34130", - "codeCommune": "34321", - "libelleAcheminement": "VALERGUES", - "nomCommune": "VALERGUES" + "codePostal": "80240", + "codeCommune": "80487", + "libelleAcheminement": "LONGAVESNES", + "nomCommune": "LONGAVESNES" }, { - "codePostal": "34350", - "codeCommune": "34329", - "libelleAcheminement": "VENDRES", - "nomCommune": "VENDRES" + "codePostal": "80360", + "codeCommune": "80490", + "libelleAcheminement": "LONGUEVAL", + "nomCommune": "LONGUEVAL" }, { - "codePostal": "34450", - "codeCommune": "34332", - "libelleAcheminement": "VIAS", - "nomCommune": "VIAS" + "codePostal": "80250", + "codeCommune": "80494", + "libelleAcheminement": "LOUVRECHY", + "nomCommune": "LOUVRECHY" }, { - "codePostal": "34390", - "codeCommune": "34334", - "libelleAcheminement": "VIEUSSAN", - "nomCommune": "VIEUSSAN" + "codePostal": "80600", + "codeCommune": "80495", + "libelleAcheminement": "LUCHEUX", + "nomCommune": "LUCHEUX" }, { - "codePostal": "34750", - "codeCommune": "34337", - "libelleAcheminement": "VILLENEUVE LES MAGUELONE", - "nomCommune": "VILLENEUVE LES MAGUELONE" + "codePostal": "80132", + "codeCommune": "80512", + "libelleAcheminement": "MAREUIL CAUBERT", + "nomCommune": "MAREUIL CAUBERT" }, { - "codePostal": "34400", - "codeCommune": "34340", - "libelleAcheminement": "VILLETELLE", - "nomCommune": "VILLETELLE" + "codePostal": "80560", + "codeCommune": "80514", + "libelleAcheminement": "MARIEUX", + "nomCommune": "MARIEUX" }, { - "codePostal": "34380", - "codeCommune": "34342", - "libelleAcheminement": "VIOLS EN LAVAL", - "nomCommune": "VIOLS EN LAVAL" + "codePostal": "80170", + "codeCommune": "80520", + "libelleAcheminement": "MAUCOURT", + "nomCommune": "MAUCOURT" }, { - "codePostal": "35690", - "codeCommune": "35001", - "libelleAcheminement": "ACIGNE", - "nomCommune": "ACIGNE" + "codePostal": "80170", + "codeCommune": "80524", + "libelleAcheminement": "MEHARICOURT", + "nomCommune": "MEHARICOURT" }, { - "codePostal": "35460", - "codeCommune": "35004", - "libelleAcheminement": "VAL COUESNON", - "nomCommune": "VAL COUESNON" + "codePostal": "80500", + "codeCommune": "80541", + "libelleAcheminement": "MESNIL ST GEORGES", + "nomCommune": "MESNIL ST GEORGES" }, { - "codePostal": "35130", - "codeCommune": "35005", - "libelleAcheminement": "ARBRISSEL", - "nomCommune": "ARBRISSEL" + "codePostal": "80600", + "codeCommune": "80544", + "libelleAcheminement": "MEZEROLLES", + "nomCommune": "MEZEROLLES" }, { - "codePostal": "35580", - "codeCommune": "35016", - "libelleAcheminement": "BAULON", - "nomCommune": "BAULON" + "codePostal": "80300", + "codeCommune": "80549", + "libelleAcheminement": "MIRAUMONT", + "nomCommune": "MIRAUMONT" }, { - "codePostal": "35420", - "codeCommune": "35018", - "libelleAcheminement": "LA BAZOUGE DU DESERT", - "nomCommune": "LA BAZOUGE DU DESERT" + "codePostal": "80260", + "codeCommune": "80553", + "libelleAcheminement": "MOLLIENS AU BOIS", + "nomCommune": "MOLLIENS AU BOIS" }, { - "codePostal": "35560", - "codeCommune": "35019", - "libelleAcheminement": "BAZOUGES LA PEROUSE", - "nomCommune": "BAZOUGES LA PEROUSE" + "codePostal": "80200", + "codeCommune": "80555", + "libelleAcheminement": "MONCHY LAGACHE", + "nomCommune": "MONCHY LAGACHE" }, { - "codePostal": "35133", - "codeCommune": "35021", - "libelleAcheminement": "BEAUCE", - "nomCommune": "BEAUCE" + "codePostal": "80500", + "codeCommune": "80561", + "libelleAcheminement": "MONTDIDIER", + "nomCommune": "MONTDIDIER" }, { - "codePostal": "35360", - "codeCommune": "35027", - "libelleAcheminement": "BOISGERVILLY", - "nomCommune": "BOISGERVILLY" + "codePostal": "80290", + "codeCommune": "80573", + "libelleAcheminement": "MORVILLERS ST SATURNIN", + "nomCommune": "MORVILLERS ST SATURNIN" }, { - "codePostal": "35150", - "codeCommune": "35041", - "libelleAcheminement": "BRIE", - "nomCommune": "BRIE" + "codePostal": "80290", + "codeCommune": "80577", + "libelleAcheminement": "MOYENCOURT LES POIX", + "nomCommune": "MOYENCOURT LES POIX" }, { - "codePostal": "35550", - "codeCommune": "35045", - "libelleAcheminement": "BRUC SUR AFF", - "nomCommune": "BRUC SUR AFF" + "codePostal": "80290", + "codeCommune": "80582", + "libelleAcheminement": "NAMPS MAISNIL", + "nomCommune": "NAMPS MAISNIL" }, { - "codePostal": "35260", - "codeCommune": "35049", - "libelleAcheminement": "CANCALE", - "nomCommune": "CANCALE" + "codePostal": "80132", + "codeCommune": "80588", + "libelleAcheminement": "NEUFMOULIN", + "nomCommune": "NEUFMOULIN" }, { - "codePostal": "35150", - "codeCommune": "35054", - "libelleAcheminement": "CHANTELOUP", - "nomCommune": "CHANTELOUP" + "codePostal": "80150", + "codeCommune": "80589", + "libelleAcheminement": "NEUILLY LE DIEN", + "nomCommune": "NEUILLY LE DIEN" }, { - "codePostal": "35520", - "codeCommune": "35059", - "libelleAcheminement": "LA CHAPELLE DES FOUGERETZ", - "nomCommune": "LA CHAPELLE DES FOUGERETZ" + "codePostal": "80132", + "codeCommune": "80590", + "libelleAcheminement": "NEUILLY L HOPITAL", + "nomCommune": "NEUILLY L HOPITAL" }, { - "codePostal": "35410", - "codeCommune": "35069", - "libelleAcheminement": "CHATEAUGIRON", - "nomCommune": "CHATEAUGIRON" + "codePostal": "80390", + "codeCommune": "80597", + "libelleAcheminement": "NIBAS", + "nomCommune": "NIBAS" }, { - "codePostal": "35430", - "codeCommune": "35070", - "libelleAcheminement": "CHATEAUNEUF D ILLE ET VILAINE", - "nomCommune": "CHATEAUNEUF D ILLE ET VILAINE" + "codePostal": "80860", + "codeCommune": "80600", + "libelleAcheminement": "NOYELLES SUR MER", + "nomCommune": "NOYELLES SUR MER" }, { - "codePostal": "35310", - "codeCommune": "35076", - "libelleAcheminement": "CHAVAGNE", - "nomCommune": "CHAVAGNE" + "codePostal": "80600", + "codeCommune": "80602", + "libelleAcheminement": "OCCOCHES", + "nomCommune": "OCCOCHES" }, { - "codePostal": "35640", - "codeCommune": "35077", - "libelleAcheminement": "CHELUN", - "nomCommune": "CHELUN" + "codePostal": "80290", + "codeCommune": "80604", + "libelleAcheminement": "OFFIGNIES", + "nomCommune": "OFFIGNIES" }, { - "codePostal": "35310", - "codeCommune": "35080", - "libelleAcheminement": "CINTRE", - "nomCommune": "CINTRE" + "codePostal": "80160", + "codeCommune": "80611", + "libelleAcheminement": "ORESMAUX", + "nomCommune": "ORESMAUX" }, { - "codePostal": "35134", - "codeCommune": "35082", - "libelleAcheminement": "COESMES", - "nomCommune": "COESMES" + "codePostal": "80460", + "codeCommune": "80613", + "libelleAcheminement": "OUST MAREST", + "nomCommune": "OUST MAREST" }, { - "codePostal": "35320", - "codeCommune": "35089", - "libelleAcheminement": "LA COUYERE", - "nomCommune": "LA COUYERE" + "codePostal": "80200", + "codeCommune": "80620", + "libelleAcheminement": "PERONNE", + "nomCommune": "PERONNE" }, { - "codePostal": "35800", - "codeCommune": "35093", - "libelleAcheminement": "DINARD", - "nomCommune": "DINARD" + "codePostal": "80500", + "codeCommune": "80625", + "libelleAcheminement": "TROIS RIVIERES", + "nomCommune": "TROIS RIVIERES" }, { - "codePostal": "35120", - "codeCommune": "35095", - "libelleAcheminement": "DOL DE BRETAGNE", - "nomCommune": "DOL DE BRETAGNE" + "codePostal": "80290", + "codeCommune": "80630", + "libelleAcheminement": "POIX DE PICARDIE", + "nomCommune": "POIX DE PICARDIE" }, { - "codePostal": "35113", - "codeCommune": "35096", - "libelleAcheminement": "DOMAGNE", - "nomCommune": "DOMAGNE" + "codePostal": "80132", + "codeCommune": "80637", + "libelleAcheminement": "PORT LE GRAND", + "nomCommune": "PORT LE GRAND" }, { - "codePostal": "35500", - "codeCommune": "35105", - "libelleAcheminement": "ERBREE", - "nomCommune": "ERBREE" + "codePostal": "80300", + "codeCommune": "80648", + "libelleAcheminement": "PYS", + "nomCommune": "PYS" }, { - "codePostal": "35850", - "codeCommune": "35120", - "libelleAcheminement": "GEVEZE", - "nomCommune": "GEVEZE" + "codePostal": "80120", + "codeCommune": "80649", + "libelleAcheminement": "QUEND", + "nomCommune": "QUEND" }, { - "codePostal": "35580", - "codeCommune": "35126", - "libelleAcheminement": "GUICHEN", - "nomCommune": "GUICHEN" + "codePostal": "80250", + "codeCommune": "80657", + "libelleAcheminement": "QUIRY LE SEC", + "nomCommune": "QUIRY LE SEC" }, { - "codePostal": "35630", - "codeCommune": "35130", - "libelleAcheminement": "HEDE BAZOUGES", - "nomCommune": "HEDE BAZOUGES" + "codePostal": "80260", + "codeCommune": "80661", + "libelleAcheminement": "RAINNEVILLE", + "nomCommune": "RAINNEVILLE" }, { - "codePostal": "35270", - "codeCommune": "35148", - "libelleAcheminement": "LANRIGAN", - "nomCommune": "LANRIGAN" + "codePostal": "80600", + "codeCommune": "80666", + "libelleAcheminement": "REMAISNIL", + "nomCommune": "REMAISNIL" }, { - "codePostal": "35340", - "codeCommune": "35152", - "libelleAcheminement": "LIFFRE", - "nomCommune": "LIFFRE" + "codePostal": "80500", + "codeCommune": "80667", + "libelleAcheminement": "REMAUGIES", + "nomCommune": "REMAUGIES" }, { - "codePostal": "35190", - "codeCommune": "35156", - "libelleAcheminement": "LONGAULNAY", - "nomCommune": "LONGAULNAY" + "codePostal": "80700", + "codeCommune": "80669", + "libelleAcheminement": "RETHONVILLERS", + "nomCommune": "RETHONVILLERS" }, { - "codePostal": "35330", - "codeCommune": "35160", - "libelleAcheminement": "LOUTEHEL", - "nomCommune": "LOUTEHEL" + "codePostal": "80620", + "codeCommune": "80671", + "libelleAcheminement": "RIBEAUCOURT", + "nomCommune": "RIBEAUCOURT" }, { - "codePostal": "35140", - "codeCommune": "35178", - "libelleAcheminement": "MEZIERES SUR COUESNON", - "nomCommune": "MEZIERES SUR COUESNON" + "codePostal": "80310", + "codeCommune": "80673", + "libelleAcheminement": "RIENCOURT", + "nomCommune": "RIENCOURT" }, { - "codePostal": "35540", - "codeCommune": "35179", - "libelleAcheminement": "MINIAC MORVAN", - "nomCommune": "MINIAC MORVAN" + "codePostal": "80120", + "codeCommune": "80688", + "libelleAcheminement": "RUE", + "nomCommune": "RUE" }, { - "codePostal": "35540", - "codeCommune": "35179", - "libelleAcheminement": "MINIAC MORVAN", - "nomCommune": "MINIAC MORVAN" + "codePostal": "80970", + "codeCommune": "80692", + "libelleAcheminement": "SAILLY FLIBEAUCOURT", + "nomCommune": "SAILLY FLIBEAUCOURT" }, { - "codePostal": "35190", - "codeCommune": "35180", - "libelleAcheminement": "MINIAC SOUS BECHEREL", - "nomCommune": "MINIAC SOUS BECHEREL" + "codePostal": "80800", + "codeCommune": "80694", + "libelleAcheminement": "SAILLY LE SEC", + "nomCommune": "SAILLY LE SEC" }, { - "codePostal": "35870", - "codeCommune": "35181", - "libelleAcheminement": "LE MINIHIC SUR RANCE", - "nomCommune": "LE MINIHIC SUR RANCE" + "codePostal": "80960", + "codeCommune": "80700", + "libelleAcheminement": "ST BLIMONT", + "nomCommune": "ST BLIMONT" }, { - "codePostal": "35360", - "codeCommune": "35184", - "libelleAcheminement": "MONTAUBAN DE BRETAGNE", - "nomCommune": "MONTAUBAN DE BRETAGNE" + "codePostal": "80200", + "codeCommune": "80701", + "libelleAcheminement": "ST CHRIST BRIOST", + "nomCommune": "ST CHRIST BRIOST" }, { - "codePostal": "35420", - "codeCommune": "35190", - "libelleAcheminement": "MONTHAULT", - "nomCommune": "MONTHAULT" + "codePostal": "80700", + "codeCommune": "80708", + "libelleAcheminement": "ST MARD", + "nomCommune": "ST MARD" }, { - "codePostal": "35130", - "codeCommune": "35199", - "libelleAcheminement": "MOUSSE", - "nomCommune": "MOUSSE" + "codePostal": "80135", + "codeCommune": "80716", + "libelleAcheminement": "ST RIQUIER", + "nomCommune": "ST RIQUIER" }, { - "codePostal": "35290", - "codeCommune": "35201", - "libelleAcheminement": "MUEL", - "nomCommune": "MUEL" + "codePostal": "80160", + "codeCommune": "80717", + "libelleAcheminement": "ST SAUFLIEU", + "nomCommune": "ST SAUFLIEU" }, { - "codePostal": "35530", - "codeCommune": "35207", - "libelleAcheminement": "NOYAL SUR VILAINE", - "nomCommune": "NOYAL SUR VILAINE" + "codePostal": "80230", + "codeCommune": "80721", + "libelleAcheminement": "ST VALERY SUR SOMME", + "nomCommune": "ST VALERY SUR SOMME" }, { - "codePostal": "35210", - "codeCommune": "35214", - "libelleAcheminement": "PARCE", - "nomCommune": "PARCE" + "codePostal": "80480", + "codeCommune": "80724", + "libelleAcheminement": "SALEUX", + "nomCommune": "SALEUX" }, { - "codePostal": "35133", - "codeCommune": "35215", - "libelleAcheminement": "PARIGNE", - "nomCommune": "PARIGNE" + "codePostal": "80310", + "codeCommune": "80738", + "libelleAcheminement": "SOUES", + "nomCommune": "SOUES" }, { - "codePostal": "35500", - "codeCommune": "35229", - "libelleAcheminement": "POCE LES BOIS", - "nomCommune": "POCE LES BOIS" + "codePostal": "80340", + "codeCommune": "80743", + "libelleAcheminement": "SUZANNE", + "nomCommune": "SUZANNE" }, { - "codePostal": "35190", - "codeCommune": "35233", - "libelleAcheminement": "QUEBRIAC", - "nomCommune": "QUEBRIAC" + "codePostal": "80260", + "codeCommune": "80746", + "libelleAcheminement": "TALMAS", + "nomCommune": "TALMAS" }, { - "codePostal": "35000", - "codeCommune": "35238", - "libelleAcheminement": "RENNES", - "nomCommune": "RENNES" + "codePostal": "80600", + "codeCommune": "80749", + "libelleAcheminement": "TERRAMESNIL", + "nomCommune": "TERRAMESNIL" }, { - "codePostal": "35120", - "codeCommune": "35246", - "libelleAcheminement": "ROZ LANDRIEUX", - "nomCommune": "ROZ LANDRIEUX" + "codePostal": "80440", + "codeCommune": "80752", + "libelleAcheminement": "THEZY GLIMONT", + "nomCommune": "THEZY GLIMONT" }, { - "codePostal": "35114", - "codeCommune": "35255", - "libelleAcheminement": "ST BENOIT DES ONDES", - "nomCommune": "ST BENOIT DES ONDES" + "codePostal": "80132", + "codeCommune": "80763", + "libelleAcheminement": "LE TITRE", + "nomCommune": "LE TITRE" }, { - "codePostal": "35140", - "codeCommune": "35282", - "libelleAcheminement": "RIVES DU COUESNON", - "nomCommune": "RIVES DU COUESNON" + "codePostal": "80560", + "codeCommune": "80766", + "libelleAcheminement": "TOUTENCOURT", + "nomCommune": "TOUTENCOURT" }, { - "codePostal": "35400", - "codeCommune": "35288", - "libelleAcheminement": "ST MALO", - "nomCommune": "ST MALO" + "codePostal": "80140", + "codeCommune": "80767", + "libelleAcheminement": "LE TRANSLAY", + "nomCommune": "LE TRANSLAY" }, { - "codePostal": "35750", - "codeCommune": "35295", - "libelleAcheminement": "ST MAUGAN", - "nomCommune": "ST MAUGAN" + "codePostal": "80130", + "codeCommune": "80770", + "libelleAcheminement": "TULLY", + "nomCommune": "TULLY" }, { - "codePostal": "35290", - "codeCommune": "35297", - "libelleAcheminement": "ST MEEN LE GRAND", - "nomCommune": "ST MEEN LE GRAND" + "codePostal": "80560", + "codeCommune": "80777", + "libelleAcheminement": "VAUCHELLES LES AUTHIE", + "nomCommune": "VAUCHELLES LES AUTHIE" }, { - "codePostal": "35350", - "codeCommune": "35299", - "libelleAcheminement": "ST MELOIR DES ONDES", - "nomCommune": "ST MELOIR DES ONDES" + "codePostal": "80230", + "codeCommune": "80780", + "libelleAcheminement": "VAUDRICOURT", + "nomCommune": "VAUDRICOURT" }, { - "codePostal": "35500", - "codeCommune": "35300", - "libelleAcheminement": "ST M HERVE", - "nomCommune": "ST M HERVE" + "codePostal": "80480", + "codeCommune": "80791", + "libelleAcheminement": "VERS SUR SELLE", + "nomCommune": "VERS SUR SELLE" }, { - "codePostal": "35720", - "codeCommune": "35308", - "libelleAcheminement": "MESNIL ROC H", - "nomCommune": "MESNIL ROC H" + "codePostal": "80110", + "codeCommune": "80797", + "libelleAcheminement": "VILLERS AUX ERABLES", + "nomCommune": "VILLERS AUX ERABLES" }, { - "codePostal": "35390", - "codeCommune": "35316", - "libelleAcheminement": "ST SULPICE DES LANDES", - "nomCommune": "ST SULPICE DES LANDES" + "codePostal": "80200", + "codeCommune": "80801", + "libelleAcheminement": "VILLERS CARBONNEL", + "nomCommune": "VILLERS CARBONNEL" }, { - "codePostal": "35310", - "codeCommune": "35319", - "libelleAcheminement": "ST THURIAL", - "nomCommune": "ST THURIAL" + "codePostal": "80690", + "codeCommune": "80804", + "libelleAcheminement": "VILLERS SOUS AILLY", + "nomCommune": "VILLERS SOUS AILLY" }, { - "codePostal": "35320", - "codeCommune": "35321", - "libelleAcheminement": "SAULNIERES", - "nomCommune": "SAULNIERES" + "codePostal": "80300", + "codeCommune": "80807", + "libelleAcheminement": "VILLE SUR ANCRE", + "nomCommune": "VILLE SUR ANCRE" }, { - "codePostal": "35160", - "codeCommune": "35331", - "libelleAcheminement": "TALENSAC", - "nomCommune": "TALENSAC" + "codePostal": "80150", + "codeCommune": "80810", + "libelleAcheminement": "VITZ SUR AUTHIE", + "nomCommune": "VITZ SUR AUTHIE" }, { - "codePostal": "35370", - "codeCommune": "35338", - "libelleAcheminement": "TORCE", - "nomCommune": "TORCE" + "codePostal": "80240", + "codeCommune": "80812", + "libelleAcheminement": "VRAIGNES EN VERMANDOIS", + "nomCommune": "VRAIGNES EN VERMANDOIS" }, { - "codePostal": "35770", - "codeCommune": "35352", - "libelleAcheminement": "VERN SUR SEICHE", - "nomCommune": "VERN SUR SEICHE" + "codePostal": "80120", + "codeCommune": "80815", + "libelleAcheminement": "VRON", + "nomCommune": "VRON" }, { - "codePostal": "35540", - "codeCommune": "35362", - "libelleAcheminement": "LE TRONCHET", - "nomCommune": "LE TRONCHET" + "codePostal": "80270", + "codeCommune": "80821", + "libelleAcheminement": "WARLUS", + "nomCommune": "WARLUS" }, { - "codePostal": "36120", - "codeCommune": "36003", - "libelleAcheminement": "AMBRAULT", - "nomCommune": "AMBRAULT" + "codePostal": "80500", + "codeCommune": "80822", + "libelleAcheminement": "WARSY", + "nomCommune": "WARSY" }, { - "codePostal": "36700", - "codeCommune": "36008", - "libelleAcheminement": "ARPHEUILLES", - "nomCommune": "ARPHEUILLES" + "codePostal": "80170", + "codeCommune": "80823", + "libelleAcheminement": "WARVILLERS", + "nomCommune": "WARVILLERS" }, { - "codePostal": "36330", - "codeCommune": "36009", - "libelleAcheminement": "ARTHON", - "nomCommune": "ARTHON" + "codePostal": "80170", + "codeCommune": "80824", + "libelleAcheminement": "WIENCOURT L EQUIPEE", + "nomCommune": "WIENCOURT L EQUIPEE" }, { - "codePostal": "36100", - "codeCommune": "36027", - "libelleAcheminement": "BRIVES", - "nomCommune": "BRIVES" + "codePostal": "80460", + "codeCommune": "80826", + "libelleAcheminement": "WOIGNARUE", + "nomCommune": "WOIGNARUE" }, { - "codePostal": "36210", - "codeCommune": "36034", - "libelleAcheminement": "CHABRIS", - "nomCommune": "CHABRIS" + "codePostal": "80150", + "codeCommune": "80833", + "libelleAcheminement": "YVRENCHEUX", + "nomCommune": "YVRENCHEUX" }, { - "codePostal": "36160", - "codeCommune": "36038", - "libelleAcheminement": "CHAMPILLET", - "nomCommune": "CHAMPILLET" + "codePostal": "80520", + "codeCommune": "80834", + "libelleAcheminement": "YZENGREMER", + "nomCommune": "YZENGREMER" }, { - "codePostal": "36700", - "codeCommune": "36045", - "libelleAcheminement": "CHATILLON SUR INDRE", - "nomCommune": "CHATILLON SUR INDRE" + "codePostal": "81240", + "codeCommune": "81005", + "libelleAcheminement": "ALBINE", + "nomCommune": "ALBINE" }, { - "codePostal": "36170", - "codeCommune": "36049", - "libelleAcheminement": "CHAZELET", - "nomCommune": "CHAZELET" + "codePostal": "81190", + "codeCommune": "81008", + "libelleAcheminement": "ALMAYRAC", + "nomCommune": "ALMAYRAC" }, { - "codePostal": "36500", - "codeCommune": "36050", - "libelleAcheminement": "CHEZELLES", - "nomCommune": "CHEZELLES" + "codePostal": "81170", + "codeCommune": "81009", + "libelleAcheminement": "AMARENS", + "nomCommune": "AMARENS" }, { - "codePostal": "36300", - "codeCommune": "36053", - "libelleAcheminement": "CIRON", - "nomCommune": "CIRON" + "codePostal": "81430", + "codeCommune": "81010", + "libelleAcheminement": "AMBIALET", + "nomCommune": "AMBIALET" }, { - "codePostal": "36300", - "codeCommune": "36058", - "libelleAcheminement": "CONCREMIERS", - "nomCommune": "CONCREMIERS" + "codePostal": "81500", + "codeCommune": "81011", + "libelleAcheminement": "AMBRES", + "nomCommune": "AMBRES" }, { - "codePostal": "36190", - "codeCommune": "36062", - "libelleAcheminement": "CUZION", - "nomCommune": "CUZION" + "codePostal": "81350", + "codeCommune": "81013", + "libelleAcheminement": "ANDOUQUE", + "nomCommune": "ANDOUQUE" }, { - "codePostal": "36300", - "codeCommune": "36066", - "libelleAcheminement": "DOUADIC", - "nomCommune": "DOUADIC" + "codePostal": "81260", + "codeCommune": "81014", + "libelleAcheminement": "ANGLES", + "nomCommune": "ANGLES" }, { - "codePostal": "36310", - "codeCommune": "36067", - "libelleAcheminement": "DUNET", - "nomCommune": "DUNET" + "codePostal": "81110", + "codeCommune": "81016", + "libelleAcheminement": "ARFONS", + "nomCommune": "ARFONS" }, { - "codePostal": "36210", - "codeCommune": "36068", - "libelleAcheminement": "DUN LE POELIER", - "nomCommune": "DUN LE POELIER" + "codePostal": "81630", + "codeCommune": "81024", + "libelleAcheminement": "BEAUVAIS SUR TESCOU", + "nomCommune": "BEAUVAIS SUR TESCOU" }, { - "codePostal": "36240", - "codeCommune": "36069", - "libelleAcheminement": "ECUEILLE", - "nomCommune": "ECUEILLE" + "codePostal": "81540", + "codeCommune": "81027", + "libelleAcheminement": "BELLESERRE", + "nomCommune": "BELLESERRE" }, { - "codePostal": "36150", - "codeCommune": "36083", - "libelleAcheminement": "GIROUX", - "nomCommune": "GIROUX" + "codePostal": "81700", + "codeCommune": "81032", + "libelleAcheminement": "BLAN", + "nomCommune": "BLAN" }, { - "codePostal": "36100", - "codeCommune": "36088", - "libelleAcheminement": "ISSOUDUN", - "nomCommune": "ISSOUDUN" + "codePostal": "81490", + "codeCommune": "81034", + "libelleAcheminement": "BOISSEZON", + "nomCommune": "BOISSEZON" }, { - "codePostal": "36120", - "codeCommune": "36089", - "libelleAcheminement": "JEU LES BOIS", - "nomCommune": "JEU LES BOIS" + "codePostal": "81170", + "codeCommune": "81045", + "libelleAcheminement": "LES CABANNES", + "nomCommune": "LES CABANNES" }, { - "codePostal": "36110", - "codeCommune": "36093", - "libelleAcheminement": "LEVROUX", - "nomCommune": "LEVROUX" + "codePostal": "81140", + "codeCommune": "81051", + "libelleAcheminement": "CAHUZAC SUR VERE", + "nomCommune": "CAHUZAC SUR VERE" }, { - "codePostal": "36110", - "codeCommune": "36093", - "libelleAcheminement": "LEVROUX", - "nomCommune": "LEVROUX" + "codePostal": "81540", + "codeCommune": "81055", + "libelleAcheminement": "LES CAMMAZES", + "nomCommune": "LES CAMMAZES" }, { - "codePostal": "36370", - "codeCommune": "36094", - "libelleAcheminement": "LIGNAC", - "nomCommune": "LIGNAC" + "codePostal": "81570", + "codeCommune": "81058", + "libelleAcheminement": "CARBES", + "nomCommune": "CARBES" }, { - "codePostal": "36160", - "codeCommune": "36095", - "libelleAcheminement": "LIGNEROLLES", - "nomCommune": "LIGNEROLLES" + "codePostal": "81150", + "codeCommune": "81061", + "libelleAcheminement": "CASTANET", + "nomCommune": "CASTANET" }, { - "codePostal": "36150", - "codeCommune": "36097", - "libelleAcheminement": "LINIEZ", - "nomCommune": "LINIEZ" + "codePostal": "81260", + "codeCommune": "81062", + "libelleAcheminement": "FONTRIEU", + "nomCommune": "FONTRIEU" }, { - "codePostal": "36370", - "codeCommune": "36114", - "libelleAcheminement": "MAUVIERES", - "nomCommune": "MAUVIERES" + "codePostal": "81150", + "codeCommune": "81063", + "libelleAcheminement": "CASTELNAU DE LEVIS", + "nomCommune": "CASTELNAU DE LEVIS" }, { - "codePostal": "36500", - "codeCommune": "36118", - "libelleAcheminement": "MEOBECQ", - "nomCommune": "MEOBECQ" + "codePostal": "81350", + "codeCommune": "81073", + "libelleAcheminement": "CRESPINET", + "nomCommune": "CRESPINET" }, { - "codePostal": "36340", - "codeCommune": "36133", - "libelleAcheminement": "MOUHERS", - "nomCommune": "MOUHERS" + "codePostal": "81120", + "codeCommune": "81088", + "libelleAcheminement": "FAUCH", + "nomCommune": "FAUCH" }, { - "codePostal": "36170", - "codeCommune": "36134", - "libelleAcheminement": "MOUHET", - "nomCommune": "MOUHET" + "codePostal": "81500", + "codeCommune": "81104", + "libelleAcheminement": "GIROUSSENS", + "nomCommune": "GIROUSSENS" }, { - "codePostal": "36110", - "codeCommune": "36135", - "libelleAcheminement": "MOULINS SUR CEPHONS", - "nomCommune": "MOULINS SUR CEPHONS" + "codePostal": "81500", + "codeCommune": "81116", + "libelleAcheminement": "LABASTIDE ST GEORGES", + "nomCommune": "LABASTIDE ST GEORGES" }, { - "codePostal": "36700", - "codeCommune": "36136", - "libelleAcheminement": "MURS", - "nomCommune": "MURS" + "codePostal": "81300", + "codeCommune": "81117", + "libelleAcheminement": "LABESSIERE CANDEIL", + "nomCommune": "LABESSIERE CANDEIL" }, { - "codePostal": "36500", - "codeCommune": "36139", - "libelleAcheminement": "NEUILLAY LES BOIS", - "nomCommune": "NEUILLAY LES BOIS" + "codePostal": "81100", + "codeCommune": "81118", + "libelleAcheminement": "LABOULBENE", + "nomCommune": "LABOULBENE" }, { - "codePostal": "36100", - "codeCommune": "36140", - "libelleAcheminement": "NEUVY PAILLOUX", - "nomCommune": "NEUVY PAILLOUX" + "codePostal": "81470", + "codeCommune": "81127", + "libelleAcheminement": "LACROISILLE", + "nomCommune": "LACROISILLE" }, { - "codePostal": "36250", - "codeCommune": "36142", - "libelleAcheminement": "NIHERNE", - "nomCommune": "NIHERNE" + "codePostal": "81220", + "codeCommune": "81132", + "libelleAcheminement": "GUITALENS L ALBAREDE", + "nomCommune": "GUITALENS L ALBAREDE" }, { - "codePostal": "36290", - "codeCommune": "36145", - "libelleAcheminement": "OBTERRE", - "nomCommune": "OBTERRE" + "codePostal": "81120", + "codeCommune": "81133", + "libelleAcheminement": "LAMILLARIE", + "nomCommune": "LAMILLARIE" }, { - "codePostal": "36200", - "codeCommune": "36154", - "libelleAcheminement": "LE PECHEREAU", - "nomCommune": "LE PECHEREAU" + "codePostal": "81260", + "codeCommune": "81137", + "libelleAcheminement": "LASFAILLADES", + "nomCommune": "LASFAILLADES" }, { - "codePostal": "36160", - "codeCommune": "36156", - "libelleAcheminement": "PERASSAY", - "nomCommune": "PERASSAY" + "codePostal": "81380", + "codeCommune": "81144", + "libelleAcheminement": "LESCURE D ALBIGEOIS", + "nomCommune": "LESCURE D ALBIGEOIS" }, { - "codePostal": "36200", - "codeCommune": "36158", - "libelleAcheminement": "BADECON LE PIN", - "nomCommune": "BADECON LE PIN" + "codePostal": "81310", + "codeCommune": "81145", + "libelleAcheminement": "LISLE SUR TARN", + "nomCommune": "LISLE SUR TARN" }, { - "codePostal": "36190", - "codeCommune": "36160", - "libelleAcheminement": "POMMIERS", - "nomCommune": "POMMIERS" + "codePostal": "81170", + "codeCommune": "81154", + "libelleAcheminement": "MARNAVES", + "nomCommune": "MARNAVES" }, { - "codePostal": "36240", - "codeCommune": "36166", - "libelleAcheminement": "PREAUX", - "nomCommune": "PREAUX" + "codePostal": "81130", + "codeCommune": "81166", + "libelleAcheminement": "MILHAVET", + "nomCommune": "MILHAVET" }, { - "codePostal": "36300", - "codeCommune": "36173", - "libelleAcheminement": "ROSNAY", - "nomCommune": "ROSNAY" + "codePostal": "81600", + "codeCommune": "81171", + "libelleAcheminement": "MONTANS", + "nomCommune": "MONTANS" }, { - "codePostal": "36300", - "codeCommune": "36176", - "libelleAcheminement": "RUFFEC", - "nomCommune": "RUFFEC" + "codePostal": "81630", + "codeCommune": "81175", + "libelleAcheminement": "MONTDURAUSSE", + "nomCommune": "MONTDURAUSSE" }, { - "codePostal": "36100", - "codeCommune": "36179", - "libelleAcheminement": "ST AOUSTRILLE", - "nomCommune": "ST AOUSTRILLE" + "codePostal": "81140", + "codeCommune": "81176", + "libelleAcheminement": "MONTELS", + "nomCommune": "MONTELS" }, { - "codePostal": "36170", - "codeCommune": "36182", - "libelleAcheminement": "ST BENOIT DU SAULT", - "nomCommune": "ST BENOIT DU SAULT" + "codePostal": "81210", + "codeCommune": "81177", + "libelleAcheminement": "MONTFA", + "nomCommune": "MONTFA" }, { - "codePostal": "36100", - "codeCommune": "36190", - "libelleAcheminement": "STE FAUSTE", - "nomCommune": "STE FAUSTE" + "codePostal": "81320", + "codeCommune": "81192", + "libelleAcheminement": "MURAT SUR VEBRE", + "nomCommune": "MURAT SUR VEBRE" }, { - "codePostal": "36500", - "codeCommune": "36193", - "libelleAcheminement": "STE GEMME", - "nomCommune": "STE GEMME" + "codePostal": "81170", + "codeCommune": "81197", + "libelleAcheminement": "NOAILLES", + "nomCommune": "NOAILLES" }, { - "codePostal": "36170", - "codeCommune": "36196", - "libelleAcheminement": "ST GILLES", - "nomCommune": "ST GILLES" + "codePostal": "81190", + "codeCommune": "81201", + "libelleAcheminement": "PAMPELONNE", + "nomCommune": "PAMPELONNE" }, { - "codePostal": "36290", - "codeCommune": "36204", - "libelleAcheminement": "ST MICHEL EN BRENNE", - "nomCommune": "ST MICHEL EN BRENNE" + "codePostal": "81440", + "codeCommune": "81207", + "libelleAcheminement": "PEYREGOUX", + "nomCommune": "PEYREGOUX" }, { - "codePostal": "36800", - "codeCommune": "36220", - "libelleAcheminement": "THENAY", - "nomCommune": "THENAY" + "codePostal": "81120", + "codeCommune": "81211", + "libelleAcheminement": "POULAN POUZOLS", + "nomCommune": "POULAN POUZOLS" }, { - "codePostal": "36700", - "codeCommune": "36225", - "libelleAcheminement": "LE TRANGER", - "nomCommune": "LE TRANGER" + "codePostal": "81470", + "codeCommune": "81214", + "libelleAcheminement": "PUECHOURSI", + "nomCommune": "PUECHOURSI" }, { - "codePostal": "36160", - "codeCommune": "36227", - "libelleAcheminement": "URCIERS", - "nomCommune": "URCIERS" + "codePostal": "81120", + "codeCommune": "81222", + "libelleAcheminement": "REALMONT", + "nomCommune": "REALMONT" }, { - "codePostal": "36210", - "codeCommune": "36229", - "libelleAcheminement": "VAL FOUZON", - "nomCommune": "VAL FOUZON" + "codePostal": "81470", + "codeCommune": "81229", + "libelleAcheminement": "ROQUEVIDAL", + "nomCommune": "ROQUEVIDAL" }, { - "codePostal": "36210", - "codeCommune": "36229", - "libelleAcheminement": "VAL FOUZON", - "nomCommune": "VAL FOUZON" + "codePostal": "81400", + "codeCommune": "81230", + "libelleAcheminement": "ROSIERES", + "nomCommune": "ROSIERES" }, { - "codePostal": "36600", - "codeCommune": "36233", - "libelleAcheminement": "LA VERNELLE", - "nomCommune": "LA VERNELLE" + "codePostal": "81240", + "codeCommune": "81238", + "libelleAcheminement": "ST AMANS SOULT", + "nomCommune": "ST AMANS SOULT" }, { - "codePostal": "36400", - "codeCommune": "36234", - "libelleAcheminement": "VERNEUIL SUR IGNERAIE", - "nomCommune": "VERNEUIL SUR IGNERAIE" + "codePostal": "81190", + "codeCommune": "81245", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "36160", - "codeCommune": "36238", - "libelleAcheminement": "VIGOULANT", - "nomCommune": "VIGOULANT" + "codePostal": "81190", + "codeCommune": "81249", + "libelleAcheminement": "STE GEMME", + "nomCommune": "STE GEMME" }, { - "codePostal": "37160", - "codeCommune": "37001", - "libelleAcheminement": "ABILLY", - "nomCommune": "ABILLY" + "codePostal": "81350", + "codeCommune": "81254", + "libelleAcheminement": "ST JEAN DE MARCEL", + "nomCommune": "ST JEAN DE MARCEL" }, { - "codePostal": "37110", - "codeCommune": "37009", - "libelleAcheminement": "AUTRECHE", - "nomCommune": "AUTRECHE" + "codePostal": "81160", + "codeCommune": "81257", + "libelleAcheminement": "ST JUERY", + "nomCommune": "ST JUERY" }, { - "codePostal": "37270", - "codeCommune": "37015", - "libelleAcheminement": "AZAY SUR CHER", - "nomCommune": "AZAY SUR CHER" + "codePostal": "81170", + "codeCommune": "81263", + "libelleAcheminement": "ST MARTIN LAGUEPIE", + "nomCommune": "ST MARTIN LAGUEPIE" }, { - "codePostal": "37310", - "codeCommune": "37016", - "libelleAcheminement": "AZAY SUR INDRE", - "nomCommune": "AZAY SUR INDRE" + "codePostal": "81490", + "codeCommune": "81269", + "libelleAcheminement": "ST SALVY DE LA BALME", + "nomCommune": "ST SALVY DE LA BALME" }, { - "codePostal": "37510", - "codeCommune": "37018", - "libelleAcheminement": "BALLAN MIRE", - "nomCommune": "BALLAN MIRE" + "codePostal": "81630", + "codeCommune": "81272", + "libelleAcheminement": "ST URCISSE", + "nomCommune": "ST URCISSE" }, { - "codePostal": "37510", - "codeCommune": "37025", - "libelleAcheminement": "BERTHENAY", - "nomCommune": "BERTHENAY" + "codePostal": "81350", + "codeCommune": "81277", + "libelleAcheminement": "SAUSSENAC", + "nomCommune": "SAUSSENAC" }, { - "codePostal": "37120", - "codeCommune": "37034", - "libelleAcheminement": "BRASLOU", - "nomCommune": "BRASLOU" + "codePostal": "81240", + "codeCommune": "81278", + "libelleAcheminement": "SAUVETERRE", + "nomCommune": "SAUVETERRE" }, { - "codePostal": "37500", - "codeCommune": "37042", - "libelleAcheminement": "CANDES ST MARTIN", - "nomCommune": "CANDES ST MARTIN" + "codePostal": "81120", + "codeCommune": "81295", + "libelleAcheminement": "TEILLET", + "nomCommune": "TEILLET" }, { - "codePostal": "37160", - "codeCommune": "37045", - "libelleAcheminement": "LA CELLE ST AVANT", - "nomCommune": "LA CELLE ST AVANT" + "codePostal": "81500", + "codeCommune": "81298", + "libelleAcheminement": "TEULAT", + "nomCommune": "TEULAT" }, { - "codePostal": "37290", - "codeCommune": "37048", - "libelleAcheminement": "CHAMBON", - "nomCommune": "CHAMBON" + "codePostal": "81170", + "codeCommune": "81300", + "libelleAcheminement": "TONNAC", + "nomCommune": "TONNAC" }, { - "codePostal": "37330", - "codeCommune": "37055", - "libelleAcheminement": "CHANNAY SUR LATHAN", - "nomCommune": "CHANNAY SUR LATHAN" + "codePostal": "81340", + "codeCommune": "81303", + "libelleAcheminement": "TREBAS", + "nomCommune": "TREBAS" }, { - "codePostal": "37130", - "codeCommune": "37056", - "libelleAcheminement": "LA CHAPELLE AUX NAUX", - "nomCommune": "LA CHAPELLE AUX NAUX" + "codePostal": "81500", + "codeCommune": "81310", + "libelleAcheminement": "VEILHES", + "nomCommune": "VEILHES" }, { - "codePostal": "37120", - "codeCommune": "37065", - "libelleAcheminement": "CHAVEIGNES", - "nomCommune": "CHAVEIGNES" + "codePostal": "81530", + "codeCommune": "81314", + "libelleAcheminement": "VIANE", + "nomCommune": "VIANE" }, { - "codePostal": "37500", - "codeCommune": "37072", - "libelleAcheminement": "CHINON", - "nomCommune": "CHINON" + "codePostal": "81130", + "codeCommune": "81319", + "libelleAcheminement": "VILLENEUVE SUR VERE", + "nomCommune": "VILLENEUVE SUR VERE" }, { - "codePostal": "37500", - "codeCommune": "37089", - "libelleAcheminement": "CRAVANT LES COTEAUX", - "nomCommune": "CRAVANT LES COTEAUX" + "codePostal": "81170", + "codeCommune": "81320", + "libelleAcheminement": "VINDRAC ALAYRAC", + "nomCommune": "VINDRAC ALAYRAC" }, { - "codePostal": "37380", - "codeCommune": "37092", - "libelleAcheminement": "CROTELLES", - "nomCommune": "CROTELLES" + "codePostal": "81640", + "codeCommune": "81322", + "libelleAcheminement": "VIRAC", + "nomCommune": "VIRAC" }, { - "codePostal": "37120", - "codeCommune": "37105", - "libelleAcheminement": "FAYE LA VINEUSE", - "nomCommune": "FAYE LA VINEUSE" + "codePostal": "81500", + "codeCommune": "81324", + "libelleAcheminement": "VIVIERS LES LAVAUR", + "nomCommune": "VIVIERS LES LAVAUR" }, { - "codePostal": "37600", - "codeCommune": "37108", - "libelleAcheminement": "FERRIERE SUR BEAULIEU", - "nomCommune": "FERRIERE SUR BEAULIEU" + "codePostal": "81150", + "codeCommune": "81326", + "libelleAcheminement": "STE CROIX", + "nomCommune": "STE CROIX" }, { - "codePostal": "37110", - "codeCommune": "37116", - "libelleAcheminement": "LES HERMITES", - "nomCommune": "LES HERMITES" + "codePostal": "82290", + "codeCommune": "82011", + "libelleAcheminement": "BARRY D ISLEMADE", + "nomCommune": "BARRY D ISLEMADE" }, { - "codePostal": "37420", - "codeCommune": "37118", - "libelleAcheminement": "HUISMES", - "nomCommune": "HUISMES" + "codePostal": "82800", + "codeCommune": "82018", + "libelleAcheminement": "BIOULE", + "nomCommune": "BIOULE" }, { - "codePostal": "37130", - "codeCommune": "37123", - "libelleAcheminement": "LANGEAIS", - "nomCommune": "LANGEAIS" + "codePostal": "82200", + "codeCommune": "82019", + "libelleAcheminement": "BOUDOU", + "nomCommune": "BOUDOU" }, { - "codePostal": "37530", - "codeCommune": "37131", - "libelleAcheminement": "LIMERAY", - "nomCommune": "LIMERAY" + "codePostal": "82600", + "codeCommune": "82020", + "libelleAcheminement": "BOUILLAC", + "nomCommune": "BOUILLAC" }, { - "codePostal": "37240", - "codeCommune": "37136", - "libelleAcheminement": "LE LOUROUX", - "nomCommune": "LE LOUROUX" + "codePostal": "82100", + "codeCommune": "82030", + "libelleAcheminement": "CASTELFERRUS", + "nomCommune": "CASTELFERRUS" }, { - "codePostal": "37230", - "codeCommune": "37139", - "libelleAcheminement": "LUYNES", - "nomCommune": "LUYNES" + "codePostal": "82300", + "codeCommune": "82037", + "libelleAcheminement": "CAUSSADE", + "nomCommune": "CAUSSADE" }, { - "codePostal": "37390", - "codeCommune": "37151", - "libelleAcheminement": "LA MEMBROLLE SUR CHOISILLE", - "nomCommune": "LA MEMBROLLE SUR CHOISILLE" + "codePostal": "82110", + "codeCommune": "82042", + "libelleAcheminement": "CAZES MONDENARD", + "nomCommune": "CAZES MONDENARD" }, { - "codePostal": "37390", - "codeCommune": "37152", - "libelleAcheminement": "METTRAY", - "nomCommune": "METTRAY" + "codePostal": "82390", + "codeCommune": "82051", + "libelleAcheminement": "DURFORT LACAPELETTE", + "nomCommune": "DURFORT LACAPELETTE" }, { - "codePostal": "37250", - "codeCommune": "37154", - "libelleAcheminement": "MONTBAZON", - "nomCommune": "MONTBAZON" + "codePostal": "82700", + "codeCommune": "82052", + "libelleAcheminement": "ESCATALENS", + "nomCommune": "ESCATALENS" }, { - "codePostal": "37460", - "codeCommune": "37157", - "libelleAcheminement": "MONTRESOR", - "nomCommune": "MONTRESOR" - }, - { - "codePostal": "37160", - "codeCommune": "37168", - "libelleAcheminement": "NEUILLY LE BRIGNON", - "nomCommune": "NEUILLY LE BRIGNON" + "codePostal": "82500", + "codeCommune": "82053", + "libelleAcheminement": "ESCAZEAUX", + "nomCommune": "ESCAZEAUX" }, { - "codePostal": "37110", - "codeCommune": "37169", - "libelleAcheminement": "NEUVILLE SUR BRENNE", - "nomCommune": "NEUVILLE SUR BRENNE" + "codePostal": "82500", + "codeCommune": "82059", + "libelleAcheminement": "FAUDOAS", + "nomCommune": "FAUDOAS" }, { - "codePostal": "37460", - "codeCommune": "37173", - "libelleAcheminement": "NOUANS LES FONTAINES", - "nomCommune": "NOUANS LES FONTAINES" + "codePostal": "82190", + "codeCommune": "82060", + "libelleAcheminement": "FAUROUX", + "nomCommune": "FAUROUX" }, { - "codePostal": "37460", - "codeCommune": "37177", - "libelleAcheminement": "ORBIGNY", - "nomCommune": "ORBIGNY" + "codePostal": "82100", + "codeCommune": "82063", + "libelleAcheminement": "GARGANVILLAR", + "nomCommune": "GARGANVILLAR" }, { - "codePostal": "37800", - "codeCommune": "37190", - "libelleAcheminement": "PUSSIGNY", - "nomCommune": "PUSSIGNY" + "codePostal": "82120", + "codeCommune": "82067", + "libelleAcheminement": "GENSAC", + "nomCommune": "GENSAC" }, { - "codePostal": "37120", - "codeCommune": "37196", - "libelleAcheminement": "RICHELIEU", - "nomCommune": "RICHELIEU" + "codePostal": "82330", + "codeCommune": "82069", + "libelleAcheminement": "GINALS", + "nomCommune": "GINALS" }, { - "codePostal": "37360", - "codeCommune": "37206", - "libelleAcheminement": "ST ANTOINE DU ROCHER", - "nomCommune": "ST ANTOINE DU ROCHER" + "codePostal": "82100", + "codeCommune": "82081", + "libelleAcheminement": "LABOURGADE", + "nomCommune": "LABOURGADE" }, { - "codePostal": "37800", - "codeCommune": "37212", - "libelleAcheminement": "STE CATHERINE DE FIERBOIS", - "nomCommune": "STE CATHERINE DE FIERBOIS" + "codePostal": "82250", + "codeCommune": "82088", + "libelleAcheminement": "LAGUEPIE", + "nomCommune": "LAGUEPIE" }, { - "codePostal": "37540", - "codeCommune": "37214", - "libelleAcheminement": "ST CYR SUR LOIRE", - "nomCommune": "ST CYR SUR LOIRE" + "codePostal": "82500", + "codeCommune": "82093", + "libelleAcheminement": "LARRAZET", + "nomCommune": "LARRAZET" }, { - "codePostal": "37800", - "codeCommune": "37216", - "libelleAcheminement": "ST EPAIN", - "nomCommune": "ST EPAIN" + "codePostal": "82110", + "codeCommune": "82094", + "libelleAcheminement": "LAUZERTE", + "nomCommune": "LAUZERTE" }, { - "codePostal": "37600", - "codeCommune": "37218", - "libelleAcheminement": "ST FLOVIER", - "nomCommune": "ST FLOVIER" + "codePostal": "82200", + "codeCommune": "82099", + "libelleAcheminement": "LIZAC", + "nomCommune": "LIZAC" }, { - "codePostal": "37510", - "codeCommune": "37219", - "libelleAcheminement": "ST GENOUPH", - "nomCommune": "ST GENOUPH" + "codePostal": "82600", + "codeCommune": "82105", + "libelleAcheminement": "MAS GRENIER", + "nomCommune": "MAS GRENIER" }, { - "codePostal": "37500", - "codeCommune": "37220", - "libelleAcheminement": "ST GERMAIN SUR VIENNE", - "nomCommune": "ST GERMAIN SUR VIENNE" + "codePostal": "82200", + "codeCommune": "82112", + "libelleAcheminement": "MOISSAC", + "nomCommune": "MOISSAC" }, { - "codePostal": "37800", - "codeCommune": "37226", - "libelleAcheminement": "STE MAURE DE TOURAINE", - "nomCommune": "STE MAURE DE TOURAINE" + "codePostal": "82220", + "codeCommune": "82113", + "libelleAcheminement": "MOLIERES", + "nomCommune": "MOLIERES" }, { - "codePostal": "37600", - "codeCommune": "37238", - "libelleAcheminement": "ST SENOCH", - "nomCommune": "ST SENOCH" + "codePostal": "82130", + "codeCommune": "82120", + "libelleAcheminement": "MONTASTRUC", + "nomCommune": "MONTASTRUC" }, { - "codePostal": "37360", - "codeCommune": "37245", - "libelleAcheminement": "SEMBLANCAY", - "nomCommune": "SEMBLANCAY" + "codePostal": "82270", + "codeCommune": "82128", + "libelleAcheminement": "MONTFERMIER", + "nomCommune": "MONTFERMIER" }, { - "codePostal": "37600", - "codeCommune": "37246", - "libelleAcheminement": "SENNEVIERES", - "nomCommune": "SENNEVIERES" + "codePostal": "82800", + "codeCommune": "82132", + "libelleAcheminement": "MONTRICOUX", + "nomCommune": "MONTRICOUX" }, { - "codePostal": "37600", - "codeCommune": "37265", - "libelleAcheminement": "VARENNES", - "nomCommune": "VARENNES" + "codePostal": "82400", + "codeCommune": "82138", + "libelleAcheminement": "PERVILLE", + "nomCommune": "PERVILLE" }, { - "codePostal": "37600", - "codeCommune": "37269", - "libelleAcheminement": "VERNEUIL SUR INDRE", - "nomCommune": "VERNEUIL SUR INDRE" + "codePostal": "82400", + "codeCommune": "82141", + "libelleAcheminement": "POMMEVIC", + "nomCommune": "POMMEVIC" }, { - "codePostal": "37260", - "codeCommune": "37278", - "libelleAcheminement": "VILLEPERDUE", - "nomCommune": "VILLEPERDUE" + "codePostal": "82220", + "codeCommune": "82144", + "libelleAcheminement": "PUYCORNET", + "nomCommune": "PUYCORNET" }, { - "codePostal": "37330", - "codeCommune": "37279", - "libelleAcheminement": "VILLIERS AU BOUIN", - "nomCommune": "VILLIERS AU BOUIN" + "codePostal": "82120", + "codeCommune": "82146", + "libelleAcheminement": "PUYGAILLARD DE LOMAGNE", + "nomCommune": "PUYGAILLARD DE LOMAGNE" }, { - "codePostal": "37240", - "codeCommune": "37280", - "libelleAcheminement": "VOU", - "nomCommune": "VOU" + "codePostal": "82150", + "codeCommune": "82153", + "libelleAcheminement": "ST AMANS DU PECH", + "nomCommune": "ST AMANS DU PECH" }, { - "codePostal": "38580", - "codeCommune": "38006", - "libelleAcheminement": "ALLEVARD", - "nomCommune": "ALLEVARD" + "codePostal": "82110", + "codeCommune": "82154", + "libelleAcheminement": "ST AMANS DE PELLAGAL", + "nomCommune": "ST AMANS DE PELLAGAL" }, { - "codePostal": "38490", - "codeCommune": "38012", - "libelleAcheminement": "AOSTE", - "nomCommune": "AOSTE" + "codePostal": "82410", + "codeCommune": "82161", + "libelleAcheminement": "ST ETIENNE DE TULMONT", + "nomCommune": "ST ETIENNE DE TULMONT" }, { - "codePostal": "38140", - "codeCommune": "38013", - "libelleAcheminement": "APPRIEU", - "nomCommune": "APPRIEU" + "codePostal": "82240", + "codeCommune": "82162", + "libelleAcheminement": "ST GEORGES", + "nomCommune": "ST GEORGES" }, { - "codePostal": "38140", - "codeCommune": "38013", - "libelleAcheminement": "APPRIEU", - "nomCommune": "APPRIEU" + "codePostal": "82230", + "codeCommune": "82176", + "libelleAcheminement": "LA SALVETAT BELMONTET", + "nomCommune": "LA SALVETAT BELMONTET" }, { - "codePostal": "38150", - "codeCommune": "38017", - "libelleAcheminement": "ASSIEU", - "nomCommune": "ASSIEU" + "codePostal": "82110", + "codeCommune": "82177", + "libelleAcheminement": "SAUVETERRE", + "nomCommune": "SAUVETERRE" }, { - "codePostal": "38142", - "codeCommune": "38020", - "libelleAcheminement": "AURIS", - "nomCommune": "AURIS" + "codePostal": "82500", + "codeCommune": "82180", + "libelleAcheminement": "SERIGNAC", + "nomCommune": "SERIGNAC" }, { - "codePostal": "38650", - "codeCommune": "38023", - "libelleAcheminement": "AVIGNONET", - "nomCommune": "AVIGNONET" + "codePostal": "82330", + "codeCommune": "82187", + "libelleAcheminement": "VAREN", + "nomCommune": "VAREN" }, { - "codePostal": "38870", - "codeCommune": "38056", - "libelleAcheminement": "BRESSIEUX", - "nomCommune": "BRESSIEUX" + "codePostal": "82370", + "codeCommune": "82194", + "libelleAcheminement": "VILLEBRUMIER", + "nomCommune": "VILLEBRUMIER" }, { - "codePostal": "38500", - "codeCommune": "38061", - "libelleAcheminement": "LA BUISSE", - "nomCommune": "LA BUISSE" + "codePostal": "82130", + "codeCommune": "82195", + "libelleAcheminement": "VILLEMADE", + "nomCommune": "VILLEMADE" }, { - "codePostal": "38530", - "codeCommune": "38062", - "libelleAcheminement": "LA BUISSIERE", - "nomCommune": "LA BUISSIERE" + "codePostal": "83630", + "codeCommune": "83002", + "libelleAcheminement": "AIGUINES", + "nomCommune": "AIGUINES" }, { - "codePostal": "38122", - "codeCommune": "38066", - "libelleAcheminement": "CHALON", - "nomCommune": "CHALON" + "codePostal": "83111", + "codeCommune": "83003", + "libelleAcheminement": "AMPUS", + "nomCommune": "AMPUS" }, { - "codePostal": "38460", - "codeCommune": "38067", - "libelleAcheminement": "CHAMAGNIEU", - "nomCommune": "CHAMAGNIEU" + "codePostal": "83560", + "codeCommune": "83006", + "libelleAcheminement": "ARTIGUES", + "nomCommune": "ARTIGUES" }, { - "codePostal": "38110", - "codeCommune": "38076", - "libelleAcheminement": "LA CHAPELLE DE LA TOUR", - "nomCommune": "LA CHAPELLE DE LA TOUR" + "codePostal": "83630", + "codeCommune": "83007", + "libelleAcheminement": "AUPS", + "nomCommune": "AUPS" }, { - "codePostal": "38580", - "codeCommune": "38078", - "libelleAcheminement": "LA CHAPELLE DU BARD", - "nomCommune": "LA CHAPELLE DU BARD" + "codePostal": "83630", + "codeCommune": "83014", + "libelleAcheminement": "BAUDINARD SUR VERDON", + "nomCommune": "BAUDINARD SUR VERDON" }, { - "codePostal": "38390", - "codeCommune": "38083", - "libelleAcheminement": "CHARETTE", - "nomCommune": "CHARETTE" + "codePostal": "83630", + "codeCommune": "83015", + "libelleAcheminement": "BAUDUEN", + "nomCommune": "BAUDUEN" }, { - "codePostal": "38670", - "codeCommune": "38087", - "libelleAcheminement": "CHASSE SUR RHONE", - "nomCommune": "CHASSE SUR RHONE" + "codePostal": "83330", + "codeCommune": "83016", + "libelleAcheminement": "LE BEAUSSET", + "nomCommune": "LE BEAUSSET" }, { - "codePostal": "38650", - "codeCommune": "38090", - "libelleAcheminement": "CHATEAU BERNARD", - "nomCommune": "CHATEAU BERNARD" + "codePostal": "83230", + "codeCommune": "83019", + "libelleAcheminement": "BORMES LES MIMOSAS", + "nomCommune": "BORMES LES MIMOSAS" }, { - "codePostal": "38160", - "codeCommune": "38099", - "libelleAcheminement": "CHEVRIERES", - "nomCommune": "CHEVRIERES" + "codePostal": "83340", + "codeCommune": "83031", + "libelleAcheminement": "LE CANNET DES MAURES", + "nomCommune": "LE CANNET DES MAURES" }, { - "codePostal": "38300", - "codeCommune": "38102", - "libelleAcheminement": "CHEZENEUVE", - "nomCommune": "CHEZENEUVE" + "codePostal": "83660", + "codeCommune": "83033", + "libelleAcheminement": "CARNOULES", + "nomCommune": "CARNOULES" }, { - "codePostal": "38930", - "codeCommune": "38113", - "libelleAcheminement": "CLELLES EN TRIEVES", - "nomCommune": "CLELLES" + "codePostal": "83330", + "codeCommune": "83035", + "libelleAcheminement": "LE CASTELLET", + "nomCommune": "LE CASTELLET" }, { - "codePostal": "38650", - "codeCommune": "38115", - "libelleAcheminement": "ST MARTIN DE LA CLUZE", - "nomCommune": "ST MARTIN DE LA CLUZE" + "codePostal": "83330", + "codeCommune": "83035", + "libelleAcheminement": "LE CASTELLET", + "nomCommune": "LE CASTELLET" }, { - "codePostal": "38710", - "codeCommune": "38127", - "libelleAcheminement": "CORNILLON EN TRIEVES", - "nomCommune": "CORNILLON EN TRIEVES" + "codePostal": "83330", + "codeCommune": "83035", + "libelleAcheminement": "LE CASTELLET", + "nomCommune": "LE CASTELLET" }, { - "codePostal": "38122", - "codeCommune": "38134", - "libelleAcheminement": "COUR ET BUIS", - "nomCommune": "COUR ET BUIS" + "codePostal": "83310", + "codeCommune": "83042", + "libelleAcheminement": "COGOLIN", + "nomCommune": "COGOLIN" }, { - "codePostal": "38510", - "codeCommune": "38139", - "libelleAcheminement": "CREYS MEPIEU", - "nomCommune": "CREYS MEPIEU" + "codePostal": "83570", + "codeCommune": "83045", + "libelleAcheminement": "CORRENS", + "nomCommune": "CORRENS" }, { - "codePostal": "38730", - "codeCommune": "38147", - "libelleAcheminement": "DOISSIN", - "nomCommune": "DOISSIN" + "codePostal": "83420", + "codeCommune": "83048", + "libelleAcheminement": "LA CROIX VALMER", + "nomCommune": "LA CROIX VALMER" }, { - "codePostal": "38780", - "codeCommune": "38160", - "libelleAcheminement": "EYZIN PINET", - "nomCommune": "EYZIN PINET" + "codePostal": "83680", + "codeCommune": "83063", + "libelleAcheminement": "LA GARDE FREINET", + "nomCommune": "LA GARDE FREINET" }, { - "codePostal": "38120", - "codeCommune": "38170", - "libelleAcheminement": "FONTANIL CORNILLON", - "nomCommune": "FONTANIL CORNILLON" + "codePostal": "83310", + "codeCommune": "83068", + "libelleAcheminement": "GRIMAUD", + "nomCommune": "GRIMAUD" }, { - "codePostal": "38590", - "codeCommune": "38171", - "libelleAcheminement": "LA FORTERESSE", - "nomCommune": "LA FORTERESSE" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "38260", - "codeCommune": "38174", - "libelleAcheminement": "LA FRETTE", - "nomCommune": "LA FRETTE" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "38610", - "codeCommune": "38179", - "libelleAcheminement": "GIERES", - "nomCommune": "GIERES" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "38000", - "codeCommune": "38185", - "libelleAcheminement": "GRENOBLE", - "nomCommune": "GRENOBLE" + "codePostal": "83250", + "codeCommune": "83071", + "libelleAcheminement": "LA LONDE LES MAURES", + "nomCommune": "LA LONDE LES MAURES" }, { - "codePostal": "38100", - "codeCommune": "38185", - "libelleAcheminement": "GRENOBLE", - "nomCommune": "GRENOBLE" + "codePostal": "83510", + "codeCommune": "83072", + "libelleAcheminement": "LORGUES", + "nomCommune": "LORGUES" }, { - "codePostal": "38650", - "codeCommune": "38186", - "libelleAcheminement": "GRESSE EN VERCORS", - "nomCommune": "GRESSE EN VERCORS" + "codePostal": "83340", + "codeCommune": "83075", + "libelleAcheminement": "LES MAYONS", + "nomCommune": "LES MAYONS" }, { - "codePostal": "38750", - "codeCommune": "38191", - "libelleAcheminement": "HUEZ", - "nomCommune": "HUEZ" + "codePostal": "83136", + "codeCommune": "83076", + "libelleAcheminement": "MAZAUGUES", + "nomCommune": "MAZAUGUES" }, { - "codePostal": "38160", - "codeCommune": "38195", - "libelleAcheminement": "IZERON", - "nomCommune": "IZERON" + "codePostal": "83630", + "codeCommune": "83078", + "libelleAcheminement": "MOISSAC BELLEVUE", + "nomCommune": "MOISSAC BELLEVUE" }, { - "codePostal": "38280", - "codeCommune": "38197", - "libelleAcheminement": "JANNEYRIAS", - "nomCommune": "JANNEYRIAS" + "codePostal": "83131", + "codeCommune": "83082", + "libelleAcheminement": "MONTFERRAT", + "nomCommune": "MONTFERRAT" }, { - "codePostal": "38200", - "codeCommune": "38199", - "libelleAcheminement": "JARDIN", - "nomCommune": "JARDIN" + "codePostal": "83470", + "codeCommune": "83089", + "libelleAcheminement": "OLLIERES", + "nomCommune": "OLLIERES" }, { - "codePostal": "38190", - "codeCommune": "38206", - "libelleAcheminement": "LAVAL EN BELLEDONNE", - "nomCommune": "LAVAL EN BELLEDONNE" + "codePostal": "83910", + "codeCommune": "83097", + "libelleAcheminement": "POURRIERES", + "nomCommune": "POURRIERES" }, { - "codePostal": "38460", - "codeCommune": "38210", - "libelleAcheminement": "LEYRIEU", - "nomCommune": "LEYRIEU" + "codePostal": "83220", + "codeCommune": "83098", + "libelleAcheminement": "LE PRADET", + "nomCommune": "LE PRADET" }, { - "codePostal": "38220", - "codeCommune": "38212", - "libelleAcheminement": "LIVET ET GAVET", - "nomCommune": "LIVET ET GAVET" + "codePostal": "83390", + "codeCommune": "83100", + "libelleAcheminement": "PUGET VILLE", + "nomCommune": "PUGET VILLE" }, { - "codePostal": "38350", - "codeCommune": "38217", - "libelleAcheminement": "MARCIEU", - "nomCommune": "MARCIEU" + "codePostal": "83350", + "codeCommune": "83101", + "libelleAcheminement": "RAMATUELLE", + "nomCommune": "RAMATUELLE" }, { - "codePostal": "38980", - "codeCommune": "38221", - "libelleAcheminement": "MARNANS", - "nomCommune": "MARNANS" + "codePostal": "13780", + "codeCommune": "83105", + "libelleAcheminement": "RIBOUX", + "nomCommune": "RIBOUX" }, { - "codePostal": "38710", - "codeCommune": "38226", - "libelleAcheminement": "MENS", - "nomCommune": "MENS" + "codePostal": "83440", + "codeCommune": "83117", + "libelleAcheminement": "ST PAUL EN FORET", + "nomCommune": "ST PAUL EN FORET" }, { - "codePostal": "38710", - "codeCommune": "38226", - "libelleAcheminement": "MENS", - "nomCommune": "MENS" + "codePostal": "83530", + "codeCommune": "83118", + "libelleAcheminement": "ST RAPHAEL", + "nomCommune": "ST RAPHAEL" }, { - "codePostal": "38142", - "codeCommune": "38237", - "libelleAcheminement": "MIZOEN", - "nomCommune": "MIZOEN" + "codePostal": "83700", + "codeCommune": "83118", + "libelleAcheminement": "ST RAPHAEL", + "nomCommune": "ST RAPHAEL" }, { - "codePostal": "38860", - "codeCommune": "38253", - "libelleAcheminement": "LES DEUX ALPES", - "nomCommune": "LES DEUX ALPES" + "codePostal": "83210", + "codeCommune": "83130", + "libelleAcheminement": "SOLLIES PONT", + "nomCommune": "SOLLIES PONT" }, { - "codePostal": "38940", - "codeCommune": "38255", - "libelleAcheminement": "MONTFALCON", - "nomCommune": "MONTFALCON" + "codePostal": "83210", + "codeCommune": "83131", + "libelleAcheminement": "SOLLIES TOUCAS", + "nomCommune": "SOLLIES TOUCAS" }, { - "codePostal": "38620", - "codeCommune": "38256", - "libelleAcheminement": "MONTFERRAT", - "nomCommune": "MONTFERRAT" + "codePostal": "83100", + "codeCommune": "83137", + "libelleAcheminement": "TOULON", + "nomCommune": "TOULON" }, { - "codePostal": "38690", - "codeCommune": "38257", - "libelleAcheminement": "MONTREVEL", - "nomCommune": "MONTREVEL" + "codePostal": "83690", + "codeCommune": "83139", + "libelleAcheminement": "TOURTOUR", + "nomCommune": "TOURTOUR" }, { - "codePostal": "38770", - "codeCommune": "38265", - "libelleAcheminement": "LA MOTTE D AVEILLANS", - "nomCommune": "LA MOTTE D AVEILLANS" + "codePostal": "84240", + "codeCommune": "84009", + "libelleAcheminement": "LA BASTIDE DES JOURDANS", + "nomCommune": "LA BASTIDE DES JOURDANS" }, { - "codePostal": "38140", - "codeCommune": "38270", - "libelleAcheminement": "LA MURETTE", - "nomCommune": "LA MURETTE" + "codePostal": "84120", + "codeCommune": "84014", + "libelleAcheminement": "BEAUMONT DE PERTUIS", + "nomCommune": "BEAUMONT DE PERTUIS" }, { - "codePostal": "38510", - "codeCommune": "38297", - "libelleAcheminement": "ARANDON PASSINS", - "nomCommune": "ARANDON PASSINS" + "codePostal": "84570", + "codeCommune": "84018", + "libelleAcheminement": "BLAUVAC", + "nomCommune": "BLAUVAC" }, { - "codePostal": "38970", - "codeCommune": "38299", - "libelleAcheminement": "PELLAFOL", - "nomCommune": "PELLAFOL" + "codePostal": "84220", + "codeCommune": "84025", + "libelleAcheminement": "CABRIERES D AVIGNON", + "nomCommune": "CABRIERES D AVIGNON" }, { - "codePostal": "38260", - "codeCommune": "38300", - "libelleAcheminement": "PENOL", - "nomCommune": "PENOL" + "codePostal": "84460", + "codeCommune": "84038", + "libelleAcheminement": "CHEVAL BLANC", + "nomCommune": "CHEVAL BLANC" }, { - "codePostal": "38119", - "codeCommune": "38304", - "libelleAcheminement": "PIERRE CHATEL", - "nomCommune": "PIERRE CHATEL" + "codePostal": "84340", + "codeCommune": "84044", + "libelleAcheminement": "ENTRECHAUX", + "nomCommune": "ENTRECHAUX" }, { - "codePostal": "38320", - "codeCommune": "38309", - "libelleAcheminement": "POISAT", - "nomCommune": "POISAT" + "codePostal": "84400", + "codeCommune": "84047", + "libelleAcheminement": "GARGAS", + "nomCommune": "GARGAS" }, { - "codePostal": "38210", - "codeCommune": "38310", - "libelleAcheminement": "POLIENAS", - "nomCommune": "POLIENAS" + "codePostal": "84220", + "codeCommune": "84051", + "libelleAcheminement": "GOULT", + "nomCommune": "GOULT" }, { - "codePostal": "38530", - "codeCommune": "38314", - "libelleAcheminement": "PONTCHARRA", - "nomCommune": "PONTCHARRA" + "codePostal": "84220", + "codeCommune": "84057", + "libelleAcheminement": "JOUCAS", + "nomCommune": "JOUCAS" }, { - "codePostal": "38480", - "codeCommune": "38315", - "libelleAcheminement": "LE PONT DE BEAUVOISIN", - "nomCommune": "LE PONT DE BEAUVOISIN" + "codePostal": "84190", + "codeCommune": "84059", + "libelleAcheminement": "LAFARE", + "nomCommune": "LAFARE" }, { - "codePostal": "38230", - "codeCommune": "38316", - "libelleAcheminement": "PONT DE CHERUY", - "nomCommune": "PONT DE CHERUY" + "codePostal": "84800", + "codeCommune": "84062", + "libelleAcheminement": "LAGNES", + "nomCommune": "LAGNES" }, { - "codePostal": "38800", - "codeCommune": "38317", - "libelleAcheminement": "LE PONT DE CLAIX", - "nomCommune": "LE PONT DE CLAIX" + "codePostal": "84160", + "codeCommune": "84068", + "libelleAcheminement": "LOURMARIN", + "nomCommune": "LOURMARIN" }, { - "codePostal": "38480", - "codeCommune": "38323", - "libelleAcheminement": "PRESSINS", - "nomCommune": "PRESSINS" + "codePostal": "84340", + "codeCommune": "84069", + "libelleAcheminement": "MALAUCENE", + "nomCommune": "MALAUCENE" }, { - "codePostal": "38140", - "codeCommune": "38332", - "libelleAcheminement": "RENAGE", - "nomCommune": "RENAGE" + "codePostal": "84660", + "codeCommune": "84071", + "libelleAcheminement": "MAUBEC", + "nomCommune": "MAUBEC" }, { - "codePostal": "38121", - "codeCommune": "38336", - "libelleAcheminement": "REVENTIN VAUGRIS", - "nomCommune": "REVENTIN VAUGRIS" + "codePostal": "84380", + "codeCommune": "84072", + "libelleAcheminement": "MAZAN", + "nomCommune": "MAZAN" }, { - "codePostal": "38440", - "codeCommune": "38346", - "libelleAcheminement": "ROYAS", - "nomCommune": "ROYAS" + "codePostal": "84360", + "codeCommune": "84074", + "libelleAcheminement": "MERINDOL", + "nomCommune": "MERINDOL" }, { - "codePostal": "38550", - "codeCommune": "38349", - "libelleAcheminement": "SABLONS", - "nomCommune": "SABLONS" + "codePostal": "84570", + "codeCommune": "84075", + "libelleAcheminement": "METHAMIS", + "nomCommune": "METHAMIS" }, { - "codePostal": "38480", - "codeCommune": "38354", - "libelleAcheminement": "ST ALBIN DE VAULSERRE", - "nomCommune": "ST ALBIN DE VAULSERRE" + "codePostal": "84430", + "codeCommune": "84078", + "libelleAcheminement": "MONDRAGON", + "nomCommune": "MONDRAGON" }, { - "codePostal": "38490", - "codeCommune": "38357", - "libelleAcheminement": "ST ANDRE LE GAZ", - "nomCommune": "ST ANDRE LE GAZ" + "codePostal": "84170", + "codeCommune": "84080", + "libelleAcheminement": "MONTEUX", + "nomCommune": "MONTEUX" }, { - "codePostal": "38160", - "codeCommune": "38359", - "libelleAcheminement": "ST ANTOINE L ABBAYE", - "nomCommune": "ST ANTOINE L ABBAYE" + "codePostal": "84240", + "codeCommune": "84084", + "libelleAcheminement": "LA MOTTE D AIGUES", + "nomCommune": "LA MOTTE D AIGUES" }, { - "codePostal": "38140", - "codeCommune": "38368", - "libelleAcheminement": "ST BLAISE DU BUIS", - "nomCommune": "ST BLAISE DU BUIS" + "codePostal": "84120", + "codeCommune": "84089", + "libelleAcheminement": "PERTUIS", + "nomCommune": "PERTUIS" }, { - "codePostal": "38520", - "codeCommune": "38375", - "libelleAcheminement": "ST CHRISTOPHE EN OISANS", - "nomCommune": "ST CHRISTOPHE EN OISANS" + "codePostal": "84400", + "codeCommune": "84105", + "libelleAcheminement": "SAIGNON", + "nomCommune": "SAIGNON" }, { - "codePostal": "38380", - "codeCommune": "38376", - "libelleAcheminement": "ST CHRISTOPHE SUR GUIERS", - "nomCommune": "ST CHRISTOPHE SUR GUIERS" + "codePostal": "84390", + "codeCommune": "84110", + "libelleAcheminement": "ST LEGER DU VENTOUX", + "nomCommune": "ST LEGER DU VENTOUX" }, { - "codePostal": "38370", - "codeCommune": "38378", - "libelleAcheminement": "ST CLAIR DU RHONE", - "nomCommune": "ST CLAIR DU RHONE" + "codePostal": "84760", + "codeCommune": "84113", + "libelleAcheminement": "ST MARTIN DE LA BRASQUE", + "nomCommune": "ST MARTIN DE LA BRASQUE" }, { - "codePostal": "38940", - "codeCommune": "38379", - "libelleAcheminement": "ST CLAIR SUR GALAURE", - "nomCommune": "ST CLAIR SUR GALAURE" + "codePostal": "84220", + "codeCommune": "84114", + "libelleAcheminement": "ST PANTALEON", + "nomCommune": "ST PANTALEON" }, { - "codePostal": "38590", - "codeCommune": "38387", - "libelleAcheminement": "ST GEOIRS", - "nomCommune": "ST GEOIRS" + "codePostal": "84390", + "codeCommune": "84120", + "libelleAcheminement": "ST TRINIT", + "nomCommune": "ST TRINIT" }, { - "codePostal": "38650", - "codeCommune": "38391", - "libelleAcheminement": "ST GUILLAUME", - "nomCommune": "ST GUILLAUME" + "codePostal": "84100", + "codeCommune": "84135", + "libelleAcheminement": "UCHAUX", + "nomCommune": "UCHAUX" }, { - "codePostal": "38840", - "codeCommune": "38394", - "libelleAcheminement": "ST HILAIRE DU ROSIER", - "nomCommune": "ST HILAIRE DU ROSIER" + "codePostal": "84600", + "codeCommune": "84138", + "libelleAcheminement": "VALREAS", + "nomCommune": "VALREAS" }, { - "codePostal": "38660", - "codeCommune": "38395", - "libelleAcheminement": "PLATEAU DES PETITES ROCHES", - "nomCommune": "PLATEAU DES PETITES ROCHES" + "codePostal": "84800", + "codeCommune": "84139", + "libelleAcheminement": "FONTAINE DE VAUCLUSE", + "nomCommune": "FONTAINE DE VAUCLUSE" }, { - "codePostal": "38350", - "codeCommune": "38396", - "libelleAcheminement": "ST HONORE", - "nomCommune": "ST HONORE" + "codePostal": "84400", + "codeCommune": "84145", + "libelleAcheminement": "VILLARS", + "nomCommune": "VILLARS" }, { - "codePostal": "38122", - "codeCommune": "38406", - "libelleAcheminement": "ST JULIEN DE L HERMS", - "nomCommune": "ST JULIEN DE L HERMS" + "codePostal": "84110", + "codeCommune": "84146", + "libelleAcheminement": "VILLEDIEU", + "nomCommune": "VILLEDIEU" }, { - "codePostal": "38840", - "codeCommune": "38410", - "libelleAcheminement": "ST LATTIER", - "nomCommune": "ST LATTIER" + "codePostal": "84570", + "codeCommune": "84148", + "libelleAcheminement": "VILLES SUR AUZON", + "nomCommune": "VILLES SUR AUZON" }, { - "codePostal": "38160", - "codeCommune": "38416", - "libelleAcheminement": "ST MARCELLIN", - "nomCommune": "ST MARCELLIN" + "codePostal": "84150", + "codeCommune": "84149", + "libelleAcheminement": "VIOLES", + "nomCommune": "VIOLES" }, { - "codePostal": "38590", - "codeCommune": "38427", - "libelleAcheminement": "ST MICHEL DE ST GEOIRS", - "nomCommune": "ST MICHEL DE ST GEOIRS" + "codePostal": "84240", + "codeCommune": "84151", + "libelleAcheminement": "VITROLLES EN LUBERON", + "nomCommune": "VITROLLES EN LUBERON" }, { - "codePostal": "38500", - "codeCommune": "38432", - "libelleAcheminement": "ST NICOLAS DE MACHERIN", - "nomCommune": "ST NICOLAS DE MACHERIN" + "codePostal": "85460", + "codeCommune": "85001", + "libelleAcheminement": "L AIGUILLON LA PRESQU ILE", + "nomCommune": "L AIGUILLON LA PRESQU ILE" }, { - "codePostal": "38380", - "codeCommune": "38442", - "libelleAcheminement": "ST PIERRE DE CHARTREUSE", - "nomCommune": "ST PIERRE DE CHARTREUSE" + "codePostal": "85390", + "codeCommune": "85014", + "libelleAcheminement": "BAZOGES EN PAREDS", + "nomCommune": "BAZOGES EN PAREDS" }, { - "codePostal": "38220", - "codeCommune": "38445", - "libelleAcheminement": "ST PIERRE DE MESAGE", - "nomCommune": "ST PIERRE DE MESAGE" + "codePostal": "85190", + "codeCommune": "85016", + "libelleAcheminement": "BEAULIEU SOUS LA ROCHE", + "nomCommune": "BEAULIEU SOUS LA ROCHE" }, { - "codePostal": "38370", - "codeCommune": "38448", - "libelleAcheminement": "ST PRIM", - "nomCommune": "ST PRIM" + "codePostal": "85170", + "codeCommune": "85019", + "libelleAcheminement": "BELLEVIGNY", + "nomCommune": "BELLEVIGNY" }, { - "codePostal": "38210", - "codeCommune": "38450", - "libelleAcheminement": "ST QUENTIN SUR ISERE", - "nomCommune": "ST QUENTIN SUR ISERE" + "codePostal": "85490", + "codeCommune": "85020", + "libelleAcheminement": "BENET", + "nomCommune": "BENET" }, { - "codePostal": "38460", - "codeCommune": "38451", - "libelleAcheminement": "ST ROMAIN DE JALIONAS", - "nomCommune": "ST ROMAIN DE JALIONAS" + "codePostal": "85320", + "codeCommune": "85023", + "libelleAcheminement": "BESSAY", + "nomCommune": "BESSAY" }, { - "codePostal": "38200", - "codeCommune": "38459", - "libelleAcheminement": "ST SORLIN DE VIENNE", - "nomCommune": "ST SORLIN DE VIENNE" + "codePostal": "85230", + "codeCommune": "85029", + "libelleAcheminement": "BOUIN", + "nomCommune": "BOUIN" }, { - "codePostal": "38620", - "codeCommune": "38460", - "libelleAcheminement": "ST SULPICE DES RIVOIRES", - "nomCommune": "ST SULPICE DES RIVOIRES" + "codePostal": "85480", + "codeCommune": "85034", + "libelleAcheminement": "BOURNEZEAU", + "nomCommune": "BOURNEZEAU" }, { - "codePostal": "38119", - "codeCommune": "38462", - "libelleAcheminement": "ST THEOFFREY", - "nomCommune": "ST THEOFFREY" + "codePostal": "85530", + "codeCommune": "85039", + "libelleAcheminement": "LA BRUFFIERE", + "nomCommune": "LA BRUFFIERE" }, { - "codePostal": "38160", - "codeCommune": "38463", - "libelleAcheminement": "ST VERAND", - "nomCommune": "ST VERAND" + "codePostal": "85450", + "codeCommune": "85042", + "libelleAcheminement": "CHAILLE LES MARAIS", + "nomCommune": "CHAILLE LES MARAIS" }, { - "codePostal": "38510", - "codeCommune": "38465", - "libelleAcheminement": "ST VICTOR DE MORESTEL", - "nomCommune": "ST VICTOR DE MORESTEL" + "codePostal": "85310", + "codeCommune": "85046", + "libelleAcheminement": "LA CHAIZE LE VICOMTE", + "nomCommune": "LA CHAIZE LE VICOMTE" }, { - "codePostal": "38150", - "codeCommune": "38468", - "libelleAcheminement": "SALAISE SUR SANNE", - "nomCommune": "SALAISE SUR SANNE" + "codePostal": "85710", + "codeCommune": "85062", + "libelleAcheminement": "CHATEAUNEUF", + "nomCommune": "CHATEAUNEUF" }, { - "codePostal": "38970", - "codeCommune": "38469", - "libelleAcheminement": "LA SALETTE FALLAVAUX", - "nomCommune": "LA SALETTE FALLAVAUX" + "codePostal": "85250", + "codeCommune": "85065", + "libelleAcheminement": "CHAVAGNES EN PAILLERS", + "nomCommune": "CHAVAGNES EN PAILLERS" }, { - "codePostal": "38350", - "codeCommune": "38470", - "libelleAcheminement": "LA SALLE EN BEAUMONT", - "nomCommune": "LA SALLE EN BEAUMONT" + "codePostal": "85740", + "codeCommune": "85083", + "libelleAcheminement": "L EPINE", + "nomCommune": "L EPINE" }, { - "codePostal": "38360", - "codeCommune": "38474", - "libelleAcheminement": "SASSENAGE", - "nomCommune": "SASSENAGE" + "codePostal": "85200", + "codeCommune": "85092", + "libelleAcheminement": "FONTENAY LE COMTE", + "nomCommune": "FONTENAY LE COMTE" }, { - "codePostal": "38260", - "codeCommune": "38479", - "libelleAcheminement": "PORTE DES BONNEVAUX", - "nomCommune": "PORTE DES BONNEVAUX" + "codePostal": "85240", + "codeCommune": "85094", + "libelleAcheminement": "FOUSSAIS PAYRE", + "nomCommune": "FOUSSAIS PAYRE" }, { - "codePostal": "38260", - "codeCommune": "38479", - "libelleAcheminement": "PORTE DES BONNEVAUX", - "nomCommune": "PORTE DES BONNEVAUX" + "codePostal": "85300", + "codeCommune": "85095", + "libelleAcheminement": "FROIDFOND", + "nomCommune": "FROIDFOND" }, { - "codePostal": "38200", - "codeCommune": "38487", - "libelleAcheminement": "SEYSSUEL", - "nomCommune": "SEYSSUEL" + "codePostal": "85710", + "codeCommune": "85096", + "libelleAcheminement": "LA GARNACHE", + "nomCommune": "LA GARNACHE" }, { - "codePostal": "38300", - "codeCommune": "38498", - "libelleAcheminement": "SUCCIEU", - "nomCommune": "SUCCIEU" + "codePostal": "85680", + "codeCommune": "85106", + "libelleAcheminement": "LA GUERINIERE", + "nomCommune": "LA GUERINIERE" }, { - "codePostal": "38230", - "codeCommune": "38507", - "libelleAcheminement": "TIGNIEU JAMEYZIEU", - "nomCommune": "TIGNIEU JAMEYZIEU" + "codePostal": "85500", + "codeCommune": "85109", + "libelleAcheminement": "LES HERBIERS", + "nomCommune": "LES HERBIERS" }, { - "codePostal": "38690", - "codeCommune": "38508", - "libelleAcheminement": "TORCHEFELON", - "nomCommune": "TORCHEFELON" + "codePostal": "85540", + "codeCommune": "85116", + "libelleAcheminement": "LA JONCHERE", + "nomCommune": "LA JONCHERE" }, { - "codePostal": "38110", - "codeCommune": "38509", - "libelleAcheminement": "LA TOUR DU PIN", - "nomCommune": "LA TOUR DU PIN" + "codePostal": "85170", + "codeCommune": "85129", + "libelleAcheminement": "LES LUCS SUR BOULOGNE", + "nomCommune": "LES LUCS SUR BOULOGNE" }, { - "codePostal": "38210", - "codeCommune": "38517", - "libelleAcheminement": "TULLINS", - "nomCommune": "TULLINS" + "codePostal": "85700", + "codeCommune": "85140", + "libelleAcheminement": "LA MEILLERAIE TILLAY", + "nomCommune": "LA MEILLERAIE TILLAY" }, { - "codePostal": "38090", - "codeCommune": "38530", - "libelleAcheminement": "VAULX MILIEU", - "nomCommune": "VAULX MILIEU" + "codePostal": "85700", + "codeCommune": "85141", + "libelleAcheminement": "MENOMBLET", + "nomCommune": "MENOMBLET" }, { - "codePostal": "38460", - "codeCommune": "38535", - "libelleAcheminement": "VERNAS", - "nomCommune": "VERNAS" + "codePostal": "85110", + "codeCommune": "85145", + "libelleAcheminement": "MONSIREIGNE", + "nomCommune": "MONSIREIGNE" }, { - "codePostal": "38290", - "codeCommune": "38537", - "libelleAcheminement": "LA VERPILLIERE", - "nomCommune": "LA VERPILLIERE" + "codePostal": "85600", + "codeCommune": "85146", + "libelleAcheminement": "MONTAIGU VENDEE", + "nomCommune": "MONTAIGU VENDEE" }, { - "codePostal": "38200", - "codeCommune": "38544", - "libelleAcheminement": "VIENNE", - "nomCommune": "VIENNE" + "codePostal": "85600", + "codeCommune": "85146", + "libelleAcheminement": "MONTAIGU VENDEE", + "nomCommune": "MONTAIGU VENDEE" }, { - "codePostal": "38450", - "codeCommune": "38545", - "libelleAcheminement": "VIF", - "nomCommune": "VIF" + "codePostal": "85700", + "codeCommune": "85147", + "libelleAcheminement": "MONTOURNAIS", + "nomCommune": "MONTOURNAIS" }, { - "codePostal": "38114", - "codeCommune": "38550", - "libelleAcheminement": "VILLARD RECULAS", - "nomCommune": "VILLARD RECULAS" + "codePostal": "85640", + "codeCommune": "85153", + "libelleAcheminement": "MOUCHAMPS", + "nomCommune": "MOUCHAMPS" }, { - "codePostal": "38090", - "codeCommune": "38553", - "libelleAcheminement": "VILLEFONTAINE", - "nomCommune": "VILLEFONTAINE" + "codePostal": "85320", + "codeCommune": "85157", + "libelleAcheminement": "MOUTIERS SUR LE LAY", + "nomCommune": "MOUTIERS SUR LE LAY" }, { - "codePostal": "38460", - "codeCommune": "38554", - "libelleAcheminement": "VILLEMOIRIEU", - "nomCommune": "VILLEMOIRIEU" + "codePostal": "85370", + "codeCommune": "85158", + "libelleAcheminement": "MOUZEUIL ST MARTIN", + "nomCommune": "MOUZEUIL ST MARTIN" }, { - "codePostal": "38150", - "codeCommune": "38556", - "libelleAcheminement": "VILLE SOUS ANJOU", - "nomCommune": "VILLE SOUS ANJOU" + "codePostal": "85310", + "codeCommune": "85160", + "libelleAcheminement": "NESMY", + "nomCommune": "NESMY" }, { - "codePostal": "38730", - "codeCommune": "38560", - "libelleAcheminement": "VAL DE VIRIEU", - "nomCommune": "VAL DE VIRIEU" + "codePostal": "85690", + "codeCommune": "85164", + "libelleAcheminement": "NOTRE DAME DE MONTS", + "nomCommune": "NOTRE DAME DE MONTS" }, { - "codePostal": "38620", - "codeCommune": "38564", - "libelleAcheminement": "VOISSANT", - "nomCommune": "VOISSANT" + "codePostal": "85200", + "codeCommune": "85167", + "libelleAcheminement": "L ORBRIE", + "nomCommune": "L ORBRIE" }, { - "codePostal": "38410", - "codeCommune": "38567", - "libelleAcheminement": "CHAMROUSSE", - "nomCommune": "CHAMROUSSE" + "codePostal": "85670", + "codeCommune": "85169", + "libelleAcheminement": "PALLUAU", + "nomCommune": "PALLUAU" }, { - "codePostal": "39270", - "codeCommune": "39007", - "libelleAcheminement": "ALIEZE", - "nomCommune": "ALIEZE" + "codePostal": "85300", + "codeCommune": "85172", + "libelleAcheminement": "LE PERRIER", + "nomCommune": "LE PERRIER" }, { - "codePostal": "39240", - "codeCommune": "39018", - "libelleAcheminement": "AROMAS", - "nomCommune": "AROMAS" + "codePostal": "85570", + "codeCommune": "85181", + "libelleAcheminement": "POUILLE", + "nomCommune": "POUILLE" }, { - "codePostal": "39600", - "codeCommune": "39019", - "libelleAcheminement": "LES ARSURES", - "nomCommune": "LES ARSURES" + "codePostal": "85700", + "codeCommune": "85182", + "libelleAcheminement": "POUZAUGES", + "nomCommune": "POUZAUGES" }, { - "codePostal": "39700", - "codeCommune": "39024", - "libelleAcheminement": "AUDELANGE", - "nomCommune": "AUDELANGE" + "codePostal": "85240", + "codeCommune": "85184", + "libelleAcheminement": "PUY DE SERRE", + "nomCommune": "PUY DE SERRE" }, { - "codePostal": "39270", - "codeCommune": "39027", - "libelleAcheminement": "AUGISEY", - "nomCommune": "AUGISEY" + "codePostal": "85270", + "codeCommune": "85189", + "libelleAcheminement": "NOTRE DAME DE RIEZ", + "nomCommune": "NOTRE DAME DE RIEZ" }, { - "codePostal": "39160", - "codeCommune": "39035", - "libelleAcheminement": "BALANOD", - "nomCommune": "BALANOD" + "codePostal": "85540", + "codeCommune": "85201", + "libelleAcheminement": "ST BENOIST SUR MER", + "nomCommune": "ST BENOIST SUR MER" }, { - "codePostal": "39380", - "codeCommune": "39037", - "libelleAcheminement": "BANS", - "nomCommune": "BANS" + "codePostal": "85670", + "codeCommune": "85204", + "libelleAcheminement": "ST CHRISTOPHE DU LIGNERON", + "nomCommune": "ST CHRISTOPHE DU LIGNERON" }, { - "codePostal": "39190", - "codeCommune": "39043", - "libelleAcheminement": "BEAUFORT ORBAGNA", - "nomCommune": "BEAUFORT ORBAGNA" + "codePostal": "85540", + "codeCommune": "85206", + "libelleAcheminement": "ST CYR EN TALMONDAIS", + "nomCommune": "ST CYR EN TALMONDAIS" }, { - "codePostal": "39270", - "codeCommune": "39045", - "libelleAcheminement": "BEFFIA", - "nomCommune": "BEFFIA" + "codePostal": "85170", + "codeCommune": "85208", + "libelleAcheminement": "ST DENIS LA CHEVASSE", + "nomCommune": "ST DENIS LA CHEVASSE" }, { - "codePostal": "39400", - "codeCommune": "39047", - "libelleAcheminement": "BELLEFONTAINE", - "nomCommune": "BELLEFONTAINE" + "codePostal": "85150", + "codeCommune": "85211", + "libelleAcheminement": "STE FLAIVE DES LOUPS", + "nomCommune": "STE FLAIVE DES LOUPS" }, { - "codePostal": "39800", - "codeCommune": "39050", - "libelleAcheminement": "BESAIN", - "nomCommune": "BESAIN" + "codePostal": "85310", + "codeCommune": "85213", + "libelleAcheminement": "RIVES DE L YON", + "nomCommune": "RIVES DE L YON" }, { - "codePostal": "39800", - "codeCommune": "39054", - "libelleAcheminement": "BIEFMORIN", - "nomCommune": "BIEFMORIN" + "codePostal": "85230", + "codeCommune": "85221", + "libelleAcheminement": "ST GERVAIS", + "nomCommune": "ST GERVAIS" }, { - "codePostal": "39130", - "codeCommune": "39058", - "libelleAcheminement": "BLYE", - "nomCommune": "BLYE" + "codePostal": "85800", + "codeCommune": "85222", + "libelleAcheminement": "ST GILLES CROIX DE VIE", + "nomCommune": "ST GILLES CROIX DE VIE" }, { - "codePostal": "39570", - "codeCommune": "39066", - "libelleAcheminement": "BORNAY", - "nomCommune": "BORNAY" + "codePostal": "85290", + "codeCommune": "85238", + "libelleAcheminement": "ST LAURENT SUR SEVRE", + "nomCommune": "ST LAURENT SUR SEVRE" }, { - "codePostal": "39800", - "codeCommune": "39073", - "libelleAcheminement": "BRAINANS", - "nomCommune": "BRAINANS" + "codePostal": "85110", + "codeCommune": "85266", + "libelleAcheminement": "ST PROUANT", + "nomCommune": "ST PROUANT" }, { - "codePostal": "39120", - "codeCommune": "39090", - "libelleAcheminement": "CHAINEE DES COUPIS", - "nomCommune": "CHAINEE DES COUPIS" + "codePostal": "85110", + "codeCommune": "85276", + "libelleAcheminement": "ST VINCENT STERLANGES", + "nomCommune": "ST VINCENT STERLANGES" }, { - "codePostal": "39270", - "codeCommune": "39092", - "libelleAcheminement": "CHAMBERIA", - "nomCommune": "CHAMBERIA" + "codePostal": "85300", + "codeCommune": "85284", + "libelleAcheminement": "SOULLANS", + "nomCommune": "SOULLANS" }, { - "codePostal": "39250", - "codeCommune": "39108", - "libelleAcheminement": "CHARENCY", - "nomCommune": "CHARENCY" + "codePostal": "85310", + "codeCommune": "85285", + "libelleAcheminement": "LE TABLIER", + "nomCommune": "LE TABLIER" }, { - "codePostal": "39230", - "codeCommune": "39110", - "libelleAcheminement": "LA CHARME", - "nomCommune": "LA CHARME" + "codePostal": "85130", + "codeCommune": "85293", + "libelleAcheminement": "TIFFAUGES", + "nomCommune": "TIFFAUGES" }, { - "codePostal": "39600", - "codeCommune": "39116", - "libelleAcheminement": "LA CHATELAINE", - "nomCommune": "LA CHATELAINE" + "codePostal": "85150", + "codeCommune": "85298", + "libelleAcheminement": "VAIRE", + "nomCommune": "VAIRE" }, { - "codePostal": "39380", - "codeCommune": "39117", - "libelleAcheminement": "CHATELAY", - "nomCommune": "CHATELAY" + "codePostal": "86260", + "codeCommune": "86004", + "libelleAcheminement": "ANGLES SUR L ANGLIN", + "nomCommune": "ANGLES SUR L ANGLIN" }, { - "codePostal": "39300", - "codeCommune": "39120", - "libelleAcheminement": "CHATELNEUF", - "nomCommune": "CHATELNEUF" + "codePostal": "86340", + "codeCommune": "86010", + "libelleAcheminement": "ASLONNES", + "nomCommune": "ASLONNES" }, { - "codePostal": "39700", - "codeCommune": "39121", - "libelleAcheminement": "CHATENOIS", - "nomCommune": "CHATENOIS" + "codePostal": "86430", + "codeCommune": "86011", + "libelleAcheminement": "ASNIERES SUR BLOUR", + "nomCommune": "ASNIERES SUR BLOUR" }, { - "codePostal": "39230", - "codeCommune": "39124", - "libelleAcheminement": "CHAUMERGY", - "nomCommune": "CHAUMERGY" + "codePostal": "86580", + "codeCommune": "86027", + "libelleAcheminement": "BIARD", + "nomCommune": "BIARD" }, { - "codePostal": "39150", - "codeCommune": "39126", - "libelleAcheminement": "LA CHAUMUSSE", - "nomCommune": "LA CHAUMUSSE" + "codePostal": "86190", + "codeCommune": "86050", + "libelleAcheminement": "CHALANDRAY", + "nomCommune": "CHALANDRAY" }, { - "codePostal": "39800", - "codeCommune": "39127", - "libelleAcheminement": "CHAUSSENANS", - "nomCommune": "CHAUSSENANS" + "codePostal": "86300", + "codeCommune": "86059", + "libelleAcheminement": "CHAPELLE VIVIERS", + "nomCommune": "CHAPELLE VIVIERS" }, { - "codePostal": "39230", - "codeCommune": "39132", - "libelleAcheminement": "LA CHAUX EN BRESSE", - "nomCommune": "LA CHAUX EN BRESSE" + "codePostal": "86250", + "codeCommune": "86061", + "libelleAcheminement": "CHARROUX", + "nomCommune": "CHARROUX" }, { - "codePostal": "39270", - "codeCommune": "39134", - "libelleAcheminement": "CHAVERIA", - "nomCommune": "CHAVERIA" + "codePostal": "86100", + "codeCommune": "86066", + "libelleAcheminement": "CHATELLERAULT", + "nomCommune": "CHATELLERAULT" }, { - "codePostal": "39230", - "codeCommune": "39136", - "libelleAcheminement": "CHEMENOT", - "nomCommune": "CHEMENOT" + "codePostal": "86510", + "codeCommune": "86068", + "libelleAcheminement": "CHAUNAY", + "nomCommune": "CHAUNAY" }, { - "codePostal": "39240", - "codeCommune": "39137", - "libelleAcheminement": "ST HYMETIERE SUR VALOUSE", - "nomCommune": "ST HYMETIERE SUR VALOUSE" + "codePostal": "86330", + "codeCommune": "86069", + "libelleAcheminement": "LA CHAUSSEE", + "nomCommune": "LA CHAUSSEE" }, { - "codePostal": "39230", - "codeCommune": "39140", - "libelleAcheminement": "CHENE SEC", - "nomCommune": "CHENE SEC" + "codePostal": "86190", + "codeCommune": "86074", + "libelleAcheminement": "CHIRE EN MONTREUIL", + "nomCommune": "CHIRE EN MONTREUIL" }, { - "codePostal": "39300", - "codeCommune": "39153", - "libelleAcheminement": "CIZE", - "nomCommune": "CIZE" + "codePostal": "86200", + "codeCommune": "86079", + "libelleAcheminement": "LA ROCHE RIGAULT", + "nomCommune": "LA ROCHE RIGAULT" }, { - "codePostal": "39130", - "codeCommune": "39154", - "libelleAcheminement": "CLAIRVAUX LES LACS", - "nomCommune": "CLAIRVAUX LES LACS" + "codePostal": "86490", + "codeCommune": "86081", + "libelleAcheminement": "COLOMBIERS", + "nomCommune": "COLOMBIERS" }, { - "codePostal": "39110", - "codeCommune": "39155", - "libelleAcheminement": "CLUCY", - "nomCommune": "CLUCY" + "codePostal": "86290", + "codeCommune": "86084", + "libelleAcheminement": "COULONGES", + "nomCommune": "COULONGES" }, { - "codePostal": "39130", - "codeCommune": "39156", - "libelleAcheminement": "COGNA", - "nomCommune": "COGNA" + "codePostal": "86220", + "codeCommune": "86092", + "libelleAcheminement": "DANGE ST ROMAIN", + "nomCommune": "DANGE ST ROMAIN" }, { - "codePostal": "39200", - "codeCommune": "39157", - "libelleAcheminement": "COISERETTE", - "nomCommune": "COISERETTE" + "codePostal": "86160", + "codeCommune": "86097", + "libelleAcheminement": "LA FERRIERE AIROUX", + "nomCommune": "LA FERRIERE AIROUX" }, { - "codePostal": "39240", - "codeCommune": "39163", - "libelleAcheminement": "CONDES", - "nomCommune": "CONDES" + "codePostal": "86240", + "codeCommune": "86100", + "libelleAcheminement": "FONTAINE LE COMTE", + "nomCommune": "FONTAINE LE COMTE" }, { - "codePostal": "39570", - "codeCommune": "39171", - "libelleAcheminement": "COURLAOUX", - "nomCommune": "COURLAOUX" + "codePostal": "86190", + "codeCommune": "86102", + "libelleAcheminement": "FROZES", + "nomCommune": "FROZES" }, { - "codePostal": "39190", - "codeCommune": "39173", - "libelleAcheminement": "COUSANCE", - "nomCommune": "COUSANCE" + "codePostal": "86250", + "codeCommune": "86104", + "libelleAcheminement": "GENOUILLE", + "nomCommune": "GENOUILLE" }, { - "codePostal": "39200", - "codeCommune": "39174", - "libelleAcheminement": "COYRIERE", - "nomCommune": "COYRIERE" + "codePostal": "86320", + "codeCommune": "86107", + "libelleAcheminement": "GOUEX", + "nomCommune": "GOUEX" }, { - "codePostal": "39570", - "codeCommune": "39177", - "libelleAcheminement": "HAUTEROCHE", - "nomCommune": "HAUTEROCHE" + "codePostal": "86310", + "codeCommune": "86110", + "libelleAcheminement": "HAIMS", + "nomCommune": "HAIMS" }, { - "codePostal": "39250", - "codeCommune": "39187", - "libelleAcheminement": "CUVIER", - "nomCommune": "CUVIER" + "codePostal": "86290", + "codeCommune": "86118", + "libelleAcheminement": "JOURNET", + "nomCommune": "JOURNET" }, { - "codePostal": "39130", - "codeCommune": "39192", - "libelleAcheminement": "DENEZIERES", - "nomCommune": "DENEZIERES" + "codePostal": "86390", + "codeCommune": "86120", + "libelleAcheminement": "LATHUS ST REMY", + "nomCommune": "LATHUS ST REMY" }, { - "codePostal": "39140", - "codeCommune": "39194", - "libelleAcheminement": "DESNES", - "nomCommune": "DESNES" + "codePostal": "86450", + "codeCommune": "86125", + "libelleAcheminement": "LEIGNE LES BOIS", + "nomCommune": "LEIGNE LES BOIS" }, { - "codePostal": "39230", - "codeCommune": "39196", - "libelleAcheminement": "LES DEUX FAYS", - "nomCommune": "LES DEUX FAYS" + "codePostal": "86230", + "codeCommune": "86127", + "libelleAcheminement": "LEIGNE SUR USSEAU", + "nomCommune": "LEIGNE SUR USSEAU" }, { - "codePostal": "39100", - "codeCommune": "39198", - "libelleAcheminement": "DOLE", - "nomCommune": "DOLE" + "codePostal": "86140", + "codeCommune": "86128", + "libelleAcheminement": "LENCLOITRE", + "nomCommune": "LENCLOITRE" }, { - "codePostal": "39100", - "codeCommune": "39198", - "libelleAcheminement": "DOLE", - "nomCommune": "DOLE" + "codePostal": "86400", + "codeCommune": "86134", + "libelleAcheminement": "LINAZAY", + "nomCommune": "LINAZAY" }, { - "codePostal": "39250", - "codeCommune": "39203", - "libelleAcheminement": "DOYE", - "nomCommune": "DOYE" + "codePostal": "86200", + "codeCommune": "86137", + "libelleAcheminement": "LOUDUN", + "nomCommune": "LOUDUN" }, { - "codePostal": "39320", - "codeCommune": "39209", - "libelleAcheminement": "VAL D EPY", - "nomCommune": "VAL D EPY" + "codePostal": "86430", + "codeCommune": "86138", + "libelleAcheminement": "LUCHAPT", + "nomCommune": "LUCHAPT" }, { - "codePostal": "39130", - "codeCommune": "39216", - "libelleAcheminement": "ETIVAL", - "nomCommune": "ETIVAL" + "codePostal": "86330", + "codeCommune": "86149", + "libelleAcheminement": "MARTAIZE", + "nomCommune": "MARTAIZE" }, { - "codePostal": "39600", - "codeCommune": "39223", - "libelleAcheminement": "LA FERTE", - "nomCommune": "LA FERTE" + "codePostal": "86170", + "codeCommune": "86150", + "libelleAcheminement": "MASSOGNES", + "nomCommune": "MASSOGNES" }, { - "codePostal": "39130", - "codeCommune": "39239", - "libelleAcheminement": "LA FRASNEE", - "nomCommune": "LA FRASNEE" + "codePostal": "86200", + "codeCommune": "86156", + "libelleAcheminement": "MESSEME", + "nomCommune": "MESSEME" }, { - "codePostal": "39110", - "codeCommune": "39248", - "libelleAcheminement": "GERAISE", - "nomCommune": "GERAISE" + "codePostal": "86150", + "codeCommune": "86159", + "libelleAcheminement": "MILLAC", + "nomCommune": "MILLAC" }, { - "codePostal": "39570", - "codeCommune": "39251", - "libelleAcheminement": "GEVINGEY", - "nomCommune": "GEVINGEY" + "codePostal": "86330", + "codeCommune": "86161", + "libelleAcheminement": "MONCONTOUR", + "nomCommune": "MONCONTOUR" }, { - "codePostal": "39150", - "codeCommune": "39258", - "libelleAcheminement": "GRANDE RIVIERE CHATEAU", - "nomCommune": "GRANDE RIVIERE CHATEAU" + "codePostal": "86120", + "codeCommune": "86169", + "libelleAcheminement": "MORTON", + "nomCommune": "MORTON" }, { - "codePostal": "39150", - "codeCommune": "39258", - "libelleAcheminement": "GRANDE RIVIERE CHATEAU", - "nomCommune": "GRANDE RIVIERE CHATEAU" + "codePostal": "86150", + "codeCommune": "86171", + "libelleAcheminement": "MOUSSAC", + "nomCommune": "MOUSSAC" }, { - "codePostal": "39120", - "codeCommune": "39266", - "libelleAcheminement": "LES HAYS", - "nomCommune": "LES HAYS" + "codePostal": "86150", + "codeCommune": "86176", + "libelleAcheminement": "NERIGNAC", + "nomCommune": "NERIGNAC" }, { - "codePostal": "39110", - "codeCommune": "39267", - "libelleAcheminement": "IVORY", - "nomCommune": "IVORY" + "codePostal": "86220", + "codeCommune": "86183", + "libelleAcheminement": "LES ORMES", + "nomCommune": "LES ORMES" }, { - "codePostal": "39150", - "codeCommune": "39271", - "libelleAcheminement": "LAC DES ROUGES TRUITES", - "nomCommune": "LAC DES ROUGES TRUITES" + "codePostal": "86500", + "codeCommune": "86191", + "libelleAcheminement": "PINDRAY", + "nomCommune": "PINDRAY" }, { - "codePostal": "39210", - "codeCommune": "39272", - "libelleAcheminement": "LADOYE SUR SEILLE", - "nomCommune": "LADOYE SUR SEILLE" + "codePostal": "86500", + "codeCommune": "86192", + "libelleAcheminement": "PLAISANCE", + "nomCommune": "PLAISANCE" }, { - "codePostal": "01590", - "codeCommune": "39283", - "libelleAcheminement": "LAVANCIA EPERCY", - "nomCommune": "LAVANCIA EPERCY" + "codePostal": "86410", + "codeCommune": "86228", + "libelleAcheminement": "ST LAURENT DE JOURDES", + "nomCommune": "ST LAURENT DE JOURDES" }, { - "codePostal": "39700", - "codeCommune": "39285", - "libelleAcheminement": "LAVANS LES DOLE", - "nomCommune": "LAVANS LES DOLE" + "codePostal": "86400", + "codeCommune": "86231", + "libelleAcheminement": "ST MACOUX", + "nomCommune": "ST MACOUX" }, { - "codePostal": "39170", - "codeCommune": "39286", - "libelleAcheminement": "LAVANS LES ST CLAUDE", - "nomCommune": "LAVANS LES ST CLAUDE" + "codePostal": "86300", + "codeCommune": "86233", + "libelleAcheminement": "VALDIVIENNE", + "nomCommune": "VALDIVIENNE" }, { - "codePostal": "39260", - "codeCommune": "39289", - "libelleAcheminement": "LECT", - "nomCommune": "LECT" + "codePostal": "86350", + "codeCommune": "86234", + "libelleAcheminement": "ST MARTIN L ARS", + "nomCommune": "ST MARTIN L ARS" }, { - "codePostal": "39240", - "codeCommune": "39290", - "libelleAcheminement": "VALZIN EN PETITE MONTAGNE", - "nomCommune": "VALZIN EN PETITE MONTAGNE" + "codePostal": "86220", + "codeCommune": "86241", + "libelleAcheminement": "ST REMY SUR CREUSE", + "nomCommune": "ST REMY SUR CREUSE" }, { - "codePostal": "39110", - "codeCommune": "39291", - "libelleAcheminement": "LEMUY", - "nomCommune": "LEMUY" + "codePostal": "86100", + "codeCommune": "86245", + "libelleAcheminement": "SENILLE ST SAUVEUR", + "nomCommune": "SENILLE ST SAUVEUR" }, { - "codePostal": "39320", - "codeCommune": "39295", - "libelleAcheminement": "LOISIA", - "nomCommune": "LOISIA" + "codePostal": "86200", + "codeCommune": "86252", + "libelleAcheminement": "SAMMARCOLLES", + "nomCommune": "SAMMARCOLLES" }, { - "codePostal": "39250", - "codeCommune": "39298", - "libelleAcheminement": "LONGCOCHON", - "nomCommune": "LONGCOCHON" + "codePostal": "86140", + "codeCommune": "86257", + "libelleAcheminement": "SAVIGNY SOUS FAYE", + "nomCommune": "SAVIGNY SOUS FAYE" }, { - "codePostal": "39000", - "codeCommune": "39300", - "libelleAcheminement": "LONS LE SAUNIER", - "nomCommune": "LONS LE SAUNIER" + "codePostal": "86230", + "codeCommune": "86260", + "libelleAcheminement": "SERIGNY", + "nomCommune": "SERIGNY" }, { - "codePostal": "39300", - "codeCommune": "39301", - "libelleAcheminement": "LOULLE", - "nomCommune": "LOULLE" + "codePostal": "86240", + "codeCommune": "86263", + "libelleAcheminement": "SMARVES", + "nomCommune": "SMARVES" }, { - "codePostal": "39700", - "codeCommune": "39308", - "libelleAcheminement": "MALANGE", - "nomCommune": "MALANGE" + "codePostal": "86800", + "codeCommune": "86268", + "libelleAcheminement": "TERCE", + "nomCommune": "TERCE" }, { - "codePostal": "39190", - "codeCommune": "39320", - "libelleAcheminement": "MAYNAL", - "nomCommune": "MAYNAL" + "codePostal": "86290", + "codeCommune": "86270", + "libelleAcheminement": "THOLLET", + "nomCommune": "THOLLET" }, { - "codePostal": "39290", - "codeCommune": "39323", - "libelleAcheminement": "MENOTEY", - "nomCommune": "MENOTEY" + "codePostal": "86110", + "codeCommune": "86281", + "libelleAcheminement": "ST MARTIN LA PALLU", + "nomCommune": "ST MARTIN LA PALLU" }, { - "codePostal": "39600", - "codeCommune": "39325", - "libelleAcheminement": "MESNAY", - "nomCommune": "MESNAY" + "codePostal": "86170", + "codeCommune": "86281", + "libelleAcheminement": "ST MARTIN LA PALLU", + "nomCommune": "ST MARTIN LA PALLU" }, { - "codePostal": "39570", - "codeCommune": "39327", - "libelleAcheminement": "MESSIA SUR SORNE", - "nomCommune": "MESSIA SUR SORNE" + "codePostal": "86120", + "codeCommune": "86287", + "libelleAcheminement": "VEZIERES", + "nomCommune": "VEZIERES" }, { - "codePostal": "39260", - "codeCommune": "39328", - "libelleAcheminement": "MEUSSIA", - "nomCommune": "MEUSSIA" + "codePostal": "86150", + "codeCommune": "86289", + "libelleAcheminement": "LE VIGEANT", + "nomCommune": "LE VIGEANT" }, { - "codePostal": "39800", - "codeCommune": "39330", - "libelleAcheminement": "MIERY", - "nomCommune": "MIERY" + "codePostal": "86190", + "codeCommune": "86292", + "libelleAcheminement": "VILLIERS", + "nomCommune": "VILLIERS" }, { - "codePostal": "39250", - "codeCommune": "39331", - "libelleAcheminement": "MIGNOVILLARD", - "nomCommune": "MIGNOVILLARD" + "codePostal": "86210", + "codeCommune": "86298", + "libelleAcheminement": "VOUNEUIL SUR VIENNE", + "nomCommune": "VOUNEUIL SUR VIENNE" }, { - "codePostal": "39570", - "codeCommune": "39334", - "libelleAcheminement": "MOIRON", - "nomCommune": "MOIRON" + "codePostal": "87300", + "codeCommune": "87011", + "libelleAcheminement": "BELLAC", + "nomCommune": "BELLAC" }, { - "codePostal": "39360", - "codeCommune": "39339", - "libelleAcheminement": "CHASSAL MOLINGES", - "nomCommune": "CHASSAL MOLINGES" + "codePostal": "87300", + "codeCommune": "87012", + "libelleAcheminement": "BERNEUIL", + "nomCommune": "BERNEUIL" }, { - "codePostal": "39110", - "codeCommune": "39359", - "libelleAcheminement": "MONTMARLON", - "nomCommune": "MONTMARLON" + "codePostal": "87250", + "codeCommune": "87014", + "libelleAcheminement": "BESSINES SUR GARTEMPE", + "nomCommune": "BESSINES SUR GARTEMPE" }, { - "codePostal": "39290", - "codeCommune": "39361", - "libelleAcheminement": "MONTMIREY LE CHATEAU", - "nomCommune": "MONTMIREY LE CHATEAU" + "codePostal": "87700", + "codeCommune": "87015", + "libelleAcheminement": "BEYNAC", + "nomCommune": "BEYNAC" }, { - "codePostal": "39570", - "codeCommune": "39362", - "libelleAcheminement": "MONTMOROT", - "nomCommune": "MONTMOROT" + "codePostal": "87300", + "codeCommune": "87017", + "libelleAcheminement": "BLANZAC", + "nomCommune": "BLANZAC" }, { - "codePostal": "39400", - "codeCommune": "39368", - "libelleAcheminement": "HAUTS DE BIENNE", - "nomCommune": "HAUTS DE BIENNE" + "codePostal": "87300", + "codeCommune": "87018", + "libelleAcheminement": "BLOND", + "nomCommune": "BLOND" }, { - "codePostal": "39300", - "codeCommune": "39376", - "libelleAcheminement": "MOUTOUX", - "nomCommune": "MOUTOUX" + "codePostal": "87230", + "codeCommune": "87029", + "libelleAcheminement": "LES CARS", + "nomCommune": "LES CARS" }, { - "codePostal": "39160", - "codeCommune": "39378", - "libelleAcheminement": "LES TROIS CHATEAUX", - "nomCommune": "LES TROIS CHATEAUX" + "codePostal": "87200", + "codeCommune": "87030", + "libelleAcheminement": "CHAILLAC SUR VIENNE", + "nomCommune": "CHAILLAC SUR VIENNE" }, { - "codePostal": "39380", - "codeCommune": "39399", - "libelleAcheminement": "OUNANS", - "nomCommune": "OUNANS" + "codePostal": "87230", + "codeCommune": "87032", + "libelleAcheminement": "CHALUS", + "nomCommune": "CHALUS" }, { - "codePostal": "39300", - "codeCommune": "39406", - "libelleAcheminement": "LE PASQUIER", - "nomCommune": "LE PASQUIER" + "codePostal": "87400", + "codeCommune": "87035", + "libelleAcheminement": "CHAMPNETERY", + "nomCommune": "CHAMPNETERY" }, { - "codePostal": "39800", - "codeCommune": "39418", - "libelleAcheminement": "PICARREAU", - "nomCommune": "PICARREAU" + "codePostal": "87270", + "codeCommune": "87038", + "libelleAcheminement": "CHAPTELAT", + "nomCommune": "CHAPTELAT" }, { - "codePostal": "39110", - "codeCommune": "39436", - "libelleAcheminement": "PONT D HERY", - "nomCommune": "PONT D HERY" + "codePostal": "87600", + "codeCommune": "87044", + "libelleAcheminement": "CHERONNAC", + "nomCommune": "CHERONNAC" }, { - "codePostal": "39330", - "codeCommune": "39439", - "libelleAcheminement": "PORT LESNEY", - "nomCommune": "PORT LESNEY" + "codePostal": "87270", + "codeCommune": "87050", + "libelleAcheminement": "COUZEIX", + "nomCommune": "COUZEIX" }, { - "codePostal": "39220", - "codeCommune": "39441", - "libelleAcheminement": "PREMANON", - "nomCommune": "PREMANON" + "codePostal": "87130", + "codeCommune": "87051", + "libelleAcheminement": "LA CROISILLE SUR BRIANCE", + "nomCommune": "LA CROISILLE SUR BRIANCE" }, { - "codePostal": "39110", - "codeCommune": "39444", - "libelleAcheminement": "PRETIN", - "nomCommune": "PRETIN" + "codePostal": "87230", + "codeCommune": "87066", + "libelleAcheminement": "FLAVIGNAC", + "nomCommune": "FLAVIGNAC" }, { - "codePostal": "39120", - "codeCommune": "39448", - "libelleAcheminement": "RAHON", - "nomCommune": "RAHON" + "codePostal": "87250", + "codeCommune": "87068", + "libelleAcheminement": "FROMENTAL", + "nomCommune": "FROMENTAL" }, { - "codePostal": "39140", - "codeCommune": "39457", - "libelleAcheminement": "LES REPOTS", - "nomCommune": "LES REPOTS" + "codePostal": "87330", + "codeCommune": "87069", + "libelleAcheminement": "GAJOUBERT", + "nomCommune": "GAJOUBERT" }, { - "codePostal": "39400", - "codeCommune": "39470", - "libelleAcheminement": "LES ROUSSES", - "nomCommune": "LES ROUSSES" + "codePostal": "87380", + "codeCommune": "87072", + "libelleAcheminement": "GLANGES", + "nomCommune": "GLANGES" }, { - "codePostal": "39200", - "codeCommune": "39478", - "libelleAcheminement": "ST CLAUDE", - "nomCommune": "ST CLAUDE" + "codePostal": "87310", + "codeCommune": "87073", + "libelleAcheminement": "GORRE", + "nomCommune": "GORRE" }, { - "codePostal": "39600", - "codeCommune": "39479", - "libelleAcheminement": "ST CYR MONTMALIN", - "nomCommune": "ST CYR MONTMALIN" + "codePostal": "87890", + "codeCommune": "87080", + "libelleAcheminement": "JOUAC", + "nomCommune": "JOUAC" }, { - "codePostal": "39320", - "codeCommune": "39485", - "libelleAcheminement": "VAL SURAN", - "nomCommune": "VAL SURAN" + "codePostal": "87800", + "codeCommune": "87081", + "libelleAcheminement": "JOURGNAC", + "nomCommune": "JOURGNAC" }, { - "codePostal": "39120", - "codeCommune": "39490", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "87130", + "codeCommune": "87086", + "libelleAcheminement": "LINARDS", + "nomCommune": "LINARDS" }, { - "codePostal": "39130", - "codeCommune": "39493", - "libelleAcheminement": "ST MAURICE CRILLAT", - "nomCommune": "ST MAURICE CRILLAT" + "codePostal": "87440", + "codeCommune": "87092", + "libelleAcheminement": "MARVAL", + "nomCommune": "MARVAL" }, { - "codePostal": "39130", - "codeCommune": "39493", - "libelleAcheminement": "ST MAURICE CRILLAT", - "nomCommune": "ST MAURICE CRILLAT" + "codePostal": "87130", + "codeCommune": "87093", + "libelleAcheminement": "MASLEON", + "nomCommune": "MASLEON" }, { - "codePostal": "39110", - "codeCommune": "39495", - "libelleAcheminement": "ST THIEBAUD", - "nomCommune": "ST THIEBAUD" + "codePostal": "87330", + "codeCommune": "87101", + "libelleAcheminement": "MORTEMART", + "nomCommune": "MORTEMART" }, { - "codePostal": "39380", - "codeCommune": "39502", - "libelleAcheminement": "SANTANS", - "nomCommune": "SANTANS" + "codePostal": "87120", + "codeCommune": "87104", + "libelleAcheminement": "NEDDE", + "nomCommune": "NEDDE" }, { - "codePostal": "39300", - "codeCommune": "39523", - "libelleAcheminement": "SYAM", - "nomCommune": "SYAM" + "codePostal": "87510", + "codeCommune": "87107", + "libelleAcheminement": "NIEUL", + "nomCommune": "NIEUL" }, { - "codePostal": "39120", - "codeCommune": "39525", - "libelleAcheminement": "TASSENIERES", - "nomCommune": "TASSENIERES" + "codePostal": "87330", + "codeCommune": "87108", + "libelleAcheminement": "NOUIC", + "nomCommune": "NOUIC" }, { - "codePostal": "39500", - "codeCommune": "39526", - "libelleAcheminement": "TAVAUX", - "nomCommune": "TAVAUX" + "codePostal": "87300", + "codeCommune": "87116", + "libelleAcheminement": "PEYRAT DE BELLAC", + "nomCommune": "PEYRAT DE BELLAC" }, { - "codePostal": "39290", - "codeCommune": "39528", - "libelleAcheminement": "THERVAY", - "nomCommune": "THERVAY" + "codePostal": "87290", + "codeCommune": "87121", + "libelleAcheminement": "RANCON", + "nomCommune": "RANCON" }, { - "codePostal": "39240", - "codeCommune": "39530", - "libelleAcheminement": "THOIRETTE COISIA", - "nomCommune": "THOIRETTE COISIA" + "codePostal": "87800", + "codeCommune": "87124", + "libelleAcheminement": "RILHAC LASTOURS", + "nomCommune": "RILHAC LASTOURS" }, { - "codePostal": "39130", - "codeCommune": "39531", - "libelleAcheminement": "THOIRIA", - "nomCommune": "THOIRIA" + "codePostal": "87140", + "codeCommune": "87128", + "libelleAcheminement": "ST PARDOUX LE LAC", + "nomCommune": "ST PARDOUX LE LAC" }, { - "codePostal": "39300", - "codeCommune": "39543", - "libelleAcheminement": "VANNOZ", - "nomCommune": "VANNOZ" + "codePostal": "87720", + "codeCommune": "87131", + "libelleAcheminement": "SAILLAT SUR VIENNE", + "nomCommune": "SAILLAT SUR VIENNE" }, { - "codePostal": "39800", - "codeCommune": "39548", - "libelleAcheminement": "VAUX SUR POLIGNY", - "nomCommune": "VAUX SUR POLIGNY" + "codePostal": "87120", + "codeCommune": "87134", + "libelleAcheminement": "STE ANNE ST PRIEST", + "nomCommune": "STE ANNE ST PRIEST" }, { - "codePostal": "39570", - "codeCommune": "39550", - "libelleAcheminement": "VERGES", - "nomCommune": "VERGES" + "codePostal": "87260", + "codeCommune": "87138", + "libelleAcheminement": "ST BONNET BRIANCE", + "nomCommune": "ST BONNET BRIANCE" }, { - "codePostal": "39240", - "codeCommune": "39557", - "libelleAcheminement": "VESCLES", - "nomCommune": "VESCLES" + "codePostal": "87310", + "codeCommune": "87141", + "libelleAcheminement": "ST CYR", + "nomCommune": "ST CYR" }, { - "codePostal": "39570", - "codeCommune": "39567", - "libelleAcheminement": "VILLENEUVE SOUS PYMONT", - "nomCommune": "VILLENEUVE SOUS PYMONT" + "codePostal": "87260", + "codeCommune": "87144", + "libelleAcheminement": "ST GENEST SUR ROSELLE", + "nomCommune": "ST GENEST SUR ROSELLE" }, { - "codePostal": "39600", - "codeCommune": "39572", - "libelleAcheminement": "VILLETTE LES ARBOIS", - "nomCommune": "VILLETTE LES ARBOIS" + "codePostal": "87160", + "codeCommune": "87145", + "libelleAcheminement": "ST GEORGES LES LANDES", + "nomCommune": "ST GEORGES LES LANDES" }, { - "codePostal": "39190", - "codeCommune": "39576", - "libelleAcheminement": "VAL SONNETTE", - "nomCommune": "VAL SONNETTE" + "codePostal": "87190", + "codeCommune": "87149", + "libelleAcheminement": "ST HILAIRE LA TREILLE", + "nomCommune": "ST HILAIRE LA TREILLE" }, { - "codePostal": "39700", - "codeCommune": "39584", - "libelleAcheminement": "VRIANGE", - "nomCommune": "VRIANGE" + "codePostal": "87200", + "codeCommune": "87154", + "libelleAcheminement": "ST JUNIEN", + "nomCommune": "ST JUNIEN" }, { - "codePostal": "40330", - "codeCommune": "40002", - "libelleAcheminement": "AMOU", - "nomCommune": "AMOU" + "codePostal": "87310", + "codeCommune": "87158", + "libelleAcheminement": "ST LAURENT SUR GORRE", + "nomCommune": "ST LAURENT SUR GORRE" }, { - "codePostal": "40500", - "codeCommune": "40017", - "libelleAcheminement": "AUDIGNON", - "nomCommune": "AUDIGNON" + "codePostal": "87200", + "codeCommune": "87164", + "libelleAcheminement": "ST MARTIN DE JUSSAC", + "nomCommune": "ST MARTIN DE JUSSAC" }, { - "codePostal": "40380", - "codeCommune": "40023", - "libelleAcheminement": "BAIGTS", - "nomCommune": "BAIGTS" + "codePostal": "87700", + "codeCommune": "87166", + "libelleAcheminement": "ST MARTIN LE VIEUX", + "nomCommune": "ST MARTIN LE VIEUX" }, { - "codePostal": "40500", - "codeCommune": "40026", - "libelleAcheminement": "BAS MAUCO", - "nomCommune": "BAS MAUCO" + "codePostal": "87800", + "codeCommune": "87169", + "libelleAcheminement": "ST MAURICE LES BROUSSES", + "nomCommune": "ST MAURICE LES BROUSSES" }, { - "codePostal": "40700", - "codeCommune": "40027", - "libelleAcheminement": "BASSERCLES", - "nomCommune": "BASSERCLES" + "codePostal": "87130", + "codeCommune": "87170", + "libelleAcheminement": "ST MEARD", + "nomCommune": "ST MEARD" }, { - "codePostal": "40320", - "codeCommune": "40029", - "libelleAcheminement": "BATS", - "nomCommune": "BATS" + "codePostal": "87210", + "codeCommune": "87179", + "libelleAcheminement": "ST SORNIN LA MARCHE", + "nomCommune": "ST SORNIN LA MARCHE" }, { - "codePostal": "40280", - "codeCommune": "40037", - "libelleAcheminement": "BENQUET", - "nomCommune": "BENQUET" + "codePostal": "87160", + "codeCommune": "87182", + "libelleAcheminement": "ST SULPICE LES FEUILLES", + "nomCommune": "ST SULPICE LES FEUILLES" }, { - "codePostal": "40370", - "codeCommune": "40040", - "libelleAcheminement": "BEYLONGUE", - "nomCommune": "BEYLONGUE" + "codePostal": "87240", + "codeCommune": "87183", + "libelleAcheminement": "ST SYLVESTRE", + "nomCommune": "ST SYLVESTRE" }, { - "codePostal": "40600", - "codeCommune": "40046", - "libelleAcheminement": "BISCARROSSE", - "nomCommune": "BISCARROSSE" + "codePostal": "87380", + "codeCommune": "87186", + "libelleAcheminement": "ST VITTE SUR BRIANCE", + "nomCommune": "ST VITTE SUR BRIANCE" }, { - "codePostal": "40330", - "codeCommune": "40047", - "libelleAcheminement": "BONNEGARDE", - "nomCommune": "BONNEGARDE" + "codePostal": "87700", + "codeCommune": "87188", + "libelleAcheminement": "ST YRIEIX SOUS AIXE", + "nomCommune": "ST YRIEIX SOUS AIXE" }, { - "codePostal": "40120", - "codeCommune": "40053", - "libelleAcheminement": "BOURRIOT BERGONCE", - "nomCommune": "BOURRIOT BERGONCE" + "codePostal": "87400", + "codeCommune": "87190", + "libelleAcheminement": "SAUVIAT SUR VIGE", + "nomCommune": "SAUVIAT SUR VIGE" }, { - "codePostal": "40280", - "codeCommune": "40055", - "libelleAcheminement": "BRETAGNE DE MARSAN", - "nomCommune": "BRETAGNE DE MARSAN" + "codePostal": "87130", + "codeCommune": "87193", + "libelleAcheminement": "SURDOUX", + "nomCommune": "SURDOUX" }, { - "codePostal": "40090", - "codeCommune": "40061", - "libelleAcheminement": "CAMPAGNE", - "nomCommune": "CAMPAGNE" + "codePostal": "87140", + "codeCommune": "87198", + "libelleAcheminement": "VAULRY", + "nomCommune": "VAULRY" }, { - "codePostal": "40700", - "codeCommune": "40069", - "libelleAcheminement": "CASTAIGNOS SOUSLENS", - "nomCommune": "CASTAIGNOS SOUSLENS" + "codePostal": "87360", + "codeCommune": "87200", + "libelleAcheminement": "VERNEUIL MOUSTIERS", + "nomCommune": "VERNEUIL MOUSTIERS" }, { - "codePostal": "40180", - "codeCommune": "40084", - "libelleAcheminement": "CLERMONT", - "nomCommune": "CLERMONT" + "codePostal": "88500", + "codeCommune": "88002", + "libelleAcheminement": "AHEVILLE", + "nomCommune": "AHEVILLE" }, { - "codePostal": "40310", - "codeCommune": "40093", - "libelleAcheminement": "ESCALANS", - "nomCommune": "ESCALANS" + "codePostal": "88380", + "codeCommune": "88012", + "libelleAcheminement": "ARCHETTES", + "nomCommune": "ARCHETTES" }, { - "codePostal": "40320", - "codeCommune": "40097", - "libelleAcheminement": "EUGENIE LES BAINS", - "nomCommune": "EUGENIE LES BAINS" + "codePostal": "88300", + "codeCommune": "88017", + "libelleAcheminement": "AULNOIS", + "nomCommune": "AULNOIS" }, { - "codePostal": "40310", - "codeCommune": "40102", - "libelleAcheminement": "GABARRET", - "nomCommune": "GABARRET" + "codePostal": "88460", + "codeCommune": "88028", + "libelleAcheminement": "LA BAFFE", + "nomCommune": "LA BAFFE" }, { - "codePostal": "40090", - "codeCommune": "40103", - "libelleAcheminement": "GAILLERES", - "nomCommune": "GAILLERES" + "codePostal": "88240", + "codeCommune": "88029", + "libelleAcheminement": "LA VOGE LES BAINS", + "nomCommune": "LA VOGE LES BAINS" }, { - "codePostal": "40330", - "codeCommune": "40109", - "libelleAcheminement": "GAUJACQ", - "nomCommune": "GAUJACQ" + "codePostal": "88640", + "codeCommune": "88035", + "libelleAcheminement": "BARBEY SEROUX", + "nomCommune": "BARBEY SEROUX" }, { - "codePostal": "40090", - "codeCommune": "40111", - "libelleAcheminement": "GELOUX", - "nomCommune": "GELOUX" + "codePostal": "88700", + "codeCommune": "88042", + "libelleAcheminement": "BAZIEN", + "nomCommune": "BAZIEN" }, { - "codePostal": "40270", - "codeCommune": "40117", - "libelleAcheminement": "GRENADE SUR L ADOUR", - "nomCommune": "GRENADE SUR L ADOUR" + "codePostal": "88500", + "codeCommune": "88043", + "libelleAcheminement": "BAZOILLES ET MENIL", + "nomCommune": "BAZOILLES ET MENIL" }, { - "codePostal": "40300", - "codeCommune": "40120", - "libelleAcheminement": "HASTINGUES", - "nomCommune": "HASTINGUES" + "codePostal": "88300", + "codeCommune": "88044", + "libelleAcheminement": "BAZOILLES SUR MEUSE", + "nomCommune": "BAZOILLES SUR MEUSE" }, { - "codePostal": "40990", - "codeCommune": "40123", - "libelleAcheminement": "HERM", - "nomCommune": "HERM" + "codePostal": "88600", + "codeCommune": "88046", + "libelleAcheminement": "BEAUMENIL", + "nomCommune": "BEAUMENIL" }, { - "codePostal": "40310", - "codeCommune": "40124", - "libelleAcheminement": "HERRE", - "nomCommune": "HERRE" + "codePostal": "88210", + "codeCommune": "88053", + "libelleAcheminement": "BELVAL", + "nomCommune": "BELVAL" }, { - "codePostal": "40180", - "codeCommune": "40125", - "libelleAcheminement": "HEUGAS", - "nomCommune": "HEUGAS" + "codePostal": "88170", + "codeCommune": "88058", + "libelleAcheminement": "BIECOURT", + "nomCommune": "BIECOURT" }, { - "codePostal": "40530", - "codeCommune": "40133", - "libelleAcheminement": "LABENNE", - "nomCommune": "LABENNE" + "codePostal": "88500", + "codeCommune": "88066", + "libelleAcheminement": "BOULAINCOURT", + "nomCommune": "BOULAINCOURT" }, { - "codePostal": "40420", - "codeCommune": "40135", - "libelleAcheminement": "LABRIT", - "nomCommune": "LABRIT" + "codePostal": "88350", + "codeCommune": "88074", + "libelleAcheminement": "BRECHAINVILLE", + "nomCommune": "BRECHAINVILLE" }, { - "codePostal": "40120", - "codeCommune": "40137", - "libelleAcheminement": "LACQUY", - "nomCommune": "LACQUY" + "codePostal": "88300", + "codeCommune": "88083", + "libelleAcheminement": "CERTILLEUX", + "nomCommune": "CERTILLEUX" }, { - "codePostal": "40700", - "codeCommune": "40138", - "libelleAcheminement": "LACRABE", - "nomCommune": "LACRABE" + "codePostal": "88130", + "codeCommune": "88084", + "libelleAcheminement": "CHAMAGNE", + "nomCommune": "CHAMAGNE" }, { - "codePostal": "40090", - "codeCommune": "40139", - "libelleAcheminement": "LAGLORIEUSE", - "nomCommune": "LAGLORIEUSE" + "codePostal": "88130", + "codeCommune": "88090", + "libelleAcheminement": "CHARMES", + "nomCommune": "CHARMES" }, { - "codePostal": "40240", - "codeCommune": "40140", - "libelleAcheminement": "LAGRANGE", - "nomCommune": "LAGRANGE" + "codePostal": "88460", + "codeCommune": "88101", + "libelleAcheminement": "CHENIMENIL", + "nomCommune": "CHENIMENIL" }, { - "codePostal": "40465", - "codeCommune": "40142", - "libelleAcheminement": "LALUQUE", - "nomCommune": "LALUQUE" + "codePostal": "88700", + "codeCommune": "88110", + "libelleAcheminement": "CLEZENTAINE", + "nomCommune": "CLEZENTAINE" }, { - "codePostal": "40260", - "codeCommune": "40152", - "libelleAcheminement": "LESPERON", - "nomCommune": "LESPERON" + "codePostal": "88100", + "codeCommune": "88111", + "libelleAcheminement": "COINCHES", + "nomCommune": "COINCHES" }, { - "codePostal": "40170", - "codeCommune": "40154", - "libelleAcheminement": "LEVIGNACQ", - "nomCommune": "LEVIGNACQ" + "codePostal": "88490", + "codeCommune": "88113", + "libelleAcheminement": "COMBRIMONT", + "nomCommune": "COMBRIMONT" }, { - "codePostal": "40240", - "codeCommune": "40161", - "libelleAcheminement": "LUBBON", - "nomCommune": "LUBBON" + "codePostal": "88630", + "codeCommune": "88118", + "libelleAcheminement": "COUSSEY", + "nomCommune": "COUSSEY" }, { - "codePostal": "40120", - "codeCommune": "40164", - "libelleAcheminement": "RETJONS", - "nomCommune": "RETJONS" + "codePostal": "88520", + "codeCommune": "88120", + "libelleAcheminement": "LA CROIX AUX MINES", + "nomCommune": "LA CROIX AUX MINES" }, { - "codePostal": "40410", - "codeCommune": "40171", - "libelleAcheminement": "MANO", - "nomCommune": "MANO" + "codePostal": "88500", + "codeCommune": "88139", + "libelleAcheminement": "DOMBASLE EN XAINTOIS", + "nomCommune": "DOMBASLE EN XAINTOIS" }, { - "codePostal": "40270", - "codeCommune": "40175", - "libelleAcheminement": "MAURRIN", - "nomCommune": "MAURRIN" + "codePostal": "88390", + "codeCommune": "88142", + "libelleAcheminement": "DOMEVRE SUR AVIERE", + "nomCommune": "DOMEVRE SUR AVIERE" }, { - "codePostal": "40240", - "codeCommune": "40176", - "libelleAcheminement": "MAUVEZIN D ARMAGNAC", - "nomCommune": "MAUVEZIN D ARMAGNAC" + "codePostal": "88800", + "codeCommune": "88146", + "libelleAcheminement": "DOMJULIEN", + "nomCommune": "DOMJULIEN" }, { - "codePostal": "40990", - "codeCommune": "40179", - "libelleAcheminement": "MEES", - "nomCommune": "MEES" + "codePostal": "88510", + "codeCommune": "88158", + "libelleAcheminement": "ELOYES", + "nomCommune": "ELOYES" }, { - "codePostal": "40400", - "codeCommune": "40180", - "libelleAcheminement": "MEILHAN", - "nomCommune": "MEILHAN" + "codePostal": "88650", + "codeCommune": "88159", + "libelleAcheminement": "ENTRE DEUX EAUX", + "nomCommune": "ENTRE DEUX EAUX" }, { - "codePostal": "40170", - "codeCommune": "40182", - "libelleAcheminement": "MEZOS", - "nomCommune": "MEZOS" + "codePostal": "88260", + "codeCommune": "88161", + "libelleAcheminement": "ESCLES", + "nomCommune": "ESCLES" }, { - "codePostal": "40350", - "codeCommune": "40183", - "libelleAcheminement": "MIMBASTE", - "nomCommune": "MIMBASTE" + "codePostal": "88130", + "codeCommune": "88163", + "libelleAcheminement": "ESSEGNEY", + "nomCommune": "ESSEGNEY" }, { - "codePostal": "40660", - "codeCommune": "40187", - "libelleAcheminement": "MOLIETS ET MAA", - "nomCommune": "MOLIETS ET MAA" + "codePostal": "88600", + "codeCommune": "88169", + "libelleAcheminement": "FAYS", + "nomCommune": "FAYS" }, { - "codePostal": "40500", - "codeCommune": "40196", - "libelleAcheminement": "MONTSOUE", - "nomCommune": "MONTSOUE" + "codePostal": "88360", + "codeCommune": "88170", + "libelleAcheminement": "FERDRUPT", + "nomCommune": "FERDRUPT" }, { - "codePostal": "40110", - "codeCommune": "40197", - "libelleAcheminement": "MORCENX LA NOUVELLE", - "nomCommune": "MORCENX LA NOUVELLE" + "codePostal": "88130", + "codeCommune": "88173", + "libelleAcheminement": "FLOREMONT", + "nomCommune": "FLOREMONT" }, { - "codePostal": "40110", - "codeCommune": "40197", - "libelleAcheminement": "MORCENX LA NOUVELLE", - "nomCommune": "MORCENX LA NOUVELLE" + "codePostal": "88390", + "codeCommune": "88174", + "libelleAcheminement": "FOMEREY", + "nomCommune": "FOMEREY" }, { - "codePostal": "40250", - "codeCommune": "40201", - "libelleAcheminement": "MUGRON", - "nomCommune": "MUGRON" + "codePostal": "88240", + "codeCommune": "88176", + "libelleAcheminement": "FONTENOY LE CHATEAU", + "nomCommune": "FONTENOY LE CHATEAU" }, { - "codePostal": "40180", - "codeCommune": "40202", - "libelleAcheminement": "NARROSSE", - "nomCommune": "NARROSSE" + "codePostal": "88390", + "codeCommune": "88178", + "libelleAcheminement": "LES FORGES", + "nomCommune": "LES FORGES" }, { - "codePostal": "40380", - "codeCommune": "40208", - "libelleAcheminement": "ONARD", - "nomCommune": "ONARD" + "codePostal": "88490", + "codeCommune": "88182", + "libelleAcheminement": "FRAPELLE", + "nomCommune": "FRAPELLE" }, { - "codePostal": "40440", - "codeCommune": "40209", - "libelleAcheminement": "ONDRES", - "nomCommune": "ONDRES" + "codePostal": "88630", + "codeCommune": "88183", + "libelleAcheminement": "FREBECOURT", + "nomCommune": "FREBECOURT" }, { - "codePostal": "40110", - "codeCommune": "40210", - "libelleAcheminement": "ONESSE LAHARIE", - "nomCommune": "ONESSE LAHARIE" + "codePostal": "88440", + "codeCommune": "88190", + "libelleAcheminement": "FRIZON", + "nomCommune": "FRIZON" }, { - "codePostal": "40300", - "codeCommune": "40211", - "libelleAcheminement": "ORIST", - "nomCommune": "ORIST" + "codePostal": "88270", + "codeCommune": "88192", + "libelleAcheminement": "GELVECOURT ET ADOMPT", + "nomCommune": "GELVECOURT ET ADOMPT" }, { - "codePostal": "40230", - "codeCommune": "40213", - "libelleAcheminement": "ORX", - "nomCommune": "ORX" + "codePostal": "88170", + "codeCommune": "88206", + "libelleAcheminement": "GIRONCOURT SUR VRAINE", + "nomCommune": "GIRONCOURT SUR VRAINE" }, { - "codePostal": "40310", - "codeCommune": "40218", - "libelleAcheminement": "PARLEBOSCQ", - "nomCommune": "PARLEBOSCQ" + "codePostal": "88190", + "codeCommune": "88209", + "libelleAcheminement": "GOLBEY", + "nomCommune": "GOLBEY" }, { - "codePostal": "40320", - "codeCommune": "40225", - "libelleAcheminement": "PHILONDENX", - "nomCommune": "PHILONDENX" + "codePostal": "88210", + "codeCommune": "88215", + "libelleAcheminement": "GRANDRUPT", + "nomCommune": "GRANDRUPT" }, { - "codePostal": "40410", - "codeCommune": "40227", - "libelleAcheminement": "PISSOS", - "nomCommune": "PISSOS" + "codePostal": "88630", + "codeCommune": "88219", + "libelleAcheminement": "GREUX", + "nomCommune": "GREUX" }, { - "codePostal": "40360", - "codeCommune": "40228", - "libelleAcheminement": "POMAREZ", - "nomCommune": "POMAREZ" + "codePostal": "88410", + "codeCommune": "88220", + "libelleAcheminement": "GRIGNONCOURT", + "nomCommune": "GRIGNONCOURT" }, { - "codePostal": "40465", - "codeCommune": "40230", - "libelleAcheminement": "PONTONX SUR L ADOUR", - "nomCommune": "PONTONX SUR L ADOUR" + "codePostal": "88170", + "codeCommune": "88241", + "libelleAcheminement": "HOUECOURT", + "nomCommune": "HOUECOURT" }, { - "codePostal": "40700", - "codeCommune": "40232", - "libelleAcheminement": "POUDENX", - "nomCommune": "POUDENX" + "codePostal": "88210", + "codeCommune": "88245", + "libelleAcheminement": "HURBACHE", + "nomCommune": "HURBACHE" }, { - "codePostal": "40350", - "codeCommune": "40233", - "libelleAcheminement": "POUILLON", - "nomCommune": "POUILLON" + "codePostal": "88600", + "codeCommune": "88261", + "libelleAcheminement": "LAVAL SUR VOLOGNE", + "nomCommune": "LAVAL SUR VOLOGNE" }, { - "codePostal": "40180", - "codeCommune": "40244", - "libelleAcheminement": "RIVIERE SAAS ET GOURBY", - "nomCommune": "RIVIERE SAAS ET GOURBY" + "codePostal": "88800", + "codeCommune": "88271", + "libelleAcheminement": "LIGNEVILLE", + "nomCommune": "LIGNEVILLE" }, { - "codePostal": "40630", - "codeCommune": "40246", - "libelleAcheminement": "SABRES", - "nomCommune": "SABRES" + "codePostal": "88490", + "codeCommune": "88276", + "libelleAcheminement": "LUSSE", + "nomCommune": "LUSSE" }, { - "codePostal": "40250", - "codeCommune": "40249", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "88270", + "codeCommune": "88279", + "libelleAcheminement": "MADECOURT", + "nomCommune": "MADECOURT" }, { - "codePostal": "40380", - "codeCommune": "40263", - "libelleAcheminement": "ST JEAN DE LIER", - "nomCommune": "ST JEAN DE LIER" + "codePostal": "88450", + "codeCommune": "88280", + "libelleAcheminement": "MADEGNEY", + "nomCommune": "MADEGNEY" }, { - "codePostal": "40240", - "codeCommune": "40267", - "libelleAcheminement": "ST JUSTIN", - "nomCommune": "ST JUSTIN" + "codePostal": "88270", + "codeCommune": "88281", + "libelleAcheminement": "MADONNE ET LAMEREY", + "nomCommune": "MADONNE ET LAMEREY" }, { - "codePostal": "40090", - "codeCommune": "40274", - "libelleAcheminement": "ST MARTIN D ONEY", - "nomCommune": "ST MARTIN D ONEY" + "codePostal": "88270", + "codeCommune": "88288", + "libelleAcheminement": "MARONCOURT", + "nomCommune": "MARONCOURT" }, { - "codePostal": "40180", - "codeCommune": "40277", - "libelleAcheminement": "ST PANDELON", - "nomCommune": "ST PANDELON" + "codePostal": "88500", + "codeCommune": "88295", + "libelleAcheminement": "MAZIROT", + "nomCommune": "MAZIROT" }, { - "codePostal": "40990", - "codeCommune": "40279", - "libelleAcheminement": "ST PAUL LES DAX", - "nomCommune": "ST PAUL LES DAX" + "codePostal": "88700", + "codeCommune": "88298", + "libelleAcheminement": "MENARMONT", + "nomCommune": "MENARMONT" }, { - "codePostal": "40280", - "codeCommune": "40281", - "libelleAcheminement": "ST PIERRE DU MONT", - "nomCommune": "ST PIERRE DU MONT" + "codePostal": "88500", + "codeCommune": "88304", + "libelleAcheminement": "MIRECOURT", + "nomCommune": "MIRECOURT" }, { - "codePostal": "40460", - "codeCommune": "40287", - "libelleAcheminement": "SANGUINET", - "nomCommune": "SANGUINET" + "codePostal": "88630", + "codeCommune": "88305", + "libelleAcheminement": "MONCEL SUR VAIR", + "nomCommune": "MONCEL SUR VAIR" }, { - "codePostal": "40500", - "codeCommune": "40289", - "libelleAcheminement": "SARRAZIET", - "nomCommune": "SARRAZIET" + "codePostal": "88210", + "codeCommune": "88306", + "libelleAcheminement": "LE MONT", + "nomCommune": "LE MONT" }, { - "codePostal": "40230", - "codeCommune": "40291", - "libelleAcheminement": "SAUBION", - "nomCommune": "SAUBION" + "codePostal": "88300", + "codeCommune": "88308", + "libelleAcheminement": "MONT LES NEUFCHATEAU", + "nomCommune": "MONT LES NEUFCHATEAU" }, { - "codePostal": "40180", - "codeCommune": "40294", - "libelleAcheminement": "SAUGNAC ET CAMBRAN", - "nomCommune": "SAUGNAC ET CAMBRAN" + "codePostal": "88410", + "codeCommune": "88310", + "libelleAcheminement": "MONTHUREUX SUR SAONE", + "nomCommune": "MONTHUREUX SUR SAONE" }, { - "codePostal": "40420", - "codeCommune": "40297", - "libelleAcheminement": "LE SEN", - "nomCommune": "LE SEN" + "codePostal": "88140", + "codeCommune": "88316", + "libelleAcheminement": "MORVILLE", + "nomCommune": "MORVILLE" }, { - "codePostal": "40150", - "codeCommune": "40304", - "libelleAcheminement": "SOORTS HOSSEGOR", - "nomCommune": "SOORTS HOSSEGOR" + "codePostal": "88420", + "codeCommune": "88319", + "libelleAcheminement": "MOYENMOUTIER", + "nomCommune": "MOYENMOUTIER" }, { - "codePostal": "40430", - "codeCommune": "40307", - "libelleAcheminement": "SORE", - "nomCommune": "SORE" + "codePostal": "88600", + "codeCommune": "88322", + "libelleAcheminement": "LA NEUVEVILLE DEVANT LEPANGES", + "nomCommune": "LA NEUVEVILLE DEVANT LEPANGES" }, { - "codePostal": "40250", - "codeCommune": "40309", - "libelleAcheminement": "SOUPROSSE", - "nomCommune": "SOUPROSSE" + "codePostal": "88170", + "codeCommune": "88336", + "libelleAcheminement": "OLLAINVILLE", + "nomCommune": "OLLAINVILLE" }, { - "codePostal": "40140", - "codeCommune": "40310", - "libelleAcheminement": "SOUSTONS", - "nomCommune": "SOUSTONS" + "codePostal": "88350", + "codeCommune": "88344", + "libelleAcheminement": "PARGNY SOUS MUREAU", + "nomCommune": "PARGNY SOUS MUREAU" }, { - "codePostal": "40260", - "codeCommune": "40311", - "libelleAcheminement": "TALLER", - "nomCommune": "TALLER" + "codePostal": "88490", + "codeCommune": "88345", + "libelleAcheminement": "LA PETITE FOSSE", + "nomCommune": "LA PETITE FOSSE" }, { - "codePostal": "40220", - "codeCommune": "40312", - "libelleAcheminement": "TARNOS", - "nomCommune": "TARNOS" + "codePostal": "88270", + "codeCommune": "88347", + "libelleAcheminement": "PIERREFITTE", + "nomCommune": "PIERREFITTE" }, { - "codePostal": "40400", - "codeCommune": "40313", - "libelleAcheminement": "TARTAS", - "nomCommune": "TARTAS" + "codePostal": "88170", + "codeCommune": "88350", + "libelleAcheminement": "PLEUVEZAIN", + "nomCommune": "PLEUVEZAIN" }, { - "codePostal": "40360", - "codeCommune": "40316", - "libelleAcheminement": "TILH", - "nomCommune": "TILH" + "codePostal": "88600", + "codeCommune": "88356", + "libelleAcheminement": "LES POULIERES", + "nomCommune": "LES POULIERES" }, { - "codePostal": "40630", - "codeCommune": "40319", - "libelleAcheminement": "TRENSACQ", - "nomCommune": "TRENSACQ" + "codePostal": "88500", + "codeCommune": "88357", + "libelleAcheminement": "POUSSAY", + "nomCommune": "POUSSAY" }, { - "codePostal": "40090", - "codeCommune": "40320", - "libelleAcheminement": "UCHACQ ET PARENTIS", - "nomCommune": "UCHACQ ET PARENTIS" + "codePostal": "88550", + "codeCommune": "88358", + "libelleAcheminement": "POUXEUX", + "nomCommune": "POUXEUX" }, { - "codePostal": "40480", - "codeCommune": "40328", - "libelleAcheminement": "VIEUX BOUCAU LES BAINS", - "nomCommune": "VIEUX BOUCAU LES BAINS" + "codePostal": "88170", + "codeCommune": "88366", + "libelleAcheminement": "RAINVILLE", + "nomCommune": "RAINVILLE" }, { - "codePostal": "40160", - "codeCommune": "40332", - "libelleAcheminement": "YCHOUX", - "nomCommune": "YCHOUX" + "codePostal": "88110", + "codeCommune": "88372", + "libelleAcheminement": "RAON L ETAPE", + "nomCommune": "RAON L ETAPE" }, { - "codePostal": "41500", - "codeCommune": "41008", - "libelleAcheminement": "AVARAY", - "nomCommune": "AVARAY" + "codePostal": "88520", + "codeCommune": "88375", + "libelleAcheminement": "RAVES", + "nomCommune": "RAVES" }, { - "codePostal": "41370", - "codeCommune": "41027", - "libelleAcheminement": "BRIOU", - "nomCommune": "BRIOU" + "codePostal": "88260", + "codeCommune": "88381", + "libelleAcheminement": "RELANGES", + "nomCommune": "RELANGES" }, { - "codePostal": "41160", - "codeCommune": "41028", - "libelleAcheminement": "BUSLOUP", - "nomCommune": "BUSLOUP" + "codePostal": "88200", + "codeCommune": "88383", + "libelleAcheminement": "REMIREMONT", + "nomCommune": "REMIREMONT" }, { - "codePostal": "41330", - "codeCommune": "41035", - "libelleAcheminement": "CHAMPIGNY EN BEAUCE", - "nomCommune": "CHAMPIGNY EN BEAUCE" + "codePostal": "88320", + "codeCommune": "88394", + "libelleAcheminement": "ROMAIN AUX BOIS", + "nomCommune": "ROMAIN AUX BOIS" }, { - "codePostal": "41120", - "codeCommune": "41059", - "libelleAcheminement": "LE CONTROIS EN SOLOGNE", - "nomCommune": "LE CONTROIS EN SOLOGNE" + "codePostal": "88700", + "codeCommune": "88402", + "libelleAcheminement": "ROVILLE AUX CHENES", + "nomCommune": "ROVILLE AUX CHENES" }, { - "codePostal": "41700", - "codeCommune": "41062", - "libelleAcheminement": "COUDDES", - "nomCommune": "COUDDES" + "codePostal": "88500", + "codeCommune": "88403", + "libelleAcheminement": "ROZEROTTE", + "nomCommune": "ROZEROTTE" }, { - "codePostal": "41100", - "codeCommune": "41065", - "libelleAcheminement": "COULOMMIERS LA TOUR", - "nomCommune": "COULOMMIERS LA TOUR" + "codePostal": "88130", + "codeCommune": "88406", + "libelleAcheminement": "RUGNEY", + "nomCommune": "RUGNEY" }, { - "codePostal": "41220", - "codeCommune": "41074", - "libelleAcheminement": "DHUIZON", - "nomCommune": "DHUIZON" + "codePostal": "88700", + "codeCommune": "88417", + "libelleAcheminement": "ST GORGON", + "nomCommune": "ST GORGON" }, { - "codePostal": "41270", - "codeCommune": "41075", - "libelleAcheminement": "DROUE", - "nomCommune": "DROUE" + "codePostal": "88410", + "codeCommune": "88421", + "libelleAcheminement": "ST JULIEN", + "nomCommune": "ST JULIEN" }, { - "codePostal": "41400", - "codeCommune": "41080", - "libelleAcheminement": "FAVEROLLES SUR CHER", - "nomCommune": "FAVEROLLES SUR CHER" + "codePostal": "88650", + "codeCommune": "88423", + "libelleAcheminement": "ST LEONARD", + "nomCommune": "ST LEONARD" }, { - "codePostal": "41100", - "codeCommune": "41081", - "libelleAcheminement": "FAYE", - "nomCommune": "FAYE" + "codePostal": "88100", + "codeCommune": "88424", + "libelleAcheminement": "STE MARGUERITE", + "nomCommune": "STE MARGUERITE" }, { - "codePostal": "41800", - "codeCommune": "41113", - "libelleAcheminement": "LAVARDIN", - "nomCommune": "LAVARDIN" + "codePostal": "88560", + "codeCommune": "88426", + "libelleAcheminement": "ST MAURICE SUR MOSELLE", + "nomCommune": "ST MAURICE SUR MOSELLE" }, { - "codePostal": "41160", - "codeCommune": "41115", - "libelleAcheminement": "LIGNIERES", - "nomCommune": "LIGNIERES" + "codePostal": "88170", + "codeCommune": "88427", + "libelleAcheminement": "ST MENGE", + "nomCommune": "ST MENGE" }, { - "codePostal": "41200", - "codeCommune": "41118", - "libelleAcheminement": "LOREUX", - "nomCommune": "LOREUX" + "codePostal": "88470", + "codeCommune": "88438", + "libelleAcheminement": "LA SALLE", + "nomCommune": "LA SALLE" }, { - "codePostal": "41100", - "codeCommune": "41124", - "libelleAcheminement": "MARCILLY EN BEAUCE", - "nomCommune": "MARCILLY EN BEAUCE" + "codePostal": "88600", + "codeCommune": "88454", + "libelleAcheminement": "SERCOEUR", + "nomCommune": "SERCOEUR" }, { - "codePostal": "41500", - "codeCommune": "41130", - "libelleAcheminement": "MAVES", - "nomCommune": "MAVES" + "codePostal": "88320", + "codeCommune": "88455", + "libelleAcheminement": "SERECOURT", + "nomCommune": "SERECOURT" }, { - "codePostal": "41500", - "codeCommune": "41134", - "libelleAcheminement": "MENARS", - "nomCommune": "MENARS" + "codePostal": "88130", + "codeCommune": "88458", + "libelleAcheminement": "SOCOURT", + "nomCommune": "SOCOURT" }, { - "codePostal": "41320", - "codeCommune": "41135", - "libelleAcheminement": "MENNETOU SUR CHER", - "nomCommune": "MENNETOU SUR CHER" + "codePostal": "88140", + "codeCommune": "88461", + "libelleAcheminement": "SURIAUVILLE", + "nomCommune": "SURIAUVILLE" }, { - "codePostal": "41120", - "codeCommune": "41147", - "libelleAcheminement": "LES MONTILS", - "nomCommune": "LES MONTILS" + "codePostal": "88160", + "codeCommune": "88468", + "libelleAcheminement": "LE THILLOT", + "nomCommune": "LE THILLOT" }, { - "codePostal": "41800", - "codeCommune": "41149", - "libelleAcheminement": "MONTOIRE SUR LE LOIR", - "nomCommune": "MONTOIRE SUR LE LOIR" + "codePostal": "88410", + "codeCommune": "88471", + "libelleAcheminement": "LES THONS", + "nomCommune": "LES THONS" }, { - "codePostal": "41250", - "codeCommune": "41150", - "libelleAcheminement": "MONT PRES CHAMBORD", - "nomCommune": "MONT PRES CHAMBORD" + "codePostal": "88320", + "codeCommune": "88475", + "libelleAcheminement": "TOLLAINCOURT", + "nomCommune": "TOLLAINCOURT" }, { - "codePostal": "41800", - "codeCommune": "41153", - "libelleAcheminement": "MONTROUVEAU", - "nomCommune": "MONTROUVEAU" + "codePostal": "88240", + "codeCommune": "88479", + "libelleAcheminement": "TREMONZEY", + "nomCommune": "TREMONZEY" }, { - "codePostal": "41160", - "codeCommune": "41154", - "libelleAcheminement": "MOREE", - "nomCommune": "MOREE" + "codePostal": "88140", + "codeCommune": "88485", + "libelleAcheminement": "LA VACHERESSE ET LA ROUILLIE", + "nomCommune": "LA VACHERESSE ET LA ROUILLIE" }, { - "codePostal": "41160", - "codeCommune": "41173", - "libelleAcheminement": "BEAUCE LA ROMAINE", - "nomCommune": "BEAUCE LA ROMAINE" + "codePostal": "88260", + "codeCommune": "88491", + "libelleAcheminement": "LES VALLOIS", + "nomCommune": "LES VALLOIS" }, { - "codePostal": "41240", - "codeCommune": "41173", - "libelleAcheminement": "BEAUCE LA ROMAINE", - "nomCommune": "BEAUCE LA ROMAINE" + "codePostal": "88500", + "codeCommune": "88494", + "libelleAcheminement": "VAUBEXY", + "nomCommune": "VAUBEXY" }, { - "codePostal": "41240", - "codeCommune": "41173", - "libelleAcheminement": "BEAUCE LA ROMAINE", - "nomCommune": "BEAUCE LA ROMAINE" + "codePostal": "88140", + "codeCommune": "88496", + "libelleAcheminement": "VAUDONCOURT", + "nomCommune": "VAUDONCOURT" }, { - "codePostal": "41240", - "codeCommune": "41173", - "libelleAcheminement": "BEAUCE LA ROMAINE", - "nomCommune": "BEAUCE LA ROMAINE" + "codePostal": "88350", + "codeCommune": "88511", + "libelleAcheminement": "VILLOUXEL", + "nomCommune": "VILLOUXEL" }, { - "codePostal": "41150", - "codeCommune": "41189", - "libelleAcheminement": "RILLY SUR LOIRE", - "nomCommune": "RILLY SUR LOIRE" + "codePostal": "88260", + "codeCommune": "88515", + "libelleAcheminement": "VIOMENIL", + "nomCommune": "VIOMENIL" }, { - "codePostal": "41110", - "codeCommune": "41198", - "libelleAcheminement": "ST AIGNAN", - "nomCommune": "ST AIGNAN" + "codePostal": "88520", + "codeCommune": "88526", + "libelleAcheminement": "WISEMBACH", + "nomCommune": "WISEMBACH" }, { - "codePostal": "41190", - "codeCommune": "41205", - "libelleAcheminement": "ST CYR DU GAULT", - "nomCommune": "ST CYR DU GAULT" + "codePostal": "88130", + "codeCommune": "88529", + "libelleAcheminement": "XARONVAL", + "nomCommune": "XARONVAL" }, { - "codePostal": "41400", - "codeCommune": "41211", - "libelleAcheminement": "ST GEORGES SUR CHER", - "nomCommune": "ST GEORGES SUR CHER" + "codePostal": "88220", + "codeCommune": "88530", + "libelleAcheminement": "XERTIGNY", + "nomCommune": "XERTIGNY" }, { - "codePostal": "41140", - "codeCommune": "41229", - "libelleAcheminement": "ST ROMAIN SUR CHER", - "nomCommune": "ST ROMAIN SUR CHER" + "codePostal": "88330", + "codeCommune": "88532", + "libelleAcheminement": "ZINCOURT", + "nomCommune": "ZINCOURT" }, { - "codePostal": "41300", - "codeCommune": "41241", - "libelleAcheminement": "SELLES ST DENIS", - "nomCommune": "SELLES ST DENIS" + "codePostal": "89110", + "codeCommune": "89003", + "libelleAcheminement": "MONTHOLON", + "nomCommune": "MONTHOLON" }, { - "codePostal": "41300", - "codeCommune": "41249", - "libelleAcheminement": "SOUESMES", - "nomCommune": "SOUESMES" + "codePostal": "89160", + "codeCommune": "89006", + "libelleAcheminement": "ANCY LE LIBRE", + "nomCommune": "ANCY LE LIBRE" }, { - "codePostal": "41800", - "codeCommune": "41250", - "libelleAcheminement": "SOUGE", - "nomCommune": "SOUGE" + "codePostal": "89740", + "codeCommune": "89019", + "libelleAcheminement": "ARTHONNAY", + "nomCommune": "ARTHONNAY" }, { - "codePostal": "41400", - "codeCommune": "41267", - "libelleAcheminement": "VALLIERES LES GRANDES", - "nomCommune": "VALLIERES LES GRANDES" + "codePostal": "89290", + "codeCommune": "89023", + "libelleAcheminement": "AUGY", + "nomCommune": "AUGY" }, { - "codePostal": "41290", - "codeCommune": "41273", - "libelleAcheminement": "VIEVY LE RAYE", - "nomCommune": "VIEVY LE RAYE" + "codePostal": "89290", + "codeCommune": "89024", + "libelleAcheminement": "AUXERRE", + "nomCommune": "AUXERRE" }, { - "codePostal": "41100", - "codeCommune": "41283", - "libelleAcheminement": "VILLEMARDY", - "nomCommune": "VILLEMARDY" + "codePostal": "89240", + "codeCommune": "89033", + "libelleAcheminement": "BEAUVOIR", + "nomCommune": "BEAUVOIR" }, { - "codePostal": "41290", - "codeCommune": "41284", - "libelleAcheminement": "VILLENEUVE FROUVILLE", - "nomCommune": "VILLENEUVE FROUVILLE" + "codePostal": "89150", + "codeCommune": "89036", + "libelleAcheminement": "LA BELLIOLE", + "nomCommune": "LA BELLIOLE" }, { - "codePostal": "41500", - "codeCommune": "41292", - "libelleAcheminement": "VILLEXANTON", - "nomCommune": "VILLEXANTON" + "codePostal": "89660", + "codeCommune": "89057", + "libelleAcheminement": "BROSSES", + "nomCommune": "BROSSES" }, { - "codePostal": "41600", - "codeCommune": "41297", - "libelleAcheminement": "YVOY LE MARRON", - "nomCommune": "YVOY LE MARRON" + "codePostal": "89410", + "codeCommune": "89067", + "libelleAcheminement": "CEZY", + "nomCommune": "CEZY" }, { - "codePostal": "42130", - "codeCommune": "42009", - "libelleAcheminement": "ARTHUN", - "nomCommune": "ARTHUN" + "codePostal": "89800", + "codeCommune": "89068", + "libelleAcheminement": "CHABLIS", + "nomCommune": "CHABLIS" }, { - "codePostal": "42330", - "codeCommune": "42010", - "libelleAcheminement": "AVEIZIEUX", - "nomCommune": "AVEIZIEUX" + "codePostal": "89210", + "codeCommune": "89076", + "libelleAcheminement": "CHAMPLOST", + "nomCommune": "CHAMPLOST" }, { - "codePostal": "42510", - "codeCommune": "42011", - "libelleAcheminement": "BALBIGNY", - "nomCommune": "BALBIGNY" + "codePostal": "89400", + "codeCommune": "89085", + "libelleAcheminement": "CHARMOY", + "nomCommune": "CHARMOY" }, { - "codePostal": "42220", - "codeCommune": "42023", - "libelleAcheminement": "BOURG ARGENTAL", - "nomCommune": "BOURG ARGENTAL" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "42460", - "codeCommune": "42033", - "libelleAcheminement": "LE CERGNE", - "nomCommune": "LE CERGNE" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "42600", - "codeCommune": "42038", - "libelleAcheminement": "CHALAIN LE COMTAL", - "nomCommune": "CHALAIN LE COMTAL" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "42920", - "codeCommune": "42039", - "libelleAcheminement": "CHALMAZEL JEANSAGNIERE", - "nomCommune": "CHALMAZEL JEANSAGNIERE" + "codePostal": "89700", + "codeCommune": "89098", + "libelleAcheminement": "CHENEY", + "nomCommune": "CHENEY" }, { - "codePostal": "42440", - "codeCommune": "42040", - "libelleAcheminement": "LA CHAMBA", - "nomCommune": "LA CHAMBA" + "codePostal": "89400", + "codeCommune": "89099", + "libelleAcheminement": "CHENY", + "nomCommune": "CHENY" }, { - "codePostal": "42500", - "codeCommune": "42044", - "libelleAcheminement": "LE CHAMBON FEUGEROLLES", - "nomCommune": "LE CHAMBON FEUGEROLLES" + "codePostal": "89240", + "codeCommune": "89102", + "libelleAcheminement": "CHEVANNES", + "nomCommune": "CHEVANNES" }, { - "codePostal": "42600", - "codeCommune": "42046", - "libelleAcheminement": "CHAMPDIEU", - "nomCommune": "CHAMPDIEU" + "codePostal": "89480", + "codeCommune": "89119", + "libelleAcheminement": "COULANGES SUR YONNE", + "nomCommune": "COULANGES SUR YONNE" }, { - "codePostal": "42430", - "codeCommune": "42047", - "libelleAcheminement": "CHAMPOLY", - "nomCommune": "CHAMPOLY" + "codePostal": "89740", + "codeCommune": "89131", + "libelleAcheminement": "CRUZY LE CHATEL", + "nomCommune": "CRUZY LE CHATEL" }, { - "codePostal": "42940", - "codeCommune": "42054", - "libelleAcheminement": "CHATELNEUF", - "nomCommune": "CHATELNEUF" + "codePostal": "89240", + "codeCommune": "89139", + "libelleAcheminement": "DIGES", + "nomCommune": "DIGES" }, { - "codePostal": "42140", - "codeCommune": "42055", - "libelleAcheminement": "CHATELUS", - "nomCommune": "CHATELUS" + "codePostal": "89500", + "codeCommune": "89142", + "libelleAcheminement": "DIXMONT", + "nomCommune": "DIXMONT" }, { - "codePostal": "42410", - "codeCommune": "42056", - "libelleAcheminement": "CHAVANAY", - "nomCommune": "CHAVANAY" + "codePostal": "89200", + "codeCommune": "89146", + "libelleAcheminement": "DOMECY SUR LE VAULT", + "nomCommune": "DOMECY SUR LE VAULT" }, { - "codePostal": "42560", - "codeCommune": "42058", - "libelleAcheminement": "CHAZELLES SUR LAVIEU", - "nomCommune": "CHAZELLES SUR LAVIEU" + "codePostal": "89240", + "codeCommune": "89150", + "libelleAcheminement": "EGLENY", + "nomCommune": "EGLENY" }, { - "codePostal": "42560", - "codeCommune": "42060", - "libelleAcheminement": "CHENEREILLES", - "nomCommune": "CHENEREILLES" + "codePostal": "89500", + "codeCommune": "89151", + "libelleAcheminement": "EGRISELLES LE BOCAGE", + "nomCommune": "EGRISELLES LE BOCAGE" }, { - "codePostal": "42111", - "codeCommune": "42072", - "libelleAcheminement": "LA COTE EN COUZAN", - "nomCommune": "LA COTE EN COUZAN" + "codePostal": "89400", + "codeCommune": "89152", + "libelleAcheminement": "EPINEAU LES VOVES", + "nomCommune": "EPINEAU LES VOVES" }, { - "codePostal": "42210", - "codeCommune": "42075", - "libelleAcheminement": "CRAINTILLEUX", - "nomCommune": "CRAINTILLEUX" + "codePostal": "89210", + "codeCommune": "89156", + "libelleAcheminement": "ESNON", + "nomCommune": "ESNON" }, { - "codePostal": "42670", - "codeCommune": "42086", - "libelleAcheminement": "ECOCHE", - "nomCommune": "ECOCHE" + "codePostal": "89190", + "codeCommune": "89165", + "libelleAcheminement": "FLACY", + "nomCommune": "FLACY" }, { - "codePostal": "42110", - "codeCommune": "42088", - "libelleAcheminement": "EPERCIEUX ST PAUL", - "nomCommune": "EPERCIEUX ST PAUL" + "codePostal": "89113", + "codeCommune": "89167", + "libelleAcheminement": "FLEURY LA VALLEE", + "nomCommune": "FLEURY LA VALLEE" }, { - "codePostal": "42360", - "codeCommune": "42090", - "libelleAcheminement": "ESSERTINES EN DONZY", - "nomCommune": "ESSERTINES EN DONZY" + "codePostal": "89320", + "codeCommune": "89181", + "libelleAcheminement": "FOURNAUDIN", + "nomCommune": "FOURNAUDIN" }, { - "codePostal": "42320", - "codeCommune": "42093", - "libelleAcheminement": "FARNAY", - "nomCommune": "FARNAY" + "codePostal": "89160", + "codeCommune": "89187", + "libelleAcheminement": "GIGNY", + "nomCommune": "GIGNY" }, { - "codePostal": "42110", - "codeCommune": "42094", - "libelleAcheminement": "FEURS", - "nomCommune": "FEURS" + "codePostal": "89420", + "codeCommune": "89197", + "libelleAcheminement": "GUILLON TERRE PLAINE", + "nomCommune": "GUILLON TERRE PLAINE" }, { - "codePostal": "42490", - "codeCommune": "42099", - "libelleAcheminement": "FRAISSES", - "nomCommune": "FRAISSES" + "codePostal": "89420", + "codeCommune": "89197", + "libelleAcheminement": "GUILLON TERRE PLAINE", + "nomCommune": "GUILLON TERRE PLAINE" }, { - "codePostal": "42320", - "codeCommune": "42103", - "libelleAcheminement": "LA GRAND CROIX", - "nomCommune": "LA GRAND CROIX" + "codePostal": "89250", + "codeCommune": "89200", + "libelleAcheminement": "HAUTERIVE", + "nomCommune": "HAUTERIVE" }, { - "codePostal": "42470", - "codeCommune": "42118", - "libelleAcheminement": "LAY", - "nomCommune": "LAY" + "codePostal": "89550", + "codeCommune": "89201", + "libelleAcheminement": "HERY", + "nomCommune": "HERY" }, { - "codePostal": "42155", - "codeCommune": "42120", - "libelleAcheminement": "LENTIGNY", - "nomCommune": "LENTIGNY" + "codePostal": "89440", + "codeCommune": "89204", + "libelleAcheminement": "L ISLE SUR SEREIN", + "nomCommune": "L ISLE SUR SEREIN" }, { - "codePostal": "42660", - "codeCommune": "42139", - "libelleAcheminement": "MARLHES", - "nomCommune": "MARLHES" + "codePostal": "89440", + "codeCommune": "89208", + "libelleAcheminement": "JOUX LA VILLE", + "nomCommune": "JOUX LA VILLE" }, { - "codePostal": "42750", - "codeCommune": "42141", - "libelleAcheminement": "MARS", - "nomCommune": "MARS" + "codePostal": "89190", + "codeCommune": "89214", + "libelleAcheminement": "LAILLY", + "nomCommune": "LAILLY" }, { - "codePostal": "42380", - "codeCommune": "42146", - "libelleAcheminement": "MONTARCHER", - "nomCommune": "MONTARCHER" + "codePostal": "89400", + "codeCommune": "89218", + "libelleAcheminement": "LAROCHE ST CYDROINE", + "nomCommune": "LAROCHE ST CYDROINE" }, { - "codePostal": "42600", - "codeCommune": "42147", - "libelleAcheminement": "MONTBRISON", - "nomCommune": "MONTBRISON" + "codePostal": "89800", + "codeCommune": "89224", + "libelleAcheminement": "LICHERES PRES AIGREMONT", + "nomCommune": "LICHERES PRES AIGREMONT" }, { - "codePostal": "42360", - "codeCommune": "42148", - "libelleAcheminement": "MONTCHAL", - "nomCommune": "MONTCHAL" + "codePostal": "89240", + "codeCommune": "89228", + "libelleAcheminement": "LINDRY", + "nomCommune": "LINDRY" }, { - "codePostal": "42720", - "codeCommune": "42152", - "libelleAcheminement": "NANDAX", - "nomCommune": "NANDAX" + "codePostal": "89100", + "codeCommune": "89236", + "libelleAcheminement": "MAILLOT", + "nomCommune": "MAILLOT" }, { - "codePostal": "42120", - "codeCommune": "42161", - "libelleAcheminement": "NOTRE DAME DE BOISSET", - "nomCommune": "NOTRE DAME DE BOISSET" + "codePostal": "89660", + "codeCommune": "89238", + "libelleAcheminement": "MAILLY LE CHATEAU", + "nomCommune": "MAILLY LE CHATEAU" }, { - "codePostal": "42155", - "codeCommune": "42162", - "libelleAcheminement": "OUCHES", - "nomCommune": "OUCHES" + "codePostal": "89100", + "codeCommune": "89239", + "libelleAcheminement": "MALAY LE GRAND", + "nomCommune": "MALAY LE GRAND" }, { - "codePostal": "42370", - "codeCommune": "42182", - "libelleAcheminement": "RENAISON", - "nomCommune": "RENAISON" + "codePostal": "89800", + "codeCommune": "89242", + "libelleAcheminement": "MALIGNY", + "nomCommune": "MALIGNY" }, { - "codePostal": "42520", - "codeCommune": "42191", - "libelleAcheminement": "ROISEY", - "nomCommune": "ROISEY" + "codePostal": "89210", + "codeCommune": "89249", + "libelleAcheminement": "MERCY", + "nomCommune": "MERCY" }, { - "codePostal": "42370", - "codeCommune": "42198", - "libelleAcheminement": "ST ALBAN LES EAUX", - "nomCommune": "ST ALBAN LES EAUX" + "codePostal": "89110", + "codeCommune": "89251", + "libelleAcheminement": "MERRY LA VALLEE", + "nomCommune": "MERRY LA VALLEE" }, { - "codePostal": "42210", - "codeCommune": "42200", - "libelleAcheminement": "ST ANDRE LE PUY", - "nomCommune": "ST ANDRE LE PUY" + "codePostal": "89580", + "codeCommune": "89256", + "libelleAcheminement": "MIGE", + "nomCommune": "MIGE" }, { - "codePostal": "42400", - "codeCommune": "42207", - "libelleAcheminement": "ST CHAMOND", - "nomCommune": "ST CHAMOND" + "codePostal": "89660", + "codeCommune": "89266", + "libelleAcheminement": "MONTILLOT", + "nomCommune": "MONTILLOT" }, { - "codePostal": "42320", - "codeCommune": "42208", - "libelleAcheminement": "ST CHRISTO EN JAREZ", - "nomCommune": "ST CHRISTO EN JAREZ" + "codePostal": "89310", + "codeCommune": "89271", + "libelleAcheminement": "MOULINS EN TONNERROIS", + "nomCommune": "MOULINS EN TONNERROIS" }, { - "codePostal": "42111", - "codeCommune": "42217", - "libelleAcheminement": "ST DIDIER SUR ROCHEFORT", - "nomCommune": "ST DIDIER SUR ROCHEFORT" + "codePostal": "89310", + "codeCommune": "89279", + "libelleAcheminement": "NOYERS", + "nomCommune": "NOYERS" }, { - "codePostal": "42100", - "codeCommune": "42218", - "libelleAcheminement": "ST ETIENNE", - "nomCommune": "ST ETIENNE" + "codePostal": "89560", + "codeCommune": "89283", + "libelleAcheminement": "OUANNE", + "nomCommune": "OUANNE" }, { - "codePostal": "42130", - "codeCommune": "42219", - "libelleAcheminement": "ST ETIENNE LE MOLARD", - "nomCommune": "ST ETIENNE LE MOLARD" + "codePostal": "89240", + "codeCommune": "89286", + "libelleAcheminement": "PARLY", + "nomCommune": "PARLY" }, { - "codePostal": "42670", - "codeCommune": "42229", - "libelleAcheminement": "ST GERMAIN LA MONTAGNE", - "nomCommune": "ST GERMAIN LA MONTAGNE" + "codePostal": "89360", + "codeCommune": "89292", + "libelleAcheminement": "PERCEY", + "nomCommune": "PERCEY" }, { - "codePostal": "42260", - "codeCommune": "42230", - "libelleAcheminement": "ST GERMAIN LAVAL", - "nomCommune": "ST GERMAIN LAVAL" + "codePostal": "89140", + "codeCommune": "89309", + "libelleAcheminement": "PONT SUR YONNE", + "nomCommune": "PONT SUR YONNE" }, { - "codePostal": "42155", - "codeCommune": "42253", - "libelleAcheminement": "ST LEGER SUR ROANNE", - "nomCommune": "ST LEGER SUR ROANNE" + "codePostal": "89800", + "codeCommune": "89315", + "libelleAcheminement": "PREHY", + "nomCommune": "PREHY" }, { - "codePostal": "42122", - "codeCommune": "42254", - "libelleAcheminement": "ST MARCEL DE FELINES", - "nomCommune": "ST MARCEL DE FELINES" + "codePostal": "89200", + "codeCommune": "89316", + "libelleAcheminement": "PROVENCY", + "nomCommune": "PROVENCY" }, { - "codePostal": "42620", - "codeCommune": "42257", - "libelleAcheminement": "ST MARTIN D ESTREAUX", - "nomCommune": "ST MARTIN D ESTREAUX" + "codePostal": "89630", + "codeCommune": "89318", + "libelleAcheminement": "QUARRE LES TOMBES", + "nomCommune": "QUARRE LES TOMBES" }, { - "codePostal": "42110", - "codeCommune": "42261", - "libelleAcheminement": "ST MARTIN LESTRA", - "nomCommune": "ST MARTIN LESTRA" + "codePostal": "89700", + "codeCommune": "89323", + "libelleAcheminement": "ROFFEY", + "nomCommune": "ROFFEY" }, { - "codePostal": "42260", - "codeCommune": "42268", - "libelleAcheminement": "VEZELIN SUR LOIRE", - "nomCommune": "VEZELIN SUR LOIRE" + "codePostal": "89520", + "codeCommune": "89331", + "libelleAcheminement": "SAINPUITS", + "nomCommune": "SAINPUITS" }, { - "codePostal": "42190", - "codeCommune": "42273", - "libelleAcheminement": "ST PIERRE LA NOAILLE", - "nomCommune": "ST PIERRE LA NOAILLE" + "codePostal": "89420", + "codeCommune": "89333", + "libelleAcheminement": "ST ANDRE EN TERRE PLAINE", + "nomCommune": "ST ANDRE EN TERRE PLAINE" }, { - "codePostal": "42170", - "codeCommune": "42279", - "libelleAcheminement": "ST JUST ST RAMBERT", - "nomCommune": "ST JUST ST RAMBERT" + "codePostal": "89170", + "codeCommune": "89344", + "libelleAcheminement": "ST FARGEAU", + "nomCommune": "ST FARGEAU" }, { - "codePostal": "42610", - "codeCommune": "42285", - "libelleAcheminement": "ST ROMAIN LE PUY", - "nomCommune": "ST ROMAIN LE PUY" + "codePostal": "89600", + "codeCommune": "89345", + "libelleAcheminement": "ST FLORENTIN", + "nomCommune": "ST FLORENTIN" }, { - "codePostal": "42660", - "codeCommune": "42286", - "libelleAcheminement": "ST ROMAIN LES ATHEUX", - "nomCommune": "ST ROMAIN LES ATHEUX" + "codePostal": "89600", + "codeCommune": "89345", + "libelleAcheminement": "ST FLORENTIN", + "nomCommune": "ST FLORENTIN" }, { - "codePostal": "42220", - "codeCommune": "42287", - "libelleAcheminement": "ST SAUVEUR EN RUE", - "nomCommune": "ST SAUVEUR EN RUE" + "codePostal": "89100", + "codeCommune": "89354", + "libelleAcheminement": "ST MARTIN DU TERTRE", + "nomCommune": "ST MARTIN DU TERTRE" }, { - "codePostal": "42470", - "codeCommune": "42289", - "libelleAcheminement": "ST SYMPHORIEN DE LAY", - "nomCommune": "ST SYMPHORIEN DE LAY" + "codePostal": "89700", + "codeCommune": "89355", + "libelleAcheminement": "ST MARTIN SUR ARMANCON", + "nomCommune": "ST MARTIN SUR ARMANCON" }, { - "codePostal": "42110", - "codeCommune": "42296", - "libelleAcheminement": "SALT EN DONZY", - "nomCommune": "SALT EN DONZY" + "codePostal": "89160", + "codeCommune": "89374", + "libelleAcheminement": "SAMBOURG", + "nomCommune": "SAMBOURG" }, { - "codePostal": "42110", - "codeCommune": "42297", - "libelleAcheminement": "SALVIZINET", - "nomCommune": "SALVIZINET" + "codePostal": "89140", + "codeCommune": "89390", + "libelleAcheminement": "SERBONNES", + "nomCommune": "SERBONNES" }, { - "codePostal": "42600", - "codeCommune": "42299", - "libelleAcheminement": "SAVIGNEUX", - "nomCommune": "SAVIGNEUX" + "codePostal": "89110", + "codeCommune": "89397", + "libelleAcheminement": "SOMMECAISE", + "nomCommune": "SOMMECAISE" }, { - "codePostal": "42260", - "codeCommune": "42303", - "libelleAcheminement": "SOUTERNON", - "nomCommune": "SOUTERNON" + "codePostal": "89160", + "codeCommune": "89403", + "libelleAcheminement": "STIGNY", + "nomCommune": "STIGNY" }, { - "codePostal": "42310", - "codeCommune": "42317", - "libelleAcheminement": "URBISE", - "nomCommune": "URBISE" + "codePostal": "89560", + "codeCommune": "89405", + "libelleAcheminement": "LES HAUTS DE FORTERRE", + "nomCommune": "LES HAUTS DE FORTERRE" }, { - "codePostal": "42340", - "codeCommune": "42323", - "libelleAcheminement": "VEAUCHE", - "nomCommune": "VEAUCHE" + "codePostal": "89430", + "codeCommune": "89407", + "libelleAcheminement": "TANLAY", + "nomCommune": "TANLAY" }, { - "codePostal": "42340", - "codeCommune": "42324", - "libelleAcheminement": "VEAUCHETTE", - "nomCommune": "VEAUCHETTE" + "codePostal": "89520", + "codeCommune": "89420", + "libelleAcheminement": "TREIGNY PERREUSE STE COLOMBE", + "nomCommune": "TREIGNY PERREUSE STE COLOMBE" }, { - "codePostal": "42520", - "codeCommune": "42326", - "libelleAcheminement": "VERANNE", - "nomCommune": "VERANNE" + "codePostal": "89570", + "codeCommune": "89425", + "libelleAcheminement": "TURNY", + "nomCommune": "TURNY" }, { - "codePostal": "42460", - "codeCommune": "42333", - "libelleAcheminement": "VILLERS", - "nomCommune": "VILLERS" + "codePostal": "89580", + "codeCommune": "89427", + "libelleAcheminement": "VALLAN", + "nomCommune": "VALLAN" }, { - "codePostal": "43150", - "codeCommune": "43004", - "libelleAcheminement": "ALLEYRAC", - "nomCommune": "ALLEYRAC" + "codePostal": "89320", + "codeCommune": "89434", + "libelleAcheminement": "VAUMORT", + "nomCommune": "VAUMORT" }, { - "codePostal": "43580", - "codeCommune": "43005", - "libelleAcheminement": "ALLEYRAS", - "nomCommune": "ALLEYRAS" + "codePostal": "89290", + "codeCommune": "89438", + "libelleAcheminement": "VENOY", + "nomCommune": "VENOY" }, { - "codePostal": "43490", - "codeCommune": "43008", - "libelleAcheminement": "ARLEMPDES", - "nomCommune": "ARLEMPDES" + "codePostal": "89150", + "codeCommune": "89442", + "libelleAcheminement": "VERNOY", + "nomCommune": "VERNOY" }, { - "codePostal": "43300", - "codeCommune": "43013", - "libelleAcheminement": "VISSAC AUTEYRAC", - "nomCommune": "VISSAC AUTEYRAC" + "codePostal": "89450", + "codeCommune": "89446", + "libelleAcheminement": "VEZELAY", + "nomCommune": "VEZELAY" }, { - "codePostal": "43390", - "codeCommune": "43016", - "libelleAcheminement": "AUZON", - "nomCommune": "AUZON" + "codePostal": "89140", + "codeCommune": "89458", + "libelleAcheminement": "VILLENAVOTTE", + "nomCommune": "VILLENAVOTTE" }, { - "codePostal": "43590", - "codeCommune": "43025", - "libelleAcheminement": "BEAUZAC", - "nomCommune": "BEAUZAC" + "codePostal": "89190", + "codeCommune": "89461", + "libelleAcheminement": "VILLENEUVE L ARCHEVEQUE", + "nomCommune": "VILLENEUVE L ARCHEVEQUE" }, { - "codePostal": "43350", - "codeCommune": "43030", - "libelleAcheminement": "BLANZAC", - "nomCommune": "BLANZAC" + "codePostal": "89330", + "codeCommune": "89468", + "libelleAcheminement": "VILLEVALLIER", + "nomCommune": "VILLEVALLIER" }, { - "codePostal": "43160", - "codeCommune": "43035", - "libelleAcheminement": "BONNEVAL", - "nomCommune": "BONNEVAL" + "codePostal": "89160", + "codeCommune": "89481", + "libelleAcheminement": "VIREAUX", + "nomCommune": "VIREAUX" }, { - "codePostal": "43350", - "codeCommune": "43036", - "libelleAcheminement": "BORNE", - "nomCommune": "BORNE" + "codePostal": "89270", + "codeCommune": "89485", + "libelleAcheminement": "VOUTENAY SUR CURE", + "nomCommune": "VOUTENAY SUR CURE" }, { - "codePostal": "43370", - "codeCommune": "43039", - "libelleAcheminement": "LE BRIGNON", - "nomCommune": "LE BRIGNON" + "codePostal": "90170", + "codeCommune": "90003", + "libelleAcheminement": "ANJOUTEY", + "nomCommune": "ANJOUTEY" }, { - "codePostal": "43100", - "codeCommune": "43040", - "libelleAcheminement": "BRIOUDE", - "nomCommune": "BRIOUDE" + "codePostal": "90800", + "codeCommune": "90004", + "libelleAcheminement": "ARGIESANS", + "nomCommune": "ARGIESANS" }, { - "codePostal": "43270", - "codeCommune": "43043", - "libelleAcheminement": "CEAUX D ALLEGRE", - "nomCommune": "CEAUX D ALLEGRE" + "codePostal": "90160", + "codeCommune": "90012", + "libelleAcheminement": "BESSONCOURT", + "nomCommune": "BESSONCOURT" }, { - "codePostal": "43770", - "codeCommune": "43046", - "libelleAcheminement": "CHADRAC", - "nomCommune": "CHADRAC" + "codePostal": "90150", + "codeCommune": "90013", + "libelleAcheminement": "BETHONVILLIERS", + "nomCommune": "BETHONVILLIERS" }, { - "codePostal": "43410", - "codeCommune": "43050", - "libelleAcheminement": "CHAMBEZON", - "nomCommune": "CHAMBEZON" + "codePostal": "90140", + "codeCommune": "90017", + "libelleAcheminement": "BOUROGNE", + "nomCommune": "BOUROGNE" }, { - "codePostal": "43440", - "codeCommune": "43052", - "libelleAcheminement": "CHAMPAGNAC LE VIEUX", - "nomCommune": "CHAMPAGNAC LE VIEUX" + "codePostal": "90330", + "codeCommune": "90023", + "libelleAcheminement": "CHAUX", + "nomCommune": "CHAUX" }, { - "codePostal": "43270", - "codeCommune": "43057", - "libelleAcheminement": "LA CHAPELLE BERTIN", - "nomCommune": "LA CHAPELLE BERTIN" + "codePostal": "90100", + "codeCommune": "90025", + "libelleAcheminement": "CHAVANNES LES GRANDS", + "nomCommune": "CHAVANNES LES GRANDS" }, { - "codePostal": "43320", - "codeCommune": "43062", - "libelleAcheminement": "CHASPUZAC", - "nomCommune": "CHASPUZAC" + "codePostal": "90150", + "codeCommune": "90036", + "libelleAcheminement": "EGUENIGUE", + "nomCommune": "EGUENIGUE" }, { - "codePostal": "43440", - "codeCommune": "43064", - "libelleAcheminement": "CHASSIGNOLLES", - "nomCommune": "CHASSIGNOLLES" + "codePostal": "90150", + "codeCommune": "90050", + "libelleAcheminement": "FRAIS", + "nomCommune": "FRAIS" }, { - "codePostal": "43430", - "codeCommune": "43066", - "libelleAcheminement": "CHAUDEYROLLES", - "nomCommune": "CHAUDEYROLLES" + "codePostal": "90200", + "codeCommune": "90054", + "libelleAcheminement": "GROSMAGNY", + "nomCommune": "GROSMAGNY" }, { - "codePostal": "43500", - "codeCommune": "43071", - "libelleAcheminement": "CHOMELIX", - "nomCommune": "CHOMELIX" + "codePostal": "90100", + "codeCommune": "90064", + "libelleAcheminement": "LEPUIX NEUF", + "nomCommune": "LEPUIX NEUF" }, { - "codePostal": "43100", - "codeCommune": "43074", - "libelleAcheminement": "COHADE", - "nomCommune": "COHADE" + "codePostal": "90120", + "codeCommune": "90069", + "libelleAcheminement": "MEZIRE", + "nomCommune": "MEZIRE" }, { - "codePostal": "43300", - "codeCommune": "43082", - "libelleAcheminement": "CRONCE", - "nomCommune": "CRONCE" + "codePostal": "90140", + "codeCommune": "90083", + "libelleAcheminement": "RECOUVRANCE", + "nomCommune": "RECOUVRANCE" }, { - "codePostal": "43370", - "codeCommune": "43084", - "libelleAcheminement": "CUSSAC SUR LOIRE", - "nomCommune": "CUSSAC SUR LOIRE" + "codePostal": "90150", + "codeCommune": "90084", + "libelleAcheminement": "REPPE", + "nomCommune": "REPPE" }, { - "codePostal": "43300", - "codeCommune": "43085", - "libelleAcheminement": "DESGES", - "nomCommune": "DESGES" + "codePostal": "90400", + "codeCommune": "90104", + "libelleAcheminement": "VEZELOIS", + "nomCommune": "VEZELOIS" }, { - "codePostal": "43170", - "codeCommune": "43090", - "libelleAcheminement": "ESPLANTAS VAZEILLES", - "nomCommune": "ESPLANTAS VAZEILLES" + "codePostal": "91150", + "codeCommune": "91001", + "libelleAcheminement": "ABBEVILLE LA RIVIERE", + "nomCommune": "ABBEVILLE LA RIVIERE" }, { - "codePostal": "43320", - "codeCommune": "43095", - "libelleAcheminement": "FIX ST GENEYS", - "nomCommune": "FIX ST GENEYS" + "codePostal": "91200", + "codeCommune": "91027", + "libelleAcheminement": "ATHIS MONS", + "nomCommune": "ATHIS MONS" }, { - "codePostal": "43800", - "codeCommune": "43119", - "libelleAcheminement": "LAVOUTE SUR LOIRE", - "nomCommune": "LAVOUTE SUR LOIRE" + "codePostal": "91850", + "codeCommune": "91095", + "libelleAcheminement": "BOURAY SUR JUINE", + "nomCommune": "BOURAY SUR JUINE" }, { - "codePostal": "43320", - "codeCommune": "43124", - "libelleAcheminement": "LOUDES", - "nomCommune": "LOUDES" + "codePostal": "91150", + "codeCommune": "91098", + "libelleAcheminement": "BOUTERVILLIERS", + "nomCommune": "BOUTERVILLIERS" }, { - "codePostal": "43300", - "codeCommune": "43132", - "libelleAcheminement": "MAZEYRAT D ALLIER", - "nomCommune": "MAZEYRAT D ALLIER" + "codePostal": "91650", + "codeCommune": "91106", + "libelleAcheminement": "BREUX JOUY", + "nomCommune": "BREUX JOUY" }, { - "codePostal": "43150", - "codeCommune": "43135", - "libelleAcheminement": "LE MONASTIER SUR GAZEILLE", - "nomCommune": "LE MONASTIER SUR GAZEILLE" + "codePostal": "91720", + "codeCommune": "91121", + "libelleAcheminement": "BUNO BONNEVAUX", + "nomCommune": "BUNO BONNEVAUX" }, { - "codePostal": "43700", - "codeCommune": "43140", - "libelleAcheminement": "LE MONTEIL", - "nomCommune": "LE MONTEIL" + "codePostal": "91440", + "codeCommune": "91122", + "libelleAcheminement": "BURES SUR YVETTE", + "nomCommune": "BURES SUR YVETTE" }, { - "codePostal": "43150", - "codeCommune": "43144", - "libelleAcheminement": "MOUDEYRES", - "nomCommune": "MOUDEYRES" + "codePostal": "91780", + "codeCommune": "91130", + "libelleAcheminement": "CHALO ST MARS", + "nomCommune": "CHALO ST MARS" }, { - "codePostal": "43000", - "codeCommune": "43152", - "libelleAcheminement": "POLIGNAC", - "nomCommune": "POLIGNAC" + "codePostal": "91100", + "codeCommune": "91174", + "libelleAcheminement": "CORBEIL ESSONNES", + "nomCommune": "CORBEIL ESSONNES" }, { - "codePostal": "43810", - "codeCommune": "43164", - "libelleAcheminement": "ROCHE EN REGNIER", - "nomCommune": "ROCHE EN REGNIER" + "codePostal": "91410", + "codeCommune": "91175", + "libelleAcheminement": "CORBREUSE", + "nomCommune": "CORBREUSE" }, { - "codePostal": "43130", - "codeCommune": "43166", - "libelleAcheminement": "ST ANDRE DE CHALENCON", - "nomCommune": "ST ANDRE DE CHALENCON" + "codePostal": "91410", + "codeCommune": "91200", + "libelleAcheminement": "DOURDAN", + "nomCommune": "DOURDAN" }, { - "codePostal": "43300", - "codeCommune": "43171", - "libelleAcheminement": "ST BERAIN", - "nomCommune": "ST BERAIN" + "codePostal": "91520", + "codeCommune": "91207", + "libelleAcheminement": "EGLY", + "nomCommune": "EGLY" }, { - "codePostal": "43370", - "codeCommune": "43174", - "libelleAcheminement": "ST CHRISTOPHE SUR DOLAISON", - "nomCommune": "ST CHRISTOPHE SUR DOLAISON" + "codePostal": "91700", + "codeCommune": "91235", + "libelleAcheminement": "FLEURY MEROGIS", + "nomCommune": "FLEURY MEROGIS" }, { - "codePostal": "43360", - "codeCommune": "43191", - "libelleAcheminement": "ST GERON", - "nomCommune": "ST GERON" + "codePostal": "91690", + "codeCommune": "91240", + "libelleAcheminement": "FONTAINE LA RIVIERE", + "nomCommune": "FONTAINE LA RIVIERE" }, { - "codePostal": "43300", - "codeCommune": "43202", - "libelleAcheminement": "ST JULIEN DES CHAZES", - "nomCommune": "ST JULIEN DES CHAZES" + "codePostal": "91720", + "codeCommune": "91273", + "libelleAcheminement": "GIRONVILLE SUR ESSONNE", + "nomCommune": "GIRONVILLE SUR ESSONNE" }, { - "codePostal": "43240", - "codeCommune": "43205", - "libelleAcheminement": "ST JUST MALMONT", - "nomCommune": "ST JUST MALMONT" + "codePostal": "91410", + "codeCommune": "91284", + "libelleAcheminement": "LES GRANGES LE ROI", + "nomCommune": "LES GRANGES LE ROI" }, { - "codePostal": "43150", - "codeCommune": "43210", - "libelleAcheminement": "ST MARTIN DE FUGERES", - "nomCommune": "ST MARTIN DE FUGERES" + "codePostal": "91430", + "codeCommune": "91312", + "libelleAcheminement": "IGNY", + "nomCommune": "IGNY" }, { - "codePostal": "43200", - "codeCommune": "43211", - "libelleAcheminement": "ST MAURICE DE LIGNON", - "nomCommune": "ST MAURICE DE LIGNON" + "codePostal": "91260", + "codeCommune": "91326", + "libelleAcheminement": "JUVISY SUR ORGE", + "nomCommune": "JUVISY SUR ORGE" }, { - "codePostal": "43160", - "codeCommune": "43214", - "libelleAcheminement": "ST PAL DE SENOUIRE", - "nomCommune": "ST PAL DE SENOUIRE" + "codePostal": "91510", + "codeCommune": "91330", + "libelleAcheminement": "LARDY", + "nomCommune": "LARDY" }, { - "codePostal": "43260", - "codeCommune": "43218", - "libelleAcheminement": "ST PIERRE EYNAC", - "nomCommune": "ST PIERRE EYNAC" + "codePostal": "91630", + "codeCommune": "91332", + "libelleAcheminement": "LEUDEVILLE", + "nomCommune": "LEUDEVILLE" }, { - "codePostal": "43580", - "codeCommune": "43221", - "libelleAcheminement": "ST PRIVAT D ALLIER", - "nomCommune": "ST PRIVAT D ALLIER" + "codePostal": "91460", + "codeCommune": "91363", + "libelleAcheminement": "MARCOUSSIS", + "nomCommune": "MARCOUSSIS" }, { - "codePostal": "43230", - "codeCommune": "43232", - "libelleAcheminement": "SALZUIT", - "nomCommune": "SALZUIT" + "codePostal": "91730", + "codeCommune": "91378", + "libelleAcheminement": "MAUCHAMPS", + "nomCommune": "MAUCHAMPS" }, { - "codePostal": "43580", - "codeCommune": "43245", - "libelleAcheminement": "THORAS", - "nomCommune": "THORAS" + "codePostal": "91470", + "codeCommune": "91411", + "libelleAcheminement": "LES MOLIERES", + "nomCommune": "LES MOLIERES" }, { - "codePostal": "43530", - "codeCommune": "43246", - "libelleAcheminement": "TIRANGES", - "nomCommune": "TIRANGES" + "codePostal": "91230", + "codeCommune": "91421", + "libelleAcheminement": "MONTGERON", + "nomCommune": "MONTGERON" }, { - "codePostal": "43320", - "codeCommune": "43257", - "libelleAcheminement": "VERGEZAC", - "nomCommune": "VERGEZAC" + "codePostal": "91420", + "codeCommune": "91432", + "libelleAcheminement": "MORANGIS", + "nomCommune": "MORANGIS" }, { - "codePostal": "43270", - "codeCommune": "43259", - "libelleAcheminement": "VERNASSAL", - "nomCommune": "VERNASSAL" + "codePostal": "91290", + "codeCommune": "91457", + "libelleAcheminement": "LA NORVILLE", + "nomCommune": "LA NORVILLE" }, { - "codePostal": "44140", - "codeCommune": "44002", - "libelleAcheminement": "AIGREFEUILLE SUR MAINE", - "nomCommune": "AIGREFEUILLE SUR MAINE" + "codePostal": "91620", + "codeCommune": "91458", + "libelleAcheminement": "NOZAY", + "nomCommune": "NOZAY" }, { - "codePostal": "44150", - "codeCommune": "44003", - "libelleAcheminement": "ANCENIS ST GEREON", - "nomCommune": "ANCENIS ST GEREON" + "codePostal": "91490", + "codeCommune": "91463", + "libelleAcheminement": "ONCY SUR ECOLE", + "nomCommune": "ONCY SUR ECOLE" }, { - "codePostal": "44320", - "codeCommune": "44005", - "libelleAcheminement": "CHAUMES EN RETZ", - "nomCommune": "CHAUMES EN RETZ" + "codePostal": "91410", + "codeCommune": "91495", + "libelleAcheminement": "PLESSIS ST BENOIST", + "nomCommune": "PLESSIS ST BENOIST" }, { - "codePostal": "44410", - "codeCommune": "44006", - "libelleAcheminement": "ASSERAC", - "nomCommune": "ASSERAC" + "codePostal": "91130", + "codeCommune": "91521", + "libelleAcheminement": "RIS ORANGIS", + "nomCommune": "RIS ORANGIS" }, { - "codePostal": "44115", - "codeCommune": "44009", - "libelleAcheminement": "BASSE GOULAINE", - "nomCommune": "BASSE GOULAINE" + "codePostal": "91410", + "codeCommune": "91525", + "libelleAcheminement": "ROINVILLE", + "nomCommune": "ROINVILLE" }, { - "codePostal": "44760", - "codeCommune": "44012", - "libelleAcheminement": "LA BERNERIE EN RETZ", - "nomCommune": "LA BERNERIE EN RETZ" + "codePostal": "91190", + "codeCommune": "91538", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "44130", - "codeCommune": "44015", - "libelleAcheminement": "BLAIN", - "nomCommune": "BLAIN" + "codePostal": "91250", + "codeCommune": "91577", + "libelleAcheminement": "SAINTRY SUR SEINE", + "nomCommune": "SAINTRY SUR SEINE" }, { - "codePostal": "44340", - "codeCommune": "44020", - "libelleAcheminement": "BOUGUENAIS", - "nomCommune": "BOUGUENAIS" + "codePostal": "91160", + "codeCommune": "91587", + "libelleAcheminement": "SAULX LES CHARTREUX", + "nomCommune": "SAULX LES CHARTREUX" }, { - "codePostal": "44190", - "codeCommune": "44022", - "libelleAcheminement": "BOUSSAY", - "nomCommune": "BOUSSAY" + "codePostal": "91730", + "codeCommune": "91619", + "libelleAcheminement": "TORFOU", + "nomCommune": "TORFOU" }, { - "codePostal": "44130", - "codeCommune": "44023", - "libelleAcheminement": "BOUVRON", - "nomCommune": "BOUVRON" + "codePostal": "91530", + "codeCommune": "91630", + "libelleAcheminement": "LE VAL ST GERMAIN", + "nomCommune": "LE VAL ST GERMAIN" }, { - "codePostal": "44450", - "codeCommune": "44029", - "libelleAcheminement": "DIVATTE SUR LOIRE", - "nomCommune": "DIVATTE SUR LOIRE" + "codePostal": "91640", + "codeCommune": "91634", + "libelleAcheminement": "VAUGRIGNEUSE", + "nomCommune": "VAUGRIGNEUSE" }, { - "codePostal": "44330", - "codeCommune": "44032", - "libelleAcheminement": "LA CHAPELLE HEULIN", - "nomCommune": "LA CHAPELLE HEULIN" + "codePostal": "91430", + "codeCommune": "91635", + "libelleAcheminement": "VAUHALLAN", + "nomCommune": "VAUHALLAN" }, { - "codePostal": "44110", - "codeCommune": "44036", - "libelleAcheminement": "CHATEAUBRIANT", - "nomCommune": "CHATEAUBRIANT" + "codePostal": "91580", + "codeCommune": "91662", + "libelleAcheminement": "VILLECONIN", + "nomCommune": "VILLECONIN" }, { - "codePostal": "44118", - "codeCommune": "44041", - "libelleAcheminement": "LA CHEVROLIERE", - "nomCommune": "LA CHEVROLIERE" + "codePostal": "91580", + "codeCommune": "91671", + "libelleAcheminement": "VILLENEUVE SUR AUVERS", + "nomCommune": "VILLENEUVE SUR AUVERS" }, { - "codePostal": "44118", - "codeCommune": "44041", - "libelleAcheminement": "LA CHEVROLIERE", - "nomCommune": "LA CHEVROLIERE" + "codePostal": "91700", + "codeCommune": "91685", + "libelleAcheminement": "VILLIERS SUR ORGE", + "nomCommune": "VILLIERS SUR ORGE" }, { - "codePostal": "44160", - "codeCommune": "44050", - "libelleAcheminement": "CROSSAC", - "nomCommune": "CROSSAC" + "codePostal": "91940", + "codeCommune": "91692", + "libelleAcheminement": "LES ULIS", + "nomCommune": "LES ULIS" }, { - "codePostal": "44660", - "codeCommune": "44058", - "libelleAcheminement": "FERCE", - "nomCommune": "FERCE" + "codePostal": "92220", + "codeCommune": "92007", + "libelleAcheminement": "BAGNEUX", + "nomCommune": "BAGNEUX" }, { - "codePostal": "44320", - "codeCommune": "44061", - "libelleAcheminement": "FROSSAY", - "nomCommune": "FROSSAY" + "codePostal": "92370", + "codeCommune": "92022", + "libelleAcheminement": "CHAVILLE", + "nomCommune": "CHAVILLE" }, { - "codePostal": "44130", - "codeCommune": "44062", - "libelleAcheminement": "LE GAVRE", - "nomCommune": "LE GAVRE" + "codePostal": "92700", + "codeCommune": "92025", + "libelleAcheminement": "COLOMBES", + "nomCommune": "COLOMBES" }, { - "codePostal": "44350", - "codeCommune": "44069", - "libelleAcheminement": "GUERANDE", - "nomCommune": "GUERANDE" + "codePostal": "92240", + "codeCommune": "92046", + "libelleAcheminement": "MALAKOFF", + "nomCommune": "MALAKOFF" }, { - "codePostal": "44350", - "codeCommune": "44069", - "libelleAcheminement": "GUERANDE", - "nomCommune": "GUERANDE" + "codePostal": "92360", + "codeCommune": "92048", + "libelleAcheminement": "MEUDON", + "nomCommune": "MEUDON" }, { - "codePostal": "44115", - "codeCommune": "44071", - "libelleAcheminement": "HAUTE GOULAINE", - "nomCommune": "HAUTE GOULAINE" + "codePostal": "92200", + "codeCommune": "92051", + "libelleAcheminement": "NEUILLY SUR SEINE", + "nomCommune": "NEUILLY SUR SEINE" }, { - "codePostal": "44170", - "codeCommune": "44076", - "libelleAcheminement": "JANS", - "nomCommune": "JANS" + "codePostal": "92350", + "codeCommune": "92060", + "libelleAcheminement": "LE PLESSIS ROBINSON", + "nomCommune": "LE PLESSIS ROBINSON" }, { - "codePostal": "44440", - "codeCommune": "44077", - "libelleAcheminement": "JOUE SUR ERDRE", - "nomCommune": "JOUE SUR ERDRE" + "codePostal": "92500", + "codeCommune": "92063", + "libelleAcheminement": "RUEIL MALMAISON", + "nomCommune": "RUEIL MALMAISON" }, { - "codePostal": "44850", - "codeCommune": "44082", - "libelleAcheminement": "LIGNE", - "nomCommune": "LIGNE" + "codePostal": "92500", + "codeCommune": "92063", + "libelleAcheminement": "RUEIL MALMAISON", + "nomCommune": "RUEIL MALMAISON" }, { - "codePostal": "44290", - "codeCommune": "44092", - "libelleAcheminement": "MASSERAC", - "nomCommune": "MASSERAC" + "codePostal": "93140", + "codeCommune": "93010", + "libelleAcheminement": "BONDY", + "nomCommune": "BONDY" }, { - "codePostal": "44420", - "codeCommune": "44097", - "libelleAcheminement": "MESQUER", - "nomCommune": "MESQUER" + "codePostal": "93350", + "codeCommune": "93013", + "libelleAcheminement": "LE BOURGET", + "nomCommune": "LE BOURGET" }, { - "codePostal": "44550", - "codeCommune": "44103", - "libelleAcheminement": "MONTOIR DE BRETAGNE", - "nomCommune": "MONTOIR DE BRETAGNE" + "codePostal": "93700", + "codeCommune": "93029", + "libelleAcheminement": "DRANCY", + "nomCommune": "DRANCY" }, { - "codePostal": "44390", - "codeCommune": "44110", - "libelleAcheminement": "NORT SUR ERDRE", - "nomCommune": "NORT SUR ERDRE" + "codePostal": "93260", + "codeCommune": "93045", + "libelleAcheminement": "LES LILAS", + "nomCommune": "LES LILAS" }, { - "codePostal": "44110", - "codeCommune": "44112", - "libelleAcheminement": "NOYAL SUR BRUTZ", - "nomCommune": "NOYAL SUR BRUTZ" + "codePostal": "93100", + "codeCommune": "93048", + "libelleAcheminement": "MONTREUIL", + "nomCommune": "MONTREUIL" }, { - "codePostal": "44521", - "codeCommune": "44115", - "libelleAcheminement": "OUDON", - "nomCommune": "OUDON" + "codePostal": "93160", + "codeCommune": "93051", + "libelleAcheminement": "NOISY LE GRAND", + "nomCommune": "NOISY LE GRAND" }, { - "codePostal": "44440", - "codeCommune": "44118", - "libelleAcheminement": "PANNECE", - "nomCommune": "PANNECE" + "codePostal": "93340", + "codeCommune": "93062", + "libelleAcheminement": "LE RAINCY", + "nomCommune": "LE RAINCY" }, { - "codePostal": "44390", - "codeCommune": "44122", - "libelleAcheminement": "PETIT MARS", - "nomCommune": "PETIT MARS" + "codePostal": "93200", + "codeCommune": "93066", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "44290", - "codeCommune": "44123", - "libelleAcheminement": "PIERRIC", - "nomCommune": "PIERRIC" + "codePostal": "93210", + "codeCommune": "93066", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "44420", - "codeCommune": "44125", - "libelleAcheminement": "PIRIAC SUR MER", - "nomCommune": "PIRIAC SUR MER" + "codePostal": "94360", + "codeCommune": "94015", + "libelleAcheminement": "BRY SUR MARNE", + "nomCommune": "BRY SUR MARNE" }, { - "codePostal": "44630", - "codeCommune": "44128", - "libelleAcheminement": "PLESSE", - "nomCommune": "PLESSE" + "codePostal": "94230", + "codeCommune": "94016", + "libelleAcheminement": "CACHAN", + "nomCommune": "CACHAN" }, { - "codePostal": "44630", - "codeCommune": "44128", - "libelleAcheminement": "PLESSE", - "nomCommune": "PLESSE" + "codePostal": "94430", + "codeCommune": "94019", + "libelleAcheminement": "CHENNEVIERES SUR MARNE", + "nomCommune": "CHENNEVIERES SUR MARNE" }, { - "codePostal": "44210", - "codeCommune": "44131", - "libelleAcheminement": "PORNIC", - "nomCommune": "PORNIC" + "codePostal": "94340", + "codeCommune": "94042", + "libelleAcheminement": "JOINVILLE LE PONT", + "nomCommune": "JOINVILLE LE PONT" }, { - "codePostal": "44380", - "codeCommune": "44132", - "libelleAcheminement": "PORNICHET", - "nomCommune": "PORNICHET" + "codePostal": "94520", + "codeCommune": "94047", + "libelleAcheminement": "MANDRES LES ROSES", + "nomCommune": "MANDRES LES ROSES" }, { - "codePostal": "44710", - "codeCommune": "44133", - "libelleAcheminement": "PORT ST PERE", - "nomCommune": "PORT ST PERE" + "codePostal": "94440", + "codeCommune": "94048", + "libelleAcheminement": "MAROLLES EN BRIE", + "nomCommune": "MAROLLES EN BRIE" }, { - "codePostal": "44522", - "codeCommune": "44134", - "libelleAcheminement": "POUILLE LES COTEAUX", - "nomCommune": "POUILLE LES COTEAUX" + "codePostal": "94170", + "codeCommune": "94058", + "libelleAcheminement": "LE PERREUX SUR MARNE", + "nomCommune": "LE PERREUX SUR MARNE" }, { - "codePostal": "44770", - "codeCommune": "44136", - "libelleAcheminement": "PREFAILLES", - "nomCommune": "PREFAILLES" + "codePostal": "94510", + "codeCommune": "94060", + "libelleAcheminement": "LA QUEUE EN BRIE", + "nomCommune": "LA QUEUE EN BRIE" }, { - "codePostal": "44400", - "codeCommune": "44143", - "libelleAcheminement": "REZE", - "nomCommune": "REZE" + "codePostal": "94370", + "codeCommune": "94071", + "libelleAcheminement": "SUCY EN BRIE", + "nomCommune": "SUCY EN BRIE" }, { - "codePostal": "44400", - "codeCommune": "44143", - "libelleAcheminement": "REZE", - "nomCommune": "REZE" + "codePostal": "95710", + "codeCommune": "95011", + "libelleAcheminement": "AMBLEVILLE", + "nomCommune": "AMBLEVILLE" }, { - "codePostal": "44860", - "codeCommune": "44150", - "libelleAcheminement": "ST AIGNAN GRANDLIEU", - "nomCommune": "ST AIGNAN GRANDLIEU" + "codePostal": "95400", + "codeCommune": "95019", + "libelleAcheminement": "ARNOUVILLE", + "nomCommune": "ARNOUVILLE" }, { - "codePostal": "44250", - "codeCommune": "44154", - "libelleAcheminement": "ST BREVIN LES PINS", - "nomCommune": "ST BREVIN LES PINS" + "codePostal": "95870", + "codeCommune": "95063", + "libelleAcheminement": "BEZONS", + "nomCommune": "BEZONS" }, { - "codePostal": "44650", - "codeCommune": "44156", - "libelleAcheminement": "CORCOUE SUR LOGNE", - "nomCommune": "CORCOUE SUR LOGNE" + "codePostal": "95000", + "codeCommune": "95074", + "libelleAcheminement": "BOISEMONT", + "nomCommune": "BOISEMONT" }, { - "codePostal": "44270", - "codeCommune": "44157", - "libelleAcheminement": "ST ETIENNE DE MER MORTE", - "nomCommune": "ST ETIENNE DE MER MORTE" + "codePostal": "95570", + "codeCommune": "95091", + "libelleAcheminement": "BOUFFEMONT", + "nomCommune": "BOUFFEMONT" }, { - "codePostal": "44360", - "codeCommune": "44158", - "libelleAcheminement": "ST ETIENNE DE MONTLUC", - "nomCommune": "ST ETIENNE DE MONTLUC" + "codePostal": "95770", + "codeCommune": "95119", + "libelleAcheminement": "BUHY", + "nomCommune": "BUHY" }, { - "codePostal": "44150", - "codeCommune": "44163", - "libelleAcheminement": "VAIR SUR LOIRE", - "nomCommune": "VAIR SUR LOIRE" + "codePostal": "95660", + "codeCommune": "95134", + "libelleAcheminement": "CHAMPAGNE SUR OISE", + "nomCommune": "CHAMPAGNE SUR OISE" }, { - "codePostal": "44710", - "codeCommune": "44171", - "libelleAcheminement": "ST LEGER LES VIGNES", - "nomCommune": "ST LEGER LES VIGNES" + "codePostal": "95270", + "codeCommune": "95149", + "libelleAcheminement": "CHAUMONTEL", + "nomCommune": "CHAUMONTEL" }, { - "codePostal": "44730", - "codeCommune": "44182", - "libelleAcheminement": "ST MICHEL CHEF CHEF", - "nomCommune": "ST MICHEL CHEF CHEF" + "codePostal": "95830", + "codeCommune": "95177", + "libelleAcheminement": "CORMEILLES EN VEXIN", + "nomCommune": "CORMEILLES EN VEXIN" }, { - "codePostal": "44730", - "codeCommune": "44182", - "libelleAcheminement": "ST MICHEL CHEF CHEF", - "nomCommune": "ST MICHEL CHEF CHEF" + "codePostal": "95170", + "codeCommune": "95197", + "libelleAcheminement": "DEUIL LA BARRE", + "nomCommune": "DEUIL LA BARRE" }, { - "codePostal": "44160", - "codeCommune": "44189", - "libelleAcheminement": "STE REINE DE BRETAGNE", - "nomCommune": "STE REINE DE BRETAGNE" + "codePostal": "95810", + "codeCommune": "95213", + "libelleAcheminement": "EPIAIS RHUS", + "nomCommune": "EPIAIS RHUS" }, { - "codePostal": "44880", - "codeCommune": "44194", - "libelleAcheminement": "SAUTRON", - "nomCommune": "SAUTRON" + "codePostal": "95190", + "codeCommune": "95241", + "libelleAcheminement": "FONTENAY EN PARISIS", + "nomCommune": "FONTENAY EN PARISIS" }, { - "codePostal": "44440", - "codeCommune": "44202", - "libelleAcheminement": "TEILLE", - "nomCommune": "TEILLE" + "codePostal": "95470", + "codeCommune": "95250", + "libelleAcheminement": "FOSSES", + "nomCommune": "FOSSES" }, { - "codePostal": "44360", - "codeCommune": "44203", - "libelleAcheminement": "LE TEMPLE DE BRETAGNE", - "nomCommune": "LE TEMPLE DE BRETAGNE" + "codePostal": "95130", + "codeCommune": "95252", + "libelleAcheminement": "FRANCONVILLE LA GARENNE", + "nomCommune": "FRANCONVILLE" }, { - "codePostal": "44170", - "codeCommune": "44208", - "libelleAcheminement": "TREFFIEUX", - "nomCommune": "TREFFIEUX" + "codePostal": "95420", + "codeCommune": "95270", + "libelleAcheminement": "GENAINVILLE", + "nomCommune": "GENAINVILLE" }, { - "codePostal": "44119", - "codeCommune": "44209", - "libelleAcheminement": "TREILLIERES", - "nomCommune": "TREILLIERES" + "codePostal": "95280", + "codeCommune": "95323", + "libelleAcheminement": "JOUY LE MOUTIER", + "nomCommune": "JOUY LE MOUTIER" }, { - "codePostal": "44420", - "codeCommune": "44211", - "libelleAcheminement": "LA TURBALLE", - "nomCommune": "LA TURBALLE" + "codePostal": "95450", + "codeCommune": "95348", + "libelleAcheminement": "LONGUESSE", + "nomCommune": "LONGUESSE" }, { - "codePostal": "44330", - "codeCommune": "44212", - "libelleAcheminement": "VALLET", - "nomCommune": "VALLET" + "codePostal": "95420", + "codeCommune": "95355", + "libelleAcheminement": "MAGNY EN VEXIN", + "nomCommune": "MAGNY EN VEXIN" }, { - "codePostal": "44116", - "codeCommune": "44216", - "libelleAcheminement": "VIEILLEVIGNE", - "nomCommune": "VIEILLEVIGNE" + "codePostal": "95560", + "codeCommune": "95430", + "libelleAcheminement": "MONTSOULT", + "nomCommune": "MONTSOULT" }, { - "codePostal": "44140", - "codeCommune": "44223", - "libelleAcheminement": "GENESTON", - "nomCommune": "GENESTON" + "codePostal": "95640", + "codeCommune": "95447", + "libelleAcheminement": "NEUILLY EN VEXIN", + "nomCommune": "NEUILLY EN VEXIN" }, { - "codePostal": "44170", - "codeCommune": "44224", - "libelleAcheminement": "LA GRIGONNAIS", - "nomCommune": "LA GRIGONNAIS" + "codePostal": "95270", + "codeCommune": "95456", + "libelleAcheminement": "NOISY SUR OISE", + "nomCommune": "NOISY SUR OISE" }, { - "codePostal": "45160", - "codeCommune": "45006", - "libelleAcheminement": "ARDON", - "nomCommune": "ARDON" + "codePostal": "95520", + "codeCommune": "95476", + "libelleAcheminement": "OSNY", + "nomCommune": "OSNY" }, { - "codePostal": "45410", - "codeCommune": "45008", - "libelleAcheminement": "ARTENAY", - "nomCommune": "ARTENAY" + "codePostal": "95620", + "codeCommune": "95480", + "libelleAcheminement": "PARMAIN", + "nomCommune": "PARMAIN" }, { - "codePostal": "45390", - "codeCommune": "45014", - "libelleAcheminement": "AULNAY LA RIVIERE", - "nomCommune": "AULNAY LA RIVIERE" + "codePostal": "95350", + "codeCommune": "95489", + "libelleAcheminement": "PISCOP", + "nomCommune": "PISCOP" }, { - "codePostal": "45130", - "codeCommune": "45020", - "libelleAcheminement": "LE BARDON", - "nomCommune": "LE BARDON" + "codePostal": "95720", + "codeCommune": "95492", + "libelleAcheminement": "LE PLESSIS GASSOT", + "nomCommune": "LE PLESSIS GASSOT" }, { - "codePostal": "45480", - "codeCommune": "45025", - "libelleAcheminement": "BAZOCHES LES GALLERANDES", - "nomCommune": "BAZOCHES LES GALLERANDES" + "codePostal": "95590", + "codeCommune": "95504", + "libelleAcheminement": "PRESLES", + "nomCommune": "PRESLES" }, { - "codePostal": "45480", - "codeCommune": "45025", - "libelleAcheminement": "BAZOCHES LES GALLERANDES", - "nomCommune": "BAZOCHES LES GALLERANDES" + "codePostal": "95340", + "codeCommune": "95529", + "libelleAcheminement": "RONQUEROLLES", + "nomCommune": "RONQUEROLLES" }, { - "codePostal": "45210", - "codeCommune": "45026", - "libelleAcheminement": "BAZOCHES SUR LE BETZ", - "nomCommune": "BAZOCHES SUR LE BETZ" + "codePostal": "95390", + "codeCommune": "95574", + "libelleAcheminement": "ST PRIX", + "nomCommune": "ST PRIX" }, { - "codePostal": "45630", - "codeCommune": "45029", - "libelleAcheminement": "BEAULIEU SUR LOIRE", - "nomCommune": "BEAULIEU SUR LOIRE" + "codePostal": "95270", + "codeCommune": "95594", + "libelleAcheminement": "SEUGY", + "nomCommune": "SEUGY" }, { - "codePostal": "45210", - "codeCommune": "45032", - "libelleAcheminement": "LE BIGNON MIRABEAU", - "nomCommune": "LE BIGNON MIRABEAU" + "codePostal": "95230", + "codeCommune": "95598", + "libelleAcheminement": "SOISY SOUS MONTMORENCY", + "nomCommune": "SOISY SOUS MONTMORENCY" }, { - "codePostal": "45290", - "codeCommune": "45036", - "libelleAcheminement": "BOISMORAND", - "nomCommune": "BOISMORAND" + "codePostal": "95810", + "codeCommune": "95627", + "libelleAcheminement": "VALLANGOUJARD", + "nomCommune": "VALLANGOUJARD" }, { - "codePostal": "45140", - "codeCommune": "45046", - "libelleAcheminement": "BOULAY LES BARRES", - "nomCommune": "BOULAY LES BARRES" + "codePostal": "95470", + "codeCommune": "95641", + "libelleAcheminement": "VEMARS", + "nomCommune": "VEMARS" }, { - "codePostal": "45250", - "codeCommune": "45052", - "libelleAcheminement": "BRETEAU", - "nomCommune": "BRETEAU" + "codePostal": "95510", + "codeCommune": "95656", + "libelleAcheminement": "VIENNE EN ARTHIES", + "nomCommune": "VIENNE EN ARTHIES" }, { - "codePostal": "45410", - "codeCommune": "45058", - "libelleAcheminement": "BUCY LE ROI", - "nomCommune": "BUCY LE ROI" + "codePostal": "95510", + "codeCommune": "95676", + "libelleAcheminement": "VILLERS EN ARTHIES", + "nomCommune": "VILLERS EN ARTHIES" }, { - "codePostal": "45140", - "codeCommune": "45059", - "libelleAcheminement": "BUCY ST LIPHARD", - "nomCommune": "BUCY ST LIPHARD" + "codePostal": "95420", + "codeCommune": "95690", + "libelleAcheminement": "WY DIT JOLI VILLAGE", + "nomCommune": "WY DIT JOLI VILLAGE" }, { - "codePostal": "45380", - "codeCommune": "45075", - "libelleAcheminement": "LA CHAPELLE ST MESMIN", - "nomCommune": "LA CHAPELLE ST MESMIN" + "codePostal": "97121", + "codeCommune": "97102", + "libelleAcheminement": "ANSE BERTRAND", + "nomCommune": "ANSE BERTRAND" }, { - "codePostal": "45220", - "codeCommune": "45083", - "libelleAcheminement": "CHATEAU RENARD", - "nomCommune": "CHATEAU RENARD" + "codePostal": "97122", + "codeCommune": "97103", + "libelleAcheminement": "BAIE MAHAULT", + "nomCommune": "BAIE MAHAULT" }, { - "codePostal": "45230", - "codeCommune": "45085", - "libelleAcheminement": "CHATILLON COLIGNY", - "nomCommune": "CHATILLON COLIGNY" + "codePostal": "97125", + "codeCommune": "97106", + "libelleAcheminement": "BOUILLANTE", + "nomCommune": "BOUILLANTE" }, { - "codePostal": "45480", - "codeCommune": "45086", - "libelleAcheminement": "CHATILLON LE ROI", - "nomCommune": "CHATILLON LE ROI" + "codePostal": "97140", + "codeCommune": "97108", + "libelleAcheminement": "CAPESTERRE DE MARIE GALANTE", + "nomCommune": "CAPESTERRE DE MARIE GALANTE" }, { - "codePostal": "45520", - "codeCommune": "45093", - "libelleAcheminement": "CHEVILLY", - "nomCommune": "CHEVILLY" + "codePostal": "97112", + "codeCommune": "97112", + "libelleAcheminement": "GRAND BOURG", + "nomCommune": "GRAND BOURG" }, { - "codePostal": "45120", - "codeCommune": "45104", - "libelleAcheminement": "CORQUILLEROY", - "nomCommune": "CORQUILLEROY" + "codePostal": "97190", + "codeCommune": "97113", + "libelleAcheminement": "LE GOSIER", + "nomCommune": "LE GOSIER" }, { - "codePostal": "45260", - "codeCommune": "45107", - "libelleAcheminement": "COUDROY", - "nomCommune": "COUDROY" + "codePostal": "97111", + "codeCommune": "97116", + "libelleAcheminement": "MORNE A L EAU", + "nomCommune": "MORNE A L EAU" }, { - "codePostal": "45260", - "codeCommune": "45112", - "libelleAcheminement": "LA COUR MARIGNY", - "nomCommune": "LA COUR MARIGNY" + "codePostal": "97120", + "codeCommune": "97124", + "libelleAcheminement": "ST CLAUDE", + "nomCommune": "ST CLAUDE" }, { - "codePostal": "45130", - "codeCommune": "45134", - "libelleAcheminement": "EPIEDS EN BEAUCE", - "nomCommune": "EPIEDS EN BEAUCE" + "codePostal": "97222", + "codeCommune": "97205", + "libelleAcheminement": "CASE PILOTE", + "nomCommune": "CASE PILOTE" }, { - "codePostal": "45420", - "codeCommune": "45141", - "libelleAcheminement": "FAVERELLES", - "nomCommune": "FAVERELLES" + "codePostal": "97250", + "codeCommune": "97208", + "libelleAcheminement": "FONDS ST DENIS", + "nomCommune": "FONDS ST DENIS" }, { - "codePostal": "45400", - "codeCommune": "45147", - "libelleAcheminement": "FLEURY LES AUBRAIS", - "nomCommune": "FLEURY LES AUBRAIS" + "codePostal": "97240", + "codeCommune": "97210", + "libelleAcheminement": "LE FRANCOIS", + "nomCommune": "LE FRANCOIS" }, { - "codePostal": "45210", - "codeCommune": "45148", - "libelleAcheminement": "FONTENAY SUR LOING", - "nomCommune": "FONTENAY SUR LOING" + "codePostal": "97218", + "codeCommune": "97211", + "libelleAcheminement": "GRAND RIVIERE", + "nomCommune": "GRAND RIVIERE" }, { - "codePostal": "45500", - "codeCommune": "45155", - "libelleAcheminement": "GIEN", - "nomCommune": "GIEN" + "codePostal": "97225", + "codeCommune": "97216", + "libelleAcheminement": "LE MARIGOT", + "nomCommune": "LE MARIGOT" }, { - "codePostal": "45120", - "codeCommune": "45156", - "libelleAcheminement": "GIROLLES", - "nomCommune": "GIROLLES" + "codePostal": "97215", + "codeCommune": "97221", + "libelleAcheminement": "RIVIERE SALEE", + "nomCommune": "RIVIERE SALEE" }, { - "codePostal": "45480", - "codeCommune": "45160", - "libelleAcheminement": "GRENEVILLE EN BEAUCE", - "nomCommune": "GRENEVILLE EN BEAUCE" + "codePostal": "97270", + "codeCommune": "97223", + "libelleAcheminement": "ST ESPRIT", + "nomCommune": "ST ESPRIT" }, { - "codePostal": "45210", - "codeCommune": "45161", - "libelleAcheminement": "GRISELLES", - "nomCommune": "GRISELLES" + "codePostal": "97228", + "codeCommune": "97227", + "libelleAcheminement": "STE LUCE", + "nomCommune": "STE LUCE" }, { - "codePostal": "45300", - "codeCommune": "45162", - "libelleAcheminement": "GUIGNEVILLE", - "nomCommune": "GUIGNEVILLE" + "codePostal": "97353", + "codeCommune": "97301", + "libelleAcheminement": "REGINA", + "nomCommune": "REGINA" }, { - "codePostal": "45220", - "codeCommune": "45165", - "libelleAcheminement": "GY LES NONAINS", - "nomCommune": "GY LES NONAINS" + "codePostal": "97300", + "codeCommune": "97302", + "libelleAcheminement": "CAYENNE", + "nomCommune": "CAYENNE" }, { - "codePostal": "45520", - "codeCommune": "45166", - "libelleAcheminement": "HUETRE", - "nomCommune": "HUETRE" + "codePostal": "97351", + "codeCommune": "97307", + "libelleAcheminement": "MATOURY", + "nomCommune": "MATOURY" }, { - "codePostal": "45130", - "codeCommune": "45167", - "libelleAcheminement": "HUISSEAU SUR MAUVES", - "nomCommune": "HUISSEAU SUR MAUVES" + "codePostal": "97313", + "codeCommune": "97308", + "libelleAcheminement": "ST GEORGES", + "nomCommune": "ST GEORGES" }, { - "codePostal": "45450", - "codeCommune": "45168", - "libelleAcheminement": "INGRANNES", - "nomCommune": "INGRANNES" + "codePostal": "97470", + "codeCommune": "97410", + "libelleAcheminement": "ST BENOIT", + "nomCommune": "ST BENOIT" }, { - "codePostal": "45340", - "codeCommune": "45176", - "libelleAcheminement": "JURANVILLE", - "nomCommune": "JURANVILLE" + "codePostal": "97470", + "codeCommune": "97410", + "libelleAcheminement": "ST BENOIT", + "nomCommune": "ST BENOIT" }, { - "codePostal": "45410", - "codeCommune": "45183", - "libelleAcheminement": "LION EN BEAUCE", - "nomCommune": "LION EN BEAUCE" + "codePostal": "97400", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "45330", - "codeCommune": "45191", - "libelleAcheminement": "LE MALESHERBOIS", - "nomCommune": "LE MALESHERBOIS" + "codePostal": "97417", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "45240", - "codeCommune": "45193", - "libelleAcheminement": "MARCILLY EN VILLETTE", - "nomCommune": "MARCILLY EN VILLETTE" + "codePostal": "97490", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "45300", - "codeCommune": "45195", - "libelleAcheminement": "MAREAU AUX BOIS", - "nomCommune": "MAREAU AUX BOIS" + "codePostal": "97490", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "45130", - "codeCommune": "45203", - "libelleAcheminement": "MEUNG SUR LOIRE", - "nomCommune": "MEUNG SUR LOIRE" + "codePostal": "97490", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "45340", - "codeCommune": "45209", - "libelleAcheminement": "MONTBARROIS", - "nomCommune": "MONTBARROIS" + "codePostal": "97480", + "codeCommune": "97412", + "libelleAcheminement": "ST JOSEPH", + "nomCommune": "ST JOSEPH" }, { - "codePostal": "45260", - "codeCommune": "45213", - "libelleAcheminement": "MONTEREAU", - "nomCommune": "MONTEREAU" + "codePostal": "97450", + "codeCommune": "97414", + "libelleAcheminement": "ST LOUIS", + "nomCommune": "ST LOUIS" }, { - "codePostal": "45340", - "codeCommune": "45220", - "libelleAcheminement": "NANCRAY SUR RIMARDE", - "nomCommune": "NANCRAY SUR RIMARDE" + "codePostal": "97434", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "45500", - "codeCommune": "45227", - "libelleAcheminement": "NEVOY", - "nomCommune": "NEVOY" + "codePostal": "97435", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "45260", - "codeCommune": "45230", - "libelleAcheminement": "NOYERS", - "nomCommune": "NOYERS" + "codePostal": "97410", + "codeCommune": "97416", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "45390", - "codeCommune": "45233", - "libelleAcheminement": "ONDREVILLE SUR ESSONNE", - "nomCommune": "ONDREVILLE SUR ESSONNE" + "codePostal": "97410", + "codeCommune": "97416", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "45390", - "codeCommune": "45237", - "libelleAcheminement": "ORVILLE", - "nomCommune": "ORVILLE" + "codePostal": "97410", + "codeCommune": "97416", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "45290", - "codeCommune": "45242", - "libelleAcheminement": "OUZOUER DES CHAMPS", - "nomCommune": "OUZOUER DES CHAMPS" + "codePostal": "97442", + "codeCommune": "97417", + "libelleAcheminement": "ST PHILIPPE", + "nomCommune": "ST PHILIPPE" }, { - "codePostal": "45270", - "codeCommune": "45243", - "libelleAcheminement": "OUZOUER SOUS BELLEGARDE", - "nomCommune": "OUZOUER SOUS BELLEGARDE" + "codePostal": "97442", + "codeCommune": "97417", + "libelleAcheminement": "ST PHILIPPE", + "nomCommune": "ST PHILIPPE" }, { - "codePostal": "45300", - "codeCommune": "45252", - "libelleAcheminement": "PITHIVIERS", - "nomCommune": "PITHIVIERS" + "codePostal": "97438", + "codeCommune": "97418", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "45300", - "codeCommune": "45253", - "libelleAcheminement": "PITHIVIERS LE VIEIL", - "nomCommune": "PITHIVIERS LE VIEIL" + "codePostal": "97426", + "codeCommune": "97423", + "libelleAcheminement": "LES TROIS BASSINS", + "nomCommune": "LES TROIS BASSINS" }, { - "codePostal": "45500", - "codeCommune": "45254", - "libelleAcheminement": "POILLY LEZ GIEN", - "nomCommune": "POILLY LEZ GIEN" + "codePostal": "97413", + "codeCommune": "97424", + "libelleAcheminement": "CILAOS", + "nomCommune": "CILAOS" }, { - "codePostal": "45490", - "codeCommune": "45255", - "libelleAcheminement": "PREFONTAINES", - "nomCommune": "PREFONTAINES" + "codePostal": "97500", + "codeCommune": "97501", + "libelleAcheminement": "ST PIERRE ET MIQUELON", + "nomCommune": "MIQUELON LANGLADE" }, { - "codePostal": "45410", - "codeCommune": "45266", - "libelleAcheminement": "RUAN", - "nomCommune": "RUAN" + "codePostal": "97630", + "codeCommune": "97601", + "libelleAcheminement": "ACOUA", + "nomCommune": "ACOUA" }, { - "codePostal": "45130", - "codeCommune": "45269", - "libelleAcheminement": "ST AY", - "nomCommune": "ST AY" + "codePostal": "97660", + "codeCommune": "97607", + "libelleAcheminement": "DEMBENI", + "nomCommune": "DEMBENI" }, { - "codePostal": "45230", - "codeCommune": "45278", - "libelleAcheminement": "STE GENEVIEVE DES BOIS", - "nomCommune": "STE GENEVIEVE DES BOIS" + "codePostal": "97615", + "codeCommune": "97608", + "libelleAcheminement": "DZAOUDZI", + "nomCommune": "DZAOUDZI" }, { - "codePostal": "45220", - "codeCommune": "45279", - "libelleAcheminement": "ST GERMAIN DES PRES", - "nomCommune": "ST GERMAIN DES PRES" + "codePostal": "97600", + "codeCommune": "97610", + "libelleAcheminement": "KOUNGOU", + "nomCommune": "KOUNGOU" }, { - "codePostal": "45320", - "codeCommune": "45281", - "libelleAcheminement": "ST HILAIRE LES ANDRESIS", - "nomCommune": "ST HILAIRE LES ANDRESIS" + "codePostal": "97600", + "codeCommune": "97611", + "libelleAcheminement": "MAMOUDZOU", + "nomCommune": "MAMOUDZOU" }, { - "codePostal": "45770", - "codeCommune": "45302", - "libelleAcheminement": "SARAN", - "nomCommune": "SARAN" + "codePostal": "97680", + "codeCommune": "97617", + "libelleAcheminement": "TSINGONI", + "nomCommune": "TSINGONI" }, { - "codePostal": "45530", - "codeCommune": "45305", - "libelleAcheminement": "SEICHEBRIERES", - "nomCommune": "SEICHEBRIERES" + "codePostal": "98600", + "codeCommune": "98613", + "libelleAcheminement": "UVEA", + "nomCommune": "UVEA" }, { - "codePostal": "45210", - "codeCommune": "45306", - "libelleAcheminement": "LA SELLE EN HERMOY", - "nomCommune": "LA SELLE EN HERMOY" + "codePostal": "98760", + "codeCommune": "98711", + "libelleAcheminement": "TUUHORA", + "nomCommune": "ANAA" }, { - "codePostal": "45210", - "codeCommune": "45307", - "libelleAcheminement": "LA SELLE SUR LE BIED", - "nomCommune": "LA SELLE SUR LE BIED" + "codePostal": "98790", + "codeCommune": "98716", + "libelleAcheminement": "MOTU TAPU", + "nomCommune": "FAKARAVA" }, { - "codePostal": "45700", - "codeCommune": "45312", - "libelleAcheminement": "SOLTERRE", - "nomCommune": "SOLTERRE" + "codePostal": "98755", + "codeCommune": "98719", + "libelleAcheminement": "AUKENA", + "nomCommune": "GAMBIER" }, { - "codePostal": "45600", - "codeCommune": "45315", - "libelleAcheminement": "SULLY SUR LOIRE", - "nomCommune": "SULLY SUR LOIRE" + "codePostal": "98755", + "codeCommune": "98719", + "libelleAcheminement": "MAKAROA", + "nomCommune": "GAMBIER" }, { - "codePostal": "45300", - "codeCommune": "45320", - "libelleAcheminement": "THIGNONVILLE", - "nomCommune": "THIGNONVILLE" + "codePostal": "98792", + "codeCommune": "98719", + "libelleAcheminement": "TENARUNGA", + "nomCommune": "GAMBIER" }, { - "codePostal": "45220", - "codeCommune": "45329", - "libelleAcheminement": "TRIGUERES", - "nomCommune": "TRIGUERES" + "codePostal": "98790", + "codeCommune": "98720", + "libelleAcheminement": "HEREHRETUE", + "nomCommune": "HAO" }, { - "codePostal": "45410", - "codeCommune": "45330", - "libelleAcheminement": "TRINAY", - "nomCommune": "TRINAY" + "codePostal": "98790", + "codeCommune": "98720", + "libelleAcheminement": "PARAOA", + "nomCommune": "HAO" }, { - "codePostal": "45700", - "codeCommune": "45338", - "libelleAcheminement": "VILLEMANDEUR", - "nomCommune": "VILLEMANDEUR" + "codePostal": "98790", + "codeCommune": "98720", + "libelleAcheminement": "AHUNUI", + "nomCommune": "HAO" }, { - "codePostal": "45300", - "codeCommune": "45347", - "libelleAcheminement": "VRIGNY", - "nomCommune": "VRIGNY" + "codePostal": "98790", + "codeCommune": "98721", + "libelleAcheminement": "TEPEPERU", + "nomCommune": "HIKUERU" }, { - "codePostal": "45300", - "codeCommune": "45348", - "libelleAcheminement": "YEVRE LA VILLE", - "nomCommune": "YEVRE LA VILLE" + "codePostal": "98790", + "codeCommune": "98721", + "libelleAcheminement": "MAHETIKA", + "nomCommune": "HIKUERU" }, { - "codePostal": "46140", - "codeCommune": "46001", - "libelleAcheminement": "ALBAS", - "nomCommune": "ALBAS" + "codePostal": "98707", + "codeCommune": "98722", + "libelleAcheminement": "PAPENOO", + "nomCommune": "HITIAA O TE RA" }, { - "codePostal": "46500", - "codeCommune": "46002", - "libelleAcheminement": "ALBIAC", - "nomCommune": "ALBIAC" + "codePostal": "98741", + "codeCommune": "98723", + "libelleAcheminement": "EIAONE", + "nomCommune": "HIVA OA" }, { - "codePostal": "46090", - "codeCommune": "46007", - "libelleAcheminement": "ARCAMBAL", - "nomCommune": "ARCAMBAL" + "codePostal": "98741", + "codeCommune": "98723", + "libelleAcheminement": "MOTU UA", + "nomCommune": "HIVA OA" }, { - "codePostal": "46400", - "codeCommune": "46011", - "libelleAcheminement": "AUTOIRE", - "nomCommune": "AUTOIRE" + "codePostal": "98741", + "codeCommune": "98723", + "libelleAcheminement": "NAHOE", + "nomCommune": "HIVA OA" }, { - "codePostal": "46120", - "codeCommune": "46012", - "libelleAcheminement": "AYNAC", - "nomCommune": "AYNAC" + "codePostal": "98741", + "codeCommune": "98723", + "libelleAcheminement": "PAUMAU", + "nomCommune": "HIVA OA" }, { - "codePostal": "46100", - "codeCommune": "46021", - "libelleAcheminement": "BEDUER", - "nomCommune": "BEDUER" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "MAROE", + "nomCommune": "HUAHINE" }, { - "codePostal": "46800", - "codeCommune": "46033", - "libelleAcheminement": "PORTE DU QUERCY", - "nomCommune": "PORTE DU QUERCY" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "PAREA", + "nomCommune": "HUAHINE" }, { - "codePostal": "46120", - "codeCommune": "46034", - "libelleAcheminement": "LE BOURG", - "nomCommune": "LE BOURG" + "codePostal": "98771", + "codeCommune": "98727", + "libelleAcheminement": "TURIPAOA", + "nomCommune": "MANIHI" }, { - "codePostal": "46330", - "codeCommune": "46037", - "libelleAcheminement": "BOUZIES", - "nomCommune": "BOUZIES" + "codePostal": "98732", + "codeCommune": "98728", + "libelleAcheminement": "MOTU ONE", + "nomCommune": "MAUPITI" }, { - "codePostal": "46130", - "codeCommune": "46038", - "libelleAcheminement": "BRETENOUX", - "nomCommune": "BRETENOUX" + "codePostal": "98732", + "codeCommune": "98728", + "libelleAcheminement": "SCILLY", + "nomCommune": "MAUPITI" }, { - "codePostal": "46350", - "codeCommune": "46047", - "libelleAcheminement": "CALES", - "nomCommune": "CALES" + "codePostal": "98729", + "codeCommune": "98729", + "libelleAcheminement": "OPUNOHU", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "46140", - "codeCommune": "46050", - "libelleAcheminement": "CAMBAYRAC", - "nomCommune": "CAMBAYRAC" + "codePostal": "98729", + "codeCommune": "98729", + "libelleAcheminement": "PAOPAO", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "46700", - "codeCommune": "46061", - "libelleAcheminement": "CASSAGNES", - "nomCommune": "CASSAGNES" + "codePostal": "98772", + "codeCommune": "98730", + "libelleAcheminement": "TEPUKAMARUIA", + "nomCommune": "NAPUKA" }, { - "codePostal": "46170", - "codeCommune": "46063", - "libelleAcheminement": "CASTELNAU MONTRATIER STE ALAUZIE", - "nomCommune": "CASTELNAU MONTRATIER STE ALAUZIE" + "codePostal": "98796", + "codeCommune": "98731", + "libelleAcheminement": "HATU ITI", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "46330", - "codeCommune": "46068", - "libelleAcheminement": "CENEVIERES", - "nomCommune": "CENEVIERES" + "codePostal": "98714", + "codeCommune": "98735", + "libelleAcheminement": "PAPEETE", + "nomCommune": "PAPEETE" }, { - "codePostal": "46230", - "codeCommune": "46070", - "libelleAcheminement": "CIEURAC", - "nomCommune": "CIEURAC" + "codePostal": "98716", + "codeCommune": "98736", + "libelleAcheminement": "PIRAE", + "nomCommune": "PIRAE" }, { - "codePostal": "46500", - "codeCommune": "46078", - "libelleAcheminement": "COUZOU", - "nomCommune": "COUZOU" + "codePostal": "98703", + "codeCommune": "98738", + "libelleAcheminement": "PUNAAUIA", + "nomCommune": "PUNAAUIA" }, { - "codePostal": "46320", - "codeCommune": "46090", - "libelleAcheminement": "DURBANS", - "nomCommune": "DURBANS" + "codePostal": "98718", + "codeCommune": "98738", + "libelleAcheminement": "PUNAAUIA", + "nomCommune": "PUNAAUIA" }, { - "codePostal": "46090", - "codeCommune": "46092", - "libelleAcheminement": "ESCLAUZELS", - "nomCommune": "ESCLAUZELS" + "codePostal": "98750", + "codeCommune": "98739", + "libelleAcheminement": "VAIURU", + "nomCommune": "RAIVAVAE" }, { - "codePostal": "46320", - "codeCommune": "46094", - "libelleAcheminement": "ESPEDAILLAC", - "nomCommune": "ESPEDAILLAC" + "codePostal": "98779", + "codeCommune": "98742", + "libelleAcheminement": "TAPUARAVA", + "nomCommune": "REAO" }, { - "codePostal": "46100", - "codeCommune": "46100", - "libelleAcheminement": "FAYCELLES", - "nomCommune": "FAYCELLES" + "codePostal": "98752", + "codeCommune": "98743", + "libelleAcheminement": "AMARU", + "nomCommune": "RIMATARA" }, { - "codePostal": "46270", - "codeCommune": "46101", - "libelleAcheminement": "FELZINS", - "nomCommune": "FELZINS" + "codePostal": "98753", + "codeCommune": "98744", + "libelleAcheminement": "HAUTI", + "nomCommune": "RURUTU" }, { - "codePostal": "46170", - "codeCommune": "46103", - "libelleAcheminement": "ST PAUL FLAUGNAC", - "nomCommune": "ST PAUL FLAUGNAC" + "codePostal": "98733", + "codeCommune": "98745", + "libelleAcheminement": "IRIPAU", + "nomCommune": "TAHAA" }, { - "codePostal": "46100", - "codeCommune": "46111", - "libelleAcheminement": "FOURMAGNAC", - "nomCommune": "FOURMAGNAC" + "codePostal": "98743", + "codeCommune": "98746", + "libelleAcheminement": "VAITAHU", + "nomCommune": "TAHUATA" }, { - "codePostal": "46160", - "codeCommune": "46116", - "libelleAcheminement": "FRONTENAC", - "nomCommune": "FRONTENAC" + "codePostal": "98721", + "codeCommune": "98747", + "libelleAcheminement": "PUEU", + "nomCommune": "TAIARAPU EST" }, { - "codePostal": "46250", - "codeCommune": "46120", - "libelleAcheminement": "GINDOU", - "nomCommune": "GINDOU" + "codePostal": "98725", + "codeCommune": "98748", + "libelleAcheminement": "VAIRAO", + "nomCommune": "TAIARAPU OUEST" }, { - "codePostal": "46130", - "codeCommune": "46122", - "libelleAcheminement": "GINTRAC", - "nomCommune": "GINTRAC" + "codePostal": "98782", + "codeCommune": "98749", + "libelleAcheminement": "FAKATOPATERE", + "nomCommune": "TAKAROA" }, { - "codePostal": "46250", - "codeCommune": "46126", - "libelleAcheminement": "GOUJOUNAC", - "nomCommune": "GOUJOUNAC" + "codePostal": "98735", + "codeCommune": "98750", + "libelleAcheminement": "AVERA", + "nomCommune": "TAPUTAPUATEA" }, { - "codePostal": "46500", - "codeCommune": "46132", - "libelleAcheminement": "ISSENDOLUS", - "nomCommune": "ISSENDOLUS" + "codePostal": "98754", + "codeCommune": "98753", + "libelleAcheminement": "TAAHUAIA", + "nomCommune": "TUBUAI" }, { - "codePostal": "46240", - "codeCommune": "46138", - "libelleAcheminement": "COEUR DE CAUSSE", - "nomCommune": "COEUR DE CAUSSE" + "codePostal": "98735", + "codeCommune": "98754", + "libelleAcheminement": "TEVAITOA", + "nomCommune": "TUMARAA" }, { - "codePostal": "46230", - "codeCommune": "46140", - "libelleAcheminement": "LABURGADE", - "nomCommune": "LABURGADE" + "codePostal": "98744", + "codeCommune": "98756", + "libelleAcheminement": "VAIPAEE", + "nomCommune": "UA HUKA" }, { - "codePostal": "46120", - "codeCommune": "46143", - "libelleAcheminement": "LACAPELLE MARIVAL", - "nomCommune": "LACAPELLE MARIVAL" + "codePostal": "98745", + "codeCommune": "98757", + "libelleAcheminement": "HAKAHETAU", + "nomCommune": "UA POU" }, { - "codePostal": "46220", - "codeCommune": "46147", - "libelleAcheminement": "LAGARDELLE", - "nomCommune": "LAGARDELLE" + "codePostal": "98745", + "codeCommune": "98757", + "libelleAcheminement": "HAKAHAU", + "nomCommune": "UA POU" }, { - "codePostal": "46090", - "codeCommune": "46149", - "libelleAcheminement": "LAMAGDELAINE", - "nomCommune": "LAMAGDELAINE" + "codePostal": "98735", + "codeCommune": "98758", + "libelleAcheminement": "UTUROA", + "nomCommune": "UTUROA" }, { - "codePostal": "46160", - "codeCommune": "46155", - "libelleAcheminement": "LARNAGOL", - "nomCommune": "LARNAGOL" + "codePostal": "98813", + "codeCommune": "98804", + "libelleAcheminement": "CANALA", + "nomCommune": "CANALA" }, { - "codePostal": "46330", - "codeCommune": "46167", - "libelleAcheminement": "LENTILLAC DU CAUSSE", - "nomCommune": "LENTILLAC DU CAUSSE" + "codePostal": "98881", + "codeCommune": "98806", + "libelleAcheminement": "FARINO", + "nomCommune": "FARINO" }, { - "codePostal": "46260", - "codeCommune": "46173", - "libelleAcheminement": "LIMOGNE EN QUERCY", - "nomCommune": "LIMOGNE EN QUERCY" + "codePostal": "98817", + "codeCommune": "98810", + "libelleAcheminement": "KAALA GOMEN", + "nomCommune": "KAALA GOMEN" }, { - "codePostal": "46320", - "codeCommune": "46176", - "libelleAcheminement": "LIVERNON", - "nomCommune": "LIVERNON" + "codePostal": "98880", + "codeCommune": "98813", + "libelleAcheminement": "LA FOA", + "nomCommune": "LA FOA" }, { - "codePostal": "46130", - "codeCommune": "46177", - "libelleAcheminement": "LOUBRESSAC", - "nomCommune": "LOUBRESSAC" + "codePostal": "98885", + "codeCommune": "98814", + "libelleAcheminement": "MOU", + "nomCommune": "LIFOU" }, { - "codePostal": "46240", - "codeCommune": "46181", - "libelleAcheminement": "LUNEGARDE", - "nomCommune": "LUNEGARDE" + "codePostal": "98828", + "codeCommune": "98815", + "libelleAcheminement": "TADINE", + "nomCommune": "MARE" }, { - "codePostal": "46090", - "codeCommune": "46191", - "libelleAcheminement": "MERCUES", - "nomCommune": "MERCUES" + "codePostal": "98878", + "codeCommune": "98815", + "libelleAcheminement": "LA ROCHE", + "nomCommune": "MARE" }, { - "codePostal": "46120", - "codeCommune": "46195", - "libelleAcheminement": "MOLIERES", - "nomCommune": "MOLIERES" + "codePostal": "98822", + "codeCommune": "98822", + "libelleAcheminement": "POINDIMIE", + "nomCommune": "POINDIMIE" }, { - "codePostal": "46800", - "codeCommune": "46201", - "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", - "nomCommune": "MONTCUQ EN QUERCY BLANC" + "codePostal": "98829", + "codeCommune": "98829", + "libelleAcheminement": "THIO", + "nomCommune": "THIO" }, { - "codePostal": "46800", - "codeCommune": "46201", - "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", - "nomCommune": "MONTCUQ EN QUERCY BLANC" + "codePostal": "98833", + "codeCommune": "98831", + "libelleAcheminement": "VOH", + "nomCommune": "VOH" }, { - "codePostal": "46800", - "codeCommune": "46201", - "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", - "nomCommune": "MONTCUQ EN QUERCY BLANC" + "codePostal": "98834", + "codeCommune": "98832", + "libelleAcheminement": "YATE", + "nomCommune": "YATE" }, { - "codePostal": "46800", - "codeCommune": "46201", - "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", - "nomCommune": "MONTCUQ EN QUERCY BLANC" + "codePostal": "98799", + "codeCommune": "98901", + "libelleAcheminement": "ILE DE CLIPPERTON", + "nomCommune": "ILE DE CLIPPERTON" }, { - "codePostal": "46230", - "codeCommune": "46202", - "libelleAcheminement": "MONTDOUMERC", - "nomCommune": "MONTDOUMERC" + "codePostal": "01400", + "codeCommune": "01001", + "libelleAcheminement": "L ABERGEMENT CLEMENCIAT", + "nomCommune": "L ABERGEMENT CLEMENCIAT" }, { - "codePostal": "46240", - "codeCommune": "46204", - "libelleAcheminement": "MONTFAUCON", - "nomCommune": "MONTFAUCON" + "codePostal": "01500", + "codeCommune": "01007", + "libelleAcheminement": "AMBRONAY", + "nomCommune": "AMBRONAY" }, { - "codePostal": "46150", - "codeCommune": "46205", - "libelleAcheminement": "MONTGESTY", - "nomCommune": "MONTGESTY" + "codePostal": "01350", + "codeCommune": "01010", + "libelleAcheminement": "ANGLEFORT", + "nomCommune": "ANGLEFORT" }, { - "codePostal": "46800", - "codeCommune": "46206", - "libelleAcheminement": "MONTLAUZUN", - "nomCommune": "MONTLAUZUN" + "codePostal": "01300", + "codeCommune": "01015", + "libelleAcheminement": "ARBOYS EN BUGEY", + "nomCommune": "ARBOYS EN BUGEY" }, { - "codePostal": "46360", - "codeCommune": "46210", - "libelleAcheminement": "NADILLAC", - "nomCommune": "NADILLAC" + "codePostal": "01230", + "codeCommune": "01017", + "libelleAcheminement": "ARGIS", + "nomCommune": "ARGIS" }, { - "codePostal": "46170", - "codeCommune": "46217", - "libelleAcheminement": "PERN", - "nomCommune": "PERN" + "codePostal": "01570", + "codeCommune": "01023", + "libelleAcheminement": "ASNIERES SUR SAONE", + "nomCommune": "ASNIERES SUR SAONE" }, { - "codePostal": "46200", - "codeCommune": "46220", - "libelleAcheminement": "PINSAC", - "nomCommune": "PINSAC" + "codePostal": "01380", + "codeCommune": "01025", + "libelleAcheminement": "BAGE DOMMARTIN", + "nomCommune": "BAGE DOMMARTIN" }, { - "codePostal": "46100", - "codeCommune": "46221", - "libelleAcheminement": "PLANIOLES", - "nomCommune": "PLANIOLES" + "codePostal": "01100", + "codeCommune": "01031", + "libelleAcheminement": "BELLIGNAT", + "nomCommune": "BELLIGNAT" }, { - "codePostal": "46090", - "codeCommune": "46224", - "libelleAcheminement": "PRADINES", - "nomCommune": "PRADINES" + "codePostal": "01360", + "codeCommune": "01032", + "libelleAcheminement": "BELIGNEUX", + "nomCommune": "BELIGNEUX" }, { - "codePostal": "46110", - "codeCommune": "46232", - "libelleAcheminement": "LE VIGNON EN QUERCY", - "nomCommune": "LE VIGNON EN QUERCY" + "codePostal": "01360", + "codeCommune": "01032", + "libelleAcheminement": "BELIGNEUX", + "nomCommune": "BELIGNEUX" }, { - "codePostal": "46600", - "codeCommune": "46232", - "libelleAcheminement": "LE VIGNON EN QUERCY", - "nomCommune": "LE VIGNON EN QUERCY" + "codePostal": "01360", + "codeCommune": "01032", + "libelleAcheminement": "BELIGNEUX", + "nomCommune": "BELIGNEUX" }, { - "codePostal": "46340", - "codeCommune": "46234", - "libelleAcheminement": "RAMPOUX", - "nomCommune": "RAMPOUX" + "codePostal": "01130", + "codeCommune": "01035", + "libelleAcheminement": "BELLEYDOUX", + "nomCommune": "BELLEYDOUX" }, { - "codePostal": "46120", - "codeCommune": "46242", - "libelleAcheminement": "RUDELLE", - "nomCommune": "RUDELLE" + "codePostal": "01260", + "codeCommune": "01036", + "libelleAcheminement": "VALROMEY SUR SERAN", + "nomCommune": "VALROMEY SUR SERAN" }, { - "codePostal": "46210", - "codeCommune": "46255", - "libelleAcheminement": "ST CIRGUES", - "nomCommune": "ST CIRGUES" + "codePostal": "01370", + "codeCommune": "01038", + "libelleAcheminement": "BENY", + "nomCommune": "BENY" }, { - "codePostal": "46120", - "codeCommune": "46260", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "01350", + "codeCommune": "01039", + "libelleAcheminement": "BEON", + "nomCommune": "BEON" }, { - "codePostal": "46150", - "codeCommune": "46264", - "libelleAcheminement": "ST DENIS CATUS", - "nomCommune": "ST DENIS CATUS" + "codePostal": "01340", + "codeCommune": "01040", + "libelleAcheminement": "BEREZIAT", + "nomCommune": "BEREZIAT" }, { - "codePostal": "46260", - "codeCommune": "46270", - "libelleAcheminement": "ST JEAN DE LAUR", - "nomCommune": "ST JEAN DE LAUR" + "codePostal": "01290", + "codeCommune": "01046", + "libelleAcheminement": "BIZIAT", + "nomCommune": "BIZIAT" }, { - "codePostal": "46700", - "codeCommune": "46277", - "libelleAcheminement": "ST MARTIN LE REDON", - "nomCommune": "ST MARTIN LE REDON" + "codePostal": "01120", + "codeCommune": "01049", + "libelleAcheminement": "LA BOISSE", + "nomCommune": "LA BOISSE" }, { - "codePostal": "46110", - "codeCommune": "46283", - "libelleAcheminement": "ST MICHEL DE BANNIERES", - "nomCommune": "ST MICHEL DE BANNIERES" + "codePostal": "01450", + "codeCommune": "01051", + "libelleAcheminement": "BOLOZON", + "nomCommune": "BOLOZON" }, { - "codePostal": "46160", - "codeCommune": "46289", - "libelleAcheminement": "ST PIERRE TOIRAC", - "nomCommune": "ST PIERRE TOIRAC" + "codePostal": "01330", + "codeCommune": "01052", + "libelleAcheminement": "BOULIGNEUX", + "nomCommune": "BOULIGNEUX" }, { - "codePostal": "46340", - "codeCommune": "46297", - "libelleAcheminement": "SALVIAC", - "nomCommune": "SALVIAC" + "codePostal": "01800", + "codeCommune": "01054", + "libelleAcheminement": "BOURG ST CHRISTOPHE", + "nomCommune": "BOURG ST CHRISTOPHE" }, { - "codePostal": "46360", - "codeCommune": "46303", - "libelleAcheminement": "SENAILLAC LAUZES", - "nomCommune": "SENAILLAC LAUZES" + "codePostal": "01470", + "codeCommune": "01064", + "libelleAcheminement": "BRIORD", + "nomCommune": "BRIORD" }, { - "codePostal": "46320", - "codeCommune": "46306", - "libelleAcheminement": "SONAC", - "nomCommune": "SONAC" + "codePostal": "01450", + "codeCommune": "01068", + "libelleAcheminement": "CERDON", + "nomCommune": "CERDON" }, { - "codePostal": "46700", - "codeCommune": "46307", - "libelleAcheminement": "SOTURAC", - "nomCommune": "SOTURAC" + "codePostal": "01230", + "codeCommune": "01076", + "libelleAcheminement": "CHALEY", + "nomCommune": "CHALEY" }, { - "codePostal": "46190", - "codeCommune": "46311", - "libelleAcheminement": "SOUSCEYRAC EN QUERCY", - "nomCommune": "SOUSCEYRAC EN QUERCY" + "codePostal": "01450", + "codeCommune": "01077", + "libelleAcheminement": "CHALLES LA MONTAGNE", + "nomCommune": "CHALLES LA MONTAGNE" }, { - "codePostal": "46190", - "codeCommune": "46311", - "libelleAcheminement": "SOUSCEYRAC EN QUERCY", - "nomCommune": "SOUSCEYRAC EN QUERCY" + "codePostal": "01260", + "codeCommune": "01079", + "libelleAcheminement": "CHAMPAGNE EN VALROMEY", + "nomCommune": "CHAMPAGNE EN VALROMEY" }, { - "codePostal": "46110", - "codeCommune": "46312", - "libelleAcheminement": "STRENQUELS", - "nomCommune": "STRENQUELS" + "codePostal": "01410", + "codeCommune": "01081", + "libelleAcheminement": "CHAMPFROMIER", + "nomCommune": "CHAMPFROMIER" }, { - "codePostal": "46120", - "codeCommune": "46318", - "libelleAcheminement": "THEMINES", - "nomCommune": "THEMINES" + "codePostal": "01990", + "codeCommune": "01083", + "libelleAcheminement": "CHANEINS", + "nomCommune": "CHANEINS" }, { - "codePostal": "46700", - "codeCommune": "46321", - "libelleAcheminement": "TOUZAC", - "nomCommune": "TOUZAC" + "codePostal": "01400", + "codeCommune": "01084", + "libelleAcheminement": "CHANOZ CHATENAY", + "nomCommune": "CHANOZ CHATENAY" }, { - "codePostal": "46240", - "codeCommune": "46323", - "libelleAcheminement": "USSEL", - "nomCommune": "USSEL" + "codePostal": "01500", + "codeCommune": "01089", + "libelleAcheminement": "CHATEAU GAILLARD", + "nomCommune": "CHATEAU GAILLARD" }, { - "codePostal": "46110", - "codeCommune": "46330", - "libelleAcheminement": "VAYRAC", - "nomCommune": "VAYRAC" + "codePostal": "01320", + "codeCommune": "01092", + "libelleAcheminement": "CHATILLON LA PALUD", + "nomCommune": "CHATILLON LA PALUD" }, { - "codePostal": "46090", - "codeCommune": "46335", - "libelleAcheminement": "VILLESEQUE", - "nomCommune": "VILLESEQUE" + "codePostal": "01190", + "codeCommune": "01094", + "libelleAcheminement": "CHAVANNES SUR REYSSOUZE", + "nomCommune": "CHAVANNES SUR REYSSOUZE" }, { - "codePostal": "46700", - "codeCommune": "46336", - "libelleAcheminement": "VIRE SUR LOT", - "nomCommune": "VIRE SUR LOT" + "codePostal": "01510", + "codeCommune": "01098", + "libelleAcheminement": "CHAZEY BONS", + "nomCommune": "CHAZEY BONS" }, { - "codePostal": "46200", - "codeCommune": "46337", - "libelleAcheminement": "MAYRAC", - "nomCommune": "MAYRAC" + "codePostal": "01300", + "codeCommune": "01110", + "libelleAcheminement": "COLOMIEU", + "nomCommune": "COLOMIEU" }, { - "codePostal": "46090", - "codeCommune": "46340", - "libelleAcheminement": "ST PIERRE LAFEUILLE", - "nomCommune": "ST PIERRE LAFEUILLE" + "codePostal": "01290", + "codeCommune": "01123", + "libelleAcheminement": "CORMORANCHE SUR SAONE", + "nomCommune": "CORMORANCHE SUR SAONE" }, { - "codePostal": "47350", - "codeCommune": "47002", - "libelleAcheminement": "AGME", - "nomCommune": "AGME" + "codePostal": "01560", + "codeCommune": "01124", + "libelleAcheminement": "CORMOZ", + "nomCommune": "CORMOZ" }, { - "codePostal": "47190", - "codeCommune": "47004", - "libelleAcheminement": "AIGUILLON", - "nomCommune": "AIGUILLON" + "codePostal": "01250", + "codeCommune": "01125", + "libelleAcheminement": "CORVEISSIAT", + "nomCommune": "CORVEISSIAT" }, { - "codePostal": "47160", - "codeCommune": "47008", - "libelleAcheminement": "AMBRUS", - "nomCommune": "AMBRUS" + "codePostal": "01560", + "codeCommune": "01128", + "libelleAcheminement": "COURTES", + "nomCommune": "COURTES" }, { - "codePostal": "47370", - "codeCommune": "47011", - "libelleAcheminement": "ANTHE", - "nomCommune": "ANTHE" + "codePostal": "01750", + "codeCommune": "01134", + "libelleAcheminement": "CROTTET", + "nomCommune": "CROTTET" }, { - "codePostal": "47220", - "codeCommune": "47015", - "libelleAcheminement": "ASTAFFORT", - "nomCommune": "ASTAFFORT" + "codePostal": "01300", + "codeCommune": "01141", + "libelleAcheminement": "CUZIEU", + "nomCommune": "CUZIEU" }, { - "codePostal": "47140", - "codeCommune": "47017", - "libelleAcheminement": "AURADOU", - "nomCommune": "AURADOU" + "codePostal": "01270", + "codeCommune": "01147", + "libelleAcheminement": "DOMSURE", + "nomCommune": "DOMSURE" }, { - "codePostal": "47470", - "codeCommune": "47025", - "libelleAcheminement": "BEAUVILLE", - "nomCommune": "BEAUVILLE" + "codePostal": "01230", + "codeCommune": "01155", + "libelleAcheminement": "EVOSGES", + "nomCommune": "EVOSGES" }, { - "codePostal": "47300", - "codeCommune": "47027", - "libelleAcheminement": "BIAS", - "nomCommune": "BIAS" + "codePostal": "01550", + "codeCommune": "01158", + "libelleAcheminement": "FARGES", + "nomCommune": "FARGES" }, { - "codePostal": "47440", - "codeCommune": "47049", - "libelleAcheminement": "CASSENEUIL", - "nomCommune": "CASSENEUIL" + "codePostal": "01570", + "codeCommune": "01159", + "libelleAcheminement": "FEILLENS", + "nomCommune": "FEILLENS" }, { - "codePostal": "47340", - "codeCommune": "47053", - "libelleAcheminement": "CASTELLA", - "nomCommune": "CASTELLA" + "codePostal": "01210", + "codeCommune": "01160", + "libelleAcheminement": "FERNEY VOLTAIRE", + "nomCommune": "FERNEY VOLTAIRE" }, { - "codePostal": "47260", - "codeCommune": "47054", - "libelleAcheminement": "CASTELMORON SUR LOT", - "nomCommune": "CASTELMORON SUR LOT" + "codePostal": "01090", + "codeCommune": "01165", + "libelleAcheminement": "FRANCHELEINS", + "nomCommune": "FRANCHELEINS" }, { - "codePostal": "47160", - "codeCommune": "47058", - "libelleAcheminement": "CAUBEYRES", - "nomCommune": "CAUBEYRES" + "codePostal": "01480", + "codeCommune": "01166", + "libelleAcheminement": "FRANS", + "nomCommune": "FRANS" }, { - "codePostal": "47370", - "codeCommune": "47064", - "libelleAcheminement": "CAZIDEROQUE", - "nomCommune": "CAZIDEROQUE" + "codePostal": "01190", + "codeCommune": "01175", + "libelleAcheminement": "GORREVOD", + "nomCommune": "GORREVOD" }, { - "codePostal": "47450", - "codeCommune": "47069", - "libelleAcheminement": "COLAYRAC ST CIRQ", - "nomCommune": "COLAYRAC ST CIRQ" + "codePostal": "01250", + "codeCommune": "01177", + "libelleAcheminement": "GRAND CORENT", + "nomCommune": "GRAND CORENT" }, { - "codePostal": "47500", - "codeCommune": "47070", - "libelleAcheminement": "CONDEZAYGUES", - "nomCommune": "CONDEZAYGUES" + "codePostal": "01110", + "codeCommune": "01185", + "libelleAcheminement": "PLATEAU D HAUTEVILLE", + "nomCommune": "PLATEAU D HAUTEVILLE" }, { - "codePostal": "47260", - "codeCommune": "47071", - "libelleAcheminement": "COULX", - "nomCommune": "COULX" + "codePostal": "01110", + "codeCommune": "01185", + "libelleAcheminement": "PLATEAU D HAUTEVILLE", + "nomCommune": "PLATEAU D HAUTEVILLE" }, { - "codePostal": "47340", - "codeCommune": "47075", - "libelleAcheminement": "LA CROIX BLANCHE", - "nomCommune": "LA CROIX BLANCHE" + "codePostal": "01200", + "codeCommune": "01189", + "libelleAcheminement": "INJOUX GENISSIAT", + "nomCommune": "INJOUX GENISSIAT" }, { - "codePostal": "47210", - "codeCommune": "47080", - "libelleAcheminement": "DEVILLAC", - "nomCommune": "DEVILLAC" + "codePostal": "01680", + "codeCommune": "01190", + "libelleAcheminement": "INNIMOND", + "nomCommune": "INNIMOND" }, { - "codePostal": "47310", - "codeCommune": "47091", - "libelleAcheminement": "ESTILLAC", - "nomCommune": "ESTILLAC" + "codePostal": "01250", + "codeCommune": "01197", + "libelleAcheminement": "JOURNANS", + "nomCommune": "JOURNANS" }, { - "codePostal": "47400", - "codeCommune": "47095", - "libelleAcheminement": "FAUILLET", - "nomCommune": "FAUILLET" + "codePostal": "01130", + "codeCommune": "01204", + "libelleAcheminement": "LE POIZAT LALLEYRIAT", + "nomCommune": "LE POIZAT LALLEYRIAT" }, { - "codePostal": "47400", - "codeCommune": "47110", - "libelleAcheminement": "GONTAUD DE NOGARET", - "nomCommune": "GONTAUD DE NOGARET" + "codePostal": "01430", + "codeCommune": "01206", + "libelleAcheminement": "LANTENAY", + "nomCommune": "LANTENAY" }, { - "codePostal": "47400", - "codeCommune": "47112", - "libelleAcheminement": "GRATELOUP ST GAYRAND", - "nomCommune": "GRATELOUP ST GAYRAND" + "codePostal": "01200", + "codeCommune": "01209", + "libelleAcheminement": "LEAZ", + "nomCommune": "LEAZ" }, { - "codePostal": "47340", - "codeCommune": "47117", - "libelleAcheminement": "HAUTEFAGE LA TOUR", - "nomCommune": "HAUTEFAGE LA TOUR" + "codePostal": "01410", + "codeCommune": "01210", + "libelleAcheminement": "LELEX", + "nomCommune": "LELEX" }, { - "codePostal": "47400", - "codeCommune": "47118", - "libelleAcheminement": "HAUTESVIGNES", - "nomCommune": "HAUTESVIGNES" + "codePostal": "01240", + "codeCommune": "01211", + "libelleAcheminement": "LENT", + "nomCommune": "LENT" }, { - "codePostal": "47170", - "codeCommune": "47134", - "libelleAcheminement": "LANNES", - "nomCommune": "LANNES" + "codePostal": "01560", + "codeCommune": "01212", + "libelleAcheminement": "LESCHEROUX", + "nomCommune": "LESCHEROUX" }, { - "codePostal": "47340", - "codeCommune": "47138", - "libelleAcheminement": "LAROQUE TIMBAUT", - "nomCommune": "LAROQUE TIMBAUT" + "codePostal": "01450", + "codeCommune": "01214", + "libelleAcheminement": "LEYSSARD", + "nomCommune": "LEYSSARD" }, { - "codePostal": "47360", - "codeCommune": "47140", - "libelleAcheminement": "LAUGNAC", - "nomCommune": "LAUGNAC" + "codePostal": "01420", + "codeCommune": "01215", + "libelleAcheminement": "SURJOUX LHOPITAL", + "nomCommune": "SURJOUX LHOPITAL" }, { - "codePostal": "47150", - "codeCommune": "47141", - "libelleAcheminement": "LAUSSOU", - "nomCommune": "LAUSSOU" + "codePostal": "01570", + "codeCommune": "01231", + "libelleAcheminement": "MANZIAT", + "nomCommune": "MANZIAT" }, { - "codePostal": "47410", - "codeCommune": "47142", - "libelleAcheminement": "LAUZUN", - "nomCommune": "LAUZUN" + "codePostal": "01240", + "codeCommune": "01235", + "libelleAcheminement": "MARLIEUX", + "nomCommune": "MARLIEUX" }, { - "codePostal": "47200", - "codeCommune": "47156", - "libelleAcheminement": "MARCELLUS", - "nomCommune": "MARCELLUS" + "codePostal": "01100", + "codeCommune": "01237", + "libelleAcheminement": "MARTIGNAT", + "nomCommune": "MARTIGNAT" }, { - "codePostal": "47220", - "codeCommune": "47158", - "libelleAcheminement": "MARMONT PACHAS", - "nomCommune": "MARMONT PACHAS" + "codePostal": "01300", + "codeCommune": "01239", + "libelleAcheminement": "MASSIGNIEU DE RIVES", + "nomCommune": "MASSIGNIEU DE RIVES" }, { - "codePostal": "47310", - "codeCommune": "47169", - "libelleAcheminement": "MOIRAX", - "nomCommune": "MOIRAX" + "codePostal": "01480", + "codeCommune": "01243", + "libelleAcheminement": "MESSIMY SUR SAONE", + "nomCommune": "MESSIMY SUR SAONE" }, { - "codePostal": "47310", - "codeCommune": "47172", - "libelleAcheminement": "MONCAUT", - "nomCommune": "MONCAUT" + "codePostal": "01800", + "codeCommune": "01244", + "libelleAcheminement": "MEXIMIEUX", + "nomCommune": "MEXIMIEUX" }, { - "codePostal": "47380", - "codeCommune": "47173", - "libelleAcheminement": "MONCLAR", - "nomCommune": "MONCLAR" + "codePostal": "01250", + "codeCommune": "01245", + "libelleAcheminement": "BOHAS MEYRIAT RIGNAT", + "nomCommune": "BOHAS MEYRIAT RIGNAT" }, { - "codePostal": "47230", - "codeCommune": "47176", - "libelleAcheminement": "MONGAILLARD", - "nomCommune": "MONGAILLARD" + "codePostal": "01170", + "codeCommune": "01247", + "libelleAcheminement": "MIJOUX", + "nomCommune": "MIJOUX" }, { - "codePostal": "47500", - "codeCommune": "47179", - "libelleAcheminement": "MONSEMPRON LIBOS", - "nomCommune": "MONSEMPRON LIBOS" + "codePostal": "01140", + "codeCommune": "01252", + "libelleAcheminement": "MOGNENEINS", + "nomCommune": "MOGNENEINS" }, { - "codePostal": "47150", - "codeCommune": "47181", - "libelleAcheminement": "MONTAGNAC SUR LEDE", - "nomCommune": "MONTAGNAC SUR LEDE" + "codePostal": "01470", + "codeCommune": "01255", + "libelleAcheminement": "MONTAGNIEU", + "nomCommune": "MONTAGNIEU" }, { - "codePostal": "47130", - "codeCommune": "47186", - "libelleAcheminement": "MONTESQUIEU", - "nomCommune": "MONTESQUIEU" + "codePostal": "01310", + "codeCommune": "01259", + "libelleAcheminement": "MONTCET", + "nomCommune": "MONTCET" }, { - "codePostal": "47800", - "codeCommune": "47188", - "libelleAcheminement": "MONTIGNAC DE LAUZUN", - "nomCommune": "MONTIGNAC DE LAUZUN" + "codePostal": "01130", + "codeCommune": "01269", + "libelleAcheminement": "NANTUA", + "nomCommune": "NANTUA" }, { - "codePostal": "47120", - "codeCommune": "47199", - "libelleAcheminement": "PARDAILLAN", - "nomCommune": "PARDAILLAN" + "codePostal": "01160", + "codeCommune": "01273", + "libelleAcheminement": "NEUVILLE SUR AIN", + "nomCommune": "NEUVILLE SUR AIN" }, { - "codePostal": "47350", - "codeCommune": "47204", - "libelleAcheminement": "PEYRIERE", - "nomCommune": "PEYRIERE" + "codePostal": "01510", + "codeCommune": "01280", + "libelleAcheminement": "ORDONNAZ", + "nomCommune": "ORDONNAZ" }, { - "codePostal": "47270", - "codeCommune": "47217", - "libelleAcheminement": "PUYMIROL", - "nomCommune": "PUYMIROL" + "codePostal": "01630", + "codeCommune": "01288", + "libelleAcheminement": "PERON", + "nomCommune": "PERON" }, { - "codePostal": "47800", - "codeCommune": "47218", - "libelleAcheminement": "PUYSSERAMPION", - "nomCommune": "PUYSSERAMPION" + "codePostal": "01140", + "codeCommune": "01295", + "libelleAcheminement": "PEYZIEUX SUR SAONE", + "nomCommune": "PEYZIEUX SUR SAONE" }, { - "codePostal": "47210", - "codeCommune": "47223", - "libelleAcheminement": "RIVES", - "nomCommune": "RIVES" + "codePostal": "01120", + "codeCommune": "01297", + "libelleAcheminement": "PIZAY", + "nomCommune": "PIZAY" }, { - "codePostal": "47800", - "codeCommune": "47226", - "libelleAcheminement": "ROUMAGNE", - "nomCommune": "ROUMAGNE" + "codePostal": "01130", + "codeCommune": "01298", + "libelleAcheminement": "PLAGNE", + "nomCommune": "PLAGNE" }, { - "codePostal": "47700", - "codeCommune": "47227", - "libelleAcheminement": "RUFFIAC", - "nomCommune": "RUFFIAC" + "codePostal": "01310", + "codeCommune": "01301", + "libelleAcheminement": "POLLIAT", + "nomCommune": "POLLIAT" }, { - "codePostal": "47120", - "codeCommune": "47229", - "libelleAcheminement": "ST ASTIER", - "nomCommune": "ST ASTIER" + "codePostal": "01450", + "codeCommune": "01303", + "libelleAcheminement": "PONCIN", + "nomCommune": "PONCIN" }, { - "codePostal": "47350", - "codeCommune": "47231", - "libelleAcheminement": "ST AVIT", - "nomCommune": "ST AVIT" + "codePostal": "01290", + "codeCommune": "01306", + "libelleAcheminement": "PONT DE VEYLE", + "nomCommune": "PONT DE VEYLE" }, { - "codePostal": "47180", - "codeCommune": "47233", - "libelleAcheminement": "STE BAZEILLE", - "nomCommune": "STE BAZEILLE" + "codePostal": "01250", + "codeCommune": "01309", + "libelleAcheminement": "POUILLAT", + "nomCommune": "POUILLAT" }, { - "codePostal": "47250", - "codeCommune": "47244", - "libelleAcheminement": "STE GEMME MARTAILLAC", - "nomCommune": "STE GEMME MARTAILLAC" + "codePostal": "01390", + "codeCommune": "01318", + "libelleAcheminement": "RANCE", + "nomCommune": "RANCE" }, { - "codePostal": "47120", - "codeCommune": "47245", - "libelleAcheminement": "ST GERAUD", - "nomCommune": "ST GERAUD" + "codePostal": "01800", + "codeCommune": "01325", + "libelleAcheminement": "RIGNIEUX LE FRANC", + "nomCommune": "RIGNIEUX LE FRANC" }, { - "codePostal": "47160", - "codeCommune": "47251", - "libelleAcheminement": "ST LEON", - "nomCommune": "ST LEON" + "codePostal": "01190", + "codeCommune": "01337", + "libelleAcheminement": "ST BENIGNE", + "nomCommune": "ST BENIGNE" }, { - "codePostal": "47210", - "codeCommune": "47256", - "libelleAcheminement": "ST MARTIN DE VILLEREAL", - "nomCommune": "ST MARTIN DE VILLEREAL" + "codePostal": "01380", + "codeCommune": "01343", + "libelleAcheminement": "ST CYR SUR MENTHON", + "nomCommune": "ST CYR SUR MENTHON" }, { - "codePostal": "47800", - "codeCommune": "47264", - "libelleAcheminement": "ST PARDOUX ISAAC", - "nomCommune": "ST PARDOUX ISAAC" + "codePostal": "01140", + "codeCommune": "01348", + "libelleAcheminement": "ST DIDIER SUR CHALARONNE", + "nomCommune": "ST DIDIER SUR CHALARONNE" }, { - "codePostal": "47330", - "codeCommune": "47272", - "libelleAcheminement": "ST QUENTIN DU DROPT", - "nomCommune": "ST QUENTIN DU DROPT" + "codePostal": "01400", + "codeCommune": "01356", + "libelleAcheminement": "ST GEORGES SUR RENON", + "nomCommune": "ST GEORGES SUR RENON" }, { - "codePostal": "47360", - "codeCommune": "47276", - "libelleAcheminement": "ST SARDOS", - "nomCommune": "ST SARDOS" + "codePostal": "01560", + "codeCommune": "01367", + "libelleAcheminement": "ST JULIEN SUR REYSSOUZE", + "nomCommune": "ST JULIEN SUR REYSSOUZE" }, { - "codePostal": "47220", - "codeCommune": "47279", - "libelleAcheminement": "ST SIXTE", - "nomCommune": "ST SIXTE" + "codePostal": "01250", + "codeCommune": "01369", + "libelleAcheminement": "ST JUST", + "nomCommune": "ST JUST" }, { - "codePostal": "47250", - "codeCommune": "47285", - "libelleAcheminement": "SAMAZAN", - "nomCommune": "SAMAZAN" + "codePostal": "01230", + "codeCommune": "01384", + "libelleAcheminement": "ST RAMBERT EN BUGEY", + "nomCommune": "ST RAMBERT EN BUGEY" }, { - "codePostal": "47150", - "codeCommune": "47291", - "libelleAcheminement": "LA SAUVETAT SUR LEDE", - "nomCommune": "LA SAUVETAT SUR LEDE" + "codePostal": "01340", + "codeCommune": "01387", + "libelleAcheminement": "ST SULPICE", + "nomCommune": "ST SULPICE" }, { - "codePostal": "47500", - "codeCommune": "47292", - "libelleAcheminement": "SAUVETERRE LA LEMANCE", - "nomCommune": "SAUVETERRE LA LEMANCE" + "codePostal": "01270", + "codeCommune": "01391", + "libelleAcheminement": "SALAVRE", + "nomCommune": "SALAVRE" }, { - "codePostal": "47410", - "codeCommune": "47299", - "libelleAcheminement": "SERIGNAC PEBOUDOU", - "nomCommune": "SERIGNAC PEBOUDOU" + "codePostal": "01150", + "codeCommune": "01396", + "libelleAcheminement": "SAULT BRENAZ", + "nomCommune": "SAULT BRENAZ" }, { - "codePostal": "47170", - "codeCommune": "47302", - "libelleAcheminement": "SOS", - "nomCommune": "SOS" + "codePostal": "01480", + "codeCommune": "01398", + "libelleAcheminement": "SAVIGNEUX", + "nomCommune": "SAVIGNEUX" }, { - "codePostal": "47200", - "codeCommune": "47304", - "libelleAcheminement": "TAILLEBOURG", - "nomCommune": "TAILLEBOURG" + "codePostal": "01400", + "codeCommune": "01412", + "libelleAcheminement": "SULIGNAT", + "nomCommune": "SULIGNAT" }, { - "codePostal": "47370", - "codeCommune": "47307", - "libelleAcheminement": "THEZAC", - "nomCommune": "THEZAC" + "codePostal": "01250", + "codeCommune": "01422", + "libelleAcheminement": "TOSSIAT", + "nomCommune": "TOSSIAT" }, { - "codePostal": "47370", - "codeCommune": "47312", - "libelleAcheminement": "TOURNON D AGENAIS", - "nomCommune": "TOURNON D AGENAIS" + "codePostal": "01370", + "codeCommune": "01426", + "libelleAcheminement": "VAL REVERMONT", + "nomCommune": "VAL REVERMONT" }, { - "codePostal": "47230", - "codeCommune": "47327", - "libelleAcheminement": "XAINTRAILLES", - "nomCommune": "XAINTRAILLES" + "codePostal": "01600", + "codeCommune": "01427", + "libelleAcheminement": "TREVOUX", + "nomCommune": "TREVOUX" }, { - "codePostal": "48200", - "codeCommune": "48002", - "libelleAcheminement": "ALBARET STE MARIE", - "nomCommune": "ALBARET STE MARIE" + "codePostal": "01140", + "codeCommune": "01428", + "libelleAcheminement": "VALEINS", + "nomCommune": "VALEINS" }, { - "codePostal": "48130", - "codeCommune": "48009", - "libelleAcheminement": "PEYRE EN AUBRAC", - "nomCommune": "PEYRE EN AUBRAC" + "codePostal": "01160", + "codeCommune": "01430", + "libelleAcheminement": "VARAMBON", + "nomCommune": "VARAMBON" }, { - "codePostal": "48130", - "codeCommune": "48009", - "libelleAcheminement": "PEYRE EN AUBRAC", - "nomCommune": "PEYRE EN AUBRAC" + "codePostal": "01150", + "codeCommune": "01431", + "libelleAcheminement": "VAUX EN BUGEY", + "nomCommune": "VAUX EN BUGEY" }, { - "codePostal": "48130", - "codeCommune": "48009", - "libelleAcheminement": "PEYRE EN AUBRAC", - "nomCommune": "PEYRE EN AUBRAC" + "codePostal": "01330", + "codeCommune": "01434", + "libelleAcheminement": "VERSAILLEUX", + "nomCommune": "VERSAILLEUX" }, { - "codePostal": "48600", - "codeCommune": "48010", - "libelleAcheminement": "AUROUX", - "nomCommune": "AUROUX" + "codePostal": "01330", + "codeCommune": "01443", + "libelleAcheminement": "VILLARS LES DOMBES", + "nomCommune": "VILLARS LES DOMBES" }, { - "codePostal": "48200", - "codeCommune": "48012", - "libelleAcheminement": "LES MONTS VERTS", - "nomCommune": "LES MONTS VERTS" + "codePostal": "01270", + "codeCommune": "01445", + "libelleAcheminement": "VILLEMOTIER", + "nomCommune": "VILLEMOTIER" }, { - "codePostal": "48000", - "codeCommune": "48016", - "libelleAcheminement": "BALSIEGES", - "nomCommune": "BALSIEGES" + "codePostal": "01320", + "codeCommune": "01449", + "libelleAcheminement": "VILLETTE SUR AIN", + "nomCommune": "VILLETTE SUR AIN" }, { - "codePostal": "48500", - "codeCommune": "48017", - "libelleAcheminement": "BANASSAC CANILHAC", - "nomCommune": "BANASSAC CANILHAC" + "codePostal": "01440", + "codeCommune": "01451", + "libelleAcheminement": "VIRIAT", + "nomCommune": "VIRIAT" }, { - "codePostal": "48500", - "codeCommune": "48017", - "libelleAcheminement": "BANASSAC CANILHAC", - "nomCommune": "BANASSAC CANILHAC" + "codePostal": "02340", + "codeCommune": "02004", + "libelleAcheminement": "AGNICOURT ET SECHELLES", + "nomCommune": "AGNICOURT ET SECHELLES" }, { - "codePostal": "48190", - "codeCommune": "48027", - "libelleAcheminement": "MONT LOZERE ET GOULET", - "nomCommune": "MONT LOZERE ET GOULET" + "codePostal": "01500", + "codeCommune": "01004", + "libelleAcheminement": "AMBERIEU EN BUGEY", + "nomCommune": "AMBERIEU EN BUGEY" }, { - "codePostal": "48000", - "codeCommune": "48029", - "libelleAcheminement": "LE BORN", - "nomCommune": "LE BORN" + "codePostal": "02370", + "codeCommune": "02008", + "libelleAcheminement": "AIZY JOUY", + "nomCommune": "AIZY JOUY" }, { - "codePostal": "48100", - "codeCommune": "48032", - "libelleAcheminement": "LE BUISSON", - "nomCommune": "LE BUISSON" + "codePostal": "01380", + "codeCommune": "01025", + "libelleAcheminement": "BAGE DOMMARTIN", + "nomCommune": "BAGE DOMMARTIN" }, { - "codePostal": "48500", - "codeCommune": "48034", - "libelleAcheminement": "LA CANOURGUE", - "nomCommune": "LA CANOURGUE" + "codePostal": "02290", + "codeCommune": "02011", + "libelleAcheminement": "AMBLENY", + "nomCommune": "AMBLENY" }, { - "codePostal": "48230", - "codeCommune": "48056", - "libelleAcheminement": "ESCLANEDES", - "nomCommune": "ESCLANEDES" + "codePostal": "01270", + "codeCommune": "01029", + "libelleAcheminement": "BEAUPONT", + "nomCommune": "BEAUPONT" }, { - "codePostal": "48200", - "codeCommune": "48059", - "libelleAcheminement": "LA FAGE ST JULIEN", - "nomCommune": "LA FAGE ST JULIEN" + "codePostal": "02190", + "codeCommune": "02013", + "libelleAcheminement": "AMIFONTAINE", + "nomCommune": "AMIFONTAINE" }, { - "codePostal": "48700", - "codeCommune": "48063", - "libelleAcheminement": "FONTANS", - "nomCommune": "FONTANS" + "codePostal": "01200", + "codeCommune": "01033", + "libelleAcheminement": "VALSERHONE", + "nomCommune": "VALSERHONE" }, { - "codePostal": "48310", - "codeCommune": "48064", - "libelleAcheminement": "FOURNELS", - "nomCommune": "FOURNELS" + "codePostal": "02320", + "codeCommune": "02018", + "libelleAcheminement": "ANIZY LE GRAND", + "nomCommune": "ANIZY LE GRAND" }, { - "codePostal": "48400", - "codeCommune": "48065", - "libelleAcheminement": "FRAISSINET DE FOURQUES", - "nomCommune": "FRAISSINET DE FOURQUES" + "codePostal": "01200", + "codeCommune": "01033", + "libelleAcheminement": "VALSERHONE", + "nomCommune": "VALSERHONE" }, { - "codePostal": "48110", - "codeCommune": "48067", - "libelleAcheminement": "GABRIAC", - "nomCommune": "GABRIAC" + "codePostal": "02130", + "codeCommune": "02022", + "libelleAcheminement": "ARCY STE RESTITUE", + "nomCommune": "ARCY STE RESTITUE" }, { - "codePostal": "48260", - "codeCommune": "48071", - "libelleAcheminement": "GRANDVALS", - "nomCommune": "GRANDVALS" + "codePostal": "01200", + "codeCommune": "01033", + "libelleAcheminement": "VALSERHONE", + "nomCommune": "VALSERHONE" }, { - "codePostal": "48170", - "codeCommune": "48082", - "libelleAcheminement": "LAUBERT", - "nomCommune": "LAUBERT" + "codePostal": "02000", + "codeCommune": "02037", + "libelleAcheminement": "AULNOIS SOUS LAON", + "nomCommune": "AULNOIS SOUS LAON" }, { - "codePostal": "48700", - "codeCommune": "48083", - "libelleAcheminement": "LES LAUBIES", - "nomCommune": "LES LAUBIES" + "codePostal": "01700", + "codeCommune": "01043", + "libelleAcheminement": "BEYNOST", + "nomCommune": "BEYNOST" }, { - "codePostal": "48500", - "codeCommune": "48085", - "libelleAcheminement": "LAVAL DU TARN", - "nomCommune": "LAVAL DU TARN" + "codePostal": "02250", + "codeCommune": "02039", + "libelleAcheminement": "AUTREMENCOURT", + "nomCommune": "AUTREMENCOURT" }, { - "codePostal": "48210", - "codeCommune": "48088", - "libelleAcheminement": "LA MALENE", - "nomCommune": "LA MALENE" + "codePostal": "01330", + "codeCommune": "01045", + "libelleAcheminement": "BIRIEUX", + "nomCommune": "BIRIEUX" }, { - "codePostal": "48140", - "codeCommune": "48089", - "libelleAcheminement": "LE MALZIEU FORAIN", - "nomCommune": "LE MALZIEU FORAIN" + "codePostal": "02580", + "codeCommune": "02040", + "libelleAcheminement": "AUTREPPES", + "nomCommune": "AUTREPPES" }, { - "codePostal": "48140", - "codeCommune": "48090", - "libelleAcheminement": "LE MALZIEU VILLE", - "nomCommune": "LE MALZIEU VILLE" + "codePostal": "01000", + "codeCommune": "01053", + "libelleAcheminement": "BOURG EN BRESSE", + "nomCommune": "BOURG EN BRESSE" }, { - "codePostal": "48260", - "codeCommune": "48091", - "libelleAcheminement": "MARCHASTEL", - "nomCommune": "MARCHASTEL" + "codePostal": "02140", + "codeCommune": "02044", + "libelleAcheminement": "BANCIGNY", + "nomCommune": "BANCIGNY" }, { - "codePostal": "48100", - "codeCommune": "48092", - "libelleAcheminement": "MARVEJOLS", - "nomCommune": "MARVEJOLS" + "codePostal": "01640", + "codeCommune": "01056", + "libelleAcheminement": "BOYEUX ST JEROME", + "nomCommune": "BOYEUX ST JEROME" }, { - "codePostal": "48110", - "codeCommune": "48098", - "libelleAcheminement": "MOLEZON", - "nomCommune": "MOLEZON" + "codePostal": "02700", + "codeCommune": "02049", + "libelleAcheminement": "BARISIS AUX BOIS", + "nomCommune": "BARISIS AUX BOIS" }, { - "codePostal": "48170", - "codeCommune": "48100", - "libelleAcheminement": "MONTBEL", - "nomCommune": "MONTBEL" + "codePostal": "01170", + "codeCommune": "01071", + "libelleAcheminement": "CESSY", + "nomCommune": "CESSY" }, { - "codePostal": "48260", - "codeCommune": "48104", - "libelleAcheminement": "NASBINALS", - "nomCommune": "NASBINALS" + "codePostal": "02850", + "codeCommune": "02051", + "libelleAcheminement": "BARZY SUR MARNE", + "nomCommune": "BARZY SUR MARNE" }, { - "codePostal": "48300", - "codeCommune": "48105", - "libelleAcheminement": "NAUSSAC FONTANES", - "nomCommune": "NAUSSAC FONTANES" + "codePostal": "01250", + "codeCommune": "01072", + "libelleAcheminement": "CEYZERIAT", + "nomCommune": "CEYZERIAT" }, { - "codePostal": "48220", - "codeCommune": "48116", - "libelleAcheminement": "PONT DE MONTVERT SUD MONT LOZERE", - "nomCommune": "PONT DE MONTVERT SUD MONT LOZERE" + "codePostal": "02330", + "codeCommune": "02053", + "libelleAcheminement": "VALLEES EN CHAMPAGNE", + "nomCommune": "VALLEES EN CHAMPAGNE" }, { - "codePostal": "48800", - "codeCommune": "48119", - "libelleAcheminement": "PREVENCHERES", - "nomCommune": "PREVENCHERES" + "codePostal": "01350", + "codeCommune": "01073", + "libelleAcheminement": "CEYZERIEU", + "nomCommune": "CEYZERIEU" }, { - "codePostal": "48100", - "codeCommune": "48126", - "libelleAcheminement": "LACHAMP RIBENNES", - "nomCommune": "LACHAMP RIBENNES" + "codePostal": "02220", + "codeCommune": "02054", + "libelleAcheminement": "BAZOCHES ET ST THIBAUT", + "nomCommune": "BAZOCHES ET ST THIBAUT" }, { - "codePostal": "48700", - "codeCommune": "48127", - "libelleAcheminement": "MONTS DE RANDON", - "nomCommune": "MONTS DE RANDON" + "codePostal": "01260", + "codeCommune": "01079", + "libelleAcheminement": "CHAMPAGNE EN VALROMEY", + "nomCommune": "CHAMPAGNE EN VALROMEY" }, { - "codePostal": "48700", - "codeCommune": "48127", - "libelleAcheminement": "MONTS DE RANDON", - "nomCommune": "MONTS DE RANDON" + "codePostal": "02160", + "codeCommune": "02058", + "libelleAcheminement": "BEAURIEUX", + "nomCommune": "BEAURIEUX" }, { - "codePostal": "48150", - "codeCommune": "48131", - "libelleAcheminement": "LE ROZIER", - "nomCommune": "LE ROZIER" + "codePostal": "01260", + "codeCommune": "01079", + "libelleAcheminement": "CHAMPAGNE EN VALROMEY", + "nomCommune": "CHAMPAGNE EN VALROMEY" }, { - "codePostal": "48800", - "codeCommune": "48135", - "libelleAcheminement": "ST ANDRE CAPCEZE", - "nomCommune": "ST ANDRE CAPCEZE" + "codePostal": "02200", + "codeCommune": "02064", + "libelleAcheminement": "BELLEU", + "nomCommune": "BELLEU" }, { - "codePostal": "48210", - "codeCommune": "48146", - "libelleAcheminement": "GORGES DU TARN CAUSSES", - "nomCommune": "GORGES DU TARN CAUSSES" + "codePostal": "01800", + "codeCommune": "01088", + "libelleAcheminement": "CHARNOZ SUR AIN", + "nomCommune": "CHARNOZ SUR AIN" }, { - "codePostal": "48320", - "codeCommune": "48146", - "libelleAcheminement": "GORGES DU TARN CAUSSES", - "nomCommune": "GORGES DU TARN CAUSSES" + "codePostal": "02250", + "codeCommune": "02068", + "libelleAcheminement": "BERLANCOURT", + "nomCommune": "BERLANCOURT" }, { - "codePostal": "48100", - "codeCommune": "48165", - "libelleAcheminement": "ST LAURENT DE MURET", - "nomCommune": "ST LAURENT DE MURET" + "codePostal": "01400", + "codeCommune": "01093", + "libelleAcheminement": "CHATILLON SUR CHALARONNE", + "nomCommune": "CHATILLON SUR CHALARONNE" }, { - "codePostal": "48400", - "codeCommune": "48166", - "libelleAcheminement": "CANS ET CEVENNES", - "nomCommune": "CANS ET CEVENNES" + "codePostal": "02820", + "codeCommune": "02072", + "libelleAcheminement": "BERRIEUX", + "nomCommune": "BERRIEUX" }, { - "codePostal": "48230", - "codeCommune": "48185", - "libelleAcheminement": "LES SALELLES", - "nomCommune": "LES SALELLES" + "codePostal": "01660", + "codeCommune": "01096", + "libelleAcheminement": "CHAVEYRIAT", + "nomCommune": "CHAVEYRIAT" }, { - "codePostal": "49700", - "codeCommune": "49003", - "libelleAcheminement": "TUFFALUN", - "nomCommune": "TUFFALUN" + "codePostal": "02500", + "codeCommune": "02079", + "libelleAcheminement": "BESMONT", + "nomCommune": "BESMONT" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "01510", + "codeCommune": "01100", + "libelleAcheminement": "CHEIGNIEU LA BALME", + "nomCommune": "CHEIGNIEU LA BALME" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "02310", + "codeCommune": "02084", + "libelleAcheminement": "BEZU LE GUERY", + "nomCommune": "BEZU LE GUERY" }, { - "codePostal": "49600", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "01200", + "codeCommune": "01104", + "libelleAcheminement": "CHEZERY FORENS", + "nomCommune": "CHEZERY FORENS" }, { - "codePostal": "49170", - "codeCommune": "49028", - "libelleAcheminement": "BEHUARD", - "nomCommune": "BEHUARD" + "codePostal": "02200", + "codeCommune": "02089", + "libelleAcheminement": "BILLY SUR AISNE", + "nomCommune": "BILLY SUR AISNE" }, { - "codePostal": "49320", - "codeCommune": "49029", - "libelleAcheminement": "BLAISON ST SULPICE", - "nomCommune": "BLAISON ST SULPICE" + "codePostal": "01390", + "codeCommune": "01105", + "libelleAcheminement": "CIVRIEUX", + "nomCommune": "CIVRIEUX" }, { - "codePostal": "49080", - "codeCommune": "49035", - "libelleAcheminement": "BOUCHEMAINE", - "nomCommune": "BOUCHEMAINE" + "codePostal": "02400", + "codeCommune": "02094", + "libelleAcheminement": "BLESMES", + "nomCommune": "BLESMES" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "01250", + "codeCommune": "01106", + "libelleAcheminement": "CIZE", + "nomCommune": "CIZE" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "02400", + "codeCommune": "02099", + "libelleAcheminement": "BONNESVALYN", + "nomCommune": "BONNESVALYN" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "01230", + "codeCommune": "01107", + "libelleAcheminement": "CLEYZIEU", + "nomCommune": "CLEYZIEU" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "02250", + "codeCommune": "02101", + "libelleAcheminement": "BOSMONT SUR SERRE", + "nomCommune": "BOSMONT SUR SERRE" }, { - "codePostal": "49440", - "codeCommune": "49054", - "libelleAcheminement": "CANDE", - "nomCommune": "CANDE" + "codePostal": "01270", + "codeCommune": "01108", + "libelleAcheminement": "COLIGNY", + "nomCommune": "COLIGNY" }, { - "codePostal": "49220", - "codeCommune": "49067", - "libelleAcheminement": "CHENILLE CHAMPTEUSSE", - "nomCommune": "CHENILLE CHAMPTEUSSE" + "codePostal": "02160", + "codeCommune": "02104", + "libelleAcheminement": "BOUFFIGNEREUX", + "nomCommune": "BOUFFIGNEREUX" }, { - "codePostal": "49270", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "01200", + "codeCommune": "01114", + "libelleAcheminement": "CONFORT", + "nomCommune": "CONFORT" }, { - "codePostal": "49270", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "02300", + "codeCommune": "02107", + "libelleAcheminement": "BOURGUIGNON SOUS COUCY", + "nomCommune": "BOURGUIGNON SOUS COUCY" }, { - "codePostal": "49530", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "01310", + "codeCommune": "01115", + "libelleAcheminement": "CONFRANCON", + "nomCommune": "CONFRANCON" }, { - "codePostal": "49330", - "codeCommune": "49080", - "libelleAcheminement": "LES HAUTS D ANJOU", - "nomCommune": "LES HAUTS D ANJOU" + "codePostal": "02320", + "codeCommune": "02111", + "libelleAcheminement": "BRANCOURT EN LAONNOIS", + "nomCommune": "BRANCOURT EN LAONNOIS" }, { - "codePostal": "49290", - "codeCommune": "49082", - "libelleAcheminement": "CHAUDEFONDS SUR LAYON", - "nomCommune": "CHAUDEFONDS SUR LAYON" + "codePostal": "01420", + "codeCommune": "01118", + "libelleAcheminement": "CORBONOD", + "nomCommune": "CORBONOD" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "02000", + "codeCommune": "02115", + "libelleAcheminement": "BRAYE EN LAONNOIS", + "nomCommune": "BRAYE EN LAONNOIS" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "01110", + "codeCommune": "01121", + "libelleAcheminement": "CORLIER", + "nomCommune": "CORLIER" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "02220", + "codeCommune": "02120", + "libelleAcheminement": "BRENELLE", + "nomCommune": "BRENELLE" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "01370", + "codeCommune": "01127", + "libelleAcheminement": "COURMANGOUX", + "nomCommune": "COURMANGOUX" }, { - "codePostal": "49300", - "codeCommune": "49099", - "libelleAcheminement": "CHOLET", - "nomCommune": "CHOLET" + "codePostal": "02870", + "codeCommune": "02122", + "libelleAcheminement": "BRIE", + "nomCommune": "BRIE" }, { - "codePostal": "49140", - "codeCommune": "49107", - "libelleAcheminement": "CORNILLE LES CAVES", - "nomCommune": "CORNILLE LES CAVES" + "codePostal": "01170", + "codeCommune": "01135", + "libelleAcheminement": "CROZET", + "nomCommune": "CROZET" }, { - "codePostal": "49390", - "codeCommune": "49114", - "libelleAcheminement": "COURLEON", - "nomCommune": "COURLEON" + "codePostal": "02860", + "codeCommune": "02128", + "libelleAcheminement": "BRUYERES ET MONTBERAULT", + "nomCommune": "BRUYERES ET MONTBERAULT" }, { - "codePostal": "49700", - "codeCommune": "49125", - "libelleAcheminement": "DOUE EN ANJOU", - "nomCommune": "DOUE EN ANJOU" + "codePostal": "01290", + "codeCommune": "01136", + "libelleAcheminement": "CRUZILLES LES MEPILLAT", + "nomCommune": "CRUZILLES LES MEPILLAT" }, { - "codePostal": "49700", - "codeCommune": "49125", - "libelleAcheminement": "DOUE EN ANJOU", - "nomCommune": "DOUE EN ANJOU" + "codePostal": "02300", + "codeCommune": "02140", + "libelleAcheminement": "CAMELIN", + "nomCommune": "CAMELIN" }, { - "codePostal": "49000", - "codeCommune": "49129", - "libelleAcheminement": "ECOUFLANT", - "nomCommune": "ECOUFLANT" + "codePostal": "01090", + "codeCommune": "01165", + "libelleAcheminement": "FRANCHELEINS", + "nomCommune": "FRANCHELEINS" }, { - "codePostal": "49250", - "codeCommune": "49138", - "libelleAcheminement": "LES BOIS D ANJOU", - "nomCommune": "LES BOIS D ANJOU" + "codePostal": "02680", + "codeCommune": "02142", + "libelleAcheminement": "CASTRES", + "nomCommune": "CASTRES" }, { - "codePostal": "49610", - "codeCommune": "49167", - "libelleAcheminement": "LES GARENNES SUR LOIRE", - "nomCommune": "LES GARENNES SUR LOIRE" + "codePostal": "01140", + "codeCommune": "01167", + "libelleAcheminement": "GARNERANS", + "nomCommune": "GARNERANS" }, { - "codePostal": "49430", - "codeCommune": "49174", - "libelleAcheminement": "HUILLE LEZIGNE", - "nomCommune": "HUILLE LEZIGNE" + "codePostal": "02000", + "codeCommune": "02155", + "libelleAcheminement": "CHAILLEVOIS", + "nomCommune": "CHAILLEVOIS" }, { - "codePostal": "49430", - "codeCommune": "49174", - "libelleAcheminement": "HUILLE LEZIGNE", - "nomCommune": "HUILLE LEZIGNE" + "codePostal": "01460", + "codeCommune": "01170", + "libelleAcheminement": "BEARD GEOVREISSIAT", + "nomCommune": "BEARD GEOVREISSIAT" }, { - "codePostal": "49220", - "codeCommune": "49176", - "libelleAcheminement": "LE LION D ANGERS", - "nomCommune": "LE LION D ANGERS" + "codePostal": "02370", + "codeCommune": "02167", + "libelleAcheminement": "CHASSEMY", + "nomCommune": "CHASSEMY" }, { - "codePostal": "49700", - "codeCommune": "49182", - "libelleAcheminement": "LOURESSE ROCHEMENIER", - "nomCommune": "LOURESSE ROCHEMENIER" + "codePostal": "01170", + "codeCommune": "01173", + "libelleAcheminement": "GEX", + "nomCommune": "GEX" }, { - "codePostal": "49630", - "codeCommune": "49194", - "libelleAcheminement": "MAZE MILON", - "nomCommune": "MAZE MILON" + "codePostal": "02400", + "codeCommune": "02168", + "libelleAcheminement": "CHATEAU THIERRY", + "nomCommune": "CHATEAU THIERRY" }, { - "codePostal": "49430", - "codeCommune": "49209", - "libelleAcheminement": "MONTIGNE LES RAIRIES", - "nomCommune": "MONTIGNE LES RAIRIES" + "codePostal": "01130", + "codeCommune": "01174", + "libelleAcheminement": "GIRON", + "nomCommune": "GIRON" }, { - "codePostal": "49260", - "codeCommune": "49215", - "libelleAcheminement": "MONTREUIL BELLAY", - "nomCommune": "MONTREUIL BELLAY" + "codePostal": "02270", + "codeCommune": "02169", + "libelleAcheminement": "CHATILLON LES SONS", + "nomCommune": "CHATILLON LES SONS" }, { - "codePostal": "49220", - "codeCommune": "49217", - "libelleAcheminement": "MONTREUIL SUR MAINE", - "nomCommune": "MONTREUIL SUR MAINE" + "codePostal": "01220", + "codeCommune": "01180", + "libelleAcheminement": "GRILLY", + "nomCommune": "GRILLY" }, { - "codePostal": "49110", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "02240", + "codeCommune": "02170", + "libelleAcheminement": "CHATILLON SUR OISE", + "nomCommune": "CHATILLON SUR OISE" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "01090", + "codeCommune": "01183", + "libelleAcheminement": "GUEREINS", + "nomCommune": "GUEREINS" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "02220", + "codeCommune": "02179", + "libelleAcheminement": "CHERY CHARTREUVE", + "nomCommune": "CHERY CHARTREUVE" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "01110", + "codeCommune": "01185", + "libelleAcheminement": "PLATEAU D HAUTEVILLE", + "nomCommune": "PLATEAU D HAUTEVILLE" }, { - "codePostal": "49410", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "02000", + "codeCommune": "02180", + "libelleAcheminement": "CHERY LES POUILLY", + "nomCommune": "CHERY LES POUILLY" }, { - "codePostal": "49170", - "codeCommune": "49247", - "libelleAcheminement": "LA POSSONNIERE", - "nomCommune": "LA POSSONNIERE" + "codePostal": "01640", + "codeCommune": "01199", + "libelleAcheminement": "JUJURIEUX", + "nomCommune": "JUJURIEUX" }, { - "codePostal": "49420", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "02120", + "codeCommune": "02188", + "libelleAcheminement": "CHIGNY", + "nomCommune": "CHIGNY" }, { - "codePostal": "49420", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "01330", + "codeCommune": "01207", + "libelleAcheminement": "LAPEYROUSE", + "nomCommune": "LAPEYROUSE" }, { - "codePostal": "49520", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "02250", + "codeCommune": "02194", + "libelleAcheminement": "CILLY", + "nomCommune": "CILLY" }, { - "codePostal": "49520", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "01360", + "codeCommune": "01224", + "libelleAcheminement": "LOYETTES", + "nomCommune": "LOYETTES" }, { - "codePostal": "49520", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "02340", + "codeCommune": "02200", + "libelleAcheminement": "CLERMONT LES FERMES", + "nomCommune": "CLERMONT LES FERMES" }, { - "codePostal": "49320", - "codeCommune": "49261", - "libelleAcheminement": "GENNES VAL DE LOIRE", - "nomCommune": "GENNES VAL DE LOIRE" + "codePostal": "01430", + "codeCommune": "01228", + "libelleAcheminement": "MAILLAT", + "nomCommune": "MAILLAT" }, { - "codePostal": "49350", - "codeCommune": "49261", - "libelleAcheminement": "GENNES VAL DE LOIRE", - "nomCommune": "GENNES VAL DE LOIRE" + "codePostal": "02360", + "codeCommune": "02204", + "libelleAcheminement": "COINGT", + "nomCommune": "COINGT" }, { - "codePostal": "49350", - "codeCommune": "49261", - "libelleAcheminement": "GENNES VAL DE LOIRE", - "nomCommune": "GENNES VAL DE LOIRE" + "codePostal": "01340", + "codeCommune": "01229", + "libelleAcheminement": "MALAFRETAZ", + "nomCommune": "MALAFRETAZ" }, { - "codePostal": "49130", - "codeCommune": "49288", - "libelleAcheminement": "ST JEAN DE LA CROIX", - "nomCommune": "ST JEAN DE LA CROIX" + "codePostal": "02860", + "codeCommune": "02205", + "libelleAcheminement": "COLLIGIS CRANDELAIN", + "nomCommune": "COLLIGIS CRANDELAIN" }, { - "codePostal": "49450", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "01300", + "codeCommune": "01234", + "libelleAcheminement": "MARIGNIEU", + "nomCommune": "MARIGNIEU" }, { - "codePostal": "49710", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "02600", + "codeCommune": "02216", + "libelleAcheminement": "CORCY", + "nomCommune": "CORCY" }, { - "codePostal": "49140", - "codeCommune": "49307", - "libelleAcheminement": "LOIRE AUTHION", - "nomCommune": "LOIRE AUTHION" + "codePostal": "01600", + "codeCommune": "01238", + "libelleAcheminement": "MASSIEUX", + "nomCommune": "MASSIEUX" }, { - "codePostal": "49310", - "codeCommune": "49310", - "libelleAcheminement": "ST PAUL DU BOIS", - "nomCommune": "ST PAUL DU BOIS" + "codePostal": "02840", + "codeCommune": "02218", + "libelleAcheminement": "COUCY LES EPPES", + "nomCommune": "COUCY LES EPPES" }, { - "codePostal": "49112", - "codeCommune": "49323", - "libelleAcheminement": "VERRIERES EN ANJOU", - "nomCommune": "VERRIERES EN ANJOU" + "codePostal": "01580", + "codeCommune": "01240", + "libelleAcheminement": "MATAFELON GRANGES", + "nomCommune": "MATAFELON GRANGES" }, { - "codePostal": "49400", - "codeCommune": "49328", - "libelleAcheminement": "SAUMUR", - "nomCommune": "SAUMUR" + "codePostal": "02380", + "codeCommune": "02219", + "libelleAcheminement": "COUCY LA VILLE", + "nomCommune": "COUCY LA VILLE" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "01580", + "codeCommune": "01240", + "libelleAcheminement": "MATAFELON GRANGES", + "nomCommune": "MATAFELON GRANGES" }, { - "codePostal": "49520", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "02130", + "codeCommune": "02220", + "libelleAcheminement": "COULONGES COHAN", + "nomCommune": "COULONGES COHAN" }, { - "codePostal": "49280", - "codeCommune": "49332", - "libelleAcheminement": "LA SEGUINIERE", - "nomCommune": "LA SEGUINIERE" + "codePostal": "01250", + "codeCommune": "01245", + "libelleAcheminement": "BOHAS MEYRIAT RIGNAT", + "nomCommune": "BOHAS MEYRIAT RIGNAT" }, { - "codePostal": "49460", - "codeCommune": "49339", - "libelleAcheminement": "SOULAIRE ET BOURG", - "nomCommune": "SOULAIRE ET BOURG" + "codePostal": "02130", + "codeCommune": "02220", + "libelleAcheminement": "COULONGES COHAN", + "nomCommune": "COULONGES COHAN" }, { - "codePostal": "49380", - "codeCommune": "49345", - "libelleAcheminement": "BELLEVIGNE EN LAYON", - "nomCommune": "BELLEVIGNE EN LAYON" + "codePostal": "01250", + "codeCommune": "01245", + "libelleAcheminement": "BOHAS MEYRIAT RIGNAT", + "nomCommune": "BOHAS MEYRIAT RIGNAT" }, { - "codePostal": "49750", - "codeCommune": "49345", - "libelleAcheminement": "BELLEVIGNE EN LAYON", - "nomCommune": "BELLEVIGNE EN LAYON" + "codePostal": "02310", + "codeCommune": "02221", + "libelleAcheminement": "COUPRU", + "nomCommune": "COUPRU" }, { - "codePostal": "49220", - "codeCommune": "49367", - "libelleAcheminement": "ERDRE EN ANJOU", - "nomCommune": "ERDRE EN ANJOU" + "codePostal": "01390", + "codeCommune": "01248", + "libelleAcheminement": "MIONNAY", + "nomCommune": "MIONNAY" }, { - "codePostal": "49220", - "codeCommune": "49367", - "libelleAcheminement": "ERDRE EN ANJOU", - "nomCommune": "ERDRE EN ANJOU" + "codePostal": "02800", + "codeCommune": "02222", + "libelleAcheminement": "COURBES", + "nomCommune": "COURBES" }, { - "codePostal": "49370", - "codeCommune": "49367", - "libelleAcheminement": "ERDRE EN ANJOU", - "nomCommune": "ERDRE EN ANJOU" + "codePostal": "01700", + "codeCommune": "01249", + "libelleAcheminement": "MIRIBEL", + "nomCommune": "MIRIBEL" }, { - "codePostal": "49390", - "codeCommune": "49369", - "libelleAcheminement": "VERNOIL LE FOURRIER", - "nomCommune": "VERNOIL LE FOURRIER" + "codePostal": "02820", + "codeCommune": "02229", + "libelleAcheminement": "COURTRIZY ET FUSSIGNY", + "nomCommune": "COURTRIZY ET FUSSIGNY" }, { - "codePostal": "49400", - "codeCommune": "49370", - "libelleAcheminement": "VERRIE", - "nomCommune": "VERRIE" + "codePostal": "01700", + "codeCommune": "01249", + "libelleAcheminement": "MIRIBEL", + "nomCommune": "MIRIBEL" }, { - "codePostal": "49560", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "02270", + "codeCommune": "02231", + "libelleAcheminement": "COUVRON ET AUMENCOURT", + "nomCommune": "COUVRON ET AUMENCOURT" }, { - "codePostal": "50300", - "codeCommune": "50025", - "libelleAcheminement": "AVRANCHES", - "nomCommune": "AVRANCHES" + "codePostal": "01200", + "codeCommune": "01257", + "libelleAcheminement": "MONTANGES", + "nomCommune": "MONTANGES" }, { - "codePostal": "50310", - "codeCommune": "50026", - "libelleAcheminement": "AZEVILLE", - "nomCommune": "AZEVILLE" + "codePostal": "02360", + "codeCommune": "02251", + "libelleAcheminement": "CUIRY LES IVIERS", + "nomCommune": "CUIRY LES IVIERS" }, { - "codePostal": "50720", - "codeCommune": "50029", - "libelleAcheminement": "BARENTON", - "nomCommune": "BARENTON" + "codePostal": "01090", + "codeCommune": "01258", + "libelleAcheminement": "MONTCEAUX", + "nomCommune": "MONTCEAUX" }, { - "codePostal": "50270", - "codeCommune": "50033", - "libelleAcheminement": "BAUBIGNY", - "nomCommune": "BAUBIGNY" + "codePostal": "02700", + "codeCommune": "02262", + "libelleAcheminement": "DEUILLET", + "nomCommune": "DEUILLET" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "01390", + "codeCommune": "01261", + "libelleAcheminement": "MONTHIEUX", + "nomCommune": "MONTHIEUX" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "02500", + "codeCommune": "02275", + "libelleAcheminement": "EFFRY", + "nomCommune": "EFFRY" }, { - "codePostal": "50810", - "codeCommune": "50046", - "libelleAcheminement": "BERIGNY", - "nomCommune": "BERIGNY" + "codePostal": "01120", + "codeCommune": "01262", + "libelleAcheminement": "MONTLUEL", + "nomCommune": "MONTLUEL" }, { - "codePostal": "50800", - "codeCommune": "50060", - "libelleAcheminement": "LA BLOUTIERE", - "nomCommune": "LA BLOUTIERE" + "codePostal": "02260", + "codeCommune": "02276", + "libelleAcheminement": "ENGLANCOURT", + "nomCommune": "ENGLANCOURT" }, { - "codePostal": "50110", - "codeCommune": "50077", - "libelleAcheminement": "BRETTEVILLE", - "nomCommune": "BRETTEVILLE" + "codePostal": "01310", + "codeCommune": "01264", + "libelleAcheminement": "MONTRACOL", + "nomCommune": "MONTRACOL" }, { - "codePostal": "50430", - "codeCommune": "50078", - "libelleAcheminement": "BRETTEVILLE SUR AY", - "nomCommune": "BRETTEVILLE SUR AY" + "codePostal": "02290", + "codeCommune": "02277", + "libelleAcheminement": "EPAGNY", + "nomCommune": "EPAGNY" }, { - "codePostal": "50340", - "codeCommune": "50083", - "libelleAcheminement": "BRICQUEBOSQ", - "nomCommune": "BRICQUEBOSQ" + "codePostal": "01400", + "codeCommune": "01272", + "libelleAcheminement": "NEUVILLE LES DAMES", + "nomCommune": "NEUVILLE LES DAMES" }, { - "codePostal": "50330", - "codeCommune": "50086", - "libelleAcheminement": "BRILLEVAST", - "nomCommune": "BRILLEVAST" + "codePostal": "02500", + "codeCommune": "02278", + "libelleAcheminement": "EPARCY", + "nomCommune": "EPARCY" }, { - "codePostal": "50640", - "codeCommune": "50090", - "libelleAcheminement": "BUAIS LES MONTS", - "nomCommune": "BUAIS LES MONTS" + "codePostal": "01120", + "codeCommune": "01276", + "libelleAcheminement": "NIEVROZ", + "nomCommune": "NIEVROZ" }, { - "codePostal": "50330", - "codeCommune": "50096", - "libelleAcheminement": "CANTELOUP", - "nomCommune": "CANTELOUP" + "codePostal": "02260", + "codeCommune": "02284", + "libelleAcheminement": "ERLOY", + "nomCommune": "ERLOY" }, { - "codePostal": "50480", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "01230", + "codeCommune": "01277", + "libelleAcheminement": "NIVOLLET MONTGRIFFON", + "nomCommune": "NIVOLLET MONTGRIFFON" }, { - "codePostal": "50220", - "codeCommune": "50108", - "libelleAcheminement": "CEAUX", - "nomCommune": "CEAUX" + "codePostal": "02690", + "codeCommune": "02287", + "libelleAcheminement": "ESSIGNY LE GRAND", + "nomCommune": "ESSIGNY LE GRAND" }, { - "codePostal": "50680", - "codeCommune": "50110", - "libelleAcheminement": "CERISY LA FORET", - "nomCommune": "CERISY LA FORET" + "codePostal": "01190", + "codeCommune": "01284", + "libelleAcheminement": "OZAN", + "nomCommune": "OZAN" }, { - "codePostal": "50130", - "codeCommune": "50129", - "libelleAcheminement": "CHERBOURG EN COTENTIN", - "nomCommune": "CHERBOURG EN COTENTIN" + "codePostal": "02570", + "codeCommune": "02289", + "libelleAcheminement": "ESSISES", + "nomCommune": "ESSISES" }, { - "codePostal": "50890", - "codeCommune": "50139", - "libelleAcheminement": "CONDE SUR VIRE", - "nomCommune": "CONDE SUR VIRE" + "codePostal": "01300", + "codeCommune": "01286", + "libelleAcheminement": "PARVES ET NATTAGES", + "nomCommune": "PARVES ET NATTAGES" }, { - "codePostal": "50330", - "codeCommune": "50142", - "libelleAcheminement": "VICQ SUR MER", - "nomCommune": "VICQ SUR MER" + "codePostal": "02110", + "codeCommune": "02293", + "libelleAcheminement": "ETAVES ET BOCQUIAUX", + "nomCommune": "ETAVES ET BOCQUIAUX" }, { - "codePostal": "50330", - "codeCommune": "50142", - "libelleAcheminement": "VICQ SUR MER", - "nomCommune": "VICQ SUR MER" + "codePostal": "01540", + "codeCommune": "01291", + "libelleAcheminement": "PERREX", + "nomCommune": "PERREX" }, { - "codePostal": "50290", - "codeCommune": "50143", - "libelleAcheminement": "COUDEVILLE SUR MER", - "nomCommune": "COUDEVILLE SUR MER" + "codePostal": "02510", + "codeCommune": "02298", + "libelleAcheminement": "ETREUX", + "nomCommune": "ETREUX" }, { - "codePostal": "50670", - "codeCommune": "50144", - "libelleAcheminement": "COULOUVRAY BOISBENATRE", - "nomCommune": "COULOUVRAY BOISBENATRE" + "codePostal": "01190", + "codeCommune": "01305", + "libelleAcheminement": "PONT DE VAUX", + "nomCommune": "PONT DE VAUX" }, { - "codePostal": "50200", - "codeCommune": "50145", - "libelleAcheminement": "COURCY", - "nomCommune": "COURCY" + "codePostal": "02000", + "codeCommune": "02311", + "libelleAcheminement": "FILAIN", + "nomCommune": "FILAIN" }, { - "codePostal": "50690", - "codeCommune": "50149", - "libelleAcheminement": "COUVILLE", - "nomCommune": "COUVILLE" + "codePostal": "01550", + "codeCommune": "01308", + "libelleAcheminement": "POUGNY", + "nomCommune": "POUGNY" }, { - "codePostal": "50220", - "codeCommune": "50155", - "libelleAcheminement": "CROLLON", - "nomCommune": "CROLLON" + "codePostal": "02140", + "codeCommune": "02321", + "libelleAcheminement": "FONTAINE LES VERVINS", + "nomCommune": "FONTAINE LES VERVINS" }, { - "codePostal": "50840", - "codeCommune": "50178", - "libelleAcheminement": "FERMANVILLE", - "nomCommune": "FERMANVILLE" + "codePostal": "01280", + "codeCommune": "01313", + "libelleAcheminement": "PREVESSIN MOENS", + "nomCommune": "PREVESSIN MOENS" }, { - "codePostal": "50190", - "codeCommune": "50182", - "libelleAcheminement": "LA FEUILLIE", - "nomCommune": "LA FEUILLIE" + "codePostal": "02590", + "codeCommune": "02327", + "libelleAcheminement": "FORESTE", + "nomCommune": "FORESTE" }, { - "codePostal": "50340", - "codeCommune": "50184", - "libelleAcheminement": "FLAMANVILLE", - "nomCommune": "FLAMANVILLE" + "codePostal": "01990", + "codeCommune": "01319", + "libelleAcheminement": "RELEVANT", + "nomCommune": "RELEVANT" }, { - "codePostal": "50420", - "codeCommune": "50192", - "libelleAcheminement": "FOURNEAUX", - "nomCommune": "FOURNEAUX" + "codePostal": "02870", + "codeCommune": "02329", + "libelleAcheminement": "FOURDRAIN", + "nomCommune": "FOURDRAIN" }, { - "codePostal": "50850", - "codeCommune": "50193", - "libelleAcheminement": "LE FRESNE PORET", - "nomCommune": "LE FRESNE PORET" + "codePostal": "01600", + "codeCommune": "01322", + "libelleAcheminement": "REYRIEUX", + "nomCommune": "REYRIEUX" }, { - "codePostal": "50760", - "codeCommune": "50196", - "libelleAcheminement": "GATTEVILLE LE PHARE", - "nomCommune": "GATTEVILLE LE PHARE" + "codePostal": "02380", + "codeCommune": "02333", + "libelleAcheminement": "FRESNES SOUS COUCY", + "nomCommune": "FRESNES SOUS COUCY" }, { - "codePostal": "50450", - "codeCommune": "50197", - "libelleAcheminement": "GAVRAY SUR SIENNE", - "nomCommune": "GAVRAY SUR SIENNE" + "codePostal": "01400", + "codeCommune": "01328", + "libelleAcheminement": "ROMANS", + "nomCommune": "ROMANS" }, { - "codePostal": "50850", - "codeCommune": "50200", - "libelleAcheminement": "GER", - "nomCommune": "GER" + "codePostal": "02700", + "codeCommune": "02336", + "libelleAcheminement": "FRIERES FAILLOUEL", + "nomCommune": "FRIERES FAILLOUEL" }, { - "codePostal": "50300", - "codeCommune": "50205", - "libelleAcheminement": "LA GODEFROY", - "nomCommune": "LA GODEFROY" + "codePostal": "01260", + "codeCommune": "01330", + "libelleAcheminement": "RUFFIEU", + "nomCommune": "RUFFIEU" }, { - "codePostal": "50330", - "codeCommune": "50209", - "libelleAcheminement": "GONNEVILLE LE THEIL", - "nomCommune": "GONNEVILLE LE THEIL" + "codePostal": "02590", + "codeCommune": "02343", + "libelleAcheminement": "GERMAINE", + "nomCommune": "GERMAINE" }, { - "codePostal": "50200", - "codeCommune": "50215", - "libelleAcheminement": "GOUVILLE SUR MER", - "nomCommune": "GOUVILLE SUR MER" + "codePostal": "01240", + "codeCommune": "01335", + "libelleAcheminement": "ST ANDRE LE BOUCHOUX", + "nomCommune": "ST ANDRE LE BOUCHOUX" }, { - "codePostal": "50200", - "codeCommune": "50215", - "libelleAcheminement": "GOUVILLE SUR MER", - "nomCommune": "GOUVILLE SUR MER" + "codePostal": "02360", + "codeCommune": "02354", + "libelleAcheminement": "GRANDRIEUX", + "nomCommune": "GRANDRIEUX" }, { - "codePostal": "50560", - "codeCommune": "50215", - "libelleAcheminement": "GOUVILLE SUR MER", - "nomCommune": "GOUVILLE SUR MER" + "codePostal": "01600", + "codeCommune": "01339", + "libelleAcheminement": "ST BERNARD", + "nomCommune": "ST BERNARD" }, { - "codePostal": "50370", - "codeCommune": "50217", - "libelleAcheminement": "LE GRAND CELLAND", - "nomCommune": "LE GRAND CELLAND" + "codePostal": "02210", + "codeCommune": "02356", + "libelleAcheminement": "GRISOLLES", + "nomCommune": "GRISOLLES" }, { - "codePostal": "50400", - "codeCommune": "50218", - "libelleAcheminement": "GRANVILLE", - "nomCommune": "GRANVILLE" + "codePostal": "01800", + "codeCommune": "01349", + "libelleAcheminement": "ST ELOI", + "nomCommune": "ST ELOI" }, { - "codePostal": "50450", - "codeCommune": "50221", - "libelleAcheminement": "GRIMESNIL", - "nomCommune": "GRIMESNIL" + "codePostal": "02190", + "codeCommune": "02360", + "libelleAcheminement": "VILLENEUVE SUR AISNE", + "nomCommune": "VILLENEUVE SUR AISNE" }, { - "codePostal": "50340", - "codeCommune": "50222", - "libelleAcheminement": "GROSVILLE", - "nomCommune": "GROSVILLE" + "codePostal": "01140", + "codeCommune": "01351", + "libelleAcheminement": "ST ETIENNE SUR CHALARONNE", + "nomCommune": "ST ETIENNE SUR CHALARONNE" }, { - "codePostal": "50450", - "codeCommune": "50228", - "libelleAcheminement": "HAMBYE", - "nomCommune": "HAMBYE" + "codePostal": "02190", + "codeCommune": "02360", + "libelleAcheminement": "VILLENEUVE SUR AISNE", + "nomCommune": "VILLENEUVE SUR AISNE" }, { - "codePostal": "68510", - "codeCommune": "68341", - "libelleAcheminement": "UFFHEIM", - "nomCommune": "UFFHEIM" + "codePostal": "01630", + "codeCommune": "01360", + "libelleAcheminement": "ST JEAN DE GONVILLE", + "nomCommune": "ST JEAN DE GONVILLE" }, { - "codePostal": "68190", - "codeCommune": "68343", - "libelleAcheminement": "UNGERSHEIM", - "nomCommune": "UNGERSHEIM" + "codePostal": "02510", + "codeCommune": "02366", + "libelleAcheminement": "HANNAPES", + "nomCommune": "HANNAPES" }, { - "codePostal": "68480", - "codeCommune": "68347", - "libelleAcheminement": "VIEUX FERRETTE", - "nomCommune": "VIEUX FERRETTE" + "codePostal": "01560", + "codeCommune": "01364", + "libelleAcheminement": "ST JEAN SUR REYSSOUZE", + "nomCommune": "ST JEAN SUR REYSSOUZE" }, { - "codePostal": "68230", - "codeCommune": "68354", - "libelleAcheminement": "WALBACH", - "nomCommune": "WALBACH" + "codePostal": "02140", + "codeCommune": "02377", + "libelleAcheminement": "HAUTION", + "nomCommune": "HAUTION" }, { - "codePostal": "68700", - "codeCommune": "68359", - "libelleAcheminement": "WATTWILLER", - "nomCommune": "WATTWILLER" + "codePostal": "01150", + "codeCommune": "01366", + "libelleAcheminement": "STE JULIE", + "nomCommune": "STE JULIE" }, { - "codePostal": "68480", - "codeCommune": "68363", - "libelleAcheminement": "WERENTZHOUSE", - "nomCommune": "WERENTZHOUSE" + "codePostal": "02250", + "codeCommune": "02385", + "libelleAcheminement": "HOUSSET", + "nomCommune": "HOUSSET" }, { - "codePostal": "68320", - "codeCommune": "68367", - "libelleAcheminement": "WIDENSOLEN", - "nomCommune": "WIDENSOLEN" + "codePostal": "01390", + "codeCommune": "01371", + "libelleAcheminement": "ST MARCEL", + "nomCommune": "ST MARCEL" }, { - "codePostal": "68230", - "codeCommune": "68368", - "libelleAcheminement": "WIHR AU VAL", - "nomCommune": "WIHR AU VAL" + "codePostal": "02510", + "codeCommune": "02386", + "libelleAcheminement": "IRON", + "nomCommune": "IRON" }, { - "codePostal": "68124", - "codeCommune": "68374", - "libelleAcheminement": "WINTZENHEIM", - "nomCommune": "WINTZENHEIM" + "codePostal": "01510", + "codeCommune": "01372", + "libelleAcheminement": "ST MARTIN DE BAVEL", + "nomCommune": "ST MARTIN DE BAVEL" }, { - "codePostal": "68310", - "codeCommune": "68375", - "libelleAcheminement": "WITTELSHEIM", - "nomCommune": "WITTELSHEIM" + "codePostal": "02240", + "codeCommune": "02387", + "libelleAcheminement": "ITANCOURT", + "nomCommune": "ITANCOURT" }, { - "codePostal": "68480", - "codeCommune": "68380", - "libelleAcheminement": "WOLSCHWILLER", - "nomCommune": "WOLSCHWILLER" + "codePostal": "01400", + "codeCommune": "01393", + "libelleAcheminement": "SANDRANS", + "nomCommune": "SANDRANS" }, { - "codePostal": "68340", - "codeCommune": "68383", - "libelleAcheminement": "ZELLENBERG", - "nomCommune": "ZELLENBERG" + "codePostal": "02220", + "codeCommune": "02393", + "libelleAcheminement": "JOUAIGNES", + "nomCommune": "JOUAIGNES" }, { - "codePostal": "68720", - "codeCommune": "68384", - "libelleAcheminement": "ZILLISHEIM", - "nomCommune": "ZILLISHEIM" + "codePostal": "01630", + "codeCommune": "01401", + "libelleAcheminement": "SERGY", + "nomCommune": "SERGY" }, { - "codePostal": "68230", - "codeCommune": "68385", - "libelleAcheminement": "ZIMMERBACH", - "nomCommune": "ZIMMERBACH" + "codePostal": "02160", + "codeCommune": "02396", + "libelleAcheminement": "JUMIGNY", + "nomCommune": "JUMIGNY" }, { - "codePostal": "68440", - "codeCommune": "68386", - "libelleAcheminement": "ZIMMERSHEIM", - "nomCommune": "ZIMMERSHEIM" + "codePostal": "01190", + "codeCommune": "01402", + "libelleAcheminement": "SERMOYER", + "nomCommune": "SERMOYER" }, { - "codePostal": "69790", - "codeCommune": "69002", - "libelleAcheminement": "AIGUEPERSE", - "nomCommune": "AIGUEPERSE" + "codePostal": "02880", + "codeCommune": "02400", + "libelleAcheminement": "LAFFAUX", + "nomCommune": "LAFFAUX" }, { - "codePostal": "69490", - "codeCommune": "69008", - "libelleAcheminement": "ANCY", - "nomCommune": "ANCY" + "codePostal": "01470", + "codeCommune": "01403", + "libelleAcheminement": "SERRIERES DE BRIORD", + "nomCommune": "SERRIERES DE BRIORD" }, { - "codePostal": "69220", - "codeCommune": "69019", - "libelleAcheminement": "BELLEVILLE EN BEAUJOLAIS", - "nomCommune": "BELLEVILLE EN BEAUJOLAIS" + "codePostal": "02140", + "codeCommune": "02401", + "libelleAcheminement": "LAIGNY", + "nomCommune": "LAIGNY" }, { - "codePostal": "69380", - "codeCommune": "69020", - "libelleAcheminement": "BELMONT D AZERGUES", - "nomCommune": "BELMONT D AZERGUES" + "codePostal": "01960", + "codeCommune": "01405", + "libelleAcheminement": "SERVAS", + "nomCommune": "SERVAS" }, { - "codePostal": "69690", - "codeCommune": "69021", - "libelleAcheminement": "BESSENAY", - "nomCommune": "BESSENAY" + "codePostal": "02150", + "codeCommune": "02409", + "libelleAcheminement": "LAPPION", + "nomCommune": "LAPPION" }, { - "codePostal": "69690", - "codeCommune": "69022", - "libelleAcheminement": "BIBOST", - "nomCommune": "BIBOST" + "codePostal": "01250", + "codeCommune": "01408", + "libelleAcheminement": "SIMANDRE SUR SURAN", + "nomCommune": "SIMANDRE SUR SURAN" }, { - "codePostal": "69620", - "codeCommune": "69024", - "libelleAcheminement": "VAL D OINGT", - "nomCommune": "VAL D OINGT" + "codePostal": "02600", + "codeCommune": "02410", + "libelleAcheminement": "LARGNY SUR AUTOMNE", + "nomCommune": "LARGNY SUR AUTOMNE" }, { - "codePostal": "69530", - "codeCommune": "69027", - "libelleAcheminement": "BRIGNAIS", - "nomCommune": "BRIGNAIS" + "codePostal": "01150", + "codeCommune": "01411", + "libelleAcheminement": "SOUCLIN", + "nomCommune": "SOUCLIN" }, { - "codePostal": "69530", - "codeCommune": "69027", - "libelleAcheminement": "BRIGNAIS", - "nomCommune": "BRIGNAIS" + "codePostal": "02100", + "codeCommune": "02420", + "libelleAcheminement": "LESDINS", + "nomCommune": "LESDINS" }, { - "codePostal": "69500", - "codeCommune": "69029", - "libelleAcheminement": "BRON", - "nomCommune": "BRON" + "codePostal": "01230", + "codeCommune": "01416", + "libelleAcheminement": "TENAY", + "nomCommune": "TENAY" }, { - "codePostal": "69390", - "codeCommune": "69046", - "libelleAcheminement": "CHARLY", - "nomCommune": "CHARLY" + "codePostal": "02880", + "codeCommune": "02424", + "libelleAcheminement": "LEURY", + "nomCommune": "LEURY" }, { - "codePostal": "69380", - "codeCommune": "69047", - "libelleAcheminement": "CHARNAY", - "nomCommune": "CHARNAY" + "codePostal": "01710", + "codeCommune": "01419", + "libelleAcheminement": "THOIRY", + "nomCommune": "THOIRY" }, { - "codePostal": "69380", - "codeCommune": "69055", - "libelleAcheminement": "LES CHERES", - "nomCommune": "LES CHERES" + "codePostal": "02160", + "codeCommune": "02439", + "libelleAcheminement": "LES SEPTVALLONS", + "nomCommune": "LES SEPTVALLONS" }, { - "codePostal": "69640", - "codeCommune": "69061", - "libelleAcheminement": "COGNY", - "nomCommune": "COGNY" + "codePostal": "01600", + "codeCommune": "01423", + "libelleAcheminement": "TOUSSIEUX", + "nomCommune": "TOUSSIEUX" }, { - "codePostal": "69590", - "codeCommune": "69062", - "libelleAcheminement": "COISE", - "nomCommune": "COISE" + "codePostal": "02190", + "codeCommune": "02440", + "libelleAcheminement": "LOR", + "nomCommune": "LOR" }, { - "codePostal": "69420", - "codeCommune": "69064", - "libelleAcheminement": "CONDRIEU", - "nomCommune": "CONDRIEU" + "codePostal": "01370", + "codeCommune": "01426", + "libelleAcheminement": "VAL REVERMONT", + "nomCommune": "VAL REVERMONT" }, { - "codePostal": "69470", - "codeCommune": "69066", - "libelleAcheminement": "COURS", - "nomCommune": "COURS" + "codePostal": "02600", + "codeCommune": "02441", + "libelleAcheminement": "LOUATRE", + "nomCommune": "LOUATRE" }, { - "codePostal": "69690", - "codeCommune": "69067", - "libelleAcheminement": "COURZIEU", - "nomCommune": "COURZIEU" + "codePostal": "01210", + "codeCommune": "01435", + "libelleAcheminement": "VERSONNEX", + "nomCommune": "VERSONNEX" }, { - "codePostal": "69550", - "codeCommune": "69070", - "libelleAcheminement": "CUBLIZE", - "nomCommune": "CUBLIZE" + "codePostal": "02400", + "codeCommune": "02443", + "libelleAcheminement": "LUCY LE BOCAGE", + "nomCommune": "LUCY LE BOCAGE" }, { - "codePostal": "69270", - "codeCommune": "69088", - "libelleAcheminement": "FONTAINES SUR SAONE", - "nomCommune": "FONTAINES SUR SAONE" + "codePostal": "01560", + "codeCommune": "01437", + "libelleAcheminement": "VESCOURS", + "nomCommune": "VESCOURS" }, { - "codePostal": "69340", - "codeCommune": "69089", - "libelleAcheminement": "FRANCHEVILLE", - "nomCommune": "FRANCHEVILLE" + "codePostal": "02140", + "codeCommune": "02444", + "libelleAcheminement": "LUGNY", + "nomCommune": "LUGNY" }, { - "codePostal": "69700", - "codeCommune": "69091", - "libelleAcheminement": "GIVORS", - "nomCommune": "GIVORS" + "codePostal": "01480", + "codeCommune": "01446", + "libelleAcheminement": "VILLENEUVE", + "nomCommune": "VILLENEUVE" }, { - "codePostal": "69610", - "codeCommune": "69095", - "libelleAcheminement": "GREZIEU LE MARCHE", - "nomCommune": "GREZIEU LE MARCHE" + "codePostal": "02220", + "codeCommune": "02447", + "libelleAcheminement": "MAAST ET VIOLAINE", + "nomCommune": "MAAST ET VIOLAINE" }, { - "codePostal": "69620", - "codeCommune": "69113", - "libelleAcheminement": "LETRA", - "nomCommune": "LETRA" + "codePostal": "01250", + "codeCommune": "01447", + "libelleAcheminement": "VILLEREVERSURE", + "nomCommune": "VILLEREVERSURE" }, { - "codePostal": "69480", - "codeCommune": "69126", - "libelleAcheminement": "MARCY", - "nomCommune": "MARCY" + "codePostal": "02120", + "codeCommune": "02450", + "libelleAcheminement": "MACQUIGNY", + "nomCommune": "MACQUIGNY" }, { - "codePostal": "69390", - "codeCommune": "69133", - "libelleAcheminement": "MILLERY", - "nomCommune": "MILLERY" + "codePostal": "01800", + "codeCommune": "01450", + "libelleAcheminement": "VILLIEU LOYES MOLLON", + "nomCommune": "VILLIEU LOYES MOLLON" }, { - "codePostal": "69620", - "codeCommune": "69134", - "libelleAcheminement": "MOIRE", - "nomCommune": "MOIRE" + "codePostal": "02160", + "codeCommune": "02453", + "libelleAcheminement": "MAIZY", + "nomCommune": "MAIZY" }, { - "codePostal": "69860", - "codeCommune": "69135", - "libelleAcheminement": "DEUX GROSNES", - "nomCommune": "DEUX GROSNES" + "codePostal": "02190", + "codeCommune": "02005", + "libelleAcheminement": "AGUILCOURT", + "nomCommune": "AGUILCOURT" }, { - "codePostal": "69640", - "codeCommune": "69137", - "libelleAcheminement": "MONTMELAS ST SORLIN", - "nomCommune": "MONTMELAS ST SORLIN" + "codePostal": "02120", + "codeCommune": "02455", + "libelleAcheminement": "MALZY", + "nomCommune": "MALZY" }, { - "codePostal": "69770", - "codeCommune": "69139", - "libelleAcheminement": "MONTROTTIER", - "nomCommune": "MONTROTTIER" + "codePostal": "02370", + "codeCommune": "02008", + "libelleAcheminement": "AIZY JOUY", + "nomCommune": "AIZY JOUY" }, { - "codePostal": "69480", - "codeCommune": "69140", - "libelleAcheminement": "MORANCE", - "nomCommune": "MORANCE" + "codePostal": "02130", + "codeCommune": "02462", + "libelleAcheminement": "MAREUIL EN DOLE", + "nomCommune": "MAREUIL EN DOLE" }, { - "codePostal": "69440", - "codeCommune": "69141", - "libelleAcheminement": "MORNANT", - "nomCommune": "MORNANT" + "codePostal": "02600", + "codeCommune": "02015", + "libelleAcheminement": "ANCIENVILLE", + "nomCommune": "ANCIENVILLE" }, { - "codePostal": "69250", - "codeCommune": "69143", - "libelleAcheminement": "NEUVILLE SUR SAONE", - "nomCommune": "NEUVILLE SUR SAONE" + "codePostal": "02470", + "codeCommune": "02467", + "libelleAcheminement": "MARIZY ST MARD", + "nomCommune": "MARIZY ST MARD" }, { - "codePostal": "69460", - "codeCommune": "69145", - "libelleAcheminement": "ODENAS", - "nomCommune": "ODENAS" + "codePostal": "02320", + "codeCommune": "02018", + "libelleAcheminement": "ANIZY LE GRAND", + "nomCommune": "ANIZY LE GRAND" }, { - "codePostal": "69600", - "codeCommune": "69149", - "libelleAcheminement": "OULLINS", - "nomCommune": "OULLINS" + "codePostal": "02120", + "codeCommune": "02469", + "libelleAcheminement": "MARLY GOMONT", + "nomCommune": "MARLY GOMONT" }, { - "codePostal": "69460", - "codeCommune": "69151", - "libelleAcheminement": "LE PERREON", - "nomCommune": "LE PERREON" + "codePostal": "02480", + "codeCommune": "02019", + "libelleAcheminement": "ANNOIS", + "nomCommune": "ANNOIS" }, { - "codePostal": "69490", - "codeCommune": "69157", - "libelleAcheminement": "VINDRY SUR TURDINE", - "nomCommune": "VINDRY SUR TURDINE" + "codePostal": "02860", + "codeCommune": "02471", + "libelleAcheminement": "MARTIGNY COURPIERRE", + "nomCommune": "MARTIGNY COURPIERRE" }, { - "codePostal": "69400", - "codeCommune": "69159", - "libelleAcheminement": "PORTE DES PIERRES DOREES", - "nomCommune": "PORTE DES PIERRES DOREES" + "codePostal": "02360", + "codeCommune": "02021", + "libelleAcheminement": "ARCHON", + "nomCommune": "ARCHON" }, { - "codePostal": "69870", - "codeCommune": "69160", - "libelleAcheminement": "POULE LES ECHARMEAUX", - "nomCommune": "POULE LES ECHARMEAUX" + "codePostal": "02110", + "codeCommune": "02488", + "libelleAcheminement": "MOLAIN", + "nomCommune": "MOLAIN" }, { - "codePostal": "69430", - "codeCommune": "69162", - "libelleAcheminement": "QUINCIE EN BEAUJOLAIS", - "nomCommune": "QUINCIE EN BEAUJOLAIS" + "codePostal": "02130", + "codeCommune": "02022", + "libelleAcheminement": "ARCY STE RESTITUE", + "nomCommune": "ARCY STE RESTITUE" }, { - "codePostal": "69210", - "codeCommune": "69171", - "libelleAcheminement": "SAIN BEL", - "nomCommune": "SAIN BEL" + "codePostal": "02270", + "codeCommune": "02492", + "libelleAcheminement": "MONCEAU LES LEUPS", + "nomCommune": "MONCEAU LES LEUPS" }, { - "codePostal": "69490", - "codeCommune": "69173", - "libelleAcheminement": "SARCEY", - "nomCommune": "SARCEY" + "codePostal": "02210", + "codeCommune": "02023", + "libelleAcheminement": "ARMENTIERES SUR OURCQ", + "nomCommune": "ARMENTIERES SUR OURCQ" }, { - "codePostal": "69700", - "codeCommune": "69179", - "libelleAcheminement": "BEAUVALLON", - "nomCommune": "BEAUVALLON" + "codePostal": "02840", + "codeCommune": "02493", + "libelleAcheminement": "MONCEAU LE WAAST", + "nomCommune": "MONCEAU LE WAAST" }, { - "codePostal": "69870", - "codeCommune": "69183", - "libelleAcheminement": "ST BONNET LE TRONCY", - "nomCommune": "ST BONNET LE TRONCY" + "codePostal": "02820", + "codeCommune": "02033", + "libelleAcheminement": "AUBIGNY EN LAONNOIS", + "nomCommune": "AUBIGNY EN LAONNOIS" }, { - "codePostal": "69440", - "codeCommune": "69184", - "libelleAcheminement": "STE CATHERINE", - "nomCommune": "STE CATHERINE" + "codePostal": "02120", + "codeCommune": "02494", + "libelleAcheminement": "MONCEAU SUR OISE", + "nomCommune": "MONCEAU SUR OISE" }, { - "codePostal": "69930", - "codeCommune": "69187", - "libelleAcheminement": "ST CLEMENT LES PLACES", - "nomCommune": "ST CLEMENT LES PLACES" + "codePostal": "02400", + "codeCommune": "02042", + "libelleAcheminement": "AZY SUR MARNE", + "nomCommune": "AZY SUR MARNE" }, { - "codePostal": "69170", - "codeCommune": "69188", - "libelleAcheminement": "ST CLEMENT SUR VALSONNE", - "nomCommune": "ST CLEMENT SUR VALSONNE" + "codePostal": "02820", + "codeCommune": "02498", + "libelleAcheminement": "MONTAIGU", + "nomCommune": "MONTAIGU" }, { - "codePostal": "69560", - "codeCommune": "69189", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "02500", + "codeCommune": "02055", + "libelleAcheminement": "BEAUME", + "nomCommune": "BEAUME" }, { - "codePostal": "69870", - "codeCommune": "69192", - "libelleAcheminement": "ST CYR LE CHATOUX", - "nomCommune": "ST CYR LE CHATOUX" + "codePostal": "02110", + "codeCommune": "02500", + "libelleAcheminement": "MONTBREHAIN", + "nomCommune": "MONTBREHAIN" }, { - "codePostal": "69460", - "codeCommune": "69197", - "libelleAcheminement": "ST ETIENNE DES OULLIERES", - "nomCommune": "ST ETIENNE DES OULLIERES" + "codePostal": "02400", + "codeCommune": "02062", + "libelleAcheminement": "BELLEAU", + "nomCommune": "BELLEAU" }, { - "codePostal": "69650", - "codeCommune": "69207", - "libelleAcheminement": "ST GERMAIN AU MONT D OR", - "nomCommune": "ST GERMAIN AU MONT D OR" + "codePostal": "02440", + "codeCommune": "02504", + "libelleAcheminement": "MONTESCOURT LIZEROLLES", + "nomCommune": "MONTESCOURT LIZEROLLES" }, { - "codePostal": "69210", - "codeCommune": "69208", - "libelleAcheminement": "ST GERMAIN NUELLES", - "nomCommune": "ST GERMAIN NUELLES" + "codePostal": "02450", + "codeCommune": "02067", + "libelleAcheminement": "BERGUES SUR SAMBRE", + "nomCommune": "BERGUES SUR SAMBRE" }, { - "codePostal": "69170", - "codeCommune": "69225", - "libelleAcheminement": "ST MARCEL L ECLAIRE", - "nomCommune": "ST MARCEL L ECLAIRE" + "codePostal": "02330", + "codeCommune": "02515", + "libelleAcheminement": "MONTIGNY LES CONDE", + "nomCommune": "MONTIGNY LES CONDE" }, { - "codePostal": "69440", - "codeCommune": "69228", - "libelleAcheminement": "CHABANIERE", - "nomCommune": "CHABANIERE" + "codePostal": "02120", + "codeCommune": "02070", + "libelleAcheminement": "BERNOT", + "nomCommune": "BERNOT" }, { - "codePostal": "69440", - "codeCommune": "69228", - "libelleAcheminement": "CHABANIERE", - "nomCommune": "CHABANIERE" + "codePostal": "02250", + "codeCommune": "02516", + "libelleAcheminement": "MONTIGNY SOUS MARLE", + "nomCommune": "MONTIGNY SOUS MARLE" }, { - "codePostal": "69870", - "codeCommune": "69229", - "libelleAcheminement": "ST NIZIER D AZERGUES", - "nomCommune": "ST NIZIER D AZERGUES" + "codePostal": "02860", + "codeCommune": "02088", + "libelleAcheminement": "BIEVRES", + "nomCommune": "BIEVRES" }, { - "codePostal": "69210", - "codeCommune": "69231", - "libelleAcheminement": "ST PIERRE LA PALUD", - "nomCommune": "ST PIERRE LA PALUD" + "codePostal": "02340", + "codeCommune": "02519", + "libelleAcheminement": "MONTLOUE", + "nomCommune": "MONTLOUE" }, { - "codePostal": "69560", - "codeCommune": "69235", - "libelleAcheminement": "ST ROMAIN EN GAL", - "nomCommune": "ST ROMAIN EN GAL" + "codePostal": "02300", + "codeCommune": "02093", + "libelleAcheminement": "BLERANCOURT", + "nomCommune": "BLERANCOURT" }, { - "codePostal": "69620", - "codeCommune": "69239", - "libelleAcheminement": "ST VERAND", - "nomCommune": "ST VERAND" + "codePostal": "02400", + "codeCommune": "02524", + "libelleAcheminement": "MONT ST PERE", + "nomCommune": "MONT ST PERE" }, { - "codePostal": "69220", - "codeCommune": "69242", - "libelleAcheminement": "TAPONAS", - "nomCommune": "TAPONAS" + "codePostal": "02450", + "codeCommune": "02103", + "libelleAcheminement": "BOUE", + "nomCommune": "BOUE" }, { - "codePostal": "69240", - "codeCommune": "69248", - "libelleAcheminement": "THIZY LES BOURGS", - "nomCommune": "THIZY LES BOURGS" + "codePostal": "02600", + "codeCommune": "02528", + "libelleAcheminement": "MORTEFONTAINE", + "nomCommune": "MORTEFONTAINE" }, { - "codePostal": "69420", - "codeCommune": "69252", - "libelleAcheminement": "TREVES", - "nomCommune": "TREVES" + "codePostal": "02140", + "codeCommune": "02109", + "libelleAcheminement": "LA BOUTEILLE", + "nomCommune": "LA BOUTEILLE" }, { - "codePostal": "69420", - "codeCommune": "69253", - "libelleAcheminement": "TUPIN ET SEMONS", - "nomCommune": "TUPIN ET SEMONS" + "codePostal": "02200", + "codeCommune": "02536", + "libelleAcheminement": "NAMPTEUIL SOUS MURET", + "nomCommune": "NAMPTEUIL SOUS MURET" }, { - "codePostal": "69170", - "codeCommune": "69254", - "libelleAcheminement": "VALSONNE", - "nomCommune": "VALSONNE" + "codePostal": "02140", + "codeCommune": "02116", + "libelleAcheminement": "BRAYE EN THIERACHE", + "nomCommune": "BRAYE EN THIERACHE" }, { - "codePostal": "69120", - "codeCommune": "69256", - "libelleAcheminement": "VAULX EN VELIN", - "nomCommune": "VAULX EN VELIN" + "codePostal": "02300", + "codeCommune": "02542", + "libelleAcheminement": "NEUFLIEUX", + "nomCommune": "NEUFLIEUX" }, { - "codePostal": "69430", - "codeCommune": "69261", - "libelleAcheminement": "VERNAY", - "nomCommune": "VERNAY" + "codePostal": "02880", + "codeCommune": "02118", + "libelleAcheminement": "BRAYE", + "nomCommune": "BRAYE" }, { - "codePostal": "69390", - "codeCommune": "69268", - "libelleAcheminement": "VOURLES", - "nomCommune": "VOURLES" + "codePostal": "02470", + "codeCommune": "02543", + "libelleAcheminement": "NEUILLY ST FRONT", + "nomCommune": "NEUILLY ST FRONT" }, { - "codePostal": "69360", - "codeCommune": "69272", - "libelleAcheminement": "COMMUNAY", - "nomCommune": "COMMUNAY" + "codePostal": "02130", + "codeCommune": "02127", + "libelleAcheminement": "BRUYERES SUR FERE", + "nomCommune": "BRUYERES SUR FERE" }, { - "codePostal": "69150", - "codeCommune": "69275", - "libelleAcheminement": "DECINES CHARPIEU", - "nomCommune": "DECINES CHARPIEU" + "codePostal": "02150", + "codeCommune": "02553", + "libelleAcheminement": "NIZY LE COMTE", + "nomCommune": "NIZY LE COMTE" }, { - "codePostal": "69250", - "codeCommune": "69284", - "libelleAcheminement": "MONTANAY", - "nomCommune": "MONTANAY" + "codePostal": "02620", + "codeCommune": "02135", + "libelleAcheminement": "BUIRONFOSSE", + "nomCommune": "BUIRONFOSSE" }, { - "codePostal": "69330", - "codeCommune": "69285", - "libelleAcheminement": "PUSIGNAN", - "nomCommune": "PUSIGNAN" + "codePostal": "02600", + "codeCommune": "02557", + "libelleAcheminement": "NOROY SUR OURCQ", + "nomCommune": "NOROY SUR OURCQ" }, { - "codePostal": "69360", - "codeCommune": "69296", - "libelleAcheminement": "SOLAIZE", - "nomCommune": "SOLAIZE" + "codePostal": "02140", + "codeCommune": "02136", + "libelleAcheminement": "BURELLES", + "nomCommune": "BURELLES" }, { - "codePostal": "69360", - "codeCommune": "69297", - "libelleAcheminement": "TERNAY", - "nomCommune": "TERNAY" + "codePostal": "02270", + "codeCommune": "02559", + "libelleAcheminement": "NOUVION ET CATILLON", + "nomCommune": "NOUVION ET CATILLON" }, { - "codePostal": "69006", - "codeCommune": "69386", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 06" + "codePostal": "02330", + "codeCommune": "02146", + "libelleAcheminement": "CELLES LES CONDE", + "nomCommune": "CELLES LES CONDE" }, { - "codePostal": "70300", - "codeCommune": "70001", - "libelleAcheminement": "ABELCOURT", - "nomCommune": "ABELCOURT" + "codePostal": "02500", + "codeCommune": "02567", + "libelleAcheminement": "OHIS", + "nomCommune": "OHIS" }, { - "codePostal": "70500", - "codeCommune": "70002", - "libelleAcheminement": "ABONCOURT GESINCOURT", - "nomCommune": "ABONCOURT GESINCOURT" + "codePostal": "02370", + "codeCommune": "02148", + "libelleAcheminement": "CELLES SUR AISNE", + "nomCommune": "CELLES SUR AISNE" }, { - "codePostal": "70200", - "codeCommune": "70004", - "libelleAcheminement": "ADELANS ET LE VAL DE BITHAINE", - "nomCommune": "ADELANS ET LE VAL DE BITHAINE" + "codePostal": "02850", + "codeCommune": "02595", + "libelleAcheminement": "PASSY SUR MARNE", + "nomCommune": "PASSY SUR MARNE" }, { - "codePostal": "70300", - "codeCommune": "70007", - "libelleAcheminement": "AILLONCOURT", - "nomCommune": "AILLONCOURT" + "codePostal": "02320", + "codeCommune": "02153", + "libelleAcheminement": "CESSIERES SUZY", + "nomCommune": "CESSIERES SUZY" }, { - "codePostal": "70800", - "codeCommune": "70008", - "libelleAcheminement": "AINVELLE", - "nomCommune": "AINVELLE" + "codePostal": "02200", + "codeCommune": "02598", + "libelleAcheminement": "PERNANT", + "nomCommune": "PERNANT" }, { - "codePostal": "70210", - "codeCommune": "70013", - "libelleAcheminement": "AMBIEVILLERS", - "nomCommune": "AMBIEVILLERS" + "codePostal": "02200", + "codeCommune": "02154", + "libelleAcheminement": "CHACRISE", + "nomCommune": "CHACRISE" }, { - "codePostal": "70100", - "codeCommune": "70018", - "libelleAcheminement": "ANCIER", - "nomCommune": "ANCIER" + "codePostal": "02350", + "codeCommune": "02600", + "libelleAcheminement": "PIERREPONT", + "nomCommune": "PIERREPONT" }, { - "codePostal": "70700", - "codeCommune": "70022", - "libelleAcheminement": "ANGIREY", - "nomCommune": "ANGIREY" + "codePostal": "02860", + "codeCommune": "02158", + "libelleAcheminement": "CHAMOUILLE", + "nomCommune": "CHAMOUILLE" }, { - "codePostal": "70360", - "codeCommune": "70028", - "libelleAcheminement": "AROZ", - "nomCommune": "AROZ" + "codePostal": "02320", + "codeCommune": "02602", + "libelleAcheminement": "PINON", + "nomCommune": "PINON" }, { - "codePostal": "70100", - "codeCommune": "70030", - "libelleAcheminement": "ARSANS", - "nomCommune": "ARSANS" + "codePostal": "02570", + "codeCommune": "02162", + "libelleAcheminement": "LA CHAPELLE SUR CHEZY", + "nomCommune": "LA CHAPELLE SUR CHEZY" }, { - "codePostal": "70110", - "codeCommune": "70031", - "libelleAcheminement": "ATHESANS ETROITEFONTAINE", - "nomCommune": "ATHESANS ETROITEFONTAINE" + "codePostal": "02490", + "codeCommune": "02615", + "libelleAcheminement": "PONTRUET", + "nomCommune": "PONTRUET" }, { - "codePostal": "70190", - "codeCommune": "70050", - "libelleAcheminement": "LA BARRE", - "nomCommune": "LA BARRE" + "codePostal": "02850", + "codeCommune": "02164", + "libelleAcheminement": "LE CHARMEL", + "nomCommune": "LE CHARMEL" }, { - "codePostal": "70210", - "codeCommune": "70051", - "libelleAcheminement": "LA BASSE VAIVRE", - "nomCommune": "LA BASSE VAIVRE" + "codePostal": "02470", + "codeCommune": "02622", + "libelleAcheminement": "PRIEZ", + "nomCommune": "PRIEZ" }, { - "codePostal": "70100", - "codeCommune": "70058", - "libelleAcheminement": "BEAUJEU ET QUITTEUR", - "nomCommune": "BEAUJEU ST VALLIER PIERREJUX QUITTEUR" + "codePostal": "02370", + "codeCommune": "02176", + "libelleAcheminement": "CHAVONNE", + "nomCommune": "CHAVONNE" }, { - "codePostal": "70190", - "codeCommune": "70059", - "libelleAcheminement": "BEAUMOTTE AUBERTANS", - "nomCommune": "BEAUMOTTE AUBERTANS" + "codePostal": "02140", + "codeCommune": "02623", + "libelleAcheminement": "PRISCES", + "nomCommune": "PRISCES" }, { - "codePostal": "70270", - "codeCommune": "70063", - "libelleAcheminement": "BELONCHAMP", - "nomCommune": "BELONCHAMP" + "codePostal": "02860", + "codeCommune": "02177", + "libelleAcheminement": "CHERET", + "nomCommune": "CHERET" }, { - "codePostal": "70500", - "codeCommune": "70070", - "libelleAcheminement": "BETONCOURT SUR MANCE", - "nomCommune": "BETONCOURT SUR MANCE" + "codePostal": "02220", + "codeCommune": "02633", + "libelleAcheminement": "QUINCY SOUS LE MONT", + "nomCommune": "QUINCY SOUS LE MONT" }, { - "codePostal": "70230", - "codeCommune": "70082", - "libelleAcheminement": "BOUHANS LES MONTBOZON", - "nomCommune": "BOUHANS LES MONTBOZON" + "codePostal": "02360", + "codeCommune": "02181", + "libelleAcheminement": "CHERY LES ROZOY", + "nomCommune": "CHERY LES ROZOY" }, { - "codePostal": "70100", - "codeCommune": "70100", - "libelleAcheminement": "BROYE LES LOUPS ET VERFONTAINE", - "nomCommune": "BROYE LES LOUPS ET VERFONTAINE" + "codePostal": "02100", + "codeCommune": "02637", + "libelleAcheminement": "REMAUCOURT", + "nomCommune": "REMAUCOURT" }, { - "codePostal": "70700", - "codeCommune": "70104", - "libelleAcheminement": "BUCEY LES GY", - "nomCommune": "BUCEY LES GY" + "codePostal": "02250", + "codeCommune": "02182", + "libelleAcheminement": "CHEVENNES", + "nomCommune": "CHEVENNES" }, { - "codePostal": "70360", - "codeCommune": "70105", - "libelleAcheminement": "BUCEY LES TRAVES", - "nomCommune": "BUCEY LES TRAVES" + "codePostal": "02240", + "codeCommune": "02640", + "libelleAcheminement": "RENANSART", + "nomCommune": "RENANSART" }, { - "codePostal": "70150", - "codeCommune": "70119", - "libelleAcheminement": "CHAMBORNAY LES PIN", - "nomCommune": "CHAMBORNAY LES PIN" + "codePostal": "02570", + "codeCommune": "02186", + "libelleAcheminement": "CHEZY SUR MARNE", + "nomCommune": "CHEZY SUR MARNE" }, { - "codePostal": "70600", - "codeCommune": "70122", - "libelleAcheminement": "CHAMPLITTE", - "nomCommune": "CHAMPLITTE" + "codePostal": "02290", + "codeCommune": "02643", + "libelleAcheminement": "RESSONS LE LONG", + "nomCommune": "RESSONS LE LONG" }, { - "codePostal": "70600", - "codeCommune": "70122", - "libelleAcheminement": "CHAMPLITTE", - "nomCommune": "CHAMPLITTE" + "codePostal": "02350", + "codeCommune": "02189", + "libelleAcheminement": "CHIVRES EN LAONNOIS", + "nomCommune": "CHIVRES EN LAONNOIS" }, { - "codePostal": "70360", - "codeCommune": "70127", - "libelleAcheminement": "CHANTES", - "nomCommune": "CHANTES" + "codePostal": "02140", + "codeCommune": "02652", + "libelleAcheminement": "ROGNY", + "nomCommune": "ROGNY" }, { - "codePostal": "70120", - "codeCommune": "70153", - "libelleAcheminement": "CINTREY", - "nomCommune": "CINTREY" + "codePostal": "02210", + "codeCommune": "02192", + "libelleAcheminement": "CHOUY", + "nomCommune": "CHOUY" }, { - "codePostal": "70200", - "codeCommune": "70157", - "libelleAcheminement": "CLAIREGOUTTE", - "nomCommune": "CLAIREGOUTTE" + "codePostal": "02200", + "codeCommune": "02667", + "libelleAcheminement": "SACONIN ET BREUIL", + "nomCommune": "SACONIN ET BREUIL" }, { - "codePostal": "70000", - "codeCommune": "70158", - "libelleAcheminement": "CLANS", - "nomCommune": "CLANS" + "codePostal": "02260", + "codeCommune": "02197", + "libelleAcheminement": "CLAIRFONTAINE", + "nomCommune": "CLAIRFONTAINE" }, { - "codePostal": "70230", - "codeCommune": "70159", - "libelleAcheminement": "COGNIERES", - "nomCommune": "COGNIERES" + "codePostal": "02360", + "codeCommune": "02674", + "libelleAcheminement": "ST CLEMENT", + "nomCommune": "ST CLEMENT" }, { - "codePostal": "70240", - "codeCommune": "70164", - "libelleAcheminement": "COLOMBOTTE", - "nomCommune": "COLOMBOTTE" + "codePostal": "02160", + "codeCommune": "02208", + "libelleAcheminement": "CONCEVREUX", + "nomCommune": "CONCEVREUX" }, { - "codePostal": "70170", - "codeCommune": "70167", - "libelleAcheminement": "CONFLANDEY", - "nomCommune": "CONFLANDEY" + "codePostal": "02820", + "codeCommune": "02676", + "libelleAcheminement": "ST ERME OUTRE ET RAMECOURT", + "nomCommune": "ST ERME OUTRE ET RAMECOURT" }, { - "codePostal": "70120", - "codeCommune": "70169", - "libelleAcheminement": "CONFRACOURT", - "nomCommune": "CONFRACOURT" + "codePostal": "02330", + "codeCommune": "02209", + "libelleAcheminement": "CONDE EN BRIE", + "nomCommune": "CONDE EN BRIE" }, { - "codePostal": "70320", - "codeCommune": "70171", - "libelleAcheminement": "CORBENAY", - "nomCommune": "CORBENAY" + "codePostal": "02140", + "codeCommune": "02681", + "libelleAcheminement": "ST GOBERT", + "nomCommune": "ST GOBERT" }, { - "codePostal": "70120", - "codeCommune": "70175", - "libelleAcheminement": "CORNOT", - "nomCommune": "CORNOT" + "codePostal": "02700", + "codeCommune": "02212", + "libelleAcheminement": "CONDREN", + "nomCommune": "CONDREN" }, { - "codePostal": "70400", - "codeCommune": "70184", - "libelleAcheminement": "COUTHENANS", - "nomCommune": "COUTHENANS" + "codePostal": "02100", + "codeCommune": "02691", + "libelleAcheminement": "ST QUENTIN", + "nomCommune": "ST QUENTIN" }, { - "codePostal": "70240", - "codeCommune": "70188", - "libelleAcheminement": "CREVENEY", - "nomCommune": "CREVENEY" + "codePostal": "02380", + "codeCommune": "02217", + "libelleAcheminement": "COUCY LE CHATEAU AUFFRIQUE", + "nomCommune": "COUCY LE CHATEAU AUFFRIQUE" }, { - "codePostal": "70190", - "codeCommune": "70189", - "libelleAcheminement": "CROMARY", - "nomCommune": "CROMARY" + "codePostal": "02820", + "codeCommune": "02696", + "libelleAcheminement": "ST THOMAS", + "nomCommune": "ST THOMAS" }, { - "codePostal": "70800", - "codeCommune": "70196", - "libelleAcheminement": "DAMPIERRE LES CONFLANS", - "nomCommune": "DAMPIERRE LES CONFLANS" + "codePostal": "02200", + "codeCommune": "02226", + "libelleAcheminement": "COURMELLES", + "nomCommune": "COURMELLES" }, { - "codePostal": "70000", - "codeCommune": "70199", - "libelleAcheminement": "DAMPVALLEY LES COLOMBE", - "nomCommune": "DAMPVALLEY LES COLOMBE" + "codePostal": "02880", + "codeCommune": "02698", + "libelleAcheminement": "SANCY LES CHEMINOTS", + "nomCommune": "SANCY LES CHEMINOTS" }, { - "codePostal": "70210", - "codeCommune": "70200", - "libelleAcheminement": "DAMPVALLEY ST PANCRAS", - "nomCommune": "DAMPVALLEY ST PANCRAS" + "codePostal": "02270", + "codeCommune": "02237", + "libelleAcheminement": "CRECY SUR SERRE", + "nomCommune": "CRECY SUR SERRE" }, { - "codePostal": "70180", - "codeCommune": "70204", - "libelleAcheminement": "DENEVRE", - "nomCommune": "DENEVRE" + "codePostal": "02310", + "codeCommune": "02701", + "libelleAcheminement": "SAULCHERY", + "nomCommune": "SAULCHERY" }, { - "codePostal": "70400", - "codeCommune": "70206", - "libelleAcheminement": "ECHENANS SOUS MONT VAUDOIS", - "nomCommune": "ECHENANS SOUS MONT VAUDOIS" + "codePostal": "02110", + "codeCommune": "02240", + "libelleAcheminement": "CROIX FONSOMME", + "nomCommune": "CROIX FONSOMME" }, { - "codePostal": "70000", - "codeCommune": "70208", - "libelleAcheminement": "ECHENOZ LE SEC", - "nomCommune": "ECHENOZ LE SEC" + "codePostal": "02300", + "codeCommune": "02704", + "libelleAcheminement": "SELENS", + "nomCommune": "SELENS" }, { - "codePostal": "70110", - "codeCommune": "70219", - "libelleAcheminement": "ESPRELS", - "nomCommune": "ESPRELS" + "codePostal": "02590", + "codeCommune": "02270", + "libelleAcheminement": "DOUCHY", + "nomCommune": "DOUCHY" }, { - "codePostal": "70100", - "codeCommune": "70220", - "libelleAcheminement": "ESSERTENNE ET CECEY", - "nomCommune": "ESSERTENNE ET CECEY" + "codePostal": "02150", + "codeCommune": "02705", + "libelleAcheminement": "LA SELVE", + "nomCommune": "LA SELVE" }, { - "codePostal": "70100", - "codeCommune": "70225", - "libelleAcheminement": "FAHY LES AUTREY", - "nomCommune": "FAHY LES AUTREY" + "codePostal": "02250", + "codeCommune": "02283", + "libelleAcheminement": "ERLON", + "nomCommune": "ERLON" }, { - "codePostal": "70000", - "codeCommune": "70235", - "libelleAcheminement": "FLAGY", - "nomCommune": "FLAGY" + "codePostal": "02130", + "codeCommune": "02712", + "libelleAcheminement": "SERGY", + "nomCommune": "SERGY" }, { - "codePostal": "70800", - "codeCommune": "70238", - "libelleAcheminement": "FLEUREY LES ST LOUP", - "nomCommune": "FLEUREY LES ST LOUP" + "codePostal": "02170", + "codeCommune": "02286", + "libelleAcheminement": "ESQUEHERIES", + "nomCommune": "ESQUEHERIES" }, { - "codePostal": "70230", - "codeCommune": "70243", - "libelleAcheminement": "FONTENOIS LES MONTBOZON", - "nomCommune": "FONTENOIS LES MONTBOZON" + "codePostal": "02150", + "codeCommune": "02720", + "libelleAcheminement": "SISSONNE", + "nomCommune": "SISSONNE" }, { - "codePostal": "70160", - "codeCommune": "70244", - "libelleAcheminement": "FOUCHECOURT", - "nomCommune": "FOUCHECOURT" + "codePostal": "02400", + "codeCommune": "02290", + "libelleAcheminement": "ESSOMES SUR MARNE", + "nomCommune": "ESSOMES SUR MARNE" }, { - "codePostal": "70600", - "codeCommune": "70247", - "libelleAcheminement": "FOUVENT ST ANDOCHE", - "nomCommune": "FOUVENT ST ANDOCHE" + "codePostal": "02260", + "codeCommune": "02725", + "libelleAcheminement": "SOMMERON", + "nomCommune": "SOMMERON" }, { - "codePostal": "70600", - "codeCommune": "70247", - "libelleAcheminement": "FOUVENT ST ANDOCHE", - "nomCommune": "FOUVENT ST ANDOCHE" + "codePostal": "02190", + "codeCommune": "02299", + "libelleAcheminement": "EVERGNICOURT", + "nomCommune": "EVERGNICOURT" }, { - "codePostal": "70600", - "codeCommune": "70252", - "libelleAcheminement": "FRAMONT", - "nomCommune": "FRAMONT" + "codePostal": "02270", + "codeCommune": "02727", + "libelleAcheminement": "SONS ET RONCHERES", + "nomCommune": "SONS ET RONCHERES" }, { - "codePostal": "70240", - "codeCommune": "70263", - "libelleAcheminement": "GENEVREY", - "nomCommune": "GENEVREY" + "codePostal": "02800", + "codeCommune": "02304", + "libelleAcheminement": "LA FERE", + "nomCommune": "LA FERE" }, { - "codePostal": "70500", - "codeCommune": "70267", - "libelleAcheminement": "GEVIGNEY ET MERCEY", - "nomCommune": "GEVIGNEY ET MERCEY" + "codePostal": "02240", + "codeCommune": "02732", + "libelleAcheminement": "SURFONTAINE", + "nomCommune": "SURFONTAINE" }, { - "codePostal": "70400", - "codeCommune": "70285", - "libelleAcheminement": "HERICOURT", - "nomCommune": "HERICOURT" + "codePostal": "02460", + "codeCommune": "02307", + "libelleAcheminement": "LA FERTE MILON", + "nomCommune": "LA FERTE MILON" }, { - "codePostal": "70700", - "codeCommune": "70289", - "libelleAcheminement": "IGNY", - "nomCommune": "IGNY" + "codePostal": "02250", + "codeCommune": "02742", + "libelleAcheminement": "THIERNU", + "nomCommune": "THIERNU" }, { - "codePostal": "70500", - "codeCommune": "70291", - "libelleAcheminement": "JONVELLE", - "nomCommune": "JONVELLE" + "codePostal": "02450", + "codeCommune": "02308", + "libelleAcheminement": "FESMY LE SART", + "nomCommune": "FESMY LE SART" }, { - "codePostal": "70500", - "codeCommune": "70292", - "libelleAcheminement": "JUSSEY", - "nomCommune": "JUSSEY" + "codePostal": "02250", + "codeCommune": "02745", + "libelleAcheminement": "TOULIS ET ATTENCOURT", + "nomCommune": "TOULIS ET ATTENCOURT" }, { - "codePostal": "70200", - "codeCommune": "70294", - "libelleAcheminement": "LANTENOT", - "nomCommune": "LANTENOT" + "codePostal": "02110", + "codeCommune": "02310", + "libelleAcheminement": "FIEULAINE", + "nomCommune": "FIEULAINE" }, { - "codePostal": "70270", - "codeCommune": "70295", - "libelleAcheminement": "LA LANTERNE ET LES ARMONTS", - "nomCommune": "LA LANTERNE ET LES ARMONTS" + "codePostal": "02860", + "codeCommune": "02751", + "libelleAcheminement": "TRUCY", + "nomCommune": "TRUCY" }, { - "codePostal": "70240", - "codeCommune": "70303", - "libelleAcheminement": "LIEVANS", - "nomCommune": "LIEVANS" + "codePostal": "02590", + "codeCommune": "02317", + "libelleAcheminement": "FLUQUIERES", + "nomCommune": "FLUQUIERES" }, { - "codePostal": "70230", - "codeCommune": "70309", - "libelleAcheminement": "LOULANS VERCHAMP", - "nomCommune": "LOULANS VERCHAMP" + "codePostal": "02120", + "codeCommune": "02753", + "libelleAcheminement": "TUPIGNY", + "nomCommune": "TUPIGNY" }, { - "codePostal": "70200", - "codeCommune": "70310", - "libelleAcheminement": "LURE", - "nomCommune": "LURE" + "codePostal": "02110", + "codeCommune": "02323", + "libelleAcheminement": "FONTAINE UTERTE", + "nomCommune": "FONTAINE UTERTE" }, { - "codePostal": "70200", - "codeCommune": "70313", - "libelleAcheminement": "LYOFFANS", - "nomCommune": "LYOFFANS" + "codePostal": "02690", + "codeCommune": "02756", + "libelleAcheminement": "URVILLERS", + "nomCommune": "URVILLERS" }, { - "codePostal": "70300", - "codeCommune": "70314", - "libelleAcheminement": "MAGNIVRAY", - "nomCommune": "MAGNIVRAY" + "codePostal": "02800", + "codeCommune": "02335", + "libelleAcheminement": "FRESSANCOURT", + "nomCommune": "FRESSANCOURT" }, { - "codePostal": "70110", - "codeCommune": "70317", - "libelleAcheminement": "LES MAGNY", - "nomCommune": "LES MAGNY" + "codePostal": "02120", + "codeCommune": "02757", + "libelleAcheminement": "VADENCOURT", + "nomCommune": "VADENCOURT" }, { - "codePostal": "70000", - "codeCommune": "70324", - "libelleAcheminement": "MAILLEY ET CHAZELOT", - "nomCommune": "MAILLEY ET CHAZELOT" + "codePostal": "02260", + "codeCommune": "02337", + "libelleAcheminement": "FROIDESTREES", + "nomCommune": "FROIDESTREES" }, { - "codePostal": "70190", - "codeCommune": "70326", - "libelleAcheminement": "LA MALACHERE", - "nomCommune": "LA MALACHERE" + "codePostal": "02290", + "codeCommune": "02762", + "libelleAcheminement": "VASSENS", + "nomCommune": "VASSENS" }, { - "codePostal": "70200", - "codeCommune": "70328", - "libelleAcheminement": "MALBOUHANS", - "nomCommune": "MALBOUHANS" + "codePostal": "02810", + "codeCommune": "02339", + "libelleAcheminement": "GANDELU", + "nomCommune": "GANDELU" }, { - "codePostal": "70100", - "codeCommune": "70331", - "libelleAcheminement": "MANTOCHE", - "nomCommune": "MANTOCHE" + "codePostal": "02220", + "codeCommune": "02763", + "libelleAcheminement": "VASSENY", + "nomCommune": "VASSENY" }, { - "codePostal": "70110", - "codeCommune": "70336", - "libelleAcheminement": "MELECEY", - "nomCommune": "MELECEY" + "codePostal": "02430", + "codeCommune": "02340", + "libelleAcheminement": "GAUCHY", + "nomCommune": "GAUCHY" }, { - "codePostal": "70300", - "codeCommune": "70344", - "libelleAcheminement": "MEURCOURT", - "nomCommune": "MEURCOURT" + "codePostal": "02320", + "codeCommune": "02768", + "libelleAcheminement": "VAUXAILLON", + "nomCommune": "VAUXAILLON" }, { - "codePostal": "70310", - "codeCommune": "70352", - "libelleAcheminement": "LA MONTAGNE", - "nomCommune": "LA MONTAGNE" + "codePostal": "02260", + "codeCommune": "02342", + "libelleAcheminement": "GERGNY", + "nomCommune": "GERGNY" }, { - "codePostal": "70500", - "codeCommune": "70359", - "libelleAcheminement": "MONTCOURT", - "nomCommune": "MONTCOURT" + "codePostal": "02200", + "codeCommune": "02770", + "libelleAcheminement": "VAUXBUIN", + "nomCommune": "VAUXBUIN" }, { - "codePostal": "70110", - "codeCommune": "70364", - "libelleAcheminement": "MONTJUSTIN ET VELOTTE", - "nomCommune": "MONTJUSTIN ET VELOTTE" + "codePostal": "02350", + "codeCommune": "02353", + "libelleAcheminement": "GRANDLUP ET FAY", + "nomCommune": "GRANDLUP ET FAY" }, { - "codePostal": "70700", - "codeCommune": "70366", - "libelleAcheminement": "VILLERS CHEMIN MONT LES ETRELLES", - "nomCommune": "VILLERS CHEMIN ET MONT LES ETRELLES" + "codePostal": "02220", + "codeCommune": "02773", + "libelleAcheminement": "VAUXTIN", + "nomCommune": "VAUXTIN" }, { - "codePostal": "70100", - "codeCommune": "70371", - "libelleAcheminement": "MONTUREUX ET PRANTIGNY", - "nomCommune": "MONTUREUX ET PRANTIGNY" + "codePostal": "02100", + "codeCommune": "02355", + "libelleAcheminement": "GRICOURT", + "nomCommune": "GRICOURT" }, { - "codePostal": "70120", - "codeCommune": "70373", - "libelleAcheminement": "LA ROCHE MOREY", - "nomCommune": "LA ROCHE MOREY" + "codePostal": "02490", + "codeCommune": "02774", + "libelleAcheminement": "VENDELLES", + "nomCommune": "VENDELLES" }, { - "codePostal": "70100", - "codeCommune": "70376", - "libelleAcheminement": "NANTILLY", - "nomCommune": "NANTILLY" + "codePostal": "02110", + "codeCommune": "02358", + "libelleAcheminement": "GROUGIS", + "nomCommune": "GROUGIS" }, { - "codePostal": "70000", - "codeCommune": "70381", - "libelleAcheminement": "NEUREY LES LA DEMIE", - "nomCommune": "NEUREY LES LA DEMIE" + "codePostal": "02340", + "codeCommune": "02802", + "libelleAcheminement": "LA VILLE AUX BOIS LES DIZY", + "nomCommune": "LA VILLE AUX BOIS LES DIZY" }, { - "codePostal": "70200", - "codeCommune": "70385", - "libelleAcheminement": "LA NEUVELLE LES LURE", - "nomCommune": "LA NEUVELLE LES LURE" + "codePostal": "02120", + "codeCommune": "02361", + "libelleAcheminement": "GUISE", + "nomCommune": "GUISE" }, { - "codePostal": "70000", - "codeCommune": "70390", - "libelleAcheminement": "NOROY LE BOURG", - "nomCommune": "NOROY LE BOURG" + "codePostal": "02130", + "codeCommune": "02809", + "libelleAcheminement": "VILLERS AGRON AIGUIZY", + "nomCommune": "VILLERS AGRON AIGUIZY" }, { - "codePostal": "70100", - "codeCommune": "70394", - "libelleAcheminement": "ONAY", - "nomCommune": "ONAY" + "codePostal": "02300", + "codeCommune": "02362", + "libelleAcheminement": "GUIVRY", + "nomCommune": "GUIVRY" }, { - "codePostal": "70110", - "codeCommune": "70395", - "libelleAcheminement": "OPPENANS", - "nomCommune": "OPPENANS" + "codePostal": "02600", + "codeCommune": "02812", + "libelleAcheminement": "VILLERS HELON", + "nomCommune": "VILLERS HELON" }, { - "codePostal": "70230", - "codeCommune": "70397", - "libelleAcheminement": "ORMENANS", - "nomCommune": "ORMENANS" + "codePostal": "02160", + "codeCommune": "02364", + "libelleAcheminement": "GUYENCOURT", + "nomCommune": "GUYENCOURT" }, { - "codePostal": "70500", - "codeCommune": "70399", - "libelleAcheminement": "ORMOY", - "nomCommune": "ORMOY" + "codePostal": "02870", + "codeCommune": "02821", + "libelleAcheminement": "VIVAISE", + "nomCommune": "VIVAISE" }, { - "codePostal": "70190", - "codeCommune": "70405", - "libelleAcheminement": "PENNESIERES", - "nomCommune": "PENNESIERES" + "codePostal": "02420", + "codeCommune": "02370", + "libelleAcheminement": "HARGICOURT", + "nomCommune": "HARGICOURT" }, { - "codePostal": "70140", - "codeCommune": "70408", - "libelleAcheminement": "PESMES", - "nomCommune": "PESMES" + "codePostal": "02600", + "codeCommune": "02822", + "libelleAcheminement": "VIVIERES", + "nomCommune": "VIVIERES" }, { - "codePostal": "70210", - "codeCommune": "70415", - "libelleAcheminement": "POLAINCOURT ET CLAIREFONTAINE", - "nomCommune": "POLAINCOURT ET CLAIREFONTAINE" + "codePostal": "02120", + "codeCommune": "02376", + "libelleAcheminement": "HAUTEVILLE", + "nomCommune": "HAUTEVILLE" }, { - "codePostal": "70240", - "codeCommune": "70416", - "libelleAcheminement": "POMOY", - "nomCommune": "POMOY" + "codePostal": "02250", + "codeCommune": "02827", + "libelleAcheminement": "VOYENNE", + "nomCommune": "VOYENNE" }, { - "codePostal": "70310", - "codeCommune": "70425", - "libelleAcheminement": "LA PROISELIERE ET LANGLE", - "nomCommune": "LA PROISELIERE ET LANGLE" + "codePostal": "02500", + "codeCommune": "02381", + "libelleAcheminement": "HIRSON", + "nomCommune": "HIRSON" }, { - "codePostal": "70160", - "codeCommune": "70427", - "libelleAcheminement": "PURGEROT", - "nomCommune": "PURGEROT" + "codePostal": "02120", + "codeCommune": "02832", + "libelleAcheminement": "WIEGE FATY", + "nomCommune": "WIEGE FATY" }, { - "codePostal": "70190", - "codeCommune": "70431", - "libelleAcheminement": "QUENOCHE", - "nomCommune": "QUENOCHE" + "codePostal": "02850", + "codeCommune": "02389", + "libelleAcheminement": "JAULGONNE", + "nomCommune": "JAULGONNE" }, { - "codePostal": "70280", - "codeCommune": "70435", - "libelleAcheminement": "RADDON ET CHAPENDU", - "nomCommune": "RADDON ET CHAPENDU" + "codePostal": "03120", + "codeCommune": "03004", + "libelleAcheminement": "ANDELAROCHE", + "nomCommune": "ANDELAROCHE" }, { - "codePostal": "70500", - "codeCommune": "70437", - "libelleAcheminement": "RANZEVELLE", - "nomCommune": "RANZEVELLE" + "codePostal": "02490", + "codeCommune": "02390", + "libelleAcheminement": "JEANCOURT", + "nomCommune": "JEANCOURT" }, { - "codePostal": "70000", - "codeCommune": "70439", - "libelleAcheminement": "RAZE", - "nomCommune": "RAZE" + "codePostal": "03460", + "codeCommune": "03009", + "libelleAcheminement": "AUBIGNY", + "nomCommune": "AUBIGNY" }, { - "codePostal": "70130", - "codeCommune": "70440", - "libelleAcheminement": "RECOLOGNE LES RAY", - "nomCommune": "RECOLOGNE" + "codePostal": "02120", + "codeCommune": "02403", + "libelleAcheminement": "LANDIFAY ET BERTAIGNEMONT", + "nomCommune": "LANDIFAY ET BERTAIGNEMONT" }, { - "codePostal": "70120", - "codeCommune": "70450", - "libelleAcheminement": "LA ROCHELLE", - "nomCommune": "LA ROCHELLE" + "codePostal": "03190", + "codeCommune": "03010", + "libelleAcheminement": "AUDES", + "nomCommune": "AUDES" }, { - "codePostal": "70270", - "codeCommune": "70459", - "libelleAcheminement": "ST BARTHELEMY", - "nomCommune": "ST BARTHELEMY" + "codePostal": "02260", + "codeCommune": "02418", + "libelleAcheminement": "LERZY", + "nomCommune": "LERZY" }, { - "codePostal": "70400", - "codeCommune": "70477", - "libelleAcheminement": "SAULNOT", - "nomCommune": "SAULNOT" + "codePostal": "03340", + "codeCommune": "03025", + "libelleAcheminement": "BESSAY SUR ALLIER", + "nomCommune": "BESSAY SUR ALLIER" }, { - "codePostal": "70170", - "codeCommune": "70483", - "libelleAcheminement": "SCYE", - "nomCommune": "SCYE" + "codePostal": "02170", + "codeCommune": "02419", + "libelleAcheminement": "LESCHELLE", + "nomCommune": "LESCHELLE" }, { - "codePostal": "70160", - "codeCommune": "70488", - "libelleAcheminement": "SENONCOURT", - "nomCommune": "SENONCOURT" + "codePostal": "03160", + "codeCommune": "03036", + "libelleAcheminement": "BOURBON L ARCHAMBAULT", + "nomCommune": "BOURBON L ARCHAMBAULT" }, { - "codePostal": "70120", - "codeCommune": "70499", - "libelleAcheminement": "THEULEY", - "nomCommune": "THEULEY" + "codePostal": "02500", + "codeCommune": "02425", + "libelleAcheminement": "LEUZE", + "nomCommune": "LEUZE" }, { - "codePostal": "70140", - "codeCommune": "70510", - "libelleAcheminement": "VADANS", - "nomCommune": "VADANS" + "codePostal": "03360", + "codeCommune": "03037", + "libelleAcheminement": "BRAIZE", + "nomCommune": "BRAIZE" }, { - "codePostal": "70200", - "codeCommune": "70515", - "libelleAcheminement": "LE VAL DE GOUHENANS", - "nomCommune": "LE VAL DE GOUHENANS" + "codePostal": "02600", + "codeCommune": "02438", + "libelleAcheminement": "LONGPONT", + "nomCommune": "LONGPONT" }, { - "codePostal": "70190", - "codeCommune": "70519", - "libelleAcheminement": "VANDELANS", - "nomCommune": "VANDELANS" + "codePostal": "03120", + "codeCommune": "03042", + "libelleAcheminement": "LE BREUIL", + "nomCommune": "LE BREUIL" }, { - "codePostal": "70130", - "codeCommune": "70520", - "libelleAcheminement": "VANNE", - "nomCommune": "VANNE" + "codePostal": "02160", + "codeCommune": "02439", + "libelleAcheminement": "LES SEPTVALLONS", + "nomCommune": "LES SEPTVALLONS" }, { - "codePostal": "70600", - "codeCommune": "70523", - "libelleAcheminement": "VARS", - "nomCommune": "VARS" + "codePostal": "03350", + "codeCommune": "03048", + "libelleAcheminement": "CERILLY", + "nomCommune": "CERILLY" }, { - "codePostal": "70170", - "codeCommune": "70524", - "libelleAcheminement": "VAUCHOUX", - "nomCommune": "VAUCHOUX" + "codePostal": "02440", + "codeCommune": "02446", + "libelleAcheminement": "LY FONTAINE", + "nomCommune": "LY FONTAINE" }, { - "codePostal": "70210", - "codeCommune": "70526", - "libelleAcheminement": "VAUVILLERS", - "nomCommune": "VAUVILLERS" + "codePostal": "03250", + "codeCommune": "03050", + "libelleAcheminement": "LA CHABANNE", + "nomCommune": "LA CHABANNE" }, { - "codePostal": "70000", - "codeCommune": "70532", - "libelleAcheminement": "VELLEFAUX", - "nomCommune": "VELLEFAUX" + "codePostal": "02420", + "codeCommune": "02451", + "libelleAcheminement": "MAGNY LA FOSSE", + "nomCommune": "MAGNY LA FOSSE" }, { - "codePostal": "70700", - "codeCommune": "70538", - "libelleAcheminement": "VELLEMOZ", - "nomCommune": "VELLEMOZ" + "codePostal": "03140", + "codeCommune": "03053", + "libelleAcheminement": "CHANTELLE", + "nomCommune": "CHANTELLE" }, { - "codePostal": "70100", - "codeCommune": "70542", - "libelleAcheminement": "VENERE", - "nomCommune": "VENERE" + "codePostal": "02190", + "codeCommune": "02454", + "libelleAcheminement": "LA MALMAISON", + "nomCommune": "LA MALMAISON" }, { - "codePostal": "70700", - "codeCommune": "70557", - "libelleAcheminement": "VILLEFRANCON", - "nomCommune": "VILLEFRANCON" + "codePostal": "03390", + "codeCommune": "03058", + "libelleAcheminement": "CHAPPES", + "nomCommune": "CHAPPES" }, { - "codePostal": "70400", - "codeCommune": "70567", - "libelleAcheminement": "VILLERS SUR SAULNOT", - "nomCommune": "VILLERS SUR SAULNOT" + "codePostal": "02300", + "codeCommune": "02456", + "libelleAcheminement": "MANICAMP", + "nomCommune": "MANICAMP" }, { - "codePostal": "70240", - "codeCommune": "70569", - "libelleAcheminement": "VILORY", - "nomCommune": "VILORY" + "codePostal": "03110", + "codeCommune": "03060", + "libelleAcheminement": "CHARMEIL", + "nomCommune": "CHARMEIL" }, { - "codePostal": "70200", - "codeCommune": "70577", - "libelleAcheminement": "VOUHENANS", - "nomCommune": "VOUHENANS" + "codePostal": "02300", + "codeCommune": "02461", + "libelleAcheminement": "MAREST DAMPCOURT", + "nomCommune": "MAREST DAMPCOURT" }, { - "codePostal": "70130", - "codeCommune": "70580", - "libelleAcheminement": "VY LE FERROUX", - "nomCommune": "VY LE FERROUX" + "codePostal": "03320", + "codeCommune": "03064", + "libelleAcheminement": "CHATEAU SUR ALLIER", + "nomCommune": "CHATEAU SUR ALLIER" }, { - "codePostal": "71350", - "codeCommune": "71003", - "libelleAcheminement": "ALLEREY SUR SAONE", - "nomCommune": "ALLEREY SUR SAONE" + "codePostal": "02500", + "codeCommune": "02470", + "libelleAcheminement": "MARTIGNY", + "nomCommune": "MARTIGNY" }, { - "codePostal": "71370", - "codeCommune": "71023", - "libelleAcheminement": "BAUDRIERES", - "nomCommune": "BAUDRIERES" + "codePostal": "03220", + "codeCommune": "03067", + "libelleAcheminement": "CHATELPERRON", + "nomCommune": "CHATELPERRON" }, { - "codePostal": "71110", - "codeCommune": "71024", - "libelleAcheminement": "BAUGY", - "nomCommune": "BAUGY" + "codePostal": "02820", + "codeCommune": "02472", + "libelleAcheminement": "MAUREGNY EN HAYE", + "nomCommune": "MAUREGNY EN HAYE" }, { - "codePostal": "71960", - "codeCommune": "71032", - "libelleAcheminement": "BERZE LA VILLE", - "nomCommune": "BERZE LA VILLE" + "codePostal": "03230", + "codeCommune": "03074", + "libelleAcheminement": "CHEVAGNES", + "nomCommune": "CHEVAGNES" }, { - "codePostal": "71260", - "codeCommune": "71035", - "libelleAcheminement": "BISSY LA MACONNAISE", - "nomCommune": "BISSY LA MACONNAISE" + "codePostal": "02800", + "codeCommune": "02473", + "libelleAcheminement": "MAYOT", + "nomCommune": "MAYOT" }, { - "codePostal": "71460", - "codeCommune": "71036", - "libelleAcheminement": "BISSY SOUS UXELLES", - "nomCommune": "BISSY SOUS UXELLES" + "codePostal": "03140", + "codeCommune": "03075", + "libelleAcheminement": "CHEZELLE", + "nomCommune": "CHEZELLE" }, { - "codePostal": "71450", - "codeCommune": "71040", - "libelleAcheminement": "BLANZY", - "nomCommune": "BLANZY" + "codePostal": "02700", + "codeCommune": "02474", + "libelleAcheminement": "MENNESSIS", + "nomCommune": "MENNESSIS" }, { - "codePostal": "71460", - "codeCommune": "71058", - "libelleAcheminement": "BRESSE SUR GROSNE", - "nomCommune": "BRESSE SUR GROSNE" + "codePostal": "03230", + "codeCommune": "03076", + "libelleAcheminement": "CHEZY", + "nomCommune": "CHEZY" }, { - "codePostal": "71460", - "codeCommune": "71067", - "libelleAcheminement": "BURNAND", - "nomCommune": "BURNAND" + "codePostal": "02240", + "codeCommune": "02483", + "libelleAcheminement": "MEZIERES SUR OISE", + "nomCommune": "MEZIERES SUR OISE" }, { - "codePostal": "71570", - "codeCommune": "71074", - "libelleAcheminement": "CHAINTRE", - "nomCommune": "CHAINTRE" + "codePostal": "03500", + "codeCommune": "03083", + "libelleAcheminement": "CONTIGNY", + "nomCommune": "CONTIGNY" }, { - "codePostal": "71120", - "codeCommune": "71086", - "libelleAcheminement": "CHANGY", - "nomCommune": "CHANGY" + "codePostal": "02350", + "codeCommune": "02486", + "libelleAcheminement": "MISSY LES PIERREPONT", + "nomCommune": "MISSY LES PIERREPONT" }, { - "codePostal": "71240", - "codeCommune": "71089", - "libelleAcheminement": "LA CHAPELLE DE BRAGNY", - "nomCommune": "LA CHAPELLE DE BRAGNY" + "codePostal": "03140", + "codeCommune": "03096", + "libelleAcheminement": "DENEUILLE LES CHANTELLE", + "nomCommune": "DENEUILLE LES CHANTELLE" }, { - "codePostal": "71570", - "codeCommune": "71090", - "libelleAcheminement": "LA CHAPELLE DE GUINCHAY", - "nomCommune": "LA CHAPELLE DE GUINCHAY" + "codePostal": "02270", + "codeCommune": "02491", + "libelleAcheminement": "MONCEAU LE NEUF ET FAUCOUZY", + "nomCommune": "MONCEAU LE NEUF ET FAUCOUZY" }, { - "codePostal": "71800", - "codeCommune": "71095", - "libelleAcheminement": "LA CHAPELLE SOUS DUN", - "nomCommune": "LA CHAPELLE SOUS DUN" + "codePostal": "03130", + "codeCommune": "03103", + "libelleAcheminement": "LE DONJON", + "nomCommune": "LE DONJON" }, { - "codePostal": "71270", - "codeCommune": "71101", - "libelleAcheminement": "CHARETTE VARENNES", - "nomCommune": "CHARETTE VARENNES" + "codePostal": "02470", + "codeCommune": "02496", + "libelleAcheminement": "MONNES", + "nomCommune": "MONNES" }, { - "codePostal": "71350", - "codeCommune": "71104", - "libelleAcheminement": "CHARNAY LES CHALON", - "nomCommune": "CHARNAY LES CHALON" + "codePostal": "03110", + "codeCommune": "03109", + "libelleAcheminement": "ESCUROLLES", + "nomCommune": "ESCUROLLES" }, { - "codePostal": "71570", - "codeCommune": "71108", - "libelleAcheminement": "CHASSELAS", - "nomCommune": "CHASSELAS" + "codePostal": "02000", + "codeCommune": "02497", + "libelleAcheminement": "MONS EN LAONNOIS", + "nomCommune": "MONS EN LAONNOIS" }, { - "codePostal": "71740", - "codeCommune": "71113", - "libelleAcheminement": "CHATEAUNEUF", - "nomCommune": "CHATEAUNEUF" + "codePostal": "03250", + "codeCommune": "03113", + "libelleAcheminement": "FERRIERES SUR SICHON", + "nomCommune": "FERRIERES SUR SICHON" }, { - "codePostal": "71340", - "codeCommune": "71123", - "libelleAcheminement": "CHENAY LE CHATEL", - "nomCommune": "CHENAY LE CHATEL" + "codePostal": "02000", + "codeCommune": "02499", + "libelleAcheminement": "MONTBAVIN", + "nomCommune": "MONTBAVIN" }, { - "codePostal": "71390", - "codeCommune": "71124", - "libelleAcheminement": "CHENOVES", - "nomCommune": "CHENOVES" + "codePostal": "03800", + "codeCommune": "03118", + "libelleAcheminement": "GANNAT", + "nomCommune": "GANNAT" }, { - "codePostal": "71960", - "codeCommune": "71126", - "libelleAcheminement": "CHEVAGNY LES CHEVRIERES", - "nomCommune": "CHEVAGNY LES CHEVRIERES" + "codePostal": "02110", + "codeCommune": "02511", + "libelleAcheminement": "MONTIGNY EN ARROUAISE", + "nomCommune": "MONTIGNY EN ARROUAISE" }, { - "codePostal": "71800", - "codeCommune": "71133", - "libelleAcheminement": "LA CLAYETTE", - "nomCommune": "LA CLAYETTE" + "codePostal": "03230", + "codeCommune": "03120", + "libelleAcheminement": "GARNAT SUR ENGIEVRE", + "nomCommune": "GARNAT SUR ENGIEVRE" }, { - "codePostal": "71540", - "codeCommune": "71144", - "libelleAcheminement": "CORDESSE", - "nomCommune": "CORDESSE" + "codePostal": "02330", + "codeCommune": "02518", + "libelleAcheminement": "MONTLEVON", + "nomCommune": "MONTLEVON" }, { - "codePostal": "71460", - "codeCommune": "71145", - "libelleAcheminement": "CORMATIN", - "nomCommune": "CORMATIN" + "codePostal": "03190", + "codeCommune": "03127", + "libelleAcheminement": "HERISSON", + "nomCommune": "HERISSON" }, { - "codePostal": "71250", - "codeCommune": "71146", - "libelleAcheminement": "CORTAMBERT", - "nomCommune": "CORTAMBERT" + "codePostal": "02100", + "codeCommune": "02525", + "libelleAcheminement": "MORCOURT", + "nomCommune": "MORCOURT" }, { - "codePostal": "71170", - "codeCommune": "71148", - "libelleAcheminement": "COUBLANC", - "nomCommune": "COUBLANC" + "codePostal": "03600", + "codeCommune": "03129", + "libelleAcheminement": "HYDS", + "nomCommune": "HYDS" }, { - "codePostal": "71760", - "codeCommune": "71152", - "libelleAcheminement": "CRESSY SUR SOMME", - "nomCommune": "CRESSY SUR SOMME" + "codePostal": "02290", + "codeCommune": "02527", + "libelleAcheminement": "MORSAIN", + "nomCommune": "MORSAIN" }, { - "codePostal": "71260", - "codeCommune": "71156", - "libelleAcheminement": "CRUZILLE", - "nomCommune": "CRUZILLE" + "codePostal": "03120", + "codeCommune": "03138", + "libelleAcheminement": "LAPALISSE", + "nomCommune": "LAPALISSE" }, { - "codePostal": "71290", - "codeCommune": "71158", - "libelleAcheminement": "CUISERY", - "nomCommune": "CUISERY" + "codePostal": "02160", + "codeCommune": "02530", + "libelleAcheminement": "MOULINS", + "nomCommune": "MOULINS" }, { - "codePostal": "71800", - "codeCommune": "71160", - "libelleAcheminement": "CURBIGNY", - "nomCommune": "CURBIGNY" + "codePostal": "03250", + "codeCommune": "03141", + "libelleAcheminement": "LAVOINE", + "nomCommune": "LAVOINE" }, { - "codePostal": "71400", - "codeCommune": "71162", - "libelleAcheminement": "CURGY", - "nomCommune": "CURGY" + "codePostal": "02160", + "codeCommune": "02531", + "libelleAcheminement": "MOUSSY VERNEUIL", + "nomCommune": "MOUSSY VERNEUIL" }, { - "codePostal": "71460", - "codeCommune": "71164", - "libelleAcheminement": "CURTIL SOUS BURNAND", - "nomCommune": "CURTIL SOUS BURNAND" + "codePostal": "03230", + "codeCommune": "03156", + "libelleAcheminement": "LUSIGNY", + "nomCommune": "LUSIGNY" }, { - "codePostal": "71550", - "codeCommune": "71165", - "libelleAcheminement": "CUSSY EN MORVAN", - "nomCommune": "CUSSY EN MORVAN" + "codePostal": "02140", + "codeCommune": "02535", + "libelleAcheminement": "NAMPCELLES LA COUR", + "nomCommune": "NAMPCELLES LA COUR" }, { - "codePostal": "71620", - "codeCommune": "71167", - "libelleAcheminement": "DAMEREY", - "nomCommune": "DAMEREY" + "codePostal": "03190", + "codeCommune": "03158", + "libelleAcheminement": "HAUT BOCAGE", + "nomCommune": "HAUT BOCAGE" }, { - "codePostal": "71330", - "codeCommune": "71173", - "libelleAcheminement": "DEVROUZE", - "nomCommune": "DEVROUZE" + "codePostal": "02420", + "codeCommune": "02539", + "libelleAcheminement": "NAUROY", + "nomCommune": "NAUROY" }, { - "codePostal": "71160", - "codeCommune": "71176", - "libelleAcheminement": "DIGOIN", - "nomCommune": "DIGOIN" + "codePostal": "03190", + "codeCommune": "03158", + "libelleAcheminement": "HAUT BOCAGE", + "nomCommune": "HAUT BOCAGE" }, { - "codePostal": "71520", - "codeCommune": "71178", - "libelleAcheminement": "DOMPIERRE LES ORMES", - "nomCommune": "DOMPIERRE LES ORMES" + "codePostal": "02250", + "codeCommune": "02545", + "libelleAcheminement": "LA NEUVILLE BOSMONT", + "nomCommune": "LA NEUVILLE BOSMONT" }, { - "codePostal": "71520", - "codeCommune": "71178", - "libelleAcheminement": "DOMPIERRE LES ORMES", - "nomCommune": "DOMPIERRE LES ORMES" + "codePostal": "03270", + "codeCommune": "03163", + "libelleAcheminement": "MARIOL", + "nomCommune": "MARIOL" }, { - "codePostal": "71510", - "codeCommune": "71191", - "libelleAcheminement": "ESSERTENNE", - "nomCommune": "ESSERTENNE" + "codePostal": "02250", + "codeCommune": "02547", + "libelleAcheminement": "LA NEUVILLE HOUSSET", + "nomCommune": "LA NEUVILLE HOUSSET" }, { - "codePostal": "71530", - "codeCommune": "71204", - "libelleAcheminement": "FRAGNES LA LOYERE", - "nomCommune": "FRAGNES LA LOYERE" + "codePostal": "03800", + "codeCommune": "03164", + "libelleAcheminement": "LE MAYET D ECOLE", + "nomCommune": "LE MAYET D ECOLE" }, { - "codePostal": "71460", - "codeCommune": "71216", - "libelleAcheminement": "GERMAGNY", - "nomCommune": "GERMAGNY" + "codePostal": "02450", + "codeCommune": "02548", + "libelleAcheminement": "LA NEUVILLE LES DORENGT", + "nomCommune": "LA NEUVILLE LES DORENGT" }, { - "codePostal": "71800", - "codeCommune": "71218", - "libelleAcheminement": "GIBLES", - "nomCommune": "GIBLES" + "codePostal": "03250", + "codeCommune": "03165", + "libelleAcheminement": "LE MAYET DE MONTAGNE", + "nomCommune": "LE MAYET DE MONTAGNE" }, { - "codePostal": "71240", - "codeCommune": "71219", - "libelleAcheminement": "GIGNY SUR SAONE", - "nomCommune": "GIGNY SUR SAONE" + "codePostal": "02310", + "codeCommune": "02555", + "libelleAcheminement": "NOGENT L ARTAUD", + "nomCommune": "NOGENT L ARTAUD" }, { - "codePostal": "71640", - "codeCommune": "71221", - "libelleAcheminement": "GIVRY", - "nomCommune": "GIVRY" + "codePostal": "03800", + "codeCommune": "03166", + "libelleAcheminement": "MAZERIER", + "nomCommune": "MAZERIER" }, { - "codePostal": "71390", - "codeCommune": "71225", - "libelleAcheminement": "GRANGES", - "nomCommune": "GRANGES" + "codePostal": "02270", + "codeCommune": "02559", + "libelleAcheminement": "NOUVION ET CATILLON", + "nomCommune": "NOUVION ET CATILLON" }, { - "codePostal": "71760", - "codeCommune": "71227", - "libelleAcheminement": "GRURY", - "nomCommune": "GRURY" + "codePostal": "03300", + "codeCommune": "03174", + "libelleAcheminement": "MOLLES", + "nomCommune": "MOLLES" }, { - "codePostal": "71600", - "codeCommune": "71232", - "libelleAcheminement": "HAUTEFOND", - "nomCommune": "HAUTEFOND" + "codePostal": "02120", + "codeCommune": "02563", + "libelleAcheminement": "NOYALES", + "nomCommune": "NOYALES" }, { - "codePostal": "71290", - "codeCommune": "71234", - "libelleAcheminement": "HUILLY SUR SEILLE", - "nomCommune": "HUILLY SUR SEILLE" + "codePostal": "03000", + "codeCommune": "03184", + "libelleAcheminement": "MONTILLY", + "nomCommune": "MONTILLY" }, { - "codePostal": "71460", - "codeCommune": "71242", - "libelleAcheminement": "JONCY", - "nomCommune": "JONCY" + "codePostal": "02160", + "codeCommune": "02565", + "libelleAcheminement": "OEUILLY", + "nomCommune": "OEUILLY" }, { - "codePostal": "71480", - "codeCommune": "71243", - "libelleAcheminement": "JOUDES", - "nomCommune": "JOUDES" + "codePostal": "03100", + "codeCommune": "03185", + "libelleAcheminement": "MONTLUCON", + "nomCommune": "MONTLUCON" }, { - "codePostal": "71240", - "codeCommune": "71245", - "libelleAcheminement": "JUGY", - "nomCommune": "JUGY" + "codePostal": "02600", + "codeCommune": "02568", + "libelleAcheminement": "OIGNY EN VALOIS", + "nomCommune": "OIGNY EN VALOIS" }, { - "codePostal": "71440", - "codeCommune": "71246", - "libelleAcheminement": "JUIF", - "nomCommune": "JUIF" + "codePostal": "03390", + "codeCommune": "03186", + "libelleAcheminement": "MONTMARAULT", + "nomCommune": "MONTMARAULT" }, { - "codePostal": "71270", - "codeCommune": "71254", - "libelleAcheminement": "LAYS SUR LE DOUBS", - "nomCommune": "LAYS SUR LE DOUBS" + "codePostal": "02200", + "codeCommune": "02593", + "libelleAcheminement": "PASLY", + "nomCommune": "PASLY" }, { - "codePostal": "71260", - "codeCommune": "71267", - "libelleAcheminement": "LUGNY", - "nomCommune": "LUGNY" + "codePostal": "03170", + "codeCommune": "03189", + "libelleAcheminement": "MONTVICQ", + "nomCommune": "MONTVICQ" }, { - "codePostal": "71000", - "codeCommune": "71270", - "libelleAcheminement": "MACON", - "nomCommune": "MACON" + "codePostal": "02190", + "codeCommune": "02601", + "libelleAcheminement": "PIGNICOURT", + "nomCommune": "PIGNICOURT" }, { - "codePostal": "71340", - "codeCommune": "71271", - "libelleAcheminement": "MAILLY", - "nomCommune": "MAILLY" + "codePostal": "03330", + "codeCommune": "03194", + "libelleAcheminement": "NAVES", + "nomCommune": "NAVES" }, { - "codePostal": "71140", - "codeCommune": "71273", - "libelleAcheminement": "MALTAT", - "nomCommune": "MALTAT" + "codePostal": "02210", + "codeCommune": "02606", + "libelleAcheminement": "LE PLESSIER HULEU", + "nomCommune": "LE PLESSIER HULEU" }, { - "codePostal": "71240", - "codeCommune": "71274", - "libelleAcheminement": "MANCEY", - "nomCommune": "MANCEY" + "codePostal": "03410", + "codeCommune": "03211", + "libelleAcheminement": "PREMILHAT", + "nomCommune": "PREMILHAT" }, { - "codePostal": "71300", - "codeCommune": "71278", - "libelleAcheminement": "MARIGNY", - "nomCommune": "MARIGNY" + "codePostal": "02860", + "codeCommune": "02609", + "libelleAcheminement": "PLOYART ET VAURSEINE", + "nomCommune": "PLOYART ET VAURSEINE" }, { - "codePostal": "71300", - "codeCommune": "71286", - "libelleAcheminement": "MARY", - "nomCommune": "MARY" + "codePostal": "03160", + "codeCommune": "03218", + "libelleAcheminement": "ST AUBIN LE MONIAL", + "nomCommune": "ST AUBIN LE MONIAL" }, { - "codePostal": "71520", - "codeCommune": "71289", - "libelleAcheminement": "MATOUR", - "nomCommune": "MATOUR" + "codePostal": "02160", + "codeCommune": "02612", + "libelleAcheminement": "PONT ARCY", + "nomCommune": "PONT ARCY" }, { - "codePostal": "71310", - "codeCommune": "71295", - "libelleAcheminement": "MERVANS", - "nomCommune": "MERVANS" + "codePostal": "03390", + "codeCommune": "03219", + "libelleAcheminement": "ST BONNET DE FOUR", + "nomCommune": "ST BONNET DE FOUR" }, { - "codePostal": "71960", - "codeCommune": "71299", - "libelleAcheminement": "MILLY LAMARTINE", - "nomCommune": "MILLY LAMARTINE" + "codePostal": "02110", + "codeCommune": "02618", + "libelleAcheminement": "PREMONT", + "nomCommune": "PREMONT" }, { - "codePostal": "71480", - "codeCommune": "71300", - "libelleAcheminement": "LE MIROIR", - "nomCommune": "LE MIROIR" + "codePostal": "03250", + "codeCommune": "03224", + "libelleAcheminement": "ST CLEMENT", + "nomCommune": "ST CLEMENT" }, { - "codePostal": "71240", - "codeCommune": "71308", - "libelleAcheminement": "MONTCEAUX RAGNY", - "nomCommune": "MONTCEAUX RAGNY" + "codePostal": "02120", + "codeCommune": "02625", + "libelleAcheminement": "PROIX", + "nomCommune": "PROIX" }, { - "codePostal": "71710", - "codeCommune": "71309", - "libelleAcheminement": "MONTCENIS", - "nomCommune": "MONTCENIS" + "codePostal": "03400", + "codeCommune": "03229", + "libelleAcheminement": "ST ENNEMOND", + "nomCommune": "ST ENNEMOND" }, { - "codePostal": "71270", - "codeCommune": "71315", - "libelleAcheminement": "MONT LES SEURRE", - "nomCommune": "MONT LES SEURRE" + "codePostal": "02260", + "codeCommune": "02650", + "libelleAcheminement": "ROCQUIGNY", + "nomCommune": "ROCQUIGNY" }, { - "codePostal": "71290", - "codeCommune": "71332", - "libelleAcheminement": "ORMES", - "nomCommune": "ORMES" + "codePostal": "03300", + "codeCommune": "03230", + "libelleAcheminement": "ST ETIENNE DE VICQ", + "nomCommune": "ST ETIENNE DE VICQ" }, { - "codePostal": "71700", - "codeCommune": "71338", - "libelleAcheminement": "OZENAY", - "nomCommune": "OZENAY" + "codePostal": "02800", + "codeCommune": "02651", + "libelleAcheminement": "ROGECOURT", + "nomCommune": "ROGECOURT" }, { - "codePostal": "71160", - "codeCommune": "71348", - "libelleAcheminement": "PERRIGNY SUR LOIRE", - "nomCommune": "PERRIGNY SUR LOIRE" + "codePostal": "03420", + "codeCommune": "03231", + "libelleAcheminement": "ST FARGEOL", + "nomCommune": "ST FARGEOL" }, { - "codePostal": "71270", - "codeCommune": "71351", - "libelleAcheminement": "PIERRE DE BRESSE", - "nomCommune": "PIERRE DE BRESSE" + "codePostal": "02130", + "codeCommune": "02655", + "libelleAcheminement": "RONCHERES", + "nomCommune": "RONCHERES" }, { - "codePostal": "71270", - "codeCommune": "71357", - "libelleAcheminement": "POURLANS", - "nomCommune": "POURLANS" + "codePostal": "03340", + "codeCommune": "03234", + "libelleAcheminement": "ST GERAND DE VAUX", + "nomCommune": "ST GERAND DE VAUX" }, { - "codePostal": "71290", - "codeCommune": "71359", - "libelleAcheminement": "PRETY", - "nomCommune": "PRETY" + "codePostal": "02140", + "codeCommune": "02657", + "libelleAcheminement": "ROUGERIES", + "nomCommune": "ROUGERIES" }, { - "codePostal": "71960", - "codeCommune": "71360", - "libelleAcheminement": "PRISSE", - "nomCommune": "PRISSE" + "codePostal": "03390", + "codeCommune": "03256", + "libelleAcheminement": "ST PRIEST EN MURAT", + "nomCommune": "ST PRIEST EN MURAT" }, { - "codePostal": "71470", - "codeCommune": "71373", - "libelleAcheminement": "ROMENAY", - "nomCommune": "ROMENAY" + "codePostal": "02360", + "codeCommune": "02666", + "libelleAcheminement": "ROZOY SUR SERRE", + "nomCommune": "ROZOY SUR SERRE" }, { - "codePostal": "71550", - "codeCommune": "71376", - "libelleAcheminement": "ROUSSILLON EN MORVAN", - "nomCommune": "ROUSSILLON EN MORVAN" + "codePostal": "03120", + "codeCommune": "03257", + "libelleAcheminement": "ST PRIX", + "nomCommune": "ST PRIX" }, { - "codePostal": "71150", - "codeCommune": "71378", - "libelleAcheminement": "RULLY", - "nomCommune": "RULLY" + "codePostal": "02120", + "codeCommune": "02668", + "libelleAcheminement": "SAINS RICHAUMONT", + "nomCommune": "SAINS RICHAUMONT" }, { - "codePostal": "71250", - "codeCommune": "71381", - "libelleAcheminement": "SAILLY", - "nomCommune": "SAILLY" + "codePostal": "03270", + "codeCommune": "03264", + "libelleAcheminement": "ST YORRE", + "nomCommune": "ST YORRE" }, { - "codePostal": "71220", - "codeCommune": "71387", - "libelleAcheminement": "ST ANDRE LE DESERT", - "nomCommune": "ST ANDRE LE DESERT" + "codePostal": "02820", + "codeCommune": "02675", + "libelleAcheminement": "STE CROIX", + "nomCommune": "STE CROIX" }, { - "codePostal": "71340", - "codeCommune": "71393", - "libelleAcheminement": "ST BONNET DE CRAY", - "nomCommune": "ST BONNET DE CRAY" + "codePostal": "03390", + "codeCommune": "03270", + "libelleAcheminement": "SAZERET", + "nomCommune": "SAZERET" }, { - "codePostal": "71220", - "codeCommune": "71394", - "libelleAcheminement": "ST BONNET DE JOUX", - "nomCommune": "ST BONNET DE JOUX" + "codePostal": "02330", + "codeCommune": "02677", + "libelleAcheminement": "ST EUGENE", + "nomCommune": "ST EUGENE" }, { - "codePostal": "71370", - "codeCommune": "71398", - "libelleAcheminement": "ST CHRISTOPHE EN BRESSE", - "nomCommune": "ST CHRISTOPHE EN BRESSE" + "codePostal": "03700", + "codeCommune": "03271", + "libelleAcheminement": "SERBANNES", + "nomCommune": "SERBANNES" }, { - "codePostal": "71800", - "codeCommune": "71399", - "libelleAcheminement": "ST CHRISTOPHE EN BRIONNAIS", - "nomCommune": "ST CHRISTOPHE EN BRIONNAIS" + "codePostal": "02250", + "codeCommune": "02689", + "libelleAcheminement": "ST PIERREMONT", + "nomCommune": "ST PIERREMONT" }, { - "codePostal": "71470", - "codeCommune": "71401", - "libelleAcheminement": "STE CROIX EN BRESSE", - "nomCommune": "STE CROIX EN BRESSE" + "codePostal": "03450", + "codeCommune": "03276", + "libelleAcheminement": "SUSSAT", + "nomCommune": "SUSSAT" }, { - "codePostal": "71210", - "codeCommune": "71412", - "libelleAcheminement": "ST EUSEBE", - "nomCommune": "ST EUSEBE" + "codePostal": "02840", + "codeCommune": "02697", + "libelleAcheminement": "SAMOUSSY", + "nomCommune": "SAMOUSSY" }, { - "codePostal": "71400", - "codeCommune": "71414", - "libelleAcheminement": "ST FORGEOT", - "nomCommune": "ST FORGEOT" + "codePostal": "03140", + "codeCommune": "03278", + "libelleAcheminement": "TAXAT SENAT", + "nomCommune": "TAXAT SENAT" }, { - "codePostal": "71260", - "codeCommune": "71416", - "libelleAcheminement": "ST GENGOUX DE SCISSE", - "nomCommune": "ST GENGOUX DE SCISSE" + "codePostal": "02130", + "codeCommune": "02699", + "libelleAcheminement": "SAPONAY", + "nomCommune": "SAPONAY" }, { - "codePostal": "71490", - "codeCommune": "71424", - "libelleAcheminement": "ST GERVAIS SUR COUCHES", - "nomCommune": "ST GERVAIS SUR COUCHES" + "codePostal": "03220", + "codeCommune": "03284", + "libelleAcheminement": "THIONNE", + "nomCommune": "THIONNE" }, { - "codePostal": "71510", - "codeCommune": "71425", - "libelleAcheminement": "ST GILLES", - "nomCommune": "ST GILLES" + "codePostal": "02110", + "codeCommune": "02703", + "libelleAcheminement": "SEBONCOURT", + "nomCommune": "SEBONCOURT" }, { - "codePostal": "71210", - "codeCommune": "71436", - "libelleAcheminement": "ST LAURENT D ANDENAY", - "nomCommune": "ST LAURENT D ANDENAY" + "codePostal": "03430", + "codeCommune": "03285", + "libelleAcheminement": "TORTEZAIS", + "nomCommune": "TORTEZAIS" }, { - "codePostal": "71510", - "codeCommune": "71442", - "libelleAcheminement": "ST LEGER SUR DHEUNE", - "nomCommune": "ST LEGER SUR DHEUNE" + "codePostal": "02410", + "codeCommune": "02707", + "libelleAcheminement": "SEPTVAUX", + "nomCommune": "SEPTVAUX" }, { - "codePostal": "71380", - "codeCommune": "71445", - "libelleAcheminement": "ST MARCEL", - "nomCommune": "ST MARCEL" + "codePostal": "03400", + "codeCommune": "03286", + "libelleAcheminement": "TOULON SUR ALLIER", + "nomCommune": "TOULON SUR ALLIER" }, { - "codePostal": "71390", - "codeCommune": "71449", - "libelleAcheminement": "ST MARTIN D AUXY", - "nomCommune": "ST MARTIN D AUXY" + "codePostal": "02420", + "codeCommune": "02708", + "libelleAcheminement": "SEQUEHART", + "nomCommune": "SEQUEHART" }, { - "codePostal": "71390", - "codeCommune": "71471", - "libelleAcheminement": "ST PRIVE", - "nomCommune": "ST PRIVE" + "codePostal": "03220", + "codeCommune": "03289", + "libelleAcheminement": "TRETEAU", + "nomCommune": "TRETEAU" }, { - "codePostal": "71320", - "codeCommune": "71474", - "libelleAcheminement": "STE RADEGONDE", - "nomCommune": "STE RADEGONDE" + "codePostal": "02220", + "codeCommune": "02714", + "libelleAcheminement": "SERMOISE", + "nomCommune": "SERMOISE" }, { - "codePostal": "71100", - "codeCommune": "71475", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "03330", + "codeCommune": "03295", + "libelleAcheminement": "VALIGNAT", + "nomCommune": "VALIGNAT" }, { - "codePostal": "71230", - "codeCommune": "71477", - "libelleAcheminement": "ST ROMAIN SOUS GOURDON", - "nomCommune": "ST ROMAIN SOUS GOURDON" + "codePostal": "02300", + "codeCommune": "02719", + "libelleAcheminement": "SINCENY", + "nomCommune": "SINCENY" }, { - "codePostal": "71200", - "codeCommune": "71479", - "libelleAcheminement": "ST SERNIN DU BOIS", - "nomCommune": "ST SERNIN DU BOIS" + "codePostal": "03110", + "codeCommune": "03304", + "libelleAcheminement": "VENDAT", + "nomCommune": "VENDAT" }, { - "codePostal": "71570", - "codeCommune": "71481", - "libelleAcheminement": "ST SYMPHORIEN D ANCELLES", - "nomCommune": "ST SYMPHORIEN D ANCELLES" + "codePostal": "02340", + "codeCommune": "02723", + "libelleAcheminement": "SOIZE", + "nomCommune": "SOIZE" }, { - "codePostal": "71570", - "codeCommune": "71481", - "libelleAcheminement": "ST SYMPHORIEN D ANCELLES", - "nomCommune": "ST SYMPHORIEN D ANCELLES" + "codePostal": "03200", + "codeCommune": "03306", + "libelleAcheminement": "LE VERNET", + "nomCommune": "LE VERNET" }, { - "codePostal": "71430", - "codeCommune": "71490", - "libelleAcheminement": "ST VINCENT BRAGNY", - "nomCommune": "ST VINCENT BRAGNY" + "codePostal": "02580", + "codeCommune": "02728", + "libelleAcheminement": "SORBAIS", + "nomCommune": "SORBAIS" }, { - "codePostal": "71600", - "codeCommune": "71491", - "libelleAcheminement": "ST YAN", - "nomCommune": "ST YAN" + "codePostal": "03390", + "codeCommune": "03308", + "libelleAcheminement": "VERNUSSE", + "nomCommune": "VERNUSSE" }, { - "codePostal": "71250", - "codeCommune": "71495", - "libelleAcheminement": "SALORNAY SUR GUYE", - "nomCommune": "SALORNAY SUR GUYE" + "codePostal": "02600", + "codeCommune": "02734", + "libelleAcheminement": "TAILLEFONTAINE", + "nomCommune": "TAILLEFONTAINE" }, { - "codePostal": "71000", - "codeCommune": "71497", - "libelleAcheminement": "SANCE", - "nomCommune": "SANCE" + "codePostal": "03200", + "codeCommune": "03310", + "libelleAcheminement": "VICHY", + "nomCommune": "VICHY" }, { - "codePostal": "71400", - "codeCommune": "71509", - "libelleAcheminement": "LA CELLE EN MORVAN", - "nomCommune": "LA CELLE EN MORVAN" + "codePostal": "02700", + "codeCommune": "02738", + "libelleAcheminement": "TERGNIER", + "nomCommune": "TERGNIER" }, { - "codePostal": "71110", - "codeCommune": "71510", - "libelleAcheminement": "SEMUR EN BRIONNAIS", - "nomCommune": "SEMUR EN BRIONNAIS" + "codePostal": "03400", + "codeCommune": "03321", + "libelleAcheminement": "YZEURE", + "nomCommune": "YZEURE" }, { - "codePostal": "71250", - "codeCommune": "71521", - "libelleAcheminement": "SIGY LE CHATEL", - "nomCommune": "SIGY LE CHATEL" + "codePostal": "02140", + "codeCommune": "02740", + "libelleAcheminement": "THENAILLES", + "nomCommune": "THENAILLES" }, { - "codePostal": "71540", - "codeCommune": "71527", - "libelleAcheminement": "SOMMANT", - "nomCommune": "SOMMANT" + "codePostal": "04510", + "codeCommune": "04001", + "libelleAcheminement": "AIGLUN", + "nomCommune": "AIGLUN" }, { - "codePostal": "71360", - "codeCommune": "71530", - "libelleAcheminement": "SULLY", - "nomCommune": "SULLY" + "codePostal": "02340", + "codeCommune": "02743", + "libelleAcheminement": "LE THUEL", + "nomCommune": "LE THUEL" }, { - "codePostal": "71400", - "codeCommune": "71535", - "libelleAcheminement": "TAVERNAY", - "nomCommune": "TAVERNAY" + "codePostal": "04170", + "codeCommune": "04005", + "libelleAcheminement": "ALLONS", + "nomCommune": "ALLONS" }, { - "codePostal": "71520", - "codeCommune": "71546", - "libelleAcheminement": "TRAMBLY", - "nomCommune": "TRAMBLY" + "codePostal": "02490", + "codeCommune": "02747", + "libelleAcheminement": "TREFCON", + "nomCommune": "TREFCON" }, { - "codePostal": "71290", - "codeCommune": "71549", - "libelleAcheminement": "LA TRUCHERE", - "nomCommune": "LA TRUCHERE" + "codePostal": "04250", + "codeCommune": "04023", + "libelleAcheminement": "BAYONS", + "nomCommune": "BAYONS" }, { - "codePostal": "71130", - "codeCommune": "71552", - "libelleAcheminement": "UXEAU", - "nomCommune": "UXEAU" + "codePostal": "02120", + "codeCommune": "02757", + "libelleAcheminement": "VADENCOURT", + "nomCommune": "VADENCOURT" }, { - "codePostal": "71800", - "codeCommune": "71559", - "libelleAcheminement": "VARENNES SOUS DUN", - "nomCommune": "VARENNES SOUS DUN" + "codePostal": "04330", + "codeCommune": "04030", + "libelleAcheminement": "BLIEUX", + "nomCommune": "BLIEUX" }, { - "codePostal": "71800", - "codeCommune": "71561", - "libelleAcheminement": "VAUBAN", - "nomCommune": "VAUBAN" + "codePostal": "02190", + "codeCommune": "02761", + "libelleAcheminement": "VARISCOURT", + "nomCommune": "VARISCOURT" }, { - "codePostal": "71240", - "codeCommune": "71572", - "libelleAcheminement": "VERS", - "nomCommune": "VERS" + "codePostal": "04340", + "codeCommune": "04033", + "libelleAcheminement": "UBAYE SERRE PONCON", + "nomCommune": "UBAYE SERRE PONCON" }, { - "codePostal": "71500", - "codeCommune": "71580", - "libelleAcheminement": "VINCELLES", - "nomCommune": "VINCELLES" + "codePostal": "02590", + "codeCommune": "02772", + "libelleAcheminement": "VAUX EN VERMANDOIS", + "nomCommune": "VAUX EN VERMANDOIS" }, { - "codePostal": "71260", - "codeCommune": "71584", - "libelleAcheminement": "VIRE", - "nomCommune": "VIRE" + "codePostal": "04120", + "codeCommune": "04039", + "libelleAcheminement": "CASTELLANE", + "nomCommune": "CASTELLANE" }, { - "codePostal": "71530", - "codeCommune": "71585", - "libelleAcheminement": "VIREY LE GRAND", - "nomCommune": "VIREY LE GRAND" + "codePostal": "02540", + "codeCommune": "02777", + "libelleAcheminement": "VENDIERES", + "nomCommune": "VENDIERES" }, { - "codePostal": "71120", - "codeCommune": "71586", - "libelleAcheminement": "VIRY", - "nomCommune": "VIRY" + "codePostal": "04320", + "codeCommune": "04042", + "libelleAcheminement": "CASTELLET LES SAUSSES", + "nomCommune": "CASTELLET LES SAUSSES" }, { - "codePostal": "72610", - "codeCommune": "72006", - "libelleAcheminement": "ARCONNAY", - "nomCommune": "ARCONNAY" + "codePostal": "02510", + "codeCommune": "02779", + "libelleAcheminement": "VENEROLLES", + "nomCommune": "VENEROLLES" }, { - "codePostal": "72130", - "codeCommune": "72011", - "libelleAcheminement": "ASSE LE BOISNE", - "nomCommune": "ASSE LE BOISNE" + "codePostal": "04510", + "codeCommune": "04046", + "libelleAcheminement": "LE CHAFFAUT ST JURSON", + "nomCommune": "LE CHAFFAUT ST JURSON" }, { - "codePostal": "72540", - "codeCommune": "72017", - "libelleAcheminement": "AUVERS SOUS MONTFAUCON", - "nomCommune": "AUVERS SOUS MONTFAUCON" + "codePostal": "02380", + "codeCommune": "02786", + "libelleAcheminement": "VERNEUIL SOUS COUCY", + "nomCommune": "VERNEUIL SOUS COUCY" }, { - "codePostal": "72400", - "codeCommune": "72020", - "libelleAcheminement": "AVEZE", - "nomCommune": "AVEZE" + "codePostal": "04660", + "codeCommune": "04047", + "libelleAcheminement": "CHAMPTERCIER", + "nomCommune": "CHAMPTERCIER" }, { - "codePostal": "72200", - "codeCommune": "72025", - "libelleAcheminement": "BAZOUGES CRE SUR LOIR", - "nomCommune": "BAZOUGES CRE SUR LOIR" + "codePostal": "02800", + "codeCommune": "02788", + "libelleAcheminement": "VERSIGNY", + "nomCommune": "VERSIGNY" }, { - "codePostal": "72110", - "codeCommune": "72039", - "libelleAcheminement": "BONNETABLE", - "nomCommune": "BONNETABLE" + "codePostal": "04200", + "codeCommune": "04051", + "libelleAcheminement": "CHATEAUNEUF MIRAVAIL", + "nomCommune": "CHATEAUNEUF MIRAVAIL" }, { - "codePostal": "72550", - "codeCommune": "72045", - "libelleAcheminement": "BRAINS SUR GEE", - "nomCommune": "BRAINS SUR GEE" + "codePostal": "02840", + "codeCommune": "02791", + "libelleAcheminement": "VESLUD", + "nomCommune": "VESLUD" }, { - "codePostal": "72330", - "codeCommune": "72051", - "libelleAcheminement": "CERANS FOULLETOURTE", - "nomCommune": "CERANS FOULLETOURTE" + "codePostal": "04250", + "codeCommune": "04057", + "libelleAcheminement": "CLAMENSANE", + "nomCommune": "CLAMENSANE" }, { - "codePostal": "72650", - "codeCommune": "72065", - "libelleAcheminement": "LA CHAPELLE ST AUBIN", - "nomCommune": "LA CHAPELLE ST AUBIN" + "codePostal": "02130", + "codeCommune": "02794", + "libelleAcheminement": "VEZILLY", + "nomCommune": "VEZILLY" }, { - "codePostal": "72540", - "codeCommune": "72070", - "libelleAcheminement": "CHASSILLE", - "nomCommune": "CHASSILLE" + "codePostal": "04220", + "codeCommune": "04063", + "libelleAcheminement": "CORBIERES EN PROVENCE", + "nomCommune": "CORBIERES EN PROVENCE" }, { - "codePostal": "72510", - "codeCommune": "72072", - "libelleAcheminement": "CHATEAU L HERMITAGE", - "nomCommune": "CHATEAU L HERMITAGE" + "codePostal": "02120", + "codeCommune": "02814", + "libelleAcheminement": "VILLERS LES GUISE", + "nomCommune": "VILLERS LES GUISE" }, { - "codePostal": "72120", - "codeCommune": "72087", - "libelleAcheminement": "CONFLANS SUR ANILLE", - "nomCommune": "CONFLANS SUR ANILLE" + "codePostal": "04000", + "codeCommune": "04070", + "libelleAcheminement": "DIGNE LES BAINS", + "nomCommune": "DIGNE LES BAINS" }, { - "codePostal": "72160", - "codeCommune": "72090", - "libelleAcheminement": "CONNERRE", - "nomCommune": "CONNERRE" + "codePostal": "02300", + "codeCommune": "02820", + "libelleAcheminement": "VIRY NOUREUIL", + "nomCommune": "VIRY NOUREUIL" }, { - "codePostal": "72110", - "codeCommune": "72102", - "libelleAcheminement": "COURCIVAL", - "nomCommune": "COURCIVAL" + "codePostal": "04200", + "codeCommune": "04075", + "libelleAcheminement": "ENTREPIERRES", + "nomCommune": "ENTREPIERRES" }, { - "codePostal": "72150", - "codeCommune": "72103", - "libelleAcheminement": "COURDEMANCHE", - "nomCommune": "COURDEMANCHE" + "codePostal": "02140", + "codeCommune": "02826", + "libelleAcheminement": "VOULPAIX", + "nomCommune": "VOULPAIX" }, { - "codePostal": "72240", - "codeCommune": "72111", - "libelleAcheminement": "CURES", - "nomCommune": "CURES" + "codePostal": "04000", + "codeCommune": "04097", + "libelleAcheminement": "LA JAVIE", + "nomCommune": "LA JAVIE" }, { - "codePostal": "72260", - "codeCommune": "72112", - "libelleAcheminement": "DANGEUL", - "nomCommune": "DANGEUL" + "codePostal": "03210", + "codeCommune": "03002", + "libelleAcheminement": "AGONGES", + "nomCommune": "AGONGES" }, { - "codePostal": "72500", - "codeCommune": "72115", - "libelleAcheminement": "DISSAY SOUS COURCILLON", - "nomCommune": "DISSAY SOUS COURCILLON" + "codePostal": "04270", + "codeCommune": "04107", + "libelleAcheminement": "MAJASTRES", + "nomCommune": "MAJASTRES" }, { - "codePostal": "72470", - "codeCommune": "72129", - "libelleAcheminement": "FATINES", - "nomCommune": "FATINES" + "codePostal": "03380", + "codeCommune": "03005", + "libelleAcheminement": "ARCHIGNAT", + "nomCommune": "ARCHIGNAT" }, { - "codePostal": "72430", - "codeCommune": "72131", - "libelleAcheminement": "FERCE SUR SARTHE", - "nomCommune": "FERCE SUR SARTHE" + "codePostal": "04350", + "codeCommune": "04108", + "libelleAcheminement": "MALIJAI", + "nomCommune": "MALIJAI" }, { - "codePostal": "72600", - "codeCommune": "72137", - "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", - "nomCommune": "VILLENEUVE EN PERSEIGNE" + "codePostal": "03000", + "codeCommune": "03013", + "libelleAcheminement": "AVERMES", + "nomCommune": "AVERMES" }, { - "codePostal": "72130", - "codeCommune": "72138", - "libelleAcheminement": "FRESNAY SUR SARTHE", - "nomCommune": "FRESNAY SUR SARTHE" + "codePostal": "04230", + "codeCommune": "04109", + "libelleAcheminement": "MALLEFOUGASSE AUGES", + "nomCommune": "MALLEFOUGASSE AUGES" }, { - "codePostal": "72130", - "codeCommune": "72141", - "libelleAcheminement": "GESNES LE GANDELIN", - "nomCommune": "GESNES LE GANDELIN" + "codePostal": "03130", + "codeCommune": "03014", + "libelleAcheminement": "AVRILLY", + "nomCommune": "AVRILLY" }, { - "codePostal": "72610", - "codeCommune": "72142", - "libelleAcheminement": "GRANDCHAMP", - "nomCommune": "GRANDCHAMP" + "codePostal": "04300", + "codeCommune": "04111", + "libelleAcheminement": "MANE", + "nomCommune": "MANE" }, { - "codePostal": "72380", - "codeCommune": "72147", - "libelleAcheminement": "LA GUIERCHE", - "nomCommune": "LA GUIERCHE" + "codePostal": "03230", + "codeCommune": "03019", + "libelleAcheminement": "BEAULON", + "nomCommune": "BEAULON" }, { - "codePostal": "72220", - "codeCommune": "72155", - "libelleAcheminement": "LAIGNE EN BELIN", - "nomCommune": "LAIGNE EN BELIN" + "codePostal": "04100", + "codeCommune": "04112", + "libelleAcheminement": "MANOSQUE", + "nomCommune": "MANOSQUE" }, { - "codePostal": "72340", - "codeCommune": "72161", - "libelleAcheminement": "LHOMME", - "nomCommune": "LHOMME" + "codePostal": "03210", + "codeCommune": "03026", + "libelleAcheminement": "BESSON", + "nomCommune": "BESSON" }, { - "codePostal": "72450", - "codeCommune": "72165", - "libelleAcheminement": "LOMBRON", - "nomCommune": "LOMBRON" + "codePostal": "04240", + "codeCommune": "04115", + "libelleAcheminement": "MEAILLES", + "nomCommune": "MEAILLES" }, { - "codePostal": "72300", - "codeCommune": "72167", - "libelleAcheminement": "LOUAILLES", - "nomCommune": "LOUAILLES" + "codePostal": "03170", + "codeCommune": "03031", + "libelleAcheminement": "BIZENEUILLE", + "nomCommune": "BIZENEUILLE" }, { - "codePostal": "72290", - "codeCommune": "72196", - "libelleAcheminement": "MEZIERES SUR PONTHOUIN", - "nomCommune": "MEZIERES SUR PONTHOUIN" + "codePostal": "04510", + "codeCommune": "04122", + "libelleAcheminement": "MIRABEAU", + "nomCommune": "MIRABEAU" }, { - "codePostal": "72170", - "codeCommune": "72199", - "libelleAcheminement": "MOITRON SUR SARTHE", - "nomCommune": "MOITRON SUR SARTHE" + "codePostal": "03350", + "codeCommune": "03041", + "libelleAcheminement": "LE BRETHON", + "nomCommune": "LE BRETHON" }, { - "codePostal": "72320", - "codeCommune": "72208", - "libelleAcheminement": "MONTMIRAIL", - "nomCommune": "MONTMIRAIL" + "codePostal": "04110", + "codeCommune": "04129", + "libelleAcheminement": "MONTJUSTIN", + "nomCommune": "MONTJUSTIN" }, { - "codePostal": "72600", - "codeCommune": "72215", - "libelleAcheminement": "NEUFCHATEL EN SAOSNOIS", - "nomCommune": "NEUFCHATEL EN SAOSNOIS" + "codePostal": "03440", + "codeCommune": "03046", + "libelleAcheminement": "BUXIERES LES MINES", + "nomCommune": "BUXIERES LES MINES" }, { - "codePostal": "72190", - "codeCommune": "72217", - "libelleAcheminement": "NEUVILLE SUR SARTHE", - "nomCommune": "NEUVILLE SUR SARTHE" + "codePostal": "04150", + "codeCommune": "04132", + "libelleAcheminement": "MONTSALIER", + "nomCommune": "MONTSALIER" }, { - "codePostal": "72140", - "codeCommune": "72218", - "libelleAcheminement": "NEUVILLETTE EN CHARNIE", - "nomCommune": "NEUVILLETTE EN CHARNIE" + "codePostal": "03340", + "codeCommune": "03054", + "libelleAcheminement": "CHAPEAU", + "nomCommune": "CHAPEAU" }, { - "codePostal": "72110", - "codeCommune": "72220", - "libelleAcheminement": "NOGENT LE BERNARD", - "nomCommune": "NOGENT LE BERNARD" + "codePostal": "04170", + "codeCommune": "04136", + "libelleAcheminement": "LA MURE ARGENS", + "nomCommune": "LA MURE ARGENS" }, { - "codePostal": "72610", - "codeCommune": "72225", - "libelleAcheminement": "OISSEAU LE PETIT", - "nomCommune": "OISSEAU LE PETIT" + "codePostal": "03800", + "codeCommune": "03061", + "libelleAcheminement": "CHARMES", + "nomCommune": "CHARMES" }, { - "codePostal": "72330", - "codeCommune": "72230", - "libelleAcheminement": "PARIGNE LE POLIN", - "nomCommune": "PARIGNE LE POLIN" + "codePostal": "04110", + "codeCommune": "04142", + "libelleAcheminement": "OPPEDETTE", + "nomCommune": "OPPEDETTE" }, { - "codePostal": "72260", - "codeCommune": "72233", - "libelleAcheminement": "PERAY", - "nomCommune": "PERAY" + "codePostal": "03450", + "codeCommune": "03078", + "libelleAcheminement": "CHOUVIGNY", + "nomCommune": "CHOUVIGNY" }, { - "codePostal": "72140", - "codeCommune": "72234", - "libelleAcheminement": "PEZE LE ROBERT", - "nomCommune": "PEZE LE ROBERT" + "codePostal": "04200", + "codeCommune": "04145", + "libelleAcheminement": "PEIPIN", + "nomCommune": "PEIPIN" }, { - "codePostal": "72260", - "codeCommune": "72251", - "libelleAcheminement": "RENE", - "nomCommune": "RENE" + "codePostal": "03220", + "codeCommune": "03079", + "libelleAcheminement": "CINDRE", + "nomCommune": "CINDRE" }, { - "codePostal": "72140", - "codeCommune": "72256", - "libelleAcheminement": "ROUEZ", - "nomCommune": "ROUEZ" + "codePostal": "04410", + "codeCommune": "04157", + "libelleAcheminement": "PUIMOISSON", + "nomCommune": "PUIMOISSON" }, { - "codePostal": "72240", - "codeCommune": "72261", - "libelleAcheminement": "RUILLE EN CHAMPAGNE", - "nomCommune": "RUILLE EN CHAMPAGNE" + "codePostal": "03600", + "codeCommune": "03082", + "libelleAcheminement": "COMMENTRY", + "nomCommune": "COMMENTRY" }, { - "codePostal": "72340", - "codeCommune": "72262", - "libelleAcheminement": "LOIR EN VALLEE", - "nomCommune": "LOIR EN VALLEE" + "codePostal": "04500", + "codeCommune": "04158", + "libelleAcheminement": "QUINSON", + "nomCommune": "QUINSON" }, { - "codePostal": "72340", - "codeCommune": "72262", - "libelleAcheminement": "LOIR EN VALLEE", - "nomCommune": "LOIR EN VALLEE" + "codePostal": "03430", + "codeCommune": "03084", + "libelleAcheminement": "COSNE D ALLIER", + "nomCommune": "COSNE D ALLIER" }, { - "codePostal": "72400", - "codeCommune": "72267", - "libelleAcheminement": "ST AUBIN DES COUDRAIS", - "nomCommune": "ST AUBIN DES COUDRAIS" + "codePostal": "04150", + "codeCommune": "04159", + "libelleAcheminement": "REDORTIERS", + "nomCommune": "REDORTIERS" }, { - "codePostal": "72110", - "codeCommune": "72271", - "libelleAcheminement": "ST CELERIN", - "nomCommune": "ST CELERIN" + "codePostal": "03150", + "codeCommune": "03091", + "libelleAcheminement": "CRECHY", + "nomCommune": "CRECHY" }, { - "codePostal": "72350", - "codeCommune": "72278", - "libelleAcheminement": "ST DENIS D ORQUES", - "nomCommune": "ST DENIS D ORQUES" + "codePostal": "04230", + "codeCommune": "04164", + "libelleAcheminement": "REVEST ST MARTIN", + "nomCommune": "REVEST ST MARTIN" }, { - "codePostal": "72380", - "codeCommune": "72289", - "libelleAcheminement": "STE JAMME SUR SARTHE", - "nomCommune": "STE JAMME SUR SARTHE" + "codePostal": "03170", + "codeCommune": "03097", + "libelleAcheminement": "DENEUILLE LES MINES", + "nomCommune": "DENEUILLE LES MINES" }, { - "codePostal": "72380", - "codeCommune": "72290", - "libelleAcheminement": "ST JEAN D ASSE", - "nomCommune": "ST JEAN D ASSE" + "codePostal": "04500", + "codeCommune": "04166", + "libelleAcheminement": "RIEZ", + "nomCommune": "RIEZ" }, { - "codePostal": "72320", - "codeCommune": "72292", - "libelleAcheminement": "ST JEAN DES ECHELLES", - "nomCommune": "ST JEAN DES ECHELLES" + "codePostal": "03630", + "codeCommune": "03098", + "libelleAcheminement": "DESERTINES", + "nomCommune": "DESERTINES" }, { - "codePostal": "72600", - "codeCommune": "72295", - "libelleAcheminement": "ST LONGIS", - "nomCommune": "ST LONGIS" + "codePostal": "04000", + "codeCommune": "04167", + "libelleAcheminement": "LA ROBINE SUR GALABRE", + "nomCommune": "LA ROBINE SUR GALABRE" }, { - "codePostal": "72440", - "codeCommune": "72298", - "libelleAcheminement": "ST MARS DE LOCQUENAY", - "nomCommune": "ST MARS DE LOCQUENAY" + "codePostal": "03140", + "codeCommune": "03112", + "libelleAcheminement": "ETROUSSAT", + "nomCommune": "ETROUSSAT" }, { - "codePostal": "72470", - "codeCommune": "72300", - "libelleAcheminement": "ST MARS LA BRIERE", - "nomCommune": "ST MARS LA BRIERE" + "codePostal": "04000", + "codeCommune": "04167", + "libelleAcheminement": "LA ROBINE SUR GALABRE", + "nomCommune": "LA ROBINE SUR GALABRE" }, { - "codePostal": "72190", - "codeCommune": "72310", - "libelleAcheminement": "ST PAVACE", - "nomCommune": "ST PAVACE" + "codePostal": "03160", + "codeCommune": "03117", + "libelleAcheminement": "FRANCHESSE", + "nomCommune": "FRANCHESSE" }, { - "codePostal": "72140", - "codeCommune": "72315", - "libelleAcheminement": "ST REMY DE SILLE", - "nomCommune": "ST REMY DE SILLE" + "codePostal": "04000", + "codeCommune": "04167", + "libelleAcheminement": "LA ROBINE SUR GALABRE", + "nomCommune": "LA ROBINE SUR GALABRE" }, { - "codePostal": "72130", - "codeCommune": "72323", - "libelleAcheminement": "ST VICTEUR", - "nomCommune": "ST VICTEUR" + "codePostal": "03230", + "codeCommune": "03119", + "libelleAcheminement": "GANNAY SUR LOIRE", + "nomCommune": "GANNAY SUR LOIRE" }, { - "codePostal": "72360", - "codeCommune": "72327", - "libelleAcheminement": "SARCE", - "nomCommune": "SARCE" + "codePostal": "04410", + "codeCommune": "04184", + "libelleAcheminement": "ST JURS", + "nomCommune": "ST JURS" }, { - "codePostal": "72800", - "codeCommune": "72330", - "libelleAcheminement": "SAVIGNE SOUS LE LUDE", - "nomCommune": "SAVIGNE SOUS LE LUDE" + "codePostal": "03340", + "codeCommune": "03124", + "libelleAcheminement": "GOUISE", + "nomCommune": "GOUISE" }, { - "codePostal": "72140", - "codeCommune": "72334", - "libelleAcheminement": "SILLE LE GUILLAUME", - "nomCommune": "SILLE LE GUILLAUME" + "codePostal": "04500", + "codeCommune": "04186", + "libelleAcheminement": "ST LAURENT DU VERDON", + "nomCommune": "ST LAURENT DU VERDON" }, { - "codePostal": "72130", - "codeCommune": "72337", - "libelleAcheminement": "SOUGE LE GANELON", - "nomCommune": "SOUGE LE GANELON" + "codePostal": "03380", + "codeCommune": "03128", + "libelleAcheminement": "HURIEL", + "nomCommune": "HURIEL" }, { - "codePostal": "72380", - "codeCommune": "72338", - "libelleAcheminement": "SOUILLE", - "nomCommune": "SOUILLE" + "codePostal": "04800", + "codeCommune": "04189", + "libelleAcheminement": "ST MARTIN DE BROMES", + "nomCommune": "ST MARTIN DE BROMES" }, { - "codePostal": "72320", - "codeCommune": "72353", - "libelleAcheminement": "THELIGNY", - "nomCommune": "THELIGNY" + "codePostal": "03120", + "codeCommune": "03131", + "libelleAcheminement": "ISSERPENT", + "nomCommune": "ISSERPENT" }, { - "codePostal": "72610", - "codeCommune": "72355", - "libelleAcheminement": "THOIRE SOUS CONTENSOR", - "nomCommune": "THOIRE SOUS CONTENSOR" + "codePostal": "04300", + "codeCommune": "04190", + "libelleAcheminement": "ST MARTIN LES EAUX", + "nomCommune": "ST MARTIN LES EAUX" }, { - "codePostal": "72400", - "codeCommune": "72375", - "libelleAcheminement": "VILLAINES LA GONAIS", - "nomCommune": "VILLAINES LA GONAIS" + "codePostal": "03800", + "codeCommune": "03133", + "libelleAcheminement": "JENZAT", + "nomCommune": "JENZAT" }, { - "codePostal": "72300", - "codeCommune": "72378", - "libelleAcheminement": "VION", - "nomCommune": "VION" + "codePostal": "04290", + "codeCommune": "04200", + "libelleAcheminement": "SALIGNAC", + "nomCommune": "SALIGNAC" }, { - "codePostal": "72330", - "codeCommune": "72385", - "libelleAcheminement": "YVRE LE POLIN", - "nomCommune": "YVRE LE POLIN" + "codePostal": "03500", + "codeCommune": "03134", + "libelleAcheminement": "LAFELINE", + "nomCommune": "LAFELINE" }, { - "codePostal": "72530", - "codeCommune": "72386", - "libelleAcheminement": "YVRE L EVEQUE", - "nomCommune": "YVRE L EVEQUE" + "codePostal": "04320", + "codeCommune": "04202", + "libelleAcheminement": "SAUSSES", + "nomCommune": "SAUSSES" }, { - "codePostal": "73260", - "codeCommune": "73003", - "libelleAcheminement": "GRAND AIGUEBLANCHE", - "nomCommune": "GRAND AIGUEBLANCHE" + "codePostal": "03100", + "codeCommune": "03140", + "libelleAcheminement": "LAVAULT STE ANNE", + "nomCommune": "LAVAULT STE ANNE" }, { - "codePostal": "73340", - "codeCommune": "73005", - "libelleAcheminement": "AILLON LE VIEUX", - "nomCommune": "AILLON LE VIEUX" + "codePostal": "04330", + "codeCommune": "04204", + "libelleAcheminement": "SENEZ", + "nomCommune": "SENEZ" }, { - "codePostal": "73210", - "codeCommune": "73006", - "libelleAcheminement": "AIME LA PLAGNE", - "nomCommune": "AIME LA PLAGNE" + "codePostal": "03600", + "codeCommune": "03159", + "libelleAcheminement": "MALICORNE", + "nomCommune": "MALICORNE" }, { - "codePostal": "73410", - "codeCommune": "73010", - "libelleAcheminement": "ENTRELACS", - "nomCommune": "ENTRELACS" + "codePostal": "04200", + "codeCommune": "04207", + "libelleAcheminement": "SIGOYER", + "nomCommune": "SIGOYER" }, { - "codePostal": "73340", - "codeCommune": "73020", - "libelleAcheminement": "ARITH", - "nomCommune": "ARITH" + "codePostal": "03420", + "codeCommune": "03167", + "libelleAcheminement": "MAZIRAT", + "nomCommune": "MAZIRAT" }, { - "codePostal": "73500", - "codeCommune": "73026", - "libelleAcheminement": "AVRIEUX", - "nomCommune": "AVRIEUX" + "codePostal": "04150", + "codeCommune": "04208", + "libelleAcheminement": "SIMIANE LA ROTONDE", + "nomCommune": "SIMIANE LA ROTONDE" }, { - "codePostal": "73470", - "codeCommune": "73027", - "libelleAcheminement": "AYN", - "nomCommune": "AYN" + "codePostal": "03210", + "codeCommune": "03170", + "libelleAcheminement": "MEILLERS", + "nomCommune": "MEILLERS" }, { - "codePostal": "73170", - "codeCommune": "73042", - "libelleAcheminement": "BILLIEME", - "nomCommune": "BILLIEME" + "codePostal": "04290", + "codeCommune": "04211", + "libelleAcheminement": "SOURRIBES", + "nomCommune": "SOURRIBES" }, { - "codePostal": "73220", - "codeCommune": "73049", - "libelleAcheminement": "BONVILLARET", - "nomCommune": "BONVILLARET" + "codePostal": "03800", + "codeCommune": "03182", + "libelleAcheminement": "MONTEIGNET SUR L ANDELOT", + "nomCommune": "MONTEIGNET SUR L ANDELOT" }, { - "codePostal": "73370", - "codeCommune": "73051", - "libelleAcheminement": "LE BOURGET DU LAC", - "nomCommune": "LE BOURGET DU LAC" + "codePostal": "04380", + "codeCommune": "04217", + "libelleAcheminement": "THOARD", + "nomCommune": "THOARD" }, { - "codePostal": "73390", - "codeCommune": "73053", - "libelleAcheminement": "BOURGNEUF", - "nomCommune": "BOURGNEUF" + "codePostal": "03240", + "codeCommune": "03183", + "libelleAcheminement": "LE MONTET", + "nomCommune": "LE MONTET" }, { - "codePostal": "73700", - "codeCommune": "73054", - "libelleAcheminement": "BOURG ST MAURICE", - "nomCommune": "BOURG ST MAURICE" + "codePostal": "04200", + "codeCommune": "04231", + "libelleAcheminement": "VALERNES", + "nomCommune": "VALERNES" }, { - "codePostal": "73130", - "codeCommune": "73067", - "libelleAcheminement": "LA CHAMBRE", - "nomCommune": "LA CHAMBRE" + "codePostal": "03320", + "codeCommune": "03198", + "libelleAcheminement": "NEURE", + "nomCommune": "NEURE" }, { - "codePostal": "73390", - "codeCommune": "73072", - "libelleAcheminement": "CHAMP LAURENT", - "nomCommune": "CHAMP LAURENT" + "codePostal": "04130", + "codeCommune": "04245", + "libelleAcheminement": "VOLX", + "nomCommune": "VOLX" }, { - "codePostal": "73310", - "codeCommune": "73073", - "libelleAcheminement": "CHANAZ", - "nomCommune": "CHANAZ" + "codePostal": "03420", + "codeCommune": "03206", + "libelleAcheminement": "LA PETITE MARCHE", + "nomCommune": "LA PETITE MARCHE" }, { - "codePostal": "73800", - "codeCommune": "73084", - "libelleAcheminement": "CHIGNIN", - "nomCommune": "CHIGNIN" + "codePostal": "05120", + "codeCommune": "05006", + "libelleAcheminement": "L ARGENTIERE LA BESSEE", + "nomCommune": "L ARGENTIERE LA BESSEE" }, { - "codePostal": "73310", - "codeCommune": "73085", - "libelleAcheminement": "CHINDRIEUX", - "nomCommune": "CHINDRIEUX" + "codePostal": "03800", + "codeCommune": "03209", + "libelleAcheminement": "POEZAT", + "nomCommune": "POEZAT" }, { - "codePostal": "73800", - "codeCommune": "73089", - "libelleAcheminement": "COISE ST JEAN PIED GAUTHIER", - "nomCommune": "COISE ST JEAN PIED GAUTHIER" + "codePostal": "05140", + "codeCommune": "05008", + "libelleAcheminement": "ASPREMONT", + "nomCommune": "ASPREMONT" }, { - "codePostal": "73630", - "codeCommune": "73090", - "libelleAcheminement": "LA COMPOTE", - "nomCommune": "LA COMPOTE" + "codePostal": "03240", + "codeCommune": "03214", + "libelleAcheminement": "ROCLES", + "nomCommune": "ROCLES" }, { - "codePostal": "73110", - "codeCommune": "73095", - "libelleAcheminement": "LA CROIX DE LA ROCHETTE", - "nomCommune": "LA CROIX DE LA ROCHETTE" + "codePostal": "05140", + "codeCommune": "05010", + "libelleAcheminement": "ASPRES SUR BUECH", + "nomCommune": "ASPRES SUR BUECH" }, { - "codePostal": "73230", - "codeCommune": "73098", - "libelleAcheminement": "LES DESERTS", - "nomCommune": "LES DESERTS" + "codePostal": "03190", + "codeCommune": "03222", + "libelleAcheminement": "ST CAPRAIS", + "nomCommune": "ST CAPRAIS" }, { - "codePostal": "73610", - "codeCommune": "73104", - "libelleAcheminement": "DULLIN", - "nomCommune": "DULLIN" + "codePostal": "05000", + "codeCommune": "05018", + "libelleAcheminement": "LA BATIE VIEILLE", + "nomCommune": "LA BATIE VIEILLE" }, { - "codePostal": "73590", - "codeCommune": "73114", - "libelleAcheminement": "FLUMET", - "nomCommune": "FLUMET" + "codePostal": "03120", + "codeCommune": "03223", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "73500", - "codeCommune": "73117", - "libelleAcheminement": "FOURNEAUX", - "nomCommune": "FOURNEAUX" + "codePostal": "05190", + "codeCommune": "05022", + "libelleAcheminement": "BREZIERS", + "nomCommune": "BREZIERS" }, { - "codePostal": "73460", - "codeCommune": "73121", - "libelleAcheminement": "FRONTENEX", - "nomCommune": "FRONTENEX" + "codePostal": "03310", + "codeCommune": "03233", + "libelleAcheminement": "ST GENEST", + "nomCommune": "ST GENEST" }, { - "codePostal": "73470", - "codeCommune": "73122", - "libelleAcheminement": "GERBAIX", - "nomCommune": "GERBAIX" + "codePostal": "05100", + "codeCommune": "05023", + "libelleAcheminement": "BRIANCON", + "nomCommune": "BRIANCON" }, { - "codePostal": "73600", - "codeCommune": "73131", - "libelleAcheminement": "HAUTECOUR", - "nomCommune": "HAUTECOUR" + "codePostal": "03150", + "codeCommune": "03235", + "libelleAcheminement": "ST GERAND LE PUY", + "nomCommune": "ST GERAND LE PUY" }, { - "codePostal": "73630", - "codeCommune": "73139", - "libelleAcheminement": "JARSY", - "nomCommune": "JARSY" + "codePostal": "05100", + "codeCommune": "05027", + "libelleAcheminement": "CERVIERES", + "nomCommune": "CERVIERES" }, { - "codePostal": "73170", - "codeCommune": "73140", - "libelleAcheminement": "JONGIEUX", - "nomCommune": "JONGIEUX" + "codePostal": "03440", + "codeCommune": "03238", + "libelleAcheminement": "ST HILAIRE", + "nomCommune": "ST HILAIRE" }, { - "codePostal": "73340", - "codeCommune": "73146", - "libelleAcheminement": "LESCHERAINES", - "nomCommune": "LESCHERAINES" + "codePostal": "05500", + "codeCommune": "05039", + "libelleAcheminement": "AUBESSAGNE", + "nomCommune": "AUBESSAGNE" }, { - "codePostal": "73800", - "codeCommune": "73151", - "libelleAcheminement": "PORTE DE SAVOIE", - "nomCommune": "PORTE DE SAVOIE" + "codePostal": "03130", + "codeCommune": "03239", + "libelleAcheminement": "ST LEGER SUR VOUZANCE", + "nomCommune": "ST LEGER SUR VOUZANCE" }, { - "codePostal": "73220", - "codeCommune": "73168", - "libelleAcheminement": "MONTGILBERT", - "nomCommune": "MONTGILBERT" + "codePostal": "05200", + "codeCommune": "05044", + "libelleAcheminement": "CREVOUX", + "nomCommune": "CREVOUX" }, { - "codePostal": "73870", - "codeCommune": "73173", - "libelleAcheminement": "MONTRICHER ALBANNE", - "nomCommune": "MONTRICHER ALBANNE" + "codePostal": "03220", + "codeCommune": "03240", + "libelleAcheminement": "ST LEON", + "nomCommune": "ST LEON" }, { - "codePostal": "73300", - "codeCommune": "73177", - "libelleAcheminement": "MONTVERNIER", - "nomCommune": "MONTVERNIER" + "codePostal": "05310", + "codeCommune": "05058", + "libelleAcheminement": "FREISSINIERES", + "nomCommune": "FREISSINIERES" }, { - "codePostal": "73800", - "codeCommune": "73183", - "libelleAcheminement": "MYANS", - "nomCommune": "MYANS" + "codePostal": "42620", + "codeCommune": "03250", + "libelleAcheminement": "ST PIERRE LAVAL", + "nomCommune": "ST PIERRE LAVAL" }, { - "codePostal": "73260", - "codeCommune": "73187", - "libelleAcheminement": "LA LECHERE", - "nomCommune": "LA LECHERE" + "codePostal": "05320", + "codeCommune": "05063", + "libelleAcheminement": "LA GRAVE", + "nomCommune": "LA GRAVE" }, { - "codePostal": "73210", - "codeCommune": "73197", - "libelleAcheminement": "PEISEY NANCROIX", - "nomCommune": "PEISEY NANCROIX" + "codePostal": "03110", + "codeCommune": "03258", + "libelleAcheminement": "ST REMY EN ROLLAT", + "nomCommune": "ST REMY EN ROLLAT" }, { - "codePostal": "73200", - "codeCommune": "73202", - "libelleAcheminement": "PLANCHERINE", - "nomCommune": "PLANCHERINE" + "codePostal": "05140", + "codeCommune": "05066", + "libelleAcheminement": "LA HAUTE BEAUME", + "nomCommune": "LA HAUTE BEAUME" }, { - "codePostal": "73110", - "codeCommune": "73207", - "libelleAcheminement": "PRESLE", - "nomCommune": "PRESLE" + "codePostal": "03420", + "codeCommune": "03261", + "libelleAcheminement": "STE THERENCE", + "nomCommune": "STE THERENCE" }, { - "codePostal": "73190", - "codeCommune": "73210", - "libelleAcheminement": "PUYGROS", - "nomCommune": "PUYGROS" + "codePostal": "05600", + "codeCommune": "05082", + "libelleAcheminement": "MONT DAUPHIN", + "nomCommune": "MONT DAUPHIN" }, { - "codePostal": "73240", - "codeCommune": "73214", - "libelleAcheminement": "ROCHEFORT", - "nomCommune": "ROCHEFORT" + "codePostal": "03410", + "codeCommune": "03262", + "libelleAcheminement": "ST VICTOR", + "nomCommune": "ST VICTOR" }, { - "codePostal": "73130", - "codeCommune": "73221", - "libelleAcheminement": "ST ALBAN DES VILLARDS", - "nomCommune": "ST ALBAN DES VILLARDS" + "codePostal": "05100", + "codeCommune": "05093", + "libelleAcheminement": "NEVACHE", + "nomCommune": "NEVACHE" }, { - "codePostal": "73130", - "codeCommune": "73235", - "libelleAcheminement": "ST FRANCOIS LONGCHAMP", - "nomCommune": "ST FRANCOIS LONGCHAMP" + "codePostal": "03470", + "codeCommune": "03265", + "libelleAcheminement": "SALIGNY SUR ROUDON", + "nomCommune": "SALIGNY SUR ROUDON" }, { - "codePostal": "73600", - "codeCommune": "73253", - "libelleAcheminement": "ST MARCEL", - "nomCommune": "ST MARCEL" + "codePostal": "05300", + "codeCommune": "05103", + "libelleAcheminement": "LE POET", + "nomCommune": "LE POET" }, { - "codePostal": "73140", - "codeCommune": "73256", - "libelleAcheminement": "ST MARTIN D ARC", - "nomCommune": "ST MARTIN D ARC" + "codePostal": "03430", + "codeCommune": "03269", + "libelleAcheminement": "SAUVAGNY", + "nomCommune": "SAUVAGNY" }, { - "codePostal": "73440", - "codeCommune": "73257", - "libelleAcheminement": "LES BELLEVILLE", - "nomCommune": "LES BELLEVILLE" + "codePostal": "05500", + "codeCommune": "05104", + "libelleAcheminement": "POLIGNY", + "nomCommune": "POLIGNY" }, { - "codePostal": "73140", - "codeCommune": "73261", - "libelleAcheminement": "ST MICHEL DE MAURIENNE", - "nomCommune": "ST MICHEL DE MAURIENNE" + "codePostal": "03120", + "codeCommune": "03272", + "libelleAcheminement": "SERVILLY", + "nomCommune": "SERVILLY" }, { - "codePostal": "73590", - "codeCommune": "73262", - "libelleAcheminement": "ST NICOLAS LA CHAPELLE", - "nomCommune": "ST NICOLAS LA CHAPELLE" + "codePostal": "05200", + "codeCommune": "05111", + "libelleAcheminement": "PUY SANIERES", + "nomCommune": "PUY SANIERES" }, { - "codePostal": "73100", - "codeCommune": "73263", - "libelleAcheminement": "ST OFFENGE", - "nomCommune": "ST OFFENGE" + "codePostal": "03240", + "codeCommune": "03287", + "libelleAcheminement": "TREBAN", + "nomCommune": "TREBAN" }, { - "codePostal": "73730", - "codeCommune": "73268", - "libelleAcheminement": "ST PAUL SUR ISERE", - "nomCommune": "ST PAUL SUR ISERE" + "codePostal": "05160", + "codeCommune": "05114", + "libelleAcheminement": "REALLON", + "nomCommune": "REALLON" }, { - "codePostal": "73220", - "codeCommune": "73272", - "libelleAcheminement": "ST PIERRE DE BELLEVILLE", - "nomCommune": "ST PIERRE DE BELLEVILLE" + "codePostal": "03360", + "codeCommune": "03296", + "libelleAcheminement": "VALIGNY", + "nomCommune": "VALIGNY" }, { - "codePostal": "73800", - "codeCommune": "73276", - "libelleAcheminement": "ST PIERRE DE SOUCY", - "nomCommune": "ST PIERRE DE SOUCY" + "codePostal": "05190", + "codeCommune": "05121", + "libelleAcheminement": "ROCHEBRUNE", + "nomCommune": "ROCHEBRUNE" }, { - "codePostal": "73530", - "codeCommune": "73280", - "libelleAcheminement": "ST SORLIN D ARVES", - "nomCommune": "ST SORLIN D ARVES" + "codePostal": "03190", + "codeCommune": "03297", + "libelleAcheminement": "VALLON EN SULLY", + "nomCommune": "VALLON EN SULLY" }, { - "codePostal": "73700", - "codeCommune": "73285", - "libelleAcheminement": "SEEZ", - "nomCommune": "SEEZ" + "codePostal": "05000", + "codeCommune": "05124", + "libelleAcheminement": "LA ROCHETTE", + "nomCommune": "LA ROCHETTE" }, { - "codePostal": "73480", - "codeCommune": "73290", - "libelleAcheminement": "VAL CENIS", - "nomCommune": "VAL CENIS" + "codePostal": "03220", + "codeCommune": "03299", + "libelleAcheminement": "VARENNES SUR TECHE", + "nomCommune": "VARENNES SUR TECHE" }, { - "codePostal": "73320", - "codeCommune": "73296", - "libelleAcheminement": "TIGNES", - "nomCommune": "TIGNES" + "codePostal": "05190", + "codeCommune": "05127", + "libelleAcheminement": "ROUSSET", + "nomCommune": "ROUSSET" }, { - "codePostal": "73100", - "codeCommune": "73301", - "libelleAcheminement": "TREVIGNIN", - "nomCommune": "TREVIGNIN" + "codePostal": "03190", + "codeCommune": "03301", + "libelleAcheminement": "VAUX", + "nomCommune": "VAUX" }, { - "codePostal": "73640", - "codeCommune": "73323", - "libelleAcheminement": "VILLAROGER", - "nomCommune": "VILLAROGER" + "codePostal": "05400", + "codeCommune": "05131", + "libelleAcheminement": "ST AUBAN D OZE", + "nomCommune": "ST AUBAN D OZE" }, { - "codePostal": "73420", - "codeCommune": "73329", - "libelleAcheminement": "VOGLANS", - "nomCommune": "VOGLANS" + "codePostal": "03190", + "codeCommune": "03303", + "libelleAcheminement": "VENAS", + "nomCommune": "VENAS" }, { - "codePostal": "73170", - "codeCommune": "73330", - "libelleAcheminement": "YENNE", - "nomCommune": "YENNE" + "codePostal": "05500", + "codeCommune": "05132", + "libelleAcheminement": "ST BONNET EN CHAMPSAUR", + "nomCommune": "ST BONNET EN CHAMPSAUR" }, { - "codePostal": "74350", - "codeCommune": "74009", - "libelleAcheminement": "ANDILLY", - "nomCommune": "ANDILLY" + "codePostal": "04110", + "codeCommune": "04012", + "libelleAcheminement": "AUBENAS LES ALPES", + "nomCommune": "AUBENAS LES ALPES" }, { - "codePostal": "74600", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "05600", + "codeCommune": "05136", + "libelleAcheminement": "ST CREPIN", + "nomCommune": "ST CREPIN" }, { - "codePostal": "74960", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "04140", + "codeCommune": "04020", + "libelleAcheminement": "BARLES", + "nomCommune": "BARLES" }, { - "codePostal": "74200", - "codeCommune": "74020", - "libelleAcheminement": "ARMOY", - "nomCommune": "ARMOY" + "codePostal": "05250", + "codeCommune": "05139", + "libelleAcheminement": "LE DEVOLUY", + "nomCommune": "LE DEVOLUY" }, { - "codePostal": "74430", - "codeCommune": "74030", - "libelleAcheminement": "LA BAUME", - "nomCommune": "LA BAUME" + "codePostal": "04380", + "codeCommune": "04021", + "libelleAcheminement": "BARRAS", + "nomCommune": "BARRAS" }, { - "codePostal": "74470", - "codeCommune": "74032", - "libelleAcheminement": "BELLEVAUX", - "nomCommune": "BELLEVAUX" + "codePostal": "05500", + "codeCommune": "05148", + "libelleAcheminement": "ST LAURENT DU CROS", + "nomCommune": "ST LAURENT DU CROS" }, { - "codePostal": "74500", - "codeCommune": "74033", - "libelleAcheminement": "BERNEX", - "nomCommune": "BERNEX" + "codePostal": "04250", + "codeCommune": "04023", + "libelleAcheminement": "BAYONS", + "nomCommune": "BAYONS" }, { - "codePostal": "74550", - "codeCommune": "74053", - "libelleAcheminement": "CERVENS", - "nomCommune": "CERVENS" + "codePostal": "05800", + "codeCommune": "05152", + "libelleAcheminement": "ST MAURICE EN VALGODEMARD", + "nomCommune": "ST MAURICE EN VALGODEMARD" }, { - "codePostal": "74400", - "codeCommune": "74056", - "libelleAcheminement": "CHAMONIX MONT BLANC", - "nomCommune": "CHAMONIX MONT BLANC" + "codePostal": "04420", + "codeCommune": "04024", + "libelleAcheminement": "BEAUJEU", + "nomCommune": "BEAUJEU" }, { - "codePostal": "74500", - "codeCommune": "74057", - "libelleAcheminement": "CHAMPANGES", - "nomCommune": "CHAMPANGES" + "codePostal": "05350", + "codeCommune": "05157", + "libelleAcheminement": "ST VERAN", + "nomCommune": "ST VERAN" }, { - "codePostal": "74800", - "codeCommune": "74059", - "libelleAcheminement": "LA CHAPELLE RAMBAUD", - "nomCommune": "LA CHAPELLE RAMBAUD" + "codePostal": "04240", + "codeCommune": "04032", + "libelleAcheminement": "BRAUX", + "nomCommune": "BRAUX" }, { - "codePostal": "74300", - "codeCommune": "74064", - "libelleAcheminement": "CHATILLON SUR CLUSES", - "nomCommune": "CHATILLON SUR CLUSES" + "codePostal": "05160", + "codeCommune": "05164", + "libelleAcheminement": "SAVINES LE LAC", + "nomCommune": "SAVINES LE LAC" }, { - "codePostal": "74270", - "codeCommune": "74065", - "libelleAcheminement": "CHAUMONT", - "nomCommune": "CHAUMONT" + "codePostal": "04340", + "codeCommune": "04033", + "libelleAcheminement": "UBAYE SERRE PONCON", + "nomCommune": "UBAYE SERRE PONCON" }, { - "codePostal": "74270", - "codeCommune": "74066", - "libelleAcheminement": "CHAVANNAZ", - "nomCommune": "CHAVANNAZ" + "codePostal": "05700", + "codeCommune": "05172", + "libelleAcheminement": "TRESCLEOUX", + "nomCommune": "TRESCLEOUX" }, { - "codePostal": "74270", - "codeCommune": "74071", - "libelleAcheminement": "CHESSENAZ", - "nomCommune": "CHESSENAZ" + "codePostal": "04210", + "codeCommune": "04035", + "libelleAcheminement": "BRUNET", + "nomCommune": "BRUNET" }, { - "codePostal": "74270", - "codeCommune": "74075", - "libelleAcheminement": "CHILLY", - "nomCommune": "CHILLY" + "codePostal": "05300", + "codeCommune": "05173", + "libelleAcheminement": "UPAIX", + "nomCommune": "UPAIX" }, { - "codePostal": "74270", - "codeCommune": "74078", - "libelleAcheminement": "CLERMONT", - "nomCommune": "CLERMONT" + "codePostal": "04420", + "codeCommune": "04036", + "libelleAcheminement": "LE BRUSQUET", + "nomCommune": "LE BRUSQUET" }, { - "codePostal": "74540", - "codeCommune": "74097", - "libelleAcheminement": "CUSY", - "nomCommune": "CUSY" + "codePostal": "05300", + "codeCommune": "05178", + "libelleAcheminement": "VENTAVON", + "nomCommune": "VENTAVON" }, { - "codePostal": "74350", - "codeCommune": "74098", - "libelleAcheminement": "CUVAT", - "nomCommune": "CUVAT" + "codePostal": "04120", + "codeCommune": "04039", + "libelleAcheminement": "CASTELLANE", + "nomCommune": "CASTELLANE" }, { - "codePostal": "74210", - "codeCommune": "74104", - "libelleAcheminement": "DOUSSARD", - "nomCommune": "DOUSSARD" + "codePostal": "06790", + "codeCommune": "06006", + "libelleAcheminement": "ASPREMONT", + "nomCommune": "ASPREMONT" }, { - "codePostal": "74140", - "codeCommune": "74105", - "libelleAcheminement": "DOUVAINE", - "nomCommune": "DOUVAINE" + "codePostal": "04380", + "codeCommune": "04040", + "libelleAcheminement": "LE CASTELLARD MELAN", + "nomCommune": "LE CASTELLARD MELAN" }, { - "codePostal": "74110", - "codeCommune": "74114", - "libelleAcheminement": "ESSERT ROMAND", - "nomCommune": "ESSERT ROMAND" + "codePostal": "06260", + "codeCommune": "06008", + "libelleAcheminement": "AUVARE", + "nomCommune": "AUVARE" }, { - "codePostal": "74150", - "codeCommune": "74117", - "libelleAcheminement": "ETERCY", - "nomCommune": "ETERCY" + "codePostal": "04700", + "codeCommune": "04041", + "libelleAcheminement": "LE CASTELLET", + "nomCommune": "LE CASTELLET" }, { - "codePostal": "74140", - "codeCommune": "74121", - "libelleAcheminement": "EXCENEVEX", - "nomCommune": "EXCENEVEX" + "codePostal": "06240", + "codeCommune": "06012", + "libelleAcheminement": "BEAUSOLEIL", + "nomCommune": "BEAUSOLEIL" }, { - "codePostal": "74210", - "codeCommune": "74123", - "libelleAcheminement": "FAVERGES SEYTHENEX", - "nomCommune": "FAVERGES SEYTHENEX" + "codePostal": "04330", + "codeCommune": "04055", + "libelleAcheminement": "CHAUDON NORANTE", + "nomCommune": "CHAUDON NORANTE" }, { - "codePostal": "74250", - "codeCommune": "74128", - "libelleAcheminement": "FILLINGES", - "nomCommune": "FILLINGES" + "codePostal": "06470", + "codeCommune": "06016", + "libelleAcheminement": "BEUIL", + "nomCommune": "BEUIL" }, { - "codePostal": "74200", - "codeCommune": "74129", - "libelleAcheminement": "LA FORCLAZ", - "nomCommune": "LA FORCLAZ" + "codePostal": "04120", + "codeCommune": "04069", + "libelleAcheminement": "DEMANDOLX", + "nomCommune": "DEMANDOLX" }, { - "codePostal": "74420", - "codeCommune": "74140", - "libelleAcheminement": "HABERE POCHE", - "nomCommune": "HABERE POCHE" + "codePostal": "06410", + "codeCommune": "06018", + "libelleAcheminement": "BIOT", + "nomCommune": "BIOT" }, { - "codePostal": "74150", - "codeCommune": "74141", - "libelleAcheminement": "HAUTEVILLE SUR FIER", - "nomCommune": "HAUTEVILLE SUR FIER" + "codePostal": "04400", + "codeCommune": "04073", + "libelleAcheminement": "ENCHASTRAYES", + "nomCommune": "ENCHASTRAYES" }, { - "codePostal": "74310", - "codeCommune": "74143", - "libelleAcheminement": "LES HOUCHES", - "nomCommune": "LES HOUCHES" + "codePostal": "06830", + "codeCommune": "06021", + "libelleAcheminement": "BONSON", + "nomCommune": "BONSON" }, { - "codePostal": "74150", - "codeCommune": "74151", - "libelleAcheminement": "LORNAY", - "nomCommune": "LORNAY" + "codePostal": "04200", + "codeCommune": "04075", + "libelleAcheminement": "ENTREPIERRES", + "nomCommune": "ENTREPIERRES" }, { - "codePostal": "74330", - "codeCommune": "74152", - "libelleAcheminement": "LOVAGNY", - "nomCommune": "LOVAGNY" + "codePostal": "06510", + "codeCommune": "06022", + "libelleAcheminement": "BOUYON", + "nomCommune": "BOUYON" }, { - "codePostal": "74300", - "codeCommune": "74159", - "libelleAcheminement": "MAGLAND", - "nomCommune": "MAGLAND" + "codePostal": "04800", + "codeCommune": "04081", + "libelleAcheminement": "ESPARRON DE VERDON", + "nomCommune": "ESPARRON DE VERDON" }, { - "codePostal": "74150", - "codeCommune": "74161", - "libelleAcheminement": "MARCELLAZ ALBANAIS", - "nomCommune": "MARCELLAZ ALBANAIS" + "codePostal": "06850", + "codeCommune": "06024", + "libelleAcheminement": "BRIANCONNET", + "nomCommune": "BRIANCONNET" }, { - "codePostal": "74200", - "codeCommune": "74163", - "libelleAcheminement": "MARGENCEL", - "nomCommune": "MARGENCEL" + "codePostal": "04230", + "codeCommune": "04087", + "libelleAcheminement": "FONTIENNE", + "nomCommune": "FONTIENNE" }, { - "codePostal": "74270", - "codeCommune": "74168", - "libelleAcheminement": "MARLIOZ", - "nomCommune": "MARLIOZ" + "codePostal": "06320", + "codeCommune": "06032", + "libelleAcheminement": "CAP D AIL", + "nomCommune": "CAP D AIL" }, { - "codePostal": "74460", - "codeCommune": "74169", - "libelleAcheminement": "MARNAZ", - "nomCommune": "MARNAZ" + "codePostal": "04800", + "codeCommune": "04094", + "libelleAcheminement": "GREOUX LES BAINS", + "nomCommune": "GREOUX LES BAINS" }, { - "codePostal": "74490", - "codeCommune": "74174", - "libelleAcheminement": "MEGEVETTE", - "nomCommune": "MEGEVETTE" + "codePostal": "06740", + "codeCommune": "06038", + "libelleAcheminement": "CHATEAUNEUF GRASSE", + "nomCommune": "CHATEAUNEUF GRASSE" }, { - "codePostal": "74330", - "codeCommune": "74179", - "libelleAcheminement": "MESIGNY", - "nomCommune": "MESIGNY" + "codePostal": "04230", + "codeCommune": "04101", + "libelleAcheminement": "LARDIERS", + "nomCommune": "LARDIERS" }, { - "codePostal": "74140", - "codeCommune": "74180", - "libelleAcheminement": "MESSERY", - "nomCommune": "MESSERY" + "codePostal": "06910", + "codeCommune": "06045", + "libelleAcheminement": "COLLONGUES", + "nomCommune": "COLLONGUES" }, { - "codePostal": "74130", - "codeCommune": "74189", - "libelleAcheminement": "MONT SAXONNEX", - "nomCommune": "MONT SAXONNEX" + "codePostal": "04420", + "codeCommune": "04113", + "libelleAcheminement": "MARCOUX", + "nomCommune": "MARCOUX" }, { - "codePostal": "74370", - "codeCommune": "74198", - "libelleAcheminement": "NAVES PARMELAN", - "nomCommune": "NAVES PARMELAN" + "codePostal": "06510", + "codeCommune": "06047", + "libelleAcheminement": "CONSEGUDES", + "nomCommune": "CONSEGUDES" }, { - "codePostal": "74140", - "codeCommune": "74199", - "libelleAcheminement": "NERNIER", - "nomCommune": "NERNIER" + "codePostal": "04190", + "codeCommune": "04116", + "libelleAcheminement": "LES MEES", + "nomCommune": "LES MEES" }, { - "codePostal": "74550", - "codeCommune": "74206", - "libelleAcheminement": "ORCIER", - "nomCommune": "ORCIER" + "codePostal": "06390", + "codeCommune": "06048", + "libelleAcheminement": "CONTES", + "nomCommune": "CONTES" }, { - "codePostal": "74190", - "codeCommune": "74208", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "04530", + "codeCommune": "04120", + "libelleAcheminement": "VAL D ORONAYE", + "nomCommune": "VAL D ORONAYE" }, { - "codePostal": "74190", - "codeCommune": "74208", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "06470", + "codeCommune": "06056", + "libelleAcheminement": "ENTRAUNES", + "nomCommune": "ENTRAUNES" }, { - "codePostal": "74190", - "codeCommune": "74208", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "04140", + "codeCommune": "04126", + "libelleAcheminement": "MONTCLAR", + "nomCommune": "MONTCLAR" }, { - "codePostal": "74950", - "codeCommune": "74221", - "libelleAcheminement": "LE REPOSOIR", - "nomCommune": "LE REPOSOIR" + "codePostal": "06510", + "codeCommune": "06061", + "libelleAcheminement": "LES FERRES", + "nomCommune": "LES FERRES" }, { - "codePostal": "74420", - "codeCommune": "74226", - "libelleAcheminement": "ST ANDRE DE BOEGE", - "nomCommune": "ST ANDRE DE BOEGE" + "codePostal": "04250", + "codeCommune": "04137", + "libelleAcheminement": "NIBLES", + "nomCommune": "NIBLES" }, { - "codePostal": "74410", - "codeCommune": "74232", - "libelleAcheminement": "ST EUSTACHE", - "nomCommune": "ST EUSTACHE" + "codePostal": "06540", + "codeCommune": "06062", + "libelleAcheminement": "FONTAN", + "nomCommune": "FONTAN" }, { - "codePostal": "74910", - "codeCommune": "74235", - "libelleAcheminement": "ST GERMAIN SUR RHONE", - "nomCommune": "ST GERMAIN SUR RHONE" + "codePostal": "04200", + "codeCommune": "04139", + "libelleAcheminement": "NOYERS SUR JABRON", + "nomCommune": "NOYERS SUR JABRON" }, { - "codePostal": "74160", - "codeCommune": "74243", - "libelleAcheminement": "ST JULIEN EN GENEVOIS", - "nomCommune": "ST JULIEN EN GENEVOIS" + "codePostal": "06620", + "codeCommune": "06068", + "libelleAcheminement": "GOURDON", + "nomCommune": "GOURDON" }, { - "codePostal": "74500", - "codeCommune": "74249", - "libelleAcheminement": "ST PAUL EN CHABLAIS", - "nomCommune": "ST PAUL EN CHABLAIS" + "codePostal": "04120", + "codeCommune": "04144", + "libelleAcheminement": "LA PALUD SUR VERDON", + "nomCommune": "LA PALUD SUR VERDON" }, { - "codePostal": "74800", - "codeCommune": "74250", - "libelleAcheminement": "ST PIERRE EN FAUCIGNY", - "nomCommune": "ST PIERRE EN FAUCIGNY" + "codePostal": "06130", + "codeCommune": "06069", + "libelleAcheminement": "GRASSE", + "nomCommune": "GRASSE" }, { - "codePostal": "74700", - "codeCommune": "74256", - "libelleAcheminement": "SALLANCHES", - "nomCommune": "SALLANCHES" + "codePostal": "04120", + "codeCommune": "04144", + "libelleAcheminement": "LA PALUD SUR VERDON", + "nomCommune": "LA PALUD SUR VERDON" }, { - "codePostal": "74140", - "codeCommune": "74263", - "libelleAcheminement": "SCIEZ", - "nomCommune": "SCIEZ" + "codePostal": "06420", + "codeCommune": "06073", + "libelleAcheminement": "ISOLA", + "nomCommune": "ISOLA" }, { - "codePostal": "74320", - "codeCommune": "74267", - "libelleAcheminement": "SEVRIER", - "nomCommune": "SEVRIER" + "codePostal": "04120", + "codeCommune": "04148", + "libelleAcheminement": "PEYROULES", + "nomCommune": "PEYROULES" }, { - "codePostal": "74430", - "codeCommune": "74271", - "libelleAcheminement": "SEYTROUX", - "nomCommune": "SEYTROUX" + "codePostal": "06670", + "codeCommune": "06075", + "libelleAcheminement": "LEVENS", + "nomCommune": "LEVENS" }, { - "codePostal": "74570", - "codeCommune": "74282", - "libelleAcheminement": "FILLIERE", - "nomCommune": "FILLIERE" + "codePostal": "04420", + "codeCommune": "04155", + "libelleAcheminement": "PRADS HAUTE BLEONE", + "nomCommune": "PRADS HAUTE BLEONE" }, { - "codePostal": "74470", - "codeCommune": "74287", - "libelleAcheminement": "VAILLY", - "nomCommune": "VAILLY" + "codePostal": "06440", + "codeCommune": "06077", + "libelleAcheminement": "LUCERAM", + "nomCommune": "LUCERAM" }, { - "codePostal": "74520", - "codeCommune": "74288", - "libelleAcheminement": "VALLEIRY", - "nomCommune": "VALLEIRY" + "codePostal": "06260", + "codeCommune": "04170", + "libelleAcheminement": "LA ROCHETTE", + "nomCommune": "LA ROCHETTE" }, { - "codePostal": "74150", - "codeCommune": "74289", - "libelleAcheminement": "VALLIERES SUR FIER", - "nomCommune": "VALLIERES SUR FIER" + "codePostal": "06710", + "codeCommune": "06078", + "libelleAcheminement": "MALAUSSENE", + "nomCommune": "MALAUSSENE" }, { - "codePostal": "74660", - "codeCommune": "74290", - "libelleAcheminement": "VALLORCINE", - "nomCommune": "VALLORCINE" + "codePostal": "04120", + "codeCommune": "04171", + "libelleAcheminement": "ROUGON", + "nomCommune": "ROUGON" }, { - "codePostal": "74130", - "codeCommune": "74312", - "libelleAcheminement": "VOUGY", - "nomCommune": "VOUGY" + "codePostal": "06650", + "codeCommune": "06089", + "libelleAcheminement": "OPIO", + "nomCommune": "OPIO" }, { - "codePostal": "74350", - "codeCommune": "74313", - "libelleAcheminement": "VOVRAY EN BORNES", - "nomCommune": "VOVRAY EN BORNES" + "codePostal": "04500", + "codeCommune": "04172", + "libelleAcheminement": "ROUMOULES", + "nomCommune": "ROUMOULES" }, { - "codePostal": "74520", - "codeCommune": "74314", - "libelleAcheminement": "VULBENS", - "nomCommune": "VULBENS" + "codePostal": "06440", + "codeCommune": "06091", + "libelleAcheminement": "PEILLE", + "nomCommune": "PEILLE" }, { - "codePostal": "75006", - "codeCommune": "75106", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 06" + "codePostal": "04380", + "codeCommune": "04177", + "libelleAcheminement": "HAUTES DUYES", + "nomCommune": "HAUTES DUYES" }, { - "codePostal": "75012", - "codeCommune": "75112", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 12" + "codePostal": "06470", + "codeCommune": "06094", + "libelleAcheminement": "PEONE", + "nomCommune": "PEONE" }, { - "codePostal": "75013", - "codeCommune": "75113", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 13" + "codePostal": "04170", + "codeCommune": "04183", + "libelleAcheminement": "ST JULIEN DU VERDON", + "nomCommune": "ST JULIEN DU VERDON" }, { - "codePostal": "75018", - "codeCommune": "75118", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 18" + "codePostal": "06830", + "codeCommune": "06100", + "libelleAcheminement": "REVEST LES ROCHES", + "nomCommune": "REVEST LES ROCHES" }, { - "codePostal": "76550", - "codeCommune": "76004", - "libelleAcheminement": "AMBRUMESNIL", - "nomCommune": "AMBRUMESNIL" + "codePostal": "04300", + "codeCommune": "04188", + "libelleAcheminement": "ST MAIME", + "nomCommune": "ST MAIME" }, { - "codePostal": "76710", - "codeCommune": "76007", - "libelleAcheminement": "ANCEAUMEVILLE", - "nomCommune": "ANCEAUMEVILLE" + "codePostal": "06910", + "codeCommune": "06106", + "libelleAcheminement": "ROQUESTERON", + "nomCommune": "ROQUESTERON" }, { - "codePostal": "76370", - "codeCommune": "76008", - "libelleAcheminement": "ANCOURT", - "nomCommune": "ANCOURT" + "codePostal": "04870", + "codeCommune": "04192", + "libelleAcheminement": "ST MICHEL L OBSERVATOIRE", + "nomCommune": "ST MICHEL L OBSERVATOIRE" }, { - "codePostal": "76740", - "codeCommune": "76016", - "libelleAcheminement": "ANGLESQUEVILLE LA BRAS LONG", - "nomCommune": "ANGLESQUEVILLE LA BRAS LONG" + "codePostal": "06670", + "codeCommune": "06109", + "libelleAcheminement": "LA ROQUETTE SUR VAR", + "nomCommune": "LA ROQUETTE SUR VAR" }, { - "codePostal": "76490", - "codeCommune": "76022", - "libelleAcheminement": "ANQUETIERVILLE", - "nomCommune": "ANQUETIERVILLE" + "codePostal": "04140", + "codeCommune": "04203", + "libelleAcheminement": "SELONNET", + "nomCommune": "SELONNET" }, { - "codePostal": "76550", - "codeCommune": "76030", - "libelleAcheminement": "AUBERMESNIL BEAUMAIS", - "nomCommune": "AUBERMESNIL BEAUMAIS" + "codePostal": "06260", + "codeCommune": "06115", + "libelleAcheminement": "ST ANTONIN", + "nomCommune": "ST ANTONIN" }, { - "codePostal": "76720", - "codeCommune": "76034", - "libelleAcheminement": "VAL DE SCIE", - "nomCommune": "VAL DE SCIE" + "codePostal": "04200", + "codeCommune": "04216", + "libelleAcheminement": "THEZE", + "nomCommune": "THEZE" }, { - "codePostal": "76730", - "codeCommune": "76036", - "libelleAcheminement": "AUPPEGARD", - "nomCommune": "AUPPEGARD" + "codePostal": "06670", + "codeCommune": "06117", + "libelleAcheminement": "ST BLAISE", + "nomCommune": "ST BLAISE" }, { - "codePostal": "76690", - "codeCommune": "76038", - "libelleAcheminement": "AUTHIEUX RATIEVILLE", - "nomCommune": "AUTHIEUX RATIEVILLE" + "codePostal": "04400", + "codeCommune": "04226", + "libelleAcheminement": "UVERNET FOURS", + "nomCommune": "UVERNET FOURS" }, { - "codePostal": "76116", - "codeCommune": "76046", - "libelleAcheminement": "AUZOUVILLE SUR RY", - "nomCommune": "AUZOUVILLE SUR RY" + "codePostal": "06230", + "codeCommune": "06121", + "libelleAcheminement": "ST JEAN CAP FERRAT", + "nomCommune": "ST JEAN CAP FERRAT" }, { - "codePostal": "76660", - "codeCommune": "76053", - "libelleAcheminement": "BAILLOLET", - "nomCommune": "BAILLOLET" + "codePostal": "04400", + "codeCommune": "04226", + "libelleAcheminement": "UVERNET FOURS", + "nomCommune": "UVERNET FOURS" }, { - "codePostal": "76630", - "codeCommune": "76054", - "libelleAcheminement": "BAILLY EN RIVIERE", - "nomCommune": "BAILLY EN RIVIERE" + "codePostal": "06570", + "codeCommune": "06128", + "libelleAcheminement": "ST PAUL DE VENCE", + "nomCommune": "ST PAUL DE VENCE" }, { - "codePostal": "76480", - "codeCommune": "76056", - "libelleAcheminement": "BARDOUVILLE", - "nomCommune": "BARDOUVILLE" + "codePostal": "04110", + "codeCommune": "04227", + "libelleAcheminement": "VACHERES", + "nomCommune": "VACHERES" }, { - "codePostal": "76340", - "codeCommune": "76059", - "libelleAcheminement": "BAZINVAL", - "nomCommune": "BAZINVAL" + "codePostal": "06380", + "codeCommune": "06136", + "libelleAcheminement": "SOSPEL", + "nomCommune": "SOSPEL" }, { - "codePostal": "76630", - "codeCommune": "76071", - "libelleAcheminement": "BELLENGREVILLE", - "nomCommune": "BELLENGREVILLE" + "codePostal": "04210", + "codeCommune": "04230", + "libelleAcheminement": "VALENSOLE", + "nomCommune": "VALENSOLE" }, { - "codePostal": "76790", - "codeCommune": "76079", - "libelleAcheminement": "BENOUVILLE", - "nomCommune": "BENOUVILLE" + "codePostal": "06530", + "codeCommune": "06137", + "libelleAcheminement": "SPERACEDES", + "nomCommune": "SPERACEDES" }, { - "codePostal": "76210", - "codeCommune": "76082", - "libelleAcheminement": "BERNIERES", - "nomCommune": "BERNIERES" + "codePostal": "04140", + "codeCommune": "04235", + "libelleAcheminement": "VERDACHES", + "nomCommune": "VERDACHES" }, { - "codePostal": "76450", - "codeCommune": "76084", - "libelleAcheminement": "BERTREVILLE", - "nomCommune": "BERTREVILLE" + "codePostal": "06590", + "codeCommune": "06138", + "libelleAcheminement": "THEOULE SUR MER", + "nomCommune": "THEOULE SUR MER" }, { - "codePostal": "76560", - "codeCommune": "76087", - "libelleAcheminement": "BERVILLE EN CAUX", - "nomCommune": "BERVILLE EN CAUX" + "codePostal": "04170", + "codeCommune": "04236", + "libelleAcheminement": "VERGONS", + "nomCommune": "VERGONS" }, { - "codePostal": "76190", - "codeCommune": "76099", - "libelleAcheminement": "BLACQUEVILLE", - "nomCommune": "BLACQUEVILLE" + "codePostal": "06710", + "codeCommune": "06139", + "libelleAcheminement": "THIERY", + "nomCommune": "THIERY" }, { - "codePostal": "76230", - "codeCommune": "76108", - "libelleAcheminement": "BOIS GUILLAUME", - "nomCommune": "BOIS GUILLAUME" + "codePostal": "04370", + "codeCommune": "04240", + "libelleAcheminement": "VILLARS COLMARS", + "nomCommune": "VILLARS COLMARS" }, { - "codePostal": "76590", - "codeCommune": "76112", - "libelleAcheminement": "LE BOIS ROBERT", - "nomCommune": "LE BOIS ROBERT" + "codePostal": "06450", + "codeCommune": "06151", + "libelleAcheminement": "UTELLE", + "nomCommune": "UTELLE" }, { - "codePostal": "76210", - "codeCommune": "76114", - "libelleAcheminement": "BOLBEC", - "nomCommune": "BOLBEC" + "codePostal": "04180", + "codeCommune": "04242", + "libelleAcheminement": "VILLENEUVE", + "nomCommune": "VILLENEUVE" }, { - "codePostal": "76210", - "codeCommune": "76115", - "libelleAcheminement": "BOLLEVILLE", - "nomCommune": "BOLLEVILLE" + "codePostal": "06560", + "codeCommune": "06152", + "libelleAcheminement": "VALBONNE", + "nomCommune": "VALBONNE" }, { - "codePostal": "76790", - "codeCommune": "76117", - "libelleAcheminement": "BORDEAUX ST CLAIR", - "nomCommune": "BORDEAUX ST CLAIR" + "codePostal": "04290", + "codeCommune": "04244", + "libelleAcheminement": "VOLONNE", + "nomCommune": "VOLONNE" }, { - "codePostal": "76750", - "codeCommune": "76120", - "libelleAcheminement": "BOSC BORDEL", - "nomCommune": "BOSC BORDEL" + "codePostal": "06750", + "codeCommune": "06154", + "libelleAcheminement": "VALDEROURE", + "nomCommune": "VALDEROURE" }, { - "codePostal": "76750", - "codeCommune": "76121", - "libelleAcheminement": "BOSC EDELINE", - "nomCommune": "BOSC EDELINE" + "codePostal": "05460", + "codeCommune": "05001", + "libelleAcheminement": "ABRIES RISTOLAS", + "nomCommune": "ABRIES RISTOLAS" }, { - "codePostal": "76220", - "codeCommune": "76124", - "libelleAcheminement": "BOSC HYONS", - "nomCommune": "BOSC HYONS" + "codePostal": "06450", + "codeCommune": "06156", + "libelleAcheminement": "VENANSON", + "nomCommune": "VENANSON" }, { - "codePostal": "76740", - "codeCommune": "76133", - "libelleAcheminement": "LE BOURG DUN", - "nomCommune": "LE BOURG DUN" + "codePostal": "05200", + "codeCommune": "05012", + "libelleAcheminement": "BARATIER", + "nomCommune": "BARATIER" }, { - "codePostal": "76360", - "codeCommune": "76135", - "libelleAcheminement": "BOUVILLE", - "nomCommune": "BOUVILLE" + "codePostal": "06140", + "codeCommune": "06157", + "libelleAcheminement": "VENCE", + "nomCommune": "VENCE" }, { - "codePostal": "76730", - "codeCommune": "76136", - "libelleAcheminement": "BRACHY", - "nomCommune": "BRACHY" + "codePostal": "05110", + "codeCommune": "05013", + "libelleAcheminement": "BARCILLONNETTE", + "nomCommune": "BARCILLONNETTE" }, { - "codePostal": "76850", - "codeCommune": "76138", - "libelleAcheminement": "BRACQUETUIT", - "nomCommune": "BRACQUETUIT" + "codePostal": "06710", + "codeCommune": "06158", + "libelleAcheminement": "VILLARS SUR VAR", + "nomCommune": "VILLARS SUR VAR" }, { - "codePostal": "76740", - "codeCommune": "76140", - "libelleAcheminement": "BRAMETOT", - "nomCommune": "BRAMETOT" + "codePostal": "05300", + "codeCommune": "05014", + "libelleAcheminement": "BARRET SUR MEOUGE", + "nomCommune": "BARRET SUR MEOUGE" }, { - "codePostal": "76220", - "codeCommune": "76142", - "libelleAcheminement": "BREMONTIER MERVAL", - "nomCommune": "BREMONTIER MERVAL" + "codePostal": "06230", + "codeCommune": "06159", + "libelleAcheminement": "VILLEFRANCHE SUR MER", + "nomCommune": "VILLEFRANCHE SUR MER" }, { - "codePostal": "76450", - "codeCommune": "76156", - "libelleAcheminement": "CANOUVILLE", - "nomCommune": "CANOUVILLE" + "codePostal": "05700", + "codeCommune": "05021", + "libelleAcheminement": "LE BERSAC", + "nomCommune": "LE BERSAC" }, { - "codePostal": "76560", - "codeCommune": "76161", - "libelleAcheminement": "CARVILLE POT DE FER", - "nomCommune": "CARVILLE POT DE FER" + "codePostal": "06430", + "codeCommune": "06162", + "libelleAcheminement": "LA BRIGUE", + "nomCommune": "LA BRIGUE" }, { - "codePostal": "76590", - "codeCommune": "76162", - "libelleAcheminement": "LE CATELIER", - "nomCommune": "LE CATELIER" + "codePostal": "05150", + "codeCommune": "05024", + "libelleAcheminement": "VALDOULE", + "nomCommune": "VALDOULE" }, { - "codePostal": "76930", - "codeCommune": "76167", - "libelleAcheminement": "CAUVILLE SUR MER", - "nomCommune": "CAUVILLE SUR MER" + "codePostal": "07210", + "codeCommune": "07008", + "libelleAcheminement": "ALISSAS", + "nomCommune": "ALISSAS" }, { - "codePostal": "76780", - "codeCommune": "76171", - "libelleAcheminement": "LA CHAPELLE ST OUEN", - "nomCommune": "LA CHAPELLE ST OUEN" + "codePostal": "05150", + "codeCommune": "05024", + "libelleAcheminement": "VALDOULE", + "nomCommune": "VALDOULE" }, { - "codePostal": "76410", - "codeCommune": "76178", - "libelleAcheminement": "CLEON", - "nomCommune": "CLEON" + "codePostal": "07370", + "codeCommune": "07015", + "libelleAcheminement": "ARRAS SUR RHONE", + "nomCommune": "ARRAS SUR RHONE" }, { - "codePostal": "76440", - "codeCommune": "76185", - "libelleAcheminement": "COMPAINVILLE", - "nomCommune": "COMPAINVILLE" + "codePostal": "05000", + "codeCommune": "05037", + "libelleAcheminement": "CHATEAUVIEUX", + "nomCommune": "CHATEAUVIEUX" }, { - "codePostal": "76400", - "codeCommune": "76187", - "libelleAcheminement": "CONTREMOULINS", - "nomCommune": "CONTREMOULINS" + "codePostal": "07440", + "codeCommune": "07035", + "libelleAcheminement": "BOFFRES", + "nomCommune": "BOFFRES" }, { - "codePostal": "76450", - "codeCommune": "76189", - "libelleAcheminement": "CRASVILLE LA MALLET", - "nomCommune": "CRASVILLE LA MALLET" + "codePostal": "05200", + "codeCommune": "05045", + "libelleAcheminement": "CROTS", + "nomCommune": "CROTS" }, { - "codePostal": "76850", - "codeCommune": "76193", - "libelleAcheminement": "LA CRIQUE", - "nomCommune": "LA CRIQUE" + "codePostal": "07340", + "codeCommune": "07051", + "libelleAcheminement": "CHAMPAGNE", + "nomCommune": "CHAMPAGNE" }, { - "codePostal": "76280", - "codeCommune": "76196", - "libelleAcheminement": "CRIQUETOT L ESNEVAL", - "nomCommune": "CRIQUETOT L ESNEVAL" + "codePostal": "05700", + "codeCommune": "05051", + "libelleAcheminement": "ETOILE ST CYRICE", + "nomCommune": "ETOILE ST CYRICE" }, { - "codePostal": "76260", - "codeCommune": "76207", - "libelleAcheminement": "CUVERVILLE SUR YERES", - "nomCommune": "CUVERVILLE SUR YERES" + "codePostal": "07800", + "codeCommune": "07055", + "libelleAcheminement": "CHARMES SUR RHONE", + "nomCommune": "CHARMES SUR RHONE" }, { - "codePostal": "76510", - "codeCommune": "76210", - "libelleAcheminement": "DAMPIERRE ST NICOLAS", - "nomCommune": "DAMPIERRE ST NICOLAS" + "codePostal": "05300", + "codeCommune": "05053", + "libelleAcheminement": "GARDE COLOMBE", + "nomCommune": "GARDE COLOMBE" }, { - "codePostal": "76370", - "codeCommune": "76217", - "libelleAcheminement": "DIEPPE", - "nomCommune": "DIEPPE" + "codePostal": "07110", + "codeCommune": "07058", + "libelleAcheminement": "CHASSIERS", + "nomCommune": "CHASSIERS" }, { - "codePostal": "76220", - "codeCommune": "76218", - "libelleAcheminement": "DOUDEAUVILLE", - "nomCommune": "DOUDEAUVILLE" + "codePostal": "05260", + "codeCommune": "05056", + "libelleAcheminement": "FOREST ST JULIEN", + "nomCommune": "FOREST ST JULIEN" }, { - "codePostal": "76190", - "codeCommune": "76223", - "libelleAcheminement": "ECALLES ALIX", - "nomCommune": "ECALLES ALIX" + "codePostal": "07240", + "codeCommune": "07060", + "libelleAcheminement": "CHATEAUNEUF DE VERNOUX", + "nomCommune": "CHATEAUNEUF DE VERNOUX" }, { - "codePostal": "76110", - "codeCommune": "76224", - "libelleAcheminement": "ECRAINVILLE", - "nomCommune": "ECRAINVILLE" + "codePostal": "05300", + "codeCommune": "05070", + "libelleAcheminement": "LARAGNE MONTEGLIN", + "nomCommune": "LARAGNE MONTEGLIN" }, { - "codePostal": "76540", - "codeCommune": "76226", - "libelleAcheminement": "ECRETTEVILLE SUR MER", - "nomCommune": "ECRETTEVILLE SUR MER" + "codePostal": "07110", + "codeCommune": "07062", + "libelleAcheminement": "CHAZEAUX", + "nomCommune": "CHAZEAUX" }, { - "codePostal": "76630", - "codeCommune": "76235", - "libelleAcheminement": "ENVERMEU", - "nomCommune": "ENVERMEU" + "codePostal": "05110", + "codeCommune": "05071", + "libelleAcheminement": "LARDIER ET VALENCA", + "nomCommune": "LARDIER ET VALENCA" }, { - "codePostal": "76640", - "codeCommune": "76236", - "libelleAcheminement": "ENVRONVILLE", - "nomCommune": "ENVRONVILLE" + "codePostal": "07130", + "codeCommune": "07070", + "libelleAcheminement": "CORNAS", + "nomCommune": "CORNAS" }, { - "codePostal": "76270", - "codeCommune": "76244", - "libelleAcheminement": "ESCLAVELLES", - "nomCommune": "ESCLAVELLES" + "codePostal": "05500", + "codeCommune": "05090", + "libelleAcheminement": "LA MOTTE EN CHAMPSAUR", + "nomCommune": "LA MOTTE EN CHAMPSAUR" }, { - "codePostal": "76260", - "codeCommune": "76252", - "libelleAcheminement": "ETALONDES", - "nomCommune": "ETALONDES" + "codePostal": "07000", + "codeCommune": "07072", + "libelleAcheminement": "COUX", + "nomCommune": "COUX" }, { - "codePostal": "76260", - "codeCommune": "76255", - "libelleAcheminement": "EU", - "nomCommune": "EU" + "codePostal": "05700", + "codeCommune": "05102", + "libelleAcheminement": "LA PIARRE", + "nomCommune": "LA PIARRE" }, { - "codePostal": "76220", - "codeCommune": "76260", - "libelleAcheminement": "FERRIERES EN BRAY", - "nomCommune": "FERRIERES EN BRAY" + "codePostal": "07270", + "codeCommune": "07073", + "libelleAcheminement": "LE CRESTET", + "nomCommune": "LE CRESTET" }, { - "codePostal": "76270", - "codeCommune": "76265", - "libelleAcheminement": "FLAMETS FRETILS", - "nomCommune": "FLAMETS FRETILS" + "codePostal": "05230", + "codeCommune": "05106", + "libelleAcheminement": "PRUNIERES", + "nomCommune": "PRUNIERES" }, { - "codePostal": "76290", - "codeCommune": "76270", - "libelleAcheminement": "FONTAINE LA MALLET", - "nomCommune": "FONTAINE LA MALLET" + "codePostal": "07170", + "codeCommune": "07077", + "libelleAcheminement": "DARBRES", + "nomCommune": "DARBRES" }, { - "codePostal": "76170", - "codeCommune": "76281", - "libelleAcheminement": "LA FRENAYE", - "nomCommune": "LA FRENAYE" + "codePostal": "05100", + "codeCommune": "05107", + "libelleAcheminement": "PUY ST ANDRE", + "nomCommune": "PUY ST ANDRE" }, { - "codePostal": "76510", - "codeCommune": "76288", - "libelleAcheminement": "FREULLEVILLE", - "nomCommune": "FREULLEVILLE" + "codePostal": "07160", + "codeCommune": "07082", + "libelleAcheminement": "DORNAS", + "nomCommune": "DORNAS" }, { - "codePostal": "76190", - "codeCommune": "76289", - "libelleAcheminement": "ST MARTIN DE L IF", - "nomCommune": "ST MARTIN DE L IF" + "codePostal": "05290", + "codeCommune": "05110", + "libelleAcheminement": "PUY ST VINCENT", + "nomCommune": "PUY ST VINCENT" }, { - "codePostal": "76190", - "codeCommune": "76289", - "libelleAcheminement": "ST MARTIN DE L IF", - "nomCommune": "ST MARTIN DE L IF" + "codePostal": "07340", + "codeCommune": "07089", + "libelleAcheminement": "FELINES", + "nomCommune": "FELINES" }, { - "codePostal": "76870", - "codeCommune": "76295", - "libelleAcheminement": "GAILLEFONTAINE", - "nomCommune": "GAILLEFONTAINE" + "codePostal": "05000", + "codeCommune": "05113", + "libelleAcheminement": "RAMBAUD", + "nomCommune": "RAMBAUD" }, { - "codePostal": "76280", - "codeCommune": "76307", - "libelleAcheminement": "GONNEVILLE LA MALLET", - "nomCommune": "GONNEVILLE LA MALLET" + "codePostal": "07500", + "codeCommune": "07102", + "libelleAcheminement": "GUILHERAND GRANGES", + "nomCommune": "GUILHERAND GRANGES" }, { - "codePostal": "76570", - "codeCommune": "76311", - "libelleAcheminement": "GOUPILLIERES", - "nomCommune": "GOUPILLIERES" + "codePostal": "05190", + "codeCommune": "05115", + "libelleAcheminement": "REMOLLON", + "nomCommune": "REMOLLON" }, { - "codePostal": "76220", - "codeCommune": "76312", - "libelleAcheminement": "GOURNAY EN BRAY", - "nomCommune": "GOURNAY EN BRAY" + "codePostal": "07310", + "codeCommune": "07103", + "libelleAcheminement": "ST JULIEN D INTRES", + "nomCommune": "ST JULIEN D INTRES" }, { - "codePostal": "76950", - "codeCommune": "76321", - "libelleAcheminement": "LES GRANDES VENTES", - "nomCommune": "LES GRANDES VENTES" + "codePostal": "05600", + "codeCommune": "05116", + "libelleAcheminement": "REOTIER", + "nomCommune": "REOTIER" }, { - "codePostal": "76970", - "codeCommune": "76325", - "libelleAcheminement": "GREMONVILLE", - "nomCommune": "GREMONVILLE" + "codePostal": "07510", + "codeCommune": "07105", + "libelleAcheminement": "ISSANLAS", + "nomCommune": "ISSANLAS" }, { - "codePostal": "76550", - "codeCommune": "76349", - "libelleAcheminement": "HAUTOT SUR MER", - "nomCommune": "HAUTOT SUR MER" + "codePostal": "05150", + "codeCommune": "05117", + "libelleAcheminement": "RIBEYRET", + "nomCommune": "RIBEYRET" }, { - "codePostal": "76610", - "codeCommune": "76351", - "libelleAcheminement": "LE HAVRE", - "nomCommune": "LE HAVRE" + "codePostal": "07660", + "codeCommune": "07105", + "libelleAcheminement": "ISSANLAS", + "nomCommune": "ISSANLAS" }, { - "codePostal": "76560", - "codeCommune": "76355", - "libelleAcheminement": "HERICOURT EN CAUX", - "nomCommune": "HERICOURT EN CAUX" + "codePostal": "05600", + "codeCommune": "05119", + "libelleAcheminement": "RISOUL", + "nomCommune": "RISOUL" }, { - "codePostal": "76780", - "codeCommune": "76358", - "libelleAcheminement": "LE HERON", - "nomCommune": "LE HERON" + "codePostal": "07470", + "codeCommune": "07106", + "libelleAcheminement": "ISSARLES", + "nomCommune": "ISSARLES" }, { - "codePostal": "76940", - "codeCommune": "76362", - "libelleAcheminement": "HEURTEAUVILLE", - "nomCommune": "HEURTEAUVILLE" + "codePostal": "05160", + "codeCommune": "05130", + "libelleAcheminement": "ST APOLLINAIRE", + "nomCommune": "ST APOLLINAIRE" }, { - "codePostal": "76340", - "codeCommune": "76363", - "libelleAcheminement": "HODENG AU BOSC", - "nomCommune": "HODENG AU BOSC" + "codePostal": "07380", + "codeCommune": "07107", + "libelleAcheminement": "JAUJAC", + "nomCommune": "JAUJAC" }, { - "codePostal": "76690", - "codeCommune": "76369", - "libelleAcheminement": "LA HOUSSAYE BERANGER", - "nomCommune": "LA HOUSSAYE BERANGER" + "codePostal": "05130", + "codeCommune": "05140", + "libelleAcheminement": "ST ETIENNE LE LAUS", + "nomCommune": "ST ETIENNE LE LAUS" }, { - "codePostal": "76890", - "codeCommune": "76373", - "libelleAcheminement": "IMBLEVILLE", - "nomCommune": "IMBLEVILLE" + "codePostal": "07260", + "codeCommune": "07110", + "libelleAcheminement": "JOYEUSE", + "nomCommune": "JOYEUSE" }, { - "codePostal": "76730", - "codeCommune": "76380", - "libelleAcheminement": "LAMMERVILLE", - "nomCommune": "LAMMERVILLE" + "codePostal": "05500", + "codeCommune": "05147", + "libelleAcheminement": "ST JULIEN EN CHAMPSAUR", + "nomCommune": "ST JULIEN EN CHAMPSAUR" }, { - "codePostal": "76810", - "codeCommune": "76400", - "libelleAcheminement": "LUNERAY", - "nomCommune": "LUNERAY" + "codePostal": "07600", + "codeCommune": "07111", + "libelleAcheminement": "JUVINAS", + "nomCommune": "JUVINAS" }, { - "codePostal": "76590", - "codeCommune": "76405", - "libelleAcheminement": "MANEHOUVILLE", - "nomCommune": "MANEHOUVILLE" + "codePostal": "05160", + "codeCommune": "05163", + "libelleAcheminement": "LE SAUZE DU LAC", + "nomCommune": "LE SAUZE DU LAC" }, { - "codePostal": "76400", - "codeCommune": "76406", - "libelleAcheminement": "MANIQUERVILLE", - "nomCommune": "MANIQUERVILLE" + "codePostal": "07470", + "codeCommune": "07119", + "libelleAcheminement": "LE LAC D ISSARLES", + "nomCommune": "LE LAC D ISSARLES" }, { - "codePostal": "76150", - "codeCommune": "76410", - "libelleAcheminement": "MAROMME", - "nomCommune": "MAROMME" + "codePostal": "05700", + "codeCommune": "05166", + "libelleAcheminement": "SERRES", + "nomCommune": "SERRES" }, { - "codePostal": "76390", - "codeCommune": "76411", - "libelleAcheminement": "MARQUES", - "nomCommune": "MARQUES" + "codePostal": "07200", + "codeCommune": "07122", + "libelleAcheminement": "LACHAPELLE SOUS AUBENAS", + "nomCommune": "LACHAPELLE SOUS AUBENAS" }, { - "codePostal": "76270", - "codeCommune": "76415", - "libelleAcheminement": "MASSY", - "nomCommune": "MASSY" + "codePostal": "05150", + "codeCommune": "05169", + "libelleAcheminement": "SORBIERS", + "nomCommune": "SORBIERS" }, { - "codePostal": "76490", - "codeCommune": "76418", - "libelleAcheminement": "MAULEVRIER STE GERTRUDE", - "nomCommune": "MAULEVRIER STE GERTRUDE" + "codePostal": "07110", + "codeCommune": "07132", + "libelleAcheminement": "LARGENTIERE", + "nomCommune": "LARGENTIERE" }, { - "codePostal": "76440", - "codeCommune": "76420", - "libelleAcheminement": "MAUQUENCHY", - "nomCommune": "MAUQUENCHY" + "codePostal": "05130", + "codeCommune": "05170", + "libelleAcheminement": "TALLARD", + "nomCommune": "TALLARD" }, { - "codePostal": "76270", - "codeCommune": "76424", - "libelleAcheminement": "MENONVAL", - "nomCommune": "MENONVAL" + "codePostal": "07160", + "codeCommune": "07150", + "libelleAcheminement": "MARIAC", + "nomCommune": "MARIAC" }, { - "codePostal": "76110", - "codeCommune": "76425", - "libelleAcheminement": "MENTHEVILLE", - "nomCommune": "MENTHEVILLE" + "codePostal": "05120", + "codeCommune": "05180", + "libelleAcheminement": "LES VIGNEAUX", + "nomCommune": "LES VIGNEAUX" }, { - "codePostal": "76460", - "codeCommune": "76428", - "libelleAcheminement": "LE MESNIL DURDENT", - "nomCommune": "LE MESNIL DURDENT" + "codePostal": "07200", + "codeCommune": "07155", + "libelleAcheminement": "MERCUER", + "nomCommune": "MERCUER" }, { - "codePostal": "76440", - "codeCommune": "76432", - "libelleAcheminement": "MESNIL MAUGER", - "nomCommune": "MESNIL MAUGER" + "codePostal": "06600", + "codeCommune": "06004", + "libelleAcheminement": "ANTIBES", + "nomCommune": "ANTIBES" }, { - "codePostal": "76520", - "codeCommune": "76434", - "libelleAcheminement": "MESNIL RAOUL", - "nomCommune": "MESNIL RAOUL" + "codePostal": "07140", + "codeCommune": "07163", + "libelleAcheminement": "MONTSELGUES", + "nomCommune": "MONTSELGUES" }, { - "codePostal": "76260", - "codeCommune": "76435", - "libelleAcheminement": "LE MESNIL REAUME", - "nomCommune": "LE MESNIL REAUME" + "codePostal": "06390", + "codeCommune": "06014", + "libelleAcheminement": "BENDEJUN", + "nomCommune": "BENDEJUN" }, { - "codePostal": "76710", - "codeCommune": "76452", - "libelleAcheminement": "MONTVILLE", - "nomCommune": "MONTVILLE" + "codePostal": "07230", + "codeCommune": "07171", + "libelleAcheminement": "PAYZAC", + "nomCommune": "PAYZAC" }, { - "codePostal": "76270", - "codeCommune": "76454", - "libelleAcheminement": "MORTEMER", - "nomCommune": "MORTEMER" + "codePostal": "06440", + "codeCommune": "06019", + "libelleAcheminement": "BLAUSASC", + "nomCommune": "BLAUSASC" }, { - "codePostal": "76520", - "codeCommune": "76464", - "libelleAcheminement": "LA NEUVILLE CHANT D OISEL", - "nomCommune": "LA NEUVILLE CHANT D OISEL" + "codePostal": "07380", + "codeCommune": "07178", + "libelleAcheminement": "PONT DE LABEAUME", + "nomCommune": "PONT DE LABEAUME" }, { - "codePostal": "76780", - "codeCommune": "76469", - "libelleAcheminement": "NOLLEVAL", - "nomCommune": "NOLLEVAL" + "codePostal": "06540", + "codeCommune": "06023", + "libelleAcheminement": "BREIL SUR ROYA", + "nomCommune": "BREIL SUR ROYA" }, { - "codePostal": "76330", - "codeCommune": "76471", - "libelleAcheminement": "NORVILLE", - "nomCommune": "NORVILLE" + "codePostal": "07000", + "codeCommune": "07186", + "libelleAcheminement": "PRIVAS", + "nomCommune": "PRIVAS" }, { - "codePostal": "76170", - "codeCommune": "76476", - "libelleAcheminement": "PORT JEROME SUR SEINE", - "nomCommune": "PORT JEROME SUR SEINE" + "codePostal": "06510", + "codeCommune": "06025", + "libelleAcheminement": "LE BROC", + "nomCommune": "LE BROC" }, { - "codePostal": "76330", - "codeCommune": "76476", - "libelleAcheminement": "PORT JEROME SUR SEINE", - "nomCommune": "PORT JEROME SUR SEINE" + "codePostal": "07200", + "codeCommune": "07190", + "libelleAcheminement": "ROCHECOLOMBE", + "nomCommune": "ROCHECOLOMBE" }, { - "codePostal": "76133", - "codeCommune": "76477", - "libelleAcheminement": "NOTRE DAME DU BEC", - "nomCommune": "NOTRE DAME DU BEC" + "codePostal": "06800", + "codeCommune": "06027", + "libelleAcheminement": "CAGNES SUR MER", + "nomCommune": "CAGNES SUR MER" }, { - "codePostal": "76730", - "codeCommune": "76485", - "libelleAcheminement": "OMONVILLE", - "nomCommune": "OMONVILLE" + "codePostal": "07110", + "codeCommune": "07196", + "libelleAcheminement": "ROCLES", + "nomCommune": "ROCLES" }, { - "codePostal": "76760", - "codeCommune": "76491", - "libelleAcheminement": "OUVILLE L ABBAYE", - "nomCommune": "OUVILLE L ABBAYE" + "codePostal": "06460", + "codeCommune": "06037", + "libelleAcheminement": "CAUSSOLS", + "nomCommune": "CAUSSOLS" }, { - "codePostal": "76860", - "codeCommune": "76492", - "libelleAcheminement": "OUVILLE LA RIVIERE", - "nomCommune": "OUVILLE LA RIVIERE" + "codePostal": "07250", + "codeCommune": "07198", + "libelleAcheminement": "ROMPON", + "nomCommune": "ROMPON" }, { - "codePostal": "76140", - "codeCommune": "76498", - "libelleAcheminement": "LE PETIT QUEVILLY", - "nomCommune": "LE PETIT QUEVILLY" + "codePostal": "06480", + "codeCommune": "06044", + "libelleAcheminement": "LA COLLE SUR LOUP", + "nomCommune": "LA COLLE SUR LOUP" }, { - "codePostal": "76330", - "codeCommune": "76499", - "libelleAcheminement": "PETIVILLE", - "nomCommune": "PETIVILLE" + "codePostal": "07320", + "codeCommune": "07204", + "libelleAcheminement": "ST AGREVE", + "nomCommune": "ST AGREVE" }, { - "codePostal": "76340", - "codeCommune": "76500", - "libelleAcheminement": "PIERRECOURT", - "nomCommune": "PIERRECOURT" + "codePostal": "06140", + "codeCommune": "06050", + "libelleAcheminement": "COURSEGOULES", + "nomCommune": "COURSEGOULES" }, { - "codePostal": "76210", - "codeCommune": "76518", - "libelleAcheminement": "RAFFETOT", - "nomCommune": "RAFFETOT" + "codePostal": "07690", + "codeCommune": "07212", + "libelleAcheminement": "ST ANDRE EN VIVARAIS", + "nomCommune": "ST ANDRE EN VIVARAIS" }, { - "codePostal": "76510", - "codeCommune": "76526", - "libelleAcheminement": "RICARVILLE DU VAL", - "nomCommune": "RICARVILLE DU VAL" + "codePostal": "06670", + "codeCommune": "06055", + "libelleAcheminement": "DURANUS", + "nomCommune": "DURANUS" }, { - "codePostal": "76640", - "codeCommune": "76531", - "libelleAcheminement": "ROCQUEFORT", - "nomCommune": "ROCQUEFORT" + "codePostal": "07270", + "codeCommune": "07216", + "libelleAcheminement": "ST BARTHELEMY GROZON", + "nomCommune": "ST BARTHELEMY GROZON" }, { - "codePostal": "76160", - "codeCommune": "76536", - "libelleAcheminement": "RONCHEROLLES SUR LE VIVIER", - "nomCommune": "RONCHEROLLES SUR LE VIVIER" + "codePostal": "06440", + "codeCommune": "06057", + "libelleAcheminement": "L ESCARENE", + "nomCommune": "L ESCARENE" }, { - "codePostal": "76100", - "codeCommune": "76540", - "libelleAcheminement": "ROUEN", - "nomCommune": "ROUEN" + "codePostal": "07300", + "codeCommune": "07217", + "libelleAcheminement": "ST BARTHELEMY LE PLAIN", + "nomCommune": "ST BARTHELEMY LE PLAIN" }, { - "codePostal": "76660", - "codeCommune": "76553", - "libelleAcheminement": "STE AGATHE D ALIERMONT", - "nomCommune": "STE AGATHE D ALIERMONT" + "codePostal": "06830", + "codeCommune": "06066", + "libelleAcheminement": "GILETTE", + "nomCommune": "GILETTE" }, { - "codePostal": "76690", - "codeCommune": "76555", - "libelleAcheminement": "ST ANDRE SUR CAILLY", - "nomCommune": "ST ANDRE SUR CAILLY" + "codePostal": "07160", + "codeCommune": "07222", + "libelleAcheminement": "ST CIERGE SOUS LE CHEYLARD", + "nomCommune": "ST CIERGE SOUS LE CHEYLARD" }, { - "codePostal": "76410", - "codeCommune": "76561", - "libelleAcheminement": "ST AUBIN LES ELBEUF", - "nomCommune": "ST AUBIN LES ELBEUF" + "codePostal": "06470", + "codeCommune": "06071", + "libelleAcheminement": "GUILLAUMES", + "nomCommune": "GUILLAUMES" }, { - "codePostal": "76550", - "codeCommune": "76565", - "libelleAcheminement": "ST AUBIN SUR SCIE", - "nomCommune": "ST AUBIN SUR SCIE" + "codePostal": "07430", + "codeCommune": "07227", + "libelleAcheminement": "ST CYR", + "nomCommune": "ST CYR" }, { - "codePostal": "76800", - "codeCommune": "76575", - "libelleAcheminement": "ST ETIENNE DU ROUVRAY", - "nomCommune": "ST ETIENNE DU ROUVRAY" + "codePostal": "06450", + "codeCommune": "06074", + "libelleAcheminement": "LANTOSQUE", + "nomCommune": "LANTOSQUE" }, { - "codePostal": "76440", - "codeCommune": "76578", - "libelleAcheminement": "STE GENEVIEVE", - "nomCommune": "STE GENEVIEVE" + "codePostal": "07230", + "codeCommune": "07238", + "libelleAcheminement": "ST GENEST DE BEAUZON", + "nomCommune": "ST GENEST DE BEAUZON" }, { - "codePostal": "76270", - "codeCommune": "76584", - "libelleAcheminement": "ST GERMAIN SUR EAULNE", - "nomCommune": "ST GERMAIN SUR EAULNE" + "codePostal": "06910", + "codeCommune": "06081", + "libelleAcheminement": "LE MAS", + "nomCommune": "LE MAS" }, { - "codePostal": "76560", - "codeCommune": "76597", - "libelleAcheminement": "ST LAURENT EN CAUX", - "nomCommune": "ST LAURENT EN CAUX" + "codePostal": "07580", + "codeCommune": "07242", + "libelleAcheminement": "ST GINEYS EN COIRON", + "nomCommune": "ST GINEYS EN COIRON" }, { - "codePostal": "76400", - "codeCommune": "76600", - "libelleAcheminement": "ST LEONARD", - "nomCommune": "ST LEONARD" + "codePostal": "06500", + "codeCommune": "06083", + "libelleAcheminement": "MENTON", + "nomCommune": "MENTON" }, { - "codePostal": "76890", - "codeCommune": "76602", - "libelleAcheminement": "ST MACLOU DE FOLLEVILLE", - "nomCommune": "ST MACLOU DE FOLLEVILLE" + "codePostal": "07240", + "codeCommune": "07244", + "libelleAcheminement": "ST JEAN CHAMBRE", + "nomCommune": "ST JEAN CHAMBRE" }, { - "codePostal": "76480", - "codeCommune": "76608", - "libelleAcheminement": "STE MARGUERITE SUR DUCLAIR", - "nomCommune": "STE MARGUERITE SUR DUCLAIR" + "codePostal": "06250", + "codeCommune": "06085", + "libelleAcheminement": "MOUGINS", + "nomCommune": "MOUGINS" }, { - "codePostal": "76370", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "07580", + "codeCommune": "07247", + "libelleAcheminement": "ST JEAN LE CENTENIER", + "nomCommune": "ST JEAN LE CENTENIER" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "06380", + "codeCommune": "06086", + "libelleAcheminement": "MOULINET", + "nomCommune": "MOULINET" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "07320", + "codeCommune": "07249", + "libelleAcheminement": "ST JEURE D ANDAURE", + "nomCommune": "ST JEURE D ANDAURE" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "06000", + "codeCommune": "06088", + "libelleAcheminement": "NICE", + "nomCommune": "NICE" }, { - "codePostal": "76260", - "codeCommune": "76619", - "libelleAcheminement": "ST MARTIN LE GAILLARD", - "nomCommune": "ST MARTIN LE GAILLARD" + "codePostal": "07700", + "codeCommune": "07259", + "libelleAcheminement": "ST JUST D ARDECHE", + "nomCommune": "ST JUST D ARDECHE" }, { - "codePostal": "76490", - "codeCommune": "76626", - "libelleAcheminement": "ST NICOLAS DE LA HAIE", - "nomCommune": "ST NICOLAS DE LA HAIE" + "codePostal": "06100", + "codeCommune": "06088", + "libelleAcheminement": "NICE", + "nomCommune": "NICE" }, { - "codePostal": "76890", - "codeCommune": "76628", - "libelleAcheminement": "ST OUEN DU BREUIL", - "nomCommune": "ST OUEN DU BREUIL" + "codePostal": "07590", + "codeCommune": "07262", + "libelleAcheminement": "ST LAURENT BAINS LAVAL D AURELLE", + "nomCommune": "ST LAURENT BAINS LAVAL D AURELLE" }, { - "codePostal": "76630", - "codeCommune": "76630", - "libelleAcheminement": "ST OUEN SOUS BAILLY", - "nomCommune": "ST OUEN SOUS BAILLY" + "codePostal": "06260", + "codeCommune": "06093", + "libelleAcheminement": "LA PENNE", + "nomCommune": "LA PENNE" }, { - "codePostal": "76260", - "codeCommune": "76638", - "libelleAcheminement": "ST PIERRE EN VAL", - "nomCommune": "ST PIERRE EN VAL" + "codePostal": "07100", + "codeCommune": "07265", + "libelleAcheminement": "ST MARCEL LES ANNONAY", + "nomCommune": "ST MARCEL LES ANNONAY" }, { - "codePostal": "76680", - "codeCommune": "76648", - "libelleAcheminement": "ST SAENS", - "nomCommune": "ST SAENS" + "codePostal": "06260", + "codeCommune": "06101", + "libelleAcheminement": "RIGAUD", + "nomCommune": "RIGAUD" }, { - "codePostal": "76430", - "codeCommune": "76658", - "libelleAcheminement": "ST VINCENT CRAMESNIL", - "nomCommune": "ST VINCENT CRAMESNIL" + "codePostal": "07700", + "codeCommune": "07268", + "libelleAcheminement": "ST MARTIN D ARDECHE", + "nomCommune": "ST MARTIN D ARDECHE" }, { - "codePostal": "76540", - "codeCommune": "76663", - "libelleAcheminement": "SASSETOT LE MAUCONDUIT", - "nomCommune": "SASSETOT LE MAUCONDUIT" + "codePostal": "06450", + "codeCommune": "06103", + "libelleAcheminement": "ROQUEBILLIERE", + "nomCommune": "ROQUEBILLIERE" }, { - "codePostal": "76540", - "codeCommune": "76663", - "libelleAcheminement": "SASSETOT LE MAUCONDUIT", - "nomCommune": "SASSETOT LE MAUCONDUIT" + "codePostal": "07200", + "codeCommune": "07272", + "libelleAcheminement": "ST MAURICE D ARDECHE", + "nomCommune": "ST MAURICE D ARDECHE" }, { - "codePostal": "76440", - "codeCommune": "76666", - "libelleAcheminement": "SAUMONT LA POTERIE", - "nomCommune": "SAUMONT LA POTERIE" + "codePostal": "06330", + "codeCommune": "06105", + "libelleAcheminement": "ROQUEFORT LES PINS", + "nomCommune": "ROQUEFORT LES PINS" }, { - "codePostal": "76550", - "codeCommune": "76667", - "libelleAcheminement": "SAUQUEVILLE", - "nomCommune": "SAUQUEVILLE" + "codePostal": "07140", + "codeCommune": "07284", + "libelleAcheminement": "ST PIERRE ST JEAN", + "nomCommune": "ST PIERRE ST JEAN" }, { - "codePostal": "76260", - "codeCommune": "76671", - "libelleAcheminement": "SEPT MEULES", - "nomCommune": "SEPT MEULES" + "codePostal": "06550", + "codeCommune": "06108", + "libelleAcheminement": "LA ROQUETTE SUR SIAGNE", + "nomCommune": "LA ROQUETTE SUR SIAGNE" }, { - "codePostal": "76540", - "codeCommune": "76686", - "libelleAcheminement": "THEUVILLE AUX MAILLOTS", - "nomCommune": "THEUVILLE AUX MAILLOTS" + "codePostal": "07190", + "codeCommune": "07286", + "libelleAcheminement": "ST PIERREVILLE", + "nomCommune": "ST PIERREVILLE" }, { - "codePostal": "76730", - "codeCommune": "76690", - "libelleAcheminement": "THIL MANNEVILLE", - "nomCommune": "THIL MANNEVILLE" + "codePostal": "06650", + "codeCommune": "06112", + "libelleAcheminement": "LE ROURET", + "nomCommune": "LE ROURET" }, { - "codePostal": "76400", - "codeCommune": "76706", - "libelleAcheminement": "TOURVILLE LES IFS", - "nomCommune": "TOURVILLE LES IFS" + "codePostal": "07410", + "codeCommune": "07301", + "libelleAcheminement": "ST VICTOR", + "nomCommune": "ST VICTOR" }, { - "codePostal": "76470", - "codeCommune": "76711", - "libelleAcheminement": "LE TREPORT", - "nomCommune": "LE TREPORT" + "codePostal": "06530", + "codeCommune": "06118", + "libelleAcheminement": "ST CEZAIRE SUR SIAGNE", + "nomCommune": "ST CEZAIRE SUR SIAGNE" }, { - "codePostal": "76190", - "codeCommune": "76718", - "libelleAcheminement": "VALLIQUERVILLE", - "nomCommune": "VALLIQUERVILLE" + "codePostal": "07370", + "codeCommune": "07308", + "libelleAcheminement": "SARRAS", + "nomCommune": "SARRAS" }, { - "codePostal": "76150", - "codeCommune": "76728", - "libelleAcheminement": "LA VAUPALIERE", - "nomCommune": "LA VAUPALIERE" + "codePostal": "06450", + "codeCommune": "06127", + "libelleAcheminement": "ST MARTIN VESUBIE", + "nomCommune": "ST MARTIN VESUBIE" }, { - "codePostal": "76560", - "codeCommune": "76730", - "libelleAcheminement": "VEAUVILLE LES QUELLES", - "nomCommune": "VEAUVILLE LES QUELLES" + "codePostal": "07340", + "codeCommune": "07321", + "libelleAcheminement": "THORRENC", + "nomCommune": "THORRENC" }, { - "codePostal": "76750", - "codeCommune": "76738", - "libelleAcheminement": "VIEUX MANOIR", - "nomCommune": "VIEUX MANOIR" + "codePostal": "06590", + "codeCommune": "06138", + "libelleAcheminement": "THEOULE SUR MER", + "nomCommune": "THEOULE SUR MER" }, { - "codePostal": "76390", - "codeCommune": "76739", - "libelleAcheminement": "VIEUX ROUEN SUR BRESLE", - "nomCommune": "VIEUX ROUEN SUR BRESLE" + "codePostal": "07400", + "codeCommune": "07332", + "libelleAcheminement": "VALVIGNERES", + "nomCommune": "VALVIGNERES" }, { - "codePostal": "76760", - "codeCommune": "76752", - "libelleAcheminement": "YERVILLE", - "nomCommune": "YERVILLE" + "codePostal": "06830", + "codeCommune": "06141", + "libelleAcheminement": "TOUDON", + "nomCommune": "TOUDON" }, { - "codePostal": "76530", - "codeCommune": "76759", - "libelleAcheminement": "YVILLE SUR SEINE", - "nomCommune": "YVILLE SUR SEINE" + "codePostal": "07690", + "codeCommune": "07333", + "libelleAcheminement": "VANOSC", + "nomCommune": "VANOSC" }, { - "codePostal": "77890", - "codeCommune": "77009", - "libelleAcheminement": "ARVILLE", - "nomCommune": "ARVILLE" + "codePostal": "06690", + "codeCommune": "06147", + "libelleAcheminement": "TOURRETTE LEVENS", + "nomCommune": "TOURRETTE LEVENS" }, { - "codePostal": "77720", - "codeCommune": "77010", - "libelleAcheminement": "AUBEPIERRE OZOUER LE REPOS", - "nomCommune": "AUBEPIERRE OZOUER LE REPOS" + "codePostal": "07140", + "codeCommune": "07334", + "libelleAcheminement": "LES VANS", + "nomCommune": "LES VANS" }, { - "codePostal": "77480", - "codeCommune": "77015", - "libelleAcheminement": "BABY", - "nomCommune": "BABY" + "codePostal": "06320", + "codeCommune": "06150", + "libelleAcheminement": "LA TURBIE", + "nomCommune": "LA TURBIE" }, { - "codePostal": "77700", - "codeCommune": "77018", - "libelleAcheminement": "BAILLY ROMAINVILLIERS", - "nomCommune": "BAILLY ROMAINVILLIERS" + "codePostal": "07260", + "codeCommune": "07336", + "libelleAcheminement": "VERNON", + "nomCommune": "VERNON" }, { - "codePostal": "77560", - "codeCommune": "77026", - "libelleAcheminement": "BEAUCHERY ST MARTIN", - "nomCommune": "BEAUCHERY ST MARTIN" + "codePostal": "07160", + "codeCommune": "07001", + "libelleAcheminement": "ACCONS", + "nomCommune": "ACCONS" }, { - "codePostal": "77115", - "codeCommune": "77034", - "libelleAcheminement": "BLANDY", - "nomCommune": "BLANDY" + "codePostal": "07610", + "codeCommune": "07345", + "libelleAcheminement": "VION", + "nomCommune": "VION" }, { - "codePostal": "77760", - "codeCommune": "77041", - "libelleAcheminement": "BOISSY AUX CAILLES", - "nomCommune": "BOISSY AUX CAILLES" + "codePostal": "07200", + "codeCommune": "07002", + "libelleAcheminement": "AILHON", + "nomCommune": "AILHON" }, { - "codePostal": "77580", - "codeCommune": "77047", - "libelleAcheminement": "BOULEURS", - "nomCommune": "BOULEURS" + "codePostal": "08090", + "codeCommune": "08003", + "libelleAcheminement": "AIGLEMONT", + "nomCommune": "AIGLEMONT" }, { - "codePostal": "77320", - "codeCommune": "77066", - "libelleAcheminement": "CERNEUX", - "nomCommune": "CERNEUX" + "codePostal": "07530", + "codeCommune": "07003", + "libelleAcheminement": "AIZAC", + "nomCommune": "AIZAC" }, { - "codePostal": "77930", - "codeCommune": "77069", - "libelleAcheminement": "CHAILLY EN BIERE", - "nomCommune": "CHAILLY EN BIERE" + "codePostal": "08130", + "codeCommune": "08006", + "libelleAcheminement": "ALLAND HUY ET SAUSSEUIL", + "nomCommune": "ALLAND HUY ET SAUSSEUIL" }, { - "codePostal": "77390", - "codeCommune": "77081", - "libelleAcheminement": "CHAMPDEUIL", - "nomCommune": "CHAMPDEUIL" + "codePostal": "07410", + "codeCommune": "07014", + "libelleAcheminement": "ARLEBOSC", + "nomCommune": "ARLEBOSC" }, { - "codePostal": "77720", - "codeCommune": "77086", - "libelleAcheminement": "LA CHAPELLE GAUTHIER", - "nomCommune": "LA CHAPELLE GAUTHIER" + "codePostal": "08130", + "codeCommune": "08010", + "libelleAcheminement": "AMBLY FLEURY", + "nomCommune": "AMBLY FLEURY" }, { - "codePostal": "77760", - "codeCommune": "77088", - "libelleAcheminement": "LA CHAPELLE LA REINE", - "nomCommune": "LA CHAPELLE LA REINE" + "codePostal": "07200", + "codeCommune": "07019", + "libelleAcheminement": "AUBENAS", + "nomCommune": "AUBENAS" }, { - "codePostal": "77410", - "codeCommune": "77095", - "libelleAcheminement": "CHARNY", - "nomCommune": "CHARNY" + "codePostal": "08260", + "codeCommune": "08015", + "libelleAcheminement": "ANTHENY", + "nomCommune": "ANTHENY" }, { - "codePostal": "77820", - "codeCommune": "77100", - "libelleAcheminement": "LE CHATELET EN BRIE", - "nomCommune": "LE CHATELET EN BRIE" + "codePostal": "07400", + "codeCommune": "07020", + "libelleAcheminement": "AUBIGNAS", + "nomCommune": "AUBIGNAS" }, { - "codePostal": "77126", - "codeCommune": "77101", - "libelleAcheminement": "CHATENAY SUR SEINE", - "nomCommune": "CHATENAY SUR SEINE" + "codePostal": "08290", + "codeCommune": "08016", + "libelleAcheminement": "AOUSTE", + "nomCommune": "AOUSTE" }, { - "codePostal": "77160", - "codeCommune": "77109", - "libelleAcheminement": "CHENOISE CUCHARMOY", - "nomCommune": "CHENOISE CUCHARMOY" + "codePostal": "07460", + "codeCommune": "07024", + "libelleAcheminement": "BANNE", + "nomCommune": "BANNE" }, { - "codePostal": "77173", - "codeCommune": "77114", - "libelleAcheminement": "CHEVRY COSSIGNY", - "nomCommune": "CHEVRY COSSIGNY" + "codePostal": "08400", + "codeCommune": "08018", + "libelleAcheminement": "ARDEUIL ET MONTFAUXELLES", + "nomCommune": "ARDEUIL ET MONTFAUXELLES" }, { - "codePostal": "77440", - "codeCommune": "77126", - "libelleAcheminement": "CONGIS SUR THEROUANNE", - "nomCommune": "CONGIS SUR THEROUANNE" + "codePostal": "07460", + "codeCommune": "07031", + "libelleAcheminement": "BERRIAS ET CASTELJAU", + "nomCommune": "BERRIAS ET CASTELJAU" }, { - "codePostal": "77170", - "codeCommune": "77127", - "libelleAcheminement": "COUBERT", - "nomCommune": "COUBERT" + "codePostal": "08390", + "codeCommune": "08023", + "libelleAcheminement": "ARTAISE LE VIVIER", + "nomCommune": "ARTAISE LE VIVIER" }, { - "codePostal": "77450", - "codeCommune": "77171", - "libelleAcheminement": "ESBLY", - "nomCommune": "ESBLY" + "codePostal": "07460", + "codeCommune": "07031", + "libelleAcheminement": "BERRIAS ET CASTELJAU", + "nomCommune": "BERRIAS ET CASTELJAU" }, { - "codePostal": "77139", - "codeCommune": "77173", - "libelleAcheminement": "ETREPILLY", - "nomCommune": "ETREPILLY" + "codePostal": "08320", + "codeCommune": "08028", + "libelleAcheminement": "AUBRIVES", + "nomCommune": "AUBRIVES" }, { - "codePostal": "77166", - "codeCommune": "77175", - "libelleAcheminement": "EVRY GREGY SUR YERRE", - "nomCommune": "EVRY GREGY SUR YERRE" + "codePostal": "07160", + "codeCommune": "07049", + "libelleAcheminement": "LE CHAMBON", + "nomCommune": "LE CHAMBON" }, { - "codePostal": "77590", - "codeCommune": "77188", - "libelleAcheminement": "FONTAINE LE PORT", - "nomCommune": "FONTAINE LE PORT" + "codePostal": "08200", + "codeCommune": "08043", + "libelleAcheminement": "BALAN", + "nomCommune": "BALAN" }, { - "codePostal": "77390", - "codeCommune": "77195", - "libelleAcheminement": "FOUJU", - "nomCommune": "FOUJU" + "codePostal": "07440", + "codeCommune": "07052", + "libelleAcheminement": "CHAMPIS", + "nomCommune": "CHAMPIS" }, { - "codePostal": "77910", - "codeCommune": "77203", - "libelleAcheminement": "GERMIGNY L EVEQUE", - "nomCommune": "GERMIGNY L EVEQUE" + "codePostal": "08300", + "codeCommune": "08048", + "libelleAcheminement": "BARBY", + "nomCommune": "BARBY" }, { - "codePostal": "77720", - "codeCommune": "77211", - "libelleAcheminement": "GRANDPUITS BAILLY CARROIS", - "nomCommune": "GRANDPUITS BAILLY CARROIS" + "codePostal": "07130", + "codeCommune": "07059", + "libelleAcheminement": "CHATEAUBOURG", + "nomCommune": "CHATEAUBOURG" }, { - "codePostal": "77118", - "codeCommune": "77212", - "libelleAcheminement": "GRAVON", - "nomCommune": "GRAVON" + "codePostal": "08240", + "codeCommune": "08052", + "libelleAcheminement": "BAYONVILLE", + "nomCommune": "BAYONVILLE" }, { - "codePostal": "77850", - "codeCommune": "77226", - "libelleAcheminement": "HERICY", - "nomCommune": "HERICY" + "codePostal": "07300", + "codeCommune": "07063", + "libelleAcheminement": "CHEMINAS", + "nomCommune": "CHEMINAS" }, { - "codePostal": "77114", - "codeCommune": "77227", - "libelleAcheminement": "HERME", - "nomCommune": "HERME" + "codePostal": "08240", + "codeCommune": "08057", + "libelleAcheminement": "BELLEVILLE ET CHATILLON SUR BAR", + "nomCommune": "BELLEVILLE ET CHATILLON SUR BAR" }, { - "codePostal": "77600", - "codeCommune": "77237", - "libelleAcheminement": "JOSSIGNY", - "nomCommune": "JOSSIGNY" + "codePostal": "07210", + "codeCommune": "07066", + "libelleAcheminement": "CHOMERAC", + "nomCommune": "CHOMERAC" }, { - "codePostal": "77320", - "codeCommune": "77240", - "libelleAcheminement": "JOUY SUR MORIN", - "nomCommune": "JOUY SUR MORIN" + "codePostal": "08090", + "codeCommune": "08058", + "libelleAcheminement": "BELVAL", + "nomCommune": "BELVAL" }, { - "codePostal": "77400", - "codeCommune": "77243", - "libelleAcheminement": "LAGNY SUR MARNE", - "nomCommune": "LAGNY SUR MARNE" + "codePostal": "07430", + "codeCommune": "07067", + "libelleAcheminement": "COLOMBIER LE CARDINAL", + "nomCommune": "COLOMBIER LE CARDINAL" }, { - "codePostal": "77220", - "codeCommune": "77254", - "libelleAcheminement": "LIVERDY EN BRIE", - "nomCommune": "LIVERDY EN BRIE" + "codePostal": "08300", + "codeCommune": "08060", + "libelleAcheminement": "BERGNICOURT", + "nomCommune": "BERGNICOURT" }, { - "codePostal": "77230", - "codeCommune": "77259", - "libelleAcheminement": "LONGPERRIER", - "nomCommune": "LONGPERRIER" + "codePostal": "07270", + "codeCommune": "07068", + "libelleAcheminement": "COLOMBIER LE JEUNE", + "nomCommune": "COLOMBIER LE JEUNE" }, { - "codePostal": "77570", - "codeCommune": "77267", - "libelleAcheminement": "LA MADELEINE SUR LOING", - "nomCommune": "LA MADELEINE SUR LOING" + "codePostal": "08240", + "codeCommune": "08061", + "libelleAcheminement": "LA BERLIERE", + "nomCommune": "LA BERLIERE" }, { - "codePostal": "77120", - "codeCommune": "77278", - "libelleAcheminement": "MAROLLES EN BRIE", - "nomCommune": "MAROLLES EN BRIE" + "codePostal": "07410", + "codeCommune": "07069", + "libelleAcheminement": "COLOMBIER LE VIEUX", + "nomCommune": "COLOMBIER LE VIEUX" }, { - "codePostal": "77130", - "codeCommune": "77279", - "libelleAcheminement": "MAROLLES SUR SEINE", - "nomCommune": "MAROLLES SUR SEINE" + "codePostal": "08300", + "codeCommune": "08064", + "libelleAcheminement": "BIERMES", + "nomCommune": "BIERMES" }, { - "codePostal": "77145", - "codeCommune": "77283", - "libelleAcheminement": "MAY EN MULTIEN", - "nomCommune": "MAY EN MULTIEN" + "codePostal": "07350", + "codeCommune": "07076", + "libelleAcheminement": "CRUAS", + "nomCommune": "CRUAS" }, { - "codePostal": "77410", - "codeCommune": "77292", - "libelleAcheminement": "MESSY", - "nomCommune": "MESSY" + "codePostal": "08310", + "codeCommune": "08066", + "libelleAcheminement": "BIGNICOURT", + "nomCommune": "BIGNICOURT" }, { - "codePostal": "77130", - "codeCommune": "77293", - "libelleAcheminement": "MISY SUR YONNE", - "nomCommune": "MISY SUR YONNE" + "codePostal": "07570", + "codeCommune": "07079", + "libelleAcheminement": "DESAIGNES", + "nomCommune": "DESAIGNES" }, { - "codePostal": "77950", - "codeCommune": "77295", - "libelleAcheminement": "MOISENAY", - "nomCommune": "MOISENAY" + "codePostal": "08140", + "codeCommune": "08083", + "libelleAcheminement": "BREVILLY", + "nomCommune": "BREVILLY" }, { - "codePostal": "77140", - "codeCommune": "77302", - "libelleAcheminement": "MONTCOURT FROMONVILLE", - "nomCommune": "MONTCOURT FROMONVILLE" + "codePostal": "07370", + "codeCommune": "07084", + "libelleAcheminement": "ECLASSAN", + "nomCommune": "ECLASSAN" }, { - "codePostal": "77122", - "codeCommune": "77309", - "libelleAcheminement": "MONTHYON", - "nomCommune": "MONTHYON" + "codePostal": "08240", + "codeCommune": "08085", + "libelleAcheminement": "BRIEULLES SUR BAR", + "nomCommune": "BRIEULLES SUR BAR" }, { - "codePostal": "77480", - "codeCommune": "77310", - "libelleAcheminement": "MONTIGNY LE GUESDIER", - "nomCommune": "MONTIGNY LE GUESDIER" + "codePostal": "07000", + "codeCommune": "07090", + "libelleAcheminement": "FLAVIAC", + "nomCommune": "FLAVIAC" }, { - "codePostal": "77520", - "codeCommune": "77311", - "libelleAcheminement": "MONTIGNY LENCOUP", - "nomCommune": "MONTIGNY LENCOUP" + "codePostal": "08380", + "codeCommune": "08087", + "libelleAcheminement": "BROGNON", + "nomCommune": "BROGNON" }, { - "codePostal": "77450", - "codeCommune": "77315", - "libelleAcheminement": "MONTRY", - "nomCommune": "MONTRY" + "codePostal": "07800", + "codeCommune": "07094", + "libelleAcheminement": "GILHAC ET BRUZAC", + "nomCommune": "GILHAC ET BRUZAC" }, { - "codePostal": "77250", - "codeCommune": "77316", - "libelleAcheminement": "MORET LOING ET ORVANNE", - "nomCommune": "MORET LOING ET ORVANNE" + "codePostal": "08450", + "codeCommune": "08088", + "libelleAcheminement": "BULSON", + "nomCommune": "BULSON" }, { - "codePostal": "77480", - "codeCommune": "77321", - "libelleAcheminement": "MOUSSEAUX LES BRAY", - "nomCommune": "MOUSSEAUX LES BRAY" + "codePostal": "07000", + "codeCommune": "07098", + "libelleAcheminement": "GOURDON", + "nomCommune": "GOURDON" }, { - "codePostal": "77176", - "codeCommune": "77326", - "libelleAcheminement": "NANDY", - "nomCommune": "NANDY" + "codePostal": "08240", + "codeCommune": "08089", + "libelleAcheminement": "BUZANCY", + "nomCommune": "BUZANCY" }, { - "codePostal": "77124", - "codeCommune": "77335", - "libelleAcheminement": "CHAUCONIN NEUFMONTIERS", - "nomCommune": "CHAUCONIN NEUFMONTIERS" + "codePostal": "07120", + "codeCommune": "07101", + "libelleAcheminement": "GROSPIERRES", + "nomCommune": "GROSPIERRES" }, { - "codePostal": "77940", - "codeCommune": "77338", - "libelleAcheminement": "NOISY RUDIGNON", - "nomCommune": "NOISY RUDIGNON" + "codePostal": "08110", + "codeCommune": "08090", + "libelleAcheminement": "CARIGNAN", + "nomCommune": "CARIGNAN" }, { - "codePostal": "77890", - "codeCommune": "77342", - "libelleAcheminement": "OBSONVILLE", - "nomCommune": "OBSONVILLE" + "codePostal": "07310", + "codeCommune": "07103", + "libelleAcheminement": "ST JULIEN D INTRES", + "nomCommune": "ST JULIEN D INTRES" }, { - "codePostal": "77134", - "codeCommune": "77347", - "libelleAcheminement": "LES ORMES SUR VOULZIE", - "nomCommune": "LES ORMES SUR VOULZIE" + "codePostal": "08310", + "codeCommune": "08092", + "libelleAcheminement": "CAUROY", + "nomCommune": "CAUROY" }, { - "codePostal": "77710", - "codeCommune": "77353", - "libelleAcheminement": "PALEY", - "nomCommune": "PALEY" + "codePostal": "07310", + "codeCommune": "07123", + "libelleAcheminement": "LACHAPELLE SOUS CHANEAC", + "nomCommune": "LACHAPELLE SOUS CHANEAC" }, { - "codePostal": "77124", - "codeCommune": "77358", - "libelleAcheminement": "PENCHARD", - "nomCommune": "PENCHARD" + "codePostal": "08430", + "codeCommune": "08099", + "libelleAcheminement": "CHAMPIGNEUL SUR VENCE", + "nomCommune": "CHAMPIGNEUL SUR VENCE" }, { - "codePostal": "77165", - "codeCommune": "77364", - "libelleAcheminement": "LE PLESSIS AUX BOIS", - "nomCommune": "LE PLESSIS AUX BOIS" + "codePostal": "07150", + "codeCommune": "07126", + "libelleAcheminement": "LAGORCE", + "nomCommune": "LAGORCE" }, { - "codePostal": "77400", - "codeCommune": "77372", - "libelleAcheminement": "POMPONNE", - "nomCommune": "POMPONNE" + "codePostal": "08260", + "codeCommune": "08100", + "libelleAcheminement": "CHAMPLIN", + "nomCommune": "CHAMPLIN" }, { - "codePostal": "77340", - "codeCommune": "77373", - "libelleAcheminement": "PONTAULT COMBAULT", - "nomCommune": "PONTAULT COMBAULT" + "codePostal": "07380", + "codeCommune": "07127", + "libelleAcheminement": "LALEVADE D ARDECHE", + "nomCommune": "LALEVADE D ARDECHE" }, { - "codePostal": "77370", - "codeCommune": "77383", - "libelleAcheminement": "RAMPILLON", - "nomCommune": "RAMPILLON" + "codePostal": "08450", + "codeCommune": "08115", + "libelleAcheminement": "CHEMERY CHEHERY", + "nomCommune": "CHEMERY CHEHERY" }, { - "codePostal": "77680", - "codeCommune": "77390", - "libelleAcheminement": "ROISSY EN BRIE", - "nomCommune": "ROISSY EN BRIE" + "codePostal": "07270", + "codeCommune": "07129", + "libelleAcheminement": "LAMASTRE", + "nomCommune": "LAMASTRE" }, { - "codePostal": "77510", - "codeCommune": "77398", - "libelleAcheminement": "SABLONNIERES", - "nomCommune": "SABLONNIERES" + "codePostal": "08250", + "codeCommune": "08120", + "libelleAcheminement": "CHEVIERES", + "nomCommune": "CHEVIERES" }, { - "codePostal": "77510", - "codeCommune": "77406", - "libelleAcheminement": "ST DENIS LES REBAIS", - "nomCommune": "ST DENIS LES REBAIS" + "codePostal": "07200", + "codeCommune": "07131", + "libelleAcheminement": "LANAS", + "nomCommune": "LANAS" }, { - "codePostal": "77130", - "codeCommune": "77409", - "libelleAcheminement": "ST GERMAIN LAVAL", - "nomCommune": "ST GERMAIN LAVAL" + "codePostal": "08260", + "codeCommune": "08121", + "libelleAcheminement": "CHILLY", + "nomCommune": "CHILLY" }, { - "codePostal": "77230", - "codeCommune": "77420", - "libelleAcheminement": "ST MARD", - "nomCommune": "ST MARD" + "codePostal": "07660", + "codeCommune": "07137", + "libelleAcheminement": "LAVILLATTE", + "nomCommune": "LAVILLATTE" }, { - "codePostal": "77320", - "codeCommune": "77424", - "libelleAcheminement": "ST MARTIN DU BOSCHET", - "nomCommune": "ST MARTIN DU BOSCHET" + "codePostal": "08090", + "codeCommune": "08125", + "libelleAcheminement": "CLIRON", + "nomCommune": "CLIRON" }, { - "codePostal": "77720", - "codeCommune": "77426", - "libelleAcheminement": "ST MERY", - "nomCommune": "ST MERY" + "codePostal": "07170", + "codeCommune": "07138", + "libelleAcheminement": "LAVILLEDIEU", + "nomCommune": "LAVILLEDIEU" }, { - "codePostal": "77120", - "codeCommune": "77433", - "libelleAcheminement": "BEAUTHEIL SAINTS", - "nomCommune": "BEAUTHEIL SAINTS" + "codePostal": "08130", + "codeCommune": "08134", + "libelleAcheminement": "COULOMMES ET MARQUENY", + "nomCommune": "COULOMMES ET MARQUENY" }, { - "codePostal": "77165", - "codeCommune": "77437", - "libelleAcheminement": "ST SOUPPLETS", - "nomCommune": "ST SOUPPLETS" + "codePostal": "07610", + "codeCommune": "07140", + "libelleAcheminement": "LEMPS", + "nomCommune": "LEMPS" }, { - "codePostal": "77920", - "codeCommune": "77441", - "libelleAcheminement": "SAMOIS SUR SEINE", - "nomCommune": "SAMOIS SUR SEINE" + "codePostal": "08400", + "codeCommune": "08135", + "libelleAcheminement": "LA CROIX AUX BOIS", + "nomCommune": "LA CROIX AUX BOIS" }, { - "codePostal": "77320", - "codeCommune": "77444", - "libelleAcheminement": "SANCY LES PROVINS", - "nomCommune": "SANCY LES PROVINS" + "codePostal": "07660", + "codeCommune": "07142", + "libelleAcheminement": "LESPERON", + "nomCommune": "LESPERON" }, { - "codePostal": "77650", - "codeCommune": "77446", - "libelleAcheminement": "SAVINS", - "nomCommune": "SAVINS" + "codePostal": "08800", + "codeCommune": "08139", + "libelleAcheminement": "DEVILLE", + "nomCommune": "DEVILLE" }, { - "codePostal": "77170", - "codeCommune": "77450", - "libelleAcheminement": "SERVON", - "nomCommune": "SERVON" + "codePostal": "07170", + "codeCommune": "07145", + "libelleAcheminement": "LUSSAS", + "nomCommune": "LUSSAS" }, { - "codePostal": "77520", - "codeCommune": "77452", - "libelleAcheminement": "SIGY", - "nomCommune": "SIGY" + "codePostal": "08140", + "codeCommune": "08145", + "libelleAcheminement": "DOUZY", + "nomCommune": "DOUZY" }, { - "codePostal": "77111", - "codeCommune": "77455", - "libelleAcheminement": "SOIGNOLLES EN BRIE", - "nomCommune": "SOIGNOLLES EN BRIE" + "codePostal": "07140", + "codeCommune": "07147", + "libelleAcheminement": "MALARCE SUR LA THINES", + "nomCommune": "MALARCE SUR LA THINES" }, { - "codePostal": "77650", - "codeCommune": "77456", - "libelleAcheminement": "SOISY BOUY", - "nomCommune": "SOISY BOUY" + "codePostal": "08300", + "codeCommune": "08148", + "libelleAcheminement": "L ECAILLE", + "nomCommune": "L ECAILLE" }, { - "codePostal": "77440", - "codeCommune": "77460", - "libelleAcheminement": "TANCROU", - "nomCommune": "TANCROU" + "codePostal": "07140", + "codeCommune": "07148", + "libelleAcheminement": "MALBOSC", + "nomCommune": "MALBOSC" }, { - "codePostal": "77810", - "codeCommune": "77463", - "libelleAcheminement": "THOMERY", - "nomCommune": "THOMERY" + "codePostal": "08260", + "codeCommune": "08155", + "libelleAcheminement": "ETALLE", + "nomCommune": "ETALLE" }, { - "codePostal": "77400", - "codeCommune": "77464", - "libelleAcheminement": "THORIGNY SUR MARNE", - "nomCommune": "THORIGNY SUR MARNE" + "codePostal": "07300", + "codeCommune": "07152", + "libelleAcheminement": "MAUVES", + "nomCommune": "MAUVES" }, { - "codePostal": "77940", - "codeCommune": "77465", - "libelleAcheminement": "THOURY FEROTTES", - "nomCommune": "THOURY FEROTTES" + "codePostal": "08160", + "codeCommune": "08158", + "libelleAcheminement": "ETREPIGNY", + "nomCommune": "ETREPIGNY" }, { - "codePostal": "77510", - "codeCommune": "77472", - "libelleAcheminement": "LA TRETOIRE", - "nomCommune": "LA TRETOIRE" + "codePostal": "07690", + "codeCommune": "07160", + "libelleAcheminement": "MONESTIER", + "nomCommune": "MONESTIER" }, { - "codePostal": "77450", - "codeCommune": "77474", - "libelleAcheminement": "TRILBARDOU", - "nomCommune": "TRILBARDOU" + "codePostal": "08090", + "codeCommune": "08160", + "libelleAcheminement": "EVIGNY", + "nomCommune": "EVIGNY" }, { - "codePostal": "77440", - "codeCommune": "77476", - "libelleAcheminement": "TROCY EN MULTIEN", - "nomCommune": "TROCY EN MULTIEN" + "codePostal": "07340", + "codeCommune": "07172", + "libelleAcheminement": "PEAUGRES", + "nomCommune": "PEAUGRES" }, { - "codePostal": "77130", - "codeCommune": "77482", - "libelleAcheminement": "VARENNES SUR SEINE", - "nomCommune": "VARENNES SUR SEINE" + "codePostal": "08170", + "codeCommune": "08166", + "libelleAcheminement": "FEPIN", + "nomCommune": "FEPIN" }, { - "codePostal": "77000", - "codeCommune": "77487", - "libelleAcheminement": "VAUX LE PENIL", - "nomCommune": "VAUX LE PENIL" + "codePostal": "07300", + "codeCommune": "07177", + "libelleAcheminement": "PLATS", + "nomCommune": "PLATS" }, { - "codePostal": "77510", - "codeCommune": "77492", - "libelleAcheminement": "VERDELOT", - "nomCommune": "VERDELOT" + "codePostal": "08260", + "codeCommune": "08169", + "libelleAcheminement": "FLAIGNES HAVYS", + "nomCommune": "FLAIGNES HAVYS" }, { - "codePostal": "77670", - "codeCommune": "77494", - "libelleAcheminement": "VERNOU LA CELLE SUR SEINE", - "nomCommune": "VERNOU LA CELLE SUR SEINE" + "codePostal": "07000", + "codeCommune": "07179", + "libelleAcheminement": "POURCHERES", + "nomCommune": "POURCHERES" }, { - "codePostal": "78570", - "codeCommune": "78015", - "libelleAcheminement": "ANDRESY", - "nomCommune": "ANDRESY" + "codePostal": "08160", + "codeCommune": "08173", + "libelleAcheminement": "FLIZE", + "nomCommune": "FLIZE" }, { - "codePostal": "78570", - "codeCommune": "78015", - "libelleAcheminement": "ANDRESY", - "nomCommune": "ANDRESY" + "codePostal": "07120", + "codeCommune": "07183", + "libelleAcheminement": "PRADONS", + "nomCommune": "PRADONS" }, { - "codePostal": "78650", - "codeCommune": "78062", - "libelleAcheminement": "BEYNES", - "nomCommune": "BEYNES" + "codePostal": "08600", + "codeCommune": "08175", + "libelleAcheminement": "FOISCHES", + "nomCommune": "FOISCHES" }, { - "codePostal": "78650", - "codeCommune": "78062", - "libelleAcheminement": "BEYNES", - "nomCommune": "BEYNES" + "codePostal": "07290", + "codeCommune": "07188", + "libelleAcheminement": "QUINTENAS", + "nomCommune": "QUINTENAS" }, { - "codePostal": "78200", - "codeCommune": "78072", - "libelleAcheminement": "BOINVILLIERS", - "nomCommune": "BOINVILLIERS" + "codePostal": "08140", + "codeCommune": "08179", + "libelleAcheminement": "FRANCHEVAL", + "nomCommune": "FRANCHEVAL" }, { - "codePostal": "78270", - "codeCommune": "78089", - "libelleAcheminement": "BONNIERES SUR SEINE", - "nomCommune": "BONNIERES SUR SEINE" + "codePostal": "07320", + "codeCommune": "07192", + "libelleAcheminement": "ROCHEPAULE", + "nomCommune": "ROCHEPAULE" }, { - "codePostal": "78200", - "codeCommune": "78118", - "libelleAcheminement": "BUCHELAY", - "nomCommune": "BUCHELAY" + "codePostal": "08370", + "codeCommune": "08184", + "libelleAcheminement": "FROMY", + "nomCommune": "FROMY" }, { - "codePostal": "78130", - "codeCommune": "78140", - "libelleAcheminement": "CHAPET", - "nomCommune": "CHAPET" + "codePostal": "07210", + "codeCommune": "07194", + "libelleAcheminement": "ROCHESSAUVE", + "nomCommune": "ROCHESSAUVE" }, { - "codePostal": "78400", - "codeCommune": "78146", - "libelleAcheminement": "CHATOU", - "nomCommune": "CHATOU" + "codePostal": "08260", + "codeCommune": "08189", + "libelleAcheminement": "GIRONDELLE", + "nomCommune": "GIRONDELLE" }, { - "codePostal": "78450", - "codeCommune": "78152", - "libelleAcheminement": "CHAVENAY", - "nomCommune": "CHAVENAY" + "codePostal": "07100", + "codeCommune": "07197", + "libelleAcheminement": "ROIFFIEUX", + "nomCommune": "ROIFFIEUX" }, { - "codePostal": "78700", - "codeCommune": "78172", - "libelleAcheminement": "CONFLANS STE HONORINE", - "nomCommune": "CONFLANS STE HONORINE" + "codePostal": "08200", + "codeCommune": "08191", + "libelleAcheminement": "GIVONNE", + "nomCommune": "GIVONNE" }, { - "codePostal": "78550", - "codeCommune": "78194", - "libelleAcheminement": "DANNEMARIE", - "nomCommune": "DANNEMARIE" + "codePostal": "07800", + "codeCommune": "07198", + "libelleAcheminement": "ROMPON", + "nomCommune": "ROMPON" }, { - "codePostal": "78440", - "codeCommune": "78202", - "libelleAcheminement": "DROCOURT", - "nomCommune": "DROCOURT" + "codePostal": "08430", + "codeCommune": "08205", + "libelleAcheminement": "HAGNICOURT", + "nomCommune": "HAGNICOURT" }, { - "codePostal": "78920", - "codeCommune": "78206", - "libelleAcheminement": "ECQUEVILLY", - "nomCommune": "ECQUEVILLY" + "codePostal": "07320", + "codeCommune": "07204", + "libelleAcheminement": "ST AGREVE", + "nomCommune": "ST AGREVE" }, { - "codePostal": "78990", - "codeCommune": "78208", - "libelleAcheminement": "ELANCOURT", - "nomCommune": "ELANCOURT" + "codePostal": "08600", + "codeCommune": "08207", + "libelleAcheminement": "HAM SUR MEUSE", + "nomCommune": "HAM SUR MEUSE" }, { - "codePostal": "78910", - "codeCommune": "78236", - "libelleAcheminement": "FLEXANVILLE", - "nomCommune": "FLEXANVILLE" + "codePostal": "07790", + "codeCommune": "07205", + "libelleAcheminement": "ST ALBAN D AY", + "nomCommune": "ST ALBAN D AY" }, { - "codePostal": "78840", - "codeCommune": "78255", - "libelleAcheminement": "FRENEUSE", - "nomCommune": "FRENEUSE" + "codePostal": "08160", + "codeCommune": "08209", + "libelleAcheminement": "HANNOGNE ST MARTIN", + "nomCommune": "HANNOGNE ST MARTIN" }, { - "codePostal": "78270", - "codeCommune": "78276", - "libelleAcheminement": "GOMMECOURT", - "nomCommune": "GOMMECOURT" + "codePostal": "07160", + "codeCommune": "07209", + "libelleAcheminement": "ST ANDEOL DE FOURCHADES", + "nomCommune": "ST ANDEOL DE FOURCHADES" }, { - "codePostal": "78790", - "codeCommune": "78300", - "libelleAcheminement": "HARGEVILLE", - "nomCommune": "HARGEVILLE" + "codePostal": "08300", + "codeCommune": "08234", + "libelleAcheminement": "INAUMONT", + "nomCommune": "INAUMONT" }, { - "codePostal": "78580", - "codeCommune": "78305", - "libelleAcheminement": "HERBEVILLE", - "nomCommune": "HERBEVILLE" + "codePostal": "07590", + "codeCommune": "07232", + "libelleAcheminement": "ST ETIENNE DE LUGDARES", + "nomCommune": "ST ETIENNE DE LUGDARES" }, { - "codePostal": "78800", - "codeCommune": "78311", - "libelleAcheminement": "HOUILLES", - "nomCommune": "HOUILLES" + "codePostal": "08440", + "codeCommune": "08235", + "libelleAcheminement": "ISSANCOURT ET RUMEL", + "nomCommune": "ISSANCOURT ET RUMEL" }, { - "codePostal": "78440", - "codeCommune": "78314", - "libelleAcheminement": "ISSOU", - "nomCommune": "ISSOU" + "codePostal": "07170", + "codeCommune": "07241", + "libelleAcheminement": "ST GERMAIN", + "nomCommune": "ST GERMAIN" }, { - "codePostal": "78270", - "codeCommune": "78320", - "libelleAcheminement": "NOTRE DAME DE LA MER", - "nomCommune": "NOTRE DAME DE LA MER" + "codePostal": "08800", + "codeCommune": "08242", + "libelleAcheminement": "LAIFOUR", + "nomCommune": "LAIFOUR" }, { - "codePostal": "78350", - "codeCommune": "78322", - "libelleAcheminement": "JOUY EN JOSAS", - "nomCommune": "JOUY EN JOSAS" + "codePostal": "07000", + "codeCommune": "07255", + "libelleAcheminement": "ST JULIEN EN ST ALBAN", + "nomCommune": "ST JULIEN EN ST ALBAN" }, { - "codePostal": "78520", - "codeCommune": "78335", - "libelleAcheminement": "LIMAY", - "nomCommune": "LIMAY" + "codePostal": "08430", + "codeCommune": "08248", + "libelleAcheminement": "LAUNOIS SUR VENCE", + "nomCommune": "LAUNOIS SUR VENCE" }, { - "codePostal": "78350", - "codeCommune": "78343", - "libelleAcheminement": "LES LOGES EN JOSAS", - "nomCommune": "LES LOGES EN JOSAS" + "codePostal": "07240", + "codeCommune": "07257", + "libelleAcheminement": "ST JULIEN LE ROUX", + "nomCommune": "ST JULIEN LE ROUX" }, { - "codePostal": "78730", - "codeCommune": "78349", - "libelleAcheminement": "LONGVILLIERS", - "nomCommune": "LONGVILLIERS" + "codePostal": "08150", + "codeCommune": "08249", + "libelleAcheminement": "LAVAL MORENCY", + "nomCommune": "LAVAL MORENCY" }, { - "codePostal": "78200", - "codeCommune": "78361", - "libelleAcheminement": "MANTES LA JOLIE", - "nomCommune": "MANTES LA JOLIE" + "codePostal": "07210", + "codeCommune": "07260", + "libelleAcheminement": "ST LAGER BRESSAC", + "nomCommune": "ST LAGER BRESSAC" }, { - "codePostal": "78124", - "codeCommune": "78368", - "libelleAcheminement": "MAREIL SUR MAULDRE", - "nomCommune": "MAREIL SUR MAULDRE" + "codePostal": "08440", + "codeCommune": "08263", + "libelleAcheminement": "LUMES", + "nomCommune": "LUMES" }, { - "codePostal": "78550", - "codeCommune": "78381", - "libelleAcheminement": "MAULETTE", - "nomCommune": "MAULETTE" + "codePostal": "07800", + "codeCommune": "07261", + "libelleAcheminement": "ST LAURENT DU PAPE", + "nomCommune": "ST LAURENT DU PAPE" }, { - "codePostal": "78200", - "codeCommune": "78385", - "libelleAcheminement": "MENERVILLE", - "nomCommune": "MENERVILLE" + "codePostal": "08310", + "codeCommune": "08264", + "libelleAcheminement": "MACHAULT", + "nomCommune": "MACHAULT" }, { - "codePostal": "78270", - "codeCommune": "78391", - "libelleAcheminement": "MERICOURT", - "nomCommune": "MERICOURT" + "codePostal": "07170", + "codeCommune": "07263", + "libelleAcheminement": "ST LAURENT SOUS COIRON", + "nomCommune": "ST LAURENT SOUS COIRON" }, { - "codePostal": "78600", - "codeCommune": "78396", - "libelleAcheminement": "LE MESNIL LE ROI", - "nomCommune": "LE MESNIL LE ROI" + "codePostal": "08400", + "codeCommune": "08271", + "libelleAcheminement": "MANRE", + "nomCommune": "MANRE" }, { - "codePostal": "78440", - "codeCommune": "78416", - "libelleAcheminement": "MONTALET LE BOIS", - "nomCommune": "MONTALET LE BOIS" + "codePostal": "07700", + "codeCommune": "07264", + "libelleAcheminement": "ST MARCEL D ARDECHE", + "nomCommune": "ST MARCEL D ARDECHE" }, { - "codePostal": "78180", - "codeCommune": "78423", - "libelleAcheminement": "MONTIGNY LE BRETONNEUX", - "nomCommune": "MONTIGNY LE BRETONNEUX" + "codePostal": "08370", + "codeCommune": "08276", + "libelleAcheminement": "MARGUT", + "nomCommune": "MARGUT" }, { - "codePostal": "78410", - "codeCommune": "78451", - "libelleAcheminement": "NEZEL", - "nomCommune": "NEZEL" + "codePostal": "07400", + "codeCommune": "07270", + "libelleAcheminement": "ST MARTIN SUR LAVEZON", + "nomCommune": "ST MARTIN SUR LAVEZON" }, { - "codePostal": "78200", - "codeCommune": "78484", - "libelleAcheminement": "PERDREAUVILLE", - "nomCommune": "PERDREAUVILLE" + "codePostal": "08310", + "codeCommune": "08287", + "libelleAcheminement": "MENIL LEPINOIS", + "nomCommune": "MENIL LEPINOIS" }, { - "codePostal": "78660", - "codeCommune": "78506", - "libelleAcheminement": "PRUNAY EN YVELINES", - "nomCommune": "PRUNAY EN YVELINES" + "codePostal": "07170", + "codeCommune": "07273", + "libelleAcheminement": "ST MAURICE D IBIE", + "nomCommune": "ST MAURICE D IBIE" }, { - "codePostal": "78125", - "codeCommune": "78516", - "libelleAcheminement": "RAIZEUX", - "nomCommune": "RAIZEUX" + "codePostal": "08110", + "codeCommune": "08289", + "libelleAcheminement": "MESSINCOURT", + "nomCommune": "MESSINCOURT" }, { - "codePostal": "78440", - "codeCommune": "78536", - "libelleAcheminement": "SAILLY", - "nomCommune": "SAILLY" + "codePostal": "07260", + "codeCommune": "07275", + "libelleAcheminement": "ST MELANY", + "nomCommune": "ST MELANY" }, { - "codePostal": "78125", - "codeCommune": "78557", - "libelleAcheminement": "ST HILARION", - "nomCommune": "ST HILARION" + "codePostal": "08390", + "codeCommune": "08300", + "libelleAcheminement": "LE MONT DIEU", + "nomCommune": "LE MONT DIEU" }, { - "codePostal": "78470", - "codeCommune": "78561", - "libelleAcheminement": "ST LAMBERT DES BOIS", - "nomCommune": "ST LAMBERT" + "codePostal": "07270", + "codeCommune": "07290", + "libelleAcheminement": "ST PRIX", + "nomCommune": "ST PRIX" }, { - "codePostal": "78790", - "codeCommune": "78565", - "libelleAcheminement": "ST MARTIN DES CHAMPS", - "nomCommune": "ST MARTIN DES CHAMPS" + "codePostal": "08390", + "codeCommune": "08301", + "libelleAcheminement": "MONTGON", + "nomCommune": "MONTGON" }, { - "codePostal": "78470", - "codeCommune": "78575", - "libelleAcheminement": "ST REMY LES CHEVREUSE", - "nomCommune": "ST REMY LES CHEVREUSE" + "codePostal": "07700", + "codeCommune": "07291", + "libelleAcheminement": "ST REMEZE", + "nomCommune": "ST REMEZE" }, { - "codePostal": "78910", - "codeCommune": "78605", - "libelleAcheminement": "TACOIGNIERES", - "nomCommune": "TACOIGNIERES" + "codePostal": "08400", + "codeCommune": "08303", + "libelleAcheminement": "MONTHOIS", + "nomCommune": "MONTHOIS" }, { - "codePostal": "78770", - "codeCommune": "78616", - "libelleAcheminement": "THOIRY", - "nomCommune": "THOIRY" + "codePostal": "07200", + "codeCommune": "07296", + "libelleAcheminement": "ST SERNIN", + "nomCommune": "ST SERNIN" }, { - "codePostal": "78190", - "codeCommune": "78621", - "libelleAcheminement": "TRAPPES", - "nomCommune": "TRAPPES" + "codePostal": "08130", + "codeCommune": "08306", + "libelleAcheminement": "MONT LAURENT", + "nomCommune": "MONT LAURENT" }, { - "codePostal": "78490", - "codeCommune": "78623", - "libelleAcheminement": "LE TREMBLAY SUR MAULDRE", - "nomCommune": "LE TREMBLAY SUR MAULDRE" + "codePostal": "07210", + "codeCommune": "07298", + "libelleAcheminement": "ST SYMPHORIEN SOUS CHOMERAC", + "nomCommune": "ST SYMPHORIEN SOUS CHOMERAC" }, { - "codePostal": "78510", - "codeCommune": "78624", - "libelleAcheminement": "TRIEL SUR SEINE", - "nomCommune": "TRIEL SUR SEINE" + "codePostal": "08400", + "codeCommune": "08308", + "libelleAcheminement": "MONT ST MARTIN", + "nomCommune": "MONT ST MARTIN" }, { - "codePostal": "78510", - "codeCommune": "78624", - "libelleAcheminement": "TRIEL SUR SEINE", - "nomCommune": "TRIEL SUR SEINE" + "codePostal": "07150", + "codeCommune": "07304", + "libelleAcheminement": "SALAVAS", + "nomCommune": "SALAVAS" }, { - "codePostal": "78110", - "codeCommune": "78650", - "libelleAcheminement": "LE VESINET", - "nomCommune": "LE VESINET" + "codePostal": "08380", + "codeCommune": "08319", + "libelleAcheminement": "NEUVILLE LEZ BEAULIEU", + "nomCommune": "NEUVILLE LEZ BEAULIEU" }, { - "codePostal": "78960", - "codeCommune": "78688", - "libelleAcheminement": "VOISINS LE BRETONNEUX", - "nomCommune": "VOISINS LE BRETONNEUX" + "codePostal": "07140", + "codeCommune": "07305", + "libelleAcheminement": "LES SALELLES", + "nomCommune": "LES SALELLES" }, { - "codePostal": "79240", - "codeCommune": "79001", - "libelleAcheminement": "L ABSIE", - "nomCommune": "L ABSIE" + "codePostal": "08130", + "codeCommune": "08321", + "libelleAcheminement": "NEUVILLE DAY", + "nomCommune": "NEUVILLE DAY" }, { - "codePostal": "79230", - "codeCommune": "79003", - "libelleAcheminement": "AIFFRES", - "nomCommune": "AIFFRES" + "codePostal": "07300", + "codeCommune": "07324", + "libelleAcheminement": "TOURNON SUR RHONE", + "nomCommune": "TOURNON SUR RHONE" }, { - "codePostal": "79600", - "codeCommune": "79005", - "libelleAcheminement": "AIRVAULT", - "nomCommune": "AIRVAULT" + "codePostal": "08270", + "codeCommune": "08323", + "libelleAcheminement": "LA NEUVILLE LES WASIGNY", + "nomCommune": "LA NEUVILLE LES WASIGNY" }, { - "codePostal": "79600", - "codeCommune": "79005", - "libelleAcheminement": "AIRVAULT", - "nomCommune": "AIRVAULT" + "codePostal": "07110", + "codeCommune": "07343", + "libelleAcheminement": "VINEZAC", + "nomCommune": "VINEZAC" }, { - "codePostal": "79210", - "codeCommune": "79009", - "libelleAcheminement": "AMURE", - "nomCommune": "AMURE" + "codePostal": "08240", + "codeCommune": "08326", + "libelleAcheminement": "NOUART", + "nomCommune": "NOUART" }, { - "codePostal": "79150", - "codeCommune": "79013", - "libelleAcheminement": "ARGENTONNAY", - "nomCommune": "ARGENTONNAY" + "codePostal": "07690", + "codeCommune": "07347", + "libelleAcheminement": "VOCANCE", + "nomCommune": "VOCANCE" }, { - "codePostal": "79290", - "codeCommune": "79014", - "libelleAcheminement": "LORETZ D ARGENTON", - "nomCommune": "LORETZ D ARGENTON" + "codePostal": "08300", + "codeCommune": "08330", + "libelleAcheminement": "NOVY CHEVRIERES", + "nomCommune": "NOVY CHEVRIERES" }, { - "codePostal": "79110", - "codeCommune": "79018", - "libelleAcheminement": "AUBIGNE", - "nomCommune": "AUBIGNE" + "codePostal": "07800", + "codeCommune": "07349", + "libelleAcheminement": "LA VOULTE SUR RHONE", + "nomCommune": "LA VOULTE SUR RHONE" }, { - "codePostal": "79370", - "codeCommune": "79030", - "libelleAcheminement": "BEAUSSAIS VITRE", - "nomCommune": "BEAUSSAIS VITRE" + "codePostal": "08430", + "codeCommune": "08341", + "libelleAcheminement": "POIX TERRON", + "nomCommune": "POIX TERRON" }, { - "codePostal": "79160", - "codeCommune": "79032", - "libelleAcheminement": "BECELEUF", - "nomCommune": "BECELEUF" + "codePostal": "08500", + "codeCommune": "08011", + "libelleAcheminement": "ANCHAMPS", + "nomCommune": "ANCHAMPS" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "08290", + "codeCommune": "08344", + "libelleAcheminement": "PREZ", + "nomCommune": "PREZ" }, { - "codePostal": "79170", - "codeCommune": "79057", - "libelleAcheminement": "BRIOUX SUR BOUTONNE", - "nomCommune": "BRIOUX SUR BOUTONNE" + "codePostal": "08250", + "codeCommune": "08017", + "libelleAcheminement": "APREMONT", + "nomCommune": "APREMONT" }, { - "codePostal": "79190", - "codeCommune": "79060", - "libelleAcheminement": "CAUNAY", - "nomCommune": "CAUNAY" + "codePostal": "08400", + "codeCommune": "08350", + "libelleAcheminement": "QUATRE CHAMPS", + "nomCommune": "QUATRE CHAMPS" }, { - "codePostal": "79370", - "codeCommune": "79061", - "libelleAcheminement": "CELLES SUR BELLE", - "nomCommune": "CELLES SUR BELLE" + "codePostal": "08390", + "codeCommune": "08019", + "libelleAcheminement": "LES GRANDES ARMOISES", + "nomCommune": "LES GRANDES ARMOISES" }, { - "codePostal": "79150", - "codeCommune": "79063", - "libelleAcheminement": "VAL EN VIGNES", - "nomCommune": "VAL EN VIGNES" + "codePostal": "08430", + "codeCommune": "08352", + "libelleAcheminement": "RAILLICOURT", + "nomCommune": "RAILLICOURT" }, { - "codePostal": "79290", - "codeCommune": "79063", - "libelleAcheminement": "VAL EN VIGNES", - "nomCommune": "VAL EN VIGNES" + "codePostal": "08090", + "codeCommune": "08022", + "libelleAcheminement": "ARREUX", + "nomCommune": "ARREUX" }, { - "codePostal": "79110", - "codeCommune": "79064", - "libelleAcheminement": "FONTIVILLIE", - "nomCommune": "FONTIVILLIE" + "codePostal": "08220", + "codeCommune": "08360", + "libelleAcheminement": "RENNEVILLE", + "nomCommune": "RENNEVILLE" }, { - "codePostal": "79220", - "codeCommune": "79066", - "libelleAcheminement": "CHAMPDENIERS", - "nomCommune": "CHAMPDENIERS" + "codePostal": "08130", + "codeCommune": "08025", + "libelleAcheminement": "ATTIGNY", + "nomCommune": "ATTIGNY" }, { - "codePostal": "79190", - "codeCommune": "79074", - "libelleAcheminement": "LA CHAPELLE POUILLOUX", - "nomCommune": "LA CHAPELLE POUILLOUX" + "codePostal": "08500", + "codeCommune": "08363", + "libelleAcheminement": "REVIN", + "nomCommune": "REVIN" }, { - "codePostal": "79160", - "codeCommune": "79077", - "libelleAcheminement": "BEUGNON THIREUIL", - "nomCommune": "BEUGNON THIREUIL" + "codePostal": "08270", + "codeCommune": "08027", + "libelleAcheminement": "AUBONCOURT VAUZELLES", + "nomCommune": "AUBONCOURT VAUZELLES" }, { - "codePostal": "79110", - "codeCommune": "79083", - "libelleAcheminement": "CHEF BOUTONNE", - "nomCommune": "CHEF BOUTONNE" + "codePostal": "08220", + "codeCommune": "08366", + "libelleAcheminement": "ROCQUIGNY", + "nomCommune": "ROCQUIGNY" }, { - "codePostal": "79110", - "codeCommune": "79083", - "libelleAcheminement": "CHEF BOUTONNE", - "nomCommune": "CHEF BOUTONNE" + "codePostal": "08190", + "codeCommune": "08039", + "libelleAcheminement": "AVAUX", + "nomCommune": "AVAUX" }, { - "codePostal": "79110", - "codeCommune": "79083", - "libelleAcheminement": "CHEF BOUTONNE", - "nomCommune": "CHEF BOUTONNE" + "codePostal": "08230", + "codeCommune": "08367", + "libelleAcheminement": "ROCROI", + "nomCommune": "ROCROI" }, { - "codePostal": "79410", - "codeCommune": "79086", - "libelleAcheminement": "CHERVEUX", - "nomCommune": "CHERVEUX" + "codePostal": "08370", + "codeCommune": "08065", + "libelleAcheminement": "BIEVRES", + "nomCommune": "BIEVRES" }, { - "codePostal": "79120", - "codeCommune": "79087", - "libelleAcheminement": "CHEY", - "nomCommune": "CHEY" + "codePostal": "08190", + "codeCommune": "08368", + "libelleAcheminement": "ROIZY", + "nomCommune": "ROIZY" }, { - "codePostal": "79170", - "codeCommune": "79090", - "libelleAcheminement": "CHIZE", - "nomCommune": "CHIZE" + "codePostal": "08230", + "codeCommune": "08078", + "libelleAcheminement": "BOURG FIDELE", + "nomCommune": "BOURG FIDELE" }, { - "codePostal": "79350", - "codeCommune": "79094", - "libelleAcheminement": "CLESSE", - "nomCommune": "CLESSE" + "codePostal": "08290", + "codeCommune": "08373", + "libelleAcheminement": "RUMIGNY", + "nomCommune": "RUMIGNY" }, { - "codePostal": "79190", - "codeCommune": "79095", - "libelleAcheminement": "CLUSSAIS LA POMMERAIE", - "nomCommune": "CLUSSAIS LA POMMERAIE" + "codePostal": "08400", + "codeCommune": "08082", + "libelleAcheminement": "BRECY BRIERES", + "nomCommune": "BRECY BRIERES" }, { - "codePostal": "79140", - "codeCommune": "79096", - "libelleAcheminement": "COMBRAND", - "nomCommune": "COMBRAND" + "codePostal": "08310", + "codeCommune": "08379", + "libelleAcheminement": "ST ETIENNE A ARNES", + "nomCommune": "ST ETIENNE A ARNES" }, { - "codePostal": "79440", - "codeCommune": "79103", - "libelleAcheminement": "COURLAY", - "nomCommune": "COURLAY" + "codePostal": "08240", + "codeCommune": "08086", + "libelleAcheminement": "BRIQUENAY", + "nomCommune": "BRIQUENAY" }, { - "codePostal": "79270", - "codeCommune": "79112", - "libelleAcheminement": "EPANNES", - "nomCommune": "EPANNES" + "codePostal": "08360", + "codeCommune": "08380", + "libelleAcheminement": "ST FERGEUX", + "nomCommune": "ST FERGEUX" }, { - "codePostal": "79400", - "codeCommune": "79114", - "libelleAcheminement": "EXIREUIL", - "nomCommune": "EXIREUIL" + "codePostal": "08240", + "codeCommune": "08089", + "libelleAcheminement": "BUZANCY", + "nomCommune": "BUZANCY" }, { - "codePostal": "79800", - "codeCommune": "79115", - "libelleAcheminement": "EXOUDUN", - "nomCommune": "EXOUDUN" + "codePostal": "08250", + "codeCommune": "08383", + "libelleAcheminement": "ST JUVIN", + "nomCommune": "ST JUVIN" }, { - "codePostal": "79380", - "codeCommune": "79123", - "libelleAcheminement": "LA FORET SUR SEVRE", - "nomCommune": "LA FORET SUR SEVRE" + "codePostal": "08220", + "codeCommune": "08102", + "libelleAcheminement": "CHAPPES", + "nomCommune": "CHAPPES" }, { - "codePostal": "79360", - "codeCommune": "79127", - "libelleAcheminement": "LA FOYE MONJAULT", - "nomCommune": "LA FOYE MONJAULT" + "codePostal": "08160", + "codeCommune": "08388", + "libelleAcheminement": "ST MARCEAU", + "nomCommune": "ST MARCEAU" }, { - "codePostal": "79110", - "codeCommune": "79140", - "libelleAcheminement": "VALDELAUME", - "nomCommune": "VALDELAUME" + "codePostal": "08130", + "codeCommune": "08103", + "libelleAcheminement": "CHARBOGNE", + "nomCommune": "CHARBOGNE" }, { - "codePostal": "79600", - "codeCommune": "79141", - "libelleAcheminement": "IRAIS", - "nomCommune": "IRAIS" + "codePostal": "08400", + "codeCommune": "08390", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "79120", - "codeCommune": "79148", - "libelleAcheminement": "LEZAY", - "nomCommune": "LEZAY" + "codePostal": "08350", + "codeCommune": "08115", + "libelleAcheminement": "CHEMERY CHEHERY", + "nomCommune": "CHEMERY CHEHERY" }, { - "codePostal": "79190", - "codeCommune": "79152", - "libelleAcheminement": "LORIGNE", - "nomCommune": "LORIGNE" + "codePostal": "08400", + "codeCommune": "08392", + "libelleAcheminement": "ST MOREL", + "nomCommune": "ST MOREL" }, { - "codePostal": "79110", - "codeCommune": "79154", - "libelleAcheminement": "LOUBILLE", - "nomCommune": "LOUBILLE" + "codePostal": "08390", + "codeCommune": "08116", + "libelleAcheminement": "BAIRON ET SES ENVIRONS", + "nomCommune": "BAIRON ET SES ENVIRONS" }, { - "codePostal": "79600", - "codeCommune": "79156", - "libelleAcheminement": "LOUIN", - "nomCommune": "LOUIN" + "codePostal": "08370", + "codeCommune": "08399", + "libelleAcheminement": "SAPOGNE SUR MARCHE", + "nomCommune": "SAPOGNE SUR MARCHE" }, { - "codePostal": "79100", - "codeCommune": "79157", - "libelleAcheminement": "LOUZY", - "nomCommune": "LOUZY" + "codePostal": "08270", + "codeCommune": "08117", + "libelleAcheminement": "CHESNOIS AUBONCOURT", + "nomCommune": "CHESNOIS AUBONCOURT" }, { - "codePostal": "79330", - "codeCommune": "79159", - "libelleAcheminement": "LUCHE THOUARSAIS", - "nomCommune": "LUCHE THOUARSAIS" + "codePostal": "08130", + "codeCommune": "08401", + "libelleAcheminement": "SAULCES CHAMPENOISES", + "nomCommune": "SAULCES CHAMPENOISES" }, { - "codePostal": "79460", - "codeCommune": "79162", - "libelleAcheminement": "MAGNE", - "nomCommune": "MAGNE" + "codePostal": "08130", + "codeCommune": "08123", + "libelleAcheminement": "CHUFFILLY ROCHE", + "nomCommune": "CHUFFILLY ROCHE" }, { - "codePostal": "79500", - "codeCommune": "79164", - "libelleAcheminement": "MAISONNAY", - "nomCommune": "MAISONNAY" + "codePostal": "08390", + "codeCommune": "08405", + "libelleAcheminement": "SAUVILLE", + "nomCommune": "SAUVILLE" }, { - "codePostal": "79360", - "codeCommune": "79166", - "libelleAcheminement": "MARIGNY", - "nomCommune": "MARIGNY" + "codePostal": "08360", + "codeCommune": "08126", + "libelleAcheminement": "CONDE LES HERPY", + "nomCommune": "CONDE LES HERPY" }, { - "codePostal": "79210", - "codeCommune": "79170", - "libelleAcheminement": "MAUZE SUR LE MIGNON", - "nomCommune": "MAUZE SUR LE MIGNON" + "codePostal": "08130", + "codeCommune": "08411", + "libelleAcheminement": "SEMUY", + "nomCommune": "SEMUY" }, { - "codePostal": "79500", - "codeCommune": "79174", - "libelleAcheminement": "MELLE", - "nomCommune": "MELLE" + "codePostal": "08250", + "codeCommune": "08131", + "libelleAcheminement": "CORNAY", + "nomCommune": "CORNAY" }, { - "codePostal": "79320", - "codeCommune": "79179", - "libelleAcheminement": "MONCOUTANT SUR SEVRE", - "nomCommune": "MONCOUTANT SUR SEVRE" + "codePostal": "08220", + "codeCommune": "08413", + "libelleAcheminement": "SERAINCOURT", + "nomCommune": "SERAINCOURT" }, { - "codePostal": "79190", - "codeCommune": "79180", - "libelleAcheminement": "MONTALEMBERT", - "nomCommune": "MONTALEMBERT" + "codePostal": "08270", + "codeCommune": "08132", + "libelleAcheminement": "CORNY MACHEROMENIL", + "nomCommune": "CORNY MACHEROMENIL" }, { - "codePostal": "79140", - "codeCommune": "79183", - "libelleAcheminement": "MONTRAVERS", - "nomCommune": "MONTRAVERS" + "codePostal": "08300", + "codeCommune": "08416", + "libelleAcheminement": "SEUIL", + "nomCommune": "SEUIL" }, { - "codePostal": "79400", - "codeCommune": "79189", - "libelleAcheminement": "NANTEUIL", - "nomCommune": "NANTEUIL" + "codePostal": "08090", + "codeCommune": "08137", + "libelleAcheminement": "DAMOUZY", + "nomCommune": "DAMOUZY" }, { - "codePostal": "79000", - "codeCommune": "79191", - "libelleAcheminement": "NIORT", - "nomCommune": "NIORT" + "codePostal": "08460", + "codeCommune": "08419", + "libelleAcheminement": "SIGNY L ABBAYE", + "nomCommune": "SIGNY L ABBAYE" }, { - "codePostal": "79100", - "codeCommune": "79196", - "libelleAcheminement": "PLAINE ET VALLEES", - "nomCommune": "PLAINE ET VALLEES" + "codePostal": "08460", + "codeCommune": "08141", + "libelleAcheminement": "DOMMERY", + "nomCommune": "DOMMERY" }, { - "codePostal": "79170", - "codeCommune": "79204", - "libelleAcheminement": "PERIGNE", - "nomCommune": "PERIGNE" + "codePostal": "08460", + "codeCommune": "08419", + "libelleAcheminement": "SIGNY L ABBAYE", + "nomCommune": "SIGNY L ABBAYE" }, { - "codePostal": "79190", - "codeCommune": "79205", - "libelleAcheminement": "PERS", - "nomCommune": "PERS" + "codePostal": "08140", + "codeCommune": "08145", + "libelleAcheminement": "DOUZY", + "nomCommune": "DOUZY" }, { - "codePostal": "79160", - "codeCommune": "79223", - "libelleAcheminement": "PUIHARDY", - "nomCommune": "PUIHARDY" + "codePostal": "08240", + "codeCommune": "08424", + "libelleAcheminement": "SOMMAUTHE", + "nomCommune": "SOMMAUTHE" }, { - "codePostal": "79260", - "codeCommune": "79231", - "libelleAcheminement": "ROMANS", - "nomCommune": "ROMANS" + "codePostal": "08130", + "codeCommune": "08151", + "libelleAcheminement": "ECORDAL", + "nomCommune": "ECORDAL" }, { - "codePostal": "79100", - "codeCommune": "79259", - "libelleAcheminement": "ST JEAN DE THOUARS", - "nomCommune": "ST JEAN DE THOUARS" + "codePostal": "08390", + "codeCommune": "08430", + "libelleAcheminement": "STONNE", + "nomCommune": "STONNE" }, { - "codePostal": "79160", - "codeCommune": "79263", - "libelleAcheminement": "ST LAURS", - "nomCommune": "ST LAURS" + "codePostal": "08110", + "codeCommune": "08153", + "libelleAcheminement": "ESCOMBRES ET LE CHESNOIS", + "nomCommune": "ESCOMBRES ET LE CHESNOIS" }, { - "codePostal": "79290", - "codeCommune": "79277", - "libelleAcheminement": "ST MARTIN DE SANZAY", - "nomCommune": "ST MARTIN DE SANZAY" + "codePostal": "08130", + "codeCommune": "08433", + "libelleAcheminement": "SUZANNE", + "nomCommune": "SUZANNE" }, { - "codePostal": "79150", - "codeCommune": "79280", - "libelleAcheminement": "ST MAURICE ETUSSON", - "nomCommune": "ST MAURICE ETUSSON" + "codePostal": "08260", + "codeCommune": "08156", + "libelleAcheminement": "ETEIGNIERES", + "nomCommune": "ETEIGNIERES" }, { - "codePostal": "79410", - "codeCommune": "79281", - "libelleAcheminement": "ST MAXIRE", - "nomCommune": "ST MAXIRE" + "codePostal": "08240", + "codeCommune": "08437", + "libelleAcheminement": "TAILLY", + "nomCommune": "TAILLY" }, { - "codePostal": "79260", - "codeCommune": "79283", - "libelleAcheminement": "STE NEOMAYE", - "nomCommune": "STE NEOMAYE" + "codePostal": "08210", + "codeCommune": "08159", + "libelleAcheminement": "EUILLY ET LOMBUT", + "nomCommune": "EUILLY ET LOMBUT" }, { - "codePostal": "79500", - "codeCommune": "79295", - "libelleAcheminement": "ST ROMANS LES MELLE", - "nomCommune": "ST ROMANS LES MELLE" + "codePostal": "08150", + "codeCommune": "08460", + "libelleAcheminement": "TREMBLOIS LES ROCROI", + "nomCommune": "TREMBLOIS LES ROCROI" }, { - "codePostal": "79400", - "codeCommune": "79302", - "libelleAcheminement": "SAIVRES", - "nomCommune": "SAIVRES" + "codePostal": "08250", + "codeCommune": "08161", + "libelleAcheminement": "EXERMONT", + "nomCommune": "EXERMONT" }, { - "codePostal": "79200", - "codeCommune": "79306", - "libelleAcheminement": "SAURAIS", - "nomCommune": "SAURAIS" + "codePostal": "08400", + "codeCommune": "08461", + "libelleAcheminement": "VANDY", + "nomCommune": "VANDY" }, { - "codePostal": "79170", - "codeCommune": "79310", - "libelleAcheminement": "SECONDIGNE SUR BELLE", - "nomCommune": "SECONDIGNE SUR BELLE" + "codePostal": "08090", + "codeCommune": "08162", + "libelleAcheminement": "FAGNON", + "nomCommune": "FAGNON" }, { - "codePostal": "79220", - "codeCommune": "79320", - "libelleAcheminement": "SURIN", - "nomCommune": "SURIN" + "codePostal": "08250", + "codeCommune": "08464", + "libelleAcheminement": "VAUX LES MOURON", + "nomCommune": "VAUX LES MOURON" }, { - "codePostal": "79210", - "codeCommune": "79334", - "libelleAcheminement": "VAL DU MIGNON", - "nomCommune": "VAL DU MIGNON" + "codePostal": "08270", + "codeCommune": "08163", + "libelleAcheminement": "FAISSAULT", + "nomCommune": "FAISSAULT" }, { - "codePostal": "79270", - "codeCommune": "79335", - "libelleAcheminement": "VALLANS", - "nomCommune": "VALLANS" + "codePostal": "08210", + "codeCommune": "08466", + "libelleAcheminement": "VAUX LES MOUZON", + "nomCommune": "VAUX LES MOUZON" }, { - "codePostal": "80210", - "codeCommune": "80004", - "libelleAcheminement": "ACHEUX EN VIMEU", - "nomCommune": "ACHEUX EN VIMEU" + "codePostal": "08290", + "codeCommune": "08167", + "libelleAcheminement": "LA FEREE", + "nomCommune": "LA FEREE" }, { - "codePostal": "80150", - "codeCommune": "80006", - "libelleAcheminement": "AGENVILLERS", - "nomCommune": "AGENVILLERS" + "codePostal": "08270", + "codeCommune": "08467", + "libelleAcheminement": "VAUX MONTREUIL", + "nomCommune": "VAUX MONTREUIL" }, { - "codePostal": "80250", - "codeCommune": "80010", - "libelleAcheminement": "AILLY SUR NOYE", - "nomCommune": "AILLY SUR NOYE" + "codePostal": "08250", + "codeCommune": "08171", + "libelleAcheminement": "FLEVILLE", + "nomCommune": "FLEVILLE" }, { - "codePostal": "80470", - "codeCommune": "80011", - "libelleAcheminement": "AILLY SUR SOMME", - "nomCommune": "AILLY SUR SOMME" + "codePostal": "08150", + "codeCommune": "08468", + "libelleAcheminement": "VAUX VILLAINE", + "nomCommune": "VAUX VILLAINE" }, { - "codePostal": "80240", - "codeCommune": "80014", - "libelleAcheminement": "AIZECOURT LE BAS", - "nomCommune": "AIZECOURT LE BAS" + "codePostal": "08160", + "codeCommune": "08173", + "libelleAcheminement": "FLIZE", + "nomCommune": "FLIZE" }, { - "codePostal": "80700", - "codeCommune": "80023", - "libelleAcheminement": "ANDECHY", - "nomCommune": "ANDECHY" + "codePostal": "08190", + "codeCommune": "08473", + "libelleAcheminement": "VIEUX LES ASFELD", + "nomCommune": "VIEUX LES ASFELD" }, { - "codePostal": "80470", - "codeCommune": "80024", - "libelleAcheminement": "ARGOEUVES", - "nomCommune": "ARGOEUVES" + "codePostal": "08240", + "codeCommune": "08176", + "libelleAcheminement": "FOSSE", + "nomCommune": "FOSSE" }, { - "codePostal": "80700", - "codeCommune": "80027", - "libelleAcheminement": "ARMANCOURT", - "nomCommune": "ARMANCOURT" + "codePostal": "08210", + "codeCommune": "08477", + "libelleAcheminement": "VILLERS DEVANT MOUZON", + "nomCommune": "VILLERS DEVANT MOUZON" }, { - "codePostal": "80560", - "codeCommune": "80028", - "libelleAcheminement": "ARQUEVES", - "nomCommune": "ARQUEVES" + "codePostal": "08000", + "codeCommune": "08180", + "libelleAcheminement": "LA FRANCHEVILLE", + "nomCommune": "LA FRANCHEVILLE" }, { - "codePostal": "80120", - "codeCommune": "80030", - "libelleAcheminement": "ARRY", - "nomCommune": "ARRY" + "codePostal": "08370", + "codeCommune": "08485", + "libelleAcheminement": "VILLY", + "nomCommune": "VILLY" }, { - "codePostal": "80200", - "codeCommune": "80033", - "libelleAcheminement": "ASSEVILLERS", - "nomCommune": "ASSEVILLERS" + "codePostal": "08130", + "codeCommune": "08193", + "libelleAcheminement": "GIVRY", + "nomCommune": "GIVRY" }, { - "codePostal": "80200", - "codeCommune": "80034", - "libelleAcheminement": "ATHIES", - "nomCommune": "ATHIES" + "codePostal": "08320", + "codeCommune": "08487", + "libelleAcheminement": "VIREUX WALLERAND", + "nomCommune": "VIREUX WALLERAND" }, { - "codePostal": "80300", - "codeCommune": "80047", - "libelleAcheminement": "AVELUY", - "nomCommune": "AVELUY" + "codePostal": "08270", + "codeCommune": "08196", + "libelleAcheminement": "GRANDCHAMP", + "nomCommune": "GRANDCHAMP" }, { - "codePostal": "80140", - "codeCommune": "80048", - "libelleAcheminement": "AVESNES CHAUSSOY", - "nomCommune": "AVESNES CHAUSSOY" + "codePostal": "08270", + "codeCommune": "08496", + "libelleAcheminement": "WAGNON", + "nomCommune": "WAGNON" }, { - "codePostal": "80430", - "codeCommune": "80062", - "libelleAcheminement": "BEAUCAMPS LE VIEUX", - "nomCommune": "BEAUCAMPS LE VIEUX" + "codePostal": "08250", + "codeCommune": "08198", + "libelleAcheminement": "GRANDPRE", + "nomCommune": "GRANDPRE" }, { - "codePostal": "80770", - "codeCommune": "80063", - "libelleAcheminement": "BEAUCHAMPS", - "nomCommune": "BEAUCHAMPS" + "codePostal": "08090", + "codeCommune": "08498", + "libelleAcheminement": "WARNECOURT", + "nomCommune": "WARNECOURT" }, { - "codePostal": "80600", - "codeCommune": "80070", - "libelleAcheminement": "BEAUQUESNE", - "nomCommune": "BEAUQUESNE" + "codePostal": "08430", + "codeCommune": "08201", + "libelleAcheminement": "GRUYERES", + "nomCommune": "GRUYERES" }, { - "codePostal": "80630", - "codeCommune": "80071", - "libelleAcheminement": "BEAUVAL", - "nomCommune": "BEAUVAL" + "codePostal": "08270", + "codeCommune": "08499", + "libelleAcheminement": "WASIGNY", + "nomCommune": "WASIGNY" }, { - "codePostal": "80300", - "codeCommune": "80073", - "libelleAcheminement": "BECORDEL BECOURT", - "nomCommune": "BECORDEL BECOURT" + "codePostal": "08230", + "codeCommune": "08202", + "libelleAcheminement": "GUE D HOSSUS", + "nomCommune": "GUE D HOSSUS" }, { - "codePostal": "80200", - "codeCommune": "80080", - "libelleAcheminement": "BELLOY EN SANTERRE", - "nomCommune": "BELLOY EN SANTERRE" + "codePostal": "08430", + "codeCommune": "08503", + "libelleAcheminement": "YVERNAUMONT", + "nomCommune": "YVERNAUMONT" }, { - "codePostal": "80270", - "codeCommune": "80081", - "libelleAcheminement": "BELLOY ST LEONARD", - "nomCommune": "BELLOY ST LEONARD" + "codePostal": "08130", + "codeCommune": "08204", + "libelleAcheminement": "GUINCOURT", + "nomCommune": "GUINCOURT" }, { - "codePostal": "80370", - "codeCommune": "80085", - "libelleAcheminement": "BERNATRE", - "nomCommune": "BERNATRE" + "codePostal": "09200", + "codeCommune": "09008", + "libelleAcheminement": "ALOS", + "nomCommune": "ALOS" }, { - "codePostal": "80370", - "codeCommune": "80086", - "libelleAcheminement": "BERNAVILLE", - "nomCommune": "BERNAVILLE" + "codePostal": "08090", + "codeCommune": "08206", + "libelleAcheminement": "HAM LES MOINES", + "nomCommune": "HAM LES MOINES" }, { - "codePostal": "80260", - "codeCommune": "80092", - "libelleAcheminement": "BERTANGLES", - "nomCommune": "BERTANGLES" + "codePostal": "09400", + "codeCommune": "09015", + "libelleAcheminement": "ARIGNAC", + "nomCommune": "ARIGNAC" }, { - "codePostal": "80560", - "codeCommune": "80095", - "libelleAcheminement": "BERTRANCOURT", - "nomCommune": "BERTRANCOURT" + "codePostal": "08450", + "codeCommune": "08211", + "libelleAcheminement": "HARAUCOURT", + "nomCommune": "HARAUCOURT" }, { - "codePostal": "80700", - "codeCommune": "80101", - "libelleAcheminement": "BEUVRAIGNES", - "nomCommune": "BEUVRAIGNES" + "codePostal": "09460", + "codeCommune": "09020", + "libelleAcheminement": "ARTIGUES", + "nomCommune": "ARTIGUES" }, { - "codePostal": "80140", - "codeCommune": "80104", - "libelleAcheminement": "BIENCOURT", - "nomCommune": "BIENCOURT" + "codePostal": "08800", + "codeCommune": "08218", + "libelleAcheminement": "LES HAUTES RIVIERES", + "nomCommune": "LES HAUTES RIVIERES" }, { - "codePostal": "80200", - "codeCommune": "80115", - "libelleAcheminement": "BOUCHAVESNES BERGEN", - "nomCommune": "BOUCHAVESNES BERGEN" + "codePostal": "09140", + "codeCommune": "09029", + "libelleAcheminement": "AULUS LES BAINS", + "nomCommune": "AULUS LES BAINS" }, { - "codePostal": "80830", - "codeCommune": "80117", - "libelleAcheminement": "BOUCHON", - "nomCommune": "BOUCHON" + "codePostal": "08310", + "codeCommune": "08220", + "libelleAcheminement": "HAUVINE", + "nomCommune": "HAUVINE" }, { - "codePostal": "80500", - "codeCommune": "80121", - "libelleAcheminement": "BOUILLANCOURT LA BATAILLE", - "nomCommune": "BOUILLANCOURT LA BATAILLE" + "codePostal": "09800", + "codeCommune": "09034", + "libelleAcheminement": "BALACET", + "nomCommune": "BALACET" }, { - "codePostal": "80600", - "codeCommune": "80122", - "libelleAcheminement": "BOUQUEMAISON", - "nomCommune": "BOUQUEMAISON" + "codePostal": "08430", + "codeCommune": "08228", + "libelleAcheminement": "LA HORGNE", + "nomCommune": "LA HORGNE" }, { - "codePostal": "80130", - "codeCommune": "80124", - "libelleAcheminement": "BOURSEVILLE", - "nomCommune": "BOURSEVILLE" + "codePostal": "09500", + "codeCommune": "09039", + "libelleAcheminement": "LA BASTIDE DE BOUSIGNAC", + "nomCommune": "LA BASTIDE DE BOUSIGNAC" }, { - "codePostal": "80400", - "codeCommune": "80139", - "libelleAcheminement": "BREUIL", - "nomCommune": "BREUIL" + "codePostal": "08240", + "codeCommune": "08233", + "libelleAcheminement": "IMECOURT", + "nomCommune": "IMECOURT" }, { - "codePostal": "80200", - "codeCommune": "80141", - "libelleAcheminement": "BRIE", - "nomCommune": "BRIE" + "codePostal": "09240", + "codeCommune": "09042", + "libelleAcheminement": "LA BASTIDE DE SEROU", + "nomCommune": "LA BASTIDE DE SEROU" }, { - "codePostal": "80200", - "codeCommune": "80154", - "libelleAcheminement": "BUSSU", - "nomCommune": "BUSSU" + "codePostal": "08460", + "codeCommune": "08243", + "libelleAcheminement": "LALOBBE", + "nomCommune": "LALOBBE" }, { - "codePostal": "80135", - "codeCommune": "80155", - "libelleAcheminement": "BUSSUS BUSSUEL", - "nomCommune": "BUSSUS BUSSUEL" + "codePostal": "09600", + "codeCommune": "09043", + "libelleAcheminement": "LA BASTIDE SUR L HERS", + "nomCommune": "LA BASTIDE SUR L HERS" }, { - "codePostal": "80290", - "codeCommune": "80157", - "libelleAcheminement": "BUSSY LES POIX", - "nomCommune": "BUSSY LES POIX" + "codePostal": "08400", + "codeCommune": "08256", + "libelleAcheminement": "LIRY", + "nomCommune": "LIRY" }, { - "codePostal": "80400", - "codeCommune": "80158", - "libelleAcheminement": "BUVERCHY", - "nomCommune": "BUVERCHY" + "codePostal": "09600", + "codeCommune": "09048", + "libelleAcheminement": "BELLOC", + "nomCommune": "BELLOC" }, { - "codePostal": "80800", - "codeCommune": "80159", - "libelleAcheminement": "CACHY", - "nomCommune": "CACHY" + "codePostal": "08150", + "codeCommune": "08257", + "libelleAcheminement": "LOGNY BOGNY", + "nomCommune": "LOGNY BOGNY" }, { - "codePostal": "80132", - "codeCommune": "80161", - "libelleAcheminement": "CAHON GOUY", - "nomCommune": "CAHON" + "codePostal": "09300", + "codeCommune": "09051", + "libelleAcheminement": "BENAIX", + "nomCommune": "BENAIX" }, { - "codePostal": "80540", - "codeCommune": "80165", - "libelleAcheminement": "CAMPS EN AMIENOIS", - "nomCommune": "CAMPS EN AMIENOIS" + "codePostal": "08390", + "codeCommune": "08278", + "libelleAcheminement": "MARQUIGNY", + "nomCommune": "MARQUIGNY" }, { - "codePostal": "80150", - "codeCommune": "80167", - "libelleAcheminement": "CANCHY", - "nomCommune": "CANCHY" + "codePostal": "09800", + "codeCommune": "09055", + "libelleAcheminement": "BETHMALE", + "nomCommune": "BETHMALE" }, { - "codePostal": "80750", - "codeCommune": "80168", - "libelleAcheminement": "CANDAS", - "nomCommune": "CANDAS" + "codePostal": "08430", + "codeCommune": "08283", + "libelleAcheminement": "MAZERNY", + "nomCommune": "MAZERNY" }, { - "codePostal": "80500", - "codeCommune": "80174", - "libelleAcheminement": "LE CARDONNOIS", - "nomCommune": "LE CARDONNOIS" + "codePostal": "09800", + "codeCommune": "09062", + "libelleAcheminement": "BORDES UCHENTEIN", + "nomCommune": "BORDES UCHENTEIN" }, { - "codePostal": "80200", - "codeCommune": "80177", - "libelleAcheminement": "CARTIGNY", - "nomCommune": "CARTIGNY" + "codePostal": "08430", + "codeCommune": "08305", + "libelleAcheminement": "MONTIGNY SUR VENCE", + "nomCommune": "MONTIGNY SUR VENCE" }, { - "codePostal": "80800", - "codeCommune": "80181", - "libelleAcheminement": "CAYEUX EN SANTERRE", - "nomCommune": "CAYEUX EN SANTERRE" + "codePostal": "09700", + "codeCommune": "09067", + "libelleAcheminement": "BRIE", + "nomCommune": "BRIE" }, { - "codePostal": "80140", - "codeCommune": "80183", - "libelleAcheminement": "CERISY BULEUX", - "nomCommune": "CERISY BULEUX" + "codePostal": "08210", + "codeCommune": "08311", + "libelleAcheminement": "MOUZON", + "nomCommune": "MOUZON" }, { - "codePostal": "80800", - "codeCommune": "80192", - "libelleAcheminement": "CHIPILLY", - "nomCommune": "CHIPILLY" + "codePostal": "09290", + "codeCommune": "09073", + "libelleAcheminement": "CAMARADE", + "nomCommune": "CAMARADE" }, { - "codePostal": "80200", - "codeCommune": "80199", - "libelleAcheminement": "CLERY SUR SOMME", - "nomCommune": "CLERY SUR SOMME" + "codePostal": "08090", + "codeCommune": "08322", + "libelleAcheminement": "NEUVILLE LES THIS", + "nomCommune": "NEUVILLE LES THIS" }, { - "codePostal": "80260", - "codeCommune": "80202", - "libelleAcheminement": "COISY", - "nomCommune": "COISY" + "codePostal": "09500", + "codeCommune": "09074", + "libelleAcheminement": "CAMON", + "nomCommune": "CAMON" }, { - "codePostal": "80480", - "codeCommune": "80225", - "libelleAcheminement": "CREUSE", - "nomCommune": "CREUSE" + "codePostal": "08430", + "codeCommune": "08324", + "libelleAcheminement": "NEUVIZY", + "nomCommune": "NEUVIZY" }, { - "codePostal": "80310", - "codeCommune": "80229", - "libelleAcheminement": "CROUY ST PIERRE", - "nomCommune": "CROUY ST PIERRE" + "codePostal": "09460", + "codeCommune": "09078", + "libelleAcheminement": "CARCANIERES", + "nomCommune": "CARCANIERES" }, { - "codePostal": "80310", - "codeCommune": "80229", - "libelleAcheminement": "CROUY ST PIERRE", - "nomCommune": "CROUY ST PIERRE" + "codePostal": "08400", + "codeCommune": "08325", + "libelleAcheminement": "NOIRVAL", + "nomCommune": "NOIRVAL" }, { - "codePostal": "80570", - "codeCommune": "80235", - "libelleAcheminement": "DARGNIES", - "nomCommune": "DARGNIES" + "codePostal": "09500", + "codeCommune": "09089", + "libelleAcheminement": "CAZALS DES BAYLES", + "nomCommune": "CAZALS DES BAYLES" }, { - "codePostal": "80620", - "codeCommune": "80241", - "libelleAcheminement": "DOMART EN PONTHIEU", - "nomCommune": "DOMART EN PONTHIEU" + "codePostal": "08160", + "codeCommune": "08327", + "libelleAcheminement": "NOUVION SUR MEUSE", + "nomCommune": "NOUVION SUR MEUSE" }, { - "codePostal": "80150", - "codeCommune": "80248", - "libelleAcheminement": "DOMPIERRE SUR AUTHIE", - "nomCommune": "DOMPIERRE SUR AUTHIE" + "codePostal": "09230", + "codeCommune": "09094", + "libelleAcheminement": "CERIZOLS", + "nomCommune": "CERIZOLS" }, { - "codePostal": "80132", - "codeCommune": "80260", - "libelleAcheminement": "DRUCAT", - "nomCommune": "DRUCAT" + "codePostal": "08450", + "codeCommune": "08334", + "libelleAcheminement": "OMICOURT", + "nomCommune": "OMICOURT" }, { - "codePostal": "80290", - "codeCommune": "80276", - "libelleAcheminement": "EQUENNES ERAMECOURT", - "nomCommune": "EQUENNES ERAMECOURT" + "codePostal": "09310", + "codeCommune": "09096", + "libelleAcheminement": "CHATEAU VERDUN", + "nomCommune": "CHATEAU VERDUN" }, { - "codePostal": "80290", - "codeCommune": "80276", - "libelleAcheminement": "EQUENNES ERAMECOURT", - "nomCommune": "EQUENNES ERAMECOURT" + "codePostal": "08430", + "codeCommune": "08335", + "libelleAcheminement": "OMONT", + "nomCommune": "OMONT" }, { - "codePostal": "80500", - "codeCommune": "80278", - "libelleAcheminement": "ERCHES", - "nomCommune": "ERCHES" + "codePostal": "09240", + "codeCommune": "09108", + "libelleAcheminement": "DURBAN SUR ARIZE", + "nomCommune": "DURBAN SUR ARIZE" }, { - "codePostal": "80400", - "codeCommune": "80279", - "libelleAcheminement": "ERCHEU", - "nomCommune": "ERCHEU" + "codePostal": "08300", + "codeCommune": "08339", + "libelleAcheminement": "PERTHES", + "nomCommune": "PERTHES" }, { - "codePostal": "80160", - "codeCommune": "80285", - "libelleAcheminement": "ESSERTAUX", - "nomCommune": "ESSERTAUX" + "codePostal": "09140", + "codeCommune": "09113", + "libelleAcheminement": "ERCE", + "nomCommune": "ERCE" }, { - "codePostal": "80250", - "codeCommune": "80291", - "libelleAcheminement": "ESTREES SUR NOYE", - "nomCommune": "ESTREES SUR NOYE" + "codePostal": "08000", + "codeCommune": "08346", + "libelleAcheminement": "PRIX LES MEZIERES", + "nomCommune": "PRIX LES MEZIERES" }, { - "codePostal": "80200", - "codeCommune": "80294", - "libelleAcheminement": "ETERPIGNY", - "nomCommune": "ETERPIGNY" + "codePostal": "09230", + "codeCommune": "09120", + "libelleAcheminement": "FABAS", + "nomCommune": "FABAS" }, { - "codePostal": "80140", - "codeCommune": "80297", - "libelleAcheminement": "ETREJUST", - "nomCommune": "ETREJUST" + "codePostal": "08450", + "codeCommune": "08354", + "libelleAcheminement": "RAUCOURT ET FLABA", + "nomCommune": "RAUCOURT ET FLABA" }, { - "codePostal": "80160", - "codeCommune": "80315", - "libelleAcheminement": "FLERS SUR NOYE", - "nomCommune": "FLERS SUR NOYE" + "codePostal": "09000", + "codeCommune": "09121", + "libelleAcheminement": "FERRIERES SUR ARIEGE", + "nomCommune": "FERRIERES SUR ARIEGE" }, { - "codePostal": "80540", - "codeCommune": "80319", - "libelleAcheminement": "FLUY", - "nomCommune": "FLUY" + "codePostal": "08150", + "codeCommune": "08361", + "libelleAcheminement": "RENWEZ", + "nomCommune": "RENWEZ" }, { - "codePostal": "80250", - "codeCommune": "80321", - "libelleAcheminement": "FOLLEVILLE", - "nomCommune": "FOLLEVILLE" + "codePostal": "09400", + "codeCommune": "09136", + "libelleAcheminement": "GOURBIT", + "nomCommune": "GOURBIT" }, { - "codePostal": "80700", - "codeCommune": "80322", - "libelleAcheminement": "FONCHES FONCHETTE", - "nomCommune": "FONCHES FONCHETTE" + "codePostal": "08220", + "codeCommune": "08366", + "libelleAcheminement": "ROCQUIGNY", + "nomCommune": "ROCQUIGNY" }, { - "codePostal": "80500", - "codeCommune": "80326", - "libelleAcheminement": "FONTAINE SOUS MONTDIDIER", - "nomCommune": "FONTAINE SOUS MONTDIDIER" + "codePostal": "09110", + "codeCommune": "09140", + "libelleAcheminement": "IGNAUX", + "nomCommune": "IGNAUX" }, { - "codePostal": "80510", - "codeCommune": "80328", - "libelleAcheminement": "FONTAINE SUR SOMME", - "nomCommune": "FONTAINE SUR SOMME" + "codePostal": "08130", + "codeCommune": "08374", + "libelleAcheminement": "LA SABOTTERIE", + "nomCommune": "LA SABOTTERIE" }, { - "codePostal": "80140", - "codeCommune": "80336", - "libelleAcheminement": "FOUCAUCOURT HORS NESLE", - "nomCommune": "FOUCAUCOURT HORS NESLE" + "codePostal": "09160", + "codeCommune": "09148", + "libelleAcheminement": "LACAVE", + "nomCommune": "LACAVE" }, { - "codePostal": "80290", - "codeCommune": "80340", - "libelleAcheminement": "FOURCIGNY", - "nomCommune": "FOURCIGNY" + "codePostal": "08110", + "codeCommune": "08376", + "libelleAcheminement": "SAILLY", + "nomCommune": "SAILLY" }, { - "codePostal": "80620", - "codeCommune": "80346", - "libelleAcheminement": "FRANQUEVILLE", - "nomCommune": "FRANQUEVILLE" + "codePostal": "09500", + "codeCommune": "09153", + "libelleAcheminement": "LAPENNE", + "nomCommune": "LAPENNE" }, { - "codePostal": "80800", - "codeCommune": "80350", - "libelleAcheminement": "FRANVILLERS", - "nomCommune": "FRANVILLERS" + "codePostal": "08350", + "codeCommune": "08377", + "libelleAcheminement": "ST AIGNAN", + "nomCommune": "ST AIGNAN" }, { - "codePostal": "80320", - "codeCommune": "80353", - "libelleAcheminement": "FRESNES MAZANCOURT", - "nomCommune": "FRESNES MAZANCOURT" + "codePostal": "09100", + "codeCommune": "09177", + "libelleAcheminement": "MADIERE", + "nomCommune": "MADIERE" }, { - "codePostal": "80220", - "codeCommune": "80362", - "libelleAcheminement": "FRETTEMEULE", - "nomCommune": "FRETTEMEULE" + "codePostal": "08360", + "codeCommune": "08380", + "libelleAcheminement": "ST FERGEUX", + "nomCommune": "ST FERGEUX" }, { - "codePostal": "80130", - "codeCommune": "80368", - "libelleAcheminement": "FRIVILLE ESCARBOTIN", - "nomCommune": "FRIVILLE ESCARBOTIN" + "codePostal": "09120", + "codeCommune": "09179", + "libelleAcheminement": "MALLEON", + "nomCommune": "MALLEON" }, { - "codePostal": "80290", - "codeCommune": "80375", - "libelleAcheminement": "GAUVILLE", - "nomCommune": "GAUVILLE" + "codePostal": "08300", + "codeCommune": "08386", + "libelleAcheminement": "ST LOUP EN CHAMPAGNE", + "nomCommune": "ST LOUP EN CHAMPAGNE" }, { - "codePostal": "80700", - "codeCommune": "80383", - "libelleAcheminement": "GOYENCOURT", - "nomCommune": "GOYENCOURT" + "codePostal": "09110", + "codeCommune": "09189", + "libelleAcheminement": "MERENS LES VALS", + "nomCommune": "MERENS LES VALS" }, { - "codePostal": "80250", - "codeCommune": "80390", - "libelleAcheminement": "GRIVESNES", - "nomCommune": "GRIVESNES" + "codePostal": "08240", + "codeCommune": "08394", + "libelleAcheminement": "ST PIERREMONT", + "nomCommune": "ST PIERREMONT" }, { - "codePostal": "80150", - "codeCommune": "80396", - "libelleAcheminement": "GUESCHART", - "nomCommune": "GUESCHART" + "codePostal": "09460", + "codeCommune": "09193", + "libelleAcheminement": "MIJANES", + "nomCommune": "MIJANES" }, { - "codePostal": "80170", - "codeCommune": "80400", - "libelleAcheminement": "GUILLAUCOURT", - "nomCommune": "GUILLAUCOURT" + "codePostal": "08300", + "codeCommune": "08403", + "libelleAcheminement": "SAULT LES RETHEL", + "nomCommune": "SAULT LES RETHEL" }, { - "codePostal": "80250", - "codeCommune": "80407", - "libelleAcheminement": "HALLIVILLERS", - "nomCommune": "HALLIVILLERS" + "codePostal": "09240", + "codeCommune": "09203", + "libelleAcheminement": "MONTELS", + "nomCommune": "MONTELS" }, { - "codePostal": "80670", - "codeCommune": "80408", - "libelleAcheminement": "HALLOY LES PERNOIS", - "nomCommune": "HALLOY LES PERNOIS" + "codePostal": "08200", + "codeCommune": "08409", + "libelleAcheminement": "SEDAN", + "nomCommune": "SEDAN" }, { - "codePostal": "80400", - "codeCommune": "80410", - "libelleAcheminement": "HAM", - "nomCommune": "HAM" + "codePostal": "09160", + "codeCommune": "09208", + "libelleAcheminement": "MONTGAUCH", + "nomCommune": "MONTGAUCH" }, { - "codePostal": "80800", - "codeCommune": "80412", - "libelleAcheminement": "HAMELET", - "nomCommune": "HAMELET" + "codePostal": "08270", + "codeCommune": "08415", + "libelleAcheminement": "SERY", + "nomCommune": "SERY" }, { - "codePostal": "80310", - "codeCommune": "80416", - "libelleAcheminement": "HANGEST SUR SOMME", - "nomCommune": "HANGEST SUR SOMME" + "codePostal": "09500", + "codeCommune": "09213", + "libelleAcheminement": "MOULIN NEUF", + "nomCommune": "MOULIN NEUF" }, { - "codePostal": "80260", - "codeCommune": "80431", - "libelleAcheminement": "HERISSART", - "nomCommune": "HERISSART" + "codePostal": "08380", + "codeCommune": "08420", + "libelleAcheminement": "SIGNY LE PETIT", + "nomCommune": "SIGNY LE PETIT" }, { - "codePostal": "80340", - "codeCommune": "80432", - "libelleAcheminement": "HERLEVILLE", - "nomCommune": "HERLEVILLE" + "codePostal": "09110", + "codeCommune": "09220", + "libelleAcheminement": "ORLU", + "nomCommune": "ORLU" }, { - "codePostal": "80240", - "codeCommune": "80434", - "libelleAcheminement": "HERVILLY", - "nomCommune": "HERVILLY" + "codePostal": "08370", + "codeCommune": "08421", + "libelleAcheminement": "SIGNY MONTLIBERT", + "nomCommune": "SIGNY MONTLIBERT" }, { - "codePostal": "80290", - "codeCommune": "80436", - "libelleAcheminement": "HESCAMPS", - "nomCommune": "HESCAMPS" + "codePostal": "09140", + "codeCommune": "09223", + "libelleAcheminement": "OUST", + "nomCommune": "OUST" }, { - "codePostal": "80290", - "codeCommune": "80436", - "libelleAcheminement": "HESCAMPS", - "nomCommune": "HESCAMPS" + "codePostal": "08230", + "codeCommune": "08436", + "libelleAcheminement": "TAILLETTE", + "nomCommune": "TAILLETTE" }, { - "codePostal": "80270", - "codeCommune": "80437", - "libelleAcheminement": "HEUCOURT CROQUOISON", - "nomCommune": "HEUCOURT CROQUOISON" + "codePostal": "09130", + "codeCommune": "09224", + "libelleAcheminement": "PAILHES", + "nomCommune": "PAILHES" }, { - "codePostal": "80640", - "codeCommune": "80443", - "libelleAcheminement": "HORNOY LE BOURG", - "nomCommune": "HORNOY LE BOURG" + "codePostal": "08360", + "codeCommune": "08438", + "libelleAcheminement": "TAIZY", + "nomCommune": "TAIZY" }, { - "codePostal": "80640", - "codeCommune": "80443", - "libelleAcheminement": "HORNOY LE BOURG", - "nomCommune": "HORNOY LE BOURG" + "codePostal": "09310", + "codeCommune": "09226", + "libelleAcheminement": "PECH", + "nomCommune": "PECH" }, { - "codePostal": "80600", - "codeCommune": "80445", - "libelleAcheminement": "HUMBERCOURT", - "nomCommune": "HUMBERCOURT" + "codePostal": "08380", + "codeCommune": "08440", + "libelleAcheminement": "TARZY", + "nomCommune": "TARZY" }, { - "codePostal": "80290", - "codeCommune": "80455", - "libelleAcheminement": "LA CHAPELLE SOUS POIX", - "nomCommune": "LACHAPELLE" + "codePostal": "09110", + "codeCommune": "09228", + "libelleAcheminement": "PERLES ET CASTELET", + "nomCommune": "PERLES ET CASTELET" }, { - "codePostal": "80430", - "codeCommune": "80456", - "libelleAcheminement": "LAFRESGUIMONT ST MARTIN", - "nomCommune": "LAFRESGUIMONT ST MARTIN" + "codePostal": "08110", + "codeCommune": "08444", + "libelleAcheminement": "TETAIGNE", + "nomCommune": "TETAIGNE" }, { - "codePostal": "80270", - "codeCommune": "80459", - "libelleAcheminement": "LALEU", - "nomCommune": "LALEU" + "codePostal": "09600", + "codeCommune": "09229", + "libelleAcheminement": "LE PEYRAT", + "nomCommune": "LE PEYRAT" }, { - "codePostal": "80190", - "codeCommune": "80465", - "libelleAcheminement": "LANGUEVOISIN QUIQUERY", - "nomCommune": "LANGUEVOISIN QUIQUERY" + "codePostal": "08240", + "codeCommune": "08446", + "libelleAcheminement": "THENORGUES", + "nomCommune": "THENORGUES" }, { - "codePostal": "80700", - "codeCommune": "80467", - "libelleAcheminement": "LAUCOURT", - "nomCommune": "LAUCOURT" + "codePostal": "09460", + "codeCommune": "09237", + "libelleAcheminement": "LE PUCH", + "nomCommune": "LE PUCH" }, { - "codePostal": "80250", - "codeCommune": "80469", - "libelleAcheminement": "LAWARDE MAUGER L HORTOY", - "nomCommune": "LAWARDE MAUGER L HORTOY" + "codePostal": "08800", + "codeCommune": "08448", + "libelleAcheminement": "THILAY", + "nomCommune": "THILAY" }, { - "codePostal": "80320", - "codeCommune": "80481", - "libelleAcheminement": "LIHONS", - "nomCommune": "LIHONS" + "codePostal": "09460", + "codeCommune": "09239", + "libelleAcheminement": "QUERIGUT", + "nomCommune": "QUERIGUT" }, { - "codePostal": "80240", - "codeCommune": "80487", - "libelleAcheminement": "LONGAVESNES", - "nomCommune": "LONGAVESNES" + "codePostal": "08090", + "codeCommune": "08450", + "libelleAcheminement": "THIS", + "nomCommune": "THIS" }, { - "codePostal": "80360", - "codeCommune": "80490", - "libelleAcheminement": "LONGUEVAL", - "nomCommune": "LONGUEVAL" + "codePostal": "09400", + "codeCommune": "09240", + "libelleAcheminement": "QUIE", + "nomCommune": "QUIE" }, { - "codePostal": "80370", - "codeCommune": "80503", - "libelleAcheminement": "MAIZICOURT", - "nomCommune": "MAIZICOURT" + "codePostal": "08300", + "codeCommune": "08452", + "libelleAcheminement": "THUGNY TRUGNY", + "nomCommune": "THUGNY TRUGNY" }, { - "codePostal": "80300", - "codeCommune": "80505", - "libelleAcheminement": "CARNOY MAMETZ", - "nomCommune": "CARNOY MAMETZ" + "codePostal": "09120", + "codeCommune": "09245", + "libelleAcheminement": "RIEUX DE PELLEPORT", + "nomCommune": "RIEUX DE PELLEPORT" }, { - "codePostal": "80300", - "codeCommune": "80505", - "libelleAcheminement": "CARNOY MAMETZ", - "nomCommune": "CARNOY MAMETZ" + "codePostal": "08090", + "codeCommune": "08457", + "libelleAcheminement": "TOURNES", + "nomCommune": "TOURNES" }, { - "codePostal": "80500", - "codeCommune": "80511", - "libelleAcheminement": "MARESTMONTIERS", - "nomCommune": "MARESTMONTIERS" + "codePostal": "09120", + "codeCommune": "09256", + "libelleAcheminement": "ST BAUZEIL", + "nomCommune": "ST BAUZEIL" }, { - "codePostal": "80370", - "codeCommune": "80526", - "libelleAcheminement": "LE MEILLARD", - "nomCommune": "LE MEILLARD" + "codePostal": "08130", + "codeCommune": "08458", + "libelleAcheminement": "TOURTERON", + "nomCommune": "TOURTERON" }, { - "codePostal": "80350", - "codeCommune": "80533", - "libelleAcheminement": "MERS LES BAINS", - "nomCommune": "MERS LES BAINS" + "codePostal": "09230", + "codeCommune": "09257", + "libelleAcheminement": "STE CROIX VOLVESTRE", + "nomCommune": "STE CROIX VOLVESTRE" }, { - "codePostal": "80310", - "codeCommune": "80535", - "libelleAcheminement": "LE MESGE", - "nomCommune": "LE MESGE" + "codePostal": "08110", + "codeCommune": "08459", + "libelleAcheminement": "TREMBLOIS LES CARIGNAN", + "nomCommune": "TREMBLOIS LES CARIGNAN" }, { - "codePostal": "80200", - "codeCommune": "80536", - "libelleAcheminement": "MESNIL BRUNTEL", - "nomCommune": "MESNIL BRUNTEL" + "codePostal": "09000", + "codeCommune": "09272", + "libelleAcheminement": "ST PAUL DE JARRAT", + "nomCommune": "ST PAUL DE JARRAT" }, { - "codePostal": "80360", - "codeCommune": "80538", - "libelleAcheminement": "MESNIL EN ARROUAISE", - "nomCommune": "MESNIL EN ARROUAISE" + "codePostal": "08240", + "codeCommune": "08470", + "libelleAcheminement": "VERPEL", + "nomCommune": "VERPEL" }, { - "codePostal": "80190", - "codeCommune": "80542", - "libelleAcheminement": "MESNIL ST NICAISE", - "nomCommune": "MESNIL ST NICAISE" + "codePostal": "09500", + "codeCommune": "09274", + "libelleAcheminement": "ST QUENTIN LA TOUR", + "nomCommune": "ST QUENTIN LA TOUR" }, { - "codePostal": "80200", - "codeCommune": "80555", - "libelleAcheminement": "MONCHY LAGACHE", - "nomCommune": "MONCHY LAGACHE" + "codePostal": "08270", + "codeCommune": "08472", + "libelleAcheminement": "VIEL ST REMY", + "nomCommune": "VIEL ST REMY" }, { - "codePostal": "80260", - "codeCommune": "80562", - "libelleAcheminement": "MONTIGNY SUR L HALLUE", - "nomCommune": "MONTIGNY SUR L HALLUE" + "codePostal": "09210", + "codeCommune": "09277", + "libelleAcheminement": "ST YBARS", + "nomCommune": "ST YBARS" }, { - "codePostal": "80370", - "codeCommune": "80563", - "libelleAcheminement": "MONTIGNY LES JONGLEURS", - "nomCommune": "MONTIGNY LES JONGLEURS" + "codePostal": "08190", + "codeCommune": "08476", + "libelleAcheminement": "VILLERS DEVANT LE THOUR", + "nomCommune": "VILLERS DEVANT LE THOUR" }, { - "codePostal": "80260", - "codeCommune": "80565", - "libelleAcheminement": "MONTONVILLERS", - "nomCommune": "MONTONVILLERS" + "codePostal": "09250", + "codeCommune": "09287", + "libelleAcheminement": "SENCONAC", + "nomCommune": "SENCONAC" }, { - "codePostal": "80190", - "codeCommune": "80568", - "libelleAcheminement": "MORCHAIN", - "nomCommune": "MORCHAIN" + "codePostal": "08440", + "codeCommune": "08483", + "libelleAcheminement": "VILLE SUR LUMES", + "nomCommune": "VILLE SUR LUMES" }, { - "codePostal": "80870", - "codeCommune": "80578", - "libelleAcheminement": "MOYENNEVILLE", - "nomCommune": "MOYENNEVILLE" + "codePostal": "09140", + "codeCommune": "09291", + "libelleAcheminement": "SENTENAC D OUST", + "nomCommune": "SENTENAC D OUST" }, { - "codePostal": "80290", - "codeCommune": "80582", - "libelleAcheminement": "NAMPS MAISNIL", - "nomCommune": "NAMPS MAISNIL" + "codePostal": "08440", + "codeCommune": "08488", + "libelleAcheminement": "VIVIER AU COURT", + "nomCommune": "VIVIER AU COURT" }, { - "codePostal": "80160", - "codeCommune": "80583", - "libelleAcheminement": "NAMPTY", - "nomCommune": "NAMPTY" + "codePostal": "09000", + "codeCommune": "09293", + "libelleAcheminement": "SERRES SUR ARGET", + "nomCommune": "SERRES SUR ARGET" }, { - "codePostal": "80430", - "codeCommune": "80592", - "libelleAcheminement": "NEUVILLE COPPEGUEULE", - "nomCommune": "NEUVILLE COPPEGUEULE" + "codePostal": "08400", + "codeCommune": "08490", + "libelleAcheminement": "VOUZIERS", + "nomCommune": "VOUZIERS" }, { - "codePostal": "80110", - "codeCommune": "80595", - "libelleAcheminement": "LA NEUVILLE SIRE BERNARD", - "nomCommune": "LA NEUVILLE SIRE BERNARD" + "codePostal": "09110", + "codeCommune": "09298", + "libelleAcheminement": "SORGEAT", + "nomCommune": "SORGEAT" }, { - "codePostal": "80390", - "codeCommune": "80597", - "libelleAcheminement": "NIBAS", - "nomCommune": "NIBAS" + "codePostal": "08400", + "codeCommune": "08490", + "libelleAcheminement": "VOUZIERS", + "nomCommune": "VOUZIERS" }, { - "codePostal": "80600", - "codeCommune": "80602", - "libelleAcheminement": "OCCOCHES", - "nomCommune": "OCCOCHES" + "codePostal": "09140", + "codeCommune": "09299", + "libelleAcheminement": "SOUEIX ROGALLE", + "nomCommune": "SOUEIX ROGALLE" }, { - "codePostal": "80400", - "codeCommune": "80605", - "libelleAcheminement": "OFFOY", - "nomCommune": "OFFOY" + "codePostal": "08330", + "codeCommune": "08491", + "libelleAcheminement": "VRIGNE AUX BOIS", + "nomCommune": "VRIGNE AUX BOIS" }, { - "codePostal": "80140", - "codeCommune": "80606", - "libelleAcheminement": "OISEMONT", - "nomCommune": "OISEMONT" + "codePostal": "09400", + "codeCommune": "09303", + "libelleAcheminement": "SURBA", + "nomCommune": "SURBA" }, { - "codePostal": "80320", - "codeCommune": "80621", - "libelleAcheminement": "HYPERCOURT", - "nomCommune": "HYPERCOURT" + "codePostal": "08270", + "codeCommune": "08500", + "libelleAcheminement": "WIGNICOURT", + "nomCommune": "WIGNICOURT" }, { - "codePostal": "80160", - "codeCommune": "80627", - "libelleAcheminement": "PLACHY BUYON", - "nomCommune": "PLACHY BUYON" + "codePostal": "09240", + "codeCommune": "09304", + "libelleAcheminement": "SUZAN", + "nomCommune": "SUZAN" }, { - "codePostal": "80370", - "codeCommune": "80642", - "libelleAcheminement": "PROUVILLE", - "nomCommune": "PROUVILLE" + "codePostal": "08210", + "codeCommune": "08502", + "libelleAcheminement": "YONCQ", + "nomCommune": "YONCQ" }, { - "codePostal": "80160", - "codeCommune": "80643", - "libelleAcheminement": "PROUZEL", - "nomCommune": "PROUZEL" + "codePostal": "09400", + "codeCommune": "09306", + "libelleAcheminement": "TARASCON SUR ARIEGE", + "nomCommune": "TARASCON SUR ARIEGE" }, { - "codePostal": "80120", - "codeCommune": "80649", - "libelleAcheminement": "QUEND", - "nomCommune": "QUEND" + "codePostal": "09320", + "codeCommune": "09005", + "libelleAcheminement": "ALEU", + "nomCommune": "ALEU" }, { - "codePostal": "80115", - "codeCommune": "80650", - "libelleAcheminement": "QUERRIEU", - "nomCommune": "QUERRIEU" + "codePostal": "09190", + "codeCommune": "09308", + "libelleAcheminement": "TAURIGNAN VIEUX", + "nomCommune": "TAURIGNAN VIEUX" }, { - "codePostal": "80270", - "codeCommune": "80655", - "libelleAcheminement": "QUESNOY SUR AIRAINES", - "nomCommune": "QUESNOY SUR AIRAINES" + "codePostal": "09240", + "codeCommune": "09007", + "libelleAcheminement": "ALLIERES", + "nomCommune": "ALLIERES" }, { - "codePostal": "80600", - "codeCommune": "80666", - "libelleAcheminement": "REMAISNIL", - "nomCommune": "REMAISNIL" + "codePostal": "09140", + "codeCommune": "09322", + "libelleAcheminement": "USTOU", + "nomCommune": "USTOU" }, { - "codePostal": "80540", - "codeCommune": "80670", - "libelleAcheminement": "REVELLES", - "nomCommune": "REVELLES" + "codePostal": "09130", + "codeCommune": "09019", + "libelleAcheminement": "ARTIGAT", + "nomCommune": "ARTIGAT" }, { - "codePostal": "80620", - "codeCommune": "80671", - "libelleAcheminement": "RIBEAUCOURT", - "nomCommune": "RIBEAUCOURT" + "codePostal": "09220", + "codeCommune": "09334", + "libelleAcheminement": "VAL DE SOS", + "nomCommune": "VAL DE SOS" }, { - "codePostal": "80136", - "codeCommune": "80674", - "libelleAcheminement": "RIVERY", - "nomCommune": "RIVERY" + "codePostal": "09800", + "codeCommune": "09026", + "libelleAcheminement": "AUDRESSEIN", + "nomCommune": "AUDRESSEIN" }, { - "codePostal": "80170", - "codeCommune": "80680", - "libelleAcheminement": "ROSIERES EN SANTERRE", - "nomCommune": "ROSIERES EN SANTERRE" + "codePostal": "09100", + "codeCommune": "09339", + "libelleAcheminement": "VILLENEUVE DU PAREAGE", + "nomCommune": "VILLENEUVE DU PAREAGE" }, { - "codePostal": "80370", - "codeCommune": "80697", - "libelleAcheminement": "ST ACHEUL", - "nomCommune": "ST ACHEUL" + "codePostal": "09350", + "codeCommune": "09038", + "libelleAcheminement": "LA BASTIDE DE BESPLAS", + "nomCommune": "LA BASTIDE DE BESPLAS" }, { - "codePostal": "80430", - "codeCommune": "80699", - "libelleAcheminement": "ST AUBIN RIVIERE", - "nomCommune": "ST AUBIN RIVIERE" + "codePostal": "09500", + "codeCommune": "09341", + "libelleAcheminement": "VIVIES", + "nomCommune": "VIVIES" }, { - "codePostal": "80560", - "codeCommune": "80705", - "libelleAcheminement": "ST LEGER LES AUTHIE", - "nomCommune": "ST LEGER LES AUTHIE" + "codePostal": "09160", + "codeCommune": "09041", + "libelleAcheminement": "LA BASTIDE DU SALAT", + "nomCommune": "LA BASTIDE DU SALAT" }, { - "codePostal": "80140", - "codeCommune": "80709", - "libelleAcheminement": "ST MAULVIS", - "nomCommune": "ST MAULVIS" + "codePostal": "10160", + "codeCommune": "10003", + "libelleAcheminement": "AIX VILLEMAUR PALIS", + "nomCommune": "AIX VILLEMAUR PALIS" }, { - "codePostal": "80540", - "codeCommune": "80723", - "libelleAcheminement": "SAISSEVAL", - "nomCommune": "SAISSEVAL" + "codePostal": "09230", + "codeCommune": "09046", + "libelleAcheminement": "BEDEILLE", + "nomCommune": "BEDEILLE" }, { - "codePostal": "80140", - "codeCommune": "80732", - "libelleAcheminement": "SENARPONT", - "nomCommune": "SENARPONT" + "codePostal": "10320", + "codeCommune": "10013", + "libelleAcheminement": "ASSENAY", + "nomCommune": "ASSENAY" }, { - "codePostal": "80540", - "codeCommune": "80735", - "libelleAcheminement": "SEUX", - "nomCommune": "SEUX" + "codePostal": "09300", + "codeCommune": "09047", + "libelleAcheminement": "BELESTA", + "nomCommune": "BELESTA" }, { - "codePostal": "80270", - "codeCommune": "80744", - "libelleAcheminement": "TAILLY L ARBRE A MOUCHES", - "nomCommune": "TAILLY" + "codePostal": "10150", + "codeCommune": "10015", + "libelleAcheminement": "AUBETERRE", + "nomCommune": "AUBETERRE" }, { - "codePostal": "80300", - "codeCommune": "80753", - "libelleAcheminement": "THIEPVAL", - "nomCommune": "THIEPVAL" + "codePostal": "09000", + "codeCommune": "09049", + "libelleAcheminement": "BENAC", + "nomCommune": "BENAC" }, { - "codePostal": "80160", - "codeCommune": "80757", - "libelleAcheminement": "THOIX", - "nomCommune": "THOIX" + "codePostal": "10220", + "codeCommune": "10019", + "libelleAcheminement": "VAL D AUZON", + "nomCommune": "VAL D AUZON" }, { - "codePostal": "80870", - "codeCommune": "80764", - "libelleAcheminement": "TOEUFLES", - "nomCommune": "TOEUFLES" + "codePostal": "09320", + "codeCommune": "09057", + "libelleAcheminement": "BIERT", + "nomCommune": "BIERT" }, { - "codePostal": "80560", - "codeCommune": "80773", - "libelleAcheminement": "VADENCOURT", - "nomCommune": "VADENCOURT" + "codePostal": "10240", + "codeCommune": "10021", + "libelleAcheminement": "AVANT LES RAMERUPT", + "nomCommune": "AVANT LES RAMERUPT" }, { - "codePostal": "80560", - "codeCommune": "80776", - "libelleAcheminement": "VARENNES", - "nomCommune": "VARENNES" + "codePostal": "09100", + "codeCommune": "09060", + "libelleAcheminement": "BONNAC", + "nomCommune": "BONNAC" }, { - "codePostal": "80620", - "codeCommune": "80778", - "libelleAcheminement": "VAUCHELLES LES DOMART", - "nomCommune": "VAUCHELLES LES DOMART" + "codePostal": "10340", + "codeCommune": "10022", + "libelleAcheminement": "AVIREY LINGEY", + "nomCommune": "AVIREY LINGEY" }, { - "codePostal": "80132", - "codeCommune": "80779", - "libelleAcheminement": "VAUCHELLES LES QUESNOY", - "nomCommune": "VAUCHELLES LES QUESNOY" + "codePostal": "09350", + "codeCommune": "09061", + "libelleAcheminement": "LES BORDES SUR ARIZE", + "nomCommune": "LES BORDES SUR ARIZE" }, { - "codePostal": "80140", - "codeCommune": "80796", - "libelleAcheminement": "VILLEROY", - "nomCommune": "VILLEROY" + "codePostal": "10110", + "codeCommune": "10034", + "libelleAcheminement": "BAR SUR SEINE", + "nomCommune": "BAR SUR SEINE" }, { - "codePostal": "80800", - "codeCommune": "80799", - "libelleAcheminement": "VILLERS BRETONNEUX", - "nomCommune": "VILLERS BRETONNEUX" + "codePostal": "09000", + "codeCommune": "09063", + "libelleAcheminement": "LE BOSC", + "nomCommune": "LE BOSC" }, { - "codePostal": "80150", - "codeCommune": "80808", - "libelleAcheminement": "VIRONCHAUX", - "nomCommune": "VIRONCHAUX" + "codePostal": "10310", + "codeCommune": "10035", + "libelleAcheminement": "BAYEL", + "nomCommune": "BAYEL" }, { - "codePostal": "80240", - "codeCommune": "80812", - "libelleAcheminement": "VRAIGNES EN VERMANDOIS", - "nomCommune": "VRAIGNES EN VERMANDOIS" + "codePostal": "09240", + "codeCommune": "09071", + "libelleAcheminement": "CADARCET", + "nomCommune": "CADARCET" }, { - "codePostal": "80640", - "codeCommune": "80813", - "libelleAcheminement": "VRAIGNES LES HORNOY", - "nomCommune": "VRAIGNES LES HORNOY" + "codePostal": "10160", + "codeCommune": "10042", + "libelleAcheminement": "BERULLE", + "nomCommune": "BERULLE" }, { - "codePostal": "80170", - "codeCommune": "80814", - "libelleAcheminement": "VRELY", - "nomCommune": "VRELY" + "codePostal": "09700", + "codeCommune": "09076", + "libelleAcheminement": "CANTE", + "nomCommune": "CANTE" }, { - "codePostal": "80670", - "codeCommune": "80819", - "libelleAcheminement": "WARGNIES", - "nomCommune": "WARGNIES" + "codePostal": "10500", + "codeCommune": "10044", + "libelleAcheminement": "BETIGNICOURT", + "nomCommune": "BETIGNICOURT" }, { - "codePostal": "80170", - "codeCommune": "80823", - "libelleAcheminement": "WARVILLERS", - "nomCommune": "WARVILLERS" + "codePostal": "09400", + "codeCommune": "09077", + "libelleAcheminement": "CAPOULET ET JUNAC", + "nomCommune": "CAPOULET ET JUNAC" }, { - "codePostal": "80520", - "codeCommune": "80827", - "libelleAcheminement": "WOINCOURT", - "nomCommune": "WOINCOURT" + "codePostal": "10140", + "codeCommune": "10045", + "libelleAcheminement": "BEUREY", + "nomCommune": "BEUREY" }, { - "codePostal": "80310", - "codeCommune": "80835", - "libelleAcheminement": "YZEUX", - "nomCommune": "YZEUX" + "codePostal": "09000", + "codeCommune": "09093", + "libelleAcheminement": "CELLES", + "nomCommune": "CELLES" }, { - "codePostal": "81470", - "codeCommune": "81001", - "libelleAcheminement": "AGUTS", - "nomCommune": "AGUTS" + "codePostal": "10500", + "codeCommune": "10046", + "libelleAcheminement": "BLAINCOURT SUR AUBE", + "nomCommune": "BLAINCOURT SUR AUBE" }, { - "codePostal": "81200", - "codeCommune": "81002", - "libelleAcheminement": "AIGUEFONDE", - "nomCommune": "AIGUEFONDE" + "codePostal": "09350", + "codeCommune": "09105", + "libelleAcheminement": "DAUMAZAN SUR ARIZE", + "nomCommune": "DAUMAZAN SUR ARIZE" }, { - "codePostal": "81140", - "codeCommune": "81007", - "libelleAcheminement": "ALOS", - "nomCommune": "ALOS" + "codePostal": "10500", + "codeCommune": "10047", + "libelleAcheminement": "BLIGNICOURT", + "nomCommune": "BLIGNICOURT" }, { - "codePostal": "81500", - "codeCommune": "81011", - "libelleAcheminement": "AMBRES", - "nomCommune": "AMBRES" + "codePostal": "09300", + "codeCommune": "09106", + "libelleAcheminement": "DREUILHE", + "nomCommune": "DREUILHE" }, { - "codePostal": "81260", - "codeCommune": "81014", - "libelleAcheminement": "ANGLES", - "nomCommune": "ANGLES" + "codePostal": "10320", + "codeCommune": "10051", + "libelleAcheminement": "BOUILLY", + "nomCommune": "BOUILLY" }, { - "codePostal": "81600", - "codeCommune": "81020", - "libelleAcheminement": "AUSSAC", - "nomCommune": "AUSSAC" + "codePostal": "09130", + "codeCommune": "09109", + "libelleAcheminement": "DURFORT", + "nomCommune": "DURFORT" }, { - "codePostal": "81500", - "codeCommune": "81022", - "libelleAcheminement": "BANNIERES", - "nomCommune": "BANNIERES" + "codePostal": "10220", + "codeCommune": "10056", + "libelleAcheminement": "BOUY LUXEMBOURG", + "nomCommune": "BOUY LUXEMBOURG" }, { - "codePostal": "81490", - "codeCommune": "81034", - "libelleAcheminement": "BOISSEZON", - "nomCommune": "BOISSEZON" + "codePostal": "09200", + "codeCommune": "09110", + "libelleAcheminement": "ENCOURTIECH", + "nomCommune": "ENCOURTIECH" }, { - "codePostal": "81170", - "codeCommune": "81035", - "libelleAcheminement": "BOURNAZEL", - "nomCommune": "BOURNAZEL" + "codePostal": "10500", + "codeCommune": "10059", + "libelleAcheminement": "BRAUX", + "nomCommune": "BRAUX" }, { - "codePostal": "81340", - "codeCommune": "81047", - "libelleAcheminement": "CADIX", - "nomCommune": "CADIX" + "codePostal": "09700", + "codeCommune": "09117", + "libelleAcheminement": "ESPLAS", + "nomCommune": "ESPLAS" }, { - "codePostal": "81140", - "codeCommune": "81051", - "libelleAcheminement": "CAHUZAC SUR VERE", - "nomCommune": "CAHUZAC SUR VERE" + "codePostal": "10140", + "codeCommune": "10062", + "libelleAcheminement": "BRIEL SUR BARSE", + "nomCommune": "BRIEL SUR BARSE" }, { - "codePostal": "81260", - "codeCommune": "81053", - "libelleAcheminement": "CAMBOUNES", - "nomCommune": "CAMBOUNES" + "codePostal": "09300", + "codeCommune": "09125", + "libelleAcheminement": "FOUGAX ET BARRINEUF", + "nomCommune": "FOUGAX ET BARRINEUF" }, { - "codePostal": "81540", - "codeCommune": "81055", - "libelleAcheminement": "LES CAMMAZES", - "nomCommune": "LES CAMMAZES" + "codePostal": "10500", + "codeCommune": "10064", + "libelleAcheminement": "BRIENNE LE CHATEAU", + "nomCommune": "BRIENNE LE CHATEAU" }, { - "codePostal": "81100", - "codeCommune": "81065", - "libelleAcheminement": "CASTRES", - "nomCommune": "CASTRES" + "codePostal": "09300", + "codeCommune": "09126", + "libelleAcheminement": "FREYCHENET", + "nomCommune": "FREYCHENET" }, { - "codePostal": "81150", - "codeCommune": "81067", - "libelleAcheminement": "CESTAYROLS", - "nomCommune": "CESTAYROLS" + "codePostal": "10110", + "codeCommune": "10068", + "libelleAcheminement": "BUXEUIL", + "nomCommune": "BUXEUIL" }, { - "codePostal": "81340", - "codeCommune": "81071", - "libelleAcheminement": "COURRIS", - "nomCommune": "COURRIS" + "codePostal": "09400", + "codeCommune": "09133", + "libelleAcheminement": "GENAT", + "nomCommune": "GENAT" }, { - "codePostal": "81990", - "codeCommune": "81074", - "libelleAcheminement": "CUNAC", - "nomCommune": "CUNAC" + "codePostal": "10110", + "codeCommune": "10069", + "libelleAcheminement": "BUXIERES SUR ARCE", + "nomCommune": "BUXIERES SUR ARCE" }, { - "codePostal": "81290", - "codeCommune": "81084", - "libelleAcheminement": "ESCOUSSENS", - "nomCommune": "ESCOUSSENS" + "codePostal": "09220", + "codeCommune": "09134", + "libelleAcheminement": "GESTIES", + "nomCommune": "GESTIES" }, { - "codePostal": "81260", - "codeCommune": "81086", - "libelleAcheminement": "ESPERAUSSES", - "nomCommune": "ESPERAUSSES" + "codePostal": "10700", + "codeCommune": "10077", + "libelleAcheminement": "CHAMPIGNY SUR AUBE", + "nomCommune": "CHAMPIGNY SUR AUBE" }, { - "codePostal": "81990", - "codeCommune": "81097", - "libelleAcheminement": "FREJAIROLLES", - "nomCommune": "FREJAIROLLES" + "codePostal": "09000", + "codeCommune": "09138", + "libelleAcheminement": "L HERM", + "nomCommune": "L HERM" }, { - "codePostal": "81170", - "codeCommune": "81108", - "libelleAcheminement": "ITZAC", - "nomCommune": "ITZAC" + "codePostal": "10700", + "codeCommune": "10082", + "libelleAcheminement": "CHAPELLE VALLON", + "nomCommune": "CHAPELLE VALLON" }, { - "codePostal": "81150", - "codeCommune": "81112", - "libelleAcheminement": "LABASTIDE DE LEVIS", - "nomCommune": "LABASTIDE DE LEVIS" + "codePostal": "09390", + "codeCommune": "09139", + "libelleAcheminement": "L HOSPITALET PRES L ANDORRE", + "nomCommune": "L HOSPITALET PRES L ANDORRE" }, { - "codePostal": "81400", - "codeCommune": "81114", - "libelleAcheminement": "LABASTIDE GABAUSSE", - "nomCommune": "LABASTIDE GABAUSSE" + "codePostal": "10260", + "codeCommune": "10083", + "libelleAcheminement": "CHAPPES", + "nomCommune": "CHAPPES" }, { - "codePostal": "81500", - "codeCommune": "81116", - "libelleAcheminement": "LABASTIDE ST GEORGES", - "nomCommune": "LABASTIDE ST GEORGES" + "codePostal": "09800", + "codeCommune": "09141", + "libelleAcheminement": "ILLARTEIN", + "nomCommune": "ILLARTEIN" }, { - "codePostal": "81470", - "codeCommune": "81127", - "libelleAcheminement": "LACROISILLE", - "nomCommune": "LACROISILLE" + "codePostal": "10200", + "codeCommune": "10102", + "libelleAcheminement": "COLOMBE LA FOSSE", + "nomCommune": "COLOMBE LA FOSSE" }, { - "codePostal": "81210", - "codeCommune": "81128", - "libelleAcheminement": "LACROUZETTE", - "nomCommune": "LACROUZETTE" + "codePostal": "09500", + "codeCommune": "09150", + "libelleAcheminement": "LAGARDE", + "nomCommune": "LAGARDE" }, { - "codePostal": "81170", - "codeCommune": "81146", - "libelleAcheminement": "LIVERS CAZELLES", - "nomCommune": "LIVERS CAZELLES" + "codePostal": "10260", + "codeCommune": "10109", + "libelleAcheminement": "COURTENOT", + "nomCommune": "COURTENOT" }, { - "codePostal": "81170", - "codeCommune": "81154", - "libelleAcheminement": "MARNAVES", - "nomCommune": "MARNAVES" + "codePostal": "09310", + "codeCommune": "09156", + "libelleAcheminement": "LARNAT", + "nomCommune": "LARNAT" }, { - "codePostal": "81640", - "codeCommune": "81170", - "libelleAcheminement": "MONESTIES", - "nomCommune": "MONESTIES" + "codePostal": "10200", + "codeCommune": "10113", + "libelleAcheminement": "COUVIGNON", + "nomCommune": "COUVIGNON" }, { - "codePostal": "81630", - "codeCommune": "81185", - "libelleAcheminement": "MONTVALEN", - "nomCommune": "MONTVALEN" + "codePostal": "09230", + "codeCommune": "09158", + "libelleAcheminement": "LASSERRE", + "nomCommune": "LASSERRE" }, { - "codePostal": "81190", - "codeCommune": "81186", - "libelleAcheminement": "MOULARES", - "nomCommune": "MOULARES" + "codePostal": "10150", + "codeCommune": "10115", + "libelleAcheminement": "CRENEY PRES TROYES", + "nomCommune": "CRENEY PRES TROYES" }, { - "codePostal": "81300", - "codeCommune": "81187", - "libelleAcheminement": "MOULAYRES", - "nomCommune": "MOULAYRES" + "codePostal": "09220", + "codeCommune": "09162", + "libelleAcheminement": "LERCOUL", + "nomCommune": "LERCOUL" }, { - "codePostal": "81470", - "codeCommune": "81189", - "libelleAcheminement": "MOUZENS", - "nomCommune": "MOUZENS" + "codePostal": "10500", + "codeCommune": "10117", + "libelleAcheminement": "CRESPY LE NEUF", + "nomCommune": "CRESPY LE NEUF" }, { - "codePostal": "81490", - "codeCommune": "81196", - "libelleAcheminement": "NOAILHAC", - "nomCommune": "NOAILHAC" + "codePostal": "09600", + "codeCommune": "09169", + "libelleAcheminement": "LIMBRASSAC", + "nomCommune": "LIMBRASSAC" }, { - "codePostal": "81170", - "codeCommune": "81197", - "libelleAcheminement": "NOAILLES", - "nomCommune": "NOAILLES" + "codePostal": "10190", + "codeCommune": "10124", + "libelleAcheminement": "DIERREY ST JULIEN", + "nomCommune": "DIERREY ST JULIEN" }, { - "codePostal": "81120", - "codeCommune": "81198", - "libelleAcheminement": "ORBAN", - "nomCommune": "ORBAN" + "codePostal": "09250", + "codeCommune": "09171", + "libelleAcheminement": "LORDAT", + "nomCommune": "LORDAT" }, { - "codePostal": "81250", - "codeCommune": "81203", - "libelleAcheminement": "PAULINET", - "nomCommune": "PAULINET" + "codePostal": "10240", + "codeCommune": "10127", + "libelleAcheminement": "DOMMARTIN LE COQ", + "nomCommune": "DOMMARTIN LE COQ" }, { - "codePostal": "81220", - "codeCommune": "81212", - "libelleAcheminement": "PRADES", - "nomCommune": "PRADES" + "codePostal": "09350", + "codeCommune": "09172", + "libelleAcheminement": "LOUBAUT", + "nomCommune": "LOUBAUT" }, { - "codePostal": "81470", - "codeCommune": "81214", - "libelleAcheminement": "PUECHOURSI", - "nomCommune": "PUECHOURSI" + "codePostal": "10220", + "codeCommune": "10129", + "libelleAcheminement": "DOSCHES", + "nomCommune": "DOSCHES" }, { - "codePostal": "81390", - "codeCommune": "81215", - "libelleAcheminement": "PUYBEGON", - "nomCommune": "PUYBEGON" + "codePostal": "09000", + "codeCommune": "09174", + "libelleAcheminement": "LOUBIERES", + "nomCommune": "LOUBIERES" }, { - "codePostal": "81990", - "codeCommune": "81218", - "libelleAcheminement": "PUYGOUZON", - "nomCommune": "PUYGOUZON" + "codePostal": "10360", + "codeCommune": "10141", + "libelleAcheminement": "ESSOYES", + "nomCommune": "ESSOYES" }, { - "codePostal": "81210", - "codeCommune": "81227", - "libelleAcheminement": "ROQUECOURBE", - "nomCommune": "ROQUECOURBE" + "codePostal": "09500", + "codeCommune": "09178", + "libelleAcheminement": "MALEGOUDE", + "nomCommune": "MALEGOUDE" }, { - "codePostal": "81500", - "codeCommune": "81236", - "libelleAcheminement": "ST AGNAN", - "nomCommune": "ST AGNAN" + "codePostal": "10320", + "codeCommune": "10147", + "libelleAcheminement": "FAYS LA CHAPELLE", + "nomCommune": "FAYS LA CHAPELLE" }, { - "codePostal": "81250", - "codeCommune": "81240", - "libelleAcheminement": "ST ANDRE", - "nomCommune": "ST ANDRE" + "codePostal": "09160", + "codeCommune": "09183", + "libelleAcheminement": "MAUVEZIN DE PRAT", + "nomCommune": "MAUVEZIN DE PRAT" }, { - "codePostal": "81390", - "codeCommune": "81248", - "libelleAcheminement": "ST GAUZENS", - "nomCommune": "ST GAUZENS" + "codePostal": "10400", + "codeCommune": "10148", + "libelleAcheminement": "FERREUX QUINCEY", + "nomCommune": "FERREUX QUINCEY" }, { - "codePostal": "81160", - "codeCommune": "81257", - "libelleAcheminement": "ST JUERY", - "nomCommune": "ST JUERY" + "codePostal": "09270", + "codeCommune": "09185", + "libelleAcheminement": "MAZERES", + "nomCommune": "MAZERES" }, { - "codePostal": "81340", - "codeCommune": "81264", - "libelleAcheminement": "ST MICHEL LABADIE", - "nomCommune": "ST MICHEL LABADIE" + "codePostal": "10200", + "codeCommune": "10150", + "libelleAcheminement": "FONTAINE", + "nomCommune": "FONTAINE" }, { - "codePostal": "81530", - "codeCommune": "81268", - "libelleAcheminement": "ST SALVI DE CARCAVES", - "nomCommune": "ST SALVI DE CARCAVES" + "codePostal": "09500", + "codeCommune": "09194", + "libelleAcheminement": "MIREPOIX", + "nomCommune": "MIREPOIX" }, { - "codePostal": "81630", - "codeCommune": "81272", - "libelleAcheminement": "ST URCISSE", - "nomCommune": "ST URCISSE" + "codePostal": "10100", + "codeCommune": "10157", + "libelleAcheminement": "LA FOSSE CORDUAN", + "nomCommune": "LA FOSSE CORDUAN" }, { - "codePostal": "81240", - "codeCommune": "81278", - "libelleAcheminement": "SAUVETERRE", - "nomCommune": "SAUVETERRE" + "codePostal": "09130", + "codeCommune": "09195", + "libelleAcheminement": "MONESPLE", + "nomCommune": "MONESPLE" }, { - "codePostal": "81640", - "codeCommune": "81280", - "libelleAcheminement": "LE SEGUR", - "nomCommune": "LE SEGUR" + "codePostal": "10260", + "codeCommune": "10158", + "libelleAcheminement": "FOUCHERES", + "nomCommune": "FOUCHERES" }, { - "codePostal": "81530", - "codeCommune": "81282", - "libelleAcheminement": "SENAUX", - "nomCommune": "SENAUX" - }, - { - "codePostal": "81990", - "codeCommune": "81284", - "libelleAcheminement": "LE SEQUESTRE", - "nomCommune": "LE SEQUESTRE" + "codePostal": "09200", + "codeCommune": "09204", + "libelleAcheminement": "MONTESQUIEU AVANTES", + "nomCommune": "MONTESQUIEU AVANTES" }, { - "codePostal": "81120", - "codeCommune": "81287", - "libelleAcheminement": "SIEURAC", - "nomCommune": "SIEURAC" + "codePostal": "10400", + "codeCommune": "10169", + "libelleAcheminement": "GUMERY", + "nomCommune": "GUMERY" }, { - "codePostal": "81130", - "codeCommune": "81291", - "libelleAcheminement": "TAIX", - "nomCommune": "TAIX" + "codePostal": "09330", + "codeCommune": "09207", + "libelleAcheminement": "MONTGAILHARD", + "nomCommune": "MONTGAILHARD" }, { - "codePostal": "81600", - "codeCommune": "81294", - "libelleAcheminement": "TECOU", - "nomCommune": "TECOU" + "codePostal": "10330", + "codeCommune": "10175", + "libelleAcheminement": "JASSEINES", + "nomCommune": "JASSEINES" }, { - "codePostal": "81090", - "codeCommune": "81307", - "libelleAcheminement": "VALDURENQUE", - "nomCommune": "VALDURENQUE" + "codePostal": "09200", + "codeCommune": "09209", + "libelleAcheminement": "MONTJOIE EN COUSERANS", + "nomCommune": "MONTJOIE EN COUSERANS" }, { - "codePostal": "81530", - "codeCommune": "81314", - "libelleAcheminement": "VIANE", - "nomCommune": "VIANE" + "codePostal": "10110", + "codeCommune": "10187", + "libelleAcheminement": "LANDREVILLE", + "nomCommune": "LANDREVILLE" }, { - "codePostal": "81130", - "codeCommune": "81319", - "libelleAcheminement": "VILLENEUVE SUR VERE", - "nomCommune": "VILLENEUVE SUR VERE" + "codePostal": "09320", + "codeCommune": "09231", + "libelleAcheminement": "LE PORT", + "nomCommune": "LE PORT" }, { - "codePostal": "81170", - "codeCommune": "81320", - "libelleAcheminement": "VINDRAC ALAYRAC", - "nomCommune": "VINDRAC ALAYRAC" + "codePostal": "10210", + "codeCommune": "10188", + "libelleAcheminement": "LANTAGES", + "nomCommune": "LANTAGES" }, { - "codePostal": "81220", - "codeCommune": "81323", - "libelleAcheminement": "VITERBE", - "nomCommune": "VITERBE" + "codePostal": "09110", + "codeCommune": "09232", + "libelleAcheminement": "PRADES", + "nomCommune": "PRADES" }, { - "codePostal": "82210", - "codeCommune": "82003", - "libelleAcheminement": "ANGEVILLE", - "nomCommune": "ANGEVILLE" + "codePostal": "10270", + "codeCommune": "10190", + "libelleAcheminement": "LAUBRESSEL", + "nomCommune": "LAUBRESSEL" }, { - "codePostal": "82500", - "codeCommune": "82006", - "libelleAcheminement": "AUTERIVE", - "nomCommune": "AUTERIVE" + "codePostal": "09500", + "codeCommune": "09259", + "libelleAcheminement": "ST FELIX DE TOURNEGAT", + "nomCommune": "ST FELIX DE TOURNEGAT" }, { - "codePostal": "82120", - "codeCommune": "82009", - "libelleAcheminement": "BALIGNAC", - "nomCommune": "BALIGNAC" + "codePostal": "10330", + "codeCommune": "10192", + "libelleAcheminement": "LENTILLES", + "nomCommune": "LENTILLES" }, { - "codePostal": "82290", - "codeCommune": "82011", - "libelleAcheminement": "BARRY D ISLEMADE", - "nomCommune": "BARRY D ISLEMADE" + "codePostal": "09800", + "codeCommune": "09263", + "libelleAcheminement": "ST JEAN DU CASTILLONNAIS", + "nomCommune": "ST JEAN DU CASTILLONNAIS" }, { - "codePostal": "82500", - "codeCommune": "82015", - "libelleAcheminement": "BELBEZE EN LOMAGNE", - "nomCommune": "BELBEZE EN LOMAGNE" + "codePostal": "10210", + "codeCommune": "10202", + "libelleAcheminement": "LES LOGES MARGUERON", + "nomCommune": "LES LOGES MARGUERON" }, { - "codePostal": "82200", - "codeCommune": "82019", - "libelleAcheminement": "BOUDOU", - "nomCommune": "BOUDOU" + "codePostal": "09100", + "codeCommune": "09265", + "libelleAcheminement": "ST JEAN DU FALGA", + "nomCommune": "ST JEAN DU FALGA" }, { - "codePostal": "82710", - "codeCommune": "82025", - "libelleAcheminement": "BRESSOLS", - "nomCommune": "BRESSOLS" + "codePostal": "10240", + "codeCommune": "10206", + "libelleAcheminement": "LONGSOLS", + "nomCommune": "LONGSOLS" }, { - "codePostal": "82800", - "codeCommune": "82026", - "libelleAcheminement": "BRUNIQUEL", - "nomCommune": "BRUNIQUEL" + "codePostal": "09800", + "codeCommune": "09267", + "libelleAcheminement": "ST LARY", + "nomCommune": "ST LARY" }, { - "codePostal": "82110", - "codeCommune": "82042", - "libelleAcheminement": "CAZES MONDENARD", - "nomCommune": "CAZES MONDENARD" + "codePostal": "10300", + "codeCommune": "10211", + "libelleAcheminement": "MACEY", + "nomCommune": "MACEY" }, { - "codePostal": "82600", - "codeCommune": "82043", - "libelleAcheminement": "COMBEROUGER", - "nomCommune": "COMBEROUGER" + "codePostal": "09190", + "codeCommune": "09268", + "libelleAcheminement": "ST LIZIER", + "nomCommune": "ST LIZIER" }, { - "codePostal": "82340", - "codeCommune": "82050", - "libelleAcheminement": "DUNES", - "nomCommune": "DUNES" + "codePostal": "10210", + "codeCommune": "10218", + "libelleAcheminement": "MAISONS LES CHAOURCE", + "nomCommune": "MAISONS LES CHAOURCE" }, { - "codePostal": "82500", - "codeCommune": "82053", - "libelleAcheminement": "ESCAZEAUX", - "nomCommune": "ESCAZEAUX" + "codePostal": "09120", + "codeCommune": "09284", + "libelleAcheminement": "SEGURA", + "nomCommune": "SEGURA" }, { - "codePostal": "82700", - "codeCommune": "82062", - "libelleAcheminement": "FINHAN", - "nomCommune": "FINHAN" + "codePostal": "10200", + "codeCommune": "10219", + "libelleAcheminement": "MAISONS LES SOULAINES", + "nomCommune": "MAISONS LES SOULAINES" }, { - "codePostal": "82500", - "codeCommune": "82064", - "libelleAcheminement": "GARIES", - "nomCommune": "GARIES" + "codePostal": "09240", + "codeCommune": "09292", + "libelleAcheminement": "SENTENAC DE SEROU", + "nomCommune": "SENTENAC DE SEROU" }, { - "codePostal": "82400", - "codeCommune": "82073", - "libelleAcheminement": "GOUDOURVILLE", - "nomCommune": "GOUDOURVILLE" + "codePostal": "10600", + "codeCommune": "10230", + "libelleAcheminement": "MERGEY", + "nomCommune": "MERGEY" }, { - "codePostal": "82220", - "codeCommune": "82077", - "libelleAcheminement": "LABARTHE", - "nomCommune": "LABARTHE" + "codePostal": "09800", + "codeCommune": "09297", + "libelleAcheminement": "SOR", + "nomCommune": "SOR" }, { - "codePostal": "82100", - "codeCommune": "82081", - "libelleAcheminement": "LABOURGADE", - "nomCommune": "LABOURGADE" + "codePostal": "10400", + "codeCommune": "10231", + "libelleAcheminement": "LE MERIOT", + "nomCommune": "LE MERIOT" }, { - "codePostal": "82100", - "codeCommune": "82086", - "libelleAcheminement": "LAFITTE", - "nomCommune": "LAFITTE" + "codePostal": "09140", + "codeCommune": "09299", + "libelleAcheminement": "SOUEIX ROGALLE", + "nomCommune": "SOUEIX ROGALLE" }, { - "codePostal": "82130", - "codeCommune": "82090", - "libelleAcheminement": "LAMOTHE CAPDEVILLE", - "nomCommune": "LAMOTHE CAPDEVILLE" + "codePostal": "10700", + "codeCommune": "10235", + "libelleAcheminement": "MESNIL LA COMTESSE", + "nomCommune": "MESNIL LA COMTESSE" }, { - "codePostal": "82240", - "codeCommune": "82092", - "libelleAcheminement": "LAPENCHE", - "nomCommune": "LAPENCHE" + "codePostal": "09600", + "codeCommune": "09305", + "libelleAcheminement": "TABRE", + "nomCommune": "TABRE" }, { - "codePostal": "82500", - "codeCommune": "82103", - "libelleAcheminement": "MARIGNAC", - "nomCommune": "MARIGNAC" + "codePostal": "10270", + "codeCommune": "10245", + "libelleAcheminement": "MONTAULIN", + "nomCommune": "MONTAULIN" }, { - "codePostal": "82290", - "codeCommune": "82108", - "libelleAcheminement": "MEAUZAC", - "nomCommune": "MEAUZAC" + "codePostal": "09230", + "codeCommune": "09313", + "libelleAcheminement": "TOURTOUSE", + "nomCommune": "TOURTOUSE" }, { - "codePostal": "82210", - "codeCommune": "82109", - "libelleAcheminement": "MERLES", - "nomCommune": "MERLES" + "codePostal": "10270", + "codeCommune": "10245", + "libelleAcheminement": "MONTAULIN", + "nomCommune": "MONTAULIN" }, { - "codePostal": "82190", - "codeCommune": "82111", - "libelleAcheminement": "MIRAMONT DE QUERCY", - "nomCommune": "MIRAMONT DE QUERCY" + "codePostal": "09250", + "codeCommune": "09318", + "libelleAcheminement": "UNAC", + "nomCommune": "UNAC" }, { - "codePostal": "82270", - "codeCommune": "82128", - "libelleAcheminement": "MONTFERMIER", - "nomCommune": "MONTFERMIER" + "codePostal": "10200", + "codeCommune": "10250", + "libelleAcheminement": "MONTIER EN L ISLE", + "nomCommune": "MONTIER EN L ISLE" }, { - "codePostal": "82120", - "codeCommune": "82129", - "libelleAcheminement": "MONTGAILLARD", - "nomCommune": "MONTGAILLARD" + "codePostal": "09310", + "codeCommune": "09320", + "libelleAcheminement": "URS", + "nomCommune": "URS" }, { - "codePostal": "82220", - "codeCommune": "82144", - "libelleAcheminement": "PUYCORNET", - "nomCommune": "PUYCORNET" + "codePostal": "10150", + "codeCommune": "10256", + "libelleAcheminement": "MONTSUZAIN", + "nomCommune": "MONTSUZAIN" }, { - "codePostal": "82440", - "codeCommune": "82149", - "libelleAcheminement": "REALVILLE", - "nomCommune": "REALVILLE" + "codePostal": "09120", + "codeCommune": "09324", + "libelleAcheminement": "VARILHES", + "nomCommune": "VARILHES" }, { - "codePostal": "82110", - "codeCommune": "82154", - "libelleAcheminement": "ST AMANS DE PELLAGAL", - "nomCommune": "ST AMANS DE PELLAGAL" + "codePostal": "10190", + "codeCommune": "10263", + "libelleAcheminement": "NEUVILLE SUR VANNE", + "nomCommune": "NEUVILLE SUR VANNE" }, { - "codePostal": "82340", - "codeCommune": "82165", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "09110", + "codeCommune": "09325", + "libelleAcheminement": "VAYCHIS", + "nomCommune": "VAYCHIS" }, { - "codePostal": "82210", - "codeCommune": "82169", - "libelleAcheminement": "ST NICOLAS DE LA GRAVE", - "nomCommune": "ST NICOLAS DE LA GRAVE" + "codePostal": "10160", + "codeCommune": "10266", + "libelleAcheminement": "NOGENT EN OTHE", + "nomCommune": "NOGENT EN OTHE" }, { - "codePostal": "82160", - "codeCommune": "82172", - "libelleAcheminement": "ST PROJET", - "nomCommune": "ST PROJET" + "codePostal": "09250", + "codeCommune": "09330", + "libelleAcheminement": "VERNAUX", + "nomCommune": "VERNAUX" }, { - "codePostal": "82230", - "codeCommune": "82176", - "libelleAcheminement": "LA SALVETAT BELMONTET", - "nomCommune": "LA SALVETAT BELMONTET" + "codePostal": "10700", + "codeCommune": "10273", + "libelleAcheminement": "ORTILLON", + "nomCommune": "ORTILLON" }, { - "codePostal": "82240", - "codeCommune": "82179", - "libelleAcheminement": "SEPTFONDS", - "nomCommune": "SEPTFONDS" + "codePostal": "09120", + "codeCommune": "09340", + "libelleAcheminement": "VIRA", + "nomCommune": "VIRA" }, { - "codePostal": "82500", - "codeCommune": "82180", - "libelleAcheminement": "SERIGNAC", - "nomCommune": "SERIGNAC" + "codePostal": "10210", + "codeCommune": "10278", + "libelleAcheminement": "PARGUES", + "nomCommune": "PARGUES" }, { - "codePostal": "82150", - "codeCommune": "82185", - "libelleAcheminement": "VALEILLES", - "nomCommune": "VALEILLES" + "codePostal": "10190", + "codeCommune": "10003", + "libelleAcheminement": "AIX VILLEMAUR PALIS", + "nomCommune": "AIX VILLEMAUR PALIS" }, { - "codePostal": "83600", - "codeCommune": "83001", - "libelleAcheminement": "LES ADRETS DE L ESTEREL", - "nomCommune": "LES ADRETS DE L ESTEREL" + "codePostal": "10400", + "codeCommune": "10284", + "libelleAcheminement": "PERIGNY LA ROSE", + "nomCommune": "PERIGNY LA ROSE" }, { - "codePostal": "83460", - "codeCommune": "83004", - "libelleAcheminement": "LES ARCS", - "nomCommune": "LES ARCS" + "codePostal": "10190", + "codeCommune": "10003", + "libelleAcheminement": "AIX VILLEMAUR PALIS", + "nomCommune": "AIX VILLEMAUR PALIS" }, { - "codePostal": "83840", - "codeCommune": "83013", - "libelleAcheminement": "LA BASTIDE", - "nomCommune": "LA BASTIDE" + "codePostal": "10500", + "codeCommune": "10286", + "libelleAcheminement": "PETIT MESNIL", + "nomCommune": "PETIT MESNIL" }, { - "codePostal": "83170", - "codeCommune": "83023", - "libelleAcheminement": "BRIGNOLES", - "nomCommune": "BRIGNOLES" + "codePostal": "10700", + "codeCommune": "10006", + "libelleAcheminement": "ARCIS SUR AUBE", + "nomCommune": "ARCIS SUR AUBE" }, { - "codePostal": "83440", - "codeCommune": "83029", - "libelleAcheminement": "CALLIAN", - "nomCommune": "CALLIAN" + "codePostal": "10220", + "codeCommune": "10287", + "libelleAcheminement": "PINEY", + "nomCommune": "PINEY" }, { - "codePostal": "83330", - "codeCommune": "83035", - "libelleAcheminement": "LE CASTELLET", - "nomCommune": "LE CASTELLET" + "codePostal": "10200", + "codeCommune": "10007", + "libelleAcheminement": "ARCONVILLE", + "nomCommune": "ARCONVILLE" }, { - "codePostal": "83330", - "codeCommune": "83035", - "libelleAcheminement": "LE CASTELLET", - "nomCommune": "LE CASTELLET" + "codePostal": "10150", + "codeCommune": "10297", + "libelleAcheminement": "PONT STE MARIE", + "nomCommune": "PONT STE MARIE" }, { - "codePostal": "83170", - "codeCommune": "83037", - "libelleAcheminement": "LA CELLE", - "nomCommune": "LA CELLE" + "codePostal": "10140", + "codeCommune": "10008", + "libelleAcheminement": "ARGANCON", + "nomCommune": "ARGANCON" }, { - "codePostal": "83830", - "codeCommune": "83041", - "libelleAcheminement": "CLAVIERS", - "nomCommune": "CLAVIERS" + "codePostal": "10210", + "codeCommune": "10302", + "libelleAcheminement": "PRASLIN", + "nomCommune": "PRASLIN" }, { - "codePostal": "83570", - "codeCommune": "83046", - "libelleAcheminement": "COTIGNAC", - "nomCommune": "COTIGNAC" + "codePostal": "10200", + "codeCommune": "10012", + "libelleAcheminement": "ARSONVAL", + "nomCommune": "ARSONVAL" }, { - "codePostal": "83560", - "codeCommune": "83052", - "libelleAcheminement": "ESPARRON", - "nomCommune": "ESPARRON" + "codePostal": "10350", + "codeCommune": "10308", + "libelleAcheminement": "PRUNAY BELLEVILLE", + "nomCommune": "PRUNAY BELLEVILLE" }, { - "codePostal": "83440", - "codeCommune": "83055", - "libelleAcheminement": "FAYENCE", - "nomCommune": "FAYENCE" + "codePostal": "10220", + "codeCommune": "10019", + "libelleAcheminement": "VAL D AUZON", + "nomCommune": "VAL D AUZON" }, { - "codePostal": "83600", - "codeCommune": "83061", - "libelleAcheminement": "FREJUS", - "nomCommune": "FREJUS" + "codePostal": "10240", + "codeCommune": "10314", + "libelleAcheminement": "RAMERUPT", + "nomCommune": "RAMERUPT" }, { - "codePostal": "83560", - "codeCommune": "83066", - "libelleAcheminement": "GINASSERVIS", - "nomCommune": "GINASSERVIS" + "codePostal": "10400", + "codeCommune": "10031", + "libelleAcheminement": "BARBUISE", + "nomCommune": "BARBUISE" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "10100", + "codeCommune": "10323", + "libelleAcheminement": "ROMILLY SUR SEINE", + "nomCommune": "ROMILLY SUR SEINE" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "10400", + "codeCommune": "10031", + "libelleAcheminement": "BARBUISE", + "nomCommune": "BARBUISE" }, { - "codePostal": "83980", - "codeCommune": "83070", - "libelleAcheminement": "LE LAVANDOU", - "nomCommune": "LE LAVANDOU" + "codePostal": "10320", + "codeCommune": "10324", + "libelleAcheminement": "RONCENAY", + "nomCommune": "RONCENAY" }, { - "codePostal": "83440", - "codeCommune": "83080", - "libelleAcheminement": "MONS", - "nomCommune": "MONS" + "codePostal": "10200", + "codeCommune": "10033", + "libelleAcheminement": "BAR SUR AUBE", + "nomCommune": "BAR SUR AUBE" }, { - "codePostal": "83470", - "codeCommune": "83089", - "libelleAcheminement": "OLLIERES", - "nomCommune": "OLLIERES" + "codePostal": "10430", + "codeCommune": "10325", + "libelleAcheminement": "ROSIERES PRES TROYES", + "nomCommune": "ROSIERES PRES TROYES" }, { - "codePostal": "83390", - "codeCommune": "83091", - "libelleAcheminement": "PIERREFEU DU VAR", - "nomCommune": "PIERREFEU DU VAR" + "codePostal": "10200", + "codeCommune": "10039", + "libelleAcheminement": "BERGERES", + "nomCommune": "BERGERES" }, { - "codePostal": "83470", - "codeCommune": "83096", - "libelleAcheminement": "POURCIEUX", - "nomCommune": "POURCIEUX" + "codePostal": "10800", + "codeCommune": "10329", + "libelleAcheminement": "ROUILLY ST LOUP", + "nomCommune": "ROUILLY ST LOUP" }, { - "codePostal": "83480", - "codeCommune": "83099", - "libelleAcheminement": "PUGET SUR ARGENS", - "nomCommune": "PUGET SUR ARGENS" + "codePostal": "10200", + "codeCommune": "10048", + "libelleAcheminement": "BLIGNY", + "nomCommune": "BLIGNY" }, { - "codePostal": "83630", - "codeCommune": "83102", - "libelleAcheminement": "REGUSSE", - "nomCommune": "REGUSSE" + "codePostal": "10800", + "codeCommune": "10329", + "libelleAcheminement": "ROUILLY ST LOUP", + "nomCommune": "ROUILLY ST LOUP" }, { - "codePostal": "83560", - "codeCommune": "83104", - "libelleAcheminement": "RIANS", - "nomCommune": "RIANS" + "codePostal": "10800", + "codeCommune": "10049", + "libelleAcheminement": "LES BORDES AUMONT", + "nomCommune": "LES BORDES AUMONT" }, { - "codePostal": "83270", - "codeCommune": "83112", - "libelleAcheminement": "ST CYR SUR MER", - "nomCommune": "ST CYR SUR MER" + "codePostal": "10400", + "codeCommune": "10334", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "83700", - "codeCommune": "83118", - "libelleAcheminement": "ST RAPHAEL", - "nomCommune": "ST RAPHAEL" + "codePostal": "10270", + "codeCommune": "10053", + "libelleAcheminement": "BOURANTON", + "nomCommune": "BOURANTON" }, { - "codePostal": "83690", - "codeCommune": "83121", - "libelleAcheminement": "SALERNES", - "nomCommune": "SALERNES" + "codePostal": "10330", + "codeCommune": "10346", + "libelleAcheminement": "ST LEGER SOUS MARGERIE", + "nomCommune": "ST LEGER SOUS MARGERIE" }, { - "codePostal": "83110", - "codeCommune": "83123", - "libelleAcheminement": "SANARY SUR MER", - "nomCommune": "SANARY SUR MER" + "codePostal": "10340", + "codeCommune": "10058", + "libelleAcheminement": "BRAGELOGNE BEAUVOIR", + "nomCommune": "BRAGELOGNE BEAUVOIR" }, { - "codePostal": "83440", - "codeCommune": "83124", - "libelleAcheminement": "SEILLANS", - "nomCommune": "SEILLANS" + "codePostal": "10180", + "codeCommune": "10349", + "libelleAcheminement": "ST LYE", + "nomCommune": "ST LYE" }, { - "codePostal": "83690", - "codeCommune": "83128", - "libelleAcheminement": "SILLANS LA CASCADE", - "nomCommune": "SILLANS LA CASCADE" + "codePostal": "10600", + "codeCommune": "10081", + "libelleAcheminement": "LA CHAPELLE ST LUC", + "nomCommune": "LA CHAPELLE ST LUC" }, { - "codePostal": "83000", - "codeCommune": "83137", - "libelleAcheminement": "TOULON", - "nomCommune": "TOULON" + "codePostal": "10280", + "codeCommune": "10353", + "libelleAcheminement": "ST MESMIN", + "nomCommune": "ST MESMIN" }, { - "codePostal": "83690", - "codeCommune": "83139", - "libelleAcheminement": "TOURTOUR", - "nomCommune": "TOURTOUR" + "codePostal": "10150", + "codeCommune": "10084", + "libelleAcheminement": "CHARMONT SOUS BARBUISE", + "nomCommune": "CHARMONT SOUS BARBUISE" }, { - "codePostal": "83840", - "codeCommune": "83142", - "libelleAcheminement": "TRIGANCE", - "nomCommune": "TRIGANCE" + "codePostal": "10400", + "codeCommune": "10355", + "libelleAcheminement": "ST NICOLAS LA CHAPELLE", + "nomCommune": "ST NICOLAS LA CHAPELLE" }, { - "codePostal": "83670", - "codeCommune": "83145", - "libelleAcheminement": "VARAGES", - "nomCommune": "VARAGES" + "codePostal": "10380", + "codeCommune": "10086", + "libelleAcheminement": "CHARNY LE BACHOT", + "nomCommune": "CHARNY LE BACHOT" }, { - "codePostal": "83630", - "codeCommune": "83147", - "libelleAcheminement": "VERIGNON", - "nomCommune": "VERIGNON" + "codePostal": "10410", + "codeCommune": "10357", + "libelleAcheminement": "ST PARRES AUX TERTRES", + "nomCommune": "ST PARRES AUX TERTRES" }, { - "codePostal": "83550", - "codeCommune": "83148", - "libelleAcheminement": "VIDAUBAN", - "nomCommune": "VIDAUBAN" + "codePostal": "10170", + "codeCommune": "10090", + "libelleAcheminement": "CHAUCHIGNY", + "nomCommune": "CHAUCHIGNY" }, { - "codePostal": "84210", - "codeCommune": "84001", - "libelleAcheminement": "ALTHEN DES PALUDS", - "nomCommune": "ALTHEN DES PALUDS" + "codePostal": "10300", + "codeCommune": "10362", + "libelleAcheminement": "STE SAVINE", + "nomCommune": "STE SAVINE" }, { - "codePostal": "84570", - "codeCommune": "84018", - "libelleAcheminement": "BLAUVAC", - "nomCommune": "BLAUVAC" + "codePostal": "10240", + "codeCommune": "10091", + "libelleAcheminement": "CHAUDREY", + "nomCommune": "CHAUDREY" }, { - "codePostal": "84110", - "codeCommune": "84022", - "libelleAcheminement": "BUISSON", - "nomCommune": "BUISSON" + "codePostal": "10400", + "codeCommune": "10367", + "libelleAcheminement": "LA SAULSOTTE", + "nomCommune": "LA SAULSOTTE" }, { - "codePostal": "84860", - "codeCommune": "84027", - "libelleAcheminement": "CADEROUSSE", - "nomCommune": "CADEROUSSE" + "codePostal": "10110", + "codeCommune": "10097", + "libelleAcheminement": "CHERVEY", + "nomCommune": "CHERVEY" }, { - "codePostal": "84200", - "codeCommune": "84031", - "libelleAcheminement": "CARPENTRAS", - "nomCommune": "CARPENTRAS" + "codePostal": "10410", + "codeCommune": "10375", + "libelleAcheminement": "THENNELIERES", + "nomCommune": "THENNELIERES" }, { - "codePostal": "84300", - "codeCommune": "84035", - "libelleAcheminement": "CAVAILLON", - "nomCommune": "CAVAILLON" + "codePostal": "10390", + "codeCommune": "10100", + "libelleAcheminement": "CLEREY", + "nomCommune": "CLEREY" }, { - "codePostal": "84160", - "codeCommune": "84042", - "libelleAcheminement": "CUCURON", - "nomCommune": "CUCURON" + "codePostal": "10700", + "codeCommune": "10380", + "libelleAcheminement": "TORCY LE PETIT", + "nomCommune": "TORCY LE PETIT" }, { - "codePostal": "84340", - "codeCommune": "84044", - "libelleAcheminement": "ENTRECHAUX", - "nomCommune": "ENTRECHAUX" + "codePostal": "10240", + "codeCommune": "10101", + "libelleAcheminement": "COCLOIS", + "nomCommune": "COCLOIS" }, { - "codePostal": "84110", - "codeCommune": "84045", - "libelleAcheminement": "FAUCON", - "nomCommune": "FAUCON" + "codePostal": "10440", + "codeCommune": "10381", + "libelleAcheminement": "TORVILLIERS", + "nomCommune": "TORVILLIERS" }, { - "codePostal": "84480", - "codeCommune": "84058", - "libelleAcheminement": "LACOSTE", - "nomCommune": "LACOSTE" + "codePostal": "10800", + "codeCommune": "10104", + "libelleAcheminement": "CORMOST", + "nomCommune": "CORMOST" }, { - "codePostal": "84190", - "codeCommune": "84059", - "libelleAcheminement": "LAFARE", - "nomCommune": "LAFARE" + "codePostal": "10140", + "codeCommune": "10384", + "libelleAcheminement": "TRANNES", + "nomCommune": "TRANNES" }, { - "codePostal": "84840", - "codeCommune": "84063", - "libelleAcheminement": "LAMOTTE DU RHONE", - "nomCommune": "LAMOTTE DU RHONE" + "codePostal": "10500", + "codeCommune": "10105", + "libelleAcheminement": "COURCELLES SUR VOIRE", + "nomCommune": "COURCELLES SUR VOIRE" }, { - "codePostal": "84570", - "codeCommune": "84070", - "libelleAcheminement": "MALEMORT DU COMTAT", - "nomCommune": "MALEMORT DU COMTAT" + "codePostal": "10210", + "codeCommune": "10388", + "libelleAcheminement": "TURGY", + "nomCommune": "TURGY" }, { - "codePostal": "84570", - "codeCommune": "84082", - "libelleAcheminement": "MORMOIRON", - "nomCommune": "MORMOIRON" + "codePostal": "10130", + "codeCommune": "10107", + "libelleAcheminement": "COURSAN EN OTHE", + "nomCommune": "COURSAN EN OTHE" }, { - "codePostal": "84240", - "codeCommune": "84090", - "libelleAcheminement": "PEYPIN D AIGUES", - "nomCommune": "PEYPIN D AIGUES" + "codePostal": "10140", + "codeCommune": "10389", + "libelleAcheminement": "UNIENVILLE", + "nomCommune": "UNIENVILLE" }, { - "codePostal": "84360", - "codeCommune": "84093", - "libelleAcheminement": "PUGET", - "nomCommune": "PUGET" + "codePostal": "10360", + "codeCommune": "10119", + "libelleAcheminement": "CUNFIN", + "nomCommune": "CUNFIN" }, { - "codePostal": "84600", - "codeCommune": "84097", - "libelleAcheminement": "RICHERENCHES", - "nomCommune": "RICHERENCHES" + "codePostal": "10500", + "codeCommune": "10393", + "libelleAcheminement": "VALLENTIGNY", + "nomCommune": "VALLENTIGNY" }, { - "codePostal": "84210", - "codeCommune": "84101", - "libelleAcheminement": "LA ROQUE SUR PERNES", - "nomCommune": "LA ROQUE SUR PERNES" + "codePostal": "10240", + "codeCommune": "10121", + "libelleAcheminement": "DAMPIERRE", + "nomCommune": "DAMPIERRE" }, { - "codePostal": "84220", - "codeCommune": "84102", - "libelleAcheminement": "ROUSSILLON", - "nomCommune": "ROUSSILLON" + "codePostal": "10800", + "codeCommune": "10402", + "libelleAcheminement": "LA VENDUE MIGNOT", + "nomCommune": "LA VENDUE MIGNOT" }, { - "codePostal": "84110", - "codeCommune": "84104", - "libelleAcheminement": "SABLET", - "nomCommune": "SABLET" + "codePostal": "10200", + "codeCommune": "10135", + "libelleAcheminement": "ECLANCE", + "nomCommune": "ECLANCE" }, { - "codePostal": "84390", - "codeCommune": "84107", - "libelleAcheminement": "ST CHRISTOL", - "nomCommune": "ST CHRISTOL" + "codePostal": "10380", + "codeCommune": "10408", + "libelleAcheminement": "VIAPRES LE PETIT", + "nomCommune": "VIAPRES LE PETIT" }, { - "codePostal": "84490", - "codeCommune": "84118", - "libelleAcheminement": "ST SATURNIN LES APT", - "nomCommune": "ST SATURNIN LES APT" + "codePostal": "10500", + "codeCommune": "10138", + "libelleAcheminement": "EPAGNE", + "nomCommune": "EPAGNE" }, { - "codePostal": "84390", - "codeCommune": "84120", - "libelleAcheminement": "ST TRINIT", - "nomCommune": "ST TRINIT" + "codePostal": "10600", + "codeCommune": "10409", + "libelleAcheminement": "VILLACERF", + "nomCommune": "VILLACERF" }, { - "codePostal": "84240", - "codeCommune": "84121", - "libelleAcheminement": "SANNES", - "nomCommune": "SANNES" + "codePostal": "10500", + "codeCommune": "10139", + "libelleAcheminement": "EPOTHEMONT", + "nomCommune": "EPOTHEMONT" }, { - "codePostal": "84260", - "codeCommune": "84122", - "libelleAcheminement": "SARRIANS", - "nomCommune": "SARRIANS" + "codePostal": "10410", + "codeCommune": "10412", + "libelleAcheminement": "VILLECHETIF", + "nomCommune": "VILLECHETIF" }, { - "codePostal": "84110", - "codeCommune": "84126", - "libelleAcheminement": "SEGURET", - "nomCommune": "SEGURET" + "codePostal": "10400", + "codeCommune": "10153", + "libelleAcheminement": "FONTAINE MACON", + "nomCommune": "FONTAINE MACON" }, { - "codePostal": "84250", - "codeCommune": "84132", - "libelleAcheminement": "LE THOR", - "nomCommune": "LE THOR" + "codePostal": "10330", + "codeCommune": "10424", + "libelleAcheminement": "VILLERET", + "nomCommune": "VILLERET" }, { - "codePostal": "84240", - "codeCommune": "84133", - "libelleAcheminement": "LA TOUR D AIGUES", - "nomCommune": "LA TOUR D AIGUES" + "codePostal": "10400", + "codeCommune": "10154", + "libelleAcheminement": "FONTENAY DE BOSSERY", + "nomCommune": "FONTENAY DE BOSSERY" }, { - "codePostal": "84270", - "codeCommune": "84141", - "libelleAcheminement": "VEDENE", - "nomCommune": "VEDENE" + "codePostal": "10800", + "codeCommune": "10435", + "libelleAcheminement": "VILLY LE MARECHAL", + "nomCommune": "VILLY LE MARECHAL" }, { - "codePostal": "84240", - "codeCommune": "84151", - "libelleAcheminement": "VITROLLES EN LUBERON", - "nomCommune": "VITROLLES EN LUBERON" + "codePostal": "10110", + "codeCommune": "10159", + "libelleAcheminement": "FRALIGNES", + "nomCommune": "FRALIGNES" }, { - "codePostal": "85430", - "codeCommune": "85008", - "libelleAcheminement": "AUBIGNY LES CLOUZEAUX", - "nomCommune": "AUBIGNY LES CLOUZEAUX" + "codePostal": "10260", + "codeCommune": "10437", + "libelleAcheminement": "VIREY SOUS BAR", + "nomCommune": "VIREY SOUS BAR" }, { - "codePostal": "85200", - "codeCommune": "85009", - "libelleAcheminement": "AUCHAY SUR VENDEE", - "nomCommune": "AUCHAY SUR VENDEE" + "codePostal": "10700", + "codeCommune": "10167", + "libelleAcheminement": "GRANDVILLE", + "nomCommune": "GRANDVILLE" }, { - "codePostal": "85190", - "codeCommune": "85016", - "libelleAcheminement": "BEAULIEU SOUS LA ROCHE", - "nomCommune": "BEAULIEU SOUS LA ROCHE" + "codePostal": "10200", + "codeCommune": "10440", + "libelleAcheminement": "VOIGNY", + "nomCommune": "VOIGNY" }, { - "codePostal": "85170", - "codeCommune": "85019", - "libelleAcheminement": "BELLEVIGNY", - "nomCommune": "BELLEVIGNY" + "codePostal": "10250", + "codeCommune": "10170", + "libelleAcheminement": "GYE SUR SEINE", + "nomCommune": "GYE SUR SEINE" }, { - "codePostal": "85490", - "codeCommune": "85020", - "libelleAcheminement": "BENET", - "nomCommune": "BENET" + "codePostal": "10210", + "codeCommune": "10443", + "libelleAcheminement": "VOUGREY", + "nomCommune": "VOUGREY" }, { - "codePostal": "85560", - "codeCommune": "85022", - "libelleAcheminement": "LE BERNARD", - "nomCommune": "LE BERNARD" + "codePostal": "10500", + "codeCommune": "10171", + "libelleAcheminement": "HAMPIGNY", + "nomCommune": "HAMPIGNY" }, { - "codePostal": "85430", - "codeCommune": "85026", - "libelleAcheminement": "LA BOISSIERE DES LANDES", - "nomCommune": "LA BOISSIERE DES LANDES" + "codePostal": "11600", + "codeCommune": "11011", + "libelleAcheminement": "ARAGON", + "nomCommune": "ARAGON" }, { - "codePostal": "85510", - "codeCommune": "85031", - "libelleAcheminement": "LE BOUPERE", - "nomCommune": "LE BOUPERE" + "codePostal": "10150", + "codeCommune": "10191", + "libelleAcheminement": "LAVAU", + "nomCommune": "LAVAU" }, { - "codePostal": "85480", - "codeCommune": "85034", - "libelleAcheminement": "BOURNEZEAU", - "nomCommune": "BOURNEZEAU" + "codePostal": "11220", + "codeCommune": "11016", + "libelleAcheminement": "ARQUETTES EN VAL", + "nomCommune": "ARQUETTES EN VAL" }, { - "codePostal": "85120", - "codeCommune": "85037", - "libelleAcheminement": "BREUIL BARRET", - "nomCommune": "BREUIL BARRET" + "codePostal": "10150", + "codeCommune": "10191", + "libelleAcheminement": "LAVAU", + "nomCommune": "LAVAU" }, { - "codePostal": "85530", - "codeCommune": "85039", - "libelleAcheminement": "LA BRUFFIERE", - "nomCommune": "LA BRUFFIERE" + "codePostal": "11800", + "codeCommune": "11023", + "libelleAcheminement": "BADENS", + "nomCommune": "BADENS" }, { - "codePostal": "85110", - "codeCommune": "85051", - "libelleAcheminement": "CHANTONNAY", - "nomCommune": "CHANTONNAY" + "codePostal": "10200", + "codeCommune": "10194", + "libelleAcheminement": "LEVIGNY", + "nomCommune": "LEVIGNY" }, { - "codePostal": "85110", - "codeCommune": "85051", - "libelleAcheminement": "CHANTONNAY", - "nomCommune": "CHANTONNAY" + "codePostal": "11100", + "codeCommune": "11024", + "libelleAcheminement": "BAGES", + "nomCommune": "BAGES" }, { - "codePostal": "85400", - "codeCommune": "85058", - "libelleAcheminement": "CHASNAIS", - "nomCommune": "CHASNAIS" + "codePostal": "10140", + "codeCommune": "10200", + "libelleAcheminement": "LA LOGE AUX CHEVRES", + "nomCommune": "LA LOGE AUX CHEVRES" }, { - "codePostal": "85140", - "codeCommune": "85064", - "libelleAcheminement": "CHAUCHE", - "nomCommune": "CHAUCHE" + "codePostal": "11240", + "codeCommune": "11034", + "libelleAcheminement": "BELVEZE DU RAZES", + "nomCommune": "BELVEZE DU RAZES" }, { - "codePostal": "85250", - "codeCommune": "85065", - "libelleAcheminement": "CHAVAGNES EN PAILLERS", - "nomCommune": "CHAVAGNES EN PAILLERS" + "codePostal": "10310", + "codeCommune": "10203", + "libelleAcheminement": "LONGCHAMP SUR AUJON", + "nomCommune": "LONGCHAMP SUR AUJON" }, { - "codePostal": "85220", - "codeCommune": "85071", - "libelleAcheminement": "COMMEQUIERS", - "nomCommune": "COMMEQUIERS" + "codePostal": "11000", + "codeCommune": "11037", + "libelleAcheminement": "BERRIAC", + "nomCommune": "BERRIAC" }, { - "codePostal": "85320", - "codeCommune": "85074", - "libelleAcheminement": "LA COUTURE", - "nomCommune": "LA COUTURE" + "codePostal": "10320", + "codeCommune": "10212", + "libelleAcheminement": "MACHY", + "nomCommune": "MACHY" }, { - "codePostal": "85540", - "codeCommune": "85077", - "libelleAcheminement": "CURZON", - "nomCommune": "CURZON" + "codePostal": "11140", + "codeCommune": "11038", + "libelleAcheminement": "BESSEDE DE SAULT", + "nomCommune": "BESSEDE DE SAULT" }, { - "codePostal": "85200", - "codeCommune": "85080", - "libelleAcheminement": "DOIX LES FONTAINES", - "nomCommune": "DOIX LES FONTAINES" + "codePostal": "10140", + "codeCommune": "10217", + "libelleAcheminement": "MAISON DES CHAMPS", + "nomCommune": "MAISON DES CHAMPS" }, { - "codePostal": "85140", - "codeCommune": "85084", - "libelleAcheminement": "ESSARTS EN BOCAGE", - "nomCommune": "ESSARTS EN BOCAGE" + "codePostal": "11300", + "codeCommune": "11039", + "libelleAcheminement": "LA BEZOLE", + "nomCommune": "LA BEZOLE" }, { - "codePostal": "85280", - "codeCommune": "85089", - "libelleAcheminement": "LA FERRIERE", - "nomCommune": "LA FERRIERE" + "codePostal": "10510", + "codeCommune": "10220", + "libelleAcheminement": "MAIZIERES LA GRANDE PAROISSE", + "nomCommune": "MAIZIERES LA GRANDE PAROISSE" }, { - "codePostal": "85700", - "codeCommune": "85090", - "libelleAcheminement": "SEVREMONT", - "nomCommune": "SEVREMONT" + "codePostal": "11800", + "codeCommune": "11043", + "libelleAcheminement": "BOUILHONNAC", + "nomCommune": "BOUILHONNAC" }, { - "codePostal": "85700", - "codeCommune": "85090", - "libelleAcheminement": "SEVREMONT", - "nomCommune": "SEVREMONT" + "codePostal": "10160", + "codeCommune": "10222", + "libelleAcheminement": "MARAYE EN OTHE", + "nomCommune": "MARAYE EN OTHE" }, { - "codePostal": "85240", - "codeCommune": "85094", - "libelleAcheminement": "FOUSSAIS PAYRE", - "nomCommune": "FOUSSAIS PAYRE" + "codePostal": "11330", + "codeCommune": "11044", + "libelleAcheminement": "BOUISSE", + "nomCommune": "BOUISSE" }, { - "codePostal": "85190", - "codeCommune": "85098", - "libelleAcheminement": "LA GENETOUZE", - "nomCommune": "LA GENETOUZE" + "codePostal": "10110", + "codeCommune": "10226", + "libelleAcheminement": "MAROLLES LES BAILLY", + "nomCommune": "MAROLLES LES BAILLY" }, { - "codePostal": "85150", - "codeCommune": "85099", - "libelleAcheminement": "LE GIROUARD", - "nomCommune": "LE GIROUARD" + "codePostal": "11270", + "codeCommune": "11051", + "libelleAcheminement": "BREZILHAC", + "nomCommune": "BREZILHAC" }, { - "codePostal": "85670", - "codeCommune": "85102", - "libelleAcheminement": "GRAND LANDES", - "nomCommune": "GRAND LANDES" + "codePostal": "10190", + "codeCommune": "10240", + "libelleAcheminement": "MESSON", + "nomCommune": "MESSON" }, { - "codePostal": "85580", - "codeCommune": "85104", - "libelleAcheminement": "GRUES", - "nomCommune": "GRUES" + "codePostal": "11190", + "codeCommune": "11055", + "libelleAcheminement": "BUGARACH", + "nomCommune": "BUGARACH" }, { - "codePostal": "85150", - "codeCommune": "85118", - "libelleAcheminement": "LANDERONDE", - "nomCommune": "LANDERONDE" + "codePostal": "10500", + "codeCommune": "10243", + "libelleAcheminement": "MOLINS SUR AUBE", + "nomCommune": "MOLINS SUR AUBE" }, { - "codePostal": "85370", - "codeCommune": "85121", - "libelleAcheminement": "LE LANGON", - "nomCommune": "LE LANGON" + "codePostal": "11240", + "codeCommune": "11059", + "libelleAcheminement": "CAILHAVEL", + "nomCommune": "CAILHAVEL" }, { - "codePostal": "85560", - "codeCommune": "85127", - "libelleAcheminement": "LONGEVILLE SUR MER", - "nomCommune": "LONGEVILLE SUR MER" + "codePostal": "10400", + "codeCommune": "10254", + "libelleAcheminement": "MONTPOTHIER", + "nomCommune": "MONTPOTHIER" }, { - "codePostal": "85170", - "codeCommune": "85129", - "libelleAcheminement": "LES LUCS SUR BOULOGNE", - "nomCommune": "LES LUCS SUR BOULOGNE" + "codePostal": "11140", + "codeCommune": "11062", + "libelleAcheminement": "CAMPAGNA DE SAULT", + "nomCommune": "CAMPAGNA DE SAULT" }, { - "codePostal": "85420", - "codeCommune": "85133", - "libelleAcheminement": "MAILLEZAIS", - "nomCommune": "MAILLEZAIS" + "codePostal": "10500", + "codeCommune": "10258", + "libelleAcheminement": "MORVILLIERS", + "nomCommune": "MORVILLIERS" }, { - "codePostal": "85500", - "codeCommune": "85144", - "libelleAcheminement": "MESNARD LA BAROTIERE", - "nomCommune": "MESNARD LA BAROTIERE" + "codePostal": "11000", + "codeCommune": "11069", + "libelleAcheminement": "CARCASSONNE", + "nomCommune": "CARCASSONNE" }, { - "codePostal": "85200", - "codeCommune": "85148", - "libelleAcheminement": "MONTREUIL", - "nomCommune": "MONTREUIL" + "codePostal": "10400", + "codeCommune": "10259", + "libelleAcheminement": "LA MOTTE TILLY", + "nomCommune": "LA MOTTE TILLY" }, { - "codePostal": "85450", - "codeCommune": "85149", - "libelleAcheminement": "MOREILLES", - "nomCommune": "MOREILLES" + "codePostal": "11190", + "codeCommune": "11073", + "libelleAcheminement": "CASSAIGNES", + "nomCommune": "CASSAIGNES" }, { - "codePostal": "85150", - "codeCommune": "85152", - "libelleAcheminement": "LES ACHARDS", - "nomCommune": "LES ACHARDS" + "codePostal": "10250", + "codeCommune": "10261", + "libelleAcheminement": "MUSSY SUR SEINE", + "nomCommune": "MUSSY SUR SEINE" }, { - "codePostal": "85150", - "codeCommune": "85152", - "libelleAcheminement": "LES ACHARDS", - "nomCommune": "LES ACHARDS" + "codePostal": "11400", + "codeCommune": "11076", + "libelleAcheminement": "CASTELNAUDARY", + "nomCommune": "CASTELNAUDARY" }, { - "codePostal": "85390", - "codeCommune": "85154", - "libelleAcheminement": "MOUILLERON ST GERMAIN", - "nomCommune": "MOUILLERON ST GERMAIN" + "codePostal": "10250", + "codeCommune": "10262", + "libelleAcheminement": "NEUVILLE SUR SEINE", + "nomCommune": "NEUVILLE SUR SEINE" }, { - "codePostal": "85000", - "codeCommune": "85155", - "libelleAcheminement": "MOUILLERON LE CAPTIF", - "nomCommune": "MOUILLERON LE CAPTIF" + "codePostal": "11390", + "codeCommune": "11079", + "libelleAcheminement": "CAUDEBRONDE", + "nomCommune": "CAUDEBRONDE" }, { - "codePostal": "85320", - "codeCommune": "85157", - "libelleAcheminement": "MOUTIERS SUR LE LAY", - "nomCommune": "MOUTIERS SUR LE LAY" + "codePostal": "10360", + "codeCommune": "10264", + "libelleAcheminement": "NOE LES MALLETS", + "nomCommune": "NOE LES MALLETS" }, { - "codePostal": "85240", - "codeCommune": "85162", - "libelleAcheminement": "RIVES D AUTISE", - "nomCommune": "RIVES D AUTISE" + "codePostal": "11510", + "codeCommune": "11086", + "libelleAcheminement": "CAVES", + "nomCommune": "CAVES" }, { - "codePostal": "85420", - "codeCommune": "85162", - "libelleAcheminement": "RIVES D AUTISE", - "nomCommune": "RIVES D AUTISE" + "codePostal": "10330", + "codeCommune": "10279", + "libelleAcheminement": "PARS LES CHAVANGES", + "nomCommune": "PARS LES CHAVANGES" }, { - "codePostal": "85200", - "codeCommune": "85167", - "libelleAcheminement": "L ORBRIE", - "nomCommune": "L ORBRIE" + "codePostal": "11340", + "codeCommune": "11096", + "libelleAcheminement": "COMUS", + "nomCommune": "COMUS" }, { - "codePostal": "85670", - "codeCommune": "85169", - "libelleAcheminement": "PALLUAU", - "nomCommune": "PALLUAU" + "codePostal": "10350", + "codeCommune": "10281", + "libelleAcheminement": "LE PAVILLON STE JULIE", + "nomCommune": "LE PAVILLON STE JULIE" }, { - "codePostal": "85240", - "codeCommune": "85184", - "libelleAcheminement": "PUY DE SERRE", - "nomCommune": "PUY DE SERRE" + "codePostal": "11410", + "codeCommune": "11114", + "libelleAcheminement": "CUMIES", + "nomCommune": "CUMIES" }, { - "codePostal": "85450", - "codeCommune": "85185", - "libelleAcheminement": "PUYRAVAULT", - "nomCommune": "PUYRAVAULT" + "codePostal": "10250", + "codeCommune": "10288", + "libelleAcheminement": "PLAINES ST LANGE", + "nomCommune": "PLAINES ST LANGE" }, { - "codePostal": "85180", - "codeCommune": "85194", - "libelleAcheminement": "LES SABLES D OLONNE", - "nomCommune": "LES SABLES D OLONNE" + "codePostal": "11590", + "codeCommune": "11116", + "libelleAcheminement": "CUXAC D AUDE", + "nomCommune": "CUXAC D AUDE" }, { - "codePostal": "85340", - "codeCommune": "85194", - "libelleAcheminement": "LES SABLES D OLONNE", - "nomCommune": "LES SABLES D OLONNE" + "codePostal": "10110", + "codeCommune": "10294", + "libelleAcheminement": "POLIGNY", + "nomCommune": "POLIGNY" }, { - "codePostal": "85540", - "codeCommune": "85200", - "libelleAcheminement": "ST AVAUGOURD DES LANDES", - "nomCommune": "ST AVAUGOURD DES LANDES" + "codePostal": "11300", + "codeCommune": "11119", + "libelleAcheminement": "LA DIGNE D AMONT", + "nomCommune": "LA DIGNE D AMONT" }, { - "codePostal": "85540", - "codeCommune": "85206", - "libelleAcheminement": "ST CYR EN TALMONDAIS", - "nomCommune": "ST CYR EN TALMONDAIS" + "codePostal": "10500", + "codeCommune": "10303", + "libelleAcheminement": "PRECY NOTRE DAME", + "nomCommune": "PRECY NOTRE DAME" }, { - "codePostal": "85170", - "codeCommune": "85208", - "libelleAcheminement": "ST DENIS LA CHEVASSE", - "nomCommune": "ST DENIS LA CHEVASSE" + "codePostal": "11360", + "codeCommune": "11125", + "libelleAcheminement": "EMBRES ET CASTELMAURE", + "nomCommune": "EMBRES ET CASTELMAURE" }, { - "codePostal": "85250", - "codeCommune": "85215", - "libelleAcheminement": "ST FULGENT", - "nomCommune": "ST FULGENT" + "codePostal": "10500", + "codeCommune": "10326", + "libelleAcheminement": "ROSNAY L HOPITAL", + "nomCommune": "ROSNAY L HOPITAL" }, { - "codePostal": "85470", - "codeCommune": "85243", - "libelleAcheminement": "BREM SUR MER", - "nomCommune": "BREM SUR MER" + "codePostal": "11220", + "codeCommune": "11133", + "libelleAcheminement": "FAJAC EN VAL", + "nomCommune": "FAJAC EN VAL" }, { - "codePostal": "85320", - "codeCommune": "85261", - "libelleAcheminement": "STE PEXINE", - "nomCommune": "STE PEXINE" + "codePostal": "10200", + "codeCommune": "10330", + "libelleAcheminement": "ROUVRES LES VIGNES", + "nomCommune": "ROUVRES LES VIGNES" }, { - "codePostal": "85660", - "codeCommune": "85262", - "libelleAcheminement": "ST PHILBERT DE BOUAINE", - "nomCommune": "ST PHILBERT DE BOUAINE" + "codePostal": "11400", + "codeCommune": "11149", + "libelleAcheminement": "FONTERS DU RAZES", + "nomCommune": "FONTERS DU RAZES" }, { - "codePostal": "85120", - "codeCommune": "85264", - "libelleAcheminement": "ST PIERRE DU CHEMIN", - "nomCommune": "ST PIERRE DU CHEMIN" + "codePostal": "10260", + "codeCommune": "10331", + "libelleAcheminement": "RUMILLY LES VAUDES", + "nomCommune": "RUMILLY LES VAUDES" }, { - "codePostal": "85110", - "codeCommune": "85266", - "libelleAcheminement": "ST PROUANT", - "nomCommune": "ST PROUANT" + "codePostal": "11600", + "codeCommune": "11156", + "libelleAcheminement": "FRAISSE CABARDES", + "nomCommune": "FRAISSE CABARDES" }, { - "codePostal": "85450", - "codeCommune": "85267", - "libelleAcheminement": "STE RADEGONDE DES NOYERS", - "nomCommune": "STE RADEGONDE DES NOYERS" + "codePostal": "10500", + "codeCommune": "10337", + "libelleAcheminement": "ST CHRISTOPHE DODINICOURT", + "nomCommune": "ST CHRISTOPHE DODINICOURT" }, { - "codePostal": "85410", - "codeCommune": "85271", - "libelleAcheminement": "ST SULPICE EN PAREDS", - "nomCommune": "ST SULPICE EN PAREDS" + "codePostal": "11410", + "codeCommune": "11166", + "libelleAcheminement": "GOURVIEILLE", + "nomCommune": "GOURVIEILLE" }, { - "codePostal": "85440", - "codeCommune": "85288", - "libelleAcheminement": "TALMONT ST HILAIRE", - "nomCommune": "TALMONT ST HILAIRE" + "codePostal": "10120", + "codeCommune": "10340", + "libelleAcheminement": "ST GERMAIN", + "nomCommune": "ST GERMAIN" }, { - "codePostal": "85210", - "codeCommune": "85290", - "libelleAcheminement": "THIRE", - "nomCommune": "THIRE" + "codePostal": "11200", + "codeCommune": "11172", + "libelleAcheminement": "HOMPS", + "nomCommune": "HOMPS" }, { - "codePostal": "85150", - "codeCommune": "85298", - "libelleAcheminement": "VAIRE", - "nomCommune": "VAIRE" + "codePostal": "10320", + "codeCommune": "10342", + "libelleAcheminement": "ST JEAN DE BONNEVAL", + "nomCommune": "ST JEAN DE BONNEVAL" }, { - "codePostal": "85250", - "codeCommune": "85301", - "libelleAcheminement": "VENDRENNES", - "nomCommune": "VENDRENNES" + "codePostal": "11240", + "codeCommune": "11173", + "libelleAcheminement": "HOUNOUX", + "nomCommune": "HOUNOUX" }, { - "codePostal": "85500", - "codeCommune": "85302", - "libelleAcheminement": "CHANVERRIE", - "nomCommune": "CHANVERRIE" + "codePostal": "10800", + "codeCommune": "10343", + "libelleAcheminement": "ST JULIEN LES VILLAS", + "nomCommune": "ST JULIEN LES VILLAS" }, { - "codePostal": "86100", - "codeCommune": "86007", - "libelleAcheminement": "ANTRAN", - "nomCommune": "ANTRAN" + "codePostal": "11380", + "codeCommune": "11174", + "libelleAcheminement": "LES ILHES", + "nomCommune": "LES ILHES" }, { - "codePostal": "86490", - "codeCommune": "86019", - "libelleAcheminement": "BEAUMONT ST CYR", - "nomCommune": "BEAUMONT ST CYR" + "codePostal": "10150", + "codeCommune": "10352", + "libelleAcheminement": "STE MAURE", + "nomCommune": "STE MAURE" }, { - "codePostal": "86120", - "codeCommune": "86022", - "libelleAcheminement": "BERRIE", - "nomCommune": "BERRIE" + "codePostal": "11400", + "codeCommune": "11175", + "libelleAcheminement": "ISSEL", + "nomCommune": "ISSEL" }, { - "codePostal": "86580", - "codeCommune": "86027", - "libelleAcheminement": "BIARD", - "nomCommune": "BIARD" + "codePostal": "10700", + "codeCommune": "10354", + "libelleAcheminement": "ST NABORD SUR AUBE", + "nomCommune": "ST NABORD SUR AUBE" }, { - "codePostal": "86210", - "codeCommune": "86032", - "libelleAcheminement": "BONNEUIL MATOURS", - "nomCommune": "BONNEUIL MATOURS" + "codePostal": "11140", + "codeCommune": "11177", + "libelleAcheminement": "JOUCOU", + "nomCommune": "JOUCOU" }, { - "codePostal": "86190", - "codeCommune": "86050", - "libelleAcheminement": "CHALANDRAY", - "nomCommune": "CHALANDRAY" + "codePostal": "10120", + "codeCommune": "10360", + "libelleAcheminement": "ST POUANGE", + "nomCommune": "ST POUANGE" }, { - "codePostal": "86160", - "codeCommune": "86052", - "libelleAcheminement": "CHAMPAGNE ST HILAIRE", - "nomCommune": "CHAMPAGNE ST HILAIRE" + "codePostal": "11380", + "codeCommune": "11180", + "libelleAcheminement": "LABASTIDE ESPARBAIRENQUE", + "nomCommune": "LABASTIDE ESPARBAIRENQUE" }, { - "codePostal": "86300", - "codeCommune": "86070", - "libelleAcheminement": "CHAUVIGNY", - "nomCommune": "CHAUVIGNY" + "codePostal": "10360", + "codeCommune": "10364", + "libelleAcheminement": "ST USAGE", + "nomCommune": "ST USAGE" }, { - "codePostal": "86700", - "codeCommune": "86082", - "libelleAcheminement": "VALENCE EN POITOU", - "nomCommune": "VALENCE EN POITOU" + "codePostal": "11310", + "codeCommune": "11182", + "libelleAcheminement": "LACOMBE", + "nomCommune": "LACOMBE" }, { - "codePostal": "86700", - "codeCommune": "86082", - "libelleAcheminement": "VALENCE EN POITOU", - "nomCommune": "VALENCE EN POITOU" + "codePostal": "10600", + "codeCommune": "10368", + "libelleAcheminement": "SAVIERES", + "nomCommune": "SAVIERES" }, { - "codePostal": "86410", - "codeCommune": "86094", - "libelleAcheminement": "DIENNE", - "nomCommune": "DIENNE" + "codePostal": "11420", + "codeCommune": "11184", + "libelleAcheminement": "LAFAGE", + "nomCommune": "LAFAGE" }, { - "codePostal": "86340", - "codeCommune": "86099", - "libelleAcheminement": "FLEURE", - "nomCommune": "FLEURE" + "codePostal": "10200", + "codeCommune": "10377", + "libelleAcheminement": "THIL", + "nomCommune": "THIL" }, { - "codePostal": "86150", - "codeCommune": "86112", - "libelleAcheminement": "L ISLE JOURDAIN", - "nomCommune": "L ISLE JOURDAIN" + "codePostal": "11390", + "codeCommune": "11189", + "libelleAcheminement": "LAPRADE", + "nomCommune": "LAPRADE" }, { - "codePostal": "86380", - "codeCommune": "86115", - "libelleAcheminement": "JAUNAY MARIGNY", - "nomCommune": "JAUNAY MARIGNY" + "codePostal": "10700", + "codeCommune": "10379", + "libelleAcheminement": "TORCY LE GRAND", + "nomCommune": "TORCY LE GRAND" }, { - "codePostal": "86500", - "codeCommune": "86117", - "libelleAcheminement": "JOUHET", - "nomCommune": "JOUHET" + "codePostal": "11600", + "codeCommune": "11205", + "libelleAcheminement": "LIMOUSIS", + "nomCommune": "LIMOUSIS" }, { - "codePostal": "86190", - "codeCommune": "86121", - "libelleAcheminement": "LATILLE", - "nomCommune": "LATILLE" + "codePostal": "10290", + "codeCommune": "10383", + "libelleAcheminement": "TRANCAULT", + "nomCommune": "TRANCAULT" }, { - "codePostal": "86800", - "codeCommune": "86124", - "libelleAcheminement": "LAVOUX", - "nomCommune": "LAVOUX" + "codePostal": "11300", + "codeCommune": "11207", + "libelleAcheminement": "LOUPIA", + "nomCommune": "LOUPIA" }, { - "codePostal": "86140", - "codeCommune": "86128", - "libelleAcheminement": "LENCLOITRE", - "nomCommune": "LENCLOITRE" + "codePostal": "10700", + "codeCommune": "10386", + "libelleAcheminement": "TROUANS", + "nomCommune": "TROUANS" }, { - "codePostal": "86410", - "codeCommune": "86131", - "libelleAcheminement": "LHOMMAIZE", - "nomCommune": "LHOMMAIZE" + "codePostal": "11600", + "codeCommune": "11215", + "libelleAcheminement": "MALVES EN MINERVOIS", + "nomCommune": "MALVES EN MINERVOIS" }, { - "codePostal": "86800", - "codeCommune": "86135", - "libelleAcheminement": "LINIERS", - "nomCommune": "LINIERS" + "codePostal": "10150", + "codeCommune": "10391", + "libelleAcheminement": "VAILLY", + "nomCommune": "VAILLY" }, { - "codePostal": "86320", - "codeCommune": "86153", - "libelleAcheminement": "MAZEROLLES", - "nomCommune": "MAZEROLLES" + "codePostal": "11380", + "codeCommune": "11222", + "libelleAcheminement": "MAS CABARDES", + "nomCommune": "MAS CABARDES" }, { - "codePostal": "86110", - "codeCommune": "86160", - "libelleAcheminement": "MIREBEAU", - "nomCommune": "MIREBEAU" + "codePostal": "10140", + "codeCommune": "10397", + "libelleAcheminement": "VAUCHONVILLIERS", + "nomCommune": "VAUCHONVILLIERS" }, { - "codePostal": "86360", - "codeCommune": "86163", - "libelleAcheminement": "MONTAMISE", - "nomCommune": "MONTAMISE" + "codePostal": "11570", + "codeCommune": "11223", + "libelleAcheminement": "MAS DES COURS", + "nomCommune": "MAS DES COURS" }, { - "codePostal": "86500", - "codeCommune": "86170", - "libelleAcheminement": "MOULISMES", - "nomCommune": "MOULISMES" + "codePostal": "10360", + "codeCommune": "10404", + "libelleAcheminement": "VERPILLIERES SUR OURCE", + "nomCommune": "VERPILLIERES SUR OURCE" }, { - "codePostal": "86530", - "codeCommune": "86174", - "libelleAcheminement": "NAINTRE", - "nomCommune": "NAINTRE" + "codePostal": "11240", + "codeCommune": "11228", + "libelleAcheminement": "MAZEROLLES DU RAZES", + "nomCommune": "MAZEROLLES DU RAZES" }, { - "codePostal": "86230", - "codeCommune": "86182", - "libelleAcheminement": "ORCHES", - "nomCommune": "ORCHES" + "codePostal": "10500", + "codeCommune": "10411", + "libelleAcheminement": "LA VILLE AUX BOIS", + "nomCommune": "LA VILLE AUX BOIS" }, { - "codePostal": "86380", - "codeCommune": "86184", - "libelleAcheminement": "OUZILLY", - "nomCommune": "OUZILLY" + "codePostal": "11410", + "codeCommune": "11238", + "libelleAcheminement": "MOLLEVILLE", + "nomCommune": "MOLLEVILLE" }, { - "codePostal": "86350", - "codeCommune": "86189", - "libelleAcheminement": "PAYROUX", - "nomCommune": "PAYROUX" + "codePostal": "10350", + "codeCommune": "10414", + "libelleAcheminement": "VILLELOUP", + "nomCommune": "VILLELOUP" }, { - "codePostal": "86500", - "codeCommune": "86191", - "libelleAcheminement": "PINDRAY", - "nomCommune": "PINDRAY" + "codePostal": "11330", + "codeCommune": "11245", + "libelleAcheminement": "MONTGAILLARD", + "nomCommune": "MONTGAILLARD" }, { - "codePostal": "86120", - "codeCommune": "86196", - "libelleAcheminement": "POUANCAY", - "nomCommune": "POUANCAY" + "codePostal": "10260", + "codeCommune": "10419", + "libelleAcheminement": "VILLEMOYENNE", + "nomCommune": "VILLEMOYENNE" }, { - "codePostal": "86200", - "codeCommune": "86197", - "libelleAcheminement": "POUANT", - "nomCommune": "POUANT" + "codePostal": "11800", + "codeCommune": "11248", + "libelleAcheminement": "MONTIRAT", + "nomCommune": "MONTIRAT" }, { - "codePostal": "86800", - "codeCommune": "86198", - "libelleAcheminement": "POUILLE", - "nomCommune": "POUILLE" + "codePostal": "10370", + "codeCommune": "10420", + "libelleAcheminement": "VILLENAUXE LA GRANDE", + "nomCommune": "VILLENAUXE LA GRANDE" }, { - "codePostal": "86120", - "codeCommune": "86206", - "libelleAcheminement": "RASLAY", - "nomCommune": "RASLAY" + "codePostal": "11100", + "codeCommune": "11255", + "libelleAcheminement": "MONTREDON DES CORBIERES", + "nomCommune": "MONTREDON DES CORBIERES" }, { - "codePostal": "86120", - "codeCommune": "86210", - "libelleAcheminement": "ROIFFE", - "nomCommune": "ROIFFE" + "codePostal": "10400", + "codeCommune": "10421", + "libelleAcheminement": "LA VILLENEUVE AU CHATELOT", + "nomCommune": "LA VILLENEUVE AU CHATELOT" }, { - "codePostal": "86700", - "codeCommune": "86211", - "libelleAcheminement": "ROMAGNE", - "nomCommune": "ROMAGNE" + "codePostal": "11170", + "codeCommune": "11259", + "libelleAcheminement": "MOUSSOULENS", + "nomCommune": "MOUSSOULENS" }, { - "codePostal": "86130", - "codeCommune": "86222", - "libelleAcheminement": "ST GEORGES LES BAILLARGEAUX", - "nomCommune": "ST GEORGES LES BAILLARGEAUX" + "codePostal": "10700", + "codeCommune": "10430", + "libelleAcheminement": "VILLIERS HERBISSE", + "nomCommune": "VILLIERS HERBISSE" }, { - "codePostal": "86200", - "codeCommune": "86227", - "libelleAcheminement": "ST LAON", - "nomCommune": "ST LAON" + "codePostal": "11100", + "codeCommune": "11262", + "libelleAcheminement": "NARBONNE", + "nomCommune": "NARBONNE" }, { - "codePostal": "86300", - "codeCommune": "86233", - "libelleAcheminement": "VALDIVIENNE", - "nomCommune": "VALDIVIENNE" + "codePostal": "10130", + "codeCommune": "10441", + "libelleAcheminement": "VOSNON", + "nomCommune": "VOSNON" }, { - "codePostal": "86600", - "codeCommune": "86253", - "libelleAcheminement": "SANXAY", - "nomCommune": "SANXAY" + "codePostal": "11270", + "codeCommune": "11268", + "libelleAcheminement": "ORSANS", + "nomCommune": "ORSANS" }, { - "codePostal": "86160", - "codeCommune": "86264", - "libelleAcheminement": "SOMMIERES DU CLAIN", - "nomCommune": "SOMMIERES DU CLAIN" + "codePostal": "11110", + "codeCommune": "11014", + "libelleAcheminement": "ARMISSAN", + "nomCommune": "ARMISSAN" }, { - "codePostal": "86800", - "codeCommune": "86268", - "libelleAcheminement": "TERCE", - "nomCommune": "TERCE" + "codePostal": "11590", + "codeCommune": "11269", + "libelleAcheminement": "OUVEILLAN", + "nomCommune": "OUVEILLAN" }, { - "codePostal": "86350", - "codeCommune": "86276", - "libelleAcheminement": "USSON DU POITOU", - "nomCommune": "USSON DU POITOU" + "codePostal": "11140", + "codeCommune": "11017", + "libelleAcheminement": "ARTIGUES", + "nomCommune": "ARTIGUES" }, { - "codePostal": "86110", - "codeCommune": "86281", - "libelleAcheminement": "ST MARTIN LA PALLU", - "nomCommune": "ST MARTIN LA PALLU" + "codePostal": "11570", + "codeCommune": "11272", + "libelleAcheminement": "PALAJA", + "nomCommune": "PALAJA" }, { - "codePostal": "86170", - "codeCommune": "86281", - "libelleAcheminement": "ST MARTIN LA PALLU", - "nomCommune": "ST MARTIN LA PALLU" + "codePostal": "11140", + "codeCommune": "11031", + "libelleAcheminement": "BELFORT SUR REBENTY", + "nomCommune": "BELFORT SUR REBENTY" }, { - "codePostal": "86340", - "codeCommune": "86284", - "libelleAcheminement": "VERNON", - "nomCommune": "VERNON" + "codePostal": "11200", + "codeCommune": "11273", + "libelleAcheminement": "PARAZA", + "nomCommune": "PARAZA" }, { - "codePostal": "86340", - "codeCommune": "86290", - "libelleAcheminement": "LA VILLEDIEU DU CLAIN", - "nomCommune": "LA VILLEDIEU DU CLAIN" + "codePostal": "11240", + "codeCommune": "11032", + "libelleAcheminement": "BELLEGARDE DU RAZES", + "nomCommune": "BELLEGARDE DU RAZES" }, { - "codePostal": "86170", - "codeCommune": "86300", - "libelleAcheminement": "YVERSAY", - "nomCommune": "YVERSAY" + "codePostal": "11420", + "codeCommune": "11278", + "libelleAcheminement": "PECH LUNA", + "nomCommune": "PECH LUNA" }, { - "codePostal": "87250", - "codeCommune": "87014", - "libelleAcheminement": "BESSINES SUR GARTEMPE", - "nomCommune": "BESSINES SUR GARTEMPE" + "codePostal": "11420", + "codeCommune": "11033", + "libelleAcheminement": "BELPECH", + "nomCommune": "BELPECH" }, { - "codePostal": "87250", - "codeCommune": "87014", - "libelleAcheminement": "BESSINES SUR GARTEMPE", - "nomCommune": "BESSINES SUR GARTEMPE" + "codePostal": "11700", + "codeCommune": "11280", + "libelleAcheminement": "PEPIEUX", + "nomCommune": "PEPIEUX" }, { - "codePostal": "87300", - "codeCommune": "87017", - "libelleAcheminement": "BLANZAC", - "nomCommune": "BLANZAC" + "codePostal": "11140", + "codeCommune": "11047", + "libelleAcheminement": "LE BOUSQUET", + "nomCommune": "LE BOUSQUET" }, { - "codePostal": "87230", - "codeCommune": "87027", - "libelleAcheminement": "BUSSIERE GALANT", - "nomCommune": "BUSSIERE GALANT" + "codePostal": "11150", + "codeCommune": "11281", + "libelleAcheminement": "PEXIORA", + "nomCommune": "PEXIORA" }, { - "codePostal": "87320", - "codeCommune": "87028", - "libelleAcheminement": "VAL D OIRE ET GARTEMPE", - "nomCommune": "VAL D OIRE ET GARTEMPE" + "codePostal": "11150", + "codeCommune": "11049", + "libelleAcheminement": "BRAM", + "nomCommune": "BRAM" }, { - "codePostal": "87140", - "codeCommune": "87033", - "libelleAcheminement": "CHAMBORET", - "nomCommune": "CHAMBORET" + "codePostal": "11300", + "codeCommune": "11289", + "libelleAcheminement": "PIEUSSE", + "nomCommune": "PIEUSSE" }, { - "codePostal": "87270", - "codeCommune": "87038", - "libelleAcheminement": "CHAPTELAT", - "nomCommune": "CHAPTELAT" + "codePostal": "11420", + "codeCommune": "11057", + "libelleAcheminement": "CAHUZAC", + "nomCommune": "CAHUZAC" }, { - "codePostal": "87310", - "codeCommune": "87046", - "libelleAcheminement": "COGNAC LA FORET", - "nomCommune": "COGNAC LA FORET" + "codePostal": "11400", + "codeCommune": "11292", + "libelleAcheminement": "LA POMAREDE", + "nomCommune": "LA POMAREDE" }, { - "codePostal": "87140", - "codeCommune": "87047", - "libelleAcheminement": "COMPREIGNAC", - "nomCommune": "COMPREIGNAC" + "codePostal": "11240", + "codeCommune": "11058", + "libelleAcheminement": "CAILHAU", + "nomCommune": "CAILHAU" }, { - "codePostal": "87120", - "codeCommune": "87058", - "libelleAcheminement": "DOMPS", - "nomCommune": "DOMPS" + "codePostal": "11140", + "codeCommune": "11302", + "libelleAcheminement": "PUILAURENS", + "nomCommune": "PUILAURENS" }, { - "codePostal": "87210", - "codeCommune": "87059", - "libelleAcheminement": "LE DORAT", - "nomCommune": "LE DORAT" + "codePostal": "11260", + "codeCommune": "11063", + "libelleAcheminement": "CAMPAGNE SUR AUDE", + "nomCommune": "CAMPAGNE SUR AUDE" }, { - "codePostal": "87250", - "codeCommune": "87067", - "libelleAcheminement": "FOLLES", - "nomCommune": "FOLLES" + "codePostal": "11500", + "codeCommune": "11306", + "libelleAcheminement": "QUIRBAJOU", + "nomCommune": "QUIRBAJOU" }, { - "codePostal": "87170", - "codeCommune": "87075", - "libelleAcheminement": "ISLE", - "nomCommune": "ISLE" + "codePostal": "11160", + "codeCommune": "11075", + "libelleAcheminement": "CASTANS", + "nomCommune": "CASTANS" }, { - "codePostal": "87370", - "codeCommune": "87076", - "libelleAcheminement": "JABREILLES LES BORDES", - "nomCommune": "JABREILLES LES BORDES" + "codePostal": "11190", + "codeCommune": "11310", + "libelleAcheminement": "RENNES LES BAINS", + "nomCommune": "RENNES LES BAINS" }, { - "codePostal": "87890", - "codeCommune": "87080", - "libelleAcheminement": "JOUAC", - "nomCommune": "JOUAC" + "codePostal": "11700", + "codeCommune": "11077", + "libelleAcheminement": "CASTELNAU D AUDE", + "nomCommune": "CASTELNAU D AUDE" }, { - "codePostal": "87500", - "codeCommune": "87082", - "libelleAcheminement": "LADIGNAC LE LONG", - "nomCommune": "LADIGNAC LE LONG" + "codePostal": "11230", + "codeCommune": "11316", + "libelleAcheminement": "RIVEL", + "nomCommune": "RIVEL" }, { - "codePostal": "87100", - "codeCommune": "87085", - "libelleAcheminement": "LIMOGES", - "nomCommune": "LIMOGES" + "codePostal": "11230", + "codeCommune": "11080", + "libelleAcheminement": "VAL DE LAMBRONNE", + "nomCommune": "VAL DE LAMBRONNE" }, { - "codePostal": "87280", - "codeCommune": "87085", - "libelleAcheminement": "LIMOGES", - "nomCommune": "LIMOGES" + "codePostal": "11140", + "codeCommune": "11317", + "libelleAcheminement": "RODOME", + "nomCommune": "RODOME" }, { - "codePostal": "87380", - "codeCommune": "87088", - "libelleAcheminement": "MAGNAC BOURG", - "nomCommune": "MAGNAC BOURG" + "codePostal": "11250", + "codeCommune": "11082", + "libelleAcheminement": "CAUNETTE SUR LAUQUET", + "nomCommune": "CAUNETTE SUR LAUQUET" }, { - "codePostal": "87190", - "codeCommune": "87089", - "libelleAcheminement": "MAGNAC LAVAL", - "nomCommune": "MAGNAC LAVAL" + "codePostal": "11200", + "codeCommune": "11324", + "libelleAcheminement": "ROUBIA", + "nomCommune": "ROUBIA" }, { - "codePostal": "87440", - "codeCommune": "87091", - "libelleAcheminement": "MAISONNAIS SUR TARDOIRE", - "nomCommune": "MAISONNAIS SUR TARDOIRE" + "codePostal": "11170", + "codeCommune": "11084", + "libelleAcheminement": "CAUX ET SAUZENS", + "nomCommune": "CAUX ET SAUZENS" }, { - "codePostal": "87800", - "codeCommune": "87096", - "libelleAcheminement": "LA MEYZE", - "nomCommune": "LA MEYZE" + "codePostal": "11250", + "codeCommune": "11325", + "libelleAcheminement": "ROUFFIAC D AUDE", + "nomCommune": "ROUFFIAC D AUDE" }, { - "codePostal": "87140", - "codeCommune": "87103", - "libelleAcheminement": "NANTIAT", - "nomCommune": "NANTIAT" + "codePostal": "11570", + "codeCommune": "11085", + "libelleAcheminement": "CAVANAC", + "nomCommune": "CAVANAC" }, { - "codePostal": "87120", - "codeCommune": "87104", - "libelleAcheminement": "NEDDE", - "nomCommune": "NEDDE" + "codePostal": "11270", + "codeCommune": "11331", + "libelleAcheminement": "ST AMANS", + "nomCommune": "ST AMANS" }, { - "codePostal": "87130", - "codeCommune": "87105", - "libelleAcheminement": "NEUVIC ENTIER", - "nomCommune": "NEUVIC ENTIER" + "codePostal": "11270", + "codeCommune": "11087", + "libelleAcheminement": "CAZALRENOUX", + "nomCommune": "CAZALRENOUX" }, { - "codePostal": "87350", - "codeCommune": "87114", - "libelleAcheminement": "PANAZOL", - "nomCommune": "PANAZOL" + "codePostal": "11410", + "codeCommune": "11334", + "libelleAcheminement": "STE CAMELLE", + "nomCommune": "STE CAMELLE" }, { - "codePostal": "87260", - "codeCommune": "87119", - "libelleAcheminement": "PIERRE BUFFIERE", - "nomCommune": "PIERRE BUFFIERE" + "codePostal": "11160", + "codeCommune": "11092", + "libelleAcheminement": "CITOU", + "nomCommune": "CITOU" }, { - "codePostal": "87290", - "codeCommune": "87121", - "libelleAcheminement": "RANCON", - "nomCommune": "RANCON" + "codePostal": "11230", + "codeCommune": "11336", + "libelleAcheminement": "STE COLOMBE SUR L HERS", + "nomCommune": "STE COLOMBE SUR L HERS" }, { - "codePostal": "87600", - "codeCommune": "87126", - "libelleAcheminement": "ROCHECHOUART", - "nomCommune": "ROCHECHOUART" + "codePostal": "11200", + "codeCommune": "11098", + "libelleAcheminement": "CONILHAC CORBIERES", + "nomCommune": "CONILHAC CORBIERES" }, { - "codePostal": "87140", - "codeCommune": "87128", - "libelleAcheminement": "ST PARDOUX LE LAC", - "nomCommune": "ST PARDOUX LE LAC" + "codePostal": "11170", + "codeCommune": "11357", + "libelleAcheminement": "ST MARTIN LE VIEIL", + "nomCommune": "ST MARTIN LE VIEIL" }, { - "codePostal": "87130", - "codeCommune": "87130", - "libelleAcheminement": "ROZIERS ST GEORGES", - "nomCommune": "ROZIERS ST GEORGES" + "codePostal": "11190", + "codeCommune": "11103", + "libelleAcheminement": "COUIZA", + "nomCommune": "COUIZA" }, { - "codePostal": "87720", - "codeCommune": "87131", - "libelleAcheminement": "SAILLAT SUR VIENNE", - "nomCommune": "SAILLAT SUR VIENNE" + "codePostal": "11120", + "codeCommune": "11366", + "libelleAcheminement": "STE VALIERE", + "nomCommune": "STE VALIERE" }, { - "codePostal": "87120", - "codeCommune": "87132", - "libelleAcheminement": "ST AMAND LE PETIT", - "nomCommune": "ST AMAND LE PETIT" + "codePostal": "11240", + "codeCommune": "11108", + "libelleAcheminement": "LA COURTETE", + "nomCommune": "LA COURTETE" }, { - "codePostal": "87150", - "codeCommune": "87137", - "libelleAcheminement": "ST BAZILE", - "nomCommune": "ST BAZILE" + "codePostal": "11310", + "codeCommune": "11367", + "libelleAcheminement": "SAISSAC", + "nomCommune": "SAISSAC" }, { - "codePostal": "87300", - "codeCommune": "87139", - "libelleAcheminement": "ST BONNET DE BELLAC", - "nomCommune": "ST BONNET DE BELLAC" + "codePostal": "11190", + "codeCommune": "11109", + "libelleAcheminement": "COUSTAUSSA", + "nomCommune": "COUSTAUSSA" }, { - "codePostal": "87400", - "codeCommune": "87142", - "libelleAcheminement": "ST DENIS DES MURS", - "nomCommune": "ST DENIS DES MURS" + "codePostal": "11600", + "codeCommune": "11368", + "libelleAcheminement": "SALLELES CABARDES", + "nomCommune": "SALLELES CABARDES" }, { - "codePostal": "87300", - "codeCommune": "87155", - "libelleAcheminement": "ST JUNIEN LES COMBES", - "nomCommune": "ST JUNIEN LES COMBES" + "codePostal": "11330", + "codeCommune": "11117", + "libelleAcheminement": "DAVEJEAN", + "nomCommune": "DAVEJEAN" }, { - "codePostal": "87310", - "codeCommune": "87158", - "libelleAcheminement": "ST LAURENT SUR GORRE", - "nomCommune": "ST LAURENT SUR GORRE" + "codePostal": "11240", + "codeCommune": "11375", + "libelleAcheminement": "SEIGNALENS", + "nomCommune": "SEIGNALENS" }, { - "codePostal": "87340", - "codeCommune": "87159", - "libelleAcheminement": "ST LEGER LA MONTAGNE", - "nomCommune": "ST LEGER LA MONTAGNE" + "codePostal": "11350", + "codeCommune": "11123", + "libelleAcheminement": "DUILHAC SOUS PEYREPERTUSE", + "nomCommune": "DUILHAC SOUS PEYREPERTUSE" }, { - "codePostal": "87190", - "codeCommune": "87160", - "libelleAcheminement": "ST LEGER MAGNAZEIX", - "nomCommune": "ST LEGER MAGNAZEIX" + "codePostal": "11190", + "codeCommune": "11376", + "libelleAcheminement": "LA SERPENT", + "nomCommune": "LA SERPENT" }, { - "codePostal": "87700", - "codeCommune": "87166", - "libelleAcheminement": "ST MARTIN LE VIEUX", - "nomCommune": "ST MARTIN LE VIEUX" + "codePostal": "11260", + "codeCommune": "11131", + "libelleAcheminement": "VAL DU FABY", + "nomCommune": "VAL DU FABY" }, { - "codePostal": "87290", - "codeCommune": "87180", - "libelleAcheminement": "ST SORNIN LEULAC", - "nomCommune": "ST SORNIN LEULAC" + "codePostal": "11220", + "codeCommune": "11378", + "libelleAcheminement": "SERVIES EN VAL", + "nomCommune": "SERVIES EN VAL" }, { - "codePostal": "87370", - "codeCommune": "87181", - "libelleAcheminement": "ST SULPICE LAURIERE", - "nomCommune": "ST SULPICE LAURIERE" + "codePostal": "11270", + "codeCommune": "11136", + "libelleAcheminement": "FANJEAUX", + "nomCommune": "FANJEAUX" }, { - "codePostal": "87440", - "codeCommune": "87189", - "libelleAcheminement": "LES SALLES LAVAUGUYON", - "nomCommune": "LES SALLES LAVAUGUYON" + "codePostal": "11230", + "codeCommune": "11380", + "libelleAcheminement": "SONNAC SUR L HERS", + "nomCommune": "SONNAC SUR L HERS" }, { - "codePostal": "87360", - "codeCommune": "87200", - "libelleAcheminement": "VERNEUIL MOUSTIERS", - "nomCommune": "VERNEUIL MOUSTIERS" + "codePostal": "11400", + "codeCommune": "11138", + "libelleAcheminement": "FENDEILLE", + "nomCommune": "FENDEILLE" }, { - "codePostal": "87430", - "codeCommune": "87201", - "libelleAcheminement": "VERNEUIL SUR VIENNE", - "nomCommune": "VERNEUIL SUR VIENNE" + "codePostal": "11190", + "codeCommune": "11381", + "libelleAcheminement": "SOUGRAIGNE", + "nomCommune": "SOUGRAIGNE" }, { - "codePostal": "87520", - "codeCommune": "87202", - "libelleAcheminement": "VEYRAC", - "nomCommune": "VEYRAC" + "codePostal": "11240", + "codeCommune": "11139", + "libelleAcheminement": "FENOUILLET DU RAZES", + "nomCommune": "FENOUILLET DU RAZES" }, { - "codePostal": "88700", - "codeCommune": "88008", - "libelleAcheminement": "ANGLEMONT", - "nomCommune": "ANGLEMONT" + "codePostal": "11330", + "codeCommune": "11388", + "libelleAcheminement": "TERMES", + "nomCommune": "TERMES" }, { - "codePostal": "88380", - "codeCommune": "88012", - "libelleAcheminement": "ARCHETTES", - "nomCommune": "ARCHETTES" + "codePostal": "11510", + "codeCommune": "11144", + "libelleAcheminement": "FITOU", + "nomCommune": "FITOU" }, { - "codePostal": "88260", - "codeCommune": "88016", - "libelleAcheminement": "ATTIGNY", - "nomCommune": "ATTIGNY" + "codePostal": "11400", + "codeCommune": "11399", + "libelleAcheminement": "TREVILLE", + "nomCommune": "TREVILLE" }, { - "codePostal": "88600", - "codeCommune": "88050", - "libelleAcheminement": "BELMONT SUR BUTTANT", - "nomCommune": "BELMONT SUR BUTTANT" + "codePostal": "11390", + "codeCommune": "11150", + "libelleAcheminement": "FONTIERS CABARDES", + "nomCommune": "FONTIERS CABARDES" }, { - "codePostal": "88500", - "codeCommune": "88056", - "libelleAcheminement": "BETTONCOURT", - "nomCommune": "BETTONCOURT" + "codePostal": "11120", + "codeCommune": "11405", + "libelleAcheminement": "VENTENAC EN MINERVOIS", + "nomCommune": "VENTENAC EN MINERVOIS" }, { - "codePostal": "88600", - "codeCommune": "88064", - "libelleAcheminement": "BOIS DE CHAMP", - "nomCommune": "BOIS DE CHAMP" + "codePostal": "11600", + "codeCommune": "11154", + "libelleAcheminement": "FOURNES CABARDES", + "nomCommune": "FOURNES CABARDES" }, { - "codePostal": "88130", - "codeCommune": "88070", - "libelleAcheminement": "BOUXURULLES", - "nomCommune": "BOUXURULLES" + "codePostal": "11600", + "codeCommune": "11411", + "libelleAcheminement": "VILLANIERE", + "nomCommune": "VILLANIERE" }, { - "codePostal": "88130", - "codeCommune": "88073", - "libelleAcheminement": "BRANTIGNY", - "nomCommune": "BRANTIGNY" + "codePostal": "11140", + "codeCommune": "11160", + "libelleAcheminement": "GALINAGUES", + "nomCommune": "GALINAGUES" }, { - "codePostal": "88600", - "codeCommune": "88076", - "libelleAcheminement": "BROUVELIEURES", - "nomCommune": "BROUVELIEURES" + "codePostal": "11600", + "codeCommune": "11413", + "libelleAcheminement": "VILLARDONNEL", + "nomCommune": "VILLARDONNEL" }, { - "codePostal": "88110", - "codeCommune": "88082", - "libelleAcheminement": "CELLES SUR PLAINE", - "nomCommune": "CELLES SUR PLAINE" + "codePostal": "11250", + "codeCommune": "11161", + "libelleAcheminement": "GARDIE", + "nomCommune": "GARDIE" }, { - "codePostal": "88270", - "codeCommune": "88092", - "libelleAcheminement": "CHARMOIS L ORGUEILLEUX", - "nomCommune": "CHARMOIS L ORGUEILLEUX" + "codePostal": "11420", + "codeCommune": "11419", + "libelleAcheminement": "VILLAUTOU", + "nomCommune": "VILLAUTOU" }, { - "codePostal": "88330", - "codeCommune": "88094", - "libelleAcheminement": "CHATEL SUR MOSELLE", - "nomCommune": "CHATEL SUR MOSELLE" + "codePostal": "11140", + "codeCommune": "11163", + "libelleAcheminement": "GINCLA", + "nomCommune": "GINCLA" }, { - "codePostal": "88170", - "codeCommune": "88095", - "libelleAcheminement": "CHATENOIS", - "nomCommune": "CHATENOIS" + "codePostal": "11200", + "codeCommune": "11421", + "libelleAcheminement": "VILLEDAIGNE", + "nomCommune": "VILLEDAIGNE" }, { - "codePostal": "88500", - "codeCommune": "88097", - "libelleAcheminement": "CHAUFFECOURT", - "nomCommune": "CHAUFFECOURT" + "codePostal": "11120", + "codeCommune": "11164", + "libelleAcheminement": "GINESTAS", + "nomCommune": "GINESTAS" }, { - "codePostal": "88390", - "codeCommune": "88098", - "libelleAcheminement": "CHAUMOUSEY", - "nomCommune": "CHAUMOUSEY" + "codePostal": "11160", + "codeCommune": "11433", + "libelleAcheminement": "VILLENEUVE MINERVOIS", + "nomCommune": "VILLENEUVE MINERVOIS" }, { - "codePostal": "88410", - "codeCommune": "88105", - "libelleAcheminement": "CLAUDON", - "nomCommune": "CLAUDON" + "codePostal": "11220", + "codeCommune": "11176", + "libelleAcheminement": "JONQUIERES", + "nomCommune": "JONQUIERES" }, { - "codePostal": "88230", - "codeCommune": "88106", - "libelleAcheminement": "BAN SUR MEURTHE CLEFCY", - "nomCommune": "BAN SUR MEURTHE CLEFCY" + "codePostal": "11360", + "codeCommune": "11436", + "libelleAcheminement": "VILLESEQUE DES CORBIERES", + "nomCommune": "VILLESEQUE DES CORBIERES" }, { - "codePostal": "88630", - "codeCommune": "88107", - "libelleAcheminement": "CLEREY LA COTE", - "nomCommune": "CLEREY LA COTE" + "codePostal": "11320", + "codeCommune": "11178", + "libelleAcheminement": "LABASTIDE D ANJOU", + "nomCommune": "LABASTIDE D ANJOU" }, { - "codePostal": "88140", - "codeCommune": "88114", - "libelleAcheminement": "CONTREXEVILLE", - "nomCommune": "CONTREXEVILLE" + "codePostal": "11170", + "codeCommune": "11437", + "libelleAcheminement": "VILLESEQUELANDE", + "nomCommune": "VILLESEQUELANDE" }, { - "codePostal": "88630", - "codeCommune": "88118", - "libelleAcheminement": "COUSSEY", - "nomCommune": "COUSSEY" + "codePostal": "11480", + "codeCommune": "11188", + "libelleAcheminement": "LA PALME", + "nomCommune": "LA PALME" }, { - "codePostal": "88520", - "codeCommune": "88120", - "libelleAcheminement": "LA CROIX AUX MINES", - "nomCommune": "LA CROIX AUX MINES" + "codePostal": "11220", + "codeCommune": "11440", + "libelleAcheminement": "VILLETRITOULS", + "nomCommune": "VILLETRITOULS" }, { - "codePostal": "88260", - "codeCommune": "88124", - "libelleAcheminement": "DARNEY", - "nomCommune": "DARNEY" + "codePostal": "11290", + "codeCommune": "11199", + "libelleAcheminement": "LAVALETTE", + "nomCommune": "LAVALETTE" }, { - "codePostal": "88000", - "codeCommune": "88134", - "libelleAcheminement": "DINOZE", - "nomCommune": "DINOZE" + "codePostal": "12430", + "codeCommune": "12006", + "libelleAcheminement": "ALRANCE", + "nomCommune": "ALRANCE" }, { - "codePostal": "88170", - "codeCommune": "88137", - "libelleAcheminement": "DOLAINCOURT", - "nomCommune": "DOLAINCOURT" + "codePostal": "11370", + "codeCommune": "11202", + "libelleAcheminement": "LEUCATE", + "nomCommune": "LEUCATE" }, { - "codePostal": "88800", - "codeCommune": "88146", - "libelleAcheminement": "DOMJULIEN", - "nomCommune": "DOMJULIEN" + "codePostal": "12390", + "codeCommune": "12008", + "libelleAcheminement": "ANGLARS ST FELIX", + "nomCommune": "ANGLARS ST FELIX" }, { - "codePostal": "88600", - "codeCommune": "88152", - "libelleAcheminement": "DOMPIERRE", - "nomCommune": "DOMPIERRE" + "codePostal": "11200", + "codeCommune": "11203", + "libelleAcheminement": "LEZIGNAN CORBIERES", + "nomCommune": "LEZIGNAN CORBIERES" }, { - "codePostal": "88700", - "codeCommune": "88156", - "libelleAcheminement": "DONCIERES", - "nomCommune": "DONCIERES" + "codePostal": "12430", + "codeCommune": "12017", + "libelleAcheminement": "AYSSENES", + "nomCommune": "AYSSENES" }, { - "codePostal": "88220", - "codeCommune": "88157", - "libelleAcheminement": "DOUNOUX", - "nomCommune": "DOUNOUX" + "codePostal": "11200", + "codeCommune": "11210", + "libelleAcheminement": "LUC SUR ORBIEU", + "nomCommune": "LUC SUR ORBIEU" }, { - "codePostal": "88000", - "codeCommune": "88160", - "libelleAcheminement": "EPINAL", - "nomCommune": "EPINAL" + "codePostal": "12200", + "codeCommune": "12021", + "libelleAcheminement": "LE BAS SEGALA", + "nomCommune": "LE BAS SEGALA" }, { - "codePostal": "88130", - "codeCommune": "88163", - "libelleAcheminement": "ESSEGNEY", - "nomCommune": "ESSEGNEY" + "codePostal": "11300", + "codeCommune": "11211", + "libelleAcheminement": "MAGRIE", + "nomCommune": "MAGRIE" }, { - "codePostal": "88500", - "codeCommune": "88164", - "libelleAcheminement": "ESTRENNES", - "nomCommune": "ESTRENNES" + "codePostal": "12240", + "codeCommune": "12021", + "libelleAcheminement": "LE BAS SEGALA", + "nomCommune": "LE BAS SEGALA" }, { - "codePostal": "88460", - "codeCommune": "88167", - "libelleAcheminement": "FAUCOMPIERRE", - "nomCommune": "FAUCOMPIERRE" + "codePostal": "11140", + "codeCommune": "11219", + "libelleAcheminement": "MARSA", + "nomCommune": "MARSA" }, { - "codePostal": "88320", - "codeCommune": "88179", - "libelleAcheminement": "FOUCHECOURT", - "nomCommune": "FOUCHECOURT" + "codePostal": "12270", + "codeCommune": "12029", + "libelleAcheminement": "BOR ET BAR", + "nomCommune": "BOR ET BAR" }, { - "codePostal": "88230", - "codeCommune": "88181", - "libelleAcheminement": "FRAIZE", - "nomCommune": "FRAIZE" + "codePostal": "11400", + "codeCommune": "11225", + "libelleAcheminement": "MAS SAINTES PUELLES", + "nomCommune": "MAS SAINTES PUELLES" }, { - "codePostal": "88140", - "codeCommune": "88195", - "libelleAcheminement": "GENDREVILLE", - "nomCommune": "GENDREVILLE" + "codePostal": "12560", + "codeCommune": "12047", + "libelleAcheminement": "CAMPAGNAC", + "nomCommune": "CAMPAGNAC" }, { - "codePostal": "88430", - "codeCommune": "88198", - "libelleAcheminement": "GERBEPAL", - "nomCommune": "GERBEPAL" + "codePostal": "11220", + "codeCommune": "11227", + "libelleAcheminement": "MAYRONNES", + "nomCommune": "MAYRONNES" }, { - "codePostal": "88320", - "codeCommune": "88199", - "libelleAcheminement": "GIGNEVILLE", - "nomCommune": "GIGNEVILLE" + "codePostal": "12140", + "codeCommune": "12048", + "libelleAcheminement": "CAMPOURIEZ", + "nomCommune": "CAMPOURIEZ" }, { - "codePostal": "88600", - "codeCommune": "88203", - "libelleAcheminement": "GIRECOURT SUR DURBION", - "nomCommune": "GIRECOURT SUR DURBION" + "codePostal": "11380", + "codeCommune": "11232", + "libelleAcheminement": "MIRAVAL CABARDES", + "nomCommune": "MIRAVAL CABARDES" }, { - "codePostal": "88340", - "codeCommune": "88205", - "libelleAcheminement": "GIRMONT VAL D AJOL", - "nomCommune": "GIRMONT VAL D AJOL" + "codePostal": "12460", + "codeCommune": "12048", + "libelleAcheminement": "CAMPOURIEZ", + "nomCommune": "CAMPOURIEZ" }, { - "codePostal": "88490", - "codeCommune": "88213", - "libelleAcheminement": "LA GRANDE FOSSE", - "nomCommune": "LA GRANDE FOSSE" + "codePostal": "11120", + "codeCommune": "11233", + "libelleAcheminement": "MIREPEISSET", + "nomCommune": "MIREPEISSET" }, { - "codePostal": "88410", - "codeCommune": "88220", - "libelleAcheminement": "GRIGNONCOURT", - "nomCommune": "GRIGNONCOURT" + "codePostal": "12580", + "codeCommune": "12049", + "libelleAcheminement": "CAMPUAC", + "nomCommune": "CAMPUAC" }, { - "codePostal": "88450", - "codeCommune": "88223", - "libelleAcheminement": "GUGNEY AUX AULX", - "nomCommune": "GUGNEY AUX AULX" + "codePostal": "11400", + "codeCommune": "11234", + "libelleAcheminement": "MIREVAL LAURAGAIS", + "nomCommune": "MIREVAL LAURAGAIS" }, { - "codePostal": "88800", - "codeCommune": "88231", - "libelleAcheminement": "HAREVILLE", - "nomCommune": "HAREVILLE" + "codePostal": "12290", + "codeCommune": "12050", + "libelleAcheminement": "CANET DE SALARS", + "nomCommune": "CANET DE SALARS" }, { - "codePostal": "88270", - "codeCommune": "88237", - "libelleAcheminement": "HENNECOURT", - "nomCommune": "HENNECOURT" + "codePostal": "11580", + "codeCommune": "11235", + "libelleAcheminement": "MISSEGRE", + "nomCommune": "MISSEGRE" }, { - "codePostal": "88600", - "codeCommune": "88240", - "libelleAcheminement": "HERPELMONT", - "nomCommune": "HERPELMONT" + "codePostal": "12420", + "codeCommune": "12051", + "libelleAcheminement": "CANTOIN", + "nomCommune": "CANTOIN" }, { - "codePostal": "88170", - "codeCommune": "88241", - "libelleAcheminement": "HOUECOURT", - "nomCommune": "HOUECOURT" + "codePostal": "11420", + "codeCommune": "11236", + "libelleAcheminement": "MOLANDIER", + "nomCommune": "MOLANDIER" }, { - "codePostal": "88430", - "codeCommune": "88244", - "libelleAcheminement": "LA HOUSSIERE", - "nomCommune": "LA HOUSSIERE" + "codePostal": "12130", + "codeCommune": "12055", + "libelleAcheminement": "LA CAPELLE BONANCE", + "nomCommune": "LA CAPELLE BONANCE" }, { - "codePostal": "88500", - "codeCommune": "88246", - "libelleAcheminement": "HYMONT", - "nomCommune": "HYMONT" + "codePostal": "11190", + "codeCommune": "11240", + "libelleAcheminement": "MONTAZELS", + "nomCommune": "MONTAZELS" }, { - "codePostal": "88150", - "codeCommune": "88247", - "libelleAcheminement": "IGNEY", - "nomCommune": "IGNEY" + "codePostal": "12120", + "codeCommune": "12065", + "libelleAcheminement": "CENTRES", + "nomCommune": "CENTRES" }, { - "codePostal": "88700", - "codeCommune": "88251", - "libelleAcheminement": "JEANMENIL", - "nomCommune": "JEANMENIL" + "codePostal": "11700", + "codeCommune": "11241", + "libelleAcheminement": "MONTBRUN DES CORBIERES", + "nomCommune": "MONTBRUN DES CORBIERES" }, { - "codePostal": "88640", - "codeCommune": "88263", - "libelleAcheminement": "LAVELINE DU HOUX", - "nomCommune": "LAVELINE DU HOUX" + "codePostal": "12540", + "codeCommune": "12067", + "libelleAcheminement": "LE CLAPIER", + "nomCommune": "LE CLAPIER" }, { - "codePostal": "88270", - "codeCommune": "88264", - "libelleAcheminement": "LEGEVILLE ET BONFAYS", - "nomCommune": "LEGEVILLE ET BONFAYS" + "codePostal": "11240", + "codeCommune": "11246", + "libelleAcheminement": "MONTGRADAIL", + "nomCommune": "MONTGRADAIL" }, { - "codePostal": "88170", - "codeCommune": "88278", - "libelleAcheminement": "MACONCOURT", - "nomCommune": "MACONCOURT" + "codePostal": "12370", + "codeCommune": "12069", + "libelleAcheminement": "COMBRET", + "nomCommune": "COMBRET" }, { - "codePostal": "88320", - "codeCommune": "88289", - "libelleAcheminement": "MARTIGNY LES BAINS", - "nomCommune": "MARTIGNY LES BAINS" + "codePostal": "11320", + "codeCommune": "11252", + "libelleAcheminement": "MONTMAUR", + "nomCommune": "MONTMAUR" }, { - "codePostal": "88500", - "codeCommune": "88299", - "libelleAcheminement": "MENIL EN XAINTOIS", - "nomCommune": "MENIL EN XAINTOIS" + "codePostal": "12230", + "codeCommune": "12082", + "libelleAcheminement": "LA COUVERTOIRADE", + "nomCommune": "LA COUVERTOIRADE" }, { - "codePostal": "88500", - "codeCommune": "88304", - "libelleAcheminement": "MIRECOURT", - "nomCommune": "MIRECOURT" + "codePostal": "11200", + "codeCommune": "11256", + "libelleAcheminement": "MONTSERET", + "nomCommune": "MONTSERET" }, { - "codePostal": "88320", - "codeCommune": "88314", - "libelleAcheminement": "MORIZECOURT", - "nomCommune": "MORIZECOURT" + "codePostal": "12100", + "codeCommune": "12084", + "libelleAcheminement": "CREISSELS", + "nomCommune": "CREISSELS" }, { - "codePostal": "88170", - "codeCommune": "88324", - "libelleAcheminement": "LA NEUVEVILLE SOUS CHATENOIS", - "nomCommune": "LA NEUVEVILLE SOUS CHATENOIS" + "codePostal": "11800", + "codeCommune": "11257", + "libelleAcheminement": "MONZE", + "nomCommune": "MONZE" }, { - "codePostal": "88800", - "codeCommune": "88325", - "libelleAcheminement": "LA NEUVEVILLE SOUS MONTFORT", - "nomCommune": "LA NEUVEVILLE SOUS MONTFORT" + "codePostal": "12640", + "codeCommune": "12086", + "libelleAcheminement": "LA CRESSE", + "nomCommune": "LA CRESSE" }, { - "codePostal": "88100", - "codeCommune": "88326", - "libelleAcheminement": "NEUVILLERS SUR FAVE", - "nomCommune": "NEUVILLERS SUR FAVE" + "codePostal": "11120", + "codeCommune": "11258", + "libelleAcheminement": "MOUSSAN", + "nomCommune": "MOUSSAN" }, { - "codePostal": "88800", - "codeCommune": "88343", - "libelleAcheminement": "PAREY SOUS MONTFORT", - "nomCommune": "PAREY SOUS MONTFORT" + "codePostal": "12510", + "codeCommune": "12090", + "libelleAcheminement": "DRUELLE BALSAC", + "nomCommune": "DRUELLE BALSAC" }, { - "codePostal": "88270", - "codeCommune": "88347", - "libelleAcheminement": "PIERREFITTE", - "nomCommune": "PIERREFITTE" + "codePostal": "11330", + "codeCommune": "11260", + "libelleAcheminement": "MOUTHOUMET", + "nomCommune": "MOUTHOUMET" }, { - "codePostal": "88230", - "codeCommune": "88349", - "libelleAcheminement": "PLAINFAING", - "nomCommune": "PLAINFAING" + "codePostal": "12510", + "codeCommune": "12090", + "libelleAcheminement": "DRUELLE BALSAC", + "nomCommune": "DRUELLE BALSAC" }, { - "codePostal": "88170", - "codeCommune": "88350", - "libelleAcheminement": "PLEUVEZAIN", - "nomCommune": "PLEUVEZAIN" + "codePostal": "11200", + "codeCommune": "11264", + "libelleAcheminement": "NEVIAN", + "nomCommune": "NEVIAN" }, { - "codePostal": "88370", - "codeCommune": "88351", - "libelleAcheminement": "PLOMBIERES LES BAINS", - "nomCommune": "PLOMBIERES LES BAINS" + "codePostal": "12500", + "codeCommune": "12096", + "libelleAcheminement": "ESPALION", + "nomCommune": "ESPALION" }, { - "codePostal": "88370", - "codeCommune": "88351", - "libelleAcheminement": "PLOMBIERES LES BAINS", - "nomCommune": "PLOMBIERES LES BAINS" + "codePostal": "11330", + "codeCommune": "11271", + "libelleAcheminement": "PALAIRAC", + "nomCommune": "PALAIRAC" }, { - "codePostal": "88600", - "codeCommune": "88356", - "libelleAcheminement": "LES POULIERES", - "nomCommune": "LES POULIERES" + "codePostal": "12160", + "codeCommune": "12113", + "libelleAcheminement": "GRAMOND", + "nomCommune": "GRAMOND" }, { - "codePostal": "88330", - "codeCommune": "88379", - "libelleAcheminement": "REHAINCOURT", - "nomCommune": "REHAINCOURT" + "codePostal": "11420", + "codeCommune": "11277", + "libelleAcheminement": "PECHARIC ET LE PY", + "nomCommune": "PECHARIC ET LE PY" }, { - "codePostal": "88260", - "codeCommune": "88381", - "libelleAcheminement": "RELANGES", - "nomCommune": "RELANGES" + "codePostal": "12310", + "codeCommune": "12120", + "libelleAcheminement": "LAISSAC SEVERAC L EGLISE", + "nomCommune": "LAISSAC SEVERAC L EGLISE" }, { - "codePostal": "88300", - "codeCommune": "88393", - "libelleAcheminement": "ROLLAINVILLE", - "nomCommune": "ROLLAINVILLE" + "codePostal": "11610", + "codeCommune": "11279", + "libelleAcheminement": "PENNAUTIER", + "nomCommune": "PENNAUTIER" }, { - "codePostal": "88600", - "codeCommune": "88398", - "libelleAcheminement": "LES ROUGES EAUX", - "nomCommune": "LES ROUGES EAUX" + "codePostal": "12310", + "codeCommune": "12120", + "libelleAcheminement": "LAISSAC SEVERAC L EGLISE", + "nomCommune": "LAISSAC SEVERAC L EGLISE" }, { - "codePostal": "88500", - "codeCommune": "88400", - "libelleAcheminement": "ROUVRES EN XAINTOIS", - "nomCommune": "ROUVRES EN XAINTOIS" + "codePostal": "11400", + "codeCommune": "11284", + "libelleAcheminement": "PEYRENS", + "nomCommune": "PEYRENS" }, { - "codePostal": "88630", - "codeCommune": "88407", - "libelleAcheminement": "RUPPES", - "nomCommune": "RUPPES" + "codePostal": "12450", + "codeCommune": "12133", + "libelleAcheminement": "LUC LA PRIMAUBE", + "nomCommune": "LUC LA PRIMAUBE" }, { - "codePostal": "88700", - "codeCommune": "88410", - "libelleAcheminement": "STE BARBE", - "nomCommune": "STE BARBE" + "codePostal": "11420", + "codeCommune": "11290", + "libelleAcheminement": "PLAIGNE", + "nomCommune": "PLAIGNE" }, { - "codePostal": "88100", - "codeCommune": "88424", - "libelleAcheminement": "STE MARGUERITE", - "nomCommune": "STE MARGUERITE" + "codePostal": "12220", + "codeCommune": "12134", + "libelleAcheminement": "LUGAN", + "nomCommune": "LUGAN" }, { - "codePostal": "88700", - "codeCommune": "88425", - "libelleAcheminement": "ST MAURICE SUR MORTAGNE", - "nomCommune": "ST MAURICE SUR MORTAGNE" + "codePostal": "11250", + "codeCommune": "11293", + "libelleAcheminement": "POMAS", + "nomCommune": "POMAS" }, { - "codePostal": "88560", - "codeCommune": "88426", - "libelleAcheminement": "ST MAURICE SUR MOSELLE", - "nomCommune": "ST MAURICE SUR MOSELLE" + "codePostal": "12540", + "codeCommune": "12139", + "libelleAcheminement": "MARNHAGUES ET LATOUR", + "nomCommune": "MARNHAGUES ET LATOUR" }, { - "codePostal": "88170", - "codeCommune": "88427", - "libelleAcheminement": "ST MENGE", - "nomCommune": "ST MENGE" + "codePostal": "11250", + "codeCommune": "11299", + "libelleAcheminement": "PREIXAN", + "nomCommune": "PREIXAN" }, { - "codePostal": "88390", - "codeCommune": "88439", - "libelleAcheminement": "SANCHEY", - "nomCommune": "SANCHEY" + "codePostal": "12200", + "codeCommune": "12140", + "libelleAcheminement": "MARTIEL", + "nomCommune": "MARTIEL" }, { - "codePostal": "88260", - "codeCommune": "88452", - "libelleAcheminement": "SENONGES", - "nomCommune": "SENONGES" + "codePostal": "11500", + "codeCommune": "11304", + "libelleAcheminement": "QUILLAN", + "nomCommune": "QUILLAN" }, { - "codePostal": "88630", - "codeCommune": "88457", - "libelleAcheminement": "SIONNE", - "nomCommune": "SIONNE" + "codePostal": "12360", + "codeCommune": "12147", + "libelleAcheminement": "MONTAGNOL", + "nomCommune": "MONTAGNOL" }, { - "codePostal": "88170", - "codeCommune": "88459", - "libelleAcheminement": "SONCOURT", - "nomCommune": "SONCOURT" + "codePostal": "11500", + "codeCommune": "11304", + "libelleAcheminement": "QUILLAN", + "nomCommune": "QUILLAN" }, { - "codePostal": "88630", - "codeCommune": "88460", - "libelleAcheminement": "SOULOSSE SOUS ST ELOPHE", - "nomCommune": "SOULOSSE SOUS ST ELOPHE" + "codePostal": "12490", + "codeCommune": "12153", + "libelleAcheminement": "MONTJAUX", + "nomCommune": "MONTJAUX" }, { - "codePostal": "88120", - "codeCommune": "88462", - "libelleAcheminement": "LE SYNDICAT", - "nomCommune": "LE SYNDICAT" + "codePostal": "11400", + "codeCommune": "11313", + "libelleAcheminement": "RICAUD", + "nomCommune": "RICAUD" }, { - "codePostal": "88460", - "codeCommune": "88464", - "libelleAcheminement": "TENDON", - "nomCommune": "TENDON" + "codePostal": "12210", + "codeCommune": "12156", + "libelleAcheminement": "MONTPEYROUX", + "nomCommune": "MONTPEYROUX" }, { - "codePostal": "88150", - "codeCommune": "88465", - "libelleAcheminement": "CAPAVENIR VOSGES", - "nomCommune": "CAPAVENIR VOSGES" + "codePostal": "11700", + "codeCommune": "11318", + "libelleAcheminement": "ROQUECOURBE MINERVOIS", + "nomCommune": "ROQUECOURBE MINERVOIS" }, { - "codePostal": "88150", - "codeCommune": "88465", - "libelleAcheminement": "CAPAVENIR VOSGES", - "nomCommune": "CAPAVENIR VOSGES" + "codePostal": "12260", + "codeCommune": "12158", + "libelleAcheminement": "MONTSALES", + "nomCommune": "MONTSALES" }, { - "codePostal": "88290", - "codeCommune": "88467", - "libelleAcheminement": "THIEFOSSE", - "nomCommune": "THIEFOSSE" + "codePostal": "11380", + "codeCommune": "11319", + "libelleAcheminement": "ROQUEFERE", + "nomCommune": "ROQUEFERE" }, { - "codePostal": "88160", - "codeCommune": "88468", - "libelleAcheminement": "LE THILLOT", - "nomCommune": "LE THILLOT" + "codePostal": "12800", + "codeCommune": "12169", + "libelleAcheminement": "NAUCELLE", + "nomCommune": "NAUCELLE" }, { - "codePostal": "88500", - "codeCommune": "88469", - "libelleAcheminement": "THIRAUCOURT", - "nomCommune": "THIRAUCOURT" + "codePostal": "11350", + "codeCommune": "11326", + "libelleAcheminement": "ROUFFIAC DES CORBIERES", + "nomCommune": "ROUFFIAC DES CORBIERES" }, { - "codePostal": "88260", - "codeCommune": "88472", - "libelleAcheminement": "THUILLIERES", - "nomCommune": "THUILLIERES" + "codePostal": "12000", + "codeCommune": "12176", + "libelleAcheminement": "ONET LE CHATEAU", + "nomCommune": "ONET LE CHATEAU" }, { - "codePostal": "88320", - "codeCommune": "88473", - "libelleAcheminement": "TIGNECOURT", - "nomCommune": "TIGNECOURT" + "codePostal": "11140", + "codeCommune": "11335", + "libelleAcheminement": "STE COLOMBE SUR GUETTE", + "nomCommune": "STE COLOMBE SUR GUETTE" }, { - "codePostal": "88130", - "codeCommune": "88480", - "libelleAcheminement": "UBEXY", - "nomCommune": "UBEXY" + "codePostal": "12520", + "codeCommune": "12178", + "libelleAcheminement": "PAULHE", + "nomCommune": "PAULHE" }, { - "codePostal": "88390", - "codeCommune": "88483", - "libelleAcheminement": "UXEGNEY", - "nomCommune": "UXEGNEY" + "codePostal": "11270", + "codeCommune": "11343", + "libelleAcheminement": "ST GAUDERIC", + "nomCommune": "ST GAUDERIC" }, { - "codePostal": "88330", - "codeCommune": "88497", - "libelleAcheminement": "VAXONCOURT", - "nomCommune": "VAXONCOURT" + "codePostal": "12220", + "codeCommune": "12181", + "libelleAcheminement": "PEYRUSSE LE ROC", + "nomCommune": "PEYRUSSE LE ROC" }, { - "codePostal": "88320", - "codeCommune": "88510", - "libelleAcheminement": "VILLOTTE", - "nomCommune": "VILLOTTE" + "codePostal": "11360", + "codeCommune": "11345", + "libelleAcheminement": "ST JEAN DE BARROU", + "nomCommune": "ST JEAN DE BARROU" }, { - "codePostal": "88170", - "codeCommune": "88514", - "libelleAcheminement": "VIOCOURT", - "nomCommune": "VIOCOURT" + "codePostal": "12350", + "codeCommune": "12190", + "libelleAcheminement": "PREVINQUIERES", + "nomCommune": "PREVINQUIERES" }, { - "codePostal": "88240", - "codeCommune": "88520", - "libelleAcheminement": "LES VOIVRES", - "nomCommune": "LES VOIVRES" + "codePostal": "11500", + "codeCommune": "11347", + "libelleAcheminement": "ST JULIA DE BEC", + "nomCommune": "ST JULIA DE BEC" }, { - "codePostal": "88170", - "codeCommune": "88523", - "libelleAcheminement": "VOUXEY", - "nomCommune": "VOUXEY" + "codePostal": "12350", + "codeCommune": "12191", + "libelleAcheminement": "PRIVEZAC", + "nomCommune": "PRIVEZAC" }, { - "codePostal": "88170", - "codeCommune": "88523", - "libelleAcheminement": "VOUXEY", - "nomCommune": "VOUXEY" + "codePostal": "11270", + "codeCommune": "11348", + "libelleAcheminement": "ST JULIEN DE BRIOLA", + "nomCommune": "ST JULIEN DE BRIOLA" }, { - "codePostal": "88140", - "codeCommune": "88524", - "libelleAcheminement": "VRECOURT", - "nomCommune": "VRECOURT" + "codePostal": "12390", + "codeCommune": "12199", + "libelleAcheminement": "RIGNAC", + "nomCommune": "RIGNAC" }, { - "codePostal": "88700", - "codeCommune": "88527", - "libelleAcheminement": "XAFFEVILLERS", - "nomCommune": "XAFFEVILLERS" + "codePostal": "11220", + "codeCommune": "11354", + "libelleAcheminement": "ST MARTIN DES PUITS", + "nomCommune": "ST MARTIN DES PUITS" }, { - "codePostal": "88130", - "codeCommune": "88529", - "libelleAcheminement": "XARONVAL", - "nomCommune": "XARONVAL" + "codePostal": "12400", + "codeCommune": "12208", + "libelleAcheminement": "ST AFFRIQUE", + "nomCommune": "ST AFFRIQUE" }, { - "codePostal": "88330", - "codeCommune": "88532", - "libelleAcheminement": "ZINCOURT", - "nomCommune": "ZINCOURT" + "codePostal": "11500", + "codeCommune": "11358", + "libelleAcheminement": "ST MARTIN LYS", + "nomCommune": "ST MARTIN LYS" }, { - "codePostal": "89110", - "codeCommune": "89003", - "libelleAcheminement": "MONTHOLON", - "nomCommune": "MONTHOLON" + "codePostal": "12470", + "codeCommune": "12214", + "libelleAcheminement": "ST CHELY D AUBRAC", + "nomCommune": "ST CHELY D AUBRAC" }, { - "codePostal": "89110", - "codeCommune": "89003", - "libelleAcheminement": "MONTHOLON", - "nomCommune": "MONTHOLON" + "codePostal": "11140", + "codeCommune": "11373", + "libelleAcheminement": "SALVEZINES", + "nomCommune": "SALVEZINES" }, { - "codePostal": "01100", - "codeCommune": "01011", - "libelleAcheminement": "APREMONT", - "nomCommune": "APREMONT" + "codePostal": "12400", + "codeCommune": "12222", + "libelleAcheminement": "ST FELIX DE SORGUES", + "nomCommune": "ST FELIX DE SORGUES" }, { - "codePostal": "89450", - "codeCommune": "89021", - "libelleAcheminement": "ASQUINS", - "nomCommune": "ASQUINS" + "codePostal": "11190", + "codeCommune": "11377", + "libelleAcheminement": "SERRES", + "nomCommune": "SERRES" }, { - "codePostal": "01480", - "codeCommune": "01021", - "libelleAcheminement": "ARS SUR FORMANS", - "nomCommune": "ARS SUR FORMANS" + "codePostal": "12140", + "codeCommune": "12226", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "89150", - "codeCommune": "89036", - "libelleAcheminement": "LA BELLIOLE", - "nomCommune": "LA BELLIOLE" + "codePostal": "11400", + "codeCommune": "11382", + "libelleAcheminement": "SOUILHANELS", + "nomCommune": "SOUILHANELS" }, { - "codePostal": "01990", - "codeCommune": "01028", - "libelleAcheminement": "BANEINS", - "nomCommune": "BANEINS" + "codePostal": "12170", + "codeCommune": "12230", + "libelleAcheminement": "ST JEAN DELNOUS", + "nomCommune": "ST JEAN DELNOUS" }, { - "codePostal": "89700", - "codeCommune": "89039", - "libelleAcheminement": "BERU", - "nomCommune": "BERU" + "codePostal": "11300", + "codeCommune": "11394", + "libelleAcheminement": "TOURREILLES", + "nomCommune": "TOURREILLES" }, { - "codePostal": "01100", - "codeCommune": "01031", - "libelleAcheminement": "BELLIGNAT", - "nomCommune": "BELLIGNAT" + "codePostal": "12800", + "codeCommune": "12235", + "libelleAcheminement": "ST JUST SUR VIAUR", + "nomCommune": "ST JUST SUR VIAUR" }, { - "codePostal": "89770", - "codeCommune": "89048", - "libelleAcheminement": "BOEURS EN OTHE", - "nomCommune": "BOEURS EN OTHE" + "codePostal": "11580", + "codeCommune": "11402", + "libelleAcheminement": "VALMIGERE", + "nomCommune": "VALMIGERE" }, { - "codePostal": "01200", - "codeCommune": "01033", - "libelleAcheminement": "VALSERHONE", - "nomCommune": "VALSERHONE" + "codePostal": "12850", + "codeCommune": "12241", + "libelleAcheminement": "STE RADEGONDE", + "nomCommune": "STE RADEGONDE" }, { - "codePostal": "89113", - "codeCommune": "89053", - "libelleAcheminement": "BRANCHES", - "nomCommune": "BRANCHES" + "codePostal": "11330", + "codeCommune": "11409", + "libelleAcheminement": "VIGNEVIEILLE", + "nomCommune": "VIGNEVIEILLE" }, { - "codePostal": "01200", - "codeCommune": "01033", - "libelleAcheminement": "VALSERHONE", - "nomCommune": "VALSERHONE" + "codePostal": "12490", + "codeCommune": "12244", + "libelleAcheminement": "ST ROME DE TARN", + "nomCommune": "ST ROME DE TARN" }, { - "codePostal": "89630", - "codeCommune": "89058", - "libelleAcheminement": "BUSSIERES", - "nomCommune": "BUSSIERES" + "codePostal": "11600", + "codeCommune": "11416", + "libelleAcheminement": "VILLARZEL CABARDES", + "nomCommune": "VILLARZEL CABARDES" }, { - "codePostal": "01130", - "codeCommune": "01035", - "libelleAcheminement": "BELLEYDOUX", - "nomCommune": "BELLEYDOUX" + "codePostal": "12560", + "codeCommune": "12247", + "libelleAcheminement": "ST SATURNIN DE LENNE", + "nomCommune": "ST SATURNIN DE LENNE" }, { - "codePostal": "89360", - "codeCommune": "89062", - "libelleAcheminement": "CARISEY", - "nomCommune": "CARISEY" + "codePostal": "11600", + "codeCommune": "11425", + "libelleAcheminement": "VILLEGAILHENC", + "nomCommune": "VILLEGAILHENC" }, { - "codePostal": "01700", - "codeCommune": "01043", - "libelleAcheminement": "BEYNOST", - "nomCommune": "BEYNOST" + "codePostal": "12460", + "codeCommune": "12250", + "libelleAcheminement": "ST SYMPHORIEN DE THENIERES", + "nomCommune": "ST SYMPHORIEN DE THENIERES" }, { - "codePostal": "89400", - "codeCommune": "89085", - "libelleAcheminement": "CHARMOY", - "nomCommune": "CHARMOY" + "codePostal": "11620", + "codeCommune": "11429", + "libelleAcheminement": "VILLEMOUSTAUSSOU", + "nomCommune": "VILLEMOUSTAUSSOU" }, { - "codePostal": "01290", - "codeCommune": "01046", - "libelleAcheminement": "BIZIAT", - "nomCommune": "BIZIAT" + "codePostal": "12400", + "codeCommune": "12251", + "libelleAcheminement": "ST VICTOR ET MELVIEU", + "nomCommune": "ST VICTOR ET MELVIEU" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "12630", + "codeCommune": "12001", + "libelleAcheminement": "AGEN D AVEYRON", + "nomCommune": "AGEN D AVEYRON" }, { - "codePostal": "01330", - "codeCommune": "01052", - "libelleAcheminement": "BOULIGNEUX", - "nomCommune": "BOULIGNEUX" + "codePostal": "12330", + "codeCommune": "12254", + "libelleAcheminement": "SALLES LA SOURCE", + "nomCommune": "SALLES LA SOURCE" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "12110", + "codeCommune": "12013", + "libelleAcheminement": "AUBIN", + "nomCommune": "AUBIN" }, { - "codePostal": "01000", - "codeCommune": "01053", - "libelleAcheminement": "BOURG EN BRESSE", - "nomCommune": "BOURG EN BRESSE" + "codePostal": "12700", + "codeCommune": "12257", + "libelleAcheminement": "CAUSSE ET DIEGE", + "nomCommune": "CAUSSE ET DIEGE" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "12110", + "codeCommune": "12013", + "libelleAcheminement": "AUBIN", + "nomCommune": "AUBIN" }, { - "codePostal": "01190", - "codeCommune": "01057", - "libelleAcheminement": "BOZ", - "nomCommune": "BOZ" + "codePostal": "12230", + "codeCommune": "12260", + "libelleAcheminement": "SAUCLIERES", + "nomCommune": "SAUCLIERES" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "12120", + "codeCommune": "12015", + "libelleAcheminement": "AURIAC LAGAST", + "nomCommune": "AURIAC LAGAST" }, { - "codePostal": "01300", - "codeCommune": "01058", - "libelleAcheminement": "BREGNIER CORDON", - "nomCommune": "BREGNIER CORDON" + "codePostal": "12190", + "codeCommune": "12265", + "libelleAcheminement": "SEBRAZAC", + "nomCommune": "SEBRAZAC" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "12390", + "codeCommune": "12016", + "libelleAcheminement": "AUZITS", + "nomCommune": "AUZITS" }, { - "codePostal": "01360", - "codeCommune": "01062", - "libelleAcheminement": "BRESSOLLES", - "nomCommune": "BRESSOLLES" + "codePostal": "12150", + "codeCommune": "12270", + "libelleAcheminement": "SEVERAC D AVEYRON", + "nomCommune": "SEVERAC D AVEYRON" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "12370", + "codeCommune": "12025", + "libelleAcheminement": "BELMONT SUR RANCE", + "nomCommune": "BELMONT SUR RANCE" }, { - "codePostal": "01310", - "codeCommune": "01065", - "libelleAcheminement": "BUELLAS", - "nomCommune": "BUELLAS" + "codePostal": "12700", + "codeCommune": "12272", + "libelleAcheminement": "SONNAC", + "nomCommune": "SONNAC" }, { - "codePostal": "89400", - "codeCommune": "89099", - "libelleAcheminement": "CHENY", - "nomCommune": "CHENY" + "codePostal": "12550", + "codeCommune": "12035", + "libelleAcheminement": "BRASC", + "nomCommune": "BRASC" }, { - "codePostal": "01310", - "codeCommune": "01065", - "libelleAcheminement": "BUELLAS", - "nomCommune": "BUELLAS" + "codePostal": "12330", + "codeCommune": "12288", + "libelleAcheminement": "VALADY", + "nomCommune": "VALADY" }, { - "codePostal": "89400", - "codeCommune": "89105", - "libelleAcheminement": "CHICHERY", - "nomCommune": "CHICHERY" + "codePostal": "12600", + "codeCommune": "12036", + "libelleAcheminement": "BROMMAT", + "nomCommune": "BROMMAT" }, { - "codePostal": "01250", - "codeCommune": "01072", - "libelleAcheminement": "CEYZERIAT", - "nomCommune": "CEYZERIAT" + "codePostal": "12250", + "codeCommune": "12295", + "libelleAcheminement": "VIALA DU PAS DE JAUX", + "nomCommune": "VIALA DU PAS DE JAUX" }, { - "codePostal": "89800", - "codeCommune": "89123", - "libelleAcheminement": "COURGIS", - "nomCommune": "COURGIS" + "codePostal": "12480", + "codeCommune": "12037", + "libelleAcheminement": "BROQUIES", + "nomCommune": "BROQUIES" }, { - "codePostal": "01260", - "codeCommune": "01079", - "libelleAcheminement": "CHAMPAGNE EN VALROMEY", - "nomCommune": "CHAMPAGNE EN VALROMEY" + "codePostal": "12490", + "codeCommune": "12296", + "libelleAcheminement": "VIALA DU TARN", + "nomCommune": "VIALA DU TARN" }, { - "codePostal": "89440", - "codeCommune": "89128", - "libelleAcheminement": "COUTARNOUX", - "nomCommune": "COUTARNOUX" + "codePostal": "12360", + "codeCommune": "12039", + "libelleAcheminement": "BRUSQUE", + "nomCommune": "BRUSQUE" }, { - "codePostal": "01420", - "codeCommune": "01082", - "libelleAcheminement": "CHANAY", - "nomCommune": "CHANAY" + "codePostal": "12580", + "codeCommune": "12298", + "libelleAcheminement": "VILLECOMTAL", + "nomCommune": "VILLECOMTAL" }, { - "codePostal": "89390", - "codeCommune": "89132", - "libelleAcheminement": "CRY", - "nomCommune": "CRY" + "codePostal": "12800", + "codeCommune": "12041", + "libelleAcheminement": "CABANES", + "nomCommune": "CABANES" }, { - "codePostal": "01990", - "codeCommune": "01083", - "libelleAcheminement": "CHANEINS", - "nomCommune": "CHANEINS" + "codePostal": "12260", + "codeCommune": "12301", + "libelleAcheminement": "VILLENEUVE", + "nomCommune": "VILLENEUVE" }, { - "codePostal": "89420", - "codeCommune": "89134", - "libelleAcheminement": "CUSSY LES FORGES", - "nomCommune": "CUSSY LES FORGES" + "codePostal": "12360", + "codeCommune": "12044", + "libelleAcheminement": "CAMARES", + "nomCommune": "CAMARES" }, { - "codePostal": "01130", - "codeCommune": "01087", - "libelleAcheminement": "CHARIX", - "nomCommune": "CHARIX" + "codePostal": "13080", + "codeCommune": "13001", + "libelleAcheminement": "AIX EN PROVENCE", + "nomCommune": "AIX EN PROVENCE" }, { - "codePostal": "89290", - "codeCommune": "89155", - "libelleAcheminement": "ESCOLIVES STE CAMILLE", - "nomCommune": "ESCOLIVES STE CAMILLE" + "codePostal": "12260", + "codeCommune": "12053", + "libelleAcheminement": "LA CAPELLE BALAGUIER", + "nomCommune": "LA CAPELLE BALAGUIER" }, { - "codePostal": "01190", - "codeCommune": "01094", - "libelleAcheminement": "CHAVANNES SUR REYSSOUZE", - "nomCommune": "CHAVANNES SUR REYSSOUZE" + "codePostal": "13100", + "codeCommune": "13001", + "libelleAcheminement": "AIX EN PROVENCE", + "nomCommune": "AIX EN PROVENCE" }, { - "codePostal": "89510", - "codeCommune": "89160", - "libelleAcheminement": "ETIGNY", - "nomCommune": "ETIGNY" + "codePostal": "12160", + "codeCommune": "12056", + "libelleAcheminement": "BARAQUEVILLE", + "nomCommune": "BARAQUEVILLE" }, { - "codePostal": "01250", - "codeCommune": "01095", - "libelleAcheminement": "NIVIGNE ET SURAN", - "nomCommune": "NIVIGNE ET SURAN" + "codePostal": "13980", + "codeCommune": "13003", + "libelleAcheminement": "ALLEINS", + "nomCommune": "ALLEINS" }, { - "codePostal": "89110", - "codeCommune": "89163", - "libelleAcheminement": "LA FERTE LOUPIERE", - "nomCommune": "LA FERTE LOUPIERE" + "codePostal": "12330", + "codeCommune": "12066", + "libelleAcheminement": "CLAIRVAUX D AVEYRON", + "nomCommune": "CLAIRVAUX D AVEYRON" }, { - "codePostal": "01510", - "codeCommune": "01098", - "libelleAcheminement": "CHAZEY BONS", - "nomCommune": "CHAZEY BONS" + "codePostal": "13104", + "codeCommune": "13004", + "libelleAcheminement": "ARLES", + "nomCommune": "ARLES" }, { - "codePostal": "89190", - "codeCommune": "89165", - "libelleAcheminement": "FLACY", - "nomCommune": "FLACY" + "codePostal": "12240", + "codeCommune": "12068", + "libelleAcheminement": "COLOMBIES", + "nomCommune": "COLOMBIES" }, { - "codePostal": "01150", - "codeCommune": "01099", - "libelleAcheminement": "CHAZEY SUR AIN", - "nomCommune": "CHAZEY SUR AIN" + "codePostal": "13930", + "codeCommune": "13006", + "libelleAcheminement": "AUREILLE", + "nomCommune": "AUREILLE" }, { - "codePostal": "89130", - "codeCommune": "89173", - "libelleAcheminement": "FONTAINES", - "nomCommune": "FONTAINES" + "codePostal": "12170", + "codeCommune": "12075", + "libelleAcheminement": "CONNAC", + "nomCommune": "CONNAC" }, { - "codePostal": "01230", - "codeCommune": "01111", - "libelleAcheminement": "CONAND", - "nomCommune": "CONAND" + "codePostal": "13570", + "codeCommune": "13010", + "libelleAcheminement": "BARBENTANE", + "nomCommune": "BARBENTANE" }, { - "codePostal": "89450", - "codeCommune": "89176", - "libelleAcheminement": "FONTENAY PRES VEZELAY", - "nomCommune": "FONTENAY PRES VEZELAY" + "codePostal": "12320", + "codeCommune": "12076", + "libelleAcheminement": "CONQUES EN ROUERGUE", + "nomCommune": "CONQUES EN ROUERGUE" }, { - "codePostal": "01430", - "codeCommune": "01112", - "libelleAcheminement": "CONDAMINE", - "nomCommune": "CONDAMINE" + "codePostal": "13520", + "codeCommune": "13011", + "libelleAcheminement": "LES BAUX DE PROVENCE", + "nomCommune": "LES BAUX DE PROVENCE" }, { - "codePostal": "89150", - "codeCommune": "89180", - "libelleAcheminement": "FOUCHERES", - "nomCommune": "FOUCHERES" + "codePostal": "12540", + "codeCommune": "12077", + "libelleAcheminement": "CORNUS", + "nomCommune": "CORNUS" }, { - "codePostal": "01300", - "codeCommune": "01117", - "libelleAcheminement": "CONZIEU", - "nomCommune": "CONZIEU" + "codePostal": "13100", + "codeCommune": "13012", + "libelleAcheminement": "BEAURECUEIL", + "nomCommune": "BEAURECUEIL" }, { - "codePostal": "89160", - "codeCommune": "89184", - "libelleAcheminement": "FULVY", - "nomCommune": "FULVY" + "codePostal": "12400", + "codeCommune": "12078", + "libelleAcheminement": "LES COSTES GOZON", + "nomCommune": "LES COSTES GOZON" }, { - "codePostal": "01310", - "codeCommune": "01140", - "libelleAcheminement": "CURTAFOND", - "nomCommune": "CURTAFOND" + "codePostal": "13440", + "codeCommune": "13018", + "libelleAcheminement": "CABANNES", + "nomCommune": "CABANNES" }, { - "codePostal": "89200", - "codeCommune": "89190", - "libelleAcheminement": "GIVRY", - "nomCommune": "GIVRY" + "codePostal": "12190", + "codeCommune": "12079", + "libelleAcheminement": "COUBISOU", + "nomCommune": "COUBISOU" }, { - "codePostal": "01120", - "codeCommune": "01142", - "libelleAcheminement": "DAGNEUX", - "nomCommune": "DAGNEUX" + "codePostal": "13480", + "codeCommune": "13019", + "libelleAcheminement": "CABRIES", + "nomCommune": "CABRIES" }, { - "codePostal": "89113", - "codeCommune": "89196", - "libelleAcheminement": "VALRAVILLON", - "nomCommune": "VALRAVILLON" + "codePostal": "12350", + "codeCommune": "12091", + "libelleAcheminement": "DRULHE", + "nomCommune": "DRULHE" }, { - "codePostal": "01130", - "codeCommune": "01152", - "libelleAcheminement": "ECHALLON", - "nomCommune": "ECHALLON" + "codePostal": "13350", + "codeCommune": "13024", + "libelleAcheminement": "CHARLEVAL", + "nomCommune": "CHARLEVAL" }, { - "codePostal": "89420", - "codeCommune": "89197", - "libelleAcheminement": "GUILLON TERRE PLAINE", - "nomCommune": "GUILLON TERRE PLAINE" + "codePostal": "12140", + "codeCommune": "12094", + "libelleAcheminement": "ENTRAYGUES SUR TRUYERE", + "nomCommune": "ENTRAYGUES SUR TRUYERE" }, { - "codePostal": "01170", - "codeCommune": "01153", - "libelleAcheminement": "ECHENEVEX", - "nomCommune": "ECHENEVEX" + "codePostal": "13220", + "codeCommune": "13026", + "libelleAcheminement": "CHATEAUNEUF LES MARTIGUES", + "nomCommune": "CHATEAUNEUF LES MARTIGUES" }, { - "codePostal": "89250", - "codeCommune": "89198", - "libelleAcheminement": "GURGY", - "nomCommune": "GURGY" + "codePostal": "12450", + "codeCommune": "12102", + "libelleAcheminement": "FLAVIN", + "nomCommune": "FLAVIN" }, { - "codePostal": "01570", - "codeCommune": "01159", - "libelleAcheminement": "FEILLENS", - "nomCommune": "FEILLENS" + "codePostal": "13220", + "codeCommune": "13026", + "libelleAcheminement": "CHATEAUNEUF LES MARTIGUES", + "nomCommune": "CHATEAUNEUF LES MARTIGUES" }, { - "codePostal": "89270", - "codeCommune": "89233", - "libelleAcheminement": "LUCY SUR CURE", - "nomCommune": "LUCY SUR CURE" + "codePostal": "12140", + "codeCommune": "12103", + "libelleAcheminement": "FLORENTIN LA CAPELLE", + "nomCommune": "FLORENTIN LA CAPELLE" }, { - "codePostal": "01090", - "codeCommune": "01165", - "libelleAcheminement": "FRANCHELEINS", - "nomCommune": "FRANCHELEINS" + "codePostal": "13600", + "codeCommune": "13028", + "libelleAcheminement": "LA CIOTAT", + "nomCommune": "LA CIOTAT" }, { - "codePostal": "89420", - "codeCommune": "89244", - "libelleAcheminement": "MARMEAUX", - "nomCommune": "MARMEAUX" + "codePostal": "12270", + "codeCommune": "12105", + "libelleAcheminement": "LA FOUILLADE", + "nomCommune": "LA FOUILLADE" }, { - "codePostal": "01290", - "codeCommune": "01179", - "libelleAcheminement": "GRIEGES", - "nomCommune": "GRIEGES" + "codePostal": "13820", + "codeCommune": "13033", + "libelleAcheminement": "ENSUES LA REDONNE", + "nomCommune": "ENSUES LA REDONNE" }, { - "codePostal": "89440", - "codeCommune": "89246", - "libelleAcheminement": "MASSANGIS", - "nomCommune": "MASSANGIS" + "codePostal": "12340", + "codeCommune": "12106", + "libelleAcheminement": "GABRIAC", + "nomCommune": "GABRIAC" }, { - "codePostal": "01090", - "codeCommune": "01183", - "libelleAcheminement": "GUEREINS", - "nomCommune": "GUEREINS" + "codePostal": "13810", + "codeCommune": "13034", + "libelleAcheminement": "EYGALIERES", + "nomCommune": "EYGALIERES" }, { - "codePostal": "89144", - "codeCommune": "89250", - "libelleAcheminement": "MERE", - "nomCommune": "MERE" + "codePostal": "12220", + "codeCommune": "12108", + "libelleAcheminement": "GALGAN", + "nomCommune": "GALGAN" }, { - "codePostal": "01110", - "codeCommune": "01185", - "libelleAcheminement": "PLATEAU D HAUTEVILLE", - "nomCommune": "PLATEAU D HAUTEVILLE" + "codePostal": "13710", + "codeCommune": "13040", + "libelleAcheminement": "FUVEAU", + "nomCommune": "FUVEAU" }, { - "codePostal": "89110", - "codeCommune": "89251", - "libelleAcheminement": "MERRY LA VALLEE", - "nomCommune": "MERRY LA VALLEE" + "codePostal": "12140", + "codeCommune": "12110", + "libelleAcheminement": "GOLINHAC", + "nomCommune": "GOLINHAC" }, { - "codePostal": "01260", - "codeCommune": "01187", - "libelleAcheminement": "HAUT VALROMEY", - "nomCommune": "HAUT VALROMEY" + "codePostal": "13450", + "codeCommune": "13044", + "libelleAcheminement": "GRANS", + "nomCommune": "GRANS" }, { - "codePostal": "89560", - "codeCommune": "89252", - "libelleAcheminement": "MERRY SEC", - "nomCommune": "MERRY SEC" + "codePostal": "12500", + "codeCommune": "12124", + "libelleAcheminement": "LASSOUTS", + "nomCommune": "LASSOUTS" }, { - "codePostal": "01260", - "codeCommune": "01187", - "libelleAcheminement": "HAUT VALROMEY", - "nomCommune": "HAUT VALROMEY" + "codePostal": "13118", + "codeCommune": "13047", + "libelleAcheminement": "ISTRES", + "nomCommune": "ISTRES" }, { - "codePostal": "89130", - "codeCommune": "89254", - "libelleAcheminement": "MEZILLES", - "nomCommune": "MEZILLES" + "codePostal": "12450", + "codeCommune": "12133", + "libelleAcheminement": "LUC LA PRIMAUBE", + "nomCommune": "LUC LA PRIMAUBE" }, { - "codePostal": "01200", - "codeCommune": "01189", - "libelleAcheminement": "INJOUX GENISSIAT", - "nomCommune": "INJOUX GENISSIAT" + "codePostal": "13680", + "codeCommune": "13051", + "libelleAcheminement": "LANCON PROVENCE", + "nomCommune": "LANCON PROVENCE" }, { - "codePostal": "89230", - "codeCommune": "89265", - "libelleAcheminement": "MONTIGNY LA RESLE", - "nomCommune": "MONTIGNY LA RESLE" + "codePostal": "12350", + "codeCommune": "12136", + "libelleAcheminement": "MALEVILLE", + "nomCommune": "MALEVILLE" }, { - "codePostal": "01430", - "codeCommune": "01191", - "libelleAcheminement": "IZENAVE", - "nomCommune": "IZENAVE" + "codePostal": "13370", + "codeCommune": "13053", + "libelleAcheminement": "MALLEMORT", + "nomCommune": "MALLEMORT" }, { - "codePostal": "89570", - "codeCommune": "89276", - "libelleAcheminement": "NEUVY SAUTOUR", - "nomCommune": "NEUVY SAUTOUR" + "codePostal": "12120", + "codeCommune": "12144", + "libelleAcheminement": "MELJAC", + "nomCommune": "MELJAC" }, { - "codePostal": "01580", - "codeCommune": "01192", - "libelleAcheminement": "IZERNORE", - "nomCommune": "IZERNORE" + "codePostal": "13650", + "codeCommune": "13059", + "libelleAcheminement": "MEYRARGUES", + "nomCommune": "MEYRARGUES" }, { - "codePostal": "89160", - "codeCommune": "89284", - "libelleAcheminement": "PACY SUR ARMANCON", - "nomCommune": "PACY SUR ARMANCON" + "codePostal": "12100", + "codeCommune": "12145", + "libelleAcheminement": "MILLAU", + "nomCommune": "MILLAU" }, { - "codePostal": "01150", - "codeCommune": "01202", - "libelleAcheminement": "LAGNIEU", - "nomCommune": "LAGNIEU" + "codePostal": "13660", + "codeCommune": "13067", + "libelleAcheminement": "ORGON", + "nomCommune": "ORGON" }, { - "codePostal": "89300", - "codeCommune": "89289", - "libelleAcheminement": "PAROY SUR THOLON", - "nomCommune": "PAROY SUR THOLON" + "codePostal": "12220", + "codeCommune": "12148", + "libelleAcheminement": "MONTBAZENS", + "nomCommune": "MONTBAZENS" }, { - "codePostal": "01130", - "codeCommune": "01204", - "libelleAcheminement": "LE POIZAT LALLEYRIAT", - "nomCommune": "LE POIZAT LALLEYRIAT" + "codePostal": "13821", + "codeCommune": "13070", + "libelleAcheminement": "LA PENNE SUR HUVEAUNE", + "nomCommune": "LA PENNE SUR HUVEAUNE" }, { - "codePostal": "89510", - "codeCommune": "89291", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "12720", + "codeCommune": "12160", + "libelleAcheminement": "MOSTUEJOULS", + "nomCommune": "MOSTUEJOULS" }, { - "codePostal": "01130", - "codeCommune": "01204", - "libelleAcheminement": "LE POIZAT LALLEYRIAT", - "nomCommune": "LE POIZAT LALLEYRIAT" + "codePostal": "13170", + "codeCommune": "13071", + "libelleAcheminement": "LES PENNES MIRABEAU", + "nomCommune": "LES PENNES MIRABEAU" }, { - "codePostal": "89330", - "codeCommune": "89298", - "libelleAcheminement": "PIFFONDS", - "nomCommune": "PIFFONDS" + "codePostal": "12160", + "codeCommune": "12162", + "libelleAcheminement": "MOYRAZES", + "nomCommune": "MOYRAZES" }, { - "codePostal": "01330", - "codeCommune": "01207", - "libelleAcheminement": "LAPEYROUSE", - "nomCommune": "LAPEYROUSE" + "codePostal": "13170", + "codeCommune": "13071", + "libelleAcheminement": "LES PENNES MIRABEAU", + "nomCommune": "LES PENNES MIRABEAU" }, { - "codePostal": "89420", - "codeCommune": "89300", - "libelleAcheminement": "PISY", - "nomCommune": "PISY" + "codePostal": "12600", + "codeCommune": "12166", + "libelleAcheminement": "MUROLS", + "nomCommune": "MUROLS" }, { - "codePostal": "01350", - "codeCommune": "01208", - "libelleAcheminement": "LAVOURS", - "nomCommune": "LAVOURS" + "codePostal": "13170", + "codeCommune": "13071", + "libelleAcheminement": "LES PENNES MIRABEAU", + "nomCommune": "LES PENNES MIRABEAU" }, { - "codePostal": "89310", - "codeCommune": "89303", - "libelleAcheminement": "POILLY SUR SEREIN", - "nomCommune": "POILLY SUR SEREIN" + "codePostal": "12270", + "codeCommune": "12167", + "libelleAcheminement": "NAJAC", + "nomCommune": "NAJAC" }, { - "codePostal": "01150", - "codeCommune": "01213", - "libelleAcheminement": "LEYMENT", - "nomCommune": "LEYMENT" + "codePostal": "13870", + "codeCommune": "13083", + "libelleAcheminement": "ROGNONAS", + "nomCommune": "ROGNONAS" }, { - "codePostal": "89230", - "codeCommune": "89307", - "libelleAcheminement": "PONTIGNY", - "nomCommune": "PONTIGNY" + "codePostal": "12190", + "codeCommune": "12172", + "libelleAcheminement": "LE NAYRAC", + "nomCommune": "LE NAYRAC" }, { - "codePostal": "01300", - "codeCommune": "01227", - "libelleAcheminement": "MAGNIEU", - "nomCommune": "MAGNIEU" + "codePostal": "13830", + "codeCommune": "13085", + "libelleAcheminement": "ROQUEFORT LA BEDOULE", + "nomCommune": "ROQUEFORT LA BEDOULE" }, { - "codePostal": "89190", - "codeCommune": "89308", - "libelleAcheminement": "PONT SUR VANNE", - "nomCommune": "PONT SUR VANNE" + "codePostal": "12130", + "codeCommune": "12184", + "libelleAcheminement": "POMAYROLS", + "nomCommune": "POMAYROLS" }, { - "codePostal": "01680", - "codeCommune": "01233", - "libelleAcheminement": "MARCHAMP", - "nomCommune": "MARCHAMP" + "codePostal": "13670", + "codeCommune": "13089", + "libelleAcheminement": "ST ANDIOL", + "nomCommune": "ST ANDIOL" }, { - "codePostal": "89116", - "codeCommune": "89313", - "libelleAcheminement": "PRECY SUR VRIN", - "nomCommune": "PRECY SUR VRIN" + "codePostal": "12370", + "codeCommune": "12192", + "libelleAcheminement": "MOUNES PROHENCOUX", + "nomCommune": "MOUNES PROHENCOUX" }, { - "codePostal": "01300", - "codeCommune": "01234", - "libelleAcheminement": "MARIGNIEU", - "nomCommune": "MARIGNIEU" + "codePostal": "13760", + "codeCommune": "13091", + "libelleAcheminement": "ST CANNAT", + "nomCommune": "ST CANNAT" }, { - "codePostal": "89220", - "codeCommune": "89324", - "libelleAcheminement": "ROGNY LES SEPT ECLUSES", - "nomCommune": "ROGNY LES SEPT ECLUSES" + "codePostal": "12800", + "codeCommune": "12194", + "libelleAcheminement": "QUINS", + "nomCommune": "QUINS" }, { - "codePostal": "01600", - "codeCommune": "01238", - "libelleAcheminement": "MASSIEUX", - "nomCommune": "MASSIEUX" + "codePostal": "13610", + "codeCommune": "13093", + "libelleAcheminement": "ST ESTEVE JANSON", + "nomCommune": "ST ESTEVE JANSON" }, { - "codePostal": "89100", - "codeCommune": "89326", - "libelleAcheminement": "ROSOY", - "nomCommune": "ROSOY" + "codePostal": "12400", + "codeCommune": "12195", + "libelleAcheminement": "REBOURGUIL", + "nomCommune": "REBOURGUIL" }, { - "codePostal": "01580", - "codeCommune": "01240", - "libelleAcheminement": "MATAFELON GRANGES", - "nomCommune": "MATAFELON GRANGES" + "codePostal": "13103", + "codeCommune": "13094", + "libelleAcheminement": "ST ETIENNE DU GRES", + "nomCommune": "ST ETIENNE DU GRES" }, { - "codePostal": "89430", - "codeCommune": "89329", - "libelleAcheminement": "RUGNY", - "nomCommune": "RUGNY" + "codePostal": "12250", + "codeCommune": "12203", + "libelleAcheminement": "ROQUEFORT SUR SOULZON", + "nomCommune": "ROQUEFORT SUR SOULZON" }, { - "codePostal": "01370", - "codeCommune": "01241", - "libelleAcheminement": "MEILLONNAS", - "nomCommune": "MEILLONNAS" + "codePostal": "13210", + "codeCommune": "13100", + "libelleAcheminement": "ST REMY DE PROVENCE", + "nomCommune": "ST REMY DE PROVENCE" }, { - "codePostal": "89520", - "codeCommune": "89331", - "libelleAcheminement": "SAINPUITS", - "nomCommune": "SAINPUITS" + "codePostal": "12460", + "codeCommune": "12209", + "libelleAcheminement": "ST AMANS DES COTS", + "nomCommune": "ST AMANS DES COTS" }, { - "codePostal": "01700", - "codeCommune": "01249", - "libelleAcheminement": "MIRIBEL", - "nomCommune": "MIRIBEL" + "codePostal": "13560", + "codeCommune": "13105", + "libelleAcheminement": "SENAS", + "nomCommune": "SENAS" }, { - "codePostal": "89440", - "codeCommune": "89339", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "12270", + "codeCommune": "12210", + "libelleAcheminement": "ST ANDRE DE NAJAC", + "nomCommune": "ST ANDRE DE NAJAC" }, { - "codePostal": "01140", - "codeCommune": "01252", - "libelleAcheminement": "MOGNENEINS", - "nomCommune": "MOGNENEINS" + "codePostal": "13240", + "codeCommune": "13106", + "libelleAcheminement": "SEPTEMES LES VALLONS", + "nomCommune": "SEPTEMES LES VALLONS" }, { - "codePostal": "89330", - "codeCommune": "89348", - "libelleAcheminement": "ST JULIEN DU SAULT", - "nomCommune": "ST JULIEN DU SAULT" + "codePostal": "12540", + "codeCommune": "12212", + "libelleAcheminement": "ST BEAULIZE", + "nomCommune": "ST BEAULIZE" }, { - "codePostal": "01390", - "codeCommune": "01261", - "libelleAcheminement": "MONTHIEUX", - "nomCommune": "MONTHIEUX" + "codePostal": "13240", + "codeCommune": "13106", + "libelleAcheminement": "SEPTEMES LES VALLONS", + "nomCommune": "SEPTEMES LES VALLONS" }, { - "codePostal": "89110", - "codeCommune": "89360", - "libelleAcheminement": "ST MAURICE LE VIEIL", - "nomCommune": "ST MAURICE LE VIEIL" + "codePostal": "12620", + "codeCommune": "12213", + "libelleAcheminement": "ST BEAUZELY", + "nomCommune": "ST BEAUZELY" }, { - "codePostal": "01400", - "codeCommune": "01272", - "libelleAcheminement": "NEUVILLE LES DAMES", - "nomCommune": "NEUVILLE LES DAMES" + "codePostal": "13100", + "codeCommune": "13109", + "libelleAcheminement": "LE THOLONET", + "nomCommune": "LE THOLONET" }, { - "codePostal": "89110", - "codeCommune": "89361", - "libelleAcheminement": "ST MAURICE THIZOUAILLE", - "nomCommune": "ST MAURICE THIZOUAILLE" + "codePostal": "12470", + "codeCommune": "12214", + "libelleAcheminement": "ST CHELY D AUBRAC", + "nomCommune": "ST CHELY D AUBRAC" }, { - "codePostal": "01100", - "codeCommune": "01283", - "libelleAcheminement": "OYONNAX", - "nomCommune": "OYONNAX" + "codePostal": "13880", + "codeCommune": "13112", + "libelleAcheminement": "VELAUX", + "nomCommune": "VELAUX" }, { - "codePostal": "89150", - "codeCommune": "89370", - "libelleAcheminement": "ST VALERIEN", - "nomCommune": "ST VALERIEN" + "codePostal": "12420", + "codeCommune": "12223", + "libelleAcheminement": "ARGENCES EN AUBRAC", + "nomCommune": "ARGENCES EN AUBRAC" }, { - "codePostal": "01600", - "codeCommune": "01285", - "libelleAcheminement": "PARCIEUX", - "nomCommune": "PARCIEUX" + "codePostal": "13122", + "codeCommune": "13114", + "libelleAcheminement": "VENTABREN", + "nomCommune": "VENTABREN" }, { - "codePostal": "89100", - "codeCommune": "89373", - "libelleAcheminement": "SALIGNY", - "nomCommune": "SALIGNY" + "codePostal": "12100", + "codeCommune": "12225", + "libelleAcheminement": "ST GEORGES DE LUZENCON", + "nomCommune": "ST GEORGES DE LUZENCON" }, { - "codePostal": "01300", - "codeCommune": "01286", - "libelleAcheminement": "PARVES ET NATTAGES", - "nomCommune": "PARVES ET NATTAGES" + "codePostal": "13111", + "codeCommune": "13118", + "libelleAcheminement": "COUDOUX", + "nomCommune": "COUDOUX" }, { - "codePostal": "89420", - "codeCommune": "89377", - "libelleAcheminement": "SAUVIGNY LE BEUREAL", - "nomCommune": "SAUVIGNY LE BEUREAL" + "codePostal": "12260", + "codeCommune": "12227", + "libelleAcheminement": "ST IGEST", + "nomCommune": "ST IGEST" }, { - "codePostal": "01300", - "codeCommune": "01286", - "libelleAcheminement": "PARVES ET NATTAGES", - "nomCommune": "PARVES ET NATTAGES" + "codePostal": "13003", + "codeCommune": "13203", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 03" }, { - "codePostal": "89200", - "codeCommune": "89378", - "libelleAcheminement": "SAUVIGNY LE BOIS", - "nomCommune": "SAUVIGNY LE BOIS" + "codePostal": "12550", + "codeCommune": "12233", + "libelleAcheminement": "ST JUERY", + "nomCommune": "ST JUERY" }, { - "codePostal": "01630", - "codeCommune": "01288", - "libelleAcheminement": "PERON", - "nomCommune": "PERON" + "codePostal": "13008", + "codeCommune": "13208", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 08" }, { - "codePostal": "89520", - "codeCommune": "89400", - "libelleAcheminement": "SOUGERES EN PUISAYE", - "nomCommune": "SOUGERES EN PUISAYE" + "codePostal": "12170", + "codeCommune": "12235", + "libelleAcheminement": "ST JUST SUR VIAUR", + "nomCommune": "ST JUST SUR VIAUR" }, { - "codePostal": "01960", - "codeCommune": "01289", - "libelleAcheminement": "PERONNAS", - "nomCommune": "PERONNAS" + "codePostal": "13009", + "codeCommune": "13209", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 09" }, { - "codePostal": "89570", - "codeCommune": "89402", - "libelleAcheminement": "SOUMAINTRAIN", - "nomCommune": "SOUMAINTRAIN" + "codePostal": "12490", + "codeCommune": "12243", + "libelleAcheminement": "ST ROME DE CERNON", + "nomCommune": "ST ROME DE CERNON" }, { - "codePostal": "01330", - "codeCommune": "01299", - "libelleAcheminement": "LE PLANTAY", - "nomCommune": "LE PLANTAY" + "codePostal": "13010", + "codeCommune": "13210", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 10" }, { - "codePostal": "89160", - "codeCommune": "89403", - "libelleAcheminement": "STIGNY", - "nomCommune": "STIGNY" + "codePostal": "12300", + "codeCommune": "12246", + "libelleAcheminement": "ST SANTIN", + "nomCommune": "ST SANTIN" }, { - "codePostal": "01190", - "codeCommune": "01305", - "libelleAcheminement": "PONT DE VAUX", - "nomCommune": "PONT DE VAUX" + "codePostal": "14400", + "codeCommune": "14003", + "libelleAcheminement": "AGY", + "nomCommune": "AGY" }, { - "codePostal": "89100", - "codeCommune": "89404", - "libelleAcheminement": "SUBLIGNY", - "nomCommune": "SUBLIGNY" + "codePostal": "12380", + "codeCommune": "12248", + "libelleAcheminement": "ST SERNIN SUR RANCE", + "nomCommune": "ST SERNIN SUR RANCE" }, { - "codePostal": "01400", - "codeCommune": "01328", - "libelleAcheminement": "ROMANS", - "nomCommune": "ROMANS" + "codePostal": "14370", + "codeCommune": "14005", + "libelleAcheminement": "VALAMBRAY", + "nomCommune": "VALAMBRAY" }, { - "codePostal": "89560", - "codeCommune": "89405", - "libelleAcheminement": "LES HAUTS DE FORTERRE", - "nomCommune": "LES HAUTS DE FORTERRE" + "codePostal": "12370", + "codeCommune": "12249", + "libelleAcheminement": "ST SEVER DU MOUSTIER", + "nomCommune": "ST SEVER DU MOUSTIER" }, { - "codePostal": "01380", - "codeCommune": "01332", - "libelleAcheminement": "ST ANDRE DE BAGE", - "nomCommune": "ST ANDRE DE BAGE" + "codePostal": "14240", + "codeCommune": "14011", + "libelleAcheminement": "AURSEULLES", + "nomCommune": "AURSEULLES" }, { - "codePostal": "89200", - "codeCommune": "89410", - "libelleAcheminement": "THAROT", - "nomCommune": "THAROT" + "codePostal": "12460", + "codeCommune": "12250", + "libelleAcheminement": "ST SYMPHORIEN DE THENIERES", + "nomCommune": "ST SYMPHORIEN DE THENIERES" }, { - "codePostal": "01240", - "codeCommune": "01335", - "libelleAcheminement": "ST ANDRE LE BOUCHOUX", - "nomCommune": "ST ANDRE LE BOUCHOUX" + "codePostal": "14240", + "codeCommune": "14011", + "libelleAcheminement": "AURSEULLES", + "nomCommune": "AURSEULLES" }, { - "codePostal": "89260", - "codeCommune": "89414", - "libelleAcheminement": "THORIGNY SUR OREUSE", - "nomCommune": "THORIGNY SUR OREUSE" + "codePostal": "12260", + "codeCommune": "12256", + "libelleAcheminement": "SALVAGNAC CAJARC", + "nomCommune": "SALVAGNAC CAJARC" }, { - "codePostal": "01960", - "codeCommune": "01336", - "libelleAcheminement": "ST ANDRE SUR VIEUX JONC", - "nomCommune": "ST ANDRE SUR VIEUX JONC" + "codePostal": "14240", + "codeCommune": "14011", + "libelleAcheminement": "AURSEULLES", + "nomCommune": "AURSEULLES" }, { - "codePostal": "89460", - "codeCommune": "89424", - "libelleAcheminement": "TRUCY SUR YONNE", - "nomCommune": "TRUCY SUR YONNE" + "codePostal": "12700", + "codeCommune": "12257", + "libelleAcheminement": "CAUSSE ET DIEGE", + "nomCommune": "CAUSSE ET DIEGE" }, { - "codePostal": "01140", - "codeCommune": "01351", - "libelleAcheminement": "ST ETIENNE SUR CHALARONNE", - "nomCommune": "ST ETIENNE SUR CHALARONNE" + "codePostal": "14430", + "codeCommune": "14012", + "libelleAcheminement": "ANGERVILLE", + "nomCommune": "ANGERVILLE" }, { - "codePostal": "89320", - "codeCommune": "89432", - "libelleAcheminement": "VAUDEURS", - "nomCommune": "VAUDEURS" + "codePostal": "12800", + "codeCommune": "12262", + "libelleAcheminement": "SAUVETERRE DE ROUERGUE", + "nomCommune": "SAUVETERRE DE ROUERGUE" }, { - "codePostal": "01380", - "codeCommune": "01355", - "libelleAcheminement": "ST GENIS SUR MENTHON", - "nomCommune": "ST GENIS SUR MENTHON" + "codePostal": "14117", + "codeCommune": "14021", + "libelleAcheminement": "ARROMANCHES LES BAINS", + "nomCommune": "ARROMANCHES LES BAINS" }, { - "codePostal": "89210", - "codeCommune": "89436", - "libelleAcheminement": "VENIZY", - "nomCommune": "VENIZY" + "codePostal": "12200", + "codeCommune": "12263", + "libelleAcheminement": "SAVIGNAC", + "nomCommune": "SAVIGNAC" }, { - "codePostal": "01400", - "codeCommune": "01356", - "libelleAcheminement": "ST GEORGES SUR RENON", - "nomCommune": "ST GEORGES SUR RENON" + "codePostal": "14960", + "codeCommune": "14022", + "libelleAcheminement": "ASNELLES", + "nomCommune": "ASNELLES" }, { - "codePostal": "89240", - "codeCommune": "89453", - "libelleAcheminement": "VILLEFARGEAU", - "nomCommune": "VILLEFARGEAU" + "codePostal": "12290", + "codeCommune": "12266", + "libelleAcheminement": "SEGUR", + "nomCommune": "SEGUR" }, { - "codePostal": "01800", - "codeCommune": "01361", - "libelleAcheminement": "ST JEAN DE NIOST", - "nomCommune": "ST JEAN DE NIOST" + "codePostal": "14260", + "codeCommune": "14027", + "libelleAcheminement": "LES MONTS D AUNAY", + "nomCommune": "LES MONTS D AUNAY" }, { - "codePostal": "89140", - "codeCommune": "89456", - "libelleAcheminement": "VILLEMANOCHE", - "nomCommune": "VILLEMANOCHE" + "codePostal": "12380", + "codeCommune": "12269", + "libelleAcheminement": "LA SERRE", + "nomCommune": "LA SERRE" }, { - "codePostal": "01750", - "codeCommune": "01370", - "libelleAcheminement": "ST LAURENT SUR SAONE", - "nomCommune": "ST LAURENT SUR SAONE" + "codePostal": "14260", + "codeCommune": "14027", + "libelleAcheminement": "LES MONTS D AUNAY", + "nomCommune": "LES MONTS D AUNAY" }, { - "codePostal": "89150", - "codeCommune": "89459", - "libelleAcheminement": "VILLENEUVE LA DONDAGRE", - "nomCommune": "VILLENEUVE LA DONDAGRE" + "codePostal": "12150", + "codeCommune": "12270", + "libelleAcheminement": "SEVERAC D AVEYRON", + "nomCommune": "SEVERAC D AVEYRON" }, { - "codePostal": "01510", - "codeCommune": "01372", - "libelleAcheminement": "ST MARTIN DE BAVEL", - "nomCommune": "ST MARTIN DE BAVEL" + "codePostal": "14260", + "codeCommune": "14027", + "libelleAcheminement": "LES MONTS D AUNAY", + "nomCommune": "LES MONTS D AUNAY" }, { - "codePostal": "89260", - "codeCommune": "89469", - "libelleAcheminement": "PERCENEIGE", - "nomCommune": "PERCENEIGE" + "codePostal": "12150", + "codeCommune": "12270", + "libelleAcheminement": "SEVERAC D AVEYRON", + "nomCommune": "SEVERAC D AVEYRON" }, { - "codePostal": "01560", - "codeCommune": "01388", - "libelleAcheminement": "ST TRIVIER DE COURTES", - "nomCommune": "ST TRIVIER DE COURTES" + "codePostal": "14770", + "codeCommune": "14027", + "libelleAcheminement": "LES MONTS D AUNAY", + "nomCommune": "LES MONTS D AUNAY" }, { - "codePostal": "89130", - "codeCommune": "89472", - "libelleAcheminement": "VILLIERS ST BENOIT", - "nomCommune": "VILLIERS ST BENOIT" + "codePostal": "12800", + "codeCommune": "12276", + "libelleAcheminement": "TAURIAC DE NAUCELLE", + "nomCommune": "TAURIAC DE NAUCELLE" }, { - "codePostal": "01990", - "codeCommune": "01389", - "libelleAcheminement": "ST TRIVIER SUR MOIGNANS", - "nomCommune": "ST TRIVIER SUR MOIGNANS" + "codePostal": "14280", + "codeCommune": "14030", + "libelleAcheminement": "AUTHIE", + "nomCommune": "AUTHIE" }, { - "codePostal": "89360", - "codeCommune": "89474", - "libelleAcheminement": "VILLIERS VINEUX", - "nomCommune": "VILLIERS VINEUX" + "codePostal": "12600", + "codeCommune": "12277", + "libelleAcheminement": "TAUSSAC", + "nomCommune": "TAUSSAC" }, { - "codePostal": "01220", - "codeCommune": "01397", - "libelleAcheminement": "SAUVERNY", - "nomCommune": "SAUVERNY" + "codePostal": "14340", + "codeCommune": "14033", + "libelleAcheminement": "AUVILLARS", + "nomCommune": "AUVILLARS" }, { - "codePostal": "89740", - "codeCommune": "89475", - "libelleAcheminement": "VILLON", - "nomCommune": "VILLON" + "codePostal": "12520", + "codeCommune": "12291", + "libelleAcheminement": "VERRIERES", + "nomCommune": "VERRIERES" }, { - "codePostal": "01580", - "codeCommune": "01410", - "libelleAcheminement": "SONTHONNAX LA MONTAGNE", - "nomCommune": "SONTHONNAX LA MONTAGNE" + "codePostal": "14480", + "codeCommune": "14038", + "libelleAcheminement": "BANVILLE", + "nomCommune": "BANVILLE" }, { - "codePostal": "89290", - "codeCommune": "89479", - "libelleAcheminement": "VINCELOTTES", - "nomCommune": "VINCELOTTES" + "codePostal": "12720", + "codeCommune": "12293", + "libelleAcheminement": "VEYREAU", + "nomCommune": "VEYREAU" }, { - "codePostal": "01600", - "codeCommune": "01423", - "libelleAcheminement": "TOUSSIEUX", - "nomCommune": "TOUSSIEUX" + "codePostal": "14620", + "codeCommune": "14043", + "libelleAcheminement": "BAROU EN AUGE", + "nomCommune": "BAROU EN AUGE" }, { - "codePostal": "89260", - "codeCommune": "89483", - "libelleAcheminement": "VOISINES", - "nomCommune": "VOISINES" + "codePostal": "12430", + "codeCommune": "12299", + "libelleAcheminement": "VILLEFRANCHE DE PANAT", + "nomCommune": "VILLEFRANCHE DE PANAT" }, { - "codePostal": "01370", - "codeCommune": "01426", - "libelleAcheminement": "VAL REVERMONT", - "nomCommune": "VAL REVERMONT" + "codePostal": "14380", + "codeCommune": "14054", + "libelleAcheminement": "BEAUMESNIL", + "nomCommune": "BEAUMESNIL" }, { - "codePostal": "90500", - "codeCommune": "90009", - "libelleAcheminement": "BEAUCOURT", - "nomCommune": "BEAUCOURT" + "codePostal": "12200", + "codeCommune": "12300", + "libelleAcheminement": "VILLEFRANCHE DE ROUERGUE", + "nomCommune": "VILLEFRANCHE DE ROUERGUE" }, { - "codePostal": "01270", - "codeCommune": "01432", - "libelleAcheminement": "VERJON", - "nomCommune": "VERJON" + "codePostal": "14910", + "codeCommune": "14059", + "libelleAcheminement": "BENERVILLE SUR MER", + "nomCommune": "BENERVILLE SUR MER" }, { - "codePostal": "90100", - "codeCommune": "90028", - "libelleAcheminement": "COURTELEVANT", - "nomCommune": "COURTELEVANT" + "codePostal": "12110", + "codeCommune": "12305", + "libelleAcheminement": "VIVIEZ", + "nomCommune": "VIVIEZ" }, { - "codePostal": "01330", - "codeCommune": "01443", - "libelleAcheminement": "VILLARS LES DOMBES", - "nomCommune": "VILLARS LES DOMBES" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "90400", - "codeCommune": "90032", - "libelleAcheminement": "DANJOUTIN", - "nomCommune": "DANJOUTIN" + "codePostal": "12410", + "codeCommune": "12307", + "libelleAcheminement": "CURAN", + "nomCommune": "CURAN" }, { - "codePostal": "01270", - "codeCommune": "01445", - "libelleAcheminement": "VILLEMOTIER", - "nomCommune": "VILLEMOTIER" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "90100", - "codeCommune": "90043", - "libelleAcheminement": "FAVEROIS", - "nomCommune": "FAVEROIS" + "codePostal": "13980", + "codeCommune": "13003", + "libelleAcheminement": "ALLEINS", + "nomCommune": "ALLEINS" }, { - "codePostal": "01250", - "codeCommune": "01447", - "libelleAcheminement": "VILLEREVERSURE", - "nomCommune": "VILLEREVERSURE" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "90340", - "codeCommune": "90048", - "libelleAcheminement": "FONTENELLE", - "nomCommune": "FONTENELLE" + "codePostal": "13280", + "codeCommune": "13004", + "libelleAcheminement": "ARLES", + "nomCommune": "ARLES" }, { - "codePostal": "02800", - "codeCommune": "02002", - "libelleAcheminement": "ACHERY", - "nomCommune": "ACHERY" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "90140", - "codeCommune": "90051", - "libelleAcheminement": "FROIDEFONTAINE", - "nomCommune": "FROIDEFONTAINE" + "codePostal": "13400", + "codeCommune": "13005", + "libelleAcheminement": "AUBAGNE", + "nomCommune": "AUBAGNE" }, { - "codePostal": "02340", - "codeCommune": "02004", - "libelleAcheminement": "AGNICOURT ET SECHELLES", - "nomCommune": "AGNICOURT ET SECHELLES" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "90100", - "codeCommune": "90055", - "libelleAcheminement": "GROSNE", - "nomCommune": "GROSNE" + "codePostal": "13130", + "codeCommune": "13014", + "libelleAcheminement": "BERRE L ETANG", + "nomCommune": "BERRE L ETANG" }, { - "codePostal": "02820", - "codeCommune": "02007", - "libelleAcheminement": "AIZELLES", - "nomCommune": "AIZELLES" + "codePostal": "14170", + "codeCommune": "14064", + "libelleAcheminement": "BERNIERES D AILLY", + "nomCommune": "BERNIERES D AILLY" }, { - "codePostal": "90100", - "codeCommune": "90056", - "libelleAcheminement": "JONCHEREY", - "nomCommune": "JONCHEREY" + "codePostal": "13150", + "codeCommune": "13017", + "libelleAcheminement": "BOULBON", + "nomCommune": "BOULBON" }, { - "codePostal": "02700", - "codeCommune": "02014", - "libelleAcheminement": "AMIGNY ROUY", - "nomCommune": "AMIGNY ROUY" + "codePostal": "14112", + "codeCommune": "14068", + "libelleAcheminement": "BIEVILLE BEUVILLE", + "nomCommune": "BIEVILLE BEUVILLE" }, { - "codePostal": "90500", - "codeCommune": "90070", - "libelleAcheminement": "MONTBOUTON", - "nomCommune": "MONTBOUTON" + "codePostal": "13260", + "codeCommune": "13022", + "libelleAcheminement": "CASSIS", + "nomCommune": "CASSIS" }, { - "codePostal": "02600", - "codeCommune": "02015", - "libelleAcheminement": "ANCIENVILLE", - "nomCommune": "ANCIENVILLE" + "codePostal": "14100", + "codeCommune": "14069", + "libelleAcheminement": "BEUVILLERS", + "nomCommune": "BEUVILLERS" }, { - "codePostal": "90340", - "codeCommune": "90074", - "libelleAcheminement": "NOVILLARD", - "nomCommune": "NOVILLARD" + "codePostal": "13990", + "codeCommune": "13038", + "libelleAcheminement": "FONTVIEILLE", + "nomCommune": "FONTVIEILLE" }, { - "codePostal": "02800", - "codeCommune": "02016", - "libelleAcheminement": "ANDELAIN", - "nomCommune": "ANDELAIN" + "codePostal": "14430", + "codeCommune": "14070", + "libelleAcheminement": "BEUVRON EN AUGE", + "nomCommune": "BEUVRON EN AUGE" }, { - "codePostal": "90110", - "codeCommune": "90086", - "libelleAcheminement": "ROMAGNY SOUS ROUGEMONT", - "nomCommune": "ROMAGNY SOUS ROUGEMONT" + "codePostal": "13710", + "codeCommune": "13040", + "libelleAcheminement": "FUVEAU", + "nomCommune": "FUVEAU" }, { - "codePostal": "02500", - "codeCommune": "02020", - "libelleAcheminement": "ANY MARTIN RIEUX", - "nomCommune": "ANY MARTIN RIEUX" + "codePostal": "14910", + "codeCommune": "14079", + "libelleAcheminement": "BLONVILLE SUR MER", + "nomCommune": "BLONVILLE SUR MER" }, { - "codePostal": "90380", - "codeCommune": "90087", - "libelleAcheminement": "ROPPE", - "nomCommune": "ROPPE" + "codePostal": "13120", + "codeCommune": "13041", + "libelleAcheminement": "GARDANNE", + "nomCommune": "GARDANNE" }, { - "codePostal": "02480", - "codeCommune": "02025", - "libelleAcheminement": "ARTEMPS", - "nomCommune": "ARTEMPS" + "codePostal": "14130", + "codeCommune": "14085", + "libelleAcheminement": "BONNEVILLE LA LOUVET", + "nomCommune": "BONNEVILLE LA LOUVET" }, { - "codePostal": "90100", - "codeCommune": "90096", - "libelleAcheminement": "THIANCOURT", - "nomCommune": "THIANCOURT" + "codePostal": "13690", + "codeCommune": "13045", + "libelleAcheminement": "GRAVESON", + "nomCommune": "GRAVESON" }, { - "codePostal": "02590", - "codeCommune": "02032", - "libelleAcheminement": "AUBIGNY AUX KAISNES", - "nomCommune": "AUBIGNY AUX KAISNES" + "codePostal": "14800", + "codeCommune": "14086", + "libelleAcheminement": "BONNEVILLE SUR TOUQUES", + "nomCommune": "BONNEVILLE SUR TOUQUES" }, { - "codePostal": "90200", - "codeCommune": "90102", - "libelleAcheminement": "VESCEMONT", - "nomCommune": "VESCEMONT" + "codePostal": "13113", + "codeCommune": "13049", + "libelleAcheminement": "LAMANON", + "nomCommune": "LAMANON" }, { - "codePostal": "02400", - "codeCommune": "02042", - "libelleAcheminement": "AZY SUR MARNE", - "nomCommune": "AZY SUR MARNE" + "codePostal": "14260", + "codeCommune": "14096", + "libelleAcheminement": "BREMOY", + "nomCommune": "BREMOY" }, { - "codePostal": "90300", - "codeCommune": "90103", - "libelleAcheminement": "VETRIGNE", - "nomCommune": "VETRIGNE" + "codePostal": "13910", + "codeCommune": "13052", + "libelleAcheminement": "MAILLANE", + "nomCommune": "MAILLANE" }, { - "codePostal": "02270", - "codeCommune": "02048", - "libelleAcheminement": "BARENTON SUR SERRE", - "nomCommune": "BARENTON SUR SERRE" + "codePostal": "14760", + "codeCommune": "14101", + "libelleAcheminement": "BRETTEVILLE SUR ODON", + "nomCommune": "BRETTEVILLE SUR ODON" }, { - "codePostal": "91470", - "codeCommune": "91017", - "libelleAcheminement": "ANGERVILLIERS", - "nomCommune": "ANGERVILLIERS" + "codePostal": "01640", + "codeCommune": "01002", + "libelleAcheminement": "L ABERGEMENT DE VAREY", + "nomCommune": "L ABERGEMENT DE VAREY" }, { - "codePostal": "02170", - "codeCommune": "02050", - "libelleAcheminement": "BARZY EN THIERACHE", - "nomCommune": "BARZY EN THIERACHE" + "codePostal": "13500", + "codeCommune": "13056", + "libelleAcheminement": "MARTIGUES", + "nomCommune": "MARTIGUES" }, { - "codePostal": "91200", - "codeCommune": "91027", - "libelleAcheminement": "ATHIS MONS", - "nomCommune": "ATHIS MONS" + "codePostal": "14390", + "codeCommune": "14117", + "libelleAcheminement": "CABOURG", + "nomCommune": "CABOURG" }, { - "codePostal": "02330", - "codeCommune": "02053", - "libelleAcheminement": "VALLEES EN CHAMPAGNE", - "nomCommune": "VALLEES EN CHAMPAGNE" + "codePostal": "01330", + "codeCommune": "01005", + "libelleAcheminement": "AMBERIEUX EN DOMBES", + "nomCommune": "AMBERIEUX EN DOMBES" }, { - "codePostal": "91410", - "codeCommune": "91035", - "libelleAcheminement": "AUTHON LA PLAINE", - "nomCommune": "AUTHON LA PLAINE" + "codePostal": "13500", + "codeCommune": "13056", + "libelleAcheminement": "MARTIGUES", + "nomCommune": "MARTIGUES" }, { - "codePostal": "02110", - "codeCommune": "02061", - "libelleAcheminement": "BECQUIGNY", - "nomCommune": "BECQUIGNY" + "codePostal": "14630", + "codeCommune": "14119", + "libelleAcheminement": "CAGNY", + "nomCommune": "CAGNY" }, { - "codePostal": "91630", - "codeCommune": "91041", - "libelleAcheminement": "AVRAINVILLE", - "nomCommune": "AVRAINVILLE" + "codePostal": "01300", + "codeCommune": "01006", + "libelleAcheminement": "AMBLEON", + "nomCommune": "AMBLEON" }, { - "codePostal": "02440", - "codeCommune": "02066", - "libelleAcheminement": "BENAY", - "nomCommune": "BENAY" + "codePostal": "13520", + "codeCommune": "13058", + "libelleAcheminement": "MAUSSANE LES ALPILLES", + "nomCommune": "MAUSSANE LES ALPILLES" }, { - "codePostal": "91590", - "codeCommune": "91047", - "libelleAcheminement": "BAULNE", - "nomCommune": "BAULNE" + "codePostal": "14340", + "codeCommune": "14126", + "libelleAcheminement": "CAMBREMER", + "nomCommune": "CAMBREMER" }, { - "codePostal": "02340", - "codeCommune": "02069", - "libelleAcheminement": "BERLISE", - "nomCommune": "BERLISE" + "codePostal": "01500", + "codeCommune": "01008", + "libelleAcheminement": "AMBUTRIX", + "nomCommune": "AMBUTRIX" }, { - "codePostal": "91150", - "codeCommune": "91067", - "libelleAcheminement": "BLANDY", - "nomCommune": "BLANDY" + "codePostal": "13150", + "codeCommune": "13061", + "libelleAcheminement": "ST PIERRE DE MEZOARGUES", + "nomCommune": "ST PIERRE DE MEZOARGUES" }, { - "codePostal": "02800", - "codeCommune": "02074", - "libelleAcheminement": "BERTAUCOURT EPOURDON", - "nomCommune": "BERTAUCOURT EPOURDON" + "codePostal": "14740", + "codeCommune": "14135", + "libelleAcheminement": "CARCAGNY", + "nomCommune": "CARCAGNY" }, { - "codePostal": "91720", - "codeCommune": "91069", - "libelleAcheminement": "BOIGNEVILLE", - "nomCommune": "BOIGNEVILLE" + "codePostal": "01300", + "codeCommune": "01009", + "libelleAcheminement": "ANDERT ET CONDON", + "nomCommune": "ANDERT ET CONDON" }, { - "codePostal": "02240", - "codeCommune": "02075", - "libelleAcheminement": "BERTHENICOURT", - "nomCommune": "BERTHENICOURT" + "codePostal": "13140", + "codeCommune": "13063", + "libelleAcheminement": "MIRAMAS", + "nomCommune": "MIRAMAS" }, { - "codePostal": "91690", - "codeCommune": "91079", - "libelleAcheminement": "BOISSY LA RIVIERE", - "nomCommune": "BOISSY LA RIVIERE" + "codePostal": "14490", + "codeCommune": "14140", + "libelleAcheminement": "CASTILLON", + "nomCommune": "CASTILLON" }, { - "codePostal": "02130", - "codeCommune": "02083", - "libelleAcheminement": "BEUVARDES", - "nomCommune": "BEUVARDES" + "codePostal": "01110", + "codeCommune": "01012", + "libelleAcheminement": "ARANC", + "nomCommune": "ARANC" }, { - "codePostal": "91150", - "codeCommune": "91109", - "libelleAcheminement": "BRIERES LES SCELLES", - "nomCommune": "BRIERES LES SCELLES" + "codePostal": "13520", + "codeCommune": "13068", + "libelleAcheminement": "PARADOU", + "nomCommune": "PARADOU" }, { - "codePostal": "02310", - "codeCommune": "02084", - "libelleAcheminement": "BEZU LE GUERY", - "nomCommune": "BEZU LE GUERY" + "codePostal": "14370", + "codeCommune": "14163", + "libelleAcheminement": "CLEVILLE", + "nomCommune": "CLEVILLE" }, { - "codePostal": "91150", - "codeCommune": "91112", - "libelleAcheminement": "BROUY", - "nomCommune": "BROUY" + "codePostal": "01300", + "codeCommune": "01015", + "libelleAcheminement": "ARBOYS EN BUGEY", + "nomCommune": "ARBOYS EN BUGEY" }, { - "codePostal": "02400", - "codeCommune": "02085", - "libelleAcheminement": "BEZU ST GERMAIN", - "nomCommune": "BEZU ST GERMAIN" + "codePostal": "13330", + "codeCommune": "13069", + "libelleAcheminement": "PELISSANNE", + "nomCommune": "PELISSANNE" }, { - "codePostal": "91440", - "codeCommune": "91122", - "libelleAcheminement": "BURES SUR YVETTE", - "nomCommune": "BURES SUR YVETTE" + "codePostal": "14770", + "codeCommune": "14174", + "libelleAcheminement": "CONDE EN NORMANDIE", + "nomCommune": "CONDE EN NORMANDIE" }, { - "codePostal": "02110", - "codeCommune": "02095", - "libelleAcheminement": "BOHAIN EN VERMANDOIS", - "nomCommune": "BOHAIN EN VERMANDOIS" + "codePostal": "01190", + "codeCommune": "01016", + "libelleAcheminement": "ARBIGNY", + "nomCommune": "ARBIGNY" }, { - "codePostal": "91580", - "codeCommune": "91148", - "libelleAcheminement": "CHAUFFOUR LES ETRECHY", - "nomCommune": "CHAUFFOUR LES ETRECHY" + "codePostal": "13821", + "codeCommune": "13070", + "libelleAcheminement": "LA PENNE SUR HUVEAUNE", + "nomCommune": "LA PENNE SUR HUVEAUNE" }, { - "codePostal": "02400", - "codeCommune": "02098", - "libelleAcheminement": "BONNEIL", - "nomCommune": "BONNEIL" + "codePostal": "14770", + "codeCommune": "14174", + "libelleAcheminement": "CONDE EN NORMANDIE", + "nomCommune": "CONDE EN NORMANDIE" }, { - "codePostal": "91210", - "codeCommune": "91201", - "libelleAcheminement": "DRAVEIL", - "nomCommune": "DRAVEIL" + "codePostal": "01510", + "codeCommune": "01019", + "libelleAcheminement": "ARMIX", + "nomCommune": "ARMIX" }, { - "codePostal": "02860", - "codeCommune": "02102", - "libelleAcheminement": "BOUCONVILLE VAUCLAIR", - "nomCommune": "BOUCONVILLE VAUCLAIR" + "codePostal": "13124", + "codeCommune": "13073", + "libelleAcheminement": "PEYPIN", + "nomCommune": "PEYPIN" }, { - "codePostal": "91210", - "codeCommune": "91201", - "libelleAcheminement": "DRAVEIL", - "nomCommune": "DRAVEIL" + "codePostal": "14123", + "codeCommune": "14181", + "libelleAcheminement": "CORMELLES LE ROYAL", + "nomCommune": "CORMELLES LE ROYAL" }, { - "codePostal": "02140", - "codeCommune": "02109", - "libelleAcheminement": "LA BOUTEILLE", - "nomCommune": "LA BOUTEILLE" + "codePostal": "01340", + "codeCommune": "01024", + "libelleAcheminement": "ATTIGNAT", + "nomCommune": "ATTIGNAT" }, { - "codePostal": "91360", - "codeCommune": "91216", - "libelleAcheminement": "EPINAY SUR ORGE", - "nomCommune": "EPINAY SUR ORGE" + "codePostal": "13750", + "codeCommune": "13076", + "libelleAcheminement": "PLAN D ORGON", + "nomCommune": "PLAN D ORGON" }, { - "codePostal": "02220", - "codeCommune": "02110", - "libelleAcheminement": "BRAINE", - "nomCommune": "BRAINE" + "codePostal": "14170", + "codeCommune": "14190", + "libelleAcheminement": "COURCY", + "nomCommune": "COURCY" }, { - "codePostal": "91580", - "codeCommune": "91226", - "libelleAcheminement": "ETRECHY", - "nomCommune": "ETRECHY" + "codePostal": "01380", + "codeCommune": "01026", + "libelleAcheminement": "BAGE LE CHATEL", + "nomCommune": "BAGE LE CHATEL" }, { - "codePostal": "02000", - "codeCommune": "02115", - "libelleAcheminement": "BRAYE EN LAONNOIS", - "nomCommune": "BRAYE EN LAONNOIS" + "codePostal": "13110", + "codeCommune": "13077", + "libelleAcheminement": "PORT DE BOUC", + "nomCommune": "PORT DE BOUC" }, { - "codePostal": "91470", - "codeCommune": "91249", - "libelleAcheminement": "FORGES LES BAINS", - "nomCommune": "FORGES LES BAINS" + "codePostal": "14470", + "codeCommune": "14191", + "libelleAcheminement": "COURSEULLES SUR MER", + "nomCommune": "COURSEULLES SUR MER" }, { - "codePostal": "02210", - "codeCommune": "02119", - "libelleAcheminement": "BRECY", - "nomCommune": "BRECY" + "codePostal": "01200", + "codeCommune": "01033", + "libelleAcheminement": "VALSERHONE", + "nomCommune": "VALSERHONE" }, { - "codePostal": "91590", - "codeCommune": "91293", - "libelleAcheminement": "GUIGNEVILLE SUR ESSONNE", - "nomCommune": "GUIGNEVILLE SUR ESSONNE" + "codePostal": "13230", + "codeCommune": "13078", + "libelleAcheminement": "PORT ST LOUIS DU RHONE", + "nomCommune": "PORT ST LOUIS DU RHONE" }, { - "codePostal": "02140", - "codeCommune": "02136", - "libelleAcheminement": "BURELLES", - "nomCommune": "BURELLES" + "codePostal": "14113", + "codeCommune": "14202", + "libelleAcheminement": "CRICQUEBOEUF", + "nomCommune": "CRICQUEBOEUF" }, { - "codePostal": "91430", - "codeCommune": "91312", - "libelleAcheminement": "IGNY", - "nomCommune": "IGNY" + "codePostal": "01260", + "codeCommune": "01036", + "libelleAcheminement": "VALROMEY SUR SERAN", + "nomCommune": "VALROMEY SUR SERAN" }, { - "codePostal": "02810", - "codeCommune": "02137", - "libelleAcheminement": "BUSSIARES", - "nomCommune": "BUSSIARES" + "codePostal": "13114", + "codeCommune": "13079", + "libelleAcheminement": "PUYLOUBIER", + "nomCommune": "PUYLOUBIER" }, { - "codePostal": "91630", - "codeCommune": "91332", - "libelleAcheminement": "LEUDEVILLE", - "nomCommune": "LEUDEVILLE" + "codePostal": "14690", + "codeCommune": "14223", + "libelleAcheminement": "LE DETROIT", + "nomCommune": "LE DETROIT" }, { - "codePostal": "02300", - "codeCommune": "02145", - "libelleAcheminement": "CAUMONT", - "nomCommune": "CAUMONT" + "codePostal": "01470", + "codeCommune": "01037", + "libelleAcheminement": "BENONCES", + "nomCommune": "BENONCES" }, { - "codePostal": "91160", - "codeCommune": "91345", - "libelleAcheminement": "LONGJUMEAU", - "nomCommune": "LONGJUMEAU" + "codePostal": "13830", + "codeCommune": "13085", + "libelleAcheminement": "ROQUEFORT LA BEDOULE", + "nomCommune": "ROQUEFORT LA BEDOULE" }, { - "codePostal": "02320", - "codeCommune": "02153", - "libelleAcheminement": "CESSIERES SUZY", - "nomCommune": "CESSIERES SUZY" + "codePostal": "14430", + "codeCommune": "14229", + "libelleAcheminement": "DOZULE", + "nomCommune": "DOZULE" }, { - "codePostal": "91660", - "codeCommune": "91390", - "libelleAcheminement": "LE MEREVILLOIS", - "nomCommune": "LE MEREVILLOIS" + "codePostal": "01500", + "codeCommune": "01041", + "libelleAcheminement": "BETTANT", + "nomCommune": "BETTANT" }, { - "codePostal": "02340", - "codeCommune": "02160", - "libelleAcheminement": "CHAOURSE", - "nomCommune": "CHAOURSE" + "codePostal": "13360", + "codeCommune": "13086", + "libelleAcheminement": "ROQUEVAIRE", + "nomCommune": "ROQUEVAIRE" }, { - "codePostal": "91490", - "codeCommune": "91408", - "libelleAcheminement": "MOIGNY SUR ECOLE", - "nomCommune": "MOIGNY SUR ECOLE" + "codePostal": "14800", + "codeCommune": "14238", + "libelleAcheminement": "ENGLESQUEVILLE EN AUGE", + "nomCommune": "ENGLESQUEVILLE EN AUGE" }, { - "codePostal": "02850", - "codeCommune": "02164", - "libelleAcheminement": "LE CHARMEL", - "nomCommune": "LE CHARMEL" + "codePostal": "01200", + "codeCommune": "01044", + "libelleAcheminement": "BILLIAT", + "nomCommune": "BILLIAT" }, { - "codePostal": "91310", - "codeCommune": "91425", - "libelleAcheminement": "MONTLHERY", - "nomCommune": "MONTLHERY" + "codePostal": "13100", + "codeCommune": "13090", + "libelleAcheminement": "ST ANTONIN SUR BAYON", + "nomCommune": "ST ANTONIN SUR BAYON" }, { - "codePostal": "02800", - "codeCommune": "02165", - "libelleAcheminement": "CHARMES", - "nomCommune": "CHARMES" + "codePostal": "14710", + "codeCommune": "14239", + "libelleAcheminement": "ENGLESQUEVILLE LA PERCEE", + "nomCommune": "ENGLESQUEVILLE LA PERCEE" }, { - "codePostal": "91390", - "codeCommune": "91434", - "libelleAcheminement": "MORSANG SUR ORGE", - "nomCommune": "MORSANG SUR ORGE" + "codePostal": "01150", + "codeCommune": "01047", + "libelleAcheminement": "BLYES", + "nomCommune": "BLYES" }, { - "codePostal": "02400", - "codeCommune": "02166", - "libelleAcheminement": "CHARTEVES", - "nomCommune": "CHARTEVES" + "codePostal": "13310", + "codeCommune": "13097", + "libelleAcheminement": "ST MARTIN DE CRAU", + "nomCommune": "ST MARTIN DE CRAU" }, { - "codePostal": "91590", - "codeCommune": "91473", - "libelleAcheminement": "ORVEAU", - "nomCommune": "ORVEAU" + "codePostal": "14270", + "codeCommune": "14245", + "libelleAcheminement": "ERNES", + "nomCommune": "ERNES" }, { - "codePostal": "02370", - "codeCommune": "02167", - "libelleAcheminement": "CHASSEMY", - "nomCommune": "CHASSEMY" + "codePostal": "01380", + "codeCommune": "01050", + "libelleAcheminement": "BOISSEY", + "nomCommune": "BOISSEY" }, { - "codePostal": "91550", - "codeCommune": "91479", - "libelleAcheminement": "PARAY VIEILLE POSTE", - "nomCommune": "PARAY VIEILLE POSTE" + "codePostal": "13300", + "codeCommune": "13103", + "libelleAcheminement": "SALON DE PROVENCE", + "nomCommune": "SALON DE PROVENCE" }, { - "codePostal": "02000", - "codeCommune": "02174", - "libelleAcheminement": "CHAVIGNON", - "nomCommune": "CHAVIGNON" + "codePostal": "14850", + "codeCommune": "14246", + "libelleAcheminement": "ESCOVILLE", + "nomCommune": "ESCOVILLE" }, { - "codePostal": "91410", - "codeCommune": "91495", - "libelleAcheminement": "PLESSIS ST BENOIST", - "nomCommune": "PLESSIS ST BENOIST" + "codePostal": "01360", + "codeCommune": "01062", + "libelleAcheminement": "BRESSOLLES", + "nomCommune": "BRESSOLLES" }, { - "codePostal": "02120", - "codeCommune": "02188", - "libelleAcheminement": "CHIGNY", - "nomCommune": "CHIGNY" + "codePostal": "13470", + "codeCommune": "13119", + "libelleAcheminement": "CARNOUX EN PROVENCE", + "nomCommune": "CARNOUX EN PROVENCE" }, { - "codePostal": "91150", - "codeCommune": "91508", - "libelleAcheminement": "PUISELET LE MARAIS", - "nomCommune": "PUISELET LE MARAIS" + "codePostal": "14930", + "codeCommune": "14254", + "libelleAcheminement": "ETERVILLE", + "nomCommune": "ETERVILLE" }, { - "codePostal": "02600", - "codeCommune": "02201", - "libelleAcheminement": "COEUVRES ET VALSERY", - "nomCommune": "COEUVRES ET VALSERY" + "codePostal": "01310", + "codeCommune": "01065", + "libelleAcheminement": "BUELLAS", + "nomCommune": "BUELLAS" }, { - "codePostal": "91690", - "codeCommune": "91533", - "libelleAcheminement": "SACLAS", - "nomCommune": "SACLAS" + "codePostal": "13001", + "codeCommune": "13201", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 01" }, { - "codePostal": "02210", - "codeCommune": "02203", - "libelleAcheminement": "COINCY", - "nomCommune": "COINCY" + "codePostal": "14130", + "codeCommune": "14261", + "libelleAcheminement": "LE FAULQ", + "nomCommune": "LE FAULQ" }, { - "codePostal": "91400", - "codeCommune": "91534", - "libelleAcheminement": "SACLAY", - "nomCommune": "SACLAY" + "codePostal": "01510", + "codeCommune": "01066", + "libelleAcheminement": "LA BURBANCHE", + "nomCommune": "LA BURBANCHE" }, { - "codePostal": "02860", - "codeCommune": "02205", - "libelleAcheminement": "COLLIGIS CRANDELAIN", - "nomCommune": "COLLIGIS CRANDELAIN" + "codePostal": "13002", + "codeCommune": "13202", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 02" }, { - "codePostal": "91190", - "codeCommune": "91538", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "14130", + "codeCommune": "14269", + "libelleAcheminement": "FIERVILLE LES PARCS", + "nomCommune": "FIERVILLE LES PARCS" }, { - "codePostal": "02300", - "codeCommune": "02207", - "libelleAcheminement": "COMMENCHON", - "nomCommune": "COMMENCHON" + "codePostal": "01430", + "codeCommune": "01067", + "libelleAcheminement": "CEIGNES", + "nomCommune": "CEIGNES" }, { - "codePostal": "91190", - "codeCommune": "91538", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "13004", + "codeCommune": "13204", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 04" }, { - "codePostal": "02130", - "codeCommune": "02220", - "libelleAcheminement": "COULONGES COHAN", - "nomCommune": "COULONGES COHAN" + "codePostal": "14700", + "codeCommune": "14284", + "libelleAcheminement": "FOURNEAUX LE VAL", + "nomCommune": "FOURNEAUX LE VAL" }, { - "codePostal": "91410", - "codeCommune": "91546", - "libelleAcheminement": "ST CYR SOUS DOURDAN", - "nomCommune": "ST CYR SOUS DOURDAN" + "codePostal": "01320", + "codeCommune": "01074", + "libelleAcheminement": "CHALAMONT", + "nomCommune": "CHALAMONT" }, { - "codePostal": "02800", - "codeCommune": "02222", - "libelleAcheminement": "COURBES", - "nomCommune": "COURBES" + "codePostal": "13005", + "codeCommune": "13205", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 05" }, { - "codePostal": "91410", - "codeCommune": "91547", - "libelleAcheminement": "ST ESCOBILLE", - "nomCommune": "ST ESCOBILLE" + "codePostal": "14630", + "codeCommune": "14287", + "libelleAcheminement": "FRENOUVILLE", + "nomCommune": "FRENOUVILLE" }, { - "codePostal": "02820", - "codeCommune": "02229", - "libelleAcheminement": "COURTRIZY ET FUSSIGNY", - "nomCommune": "COURTRIZY ET FUSSIGNY" + "codePostal": "01110", + "codeCommune": "01080", + "libelleAcheminement": "CHAMPDOR CORCELLES", + "nomCommune": "CHAMPDOR CORCELLES" }, { - "codePostal": "91280", - "codeCommune": "91573", - "libelleAcheminement": "ST PIERRE DU PERRAY", - "nomCommune": "ST PIERRE DU PERRAY" + "codePostal": "13013", + "codeCommune": "13213", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 13" }, { - "codePostal": "02160", - "codeCommune": "02234", - "libelleAcheminement": "CRAONNE", - "nomCommune": "CRAONNE" + "codePostal": "14680", + "codeCommune": "14290", + "libelleAcheminement": "FRESNEY LE PUCEUX", + "nomCommune": "FRESNEY LE PUCEUX" }, { - "codePostal": "91650", - "codeCommune": "91581", - "libelleAcheminement": "ST YON", - "nomCommune": "ST YON" + "codePostal": "01110", + "codeCommune": "01080", + "libelleAcheminement": "CHAMPDOR CORCELLES", + "nomCommune": "CHAMPDOR CORCELLES" }, { - "codePostal": "02160", - "codeCommune": "02235", - "libelleAcheminement": "CRAONNELLE", - "nomCommune": "CRAONNELLE" + "codePostal": "14600", + "codeCommune": "14001", + "libelleAcheminement": "ABLON", + "nomCommune": "ABLON" }, { - "codePostal": "91600", - "codeCommune": "91589", - "libelleAcheminement": "SAVIGNY SUR ORGE", - "nomCommune": "SAVIGNY SUR ORGE" + "codePostal": "14220", + "codeCommune": "14291", + "libelleAcheminement": "FRESNEY LE VIEUX", + "nomCommune": "FRESNEY LE VIEUX" }, { - "codePostal": "02380", - "codeCommune": "02236", - "libelleAcheminement": "CRECY AU MONT", - "nomCommune": "CRECY AU MONT" + "codePostal": "01250", + "codeCommune": "01095", + "libelleAcheminement": "NIVIGNE ET SURAN", + "nomCommune": "NIVIGNE ET SURAN" }, { - "codePostal": "91250", - "codeCommune": "91617", - "libelleAcheminement": "TIGERY", - "nomCommune": "TIGERY" + "codePostal": "14310", + "codeCommune": "14007", + "libelleAcheminement": "AMAYE SUR SEULLES", + "nomCommune": "AMAYE SUR SEULLES" }, { - "codePostal": "02110", - "codeCommune": "02240", - "libelleAcheminement": "CROIX FONSOMME", - "nomCommune": "CROIX FONSOMME" + "codePostal": "14950", + "codeCommune": "14302", + "libelleAcheminement": "GLANVILLE", + "nomCommune": "GLANVILLE" }, { - "codePostal": "91430", - "codeCommune": "91635", - "libelleAcheminement": "VAUHALLAN", - "nomCommune": "VAUHALLAN" + "codePostal": "01300", + "codeCommune": "01098", + "libelleAcheminement": "CHAZEY BONS", + "nomCommune": "CHAZEY BONS" }, { - "codePostal": "02210", - "codeCommune": "02241", - "libelleAcheminement": "LA CROIX SUR OURCQ", - "nomCommune": "LA CROIX SUR OURCQ" + "codePostal": "14240", + "codeCommune": "14011", + "libelleAcheminement": "AURSEULLES", + "nomCommune": "AURSEULLES" }, { - "codePostal": "91370", - "codeCommune": "91645", - "libelleAcheminement": "VERRIERES LE BUISSON", - "nomCommune": "VERRIERES LE BUISSON" + "codePostal": "14100", + "codeCommune": "14303", + "libelleAcheminement": "GLOS", + "nomCommune": "GLOS" }, { - "codePostal": "02310", - "codeCommune": "02242", - "libelleAcheminement": "CROUTTES SUR MARNE", - "nomCommune": "CROUTTES SUR MARNE" + "codePostal": "01150", + "codeCommune": "01099", + "libelleAcheminement": "CHAZEY SUR AIN", + "nomCommune": "CHAZEY SUR AIN" }, { - "codePostal": "91710", - "codeCommune": "91649", - "libelleAcheminement": "VERT LE PETIT", - "nomCommune": "VERT LE PETIT" + "codePostal": "14250", + "codeCommune": "14011", + "libelleAcheminement": "AURSEULLES", + "nomCommune": "AURSEULLES" }, { - "codePostal": "02160", - "codeCommune": "02252", - "libelleAcheminement": "CUISSY ET GENY", - "nomCommune": "CUISSY ET GENY" + "codePostal": "14600", + "codeCommune": "14304", + "libelleAcheminement": "GONNEVILLE SUR HONFLEUR", + "nomCommune": "GONNEVILLE SUR HONFLEUR" }, { - "codePostal": "91580", - "codeCommune": "91662", - "libelleAcheminement": "VILLECONIN", - "nomCommune": "VILLECONIN" + "codePostal": "01430", + "codeCommune": "01101", + "libelleAcheminement": "CHEVILLARD", + "nomCommune": "CHEVILLARD" }, { - "codePostal": "02220", - "codeCommune": "02255", - "libelleAcheminement": "CYS LA COMMUNE", - "nomCommune": "CYS LA COMMUNE" + "codePostal": "14610", + "codeCommune": "14015", + "libelleAcheminement": "ANISY", + "nomCommune": "ANISY" }, { - "codePostal": "91360", - "codeCommune": "91667", - "libelleAcheminement": "VILLEMOISSON SUR ORGE", - "nomCommune": "VILLEMOISSON SUR ORGE" + "codePostal": "14810", + "codeCommune": "14306", + "libelleAcheminement": "GONNEVILLE EN AUGE", + "nomCommune": "GONNEVILLE EN AUGE" }, { - "codePostal": "02140", - "codeCommune": "02256", - "libelleAcheminement": "DAGNY LAMBERCY", - "nomCommune": "DAGNY LAMBERCY" + "codePostal": "01190", + "codeCommune": "01102", + "libelleAcheminement": "CHEVROUX", + "nomCommune": "CHEVROUX" }, { - "codePostal": "91330", - "codeCommune": "91691", - "libelleAcheminement": "YERRES", - "nomCommune": "YERRES" + "codePostal": "14400", + "codeCommune": "14019", + "libelleAcheminement": "ARGANCHY", + "nomCommune": "ARGANCHY" }, { - "codePostal": "02360", - "codeCommune": "02265", - "libelleAcheminement": "DOHIS", - "nomCommune": "DOHIS" + "codePostal": "14680", + "codeCommune": "14309", + "libelleAcheminement": "GOUVIX", + "nomCommune": "GOUVIX" }, { - "codePostal": "92220", - "codeCommune": "92007", - "libelleAcheminement": "BAGNEUX", - "nomCommune": "BAGNEUX" + "codePostal": "01550", + "codeCommune": "01109", + "libelleAcheminement": "COLLONGES", + "nomCommune": "COLLONGES" }, { - "codePostal": "02590", - "codeCommune": "02270", - "libelleAcheminement": "DOUCHY", - "nomCommune": "DOUCHY" + "codePostal": "14370", + "codeCommune": "14020", + "libelleAcheminement": "ARGENCES", + "nomCommune": "ARGENCES" }, { - "codePostal": "92320", - "codeCommune": "92020", - "libelleAcheminement": "CHATILLON", - "nomCommune": "CHATILLON" + "codePostal": "14210", + "codeCommune": "14311", + "libelleAcheminement": "GRAINVILLE SUR ODON", + "nomCommune": "GRAINVILLE SUR ODON" }, { - "codePostal": "02170", - "codeCommune": "02286", - "libelleAcheminement": "ESQUEHERIES", - "nomCommune": "ESQUEHERIES" + "codePostal": "01230", + "codeCommune": "01111", + "libelleAcheminement": "CONAND", + "nomCommune": "CONAND" }, { - "codePostal": "92430", - "codeCommune": "92047", - "libelleAcheminement": "MARNES LA COQUETTE", - "nomCommune": "MARNES LA COQUETTE" + "codePostal": "14710", + "codeCommune": "14023", + "libelleAcheminement": "ASNIERES EN BESSIN", + "nomCommune": "ASNIERES EN BESSIN" }, { - "codePostal": "02570", - "codeCommune": "02289", - "libelleAcheminement": "ESSISES", - "nomCommune": "ESSISES" + "codePostal": "14470", + "codeCommune": "14318", + "libelleAcheminement": "GRAYE SUR MER", + "nomCommune": "GRAYE SUR MER" }, { - "codePostal": "92190", - "codeCommune": "92048", - "libelleAcheminement": "MEUDON", - "nomCommune": "MEUDON" + "codePostal": "01290", + "codeCommune": "01134", + "libelleAcheminement": "CROTTET", + "nomCommune": "CROTTET" }, { - "codePostal": "02110", - "codeCommune": "02293", - "libelleAcheminement": "ETAVES ET BOCQUIAUX", - "nomCommune": "ETAVES ET BOCQUIAUX" + "codePostal": "14700", + "codeCommune": "14025", + "libelleAcheminement": "AUBIGNY", + "nomCommune": "AUBIGNY" }, { - "codePostal": "92200", - "codeCommune": "92051", - "libelleAcheminement": "NEUILLY SUR SEINE", - "nomCommune": "NEUILLY SUR SEINE" + "codePostal": "14400", + "codeCommune": "14322", + "libelleAcheminement": "GUERON", + "nomCommune": "GUERON" }, { - "codePostal": "02580", - "codeCommune": "02295", - "libelleAcheminement": "ETREAUPONT", - "nomCommune": "ETREAUPONT" + "codePostal": "01310", + "codeCommune": "01140", + "libelleAcheminement": "CURTAFOND", + "nomCommune": "CURTAFOND" }, { - "codePostal": "92420", - "codeCommune": "92076", - "libelleAcheminement": "VAUCRESSON", - "nomCommune": "VAUCRESSON" + "codePostal": "14770", + "codeCommune": "14027", + "libelleAcheminement": "LES MONTS D AUNAY", + "nomCommune": "LES MONTS D AUNAY" }, { - "codePostal": "02190", - "codeCommune": "02299", - "libelleAcheminement": "EVERGNICOURT", - "nomCommune": "EVERGNICOURT" + "codePostal": "14430", + "codeCommune": "14329", + "libelleAcheminement": "HEULAND", + "nomCommune": "HEULAND" }, { - "codePostal": "92410", - "codeCommune": "92077", - "libelleAcheminement": "VILLE D AVRAY", - "nomCommune": "VILLE D AVRAY" + "codePostal": "01120", + "codeCommune": "01142", + "libelleAcheminement": "DAGNEUX", + "nomCommune": "DAGNEUX" }, { - "codePostal": "02130", - "codeCommune": "02305", - "libelleAcheminement": "FERE EN TARDENOIS", - "nomCommune": "FERE EN TARDENOIS" + "codePostal": "14130", + "codeCommune": "14032", + "libelleAcheminement": "LES AUTHIEUX SUR CALONNE", + "nomCommune": "LES AUTHIEUX SUR CALONNE" }, { - "codePostal": "93600", - "codeCommune": "93005", - "libelleAcheminement": "AULNAY SOUS BOIS", - "nomCommune": "AULNAY SOUS BOIS" + "codePostal": "14600", + "codeCommune": "14333", + "libelleAcheminement": "HONFLEUR", + "nomCommune": "HONFLEUR" }, { - "codePostal": "02270", - "codeCommune": "02306", - "libelleAcheminement": "LA FERTE CHEVRESIS", - "nomCommune": "LA FERTE CHEVRESIS" + "codePostal": "01500", + "codeCommune": "01149", + "libelleAcheminement": "DOUVRES", + "nomCommune": "DOUVRES" }, { - "codePostal": "93140", - "codeCommune": "93010", - "libelleAcheminement": "BONDY", - "nomCommune": "BONDY" + "codePostal": "14210", + "codeCommune": "14034", + "libelleAcheminement": "AVENAY", + "nomCommune": "AVENAY" }, { - "codePostal": "02600", - "codeCommune": "02316", - "libelleAcheminement": "FLEURY", - "nomCommune": "FLEURY" + "codePostal": "14230", + "codeCommune": "14342", + "libelleAcheminement": "ISIGNY SUR MER", + "nomCommune": "ISIGNY SUR MER" }, { - "codePostal": "93700", - "codeCommune": "93029", - "libelleAcheminement": "DRANCY", - "nomCommune": "DRANCY" + "codePostal": "01130", + "codeCommune": "01152", + "libelleAcheminement": "ECHALLON", + "nomCommune": "ECHALLON" }, { - "codePostal": "02110", - "codeCommune": "02323", - "libelleAcheminement": "FONTAINE UTERTE", - "nomCommune": "FONTAINE UTERTE" + "codePostal": "14490", + "codeCommune": "14035", + "libelleAcheminement": "BALLEROY SUR DROME", + "nomCommune": "BALLEROY SUR DROME" }, { - "codePostal": "93190", - "codeCommune": "93046", - "libelleAcheminement": "LIVRY GARGAN", - "nomCommune": "LIVRY GARGAN" + "codePostal": "14380", + "codeCommune": "14352", + "libelleAcheminement": "LANDELLES ET COUPIGNY", + "nomCommune": "LANDELLES ET COUPIGNY" }, { - "codePostal": "02260", - "codeCommune": "02342", - "libelleAcheminement": "GERGNY", - "nomCommune": "GERGNY" + "codePostal": "01800", + "codeCommune": "01156", + "libelleAcheminement": "FARAMANS", + "nomCommune": "FARAMANS" }, { - "codePostal": "93340", - "codeCommune": "93062", - "libelleAcheminement": "LE RAINCY", - "nomCommune": "LE RAINCY" + "codePostal": "14400", + "codeCommune": "14040", + "libelleAcheminement": "BARBEVILLE", + "nomCommune": "BARBEVILLE" }, { - "codePostal": "02190", - "codeCommune": "02360", - "libelleAcheminement": "VILLENEUVE SUR AISNE", - "nomCommune": "VILLENEUVE SUR AISNE" + "codePostal": "14770", + "codeCommune": "14357", + "libelleAcheminement": "TERRES DE DRUANCE", + "nomCommune": "TERRES DE DRUANCE" }, { - "codePostal": "01500", - "codeCommune": "01004", - "libelleAcheminement": "AMBERIEU EN BUGEY", - "nomCommune": "AMBERIEU EN BUGEY" + "codePostal": "01350", + "codeCommune": "01162", + "libelleAcheminement": "FLAXIEU", + "nomCommune": "FLAXIEU" }, { - "codePostal": "93230", - "codeCommune": "93063", - "libelleAcheminement": "ROMAINVILLE", - "nomCommune": "ROMAINVILLE" + "codePostal": "14860", + "codeCommune": "14046", + "libelleAcheminement": "BAVENT", + "nomCommune": "BAVENT" }, { - "codePostal": "02160", - "codeCommune": "02364", - "libelleAcheminement": "GUYENCOURT", - "nomCommune": "GUYENCOURT" + "codePostal": "14770", + "codeCommune": "14357", + "libelleAcheminement": "TERRES DE DRUANCE", + "nomCommune": "TERRES DE DRUANCE" }, { - "codePostal": "01500", - "codeCommune": "01008", - "libelleAcheminement": "AMBUTRIX", - "nomCommune": "AMBUTRIX" + "codePostal": "01090", + "codeCommune": "01169", + "libelleAcheminement": "GENOUILLEUX", + "nomCommune": "GENOUILLEUX" }, { - "codePostal": "93290", - "codeCommune": "93073", - "libelleAcheminement": "TREMBLAY EN FRANCE", - "nomCommune": "TREMBLAY EN FRANCE" + "codePostal": "14480", + "codeCommune": "14049", + "libelleAcheminement": "BAZENVILLE", + "nomCommune": "BAZENVILLE" }, { - "codePostal": "02600", - "codeCommune": "02368", - "libelleAcheminement": "HARAMONT", - "nomCommune": "HARAMONT" + "codePostal": "14140", + "codeCommune": "14368", + "libelleAcheminement": "LISORES", + "nomCommune": "LISORES" }, { - "codePostal": "01300", - "codeCommune": "01015", - "libelleAcheminement": "ARBOYS EN BUGEY", - "nomCommune": "ARBOYS EN BUGEY" + "codePostal": "01250", + "codeCommune": "01184", + "libelleAcheminement": "HAUTECOURT ROMANECHE", + "nomCommune": "HAUTECOURT ROMANECHE" }, { - "codePostal": "93250", - "codeCommune": "93077", - "libelleAcheminement": "VILLEMOMBLE", - "nomCommune": "VILLEMOMBLE" + "codePostal": "14260", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "02810", - "codeCommune": "02375", - "libelleAcheminement": "HAUTEVESNES", - "nomCommune": "HAUTEVESNES" + "codePostal": "14330", + "codeCommune": "14370", + "libelleAcheminement": "LE MOLAY LITTRY", + "nomCommune": "LE MOLAY LITTRY" }, { - "codePostal": "01230", - "codeCommune": "01017", - "libelleAcheminement": "ARGIS", - "nomCommune": "ARGIS" + "codePostal": "01260", + "codeCommune": "01187", + "libelleAcheminement": "HAUT VALROMEY", + "nomCommune": "HAUT VALROMEY" }, { - "codePostal": "93420", - "codeCommune": "93078", - "libelleAcheminement": "VILLEPINTE", - "nomCommune": "VILLEPINTE" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "02500", - "codeCommune": "02381", - "libelleAcheminement": "HIRSON", - "nomCommune": "HIRSON" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01510", - "codeCommune": "01019", - "libelleAcheminement": "ARMIX", - "nomCommune": "ARMIX" + "codePostal": "01260", + "codeCommune": "01187", + "libelleAcheminement": "HAUT VALROMEY", + "nomCommune": "HAUT VALROMEY" }, { - "codePostal": "94110", - "codeCommune": "94003", - "libelleAcheminement": "ARCUEIL", - "nomCommune": "ARCUEIL" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "02250", - "codeCommune": "02385", - "libelleAcheminement": "HOUSSET", - "nomCommune": "HOUSSET" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01510", - "codeCommune": "01022", - "libelleAcheminement": "ARTEMARE", - "nomCommune": "ARTEMARE" + "codePostal": "01450", + "codeCommune": "01200", + "libelleAcheminement": "LABALME", + "nomCommune": "LABALME" }, { - "codePostal": "94360", - "codeCommune": "94015", - "libelleAcheminement": "BRY SUR MARNE", - "nomCommune": "BRY SUR MARNE" + "codePostal": "14440", + "codeCommune": "14062", + "libelleAcheminement": "BENY SUR MER", + "nomCommune": "BENY SUR MER" }, { - "codePostal": "02490", - "codeCommune": "02390", - "libelleAcheminement": "JEANCOURT", - "nomCommune": "JEANCOURT" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01200", - "codeCommune": "01033", - "libelleAcheminement": "VALSERHONE", - "nomCommune": "VALSERHONE" + "codePostal": "01350", + "codeCommune": "01208", + "libelleAcheminement": "LAVOURS", + "nomCommune": "LAVOURS" }, { - "codePostal": "94270", - "codeCommune": "94043", - "libelleAcheminement": "LE KREMLIN BICETRE", - "nomCommune": "LE KREMLIN BICETRE" + "codePostal": "14550", + "codeCommune": "14076", + "libelleAcheminement": "BLAINVILLE SUR ORNE", + "nomCommune": "BLAINVILLE SUR ORNE" }, { - "codePostal": "02190", - "codeCommune": "02399", - "libelleAcheminement": "JUVINCOURT ET DAMARY", - "nomCommune": "JUVINCOURT ET DAMARY" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01260", - "codeCommune": "01036", - "libelleAcheminement": "VALROMEY SUR SERAN", - "nomCommune": "VALROMEY SUR SERAN" + "codePostal": "01150", + "codeCommune": "01213", + "libelleAcheminement": "LEYMENT", + "nomCommune": "LEYMENT" }, { - "codePostal": "94450", - "codeCommune": "94044", - "libelleAcheminement": "LIMEIL BREVANNES", - "nomCommune": "LIMEIL BREVANNES" + "codePostal": "14690", + "codeCommune": "14080", + "libelleAcheminement": "LE BO", + "nomCommune": "LE BO" }, { - "codePostal": "02000", - "codeCommune": "02407", - "libelleAcheminement": "LANISCOURT", - "nomCommune": "LANISCOURT" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01200", - "codeCommune": "01044", - "libelleAcheminement": "BILLIAT", - "nomCommune": "BILLIAT" + "codePostal": "01420", + "codeCommune": "01215", + "libelleAcheminement": "SURJOUX LHOPITAL", + "nomCommune": "SURJOUX LHOPITAL" }, { - "codePostal": "94440", - "codeCommune": "94048", - "libelleAcheminement": "MAROLLES EN BRIE", - "nomCommune": "MAROLLES EN BRIE" + "codePostal": "14420", + "codeCommune": "14088", + "libelleAcheminement": "BONS TASSILLY", + "nomCommune": "BONS TASSILLY" }, { - "codePostal": "02000", - "codeCommune": "02408", - "libelleAcheminement": "LAON", - "nomCommune": "LAON" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01150", - "codeCommune": "01047", - "libelleAcheminement": "BLYES", - "nomCommune": "BLYES" + "codePostal": "01300", + "codeCommune": "01227", + "libelleAcheminement": "MAGNIEU", + "nomCommune": "MAGNIEU" }, { - "codePostal": "94310", - "codeCommune": "94054", - "libelleAcheminement": "ORLY", - "nomCommune": "ORLY" + "codePostal": "14210", + "codeCommune": "14098", + "libelleAcheminement": "THUE ET MUE", + "nomCommune": "THUE ET MUE" }, { - "codePostal": "02860", - "codeCommune": "02413", - "libelleAcheminement": "LAVAL EN LAONNOIS", - "nomCommune": "LAVAL EN LAONNOIS" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01450", - "codeCommune": "01051", - "libelleAcheminement": "BOLOZON", - "nomCommune": "BOLOZON" + "codePostal": "01560", + "codeCommune": "01230", + "libelleAcheminement": "MANTENAY MONTLIN", + "nomCommune": "MANTENAY MONTLIN" }, { - "codePostal": "94520", - "codeCommune": "94056", - "libelleAcheminement": "PERIGNY SUR YERRES", - "nomCommune": "PERIGNY" + "codePostal": "14130", + "codeCommune": "14102", + "libelleAcheminement": "LE BREUIL EN AUGE", + "nomCommune": "LE BREUIL EN AUGE" }, { - "codePostal": "02420", - "codeCommune": "02417", - "libelleAcheminement": "LEMPIRE", - "nomCommune": "LEMPIRE" + "codePostal": "14290", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01000", - "codeCommune": "01053", - "libelleAcheminement": "BOURG EN BRESSE", - "nomCommune": "BOURG EN BRESSE" + "codePostal": "01851", + "codeCommune": "01232", + "libelleAcheminement": "MARBOZ", + "nomCommune": "MARBOZ" }, { - "codePostal": "94460", - "codeCommune": "94074", - "libelleAcheminement": "VALENTON", - "nomCommune": "VALENTON" + "codePostal": "14330", + "codeCommune": "14103", + "libelleAcheminement": "LE BREUIL EN BESSIN", + "nomCommune": "LE BREUIL EN BESSIN" }, { - "codePostal": "02260", - "codeCommune": "02418", - "libelleAcheminement": "LERZY", - "nomCommune": "LERZY" + "codePostal": "14400", + "codeCommune": "14377", + "libelleAcheminement": "LONGUES SUR MER", + "nomCommune": "LONGUES SUR MER" }, { - "codePostal": "01800", - "codeCommune": "01054", - "libelleAcheminement": "BOURG ST CHRISTOPHE", - "nomCommune": "BOURG ST CHRISTOPHE" + "codePostal": "01410", + "codeCommune": "01247", + "libelleAcheminement": "MIJOUX", + "nomCommune": "MIJOUX" }, { - "codePostal": "94440", - "codeCommune": "94075", - "libelleAcheminement": "VILLECRESNES", - "nomCommune": "VILLECRESNES" + "codePostal": "14230", + "codeCommune": "14124", + "libelleAcheminement": "LA CAMBE", + "nomCommune": "LA CAMBE" }, { - "codePostal": "02170", - "codeCommune": "02419", - "libelleAcheminement": "LESCHELLE", - "nomCommune": "LESCHELLE" + "codePostal": "14230", + "codeCommune": "14378", + "libelleAcheminement": "LONGUEVILLE", + "nomCommune": "LONGUEVILLE" }, { - "codePostal": "01470", - "codeCommune": "01064", - "libelleAcheminement": "BRIORD", - "nomCommune": "BRIORD" + "codePostal": "01700", + "codeCommune": "01249", + "libelleAcheminement": "MIRIBEL", + "nomCommune": "MIRIBEL" }, { - "codePostal": "94290", - "codeCommune": "94077", - "libelleAcheminement": "VILLENEUVE LE ROI", - "nomCommune": "VILLENEUVE LE ROI" + "codePostal": "14370", + "codeCommune": "14134", + "libelleAcheminement": "CANTELOUP", + "nomCommune": "CANTELOUP" }, { - "codePostal": "02100", - "codeCommune": "02420", - "libelleAcheminement": "LESDINS", - "nomCommune": "LESDINS" + "codePostal": "14310", + "codeCommune": "14379", + "libelleAcheminement": "LONGVILLERS", + "nomCommune": "LONGVILLERS" }, { - "codePostal": "01110", - "codeCommune": "01080", - "libelleAcheminement": "CHAMPDOR CORCELLES", - "nomCommune": "CHAMPDOR CORCELLES" + "codePostal": "01800", + "codeCommune": "01260", + "libelleAcheminement": "LE MONTELLIER", + "nomCommune": "LE MONTELLIER" }, { - "codePostal": "95420", - "codeCommune": "95011", - "libelleAcheminement": "AMBLEVILLE", - "nomCommune": "AMBLEVILLE" + "codePostal": "14220", + "codeCommune": "14150", + "libelleAcheminement": "CESNY LES SOURCES", + "nomCommune": "CESNY LES SOURCES" }, { - "codePostal": "02500", - "codeCommune": "02435", - "libelleAcheminement": "LOGNY LES AUBENTON", - "nomCommune": "LOGNY LES AUBENTON" + "codePostal": "14310", + "codeCommune": "14389", + "libelleAcheminement": "MAISONCELLES PELVEY", + "nomCommune": "MAISONCELLES PELVEY" }, { - "codePostal": "01400", - "codeCommune": "01084", - "libelleAcheminement": "CHANOZ CHATENAY", - "nomCommune": "CHANOZ CHATENAY" + "codePostal": "01120", + "codeCommune": "01262", + "libelleAcheminement": "MONTLUEL", + "nomCommune": "MONTLUEL" }, { - "codePostal": "95400", - "codeCommune": "95019", - "libelleAcheminement": "ARNOUVILLE", - "nomCommune": "ARNOUVILLE" + "codePostal": "14220", + "codeCommune": "14150", + "libelleAcheminement": "CESNY LES SOURCES", + "nomCommune": "CESNY LES SOURCES" }, { - "codePostal": "02160", - "codeCommune": "02439", - "libelleAcheminement": "LES SEPTVALLONS", - "nomCommune": "LES SEPTVALLONS" + "codePostal": "14190", + "codeCommune": "14394", + "libelleAcheminement": "MAIZIERES", + "nomCommune": "MAIZIERES" }, { - "codePostal": "01320", - "codeCommune": "01090", - "libelleAcheminement": "CHATENAY", - "nomCommune": "CHATENAY" + "codePostal": "01090", + "codeCommune": "01263", + "libelleAcheminement": "MONTMERLE SUR SAONE", + "nomCommune": "MONTMERLE SUR SAONE" }, { - "codePostal": "95420", - "codeCommune": "95024", - "libelleAcheminement": "ARTHIES", - "nomCommune": "ARTHIES" + "codePostal": "14220", + "codeCommune": "14150", + "libelleAcheminement": "CESNY LES SOURCES", + "nomCommune": "CESNY LES SOURCES" }, { - "codePostal": "02600", - "codeCommune": "02441", - "libelleAcheminement": "LOUATRE", - "nomCommune": "LOUATRE" + "codePostal": "14710", + "codeCommune": "14397", + "libelleAcheminement": "MANDEVILLE EN BESSIN", + "nomCommune": "MANDEVILLE EN BESSIN" }, { - "codePostal": "01400", - "codeCommune": "01093", - "libelleAcheminement": "CHATILLON SUR CHALARONNE", - "nomCommune": "CHATILLON SUR CHALARONNE" + "codePostal": "01460", + "codeCommune": "01265", + "libelleAcheminement": "MONTREAL LA CLUSE", + "nomCommune": "MONTREAL LA CLUSE" }, { - "codePostal": "95750", - "codeCommune": "95054", - "libelleAcheminement": "LE BELLAY EN VEXIN", - "nomCommune": "LE BELLAY EN VEXIN" + "codePostal": "14250", + "codeCommune": "14159", + "libelleAcheminement": "CHOUAIN", + "nomCommune": "CHOUAIN" }, { - "codePostal": "02350", - "codeCommune": "02448", - "libelleAcheminement": "MACHECOURT", - "nomCommune": "MACHECOURT" + "codePostal": "14130", + "codeCommune": "14399", + "libelleAcheminement": "MANNEVILLE LA PIPARD", + "nomCommune": "MANNEVILLE LA PIPARD" }, { - "codePostal": "01510", - "codeCommune": "01100", - "libelleAcheminement": "CHEIGNIEU LA BALME", - "nomCommune": "CHEIGNIEU LA BALME" + "codePostal": "01300", + "codeCommune": "01268", + "libelleAcheminement": "MURS ET GELIGNIEUX", + "nomCommune": "MURS ET GELIGNIEUX" }, { - "codePostal": "95550", - "codeCommune": "95060", - "libelleAcheminement": "BESSANCOURT", - "nomCommune": "BESSANCOURT" + "codePostal": "14710", + "codeCommune": "14165", + "libelleAcheminement": "COLLEVILLE SUR MER", + "nomCommune": "COLLEVILLE SUR MER" }, { - "codePostal": "02470", - "codeCommune": "02449", - "libelleAcheminement": "MACOGNY", - "nomCommune": "MACOGNY" + "codePostal": "14220", + "codeCommune": "14404", + "libelleAcheminement": "MARTAINVILLE", + "nomCommune": "MARTAINVILLE" }, { - "codePostal": "01200", - "codeCommune": "01104", - "libelleAcheminement": "CHEZERY FORENS", - "nomCommune": "CHEZERY FORENS" + "codePostal": "01210", + "codeCommune": "01281", + "libelleAcheminement": "ORNEX", + "nomCommune": "ORNEX" }, { - "codePostal": "95840", - "codeCommune": "95061", - "libelleAcheminement": "BETHEMONT LA FORET", - "nomCommune": "BETHEMONT LA FORET" + "codePostal": "14270", + "codeCommune": "14173", + "libelleAcheminement": "CONDE SUR IFS", + "nomCommune": "CONDE SUR IFS" }, { - "codePostal": "02190", - "codeCommune": "02454", - "libelleAcheminement": "LA MALMAISON", - "nomCommune": "LA MALMAISON" + "codePostal": "14480", + "codeCommune": "14406", + "libelleAcheminement": "MOULINS EN BESSIN", + "nomCommune": "MOULINS EN BESSIN" }, { - "codePostal": "01230", - "codeCommune": "01107", - "libelleAcheminement": "CLEYZIEU", - "nomCommune": "CLEYZIEU" + "codePostal": "01100", + "codeCommune": "01283", + "libelleAcheminement": "OYONNAX", + "nomCommune": "OYONNAX" }, { - "codePostal": "95650", - "codeCommune": "95078", - "libelleAcheminement": "BOISSY L AILLERIE", - "nomCommune": "BOISSY L AILLERIE" + "codePostal": "14110", + "codeCommune": "14174", + "libelleAcheminement": "CONDE EN NORMANDIE", + "nomCommune": "CONDE EN NORMANDIE" }, { - "codePostal": "02300", - "codeCommune": "02456", - "libelleAcheminement": "MANICAMP", - "nomCommune": "MANICAMP" + "codePostal": "14480", + "codeCommune": "14406", + "libelleAcheminement": "MOULINS EN BESSIN", + "nomCommune": "MOULINS EN BESSIN" }, { - "codePostal": "01270", - "codeCommune": "01108", - "libelleAcheminement": "COLIGNY", - "nomCommune": "COLIGNY" + "codePostal": "01100", + "codeCommune": "01283", + "libelleAcheminement": "OYONNAX", + "nomCommune": "OYONNAX" }, { - "codePostal": "95640", - "codeCommune": "95110", - "libelleAcheminement": "BRIGNANCOURT", - "nomCommune": "BRIGNANCOURT" + "codePostal": "14240", + "codeCommune": "14182", + "libelleAcheminement": "CORMOLAIN", + "nomCommune": "CORMOLAIN" }, { - "codePostal": "02330", - "codeCommune": "02458", - "libelleAcheminement": "DHUYS ET MORIN EN BRIE", - "nomCommune": "DHUYS ET MORIN EN BRIE" + "codePostal": "14810", + "codeCommune": "14409", + "libelleAcheminement": "MERVILLE FRANCEVILLE PLAGE", + "nomCommune": "MERVILLE FRANCEVILLE PLAGE" }, { - "codePostal": "01550", - "codeCommune": "01109", - "libelleAcheminement": "COLLONGES", - "nomCommune": "COLLONGES" + "codePostal": "01800", + "codeCommune": "01290", + "libelleAcheminement": "PEROUGES", + "nomCommune": "PEROUGES" }, { - "codePostal": "95430", - "codeCommune": "95120", - "libelleAcheminement": "BUTRY SUR OISE", - "nomCommune": "BUTRY SUR OISE" + "codePostal": "14400", + "codeCommune": "14184", + "libelleAcheminement": "COTTUN", + "nomCommune": "COTTUN" }, { - "codePostal": "02540", - "codeCommune": "02458", - "libelleAcheminement": "DHUYS ET MORIN EN BRIE", - "nomCommune": "DHUYS ET MORIN EN BRIE" + "codePostal": "14370", + "codeCommune": "14410", + "libelleAcheminement": "MERY BISSIERES EN AUGE", + "nomCommune": "MERY BISSIERES EN AUGE" }, { - "codePostal": "01200", - "codeCommune": "01114", - "libelleAcheminement": "CONFORT", - "nomCommune": "CONFORT" + "codePostal": "01430", + "codeCommune": "01293", + "libelleAcheminement": "PEYRIAT", + "nomCommune": "PEYRIAT" }, { - "codePostal": "95000", - "codeCommune": "95127", - "libelleAcheminement": "CERGY", - "nomCommune": "CERGY" + "codePostal": "14290", + "codeCommune": "14194", + "libelleAcheminement": "COURTONNE LES DEUX EGLISES", + "nomCommune": "COURTONNE LES DEUX EGLISES" }, { - "codePostal": "02540", - "codeCommune": "02458", - "libelleAcheminement": "DHUYS ET MORIN EN BRIE", - "nomCommune": "DHUYS ET MORIN EN BRIE" + "codePostal": "14100", + "codeCommune": "14421", + "libelleAcheminement": "LE MESNIL GUILLAUME", + "nomCommune": "LE MESNIL GUILLAUME" }, { "codePostal": "01350", - "codeCommune": "01138", - "libelleAcheminement": "CULOZ", - "nomCommune": "CULOZ" - }, - { - "codePostal": "95270", - "codeCommune": "95149", - "libelleAcheminement": "CHAUMONTEL", - "nomCommune": "CHAUMONTEL" + "codeCommune": "01302", + "libelleAcheminement": "POLLIEU", + "nomCommune": "POLLIEU" }, { - "codePostal": "02250", - "codeCommune": "02460", - "libelleAcheminement": "MARCY SOUS MARLE", - "nomCommune": "MARCY SOUS MARLE" + "codePostal": "14480", + "codeCommune": "14200", + "libelleAcheminement": "CREULLY SUR SEULLES", + "nomCommune": "CREULLY SUR SEULLES" }, { - "codePostal": "01220", - "codeCommune": "01143", - "libelleAcheminement": "DIVONNE LES BAINS", - "nomCommune": "DIVONNE LES BAINS" + "codePostal": "14130", + "codeCommune": "14426", + "libelleAcheminement": "LE MESNIL SUR BLANGY", + "nomCommune": "LE MESNIL SUR BLANGY" }, { - "codePostal": "95560", - "codeCommune": "95151", - "libelleAcheminement": "CHAUVRY", - "nomCommune": "CHAUVRY" + "codePostal": "01160", + "codeCommune": "01304", + "libelleAcheminement": "PONT D AIN", + "nomCommune": "PONT D AIN" }, { - "codePostal": "02270", - "codeCommune": "02480", - "libelleAcheminement": "MESBRECOURT RICHECOURT", - "nomCommune": "MESBRECOURT RICHECOURT" + "codePostal": "14450", + "codeCommune": "14204", + "libelleAcheminement": "CRICQUEVILLE EN BESSIN", + "nomCommune": "CRICQUEVILLE EN BESSIN" }, { - "codePostal": "01400", - "codeCommune": "01146", - "libelleAcheminement": "DOMPIERRE SUR CHALARONNE", - "nomCommune": "DOMPIERRE SUR CHALARONNE" + "codePostal": "14140", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "95510", - "codeCommune": "95157", - "libelleAcheminement": "CHERENCE", - "nomCommune": "CHERENCE" + "codePostal": "01460", + "codeCommune": "01307", + "libelleAcheminement": "PORT", + "nomCommune": "PORT" }, { - "codePostal": "02110", - "codeCommune": "02488", - "libelleAcheminement": "MOLAIN", - "nomCommune": "MOLAIN" + "codePostal": "14250", + "codeCommune": "14205", + "libelleAcheminement": "CRISTOT", + "nomCommune": "CRISTOT" }, { - "codePostal": "01270", - "codeCommune": "01147", - "libelleAcheminement": "DOMSURE", - "nomCommune": "DOMSURE" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "95450", - "codeCommune": "95169", - "libelleAcheminement": "COMMENY", - "nomCommune": "COMMENY" + "codePostal": "01110", + "codeCommune": "01311", + "libelleAcheminement": "PREMILLIEU", + "nomCommune": "PREMILLIEU" }, { - "codePostal": "02000", - "codeCommune": "02489", - "libelleAcheminement": "MOLINCHART", - "nomCommune": "MOLINCHART" + "codePostal": "14800", + "codeCommune": "14220", + "libelleAcheminement": "DEAUVILLE", + "nomCommune": "DEAUVILLE" }, { - "codePostal": "01800", - "codeCommune": "01156", - "libelleAcheminement": "FARAMANS", - "nomCommune": "FARAMANS" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "95600", - "codeCommune": "95203", - "libelleAcheminement": "EAUBONNE", - "nomCommune": "EAUBONNE" + "codePostal": "01280", + "codeCommune": "01313", + "libelleAcheminement": "PREVESSIN MOENS", + "nomCommune": "PREVESSIN MOENS" }, { - "codePostal": "02110", - "codeCommune": "02500", - "libelleAcheminement": "MONTBREHAIN", - "nomCommune": "MONTBREHAIN" + "codePostal": "14840", + "codeCommune": "14221", + "libelleAcheminement": "DEMOUVILLE", + "nomCommune": "DEMOUVILLE" }, { - "codePostal": "01480", - "codeCommune": "01157", - "libelleAcheminement": "FAREINS", - "nomCommune": "FAREINS" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "95130", - "codeCommune": "95252", - "libelleAcheminement": "FRANCONVILLE LA GARENNE", - "nomCommune": "FRANCONVILLE" + "codePostal": "01190", + "codeCommune": "01323", + "libelleAcheminement": "REYSSOUZE", + "nomCommune": "REYSSOUZE" }, { - "codePostal": "02440", - "codeCommune": "02504", - "libelleAcheminement": "MONTESCOURT LIZEROLLES", - "nomCommune": "MONTESCOURT LIZEROLLES" + "codePostal": "14230", + "codeCommune": "14224", + "libelleAcheminement": "DEUX JUMEAUX", + "nomCommune": "DEUX JUMEAUX" }, { - "codePostal": "01480", - "codeCommune": "01166", - "libelleAcheminement": "FRANS", - "nomCommune": "FRANS" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "95500", - "codeCommune": "95277", - "libelleAcheminement": "GONESSE", - "nomCommune": "GONESSE" + "codePostal": "01450", + "codeCommune": "01331", + "libelleAcheminement": "ST ALBAN", + "nomCommune": "ST ALBAN" }, { - "codePostal": "02860", - "codeCommune": "02508", - "libelleAcheminement": "MONTHENAULT", - "nomCommune": "MONTHENAULT" + "codePostal": "14220", + "codeCommune": "14226", + "libelleAcheminement": "DONNAY", + "nomCommune": "DONNAY" }, { - "codePostal": "01170", - "codeCommune": "01173", - "libelleAcheminement": "GEX", - "nomCommune": "GEX" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "95190", - "codeCommune": "95280", - "libelleAcheminement": "GOUSSAINVILLE", - "nomCommune": "GOUSSAINVILLE" + "codePostal": "01290", + "codeCommune": "01334", + "libelleAcheminement": "ST ANDRE D HUIRIAT", + "nomCommune": "ST ANDRE D HUIRIAT" }, { - "codePostal": "02400", - "codeCommune": "02509", - "libelleAcheminement": "MONTHIERS", - "nomCommune": "MONTHIERS" + "codePostal": "14440", + "codeCommune": "14228", + "libelleAcheminement": "DOUVRES LA DELIVRANDE", + "nomCommune": "DOUVRES LA DELIVRANDE" }, { - "codePostal": "01110", - "codeCommune": "01185", - "libelleAcheminement": "PLATEAU D HAUTEVILLE", - "nomCommune": "PLATEAU D HAUTEVILLE" + "codePostal": "14120", + "codeCommune": "14437", + "libelleAcheminement": "MONDEVILLE", + "nomCommune": "MONDEVILLE" }, { - "codePostal": "95810", - "codeCommune": "95287", - "libelleAcheminement": "GRISY LES PLATRES", - "nomCommune": "GRISY LES PLATRES" + "codePostal": "01300", + "codeCommune": "01338", + "libelleAcheminement": "GROSLEE ST BENOIT", + "nomCommune": "GROSLEE ST BENOIT" }, { - "codePostal": "02110", - "codeCommune": "02511", - "libelleAcheminement": "MONTIGNY EN ARROUAISE", - "nomCommune": "MONTIGNY EN ARROUAISE" + "codePostal": "14170", + "codeCommune": "14240", + "libelleAcheminement": "EPANEY", + "nomCommune": "EPANEY" }, { - "codePostal": "01260", - "codeCommune": "01187", - "libelleAcheminement": "HAUT VALROMEY", - "nomCommune": "HAUT VALROMEY" + "codePostal": "14620", + "codeCommune": "14452", + "libelleAcheminement": "MORTEAUX COULIBOEUF", + "nomCommune": "MORTEAUX COULIBOEUF" }, { - "codePostal": "95450", - "codeCommune": "95295", - "libelleAcheminement": "GUIRY EN VEXIN", - "nomCommune": "GUIRY EN VEXIN" + "codePostal": "01370", + "codeCommune": "01350", + "libelleAcheminement": "ST ETIENNE DU BOIS", + "nomCommune": "ST ETIENNE DU BOIS" }, { - "codePostal": "02360", - "codeCommune": "02522", - "libelleAcheminement": "MONT ST JEAN", - "nomCommune": "MONT ST JEAN" + "codePostal": "14700", + "codeCommune": "14244", + "libelleAcheminement": "ERAINES", + "nomCommune": "ERAINES" }, { - "codePostal": "01250", - "codeCommune": "01197", - "libelleAcheminement": "JOURNANS", - "nomCommune": "JOURNANS" + "codePostal": "14220", + "codeCommune": "14455", + "libelleAcheminement": "MOULINES", + "nomCommune": "MOULINES" }, { - "codePostal": "95850", - "codeCommune": "95316", - "libelleAcheminement": "JAGNY SOUS BOIS", - "nomCommune": "JAGNY SOUS BOIS" + "codePostal": "01190", + "codeCommune": "01352", + "libelleAcheminement": "ST ETIENNE SUR REYSSOUZE", + "nomCommune": "ST ETIENNE SUR REYSSOUZE" }, { - "codePostal": "02270", - "codeCommune": "02529", - "libelleAcheminement": "MORTIERS", - "nomCommune": "MORTIERS" + "codePostal": "14210", + "codeCommune": "14249", + "libelleAcheminement": "ESQUAY NOTRE DAME", + "nomCommune": "ESQUAY NOTRE DAME" }, { - "codePostal": "01240", - "codeCommune": "01211", - "libelleAcheminement": "LENT", - "nomCommune": "LENT" + "codePostal": "14340", + "codeCommune": "14474", + "libelleAcheminement": "NOTRE DAME D ESTREES CORBON", + "nomCommune": "NOTRE DAME D ESTREES CORBON" }, { - "codePostal": "95280", - "codeCommune": "95323", - "libelleAcheminement": "JOUY LE MOUTIER", - "nomCommune": "JOUY LE MOUTIER" + "codePostal": "01600", + "codeCommune": "01353", + "libelleAcheminement": "STE EUPHEMIE", + "nomCommune": "STE EUPHEMIE" }, { - "codePostal": "02190", - "codeCommune": "02541", - "libelleAcheminement": "NEUFCHATEL SUR AISNE", - "nomCommune": "NEUFCHATEL SUR AISNE" + "codePostal": "14190", + "codeCommune": "14252", + "libelleAcheminement": "ESTREES LA CAMPAGNE", + "nomCommune": "ESTREES LA CAMPAGNE" }, { - "codePostal": "01560", - "codeCommune": "01212", - "libelleAcheminement": "LESCHEROUX", - "nomCommune": "LESCHEROUX" + "codePostal": "14210", + "codeCommune": "14475", + "libelleAcheminement": "VAL D ARRY", + "nomCommune": "VAL D ARRY" }, { - "codePostal": "95380", - "codeCommune": "95351", - "libelleAcheminement": "LOUVRES", - "nomCommune": "LOUVRES" + "codePostal": "01380", + "codeCommune": "01355", + "libelleAcheminement": "ST GENIS SUR MENTHON", + "nomCommune": "ST GENIS SUR MENTHON" }, { - "codePostal": "02250", - "codeCommune": "02547", - "libelleAcheminement": "LA NEUVILLE HOUSSET", - "nomCommune": "LA NEUVILLE HOUSSET" + "codePostal": "14400", + "codeCommune": "14256", + "libelleAcheminement": "ETREHAM", + "nomCommune": "ETREHAM" }, { - "codePostal": "01680", - "codeCommune": "01216", - "libelleAcheminement": "LHUIS", - "nomCommune": "LHUIS" + "codePostal": "14270", + "codeCommune": "14482", + "libelleAcheminement": "OUEZY", + "nomCommune": "OUEZY" }, { - "codePostal": "95270", - "codeCommune": "95352", - "libelleAcheminement": "LUZARCHES", - "nomCommune": "LUZARCHES" + "codePostal": "01240", + "codeCommune": "01359", + "libelleAcheminement": "ST GERMAIN SUR RENON", + "nomCommune": "ST GERMAIN SUR RENON" }, { - "codePostal": "02400", - "codeCommune": "02554", - "libelleAcheminement": "NOGENTEL", - "nomCommune": "NOGENTEL" + "codePostal": "14710", + "codeCommune": "14272", + "libelleAcheminement": "LA FOLIE", + "nomCommune": "LA FOLIE" }, { - "codePostal": "01680", - "codeCommune": "01219", - "libelleAcheminement": "LOMPNAS", - "nomCommune": "LOMPNAS" + "codePostal": "14520", + "codeCommune": "14515", + "libelleAcheminement": "PORT EN BESSIN HUPPAIN", + "nomCommune": "PORT EN BESSIN HUPPAIN" }, { - "codePostal": "95540", - "codeCommune": "95394", - "libelleAcheminement": "MERY SUR OISE", - "nomCommune": "MERY SUR OISE" + "codePostal": "01390", + "codeCommune": "01362", + "libelleAcheminement": "ST JEAN DE THURIGNEUX", + "nomCommune": "ST JEAN DE THURIGNEUX" }, { - "codePostal": "02270", - "codeCommune": "02559", - "libelleAcheminement": "NOUVION ET CATILLON", - "nomCommune": "NOUVION ET CATILLON" + "codePostal": "14710", + "codeCommune": "14281", + "libelleAcheminement": "FORMIGNY LA BATAILLE", + "nomCommune": "FORMIGNY LA BATAILLE" }, { - "codePostal": "01360", - "codeCommune": "01224", - "libelleAcheminement": "LOYETTES", - "nomCommune": "LOYETTES" + "codePostal": "14420", + "codeCommune": "14516", + "libelleAcheminement": "POTIGNY", + "nomCommune": "POTIGNY" }, { - "codePostal": "95720", - "codeCommune": "95395", - "libelleAcheminement": "LE MESNIL AUBRY", - "nomCommune": "LE MESNIL AUBRY" + "codePostal": "01290", + "codeCommune": "01365", + "libelleAcheminement": "ST JEAN SUR VEYLE", + "nomCommune": "ST JEAN SUR VEYLE" }, { - "codePostal": "02290", - "codeCommune": "02562", - "libelleAcheminement": "NOUVRON VINGRE", - "nomCommune": "NOUVRON VINGRE" + "codePostal": "14620", + "codeCommune": "14283", + "libelleAcheminement": "FOURCHES", + "nomCommune": "FOURCHES" }, { - "codePostal": "01570", - "codeCommune": "01231", - "libelleAcheminement": "MANZIAT", - "nomCommune": "MANZIAT" + "codePostal": "14340", + "codeCommune": "14527", + "libelleAcheminement": "BELLE VIE EN AUGE", + "nomCommune": "BELLE VIE EN AUGE" }, { - "codePostal": "95640", - "codeCommune": "95438", - "libelleAcheminement": "MOUSSY", - "nomCommune": "MOUSSY" + "codePostal": "01330", + "codeCommune": "01382", + "libelleAcheminement": "STE OLIVE", + "nomCommune": "STE OLIVE" }, { - "codePostal": "02450", - "codeCommune": "02569", - "libelleAcheminement": "OISY", - "nomCommune": "OISY" + "codePostal": "14340", + "codeCommune": "14285", + "libelleAcheminement": "LE FOURNET", + "nomCommune": "LE FOURNET" }, { - "codePostal": "01580", - "codeCommune": "01240", - "libelleAcheminement": "MATAFELON GRANGES", - "nomCommune": "MATAFELON GRANGES" + "codePostal": "14600", + "codeCommune": "14536", + "libelleAcheminement": "LA RIVIERE ST SAUVEUR", + "nomCommune": "LA RIVIERE ST SAUVEUR" }, { - "codePostal": "95590", - "codeCommune": "95445", - "libelleAcheminement": "NERVILLE LA FORET", - "nomCommune": "NERVILLE LA FORET" + "codePostal": "01150", + "codeCommune": "01386", + "libelleAcheminement": "ST SORLIN EN BUGEY", + "nomCommune": "ST SORLIN EN BUGEY" }, { - "codePostal": "02390", - "codeCommune": "02575", - "libelleAcheminement": "ORIGNY STE BENOITE", - "nomCommune": "ORIGNY STE BENOITE" + "codePostal": "14600", + "codeCommune": "14286", + "libelleAcheminement": "FOURNEVILLE", + "nomCommune": "FOURNEVILLE" }, { - "codePostal": "01250", - "codeCommune": "01245", - "libelleAcheminement": "BOHAS MEYRIAT RIGNAT", - "nomCommune": "BOHAS MEYRIAT RIGNAT" + "codePostal": "14540", + "codeCommune": "14538", + "libelleAcheminement": "CASTINE EN PLAINE", + "nomCommune": "CASTINE EN PLAINE" }, { - "codePostal": "95690", - "codeCommune": "95446", - "libelleAcheminement": "NESLES LA VALLEE", - "nomCommune": "NESLES LA VALLEE" + "codePostal": "01470", + "codeCommune": "01400", + "libelleAcheminement": "SEILLONNAZ", + "nomCommune": "SEILLONNAZ" }, { - "codePostal": "02160", - "codeCommune": "02578", - "libelleAcheminement": "OULCHES LA VALLEE FOULON", - "nomCommune": "OULCHES LA VALLEE FOULON" + "codePostal": "14480", + "codeCommune": "14288", + "libelleAcheminement": "LE FRESNE CAMILLY", + "nomCommune": "LE FRESNE CAMILLY" }, { - "codePostal": "01600", - "codeCommune": "01250", - "libelleAcheminement": "MISERIEUX", - "nomCommune": "MISERIEUX" + "codePostal": "14980", + "codeCommune": "14543", + "libelleAcheminement": "ROTS", + "nomCommune": "ROTS" }, { - "codePostal": "95270", - "codeCommune": "95456", - "libelleAcheminement": "NOISY SUR OISE", - "nomCommune": "NOISY SUR OISE" + "codePostal": "01420", + "codeCommune": "01407", + "libelleAcheminement": "SEYSSEL", + "nomCommune": "SEYSSEL" }, { - "codePostal": "02210", - "codeCommune": "02580", - "libelleAcheminement": "OULCHY LE CHATEAU", - "nomCommune": "OULCHY LE CHATEAU" + "codePostal": "14210", + "codeCommune": "14297", + "libelleAcheminement": "GAVRUS", + "nomCommune": "GAVRUS" }, { - "codePostal": "01200", - "codeCommune": "01257", - "libelleAcheminement": "MONTANGES", - "nomCommune": "MONTANGES" + "codePostal": "14340", + "codeCommune": "14550", + "libelleAcheminement": "RUMESNIL", + "nomCommune": "RUMESNIL" }, { - "codePostal": "95340", - "codeCommune": "95487", - "libelleAcheminement": "PERSAN", - "nomCommune": "PERSAN" + "codePostal": "01510", + "codeCommune": "01415", + "libelleAcheminement": "TALISSIEU", + "nomCommune": "TALISSIEU" }, { - "codePostal": "02210", - "codeCommune": "02585", - "libelleAcheminement": "PARCY ET TIGNY", - "nomCommune": "PARCY ET TIGNY" + "codePostal": "14730", + "codeCommune": "14301", + "libelleAcheminement": "GIBERVILLE", + "nomCommune": "GIBERVILLE" }, { - "codePostal": "01800", - "codeCommune": "01260", - "libelleAcheminement": "LE MONTELLIER", - "nomCommune": "LE MONTELLIER" + "codePostal": "14540", + "codeCommune": "14554", + "libelleAcheminement": "LE CASTELET", + "nomCommune": "LE CASTELET" }, { - "codePostal": "95220", - "codeCommune": "95488", - "libelleAcheminement": "PIERRELAYE", - "nomCommune": "PIERRELAYE" + "codePostal": "01170", + "codeCommune": "01436", + "libelleAcheminement": "VESANCY", + "nomCommune": "VESANCY" }, { - "codePostal": "02270", - "codeCommune": "02591", - "libelleAcheminement": "PARGNY LES BOIS", - "nomCommune": "PARGNY LES BOIS" + "codePostal": "14450", + "codeCommune": "14312", + "libelleAcheminement": "GRANDCAMP MAISY", + "nomCommune": "GRANDCAMP MAISY" }, { - "codePostal": "01340", - "codeCommune": "01266", - "libelleAcheminement": "MONTREVEL EN BRESSE", - "nomCommune": "MONTREVEL EN BRESSE" + "codePostal": "14960", + "codeCommune": "14565", + "libelleAcheminement": "ST COME DE FRESNE", + "nomCommune": "ST COME DE FRESNE" }, { - "codePostal": "95480", - "codeCommune": "95488", - "libelleAcheminement": "PIERRELAYE", - "nomCommune": "PIERRELAYE" + "codePostal": "01570", + "codeCommune": "01439", + "libelleAcheminement": "VESINES", + "nomCommune": "VESINES" }, { - "codePostal": "02200", - "codeCommune": "02593", - "libelleAcheminement": "PASLY", - "nomCommune": "PASLY" + "codePostal": "14700", + "codeCommune": "14332", + "libelleAcheminement": "LA HOGUETTE", + "nomCommune": "LA HOGUETTE" }, { - "codePostal": "01460", - "codeCommune": "01267", - "libelleAcheminement": "NURIEUX VOLOGNAT", - "nomCommune": "NURIEUX VOLOGNAT" + "codePostal": "14290", + "codeCommune": "14570", + "libelleAcheminement": "VALORBIQUET", + "nomCommune": "VALORBIQUET" }, { - "codePostal": "95130", - "codeCommune": "95491", - "libelleAcheminement": "LE PLESSIS BOUCHARD", - "nomCommune": "LE PLESSIS BOUCHARD" + "codePostal": "01150", + "codeCommune": "01444", + "libelleAcheminement": "VILLEBOIS", + "nomCommune": "VILLEBOIS" }, { - "codePostal": "02200", - "codeCommune": "02607", - "libelleAcheminement": "PLOISY", - "nomCommune": "PLOISY" + "codePostal": "14230", + "codeCommune": "14342", + "libelleAcheminement": "ISIGNY SUR MER", + "nomCommune": "ISIGNY SUR MER" }, { - "codePostal": "01460", - "codeCommune": "01269", - "libelleAcheminement": "NANTUA", - "nomCommune": "NANTUA" + "codePostal": "14100", + "codeCommune": "14571", + "libelleAcheminement": "ST DENIS DE MAILLOC", + "nomCommune": "ST DENIS DE MAILLOC" }, { - "codePostal": "95590", - "codeCommune": "95504", - "libelleAcheminement": "PRESLES", - "nomCommune": "PRESLES" + "codePostal": "01800", + "codeCommune": "01450", + "libelleAcheminement": "VILLIEU LOYES MOLLON", + "nomCommune": "VILLIEU LOYES MOLLON" }, { - "codePostal": "02490", - "codeCommune": "02614", - "libelleAcheminement": "PONTRU", - "nomCommune": "PONTRU" + "codePostal": "14690", + "codeCommune": "14343", + "libelleAcheminement": "LES ISLES BARDEL", + "nomCommune": "LES ISLES BARDEL" }, { - "codePostal": "01700", - "codeCommune": "01275", - "libelleAcheminement": "NEYRON", - "nomCommune": "NEYRON" + "codePostal": "14140", + "codeCommune": "14576", + "libelleAcheminement": "VAL DE VIE", + "nomCommune": "VAL DE VIE" }, { - "codePostal": "95380", - "codeCommune": "95509", - "libelleAcheminement": "PUISEUX EN FRANCE", - "nomCommune": "PUISEUX EN FRANCE" + "codePostal": "01510", + "codeCommune": "01452", + "libelleAcheminement": "VIRIEU LE GRAND", + "nomCommune": "VIRIEU LE GRAND" }, { - "codePostal": "02470", - "codeCommune": "02622", - "libelleAcheminement": "PRIEZ", - "nomCommune": "PRIEZ" + "codePostal": "14260", + "codeCommune": "14347", + "libelleAcheminement": "DIALAN SUR CHAINE", + "nomCommune": "DIALAN SUR CHAINE" }, { - "codePostal": "01130", - "codeCommune": "01298", - "libelleAcheminement": "PLAGNE", - "nomCommune": "PLAGNE" + "codePostal": "14130", + "codeCommune": "14593", + "libelleAcheminement": "ST HYMER", + "nomCommune": "ST HYMER" }, { - "codePostal": "95700", - "codeCommune": "95527", - "libelleAcheminement": "ROISSY EN FRANCE", - "nomCommune": "ROISSY EN FRANCE" + "codePostal": "01300", + "codeCommune": "01454", + "libelleAcheminement": "VIRIGNIN", + "nomCommune": "VIRIGNIN" }, { - "codePostal": "02120", - "codeCommune": "02624", - "libelleAcheminement": "PROISY", - "nomCommune": "PROISY" + "codePostal": "14250", + "codeCommune": "14348", + "libelleAcheminement": "JUVIGNY SUR SEULLES", + "nomCommune": "JUVIGNY SUR SEULLES" }, { - "codePostal": "01390", - "codeCommune": "01318", - "libelleAcheminement": "RANCE", - "nomCommune": "RANCE" + "codePostal": "14130", + "codeCommune": "14601", + "libelleAcheminement": "ST JULIEN SUR CALONNE", + "nomCommune": "ST JULIEN SUR CALONNE" }, { - "codePostal": "95200", - "codeCommune": "95585", - "libelleAcheminement": "SARCELLES", - "nomCommune": "SARCELLES" + "codePostal": "02300", + "codeCommune": "02001", + "libelleAcheminement": "ABBECOURT", + "nomCommune": "ABBECOURT" }, { - "codePostal": "02360", - "codeCommune": "02634", - "libelleAcheminement": "RAILLIMONT", - "nomCommune": "RAILLIMONT" + "codePostal": "14320", + "codeCommune": "14349", + "libelleAcheminement": "LAIZE CLINCHAMPS", + "nomCommune": "LAIZE CLINCHAMPS" }, { - "codePostal": "01800", - "codeCommune": "01325", - "libelleAcheminement": "RIGNIEUX LE FRANC", - "nomCommune": "RIGNIEUX LE FRANC" + "codePostal": "14400", + "codeCommune": "14609", + "libelleAcheminement": "ST LOUP HORS", + "nomCommune": "ST LOUP HORS" }, { - "codePostal": "95470", - "codeCommune": "95604", - "libelleAcheminement": "SURVILLIERS", - "nomCommune": "SURVILLIERS" + "codePostal": "02800", + "codeCommune": "02002", + "libelleAcheminement": "ACHERY", + "nomCommune": "ACHERY" }, { - "codePostal": "02800", - "codeCommune": "02651", - "libelleAcheminement": "ROGECOURT", - "nomCommune": "ROGECOURT" + "codePostal": "14310", + "codeCommune": "14353", + "libelleAcheminement": "LANDES SUR AJON", + "nomCommune": "LANDES SUR AJON" }, { - "codePostal": "01450", - "codeCommune": "01331", - "libelleAcheminement": "ST ALBAN", - "nomCommune": "ST ALBAN" + "codePostal": "14330", + "codeCommune": "14614", + "libelleAcheminement": "STE MARGUERITE D ELLE", + "nomCommune": "STE MARGUERITE D ELLE" }, { - "codePostal": "95450", - "codeCommune": "95610", - "libelleAcheminement": "THEMERICOURT", - "nomCommune": "THEMERICOURT" + "codePostal": "02800", + "codeCommune": "02016", + "libelleAcheminement": "ANDELAIN", + "nomCommune": "ANDELAIN" }, { - "codePostal": "02130", - "codeCommune": "02655", - "libelleAcheminement": "RONCHERES", - "nomCommune": "RONCHERES" + "codePostal": "14700", + "codeCommune": "14360", + "libelleAcheminement": "LEFFARD", + "nomCommune": "LEFFARD" }, { - "codePostal": "01600", - "codeCommune": "01339", - "libelleAcheminement": "ST BERNARD", - "nomCommune": "ST BERNARD" + "codePostal": "14290", + "codeCommune": "14621", + "libelleAcheminement": "ST MARTIN BIENFAITE CRESSONNIERE", + "nomCommune": "ST MARTIN DE BIENFAITE LA CRESSONNIERE" }, { - "codePostal": "95570", - "codeCommune": "95660", - "libelleAcheminement": "VILLAINES SOUS BOIS", - "nomCommune": "VILLAINES SOUS BOIS" + "codePostal": "02500", + "codeCommune": "02020", + "libelleAcheminement": "ANY MARTIN RIEUX", + "nomCommune": "ANY MARTIN RIEUX" }, { - "codePostal": "02140", - "codeCommune": "02657", - "libelleAcheminement": "ROUGERIES", - "nomCommune": "ROUGERIES" + "codePostal": "14330", + "codeCommune": "14370", + "libelleAcheminement": "LE MOLAY LITTRY", + "nomCommune": "LE MOLAY LITTRY" }, { - "codePostal": "01140", - "codeCommune": "01348", - "libelleAcheminement": "ST DIDIER SUR CHALARONNE", - "nomCommune": "ST DIDIER SUR CHALARONNE" + "codePostal": "14950", + "codeCommune": "14645", + "libelleAcheminement": "ST PIERRE AZIF", + "nomCommune": "ST PIERRE AZIF" }, { - "codePostal": "97142", - "codeCommune": "97101", - "libelleAcheminement": "LES ABYMES", - "nomCommune": "LES ABYMES" + "codePostal": "02480", + "codeCommune": "02025", + "libelleAcheminement": "ARTEMPS", + "nomCommune": "ARTEMPS" }, { - "codePostal": "02200", - "codeCommune": "02663", - "libelleAcheminement": "ROZIERES SUR CRISE", - "nomCommune": "ROZIERES SUR CRISE" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01370", - "codeCommune": "01350", - "libelleAcheminement": "ST ETIENNE DU BOIS", - "nomCommune": "ST ETIENNE DU BOIS" + "codePostal": "14260", + "codeCommune": "14650", + "libelleAcheminement": "ST PIERRE DU FRESNE", + "nomCommune": "ST PIERRE DU FRESNE" }, { - "codePostal": "97122", - "codeCommune": "97103", - "libelleAcheminement": "BAIE MAHAULT", - "nomCommune": "BAIE MAHAULT" + "codePostal": "02490", + "codeCommune": "02029", + "libelleAcheminement": "ATTILLY", + "nomCommune": "ATTILLY" }, { - "codePostal": "02360", - "codeCommune": "02666", - "libelleAcheminement": "ROZOY SUR SERRE", - "nomCommune": "ROZOY SUR SERRE" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01130", - "codeCommune": "01357", - "libelleAcheminement": "ST GERMAIN DE JOUX", - "nomCommune": "ST GERMAIN DE JOUX" + "codePostal": "14140", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "97126", - "codeCommune": "97111", - "libelleAcheminement": "DESHAIES", - "nomCommune": "DESHAIES" + "codePostal": "02590", + "codeCommune": "02032", + "libelleAcheminement": "AUBIGNY AUX KAISNES", + "nomCommune": "AUBIGNY AUX KAISNES" }, { - "codePostal": "02340", - "codeCommune": "02678", - "libelleAcheminement": "STE GENEVIEVE", - "nomCommune": "STE GENEVIEVE" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01240", - "codeCommune": "01359", - "libelleAcheminement": "ST GERMAIN SUR RENON", - "nomCommune": "ST GERMAIN SUR RENON" + "codePostal": "14140", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "97160", - "codeCommune": "97117", - "libelleAcheminement": "LE MOULE", - "nomCommune": "LE MOULE" + "codePostal": "02290", + "codeCommune": "02043", + "libelleAcheminement": "BAGNEUX", + "nomCommune": "BAGNEUX" }, { - "codePostal": "02600", - "codeCommune": "02687", - "libelleAcheminement": "ST PIERRE AIGLE", - "nomCommune": "ST PIERRE AIGLE" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01390", - "codeCommune": "01362", - "libelleAcheminement": "ST JEAN DE THURIGNEUX", - "nomCommune": "ST JEAN DE THURIGNEUX" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "97180", - "codeCommune": "97128", - "libelleAcheminement": "STE ANNE", - "nomCommune": "STE ANNE" + "codePostal": "02270", + "codeCommune": "02048", + "libelleAcheminement": "BARENTON SUR SERRE", + "nomCommune": "BARENTON SUR SERRE" }, { - "codePostal": "02210", - "codeCommune": "02693", - "libelleAcheminement": "ST REMY BLANZY", - "nomCommune": "ST REMY BLANZY" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01560", - "codeCommune": "01367", - "libelleAcheminement": "ST JULIEN SUR REYSSOUZE", - "nomCommune": "ST JULIEN SUR REYSSOUZE" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "97137", - "codeCommune": "97131", - "libelleAcheminement": "TERRE DE HAUT", - "nomCommune": "TERRE DE HAUT" + "codePostal": "02220", + "codeCommune": "02054", + "libelleAcheminement": "BAZOCHES ET ST THIBAUT", + "nomCommune": "BAZOCHES ET ST THIBAUT" }, { - "codePostal": "02880", - "codeCommune": "02698", - "libelleAcheminement": "SANCY LES CHEMINOTS", - "nomCommune": "SANCY LES CHEMINOTS" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "01560", - "codeCommune": "01380", - "libelleAcheminement": "ST NIZIER LE BOUCHOUX", - "nomCommune": "ST NIZIER LE BOUCHOUX" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "97114", - "codeCommune": "97132", - "libelleAcheminement": "TROIS RIVIERES", - "nomCommune": "TROIS RIVIERES" + "codePostal": "02590", + "codeCommune": "02060", + "libelleAcheminement": "BEAUVOIS EN VERMANDOIS", + "nomCommune": "BEAUVOIS EN VERMANDOIS" }, { - "codePostal": "02110", - "codeCommune": "02703", - "libelleAcheminement": "SEBONCOURT", - "nomCommune": "SEBONCOURT" + "codePostal": "14111", + "codeCommune": "14383", + "libelleAcheminement": "LOUVIGNY", + "nomCommune": "LOUVIGNY" }, { - "codePostal": "01230", - "codeCommune": "01384", - "libelleAcheminement": "ST RAMBERT EN BUGEY", - "nomCommune": "ST RAMBERT EN BUGEY" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "97222", - "codeCommune": "97205", - "libelleAcheminement": "CASE PILOTE", - "nomCommune": "CASE PILOTE" + "codePostal": "02420", + "codeCommune": "02063", + "libelleAcheminement": "BELLENGLISE", + "nomCommune": "BELLENGLISE" }, { - "codePostal": "02300", - "codeCommune": "02704", - "libelleAcheminement": "SELENS", - "nomCommune": "SELENS" + "codePostal": "14700", + "codeCommune": "14405", + "libelleAcheminement": "MARTIGNY SUR L ANTE", + "nomCommune": "MARTIGNY SUR L ANTE" }, { - "codePostal": "01150", - "codeCommune": "01386", - "libelleAcheminement": "ST SORLIN EN BUGEY", - "nomCommune": "ST SORLIN EN BUGEY" + "codePostal": "14570", + "codeCommune": "14656", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "97224", - "codeCommune": "97207", - "libelleAcheminement": "DUCOS", - "nomCommune": "DUCOS" + "codePostal": "02440", + "codeCommune": "02066", + "libelleAcheminement": "BENAY", + "nomCommune": "BENAY" }, { - "codePostal": "02150", - "codeCommune": "02705", - "libelleAcheminement": "LA SELVE", - "nomCommune": "LA SELVE" + "codePostal": "14480", + "codeCommune": "14406", + "libelleAcheminement": "MOULINS EN BESSIN", + "nomCommune": "MOULINS EN BESSIN" }, { - "codePostal": "01480", - "codeCommune": "01398", - "libelleAcheminement": "SAVIGNEUX", - "nomCommune": "SAVIGNEUX" + "codePostal": "14670", + "codeCommune": "14657", + "libelleAcheminement": "ST SAMSON", + "nomCommune": "ST SAMSON" }, { - "codePostal": "97218", - "codeCommune": "97211", - "libelleAcheminement": "GRAND RIVIERE", - "nomCommune": "GRAND RIVIERE" + "codePostal": "02190", + "codeCommune": "02073", + "libelleAcheminement": "BERRY AU BAC", + "nomCommune": "BERRY AU BAC" }, { - "codePostal": "02790", - "codeCommune": "02710", - "libelleAcheminement": "SERAUCOURT LE GRAND", - "nomCommune": "SERAUCOURT LE GRAND" + "codePostal": "14320", + "codeCommune": "14408", + "libelleAcheminement": "MAY SUR ORNE", + "nomCommune": "MAY SUR ORNE" }, { - "codePostal": "01170", - "codeCommune": "01399", - "libelleAcheminement": "SEGNY", - "nomCommune": "SEGNY" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "97218", - "codeCommune": "97215", - "libelleAcheminement": "MACOUBA", - "nomCommune": "MACOUBA" + "codePostal": "02800", + "codeCommune": "02074", + "libelleAcheminement": "BERTAUCOURT EPOURDON", + "nomCommune": "BERTAUCOURT EPOURDON" }, { - "codePostal": "02460", - "codeCommune": "02718", - "libelleAcheminement": "SILLY LA POTERIE", - "nomCommune": "SILLY LA POTERIE" + "codePostal": "14100", + "codeCommune": "14419", + "libelleAcheminement": "LE MESNIL EUDES", + "nomCommune": "LE MESNIL EUDES" }, { - "codePostal": "01450", - "codeCommune": "01404", - "libelleAcheminement": "SERRIERES SUR AIN", - "nomCommune": "SERRIERES SUR AIN" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "97225", - "codeCommune": "97216", - "libelleAcheminement": "LE MARIGOT", - "nomCommune": "LE MARIGOT" + "codePostal": "02300", + "codeCommune": "02078", + "libelleAcheminement": "BESME", + "nomCommune": "BESME" }, { - "codePostal": "02340", - "codeCommune": "02723", - "libelleAcheminement": "SOIZE", - "nomCommune": "SOIZE" + "codePostal": "14140", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "01420", - "codeCommune": "01407", - "libelleAcheminement": "SEYSSEL", - "nomCommune": "SEYSSEL" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "97290", - "codeCommune": "97217", - "libelleAcheminement": "LE MARIN", - "nomCommune": "LE MARIN" + "codePostal": "02210", + "codeCommune": "02082", + "libelleAcheminement": "BEUGNEUX", + "nomCommune": "BEUGNEUX" }, { - "codePostal": "02600", - "codeCommune": "02734", - "libelleAcheminement": "TAILLEFONTAINE", - "nomCommune": "TAILLEFONTAINE" + "codePostal": "14140", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "01230", - "codeCommune": "01421", - "libelleAcheminement": "TORCIEU", - "nomCommune": "TORCIEU" + "codePostal": "14190", + "codeCommune": "14659", + "libelleAcheminement": "ST SYLVAIN", + "nomCommune": "ST SYLVAIN" }, { - "codePostal": "97227", - "codeCommune": "97226", - "libelleAcheminement": "STE ANNE", - "nomCommune": "STE ANNE" + "codePostal": "01100", + "codeCommune": "01014", + "libelleAcheminement": "ARBENT", + "nomCommune": "ARBENT" }, { - "codePostal": "02220", - "codeCommune": "02735", - "libelleAcheminement": "TANNIERES", - "nomCommune": "TANNIERES" + "codePostal": "02300", + "codeCommune": "02086", + "libelleAcheminement": "BICHANCOURT", + "nomCommune": "BICHANCOURT" }, { - "codePostal": "01370", - "codeCommune": "01426", - "libelleAcheminement": "VAL REVERMONT", - "nomCommune": "VAL REVERMONT" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "97230", - "codeCommune": "97228", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "14330", + "codeCommune": "14667", + "libelleAcheminement": "SAON", + "nomCommune": "SAON" }, { - "codePostal": "02290", - "codeCommune": "02736", - "libelleAcheminement": "TARTIERS", - "nomCommune": "TARTIERS" + "codePostal": "01260", + "codeCommune": "01036", + "libelleAcheminement": "VALROMEY SUR SERAN", + "nomCommune": "VALROMEY SUR SERAN" }, { - "codePostal": "01600", - "codeCommune": "01427", - "libelleAcheminement": "TREVOUX", - "nomCommune": "TREVOUX" + "codePostal": "02290", + "codeCommune": "02087", + "libelleAcheminement": "BIEUXY", + "nomCommune": "BIEUXY" }, { - "codePostal": "97230", - "codeCommune": "97228", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "14370", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "02700", - "codeCommune": "02738", - "libelleAcheminement": "TERGNIER", - "nomCommune": "TERGNIER" + "codePostal": "14350", + "codeCommune": "14672", + "libelleAcheminement": "VAL DE DROME", + "nomCommune": "VAL DE DROME" }, { - "codePostal": "01150", - "codeCommune": "01431", - "libelleAcheminement": "VAUX EN BUGEY", - "nomCommune": "VAUX EN BUGEY" - }, - { - "codePostal": "97311", - "codeCommune": "97310", - "libelleAcheminement": "ROURA", - "nomCommune": "ROURA" + "codePostal": "01260", + "codeCommune": "01036", + "libelleAcheminement": "VALROMEY SUR SERAN", + "nomCommune": "VALROMEY SUR SERAN" }, { - "codePostal": "02810", - "codeCommune": "02744", - "libelleAcheminement": "TORCY EN VALOIS", - "nomCommune": "TORCY EN VALOIS" + "codePostal": "02270", + "codeCommune": "02096", + "libelleAcheminement": "BOIS LES PARGNY", + "nomCommune": "BOIS LES PARGNY" }, { - "codePostal": "01800", - "codeCommune": "01450", - "libelleAcheminement": "VILLIEU LOYES MOLLON", - "nomCommune": "VILLIEU LOYES MOLLON" + "codePostal": "14100", + "codeCommune": "14435", + "libelleAcheminement": "LES MONCEAUX", + "nomCommune": "LES MONCEAUX" }, { - "codePostal": "97380", - "codeCommune": "97314", - "libelleAcheminement": "OUANARY", - "nomCommune": "OUANARY" + "codePostal": "14540", + "codeCommune": "14675", + "libelleAcheminement": "SOLIERS", + "nomCommune": "SOLIERS" }, { - "codePostal": "02800", - "codeCommune": "02746", - "libelleAcheminement": "TRAVECY", - "nomCommune": "TRAVECY" + "codePostal": "01260", + "codeCommune": "01036", + "libelleAcheminement": "VALROMEY SUR SERAN", + "nomCommune": "VALROMEY SUR SERAN" }, { - "codePostal": "01440", - "codeCommune": "01451", - "libelleAcheminement": "VIRIAT", - "nomCommune": "VIRIAT" + "codePostal": "02860", + "codeCommune": "02102", + "libelleAcheminement": "BOUCONVILLE VAUCLAIR", + "nomCommune": "BOUCONVILLE VAUCLAIR" }, { - "codePostal": "97317", - "codeCommune": "97360", - "libelleAcheminement": "APATOU", - "nomCommune": "APATOU" + "codePostal": "14400", + "codeCommune": "14436", + "libelleAcheminement": "MONCEAUX EN BESSIN", + "nomCommune": "MONCEAUX EN BESSIN" }, { - "codePostal": "02300", - "codeCommune": "02750", - "libelleAcheminement": "TROSLY LOIRE", - "nomCommune": "TROSLY LOIRE" + "codePostal": "14400", + "codeCommune": "14676", + "libelleAcheminement": "SOMMERVIEU", + "nomCommune": "SOMMERVIEU" }, { "codePostal": "01260", - "codeCommune": "01453", - "libelleAcheminement": "ARVIERE EN VALROMEY", - "nomCommune": "ARVIERE EN VALROMEY" + "codeCommune": "01036", + "libelleAcheminement": "VALROMEY SUR SERAN", + "nomCommune": "VALROMEY SUR SERAN" }, { - "codePostal": "97419", - "codeCommune": "97408", - "libelleAcheminement": "LA POSSESSION", - "nomCommune": "LA POSSESSION" + "codePostal": "02400", + "codeCommune": "02105", + "libelleAcheminement": "BOURESCHES", + "nomCommune": "BOURESCHES" }, { - "codePostal": "02220", - "codeCommune": "02763", - "libelleAcheminement": "VASSENY", - "nomCommune": "VASSENY" + "codePostal": "14210", + "codeCommune": "14438", + "libelleAcheminement": "MONDRAINVILLE", + "nomCommune": "MONDRAINVILLE" }, { - "codePostal": "02300", - "codeCommune": "02001", - "libelleAcheminement": "ABBECOURT", - "nomCommune": "ABBECOURT" + "codePostal": "14130", + "codeCommune": "14682", + "libelleAcheminement": "SURVILLE", + "nomCommune": "SURVILLE" }, { - "codePostal": "97440", - "codeCommune": "97409", - "libelleAcheminement": "ST ANDRE", - "nomCommune": "ST ANDRE" + "codePostal": "01290", + "codeCommune": "01042", + "libelleAcheminement": "BEY", + "nomCommune": "BEY" }, { - "codePostal": "02160", - "codeCommune": "02764", - "libelleAcheminement": "VASSOGNE", - "nomCommune": "VASSOGNE" + "codePostal": "02240", + "codeCommune": "02124", + "libelleAcheminement": "BRISSY HAMEGICOURT", + "nomCommune": "BRISSY HAMEGICOURT" }, { - "codePostal": "02370", - "codeCommune": "02008", - "libelleAcheminement": "AIZY JOUY", - "nomCommune": "AIZY JOUY" + "codePostal": "14210", + "codeCommune": "14446", + "libelleAcheminement": "MONTIGNY", + "nomCommune": "MONTIGNY" }, { - "codePostal": "97400", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "14610", + "codeCommune": "14685", + "libelleAcheminement": "THAON", + "nomCommune": "THAON" }, { - "codePostal": "02000", - "codeCommune": "02765", - "libelleAcheminement": "VAUCELLES ET BEFFECOURT", - "nomCommune": "VAUCELLES ET BEFFECOURT" + "codePostal": "01800", + "codeCommune": "01054", + "libelleAcheminement": "BOURG ST CHRISTOPHE", + "nomCommune": "BOURG ST CHRISTOPHE" }, { - "codePostal": "02240", - "codeCommune": "02009", - "libelleAcheminement": "ALAINCOURT", - "nomCommune": "ALAINCOURT" + "codePostal": "02810", + "codeCommune": "02125", + "libelleAcheminement": "BRUMETZ", + "nomCommune": "BRUMETZ" }, { - "codePostal": "97400", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "14370", + "codeCommune": "14456", + "libelleAcheminement": "MOULT CHICHEBOVILLE", + "nomCommune": "MOULT CHICHEBOVILLE" }, { - "codePostal": "02590", - "codeCommune": "02772", - "libelleAcheminement": "VAUX EN VERMANDOIS", - "nomCommune": "VAUX EN VERMANDOIS" + "codePostal": "14220", + "codeCommune": "14689", + "libelleAcheminement": "THURY HARCOURT LE HOM", + "nomCommune": "THURY HARCOURT LE HOM" }, { - "codePostal": "02320", - "codeCommune": "02018", - "libelleAcheminement": "ANIZY LE GRAND", - "nomCommune": "ANIZY LE GRAND" + "codePostal": "01300", + "codeCommune": "01061", + "libelleAcheminement": "BRENS", + "nomCommune": "BRENS" }, { - "codePostal": "97490", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "02360", + "codeCommune": "02126", + "libelleAcheminement": "BRUNEHAMEL", + "nomCommune": "BRUNEHAMEL" }, { - "codePostal": "02220", - "codeCommune": "02773", - "libelleAcheminement": "VAUXTIN", - "nomCommune": "VAUXTIN" + "codePostal": "14370", + "codeCommune": "14456", + "libelleAcheminement": "MOULT CHICHEBOVILLE", + "nomCommune": "MOULT CHICHEBOVILLE" }, { - "codePostal": "02820", - "codeCommune": "02033", - "libelleAcheminement": "AUBIGNY EN LAONNOIS", - "nomCommune": "AUBIGNY EN LAONNOIS" + "codePostal": "14130", + "codeCommune": "14694", + "libelleAcheminement": "LE TORQUESNE", + "nomCommune": "LE TORQUESNE" }, { - "codePostal": "97480", - "codeCommune": "97412", - "libelleAcheminement": "ST JOSEPH", - "nomCommune": "ST JOSEPH" + "codePostal": "01360", + "codeCommune": "01062", + "libelleAcheminement": "BRESSOLLES", + "nomCommune": "BRESSOLLES" }, { - "codePostal": "02800", - "codeCommune": "02775", - "libelleAcheminement": "VENDEUIL", - "nomCommune": "VENDEUIL" + "codePostal": "02880", + "codeCommune": "02131", + "libelleAcheminement": "BUCY LE LONG", + "nomCommune": "BUCY LE LONG" }, { - "codePostal": "02300", - "codeCommune": "02034", - "libelleAcheminement": "AUDIGNICOURT", - "nomCommune": "AUDIGNICOURT" + "codePostal": "14220", + "codeCommune": "14461", + "libelleAcheminement": "MUTRECY", + "nomCommune": "MUTRECY" }, { - "codePostal": "97416", - "codeCommune": "97413", - "libelleAcheminement": "ST LEU", - "nomCommune": "ST LEU" + "codePostal": "14400", + "codeCommune": "14700", + "libelleAcheminement": "TOUR EN BESSIN", + "nomCommune": "TOUR EN BESSIN" }, { - "codePostal": "02540", - "codeCommune": "02777", - "libelleAcheminement": "VENDIERES", - "nomCommune": "VENDIERES" + "codePostal": "01460", + "codeCommune": "01063", + "libelleAcheminement": "BRION", + "nomCommune": "BRION" }, { - "codePostal": "02360", - "codeCommune": "02038", - "libelleAcheminement": "LES AUTELS", - "nomCommune": "LES AUTELS" + "codePostal": "02300", + "codeCommune": "02139", + "libelleAcheminement": "CAILLOUEL CREPIGNY", + "nomCommune": "CAILLOUEL CREPIGNY" }, { - "codePostal": "97424", - "codeCommune": "97413", - "libelleAcheminement": "ST LEU", - "nomCommune": "ST LEU" + "codePostal": "14210", + "codeCommune": "14475", + "libelleAcheminement": "VAL D ARRY", + "nomCommune": "VAL D ARRY" }, { - "codePostal": "02400", - "codeCommune": "02781", - "libelleAcheminement": "VERDILLY", - "nomCommune": "VERDILLY" + "codePostal": "14490", + "codeCommune": "14716", + "libelleAcheminement": "TRUNGY", + "nomCommune": "TRUNGY" }, { - "codePostal": "02290", - "codeCommune": "02043", - "libelleAcheminement": "BAGNEUX", - "nomCommune": "BAGNEUX" + "codePostal": "01310", + "codeCommune": "01065", + "libelleAcheminement": "BUELLAS", + "nomCommune": "BUELLAS" }, { - "codePostal": "97436", - "codeCommune": "97413", - "libelleAcheminement": "ST LEU", - "nomCommune": "ST LEU" + "codePostal": "02300", + "codeCommune": "02140", + "libelleAcheminement": "CAMELIN", + "nomCommune": "CAMELIN" }, { - "codePostal": "02120", - "codeCommune": "02783", - "libelleAcheminement": "GRAND VERLY", - "nomCommune": "GRAND VERLY" + "codePostal": "14310", + "codeCommune": "14475", + "libelleAcheminement": "VAL D ARRY", + "nomCommune": "VAL D ARRY" }, { - "codePostal": "02700", - "codeCommune": "02049", - "libelleAcheminement": "BARISIS AUX BOIS", - "nomCommune": "BARISIS AUX BOIS" + "codePostal": "14350", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "97421", - "codeCommune": "97414", - "libelleAcheminement": "ST LOUIS", - "nomCommune": "ST LOUIS" + "codePostal": "01630", + "codeCommune": "01078", + "libelleAcheminement": "CHALLEX", + "nomCommune": "CHALLEX" }, { - "codePostal": "02490", - "codeCommune": "02785", - "libelleAcheminement": "VERMAND", - "nomCommune": "VERMAND" + "codePostal": "02860", + "codeCommune": "02150", + "libelleAcheminement": "CERNY EN LAONNOIS", + "nomCommune": "CERNY EN LAONNOIS" }, { - "codePostal": "02330", - "codeCommune": "02053", - "libelleAcheminement": "VALLEES EN CHAMPAGNE", - "nomCommune": "VALLEES EN CHAMPAGNE" + "codePostal": "14150", + "codeCommune": "14488", + "libelleAcheminement": "OUISTREHAM", + "nomCommune": "OUISTREHAM" }, { - "codePostal": "97450", - "codeCommune": "97414", - "libelleAcheminement": "ST LOUIS", - "nomCommune": "ST LOUIS" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "02340", - "codeCommune": "02801", - "libelleAcheminement": "VIGNEUX HOCQUET", - "nomCommune": "VIGNEUX HOCQUET" + "codePostal": "01250", + "codeCommune": "01095", + "libelleAcheminement": "NIVIGNE ET SURAN", + "nomCommune": "NIVIGNE ET SURAN" }, { - "codePostal": "02110", - "codeCommune": "02057", - "libelleAcheminement": "BEAUREVOIR", - "nomCommune": "BEAUREVOIR" + "codePostal": "02000", + "codeCommune": "02157", + "libelleAcheminement": "CHAMBRY", + "nomCommune": "CHAMBRY" }, { - "codePostal": "97423", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "14600", + "codeCommune": "14492", + "libelleAcheminement": "PENNEDEPIE", + "nomCommune": "PENNEDEPIE" }, { - "codePostal": "02210", - "codeCommune": "02804", - "libelleAcheminement": "VILLEMONTOIRE", - "nomCommune": "VILLEMONTOIRE" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "02400", - "codeCommune": "02062", - "libelleAcheminement": "BELLEAU", - "nomCommune": "BELLEAU" + "codePostal": "01170", + "codeCommune": "01103", + "libelleAcheminement": "CHEVRY", + "nomCommune": "CHEVRY" }, { - "codePostal": "97434", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "02340", + "codeCommune": "02160", + "libelleAcheminement": "CHAOURSE", + "nomCommune": "CHAOURSE" }, { - "codePostal": "02200", - "codeCommune": "02805", - "libelleAcheminement": "VILLENEUVE ST GERMAIN", - "nomCommune": "VILLENEUVE ST GERMAIN" + "codePostal": "14160", + "codeCommune": "14494", + "libelleAcheminement": "PERIERS EN AUGE", + "nomCommune": "PERIERS EN AUGE" }, { - "codePostal": "02420", - "codeCommune": "02063", - "libelleAcheminement": "BELLENGLISE", - "nomCommune": "BELLENGLISE" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "97435", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "01410", + "codeCommune": "01104", + "libelleAcheminement": "CHEZERY FORENS", + "nomCommune": "CHEZERY FORENS" }, { - "codePostal": "02130", - "codeCommune": "02806", - "libelleAcheminement": "VILLENEUVE SUR FERE", - "nomCommune": "VILLENEUVE SUR FERE" + "codePostal": "02800", + "codeCommune": "02165", + "libelleAcheminement": "CHARMES", + "nomCommune": "CHARMES" }, { - "codePostal": "02120", - "codeCommune": "02070", - "libelleAcheminement": "BERNOT", - "nomCommune": "BERNOT" + "codePostal": "14770", + "codeCommune": "14496", + "libelleAcheminement": "PERIGNY", + "nomCommune": "PERIGNY" }, { - "codePostal": "97460", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "02130", - "codeCommune": "02809", - "libelleAcheminement": "VILLERS AGRON AIGUIZY", - "nomCommune": "VILLERS AGRON AIGUIZY" + "codePostal": "01320", + "codeCommune": "01129", + "libelleAcheminement": "CRANS", + "nomCommune": "CRANS" }, { - "codePostal": "02190", - "codeCommune": "02073", - "libelleAcheminement": "BERRY AU BAC", - "nomCommune": "BERRY AU BAC" + "codePostal": "02200", + "codeCommune": "02172", + "libelleAcheminement": "CHAUDUN", + "nomCommune": "CHAUDUN" }, { - "codePostal": "97410", - "codeCommune": "97416", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "14170", + "codeCommune": "14497", + "libelleAcheminement": "PERRIERES", + "nomCommune": "PERRIERES" }, { - "codePostal": "02340", - "codeCommune": "02819", - "libelleAcheminement": "VINCY REUIL ET MAGNY", - "nomCommune": "VINCY REUIL ET MAGNY" + "codePostal": "14290", + "codeCommune": "14740", + "libelleAcheminement": "LA VESPIERE FRIARDEL", + "nomCommune": "LA VESPIERE FRIARDEL" }, { - "codePostal": "02300", - "codeCommune": "02078", - "libelleAcheminement": "BESME", - "nomCommune": "BESME" + "codePostal": "01340", + "codeCommune": "01130", + "libelleAcheminement": "BRESSE VALLONS", + "nomCommune": "BRESSE VALLONS" }, { - "codePostal": "97430", - "codeCommune": "97422", - "libelleAcheminement": "LE TAMPON", - "nomCommune": "LE TAMPON" + "codePostal": "02300", + "codeCommune": "02173", + "libelleAcheminement": "CHAUNY", + "nomCommune": "CHAUNY" }, { - "codePostal": "02600", - "codeCommune": "02822", - "libelleAcheminement": "VIVIERES", - "nomCommune": "VIVIERES" + "codePostal": "14390", + "codeCommune": "14499", + "libelleAcheminement": "PETIVILLE", + "nomCommune": "PETIVILLE" }, { - "codePostal": "02870", - "codeCommune": "02080", - "libelleAcheminement": "BESNY ET LOIZY", - "nomCommune": "BESNY ET LOIZY" + "codePostal": "14570", + "codeCommune": "14741", + "libelleAcheminement": "LE VEY", + "nomCommune": "LE VEY" }, { - "codePostal": "97413", - "codeCommune": "97424", - "libelleAcheminement": "CILAOS", - "nomCommune": "CILAOS" + "codePostal": "01350", + "codeCommune": "01133", + "libelleAcheminement": "CRESSIN ROCHEFORT", + "nomCommune": "CRESSIN ROCHEFORT" }, { - "codePostal": "02320", - "codeCommune": "02834", - "libelleAcheminement": "WISSIGNICOURT", - "nomCommune": "WISSIGNICOURT" + "codePostal": "02810", + "codeCommune": "02185", + "libelleAcheminement": "CHEZY EN ORXOIS", + "nomCommune": "CHEZY EN ORXOIS" }, { - "codePostal": "02300", - "codeCommune": "02081", - "libelleAcheminement": "BETHANCOURT EN VAUX", - "nomCommune": "BETHANCOURT EN VAUX" + "codePostal": "14690", + "codeCommune": "14501", + "libelleAcheminement": "PIERREFITTE EN CINGLAIS", + "nomCommune": "PIERREFITTE EN CINGLAIS" }, { - "codePostal": "97500", - "codeCommune": "97501", - "libelleAcheminement": "ST PIERRE ET MIQUELON", - "nomCommune": "MIQUELON LANGLADE" + "codePostal": "14710", + "codeCommune": "14745", + "libelleAcheminement": "VIERVILLE SUR MER", + "nomCommune": "VIERVILLE SUR MER" }, { - "codePostal": "03250", - "codeCommune": "03008", - "libelleAcheminement": "ARRONNES", - "nomCommune": "ARRONNES" + "codePostal": "01350", + "codeCommune": "01138", + "libelleAcheminement": "CULOZ", + "nomCommune": "CULOZ" }, { - "codePostal": "02860", - "codeCommune": "02088", - "libelleAcheminement": "BIEVRES", - "nomCommune": "BIEVRES" + "codePostal": "02000", + "codeCommune": "02191", + "libelleAcheminement": "CHIVY LES ETOUVELLES", + "nomCommune": "CHIVY LES ETOUVELLES" }, { - "codePostal": "97650", - "codeCommune": "97602", - "libelleAcheminement": "BANDRABOUA", - "nomCommune": "BANDRABOUA" + "codePostal": "14690", + "codeCommune": "14502", + "libelleAcheminement": "PIERREPONT", + "nomCommune": "PIERREPONT" }, { - "codePostal": "03210", - "codeCommune": "03012", - "libelleAcheminement": "AUTRY ISSARDS", - "nomCommune": "AUTRY ISSARDS" + "codePostal": "14570", + "codeCommune": "14756", + "libelleAcheminement": "LA VILLETTE", + "nomCommune": "LA VILLETTE" }, { - "codePostal": "02300", - "codeCommune": "02093", - "libelleAcheminement": "BLERANCOURT", - "nomCommune": "BLERANCOURT" + "codePostal": "01220", + "codeCommune": "01143", + "libelleAcheminement": "DIVONNE LES BAINS", + "nomCommune": "DIVONNE LES BAINS" }, { - "codePostal": "97660", - "codeCommune": "97603", - "libelleAcheminement": "BANDRELE", - "nomCommune": "BANDRELE" + "codePostal": "02220", + "codeCommune": "02195", + "libelleAcheminement": "CIRY SALSOGNE", + "nomCommune": "CIRY SALSOGNE" }, { - "codePostal": "03130", - "codeCommune": "03014", - "libelleAcheminement": "AVRILLY", - "nomCommune": "AVRILLY" + "codePostal": "14440", + "codeCommune": "14509", + "libelleAcheminement": "PLUMETOT", + "nomCommune": "PLUMETOT" }, { - "codePostal": "02450", - "codeCommune": "02103", - "libelleAcheminement": "BOUE", - "nomCommune": "BOUE" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "97600", - "codeCommune": "97611", - "libelleAcheminement": "MAMOUDZOU", - "nomCommune": "MAMOUDZOU" + "codePostal": "01590", + "codeCommune": "01148", + "libelleAcheminement": "DORTAN", + "nomCommune": "DORTAN" }, { - "codePostal": "03370", - "codeCommune": "03051", - "libelleAcheminement": "CHAMBERAT", - "nomCommune": "CHAMBERAT" + "codePostal": "02440", + "codeCommune": "02199", + "libelleAcheminement": "CLASTRES", + "nomCommune": "CLASTRES" }, { - "codePostal": "02400", - "codeCommune": "02105", - "libelleAcheminement": "BOURESCHES", - "nomCommune": "BOURESCHES" + "codePostal": "14520", + "codeCommune": "14515", + "libelleAcheminement": "PORT EN BESSIN HUPPAIN", + "nomCommune": "PORT EN BESSIN HUPPAIN" }, { - "codePostal": "97605", - "codeCommune": "97611", - "libelleAcheminement": "MAMOUDZOU", - "nomCommune": "MAMOUDZOU" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "03170", - "codeCommune": "03052", - "libelleAcheminement": "CHAMBLET", - "nomCommune": "CHAMBLET" + "codePostal": "01250", + "codeCommune": "01150", + "libelleAcheminement": "DROM", + "nomCommune": "DROM" }, { - "codePostal": "02140", - "codeCommune": "02116", - "libelleAcheminement": "BRAYE EN THIERACHE", - "nomCommune": "BRAYE EN THIERACHE" + "codePostal": "02120", + "codeCommune": "02206", + "libelleAcheminement": "COLONFAY", + "nomCommune": "COLONFAY" }, { - "codePostal": "98790", - "codeCommune": "98711", - "libelleAcheminement": "TEPUPAHEA", - "nomCommune": "ANAA" + "codePostal": "14430", + "codeCommune": "14524", + "libelleAcheminement": "PUTOT EN AUGE", + "nomCommune": "PUTOT EN AUGE" }, { - "codePostal": "03120", - "codeCommune": "03068", - "libelleAcheminement": "CHATELUS", - "nomCommune": "CHATELUS" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "02880", - "codeCommune": "02118", - "libelleAcheminement": "BRAYE", - "nomCommune": "BRAYE" + "codePostal": "01160", + "codeCommune": "01151", + "libelleAcheminement": "DRUILLAT", + "nomCommune": "DRUILLAT" }, { - "codePostal": "98790", - "codeCommune": "98716", - "libelleAcheminement": "TOAU", - "nomCommune": "FAKARAVA" + "codePostal": "02300", + "codeCommune": "02207", + "libelleAcheminement": "COMMENCHON", + "nomCommune": "COMMENCHON" }, { - "codePostal": "03320", - "codeCommune": "03087", - "libelleAcheminement": "COULEUVRE", - "nomCommune": "COULEUVRE" + "codePostal": "14270", + "codeCommune": "14527", + "libelleAcheminement": "BELLE VIE EN AUGE", + "nomCommune": "BELLE VIE EN AUGE" }, { - "codePostal": "02680", - "codeCommune": "02142", - "libelleAcheminement": "CASTRES", - "nomCommune": "CASTRES" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "98765", - "codeCommune": "98717", - "libelleAcheminement": "TEANA", - "nomCommune": "FANGATAU" + "codePostal": "01170", + "codeCommune": "01153", + "libelleAcheminement": "ECHENEVEX", + "nomCommune": "ECHENEVEX" }, { - "codePostal": "03160", - "codeCommune": "03090", - "libelleAcheminement": "COUZON", - "nomCommune": "COUZON" + "codePostal": "02190", + "codeCommune": "02211", + "libelleAcheminement": "CONDE SUR SUIPPE", + "nomCommune": "CONDE SUR SUIPPE" }, { - "codePostal": "02240", - "codeCommune": "02149", - "libelleAcheminement": "CERIZY", - "nomCommune": "CERIZY" + "codePostal": "14130", + "codeCommune": "14528", + "libelleAcheminement": "QUETTEVILLE", + "nomCommune": "QUETTEVILLE" }, { - "codePostal": "98766", - "codeCommune": "98717", - "libelleAcheminement": "TARIONE", - "nomCommune": "FANGATAU" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "03450", - "codeCommune": "03107", - "libelleAcheminement": "EBREUIL", - "nomCommune": "EBREUIL" + "codePostal": "01480", + "codeCommune": "01157", + "libelleAcheminement": "FAREINS", + "nomCommune": "FAREINS" }, { - "codePostal": "02220", - "codeCommune": "02152", - "libelleAcheminement": "CERSEUIL", - "nomCommune": "CERSEUIL" + "codePostal": "02820", + "codeCommune": "02215", + "libelleAcheminement": "CORBENY", + "nomCommune": "CORBENY" }, { - "codePostal": "98740", - "codeCommune": "98718", - "libelleAcheminement": "OMOA", - "nomCommune": "FATU HIVA" + "codePostal": "14340", + "codeCommune": "14533", + "libelleAcheminement": "REPENTIGNY", + "nomCommune": "REPENTIGNY" }, { - "codePostal": "03250", - "codeCommune": "03113", - "libelleAcheminement": "FERRIERES SUR SICHON", - "nomCommune": "FERRIERES SUR SICHON" + "codePostal": "15160", + "codeCommune": "15001", + "libelleAcheminement": "ALLANCHE", + "nomCommune": "ALLANCHE" }, { - "codePostal": "02200", - "codeCommune": "02154", - "libelleAcheminement": "CHACRISE", - "nomCommune": "CHACRISE" + "codePostal": "01340", + "codeCommune": "01163", + "libelleAcheminement": "FOISSIAT", + "nomCommune": "FOISSIAT" }, { - "codePostal": "98755", - "codeCommune": "98719", - "libelleAcheminement": "MANGAREVA", - "nomCommune": "GAMBIER" + "codePostal": "02810", + "codeCommune": "02225", + "libelleAcheminement": "COURCHAMPS", + "nomCommune": "COURCHAMPS" }, { - "codePostal": "03140", - "codeCommune": "03116", - "libelleAcheminement": "FOURILLES", - "nomCommune": "FOURILLES" + "codePostal": "14130", + "codeCommune": "14534", + "libelleAcheminement": "REUX", + "nomCommune": "REUX" }, { - "codePostal": "02000", - "codeCommune": "02157", - "libelleAcheminement": "CHAMBRY", - "nomCommune": "CHAMBRY" + "codePostal": "15700", + "codeCommune": "15003", + "libelleAcheminement": "ALLY", + "nomCommune": "ALLY" }, { - "codePostal": "98755", - "codeCommune": "98719", - "libelleAcheminement": "TARAVAI", - "nomCommune": "GAMBIER" + "codePostal": "01090", + "codeCommune": "01165", + "libelleAcheminement": "FRANCHELEINS", + "nomCommune": "FRANCHELEINS" }, { - "codePostal": "03220", - "codeCommune": "03132", - "libelleAcheminement": "JALIGNY SUR BESBRE", - "nomCommune": "JALIGNY SUR BESBRE" + "codePostal": "02850", + "codeCommune": "02228", + "libelleAcheminement": "COURTEMONT VARENNES", + "nomCommune": "COURTEMONT VARENNES" }, { - "codePostal": "02860", - "codeCommune": "02158", - "libelleAcheminement": "CHAMOUILLE", - "nomCommune": "CHAMOUILLE" + "codePostal": "14540", + "codeCommune": "14538", + "libelleAcheminement": "CASTINE EN PLAINE", + "nomCommune": "CASTINE EN PLAINE" }, { - "codePostal": "98792", - "codeCommune": "98719", - "libelleAcheminement": "MORANE", - "nomCommune": "GAMBIER" + "codePostal": "15100", + "codeCommune": "15005", + "libelleAcheminement": "ANGLARDS DE ST FLOUR", + "nomCommune": "ANGLARDS DE ST FLOUR" }, { - "codePostal": "03500", - "codeCommune": "03134", - "libelleAcheminement": "LAFELINE", - "nomCommune": "LAFELINE" + "codePostal": "01290", + "codeCommune": "01179", + "libelleAcheminement": "GRIEGES", + "nomCommune": "GRIEGES" }, { - "codePostal": "02570", - "codeCommune": "02162", - "libelleAcheminement": "LA CHAPELLE SUR CHEZY", - "nomCommune": "LA CHAPELLE SUR CHEZY" + "codePostal": "02130", + "codeCommune": "02233", + "libelleAcheminement": "CRAMAILLE", + "nomCommune": "CRAMAILLE" }, { - "codePostal": "98767", - "codeCommune": "98720", - "libelleAcheminement": "OTEPA", - "nomCommune": "HAO" + "codePostal": "14740", + "codeCommune": "14542", + "libelleAcheminement": "ROSEL", + "nomCommune": "ROSEL" }, { - "codePostal": "03250", - "codeCommune": "03141", - "libelleAcheminement": "LAVOINE", - "nomCommune": "LAVOINE" + "codePostal": "15200", + "codeCommune": "15010", + "libelleAcheminement": "ARCHES", + "nomCommune": "ARCHES" }, { - "codePostal": "02400", - "codeCommune": "02168", - "libelleAcheminement": "CHATEAU THIERRY", - "nomCommune": "CHATEAU THIERRY" + "codePostal": "01100", + "codeCommune": "01181", + "libelleAcheminement": "GROISSIAT", + "nomCommune": "GROISSIAT" }, { - "codePostal": "98708", - "codeCommune": "98722", - "libelleAcheminement": "TIAREI", - "nomCommune": "HITIAA O TE RA" + "codePostal": "02870", + "codeCommune": "02238", + "libelleAcheminement": "CREPY", + "nomCommune": "CREPY" }, { - "codePostal": "03600", - "codeCommune": "03151", - "libelleAcheminement": "LOUROUX DE BEAUNE", - "nomCommune": "LOUROUX DE BEAUNE" + "codePostal": "14740", + "codeCommune": "14543", + "libelleAcheminement": "ROTS", + "nomCommune": "ROTS" }, { - "codePostal": "02880", - "codeCommune": "02175", - "libelleAcheminement": "CHAVIGNY", - "nomCommune": "CHAVIGNY" + "codePostal": "15700", + "codeCommune": "15018", + "libelleAcheminement": "BARRIAC LES BOSQUETS", + "nomCommune": "BARRIAC LES BOSQUETS" }, { - "codePostal": "98731", - "codeCommune": "98724", - "libelleAcheminement": "HUAHINE", - "nomCommune": "HUAHINE" + "codePostal": "01250", + "codeCommune": "01184", + "libelleAcheminement": "HAUTECOURT ROMANECHE", + "nomCommune": "HAUTECOURT ROMANECHE" }, { - "codePostal": "03360", - "codeCommune": "03168", - "libelleAcheminement": "MEAULNE VITRAY", - "nomCommune": "MEAULNE VITRAY" + "codePostal": "02210", + "codeCommune": "02241", + "libelleAcheminement": "LA CROIX SUR OURCQ", + "nomCommune": "LA CROIX SUR OURCQ" }, { - "codePostal": "02360", - "codeCommune": "02181", - "libelleAcheminement": "CHERY LES ROZOY", - "nomCommune": "CHERY LES ROZOY" + "codePostal": "14800", + "codeCommune": "14557", + "libelleAcheminement": "ST ARNOULT", + "nomCommune": "ST ARNOULT" }, { - "codePostal": "98731", - "codeCommune": "98724", - "libelleAcheminement": "TEFARERII", - "nomCommune": "HUAHINE" + "codePostal": "15600", + "codeCommune": "15021", + "libelleAcheminement": "BOISSET", + "nomCommune": "BOISSET" }, { - "codePostal": "03210", - "codeCommune": "03170", - "libelleAcheminement": "MEILLERS", - "nomCommune": "MEILLERS" + "codePostal": "01110", + "codeCommune": "01185", + "libelleAcheminement": "PLATEAU D HAUTEVILLE", + "nomCommune": "PLATEAU D HAUTEVILLE" }, { - "codePostal": "02270", - "codeCommune": "02184", - "libelleAcheminement": "CHEVRESIS MONCEAU", - "nomCommune": "CHEVRESIS MONCEAU" + "codePostal": "02310", + "codeCommune": "02242", + "libelleAcheminement": "CROUTTES SUR MARNE", + "nomCommune": "CROUTTES SUR MARNE" }, { - "codePostal": "98731", - "codeCommune": "98724", - "libelleAcheminement": "MAEVA", - "nomCommune": "HUAHINE" + "codePostal": "14130", + "codeCommune": "14563", + "libelleAcheminement": "ST BENOIT D HEBERTOT", + "nomCommune": "ST BENOIT D HEBERTOT" }, { - "codePostal": "03800", - "codeCommune": "03182", - "libelleAcheminement": "MONTEIGNET SUR L ANDELOT", - "nomCommune": "MONTEIGNET SUR L ANDELOT" + "codePostal": "15340", + "codeCommune": "15027", + "libelleAcheminement": "PUYCAPEL", + "nomCommune": "PUYCAPEL" }, { - "codePostal": "02810", - "codeCommune": "02185", - "libelleAcheminement": "CHEZY EN ORXOIS", - "nomCommune": "CHEZY EN ORXOIS" + "codePostal": "01260", + "codeCommune": "01187", + "libelleAcheminement": "HAUT VALROMEY", + "nomCommune": "HAUT VALROMEY" }, { - "codePostal": "98789", - "codeCommune": "98726", - "libelleAcheminement": "HITIANAU", - "nomCommune": "MAKEMO" + "codePostal": "02880", + "codeCommune": "02243", + "libelleAcheminement": "CROUY", + "nomCommune": "CROUY" }, { - "codePostal": "03240", - "codeCommune": "03183", - "libelleAcheminement": "LE MONTET", - "nomCommune": "LE MONTET" + "codePostal": "14290", + "codeCommune": "14570", + "libelleAcheminement": "VALORBIQUET", + "nomCommune": "VALORBIQUET" }, { - "codePostal": "02350", - "codeCommune": "02189", - "libelleAcheminement": "CHIVRES EN LAONNOIS", - "nomCommune": "CHIVRES EN LAONNOIS" + "codePostal": "15320", + "codeCommune": "15034", + "libelleAcheminement": "CHALIERS", + "nomCommune": "CHALIERS" }, { - "codePostal": "98732", - "codeCommune": "98728", - "libelleAcheminement": "MOPELIA", - "nomCommune": "MAUPITI" + "codePostal": "01140", + "codeCommune": "01188", + "libelleAcheminement": "ILLIAT", + "nomCommune": "ILLIAT" }, { - "codePostal": "03000", - "codeCommune": "03184", - "libelleAcheminement": "MONTILLY", - "nomCommune": "MONTILLY" + "codePostal": "02680", + "codeCommune": "02257", + "libelleAcheminement": "DALLON", + "nomCommune": "DALLON" }, { - "codePostal": "02220", - "codeCommune": "02195", - "libelleAcheminement": "CIRY SALSOGNE", - "nomCommune": "CIRY SALSOGNE" + "codePostal": "14110", + "codeCommune": "14572", + "libelleAcheminement": "ST DENIS DE MERE", + "nomCommune": "ST DENIS DE MERE" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "TEAVARO", - "nomCommune": "MOOREA MAIAO" + "codePostal": "15270", + "codeCommune": "15038", + "libelleAcheminement": "CHAMPS SUR TARENTAINE MARCHAL", + "nomCommune": "CHAMPS SUR TARENTAINE MARCHAL" }, { - "codePostal": "03150", - "codeCommune": "03187", - "libelleAcheminement": "MONTOLDRE", - "nomCommune": "MONTOLDRE" + "codePostal": "01200", + "codeCommune": "01189", + "libelleAcheminement": "INJOUX GENISSIAT", + "nomCommune": "INJOUX GENISSIAT" }, { - "codePostal": "02260", - "codeCommune": "02197", - "libelleAcheminement": "CLAIRFONTAINE", - "nomCommune": "CLAIRFONTAINE" + "codePostal": "02270", + "codeCommune": "02261", + "libelleAcheminement": "DERCY", + "nomCommune": "DERCY" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "TIAIA", - "nomCommune": "MOOREA MAIAO" + "codePostal": "14100", + "codeCommune": "14574", + "libelleAcheminement": "ST DESIR", + "nomCommune": "ST DESIR" }, { - "codePostal": "03000", - "codeCommune": "03190", - "libelleAcheminement": "MOULINS", - "nomCommune": "MOULINS" + "codePostal": "15190", + "codeCommune": "15040", + "libelleAcheminement": "CHANTERELLE", + "nomCommune": "CHANTERELLE" }, { - "codePostal": "02440", - "codeCommune": "02199", - "libelleAcheminement": "CLASTRES", - "nomCommune": "CLASTRES" + "codePostal": "01250", + "codeCommune": "01195", + "libelleAcheminement": "JASSERON", + "nomCommune": "JASSERON" }, { - "codePostal": "98729", - "codeCommune": "98729", - "libelleAcheminement": "PIHAENA", - "nomCommune": "MOOREA MAIAO" + "codePostal": "02360", + "codeCommune": "02265", + "libelleAcheminement": "DOHIS", + "nomCommune": "DOHIS" }, { - "codePostal": "03450", - "codeCommune": "03192", - "libelleAcheminement": "NADES", - "nomCommune": "NADES" + "codePostal": "14140", + "codeCommune": "14576", + "libelleAcheminement": "VAL DE VIE", + "nomCommune": "VAL DE VIE" }, { - "codePostal": "02160", - "codeCommune": "02208", - "libelleAcheminement": "CONCEVREUX", - "nomCommune": "CONCEVREUX" + "codePostal": "15300", + "codeCommune": "15041", + "libelleAcheminement": "LA CHAPELLE D ALAGNON", + "nomCommune": "LA CHAPELLE D ALAGNON" }, { - "codePostal": "98742", - "codeCommune": "98731", - "libelleAcheminement": "NUKUATAHA", - "nomCommune": "NUKU HIVA" + "codePostal": "01340", + "codeCommune": "01196", + "libelleAcheminement": "JAYAT", + "nomCommune": "JAYAT" }, { - "codePostal": "03330", - "codeCommune": "03194", - "libelleAcheminement": "NAVES", - "nomCommune": "NAVES" + "codePostal": "02130", + "codeCommune": "02271", + "libelleAcheminement": "DRAVEGNY", + "nomCommune": "DRAVEGNY" }, { - "codePostal": "02190", - "codeCommune": "02211", - "libelleAcheminement": "CONDE SUR SUIPPE", - "nomCommune": "CONDE SUR SUIPPE" + "codePostal": "14280", + "codeCommune": "14587", + "libelleAcheminement": "ST GERMAIN LA BLANCHE HERBE", + "nomCommune": "ST GERMAIN LA BLANCHE HERBE" }, { - "codePostal": "98742", - "codeCommune": "98731", - "libelleAcheminement": "TERRE DESERTE", - "nomCommune": "NUKU HIVA" + "codePostal": "15500", + "codeCommune": "15043", + "libelleAcheminement": "CHARMENSAC", + "nomCommune": "CHARMENSAC" }, { - "codePostal": "03310", - "codeCommune": "03195", - "libelleAcheminement": "NERIS LES BAINS", - "nomCommune": "NERIS LES BAINS" + "codePostal": "01800", + "codeCommune": "01198", + "libelleAcheminement": "JOYEUX", + "nomCommune": "JOYEUX" }, { - "codePostal": "02330", - "codeCommune": "02213", - "libelleAcheminement": "CONNIGIS", - "nomCommune": "CONNIGIS" + "codePostal": "02210", + "codeCommune": "02272", + "libelleAcheminement": "DROIZY", + "nomCommune": "DROIZY" }, { - "codePostal": "98748", - "codeCommune": "98731", - "libelleAcheminement": "HATIHEU", - "nomCommune": "NUKU HIVA" + "codePostal": "14520", + "codeCommune": "14591", + "libelleAcheminement": "AURE SUR MER", + "nomCommune": "AURE SUR MER" }, { - "codePostal": "03250", - "codeCommune": "03201", - "libelleAcheminement": "NIZEROLLES", - "nomCommune": "NIZEROLLES" + "codePostal": "15700", + "codeCommune": "15046", + "libelleAcheminement": "CHAUSSENAC", + "nomCommune": "CHAUSSENAC" }, { - "codePostal": "02600", - "codeCommune": "02216", - "libelleAcheminement": "CORCY", - "nomCommune": "CORCY" + "codePostal": "01150", + "codeCommune": "01202", + "libelleAcheminement": "LAGNIEU", + "nomCommune": "LAGNIEU" }, { - "codePostal": "98796", - "codeCommune": "98731", - "libelleAcheminement": "HATUTAA", - "nomCommune": "NUKU HIVA" + "codePostal": "02480", + "codeCommune": "02273", + "libelleAcheminement": "DURY", + "nomCommune": "DURY" }, { - "codePostal": "03120", - "codeCommune": "03205", - "libelleAcheminement": "PERIGNY", - "nomCommune": "PERIGNY" + "codePostal": "14220", + "codeCommune": "14603", + "libelleAcheminement": "ST LAURENT DE CONDEL", + "nomCommune": "ST LAURENT DE CONDEL" }, { - "codePostal": "02840", - "codeCommune": "02218", - "libelleAcheminement": "COUCY LES EPPES", - "nomCommune": "COUCY LES EPPES" + "codePostal": "15320", + "codeCommune": "15051", + "libelleAcheminement": "CLAVIERES", + "nomCommune": "CLAVIERES" }, { - "codePostal": "98774", - "codeCommune": "98737", - "libelleAcheminement": "TEONEMAHINA", - "nomCommune": "PUKAPUKA" + "codePostal": "01680", + "codeCommune": "01219", + "libelleAcheminement": "LOMPNAS", + "nomCommune": "LOMPNAS" }, { - "codePostal": "03380", - "codeCommune": "03212", - "libelleAcheminement": "QUINSSAINES", - "nomCommune": "QUINSSAINES" + "codePostal": "02400", + "codeCommune": "02279", + "libelleAcheminement": "EPAUX BEZU", + "nomCommune": "EPAUX BEZU" }, { - "codePostal": "02130", - "codeCommune": "02220", - "libelleAcheminement": "COULONGES COHAN", - "nomCommune": "COULONGES COHAN" + "codePostal": "14290", + "codeCommune": "14621", + "libelleAcheminement": "ST MARTIN BIENFAITE CRESSONNIERE", + "nomCommune": "ST MARTIN DE BIENFAITE LA CRESSONNIERE" }, { - "codePostal": "98777", - "codeCommune": "98740", - "libelleAcheminement": "PAHUA", - "nomCommune": "RANGIROA" + "codePostal": "15400", + "codeCommune": "15052", + "libelleAcheminement": "COLLANDRES", + "nomCommune": "COLLANDRES" }, { - "codePostal": "03160", - "codeCommune": "03218", - "libelleAcheminement": "ST AUBIN LE MONIAL", - "nomCommune": "ST AUBIN LE MONIAL" + "codePostal": "01300", + "codeCommune": "01227", + "libelleAcheminement": "MAGNIEU", + "nomCommune": "MAGNIEU" }, { - "codePostal": "02330", - "codeCommune": "02223", - "libelleAcheminement": "COURBOIN", - "nomCommune": "COURBOIN" + "codePostal": "02840", + "codeCommune": "02282", + "libelleAcheminement": "EPPES", + "nomCommune": "EPPES" }, { - "codePostal": "98751", - "codeCommune": "98741", - "libelleAcheminement": "AHUREI", - "nomCommune": "RAPA" + "codePostal": "14320", + "codeCommune": "14623", + "libelleAcheminement": "ST MARTIN DE FONTENAY", + "nomCommune": "ST MARTIN DE FONTENAY" }, { - "codePostal": "03800", - "codeCommune": "03220", - "libelleAcheminement": "ST BONNET DE ROCHEFORT", - "nomCommune": "ST BONNET DE ROCHEFORT" + "codePostal": "15130", + "codeCommune": "15058", + "libelleAcheminement": "CROS DE RONESQUE", + "nomCommune": "CROS DE RONESQUE" }, { - "codePostal": "02220", - "codeCommune": "02224", - "libelleAcheminement": "COURCELLES SUR VESLE", - "nomCommune": "COURCELLES SUR VESLE" + "codePostal": "01370", + "codeCommune": "01241", + "libelleAcheminement": "MEILLONNAS", + "nomCommune": "MEILLONNAS" }, { - "codePostal": "98794", - "codeCommune": "98741", - "libelleAcheminement": "MAROTIRI", - "nomCommune": "RAPA" + "codePostal": "02100", + "codeCommune": "02288", + "libelleAcheminement": "ESSIGNY LE PETIT", + "nomCommune": "ESSIGNY LE PETIT" }, { - "codePostal": "03110", - "codeCommune": "03227", - "libelleAcheminement": "ST DIDIER LA FORET", - "nomCommune": "ST DIDIER LA FORET" + "codePostal": "14100", + "codeCommune": "14648", + "libelleAcheminement": "ST PIERRE DES IFS", + "nomCommune": "ST PIERRE DES IFS" }, { - "codePostal": "02130", - "codeCommune": "02227", - "libelleAcheminement": "COURMONT", - "nomCommune": "COURMONT" + "codePostal": "15300", + "codeCommune": "15061", + "libelleAcheminement": "DIENNE", + "nomCommune": "DIENNE" }, { - "codePostal": "98753", - "codeCommune": "98744", - "libelleAcheminement": "MOERAI", - "nomCommune": "RURUTU" + "codePostal": "01660", + "codeCommune": "01246", + "libelleAcheminement": "MEZERIAT", + "nomCommune": "MEZERIAT" }, { - "codePostal": "03300", - "codeCommune": "03230", - "libelleAcheminement": "ST ETIENNE DE VICQ", - "nomCommune": "ST ETIENNE DE VICQ" + "codePostal": "02400", + "codeCommune": "02292", + "libelleAcheminement": "ETAMPES SUR MARNE", + "nomCommune": "ETAMPES SUR MARNE" }, { - "codePostal": "02220", - "codeCommune": "02230", - "libelleAcheminement": "COUVRELLES", - "nomCommune": "COUVRELLES" + "codePostal": "14450", + "codeCommune": "14652", + "libelleAcheminement": "ST PIERRE DU MONT", + "nomCommune": "ST PIERRE DU MONT" }, { - "codePostal": "98733", - "codeCommune": "98745", - "libelleAcheminement": "TIVA", - "nomCommune": "TAHAA" + "codePostal": "15200", + "codeCommune": "15079", + "libelleAcheminement": "JALEYRAC", + "nomCommune": "JALEYRAC" }, { - "codePostal": "03150", - "codeCommune": "03235", - "libelleAcheminement": "ST GERAND LE PUY", - "nomCommune": "ST GERAND LE PUY" + "codePostal": "01600", + "codeCommune": "01250", + "libelleAcheminement": "MISERIEUX", + "nomCommune": "MISERIEUX" }, { - "codePostal": "02120", - "codeCommune": "02244", - "libelleAcheminement": "CRUPILLY", - "nomCommune": "CRUPILLY" + "codePostal": "02580", + "codeCommune": "02295", + "libelleAcheminement": "ETREAUPONT", + "nomCommune": "ETREAUPONT" }, { - "codePostal": "98734", - "codeCommune": "98745", - "libelleAcheminement": "HAAMENE", - "nomCommune": "TAHAA" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "03130", - "codeCommune": "03239", - "libelleAcheminement": "ST LEGER SUR VOUZANCE", - "nomCommune": "ST LEGER SUR VOUZANCE" + "codePostal": "15300", + "codeCommune": "15101", + "libelleAcheminement": "LAVEISSIERE", + "nomCommune": "LAVEISSIERE" }, { - "codePostal": "02600", - "codeCommune": "02254", - "libelleAcheminement": "CUTRY", - "nomCommune": "CUTRY" + "codePostal": "01460", + "codeCommune": "01267", + "libelleAcheminement": "NURIEUX VOLOGNAT", + "nomCommune": "NURIEUX VOLOGNAT" }, { - "codePostal": "98734", - "codeCommune": "98745", - "libelleAcheminement": "FAAAHA", - "nomCommune": "TAHAA" + "codePostal": "02600", + "codeCommune": "02302", + "libelleAcheminement": "FAVEROLLES", + "nomCommune": "FAVEROLLES" }, { - "codePostal": "42620", - "codeCommune": "03250", - "libelleAcheminement": "ST PIERRE LAVAL", - "nomCommune": "ST PIERRE LAVAL" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "02470", - "codeCommune": "02258", - "libelleAcheminement": "DAMMARD", - "nomCommune": "DAMMARD" + "codePostal": "15300", + "codeCommune": "15101", + "libelleAcheminement": "LAVEISSIERE", + "nomCommune": "LAVEISSIERE" }, { - "codePostal": "98719", - "codeCommune": "98747", - "libelleAcheminement": "TARAVAO", - "nomCommune": "TAIARAPU EST" + "codePostal": "01700", + "codeCommune": "01275", + "libelleAcheminement": "NEYRON", + "nomCommune": "NEYRON" }, { - "codePostal": "03110", - "codeCommune": "03258", - "libelleAcheminement": "ST REMY EN ROLLAT", - "nomCommune": "ST REMY EN ROLLAT" + "codePostal": "02130", + "codeCommune": "02305", + "libelleAcheminement": "FERE EN TARDENOIS", + "nomCommune": "FERE EN TARDENOIS" }, { - "codePostal": "02220", - "codeCommune": "02263", - "libelleAcheminement": "DHUIZEL", - "nomCommune": "DHUIZEL" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "98790", - "codeCommune": "98749", - "libelleAcheminement": "TIKEI", - "nomCommune": "TAKAROA" + "codePostal": "15320", + "codeCommune": "15108", + "libelleAcheminement": "VAL D ARCOMIE", + "nomCommune": "VAL D ARCOMIE" }, { - "codePostal": "03270", - "codeCommune": "03264", - "libelleAcheminement": "ST YORRE", - "nomCommune": "ST YORRE" + "codePostal": "01230", + "codeCommune": "01279", + "libelleAcheminement": "ONCIEU", + "nomCommune": "ONCIEU" }, { - "codePostal": "02480", - "codeCommune": "02273", - "libelleAcheminement": "DURY", - "nomCommune": "DURY" + "codePostal": "02520", + "codeCommune": "02315", + "libelleAcheminement": "FLAVY LE MARTEL", + "nomCommune": "FLAVY LE MARTEL" }, { - "codePostal": "98735", - "codeCommune": "98754", - "libelleAcheminement": "TEHURUI", - "nomCommune": "TUMARAA" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "03470", - "codeCommune": "03265", - "libelleAcheminement": "SALIGNY SUR ROUDON", - "nomCommune": "SALIGNY SUR ROUDON" + "codePostal": "15230", + "codeCommune": "15112", + "libelleAcheminement": "MALBO", + "nomCommune": "MALBO" }, { - "codePostal": "02400", - "codeCommune": "02279", - "libelleAcheminement": "EPAUX BEZU", - "nomCommune": "EPAUX BEZU" + "codePostal": "01430", + "codeCommune": "01282", + "libelleAcheminement": "OUTRIAZ", + "nomCommune": "OUTRIAZ" }, { - "codePostal": "98746", - "codeCommune": "98757", - "libelleAcheminement": "HAKAMAII", - "nomCommune": "UA POU" + "codePostal": "02670", + "codeCommune": "02318", + "libelleAcheminement": "FOLEMBRAY", + "nomCommune": "FOLEMBRAY" }, { - "codePostal": "03800", - "codeCommune": "03268", - "libelleAcheminement": "SAULZET", - "nomCommune": "SAULZET" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "02400", - "codeCommune": "02280", - "libelleAcheminement": "EPIEDS", - "nomCommune": "EPIEDS" + "codePostal": "15590", + "codeCommune": "15113", + "libelleAcheminement": "MANDAILLES ST JULIEN", + "nomCommune": "MANDAILLES ST JULIEN" }, { - "codePostal": "98811", - "codeCommune": "98801", - "libelleAcheminement": "BELEP", - "nomCommune": "BELEP" + "codePostal": "01300", + "codeCommune": "01286", + "libelleAcheminement": "PARVES ET NATTAGES", + "nomCommune": "PARVES ET NATTAGES" }, { - "codePostal": "03260", - "codeCommune": "03273", - "libelleAcheminement": "SEUILLET", - "nomCommune": "SEUILLET" + "codePostal": "02110", + "codeCommune": "02322", + "libelleAcheminement": "FONTAINE NOTRE DAME", + "nomCommune": "FONTAINE NOTRE DAME" }, { - "codePostal": "02840", - "codeCommune": "02282", - "libelleAcheminement": "EPPES", - "nomCommune": "EPPES" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "98870", - "codeCommune": "98803", - "libelleAcheminement": "BOURAIL", - "nomCommune": "BOURAIL" + "codePostal": "15190", + "codeCommune": "15114", + "libelleAcheminement": "MARCENAT", + "nomCommune": "MARCENAT" }, { - "codePostal": "03220", - "codeCommune": "03284", - "libelleAcheminement": "THIONNE", - "nomCommune": "THIONNE" + "codePostal": "01960", + "codeCommune": "01289", + "libelleAcheminement": "PERONNAS", + "nomCommune": "PERONNAS" }, { - "codePostal": "02260", - "codeCommune": "02284", - "libelleAcheminement": "ERLOY", - "nomCommune": "ERLOY" + "codePostal": "02820", + "codeCommune": "02349", + "libelleAcheminement": "GOUDELANCOURT LES BERRIEUX", + "nomCommune": "GOUDELANCOURT LES BERRIEUX" }, { - "codePostal": "98837", - "codeCommune": "98805", - "libelleAcheminement": "DUMBEA", - "nomCommune": "DUMBEA" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "03190", - "codeCommune": "03297", - "libelleAcheminement": "VALLON EN SULLY", - "nomCommune": "VALLON EN SULLY" + "codePostal": "15250", + "codeCommune": "15118", + "libelleAcheminement": "MARMANHAC", + "nomCommune": "MARMANHAC" }, { - "codePostal": "02100", - "codeCommune": "02288", - "libelleAcheminement": "ESSIGNY LE PETIT", - "nomCommune": "ESSIGNY LE PETIT" + "codePostal": "01300", + "codeCommune": "01294", + "libelleAcheminement": "PEYRIEU", + "nomCommune": "PEYRIEU" }, { - "codePostal": "98839", - "codeCommune": "98805", - "libelleAcheminement": "DUMBEA", - "nomCommune": "DUMBEA" + "codePostal": "02130", + "codeCommune": "02351", + "libelleAcheminement": "GOUSSANCOURT", + "nomCommune": "GOUSSANCOURT" }, { - "codePostal": "03190", - "codeCommune": "03301", - "libelleAcheminement": "VAUX", - "nomCommune": "VAUX" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "02420", - "codeCommune": "02291", - "libelleAcheminement": "ESTREES", - "nomCommune": "ESTREES" + "codePostal": "15200", + "codeCommune": "15120", + "libelleAcheminement": "MAURIAC", + "nomCommune": "MAURIAC" }, { - "codePostal": "98816", - "codeCommune": "98808", - "libelleAcheminement": "HOUAILOU", - "nomCommune": "HOUAILOU" + "codePostal": "01270", + "codeCommune": "01296", + "libelleAcheminement": "PIRAJOUX", + "nomCommune": "PIRAJOUX" }, { - "codePostal": "03190", - "codeCommune": "03303", - "libelleAcheminement": "VENAS", - "nomCommune": "VENAS" + "codePostal": "02420", + "codeCommune": "02352", + "libelleAcheminement": "GOUY", + "nomCommune": "GOUY" }, { - "codePostal": "02590", - "codeCommune": "02296", - "libelleAcheminement": "ETREILLERS", - "nomCommune": "ETREILLERS" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "98860", - "codeCommune": "98811", - "libelleAcheminement": "KONE", - "nomCommune": "KONE" + "codePostal": "15110", + "codeCommune": "15121", + "libelleAcheminement": "MAURINES", + "nomCommune": "MAURINES" }, { - "codePostal": "03200", - "codeCommune": "03306", - "libelleAcheminement": "LE VERNET", - "nomCommune": "LE VERNET" + "codePostal": "01330", + "codeCommune": "01299", + "libelleAcheminement": "LE PLANTAY", + "nomCommune": "LE PLANTAY" }, { "codePostal": "02100", - "codeCommune": "02303", - "libelleAcheminement": "FAYET", - "nomCommune": "FAYET" - }, - { - "codePostal": "98850", - "codeCommune": "98812", - "libelleAcheminement": "KOUMAC", - "nomCommune": "KOUMAC" - }, - { - "codePostal": "03500", - "codeCommune": "03307", - "libelleAcheminement": "VERNEUIL EN BOURBONNAIS", - "nomCommune": "VERNEUIL EN BOURBONNAIS" + "codeCommune": "02371", + "libelleAcheminement": "HARLY", + "nomCommune": "HARLY" }, { - "codePostal": "02450", - "codeCommune": "02308", - "libelleAcheminement": "FESMY LE SART", - "nomCommune": "FESMY LE SART" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "98809", - "codeCommune": "98817", - "libelleAcheminement": "MONT DORE", - "nomCommune": "LE MONT DORE" + "codePostal": "15200", + "codeCommune": "15123", + "libelleAcheminement": "MEALLET", + "nomCommune": "MEALLET" }, { - "codePostal": "03430", - "codeCommune": "03312", - "libelleAcheminement": "VIEURE", - "nomCommune": "VIEURE" + "codePostal": "01160", + "codeCommune": "01314", + "libelleAcheminement": "PRIAY", + "nomCommune": "PRIAY" }, { - "codePostal": "02000", - "codeCommune": "02311", - "libelleAcheminement": "FILAIN", - "nomCommune": "FILAIN" + "codePostal": "02120", + "codeCommune": "02379", + "libelleAcheminement": "LE HERIE LA VIEVILLE", + "nomCommune": "LE HERIE LA VIEVILLE" }, { - "codePostal": "98814", - "codeCommune": "98820", - "libelleAcheminement": "FAYAOUE", - "nomCommune": "OUVEA" + "codePostal": "14640", + "codeCommune": "14660", + "libelleAcheminement": "ST VAAST EN AUGE", + "nomCommune": "ST VAAST EN AUGE" }, { - "codePostal": "03430", - "codeCommune": "03315", - "libelleAcheminement": "VILLEFRANCHE D ALLIER", - "nomCommune": "VILLEFRANCHE D ALLIER" + "codePostal": "15500", + "codeCommune": "15127", + "libelleAcheminement": "MOLOMPIZE", + "nomCommune": "MOLOMPIZE" }, { - "codePostal": "02520", - "codeCommune": "02315", - "libelleAcheminement": "FLAVY LE MARTEL", - "nomCommune": "FLAVY LE MARTEL" + "codePostal": "01250", + "codeCommune": "01321", + "libelleAcheminement": "REVONNAS", + "nomCommune": "REVONNAS" }, { - "codePostal": "98826", - "codeCommune": "98826", - "libelleAcheminement": "POUM", - "nomCommune": "POUM" + "codePostal": "02720", + "codeCommune": "02383", + "libelleAcheminement": "HOMBLIERES", + "nomCommune": "HOMBLIERES" }, { - "codePostal": "03160", - "codeCommune": "03320", - "libelleAcheminement": "YGRANDE", - "nomCommune": "YGRANDE" + "codePostal": "14121", + "codeCommune": "14665", + "libelleAcheminement": "SALLENELLES", + "nomCommune": "SALLENELLES" }, { - "codePostal": "02590", - "codeCommune": "02317", - "libelleAcheminement": "FLUQUIERES", - "nomCommune": "FLUQUIERES" + "codePostal": "15190", + "codeCommune": "15129", + "libelleAcheminement": "MONTBOUDIF", + "nomCommune": "MONTBOUDIF" }, { - "codePostal": "98883", - "codeCommune": "98831", - "libelleAcheminement": "OUACO", - "nomCommune": "VOH" + "codePostal": "01120", + "codeCommune": "01342", + "libelleAcheminement": "STE CROIX", + "nomCommune": "STE CROIX" }, { - "codePostal": "04510", - "codeCommune": "04001", - "libelleAcheminement": "AIGLUN", - "nomCommune": "AIGLUN" + "codePostal": "02420", + "codeCommune": "02392", + "libelleAcheminement": "JONCOURT", + "nomCommune": "JONCOURT" }, { - "codePostal": "02670", - "codeCommune": "02318", - "libelleAcheminement": "FOLEMBRAY", - "nomCommune": "FOLEMBRAY" + "codePostal": "14940", + "codeCommune": "14666", + "libelleAcheminement": "SANNERVILLE", + "nomCommune": "SANNERVILLE" }, { - "codePostal": "98818", - "codeCommune": "98833", - "libelleAcheminement": "KOUAOUA", - "nomCommune": "KOUAOUA" + "codePostal": "15300", + "codeCommune": "15138", + "libelleAcheminement": "MURAT", + "nomCommune": "MURAT" }, { - "codePostal": "04500", - "codeCommune": "04004", - "libelleAcheminement": "ALLEMAGNE EN PROVENCE", - "nomCommune": "ALLEMAGNE EN PROVENCE" + "codePostal": "01340", + "codeCommune": "01346", + "libelleAcheminement": "ST DIDIER D AUSSIAT", + "nomCommune": "ST DIDIER D AUSSIAT" }, { - "codePostal": "02110", - "codeCommune": "02319", - "libelleAcheminement": "FONSOMME", - "nomCommune": "FONSOMME" + "codePostal": "02000", + "codeCommune": "02408", + "libelleAcheminement": "LAON", + "nomCommune": "LAON" }, { - "codePostal": "04170", - "codeCommune": "04005", - "libelleAcheminement": "ALLONS", - "nomCommune": "ALLONS" + "codePostal": "14240", + "codeCommune": "14672", + "libelleAcheminement": "VAL DE DROME", + "nomCommune": "VAL DE DROME" }, { - "codePostal": "02140", - "codeCommune": "02321", - "libelleAcheminement": "FONTAINE LES VERVINS", - "nomCommune": "FONTAINE LES VERVINS" + "codePostal": "15250", + "codeCommune": "15140", + "libelleAcheminement": "NAUCELLES", + "nomCommune": "NAUCELLES" }, { - "codePostal": "04260", - "codeCommune": "04006", - "libelleAcheminement": "ALLOS", - "nomCommune": "ALLOS" + "codePostal": "01600", + "codeCommune": "01347", + "libelleAcheminement": "ST DIDIER DE FORMANS", + "nomCommune": "ST DIDIER DE FORMANS" }, { - "codePostal": "02290", - "codeCommune": "02326", - "libelleAcheminement": "FONTENOY", - "nomCommune": "FONTENOY" + "codePostal": "02210", + "codeCommune": "02411", + "libelleAcheminement": "LATILLY", + "nomCommune": "LATILLY" }, { - "codePostal": "04200", - "codeCommune": "04013", - "libelleAcheminement": "AUBIGNOSC", - "nomCommune": "AUBIGNOSC" + "codePostal": "14190", + "codeCommune": "14674", + "libelleAcheminement": "SOIGNOLLES", + "nomCommune": "SOIGNOLLES" }, { - "codePostal": "02810", - "codeCommune": "02339", - "libelleAcheminement": "GANDELU", - "nomCommune": "GANDELU" + "codePostal": "15300", + "codeCommune": "15141", + "libelleAcheminement": "NEUSSARGUES EN PINATELLE", + "nomCommune": "NEUSSARGUES EN PINATELLE" }, { - "codePostal": "04140", - "codeCommune": "04020", - "libelleAcheminement": "BARLES", - "nomCommune": "BARLES" + "codePostal": "01300", + "codeCommune": "01358", + "libelleAcheminement": "ST GERMAIN LES PAROISSES", + "nomCommune": "ST GERMAIN LES PAROISSES" }, { - "codePostal": "02400", - "codeCommune": "02347", - "libelleAcheminement": "GLAND", - "nomCommune": "GLAND" + "codePostal": "02600", + "codeCommune": "02415", + "libelleAcheminement": "LAVERSINE", + "nomCommune": "LAVERSINE" }, { - "codePostal": "04370", - "codeCommune": "04025", - "libelleAcheminement": "BEAUVEZER", - "nomCommune": "BEAUVEZER" + "codePostal": "14420", + "codeCommune": "14678", + "libelleAcheminement": "SOUMONT ST QUENTIN", + "nomCommune": "SOUMONT ST QUENTIN" }, { - "codePostal": "02820", - "codeCommune": "02349", - "libelleAcheminement": "GOUDELANCOURT LES BERRIEUX", - "nomCommune": "GOUDELANCOURT LES BERRIEUX" + "codePostal": "15260", + "codeCommune": "15142", + "libelleAcheminement": "NEUVEGLISE SUR TRUYERE", + "nomCommune": "NEUVEGLISE SUR TRUYERE" }, { - "codePostal": "04330", - "codeCommune": "04030", - "libelleAcheminement": "BLIEUX", - "nomCommune": "BLIEUX" + "codePostal": "01750", + "codeCommune": "01370", + "libelleAcheminement": "ST LAURENT SUR SAONE", + "nomCommune": "ST LAURENT SUR SAONE" }, { - "codePostal": "02350", - "codeCommune": "02350", - "libelleAcheminement": "GOUDELANCOURT LES PIERREPONT", - "nomCommune": "GOUDELANCOURT LES PIERREPONT" + "codePostal": "02420", + "codeCommune": "02417", + "libelleAcheminement": "LEMPIRE", + "nomCommune": "LEMPIRE" }, { - "codePostal": "04240", - "codeCommune": "04032", - "libelleAcheminement": "BRAUX", - "nomCommune": "BRAUX" + "codePostal": "14400", + "codeCommune": "14679", + "libelleAcheminement": "SUBLES", + "nomCommune": "SUBLES" }, { - "codePostal": "02130", - "codeCommune": "02351", - "libelleAcheminement": "GOUSSANCOURT", - "nomCommune": "GOUSSANCOURT" + "codePostal": "15150", + "codeCommune": "15143", + "libelleAcheminement": "NIEUDAN", + "nomCommune": "NIEUDAN" }, { - "codePostal": "04420", - "codeCommune": "04036", - "libelleAcheminement": "LE BRUSQUET", - "nomCommune": "LE BRUSQUET" + "codePostal": "01430", + "codeCommune": "01373", + "libelleAcheminement": "ST MARTIN DU FRENE", + "nomCommune": "ST MARTIN DU FRENE" }, { "codePostal": "02120", - "codeCommune": "02361", - "libelleAcheminement": "GUISE", - "nomCommune": "GUISE" - }, - { - "codePostal": "04120", - "codeCommune": "04039", - "libelleAcheminement": "CASTELLANE", - "nomCommune": "CASTELLANE" - }, - { - "codePostal": "02300", - "codeCommune": "02363", - "libelleAcheminement": "GUNY", - "nomCommune": "GUNY" + "codeCommune": "02422", + "libelleAcheminement": "LESQUIELLES ST GERMAIN", + "nomCommune": "LESQUIELLES ST GERMAIN" }, { - "codePostal": "04120", - "codeCommune": "04039", - "libelleAcheminement": "CASTELLANE", - "nomCommune": "CASTELLANE" + "codePostal": "14400", + "codeCommune": "14680", + "libelleAcheminement": "SULLY", + "nomCommune": "SULLY" }, { - "codePostal": "02510", - "codeCommune": "02366", - "libelleAcheminement": "HANNAPES", - "nomCommune": "HANNAPES" + "codePostal": "15230", + "codeCommune": "15149", + "libelleAcheminement": "PAULHENC", + "nomCommune": "PAULHENC" }, { - "codePostal": "04320", - "codeCommune": "04043", - "libelleAcheminement": "VAL DE CHALVAGNE", - "nomCommune": "VAL DE CHALVAGNE" + "codePostal": "01160", + "codeCommune": "01374", + "libelleAcheminement": "ST MARTIN DU MONT", + "nomCommune": "ST MARTIN DU MONT" }, { - "codePostal": "02480", - "codeCommune": "02367", - "libelleAcheminement": "HAPPENCOURT", - "nomCommune": "HAPPENCOURT" + "codePostal": "02810", + "codeCommune": "02428", + "libelleAcheminement": "LICY CLIGNON", + "nomCommune": "LICY CLIGNON" }, { - "codePostal": "04250", - "codeCommune": "04050", - "libelleAcheminement": "CHATEAUFORT", - "nomCommune": "CHATEAUFORT" + "codePostal": "14250", + "codeCommune": "14684", + "libelleAcheminement": "TESSEL", + "nomCommune": "TESSEL" }, { - "codePostal": "02210", - "codeCommune": "02372", - "libelleAcheminement": "HARTENNES ET TAUX", - "nomCommune": "HARTENNES ET TAUX" + "codePostal": "15170", + "codeCommune": "15151", + "libelleAcheminement": "PEYRUSSE", + "nomCommune": "PEYRUSSE" }, { - "codePostal": "04200", - "codeCommune": "04051", - "libelleAcheminement": "CHATEAUNEUF MIRAVAIL", - "nomCommune": "CHATEAUNEUF MIRAVAIL" + "codePostal": "01310", + "codeCommune": "01375", + "libelleAcheminement": "ST MARTIN LE CHATEL", + "nomCommune": "ST MARTIN LE CHATEL" }, { "codePostal": "02500", - "codeCommune": "02378", - "libelleAcheminement": "LA HERIE", - "nomCommune": "LA HERIE" - }, - { - "codePostal": "04250", - "codeCommune": "04057", - "libelleAcheminement": "CLAMENSANE", - "nomCommune": "CLAMENSANE" - }, - { - "codePostal": "02760", - "codeCommune": "02382", - "libelleAcheminement": "HOLNON", - "nomCommune": "HOLNON" - }, - { - "codePostal": "04370", - "codeCommune": "04061", - "libelleAcheminement": "COLMARS LES ALPES", - "nomCommune": "COLMARS" - }, - { - "codePostal": "02880", - "codeCommune": "02398", - "libelleAcheminement": "JUVIGNY", - "nomCommune": "JUVIGNY" - }, - { - "codePostal": "04530", - "codeCommune": "04062", - "libelleAcheminement": "LA CONDAMINE CHATELARD", - "nomCommune": "LA CONDAMINE CHATELARD" - }, - { - "codePostal": "02880", - "codeCommune": "02400", - "libelleAcheminement": "LAFFAUX", - "nomCommune": "LAFFAUX" + "codeCommune": "02435", + "libelleAcheminement": "LOGNY LES AUBENTON", + "nomCommune": "LOGNY LES AUBENTON" }, { - "codePostal": "04200", - "codeCommune": "04067", - "libelleAcheminement": "CUREL", - "nomCommune": "CUREL" + "codePostal": "14220", + "codeCommune": "14689", + "libelleAcheminement": "THURY HARCOURT LE HOM", + "nomCommune": "THURY HARCOURT LE HOM" }, { - "codePostal": "02380", - "codeCommune": "02406", - "libelleAcheminement": "LANDRICOURT", - "nomCommune": "LANDRICOURT" + "codePostal": "15230", + "codeCommune": "15152", + "libelleAcheminement": "PIERREFORT", + "nomCommune": "PIERREFORT" }, { - "codePostal": "04000", - "codeCommune": "04070", - "libelleAcheminement": "DIGNE LES BAINS", - "nomCommune": "DIGNE LES BAINS" + "codePostal": "01800", + "codeCommune": "01378", + "libelleAcheminement": "ST MAURICE DE GOURDANS", + "nomCommune": "ST MAURICE DE GOURDANS" }, { - "codePostal": "02210", - "codeCommune": "02412", - "libelleAcheminement": "LAUNOY", - "nomCommune": "LAUNOY" + "codePostal": "02160", + "codeCommune": "02439", + "libelleAcheminement": "LES SEPTVALLONS", + "nomCommune": "LES SEPTVALLONS" }, { - "codePostal": "04400", - "codeCommune": "04073", - "libelleAcheminement": "ENCHASTRAYES", - "nomCommune": "ENCHASTRAYES" + "codePostal": "14220", + "codeCommune": "14689", + "libelleAcheminement": "THURY HARCOURT LE HOM", + "nomCommune": "THURY HARCOURT LE HOM" }, { - "codePostal": "02340", - "codeCommune": "02433", - "libelleAcheminement": "LISLET", - "nomCommune": "LISLET" + "codePostal": "15700", + "codeCommune": "15153", + "libelleAcheminement": "PLEAUX", + "nomCommune": "PLEAUX" }, { - "codePostal": "04200", - "codeCommune": "04075", - "libelleAcheminement": "ENTREPIERRES", - "nomCommune": "ENTREPIERRES" + "codePostal": "01500", + "codeCommune": "01379", + "libelleAcheminement": "ST MAURICE DE REMENS", + "nomCommune": "ST MAURICE DE REMENS" }, { "codePostal": "02160", @@ -50052,22 +50082,22 @@ "nomCommune": "LES SEPTVALLONS" }, { - "codePostal": "04800", - "codeCommune": "04081", - "libelleAcheminement": "ESPARRON DE VERDON", - "nomCommune": "ESPARRON DE VERDON" + "codePostal": "14210", + "codeCommune": "14707", + "libelleAcheminement": "TOURVILLE SUR ODON", + "nomCommune": "TOURVILLE SUR ODON" }, { - "codePostal": "02160", - "codeCommune": "02439", - "libelleAcheminement": "LES SEPTVALLONS", - "nomCommune": "LES SEPTVALLONS" + "codePostal": "15600", + "codeCommune": "15157", + "libelleAcheminement": "QUEZAC", + "nomCommune": "QUEZAC" }, { - "codePostal": "04400", - "codeCommune": "04086", - "libelleAcheminement": "FAUCON DE BARCELONNETTE", - "nomCommune": "FAUCON DE BARCELONNETTE" + "codePostal": "01560", + "codeCommune": "01380", + "libelleAcheminement": "ST NIZIER LE BOUCHOUX", + "nomCommune": "ST NIZIER LE BOUCHOUX" }, { "codePostal": "02160", @@ -50076,151678 +50106,151660 @@ "nomCommune": "LES SEPTVALLONS" }, { - "codePostal": "04000", - "codeCommune": "04097", - "libelleAcheminement": "LA JAVIE", - "nomCommune": "LA JAVIE" - }, - { - "codePostal": "02130", - "codeCommune": "02442", - "libelleAcheminement": "LOUPEIGNE", - "nomCommune": "LOUPEIGNE" + "codePostal": "14117", + "codeCommune": "14709", + "libelleAcheminement": "TRACY SUR MER", + "nomCommune": "TRACY SUR MER" }, { - "codePostal": "04340", - "codeCommune": "04102", - "libelleAcheminement": "LE LAUZET UBAYE", - "nomCommune": "LE LAUZET UBAYE" + "codePostal": "15170", + "codeCommune": "15161", + "libelleAcheminement": "REZENTIERES", + "nomCommune": "REZENTIERES" }, { - "codePostal": "02120", - "codeCommune": "02450", - "libelleAcheminement": "MACQUIGNY", - "nomCommune": "MACQUIGNY" + "codePostal": "01240", + "codeCommune": "01383", + "libelleAcheminement": "ST PAUL DE VARAX", + "nomCommune": "ST PAUL DE VARAX" }, { - "codePostal": "04300", - "codeCommune": "04104", - "libelleAcheminement": "LIMANS", - "nomCommune": "LIMANS" + "codePostal": "02350", + "codeCommune": "02457", + "libelleAcheminement": "MARCHAIS", + "nomCommune": "MARCHAIS" }, { - "codePostal": "02420", - "codeCommune": "02451", - "libelleAcheminement": "MAGNY LA FOSSE", - "nomCommune": "MAGNY LA FOSSE" + "codePostal": "14690", + "codeCommune": "14710", + "libelleAcheminement": "TREPREL", + "nomCommune": "TREPREL" }, { - "codePostal": "04420", - "codeCommune": "04113", - "libelleAcheminement": "MARCOUX", - "nomCommune": "MARCOUX" + "codePostal": "15150", + "codeCommune": "15165", + "libelleAcheminement": "ROUFFIAC", + "nomCommune": "ROUFFIAC" }, { - "codePostal": "02490", - "codeCommune": "02452", - "libelleAcheminement": "MAISSEMY", - "nomCommune": "MAISSEMY" + "codePostal": "01310", + "codeCommune": "01385", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "04190", - "codeCommune": "04116", - "libelleAcheminement": "LES MEES", - "nomCommune": "LES MEES" + "codePostal": "02540", + "codeCommune": "02458", + "libelleAcheminement": "DHUYS ET MORIN EN BRIE", + "nomCommune": "DHUYS ET MORIN EN BRIE" }, { - "codePostal": "02810", - "codeCommune": "02465", - "libelleAcheminement": "MARIGNY EN ORXOIS", - "nomCommune": "MARIGNY EN ORXOIS" + "codePostal": "14710", + "codeCommune": "14711", + "libelleAcheminement": "TREVIERES", + "nomCommune": "TREVIERES" }, { - "codePostal": "04140", - "codeCommune": "04126", - "libelleAcheminement": "MONTCLAR", - "nomCommune": "MONTCLAR" + "codePostal": "15290", + "codeCommune": "15166", + "libelleAcheminement": "ROUMEGOUX", + "nomCommune": "ROUMEGOUX" }, { - "codePostal": "02470", - "codeCommune": "02466", - "libelleAcheminement": "MARIZY STE GENEVIEVE", - "nomCommune": "MARIZY STE GENEVIEVE" + "codePostal": "01560", + "codeCommune": "01388", + "libelleAcheminement": "ST TRIVIER DE COURTES", + "nomCommune": "ST TRIVIER DE COURTES" }, { - "codePostal": "04110", - "codeCommune": "04128", - "libelleAcheminement": "MONTFURON", - "nomCommune": "MONTFURON" + "codePostal": "02250", + "codeCommune": "02460", + "libelleAcheminement": "MARCY SOUS MARLE", + "nomCommune": "MARCY SOUS MARLE" }, { - "codePostal": "02470", - "codeCommune": "02467", - "libelleAcheminement": "MARIZY ST MARD", - "nomCommune": "MARIZY ST MARD" + "codePostal": "14670", + "codeCommune": "14712", + "libelleAcheminement": "TROARN", + "nomCommune": "TROARN" }, { - "codePostal": "04170", - "codeCommune": "04136", - "libelleAcheminement": "LA MURE ARGENS", - "nomCommune": "LA MURE ARGENS" + "codePostal": "15140", + "codeCommune": "15174", + "libelleAcheminement": "ST BONNET DE SALERS", + "nomCommune": "ST BONNET DE SALERS" }, { - "codePostal": "02240", - "codeCommune": "02483", - "libelleAcheminement": "MEZIERES SUR OISE", - "nomCommune": "MEZIERES SUR OISE" + "codePostal": "01990", + "codeCommune": "01389", + "libelleAcheminement": "ST TRIVIER SUR MOIGNANS", + "nomCommune": "ST TRIVIER SUR MOIGNANS" }, { - "codePostal": "04250", - "codeCommune": "04137", - "libelleAcheminement": "NIBLES", - "nomCommune": "NIBLES" + "codePostal": "02140", + "codeCommune": "02463", + "libelleAcheminement": "MARFONTAINE", + "nomCommune": "MARFONTAINE" }, { - "codePostal": "02650", - "codeCommune": "02484", - "libelleAcheminement": "MEZY MOULINS", - "nomCommune": "MEZY MOULINS" + "codePostal": "14210", + "codeCommune": "14713", + "libelleAcheminement": "MONTILLIERES SUR ORNE", + "nomCommune": "MONTILLIERES SUR ORNE" }, { - "codePostal": "04200", - "codeCommune": "04139", - "libelleAcheminement": "NOYERS SUR JABRON", - "nomCommune": "NOYERS SUR JABRON" + "codePostal": "15150", + "codeCommune": "15182", + "libelleAcheminement": "ST ETIENNE CANTALES", + "nomCommune": "ST ETIENNE CANTALES" }, { - "codePostal": "02000", - "codeCommune": "02497", - "libelleAcheminement": "MONS EN LAONNOIS", - "nomCommune": "MONS EN LAONNOIS" + "codePostal": "01580", + "codeCommune": "01392", + "libelleAcheminement": "SAMOGNAT", + "nomCommune": "SAMOGNAT" }, { - "codePostal": "04230", - "codeCommune": "04141", - "libelleAcheminement": "ONGLES", - "nomCommune": "ONGLES" + "codePostal": "02880", + "codeCommune": "02464", + "libelleAcheminement": "MARGIVAL", + "nomCommune": "MARGIVAL" }, { - "codePostal": "02000", - "codeCommune": "02499", - "libelleAcheminement": "MONTBAVIN", - "nomCommune": "MONTBAVIN" + "codePostal": "14210", + "codeCommune": "14721", + "libelleAcheminement": "VACOGNES NEUILLY", + "nomCommune": "VACOGNES NEUILLY" }, { - "codePostal": "04110", - "codeCommune": "04142", - "libelleAcheminement": "OPPEDETTE", - "nomCommune": "OPPEDETTE" + "codePostal": "15310", + "codeCommune": "15191", + "libelleAcheminement": "ST ILLIDE", + "nomCommune": "ST ILLIDE" }, { - "codePostal": "02860", - "codeCommune": "02501", - "libelleAcheminement": "MONTCHALONS", - "nomCommune": "MONTCHALONS" + "codePostal": "01220", + "codeCommune": "01397", + "libelleAcheminement": "SAUVERNY", + "nomCommune": "SAUVERNY" }, { - "codePostal": "04300", - "codeCommune": "04151", - "libelleAcheminement": "PIERRERUE", - "nomCommune": "PIERRERUE" + "codePostal": "02200", + "codeCommune": "02477", + "libelleAcheminement": "MERCIN ET VAUX", + "nomCommune": "MERCIN ET VAUX" }, { - "codePostal": "02540", - "codeCommune": "02505", - "libelleAcheminement": "MONTFAUCON", - "nomCommune": "MONTFAUCON" + "codePostal": "14390", + "codeCommune": "14724", + "libelleAcheminement": "VARAVILLE", + "nomCommune": "VARAVILLE" }, { - "codePostal": "04410", - "codeCommune": "04157", - "libelleAcheminement": "PUIMOISSON", - "nomCommune": "PUIMOISSON" + "codePostal": "15800", + "codeCommune": "15192", + "libelleAcheminement": "ST JACQUES DES BLATS", + "nomCommune": "ST JACQUES DES BLATS" }, { - "codePostal": "02600", - "codeCommune": "02506", - "libelleAcheminement": "MONTGOBERT", - "nomCommune": "MONTGOBERT" + "codePostal": "01580", + "codeCommune": "01410", + "libelleAcheminement": "SONTHONNAX LA MONTAGNE", + "nomCommune": "SONTHONNAX LA MONTAGNE" }, { - "codePostal": "04500", - "codeCommune": "04158", - "libelleAcheminement": "QUINSON", - "nomCommune": "QUINSON" + "codePostal": "02270", + "codeCommune": "02480", + "libelleAcheminement": "MESBRECOURT RICHECOURT", + "nomCommune": "MESBRECOURT RICHECOURT" }, { - "codePostal": "02330", - "codeCommune": "02510", - "libelleAcheminement": "MONTHUREL", - "nomCommune": "MONTHUREL" + "codePostal": "14350", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "04110", - "codeCommune": "04160", - "libelleAcheminement": "REILLANNE", - "nomCommune": "REILLANNE" + "codePostal": "15600", + "codeCommune": "15194", + "libelleAcheminement": "ST JULIEN DE TOURSAC", + "nomCommune": "ST JULIEN DE TOURSAC" }, { - "codePostal": "02250", - "codeCommune": "02513", - "libelleAcheminement": "MONTIGNY LE FRANC", - "nomCommune": "MONTIGNY LE FRANC" + "codePostal": "01580", + "codeCommune": "01410", + "libelleAcheminement": "SONTHONNAX LA MONTAGNE", + "nomCommune": "SONTHONNAX LA MONTAGNE" }, { - "codePostal": "04270", - "codeCommune": "04181", - "libelleAcheminement": "ST JEANNET", - "nomCommune": "ST JEANNET" + "codePostal": "02720", + "codeCommune": "02481", + "libelleAcheminement": "MESNIL ST LAURENT", + "nomCommune": "MESNIL ST LAURENT" }, { - "codePostal": "02140", - "codeCommune": "02535", - "libelleAcheminement": "NAMPCELLES LA COUR", - "nomCommune": "NAMPCELLES LA COUR" + "codePostal": "14170", + "codeCommune": "14735", + "libelleAcheminement": "VENDEUVRE", + "nomCommune": "VENDEUVRE" }, { - "codePostal": "04330", - "codeCommune": "04187", - "libelleAcheminement": "ST LIONS", - "nomCommune": "ST LIONS" + "codePostal": "15110", + "codeCommune": "15199", + "libelleAcheminement": "ST MARTIAL", + "nomCommune": "ST MARTIAL" }, { - "codePostal": "02880", - "codeCommune": "02537", - "libelleAcheminement": "NANTEUIL LA FOSSE", - "nomCommune": "NANTEUIL LA FOSSE" + "codePostal": "01390", + "codeCommune": "01424", + "libelleAcheminement": "TRAMOYES", + "nomCommune": "TRAMOYES" }, { - "codePostal": "04800", - "codeCommune": "04189", - "libelleAcheminement": "ST MARTIN DE BROMES", - "nomCommune": "ST MARTIN DE BROMES" + "codePostal": "02160", + "codeCommune": "02482", + "libelleAcheminement": "MEURIVAL", + "nomCommune": "MEURIVAL" }, { - "codePostal": "02300", - "codeCommune": "02542", - "libelleAcheminement": "NEUFLIEUX", - "nomCommune": "NEUFLIEUX" + "codePostal": "14170", + "codeCommune": "14735", + "libelleAcheminement": "VENDEUVRE", + "nomCommune": "VENDEUVRE" }, { - "codePostal": "04140", - "codeCommune": "04191", - "libelleAcheminement": "ST MARTIN LES SEYNE", - "nomCommune": "ST MARTIN LES SEYNE" + "codePostal": "15500", + "codeCommune": "15203", + "libelleAcheminement": "ST MARY LE PLAIN", + "nomCommune": "ST MARY LE PLAIN" }, { - "codePostal": "02390", - "codeCommune": "02552", - "libelleAcheminement": "NEUVILLETTE", - "nomCommune": "NEUVILLETTE" + "codePostal": "01560", + "codeCommune": "01433", + "libelleAcheminement": "VERNOUX", + "nomCommune": "VERNOUX" }, { - "codePostal": "04870", - "codeCommune": "04192", - "libelleAcheminement": "ST MICHEL L OBSERVATOIRE", - "nomCommune": "ST MICHEL L OBSERVATOIRE" + "codePostal": "02200", + "codeCommune": "02485", + "libelleAcheminement": "MISSY AUX BOIS", + "nomCommune": "MISSY AUX BOIS" }, { - "codePostal": "02270", - "codeCommune": "02559", - "libelleAcheminement": "NOUVION ET CATILLON", - "nomCommune": "NOUVION ET CATILLON" + "codePostal": "14400", + "codeCommune": "14744", + "libelleAcheminement": "VIENNE EN BESSIN", + "nomCommune": "VIENNE EN BESSIN" }, { - "codePostal": "04400", - "codeCommune": "04195", - "libelleAcheminement": "ST PONS", - "nomCommune": "ST PONS" + "codePostal": "15500", + "codeCommune": "15207", + "libelleAcheminement": "ST PONCY", + "nomCommune": "ST PONCY" }, { - "codePostal": "02800", - "codeCommune": "02560", - "libelleAcheminement": "NOUVION LE COMTE", - "nomCommune": "NOUVION LE COMTE" + "codePostal": "01430", + "codeCommune": "01441", + "libelleAcheminement": "VIEU D IZENAVE", + "nomCommune": "VIEU D IZENAVE" }, { - "codePostal": "04200", - "codeCommune": "04199", - "libelleAcheminement": "ST VINCENT SUR JABRON", - "nomCommune": "ST VINCENT SUR JABRON" + "codePostal": "02880", + "codeCommune": "02487", + "libelleAcheminement": "MISSY SUR AISNE", + "nomCommune": "MISSY SUR AISNE" }, { - "codePostal": "02200", - "codeCommune": "02564", - "libelleAcheminement": "NOYANT ET ACONIN", - "nomCommune": "NOYANT ET ACONIN" + "codePostal": "14640", + "codeCommune": "14754", + "libelleAcheminement": "VILLERS SUR MER", + "nomCommune": "VILLERS SUR MER" }, { - "codePostal": "04200", - "codeCommune": "04207", - "libelleAcheminement": "SIGOYER", - "nomCommune": "SIGOYER" + "codePostal": "15600", + "codeCommune": "15212", + "libelleAcheminement": "ST SANTIN DE MAURS", + "nomCommune": "ST SANTIN DE MAURS" }, { - "codePostal": "02500", - "codeCommune": "02567", - "libelleAcheminement": "OHIS", - "nomCommune": "OHIS" + "codePostal": "01200", + "codeCommune": "01448", + "libelleAcheminement": "VILLES", + "nomCommune": "VILLES" }, { - "codePostal": "04200", - "codeCommune": "04216", - "libelleAcheminement": "THEZE", - "nomCommune": "THEZE" + "codePostal": "02000", + "codeCommune": "02490", + "libelleAcheminement": "MONAMPTEUIL", + "nomCommune": "MONAMPTEUIL" }, { - "codePostal": "02480", - "codeCommune": "02570", - "libelleAcheminement": "OLLEZY", - "nomCommune": "OLLEZY" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "04250", - "codeCommune": "04228", - "libelleAcheminement": "VALAVOIRE", - "nomCommune": "VALAVOIRE" + "codePostal": "15130", + "codeCommune": "15215", + "libelleAcheminement": "ST SIMON", + "nomCommune": "ST SIMON" }, { - "codePostal": "02290", - "codeCommune": "02576", - "libelleAcheminement": "OSLY COURTIL", - "nomCommune": "OSLY COURTIL" + "codePostal": "01260", + "codeCommune": "01453", + "libelleAcheminement": "ARVIERE EN VALROMEY", + "nomCommune": "ARVIERE EN VALROMEY" }, { - "codePostal": "05130", - "codeCommune": "04234", - "libelleAcheminement": "VENTEROL", - "nomCommune": "VENTEROL" + "codePostal": "02860", + "codeCommune": "02501", + "libelleAcheminement": "MONTCHALONS", + "nomCommune": "MONTCHALONS" }, { - "codePostal": "02840", - "codeCommune": "02587", - "libelleAcheminement": "PARFONDRU", - "nomCommune": "PARFONDRU" + "codePostal": "14690", + "codeCommune": "14764", + "libelleAcheminement": "PONT D OUILLY", + "nomCommune": "PONT D OUILLY" }, { - "codePostal": "04370", - "codeCommune": "04240", - "libelleAcheminement": "VILLARS COLMARS", - "nomCommune": "VILLARS COLMARS" + "codePostal": "15110", + "codeCommune": "15216", + "libelleAcheminement": "ST URCIZE", + "nomCommune": "ST URCIZE" }, { - "codePostal": "02160", - "codeCommune": "02588", - "libelleAcheminement": "PARGNAN", - "nomCommune": "PARGNAN" + "codePostal": "01260", + "codeCommune": "01453", + "libelleAcheminement": "ARVIERE EN VALROMEY", + "nomCommune": "ARVIERE EN VALROMEY" }, { - "codePostal": "04180", - "codeCommune": "04242", - "libelleAcheminement": "VILLENEUVE", - "nomCommune": "VILLENEUVE" + "codePostal": "02860", + "codeCommune": "02508", + "libelleAcheminement": "MONTHENAULT", + "nomCommune": "MONTHENAULT" }, { - "codePostal": "02330", - "codeCommune": "02590", - "libelleAcheminement": "PARGNY LA DHUYS", - "nomCommune": "PARGNY LA DHUYS" + "codePostal": "15100", + "codeCommune": "15002", + "libelleAcheminement": "ALLEUZE", + "nomCommune": "ALLEUZE" }, { - "codePostal": "05140", - "codeCommune": "05008", - "libelleAcheminement": "ASPREMONT", - "nomCommune": "ASPREMONT" + "codePostal": "15200", + "codeCommune": "15220", + "libelleAcheminement": "SALINS", + "nomCommune": "SALINS" }, { - "codePostal": "02240", - "codeCommune": "02605", - "libelleAcheminement": "PLEINE SELVE", - "nomCommune": "PLEINE SELVE" + "codePostal": "01260", + "codeCommune": "01453", + "libelleAcheminement": "ARVIERE EN VALROMEY", + "nomCommune": "ARVIERE EN VALROMEY" }, { - "codePostal": "05110", - "codeCommune": "05013", - "libelleAcheminement": "BARCILLONNETTE", - "nomCommune": "BARCILLONNETTE" + "codePostal": "02810", + "codeCommune": "02512", + "libelleAcheminement": "MONTIGNY L ALLIER", + "nomCommune": "MONTIGNY L ALLIER" }, { - "codePostal": "02140", - "codeCommune": "02608", - "libelleAcheminement": "PLOMION", - "nomCommune": "PLOMION" + "codePostal": "15110", + "codeCommune": "15007", + "libelleAcheminement": "ANTERRIEUX", + "nomCommune": "ANTERRIEUX" }, { - "codePostal": "05700", - "codeCommune": "05016", - "libelleAcheminement": "LA BATIE MONTSALEON", - "nomCommune": "LA BATIE MONTSALEON" + "codePostal": "15130", + "codeCommune": "15221", + "libelleAcheminement": "SANSAC DE MARMIESSE", + "nomCommune": "SANSAC DE MARMIESSE" }, { - "codePostal": "02110", - "codeCommune": "02618", - "libelleAcheminement": "PREMONT", - "nomCommune": "PREMONT" + "codePostal": "01260", + "codeCommune": "01453", + "libelleAcheminement": "ARVIERE EN VALROMEY", + "nomCommune": "ARVIERE EN VALROMEY" }, { - "codePostal": "05800", - "codeCommune": "05039", - "libelleAcheminement": "AUBESSAGNE", - "nomCommune": "AUBESSAGNE" + "codePostal": "02290", + "codeCommune": "02514", + "libelleAcheminement": "MONTIGNY LENGRAIN", + "nomCommune": "MONTIGNY LENGRAIN" }, { - "codePostal": "02370", - "codeCommune": "02620", - "libelleAcheminement": "PRESLES ET BOVES", - "nomCommune": "PRESLES ET BOVES" + "codePostal": "15240", + "codeCommune": "15008", + "libelleAcheminement": "ANTIGNAC", + "nomCommune": "ANTIGNAC" }, { - "codePostal": "05190", - "codeCommune": "05050", - "libelleAcheminement": "ESPINASSES", - "nomCommune": "ESPINASSES" + "codePostal": "15120", + "codeCommune": "15222", + "libelleAcheminement": "SANSAC VEINAZES", + "nomCommune": "SANSAC VEINAZES" }, { - "codePostal": "02140", - "codeCommune": "02623", - "libelleAcheminement": "PRISCES", - "nomCommune": "PRISCES" + "codePostal": "01540", + "codeCommune": "01457", + "libelleAcheminement": "VONNAS", + "nomCommune": "VONNAS" }, { - "codePostal": "05300", - "codeCommune": "05053", - "libelleAcheminement": "GARDE COLOMBE", - "nomCommune": "GARDE COLOMBE" + "codePostal": "02220", + "codeCommune": "02520", + "libelleAcheminement": "MONT NOTRE DAME", + "nomCommune": "MONT NOTRE DAME" }, { - "codePostal": "02190", - "codeCommune": "02626", - "libelleAcheminement": "PROUVAIS", - "nomCommune": "PROUVAIS" + "codePostal": "15400", + "codeCommune": "15009", + "libelleAcheminement": "APCHON", + "nomCommune": "APCHON" }, { - "codePostal": "05260", - "codeCommune": "05056", - "libelleAcheminement": "FOREST ST JULIEN", - "nomCommune": "FOREST ST JULIEN" + "codePostal": "15240", + "codeCommune": "15223", + "libelleAcheminement": "SAUVAT", + "nomCommune": "SAUVAT" }, { "codePostal": "02110", - "codeCommune": "02635", - "libelleAcheminement": "RAMICOURT", - "nomCommune": "RAMICOURT" - }, - { - "codePostal": "05000", - "codeCommune": "05059", - "libelleAcheminement": "LA FREISSINOUSE", - "nomCommune": "LA FREISSINOUSE" + "codeCommune": "02006", + "libelleAcheminement": "AISONVILLE ET BERNOVILLE", + "nomCommune": "AISONVILLE ET BERNOVILLE" }, { - "codePostal": "02290", - "codeCommune": "02643", - "libelleAcheminement": "RESSONS LE LONG", - "nomCommune": "RESSONS LE LONG" + "codePostal": "02360", + "codeCommune": "02522", + "libelleAcheminement": "MONT ST JEAN", + "nomCommune": "MONT ST JEAN" }, { - "codePostal": "05000", - "codeCommune": "05061", - "libelleAcheminement": "GAP", - "nomCommune": "GAP" + "codePostal": "15130", + "codeCommune": "15012", + "libelleAcheminement": "ARPAJON SUR CERE", + "nomCommune": "ARPAJON SUR CERE" }, { - "codePostal": "02850", - "codeCommune": "02645", - "libelleAcheminement": "REUILLY SAUVIGNY", - "nomCommune": "REUILLY SAUVIGNY" + "codePostal": "15340", + "codeCommune": "15226", + "libelleAcheminement": "SENEZERGUES", + "nomCommune": "SENEZERGUES" }, { - "codePostal": "05500", - "codeCommune": "05072", - "libelleAcheminement": "LAYE", - "nomCommune": "LAYE" + "codePostal": "02320", + "codeCommune": "02010", + "libelleAcheminement": "ALLEMANT", + "nomCommune": "ALLEMANT" }, { "codePostal": "02210", - "codeCommune": "02649", - "libelleAcheminement": "ROCOURT ST MARTIN", - "nomCommune": "ROCOURT ST MARTIN" + "codeCommune": "02533", + "libelleAcheminement": "MURET ET CROUTTES", + "nomCommune": "MURET ET CROUTTES" }, { - "codePostal": "05700", - "codeCommune": "05089", - "libelleAcheminement": "MONTROND", - "nomCommune": "MONTROND" + "codePostal": "15500", + "codeCommune": "15022", + "libelleAcheminement": "BONNAC", + "nomCommune": "BONNAC" }, { - "codePostal": "02260", - "codeCommune": "02670", - "libelleAcheminement": "ST ALGIS", - "nomCommune": "ST ALGIS" + "codePostal": "15150", + "codeCommune": "15228", + "libelleAcheminement": "SIRAN", + "nomCommune": "SIRAN" }, { - "codePostal": "05500", - "codeCommune": "05095", - "libelleAcheminement": "LE NOYER", - "nomCommune": "LE NOYER" + "codePostal": "02320", + "codeCommune": "02018", + "libelleAcheminement": "ANIZY LE GRAND", + "nomCommune": "ANIZY LE GRAND" }, { - "codePostal": "02290", - "codeCommune": "02672", - "libelleAcheminement": "ST BANDRY", - "nomCommune": "ST BANDRY" + "codePostal": "02400", + "codeCommune": "02540", + "libelleAcheminement": "NESLES LA MONTAGNE", + "nomCommune": "NESLES LA MONTAGNE" }, { - "codePostal": "05400", - "codeCommune": "05099", - "libelleAcheminement": "OZE", - "nomCommune": "OZE" + "codePostal": "15340", + "codeCommune": "15027", + "libelleAcheminement": "PUYCAPEL", + "nomCommune": "PUYCAPEL" }, { - "codePostal": "02820", - "codeCommune": "02675", - "libelleAcheminement": "STE CROIX", - "nomCommune": "STE CROIX" + "codePostal": "15170", + "codeCommune": "15231", + "libelleAcheminement": "TALIZAT", + "nomCommune": "TALIZAT" }, { - "codePostal": "05000", - "codeCommune": "05100", - "libelleAcheminement": "PELLEAUTIER", - "nomCommune": "PELLEAUTIER" + "codePostal": "02270", + "codeCommune": "02027", + "libelleAcheminement": "ASSIS SUR SERRE", + "nomCommune": "ASSIS SUR SERRE" }, { - "codePostal": "02820", - "codeCommune": "02676", - "libelleAcheminement": "ST ERME OUTRE ET RAMECOURT", - "nomCommune": "ST ERME OUTRE ET RAMECOURT" + "codePostal": "02190", + "codeCommune": "02541", + "libelleAcheminement": "NEUFCHATEL SUR AISNE", + "nomCommune": "NEUFCHATEL SUR AISNE" }, { - "codePostal": "05230", - "codeCommune": "05106", - "libelleAcheminement": "PRUNIERES", - "nomCommune": "PRUNIERES" + "codePostal": "15340", + "codeCommune": "15029", + "libelleAcheminement": "CASSANIOUZE", + "nomCommune": "CASSANIOUZE" }, { - "codePostal": "02410", - "codeCommune": "02680", - "libelleAcheminement": "ST GOBAIN", - "nomCommune": "ST GOBAIN" + "codePostal": "15250", + "codeCommune": "15233", + "libelleAcheminement": "TEISSIERES DE CORNET", + "nomCommune": "TEISSIERES DE CORNET" }, { - "codePostal": "05100", - "codeCommune": "05109", - "libelleAcheminement": "PUY ST PIERRE", - "nomCommune": "PUY ST PIERRE" + "codePostal": "02500", + "codeCommune": "02031", + "libelleAcheminement": "AUBENTON", + "nomCommune": "AUBENTON" }, { - "codePostal": "02140", - "codeCommune": "02681", - "libelleAcheminement": "ST GOBERT", - "nomCommune": "ST GOBERT" + "codePostal": "02170", + "codeCommune": "02558", + "libelleAcheminement": "LE NOUVION EN THIERACHE", + "nomCommune": "LE NOUVION EN THIERACHE" }, { - "codePostal": "05200", - "codeCommune": "05111", - "libelleAcheminement": "PUY SANIERES", - "nomCommune": "PUY SANIERES" + "codePostal": "15200", + "codeCommune": "15036", + "libelleAcheminement": "CHALVIGNAC", + "nomCommune": "CHALVIGNAC" }, { - "codePostal": "02410", - "codeCommune": "02685", - "libelleAcheminement": "ST NICOLAS AUX BOIS", - "nomCommune": "ST NICOLAS AUX BOIS" + "codePostal": "15800", + "codeCommune": "15236", + "libelleAcheminement": "THIEZAC", + "nomCommune": "THIEZAC" }, { - "codePostal": "05600", - "codeCommune": "05116", - "libelleAcheminement": "REOTIER", - "nomCommune": "REOTIER" + "codePostal": "02300", + "codeCommune": "02034", + "libelleAcheminement": "AUDIGNICOURT", + "nomCommune": "AUDIGNICOURT" }, { - "codePostal": "02220", - "codeCommune": "02695", - "libelleAcheminement": "ST THIBAUT", - "nomCommune": "ST THIBAUT" + "codePostal": "02300", + "codeCommune": "02566", + "libelleAcheminement": "OGNES", + "nomCommune": "OGNES" }, { - "codePostal": "05300", - "codeCommune": "05118", - "libelleAcheminement": "VAL BUECH MEOUGE", - "nomCommune": "VAL BUECH MEOUGE" + "codePostal": "15350", + "codeCommune": "15037", + "libelleAcheminement": "CHAMPAGNAC", + "nomCommune": "CHAMPAGNAC" }, { - "codePostal": "02130", - "codeCommune": "02699", - "libelleAcheminement": "SAPONAY", - "nomCommune": "SAPONAY" + "codePostal": "15100", + "codeCommune": "15237", + "libelleAcheminement": "TIVIERS", + "nomCommune": "TIVIERS" }, { - "codePostal": "05300", - "codeCommune": "05118", - "libelleAcheminement": "VAL BUECH MEOUGE", - "nomCommune": "VAL BUECH MEOUGE" + "codePostal": "02000", + "codeCommune": "02047", + "libelleAcheminement": "BARENTON CEL", + "nomCommune": "BARENTON CEL" }, { - "codePostal": "02310", - "codeCommune": "02701", - "libelleAcheminement": "SAULCHERY", - "nomCommune": "SAULCHERY" + "codePostal": "02190", + "codeCommune": "02572", + "libelleAcheminement": "ORAINVILLE", + "nomCommune": "ORAINVILLE" }, { - "codePostal": "05400", - "codeCommune": "05123", - "libelleAcheminement": "LA ROCHE DES ARNAUDS", - "nomCommune": "LA ROCHE DES ARNAUDS" + "codePostal": "15110", + "codeCommune": "15045", + "libelleAcheminement": "CHAUDES AIGUES", + "nomCommune": "CHAUDES AIGUES" }, { - "codePostal": "02700", - "codeCommune": "02716", - "libelleAcheminement": "SERVAIS", - "nomCommune": "SERVAIS" + "codePostal": "15400", + "codeCommune": "15243", + "libelleAcheminement": "TRIZAC", + "nomCommune": "TRIZAC" }, { - "codePostal": "05500", - "codeCommune": "05132", - "libelleAcheminement": "ST BONNET EN CHAMPSAUR", - "nomCommune": "ST BONNET EN CHAMPSAUR" + "codePostal": "02170", + "codeCommune": "02050", + "libelleAcheminement": "BARZY EN THIERACHE", + "nomCommune": "BARZY EN THIERACHE" }, { - "codePostal": "02150", - "codeCommune": "02720", - "libelleAcheminement": "SISSONNE", - "nomCommune": "SISSONNE" + "codePostal": "02290", + "codeCommune": "02576", + "libelleAcheminement": "OSLY COURTIL", + "nomCommune": "OSLY COURTIL" }, { - "codePostal": "05500", - "codeCommune": "05132", - "libelleAcheminement": "ST BONNET EN CHAMPSAUR", - "nomCommune": "ST BONNET EN CHAMPSAUR" + "codePostal": "15400", + "codeCommune": "15049", + "libelleAcheminement": "CHEYLADE", + "nomCommune": "CHEYLADE" }, { - "codePostal": "02580", - "codeCommune": "02728", - "libelleAcheminement": "SORBAIS", - "nomCommune": "SORBAIS" + "codePostal": "15300", + "codeCommune": "15244", + "libelleAcheminement": "USSEL", + "nomCommune": "USSEL" }, { - "codePostal": "05250", - "codeCommune": "05139", - "libelleAcheminement": "LE DEVOLUY", - "nomCommune": "LE DEVOLUY" + "codePostal": "02330", + "codeCommune": "02053", + "libelleAcheminement": "VALLEES EN CHAMPAGNE", + "nomCommune": "VALLEES EN CHAMPAGNE" }, { - "codePostal": "02460", - "codeCommune": "02749", - "libelleAcheminement": "TROESNES", - "nomCommune": "TROESNES" + "codePostal": "02860", + "codeCommune": "02583", + "libelleAcheminement": "PANCY COURTECON", + "nomCommune": "PANCY COURTECON" }, { - "codePostal": "05250", - "codeCommune": "05139", - "libelleAcheminement": "LE DEVOLUY", - "nomCommune": "LE DEVOLUY" + "codePostal": "15430", + "codeCommune": "15059", + "libelleAcheminement": "CUSSAC", + "nomCommune": "CUSSAC" }, { - "codePostal": "02300", - "codeCommune": "02754", - "libelleAcheminement": "UGNY LE GAY", - "nomCommune": "UGNY LE GAY" + "codePostal": "15300", + "codeCommune": "15248", + "libelleAcheminement": "VALUEJOLS", + "nomCommune": "VALUEJOLS" }, { - "codePostal": "05500", - "codeCommune": "05147", - "libelleAcheminement": "ST JULIEN EN CHAMPSAUR", - "nomCommune": "ST JULIEN EN CHAMPSAUR" + "codePostal": "02300", + "codeCommune": "02056", + "libelleAcheminement": "BEAUMONT EN BEINE", + "nomCommune": "BEAUMONT EN BEINE" }, { - "codePostal": "02120", - "codeCommune": "02757", - "libelleAcheminement": "VADENCOURT", - "nomCommune": "VADENCOURT" + "codePostal": "02260", + "codeCommune": "02584", + "libelleAcheminement": "PAPLEUX", + "nomCommune": "PAPLEUX" }, { - "codePostal": "05260", - "codeCommune": "05149", - "libelleAcheminement": "ST LEGER LES MELEZES", - "nomCommune": "ST LEGER LES MELEZES" + "codePostal": "15170", + "codeCommune": "15069", + "libelleAcheminement": "FERRIERES ST MARY", + "nomCommune": "FERRIERES ST MARY" }, { - "codePostal": "02370", - "codeCommune": "02758", - "libelleAcheminement": "VAILLY SUR AISNE", - "nomCommune": "VAILLY SUR AISNE" + "codePostal": "15160", + "codeCommune": "15253", + "libelleAcheminement": "VERNOLS", + "nomCommune": "VERNOLS" }, { - "codePostal": "05700", - "codeCommune": "05166", - "libelleAcheminement": "SERRES", - "nomCommune": "SERRES" + "codePostal": "02800", + "codeCommune": "02059", + "libelleAcheminement": "BEAUTOR", + "nomCommune": "BEAUTOR" }, { - "codePostal": "02140", - "codeCommune": "02759", - "libelleAcheminement": "LA VALLEE AU BLE", - "nomCommune": "LA VALLEE AU BLE" + "codePostal": "02210", + "codeCommune": "02585", + "libelleAcheminement": "PARCY ET TIGNY", + "nomCommune": "PARCY ET TIGNY" }, { - "codePostal": "05130", - "codeCommune": "05168", - "libelleAcheminement": "SIGOYER", - "nomCommune": "SIGOYER" + "codePostal": "15140", + "codeCommune": "15070", + "libelleAcheminement": "FONTANGES", + "nomCommune": "FONTANGES" }, { - "codePostal": "02510", - "codeCommune": "02779", - "libelleAcheminement": "VENEROLLES", - "nomCommune": "VENEROLLES" + "codePostal": "16130", + "codeCommune": "16012", + "libelleAcheminement": "ANGEAC CHAMPAGNE", + "nomCommune": "ANGEAC CHAMPAGNE" }, { - "codePostal": "05130", - "codeCommune": "05176", - "libelleAcheminement": "VALSERRES", - "nomCommune": "VALSERRES" + "codePostal": "02420", + "codeCommune": "02065", + "libelleAcheminement": "BELLICOURT", + "nomCommune": "BELLICOURT" }, { - "codePostal": "02200", - "codeCommune": "02780", - "libelleAcheminement": "VENIZEL", - "nomCommune": "VENIZEL" + "codePostal": "02840", + "codeCommune": "02587", + "libelleAcheminement": "PARFONDRU", + "nomCommune": "PARFONDRU" }, { - "codePostal": "06160", - "codeCommune": "06004", - "libelleAcheminement": "ANTIBES", - "nomCommune": "ANTIBES" + "codePostal": "15110", + "codeCommune": "15073", + "libelleAcheminement": "FRIDEFONT", + "nomCommune": "FRIDEFONT" }, { - "codePostal": "02130", - "codeCommune": "02794", - "libelleAcheminement": "VEZILLY", - "nomCommune": "VEZILLY" + "codePostal": "16120", + "codeCommune": "16013", + "libelleAcheminement": "ANGEAC CHARENTE", + "nomCommune": "ANGEAC CHARENTE" }, { - "codePostal": "06600", - "codeCommune": "06004", - "libelleAcheminement": "ANTIBES", - "nomCommune": "ANTIBES" + "codePostal": "02290", + "codeCommune": "02071", + "libelleAcheminement": "BERNY RIVIERE", + "nomCommune": "BERNY RIVIERE" }, { - "codePostal": "02340", - "codeCommune": "02802", - "libelleAcheminement": "LA VILLE AUX BOIS LES DIZY", - "nomCommune": "LA VILLE AUX BOIS LES DIZY" + "codePostal": "02330", + "codeCommune": "02590", + "libelleAcheminement": "PARGNY LA DHUYS", + "nomCommune": "PARGNY LA DHUYS" }, { - "codePostal": "06600", - "codeCommune": "06004", - "libelleAcheminement": "ANTIBES", - "nomCommune": "ANTIBES" + "codePostal": "15170", + "codeCommune": "15080", + "libelleAcheminement": "JOURSAC", + "nomCommune": "JOURSAC" }, { - "codePostal": "02160", - "codeCommune": "02803", - "libelleAcheminement": "LA VILLE AUX BOIS LES PONTAVERT", - "nomCommune": "LA VILLE AUX BOIS LES PONTAVERT" + "codePostal": "16300", + "codeCommune": "16014", + "libelleAcheminement": "ANGEDUC", + "nomCommune": "ANGEDUC" }, { - "codePostal": "06830", - "codeCommune": "06021", - "libelleAcheminement": "BONSON", - "nomCommune": "BONSON" + "codePostal": "02240", + "codeCommune": "02075", + "libelleAcheminement": "BERTHENICOURT", + "nomCommune": "BERTHENICOURT" }, { - "codePostal": "02300", - "codeCommune": "02807", - "libelleAcheminement": "VILLEQUIER AUMONT", - "nomCommune": "VILLEQUIER AUMONT" + "codePostal": "02270", + "codeCommune": "02591", + "libelleAcheminement": "PARGNY LES BOIS", + "nomCommune": "PARGNY LES BOIS" }, { - "codePostal": "06510", - "codeCommune": "06025", - "libelleAcheminement": "LE BROC", - "nomCommune": "LE BROC" + "codePostal": "15800", + "codeCommune": "15081", + "libelleAcheminement": "JOU SOUS MONJOU", + "nomCommune": "JOU SOUS MONJOU" }, { - "codePostal": "02600", - "codeCommune": "02812", - "libelleAcheminement": "VILLERS HELON", - "nomCommune": "VILLERS HELON" + "codePostal": "16290", + "codeCommune": "16019", + "libelleAcheminement": "ASNIERES SUR NOUERE", + "nomCommune": "ASNIERES SUR NOUERE" }, { - "codePostal": "06340", - "codeCommune": "06031", - "libelleAcheminement": "CANTARON", - "nomCommune": "CANTARON" + "codePostal": "02870", + "codeCommune": "02080", + "libelleAcheminement": "BESNY ET LOIZY", + "nomCommune": "BESNY ET LOIZY" }, { - "codePostal": "02140", - "codeCommune": "02826", - "libelleAcheminement": "VOULPAIX", - "nomCommune": "VOULPAIX" + "codePostal": "02240", + "codeCommune": "02592", + "libelleAcheminement": "PARPEVILLE", + "nomCommune": "PARPEVILLE" }, { - "codePostal": "06480", - "codeCommune": "06044", - "libelleAcheminement": "LA COLLE SUR LOUP", - "nomCommune": "LA COLLE SUR LOUP" + "codePostal": "15250", + "codeCommune": "15083", + "libelleAcheminement": "JUSSAC", + "nomCommune": "JUSSAC" }, { - "codePostal": "02250", - "codeCommune": "02827", - "libelleAcheminement": "VOYENNE", - "nomCommune": "VOYENNE" + "codePostal": "16140", + "codeCommune": "16027", + "libelleAcheminement": "BARBEZIERES", + "nomCommune": "BARBEZIERES" }, { - "codePostal": "06620", - "codeCommune": "06049", - "libelleAcheminement": "COURMES", - "nomCommune": "COURMES" + "codePostal": "02300", + "codeCommune": "02081", + "libelleAcheminement": "BETHANCOURT EN VAUX", + "nomCommune": "BETHANCOURT EN VAUX" }, { - "codePostal": "02830", - "codeCommune": "02831", - "libelleAcheminement": "WATIGNY", - "nomCommune": "WATIGNY" + "codePostal": "02200", + "codeCommune": "02607", + "libelleAcheminement": "PLOISY", + "nomCommune": "PLOISY" }, { - "codePostal": "06950", - "codeCommune": "06060", - "libelleAcheminement": "FALICON", - "nomCommune": "FALICON" + "codePostal": "15230", + "codeCommune": "15086", + "libelleAcheminement": "LACAPELLE BARRES", + "nomCommune": "LACAPELLE BARRES" }, { - "codePostal": "03120", - "codeCommune": "03006", - "libelleAcheminement": "ARFEUILLES", - "nomCommune": "ARFEUILLES" + "codePostal": "16450", + "codeCommune": "16035", + "libelleAcheminement": "BEAULIEU SUR SONNETTE", + "nomCommune": "BEAULIEU SUR SONNETTE" }, { - "codePostal": "06610", - "codeCommune": "06065", - "libelleAcheminement": "LA GAUDE", - "nomCommune": "LA GAUDE" + "codePostal": "02130", + "codeCommune": "02083", + "libelleAcheminement": "BEUVARDES", + "nomCommune": "BEUVARDES" }, { - "codePostal": "03120", - "codeCommune": "03017", - "libelleAcheminement": "BARRAIS BUSSOLLES", - "nomCommune": "BARRAIS BUSSOLLES" + "codePostal": "02490", + "codeCommune": "02614", + "libelleAcheminement": "PONTRU", + "nomCommune": "PONTRU" }, { - "codePostal": "06420", - "codeCommune": "06072", - "libelleAcheminement": "ILONSE", - "nomCommune": "ILONSE" + "codePostal": "15120", + "codeCommune": "15087", + "libelleAcheminement": "LACAPELLE DEL FRAISSE", + "nomCommune": "LACAPELLE DEL FRAISSE" }, { - "codePostal": "03120", - "codeCommune": "03028", - "libelleAcheminement": "BILLEZOIS", - "nomCommune": "BILLEZOIS" + "codePostal": "16700", + "codeCommune": "16039", + "libelleAcheminement": "BERNAC", + "nomCommune": "BERNAC" }, { - "codePostal": "06670", - "codeCommune": "06075", - "libelleAcheminement": "LEVENS", - "nomCommune": "LEVENS" + "codePostal": "02400", + "codeCommune": "02085", + "libelleAcheminement": "BEZU ST GERMAIN", + "nomCommune": "BEZU ST GERMAIN" }, { - "codePostal": "03260", - "codeCommune": "03029", - "libelleAcheminement": "BILLY", - "nomCommune": "BILLY" + "codePostal": "02190", + "codeCommune": "02626", + "libelleAcheminement": "PROUVAIS", + "nomCommune": "PROUVAIS" }, { - "codePostal": "06420", - "codeCommune": "06080", - "libelleAcheminement": "MARIE", - "nomCommune": "MARIE" + "codePostal": "15160", + "codeCommune": "15091", + "libelleAcheminement": "LANDEYRAT", + "nomCommune": "LANDEYRAT" }, { - "codePostal": "03210", - "codeCommune": "03039", - "libelleAcheminement": "BRESNAY", - "nomCommune": "BRESNAY" + "codePostal": "16480", + "codeCommune": "16040", + "libelleAcheminement": "BERNEUIL", + "nomCommune": "BERNEUIL" }, { - "codePostal": "06370", - "codeCommune": "06084", - "libelleAcheminement": "MOUANS SARTOUX", - "nomCommune": "MOUANS SARTOUX" + "codePostal": "02210", + "codeCommune": "02090", + "libelleAcheminement": "BILLY SUR OURCQ", + "nomCommune": "BILLY SUR OURCQ" }, { - "codePostal": "03500", - "codeCommune": "03049", - "libelleAcheminement": "CESSET", - "nomCommune": "CESSET" + "codePostal": "02300", + "codeCommune": "02631", + "libelleAcheminement": "QUIERZY", + "nomCommune": "QUIERZY" }, { - "codePostal": "06250", - "codeCommune": "06085", - "libelleAcheminement": "MOUGINS", - "nomCommune": "MOUGINS" + "codePostal": "15270", + "codeCommune": "15092", + "libelleAcheminement": "LANOBRE", + "nomCommune": "LANOBRE" }, { - "codePostal": "03340", - "codeCommune": "03054", - "libelleAcheminement": "CHAPEAU", - "nomCommune": "CHAPEAU" + "codePostal": "16140", + "codeCommune": "16042", + "libelleAcheminement": "BESSE", + "nomCommune": "BESSE" }, { - "codePostal": "06100", - "codeCommune": "06088", - "libelleAcheminement": "NICE", - "nomCommune": "NICE" + "codePostal": "02160", + "codeCommune": "02091", + "libelleAcheminement": "BLANZY LES FISMES", + "nomCommune": "BLANZY LES FISMES" }, { - "codePostal": "03300", - "codeCommune": "03056", - "libelleAcheminement": "LA CHAPELLE", - "nomCommune": "LA CHAPELLE" + "codePostal": "02380", + "codeCommune": "02632", + "libelleAcheminement": "QUINCY BASSE", + "nomCommune": "QUINCY BASSE" }, { - "codePostal": "06200", - "codeCommune": "06088", - "libelleAcheminement": "NICE", - "nomCommune": "NICE" + "codePostal": "15500", + "codeCommune": "15097", + "libelleAcheminement": "LASTIC", + "nomCommune": "LASTIC" }, { - "codePostal": "03230", - "codeCommune": "03057", - "libelleAcheminement": "LA CHAPELLE AUX CHASSES", - "nomCommune": "LA CHAPELLE AUX CHASSES" + "codePostal": "16320", + "codeCommune": "16047", + "libelleAcheminement": "BLANZAGUET ST CYBARD", + "nomCommune": "BLANZAGUET ST CYBARD" }, { - "codePostal": "06200", - "codeCommune": "06088", - "libelleAcheminement": "NICE", - "nomCommune": "NICE" + "codePostal": "02350", + "codeCommune": "02097", + "libelleAcheminement": "BONCOURT", + "nomCommune": "BONCOURT" }, { - "codePostal": "03110", - "codeCommune": "03060", - "libelleAcheminement": "CHARMEIL", - "nomCommune": "CHARMEIL" + "codePostal": "02110", + "codeCommune": "02635", + "libelleAcheminement": "RAMICOURT", + "nomCommune": "RAMICOURT" }, { - "codePostal": "06470", - "codeCommune": "06094", - "libelleAcheminement": "PEONE", - "nomCommune": "PEONE" + "codePostal": "15600", + "codeCommune": "15104", + "libelleAcheminement": "LEYNHAC", + "nomCommune": "LEYNHAC" }, { - "codePostal": "03220", - "codeCommune": "03067", - "libelleAcheminement": "CHATELPERRON", - "nomCommune": "CHATELPERRON" + "codePostal": "16390", + "codeCommune": "16049", + "libelleAcheminement": "BONNES", + "nomCommune": "BONNES" }, { - "codePostal": "06450", - "codeCommune": "06103", - "libelleAcheminement": "ROQUEBILLIERE", - "nomCommune": "ROQUEBILLIERE" + "codePostal": "02220", + "codeCommune": "02110", + "libelleAcheminement": "BRAINE", + "nomCommune": "BRAINE" }, { - "codePostal": "03330", - "codeCommune": "03077", - "libelleAcheminement": "CHIRAT L EGLISE", - "nomCommune": "CHIRAT L EGLISE" + "codePostal": "02240", + "codeCommune": "02636", + "libelleAcheminement": "REGNY", + "nomCommune": "REGNY" }, { - "codePostal": "06330", - "codeCommune": "06105", - "libelleAcheminement": "ROQUEFORT LES PINS", - "nomCommune": "ROQUEFORT LES PINS" + "codePostal": "15110", + "codeCommune": "15106", + "libelleAcheminement": "LIEUTADES", + "nomCommune": "LIEUTADES" }, { - "codePostal": "03220", - "codeCommune": "03079", - "libelleAcheminement": "CINDRE", - "nomCommune": "CINDRE" + "codePostal": "16410", + "codeCommune": "16055", + "libelleAcheminement": "BOUEX", + "nomCommune": "BOUEX" }, { - "codePostal": "06910", - "codeCommune": "06107", - "libelleAcheminement": "LA ROQUE EN PROVENCE", - "nomCommune": "LA ROQUE EN PROVENCE" + "codePostal": "02110", + "codeCommune": "02112", + "libelleAcheminement": "BRANCOURT LE GRAND", + "nomCommune": "BRANCOURT LE GRAND" }, { - "codePostal": "03600", - "codeCommune": "03082", - "libelleAcheminement": "COMMENTRY", - "nomCommune": "COMMENTRY" + "codePostal": "02270", + "codeCommune": "02638", + "libelleAcheminement": "REMIES", + "nomCommune": "REMIES" }, { - "codePostal": "06670", - "codeCommune": "06109", - "libelleAcheminement": "LA ROQUETTE SUR VAR", - "nomCommune": "LA ROQUETTE SUR VAR" + "codePostal": "15320", + "codeCommune": "15107", + "libelleAcheminement": "LORCIERES", + "nomCommune": "LORCIERES" }, { - "codePostal": "03500", - "codeCommune": "03083", - "libelleAcheminement": "CONTIGNY", - "nomCommune": "CONTIGNY" + "codePostal": "16590", + "codeCommune": "16061", + "libelleAcheminement": "BRIE", + "nomCommune": "BRIE" }, { - "codePostal": "06420", - "codeCommune": "06111", - "libelleAcheminement": "ROURE", - "nomCommune": "ROURE" + "codePostal": "02240", + "codeCommune": "02123", + "libelleAcheminement": "BRISSAY CHOIGNY", + "nomCommune": "BRISSAY CHOIGNY" }, { - "codePostal": "03000", - "codeCommune": "03085", - "libelleAcheminement": "COULANDON", - "nomCommune": "COULANDON" + "codePostal": "02440", + "codeCommune": "02639", + "libelleAcheminement": "REMIGNY", + "nomCommune": "REMIGNY" }, { - "codePostal": "06730", - "codeCommune": "06114", - "libelleAcheminement": "ST ANDRE DE LA ROCHE", - "nomCommune": "ST ANDRE DE LA ROCHE" + "codePostal": "15590", + "codeCommune": "15113", + "libelleAcheminement": "MANDAILLES ST JULIEN", + "nomCommune": "MANDAILLES ST JULIEN" }, { - "codePostal": "03470", - "codeCommune": "03086", - "libelleAcheminement": "COULANGES", - "nomCommune": "COULANGES" + "codePostal": "16480", + "codeCommune": "16066", + "libelleAcheminement": "BROSSAC", + "nomCommune": "BROSSAC" }, { - "codePostal": "06850", - "codeCommune": "06116", - "libelleAcheminement": "ST AUBAN", - "nomCommune": "ST AUBAN" + "codePostal": "02220", + "codeCommune": "02129", + "libelleAcheminement": "BRUYS", + "nomCommune": "BRUYS" }, { - "codePostal": "03150", - "codeCommune": "03091", - "libelleAcheminement": "CRECHY", - "nomCommune": "CRECHY" + "codePostal": "02850", + "codeCommune": "02645", + "libelleAcheminement": "REUILLY SAUVIGNY", + "nomCommune": "REUILLY SAUVIGNY" }, { - "codePostal": "06660", - "codeCommune": "06120", - "libelleAcheminement": "ST ETIENNE DE TINEE", - "nomCommune": "ST ETIENNE DE TINEE" + "codePostal": "15600", + "codeCommune": "15122", + "libelleAcheminement": "MAURS", + "nomCommune": "MAURS" }, { - "codePostal": "03300", - "codeCommune": "03095", - "libelleAcheminement": "CUSSET", - "nomCommune": "CUSSET" + "codePostal": "16230", + "codeCommune": "16069", + "libelleAcheminement": "CELLETTES", + "nomCommune": "CELLETTES" }, { - "codePostal": "06640", - "codeCommune": "06122", - "libelleAcheminement": "ST JEANNET", - "nomCommune": "ST JEANNET" + "codePostal": "02500", + "codeCommune": "02130", + "libelleAcheminement": "BUCILLY", + "nomCommune": "BUCILLY" }, { - "codePostal": "03240", - "codeCommune": "03099", - "libelleAcheminement": "DEUX CHAISES", - "nomCommune": "DEUX CHAISES" + "codePostal": "02160", + "codeCommune": "02656", + "libelleAcheminement": "ROUCY", + "nomCommune": "ROUCY" }, { - "codePostal": "06260", - "codeCommune": "06124", - "libelleAcheminement": "ST LEGER", - "nomCommune": "ST LEGER" + "codePostal": "15500", + "codeCommune": "15126", + "libelleAcheminement": "MOLEDES", + "nomCommune": "MOLEDES" }, { - "codePostal": "03290", - "codeCommune": "03100", - "libelleAcheminement": "DIOU", - "nomCommune": "DIOU" + "codePostal": "16210", + "codeCommune": "16073", + "libelleAcheminement": "CHALAIS", + "nomCommune": "CHALAIS" }, { - "codePostal": "06450", - "codeCommune": "06127", - "libelleAcheminement": "ST MARTIN VESUBIE", - "nomCommune": "ST MARTIN VESUBIE" + "codePostal": "02870", + "codeCommune": "02132", + "libelleAcheminement": "BUCY LES CERNY", + "nomCommune": "BUCY LES CERNY" }, { - "codePostal": "03410", - "codeCommune": "03101", - "libelleAcheminement": "DOMERAT", - "nomCommune": "DOMERAT" + "codePostal": "02100", + "codeCommune": "02659", + "libelleAcheminement": "ROUVROY", + "nomCommune": "ROUVROY" }, { - "codePostal": "06470", - "codeCommune": "06133", - "libelleAcheminement": "SAUZE", - "nomCommune": "SAUZE" + "codePostal": "15240", + "codeCommune": "15131", + "libelleAcheminement": "LE MONTEIL", + "nomCommune": "LE MONTEIL" }, { - "codePostal": "03170", - "codeCommune": "03104", - "libelleAcheminement": "DOYET", - "nomCommune": "DOYET" + "codePostal": "16210", + "codeCommune": "16073", + "libelleAcheminement": "CHALAIS", + "nomCommune": "CHALAIS" }, { - "codePostal": "06750", - "codeCommune": "06134", - "libelleAcheminement": "SERANON", - "nomCommune": "SERANON" + "codePostal": "02350", + "codeCommune": "02133", + "libelleAcheminement": "BUCY LES PIERREPONT", + "nomCommune": "BUCY LES PIERREPONT" }, { - "codePostal": "03330", - "codeCommune": "03108", - "libelleAcheminement": "ECHASSIERES", - "nomCommune": "ECHASSIERES" + "codePostal": "02360", + "codeCommune": "02660", + "libelleAcheminement": "ROUVROY SUR SERRE", + "nomCommune": "ROUVROY SUR SERRE" }, { - "codePostal": "06380", - "codeCommune": "06136", - "libelleAcheminement": "SOSPEL", - "nomCommune": "SOSPEL" + "codePostal": "15380", + "codeCommune": "15137", + "libelleAcheminement": "MOUSSAGES", + "nomCommune": "MOUSSAGES" }, { - "codePostal": "03340", - "codeCommune": "03114", - "libelleAcheminement": "LA FERTE HAUTERIVE", - "nomCommune": "LA FERTE HAUTERIVE" + "codePostal": "16140", + "codeCommune": "16081", + "libelleAcheminement": "LA CHAPELLE", + "nomCommune": "LA CHAPELLE" }, { - "codePostal": "06320", - "codeCommune": "06150", - "libelleAcheminement": "LA TURBIE", - "nomCommune": "LA TURBIE" + "codePostal": "02810", + "codeCommune": "02137", + "libelleAcheminement": "BUSSIARES", + "nomCommune": "BUSSIARES" }, { - "codePostal": "03140", - "codeCommune": "03115", - "libelleAcheminement": "FLEURIEL", - "nomCommune": "FLEURIEL" + "codePostal": "02210", + "codeCommune": "02665", + "libelleAcheminement": "GRAND ROZOY", + "nomCommune": "GRAND ROZOY" }, { - "codePostal": "06450", - "codeCommune": "06151", - "libelleAcheminement": "UTELLE", - "nomCommune": "UTELLE" + "codePostal": "15430", + "codeCommune": "15148", + "libelleAcheminement": "PAULHAC", + "nomCommune": "PAULHAC" }, { - "codePostal": "03160", - "codeCommune": "03117", - "libelleAcheminement": "FRANCHESSE", - "nomCommune": "FRANCHESSE" + "codePostal": "16320", + "codeCommune": "16082", + "libelleAcheminement": "BOISNE LA TUDE", + "nomCommune": "BOISNE LA TUDE" }, { - "codePostal": "06140", - "codeCommune": "06157", - "libelleAcheminement": "VENCE", - "nomCommune": "VENCE" + "codePostal": "02420", + "codeCommune": "02143", + "libelleAcheminement": "LE CATELET", + "nomCommune": "LE CATELET" }, { - "codePostal": "03230", - "codeCommune": "03120", - "libelleAcheminement": "GARNAT SUR ENGIEVRE", - "nomCommune": "GARNAT SUR ENGIEVRE" + "codePostal": "02290", + "codeCommune": "02673", + "libelleAcheminement": "ST CHRISTOPHE A BERRY", + "nomCommune": "ST CHRISTOPHE A BERRY" }, { - "codePostal": "06430", - "codeCommune": "06162", - "libelleAcheminement": "LA BRIGUE", - "nomCommune": "LA BRIGUE" + "codePostal": "15500", + "codeCommune": "15158", + "libelleAcheminement": "RAGEADE", + "nomCommune": "RAGEADE" }, { - "codePostal": "03400", - "codeCommune": "03121", - "libelleAcheminement": "GENNETINES", - "nomCommune": "GENNETINES" + "codePostal": "16380", + "codeCommune": "16084", + "libelleAcheminement": "CHARRAS", + "nomCommune": "CHARRAS" }, { - "codePostal": "07160", - "codeCommune": "07001", - "libelleAcheminement": "ACCONS", - "nomCommune": "ACCONS" + "codePostal": "02300", + "codeCommune": "02145", + "libelleAcheminement": "CAUMONT", + "nomCommune": "CAUMONT" }, { - "codePostal": "03380", - "codeCommune": "03128", - "libelleAcheminement": "HURIEL", - "nomCommune": "HURIEL" + "codePostal": "02340", + "codeCommune": "02678", + "libelleAcheminement": "STE GENEVIEVE", + "nomCommune": "STE GENEVIEVE" }, { - "codePostal": "07530", - "codeCommune": "07003", - "libelleAcheminement": "AIZAC", - "nomCommune": "AIZAC" + "codePostal": "15800", + "codeCommune": "15159", + "libelleAcheminement": "RAULHAC", + "nomCommune": "RAULHAC" }, { - "codePostal": "03120", - "codeCommune": "03131", - "libelleAcheminement": "ISSERPENT", - "nomCommune": "ISSERPENT" + "codePostal": "16200", + "codeCommune": "16088", + "libelleAcheminement": "CHASSORS", + "nomCommune": "CHASSORS" }, { - "codePostal": "07000", - "codeCommune": "07004", - "libelleAcheminement": "AJOUX", - "nomCommune": "AJOUX" + "codePostal": "02240", + "codeCommune": "02149", + "libelleAcheminement": "CERIZY", + "nomCommune": "CERIZY" }, { - "codePostal": "03450", - "codeCommune": "03135", - "libelleAcheminement": "LALIZOLLE", - "nomCommune": "LALIZOLLE" + "codePostal": "02410", + "codeCommune": "02680", + "libelleAcheminement": "ST GOBAIN", + "nomCommune": "ST GOBAIN" }, { - "codePostal": "07190", - "codeCommune": "07006", - "libelleAcheminement": "ALBON D ARDECHE", - "nomCommune": "ALBON D ARDECHE" + "codePostal": "15190", + "codeCommune": "15173", + "libelleAcheminement": "ST BONNET DE CONDAT", + "nomCommune": "ST BONNET DE CONDAT" }, { - "codePostal": "03380", - "codeCommune": "03136", - "libelleAcheminement": "LAMAIDS", - "nomCommune": "LAMAIDS" + "codePostal": "16440", + "codeCommune": "16101", + "libelleAcheminement": "CLAIX", + "nomCommune": "CLAIX" }, { - "codePostal": "07290", - "codeCommune": "07013", - "libelleAcheminement": "ARDOIX", - "nomCommune": "ARDOIX" + "codePostal": "02870", + "codeCommune": "02151", + "libelleAcheminement": "CERNY LES BUCY", + "nomCommune": "CERNY LES BUCY" }, { - "codePostal": "03150", - "codeCommune": "03137", - "libelleAcheminement": "LANGY", - "nomCommune": "LANGY" + "codePostal": "02600", + "codeCommune": "02687", + "libelleAcheminement": "ST PIERRE AIGLE", + "nomCommune": "ST PIERRE AIGLE" }, { - "codePostal": "07460", - "codeCommune": "07028", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "15310", + "codeCommune": "15175", + "libelleAcheminement": "ST CERNIN", + "nomCommune": "ST CERNIN" }, { - "codePostal": "03250", - "codeCommune": "03139", - "libelleAcheminement": "LAPRUGNE", - "nomCommune": "LAPRUGNE" + "codePostal": "16100", + "codeCommune": "16102", + "libelleAcheminement": "COGNAC", + "nomCommune": "COGNAC" }, { - "codePostal": "07580", - "codeCommune": "07032", - "libelleAcheminement": "BERZEME", - "nomCommune": "BERZEME" + "codePostal": "02220", + "codeCommune": "02152", + "libelleAcheminement": "CERSEUIL", + "nomCommune": "CERSEUIL" }, { - "codePostal": "03100", - "codeCommune": "03140", - "libelleAcheminement": "LAVAULT STE ANNE", - "nomCommune": "LAVAULT STE ANNE" + "codePostal": "02350", + "codeCommune": "02690", + "libelleAcheminement": "STE PREUVE", + "nomCommune": "STE PREUVE" }, { - "codePostal": "07150", - "codeCommune": "07033", - "libelleAcheminement": "BESSAS", - "nomCommune": "BESSAS" + "codePostal": "15800", + "codeCommune": "15180", + "libelleAcheminement": "ST CLEMENT", + "nomCommune": "ST CLEMENT" }, { - "codePostal": "03130", - "codeCommune": "03142", - "libelleAcheminement": "LENAX", - "nomCommune": "LENAX" + "codePostal": "16500", + "codeCommune": "16106", + "libelleAcheminement": "CONFOLENS", + "nomCommune": "CONFOLENS" }, { - "codePostal": "07270", - "codeCommune": "07040", - "libelleAcheminement": "BOUCIEU LE ROI", - "nomCommune": "BOUCIEU LE ROI" + "codePostal": "02270", + "codeCommune": "02156", + "libelleAcheminement": "CHALANDRY", + "nomCommune": "CHALANDRY" }, { - "codePostal": "03360", - "codeCommune": "03143", - "libelleAcheminement": "LETELON", - "nomCommune": "LETELON" + "codePostal": "02220", + "codeCommune": "02711", + "libelleAcheminement": "SERCHES", + "nomCommune": "SERCHES" }, { - "codePostal": "07160", - "codeCommune": "07049", - "libelleAcheminement": "LE CHAMBON", - "nomCommune": "LE CHAMBON" + "codePostal": "15130", + "codeCommune": "15183", + "libelleAcheminement": "ST ETIENNE DE CARLAT", + "nomCommune": "ST ETIENNE DE CARLAT" }, { - "codePostal": "03320", - "codeCommune": "03146", - "libelleAcheminement": "LIMOISE", - "nomCommune": "LIMOISE" + "codePostal": "16560", + "codeCommune": "16107", + "libelleAcheminement": "COULGENS", + "nomCommune": "COULGENS" }, { - "codePostal": "07310", - "codeCommune": "07054", - "libelleAcheminement": "CHANEAC", - "nomCommune": "CHANEAC" + "codePostal": "02670", + "codeCommune": "02159", + "libelleAcheminement": "CHAMPS", + "nomCommune": "CHAMPS" }, { - "codePostal": "03350", - "codeCommune": "03150", - "libelleAcheminement": "LOUROUX BOURBONNAIS", - "nomCommune": "LOUROUX BOURBONNAIS" + "codePostal": "02130", + "codeCommune": "02713", + "libelleAcheminement": "SERINGES ET NESLES", + "nomCommune": "SERINGES ET NESLES" }, { - "codePostal": "07340", - "codeCommune": "07056", - "libelleAcheminement": "CHARNAS", - "nomCommune": "CHARNAS" + "codePostal": "15600", + "codeCommune": "15184", + "libelleAcheminement": "ST ETIENNE DE MAURS", + "nomCommune": "ST ETIENNE DE MAURS" }, { - "codePostal": "03230", - "codeCommune": "03156", - "libelleAcheminement": "LUSIGNY", - "nomCommune": "LUSIGNY" + "codePostal": "16240", + "codeCommune": "16110", + "libelleAcheminement": "COURCOME", + "nomCommune": "COURCOME" }, { - "codePostal": "07160", - "codeCommune": "07064", - "libelleAcheminement": "LE CHEYLARD", - "nomCommune": "LE CHEYLARD" + "codePostal": "02310", + "codeCommune": "02163", + "libelleAcheminement": "CHARLY SUR MARNE", + "nomCommune": "CHARLY SUR MARNE" }, { - "codePostal": "03190", - "codeCommune": "03158", - "libelleAcheminement": "HAUT BOCAGE", - "nomCommune": "HAUT BOCAGE" + "codePostal": "02160", + "codeCommune": "02715", + "libelleAcheminement": "SERVAL", + "nomCommune": "SERVAL" }, { - "codePostal": "07000", - "codeCommune": "07072", - "libelleAcheminement": "COUX", - "nomCommune": "COUX" + "codePostal": "15100", + "codeCommune": "15187", + "libelleAcheminement": "ST FLOUR", + "nomCommune": "ST FLOUR" }, { - "codePostal": "03190", - "codeCommune": "03158", - "libelleAcheminement": "HAUT BOCAGE", - "nomCommune": "HAUT BOCAGE" + "codePostal": "16190", + "codeCommune": "16111", + "libelleAcheminement": "COURGEAC", + "nomCommune": "COURGEAC" }, { - "codePostal": "07170", - "codeCommune": "07077", - "libelleAcheminement": "DARBRES", - "nomCommune": "DARBRES" + "codePostal": "02400", + "codeCommune": "02166", + "libelleAcheminement": "CHARTEVES", + "nomCommune": "CHARTEVES" }, { - "codePostal": "03600", - "codeCommune": "03159", - "libelleAcheminement": "MALICORNE", - "nomCommune": "MALICORNE" + "codePostal": "02160", + "codeCommune": "02730", + "libelleAcheminement": "SOUPIR", + "nomCommune": "SOUPIR" }, { - "codePostal": "07000", - "codeCommune": "07092", - "libelleAcheminement": "FREYSSENET", - "nomCommune": "FREYSSENET" + "codePostal": "15220", + "codeCommune": "15196", + "libelleAcheminement": "ST MAMET LA SALVETAT", + "nomCommune": "ST MAMET LA SALVETAT" }, { - "codePostal": "03260", - "codeCommune": "03160", - "libelleAcheminement": "MARCENAT", - "nomCommune": "MARCENAT" + "codePostal": "16210", + "codeCommune": "16117", + "libelleAcheminement": "CURAC", + "nomCommune": "CURAC" }, { - "codePostal": "07530", - "codeCommune": "07093", - "libelleAcheminement": "GENESTELLE", - "nomCommune": "GENESTELLE" + "codePostal": "02160", + "codeCommune": "02171", + "libelleAcheminement": "CHAUDARDES", + "nomCommune": "CHAUDARDES" }, { - "codePostal": "03250", - "codeCommune": "03165", - "libelleAcheminement": "LE MAYET DE MONTAGNE", - "nomCommune": "LE MAYET DE MONTAGNE" + "codePostal": "02700", + "codeCommune": "02738", + "libelleAcheminement": "TERGNIER", + "nomCommune": "TERGNIER" }, { - "codePostal": "07000", - "codeCommune": "07098", - "libelleAcheminement": "GOURDON", - "nomCommune": "GOURDON" + "codePostal": "15140", + "codeCommune": "15200", + "libelleAcheminement": "ST MARTIN CANTALES", + "nomCommune": "ST MARTIN CANTALES" }, { - "codePostal": "03420", - "codeCommune": "03167", - "libelleAcheminement": "MAZIRAT", - "nomCommune": "MAZIRAT" + "codePostal": "16140", + "codeCommune": "16122", + "libelleAcheminement": "EBREON", + "nomCommune": "EBREON" }, { - "codePostal": "07140", - "codeCommune": "07100", - "libelleAcheminement": "GRAVIERES", - "nomCommune": "GRAVIERES" + "codePostal": "02000", + "codeCommune": "02174", + "libelleAcheminement": "CHAVIGNON", + "nomCommune": "CHAVIGNON" }, { - "codePostal": "03300", - "codeCommune": "03174", - "libelleAcheminement": "MOLLES", - "nomCommune": "MOLLES" + "codePostal": "02880", + "codeCommune": "02739", + "libelleAcheminement": "TERNY SORNY", + "nomCommune": "TERNY SORNY" }, { - "codePostal": "07310", - "codeCommune": "07103", - "libelleAcheminement": "ST JULIEN D INTRES", - "nomCommune": "ST JULIEN D INTRES" + "codePostal": "15140", + "codeCommune": "15202", + "libelleAcheminement": "ST MARTIN VALMEROUX", + "nomCommune": "ST MARTIN VALMEROUX" }, { - "codePostal": "03500", - "codeCommune": "03176", - "libelleAcheminement": "MONETAY SUR ALLIER", - "nomCommune": "MONETAY SUR ALLIER" + "codePostal": "16490", + "codeCommune": "16128", + "libelleAcheminement": "EPENEDE", + "nomCommune": "EPENEDE" }, { - "codePostal": "07660", - "codeCommune": "07105", - "libelleAcheminement": "ISSANLAS", - "nomCommune": "ISSANLAS" + "codePostal": "02270", + "codeCommune": "02184", + "libelleAcheminement": "CHEVRESIS MONCEAU", + "nomCommune": "CHEVRESIS MONCEAU" }, { - "codePostal": "03130", - "codeCommune": "03181", - "libelleAcheminement": "MONTCOMBROUX LES MINES", - "nomCommune": "MONTCOMBROUX LES MINES" + "codePostal": "02300", + "codeCommune": "02750", + "libelleAcheminement": "TROSLY LOIRE", + "nomCommune": "TROSLY LOIRE" }, { - "codePostal": "07470", - "codeCommune": "07106", - "libelleAcheminement": "ISSARLES", - "nomCommune": "ISSARLES" + "codePostal": "15140", + "codeCommune": "15202", + "libelleAcheminement": "ST MARTIN VALMEROUX", + "nomCommune": "ST MARTIN VALMEROUX" }, { - "codePostal": "03170", - "codeCommune": "03189", - "libelleAcheminement": "MONTVICQ", - "nomCommune": "MONTVICQ" + "codePostal": "16150", + "codeCommune": "16134", + "libelleAcheminement": "EXIDEUIL SUR VIENNE", + "nomCommune": "EXIDEUIL SUR VIENNE" }, { - "codePostal": "07260", - "codeCommune": "07110", - "libelleAcheminement": "JOYEUSE", - "nomCommune": "JOYEUSE" + "codePostal": "02400", + "codeCommune": "02187", + "libelleAcheminement": "CHIERRY", + "nomCommune": "CHIERRY" }, { - "codePostal": "03210", - "codeCommune": "03202", - "libelleAcheminement": "NOYANT D ALLIER", - "nomCommune": "NOYANT D ALLIER" + "codePostal": "02300", + "codeCommune": "02754", + "libelleAcheminement": "UGNY LE GAY", + "nomCommune": "UGNY LE GAY" }, { - "codePostal": "07150", - "codeCommune": "07113", - "libelleAcheminement": "LABASTIDE DE VIRAC", - "nomCommune": "LABASTIDE DE VIRAC" + "codePostal": "15140", + "codeCommune": "15208", + "libelleAcheminement": "ST PROJET DE SALERS", + "nomCommune": "ST PROJET DE SALERS" }, { - "codePostal": "03130", - "codeCommune": "03208", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "16700", + "codeCommune": "16136", + "libelleAcheminement": "LA FAYE", + "nomCommune": "LA FAYE" }, { - "codePostal": "07570", - "codeCommune": "07114", - "libelleAcheminement": "LABATIE D ANDAURE", - "nomCommune": "LABATIE D ANDAURE" + "codePostal": "02880", + "codeCommune": "02190", + "libelleAcheminement": "CHIVRES VAL", + "nomCommune": "CHIVRES VAL" }, { - "codePostal": "03190", - "codeCommune": "03213", - "libelleAcheminement": "REUGNY", - "nomCommune": "REUGNY" + "codePostal": "02370", + "codeCommune": "02758", + "libelleAcheminement": "VAILLY SUR AISNE", + "nomCommune": "VAILLY SUR AISNE" }, { - "codePostal": "07200", - "codeCommune": "07116", - "libelleAcheminement": "LABEGUDE", - "nomCommune": "LABEGUDE" + "codePostal": "15190", + "codeCommune": "15213", + "libelleAcheminement": "ST SATURNIN", + "nomCommune": "ST SATURNIN" }, { - "codePostal": "03240", - "codeCommune": "03214", - "libelleAcheminement": "ROCLES", - "nomCommune": "ROCLES" + "codePostal": "16730", + "codeCommune": "16138", + "libelleAcheminement": "FLEAC", + "nomCommune": "FLEAC" }, { - "codePostal": "07220", - "codeCommune": "07133", - "libelleAcheminement": "LARNAS", - "nomCommune": "LARNAS" + "codePostal": "02130", + "codeCommune": "02193", + "libelleAcheminement": "CIERGES", + "nomCommune": "CIERGES" }, { - "codePostal": "03390", - "codeCommune": "03219", - "libelleAcheminement": "ST BONNET DE FOUR", - "nomCommune": "ST BONNET DE FOUR" + "codePostal": "02200", + "codeCommune": "02767", + "libelleAcheminement": "VAUXREZIS", + "nomCommune": "VAUXREZIS" }, { - "codePostal": "48250", - "codeCommune": "07136", - "libelleAcheminement": "LAVEYRUNE", - "nomCommune": "LAVEYRUNE" + "codePostal": "15100", + "codeCommune": "15232", + "libelleAcheminement": "TANAVELLE", + "nomCommune": "TANAVELLE" }, { - "codePostal": "03250", - "codeCommune": "03224", - "libelleAcheminement": "ST CLEMENT", - "nomCommune": "ST CLEMENT" + "codePostal": "16200", + "codeCommune": "16139", + "libelleAcheminement": "FLEURAC", + "nomCommune": "FLEURAC" }, { - "codePostal": "07170", - "codeCommune": "07138", - "libelleAcheminement": "LAVILLEDIEU", - "nomCommune": "LAVILLEDIEU" + "codePostal": "02000", + "codeCommune": "02196", + "libelleAcheminement": "CLACY ET THIERRET", + "nomCommune": "CLACY ET THIERRET" }, { - "codePostal": "03400", - "codeCommune": "03229", - "libelleAcheminement": "ST ENNEMOND", - "nomCommune": "ST ENNEMOND" + "codePostal": "02630", + "codeCommune": "02784", + "libelleAcheminement": "PETIT VERLY", + "nomCommune": "PETIT VERLY" }, { - "codePostal": "07200", - "codeCommune": "07141", - "libelleAcheminement": "LENTILLERES", - "nomCommune": "LENTILLERES" + "codePostal": "15400", + "codeCommune": "15246", + "libelleAcheminement": "VALETTE", + "nomCommune": "VALETTE" }, { - "codePostal": "03420", - "codeCommune": "03231", - "libelleAcheminement": "ST FARGEOL", - "nomCommune": "ST FARGEOL" + "codePostal": "16230", + "codeCommune": "16141", + "libelleAcheminement": "FONTENILLE", + "nomCommune": "FONTENILLE" }, { - "codePostal": "07340", - "codeCommune": "07143", - "libelleAcheminement": "LIMONY", - "nomCommune": "LIMONY" + "codePostal": "02210", + "codeCommune": "02203", + "libelleAcheminement": "COINCY", + "nomCommune": "COINCY" }, { - "codePostal": "03310", - "codeCommune": "03233", - "libelleAcheminement": "ST GENEST", - "nomCommune": "ST GENEST" + "codePostal": "02000", + "codeCommune": "02787", + "libelleAcheminement": "VERNEUIL SUR SERRE", + "nomCommune": "VERNEUIL SUR SERRE" }, { - "codePostal": "07110", - "codeCommune": "07144", - "libelleAcheminement": "LOUBARESSE", - "nomCommune": "LOUBARESSE" + "codePostal": "15380", + "codeCommune": "15249", + "libelleAcheminement": "LE VAULMIER", + "nomCommune": "LE VAULMIER" }, { - "codePostal": "03140", - "codeCommune": "03237", - "libelleAcheminement": "ST GERMAIN DE SALLES", - "nomCommune": "ST GERMAIN DE SALLES" + "codePostal": "16140", + "codeCommune": "16144", + "libelleAcheminement": "FOUQUEURE", + "nomCommune": "FOUQUEURE" }, { - "codePostal": "07400", - "codeCommune": "07157", - "libelleAcheminement": "MEYSSE", - "nomCommune": "MEYSSE" + "codePostal": "02220", + "codeCommune": "02224", + "libelleAcheminement": "COURCELLES SUR VESLE", + "nomCommune": "COURCELLES SUR VESLE" }, { - "codePostal": "03390", - "codeCommune": "03243", - "libelleAcheminement": "ST MARCEL EN MURAT", - "nomCommune": "ST MARCEL EN MURAT" + "codePostal": "02810", + "codeCommune": "02792", + "libelleAcheminement": "VEUILLY LA POTERIE", + "nomCommune": "VEUILLY LA POTERIE" }, { - "codePostal": "07140", - "codeCommune": "07163", - "libelleAcheminement": "MONTSELGUES", - "nomCommune": "MONTSELGUES" + "codePostal": "15100", + "codeCommune": "15251", + "libelleAcheminement": "VEDRINES ST LOUP", + "nomCommune": "VEDRINES ST LOUP" }, { - "codePostal": "03370", - "codeCommune": "03249", - "libelleAcheminement": "ST PALAIS", - "nomCommune": "ST PALAIS" + "codePostal": "16200", + "codeCommune": "16153", + "libelleAcheminement": "MAINXE GONDEVILLE", + "nomCommune": "MAINXE GONDEVILLE" }, { - "codePostal": "07160", - "codeCommune": "07165", - "libelleAcheminement": "BELSENTES", - "nomCommune": "BELSENTES" + "codePostal": "02220", + "codeCommune": "02230", + "libelleAcheminement": "COUVRELLES", + "nomCommune": "COUVRELLES" }, { - "codePostal": "03160", - "codeCommune": "03251", - "libelleAcheminement": "ST PLAISIR", - "nomCommune": "ST PLAISIR" + "codePostal": "02290", + "codeCommune": "02793", + "libelleAcheminement": "VEZAPONIN", + "nomCommune": "VEZAPONIN" }, { - "codePostal": "07150", - "codeCommune": "07168", - "libelleAcheminement": "ORGNAC L AVEN", - "nomCommune": "ORGNAC L AVEN" + "codePostal": "15130", + "codeCommune": "15255", + "libelleAcheminement": "VEZAC", + "nomCommune": "VEZAC" }, { - "codePostal": "03290", - "codeCommune": "03253", - "libelleAcheminement": "ST POURCAIN SUR BESBRE", - "nomCommune": "ST POURCAIN SUR BESBRE" + "codePostal": "16450", + "codeCommune": "16157", + "libelleAcheminement": "LE GRAND MADIEU", + "nomCommune": "LE GRAND MADIEU" }, { - "codePostal": "07450", - "codeCommune": "07173", - "libelleAcheminement": "PEREYRES", - "nomCommune": "PEREYRES" + "codePostal": "02600", + "codeCommune": "02232", + "libelleAcheminement": "COYOLLES", + "nomCommune": "COYOLLES" }, { - "codePostal": "03500", - "codeCommune": "03254", - "libelleAcheminement": "ST POURCAIN SUR SIOULE", - "nomCommune": "ST POURCAIN SUR SIOULE" + "codePostal": "02160", + "codeCommune": "02797", + "libelleAcheminement": "VIEL ARCY", + "nomCommune": "VIEL ARCY" }, { - "codePostal": "07230", - "codeCommune": "07176", - "libelleAcheminement": "PLANZOLLES", - "nomCommune": "PLANZOLLES" + "codePostal": "15160", + "codeCommune": "15256", + "libelleAcheminement": "VEZE", + "nomCommune": "VEZE" }, { - "codePostal": "03800", - "codeCommune": "03255", - "libelleAcheminement": "ST PRIEST D ANDELOT", - "nomCommune": "ST PRIEST D ANDELOT" + "codePostal": "16490", + "codeCommune": "16164", + "libelleAcheminement": "HIESSE", + "nomCommune": "HIESSE" }, { - "codePostal": "07000", - "codeCommune": "07179", - "libelleAcheminement": "POURCHERES", - "nomCommune": "POURCHERES" + "codePostal": "02650", + "codeCommune": "02239", + "libelleAcheminement": "CREZANCY", + "nomCommune": "CREZANCY" }, { - "codePostal": "03420", - "codeCommune": "03261", - "libelleAcheminement": "STE THERENCE", - "nomCommune": "STE THERENCE" + "codePostal": "02540", + "codeCommune": "02798", + "libelleAcheminement": "VIELS MAISONS", + "nomCommune": "VIELS MAISONS" }, { - "codePostal": "07120", - "codeCommune": "07183", - "libelleAcheminement": "PRADONS", - "nomCommune": "PRADONS" + "codePostal": "15130", + "codeCommune": "15257", + "libelleAcheminement": "VEZELS ROUSSY", + "nomCommune": "VEZELS ROUSSY" }, { - "codePostal": "03410", - "codeCommune": "03262", - "libelleAcheminement": "ST VICTOR", - "nomCommune": "ST VICTOR" + "codePostal": "16100", + "codeCommune": "16169", + "libelleAcheminement": "JAVREZAC", + "nomCommune": "JAVREZAC" }, { - "codePostal": "07110", - "codeCommune": "07187", - "libelleAcheminement": "PRUNET", - "nomCommune": "PRUNET" + "codePostal": "02120", + "codeCommune": "02244", + "libelleAcheminement": "CRUPILLY", + "nomCommune": "CRUPILLY" }, { - "codePostal": "03140", - "codeCommune": "03277", - "libelleAcheminement": "TARGET", - "nomCommune": "TARGET" + "codePostal": "02210", + "codeCommune": "02799", + "libelleAcheminement": "VIERZY", + "nomCommune": "VIERZY" }, { - "codePostal": "07400", - "codeCommune": "07191", - "libelleAcheminement": "ROCHEMAURE", - "nomCommune": "ROCHEMAURE" + "codePostal": "15800", + "codeCommune": "15258", + "libelleAcheminement": "VIC SUR CERE", + "nomCommune": "VIC SUR CERE" }, { - "codePostal": "03230", - "codeCommune": "03283", - "libelleAcheminement": "THIEL SUR ACOLIN", - "nomCommune": "THIEL SUR ACOLIN" + "codePostal": "16190", + "codeCommune": "16170", + "libelleAcheminement": "JUIGNAC", + "nomCommune": "JUIGNAC" }, { - "codePostal": "07310", - "codeCommune": "07195", - "libelleAcheminement": "LA ROCHETTE", - "nomCommune": "LA ROCHETTE" + "codePostal": "02880", + "codeCommune": "02245", + "libelleAcheminement": "CUFFIES", + "nomCommune": "CUFFIES" }, { - "codePostal": "03430", - "codeCommune": "03285", - "libelleAcheminement": "TORTEZAIS", - "nomCommune": "TORTEZAIS" + "codePostal": "02540", + "codeCommune": "02800", + "libelleAcheminement": "VIFFORT", + "nomCommune": "VIFFORT" }, { - "codePostal": "07110", - "codeCommune": "07196", - "libelleAcheminement": "ROCLES", - "nomCommune": "ROCLES" + "codePostal": "15220", + "codeCommune": "15264", + "libelleAcheminement": "VITRAC", + "nomCommune": "VITRAC" }, { - "codePostal": "03380", - "codeCommune": "03288", - "libelleAcheminement": "TREIGNAT", - "nomCommune": "TREIGNAT" + "codePostal": "16250", + "codeCommune": "16175", + "libelleAcheminement": "VAL DES VIGNES", + "nomCommune": "VAL DES VIGNES" }, { - "codePostal": "07100", - "codeCommune": "07197", - "libelleAcheminement": "ROIFFIEUX", - "nomCommune": "ROIFFIEUX" + "codePostal": "02220", + "codeCommune": "02249", + "libelleAcheminement": "CUIRY HOUSSE", + "nomCommune": "CUIRY HOUSSE" }, { - "codePostal": "03220", - "codeCommune": "03289", - "libelleAcheminement": "TRETEAU", - "nomCommune": "TRETEAU" + "codePostal": "02200", + "codeCommune": "02805", + "libelleAcheminement": "VILLENEUVE ST GERMAIN", + "nomCommune": "VILLENEUVE ST GERMAIN" }, { - "codePostal": "07210", - "codeCommune": "07219", - "libelleAcheminement": "ST BAUZILE", - "nomCommune": "ST BAUZILE" + "codePostal": "15210", + "codeCommune": "15265", + "libelleAcheminement": "YDES", + "nomCommune": "YDES" }, { - "codePostal": "03240", - "codeCommune": "03292", - "libelleAcheminement": "TRONGET", - "nomCommune": "TRONGET" + "codePostal": "16250", + "codeCommune": "16175", + "libelleAcheminement": "VAL DES VIGNES", + "nomCommune": "VAL DES VIGNES" }, { - "codePostal": "07160", - "codeCommune": "07220", - "libelleAcheminement": "ST CHRISTOL", - "nomCommune": "ST CHRISTOL" + "codePostal": "02220", + "codeCommune": "02255", + "libelleAcheminement": "CYS LA COMMUNE", + "nomCommune": "CYS LA COMMUNE" }, { - "codePostal": "03140", - "codeCommune": "03294", - "libelleAcheminement": "USSEL D ALLIER", - "nomCommune": "USSEL D ALLIER" + "codePostal": "02130", + "codeCommune": "02806", + "libelleAcheminement": "VILLENEUVE SUR FERE", + "nomCommune": "VILLENEUVE SUR FERE" }, { - "codePostal": "07200", - "codeCommune": "07230", - "libelleAcheminement": "ST ETIENNE DE BOULOGNE", - "nomCommune": "ST ETIENNE DE BOULOGNE" + "codePostal": "16490", + "codeCommune": "16009", + "libelleAcheminement": "AMBERNAC", + "nomCommune": "AMBERNAC" }, { - "codePostal": "03360", - "codeCommune": "03296", - "libelleAcheminement": "VALIGNY", - "nomCommune": "VALIGNY" + "codePostal": "16300", + "codeCommune": "16186", + "libelleAcheminement": "LIGNIERES AMBLEVILLE", + "nomCommune": "LIGNIERES AMBLEVILLE" }, { - "codePostal": "07590", - "codeCommune": "07232", - "libelleAcheminement": "ST ETIENNE DE LUGDARES", - "nomCommune": "ST ETIENNE DE LUGDARES" + "codePostal": "02800", + "codeCommune": "02260", + "libelleAcheminement": "DANIZY", + "nomCommune": "DANIZY" }, { - "codePostal": "03150", - "codeCommune": "03298", - "libelleAcheminement": "VARENNES SUR ALLIER", - "nomCommune": "VARENNES SUR ALLIER" + "codePostal": "02420", + "codeCommune": "02808", + "libelleAcheminement": "VILLERET", + "nomCommune": "VILLERET" }, { - "codePostal": "07510", - "codeCommune": "07235", - "libelleAcheminement": "STE EULALIE", - "nomCommune": "STE EULALIE" + "codePostal": "16390", + "codeCommune": "16020", + "libelleAcheminement": "AUBETERRE SUR DRONNE", + "nomCommune": "AUBETERRE SUR DRONNE" }, { - "codePostal": "03220", - "codeCommune": "03300", - "libelleAcheminement": "VAUMAS", - "nomCommune": "VAUMAS" + "codePostal": "16100", + "codeCommune": "16193", + "libelleAcheminement": "LOUZAC ST ANDRE", + "nomCommune": "LOUZAC ST ANDRE" }, { - "codePostal": "07360", - "codeCommune": "07237", - "libelleAcheminement": "ST FORTUNAT SUR EYRIEUX", - "nomCommune": "ST FORTUNAT SUR EYRIEUX" + "codePostal": "02600", + "codeCommune": "02267", + "libelleAcheminement": "DOMMIERS", + "nomCommune": "DOMMIERS" }, { - "codePostal": "03200", - "codeCommune": "03310", - "libelleAcheminement": "VICHY", - "nomCommune": "VICHY" + "codePostal": "02590", + "codeCommune": "02815", + "libelleAcheminement": "VILLERS ST CHRISTOPHE", + "nomCommune": "VILLERS ST CHRISTOPHE" }, { - "codePostal": "07240", - "codeCommune": "07244", - "libelleAcheminement": "ST JEAN CHAMBRE", - "nomCommune": "ST JEAN CHAMBRE" + "codePostal": "16700", + "codeCommune": "16031", + "libelleAcheminement": "BARRO", + "nomCommune": "BARRO" }, { - "codePostal": "03450", - "codeCommune": "03311", - "libelleAcheminement": "VICQ", - "nomCommune": "VICQ" + "codePostal": "16450", + "codeCommune": "16195", + "libelleAcheminement": "LUSSAC", + "nomCommune": "LUSSAC" }, { - "codePostal": "07580", - "codeCommune": "07247", - "libelleAcheminement": "ST JEAN LE CENTENIER", - "nomCommune": "ST JEAN LE CENTENIER" + "codePostal": "02310", + "codeCommune": "02268", + "libelleAcheminement": "DOMPTIN", + "nomCommune": "DOMPTIN" }, { - "codePostal": "03370", - "codeCommune": "03317", - "libelleAcheminement": "VIPLAIX", - "nomCommune": "VIPLAIX" + "codePostal": "02220", + "codeCommune": "02817", + "libelleAcheminement": "VILLE SAVOYE", + "nomCommune": "VILLE SAVOYE" }, { - "codePostal": "07190", - "codeCommune": "07253", - "libelleAcheminement": "ST JULIEN DU GUA", - "nomCommune": "ST JULIEN DU GUA" + "codePostal": "16350", + "codeCommune": "16038", + "libelleAcheminement": "BENEST", + "nomCommune": "BENEST" }, { - "codePostal": "03140", - "codeCommune": "03319", - "libelleAcheminement": "VOUSSAC", - "nomCommune": "VOUSSAC" + "codePostal": "16600", + "codeCommune": "16199", + "libelleAcheminement": "MAGNAC SUR TOUVRE", + "nomCommune": "MAGNAC SUR TOUVRE" }, { - "codePostal": "07800", - "codeCommune": "07261", - "libelleAcheminement": "ST LAURENT DU PAPE", - "nomCommune": "ST LAURENT DU PAPE" + "codePostal": "02450", + "codeCommune": "02269", + "libelleAcheminement": "DORENGT", + "nomCommune": "DORENGT" }, { - "codePostal": "04400", - "codeCommune": "04019", - "libelleAcheminement": "BARCELONNETTE", - "nomCommune": "BARCELONNETTE" + "codePostal": "02860", + "codeCommune": "02824", + "libelleAcheminement": "VORGES", + "nomCommune": "VORGES" }, { - "codePostal": "07310", - "codeCommune": "07267", - "libelleAcheminement": "ST MARTIAL", - "nomCommune": "ST MARTIAL" + "codePostal": "16250", + "codeCommune": "16041", + "libelleAcheminement": "BESSAC", + "nomCommune": "BESSAC" }, { - "codePostal": "04380", - "codeCommune": "04021", - "libelleAcheminement": "BARRAS", - "nomCommune": "BARRAS" + "codePostal": "16230", + "codeCommune": "16200", + "libelleAcheminement": "MAINE DE BOIXE", + "nomCommune": "MAINE DE BOIXE" }, { - "codePostal": "07310", - "codeCommune": "07269", - "libelleAcheminement": "ST MARTIN DE VALAMAS", - "nomCommune": "ST MARTIN DE VALAMAS" + "codePostal": "02350", + "codeCommune": "02274", + "libelleAcheminement": "EBOULEAU", + "nomCommune": "EBOULEAU" }, { - "codePostal": "04250", - "codeCommune": "04023", - "libelleAcheminement": "BAYONS", - "nomCommune": "BAYONS" + "codePostal": "02880", + "codeCommune": "02829", + "libelleAcheminement": "VUILLERY", + "nomCommune": "VUILLERY" }, { - "codePostal": "07170", - "codeCommune": "07273", - "libelleAcheminement": "ST MAURICE D IBIE", - "nomCommune": "ST MAURICE D IBIE" + "codePostal": "16250", + "codeCommune": "16046", + "libelleAcheminement": "COTEAUX DU BLANZACAIS", + "nomCommune": "COTEAUX DU BLANZACAIS" }, { - "codePostal": "04250", - "codeCommune": "04023", - "libelleAcheminement": "BAYONS", - "nomCommune": "BAYONS" + "codePostal": "16120", + "codeCommune": "16204", + "libelleAcheminement": "BELLEVIGNE", + "nomCommune": "BELLEVIGNE" }, { - "codePostal": "07260", - "codeCommune": "07275", - "libelleAcheminement": "ST MELANY", - "nomCommune": "ST MELANY" + "codePostal": "02400", + "codeCommune": "02280", + "libelleAcheminement": "EPIEDS", + "nomCommune": "EPIEDS" }, { - "codePostal": "04420", - "codeCommune": "04024", - "libelleAcheminement": "BEAUJEU", - "nomCommune": "BEAUJEU" + "codePostal": "02500", + "codeCommune": "02833", + "libelleAcheminement": "WIMY", + "nomCommune": "WIMY" }, { - "codePostal": "07200", - "codeCommune": "07277", - "libelleAcheminement": "ST MICHEL DE BOULOGNE", - "nomCommune": "ST MICHEL DE BOULOGNE" + "codePostal": "16250", + "codeCommune": "16046", + "libelleAcheminement": "COTEAUX DU BLANZACAIS", + "nomCommune": "COTEAUX DU BLANZACAIS" }, { - "codePostal": "04340", - "codeCommune": "04033", - "libelleAcheminement": "UBAYE SERRE PONCON", - "nomCommune": "UBAYE SERRE PONCON" + "codePostal": "16140", + "codeCommune": "16221", + "libelleAcheminement": "MONS", + "nomCommune": "MONS" }, { - "codePostal": "07360", - "codeCommune": "07278", - "libelleAcheminement": "ST MICHEL DE CHABRILLANOUX", - "nomCommune": "ST MICHEL DE CHABRILLANOUX" + "codePostal": "02420", + "codeCommune": "02291", + "libelleAcheminement": "ESTREES", + "nomCommune": "ESTREES" }, { - "codePostal": "04120", - "codeCommune": "04039", - "libelleAcheminement": "CASTELLANE", - "nomCommune": "CASTELLANE" + "codePostal": "03200", + "codeCommune": "03001", + "libelleAcheminement": "ABREST", + "nomCommune": "ABREST" }, { - "codePostal": "07220", - "codeCommune": "07300", - "libelleAcheminement": "ST THOME", - "nomCommune": "ST THOME" + "codePostal": "16480", + "codeCommune": "16048", + "libelleAcheminement": "BOISBRETEAU", + "nomCommune": "BOISBRETEAU" }, { - "codePostal": "04320", - "codeCommune": "04042", - "libelleAcheminement": "CASTELLET LES SAUSSES", - "nomCommune": "CASTELLET LES SAUSSES" + "codePostal": "16310", + "codeCommune": "16225", + "libelleAcheminement": "MONTEMBOEUF", + "nomCommune": "MONTEMBOEUF" }, { - "codePostal": "07610", - "codeCommune": "07312", - "libelleAcheminement": "SECHERAS", - "nomCommune": "SECHERAS" + "codePostal": "02400", + "codeCommune": "02297", + "libelleAcheminement": "ETREPILLY", + "nomCommune": "ETREPILLY" }, { - "codePostal": "04280", - "codeCommune": "04045", - "libelleAcheminement": "CERESTE", - "nomCommune": "CERESTE" + "codePostal": "03250", + "codeCommune": "03008", + "libelleAcheminement": "ARRONNES", + "nomCommune": "ARRONNES" }, { - "codePostal": "07340", - "codeCommune": "07313", - "libelleAcheminement": "SERRIERES", - "nomCommune": "SERRIERES" + "codePostal": "16300", + "codeCommune": "16062", + "libelleAcheminement": "BRIE SOUS BARBEZIEUX", + "nomCommune": "BRIE SOUS BARBEZIEUX" }, { - "codePostal": "04660", - "codeCommune": "04047", - "libelleAcheminement": "CHAMPTERCIER", - "nomCommune": "CHAMPTERCIER" + "codePostal": "16120", + "codeCommune": "16233", + "libelleAcheminement": "MOSNAC ST SIMEUX", + "nomCommune": "MOSNAC ST SIMEUX" }, { - "codePostal": "07140", - "codeCommune": "07334", - "libelleAcheminement": "LES VANS", - "nomCommune": "LES VANS" + "codePostal": "02100", + "codeCommune": "02303", + "libelleAcheminement": "FAYET", + "nomCommune": "FAYET" }, { - "codePostal": "04600", - "codeCommune": "04049", - "libelleAcheminement": "CHATEAU ARNOUX ST AUBAN", - "nomCommune": "CHATEAU ARNOUX ST AUBAN" + "codePostal": "03210", + "codeCommune": "03012", + "libelleAcheminement": "AUTRY ISSARDS", + "nomCommune": "AUTRY ISSARDS" }, { - "codePostal": "07140", - "codeCommune": "07334", - "libelleAcheminement": "LES VANS", - "nomCommune": "LES VANS" + "codePostal": "16420", + "codeCommune": "16064", + "libelleAcheminement": "BRIGUEUIL", + "nomCommune": "BRIGUEUIL" }, { - "codePostal": "04300", - "codeCommune": "04068", - "libelleAcheminement": "DAUPHIN", - "nomCommune": "DAUPHIN" + "codePostal": "16290", + "codeCommune": "16234", + "libelleAcheminement": "MOULIDARS", + "nomCommune": "MOULIDARS" }, { - "codePostal": "07430", - "codeCommune": "07337", - "libelleAcheminement": "VERNOSC LES ANNONAY", - "nomCommune": "VERNOSC LES ANNONAY" + "codePostal": "02460", + "codeCommune": "02307", + "libelleAcheminement": "LA FERTE MILON", + "nomCommune": "LA FERTE MILON" }, { - "codePostal": "04120", - "codeCommune": "04069", - "libelleAcheminement": "DEMANDOLX", - "nomCommune": "DEMANDOLX" + "codePostal": "03140", + "codeCommune": "03016", + "libelleAcheminement": "BARBERIER", + "nomCommune": "BARBERIER" }, { - "codePostal": "07110", - "codeCommune": "07343", - "libelleAcheminement": "VINEZAC", - "nomCommune": "VINEZAC" + "codePostal": "16210", + "codeCommune": "16073", + "libelleAcheminement": "CHALAIS", + "nomCommune": "CHALAIS" }, { - "codePostal": "04420", - "codeCommune": "04072", - "libelleAcheminement": "DRAIX", - "nomCommune": "DRAIX" + "codePostal": "16440", + "codeCommune": "16236", + "libelleAcheminement": "MOUTHIERS SUR BOEME", + "nomCommune": "MOUTHIERS SUR BOEME" }, { - "codePostal": "08390", - "codeCommune": "08023", - "libelleAcheminement": "ARTAISE LE VIVIER", - "nomCommune": "ARTAISE LE VIVIER" + "codePostal": "02600", + "codeCommune": "02316", + "libelleAcheminement": "FLEURY", + "nomCommune": "FLEURY" }, { - "codePostal": "04000", - "codeCommune": "04074", - "libelleAcheminement": "ENTRAGES", - "nomCommune": "ENTRAGES" + "codePostal": "03300", + "codeCommune": "03033", + "libelleAcheminement": "BOST", + "nomCommune": "BOST" }, { - "codePostal": "08190", - "codeCommune": "08024", - "libelleAcheminement": "ASFELD", - "nomCommune": "ASFELD" + "codePostal": "16260", + "codeCommune": "16085", + "libelleAcheminement": "CHASSENEUIL SUR BONNIEURE", + "nomCommune": "CHASSENEUIL SUR BONNIEURE" }, { - "codePostal": "04200", - "codeCommune": "04075", - "libelleAcheminement": "ENTREPIERRES", - "nomCommune": "ENTREPIERRES" + "codePostal": "16390", + "codeCommune": "16240", + "libelleAcheminement": "NABINAUD", + "nomCommune": "NABINAUD" }, { - "codePostal": "08130", - "codeCommune": "08025", - "libelleAcheminement": "ATTIGNY", - "nomCommune": "ATTIGNY" + "codePostal": "02110", + "codeCommune": "02319", + "libelleAcheminement": "FONSOMME", + "nomCommune": "FONSOMME" }, { - "codePostal": "04700", - "codeCommune": "04077", - "libelleAcheminement": "ENTREVENNES", - "nomCommune": "ENTREVENNES" + "codePostal": "03000", + "codeCommune": "03040", + "libelleAcheminement": "BRESSOLLES", + "nomCommune": "BRESSOLLES" }, { - "codePostal": "08320", - "codeCommune": "08028", - "libelleAcheminement": "AUBRIVES", - "nomCommune": "AUBRIVES" + "codePostal": "16460", + "codeCommune": "16095", + "libelleAcheminement": "CHENON", + "nomCommune": "CHENON" }, { - "codePostal": "04230", - "codeCommune": "04087", - "libelleAcheminement": "FONTIENNE", - "nomCommune": "FONTIENNE" + "codePostal": "16700", + "codeCommune": "16242", + "libelleAcheminement": "NANTEUIL EN VALLEE", + "nomCommune": "NANTEUIL EN VALLEE" }, { - "codePostal": "08370", - "codeCommune": "08029", - "libelleAcheminement": "AUFLANCE", - "nomCommune": "AUFLANCE" + "codePostal": "02680", + "codeCommune": "02320", + "libelleAcheminement": "FONTAINE LES CLERCS", + "nomCommune": "FONTAINE LES CLERCS" }, { - "codePostal": "04300", - "codeCommune": "04088", - "libelleAcheminement": "FORCALQUIER", - "nomCommune": "FORCALQUIER" + "codePostal": "03700", + "codeCommune": "03044", + "libelleAcheminement": "BRUGHEAS", + "nomCommune": "BRUGHEAS" }, { - "codePostal": "08400", - "codeCommune": "08031", - "libelleAcheminement": "AURE", - "nomCommune": "AURE" + "codePostal": "16320", + "codeCommune": "16103", + "libelleAcheminement": "COMBIERS", + "nomCommune": "COMBIERS" }, { - "codePostal": "04510", - "codeCommune": "04108", - "libelleAcheminement": "MALIJAI", - "nomCommune": "MALIJAI" + "codePostal": "16440", + "codeCommune": "16244", + "libelleAcheminement": "NERSAC", + "nomCommune": "NERSAC" }, { - "codePostal": "08210", - "codeCommune": "08034", - "libelleAcheminement": "AUTRECOURT ET POURRON", - "nomCommune": "AUTRECOURT ET POURRON" + "codePostal": "02650", + "codeCommune": "02328", + "libelleAcheminement": "FOSSOY", + "nomCommune": "FOSSOY" }, { - "codePostal": "04100", - "codeCommune": "04112", - "libelleAcheminement": "MANOSQUE", - "nomCommune": "MANOSQUE" + "codePostal": "03370", + "codeCommune": "03051", + "libelleAcheminement": "CHAMBERAT", + "nomCommune": "CHAMBERAT" }, { - "codePostal": "08250", - "codeCommune": "08036", - "libelleAcheminement": "AUTRY", - "nomCommune": "AUTRY" + "codePostal": "16240", + "codeCommune": "16127", + "libelleAcheminement": "EMPURE", + "nomCommune": "EMPURE" }, { - "codePostal": "04240", - "codeCommune": "04115", - "libelleAcheminement": "MEAILLES", - "nomCommune": "MEAILLES" + "codePostal": "16140", + "codeCommune": "16248", + "libelleAcheminement": "ORADOUR", + "nomCommune": "ORADOUR" }, { - "codePostal": "08300", - "codeCommune": "08048", - "libelleAcheminement": "BARBY", - "nomCommune": "BARBY" + "codePostal": "02760", + "codeCommune": "02330", + "libelleAcheminement": "FRANCILLY SELENCY", + "nomCommune": "FRANCILLY SELENCY" }, { - "codePostal": "04510", - "codeCommune": "04122", - "libelleAcheminement": "MIRABEAU", - "nomCommune": "MIRABEAU" + "codePostal": "03220", + "codeCommune": "03071", + "libelleAcheminement": "CHAVROCHES", + "nomCommune": "CHAVROCHES" }, { - "codePostal": "08240", - "codeCommune": "08049", - "libelleAcheminement": "BAR LES BUZANCY", - "nomCommune": "BAR LES BUZANCY" + "codePostal": "16230", + "codeCommune": "16140", + "libelleAcheminement": "FONTCLAIREAU", + "nomCommune": "FONTCLAIREAU" }, { - "codePostal": "04200", - "codeCommune": "04140", - "libelleAcheminement": "LES OMERGUES", - "nomCommune": "LES OMERGUES" + "codePostal": "16240", + "codeCommune": "16253", + "libelleAcheminement": "PAIZAY NAUDOUIN EMBOURIE", + "nomCommune": "PAIZAY NAUDOUIN EMBOURIE" }, { - "codePostal": "08140", - "codeCommune": "08053", - "libelleAcheminement": "BAZEILLES", - "nomCommune": "BAZEILLES" + "codePostal": "02270", + "codeCommune": "02338", + "libelleAcheminement": "FROIDMONT COHARTILLE", + "nomCommune": "FROIDMONT COHARTILLE" }, { - "codePostal": "04120", - "codeCommune": "04144", - "libelleAcheminement": "LA PALUD SUR VERDON", - "nomCommune": "LA PALUD SUR VERDON" + "codePostal": "03210", + "codeCommune": "03073", + "libelleAcheminement": "CHEMILLY", + "nomCommune": "CHEMILLY" }, { - "codePostal": "08140", - "codeCommune": "08053", - "libelleAcheminement": "BAZEILLES", - "nomCommune": "BAZEILLES" + "codePostal": "16130", + "codeCommune": "16151", + "libelleAcheminement": "GENTE", + "nomCommune": "GENTE" }, { - "codePostal": "04200", - "codeCommune": "04145", - "libelleAcheminement": "PEIPIN", - "nomCommune": "PEIPIN" + "codePostal": "16110", + "codeCommune": "16269", + "libelleAcheminement": "PRANZAC", + "nomCommune": "PRANZAC" }, { - "codePostal": "08300", - "codeCommune": "08060", - "libelleAcheminement": "BERGNICOURT", - "nomCommune": "BERGNICOURT" + "codePostal": "02140", + "codeCommune": "02341", + "libelleAcheminement": "GERCY", + "nomCommune": "GERCY" }, { - "codePostal": "04340", - "codeCommune": "04161", - "libelleAcheminement": "MEOLANS REVEL", - "nomCommune": "MEOLANS REVEL" + "codePostal": "03470", + "codeCommune": "03086", + "libelleAcheminement": "COULANGES", + "nomCommune": "COULANGES" }, { - "codePostal": "08290", - "codeCommune": "08073", - "libelleAcheminement": "BOSSUS LES RUMIGNY", - "nomCommune": "BOSSUS LES RUMIGNY" + "codePostal": "16380", + "codeCommune": "16158", + "libelleAcheminement": "GRASSAC", + "nomCommune": "GRASSAC" }, { - "codePostal": "04500", - "codeCommune": "04166", - "libelleAcheminement": "RIEZ", - "nomCommune": "RIEZ" + "codePostal": "16110", + "codeCommune": "16282", + "libelleAcheminement": "LA ROCHETTE", + "nomCommune": "LA ROCHETTE" }, { - "codePostal": "08250", - "codeCommune": "08074", - "libelleAcheminement": "BOUCONVILLE", - "nomCommune": "BOUCONVILLE" + "codePostal": "02440", + "codeCommune": "02345", + "libelleAcheminement": "GIBERCOURT", + "nomCommune": "GIBERCOURT" }, { - "codePostal": "04000", - "codeCommune": "04167", - "libelleAcheminement": "LA ROBINE SUR GALABRE", - "nomCommune": "LA ROBINE SUR GALABRE" + "codePostal": "03240", + "codeCommune": "03099", + "libelleAcheminement": "DEUX CHAISES", + "nomCommune": "DEUX CHAISES" }, { - "codePostal": "08230", - "codeCommune": "08078", - "libelleAcheminement": "BOURG FIDELE", - "nomCommune": "BOURG FIDELE" + "codePostal": "16560", + "codeCommune": "16168", + "libelleAcheminement": "JAULDES", + "nomCommune": "JAULDES" }, { - "codePostal": "04000", - "codeCommune": "04167", - "libelleAcheminement": "LA ROBINE SUR GALABRE", - "nomCommune": "LA ROBINE SUR GALABRE" + "codePostal": "16210", + "codeCommune": "16284", + "libelleAcheminement": "ROUFFIAC", + "nomCommune": "ROUFFIAC" }, { - "codePostal": "08450", - "codeCommune": "08088", - "libelleAcheminement": "BULSON", - "nomCommune": "BULSON" + "codePostal": "02350", + "codeCommune": "02346", + "libelleAcheminement": "GIZY", + "nomCommune": "GIZY" }, { - "codePostal": "04000", - "codeCommune": "04167", - "libelleAcheminement": "LA ROBINE SUR GALABRE", - "nomCommune": "LA ROBINE SUR GALABRE" + "codePostal": "03290", + "codeCommune": "03100", + "libelleAcheminement": "DIOU", + "nomCommune": "DIOU" }, { - "codePostal": "08160", - "codeCommune": "08096", - "libelleAcheminement": "CHALANDRY ELAIRE", - "nomCommune": "CHALANDRY ELAIRE" + "codePostal": "16230", + "codeCommune": "16173", + "libelleAcheminement": "JUILLE", + "nomCommune": "JUILLE" }, { - "codePostal": "04000", - "codeCommune": "04167", - "libelleAcheminement": "LA ROBINE SUR GALABRE", - "nomCommune": "LA ROBINE SUR GALABRE" + "codePostal": "16310", + "codeCommune": "16289", + "libelleAcheminement": "ROUSSINES", + "nomCommune": "ROUSSINES" }, { - "codePostal": "08430", - "codeCommune": "08099", - "libelleAcheminement": "CHAMPIGNEUL SUR VENCE", - "nomCommune": "CHAMPIGNEUL SUR VENCE" + "codePostal": "02350", + "codeCommune": "02350", + "libelleAcheminement": "GOUDELANCOURT LES PIERREPONT", + "nomCommune": "GOUDELANCOURT LES PIERREPONT" }, { - "codePostal": "04120", - "codeCommune": "04171", - "libelleAcheminement": "ROUGON", - "nomCommune": "ROUGON" + "codePostal": "03410", + "codeCommune": "03101", + "libelleAcheminement": "DOMERAT", + "nomCommune": "DOMERAT" }, { - "codePostal": "08260", - "codeCommune": "08100", - "libelleAcheminement": "CHAMPLIN", - "nomCommune": "CHAMPLIN" + "codePostal": "16200", + "codeCommune": "16174", + "libelleAcheminement": "JULIENNE", + "nomCommune": "JULIENNE" }, { - "codePostal": "04410", - "codeCommune": "04184", - "libelleAcheminement": "ST JURS", - "nomCommune": "ST JURS" + "codePostal": "16120", + "codeCommune": "16297", + "libelleAcheminement": "GRAVES ST AMANT", + "nomCommune": "GRAVES ST AMANT" }, { - "codePostal": "08150", - "codeCommune": "08110", - "libelleAcheminement": "LE CHATELET SUR SORMONNE", - "nomCommune": "LE CHATELET SUR SORMONNE" + "codePostal": "02680", + "codeCommune": "02359", + "libelleAcheminement": "GRUGIES", + "nomCommune": "GRUGIES" }, { - "codePostal": "04300", - "codeCommune": "04190", - "libelleAcheminement": "ST MARTIN LES EAUX", - "nomCommune": "ST MARTIN LES EAUX" + "codePostal": "03290", + "codeCommune": "03102", + "libelleAcheminement": "DOMPIERRE SUR BESBRE", + "nomCommune": "DOMPIERRE SUR BESBRE" }, { - "codePostal": "08220", - "codeCommune": "08113", - "libelleAcheminement": "CHAUMONT PORCIEN", - "nomCommune": "CHAUMONT PORCIEN" + "codePostal": "16310", + "codeCommune": "16183", + "libelleAcheminement": "LESIGNAC DURAND", + "nomCommune": "LESIGNAC DURAND" }, { - "codePostal": "04270", - "codeCommune": "04204", - "libelleAcheminement": "SENEZ", - "nomCommune": "SENEZ" + "codePostal": "16120", + "codeCommune": "16297", + "libelleAcheminement": "GRAVES ST AMANT", + "nomCommune": "GRAVES ST AMANT" }, { - "codePostal": "08450", - "codeCommune": "08115", - "libelleAcheminement": "CHEMERY CHEHERY", - "nomCommune": "CHEMERY CHEHERY" + "codePostal": "02300", + "codeCommune": "02363", + "libelleAcheminement": "GUNY", + "nomCommune": "GUNY" }, { - "codePostal": "04330", - "codeCommune": "04214", - "libelleAcheminement": "TARTONNE", - "nomCommune": "TARTONNE" + "codePostal": "03310", + "codeCommune": "03106", + "libelleAcheminement": "DURDAT LAREQUILLE", + "nomCommune": "DURDAT LAREQUILLE" }, { - "codePostal": "08600", - "codeCommune": "08122", - "libelleAcheminement": "CHOOZ", - "nomCommune": "CHOOZ" + "codePostal": "16310", + "codeCommune": "16188", + "libelleAcheminement": "LE LINDOIS", + "nomCommune": "LE LINDOIS" }, { - "codePostal": "04380", - "codeCommune": "04217", - "libelleAcheminement": "THOARD", - "nomCommune": "THOARD" + "codePostal": "16170", + "codeCommune": "16298", + "libelleAcheminement": "ST AMANT DE NOUERE", + "nomCommune": "ST AMANT DE NOUERE" }, { - "codePostal": "08460", - "codeCommune": "08124", - "libelleAcheminement": "CLAVY WARBY", - "nomCommune": "CLAVY WARBY" + "codePostal": "02600", + "codeCommune": "02368", + "libelleAcheminement": "HARAMONT", + "nomCommune": "HARAMONT" }, { - "codePostal": "04400", - "codeCommune": "04226", - "libelleAcheminement": "UVERNET FOURS", - "nomCommune": "UVERNET FOURS" + "codePostal": "03450", + "codeCommune": "03107", + "libelleAcheminement": "EBREUIL", + "nomCommune": "EBREUIL" }, { - "codePostal": "08360", - "codeCommune": "08126", - "libelleAcheminement": "CONDE LES HERPY", - "nomCommune": "CONDE LES HERPY" + "codePostal": "16270", + "codeCommune": "16192", + "libelleAcheminement": "TERRES DE HAUTE CHARENTE", + "nomCommune": "TERRES DE HAUTE CHARENTE" }, { - "codePostal": "04110", - "codeCommune": "04227", - "libelleAcheminement": "VACHERES", - "nomCommune": "VACHERES" + "codePostal": "16230", + "codeCommune": "16307", + "libelleAcheminement": "ST CIERS SUR BONNIEURE", + "nomCommune": "ST CIERS SUR BONNIEURE" }, { - "codePostal": "08400", - "codeCommune": "08130", - "libelleAcheminement": "CONTREUVE", - "nomCommune": "CONTREUVE" + "codePostal": "02420", + "codeCommune": "02374", + "libelleAcheminement": "LEHAUCOURT", + "nomCommune": "LEHAUCOURT" }, { - "codePostal": "04200", - "codeCommune": "04229", - "libelleAcheminement": "VALBELLE", - "nomCommune": "VALBELLE" + "codePostal": "03190", + "codeCommune": "03111", + "libelleAcheminement": "ESTIVAREILLES", + "nomCommune": "ESTIVAREILLES" }, { - "codePostal": "08800", - "codeCommune": "08139", - "libelleAcheminement": "DEVILLE", - "nomCommune": "DEVILLE" + "codePostal": "16120", + "codeCommune": "16204", + "libelleAcheminement": "BELLEVIGNE", + "nomCommune": "BELLEVIGNE" }, { - "codePostal": "04140", - "codeCommune": "04237", - "libelleAcheminement": "LE VERNET", - "nomCommune": "LE VERNET" + "codePostal": "16450", + "codeCommune": "16308", + "libelleAcheminement": "ST CLAUD", + "nomCommune": "ST CLAUD" }, { - "codePostal": "08300", - "codeCommune": "08144", - "libelleAcheminement": "DOUX", - "nomCommune": "DOUX" + "codePostal": "02810", + "codeCommune": "02375", + "libelleAcheminement": "HAUTEVESNES", + "nomCommune": "HAUTEVESNES" }, { - "codePostal": "04130", - "codeCommune": "04245", - "libelleAcheminement": "VOLX", - "nomCommune": "VOLX" + "codePostal": "03270", + "codeCommune": "03126", + "libelleAcheminement": "HAUTERIVE", + "nomCommune": "HAUTERIVE" }, { - "codePostal": "08270", - "codeCommune": "08163", - "libelleAcheminement": "FAISSAULT", - "nomCommune": "FAISSAULT" + "codePostal": "16120", + "codeCommune": "16204", + "libelleAcheminement": "BELLEVIGNE", + "nomCommune": "BELLEVIGNE" }, { - "codePostal": "05260", - "codeCommune": "05004", - "libelleAcheminement": "ANCELLE", - "nomCommune": "ANCELLE" + "codePostal": "16140", + "codeCommune": "16317", + "libelleAcheminement": "ST FRAIGNE", + "nomCommune": "ST FRAIGNE" }, { - "codePostal": "08380", - "codeCommune": "08172", - "libelleAcheminement": "FLIGNY", - "nomCommune": "FLIGNY" + "codePostal": "02500", + "codeCommune": "02378", + "libelleAcheminement": "LA HERIE", + "nomCommune": "LA HERIE" }, { - "codePostal": "05190", - "codeCommune": "05022", - "libelleAcheminement": "BREZIERS", - "nomCommune": "BREZIERS" + "codePostal": "03450", + "codeCommune": "03135", + "libelleAcheminement": "LALIZOLLE", + "nomCommune": "LALIZOLLE" }, { - "codePostal": "08160", - "codeCommune": "08173", - "libelleAcheminement": "FLIZE", - "nomCommune": "FLIZE" + "codePostal": "16380", + "codeCommune": "16211", + "libelleAcheminement": "MARTHON", + "nomCommune": "MARTHON" }, { - "codePostal": "05150", - "codeCommune": "05024", - "libelleAcheminement": "VALDOULE", - "nomCommune": "VALDOULE" + "codePostal": "16460", + "codeCommune": "16318", + "libelleAcheminement": "ST FRONT", + "nomCommune": "ST FRONT" }, { - "codePostal": "08140", - "codeCommune": "08179", - "libelleAcheminement": "FRANCHEVAL", - "nomCommune": "FRANCHEVAL" + "codePostal": "02760", + "codeCommune": "02382", + "libelleAcheminement": "HOLNON", + "nomCommune": "HOLNON" }, { - "codePostal": "05150", - "codeCommune": "05024", - "libelleAcheminement": "VALDOULE", - "nomCommune": "VALDOULE" + "codePostal": "03380", + "codeCommune": "03136", + "libelleAcheminement": "LAMAIDS", + "nomCommune": "LAMAIDS" }, { - "codePostal": "08290", - "codeCommune": "08182", - "libelleAcheminement": "LE FRETY", - "nomCommune": "LE FRETY" + "codePostal": "16200", + "codeCommune": "16216", + "libelleAcheminement": "MERIGNAC", + "nomCommune": "MERIGNAC" }, { - "codePostal": "05400", - "codeCommune": "05028", - "libelleAcheminement": "CHABESTAN", - "nomCommune": "CHABESTAN" + "codePostal": "16570", + "codeCommune": "16320", + "libelleAcheminement": "ST GENIS D HIERSAC", + "nomCommune": "ST GENIS D HIERSAC" }, { - "codePostal": "08170", - "codeCommune": "08185", - "libelleAcheminement": "FUMAY", - "nomCommune": "FUMAY" + "codePostal": "02140", + "codeCommune": "02384", + "libelleAcheminement": "HOURY", + "nomCommune": "HOURY" }, { - "codePostal": "05200", - "codeCommune": "05044", - "libelleAcheminement": "CREVOUX", - "nomCommune": "CREVOUX" + "codePostal": "03150", + "codeCommune": "03137", + "libelleAcheminement": "LANGY", + "nomCommune": "LANGY" }, { - "codePostal": "08220", - "codeCommune": "08192", - "libelleAcheminement": "GIVRON", - "nomCommune": "GIVRON" + "codePostal": "16100", + "codeCommune": "16217", + "libelleAcheminement": "MERPINS", + "nomCommune": "MERPINS" }, { - "codePostal": "05300", - "codeCommune": "05047", - "libelleAcheminement": "EOURRES", - "nomCommune": "EOURRES" + "codePostal": "16700", + "codeCommune": "16321", + "libelleAcheminement": "ST GEORGES", + "nomCommune": "ST GEORGES" }, { - "codePostal": "08130", - "codeCommune": "08193", - "libelleAcheminement": "GIVRY", - "nomCommune": "GIVRY" + "codePostal": "02360", + "codeCommune": "02388", + "libelleAcheminement": "IVIERS", + "nomCommune": "IVIERS" }, { - "codePostal": "05700", - "codeCommune": "05048", - "libelleAcheminement": "L EPINE", - "nomCommune": "L EPINE" + "codePostal": "03130", + "codeCommune": "03147", + "libelleAcheminement": "LODDES", + "nomCommune": "LODDES" }, { - "codePostal": "08250", - "codeCommune": "08198", - "libelleAcheminement": "GRANDPRE", - "nomCommune": "GRANDPRE" + "codePostal": "16220", + "codeCommune": "16223", + "libelleAcheminement": "MONTBRON", + "nomCommune": "MONTBRON" }, { - "codePostal": "05320", - "codeCommune": "05063", - "libelleAcheminement": "LA GRAVE", - "nomCommune": "LA GRAVE" + "codePostal": "16700", + "codeCommune": "16325", + "libelleAcheminement": "ST GOURSON", + "nomCommune": "ST GOURSON" }, { - "codePostal": "08250", - "codeCommune": "08198", - "libelleAcheminement": "GRANDPRE", - "nomCommune": "GRANDPRE" + "codePostal": "02140", + "codeCommune": "02391", + "libelleAcheminement": "JEANTES", + "nomCommune": "JEANTES" }, { - "codePostal": "05300", - "codeCommune": "05070", - "libelleAcheminement": "LARAGNE MONTEGLIN", - "nomCommune": "LARAGNE MONTEGLIN" + "codePostal": "03500", + "codeCommune": "03149", + "libelleAcheminement": "LOUCHY MONTFAND", + "nomCommune": "LOUCHY MONTFAND" }, { - "codePostal": "08430", - "codeCommune": "08203", - "libelleAcheminement": "GUIGNICOURT SUR VENCE", - "nomCommune": "GUIGNICOURT SUR VENCE" + "codePostal": "16330", + "codeCommune": "16226", + "libelleAcheminement": "MONTIGNAC CHARENTE", + "nomCommune": "MONTIGNAC CHARENTE" }, { - "codePostal": "05130", - "codeCommune": "05074", - "libelleAcheminement": "LETTRET", - "nomCommune": "LETTRET" + "codePostal": "16100", + "codeCommune": "16330", + "libelleAcheminement": "ST LAURENT DE COGNAC", + "nomCommune": "ST LAURENT DE COGNAC" }, { - "codePostal": "08130", - "codeCommune": "08204", - "libelleAcheminement": "GUINCOURT", - "nomCommune": "GUINCOURT" + "codePostal": "02480", + "codeCommune": "02397", + "libelleAcheminement": "JUSSY", + "nomCommune": "JUSSY" }, { - "codePostal": "05400", - "codeCommune": "05075", - "libelleAcheminement": "MANTEYER", - "nomCommune": "MANTEYER" + "codePostal": "03600", + "codeCommune": "03151", + "libelleAcheminement": "LOUROUX DE BEAUNE", + "nomCommune": "LOUROUX DE BEAUNE" }, { - "codePostal": "08430", - "codeCommune": "08205", - "libelleAcheminement": "HAGNICOURT", - "nomCommune": "HAGNICOURT" + "codePostal": "16190", + "codeCommune": "16230", + "libelleAcheminement": "MONTMOREAU", + "nomCommune": "MONTMOREAU" }, { - "codePostal": "05700", - "codeCommune": "05076", - "libelleAcheminement": "MEREUIL", - "nomCommune": "MEREUIL" + "codePostal": "16700", + "codeCommune": "16335", + "libelleAcheminement": "ST MARTIN DU CLOCHER", + "nomCommune": "ST MARTIN DU CLOCHER" }, { - "codePostal": "08600", - "codeCommune": "08207", - "libelleAcheminement": "HAM SUR MEUSE", - "nomCommune": "HAM SUR MEUSE" + "codePostal": "02880", + "codeCommune": "02398", + "libelleAcheminement": "JUVIGNY", + "nomCommune": "JUVIGNY" }, { - "codePostal": "05500", - "codeCommune": "05090", - "libelleAcheminement": "LA MOTTE EN CHAMPSAUR", - "nomCommune": "LA MOTTE EN CHAMPSAUR" + "codePostal": "03330", + "codeCommune": "03152", + "libelleAcheminement": "LOUROUX DE BOUBLE", + "nomCommune": "LOUROUX DE BOUBLE" }, { - "codePostal": "08150", - "codeCommune": "08212", - "libelleAcheminement": "HARCY", - "nomCommune": "HARCY" + "codePostal": "16460", + "codeCommune": "16237", + "libelleAcheminement": "MOUTON", + "nomCommune": "MOUTON" }, { - "codePostal": "05700", - "codeCommune": "05102", - "libelleAcheminement": "LA PIARRE", - "nomCommune": "LA PIARRE" + "codePostal": "16260", + "codeCommune": "16336", + "libelleAcheminement": "ST MARY", + "nomCommune": "ST MARY" }, { - "codePostal": "08170", - "codeCommune": "08214", - "libelleAcheminement": "HARGNIES", - "nomCommune": "HARGNIES" + "codePostal": "02190", + "codeCommune": "02399", + "libelleAcheminement": "JUVINCOURT ET DAMARY", + "nomCommune": "JUVINCOURT ET DAMARY" }, { - "codePostal": "05500", - "codeCommune": "05104", - "libelleAcheminement": "POLIGNY", - "nomCommune": "POLIGNY" + "codePostal": "03420", + "codeCommune": "03161", + "libelleAcheminement": "MARCILLAT EN COMBRAILLE", + "nomCommune": "MARCILLAT EN COMBRAILLE" }, { - "codePostal": "08310", - "codeCommune": "08220", - "libelleAcheminement": "HAUVINE", - "nomCommune": "HAUVINE" + "codePostal": "16460", + "codeCommune": "16238", + "libelleAcheminement": "MOUTONNEAU", + "nomCommune": "MOUTONNEAU" }, { - "codePostal": "05190", - "codeCommune": "05127", - "libelleAcheminement": "ROUSSET", - "nomCommune": "ROUSSET" + "codePostal": "16300", + "codeCommune": "16342", + "libelleAcheminement": "ST PALAIS DU NE", + "nomCommune": "ST PALAIS DU NE" }, { - "codePostal": "08370", - "codeCommune": "08223", - "libelleAcheminement": "HERBEUVAL", - "nomCommune": "HERBEUVAL" + "codePostal": "02590", + "codeCommune": "02402", + "libelleAcheminement": "LANCHY", + "nomCommune": "LANCHY" }, { - "codePostal": "05500", - "codeCommune": "05132", - "libelleAcheminement": "ST BONNET EN CHAMPSAUR", - "nomCommune": "ST BONNET EN CHAMPSAUR" + "codePostal": "03360", + "codeCommune": "03168", + "libelleAcheminement": "MEAULNE VITRAY", + "nomCommune": "MEAULNE VITRAY" }, { - "codePostal": "08360", - "codeCommune": "08225", - "libelleAcheminement": "HERPY L ARLESIENNE", - "nomCommune": "HERPY L ARLESIENNE" + "codePostal": "16700", + "codeCommune": "16242", + "libelleAcheminement": "NANTEUIL EN VALLEE", + "nomCommune": "NANTEUIL EN VALLEE" }, { - "codePostal": "05700", - "codeCommune": "05135", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "16210", + "codeCommune": "16346", + "libelleAcheminement": "ST QUENTIN DE CHALAIS", + "nomCommune": "ST QUENTIN DE CHALAIS" }, { - "codePostal": "08190", - "codeCommune": "08229", - "libelleAcheminement": "HOUDILCOURT", - "nomCommune": "HOUDILCOURT" + "codePostal": "02140", + "codeCommune": "02404", + "libelleAcheminement": "LANDOUZY LA COUR", + "nomCommune": "LANDOUZY LA COUR" }, { - "codePostal": "05800", - "codeCommune": "05142", - "libelleAcheminement": "ST FIRMIN EN VALGODEMARD", - "nomCommune": "ST FIRMIN" + "codePostal": "03500", + "codeCommune": "03169", + "libelleAcheminement": "MEILLARD", + "nomCommune": "MEILLARD" }, { - "codePostal": "08130", - "codeCommune": "08238", - "libelleAcheminement": "JONVAL", - "nomCommune": "JONVAL" + "codePostal": "16700", + "codeCommune": "16242", + "libelleAcheminement": "NANTEUIL EN VALLEE", + "nomCommune": "NANTEUIL EN VALLEE" }, { - "codePostal": "05200", - "codeCommune": "05156", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "16290", + "codeCommune": "16348", + "libelleAcheminement": "ST SATURNIN", + "nomCommune": "ST SATURNIN" }, { - "codePostal": "08800", - "codeCommune": "08242", - "libelleAcheminement": "LAIFOUR", - "nomCommune": "LAIFOUR" + "codePostal": "02860", + "codeCommune": "02413", + "libelleAcheminement": "LAVAL EN LAONNOIS", + "nomCommune": "LAVAL EN LAONNOIS" }, { - "codePostal": "05300", - "codeCommune": "05159", - "libelleAcheminement": "SALEON", - "nomCommune": "SALEON" + "codePostal": "03340", + "codeCommune": "03171", + "libelleAcheminement": "MERCY", + "nomCommune": "MERCY" }, { - "codePostal": "08600", - "codeCommune": "08247", - "libelleAcheminement": "LANDRICHAMPS", - "nomCommune": "LANDRICHAMPS" + "codePostal": "16480", + "codeCommune": "16251", + "libelleAcheminement": "ORIOLLES", + "nomCommune": "ORIOLLES" }, { - "codePostal": "05150", - "codeCommune": "05169", - "libelleAcheminement": "SORBIERS", - "nomCommune": "SORBIERS" + "codePostal": "16220", + "codeCommune": "16353", + "libelleAcheminement": "ST SORNIN", + "nomCommune": "ST SORNIN" }, { - "codePostal": "08310", - "codeCommune": "08250", - "libelleAcheminement": "LEFFINCOURT", - "nomCommune": "LEFFINCOURT" + "codePostal": "02140", + "codeCommune": "02416", + "libelleAcheminement": "LEME", + "nomCommune": "LEME" }, { - "codePostal": "05400", - "codeCommune": "05179", - "libelleAcheminement": "VEYNES", - "nomCommune": "VEYNES" + "codePostal": "03370", + "codeCommune": "03172", + "libelleAcheminement": "MESPLES", + "nomCommune": "MESPLES" }, { - "codePostal": "08150", - "codeCommune": "08251", - "libelleAcheminement": "LEPRON LES VALLEES", - "nomCommune": "LEPRON LES VALLEES" + "codePostal": "16190", + "codeCommune": "16267", + "libelleAcheminement": "POULLIGNAC", + "nomCommune": "POULLIGNAC" }, { - "codePostal": "05100", - "codeCommune": "05183", - "libelleAcheminement": "VILLAR ST PANCRACE", - "nomCommune": "VILLAR ST PANCRACE" + "codePostal": "16700", + "codeCommune": "16361", + "libelleAcheminement": "SALLES DE VILLEFAGNAN", + "nomCommune": "SALLES DE VILLEFAGNAN" }, { - "codePostal": "08290", - "codeCommune": "08254", - "libelleAcheminement": "LIART", - "nomCommune": "LIART" + "codePostal": "02220", + "codeCommune": "02421", + "libelleAcheminement": "LESGES", + "nomCommune": "LESGES" }, { - "codePostal": "06750", - "codeCommune": "06003", - "libelleAcheminement": "ANDON", - "nomCommune": "ANDON" + "codePostal": "03510", + "codeCommune": "03173", + "libelleAcheminement": "MOLINET", + "nomCommune": "MOLINET" }, { - "codePostal": "08400", - "codeCommune": "08256", - "libelleAcheminement": "LIRY", - "nomCommune": "LIRY" + "codePostal": "16230", + "codeCommune": "16272", + "libelleAcheminement": "PUYREAUX", + "nomCommune": "PUYREAUX" }, { - "codePostal": "06160", - "codeCommune": "06004", - "libelleAcheminement": "ANTIBES", - "nomCommune": "ANTIBES" + "codePostal": "16310", + "codeCommune": "16364", + "libelleAcheminement": "SAUVAGNAC", + "nomCommune": "SAUVAGNAC" }, { - "codePostal": "08300", - "codeCommune": "08262", - "libelleAcheminement": "LUCQUY", - "nomCommune": "LUCQUY" + "codePostal": "02420", + "codeCommune": "02426", + "libelleAcheminement": "LEVERGIES", + "nomCommune": "LEVERGIES" }, { - "codePostal": "06260", - "codeCommune": "06005", - "libelleAcheminement": "ASCROS", - "nomCommune": "ASCROS" + "codePostal": "03130", + "codeCommune": "03178", + "libelleAcheminement": "MONTAIGUET EN FOREZ", + "nomCommune": "MONTAIGUET EN FOREZ" }, { - "codePostal": "08260", - "codeCommune": "08273", - "libelleAcheminement": "MARBY", - "nomCommune": "MARBY" + "codePostal": "16360", + "codeCommune": "16276", + "libelleAcheminement": "REIGNAC", + "nomCommune": "REIGNAC" }, { - "codePostal": "06620", - "codeCommune": "06010", - "libelleAcheminement": "LE BAR SUR LOUP", - "nomCommune": "LE BAR SUR LOUP" + "codePostal": "16410", + "codeCommune": "16368", + "libelleAcheminement": "SERS", + "nomCommune": "SERS" }, { - "codePostal": "08400", - "codeCommune": "08279", - "libelleAcheminement": "MARS SOUS BOURCQ", - "nomCommune": "MARS SOUS BOURCQ" + "codePostal": "02860", + "codeCommune": "02429", + "libelleAcheminement": "LIERVAL", + "nomCommune": "LIERVAL" }, { - "codePostal": "06450", - "codeCommune": "06013", - "libelleAcheminement": "BELVEDERE", - "nomCommune": "BELVEDERE" + "codePostal": "03150", + "codeCommune": "03179", + "libelleAcheminement": "MONTAIGU LE BLIN", + "nomCommune": "MONTAIGU LE BLIN" }, { - "codePostal": "08500", - "codeCommune": "08284", - "libelleAcheminement": "LES MAZURES", - "nomCommune": "LES MAZURES" + "codePostal": "16110", + "codeCommune": "16281", + "libelleAcheminement": "LA ROCHEFOUCAULD EN ANGOUMOIS", + "nomCommune": "LA ROCHEFOUCAULD EN ANGOUMOIS" }, { - "codePostal": "06800", - "codeCommune": "06027", - "libelleAcheminement": "CAGNES SUR MER", - "nomCommune": "CAGNES SUR MER" + "codePostal": "16800", + "codeCommune": "16374", + "libelleAcheminement": "SOYAUX", + "nomCommune": "SOYAUX" }, { - "codePostal": "08310", - "codeCommune": "08286", - "libelleAcheminement": "MENIL ANNELLES", - "nomCommune": "MENIL ANNELLES" + "codePostal": "02220", + "codeCommune": "02432", + "libelleAcheminement": "LIME", + "nomCommune": "LIME" }, { - "codePostal": "06320", - "codeCommune": "06032", - "libelleAcheminement": "CAP D AIL", - "nomCommune": "CAP D AIL" + "codePostal": "03340", + "codeCommune": "03180", + "libelleAcheminement": "MONTBEUGNY", + "nomCommune": "MONTBEUGNY" }, { - "codePostal": "08250", - "codeCommune": "08296", - "libelleAcheminement": "MONTCHEUTIN", - "nomCommune": "MONTCHEUTIN" + "codePostal": "16320", + "codeCommune": "16285", + "libelleAcheminement": "ROUGNAC", + "nomCommune": "ROUGNAC" }, { - "codePostal": "06500", - "codeCommune": "06035", - "libelleAcheminement": "CASTELLAR", - "nomCommune": "CASTELLAR" + "codePostal": "16360", + "codeCommune": "16380", + "libelleAcheminement": "LE TATRE", + "nomCommune": "LE TATRE" }, { - "codePostal": "08800", - "codeCommune": "08302", - "libelleAcheminement": "MONTHERME", - "nomCommune": "MONTHERME" + "codePostal": "02160", + "codeCommune": "02439", + "libelleAcheminement": "LES SEPTVALLONS", + "nomCommune": "LES SEPTVALLONS" }, { - "codePostal": "06500", - "codeCommune": "06036", - "libelleAcheminement": "CASTILLON", - "nomCommune": "CASTILLON" + "codePostal": "03150", + "codeCommune": "03187", + "libelleAcheminement": "MONTOLDRE", + "nomCommune": "MONTOLDRE" }, { - "codePostal": "08210", - "codeCommune": "08311", - "libelleAcheminement": "MOUZON", - "nomCommune": "MOUZON" + "codePostal": "16440", + "codeCommune": "16287", + "libelleAcheminement": "ROULLET ST ESTEPHE", + "nomCommune": "ROULLET ST ESTEPHE" }, { - "codePostal": "06390", - "codeCommune": "06039", - "libelleAcheminement": "CHATEAUNEUF VILLEVIEILLE", - "nomCommune": "CHATEAUNEUF VILLEVIEILLE" + "codePostal": "16410", + "codeCommune": "16382", + "libelleAcheminement": "TORSAC", + "nomCommune": "TORSAC" }, { - "codePostal": "08380", - "codeCommune": "08318", - "libelleAcheminement": "LA NEUVILLE AUX JOUTES", - "nomCommune": "LA NEUVILLE AUX JOUTES" + "codePostal": "02160", + "codeCommune": "02439", + "libelleAcheminement": "LES SEPTVALLONS", + "nomCommune": "LES SEPTVALLONS" }, { - "codePostal": "06910", - "codeCommune": "06045", - "libelleAcheminement": "COLLONGUES", - "nomCommune": "COLLONGUES" + "codePostal": "03450", + "codeCommune": "03192", + "libelleAcheminement": "NADES", + "nomCommune": "NADES" }, { - "codePostal": "08160", - "codeCommune": "08327", - "libelleAcheminement": "NOUVION SUR MEUSE", - "nomCommune": "NOUVION SUR MEUSE" + "codePostal": "16310", + "codeCommune": "16293", + "libelleAcheminement": "ST ADJUTORY", + "nomCommune": "ST ADJUTORY" }, { - "codePostal": "06470", - "codeCommune": "06056", - "libelleAcheminement": "ENTRAUNES", - "nomCommune": "ENTRAUNES" + "codePostal": "16140", + "codeCommune": "16390", + "libelleAcheminement": "TUSSON", + "nomCommune": "TUSSON" }, { - "codePostal": "08270", - "codeCommune": "08329", - "libelleAcheminement": "NOVION PORCIEN", - "nomCommune": "NOVION PORCIEN" + "codePostal": "02130", + "codeCommune": "02442", + "libelleAcheminement": "LOUPEIGNE", + "nomCommune": "LOUPEIGNE" }, { - "codePostal": "06470", - "codeCommune": "06056", - "libelleAcheminement": "ENTRAUNES", - "nomCommune": "ENTRAUNES" + "codePostal": "03130", + "codeCommune": "03196", + "libelleAcheminement": "NEUILLY EN DONJON", + "nomCommune": "NEUILLY EN DONJON" }, { - "codePostal": "08250", - "codeCommune": "08333", - "libelleAcheminement": "OLIZY PRIMAT", - "nomCommune": "OLIZY PRIMAT" + "codePostal": "16210", + "codeCommune": "16302", + "libelleAcheminement": "ST AVIT", + "nomCommune": "ST AVIT" }, { - "codePostal": "06460", - "codeCommune": "06058", - "libelleAcheminement": "ESCRAGNOLLES", - "nomCommune": "ESCRAGNOLLES" + "codePostal": "16460", + "codeCommune": "16392", + "libelleAcheminement": "VALENCE", + "nomCommune": "VALENCE" }, { - "codePostal": "08450", - "codeCommune": "08334", - "libelleAcheminement": "OMICOURT", - "nomCommune": "OMICOURT" + "codePostal": "02500", + "codeCommune": "02445", + "libelleAcheminement": "LUZOIR", + "nomCommune": "LUZOIR" }, { - "codePostal": "06830", - "codeCommune": "06066", - "libelleAcheminement": "GILETTE", - "nomCommune": "GILETTE" + "codePostal": "03250", + "codeCommune": "03201", + "libelleAcheminement": "NIZEROLLES", + "nomCommune": "NIZEROLLES" }, { - "codePostal": "08430", - "codeCommune": "08335", - "libelleAcheminement": "OMONT", - "nomCommune": "OMONT" + "codePostal": "16100", + "codeCommune": "16304", + "libelleAcheminement": "ST BRICE", + "nomCommune": "ST BRICE" }, { - "codePostal": "06500", - "codeCommune": "06067", - "libelleAcheminement": "GORBIO", - "nomCommune": "GORBIO" + "codePostal": "16310", + "codeCommune": "16398", + "libelleAcheminement": "VERNEUIL", + "nomCommune": "VERNEUIL" }, { - "codePostal": "08110", - "codeCommune": "08336", - "libelleAcheminement": "OSNES", - "nomCommune": "OSNES" + "codePostal": "02350", + "codeCommune": "02448", + "libelleAcheminement": "MACHECOURT", + "nomCommune": "MACHECOURT" }, { - "codePostal": "06620", - "codeCommune": "06068", - "libelleAcheminement": "GOURDON", - "nomCommune": "GOURDON" + "codePostal": "03500", + "codeCommune": "03204", + "libelleAcheminement": "PARAY SOUS BRIAILLES", + "nomCommune": "PARAY SOUS BRIAILLES" }, { - "codePostal": "08110", - "codeCommune": "08349", - "libelleAcheminement": "PURE", - "nomCommune": "PURE" + "codePostal": "16420", + "codeCommune": "16306", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "06130", - "codeCommune": "06069", - "libelleAcheminement": "GRASSE", - "nomCommune": "GRASSE" + "codePostal": "16130", + "codeCommune": "16399", + "libelleAcheminement": "VERRIERES", + "nomCommune": "VERRIERES" }, { - "codePostal": "08290", - "codeCommune": "08373", - "libelleAcheminement": "RUMIGNY", - "nomCommune": "RUMIGNY" + "codePostal": "02330", + "codeCommune": "02458", + "libelleAcheminement": "DHUYS ET MORIN EN BRIE", + "nomCommune": "DHUYS ET MORIN EN BRIE" }, { - "codePostal": "06620", - "codeCommune": "06070", - "libelleAcheminement": "GREOLIERES", - "nomCommune": "GREOLIERES" + "codePostal": "03120", + "codeCommune": "03205", + "libelleAcheminement": "PERIGNY", + "nomCommune": "PERIGNY" }, { - "codePostal": "08190", - "codeCommune": "08381", - "libelleAcheminement": "ST GERMAINMONT", - "nomCommune": "ST GERMAINMONT" + "codePostal": "16480", + "codeCommune": "16315", + "libelleAcheminement": "ST FELIX", + "nomCommune": "ST FELIX" }, { - "codePostal": "06470", - "codeCommune": "06071", - "libelleAcheminement": "GUILLAUMES", - "nomCommune": "GUILLAUMES" + "codePostal": "16330", + "codeCommune": "16401", + "libelleAcheminement": "VERVANT", + "nomCommune": "VERVANT" }, { - "codePostal": "08090", - "codeCommune": "08385", - "libelleAcheminement": "ST LAURENT", - "nomCommune": "ST LAURENT" + "codePostal": "02540", + "codeCommune": "02458", + "libelleAcheminement": "DHUYS ET MORIN EN BRIE", + "nomCommune": "DHUYS ET MORIN EN BRIE" }, { - "codePostal": "06420", - "codeCommune": "06073", - "libelleAcheminement": "ISOLA", - "nomCommune": "ISOLA" + "codePostal": "03380", + "codeCommune": "03212", + "libelleAcheminement": "QUINSSAINES", + "nomCommune": "QUINSSAINES" }, { - "codePostal": "08160", - "codeCommune": "08388", - "libelleAcheminement": "ST MARCEAU", - "nomCommune": "ST MARCEAU" + "codePostal": "16130", + "codeCommune": "16316", + "libelleAcheminement": "ST FORT SUR LE NE", + "nomCommune": "ST FORT SUR LE NE" }, { - "codePostal": "06450", - "codeCommune": "06074", - "libelleAcheminement": "LANTOSQUE", - "nomCommune": "LANTOSQUE" + "codePostal": "16120", + "codeCommune": "16402", + "libelleAcheminement": "VIBRAC", + "nomCommune": "VIBRAC" }, { - "codePostal": "08200", - "codeCommune": "08391", - "libelleAcheminement": "ST MENGES", - "nomCommune": "ST MENGES" + "codePostal": "02810", + "codeCommune": "02465", + "libelleAcheminement": "MARIGNY EN ORXOIS", + "nomCommune": "MARIGNY EN ORXOIS" }, { - "codePostal": "06710", - "codeCommune": "06078", - "libelleAcheminement": "MALAUSSENE", - "nomCommune": "MALAUSSENE" + "codePostal": "03420", + "codeCommune": "03216", + "libelleAcheminement": "RONNET", + "nomCommune": "RONNET" }, { - "codePostal": "08240", - "codeCommune": "08394", - "libelleAcheminement": "ST PIERREMONT", - "nomCommune": "ST PIERREMONT" + "codePostal": "16380", + "codeCommune": "16323", + "libelleAcheminement": "ST GERMAIN DE MONTBRON", + "nomCommune": "ST GERMAIN DE MONTBRON" }, { - "codePostal": "06210", - "codeCommune": "06079", - "libelleAcheminement": "MANDELIEU LA NAPOULE", - "nomCommune": "MANDELIEU LA NAPOULE" + "codePostal": "16350", + "codeCommune": "16404", + "libelleAcheminement": "VIEUX RUFFEC", + "nomCommune": "VIEUX RUFFEC" }, { - "codePostal": "08190", - "codeCommune": "08404", - "libelleAcheminement": "SAULT ST REMY", - "nomCommune": "SAULT ST REMY" + "codePostal": "02650", + "codeCommune": "02484", + "libelleAcheminement": "MEZY MOULINS", + "nomCommune": "MEZY MOULINS" }, { - "codePostal": "06500", - "codeCommune": "06083", - "libelleAcheminement": "MENTON", - "nomCommune": "MENTON" + "codePostal": "03170", + "codeCommune": "03217", + "libelleAcheminement": "ST ANGEL", + "nomCommune": "ST ANGEL" }, { - "codePostal": "08390", - "codeCommune": "08405", - "libelleAcheminement": "SAUVILLE", - "nomCommune": "SAUVILLE" + "codePostal": "16170", + "codeCommune": "16339", + "libelleAcheminement": "VAL D AUGE", + "nomCommune": "VAL D AUGE" }, { - "codePostal": "06650", - "codeCommune": "06089", - "libelleAcheminement": "OPIO", - "nomCommune": "OPIO" + "codePostal": "16560", + "codeCommune": "16412", + "libelleAcheminement": "VILLEJOUBERT", + "nomCommune": "VILLEJOUBERT" }, { - "codePostal": "08250", - "codeCommune": "08407", - "libelleAcheminement": "SECHAULT", - "nomCommune": "SECHAULT" + "codePostal": "02500", + "codeCommune": "02495", + "libelleAcheminement": "MONDREPUIS", + "nomCommune": "MONDREPUIS" }, { - "codePostal": "06580", - "codeCommune": "06090", - "libelleAcheminement": "PEGOMAS", - "nomCommune": "PEGOMAS" + "codePostal": "03130", + "codeCommune": "03226", + "libelleAcheminement": "ST DIDIER EN DONJON", + "nomCommune": "ST DIDIER EN DONJON" }, { - "codePostal": "08250", - "codeCommune": "08412", - "libelleAcheminement": "SENUC", - "nomCommune": "SENUC" + "codePostal": "16720", + "codeCommune": "16340", + "libelleAcheminement": "ST MEME LES CARRIERES", + "nomCommune": "ST MEME LES CARRIERES" }, { - "codePostal": "06440", - "codeCommune": "06092", - "libelleAcheminement": "PEILLON", - "nomCommune": "PEILLON" + "codePostal": "16430", + "codeCommune": "16415", + "libelleAcheminement": "VINDELLE", + "nomCommune": "VINDELLE" }, { - "codePostal": "08220", - "codeCommune": "08413", - "libelleAcheminement": "SERAINCOURT", - "nomCommune": "SERAINCOURT" + "codePostal": "02340", + "codeCommune": "02502", + "libelleAcheminement": "MONTCORNET", + "nomCommune": "MONTCORNET" }, { - "codePostal": "06530", - "codeCommune": "06095", - "libelleAcheminement": "PEYMEINADE", - "nomCommune": "PEYMEINADE" + "codePostal": "03110", + "codeCommune": "03227", + "libelleAcheminement": "ST DIDIER LA FORET", + "nomCommune": "ST DIDIER LA FORET" }, { - "codePostal": "08270", - "codeCommune": "08415", - "libelleAcheminement": "SERY", - "nomCommune": "SERY" + "codePostal": "16210", + "codeCommune": "16347", + "libelleAcheminement": "ST ROMAIN", + "nomCommune": "ST ROMAIN" }, { - "codePostal": "06420", - "codeCommune": "06110", - "libelleAcheminement": "ROUBION", - "nomCommune": "ROUBION" + "codePostal": "16250", + "codeCommune": "16420", + "libelleAcheminement": "VOULGEZAC", + "nomCommune": "VOULGEZAC" }, { - "codePostal": "08230", - "codeCommune": "08417", - "libelleAcheminement": "SEVIGNY LA FORET", - "nomCommune": "SEVIGNY LA FORET" + "codePostal": "02330", + "codeCommune": "02510", + "libelleAcheminement": "MONTHUREL", + "nomCommune": "MONTHUREL" }, { - "codePostal": "06500", - "codeCommune": "06113", - "libelleAcheminement": "STE AGNES", - "nomCommune": "STE AGNES" + "codePostal": "03260", + "codeCommune": "03232", + "libelleAcheminement": "ST FELIX", + "nomCommune": "ST FELIX" }, { - "codePostal": "08300", - "codeCommune": "08427", - "libelleAcheminement": "SORBON", - "nomCommune": "SORBON" + "codePostal": "16120", + "codeCommune": "16352", + "libelleAcheminement": "ST SIMON", + "nomCommune": "ST SIMON" }, { - "codePostal": "06530", - "codeCommune": "06118", - "libelleAcheminement": "ST CEZAIRE SUR SIAGNE", - "nomCommune": "ST CEZAIRE SUR SIAGNE" + "codePostal": "17400", + "codeCommune": "17013", + "libelleAcheminement": "ANTEZANT LA CHAPELLE", + "nomCommune": "ANTEZANT LA CHAPELLE" }, { - "codePostal": "08150", - "codeCommune": "08429", - "libelleAcheminement": "SORMONNE", - "nomCommune": "SORMONNE" + "codePostal": "02310", + "codeCommune": "02521", + "libelleAcheminement": "MONTREUIL AUX LIONS", + "nomCommune": "MONTREUIL AUX LIONS" }, { - "codePostal": "06460", - "codeCommune": "06130", - "libelleAcheminement": "ST VALLIER DE THIEY", - "nomCommune": "ST VALLIER DE THIEY" + "codePostal": "03260", + "codeCommune": "03236", + "libelleAcheminement": "ST GERMAIN DES FOSSES", + "nomCommune": "ST GERMAIN DES FOSSES" }, { - "codePostal": "08400", - "codeCommune": "08431", - "libelleAcheminement": "SUGNY", - "nomCommune": "SUGNY" + "codePostal": "16370", + "codeCommune": "16355", + "libelleAcheminement": "ST SULPICE DE COGNAC", + "nomCommune": "ST SULPICE DE COGNAC" }, { - "codePostal": "06910", - "codeCommune": "06135", - "libelleAcheminement": "SIGALE", - "nomCommune": "SIGALE" + "codePostal": "17120", + "codeCommune": "17015", + "libelleAcheminement": "ARCES", + "nomCommune": "ARCES" }, { - "codePostal": "08390", - "codeCommune": "08434", - "libelleAcheminement": "SY", - "nomCommune": "SY" + "codePostal": "02610", + "codeCommune": "02532", + "libelleAcheminement": "MOY DE L AISNE", + "nomCommune": "MOY DE L AISNE" }, { - "codePostal": "06590", - "codeCommune": "06138", - "libelleAcheminement": "THEOULE SUR MER", - "nomCommune": "THEOULE SUR MER" + "codePostal": "03140", + "codeCommune": "03237", + "libelleAcheminement": "ST GERMAIN DE SALLES", + "nomCommune": "ST GERMAIN DE SALLES" }, { - "codePostal": "08300", - "codeCommune": "08435", - "libelleAcheminement": "TAGNON", - "nomCommune": "TAGNON" + "codePostal": "16480", + "codeCommune": "16357", + "libelleAcheminement": "ST VALLIER", + "nomCommune": "ST VALLIER" }, { - "codePostal": "06440", - "codeCommune": "06142", - "libelleAcheminement": "TOUET DE L ESCARENE", - "nomCommune": "TOUET DE L ESCARENE" + "codePostal": "17530", + "codeCommune": "17021", + "libelleAcheminement": "ARVERT", + "nomCommune": "ARVERT" }, { - "codePostal": "08360", - "codeCommune": "08438", - "libelleAcheminement": "TAIZY", - "nomCommune": "TAIZY" + "codePostal": "02880", + "codeCommune": "02537", + "libelleAcheminement": "NANTEUIL LA FOSSE", + "nomCommune": "NANTEUIL LA FOSSE" }, { - "codePostal": "06420", - "codeCommune": "06144", - "libelleAcheminement": "LA TOUR", - "nomCommune": "LA TOUR" + "codePostal": "03150", + "codeCommune": "03242", + "libelleAcheminement": "ST LOUP", + "nomCommune": "ST LOUP" }, { - "codePostal": "08800", - "codeCommune": "08448", - "libelleAcheminement": "THILAY", - "nomCommune": "THILAY" + "codePostal": "16190", + "codeCommune": "16362", + "libelleAcheminement": "SALLES LAVALETTE", + "nomCommune": "SALLES LAVALETTE" }, { - "codePostal": "06830", - "codeCommune": "06145", - "libelleAcheminement": "TOURETTE DU CHATEAU", - "nomCommune": "TOURETTE DU CHATEAU" + "codePostal": "17770", + "codeCommune": "17026", + "libelleAcheminement": "AUTHON EBEON", + "nomCommune": "AUTHON EBEON" }, { - "codePostal": "08800", - "codeCommune": "08448", - "libelleAcheminement": "THILAY", - "nomCommune": "THILAY" + "codePostal": "02500", + "codeCommune": "02544", + "libelleAcheminement": "NEUVE MAISON", + "nomCommune": "NEUVE MAISON" }, { - "codePostal": "06690", - "codeCommune": "06147", - "libelleAcheminement": "TOURRETTE LEVENS", - "nomCommune": "TOURRETTE LEVENS" + "codePostal": "03390", + "codeCommune": "03243", + "libelleAcheminement": "ST MARCEL EN MURAT", + "nomCommune": "ST MARCEL EN MURAT" }, { - "codePostal": "08460", - "codeCommune": "08449", - "libelleAcheminement": "THIN LE MOUTIER", - "nomCommune": "THIN LE MOUTIER" + "codePostal": "16240", + "codeCommune": "16373", + "libelleAcheminement": "SOUVIGNE", + "nomCommune": "SOUVIGNE" }, { - "codePostal": "06420", - "codeCommune": "06153", - "libelleAcheminement": "VALDEBLORE", - "nomCommune": "VALDEBLORE" + "codePostal": "17160", + "codeCommune": "17031", + "libelleAcheminement": "BALLANS", + "nomCommune": "BALLANS" }, { - "codePostal": "08300", - "codeCommune": "08452", - "libelleAcheminement": "THUGNY TRUGNY", - "nomCommune": "THUGNY TRUGNY" + "codePostal": "02200", + "codeCommune": "02564", + "libelleAcheminement": "NOYANT ET ACONIN", + "nomCommune": "NOYANT ET ACONIN" }, { - "codePostal": "06430", - "codeCommune": "06163", - "libelleAcheminement": "TENDE", - "nomCommune": "TENDE" + "codePostal": "03250", + "codeCommune": "03248", + "libelleAcheminement": "ST NICOLAS DES BIEFS", + "nomCommune": "ST NICOLAS DES BIEFS" }, { - "codePostal": "08400", - "codeCommune": "08453", - "libelleAcheminement": "TOGES", - "nomCommune": "TOGES" + "codePostal": "16600", + "codeCommune": "16385", + "libelleAcheminement": "TOUVRE", + "nomCommune": "TOUVRE" }, { - "codePostal": "06430", - "codeCommune": "06163", - "libelleAcheminement": "TENDE", - "nomCommune": "TENDE" + "codePostal": "17360", + "codeCommune": "17033", + "libelleAcheminement": "LA BARDE", + "nomCommune": "LA BARDE" }, { - "codePostal": "08130", - "codeCommune": "08458", - "libelleAcheminement": "TOURTERON", - "nomCommune": "TOURTERON" + "codePostal": "02450", + "codeCommune": "02569", + "libelleAcheminement": "OISY", + "nomCommune": "OISY" }, { - "codePostal": "07370", - "codeCommune": "07015", - "libelleAcheminement": "ARRAS SUR RHONE", - "nomCommune": "ARRAS SUR RHONE" + "codePostal": "03370", + "codeCommune": "03249", + "libelleAcheminement": "ST PALAIS", + "nomCommune": "ST PALAIS" }, { - "codePostal": "08130", - "codeCommune": "08462", - "libelleAcheminement": "VAUX CHAMPAGNE", - "nomCommune": "VAUX CHAMPAGNE" + "codePostal": "16140", + "codeCommune": "16397", + "libelleAcheminement": "VERDILLE", + "nomCommune": "VERDILLE" }, { - "codePostal": "07140", - "codeCommune": "07017", - "libelleAcheminement": "LES ASSIONS", - "nomCommune": "LES ASSIONS" + "codePostal": "17210", + "codeCommune": "17038", + "libelleAcheminement": "BEDENAC", + "nomCommune": "BEDENAC" }, { - "codePostal": "08210", - "codeCommune": "08466", - "libelleAcheminement": "VAUX LES MOUZON", - "nomCommune": "VAUX LES MOUZON" + "codePostal": "02480", + "codeCommune": "02570", + "libelleAcheminement": "OLLEZY", + "nomCommune": "OLLEZY" }, { - "codePostal": "07200", - "codeCommune": "07019", - "libelleAcheminement": "AUBENAS", - "nomCommune": "AUBENAS" + "codePostal": "03290", + "codeCommune": "03253", + "libelleAcheminement": "ST POURCAIN SUR BESBRE", + "nomCommune": "ST POURCAIN SUR BESBRE" }, { - "codePostal": "08150", - "codeCommune": "08468", - "libelleAcheminement": "VAUX VILLAINE", - "nomCommune": "VAUX VILLAINE" + "codePostal": "16230", + "codeCommune": "16414", + "libelleAcheminement": "VILLOGNON", + "nomCommune": "VILLOGNON" }, { - "codePostal": "07210", - "codeCommune": "07022", - "libelleAcheminement": "BAIX", - "nomCommune": "BAIX" + "codePostal": "17170", + "codeCommune": "17041", + "libelleAcheminement": "BENON", + "nomCommune": "BENON" }, { - "codePostal": "08000", - "codeCommune": "08480", - "libelleAcheminement": "VILLERS SEMEUSE", - "nomCommune": "VILLERS SEMEUSE" + "codePostal": "02100", + "codeCommune": "02571", + "libelleAcheminement": "OMISSY", + "nomCommune": "OMISSY" }, { - "codePostal": "07460", - "codeCommune": "07024", - "libelleAcheminement": "BANNE", - "nomCommune": "BANNE" + "codePostal": "03800", + "codeCommune": "03255", + "libelleAcheminement": "ST PRIEST D ANDELOT", + "nomCommune": "ST PRIEST D ANDELOT" }, { - "codePostal": "08320", - "codeCommune": "08486", - "libelleAcheminement": "VIREUX MOLHAIN", - "nomCommune": "VIREUX MOLHAIN" + "codePostal": "16310", + "codeCommune": "16416", + "libelleAcheminement": "VITRAC ST VINCENT", + "nomCommune": "VITRAC ST VINCENT" }, { - "codePostal": "07800", - "codeCommune": "07027", - "libelleAcheminement": "BEAUCHASTEL", - "nomCommune": "BEAUCHASTEL" + "codePostal": "17770", + "codeCommune": "17042", + "libelleAcheminement": "BERCLOUX", + "nomCommune": "BERCLOUX" }, { - "codePostal": "08400", - "codeCommune": "08490", - "libelleAcheminement": "VOUZIERS", - "nomCommune": "VOUZIERS" + "codePostal": "02860", + "codeCommune": "02573", + "libelleAcheminement": "ORGEVAL", + "nomCommune": "ORGEVAL" }, { - "codePostal": "07460", - "codeCommune": "07031", - "libelleAcheminement": "BERRIAS ET CASTELJAU", - "nomCommune": "BERRIAS ET CASTELJAU" + "codePostal": "03240", + "codeCommune": "03260", + "libelleAcheminement": "ST SORNIN", + "nomCommune": "ST SORNIN" }, { - "codePostal": "08430", - "codeCommune": "08503", - "libelleAcheminement": "YVERNAUMONT", - "nomCommune": "YVERNAUMONT" + "codePostal": "16410", + "codeCommune": "16422", + "libelleAcheminement": "VOUZAN", + "nomCommune": "VOUZAN" }, { - "codePostal": "07700", - "codeCommune": "07042", - "libelleAcheminement": "BOURG ST ANDEOL", - "nomCommune": "BOURG ST ANDEOL" + "codePostal": "17330", + "codeCommune": "17043", + "libelleAcheminement": "BERNAY ST MARTIN", + "nomCommune": "BERNAY ST MARTIN" }, { - "codePostal": "09240", - "codeCommune": "09001", - "libelleAcheminement": "AIGUES JUNTES", - "nomCommune": "AIGUES JUNTES" + "codePostal": "02390", + "codeCommune": "02575", + "libelleAcheminement": "ORIGNY STE BENOITE", + "nomCommune": "ORIGNY STE BENOITE" }, { - "codePostal": "07240", - "codeCommune": "07060", - "libelleAcheminement": "CHATEAUNEUF DE VERNOUX", - "nomCommune": "CHATEAUNEUF DE VERNOUX" + "codePostal": "03220", + "codeCommune": "03263", + "libelleAcheminement": "ST VOIR", + "nomCommune": "ST VOIR" }, { - "codePostal": "09000", - "codeCommune": "09013", - "libelleAcheminement": "ARABAUX", - "nomCommune": "ARABAUX" + "codePostal": "16330", + "codeCommune": "16423", + "libelleAcheminement": "XAMBES", + "nomCommune": "XAMBES" }, { - "codePostal": "07380", - "codeCommune": "07065", - "libelleAcheminement": "CHIROLS", - "nomCommune": "CHIROLS" + "codePostal": "17460", + "codeCommune": "17044", + "libelleAcheminement": "BERNEUIL", + "nomCommune": "BERNEUIL" }, { - "codePostal": "09800", - "codeCommune": "09018", - "libelleAcheminement": "ARROUT", - "nomCommune": "ARROUT" + "codePostal": "02370", + "codeCommune": "02577", + "libelleAcheminement": "OSTEL", + "nomCommune": "OSTEL" }, { - "codePostal": "07130", - "codeCommune": "07070", - "libelleAcheminement": "CORNAS", - "nomCommune": "CORNAS" + "codePostal": "03150", + "codeCommune": "03266", + "libelleAcheminement": "SANSSAT", + "nomCommune": "SANSSAT" }, { - "codePostal": "09310", - "codeCommune": "09024", - "libelleAcheminement": "ASTON", - "nomCommune": "ASTON" + "codePostal": "17230", + "codeCommune": "17008", + "libelleAcheminement": "ANDILLY", + "nomCommune": "ANDILLY" }, { - "codePostal": "07470", - "codeCommune": "07071", - "libelleAcheminement": "COUCOURON", - "nomCommune": "COUCOURON" + "codePostal": "17430", + "codeCommune": "17053", + "libelleAcheminement": "BORDS", + "nomCommune": "BORDS" }, { - "codePostal": "09800", - "codeCommune": "09026", - "libelleAcheminement": "AUDRESSEIN", - "nomCommune": "AUDRESSEIN" + "codePostal": "02360", + "codeCommune": "02586", + "libelleAcheminement": "PARFONDEVAL", + "nomCommune": "PARFONDEVAL" }, { - "codePostal": "07000", - "codeCommune": "07074", - "libelleAcheminement": "CREYSSEILLES", - "nomCommune": "CREYSSEILLES" + "codePostal": "03500", + "codeCommune": "03267", + "libelleAcheminement": "SAULCET", + "nomCommune": "SAULCET" }, { - "codePostal": "09800", - "codeCommune": "09027", - "libelleAcheminement": "AUGIREIN", - "nomCommune": "AUGIREIN" + "codePostal": "17230", + "codeCommune": "17008", + "libelleAcheminement": "ANDILLY", + "nomCommune": "ANDILLY" }, { - "codePostal": "07320", - "codeCommune": "07080", - "libelleAcheminement": "DEVESSET", - "nomCommune": "DEVESSET" + "codePostal": "17800", + "codeCommune": "17056", + "libelleAcheminement": "BOUGNEAU", + "nomCommune": "BOUGNEAU" }, { - "codePostal": "09600", - "codeCommune": "09048", - "libelleAcheminement": "BELLOC", - "nomCommune": "BELLOC" + "codePostal": "02310", + "codeCommune": "02596", + "libelleAcheminement": "PAVANT", + "nomCommune": "PAVANT" }, { - "codePostal": "07160", - "codeCommune": "07082", - "libelleAcheminement": "DORNAS", - "nomCommune": "DORNAS" + "codePostal": "03800", + "codeCommune": "03268", + "libelleAcheminement": "SAULZET", + "nomCommune": "SAULZET" }, { - "codePostal": "09500", - "codeCommune": "09052", - "libelleAcheminement": "BESSET", - "nomCommune": "BESSET" + "codePostal": "17690", + "codeCommune": "17010", + "libelleAcheminement": "ANGOULINS", + "nomCommune": "ANGOULINS" }, { - "codePostal": "07370", - "codeCommune": "07084", - "libelleAcheminement": "ECLASSAN", - "nomCommune": "ECLASSAN" + "codePostal": "17220", + "codeCommune": "17059", + "libelleAcheminement": "BOURGNEUF", + "nomCommune": "BOURGNEUF" }, { - "codePostal": "09100", - "codeCommune": "09060", - "libelleAcheminement": "BONNAC", - "nomCommune": "BONNAC" + "codePostal": "02480", + "codeCommune": "02604", + "libelleAcheminement": "PITHON", + "nomCommune": "PITHON" }, { - "codePostal": "07300", - "codeCommune": "07086", - "libelleAcheminement": "ETABLES", - "nomCommune": "ETABLES" + "codePostal": "03230", + "codeCommune": "03283", + "libelleAcheminement": "THIEL SUR ACOLIN", + "nomCommune": "THIEL SUR ACOLIN" }, { - "codePostal": "09000", - "codeCommune": "09063", - "libelleAcheminement": "LE BOSC", - "nomCommune": "LE BOSC" + "codePostal": "17350", + "codeCommune": "17011", + "libelleAcheminement": "ANNEPONT", + "nomCommune": "ANNEPONT" }, { - "codePostal": "07340", - "codeCommune": "07089", - "libelleAcheminement": "FELINES", - "nomCommune": "FELINES" + "codePostal": "17870", + "codeCommune": "17065", + "libelleAcheminement": "BREUIL MAGNE", + "nomCommune": "BREUIL MAGNE" }, { - "codePostal": "09700", - "codeCommune": "09067", - "libelleAcheminement": "BRIE", - "nomCommune": "BRIE" + "codePostal": "02160", + "codeCommune": "02613", + "libelleAcheminement": "PONTAVERT", + "nomCommune": "PONTAVERT" }, { - "codePostal": "07190", - "codeCommune": "07096", - "libelleAcheminement": "GLUIRAS", - "nomCommune": "GLUIRAS" + "codePostal": "03380", + "codeCommune": "03288", + "libelleAcheminement": "TREIGNAT", + "nomCommune": "TREIGNAT" }, { - "codePostal": "09310", - "codeCommune": "09070", - "libelleAcheminement": "LES CABANNES", - "nomCommune": "LES CABANNES" + "codePostal": "17400", + "codeCommune": "17013", + "libelleAcheminement": "ANTEZANT LA CHAPELLE", + "nomCommune": "ANTEZANT LA CHAPELLE" }, { - "codePostal": "50570", - "codeCommune": "50232", - "libelleAcheminement": "HAUTEVILLE LA GUICHARD", - "nomCommune": "HAUTEVILLE LA GUICHARD" + "codePostal": "17770", + "codeCommune": "17070", + "libelleAcheminement": "BRIZAMBOURG", + "nomCommune": "BRIZAMBOURG" }, { - "codePostal": "07300", - "codeCommune": "07097", - "libelleAcheminement": "GLUN", - "nomCommune": "GLUN" + "codePostal": "02320", + "codeCommune": "02619", + "libelleAcheminement": "PREMONTRE", + "nomCommune": "PREMONTRE" }, { - "codePostal": "09240", - "codeCommune": "09071", - "libelleAcheminement": "CADARCET", - "nomCommune": "CADARCET" + "codePostal": "03360", + "codeCommune": "03293", + "libelleAcheminement": "URCAY", + "nomCommune": "URCAY" }, { - "codePostal": "50270", - "codeCommune": "50235", - "libelleAcheminement": "LA HAYE D ECTOT", - "nomCommune": "LA HAYE D ECTOT" + "codePostal": "17290", + "codeCommune": "17018", + "libelleAcheminement": "ARDILLIERES", + "nomCommune": "ARDILLIERES" }, { - "codePostal": "07120", - "codeCommune": "07101", - "libelleAcheminement": "GROSPIERRES", - "nomCommune": "GROSPIERRES" + "codePostal": "17890", + "codeCommune": "17079", + "libelleAcheminement": "CHAILLEVETTE", + "nomCommune": "CHAILLEVETTE" }, { - "codePostal": "09120", - "codeCommune": "09072", - "libelleAcheminement": "CALZAN", - "nomCommune": "CALZAN" + "codePostal": "02860", + "codeCommune": "02621", + "libelleAcheminement": "PRESLES ET THIERNY", + "nomCommune": "PRESLES ET THIERNY" }, { - "codePostal": "50250", - "codeCommune": "50236", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "03450", + "codeCommune": "03302", + "libelleAcheminement": "VEAUCE", + "nomCommune": "VEAUCE" }, { - "codePostal": "07320", - "codeCommune": "07103", - "libelleAcheminement": "ST JULIEN D INTRES", - "nomCommune": "ST JULIEN D INTRES" + "codePostal": "17470", + "codeCommune": "17024", + "libelleAcheminement": "AULNAY", + "nomCommune": "AULNAY" }, { - "codePostal": "09500", - "codeCommune": "09074", - "libelleAcheminement": "CAMON", - "nomCommune": "CAMON" + "codePostal": "17480", + "codeCommune": "17093", + "libelleAcheminement": "LE CHATEAU D OLERON", + "nomCommune": "LE CHATEAU D OLERON" }, { - "codePostal": "50580", - "codeCommune": "50236", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "02120", + "codeCommune": "02629", + "libelleAcheminement": "PUISIEUX ET CLANLIEU", + "nomCommune": "PUISIEUX ET CLANLIEU" }, { - "codePostal": "07190", - "codeCommune": "07104", - "libelleAcheminement": "ISSAMOULENC", - "nomCommune": "ISSAMOULENC" + "codePostal": "03500", + "codeCommune": "03307", + "libelleAcheminement": "VERNEUIL EN BOURBONNAIS", + "nomCommune": "VERNEUIL EN BOURBONNAIS" }, { - "codePostal": "09700", - "codeCommune": "09076", - "libelleAcheminement": "CANTE", - "nomCommune": "CANTE" + "codePostal": "17770", + "codeCommune": "17025", + "libelleAcheminement": "AUMAGNE", + "nomCommune": "AUMAGNE" }, { - "codePostal": "50340", - "codeCommune": "50238", - "libelleAcheminement": "HEAUVILLE", - "nomCommune": "HEAUVILLE" + "codePostal": "17120", + "codeCommune": "17098", + "libelleAcheminement": "CHENAC ST SEURIN D UZET", + "nomCommune": "CHENAC ST SEURIN D UZET" }, { - "codePostal": "07510", - "codeCommune": "07105", - "libelleAcheminement": "ISSANLAS", - "nomCommune": "ISSANLAS" + "codePostal": "02360", + "codeCommune": "02642", + "libelleAcheminement": "RESIGNY", + "nomCommune": "RESIGNY" }, { - "codePostal": "09420", - "codeCommune": "09082", - "libelleAcheminement": "CASTELNAU DURBAN", - "nomCommune": "CASTELNAU DURBAN" + "codePostal": "03320", + "codeCommune": "03309", + "libelleAcheminement": "LE VEURDRE", + "nomCommune": "LE VEURDRE" }, { - "codePostal": "50180", - "codeCommune": "50239", - "libelleAcheminement": "THEREVAL", - "nomCommune": "THEREVAL" + "codePostal": "17770", + "codeCommune": "17026", + "libelleAcheminement": "AUTHON EBEON", + "nomCommune": "AUTHON EBEON" }, { - "codePostal": "07380", - "codeCommune": "07107", - "libelleAcheminement": "JAUJAC", - "nomCommune": "JAUJAC" + "codePostal": "17210", + "codeCommune": "17099", + "libelleAcheminement": "CHEPNIERS", + "nomCommune": "CHEPNIERS" }, { - "codePostal": "09800", - "codeCommune": "09085", - "libelleAcheminement": "CASTILLON EN COUSERANS", - "nomCommune": "CASTILLON EN COUSERANS" + "codePostal": "02600", + "codeCommune": "02644", + "libelleAcheminement": "RETHEUIL", + "nomCommune": "RETHEUIL" }, { - "codePostal": "50540", - "codeCommune": "50256", - "libelleAcheminement": "ISIGNY LE BUAT", - "nomCommune": "ISIGNY LE BUAT" + "codePostal": "03450", + "codeCommune": "03311", + "libelleAcheminement": "VICQ", + "nomCommune": "VICQ" }, { - "codePostal": "07110", - "codeCommune": "07109", - "libelleAcheminement": "JOANNAS", - "nomCommune": "JOANNAS" + "codePostal": "17120", + "codeCommune": "17034", + "libelleAcheminement": "BARZAN", + "nomCommune": "BARZAN" }, { - "codePostal": "09160", - "codeCommune": "09086", - "libelleAcheminement": "CAUMONT", - "nomCommune": "CAUMONT" + "codePostal": "17470", + "codeCommune": "17101", + "libelleAcheminement": "CHERBONNIERES", + "nomCommune": "CHERBONNIERES" }, { - "codePostal": "50540", - "codeCommune": "50256", - "libelleAcheminement": "ISIGNY LE BUAT", - "nomCommune": "ISIGNY LE BUAT" + "codePostal": "02210", + "codeCommune": "02649", + "libelleAcheminement": "ROCOURT ST MARTIN", + "nomCommune": "ROCOURT ST MARTIN" }, { - "codePostal": "07600", - "codeCommune": "07111", - "libelleAcheminement": "JUVINAS", - "nomCommune": "JUVINAS" + "codePostal": "03430", + "codeCommune": "03312", + "libelleAcheminement": "VIEURE", + "nomCommune": "VIEURE" }, { - "codePostal": "09120", - "codeCommune": "09090", - "libelleAcheminement": "CAZAUX", - "nomCommune": "CAZAUX" + "codePostal": "17800", + "codeCommune": "17039", + "libelleAcheminement": "BELLUIRE", + "nomCommune": "BELLUIRE" }, { - "codePostal": "50540", - "codeCommune": "50256", - "libelleAcheminement": "ISIGNY LE BUAT", - "nomCommune": "ISIGNY LE BUAT" + "codePostal": "17290", + "codeCommune": "17107", + "libelleAcheminement": "CIRE D AUNIS", + "nomCommune": "CIRE D AUNIS" }, { - "codePostal": "07150", - "codeCommune": "07126", - "libelleAcheminement": "LAGORCE", - "nomCommune": "LAGORCE" + "codePostal": "02310", + "codeCommune": "02653", + "libelleAcheminement": "ROMENY SUR MARNE", + "nomCommune": "ROMENY SUR MARNE" }, { - "codePostal": "09420", - "codeCommune": "09097", - "libelleAcheminement": "CLERMONT", - "nomCommune": "CLERMONT" + "codePostal": "03350", + "codeCommune": "03313", + "libelleAcheminement": "LE VILHAIN", + "nomCommune": "LE VILHAIN" }, { - "codePostal": "50220", - "codeCommune": "50259", - "libelleAcheminement": "JUILLEY", - "nomCommune": "JUILLEY" + "codePostal": "17250", + "codeCommune": "17045", + "libelleAcheminement": "BEURLAY", + "nomCommune": "BEURLAY" }, { - "codePostal": "07660", - "codeCommune": "07137", - "libelleAcheminement": "LAVILLATTE", - "nomCommune": "LAVILLATTE" + "codePostal": "17220", + "codeCommune": "17109", + "libelleAcheminement": "CLAVETTE", + "nomCommune": "CLAVETTE" }, { - "codePostal": "09120", - "codeCommune": "09104", - "libelleAcheminement": "DALOU", - "nomCommune": "DALOU" + "codePostal": "02590", + "codeCommune": "02658", + "libelleAcheminement": "ROUPY", + "nomCommune": "ROUPY" }, { - "codePostal": "50160", - "codeCommune": "50261", - "libelleAcheminement": "LAMBERVILLE", - "nomCommune": "LAMBERVILLE" + "codePostal": "04500", + "codeCommune": "04004", + "libelleAcheminement": "ALLEMAGNE EN PROVENCE", + "nomCommune": "ALLEMAGNE EN PROVENCE" }, { - "codePostal": "07660", - "codeCommune": "07142", - "libelleAcheminement": "LESPERON", - "nomCommune": "LESPERON" + "codePostal": "17470", + "codeCommune": "17049", + "libelleAcheminement": "BLANZAY SUR BOUTONNE", + "nomCommune": "BLANZAY SUR BOUTONNE" }, { - "codePostal": "09240", - "codeCommune": "09108", - "libelleAcheminement": "DURBAN SUR ARIZE", - "nomCommune": "DURBAN SUR ARIZE" + "codePostal": "17360", + "codeCommune": "17113", + "libelleAcheminement": "LA CLOTTE", + "nomCommune": "LA CLOTTE" }, { - "codePostal": "50430", - "codeCommune": "50267", - "libelleAcheminement": "LESSAY", - "nomCommune": "LESSAY" + "codePostal": "02000", + "codeCommune": "02661", + "libelleAcheminement": "ROYAUCOURT ET CHAILVET", + "nomCommune": "ROYAUCOURT ET CHAILVET" }, { - "codePostal": "07170", - "codeCommune": "07145", - "libelleAcheminement": "LUSSAS", - "nomCommune": "LUSSAS" + "codePostal": "04260", + "codeCommune": "04006", + "libelleAcheminement": "ALLOS", + "nomCommune": "ALLOS" }, { - "codePostal": "09200", - "codeCommune": "09110", - "libelleAcheminement": "ENCOURTIECH", - "nomCommune": "ENCOURTIECH" + "codePostal": "17580", + "codeCommune": "17051", + "libelleAcheminement": "LE BOIS PLAGE EN RE", + "nomCommune": "LE BOIS PLAGE EN RE" }, { - "codePostal": "50660", - "codeCommune": "50272", - "libelleAcheminement": "LINGREVILLE", - "nomCommune": "LINGREVILLE" + "codePostal": "17330", + "codeCommune": "17114", + "libelleAcheminement": "COIVERT", + "nomCommune": "COIVERT" }, { - "codePostal": "07000", - "codeCommune": "07146", - "libelleAcheminement": "LYAS", - "nomCommune": "LYAS" + "codePostal": "02210", + "codeCommune": "02662", + "libelleAcheminement": "ROZET ST ALBIN", + "nomCommune": "ROZET ST ALBIN" }, { - "codePostal": "09200", - "codeCommune": "09119", - "libelleAcheminement": "EYCHEIL", - "nomCommune": "EYCHEIL" + "codePostal": "04420", + "codeCommune": "04009", + "libelleAcheminement": "ARCHAIL", + "nomCommune": "ARCHAIL" }, { - "codePostal": "50510", - "codeCommune": "50278", - "libelleAcheminement": "LE LOREUR", - "nomCommune": "LE LOREUR" + "codePostal": "17120", + "codeCommune": "17060", + "libelleAcheminement": "BOUTENAC TOUVENT", + "nomCommune": "BOUTENAC TOUVENT" }, { - "codePostal": "07160", - "codeCommune": "07150", - "libelleAcheminement": "MARIAC", - "nomCommune": "MARIAC" + "codePostal": "17170", + "codeCommune": "17127", + "libelleAcheminement": "COURCON", + "nomCommune": "COURCON" }, { - "codePostal": "09190", - "codeCommune": "09128", - "libelleAcheminement": "GAJAN", - "nomCommune": "GAJAN" + "codePostal": "02260", + "codeCommune": "02670", + "libelleAcheminement": "ST ALGIS", + "nomCommune": "ST ALGIS" }, { - "codePostal": "50220", - "codeCommune": "50290", - "libelleAcheminement": "MARCILLY", - "nomCommune": "MARCILLY" + "codePostal": "04150", + "codeCommune": "04018", + "libelleAcheminement": "BANON", + "nomCommune": "BANON" }, { - "codePostal": "07380", - "codeCommune": "07156", - "libelleAcheminement": "MEYRAS", - "nomCommune": "MEYRAS" + "codePostal": "17920", + "codeCommune": "17064", + "libelleAcheminement": "BREUILLET", + "nomCommune": "BREUILLET" }, { - "codePostal": "09000", - "codeCommune": "09130", - "libelleAcheminement": "GANAC", - "nomCommune": "GANAC" + "codePostal": "17170", + "codeCommune": "17132", + "libelleAcheminement": "CRAMCHABAN", + "nomCommune": "CRAMCHABAN" }, { - "codePostal": "50690", - "codeCommune": "50294", - "libelleAcheminement": "MARTINVAST", - "nomCommune": "MARTINVAST" + "codePostal": "02300", + "codeCommune": "02671", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "07530", - "codeCommune": "07158", - "libelleAcheminement": "MEZILHAC", - "nomCommune": "MEZILHAC" + "codePostal": "04330", + "codeCommune": "04022", + "libelleAcheminement": "BARREME", + "nomCommune": "BARREME" }, { - "codePostal": "09390", - "codeCommune": "09139", - "libelleAcheminement": "L HOSPITALET PRES L ANDORRE", - "nomCommune": "L HOSPITALET PRES L ANDORRE" + "codePostal": "17520", + "codeCommune": "17066", + "libelleAcheminement": "BRIE SOUS ARCHIAC", + "nomCommune": "BRIE SOUS ARCHIAC" }, { - "codePostal": "50520", - "codeCommune": "50300", - "libelleAcheminement": "LE MESNIL ADELEE", - "nomCommune": "LE MESNIL ADELEE" + "codePostal": "17350", + "codeCommune": "17134", + "libelleAcheminement": "CRAZANNES", + "nomCommune": "CRAZANNES" }, { - "codePostal": "07290", - "codeCommune": "07188", - "libelleAcheminement": "QUINTENAS", - "nomCommune": "QUINTENAS" + "codePostal": "02810", + "codeCommune": "02679", + "libelleAcheminement": "ST GENGOULPH", + "nomCommune": "ST GENGOULPH" }, { - "codePostal": "09300", - "codeCommune": "09142", - "libelleAcheminement": "ILHAT", - "nomCommune": "ILHAT" + "codePostal": "04370", + "codeCommune": "04025", + "libelleAcheminement": "BEAUVEZER", + "nomCommune": "BEAUVEZER" }, { - "codePostal": "50510", - "codeCommune": "50304", - "libelleAcheminement": "LE MESNIL AUBERT", - "nomCommune": "LE MESNIL AUBERT" + "codePostal": "17160", + "codeCommune": "17071", + "libelleAcheminement": "LA BROUSSE", + "nomCommune": "LA BROUSSE" }, { - "codePostal": "07800", - "codeCommune": "07198", - "libelleAcheminement": "ROMPON", - "nomCommune": "ROMPON" + "codePostal": "17330", + "codeCommune": "17137", + "libelleAcheminement": "LA CROIX COMTESSE", + "nomCommune": "LA CROIX COMTESSE" }, { - "codePostal": "09130", - "codeCommune": "09151", - "libelleAcheminement": "LANOUX", - "nomCommune": "LANOUX" + "codePostal": "02830", + "codeCommune": "02684", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "50450", - "codeCommune": "50326", - "libelleAcheminement": "LE MESNIL VILLEMAN", - "nomCommune": "LE MESNIL VILLEMAN" + "codePostal": "04270", + "codeCommune": "04031", + "libelleAcheminement": "BRAS D ASSE", + "nomCommune": "BRAS D ASSE" }, { - "codePostal": "07260", - "codeCommune": "07199", - "libelleAcheminement": "ROSIERES", - "nomCommune": "ROSIERES" + "codePostal": "17520", + "codeCommune": "17076", + "libelleAcheminement": "CELLES", + "nomCommune": "CELLES" }, { - "codePostal": "09240", - "codeCommune": "09154", - "libelleAcheminement": "LARBONT", - "nomCommune": "LARBONT" + "codePostal": "17139", + "codeCommune": "17142", + "libelleAcheminement": "DOMPIERRE SUR MER", + "nomCommune": "DOMPIERRE SUR MER" }, { - "codePostal": "50190", - "codeCommune": "50328", - "libelleAcheminement": "MILLIERES", - "nomCommune": "MILLIERES" + "codePostal": "02410", + "codeCommune": "02685", + "libelleAcheminement": "ST NICOLAS AUX BOIS", + "nomCommune": "ST NICOLAS AUX BOIS" }, { - "codePostal": "07120", - "codeCommune": "07201", - "libelleAcheminement": "RUOMS", - "nomCommune": "RUOMS" + "codePostal": "04120", + "codeCommune": "04039", + "libelleAcheminement": "CASTELLANE", + "nomCommune": "CASTELLANE" }, { - "codePostal": "09310", - "codeCommune": "09159", - "libelleAcheminement": "LASSUR", - "nomCommune": "LASSUR" + "codePostal": "17800", + "codeCommune": "17078", + "libelleAcheminement": "CHADENAC", + "nomCommune": "CHADENAC" }, { - "codePostal": "50410", - "codeCommune": "50334", - "libelleAcheminement": "MONTABOT", - "nomCommune": "MONTABOT" + "codePostal": "17139", + "codeCommune": "17142", + "libelleAcheminement": "DOMPIERRE SUR MER", + "nomCommune": "DOMPIERRE SUR MER" }, { - "codePostal": "07260", - "codeCommune": "07202", - "libelleAcheminement": "SABLIERES", - "nomCommune": "SABLIERES" + "codePostal": "02300", + "codeCommune": "02686", + "libelleAcheminement": "ST PAUL AUX BOIS", + "nomCommune": "ST PAUL AUX BOIS" }, { - "codePostal": "09600", - "codeCommune": "09161", - "libelleAcheminement": "LERAN", - "nomCommune": "LERAN" + "codePostal": "04120", + "codeCommune": "04039", + "libelleAcheminement": "CASTELLANE", + "nomCommune": "CASTELLANE" }, { - "codePostal": "50140", - "codeCommune": "50359", - "libelleAcheminement": "MORTAIN BOCAGE", - "nomCommune": "MORTAIN BOCAGE" + "codePostal": "17290", + "codeCommune": "17080", + "libelleAcheminement": "CHAMBON", + "nomCommune": "CHAMBON" }, { - "codePostal": "07450", - "codeCommune": "07203", - "libelleAcheminement": "SAGNES ET GOUDOULET", - "nomCommune": "SAGNES ET GOUDOULET" + "codePostal": "17240", + "codeCommune": "17160", + "libelleAcheminement": "FLOIRAC", + "nomCommune": "FLOIRAC" }, { - "codePostal": "09100", - "codeCommune": "09163", - "libelleAcheminement": "LESCOUSSE", - "nomCommune": "LESCOUSSE" + "codePostal": "02640", + "codeCommune": "02694", + "libelleAcheminement": "ST SIMON", + "nomCommune": "ST SIMON" }, { - "codePostal": "50860", - "codeCommune": "50363", - "libelleAcheminement": "MOYON VILLAGES", - "nomCommune": "MOYON VILLAGES" + "codePostal": "04320", + "codeCommune": "04043", + "libelleAcheminement": "VAL DE CHALVAGNE", + "nomCommune": "VAL DE CHALVAGNE" }, { - "codePostal": "07320", - "codeCommune": "07204", - "libelleAcheminement": "ST AGREVE", - "nomCommune": "ST AGREVE" + "codePostal": "17130", + "codeCommune": "17081", + "libelleAcheminement": "CHAMOUILLAC", + "nomCommune": "CHAMOUILLAC" }, { - "codePostal": "09420", - "codeCommune": "09164", - "libelleAcheminement": "LESCURE", - "nomCommune": "LESCURE" + "codePostal": "17630", + "codeCommune": "17161", + "libelleAcheminement": "LA FLOTTE", + "nomCommune": "LA FLOTTE" }, { - "codePostal": "50200", - "codeCommune": "50376", - "libelleAcheminement": "NICORPS", - "nomCommune": "NICORPS" + "codePostal": "02590", + "codeCommune": "02702", + "libelleAcheminement": "SAVY", + "nomCommune": "SAVY" }, { - "codePostal": "07230", - "codeCommune": "07213", - "libelleAcheminement": "ST ANDRE LACHAMP", - "nomCommune": "ST ANDRE LACHAMP" + "codePostal": "04320", + "codeCommune": "04043", + "libelleAcheminement": "VAL DE CHALVAGNE", + "nomCommune": "VAL DE CHALVAGNE" }, { - "codePostal": "09250", - "codeCommune": "09171", - "libelleAcheminement": "LORDAT", - "nomCommune": "LORDAT" + "codePostal": "17500", + "codeCommune": "17082", + "libelleAcheminement": "CHAMPAGNAC", + "nomCommune": "CHAMPAGNAC" }, { - "codePostal": "50390", - "codeCommune": "50387", - "libelleAcheminement": "ORGLANDES", - "nomCommune": "ORGLANDES" + "codePostal": "17260", + "codeCommune": "17178", + "libelleAcheminement": "GIVREZAC", + "nomCommune": "GIVREZAC" }, { - "codePostal": "07160", - "codeCommune": "07215", - "libelleAcheminement": "ST BARTHELEMY LE MEIL", - "nomCommune": "ST BARTHELEMY LE MEIL" + "codePostal": "02200", + "codeCommune": "02706", + "libelleAcheminement": "SEPTMONTS", + "nomCommune": "SEPTMONTS" }, { - "codePostal": "09160", - "codeCommune": "09183", - "libelleAcheminement": "MAUVEZIN DE PRAT", - "nomCommune": "MAUVEZIN DE PRAT" + "codePostal": "04280", + "codeCommune": "04045", + "libelleAcheminement": "CERESTE", + "nomCommune": "CERESTE" }, { - "codePostal": "50600", - "codeCommune": "50391", - "libelleAcheminement": "GRANDPARIGNY", - "nomCommune": "GRANDPARIGNY" + "codePostal": "17240", + "codeCommune": "17084", + "libelleAcheminement": "CHAMPAGNOLLES", + "nomCommune": "CHAMPAGNOLLES" }, { - "codePostal": "07270", - "codeCommune": "07216", - "libelleAcheminement": "ST BARTHELEMY GROZON", - "nomCommune": "ST BARTHELEMY GROZON" + "codePostal": "17600", + "codeCommune": "17214", + "libelleAcheminement": "LUCHAT", + "nomCommune": "LUCHAT" }, { - "codePostal": "09460", - "codeCommune": "09193", - "libelleAcheminement": "MIJANES", - "nomCommune": "MIJANES" + "codePostal": "02240", + "codeCommune": "02717", + "libelleAcheminement": "SERY LES MEZIERES", + "nomCommune": "SERY LES MEZIERES" }, { - "codePostal": "50160", - "codeCommune": "50398", - "libelleAcheminement": "LE PERRON", - "nomCommune": "LE PERRON" + "codePostal": "04250", + "codeCommune": "04050", + "libelleAcheminement": "CHATEAUFORT", + "nomCommune": "CHATEAUFORT" }, { - "codePostal": "07270", - "codeCommune": "07218", - "libelleAcheminement": "ST BASILE", - "nomCommune": "ST BASILE" + "codePostal": "17230", + "codeCommune": "17091", + "libelleAcheminement": "CHARRON", + "nomCommune": "CHARRON" }, { - "codePostal": "09200", - "codeCommune": "09209", - "libelleAcheminement": "MONTJOIE EN COUSERANS", - "nomCommune": "MONTJOIE EN COUSERANS" + "codePostal": "17500", + "codeCommune": "17215", + "libelleAcheminement": "LUSSAC", + "nomCommune": "LUSSAC" }, { - "codePostal": "50250", - "codeCommune": "50400", - "libelleAcheminement": "PICAUVILLE", - "nomCommune": "PICAUVILLE" + "codePostal": "02470", + "codeCommune": "02724", + "libelleAcheminement": "SOMMELANS", + "nomCommune": "SOMMELANS" }, { - "codePostal": "07200", - "codeCommune": "07229", - "libelleAcheminement": "ST DIDIER SOUS AUBENAS", - "nomCommune": "ST DIDIER SOUS AUBENAS" + "codePostal": "04530", + "codeCommune": "04062", + "libelleAcheminement": "LA CONDAMINE CHATELARD", + "nomCommune": "LA CONDAMINE CHATELARD" }, { - "codePostal": "09200", - "codeCommune": "09209", - "libelleAcheminement": "MONTJOIE EN COUSERANS", - "nomCommune": "MONTJOIE EN COUSERANS" + "codePostal": "17340", + "codeCommune": "17094", + "libelleAcheminement": "CHATELAILLON PLAGE", + "nomCommune": "CHATELAILLON PLAGE" }, { - "codePostal": "50250", - "codeCommune": "50400", - "libelleAcheminement": "PICAUVILLE", - "nomCommune": "PICAUVILLE" + "codePostal": "17320", + "codeCommune": "17219", + "libelleAcheminement": "MARENNES HIERS BROUAGE", + "nomCommune": "MARENNES HIERS BROUAGE" }, { - "codePostal": "07200", - "codeCommune": "07231", - "libelleAcheminement": "ST ETIENNE DE FONTBELLON", - "nomCommune": "ST ETIENNE DE FONTBELLON" + "codePostal": "02480", + "codeCommune": "02726", + "libelleAcheminement": "SOMMETTE EAUCOURT", + "nomCommune": "SOMMETTE EAUCOURT" }, { - "codePostal": "09240", - "codeCommune": "09212", - "libelleAcheminement": "MONTSERON", - "nomCommune": "MONTSERON" + "codePostal": "05110", + "codeCommune": "04066", + "libelleAcheminement": "CURBANS", + "nomCommune": "CURBANS" }, { - "codePostal": "50360", - "codeCommune": "50400", - "libelleAcheminement": "PICAUVILLE", - "nomCommune": "PICAUVILLE" + "codePostal": "17510", + "codeCommune": "17105", + "libelleAcheminement": "CHIVES", + "nomCommune": "CHIVES" }, { - "codePostal": "07230", - "codeCommune": "07238", - "libelleAcheminement": "ST GENEST DE BEAUZON", - "nomCommune": "ST GENEST DE BEAUZON" + "codePostal": "17700", + "codeCommune": "17221", + "libelleAcheminement": "MARSAIS", + "nomCommune": "MARSAIS" }, { - "codePostal": "09400", - "codeCommune": "09217", - "libelleAcheminement": "NIAUX", - "nomCommune": "NIAUX" + "codePostal": "02600", + "codeCommune": "02729", + "libelleAcheminement": "SOUCY", + "nomCommune": "SOUCY" }, { - "codePostal": "50340", - "codeCommune": "50402", - "libelleAcheminement": "LES PIEUX", - "nomCommune": "LES PIEUX" + "codePostal": "04270", + "codeCommune": "04074", + "libelleAcheminement": "ENTRAGES", + "nomCommune": "ENTRAGES" }, { - "codePostal": "07340", - "codeCommune": "07243", - "libelleAcheminement": "ST JACQUES D ATTICIEUX", - "nomCommune": "ST JACQUES D ATTICIEUX" + "codePostal": "17520", + "codeCommune": "17106", + "libelleAcheminement": "CIERZAC", + "nomCommune": "CIERZAC" }, { - "codePostal": "09130", - "codeCommune": "09224", - "libelleAcheminement": "PAILHES", - "nomCommune": "PAILHES" + "codePostal": "17600", + "codeCommune": "17228", + "libelleAcheminement": "MEDIS", + "nomCommune": "MEDIS" }, { - "codePostal": "50250", - "codeCommune": "50405", - "libelleAcheminement": "LE PLESSIS LASTELLE", - "nomCommune": "LE PLESSIS LASTELLE" + "codePostal": "02290", + "codeCommune": "02736", + "libelleAcheminement": "TARTIERS", + "nomCommune": "TARTIERS" }, { - "codePostal": "07530", - "codeCommune": "07251", - "libelleAcheminement": "ST JOSEPH DES BANCS", - "nomCommune": "ST JOSEPH DES BANCS" + "codePostal": "04200", + "codeCommune": "04075", + "libelleAcheminement": "ENTREPIERRES", + "nomCommune": "ENTREPIERRES" }, { - "codePostal": "09110", - "codeCommune": "09232", - "libelleAcheminement": "PRADES", - "nomCommune": "PRADES" + "codePostal": "17460", + "codeCommune": "17115", + "libelleAcheminement": "COLOMBIERS", + "nomCommune": "COLOMBIERS" }, { - "codePostal": "50620", - "codeCommune": "50409", - "libelleAcheminement": "PONT HEBERT", - "nomCommune": "PONT HEBERT" + "codePostal": "17132", + "codeCommune": "17230", + "libelleAcheminement": "MESCHERS SUR GIRONDE", + "nomCommune": "MESCHERS SUR GIRONDE" }, { - "codePostal": "07200", - "codeCommune": "07254", - "libelleAcheminement": "ST JULIEN DU SERRE", - "nomCommune": "ST JULIEN DU SERRE" + "codePostal": "02700", + "codeCommune": "02738", + "libelleAcheminement": "TERGNIER", + "nomCommune": "TERGNIER" }, { - "codePostal": "09500", - "codeCommune": "09244", - "libelleAcheminement": "RIEUCROS", - "nomCommune": "RIEUCROS" + "codePostal": "04160", + "codeCommune": "04079", + "libelleAcheminement": "L ESCALE", + "nomCommune": "L ESCALE" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "17130", + "codeCommune": "17118", + "libelleAcheminement": "CORIGNAC", + "nomCommune": "CORIGNAC" }, { - "codePostal": "07590", - "codeCommune": "07262", - "libelleAcheminement": "ST LAURENT BAINS LAVAL D AURELLE", - "nomCommune": "ST LAURENT BAINS LAVAL D AURELLE" + "codePostal": "17130", + "codeCommune": "17231", + "libelleAcheminement": "MESSAC", + "nomCommune": "MESSAC" }, { - "codePostal": "09120", - "codeCommune": "09245", - "libelleAcheminement": "RIEUX DE PELLEPORT", - "nomCommune": "RIEUX DE PELLEPORT" + "codePostal": "02700", + "codeCommune": "02738", + "libelleAcheminement": "TERGNIER", + "nomCommune": "TERGNIER" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "04270", + "codeCommune": "04084", + "libelleAcheminement": "ESTOUBLON", + "nomCommune": "ESTOUBLON" }, { - "codePostal": "07170", - "codeCommune": "07263", - "libelleAcheminement": "ST LAURENT SOUS COIRON", - "nomCommune": "ST LAURENT SOUS COIRON" + "codePostal": "17800", + "codeCommune": "17122", + "libelleAcheminement": "COULONGES", + "nomCommune": "COULONGES" }, { - "codePostal": "09420", - "codeCommune": "09246", - "libelleAcheminement": "RIMONT", - "nomCommune": "RIMONT" + "codePostal": "17500", + "codeCommune": "17233", + "libelleAcheminement": "MEUX", + "nomCommune": "MEUX" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "02810", + "codeCommune": "02744", + "libelleAcheminement": "TORCY EN VALOIS", + "nomCommune": "TORCY EN VALOIS" }, { - "codePostal": "07700", - "codeCommune": "07264", - "libelleAcheminement": "ST MARCEL D ARDECHE", - "nomCommune": "ST MARCEL D ARDECHE" + "codePostal": "04270", + "codeCommune": "04084", + "libelleAcheminement": "ESTOUBLON", + "nomCommune": "ESTOUBLON" }, { - "codePostal": "09300", - "codeCommune": "09262", - "libelleAcheminement": "ST JEAN D AIGUES VIVES", - "nomCommune": "ST JEAN D AIGUES VIVES" + "codePostal": "17160", + "codeCommune": "17126", + "libelleAcheminement": "COURCERAC", + "nomCommune": "COURCERAC" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "17130", + "codeCommune": "17240", + "libelleAcheminement": "MONTENDRE", + "nomCommune": "MONTENDRE" }, { - "codePostal": "07190", - "codeCommune": "07274", - "libelleAcheminement": "ST MAURICE EN CHALENCON", - "nomCommune": "ST MAURICE EN CHALENCON" + "codePostal": "02800", + "codeCommune": "02746", + "libelleAcheminement": "TRAVECY", + "nomCommune": "TRAVECY" }, { - "codePostal": "09800", - "codeCommune": "09263", - "libelleAcheminement": "ST JEAN DU CASTILLONNAIS", - "nomCommune": "ST JEAN DU CASTILLONNAIS" + "codePostal": "04170", + "codeCommune": "04099", + "libelleAcheminement": "LAMBRUISSE", + "nomCommune": "LAMBRUISSE" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "17120", + "codeCommune": "17131", + "libelleAcheminement": "COZES", + "nomCommune": "COZES" }, { - "codePostal": "07160", - "codeCommune": "07276", - "libelleAcheminement": "ST MICHEL D AURANCE", - "nomCommune": "ST MICHEL D AURANCE" + "codePostal": "17270", + "codeCommune": "17241", + "libelleAcheminement": "MONTGUYON", + "nomCommune": "MONTGUYON" }, { - "codePostal": "09000", - "codeCommune": "09264", - "libelleAcheminement": "ST JEAN DE VERGES", - "nomCommune": "ST JEAN DE VERGES" + "codePostal": "02850", + "codeCommune": "02748", + "libelleAcheminement": "TRELOU SUR MARNE", + "nomCommune": "TRELOU SUR MARNE" }, { - "codePostal": "50580", - "codeCommune": "50412", - "libelleAcheminement": "PORT BAIL SUR MER", - "nomCommune": "PORT BAIL SUR MER" + "codePostal": "04340", + "codeCommune": "04102", + "libelleAcheminement": "LE LAUZET UBAYE", + "nomCommune": "LE LAUZET UBAYE" }, { - "codePostal": "07220", - "codeCommune": "07279", - "libelleAcheminement": "ST MONTAN", - "nomCommune": "ST MONTAN" + "codePostal": "17120", + "codeCommune": "17152", + "libelleAcheminement": "EPARGNES", + "nomCommune": "EPARGNES" }, { - "codePostal": "09500", - "codeCommune": "09266", - "libelleAcheminement": "ST JULIEN DE GRAS CAPOU", - "nomCommune": "ST JULIEN DE GRAS CAPOU" + "codePostal": "17260", + "codeCommune": "17244", + "libelleAcheminement": "MONTPELLIER DE MEDILLAN", + "nomCommune": "MONTPELLIER DE MEDILLAN" }, { - "codePostal": "50220", - "codeCommune": "50413", - "libelleAcheminement": "PRECEY", - "nomCommune": "PRECEY" + "codePostal": "02000", + "codeCommune": "02755", + "libelleAcheminement": "URCEL", + "nomCommune": "URCEL" }, { - "codePostal": "07400", - "codeCommune": "07283", - "libelleAcheminement": "ST PIERRE LA ROCHE", - "nomCommune": "ST PIERRE LA ROCHE" + "codePostal": "04300", + "codeCommune": "04104", + "libelleAcheminement": "LIMANS", + "nomCommune": "LIMANS" }, { - "codePostal": "09100", - "codeCommune": "09270", - "libelleAcheminement": "ST MARTIN D OYDES", - "nomCommune": "ST MARTIN D OYDES" + "codePostal": "17250", + "codeCommune": "17154", + "libelleAcheminement": "LES ESSARDS", + "nomCommune": "LES ESSARDS" }, { - "codePostal": "50140", - "codeCommune": "50436", - "libelleAcheminement": "ROMAGNY FONTENAY", - "nomCommune": "ROMAGNY FONTENAY" + "codePostal": "17430", + "codeCommune": "17246", + "libelleAcheminement": "MORAGNE", + "nomCommune": "MORAGNE" }, { - "codePostal": "07000", - "codeCommune": "07288", - "libelleAcheminement": "ST PRIEST", - "nomCommune": "ST PRIEST" + "codePostal": "02140", + "codeCommune": "02759", + "libelleAcheminement": "LA VALLEE AU BLE", + "nomCommune": "LA VALLEE AU BLE" }, { - "codePostal": "09100", - "codeCommune": "09271", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "04510", + "codeCommune": "04110", + "libelleAcheminement": "MALLEMOISSON", + "nomCommune": "MALLEMOISSON" }, { - "codePostal": "50680", - "codeCommune": "50446", - "libelleAcheminement": "ST ANDRE DE L EPINE", - "nomCommune": "ST ANDRE DE L EPINE" + "codePostal": "17750", + "codeCommune": "17155", + "libelleAcheminement": "ETAULES", + "nomCommune": "ETAULES" }, { - "codePostal": "07460", - "codeCommune": "07294", - "libelleAcheminement": "ST SAUVEUR DE CRUZIERES", - "nomCommune": "ST SAUVEUR DE CRUZIERES" + "codePostal": "17120", + "codeCommune": "17248", + "libelleAcheminement": "MORTAGNE SUR GIRONDE", + "nomCommune": "MORTAGNE SUR GIRONDE" }, { - "codePostal": "09000", - "codeCommune": "09272", - "libelleAcheminement": "ST PAUL DE JARRAT", - "nomCommune": "ST PAUL DE JARRAT" + "codePostal": "02160", + "codeCommune": "02764", + "libelleAcheminement": "VASSOGNE", + "nomCommune": "VASSOGNE" }, { - "codePostal": "50380", - "codeCommune": "50447", - "libelleAcheminement": "ST AUBIN DES PREAUX", - "nomCommune": "ST AUBIN DES PREAUX" + "codePostal": "04250", + "codeCommune": "04118", + "libelleAcheminement": "MELVE", + "nomCommune": "MELVE" }, { - "codePostal": "07200", - "codeCommune": "07296", - "libelleAcheminement": "ST SERNIN", - "nomCommune": "ST SERNIN" + "codePostal": "17130", + "codeCommune": "17156", + "libelleAcheminement": "EXPIREMONT", + "nomCommune": "EXPIREMONT" }, { - "codePostal": "09000", - "codeCommune": "09273", - "libelleAcheminement": "ST PIERRE DE RIVIERE", - "nomCommune": "ST PIERRE DE RIVIERE" + "codePostal": "17520", + "codeCommune": "17258", + "libelleAcheminement": "NEUILLAC", + "nomCommune": "NEUILLAC" }, { - "codePostal": "50300", - "codeCommune": "50451", - "libelleAcheminement": "ST BRICE", - "nomCommune": "ST BRICE" + "codePostal": "02110", + "codeCommune": "02769", + "libelleAcheminement": "VAUX ANDIGNY", + "nomCommune": "VAUX ANDIGNY" }, { - "codePostal": "07360", - "codeCommune": "07303", - "libelleAcheminement": "ST VINCENT DE DURFORT", - "nomCommune": "ST VINCENT DE DURFORT" + "codePostal": "04270", + "codeCommune": "04121", + "libelleAcheminement": "MEZEL", + "nomCommune": "MEZEL" }, { - "codePostal": "09240", - "codeCommune": "09292", - "libelleAcheminement": "SENTENAC DE SEROU", - "nomCommune": "SENTENAC DE SEROU" + "codePostal": "17800", + "codeCommune": "17159", + "libelleAcheminement": "FLEAC SUR SEUGNE", + "nomCommune": "FLEAC SUR SEUGNE" }, { - "codePostal": "50270", - "codeCommune": "50471", - "libelleAcheminement": "ST GEORGES DE LA RIVIERE", - "nomCommune": "ST GEORGES DE LA RIVIERE" + "codePostal": "17270", + "codeCommune": "17260", + "libelleAcheminement": "NEUVICQ", + "nomCommune": "NEUVICQ" }, { - "codePostal": "07370", - "codeCommune": "07308", - "libelleAcheminement": "SARRAS", - "nomCommune": "SARRAS" + "codePostal": "02400", + "codeCommune": "02781", + "libelleAcheminement": "VERDILLY", + "nomCommune": "VERDILLY" }, { - "codePostal": "09800", - "codeCommune": "09297", - "libelleAcheminement": "SOR", - "nomCommune": "SOR" + "codePostal": "04500", + "codeCommune": "04124", + "libelleAcheminement": "MONTAGNAC MONTPEZAT", + "nomCommune": "MONTAGNAC MONTPEZAT" }, { - "codePostal": "50600", - "codeCommune": "50484", - "libelleAcheminement": "ST HILAIRE DU HARCOUET", - "nomCommune": "ST HILAIRE DU HARCOUET" + "codePostal": "17120", + "codeCommune": "17160", + "libelleAcheminement": "FLOIRAC", + "nomCommune": "FLOIRAC" }, { - "codePostal": "07430", - "codeCommune": "07310", - "libelleAcheminement": "SAVAS", - "nomCommune": "SAVAS" + "codePostal": "17137", + "codeCommune": "17264", + "libelleAcheminement": "NIEUL SUR MER", + "nomCommune": "NIEUL SUR MER" }, { - "codePostal": "09140", - "codeCommune": "09299", - "libelleAcheminement": "SOUEIX ROGALLE", - "nomCommune": "SOUEIX ROGALLE" + "codePostal": "02120", + "codeCommune": "02783", + "libelleAcheminement": "GRAND VERLY", + "nomCommune": "GRAND VERLY" }, { - "codePostal": "50240", - "codeCommune": "50487", - "libelleAcheminement": "ST JAMES", - "nomCommune": "ST JAMES" + "codePostal": "04250", + "codeCommune": "04134", + "libelleAcheminement": "LA MOTTE DU CAIRE", + "nomCommune": "LA MOTTE DU CAIRE" }, { - "codePostal": "07400", - "codeCommune": "07311", - "libelleAcheminement": "SCEAUTRES", - "nomCommune": "SCEAUTRES" + "codePostal": "17510", + "codeCommune": "17162", + "libelleAcheminement": "FONTAINE CHALENDRAY", + "nomCommune": "FONTAINE CHALENDRAY" }, { - "codePostal": "09140", - "codeCommune": "09299", - "libelleAcheminement": "SOUEIX ROGALLE", - "nomCommune": "SOUEIX ROGALLE" + "codePostal": "17380", + "codeCommune": "17266", + "libelleAcheminement": "LES NOUILLERS", + "nomCommune": "LES NOUILLERS" }, { - "codePostal": "50620", - "codeCommune": "50488", - "libelleAcheminement": "ST JEAN DE DAYE", - "nomCommune": "ST JEAN DE DAYE" + "codePostal": "02340", + "codeCommune": "02801", + "libelleAcheminement": "VIGNEUX HOCQUET", + "nomCommune": "VIGNEUX HOCQUET" }, { - "codePostal": "07200", - "codeCommune": "07325", - "libelleAcheminement": "UCEL", - "nomCommune": "UCEL" + "codePostal": "04170", + "codeCommune": "04136", + "libelleAcheminement": "LA MURE ARGENS", + "nomCommune": "LA MURE ARGENS" }, { - "codePostal": "09400", - "codeCommune": "09303", - "libelleAcheminement": "SURBA", - "nomCommune": "SURBA" + "codePostal": "17290", + "codeCommune": "17166", + "libelleAcheminement": "FORGES", + "nomCommune": "FORGES" }, { - "codePostal": "50320", - "codeCommune": "50493", - "libelleAcheminement": "ST JEAN DES CHAMPS", - "nomCommune": "ST JEAN DES CHAMPS" + "codePostal": "17470", + "codeCommune": "17271", + "libelleAcheminement": "PAILLE", + "nomCommune": "PAILLE" }, { - "codePostal": "07150", - "codeCommune": "07328", - "libelleAcheminement": "VAGNAS", - "nomCommune": "VAGNAS" + "codePostal": "02210", + "codeCommune": "02804", + "libelleAcheminement": "VILLEMONTOIRE", + "nomCommune": "VILLEMONTOIRE" }, { - "codePostal": "09350", - "codeCommune": "09310", - "libelleAcheminement": "THOUARS SUR ARIZE", - "nomCommune": "THOUARS SUR ARIZE" + "codePostal": "04300", + "codeCommune": "04138", + "libelleAcheminement": "NIOZELLES", + "nomCommune": "NIOZELLES" }, { - "codePostal": "50370", - "codeCommune": "50495", - "libelleAcheminement": "ST JEAN DU CORAIL DES BOIS", - "nomCommune": "ST JEAN DU CORAIL DES BOIS" + "codePostal": "17520", + "codeCommune": "17175", + "libelleAcheminement": "GERMIGNAC", + "nomCommune": "GERMIGNAC" }, { - "codePostal": "07400", - "codeCommune": "07332", - "libelleAcheminement": "VALVIGNERES", - "nomCommune": "VALVIGNERES" + "codePostal": "17400", + "codeCommune": "17277", + "libelleAcheminement": "ESSOUVERT", + "nomCommune": "ESSOUVERT" }, { - "codePostal": "09100", - "codeCommune": "09312", - "libelleAcheminement": "LA TOUR DU CRIEU", - "nomCommune": "LA TOUR DU CRIEU" + "codePostal": "02240", + "codeCommune": "02813", + "libelleAcheminement": "VILLERS LE SEC", + "nomCommune": "VILLERS LE SEC" }, { - "codePostal": "50700", - "codeCommune": "50498", - "libelleAcheminement": "ST JOSEPH", - "nomCommune": "ST JOSEPH" + "codePostal": "04200", + "codeCommune": "04140", + "libelleAcheminement": "LES OMERGUES", + "nomCommune": "LES OMERGUES" }, { - "codePostal": "07140", - "codeCommune": "07334", - "libelleAcheminement": "LES VANS", - "nomCommune": "LES VANS" + "codePostal": "17120", + "codeCommune": "17183", + "libelleAcheminement": "GREZAC", + "nomCommune": "GREZAC" }, { - "codePostal": "09310", - "codeCommune": "09320", - "libelleAcheminement": "URS", - "nomCommune": "URS" + "codePostal": "17210", + "codeCommune": "17281", + "libelleAcheminement": "POLIGNAC", + "nomCommune": "POLIGNAC" }, { - "codePostal": "50240", - "codeCommune": "50500", - "libelleAcheminement": "ST LAURENT DE TERREGATTE", - "nomCommune": "ST LAURENT DE TERREGATTE" + "codePostal": "02130", + "codeCommune": "02816", + "libelleAcheminement": "VILLERS SUR FERE", + "nomCommune": "VILLERS SUR FERE" }, { - "codePostal": "07410", - "codeCommune": "07335", - "libelleAcheminement": "VAUDEVANT", - "nomCommune": "VAUDEVANT" + "codePostal": "04230", + "codeCommune": "04141", + "libelleAcheminement": "ONGLES", + "nomCommune": "ONGLES" }, { - "codePostal": "09110", - "codeCommune": "09325", - "libelleAcheminement": "VAYCHIS", - "nomCommune": "VAYCHIS" + "codePostal": "17600", + "codeCommune": "17185", + "libelleAcheminement": "LE GUA", + "nomCommune": "LE GUA" }, { - "codePostal": "50000", - "codeCommune": "50502", - "libelleAcheminement": "ST LO", - "nomCommune": "ST LO" + "codePostal": "17350", + "codeCommune": "17285", + "libelleAcheminement": "PORT D ENVAUX", + "nomCommune": "PORT D ENVAUX" }, { - "codePostal": "07260", - "codeCommune": "07336", - "libelleAcheminement": "VERNON", - "nomCommune": "VERNON" + "codePostal": "02310", + "codeCommune": "02818", + "libelleAcheminement": "VILLIERS ST DENIS", + "nomCommune": "VILLIERS ST DENIS" }, { - "codePostal": "09000", - "codeCommune": "09329", - "libelleAcheminement": "VERNAJOUL", - "nomCommune": "VERNAJOUL" + "codePostal": "04700", + "codeCommune": "04143", + "libelleAcheminement": "ORAISON", + "nomCommune": "ORAISON" }, { - "codePostal": "50310", - "codeCommune": "50511", - "libelleAcheminement": "ST MARTIN D AUDOUVILLE", - "nomCommune": "ST MARTIN D AUDOUVILLE" + "codePostal": "17540", + "codeCommune": "17186", + "libelleAcheminement": "LE GUE D ALLERE", + "nomCommune": "LE GUE D ALLERE" }, { - "codePostal": "07170", - "codeCommune": "07341", - "libelleAcheminement": "VILLENEUVE DE BERG", - "nomCommune": "VILLENEUVE DE BERG" + "codePostal": "17500", + "codeCommune": "17295", + "libelleAcheminement": "REAUX SUR TREFLE", + "nomCommune": "REAUX SUR TREFLE" }, { - "codePostal": "09220", - "codeCommune": "09334", - "libelleAcheminement": "VAL DE SOS", - "nomCommune": "VAL DE SOS" + "codePostal": "02340", + "codeCommune": "02819", + "libelleAcheminement": "VINCY REUIL ET MAGNY", + "nomCommune": "VINCY REUIL ET MAGNY" }, { - "codePostal": "50210", - "codeCommune": "50513", - "libelleAcheminement": "ST MARTIN DE CENILLY", - "nomCommune": "ST MARTIN DE CENILLY" + "codePostal": "04110", + "codeCommune": "04160", + "libelleAcheminement": "REILLANNE", + "nomCommune": "REILLANNE" }, { - "codePostal": "07610", - "codeCommune": "07345", - "libelleAcheminement": "VION", - "nomCommune": "VION" + "codePostal": "17500", + "codeCommune": "17187", + "libelleAcheminement": "GUITINIERES", + "nomCommune": "GUITINIERES" }, { - "codePostal": "09100", - "codeCommune": "09339", - "libelleAcheminement": "VILLENEUVE DU PAREAGE", - "nomCommune": "VILLENEUVE DU PAREAGE" + "codePostal": "17000", + "codeCommune": "17300", + "libelleAcheminement": "LA ROCHELLE", + "nomCommune": "LA ROCHELLE" }, { - "codePostal": "50480", - "codeCommune": "50517", - "libelleAcheminement": "ST MARTIN DE VARREVILLE", - "nomCommune": "ST MARTIN DE VARREVILLE" + "codePostal": "02140", + "codeCommune": "02823", + "libelleAcheminement": "VOHARIES", + "nomCommune": "VOHARIES" }, { - "codePostal": "08190", - "codeCommune": "08004", - "libelleAcheminement": "AIRE", - "nomCommune": "AIRE" + "codePostal": "04000", + "codeCommune": "04167", + "libelleAcheminement": "LA ROBINE SUR GALABRE", + "nomCommune": "LA ROBINE SUR GALABRE" }, { - "codePostal": "09120", - "codeCommune": "09340", - "libelleAcheminement": "VIRA", - "nomCommune": "VIRA" + "codePostal": "17220", + "codeCommune": "17193", + "libelleAcheminement": "LA JARNE", + "nomCommune": "LA JARNE" }, { - "codePostal": "50250", - "codeCommune": "50528", - "libelleAcheminement": "ST NICOLAS DE PIERREPONT", - "nomCommune": "ST NICOLAS DE PIERREPONT" + "codePostal": "17800", + "codeCommune": "17304", + "libelleAcheminement": "ROUFFIAC", + "nomCommune": "ROUFFIAC" }, { - "codePostal": "08500", - "codeCommune": "08011", - "libelleAcheminement": "ANCHAMPS", - "nomCommune": "ANCHAMPS" + "codePostal": "03120", + "codeCommune": "03006", + "libelleAcheminement": "ARFEUILLES", + "nomCommune": "ARFEUILLES" }, { - "codePostal": "09500", - "codeCommune": "09341", - "libelleAcheminement": "VIVIES", - "nomCommune": "VIVIES" + "codePostal": "04240", + "codeCommune": "04174", + "libelleAcheminement": "ST BENOIT", + "nomCommune": "ST BENOIT" }, { - "codePostal": "50200", - "codeCommune": "50537", - "libelleAcheminement": "ST PIERRE DE COUTANCES", - "nomCommune": "ST PIERRE DE COUTANCES" + "codePostal": "17500", + "codeCommune": "17197", + "libelleAcheminement": "JONZAC", + "nomCommune": "JONZAC" }, { - "codePostal": "08450", - "codeCommune": "08013", - "libelleAcheminement": "ANGECOURT", - "nomCommune": "ANGECOURT" + "codePostal": "17600", + "codeCommune": "17307", + "libelleAcheminement": "SABLONCEAUX", + "nomCommune": "SABLONCEAUX" }, { - "codePostal": "10700", - "codeCommune": "10006", - "libelleAcheminement": "ARCIS SUR AUBE", - "nomCommune": "ARCIS SUR AUBE" + "codePostal": "03420", + "codeCommune": "03007", + "libelleAcheminement": "ARPHEUILLES ST PRIEST", + "nomCommune": "ARPHEUILLES ST PRIEST" }, { - "codePostal": "50530", - "codeCommune": "50540", - "libelleAcheminement": "ST PIERRE LANGERS", - "nomCommune": "ST PIERRE LANGERS" + "codePostal": "04110", + "codeCommune": "04175", + "libelleAcheminement": "STE CROIX A LAUZE", + "nomCommune": "STE CROIX A LAUZE" }, { - "codePostal": "08400", - "codeCommune": "08018", - "libelleAcheminement": "ARDEUIL ET MONTFAUXELLES", - "nomCommune": "ARDEUIL ET MONTFAUXELLES" + "codePostal": "17290", + "codeCommune": "17203", + "libelleAcheminement": "LANDRAIS", + "nomCommune": "LANDRAIS" }, { - "codePostal": "10200", - "codeCommune": "10007", - "libelleAcheminement": "ARCONVILLE", - "nomCommune": "ARCONVILLE" + "codePostal": "17170", + "codeCommune": "17322", + "libelleAcheminement": "ST CYR DU DORET", + "nomCommune": "ST CYR DU DORET" }, { - "codePostal": "50750", - "codeCommune": "50546", - "libelleAcheminement": "BOURGVALLEES", - "nomCommune": "BOURGVALLEES" + "codePostal": "03460", + "codeCommune": "03015", + "libelleAcheminement": "BAGNEUX", + "nomCommune": "BAGNEUX" }, { - "codePostal": "08310", - "codeCommune": "08032", - "libelleAcheminement": "AUSSONCE", - "nomCommune": "AUSSONCE" + "codePostal": "04380", + "codeCommune": "04177", + "libelleAcheminement": "HAUTES DUYES", + "nomCommune": "HAUTES DUYES" }, { - "codePostal": "10200", - "codeCommune": "10012", - "libelleAcheminement": "ARSONVAL", - "nomCommune": "ARSONVAL" + "codePostal": "17500", + "codeCommune": "17204", + "libelleAcheminement": "LEOVILLE", + "nomCommune": "LEOVILLE" }, { - "codePostal": "50250", - "codeCommune": "50548", - "libelleAcheminement": "ST SAUVEUR DE PIERREPONT", - "nomCommune": "ST SAUVEUR DE PIERREPONT" + "codePostal": "17240", + "codeCommune": "17325", + "libelleAcheminement": "ST DIZANT DU GUA", + "nomCommune": "ST DIZANT DU GUA" }, { - "codePostal": "08000", - "codeCommune": "08040", - "libelleAcheminement": "LES AYVELLES", - "nomCommune": "LES AYVELLES" + "codePostal": "03500", + "codeCommune": "03018", + "libelleAcheminement": "BAYET", + "nomCommune": "BAYET" }, { - "codePostal": "10240", - "codeCommune": "10017", - "libelleAcheminement": "AULNAY", - "nomCommune": "AULNAY" + "codePostal": "04200", + "codeCommune": "04179", + "libelleAcheminement": "ST GENIEZ", + "nomCommune": "ST GENIEZ" }, { - "codePostal": "50490", - "codeCommune": "50550", - "libelleAcheminement": "ST SAUVEUR VILLAGES", - "nomCommune": "ST SAUVEUR VILLAGES" + "codePostal": "17111", + "codeCommune": "17207", + "libelleAcheminement": "LOIX", + "nomCommune": "LOIX" }, { - "codePostal": "08400", - "codeCommune": "08045", - "libelleAcheminement": "BALLAY", - "nomCommune": "BALLAY" + "codePostal": "17240", + "codeCommune": "17331", + "libelleAcheminement": "ST GENIS DE SAINTONGE", + "nomCommune": "ST GENIS DE SAINTONGE" }, { - "codePostal": "10220", - "codeCommune": "10019", - "libelleAcheminement": "VAL D AUZON", - "nomCommune": "VAL D AUZON" + "codePostal": "03390", + "codeCommune": "03020", + "libelleAcheminement": "BEAUNE D ALLIER", + "nomCommune": "BEAUNE D ALLIER" }, { - "codePostal": "50240", - "codeCommune": "50553", - "libelleAcheminement": "ST SENIER DE BEUVRON", - "nomCommune": "ST SENIER DE BEUVRON" + "codePostal": "04140", + "codeCommune": "04191", + "libelleAcheminement": "ST MARTIN LES SEYNE", + "nomCommune": "ST MARTIN LES SEYNE" }, { - "codePostal": "08430", - "codeCommune": "08047", - "libelleAcheminement": "BARBAISE", - "nomCommune": "BARBAISE" + "codePostal": "17160", + "codeCommune": "17212", + "libelleAcheminement": "LOUZIGNAC", + "nomCommune": "LOUZIGNAC" }, { - "codePostal": "10290", - "codeCommune": "10023", - "libelleAcheminement": "AVON LA PEZE", - "nomCommune": "AVON LA PEZE" + "codePostal": "17110", + "codeCommune": "17333", + "libelleAcheminement": "ST GEORGES DE DIDONNE", + "nomCommune": "ST GEORGES DE DIDONNE" }, { - "codePostal": "50420", - "codeCommune": "50563", - "libelleAcheminement": "ST VIGOR DES MONTS", - "nomCommune": "ST VIGOR DES MONTS" + "codePostal": "03120", + "codeCommune": "03028", + "libelleAcheminement": "BILLEZOIS", + "nomCommune": "BILLEZOIS" }, { - "codePostal": "08250", - "codeCommune": "08056", - "libelleAcheminement": "BEFFU ET LE MORTHOMME", - "nomCommune": "BEFFU ET LE MORTHOMME" + "codePostal": "04200", + "codeCommune": "04199", + "libelleAcheminement": "ST VINCENT SUR JABRON", + "nomCommune": "ST VINCENT SUR JABRON" }, { - "codePostal": "10330", - "codeCommune": "10027", - "libelleAcheminement": "BALIGNICOURT", - "nomCommune": "BALIGNICOURT" + "codePostal": "17320", + "codeCommune": "17219", + "libelleAcheminement": "MARENNES HIERS BROUAGE", + "nomCommune": "MARENNES HIERS BROUAGE" }, { - "codePostal": "50500", - "codeCommune": "50564", - "libelleAcheminement": "TERRE ET MARAIS", - "nomCommune": "TERRE ET MARAIS" + "codePostal": "17470", + "codeCommune": "17334", + "libelleAcheminement": "ST GEORGES DE LONGUEPIERRE", + "nomCommune": "ST GEORGES DE LONGUEPIERRE" }, { - "codePostal": "08240", - "codeCommune": "08061", - "libelleAcheminement": "LA BERLIERE", - "nomCommune": "LA BERLIERE" + "codePostal": "03800", + "codeCommune": "03030", + "libelleAcheminement": "BIOZAT", + "nomCommune": "BIOZAT" }, { - "codePostal": "10210", - "codeCommune": "10028", - "libelleAcheminement": "BALNOT LA GRANGE", - "nomCommune": "BALNOT LA GRANGE" + "codePostal": "04140", + "codeCommune": "04205", + "libelleAcheminement": "SEYNE LES ALPES", + "nomCommune": "SEYNE" }, { - "codePostal": "50690", - "codeCommune": "50575", - "libelleAcheminement": "SIDEVILLE", - "nomCommune": "SIDEVILLE" + "codePostal": "17490", + "codeCommune": "17223", + "libelleAcheminement": "MASSAC", + "nomCommune": "MASSAC" }, { - "codePostal": "08300", - "codeCommune": "08062", - "libelleAcheminement": "BERTONCOURT", - "nomCommune": "BERTONCOURT" + "codePostal": "17150", + "codeCommune": "17335", + "libelleAcheminement": "ST GEORGES DES AGOUTS", + "nomCommune": "ST GEORGES DES AGOUTS" }, { - "codePostal": "10500", - "codeCommune": "10044", - "libelleAcheminement": "BETIGNICOURT", - "nomCommune": "BETIGNICOURT" + "codePostal": "03130", + "codeCommune": "03035", + "libelleAcheminement": "LE BOUCHAUD", + "nomCommune": "LE BOUCHAUD" }, { - "codePostal": "50340", - "codeCommune": "50576", - "libelleAcheminement": "SIOUVILLE HAGUE", - "nomCommune": "SIOUVILLE HAGUE" + "codePostal": "04300", + "codeCommune": "04206", + "libelleAcheminement": "SIGONCE", + "nomCommune": "SIGONCE" }, { - "codePostal": "08110", - "codeCommune": "08067", - "libelleAcheminement": "BLAGNY", - "nomCommune": "BLAGNY" + "codePostal": "17150", + "codeCommune": "17236", + "libelleAcheminement": "MIRAMBEAU", + "nomCommune": "MIRAMBEAU" }, { - "codePostal": "10270", - "codeCommune": "10053", - "libelleAcheminement": "BOURANTON", - "nomCommune": "BOURANTON" + "codePostal": "17190", + "codeCommune": "17337", + "libelleAcheminement": "ST GEORGES D OLERON", + "nomCommune": "ST GEORGES D OLERON" }, { - "codePostal": "50150", - "codeCommune": "50582", - "libelleAcheminement": "SOURDEVAL", - "nomCommune": "SOURDEVAL" + "codePostal": "03110", + "codeCommune": "03043", + "libelleAcheminement": "BROUT VERNET", + "nomCommune": "BROUT VERNET" }, { - "codePostal": "08190", - "codeCommune": "08070", - "libelleAcheminement": "BLANZY LA SALONNAISE", - "nomCommune": "BLANZY LA SALONNAISE" + "codePostal": "04150", + "codeCommune": "04208", + "libelleAcheminement": "SIMIANE LA ROTONDE", + "nomCommune": "SIMIANE LA ROTONDE" }, { - "codePostal": "10110", - "codeCommune": "10055", - "libelleAcheminement": "BOURGUIGNONS", - "nomCommune": "BOURGUIGNONS" + "codePostal": "17800", + "codeCommune": "17242", + "libelleAcheminement": "MONTILS", + "nomCommune": "MONTILS" }, { - "codePostal": "50420", - "codeCommune": "50592", - "libelleAcheminement": "TESSY BOCAGE", - "nomCommune": "TESSY BOCAGE" + "codePostal": "17190", + "codeCommune": "17337", + "libelleAcheminement": "ST GEORGES D OLERON", + "nomCommune": "ST GEORGES D OLERON" }, { - "codePostal": "08400", - "codeCommune": "08077", - "libelleAcheminement": "BOURCQ", - "nomCommune": "BOURCQ" + "codePostal": "03600", + "codeCommune": "03047", + "libelleAcheminement": "LA CELLE", + "nomCommune": "LA CELLE" }, { - "codePostal": "10400", - "codeCommune": "10057", - "libelleAcheminement": "BOUY SUR ORVIN", - "nomCommune": "BOUY SUR ORVIN" + "codePostal": "04330", + "codeCommune": "04214", + "libelleAcheminement": "TARTONNE", + "nomCommune": "TARTONNE" }, { - "codePostal": "50630", - "codeCommune": "50593", - "libelleAcheminement": "TEURTHEVILLE BOCAGE", - "nomCommune": "TEURTHEVILLE BOCAGE" + "codePostal": "17210", + "codeCommune": "17243", + "libelleAcheminement": "MONTLIEU LA GARDE", + "nomCommune": "MONTLIEU LA GARDE" }, { - "codePostal": "08110", - "codeCommune": "08090", - "libelleAcheminement": "CARIGNAN", - "nomCommune": "CARIGNAN" + "codePostal": "17190", + "codeCommune": "17337", + "libelleAcheminement": "ST GEORGES D OLERON", + "nomCommune": "ST GEORGES D OLERON" }, { - "codePostal": "10450", - "codeCommune": "10060", - "libelleAcheminement": "BREVIANDES", - "nomCommune": "BREVIANDES" + "codePostal": "03500", + "codeCommune": "03049", + "libelleAcheminement": "CESSET", + "nomCommune": "CESSET" }, { - "codePostal": "50870", - "codeCommune": "50597", - "libelleAcheminement": "TIREPIED SUR SEE", - "nomCommune": "TIREPIED SUR SEE" + "codePostal": "04170", + "codeCommune": "04219", + "libelleAcheminement": "THORAME HAUTE", + "nomCommune": "THORAME HAUTE" }, { - "codePostal": "08310", - "codeCommune": "08092", - "libelleAcheminement": "CAUROY", - "nomCommune": "CAUROY" + "codePostal": "17240", + "codeCommune": "17250", + "libelleAcheminement": "MOSNAC", + "nomCommune": "MOSNAC" }, { - "codePostal": "10500", - "codeCommune": "10064", - "libelleAcheminement": "BRIENNE LE CHATEAU", - "nomCommune": "BRIENNE LE CHATEAU" + "codePostal": "17240", + "codeCommune": "17343", + "libelleAcheminement": "ST GREGOIRE D ARDENNES", + "nomCommune": "ST GREGOIRE D ARDENNES" }, { - "codePostal": "50330", - "codeCommune": "50598", - "libelleAcheminement": "TOCQUEVILLE", - "nomCommune": "TOCQUEVILLE" + "codePostal": "03170", + "codeCommune": "03052", + "libelleAcheminement": "CHAMBLET", + "nomCommune": "CHAMBLET" }, { - "codePostal": "08130", - "codeCommune": "08103", - "libelleAcheminement": "CHARBOGNE", - "nomCommune": "CHARBOGNE" + "codePostal": "04200", + "codeCommune": "04233", + "libelleAcheminement": "VAUMEILH", + "nomCommune": "VAUMEILH" }, { - "codePostal": "10800", - "codeCommune": "10067", - "libelleAcheminement": "BUCHERES", - "nomCommune": "BUCHERES" + "codePostal": "17500", + "codeCommune": "17259", + "libelleAcheminement": "NEULLES", + "nomCommune": "NEULLES" }, { - "codePostal": "50160", - "codeCommune": "50601", - "libelleAcheminement": "TORIGNY LES VILLES", - "nomCommune": "TORIGNY LES VILLES" + "codePostal": "17800", + "codeCommune": "17354", + "libelleAcheminement": "ST LEGER", + "nomCommune": "ST LEGER" }, { - "codePostal": "08400", - "codeCommune": "08104", - "libelleAcheminement": "CHARDENY", - "nomCommune": "CHARDENY" + "codePostal": "03380", + "codeCommune": "03055", + "libelleAcheminement": "LA CHAPELAUDE", + "nomCommune": "LA CHAPELAUDE" }, { - "codePostal": "10110", - "codeCommune": "10070", - "libelleAcheminement": "CELLES SUR OURCE", - "nomCommune": "CELLES SUR OURCE" + "codePostal": "05600", + "codeCommune": "05026", + "libelleAcheminement": "CEILLAC", + "nomCommune": "CEILLAC" }, { - "codePostal": "50300", - "codeCommune": "50612", - "libelleAcheminement": "VAINS", - "nomCommune": "VAINS" + "codePostal": "17150", + "codeCommune": "17263", + "libelleAcheminement": "NIEUL LE VIROUIL", + "nomCommune": "NIEUL LE VIROUIL" }, { - "codePostal": "08000", - "codeCommune": "08105", - "libelleAcheminement": "CHARLEVILLE MEZIERES", - "nomCommune": "CHARLEVILLE MEZIERES" + "codePostal": "17520", + "codeCommune": "17355", + "libelleAcheminement": "STE LHEURINE", + "nomCommune": "STE LHEURINE" }, { - "codePostal": "10110", - "codeCommune": "10071", - "libelleAcheminement": "CHACENAY", - "nomCommune": "CHACENAY" + "codePostal": "03300", + "codeCommune": "03056", + "libelleAcheminement": "LA CHAPELLE", + "nomCommune": "LA CHAPELLE" }, { - "codePostal": "50300", - "codeCommune": "50616", - "libelleAcheminement": "LE VAL ST PERE", - "nomCommune": "LE VAL ST PERE" + "codePostal": "05260", + "codeCommune": "05029", + "libelleAcheminement": "CHABOTTES", + "nomCommune": "CHABOTTES" }, { - "codePostal": "08220", - "codeCommune": "08113", - "libelleAcheminement": "CHAUMONT PORCIEN", - "nomCommune": "CHAUMONT PORCIEN" + "codePostal": "17470", + "codeCommune": "17268", + "libelleAcheminement": "NUAILLE SUR BOUTONNE", + "nomCommune": "NUAILLE SUR BOUTONNE" }, { - "codePostal": "10700", - "codeCommune": "10075", - "libelleAcheminement": "CHAMPFLEURY", - "nomCommune": "CHAMPFLEURY" + "codePostal": "17380", + "codeCommune": "17356", + "libelleAcheminement": "ST LOUP", + "nomCommune": "ST LOUP" }, { - "codePostal": "50370", - "codeCommune": "50628", - "libelleAcheminement": "VERNIX", - "nomCommune": "VERNIX" + "codePostal": "03230", + "codeCommune": "03057", + "libelleAcheminement": "LA CHAPELLE AUX CHASSES", + "nomCommune": "LA CHAPELLE AUX CHASSES" }, { - "codePostal": "08300", - "codeCommune": "08133", - "libelleAcheminement": "COUCY", - "nomCommune": "COUCY" + "codePostal": "05700", + "codeCommune": "05033", + "libelleAcheminement": "CHANOUSSE", + "nomCommune": "CHANOUSSE" }, { - "codePostal": "10260", - "codeCommune": "10083", - "libelleAcheminement": "CHAPPES", - "nomCommune": "CHAPPES" + "codePostal": "17210", + "codeCommune": "17269", + "libelleAcheminement": "ORIGNOLLES", + "nomCommune": "ORIGNOLLES" }, { - "codePostal": "50430", - "codeCommune": "50629", - "libelleAcheminement": "VESLY", - "nomCommune": "VESLY" + "codePostal": "17740", + "codeCommune": "17360", + "libelleAcheminement": "STE MARIE DE RE", + "nomCommune": "STE MARIE DE RE" }, { - "codePostal": "08300", - "codeCommune": "08148", - "libelleAcheminement": "L ECAILLE", - "nomCommune": "L ECAILLE" + "codePostal": "03140", + "codeCommune": "03062", + "libelleAcheminement": "CHARROUX", + "nomCommune": "CHARROUX" }, { - "codePostal": "10170", - "codeCommune": "10090", - "libelleAcheminement": "CHAUCHIGNY", - "nomCommune": "CHAUCHIGNY" + "codePostal": "05350", + "codeCommune": "05038", + "libelleAcheminement": "CHATEAU VILLE VIEILLE", + "nomCommune": "CHATEAU VILLE VIEILLE" }, { - "codePostal": "51150", - "codeCommune": "51003", - "libelleAcheminement": "AIGNY", - "nomCommune": "AIGNY" + "codePostal": "17810", + "codeCommune": "17275", + "libelleAcheminement": "PESSINES", + "nomCommune": "PESSINES" }, { - "codePostal": "08130", - "codeCommune": "08151", - "libelleAcheminement": "ECORDAL", - "nomCommune": "ECORDAL" + "codePostal": "17150", + "codeCommune": "17362", + "libelleAcheminement": "ST MARTIAL DE MIRAMBEAU", + "nomCommune": "ST MARTIAL DE MIRAMBEAU" }, { - "codePostal": "10130", - "codeCommune": "10099", - "libelleAcheminement": "CHESSY LES PRES", - "nomCommune": "CHESSY LES PRES" + "codePostal": "03250", + "codeCommune": "03066", + "libelleAcheminement": "CHATEL MONTAGNE", + "nomCommune": "CHATEL MONTAGNE" }, { - "codePostal": "51120", - "codeCommune": "51005", - "libelleAcheminement": "ALLEMANT", - "nomCommune": "ALLEMANT" + "codePostal": "05230", + "codeCommune": "05040", + "libelleAcheminement": "CHORGES", + "nomCommune": "CHORGES" }, { - "codePostal": "08260", - "codeCommune": "08154", - "libelleAcheminement": "ESTREBAY", - "nomCommune": "ESTREBAY" + "codePostal": "17250", + "codeCommune": "17280", + "libelleAcheminement": "PLASSAY", + "nomCommune": "PLASSAY" }, { - "codePostal": "10240", - "codeCommune": "10101", - "libelleAcheminement": "COCLOIS", - "nomCommune": "COCLOIS" + "codePostal": "17500", + "codeCommune": "17363", + "libelleAcheminement": "ST MARTIAL DE VITATERNE", + "nomCommune": "ST MARTIAL DE VITATERNE" }, { - "codePostal": "51290", - "codeCommune": "51008", - "libelleAcheminement": "AMBRIERES", - "nomCommune": "AMBRIERES" + "codePostal": "03120", + "codeCommune": "03068", + "libelleAcheminement": "CHATELUS", + "nomCommune": "CHATELUS" }, { - "codePostal": "08260", - "codeCommune": "08156", - "libelleAcheminement": "ETEIGNIERES", - "nomCommune": "ETEIGNIERES" + "codePostal": "05200", + "codeCommune": "05046", + "libelleAcheminement": "EMBRUN", + "nomCommune": "EMBRUN" }, { - "codePostal": "10200", - "codeCommune": "10103", - "libelleAcheminement": "COLOMBE LE SEC", - "nomCommune": "COLOMBE LE SEC" + "codePostal": "17400", + "codeCommune": "17288", + "libelleAcheminement": "POURSAY GARNAUD", + "nomCommune": "POURSAY GARNAUD" }, { - "codePostal": "51260", - "codeCommune": "51009", - "libelleAcheminement": "ANGLURE", - "nomCommune": "ANGLURE" + "codePostal": "17770", + "codeCommune": "17374", + "libelleAcheminement": "STE MEME", + "nomCommune": "STE MEME" }, { - "codePostal": "08090", - "codeCommune": "08162", - "libelleAcheminement": "FAGNON", - "nomCommune": "FAGNON" + "codePostal": "03210", + "codeCommune": "03069", + "libelleAcheminement": "CHATILLON", + "nomCommune": "CHATILLON" }, { - "codePostal": "10500", - "codeCommune": "10105", - "libelleAcheminement": "COURCELLES SUR VOIRE", - "nomCommune": "COURCELLES SUR VOIRE" + "codePostal": "05190", + "codeCommune": "05050", + "libelleAcheminement": "ESPINASSES", + "nomCommune": "ESPINASSES" }, { - "codePostal": "51290", - "codeCommune": "51017", - "libelleAcheminement": "ARZILLIERES NEUVILLE", - "nomCommune": "ARZILLIERES NEUVILLE" + "codePostal": "17160", + "codeCommune": "17290", + "libelleAcheminement": "PRIGNAC", + "nomCommune": "PRIGNAC" }, { - "codePostal": "08170", - "codeCommune": "08166", - "libelleAcheminement": "FEPIN", - "nomCommune": "FEPIN" + "codePostal": "17230", + "codeCommune": "17376", + "libelleAcheminement": "ST OUEN D AUNIS", + "nomCommune": "ST OUEN D AUNIS" }, { - "codePostal": "10270", - "codeCommune": "10110", - "libelleAcheminement": "COURTERANGES", - "nomCommune": "COURTERANGES" + "codePostal": "03440", + "codeCommune": "03070", + "libelleAcheminement": "CHAVENON", + "nomCommune": "CHAVENON" }, { - "codePostal": "51600", - "codeCommune": "51019", - "libelleAcheminement": "AUBERIVE", - "nomCommune": "AUBERIVE" + "codePostal": "05600", + "codeCommune": "05052", + "libelleAcheminement": "EYGLIERS", + "nomCommune": "EYGLIERS" }, { - "codePostal": "08370", - "codeCommune": "08168", - "libelleAcheminement": "LA FERTE SUR CHIERS", - "nomCommune": "LA FERTE SUR CHIERS" + "codePostal": "17138", + "codeCommune": "17291", + "libelleAcheminement": "PUILBOREAU", + "nomCommune": "PUILBOREAU" }, { - "codePostal": "10250", - "codeCommune": "10111", - "libelleAcheminement": "COURTERON", - "nomCommune": "COURTERON" + "codePostal": "17490", + "codeCommune": "17377", + "libelleAcheminement": "ST OUEN LA THENE", + "nomCommune": "ST OUEN LA THENE" }, { - "codePostal": "51800", - "codeCommune": "51027", - "libelleAcheminement": "AUVE", - "nomCommune": "AUVE" + "codePostal": "03330", + "codeCommune": "03077", + "libelleAcheminement": "CHIRAT L EGLISE", + "nomCommune": "CHIRAT L EGLISE" }, { - "codePostal": "08260", - "codeCommune": "08169", - "libelleAcheminement": "FLAIGNES HAVYS", - "nomCommune": "FLAIGNES HAVYS" + "codePostal": "05140", + "codeCommune": "05055", + "libelleAcheminement": "LA FAURIE", + "nomCommune": "LA FAURIE" }, { - "codePostal": "10210", - "codeCommune": "10120", - "libelleAcheminement": "CUSSANGY", - "nomCommune": "CUSSANGY" + "codePostal": "17500", + "codeCommune": "17295", + "libelleAcheminement": "REAUX SUR TREFLE", + "nomCommune": "REAUX SUR TREFLE" }, { - "codePostal": "51190", - "codeCommune": "51029", - "libelleAcheminement": "AVIZE", - "nomCommune": "AVIZE" + "codePostal": "17420", + "codeCommune": "17380", + "libelleAcheminement": "ST PALAIS SUR MER", + "nomCommune": "ST PALAIS SUR MER" }, { - "codePostal": "08200", - "codeCommune": "08170", - "libelleAcheminement": "FLEIGNEUX", - "nomCommune": "FLEIGNEUX" + "codePostal": "03110", + "codeCommune": "03080", + "libelleAcheminement": "COGNAT LYONNE", + "nomCommune": "COGNAT LYONNE" }, { - "codePostal": "10240", - "codeCommune": "10121", - "libelleAcheminement": "DAMPIERRE", - "nomCommune": "DAMPIERRE" + "codePostal": "05500", + "codeCommune": "05072", + "libelleAcheminement": "LAYE", + "nomCommune": "LAYE" }, { - "codePostal": "51160", - "codeCommune": "51030", - "libelleAcheminement": "AY CHAMPAGNE", - "nomCommune": "AY CHAMPAGNE" + "codePostal": "17460", + "codeCommune": "17296", + "libelleAcheminement": "RETAUD", + "nomCommune": "RETAUD" }, { - "codePostal": "08160", - "codeCommune": "08173", - "libelleAcheminement": "FLIZE", - "nomCommune": "FLIZE" + "codePostal": "17700", + "codeCommune": "17382", + "libelleAcheminement": "ST PIERRE D AMILLY", + "nomCommune": "ST PIERRE D AMILLY" }, { - "codePostal": "10130", - "codeCommune": "10122", - "libelleAcheminement": "DAVREY", - "nomCommune": "DAVREY" + "codePostal": "03000", + "codeCommune": "03085", + "libelleAcheminement": "COULANDON", + "nomCommune": "COULANDON" }, { - "codePostal": "51400", - "codeCommune": "51031", - "libelleAcheminement": "BACONNES", - "nomCommune": "BACONNES" + "codePostal": "05300", + "codeCommune": "05073", + "libelleAcheminement": "LAZER", + "nomCommune": "LAZER" }, { - "codePostal": "08200", - "codeCommune": "08174", - "libelleAcheminement": "FLOING", - "nomCommune": "FLOING" + "codePostal": "17000", + "codeCommune": "17300", + "libelleAcheminement": "LA ROCHELLE", + "nomCommune": "LA ROCHELLE" }, { - "codePostal": "10190", - "codeCommune": "10125", - "libelleAcheminement": "DIERREY ST PIERRE", - "nomCommune": "DIERREY ST PIERRE" + "codePostal": "17400", + "codeCommune": "17383", + "libelleAcheminement": "ST PIERRE DE JUILLERS", + "nomCommune": "ST PIERRE DE JUILLERS" }, { - "codePostal": "51230", - "codeCommune": "51035", - "libelleAcheminement": "BANNES", - "nomCommune": "BANNES" + "codePostal": "03320", + "codeCommune": "03087", + "libelleAcheminement": "COULEUVRE", + "nomCommune": "COULEUVRE" }, { - "codePostal": "08600", - "codeCommune": "08175", - "libelleAcheminement": "FOISCHES", - "nomCommune": "FOISCHES" + "codePostal": "05400", + "codeCommune": "05075", + "libelleAcheminement": "MANTEYER", + "nomCommune": "MANTEYER" }, { - "codePostal": "10330", - "codeCommune": "10128", - "libelleAcheminement": "DONNEMENT", - "nomCommune": "DONNEMENT" + "codePostal": "17250", + "codeCommune": "17302", + "libelleAcheminement": "ROMEGOUX", + "nomCommune": "ROMEGOUX" }, { - "codePostal": "51120", - "codeCommune": "51036", - "libelleAcheminement": "BARBONNE FAYEL", - "nomCommune": "BARBONNE FAYEL" + "codePostal": "17240", + "codeCommune": "17390", + "libelleAcheminement": "STE RAMEE", + "nomCommune": "STE RAMEE" }, { - "codePostal": "08370", - "codeCommune": "08184", - "libelleAcheminement": "FROMY", - "nomCommune": "FROMY" + "codePostal": "03300", + "codeCommune": "03094", + "libelleAcheminement": "CREUZIER LE VIEUX", + "nomCommune": "CREUZIER LE VIEUX" }, { - "codePostal": "10400", - "codeCommune": "10148", - "libelleAcheminement": "FERREUX QUINCEY", - "nomCommune": "FERREUX QUINCEY" + "codePostal": "05140", + "codeCommune": "05080", + "libelleAcheminement": "MONTBRAND", + "nomCommune": "MONTBRAND" }, { - "codePostal": "51300", - "codeCommune": "51040", - "libelleAcheminement": "BASSUET", - "nomCommune": "BASSUET" + "codePostal": "17150", + "codeCommune": "17312", + "libelleAcheminement": "ST BONNET SUR GIRONDE", + "nomCommune": "ST BONNET SUR GIRONDE" }, { - "codePostal": "08440", - "codeCommune": "08187", - "libelleAcheminement": "GERNELLE", - "nomCommune": "GERNELLE" + "codePostal": "17350", + "codeCommune": "17397", + "libelleAcheminement": "ST SAVINIEN", + "nomCommune": "ST SAVINIEN" }, { - "codePostal": "10200", - "codeCommune": "10160", - "libelleAcheminement": "FRAVAUX", - "nomCommune": "FRAVAUX" + "codePostal": "03300", + "codeCommune": "03095", + "libelleAcheminement": "CUSSET", + "nomCommune": "CUSSET" }, { - "codePostal": "51360", - "codeCommune": "51044", - "libelleAcheminement": "BEAUMONT SUR VESLE", - "nomCommune": "BEAUMONT SUR VESLE" + "codePostal": "05100", + "codeCommune": "05085", + "libelleAcheminement": "MONTGENEVRE", + "nomCommune": "MONTGENEVRE" }, { - "codePostal": "08200", - "codeCommune": "08191", - "libelleAcheminement": "GIVONNE", - "nomCommune": "GIVONNE" + "codePostal": "17220", + "codeCommune": "17315", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "10270", - "codeCommune": "10162", - "libelleAcheminement": "FRESNOY LE CHATEAU", - "nomCommune": "FRESNOY LE CHATEAU" + "codePostal": "17240", + "codeCommune": "17402", + "libelleAcheminement": "ST SIGISMOND DE CLERMONT", + "nomCommune": "ST SIGISMOND DE CLERMONT" }, { - "codePostal": "51270", - "codeCommune": "51045", - "libelleAcheminement": "BEAUNAY", - "nomCommune": "BEAUNAY" + "codePostal": "03120", + "codeCommune": "03105", + "libelleAcheminement": "DROITURIER", + "nomCommune": "DROITURIER" }, { - "codePostal": "08270", - "codeCommune": "08196", - "libelleAcheminement": "GRANDCHAMP", - "nomCommune": "GRANDCHAMP" + "codePostal": "05400", + "codeCommune": "05087", + "libelleAcheminement": "MONTMAUR", + "nomCommune": "MONTMAUR" }, { - "codePostal": "10200", - "codeCommune": "10163", - "libelleAcheminement": "FULIGNY", - "nomCommune": "FULIGNY" + "codePostal": "17380", + "codeCommune": "17321", + "libelleAcheminement": "ST CREPIN", + "nomCommune": "ST CREPIN" }, { - "codePostal": "51220", - "codeCommune": "51051", - "libelleAcheminement": "BERMERICOURT", - "nomCommune": "BERMERICOURT" + "codePostal": "17150", + "codeCommune": "17405", + "libelleAcheminement": "ST SORLIN DE CONAC", + "nomCommune": "ST SORLIN DE CONAC" }, { - "codePostal": "08300", - "codeCommune": "08219", - "libelleAcheminement": "HAUTEVILLE", - "nomCommune": "HAUTEVILLE" + "codePostal": "03330", + "codeCommune": "03108", + "libelleAcheminement": "ECHASSIERES", + "nomCommune": "ECHASSIERES" }, { - "codePostal": "10400", - "codeCommune": "10169", - "libelleAcheminement": "GUMERY", - "nomCommune": "GUMERY" + "codePostal": "05700", + "codeCommune": "05089", + "libelleAcheminement": "MONTROND", + "nomCommune": "MONTROND" }, { - "codePostal": "51330", - "codeCommune": "51057", - "libelleAcheminement": "BETTANCOURT LA LONGUE", - "nomCommune": "BETTANCOURT LA LONGUE" + "codePostal": "17150", + "codeCommune": "17324", + "libelleAcheminement": "ST DIZANT DU BOIS", + "nomCommune": "ST DIZANT DU BOIS" }, { - "codePostal": "08090", - "codeCommune": "08230", - "libelleAcheminement": "HOULDIZY", - "nomCommune": "HOULDIZY" + "codePostal": "17200", + "codeCommune": "17409", + "libelleAcheminement": "ST SULPICE DE ROYAN", + "nomCommune": "ST SULPICE DE ROYAN" }, { - "codePostal": "10140", - "codeCommune": "10178", - "libelleAcheminement": "JESSAINS", - "nomCommune": "JESSAINS" + "codePostal": "03140", + "codeCommune": "03115", + "libelleAcheminement": "FLEURIEL", + "nomCommune": "FLEURIEL" }, { - "codePostal": "51340", - "codeCommune": "51068", - "libelleAcheminement": "BLESME", - "nomCommune": "BLESME" + "codePostal": "05000", + "codeCommune": "05092", + "libelleAcheminement": "NEFFES", + "nomCommune": "NEFFES" }, { - "codePostal": "08200", - "codeCommune": "08232", - "libelleAcheminement": "ILLY", - "nomCommune": "ILLY" + "codePostal": "17240", + "codeCommune": "17328", + "libelleAcheminement": "ST FORT SUR GIRONDE", + "nomCommune": "ST FORT SUR GIRONDE" }, { - "codePostal": "10260", - "codeCommune": "10181", - "libelleAcheminement": "JULLY SUR SARCE", - "nomCommune": "JULLY SUR SARCE" + "codePostal": "17220", + "codeCommune": "17413", + "libelleAcheminement": "ST VIVIEN", + "nomCommune": "ST VIVIEN" }, { - "codePostal": "51210", - "codeCommune": "51070", - "libelleAcheminement": "BOISSY LE REPOS", - "nomCommune": "BOISSY LE REPOS" + "codePostal": "03400", + "codeCommune": "03121", + "libelleAcheminement": "GENNETINES", + "nomCommune": "GENNETINES" }, { - "codePostal": "08240", - "codeCommune": "08233", - "libelleAcheminement": "IMECOURT", - "nomCommune": "IMECOURT" + "codePostal": "05170", + "codeCommune": "05096", + "libelleAcheminement": "ORCIERES", + "nomCommune": "ORCIERES" }, { - "codePostal": "10500", - "codeCommune": "10184", - "libelleAcheminement": "JUZANVIGNY", - "nomCommune": "JUZANVIGNY" + "codePostal": "17250", + "codeCommune": "17330", + "libelleAcheminement": "STE GEMME", + "nomCommune": "STE GEMME" }, { - "codePostal": "51140", - "codeCommune": "51077", - "libelleAcheminement": "BOUVANCOURT", - "nomCommune": "BOUVANCOURT" + "codePostal": "17220", + "codeCommune": "17420", + "libelleAcheminement": "SALLES SUR MER", + "nomCommune": "SALLES SUR MER" }, { - "codePostal": "08300", - "codeCommune": "08234", - "libelleAcheminement": "INAUMONT", - "nomCommune": "INAUMONT" + "codePostal": "03210", + "codeCommune": "03122", + "libelleAcheminement": "GIPCY", + "nomCommune": "GIPCY" }, { - "codePostal": "10110", - "codeCommune": "10199", - "libelleAcheminement": "LOCHES SUR OURCE", - "nomCommune": "LOCHES SUR OURCE" + "codePostal": "05200", + "codeCommune": "05098", + "libelleAcheminement": "LES ORRES", + "nomCommune": "LES ORRES" }, { - "codePostal": "51290", - "codeCommune": "51080", - "libelleAcheminement": "BRANDONVILLERS", - "nomCommune": "BRANDONVILLERS" + "codePostal": "17240", + "codeCommune": "17332", + "libelleAcheminement": "ST GEORGES ANTIGNAC", + "nomCommune": "ST GEORGES ANTIGNAC" }, { - "codePostal": "08800", - "codeCommune": "08242", - "libelleAcheminement": "LAIFOUR", - "nomCommune": "LAIFOUR" + "codePostal": "17510", + "codeCommune": "17422", + "libelleAcheminement": "SEIGNE", + "nomCommune": "SEIGNE" }, { - "codePostal": "10320", - "codeCommune": "10204", - "libelleAcheminement": "LONGEVILLE SUR MOGNE", - "nomCommune": "LONGEVILLE SUR MOGNE" + "codePostal": "03360", + "codeCommune": "03130", + "libelleAcheminement": "ISLE ET BARDAIS", + "nomCommune": "ISLE ET BARDAIS" }, { - "codePostal": "51140", - "codeCommune": "51081", - "libelleAcheminement": "BRANSCOURT", - "nomCommune": "BRANSCOURT" + "codePostal": "05400", + "codeCommune": "05099", + "libelleAcheminement": "OZE", + "nomCommune": "OZE" }, { - "codePostal": "08150", - "codeCommune": "08249", - "libelleAcheminement": "LAVAL MORENCY", - "nomCommune": "LAVAL MORENCY" + "codePostal": "17190", + "codeCommune": "17337", + "libelleAcheminement": "ST GEORGES D OLERON", + "nomCommune": "ST GEORGES D OLERON" }, { - "codePostal": "10240", - "codeCommune": "10206", - "libelleAcheminement": "LONGSOLS", - "nomCommune": "LONGSOLS" + "codePostal": "17150", + "codeCommune": "17430", + "libelleAcheminement": "SOUBRAN", + "nomCommune": "SOUBRAN" }, { - "codePostal": "51240", - "codeCommune": "51087", - "libelleAcheminement": "BREUVERY SUR COOLE", - "nomCommune": "BREUVERY SUR COOLE" + "codePostal": "03220", + "codeCommune": "03132", + "libelleAcheminement": "JALIGNY SUR BESBRE", + "nomCommune": "JALIGNY SUR BESBRE" }, { - "codePostal": "08460", - "codeCommune": "08272", - "libelleAcheminement": "MARANWEZ", - "nomCommune": "MARANWEZ" + "codePostal": "05290", + "codeCommune": "05101", + "libelleAcheminement": "VALLOUISE PELVOUX", + "nomCommune": "VALLOUISE PELVOUX" }, { - "codePostal": "10270", - "codeCommune": "10209", - "libelleAcheminement": "LUSIGNY SUR BARSE", - "nomCommune": "LUSIGNY SUR BARSE" + "codePostal": "17500", + "codeCommune": "17339", + "libelleAcheminement": "ST GERMAIN DE LUSIGNAN", + "nomCommune": "ST GERMAIN DE LUSIGNAN" }, { - "codePostal": "51220", - "codeCommune": "51088", - "libelleAcheminement": "BRIMONT", - "nomCommune": "BRIMONT" + "codePostal": "17130", + "codeCommune": "17432", + "libelleAcheminement": "SOUMERAS", + "nomCommune": "SOUMERAS" }, { - "codePostal": "08110", - "codeCommune": "08281", - "libelleAcheminement": "MATTON ET CLEMENCY", - "nomCommune": "MATTON ET CLEMENCY" + "codePostal": "03250", + "codeCommune": "03139", + "libelleAcheminement": "LAPRUGNE", + "nomCommune": "LAPRUGNE" }, { - "codePostal": "10150", - "codeCommune": "10210", - "libelleAcheminement": "LUYERES", - "nomCommune": "LUYERES" + "codePostal": "05340", + "codeCommune": "05101", + "libelleAcheminement": "VALLOUISE PELVOUX", + "nomCommune": "VALLOUISE PELVOUX" }, { - "codePostal": "51170", - "codeCommune": "51089", - "libelleAcheminement": "BROUILLET", - "nomCommune": "BROUILLET" + "codePostal": "17770", + "codeCommune": "17344", + "libelleAcheminement": "ST HILAIRE DE VILLEFRANCHE", + "nomCommune": "ST HILAIRE DE VILLEFRANCHE" }, { - "codePostal": "08270", - "codeCommune": "08288", - "libelleAcheminement": "MESMONT", - "nomCommune": "MESMONT" + "codePostal": "17130", + "codeCommune": "17433", + "libelleAcheminement": "SOUSMOULINS", + "nomCommune": "SOUSMOULINS" }, { - "codePostal": "10300", - "codeCommune": "10211", - "libelleAcheminement": "MACEY", - "nomCommune": "MACEY" + "codePostal": "03360", + "codeCommune": "03143", + "libelleAcheminement": "LETELON", + "nomCommune": "LETELON" }, { - "codePostal": "51600", - "codeCommune": "51097", - "libelleAcheminement": "BUSSY LE CHATEAU", - "nomCommune": "BUSSY LE CHATEAU" + "codePostal": "05340", + "codeCommune": "05101", + "libelleAcheminement": "VALLOUISE PELVOUX", + "nomCommune": "VALLOUISE PELVOUX" }, { - "codePostal": "08370", - "codeCommune": "08293", - "libelleAcheminement": "MOIRY", - "nomCommune": "MOIRY" + "codePostal": "17430", + "codeCommune": "17346", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "10700", - "codeCommune": "10235", - "libelleAcheminement": "MESNIL LA COMTESSE", - "nomCommune": "MESNIL LA COMTESSE" + "codePostal": "17350", + "codeCommune": "17435", + "libelleAcheminement": "TAILLANT", + "nomCommune": "TAILLANT" }, { - "codePostal": "51220", - "codeCommune": "51102", - "libelleAcheminement": "CAUROY LES HERMONVILLE", - "nomCommune": "CAUROY LES HERMONVILLE" + "codePostal": "03130", + "codeCommune": "03144", + "libelleAcheminement": "LIERNOLLES", + "nomCommune": "LIERNOLLES" }, { - "codePostal": "08090", - "codeCommune": "08298", - "libelleAcheminement": "MONTCY NOTRE DAME", - "nomCommune": "MONTCY NOTRE DAME" + "codePostal": "05100", + "codeCommune": "05109", + "libelleAcheminement": "PUY ST PIERRE", + "nomCommune": "PUY ST PIERRE" }, { - "codePostal": "10240", - "codeCommune": "10236", - "libelleAcheminement": "MESNIL LETTRE", - "nomCommune": "MESNIL LETTRE" + "codePostal": "17620", + "codeCommune": "17348", + "libelleAcheminement": "ST JEAN D ANGLE", + "nomCommune": "ST JEAN D ANGLE" }, { - "codePostal": "51420", - "codeCommune": "51105", - "libelleAcheminement": "CERNAY LES REIMS", - "nomCommune": "CERNAY LES REIMS" + "codePostal": "17120", + "codeCommune": "17437", + "libelleAcheminement": "TALMONT SUR GIRONDE", + "nomCommune": "TALMONT SUR GIRONDE" }, { - "codePostal": "08800", - "codeCommune": "08302", - "libelleAcheminement": "MONTHERME", - "nomCommune": "MONTHERME" + "codePostal": "03320", + "codeCommune": "03146", + "libelleAcheminement": "LIMOISE", + "nomCommune": "LIMOISE" }, { - "codePostal": "10190", - "codeCommune": "10240", - "libelleAcheminement": "MESSON", - "nomCommune": "MESSON" + "codePostal": "05310", + "codeCommune": "05122", + "libelleAcheminement": "LA ROCHE DE RAME", + "nomCommune": "LA ROCHE DE RAME" }, { - "codePostal": "51240", - "codeCommune": "51106", - "libelleAcheminement": "CERNON", - "nomCommune": "CERNON" + "codePostal": "17170", + "codeCommune": "17349", + "libelleAcheminement": "ST JEAN DE LIVERSAY", + "nomCommune": "ST JEAN DE LIVERSAY" }, { - "codePostal": "08170", - "codeCommune": "08304", - "libelleAcheminement": "MONTIGNY SUR MEUSE", - "nomCommune": "MONTIGNY SUR MEUSE" + "codePostal": "17600", + "codeCommune": "17445", + "libelleAcheminement": "THEZAC", + "nomCommune": "THEZAC" }, { - "codePostal": "10260", - "codeCommune": "10246", - "libelleAcheminement": "MONTCEAUX LES VAUDES", - "nomCommune": "MONTCEAUX LES VAUDES" + "codePostal": "03350", + "codeCommune": "03150", + "libelleAcheminement": "LOUROUX BOURBONNAIS", + "nomCommune": "LOUROUX BOURBONNAIS" }, { - "codePostal": "51150", - "codeCommune": "51117", - "libelleAcheminement": "CHAMPIGNEUL CHAMPAGNE", - "nomCommune": "CHAMPIGNEUL CHAMPAGNE" + "codePostal": "05400", + "codeCommune": "05123", + "libelleAcheminement": "LA ROCHE DES ARNAUDS", + "nomCommune": "LA ROCHE DES ARNAUDS" }, { - "codePostal": "08430", - "codeCommune": "08305", - "libelleAcheminement": "MONTIGNY SUR VENCE", - "nomCommune": "MONTIGNY SUR VENCE" + "codePostal": "17320", + "codeCommune": "17351", + "libelleAcheminement": "ST JUST LUZAC", + "nomCommune": "ST JUST LUZAC" }, { - "codePostal": "10270", - "codeCommune": "10249", - "libelleAcheminement": "MONTIERAMEY", - "nomCommune": "MONTIERAMEY" + "codePostal": "17380", + "codeCommune": "17450", + "libelleAcheminement": "TORXE", + "nomCommune": "TORXE" }, { - "codePostal": "51370", - "codeCommune": "51118", - "libelleAcheminement": "CHAMPIGNY", - "nomCommune": "CHAMPIGNY" + "codePostal": "03210", + "codeCommune": "03162", + "libelleAcheminement": "MARIGNY", + "nomCommune": "MARIGNY" }, { - "codePostal": "08130", - "codeCommune": "08306", - "libelleAcheminement": "MONT LAURENT", - "nomCommune": "MONT LAURENT" + "codePostal": "05150", + "codeCommune": "05126", + "libelleAcheminement": "ROSANS", + "nomCommune": "ROSANS" }, { - "codePostal": "10130", - "codeCommune": "10251", - "libelleAcheminement": "MONTIGNY LES MONTS", - "nomCommune": "MONTIGNY LES MONTS" + "codePostal": "17450", + "codeCommune": "17353", + "libelleAcheminement": "ST LAURENT DE LA PREE", + "nomCommune": "ST LAURENT DE LA PREE" }, { - "codePostal": "51700", - "codeCommune": "51121", - "libelleAcheminement": "CHAMPVOISY", - "nomCommune": "CHAMPVOISY" + "codePostal": "17250", + "codeCommune": "17453", + "libelleAcheminement": "TRIZAY", + "nomCommune": "TRIZAY" }, { - "codePostal": "08310", - "codeCommune": "08309", - "libelleAcheminement": "MONT ST REMY", - "nomCommune": "MONT ST REMY" + "codePostal": "03360", + "codeCommune": "03168", + "libelleAcheminement": "MEAULNE VITRAY", + "nomCommune": "MEAULNE VITRAY" }, { - "codePostal": "10240", - "codeCommune": "10257", - "libelleAcheminement": "MOREMBERT", - "nomCommune": "MOREMBERT" + "codePostal": "05500", + "codeCommune": "05132", + "libelleAcheminement": "ST BONNET EN CHAMPSAUR", + "nomCommune": "ST BONNET EN CHAMPSAUR" }, { - "codePostal": "51260", - "codeCommune": "51124", - "libelleAcheminement": "CHANTEMERLE", - "nomCommune": "CHANTEMERLE" + "codePostal": "17780", + "codeCommune": "17375", + "libelleAcheminement": "ST NAZAIRE SUR CHARENTE", + "nomCommune": "ST NAZAIRE SUR CHARENTE" }, { - "codePostal": "08250", - "codeCommune": "08310", - "libelleAcheminement": "MOURON", - "nomCommune": "MOURON" + "codePostal": "17130", + "codeCommune": "17454", + "libelleAcheminement": "TUGERAS ST MAURICE", + "nomCommune": "TUGERAS ST MAURICE" }, { - "codePostal": "10400", - "codeCommune": "10259", - "libelleAcheminement": "LA MOTTE TILLY", - "nomCommune": "LA MOTTE TILLY" + "codePostal": "03470", + "codeCommune": "03177", + "libelleAcheminement": "MONETAY SUR LOIRE", + "nomCommune": "MONETAY SUR LOIRE" }, { - "codePostal": "51260", - "codeCommune": "51127", - "libelleAcheminement": "LA CHAPELLE LASSON", - "nomCommune": "LA CHAPELLE LASSON" + "codePostal": "05330", + "codeCommune": "05133", + "libelleAcheminement": "ST CHAFFREY", + "nomCommune": "ST CHAFFREY" }, { - "codePostal": "08130", - "codeCommune": "08321", - "libelleAcheminement": "NEUVILLE DAY", - "nomCommune": "NEUVILLE DAY" + "codePostal": "17310", + "codeCommune": "17385", + "libelleAcheminement": "ST PIERRE D OLERON", + "nomCommune": "ST PIERRE D OLERON" }, { - "codePostal": "10160", - "codeCommune": "10266", - "libelleAcheminement": "NOGENT EN OTHE", - "nomCommune": "NOGENT EN OTHE" + "codePostal": "17400", + "codeCommune": "17459", + "libelleAcheminement": "VARAIZE", + "nomCommune": "VARAIZE" }, { - "codePostal": "51330", - "codeCommune": "51132", - "libelleAcheminement": "LES CHARMONTOIS", - "nomCommune": "LES CHARMONTOIS" + "codePostal": "03130", + "codeCommune": "03181", + "libelleAcheminement": "MONTCOMBROUX LES MINES", + "nomCommune": "MONTCOMBROUX LES MINES" }, { - "codePostal": "08090", - "codeCommune": "08322", - "libelleAcheminement": "NEUVILLE LES THIS", - "nomCommune": "NEUVILLE LES THIS" + "codePostal": "05800", + "codeCommune": "05142", + "libelleAcheminement": "ST FIRMIN EN VALGODEMARD", + "nomCommune": "ST FIRMIN" }, { - "codePostal": "10240", - "codeCommune": "10267", - "libelleAcheminement": "NOGENT SUR AUBE", - "nomCommune": "NOGENT SUR AUBE" + "codePostal": "17250", + "codeCommune": "17389", + "libelleAcheminement": "STE RADEGONDE", + "nomCommune": "STE RADEGONDE" }, { - "codePostal": "51700", - "codeCommune": "51136", - "libelleAcheminement": "CHATILLON SUR MARNE", - "nomCommune": "CHATILLON SUR MARNE" + "codePostal": "17300", + "codeCommune": "17463", + "libelleAcheminement": "VERGEROUX", + "nomCommune": "VERGEROUX" }, { - "codePostal": "08240", - "codeCommune": "08326", - "libelleAcheminement": "NOUART", - "nomCommune": "NOUART" + "codePostal": "03500", + "codeCommune": "03188", + "libelleAcheminement": "MONTORD", + "nomCommune": "MONTORD" }, { - "codePostal": "10700", - "codeCommune": "10272", - "libelleAcheminement": "ORMES", - "nomCommune": "ORMES" + "codePostal": "05260", + "codeCommune": "05145", + "libelleAcheminement": "ST JEAN ST NICOLAS", + "nomCommune": "ST JEAN ST NICOLAS" }, { - "codePostal": "51800", - "codeCommune": "51139", - "libelleAcheminement": "CHAUDEFONTAINE", - "nomCommune": "CHAUDEFONTAINE" + "codePostal": "17610", + "codeCommune": "17395", + "libelleAcheminement": "ST SAUVANT", + "nomCommune": "ST SAUVANT" }, { - "codePostal": "08300", - "codeCommune": "08330", - "libelleAcheminement": "NOVY CHEVRIERES", - "nomCommune": "NOVY CHEVRIERES" + "codePostal": "17330", + "codeCommune": "17464", + "libelleAcheminement": "VERGNE", + "nomCommune": "VERGNE" }, { - "codePostal": "10700", - "codeCommune": "10293", - "libelleAcheminement": "POIVRES", - "nomCommune": "POIVRES" + "codePostal": "03390", + "codeCommune": "03191", + "libelleAcheminement": "MURAT", + "nomCommune": "MURAT" }, { - "codePostal": "51530", - "codeCommune": "51142", - "libelleAcheminement": "CHAVOT COURCOURT", - "nomCommune": "CHAVOT COURCOURT" + "codePostal": "05140", + "codeCommune": "05146", + "libelleAcheminement": "ST JULIEN EN BEAUCHENE", + "nomCommune": "ST JULIEN EN BEAUCHENE" }, { - "codePostal": "08240", - "codeCommune": "08332", - "libelleAcheminement": "OCHES", - "nomCommune": "OCHES" + "codePostal": "17540", + "codeCommune": "17396", + "libelleAcheminement": "ST SAUVEUR D AUNIS", + "nomCommune": "ST SAUVEUR D AUNIS" }, { - "codePostal": "10110", - "codeCommune": "10294", - "libelleAcheminement": "POLIGNY", - "nomCommune": "POLIGNY" + "codePostal": "17540", + "codeCommune": "17466", + "libelleAcheminement": "VERINES", + "nomCommune": "VERINES" }, { - "codePostal": "51140", - "codeCommune": "51145", - "libelleAcheminement": "CHENAY", - "nomCommune": "CHENAY" + "codePostal": "03190", + "codeCommune": "03193", + "libelleAcheminement": "NASSIGNY", + "nomCommune": "NASSIGNY" }, { - "codePostal": "08250", - "codeCommune": "08333", - "libelleAcheminement": "OLIZY PRIMAT", - "nomCommune": "OLIZY PRIMAT" + "codePostal": "05260", + "codeCommune": "05149", + "libelleAcheminement": "ST LEGER LES MELEZES", + "nomCommune": "ST LEGER LES MELEZES" }, { - "codePostal": "10290", - "codeCommune": "10301", - "libelleAcheminement": "POUY SUR VANNES", - "nomCommune": "POUY SUR VANNES" + "codePostal": "17350", + "codeCommune": "17397", + "libelleAcheminement": "ST SAVINIEN", + "nomCommune": "ST SAVINIEN" }, { - "codePostal": "51510", - "codeCommune": "51146", - "libelleAcheminement": "CHENIERS", - "nomCommune": "CHENIERS" + "codePostal": "17400", + "codeCommune": "17467", + "libelleAcheminement": "VERVANT", + "nomCommune": "VERVANT" }, { - "codePostal": "08300", - "codeCommune": "08339", - "libelleAcheminement": "PERTHES", - "nomCommune": "PERTHES" + "codePostal": "03310", + "codeCommune": "03195", + "libelleAcheminement": "NERIS LES BAINS", + "nomCommune": "NERIS LES BAINS" }, { - "codePostal": "10350", - "codeCommune": "10308", - "libelleAcheminement": "PRUNAY BELLEVILLE", - "nomCommune": "PRUNAY BELLEVILLE" + "codePostal": "05200", + "codeCommune": "05156", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "51600", - "codeCommune": "51147", - "libelleAcheminement": "LA CHEPPE", - "nomCommune": "LA CHEPPE" + "codePostal": "17800", + "codeCommune": "17398", + "libelleAcheminement": "ST SEURIN DE PALENNE", + "nomCommune": "ST SEURIN DE PALENNE" }, { - "codePostal": "08140", - "codeCommune": "08342", - "libelleAcheminement": "POURU AUX BOIS", - "nomCommune": "POURU AUX BOIS" + "codePostal": "17770", + "codeCommune": "17470", + "libelleAcheminement": "VILLARS LES BOIS", + "nomCommune": "VILLARS LES BOIS" }, { - "codePostal": "10130", - "codeCommune": "10312", - "libelleAcheminement": "RACINES", - "nomCommune": "RACINES" + "codePostal": "03340", + "codeCommune": "03197", + "libelleAcheminement": "NEUILLY LE REAL", + "nomCommune": "NEUILLY LE REAL" }, { - "codePostal": "51240", - "codeCommune": "51149", - "libelleAcheminement": "CHEPY", - "nomCommune": "CHEPY" + "codePostal": "05400", + "codeCommune": "05158", + "libelleAcheminement": "LE SAIX", + "nomCommune": "LE SAIX" }, { - "codePostal": "08140", - "codeCommune": "08343", - "libelleAcheminement": "POURU ST REMY", - "nomCommune": "POURU ST REMY" + "codePostal": "17800", + "codeCommune": "17400", + "libelleAcheminement": "ST SEVER DE SAINTONGE", + "nomCommune": "ST SEVER DE SAINTONGE" }, { - "codePostal": "10430", - "codeCommune": "10325", - "libelleAcheminement": "ROSIERES PRES TROYES", - "nomCommune": "ROSIERES PRES TROYES" + "codePostal": "17470", + "codeCommune": "17473", + "libelleAcheminement": "VILLEMORIN", + "nomCommune": "VILLEMORIN" }, { - "codePostal": "51120", - "codeCommune": "51151", - "libelleAcheminement": "CHICHEY", - "nomCommune": "CHICHEY" + "codePostal": "03210", + "codeCommune": "03202", + "libelleAcheminement": "NOYANT D ALLIER", + "nomCommune": "NOYANT D ALLIER" }, { - "codePostal": "08290", - "codeCommune": "08344", - "libelleAcheminement": "PREZ", - "nomCommune": "PREZ" + "codePostal": "05700", + "codeCommune": "05165", + "libelleAcheminement": "SAVOURNON", + "nomCommune": "SAVOURNON" }, { - "codePostal": "10500", - "codeCommune": "10327", - "libelleAcheminement": "LA ROTHIERE", - "nomCommune": "LA ROTHIERE" + "codePostal": "17500", + "codeCommune": "17403", + "libelleAcheminement": "ST SIMON DE BORDES", + "nomCommune": "ST SIMON DE BORDES" }, { - "codePostal": "51260", - "codeCommune": "51155", - "libelleAcheminement": "CLESLES", - "nomCommune": "CLESLES" + "codePostal": "17370", + "codeCommune": "17485", + "libelleAcheminement": "LE GRAND VILLAGE PLAGE", + "nomCommune": "LE GRAND VILLAGE PLAGE" }, { - "codePostal": "08370", - "codeCommune": "08347", - "libelleAcheminement": "PUILLY ET CHARBEAUX", - "nomCommune": "PUILLY ET CHARBEAUX" + "codePostal": "03320", + "codeCommune": "03210", + "libelleAcheminement": "POUZY MESANGY", + "nomCommune": "POUZY MESANGY" }, { - "codePostal": "10220", - "codeCommune": "10328", - "libelleAcheminement": "ROUILLY SACEY", - "nomCommune": "ROUILLY SACEY" + "codePostal": "05130", + "codeCommune": "05176", + "libelleAcheminement": "VALSERRES", + "nomCommune": "VALSERRES" }, { - "codePostal": "51230", - "codeCommune": "51164", - "libelleAcheminement": "CONNANTRAY VAUREFROY", - "nomCommune": "CONNANTRAY VAUREFROY" + "codePostal": "17260", + "codeCommune": "17404", + "libelleAcheminement": "ST SIMON DE PELLOUAILLE", + "nomCommune": "ST SIMON DE PELLOUAILLE" }, { - "codePostal": "08220", - "codeCommune": "08356", - "libelleAcheminement": "REMAUCOURT", - "nomCommune": "REMAUCOURT" + "codePostal": "18250", + "codeCommune": "18001", + "libelleAcheminement": "ACHERES", + "nomCommune": "ACHERES" }, { - "codePostal": "10200", - "codeCommune": "10330", - "libelleAcheminement": "ROUVRES LES VIGNES", - "nomCommune": "ROUVRES LES VIGNES" + "codePostal": "03190", + "codeCommune": "03213", + "libelleAcheminement": "REUGNY", + "nomCommune": "REUGNY" }, { - "codePostal": "51210", - "codeCommune": "51170", - "libelleAcheminement": "CORFELIX", - "nomCommune": "CORFELIX" + "codePostal": "06160", + "codeCommune": "06004", + "libelleAcheminement": "ANTIBES", + "nomCommune": "ANTIBES" }, { - "codePostal": "08150", - "codeCommune": "08358", - "libelleAcheminement": "REMILLY LES POTHEES", - "nomCommune": "REMILLY LES POTHEES" + "codePostal": "17370", + "codeCommune": "17411", + "libelleAcheminement": "ST TROJAN LES BAINS", + "nomCommune": "ST TROJAN LES BAINS" }, { - "codePostal": "10120", - "codeCommune": "10340", - "libelleAcheminement": "ST GERMAIN", - "nomCommune": "ST GERMAIN" + "codePostal": "18800", + "codeCommune": "18023", + "libelleAcheminement": "BAUGY", + "nomCommune": "BAUGY" }, { - "codePostal": "51220", - "codeCommune": "51171", - "libelleAcheminement": "CORMICY", - "nomCommune": "CORMICY" + "codePostal": "03370", + "codeCommune": "03228", + "libelleAcheminement": "ST ELOY D ALLIER", + "nomCommune": "ST ELOY D ALLIER" }, { - "codePostal": "08150", - "codeCommune": "08365", - "libelleAcheminement": "RIMOGNE", - "nomCommune": "RIMOGNE" + "codePostal": "06420", + "codeCommune": "06009", + "libelleAcheminement": "BAIROLS", + "nomCommune": "BAIROLS" }, { - "codePostal": "10120", - "codeCommune": "10340", - "libelleAcheminement": "ST GERMAIN", - "nomCommune": "ST GERMAIN" + "codePostal": "17100", + "codeCommune": "17415", + "libelleAcheminement": "SAINTES", + "nomCommune": "SAINTES" }, { - "codePostal": "51170", - "codeCommune": "51194", - "libelleAcheminement": "COURVILLE", - "nomCommune": "COURVILLE" + "codePostal": "18800", + "codeCommune": "18023", + "libelleAcheminement": "BAUGY", + "nomCommune": "BAUGY" }, { - "codePostal": "08220", - "codeCommune": "08366", - "libelleAcheminement": "ROCQUIGNY", - "nomCommune": "ROCQUIGNY" + "codePostal": "03160", + "codeCommune": "03241", + "libelleAcheminement": "ST LEOPARDIN D AUGY", + "nomCommune": "ST LEOPARDIN D AUGY" }, { - "codePostal": "10320", - "codeCommune": "10342", - "libelleAcheminement": "ST JEAN DE BONNEVAL", - "nomCommune": "ST JEAN DE BONNEVAL" + "codePostal": "06620", + "codeCommune": "06010", + "libelleAcheminement": "LE BAR SUR LOUP", + "nomCommune": "LE BAR SUR LOUP" }, { - "codePostal": "51170", - "codeCommune": "51198", - "libelleAcheminement": "CRUGNY", - "nomCommune": "CRUGNY" + "codePostal": "17510", + "codeCommune": "17416", + "libelleAcheminement": "SALEIGNES", + "nomCommune": "SALEIGNES" }, { - "codePostal": "08230", - "codeCommune": "08367", - "libelleAcheminement": "ROCROI", - "nomCommune": "ROCROI" + "codePostal": "18500", + "codeCommune": "18028", + "libelleAcheminement": "BERRY BOUY", + "nomCommune": "BERRY BOUY" }, { - "codePostal": "10800", - "codeCommune": "10343", - "libelleAcheminement": "ST JULIEN LES VILLAS", - "nomCommune": "ST JULIEN LES VILLAS" + "codePostal": "03420", + "codeCommune": "03244", + "libelleAcheminement": "ST MARCEL EN MARCILLAT", + "nomCommune": "ST MARCEL EN MARCILLAT" }, { - "codePostal": "51480", - "codeCommune": "51199", - "libelleAcheminement": "CUCHERY", - "nomCommune": "CUCHERY" + "codePostal": "06310", + "codeCommune": "06011", + "libelleAcheminement": "BEAULIEU SUR MER", + "nomCommune": "BEAULIEU SUR MER" }, { - "codePostal": "08190", - "codeCommune": "08368", - "libelleAcheminement": "ROIZY", - "nomCommune": "ROIZY" + "codePostal": "17160", + "codeCommune": "17428", + "libelleAcheminement": "SONNAC", + "nomCommune": "SONNAC" }, { - "codePostal": "10100", - "codeCommune": "10347", - "libelleAcheminement": "ST LOUP DE BUFFIGNY", - "nomCommune": "ST LOUP DE BUFFIGNY" + "codePostal": "18160", + "codeCommune": "18043", + "libelleAcheminement": "LA CELLE CONDE", + "nomCommune": "LA CELLE CONDE" }, { - "codePostal": "51480", - "codeCommune": "51202", - "libelleAcheminement": "CUMIERES", - "nomCommune": "CUMIERES" + "codePostal": "03230", + "codeCommune": "03245", + "libelleAcheminement": "ST MARTIN DES LAIS", + "nomCommune": "ST MARTIN DES LAIS" }, { - "codePostal": "08150", - "codeCommune": "08370", - "libelleAcheminement": "ROUVROY SUR AUDRY", - "nomCommune": "ROUVROY SUR AUDRY" + "codePostal": "06390", + "codeCommune": "06015", + "libelleAcheminement": "BERRE LES ALPES", + "nomCommune": "BERRE LES ALPES" }, { - "codePostal": "10150", - "codeCommune": "10352", - "libelleAcheminement": "STE MAURE", - "nomCommune": "STE MAURE" + "codePostal": "17780", + "codeCommune": "17429", + "libelleAcheminement": "SOUBISE", + "nomCommune": "SOUBISE" }, { - "codePostal": "51330", - "codeCommune": "51206", - "libelleAcheminement": "DAMPIERRE LE CHATEAU", - "nomCommune": "DAMPIERRE LE CHATEAU" + "codePostal": "18130", + "codeCommune": "18045", + "libelleAcheminement": "CHALIVOY MILON", + "nomCommune": "CHALIVOY MILON" }, { - "codePostal": "08250", - "codeCommune": "08383", - "libelleAcheminement": "ST JUVIN", - "nomCommune": "ST JUVIN" + "codePostal": "03160", + "codeCommune": "03251", + "libelleAcheminement": "ST PLAISIR", + "nomCommune": "ST PLAISIR" }, { - "codePostal": "10150", - "codeCommune": "10352", - "libelleAcheminement": "STE MAURE", - "nomCommune": "STE MAURE" + "codePostal": "06800", + "codeCommune": "06027", + "libelleAcheminement": "CAGNES SUR MER", + "nomCommune": "CAGNES SUR MER" }, { - "codePostal": "51530", - "codeCommune": "51210", - "libelleAcheminement": "DIZY", - "nomCommune": "DIZY" + "codePostal": "17250", + "codeCommune": "17431", + "libelleAcheminement": "SOULIGNONNE", + "nomCommune": "SOULIGNONNE" }, { - "codePostal": "08130", - "codeCommune": "08384", - "libelleAcheminement": "ST LAMBERT ET MONT DE JEUX", - "nomCommune": "ST LAMBERT ET MONT DE JEUX" + "codePostal": "18380", + "codeCommune": "18047", + "libelleAcheminement": "LA CHAPELLE D ANGILLON", + "nomCommune": "LA CHAPELLE D ANGILLON" }, { - "codePostal": "10410", - "codeCommune": "10357", - "libelleAcheminement": "ST PARRES AUX TERTRES", - "nomCommune": "ST PARRES AUX TERTRES" + "codePostal": "03500", + "codeCommune": "03254", + "libelleAcheminement": "ST POURCAIN SUR SIOULE", + "nomCommune": "ST POURCAIN SUR SIOULE" }, { - "codePostal": "51800", - "codeCommune": "51211", - "libelleAcheminement": "DOMMARTIN DAMPIERRE", - "nomCommune": "DOMMARTIN DAMPIERRE" + "codePostal": "06400", + "codeCommune": "06029", + "libelleAcheminement": "CANNES", + "nomCommune": "CANNES" }, { - "codePostal": "08300", - "codeCommune": "08386", - "libelleAcheminement": "ST LOUP EN CHAMPAGNE", - "nomCommune": "ST LOUP EN CHAMPAGNE" + "codePostal": "17700", + "codeCommune": "17434", + "libelleAcheminement": "SURGERES", + "nomCommune": "SURGERES" }, { - "codePostal": "10260", - "codeCommune": "10358", - "libelleAcheminement": "ST PARRES LES VAUDES", - "nomCommune": "ST PARRES LES VAUDES" + "codePostal": "18290", + "codeCommune": "18055", + "libelleAcheminement": "CHAROST", + "nomCommune": "CHAROST" }, { - "codePostal": "51300", - "codeCommune": "51220", - "libelleAcheminement": "DROUILLY", - "nomCommune": "DROUILLY" + "codePostal": "03370", + "codeCommune": "03259", + "libelleAcheminement": "ST SAUVIER", + "nomCommune": "ST SAUVIER" }, { - "codePostal": "08400", - "codeCommune": "08392", - "libelleAcheminement": "ST MOREL", - "nomCommune": "ST MOREL" + "codePostal": "06670", + "codeCommune": "06034", + "libelleAcheminement": "CASTAGNIERS", + "nomCommune": "CASTAGNIERS" }, { - "codePostal": "10700", - "codeCommune": "10361", - "libelleAcheminement": "ST REMY SOUS BARBUISE", - "nomCommune": "ST REMY SOUS BARBUISE" + "codePostal": "17460", + "codeCommune": "17441", + "libelleAcheminement": "TESSON", + "nomCommune": "TESSON" }, { - "codePostal": "51490", - "codeCommune": "51232", - "libelleAcheminement": "EPOYE", - "nomCommune": "EPOYE" + "codePostal": "18370", + "codeCommune": "18057", + "libelleAcheminement": "CHATEAUMEILLANT", + "nomCommune": "CHATEAUMEILLANT" }, { - "codePostal": "08400", - "codeCommune": "08406", - "libelleAcheminement": "SAVIGNY SUR AISNE", - "nomCommune": "SAVIGNY SUR AISNE" + "codePostal": "03220", + "codeCommune": "03274", + "libelleAcheminement": "SORBIER", + "nomCommune": "SORBIER" }, { - "codePostal": "10800", - "codeCommune": "10363", - "libelleAcheminement": "ST THIBAULT", - "nomCommune": "ST THIBAULT" + "codePostal": "06340", + "codeCommune": "06054", + "libelleAcheminement": "DRAP", + "nomCommune": "DRAP" }, { - "codePostal": "51310", - "codeCommune": "51233", - "libelleAcheminement": "ESCARDES", - "nomCommune": "ESCARDES" + "codePostal": "17380", + "codeCommune": "17448", + "libelleAcheminement": "TONNAY BOUTONNE", + "nomCommune": "TONNAY BOUTONNE" }, { - "codePostal": "08130", - "codeCommune": "08411", - "libelleAcheminement": "SEMUY", - "nomCommune": "SEMUY" + "codePostal": "18190", + "codeCommune": "18058", + "libelleAcheminement": "CHATEAUNEUF SUR CHER", + "nomCommune": "CHATEAUNEUF SUR CHER" }, { - "codePostal": "10320", - "codeCommune": "10371", - "libelleAcheminement": "SOMMEVAL", - "nomCommune": "SOMMEVAL" + "codePostal": "03140", + "codeCommune": "03277", + "libelleAcheminement": "TARGET", + "nomCommune": "TARGET" }, { - "codePostal": "51260", - "codeCommune": "51234", - "libelleAcheminement": "ESCLAVOLLES LUREY", - "nomCommune": "ESCLAVOLLES LUREY" + "codePostal": "06470", + "codeCommune": "06056", + "libelleAcheminement": "ENTRAUNES", + "nomCommune": "ENTRAUNES" }, { - "codePostal": "08460", - "codeCommune": "08419", - "libelleAcheminement": "SIGNY L ABBAYE", - "nomCommune": "SIGNY L ABBAYE" + "codePostal": "17160", + "codeCommune": "17451", + "libelleAcheminement": "LES TOUCHES DE PERIGNY", + "nomCommune": "LES TOUCHES DE PERIGNY" }, { - "codePostal": "10200", - "codeCommune": "10377", - "libelleAcheminement": "THIL", - "nomCommune": "THIL" + "codePostal": "18170", + "codeCommune": "18059", + "libelleAcheminement": "LE CHATELET", + "nomCommune": "LE CHATELET" }, { - "codePostal": "51130", - "codeCommune": "51239", - "libelleAcheminement": "ETRECHY", - "nomCommune": "ETRECHY" + "codePostal": "03410", + "codeCommune": "03279", + "libelleAcheminement": "TEILLET ARGENTY", + "nomCommune": "TEILLET ARGENTY" }, { - "codePostal": "08380", - "codeCommune": "08420", - "libelleAcheminement": "SIGNY LE PETIT", - "nomCommune": "SIGNY LE PETIT" + "codePostal": "06460", + "codeCommune": "06058", + "libelleAcheminement": "ESCRAGNOLLES", + "nomCommune": "ESCRAGNOLLES" }, { - "codePostal": "10400", - "codeCommune": "10382", - "libelleAcheminement": "TRAINEL", - "nomCommune": "TRAINEL" + "codePostal": "17390", + "codeCommune": "17452", + "libelleAcheminement": "LA TREMBLADE", + "nomCommune": "LA TREMBLADE" }, { - "codePostal": "51230", - "codeCommune": "51248", - "libelleAcheminement": "FERE CHAMPENOISE", - "nomCommune": "FERE CHAMPENOISE" + "codePostal": "18190", + "codeCommune": "18063", + "libelleAcheminement": "CHAVANNES", + "nomCommune": "CHAVANNES" }, { - "codePostal": "08270", - "codeCommune": "08428", - "libelleAcheminement": "SORCY BAUTHEMONT", - "nomCommune": "SORCY BAUTHEMONT" + "codePostal": "03420", + "codeCommune": "03280", + "libelleAcheminement": "TERJAT", + "nomCommune": "TERJAT" }, { - "codePostal": "10210", - "codeCommune": "10388", - "libelleAcheminement": "TURGY", - "nomCommune": "TURGY" + "codePostal": "06850", + "codeCommune": "06063", + "libelleAcheminement": "GARS", + "nomCommune": "GARS" }, { - "codePostal": "51480", - "codeCommune": "51252", - "libelleAcheminement": "FLEURY LA RIVIERE", - "nomCommune": "FLEURY LA RIVIERE" + "codePostal": "17400", + "codeCommune": "17465", + "libelleAcheminement": "LA VERGNE", + "nomCommune": "LA VERGNE" }, { - "codePostal": "08230", - "codeCommune": "08436", - "libelleAcheminement": "TAILLETTE", - "nomCommune": "TAILLETTE" + "codePostal": "18120", + "codeCommune": "18064", + "libelleAcheminement": "CHERY", + "nomCommune": "CHERY" }, { - "codePostal": "10190", - "codeCommune": "10396", - "libelleAcheminement": "VAUCHASSIS", - "nomCommune": "VAUCHASSIS" + "codePostal": "03240", + "codeCommune": "03281", + "libelleAcheminement": "LE THEIL", + "nomCommune": "LE THEIL" }, { - "codePostal": "51800", - "codeCommune": "51255", - "libelleAcheminement": "FONTAINE EN DORMOIS", - "nomCommune": "FONTAINE EN DORMOIS" + "codePostal": "06670", + "codeCommune": "06075", + "libelleAcheminement": "LEVENS", + "nomCommune": "LEVENS" }, { - "codePostal": "08240", - "codeCommune": "08437", - "libelleAcheminement": "TAILLY", - "nomCommune": "TAILLY" + "codePostal": "17260", + "codeCommune": "17479", + "libelleAcheminement": "VIROLLET", + "nomCommune": "VIROLLET" }, { - "codePostal": "10800", - "codeCommune": "10402", - "libelleAcheminement": "LA VENDUE MIGNOT", - "nomCommune": "LA VENDUE MIGNOT" + "codePostal": "18130", + "codeCommune": "18068", + "libelleAcheminement": "COGNY", + "nomCommune": "COGNY" }, { - "codePostal": "51240", - "codeCommune": "51260", - "libelleAcheminement": "LE FRESNE", - "nomCommune": "LE FRESNE" + "codePostal": "03460", + "codeCommune": "03290", + "libelleAcheminement": "TREVOL", + "nomCommune": "TREVOL" }, { - "codePostal": "08380", - "codeCommune": "08440", - "libelleAcheminement": "TARZY", - "nomCommune": "TARZY" + "codePostal": "06440", + "codeCommune": "06077", + "libelleAcheminement": "LUCERAM", + "nomCommune": "LUCERAM" }, { - "codePostal": "10360", - "codeCommune": "10404", - "libelleAcheminement": "VERPILLIERES SUR OURCE", - "nomCommune": "VERPILLIERES SUR OURCE" + "codePostal": "17400", + "codeCommune": "17481", + "libelleAcheminement": "VOISSAY", + "nomCommune": "VOISSAY" }, { - "codePostal": "51210", - "codeCommune": "51263", - "libelleAcheminement": "FROMENTIERES", - "nomCommune": "FROMENTIERES" + "codePostal": "18150", + "codeCommune": "18082", + "libelleAcheminement": "CUFFY", + "nomCommune": "CUFFY" }, { - "codePostal": "08350", - "codeCommune": "08445", - "libelleAcheminement": "THELONNE", - "nomCommune": "THELONNE" + "codePostal": "03140", + "codeCommune": "03294", + "libelleAcheminement": "USSEL D ALLIER", + "nomCommune": "USSEL D ALLIER" }, { - "codePostal": "10600", - "codeCommune": "10409", - "libelleAcheminement": "VILLACERF", - "nomCommune": "VILLACERF" + "codePostal": "06210", + "codeCommune": "06079", + "libelleAcheminement": "MANDELIEU LA NAPOULE", + "nomCommune": "MANDELIEU LA NAPOULE" }, { - "codePostal": "51160", - "codeCommune": "51266", - "libelleAcheminement": "GERMAINE", - "nomCommune": "GERMAINE" + "codePostal": "18200", + "codeCommune": "18002", + "libelleAcheminement": "AINAY LE VIEIL", + "nomCommune": "AINAY LE VIEIL" }, { - "codePostal": "08240", - "codeCommune": "08446", - "libelleAcheminement": "THENORGUES", - "nomCommune": "THENORGUES" + "codePostal": "18260", + "codeCommune": "18084", + "libelleAcheminement": "DAMPIERRE EN CROT", + "nomCommune": "DAMPIERRE EN CROT" }, { - "codePostal": "10500", - "codeCommune": "10411", - "libelleAcheminement": "LA VILLE AUX BOIS", - "nomCommune": "LA VILLE AUX BOIS" + "codePostal": "03220", + "codeCommune": "03300", + "libelleAcheminement": "VAUMAS", + "nomCommune": "VAUMAS" }, { - "codePostal": "51800", - "codeCommune": "51274", - "libelleAcheminement": "GIZAUCOURT", - "nomCommune": "GIZAUCOURT" + "codePostal": "06420", + "codeCommune": "06080", + "libelleAcheminement": "MARIE", + "nomCommune": "MARIE" }, { - "codePostal": "08090", - "codeCommune": "08457", - "libelleAcheminement": "TOURNES", - "nomCommune": "TOURNES" + "codePostal": "18110", + "codeCommune": "18004", + "libelleAcheminement": "ALLOGNY", + "nomCommune": "ALLOGNY" }, { - "codePostal": "10160", - "codeCommune": "10417", - "libelleAcheminement": "VILLEMOIRON EN OTHE", - "nomCommune": "VILLEMOIRON EN OTHE" + "codePostal": "18800", + "codeCommune": "18090", + "libelleAcheminement": "ETRECHY", + "nomCommune": "ETRECHY" }, { - "codePostal": "51230", - "codeCommune": "51276", - "libelleAcheminement": "GOURGANCON", - "nomCommune": "GOURGANCON" + "codePostal": "03430", + "codeCommune": "03315", + "libelleAcheminement": "VILLEFRANCHE D ALLIER", + "nomCommune": "VILLEFRANCHE D ALLIER" }, { - "codePostal": "08240", - "codeCommune": "08463", - "libelleAcheminement": "VAUX EN DIEULET", - "nomCommune": "VAUX EN DIEULET" + "codePostal": "06710", + "codeCommune": "06082", + "libelleAcheminement": "MASSOINS", + "nomCommune": "MASSOINS" }, { - "codePostal": "10110", - "codeCommune": "10418", - "libelleAcheminement": "VILLEMORIEN", - "nomCommune": "VILLEMORIEN" + "codePostal": "18200", + "codeCommune": "18009", + "libelleAcheminement": "ARCOMPS", + "nomCommune": "ARCOMPS" }, { - "codePostal": "51400", - "codeCommune": "51278", - "libelleAcheminement": "LES GRANDES LOGES", - "nomCommune": "LES GRANDES LOGES" + "codePostal": "18200", + "codeCommune": "18091", + "libelleAcheminement": "FARGES ALLICHAMPS", + "nomCommune": "FARGES ALLICHAMPS" }, { - "codePostal": "08220", - "codeCommune": "08465", - "libelleAcheminement": "VAUX LES RUBIGNY", - "nomCommune": "VAUX LES RUBIGNY" + "codePostal": "03430", + "codeCommune": "03315", + "libelleAcheminement": "VILLEFRANCHE D ALLIER", + "nomCommune": "VILLEFRANCHE D ALLIER" }, { - "codePostal": "10370", - "codeCommune": "10420", - "libelleAcheminement": "VILLENAUXE LA GRANDE", - "nomCommune": "VILLENAUXE LA GRANDE" + "codePostal": "06910", + "codeCommune": "06087", + "libelleAcheminement": "LES MUJOULS", + "nomCommune": "LES MUJOULS" }, { - "codePostal": "51390", - "codeCommune": "51282", - "libelleAcheminement": "GUEUX", - "nomCommune": "GUEUX" + "codePostal": "18200", + "codeCommune": "18013", + "libelleAcheminement": "ARPHEUILLES", + "nomCommune": "ARPHEUILLES" }, { - "codePostal": "08160", - "codeCommune": "08469", - "libelleAcheminement": "VENDRESSE", - "nomCommune": "VENDRESSE" + "codePostal": "18800", + "codeCommune": "18092", + "libelleAcheminement": "FARGES EN SEPTAINE", + "nomCommune": "FARGES EN SEPTAINE" }, { - "codePostal": "10310", - "codeCommune": "10426", - "libelleAcheminement": "VILLE SOUS LA FERTE", - "nomCommune": "VILLE SOUS LA FERTE" + "codePostal": "03460", + "codeCommune": "03316", + "libelleAcheminement": "VILLENEUVE SUR ALLIER", + "nomCommune": "VILLENEUVE SUR ALLIER" }, { - "codePostal": "51320", - "codeCommune": "51285", - "libelleAcheminement": "HAUSSIMONT", - "nomCommune": "HAUSSIMONT" + "codePostal": "06440", + "codeCommune": "06092", + "libelleAcheminement": "PEILLON", + "nomCommune": "PEILLON" }, { - "codePostal": "08160", - "codeCommune": "08469", - "libelleAcheminement": "VENDRESSE", - "nomCommune": "VENDRESSE" + "codePostal": "18700", + "codeCommune": "18015", + "libelleAcheminement": "AUBIGNY SUR NERE", + "nomCommune": "AUBIGNY SUR NERE" }, { - "codePostal": "10110", - "codeCommune": "10427", - "libelleAcheminement": "VILLE SUR ARCE", - "nomCommune": "VILLE SUR ARCE" + "codePostal": "18360", + "codeCommune": "18093", + "libelleAcheminement": "FAVERDINES", + "nomCommune": "FAVERDINES" }, { - "codePostal": "51340", - "codeCommune": "51290", - "libelleAcheminement": "HEILTZ L EVEQUE", - "nomCommune": "HEILTZ L EVEQUE" + "codePostal": "03160", + "codeCommune": "03320", + "libelleAcheminement": "YGRANDE", + "nomCommune": "YGRANDE" }, { - "codePostal": "08390", - "codeCommune": "08471", - "libelleAcheminement": "VERRIERES", - "nomCommune": "VERRIERES" + "codePostal": "06470", + "codeCommune": "06094", + "libelleAcheminement": "PEONE", + "nomCommune": "PEONE" }, { - "codePostal": "10200", - "codeCommune": "10428", - "libelleAcheminement": "VILLE SUR TERRE", - "nomCommune": "VILLE SUR TERRE" + "codePostal": "18320", + "codeCommune": "18025", + "libelleAcheminement": "BEFFES", + "nomCommune": "BEFFES" }, { - "codePostal": "51140", - "codeCommune": "51294", - "libelleAcheminement": "HOURGES", - "nomCommune": "HOURGES" + "codePostal": "18200", + "codeCommune": "18107", + "libelleAcheminement": "LA GROUTTE", + "nomCommune": "LA GROUTTE" }, { - "codePostal": "08270", - "codeCommune": "08472", - "libelleAcheminement": "VIEL ST REMY", - "nomCommune": "VIEL ST REMY" + "codePostal": "04260", + "codeCommune": "04006", + "libelleAcheminement": "ALLOS", + "nomCommune": "ALLOS" }, { - "codePostal": "10110", - "codeCommune": "10438", - "libelleAcheminement": "VITRY LE CROISE", - "nomCommune": "VITRY LE CROISE" + "codePostal": "06260", + "codeCommune": "06096", + "libelleAcheminement": "PIERLAS", + "nomCommune": "PIERLAS" }, { - "codePostal": "51150", - "codeCommune": "51303", - "libelleAcheminement": "JALONS", - "nomCommune": "JALONS" + "codePostal": "18200", + "codeCommune": "18038", + "libelleAcheminement": "BRUERE ALLICHAMPS", + "nomCommune": "BRUERE ALLICHAMPS" }, { - "codePostal": "08190", - "codeCommune": "08473", - "libelleAcheminement": "VIEUX LES ASFELD", - "nomCommune": "VIEUX LES ASFELD" + "codePostal": "18250", + "codeCommune": "18111", + "libelleAcheminement": "HUMBLIGNY", + "nomCommune": "HUMBLIGNY" }, { - "codePostal": "10150", - "codeCommune": "10442", - "libelleAcheminement": "VOUE", - "nomCommune": "VOUE" + "codePostal": "04240", + "codeCommune": "04008", + "libelleAcheminement": "ANNOT", + "nomCommune": "ANNOT" }, { - "codePostal": "51700", - "codeCommune": "51309", - "libelleAcheminement": "JONQUERY", - "nomCommune": "JONQUERY" + "codePostal": "06260", + "codeCommune": "06099", + "libelleAcheminement": "PUGET THENIERS", + "nomCommune": "PUGET THENIERS" }, { - "codePostal": "08430", - "codeCommune": "08479", - "libelleAcheminement": "VILLERS LE TOURNEUR", - "nomCommune": "VILLERS LE TOURNEUR" + "codePostal": "18140", + "codeCommune": "18053", + "libelleAcheminement": "CHARENTONNAY", + "nomCommune": "CHARENTONNAY" }, { - "codePostal": "10210", - "codeCommune": "10443", - "libelleAcheminement": "VOUGREY", - "nomCommune": "VOUGREY" + "codePostal": "18350", + "codeCommune": "18113", + "libelleAcheminement": "IGNOL", + "nomCommune": "IGNOL" }, { - "codePostal": "51340", - "codeCommune": "51311", - "libelleAcheminement": "JUSSECOURT MINECOURT", - "nomCommune": "JUSSECOURT MINECOURT" + "codePostal": "04200", + "codeCommune": "04013", + "libelleAcheminement": "AUBIGNOSC", + "nomCommune": "AUBIGNOSC" }, { - "codePostal": "08350", - "codeCommune": "08481", - "libelleAcheminement": "VILLERS SUR BAR", - "nomCommune": "VILLERS SUR BAR" + "codePostal": "06910", + "codeCommune": "06107", + "libelleAcheminement": "LA ROQUE EN PROVENCE", + "nomCommune": "LA ROQUE EN PROVENCE" }, { - "codePostal": "11330", - "codeCommune": "11007", - "libelleAcheminement": "ALBIERES", - "nomCommune": "ALBIERES" + "codePostal": "18350", + "codeCommune": "18054", + "libelleAcheminement": "CHARLY", + "nomCommune": "CHARLY" }, { - "codePostal": "51120", - "codeCommune": "51313", - "libelleAcheminement": "LACHY", - "nomCommune": "LACHY" + "codePostal": "18120", + "codeCommune": "18128", + "libelleAcheminement": "LIMEUX", + "nomCommune": "LIMEUX" }, { - "codePostal": "08370", - "codeCommune": "08485", - "libelleAcheminement": "VILLY", - "nomCommune": "VILLY" + "codePostal": "04140", + "codeCommune": "04017", + "libelleAcheminement": "AUZET", + "nomCommune": "AUZET" }, { - "codePostal": "11190", - "codeCommune": "11010", - "libelleAcheminement": "ANTUGNAC", - "nomCommune": "ANTUGNAC" + "codePostal": "06850", + "codeCommune": "06116", + "libelleAcheminement": "ST AUBAN", + "nomCommune": "ST AUBAN" }, { - "codePostal": "51700", - "codeCommune": "51320", - "libelleAcheminement": "LEUVRIGNY", - "nomCommune": "LEUVRIGNY" + "codePostal": "18140", + "codeCommune": "18061", + "libelleAcheminement": "CHAUMOUX MARCILLY", + "nomCommune": "CHAUMOUX MARCILLY" }, { - "codePostal": "08400", - "codeCommune": "08490", - "libelleAcheminement": "VOUZIERS", - "nomCommune": "VOUZIERS" + "codePostal": "18140", + "codeCommune": "18132", + "libelleAcheminement": "LUGNY CHAMPAGNE", + "nomCommune": "LUGNY CHAMPAGNE" }, { - "codePostal": "11190", - "codeCommune": "11015", - "libelleAcheminement": "ARQUES", - "nomCommune": "ARQUES" + "codePostal": "04400", + "codeCommune": "04019", + "libelleAcheminement": "BARCELONNETTE", + "nomCommune": "BARCELONNETTE" }, { - "codePostal": "51300", - "codeCommune": "51325", - "libelleAcheminement": "LISSE EN CHAMPAGNE", - "nomCommune": "LISSE EN CHAMPAGNE" + "codePostal": "06660", + "codeCommune": "06119", + "libelleAcheminement": "ST DALMAS LE SELVAGE", + "nomCommune": "ST DALMAS LE SELVAGE" }, { - "codePostal": "08330", - "codeCommune": "08491", - "libelleAcheminement": "VRIGNE AUX BOIS", - "nomCommune": "VRIGNE AUX BOIS" + "codePostal": "18350", + "codeCommune": "18080", + "libelleAcheminement": "CROISY", + "nomCommune": "CROISY" }, { - "codePostal": "11700", - "codeCommune": "11022", - "libelleAcheminement": "AZILLE", - "nomCommune": "AZILLE" + "codePostal": "18510", + "codeCommune": "18145", + "libelleAcheminement": "MENETOU SALON", + "nomCommune": "MENETOU SALON" }, { - "codePostal": "51500", - "codeCommune": "51333", - "libelleAcheminement": "LUDES", - "nomCommune": "LUDES" + "codePostal": "04250", + "codeCommune": "04023", + "libelleAcheminement": "BAYONS", + "nomCommune": "BAYONS" }, { - "codePostal": "08200", - "codeCommune": "08494", - "libelleAcheminement": "WADELINCOURT", - "nomCommune": "WADELINCOURT" + "codePostal": "06660", + "codeCommune": "06120", + "libelleAcheminement": "ST ETIENNE DE TINEE", + "nomCommune": "ST ETIENNE DE TINEE" }, { - "codePostal": "11800", - "codeCommune": "11023", - "libelleAcheminement": "BADENS", - "nomCommune": "BADENS" + "codePostal": "18340", + "codeCommune": "18081", + "libelleAcheminement": "CROSSES", + "nomCommune": "CROSSES" }, { - "codePostal": "51500", - "codeCommune": "51338", - "libelleAcheminement": "MAILLY CHAMPAGNE", - "nomCommune": "MAILLY CHAMPAGNE" + "codePostal": "18700", + "codeCommune": "18147", + "libelleAcheminement": "MENETREOL SUR SAULDRE", + "nomCommune": "MENETREOL SUR SAULDRE" }, { - "codePostal": "09600", - "codeCommune": "09002", - "libelleAcheminement": "AIGUES VIVES", - "nomCommune": "AIGUES VIVES" + "codePostal": "04250", + "codeCommune": "04026", + "libelleAcheminement": "BELLAFFAIRE", + "nomCommune": "BELLAFFAIRE" }, { - "codePostal": "11100", - "codeCommune": "11024", - "libelleAcheminement": "BAGES", - "nomCommune": "BAGES" + "codePostal": "06700", + "codeCommune": "06123", + "libelleAcheminement": "ST LAURENT DU VAR", + "nomCommune": "ST LAURENT DU VAR" }, { - "codePostal": "51300", - "codeCommune": "51340", - "libelleAcheminement": "MAISONS EN CHAMPAGNE", - "nomCommune": "MAISONS EN CHAMPAGNE" + "codePostal": "18310", + "codeCommune": "18085", + "libelleAcheminement": "DAMPIERRE EN GRACAY", + "nomCommune": "DAMPIERRE EN GRACAY" }, { - "codePostal": "09300", - "codeCommune": "09003", - "libelleAcheminement": "L AIGUILLON", - "nomCommune": "L AIGUILLON" + "codePostal": "18120", + "codeCommune": "18148", + "libelleAcheminement": "MEREAU", + "nomCommune": "MEREAU" }, { - "codePostal": "11410", - "codeCommune": "11026", - "libelleAcheminement": "BARAIGNE", - "nomCommune": "BARAIGNE" + "codePostal": "04200", + "codeCommune": "04027", + "libelleAcheminement": "BEVONS", + "nomCommune": "BEVONS" }, { - "codePostal": "51530", - "codeCommune": "51342", - "libelleAcheminement": "MANCY", - "nomCommune": "MANCY" + "codePostal": "06450", + "codeCommune": "06127", + "libelleAcheminement": "ST MARTIN VESUBIE", + "nomCommune": "ST MARTIN VESUBIE" }, { - "codePostal": "09320", - "codeCommune": "09005", - "libelleAcheminement": "ALEU", - "nomCommune": "ALEU" + "codePostal": "18130", + "codeCommune": "18087", + "libelleAcheminement": "DUN SUR AURON", + "nomCommune": "DUN SUR AURON" }, { - "codePostal": "11240", - "codeCommune": "11034", - "libelleAcheminement": "BELVEZE DU RAZES", - "nomCommune": "BELVEZE DU RAZES" + "codePostal": "18170", + "codeCommune": "18153", + "libelleAcheminement": "MORLAC", + "nomCommune": "MORLAC" }, { - "codePostal": "51530", - "codeCommune": "51344", - "libelleAcheminement": "MARDEUIL", - "nomCommune": "MARDEUIL" + "codePostal": "04250", + "codeCommune": "04037", + "libelleAcheminement": "LE CAIRE", + "nomCommune": "LE CAIRE" }, { - "codePostal": "09400", - "codeCommune": "09006", - "libelleAcheminement": "ALLIAT", - "nomCommune": "ALLIAT" + "codePostal": "06470", + "codeCommune": "06133", + "libelleAcheminement": "SAUZE", + "nomCommune": "SAUZE" }, { - "codePostal": "11120", - "codeCommune": "11041", - "libelleAcheminement": "BIZE MINERVOIS", - "nomCommune": "BIZE MINERVOIS" + "codePostal": "18360", + "codeCommune": "18089", + "libelleAcheminement": "EPINEUIL LE FLEURIEL", + "nomCommune": "EPINEUIL LE FLEURIEL" }, { - "codePostal": "51270", - "codeCommune": "51345", - "libelleAcheminement": "MAREUIL EN BRIE", - "nomCommune": "MAREUIL EN BRIE" + "codePostal": "18390", + "codeCommune": "18158", + "libelleAcheminement": "MOULINS SUR YEVRE", + "nomCommune": "MOULINS SUR YEVRE" }, { - "codePostal": "09130", - "codeCommune": "09019", - "libelleAcheminement": "ARTIGAT", - "nomCommune": "ARTIGAT" + "codePostal": "04120", + "codeCommune": "04039", + "libelleAcheminement": "CASTELLANE", + "nomCommune": "CASTELLANE" }, { - "codePostal": "11420", - "codeCommune": "11057", - "libelleAcheminement": "CAHUZAC", - "nomCommune": "CAHUZAC" + "codePostal": "06750", + "codeCommune": "06134", + "libelleAcheminement": "SERANON", + "nomCommune": "SERANON" }, { - "codePostal": "51170", - "codeCommune": "51348", - "libelleAcheminement": "MARFAUX", - "nomCommune": "MARFAUX" + "codePostal": "18300", + "codeCommune": "18094", + "libelleAcheminement": "FEUX", + "nomCommune": "FEUX" }, { - "codePostal": "09250", - "codeCommune": "09031", - "libelleAcheminement": "AXIAT", - "nomCommune": "AXIAT" + "codePostal": "18330", + "codeCommune": "18159", + "libelleAcheminement": "NANCAY", + "nomCommune": "NANCAY" }, { - "codePostal": "11190", - "codeCommune": "11065", - "libelleAcheminement": "CAMPS SUR L AGLY", - "nomCommune": "CAMPS SUR L AGLY" + "codePostal": "04380", + "codeCommune": "04040", + "libelleAcheminement": "LE CASTELLARD MELAN", + "nomCommune": "LE CASTELLARD MELAN" }, { - "codePostal": "51260", - "codeCommune": "51353", - "libelleAcheminement": "MARSANGIS", - "nomCommune": "MARSANGIS" + "codePostal": "06830", + "codeCommune": "06145", + "libelleAcheminement": "TOURETTE DU CHATEAU", + "nomCommune": "TOURETTE DU CHATEAU" }, { - "codePostal": "09110", - "codeCommune": "09032", - "libelleAcheminement": "AX LES THERMES", - "nomCommune": "AX LES THERMES" + "codePostal": "18350", + "codeCommune": "18095", + "libelleAcheminement": "FLAVIGNY", + "nomCommune": "FLAVIGNY" }, { - "codePostal": "11000", - "codeCommune": "11069", - "libelleAcheminement": "CARCASSONNE", - "nomCommune": "CARCASSONNE" + "codePostal": "18330", + "codeCommune": "18165", + "libelleAcheminement": "NEUVY SUR BARANGEON", + "nomCommune": "NEUVY SUR BARANGEON" }, { - "codePostal": "51800", - "codeCommune": "51355", - "libelleAcheminement": "MASSIGES", - "nomCommune": "MASSIGES" + "codePostal": "04510", + "codeCommune": "04046", + "libelleAcheminement": "LE CHAFFAUT ST JURSON", + "nomCommune": "LE CHAFFAUT ST JURSON" }, { - "codePostal": "09500", - "codeCommune": "09039", - "libelleAcheminement": "LA BASTIDE DE BOUSIGNAC", - "nomCommune": "LA BASTIDE DE BOUSIGNAC" + "codePostal": "06340", + "codeCommune": "06149", + "libelleAcheminement": "LA TRINITE", + "nomCommune": "LA TRINITE" }, { - "codePostal": "11270", - "codeCommune": "11072", - "libelleAcheminement": "LA CASSAIGNE", - "nomCommune": "LA CASSAIGNE" + "codePostal": "18500", + "codeCommune": "18096", + "libelleAcheminement": "FOECY", + "nomCommune": "FOECY" }, { - "codePostal": "51300", - "codeCommune": "51356", - "libelleAcheminement": "MATIGNICOURT GONCOURT", - "nomCommune": "MATIGNICOURT GONCOURT" + "codePostal": "18200", + "codeCommune": "18169", + "libelleAcheminement": "NOZIERES", + "nomCommune": "NOZIERES" }, { - "codePostal": "09160", - "codeCommune": "09041", - "libelleAcheminement": "LA BASTIDE DU SALAT", - "nomCommune": "LA BASTIDE DU SALAT" + "codePostal": "04160", + "codeCommune": "04049", + "libelleAcheminement": "CHATEAU ARNOUX ST AUBAN", + "nomCommune": "CHATEAU ARNOUX ST AUBAN" }, { - "codePostal": "11300", - "codeCommune": "11078", - "libelleAcheminement": "CASTELRENG", - "nomCommune": "CASTELRENG" + "codePostal": "06560", + "codeCommune": "06152", + "libelleAcheminement": "VALBONNE", + "nomCommune": "VALBONNE" }, { - "codePostal": "51320", - "codeCommune": "51361", - "libelleAcheminement": "LE MEIX TIERCELIN", - "nomCommune": "LE MEIX TIERCELIN" + "codePostal": "18140", + "codeCommune": "18099", + "libelleAcheminement": "GARIGNY", + "nomCommune": "GARIGNY" }, { - "codePostal": "09400", - "codeCommune": "09045", - "libelleAcheminement": "BEDEILHAC ET AYNAT", - "nomCommune": "BEDEILHAC ET AYNAT" + "codePostal": "18130", + "codeCommune": "18173", + "libelleAcheminement": "OSMERY", + "nomCommune": "OSMERY" }, { - "codePostal": "11230", - "codeCommune": "11080", - "libelleAcheminement": "VAL DE LAMBRONNE", - "nomCommune": "VAL DE LAMBRONNE" + "codePostal": "04200", + "codeCommune": "04053", + "libelleAcheminement": "CHATEAUNEUF VAL ST DONAT", + "nomCommune": "CHATEAUNEUF VAL ST DONAT" }, { - "codePostal": "51300", - "codeCommune": "51363", - "libelleAcheminement": "MERLAUT", - "nomCommune": "MERLAUT" + "codePostal": "06220", + "codeCommune": "06155", + "libelleAcheminement": "VALLAURIS", + "nomCommune": "VALLAURIS" }, { - "codePostal": "09800", - "codeCommune": "09062", - "libelleAcheminement": "BORDES UCHENTEIN", - "nomCommune": "BORDES UCHENTEIN" + "codePostal": "18310", + "codeCommune": "18100", + "libelleAcheminement": "GENOUILLY", + "nomCommune": "GENOUILLY" }, { - "codePostal": "11160", - "codeCommune": "11081", - "libelleAcheminement": "CAUNES MINERVOIS", - "nomCommune": "CAUNES MINERVOIS" + "codePostal": "18220", + "codeCommune": "18176", + "libelleAcheminement": "PARASSY", + "nomCommune": "PARASSY" }, { - "codePostal": "51390", - "codeCommune": "51364", - "libelleAcheminement": "MERY PREMECY", - "nomCommune": "MERY PREMECY" + "codePostal": "04270", + "codeCommune": "04054", + "libelleAcheminement": "CHATEAUREDON", + "nomCommune": "CHATEAUREDON" }, { - "codePostal": "09320", - "codeCommune": "09065", - "libelleAcheminement": "BOUSSENAC", - "nomCommune": "BOUSSENAC" + "codePostal": "06470", + "codeCommune": "06160", + "libelleAcheminement": "VILLENEUVE D ENTRAUNES", + "nomCommune": "VILLENEUVE D ENTRAUNES" }, { - "codePostal": "11230", - "codeCommune": "11100", - "libelleAcheminement": "CORBIERES", - "nomCommune": "CORBIERES" + "codePostal": "18600", + "codeCommune": "18102", + "libelleAcheminement": "GIVARDON", + "nomCommune": "GIVARDON" }, { - "codePostal": "51140", - "codeCommune": "51379", - "libelleAcheminement": "MONTIGNY SUR VESLE", - "nomCommune": "MONTIGNY SUR VESLE" + "codePostal": "18340", + "codeCommune": "18180", + "libelleAcheminement": "PLAIMPIED GIVAUDINS", + "nomCommune": "PLAIMPIED GIVAUDINS" }, { - "codePostal": "09290", - "codeCommune": "09073", - "libelleAcheminement": "CAMARADE", - "nomCommune": "CAMARADE" + "codePostal": "05110", + "codeCommune": "04058", + "libelleAcheminement": "CLARET", + "nomCommune": "CLARET" }, { - "codePostal": "11500", - "codeCommune": "11101", - "libelleAcheminement": "COUDONS", - "nomCommune": "COUDONS" + "codePostal": "06270", + "codeCommune": "06161", + "libelleAcheminement": "VILLENEUVE LOUBET", + "nomCommune": "VILLENEUVE LOUBET" }, { - "codePostal": "51210", - "codeCommune": "51380", - "libelleAcheminement": "MONTMIRAIL", - "nomCommune": "MONTMIRAIL" + "codePostal": "18310", + "codeCommune": "18103", + "libelleAcheminement": "GRACAY", + "nomCommune": "GRACAY" }, { - "codePostal": "09100", - "codeCommune": "09081", - "libelleAcheminement": "LE CARLARET", - "nomCommune": "LE CARLARET" + "codePostal": "18210", + "codeCommune": "18183", + "libelleAcheminement": "LE PONDY", + "nomCommune": "LE PONDY" }, { - "codePostal": "11300", - "codeCommune": "11105", - "libelleAcheminement": "COURNANEL", - "nomCommune": "COURNANEL" + "codePostal": "04330", + "codeCommune": "04059", + "libelleAcheminement": "CLUMANC", + "nomCommune": "CLUMANC" }, { - "codePostal": "51530", - "codeCommune": "51384", - "libelleAcheminement": "MORANGIS", - "nomCommune": "MORANGIS" + "codePostal": "07190", + "codeCommune": "07006", + "libelleAcheminement": "ALBON D ARDECHE", + "nomCommune": "ALBON D ARDECHE" }, { - "codePostal": "09350", - "codeCommune": "09084", - "libelleAcheminement": "CASTEX", - "nomCommune": "CASTEX" + "codePostal": "18140", + "codeCommune": "18104", + "libelleAcheminement": "GROISES", + "nomCommune": "GROISES" }, { - "codePostal": "11230", - "codeCommune": "11107", - "libelleAcheminement": "COURTAULY", - "nomCommune": "COURTAULY" + "codePostal": "18380", + "codeCommune": "18185", + "libelleAcheminement": "PRESLY", + "nomCommune": "PRESLY" }, { - "codePostal": "51210", - "codeCommune": "51386", - "libelleAcheminement": "MORSAINS", - "nomCommune": "MORSAINS" + "codePostal": "04370", + "codeCommune": "04061", + "libelleAcheminement": "COLMARS LES ALPES", + "nomCommune": "COLMARS" }, { - "codePostal": "09250", - "codeCommune": "09087", - "libelleAcheminement": "CAUSSOU", - "nomCommune": "CAUSSOU" + "codePostal": "07340", + "codeCommune": "07009", + "libelleAcheminement": "ANDANCE", + "nomCommune": "ANDANCE" }, { - "codePostal": "11190", - "codeCommune": "11109", - "libelleAcheminement": "COUSTAUSSA", - "nomCommune": "COUSTAUSSA" + "codePostal": "18130", + "codeCommune": "18121", + "libelleAcheminement": "LANTAN", + "nomCommune": "LANTAN" }, { - "codePostal": "51400", - "codeCommune": "51388", - "libelleAcheminement": "MOURMELON LE GRAND", - "nomCommune": "MOURMELON LE GRAND" + "codePostal": "18120", + "codeCommune": "18186", + "libelleAcheminement": "PREUILLY", + "nomCommune": "PREUILLY" }, { - "codePostal": "09000", - "codeCommune": "09093", - "libelleAcheminement": "CELLES", - "nomCommune": "CELLES" + "codePostal": "04530", + "codeCommune": "04062", + "libelleAcheminement": "LA CONDAMINE CHATELARD", + "nomCommune": "LA CONDAMINE CHATELARD" }, { - "codePostal": "11350", - "codeCommune": "11113", - "libelleAcheminement": "CUCUGNAN", - "nomCommune": "CUCUGNAN" + "codePostal": "07100", + "codeCommune": "07010", + "libelleAcheminement": "ANNONAY", + "nomCommune": "ANNONAY" }, { - "codePostal": "51700", - "codeCommune": "51396", - "libelleAcheminement": "NESLE LE REPONS", - "nomCommune": "NESLE LE REPONS" + "codePostal": "18120", + "codeCommune": "18134", + "libelleAcheminement": "LURY SUR ARNON", + "nomCommune": "LURY SUR ARNON" }, { - "codePostal": "09000", - "codeCommune": "09099", - "libelleAcheminement": "COS", - "nomCommune": "COS" + "codePostal": "18120", + "codeCommune": "18190", + "libelleAcheminement": "QUINCY", + "nomCommune": "QUINCY" }, { - "codePostal": "11360", - "codeCommune": "11124", - "libelleAcheminement": "DURBAN CORBIERES", - "nomCommune": "DURBAN CORBIERES" + "codePostal": "04230", + "codeCommune": "04065", + "libelleAcheminement": "CRUIS", + "nomCommune": "CRUIS" }, { - "codePostal": "51800", - "codeCommune": "51399", - "libelleAcheminement": "LA NEUVILLE AU PONT", - "nomCommune": "LA NEUVILLE AU PONT" + "codePostal": "07600", + "codeCommune": "07011", + "libelleAcheminement": "VALLEES D ANTRAIGUES ASPERJOC", + "nomCommune": "VALLEES D ANTRAIGUES ASPERJOC" }, { - "codePostal": "09120", - "codeCommune": "09101", - "libelleAcheminement": "COUSSA", - "nomCommune": "COUSSA" + "codePostal": "18290", + "codeCommune": "18137", + "libelleAcheminement": "MAREUIL SUR ARNON", + "nomCommune": "MAREUIL SUR ARNON" }, { - "codePostal": "11200", - "codeCommune": "11132", - "libelleAcheminement": "FABREZAN", - "nomCommune": "FABREZAN" + "codePostal": "18130", + "codeCommune": "18191", + "libelleAcheminement": "RAYMOND", + "nomCommune": "RAYMOND" }, { - "codePostal": "51310", - "codeCommune": "51402", - "libelleAcheminement": "NEUVY", - "nomCommune": "NEUVY" + "codePostal": "04300", + "codeCommune": "04068", + "libelleAcheminement": "DAUPHIN", + "nomCommune": "DAUPHIN" }, { - "codePostal": "09600", - "codeCommune": "09107", - "libelleAcheminement": "DUN", - "nomCommune": "DUN" + "codePostal": "07290", + "codeCommune": "07013", + "libelleAcheminement": "ARDOIX", + "nomCommune": "ARDOIX" }, { - "codePostal": "11410", - "codeCommune": "11134", - "libelleAcheminement": "FAJAC LA RELENQUE", - "nomCommune": "FAJAC LA RELENQUE" + "codePostal": "18500", + "codeCommune": "18138", + "libelleAcheminement": "MARMAGNE", + "nomCommune": "MARMAGNE" }, { - "codePostal": "51240", - "codeCommune": "51409", - "libelleAcheminement": "NUISEMENT SUR COOLE", - "nomCommune": "NUISEMENT SUR COOLE" + "codePostal": "18270", + "codeCommune": "18192", + "libelleAcheminement": "REIGNY", + "nomCommune": "REIGNY" }, { - "codePostal": "09140", - "codeCommune": "09113", - "libelleAcheminement": "ERCE", - "nomCommune": "ERCE" + "codePostal": "04420", + "codeCommune": "04072", + "libelleAcheminement": "DRAIX", + "nomCommune": "DRAIX" }, { - "codePostal": "11400", - "codeCommune": "11138", - "libelleAcheminement": "FENDEILLE", - "nomCommune": "FENDEILLE" + "codePostal": "07140", + "codeCommune": "07017", + "libelleAcheminement": "LES ASSIONS", + "nomCommune": "LES ASSIONS" }, { - "codePostal": "51700", - "codeCommune": "51414", - "libelleAcheminement": "OLIZY", - "nomCommune": "OLIZY" + "codePostal": "18320", + "codeCommune": "18139", + "libelleAcheminement": "MARSEILLES LES AUBIGNY", + "nomCommune": "MARSEILLES LES AUBIGNY" }, { - "codePostal": "09130", - "codeCommune": "09124", - "libelleAcheminement": "LE FOSSAT", - "nomCommune": "LE FOSSAT" + "codePostal": "18200", + "codeCommune": "18197", + "libelleAcheminement": "ST AMAND MONTROND", + "nomCommune": "ST AMAND MONTROND" }, { - "codePostal": "11510", - "codeCommune": "11144", - "libelleAcheminement": "FITOU", - "nomCommune": "FITOU" + "codePostal": "04000", + "codeCommune": "04074", + "libelleAcheminement": "ENTRAGES", + "nomCommune": "ENTRAGES" }, { - "codePostal": "51290", - "codeCommune": "51419", - "libelleAcheminement": "OUTINES", - "nomCommune": "OUTINES" + "codePostal": "07190", + "codeCommune": "07030", + "libelleAcheminement": "BEAUVENE", + "nomCommune": "BEAUVENE" }, { - "codePostal": "09220", - "codeCommune": "09143", - "libelleAcheminement": "ILLIER ET LARAMADE", - "nomCommune": "ILLIER ET LARAMADE" + "codePostal": "18250", + "codeCommune": "18151", + "libelleAcheminement": "MONTIGNY", + "nomCommune": "MONTIGNY" }, { - "codePostal": "11700", - "codeCommune": "11148", - "libelleAcheminement": "FONTCOUVERTE", - "nomCommune": "FONTCOUVERTE" + "codePostal": "18130", + "codeCommune": "18204", + "libelleAcheminement": "ST DENIS DE PALIN", + "nomCommune": "ST DENIS DE PALIN" }, { - "codePostal": "51120", - "codeCommune": "51421", - "libelleAcheminement": "OYES", - "nomCommune": "OYES" + "codePostal": "04320", + "codeCommune": "04076", + "libelleAcheminement": "ENTREVAUX", + "nomCommune": "ENTREVAUX" }, { - "codePostal": "09300", - "codeCommune": "09165", - "libelleAcheminement": "LESPARROU", - "nomCommune": "LESPARROU" + "codePostal": "07580", + "codeCommune": "07032", + "libelleAcheminement": "BERZEME", + "nomCommune": "BERZEME" }, { - "codePostal": "11800", - "codeCommune": "11151", - "libelleAcheminement": "FONTIES D AUDE", - "nomCommune": "FONTIES D AUDE" + "codePostal": "18600", + "codeCommune": "18155", + "libelleAcheminement": "MORNAY SUR ALLIER", + "nomCommune": "MORNAY SUR ALLIER" }, { - "codePostal": "51700", - "codeCommune": "51425", - "libelleAcheminement": "PASSY GRIGNY", - "nomCommune": "PASSY GRIGNY" + "codePostal": "18340", + "codeCommune": "18218", + "libelleAcheminement": "ST JUST", + "nomCommune": "ST JUST" }, { - "codePostal": "09600", - "codeCommune": "09169", - "libelleAcheminement": "LIMBRASSAC", - "nomCommune": "LIMBRASSAC" + "codePostal": "04120", + "codeCommune": "04092", + "libelleAcheminement": "LA GARDE", + "nomCommune": "LA GARDE" }, { - "codePostal": "11600", - "codeCommune": "11154", - "libelleAcheminement": "FOURNES CABARDES", - "nomCommune": "FOURNES CABARDES" + "codePostal": "07150", + "codeCommune": "07033", + "libelleAcheminement": "BESSAS", + "nomCommune": "BESSAS" }, { - "codePostal": "51170", - "codeCommune": "51437", - "libelleAcheminement": "POILLY", - "nomCommune": "POILLY" + "codePostal": "18350", + "codeCommune": "18160", + "libelleAcheminement": "NERONDES", + "nomCommune": "NERONDES" }, { - "codePostal": "09000", - "codeCommune": "09174", - "libelleAcheminement": "LOUBIERES", - "nomCommune": "LOUBIERES" + "codePostal": "18140", + "codeCommune": "18220", + "libelleAcheminement": "ST LEGER LE PETIT", + "nomCommune": "ST LEGER LE PETIT" }, { - "codePostal": "11600", - "codeCommune": "11156", - "libelleAcheminement": "FRAISSE CABARDES", - "nomCommune": "FRAISSE CABARDES" + "codePostal": "04850", + "codeCommune": "04096", + "libelleAcheminement": "JAUSIERS", + "nomCommune": "JAUSIERS" }, { - "codePostal": "51490", - "codeCommune": "51440", - "libelleAcheminement": "PONTFAVERGER MORONVILLIERS", - "nomCommune": "PONTFAVERGER MORONVILLIERS" + "codePostal": "07340", + "codeCommune": "07036", + "libelleAcheminement": "BOGY", + "nomCommune": "BOGY" }, { - "codePostal": "09100", - "codeCommune": "09175", - "libelleAcheminement": "LUDIES", - "nomCommune": "LUDIES" + "codePostal": "18260", + "codeCommune": "18168", + "libelleAcheminement": "LE NOYER", + "nomCommune": "LE NOYER" }, { - "codePostal": "11270", - "codeCommune": "11159", - "libelleAcheminement": "GAJA LA SELVE", - "nomCommune": "GAJA LA SELVE" + "codePostal": "18190", + "codeCommune": "18221", + "libelleAcheminement": "ST LOUP DES CHAUMES", + "nomCommune": "ST LOUP DES CHAUMES" }, { - "codePostal": "51330", - "codeCommune": "51442", - "libelleAcheminement": "POSSESSE", - "nomCommune": "POSSESSE" + "codePostal": "04700", + "codeCommune": "04106", + "libelleAcheminement": "LURS", + "nomCommune": "LURS" }, { - "codePostal": "09230", - "codeCommune": "09184", - "libelleAcheminement": "MAUVEZIN DE STE CROIX", - "nomCommune": "MAUVEZIN DE STE CROIX" + "codePostal": "07100", + "codeCommune": "07041", + "libelleAcheminement": "BOULIEU LES ANNONAY", + "nomCommune": "BOULIEU LES ANNONAY" }, { - "codePostal": "11250", - "codeCommune": "11161", - "libelleAcheminement": "GARDIE", - "nomCommune": "GARDIE" + "codePostal": "18200", + "codeCommune": "18171", + "libelleAcheminement": "ORCENAIS", + "nomCommune": "ORCENAIS" }, { - "codePostal": "51260", - "codeCommune": "51443", - "libelleAcheminement": "POTANGIS", - "nomCommune": "POTANGIS" + "codePostal": "18110", + "codeCommune": "18223", + "libelleAcheminement": "ST MARTIN D AUXIGNY", + "nomCommune": "ST MARTIN D AUXIGNY" }, { - "codePostal": "09400", - "codeCommune": "09188", - "libelleAcheminement": "MERCUS GARRABET", - "nomCommune": "MERCUS GARRABET" + "codePostal": "04530", + "codeCommune": "04120", + "libelleAcheminement": "VAL D ORONAYE", + "nomCommune": "VAL D ORONAYE" }, { - "codePostal": "11500", - "codeCommune": "11165", - "libelleAcheminement": "GINOLES", - "nomCommune": "GINOLES" + "codePostal": "07230", + "codeCommune": "07053", + "libelleAcheminement": "CHANDOLAS", + "nomCommune": "CHANDOLAS" }, { - "codePostal": "51480", - "codeCommune": "51445", - "libelleAcheminement": "POURCY", - "nomCommune": "POURCY" + "codePostal": "18350", + "codeCommune": "18175", + "libelleAcheminement": "OUROUER LES BOURDELINS", + "nomCommune": "OUROUER LES BOURDELINS" }, { - "codePostal": "09110", - "codeCommune": "09189", - "libelleAcheminement": "MERENS LES VALS", - "nomCommune": "MERENS LES VALS" + "codePostal": "18310", + "codeCommune": "18228", + "libelleAcheminement": "ST OUTRILLE", + "nomCommune": "ST OUTRILLE" }, { - "codePostal": "11410", - "codeCommune": "11166", - "libelleAcheminement": "GOURVIEILLE", - "nomCommune": "GOURVIEILLE" + "codePostal": "04200", + "codeCommune": "04123", + "libelleAcheminement": "MISON", + "nomCommune": "MISON" }, { - "codePostal": "51140", - "codeCommune": "51448", - "libelleAcheminement": "PROUILLY", - "nomCommune": "PROUILLY" + "codePostal": "07310", + "codeCommune": "07054", + "libelleAcheminement": "CHANEAC", + "nomCommune": "CHANEAC" }, { - "codePostal": "09240", - "codeCommune": "09196", - "libelleAcheminement": "MONTAGAGNE", - "nomCommune": "MONTAGAGNE" + "codePostal": "18140", + "codeCommune": "18184", + "libelleAcheminement": "PRECY", + "nomCommune": "PRECY" }, { - "codePostal": "11240", - "codeCommune": "11173", - "libelleAcheminement": "HOUNOUX", - "nomCommune": "HOUNOUX" + "codePostal": "18300", + "codeCommune": "18241", + "libelleAcheminement": "SANCERRE", + "nomCommune": "SANCERRE" }, { - "codePostal": "51360", - "codeCommune": "51449", - "libelleAcheminement": "PRUNAY", - "nomCommune": "PRUNAY" + "codePostal": "04500", + "codeCommune": "04124", + "libelleAcheminement": "MONTAGNAC MONTPEZAT", + "nomCommune": "MONTAGNAC MONTPEZAT" }, { - "codePostal": "09230", - "codeCommune": "09198", - "libelleAcheminement": "MONTARDIT", - "nomCommune": "MONTARDIT" + "codePostal": "07320", + "codeCommune": "07080", + "libelleAcheminement": "DEVESSET", + "nomCommune": "DEVESSET" }, { - "codePostal": "11400", - "codeCommune": "11181", - "libelleAcheminement": "LABECEDE LAURAGAIS", - "nomCommune": "LABECEDE LAURAGAIS" + "codePostal": "18370", + "codeCommune": "18187", + "libelleAcheminement": "PREVERANGES", + "nomCommune": "PREVERANGES" }, { - "codePostal": "51300", - "codeCommune": "51455", - "libelleAcheminement": "REIMS LA BRULEE", - "nomCommune": "REIMS LA BRULEE" + "codePostal": "18270", + "codeCommune": "18252", + "libelleAcheminement": "SIDIAILLES", + "nomCommune": "SIDIAILLES" }, { - "codePostal": "09240", - "codeCommune": "09203", - "libelleAcheminement": "MONTELS", - "nomCommune": "MONTELS" + "codePostal": "04600", + "codeCommune": "04127", + "libelleAcheminement": "MONTFORT", + "nomCommune": "MONTFORT" }, { - "codePostal": "11310", - "codeCommune": "11182", - "libelleAcheminement": "LACOMBE", - "nomCommune": "LACOMBE" + "codePostal": "07300", + "codeCommune": "07086", + "libelleAcheminement": "ETABLES", + "nomCommune": "ETABLES" }, { - "codePostal": "51330", - "codeCommune": "51456", - "libelleAcheminement": "REMICOURT", - "nomCommune": "REMICOURT" + "codePostal": "18400", + "codeCommune": "18188", + "libelleAcheminement": "PRIMELLES", + "nomCommune": "PRIMELLES" }, { - "codePostal": "09200", - "codeCommune": "09214", - "libelleAcheminement": "MOULIS", - "nomCommune": "MOULIS" + "codePostal": "18240", + "codeCommune": "18257", + "libelleAcheminement": "SURY PRES LERE", + "nomCommune": "SURY PRES LERE" }, { - "codePostal": "11270", - "codeCommune": "11193", - "libelleAcheminement": "LASSERRE DE PROUILLE", - "nomCommune": "LASSERRE DE PROUILLE" + "codePostal": "04230", + "codeCommune": "04130", + "libelleAcheminement": "MONTLAUX", + "nomCommune": "MONTLAUX" }, { - "codePostal": "51300", - "codeCommune": "51463", - "libelleAcheminement": "LES RIVIERES HENRUEL", - "nomCommune": "LES RIVIERES HENRUEL" + "codePostal": "07230", + "codeCommune": "07088", + "libelleAcheminement": "FAUGERES", + "nomCommune": "FAUGERES" }, { - "codePostal": "09000", - "codeCommune": "09234", - "libelleAcheminement": "PRADIERES", - "nomCommune": "PRADIERES" + "codePostal": "18220", + "codeCommune": "18194", + "libelleAcheminement": "RIANS", + "nomCommune": "RIANS" }, { - "codePostal": "11400", - "codeCommune": "11195", - "libelleAcheminement": "LAURABUC", - "nomCommune": "LAURABUC" + "codePostal": "18160", + "codeCommune": "18266", + "libelleAcheminement": "TOUCHAY", + "nomCommune": "TOUCHAY" }, { - "codePostal": "51390", - "codeCommune": "51468", - "libelleAcheminement": "ROSNAY", - "nomCommune": "ROSNAY" + "codePostal": "04170", + "codeCommune": "04133", + "libelleAcheminement": "MORIEZ", + "nomCommune": "MORIEZ" }, { - "codePostal": "09100", - "codeCommune": "09238", - "libelleAcheminement": "LES PUJOLS", - "nomCommune": "LES PUJOLS" + "codePostal": "07000", + "codeCommune": "07092", + "libelleAcheminement": "FREYSSENET", + "nomCommune": "FREYSSENET" }, { - "codePostal": "11290", - "codeCommune": "11199", - "libelleAcheminement": "LAVALETTE", - "nomCommune": "LAVALETTE" + "codePostal": "18600", + "codeCommune": "18195", + "libelleAcheminement": "SAGONNE", + "nomCommune": "SAGONNE" }, { - "codePostal": "51500", - "codeCommune": "51471", - "libelleAcheminement": "SACY", - "nomCommune": "SACY" + "codePostal": "18260", + "codeCommune": "18269", + "libelleAcheminement": "VAILLY SUR SAULDRE", + "nomCommune": "VAILLY SUR SAULDRE" }, { - "codePostal": "09460", - "codeCommune": "09239", - "libelleAcheminement": "QUERIGUT", - "nomCommune": "QUERIGUT" + "codePostal": "04360", + "codeCommune": "04135", + "libelleAcheminement": "MOUSTIERS STE MARIE", + "nomCommune": "MOUSTIERS STE MARIE" }, { - "codePostal": "11160", - "codeCommune": "11200", - "libelleAcheminement": "LESPINASSIERE", - "nomCommune": "LESPINASSIERE" + "codePostal": "07300", + "codeCommune": "07097", + "libelleAcheminement": "GLUN", + "nomCommune": "GLUN" }, { - "codePostal": "51300", - "codeCommune": "51472", - "libelleAcheminement": "ST AMAND SUR FION", - "nomCommune": "ST AMAND SUR FION" + "codePostal": "18160", + "codeCommune": "18199", + "libelleAcheminement": "ST BAUDEL", + "nomCommune": "ST BAUDEL" }, { - "codePostal": "09500", - "codeCommune": "09251", - "libelleAcheminement": "ROUMENGOUX", - "nomCommune": "ROUMENGOUX" + "codePostal": "18190", + "codeCommune": "18273", + "libelleAcheminement": "VENESMES", + "nomCommune": "VENESMES" }, { - "codePostal": "11250", - "codeCommune": "11201", - "libelleAcheminement": "LEUC", - "nomCommune": "LEUC" + "codePostal": "04310", + "codeCommune": "04149", + "libelleAcheminement": "PEYRUIS", + "nomCommune": "PEYRUIS" }, { - "codePostal": "51310", - "codeCommune": "51473", - "libelleAcheminement": "ST BON", - "nomCommune": "ST BON" + "codePostal": "07700", + "codeCommune": "07099", + "libelleAcheminement": "GRAS", + "nomCommune": "GRAS" }, { - "codePostal": "09100", - "codeCommune": "09254", - "libelleAcheminement": "ST AMADOU", - "nomCommune": "ST AMADOU" + "codePostal": "18300", + "codeCommune": "18200", + "libelleAcheminement": "ST BOUIZE", + "nomCommune": "ST BOUIZE" }, { - "codePostal": "11240", - "codeCommune": "11204", - "libelleAcheminement": "LIGNAIROLLES", - "nomCommune": "LIGNAIROLLES" + "codePostal": "18600", + "codeCommune": "18275", + "libelleAcheminement": "VEREAUX", + "nomCommune": "VEREAUX" }, { - "codePostal": "51370", - "codeCommune": "51474", - "libelleAcheminement": "ST BRICE COURCELLES", - "nomCommune": "ST BRICE COURCELLES" + "codePostal": "05130", + "codeCommune": "04150", + "libelleAcheminement": "PIEGUT", + "nomCommune": "PIEGUT" }, { - "codePostal": "09100", - "codeCommune": "09255", - "libelleAcheminement": "ST AMANS", - "nomCommune": "ST AMANS" + "codePostal": "07140", + "codeCommune": "07100", + "libelleAcheminement": "GRAVIERES", + "nomCommune": "GRAVIERES" }, { - "codePostal": "11410", - "codeCommune": "11208", - "libelleAcheminement": "LA LOUVIERE LAURAGAIS", - "nomCommune": "LA LOUVIERE LAURAGAIS" + "codePostal": "18220", + "codeCommune": "18202", + "libelleAcheminement": "ST CEOLS", + "nomCommune": "ST CEOLS" }, { - "codePostal": "51400", - "codeCommune": "51485", - "libelleAcheminement": "ST HILAIRE AU TEMPLE", - "nomCommune": "ST HILAIRE AU TEMPLE" + "codePostal": "18360", + "codeCommune": "18278", + "libelleAcheminement": "VESDUN", + "nomCommune": "VESDUN" }, { - "codePostal": "09120", - "codeCommune": "09258", - "libelleAcheminement": "ST FELIX DE RIEUTORD", - "nomCommune": "ST FELIX DE RIEUTORD" + "codePostal": "04300", + "codeCommune": "04151", + "libelleAcheminement": "PIERRERUE", + "nomCommune": "PIERRERUE" }, { - "codePostal": "11200", - "codeCommune": "11210", - "libelleAcheminement": "LUC SUR ORBIEU", - "nomCommune": "LUC SUR ORBIEU" + "codePostal": "07320", + "codeCommune": "07103", + "libelleAcheminement": "ST JULIEN D INTRES", + "nomCommune": "ST JULIEN D INTRES" }, { - "codePostal": "51240", - "codeCommune": "51490", - "libelleAcheminement": "ST JEAN SUR MOIVRE", - "nomCommune": "ST JEAN SUR MOIVRE" + "codePostal": "18110", + "codeCommune": "18229", + "libelleAcheminement": "ST PALAIS", + "nomCommune": "ST PALAIS" }, { - "codePostal": "09500", - "codeCommune": "09260", - "libelleAcheminement": "STE FOI", - "nomCommune": "STE FOI" + "codePostal": "18800", + "codeCommune": "18282", + "libelleAcheminement": "VILLABON", + "nomCommune": "VILLABON" }, { - "codePostal": "11400", - "codeCommune": "11225", - "libelleAcheminement": "MAS SAINTES PUELLES", - "nomCommune": "MAS SAINTES PUELLES" + "codePostal": "04860", + "codeCommune": "04152", + "libelleAcheminement": "PIERREVERT", + "nomCommune": "PIERREVERT" }, { - "codePostal": "51600", - "codeCommune": "51491", - "libelleAcheminement": "ST JEAN SUR TOURBE", - "nomCommune": "ST JEAN SUR TOURBE" + "codePostal": "07600", + "codeCommune": "07112", + "libelleAcheminement": "LABASTIDE SUR BESORGUES", + "nomCommune": "LABASTIDE SUR BESORGUES" }, { - "codePostal": "09200", - "codeCommune": "09261", - "libelleAcheminement": "ST GIRONS", - "nomCommune": "ST GIRONS" + "codePostal": "18370", + "codeCommune": "18234", + "libelleAcheminement": "ST SATURNIN", + "nomCommune": "ST SATURNIN" }, { - "codePostal": "11320", - "codeCommune": "11243", - "libelleAcheminement": "MONTFERRAND", - "nomCommune": "MONTFERRAND" + "codePostal": "19120", + "codeCommune": "19012", + "libelleAcheminement": "ASTAILLAC", + "nomCommune": "ASTAILLAC" }, { - "codePostal": "51520", - "codeCommune": "51504", - "libelleAcheminement": "ST MARTIN SUR LE PRE", - "nomCommune": "ST MARTIN SUR LE PRE" + "codePostal": "04700", + "codeCommune": "04156", + "libelleAcheminement": "PUIMICHEL", + "nomCommune": "PUIMICHEL" }, { - "codePostal": "09190", - "codeCommune": "09268", - "libelleAcheminement": "ST LIZIER", - "nomCommune": "ST LIZIER" + "codePostal": "07570", + "codeCommune": "07114", + "libelleAcheminement": "LABATIE D ANDAURE", + "nomCommune": "LABATIE D ANDAURE" }, { - "codePostal": "11230", - "codeCommune": "11249", - "libelleAcheminement": "MONTJARDIN", - "nomCommune": "MONTJARDIN" + "codePostal": "18220", + "codeCommune": "18235", + "libelleAcheminement": "STE SOLANGE", + "nomCommune": "STE SOLANGE" }, { - "codePostal": "51300", - "codeCommune": "51510", - "libelleAcheminement": "ST QUENTIN LES MARAIS", - "nomCommune": "ST QUENTIN LES MARAIS" + "codePostal": "19430", + "codeCommune": "19017", + "libelleAcheminement": "BASSIGNAC LE BAS", + "nomCommune": "BASSIGNAC LE BAS" }, { - "codePostal": "09000", - "codeCommune": "09269", - "libelleAcheminement": "ST MARTIN DE CARALP", - "nomCommune": "ST MARTIN DE CARALP" + "codePostal": "04340", + "codeCommune": "04161", + "libelleAcheminement": "MEOLANS REVEL", + "nomCommune": "MEOLANS REVEL" }, { - "codePostal": "11320", - "codeCommune": "11252", - "libelleAcheminement": "MONTMAUR", - "nomCommune": "MONTMAUR" + "codePostal": "07530", + "codeCommune": "07120", + "libelleAcheminement": "LACHAMP RAPHAEL", + "nomCommune": "LACHAMP RAPHAEL" }, { - "codePostal": "51120", - "codeCommune": "51514", - "libelleAcheminement": "ST REMY SOUS BROYES", - "nomCommune": "ST REMY SOUS BROYES" + "codePostal": "18240", + "codeCommune": "18246", + "libelleAcheminement": "SAVIGNY EN SANCERRE", + "nomCommune": "SAVIGNY EN SANCERRE" }, { - "codePostal": "09800", - "codeCommune": "09279", - "libelleAcheminement": "SALSEIN", - "nomCommune": "SALSEIN" + "codePostal": "19390", + "codeCommune": "19020", + "libelleAcheminement": "BEAUMONT", + "nomCommune": "BEAUMONT" }, { - "codePostal": "11800", - "codeCommune": "11257", - "libelleAcheminement": "MONZE", - "nomCommune": "MONZE" + "codePostal": "04340", + "codeCommune": "04161", + "libelleAcheminement": "MEOLANS REVEL", + "nomCommune": "MEOLANS REVEL" }, { - "codePostal": "51600", - "codeCommune": "51515", - "libelleAcheminement": "ST REMY SUR BUSSY", - "nomCommune": "ST REMY SUR BUSSY" + "codePostal": "07470", + "codeCommune": "07121", + "libelleAcheminement": "LACHAPELLE GRAILLOUSE", + "nomCommune": "LACHAPELLE GRAILLOUSE" }, { - "codePostal": "09400", - "codeCommune": "09280", - "libelleAcheminement": "SAURAT", - "nomCommune": "SAURAT" + "codePostal": "18390", + "codeCommune": "18247", + "libelleAcheminement": "SAVIGNY EN SEPTAINE", + "nomCommune": "SAVIGNY EN SEPTAINE" }, { - "codePostal": "11120", - "codeCommune": "11258", - "libelleAcheminement": "MOUSSAN", - "nomCommune": "MOUSSAN" + "codePostal": "19170", + "codeCommune": "19033", + "libelleAcheminement": "BUGEAT", + "nomCommune": "BUGEAT" }, { - "codePostal": "51520", - "codeCommune": "51525", - "libelleAcheminement": "SARRY", - "nomCommune": "SARRY" + "codePostal": "04340", + "codeCommune": "04161", + "libelleAcheminement": "MEOLANS REVEL", + "nomCommune": "MEOLANS REVEL" }, { - "codePostal": "09120", - "codeCommune": "09284", - "libelleAcheminement": "SEGURA", - "nomCommune": "SEGURA" + "codePostal": "07110", + "codeCommune": "07134", + "libelleAcheminement": "LAURAC EN VIVARAIS", + "nomCommune": "LAURAC EN VIVARAIS" }, { - "codePostal": "11500", - "codeCommune": "11263", - "libelleAcheminement": "NEBIAS", - "nomCommune": "NEBIAS" + "codePostal": "18350", + "codeCommune": "18260", + "libelleAcheminement": "TENDRON", + "nomCommune": "TENDRON" }, { - "codePostal": "51340", - "codeCommune": "51528", - "libelleAcheminement": "SCRUPT", - "nomCommune": "SCRUPT" + "codePostal": "19370", + "codeCommune": "19036", + "libelleAcheminement": "CHAMBERET", + "nomCommune": "CHAMBERET" }, { - "codePostal": "09800", - "codeCommune": "09290", - "libelleAcheminement": "SENTEIN", - "nomCommune": "SENTEIN" + "codePostal": "04150", + "codeCommune": "04163", + "libelleAcheminement": "REVEST DU BION", + "nomCommune": "REVEST DU BION" }, { - "codePostal": "11270", - "codeCommune": "11268", - "libelleAcheminement": "ORSANS", - "nomCommune": "ORSANS" + "codePostal": "07530", + "codeCommune": "07139", + "libelleAcheminement": "LAVIOLLE", + "nomCommune": "LAVIOLLE" }, { - "codePostal": "51520", - "codeCommune": "51538", - "libelleAcheminement": "SOGNY AUX MOULINS", - "nomCommune": "SOGNY AUX MOULINS" + "codePostal": "18190", + "codeCommune": "18270", + "libelleAcheminement": "VALLENAY", + "nomCommune": "VALLENAY" }, { - "codePostal": "09140", - "codeCommune": "09291", - "libelleAcheminement": "SENTENAC D OUST", - "nomCommune": "SENTENAC D OUST" + "codePostal": "19320", + "codeCommune": "19040", + "libelleAcheminement": "CHAMPAGNAC LA PRUNE", + "nomCommune": "CHAMPAGNAC LA PRUNE" }, { - "codePostal": "11590", - "codeCommune": "11269", - "libelleAcheminement": "OUVEILLAN", - "nomCommune": "OUVEILLAN" + "codePostal": "04170", + "codeCommune": "04173", + "libelleAcheminement": "ST ANDRE LES ALPES", + "nomCommune": "ST ANDRE LES ALPES" }, { - "codePostal": "51600", - "codeCommune": "51546", - "libelleAcheminement": "SOMME SUIPPE", - "nomCommune": "SOMME SUIPPE" + "codePostal": "07200", + "codeCommune": "07141", + "libelleAcheminement": "LENTILLERES", + "nomCommune": "LENTILLERES" }, { - "codePostal": "09000", - "codeCommune": "09293", - "libelleAcheminement": "SERRES SUR ARGET", - "nomCommune": "SERRES SUR ARGET" + "codePostal": "18110", + "codeCommune": "18271", + "libelleAcheminement": "VASSELAY", + "nomCommune": "VASSELAY" }, { - "codePostal": "11330", - "codeCommune": "11271", - "libelleAcheminement": "PALAIRAC", - "nomCommune": "PALAIRAC" + "codePostal": "19120", + "codeCommune": "19044", + "libelleAcheminement": "LA CHAPELLE AUX SAINTS", + "nomCommune": "LA CHAPELLE AUX SAINTS" }, { - "codePostal": "51330", - "codeCommune": "51549", - "libelleAcheminement": "SOMME YEVRE", - "nomCommune": "SOMME YEVRE" + "codePostal": "04500", + "codeCommune": "04176", + "libelleAcheminement": "STE CROIX DU VERDON", + "nomCommune": "STE CROIX DU VERDON" }, { - "codePostal": "09130", - "codeCommune": "09294", - "libelleAcheminement": "SIEURAS", - "nomCommune": "SIEURAS" + "codePostal": "07140", + "codeCommune": "07147", + "libelleAcheminement": "MALARCE SUR LA THINES", + "nomCommune": "MALARCE SUR LA THINES" }, { - "codePostal": "11200", - "codeCommune": "11273", - "libelleAcheminement": "PARAZA", - "nomCommune": "PARAZA" + "codePostal": "18210", + "codeCommune": "18276", + "libelleAcheminement": "VERNAIS", + "nomCommune": "VERNAIS" }, { - "codePostal": "51320", - "codeCommune": "51550", - "libelleAcheminement": "SOMPUIS", - "nomCommune": "SOMPUIS" + "codePostal": "19500", + "codeCommune": "19050", + "libelleAcheminement": "CHAUFFOUR SUR VELL", + "nomCommune": "CHAUFFOUR SUR VELL" }, { - "codePostal": "09310", - "codeCommune": "09296", - "libelleAcheminement": "AULOS SINSAT", - "nomCommune": "AULOS SINSAT" + "codePostal": "04870", + "codeCommune": "04192", + "libelleAcheminement": "ST MICHEL L OBSERVATOIRE", + "nomCommune": "ST MICHEL L OBSERVATOIRE" }, { - "codePostal": "11610", - "codeCommune": "11279", - "libelleAcheminement": "PENNAUTIER", - "nomCommune": "PENNAUTIER" + "codePostal": "07190", + "codeCommune": "07149", + "libelleAcheminement": "MARCOLS LES EAUX", + "nomCommune": "MARCOLS LES EAUX" }, { - "codePostal": "51130", - "codeCommune": "51558", - "libelleAcheminement": "SOULIERES", - "nomCommune": "SOULIERES" + "codePostal": "18210", + "codeCommune": "18277", + "libelleAcheminement": "VERNEUIL", + "nomCommune": "VERNEUIL" }, { - "codePostal": "09000", - "codeCommune": "09300", - "libelleAcheminement": "SOULA", - "nomCommune": "SOULA" + "codePostal": "19200", + "codeCommune": "19053", + "libelleAcheminement": "CHAVEROCHE", + "nomCommune": "CHAVEROCHE" }, { - "codePostal": "11160", - "codeCommune": "11286", - "libelleAcheminement": "PEYRIAC MINERVOIS", - "nomCommune": "PEYRIAC MINERVOIS" + "codePostal": "04530", + "codeCommune": "04193", + "libelleAcheminement": "ST PAUL SUR UBAYE", + "nomCommune": "ST PAUL SUR UBAYE" }, { - "codePostal": "51270", - "codeCommune": "51563", - "libelleAcheminement": "TALUS ST PRIX", - "nomCommune": "TALUS ST PRIX" + "codePostal": "07510", + "codeCommune": "07154", + "libelleAcheminement": "MAZAN L ABBAYE", + "nomCommune": "MAZAN L ABBAYE" }, { - "codePostal": "09600", - "codeCommune": "09305", - "libelleAcheminement": "TABRE", - "nomCommune": "TABRE" + "codePostal": "18260", + "codeCommune": "18284", + "libelleAcheminement": "VILLEGENON", + "nomCommune": "VILLEGENON" }, { - "codePostal": "11270", - "codeCommune": "11291", - "libelleAcheminement": "PLAVILLA", - "nomCommune": "PLAVILLA" + "codePostal": "19160", + "codeCommune": "19055", + "libelleAcheminement": "CHIRAC BELLEVUE", + "nomCommune": "CHIRAC BELLEVUE" }, { - "codePostal": "51300", - "codeCommune": "51602", - "libelleAcheminement": "VAVRAY LE PETIT", - "nomCommune": "VAVRAY LE PETIT" + "codePostal": "04270", + "codeCommune": "04204", + "libelleAcheminement": "SENEZ", + "nomCommune": "SENEZ" }, { - "codePostal": "09400", - "codeCommune": "09306", - "libelleAcheminement": "TARASCON SUR ARIEGE", - "nomCommune": "TARASCON SUR ARIEGE" + "codePostal": "07110", + "codeCommune": "07162", + "libelleAcheminement": "MONTREAL", + "nomCommune": "MONTREAL" }, { - "codePostal": "11120", - "codeCommune": "11296", - "libelleAcheminement": "POUZOLS MINERVOIS", - "nomCommune": "POUZOLS MINERVOIS" + "codePostal": "18400", + "codeCommune": "18285", + "libelleAcheminement": "VILLENEUVE SUR CHER", + "nomCommune": "VILLENEUVE SUR CHER" }, { - "codePostal": "51800", - "codeCommune": "51610", - "libelleAcheminement": "VERRIERES", - "nomCommune": "VERRIERES" + "codePostal": "19150", + "codeCommune": "19061", + "libelleAcheminement": "CORNIL", + "nomCommune": "CORNIL" }, { - "codePostal": "09190", - "codeCommune": "09308", - "libelleAcheminement": "TAURIGNAN VIEUX", - "nomCommune": "TAURIGNAN VIEUX" + "codePostal": "04380", + "codeCommune": "04217", + "libelleAcheminement": "THOARD", + "nomCommune": "THOARD" }, { - "codePostal": "11250", - "codeCommune": "11299", - "libelleAcheminement": "PREIXAN", - "nomCommune": "PREIXAN" + "codePostal": "07160", + "codeCommune": "07165", + "libelleAcheminement": "BELSENTES", + "nomCommune": "BELSENTES" }, { - "codePostal": "51130", - "codeCommune": "51612", - "libelleAcheminement": "BLANCS COTEAUX", - "nomCommune": "BLANCS COTEAUX" + "codePostal": "19260", + "codeCommune": "19001", + "libelleAcheminement": "AFFIEUX", + "nomCommune": "AFFIEUX" }, { - "codePostal": "09500", - "codeCommune": "09309", - "libelleAcheminement": "TEILHET", - "nomCommune": "TEILHET" + "codePostal": "19360", + "codeCommune": "19063", + "libelleAcheminement": "COSNAC", + "nomCommune": "COSNAC" }, { - "codePostal": "11400", - "codeCommune": "11300", - "libelleAcheminement": "PUGINIER", - "nomCommune": "PUGINIER" + "codePostal": "04170", + "codeCommune": "04219", + "libelleAcheminement": "THORAME HAUTE", + "nomCommune": "THORAME HAUTE" }, { - "codePostal": "51190", - "codeCommune": "51612", - "libelleAcheminement": "BLANCS COTEAUX", - "nomCommune": "BLANCS COTEAUX" + "codePostal": "07270", + "codeCommune": "07166", + "libelleAcheminement": "NOZIERES", + "nomCommune": "NOZIERES" }, { - "codePostal": "09110", - "codeCommune": "09311", - "libelleAcheminement": "TIGNAC", - "nomCommune": "TIGNAC" + "codePostal": "19240", + "codeCommune": "19005", + "libelleAcheminement": "ALLASSAC", + "nomCommune": "ALLASSAC" }, { - "codePostal": "11170", - "codeCommune": "11308", - "libelleAcheminement": "RAISSAC SUR LAMPY", - "nomCommune": "RAISSAC SUR LAMPY" + "codePostal": "19360", + "codeCommune": "19068", + "libelleAcheminement": "DAMPNIAT", + "nomCommune": "DAMPNIAT" }, { - "codePostal": "51800", - "codeCommune": "51621", - "libelleAcheminement": "VIENNE LE CHATEAU", - "nomCommune": "VIENNE LE CHATEAU" + "codePostal": "04400", + "codeCommune": "04220", + "libelleAcheminement": "LES THUILES", + "nomCommune": "LES THUILES" }, { - "codePostal": "09230", - "codeCommune": "09313", - "libelleAcheminement": "TOURTOUSE", - "nomCommune": "TOURTOUSE" + "codePostal": "07370", + "codeCommune": "07169", + "libelleAcheminement": "OZON", + "nomCommune": "OZON" }, { - "codePostal": "11380", - "codeCommune": "11319", - "libelleAcheminement": "ROQUEFERE", - "nomCommune": "ROQUEFERE" + "codePostal": "19200", + "codeCommune": "19006", + "libelleAcheminement": "ALLEYRAT", + "nomCommune": "ALLEYRAT" }, { - "codePostal": "51390", - "codeCommune": "51622", - "libelleAcheminement": "VILLE DOMMANGE", - "nomCommune": "VILLE DOMMANGE" + "codePostal": "19140", + "codeCommune": "19079", + "libelleAcheminement": "EYBURIE", + "nomCommune": "EYBURIE" }, { - "codePostal": "09500", - "codeCommune": "09316", - "libelleAcheminement": "TROYE D ARIEGE", - "nomCommune": "TROYE D ARIEGE" + "codePostal": "04240", + "codeCommune": "04224", + "libelleAcheminement": "UBRAYE", + "nomCommune": "UBRAYE" }, { - "codePostal": "11340", - "codeCommune": "11320", - "libelleAcheminement": "ROQUEFEUIL", - "nomCommune": "ROQUEFEUIL" + "codePostal": "07410", + "codeCommune": "07170", + "libelleAcheminement": "PAILHARES", + "nomCommune": "PAILHARES" }, { - "codePostal": "51500", - "codeCommune": "51623", - "libelleAcheminement": "VILLE EN SELVE", - "nomCommune": "VILLE EN SELVE" + "codePostal": "19320", + "codeCommune": "19010", + "libelleAcheminement": "ARGENTAT SUR DORDOGNE", + "nomCommune": "ARGENTAT SUR DORDOGNE" }, { - "codePostal": "09400", - "codeCommune": "09321", - "libelleAcheminement": "USSAT", - "nomCommune": "USSAT" + "codePostal": "19800", + "codeCommune": "19081", + "libelleAcheminement": "EYREIN", + "nomCommune": "EYREIN" }, { - "codePostal": "11540", - "codeCommune": "11322", - "libelleAcheminement": "ROQUEFORT DES CORBIERES", - "nomCommune": "ROQUEFORT DES CORBIERES" + "codePostal": "04250", + "codeCommune": "04228", + "libelleAcheminement": "VALAVOIRE", + "nomCommune": "VALAVOIRE" }, { - "codePostal": "51120", - "codeCommune": "51628", - "libelleAcheminement": "VILLENEUVE ST VISTRE VILLEVOTTE", - "nomCommune": "VILLENEUVE ST VISTRE ET VILLEVOTTE" + "codePostal": "07340", + "codeCommune": "07174", + "libelleAcheminement": "PEYRAUD", + "nomCommune": "PEYRAUD" }, { - "codePostal": "09310", - "codeCommune": "09326", - "libelleAcheminement": "VEBRE", - "nomCommune": "VEBRE" + "codePostal": "19400", + "codeCommune": "19010", + "libelleAcheminement": "ARGENTAT SUR DORDOGNE", + "nomCommune": "ARGENTAT SUR DORDOGNE" }, { - "codePostal": "11230", - "codeCommune": "11336", - "libelleAcheminement": "STE COLOMBE SUR L HERS", - "nomCommune": "STE COLOMBE SUR L HERS" + "codePostal": "19340", + "codeCommune": "19083", + "libelleAcheminement": "FEYT", + "nomCommune": "FEYT" }, { - "codePostal": "51500", - "codeCommune": "51631", - "libelleAcheminement": "VILLERS AUX NOEUDS", - "nomCommune": "VILLERS AUX NOEUDS" + "codePostal": "05130", + "codeCommune": "04234", + "libelleAcheminement": "VENTEROL", + "nomCommune": "VENTEROL" }, { - "codePostal": "09220", - "codeCommune": "09334", - "libelleAcheminement": "VAL DE SOS", - "nomCommune": "VAL DE SOS" + "codePostal": "07380", + "codeCommune": "07182", + "libelleAcheminement": "PRADES", + "nomCommune": "PRADES" }, { - "codePostal": "11500", - "codeCommune": "11350", - "libelleAcheminement": "ST JUST ET LE BEZU", - "nomCommune": "ST JUST ET LE BEZU" + "codePostal": "19190", + "codeCommune": "19023", + "libelleAcheminement": "BEYNAT", + "nomCommune": "BEYNAT" }, { - "codePostal": "51260", - "codeCommune": "51642", - "libelleAcheminement": "VILLIERS AUX CORNEILLES", - "nomCommune": "VILLIERS AUX CORNEILLES" + "codePostal": "19400", + "codeCommune": "19091", + "libelleAcheminement": "HAUTEFAGE", + "nomCommune": "HAUTEFAGE" }, { - "codePostal": "09800", - "codeCommune": "09335", - "libelleAcheminement": "VILLENEUVE", - "nomCommune": "VILLENEUVE" + "codePostal": "04140", + "codeCommune": "04237", + "libelleAcheminement": "LE VERNET", + "nomCommune": "LE VERNET" }, { - "codePostal": "11220", - "codeCommune": "11351", - "libelleAcheminement": "ST LAURENT DE LA CABRERISSE", - "nomCommune": "ST LAURENT DE LA CABRERISSE" + "codePostal": "07110", + "codeCommune": "07187", + "libelleAcheminement": "PRUNET", + "nomCommune": "PRUNET" }, { - "codePostal": "51260", - "codeCommune": "51652", - "libelleAcheminement": "VOUARCES", - "nomCommune": "VOUARCES" + "codePostal": "19330", + "codeCommune": "19038", + "libelleAcheminement": "CHAMEYRAT", + "nomCommune": "CHAMEYRAT" }, { - "codePostal": "09300", - "codeCommune": "09336", - "libelleAcheminement": "VILLENEUVE D OLMES", - "nomCommune": "VILLENEUVE D OLMES" + "codePostal": "19150", + "codeCommune": "19098", + "libelleAcheminement": "LAGARDE MARC LA TOUR", + "nomCommune": "LAGARDE MARC LA TOUR" }, { - "codePostal": "11400", - "codeCommune": "11356", - "libelleAcheminement": "ST MARTIN LALANDE", - "nomCommune": "ST MARTIN LALANDE" + "codePostal": "04110", + "codeCommune": "04241", + "libelleAcheminement": "VILLEMUS", + "nomCommune": "VILLEMUS" }, { - "codePostal": "51340", - "codeCommune": "51654", - "libelleAcheminement": "VOUILLERS", - "nomCommune": "VOUILLERS" + "codePostal": "07260", + "codeCommune": "07189", + "libelleAcheminement": "RIBES", + "nomCommune": "RIBES" }, { - "codePostal": "10200", - "codeCommune": "10011", - "libelleAcheminement": "ARRENTIERES", - "nomCommune": "ARRENTIERES" + "codePostal": "19150", + "codeCommune": "19041", + "libelleAcheminement": "CHANAC LES MINES", + "nomCommune": "CHANAC LES MINES" }, { - "codePostal": "11500", - "codeCommune": "11358", - "libelleAcheminement": "ST MARTIN LYS", - "nomCommune": "ST MARTIN LYS" + "codePostal": "19340", + "codeCommune": "19103", + "libelleAcheminement": "LAMAZIERE HAUTE", + "nomCommune": "LAMAZIERE HAUTE" }, { - "codePostal": "51330", - "codeCommune": "51658", - "libelleAcheminement": "VROIL", - "nomCommune": "VROIL" + "codePostal": "05260", + "codeCommune": "05004", + "libelleAcheminement": "ANCELLE", + "nomCommune": "ANCELLE" }, { - "codePostal": "10130", - "codeCommune": "10018", - "libelleAcheminement": "AUXON", - "nomCommune": "AUXON" + "codePostal": "07400", + "codeCommune": "07191", + "libelleAcheminement": "ROCHEMAURE", + "nomCommune": "ROCHEMAURE" }, { - "codePostal": "11400", - "codeCommune": "11361", - "libelleAcheminement": "ST PAPOUL", - "nomCommune": "ST PAPOUL" + "codePostal": "19300", + "codeCommune": "19046", + "libelleAcheminement": "CHAPELLE SPINASSE", + "nomCommune": "CHAPELLE SPINASSE" }, { - "codePostal": "51420", - "codeCommune": "51662", - "libelleAcheminement": "WITRY LES REIMS", - "nomCommune": "WITRY LES REIMS" + "codePostal": "19200", + "codeCommune": "19114", + "libelleAcheminement": "LIGNAREIX", + "nomCommune": "LIGNAREIX" }, { - "codePostal": "10220", - "codeCommune": "10019", - "libelleAcheminement": "VAL D AUZON", - "nomCommune": "VAL D AUZON" + "codePostal": "05350", + "codeCommune": "05007", + "libelleAcheminement": "ARVIEUX", + "nomCommune": "ARVIEUX" }, { - "codePostal": "11420", - "codeCommune": "11365", - "libelleAcheminement": "ST SERNIN", - "nomCommune": "ST SERNIN" + "codePostal": "07110", + "codeCommune": "07193", + "libelleAcheminement": "ROCHER", + "nomCommune": "ROCHER" }, { - "codePostal": "52250", - "codeCommune": "52014", - "libelleAcheminement": "APREY", - "nomCommune": "APREY" + "codePostal": "19600", + "codeCommune": "19047", + "libelleAcheminement": "CHARTRIER FERRIERE", + "nomCommune": "CHARTRIER FERRIERE" }, { - "codePostal": "10340", - "codeCommune": "10022", - "libelleAcheminement": "AVIREY LINGEY", - "nomCommune": "AVIREY LINGEY" + "codePostal": "19600", + "codeCommune": "19117", + "libelleAcheminement": "LISSAC SUR COUZE", + "nomCommune": "LISSAC SUR COUZE" }, { - "codePostal": "11330", - "codeCommune": "11374", - "libelleAcheminement": "SALZA", - "nomCommune": "SALZA" + "codePostal": "05700", + "codeCommune": "05016", + "libelleAcheminement": "LA BATIE MONTSALEON", + "nomCommune": "LA BATIE MONTSALEON" }, { - "codePostal": "52210", - "codeCommune": "52017", - "libelleAcheminement": "ARC EN BARROIS", - "nomCommune": "ARC EN BARROIS" + "codePostal": "07310", + "codeCommune": "07195", + "libelleAcheminement": "LA ROCHETTE", + "nomCommune": "LA ROCHETTE" }, { - "codePostal": "10110", - "codeCommune": "10029", - "libelleAcheminement": "BALNOT SUR LAIGNES", - "nomCommune": "BALNOT SUR LAIGNES" + "codePostal": "19500", + "codeCommune": "19057", + "libelleAcheminement": "COLLONGES LA ROUGE", + "nomCommune": "COLLONGES LA ROUGE" }, { - "codePostal": "11220", - "codeCommune": "11378", - "libelleAcheminement": "SERVIES EN VAL", - "nomCommune": "SERVIES EN VAL" + "codePostal": "19500", + "codeCommune": "19119", + "libelleAcheminement": "LOSTANGES", + "nomCommune": "LOSTANGES" }, { - "codePostal": "52240", - "codeCommune": "52025", - "libelleAcheminement": "AUDELONCOURT", - "nomCommune": "AUDELONCOURT" + "codePostal": "05140", + "codeCommune": "05019", + "libelleAcheminement": "LA BEAUME", + "nomCommune": "LA BEAUME" }, { - "codePostal": "10400", - "codeCommune": "10031", - "libelleAcheminement": "BARBUISE", - "nomCommune": "BARBUISE" + "codePostal": "07260", + "codeCommune": "07199", + "libelleAcheminement": "ROSIERES", + "nomCommune": "ROSIERES" }, { - "codePostal": "11220", - "codeCommune": "11392", - "libelleAcheminement": "TOURNISSAN", - "nomCommune": "TOURNISSAN" + "codePostal": "19350", + "codeCommune": "19059", + "libelleAcheminement": "CONCEZE", + "nomCommune": "CONCEZE" }, { - "codePostal": "52120", - "codeCommune": "52031", - "libelleAcheminement": "AUTREVILLE SUR LA RENNE", - "nomCommune": "AUTREVILLE SUR LA RENNE" + "codePostal": "19470", + "codeCommune": "19122", + "libelleAcheminement": "MADRANGES", + "nomCommune": "MADRANGES" }, { - "codePostal": "10130", - "codeCommune": "10040", - "libelleAcheminement": "BERNON", - "nomCommune": "BERNON" + "codePostal": "05260", + "codeCommune": "05032", + "libelleAcheminement": "CHAMPOLEON", + "nomCommune": "CHAMPOLEON" }, { - "codePostal": "11230", - "codeCommune": "11400", - "libelleAcheminement": "TREZIERS", - "nomCommune": "TREZIERS" + "codePostal": "07120", + "codeCommune": "07207", + "libelleAcheminement": "ST ALBAN AURIOLLES", + "nomCommune": "ST ALBAN AURIOLLES" }, { - "codePostal": "52120", - "codeCommune": "52031", - "libelleAcheminement": "AUTREVILLE SUR LA RENNE", - "nomCommune": "AUTREVILLE SUR LA RENNE" + "codePostal": "19220", + "codeCommune": "19069", + "libelleAcheminement": "DARAZAC", + "nomCommune": "DARAZAC" }, { - "codePostal": "10110", - "codeCommune": "10041", - "libelleAcheminement": "BERTIGNOLLES", - "nomCommune": "BERTIGNOLLES" + "codePostal": "19320", + "codeCommune": "19125", + "libelleAcheminement": "MARCILLAC LA CROISILLE", + "nomCommune": "MARCILLAC LA CROISILLE" }, { - "codePostal": "11120", - "codeCommune": "11405", - "libelleAcheminement": "VENTENAC EN MINERVOIS", - "nomCommune": "VENTENAC EN MINERVOIS" + "codePostal": "05400", + "codeCommune": "05035", + "libelleAcheminement": "CHATEAUNEUF D OZE", + "nomCommune": "CHATEAUNEUF D OZE" }, { - "codePostal": "52130", - "codeCommune": "52034", - "libelleAcheminement": "BAILLY AUX FORGES", - "nomCommune": "BAILLY AUX FORGES" + "codePostal": "07120", + "codeCommune": "07207", + "libelleAcheminement": "ST ALBAN AURIOLLES", + "nomCommune": "ST ALBAN AURIOLLES" }, { - "codePostal": "10160", - "codeCommune": "10042", - "libelleAcheminement": "BERULLE", - "nomCommune": "BERULLE" + "codePostal": "19170", + "codeCommune": "19074", + "libelleAcheminement": "L EGLISE AUX BOIS", + "nomCommune": "L EGLISE AUX BOIS" }, { - "codePostal": "11580", - "codeCommune": "11406", - "libelleAcheminement": "VERAZA", - "nomCommune": "VERAZA" + "codePostal": "19160", + "codeCommune": "19148", + "libelleAcheminement": "NEUVIC", + "nomCommune": "NEUVIC" }, { - "codePostal": "52160", - "codeCommune": "52040", - "libelleAcheminement": "BAY SUR AUBE", - "nomCommune": "BAY SUR AUBE" + "codePostal": "05380", + "codeCommune": "05036", + "libelleAcheminement": "CHATEAUROUX LES ALPES", + "nomCommune": "CHATEAUROUX LES ALPES" }, { - "codePostal": "10170", - "codeCommune": "10043", - "libelleAcheminement": "BESSY", - "nomCommune": "BESSY" + "codePostal": "07600", + "codeCommune": "07210", + "libelleAcheminement": "ST ANDEOL DE VALS", + "nomCommune": "ST ANDEOL DE VALS" }, { - "codePostal": "11600", - "codeCommune": "11411", - "libelleAcheminement": "VILLANIERE", - "nomCommune": "VILLANIERE" + "codePostal": "19300", + "codeCommune": "19088", + "libelleAcheminement": "GRANDSAIGNE", + "nomCommune": "GRANDSAIGNE" }, { - "codePostal": "52500", - "codeCommune": "52043", - "libelleAcheminement": "BELMONT", - "nomCommune": "BELMONT" + "codePostal": "19600", + "codeCommune": "19151", + "libelleAcheminement": "NOAILLES", + "nomCommune": "NOAILLES" }, { - "codePostal": "10140", - "codeCommune": "10045", - "libelleAcheminement": "BEUREY", - "nomCommune": "BEUREY" + "codePostal": "05500", + "codeCommune": "05039", + "libelleAcheminement": "AUBESSAGNE", + "nomCommune": "AUBESSAGNE" }, { - "codePostal": "11600", - "codeCommune": "11413", - "libelleAcheminement": "VILLARDONNEL", - "nomCommune": "VILLARDONNEL" + "codePostal": "07230", + "codeCommune": "07213", + "libelleAcheminement": "ST ANDRE LACHAMP", + "nomCommune": "ST ANDRE LACHAMP" }, { - "codePostal": "52100", - "codeCommune": "52045", - "libelleAcheminement": "BETTANCOURT LA FERREE", - "nomCommune": "BETTANCOURT LA FERREE" + "codePostal": "19320", + "codeCommune": "19090", + "libelleAcheminement": "GUMOND", + "nomCommune": "GUMOND" }, { - "codePostal": "10380", - "codeCommune": "10052", - "libelleAcheminement": "BOULAGES", - "nomCommune": "BOULAGES" + "codePostal": "19130", + "codeCommune": "19153", + "libelleAcheminement": "OBJAT", + "nomCommune": "OBJAT" }, { - "codePostal": "11200", - "codeCommune": "11421", - "libelleAcheminement": "VILLEDAIGNE", - "nomCommune": "VILLEDAIGNE" + "codePostal": "05800", + "codeCommune": "05039", + "libelleAcheminement": "AUBESSAGNE", + "nomCommune": "AUBESSAGNE" }, { - "codePostal": "52500", - "codeCommune": "52051", - "libelleAcheminement": "BIZE", - "nomCommune": "BIZE" + "codePostal": "07240", + "codeCommune": "07214", + "libelleAcheminement": "ST APOLLINAIRE DE RIAS", + "nomCommune": "ST APOLLINAIRE DE RIAS" }, { - "codePostal": "10220", - "codeCommune": "10056", - "libelleAcheminement": "BOUY LUXEMBOURG", - "nomCommune": "BOUY LUXEMBOURG" + "codePostal": "19170", + "codeCommune": "19095", + "libelleAcheminement": "LACELLE", + "nomCommune": "LACELLE" }, { - "codePostal": "11170", - "codeCommune": "11439", - "libelleAcheminement": "VILLESPY", - "nomCommune": "VILLESPY" + "codePostal": "19500", + "codeCommune": "19179", + "libelleAcheminement": "SAILLAC", + "nomCommune": "SAILLAC" }, { - "codePostal": "52310", - "codeCommune": "52058", - "libelleAcheminement": "BOLOGNE", - "nomCommune": "BOLOGNE" + "codePostal": "05300", + "codeCommune": "05053", + "libelleAcheminement": "GARDE COLOMBE", + "nomCommune": "GARDE COLOMBE" }, { - "codePostal": "10340", - "codeCommune": "10058", - "libelleAcheminement": "BRAGELOGNE BEAUVOIR", - "nomCommune": "BRAGELOGNE BEAUVOIR" + "codePostal": "07510", + "codeCommune": "07224", + "libelleAcheminement": "ST CIRGUES EN MONTAGNE", + "nomCommune": "ST CIRGUES EN MONTAGNE" }, { - "codePostal": "12300", - "codeCommune": "12004", - "libelleAcheminement": "ALMONT LES JUNIES", - "nomCommune": "ALMONT LES JUNIES" + "codePostal": "19150", + "codeCommune": "19098", + "libelleAcheminement": "LAGARDE MARC LA TOUR", + "nomCommune": "LAGARDE MARC LA TOUR" }, { - "codePostal": "52240", - "codeCommune": "52074", - "libelleAcheminement": "BREUVANNES EN BASSIGNY", - "nomCommune": "BREUVANNES EN BASSIGNY" + "codePostal": "19410", + "codeCommune": "19188", + "libelleAcheminement": "ST BONNET L ENFANTIER", + "nomCommune": "ST BONNET L ENFANTIER" }, { - "codePostal": "10130", - "codeCommune": "10074", - "libelleAcheminement": "CHAMOY", - "nomCommune": "CHAMOY" + "codePostal": "05130", + "codeCommune": "05057", + "libelleAcheminement": "FOUILLOUSE", + "nomCommune": "FOUILLOUSE" }, { - "codePostal": "12700", - "codeCommune": "12012", - "libelleAcheminement": "ASPRIERES", - "nomCommune": "ASPRIERES" + "codePostal": "07340", + "codeCommune": "07228", + "libelleAcheminement": "ST DESIRAT", + "nomCommune": "ST DESIRAT" }, { - "codePostal": "52500", - "codeCommune": "52083", - "libelleAcheminement": "CHAMPSEVRAINE", - "nomCommune": "CHAMPSEVRAINE" + "codePostal": "19510", + "codeCommune": "19104", + "libelleAcheminement": "LAMONGERIE", + "nomCommune": "LAMONGERIE" }, { - "codePostal": "10340", - "codeCommune": "10079", - "libelleAcheminement": "CHANNES", - "nomCommune": "CHANNES" + "codePostal": "19380", + "codeCommune": "19192", + "libelleAcheminement": "ST CHAMANT", + "nomCommune": "ST CHAMANT" }, { - "codePostal": "12500", - "codeCommune": "12027", - "libelleAcheminement": "BESSUEJOULS", - "nomCommune": "BESSUEJOULS" + "codePostal": "05000", + "codeCommune": "05059", + "libelleAcheminement": "LA FREISSINOUSE", + "nomCommune": "LA FREISSINOUSE" }, { - "codePostal": "52240", - "codeCommune": "52085", - "libelleAcheminement": "BUXIERES LES CLEFMONT", - "nomCommune": "BUXIERES LES CLEFMONT" + "codePostal": "07200", + "codeCommune": "07229", + "libelleAcheminement": "ST DIDIER SOUS AUBENAS", + "nomCommune": "ST DIDIER SOUS AUBENAS" }, { - "codePostal": "10210", - "codeCommune": "10080", - "libelleAcheminement": "CHAOURCE", - "nomCommune": "CHAOURCE" + "codePostal": "19340", + "codeCommune": "19108", + "libelleAcheminement": "LAROCHE PRES FEYT", + "nomCommune": "LAROCHE PRES FEYT" }, { - "codePostal": "12550", - "codeCommune": "12035", - "libelleAcheminement": "BRASC", - "nomCommune": "BRASC" + "codePostal": "19210", + "codeCommune": "19198", + "libelleAcheminement": "ST ELOY LES TUILERIES", + "nomCommune": "ST ELOY LES TUILERIES" }, { - "codePostal": "52360", - "codeCommune": "52089", - "libelleAcheminement": "CELLES EN BASSIGNY", - "nomCommune": "CELLES EN BASSIGNY" + "codePostal": "05800", + "codeCommune": "05062", + "libelleAcheminement": "LE GLAIZIL", + "nomCommune": "LE GLAIZIL" }, { - "codePostal": "10700", - "codeCommune": "10082", - "libelleAcheminement": "CHAPELLE VALLON", - "nomCommune": "CHAPELLE VALLON" + "codePostal": "07200", + "codeCommune": "07231", + "libelleAcheminement": "ST ETIENNE DE FONTBELLON", + "nomCommune": "ST ETIENNE DE FONTBELLON" }, { - "codePostal": "12360", - "codeCommune": "12039", - "libelleAcheminement": "BRUSQUE", - "nomCommune": "BRUSQUE" + "codePostal": "19130", + "codeCommune": "19109", + "libelleAcheminement": "LASCAUX", + "nomCommune": "LASCAUX" }, { - "codePostal": "52600", - "codeCommune": "52090", - "libelleAcheminement": "CELSOY", - "nomCommune": "CELSOY" + "codePostal": "19200", + "codeCommune": "19201", + "libelleAcheminement": "ST EXUPERY LES ROCHES", + "nomCommune": "ST EXUPERY LES ROCHES" }, { - "codePostal": "10290", - "codeCommune": "10085", - "libelleAcheminement": "CHARMOY", - "nomCommune": "CHARMOY" + "codePostal": "05600", + "codeCommune": "05065", + "libelleAcheminement": "GUILLESTRE", + "nomCommune": "GUILLESTRE" }, { - "codePostal": "12700", - "codeCommune": "12052", - "libelleAcheminement": "CAPDENAC GARE", - "nomCommune": "CAPDENAC GARE" + "codePostal": "07190", + "codeCommune": "07233", + "libelleAcheminement": "ST ETIENNE DE SERRE", + "nomCommune": "ST ETIENNE DE SERRE" }, { - "codePostal": "52160", - "codeCommune": "52092", - "libelleAcheminement": "CHALANCEY", - "nomCommune": "CHALANCEY" + "codePostal": "19550", + "codeCommune": "19111", + "libelleAcheminement": "LAVAL SUR LUZEGE", + "nomCommune": "LAVAL SUR LUZEGE" }, { - "codePostal": "10380", - "codeCommune": "10086", - "libelleAcheminement": "CHARNY LE BACHOT", - "nomCommune": "CHARNY LE BACHOT" + "codePostal": "19160", + "codeCommune": "19210", + "libelleAcheminement": "ST HILAIRE LUC", + "nomCommune": "ST HILAIRE LUC" }, { - "codePostal": "12240", - "codeCommune": "12054", - "libelleAcheminement": "LA CAPELLE BLEYS", - "nomCommune": "LA CAPELLE BLEYS" + "codePostal": "05130", + "codeCommune": "05068", + "libelleAcheminement": "JARJAYES", + "nomCommune": "JARJAYES" }, { - "codePostal": "52160", - "codeCommune": "52094", - "libelleAcheminement": "VALS DES TILLES", - "nomCommune": "VALS DES TILLES" + "codePostal": "07510", + "codeCommune": "07235", + "libelleAcheminement": "STE EULALIE", + "nomCommune": "STE EULALIE" }, { - "codePostal": "10240", - "codeCommune": "10091", - "libelleAcheminement": "CHAUDREY", - "nomCommune": "CHAUDREY" + "codePostal": "19170", + "codeCommune": "19112", + "libelleAcheminement": "LESTARDS", + "nomCommune": "LESTARDS" }, { - "codePostal": "12130", - "codeCommune": "12055", - "libelleAcheminement": "LA CAPELLE BONANCE", - "nomCommune": "LA CAPELLE BONANCE" + "codePostal": "19430", + "codeCommune": "19215", + "libelleAcheminement": "ST JULIEN LE PELERIN", + "nomCommune": "ST JULIEN LE PELERIN" }, { - "codePostal": "52160", - "codeCommune": "52094", - "libelleAcheminement": "VALS DES TILLES", - "nomCommune": "VALS DES TILLES" + "codePostal": "05130", + "codeCommune": "05074", + "libelleAcheminement": "LETTRET", + "nomCommune": "LETTRET" }, { - "codePostal": "10700", - "codeCommune": "10095", - "libelleAcheminement": "LE CHENE", - "nomCommune": "LE CHENE" + "codePostal": "07190", + "codeCommune": "07239", + "libelleAcheminement": "ST GENEST LACHAMP", + "nomCommune": "ST GENEST LACHAMP" }, { - "codePostal": "12160", - "codeCommune": "12056", - "libelleAcheminement": "BARAQUEVILLE", - "nomCommune": "BARAQUEVILLE" + "codePostal": "19310", + "codeCommune": "19120", + "libelleAcheminement": "LOUIGNAC", + "nomCommune": "LOUIGNAC" }, { - "codePostal": "52150", - "codeCommune": "52101", - "libelleAcheminement": "CHAMPIGNEULLES EN BASSIGNY", - "nomCommune": "CHAMPIGNEULLES EN BASSIGNY" + "codePostal": "19400", + "codeCommune": "19221", + "libelleAcheminement": "ST MARTIAL ENTRAYGUES", + "nomCommune": "ST MARTIAL ENTRAYGUES" }, { - "codePostal": "10110", - "codeCommune": "10097", - "libelleAcheminement": "CHERVEY", - "nomCommune": "CHERVEY" + "codePostal": "05110", + "codeCommune": "05078", + "libelleAcheminement": "MONETIER ALLEMONT", + "nomCommune": "MONETIER ALLEMONT" }, { - "codePostal": "12240", - "codeCommune": "12059", - "libelleAcheminement": "CASTANET", - "nomCommune": "CASTANET" + "codePostal": "07300", + "codeCommune": "07245", + "libelleAcheminement": "ST JEAN DE MUZOLS", + "nomCommune": "ST JEAN DE MUZOLS" }, { - "codePostal": "52100", - "codeCommune": "52104", - "libelleAcheminement": "CHANCENAY", - "nomCommune": "CHANCENAY" + "codePostal": "19360", + "codeCommune": "19123", + "libelleAcheminement": "MALEMORT", + "nomCommune": "MALEMORT" }, { - "codePostal": "10200", - "codeCommune": "10102", - "libelleAcheminement": "COLOMBE LA FOSSE", - "nomCommune": "COLOMBE LA FOSSE" + "codePostal": "19320", + "codeCommune": "19231", + "libelleAcheminement": "ST PARDOUX LA CROISILLE", + "nomCommune": "ST PARDOUX LA CROISILLE" }, { - "codePostal": "12500", - "codeCommune": "12064", - "libelleAcheminement": "LE CAYROL", - "nomCommune": "LE CAYROL" + "codePostal": "05220", + "codeCommune": "05079", + "libelleAcheminement": "LE MONETIER LES BAINS", + "nomCommune": "LE MONETIER LES BAINS" }, { - "codePostal": "52700", - "codeCommune": "52107", - "libelleAcheminement": "CHANTRAINES", - "nomCommune": "CHANTRAINES" + "codePostal": "07530", + "codeCommune": "07251", + "libelleAcheminement": "ST JOSEPH DES BANCS", + "nomCommune": "ST JOSEPH DES BANCS" }, { - "codePostal": "10800", - "codeCommune": "10104", - "libelleAcheminement": "CORMOST", - "nomCommune": "CORMOST" + "codePostal": "19510", + "codeCommune": "19131", + "libelleAcheminement": "MEILHARDS", + "nomCommune": "MEILHARDS" }, { - "codePostal": "12120", - "codeCommune": "12065", - "libelleAcheminement": "CENTRES", - "nomCommune": "CENTRES" + "codePostal": "19200", + "codeCommune": "19232", + "libelleAcheminement": "ST PARDOUX LE NEUF", + "nomCommune": "ST PARDOUX LE NEUF" }, { - "codePostal": "52360", - "codeCommune": "52108", - "libelleAcheminement": "CHARMES", - "nomCommune": "CHARMES" + "codePostal": "05700", + "codeCommune": "05081", + "libelleAcheminement": "MONTCLUS", + "nomCommune": "MONTCLUS" }, { - "codePostal": "10400", - "codeCommune": "10106", - "libelleAcheminement": "COURCEROY", - "nomCommune": "COURCEROY" + "codePostal": "07310", + "codeCommune": "07269", + "libelleAcheminement": "ST MARTIN DE VALAMAS", + "nomCommune": "ST MARTIN DE VALAMAS" }, { - "codePostal": "12350", - "codeCommune": "12071", - "libelleAcheminement": "COMPOLIBAT", - "nomCommune": "COMPOLIBAT" + "codePostal": "19190", + "codeCommune": "19132", + "libelleAcheminement": "MENOIRE", + "nomCommune": "MENOIRE" }, { - "codePostal": "52190", - "codeCommune": "52113", - "libelleAcheminement": "CHASSIGNY", - "nomCommune": "CHASSIGNY" + "codePostal": "19220", + "codeCommune": "19237", + "libelleAcheminement": "ST PRIVAT", + "nomCommune": "ST PRIVAT" }, { - "codePostal": "10260", - "codeCommune": "10109", - "libelleAcheminement": "COURTENOT", - "nomCommune": "COURTENOT" + "codePostal": "05230", + "codeCommune": "05084", + "libelleAcheminement": "MONTGARDIN", + "nomCommune": "MONTGARDIN" }, { - "codePostal": "12470", - "codeCommune": "12074", - "libelleAcheminement": "CONDOM D AUBRAC", - "nomCommune": "CONDOM D AUBRAC" + "codePostal": "07190", + "codeCommune": "07274", + "libelleAcheminement": "ST MAURICE EN CHALENCON", + "nomCommune": "ST MAURICE EN CHALENCON" }, { - "codePostal": "52000", - "codeCommune": "52125", - "libelleAcheminement": "CHAMARANDES CHOIGNES", - "nomCommune": "CHAMARANDES CHOIGNES" + "codePostal": "19430", + "codeCommune": "19133", + "libelleAcheminement": "MERCOEUR", + "nomCommune": "MERCOEUR" }, { - "codePostal": "10320", - "codeCommune": "10116", - "libelleAcheminement": "CRESANTIGNES", - "nomCommune": "CRESANTIGNES" + "codePostal": "19240", + "codeCommune": "19246", + "libelleAcheminement": "ST VIANCE", + "nomCommune": "ST VIANCE" }, { - "codePostal": "12640", - "codeCommune": "12086", - "libelleAcheminement": "LA CRESSE", - "nomCommune": "LA CRESSE" + "codePostal": "05150", + "codeCommune": "05091", + "libelleAcheminement": "MOYDANS", + "nomCommune": "MOYDANS" }, { - "codePostal": "52240", - "codeCommune": "52127", - "libelleAcheminement": "CHOISEUL", - "nomCommune": "CHOISEUL" + "codePostal": "07200", + "codeCommune": "07277", + "libelleAcheminement": "ST MICHEL DE BOULOGNE", + "nomCommune": "ST MICHEL DE BOULOGNE" }, { - "codePostal": "10360", - "codeCommune": "10119", - "libelleAcheminement": "CUNFIN", - "nomCommune": "CUNFIN" + "codePostal": "19200", + "codeCommune": "19135", + "libelleAcheminement": "MESTES", + "nomCommune": "MESTES" }, { - "codePostal": "12000", - "codeCommune": "12090", - "libelleAcheminement": "DRUELLE BALSAC", - "nomCommune": "DRUELLE BALSAC" + "codePostal": "19300", + "codeCommune": "19249", + "libelleAcheminement": "ST YRIEIX LE DEJALAT", + "nomCommune": "ST YRIEIX LE DEJALAT" }, { - "codePostal": "52400", - "codeCommune": "52136", - "libelleAcheminement": "COIFFY LE HAUT", - "nomCommune": "COIFFY LE HAUT" + "codePostal": "05700", + "codeCommune": "05094", + "libelleAcheminement": "NOSSAGE ET BENEVENT", + "nomCommune": "NOSSAGE ET BENEVENT" }, { - "codePostal": "10170", - "codeCommune": "10131", - "libelleAcheminement": "DROUPT ST BASLE", - "nomCommune": "DROUPT ST BASLE" + "codePostal": "07460", + "codeCommune": "07280", + "libelleAcheminement": "ST PAUL LE JEUNE", + "nomCommune": "ST PAUL LE JEUNE" }, { - "codePostal": "12510", - "codeCommune": "12090", - "libelleAcheminement": "DRUELLE BALSAC", - "nomCommune": "DRUELLE BALSAC" + "codePostal": "19340", + "codeCommune": "19141", + "libelleAcheminement": "MONESTIER MERLINES", + "nomCommune": "MONESTIER MERLINES" }, { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "19220", + "codeCommune": "19258", + "libelleAcheminement": "SERVIERES LE CHATEAU", + "nomCommune": "SERVIERES LE CHATEAU" }, { - "codePostal": "10110", - "codeCommune": "10136", - "libelleAcheminement": "EGUILLY SOUS BOIS", - "nomCommune": "EGUILLY SOUS BOIS" + "codePostal": "05500", + "codeCommune": "05095", + "libelleAcheminement": "LE NOYER", + "nomCommune": "LE NOYER" }, { - "codePostal": "12140", - "codeCommune": "12093", - "libelleAcheminement": "LE FEL", - "nomCommune": "LE FEL" + "codePostal": "07130", + "codeCommune": "07281", + "libelleAcheminement": "ST PERAY", + "nomCommune": "ST PERAY" }, { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "19110", + "codeCommune": "19142", + "libelleAcheminement": "MONESTIER PORT DIEU", + "nomCommune": "MONESTIER PORT DIEU" }, { - "codePostal": "10400", - "codeCommune": "10153", - "libelleAcheminement": "FONTAINE MACON", - "nomCommune": "FONTAINE MACON" + "codePostal": "19290", + "codeCommune": "19261", + "libelleAcheminement": "SORNAC", + "nomCommune": "SORNAC" }, { - "codePostal": "12360", - "codeCommune": "12099", - "libelleAcheminement": "FAYET", - "nomCommune": "FAYET" + "codePostal": "05000", + "codeCommune": "05100", + "libelleAcheminement": "PELLEAUTIER", + "nomCommune": "PELLEAUTIER" }, { - "codePostal": "52110", - "codeCommune": "52149", - "libelleAcheminement": "COURCELLES SUR BLAISE", - "nomCommune": "COURCELLES SUR BLAISE" + "codePostal": "07200", + "codeCommune": "07289", + "libelleAcheminement": "ST PRIVAT", + "nomCommune": "ST PRIVAT" }, { - "codePostal": "10400", - "codeCommune": "10154", - "libelleAcheminement": "FONTENAY DE BOSSERY", - "nomCommune": "FONTENAY DE BOSSERY" + "codePostal": "19460", + "codeCommune": "19146", + "libelleAcheminement": "NAVES", + "nomCommune": "NAVES" }, { - "codePostal": "12300", - "codeCommune": "12101", - "libelleAcheminement": "FLAGNAC", - "nomCommune": "FLAGNAC" + "codePostal": "19260", + "codeCommune": "19281", + "libelleAcheminement": "VEIX", + "nomCommune": "VEIX" }, { - "codePostal": "52600", - "codeCommune": "52155", - "libelleAcheminement": "CULMONT", - "nomCommune": "CULMONT" + "codePostal": "05300", + "codeCommune": "05118", + "libelleAcheminement": "VAL BUECH MEOUGE", + "nomCommune": "VAL BUECH MEOUGE" }, { - "codePostal": "10360", - "codeCommune": "10155", - "libelleAcheminement": "FONTETTE", - "nomCommune": "FONTETTE" + "codePostal": "07130", + "codeCommune": "07293", + "libelleAcheminement": "ST ROMAIN DE LERPS", + "nomCommune": "ST ROMAIN DE LERPS" }, { - "codePostal": "12360", - "codeCommune": "12109", - "libelleAcheminement": "GISSAC", - "nomCommune": "GISSAC" + "codePostal": "19120", + "codeCommune": "19152", + "libelleAcheminement": "NONARDS", + "nomCommune": "NONARDS" }, { - "codePostal": "52400", - "codeCommune": "52164", - "libelleAcheminement": "DAMREMONT", - "nomCommune": "DAMREMONT" + "codePostal": "19200", + "codeCommune": "19283", + "libelleAcheminement": "VEYRIERES", + "nomCommune": "VEYRIERES" }, { - "codePostal": "10110", - "codeCommune": "10159", - "libelleAcheminement": "FRALIGNES", - "nomCommune": "FRALIGNES" + "codePostal": "05300", + "codeCommune": "05118", + "libelleAcheminement": "VAL BUECH MEOUGE", + "nomCommune": "VAL BUECH MEOUGE" }, { - "codePostal": "12440", - "codeCommune": "12128", - "libelleAcheminement": "LESCURE JAOUL", - "nomCommune": "LESCURE JAOUL" + "codePostal": "07460", + "codeCommune": "07294", + "libelleAcheminement": "ST SAUVEUR DE CRUZIERES", + "nomCommune": "ST SAUVEUR DE CRUZIERES" }, { - "codePostal": "52190", - "codeCommune": "52170", - "libelleAcheminement": "DOMMARIEN", - "nomCommune": "DOMMARIEN" + "codePostal": "19390", + "codeCommune": "19155", + "libelleAcheminement": "ORLIAC DE BAR", + "nomCommune": "ORLIAC DE BAR" }, { - "codePostal": "10700", - "codeCommune": "10167", - "libelleAcheminement": "GRANDVILLE", - "nomCommune": "GRANDVILLE" + "codePostal": "19410", + "codeCommune": "19285", + "libelleAcheminement": "VIGEOIS", + "nomCommune": "VIGEOIS" }, { - "codePostal": "12160", - "codeCommune": "12137", - "libelleAcheminement": "MANHAC", - "nomCommune": "MANHAC" + "codePostal": "05150", + "codeCommune": "05129", + "libelleAcheminement": "ST ANDRE DE ROSANS", + "nomCommune": "ST ANDRE DE ROSANS" }, { - "codePostal": "52110", - "codeCommune": "52172", - "libelleAcheminement": "DOMMARTIN LE ST PERE", - "nomCommune": "DOMMARTIN LE ST PERE" + "codePostal": "07290", + "codeCommune": "07299", + "libelleAcheminement": "ST SYMPHORIEN DE MAHUN", + "nomCommune": "ST SYMPHORIEN DE MAHUN" }, { - "codePostal": "10210", - "codeCommune": "10168", - "libelleAcheminement": "LES GRANGES", - "nomCommune": "LES GRANGES" + "codePostal": "19300", + "codeCommune": "19159", + "libelleAcheminement": "PERET BEL AIR", + "nomCommune": "PERET BEL AIR" }, { - "codePostal": "12330", - "codeCommune": "12138", - "libelleAcheminement": "MARCILLAC VALLON", - "nomCommune": "MARCILLAC VALLON" + "codePostal": "19130", + "codeCommune": "19288", + "libelleAcheminement": "VOUTEZAC", + "nomCommune": "VOUTEZAC" }, { - "codePostal": "52110", - "codeCommune": "52178", - "libelleAcheminement": "DOULEVANT LE CHATEAU", - "nomCommune": "DOULEVANT LE CHATEAU" + "codePostal": "05600", + "codeCommune": "05134", + "libelleAcheminement": "ST CLEMENT SUR DURANCE", + "nomCommune": "ST CLEMENT SUR DURANCE" }, { - "codePostal": "10250", - "codeCommune": "10170", - "libelleAcheminement": "GYE SUR SEINE", - "nomCommune": "GYE SUR SEINE" + "codePostal": "07220", + "codeCommune": "07300", + "libelleAcheminement": "ST THOME", + "nomCommune": "ST THOME" }, { - "codePostal": "12550", - "codeCommune": "12141", - "libelleAcheminement": "MARTRIN", - "nomCommune": "MARTRIN" + "codePostal": "19170", + "codeCommune": "19160", + "libelleAcheminement": "PEROLS SUR VEZERE", + "nomCommune": "PEROLS SUR VEZERE" }, { - "codePostal": "52110", - "codeCommune": "52178", - "libelleAcheminement": "DOULEVANT LE CHATEAU", - "nomCommune": "DOULEVANT LE CHATEAU" + "codePostal": "19310", + "codeCommune": "19289", + "libelleAcheminement": "YSSANDON", + "nomCommune": "YSSANDON" }, { - "codePostal": "10200", - "codeCommune": "10176", - "libelleAcheminement": "JAUCOURT", - "nomCommune": "JAUCOURT" + "codePostal": "05250", + "codeCommune": "05139", + "libelleAcheminement": "LE DEVOLUY", + "nomCommune": "LE DEVOLUY" }, { - "codePostal": "12360", - "codeCommune": "12143", - "libelleAcheminement": "MELAGUES", - "nomCommune": "MELAGUES" + "codePostal": "07120", + "codeCommune": "07306", + "libelleAcheminement": "SAMPZON", + "nomCommune": "SAMPZON" }, { - "codePostal": "52400", - "codeCommune": "52185", - "libelleAcheminement": "ENFONVELLE", - "nomCommune": "ENFONVELLE" + "codePostal": "19450", + "codeCommune": "19166", + "libelleAcheminement": "PIERREFITTE", + "nomCommune": "PIERREFITTE" }, { - "codePostal": "10320", - "codeCommune": "10177", - "libelleAcheminement": "JAVERNANT", - "nomCommune": "JAVERNANT" + "codePostal": "21560", + "codeCommune": "21021", + "libelleAcheminement": "ARC SUR TILLE", + "nomCommune": "ARC SUR TILLE" }, { - "codePostal": "12000", - "codeCommune": "12146", - "libelleAcheminement": "LE MONASTERE", - "nomCommune": "LE MONASTERE" + "codePostal": "05800", + "codeCommune": "05144", + "libelleAcheminement": "ST JACQUES EN VALGODEMARD", + "nomCommune": "ST JACQUES EN VALGODEMARD" }, { - "codePostal": "52190", - "codeCommune": "52189", - "libelleAcheminement": "LE VAL D ESNOMS", - "nomCommune": "LE VAL D ESNOMS" + "codePostal": "07110", + "codeCommune": "07307", + "libelleAcheminement": "SANILHAC", + "nomCommune": "SANILHAC" }, { - "codePostal": "10210", - "codeCommune": "10185", - "libelleAcheminement": "LAGESSE", - "nomCommune": "LAGESSE" + "codePostal": "19320", + "codeCommune": "19174", + "libelleAcheminement": "LA ROCHE CANILLAC", + "nomCommune": "LA ROCHE CANILLAC" }, { - "codePostal": "12260", - "codeCommune": "12158", - "libelleAcheminement": "MONTSALES", - "nomCommune": "MONTSALES" + "codePostal": "21700", + "codeCommune": "21022", + "libelleAcheminement": "ARGILLY", + "nomCommune": "ARGILLY" }, { - "codePostal": "52190", - "codeCommune": "52189", - "libelleAcheminement": "LE VAL D ESNOMS", - "nomCommune": "LE VAL D ESNOMS" + "codePostal": "05260", + "codeCommune": "05145", + "libelleAcheminement": "ST JEAN ST NICOLAS", + "nomCommune": "ST JEAN ST NICOLAS" }, { - "codePostal": "10210", - "codeCommune": "10188", - "libelleAcheminement": "LANTAGES", - "nomCommune": "LANTAGES" + "codePostal": "07610", + "codeCommune": "07312", + "libelleAcheminement": "SECHERAS", + "nomCommune": "SECHERAS" }, { - "codePostal": "12330", - "codeCommune": "12161", - "libelleAcheminement": "MOURET", - "nomCommune": "MOURET" + "codePostal": "19300", + "codeCommune": "19176", + "libelleAcheminement": "ROSIERS D EGLETONS", + "nomCommune": "ROSIERS D EGLETONS" }, { - "codePostal": "52170", - "codeCommune": "52203", - "libelleAcheminement": "FONTAINES SUR MARNE", - "nomCommune": "FONTAINES SUR MARNE" + "codePostal": "21170", + "codeCommune": "21031", + "libelleAcheminement": "AUBIGNY EN PLAINE", + "nomCommune": "AUBIGNY EN PLAINE" }, { - "codePostal": "10330", - "codeCommune": "10192", - "libelleAcheminement": "LENTILLES", - "nomCommune": "LENTILLES" + "codePostal": "05260", + "codeCommune": "05153", + "libelleAcheminement": "ST MICHEL DE CHAILLOL", + "nomCommune": "ST MICHEL DE CHAILLOL" }, { - "codePostal": "12600", - "codeCommune": "12164", - "libelleAcheminement": "MUR DE BARREZ", - "nomCommune": "MUR DE BARREZ" + "codePostal": "07130", + "codeCommune": "07316", + "libelleAcheminement": "SOYONS", + "nomCommune": "SOYONS" }, { - "codePostal": "52000", - "codeCommune": "52205", - "libelleAcheminement": "FOULAIN", - "nomCommune": "FOULAIN" + "codePostal": "19380", + "codeCommune": "19186", + "libelleAcheminement": "ST BONNET ELVERT", + "nomCommune": "ST BONNET ELVERT" }, { - "codePostal": "10500", - "codeCommune": "10193", - "libelleAcheminement": "LESMONT", - "nomCommune": "LESMONT" + "codePostal": "21130", + "codeCommune": "21038", + "libelleAcheminement": "AUXONNE", + "nomCommune": "AUXONNE" }, { - "codePostal": "12270", - "codeCommune": "12167", - "libelleAcheminement": "NAJAC", - "nomCommune": "NAJAC" + "codePostal": "05140", + "codeCommune": "05154", + "libelleAcheminement": "ST PIERRE D ARGENCON", + "nomCommune": "ST PIERRE D ARGENCON" }, { - "codePostal": "52220", - "codeCommune": "52206", - "libelleAcheminement": "FRAMPAS", - "nomCommune": "FRAMPAS" + "codePostal": "07340", + "codeCommune": "07317", + "libelleAcheminement": "TALENCIEUX", + "nomCommune": "TALENCIEUX" }, { - "codePostal": "10210", - "codeCommune": "10201", - "libelleAcheminement": "LA LOGE POMBLIN", - "nomCommune": "LA LOGE POMBLIN" + "codePostal": "19430", + "codeCommune": "19189", + "libelleAcheminement": "ST BONNET LES TOURS DE MERLE", + "nomCommune": "ST BONNET LES TOURS DE MERLE" }, { - "codePostal": "12260", - "codeCommune": "12175", - "libelleAcheminement": "OLS ET RINHODES", - "nomCommune": "OLS ET RINHODES" + "codePostal": "21340", + "codeCommune": "21050", + "libelleAcheminement": "BAUBIGNY", + "nomCommune": "BAUBIGNY" }, { - "codePostal": "52300", - "codeCommune": "52212", - "libelleAcheminement": "FRONVILLE", - "nomCommune": "FRONVILLE" + "codePostal": "05300", + "codeCommune": "05160", + "libelleAcheminement": "SALERANS", + "nomCommune": "SALERANS" }, { - "codePostal": "10300", - "codeCommune": "10211", - "libelleAcheminement": "MACEY", - "nomCommune": "MACEY" + "codePostal": "07200", + "codeCommune": "07325", + "libelleAcheminement": "UCEL", + "nomCommune": "UCEL" }, { - "codePostal": "12340", - "codeCommune": "12177", - "libelleAcheminement": "PALMAS D AVEYRON", - "nomCommune": "PALMAS D AVEYRON" + "codePostal": "19600", + "codeCommune": "19191", + "libelleAcheminement": "ST CERNIN DE LARCHE", + "nomCommune": "ST CERNIN DE LARCHE" }, { - "codePostal": "52500", - "codeCommune": "52213", - "libelleAcheminement": "GENEVRIERES", - "nomCommune": "GENEVRIERES" + "codePostal": "21510", + "codeCommune": "21052", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "10110", - "codeCommune": "10213", - "libelleAcheminement": "MAGNANT", - "nomCommune": "MAGNANT" + "codePostal": "05110", + "codeCommune": "05162", + "libelleAcheminement": "LA SAULCE", + "nomCommune": "LA SAULCE" }, { - "codePostal": "12470", - "codeCommune": "12187", - "libelleAcheminement": "PRADES D AUBRAC", - "nomCommune": "PRADES D AUBRAC" + "codePostal": "07510", + "codeCommune": "07326", + "libelleAcheminement": "USCLADES ET RIEUTORD", + "nomCommune": "USCLADES ET RIEUTORD" }, { - "codePostal": "52160", - "codeCommune": "52216", - "libelleAcheminement": "GERMAINES", - "nomCommune": "GERMAINES" + "codePostal": "19220", + "codeCommune": "19193", + "libelleAcheminement": "ST CIRGUES LA LOUTRE", + "nomCommune": "ST CIRGUES LA LOUTRE" }, { - "codePostal": "10240", - "codeCommune": "10214", - "libelleAcheminement": "MAGNICOURT", - "nomCommune": "MAGNICOURT" + "codePostal": "21310", + "codeCommune": "21053", + "libelleAcheminement": "BEAUMONT SUR VINGEANNE", + "nomCommune": "BEAUMONT SUR VINGEANNE" }, { - "codePostal": "12290", - "codeCommune": "12188", - "libelleAcheminement": "PRADES SALARS", - "nomCommune": "PRADES SALARS" + "codePostal": "05190", + "codeCommune": "05171", + "libelleAcheminement": "THEUS", + "nomCommune": "THEUS" }, { - "codePostal": "52330", - "codeCommune": "52221", - "libelleAcheminement": "GILLANCOURT", - "nomCommune": "GILLANCOURT" + "codePostal": "07150", + "codeCommune": "07330", + "libelleAcheminement": "VALLON PONT D ARC", + "nomCommune": "VALLON PONT D ARC" }, { - "codePostal": "10140", - "codeCommune": "10215", - "libelleAcheminement": "MAGNY FOUCHARD", - "nomCommune": "MAGNY FOUCHARD" + "codePostal": "19270", + "codeCommune": "19202", + "libelleAcheminement": "STE FEREOLE", + "nomCommune": "STE FEREOLE" }, { - "codePostal": "12340", - "codeCommune": "12201", - "libelleAcheminement": "RODELLE", - "nomCommune": "RODELLE" + "codePostal": "21200", + "codeCommune": "21054", + "libelleAcheminement": "BEAUNE", + "nomCommune": "BEAUNE" }, { - "codePostal": "52230", - "codeCommune": "52222", - "libelleAcheminement": "GILLAUME", - "nomCommune": "GILLAUME" + "codePostal": "05100", + "codeCommune": "05174", + "libelleAcheminement": "VAL DES PRES", + "nomCommune": "VAL DES PRES" }, { - "codePostal": "10230", - "codeCommune": "10216", - "libelleAcheminement": "MAILLY LE CAMP", - "nomCommune": "MAILLY LE CAMP" + "codePostal": "07140", + "codeCommune": "07334", + "libelleAcheminement": "LES VANS", + "nomCommune": "LES VANS" }, { - "codePostal": "12250", - "codeCommune": "12203", - "libelleAcheminement": "ROQUEFORT SUR SOULZON", - "nomCommune": "ROQUEFORT SUR SOULZON" + "codePostal": "19200", + "codeCommune": "19204", + "libelleAcheminement": "ST FREJOUX", + "nomCommune": "ST FREJOUX" }, { - "codePostal": "52320", - "codeCommune": "52230", - "libelleAcheminement": "GUDMONT VILLIERS", - "nomCommune": "GUDMONT VILLIERS" + "codePostal": "21310", + "codeCommune": "21056", + "libelleAcheminement": "BEIRE LE CHATEL", + "nomCommune": "BEIRE LE CHATEL" }, { - "codePostal": "10290", - "codeCommune": "10223", - "libelleAcheminement": "MARCILLY LE HAYER", - "nomCommune": "MARCILLY LE HAYER" + "codePostal": "05560", + "codeCommune": "05177", + "libelleAcheminement": "VARS", + "nomCommune": "VARS" }, { - "codePostal": "12270", - "codeCommune": "12210", - "libelleAcheminement": "ST ANDRE DE NAJAC", - "nomCommune": "ST ANDRE DE NAJAC" + "codePostal": "07240", + "codeCommune": "07338", + "libelleAcheminement": "VERNOUX EN VIVARAIS", + "nomCommune": "VERNOUX EN VIVARAIS" }, { - "codePostal": "52400", - "codeCommune": "52233", - "libelleAcheminement": "GUYONVELLE", - "nomCommune": "GUYONVELLE" + "codePostal": "19220", + "codeCommune": "19214", + "libelleAcheminement": "ST JULIEN AUX BOIS", + "nomCommune": "ST JULIEN AUX BOIS" }, { - "codePostal": "10500", - "codeCommune": "10228", - "libelleAcheminement": "MATHAUX", - "nomCommune": "MATHAUX" + "codePostal": "21310", + "codeCommune": "21060", + "libelleAcheminement": "BELLENEUVE", + "nomCommune": "BELLENEUVE" }, { - "codePostal": "12260", - "codeCommune": "12217", - "libelleAcheminement": "STE CROIX", - "nomCommune": "STE CROIX" + "codePostal": "05400", + "codeCommune": "05179", + "libelleAcheminement": "VEYNES", + "nomCommune": "VEYNES" }, { - "codePostal": "52600", - "codeCommune": "52242", - "libelleAcheminement": "HAUTE AMANCE", - "nomCommune": "HAUTE AMANCE" + "codePostal": "07200", + "codeCommune": "07339", + "libelleAcheminement": "VESSEAUX", + "nomCommune": "VESSEAUX" }, { - "codePostal": "10600", - "codeCommune": "10230", - "libelleAcheminement": "MERGEY", - "nomCommune": "MERGEY" + "codePostal": "19500", + "codeCommune": "19217", + "libelleAcheminement": "ST JULIEN MAUMONT", + "nomCommune": "ST JULIEN MAUMONT" }, { - "codePostal": "12320", - "codeCommune": "12221", - "libelleAcheminement": "ST FELIX DE LUNEL", - "nomCommune": "ST FELIX DE LUNEL" + "codePostal": "21500", + "codeCommune": "21064", + "libelleAcheminement": "BENOISEY", + "nomCommune": "BENOISEY" }, { - "codePostal": "52000", - "codeCommune": "52251", - "libelleAcheminement": "JONCHERY", - "nomCommune": "JONCHERY" + "codePostal": "05480", + "codeCommune": "05181", + "libelleAcheminement": "VILLAR D ARENE", + "nomCommune": "VILLAR D ARENE" }, { - "codePostal": "10110", - "codeCommune": "10232", - "libelleAcheminement": "MERREY SUR ARCE", - "nomCommune": "MERREY SUR ARCE" + "codePostal": "07170", + "codeCommune": "07341", + "libelleAcheminement": "VILLENEUVE DE BERG", + "nomCommune": "VILLENEUVE DE BERG" }, { - "codePostal": "12210", - "codeCommune": "12223", - "libelleAcheminement": "ARGENCES EN AUBRAC", - "nomCommune": "ARGENCES EN AUBRAC" + "codePostal": "19320", + "codeCommune": "19222", + "libelleAcheminement": "ST MARTIN LA MEANNE", + "nomCommune": "ST MARTIN LA MEANNE" }, { - "codePostal": "52330", - "codeCommune": "52253", - "libelleAcheminement": "JUZENNECOURT", - "nomCommune": "JUZENNECOURT" + "codePostal": "21350", + "codeCommune": "21069", + "libelleAcheminement": "BEURIZOT", + "nomCommune": "BEURIZOT" }, { - "codePostal": "10220", - "codeCommune": "10239", - "libelleAcheminement": "MESNIL SELLIERES", - "nomCommune": "MESNIL SELLIERES" + "codePostal": "06910", + "codeCommune": "06002", + "libelleAcheminement": "AMIRAT", + "nomCommune": "AMIRAT" }, { - "codePostal": "12210", - "codeCommune": "12223", - "libelleAcheminement": "ARGENCES EN AUBRAC", - "nomCommune": "ARGENCES EN AUBRAC" + "codePostal": "07690", + "codeCommune": "07342", + "libelleAcheminement": "VILLEVOCANCE", + "nomCommune": "VILLEVOCANCE" }, { - "codePostal": "52700", - "codeCommune": "52256", - "libelleAcheminement": "LAFAUCHE", - "nomCommune": "LAFAUCHE" + "codePostal": "19320", + "codeCommune": "19225", + "libelleAcheminement": "ST MERD DE LAPLEAU", + "nomCommune": "ST MERD DE LAPLEAU" }, { - "codePostal": "10270", - "codeCommune": "10245", - "libelleAcheminement": "MONTAULIN", - "nomCommune": "MONTAULIN" + "codePostal": "21220", + "codeCommune": "21070", + "libelleAcheminement": "BEVY", + "nomCommune": "BEVY" }, { - "codePostal": "12480", - "codeCommune": "12228", - "libelleAcheminement": "ST IZAIRE", - "nomCommune": "ST IZAIRE" + "codePostal": "06750", + "codeCommune": "06003", + "libelleAcheminement": "ANDON", + "nomCommune": "ANDON" }, { - "codePostal": "52500", - "codeCommune": "52257", - "libelleAcheminement": "LAFERTE SUR AMANCE", - "nomCommune": "LAFERTE SUR AMANCE" + "codePostal": "08450", + "codeCommune": "08013", + "libelleAcheminement": "ANGECOURT", + "nomCommune": "ANGECOURT" }, { - "codePostal": "10250", - "codeCommune": "10262", - "libelleAcheminement": "NEUVILLE SUR SEINE", - "nomCommune": "NEUVILLE SUR SEINE" + "codePostal": "19160", + "codeCommune": "19228", + "libelleAcheminement": "ST PANTALEON DE LAPLEAU", + "nomCommune": "ST PANTALEON DE LAPLEAU" }, { - "codePostal": "12230", - "codeCommune": "12231", - "libelleAcheminement": "ST JEAN DU BRUEL", - "nomCommune": "ST JEAN DU BRUEL" + "codePostal": "21310", + "codeCommune": "21071", + "libelleAcheminement": "BEZE", + "nomCommune": "BEZE" }, { - "codePostal": "52170", - "codeCommune": "52265", - "libelleAcheminement": "BAYARD SUR MARNE", - "nomCommune": "BAYARD SUR MARNE" + "codePostal": "06750", + "codeCommune": "06003", + "libelleAcheminement": "ANDON", + "nomCommune": "ANDON" }, { - "codePostal": "10420", - "codeCommune": "10265", - "libelleAcheminement": "LES NOES PRES TROYES", - "nomCommune": "LES NOES PRES TROYES" + "codePostal": "08310", + "codeCommune": "08014", + "libelleAcheminement": "ANNELLES", + "nomCommune": "ANNELLES" }, { - "codePostal": "12250", - "codeCommune": "12232", - "libelleAcheminement": "ST JEAN ET ST PAUL", - "nomCommune": "ST JEAN ET ST PAUL" + "codePostal": "19150", + "codeCommune": "19235", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "52120", - "codeCommune": "52272", - "libelleAcheminement": "LANTY SUR AUBE", - "nomCommune": "LANTY SUR AUBE" + "codePostal": "21130", + "codeCommune": "21074", + "libelleAcheminement": "BILLEY", + "nomCommune": "BILLEY" }, { - "codePostal": "10400", - "codeCommune": "10268", - "libelleAcheminement": "NOGENT SUR SEINE", - "nomCommune": "NOGENT SUR SEINE" + "codePostal": "06160", + "codeCommune": "06004", + "libelleAcheminement": "ANTIBES", + "nomCommune": "ANTIBES" }, { - "codePostal": "12550", - "codeCommune": "12233", - "libelleAcheminement": "ST JUERY", - "nomCommune": "ST JUERY" + "codePostal": "08380", + "codeCommune": "08030", + "libelleAcheminement": "AUGE", + "nomCommune": "AUGE" }, { - "codePostal": "52400", - "codeCommune": "52273", - "libelleAcheminement": "LARIVIERE ARNONCOURT", - "nomCommune": "LARIVIERE ARNONCOURT" + "codePostal": "19310", + "codeCommune": "19239", + "libelleAcheminement": "ST ROBERT", + "nomCommune": "ST ROBERT" }, { - "codePostal": "10170", - "codeCommune": "10274", - "libelleAcheminement": "ORVILLIERS ST JULIEN", - "nomCommune": "ORVILLIERS ST JULIEN" + "codePostal": "21450", + "codeCommune": "21075", + "libelleAcheminement": "BILLY LES CHANCEAUX", + "nomCommune": "BILLY LES CHANCEAUX" }, { - "codePostal": "12370", - "codeCommune": "12249", - "libelleAcheminement": "ST SEVER DU MOUSTIER", - "nomCommune": "ST SEVER DU MOUSTIER" + "codePostal": "06600", + "codeCommune": "06004", + "libelleAcheminement": "ANTIBES", + "nomCommune": "ANTIBES" }, { - "codePostal": "52120", - "codeCommune": "52274", - "libelleAcheminement": "LATRECEY ORMOY SUR AUBE", - "nomCommune": "LATRECEY ORMOY SUR AUBE" + "codePostal": "08400", + "codeCommune": "08031", + "libelleAcheminement": "AURE", + "nomCommune": "AURE" }, { - "codePostal": "10400", - "codeCommune": "10284", - "libelleAcheminement": "PERIGNY LA ROSE", - "nomCommune": "PERIGNY LA ROSE" + "codePostal": "19380", + "codeCommune": "19245", + "libelleAcheminement": "ST SYLVAIN", + "nomCommune": "ST SYLVAIN" }, { - "codePostal": "12400", - "codeCommune": "12251", - "libelleAcheminement": "ST VICTOR ET MELVIEU", - "nomCommune": "ST VICTOR ET MELVIEU" + "codePostal": "21540", + "codeCommune": "21080", + "libelleAcheminement": "BLAISY BAS", + "nomCommune": "BLAISY BAS" }, { - "codePostal": "52120", - "codeCommune": "52274", - "libelleAcheminement": "LATRECEY ORMOY SUR AUBE", - "nomCommune": "LATRECEY ORMOY SUR AUBE" + "codePostal": "06510", + "codeCommune": "06017", + "libelleAcheminement": "BEZAUDUN LES ALPES", + "nomCommune": "BEZAUDUN LES ALPES" }, { - "codePostal": "10500", - "codeCommune": "10285", - "libelleAcheminement": "PERTHES LES BRIENNE", - "nomCommune": "PERTHES LES BRIENNE" + "codePostal": "08210", + "codeCommune": "08034", + "libelleAcheminement": "AUTRECOURT ET POURRON", + "nomCommune": "AUTRECOURT ET POURRON" }, { - "codePostal": "12260", - "codeCommune": "12252", - "libelleAcheminement": "SALLES COURBATIES", - "nomCommune": "SALLES COURBATIES" + "codePostal": "19110", + "codeCommune": "19252", + "libelleAcheminement": "SARROUX ST JULIEN", + "nomCommune": "SARROUX ST JULIEN" }, { - "codePostal": "52190", - "codeCommune": "52285", - "libelleAcheminement": "LEUCHEY", - "nomCommune": "LEUCHEY" + "codePostal": "21320", + "codeCommune": "21082", + "libelleAcheminement": "BLANCEY", + "nomCommune": "BLANCEY" }, { - "codePostal": "10160", - "codeCommune": "10290", - "libelleAcheminement": "PLANTY", - "nomCommune": "PLANTY" + "codePostal": "06510", + "codeCommune": "06033", + "libelleAcheminement": "CARROS", + "nomCommune": "CARROS" }, { - "codePostal": "12700", - "codeCommune": "12257", - "libelleAcheminement": "CAUSSE ET DIEGE", - "nomCommune": "CAUSSE ET DIEGE" + "codePostal": "08190", + "codeCommune": "08044", + "libelleAcheminement": "BALHAM", + "nomCommune": "BALHAM" }, { - "codePostal": "52150", - "codeCommune": "52287", - "libelleAcheminement": "LEVECOURT", - "nomCommune": "LEVECOURT" + "codePostal": "19310", + "codeCommune": "19253", + "libelleAcheminement": "SEGONZAC", + "nomCommune": "SEGONZAC" }, { - "codePostal": "10240", - "codeCommune": "10300", - "libelleAcheminement": "POUGY", - "nomCommune": "POUGY" + "codePostal": "21690", + "codeCommune": "21084", + "libelleAcheminement": "SOURCE SEINE", + "nomCommune": "SOURCE SEINE" }, { - "codePostal": "12800", - "codeCommune": "12262", - "libelleAcheminement": "SAUVETERRE DE ROUERGUE", - "nomCommune": "SAUVETERRE DE ROUERGUE" + "codePostal": "06500", + "codeCommune": "06035", + "libelleAcheminement": "CASTELLAR", + "nomCommune": "CASTELLAR" }, { - "codePostal": "52230", - "codeCommune": "52288", - "libelleAcheminement": "LEZEVILLE", - "nomCommune": "LEZEVILLE" + "codePostal": "08210", + "codeCommune": "08055", + "libelleAcheminement": "BEAUMONT EN ARGONNE", + "nomCommune": "BEAUMONT EN ARGONNE" }, { - "codePostal": "10200", - "codeCommune": "10306", - "libelleAcheminement": "PROVERVILLE", - "nomCommune": "PROVERVILLE" + "codePostal": "19370", + "codeCommune": "19262", + "libelleAcheminement": "SOUDAINE LAVINADIERE", + "nomCommune": "SOUDAINE LAVINADIERE" }, { - "codePostal": "12290", - "codeCommune": "12266", - "libelleAcheminement": "SEGUR", - "nomCommune": "SEGUR" + "codePostal": "21250", + "codeCommune": "21089", + "libelleAcheminement": "BONNENCONTRE", + "nomCommune": "BONNENCONTRE" }, { - "codePostal": "52500", - "codeCommune": "52290", - "libelleAcheminement": "LES LOGES", - "nomCommune": "LES LOGES" + "codePostal": "06390", + "codeCommune": "06039", + "libelleAcheminement": "CHATEAUNEUF VILLEVIEILLE", + "nomCommune": "CHATEAUNEUF VILLEVIEILLE" }, { - "codePostal": "10500", - "codeCommune": "10315", - "libelleAcheminement": "RANCES", - "nomCommune": "RANCES" + "codePostal": "08240", + "codeCommune": "08057", + "libelleAcheminement": "BELLEVILLE ET CHATILLON SUR BAR", + "nomCommune": "BELLEVILLE ET CHATILLON SUR BAR" }, { - "codePostal": "12320", - "codeCommune": "12268", - "libelleAcheminement": "SENERGUES", - "nomCommune": "SENERGUES" + "codePostal": "19170", + "codeCommune": "19265", + "libelleAcheminement": "TARNAC", + "nomCommune": "TARNAC" }, { - "codePostal": "52250", - "codeCommune": "52292", - "libelleAcheminement": "LONGEAU PERCEY", - "nomCommune": "LONGEAU PERCEY" + "codePostal": "21350", + "codeCommune": "21097", + "libelleAcheminement": "BOUSSEY", + "nomCommune": "BOUSSEY" }, { - "codePostal": "10290", - "codeCommune": "10318", - "libelleAcheminement": "RIGNY LA NONNEUSE", - "nomCommune": "RIGNY LA NONNEUSE" + "codePostal": "06420", + "codeCommune": "06042", + "libelleAcheminement": "CLANS", + "nomCommune": "CLANS" }, { - "codePostal": "12150", - "codeCommune": "12270", - "libelleAcheminement": "SEVERAC D AVEYRON", - "nomCommune": "SEVERAC D AVEYRON" + "codePostal": "08240", + "codeCommune": "08059", + "libelleAcheminement": "BELVAL BOIS DES DAMES", + "nomCommune": "BELVAL BOIS DES DAMES" }, { - "codePostal": "52000", - "codeCommune": "52297", - "libelleAcheminement": "LUZY SUR MARNE", - "nomCommune": "LUZY SUR MARNE" + "codePostal": "19230", + "codeCommune": "19270", + "libelleAcheminement": "TROCHE", + "nomCommune": "TROCHE" }, { - "codePostal": "10160", - "codeCommune": "10319", - "libelleAcheminement": "RIGNY LE FERRON", - "nomCommune": "RIGNY LE FERRON" + "codePostal": "21400", + "codeCommune": "21104", + "libelleAcheminement": "BREMUR ET VAUROIS", + "nomCommune": "BREMUR ET VAUROIS" }, { - "codePostal": "12360", - "codeCommune": "12275", - "libelleAcheminement": "TAURIAC DE CAMARES", - "nomCommune": "TAURIAC DE CAMARES" + "codePostal": "06390", + "codeCommune": "06043", + "libelleAcheminement": "COARAZE", + "nomCommune": "COARAZE" }, { - "codePostal": "52800", - "codeCommune": "52305", - "libelleAcheminement": "MANDRES LA COTE", - "nomCommune": "MANDRES LA COTE" + "codePostal": "08290", + "codeCommune": "08069", + "libelleAcheminement": "BLANCHEFOSSE ET BAY", + "nomCommune": "BLANCHEFOSSE ET BAY" }, { - "codePostal": "10280", - "codeCommune": "10320", - "libelleAcheminement": "RILLY STE SYRE", - "nomCommune": "RILLY STE SYRE" + "codePostal": "19200", + "codeCommune": "19277", + "libelleAcheminement": "VALIERGUES", + "nomCommune": "VALIERGUES" }, { - "codePostal": "12800", - "codeCommune": "12276", - "libelleAcheminement": "TAURIAC DE NAUCELLE", - "nomCommune": "TAURIAC DE NAUCELLE" + "codePostal": "21490", + "codeCommune": "21111", + "libelleAcheminement": "BROGNON", + "nomCommune": "BROGNON" }, { - "codePostal": "52320", - "codeCommune": "52310", - "libelleAcheminement": "MARBEVILLE", - "nomCommune": "MARBEVILLE" + "codePostal": "06670", + "codeCommune": "06046", + "libelleAcheminement": "COLOMARS", + "nomCommune": "COLOMARS" }, { - "codePostal": "10100", - "codeCommune": "10323", - "libelleAcheminement": "ROMILLY SUR SEINE", - "nomCommune": "ROMILLY SUR SEINE" + "codePostal": "08290", + "codeCommune": "08069", + "libelleAcheminement": "BLANCHEFOSSE ET BAY", + "nomCommune": "BLANCHEFOSSE ET BAY" }, { - "codePostal": "12200", - "codeCommune": "12281", - "libelleAcheminement": "TOULONJAC", - "nomCommune": "TOULONJAC" + "codePostal": "21450", + "codeCommune": "21011", + "libelleAcheminement": "AMPILLY LES BORDES", + "nomCommune": "AMPILLY LES BORDES" }, { - "codePostal": "52360", - "codeCommune": "52311", - "libelleAcheminement": "MARCILLY EN BASSIGNY", - "nomCommune": "MARCILLY EN BASSIGNY" + "codePostal": "21400", + "codeCommune": "21115", + "libelleAcheminement": "BUNCEY", + "nomCommune": "BUNCEY" }, { - "codePostal": "10500", - "codeCommune": "10326", - "libelleAcheminement": "ROSNAY L HOPITAL", - "nomCommune": "ROSNAY L HOPITAL" + "codePostal": "06620", + "codeCommune": "06049", + "libelleAcheminement": "COURMES", + "nomCommune": "COURMES" }, { - "codePostal": "12720", - "codeCommune": "12293", - "libelleAcheminement": "VEYREAU", - "nomCommune": "VEYREAU" + "codePostal": "08240", + "codeCommune": "08075", + "libelleAcheminement": "BOULT AUX BOIS", + "nomCommune": "BOULT AUX BOIS" }, { - "codePostal": "52200", - "codeCommune": "52312", - "libelleAcheminement": "MARDOR", - "nomCommune": "MARDOR" + "codePostal": "21700", + "codeCommune": "21017", + "libelleAcheminement": "ARCENANT", + "nomCommune": "ARCENANT" }, { - "codePostal": "10800", - "codeCommune": "10329", - "libelleAcheminement": "ROUILLY ST LOUP", - "nomCommune": "ROUILLY ST LOUP" + "codePostal": "21510", + "codeCommune": "21117", + "libelleAcheminement": "BUSSEAUT", + "nomCommune": "BUSSEAUT" }, { - "codePostal": "12200", - "codeCommune": "12300", - "libelleAcheminement": "VILLEFRANCHE DE ROUERGUE", - "nomCommune": "VILLEFRANCHE DE ROUERGUE" + "codePostal": "06260", + "codeCommune": "06051", + "libelleAcheminement": "LA CROIX SUR ROUDOULE", + "nomCommune": "LA CROIX SUR ROUDOULE" }, { - "codePostal": "52700", - "codeCommune": "52313", - "libelleAcheminement": "MAREILLES", - "nomCommune": "MAREILLES" + "codePostal": "08400", + "codeCommune": "08077", + "libelleAcheminement": "BOURCQ", + "nomCommune": "BOURCQ" }, { - "codePostal": "10800", - "codeCommune": "10329", - "libelleAcheminement": "ROUILLY ST LOUP", - "nomCommune": "ROUILLY ST LOUP" + "codePostal": "21410", + "codeCommune": "21018", + "libelleAcheminement": "ARCEY", + "nomCommune": "ARCEY" }, { - "codePostal": "12110", - "codeCommune": "12305", - "libelleAcheminement": "VIVIEZ", - "nomCommune": "VIVIEZ" + "codePostal": "21580", + "codeCommune": "21118", + "libelleAcheminement": "BUSSEROTTE ET MONTENAILLE", + "nomCommune": "BUSSEROTTE ET MONTENAILLE" }, { - "codePostal": "52400", - "codeCommune": "52318", - "libelleAcheminement": "MELAY", - "nomCommune": "MELAY" + "codePostal": "06470", + "codeCommune": "06053", + "libelleAcheminement": "DALUIS", + "nomCommune": "DALUIS" }, { - "codePostal": "10410", - "codeCommune": "10332", - "libelleAcheminement": "RUVIGNY", - "nomCommune": "RUVIGNY" + "codePostal": "08120", + "codeCommune": "08081", + "libelleAcheminement": "BOGNY SUR MEUSE", + "nomCommune": "BOGNY SUR MEUSE" }, { - "codePostal": "13290", - "codeCommune": "13001", - "libelleAcheminement": "AIX EN PROVENCE", - "nomCommune": "AIX EN PROVENCE" + "codePostal": "21340", + "codeCommune": "21032", + "libelleAcheminement": "AUBIGNY LA RONCE", + "nomCommune": "AUBIGNY LA RONCE" }, { - "codePostal": "52310", - "codeCommune": "52322", - "libelleAcheminement": "MEURES", - "nomCommune": "MEURES" + "codePostal": "21360", + "codeCommune": "21120", + "libelleAcheminement": "LA BUSSIERE SUR OUCHE", + "nomCommune": "LA BUSSIERE SUR OUCHE" }, { - "codePostal": "10180", - "codeCommune": "10336", - "libelleAcheminement": "ST BENOIT SUR SEINE", - "nomCommune": "ST BENOIT SUR SEINE" + "codePostal": "06500", + "codeCommune": "06067", + "libelleAcheminement": "GORBIO", + "nomCommune": "GORBIO" }, { - "codePostal": "13104", - "codeCommune": "13004", - "libelleAcheminement": "ARLES", - "nomCommune": "ARLES" + "codePostal": "08110", + "codeCommune": "08090", + "libelleAcheminement": "CARIGNAN", + "nomCommune": "CARIGNAN" }, { - "codePostal": "52320", - "codeCommune": "52326", - "libelleAcheminement": "MIRBEL", - "nomCommune": "MIRBEL" + "codePostal": "21540", + "codeCommune": "21033", + "libelleAcheminement": "AUBIGNY LES SOMBERNON", + "nomCommune": "AUBIGNY LES SOMBERNON" }, { - "codePostal": "10350", - "codeCommune": "10339", - "libelleAcheminement": "ST FLAVY", - "nomCommune": "ST FLAVY" + "codePostal": "21120", + "codeCommune": "21127", + "libelleAcheminement": "CHAIGNAY", + "nomCommune": "CHAIGNAY" }, { - "codePostal": "13123", - "codeCommune": "13004", - "libelleAcheminement": "ARLES", - "nomCommune": "ARLES" + "codePostal": "06130", + "codeCommune": "06069", + "libelleAcheminement": "GRASSE", + "nomCommune": "GRASSE" }, { - "codePostal": "52220", - "codeCommune": "52331", - "libelleAcheminement": "LA PORTE DU DER", - "nomCommune": "LA PORTE DU DER" + "codePostal": "08430", + "codeCommune": "08095", + "libelleAcheminement": "CHAGNY", + "nomCommune": "CHAGNY" }, { - "codePostal": "10120", - "codeCommune": "10340", - "libelleAcheminement": "ST GERMAIN", - "nomCommune": "ST GERMAIN" + "codePostal": "21460", + "codeCommune": "21047", + "libelleAcheminement": "BARD LES EPOISSES", + "nomCommune": "BARD LES EPOISSES" }, { - "codePostal": "13129", - "codeCommune": "13004", - "libelleAcheminement": "ARLES", - "nomCommune": "ARLES" + "codePostal": "21220", + "codeCommune": "21132", + "libelleAcheminement": "CHAMBOEUF", + "nomCommune": "CHAMBOEUF" }, { - "codePostal": "52700", - "codeCommune": "52335", - "libelleAcheminement": "MONTOT SUR ROGNON", - "nomCommune": "MONTOT SUR ROGNON" + "codePostal": "06130", + "codeCommune": "06069", + "libelleAcheminement": "GRASSE", + "nomCommune": "GRASSE" }, { - "codePostal": "10330", - "codeCommune": "10346", - "libelleAcheminement": "ST LEGER SOUS MARGERIE", - "nomCommune": "ST LEGER SOUS MARGERIE" + "codePostal": "08400", + "codeCommune": "08097", + "libelleAcheminement": "CHALLERANGE", + "nomCommune": "CHALLERANGE" }, { - "codePostal": "13200", - "codeCommune": "13004", - "libelleAcheminement": "ARLES", - "nomCommune": "ARLES" + "codePostal": "21910", + "codeCommune": "21048", + "libelleAcheminement": "BARGES", + "nomCommune": "BARGES" }, { - "codePostal": "52360", - "codeCommune": "52348", - "libelleAcheminement": "NEUILLY L EVEQUE", - "nomCommune": "NEUILLY L EVEQUE" + "codePostal": "21690", + "codeCommune": "21141", + "libelleAcheminement": "CHAMPRENAULT", + "nomCommune": "CHAMPRENAULT" }, { - "codePostal": "10280", - "codeCommune": "10353", - "libelleAcheminement": "ST MESMIN", - "nomCommune": "ST MESMIN" + "codePostal": "06620", + "codeCommune": "06070", + "libelleAcheminement": "GREOLIERES", + "nomCommune": "GREOLIERES" }, { - "codePostal": "13280", - "codeCommune": "13004", - "libelleAcheminement": "ARLES", - "nomCommune": "ARLES" + "codePostal": "08600", + "codeCommune": "08106", + "libelleAcheminement": "CHARNOIS", + "nomCommune": "CHARNOIS" }, { - "codePostal": "52240", - "codeCommune": "52358", - "libelleAcheminement": "NOYERS", - "nomCommune": "NOYERS" + "codePostal": "21490", + "codeCommune": "21059", + "libelleAcheminement": "BELLEFOND", + "nomCommune": "BELLEFOND" }, { - "codePostal": "10170", - "codeCommune": "10356", - "libelleAcheminement": "ST OULPH", - "nomCommune": "ST OULPH" + "codePostal": "21440", + "codeCommune": "21142", + "libelleAcheminement": "CHANCEAUX", + "nomCommune": "CHANCEAUX" }, { - "codePostal": "13930", - "codeCommune": "13006", - "libelleAcheminement": "AUREILLE", - "nomCommune": "AUREILLE" + "codePostal": "06260", + "codeCommune": "06076", + "libelleAcheminement": "LIEUCHE", + "nomCommune": "LIEUCHE" }, { - "codePostal": "52110", - "codeCommune": "52359", - "libelleAcheminement": "NULLY", - "nomCommune": "NULLY" + "codePostal": "08300", + "codeCommune": "08111", + "libelleAcheminement": "LE CHATELET SUR RETOURNE", + "nomCommune": "LE CHATELET SUR RETOURNE" }, { - "codePostal": "10400", - "codeCommune": "10367", - "libelleAcheminement": "LA SAULSOTTE", - "nomCommune": "LA SAULSOTTE" + "codePostal": "21510", + "codeCommune": "21061", + "libelleAcheminement": "BELLENOD SUR SEINE", + "nomCommune": "BELLENOD SUR SEINE" }, { - "codePostal": "13100", - "codeCommune": "13012", - "libelleAcheminement": "BEAURECUEIL", - "nomCommune": "BEAURECUEIL" + "codePostal": "21350", + "codeCommune": "21147", + "libelleAcheminement": "CHARNY", + "nomCommune": "CHARNY" }, { - "codePostal": "52360", - "codeCommune": "52362", - "libelleAcheminement": "ORBIGNY AU MONT", - "nomCommune": "ORBIGNY AU MONT" + "codePostal": "06200", + "codeCommune": "06088", + "libelleAcheminement": "NICE", + "nomCommune": "NICE" }, { - "codePostal": "10600", - "codeCommune": "10368", - "libelleAcheminement": "SAVIERES", - "nomCommune": "SAVIERES" + "codePostal": "08220", + "codeCommune": "08113", + "libelleAcheminement": "CHAUMONT PORCIEN", + "nomCommune": "CHAUMONT PORCIEN" }, { - "codePostal": "13150", - "codeCommune": "13017", - "libelleAcheminement": "BOULBON", - "nomCommune": "BOULBON" + "codePostal": "21290", + "codeCommune": "21063", + "libelleAcheminement": "BENEUVRE", + "nomCommune": "BENEUVRE" }, { - "codePostal": "52230", - "codeCommune": "52376", - "libelleAcheminement": "PANSEY", - "nomCommune": "PANSEY" + "codePostal": "21400", + "codeCommune": "21149", + "libelleAcheminement": "CHARREY SUR SEINE", + "nomCommune": "CHARREY SUR SEINE" }, { - "codePostal": "10700", - "codeCommune": "10369", - "libelleAcheminement": "SEMOINE", - "nomCommune": "SEMOINE" + "codePostal": "06200", + "codeCommune": "06088", + "libelleAcheminement": "NICE", + "nomCommune": "NICE" }, { - "codePostal": "13620", - "codeCommune": "13021", - "libelleAcheminement": "CARRY LE ROUET", - "nomCommune": "CARRY LE ROUET" + "codePostal": "08220", + "codeCommune": "08113", + "libelleAcheminement": "CHAUMONT PORCIEN", + "nomCommune": "CHAUMONT PORCIEN" }, { - "codePostal": "52300", - "codeCommune": "52378", - "libelleAcheminement": "PAROY SUR SAULX", - "nomCommune": "PAROY SUR SAULX" + "codePostal": "21310", + "codeCommune": "21072", + "libelleAcheminement": "BEZOUOTTE", + "nomCommune": "BEZOUOTTE" }, { - "codePostal": "10700", - "codeCommune": "10379", - "libelleAcheminement": "TORCY LE GRAND", - "nomCommune": "TORCY LE GRAND" + "codePostal": "21320", + "codeCommune": "21152", + "libelleAcheminement": "CHATEAUNEUF", + "nomCommune": "CHATEAUNEUF" }, { - "codePostal": "13220", - "codeCommune": "13026", - "libelleAcheminement": "CHATEAUNEUF LES MARTIGUES", - "nomCommune": "CHATEAUNEUF LES MARTIGUES" + "codePostal": "06580", + "codeCommune": "06090", + "libelleAcheminement": "PEGOMAS", + "nomCommune": "PEGOMAS" }, { - "codePostal": "52160", - "codeCommune": "52384", - "libelleAcheminement": "PERROGNEY LES FONTAINES", - "nomCommune": "PERROGNEY LES FONTAINES" + "codePostal": "08450", + "codeCommune": "08115", + "libelleAcheminement": "CHEMERY CHEHERY", + "nomCommune": "CHEMERY CHEHERY" }, { - "codePostal": "10290", - "codeCommune": "10383", - "libelleAcheminement": "TRANCAULT", - "nomCommune": "TRANCAULT" + "codePostal": "21270", + "codeCommune": "21076", + "libelleAcheminement": "BINGES", + "nomCommune": "BINGES" }, { - "codePostal": "13600", - "codeCommune": "13028", - "libelleAcheminement": "LA CIOTAT", - "nomCommune": "LA CIOTAT" + "codePostal": "21610", + "codeCommune": "21158", + "libelleAcheminement": "CHAUME ET COURCHAMP", + "nomCommune": "CHAUME ET COURCHAMP" }, { - "codePostal": "52190", - "codeCommune": "52405", - "libelleAcheminement": "LE MONTSAUGEONNAIS", - "nomCommune": "LE MONTSAUGEONNAIS" + "codePostal": "06440", + "codeCommune": "06091", + "libelleAcheminement": "PEILLE", + "nomCommune": "PEILLE" }, { - "codePostal": "10150", - "codeCommune": "10391", - "libelleAcheminement": "VAILLY", - "nomCommune": "VAILLY" + "codePostal": "08390", + "codeCommune": "08116", + "libelleAcheminement": "BAIRON ET SES ENVIRONS", + "nomCommune": "BAIRON ET SES ENVIRONS" }, { - "codePostal": "13250", - "codeCommune": "13029", - "libelleAcheminement": "CORNILLON CONFOUX", - "nomCommune": "CORNILLON CONFOUX" + "codePostal": "21540", + "codeCommune": "21081", + "libelleAcheminement": "BLAISY HAUT", + "nomCommune": "BLAISY HAUT" }, { - "codePostal": "52170", - "codeCommune": "52414", - "libelleAcheminement": "RACHECOURT SUR MARNE", - "nomCommune": "RACHECOURT SUR MARNE" + "codePostal": "21260", + "codeCommune": "21163", + "libelleAcheminement": "CHAZEUIL", + "nomCommune": "CHAZEUIL" }, { - "codePostal": "10140", - "codeCommune": "10397", - "libelleAcheminement": "VAUCHONVILLIERS", - "nomCommune": "VAUCHONVILLIERS" + "codePostal": "06530", + "codeCommune": "06095", + "libelleAcheminement": "PEYMEINADE", + "nomCommune": "PEYMEINADE" }, { - "codePostal": "13630", - "codeCommune": "13036", - "libelleAcheminement": "EYRAGUES", - "nomCommune": "EYRAGUES" + "codePostal": "08460", + "codeCommune": "08124", + "libelleAcheminement": "CLAVY WARBY", + "nomCommune": "CLAVY WARBY" }, { - "codePostal": "52370", - "codeCommune": "52419", - "libelleAcheminement": "RENNEPONT", - "nomCommune": "RENNEPONT" + "codePostal": "21440", + "codeCommune": "21085", + "libelleAcheminement": "BLIGNY LE SEC", + "nomCommune": "BLIGNY LE SEC" }, { - "codePostal": "10240", - "codeCommune": "10398", - "libelleAcheminement": "VAUCOGNE", - "nomCommune": "VAUCOGNE" + "codePostal": "21540", + "codeCommune": "21168", + "libelleAcheminement": "CHEVANNAY", + "nomCommune": "CHEVANNAY" }, { - "codePostal": "13120", - "codeCommune": "13041", - "libelleAcheminement": "GARDANNE", - "nomCommune": "GARDANNE" + "codePostal": "06420", + "codeCommune": "06110", + "libelleAcheminement": "ROUBION", + "nomCommune": "ROUBION" }, { - "codePostal": "52190", - "codeCommune": "52425", - "libelleAcheminement": "RIVIERE LES FOSSES", - "nomCommune": "RIVIERE LES FOSSES" + "codePostal": "08250", + "codeCommune": "08128", + "libelleAcheminement": "CONDE LES AUTRY", + "nomCommune": "CONDE LES AUTRY" }, { - "codePostal": "10700", - "codeCommune": "10400", - "libelleAcheminement": "VAUPOISSON", - "nomCommune": "VAUPOISSON" + "codePostal": "21520", + "codeCommune": "21090", + "libelleAcheminement": "BOUDREVILLE", + "nomCommune": "BOUDREVILLE" }, { - "codePostal": "13180", - "codeCommune": "13043", - "libelleAcheminement": "GIGNAC LA NERTHE", - "nomCommune": "GIGNAC LA NERTHE" + "codePostal": "21250", + "codeCommune": "21189", + "libelleAcheminement": "CORBERON", + "nomCommune": "CORBERON" }, { - "codePostal": "52330", - "codeCommune": "52426", - "libelleAcheminement": "RIZAUCOURT BUCHEY", - "nomCommune": "RIZAUCOURT BUCHEY" + "codePostal": "06420", + "codeCommune": "06111", + "libelleAcheminement": "ROURE", + "nomCommune": "ROURE" }, { - "codePostal": "10140", - "codeCommune": "10401", - "libelleAcheminement": "VENDEUVRE SUR BARSE", - "nomCommune": "VENDEUVRE SUR BARSE" + "codePostal": "08300", + "codeCommune": "08133", + "libelleAcheminement": "COUCY", + "nomCommune": "COUCY" }, { - "codePostal": "13690", - "codeCommune": "13045", - "libelleAcheminement": "GRAVESON", - "nomCommune": "GRAVESON" + "codePostal": "21360", + "codeCommune": "21091", + "libelleAcheminement": "BOUHEY", + "nomCommune": "BOUHEY" }, { - "codePostal": "52330", - "codeCommune": "52426", - "libelleAcheminement": "RIZAUCOURT BUCHEY", - "nomCommune": "RIZAUCOURT BUCHEY" + "codePostal": "21190", + "codeCommune": "21190", + "libelleAcheminement": "CORCELLES LES ARTS", + "nomCommune": "CORCELLES LES ARTS" }, { - "codePostal": "10200", - "codeCommune": "10403", - "libelleAcheminement": "VERNONVILLIERS", - "nomCommune": "VERNONVILLIERS" + "codePostal": "06500", + "codeCommune": "06113", + "libelleAcheminement": "STE AGNES", + "nomCommune": "STE AGNES" }, { - "codePostal": "13490", - "codeCommune": "13048", - "libelleAcheminement": "JOUQUES", - "nomCommune": "JOUQUES" + "codePostal": "08160", + "codeCommune": "08140", + "libelleAcheminement": "DOM LE MESNIL", + "nomCommune": "DOM LE MESNIL" }, { - "codePostal": "52260", - "codeCommune": "52432", - "libelleAcheminement": "ROLAMPONT", - "nomCommune": "ROLAMPONT" + "codePostal": "21250", + "codeCommune": "21095", + "libelleAcheminement": "BOUSSELANGE", + "nomCommune": "BOUSSELANGE" }, { - "codePostal": "10240", - "codeCommune": "10405", - "libelleAcheminement": "VERRICOURT", - "nomCommune": "VERRICOURT" + "codePostal": "21910", + "codeCommune": "21191", + "libelleAcheminement": "CORCELLES LES CITEAUX", + "nomCommune": "CORCELLES LES CITEAUX" }, { - "codePostal": "13410", - "codeCommune": "13050", - "libelleAcheminement": "LAMBESC", - "nomCommune": "LAMBESC" + "codePostal": "06660", + "codeCommune": "06120", + "libelleAcheminement": "ST ETIENNE DE TINEE", + "nomCommune": "ST ETIENNE DE TINEE" }, { - "codePostal": "52200", - "codeCommune": "52449", - "libelleAcheminement": "SAINTS GEOSMES", - "nomCommune": "SAINTS GEOSMES" + "codePostal": "08350", + "codeCommune": "08142", + "libelleAcheminement": "DONCHERY", + "nomCommune": "DONCHERY" }, { - "codePostal": "10290", - "codeCommune": "10410", - "libelleAcheminement": "VILLADIN", - "nomCommune": "VILLADIN" + "codePostal": "21260", + "codeCommune": "21096", + "libelleAcheminement": "BOUSSENOIS", + "nomCommune": "BOUSSENOIS" }, { - "codePostal": "13370", - "codeCommune": "13053", - "libelleAcheminement": "MALLEMORT", - "nomCommune": "MALLEMORT" + "codePostal": "21460", + "codeCommune": "21198", + "libelleAcheminement": "CORROMBLES", + "nomCommune": "CORROMBLES" }, { - "codePostal": "52200", - "codeCommune": "52457", - "libelleAcheminement": "ST VALLIER SUR MARNE", - "nomCommune": "ST VALLIER SUR MARNE" + "codePostal": "06640", + "codeCommune": "06122", + "libelleAcheminement": "ST JEANNET", + "nomCommune": "ST JEANNET" }, { - "codePostal": "10260", - "codeCommune": "10419", - "libelleAcheminement": "VILLEMOYENNE", - "nomCommune": "VILLEMOYENNE" + "codePostal": "08220", + "codeCommune": "08146", + "libelleAcheminement": "DRAIZE", + "nomCommune": "DRAIZE" }, { - "codePostal": "13500", - "codeCommune": "13056", - "libelleAcheminement": "MARTIGUES", - "nomCommune": "MARTIGUES" + "codePostal": "21560", + "codeCommune": "21105", + "libelleAcheminement": "BRESSEY SUR TILLE", + "nomCommune": "BRESSEY SUR TILLE" }, { - "codePostal": "52500", - "codeCommune": "52464", - "libelleAcheminement": "SAULLES", - "nomCommune": "SAULLES" + "codePostal": "21320", + "codeCommune": "21210", + "libelleAcheminement": "CREANCEY", + "nomCommune": "CREANCEY" }, { - "codePostal": "10370", - "codeCommune": "10420", - "libelleAcheminement": "VILLENAUXE LA GRANDE", - "nomCommune": "VILLENAUXE LA GRANDE" + "codePostal": "06470", + "codeCommune": "06125", + "libelleAcheminement": "ST MARTIN D ENTRAUNES", + "nomCommune": "ST MARTIN D ENTRAUNES" }, { - "codePostal": "13500", - "codeCommune": "13056", - "libelleAcheminement": "MARTIGUES", - "nomCommune": "MARTIGUES" + "codePostal": "08260", + "codeCommune": "08154", + "libelleAcheminement": "ESTREBAY", + "nomCommune": "ESTREBAY" }, { - "codePostal": "52140", - "codeCommune": "52465", - "libelleAcheminement": "SAULXURES", - "nomCommune": "SAULXURES" + "codePostal": "21570", + "codeCommune": "21109", + "libelleAcheminement": "BRION SUR OURCE BELAN", + "nomCommune": "BRION SUR OURCE" }, { - "codePostal": "10700", - "codeCommune": "10430", - "libelleAcheminement": "VILLIERS HERBISSE", - "nomCommune": "VILLIERS HERBISSE" + "codePostal": "21120", + "codeCommune": "21211", + "libelleAcheminement": "CRECEY SUR TILLE", + "nomCommune": "CRECEY SUR TILLE" }, { - "codePostal": "13103", - "codeCommune": "13057", - "libelleAcheminement": "MAS BLANC DES ALPILLES", - "nomCommune": "MAS BLANC DES ALPILLES" + "codePostal": "06670", + "codeCommune": "06126", + "libelleAcheminement": "ST MARTIN DU VAR", + "nomCommune": "ST MARTIN DU VAR" }, { - "codePostal": "52150", - "codeCommune": "52476", - "libelleAcheminement": "SOMMERECOURT", - "nomCommune": "SOMMERECOURT" + "codePostal": "08400", + "codeCommune": "08164", + "libelleAcheminement": "FALAISE", + "nomCommune": "FALAISE" }, { - "codePostal": "10210", - "codeCommune": "10431", - "libelleAcheminement": "VILLIERS LE BOIS", - "nomCommune": "VILLIERS LE BOIS" + "codePostal": "21150", + "codeCommune": "21122", + "libelleAcheminement": "BUSSY LE GRAND", + "nomCommune": "BUSSY LE GRAND" }, { - "codePostal": "13140", - "codeCommune": "13063", - "libelleAcheminement": "MIRAMAS", - "nomCommune": "MIRAMAS" + "codePostal": "21500", + "codeCommune": "21212", + "libelleAcheminement": "CREPAND", + "nomCommune": "CREPAND" }, { - "codePostal": "52400", - "codeCommune": "52483", - "libelleAcheminement": "SOYERS", - "nomCommune": "SOYERS" + "codePostal": "06460", + "codeCommune": "06130", + "libelleAcheminement": "ST VALLIER DE THIEY", + "nomCommune": "ST VALLIER DE THIEY" }, { - "codePostal": "10700", - "codeCommune": "10436", - "libelleAcheminement": "VINETS", - "nomCommune": "VINETS" + "codePostal": "08270", + "codeCommune": "08165", + "libelleAcheminement": "FAUX", + "nomCommune": "FAUX" }, { - "codePostal": "13330", - "codeCommune": "13069", - "libelleAcheminement": "PELISSANNE", - "nomCommune": "PELISSANNE" + "codePostal": "21430", + "codeCommune": "21124", + "libelleAcheminement": "CENSEREY", + "nomCommune": "CENSEREY" }, { - "codePostal": "52230", - "codeCommune": "52491", - "libelleAcheminement": "THONNANCE LES MOULINS", - "nomCommune": "THONNANCE LES MOULINS" + "codePostal": "21360", + "codeCommune": "21214", + "libelleAcheminement": "CRUGEY", + "nomCommune": "CRUGEY" }, { - "codePostal": "10160", - "codeCommune": "10444", - "libelleAcheminement": "VULAINES", - "nomCommune": "VULAINES" + "codePostal": "06910", + "codeCommune": "06135", + "libelleAcheminement": "SIGALE", + "nomCommune": "SIGALE" }, { - "codePostal": "13860", - "codeCommune": "13074", - "libelleAcheminement": "PEYROLLES EN PROVENCE", - "nomCommune": "PEYROLLES EN PROVENCE" + "codePostal": "08370", + "codeCommune": "08168", + "libelleAcheminement": "LA FERTE SUR CHIERS", + "nomCommune": "LA FERTE SUR CHIERS" }, { - "codePostal": "52230", - "codeCommune": "52491", - "libelleAcheminement": "THONNANCE LES MOULINS", - "nomCommune": "THONNANCE LES MOULINS" + "codePostal": "21210", + "codeCommune": "21139", + "libelleAcheminement": "CHAMPEAU EN MORVAN", + "nomCommune": "CHAMPEAU EN MORVAN" }, { - "codePostal": "11320", - "codeCommune": "11002", - "libelleAcheminement": "AIROUX", - "nomCommune": "AIROUX" + "codePostal": "21230", + "codeCommune": "21222", + "libelleAcheminement": "CUSSY LE CHATEL", + "nomCommune": "CUSSY LE CHATEL" }, { - "codePostal": "13340", - "codeCommune": "13081", - "libelleAcheminement": "ROGNAC", - "nomCommune": "ROGNAC" + "codePostal": "06530", + "codeCommune": "06140", + "libelleAcheminement": "LE TIGNET", + "nomCommune": "LE TIGNET" }, { - "codePostal": "52500", - "codeCommune": "52503", - "libelleAcheminement": "VALLEROY", - "nomCommune": "VALLEROY" + "codePostal": "08200", + "codeCommune": "08170", + "libelleAcheminement": "FLEIGNEUX", + "nomCommune": "FLEIGNEUX" }, { - "codePostal": "11300", - "codeCommune": "11003", - "libelleAcheminement": "AJAC", - "nomCommune": "AJAC" + "codePostal": "21690", + "codeCommune": "21144", + "libelleAcheminement": "CHARENCEY", + "nomCommune": "CHARENCEY" }, { - "codePostal": "13840", - "codeCommune": "13082", - "libelleAcheminement": "ROGNES", - "nomCommune": "ROGNES" + "codePostal": "21121", + "codeCommune": "21223", + "libelleAcheminement": "DAIX", + "nomCommune": "DAIX" }, { - "codePostal": "52000", - "codeCommune": "52514", - "libelleAcheminement": "VERBIESLES", - "nomCommune": "VERBIESLES" + "codePostal": "06450", + "codeCommune": "06151", + "libelleAcheminement": "UTELLE", + "nomCommune": "UTELLE" }, { - "codePostal": "11240", - "codeCommune": "11004", - "libelleAcheminement": "ALAIGNE", - "nomCommune": "ALAIGNE" + "codePostal": "08160", + "codeCommune": "08173", + "libelleAcheminement": "FLIZE", + "nomCommune": "FLIZE" }, { - "codePostal": "13360", - "codeCommune": "13086", - "libelleAcheminement": "ROQUEVAIRE", - "nomCommune": "ROQUEVAIRE" + "codePostal": "21610", + "codeCommune": "21158", + "libelleAcheminement": "CHAUME ET COURCHAMP", + "nomCommune": "CHAUME ET COURCHAMP" }, { - "codePostal": "52700", - "codeCommune": "52517", - "libelleAcheminement": "VESAIGNES SOUS LAFAUCHE", - "nomCommune": "VESAIGNES SOUS LAFAUCHE" + "codePostal": "21220", + "codeCommune": "21228", + "libelleAcheminement": "DETAIN ET BRUANT", + "nomCommune": "DETAIN ET BRUANT" }, { - "codePostal": "11290", - "codeCommune": "11005", - "libelleAcheminement": "ALAIRAC", - "nomCommune": "ALAIRAC" + "codePostal": "06430", + "codeCommune": "06163", + "libelleAcheminement": "TENDE", + "nomCommune": "TENDE" }, { - "codePostal": "13740", - "codeCommune": "13088", - "libelleAcheminement": "LE ROVE", - "nomCommune": "LE ROVE" + "codePostal": "08290", + "codeCommune": "08182", + "libelleAcheminement": "LE FRETY", + "nomCommune": "LE FRETY" }, { - "codePostal": "52160", - "codeCommune": "52526", - "libelleAcheminement": "VILLARS SANTENOGE", - "nomCommune": "VILLARS SANTENOGE" + "codePostal": "21450", + "codeCommune": "21160", + "libelleAcheminement": "CHAUME LES BAIGNEUX", + "nomCommune": "CHAUME LES BAIGNEUX" }, { - "codePostal": "11360", - "codeCommune": "11006", - "libelleAcheminement": "ALBAS", - "nomCommune": "ALBAS" + "codePostal": "21270", + "codeCommune": "21233", + "libelleAcheminement": "DRAMBON", + "nomCommune": "DRAMBON" }, { - "codePostal": "13460", - "codeCommune": "13096", - "libelleAcheminement": "SAINTES MARIES DE LA MER", - "nomCommune": "SAINTES MARIES DE LA MER" + "codePostal": "07440", + "codeCommune": "07007", + "libelleAcheminement": "ALBOUSSIERE", + "nomCommune": "ALBOUSSIERE" }, { - "codePostal": "52160", - "codeCommune": "52526", - "libelleAcheminement": "VILLARS SANTENOGE", - "nomCommune": "VILLARS SANTENOGE" + "codePostal": "08600", + "codeCommune": "08183", + "libelleAcheminement": "FROMELENNES", + "nomCommune": "FROMELENNES" }, { - "codePostal": "11170", - "codeCommune": "11009", - "libelleAcheminement": "ALZONNE", - "nomCommune": "ALZONNE" + "codePostal": "21700", + "codeCommune": "21162", + "libelleAcheminement": "CHAUX", + "nomCommune": "CHAUX" }, { - "codePostal": "13310", - "codeCommune": "13097", - "libelleAcheminement": "ST MARTIN DE CRAU", - "nomCommune": "ST MARTIN DE CRAU" + "codePostal": "21540", + "codeCommune": "21234", + "libelleAcheminement": "DREE", + "nomCommune": "DREE" }, { - "codePostal": "52190", - "codeCommune": "52529", - "libelleAcheminement": "VILLEGUSIEN LE LAC", - "nomCommune": "VILLEGUSIEN LE LAC" + "codePostal": "07530", + "codeCommune": "07011", + "libelleAcheminement": "VALLEES D ANTRAIGUES ASPERJOC", + "nomCommune": "VALLEES D ANTRAIGUES ASPERJOC" }, { - "codePostal": "11140", - "codeCommune": "11017", - "libelleAcheminement": "ARTIGUES", - "nomCommune": "ARTIGUES" + "codePostal": "08440", + "codeCommune": "08187", + "libelleAcheminement": "GERNELLE", + "nomCommune": "GERNELLE" }, { - "codePostal": "13119", - "codeCommune": "13101", - "libelleAcheminement": "ST SAVOURNIN", - "nomCommune": "ST SAVOURNIN" + "codePostal": "21800", + "codeCommune": "21171", + "libelleAcheminement": "CHEVIGNY ST SAUVEUR", + "nomCommune": "CHEVIGNY ST SAUVEUR" }, { - "codePostal": "52100", - "codeCommune": "52534", - "libelleAcheminement": "VILLIERS EN LIEU", - "nomCommune": "VILLIERS EN LIEU" + "codePostal": "21510", + "codeCommune": "21235", + "libelleAcheminement": "DUESME", + "nomCommune": "DUESME" }, { - "codePostal": "11330", - "codeCommune": "11020", - "libelleAcheminement": "AURIAC", - "nomCommune": "AURIAC" + "codePostal": "07310", + "codeCommune": "07012", + "libelleAcheminement": "ARCENS", + "nomCommune": "ARCENS" }, { - "codePostal": "13560", - "codeCommune": "13105", - "libelleAcheminement": "SENAS", - "nomCommune": "SENAS" + "codePostal": "08220", + "codeCommune": "08192", + "libelleAcheminement": "GIVRON", + "nomCommune": "GIVRON" }, { - "codePostal": "52000", - "codeCommune": "52535", - "libelleAcheminement": "VILLIERS LE SEC", - "nomCommune": "VILLIERS LE SEC" + "codePostal": "21270", + "codeCommune": "21175", + "libelleAcheminement": "CIREY LES PONTAILLER", + "nomCommune": "CIREY LES PONTAILLER" }, { - "codePostal": "11300", - "codeCommune": "11039", - "libelleAcheminement": "LA BEZOLE", - "nomCommune": "LA BEZOLE" + "codePostal": "21120", + "codeCommune": "21240", + "libelleAcheminement": "ECHEVANNES", + "nomCommune": "ECHEVANNES" }, { - "codePostal": "13470", - "codeCommune": "13119", - "libelleAcheminement": "CARNOUX EN PROVENCE", - "nomCommune": "CARNOUX EN PROVENCE" + "codePostal": "07330", + "codeCommune": "07018", + "libelleAcheminement": "ASTET", + "nomCommune": "ASTET" }, { - "codePostal": "52160", - "codeCommune": "52540", - "libelleAcheminement": "VITRY EN MONTAGNE", - "nomCommune": "VITRY EN MONTAGNE" + "codePostal": "08250", + "codeCommune": "08197", + "libelleAcheminement": "GRANDHAM", + "nomCommune": "GRANDHAM" }, { - "codePostal": "11300", - "codeCommune": "11046", - "libelleAcheminement": "BOURIGEOLE", - "nomCommune": "BOURIGEOLE" + "codePostal": "21490", + "codeCommune": "21179", + "libelleAcheminement": "CLENAY", + "nomCommune": "CLENAY" }, { - "codePostal": "13006", - "codeCommune": "13206", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 06" + "codePostal": "21290", + "codeCommune": "21250", + "libelleAcheminement": "ESSAROIS", + "nomCommune": "ESSAROIS" }, { - "codePostal": "52400", - "codeCommune": "52544", - "libelleAcheminement": "VOISEY", - "nomCommune": "VOISEY" + "codePostal": "07210", + "codeCommune": "07022", + "libelleAcheminement": "BAIX", + "nomCommune": "BAIX" }, { - "codePostal": "11270", - "codeCommune": "11051", - "libelleAcheminement": "BREZILHAC", - "nomCommune": "BREZILHAC" + "codePostal": "08400", + "codeCommune": "08200", + "libelleAcheminement": "GRIVY LOISY", + "nomCommune": "GRIVY LOISY" }, { - "codePostal": "13008", - "codeCommune": "13208", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 08" + "codePostal": "21220", + "codeCommune": "21182", + "libelleAcheminement": "COLLONGES LES BEVY", + "nomCommune": "COLLONGES LES BEVY" }, { - "codePostal": "52400", - "codeCommune": "52544", - "libelleAcheminement": "VOISEY", - "nomCommune": "VOISEY" + "codePostal": "21500", + "codeCommune": "21252", + "libelleAcheminement": "ETAIS", + "nomCommune": "ETAIS" }, { - "codePostal": "11160", - "codeCommune": "11056", - "libelleAcheminement": "CABRESPINE", - "nomCommune": "CABRESPINE" + "codePostal": "07630", + "codeCommune": "07026", + "libelleAcheminement": "LE BEAGE", + "nomCommune": "LE BEAGE" }, { - "codePostal": "13011", - "codeCommune": "13211", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 11" + "codePostal": "08290", + "codeCommune": "08208", + "libelleAcheminement": "HANNAPPES", + "nomCommune": "HANNAPPES" }, { - "codePostal": "52240", - "codeCommune": "52549", - "libelleAcheminement": "VRONCOURT LA COTE", - "nomCommune": "VRONCOURT LA COTE" + "codePostal": "21110", + "codeCommune": "21183", + "libelleAcheminement": "COLLONGES ET PREMIERES", + "nomCommune": "COLLONGES ET PREMIERES" }, { - "codePostal": "11240", - "codeCommune": "11061", - "libelleAcheminement": "CAMBIEURE", - "nomCommune": "CAMBIEURE" + "codePostal": "21400", + "codeCommune": "21258", + "libelleAcheminement": "ETROCHEY", + "nomCommune": "ETROCHEY" }, { - "codePostal": "13013", - "codeCommune": "13213", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 13" + "codePostal": "07800", + "codeCommune": "07027", + "libelleAcheminement": "BEAUCHASTEL", + "nomCommune": "BEAUCHASTEL" }, { - "codePostal": "53240", - "codeCommune": "53002", - "libelleAcheminement": "ALEXAIN", - "nomCommune": "ALEXAIN" + "codePostal": "08150", + "codeCommune": "08212", + "libelleAcheminement": "HARCY", + "nomCommune": "HARCY" }, { - "codePostal": "11700", - "codeCommune": "11068", - "libelleAcheminement": "CAPENDU", - "nomCommune": "CAPENDU" + "codePostal": "21190", + "codeCommune": "21196", + "libelleAcheminement": "CORPEAU", + "nomCommune": "CORPEAU" }, { - "codePostal": "13016", - "codeCommune": "13216", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 16" + "codePostal": "21640", + "codeCommune": "21267", + "libelleAcheminement": "FLAGEY ECHEZEAUX", + "nomCommune": "FLAGEY ECHEZEAUX" }, { - "codePostal": "53240", - "codeCommune": "53005", - "libelleAcheminement": "ANDOUILLE", - "nomCommune": "ANDOUILLE" + "codePostal": "07460", + "codeCommune": "07028", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "11000", - "codeCommune": "11069", - "libelleAcheminement": "CARCASSONNE", - "nomCommune": "CARCASSONNE" + "codePostal": "08300", + "codeCommune": "08219", + "libelleAcheminement": "HAUTEVILLE", + "nomCommune": "HAUTEVILLE" }, { - "codePostal": "14190", - "codeCommune": "14005", - "libelleAcheminement": "VALAMBRAY", - "nomCommune": "VALAMBRAY" + "codePostal": "21160", + "codeCommune": "21200", + "libelleAcheminement": "COUCHEY", + "nomCommune": "COUCHEY" }, { - "codePostal": "53340", - "codeCommune": "53019", - "libelleAcheminement": "BANNES", - "nomCommune": "BANNES" + "codePostal": "21230", + "codeCommune": "21274", + "libelleAcheminement": "FOISSY", + "nomCommune": "FOISSY" }, { - "codePostal": "11190", - "codeCommune": "11073", - "libelleAcheminement": "CASSAIGNES", - "nomCommune": "CASSAIGNES" + "codePostal": "07110", + "codeCommune": "07029", + "libelleAcheminement": "BEAUMONT", + "nomCommune": "BEAUMONT" }, { - "codePostal": "14370", - "codeCommune": "14005", - "libelleAcheminement": "VALAMBRAY", - "nomCommune": "VALAMBRAY" + "codePostal": "08370", + "codeCommune": "08223", + "libelleAcheminement": "HERBEUVAL", + "nomCommune": "HERBEUVAL" }, { - "codePostal": "53440", - "codeCommune": "53021", - "libelleAcheminement": "LA BAZOGE MONTPINCON", - "nomCommune": "LA BAZOGE MONTPINCON" + "codePostal": "21460", + "codeCommune": "21203", + "libelleAcheminement": "COURCELLES FREMOY", + "nomCommune": "COURCELLES FREMOY" }, { - "codePostal": "11320", - "codeCommune": "11074", - "libelleAcheminement": "LES CASSES", - "nomCommune": "LES CASSES" + "codePostal": "21450", + "codeCommune": "21276", + "libelleAcheminement": "FONTAINES EN DUESMOIS", + "nomCommune": "FONTAINES EN DUESMOIS" }, { - "codePostal": "14540", - "codeCommune": "14005", - "libelleAcheminement": "VALAMBRAY", - "nomCommune": "VALAMBRAY" + "codePostal": "07410", + "codeCommune": "07039", + "libelleAcheminement": "BOZAS", + "nomCommune": "BOZAS" }, { - "codePostal": "53290", - "codeCommune": "53027", - "libelleAcheminement": "BEAUMONT PIED DE BOEUF", - "nomCommune": "BEAUMONT PIED DE BOEUF" + "codePostal": "08200", + "codeCommune": "08232", + "libelleAcheminement": "ILLY", + "nomCommune": "ILLY" }, { - "codePostal": "11250", - "codeCommune": "11082", - "libelleAcheminement": "CAUNETTE SUR LAUQUET", - "nomCommune": "CAUNETTE SUR LAUQUET" + "codePostal": "21310", + "codeCommune": "21215", + "libelleAcheminement": "CUISEREY", + "nomCommune": "CUISEREY" }, { - "codePostal": "14240", - "codeCommune": "14011", - "libelleAcheminement": "AURSEULLES", - "nomCommune": "AURSEULLES" + "codePostal": "21121", + "codeCommune": "21278", + "libelleAcheminement": "FONTAINE LES DIJON", + "nomCommune": "FONTAINE LES DIJON" }, { - "codePostal": "53290", - "codeCommune": "53029", - "libelleAcheminement": "BIERNE LES VILLAGES", - "nomCommune": "BIERNE LES VILLAGES" + "codePostal": "07270", + "codeCommune": "07040", + "libelleAcheminement": "BOUCIEU LE ROI", + "nomCommune": "BOUCIEU LE ROI" }, { - "codePostal": "11300", - "codeCommune": "11090", - "libelleAcheminement": "CEPIE", - "nomCommune": "CEPIE" + "codePostal": "08310", + "codeCommune": "08239", + "libelleAcheminement": "JUNIVILLE", + "nomCommune": "JUNIVILLE" }, { - "codePostal": "14240", - "codeCommune": "14011", - "libelleAcheminement": "AURSEULLES", - "nomCommune": "AURSEULLES" + "codePostal": "21380", + "codeCommune": "21218", + "libelleAcheminement": "CURTIL ST SEINE", + "nomCommune": "CURTIL ST SEINE" }, { - "codePostal": "53240", - "codeCommune": "53031", - "libelleAcheminement": "LA BIGOTTIERE", - "nomCommune": "LA BIGOTTIERE" + "codePostal": "21700", + "codeCommune": "21289", + "libelleAcheminement": "FUSSEY", + "nomCommune": "FUSSEY" }, { - "codePostal": "11230", - "codeCommune": "11091", - "libelleAcheminement": "CHALABRE", - "nomCommune": "CHALABRE" + "codePostal": "07700", + "codeCommune": "07042", + "libelleAcheminement": "BOURG ST ANDEOL", + "nomCommune": "BOURG ST ANDEOL" }, { - "codePostal": "14240", - "codeCommune": "14011", - "libelleAcheminement": "AURSEULLES", - "nomCommune": "AURSEULLES" + "codePostal": "08130", + "codeCommune": "08244", + "libelleAcheminement": "LAMETZ", + "nomCommune": "LAMETZ" }, { - "codePostal": "53410", - "codeCommune": "53045", - "libelleAcheminement": "LA BRULATTE", - "nomCommune": "LA BRULATTE" + "codePostal": "21580", + "codeCommune": "21220", + "libelleAcheminement": "CUSSEY LES FORGES", + "nomCommune": "CUSSEY LES FORGES" }, { - "codePostal": "11250", - "codeCommune": "11094", - "libelleAcheminement": "CLERMONT SUR LAUQUET", - "nomCommune": "CLERMONT SUR LAUQUET" + "codePostal": "21140", + "codeCommune": "21291", + "libelleAcheminement": "GENAY", + "nomCommune": "GENAY" }, { - "codePostal": "14250", - "codeCommune": "14011", - "libelleAcheminement": "AURSEULLES", - "nomCommune": "AURSEULLES" + "codePostal": "07340", + "codeCommune": "07044", + "libelleAcheminement": "BROSSAINC", + "nomCommune": "BROSSAINC" }, { - "codePostal": "53170", - "codeCommune": "53046", - "libelleAcheminement": "LE BURET", - "nomCommune": "LE BURET" + "codePostal": "08600", + "codeCommune": "08247", + "libelleAcheminement": "LANDRICHAMPS", + "nomCommune": "LANDRICHAMPS" }, { - "codePostal": "11700", - "codeCommune": "11095", - "libelleAcheminement": "COMIGNE", - "nomCommune": "COMIGNE" + "codePostal": "21350", + "codeCommune": "21224", + "libelleAcheminement": "DAMPIERRE EN MONTAGNE", + "nomCommune": "DAMPIERRE EN MONTAGNE" }, { - "codePostal": "14370", - "codeCommune": "14020", - "libelleAcheminement": "ARGENCES", - "nomCommune": "ARGENCES" + "codePostal": "21250", + "codeCommune": "21301", + "libelleAcheminement": "GLANON", + "nomCommune": "GLANON" }, { - "codePostal": "53470", - "codeCommune": "53049", - "libelleAcheminement": "CHALONS DU MAINE", - "nomCommune": "CHALONS DU MAINE" + "codePostal": "07450", + "codeCommune": "07045", + "libelleAcheminement": "BURZET", + "nomCommune": "BURZET" }, { - "codePostal": "11140", - "codeCommune": "11104", - "libelleAcheminement": "COUNOZOULS", - "nomCommune": "COUNOZOULS" + "codePostal": "08310", + "codeCommune": "08250", + "libelleAcheminement": "LEFFINCOURT", + "nomCommune": "LEFFINCOURT" }, { - "codePostal": "14130", - "codeCommune": "14032", - "libelleAcheminement": "LES AUTHIEUX SUR CALONNE", - "nomCommune": "LES AUTHIEUX SUR CALONNE" + "codePostal": "21121", + "codeCommune": "21227", + "libelleAcheminement": "DAROIS", + "nomCommune": "DAROIS" }, { - "codePostal": "53370", - "codeCommune": "53052", - "libelleAcheminement": "CHAMPFREMONT", - "nomCommune": "CHAMPFREMONT" + "codePostal": "21330", + "codeCommune": "21309", + "libelleAcheminement": "GRISELLES", + "nomCommune": "GRISELLES" }, { - "codePostal": "11220", - "codeCommune": "11110", - "libelleAcheminement": "COUSTOUGE", - "nomCommune": "COUSTOUGE" + "codePostal": "07590", + "codeCommune": "07047", + "libelleAcheminement": "CELLIER DU LUC", + "nomCommune": "CELLIER DU LUC" }, { - "codePostal": "14260", - "codeCommune": "14037", - "libelleAcheminement": "MALHERBE SUR AJON", - "nomCommune": "MALHERBE SUR AJON" + "codePostal": "08300", + "codeCommune": "08262", + "libelleAcheminement": "LUCQUY", + "nomCommune": "LUCQUY" }, { - "codePostal": "53810", - "codeCommune": "53054", - "libelleAcheminement": "CHANGE", - "nomCommune": "CHANGE" + "codePostal": "21430", + "codeCommune": "21229", + "libelleAcheminement": "DIANCEY", + "nomCommune": "DIANCEY" }, { - "codePostal": "11410", - "codeCommune": "11114", - "libelleAcheminement": "CUMIES", - "nomCommune": "CUMIES" + "codePostal": "21250", + "codeCommune": "21311", + "libelleAcheminement": "GROSBOIS LES TICHEY", + "nomCommune": "GROSBOIS LES TICHEY" }, { - "codePostal": "14260", - "codeCommune": "14037", - "libelleAcheminement": "MALHERBE SUR AJON", - "nomCommune": "MALHERBE SUR AJON" + "codePostal": "07140", + "codeCommune": "07050", + "libelleAcheminement": "CHAMBONAS", + "nomCommune": "CHAMBONAS" }, { - "codePostal": "53200", - "codeCommune": "53063", - "libelleAcheminement": "CHATELAIN", - "nomCommune": "CHATELAIN" + "codePostal": "08450", + "codeCommune": "08268", + "libelleAcheminement": "MAISONCELLE ET VILLERS", + "nomCommune": "MAISONCELLE ET VILLERS" }, { - "codePostal": "11390", - "codeCommune": "11115", - "libelleAcheminement": "CUXAC CABARDES", - "nomCommune": "CUXAC CABARDES" + "codePostal": "21390", + "codeCommune": "21232", + "libelleAcheminement": "DOMPIERRE EN MORVAN", + "nomCommune": "DOMPIERRE EN MORVAN" }, { - "codePostal": "14860", - "codeCommune": "14046", - "libelleAcheminement": "BAVENT", - "nomCommune": "BAVENT" + "codePostal": "21290", + "codeCommune": "21313", + "libelleAcheminement": "GURGY LE CHATEAU", + "nomCommune": "GURGY LE CHATEAU" }, { - "codePostal": "53340", - "codeCommune": "53067", - "libelleAcheminement": "CHEMERE LE ROI", - "nomCommune": "CHEMERE LE ROI" + "codePostal": "07340", + "codeCommune": "07056", + "libelleAcheminement": "CHARNAS", + "nomCommune": "CHARNAS" }, { - "codePostal": "11590", - "codeCommune": "11116", - "libelleAcheminement": "CUXAC D AUDE", - "nomCommune": "CUXAC D AUDE" + "codePostal": "08370", + "codeCommune": "08275", + "libelleAcheminement": "MARGNY", + "nomCommune": "MARGNY" }, { - "codePostal": "14970", - "codeCommune": "14060", - "libelleAcheminement": "BENOUVILLE", - "nomCommune": "BENOUVILLE" + "codePostal": "21510", + "codeCommune": "21237", + "libelleAcheminement": "ECHALOT", + "nomCommune": "ECHALOT" }, { - "codePostal": "53400", - "codeCommune": "53068", - "libelleAcheminement": "CHERANCE", - "nomCommune": "CHERANCE" + "codePostal": "21121", + "codeCommune": "21315", + "libelleAcheminement": "HAUTEVILLE LES DIJON", + "nomCommune": "HAUTEVILLE LES DIJON" }, { - "codePostal": "11300", - "codeCommune": "11119", - "libelleAcheminement": "LA DIGNE D AMONT", - "nomCommune": "LA DIGNE D AMONT" + "codePostal": "07160", + "codeCommune": "07064", + "libelleAcheminement": "LE CHEYLARD", + "nomCommune": "LE CHEYLARD" }, { - "codePostal": "14260", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "08290", + "codeCommune": "08277", + "libelleAcheminement": "MARLEMONT", + "nomCommune": "MARLEMONT" }, { - "codePostal": "53470", - "codeCommune": "53072", - "libelleAcheminement": "COMMER", - "nomCommune": "COMMER" + "codePostal": "21170", + "codeCommune": "21239", + "libelleAcheminement": "ECHENON", + "nomCommune": "ECHENON" }, { - "codePostal": "11700", - "codeCommune": "11122", - "libelleAcheminement": "DOUZENS", - "nomCommune": "DOUZENS" + "codePostal": "21270", + "codeCommune": "21316", + "libelleAcheminement": "HEUILLEY SUR SAONE", + "nomCommune": "HEUILLEY SUR SAONE" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "07380", + "codeCommune": "07065", + "libelleAcheminement": "CHIROLS", + "nomCommune": "CHIROLS" }, { - "codePostal": "53340", - "codeCommune": "53076", - "libelleAcheminement": "COSSE EN CHAMPAGNE", - "nomCommune": "COSSE EN CHAMPAGNE" + "codePostal": "08400", + "codeCommune": "08279", + "libelleAcheminement": "MARS SOUS BOURCQ", + "nomCommune": "MARS SOUS BOURCQ" }, { - "codePostal": "11200", - "codeCommune": "11126", - "libelleAcheminement": "ESCALES", - "nomCommune": "ESCALES" + "codePostal": "21360", + "codeCommune": "21243", + "libelleAcheminement": "ECUTIGNY", + "nomCommune": "ECUTIGNY" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "21250", + "codeCommune": "21322", + "libelleAcheminement": "JALLANGES", + "nomCommune": "JALLANGES" }, { - "codePostal": "53200", - "codeCommune": "53078", - "libelleAcheminement": "COUDRAY", - "nomCommune": "COUDRAY" + "codePostal": "07430", + "codeCommune": "07078", + "libelleAcheminement": "DAVEZIEUX", + "nomCommune": "DAVEZIEUX" }, { - "codePostal": "11340", - "codeCommune": "11130", - "libelleAcheminement": "ESPEZEL", - "nomCommune": "ESPEZEL" + "codePostal": "08400", + "codeCommune": "08280", + "libelleAcheminement": "MARVAUX VIEUX", + "nomCommune": "MARVAUX VIEUX" }, { - "codePostal": "14710", - "codeCommune": "14063", - "libelleAcheminement": "BERNESQ", - "nomCommune": "BERNESQ" + "codePostal": "21380", + "codeCommune": "21245", + "libelleAcheminement": "EPAGNY", + "nomCommune": "EPAGNY" }, { - "codePostal": "53230", - "codeCommune": "53082", - "libelleAcheminement": "COURBEVEILLE", - "nomCommune": "COURBEVEILLE" + "codePostal": "21310", + "codeCommune": "21323", + "libelleAcheminement": "JANCIGNY", + "nomCommune": "JANCIGNY" }, { - "codePostal": "11140", - "codeCommune": "11135", - "libelleAcheminement": "LA FAJOLLE", - "nomCommune": "LA FAJOLLE" + "codePostal": "07270", + "codeCommune": "07085", + "libelleAcheminement": "EMPURANY", + "nomCommune": "EMPURANY" }, { - "codePostal": "14170", - "codeCommune": "14064", - "libelleAcheminement": "BERNIERES D AILLY", - "nomCommune": "BERNIERES D AILLY" + "codePostal": "08500", + "codeCommune": "08284", + "libelleAcheminement": "LES MAZURES", + "nomCommune": "LES MAZURES" }, { - "codePostal": "53200", - "codeCommune": "53101", - "libelleAcheminement": "FROMENTIERES", - "nomCommune": "FROMENTIERES" + "codePostal": "21220", + "codeCommune": "21246", + "libelleAcheminement": "EPERNAY SOUS GEVREY", + "nomCommune": "EPERNAY SOUS GEVREY" }, { - "codePostal": "11240", - "codeCommune": "11139", - "libelleAcheminement": "FENOUILLET DU RAZES", - "nomCommune": "FENOUILLET DU RAZES" + "codePostal": "21110", + "codeCommune": "21330", + "libelleAcheminement": "LABERGEMENT FOIGNEY", + "nomCommune": "LABERGEMENT FOIGNEY" }, { - "codePostal": "14130", - "codeCommune": "14077", - "libelleAcheminement": "BLANGY LE CHATEAU", - "nomCommune": "BLANGY LE CHATEAU" + "codePostal": "07190", + "codeCommune": "07096", + "libelleAcheminement": "GLUIRAS", + "nomCommune": "GLUIRAS" }, { - "codePostal": "53370", - "codeCommune": "53106", - "libelleAcheminement": "GESVRES", - "nomCommune": "GESVRES" + "codePostal": "08090", + "codeCommune": "08298", + "libelleAcheminement": "MONTCY NOTRE DAME", + "nomCommune": "MONTCY NOTRE DAME" }, { - "codePostal": "11240", - "codeCommune": "11141", - "libelleAcheminement": "FERRAN", - "nomCommune": "FERRAN" + "codePostal": "21220", + "codeCommune": "21254", + "libelleAcheminement": "L ETANG VERGY", + "nomCommune": "L ETANG VERGY" }, { - "codePostal": "14910", - "codeCommune": "14079", - "libelleAcheminement": "BLONVILLE SUR MER", - "nomCommune": "BLONVILLE SUR MER" + "codePostal": "21140", + "codeCommune": "21341", + "libelleAcheminement": "LANTILLY", + "nomCommune": "LANTILLY" }, { - "codePostal": "53640", - "codeCommune": "53114", - "libelleAcheminement": "HARDANGES", - "nomCommune": "HARDANGES" + "codePostal": "07190", + "codeCommune": "07104", + "libelleAcheminement": "ISSAMOULENC", + "nomCommune": "ISSAMOULENC" }, { - "codePostal": "11300", - "codeCommune": "11142", - "libelleAcheminement": "FESTES ET ST ANDRE", - "nomCommune": "FESTES ET ST ANDRE" + "codePostal": "08800", + "codeCommune": "08302", + "libelleAcheminement": "MONTHERME", + "nomCommune": "MONTHERME" }, { - "codePostal": "14260", - "codeCommune": "14084", - "libelleAcheminement": "BONNEMAISON", - "nomCommune": "BONNEMAISON" + "codePostal": "21600", + "codeCommune": "21263", + "libelleAcheminement": "FENAY", + "nomCommune": "FENAY" }, { - "codePostal": "53160", - "codeCommune": "53120", - "libelleAcheminement": "IZE", - "nomCommune": "IZE" + "codePostal": "21250", + "codeCommune": "21344", + "libelleAcheminement": "LECHATELET", + "nomCommune": "LECHATELET" }, { - "codePostal": "11400", - "codeCommune": "11149", - "libelleAcheminement": "FONTERS DU RAZES", - "nomCommune": "FONTERS DU RAZES" + "codePostal": "07160", + "codeCommune": "07108", + "libelleAcheminement": "JAUNAC", + "nomCommune": "JAUNAC" }, { - "codePostal": "14700", - "codeCommune": "14087", - "libelleAcheminement": "BONNOEIL", - "nomCommune": "BONNOEIL" + "codePostal": "08800", + "codeCommune": "08302", + "libelleAcheminement": "MONTHERME", + "nomCommune": "MONTHERME" }, { - "codePostal": "53250", - "codeCommune": "53121", - "libelleAcheminement": "JAVRON LES CHAPELLES", - "nomCommune": "JAVRON LES CHAPELLES" + "codePostal": "21130", + "codeCommune": "21268", + "libelleAcheminement": "FLAGEY LES AUXONNE", + "nomCommune": "FLAGEY LES AUXONNE" }, { - "codePostal": "11390", - "codeCommune": "11150", - "libelleAcheminement": "FONTIERS CABARDES", - "nomCommune": "FONTIERS CABARDES" + "codePostal": "21520", + "codeCommune": "21350", + "libelleAcheminement": "LIGNEROLLES", + "nomCommune": "LIGNEROLLES" }, { - "codePostal": "14540", - "codeCommune": "14092", - "libelleAcheminement": "BOURGUEBUS", - "nomCommune": "BOURGUEBUS" + "codePostal": "07110", + "codeCommune": "07109", + "libelleAcheminement": "JOANNAS", + "nomCommune": "JOANNAS" }, { - "codePostal": "53110", - "codeCommune": "53127", - "libelleAcheminement": "LASSAY LES CHATEAUX", - "nomCommune": "LASSAY LES CHATEAUX" + "codePostal": "08220", + "codeCommune": "08307", + "libelleAcheminement": "MONTMEILLANT", + "nomCommune": "MONTMEILLANT" }, { - "codePostal": "11360", - "codeCommune": "11152", - "libelleAcheminement": "FONTJONCOUSE", - "nomCommune": "FONTJONCOUSE" + "codePostal": "21150", + "codeCommune": "21288", + "libelleAcheminement": "FROLOIS", + "nomCommune": "FROLOIS" }, { - "codePostal": "14390", - "codeCommune": "14117", - "libelleAcheminement": "CABOURG", - "nomCommune": "CABOURG" + "codePostal": "21520", + "codeCommune": "21357", + "libelleAcheminement": "LOUESME", + "nomCommune": "LOUESME" }, { - "codePostal": "53120", - "codeCommune": "53131", - "libelleAcheminement": "LESBOIS", - "nomCommune": "LESBOIS" + "codePostal": "07150", + "codeCommune": "07113", + "libelleAcheminement": "LABASTIDE DE VIRAC", + "nomCommune": "LABASTIDE DE VIRAC" }, { - "codePostal": "11190", - "codeCommune": "11155", - "libelleAcheminement": "FOURTOU", - "nomCommune": "FOURTOU" + "codePostal": "08460", + "codeCommune": "08315", + "libelleAcheminement": "NEUFMAISON", + "nomCommune": "NEUFMAISON" }, { - "codePostal": "14000", - "codeCommune": "14118", - "libelleAcheminement": "CAEN", - "nomCommune": "CAEN" + "codePostal": "21110", + "codeCommune": "21292", + "libelleAcheminement": "GENLIS", + "nomCommune": "GENLIS" }, { - "codePostal": "53150", - "codeCommune": "53134", - "libelleAcheminement": "LIVET", - "nomCommune": "LIVET" + "codePostal": "21120", + "codeCommune": "21361", + "libelleAcheminement": "LUX", + "nomCommune": "LUX" }, { - "codePostal": "11140", - "codeCommune": "11163", - "libelleAcheminement": "GINCLA", - "nomCommune": "GINCLA" + "codePostal": "07120", + "codeCommune": "07115", + "libelleAcheminement": "LABEAUME", + "nomCommune": "LABEAUME" }, { - "codePostal": "14240", - "codeCommune": "14120", - "libelleAcheminement": "CAHAGNES", - "nomCommune": "CAHAGNES" + "codePostal": "08380", + "codeCommune": "08319", + "libelleAcheminement": "NEUVILLE LEZ BEAULIEU", + "nomCommune": "NEUVILLE LEZ BEAULIEU" }, { - "codePostal": "53440", - "codeCommune": "53144", - "libelleAcheminement": "MARCILLE LA VILLE", - "nomCommune": "MARCILLE LA VILLE" + "codePostal": "21520", + "codeCommune": "21296", + "libelleAcheminement": "GEVROLLES", + "nomCommune": "GEVROLLES" }, { - "codePostal": "11430", - "codeCommune": "11170", - "libelleAcheminement": "GRUISSAN", - "nomCommune": "GRUISSAN" + "codePostal": "21320", + "codeCommune": "21362", + "libelleAcheminement": "MACONGE", + "nomCommune": "MACONGE" }, { - "codePostal": "14210", - "codeCommune": "14122", - "libelleAcheminement": "LA CAINE", - "nomCommune": "LA CAINE" + "codePostal": "07200", + "codeCommune": "07116", + "libelleAcheminement": "LABEGUDE", + "nomCommune": "LABEGUDE" }, { - "codePostal": "53470", - "codeCommune": "53146", - "libelleAcheminement": "MARTIGNE SUR MAYENNE", - "nomCommune": "MARTIGNE SUR MAYENNE" + "codePostal": "08700", + "codeCommune": "08328", + "libelleAcheminement": "NOUZONVILLE", + "nomCommune": "NOUZONVILLE" }, { - "codePostal": "11220", - "codeCommune": "11179", - "libelleAcheminement": "LABASTIDE EN VAL", - "nomCommune": "LABASTIDE EN VAL" + "codePostal": "21540", + "codeCommune": "21306", + "libelleAcheminement": "GRENANT LES SOMBERNON", + "nomCommune": "GRENANT LES SOMBERNON" }, { - "codePostal": "14740", - "codeCommune": "14135", - "libelleAcheminement": "CARCAGNY", - "nomCommune": "CARCAGNY" + "codePostal": "21310", + "codeCommune": "21369", + "libelleAcheminement": "MAGNY ST MEDARD", + "nomCommune": "MAGNY ST MEDARD" }, { - "codePostal": "53170", - "codeCommune": "53152", - "libelleAcheminement": "MESLAY DU MAINE", - "nomCommune": "MESLAY DU MAINE" + "codePostal": "07230", + "codeCommune": "07117", + "libelleAcheminement": "LABLACHERE", + "nomCommune": "LABLACHERE" }, { - "codePostal": "11250", - "codeCommune": "11183", - "libelleAcheminement": "LADERN SUR LAUQUET", - "nomCommune": "LADERN SUR LAUQUET" + "codePostal": "08250", + "codeCommune": "08333", + "libelleAcheminement": "OLIZY PRIMAT", + "nomCommune": "OLIZY PRIMAT" }, { - "codePostal": "14240", - "codeCommune": "14143", - "libelleAcheminement": "CAUMONT SUR AURE", - "nomCommune": "CAUMONT SUR AURE" + "codePostal": "21150", + "codeCommune": "21321", + "libelleAcheminement": "JAILLY LES MOULINS", + "nomCommune": "JAILLY LES MOULINS" }, { - "codePostal": "53640", - "codeCommune": "53160", - "libelleAcheminement": "MONTREUIL POULAY", - "nomCommune": "MONTREUIL POULAY" + "codePostal": "21410", + "codeCommune": "21373", + "libelleAcheminement": "MALAIN", + "nomCommune": "MALAIN" }, { - "codePostal": "11480", - "codeCommune": "11188", - "libelleAcheminement": "LA PALME", - "nomCommune": "LA PALME" + "codePostal": "07520", + "codeCommune": "07128", + "libelleAcheminement": "LALOUVESC", + "nomCommune": "LALOUVESC" }, { - "codePostal": "14290", - "codeCommune": "14147", - "libelleAcheminement": "CERNAY", - "nomCommune": "CERNAY" + "codePostal": "08190", + "codeCommune": "08340", + "libelleAcheminement": "POILCOURT SYDNEY", + "nomCommune": "POILCOURT SYDNEY" }, { - "codePostal": "53640", - "codeCommune": "53160", - "libelleAcheminement": "MONTREUIL POULAY", - "nomCommune": "MONTREUIL POULAY" + "codePostal": "21460", + "codeCommune": "21324", + "libelleAcheminement": "JEUX LES BARD", + "nomCommune": "JEUX LES BARD" }, { - "codePostal": "11390", - "codeCommune": "11189", - "libelleAcheminement": "LAPRADE", - "nomCommune": "LAPRADE" + "codePostal": "21230", + "codeCommune": "21374", + "libelleAcheminement": "MALIGNY", + "nomCommune": "MALIGNY" }, { - "codePostal": "14220", - "codeCommune": "14150", - "libelleAcheminement": "CESNY LES SOURCES", - "nomCommune": "CESNY LES SOURCES" + "codePostal": "07660", + "codeCommune": "07130", + "libelleAcheminement": "LANARCE", + "nomCommune": "LANARCE" }, { - "codePostal": "53410", - "codeCommune": "53169", - "libelleAcheminement": "OLIVET", - "nomCommune": "OLIVET" + "codePostal": "08140", + "codeCommune": "08343", + "libelleAcheminement": "POURU ST REMY", + "nomCommune": "POURU ST REMY" }, { - "codePostal": "11370", - "codeCommune": "11202", - "libelleAcheminement": "LEUCATE", - "nomCommune": "LEUCATE" + "codePostal": "21340", + "codeCommune": "21327", + "libelleAcheminement": "VAL MONT", + "nomCommune": "VAL MONT" }, { - "codePostal": "14220", - "codeCommune": "14150", - "libelleAcheminement": "CESNY LES SOURCES", - "nomCommune": "CESNY LES SOURCES" + "codePostal": "21700", + "codeCommune": "21384", + "libelleAcheminement": "MAREY LES FUSSEY", + "nomCommune": "MAREY LES FUSSEY" }, { - "codePostal": "53360", - "codeCommune": "53172", - "libelleAcheminement": "ORIGNE", - "nomCommune": "ORIGNE" + "codePostal": "07220", + "codeCommune": "07133", + "libelleAcheminement": "LARNAS", + "nomCommune": "LARNAS" }, { - "codePostal": "11300", - "codeCommune": "11206", - "libelleAcheminement": "LIMOUX", - "nomCommune": "LIMOUX" + "codePostal": "08230", + "codeCommune": "08355", + "libelleAcheminement": "REGNIOWEZ", + "nomCommune": "REGNIOWEZ" }, { - "codePostal": "14130", - "codeCommune": "14161", - "libelleAcheminement": "CLARBEC", - "nomCommune": "CLARBEC" + "codePostal": "21250", + "codeCommune": "21333", + "libelleAcheminement": "LABRUYERE", + "nomCommune": "LABRUYERE" }, { - "codePostal": "53140", - "codeCommune": "53173", - "libelleAcheminement": "LA PALLU", - "nomCommune": "LA PALLU" + "codePostal": "21120", + "codeCommune": "21385", + "libelleAcheminement": "MAREY SUR TILLE", + "nomCommune": "MAREY SUR TILLE" }, { - "codePostal": "11120", - "codeCommune": "11212", - "libelleAcheminement": "MAILHAC", - "nomCommune": "MAILHAC" + "codePostal": "48250", + "codeCommune": "07136", + "libelleAcheminement": "LAVEYRUNE", + "nomCommune": "LAVEYRUNE" }, { - "codePostal": "14770", - "codeCommune": "14174", - "libelleAcheminement": "CONDE EN NORMANDIE", - "nomCommune": "CONDE EN NORMANDIE" + "codePostal": "08150", + "codeCommune": "08358", + "libelleAcheminement": "REMILLY LES POTHEES", + "nomCommune": "REMILLY LES POTHEES" }, { - "codePostal": "53400", - "codeCommune": "53180", - "libelleAcheminement": "POMMERIEUX", - "nomCommune": "POMMERIEUX" + "codePostal": "21760", + "codeCommune": "21337", + "libelleAcheminement": "LAMARCHE SUR SAONE", + "nomCommune": "LAMARCHE SUR SAONE" }, { - "codePostal": "11300", - "codeCommune": "11216", - "libelleAcheminement": "MALVIES", - "nomCommune": "MALVIES" + "codePostal": "21150", + "codeCommune": "21386", + "libelleAcheminement": "MARIGNY LE CAHOUET", + "nomCommune": "MARIGNY LE CAHOUET" }, { - "codePostal": "14690", - "codeCommune": "14183", - "libelleAcheminement": "COSSESSEVILLE", - "nomCommune": "COSSESSEVILLE" + "codePostal": "07340", + "codeCommune": "07143", + "libelleAcheminement": "LIMONY", + "nomCommune": "LIMONY" }, { - "codePostal": "53340", - "codeCommune": "53184", - "libelleAcheminement": "PREAUX", - "nomCommune": "PREAUX" + "codePostal": "08300", + "codeCommune": "08362", + "libelleAcheminement": "RETHEL", + "nomCommune": "RETHEL" }, { - "codePostal": "11120", - "codeCommune": "11233", - "libelleAcheminement": "MIREPEISSET", - "nomCommune": "MIREPEISSET" + "codePostal": "21250", + "codeCommune": "21340", + "libelleAcheminement": "LANTHES", + "nomCommune": "LANTHES" }, { - "codePostal": "14430", - "codeCommune": "14198", - "libelleAcheminement": "CRESSEVEUILLE", - "nomCommune": "CRESSEVEUILLE" + "codePostal": "21380", + "codeCommune": "21391", + "libelleAcheminement": "MARSANNAY LE BOIS", + "nomCommune": "MARSANNAY LE BOIS" }, { - "codePostal": "53140", - "codeCommune": "53185", - "libelleAcheminement": "PRE EN PAIL ST SAMSON", - "nomCommune": "PRE EN PAIL ST SAMSON" + "codePostal": "07320", + "codeCommune": "07151", + "libelleAcheminement": "MARS", + "nomCommune": "MARS" }, { - "codePostal": "11400", - "codeCommune": "11234", - "libelleAcheminement": "MIREVAL LAURAGAIS", - "nomCommune": "MIREVAL LAURAGAIS" + "codePostal": "08130", + "codeCommune": "08364", + "libelleAcheminement": "RILLY SUR AISNE", + "nomCommune": "RILLY SUR AISNE" }, { - "codePostal": "14480", - "codeCommune": "14200", - "libelleAcheminement": "CREULLY SUR SEULLES", - "nomCommune": "CREULLY SUR SEULLES" + "codePostal": "21440", + "codeCommune": "21345", + "libelleAcheminement": "LERY", + "nomCommune": "LERY" }, { - "codePostal": "53370", - "codeCommune": "53187", - "libelleAcheminement": "RAVIGNY", - "nomCommune": "RAVIGNY" + "codePostal": "21510", + "codeCommune": "21396", + "libelleAcheminement": "MAUVILLY", + "nomCommune": "MAUVILLY" }, { - "codePostal": "11580", - "codeCommune": "11235", - "libelleAcheminement": "MISSEGRE", - "nomCommune": "MISSEGRE" + "codePostal": "07400", + "codeCommune": "07157", + "libelleAcheminement": "MEYSSE", + "nomCommune": "MEYSSE" }, { - "codePostal": "14113", - "codeCommune": "14202", - "libelleAcheminement": "CRICQUEBOEUF", - "nomCommune": "CRICQUEBOEUF" + "codePostal": "08150", + "codeCommune": "08370", + "libelleAcheminement": "ROUVROY SUR AUDRY", + "nomCommune": "ROUVROY SUR AUDRY" }, { - "codePostal": "53640", - "codeCommune": "53190", - "libelleAcheminement": "LE RIBAY", - "nomCommune": "LE RIBAY" + "codePostal": "21290", + "codeCommune": "21346", + "libelleAcheminement": "LEUGLAY", + "nomCommune": "LEUGLAY" }, { - "codePostal": "11140", - "codeCommune": "11244", - "libelleAcheminement": "MONTFORT SUR BOULZANE", - "nomCommune": "MONTFORT SUR BOULZANE" + "codePostal": "21190", + "codeCommune": "21401", + "libelleAcheminement": "MELOISEY", + "nomCommune": "MELOISEY" }, { - "codePostal": "14430", - "codeCommune": "14203", - "libelleAcheminement": "CRICQUEVILLE EN AUGE", - "nomCommune": "CRICQUEVILLE EN AUGE" + "codePostal": "07530", + "codeCommune": "07158", + "libelleAcheminement": "MEZILHAC", + "nomCommune": "MEZILHAC" }, { - "codePostal": "53350", - "codeCommune": "53191", - "libelleAcheminement": "LA ROE", - "nomCommune": "LA ROE" + "codePostal": "08110", + "codeCommune": "08375", + "libelleAcheminement": "SACHY", + "nomCommune": "SACHY" }, { - "codePostal": "11800", - "codeCommune": "11248", - "libelleAcheminement": "MONTIRAT", - "nomCommune": "MONTIRAT" + "codePostal": "21110", + "codeCommune": "21352", + "libelleAcheminement": "LONGEAULT PLUVAULT", + "nomCommune": "LONGEAULT PLUVAULT" }, { - "codePostal": "14450", - "codeCommune": "14204", - "libelleAcheminement": "CRICQUEVILLE EN BESSIN", - "nomCommune": "CRICQUEVILLE EN BESSIN" + "codePostal": "21430", + "codeCommune": "21403", + "libelleAcheminement": "MENESSAIRE", + "nomCommune": "MENESSAIRE" }, { - "codePostal": "53390", - "codeCommune": "53192", - "libelleAcheminement": "LA ROUAUDIERE", - "nomCommune": "LA ROUAUDIERE" + "codePostal": "07170", + "codeCommune": "07159", + "libelleAcheminement": "MIRABEL", + "nomCommune": "MIRABEL" }, { - "codePostal": "11220", - "codeCommune": "11251", - "libelleAcheminement": "VAL DE DAGNE", - "nomCommune": "VAL DE DAGNE" + "codePostal": "08310", + "codeCommune": "08378", + "libelleAcheminement": "ST CLEMENT A ARNES", + "nomCommune": "ST CLEMENT A ARNES" }, { - "codePostal": "14250", - "codeCommune": "14205", - "libelleAcheminement": "CRISTOT", - "nomCommune": "CRISTOT" + "codePostal": "21110", + "codeCommune": "21353", + "libelleAcheminement": "LONGECOURT EN PLAINE", + "nomCommune": "LONGECOURT EN PLAINE" }, { - "codePostal": "53390", - "codeCommune": "53197", - "libelleAcheminement": "ST AIGNAN SUR ROE", - "nomCommune": "ST AIGNAN SUR ROE" + "codePostal": "21340", + "codeCommune": "21420", + "libelleAcheminement": "MOLINOT", + "nomCommune": "MOLINOT" }, { - "codePostal": "11350", - "codeCommune": "11270", - "libelleAcheminement": "PADERN", - "nomCommune": "PADERN" + "codePostal": "07360", + "codeCommune": "07167", + "libelleAcheminement": "LES OLLIERES SUR EYRIEUX", + "nomCommune": "LES OLLIERES SUR EYRIEUX" }, { - "codePostal": "14220", - "codeCommune": "14207", - "libelleAcheminement": "CROISILLES", - "nomCommune": "CROISILLES" + "codePostal": "08190", + "codeCommune": "08404", + "libelleAcheminement": "SAULT ST REMY", + "nomCommune": "SAULT ST REMY" }, { - "codePostal": "53940", - "codeCommune": "53201", - "libelleAcheminement": "ST BERTHEVIN", - "nomCommune": "ST BERTHEVIN" + "codePostal": "21600", + "codeCommune": "21355", + "libelleAcheminement": "LONGVIC", + "nomCommune": "LONGVIC" }, { - "codePostal": "11300", - "codeCommune": "11274", - "libelleAcheminement": "PAULIGNE", - "nomCommune": "PAULIGNE" + "codePostal": "21360", + "codeCommune": "21427", + "libelleAcheminement": "MONTCEAU ET ECHARNANT", + "nomCommune": "MONTCEAU ET ECHARNANT" }, { - "codePostal": "14620", - "codeCommune": "14216", - "libelleAcheminement": "DAMBLAINVILLE", - "nomCommune": "DAMBLAINVILLE" + "codePostal": "07450", + "codeCommune": "07173", + "libelleAcheminement": "PEREYRES", + "nomCommune": "PEREYRES" }, { - "codePostal": "53290", - "codeCommune": "53203", - "libelleAcheminement": "ST BRICE", - "nomCommune": "ST BRICE" + "codePostal": "08400", + "codeCommune": "08406", + "libelleAcheminement": "SAVIGNY SUR AISNE", + "nomCommune": "SAVIGNY SUR AISNE" }, { - "codePostal": "11350", - "codeCommune": "11276", - "libelleAcheminement": "PAZIOLS", - "nomCommune": "PAZIOLS" + "codePostal": "21150", + "codeCommune": "21358", + "libelleAcheminement": "LUCENAY LE DUC", + "nomCommune": "LUCENAY LE DUC" }, { - "codePostal": "14430", - "codeCommune": "14218", - "libelleAcheminement": "DANESTAL", - "nomCommune": "DANESTAL" + "codePostal": "21610", + "codeCommune": "21433", + "libelleAcheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", + "nomCommune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE" }, { - "codePostal": "53220", - "codeCommune": "53213", - "libelleAcheminement": "ST ELLIER DU MAINE", - "nomCommune": "ST ELLIER DU MAINE" + "codePostal": "07590", + "codeCommune": "07175", + "libelleAcheminement": "LE PLAGNAL", + "nomCommune": "LE PLAGNAL" }, { - "codePostal": "11440", - "codeCommune": "11285", - "libelleAcheminement": "PEYRIAC DE MER", - "nomCommune": "PEYRIAC DE MER" + "codePostal": "08250", + "codeCommune": "08407", + "libelleAcheminement": "SECHAULT", + "nomCommune": "SECHAULT" }, { - "codePostal": "14690", - "codeCommune": "14223", - "libelleAcheminement": "LE DETROIT", - "nomCommune": "LE DETROIT" + "codePostal": "21230", + "codeCommune": "21363", + "libelleAcheminement": "MAGNIEN", + "nomCommune": "MAGNIEN" }, { - "codePostal": "53390", - "codeCommune": "53214", - "libelleAcheminement": "ST ERBLON", - "nomCommune": "ST ERBLON" + "codePostal": "21400", + "codeCommune": "21435", + "libelleAcheminement": "MONTLIOT ET COURCELLES", + "nomCommune": "MONTLIOT ET COURCELLES" }, { - "codePostal": "11500", - "codeCommune": "11304", - "libelleAcheminement": "QUILLAN", - "nomCommune": "QUILLAN" + "codePostal": "07250", + "codeCommune": "07181", + "libelleAcheminement": "LE POUZIN", + "nomCommune": "LE POUZIN" }, { - "codePostal": "14250", - "codeCommune": "14232", - "libelleAcheminement": "DUCY STE MARGUERITE", - "nomCommune": "DUCY STE MARGUERITE" + "codePostal": "08400", + "codeCommune": "08410", + "libelleAcheminement": "SEMIDE", + "nomCommune": "SEMIDE" }, { - "codePostal": "53270", - "codeCommune": "53228", - "libelleAcheminement": "BLANDOUET ST JEAN", - "nomCommune": "BLANDOUET ST JEAN" + "codePostal": "21140", + "codeCommune": "21365", + "libelleAcheminement": "MAGNY LA VILLE", + "nomCommune": "MAGNY LA VILLE" }, { - "codePostal": "11360", - "codeCommune": "11305", - "libelleAcheminement": "QUINTILLAN", - "nomCommune": "QUINTILLAN" + "codePostal": "21290", + "codeCommune": "21438", + "libelleAcheminement": "MONTMOYEN", + "nomCommune": "MONTMOYEN" }, { - "codePostal": "14710", - "codeCommune": "14239", - "libelleAcheminement": "ENGLESQUEVILLE LA PERCEE", - "nomCommune": "ENGLESQUEVILLE LA PERCEE" + "codePostal": "07000", + "codeCommune": "07184", + "libelleAcheminement": "PRANLES", + "nomCommune": "PRANLES" }, { - "codePostal": "53350", - "codeCommune": "53242", - "libelleAcheminement": "ST MICHEL DE LA ROE", - "nomCommune": "ST MICHEL DE LA ROE" + "codePostal": "08250", + "codeCommune": "08412", + "libelleAcheminement": "SENUC", + "nomCommune": "SENUC" }, { - "codePostal": "11400", - "codeCommune": "11313", - "libelleAcheminement": "RICAUD", - "nomCommune": "RICAUD" + "codePostal": "21130", + "codeCommune": "21367", + "libelleAcheminement": "MAGNY MONTARLOT", + "nomCommune": "MAGNY MONTARLOT" }, { - "codePostal": "14170", - "codeCommune": "14240", - "libelleAcheminement": "EPANEY", - "nomCommune": "EPANEY" + "codePostal": "21150", + "codeCommune": "21448", + "libelleAcheminement": "MUSSY LA FOSSE", + "nomCommune": "MUSSY LA FOSSE" }, { - "codePostal": "53410", - "codeCommune": "53247", - "libelleAcheminement": "ST PIERRE LA COUR", - "nomCommune": "ST PIERRE LA COUR" + "codePostal": "07450", + "codeCommune": "07203", + "libelleAcheminement": "SAGNES ET GOUDOULET", + "nomCommune": "SAGNES ET GOUDOULET" }, { - "codePostal": "11140", - "codeCommune": "11321", - "libelleAcheminement": "ROQUEFORT DE SAULT", - "nomCommune": "ROQUEFORT DE SAULT" + "codePostal": "08430", + "codeCommune": "08422", + "libelleAcheminement": "SINGLY", + "nomCommune": "SINGLY" }, { - "codePostal": "14610", - "codeCommune": "14242", - "libelleAcheminement": "EPRON", - "nomCommune": "EPRON" + "codePostal": "21330", + "codeCommune": "21378", + "libelleAcheminement": "MARCENAY", + "nomCommune": "MARCENAY" }, { - "codePostal": "53160", - "codeCommune": "53249", - "libelleAcheminement": "VIMARTIN SUR ORTHE", - "nomCommune": "VIMARTIN SUR ORTHE" + "codePostal": "21190", + "codeCommune": "21450", + "libelleAcheminement": "NANTOUX", + "nomCommune": "NANTOUX" }, { - "codePostal": "11300", - "codeCommune": "11323", - "libelleAcheminement": "ROQUETAILLADE ET CONILHAC", - "nomCommune": "ROQUETAILLADE ET CONILHAC" + "codePostal": "07170", + "codeCommune": "07208", + "libelleAcheminement": "ST ANDEOL DE BERG", + "nomCommune": "ST ANDEOL DE BERG" }, { - "codePostal": "14190", - "codeCommune": "14252", - "libelleAcheminement": "ESTREES LA CAMPAGNE", - "nomCommune": "ESTREES LA CAMPAGNE" + "codePostal": "08300", + "codeCommune": "08426", + "libelleAcheminement": "SON", + "nomCommune": "SON" }, { - "codePostal": "53800", - "codeCommune": "53258", - "libelleAcheminement": "LA SELLE CRAONNAISE", - "nomCommune": "LA SELLE CRAONNAISE" + "codePostal": "21430", + "codeCommune": "21379", + "libelleAcheminement": "MARCHESEUIL", + "nomCommune": "MARCHESEUIL" }, { - "codePostal": "11140", - "codeCommune": "11335", - "libelleAcheminement": "STE COLOMBE SUR GUETTE", - "nomCommune": "STE COLOMBE SUR GUETTE" + "codePostal": "21390", + "codeCommune": "21457", + "libelleAcheminement": "NOIDAN", + "nomCommune": "NOIDAN" }, { - "codePostal": "14400", - "codeCommune": "14256", - "libelleAcheminement": "ETREHAM", - "nomCommune": "ETREHAM" + "codePostal": "07270", + "codeCommune": "07218", + "libelleAcheminement": "ST BASILE", + "nomCommune": "ST BASILE" }, { - "codePostal": "53270", - "codeCommune": "53265", - "libelleAcheminement": "TORCE VIVIERS EN CHARNIE", - "nomCommune": "TORCE VIVIERS EN CHARNIE" + "codePostal": "08270", + "codeCommune": "08428", + "libelleAcheminement": "SORCY BAUTHEMONT", + "nomCommune": "SORCY BAUTHEMONT" }, { - "codePostal": "11700", - "codeCommune": "11337", - "libelleAcheminement": "ST COUAT D AUDE", - "nomCommune": "ST COUAT D AUDE" + "codePostal": "21390", + "codeCommune": "21380", + "libelleAcheminement": "MARCIGNY SOUS THIL", + "nomCommune": "MARCIGNY SOUS THIL" }, { - "codePostal": "14130", - "codeCommune": "14269", - "libelleAcheminement": "FIERVILLE LES PARCS", - "nomCommune": "FIERVILLE LES PARCS" + "codePostal": "21340", + "codeCommune": "21461", + "libelleAcheminement": "NOLAY", + "nomCommune": "NOLAY" }, { - "codePostal": "53270", - "codeCommune": "53265", - "libelleAcheminement": "TORCE VIVIERS EN CHARNIE", - "nomCommune": "TORCE VIVIERS EN CHARNIE" + "codePostal": "07210", + "codeCommune": "07219", + "libelleAcheminement": "ST BAUZILE", + "nomCommune": "ST BAUZILE" }, { - "codePostal": "11800", - "codeCommune": "11342", - "libelleAcheminement": "ST FRICHOUX", - "nomCommune": "ST FRICHOUX" + "codePostal": "08300", + "codeCommune": "08435", + "libelleAcheminement": "TAGNON", + "nomCommune": "TAGNON" }, { - "codePostal": "14340", - "codeCommune": "14280", - "libelleAcheminement": "FORMENTIN", - "nomCommune": "FORMENTIN" + "codePostal": "21320", + "codeCommune": "21392", + "libelleAcheminement": "MARTROIS", + "nomCommune": "MARTROIS" }, { - "codePostal": "53480", - "codeCommune": "53267", - "libelleAcheminement": "VAIGES", - "nomCommune": "VAIGES" + "codePostal": "21490", + "codeCommune": "21462", + "libelleAcheminement": "NORGES LA VILLE", + "nomCommune": "NORGES LA VILLE" }, { - "codePostal": "11360", - "codeCommune": "11345", - "libelleAcheminement": "ST JEAN DE BARROU", - "nomCommune": "ST JEAN DE BARROU" + "codePostal": "07800", + "codeCommune": "07221", + "libelleAcheminement": "ST CIERGE LA SERRE", + "nomCommune": "ST CIERGE LA SERRE" }, { - "codePostal": "14620", - "codeCommune": "14283", - "libelleAcheminement": "FOURCHES", - "nomCommune": "FOURCHES" + "codePostal": "08350", + "codeCommune": "08445", + "libelleAcheminement": "THELONNE", + "nomCommune": "THELONNE" }, { - "codePostal": "53700", - "codeCommune": "53271", - "libelleAcheminement": "VILLAINES LA JUHEL", - "nomCommune": "VILLAINES LA JUHEL" + "codePostal": "21140", + "codeCommune": "21394", + "libelleAcheminement": "MASSINGY LES SEMUR", + "nomCommune": "MASSINGY LES SEMUR" }, { - "codePostal": "11260", - "codeCommune": "11346", - "libelleAcheminement": "ST JEAN DE PARACOL", - "nomCommune": "ST JEAN DE PARACOL" + "codePostal": "21390", + "codeCommune": "21463", + "libelleAcheminement": "NORMIER", + "nomCommune": "NORMIER" }, { - "codePostal": "14630", - "codeCommune": "14287", - "libelleAcheminement": "FRENOUVILLE", - "nomCommune": "FRENOUVILLE" + "codePostal": "07430", + "codeCommune": "07225", + "libelleAcheminement": "ST CLAIR", + "nomCommune": "ST CLAIR" }, { - "codePostal": "53170", - "codeCommune": "53273", - "libelleAcheminement": "VILLIERS CHARLEMAGNE", - "nomCommune": "VILLIERS CHARLEMAGNE" + "codePostal": "08800", + "codeCommune": "08448", + "libelleAcheminement": "THILAY", + "nomCommune": "THILAY" }, { - "codePostal": "11120", - "codeCommune": "11353", - "libelleAcheminement": "ST MARCEL SUR AUDE", - "nomCommune": "ST MARCEL SUR AUDE" + "codePostal": "21270", + "codeCommune": "21398", + "libelleAcheminement": "MAXILLY SUR SAONE", + "nomCommune": "MAXILLY SUR SAONE" }, { - "codePostal": "14210", - "codeCommune": "14297", - "libelleAcheminement": "GAVRUS", - "nomCommune": "GAVRUS" + "codePostal": "21310", + "codeCommune": "21467", + "libelleAcheminement": "OISILLY", + "nomCommune": "OISILLY" }, { - "codePostal": "54770", - "codeCommune": "54006", - "libelleAcheminement": "AGINCOURT", - "nomCommune": "AGINCOURT" + "codePostal": "07310", + "codeCommune": "07226", + "libelleAcheminement": "ST CLEMENT", + "nomCommune": "ST CLEMENT" }, { - "codePostal": "11220", - "codeCommune": "11354", - "libelleAcheminement": "ST MARTIN DES PUITS", - "nomCommune": "ST MARTIN DES PUITS" + "codePostal": "08190", + "codeCommune": "08451", + "libelleAcheminement": "LE THOUR", + "nomCommune": "LE THOUR" }, { - "codePostal": "14230", - "codeCommune": "14298", - "libelleAcheminement": "GEFOSSE FONTENAY", - "nomCommune": "GEFOSSE FONTENAY" + "codePostal": "21320", + "codeCommune": "21399", + "libelleAcheminement": "MEILLY SUR ROUVRES", + "nomCommune": "MEILLY SUR ROUVRES" }, { - "codePostal": "54460", - "codeCommune": "54007", - "libelleAcheminement": "AINGERAY", - "nomCommune": "AINGERAY" + "codePostal": "21600", + "codeCommune": "21473", + "libelleAcheminement": "OUGES", + "nomCommune": "OUGES" }, { - "codePostal": "11320", - "codeCommune": "11362", - "libelleAcheminement": "ST PAULET", - "nomCommune": "ST PAULET" + "codePostal": "07410", + "codeCommune": "07236", + "libelleAcheminement": "ST FELICIEN", + "nomCommune": "ST FELICIEN" }, { - "codePostal": "14430", - "codeCommune": "14300", - "libelleAcheminement": "GERROTS", - "nomCommune": "GERROTS" + "codePostal": "08400", + "codeCommune": "08453", + "libelleAcheminement": "TOGES", + "nomCommune": "TOGES" }, { - "codePostal": "54170", - "codeCommune": "54008", - "libelleAcheminement": "ALLAIN", - "nomCommune": "ALLAIN" + "codePostal": "21580", + "codeCommune": "21400", + "libelleAcheminement": "LE MEIX", + "nomCommune": "LE MEIX" }, { - "codePostal": "11590", - "codeCommune": "11369", - "libelleAcheminement": "SALLELES D AUDE", - "nomCommune": "SALLELES D AUDE" + "codePostal": "21250", + "codeCommune": "21474", + "libelleAcheminement": "PAGNY LA VILLE", + "nomCommune": "PAGNY LA VILLE" }, { - "codePostal": "14730", - "codeCommune": "14301", - "libelleAcheminement": "GIBERVILLE", - "nomCommune": "GIBERVILLE" + "codePostal": "07360", + "codeCommune": "07237", + "libelleAcheminement": "ST FORTUNAT SUR EYRIEUX", + "nomCommune": "ST FORTUNAT SUR EYRIEUX" }, { - "codePostal": "54800", - "codeCommune": "54009", - "libelleAcheminement": "ALLAMONT", - "nomCommune": "ALLAMONT" + "codePostal": "08160", + "codeCommune": "08469", + "libelleAcheminement": "VENDRESSE", + "nomCommune": "VENDRESSE" }, { - "codePostal": "11410", - "codeCommune": "11371", - "libelleAcheminement": "SALLES SUR L HERS", - "nomCommune": "SALLES SUR L HERS" + "codePostal": "21150", + "codeCommune": "21404", + "libelleAcheminement": "MENETREUX LE PITOIS", + "nomCommune": "MENETREUX LE PITOIS" }, { - "codePostal": "14100", - "codeCommune": "14303", - "libelleAcheminement": "GLOS", - "nomCommune": "GLOS" + "codePostal": "21270", + "codeCommune": "21482", + "libelleAcheminement": "PERRIGNY SUR L OGNON", + "nomCommune": "PERRIGNY SUR L OGNON" }, { - "codePostal": "54760", - "codeCommune": "54021", - "libelleAcheminement": "ARMAUCOURT", - "nomCommune": "ARMAUCOURT" + "codePostal": "07160", + "codeCommune": "07239", + "libelleAcheminement": "ST GENEST LACHAMP", + "nomCommune": "ST GENEST LACHAMP" }, { - "codePostal": "11600", - "codeCommune": "11372", - "libelleAcheminement": "SALSIGNE", - "nomCommune": "SALSIGNE" + "codePostal": "08000", + "codeCommune": "08480", + "libelleAcheminement": "VILLERS SEMEUSE", + "nomCommune": "VILLERS SEMEUSE" }, { - "codePostal": "14810", - "codeCommune": "14306", - "libelleAcheminement": "GONNEVILLE EN AUGE", - "nomCommune": "GONNEVILLE EN AUGE" + "codePostal": "21380", + "codeCommune": "21408", + "libelleAcheminement": "MESSIGNY ET VANTOUX", + "nomCommune": "MESSIGNY ET VANTOUX" }, { - "codePostal": "54450", - "codeCommune": "54035", - "libelleAcheminement": "AVRICOURT", - "nomCommune": "AVRICOURT" + "codePostal": "21120", + "codeCommune": "21483", + "libelleAcheminement": "PICHANGES", + "nomCommune": "PICHANGES" }, { - "codePostal": "11240", - "codeCommune": "11375", - "libelleAcheminement": "SEIGNALENS", - "nomCommune": "SEIGNALENS" + "codePostal": "07800", + "codeCommune": "07240", + "libelleAcheminement": "ST GEORGES LES BAINS", + "nomCommune": "ST GEORGES LES BAINS" }, { - "codePostal": "14680", - "codeCommune": "14309", - "libelleAcheminement": "GOUVIX", - "nomCommune": "GOUVIX" + "codePostal": "08400", + "codeCommune": "08489", + "libelleAcheminement": "VONCQ", + "nomCommune": "VONCQ" }, { - "codePostal": "54120", - "codeCommune": "54039", - "libelleAcheminement": "BACCARAT", - "nomCommune": "BACCARAT" + "codePostal": "21310", + "codeCommune": "21416", + "libelleAcheminement": "MIREBEAU SUR BEZE", + "nomCommune": "MIREBEAU SUR BEZE" }, { - "codePostal": "11400", - "codeCommune": "11383", - "libelleAcheminement": "SOUILHE", - "nomCommune": "SOUILHE" + "codePostal": "21500", + "codeCommune": "21484", + "libelleAcheminement": "PLANAY", + "nomCommune": "PLANAY" }, { - "codePostal": "14540", - "codeCommune": "14319", - "libelleAcheminement": "GRENTHEVILLE", - "nomCommune": "GRENTHEVILLE" + "codePostal": "07340", + "codeCommune": "07243", + "libelleAcheminement": "ST JACQUES D ATTICIEUX", + "nomCommune": "ST JACQUES D ATTICIEUX" }, { - "codePostal": "54120", - "codeCommune": "54039", - "libelleAcheminement": "BACCARAT", - "nomCommune": "BACCARAT" + "codePostal": "08350", + "codeCommune": "08492", + "libelleAcheminement": "VRIGNE MEUSE", + "nomCommune": "VRIGNE MEUSE" }, { - "codePostal": "11580", - "codeCommune": "11389", - "libelleAcheminement": "TERROLES", - "nomCommune": "TERROLES" + "codePostal": "21210", + "codeCommune": "21417", + "libelleAcheminement": "MISSERY", + "nomCommune": "MISSERY" }, { - "codePostal": "14400", - "codeCommune": "14322", - "libelleAcheminement": "GUERON", - "nomCommune": "GUERON" + "codePostal": "21450", + "codeCommune": "21490", + "libelleAcheminement": "POISEUL LA VILLE ET LAPERRIERE", + "nomCommune": "POISEUL LA VILLE ET LAPERRIERE" }, { - "codePostal": "54290", - "codeCommune": "54042", - "libelleAcheminement": "BAINVILLE AUX MIROIRS", - "nomCommune": "BAINVILLE AUX MIROIRS" + "codePostal": "07160", + "codeCommune": "07248", + "libelleAcheminement": "ST JEAN ROURE", + "nomCommune": "ST JEAN ROURE" }, { - "codePostal": "11200", - "codeCommune": "11390", - "libelleAcheminement": "THEZAN DES CORBIERES", - "nomCommune": "THEZAN DES CORBIERES" + "codePostal": "08200", + "codeCommune": "08494", + "libelleAcheminement": "WADELINCOURT", + "nomCommune": "WADELINCOURT" }, { - "codePostal": "14100", - "codeCommune": "14326", - "libelleAcheminement": "HERMIVAL LES VAUX", - "nomCommune": "HERMIVAL LES VAUX" + "codePostal": "21500", + "codeCommune": "21425", + "libelleAcheminement": "MONTBARD", + "nomCommune": "MONTBARD" }, { - "codePostal": "54450", - "codeCommune": "54044", - "libelleAcheminement": "BARBAS", - "nomCommune": "BARBAS" + "codePostal": "21630", + "codeCommune": "21492", + "libelleAcheminement": "POMMARD", + "nomCommune": "POMMARD" }, { - "codePostal": "11800", - "codeCommune": "11397", - "libelleAcheminement": "TREBES", - "nomCommune": "TREBES" + "codePostal": "07200", + "codeCommune": "07254", + "libelleAcheminement": "ST JULIEN DU SERRE", + "nomCommune": "ST JULIEN DU SERRE" }, { - "codePostal": "14600", - "codeCommune": "14333", - "libelleAcheminement": "HONFLEUR", - "nomCommune": "HONFLEUR" + "codePostal": "08000", + "codeCommune": "08497", + "libelleAcheminement": "WARCQ", + "nomCommune": "WARCQ" }, { - "codePostal": "54360", - "codeCommune": "54045", - "libelleAcheminement": "BARBONVILLE", - "nomCommune": "BARBONVILLE" + "codePostal": "21460", + "codeCommune": "21426", + "libelleAcheminement": "MONTBERTHAULT", + "nomCommune": "MONTBERTHAULT" }, { - "codePostal": "11350", - "codeCommune": "11401", - "libelleAcheminement": "TUCHAN", - "nomCommune": "TUCHAN" + "codePostal": "21440", + "codeCommune": "21494", + "libelleAcheminement": "PONCEY SUR L IGNON", + "nomCommune": "PONCEY SUR L IGNON" }, { - "codePostal": "14430", - "codeCommune": "14335", - "libelleAcheminement": "HOTOT EN AUGE", - "nomCommune": "HOTOT EN AUGE" + "codePostal": "07690", + "codeCommune": "07258", + "libelleAcheminement": "ST JULIEN VOCANCE", + "nomCommune": "ST JULIEN VOCANCE" }, { - "codePostal": "54980", - "codeCommune": "54051", - "libelleAcheminement": "BATILLY", - "nomCommune": "BATILLY" + "codePostal": "08110", + "codeCommune": "08501", + "libelleAcheminement": "WILLIERS", + "nomCommune": "WILLIERS" }, { - "codePostal": "11400", - "codeCommune": "11407", - "libelleAcheminement": "VERDUN EN LAURAGAIS", - "nomCommune": "VERDUN EN LAURAGAIS" + "codePostal": "21500", + "codeCommune": "21429", + "libelleAcheminement": "MONTIGNY MONTFORT", + "nomCommune": "MONTIGNY MONTFORT" }, { - "codePostal": "14510", - "codeCommune": "14338", - "libelleAcheminement": "HOULGATE", - "nomCommune": "HOULGATE" + "codePostal": "21130", + "codeCommune": "21495", + "libelleAcheminement": "PONT", + "nomCommune": "PONT" }, { - "codePostal": "54890", - "codeCommune": "54055", - "libelleAcheminement": "BAYONVILLE SUR MAD", - "nomCommune": "BAYONVILLE SUR MAD" + "codePostal": "07140", + "codeCommune": "07266", + "libelleAcheminement": "STE MARGUERITE LAFIGERE", + "nomCommune": "STE MARGUERITE LAFIGERE" }, { - "codePostal": "11250", - "codeCommune": "11408", - "libelleAcheminement": "VERZEILLE", - "nomCommune": "VERZEILLE" + "codePostal": "09600", + "codeCommune": "09002", + "libelleAcheminement": "AIGUES VIVES", + "nomCommune": "AIGUES VIVES" }, { - "codePostal": "14123", - "codeCommune": "14341", - "libelleAcheminement": "IFS", - "nomCommune": "IFS" + "codePostal": "21140", + "codeCommune": "21431", + "libelleAcheminement": "MONTIGNY SUR ARMANCON", + "nomCommune": "MONTIGNY SUR ARMANCON" }, { - "codePostal": "54610", - "codeCommune": "54059", - "libelleAcheminement": "BELLEAU", - "nomCommune": "BELLEAU" + "codePostal": "21500", + "codeCommune": "21516", + "libelleAcheminement": "QUINCEROT", + "nomCommune": "QUINCEROT" }, { - "codePostal": "11300", - "codeCommune": "11427", - "libelleAcheminement": "VILLELONGUE D AUDE", - "nomCommune": "VILLELONGUE D AUDE" + "codePostal": "07160", + "codeCommune": "07276", + "libelleAcheminement": "ST MICHEL D AURANCE", + "nomCommune": "ST MICHEL D AURANCE" }, { - "codePostal": "14170", - "codeCommune": "14345", - "libelleAcheminement": "JORT", - "nomCommune": "JORT" + "codePostal": "09310", + "codeCommune": "09004", + "libelleAcheminement": "ALBIES", + "nomCommune": "ALBIES" }, { - "codePostal": "54740", - "codeCommune": "54062", - "libelleAcheminement": "BENNEY", - "nomCommune": "BENNEY" + "codePostal": "21520", + "codeCommune": "21432", + "libelleAcheminement": "MONTIGNY SUR AUBE", + "nomCommune": "MONTIGNY SUR AUBE" }, { - "codePostal": "11310", - "codeCommune": "11428", - "libelleAcheminement": "VILLEMAGNE", - "nomCommune": "VILLEMAGNE" + "codePostal": "21700", + "codeCommune": "21517", + "libelleAcheminement": "QUINCEY", + "nomCommune": "QUINCEY" }, { - "codePostal": "14250", - "codeCommune": "14346", - "libelleAcheminement": "JUAYE MONDAYE", - "nomCommune": "JUAYE MONDAYE" + "codePostal": "07360", + "codeCommune": "07278", + "libelleAcheminement": "ST MICHEL DE CHABRILLANOUX", + "nomCommune": "ST MICHEL DE CHABRILLANOUX" }, { - "codePostal": "54560", - "codeCommune": "54069", - "libelleAcheminement": "BEUVILLERS", - "nomCommune": "BEUVILLERS" + "codePostal": "09240", + "codeCommune": "09009", + "libelleAcheminement": "ALZEN", + "nomCommune": "ALZEN" }, { - "codePostal": "11290", - "codeCommune": "11432", - "libelleAcheminement": "VILLENEUVE LES MONTREAL", - "nomCommune": "VILLENEUVE LES MONTREAL" + "codePostal": "21220", + "codeCommune": "21442", + "libelleAcheminement": "MOREY ST DENIS", + "nomCommune": "MOREY ST DENIS" }, { - "codePostal": "14260", - "codeCommune": "14347", - "libelleAcheminement": "DIALAN SUR CHAINE", - "nomCommune": "DIALAN SUR CHAINE" + "codePostal": "21500", + "codeCommune": "21518", + "libelleAcheminement": "QUINCY LE VICOMTE", + "nomCommune": "QUINCY LE VICOMTE" }, { - "codePostal": "54380", - "codeCommune": "54072", - "libelleAcheminement": "BEZAUMONT", - "nomCommune": "BEZAUMONT" + "codePostal": "07220", + "codeCommune": "07279", + "libelleAcheminement": "ST MONTAN", + "nomCommune": "ST MONTAN" }, { - "codePostal": "11150", - "codeCommune": "11434", - "libelleAcheminement": "VILLEPINTE", - "nomCommune": "VILLEPINTE" + "codePostal": "09800", + "codeCommune": "09011", + "libelleAcheminement": "ANTRAS", + "nomCommune": "ANTRAS" }, { - "codePostal": "14310", - "codeCommune": "14353", - "libelleAcheminement": "LANDES SUR AJON", - "nomCommune": "LANDES SUR AJON" + "codePostal": "21400", + "codeCommune": "21444", + "libelleAcheminement": "MOSSON", + "nomCommune": "MOSSON" }, { - "codePostal": "54300", - "codeCommune": "54074", - "libelleAcheminement": "BIENVILLE LA PETITE", - "nomCommune": "BIENVILLE LA PETITE" + "codePostal": "21150", + "codeCommune": "21528", + "libelleAcheminement": "LA ROCHE VANNEAU", + "nomCommune": "LA ROCHE VANNEAU" }, { - "codePostal": "11360", - "codeCommune": "11436", - "libelleAcheminement": "VILLESEQUE DES CORBIERES", - "nomCommune": "VILLESEQUE DES CORBIERES" + "codePostal": "07450", + "codeCommune": "07282", + "libelleAcheminement": "ST PIERRE DE COLOMBIER", + "nomCommune": "ST PIERRE DE COLOMBIER" }, { - "codePostal": "14480", - "codeCommune": "14355", - "libelleAcheminement": "PONTS SUR SEULLES", - "nomCommune": "PONTS SUR SEULLES" + "codePostal": "09250", + "codeCommune": "09012", + "libelleAcheminement": "APPY", + "nomCommune": "APPY" }, { - "codePostal": "54700", - "codeCommune": "54079", - "libelleAcheminement": "BLENOD LES PONT A MOUSSON", - "nomCommune": "BLENOD LES PONT A MOUSSON" + "codePostal": "21390", + "codeCommune": "21449", + "libelleAcheminement": "NAN SOUS THIL", + "nomCommune": "NAN SOUS THIL" }, { - "codePostal": "12520", - "codeCommune": "12002", - "libelleAcheminement": "AGUESSAC", - "nomCommune": "AGUESSAC" + "codePostal": "21500", + "codeCommune": "21530", + "libelleAcheminement": "ROUGEMONT", + "nomCommune": "ROUGEMONT" }, { - "codePostal": "14250", - "codeCommune": "14364", - "libelleAcheminement": "LINGEVRES", - "nomCommune": "LINGEVRES" + "codePostal": "07520", + "codeCommune": "07285", + "libelleAcheminement": "ST PIERRE SUR DOUX", + "nomCommune": "ST PIERRE SUR DOUX" }, { - "codePostal": "54113", - "codeCommune": "54080", - "libelleAcheminement": "BLENOD LES TOUL", - "nomCommune": "BLENOD LES TOUL" + "codePostal": "09400", + "codeCommune": "09016", + "libelleAcheminement": "ARNAVE", + "nomCommune": "ARNAVE" }, { - "codePostal": "12120", - "codeCommune": "12015", - "libelleAcheminement": "AURIAC LAGAST", - "nomCommune": "AURIAC LAGAST" + "codePostal": "21330", + "codeCommune": "21454", + "libelleAcheminement": "NICEY", + "nomCommune": "NICEY" }, { - "codePostal": "14330", - "codeCommune": "14370", - "libelleAcheminement": "LE MOLAY LITTRY", - "nomCommune": "LE MOLAY LITTRY" + "codePostal": "21110", + "codeCommune": "21532", + "libelleAcheminement": "ROUVRES EN PLAINE", + "nomCommune": "ROUVRES EN PLAINE" }, { - "codePostal": "54620", - "codeCommune": "54081", - "libelleAcheminement": "BOISMONT", - "nomCommune": "BOISMONT" + "codePostal": "07580", + "codeCommune": "07287", + "libelleAcheminement": "ST PONS", + "nomCommune": "ST PONS" }, { - "codePostal": "12260", - "codeCommune": "12018", - "libelleAcheminement": "BALAGUIER D OLT", - "nomCommune": "BALAGUIER D OLT" + "codePostal": "09800", + "codeCommune": "09017", + "libelleAcheminement": "ARRIEN EN BETHMALE", + "nomCommune": "ARRIEN EN BETHMALE" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "21340", + "codeCommune": "21461", + "libelleAcheminement": "NOLAY", + "nomCommune": "NOLAY" }, { - "codePostal": "54770", - "codeCommune": "54089", - "libelleAcheminement": "BOUXIERES AUX CHENES", - "nomCommune": "BOUXIERES AUX CHENES" + "codePostal": "21200", + "codeCommune": "21534", + "libelleAcheminement": "RUFFEY LES BEAUNE", + "nomCommune": "RUFFEY LES BEAUNE" }, { - "codePostal": "12380", - "codeCommune": "12019", - "libelleAcheminement": "BALAGUIER SUR RANCE", - "nomCommune": "BALAGUIER SUR RANCE" + "codePostal": "07000", + "codeCommune": "07288", + "libelleAcheminement": "ST PRIEST", + "nomCommune": "ST PRIEST" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "09310", + "codeCommune": "09024", + "libelleAcheminement": "ASTON", + "nomCommune": "ASTON" }, { - "codePostal": "54136", - "codeCommune": "54090", - "libelleAcheminement": "BOUXIERES AUX DAMES", - "nomCommune": "BOUXIERES AUX DAMES" + "codePostal": "21450", + "codeCommune": "21466", + "libelleAcheminement": "OIGNY", + "nomCommune": "OIGNY" }, { - "codePostal": "12270", - "codeCommune": "12029", - "libelleAcheminement": "BOR ET BAR", - "nomCommune": "BOR ET BAR" + "codePostal": "21260", + "codeCommune": "21536", + "libelleAcheminement": "SACQUENAY", + "nomCommune": "SACQUENAY" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "07440", + "codeCommune": "07297", + "libelleAcheminement": "ST SYLVESTRE", + "nomCommune": "ST SYLVESTRE" }, { - "codePostal": "54930", - "codeCommune": "54092", - "libelleAcheminement": "BOUZANVILLE", - "nomCommune": "BOUZANVILLE" + "codePostal": "09230", + "codeCommune": "09037", + "libelleAcheminement": "BARJAC", + "nomCommune": "BARJAC" }, { - "codePostal": "12160", - "codeCommune": "12032", - "libelleAcheminement": "BOUSSAC", - "nomCommune": "BOUSSAC" + "codePostal": "21610", + "codeCommune": "21468", + "libelleAcheminement": "ORAIN", + "nomCommune": "ORAIN" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "21540", + "codeCommune": "21539", + "libelleAcheminement": "ST ANTHOT", + "nomCommune": "ST ANTHOT" }, { - "codePostal": "54290", - "codeCommune": "54098", - "libelleAcheminement": "BREMONCOURT", - "nomCommune": "BREMONCOURT" + "codePostal": "07210", + "codeCommune": "07302", + "libelleAcheminement": "ST VINCENT DE BARRES", + "nomCommune": "ST VINCENT DE BARRES" }, { - "codePostal": "12350", - "codeCommune": "12034", - "libelleAcheminement": "BRANDONNET", - "nomCommune": "BRANDONNET" + "codePostal": "09100", + "codeCommune": "09050", + "libelleAcheminement": "BENAGUES", + "nomCommune": "BENAGUES" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "21360", + "codeCommune": "21476", + "libelleAcheminement": "PAINBLANC", + "nomCommune": "PAINBLANC" }, { - "codePostal": "54150", - "codeCommune": "54099", - "libelleAcheminement": "VAL DE BRIEY", - "nomCommune": "VAL DE BRIEY" + "codePostal": "21530", + "codeCommune": "21548", + "libelleAcheminement": "ST GERMAIN DE MODEON", + "nomCommune": "ST GERMAIN DE MODEON" }, { - "codePostal": "12400", - "codeCommune": "12042", - "libelleAcheminement": "CALMELS ET LE VIALA", - "nomCommune": "CALMELS ET LE VIALA" + "codePostal": "07400", + "codeCommune": "07311", + "libelleAcheminement": "SCEAUTRES", + "nomCommune": "SCEAUTRES" }, { - "codePostal": "14290", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "09500", + "codeCommune": "09052", + "libelleAcheminement": "BESSET", + "nomCommune": "BESSET" }, { - "codePostal": "54110", - "codeCommune": "54104", - "libelleAcheminement": "BUISSONCOURT", - "nomCommune": "BUISSONCOURT" + "codePostal": "21130", + "codeCommune": "21493", + "libelleAcheminement": "PONCEY LES ATHEE", + "nomCommune": "PONCEY LES ATHEE" }, { - "codePostal": "12800", - "codeCommune": "12046", - "libelleAcheminement": "CAMJAC", - "nomCommune": "CAMJAC" + "codePostal": "21500", + "codeCommune": "21550", + "libelleAcheminement": "ST GERMAIN LES SENAILLY", + "nomCommune": "ST GERMAIN LES SENAILLY" }, { - "codePostal": "14111", - "codeCommune": "14383", - "libelleAcheminement": "LOUVIGNY", - "nomCommune": "LOUVIGNY" + "codePostal": "07380", + "codeCommune": "07315", + "libelleAcheminement": "LA SOUCHE", + "nomCommune": "LA SOUCHE" }, { - "codePostal": "54210", - "codeCommune": "54108", - "libelleAcheminement": "BURTHECOURT AUX CHENES", - "nomCommune": "BURTHECOURT AUX CHENES" + "codePostal": "09250", + "codeCommune": "09053", + "libelleAcheminement": "BESTIAC", + "nomCommune": "BESTIAC" }, { - "codePostal": "12140", - "codeCommune": "12048", - "libelleAcheminement": "CAMPOURIEZ", - "nomCommune": "CAMPOURIEZ" + "codePostal": "21250", + "codeCommune": "21502", + "libelleAcheminement": "POUILLY SUR SAONE", + "nomCommune": "POUILLY SUR SAONE" }, { - "codePostal": "14530", - "codeCommune": "14384", - "libelleAcheminement": "LUC SUR MER", - "nomCommune": "LUC SUR MER" + "codePostal": "21200", + "codeCommune": "21558", + "libelleAcheminement": "STE MARIE LA BLANCHE", + "nomCommune": "STE MARIE LA BLANCHE" }, { - "codePostal": "54280", - "codeCommune": "54113", - "libelleAcheminement": "CHAMPENOUX", - "nomCommune": "CHAMPENOUX" + "codePostal": "07150", + "codeCommune": "07328", + "libelleAcheminement": "VAGNAS", + "nomCommune": "VAGNAS" }, { - "codePostal": "12160", - "codeCommune": "12056", - "libelleAcheminement": "BARAQUEVILLE", - "nomCommune": "BARAQUEVILLE" + "codePostal": "09160", + "codeCommune": "09054", + "libelleAcheminement": "BETCHAT", + "nomCommune": "BETCHAT" }, { - "codePostal": "14400", - "codeCommune": "14385", - "libelleAcheminement": "MAGNY EN BESSIN", - "nomCommune": "MAGNY EN BESSIN" + "codePostal": "21610", + "codeCommune": "21503", + "libelleAcheminement": "POUILLY SUR VINGEANNE", + "nomCommune": "POUILLY SUR VINGEANNE" }, { - "codePostal": "54470", - "codeCommune": "54119", - "libelleAcheminement": "CHAREY", - "nomCommune": "CHAREY" + "codePostal": "21210", + "codeCommune": "21560", + "libelleAcheminement": "ST MARTIN DE LA MER", + "nomCommune": "ST MARTIN DE LA MER" }, { - "codePostal": "12210", - "codeCommune": "12058", - "libelleAcheminement": "CASSUEJOULS", - "nomCommune": "CASSUEJOULS" + "codePostal": "07110", + "codeCommune": "07329", + "libelleAcheminement": "VALGORGE", + "nomCommune": "VALGORGE" }, { - "codePostal": "14310", - "codeCommune": "14389", - "libelleAcheminement": "MAISONCELLES PELVEY", - "nomCommune": "MAISONCELLES PELVEY" + "codePostal": "09100", + "codeCommune": "09056", + "libelleAcheminement": "BEZAC", + "nomCommune": "BEZAC" }, { - "codePostal": "54200", - "codeCommune": "54128", - "libelleAcheminement": "CHOLOY MENILLOT", - "nomCommune": "CHOLOY MENILLOT" + "codePostal": "21700", + "codeCommune": "21506", + "libelleAcheminement": "PREMEAUX PRISSEY", + "nomCommune": "PREMEAUX PRISSEY" }, { - "codePostal": "12230", - "codeCommune": "12063", - "libelleAcheminement": "LA CAVALERIE", - "nomCommune": "LA CAVALERIE" + "codePostal": "21610", + "codeCommune": "21562", + "libelleAcheminement": "ST MAURICE SUR VINGEANNE", + "nomCommune": "ST MAURICE SUR VINGEANNE" }, { - "codePostal": "14210", - "codeCommune": "14390", - "libelleAcheminement": "MAISONCELLES SUR AJON", - "nomCommune": "MAISONCELLES SUR AJON" + "codePostal": "07600", + "codeCommune": "07331", + "libelleAcheminement": "VALS LES BAINS", + "nomCommune": "VALS LES BAINS" }, { - "codePostal": "54200", - "codeCommune": "54128", - "libelleAcheminement": "CHOLOY MENILLOT", - "nomCommune": "CHOLOY MENILLOT" + "codePostal": "09800", + "codeCommune": "09059", + "libelleAcheminement": "BONAC IRAZEIN", + "nomCommune": "BONAC IRAZEIN" }, { - "codePostal": "12320", - "codeCommune": "12076", - "libelleAcheminement": "CONQUES EN ROUERGUE", - "nomCommune": "CONQUES EN ROUERGUE" + "codePostal": "21400", + "codeCommune": "21510", + "libelleAcheminement": "PRUSLY SUR OURCE", + "nomCommune": "PRUSLY SUR OURCE" }, { - "codePostal": "14400", - "codeCommune": "14391", - "libelleAcheminement": "MAISONS", - "nomCommune": "MAISONS" + "codePostal": "21700", + "codeCommune": "21564", + "libelleAcheminement": "ST NICOLAS LES CITEAUX", + "nomCommune": "ST NICOLAS LES CITEAUX" }, { - "codePostal": "54480", - "codeCommune": "54129", - "libelleAcheminement": "CIREY SUR VEZOUZE", - "nomCommune": "CIREY SUR VEZOUZE" + "codePostal": "07410", + "codeCommune": "07335", + "libelleAcheminement": "VAUDEVANT", + "nomCommune": "VAUDEVANT" }, { - "codePostal": "12210", - "codeCommune": "12088", - "libelleAcheminement": "CURIERES", - "nomCommune": "CURIERES" + "codePostal": "09310", + "codeCommune": "09064", + "libelleAcheminement": "BOUAN", + "nomCommune": "BOUAN" }, { - "codePostal": "14210", - "codeCommune": "14393", - "libelleAcheminement": "MAIZET", - "nomCommune": "MAIZET" + "codePostal": "21800", + "codeCommune": "21515", + "libelleAcheminement": "QUETIGNY", + "nomCommune": "QUETIGNY" }, { - "codePostal": "54330", - "codeCommune": "54132", - "libelleAcheminement": "CLEREY SUR BRENON", - "nomCommune": "CLEREY SUR BRENON" + "codePostal": "21260", + "codeCommune": "21599", + "libelleAcheminement": "SELONGEY", + "nomCommune": "SELONGEY" }, { - "codePostal": "12390", - "codeCommune": "12095", - "libelleAcheminement": "ESCANDOLIERES", - "nomCommune": "ESCANDOLIERES" + "codePostal": "07000", + "codeCommune": "07340", + "libelleAcheminement": "VEYRAS", + "nomCommune": "VEYRAS" }, { - "codePostal": "14480", - "codeCommune": "14406", - "libelleAcheminement": "MOULINS EN BESSIN", - "nomCommune": "MOULINS EN BESSIN" + "codePostal": "09320", + "codeCommune": "09065", + "libelleAcheminement": "BOUSSENAC", + "nomCommune": "BOUSSENAC" }, { - "codePostal": "54370", - "codeCommune": "54133", - "libelleAcheminement": "COINCOURT", - "nomCommune": "COINCOURT" + "codePostal": "21290", + "codeCommune": "21519", + "libelleAcheminement": "RECEY SUR OURCE", + "nomCommune": "RECEY SUR OURCE" }, { - "codePostal": "12300", - "codeCommune": "12100", - "libelleAcheminement": "FIRMI", - "nomCommune": "FIRMI" + "codePostal": "21140", + "codeCommune": "21603", + "libelleAcheminement": "SEMUR EN AUXOIS", + "nomCommune": "SEMUR EN AUXOIS" }, { - "codePostal": "14810", - "codeCommune": "14409", - "libelleAcheminement": "MERVILLE FRANCEVILLE PLAGE", - "nomCommune": "MERVILLE FRANCEVILLE PLAGE" + "codePostal": "07220", + "codeCommune": "07346", + "libelleAcheminement": "VIVIERS", + "nomCommune": "VIVIERS" }, { - "codePostal": "54110", - "codeCommune": "54139", - "libelleAcheminement": "COURBESSEAUX", - "nomCommune": "COURBESSEAUX" + "codePostal": "09000", + "codeCommune": "09068", + "libelleAcheminement": "BURRET", + "nomCommune": "BURRET" }, { - "codePostal": "12310", - "codeCommune": "12107", - "libelleAcheminement": "GAILLAC D AVEYRON", - "nomCommune": "GAILLAC D AVEYRON" + "codePostal": "21310", + "codeCommune": "21522", + "libelleAcheminement": "RENEVE", + "nomCommune": "RENEVE" }, { - "codePostal": "14100", - "codeCommune": "14419", - "libelleAcheminement": "LE MESNIL EUDES", - "nomCommune": "LE MESNIL EUDES" + "codePostal": "21140", + "codeCommune": "21612", + "libelleAcheminement": "SOUHEY", + "nomCommune": "SOUHEY" }, { - "codePostal": "54930", - "codeCommune": "54140", - "libelleAcheminement": "COURCELLES", - "nomCommune": "COURCELLES" + "codePostal": "08310", + "codeCommune": "08005", + "libelleAcheminement": "ALINCOURT", + "nomCommune": "ALINCOURT" }, { - "codePostal": "12220", - "codeCommune": "12108", - "libelleAcheminement": "GALGAN", - "nomCommune": "GALGAN" + "codePostal": "09120", + "codeCommune": "09072", + "libelleAcheminement": "CALZAN", + "nomCommune": "CALZAN" }, { - "codePostal": "14140", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "21390", + "codeCommune": "21529", + "libelleAcheminement": "ROILLY", + "nomCommune": "ROILLY" }, { - "codePostal": "54113", - "codeCommune": "54146", - "libelleAcheminement": "CREZILLES", - "nomCommune": "CREZILLES" + "codePostal": "21110", + "codeCommune": "21623", + "libelleAcheminement": "TART", + "nomCommune": "TART" }, { - "codePostal": "12390", - "codeCommune": "12111", - "libelleAcheminement": "GOUTRENS", - "nomCommune": "GOUTRENS" + "codePostal": "08300", + "codeCommune": "08021", + "libelleAcheminement": "ARNICOURT", + "nomCommune": "ARNICOURT" }, { - "codePostal": "14140", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "09300", + "codeCommune": "09080", + "libelleAcheminement": "CARLA DE ROQUEFORT", + "nomCommune": "CARLA DE ROQUEFORT" }, { - "codePostal": "54300", - "codeCommune": "54148", - "libelleAcheminement": "CROISMARE", - "nomCommune": "CROISMARE" + "codePostal": "21530", + "codeCommune": "21531", + "libelleAcheminement": "ROUVRAY", + "nomCommune": "ROUVRAY" }, { - "codePostal": "12600", - "codeCommune": "12118", - "libelleAcheminement": "LACROIX BARREZ", - "nomCommune": "LACROIX BARREZ" + "codePostal": "21150", + "codeCommune": "21627", + "libelleAcheminement": "THENISSEY", + "nomCommune": "THENISSEY" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "08310", + "codeCommune": "08032", + "libelleAcheminement": "AUSSONCE", + "nomCommune": "AUSSONCE" }, { - "codePostal": "54360", - "codeCommune": "54152", - "libelleAcheminement": "DAMELEVIERES", - "nomCommune": "DAMELEVIERES" + "codePostal": "09420", + "codeCommune": "09082", + "libelleAcheminement": "CASTELNAU DURBAN", + "nomCommune": "CASTELNAU DURBAN" }, { - "codePostal": "12350", - "codeCommune": "12121", - "libelleAcheminement": "LANUEJOULS", - "nomCommune": "LANUEJOULS" + "codePostal": "21530", + "codeCommune": "21538", + "libelleAcheminement": "ST ANDEUX", + "nomCommune": "ST ANDEUX" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "21460", + "codeCommune": "21635", + "libelleAcheminement": "THOSTE", + "nomCommune": "THOSTE" }, { - "codePostal": "54470", - "codeCommune": "54153", - "libelleAcheminement": "DAMPVITOUX", - "nomCommune": "DAMPVITOUX" + "codePostal": "08240", + "codeCommune": "08033", + "libelleAcheminement": "AUTHE", + "nomCommune": "AUTHE" }, { - "codePostal": "12380", - "codeCommune": "12125", - "libelleAcheminement": "LAVAL ROQUECEZIERE", - "nomCommune": "LAVAL ROQUECEZIERE" + "codePostal": "09130", + "codeCommune": "09083", + "libelleAcheminement": "CASTERAS", + "nomCommune": "CASTERAS" }, { - "codePostal": "14100", - "codeCommune": "14435", - "libelleAcheminement": "LES MONCEAUX", - "nomCommune": "LES MONCEAUX" + "codePostal": "21700", + "codeCommune": "21542", + "libelleAcheminement": "ST BERNARD", + "nomCommune": "ST BERNARD" }, { - "codePostal": "54380", - "codeCommune": "54157", - "libelleAcheminement": "DIEULOUARD", - "nomCommune": "DIEULOUARD" + "codePostal": "21460", + "codeCommune": "21640", + "libelleAcheminement": "TORCY ET POULIGNY", + "nomCommune": "TORCY ET POULIGNY" }, { - "codePostal": "12300", - "codeCommune": "12130", - "libelleAcheminement": "LIVINHAC LE HAUT", - "nomCommune": "LIVINHAC LE HAUT" + "codePostal": "08260", + "codeCommune": "08037", + "libelleAcheminement": "AUVILLERS LES FORGES", + "nomCommune": "AUVILLERS LES FORGES" }, { - "codePostal": "14230", - "codeCommune": "14439", - "libelleAcheminement": "MONFREVILLE", - "nomCommune": "MONFREVILLE" + "codePostal": "09350", + "codeCommune": "09084", + "libelleAcheminement": "CASTEX", + "nomCommune": "CASTEX" }, { - "codePostal": "54450", - "codeCommune": "54161", - "libelleAcheminement": "DOMEVRE SUR VEZOUZE", - "nomCommune": "DOMEVRE SUR VEZOUZE" + "codePostal": "21290", + "codeCommune": "21543", + "libelleAcheminement": "ST BROING LES MOINES", + "nomCommune": "ST BROING LES MOINES" }, { - "codePostal": "12450", - "codeCommune": "12133", - "libelleAcheminement": "LUC LA PRIMAUBE", - "nomCommune": "LUC LA PRIMAUBE" + "codePostal": "21250", + "codeCommune": "21647", + "libelleAcheminement": "TRUGNY", + "nomCommune": "TRUGNY" }, { - "codePostal": "14340", - "codeCommune": "14448", - "libelleAcheminement": "MONTREUIL EN AUGE", - "nomCommune": "MONTREUIL EN AUGE" + "codePostal": "08430", + "codeCommune": "08041", + "libelleAcheminement": "BAALONS", + "nomCommune": "BAALONS" }, { - "codePostal": "54119", - "codeCommune": "54162", - "libelleAcheminement": "DOMGERMAIN", - "nomCommune": "DOMGERMAIN" + "codePostal": "09120", + "codeCommune": "09090", + "libelleAcheminement": "CAZAUX", + "nomCommune": "CAZAUX" }, { - "codePostal": "12220", - "codeCommune": "12134", - "libelleAcheminement": "LUGAN", - "nomCommune": "LUGAN" + "codePostal": "21350", + "codeCommune": "21544", + "libelleAcheminement": "STE COLOMBE EN AUXOIS", + "nomCommune": "STE COLOMBE EN AUXOIS" }, { - "codePostal": "14310", - "codeCommune": "14449", - "libelleAcheminement": "MONTS EN BESSIN", - "nomCommune": "MONTS EN BESSIN" + "codePostal": "21350", + "codeCommune": "21649", + "libelleAcheminement": "UNCEY LE FRANC", + "nomCommune": "UNCEY LE FRANC" }, { - "codePostal": "54450", - "codeCommune": "54163", - "libelleAcheminement": "DOMJEVIN", - "nomCommune": "DOMJEVIN" + "codePostal": "08220", + "codeCommune": "08046", + "libelleAcheminement": "BANOGNE RECOUVRANCE", + "nomCommune": "BANOGNE RECOUVRANCE" }, { - "codePostal": "12270", - "codeCommune": "12135", - "libelleAcheminement": "LUNAC", - "nomCommune": "LUNAC" + "codePostal": "09140", + "codeCommune": "09100", + "libelleAcheminement": "COUFLENS", + "nomCommune": "COUFLENS" }, { - "codePostal": "14100", - "codeCommune": "14466", - "libelleAcheminement": "NOROLLES", - "nomCommune": "NOROLLES" + "codePostal": "21400", + "codeCommune": "21545", + "libelleAcheminement": "STE COLOMBE SUR SEINE", + "nomCommune": "STE COLOMBE SUR SEINE" }, { - "codePostal": "54770", - "codeCommune": "54168", - "libelleAcheminement": "DOMMARTIN SOUS AMANCE", - "nomCommune": "DOMMARTIN SOUS AMANCE" + "codePostal": "21320", + "codeCommune": "21652", + "libelleAcheminement": "VANDENESSE EN AUXOIS", + "nomCommune": "VANDENESSE EN AUXOIS" }, { - "codePostal": "12100", - "codeCommune": "12145", - "libelleAcheminement": "MILLAU", - "nomCommune": "MILLAU" + "codePostal": "08430", + "codeCommune": "08047", + "libelleAcheminement": "BARBAISE", + "nomCommune": "BARBAISE" }, { - "codePostal": "14210", - "codeCommune": "14475", - "libelleAcheminement": "VAL D ARRY", - "nomCommune": "VAL D ARRY" + "codePostal": "09140", + "codeCommune": "09100", + "libelleAcheminement": "COUFLENS", + "nomCommune": "COUFLENS" }, { - "codePostal": "54490", - "codeCommune": "54169", - "libelleAcheminement": "DOMPRIX", - "nomCommune": "DOMPRIX" + "codePostal": "21690", + "codeCommune": "21552", + "libelleAcheminement": "ST HELIER", + "nomCommune": "ST HELIER" }, { - "codePostal": "12210", - "codeCommune": "12156", - "libelleAcheminement": "MONTPEYROUX", - "nomCommune": "MONTPEYROUX" + "codePostal": "21110", + "codeCommune": "21656", + "libelleAcheminement": "VARANGES", + "nomCommune": "VARANGES" }, { - "codePostal": "14290", - "codeCommune": "14478", - "libelleAcheminement": "ORBEC", - "nomCommune": "ORBEC" + "codePostal": "08240", + "codeCommune": "08049", + "libelleAcheminement": "BAR LES BUZANCY", + "nomCommune": "BAR LES BUZANCY" }, { - "codePostal": "54800", - "codeCommune": "54171", - "libelleAcheminement": "DONCOURT LES CONFLANS", - "nomCommune": "DONCOURT LES CONFLANS" + "codePostal": "09120", + "codeCommune": "09104", + "libelleAcheminement": "DALOU", + "nomCommune": "DALOU" }, { - "codePostal": "12630", - "codeCommune": "12157", - "libelleAcheminement": "MONTROZIER", - "nomCommune": "MONTROZIER" + "codePostal": "21170", + "codeCommune": "21554", + "libelleAcheminement": "ST JEAN DE LOSNE", + "nomCommune": "ST JEAN DE LOSNE" }, { - "codePostal": "14590", - "codeCommune": "14484", - "libelleAcheminement": "OUILLY DU HOULEY", - "nomCommune": "OUILLY DU HOULEY" + "codePostal": "21260", + "codeCommune": "21665", + "libelleAcheminement": "VERNOIS LES VESVRES", + "nomCommune": "VERNOIS LES VESVRES" }, { - "codePostal": "54370", - "codeCommune": "54173", - "libelleAcheminement": "DROUVILLE", - "nomCommune": "DROUVILLE" + "codePostal": "08140", + "codeCommune": "08053", + "libelleAcheminement": "BAZEILLES", + "nomCommune": "BAZEILLES" }, { - "codePostal": "12630", - "codeCommune": "12157", - "libelleAcheminement": "MONTROZIER", - "nomCommune": "MONTROZIER" + "codePostal": "09600", + "codeCommune": "09107", + "libelleAcheminement": "DUN", + "nomCommune": "DUN" }, { - "codePostal": "14150", - "codeCommune": "14488", - "libelleAcheminement": "OUISTREHAM", - "nomCommune": "OUISTREHAM" + "codePostal": "21490", + "codeCommune": "21555", + "libelleAcheminement": "ST JULIEN", + "nomCommune": "ST JULIEN" }, { - "codePostal": "54200", - "codeCommune": "54174", - "libelleAcheminement": "ECROUVES", - "nomCommune": "ECROUVES" + "codePostal": "21260", + "codeCommune": "21667", + "libelleAcheminement": "VERONNES", + "nomCommune": "VERONNES" }, { - "codePostal": "12720", - "codeCommune": "12160", - "libelleAcheminement": "MOSTUEJOULS", - "nomCommune": "MOSTUEJOULS" + "codePostal": "08300", + "codeCommune": "08062", + "libelleAcheminement": "BERTONCOURT", + "nomCommune": "BERTONCOURT" }, { - "codePostal": "14390", - "codeCommune": "14499", - "libelleAcheminement": "PETIVILLE", - "nomCommune": "PETIVILLE" + "codePostal": "09000", + "codeCommune": "09130", + "libelleAcheminement": "GANAC", + "nomCommune": "GANAC" }, { - "codePostal": "54260", - "codeCommune": "54178", - "libelleAcheminement": "EPIEZ SUR CHIERS", - "nomCommune": "EPIEZ SUR CHIERS" + "codePostal": "21410", + "codeCommune": "21559", + "libelleAcheminement": "STE MARIE SUR OUCHE", + "nomCommune": "STE MARIE SUR OUCHE" }, { - "codePostal": "12190", - "codeCommune": "12172", - "libelleAcheminement": "LE NAYRAC", - "nomCommune": "LE NAYRAC" + "codePostal": "21690", + "codeCommune": "21670", + "libelleAcheminement": "VERREY SOUS SALMAISE", + "nomCommune": "VERREY SOUS SALMAISE" }, { - "codePostal": "14130", - "codeCommune": "14500", - "libelleAcheminement": "PIERREFITTE EN AUGE", - "nomCommune": "PIERREFITTE EN AUGE" + "codePostal": "08190", + "codeCommune": "08070", + "libelleAcheminement": "BLANZY LA SALONNAISE", + "nomCommune": "BLANZY LA SALONNAISE" }, { - "codePostal": "54610", - "codeCommune": "54179", - "libelleAcheminement": "EPLY", - "nomCommune": "EPLY" + "codePostal": "09250", + "codeCommune": "09131", + "libelleAcheminement": "GARANOU", + "nomCommune": "GARANOU" }, { - "codePostal": "12510", - "codeCommune": "12174", - "libelleAcheminement": "OLEMPS", - "nomCommune": "OLEMPS" + "codePostal": "21540", + "codeCommune": "21563", + "libelleAcheminement": "ST MESMIN", + "nomCommune": "ST MESMIN" }, { - "codePostal": "14590", - "codeCommune": "14504", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "21430", + "codeCommune": "21675", + "libelleAcheminement": "VIANGES", + "nomCommune": "VIANGES" }, { - "codePostal": "54760", - "codeCommune": "54188", - "libelleAcheminement": "FAULX", - "nomCommune": "FAULX" + "codePostal": "08260", + "codeCommune": "08071", + "libelleAcheminement": "BLOMBAY", + "nomCommune": "BLOMBAY" }, { - "codePostal": "12130", - "codeCommune": "12182", - "libelleAcheminement": "PIERREFICHE", - "nomCommune": "PIERREFICHE" + "codePostal": "09700", + "codeCommune": "09132", + "libelleAcheminement": "GAUDIES", + "nomCommune": "GAUDIES" }, { - "codePostal": "14440", - "codeCommune": "14509", - "libelleAcheminement": "PLUMETOT", - "nomCommune": "PLUMETOT" + "codePostal": "21270", + "codeCommune": "21571", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "54115", - "codeCommune": "54189", - "libelleAcheminement": "FAVIERES", - "nomCommune": "FAVIERES" + "codePostal": "21330", + "codeCommune": "21693", + "libelleAcheminement": "VILLEDIEU", + "nomCommune": "VILLEDIEU" }, { - "codePostal": "12240", - "codeCommune": "12189", - "libelleAcheminement": "PRADINAS", - "nomCommune": "PRADINAS" + "codePostal": "08290", + "codeCommune": "08073", + "libelleAcheminement": "BOSSUS LES RUMIGNY", + "nomCommune": "BOSSUS LES RUMIGNY" }, { - "codePostal": "14340", - "codeCommune": "14520", - "libelleAcheminement": "LE PRE D AUGE", - "nomCommune": "LE PRE D AUGE" + "codePostal": "09300", + "codeCommune": "09142", + "libelleAcheminement": "ILHAT", + "nomCommune": "ILHAT" }, { - "codePostal": "54115", - "codeCommune": "54190", - "libelleAcheminement": "FECOCOURT", - "nomCommune": "FECOCOURT" + "codePostal": "21440", + "codeCommune": "21573", + "libelleAcheminement": "ST SEINE L ABBAYE", + "nomCommune": "ST SEINE L ABBAYE" }, { - "codePostal": "12640", - "codeCommune": "12200", - "libelleAcheminement": "RIVIERE SUR TARN", - "nomCommune": "RIVIERE SUR TARN" + "codePostal": "21700", + "codeCommune": "21698", + "libelleAcheminement": "VILLERS LA FAYE", + "nomCommune": "VILLERS LA FAYE" }, { - "codePostal": "14270", - "codeCommune": "14527", - "libelleAcheminement": "BELLE VIE EN AUGE", - "nomCommune": "BELLE VIE EN AUGE" + "codePostal": "08430", + "codeCommune": "08080", + "libelleAcheminement": "BOUVELLEMONT", + "nomCommune": "BOUVELLEMONT" }, { - "codePostal": "54110", - "codeCommune": "54195", - "libelleAcheminement": "FLAINVAL", - "nomCommune": "FLAINVAL" + "codePostal": "09700", + "codeCommune": "09147", + "libelleAcheminement": "LABATUT", + "nomCommune": "LABATUT" }, { - "codePostal": "12000", - "codeCommune": "12202", - "libelleAcheminement": "RODEZ", - "nomCommune": "RODEZ" + "codePostal": "21170", + "codeCommune": "21577", + "libelleAcheminement": "ST USAGE", + "nomCommune": "ST USAGE" }, { - "codePostal": "14540", - "codeCommune": "14538", - "libelleAcheminement": "CASTINE EN PLAINE", - "nomCommune": "CASTINE EN PLAINE" + "codePostal": "21130", + "codeCommune": "21699", + "libelleAcheminement": "VILLERS LES POTS", + "nomCommune": "VILLERS LES POTS" }, { - "codePostal": "54122", - "codeCommune": "54201", - "libelleAcheminement": "FONTENOY LA JOUTE", - "nomCommune": "FONTENOY LA JOUTE" + "codePostal": "08190", + "codeCommune": "08084", + "libelleAcheminement": "BRIENNE SUR AISNE", + "nomCommune": "BRIENNE SUR AISNE" }, { - "codePostal": "12220", - "codeCommune": "12206", - "libelleAcheminement": "ROUSSENNAC", - "nomCommune": "ROUSSENNAC" + "codePostal": "09200", + "codeCommune": "09149", + "libelleAcheminement": "LACOURT", + "nomCommune": "LACOURT" }, { - "codePostal": "14540", - "codeCommune": "14538", - "libelleAcheminement": "CASTINE EN PLAINE", - "nomCommune": "CASTINE EN PLAINE" + "codePostal": "21590", + "codeCommune": "21582", + "libelleAcheminement": "SANTENAY", + "nomCommune": "SANTENAY" }, { - "codePostal": "54330", - "codeCommune": "54203", - "libelleAcheminement": "FORCELLES ST GORGON", - "nomCommune": "FORCELLES ST GORGON" + "codePostal": "21400", + "codeCommune": "21704", + "libelleAcheminement": "VILLIERS LE DUC", + "nomCommune": "VILLIERS LE DUC" }, { - "codePostal": "12620", - "codeCommune": "12213", - "libelleAcheminement": "ST BEAUZELY", - "nomCommune": "ST BEAUZELY" + "codePostal": "08200", + "codeCommune": "08101", + "libelleAcheminement": "LA CHAPELLE", + "nomCommune": "LA CHAPELLE" }, { - "codePostal": "14100", - "codeCommune": "14540", - "libelleAcheminement": "ROCQUES", - "nomCommune": "ROCQUES" + "codePostal": "09240", + "codeCommune": "09154", + "libelleAcheminement": "LARBONT", + "nomCommune": "LARBONT" }, { - "codePostal": "54930", - "codeCommune": "54204", - "libelleAcheminement": "FORCELLES SOUS GUGNEY", - "nomCommune": "FORCELLES SOUS GUGNEY" + "codePostal": "21340", + "codeCommune": "21583", + "libelleAcheminement": "SANTOSSE", + "nomCommune": "SANTOSSE" }, { - "codePostal": "12230", - "codeCommune": "12220", - "libelleAcheminement": "STE EULALIE DE CERNON", - "nomCommune": "STE EULALIE DE CERNON" + "codePostal": "21350", + "codeCommune": "21710", + "libelleAcheminement": "VITTEAUX", + "nomCommune": "VITTEAUX" }, { - "codePostal": "14340", - "codeCommune": "14550", - "libelleAcheminement": "RUMESNIL", - "nomCommune": "RUMESNIL" + "codePostal": "08400", + "codeCommune": "08104", + "libelleAcheminement": "CHARDENY", + "nomCommune": "CHARDENY" }, { - "codePostal": "54830", - "codeCommune": "54209", - "libelleAcheminement": "FRANCONVILLE", - "nomCommune": "FRANCONVILLE" + "codePostal": "09600", + "codeCommune": "09157", + "libelleAcheminement": "LAROQUE D OLMES", + "nomCommune": "LAROQUE D OLMES" }, { - "codePostal": "12420", - "codeCommune": "12223", - "libelleAcheminement": "ARGENCES EN AUBRAC", - "nomCommune": "ARGENCES EN AUBRAC" + "codePostal": "21360", + "codeCommune": "21588", + "libelleAcheminement": "SAUSSEY", + "nomCommune": "SAUSSEY" }, { - "codePostal": "14540", - "codeCommune": "14554", - "libelleAcheminement": "LE CASTELET", - "nomCommune": "LE CASTELET" + "codePostal": "21270", + "codeCommune": "21713", + "libelleAcheminement": "VONGES", + "nomCommune": "VONGES" }, { - "codePostal": "54390", - "codeCommune": "54215", - "libelleAcheminement": "FROUARD", - "nomCommune": "FROUARD" + "codePostal": "08400", + "codeCommune": "08116", + "libelleAcheminement": "BAIRON ET SES ENVIRONS", + "nomCommune": "BAIRON ET SES ENVIRONS" }, { - "codePostal": "12130", - "codeCommune": "12224", - "libelleAcheminement": "ST GENIEZ D OLT ET D AUBRAC", - "nomCommune": "ST GENIEZ D OLT ET D AUBRAC" + "codePostal": "09600", + "codeCommune": "09161", + "libelleAcheminement": "LERAN", + "nomCommune": "LERAN" }, { - "codePostal": "14130", - "codeCommune": "14555", - "libelleAcheminement": "ST ANDRE D HEBERTOT", - "nomCommune": "ST ANDRE D HEBERTOT" + "codePostal": "21540", + "codeCommune": "21592", + "libelleAcheminement": "SAVIGNY SOUS MALAIN", + "nomCommune": "SAVIGNY SOUS MALAIN" }, { - "codePostal": "54120", - "codeCommune": "54217", - "libelleAcheminement": "GELACOURT", - "nomCommune": "GELACOURT" + "codePostal": "21640", + "codeCommune": "21716", + "libelleAcheminement": "VOUGEOT", + "nomCommune": "VOUGEOT" }, { - "codePostal": "12260", - "codeCommune": "12227", - "libelleAcheminement": "ST IGEST", - "nomCommune": "ST IGEST" + "codePostal": "08400", + "codeCommune": "08130", + "libelleAcheminement": "CONTREUVE", + "nomCommune": "CONTREUVE" }, { - "codePostal": "14750", - "codeCommune": "14562", - "libelleAcheminement": "ST AUBIN SUR MER", - "nomCommune": "ST AUBIN SUR MER" + "codePostal": "09300", + "codeCommune": "09165", + "libelleAcheminement": "LESPARROU", + "nomCommune": "LESPARROU" }, { - "codePostal": "54115", - "codeCommune": "54218", - "libelleAcheminement": "GELAUCOURT", - "nomCommune": "GELAUCOURT" + "codePostal": "21910", + "codeCommune": "21596", + "libelleAcheminement": "SAVOUGES", + "nomCommune": "SAVOUGES" }, { - "codePostal": "12250", - "codeCommune": "12229", - "libelleAcheminement": "ST JEAN D ALCAPIES", - "nomCommune": "ST JEAN D ALCAPIES" + "codePostal": "22140", + "codeCommune": "22004", + "libelleAcheminement": "BEGARD", + "nomCommune": "BEGARD" }, { - "codePostal": "14480", - "codeCommune": "14569", - "libelleAcheminement": "STE CROIX SUR MER", - "nomCommune": "STE CROIX SUR MER" + "codePostal": "08140", + "codeCommune": "08136", + "libelleAcheminement": "DAIGNY", + "nomCommune": "DAIGNY" }, { - "codePostal": "54830", - "codeCommune": "54222", - "libelleAcheminement": "GERBEVILLER", - "nomCommune": "GERBEVILLER" + "codePostal": "09230", + "codeCommune": "09184", + "libelleAcheminement": "MAUVEZIN DE STE CROIX", + "nomCommune": "MAUVEZIN DE STE CROIX" }, { - "codePostal": "12620", - "codeCommune": "12236", - "libelleAcheminement": "ST LAURENT DE LEVEZOU", - "nomCommune": "ST LAURENT DE LEVEZOU" + "codePostal": "21220", + "codeCommune": "21597", + "libelleAcheminement": "SEGROIS", + "nomCommune": "SEGROIS" }, { - "codePostal": "14290", - "codeCommune": "14570", - "libelleAcheminement": "VALORBIQUET", - "nomCommune": "VALORBIQUET" + "codePostal": "22140", + "codeCommune": "22004", + "libelleAcheminement": "BEGARD", + "nomCommune": "BEGARD" }, { - "codePostal": "54170", - "codeCommune": "54223", - "libelleAcheminement": "GERMINY", - "nomCommune": "GERMINY" + "codePostal": "08110", + "codeCommune": "08138", + "libelleAcheminement": "LES DEUX VILLES", + "nomCommune": "LES DEUX VILLES" }, { - "codePostal": "12780", - "codeCommune": "12238", - "libelleAcheminement": "ST LEONS", - "nomCommune": "ST LEONS" + "codePostal": "09160", + "codeCommune": "09187", + "libelleAcheminement": "MERCENAC", + "nomCommune": "MERCENAC" }, { - "codePostal": "14140", - "codeCommune": "14576", - "libelleAcheminement": "VAL DE VIE", - "nomCommune": "VAL DE VIE" + "codePostal": "21150", + "codeCommune": "21598", + "libelleAcheminement": "SEIGNY", + "nomCommune": "SEIGNY" }, { - "codePostal": "54740", - "codeCommune": "54224", - "libelleAcheminement": "GERMONVILLE", - "nomCommune": "GERMONVILLE" + "codePostal": "22160", + "codeCommune": "22024", + "libelleAcheminement": "CALANHEL", + "nomCommune": "CALANHEL" }, { - "codePostal": "12130", - "codeCommune": "12239", - "libelleAcheminement": "ST MARTIN DE LENNE", - "nomCommune": "ST MARTIN DE LENNE" + "codePostal": "08220", + "codeCommune": "08143", + "libelleAcheminement": "DOUMELY BEGNY", + "nomCommune": "DOUMELY BEGNY" }, { - "codePostal": "14260", - "codeCommune": "14579", - "libelleAcheminement": "SEULLINE", - "nomCommune": "SEULLINE" + "codePostal": "09110", + "codeCommune": "09197", + "libelleAcheminement": "MONTAILLOU", + "nomCommune": "MONTAILLOU" }, { - "codePostal": "54780", - "codeCommune": "54227", - "libelleAcheminement": "GIRAUMONT", - "nomCommune": "GIRAUMONT" + "codePostal": "21320", + "codeCommune": "21600", + "libelleAcheminement": "SEMAREY", + "nomCommune": "SEMAREY" }, { - "codePostal": "12490", - "codeCommune": "12244", - "libelleAcheminement": "ST ROME DE TARN", - "nomCommune": "ST ROME DE TARN" + "codePostal": "22450", + "codeCommune": "22028", + "libelleAcheminement": "CAMLEZ", + "nomCommune": "CAMLEZ" }, { - "codePostal": "14280", - "codeCommune": "14587", - "libelleAcheminement": "ST GERMAIN LA BLANCHE HERBE", - "nomCommune": "ST GERMAIN LA BLANCHE HERBE" + "codePostal": "08300", + "codeCommune": "08144", + "libelleAcheminement": "DOUX", + "nomCommune": "DOUX" }, { - "codePostal": "54450", - "codeCommune": "54233", - "libelleAcheminement": "GONDREXON", - "nomCommune": "GONDREXON" + "codePostal": "09230", + "codeCommune": "09198", + "libelleAcheminement": "MONTARDIT", + "nomCommune": "MONTARDIT" }, { - "codePostal": "12300", - "codeCommune": "12246", - "libelleAcheminement": "ST SANTIN", - "nomCommune": "ST SANTIN" + "codePostal": "21220", + "codeCommune": "21601", + "libelleAcheminement": "SEMEZANGES", + "nomCommune": "SEMEZANGES" }, { - "codePostal": "14710", - "codeCommune": "14591", - "libelleAcheminement": "AURE SUR MER", - "nomCommune": "AURE SUR MER" + "codePostal": "22450", + "codeCommune": "22042", + "libelleAcheminement": "COATREVEN", + "nomCommune": "COATREVEN" }, { - "codePostal": "54330", - "codeCommune": "54235", - "libelleAcheminement": "GOVILLER", - "nomCommune": "GOVILLER" + "codePostal": "08150", + "codeCommune": "08149", + "libelleAcheminement": "L ECHELLE", + "nomCommune": "L ECHELLE" }, { - "codePostal": "12460", - "codeCommune": "12250", - "libelleAcheminement": "ST SYMPHORIEN DE THENIERES", - "nomCommune": "ST SYMPHORIEN DE THENIERES" + "codePostal": "09700", + "codeCommune": "09199", + "libelleAcheminement": "MONTAUT", + "nomCommune": "MONTAUT" }, { - "codePostal": "14570", - "codeCommune": "14602", - "libelleAcheminement": "ST LAMBERT", - "nomCommune": "ST LAMBERT" + "codePostal": "21450", + "codeCommune": "21602", + "libelleAcheminement": "SEMOND", + "nomCommune": "SEMOND" }, { - "codePostal": "54260", - "codeCommune": "54236", - "libelleAcheminement": "GRAND FAILLY", - "nomCommune": "GRAND FAILLY" + "codePostal": "22210", + "codeCommune": "22043", + "libelleAcheminement": "COETLOGON", + "nomCommune": "COETLOGON" }, { - "codePostal": "12460", - "codeCommune": "12250", - "libelleAcheminement": "ST SYMPHORIEN DE THENIERES", - "nomCommune": "ST SYMPHORIEN DE THENIERES" + "codePostal": "08300", + "codeCommune": "08150", + "libelleAcheminement": "ECLY", + "nomCommune": "ECLY" }, { - "codePostal": "14310", - "codeCommune": "14607", - "libelleAcheminement": "ST LOUET SUR SEULLES", - "nomCommune": "ST LOUET SUR SEULLES" + "codePostal": "09300", + "codeCommune": "09206", + "libelleAcheminement": "MONTFERRIER", + "nomCommune": "MONTFERRIER" }, { - "codePostal": "54260", - "codeCommune": "54236", - "libelleAcheminement": "GRAND FAILLY", - "nomCommune": "GRAND FAILLY" + "codePostal": "21500", + "codeCommune": "21604", + "libelleAcheminement": "SENAILLY", + "nomCommune": "SENAILLY" }, { - "codePostal": "12700", - "codeCommune": "12257", - "libelleAcheminement": "CAUSSE ET DIEGE", - "nomCommune": "CAUSSE ET DIEGE" + "codePostal": "22800", + "codeCommune": "22045", + "libelleAcheminement": "COHINIAC", + "nomCommune": "COHINIAC" }, { - "codePostal": "14740", - "codeCommune": "14610", - "libelleAcheminement": "ST MANVIEU NORREY", - "nomCommune": "ST MANVIEU NORREY" + "codePostal": "08260", + "codeCommune": "08169", + "libelleAcheminement": "FLAIGNES HAVYS", + "nomCommune": "FLAIGNES HAVYS" }, { - "codePostal": "54290", - "codeCommune": "54238", - "libelleAcheminement": "GRIPPORT", - "nomCommune": "GRIPPORT" + "codePostal": "09200", + "codeCommune": "09209", + "libelleAcheminement": "MONTJOIE EN COUSERANS", + "nomCommune": "MONTJOIE EN COUSERANS" }, { - "codePostal": "12150", - "codeCommune": "12270", - "libelleAcheminement": "SEVERAC D AVEYRON", - "nomCommune": "SEVERAC D AVEYRON" + "codePostal": "21270", + "codeCommune": "21618", + "libelleAcheminement": "TALMAY", + "nomCommune": "TALMAY" }, { - "codePostal": "14130", - "codeCommune": "14620", - "libelleAcheminement": "ST MARTIN AUX CHARTRAINS", - "nomCommune": "ST MARTIN AUX CHARTRAINS" + "codePostal": "22330", + "codeCommune": "22046", + "libelleAcheminement": "LE MENE", + "nomCommune": "LE MENE" }, { - "codePostal": "54120", - "codeCommune": "54243", - "libelleAcheminement": "HABLAINVILLE", - "nomCommune": "HABLAINVILLE" + "codePostal": "08200", + "codeCommune": "08174", + "libelleAcheminement": "FLOING", + "nomCommune": "FLOING" }, { - "codePostal": "12600", - "codeCommune": "12280", - "libelleAcheminement": "THERONDELS", - "nomCommune": "THERONDELS" + "codePostal": "09200", + "codeCommune": "09214", + "libelleAcheminement": "MOULIS", + "nomCommune": "MOULIS" }, { - "codePostal": "14290", - "codeCommune": "14621", - "libelleAcheminement": "ST MARTIN BIENFAITE CRESSONNIERE", - "nomCommune": "ST MARTIN DE BIENFAITE LA CRESSONNIERE" + "codePostal": "21120", + "codeCommune": "21620", + "libelleAcheminement": "TARSUL", + "nomCommune": "TARSUL" }, { - "codePostal": "54330", - "codeCommune": "54247", - "libelleAcheminement": "HAMMEVILLE", - "nomCommune": "HAMMEVILLE" + "codePostal": "22630", + "codeCommune": "22056", + "libelleAcheminement": "EVRAN", + "nomCommune": "EVRAN" }, { - "codePostal": "12290", - "codeCommune": "12283", - "libelleAcheminement": "TREMOUILLES", - "nomCommune": "TREMOUILLES" + "codePostal": "08220", + "codeCommune": "08178", + "libelleAcheminement": "FRAILLICOURT", + "nomCommune": "FRAILLICOURT" }, { - "codePostal": "14710", - "codeCommune": "14622", - "libelleAcheminement": "ST MARTIN DE BLAGNY", - "nomCommune": "ST MARTIN DE BLAGNY" + "codePostal": "09300", + "codeCommune": "09215", + "libelleAcheminement": "NALZEN", + "nomCommune": "NALZEN" }, { - "codePostal": "54450", - "codeCommune": "54251", - "libelleAcheminement": "HARBOUEY", - "nomCommune": "HARBOUEY" + "codePostal": "21110", + "codeCommune": "21622", + "libelleAcheminement": "TART LE BAS", + "nomCommune": "TART LE BAS" }, { - "codePostal": "12430", - "codeCommune": "12284", - "libelleAcheminement": "LE TRUEL", - "nomCommune": "LE TRUEL" + "codePostal": "22150", + "codeCommune": "22060", + "libelleAcheminement": "GAUSSON", + "nomCommune": "GAUSSON" }, { - "codePostal": "14220", - "codeCommune": "14635", - "libelleAcheminement": "ST OMER", - "nomCommune": "ST OMER" + "codePostal": "08170", + "codeCommune": "08185", + "libelleAcheminement": "FUMAY", + "nomCommune": "FUMAY" }, { - "codePostal": "54860", - "codeCommune": "54254", - "libelleAcheminement": "HAUCOURT MOULAINE", - "nomCommune": "HAUCOURT MOULAINE" + "codePostal": "09400", + "codeCommune": "09217", + "libelleAcheminement": "NIAUX", + "nomCommune": "NIAUX" }, { - "codePostal": "12580", - "codeCommune": "12298", - "libelleAcheminement": "VILLECOMTAL", - "nomCommune": "VILLECOMTAL" + "codePostal": "21110", + "codeCommune": "21623", + "libelleAcheminement": "TART", + "nomCommune": "TART" }, { - "codePostal": "14340", - "codeCommune": "14639", - "libelleAcheminement": "ST OUEN LE PIN", - "nomCommune": "ST OUEN LE PIN" + "codePostal": "22290", + "codeCommune": "22065", + "libelleAcheminement": "GOUDELIN", + "nomCommune": "GOUDELIN" }, { - "codePostal": "54830", - "codeCommune": "54255", - "libelleAcheminement": "HAUDONVILLE", - "nomCommune": "HAUDONVILLE" + "codePostal": "08240", + "codeCommune": "08186", + "libelleAcheminement": "GERMONT", + "nomCommune": "GERMONT" }, { - "codePostal": "12410", - "codeCommune": "12307", - "libelleAcheminement": "CURAN", - "nomCommune": "CURAN" + "codePostal": "09400", + "codeCommune": "09221", + "libelleAcheminement": "ORNOLAC USSAT LES BAINS", + "nomCommune": "ORNOLAC USSAT LES BAINS" }, { - "codePostal": "14670", - "codeCommune": "14640", - "libelleAcheminement": "ST PAIR", - "nomCommune": "ST PAIR" + "codePostal": "21320", + "codeCommune": "21630", + "libelleAcheminement": "THOISY LE DESERT", + "nomCommune": "THOISY LE DESERT" }, { - "codePostal": "54180", - "codeCommune": "54265", - "libelleAcheminement": "HOUDEMONT", - "nomCommune": "HOUDEMONT" + "codePostal": "22350", + "codeCommune": "22069", + "libelleAcheminement": "GUENROC", + "nomCommune": "GUENROC" }, { - "codePostal": "13200", - "codeCommune": "13004", - "libelleAcheminement": "ARLES", - "nomCommune": "ARLES" + "codePostal": "08700", + "codeCommune": "08188", + "libelleAcheminement": "GESPUNSART", + "nomCommune": "GESPUNSART" }, { - "codePostal": "14490", - "codeCommune": "14643", - "libelleAcheminement": "ST PAUL DU VERNAY", - "nomCommune": "ST PAUL DU VERNAY" + "codePostal": "09220", + "codeCommune": "09222", + "libelleAcheminement": "ORUS", + "nomCommune": "ORUS" }, { - "codePostal": "54330", - "codeCommune": "54266", - "libelleAcheminement": "HOUDREVILLE", - "nomCommune": "HOUDREVILLE" + "codePostal": "21250", + "codeCommune": "21637", + "libelleAcheminement": "TICHEY", + "nomCommune": "TICHEY" }, { - "codePostal": "13400", - "codeCommune": "13005", - "libelleAcheminement": "AUBAGNE", - "nomCommune": "AUBAGNE" + "codePostal": "22350", + "codeCommune": "22071", + "libelleAcheminement": "GUITTE", + "nomCommune": "GUITTE" }, { - "codePostal": "14130", - "codeCommune": "14644", - "libelleAcheminement": "ST PHILBERT DES CHAMPS", - "nomCommune": "ST PHILBERT DES CHAMPS" + "codePostal": "08260", + "codeCommune": "08189", + "libelleAcheminement": "GIRONDELLE", + "nomCommune": "GIRONDELLE" }, { - "codePostal": "54590", - "codeCommune": "54270", - "libelleAcheminement": "HUSSIGNY GODBRANGE", - "nomCommune": "HUSSIGNY GODBRANGE" + "codePostal": "09300", + "codeCommune": "09227", + "libelleAcheminement": "PEREILLE", + "nomCommune": "PEREILLE" }, { - "codePostal": "13390", - "codeCommune": "13007", - "libelleAcheminement": "AURIOL", - "nomCommune": "AURIOL" + "codePostal": "21460", + "codeCommune": "21642", + "libelleAcheminement": "TOUTRY", + "nomCommune": "TOUTRY" }, { - "codePostal": "14700", - "codeCommune": "14646", - "libelleAcheminement": "ST PIERRE CANIVET", - "nomCommune": "ST PIERRE CANIVET" + "codePostal": "22400", + "codeCommune": "22077", + "libelleAcheminement": "HENANSAL", + "nomCommune": "HENANSAL" }, { - "codePostal": "54800", - "codeCommune": "54273", - "libelleAcheminement": "JARNY", - "nomCommune": "JARNY" + "codePostal": "08200", + "codeCommune": "08194", + "libelleAcheminement": "GLAIRE", + "nomCommune": "GLAIRE" }, { - "codePostal": "13720", - "codeCommune": "13016", - "libelleAcheminement": "LA BOUILLADISSE", - "nomCommune": "LA BOUILLADISSE" + "codePostal": "09500", + "codeCommune": "09244", + "libelleAcheminement": "RIEUCROS", + "nomCommune": "RIEUCROS" }, { - "codePostal": "14260", - "codeCommune": "14650", - "libelleAcheminement": "ST PIERRE DU FRESNE", - "nomCommune": "ST PIERRE DU FRESNE" + "codePostal": "21170", + "codeCommune": "21645", + "libelleAcheminement": "TROUHANS", + "nomCommune": "TROUHANS" }, { - "codePostal": "54114", - "codeCommune": "54276", - "libelleAcheminement": "JEANDELAINCOURT", - "nomCommune": "JEANDELAINCOURT" + "codePostal": "22270", + "codeCommune": "22084", + "libelleAcheminement": "JUGON LES LACS COMMUNE NOUVELLE", + "nomCommune": "JUGON LES LACS COMMUNE NOUVELLE" }, { - "codePostal": "13260", - "codeCommune": "13022", - "libelleAcheminement": "CASSIS", - "nomCommune": "CASSIS" + "codePostal": "08190", + "codeCommune": "08195", + "libelleAcheminement": "GOMONT", + "nomCommune": "GOMONT" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "09200", + "codeCommune": "09247", + "libelleAcheminement": "RIVERENERT", + "nomCommune": "RIVERENERT" }, { - "codePostal": "54800", - "codeCommune": "54277", - "libelleAcheminement": "JEANDELIZE", - "nomCommune": "JEANDELIZE" + "codePostal": "21150", + "codeCommune": "21663", + "libelleAcheminement": "VENAREY LES LAUMES", + "nomCommune": "VENAREY LES LAUMES" }, { - "codePostal": "13600", - "codeCommune": "13023", - "libelleAcheminement": "CEYRESTE", - "nomCommune": "CEYRESTE" + "codePostal": "22480", + "codeCommune": "22088", + "libelleAcheminement": "KERIEN", + "nomCommune": "KERIEN" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "08250", + "codeCommune": "08198", + "libelleAcheminement": "GRANDPRE", + "nomCommune": "GRANDPRE" }, { - "codePostal": "54120", - "codeCommune": "54287", - "libelleAcheminement": "LACHAPELLE", - "nomCommune": "LACHAPELLE" + "codePostal": "09460", + "codeCommune": "09252", + "libelleAcheminement": "ROUZE", + "nomCommune": "ROUZE" }, { - "codePostal": "13790", - "codeCommune": "13025", - "libelleAcheminement": "CHATEAUNEUF LE ROUGE", - "nomCommune": "CHATEAUNEUF LE ROUGE" + "codePostal": "21330", + "codeCommune": "21664", + "libelleAcheminement": "VERDONNET", + "nomCommune": "VERDONNET" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "22480", + "codeCommune": "22092", + "libelleAcheminement": "KERPERT", + "nomCommune": "KERPERT" }, { - "codePostal": "54200", - "codeCommune": "54288", - "libelleAcheminement": "LAGNEY", - "nomCommune": "LAGNEY" + "codePostal": "08220", + "codeCommune": "08210", + "libelleAcheminement": "HANNOGNE ST REMY", + "nomCommune": "HANNOGNE ST REMY" }, { - "codePostal": "13510", - "codeCommune": "13032", - "libelleAcheminement": "EGUILLES", - "nomCommune": "EGUILLES" + "codePostal": "09350", + "codeCommune": "09253", + "libelleAcheminement": "SABARAT", + "nomCommune": "SABARAT" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "21260", + "codeCommune": "21667", + "libelleAcheminement": "VERONNES", + "nomCommune": "VERONNES" }, { - "codePostal": "54770", - "codeCommune": "54289", - "libelleAcheminement": "LAITRE SOUS AMANCE", - "nomCommune": "LAITRE SOUS AMANCE" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "13820", - "codeCommune": "13033", - "libelleAcheminement": "ENSUES LA REDONNE", - "nomCommune": "ENSUES LA REDONNE" + "codePostal": "08170", + "codeCommune": "08214", + "libelleAcheminement": "HARGNIES", + "nomCommune": "HARGNIES" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "09100", + "codeCommune": "09254", + "libelleAcheminement": "ST AMADOU", + "nomCommune": "ST AMADOU" }, { - "codePostal": "54115", - "codeCommune": "54291", - "libelleAcheminement": "LALOEUF", - "nomCommune": "LALOEUF" + "codePostal": "21520", + "codeCommune": "21674", + "libelleAcheminement": "VEUXHAULLES SUR AUBE", + "nomCommune": "VEUXHAULLES SUR AUBE" }, { - "codePostal": "13710", - "codeCommune": "13040", - "libelleAcheminement": "FUVEAU", - "nomCommune": "FUVEAU" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "08240", + "codeCommune": "08215", + "libelleAcheminement": "HARRICOURT", + "nomCommune": "HARRICOURT" }, { - "codePostal": "54570", - "codeCommune": "54298", - "libelleAcheminement": "LANEUVEVILLE DERRIERE FOUG", - "nomCommune": "LANEUVEVILLE DERRIERE FOUG" + "codePostal": "09300", + "codeCommune": "09262", + "libelleAcheminement": "ST JEAN D AIGUES VIVES", + "nomCommune": "ST JEAN D AIGUES VIVES" }, { - "codePostal": "13710", - "codeCommune": "13040", - "libelleAcheminement": "FUVEAU", - "nomCommune": "FUVEAU" + "codePostal": "21540", + "codeCommune": "21679", + "libelleAcheminement": "VIEILMOULIN", + "nomCommune": "VIEILMOULIN" }, { - "codePostal": "14570", - "codeCommune": "14656", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "54760", - "codeCommune": "54301", - "libelleAcheminement": "LANFROICOURT", - "nomCommune": "LANFROICOURT" + "codePostal": "08090", + "codeCommune": "08216", + "libelleAcheminement": "HAUDRECY", + "nomCommune": "HAUDRECY" }, { - "codePostal": "13180", - "codeCommune": "13043", - "libelleAcheminement": "GIGNAC LA NERTHE", - "nomCommune": "GIGNAC LA NERTHE" + "codePostal": "09500", + "codeCommune": "09266", + "libelleAcheminement": "ST JULIEN DE GRAS CAPOU", + "nomCommune": "ST JULIEN DE GRAS CAPOU" }, { - "codePostal": "14670", - "codeCommune": "14657", - "libelleAcheminement": "ST SAMSON", - "nomCommune": "ST SAMSON" + "codePostal": "21200", + "codeCommune": "21684", + "libelleAcheminement": "VIGNOLES", + "nomCommune": "VIGNOLES" }, { - "codePostal": "54150", - "codeCommune": "54302", - "libelleAcheminement": "LANTEFONTAINE", - "nomCommune": "LANTEFONTAINE" + "codePostal": "22130", + "codeCommune": "22096", + "libelleAcheminement": "LANDEBIA", + "nomCommune": "LANDEBIA" }, { - "codePostal": "13500", - "codeCommune": "13056", - "libelleAcheminement": "MARTIGUES", - "nomCommune": "MARTIGUES" + "codePostal": "08360", + "codeCommune": "08225", + "libelleAcheminement": "HERPY L ARLESIENNE", + "nomCommune": "HERPY L ARLESIENNE" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "09000", + "codeCommune": "09269", + "libelleAcheminement": "ST MARTIN DE CARALP", + "nomCommune": "ST MARTIN DE CARALP" }, { - "codePostal": "54520", - "codeCommune": "54304", - "libelleAcheminement": "LAXOU", - "nomCommune": "LAXOU" + "codePostal": "21210", + "codeCommune": "21687", + "libelleAcheminement": "VILLARGOIX", + "nomCommune": "VILLARGOIX" }, { - "codePostal": "13590", - "codeCommune": "13060", - "libelleAcheminement": "MEYREUIL", - "nomCommune": "MEYREUIL" + "codePostal": "22800", + "codeCommune": "22099", + "libelleAcheminement": "LANFAINS", + "nomCommune": "LANFAINS" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "08090", + "codeCommune": "08230", + "libelleAcheminement": "HOULDIZY", + "nomCommune": "HOULDIZY" }, { - "codePostal": "54690", - "codeCommune": "54305", - "libelleAcheminement": "LAY ST CHRISTOPHE", - "nomCommune": "LAY ST CHRISTOPHE" + "codePostal": "09100", + "codeCommune": "09270", + "libelleAcheminement": "ST MARTIN D OYDES", + "nomCommune": "ST MARTIN D OYDES" }, { - "codePostal": "13105", - "codeCommune": "13062", - "libelleAcheminement": "MIMET", - "nomCommune": "MIMET" + "codePostal": "21350", + "codeCommune": "21690", + "libelleAcheminement": "VILLEBERNY", + "nomCommune": "VILLEBERNY" }, { - "codePostal": "14640", - "codeCommune": "14660", - "libelleAcheminement": "ST VAAST EN AUGE", - "nomCommune": "ST VAAST EN AUGE" + "codePostal": "22490", + "codeCommune": "22103", + "libelleAcheminement": "LANGROLAY SUR RANCE", + "nomCommune": "LANGROLAY SUR RANCE" }, { - "codePostal": "54740", - "codeCommune": "54309", - "libelleAcheminement": "LEMAINVILLE", - "nomCommune": "LEMAINVILLE" + "codePostal": "08800", + "codeCommune": "08242", + "libelleAcheminement": "LAIFOUR", + "nomCommune": "LAIFOUR" }, { - "codePostal": "13170", - "codeCommune": "13071", - "libelleAcheminement": "LES PENNES MIRABEAU", - "nomCommune": "LES PENNES MIRABEAU" + "codePostal": "09700", + "codeCommune": "09275", + "libelleAcheminement": "ST QUIRC", + "nomCommune": "ST QUIRC" }, { - "codePostal": "14250", - "codeCommune": "14661", - "libelleAcheminement": "ST VAAST SUR SEULLES", - "nomCommune": "ST VAAST SUR SEULLES" + "codePostal": "21350", + "codeCommune": "21707", + "libelleAcheminement": "VILLY EN AUXOIS", + "nomCommune": "VILLY EN AUXOIS" }, { - "codePostal": "54610", - "codeCommune": "54313", - "libelleAcheminement": "LETRICOURT", - "nomCommune": "LETRICOURT" + "codePostal": "22570", + "codeCommune": "22107", + "libelleAcheminement": "BON REPOS SUR BLAVET", + "nomCommune": "BON REPOS SUR BLAVET" }, { - "codePostal": "13750", - "codeCommune": "13076", - "libelleAcheminement": "PLAN D ORGON", - "nomCommune": "PLAN D ORGON" + "codePostal": "08250", + "codeCommune": "08245", + "libelleAcheminement": "LANCON", + "nomCommune": "LANCON" }, { - "codePostal": "14240", - "codeCommune": "14664", - "libelleAcheminement": "SALLEN", - "nomCommune": "SALLEN" + "codePostal": "09100", + "codeCommune": "09276", + "libelleAcheminement": "ST VICTOR ROUZAUD", + "nomCommune": "ST VICTOR ROUZAUD" }, { - "codePostal": "54720", - "codeCommune": "54314", - "libelleAcheminement": "LEXY", - "nomCommune": "LEXY" + "codePostal": "21250", + "codeCommune": "21708", + "libelleAcheminement": "VILLY LE MOUTIER", + "nomCommune": "VILLY LE MOUTIER" }, { - "codePostal": "13640", - "codeCommune": "13084", - "libelleAcheminement": "LA ROQUE D ANTHERON", - "nomCommune": "LA ROQUE D ANTHERON" + "codePostal": "22610", + "codeCommune": "22111", + "libelleAcheminement": "LANMODEZ", + "nomCommune": "LANMODEZ" }, { - "codePostal": "14330", - "codeCommune": "14667", - "libelleAcheminement": "SAON", - "nomCommune": "SAON" + "codePostal": "08240", + "codeCommune": "08246", + "libelleAcheminement": "LANDRES ET ST GEORGES", + "nomCommune": "LANDRES ET ST GEORGES" }, { - "codePostal": "54760", - "codeCommune": "54315", - "libelleAcheminement": "LEYR", - "nomCommune": "LEYR" + "codePostal": "09800", + "codeCommune": "09279", + "libelleAcheminement": "SALSEIN", + "nomCommune": "SALSEIN" }, { - "codePostal": "13830", - "codeCommune": "13085", - "libelleAcheminement": "ROQUEFORT LA BEDOULE", - "nomCommune": "ROQUEFORT LA BEDOULE" + "codePostal": "21400", + "codeCommune": "21711", + "libelleAcheminement": "VIX", + "nomCommune": "VIX" }, { - "codePostal": "14130", - "codeCommune": "14687", - "libelleAcheminement": "LE THEIL EN AUGE", - "nomCommune": "LE THEIL EN AUGE" + "codePostal": "22300", + "codeCommune": "22113", + "libelleAcheminement": "LANNION", + "nomCommune": "LANNION" }, { - "codePostal": "54260", - "codeCommune": "54322", - "libelleAcheminement": "LONGUYON", - "nomCommune": "LONGUYON" + "codePostal": "08210", + "codeCommune": "08252", + "libelleAcheminement": "LETANNE", + "nomCommune": "LETANNE" }, { - "codePostal": "13670", - "codeCommune": "13089", - "libelleAcheminement": "ST ANDIOL", - "nomCommune": "ST ANDIOL" + "codePostal": "09300", + "codeCommune": "09281", + "libelleAcheminement": "SAUTEL", + "nomCommune": "SAUTEL" }, { - "codePostal": "14220", - "codeCommune": "14689", - "libelleAcheminement": "LE HOM", - "nomCommune": "LE HOM" + "codePostal": "21190", + "codeCommune": "21712", + "libelleAcheminement": "VOLNAY", + "nomCommune": "VOLNAY" }, { - "codePostal": "54210", - "codeCommune": "54330", - "libelleAcheminement": "LUPCOURT", - "nomCommune": "LUPCOURT" + "codePostal": "22100", + "codeCommune": "22118", + "libelleAcheminement": "LANVALLAY", + "nomCommune": "LANVALLAY" }, { - "codePostal": "13250", - "codeCommune": "13092", - "libelleAcheminement": "ST CHAMAS", - "nomCommune": "ST CHAMAS" + "codePostal": "08150", + "codeCommune": "08260", + "libelleAcheminement": "LONNY", + "nomCommune": "LONNY" }, { - "codePostal": "14330", - "codeCommune": "14705", - "libelleAcheminement": "TOURNIERES", - "nomCommune": "TOURNIERES" + "codePostal": "09110", + "codeCommune": "09283", + "libelleAcheminement": "SAVIGNAC LES ORMEAUX", + "nomCommune": "SAVIGNAC LES ORMEAUX" }, { - "codePostal": "54370", - "codeCommune": "54335", - "libelleAcheminement": "MAIXE", - "nomCommune": "MAIXE" + "codePostal": "21230", + "codeCommune": "21715", + "libelleAcheminement": "VOUDENAY", + "nomCommune": "VOUDENAY" }, { - "codePostal": "13210", - "codeCommune": "13100", - "libelleAcheminement": "ST REMY DE PROVENCE", - "nomCommune": "ST REMY DE PROVENCE" + "codePostal": "22230", + "codeCommune": "22122", + "libelleAcheminement": "LAURENAN", + "nomCommune": "LAURENAN" }, { - "codePostal": "14710", - "codeCommune": "14711", - "libelleAcheminement": "TREVIERES", - "nomCommune": "TREVIERES" + "codePostal": "08260", + "codeCommune": "08273", + "libelleAcheminement": "MARBY", + "nomCommune": "MARBY" }, { - "codePostal": "54670", - "codeCommune": "54338", - "libelleAcheminement": "MALLELOY", - "nomCommune": "MALLELOY" + "codePostal": "09140", + "codeCommune": "09285", + "libelleAcheminement": "SEIX", + "nomCommune": "SEIX" }, { - "codePostal": "13109", - "codeCommune": "13107", - "libelleAcheminement": "SIMIANE COLLONGUE", - "nomCommune": "SIMIANE COLLONGUE" + "codePostal": "22460", + "codeCommune": "22001", + "libelleAcheminement": "ALLINEUC", + "nomCommune": "ALLINEUC" }, { - "codePostal": "14670", - "codeCommune": "14712", - "libelleAcheminement": "TROARN", - "nomCommune": "TROARN" + "codePostal": "22230", + "codeCommune": "22133", + "libelleAcheminement": "LOSCOUET SUR MEU", + "nomCommune": "LOSCOUET SUR MEU" }, { - "codePostal": "54470", - "codeCommune": "54340", - "libelleAcheminement": "MAMEY", - "nomCommune": "MAMEY" + "codePostal": "08250", + "codeCommune": "08274", + "libelleAcheminement": "MARCQ", + "nomCommune": "MARCQ" }, { - "codePostal": "13100", - "codeCommune": "13109", - "libelleAcheminement": "LE THOLONET", - "nomCommune": "LE THOLONET" + "codePostal": "09190", + "codeCommune": "09289", + "libelleAcheminement": "LORP SENTARAILLE", + "nomCommune": "LORP SENTARAILLE" }, { - "codePostal": "14210", - "codeCommune": "14713", - "libelleAcheminement": "MONTILLIERES SUR ORNE", - "nomCommune": "MONTILLIERES SUR ORNE" + "codePostal": "22140", + "codeCommune": "22004", + "libelleAcheminement": "BEGARD", + "nomCommune": "BEGARD" }, { - "codePostal": "54290", - "codeCommune": "54344", - "libelleAcheminement": "MANGONVILLE", - "nomCommune": "MANGONVILLE" + "codePostal": "22340", + "codeCommune": "22137", + "libelleAcheminement": "MAEL CARHAIX", + "nomCommune": "MAEL CARHAIX" }, { - "codePostal": "13122", - "codeCommune": "13114", - "libelleAcheminement": "VENTABREN", - "nomCommune": "VENTABREN" + "codePostal": "08260", + "codeCommune": "08282", + "libelleAcheminement": "MAUBERT FONTAINE", + "nomCommune": "MAUBERT FONTAINE" }, { - "codePostal": "14210", - "codeCommune": "14721", - "libelleAcheminement": "VACOGNES NEUILLY", - "nomCommune": "VACOGNES NEUILLY" + "codePostal": "09800", + "codeCommune": "09290", + "libelleAcheminement": "SENTEIN", + "nomCommune": "SENTEIN" }, { - "codePostal": "54210", - "codeCommune": "54345", - "libelleAcheminement": "MANONCOURT EN VERMOIS", - "nomCommune": "MANONCOURT EN VERMOIS" + "codePostal": "22140", + "codeCommune": "22006", + "libelleAcheminement": "BERHET", + "nomCommune": "BERHET" }, { - "codePostal": "13670", - "codeCommune": "13116", - "libelleAcheminement": "VERQUIERES", - "nomCommune": "VERQUIERES" + "codePostal": "22230", + "codeCommune": "22148", + "libelleAcheminement": "MERILLAC", + "nomCommune": "MERILLAC" }, { - "codePostal": "14350", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "08310", + "codeCommune": "08286", + "libelleAcheminement": "MENIL ANNELLES", + "nomCommune": "MENIL ANNELLES" }, { - "codePostal": "54820", - "codeCommune": "54351", - "libelleAcheminement": "MARBACHE", - "nomCommune": "MARBACHE" + "codePostal": "09130", + "codeCommune": "09294", + "libelleAcheminement": "SIEURAS", + "nomCommune": "SIEURAS" }, { - "codePostal": "13127", - "codeCommune": "13117", - "libelleAcheminement": "VITROLLES", - "nomCommune": "VITROLLES" + "codePostal": "22240", + "codeCommune": "22012", + "libelleAcheminement": "LA BOUILLIE", + "nomCommune": "LA BOUILLIE" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "22530", + "codeCommune": "22158", + "libelleAcheminement": "GUERLEDAN", + "nomCommune": "GUERLEDAN" }, { - "codePostal": "54330", - "codeCommune": "54354", - "libelleAcheminement": "MARTHEMONT", - "nomCommune": "MARTHEMONT" + "codePostal": "08270", + "codeCommune": "08288", + "libelleAcheminement": "MESMONT", + "nomCommune": "MESMONT" }, { - "codePostal": "13111", - "codeCommune": "13118", - "libelleAcheminement": "COUDOUX", - "nomCommune": "COUDOUX" + "codePostal": "09220", + "codeCommune": "09295", + "libelleAcheminement": "SIGUER", + "nomCommune": "SIGUER" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "22100", + "codeCommune": "22021", + "libelleAcheminement": "BRUSVILY", + "nomCommune": "BRUSVILY" }, { - "codePostal": "54320", - "codeCommune": "54357", - "libelleAcheminement": "MAXEVILLE", - "nomCommune": "MAXEVILLE" + "codePostal": "22500", + "codeCommune": "22162", + "libelleAcheminement": "PAIMPOL", + "nomCommune": "PAIMPOL" }, { - "codePostal": "13003", - "codeCommune": "13203", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 03" + "codePostal": "08110", + "codeCommune": "08291", + "libelleAcheminement": "MOGUES", + "nomCommune": "MOGUES" }, { - "codePostal": "14400", - "codeCommune": "14732", - "libelleAcheminement": "VAUX SUR AURE", - "nomCommune": "VAUX SUR AURE" + "codePostal": "09310", + "codeCommune": "09296", + "libelleAcheminement": "AULOS SINSAT", + "nomCommune": "AULOS SINSAT" }, { - "codePostal": "54850", - "codeCommune": "54364", - "libelleAcheminement": "MEREVILLE", - "nomCommune": "MEREVILLE" + "codePostal": "22210", + "codeCommune": "22027", + "libelleAcheminement": "LE CAMBOUT", + "nomCommune": "LE CAMBOUT" }, { - "codePostal": "13005", - "codeCommune": "13205", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 05" + "codePostal": "22710", + "codeCommune": "22166", + "libelleAcheminement": "PENVENAN", + "nomCommune": "PENVENAN" }, { - "codePostal": "14250", - "codeCommune": "14734", - "libelleAcheminement": "VENDES", - "nomCommune": "VENDES" + "codePostal": "08140", + "codeCommune": "08294", + "libelleAcheminement": "LA MONCELLE", + "nomCommune": "LA MONCELLE" }, { - "codePostal": "54540", - "codeCommune": "54368", - "libelleAcheminement": "MIGNEVILLE", - "nomCommune": "MIGNEVILLE" + "codePostal": "09320", + "codeCommune": "09301", + "libelleAcheminement": "SOULAN", + "nomCommune": "SOULAN" }, { - "codePostal": "13011", - "codeCommune": "13211", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 11" + "codePostal": "22160", + "codeCommune": "22031", + "libelleAcheminement": "CARNOET", + "nomCommune": "CARNOET" }, { - "codePostal": "14170", - "codeCommune": "14735", - "libelleAcheminement": "VENDEUVRE", - "nomCommune": "VENDEUVRE" + "codePostal": "22710", + "codeCommune": "22166", + "libelleAcheminement": "PENVENAN", + "nomCommune": "PENVENAN" }, { - "codePostal": "54760", - "codeCommune": "54376", - "libelleAcheminement": "MONTENOY", - "nomCommune": "MONTENOY" + "codePostal": "08090", + "codeCommune": "08297", + "libelleAcheminement": "MONTCORNET", + "nomCommune": "MONTCORNET" }, { - "codePostal": "13015", - "codeCommune": "13215", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 15" + "codePostal": "09100", + "codeCommune": "09319", + "libelleAcheminement": "UNZENT", + "nomCommune": "UNZENT" }, { - "codePostal": "14290", - "codeCommune": "14740", - "libelleAcheminement": "LA VESPIERE FRIARDEL", - "nomCommune": "LA VESPIERE FRIARDEL" + "codePostal": "22530", + "codeCommune": "22033", + "libelleAcheminement": "CAUREL", + "nomCommune": "CAUREL" }, { - "codePostal": "54870", - "codeCommune": "54378", - "libelleAcheminement": "MONTIGNY SUR CHIERS", - "nomCommune": "MONTIGNY SUR CHIERS" + "codePostal": "22800", + "codeCommune": "22170", + "libelleAcheminement": "PLAINE HAUTE", + "nomCommune": "PLAINE HAUTE" }, { - "codePostal": "14400", - "codeCommune": "14003", - "libelleAcheminement": "AGY", - "nomCommune": "AGY" + "codePostal": "08250", + "codeCommune": "08310", + "libelleAcheminement": "MOURON", + "nomCommune": "MOURON" }, { - "codePostal": "14710", - "codeCommune": "14745", - "libelleAcheminement": "VIERVILLE SUR MER", - "nomCommune": "VIERVILLE SUR MER" + "codePostal": "09400", + "codeCommune": "09321", + "libelleAcheminement": "USSAT", + "nomCommune": "USSAT" }, { - "codePostal": "54800", - "codeCommune": "54389", - "libelleAcheminement": "MOUAVILLE", - "nomCommune": "MOUAVILLE" + "codePostal": "22140", + "codeCommune": "22034", + "libelleAcheminement": "CAVAN", + "nomCommune": "CAVAN" }, { - "codePostal": "14210", - "codeCommune": "14006", - "libelleAcheminement": "AMAYE SUR ORNE", - "nomCommune": "AMAYE SUR ORNE" + "codePostal": "22130", + "codeCommune": "22172", + "libelleAcheminement": "PLANCOET", + "nomCommune": "PLANCOET" }, { - "codePostal": "14930", - "codeCommune": "14747", - "libelleAcheminement": "VIEUX", - "nomCommune": "VIEUX" + "codePostal": "08300", + "codeCommune": "08313", + "libelleAcheminement": "NANTEUIL SUR AISNE", + "nomCommune": "NANTEUIL SUR AISNE" }, { - "codePostal": "54700", - "codeCommune": "54390", - "libelleAcheminement": "MOUSSON", - "nomCommune": "MOUSSON" + "codePostal": "09700", + "codeCommune": "09331", + "libelleAcheminement": "LE VERNET", + "nomCommune": "LE VERNET" }, { - "codePostal": "14430", - "codeCommune": "14012", - "libelleAcheminement": "ANGERVILLE", - "nomCommune": "ANGERVILLE" + "codePostal": "22160", + "codeCommune": "22037", + "libelleAcheminement": "LA CHAPELLE NEUVE", + "nomCommune": "LA CHAPELLE NEUVE" }, { - "codePostal": "14130", - "codeCommune": "14748", - "libelleAcheminement": "VIEUX BOURG", - "nomCommune": "VIEUX BOURG" + "codePostal": "22240", + "codeCommune": "22179", + "libelleAcheminement": "FREHEL", + "nomCommune": "FREHEL" }, { - "codePostal": "54660", - "codeCommune": "54391", - "libelleAcheminement": "MOUTIERS", - "nomCommune": "MOUTIERS" + "codePostal": "08310", + "codeCommune": "08320", + "libelleAcheminement": "NEUVILLE EN TOURNE A FUY", + "nomCommune": "LA NEUVILLE EN TOURNE A FUY" }, { - "codePostal": "14260", - "codeCommune": "14027", - "libelleAcheminement": "LES MONTS D AUNAY", - "nomCommune": "LES MONTS D AUNAY" + "codePostal": "09300", + "codeCommune": "09336", + "libelleAcheminement": "VILLENEUVE D OLMES", + "nomCommune": "VILLENEUVE D OLMES" }, { - "codePostal": "14700", - "codeCommune": "14751", - "libelleAcheminement": "VIGNATS", - "nomCommune": "VIGNATS" + "codePostal": "22330", + "codeCommune": "22046", + "libelleAcheminement": "LE MENE", + "nomCommune": "LE MENE" }, { - "codePostal": "54150", - "codeCommune": "54402", - "libelleAcheminement": "NORROY LE SEC", - "nomCommune": "NORROY LE SEC" + "codePostal": "22640", + "codeCommune": "22185", + "libelleAcheminement": "PLENEE JUGON", + "nomCommune": "PLENEE JUGON" }, { - "codePostal": "14260", - "codeCommune": "14027", - "libelleAcheminement": "LES MONTS D AUNAY", - "nomCommune": "LES MONTS D AUNAY" + "codePostal": "08270", + "codeCommune": "08329", + "libelleAcheminement": "NOVION PORCIEN", + "nomCommune": "NOVION PORCIEN" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "10200", + "codeCommune": "10002", + "libelleAcheminement": "AILLEVILLE", + "nomCommune": "AILLEVILLE" }, { - "codePostal": "54170", - "codeCommune": "54405", - "libelleAcheminement": "OCHEY", - "nomCommune": "OCHEY" + "codePostal": "22130", + "codeCommune": "22048", + "libelleAcheminement": "CORSEUL", + "nomCommune": "CORSEUL" }, { - "codePostal": "14260", - "codeCommune": "14027", - "libelleAcheminement": "LES MONTS D AUNAY", - "nomCommune": "LES MONTS D AUNAY" + "codePostal": "22720", + "codeCommune": "22189", + "libelleAcheminement": "PLESIDY", + "nomCommune": "PLESIDY" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "08350", + "codeCommune": "08331", + "libelleAcheminement": "NOYERS PONT MAUGIS", + "nomCommune": "NOYERS PONT MAUGIS" }, { - "codePostal": "54890", - "codeCommune": "54410", - "libelleAcheminement": "ONVILLE", - "nomCommune": "ONVILLE" + "codePostal": "10340", + "codeCommune": "10009", + "libelleAcheminement": "ARRELLES", + "nomCommune": "ARRELLES" }, { - "codePostal": "14770", - "codeCommune": "14027", - "libelleAcheminement": "LES MONTS D AUNAY", - "nomCommune": "LES MONTS D AUNAY" + "codePostal": "22130", + "codeCommune": "22049", + "libelleAcheminement": "CREHEN", + "nomCommune": "CREHEN" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "22310", + "codeCommune": "22194", + "libelleAcheminement": "PLESTIN LES GREVES", + "nomCommune": "PLESTIN LES GREVES" }, { - "codePostal": "54330", - "codeCommune": "54417", - "libelleAcheminement": "PAREY ST CESAIRE", - "nomCommune": "PAREY ST CESAIRE" + "codePostal": "08250", + "codeCommune": "08333", + "libelleAcheminement": "OLIZY PRIMAT", + "nomCommune": "OLIZY PRIMAT" }, { - "codePostal": "14210", - "codeCommune": "14034", - "libelleAcheminement": "AVENAY", - "nomCommune": "AVENAY" + "codePostal": "10200", + "codeCommune": "10011", + "libelleAcheminement": "ARRENTIERES", + "nomCommune": "ARRENTIERES" }, { - "codePostal": "15700", - "codeCommune": "15003", - "libelleAcheminement": "ALLY", - "nomCommune": "ALLY" + "codePostal": "22160", + "codeCommune": "22052", + "libelleAcheminement": "DUAULT", + "nomCommune": "DUAULT" }, { - "codePostal": "54120", - "codeCommune": "54422", - "libelleAcheminement": "PETTONVILLE", - "nomCommune": "PETTONVILLE" + "codePostal": "22560", + "codeCommune": "22198", + "libelleAcheminement": "PLEUMEUR BODOU", + "nomCommune": "PLEUMEUR BODOU" }, { - "codePostal": "14480", - "codeCommune": "14038", - "libelleAcheminement": "BANVILLE", - "nomCommune": "BANVILLE" + "codePostal": "08310", + "codeCommune": "08338", + "libelleAcheminement": "PAUVRES", + "nomCommune": "PAUVRES" }, { - "codePostal": "15700", - "codeCommune": "15003", - "libelleAcheminement": "ALLY", - "nomCommune": "ALLY" + "codePostal": "10220", + "codeCommune": "10014", + "libelleAcheminement": "ASSENCIERES", + "nomCommune": "ASSENCIERES" }, { - "codePostal": "54700", - "codeCommune": "54433", - "libelleAcheminement": "PORT SUR SEILLE", - "nomCommune": "PORT SUR SEILLE" + "codePostal": "22520", + "codeCommune": "22055", + "libelleAcheminement": "BINIC ETABLES SUR MER", + "nomCommune": "BINIC ETABLES SUR MER" }, { - "codePostal": "14670", - "codeCommune": "14045", - "libelleAcheminement": "BASSENEVILLE", - "nomCommune": "BASSENEVILLE" + "codePostal": "22740", + "codeCommune": "22199", + "libelleAcheminement": "PLEUMEUR GAUTIER", + "nomCommune": "PLEUMEUR GAUTIER" }, { - "codePostal": "15100", - "codeCommune": "15004", - "libelleAcheminement": "ANDELAT", - "nomCommune": "ANDELAT" + "codePostal": "08370", + "codeCommune": "08347", + "libelleAcheminement": "PUILLY ET CHARBEAUX", + "nomCommune": "PUILLY ET CHARBEAUX" }, { - "codePostal": "54530", - "codeCommune": "54435", - "libelleAcheminement": "PRENY", - "nomCommune": "PRENY" + "codePostal": "10240", + "codeCommune": "10017", + "libelleAcheminement": "AULNAY", + "nomCommune": "AULNAY" }, { - "codePostal": "14400", - "codeCommune": "14047", - "libelleAcheminement": "BAYEUX", - "nomCommune": "BAYEUX" + "codePostal": "22230", + "codeCommune": "22062", + "libelleAcheminement": "GOMENE", + "nomCommune": "GOMENE" }, { - "codePostal": "15200", - "codeCommune": "15010", - "libelleAcheminement": "ARCHES", - "nomCommune": "ARCHES" + "codePostal": "22170", + "codeCommune": "22206", + "libelleAcheminement": "CHATELAUDREN PLOUAGAT", + "nomCommune": "CHATELAUDREN PLOUAGAT" }, { - "codePostal": "54490", - "codeCommune": "54436", - "libelleAcheminement": "PREUTIN HIGNY", - "nomCommune": "PREUTIN HIGNY" + "codePostal": "08450", + "codeCommune": "08357", + "libelleAcheminement": "REMILLY AILLICOURT", + "nomCommune": "REMILLY AILLICOURT" }, { - "codePostal": "14490", - "codeCommune": "14050", - "libelleAcheminement": "LA BAZOQUE", - "nomCommune": "LA BAZOQUE" + "codePostal": "10130", + "codeCommune": "10018", + "libelleAcheminement": "AUXON", + "nomCommune": "AUXON" }, { - "codePostal": "15150", - "codeCommune": "15011", - "libelleAcheminement": "ARNAC", - "nomCommune": "ARNAC" + "codePostal": "22200", + "codeCommune": "22067", + "libelleAcheminement": "GRACES", + "nomCommune": "GRACES" }, { - "codePostal": "54830", - "codeCommune": "54455", - "libelleAcheminement": "REMENOVILLE", - "nomCommune": "REMENOVILLE" + "codePostal": "22420", + "codeCommune": "22207", + "libelleAcheminement": "PLOUARET", + "nomCommune": "PLOUARET" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "08230", + "codeCommune": "08367", + "libelleAcheminement": "ROCROI", + "nomCommune": "ROCROI" }, { - "codePostal": "15500", - "codeCommune": "15022", - "libelleAcheminement": "BONNAC", - "nomCommune": "BONNAC" + "codePostal": "10220", + "codeCommune": "10019", + "libelleAcheminement": "VAL D AUZON", + "nomCommune": "VAL D AUZON" }, { - "codePostal": "54110", - "codeCommune": "54456", - "libelleAcheminement": "REMEREVILLE", - "nomCommune": "REMEREVILLE" + "codePostal": "22460", + "codeCommune": "22068", + "libelleAcheminement": "GRACE UZEL", + "nomCommune": "GRACE UZEL" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "22260", + "codeCommune": "22212", + "libelleAcheminement": "PLOUEC DU TRIEUX", + "nomCommune": "PLOUEC DU TRIEUX" }, { - "codePostal": "15500", - "codeCommune": "15032", - "libelleAcheminement": "CELOUX", - "nomCommune": "CELOUX" + "codePostal": "08220", + "codeCommune": "08369", + "libelleAcheminement": "LA ROMAGNE", + "nomCommune": "LA ROMAGNE" }, { - "codePostal": "54630", - "codeCommune": "54459", - "libelleAcheminement": "RICHARDMENIL", - "nomCommune": "RICHARDMENIL" + "codePostal": "10130", + "codeCommune": "10024", + "libelleAcheminement": "AVREUIL", + "nomCommune": "AVREUIL" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "22200", + "codeCommune": "22070", + "libelleAcheminement": "GUINGAMP", + "nomCommune": "GUINGAMP" }, { - "codePostal": "15190", - "codeCommune": "15040", - "libelleAcheminement": "CHANTERELLE", - "nomCommune": "CHANTERELLE" + "codePostal": "22820", + "codeCommune": "22218", + "libelleAcheminement": "PLOUGRESCANT", + "nomCommune": "PLOUGRESCANT" }, { - "codePostal": "54380", - "codeCommune": "54460", - "libelleAcheminement": "ROGEVILLE", - "nomCommune": "ROGEVILLE" + "codePostal": "08150", + "codeCommune": "08370", + "libelleAcheminement": "ROUVROY SUR AUDRY", + "nomCommune": "ROUVROY SUR AUDRY" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "10330", + "codeCommune": "10026", + "libelleAcheminement": "BAILLY LE FRANC", + "nomCommune": "BAILLY LE FRANC" }, { - "codePostal": "15700", - "codeCommune": "15046", - "libelleAcheminement": "CHAUSSENAC", - "nomCommune": "CHAUSSENAC" + "codePostal": "22120", + "codeCommune": "22081", + "libelleAcheminement": "HILLION", + "nomCommune": "HILLION" }, { - "codePostal": "54360", - "codeCommune": "54461", - "libelleAcheminement": "ROMAIN", - "nomCommune": "ROMAIN" + "codePostal": "22150", + "codeCommune": "22219", + "libelleAcheminement": "PLOUGUENAST LANGAST", + "nomCommune": "PLOUGUENAST LANGAST" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "08190", + "codeCommune": "08381", + "libelleAcheminement": "ST GERMAINMONT", + "nomCommune": "ST GERMAINMONT" }, { - "codePostal": "15700", - "codeCommune": "15064", - "libelleAcheminement": "ESCORAILLES", - "nomCommune": "ESCORAILLES" + "codePostal": "10330", + "codeCommune": "10027", + "libelleAcheminement": "BALIGNICOURT", + "nomCommune": "BALIGNICOURT" }, { - "codePostal": "54210", - "codeCommune": "54468", - "libelleAcheminement": "SAFFAIS", - "nomCommune": "SAFFAIS" + "codePostal": "22230", + "codeCommune": "22083", + "libelleAcheminement": "ILLIFAUT", + "nomCommune": "ILLIFAUT" }, { - "codePostal": "14400", - "codeCommune": "14078", - "libelleAcheminement": "BLAY", - "nomCommune": "BLAY" + "codePostal": "22780", + "codeCommune": "22227", + "libelleAcheminement": "PLOUNERIN", + "nomCommune": "PLOUNERIN" }, { - "codePostal": "15110", - "codeCommune": "15065", - "libelleAcheminement": "ESPINASSE", - "nomCommune": "ESPINASSE" + "codePostal": "08220", + "codeCommune": "08382", + "libelleAcheminement": "ST JEAN AUX BOIS", + "nomCommune": "ST JEAN AUX BOIS" }, { - "codePostal": "54930", - "codeCommune": "54473", - "libelleAcheminement": "ST FIRMIN", - "nomCommune": "ST FIRMIN" + "codePostal": "10600", + "codeCommune": "10030", + "libelleAcheminement": "BARBEREY ST SULPICE", + "nomCommune": "BARBEREY ST SULPICE" }, { - "codePostal": "14220", - "codeCommune": "14090", - "libelleAcheminement": "BOULON", - "nomCommune": "BOULON" + "codePostal": "22500", + "codeCommune": "22086", + "libelleAcheminement": "KERFOT", + "nomCommune": "KERFOT" }, { - "codePostal": "15380", - "codeCommune": "15066", - "libelleAcheminement": "LE FALGOUX", - "nomCommune": "LE FALGOUX" + "codePostal": "22160", + "codeCommune": "22231", + "libelleAcheminement": "PLOURAC H", + "nomCommune": "PLOURAC H" }, { - "codePostal": "54290", - "codeCommune": "54475", - "libelleAcheminement": "ST GERMAIN", - "nomCommune": "ST GERMAIN" + "codePostal": "08090", + "codeCommune": "08385", + "libelleAcheminement": "ST LAURENT", + "nomCommune": "ST LAURENT" }, { - "codePostal": "14190", - "codeCommune": "14097", - "libelleAcheminement": "BRETTEVILLE LE RABET", - "nomCommune": "BRETTEVILLE LE RABET" + "codePostal": "10130", + "codeCommune": "10040", + "libelleAcheminement": "BERNON", + "nomCommune": "BERNON" }, { - "codePostal": "15140", - "codeCommune": "15067", - "libelleAcheminement": "LE FAU", - "nomCommune": "LE FAU" + "codePostal": "22140", + "codeCommune": "22091", + "libelleAcheminement": "KERMOROC H", + "nomCommune": "KERMOROC H" }, { - "codePostal": "54730", - "codeCommune": "54485", - "libelleAcheminement": "ST PANCRE", - "nomCommune": "ST PANCRE" + "codePostal": "22250", + "codeCommune": "22240", + "libelleAcheminement": "PLUMAUGAT", + "nomCommune": "PLUMAUGAT" }, { - "codePostal": "14760", - "codeCommune": "14101", - "libelleAcheminement": "BRETTEVILLE SUR ODON", - "nomCommune": "BRETTEVILLE SUR ODON" + "codePostal": "08130", + "codeCommune": "08387", + "libelleAcheminement": "ST LOUP TERRIER", + "nomCommune": "ST LOUP TERRIER" }, { - "codePostal": "15230", - "codeCommune": "15077", - "libelleAcheminement": "GOURDIEGES", - "nomCommune": "GOURDIEGES" + "codePostal": "10170", + "codeCommune": "10043", + "libelleAcheminement": "BESSY", + "nomCommune": "BESSY" }, { - "codePostal": "54290", - "codeCommune": "54487", - "libelleAcheminement": "ST REMY AUX BOIS", - "nomCommune": "ST REMY AUX BOIS" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "14130", - "codeCommune": "14102", - "libelleAcheminement": "LE BREUIL EN AUGE", - "nomCommune": "LE BREUIL EN AUGE" + "codePostal": "22210", + "codeCommune": "22255", + "libelleAcheminement": "LA PRENESSAYE", + "nomCommune": "LA PRENESSAYE" }, { - "codePostal": "15800", - "codeCommune": "15081", - "libelleAcheminement": "JOU SOUS MONJOU", - "nomCommune": "JOU SOUS MONJOU" + "codePostal": "08460", + "codeCommune": "08389", + "libelleAcheminement": "ST MARCEL", + "nomCommune": "ST MARCEL" }, { - "codePostal": "54620", - "codeCommune": "54489", - "libelleAcheminement": "ST SUPPLET", - "nomCommune": "ST SUPPLET" + "codePostal": "10380", + "codeCommune": "10052", + "libelleAcheminement": "BOULAGES", + "nomCommune": "BOULAGES" }, { - "codePostal": "14330", - "codeCommune": "14103", - "libelleAcheminement": "LE BREUIL EN BESSIN", - "nomCommune": "LE BREUIL EN BESSIN" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "15250", - "codeCommune": "15083", - "libelleAcheminement": "JUSSAC", - "nomCommune": "JUSSAC" + "codePostal": "22450", + "codeCommune": "22264", + "libelleAcheminement": "LA ROCHE JAUDY", + "nomCommune": "LA ROCHE JAUDY" }, { - "codePostal": "54200", - "codeCommune": "54492", - "libelleAcheminement": "SANZEY", - "nomCommune": "SANZEY" + "codePostal": "08300", + "codeCommune": "08397", + "libelleAcheminement": "ST REMY LE PETIT", + "nomCommune": "ST REMY LE PETIT" }, { - "codePostal": "14130", - "codeCommune": "14104", - "libelleAcheminement": "LE BREVEDENT", - "nomCommune": "LE BREVEDENT" + "codePostal": "10290", + "codeCommune": "10054", + "libelleAcheminement": "BOURDENAY", + "nomCommune": "BOURDENAY" }, { - "codePostal": "15120", - "codeCommune": "15089", - "libelleAcheminement": "LADINHAC", - "nomCommune": "LADINHAC" + "codePostal": "22140", + "codeCommune": "22095", + "libelleAcheminement": "LANDEBAERON", + "nomCommune": "LANDEBAERON" }, { - "codePostal": "54330", - "codeCommune": "54497", - "libelleAcheminement": "SAXON SION", - "nomCommune": "SAXON SION" + "codePostal": "22450", + "codeCommune": "22264", + "libelleAcheminement": "LA ROCHE JAUDY", + "nomCommune": "LA ROCHE JAUDY" }, { - "codePostal": "14860", - "codeCommune": "14106", - "libelleAcheminement": "BREVILLE LES MONTS", - "nomCommune": "BREVILLE LES MONTS" + "codePostal": "08130", + "codeCommune": "08398", + "libelleAcheminement": "STE VAUBOURG", + "nomCommune": "STE VAUBOURG" }, { - "codePostal": "15270", - "codeCommune": "15092", - "libelleAcheminement": "LANOBRE", - "nomCommune": "LANOBRE" + "codePostal": "10400", + "codeCommune": "10057", + "libelleAcheminement": "BOUY SUR ORVIN", + "nomCommune": "BOUY SUR ORVIN" }, { - "codePostal": "54115", - "codeCommune": "54522", - "libelleAcheminement": "THOREY LYAUTEY", - "nomCommune": "THOREY LYAUTEY" + "codePostal": "22400", + "codeCommune": "22098", + "libelleAcheminement": "LANDEHEN", + "nomCommune": "LANDEHEN" }, { - "codePostal": "14610", - "codeCommune": "14125", - "libelleAcheminement": "CAMBES EN PLAINE", - "nomCommune": "CAMBES EN PLAINE" + "codePostal": "22450", + "codeCommune": "22264", + "libelleAcheminement": "LA ROCHE JAUDY", + "nomCommune": "LA ROCHE JAUDY" }, { - "codePostal": "15590", - "codeCommune": "15096", - "libelleAcheminement": "LASCELLE MANDAILLES", - "nomCommune": "LASCELLE" + "codePostal": "08160", + "codeCommune": "08400", + "libelleAcheminement": "SAPOGNE ET FEUCHERES", + "nomCommune": "SAPOGNE ET FEUCHERES" }, { - "codePostal": "54170", - "codeCommune": "54523", - "libelleAcheminement": "THUILLEY AUX GROSEILLES", - "nomCommune": "THUILLEY AUX GROSEILLES" + "codePostal": "10220", + "codeCommune": "10061", + "libelleAcheminement": "BREVONNES", + "nomCommune": "BREVONNES" }, { - "codePostal": "14340", - "codeCommune": "14126", - "libelleAcheminement": "CAMBREMER", - "nomCommune": "CAMBREMER" + "codePostal": "22360", + "codeCommune": "22106", + "libelleAcheminement": "LANGUEUX", + "nomCommune": "LANGUEUX" }, { - "codePostal": "15300", - "codeCommune": "15102", - "libelleAcheminement": "LAVIGERIE", - "nomCommune": "LAVIGERIE" + "codePostal": "22110", + "codeCommune": "22266", + "libelleAcheminement": "ROSTRENEN", + "nomCommune": "ROSTRENEN" }, { - "codePostal": "54190", - "codeCommune": "54525", - "libelleAcheminement": "TIERCELET", - "nomCommune": "TIERCELET" + "codePostal": "08270", + "codeCommune": "08402", + "libelleAcheminement": "SAULCES MONCLIN", + "nomCommune": "SAULCES MONCLIN" }, { - "codePostal": "50730", - "codeCommune": "50229", - "libelleAcheminement": "HAMELIN", - "nomCommune": "HAMELIN" + "codePostal": "10190", + "codeCommune": "10066", + "libelleAcheminement": "BUCEY EN OTHE", + "nomCommune": "BUCEY EN OTHE" }, { - "codePostal": "14340", - "codeCommune": "14126", - "libelleAcheminement": "CAMBREMER", - "nomCommune": "CAMBREMER" + "codePostal": "22290", + "codeCommune": "22108", + "libelleAcheminement": "LANLEFF", + "nomCommune": "LANLEFF" }, { - "codePostal": "15320", - "codeCommune": "15108", - "libelleAcheminement": "VAL D ARCOMIE", - "nomCommune": "VAL D ARCOMIE" + "codePostal": "22550", + "codeCommune": "22268", + "libelleAcheminement": "RUCA", + "nomCommune": "RUCA" }, { - "codePostal": "54570", - "codeCommune": "54534", - "libelleAcheminement": "TRONDES", - "nomCommune": "TRONDES" + "codePostal": "08150", + "codeCommune": "08408", + "libelleAcheminement": "SECHEVAL", + "nomCommune": "SECHEVAL" }, { - "codePostal": "50590", - "codeCommune": "50231", - "libelleAcheminement": "HAUTEVILLE SUR MER", - "nomCommune": "HAUTEVILLE SUR MER" + "codePostal": "10800", + "codeCommune": "10067", + "libelleAcheminement": "BUCHERES", + "nomCommune": "BUCHERES" }, { - "codePostal": "14340", - "codeCommune": "14126", - "libelleAcheminement": "CAMBREMER", - "nomCommune": "CAMBREMER" + "codePostal": "22300", + "codeCommune": "22110", + "libelleAcheminement": "LANMERIN", + "nomCommune": "LANMERIN" }, { - "codePostal": "15190", - "codeCommune": "15110", - "libelleAcheminement": "LUGARDE", - "nomCommune": "LUGARDE" + "codePostal": "22800", + "codeCommune": "22276", + "libelleAcheminement": "ST BIHY", + "nomCommune": "ST BIHY" }, { - "codePostal": "54122", - "codeCommune": "54550", - "libelleAcheminement": "VATHIMENIL", - "nomCommune": "VATHIMENIL" + "codePostal": "08220", + "codeCommune": "08413", + "libelleAcheminement": "SERAINCOURT", + "nomCommune": "SERAINCOURT" }, { - "codePostal": "50410", - "codeCommune": "50234", - "libelleAcheminement": "LA HAYE BELLEFOND", - "nomCommune": "LA HAYE BELLEFOND" + "codePostal": "10800", + "codeCommune": "10067", + "libelleAcheminement": "BUCHERES", + "nomCommune": "BUCHERES" }, { - "codePostal": "14800", - "codeCommune": "14131", - "libelleAcheminement": "CANAPVILLE", - "nomCommune": "CANAPVILLE" + "codePostal": "22800", + "codeCommune": "22126", + "libelleAcheminement": "LE LESLAY", + "nomCommune": "LE LESLAY" }, { - "codePostal": "15190", - "codeCommune": "15114", - "libelleAcheminement": "MARCENAT", - "nomCommune": "MARCENAT" + "codePostal": "22800", + "codeCommune": "22277", + "libelleAcheminement": "ST BRANDAN", + "nomCommune": "ST BRANDAN" }, { - "codePostal": "54280", - "codeCommune": "54558", - "libelleAcheminement": "VELAINE SOUS AMANCE", - "nomCommune": "VELAINE SOUS AMANCE" + "codePostal": "08220", + "codeCommune": "08418", + "libelleAcheminement": "SEVIGNY WALEPPE", + "nomCommune": "SEVIGNY WALEPPE" }, { - "codePostal": "50250", - "codeCommune": "50236", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "10500", + "codeCommune": "10073", + "libelleAcheminement": "CHALETTE SUR VOIRE", + "nomCommune": "CHALETTE SUR VOIRE" }, { - "codePostal": "14230", - "codeCommune": "14132", - "libelleAcheminement": "CANCHY", - "nomCommune": "CANCHY" + "codePostal": "22700", + "codeCommune": "22134", + "libelleAcheminement": "LOUANNEC", + "nomCommune": "LOUANNEC" }, { - "codePostal": "15250", - "codeCommune": "15118", - "libelleAcheminement": "MARMANHAC", - "nomCommune": "MARMANHAC" + "codePostal": "22600", + "codeCommune": "22279", + "libelleAcheminement": "ST CARADEC", + "nomCommune": "ST CARADEC" }, { - "codePostal": "54290", - "codeCommune": "54567", - "libelleAcheminement": "VILLACOURT", - "nomCommune": "VILLACOURT" + "codePostal": "08300", + "codeCommune": "08427", + "libelleAcheminement": "SORBON", + "nomCommune": "SORBON" }, { - "codePostal": "50320", - "codeCommune": "50237", - "libelleAcheminement": "LA HAYE PESNEL", - "nomCommune": "LA HAYE PESNEL" + "codePostal": "10340", + "codeCommune": "10079", + "libelleAcheminement": "CHANNES", + "nomCommune": "CHANNES" }, { - "codePostal": "14140", - "codeCommune": "14141", - "libelleAcheminement": "CASTILLON EN AUGE", - "nomCommune": "CASTILLON EN AUGE" + "codePostal": "22270", + "codeCommune": "22145", + "libelleAcheminement": "MEGRIT", + "nomCommune": "MEGRIT" }, { - "codePostal": "15600", - "codeCommune": "15122", - "libelleAcheminement": "MAURS", - "nomCommune": "MAURS" + "codePostal": "22800", + "codeCommune": "22291", + "libelleAcheminement": "ST GILDAS", + "nomCommune": "ST GILDAS" }, { - "codePostal": "54870", - "codeCommune": "54574", - "libelleAcheminement": "VILLERS LA CHEVRE", - "nomCommune": "VILLERS LA CHEVRE" + "codePostal": "08150", + "codeCommune": "08429", + "libelleAcheminement": "SORMONNE", + "nomCommune": "SORMONNE" }, { - "codePostal": "50700", - "codeCommune": "50241", - "libelleAcheminement": "HEMEVEZ", - "nomCommune": "HEMEVEZ" + "codePostal": "10110", + "codeCommune": "10092", + "libelleAcheminement": "CHAUFFOUR LES BAILLY", + "nomCommune": "CHAUFFOUR LES BAILLY" }, { - "codePostal": "14240", - "codeCommune": "14143", - "libelleAcheminement": "CAUMONT SUR AURE", - "nomCommune": "CAUMONT SUR AURE" + "codePostal": "22230", + "codeCommune": "22147", + "libelleAcheminement": "MERDRIGNAC", + "nomCommune": "MERDRIGNAC" }, { - "codePostal": "15500", - "codeCommune": "15127", - "libelleAcheminement": "MOLOMPIZE", - "nomCommune": "MOLOMPIZE" + "codePostal": "22750", + "codeCommune": "22302", + "libelleAcheminement": "ST JACUT DE LA MER", + "nomCommune": "ST JACUT DE LA MER" }, { - "codePostal": "54920", - "codeCommune": "54575", - "libelleAcheminement": "VILLERS LA MONTAGNE", - "nomCommune": "VILLERS LA MONTAGNE" + "codePostal": "08400", + "codeCommune": "08455", + "libelleAcheminement": "TOURCELLES CHAUMONT", + "nomCommune": "TOURCELLES CHAUMONT" }, { - "codePostal": "50170", - "codeCommune": "50253", - "libelleAcheminement": "HUISNES SUR MER", - "nomCommune": "HUISNES SUR MER" + "codePostal": "10400", + "codeCommune": "10106", + "libelleAcheminement": "COURCEROY", + "nomCommune": "COURCEROY" }, { - "codePostal": "14190", - "codeCommune": "14145", - "libelleAcheminement": "CAUVICOURT", - "nomCommune": "CAUVICOURT" + "codePostal": "22220", + "codeCommune": "22152", + "libelleAcheminement": "MINIHY TREGUIER", + "nomCommune": "MINIHY TREGUIER" }, { - "codePostal": "15600", - "codeCommune": "15133", - "libelleAcheminement": "MONTMURAT", - "nomCommune": "MONTMURAT" + "codePostal": "22170", + "codeCommune": "22304", + "libelleAcheminement": "ST JEAN KERDANIEL", + "nomCommune": "ST JEAN KERDANIEL" }, { - "codePostal": "54600", - "codeCommune": "54578", - "libelleAcheminement": "VILLERS LES NANCY", - "nomCommune": "VILLERS LES NANCY" + "codePostal": "08800", + "codeCommune": "08456", + "libelleAcheminement": "TOURNAVAUX", + "nomCommune": "TOURNAVAUX" }, { - "codePostal": "50540", - "codeCommune": "50256", - "libelleAcheminement": "ISIGNY LE BUAT", - "nomCommune": "ISIGNY LE BUAT" + "codePostal": "10210", + "codeCommune": "10112", + "libelleAcheminement": "COUSSEGREY", + "nomCommune": "COUSSEGREY" }, { - "codePostal": "14270", - "codeCommune": "14149", - "libelleAcheminement": "CESNY AUX VIGNES", - "nomCommune": "CESNY AUX VIGNES" + "codePostal": "22510", + "codeCommune": "22153", + "libelleAcheminement": "MONCONTOUR DE BRETAGNE", + "nomCommune": "MONCONTOUR" }, { - "codePostal": "15170", - "codeCommune": "15141", - "libelleAcheminement": "NEUSSARGUES EN PINATELLE", - "nomCommune": "NEUSSARGUES EN PINATELLE" + "codePostal": "22350", + "codeCommune": "22305", + "libelleAcheminement": "ST JOUAN DE L ISLE", + "nomCommune": "ST JOUAN DE L ISLE" }, { - "codePostal": "54290", - "codeCommune": "54585", - "libelleAcheminement": "VIRECOURT", - "nomCommune": "VIRECOURT" + "codePostal": "08130", + "codeCommune": "08462", + "libelleAcheminement": "VAUX CHAMPAGNE", + "nomCommune": "VAUX CHAMPAGNE" }, { - "codePostal": "50520", - "codeCommune": "50260", - "libelleAcheminement": "JUVIGNY LES VALLEES", - "nomCommune": "JUVIGNY LES VALLEES" + "codePostal": "10200", + "codeCommune": "10113", + "libelleAcheminement": "COUVIGNON", + "nomCommune": "COUVIGNON" }, { - "codePostal": "14220", - "codeCommune": "14150", - "libelleAcheminement": "CESNY LES SOURCES", - "nomCommune": "CESNY LES SOURCES" + "codePostal": "22340", + "codeCommune": "22157", + "libelleAcheminement": "LE MOUSTOIR", + "nomCommune": "LE MOUSTOIR" }, { - "codePostal": "15260", - "codeCommune": "15142", - "libelleAcheminement": "NEUVEGLISE SUR TRUYERE", - "nomCommune": "NEUVEGLISE SUR TRUYERE" + "codePostal": "22630", + "codeCommune": "22308", + "libelleAcheminement": "ST JUVAT", + "nomCommune": "ST JUVAT" }, { - "codePostal": "54740", - "codeCommune": "54597", - "libelleAcheminement": "XIROCOURT", - "nomCommune": "XIROCOURT" + "codePostal": "08220", + "codeCommune": "08465", + "libelleAcheminement": "VAUX LES RUBIGNY", + "nomCommune": "VAUX LES RUBIGNY" }, { - "codePostal": "50800", - "codeCommune": "50262", - "libelleAcheminement": "LA LANDE D AIROU", - "nomCommune": "LA LANDE D AIROU" + "codePostal": "10100", + "codeCommune": "10114", + "libelleAcheminement": "CRANCEY", + "nomCommune": "CRANCEY" }, { - "codePostal": "14520", - "codeCommune": "14172", - "libelleAcheminement": "COMMES", - "nomCommune": "COMMES" + "codePostal": "22710", + "codeCommune": "22166", + "libelleAcheminement": "PENVENAN", + "nomCommune": "PENVENAN" }, { - "codePostal": "15260", - "codeCommune": "15142", - "libelleAcheminement": "NEUVEGLISE SUR TRUYERE", - "nomCommune": "NEUVEGLISE SUR TRUYERE" + "codePostal": "22230", + "codeCommune": "22309", + "libelleAcheminement": "ST LAUNEUC", + "nomCommune": "ST LAUNEUC" }, { - "codePostal": "54370", - "codeCommune": "54600", - "libelleAcheminement": "XOUSSE", - "nomCommune": "XOUSSE" + "codePostal": "08390", + "codeCommune": "08471", + "libelleAcheminement": "VERRIERES", + "nomCommune": "VERRIERES" }, { - "codePostal": "50480", - "codeCommune": "50269", - "libelleAcheminement": "LIESVILLE SUR DOUVE", - "nomCommune": "LIESVILLE SUR DOUVE" + "codePostal": "10500", + "codeCommune": "10123", + "libelleAcheminement": "DIENVILLE", + "nomCommune": "DIENVILLE" }, { - "codePostal": "14770", - "codeCommune": "14174", - "libelleAcheminement": "CONDE EN NORMANDIE", - "nomCommune": "CONDE EN NORMANDIE" + "codePostal": "22700", + "codeCommune": "22168", + "libelleAcheminement": "PERROS GUIREC", + "nomCommune": "PERROS GUIREC" }, { - "codePostal": "15800", - "codeCommune": "15146", - "libelleAcheminement": "PAILHEROLS", - "nomCommune": "PAILHEROLS" + "codePostal": "22320", + "codeCommune": "22313", + "libelleAcheminement": "ST MARTIN DES PRES", + "nomCommune": "ST MARTIN DES PRES" }, { - "codePostal": "54620", - "codeCommune": "54602", - "libelleAcheminement": "HAN DEVANT PIERREPONT", - "nomCommune": "HAN DEVANT PIERREPONT" + "codePostal": "08430", + "codeCommune": "08478", + "libelleAcheminement": "VILLERS LE TILLEUL", + "nomCommune": "VILLERS LE TILLEUL" }, { - "codePostal": "50250", - "codeCommune": "50273", - "libelleAcheminement": "MONTSENELLE", - "nomCommune": "MONTSENELLE" + "codePostal": "10190", + "codeCommune": "10125", + "libelleAcheminement": "DIERREY ST PIERRE", + "nomCommune": "DIERREY ST PIERRE" }, { - "codePostal": "14240", - "codeCommune": "14182", - "libelleAcheminement": "CORMOLAIN", - "nomCommune": "CORMOLAIN" + "codePostal": "22480", + "codeCommune": "22169", + "libelleAcheminement": "PEUMERIT QUINTIN", + "nomCommune": "PEUMERIT QUINTIN" }, { - "codePostal": "15700", - "codeCommune": "15153", - "libelleAcheminement": "PLEAUX", - "nomCommune": "PLEAUX" + "codePostal": "22600", + "codeCommune": "22314", + "libelleAcheminement": "ST MAUDAN", + "nomCommune": "ST MAUDAN" }, { - "codePostal": "55170", - "codeCommune": "55015", - "libelleAcheminement": "AULNOIS EN PERTHOIS", - "nomCommune": "AULNOIS EN PERTHOIS" + "codePostal": "08430", + "codeCommune": "08479", + "libelleAcheminement": "VILLERS LE TOURNEUR", + "nomCommune": "VILLERS LE TOURNEUR" }, { - "codePostal": "50570", - "codeCommune": "50292", - "libelleAcheminement": "MARIGNY LE LOZON", - "nomCommune": "MARIGNY LE LOZON" + "codePostal": "10170", + "codeCommune": "10132", + "libelleAcheminement": "DROUPT STE MARIE", + "nomCommune": "DROUPT STE MARIE" }, { - "codePostal": "14260", - "codeCommune": "14195", - "libelleAcheminement": "COURVAUDON", - "nomCommune": "COURVAUDON" + "codePostal": "22290", + "codeCommune": "22178", + "libelleAcheminement": "PLEHEDEL", + "nomCommune": "PLEHEDEL" }, { - "codePostal": "15160", - "codeCommune": "15155", - "libelleAcheminement": "PRADIERS", - "nomCommune": "PRADIERS" + "codePostal": "22980", + "codeCommune": "22318", + "libelleAcheminement": "ST MICHEL DE PLELAN", + "nomCommune": "ST MICHEL DE PLELAN" }, { - "codePostal": "55700", - "codeCommune": "55018", - "libelleAcheminement": "AUTREVILLE ST LAMBERT", - "nomCommune": "AUTREVILLE ST LAMBERT" + "codePostal": "08430", + "codeCommune": "08482", + "libelleAcheminement": "VILLERS SUR LE MONT", + "nomCommune": "VILLERS SUR LE MONT" }, { - "codePostal": "50600", - "codeCommune": "50315", - "libelleAcheminement": "LE MESNILLARD", - "nomCommune": "LE MESNILLARD" + "codePostal": "10130", + "codeCommune": "10133", + "libelleAcheminement": "EAUX PUISEAUX", + "nomCommune": "EAUX PUISEAUX" }, { - "codePostal": "14400", - "codeCommune": "14214", - "libelleAcheminement": "CUSSY", - "nomCommune": "CUSSY" + "codePostal": "22240", + "codeCommune": "22179", + "libelleAcheminement": "FREHEL", + "nomCommune": "FREHEL" }, { - "codePostal": "15250", - "codeCommune": "15160", - "libelleAcheminement": "REILHAC", - "nomCommune": "REILHAC" + "codePostal": "22480", + "codeCommune": "22321", + "libelleAcheminement": "ST NICOLAS DU PELEM", + "nomCommune": "ST NICOLAS DU PELEM" }, { - "codePostal": "55250", - "codeCommune": "55040", - "libelleAcheminement": "BEAUSITE", - "nomCommune": "BEAUSITE" + "codePostal": "08310", + "codeCommune": "08484", + "libelleAcheminement": "VILLE SUR RETOURNE", + "nomCommune": "VILLE SUR RETOURNE" }, { - "codePostal": "50220", - "codeCommune": "50317", - "libelleAcheminement": "LE MESNIL OZENNE", - "nomCommune": "LE MESNIL OZENNE" + "codePostal": "10200", + "codeCommune": "10137", + "libelleAcheminement": "ENGENTE", + "nomCommune": "ENGENTE" }, { - "codePostal": "14340", - "codeCommune": "14231", - "libelleAcheminement": "BEAUFOUR DRUVAL", - "nomCommune": "BEAUFOUR DRUVAL" + "codePostal": "22240", + "codeCommune": "22179", + "libelleAcheminement": "FREHEL", + "nomCommune": "FREHEL" }, { - "codePostal": "15190", - "codeCommune": "15170", - "libelleAcheminement": "ST AMANDIN", - "nomCommune": "ST AMANDIN" + "codePostal": "22160", + "codeCommune": "22328", + "libelleAcheminement": "ST SERVAIS", + "nomCommune": "ST SERVAIS" }, { - "codePostal": "55250", - "codeCommune": "55040", - "libelleAcheminement": "BEAUSITE", - "nomCommune": "BEAUSITE" + "codePostal": "08400", + "codeCommune": "08490", + "libelleAcheminement": "VOUZIERS", + "nomCommune": "VOUZIERS" }, { - "codePostal": "50490", - "codeCommune": "50340", - "libelleAcheminement": "MONTCUIT", - "nomCommune": "MONTCUIT" + "codePostal": "10210", + "codeCommune": "10143", + "libelleAcheminement": "ETOURVY", + "nomCommune": "ETOURVY" }, { - "codePostal": "14340", - "codeCommune": "14231", - "libelleAcheminement": "BEAUFOUR DRUVAL", - "nomCommune": "BEAUFOUR DRUVAL" + "codePostal": "22980", + "codeCommune": "22180", + "libelleAcheminement": "PLELAN LE PETIT", + "nomCommune": "PLELAN LE PETIT" }, { - "codePostal": "15310", - "codeCommune": "15175", - "libelleAcheminement": "ST CERNIN", - "nomCommune": "ST CERNIN" + "codePostal": "22510", + "codeCommune": "22332", + "libelleAcheminement": "ST TRIMOEL", + "nomCommune": "ST TRIMOEL" }, { - "codePostal": "55430", - "codeCommune": "55043", - "libelleAcheminement": "BELLEVILLE SUR MEUSE", - "nomCommune": "BELLEVILLE SUR MEUSE" + "codePostal": "09300", + "codeCommune": "09003", + "libelleAcheminement": "L AIGUILLON", + "nomCommune": "L AIGUILLON" }, { - "codePostal": "50760", - "codeCommune": "50342", - "libelleAcheminement": "MONTFARVILLE", - "nomCommune": "MONTFARVILLE" + "codePostal": "10170", + "codeCommune": "10144", + "libelleAcheminement": "ETRELLES SUR AUBE", + "nomCommune": "ETRELLES SUR AUBE" }, { - "codePostal": "14250", - "codeCommune": "14236", - "libelleAcheminement": "ELLON", - "nomCommune": "ELLON" + "codePostal": "22570", + "codeCommune": "22181", + "libelleAcheminement": "PLELAUFF", + "nomCommune": "PLELAUFF" }, { - "codePostal": "15590", - "codeCommune": "15178", - "libelleAcheminement": "ST CIRGUES DE JORDANNE", - "nomCommune": "ST CIRGUES DE JORDANNE" + "codePostal": "22200", + "codeCommune": "22338", + "libelleAcheminement": "SQUIFFIEC", + "nomCommune": "SQUIFFIEC" }, { - "codePostal": "55100", - "codeCommune": "55045", - "libelleAcheminement": "BELRUPT EN VERDUNOIS", - "nomCommune": "BELRUPT EN VERDUNOIS" + "codePostal": "09400", + "codeCommune": "09006", + "libelleAcheminement": "ALLIAT", + "nomCommune": "ALLIAT" }, { - "codePostal": "50140", - "codeCommune": "50359", - "libelleAcheminement": "MORTAIN BOCAGE", - "nomCommune": "MORTAIN BOCAGE" + "codePostal": "10150", + "codeCommune": "10149", + "libelleAcheminement": "FEUGES", + "nomCommune": "FEUGES" }, { - "codePostal": "14270", - "codeCommune": "14245", - "libelleAcheminement": "ERNES", - "nomCommune": "ERNES" + "codePostal": "22210", + "codeCommune": "22183", + "libelleAcheminement": "PLEMET", + "nomCommune": "PLEMET" }, { - "codePostal": "15130", - "codeCommune": "15183", - "libelleAcheminement": "ST ETIENNE DE CARLAT", - "nomCommune": "ST ETIENNE DE CARLAT" + "codePostal": "22100", + "codeCommune": "22339", + "libelleAcheminement": "TADEN", + "nomCommune": "TADEN" }, { - "codePostal": "55290", - "codeCommune": "55051", - "libelleAcheminement": "BIENCOURT SUR ORGE", - "nomCommune": "BIENCOURT SUR ORGE" + "codePostal": "09000", + "codeCommune": "09013", + "libelleAcheminement": "ARABAUX", + "nomCommune": "ARABAUX" }, { - "codePostal": "50320", - "codeCommune": "50361", - "libelleAcheminement": "LA MOUCHE", - "nomCommune": "LA MOUCHE" + "codePostal": "10200", + "codeCommune": "10160", + "libelleAcheminement": "FRAVAUX", + "nomCommune": "FRAVAUX" }, { - "codePostal": "14850", - "codeCommune": "14246", - "libelleAcheminement": "ESCOVILLE", - "nomCommune": "ESCOVILLE" + "codePostal": "22370", + "codeCommune": "22186", + "libelleAcheminement": "PLENEUF VAL ANDRE", + "nomCommune": "PLENEUF VAL ANDRE" }, { - "codePostal": "15140", - "codeCommune": "15205", - "libelleAcheminement": "ST PAUL DE SALERS", - "nomCommune": "ST PAUL DE SALERS" + "codePostal": "22340", + "codeCommune": "22344", + "libelleAcheminement": "TREBRIVAN", + "nomCommune": "TREBRIVAN" }, { - "codePostal": "55400", - "codeCommune": "55072", - "libelleAcheminement": "BRAQUIS", - "nomCommune": "BRAQUIS" + "codePostal": "09800", + "codeCommune": "09018", + "libelleAcheminement": "ARROUT", + "nomCommune": "ARROUT" }, { - "codePostal": "50860", - "codeCommune": "50363", - "libelleAcheminement": "MOYON VILLAGES", - "nomCommune": "MOYON VILLAGES" + "codePostal": "10100", + "codeCommune": "10164", + "libelleAcheminement": "GELANNES", + "nomCommune": "GELANNES" }, { - "codePostal": "14210", - "codeCommune": "14249", - "libelleAcheminement": "ESQUAY NOTRE DAME", - "nomCommune": "ESQUAY NOTRE DAME" + "codePostal": "22190", + "codeCommune": "22187", + "libelleAcheminement": "PLERIN", + "nomCommune": "PLERIN" }, { - "codePostal": "15500", - "codeCommune": "15207", - "libelleAcheminement": "ST PONCY", - "nomCommune": "ST PONCY" + "codePostal": "22510", + "codeCommune": "22345", + "libelleAcheminement": "TREBRY", + "nomCommune": "TREBRY" }, { - "codePostal": "55170", - "codeCommune": "55075", - "libelleAcheminement": "BRAUVILLIERS", - "nomCommune": "BRAUVILLIERS" + "codePostal": "09800", + "codeCommune": "09035", + "libelleAcheminement": "BALAGUERES", + "nomCommune": "BALAGUERES" }, { - "codePostal": "50190", - "codeCommune": "50368", - "libelleAcheminement": "NAY", - "nomCommune": "NAY" + "codePostal": "10170", + "codeCommune": "10166", + "libelleAcheminement": "LES GRANDES CHAPELLES", + "nomCommune": "LES GRANDES CHAPELLES" }, { - "codePostal": "14930", - "codeCommune": "14254", - "libelleAcheminement": "ETERVILLE", - "nomCommune": "ETERVILLE" + "codePostal": "22170", + "codeCommune": "22188", + "libelleAcheminement": "PLERNEUF", + "nomCommune": "PLERNEUF" }, { - "codePostal": "15110", - "codeCommune": "15209", - "libelleAcheminement": "ST REMY DE CHAUDES AIGUES", - "nomCommune": "ST REMY DE CHAUDES AIGUES" + "codePostal": "22300", + "codeCommune": "22349", + "libelleAcheminement": "TREDREZ LOCQUEMEAU", + "nomCommune": "TREDREZ LOCQUEMEAU" }, { - "codePostal": "55110", - "codeCommune": "55078", - "libelleAcheminement": "BRIEULLES SUR MEUSE", - "nomCommune": "BRIEULLES SUR MEUSE" + "codePostal": "09400", + "codeCommune": "09045", + "libelleAcheminement": "BEDEILHAC ET AYNAT", + "nomCommune": "BEDEILHAC ET AYNAT" }, { - "codePostal": "50140", - "codeCommune": "50371", - "libelleAcheminement": "LE NEUFBOURG", - "nomCommune": "LE NEUFBOURG" + "codePostal": "10200", + "codeCommune": "10176", + "libelleAcheminement": "JAUCOURT", + "nomCommune": "JAUCOURT" }, { - "codePostal": "14320", - "codeCommune": "14266", - "libelleAcheminement": "FEUGUEROLLES BULLY", - "nomCommune": "FEUGUEROLLES BULLY" + "codePostal": "22150", + "codeCommune": "22203", + "libelleAcheminement": "PLOEUC L HERMITAGE", + "nomCommune": "PLOEUC L HERMITAGE" }, { - "codePostal": "15150", - "codeCommune": "15211", - "libelleAcheminement": "ST SANTIN CANTALES", - "nomCommune": "ST SANTIN CANTALES" + "codePostal": "22540", + "codeCommune": "22354", + "libelleAcheminement": "TREGLAMUS", + "nomCommune": "TREGLAMUS" }, { - "codePostal": "55250", - "codeCommune": "55081", - "libelleAcheminement": "BRIZEAUX", - "nomCommune": "BRIZEAUX" + "codePostal": "09400", + "codeCommune": "09058", + "libelleAcheminement": "BOMPAS", + "nomCommune": "BOMPAS" }, { - "codePostal": "50370", - "codeCommune": "50379", - "libelleAcheminement": "NOTRE DAME DE LIVOYE", - "nomCommune": "NOTRE DAME DE LIVOYE" + "codePostal": "10320", + "codeCommune": "10179", + "libelleAcheminement": "JEUGNY", + "nomCommune": "JEUGNY" }, { - "codePostal": "14100", - "codeCommune": "14270", - "libelleAcheminement": "FIRFOL", - "nomCommune": "FIRFOL" + "codePostal": "22650", + "codeCommune": "22209", + "libelleAcheminement": "BEAUSSAIS SUR MER", + "nomCommune": "BEAUSSAIS SUR MER" }, { - "codePostal": "15290", - "codeCommune": "15214", - "libelleAcheminement": "ST SAURY", - "nomCommune": "ST SAURY" + "codePostal": "22200", + "codeCommune": "22358", + "libelleAcheminement": "TREGONNEAU", + "nomCommune": "TREGONNEAU" }, { - "codePostal": "55200", - "codeCommune": "55085", - "libelleAcheminement": "BROUSSEY RAULECOURT", - "nomCommune": "BROUSSEY RAULECOURT" + "codePostal": "09800", + "codeCommune": "09062", + "libelleAcheminement": "BORDES UCHENTEIN", + "nomCommune": "BORDES UCHENTEIN" }, { - "codePostal": "50190", - "codeCommune": "50394", - "libelleAcheminement": "PERIERS", - "nomCommune": "PERIERS" + "codePostal": "10260", + "codeCommune": "10181", + "libelleAcheminement": "JULLY SUR SARCE", + "nomCommune": "JULLY SUR SARCE" }, { - "codePostal": "14190", - "codeCommune": "14276", - "libelleAcheminement": "FONTAINE LE PIN", - "nomCommune": "FONTAINE LE PIN" + "codePostal": "22470", + "codeCommune": "22214", + "libelleAcheminement": "PLOUEZEC", + "nomCommune": "PLOUEZEC" }, { - "codePostal": "15200", - "codeCommune": "15220", - "libelleAcheminement": "SALINS", - "nomCommune": "SALINS" + "codePostal": "22950", + "codeCommune": "22360", + "libelleAcheminement": "TREGUEUX", + "nomCommune": "TREGUEUX" }, { - "codePostal": "55100", - "codeCommune": "55099", - "libelleAcheminement": "CHAMPNEUVILLE", - "nomCommune": "CHAMPNEUVILLE" + "codePostal": "09000", + "codeCommune": "09066", + "libelleAcheminement": "BRASSAC", + "nomCommune": "BRASSAC" }, { - "codePostal": "50250", - "codeCommune": "50400", - "libelleAcheminement": "PICAUVILLE", - "nomCommune": "PICAUVILLE" + "codePostal": "10120", + "codeCommune": "10186", + "libelleAcheminement": "LAINES AUX BOIS", + "nomCommune": "LAINES AUX BOIS" }, { - "codePostal": "14320", - "codeCommune": "14277", - "libelleAcheminement": "FONTENAY LE MARMION", - "nomCommune": "FONTENAY LE MARMION" + "codePostal": "22810", + "codeCommune": "22216", + "libelleAcheminement": "PLOUGONVER", + "nomCommune": "PLOUGONVER" }, { - "codePostal": "15130", - "codeCommune": "15221", - "libelleAcheminement": "SANSAC DE MARMIESSE", - "nomCommune": "SANSAC DE MARMIESSE" + "codePostal": "22290", + "codeCommune": "22361", + "libelleAcheminement": "TREGUIDEL", + "nomCommune": "TREGUIDEL" }, { - "codePostal": "55000", - "codeCommune": "55101", - "libelleAcheminement": "CHARDOGNE", - "nomCommune": "CHARDOGNE" + "codePostal": "09310", + "codeCommune": "09070", + "libelleAcheminement": "LES CABANNES", + "nomCommune": "LES CABANNES" }, { - "codePostal": "50480", - "codeCommune": "50400", - "libelleAcheminement": "PICAUVILLE", - "nomCommune": "PICAUVILLE" + "codePostal": "10500", + "codeCommune": "10189", + "libelleAcheminement": "LASSICOURT", + "nomCommune": "LASSICOURT" }, { - "codePostal": "14250", - "codeCommune": "14278", - "libelleAcheminement": "FONTENAY LE PESNEL", - "nomCommune": "FONTENAY LE PESNEL" + "codePostal": "22300", + "codeCommune": "22224", + "libelleAcheminement": "PLOULEC H", + "nomCommune": "PLOULEC H" }, { - "codePostal": "15300", - "codeCommune": "15225", - "libelleAcheminement": "SEGUR LES VILLAS", - "nomCommune": "SEGUR LES VILLAS" + "codePostal": "22290", + "codeCommune": "22370", + "libelleAcheminement": "TREMEVEN", + "nomCommune": "TREMEVEN" }, { - "codePostal": "55200", - "codeCommune": "55114", - "libelleAcheminement": "CHONVILLE MALAUMONT", - "nomCommune": "CHONVILLE MALAUMONT" + "codePostal": "09160", + "codeCommune": "09091", + "libelleAcheminement": "CAZAVET", + "nomCommune": "CAZAVET" }, { - "codePostal": "50480", - "codeCommune": "50400", - "libelleAcheminement": "PICAUVILLE", - "nomCommune": "PICAUVILLE" + "codePostal": "10500", + "codeCommune": "10193", + "libelleAcheminement": "LESMONT", + "nomCommune": "LESMONT" }, { - "codePostal": "14240", - "codeCommune": "14282", - "libelleAcheminement": "FOULOGNES", - "nomCommune": "FOULOGNES" + "codePostal": "22970", + "codeCommune": "22225", + "libelleAcheminement": "PLOUMAGOAR", + "nomCommune": "PLOUMAGOAR" }, { - "codePostal": "15100", - "codeCommune": "15229", - "libelleAcheminement": "SOULAGES", - "nomCommune": "SOULAGES" + "codePostal": "22290", + "codeCommune": "22375", + "libelleAcheminement": "TRESSIGNAUX", + "nomCommune": "TRESSIGNAUX" }, { - "codePostal": "55000", - "codeCommune": "55120", - "libelleAcheminement": "COMBLES EN BARROIS", - "nomCommune": "COMBLES EN BARROIS" + "codePostal": "09400", + "codeCommune": "09092", + "libelleAcheminement": "CAZENAVE SERRES ET ALLENS", + "nomCommune": "CAZENAVE SERRES ET ALLENS" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "10210", + "codeCommune": "10201", + "libelleAcheminement": "LA LOGE POMBLIN", + "nomCommune": "LA LOGE POMBLIN" }, { - "codePostal": "14600", - "codeCommune": "14286", - "libelleAcheminement": "FOURNEVILLE", - "nomCommune": "FOURNEVILLE" + "codePostal": "22300", + "codeCommune": "22226", + "libelleAcheminement": "PLOUMILLIAU", + "nomCommune": "PLOUMILLIAU" }, { - "codePostal": "15170", - "codeCommune": "15231", - "libelleAcheminement": "TALIZAT", - "nomCommune": "TALIZAT" + "codePostal": "22600", + "codeCommune": "22376", + "libelleAcheminement": "TREVE", + "nomCommune": "TREVE" }, { - "codePostal": "55200", - "codeCommune": "55122", - "libelleAcheminement": "COMMERCY", - "nomCommune": "COMMERCY" + "codePostal": "09800", + "codeCommune": "09095", + "libelleAcheminement": "CESCAU", + "nomCommune": "CESCAU" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "10140", + "codeCommune": "10205", + "libelleAcheminement": "LONGPRE LE SEC", + "nomCommune": "LONGPRE LE SEC" }, { - "codePostal": "14480", - "codeCommune": "14288", - "libelleAcheminement": "LE FRESNE CAMILLY", - "nomCommune": "LE FRESNE CAMILLY" + "codePostal": "22810", + "codeCommune": "22228", + "libelleAcheminement": "PLOUNEVEZ MOEDEC", + "nomCommune": "PLOUNEVEZ MOEDEC" }, { - "codePostal": "15130", - "codeCommune": "15234", - "libelleAcheminement": "TEISSIERES LES BOULIES", - "nomCommune": "TEISSIERES LES BOULIES" + "codePostal": "22410", + "codeCommune": "22377", + "libelleAcheminement": "TREVENEUC", + "nomCommune": "TREVENEUC" }, { - "codePostal": "55000", - "codeCommune": "55123", - "libelleAcheminement": "LES HAUTS DE CHEE", - "nomCommune": "LES HAUTS DE CHEE" + "codePostal": "09420", + "codeCommune": "09097", + "libelleAcheminement": "CLERMONT", + "nomCommune": "CLERMONT" }, { - "codePostal": "50630", - "codeCommune": "50417", - "libelleAcheminement": "QUETTEHOU", - "nomCommune": "QUETTEHOU" + "codePostal": "10150", + "codeCommune": "10210", + "libelleAcheminement": "LUYERES", + "nomCommune": "LUYERES" }, { - "codePostal": "14220", - "codeCommune": "14291", - "libelleAcheminement": "FRESNEY LE VIEUX", - "nomCommune": "FRESNEY LE VIEUX" + "codePostal": "22110", + "codeCommune": "22229", + "libelleAcheminement": "PLOUNEVEZ QUINTIN", + "nomCommune": "PLOUNEVEZ QUINTIN" }, { - "codePostal": "15310", - "codeCommune": "15238", - "libelleAcheminement": "TOURNEMIRE", - "nomCommune": "TOURNEMIRE" + "codePostal": "22460", + "codeCommune": "22384", + "libelleAcheminement": "UZEL PRES L OUST", + "nomCommune": "UZEL" }, { - "codePostal": "55000", - "codeCommune": "55123", - "libelleAcheminement": "LES HAUTS DE CHEE", - "nomCommune": "LES HAUTS DE CHEE" + "codePostal": "09120", + "codeCommune": "09103", + "libelleAcheminement": "CRAMPAGNA", + "nomCommune": "CRAMPAGNA" }, { - "codePostal": "50210", - "codeCommune": "50419", - "libelleAcheminement": "QUETTREVILLE SUR SIENNE", - "nomCommune": "QUETTREVILLE SUR SIENNE" + "codePostal": "10110", + "codeCommune": "10213", + "libelleAcheminement": "MAGNANT", + "nomCommune": "MAGNANT" }, { - "codePostal": "14590", - "codeCommune": "14293", - "libelleAcheminement": "FUMICHON", - "nomCommune": "FUMICHON" + "codePostal": "22410", + "codeCommune": "22232", + "libelleAcheminement": "PLOURHAN", + "nomCommune": "PLOURHAN" }, { - "codePostal": "15270", - "codeCommune": "15240", - "libelleAcheminement": "TREMOUILLE", - "nomCommune": "TREMOUILLE" + "codePostal": "22420", + "codeCommune": "22387", + "libelleAcheminement": "LE VIEUX MARCHE", + "nomCommune": "LE VIEUX MARCHE" }, { - "codePostal": "55500", - "codeCommune": "55144", - "libelleAcheminement": "DAMMARIE SUR SAULX", - "nomCommune": "DAMMARIE SUR SAULX" + "codePostal": "09600", + "codeCommune": "09107", + "libelleAcheminement": "DUN", + "nomCommune": "DUN" }, { - "codePostal": "50660", - "codeCommune": "50419", - "libelleAcheminement": "QUETTREVILLE SUR SIENNE", - "nomCommune": "QUETTREVILLE SUR SIENNE" + "codePostal": "10240", + "codeCommune": "10214", + "libelleAcheminement": "MAGNICOURT", + "nomCommune": "MAGNICOURT" }, { - "codePostal": "14510", - "codeCommune": "14305", - "libelleAcheminement": "GONNEVILLE SUR MER", - "nomCommune": "GONNEVILLE SUR MER" + "codePostal": "22350", + "codeCommune": "22239", + "libelleAcheminement": "PLUMAUDAN", + "nomCommune": "PLUMAUDAN" }, { - "codePostal": "15300", - "codeCommune": "15248", - "libelleAcheminement": "VALUEJOLS", - "nomCommune": "VALUEJOLS" + "codePostal": "23700", + "codeCommune": "23005", + "libelleAcheminement": "ARFEUILLE CHATAIN", + "nomCommune": "ARFEUILLE CHATAIN" }, { - "codePostal": "55130", - "codeCommune": "55150", - "libelleAcheminement": "DEMANGE BAUDIGNECOURT", - "nomCommune": "DEMANGE BAUDIGNECOURT" + "codePostal": "09600", + "codeCommune": "09107", + "libelleAcheminement": "DUN", + "nomCommune": "DUN" }, { - "codePostal": "50750", - "codeCommune": "50420", - "libelleAcheminement": "QUIBOU", - "nomCommune": "QUIBOU" + "codePostal": "10510", + "codeCommune": "10220", + "libelleAcheminement": "MAIZIERES LA GRANDE PAROISSE", + "nomCommune": "MAIZIERES LA GRANDE PAROISSE" }, { - "codePostal": "14450", - "codeCommune": "14312", - "libelleAcheminement": "GRANDCAMP MAISY", - "nomCommune": "GRANDCAMP MAISY" + "codePostal": "22240", + "codeCommune": "22242", + "libelleAcheminement": "PLURIEN", + "nomCommune": "PLURIEN" }, { - "codePostal": "15100", - "codeCommune": "15262", - "libelleAcheminement": "VILLEDIEU", - "nomCommune": "VILLEDIEU" + "codePostal": "23210", + "codeCommune": "23014", + "libelleAcheminement": "AZAT CHATENET", + "nomCommune": "AZAT CHATENET" }, { - "codePostal": "55160", - "codeCommune": "55157", - "libelleAcheminement": "DOMMARTIN LA MONTAGNE", - "nomCommune": "DOMMARTIN LA MONTAGNE" + "codePostal": "09600", + "codeCommune": "09107", + "libelleAcheminement": "DUN", + "nomCommune": "DUN" }, { - "codePostal": "50390", - "codeCommune": "50430", - "libelleAcheminement": "REIGNEVILLE BOCAGE", - "nomCommune": "REIGNEVILLE BOCAGE" + "codePostal": "10400", + "codeCommune": "10225", + "libelleAcheminement": "MARNAY SUR SEINE", + "nomCommune": "MARNAY SUR SEINE" }, { - "codePostal": "14430", - "codeCommune": "14329", - "libelleAcheminement": "HEULAND", - "nomCommune": "HEULAND" + "codePostal": "22160", + "codeCommune": "22243", + "libelleAcheminement": "PLUSQUELLEC", + "nomCommune": "PLUSQUELLEC" }, { - "codePostal": "15300", - "codeCommune": "15263", - "libelleAcheminement": "VIRARGUES", - "nomCommune": "VIRARGUES" + "codePostal": "23160", + "codeCommune": "23015", + "libelleAcheminement": "AZERABLES", + "nomCommune": "AZERABLES" }, { - "codePostal": "55240", - "codeCommune": "55162", - "libelleAcheminement": "DOMREMY LA CANNE", - "nomCommune": "DOMREMY LA CANNE" + "codePostal": "09600", + "codeCommune": "09115", + "libelleAcheminement": "ESCLAGNE", + "nomCommune": "ESCLAGNE" }, { - "codePostal": "50620", - "codeCommune": "50431", - "libelleAcheminement": "REMILLY LES MARAIS", - "nomCommune": "REMILLY LES MARAIS" + "codePostal": "10320", + "codeCommune": "10229", + "libelleAcheminement": "MAUPAS", + "nomCommune": "MAUPAS" }, { - "codePostal": "14250", - "codeCommune": "14336", - "libelleAcheminement": "HOTTOT LES BAGUES", - "nomCommune": "HOTTOT LES BAGUES" + "codePostal": "22140", + "codeCommune": "22245", + "libelleAcheminement": "PLUZUNET", + "nomCommune": "PLUZUNET" }, { - "codePostal": "15210", - "codeCommune": "15265", - "libelleAcheminement": "YDES", - "nomCommune": "YDES" + "codePostal": "23260", + "codeCommune": "23019", + "libelleAcheminement": "BEISSAT", + "nomCommune": "BEISSAT" }, { - "codePostal": "55100", - "codeCommune": "55166", - "libelleAcheminement": "DUGNY SUR MEUSE", - "nomCommune": "DUGNY SUR MEUSE" + "codePostal": "09100", + "codeCommune": "09116", + "libelleAcheminement": "ESCOSSE", + "nomCommune": "ESCOSSE" }, { - "codePostal": "50340", - "codeCommune": "50442", - "libelleAcheminement": "LE ROZEL", - "nomCommune": "LE ROZEL" + "codePostal": "10170", + "codeCommune": "10233", + "libelleAcheminement": "MERY SUR SEINE", + "nomCommune": "MERY SUR SEINE" }, { - "codePostal": "14230", - "codeCommune": "14342", - "libelleAcheminement": "ISIGNY SUR MER", - "nomCommune": "ISIGNY SUR MER" + "codePostal": "22200", + "codeCommune": "22248", + "libelleAcheminement": "POMMERIT LE VICOMTE", + "nomCommune": "POMMERIT LE VICOMTE" }, { - "codePostal": "15290", - "codeCommune": "15268", - "libelleAcheminement": "LE ROUGET PERS", - "nomCommune": "LE ROUGET PERS" + "codePostal": "23200", + "codeCommune": "23024", + "libelleAcheminement": "BLESSAC", + "nomCommune": "BLESSAC" }, { - "codePostal": "55110", - "codeCommune": "55167", - "libelleAcheminement": "DUN SUR MEUSE", - "nomCommune": "DUN SUR MEUSE" + "codePostal": "09420", + "codeCommune": "09118", + "libelleAcheminement": "ESPLAS DE SEROU", + "nomCommune": "ESPLAS DE SEROU" }, { - "codePostal": "50160", - "codeCommune": "50444", - "libelleAcheminement": "ST AMAND VILLAGES", - "nomCommune": "ST AMAND VILLAGES" + "codePostal": "10240", + "codeCommune": "10236", + "libelleAcheminement": "MESNIL LETTRE", + "nomCommune": "MESNIL LETTRE" }, { - "codePostal": "14230", - "codeCommune": "14342", - "libelleAcheminement": "ISIGNY SUR MER", - "nomCommune": "ISIGNY SUR MER" + "codePostal": "22590", + "codeCommune": "22251", + "libelleAcheminement": "PORDIC", + "nomCommune": "PORDIC" }, { - "codePostal": "15290", - "codeCommune": "15268", - "libelleAcheminement": "LE ROUGET PERS", - "nomCommune": "LE ROUGET PERS" + "codePostal": "23000", + "codeCommune": "23033", + "libelleAcheminement": "LA BRIONNE", + "nomCommune": "LA BRIONNE" }, { - "codePostal": "55230", - "codeCommune": "55168", - "libelleAcheminement": "DUZEY", - "nomCommune": "DUZEY" + "codePostal": "09000", + "codeCommune": "09122", + "libelleAcheminement": "FOIX", + "nomCommune": "FOIX" }, { - "codePostal": "50160", - "codeCommune": "50444", - "libelleAcheminement": "ST AMAND VILLAGES", - "nomCommune": "ST AMAND VILLAGES" + "codePostal": "10210", + "codeCommune": "10241", + "libelleAcheminement": "METZ ROBERT", + "nomCommune": "METZ ROBERT" }, { - "codePostal": "14380", - "codeCommune": "14352", - "libelleAcheminement": "LANDELLES ET COUPIGNY", - "nomCommune": "LANDELLES ET COUPIGNY" + "codePostal": "22590", + "codeCommune": "22251", + "libelleAcheminement": "PORDIC", + "nomCommune": "PORDIC" }, { - "codePostal": "16700", - "codeCommune": "16002", - "libelleAcheminement": "LES ADJOTS", - "nomCommune": "LES ADJOTS" + "codePostal": "23170", + "codeCommune": "23035", + "libelleAcheminement": "BUDELIERE", + "nomCommune": "BUDELIERE" }, { - "codePostal": "55600", - "codeCommune": "55169", - "libelleAcheminement": "ECOUVIEZ", - "nomCommune": "ECOUVIEZ" + "codePostal": "09350", + "codeCommune": "09123", + "libelleAcheminement": "FORNEX", + "nomCommune": "FORNEX" }, { - "codePostal": "50340", - "codeCommune": "50454", - "libelleAcheminement": "ST CHRISTOPHE DU FOC", - "nomCommune": "ST CHRISTOPHE DU FOC" + "codePostal": "10260", + "codeCommune": "10246", + "libelleAcheminement": "MONTCEAUX LES VAUDES", + "nomCommune": "MONTCEAUX LES VAUDES" }, { - "codePostal": "14770", - "codeCommune": "14357", - "libelleAcheminement": "TERRES DE DRUANCE", - "nomCommune": "TERRES DE DRUANCE" + "codePostal": "22260", + "codeCommune": "22256", + "libelleAcheminement": "QUEMPER GUEZENNEC", + "nomCommune": "QUEMPER GUEZENNEC" }, { - "codePostal": "16490", - "codeCommune": "16007", - "libelleAcheminement": "ALLOUE", - "nomCommune": "ALLOUE" + "codePostal": "23800", + "codeCommune": "23039", + "libelleAcheminement": "LA CELLE DUNOISE", + "nomCommune": "LA CELLE DUNOISE" }, { - "codePostal": "55260", - "codeCommune": "55175", - "libelleAcheminement": "ERIZE LA BRULEE", - "nomCommune": "ERIZE LA BRULEE" + "codePostal": "09800", + "codeCommune": "09129", + "libelleAcheminement": "GALEY", + "nomCommune": "GALEY" }, { - "codePostal": "50390", - "codeCommune": "50457", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "10270", + "codeCommune": "10249", + "libelleAcheminement": "MONTIERAMEY", + "nomCommune": "MONTIERAMEY" }, { - "codePostal": "14100", - "codeCommune": "14366", - "libelleAcheminement": "LISIEUX", - "nomCommune": "LISIEUX" + "codePostal": "22100", + "codeCommune": "22259", + "libelleAcheminement": "QUEVERT", + "nomCommune": "QUEVERT" }, { - "codePostal": "16560", - "codeCommune": "16024", - "libelleAcheminement": "AUSSAC VADALLE", - "nomCommune": "AUSSAC VADALLE" + "codePostal": "23350", + "codeCommune": "23041", + "libelleAcheminement": "LA CELLETTE", + "nomCommune": "LA CELLETTE" }, { - "codePostal": "55100", - "codeCommune": "55189", - "libelleAcheminement": "FLEURY DEVANT DOUAUMONT", - "nomCommune": "FLEURY DEVANT DOUAUMONT" + "codePostal": "09120", + "codeCommune": "09137", + "libelleAcheminement": "GUDAS", + "nomCommune": "GUDAS" }, { - "codePostal": "50210", - "codeCommune": "50464", - "libelleAcheminement": "ST DENIS LE VETU", - "nomCommune": "ST DENIS LE VETU" + "codePostal": "10140", + "codeCommune": "10252", + "libelleAcheminement": "MONTMARTIN LE HAUT", + "nomCommune": "MONTMARTIN LE HAUT" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "22800", + "codeCommune": "22262", + "libelleAcheminement": "QUINTIN", + "nomCommune": "QUINTIN" }, { - "codePostal": "16430", - "codeCommune": "16026", - "libelleAcheminement": "BALZAC", - "nomCommune": "BALZAC" + "codePostal": "23210", + "codeCommune": "23042", + "libelleAcheminement": "CEYROUX", + "nomCommune": "CEYROUX" }, { - "codePostal": "55400", - "codeCommune": "55191", - "libelleAcheminement": "FOAMEIX ORNEL", - "nomCommune": "FOAMEIX ORNEL" + "codePostal": "09220", + "codeCommune": "09143", + "libelleAcheminement": "ILLIER ET LARAMADE", + "nomCommune": "ILLIER ET LARAMADE" }, { - "codePostal": "50310", - "codeCommune": "50467", - "libelleAcheminement": "ST FLOXEL", - "nomCommune": "ST FLOXEL" + "codePostal": "10800", + "codeCommune": "10260", + "libelleAcheminement": "MOUSSEY", + "nomCommune": "MOUSSEY" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "22450", + "codeCommune": "22264", + "libelleAcheminement": "LA ROCHE JAUDY", + "nomCommune": "LA ROCHE JAUDY" }, { - "codePostal": "16210", - "codeCommune": "16029", - "libelleAcheminement": "BARDENAC", - "nomCommune": "BARDENAC" + "codePostal": "23190", + "codeCommune": "23048", + "libelleAcheminement": "CHAMPAGNAT", + "nomCommune": "CHAMPAGNAT" }, { - "codePostal": "55110", - "codeCommune": "55192", - "libelleAcheminement": "FONTAINES ST CLAIR", - "nomCommune": "FONTAINES ST CLAIR" + "codePostal": "09100", + "codeCommune": "09145", + "libelleAcheminement": "LES ISSARDS", + "nomCommune": "LES ISSARDS" }, { - "codePostal": "50620", - "codeCommune": "50468", - "libelleAcheminement": "ST FROMOND", - "nomCommune": "ST FROMOND" + "codePostal": "10220", + "codeCommune": "10270", + "libelleAcheminement": "ONJON", + "nomCommune": "ONJON" }, { - "codePostal": "14700", - "codeCommune": "14375", - "libelleAcheminement": "LES LOGES SAULCES", - "nomCommune": "LES LOGES SAULCES" + "codePostal": "22630", + "codeCommune": "22274", + "libelleAcheminement": "ST ANDRE DES EAUX", + "nomCommune": "ST ANDRE DES EAUX" }, { - "codePostal": "16120", - "codeCommune": "16032", - "libelleAcheminement": "BASSAC", - "nomCommune": "BASSAC" + "codePostal": "23160", + "codeCommune": "23050", + "libelleAcheminement": "LA CHAPELLE BALOUE", + "nomCommune": "LA CHAPELLE BALOUE" }, { - "codePostal": "55160", - "codeCommune": "55198", - "libelleAcheminement": "FRESNES EN WOEVRE", - "nomCommune": "FRESNES EN WOEVRE" + "codePostal": "09700", + "codeCommune": "09146", + "libelleAcheminement": "JUSTINIAC", + "nomCommune": "JUSTINIAC" }, { - "codePostal": "50480", - "codeCommune": "50479", - "libelleAcheminement": "ST GERMAIN DE VARREVILLE", - "nomCommune": "ST GERMAIN DE VARREVILLE" + "codePostal": "10510", + "codeCommune": "10271", + "libelleAcheminement": "ORIGNY LE SEC", + "nomCommune": "ORIGNY LE SEC" }, { - "codePostal": "14400", - "codeCommune": "14377", - "libelleAcheminement": "LONGUES SUR MER", - "nomCommune": "LONGUES SUR MER" + "codePostal": "22600", + "codeCommune": "22275", + "libelleAcheminement": "ST BARNABE", + "nomCommune": "ST BARNABE" }, { - "codePostal": "16210", - "codeCommune": "16034", - "libelleAcheminement": "BAZAC", - "nomCommune": "BAZAC" + "codePostal": "23800", + "codeCommune": "23065", + "libelleAcheminement": "COLONDANNES", + "nomCommune": "COLONDANNES" }, { - "codePostal": "55120", - "codeCommune": "55202", - "libelleAcheminement": "FUTEAU", - "nomCommune": "FUTEAU" + "codePostal": "09130", + "codeCommune": "09151", + "libelleAcheminement": "LANOUX", + "nomCommune": "LANOUX" }, { - "codePostal": "50600", - "codeCommune": "50484", - "libelleAcheminement": "ST HILAIRE DU HARCOUET", - "nomCommune": "ST HILAIRE DU HARCOUET" + "codePostal": "10700", + "codeCommune": "10272", + "libelleAcheminement": "ORMES", + "nomCommune": "ORMES" }, { - "codePostal": "14170", - "codeCommune": "14381", - "libelleAcheminement": "LOUVAGNY", - "nomCommune": "LOUVAGNY" + "codePostal": "22480", + "codeCommune": "22284", + "libelleAcheminement": "ST CONNAN", + "nomCommune": "ST CONNAN" }, { - "codePostal": "16210", - "codeCommune": "16037", - "libelleAcheminement": "BELLON", - "nomCommune": "BELLON" + "codePostal": "23260", + "codeCommune": "23069", + "libelleAcheminement": "CROCQ", + "nomCommune": "CROCQ" }, { - "codePostal": "55400", - "codeCommune": "55219", - "libelleAcheminement": "GRIMAUCOURT EN WOEVRE", - "nomCommune": "GRIMAUCOURT EN WOEVRE" + "codePostal": "09310", + "codeCommune": "09155", + "libelleAcheminement": "LARCAT", + "nomCommune": "LARCAT" }, { - "codePostal": "50240", - "codeCommune": "50487", - "libelleAcheminement": "ST JAMES", - "nomCommune": "ST JAMES" + "codePostal": "10100", + "codeCommune": "10275", + "libelleAcheminement": "OSSEY LES TROIS MAISONS", + "nomCommune": "OSSEY LES TROIS MAISONS" }, { - "codePostal": "14117", - "codeCommune": "14401", - "libelleAcheminement": "MANVIEUX", - "nomCommune": "MANVIEUX" + "codePostal": "22400", + "codeCommune": "22286", + "libelleAcheminement": "ST DENOUAL", + "nomCommune": "ST DENOUAL" }, { - "codePostal": "16350", - "codeCommune": "16038", - "libelleAcheminement": "BENEST", - "nomCommune": "BENEST" + "codePostal": "23160", + "codeCommune": "23070", + "libelleAcheminement": "CROZANT", + "nomCommune": "CROZANT" }, { - "codePostal": "55000", - "codeCommune": "55224", - "libelleAcheminement": "HAIRONVILLE", - "nomCommune": "HAIRONVILLE" + "codePostal": "09300", + "codeCommune": "09160", + "libelleAcheminement": "LAVELANET", + "nomCommune": "LAVELANET" }, { - "codePostal": "50300", - "codeCommune": "50489", - "libelleAcheminement": "ST JEAN DE LA HAIZE", - "nomCommune": "ST JEAN DE LA HAIZE" + "codePostal": "10160", + "codeCommune": "10276", + "libelleAcheminement": "PAISY COSDON", + "nomCommune": "PAISY COSDON" }, { - "codePostal": "14620", - "codeCommune": "14402", - "libelleAcheminement": "LE MARAIS LA CHAPELLE", - "nomCommune": "LE MARAIS LA CHAPELLE" + "codePostal": "22800", + "codeCommune": "22287", + "libelleAcheminement": "ST DONAN", + "nomCommune": "ST DONAN" }, { - "codePostal": "16480", - "codeCommune": "16040", - "libelleAcheminement": "BERNEUIL", - "nomCommune": "BERNEUIL" + "codePostal": "23700", + "codeCommune": "23073", + "libelleAcheminement": "DONTREIX", + "nomCommune": "DONTREIX" }, { - "codePostal": "55160", - "codeCommune": "55237", - "libelleAcheminement": "HAUDIOMONT", - "nomCommune": "HAUDIOMONT" + "codePostal": "09420", + "codeCommune": "09164", + "libelleAcheminement": "LESCURE", + "nomCommune": "LESCURE" }, { - "codePostal": "50530", - "codeCommune": "50496", - "libelleAcheminement": "ST JEAN LE THOMAS", - "nomCommune": "ST JEAN LE THOMAS" + "codePostal": "10600", + "codeCommune": "10282", + "libelleAcheminement": "PAYNS", + "nomCommune": "PAYNS" }, { - "codePostal": "14480", - "codeCommune": "14406", - "libelleAcheminement": "MOULINS EN BESSIN", - "nomCommune": "MOULINS EN BESSIN" + "codePostal": "22210", + "codeCommune": "22288", + "libelleAcheminement": "ST ETIENNE DU GUE DE L ISLE", + "nomCommune": "ST ETIENNE DU GUE DE L ISLE" }, { - "codePostal": "16700", - "codeCommune": "16044", - "libelleAcheminement": "BIOUSSAC", - "nomCommune": "BIOUSSAC" + "codePostal": "23480", + "codeCommune": "23074", + "libelleAcheminement": "LE DONZEIL", + "nomCommune": "LE DONZEIL" }, { - "codePostal": "55120", - "codeCommune": "55253", - "libelleAcheminement": "LES ISLETTES", - "nomCommune": "LES ISLETTES" + "codePostal": "09120", + "codeCommune": "09173", + "libelleAcheminement": "LOUBENS", + "nomCommune": "LOUBENS" }, { - "codePostal": "50300", - "codeCommune": "50505", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "10380", + "codeCommune": "10289", + "libelleAcheminement": "PLANCY L ABBAYE", + "nomCommune": "PLANCY L ABBAYE" }, { - "codePostal": "14320", - "codeCommune": "14408", - "libelleAcheminement": "MAY SUR ORNE", - "nomCommune": "MAY SUR ORNE" + "codePostal": "22480", + "codeCommune": "22294", + "libelleAcheminement": "ST GILLES PLIGEAUX", + "nomCommune": "ST GILLES PLIGEAUX" }, { - "codePostal": "16360", - "codeCommune": "16053", - "libelleAcheminement": "BORS DE BAIGNES", - "nomCommune": "BORS DE BAIGNES" + "codePostal": "23260", + "codeCommune": "23081", + "libelleAcheminement": "FLAYAT", + "nomCommune": "FLAYAT" }, { - "codePostal": "55220", - "codeCommune": "55254", - "libelleAcheminement": "LES TROIS DOMAINES", - "nomCommune": "LES TROIS DOMAINES" + "codePostal": "09100", + "codeCommune": "09175", + "libelleAcheminement": "LUDIES", + "nomCommune": "LUDIES" }, { - "codePostal": "50310", - "codeCommune": "50507", - "libelleAcheminement": "ST MARCOUF", - "nomCommune": "ST MARCOUF" + "codePostal": "10110", + "codeCommune": "10296", + "libelleAcheminement": "POLISY", + "nomCommune": "POLISY" }, { - "codePostal": "14220", - "codeCommune": "14411", - "libelleAcheminement": "MESLAY", - "nomCommune": "MESLAY" + "codePostal": "22530", + "codeCommune": "22295", + "libelleAcheminement": "ST GILLES VIEUX MARCHE", + "nomCommune": "ST GILLES VIEUX MARCHE" }, { - "codePostal": "16120", - "codeCommune": "16057", - "libelleAcheminement": "BOUTEVILLE", - "nomCommune": "BOUTEVILLE" + "codePostal": "23320", + "codeCommune": "23082", + "libelleAcheminement": "FLEURAT", + "nomCommune": "FLEURAT" }, { - "codePostal": "55220", - "codeCommune": "55254", - "libelleAcheminement": "LES TROIS DOMAINES", - "nomCommune": "LES TROIS DOMAINES" + "codePostal": "09290", + "codeCommune": "09181", + "libelleAcheminement": "LE MAS D AZIL", + "nomCommune": "LE MAS D AZIL" }, { - "codePostal": "50150", - "codeCommune": "50514", - "libelleAcheminement": "CHAULIEU", - "nomCommune": "CHAULIEU" + "codePostal": "10700", + "codeCommune": "10299", + "libelleAcheminement": "POUAN LES VALLEES", + "nomCommune": "POUAN LES VALLEES" }, { - "codePostal": "14140", - "codeCommune": "14425", - "libelleAcheminement": "LE MESNIL SIMON", - "nomCommune": "LE MESNIL SIMON" + "codePostal": "22100", + "codeCommune": "22299", + "libelleAcheminement": "ST HELEN", + "nomCommune": "ST HELEN" }, { - "codePostal": "16100", - "codeCommune": "16058", - "libelleAcheminement": "BOUTIERS ST TROJAN", - "nomCommune": "BOUTIERS ST TROJAN" + "codePostal": "23450", + "codeCommune": "23087", + "libelleAcheminement": "FRESSELINES", + "nomCommune": "FRESSELINES" }, { - "codePostal": "55220", - "codeCommune": "55254", - "libelleAcheminement": "LES TROIS DOMAINES", - "nomCommune": "LES TROIS DOMAINES" + "codePostal": "09320", + "codeCommune": "09182", + "libelleAcheminement": "MASSAT", + "nomCommune": "MASSAT" }, { - "codePostal": "50800", - "codeCommune": "50521", - "libelleAcheminement": "ST MAUR DES BOIS", - "nomCommune": "ST MAUR DES BOIS" + "codePostal": "10290", + "codeCommune": "10301", + "libelleAcheminement": "POUY SUR VANNES", + "nomCommune": "POUY SUR VANNES" }, { - "codePostal": "14140", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "22130", + "codeCommune": "22311", + "libelleAcheminement": "ST LORMEL", + "nomCommune": "ST LORMEL" }, { - "codePostal": "16370", - "codeCommune": "16060", - "libelleAcheminement": "BREVILLE", - "nomCommune": "BREVILLE" + "codePostal": "23340", + "codeCommune": "23090", + "libelleAcheminement": "GENTIOUX PIGEROLLES", + "nomCommune": "GENTIOUX PIGEROLLES" }, { - "codePostal": "55600", - "codeCommune": "55255", - "libelleAcheminement": "JAMETZ", - "nomCommune": "JAMETZ" + "codePostal": "09400", + "codeCommune": "09188", + "libelleAcheminement": "MERCUS GARRABET", + "nomCommune": "MERCUS GARRABET" }, { - "codePostal": "50270", - "codeCommune": "50522", - "libelleAcheminement": "ST MAURICE EN COTENTIN", - "nomCommune": "ST MAURICE EN COTENTIN" + "codePostal": "10140", + "codeCommune": "10310", + "libelleAcheminement": "PUITS ET NUISEMENT", + "nomCommune": "PUITS ET NUISEMENT" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "22700", + "codeCommune": "22324", + "libelleAcheminement": "ST QUAY PERROS", + "nomCommune": "ST QUAY PERROS" }, { - "codePostal": "16500", - "codeCommune": "16065", - "libelleAcheminement": "BRILLAC", - "nomCommune": "BRILLAC" + "codePostal": "23380", + "codeCommune": "23092", + "libelleAcheminement": "GLENIC", + "nomCommune": "GLENIC" }, { - "codePostal": "55300", - "codeCommune": "55263", - "libelleAcheminement": "KOEUR LA GRANDE", - "nomCommune": "KOEUR LA GRANDE" + "codePostal": "09230", + "codeCommune": "09190", + "libelleAcheminement": "MERIGON", + "nomCommune": "MERIGON" }, { - "codePostal": "50480", - "codeCommune": "50523", - "libelleAcheminement": "STE MERE EGLISE", - "nomCommune": "STE MERE EGLISE" + "codePostal": "10340", + "codeCommune": "10317", + "libelleAcheminement": "LES RICEYS", + "nomCommune": "LES RICEYS" }, { - "codePostal": "14620", - "codeCommune": "14469", - "libelleAcheminement": "NORREY EN AUGE", - "nomCommune": "NORREY EN AUGE" + "codePostal": "22410", + "codeCommune": "22325", + "libelleAcheminement": "ST QUAY PORTRIEUX", + "nomCommune": "ST QUAY PORTRIEUX" }, { - "codePostal": "16110", - "codeCommune": "16067", - "libelleAcheminement": "BUNZAC", - "nomCommune": "BUNZAC" + "codePostal": "23230", + "codeCommune": "23093", + "libelleAcheminement": "GOUZON", + "nomCommune": "GOUZON" }, { - "codePostal": "55300", - "codeCommune": "55268", - "libelleAcheminement": "LACROIX SUR MEUSE", - "nomCommune": "LACROIX SUR MEUSE" + "codePostal": "09240", + "codeCommune": "09196", + "libelleAcheminement": "MONTAGAGNE", + "nomCommune": "MONTAGAGNE" }, { - "codePostal": "50300", - "codeCommune": "50531", - "libelleAcheminement": "ST OVIN", - "nomCommune": "ST OVIN" + "codePostal": "10160", + "codeCommune": "10319", + "libelleAcheminement": "RIGNY LE FERRON", + "nomCommune": "RIGNY LE FERRON" }, { - "codePostal": "14340", - "codeCommune": "14473", - "libelleAcheminement": "NOTRE DAME DE LIVAYE", - "nomCommune": "NOTRE DAME DE LIVAYE" + "codePostal": "22100", + "codeCommune": "22327", + "libelleAcheminement": "ST SAMSON SUR RANCE", + "nomCommune": "ST SAMSON SUR RANCE" }, { - "codePostal": "16380", - "codeCommune": "16093", - "libelleAcheminement": "CHAZELLES", - "nomCommune": "CHAZELLES" + "codePostal": "23220", + "codeCommune": "23101", + "libelleAcheminement": "JOUILLAT", + "nomCommune": "JOUILLAT" }, { - "codePostal": "55300", - "codeCommune": "55270", - "libelleAcheminement": "LAHAYVILLE", - "nomCommune": "LAHAYVILLE" + "codePostal": "09600", + "codeCommune": "09200", + "libelleAcheminement": "MONTBEL", + "nomCommune": "MONTBEL" }, { - "codePostal": "50380", - "codeCommune": "50532", - "libelleAcheminement": "ST PAIR SUR MER", - "nomCommune": "ST PAIR SUR MER" + "codePostal": "10280", + "codeCommune": "10320", + "libelleAcheminement": "RILLY STE SYRE", + "nomCommune": "RILLY STE SYRE" }, { - "codePostal": "14210", - "codeCommune": "14475", - "libelleAcheminement": "VAL D ARRY", - "nomCommune": "VAL D ARRY" + "codePostal": "22480", + "codeCommune": "22331", + "libelleAcheminement": "STE TREPHINE", + "nomCommune": "STE TREPHINE" }, { - "codePostal": "16370", - "codeCommune": "16097", - "libelleAcheminement": "CHERVES RICHEMONT", - "nomCommune": "CHERVES RICHEMONT" + "codePostal": "23270", + "codeCommune": "23102", + "libelleAcheminement": "LADAPEYRE", + "nomCommune": "LADAPEYRE" }, { - "codePostal": "55300", - "codeCommune": "55274", - "libelleAcheminement": "LAMORVILLE", - "nomCommune": "LAMORVILLE" + "codePostal": "09200", + "codeCommune": "09201", + "libelleAcheminement": "MONTEGUT EN COUSERANS", + "nomCommune": "MONTEGUT EN COUSERANS" }, { - "codePostal": "50870", - "codeCommune": "50535", - "libelleAcheminement": "LE PARC", - "nomCommune": "LE PARC" + "codePostal": "10410", + "codeCommune": "10332", + "libelleAcheminement": "RUVIGNY", + "nomCommune": "RUVIGNY" }, { - "codePostal": "14210", - "codeCommune": "14475", - "libelleAcheminement": "VAL D ARRY", - "nomCommune": "VAL D ARRY" + "codePostal": "22250", + "codeCommune": "22337", + "libelleAcheminement": "SEVIGNAC", + "nomCommune": "SEVIGNAC" }, { - "codePostal": "16100", - "codeCommune": "16102", - "libelleAcheminement": "COGNAC", - "nomCommune": "COGNAC" + "codePostal": "23800", + "codeCommune": "23103", + "libelleAcheminement": "LAFAT", + "nomCommune": "LAFAT" }, { - "codePostal": "55120", - "codeCommune": "55285", - "libelleAcheminement": "LAVOYE", - "nomCommune": "LAVOYE" + "codePostal": "09120", + "codeCommune": "09202", + "libelleAcheminement": "MONTEGUT PLANTAUREL", + "nomCommune": "MONTEGUT PLANTAUREL" }, { - "codePostal": "50750", - "codeCommune": "50546", - "libelleAcheminement": "BOURGVALLEES", - "nomCommune": "BOURGVALLEES" + "codePostal": "10500", + "codeCommune": "10345", + "libelleAcheminement": "ST LEGER SOUS BRIENNE", + "nomCommune": "ST LEGER SOUS BRIENNE" }, { - "codePostal": "14170", - "codeCommune": "14476", - "libelleAcheminement": "OLENDON", - "nomCommune": "OLENDON" + "codePostal": "22140", + "codeCommune": "22340", + "libelleAcheminement": "TONQUEDEC", + "nomCommune": "TONQUEDEC" }, { - "codePostal": "16360", - "codeCommune": "16105", - "libelleAcheminement": "CONDEON", - "nomCommune": "CONDEON" + "codePostal": "23600", + "codeCommune": "23108", + "libelleAcheminement": "LEYRAT", + "nomCommune": "LEYRAT" }, { - "codePostal": "55600", - "codeCommune": "55306", - "libelleAcheminement": "LOUPPY SUR LOISON", - "nomCommune": "LOUPPY SUR LOISON" + "codePostal": "09350", + "codeCommune": "09205", + "libelleAcheminement": "MONTFA", + "nomCommune": "MONTFA" }, { - "codePostal": "50490", - "codeCommune": "50550", - "libelleAcheminement": "ST SAUVEUR VILLAGES", - "nomCommune": "ST SAUVEUR VILLAGES" + "codePostal": "10100", + "codeCommune": "10347", + "libelleAcheminement": "ST LOUP DE BUFFIGNY", + "nomCommune": "ST LOUP DE BUFFIGNY" }, { - "codePostal": "14310", - "codeCommune": "14491", - "libelleAcheminement": "PARFOURU SUR ODON", - "nomCommune": "PARFOURU SUR ODON" + "codePostal": "22980", + "codeCommune": "22342", + "libelleAcheminement": "TREBEDAN", + "nomCommune": "TREBEDAN" }, { - "codePostal": "16560", - "codeCommune": "16107", - "libelleAcheminement": "COULGENS", - "nomCommune": "COULGENS" + "codePostal": "23190", + "codeCommune": "23113", + "libelleAcheminement": "LUPERSAT", + "nomCommune": "LUPERSAT" }, { - "codePostal": "55160", - "codeCommune": "55311", - "libelleAcheminement": "MAIZERAY", - "nomCommune": "MAIZERAY" + "codePostal": "09300", + "codeCommune": "09211", + "libelleAcheminement": "MONTSEGUR", + "nomCommune": "MONTSEGUR" }, { - "codePostal": "50490", - "codeCommune": "50550", - "libelleAcheminement": "ST SAUVEUR VILLAGES", - "nomCommune": "ST SAUVEUR VILLAGES" + "codePostal": "10260", + "codeCommune": "10358", + "libelleAcheminement": "ST PARRES LES VAUDES", + "nomCommune": "ST PARRES LES VAUDES" }, { - "codePostal": "14690", - "codeCommune": "14502", - "libelleAcheminement": "PIERREPONT", - "nomCommune": "PIERREPONT" + "codePostal": "22560", + "codeCommune": "22343", + "libelleAcheminement": "TREBEURDEN", + "nomCommune": "TREBEURDEN" }, { - "codePostal": "16290", - "codeCommune": "16121", - "libelleAcheminement": "DOUZAT", - "nomCommune": "DOUZAT" + "codePostal": "23100", + "codeCommune": "23125", + "libelleAcheminement": "LE MAS D ARTIGE", + "nomCommune": "LE MAS D ARTIGE" }, { - "codePostal": "55160", - "codeCommune": "55317", - "libelleAcheminement": "MANHEULLES", - "nomCommune": "MANHEULLES" + "codePostal": "09240", + "codeCommune": "09216", + "libelleAcheminement": "NESCUS", + "nomCommune": "NESCUS" }, { - "codePostal": "50390", - "codeCommune": "50551", - "libelleAcheminement": "ST SAUVEUR LE VICOMTE", - "nomCommune": "ST SAUVEUR LE VICOMTE" + "codePostal": "10130", + "codeCommune": "10359", + "libelleAcheminement": "ST PHAL", + "nomCommune": "ST PHAL" }, { - "codePostal": "14490", - "codeCommune": "14506", - "libelleAcheminement": "PLANQUERY", - "nomCommune": "PLANQUERY" + "codePostal": "22340", + "codeCommune": "22351", + "libelleAcheminement": "TREFFRIN", + "nomCommune": "TREFFRIN" }, { - "codePostal": "16320", - "codeCommune": "16125", - "libelleAcheminement": "EDON", - "nomCommune": "EDON" + "codePostal": "23150", + "codeCommune": "23128", + "libelleAcheminement": "MAZEIRAT", + "nomCommune": "MAZEIRAT" }, { - "codePostal": "55190", - "codeCommune": "55322", - "libelleAcheminement": "MARSON SUR BARBOURE", - "nomCommune": "MARSON SUR BARBOURE" + "codePostal": "09800", + "codeCommune": "09219", + "libelleAcheminement": "ORGIBET", + "nomCommune": "ORGIBET" }, { - "codePostal": "50300", - "codeCommune": "50554", - "libelleAcheminement": "ST SENIER SOUS AVRANCHES", - "nomCommune": "ST SENIER SOUS AVRANCHES" + "codePostal": "10800", + "codeCommune": "10363", + "libelleAcheminement": "ST THIBAULT", + "nomCommune": "ST THIBAULT" }, { - "codePostal": "14130", - "codeCommune": "14514", - "libelleAcheminement": "PONT L EVEQUE", - "nomCommune": "PONT L EVEQUE" + "codePostal": "22100", + "codeCommune": "22380", + "libelleAcheminement": "TREVRON", + "nomCommune": "TREVRON" }, { - "codePostal": "16150", - "codeCommune": "16132", - "libelleAcheminement": "ETAGNAC", - "nomCommune": "ETAGNAC" + "codePostal": "23420", + "codeCommune": "23131", + "libelleAcheminement": "MERINCHAL", + "nomCommune": "MERINCHAL" }, { - "codePostal": "55500", - "codeCommune": "55335", - "libelleAcheminement": "MENIL SUR SAULX", - "nomCommune": "MENIL SUR SAULX" + "codePostal": "09100", + "codeCommune": "09225", + "libelleAcheminement": "PAMIERS", + "nomCommune": "PAMIERS" }, { - "codePostal": "50550", - "codeCommune": "50562", - "libelleAcheminement": "ST VAAST LA HOUGUE", - "nomCommune": "ST VAAST LA HOUGUE" + "codePostal": "10200", + "codeCommune": "10372", + "libelleAcheminement": "SOULAINES DHUYS", + "nomCommune": "SOULAINES DHUYS" }, { - "codePostal": "14430", - "codeCommune": "14524", - "libelleAcheminement": "PUTOT EN AUGE", - "nomCommune": "PUTOT EN AUGE" + "codePostal": "22450", + "codeCommune": "22383", + "libelleAcheminement": "TROGUERY", + "nomCommune": "TROGUERY" }, { - "codePostal": "16380", - "codeCommune": "16137", - "libelleAcheminement": "FEUILLADE", - "nomCommune": "FEUILLADE" + "codePostal": "23460", + "codeCommune": "23134", + "libelleAcheminement": "LE MONTEIL AU VICOMTE", + "nomCommune": "LE MONTEIL AU VICOMTE" }, { - "codePostal": "55320", - "codeCommune": "55347", - "libelleAcheminement": "LES MONTHAIRONS", - "nomCommune": "LES MONTHAIRONS" + "codePostal": "09460", + "codeCommune": "09230", + "libelleAcheminement": "LE PLA", + "nomCommune": "LE PLA" }, { - "codePostal": "50530", - "codeCommune": "50565", - "libelleAcheminement": "SARTILLY BAIE BOCAGE", - "nomCommune": "SARTILLY BAIE BOCAGE" + "codePostal": "10320", + "codeCommune": "10373", + "libelleAcheminement": "SOULIGNY", + "nomCommune": "SOULIGNY" }, { - "codePostal": "14270", - "codeCommune": "14527", - "libelleAcheminement": "BELLE VIE EN AUGE", - "nomCommune": "BELLE VIE EN AUGE" + "codePostal": "23000", + "codeCommune": "23004", + "libelleAcheminement": "ANZEME", + "nomCommune": "ANZEME" }, { - "codePostal": "16170", - "codeCommune": "16148", - "libelleAcheminement": "GENAC BIGNAC", - "nomCommune": "GENAC BIGNAC" + "codePostal": "23360", + "codeCommune": "23147", + "libelleAcheminement": "NOUZEROLLES", + "nomCommune": "NOUZEROLLES" }, { - "codePostal": "55300", - "codeCommune": "55353", - "libelleAcheminement": "MONTSEC", - "nomCommune": "MONTSEC" + "codePostal": "09600", + "codeCommune": "09233", + "libelleAcheminement": "PRADETTES", + "nomCommune": "PRADETTES" }, { - "codePostal": "50200", - "codeCommune": "50568", - "libelleAcheminement": "SAUSSEY", - "nomCommune": "SAUSSEY" + "codePostal": "10200", + "codeCommune": "10374", + "libelleAcheminement": "SPOY", + "nomCommune": "SPOY" }, { - "codePostal": "14340", - "codeCommune": "14527", - "libelleAcheminement": "BELLE VIE EN AUGE", - "nomCommune": "BELLE VIE EN AUGE" + "codePostal": "23210", + "codeCommune": "23010", + "libelleAcheminement": "AUGERES", + "nomCommune": "AUGERES" }, { - "codePostal": "16170", - "codeCommune": "16148", - "libelleAcheminement": "GENAC BIGNAC", - "nomCommune": "GENAC BIGNAC" + "codePostal": "23350", + "codeCommune": "23148", + "libelleAcheminement": "NOUZIERS", + "nomCommune": "NOUZIERS" }, { - "codePostal": "55500", - "codeCommune": "55358", - "libelleAcheminement": "CHANTERAINE", - "nomCommune": "CHANTERAINE" + "codePostal": "09160", + "codeCommune": "09235", + "libelleAcheminement": "PRAT BONREPAUX", + "nomCommune": "PRAT BONREPAUX" }, { - "codePostal": "50270", - "codeCommune": "50572", - "libelleAcheminement": "SENOVILLE", - "nomCommune": "SENOVILLE" + "codePostal": "10200", + "codeCommune": "10378", + "libelleAcheminement": "THORS", + "nomCommune": "THORS" }, { - "codePostal": "14400", - "codeCommune": "14529", - "libelleAcheminement": "RANCHY", - "nomCommune": "RANCHY" + "codePostal": "23400", + "codeCommune": "23012", + "libelleAcheminement": "AURIAT", + "nomCommune": "AURIAT" }, { - "codePostal": "16200", - "codeCommune": "16153", - "libelleAcheminement": "MAINXE GONDEVILLE", - "nomCommune": "MAINXE GONDEVILLE" + "codePostal": "23140", + "codeCommune": "23149", + "libelleAcheminement": "PARSAC RIMONDEIX", + "nomCommune": "PARSAC RIMONDEIX" }, { - "codePostal": "55320", - "codeCommune": "55360", - "libelleAcheminement": "MOUILLY", - "nomCommune": "MOUILLY" + "codePostal": "09000", + "codeCommune": "09236", + "libelleAcheminement": "PRAYOLS", + "nomCommune": "PRAYOLS" }, { - "codePostal": "50170", - "codeCommune": "50574", - "libelleAcheminement": "SERVON", - "nomCommune": "SERVON" + "codePostal": "10200", + "codeCommune": "10390", + "libelleAcheminement": "URVILLE", + "nomCommune": "URVILLE" }, { - "codePostal": "14860", - "codeCommune": "14530", - "libelleAcheminement": "RANVILLE", - "nomCommune": "RANVILLE" + "codePostal": "23700", + "codeCommune": "23013", + "libelleAcheminement": "AUZANCES", + "nomCommune": "AUZANCES" }, { - "codePostal": "16140", - "codeCommune": "16155", - "libelleAcheminement": "LES GOURS", - "nomCommune": "LES GOURS" + "codePostal": "23140", + "codeCommune": "23149", + "libelleAcheminement": "PARSAC RIMONDEIX", + "nomCommune": "PARSAC RIMONDEIX" }, { - "codePostal": "55700", - "codeCommune": "55362", - "libelleAcheminement": "MOULINS ST HUBERT", - "nomCommune": "MOULINS ST HUBERT" + "codePostal": "09100", + "codeCommune": "09238", + "libelleAcheminement": "LES PUJOLS", + "nomCommune": "LES PUJOLS" }, { - "codePostal": "50310", - "codeCommune": "50578", - "libelleAcheminement": "SORTOSVILLE", - "nomCommune": "SORTOSVILLE" + "codePostal": "10210", + "codeCommune": "10395", + "libelleAcheminement": "VANLAY", + "nomCommune": "VANLAY" }, { - "codePostal": "14340", - "codeCommune": "14533", - "libelleAcheminement": "REPENTIGNY", - "nomCommune": "REPENTIGNY" + "codePostal": "23120", + "codeCommune": "23016", + "libelleAcheminement": "BANIZE", + "nomCommune": "BANIZE" }, { - "codePostal": "16380", - "codeCommune": "16158", - "libelleAcheminement": "GRASSAC", - "nomCommune": "GRASSAC" + "codePostal": "23130", + "codeCommune": "23159", + "libelleAcheminement": "PUY MALSIGNAT", + "nomCommune": "PUY MALSIGNAT" }, { - "codePostal": "55500", - "codeCommune": "55376", - "libelleAcheminement": "NANTOIS", - "nomCommune": "NANTOIS" + "codePostal": "09400", + "codeCommune": "09241", + "libelleAcheminement": "RABAT LES TROIS SEIGNEURS", + "nomCommune": "RABAT LES TROIS SEIGNEURS" }, { - "codePostal": "50260", - "codeCommune": "50579", - "libelleAcheminement": "SOTTEVAST", - "nomCommune": "SOTTEVAST" + "codePostal": "10190", + "codeCommune": "10396", + "libelleAcheminement": "VAUCHASSIS", + "nomCommune": "VAUCHASSIS" }, { - "codePostal": "14130", - "codeCommune": "14534", - "libelleAcheminement": "REUX", - "nomCommune": "REUX" + "codePostal": "23160", + "codeCommune": "23018", + "libelleAcheminement": "BAZELAT", + "nomCommune": "BAZELAT" }, { - "codePostal": "16480", - "codeCommune": "16161", - "libelleAcheminement": "GUIZENGEARD", - "nomCommune": "GUIZENGEARD" + "codePostal": "23700", + "codeCommune": "23164", + "libelleAcheminement": "ROUGNAT", + "nomCommune": "ROUGNAT" }, { - "codePostal": "55120", - "codeCommune": "55379", - "libelleAcheminement": "LE NEUFOUR", - "nomCommune": "LE NEUFOUR" + "codePostal": "09300", + "codeCommune": "09242", + "libelleAcheminement": "RAISSAC", + "nomCommune": "RAISSAC" }, { - "codePostal": "50870", - "codeCommune": "50584", - "libelleAcheminement": "SUBLIGNY", - "nomCommune": "SUBLIGNY" + "codePostal": "10260", + "codeCommune": "10399", + "libelleAcheminement": "VAUDES", + "nomCommune": "VAUDES" }, { - "codePostal": "14540", - "codeCommune": "14538", - "libelleAcheminement": "CASTINE EN PLAINE", - "nomCommune": "CASTINE EN PLAINE" + "codePostal": "23190", + "codeCommune": "23020", + "libelleAcheminement": "BELLEGARDE EN MARCHE", + "nomCommune": "BELLEGARDE EN MARCHE" }, { - "codePostal": "16320", - "codeCommune": "16162", - "libelleAcheminement": "GURAT", - "nomCommune": "GURAT" + "codePostal": "23000", + "codeCommune": "23170", + "libelleAcheminement": "SAVENNES", + "nomCommune": "SAVENNES" }, { - "codePostal": "55120", - "codeCommune": "55385", - "libelleAcheminement": "NIXEVILLE BLERCOURT", - "nomCommune": "NIXEVILLE BLERCOURT" + "codePostal": "09600", + "codeCommune": "09243", + "libelleAcheminement": "REGAT", + "nomCommune": "REGAT" }, { - "codePostal": "50420", - "codeCommune": "50592", - "libelleAcheminement": "TESSY BOCAGE", - "nomCommune": "TESSY BOCAGE" + "codePostal": "10140", + "codeCommune": "10401", + "libelleAcheminement": "VENDEUVRE SUR BARSE", + "nomCommune": "VENDEUVRE SUR BARSE" }, { - "codePostal": "14740", - "codeCommune": "14542", - "libelleAcheminement": "ROSEL", - "nomCommune": "ROSEL" + "codePostal": "23220", + "codeCommune": "23025", + "libelleAcheminement": "BONNAT", + "nomCommune": "BONNAT" }, { - "codePostal": "16200", - "codeCommune": "16174", - "libelleAcheminement": "JULIENNE", - "nomCommune": "JULIENNE" + "codePostal": "23700", + "codeCommune": "23171", + "libelleAcheminement": "SERMUR", + "nomCommune": "SERMUR" }, { - "codePostal": "55190", - "codeCommune": "55398", - "libelleAcheminement": "PAGNY SUR MEUSE", - "nomCommune": "PAGNY SUR MEUSE" + "codePostal": "09300", + "codeCommune": "09250", + "libelleAcheminement": "ROQUEFORT LES CASCADES", + "nomCommune": "ROQUEFORT LES CASCADES" }, { - "codePostal": "50690", - "codeCommune": "50594", - "libelleAcheminement": "TEURTHEVILLE HAGUE", - "nomCommune": "TEURTHEVILLE HAGUE" + "codePostal": "10240", + "codeCommune": "10405", + "libelleAcheminement": "VERRICOURT", + "nomCommune": "VERRICOURT" }, { - "codePostal": "14710", - "codeCommune": "14547", - "libelleAcheminement": "RUBERCY", - "nomCommune": "RUBERCY" + "codePostal": "23400", + "codeCommune": "23027", + "libelleAcheminement": "BOSMOREAU LES MINES", + "nomCommune": "BOSMOREAU LES MINES" }, { - "codePostal": "16420", - "codeCommune": "16182", - "libelleAcheminement": "LESTERPS", - "nomCommune": "LESTERPS" + "codePostal": "23200", + "codeCommune": "23179", + "libelleAcheminement": "ST ALPINIEN", + "nomCommune": "ST ALPINIEN" }, { - "codePostal": "55260", - "codeCommune": "55404", - "libelleAcheminement": "PIERREFITTE SUR AIRE", - "nomCommune": "PIERREFITTE SUR AIRE" + "codePostal": "09100", + "codeCommune": "09255", + "libelleAcheminement": "ST AMANS", + "nomCommune": "ST AMANS" }, { - "codePostal": "50870", - "codeCommune": "50597", - "libelleAcheminement": "TIREPIED SUR SEE", - "nomCommune": "TIREPIED SUR SEE" + "codePostal": "10290", + "codeCommune": "10410", + "libelleAcheminement": "VILLADIN", + "nomCommune": "VILLADIN" }, { - "codePostal": "14400", - "codeCommune": "14552", - "libelleAcheminement": "RYES", - "nomCommune": "RYES" + "codePostal": "23220", + "codeCommune": "23029", + "libelleAcheminement": "LE BOURG D HEM", + "nomCommune": "LE BOURG D HEM" }, { - "codePostal": "16310", - "codeCommune": "16188", - "libelleAcheminement": "LE LINDOIS", - "nomCommune": "LE LINDOIS" + "codePostal": "23200", + "codeCommune": "23180", + "libelleAcheminement": "ST AMAND", + "nomCommune": "ST AMAND" }, { - "codePostal": "55250", - "codeCommune": "55409", - "libelleAcheminement": "PRETZ EN ARGONNE", - "nomCommune": "PRETZ EN ARGONNE" + "codePostal": "09000", + "codeCommune": "09273", + "libelleAcheminement": "ST PIERRE DE RIVIERE", + "nomCommune": "ST PIERRE DE RIVIERE" }, { - "codePostal": "50340", - "codeCommune": "50604", - "libelleAcheminement": "TREAUVILLE", - "nomCommune": "TREAUVILLE" + "codePostal": "10410", + "codeCommune": "10412", + "libelleAcheminement": "VILLECHETIF", + "nomCommune": "VILLECHETIF" }, { - "codePostal": "14970", - "codeCommune": "14558", - "libelleAcheminement": "ST AUBIN D ARQUENAY", - "nomCommune": "ST AUBIN D ARQUENAY" + "codePostal": "23600", + "codeCommune": "23038", + "libelleAcheminement": "BUSSIERE ST GEORGES", + "nomCommune": "BUSSIERE ST GEORGES" }, { - "codePostal": "16270", - "codeCommune": "16192", - "libelleAcheminement": "TERRES DE HAUTE CHARENTE", - "nomCommune": "TERRES DE HAUTE CHARENTE" + "codePostal": "23480", + "codeCommune": "23183", + "libelleAcheminement": "ST AVIT LE PAUVRE", + "nomCommune": "ST AVIT LE PAUVRE" }, { - "codePostal": "55120", - "codeCommune": "55419", - "libelleAcheminement": "RECICOURT", - "nomCommune": "RECICOURT" + "codePostal": "09400", + "codeCommune": "09306", + "libelleAcheminement": "TARASCON SUR ARIEGE", + "nomCommune": "TARASCON SUR ARIEGE" }, { - "codePostal": "50620", - "codeCommune": "50606", - "libelleAcheminement": "TRIBEHOU", - "nomCommune": "TRIBEHOU" + "codePostal": "10370", + "codeCommune": "10420", + "libelleAcheminement": "VILLENAUXE LA GRANDE", + "nomCommune": "VILLENAUXE LA GRANDE" }, { - "codePostal": "14130", - "codeCommune": "14563", - "libelleAcheminement": "ST BENOIT D HEBERTOT", - "nomCommune": "ST BENOIT D HEBERTOT" + "codePostal": "23230", + "codeCommune": "23040", + "libelleAcheminement": "LA CELLE SOUS GOUZON", + "nomCommune": "LA CELLE SOUS GOUZON" }, { - "codePostal": "16100", - "codeCommune": "16193", - "libelleAcheminement": "LOUZAC ST ANDRE", - "nomCommune": "LOUZAC ST ANDRE" + "codePostal": "23270", + "codeCommune": "23188", + "libelleAcheminement": "ST DIZIER LES DOMAINES", + "nomCommune": "ST DIZIER LES DOMAINES" }, { - "codePostal": "55110", - "codeCommune": "55422", - "libelleAcheminement": "REGNEVILLE SUR MEUSE", - "nomCommune": "REGNEVILLE SUR MEUSE" + "codePostal": "09500", + "codeCommune": "09309", + "libelleAcheminement": "TEILHET", + "nomCommune": "TEILHET" }, { - "codePostal": "50800", - "codeCommune": "50607", - "libelleAcheminement": "LA TRINITE", - "nomCommune": "LA TRINITE" + "codePostal": "10320", + "codeCommune": "10425", + "libelleAcheminement": "VILLERY", + "nomCommune": "VILLERY" }, { - "codePostal": "14290", - "codeCommune": "14570", - "libelleAcheminement": "VALORBIQUET", - "nomCommune": "VALORBIQUET" + "codePostal": "23430", + "codeCommune": "23056", + "libelleAcheminement": "CHATELUS LE MARCHEIX", + "nomCommune": "CHATELUS LE MARCHEIX" }, { - "codePostal": "16100", - "codeCommune": "16193", - "libelleAcheminement": "LOUZAC ST ANDRE", - "nomCommune": "LOUZAC ST ANDRE" + "codePostal": "23400", + "codeCommune": "23189", + "libelleAcheminement": "ST DIZIER MASBARAUD", + "nomCommune": "ST DIZIER MASBARAUD" }, { - "codePostal": "55250", - "codeCommune": "55423", - "libelleAcheminement": "REMBERCOURT SOMMAISNE", - "nomCommune": "REMBERCOURT SOMMAISNE" + "codePostal": "09110", + "codeCommune": "09311", + "libelleAcheminement": "TIGNAC", + "nomCommune": "TIGNAC" }, { - "codePostal": "50250", - "codeCommune": "50617", - "libelleAcheminement": "VARENGUEBEC", - "nomCommune": "VARENGUEBEC" + "codePostal": "10110", + "codeCommune": "10427", + "libelleAcheminement": "VILLE SUR ARCE", + "nomCommune": "VILLE SUR ARCE" }, { - "codePostal": "14290", - "codeCommune": "14570", - "libelleAcheminement": "VALORBIQUET", - "nomCommune": "VALORBIQUET" + "codePostal": "23500", + "codeCommune": "23063", + "libelleAcheminement": "CLAIRAVAUX", + "nomCommune": "CLAIRAVAUX" }, { - "codePostal": "16230", - "codeCommune": "16206", - "libelleAcheminement": "MANSLE", - "nomCommune": "MANSLE" + "codePostal": "23000", + "codeCommune": "23193", + "libelleAcheminement": "STE FEYRE", + "nomCommune": "STE FEYRE" }, { - "codePostal": "55150", - "codeCommune": "55437", - "libelleAcheminement": "ROMAGNE SOUS LES COTES", - "nomCommune": "ROMAGNE SOUS LES COTES" + "codePostal": "09100", + "codeCommune": "09312", + "libelleAcheminement": "LA TOUR DU CRIEU", + "nomCommune": "LA TOUR DU CRIEU" }, { - "codePostal": "50800", - "codeCommune": "50639", - "libelleAcheminement": "VILLEDIEU LES POELES ROUFFIGNY", - "nomCommune": "VILLEDIEU LES POELES ROUFFIGNY" + "codePostal": "10700", + "codeCommune": "10429", + "libelleAcheminement": "VILLETTE SUR AUBE", + "nomCommune": "VILLETTE SUR AUBE" }, { - "codePostal": "14140", - "codeCommune": "14576", - "libelleAcheminement": "VAL DE VIE", - "nomCommune": "VAL DE VIE" + "codePostal": "23800", + "codeCommune": "23075", + "libelleAcheminement": "DUN LE PALESTEL", + "nomCommune": "DUN LE PALESTEL" }, { - "codePostal": "16310", - "codeCommune": "16213", - "libelleAcheminement": "MAZEROLLES", - "nomCommune": "MAZEROLLES" + "codePostal": "23430", + "codeCommune": "23200", + "libelleAcheminement": "ST GOUSSAUD", + "nomCommune": "ST GOUSSAUD" }, { - "codePostal": "55260", - "codeCommune": "55442", - "libelleAcheminement": "RAIVAL", - "nomCommune": "RAIVAL" + "codePostal": "09500", + "codeCommune": "09316", + "libelleAcheminement": "TROYE D ARIEGE", + "nomCommune": "TROYE D ARIEGE" }, { - "codePostal": "50680", - "codeCommune": "50641", - "libelleAcheminement": "VILLIERS FOSSARD", - "nomCommune": "VILLIERS FOSSARD" + "codePostal": "10140", + "codeCommune": "10433", + "libelleAcheminement": "VILLY EN TRODES", + "nomCommune": "VILLY EN TRODES" }, { - "codePostal": "14230", - "codeCommune": "14586", - "libelleAcheminement": "ST GERMAIN DU PERT", - "nomCommune": "ST GERMAIN DU PERT" + "codePostal": "23110", + "codeCommune": "23076", + "libelleAcheminement": "EVAUX LES BAINS", + "nomCommune": "EVAUX LES BAINS" }, { - "codePostal": "16210", - "codeCommune": "16215", - "libelleAcheminement": "MEDILLAC", - "nomCommune": "MEDILLAC" + "codePostal": "23130", + "codeCommune": "23209", + "libelleAcheminement": "ST LOUP", + "nomCommune": "ST LOUP" }, { - "codePostal": "55300", - "codeCommune": "55444", - "libelleAcheminement": "ROUVROIS SUR MEUSE", - "nomCommune": "ROUVROIS SUR MEUSE" + "codePostal": "09500", + "codeCommune": "09323", + "libelleAcheminement": "VALS", + "nomCommune": "VALS" }, { - "codePostal": "50690", - "codeCommune": "50643", - "libelleAcheminement": "VIRANDEVILLE", - "nomCommune": "VIRANDEVILLE" + "codePostal": "11360", + "codeCommune": "11006", + "libelleAcheminement": "ALBAS", + "nomCommune": "ALBAS" }, { - "codePostal": "14240", - "codeCommune": "14590", - "libelleAcheminement": "STE HONORINE DE DUCY", - "nomCommune": "STE HONORINE DE DUCY" + "codePostal": "23400", + "codeCommune": "23078", + "libelleAcheminement": "FAUX MAZURAS", + "nomCommune": "FAUX MAZURAS" }, { - "codePostal": "16370", - "codeCommune": "16218", - "libelleAcheminement": "MESNAC", - "nomCommune": "MESNAC" + "codePostal": "23600", + "codeCommune": "23213", + "libelleAcheminement": "ST MARIEN", + "nomCommune": "ST MARIEN" }, { - "codePostal": "55260", - "codeCommune": "55448", - "libelleAcheminement": "RUPT DEVANT ST MIHIEL", - "nomCommune": "RUPT DEVANT ST MIHIEL" + "codePostal": "09310", + "codeCommune": "09326", + "libelleAcheminement": "VEBRE", + "nomCommune": "VEBRE" }, { - "codePostal": "51530", - "codeCommune": "51002", - "libelleAcheminement": "ST MARTIN D ABLOIS", - "nomCommune": "ST MARTIN D ABLOIS" + "codePostal": "11580", + "codeCommune": "11008", + "libelleAcheminement": "ALET LES BAINS", + "nomCommune": "ALET LES BAINS" }, { - "codePostal": "14100", - "codeCommune": "14595", - "libelleAcheminement": "ST JEAN DE LIVET", - "nomCommune": "ST JEAN DE LIVET" + "codePostal": "23110", + "codeCommune": "23083", + "libelleAcheminement": "FONTANIERES", + "nomCommune": "FONTANIERES" }, { - "codePostal": "16200", - "codeCommune": "16220", - "libelleAcheminement": "LES METAIRIES", - "nomCommune": "LES METAIRIES" + "codePostal": "23430", + "codeCommune": "23217", + "libelleAcheminement": "ST MARTIN STE CATHERINE", + "nomCommune": "ST MARTIN STE CATHERINE" }, { - "codePostal": "55320", - "codeCommune": "55449", - "libelleAcheminement": "RUPT EN WOEVRE", - "nomCommune": "RUPT EN WOEVRE" + "codePostal": "09120", + "codeCommune": "09327", + "libelleAcheminement": "VENTENAC", + "nomCommune": "VENTENAC" }, { - "codePostal": "51260", - "codeCommune": "51004", - "libelleAcheminement": "ALLEMANCHE LAUNAY ET SOYER", - "nomCommune": "ALLEMANCHE LAUNAY ET SOYER" + "codePostal": "11170", + "codeCommune": "11009", + "libelleAcheminement": "ALZONNE", + "nomCommune": "ALZONNE" }, { - "codePostal": "14130", - "codeCommune": "14601", - "libelleAcheminement": "ST JULIEN SUR CALONNE", - "nomCommune": "ST JULIEN SUR CALONNE" + "codePostal": "23480", + "codeCommune": "23086", + "libelleAcheminement": "FRANSECHES", + "nomCommune": "FRANSECHES" }, { - "codePostal": "16240", - "codeCommune": "16229", - "libelleAcheminement": "MONTJEAN", - "nomCommune": "MONTJEAN" + "codePostal": "23300", + "codeCommune": "23219", + "libelleAcheminement": "ST MAURICE LA SOUTERRAINE", + "nomCommune": "ST MAURICE LA SOUTERRAINE" }, { - "codePostal": "55150", - "codeCommune": "55450", - "libelleAcheminement": "RUPT SUR OTHAIN", - "nomCommune": "RUPT SUR OTHAIN" + "codePostal": "09310", + "codeCommune": "09328", + "libelleAcheminement": "VERDUN", + "nomCommune": "VERDUN" }, { - "codePostal": "51250", - "codeCommune": "51006", - "libelleAcheminement": "ALLIANCELLES", - "nomCommune": "ALLIANCELLES" + "codePostal": "11120", + "codeCommune": "11012", + "libelleAcheminement": "ARGELIERS", + "nomCommune": "ARGELIERS" }, { - "codePostal": "14740", - "codeCommune": "14610", - "libelleAcheminement": "ST MANVIEU NORREY", - "nomCommune": "ST MANVIEU NORREY" + "codePostal": "23230", + "codeCommune": "23093", + "libelleAcheminement": "GOUZON", + "nomCommune": "GOUZON" }, { - "codePostal": "16190", - "codeCommune": "16230", - "libelleAcheminement": "MONTMOREAU", - "nomCommune": "MONTMOREAU" + "codePostal": "23200", + "codeCommune": "23220", + "libelleAcheminement": "ST MEDARD LA ROCHETTE", + "nomCommune": "ST MEDARD LA ROCHETTE" }, { - "codePostal": "55200", - "codeCommune": "55460", - "libelleAcheminement": "ST JULIEN SOUS LES COTES", - "nomCommune": "ST JULIEN SOUS LES COTES" + "codePostal": "09000", + "codeCommune": "09329", + "libelleAcheminement": "VERNAJOUL", + "nomCommune": "VERNAJOUL" }, { - "codePostal": "51290", - "codeCommune": "51017", - "libelleAcheminement": "ARZILLIERES NEUVILLE", - "nomCommune": "ARZILLIERES NEUVILLE" + "codePostal": "11200", + "codeCommune": "11013", + "libelleAcheminement": "ARGENS MINERVOIS", + "nomCommune": "ARGENS MINERVOIS" }, { - "codePostal": "14330", - "codeCommune": "14613", - "libelleAcheminement": "ST MARCOUF", - "nomCommune": "ST MARCOUF" + "codePostal": "23240", + "codeCommune": "23095", + "libelleAcheminement": "LE GRAND BOURG", + "nomCommune": "LE GRAND BOURG" }, { - "codePostal": "16120", - "codeCommune": "16233", - "libelleAcheminement": "MOSNAC ST SIMEUX", - "nomCommune": "MOSNAC ST SIMEUX" + "codePostal": "23480", + "codeCommune": "23222", + "libelleAcheminement": "ST MICHEL DE VEISSE", + "nomCommune": "ST MICHEL DE VEISSE" }, { - "codePostal": "55300", - "codeCommune": "55463", - "libelleAcheminement": "ST MIHIEL", - "nomCommune": "ST MIHIEL" + "codePostal": "09340", + "codeCommune": "09332", + "libelleAcheminement": "VERNIOLLE", + "nomCommune": "VERNIOLLE" }, { - "codePostal": "51170", - "codeCommune": "51020", - "libelleAcheminement": "AUBILLY", - "nomCommune": "AUBILLY" + "codePostal": "11140", + "codeCommune": "11019", + "libelleAcheminement": "AUNAT", + "nomCommune": "AUNAT" }, { - "codePostal": "14330", - "codeCommune": "14614", - "libelleAcheminement": "STE MARGUERITE D ELLE", - "nomCommune": "STE MARGUERITE D ELLE" + "codePostal": "23130", + "codeCommune": "23097", + "libelleAcheminement": "ISSOUDUN LETRIEIX", + "nomCommune": "ISSOUDUN LETRIEIX" }, { - "codePostal": "16440", - "codeCommune": "16236", - "libelleAcheminement": "MOUTHIERS SUR BOEME", - "nomCommune": "MOUTHIERS SUR BOEME" + "codePostal": "23100", + "codeCommune": "23224", + "libelleAcheminement": "ST ORADOUX DE CHIROUZE", + "nomCommune": "ST ORADOUX DE CHIROUZE" }, { - "codePostal": "55000", - "codeCommune": "55466", - "libelleAcheminement": "SALMAGNE", - "nomCommune": "SALMAGNE" + "codePostal": "09220", + "codeCommune": "09334", + "libelleAcheminement": "VAL DE SOS", + "nomCommune": "VAL DE SOS" }, { - "codePostal": "51110", - "codeCommune": "51025", - "libelleAcheminement": "AUMENANCOURT", - "nomCommune": "AUMENANCOURT" + "codePostal": "11340", + "codeCommune": "11036", + "libelleAcheminement": "BELVIS", + "nomCommune": "BELVIS" }, { - "codePostal": "14380", - "codeCommune": "14619", - "libelleAcheminement": "STE MARIE OUTRE L EAU", - "nomCommune": "STE MARIE OUTRE L EAU" + "codePostal": "23270", + "codeCommune": "23098", + "libelleAcheminement": "JALESCHES", + "nomCommune": "JALESCHES" }, { - "codePostal": "16700", - "codeCommune": "16242", - "libelleAcheminement": "NANTEUIL EN VALLEE", - "nomCommune": "NANTEUIL EN VALLEE" + "codePostal": "23260", + "codeCommune": "23225", + "libelleAcheminement": "ST ORADOUX PRES CROCQ", + "nomCommune": "ST ORADOUX PRES CROCQ" }, { - "codePostal": "55300", - "codeCommune": "55467", - "libelleAcheminement": "SAMPIGNY", - "nomCommune": "SAMPIGNY" + "codePostal": "09220", + "codeCommune": "09334", + "libelleAcheminement": "VAL DE SOS", + "nomCommune": "VAL DE SOS" }, { - "codePostal": "51150", - "codeCommune": "51030", - "libelleAcheminement": "AY CHAMPAGNE", - "nomCommune": "AY CHAMPAGNE" + "codePostal": "11390", + "codeCommune": "11052", + "libelleAcheminement": "BROUSSES ET VILLARET", + "nomCommune": "BROUSSES ET VILLARET" }, { - "codePostal": "14400", - "codeCommune": "14630", - "libelleAcheminement": "ST MARTIN DES ENTREES", - "nomCommune": "ST MARTIN DES ENTREES" + "codePostal": "23250", + "codeCommune": "23099", + "libelleAcheminement": "JANAILLAT", + "nomCommune": "JANAILLAT" }, { - "codePostal": "16700", - "codeCommune": "16242", - "libelleAcheminement": "NANTEUIL EN VALLEE", - "nomCommune": "NANTEUIL EN VALLEE" + "codePostal": "23460", + "codeCommune": "23232", + "libelleAcheminement": "ST PIERRE BELLEVUE", + "nomCommune": "ST PIERRE BELLEVUE" }, { - "codePostal": "55160", - "codeCommune": "55473", - "libelleAcheminement": "SAULX LES CHAMPLON", - "nomCommune": "SAULX LES CHAMPLON" + "codePostal": "09800", + "codeCommune": "09335", + "libelleAcheminement": "VILLENEUVE", + "nomCommune": "VILLENEUVE" }, { - "codePostal": "51260", - "codeCommune": "51032", - "libelleAcheminement": "BAGNEUX", - "nomCommune": "BAGNEUX" + "codePostal": "11200", + "codeCommune": "11064", + "libelleAcheminement": "CAMPLONG D AUDE", + "nomCommune": "CAMPLONG D AUDE" }, { - "codePostal": "14140", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "23140", + "codeCommune": "23100", + "libelleAcheminement": "JARNAGES", + "nomCommune": "JARNAGES" }, { - "codePostal": "16240", - "codeCommune": "16253", - "libelleAcheminement": "PAIZAY NAUDOUIN EMBOURIE", - "nomCommune": "PAIZAY NAUDOUIN EMBOURIE" + "codePostal": "23600", + "codeCommune": "23233", + "libelleAcheminement": "ST PIERRE LE BOST", + "nomCommune": "ST PIERRE LE BOST" }, { - "codePostal": "55140", - "codeCommune": "55485", - "libelleAcheminement": "SEPVIGNY", - "nomCommune": "SEPVIGNY" + "codePostal": "09130", + "codeCommune": "09338", + "libelleAcheminement": "VILLENEUVE DU LATOU", + "nomCommune": "VILLENEUVE DU LATOU" }, { - "codePostal": "51300", - "codeCommune": "51039", - "libelleAcheminement": "BASSU", - "nomCommune": "BASSU" + "codePostal": "11190", + "codeCommune": "11065", + "libelleAcheminement": "CAMPS SUR L AGLY", + "nomCommune": "CAMPS SUR L AGLY" }, { - "codePostal": "14330", - "codeCommune": "14668", - "libelleAcheminement": "SAONNET", - "nomCommune": "SAONNET" + "codePostal": "23150", + "codeCommune": "23118", + "libelleAcheminement": "MAISONNISSES", + "nomCommune": "MAISONNISSES" }, { - "codePostal": "16240", - "codeCommune": "16253", - "libelleAcheminement": "PAIZAY NAUDOUIN EMBOURIE", - "nomCommune": "PAIZAY NAUDOUIN EMBOURIE" + "codePostal": "23500", + "codeCommune": "23238", + "libelleAcheminement": "ST QUENTIN LA CHABANNE", + "nomCommune": "ST QUENTIN LA CHABANNE" }, { - "codePostal": "55320", - "codeCommune": "55492", - "libelleAcheminement": "SOMMEDIEUE", - "nomCommune": "SOMMEDIEUE" + "codePostal": "10700", + "codeCommune": "10004", + "libelleAcheminement": "ALLIBAUDIERES", + "nomCommune": "ALLIBAUDIERES" }, { - "codePostal": "51700", - "codeCommune": "51063", - "libelleAcheminement": "BINSON ET ORQUIGNY", - "nomCommune": "BINSON ET ORQUIGNY" + "codePostal": "11340", + "codeCommune": "11066", + "libelleAcheminement": "CAMURAC", + "nomCommune": "CAMURAC" }, { - "codePostal": "14240", - "codeCommune": "14672", - "libelleAcheminement": "VAL DE DROME", - "nomCommune": "VAL DE DROME" + "codePostal": "23260", + "codeCommune": "23119", + "libelleAcheminement": "MALLERET", + "nomCommune": "MALLERET" }, { - "codePostal": "16390", - "codeCommune": "16254", - "libelleAcheminement": "PALLUAUD", - "nomCommune": "PALLUAUD" + "codePostal": "23320", + "codeCommune": "23242", + "libelleAcheminement": "ST SILVAIN MONTAIGUT", + "nomCommune": "ST SILVAIN MONTAIGUT" }, { - "codePostal": "55230", - "codeCommune": "55495", - "libelleAcheminement": "SORBEY", - "nomCommune": "SORBEY" + "codePostal": "10140", + "codeCommune": "10005", + "libelleAcheminement": "AMANCE", + "nomCommune": "AMANCE" }, { - "codePostal": "51110", - "codeCommune": "51075", - "libelleAcheminement": "BOURGOGNE FRESNE", - "nomCommune": "BOURGOGNE FRESNE" + "codePostal": "11200", + "codeCommune": "11067", + "libelleAcheminement": "CANET", + "nomCommune": "CANET" }, { - "codePostal": "14240", - "codeCommune": "14672", - "libelleAcheminement": "VAL DE DROME", - "nomCommune": "VAL DE DROME" + "codePostal": "23400", + "codeCommune": "23122", + "libelleAcheminement": "MANSAT LA COURRIERE", + "nomCommune": "MANSAT LA COURRIERE" }, { - "codePostal": "16450", - "codeCommune": "16255", - "libelleAcheminement": "PARZAC", - "nomCommune": "PARZAC" + "codePostal": "23800", + "codeCommune": "23244", + "libelleAcheminement": "ST SULPICE LE DUNOIS", + "nomCommune": "ST SULPICE LE DUNOIS" }, { - "codePostal": "55190", - "codeCommune": "55496", - "libelleAcheminement": "SORCY ST MARTIN", - "nomCommune": "SORCY ST MARTIN" + "codePostal": "10330", + "codeCommune": "10010", + "libelleAcheminement": "ARREMBECOURT", + "nomCommune": "ARREMBECOURT" }, { - "codePostal": "51480", - "codeCommune": "51076", - "libelleAcheminement": "BOURSAULT", - "nomCommune": "BOURSAULT" + "codePostal": "11700", + "codeCommune": "11068", + "libelleAcheminement": "CAPENDU", + "nomCommune": "CAPENDU" }, { - "codePostal": "14350", - "codeCommune": "14672", - "libelleAcheminement": "VAL DE DROME", - "nomCommune": "VAL DE DROME" + "codePostal": "23320", + "codeCommune": "23132", + "libelleAcheminement": "MONTAIGUT LE BLANC", + "nomCommune": "MONTAIGUT LE BLANC" }, { - "codePostal": "16260", - "codeCommune": "16261", - "libelleAcheminement": "LES PINS", - "nomCommune": "LES PINS" + "codePostal": "23000", + "codeCommune": "23245", + "libelleAcheminement": "ST SULPICE LE GUERETOIS", + "nomCommune": "ST SULPICE LE GUERETOIS" }, { - "codePostal": "55220", - "codeCommune": "55497", - "libelleAcheminement": "LES SOUHESMES RAMPONT", - "nomCommune": "LES SOUHESMES RAMPONT" + "codePostal": "10400", + "codeCommune": "10020", + "libelleAcheminement": "AVANT LES MARCILLY", + "nomCommune": "AVANT LES MARCILLY" }, { - "codePostal": "51800", - "codeCommune": "51082", - "libelleAcheminement": "BRAUX STE COHIERE", - "nomCommune": "BRAUX STE COHIERE" + "codePostal": "11000", + "codeCommune": "11069", + "libelleAcheminement": "CARCASSONNE", + "nomCommune": "CARCASSONNE" }, { - "codePostal": "14700", - "codeCommune": "14677", - "libelleAcheminement": "SOULANGY", - "nomCommune": "SOULANGY" + "codePostal": "23210", + "codeCommune": "23137", + "libelleAcheminement": "MOURIOUX VIEILLEVILLE", + "nomCommune": "MOURIOUX VIEILLEVILLE" }, { - "codePostal": "16250", - "codeCommune": "16263", - "libelleAcheminement": "PLASSAC ROUFFIAC", - "nomCommune": "PLASSAC ROUFFIAC" + "codePostal": "23150", + "codeCommune": "23250", + "libelleAcheminement": "ST YRIEIX LES BOIS", + "nomCommune": "ST YRIEIX LES BOIS" }, { - "codePostal": "55230", - "codeCommune": "55500", - "libelleAcheminement": "SPINCOURT", - "nomCommune": "SPINCOURT" + "codePostal": "10290", + "codeCommune": "10023", + "libelleAcheminement": "AVON LA PEZE", + "nomCommune": "AVON LA PEZE" }, { - "codePostal": "51320", - "codeCommune": "51084", - "libelleAcheminement": "BREBAN", - "nomCommune": "BREBAN" + "codePostal": "11270", + "codeCommune": "11072", + "libelleAcheminement": "LA CASSAIGNE", + "nomCommune": "LA CASSAIGNE" }, { - "codePostal": "14400", - "codeCommune": "14679", - "libelleAcheminement": "SUBLES", - "nomCommune": "SUBLES" + "codePostal": "23220", + "codeCommune": "23139", + "libelleAcheminement": "MOUTIER MALCARD", + "nomCommune": "MOUTIER MALCARD" }, { - "codePostal": "16400", - "codeCommune": "16271", - "libelleAcheminement": "PUYMOYEN", - "nomCommune": "PUYMOYEN" + "codePostal": "23350", + "codeCommune": "23252", + "libelleAcheminement": "TERCILLAT", + "nomCommune": "TERCILLAT" }, { - "codePostal": "55230", - "codeCommune": "55500", - "libelleAcheminement": "SPINCOURT", - "nomCommune": "SPINCOURT" + "codePostal": "10210", + "codeCommune": "10028", + "libelleAcheminement": "BALNOT LA GRANGE", + "nomCommune": "BALNOT LA GRANGE" }, { - "codePostal": "51300", - "codeCommune": "51094", - "libelleAcheminement": "BRUSSON", - "nomCommune": "BRUSSON" + "codePostal": "11230", + "codeCommune": "11080", + "libelleAcheminement": "VAL DE LAMBRONNE", + "nomCommune": "VAL DE LAMBRONNE" }, { - "codePostal": "14710", - "codeCommune": "14681", - "libelleAcheminement": "SURRAIN", - "nomCommune": "SURRAIN" + "codePostal": "23200", + "codeCommune": "23140", + "libelleAcheminement": "MOUTIER ROZEILLE", + "nomCommune": "MOUTIER ROZEILLE" }, { - "codePostal": "16140", - "codeCommune": "16275", - "libelleAcheminement": "RANVILLE BREUILLAUD", - "nomCommune": "RANVILLE BREUILLAUD" + "codePostal": "23250", + "codeCommune": "23253", + "libelleAcheminement": "THAURON", + "nomCommune": "THAURON" }, { - "codePostal": "55160", - "codeCommune": "55515", - "libelleAcheminement": "TRESAUVAUX", - "nomCommune": "TRESAUVAUX" + "codePostal": "10190", + "codeCommune": "10037", + "libelleAcheminement": "BERCENAY EN OTHE", + "nomCommune": "BERCENAY EN OTHE" }, { - "codePostal": "51300", - "codeCommune": "51095", - "libelleAcheminement": "LE BUISSON", - "nomCommune": "LE BUISSON" + "codePostal": "11170", + "codeCommune": "11089", + "libelleAcheminement": "CENNE MONESTIES", + "nomCommune": "CENNE MONESTIES" }, { - "codePostal": "14400", - "codeCommune": "14700", - "libelleAcheminement": "TOUR EN BESSIN", - "nomCommune": "TOUR EN BESSIN" + "codePostal": "23500", + "codeCommune": "23144", + "libelleAcheminement": "LA NOUAILLE", + "nomCommune": "LA NOUAILLE" }, { - "codePostal": "16200", - "codeCommune": "16277", - "libelleAcheminement": "REPARSAC", - "nomCommune": "REPARSAC" + "codePostal": "23600", + "codeCommune": "23254", + "libelleAcheminement": "TOULX STE CROIX", + "nomCommune": "TOULX STE CROIX" }, { - "codePostal": "55250", - "codeCommune": "55517", - "libelleAcheminement": "SEUIL D ARGONNE", - "nomCommune": "SEUIL D ARGONNE" + "codePostal": "10110", + "codeCommune": "10041", + "libelleAcheminement": "BERTIGNOLLES", + "nomCommune": "BERTIGNOLLES" }, { - "codePostal": "51160", - "codeCommune": "51119", - "libelleAcheminement": "CHAMPILLON", - "nomCommune": "CHAMPILLON" + "codePostal": "11300", + "codeCommune": "11105", + "libelleAcheminement": "COURNANEL", + "nomCommune": "COURNANEL" }, { - "codePostal": "14360", - "codeCommune": "14715", - "libelleAcheminement": "TROUVILLE SUR MER", - "nomCommune": "TROUVILLE SUR MER" + "codePostal": "23190", + "codeCommune": "23172", + "libelleAcheminement": "LA SERRE BUSSIERE VIEILLE", + "nomCommune": "LA SERRE BUSSIERE VIEILLE" }, { - "codePostal": "16320", - "codeCommune": "16283", - "libelleAcheminement": "RONSENAC", - "nomCommune": "RONSENAC" + "codePostal": "23250", + "codeCommune": "23260", + "libelleAcheminement": "VIDAILLAT", + "nomCommune": "VIDAILLAT" }, { - "codePostal": "55300", - "codeCommune": "55530", - "libelleAcheminement": "VALBOIS", - "nomCommune": "VALBOIS" + "codePostal": "10140", + "codeCommune": "10050", + "libelleAcheminement": "BOSSANCOURT", + "nomCommune": "BOSSANCOURT" }, { - "codePostal": "51480", - "codeCommune": "51120", - "libelleAcheminement": "CHAMPLAT ET BOUJACOURT", - "nomCommune": "CHAMPLAT ET BOUJACOURT" + "codePostal": "11300", + "codeCommune": "11120", + "libelleAcheminement": "LA DIGNE D AVAL", + "nomCommune": "LA DIGNE D AVAL" }, { - "codePostal": "14340", - "codeCommune": "14723", - "libelleAcheminement": "VALSEME", - "nomCommune": "VALSEME" + "codePostal": "23250", + "codeCommune": "23173", + "libelleAcheminement": "SOUBREBOST", + "nomCommune": "SOUBREBOST" }, { - "codePostal": "16440", - "codeCommune": "16287", - "libelleAcheminement": "ROULLET ST ESTEPHE", - "nomCommune": "ROULLET ST ESTEPHE" + "codePostal": "23800", + "codeCommune": "23263", + "libelleAcheminement": "VILLARD", + "nomCommune": "VILLARD" }, { - "codePostal": "55800", - "codeCommune": "55531", - "libelleAcheminement": "VASSINCOURT", - "nomCommune": "VASSINCOURT" + "codePostal": "10110", + "codeCommune": "10055", + "libelleAcheminement": "BOURGUIGNONS", + "nomCommune": "BOURGUIGNONS" }, { - "codePostal": "51330", - "codeCommune": "51130", - "libelleAcheminement": "CHARMONT", - "nomCommune": "CHARMONT" + "codePostal": "11240", + "codeCommune": "11121", + "libelleAcheminement": "DONAZAC", + "nomCommune": "DONAZAC" }, { - "codePostal": "14390", - "codeCommune": "14724", - "libelleAcheminement": "VARAVILLE", - "nomCommune": "VARAVILLE" + "codePostal": "23260", + "codeCommune": "23178", + "libelleAcheminement": "ST AGNANT PRES CROCQ", + "nomCommune": "ST AGNANT PRES CROCQ" }, { - "codePostal": "16310", - "codeCommune": "16289", - "libelleAcheminement": "ROUSSINES", - "nomCommune": "ROUSSINES" + "codePostal": "23340", + "codeCommune": "23264", + "libelleAcheminement": "LA VILLEDIEU", + "nomCommune": "LA VILLEDIEU" }, { - "codePostal": "55130", - "codeCommune": "55534", - "libelleAcheminement": "VAUDEVILLE LE HAUT", - "nomCommune": "VAUDEVILLE LE HAUT" + "codePostal": "10340", + "codeCommune": "10058", + "libelleAcheminement": "BRAGELOGNE BEAUVOIR", + "nomCommune": "BRAGELOGNE BEAUVOIR" }, { - "codePostal": "51800", - "codeCommune": "51138", - "libelleAcheminement": "CHATRICES", - "nomCommune": "CHATRICES" + "codePostal": "11240", + "codeCommune": "11128", + "libelleAcheminement": "ESCUEILLENS ET ST JUST", + "nomCommune": "ESCUEILLENS ET ST JUST DE BELENGARD" }, { - "codePostal": "14400", - "codeCommune": "14728", - "libelleAcheminement": "VAUCELLES", - "nomCommune": "VAUCELLES" + "codePostal": "23260", + "codeCommune": "23184", + "libelleAcheminement": "ST BARD", + "nomCommune": "ST BARD" }, { - "codePostal": "16120", - "codeCommune": "16297", - "libelleAcheminement": "GRAVES ST AMANT", - "nomCommune": "GRAVES ST AMANT" + "codePostal": "24600", + "codeCommune": "24007", + "libelleAcheminement": "ALLEMANS", + "nomCommune": "ALLEMANS" }, { - "codePostal": "55270", - "codeCommune": "55536", - "libelleAcheminement": "VAUQUOIS", - "nomCommune": "VAUQUOIS" + "codePostal": "10500", + "codeCommune": "10063", + "libelleAcheminement": "BRIENNE LA VIEILLE", + "nomCommune": "BRIENNE LA VIEILLE" }, { - "codePostal": "51240", - "codeCommune": "51148", - "libelleAcheminement": "CHEPPES LA PRAIRIE", - "nomCommune": "CHEPPES LA PRAIRIE" + "codePostal": "11140", + "codeCommune": "11135", + "libelleAcheminement": "LA FAJOLLE", + "nomCommune": "LA FAJOLLE" }, { - "codePostal": "14800", - "codeCommune": "14731", - "libelleAcheminement": "VAUVILLE", - "nomCommune": "VAUVILLE" + "codePostal": "23130", + "codeCommune": "23185", + "libelleAcheminement": "ST CHABRAIS", + "nomCommune": "ST CHABRAIS" }, { - "codePostal": "16300", - "codeCommune": "16303", - "libelleAcheminement": "ST BONNET", - "nomCommune": "ST BONNET" + "codePostal": "24160", + "codeCommune": "24009", + "libelleAcheminement": "ANLHIAC", + "nomCommune": "ANLHIAC" }, { - "codePostal": "55100", - "codeCommune": "55537", - "libelleAcheminement": "DOUAUMONT VAUX", - "nomCommune": "DOUAUMONT VAUX" + "codePostal": "10240", + "codeCommune": "10065", + "libelleAcheminement": "BRILLECOURT", + "nomCommune": "BRILLECOURT" }, { - "codePostal": "51500", - "codeCommune": "51152", - "libelleAcheminement": "CHIGNY LES ROSES", - "nomCommune": "CHIGNY LES ROSES" + "codePostal": "11510", + "codeCommune": "11143", + "libelleAcheminement": "FEUILLA", + "nomCommune": "FEUILLA" }, { - "codePostal": "14400", - "codeCommune": "14733", - "libelleAcheminement": "VAUX SUR SEULLES", - "nomCommune": "VAUX SUR SEULLES" + "codePostal": "23290", + "codeCommune": "23192", + "libelleAcheminement": "FURSAC", + "nomCommune": "FURSAC" }, { - "codePostal": "16230", - "codeCommune": "16307", - "libelleAcheminement": "ST CIERS SUR BONNIEURE", - "nomCommune": "ST CIERS SUR BONNIEURE" + "codePostal": "24430", + "codeCommune": "24010", + "libelleAcheminement": "ANNESSE ET BEAULIEU", + "nomCommune": "ANNESSE ET BEAULIEU" }, { - "codePostal": "55000", - "codeCommune": "55541", - "libelleAcheminement": "VAVINCOURT", - "nomCommune": "VAVINCOURT" + "codePostal": "10500", + "codeCommune": "10072", + "libelleAcheminement": "LA CHAISE", + "nomCommune": "LA CHAISE" }, { - "codePostal": "51130", - "codeCommune": "51154", - "libelleAcheminement": "CLAMANGES", - "nomCommune": "CLAMANGES" + "codePostal": "11560", + "codeCommune": "11145", + "libelleAcheminement": "FLEURY D AUDE", + "nomCommune": "FLEURY" }, { - "codePostal": "14170", - "codeCommune": "14735", - "libelleAcheminement": "VENDEUVRE", - "nomCommune": "VENDEUVRE" + "codePostal": "23160", + "codeCommune": "23199", + "libelleAcheminement": "ST GERMAIN BEAUPRE", + "nomCommune": "ST GERMAIN BEAUPRE" }, { - "codePostal": "16450", - "codeCommune": "16308", - "libelleAcheminement": "ST CLAUD", - "nomCommune": "ST CLAUD" + "codePostal": "24290", + "codeCommune": "24014", + "libelleAcheminement": "AUBAS", + "nomCommune": "AUBAS" }, { - "codePostal": "55210", - "codeCommune": "55551", - "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", - "nomCommune": "VIGNEULLES LES HATTONCHATEL" + "codePostal": "10200", + "codeCommune": "10076", + "libelleAcheminement": "CHAMPIGNOL LEZ MONDEVILLE", + "nomCommune": "CHAMPIGNOL LEZ MONDEVILLE" }, { - "codePostal": "51130", - "codeCommune": "51158", - "libelleAcheminement": "VAL DES MARAIS", - "nomCommune": "VAL DES MARAIS" + "codePostal": "11300", + "codeCommune": "11158", + "libelleAcheminement": "GAJA ET VILLEDIEU", + "nomCommune": "GAJA ET VILLEDIEU" }, { - "codePostal": "14700", - "codeCommune": "14759", - "libelleAcheminement": "VILLY LEZ FALAISE", - "nomCommune": "VILLY LEZ FALAISE" + "codePostal": "23150", + "codeCommune": "23201", + "libelleAcheminement": "ST HILAIRE LA PLAINE", + "nomCommune": "ST HILAIRE LA PLAINE" }, { - "codePostal": "16170", - "codeCommune": "16312", - "libelleAcheminement": "ST CYBARDEAUX", - "nomCommune": "ST CYBARDEAUX" + "codePostal": "24300", + "codeCommune": "24016", + "libelleAcheminement": "AUGIGNAC", + "nomCommune": "AUGIGNAC" }, { - "codePostal": "55210", - "codeCommune": "55551", - "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", - "nomCommune": "VIGNEULLES LES HATTONCHATEL" + "codePostal": "10140", + "codeCommune": "10078", + "libelleAcheminement": "CHAMP SUR BARSE", + "nomCommune": "CHAMP SUR BARSE" }, { - "codePostal": "51130", - "codeCommune": "51158", - "libelleAcheminement": "VAL DES MARAIS", - "nomCommune": "VAL DES MARAIS" + "codePostal": "11270", + "codeCommune": "11162", + "libelleAcheminement": "GENERVILLE", + "nomCommune": "GENERVILLE" }, { - "codePostal": "14370", - "codeCommune": "14761", - "libelleAcheminement": "VIMONT", - "nomCommune": "VIMONT" + "codePostal": "23000", + "codeCommune": "23206", + "libelleAcheminement": "ST LAURENT", + "nomCommune": "ST LAURENT" }, { - "codePostal": "16380", - "codeCommune": "16323", - "libelleAcheminement": "ST GERMAIN DE MONTBRON", - "nomCommune": "ST GERMAIN DE MONTBRON" + "codePostal": "24640", + "codeCommune": "24026", + "libelleAcheminement": "BASSILLAC ET AUBEROCHE", + "nomCommune": "BASSILLAC ET AUBEROCHE" }, { - "codePostal": "55600", - "codeCommune": "55554", - "libelleAcheminement": "VILLECLOYE", - "nomCommune": "VILLECLOYE" + "codePostal": "10210", + "codeCommune": "10087", + "libelleAcheminement": "CHASEREY", + "nomCommune": "CHASEREY" }, { - "codePostal": "51330", - "codeCommune": "51166", - "libelleAcheminement": "CONTAULT", - "nomCommune": "CONTAULT" + "codePostal": "11500", + "codeCommune": "11165", + "libelleAcheminement": "GINOLES", + "nomCommune": "GINOLES" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "23300", + "codeCommune": "23207", + "libelleAcheminement": "ST LEGER BRIDEREIX", + "nomCommune": "ST LEGER BRIDEREIX" }, { - "codePostal": "16100", - "codeCommune": "16330", - "libelleAcheminement": "ST LAURENT DE COGNAC", - "nomCommune": "ST LAURENT DE COGNAC" + "codePostal": "24150", + "codeCommune": "24027", + "libelleAcheminement": "BAYAC", + "nomCommune": "BAYAC" }, { - "codePostal": "55260", - "codeCommune": "55555", - "libelleAcheminement": "VILLE DEVANT BELRAIN", - "nomCommune": "VILLE DEVANT BELRAIN" + "codePostal": "10510", + "codeCommune": "10089", + "libelleAcheminement": "CHATRES", + "nomCommune": "CHATRES" }, { - "codePostal": "51210", - "codeCommune": "51175", - "libelleAcheminement": "CORROBERT", - "nomCommune": "CORROBERT" + "codePostal": "11430", + "codeCommune": "11170", + "libelleAcheminement": "GRUISSAN", + "nomCommune": "GRUISSAN" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "23000", + "codeCommune": "23208", + "libelleAcheminement": "ST LEGER LE GUERETOIS", + "nomCommune": "ST LEGER LE GUERETOIS" }, { - "codePostal": "16190", - "codeCommune": "16334", - "libelleAcheminement": "ST MARTIAL", - "nomCommune": "ST MARTIAL" + "codePostal": "24440", + "codeCommune": "24028", + "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", + "nomCommune": "BEAUMONTOIS EN PERIGORD" }, { - "codePostal": "55260", - "codeCommune": "55570", - "libelleAcheminement": "VILLOTTE SUR AIRE", - "nomCommune": "VILLOTTE SUR AIRE" + "codePostal": "10500", + "codeCommune": "10093", + "libelleAcheminement": "CHAUMESNIL", + "nomCommune": "CHAUMESNIL" }, { - "codePostal": "51140", - "codeCommune": "51181", - "libelleAcheminement": "COURCELLES SAPICOURT", - "nomCommune": "COURCELLES SAPICOURT" + "codePostal": "11400", + "codeCommune": "11181", + "libelleAcheminement": "LABECEDE LAURAGAIS", + "nomCommune": "LABECEDE LAURAGAIS" }, { - "codePostal": "14690", - "codeCommune": "14764", - "libelleAcheminement": "PONT D OUILLY", - "nomCommune": "PONT D OUILLY" + "codePostal": "23200", + "codeCommune": "23210", + "libelleAcheminement": "ST MAIXANT", + "nomCommune": "ST MAIXANT" }, { - "codePostal": "16170", - "codeCommune": "16339", - "libelleAcheminement": "VAL D AUGE", - "nomCommune": "VAL D AUGE" + "codePostal": "24140", + "codeCommune": "24031", + "libelleAcheminement": "BEAUREGARD ET BASSAC", + "nomCommune": "BEAUREGARD ET BASSAC" }, { - "codePostal": "55130", - "codeCommune": "55575", - "libelleAcheminement": "VOUTHON HAUT", - "nomCommune": "VOUTHON HAUT" + "codePostal": "10330", + "codeCommune": "10094", + "libelleAcheminement": "CHAVANGES", + "nomCommune": "CHAVANGES" }, { - "codePostal": "51490", - "codeCommune": "51216", - "libelleAcheminement": "DONTRIEN", - "nomCommune": "DONTRIEN" + "codePostal": "11220", + "codeCommune": "11185", + "libelleAcheminement": "LAGRASSE", + "nomCommune": "LAGRASSE" }, { - "codePostal": "15380", - "codeCommune": "15006", - "libelleAcheminement": "ANGLARDS DE SALERS", - "nomCommune": "ANGLARDS DE SALERS" + "codePostal": "23200", + "codeCommune": "23211", + "libelleAcheminement": "ST MARC A FRONGIER", + "nomCommune": "ST MARC A FRONGIER" }, { - "codePostal": "16720", - "codeCommune": "16340", - "libelleAcheminement": "ST MEME LES CARRIERES", - "nomCommune": "ST MEME LES CARRIERES" + "codePostal": "24750", + "codeCommune": "24053", + "libelleAcheminement": "BOULAZAC ISLE MANOIRE", + "nomCommune": "BOULAZAC ISLE MANOIRE" }, { - "codePostal": "55250", - "codeCommune": "55577", - "libelleAcheminement": "WALY", - "nomCommune": "WALY" + "codePostal": "10190", + "codeCommune": "10096", + "libelleAcheminement": "CHENNEGY", + "nomCommune": "CHENNEGY" }, { - "codePostal": "51700", - "codeCommune": "51217", - "libelleAcheminement": "DORMANS", - "nomCommune": "DORMANS" + "codePostal": "11700", + "codeCommune": "11190", + "libelleAcheminement": "LA REDORTE", + "nomCommune": "LA REDORTE" }, { - "codePostal": "15110", - "codeCommune": "15007", - "libelleAcheminement": "ANTERRIEUX", - "nomCommune": "ANTERRIEUX" + "codePostal": "23400", + "codeCommune": "23223", + "libelleAcheminement": "ST MOREIL", + "nomCommune": "ST MOREIL" }, { - "codePostal": "16370", - "codeCommune": "16355", - "libelleAcheminement": "ST SULPICE DE COGNAC", - "nomCommune": "ST SULPICE DE COGNAC" + "codePostal": "24400", + "codeCommune": "24059", + "libelleAcheminement": "BOURGNAC", + "nomCommune": "BOURGNAC" }, { - "codePostal": "55500", - "codeCommune": "55581", - "libelleAcheminement": "WILLERONCOURT", - "nomCommune": "WILLERONCOURT" + "codePostal": "10210", + "codeCommune": "10098", + "libelleAcheminement": "CHESLEY", + "nomCommune": "CHESLEY" }, { - "codePostal": "51700", - "codeCommune": "51217", - "libelleAcheminement": "DORMANS", - "nomCommune": "DORMANS" + "codePostal": "11330", + "codeCommune": "11191", + "libelleAcheminement": "LAROQUE DE FA", + "nomCommune": "LAROQUE DE FA" }, { - "codePostal": "15400", - "codeCommune": "15009", - "libelleAcheminement": "APCHON", - "nomCommune": "APCHON" + "codePostal": "23260", + "codeCommune": "23226", + "libelleAcheminement": "ST PARDOUX D ARNET", + "nomCommune": "ST PARDOUX D ARNET" }, { - "codePostal": "16710", - "codeCommune": "16358", - "libelleAcheminement": "ST YRIEIX SUR CHARENTE", - "nomCommune": "ST YRIEIX SUR CHARENTE" + "codePostal": "24310", + "codeCommune": "24064", + "libelleAcheminement": "BRANTOME EN PERIGORD", + "nomCommune": "BRANTOME EN PERIGORD" }, { - "codePostal": "55300", - "codeCommune": "55586", - "libelleAcheminement": "XIVRAY ET MARVOISIN", - "nomCommune": "XIVRAY ET MARVOISIN" + "codePostal": "10130", + "codeCommune": "10099", + "libelleAcheminement": "CHESSY LES PRES", + "nomCommune": "CHESSY LES PRES" }, { - "codePostal": "51800", - "codeCommune": "51222", - "libelleAcheminement": "ECLAIRES", - "nomCommune": "ECLAIRES" + "codePostal": "11400", + "codeCommune": "11192", + "libelleAcheminement": "LASBORDES", + "nomCommune": "LASBORDES" }, { - "codePostal": "15500", - "codeCommune": "15013", - "libelleAcheminement": "AURIAC L EGLISE", - "nomCommune": "AURIAC L EGLISE" + "codePostal": "23150", + "codeCommune": "23229", + "libelleAcheminement": "ST PARDOUX LES CARDS", + "nomCommune": "ST PARDOUX LES CARDS" }, { - "codePostal": "16420", - "codeCommune": "16363", - "libelleAcheminement": "SAULGOND", - "nomCommune": "SAULGOND" + "codePostal": "24480", + "codeCommune": "24068", + "libelleAcheminement": "LE BUISSON DE CADOUIN", + "nomCommune": "LE BUISSON DE CADOUIN" }, { - "codePostal": "56140", - "codeCommune": "56020", - "libelleAcheminement": "BOHAL", - "nomCommune": "BOHAL" + "codePostal": "10200", + "codeCommune": "10103", + "libelleAcheminement": "COLOMBE LE SEC", + "nomCommune": "COLOMBE LE SEC" }, { - "codePostal": "51230", - "codeCommune": "51226", - "libelleAcheminement": "ECURY LE REPOS", - "nomCommune": "ECURY LE REPOS" + "codePostal": "11270", + "codeCommune": "11193", + "libelleAcheminement": "LASSERRE DE PROUILLE", + "nomCommune": "LASSERRE DE PROUILLE" }, { - "codePostal": "15700", - "codeCommune": "15018", - "libelleAcheminement": "BARRIAC LES BOSQUETS", - "nomCommune": "BARRIAC LES BOSQUETS" + "codePostal": "23460", + "codeCommune": "23232", + "libelleAcheminement": "ST PIERRE BELLEVUE", + "nomCommune": "ST PIERRE BELLEVUE" }, { - "codePostal": "16130", - "codeCommune": "16366", - "libelleAcheminement": "SEGONZAC", - "nomCommune": "SEGONZAC" + "codePostal": "24480", + "codeCommune": "24068", + "libelleAcheminement": "LE BUISSON DE CADOUIN", + "nomCommune": "LE BUISSON DE CADOUIN" }, { - "codePostal": "56430", - "codeCommune": "56025", - "libelleAcheminement": "BRIGNAC", - "nomCommune": "BRIGNAC" + "codePostal": "10130", + "codeCommune": "10108", + "libelleAcheminement": "COURTAOULT", + "nomCommune": "COURTAOULT" }, { - "codePostal": "51330", - "codeCommune": "51229", - "libelleAcheminement": "EPENSE", - "nomCommune": "EPENSE" + "codePostal": "11270", + "codeCommune": "11196", + "libelleAcheminement": "LAURAC", + "nomCommune": "LAURAC" }, { - "codePostal": "15300", - "codeCommune": "15025", - "libelleAcheminement": "ALBEPIERRE BREDONS", - "nomCommune": "ALBEPIERRE BREDONS" + "codePostal": "23140", + "codeCommune": "23243", + "libelleAcheminement": "ST SILVAIN SOUS TOULX", + "nomCommune": "ST SILVAIN SOUS TOULX" }, { - "codePostal": "16410", - "codeCommune": "16368", - "libelleAcheminement": "SERS", - "nomCommune": "SERS" + "codePostal": "24360", + "codeCommune": "24070", + "libelleAcheminement": "BUSSEROLLES", + "nomCommune": "BUSSEROLLES" }, { - "codePostal": "56220", - "codeCommune": "56028", - "libelleAcheminement": "CADEN", - "nomCommune": "CADEN" + "codePostal": "10270", + "codeCommune": "10110", + "libelleAcheminement": "COURTERANGES", + "nomCommune": "COURTERANGES" }, { - "codePostal": "51310", - "codeCommune": "51236", - "libelleAcheminement": "LES ESSARTS LE VICOMTE", - "nomCommune": "LES ESSARTS LE VICOMTE" + "codePostal": "11250", + "codeCommune": "11201", + "libelleAcheminement": "LEUC", + "nomCommune": "LEUC" }, { - "codePostal": "15320", - "codeCommune": "15034", - "libelleAcheminement": "CHALIERS", - "nomCommune": "CHALIERS" + "codePostal": "23230", + "codeCommune": "23255", + "libelleAcheminement": "TROIS FONDS", + "nomCommune": "TROIS FONDS" }, { - "codePostal": "16260", - "codeCommune": "16377", - "libelleAcheminement": "LA TACHE", - "nomCommune": "LA TACHE" + "codePostal": "24200", + "codeCommune": "24082", + "libelleAcheminement": "CARSAC AILLAC", + "nomCommune": "CARSAC AILLAC" }, { - "codePostal": "56910", - "codeCommune": "56033", - "libelleAcheminement": "CARENTOIR", - "nomCommune": "CARENTOIR" + "codePostal": "10150", + "codeCommune": "10115", + "libelleAcheminement": "CRENEY PRES TROYES", + "nomCommune": "CRENEY PRES TROYES" }, { - "codePostal": "51270", - "codeCommune": "51238", - "libelleAcheminement": "ETOGES", - "nomCommune": "ETOGES" + "codePostal": "11370", + "codeCommune": "11202", + "libelleAcheminement": "LEUCATE", + "nomCommune": "LEUCATE" }, { - "codePostal": "15270", - "codeCommune": "15038", - "libelleAcheminement": "CHAMPS SUR TARENTAINE MARCHAL", - "nomCommune": "CHAMPS SUR TARENTAINE MARCHAL" + "codePostal": "23120", + "codeCommune": "23257", + "libelleAcheminement": "VALLIERE", + "nomCommune": "VALLIERE" }, { - "codePostal": "16560", - "codeCommune": "16383", - "libelleAcheminement": "TOURRIERS", - "nomCommune": "TOURRIERS" + "codePostal": "24250", + "codeCommune": "24086", + "libelleAcheminement": "CASTELNAUD LA CHAPELLE", + "nomCommune": "CASTELNAUD LA CHAPELLE" }, { - "codePostal": "56230", - "codeCommune": "56045", - "libelleAcheminement": "LE COURS", - "nomCommune": "LE COURS" + "codePostal": "10320", + "codeCommune": "10116", + "libelleAcheminement": "CRESANTIGNES", + "nomCommune": "CRESANTIGNES" }, { - "codePostal": "51230", - "codeCommune": "51241", - "libelleAcheminement": "EUVY", - "nomCommune": "EUVY" + "codePostal": "11300", + "codeCommune": "11206", + "libelleAcheminement": "LIMOUX", + "nomCommune": "LIMOUX" }, { - "codePostal": "15300", - "codeCommune": "15041", - "libelleAcheminement": "LA CHAPELLE D ALAGNON", - "nomCommune": "LA CHAPELLE D ALAGNON" + "codePostal": "23170", + "codeCommune": "23259", + "libelleAcheminement": "VERNEIGES", + "nomCommune": "VERNEIGES" }, { - "codePostal": "16200", - "codeCommune": "16387", - "libelleAcheminement": "TRIAC LAUTRAIT", - "nomCommune": "TRIAC LAUTRAIT" + "codePostal": "24600", + "codeCommune": "24090", + "libelleAcheminement": "CELLES", + "nomCommune": "CELLES" }, { - "codePostal": "56540", - "codeCommune": "56048", - "libelleAcheminement": "LE CROISTY", - "nomCommune": "LE CROISTY" + "codePostal": "10130", + "codeCommune": "10118", + "libelleAcheminement": "LES CROUTES", + "nomCommune": "LES CROUTES" }, { - "codePostal": "51510", - "codeCommune": "51242", - "libelleAcheminement": "FAGNIERES", - "nomCommune": "FAGNIERES" + "codePostal": "11140", + "codeCommune": "11244", + "libelleAcheminement": "MONTFORT SUR BOULZANE", + "nomCommune": "MONTFORT SUR BOULZANE" }, { - "codePostal": "15100", - "codeCommune": "15055", - "libelleAcheminement": "COREN", - "nomCommune": "COREN" + "codePostal": "24460", + "codeCommune": "24002", + "libelleAcheminement": "AGONAC", + "nomCommune": "AGONAC" }, { - "codePostal": "16170", - "codeCommune": "16395", - "libelleAcheminement": "VAUX ROUILLAC", - "nomCommune": "VAUX ROUILLAC" + "codePostal": "24530", + "codeCommune": "24096", + "libelleAcheminement": "CHAMPAGNAC DE BELAIR", + "nomCommune": "CHAMPAGNAC DE BELAIR" }, { - "codePostal": "56490", - "codeCommune": "56056", - "libelleAcheminement": "EVRIGUET", - "nomCommune": "EVRIGUET" + "codePostal": "10200", + "codeCommune": "10126", + "libelleAcheminement": "DOLANCOURT", + "nomCommune": "DOLANCOURT" }, { - "codePostal": "51170", - "codeCommune": "51245", - "libelleAcheminement": "FAVEROLLES ET COEMY", - "nomCommune": "FAVEROLLES ET COEMY" + "codePostal": "11220", + "codeCommune": "11251", + "libelleAcheminement": "VAL DE DAGNE", + "nomCommune": "VAL DE DAGNE" }, { - "codePostal": "15150", - "codeCommune": "15057", - "libelleAcheminement": "CROS DE MONTVERT", - "nomCommune": "CROS DE MONTVERT" + "codePostal": "24420", + "codeCommune": "24011", + "libelleAcheminement": "ANTONNE ET TRIGONANT", + "nomCommune": "ANTONNE ET TRIGONANT" }, { - "codePostal": "16460", - "codeCommune": "16396", - "libelleAcheminement": "VENTOUSE", - "nomCommune": "VENTOUSE" + "codePostal": "24360", + "codeCommune": "24100", + "libelleAcheminement": "CHAMPNIERS ET REILHAC", + "nomCommune": "CHAMPNIERS ET REILHAC" }, { - "codePostal": "56130", - "codeCommune": "56058", - "libelleAcheminement": "FEREL", - "nomCommune": "FEREL" + "codePostal": "10330", + "codeCommune": "10128", + "libelleAcheminement": "DONNEMENT", + "nomCommune": "DONNEMENT" }, { - "codePostal": "51800", - "codeCommune": "51253", - "libelleAcheminement": "FLORENT EN ARGONNE", - "nomCommune": "FLORENT EN ARGONNE" + "codePostal": "11290", + "codeCommune": "11254", + "libelleAcheminement": "MONTREAL", + "nomCommune": "MONTREAL" }, { - "codePostal": "15300", - "codeCommune": "15061", - "libelleAcheminement": "DIENNE", - "nomCommune": "DIENNE" + "codePostal": "24560", + "codeCommune": "24024", + "libelleAcheminement": "BARDOU", + "nomCommune": "BARDOU" }, { - "codePostal": "16300", - "codeCommune": "16405", - "libelleAcheminement": "VIGNOLLES", - "nomCommune": "VIGNOLLES" + "codePostal": "24290", + "codeCommune": "24106", + "libelleAcheminement": "LA CHAPELLE AUBAREIL", + "nomCommune": "LA CHAPELLE AUBAREIL" }, { - "codePostal": "56200", - "codeCommune": "56061", - "libelleAcheminement": "LA GACILLY", - "nomCommune": "LA GACILLY" + "codePostal": "10130", + "codeCommune": "10140", + "libelleAcheminement": "ERVY LE CHATEL", + "nomCommune": "ERVY LE CHATEL" }, { - "codePostal": "51160", - "codeCommune": "51256", - "libelleAcheminement": "FONTAINE SUR AY", - "nomCommune": "FONTAINE SUR AY" + "codePostal": "11100", + "codeCommune": "11262", + "libelleAcheminement": "NARBONNE", + "nomCommune": "NARBONNE" }, { - "codePostal": "15310", - "codeCommune": "15072", - "libelleAcheminement": "FREIX ANGLARDS", - "nomCommune": "FREIX ANGLARDS" + "codePostal": "24440", + "codeCommune": "24028", + "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", + "nomCommune": "BEAUMONTOIS EN PERIGORD" }, { - "codePostal": "16560", - "codeCommune": "16412", - "libelleAcheminement": "VILLEJOUBERT", - "nomCommune": "VILLEJOUBERT" + "codePostal": "24460", + "codeCommune": "24115", + "libelleAcheminement": "CHATEAU L EVEQUE", + "nomCommune": "CHATEAU L EVEQUE" }, { - "codePostal": "56680", - "codeCommune": "56062", - "libelleAcheminement": "GAVRES", - "nomCommune": "GAVRES" + "codePostal": "10290", + "codeCommune": "10145", + "libelleAcheminement": "FAUX VILLECERF", + "nomCommune": "FAUX VILLECERF" }, { - "codePostal": "51120", - "codeCommune": "51258", - "libelleAcheminement": "LA FORESTIERE", - "nomCommune": "LA FORESTIERE" + "codePostal": "11410", + "codeCommune": "11275", + "libelleAcheminement": "PAYRA SUR L HERS", + "nomCommune": "PAYRA SUR L HERS" }, { - "codePostal": "15130", - "codeCommune": "15085", - "libelleAcheminement": "LABROUSSE", - "nomCommune": "LABROUSSE" + "codePostal": "24120", + "codeCommune": "24030", + "libelleAcheminement": "BEAUREGARD DE TERRASSON", + "nomCommune": "BEAUREGARD DE TERRASSON" }, { - "codePostal": "16430", - "codeCommune": "16415", - "libelleAcheminement": "VINDELLE", - "nomCommune": "VINDELLE" + "codePostal": "24120", + "codeCommune": "24116", + "libelleAcheminement": "CHATRES", + "nomCommune": "CHATRES" }, { - "codePostal": "56800", - "codeCommune": "56065", - "libelleAcheminement": "GOURHEL", - "nomCommune": "GOURHEL" + "codePostal": "10280", + "codeCommune": "10151", + "libelleAcheminement": "FONTAINE LES GRES", + "nomCommune": "FONTAINE LES GRES" }, { - "codePostal": "51390", - "codeCommune": "51267", - "libelleAcheminement": "GERMIGNY", - "nomCommune": "GERMIGNY" + "codePostal": "11350", + "codeCommune": "11276", + "libelleAcheminement": "PAZIOLS", + "nomCommune": "PAZIOLS" }, { - "codePostal": "15130", - "codeCommune": "15090", - "libelleAcheminement": "LAFEUILLADE EN VEZIE", - "nomCommune": "LAFEUILLADE EN VEZIE" + "codePostal": "24170", + "codeCommune": "24035", + "libelleAcheminement": "PAYS DE BELVES", + "nomCommune": "PAYS DE BELVES" }, { - "codePostal": "16110", - "codeCommune": "16425", - "libelleAcheminement": "YVRAC ET MALLEYRAND", - "nomCommune": "YVRAC ET MALLEYRAND" + "codePostal": "24160", + "codeCommune": "24124", + "libelleAcheminement": "CLERMONT D EXCIDEUIL", + "nomCommune": "CLERMONT D EXCIDEUIL" }, { - "codePostal": "56120", - "codeCommune": "56070", - "libelleAcheminement": "GUEGON", - "nomCommune": "GUEGON" + "codePostal": "10270", + "codeCommune": "10162", + "libelleAcheminement": "FRESNOY LE CHATEAU", + "nomCommune": "FRESNOY LE CHATEAU" }, { - "codePostal": "51130", - "codeCommune": "51268", - "libelleAcheminement": "GERMINON", - "nomCommune": "GERMINON" + "codePostal": "11420", + "codeCommune": "11283", + "libelleAcheminement": "PEYREFITTE SUR L HERS", + "nomCommune": "PEYREFITTE SUR L HERS" }, { - "codePostal": "15270", - "codeCommune": "15092", - "libelleAcheminement": "LANOBRE", - "nomCommune": "LANOBRE" + "codePostal": "24560", + "codeCommune": "24045", + "libelleAcheminement": "BOISSE", + "nomCommune": "BOISSE" }, { - "codePostal": "17500", - "codeCommune": "17002", - "libelleAcheminement": "AGUDELLE", - "nomCommune": "AGUDELLE" + "codePostal": "24530", + "codeCommune": "24129", + "libelleAcheminement": "CONDAT SUR TRINCOU", + "nomCommune": "CONDAT SUR TRINCOU" }, { - "codePostal": "56520", - "codeCommune": "56078", - "libelleAcheminement": "GUIDEL", - "nomCommune": "GUIDEL" + "codePostal": "10220", + "codeCommune": "10165", + "libelleAcheminement": "GERAUDOT", + "nomCommune": "GERAUDOT" }, { - "codePostal": "51330", - "codeCommune": "51272", - "libelleAcheminement": "GIVRY EN ARGONNE", - "nomCommune": "GIVRY EN ARGONNE" + "codePostal": "11160", + "codeCommune": "11286", + "libelleAcheminement": "PEYRIAC MINERVOIS", + "nomCommune": "PEYRIAC MINERVOIS" }, { - "codePostal": "15120", - "codeCommune": "15093", - "libelleAcheminement": "LAPEYRUGUE", - "nomCommune": "LAPEYRUGUE" + "codePostal": "24230", + "codeCommune": "24048", + "libelleAcheminement": "BONNEVILLE ST AVIT DE FUMADIERES", + "nomCommune": "BONNEVILLE ET ST AVIT DE FUMADIERES" }, { - "codePostal": "17290", - "codeCommune": "17003", - "libelleAcheminement": "AIGREFEUILLE D AUNIS", - "nomCommune": "AIGREFEUILLE D AUNIS" + "codePostal": "24750", + "codeCommune": "24135", + "libelleAcheminement": "CORNILLE", + "nomCommune": "CORNILLE" }, { - "codePostal": "56450", - "codeCommune": "56084", - "libelleAcheminement": "LE HEZO", - "nomCommune": "LE HEZO" + "codePostal": "10240", + "codeCommune": "10174", + "libelleAcheminement": "ISLE AUBIGNY", + "nomCommune": "ISLE AUBIGNY" }, { - "codePostal": "51260", - "codeCommune": "51279", - "libelleAcheminement": "GRANGES SUR AUBE", - "nomCommune": "GRANGES SUR AUBE" + "codePostal": "11270", + "codeCommune": "11291", + "libelleAcheminement": "PLAVILLA", + "nomCommune": "PLAVILLA" }, { - "codePostal": "15300", - "codeCommune": "15100", - "libelleAcheminement": "LAVEISSENET", - "nomCommune": "LAVEISSENET" + "codePostal": "24480", + "codeCommune": "24052", + "libelleAcheminement": "BOUILLAC", + "nomCommune": "BOUILLAC" }, { - "codePostal": "17150", - "codeCommune": "17005", - "libelleAcheminement": "ALLAS BOCAGE", - "nomCommune": "ALLAS BOCAGE" + "codePostal": "24660", + "codeCommune": "24138", + "libelleAcheminement": "COULOUNIEIX CHAMIERS", + "nomCommune": "COULOUNIEIX CHAMIERS" }, { - "codePostal": "56920", - "codeCommune": "56092", - "libelleAcheminement": "KERFOURN", - "nomCommune": "KERFOURN" + "codePostal": "10320", + "codeCommune": "10177", + "libelleAcheminement": "JAVERNANT", + "nomCommune": "JAVERNANT" }, { - "codePostal": "51800", - "codeCommune": "51283", - "libelleAcheminement": "HANS", - "nomCommune": "HANS" + "codePostal": "11490", + "codeCommune": "11295", + "libelleAcheminement": "PORTEL DES CORBIERES", + "nomCommune": "PORTEL DES CORBIERES" }, { - "codePostal": "15300", - "codeCommune": "15101", - "libelleAcheminement": "LAVEISSIERE", - "nomCommune": "LAVEISSIERE" + "codePostal": "24330", + "codeCommune": "24053", + "libelleAcheminement": "BOULAZAC ISLE MANOIRE", + "nomCommune": "BOULAZAC ISLE MANOIRE" }, { - "codePostal": "17230", - "codeCommune": "17008", - "libelleAcheminement": "ANDILLY", - "nomCommune": "ANDILLY" + "codePostal": "24430", + "codeCommune": "24139", + "libelleAcheminement": "COURSAC", + "nomCommune": "COURSAC" }, { - "codePostal": "56690", - "codeCommune": "56096", - "libelleAcheminement": "LANDAUL", - "nomCommune": "LANDAUL" + "codePostal": "10140", + "codeCommune": "10178", + "libelleAcheminement": "JESSAINS", + "nomCommune": "JESSAINS" }, { - "codePostal": "51300", - "codeCommune": "51284", - "libelleAcheminement": "HAUSSIGNEMONT", - "nomCommune": "HAUSSIGNEMONT" + "codePostal": "11120", + "codeCommune": "11296", + "libelleAcheminement": "POUZOLS MINERVOIS", + "nomCommune": "POUZOLS MINERVOIS" }, { - "codePostal": "15600", - "codeCommune": "15104", - "libelleAcheminement": "LEYNHAC", - "nomCommune": "LEYNHAC" + "codePostal": "24310", + "codeCommune": "24055", + "libelleAcheminement": "BOURDEILLES", + "nomCommune": "BOURDEILLES" }, { - "codePostal": "17230", - "codeCommune": "17008", - "libelleAcheminement": "ANDILLY", - "nomCommune": "ANDILLY" + "codePostal": "24220", + "codeCommune": "24142", + "libelleAcheminement": "COUX ET BIGAROQUE MOUZENS", + "nomCommune": "COUX ET BIGAROQUE MOUZENS" }, { - "codePostal": "56440", - "codeCommune": "56101", - "libelleAcheminement": "LANGUIDIC", - "nomCommune": "LANGUIDIC" + "codePostal": "10330", + "codeCommune": "10180", + "libelleAcheminement": "JONCREUIL", + "nomCommune": "JONCREUIL" }, { - "codePostal": "51300", - "codeCommune": "51295", - "libelleAcheminement": "HUIRON", - "nomCommune": "HUIRON" + "codePostal": "11700", + "codeCommune": "11301", + "libelleAcheminement": "PUICHERIC", + "nomCommune": "PUICHERIC" }, { - "codePostal": "43450", - "codeCommune": "15105", - "libelleAcheminement": "LEYVAUX", - "nomCommune": "LEYVAUX" + "codePostal": "24320", + "codeCommune": "24057", + "libelleAcheminement": "BOURG DES MAISONS", + "nomCommune": "BOURG DES MAISONS" }, { - "codePostal": "17350", - "codeCommune": "17011", - "libelleAcheminement": "ANNEPONT", - "nomCommune": "ANNEPONT" + "codePostal": "24640", + "codeCommune": "24147", + "libelleAcheminement": "CUBJAC AUVEZERE VAL D ANS", + "nomCommune": "CUBJAC AUVEZERE VAL D ANS" }, { - "codePostal": "56120", - "codeCommune": "56103", - "libelleAcheminement": "LANTILLAC", - "nomCommune": "LANTILLAC" + "codePostal": "10310", + "codeCommune": "10182", + "libelleAcheminement": "JUVANCOURT", + "nomCommune": "JUVANCOURT" }, { - "codePostal": "51290", - "codeCommune": "51300", - "libelleAcheminement": "ISLE SUR MARNE", - "nomCommune": "ISLE SUR MARNE" + "codePostal": "11200", + "codeCommune": "11307", + "libelleAcheminement": "RAISSAC D AUDE", + "nomCommune": "RAISSAC D AUDE" }, { - "codePostal": "15320", - "codeCommune": "15108", - "libelleAcheminement": "VAL D ARCOMIE", - "nomCommune": "VAL D ARCOMIE" + "codePostal": "24150", + "codeCommune": "24060", + "libelleAcheminement": "BOURNIQUEL", + "nomCommune": "BOURNIQUEL" }, { - "codePostal": "17120", - "codeCommune": "17015", - "libelleAcheminement": "ARCES", - "nomCommune": "ARCES" + "codePostal": "24250", + "codeCommune": "24150", + "libelleAcheminement": "DAGLAN", + "nomCommune": "DAGLAN" }, { - "codePostal": "56870", - "codeCommune": "56106", - "libelleAcheminement": "LARMOR BADEN", - "nomCommune": "LARMOR BADEN" + "codePostal": "10140", + "codeCommune": "10183", + "libelleAcheminement": "JUVANZE", + "nomCommune": "JUVANZE" }, { - "codePostal": "51290", - "codeCommune": "51316", - "libelleAcheminement": "LARZICOURT", - "nomCommune": "LARZICOURT" + "codePostal": "11270", + "codeCommune": "11312", + "libelleAcheminement": "RIBOUISSE", + "nomCommune": "RIBOUISSE" }, { - "codePostal": "15200", - "codeCommune": "15120", - "libelleAcheminement": "MAURIAC", - "nomCommune": "MAURIAC" + "codePostal": "24310", + "codeCommune": "24064", + "libelleAcheminement": "BRANTOME EN PERIGORD", + "nomCommune": "BRANTOME EN PERIGORD" }, { - "codePostal": "17380", - "codeCommune": "17017", - "libelleAcheminement": "ARCHINGEAY", - "nomCommune": "ARCHINGEAY" + "codePostal": "24420", + "codeCommune": "24162", + "libelleAcheminement": "ESCOIRE", + "nomCommune": "ESCOIRE" }, { - "codePostal": "56460", - "codeCommune": "56112", - "libelleAcheminement": "LIZIO", - "nomCommune": "LIZIO" + "codePostal": "10320", + "codeCommune": "10198", + "libelleAcheminement": "LIREY", + "nomCommune": "LIREY" }, { - "codePostal": "51230", - "codeCommune": "51319", - "libelleAcheminement": "LENHARREE", - "nomCommune": "LENHARREE" + "codePostal": "11340", + "codeCommune": "11320", + "libelleAcheminement": "ROQUEFEUIL", + "nomCommune": "ROQUEFEUIL" }, { - "codePostal": "15500", - "codeCommune": "15126", - "libelleAcheminement": "MOLEDES", - "nomCommune": "MOLEDES" + "codePostal": "24460", + "codeCommune": "24064", + "libelleAcheminement": "BRANTOME EN PERIGORD", + "nomCommune": "BRANTOME EN PERIGORD" }, { - "codePostal": "17590", - "codeCommune": "17019", - "libelleAcheminement": "ARS EN RE", - "nomCommune": "ARS EN RE" + "codePostal": "24500", + "codeCommune": "24167", + "libelleAcheminement": "EYMET", + "nomCommune": "EYMET" }, { - "codePostal": "56360", - "codeCommune": "56114", - "libelleAcheminement": "LOCMARIA", - "nomCommune": "LOCMARIA" + "codePostal": "10320", + "codeCommune": "10204", + "libelleAcheminement": "LONGEVILLE SUR MOGNE", + "nomCommune": "LONGEVILLE SUR MOGNE" }, { - "codePostal": "51130", - "codeCommune": "51327", - "libelleAcheminement": "LOISY EN BRIE", - "nomCommune": "LOISY EN BRIE" + "codePostal": "11540", + "codeCommune": "11322", + "libelleAcheminement": "ROQUEFORT DES CORBIERES", + "nomCommune": "ROQUEFORT DES CORBIERES" }, { - "codePostal": "15240", - "codeCommune": "15131", - "libelleAcheminement": "LE MONTEIL", - "nomCommune": "LE MONTEIL" + "codePostal": "24350", + "codeCommune": "24069", + "libelleAcheminement": "BUSSAC", + "nomCommune": "BUSSAC" }, { - "codePostal": "17360", - "codeCommune": "17033", - "libelleAcheminement": "LA BARDE", - "nomCommune": "LA BARDE" + "codePostal": "24620", + "codeCommune": "24172", + "libelleAcheminement": "LES EYZIES", + "nomCommune": "LES EYZIES" }, { - "codePostal": "56740", - "codeCommune": "56116", - "libelleAcheminement": "LOCMARIAQUER", - "nomCommune": "LOCMARIAQUER" + "codePostal": "10170", + "codeCommune": "10207", + "libelleAcheminement": "LONGUEVILLE SUR AUBE", + "nomCommune": "LONGUEVILLE SUR AUBE" }, { - "codePostal": "51240", - "codeCommune": "51339", - "libelleAcheminement": "MAIRY SUR MARNE", - "nomCommune": "MAIRY SUR MARNE" + "codePostal": "11290", + "codeCommune": "11327", + "libelleAcheminement": "ROULLENS", + "nomCommune": "ROULLENS" }, { - "codePostal": "15170", - "codeCommune": "15141", - "libelleAcheminement": "NEUSSARGUES EN PINATELLE", - "nomCommune": "NEUSSARGUES EN PINATELLE" + "codePostal": "24150", + "codeCommune": "24073", + "libelleAcheminement": "CALES", + "nomCommune": "CALES" }, { - "codePostal": "17490", - "codeCommune": "17035", - "libelleAcheminement": "BAZAUGES", - "nomCommune": "BAZAUGES" + "codePostal": "24500", + "codeCommune": "24186", + "libelleAcheminement": "FONROQUE", + "nomCommune": "FONROQUE" }, { - "codePostal": "56100", - "codeCommune": "56121", - "libelleAcheminement": "LORIENT", - "nomCommune": "LORIENT" + "codePostal": "10270", + "codeCommune": "10209", + "libelleAcheminement": "LUSIGNY SUR BARSE", + "nomCommune": "LUSIGNY SUR BARSE" }, { - "codePostal": "51190", - "codeCommune": "51367", - "libelleAcheminement": "LE MESNIL SUR OGER", - "nomCommune": "LE MESNIL SUR OGER" + "codePostal": "11240", + "codeCommune": "11328", + "libelleAcheminement": "ROUTIER", + "nomCommune": "ROUTIER" }, { - "codePostal": "15100", - "codeCommune": "15142", - "libelleAcheminement": "NEUVEGLISE SUR TRUYERE", - "nomCommune": "NEUVEGLISE SUR TRUYERE" + "codePostal": "24260", + "codeCommune": "24076", + "libelleAcheminement": "CAMPAGNE", + "nomCommune": "CAMPAGNE" }, { - "codePostal": "17160", - "codeCommune": "17048", - "libelleAcheminement": "BLANZAC LES MATHA", - "nomCommune": "BLANZAC LES MATHA" + "codePostal": "24160", + "codeCommune": "24196", + "libelleAcheminement": "GENIS", + "nomCommune": "GENIS" }, { - "codePostal": "56250", - "codeCommune": "56137", - "libelleAcheminement": "MONTERBLANC", - "nomCommune": "MONTERBLANC" + "codePostal": "10230", + "codeCommune": "10216", + "libelleAcheminement": "MAILLY LE CAMP", + "nomCommune": "MAILLY LE CAMP" }, { - "codePostal": "51170", - "codeCommune": "51382", - "libelleAcheminement": "MONT SUR COURVILLE", - "nomCommune": "MONT SUR COURVILLE" + "codePostal": "11200", + "codeCommune": "11332", + "libelleAcheminement": "ST ANDRE DE ROQUELONGUE", + "nomCommune": "ST ANDRE DE ROQUELONGUE" }, { - "codePostal": "15290", - "codeCommune": "15147", - "libelleAcheminement": "PARLAN", - "nomCommune": "PARLAN" + "codePostal": "24120", + "codeCommune": "24085", + "libelleAcheminement": "LA CASSAGNE", + "nomCommune": "LA CASSAGNE" }, { - "codePostal": "17150", - "codeCommune": "17052", - "libelleAcheminement": "BOISREDON", - "nomCommune": "BOISREDON" + "codePostal": "24320", + "codeCommune": "24199", + "libelleAcheminement": "GOUT ROSSIGNOL", + "nomCommune": "GOUT ROSSIGNOL" }, { - "codePostal": "56500", - "codeCommune": "56140", - "libelleAcheminement": "MOREAC", - "nomCommune": "MOREAC" + "codePostal": "10500", + "codeCommune": "10221", + "libelleAcheminement": "MAIZIERES LES BRIENNE", + "nomCommune": "MAIZIERES LES BRIENNE" }, { - "codePostal": "51530", - "codeCommune": "51387", - "libelleAcheminement": "MOSLINS", - "nomCommune": "MOSLINS" + "codePostal": "11230", + "codeCommune": "11333", + "libelleAcheminement": "ST BENOIT", + "nomCommune": "ST BENOIT" }, { - "codePostal": "15700", - "codeCommune": "15153", - "libelleAcheminement": "PLEAUX", - "nomCommune": "PLEAUX" + "codePostal": "24220", + "codeCommune": "24087", + "libelleAcheminement": "CASTELS ET BEZENAC", + "nomCommune": "CASTELS ET BEZENAC" }, { - "codePostal": "17540", - "codeCommune": "17057", - "libelleAcheminement": "BOUHET", - "nomCommune": "BOUHET" + "codePostal": "24350", + "codeCommune": "24200", + "libelleAcheminement": "GRAND BRASSAC", + "nomCommune": "GRAND BRASSAC" }, { - "codePostal": "56430", - "codeCommune": "56145", - "libelleAcheminement": "NEANT SUR YVEL", - "nomCommune": "NEANT SUR YVEL" + "codePostal": "10500", + "codeCommune": "10228", + "libelleAcheminement": "MATHAUX", + "nomCommune": "MATHAUX" }, { - "codePostal": "51120", - "codeCommune": "51395", - "libelleAcheminement": "NESLE LA REPOSTE", - "nomCommune": "NESLE LA REPOSTE" + "codePostal": "11700", + "codeCommune": "11337", + "libelleAcheminement": "ST COUAT D AUDE", + "nomCommune": "ST COUAT D AUDE" }, { - "codePostal": "15700", - "codeCommune": "15153", - "libelleAcheminement": "PLEAUX", - "nomCommune": "PLEAUX" + "codePostal": "24800", + "codeCommune": "24095", + "libelleAcheminement": "CHALAIS", + "nomCommune": "CHALAIS" }, { - "codePostal": "17120", - "codeCommune": "17068", - "libelleAcheminement": "BRIE SOUS MORTAGNE", - "nomCommune": "BRIE SOUS MORTAGNE" + "codePostal": "24170", + "codeCommune": "24206", + "libelleAcheminement": "GRIVES", + "nomCommune": "GRIVES" }, { - "codePostal": "56760", - "codeCommune": "56155", - "libelleAcheminement": "PENESTIN", - "nomCommune": "PENESTIN" + "codePostal": "10110", + "codeCommune": "10232", + "libelleAcheminement": "MERREY SUR ARCE", + "nomCommune": "MERREY SUR ARCE" }, { - "codePostal": "51310", - "codeCommune": "51407", - "libelleAcheminement": "LA NOUE", - "nomCommune": "LA NOUE" + "codePostal": "11300", + "codeCommune": "11338", + "libelleAcheminement": "ST COUAT DU RAZES", + "nomCommune": "ST COUAT DU RAZES" }, { - "codePostal": "15700", - "codeCommune": "15153", - "libelleAcheminement": "PLEAUX", - "nomCommune": "PLEAUX" + "codePostal": "24470", + "codeCommune": "24101", + "libelleAcheminement": "CHAMPS ROMAIN", + "nomCommune": "CHAMPS ROMAIN" }, { - "codePostal": "17770", - "codeCommune": "17070", - "libelleAcheminement": "BRIZAMBOURG", - "nomCommune": "BRIZAMBOURG" + "codePostal": "24250", + "codeCommune": "24207", + "libelleAcheminement": "GROLEJAC", + "nomCommune": "GROLEJAC" }, { - "codePostal": "56890", - "codeCommune": "56158", - "libelleAcheminement": "PLESCOP", - "nomCommune": "PLESCOP" + "codePostal": "10190", + "codeCommune": "10237", + "libelleAcheminement": "MESNIL ST LOUP", + "nomCommune": "MESNIL ST LOUP" }, { - "codePostal": "51240", - "codeCommune": "51415", - "libelleAcheminement": "OMEY", - "nomCommune": "OMEY" + "codePostal": "11310", + "codeCommune": "11339", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "15130", - "codeCommune": "15156", - "libelleAcheminement": "PRUNET", - "nomCommune": "PRUNET" + "codePostal": "24320", + "codeCommune": "24105", + "libelleAcheminement": "CHAPDEUIL", + "nomCommune": "CHAPDEUIL" }, { - "codePostal": "17160", - "codeCommune": "17071", - "libelleAcheminement": "LA BROUSSE", - "nomCommune": "LA BROUSSE" + "codePostal": "24590", + "codeCommune": "24215", + "libelleAcheminement": "JAYAC", + "nomCommune": "JAYAC" }, { - "codePostal": "56120", - "codeCommune": "56160", - "libelleAcheminement": "PLEUGRIFFET", - "nomCommune": "PLEUGRIFFET" + "codePostal": "10140", + "codeCommune": "10238", + "libelleAcheminement": "MESNIL ST PERE", + "nomCommune": "MESNIL ST PERE" }, { - "codePostal": "51300", - "codeCommune": "51420", - "libelleAcheminement": "OUTREPONT", - "nomCommune": "OUTREPONT" + "codePostal": "11500", + "codeCommune": "11341", + "libelleAcheminement": "ST FERRIOL", + "nomCommune": "ST FERRIOL" }, { - "codePostal": "15800", - "codeCommune": "15159", - "libelleAcheminement": "RAULHAC", - "nomCommune": "RAULHAC" + "codePostal": "24320", + "codeCommune": "24109", + "libelleAcheminement": "LA CHAPELLE GRESIGNAC", + "nomCommune": "LA CHAPELLE GRESIGNAC" }, { - "codePostal": "17770", - "codeCommune": "17072", - "libelleAcheminement": "BURIE", - "nomCommune": "BURIE" + "codePostal": "24340", + "codeCommune": "24221", + "libelleAcheminement": "RUDEAU LADOSSE", + "nomCommune": "RUDEAU LADOSSE" }, { - "codePostal": "56880", - "codeCommune": "56164", - "libelleAcheminement": "PLOEREN", - "nomCommune": "PLOEREN" + "codePostal": "10200", + "codeCommune": "10242", + "libelleAcheminement": "MEURVILLE", + "nomCommune": "MEURVILLE" }, { - "codePostal": "51390", - "codeCommune": "51422", - "libelleAcheminement": "PARGNY LES REIMS", - "nomCommune": "PARGNY LES REIMS" + "codePostal": "11800", + "codeCommune": "11342", + "libelleAcheminement": "ST FRICHOUX", + "nomCommune": "ST FRICHOUX" }, { - "codePostal": "15100", - "codeCommune": "15164", - "libelleAcheminement": "ROFFIAC", - "nomCommune": "ROFFIAC" + "codePostal": "24300", + "codeCommune": "24111", + "libelleAcheminement": "LA CHAPELLE MONTMOREAU", + "nomCommune": "LA CHAPELLE MONTMOREAU" }, { - "codePostal": "17520", - "codeCommune": "17076", - "libelleAcheminement": "CELLES", - "nomCommune": "CELLES" + "codePostal": "24270", + "codeCommune": "24227", + "libelleAcheminement": "LANOUAILLE", + "nomCommune": "LANOUAILLE" }, { - "codePostal": "56420", - "codeCommune": "56172", - "libelleAcheminement": "PLUMELEC", - "nomCommune": "PLUMELEC" + "codePostal": "10130", + "codeCommune": "10251", + "libelleAcheminement": "MONTIGNY LES MONTS", + "nomCommune": "MONTIGNY LES MONTS" }, { - "codePostal": "51530", - "codeCommune": "51431", - "libelleAcheminement": "PIERRY", - "nomCommune": "PIERRY" + "codePostal": "11220", + "codeCommune": "11351", + "libelleAcheminement": "ST LAURENT DE LA CABRERISSE", + "nomCommune": "ST LAURENT DE LA CABRERISSE" }, { - "codePostal": "15290", - "codeCommune": "15166", - "libelleAcheminement": "ROUMEGOUX", - "nomCommune": "ROUMEGOUX" + "codePostal": "24320", + "codeCommune": "24119", + "libelleAcheminement": "CHERVAL", + "nomCommune": "CHERVAL" }, { - "codePostal": "17290", - "codeCommune": "17080", - "libelleAcheminement": "CHAMBON", - "nomCommune": "CHAMBON" + "codePostal": "24540", + "codeCommune": "24231", + "libelleAcheminement": "LAVALADE", + "nomCommune": "LAVALADE" }, { - "codePostal": "56330", - "codeCommune": "56177", - "libelleAcheminement": "PLUVIGNER", - "nomCommune": "PLUVIGNER" + "codePostal": "10420", + "codeCommune": "10265", + "libelleAcheminement": "LES NOES PRES TROYES", + "nomCommune": "LES NOES PRES TROYES" }, { - "codePostal": "51230", - "codeCommune": "51432", - "libelleAcheminement": "PLEURS", - "nomCommune": "PLEURS" + "codePostal": "11500", + "codeCommune": "11352", + "libelleAcheminement": "ST LOUIS ET PARAHOU", + "nomCommune": "ST LOUIS ET PARAHOU" }, { - "codePostal": "15240", - "codeCommune": "15169", - "libelleAcheminement": "SAIGNES", - "nomCommune": "SAIGNES" + "codePostal": "24560", + "codeCommune": "24126", + "libelleAcheminement": "COLOMBIER", + "nomCommune": "COLOMBIER" }, { - "codePostal": "17500", - "codeCommune": "17082", - "libelleAcheminement": "CHAMPAGNAC", - "nomCommune": "CHAMPAGNAC" + "codePostal": "24550", + "codeCommune": "24232", + "libelleAcheminement": "LAVAUR", + "nomCommune": "LAVAUR" }, { - "codePostal": "56320", - "codeCommune": "56182", - "libelleAcheminement": "PRIZIAC", - "nomCommune": "PRIZIAC" + "codePostal": "10240", + "codeCommune": "10267", + "libelleAcheminement": "NOGENT SUR AUBE", + "nomCommune": "NOGENT SUR AUBE" }, { - "codePostal": "51300", - "codeCommune": "51433", - "libelleAcheminement": "PLICHANCOURT", - "nomCommune": "PLICHANCOURT" + "codePostal": "11400", + "codeCommune": "11356", + "libelleAcheminement": "ST MARTIN LALANDE", + "nomCommune": "ST MARTIN LALANDE" }, { - "codePostal": "15190", - "codeCommune": "15173", - "libelleAcheminement": "ST BONNET DE CONDAT", - "nomCommune": "ST BONNET DE CONDAT" + "codePostal": "24600", + "codeCommune": "24128", + "libelleAcheminement": "COMBERANCHE ET EPELUCHE", + "nomCommune": "COMBERANCHE ET EPELUCHE" }, { - "codePostal": "17100", - "codeCommune": "17089", - "libelleAcheminement": "LA CHAPELLE DES POTS", - "nomCommune": "LA CHAPELLE DES POTS" + "codePostal": "24800", + "codeCommune": "24238", + "libelleAcheminement": "LEMPZOURS", + "nomCommune": "LEMPZOURS" }, { - "codePostal": "56530", - "codeCommune": "56185", - "libelleAcheminement": "QUEVEN", - "nomCommune": "QUEVEN" + "codePostal": "10400", + "codeCommune": "10268", + "libelleAcheminement": "NOGENT SUR SEINE", + "nomCommune": "NOGENT SUR SEINE" }, { - "codePostal": "51150", - "codeCommune": "51434", - "libelleAcheminement": "PLIVOT", - "nomCommune": "PLIVOT" + "codePostal": "11410", + "codeCommune": "11359", + "libelleAcheminement": "ST MICHEL DE LANES", + "nomCommune": "ST MICHEL DE LANES" }, { - "codePostal": "15140", - "codeCommune": "15179", - "libelleAcheminement": "ST CIRGUES DE MALBERT", - "nomCommune": "ST CIRGUES DE MALBERT" + "codePostal": "24520", + "codeCommune": "24140", + "libelleAcheminement": "COURS DE PILE", + "nomCommune": "COURS DE PILE" }, { - "codePostal": "17230", - "codeCommune": "17091", - "libelleAcheminement": "CHARRON", - "nomCommune": "CHARRON" + "codePostal": "24130", + "codeCommune": "24246", + "libelleAcheminement": "LUNAS", + "nomCommune": "LUNAS" }, { - "codePostal": "56460", - "codeCommune": "56197", - "libelleAcheminement": "VAL D OUST", - "nomCommune": "VAL D OUST" + "codePostal": "10170", + "codeCommune": "10274", + "libelleAcheminement": "ORVILLIERS ST JULIEN", + "nomCommune": "ORVILLIERS ST JULIEN" }, { - "codePostal": "51300", - "codeCommune": "51446", - "libelleAcheminement": "PRINGY", - "nomCommune": "PRINGY" + "codePostal": "11400", + "codeCommune": "11361", + "libelleAcheminement": "ST PAPOUL", + "nomCommune": "ST PAPOUL" }, { - "codePostal": "15800", - "codeCommune": "15180", - "libelleAcheminement": "ST CLEMENT", - "nomCommune": "ST CLEMENT" + "codePostal": "24100", + "codeCommune": "24145", + "libelleAcheminement": "CREYSSE", + "nomCommune": "CREYSSE" }, { - "codePostal": "17520", - "codeCommune": "17106", - "libelleAcheminement": "CIERZAC", - "nomCommune": "CIERZAC" + "codePostal": "24320", + "codeCommune": "24247", + "libelleAcheminement": "LUSIGNAC", + "nomCommune": "LUSIGNAC" }, { - "codePostal": "56140", - "codeCommune": "56202", - "libelleAcheminement": "ST ABRAHAM", - "nomCommune": "ST ABRAHAM" + "codePostal": "10500", + "codeCommune": "10285", + "libelleAcheminement": "PERTHES LES BRIENNE", + "nomCommune": "PERTHES LES BRIENNE" }, { - "codePostal": "51100", - "codeCommune": "51454", - "libelleAcheminement": "REIMS", - "nomCommune": "REIMS" + "codePostal": "11420", + "codeCommune": "11365", + "libelleAcheminement": "ST SERNIN", + "nomCommune": "ST SERNIN" }, { - "codePostal": "15150", - "codeCommune": "15182", - "libelleAcheminement": "ST ETIENNE CANTALES", - "nomCommune": "ST ETIENNE CANTALES" + "codePostal": "24350", + "codeCommune": "24154", + "libelleAcheminement": "DOUCHAPT", + "nomCommune": "DOUCHAPT" }, { - "codePostal": "17330", - "codeCommune": "17114", - "libelleAcheminement": "COIVERT", - "nomCommune": "COIVERT" + "codePostal": "24200", + "codeCommune": "24252", + "libelleAcheminement": "MARCILLAC ST QUENTIN", + "nomCommune": "MARCILLAC ST QUENTIN" }, { - "codePostal": "56430", - "codeCommune": "56208", - "libelleAcheminement": "ST BRIEUC DE MAURON", - "nomCommune": "ST BRIEUC DE MAURON" + "codePostal": "10110", + "codeCommune": "10295", + "libelleAcheminement": "POLISOT", + "nomCommune": "POLISOT" }, { - "codePostal": "51480", - "codeCommune": "51457", - "libelleAcheminement": "REUIL", - "nomCommune": "REUIL" + "codePostal": "11590", + "codeCommune": "11369", + "libelleAcheminement": "SALLELES D AUDE", + "nomCommune": "SALLELES D AUDE" }, { - "codePostal": "15400", - "codeCommune": "15185", - "libelleAcheminement": "ST ETIENNE DE CHOMEIL", - "nomCommune": "ST ETIENNE DE CHOMEIL" + "codePostal": "24380", + "codeCommune": "24160", + "libelleAcheminement": "EGLISE NEUVE DE VERGT", + "nomCommune": "EGLISE NEUVE DE VERGT" }, { - "codePostal": "17600", - "codeCommune": "17120", - "libelleAcheminement": "CORME ROYAL", - "nomCommune": "CORME ROYAL" + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { - "codePostal": "56480", - "codeCommune": "56209", - "libelleAcheminement": "STE BRIGITTE", - "nomCommune": "STE BRIGITTE" + "codePostal": "10240", + "codeCommune": "10300", + "libelleAcheminement": "POUGY", + "nomCommune": "POUGY" }, { - "codePostal": "51140", - "codeCommune": "51464", - "libelleAcheminement": "ROMAIN", - "nomCommune": "ROMAIN" + "codePostal": "11110", + "codeCommune": "11370", + "libelleAcheminement": "SALLES D AUDE", + "nomCommune": "SALLES D AUDE" }, { - "codePostal": "15230", - "codeCommune": "15198", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "24700", + "codeCommune": "24165", + "libelleAcheminement": "EYGURANDE ET GARDEDEUIL", + "nomCommune": "EYGURANDE ET GARDEDEUIL" }, { - "codePostal": "17670", - "codeCommune": "17121", - "libelleAcheminement": "LA COUARDE SUR MER", - "nomCommune": "LA COUARDE SUR MER" + "codePostal": "24150", + "codeCommune": "24260", + "libelleAcheminement": "MAUZAC ET GRAND CASTANG", + "nomCommune": "MAUZAC ET GRAND CASTANG" }, { - "codePostal": "56920", - "codeCommune": "56215", - "libelleAcheminement": "ST GONNERY", - "nomCommune": "ST GONNERY" + "codePostal": "10170", + "codeCommune": "10305", + "libelleAcheminement": "PREMIERFAIT", + "nomCommune": "PREMIERFAIT" }, { - "codePostal": "51800", - "codeCommune": "51470", - "libelleAcheminement": "ROUVROY RIPONT", - "nomCommune": "ROUVROY RIPONT" + "codePostal": "11410", + "codeCommune": "11371", + "libelleAcheminement": "SALLES SUR L HERS", + "nomCommune": "SALLES SUR L HERS" }, { - "codePostal": "15250", - "codeCommune": "15204", - "libelleAcheminement": "ST PAUL DES LANDES", - "nomCommune": "ST PAUL DES LANDES" + "codePostal": "24260", + "codeCommune": "24172", + "libelleAcheminement": "LES EYZIES", + "nomCommune": "LES EYZIES" }, { - "codePostal": "17220", - "codeCommune": "17136", - "libelleAcheminement": "CROIX CHAPEAU", - "nomCommune": "CROIX CHAPEAU" + "codePostal": "24550", + "codeCommune": "24263", + "libelleAcheminement": "MAZEYROLLES", + "nomCommune": "MAZEYROLLES" }, { - "codePostal": "56220", - "codeCommune": "56218", - "libelleAcheminement": "ST GRAVE", - "nomCommune": "ST GRAVE" + "codePostal": "10200", + "codeCommune": "10306", + "libelleAcheminement": "PROVERVILLE", + "nomCommune": "PROVERVILLE" }, { - "codePostal": "51110", - "codeCommune": "51477", - "libelleAcheminement": "ST ETIENNE SUR SUIPPE", - "nomCommune": "ST ETIENNE SUR SUIPPE" + "codePostal": "11220", + "codeCommune": "11387", + "libelleAcheminement": "TAURIZE", + "nomCommune": "TAURIZE" }, { - "codePostal": "15380", - "codeCommune": "15218", - "libelleAcheminement": "ST VINCENT DE SALERS", - "nomCommune": "ST VINCENT DE SALERS" + "codePostal": "24620", + "codeCommune": "24172", + "libelleAcheminement": "LES EYZIES", + "nomCommune": "LES EYZIES" }, { - "codePostal": "17610", - "codeCommune": "17141", - "libelleAcheminement": "DOMPIERRE SUR CHARENTE", - "nomCommune": "DOMPIERRE SUR CHARENTE" + "codePostal": "24700", + "codeCommune": "24264", + "libelleAcheminement": "MENESPLET", + "nomCommune": "MENESPLET" }, { - "codePostal": "56220", - "codeCommune": "56221", - "libelleAcheminement": "ST JACUT LES PINS", - "nomCommune": "ST JACUT LES PINS" + "codePostal": "10240", + "codeCommune": "10314", + "libelleAcheminement": "RAMERUPT", + "nomCommune": "RAMERUPT" }, { - "codePostal": "51390", - "codeCommune": "51479", - "libelleAcheminement": "ST EUPHRAISE ET CLAIRIZET", - "nomCommune": "ST EUPHRAISE ET CLAIRIZET" + "codePostal": "11380", + "codeCommune": "11391", + "libelleAcheminement": "LA TOURETTE CABARDES", + "nomCommune": "LA TOURETTE CABARDES" }, { - "codePostal": "15120", - "codeCommune": "15222", - "libelleAcheminement": "SANSAC VEINAZES", - "nomCommune": "SANSAC VEINAZES" + "codePostal": "24290", + "codeCommune": "24174", + "libelleAcheminement": "FANLAC", + "nomCommune": "FANLAC" }, { - "codePostal": "17770", - "codeCommune": "17147", - "libelleAcheminement": "ECOYEUX", - "nomCommune": "ECOYEUX" + "codePostal": "24220", + "codeCommune": "24268", + "libelleAcheminement": "MEYRALS", + "nomCommune": "MEYRALS" }, { - "codePostal": "56660", - "codeCommune": "56222", - "libelleAcheminement": "ST JEAN BREVELAY", - "nomCommune": "ST JEAN BREVELAY" + "codePostal": "10170", + "codeCommune": "10316", + "libelleAcheminement": "RHEGES", + "nomCommune": "RHEGES" }, { - "codePostal": "51170", - "codeCommune": "51484", - "libelleAcheminement": "ST GILLES", - "nomCommune": "ST GILLES" + "codePostal": "11220", + "codeCommune": "11392", + "libelleAcheminement": "TOURNISSAN", + "nomCommune": "TOURNISSAN" }, { - "codePostal": "15240", - "codeCommune": "15223", - "libelleAcheminement": "SAUVAT", - "nomCommune": "SAUVAT" + "codePostal": "24130", + "codeCommune": "24182", + "libelleAcheminement": "LE FLEIX", + "nomCommune": "LE FLEIX" }, { - "codePostal": "17120", - "codeCommune": "17160", - "libelleAcheminement": "FLOIRAC", - "nomCommune": "FLOIRAC" + "codePostal": "24440", + "codeCommune": "24281", + "libelleAcheminement": "MONSAC", + "nomCommune": "MONSAC" }, { - "codePostal": "56250", - "codeCommune": "56255", - "libelleAcheminement": "TREFFLEAN", - "nomCommune": "TREFFLEAN" + "codePostal": "10290", + "codeCommune": "10318", + "libelleAcheminement": "RIGNY LA NONNEUSE", + "nomCommune": "RIGNY LA NONNEUSE" }, { - "codePostal": "51120", - "codeCommune": "51495", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "11160", + "codeCommune": "11395", + "libelleAcheminement": "TRASSANEL", + "nomCommune": "TRASSANEL" }, { - "codePostal": "15340", - "codeCommune": "15226", - "libelleAcheminement": "SENEZERGUES", - "nomCommune": "SENEZERGUES" + "codePostal": "24680", + "codeCommune": "24194", + "libelleAcheminement": "GARDONNE", + "nomCommune": "GARDONNE" }, { - "codePostal": "17630", - "codeCommune": "17161", - "libelleAcheminement": "LA FLOTTE", - "nomCommune": "LA FLOTTE" + "codePostal": "24560", + "codeCommune": "24282", + "libelleAcheminement": "MONSAGUEL", + "nomCommune": "MONSAGUEL" }, { - "codePostal": "56000", - "codeCommune": "56260", - "libelleAcheminement": "VANNES", - "nomCommune": "VANNES" + "codePostal": "10440", + "codeCommune": "10321", + "libelleAcheminement": "LA RIVIERE DE CORPS", + "nomCommune": "LA RIVIERE DE CORPS" }, { - "codePostal": "51300", - "codeCommune": "51496", - "libelleAcheminement": "ST LUMIER EN CHAMPAGNE", - "nomCommune": "ST LUMIER EN CHAMPAGNE" + "codePostal": "11160", + "codeCommune": "11396", + "libelleAcheminement": "TRAUSSE", + "nomCommune": "TRAUSSE" }, { - "codePostal": "15250", - "codeCommune": "15233", - "libelleAcheminement": "TEISSIERES DE CORNET", - "nomCommune": "TEISSIERES DE CORNET" + "codePostal": "24380", + "codeCommune": "24208", + "libelleAcheminement": "GRUN BORDAS", + "nomCommune": "GRUN BORDAS" }, { - "codePostal": "17500", - "codeCommune": "17163", - "libelleAcheminement": "FONTAINES D OZILLAC", - "nomCommune": "FONTAINES D OZILLAC" + "codePostal": "24210", + "codeCommune": "24284", + "libelleAcheminement": "MONTAGNAC D AUBEROCHE", + "nomCommune": "MONTAGNAC D AUBEROCHE" }, { - "codePostal": "57412", - "codeCommune": "57006", - "libelleAcheminement": "ACHEN", - "nomCommune": "ACHEN" + "codePostal": "10500", + "codeCommune": "10327", + "libelleAcheminement": "LA ROTHIERE", + "nomCommune": "LA ROTHIERE" }, { - "codePostal": "51340", - "codeCommune": "51497", - "libelleAcheminement": "ST LUMIER LA POPULEUSE", - "nomCommune": "ST LUMIER LA POPULEUSE" + "codePostal": "11510", + "codeCommune": "11398", + "libelleAcheminement": "TREILLES", + "nomCommune": "TREILLES" }, { - "codePostal": "15800", - "codeCommune": "15236", - "libelleAcheminement": "THIEZAC", - "nomCommune": "THIEZAC" + "codePostal": "24140", + "codeCommune": "24213", + "libelleAcheminement": "JAURE", + "nomCommune": "JAURE" }, { - "codePostal": "17450", - "codeCommune": "17168", - "libelleAcheminement": "FOURAS", - "nomCommune": "FOURAS" + "codePostal": "24440", + "codeCommune": "24290", + "libelleAcheminement": "MONTFERRAND DU PERIGORD", + "nomCommune": "MONTFERRAND DU PERIGORD" }, { - "codePostal": "57440", - "codeCommune": "57012", - "libelleAcheminement": "ALGRANGE", - "nomCommune": "ALGRANGE" + "codePostal": "10220", + "codeCommune": "10328", + "libelleAcheminement": "ROUILLY SACEY", + "nomCommune": "ROUILLY SACEY" }, { - "codePostal": "51330", - "codeCommune": "51500", - "libelleAcheminement": "ST MARD SUR LE MONT", - "nomCommune": "ST MARD SUR LE MONT" + "codePostal": "11230", + "codeCommune": "11400", + "libelleAcheminement": "TREZIERS", + "nomCommune": "TREZIERS" }, { - "codePostal": "15400", - "codeCommune": "15246", - "libelleAcheminement": "VALETTE", - "nomCommune": "VALETTE" + "codePostal": "24300", + "codeCommune": "24214", + "libelleAcheminement": "JAVERLHAC LA CHAPELLE ST ROBERT", + "nomCommune": "JAVERLHAC ET LA CHAPELLE ST ROBERT" }, { - "codePostal": "17260", - "codeCommune": "17178", - "libelleAcheminement": "GIVREZAC", - "nomCommune": "GIVREZAC" + "codePostal": "24610", + "codeCommune": "24292", + "libelleAcheminement": "MONTPEYROUX", + "nomCommune": "MONTPEYROUX" }, { - "codePostal": "57660", - "codeCommune": "57014", - "libelleAcheminement": "ALTRIPPE", - "nomCommune": "ALTRIPPE" + "codePostal": "10350", + "codeCommune": "10339", + "libelleAcheminement": "ST FLAVY", + "nomCommune": "ST FLAVY" }, { - "codePostal": "51490", - "codeCommune": "51505", - "libelleAcheminement": "ST MASMES", - "nomCommune": "ST MASMES" + "codePostal": "11400", + "codeCommune": "11407", + "libelleAcheminement": "VERDUN EN LAURAGAIS", + "nomCommune": "VERDUN EN LAURAGAIS" }, { - "codePostal": "15160", - "codeCommune": "15253", - "libelleAcheminement": "VERNOLS", - "nomCommune": "VERNOLS" + "codePostal": "24410", + "codeCommune": "24216", + "libelleAcheminement": "LA JEMAYE PONTEYRAUD", + "nomCommune": "LA JEMAYE PONTEYRAUD" }, { - "codePostal": "17490", - "codeCommune": "17180", - "libelleAcheminement": "GOURVILLETTE", - "nomCommune": "GOURVILLETTE" + "codePostal": "24700", + "codeCommune": "24297", + "libelleAcheminement": "MOULIN NEUF", + "nomCommune": "MOULIN NEUF" }, { - "codePostal": "57730", - "codeCommune": "57015", - "libelleAcheminement": "ALTVILLER", - "nomCommune": "ALTVILLER" + "codePostal": "10120", + "codeCommune": "10340", + "libelleAcheminement": "ST GERMAIN", + "nomCommune": "ST GERMAIN" }, { - "codePostal": "51800", - "codeCommune": "51519", - "libelleAcheminement": "ST THOMAS EN ARGONNE", - "nomCommune": "ST THOMAS EN ARGONNE" + "codePostal": "11800", + "codeCommune": "11422", + "libelleAcheminement": "VILLEDUBERT", + "nomCommune": "VILLEDUBERT" }, { - "codePostal": "15130", - "codeCommune": "15257", - "libelleAcheminement": "VEZELS ROUSSY", - "nomCommune": "VEZELS ROUSSY" + "codePostal": "24410", + "codeCommune": "24216", + "libelleAcheminement": "LA JEMAYE PONTEYRAUD", + "nomCommune": "LA JEMAYE PONTEYRAUD" }, { - "codePostal": "17350", - "codeCommune": "17181", - "libelleAcheminement": "GRANDJEAN", - "nomCommune": "GRANDJEAN" + "codePostal": "24590", + "codeCommune": "24301", + "libelleAcheminement": "NADAILLAC", + "nomCommune": "NADAILLAC" }, { - "codePostal": "57580", - "codeCommune": "57020", - "libelleAcheminement": "ANCERVILLE", - "nomCommune": "ANCERVILLE" + "codePostal": "10120", + "codeCommune": "10340", + "libelleAcheminement": "ST GERMAIN", + "nomCommune": "ST GERMAIN" }, { - "codePostal": "51170", - "codeCommune": "51527", - "libelleAcheminement": "SAVIGNY SUR ARDRES", - "nomCommune": "SAVIGNY SUR ARDRES" + "codePostal": "11600", + "codeCommune": "11426", + "libelleAcheminement": "VILLEGLY", + "nomCommune": "VILLEGLY" }, { - "codePostal": "15140", - "codeCommune": "15269", - "libelleAcheminement": "BESSE", - "nomCommune": "BESSE" + "codePostal": "24680", + "codeCommune": "24225", + "libelleAcheminement": "LAMONZIE ST MARTIN", + "nomCommune": "LAMONZIE ST MARTIN" }, { - "codePostal": "17540", - "codeCommune": "17186", - "libelleAcheminement": "LE GUE D ALLERE", - "nomCommune": "LE GUE D ALLERE" + "codePostal": "24320", + "codeCommune": "24303", + "libelleAcheminement": "NANTEUIL AURIAC DE BOURZAC", + "nomCommune": "NANTEUIL AURIAC DE BOURZAC" }, { - "codePostal": "57130", - "codeCommune": "57021", - "libelleAcheminement": "ANCY DORNOT", - "nomCommune": "ANCY DORNOT" + "codePostal": "10800", + "codeCommune": "10344", + "libelleAcheminement": "ST LEGER PRES TROYES", + "nomCommune": "ST LEGER PRES TROYES" }, { - "codePostal": "51250", - "codeCommune": "51531", - "libelleAcheminement": "SERMAIZE LES BAINS", - "nomCommune": "SERMAIZE LES BAINS" + "codePostal": "11400", + "codeCommune": "11430", + "libelleAcheminement": "VILLENEUVE LA COMPTAL", + "nomCommune": "VILLENEUVE LA COMPTAL" }, { - "codePostal": "16110", - "codeCommune": "16003", - "libelleAcheminement": "AGRIS", - "nomCommune": "AGRIS" + "codePostal": "24150", + "codeCommune": "24228", + "libelleAcheminement": "LANQUAIS", + "nomCommune": "LANQUAIS" }, { - "codePostal": "17160", - "codeCommune": "17188", - "libelleAcheminement": "HAIMPS", - "nomCommune": "HAIMPS" + "codePostal": "24800", + "codeCommune": "24305", + "libelleAcheminement": "NANTHIAT", + "nomCommune": "NANTHIAT" }, { - "codePostal": "57440", - "codeCommune": "57022", - "libelleAcheminement": "ANGEVILLERS", - "nomCommune": "ANGEVILLERS" + "codePostal": "10180", + "codeCommune": "10349", + "libelleAcheminement": "ST LYE", + "nomCommune": "ST LYE" }, { - "codePostal": "51500", - "codeCommune": "51532", - "libelleAcheminement": "SERMIERS", - "nomCommune": "SERMIERS" + "codePostal": "11290", + "codeCommune": "11432", + "libelleAcheminement": "VILLENEUVE LES MONTREAL", + "nomCommune": "VILLENEUVE LES MONTREAL" }, { - "codePostal": "16140", - "codeCommune": "16008", - "libelleAcheminement": "AMBERAC", - "nomCommune": "AMBERAC" + "codePostal": "24210", + "codeCommune": "24241", + "libelleAcheminement": "LIMEYRAT", + "nomCommune": "LIMEYRAT" }, { - "codePostal": "17460", - "codeCommune": "17191", - "libelleAcheminement": "LA JARD", - "nomCommune": "LA JARD" + "codePostal": "24230", + "codeCommune": "24306", + "libelleAcheminement": "NASTRINGUES", + "nomCommune": "NASTRINGUES" }, { - "codePostal": "57380", - "codeCommune": "57027", - "libelleAcheminement": "ARRAINCOURT", - "nomCommune": "ARRAINCOURT" + "codePostal": "10160", + "codeCommune": "10350", + "libelleAcheminement": "ST MARDS EN OTHE", + "nomCommune": "ST MARDS EN OTHE" }, { - "codePostal": "51120", - "codeCommune": "51542", - "libelleAcheminement": "SOIZY AUX BOIS", - "nomCommune": "SOIZY AUX BOIS" + "codePostal": "11330", + "codeCommune": "11435", + "libelleAcheminement": "VILLEROUGE TERMENES", + "nomCommune": "VILLEROUGE TERMENES" }, { - "codePostal": "16120", - "codeCommune": "16013", - "libelleAcheminement": "ANGEAC CHARENTE", - "nomCommune": "ANGEAC CHARENTE" + "codePostal": "24220", + "codeCommune": "24254", + "libelleAcheminement": "MARNAC", + "nomCommune": "MARNAC" }, { - "codePostal": "17220", - "codeCommune": "17194", - "libelleAcheminement": "LA JARRIE", - "nomCommune": "LA JARRIE" + "codePostal": "24660", + "codeCommune": "24312", + "libelleAcheminement": "SANILHAC", + "nomCommune": "SANILHAC" }, { - "codePostal": "57405", - "codeCommune": "57033", - "libelleAcheminement": "ARZVILLER", - "nomCommune": "ARZVILLER" + "codePostal": "10100", + "codeCommune": "10351", + "libelleAcheminement": "ST MARTIN DE BOSSENAY", + "nomCommune": "ST MARTIN DE BOSSENAY" }, { - "codePostal": "51270", - "codeCommune": "51560", - "libelleAcheminement": "SUIZY LE FRANC", - "nomCommune": "SUIZY LE FRANC" + "codePostal": "12520", + "codeCommune": "12002", + "libelleAcheminement": "AGUESSAC", + "nomCommune": "AGUESSAC" }, { - "codePostal": "16000", - "codeCommune": "16015", - "libelleAcheminement": "ANGOULEME", - "nomCommune": "ANGOULEME" + "codePostal": "24620", + "codeCommune": "24255", + "libelleAcheminement": "MARQUAY", + "nomCommune": "MARQUAY" }, { - "codePostal": "17870", - "codeCommune": "17205", - "libelleAcheminement": "LOIRE LES MARAIS", - "nomCommune": "LOIRE LES MARAIS" + "codePostal": "24370", + "codeCommune": "24325", + "libelleAcheminement": "PECHS DE L ESPERANCE", + "nomCommune": "PECHS DE L ESPERANCE" }, { - "codePostal": "57260", - "codeCommune": "57035", - "libelleAcheminement": "ASSENONCOURT", - "nomCommune": "ASSENONCOURT" + "codePostal": "10150", + "codeCommune": "10352", + "libelleAcheminement": "STE MAURE", + "nomCommune": "STE MAURE" }, { - "codePostal": "51500", - "codeCommune": "51562", - "libelleAcheminement": "TAISSY", - "nomCommune": "TAISSY" + "codePostal": "12220", + "codeCommune": "12003", + "libelleAcheminement": "LES ALBRES", + "nomCommune": "LES ALBRES" }, { - "codePostal": "16500", - "codeCommune": "16016", - "libelleAcheminement": "ANSAC SUR VIENNE", - "nomCommune": "ANSAC SUR VIENNE" + "codePostal": "24150", + "codeCommune": "24260", + "libelleAcheminement": "MAUZAC ET GRAND CASTANG", + "nomCommune": "MAUZAC ET GRAND CASTANG" }, { - "codePostal": "17111", - "codeCommune": "17207", - "libelleAcheminement": "LOIX", - "nomCommune": "LOIX" + "codePostal": "24510", + "codeCommune": "24327", + "libelleAcheminement": "PEZULS", + "nomCommune": "PEZULS" }, { - "codePostal": "57230", - "codeCommune": "57046", - "libelleAcheminement": "BAERENTHAL", - "nomCommune": "BAERENTHAL" + "codePostal": "10170", + "codeCommune": "10356", + "libelleAcheminement": "ST OULPH", + "nomCommune": "ST OULPH" }, { - "codePostal": "51150", - "codeCommune": "51564", - "libelleAcheminement": "VAL DE LIVRE", - "nomCommune": "VAL DE LIVRE" + "codePostal": "12110", + "codeCommune": "12013", + "libelleAcheminement": "AUBIN", + "nomCommune": "AUBIN" }, { - "codePostal": "16390", - "codeCommune": "16020", - "libelleAcheminement": "AUBETERRE SUR DRONNE", - "nomCommune": "AUBETERRE SUR DRONNE" + "codePostal": "24450", + "codeCommune": "24269", + "libelleAcheminement": "MIALET", + "nomCommune": "MIALET" }, { - "codePostal": "17430", - "codeCommune": "17216", - "libelleAcheminement": "LUSSANT", - "nomCommune": "LUSSANT" + "codePostal": "24150", + "codeCommune": "24334", + "libelleAcheminement": "PONTOURS", + "nomCommune": "PONTOURS" }, { - "codePostal": "57220", - "codeCommune": "57048", - "libelleAcheminement": "BANNAY", - "nomCommune": "BANNAY" + "codePostal": "10700", + "codeCommune": "10361", + "libelleAcheminement": "ST REMY SOUS BARBUISE", + "nomCommune": "ST REMY SOUS BARBUISE" }, { - "codePostal": "51230", - "codeCommune": "51565", - "libelleAcheminement": "THAAS", - "nomCommune": "THAAS" + "codePostal": "12550", + "codeCommune": "12023", + "libelleAcheminement": "LA BASTIDE SOLAGES", + "nomCommune": "LA BASTIDE SOLAGES" }, { - "codePostal": "16460", - "codeCommune": "16023", - "libelleAcheminement": "AUNAC SUR CHARENTE", - "nomCommune": "AUNAC SUR CHARENTE" + "codePostal": "24470", + "codeCommune": "24271", + "libelleAcheminement": "MILHAC DE NONTRON", + "nomCommune": "MILHAC DE NONTRON" }, { - "codePostal": "17490", - "codeCommune": "17217", - "libelleAcheminement": "MACQUEVILLE", - "nomCommune": "MACQUEVILLE" + "codePostal": "24370", + "codeCommune": "24336", + "libelleAcheminement": "PRATS DE CARLUX", + "nomCommune": "PRATS DE CARLUX" }, { - "codePostal": "57340", - "codeCommune": "57051", - "libelleAcheminement": "BARONVILLE", - "nomCommune": "BARONVILLE" + "codePostal": "10700", + "codeCommune": "10365", + "libelleAcheminement": "SALON", + "nomCommune": "SALON" }, { - "codePostal": "51300", - "codeCommune": "51567", - "libelleAcheminement": "THIEBLEMONT FAREMONT", - "nomCommune": "THIEBLEMONT FAREMONT" + "codePostal": "12350", + "codeCommune": "12034", + "libelleAcheminement": "BRANDONNET", + "nomCommune": "BRANDONNET" }, { - "codePostal": "16360", - "codeCommune": "16025", - "libelleAcheminement": "BAIGNES STE RADEGONDE", - "nomCommune": "BAIGNES STE RADEGONDE" + "codePostal": "24240", + "codeCommune": "24276", + "libelleAcheminement": "MONESTIER", + "nomCommune": "MONESTIER" }, { - "codePostal": "17800", - "codeCommune": "17220", - "libelleAcheminement": "MARIGNAC", - "nomCommune": "MARIGNAC" + "codePostal": "24200", + "codeCommune": "24341", + "libelleAcheminement": "PROISSANS", + "nomCommune": "PROISSANS" }, { - "codePostal": "57450", - "codeCommune": "57052", - "libelleAcheminement": "BARST", - "nomCommune": "BARST" + "codePostal": "10700", + "codeCommune": "10369", + "libelleAcheminement": "SEMOINE", + "nomCommune": "SEMOINE" }, { - "codePostal": "51370", - "codeCommune": "51569", - "libelleAcheminement": "THILLOIS", - "nomCommune": "THILLOIS" + "codePostal": "12480", + "codeCommune": "12038", + "libelleAcheminement": "BROUSSE LE CHATEAU", + "nomCommune": "BROUSSE LE CHATEAU" }, { - "codePostal": "16300", - "codeCommune": "16028", - "libelleAcheminement": "BARBEZIEUX ST HILAIRE", - "nomCommune": "BARBEZIEUX ST HILAIRE" + "codePostal": "24520", + "codeCommune": "24296", + "libelleAcheminement": "MOULEYDIER", + "nomCommune": "MOULEYDIER" }, { - "codePostal": "17130", - "codeCommune": "17231", - "libelleAcheminement": "MESSAC", - "nomCommune": "MESSAC" + "codePostal": "24240", + "codeCommune": "24351", + "libelleAcheminement": "RIBAGNAC", + "nomCommune": "RIBAGNAC" }, { - "codePostal": "57260", - "codeCommune": "57053", - "libelleAcheminement": "BASSING", - "nomCommune": "BASSING" + "codePostal": "10140", + "codeCommune": "10376", + "libelleAcheminement": "THIEFFRAIN", + "nomCommune": "THIEFFRAIN" }, { - "codePostal": "51360", - "codeCommune": "51571", - "libelleAcheminement": "VAL DE VESLE", - "nomCommune": "VAL DE VESLE" + "codePostal": "12400", + "codeCommune": "12042", + "libelleAcheminement": "CALMELS ET LE VIALA", + "nomCommune": "CALMELS ET LE VIALA" }, { - "codePostal": "16700", - "codeCommune": "16031", - "libelleAcheminement": "BARRO", - "nomCommune": "BARRO" + "codePostal": "24390", + "codeCommune": "24302", + "libelleAcheminement": "NAILHAC", + "nomCommune": "NAILHAC" }, { - "codePostal": "17160", - "codeCommune": "17239", - "libelleAcheminement": "MONS", - "nomCommune": "MONS" + "codePostal": "24340", + "codeCommune": "24353", + "libelleAcheminement": "LA ROCHEBEAUCOURT ET ARGENTINE", + "nomCommune": "LA ROCHEBEAUCOURT ET ARGENTINE" }, { - "codePostal": "57530", - "codeCommune": "57055", - "libelleAcheminement": "BAZONCOURT", - "nomCommune": "BAZONCOURT" + "codePostal": "10700", + "codeCommune": "10386", + "libelleAcheminement": "TROUANS", + "nomCommune": "TROUANS" }, { - "codePostal": "51380", - "codeCommune": "51580", - "libelleAcheminement": "TREPAIL", - "nomCommune": "TREPAIL" + "codePostal": "12160", + "codeCommune": "12045", + "libelleAcheminement": "CAMBOULAZET", + "nomCommune": "CAMBOULAZET" }, { - "codePostal": "16700", - "codeCommune": "16039", - "libelleAcheminement": "BERNAC", - "nomCommune": "BERNAC" + "codePostal": "24800", + "codeCommune": "24304", + "libelleAcheminement": "NANTHEUIL", + "nomCommune": "NANTHEUIL" }, { - "codePostal": "17130", - "codeCommune": "17240", - "libelleAcheminement": "MONTENDRE", - "nomCommune": "MONTENDRE" + "codePostal": "24490", + "codeCommune": "24354", + "libelleAcheminement": "LA ROCHE CHALAIS", + "nomCommune": "LA ROCHE CHALAIS" }, { - "codePostal": "57220", - "codeCommune": "57087", - "libelleAcheminement": "BISTEN EN LORRAINE", - "nomCommune": "BISTEN EN LORRAINE" + "codePostal": "10000", + "codeCommune": "10387", + "libelleAcheminement": "TROYES", + "nomCommune": "TROYES" }, { - "codePostal": "51340", - "codeCommune": "51583", - "libelleAcheminement": "TROIS FONTAINES L ABBAYE", - "nomCommune": "TROIS FONTAINES L ABBAYE" + "codePostal": "12140", + "codeCommune": "12048", + "libelleAcheminement": "CAMPOURIEZ", + "nomCommune": "CAMPOURIEZ" }, { - "codePostal": "16250", - "codeCommune": "16046", - "libelleAcheminement": "COTEAUX DU BLANZACAIS", - "nomCommune": "COTEAUX DU BLANZACAIS" + "codePostal": "24300", + "codeCommune": "24311", + "libelleAcheminement": "NONTRON", + "nomCommune": "NONTRON" }, { - "codePostal": "17240", - "codeCommune": "17250", - "libelleAcheminement": "MOSNAC", - "nomCommune": "MOSNAC" + "codePostal": "24580", + "codeCommune": "24356", + "libelleAcheminement": "ROUFFIGNAC ST CERNIN DE REILHAC", + "nomCommune": "ROUFFIGNAC ST CERNIN DE REILHAC" }, { - "codePostal": "57200", - "codeCommune": "57091", - "libelleAcheminement": "BLIESBRUCK", - "nomCommune": "BLIESBRUCK" + "codePostal": "10210", + "codeCommune": "10394", + "libelleAcheminement": "VALLIERES", + "nomCommune": "VALLIERES" }, { - "codePostal": "51170", - "codeCommune": "51586", - "libelleAcheminement": "UNCHAIR", - "nomCommune": "UNCHAIR" + "codePostal": "12230", + "codeCommune": "12063", + "libelleAcheminement": "LA CAVALERIE", + "nomCommune": "LA CAVALERIE" }, { - "codePostal": "16480", - "codeCommune": "16048", - "libelleAcheminement": "BOISBRETEAU", - "nomCommune": "BOISBRETEAU" + "codePostal": "24270", + "codeCommune": "24320", + "libelleAcheminement": "PAYZAC", + "nomCommune": "PAYZAC" }, { - "codePostal": "17430", - "codeCommune": "17253", - "libelleAcheminement": "MURON", - "nomCommune": "MURON" + "codePostal": "24510", + "codeCommune": "24362", + "libelleAcheminement": "VAL DE LOUYRE ET CAUDEAU", + "nomCommune": "VAL DE LOUYRE ET CAUDEAU" }, { - "codePostal": "57655", - "codeCommune": "57096", - "libelleAcheminement": "BOULANGE", - "nomCommune": "BOULANGE" + "codePostal": "10200", + "codeCommune": "10403", + "libelleAcheminement": "VERNONVILLIERS", + "nomCommune": "VERNONVILLIERS" }, { - "codePostal": "51400", - "codeCommune": "51587", - "libelleAcheminement": "VADENAY", - "nomCommune": "VADENAY" + "codePostal": "12320", + "codeCommune": "12076", + "libelleAcheminement": "CONQUES EN ROUERGUE", + "nomCommune": "CONQUES EN ROUERGUE" }, { - "codePostal": "16120", - "codeCommune": "16050", - "libelleAcheminement": "BONNEUIL", - "nomCommune": "BONNEUIL" + "codePostal": "24620", + "codeCommune": "24326", + "libelleAcheminement": "PEYZAC LE MOUSTIER", + "nomCommune": "PEYZAC LE MOUSTIER" }, { - "codePostal": "17150", - "codeCommune": "17263", - "libelleAcheminement": "NIEUL LE VIROUIL", - "nomCommune": "NIEUL LE VIROUIL" + "codePostal": "24290", + "codeCommune": "24364", + "libelleAcheminement": "COLY ST AMAND", + "nomCommune": "COLY ST AMAND" }, { - "codePostal": "57370", - "codeCommune": "57100", - "libelleAcheminement": "BOURSCHEID", - "nomCommune": "BOURSCHEID" + "codePostal": "10130", + "codeCommune": "10422", + "libelleAcheminement": "VILLENEUVE AU CHEMIN", + "nomCommune": "VILLENEUVE AU CHEMIN" }, { - "codePostal": "51330", - "codeCommune": "51589", - "libelleAcheminement": "VANAULT LE CHATEL", - "nomCommune": "VANAULT LE CHATEL" + "codePostal": "12300", + "codeCommune": "12089", + "libelleAcheminement": "DECAZEVILLE", + "nomCommune": "DECAZEVILLE" }, { - "codePostal": "16410", - "codeCommune": "16055", - "libelleAcheminement": "BOUEX", - "nomCommune": "BOUEX" + "codePostal": "24240", + "codeCommune": "24331", + "libelleAcheminement": "POMPORT", + "nomCommune": "POMPORT" }, { - "codePostal": "17600", - "codeCommune": "17265", - "libelleAcheminement": "NIEULLE SUR SEUDRE", - "nomCommune": "NIEULLE SUR SEUDRE" + "codePostal": "24230", + "codeCommune": "24370", + "libelleAcheminement": "ST ANTOINE DE BREUILH", + "nomCommune": "ST ANTOINE DE BREUILH" }, { - "codePostal": "57320", - "codeCommune": "57106", - "libelleAcheminement": "BOUZONVILLE", - "nomCommune": "BOUZONVILLE" + "codePostal": "10310", + "codeCommune": "10426", + "libelleAcheminement": "VILLE SOUS LA FERTE", + "nomCommune": "VILLE SOUS LA FERTE" }, { - "codePostal": "51340", - "codeCommune": "51590", - "libelleAcheminement": "VANAULT LES DAMES", - "nomCommune": "VANAULT LES DAMES" + "codePostal": "12000", + "codeCommune": "12090", + "libelleAcheminement": "DRUELLE BALSAC", + "nomCommune": "DRUELLE BALSAC" }, { - "codePostal": "16240", - "codeCommune": "16059", - "libelleAcheminement": "BRETTES", - "nomCommune": "BRETTES" + "codePostal": "24200", + "codeCommune": "24366", + "libelleAcheminement": "ST ANDRE D ALLAS", + "nomCommune": "ST ANDRE D ALLAS" }, { - "codePostal": "17470", - "codeCommune": "17268", - "libelleAcheminement": "NUAILLE SUR BOUTONNE", - "nomCommune": "NUAILLE SUR BOUTONNE" + "codePostal": "24500", + "codeCommune": "24373", + "libelleAcheminement": "ST AUBIN DE CADELECH", + "nomCommune": "ST AUBIN DE CADELECH" }, { - "codePostal": "57420", - "codeCommune": "57116", - "libelleAcheminement": "BUCHY", - "nomCommune": "BUCHY" + "codePostal": "10200", + "codeCommune": "10428", + "libelleAcheminement": "VILLE SUR TERRE", + "nomCommune": "VILLE SUR TERRE" }, { - "codePostal": "51300", - "codeCommune": "51598", - "libelleAcheminement": "VAUCLERC", - "nomCommune": "VAUCLERC" + "codePostal": "12390", + "codeCommune": "12095", + "libelleAcheminement": "ESCANDOLIERES", + "nomCommune": "ESCANDOLIERES" }, { - "codePostal": "16420", - "codeCommune": "16064", - "libelleAcheminement": "BRIGUEUIL", - "nomCommune": "BRIGUEUIL" + "codePostal": "24440", + "codeCommune": "24379", + "libelleAcheminement": "ST AVIT SENIEUR", + "nomCommune": "ST AVIT SENIEUR" }, { - "codePostal": "17180", - "codeCommune": "17274", - "libelleAcheminement": "PERIGNY", - "nomCommune": "PERIGNY" + "codePostal": "24410", + "codeCommune": "24376", + "libelleAcheminement": "ST AULAYE PUYMANGOU", + "nomCommune": "ST AULAYE PUYMANGOU" }, { - "codePostal": "57170", - "codeCommune": "57132", - "libelleAcheminement": "CHATEAU SALINS", - "nomCommune": "CHATEAU SALINS" + "codePostal": "10110", + "codeCommune": "10438", + "libelleAcheminement": "VITRY LE CROISE", + "nomCommune": "VITRY LE CROISE" }, { - "codePostal": "51140", - "codeCommune": "51604", - "libelleAcheminement": "VENTELAY", - "nomCommune": "VENTELAY" + "codePostal": "12140", + "codeCommune": "12097", + "libelleAcheminement": "ESPEYRAC", + "nomCommune": "ESPEYRAC" }, { - "codePostal": "16300", - "codeCommune": "16074", - "libelleAcheminement": "CHALLIGNAC", - "nomCommune": "CHALLIGNAC" + "codePostal": "24150", + "codeCommune": "24382", + "libelleAcheminement": "ST CAPRAISE DE LALINDE", + "nomCommune": "ST CAPRAISE DE LALINDE" }, { - "codePostal": "17250", - "codeCommune": "17280", - "libelleAcheminement": "PLASSAY", - "nomCommune": "PLASSAY" + "codePostal": "24500", + "codeCommune": "24383", + "libelleAcheminement": "ST CAPRAISE D EYMET", + "nomCommune": "ST CAPRAISE D EYMET" }, { - "codePostal": "57170", - "codeCommune": "57133", - "libelleAcheminement": "CHATEAU VOUE", - "nomCommune": "CHATEAU VOUE" + "codePostal": "10110", + "codeCommune": "10439", + "libelleAcheminement": "VIVIERS SUR ARTAUT", + "nomCommune": "VIVIERS SUR ARTAUT" }, { - "codePostal": "51210", - "codeCommune": "51607", - "libelleAcheminement": "VERDON", - "nomCommune": "VERDON" + "codePostal": "12360", + "codeCommune": "12099", + "libelleAcheminement": "FAYET", + "nomCommune": "FAYET" }, { - "codePostal": "16360", - "codeCommune": "16079", - "libelleAcheminement": "CHANTILLAC", - "nomCommune": "CHANTILLAC" + "codePostal": "24590", + "codeCommune": "24392", + "libelleAcheminement": "ST CREPIN ET CARLUCET", + "nomCommune": "ST CREPIN ET CARLUCET" }, { - "codePostal": "17210", - "codeCommune": "17281", - "libelleAcheminement": "POLIGNAC", - "nomCommune": "POLIGNAC" + "codePostal": "24640", + "codeCommune": "24401", + "libelleAcheminement": "STE EULALIE D ANS", + "nomCommune": "STE EULALIE D ANS" }, { - "codePostal": "57070", - "codeCommune": "57142", - "libelleAcheminement": "CHIEULLES", - "nomCommune": "CHIEULLES" + "codePostal": "10150", + "codeCommune": "10442", + "libelleAcheminement": "VOUE", + "nomCommune": "VOUE" }, { - "codePostal": "51130", - "codeCommune": "51612", - "libelleAcheminement": "BLANCS COTEAUX", - "nomCommune": "BLANCS COTEAUX" + "codePostal": "12360", + "codeCommune": "12109", + "libelleAcheminement": "GISSAC", + "nomCommune": "GISSAC" }, { - "codePostal": "16320", - "codeCommune": "16082", - "libelleAcheminement": "BOISNE LA TUDE", - "nomCommune": "BOISNE LA TUDE" + "codePostal": "24440", + "codeCommune": "24393", + "libelleAcheminement": "STE CROIX", + "nomCommune": "STE CROIX" }, { - "codePostal": "17130", - "codeCommune": "17282", - "libelleAcheminement": "POMMIERS MOULONS", - "nomCommune": "POMMIERS MOULONS" + "codePostal": "24400", + "codeCommune": "24409", + "libelleAcheminement": "ST FRONT DE PRADOUX", + "nomCommune": "ST FRONT DE PRADOUX" }, { - "codePostal": "57185", - "codeCommune": "57143", - "libelleAcheminement": "CLOUANGE", - "nomCommune": "CLOUANGE" + "codePostal": "10160", + "codeCommune": "10444", + "libelleAcheminement": "VULAINES", + "nomCommune": "VULAINES" }, { - "codePostal": "51210", - "codeCommune": "51618", - "libelleAcheminement": "LE VEZIER", - "nomCommune": "LE VEZIER" + "codePostal": "12300", + "codeCommune": "12130", + "libelleAcheminement": "LIVINHAC LE HAUT", + "nomCommune": "LIVINHAC LE HAUT" }, { - "codePostal": "16320", - "codeCommune": "16082", - "libelleAcheminement": "BOISNE LA TUDE", - "nomCommune": "BOISNE LA TUDE" + "codePostal": "24170", + "codeCommune": "24406", + "libelleAcheminement": "STE FOY DE BELVES", + "nomCommune": "STE FOY DE BELVES" }, { - "codePostal": "17250", - "codeCommune": "17284", - "libelleAcheminement": "PONT L ABBE D ARNOULT", - "nomCommune": "PONT L ABBE D ARNOULT" + "codePostal": "24590", + "codeCommune": "24412", + "libelleAcheminement": "ST GENIES", + "nomCommune": "ST GENIES" }, { - "codePostal": "57530", - "codeCommune": "57145", - "libelleAcheminement": "COINCY", - "nomCommune": "COINCY" + "codePostal": "11300", + "codeCommune": "11003", + "libelleAcheminement": "AJAC", + "nomCommune": "AJAC" }, { - "codePostal": "51130", - "codeCommune": "51627", - "libelleAcheminement": "VILLENEUVE RENNEVILLE CHEVIGNY", - "nomCommune": "VILLENEUVE RENNEVILLE CHEVIGNY" + "codePostal": "12330", + "codeCommune": "12138", + "libelleAcheminement": "MARCILLAC VALLON", + "nomCommune": "MARCILLAC VALLON" }, { - "codePostal": "16260", - "codeCommune": "16085", - "libelleAcheminement": "CHASSENEUIL SUR BONNIEURE", - "nomCommune": "CHASSENEUIL SUR BONNIEURE" + "codePostal": "24510", + "codeCommune": "24407", + "libelleAcheminement": "STE FOY DE LONGAS", + "nomCommune": "STE FOY DE LONGAS" }, { - "codePostal": "17880", - "codeCommune": "17286", - "libelleAcheminement": "LES PORTES EN RE", - "nomCommune": "LES PORTES EN RE" + "codePostal": "24700", + "codeCommune": "24415", + "libelleAcheminement": "ST GERAUD DE CORPS", + "nomCommune": "ST GERAUD DE CORPS" }, { - "codePostal": "57150", - "codeCommune": "57160", - "libelleAcheminement": "CREUTZWALD", - "nomCommune": "CREUTZWALD" + "codePostal": "11290", + "codeCommune": "11005", + "libelleAcheminement": "ALAIRAC", + "nomCommune": "ALAIRAC" }, { - "codePostal": "51800", - "codeCommune": "51632", - "libelleAcheminement": "VILLERS EN ARGONNE", - "nomCommune": "VILLERS EN ARGONNE" + "codePostal": "12390", + "codeCommune": "12142", + "libelleAcheminement": "MAYRAN", + "nomCommune": "MAYRAN" }, { - "codePostal": "16200", - "codeCommune": "16088", - "libelleAcheminement": "CHASSORS", - "nomCommune": "CHASSORS" + "codePostal": "24300", + "codeCommune": "24410", + "libelleAcheminement": "ST FRONT LA RIVIERE", + "nomCommune": "ST FRONT LA RIVIERE" }, { - "codePostal": "17700", - "codeCommune": "17293", - "libelleAcheminement": "PUYRAVAULT", - "nomCommune": "PUYRAVAULT" + "codePostal": "24190", + "codeCommune": "24424", + "libelleAcheminement": "ST JEAN D ATAUX", + "nomCommune": "ST JEAN D ATAUX" }, { - "codePostal": "57850", - "codeCommune": "57163", - "libelleAcheminement": "DABO", - "nomCommune": "DABO" + "codePostal": "11190", + "codeCommune": "11010", + "libelleAcheminement": "ANTUGNAC", + "nomCommune": "ANTUGNAC" }, { - "codePostal": "51130", - "codeCommune": "51638", - "libelleAcheminement": "VILLESENEUX", - "nomCommune": "VILLESENEUX" + "codePostal": "12200", + "codeCommune": "12150", + "libelleAcheminement": "MONTEILS", + "nomCommune": "MONTEILS" }, { - "codePostal": "16100", - "codeCommune": "16089", - "libelleAcheminement": "CHATEAUBERNARD", - "nomCommune": "CHATEAUBERNARD" + "codePostal": "24140", + "codeCommune": "24414", + "libelleAcheminement": "ST GEORGES DE MONTCLARD", + "nomCommune": "ST GEORGES DE MONTCLARD" }, { - "codePostal": "17510", - "codeCommune": "17301", - "libelleAcheminement": "ROMAZIERES", - "nomCommune": "ROMAZIERES" + "codePostal": "24800", + "codeCommune": "24425", + "libelleAcheminement": "ST JEAN DE COLE", + "nomCommune": "ST JEAN DE COLE" }, { - "codePostal": "57850", - "codeCommune": "57163", - "libelleAcheminement": "DABO", - "nomCommune": "DABO" + "codePostal": "11290", + "codeCommune": "11018", + "libelleAcheminement": "ARZENS", + "nomCommune": "ARZENS" }, { - "codePostal": "52130", - "codeCommune": "52006", - "libelleAcheminement": "ALLICHAMPS", - "nomCommune": "ALLICHAMPS" + "codePostal": "12460", + "codeCommune": "12151", + "libelleAcheminement": "MONTEZIC", + "nomCommune": "MONTEZIC" }, { - "codePostal": "16370", - "codeCommune": "16097", - "libelleAcheminement": "CHERVES RICHEMONT", - "nomCommune": "CHERVES RICHEMONT" + "codePostal": "24160", + "codeCommune": "24417", + "libelleAcheminement": "ST GERMAIN DES PRES", + "nomCommune": "ST GERMAIN DES PRES" }, { - "codePostal": "17130", - "codeCommune": "17305", - "libelleAcheminement": "ROUFFIGNAC", - "nomCommune": "ROUFFIGNAC" + "codePostal": "24800", + "codeCommune": "24428", + "libelleAcheminement": "ST JORY DE CHALAIS", + "nomCommune": "ST JORY DE CHALAIS" }, { - "codePostal": "57340", - "codeCommune": "57166", - "libelleAcheminement": "DALHAIN", - "nomCommune": "DALHAIN" + "codePostal": "11330", + "codeCommune": "11020", + "libelleAcheminement": "AURIAC", + "nomCommune": "AURIAC" }, { - "codePostal": "52700", - "codeCommune": "52008", - "libelleAcheminement": "ANDELOT BLANCHEVILLE", - "nomCommune": "ANDELOT BLANCHEVILLE" + "codePostal": "12380", + "codeCommune": "12152", + "libelleAcheminement": "MONTFRANC", + "nomCommune": "MONTFRANC" }, { - "codePostal": "16440", - "codeCommune": "16101", - "libelleAcheminement": "CLAIX", - "nomCommune": "CLAIX" + "codePostal": "24170", + "codeCommune": "24438", + "libelleAcheminement": "ST LAURENT LA VALLEE", + "nomCommune": "ST LAURENT LA VALLEE" }, { - "codePostal": "17620", - "codeCommune": "17308", - "libelleAcheminement": "ST AGNANT", - "nomCommune": "ST AGNANT" + "codePostal": "24370", + "codeCommune": "24432", + "libelleAcheminement": "ST JULIEN DE LAMPON", + "nomCommune": "ST JULIEN DE LAMPON" }, { - "codePostal": "57590", - "codeCommune": "57171", - "libelleAcheminement": "DELME", - "nomCommune": "DELME" + "codePostal": "11140", + "codeCommune": "11021", + "libelleAcheminement": "AXAT", + "nomCommune": "AXAT" }, { - "codePostal": "52500", - "codeCommune": "52015", - "libelleAcheminement": "ARBIGNY SOUS VARENNES", - "nomCommune": "ARBIGNY SOUS VARENNES" + "codePostal": "12540", + "codeCommune": "12155", + "libelleAcheminement": "FONDAMENTE", + "nomCommune": "FONDAMENTE" }, { - "codePostal": "16700", - "codeCommune": "16104", - "libelleAcheminement": "CONDAC", - "nomCommune": "CONDAC" + "codePostal": "24540", + "codeCommune": "24446", + "libelleAcheminement": "ST MARCORY", + "nomCommune": "ST MARCORY" }, { - "codePostal": "17520", - "codeCommune": "17316", - "libelleAcheminement": "ST CIERS CHAMPAGNE", - "nomCommune": "ST CIERS CHAMPAGNE" + "codePostal": "24100", + "codeCommune": "24437", + "libelleAcheminement": "ST LAURENT DES VIGNES", + "nomCommune": "ST LAURENT DES VIGNES" }, { - "codePostal": "57220", - "codeCommune": "57172", - "libelleAcheminement": "DENTING", - "nomCommune": "DENTING" + "codePostal": "11700", + "codeCommune": "11022", + "libelleAcheminement": "AZILLE", + "nomCommune": "AZILLE" }, { - "codePostal": "52160", - "codeCommune": "52023", - "libelleAcheminement": "AUBERIVE", - "nomCommune": "AUBERIVE" + "codePostal": "12330", + "codeCommune": "12165", + "libelleAcheminement": "MURET LE CHATEAU", + "nomCommune": "MURET LE CHATEAU" }, { - "codePostal": "16500", - "codeCommune": "16106", - "libelleAcheminement": "CONFOLENS", - "nomCommune": "CONFOLENS" + "codePostal": "24300", + "codeCommune": "24458", + "libelleAcheminement": "ST MARTIN LE PIN", + "nomCommune": "ST MARTIN LE PIN" }, { - "codePostal": "17150", - "codeCommune": "17335", - "libelleAcheminement": "ST GEORGES DES AGOUTS", - "nomCommune": "ST GEORGES DES AGOUTS" + "codePostal": "24700", + "codeCommune": "24449", + "libelleAcheminement": "ST MARTIAL D ARTENSET", + "nomCommune": "ST MARTIAL D ARTENSET" }, { - "codePostal": "57340", - "codeCommune": "57174", - "libelleAcheminement": "DESTRY", - "nomCommune": "DESTRY" + "codePostal": "11600", + "codeCommune": "11025", + "libelleAcheminement": "BAGNOLES", + "nomCommune": "BAGNOLES" }, { - "codePostal": "52330", - "codeCommune": "52031", - "libelleAcheminement": "AUTREVILLE SUR LA RENNE", - "nomCommune": "AUTREVILLE SUR LA RENNE" + "codePostal": "12700", + "codeCommune": "12170", + "libelleAcheminement": "NAUSSAC", + "nomCommune": "NAUSSAC" }, { - "codePostal": "16240", - "codeCommune": "16110", - "libelleAcheminement": "COURCOME", - "nomCommune": "COURCOME" + "codePostal": "24370", + "codeCommune": "24470", + "libelleAcheminement": "STE MONDANE", + "nomCommune": "STE MONDANE" }, { - "codePostal": "17190", - "codeCommune": "17337", - "libelleAcheminement": "ST GEORGES D OLERON", - "nomCommune": "ST GEORGES D OLERON" + "codePostal": "24250", + "codeCommune": "24450", + "libelleAcheminement": "ST MARTIAL DE NABIRAT", + "nomCommune": "ST MARTIAL DE NABIRAT" }, { - "codePostal": "57260", - "codeCommune": "57177", - "libelleAcheminement": "DIEUZE", - "nomCommune": "DIEUZE" + "codePostal": "11410", + "codeCommune": "11026", + "libelleAcheminement": "BARAIGNE", + "nomCommune": "BARAIGNE" }, { - "codePostal": "52360", - "codeCommune": "52037", - "libelleAcheminement": "BANNES", - "nomCommune": "BANNES" + "codePostal": "12260", + "codeCommune": "12175", + "libelleAcheminement": "OLS ET RINHODES", + "nomCommune": "OLS ET RINHODES" }, { - "codePostal": "16220", - "codeCommune": "16124", - "libelleAcheminement": "ECURAS", - "nomCommune": "ECURAS" + "codePostal": "24320", + "codeCommune": "24482", + "libelleAcheminement": "ST PAUL LIZONNE", + "nomCommune": "ST PAUL LIZONNE" }, { - "codePostal": "17700", - "codeCommune": "17340", - "libelleAcheminement": "ST PIERRE LA NOUE", - "nomCommune": "ST PIERRE LA NOUE" + "codePostal": "24800", + "codeCommune": "24453", + "libelleAcheminement": "ST MARTIN DE FRESSENGEAS", + "nomCommune": "ST MARTIN DE FRESSENGEAS" }, { - "codePostal": "57400", - "codeCommune": "57180", - "libelleAcheminement": "DOLVING", - "nomCommune": "DOLVING" + "codePostal": "11580", + "codeCommune": "11029", + "libelleAcheminement": "BELCASTEL ET BUC", + "nomCommune": "BELCASTEL ET BUC" }, { - "codePostal": "52240", - "codeCommune": "52038", - "libelleAcheminement": "BASSONCOURT", - "nomCommune": "BASSONCOURT" + "codePostal": "12850", + "codeCommune": "12176", + "libelleAcheminement": "ONET LE CHATEAU", + "nomCommune": "ONET LE CHATEAU" }, { - "codePostal": "16220", - "codeCommune": "16135", - "libelleAcheminement": "EYMOUTHIERS", - "nomCommune": "EYMOUTHIERS" + "codePostal": "24800", + "codeCommune": "24496", + "libelleAcheminement": "ST ROMAIN ET ST CLEMENT", + "nomCommune": "ST ROMAIN ET ST CLEMENT" }, { - "codePostal": "17320", - "codeCommune": "17351", - "libelleAcheminement": "ST JUST LUZAC", - "nomCommune": "ST JUST LUZAC" + "codePostal": "24140", + "codeCommune": "24456", + "libelleAcheminement": "ST MARTIN DES COMBES", + "nomCommune": "ST MARTIN DES COMBES" }, { - "codePostal": "57320", - "codeCommune": "57186", - "libelleAcheminement": "EBERSVILLER", - "nomCommune": "EBERSVILLER" + "codePostal": "11200", + "codeCommune": "11040", + "libelleAcheminement": "BIZANET", + "nomCommune": "BIZANET" }, { - "codePostal": "52270", - "codeCommune": "52044", - "libelleAcheminement": "ROCHES BETTAINCOURT", - "nomCommune": "ROCHES BETTAINCOURT" + "codePostal": "12310", + "codeCommune": "12177", + "libelleAcheminement": "PALMAS D AVEYRON", + "nomCommune": "PALMAS D AVEYRON" }, { - "codePostal": "16700", - "codeCommune": "16136", - "libelleAcheminement": "LA FAYE", - "nomCommune": "LA FAYE" + "codePostal": "24270", + "codeCommune": "24519", + "libelleAcheminement": "SARLANDE", + "nomCommune": "SARLANDE" }, { - "codePostal": "17800", - "codeCommune": "17354", - "libelleAcheminement": "ST LEGER", - "nomCommune": "ST LEGER" + "codePostal": "24160", + "codeCommune": "24463", + "libelleAcheminement": "ST MEDARD D EXCIDEUIL", + "nomCommune": "ST MEDARD D EXCIDEUIL" }, { - "codePostal": "57220", - "codeCommune": "57187", - "libelleAcheminement": "EBLANGE", - "nomCommune": "EBLANGE" + "codePostal": "11120", + "codeCommune": "11041", + "libelleAcheminement": "BIZE MINERVOIS", + "nomCommune": "BIZE MINERVOIS" }, { - "codePostal": "52340", - "codeCommune": "52050", - "libelleAcheminement": "BIESLES", - "nomCommune": "BIESLES" + "codePostal": "12360", + "codeCommune": "12179", + "libelleAcheminement": "PEUX ET COUFFOULEUX", + "nomCommune": "PEUX ET COUFFOULEUX" }, { - "codePostal": "16230", - "codeCommune": "16140", - "libelleAcheminement": "FONTCLAIREAU", - "nomCommune": "FONTCLAIREAU" + "codePostal": "24260", + "codeCommune": "24524", + "libelleAcheminement": "SAVIGNAC DE MIREMONT", + "nomCommune": "SAVIGNAC DE MIREMONT" }, { - "codePostal": "17380", - "codeCommune": "17356", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "24200", + "codeCommune": "24471", + "libelleAcheminement": "STE NATHALENE", + "nomCommune": "STE NATHALENE" }, { - "codePostal": "57660", - "codeCommune": "57198", - "libelleAcheminement": "ERSTROFF", - "nomCommune": "ERSTROFF" + "codePostal": "11300", + "codeCommune": "11045", + "libelleAcheminement": "BOURIEGE", + "nomCommune": "BOURIEGE" }, { - "codePostal": "52300", - "codeCommune": "52055", - "libelleAcheminement": "BLECOURT", - "nomCommune": "BLECOURT" + "codePostal": "12130", + "codeCommune": "12182", + "libelleAcheminement": "PIERREFICHE", + "nomCommune": "PIERREFICHE" }, { - "codePostal": "16200", - "codeCommune": "16145", - "libelleAcheminement": "FOUSSIGNAC", - "nomCommune": "FOUSSIGNAC" + "codePostal": "24300", + "codeCommune": "24525", + "libelleAcheminement": "SAVIGNAC DE NONTRON", + "nomCommune": "SAVIGNAC DE NONTRON" }, { - "codePostal": "17740", - "codeCommune": "17360", - "libelleAcheminement": "STE MARIE DE RE", - "nomCommune": "STE MARIE DE RE" + "codePostal": "24530", + "codeCommune": "24474", + "libelleAcheminement": "ST PANCRACE", + "nomCommune": "ST PANCRACE" }, { - "codePostal": "57380", - "codeCommune": "57209", - "libelleAcheminement": "FAULQUEMONT", - "nomCommune": "FAULQUEMONT" + "codePostal": "11300", + "codeCommune": "11046", + "libelleAcheminement": "BOURIGEOLE", + "nomCommune": "BOURIGEOLE" }, { - "codePostal": "52110", - "codeCommune": "52057", - "libelleAcheminement": "BLUMERAY", - "nomCommune": "BLUMERAY" + "codePostal": "12380", + "codeCommune": "12186", + "libelleAcheminement": "POUSTHOMY", + "nomCommune": "POUSTHOMY" }, { - "codePostal": "16410", - "codeCommune": "16146", - "libelleAcheminement": "GARAT", - "nomCommune": "GARAT" + "codePostal": "24300", + "codeCommune": "24528", + "libelleAcheminement": "SCEAU ST ANGEL", + "nomCommune": "SCEAU ST ANGEL" }, { - "codePostal": "17520", - "codeCommune": "17364", - "libelleAcheminement": "ST MARTIAL SUR NE", - "nomCommune": "ST MARTIAL SUR NE" + "codePostal": "24160", + "codeCommune": "24476", + "libelleAcheminement": "ST PANTALY D EXCIDEUIL", + "nomCommune": "ST PANTALY D EXCIDEUIL" }, { - "codePostal": "57930", - "codeCommune": "57210", - "libelleAcheminement": "FENETRANGE", - "nomCommune": "FENETRANGE" + "codePostal": "11400", + "codeCommune": "11054", + "libelleAcheminement": "LES BRUNELS", + "nomCommune": "LES BRUNELS" }, { - "codePostal": "52310", - "codeCommune": "52058", - "libelleAcheminement": "BOLOGNE", - "nomCommune": "BOLOGNE" + "codePostal": "12290", + "codeCommune": "12188", + "libelleAcheminement": "PRADES SALARS", + "nomCommune": "PRADES SALARS" }, { - "codePostal": "16300", - "codeCommune": "16160", - "libelleAcheminement": "GUIMPS", - "nomCommune": "GUIMPS" + "codePostal": "24410", + "codeCommune": "24533", + "libelleAcheminement": "SERVANCHES", + "nomCommune": "SERVANCHES" }, { - "codePostal": "17270", - "codeCommune": "17365", - "libelleAcheminement": "ST MARTIN D ARY", - "nomCommune": "ST MARTIN D ARY" + "codePostal": "24800", + "codeCommune": "24481", + "libelleAcheminement": "ST PAUL LA ROCHE", + "nomCommune": "ST PAUL LA ROCHE" }, { - "codePostal": "57280", - "codeCommune": "57211", - "libelleAcheminement": "FEVES", - "nomCommune": "FEVES" + "codePostal": "11160", + "codeCommune": "11056", + "libelleAcheminement": "CABRESPINE", + "nomCommune": "CABRESPINE" }, { - "codePostal": "52400", - "codeCommune": "52060", - "libelleAcheminement": "BOURBONNE LES BAINS", - "nomCommune": "BOURBONNE LES BAINS" + "codePostal": "12240", + "codeCommune": "12198", + "libelleAcheminement": "RIEUPEYROUX", + "nomCommune": "RIEUPEYROUX" }, { - "codePostal": "16290", - "codeCommune": "16163", - "libelleAcheminement": "HIERSAC", - "nomCommune": "HIERSAC" + "codePostal": "24500", + "codeCommune": "24536", + "libelleAcheminement": "SINGLEYRAC", + "nomCommune": "SINGLEYRAC" }, { - "codePostal": "17330", - "codeCommune": "17384", - "libelleAcheminement": "ST PIERRE DE L ISLE", - "nomCommune": "ST PIERRE DE L ISLE" + "codePostal": "24560", + "codeCommune": "24483", + "libelleAcheminement": "ST PERDOUX", + "nomCommune": "ST PERDOUX" }, { - "codePostal": "57570", - "codeCommune": "57214", - "libelleAcheminement": "FIXEM", - "nomCommune": "FIXEM" + "codePostal": "11240", + "codeCommune": "11061", + "libelleAcheminement": "CAMBIEURE", + "nomCommune": "CAMBIEURE" }, { - "codePostal": "52400", - "codeCommune": "52060", - "libelleAcheminement": "BOURBONNE LES BAINS", - "nomCommune": "BOURBONNE LES BAINS" + "codePostal": "12640", + "codeCommune": "12200", + "libelleAcheminement": "RIVIERE SUR TARN", + "nomCommune": "RIVIERE SUR TARN" }, { - "codePostal": "16490", - "codeCommune": "16164", - "libelleAcheminement": "HIESSE", - "nomCommune": "HIESSE" + "codePostal": "24600", + "codeCommune": "24537", + "libelleAcheminement": "SIORAC DE RIBERAC", + "nomCommune": "SIORAC DE RIBERAC" }, { - "codePostal": "17240", - "codeCommune": "17390", - "libelleAcheminement": "STE RAMEE", - "nomCommune": "STE RAMEE" + "codePostal": "24450", + "codeCommune": "24486", + "libelleAcheminement": "ST PIERRE DE FRUGIE", + "nomCommune": "ST PIERRE DE FRUGIE" }, { - "codePostal": "57190", - "codeCommune": "57221", - "libelleAcheminement": "FLORANGE", - "nomCommune": "FLORANGE" + "codePostal": "11000", + "codeCommune": "11069", + "libelleAcheminement": "CARCASSONNE", + "nomCommune": "CARCASSONNE" }, { - "codePostal": "52150", - "codeCommune": "52063", - "libelleAcheminement": "BOURG STE MARIE", - "nomCommune": "BOURG STE MARIE" + "codePostal": "12000", + "codeCommune": "12202", + "libelleAcheminement": "RODEZ", + "nomCommune": "RODEZ" }, { - "codePostal": "16340", - "codeCommune": "16166", - "libelleAcheminement": "L ISLE D ESPAGNAC", - "nomCommune": "L ISLE D ESPAGNAC" + "codePostal": "24170", + "codeCommune": "24538", + "libelleAcheminement": "SIORAC EN PERIGORD", + "nomCommune": "SIORAC EN PERIGORD" }, { - "codePostal": "17600", - "codeCommune": "17393", - "libelleAcheminement": "ST ROMAIN DE BENET", - "nomCommune": "ST ROMAIN DE BENET" + "codePostal": "24210", + "codeCommune": "24491", + "libelleAcheminement": "ST RABIER", + "nomCommune": "ST RABIER" }, { - "codePostal": "57730", - "codeCommune": "57224", - "libelleAcheminement": "FOLSCHVILLER", - "nomCommune": "FOLSCHVILLER" + "codePostal": "11000", + "codeCommune": "11069", + "libelleAcheminement": "CARCASSONNE", + "nomCommune": "CARCASSONNE" }, { - "codePostal": "52150", - "codeCommune": "52064", - "libelleAcheminement": "BOURMONT ENTRE MEUSE ET MOUZON", - "nomCommune": "BOURMONT ENTRE MEUSE ET MOUZON" + "codePostal": "12200", + "codeCommune": "12205", + "libelleAcheminement": "LA ROUQUETTE", + "nomCommune": "LA ROUQUETTE" }, { - "codePostal": "16200", - "codeCommune": "16167", - "libelleAcheminement": "JARNAC", - "nomCommune": "JARNAC" + "codePostal": "24460", + "codeCommune": "24540", + "libelleAcheminement": "SORGES ET LIGUEUX EN PERIGORD", + "nomCommune": "SORGES ET LIGUEUX EN PERIGORD" }, { - "codePostal": "17700", - "codeCommune": "17394", - "libelleAcheminement": "ST SATURNIN DU BOIS", - "nomCommune": "ST SATURNIN DU BOIS" + "codePostal": "24160", + "codeCommune": "24493", + "libelleAcheminement": "ST RAPHAEL", + "nomCommune": "ST RAPHAEL" }, { - "codePostal": "57600", - "codeCommune": "57227", - "libelleAcheminement": "FORBACH", - "nomCommune": "FORBACH" + "codePostal": "11360", + "codeCommune": "11071", + "libelleAcheminement": "CASCASTEL DES CORBIERES", + "nomCommune": "CASCASTEL DES CORBIERES" }, { - "codePostal": "52110", - "codeCommune": "52065", - "libelleAcheminement": "BOUZANCOURT", - "nomCommune": "BOUZANCOURT" + "codePostal": "12220", + "codeCommune": "12206", + "libelleAcheminement": "ROUSSENNAC", + "nomCommune": "ROUSSENNAC" }, { - "codePostal": "16250", - "codeCommune": "16175", - "libelleAcheminement": "VAL DES VIGNES", - "nomCommune": "VAL DES VIGNES" + "codePostal": "24390", + "codeCommune": "24545", + "libelleAcheminement": "TEILLOTS", + "nomCommune": "TEILLOTS" }, { - "codePostal": "17610", - "codeCommune": "17395", - "libelleAcheminement": "ST SAUVANT", - "nomCommune": "ST SAUVANT" + "codePostal": "24700", + "codeCommune": "24500", + "libelleAcheminement": "ST SAUVEUR LALANDE", + "nomCommune": "ST SAUVEUR LALANDE" }, { - "codePostal": "57590", - "codeCommune": "57228", - "libelleAcheminement": "FOSSIEUX", - "nomCommune": "FOSSIEUX" + "codePostal": "11320", + "codeCommune": "11074", + "libelleAcheminement": "LES CASSES", + "nomCommune": "LES CASSES" }, { - "codePostal": "52150", - "codeCommune": "52067", - "libelleAcheminement": "BRAINVILLE SUR MEUSE", - "nomCommune": "BRAINVILLE SUR MEUSE" + "codePostal": "12230", + "codeCommune": "12220", + "libelleAcheminement": "STE EULALIE DE CERNON", + "nomCommune": "STE EULALIE DE CERNON" }, { - "codePostal": "16250", - "codeCommune": "16175", - "libelleAcheminement": "VAL DES VIGNES", - "nomCommune": "VAL DES VIGNES" + "codePostal": "24240", + "codeCommune": "24549", + "libelleAcheminement": "THENAC", + "nomCommune": "THENAC" }, { - "codePostal": "17350", - "codeCommune": "17397", - "libelleAcheminement": "ST SAVINIEN", - "nomCommune": "ST SAVINIEN" + "codePostal": "24350", + "codeCommune": "24508", + "libelleAcheminement": "ST VICTOR", + "nomCommune": "ST VICTOR" }, { - "codePostal": "57220", - "codeCommune": "57230", - "libelleAcheminement": "FOULIGNY", - "nomCommune": "FOULIGNY" + "codePostal": "11300", + "codeCommune": "11078", + "libelleAcheminement": "CASTELRENG", + "nomCommune": "CASTELRENG" }, { - "codePostal": "52120", - "codeCommune": "52069", - "libelleAcheminement": "BRAUX LE CHATEL", - "nomCommune": "BRAUX LE CHATEL" + "codePostal": "12210", + "codeCommune": "12223", + "libelleAcheminement": "ARGENCES EN AUBRAC", + "nomCommune": "ARGENCES EN AUBRAC" }, { - "codePostal": "16120", - "codeCommune": "16177", - "libelleAcheminement": "LADIVILLE", - "nomCommune": "LADIVILLE" + "codePostal": "24290", + "codeCommune": "24552", + "libelleAcheminement": "THONAC", + "nomCommune": "THONAC" }, { - "codePostal": "17350", - "codeCommune": "17397", - "libelleAcheminement": "ST SAVINIEN", - "nomCommune": "ST SAVINIEN" + "codePostal": "24190", + "codeCommune": "24509", + "libelleAcheminement": "ST VINCENT DE CONNEZAC", + "nomCommune": "ST VINCENT DE CONNEZAC" }, { - "codePostal": "57800", - "codeCommune": "57240", - "libelleAcheminement": "FREYMING MERLEBACH", - "nomCommune": "FREYMING MERLEBACH" + "codePostal": "11220", + "codeCommune": "11083", + "libelleAcheminement": "CAUNETTES EN VAL", + "nomCommune": "CAUNETTES EN VAL" }, { - "codePostal": "52240", - "codeCommune": "52074", - "libelleAcheminement": "BREUVANNES EN BASSIGNY", - "nomCommune": "BREUVANNES EN BASSIGNY" + "codePostal": "12210", + "codeCommune": "12223", + "libelleAcheminement": "ARGENCES EN AUBRAC", + "nomCommune": "ARGENCES EN AUBRAC" }, { - "codePostal": "16390", - "codeCommune": "16180", - "libelleAcheminement": "LAPRADE", - "nomCommune": "LAPRADE" + "codePostal": "24190", + "codeCommune": "24562", + "libelleAcheminement": "VALLEREUIL", + "nomCommune": "VALLEREUIL" }, { - "codePostal": "17150", - "codeCommune": "17410", - "libelleAcheminement": "ST THOMAS DE CONAC", - "nomCommune": "ST THOMAS DE CONAC" + "codePostal": "24220", + "codeCommune": "24510", + "libelleAcheminement": "ST VINCENT DE COSSE", + "nomCommune": "ST VINCENT DE COSSE" }, { - "codePostal": "57810", - "codeCommune": "57241", - "libelleAcheminement": "FRIBOURG", - "nomCommune": "FRIBOURG" + "codePostal": "11570", + "codeCommune": "11088", + "libelleAcheminement": "CAZILHAC", + "nomCommune": "CAZILHAC" }, { - "codePostal": "52700", - "codeCommune": "52075", - "libelleAcheminement": "BRIAUCOURT", - "nomCommune": "BRIAUCOURT" + "codePostal": "12420", + "codeCommune": "12223", + "libelleAcheminement": "ARGENCES EN AUBRAC", + "nomCommune": "ARGENCES EN AUBRAC" }, { - "codePostal": "16500", - "codeCommune": "16181", - "libelleAcheminement": "LESSAC", - "nomCommune": "LESSAC" + "codePostal": "24320", + "codeCommune": "24573", + "libelleAcheminement": "VERTEILLAC", + "nomCommune": "VERTEILLAC" }, { - "codePostal": "17220", - "codeCommune": "17413", + "codePostal": "24230", + "codeCommune": "24514", "libelleAcheminement": "ST VIVIEN", "nomCommune": "ST VIVIEN" }, { - "codePostal": "57660", - "codeCommune": "57262", - "libelleAcheminement": "GROSTENQUIN", - "nomCommune": "GROSTENQUIN" - }, - { - "codePostal": "52220", - "codeCommune": "52088", - "libelleAcheminement": "CEFFONDS", - "nomCommune": "CEFFONDS" + "codePostal": "11140", + "codeCommune": "11093", + "libelleAcheminement": "LE CLAT", + "nomCommune": "LE CLAT" }, { - "codePostal": "16460", - "codeCommune": "16184", - "libelleAcheminement": "LICHERES", - "nomCommune": "LICHERES" + "codePostal": "12130", + "codeCommune": "12224", + "libelleAcheminement": "ST GENIEZ D OLT ET D AUBRAC", + "nomCommune": "ST GENIEZ D OLT ET D AUBRAC" }, { - "codePostal": "17100", - "codeCommune": "17415", - "libelleAcheminement": "SAINTES", - "nomCommune": "SAINTES" + "codePostal": "24370", + "codeCommune": "24574", + "libelleAcheminement": "VEYRIGNAC", + "nomCommune": "VEYRIGNAC" }, { - "codePostal": "57260", - "codeCommune": "57265", - "libelleAcheminement": "GUEBESTROFF", - "nomCommune": "GUEBESTROFF" + "codePostal": "24160", + "codeCommune": "24515", + "libelleAcheminement": "SALAGNAC", + "nomCommune": "SALAGNAC" }, { - "codePostal": "52600", - "codeCommune": "52093", - "libelleAcheminement": "CHALINDREY", - "nomCommune": "CHALINDREY" + "codePostal": "11500", + "codeCommune": "11101", + "libelleAcheminement": "COUDONS", + "nomCommune": "COUDONS" }, { - "codePostal": "16300", - "codeCommune": "16186", - "libelleAcheminement": "LIGNIERES AMBLEVILLE", - "nomCommune": "LIGNIERES AMBLEVILLE" + "codePostal": "12140", + "codeCommune": "12226", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "17130", - "codeCommune": "17417", - "libelleAcheminement": "SALIGNAC DE MIRAMBEAU", - "nomCommune": "SALIGNAC DE MIRAMBEAU" + "codePostal": "24380", + "codeCommune": "24576", + "libelleAcheminement": "VEYRINES DE VERGT", + "nomCommune": "VEYRINES DE VERGT" }, { - "codePostal": "57260", - "codeCommune": "57266", - "libelleAcheminement": "GUEBLANGE LES DIEUZE", - "nomCommune": "GUEBLANGE LES DIEUZE" + "codePostal": "24420", + "codeCommune": "24521", + "libelleAcheminement": "SARLIAC SUR L ISLE", + "nomCommune": "SARLIAC SUR L ISLE" }, { - "codePostal": "52160", - "codeCommune": "52094", - "libelleAcheminement": "VALS DES TILLES", - "nomCommune": "VALS DES TILLES" + "codePostal": "11140", + "codeCommune": "11104", + "libelleAcheminement": "COUNOZOULS", + "nomCommune": "COUNOZOULS" }, { - "codePostal": "16230", - "codeCommune": "16191", - "libelleAcheminement": "LONNES", - "nomCommune": "LONNES" + "codePostal": "12250", + "codeCommune": "12229", + "libelleAcheminement": "ST JEAN D ALCAPIES", + "nomCommune": "ST JEAN D ALCAPIES" }, { - "codePostal": "17220", - "codeCommune": "17420", - "libelleAcheminement": "SALLES SUR MER", - "nomCommune": "SALLES SUR MER" + "codePostal": "24600", + "codeCommune": "24586", + "libelleAcheminement": "VILLETOUREIX", + "nomCommune": "VILLETOUREIX" }, { - "codePostal": "57880", - "codeCommune": "57274", - "libelleAcheminement": "GUERTING", - "nomCommune": "GUERTING" + "codePostal": "24800", + "codeCommune": "24522", + "libelleAcheminement": "SARRAZAC", + "nomCommune": "SARRAZAC" }, { - "codePostal": "52120", - "codeCommune": "52114", - "libelleAcheminement": "CHATEAUVILLAIN", - "nomCommune": "CHATEAUVILLAIN" + "codePostal": "11390", + "codeCommune": "11115", + "libelleAcheminement": "CUXAC CABARDES", + "nomCommune": "CUXAC CABARDES" }, { - "codePostal": "16270", - "codeCommune": "16192", - "libelleAcheminement": "TERRES DE HAUTE CHARENTE", - "nomCommune": "TERRES DE HAUTE CHARENTE" + "codePostal": "12120", + "codeCommune": "12234", + "libelleAcheminement": "STE JULIETTE SUR VIAUR", + "nomCommune": "STE JULIETTE SUR VIAUR" }, { - "codePostal": "17510", - "codeCommune": "17422", - "libelleAcheminement": "SEIGNE", - "nomCommune": "SEIGNE" + "codePostal": "25360", + "codeCommune": "25006", + "libelleAcheminement": "ADAM LES PASSAVANT", + "nomCommune": "ADAM LES PASSAVANT" }, { - "codePostal": "57405", - "codeCommune": "57280", - "libelleAcheminement": "GUNTZVILLER", - "nomCommune": "GUNTZVILLER" + "codePostal": "24270", + "codeCommune": "24526", + "libelleAcheminement": "SAVIGNAC LEDRIER", + "nomCommune": "SAVIGNAC LEDRIER" }, { - "codePostal": "52120", - "codeCommune": "52114", - "libelleAcheminement": "CHATEAUVILLAIN", - "nomCommune": "CHATEAUVILLAIN" + "codePostal": "11700", + "codeCommune": "11122", + "libelleAcheminement": "DOUZENS", + "nomCommune": "DOUZENS" }, { - "codePostal": "16230", - "codeCommune": "16200", - "libelleAcheminement": "MAINE DE BOIXE", - "nomCommune": "MAINE DE BOIXE" + "codePostal": "12620", + "codeCommune": "12236", + "libelleAcheminement": "ST LAURENT DE LEVEZOU", + "nomCommune": "ST LAURENT DE LEVEZOU" }, { - "codePostal": "17120", - "codeCommune": "17425", - "libelleAcheminement": "SEMUSSAC", - "nomCommune": "SEMUSSAC" + "codePostal": "25530", + "codeCommune": "25007", + "libelleAcheminement": "ADAM LES VERCEL", + "nomCommune": "ADAM LES VERCEL" }, { - "codePostal": "57300", - "codeCommune": "57283", - "libelleAcheminement": "HAGONDANGE", - "nomCommune": "HAGONDANGE" + "codePostal": "24290", + "codeCommune": "24531", + "libelleAcheminement": "SERGEAC", + "nomCommune": "SERGEAC" }, { - "codePostal": "52120", - "codeCommune": "52114", - "libelleAcheminement": "CHATEAUVILLAIN", - "nomCommune": "CHATEAUVILLAIN" + "codePostal": "11360", + "codeCommune": "11124", + "libelleAcheminement": "DURBAN CORBIERES", + "nomCommune": "DURBAN CORBIERES" }, { - "codePostal": "16120", - "codeCommune": "16204", - "libelleAcheminement": "BELLEVIGNE", - "nomCommune": "BELLEVIGNE" + "codePostal": "12560", + "codeCommune": "12237", + "libelleAcheminement": "ST LAURENT D OLT", + "nomCommune": "ST LAURENT D OLT" }, { - "codePostal": "17120", - "codeCommune": "17437", - "libelleAcheminement": "TALMONT SUR GIRONDE", - "nomCommune": "TALMONT SUR GIRONDE" + "codePostal": "25300", + "codeCommune": "25024", + "libelleAcheminement": "ARCON", + "nomCommune": "ARCON" }, { - "codePostal": "57690", - "codeCommune": "57284", - "libelleAcheminement": "HALLERING", - "nomCommune": "HALLERING" + "codePostal": "24500", + "codeCommune": "24532", + "libelleAcheminement": "SERRES ET MONTGUYARD", + "nomCommune": "SERRES ET MONTGUYARD" }, { - "codePostal": "52150", - "codeCommune": "52122", - "libelleAcheminement": "CHAUMONT LA VILLE", - "nomCommune": "CHAUMONT LA VILLE" + "codePostal": "11140", + "codeCommune": "11127", + "libelleAcheminement": "ESCOULOUBRE", + "nomCommune": "ESCOULOUBRE" }, { - "codePostal": "16140", - "codeCommune": "16207", - "libelleAcheminement": "MARCILLAC LANVILLE", - "nomCommune": "MARCILLAC LANVILLE" + "codePostal": "12300", + "codeCommune": "12240", + "libelleAcheminement": "ST PARTHEM", + "nomCommune": "ST PARTHEM" }, { - "codePostal": "17260", - "codeCommune": "17438", - "libelleAcheminement": "TANZAC", - "nomCommune": "TANZAC" + "codePostal": "25520", + "codeCommune": "25025", + "libelleAcheminement": "ARC SOUS CICON", + "nomCommune": "ARC SOUS CICON" }, { - "codePostal": "57880", - "codeCommune": "57288", - "libelleAcheminement": "HAM SOUS VARSBERG", - "nomCommune": "HAM SOUS VARSBERG" + "codePostal": "24240", + "codeCommune": "24534", + "libelleAcheminement": "SIGOULES ET FLAUGEAC", + "nomCommune": "SIGOULES ET FLAUGEAC" }, { - "codePostal": "52400", - "codeCommune": "52124", - "libelleAcheminement": "CHEZEAUX", - "nomCommune": "CHEZEAUX" + "codePostal": "11340", + "codeCommune": "11130", + "libelleAcheminement": "ESPEZEL", + "nomCommune": "ESPEZEL" }, { - "codePostal": "16170", - "codeCommune": "16208", - "libelleAcheminement": "MAREUIL", - "nomCommune": "MAREUIL" + "codePostal": "12120", + "codeCommune": "12255", + "libelleAcheminement": "SALMIECH", + "nomCommune": "SALMIECH" }, { - "codePostal": "17290", - "codeCommune": "17443", - "libelleAcheminement": "THAIRE", - "nomCommune": "THAIRE" + "codePostal": "25520", + "codeCommune": "25029", + "libelleAcheminement": "AUBONNE", + "nomCommune": "AUBONNE" }, { - "codePostal": "57170", - "codeCommune": "57290", - "libelleAcheminement": "HAMPONT", - "nomCommune": "HAMPONT" + "codePostal": "24360", + "codeCommune": "24541", + "libelleAcheminement": "SOUDAT", + "nomCommune": "SOUDAT" }, { - "codePostal": "52240", - "codeCommune": "52132", - "libelleAcheminement": "CLEFMONT", - "nomCommune": "CLEFMONT" + "codePostal": "11200", + "codeCommune": "11140", + "libelleAcheminement": "FERRALS LES CORBIERES", + "nomCommune": "FERRALS LES CORBIERES" }, { - "codePostal": "16110", - "codeCommune": "16209", - "libelleAcheminement": "MARILLAC LE FRANC", - "nomCommune": "MARILLAC LE FRANC" + "codePostal": "12700", + "codeCommune": "12257", + "libelleAcheminement": "CAUSSE ET DIEGE", + "nomCommune": "CAUSSE ET DIEGE" }, { - "codePostal": "17160", - "codeCommune": "17446", - "libelleAcheminement": "THORS", - "nomCommune": "THORS" + "codePostal": "25870", + "codeCommune": "25035", + "libelleAcheminement": "LES AUXONS", + "nomCommune": "LES AUXONS" }, { - "codePostal": "57340", - "codeCommune": "57297", - "libelleAcheminement": "HARPRICH", - "nomCommune": "HARPRICH" + "codePostal": "24390", + "codeCommune": "24555", + "libelleAcheminement": "TOURTOIRAC", + "nomCommune": "TOURTOIRAC" }, { - "codePostal": "52700", - "codeCommune": "52133", - "libelleAcheminement": "CLINCHAMP", - "nomCommune": "CLINCHAMP" + "codePostal": "11240", + "codeCommune": "11141", + "libelleAcheminement": "FERRAN", + "nomCommune": "FERRAN" }, { - "codePostal": "16570", - "codeCommune": "16210", - "libelleAcheminement": "MARSAC", - "nomCommune": "MARSAC" + "codePostal": "12200", + "codeCommune": "12259", + "libelleAcheminement": "SANVENSA", + "nomCommune": "SANVENSA" }, { - "codePostal": "17130", - "codeCommune": "17454", - "libelleAcheminement": "TUGERAS ST MAURICE", - "nomCommune": "TUGERAS ST MAURICE" + "codePostal": "25550", + "codeCommune": "25048", + "libelleAcheminement": "BAVANS", + "nomCommune": "BAVANS" }, { - "codePostal": "57230", - "codeCommune": "57301", - "libelleAcheminement": "HASPELSCHIEDT", - "nomCommune": "HASPELSCHIEDT" + "codePostal": "24600", + "codeCommune": "24564", + "libelleAcheminement": "VANXAINS", + "nomCommune": "VANXAINS" }, { - "codePostal": "52600", - "codeCommune": "52134", - "libelleAcheminement": "COHONS", - "nomCommune": "COHONS" + "codePostal": "11300", + "codeCommune": "11142", + "libelleAcheminement": "FESTES ET ST ANDRE", + "nomCommune": "FESTES ET ST ANDRE" }, { - "codePostal": "16100", - "codeCommune": "16217", - "libelleAcheminement": "MERPINS", - "nomCommune": "MERPINS" + "codePostal": "12260", + "codeCommune": "12261", + "libelleAcheminement": "SAUJAC", + "nomCommune": "SAUJAC" }, { - "codePostal": "17380", - "codeCommune": "17457", - "libelleAcheminement": "LA DEVISE", - "nomCommune": "LA DEVISE" + "codePostal": "25380", + "codeCommune": "25051", + "libelleAcheminement": "BELLEHERBE", + "nomCommune": "BELLEHERBE" }, { - "codePostal": "57790", - "codeCommune": "57302", - "libelleAcheminement": "HATTIGNY", - "nomCommune": "HATTIGNY" + "codePostal": "24520", + "codeCommune": "24570", + "libelleAcheminement": "VERDON", + "nomCommune": "VERDON" }, { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "11560", + "codeCommune": "11145", + "libelleAcheminement": "FLEURY D AUDE", + "nomCommune": "FLEURY" }, { - "codePostal": "16190", - "codeCommune": "16230", - "libelleAcheminement": "MONTMOREAU", - "nomCommune": "MONTMOREAU" + "codePostal": "12150", + "codeCommune": "12270", + "libelleAcheminement": "SEVERAC D AVEYRON", + "nomCommune": "SEVERAC D AVEYRON" }, { - "codePostal": "17500", - "codeCommune": "17458", - "libelleAcheminement": "VANZAC", - "nomCommune": "VANZAC" + "codePostal": "25200", + "codeCommune": "25057", + "libelleAcheminement": "BETHONCOURT", + "nomCommune": "BETHONCOURT" }, { - "codePostal": "57280", - "codeCommune": "57303", - "libelleAcheminement": "HAUCONCOURT", - "nomCommune": "HAUCONCOURT" + "codePostal": "24380", + "codeCommune": "24571", + "libelleAcheminement": "VERGT", + "nomCommune": "VERGT" }, { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "11800", + "codeCommune": "11146", + "libelleAcheminement": "FLOURE", + "nomCommune": "FLOURE" }, { - "codePostal": "16600", - "codeCommune": "16232", - "libelleAcheminement": "MORNAC", - "nomCommune": "MORNAC" + "codePostal": "12210", + "codeCommune": "12273", + "libelleAcheminement": "SOULAGES BONNEVAL", + "nomCommune": "SOULAGES BONNEVAL" }, { - "codePostal": "17400", - "codeCommune": "17459", - "libelleAcheminement": "VARAIZE", - "nomCommune": "VARAIZE" + "codePostal": "25190", + "codeCommune": "25061", + "libelleAcheminement": "BIEF", + "nomCommune": "BIEF" }, { - "codePostal": "57930", - "codeCommune": "57310", - "libelleAcheminement": "HELLERING LES FENETRANGE", - "nomCommune": "HELLERING LES FENETRANGE" + "codePostal": "24250", + "codeCommune": "24575", + "libelleAcheminement": "VEYRINES DE DOMME", + "nomCommune": "VEYRINES DE DOMME" }, { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "11140", + "codeCommune": "11147", + "libelleAcheminement": "FONTANES DE SAULT", + "nomCommune": "FONTANES DE SAULT" }, { - "codePostal": "16120", - "codeCommune": "16233", - "libelleAcheminement": "MOSNAC ST SIMEUX", - "nomCommune": "MOSNAC ST SIMEUX" + "codePostal": "12360", + "codeCommune": "12274", + "libelleAcheminement": "SYLVANES", + "nomCommune": "SYLVANES" }, { - "codePostal": "17100", - "codeCommune": "17462", - "libelleAcheminement": "VENERAND", - "nomCommune": "VENERAND" + "codePostal": "25330", + "codeCommune": "25070", + "libelleAcheminement": "BOLANDOZ", + "nomCommune": "BOLANDOZ" }, { - "codePostal": "57220", - "codeCommune": "57312", - "libelleAcheminement": "HELSTROFF", - "nomCommune": "HELSTROFF" + "codePostal": "24610", + "codeCommune": "24584", + "libelleAcheminement": "VILLEFRANCHE DE LONCHAT", + "nomCommune": "VILLEFRANCHE DE LONCHAT" }, { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "11360", + "codeCommune": "11157", + "libelleAcheminement": "FRAISSE DES CORBIERES", + "nomCommune": "FRAISSE DES CORBIERES" }, { - "codePostal": "16310", - "codeCommune": "16239", - "libelleAcheminement": "MOUZON", - "nomCommune": "MOUZON" + "codePostal": "12360", + "codeCommune": "12275", + "libelleAcheminement": "TAURIAC DE CAMARES", + "nomCommune": "TAURIAC DE CAMARES" }, { - "codePostal": "17330", - "codeCommune": "17464", - "libelleAcheminement": "VERGNE", - "nomCommune": "VERGNE" + "codePostal": "25210", + "codeCommune": "25074", + "libelleAcheminement": "BONNETAGE", + "nomCommune": "BONNETAGE" }, { - "codePostal": "57830", - "codeCommune": "57314", - "libelleAcheminement": "HEMING", - "nomCommune": "HEMING" + "codePostal": "24550", + "codeCommune": "24585", + "libelleAcheminement": "VILLEFRANCHE DU PERIGORD", + "nomCommune": "VILLEFRANCHE DU PERIGORD" }, { - "codePostal": "52210", - "codeCommune": "52151", - "libelleAcheminement": "COUR L EVEQUE", - "nomCommune": "COUR L EVEQUE" + "codePostal": "11270", + "codeCommune": "11159", + "libelleAcheminement": "GAJA LA SELVE", + "nomCommune": "GAJA LA SELVE" }, { - "codePostal": "16230", - "codeCommune": "16241", - "libelleAcheminement": "NANCLARS", - "nomCommune": "NANCLARS" + "codePostal": "12600", + "codeCommune": "12280", + "libelleAcheminement": "THERONDELS", + "nomCommune": "THERONDELS" }, { - "codePostal": "17510", - "codeCommune": "17477", - "libelleAcheminement": "VILLIERS COUTURE", - "nomCommune": "VILLIERS COUTURE" + "codePostal": "25360", + "codeCommune": "25078", + "libelleAcheminement": "BOUCLANS", + "nomCommune": "BOUCLANS" }, { - "codePostal": "57450", - "codeCommune": "57316", - "libelleAcheminement": "HENRIVILLE", - "nomCommune": "HENRIVILLE" + "codePostal": "25340", + "codeCommune": "25003", + "libelleAcheminement": "ABBENANS", + "nomCommune": "ABBENANS" }, { - "codePostal": "52330", - "codeCommune": "52157", - "libelleAcheminement": "CURMONT", - "nomCommune": "CURMONT" + "codePostal": "11250", + "codeCommune": "11169", + "libelleAcheminement": "GREFFEIL", + "nomCommune": "GREFFEIL" }, { - "codePostal": "16700", - "codeCommune": "16242", - "libelleAcheminement": "NANTEUIL EN VALLEE", - "nomCommune": "NANTEUIL EN VALLEE" + "codePostal": "13190", + "codeCommune": "13002", + "libelleAcheminement": "ALLAUCH", + "nomCommune": "ALLAUCH" }, { - "codePostal": "17510", - "codeCommune": "17478", - "libelleAcheminement": "VINAX", - "nomCommune": "VINAX" + "codePostal": "25150", + "codeCommune": "25082", + "libelleAcheminement": "BOURGUIGNON", + "nomCommune": "BOURGUIGNON" }, { - "codePostal": "57400", - "codeCommune": "57321", - "libelleAcheminement": "HESSE", - "nomCommune": "HESSE" + "codePostal": "25300", + "codeCommune": "25012", + "libelleAcheminement": "LES ALLIES", + "nomCommune": "LES ALLIES" }, { - "codePostal": "52190", - "codeCommune": "52158", - "libelleAcheminement": "CUSEY", - "nomCommune": "CUSEY" + "codePostal": "11330", + "codeCommune": "11187", + "libelleAcheminement": "LANET", + "nomCommune": "LANET" }, { - "codePostal": "16220", - "codeCommune": "16250", - "libelleAcheminement": "ORGEDEUIL", - "nomCommune": "ORGEDEUIL" + "codePostal": "13390", + "codeCommune": "13007", + "libelleAcheminement": "AURIOL", + "nomCommune": "AURIOL" }, { - "codePostal": "17400", - "codeCommune": "17481", - "libelleAcheminement": "VOISSAY", - "nomCommune": "VOISSAY" + "codePostal": "25340", + "codeCommune": "25087", + "libelleAcheminement": "BRANNE", + "nomCommune": "BRANNE" }, { - "codePostal": "57330", - "codeCommune": "57323", - "libelleAcheminement": "HETTANGE GRANDE", - "nomCommune": "HETTANGE GRANDE" + "codePostal": "25340", + "codeCommune": "25018", + "libelleAcheminement": "ANTEUIL", + "nomCommune": "ANTEUIL" }, { - "codePostal": "52240", - "codeCommune": "52161", - "libelleAcheminement": "DAILLECOURT", - "nomCommune": "DAILLECOURT" + "codePostal": "11600", + "codeCommune": "11194", + "libelleAcheminement": "LASTOURS", + "nomCommune": "LASTOURS" }, { - "codePostal": "16210", - "codeCommune": "16252", - "libelleAcheminement": "ORIVAL", - "nomCommune": "ORIVAL" + "codePostal": "13121", + "codeCommune": "13008", + "libelleAcheminement": "AURONS", + "nomCommune": "AURONS" }, { - "codePostal": "17840", - "codeCommune": "17486", - "libelleAcheminement": "LA BREE LES BAINS", - "nomCommune": "LA BREE LES BAINS" + "codePostal": "25250", + "codeCommune": "25093", + "libelleAcheminement": "BRETIGNEY", + "nomCommune": "BRETIGNEY" }, { - "codePostal": "57405", - "codeCommune": "57333", - "libelleAcheminement": "HOMMARTING", - "nomCommune": "HOMMARTING" + "codePostal": "25400", + "codeCommune": "25020", + "libelleAcheminement": "ARBOUANS", + "nomCommune": "ARBOUANS" }, { - "codePostal": "52270", - "codeCommune": "52173", - "libelleAcheminement": "DOMREMY LANDEVILLE", - "nomCommune": "DOMREMY LANDEVILLE" + "codePostal": "11400", + "codeCommune": "11195", + "libelleAcheminement": "LAURABUC", + "nomCommune": "LAURABUC" }, { - "codePostal": "16390", - "codeCommune": "16260", - "libelleAcheminement": "PILLAC", - "nomCommune": "PILLAC" + "codePostal": "13720", + "codeCommune": "13013", + "libelleAcheminement": "BELCODENE", + "nomCommune": "BELCODENE" }, { - "codePostal": "18410", - "codeCommune": "18011", - "libelleAcheminement": "ARGENT SUR SAULDRE", - "nomCommune": "ARGENT SUR SAULDRE" + "codePostal": "25600", + "codeCommune": "25097", + "libelleAcheminement": "BROGNARD", + "nomCommune": "BROGNARD" }, { - "codePostal": "57870", - "codeCommune": "57334", - "libelleAcheminement": "HOMMERT", - "nomCommune": "HOMMERT" + "codePostal": "25610", + "codeCommune": "25021", + "libelleAcheminement": "ARC ET SENANS", + "nomCommune": "ARC ET SENANS" }, { - "codePostal": "52150", - "codeCommune": "52174", - "libelleAcheminement": "DONCOURT SUR MEUSE", - "nomCommune": "DONCOURT SUR MEUSE" + "codePostal": "11300", + "codeCommune": "11197", + "libelleAcheminement": "LAURAGUEL", + "nomCommune": "LAURAGUEL" }, { - "codePostal": "16190", - "codeCommune": "16267", - "libelleAcheminement": "POULLIGNAC", - "nomCommune": "POULLIGNAC" + "codePostal": "13320", + "codeCommune": "13015", + "libelleAcheminement": "BOUC BEL AIR", + "nomCommune": "BOUC BEL AIR" }, { - "codePostal": "18220", - "codeCommune": "18019", - "libelleAcheminement": "AZY", - "nomCommune": "AZY" + "codePostal": "25320", + "codeCommune": "25103", + "libelleAcheminement": "BUSY", + "nomCommune": "BUSY" }, { - "codePostal": "57720", - "codeCommune": "57338", - "libelleAcheminement": "HOTTVILLER", - "nomCommune": "HOTTVILLER" + "codePostal": "25110", + "codeCommune": "25032", + "libelleAcheminement": "AUTECHAUX", + "nomCommune": "AUTECHAUX" }, { - "codePostal": "52230", - "codeCommune": "52187", - "libelleAcheminement": "EPIZON", - "nomCommune": "EPIZON" + "codePostal": "11240", + "codeCommune": "11204", + "libelleAcheminement": "LIGNAIROLLES", + "nomCommune": "LIGNAIROLLES" }, { - "codePostal": "16110", - "codeCommune": "16280", - "libelleAcheminement": "RIVIERES", - "nomCommune": "RIVIERES" + "codePostal": "13720", + "codeCommune": "13016", + "libelleAcheminement": "LA BOUILLADISSE", + "nomCommune": "LA BOUILLADISSE" }, { - "codePostal": "18210", - "codeCommune": "18021", - "libelleAcheminement": "BANNEGON", - "nomCommune": "BANNEGON" + "codePostal": "25440", + "codeCommune": "25104", + "libelleAcheminement": "BY", + "nomCommune": "BY" }, { - "codePostal": "57400", - "codeCommune": "57344", - "libelleAcheminement": "IMLING", - "nomCommune": "IMLING" + "codePostal": "25720", + "codeCommune": "25036", + "libelleAcheminement": "AVANNE AVENEY", + "nomCommune": "AVANNE AVENEY" }, { - "codePostal": "52270", - "codeCommune": "52187", - "libelleAcheminement": "EPIZON", - "nomCommune": "EPIZON" + "codePostal": "11410", + "codeCommune": "11208", + "libelleAcheminement": "LA LOUVIERE LAURAGAIS", + "nomCommune": "LA LOUVIERE LAURAGAIS" }, { - "codePostal": "16110", - "codeCommune": "16281", - "libelleAcheminement": "LA ROCHEFOUCAULD EN ANGOUMOIS", - "nomCommune": "LA ROCHEFOUCAULD EN ANGOUMOIS" + "codePostal": "13720", + "codeCommune": "13016", + "libelleAcheminement": "LA BOUILLADISSE", + "nomCommune": "LA BOUILLADISSE" }, { - "codePostal": "18260", - "codeCommune": "18022", - "libelleAcheminement": "BARLIEU", - "nomCommune": "BARLIEU" + "codePostal": "25320", + "codeCommune": "25105", + "libelleAcheminement": "BYANS SUR DOUBS", + "nomCommune": "BYANS SUR DOUBS" }, { - "codePostal": "57670", - "codeCommune": "57346", - "libelleAcheminement": "INSMING", - "nomCommune": "INSMING" + "codePostal": "25490", + "codeCommune": "25040", + "libelleAcheminement": "BADEVEL", + "nomCommune": "BADEVEL" }, { - "codePostal": "52410", - "codeCommune": "52194", - "libelleAcheminement": "EURVILLE BIENVILLE", - "nomCommune": "EURVILLE BIENVILLE" + "codePostal": "11120", + "codeCommune": "11212", + "libelleAcheminement": "MAILHAC", + "nomCommune": "MAILHAC" }, { - "codePostal": "16210", - "codeCommune": "16284", - "libelleAcheminement": "ROUFFIAC", - "nomCommune": "ROUFFIAC" + "codePostal": "13720", + "codeCommune": "13016", + "libelleAcheminement": "LA BOUILLADISSE", + "nomCommune": "LA BOUILLADISSE" }, { - "codePostal": "18800", - "codeCommune": "18023", - "libelleAcheminement": "BAUGY", - "nomCommune": "BAUGY" + "codePostal": "25380", + "codeCommune": "25113", + "libelleAcheminement": "CHAMESEY", + "nomCommune": "CHAMESEY" }, { - "codePostal": "57630", - "codeCommune": "57353", - "libelleAcheminement": "JUVELIZE", - "nomCommune": "JUVELIZE" + "codePostal": "25380", + "codeCommune": "25046", + "libelleAcheminement": "BATTENANS VARIN", + "nomCommune": "BATTENANS VARIN" }, { - "codePostal": "52500", - "codeCommune": "52197", - "libelleAcheminement": "FAYL BILLOT", - "nomCommune": "FAYL BILLOT" + "codePostal": "11300", + "codeCommune": "11214", + "libelleAcheminement": "MALRAS", + "nomCommune": "MALRAS" }, { - "codePostal": "16320", - "codeCommune": "16285", - "libelleAcheminement": "ROUGNAC", - "nomCommune": "ROUGNAC" + "codePostal": "13160", + "codeCommune": "13027", + "libelleAcheminement": "CHATEAURENARD", + "nomCommune": "CHATEAURENARD" }, { - "codePostal": "18320", - "codeCommune": "18025", - "libelleAcheminement": "BEFFES", - "nomCommune": "BEFFES" + "codePostal": "25330", + "codeCommune": "25120", + "libelleAcheminement": "CHANTRANS", + "nomCommune": "CHANTRANS" }, { - "codePostal": "57430", - "codeCommune": "57357", - "libelleAcheminement": "KAPPELKINGER", - "nomCommune": "KAPPELKINGER" + "codePostal": "25250", + "codeCommune": "25059", + "libelleAcheminement": "BEUTAL", + "nomCommune": "BEUTAL" }, { - "codePostal": "52500", - "codeCommune": "52197", - "libelleAcheminement": "FAYL BILLOT", - "nomCommune": "FAYL BILLOT" + "codePostal": "11300", + "codeCommune": "11216", + "libelleAcheminement": "MALVIES", + "nomCommune": "MALVIES" }, { - "codePostal": "16440", - "codeCommune": "16287", - "libelleAcheminement": "ROULLET ST ESTEPHE", - "nomCommune": "ROULLET ST ESTEPHE" + "codePostal": "13510", + "codeCommune": "13032", + "libelleAcheminement": "EGUILLES", + "nomCommune": "EGUILLES" }, { - "codePostal": "18210", - "codeCommune": "18029", - "libelleAcheminement": "BESSAIS LE FROMENTAL", - "nomCommune": "BESSAIS LE FROMENTAL" + "codePostal": "25440", + "codeCommune": "25126", + "libelleAcheminement": "CHARNAY", + "nomCommune": "CHARNAY" }, { - "codePostal": "57480", - "codeCommune": "57364", - "libelleAcheminement": "KIRSCH LES SIERCK", - "nomCommune": "KIRSCH LES SIERCK" + "codePostal": "25250", + "codeCommune": "25066", + "libelleAcheminement": "BLUSSANGEAUX", + "nomCommune": "BLUSSANGEAUX" }, { - "codePostal": "52300", - "codeCommune": "52199", - "libelleAcheminement": "FERRIERE ET LAFOLIE", - "nomCommune": "FERRIERE ET LAFOLIE" + "codePostal": "11120", + "codeCommune": "11217", + "libelleAcheminement": "MARCORIGNAN", + "nomCommune": "MARCORIGNAN" }, { - "codePostal": "16310", - "codeCommune": "16293", - "libelleAcheminement": "ST ADJUTORY", - "nomCommune": "ST ADJUTORY" + "codePostal": "13580", + "codeCommune": "13037", + "libelleAcheminement": "LA FARE LES OLIVIERS", + "nomCommune": "LA FARE LES OLIVIERS" }, { - "codePostal": "18120", - "codeCommune": "18036", - "libelleAcheminement": "BRINAY", - "nomCommune": "BRINAY" + "codePostal": "25640", + "codeCommune": "25132", + "libelleAcheminement": "CHATILLON GUYOTTE", + "nomCommune": "CHATILLON GUYOTTE" }, { - "codePostal": "57430", - "codeCommune": "57366", - "libelleAcheminement": "KIRVILLER", - "nomCommune": "KIRVILLER" + "codePostal": "25250", + "codeCommune": "25067", + "libelleAcheminement": "BLUSSANS", + "nomCommune": "BLUSSANS" }, { - "codePostal": "52250", - "codeCommune": "52200", - "libelleAcheminement": "FLAGEY", - "nomCommune": "FLAGEY" + "codePostal": "11330", + "codeCommune": "11224", + "libelleAcheminement": "MASSAC", + "nomCommune": "MASSAC" }, { - "codePostal": "16300", - "codeCommune": "16301", - "libelleAcheminement": "ST AULAIS LA CHAPELLE", - "nomCommune": "ST AULAIS LA CHAPELLE" + "codePostal": "13270", + "codeCommune": "13039", + "libelleAcheminement": "FOS SUR MER", + "nomCommune": "FOS SUR MER" }, { - "codePostal": "18120", - "codeCommune": "18044", - "libelleAcheminement": "CERBOIS", - "nomCommune": "CERBOIS" + "codePostal": "25440", + "codeCommune": "25143", + "libelleAcheminement": "CHAY", + "nomCommune": "CHAY" }, { - "codePostal": "57560", - "codeCommune": "57374", - "libelleAcheminement": "LAFRIMBOLLE", - "nomCommune": "LAFRIMBOLLE" + "codePostal": "25870", + "codeCommune": "25073", + "libelleAcheminement": "BONNAY", + "nomCommune": "BONNAY" }, { - "codePostal": "52700", - "codeCommune": "52204", - "libelleAcheminement": "FORCEY", - "nomCommune": "FORCEY" + "codePostal": "11140", + "codeCommune": "11229", + "libelleAcheminement": "MAZUBY", + "nomCommune": "MAZUBY" }, { - "codePostal": "16350", - "codeCommune": "16310", - "libelleAcheminement": "ST COUTANT", - "nomCommune": "ST COUTANT" + "codePostal": "13120", + "codeCommune": "13041", + "libelleAcheminement": "GARDANNE", + "nomCommune": "GARDANNE" }, { - "codePostal": "18380", - "codeCommune": "18047", - "libelleAcheminement": "LA CHAPELLE D ANGILLON", - "nomCommune": "LA CHAPELLE D ANGILLON" + "codePostal": "25770", + "codeCommune": "25147", + "libelleAcheminement": "CHEMAUDIN ET VAUX", + "nomCommune": "CHEMAUDIN ET VAUX" }, { - "codePostal": "57790", - "codeCommune": "57380", - "libelleAcheminement": "LANEUVEVILLE LES LORQUIN", - "nomCommune": "LANEUVEVILLE LES LORQUIN" + "codePostal": "25560", + "codeCommune": "25079", + "libelleAcheminement": "BOUJAILLES", + "nomCommune": "BOUJAILLES" }, { - "codePostal": "52320", - "codeCommune": "52214", - "libelleAcheminement": "LA GENEVROYE", - "nomCommune": "LA GENEVROYE" + "codePostal": "11140", + "codeCommune": "11230", + "libelleAcheminement": "MERIAL", + "nomCommune": "MERIAL" }, { - "codePostal": "16450", - "codeCommune": "16329", - "libelleAcheminement": "ST LAURENT DE CERIS", - "nomCommune": "ST LAURENT DE CERIS" + "codePostal": "13420", + "codeCommune": "13042", + "libelleAcheminement": "GEMENOS", + "nomCommune": "GEMENOS" }, { - "codePostal": "18210", - "codeCommune": "18052", - "libelleAcheminement": "CHARENTON DU CHER", - "nomCommune": "CHARENTON DU CHER" + "codePostal": "25170", + "codeCommune": "25150", + "libelleAcheminement": "CHEVIGNEY SUR L OGNON", + "nomCommune": "CHEVIGNEY SUR L OGNON" }, { - "codePostal": "57590", - "codeCommune": "57381", - "libelleAcheminement": "LANEUVEVILLE EN SAULNOIS", - "nomCommune": "LANEUVEVILLE EN SAULNOIS" + "codePostal": "25530", + "codeCommune": "25089", + "libelleAcheminement": "BREMONDANS", + "nomCommune": "BREMONDANS" }, { - "codePostal": "52230", - "codeCommune": "52218", - "libelleAcheminement": "GERMAY", - "nomCommune": "GERMAY" + "codePostal": "11410", + "codeCommune": "11239", + "libelleAcheminement": "MONTAURIOL", + "nomCommune": "MONTAURIOL" }, { - "codePostal": "16500", - "codeCommune": "16337", - "libelleAcheminement": "ST MAURICE DES LIONS", - "nomCommune": "ST MAURICE DES LIONS" + "codePostal": "13180", + "codeCommune": "13043", + "libelleAcheminement": "GIGNAC LA NERTHE", + "nomCommune": "GIGNAC LA NERTHE" }, { - "codePostal": "18290", - "codeCommune": "18055", - "libelleAcheminement": "CHAROST", - "nomCommune": "CHAROST" + "codePostal": "25330", + "codeCommune": "25155", + "libelleAcheminement": "CLERON", + "nomCommune": "CLERON" }, { - "codePostal": "57660", - "codeCommune": "57384", - "libelleAcheminement": "LANING", - "nomCommune": "LANING" + "codePostal": "25120", + "codeCommune": "25091", + "libelleAcheminement": "LES BRESEUX", + "nomCommune": "LES BRESEUX" }, { - "codePostal": "52500", - "codeCommune": "52223", - "libelleAcheminement": "GILLEY", - "nomCommune": "GILLEY" + "codePostal": "11320", + "codeCommune": "11243", + "libelleAcheminement": "MONTFERRAND", + "nomCommune": "MONTFERRAND" }, { - "codePostal": "16170", - "codeCommune": "16339", - "libelleAcheminement": "VAL D AUGE", - "nomCommune": "VAL D AUGE" + "codePostal": "13180", + "codeCommune": "13043", + "libelleAcheminement": "GIGNAC LA NERTHE", + "nomCommune": "GIGNAC LA NERTHE" }, { - "codePostal": "18800", - "codeCommune": "18056", - "libelleAcheminement": "CHASSY", - "nomCommune": "CHASSY" + "codePostal": "25340", + "codeCommune": "25156", + "libelleAcheminement": "PAYS DE CLERVAL", + "nomCommune": "PAYS DE CLERVAL" }, { - "codePostal": "57530", - "codeCommune": "57385", - "libelleAcheminement": "LAQUENEXY", - "nomCommune": "LAQUENEXY" + "codePostal": "25110", + "codeCommune": "25094", + "libelleAcheminement": "BRETIGNEY NOTRE DAME", + "nomCommune": "BRETIGNEY NOTRE DAME" }, { - "codePostal": "52330", - "codeCommune": "52232", - "libelleAcheminement": "GUINDRECOURT SUR BLAISE", - "nomCommune": "GUINDRECOURT SUR BLAISE" + "codePostal": "11230", + "codeCommune": "11249", + "libelleAcheminement": "MONTJARDIN", + "nomCommune": "MONTJARDIN" }, { - "codePostal": "16470", - "codeCommune": "16341", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "13850", + "codeCommune": "13046", + "libelleAcheminement": "GREASQUE", + "nomCommune": "GREASQUE" }, { - "codePostal": "18200", - "codeCommune": "18069", - "libelleAcheminement": "COLOMBIERS", - "nomCommune": "COLOMBIERS" + "codePostal": "25500", + "codeCommune": "25160", + "libelleAcheminement": "LES COMBES", + "nomCommune": "LES COMBES" }, { - "codePostal": "57480", - "codeCommune": "57388", - "libelleAcheminement": "LAUNSTROFF", - "nomCommune": "LAUNSTROFF" + "codePostal": "25440", + "codeCommune": "25098", + "libelleAcheminement": "BUFFARD", + "nomCommune": "BUFFARD" }, { - "codePostal": "52150", - "codeCommune": "52234", - "libelleAcheminement": "HACOURT", - "nomCommune": "HACOURT" + "codePostal": "11330", + "codeCommune": "11250", + "libelleAcheminement": "MONTJOI", + "nomCommune": "MONTJOI" }, { - "codePostal": "16210", - "codeCommune": "16347", - "libelleAcheminement": "ST ROMAIN", - "nomCommune": "ST ROMAIN" + "codePostal": "13410", + "codeCommune": "13050", + "libelleAcheminement": "LAMBESC", + "nomCommune": "LAMBESC" }, { - "codePostal": "18140", - "codeCommune": "18077", - "libelleAcheminement": "COUY", - "nomCommune": "COUY" + "codePostal": "25410", + "codeCommune": "25164", + "libelleAcheminement": "CORCONDRAY", + "nomCommune": "CORCONDRAY" }, { - "codePostal": "57720", - "codeCommune": "57393", - "libelleAcheminement": "LENGELSHEIM", - "nomCommune": "LENGELSHEIM" + "codePostal": "25520", + "codeCommune": "25099", + "libelleAcheminement": "BUGNY", + "nomCommune": "BUGNY" }, { - "codePostal": "52100", - "codeCommune": "52235", - "libelleAcheminement": "HALLIGNICOURT", - "nomCommune": "HALLIGNICOURT" + "codePostal": "11500", + "codeCommune": "11263", + "libelleAcheminement": "NEBIAS", + "nomCommune": "NEBIAS" }, { - "codePostal": "16290", - "codeCommune": "16348", - "libelleAcheminement": "ST SATURNIN", - "nomCommune": "ST SATURNIN" + "codePostal": "13117", + "codeCommune": "13056", + "libelleAcheminement": "MARTIGUES", + "nomCommune": "MARTIGUES" }, { - "codePostal": "18200", - "codeCommune": "18086", - "libelleAcheminement": "DREVANT", - "nomCommune": "DREVANT" + "codePostal": "25440", + "codeCommune": "25171", + "libelleAcheminement": "COURCELLES", + "nomCommune": "COURCELLES" }, { - "codePostal": "57660", - "codeCommune": "57398", - "libelleAcheminement": "LEYVILLER", - "nomCommune": "LEYVILLER" + "codePostal": "25170", + "codeCommune": "25101", + "libelleAcheminement": "BURGILLE", + "nomCommune": "BURGILLE" }, { - "codePostal": "52290", - "codeCommune": "52244", - "libelleAcheminement": "HUMBECOURT", - "nomCommune": "HUMBECOURT" + "codePostal": "11140", + "codeCommune": "11265", + "libelleAcheminement": "NIORT DE SAULT", + "nomCommune": "NIORT DE SAULT" }, { - "codePostal": "16480", - "codeCommune": "16365", - "libelleAcheminement": "SAUVIGNAC", - "nomCommune": "SAUVIGNAC" + "codePostal": "13500", + "codeCommune": "13056", + "libelleAcheminement": "MARTIGUES", + "nomCommune": "MARTIGUES" }, { - "codePostal": "18300", - "codeCommune": "18098", - "libelleAcheminement": "GARDEFORT", - "nomCommune": "GARDEFORT" + "codePostal": "25530", + "codeCommune": "25175", + "libelleAcheminement": "COURTETAIN ET SALANS", + "nomCommune": "COURTETAIN ET SALANS" }, { - "codePostal": "57420", - "codeCommune": "57403", - "libelleAcheminement": "LIEHON", - "nomCommune": "LIEHON" + "codePostal": "25290", + "codeCommune": "25106", + "libelleAcheminement": "CADEMENE", + "nomCommune": "CADEMENE" }, { - "codePostal": "52700", - "codeCommune": "52245", - "libelleAcheminement": "HUMBERVILLE", - "nomCommune": "HUMBERVILLE" + "codePostal": "11210", + "codeCommune": "11266", + "libelleAcheminement": "PORT LA NOUVELLE", + "nomCommune": "PORT LA NOUVELLE" }, { - "codePostal": "16380", - "codeCommune": "16372", - "libelleAcheminement": "SOUFFRIGNAC", - "nomCommune": "SOUFFRIGNAC" + "codePostal": "13103", + "codeCommune": "13057", + "libelleAcheminement": "MAS BLANC DES ALPILLES", + "nomCommune": "MAS BLANC DES ALPILLES" }, { - "codePostal": "18140", - "codeCommune": "18110", - "libelleAcheminement": "HERRY", - "nomCommune": "HERRY" + "codePostal": "25270", + "codeCommune": "25180", + "libelleAcheminement": "CROUZET MIGETTE", + "nomCommune": "CROUZET MIGETTE" }, { - "codePostal": "57650", - "codeCommune": "57411", - "libelleAcheminement": "LOMMERANGE", - "nomCommune": "LOMMERANGE" + "codePostal": "25300", + "codeCommune": "25110", + "libelleAcheminement": "CHAFFOIS", + "nomCommune": "CHAFFOIS" }, { - "codePostal": "52190", - "codeCommune": "52249", - "libelleAcheminement": "ISOMES", - "nomCommune": "ISOMES" + "codePostal": "11200", + "codeCommune": "11267", + "libelleAcheminement": "ORNAISONS", + "nomCommune": "ORNAISONS" }, { - "codePostal": "16240", - "codeCommune": "16381", - "libelleAcheminement": "THEIL RABIER", - "nomCommune": "THEIL RABIER" + "codePostal": "13890", + "codeCommune": "13065", + "libelleAcheminement": "MOURIES", + "nomCommune": "MOURIES" }, { - "codePostal": "18350", - "codeCommune": "18113", - "libelleAcheminement": "IGNOL", - "nomCommune": "IGNOL" + "codePostal": "25680", + "codeCommune": "25181", + "libelleAcheminement": "CUBRIAL", + "nomCommune": "CUBRIAL" }, { - "codePostal": "57050", - "codeCommune": "57412", - "libelleAcheminement": "LONGEVILLE LES METZ", - "nomCommune": "LONGEVILLE LES METZ" + "codePostal": "25220", + "codeCommune": "25111", + "libelleAcheminement": "CHALEZE", + "nomCommune": "CHALEZE" }, { - "codePostal": "52300", - "codeCommune": "52250", - "libelleAcheminement": "JOINVILLE", - "nomCommune": "JOINVILLE" + "codePostal": "11300", + "codeCommune": "11274", + "libelleAcheminement": "PAULIGNE", + "nomCommune": "PAULIGNE" }, { - "codePostal": "16330", - "codeCommune": "16393", - "libelleAcheminement": "VARS", - "nomCommune": "VARS" + "codePostal": "13640", + "codeCommune": "13084", + "libelleAcheminement": "LA ROQUE D ANTHERON", + "nomCommune": "LA ROQUE D ANTHERON" }, { - "codePostal": "18160", - "codeCommune": "18114", - "libelleAcheminement": "INEUIL", - "nomCommune": "INEUIL" + "codePostal": "25680", + "codeCommune": "25182", + "libelleAcheminement": "CUBRY", + "nomCommune": "CUBRY" }, { - "codePostal": "57510", - "codeCommune": "57419", - "libelleAcheminement": "LOUPERSHOUSE", - "nomCommune": "LOUPERSHOUSE" + "codePostal": "25640", + "codeCommune": "25117", + "libelleAcheminement": "CHAMPOUX", + "nomCommune": "CHAMPOUX" }, { - "codePostal": "52330", - "codeCommune": "52254", - "libelleAcheminement": "LACHAPELLE EN BLAISY", - "nomCommune": "LACHAPELLE EN BLAISY" + "codePostal": "11230", + "codeCommune": "11282", + "libelleAcheminement": "PEYREFITTE DU RAZES", + "nomCommune": "PEYREFITTE DU RAZES" }, { - "codePostal": "16140", - "codeCommune": "16397", - "libelleAcheminement": "VERDILLE", - "nomCommune": "VERDILLE" + "codePostal": "13740", + "codeCommune": "13088", + "libelleAcheminement": "LE ROVE", + "nomCommune": "LE ROVE" }, { - "codePostal": "18340", - "codeCommune": "18122", - "libelleAcheminement": "LAPAN", - "nomCommune": "LAPAN" + "codePostal": "25150", + "codeCommune": "25187", + "libelleAcheminement": "DAMBELIN", + "nomCommune": "DAMBELIN" }, { - "codePostal": "57580", - "codeCommune": "57425", - "libelleAcheminement": "LUPPY", - "nomCommune": "LUPPY" + "codePostal": "25470", + "codeCommune": "25124", + "libelleAcheminement": "CHARMAUVILLERS", + "nomCommune": "CHARMAUVILLERS" }, { - "codePostal": "52310", - "codeCommune": "52260", - "libelleAcheminement": "LAMANCINE", - "nomCommune": "LAMANCINE" + "codePostal": "11190", + "codeCommune": "11287", + "libelleAcheminement": "PEYROLLES", + "nomCommune": "PEYROLLES" }, { - "codePostal": "16310", - "codeCommune": "16398", - "libelleAcheminement": "VERNEUIL", - "nomCommune": "VERNEUIL" + "codePostal": "13740", + "codeCommune": "13088", + "libelleAcheminement": "LE ROVE", + "nomCommune": "LE ROVE" }, { - "codePostal": "18160", - "codeCommune": "18127", - "libelleAcheminement": "LIGNIERES", - "nomCommune": "LIGNIERES" + "codePostal": "25230", + "codeCommune": "25196", + "libelleAcheminement": "DASLE", + "nomCommune": "DASLE" }, { - "codePostal": "57935", - "codeCommune": "57426", - "libelleAcheminement": "LUTTANGE", - "nomCommune": "LUTTANGE" + "codePostal": "25380", + "codeCommune": "25125", + "libelleAcheminement": "CHARMOILLE", + "nomCommune": "CHARMOILLE" }, { - "codePostal": "52170", - "codeCommune": "52265", - "libelleAcheminement": "BAYARD SUR MARNE", - "nomCommune": "BAYARD SUR MARNE" + "codePostal": "11170", + "codeCommune": "11288", + "libelleAcheminement": "PEZENS", + "nomCommune": "PEZENS" }, { - "codePostal": "16130", - "codeCommune": "16399", - "libelleAcheminement": "VERRIERES", - "nomCommune": "VERRIERES" + "codePostal": "13250", + "codeCommune": "13092", + "libelleAcheminement": "ST CHAMAS", + "nomCommune": "ST CHAMAS" }, { - "codePostal": "18300", - "codeCommune": "18144", - "libelleAcheminement": "MENETOU RATEL", - "nomCommune": "MENETOU RATEL" + "codePostal": "25330", + "codeCommune": "25199", + "libelleAcheminement": "DESERVILLERS", + "nomCommune": "DESERVILLERS" }, { - "codePostal": "57730", - "codeCommune": "57428", - "libelleAcheminement": "MACHEREN", - "nomCommune": "MACHEREN" + "codePostal": "25240", + "codeCommune": "25131", + "libelleAcheminement": "CHATELBLANC", + "nomCommune": "CHATELBLANC" }, { - "codePostal": "52200", - "codeCommune": "52269", - "libelleAcheminement": "LANGRES", - "nomCommune": "LANGRES" + "codePostal": "11380", + "codeCommune": "11297", + "libelleAcheminement": "PRADELLES CABARDES", + "nomCommune": "PRADELLES CABARDES" }, { - "codePostal": "16510", - "codeCommune": "16400", - "libelleAcheminement": "VERTEUIL SUR CHARENTE", - "nomCommune": "VERTEUIL SUR CHARENTE" + "codePostal": "13115", + "codeCommune": "13099", + "libelleAcheminement": "ST PAUL LES DURANCE", + "nomCommune": "ST PAUL LES DURANCE" }, { - "codePostal": "18380", - "codeCommune": "18149", - "libelleAcheminement": "MERY ES BOIS", - "nomCommune": "MERY ES BOIS" + "codePostal": "25580", + "codeCommune": "25208", + "libelleAcheminement": "DURNES", + "nomCommune": "DURNES" }, { - "codePostal": "57590", - "codeCommune": "57440", - "libelleAcheminement": "MANHOUE", - "nomCommune": "MANHOUE" + "codePostal": "25870", + "codeCommune": "25133", + "libelleAcheminement": "CHATILLON LE DUC", + "nomCommune": "CHATILLON LE DUC" }, { - "codePostal": "52250", - "codeCommune": "52292", - "libelleAcheminement": "LONGEAU PERCEY", - "nomCommune": "LONGEAU PERCEY" + "codePostal": "11400", + "codeCommune": "11300", + "libelleAcheminement": "PUGINIER", + "nomCommune": "PUGINIER" }, { - "codePostal": "16350", - "codeCommune": "16403", - "libelleAcheminement": "LE VIEUX CERIER", - "nomCommune": "LE VIEUX CERIER" + "codePostal": "13119", + "codeCommune": "13101", + "libelleAcheminement": "ST SAVOURNIN", + "nomCommune": "ST SAVOURNIN" }, { - "codePostal": "18210", - "codeCommune": "18183", - "libelleAcheminement": "LE PONDY", - "nomCommune": "LE PONDY" + "codePostal": "25480", + "codeCommune": "25212", + "libelleAcheminement": "ECOLE VALENTIN", + "nomCommune": "ECOLE VALENTIN" }, { - "codePostal": "57690", - "codeCommune": "57444", - "libelleAcheminement": "MARANGE ZONDRANGE", - "nomCommune": "MARANGE ZONDRANGE" + "codePostal": "25170", + "codeCommune": "25136", + "libelleAcheminement": "CHAUCENNE", + "nomCommune": "CHAUCENNE" }, { - "codePostal": "52370", - "codeCommune": "52308", - "libelleAcheminement": "MARANVILLE", - "nomCommune": "MARANVILLE" + "codePostal": "11140", + "codeCommune": "11302", + "libelleAcheminement": "PUILAURENS", + "nomCommune": "PUILAURENS" }, { - "codePostal": "16110", - "codeCommune": "16406", - "libelleAcheminement": "MOULINS SUR TARDOIRE", - "nomCommune": "MOULINS SUR TARDOIRE" + "codePostal": "13530", + "codeCommune": "13110", + "libelleAcheminement": "TRETS", + "nomCommune": "TRETS" }, { - "codePostal": "18170", - "codeCommune": "18193", - "libelleAcheminement": "REZAY", - "nomCommune": "REZAY" + "codePostal": "25480", + "codeCommune": "25212", + "libelleAcheminement": "ECOLE VALENTIN", + "nomCommune": "ECOLE VALENTIN" }, { - "codePostal": "57155", - "codeCommune": "57447", - "libelleAcheminement": "MARLY", - "nomCommune": "MARLY" + "codePostal": "25530", + "codeCommune": "25141", + "libelleAcheminement": "CHAUX LES PASSAVANT", + "nomCommune": "CHAUX LES PASSAVANT" }, { - "codePostal": "52140", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "11230", + "codeCommune": "11303", + "libelleAcheminement": "PUIVERT", + "nomCommune": "PUIVERT" }, { - "codePostal": "16320", - "codeCommune": "16408", - "libelleAcheminement": "VILLEBOIS LAVALETTE", - "nomCommune": "VILLEBOIS LAVALETTE" + "codePostal": "13116", + "codeCommune": "13115", + "libelleAcheminement": "VERNEGUES", + "nomCommune": "VERNEGUES" }, { - "codePostal": "18400", - "codeCommune": "18207", - "libelleAcheminement": "ST FLORENT SUR CHER", - "nomCommune": "ST FLORENT SUR CHER" + "codePostal": "25140", + "codeCommune": "25213", + "libelleAcheminement": "LES ECORCES", + "nomCommune": "LES ECORCES" }, { - "codePostal": "57340", - "codeCommune": "57451", - "libelleAcheminement": "MARTHILLE", - "nomCommune": "MARTHILLE" + "codePostal": "25500", + "codeCommune": "25148", + "libelleAcheminement": "LA CHENALOTTE", + "nomCommune": "LA CHENALOTTE" }, { - "codePostal": "52140", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "11170", + "codeCommune": "11308", + "libelleAcheminement": "RAISSAC SUR LAMPY", + "nomCommune": "RAISSAC SUR LAMPY" }, { - "codePostal": "16220", - "codeCommune": "16421", - "libelleAcheminement": "VOUTHON", - "nomCommune": "VOUTHON" + "codePostal": "13127", + "codeCommune": "13117", + "libelleAcheminement": "VITROLLES", + "nomCommune": "VITROLLES" }, { - "codePostal": "18200", - "codeCommune": "18209", - "libelleAcheminement": "ST GEORGES DE POISIEUX", - "nomCommune": "ST GEORGES DE POISIEUX" + "codePostal": "25150", + "codeCommune": "25216", + "libelleAcheminement": "ECURCEY", + "nomCommune": "ECURCEY" }, { - "codePostal": "57220", - "codeCommune": "57455", - "libelleAcheminement": "MEGANGE", - "nomCommune": "MEGANGE" + "codePostal": "25340", + "codeCommune": "25156", + "libelleAcheminement": "PAYS DE CLERVAL", + "nomCommune": "PAYS DE CLERVAL" }, { - "codePostal": "52140", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "11160", + "codeCommune": "11315", + "libelleAcheminement": "RIEUX MINERVOIS", + "nomCommune": "RIEUX MINERVOIS" }, { - "codePostal": "16410", - "codeCommune": "16422", - "libelleAcheminement": "VOUZAN", - "nomCommune": "VOUZAN" + "codePostal": "13006", + "codeCommune": "13206", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 06" }, { - "codePostal": "18100", - "codeCommune": "18210", - "libelleAcheminement": "ST GEORGES SUR LA PREE", - "nomCommune": "ST GEORGES SUR LA PREE" + "codePostal": "25170", + "codeCommune": "25217", + "libelleAcheminement": "EMAGNY", + "nomCommune": "EMAGNY" }, { - "codePostal": "57480", - "codeCommune": "57459", - "libelleAcheminement": "MERSCHWEILLER", - "nomCommune": "MERSCHWEILLER" + "codePostal": "25410", + "codeCommune": "25162", + "libelleAcheminement": "CORCELLES FERRIERES", + "nomCommune": "CORCELLES FERRIERES" }, { - "codePostal": "52160", - "codeCommune": "52344", - "libelleAcheminement": "MOUILLERON", - "nomCommune": "MOUILLERON" + "codePostal": "11190", + "codeCommune": "11323", + "libelleAcheminement": "ROQUETAILLADE ET CONILHAC", + "nomCommune": "ROQUETAILLADE ET CONILHAC" }, { - "codePostal": "17500", - "codeCommune": "17006", - "libelleAcheminement": "ALLAS CHAMPAGNE", - "nomCommune": "ALLAS CHAMPAGNE" + "codePostal": "13008", + "codeCommune": "13208", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 08" }, { - "codePostal": "18390", - "codeCommune": "18213", - "libelleAcheminement": "ST GERMAIN DU PUY", - "nomCommune": "ST GERMAIN DU PUY" + "codePostal": "25330", + "codeCommune": "25223", + "libelleAcheminement": "ETERNOZ", + "nomCommune": "ETERNOZ" }, { - "codePostal": "57070", - "codeCommune": "57467", - "libelleAcheminement": "MEY", - "nomCommune": "MEY" + "codePostal": "25170", + "codeCommune": "25172", + "libelleAcheminement": "COURCHAPON", + "nomCommune": "COURCHAPON" }, { - "codePostal": "52170", - "codeCommune": "52347", - "libelleAcheminement": "NARCY", - "nomCommune": "NARCY" + "codePostal": "11500", + "codeCommune": "11350", + "libelleAcheminement": "ST JUST ET LE BEZU", + "nomCommune": "ST JUST ET LE BEZU" }, { - "codePostal": "17290", - "codeCommune": "17018", - "libelleAcheminement": "ARDILLIERES", - "nomCommune": "ARDILLIERES" + "codePostal": "13009", + "codeCommune": "13209", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 09" }, { - "codePostal": "18100", - "codeCommune": "18214", - "libelleAcheminement": "ST HILAIRE DE COURT", - "nomCommune": "ST HILAIRE DE COURT" + "codePostal": "25580", + "codeCommune": "25233", + "libelleAcheminement": "FALLERANS", + "nomCommune": "FALLERANS" }, { - "codePostal": "57370", - "codeCommune": "57468", - "libelleAcheminement": "MITTELBRONN", - "nomCommune": "MITTELBRONN" + "codePostal": "25380", + "codeCommune": "25173", + "libelleAcheminement": "COUR ST MAURICE", + "nomCommune": "COUR ST MAURICE" }, { - "codePostal": "52000", - "codeCommune": "52349", - "libelleAcheminement": "NEUILLY SUR SUIZE", - "nomCommune": "NEUILLY SUR SUIZE" + "codePostal": "11120", + "codeCommune": "11353", + "libelleAcheminement": "ST MARCEL SUR AUDE", + "nomCommune": "ST MARCEL SUR AUDE" }, { - "codePostal": "17400", - "codeCommune": "17022", - "libelleAcheminement": "ASNIERES LA GIRAUD", - "nomCommune": "ASNIERES LA GIRAUD" + "codePostal": "13009", + "codeCommune": "13209", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 09" }, { - "codePostal": "18330", - "codeCommune": "18219", - "libelleAcheminement": "ST LAURENT", - "nomCommune": "ST LAURENT" + "codePostal": "25470", + "codeCommune": "25234", + "libelleAcheminement": "FERRIERES LE LAC", + "nomCommune": "FERRIERES LE LAC" }, { - "codePostal": "57420", - "codeCommune": "57472", - "libelleAcheminement": "MONCHEUX", - "nomCommune": "MONCHEUX" + "codePostal": "25340", + "codeCommune": "25177", + "libelleAcheminement": "CROSEY LE GRAND", + "nomCommune": "CROSEY LE GRAND" }, { - "codePostal": "52800", - "codeCommune": "52352", - "libelleAcheminement": "NINVILLE", - "nomCommune": "NINVILLE" + "codePostal": "11120", + "codeCommune": "11360", + "libelleAcheminement": "ST NAZAIRE D AUDE", + "nomCommune": "ST NAZAIRE D AUDE" }, { - "codePostal": "17470", - "codeCommune": "17024", - "libelleAcheminement": "AULNAY", - "nomCommune": "AULNAY" + "codePostal": "13013", + "codeCommune": "13213", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 13" }, { - "codePostal": "18140", - "codeCommune": "18224", - "libelleAcheminement": "ST MARTIN DES CHAMPS", - "nomCommune": "ST MARTIN DES CHAMPS" + "codePostal": "25330", + "codeCommune": "25236", + "libelleAcheminement": "FERTANS", + "nomCommune": "FERTANS" }, { - "codePostal": "57810", - "codeCommune": "57473", - "libelleAcheminement": "MONCOURT", - "nomCommune": "MONCOURT" + "codePostal": "25420", + "codeCommune": "25191", + "libelleAcheminement": "DAMPIERRE SUR LE DOUBS", + "nomCommune": "DAMPIERRE SUR LE DOUBS" }, { - "codePostal": "52800", - "codeCommune": "52353", - "libelleAcheminement": "NOGENT", - "nomCommune": "NOGENT" + "codePostal": "11220", + "codeCommune": "11363", + "libelleAcheminement": "ST PIERRE DES CHAMPS", + "nomCommune": "ST PIERRE DES CHAMPS" }, { - "codePostal": "17770", - "codeCommune": "17025", - "libelleAcheminement": "AUMAGNE", - "nomCommune": "AUMAGNE" + "codePostal": "13013", + "codeCommune": "13213", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 13" }, { - "codePostal": "18700", - "codeCommune": "18227", - "libelleAcheminement": "STE MONTAINE", - "nomCommune": "STE MONTAINE" + "codePostal": "25190", + "codeCommune": "25239", + "libelleAcheminement": "FEULE", + "nomCommune": "FEULE" }, { - "codePostal": "57950", - "codeCommune": "57480", - "libelleAcheminement": "MONTIGNY LES METZ", - "nomCommune": "MONTIGNY LES METZ" + "codePostal": "25190", + "codeCommune": "25192", + "libelleAcheminement": "DAMPJOUX", + "nomCommune": "DAMPJOUX" }, { - "codePostal": "52250", - "codeCommune": "52364", - "libelleAcheminement": "ORCEVAUX", - "nomCommune": "ORCEVAUX" + "codePostal": "11600", + "codeCommune": "11372", + "libelleAcheminement": "SALSIGNE", + "nomCommune": "SALSIGNE" }, { - "codePostal": "17770", - "codeCommune": "17026", - "libelleAcheminement": "AUTHON EBEON", - "nomCommune": "AUTHON EBEON" + "codePostal": "13016", + "codeCommune": "13216", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 16" }, { - "codePostal": "18110", - "codeCommune": "18229", - "libelleAcheminement": "ST PALAIS", - "nomCommune": "ST PALAIS" + "codePostal": "25500", + "codeCommune": "25240", + "libelleAcheminement": "LES FINS", + "nomCommune": "LES FINS" }, { - "codePostal": "57600", - "codeCommune": "57484", - "libelleAcheminement": "MORSBACH", - "nomCommune": "MORSBACH" + "codePostal": "25410", + "codeCommune": "25195", + "libelleAcheminement": "DANNEMARIE SUR CRETE", + "nomCommune": "DANNEMARIE SUR CRETE" }, { - "codePostal": "52120", - "codeCommune": "52365", - "libelleAcheminement": "ORGES", - "nomCommune": "ORGES" + "codePostal": "11400", + "codeCommune": "11383", + "libelleAcheminement": "SOUILHE", + "nomCommune": "SOUILHE" }, { - "codePostal": "17800", - "codeCommune": "17027", - "libelleAcheminement": "AVY", - "nomCommune": "AVY" + "codePostal": "13016", + "codeCommune": "13216", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 16" }, { - "codePostal": "18370", - "codeCommune": "18232", - "libelleAcheminement": "ST PRIEST LA MARCHE", - "nomCommune": "ST PRIEST LA MARCHE" + "codePostal": "25370", + "codeCommune": "25252", + "libelleAcheminement": "FOURCATIER ET MAISON NEUVE", + "nomCommune": "FOURCATIER ET MAISON NEUVE" }, { - "codePostal": "57160", - "codeCommune": "57487", - "libelleAcheminement": "MOULINS LES METZ", - "nomCommune": "MOULINS LES METZ" + "codePostal": "25870", + "codeCommune": "25200", + "libelleAcheminement": "DEVECEY", + "nomCommune": "DEVECEY" }, { - "codePostal": "52300", - "codeCommune": "52370", - "libelleAcheminement": "OSNE LE VAL", - "nomCommune": "OSNE LE VAL" + "codePostal": "11800", + "codeCommune": "11397", + "libelleAcheminement": "TREBES", + "nomCommune": "TREBES" }, { - "codePostal": "17460", - "codeCommune": "17044", - "libelleAcheminement": "BERNEUIL", - "nomCommune": "BERNEUIL" + "codePostal": "14190", + "codeCommune": "14005", + "libelleAcheminement": "VALAMBRAY", + "nomCommune": "VALAMBRAY" }, { - "codePostal": "18370", - "codeCommune": "18234", - "libelleAcheminement": "ST SATURNIN", - "nomCommune": "ST SATURNIN" + "codePostal": "25190", + "codeCommune": "25261", + "libelleAcheminement": "FROIDEVAUX", + "nomCommune": "FROIDEVAUX" }, { - "codePostal": "57250", - "codeCommune": "57491", - "libelleAcheminement": "MOYEUVRE GRANDE", - "nomCommune": "MOYEUVRE GRANDE" + "codePostal": "25550", + "codeCommune": "25210", + "libelleAcheminement": "ECHENANS", + "nomCommune": "ECHENANS" }, { - "codePostal": "52150", - "codeCommune": "52372", - "libelleAcheminement": "OUTREMECOURT", - "nomCommune": "OUTREMECOURT" + "codePostal": "11610", + "codeCommune": "11404", + "libelleAcheminement": "VENTENAC CABARDES", + "nomCommune": "VENTENAC CABARDES" }, { - "codePostal": "17400", - "codeCommune": "17046", - "libelleAcheminement": "BIGNAY", - "nomCommune": "BIGNAY" + "codePostal": "14190", + "codeCommune": "14005", + "libelleAcheminement": "VALAMBRAY", + "nomCommune": "VALAMBRAY" }, { - "codePostal": "18290", - "codeCommune": "18244", - "libelleAcheminement": "SAUGY", - "nomCommune": "SAUGY" + "codePostal": "25390", + "codeCommune": "25262", + "libelleAcheminement": "FUANS", + "nomCommune": "FUANS" }, { - "codePostal": "57670", - "codeCommune": "57496", - "libelleAcheminement": "NEBING", - "nomCommune": "NEBING" + "codePostal": "25620", + "codeCommune": "25222", + "libelleAcheminement": "ETALANS", + "nomCommune": "ETALANS" }, { - "codePostal": "52700", - "codeCommune": "52373", - "libelleAcheminement": "OZIERES", - "nomCommune": "OZIERES" + "codePostal": "11580", + "codeCommune": "11406", + "libelleAcheminement": "VERAZA", + "nomCommune": "VERAZA" }, { - "codePostal": "17470", - "codeCommune": "17049", - "libelleAcheminement": "BLANZAY SUR BOUTONNE", - "nomCommune": "BLANZAY SUR BOUTONNE" + "codePostal": "14540", + "codeCommune": "14005", + "libelleAcheminement": "VALAMBRAY", + "nomCommune": "VALAMBRAY" }, { - "codePostal": "18360", - "codeCommune": "18245", - "libelleAcheminement": "SAULZAIS LE POTIER", - "nomCommune": "SAULZAIS LE POTIER" + "codePostal": "25240", + "codeCommune": "25263", + "libelleAcheminement": "GELLIN", + "nomCommune": "GELLIN" }, { - "codePostal": "57590", - "codeCommune": "57528", - "libelleAcheminement": "ORON", - "nomCommune": "ORON" + "codePostal": "25330", + "codeCommune": "25223", + "libelleAcheminement": "ETERNOZ", + "nomCommune": "ETERNOZ" }, { - "codePostal": "52600", - "codeCommune": "52375", - "libelleAcheminement": "PALAISEUL", - "nomCommune": "PALAISEUL" + "codePostal": "11250", + "codeCommune": "11420", + "libelleAcheminement": "VILLEBAZY", + "nomCommune": "VILLEBAZY" }, { - "codePostal": "17270", - "codeCommune": "17054", - "libelleAcheminement": "BORESSE ET MARTRON", - "nomCommune": "BORESSE ET MARTRON" + "codePostal": "14240", + "codeCommune": "14011", + "libelleAcheminement": "AURSEULLES", + "nomCommune": "AURSEULLES" }, { - "codePostal": "18190", - "codeCommune": "18250", - "libelleAcheminement": "SERRUELLES", - "nomCommune": "SERRUELLES" + "codePostal": "25870", + "codeCommune": "25265", + "libelleAcheminement": "GENEUILLE", + "nomCommune": "GENEUILLE" }, { - "codePostal": "57970", - "codeCommune": "57531", - "libelleAcheminement": "OUDRENNE", - "nomCommune": "OUDRENNE" + "codePostal": "25330", + "codeCommune": "25223", + "libelleAcheminement": "ETERNOZ", + "nomCommune": "ETERNOZ" }, { - "codePostal": "52200", - "codeCommune": "52383", - "libelleAcheminement": "PERRANCEY LES VIEUX MOULINS", - "nomCommune": "PERRANCEY LES VIEUX MOULINS" + "codePostal": "11230", + "codeCommune": "11424", + "libelleAcheminement": "VILLEFORT", + "nomCommune": "VILLEFORT" }, { - "codePostal": "17360", - "codeCommune": "17055", - "libelleAcheminement": "BOSCAMNANT", - "nomCommune": "BOSCAMNANT" + "codePostal": "14610", + "codeCommune": "14014", + "libelleAcheminement": "COLOMBY ANGUERNY", + "nomCommune": "COLOMBY ANGUERNY" }, { - "codePostal": "18140", - "codeCommune": "18251", - "libelleAcheminement": "SEVRY", - "nomCommune": "SEVRY" + "codePostal": "25510", + "codeCommune": "25268", + "libelleAcheminement": "GERMEFONTAINE", + "nomCommune": "GERMEFONTAINE" }, { - "codePostal": "57370", - "codeCommune": "57540", - "libelleAcheminement": "PHALSBOURG", - "nomCommune": "PHALSBOURG" + "codePostal": "25800", + "codeCommune": "25227", + "libelleAcheminement": "ETRAY", + "nomCommune": "ETRAY" }, { - "codePostal": "52160", - "codeCommune": "52384", - "libelleAcheminement": "PERROGNEY LES FONTAINES", - "nomCommune": "PERROGNEY LES FONTAINES" + "codePostal": "11300", + "codeCommune": "11427", + "libelleAcheminement": "VILLELONGUE D AUDE", + "nomCommune": "VILLELONGUE D AUDE" }, { - "codePostal": "17560", - "codeCommune": "17058", - "libelleAcheminement": "BOURCEFRANC LE CHAPUS", - "nomCommune": "BOURCEFRANC LE CHAPUS" + "codePostal": "14430", + "codeCommune": "14016", + "libelleAcheminement": "ANNEBAULT", + "nomCommune": "ANNEBAULT" }, { - "codePostal": "18260", - "codeCommune": "18256", - "libelleAcheminement": "SUBLIGNY", - "nomCommune": "SUBLIGNY" + "codePostal": "25650", + "codeCommune": "25271", + "libelleAcheminement": "GILLEY", + "nomCommune": "GILLEY" }, { - "codePostal": "57930", - "codeCommune": "57551", - "libelleAcheminement": "POSTROFF", - "nomCommune": "POSTROFF" + "codePostal": "25520", + "codeCommune": "25229", + "libelleAcheminement": "EVILLERS", + "nomCommune": "EVILLERS" }, { - "codePostal": "52500", - "codeCommune": "52388", - "libelleAcheminement": "PIERREMONT SUR AMANCE", - "nomCommune": "PIERREMONT SUR AMANCE" + "codePostal": "11110", + "codeCommune": "11441", + "libelleAcheminement": "VINASSAN", + "nomCommune": "VINASSAN" }, { - "codePostal": "17490", - "codeCommune": "17062", - "libelleAcheminement": "BRESDON", - "nomCommune": "BRESDON" + "codePostal": "14250", + "codeCommune": "14026", + "libelleAcheminement": "AUDRIEU", + "nomCommune": "AUDRIEU" }, { - "codePostal": "18210", - "codeCommune": "18261", - "libelleAcheminement": "THAUMIERS", - "nomCommune": "THAUMIERS" + "codePostal": "25190", + "codeCommune": "25275", + "libelleAcheminement": "GLERE", + "nomCommune": "GLERE" }, { - "codePostal": "57420", - "codeCommune": "57553", - "libelleAcheminement": "POURNOY LA CHETIVE", - "nomCommune": "POURNOY LA CHETIVE" + "codePostal": "25640", + "codeCommune": "25242", + "libelleAcheminement": "FLAGEY RIGNEY", + "nomCommune": "FLAGEY RIGNEY" }, { - "codePostal": "52500", - "codeCommune": "52388", - "libelleAcheminement": "PIERREMONT SUR AMANCE", - "nomCommune": "PIERREMONT SUR AMANCE" + "codePostal": "12360", + "codeCommune": "12009", + "libelleAcheminement": "ARNAC SUR DOURDOU", + "nomCommune": "ARNAC SUR DOURDOU" }, { - "codePostal": "17870", - "codeCommune": "17065", - "libelleAcheminement": "BREUIL MAGNE", - "nomCommune": "BREUIL MAGNE" + "codePostal": "14260", + "codeCommune": "14027", + "libelleAcheminement": "LES MONTS D AUNAY", + "nomCommune": "LES MONTS D AUNAY" }, { - "codePostal": "18190", - "codeCommune": "18270", - "libelleAcheminement": "VALLENAY", - "nomCommune": "VALLENAY" + "codePostal": "25190", + "codeCommune": "25275", + "libelleAcheminement": "GLERE", + "nomCommune": "GLERE" }, { - "codePostal": "57420", - "codeCommune": "57554", - "libelleAcheminement": "POURNOY LA GRASSE", - "nomCommune": "POURNOY LA GRASSE" + "codePostal": "25390", + "codeCommune": "25243", + "libelleAcheminement": "FLANGEBOUCHE", + "nomCommune": "FLANGEBOUCHE" }, { - "codePostal": "52500", - "codeCommune": "52390", - "libelleAcheminement": "PISSELOUP", - "nomCommune": "PISSELOUP" + "codePostal": "12290", + "codeCommune": "12010", + "libelleAcheminement": "ARQUES", + "nomCommune": "ARQUES" }, { - "codePostal": "17130", - "codeCommune": "17081", - "libelleAcheminement": "CHAMOUILLAC", - "nomCommune": "CHAMOUILLAC" + "codePostal": "14260", + "codeCommune": "14037", + "libelleAcheminement": "MALHERBE SUR AJON", + "nomCommune": "MALHERBE SUR AJON" }, { - "codePostal": "18190", - "codeCommune": "18270", - "libelleAcheminement": "VALLENAY", - "nomCommune": "VALLENAY" + "codePostal": "25440", + "codeCommune": "25283", + "libelleAcheminement": "GOUX SOUS LANDET", + "nomCommune": "GOUX SOUS LANDET" }, { - "codePostal": "57510", - "codeCommune": "57556", - "libelleAcheminement": "PUTTELANGE AUX LACS", - "nomCommune": "PUTTELANGE AUX LACS" + "codePostal": "25190", + "codeCommune": "25244", + "libelleAcheminement": "FLEUREY", + "nomCommune": "FLEUREY" }, { - "codePostal": "52500", - "codeCommune": "52394", - "libelleAcheminement": "POINSON LES FAYL", - "nomCommune": "POINSON LES FAYL" + "codePostal": "12380", + "codeCommune": "12019", + "libelleAcheminement": "BALAGUIER SUR RANCE", + "nomCommune": "BALAGUIER SUR RANCE" }, { - "codePostal": "17240", - "codeCommune": "17084", - "libelleAcheminement": "CHAMPAGNOLLES", - "nomCommune": "CHAMPAGNOLLES" + "codePostal": "14260", + "codeCommune": "14037", + "libelleAcheminement": "MALHERBE SUR AJON", + "nomCommune": "MALHERBE SUR AJON" }, { - "codePostal": "18110", - "codeCommune": "18271", - "libelleAcheminement": "VASSELAY", - "nomCommune": "VASSELAY" + "codePostal": "25650", + "codeCommune": "25303", + "libelleAcheminement": "HAUTERIVE LA FRESSE", + "nomCommune": "HAUTERIVE LA FRESSE" }, { - "codePostal": "57170", - "codeCommune": "57558", - "libelleAcheminement": "PUTTIGNY", - "nomCommune": "PUTTIGNY" + "codePostal": "25340", + "codeCommune": "25246", + "libelleAcheminement": "FONTAINE LES CLERVAL", + "nomCommune": "FONTAINE LES CLERVAL" }, { - "codePostal": "52400", - "codeCommune": "52400", - "libelleAcheminement": "LE CHATELET SUR MEUSE", - "nomCommune": "LE CHATELET SUR MEUSE" + "codePostal": "12200", + "codeCommune": "12021", + "libelleAcheminement": "LE BAS SEGALA", + "nomCommune": "LE BAS SEGALA" }, { - "codePostal": "17480", - "codeCommune": "17093", - "libelleAcheminement": "LE CHATEAU D OLERON", - "nomCommune": "LE CHATEAU D OLERON" + "codePostal": "14610", + "codeCommune": "14044", + "libelleAcheminement": "BASLY", + "nomCommune": "BASLY" }, { - "codePostal": "18300", - "codeCommune": "18272", - "libelleAcheminement": "VEAUGUES", - "nomCommune": "VEAUGUES" + "codePostal": "25620", + "codeCommune": "25305", + "libelleAcheminement": "L HOPITAL DU GROSBOIS", + "nomCommune": "L HOPITAL DU GROSBOIS" }, { - "codePostal": "57390", - "codeCommune": "57565", - "libelleAcheminement": "REDANGE", - "nomCommune": "REDANGE" + "codePostal": "25210", + "codeCommune": "25248", + "libelleAcheminement": "LES FONTENELLES", + "nomCommune": "LES FONTENELLES" }, { - "codePostal": "52400", - "codeCommune": "52400", - "libelleAcheminement": "LE CHATELET SUR MEUSE", - "nomCommune": "LE CHATELET SUR MEUSE" + "codePostal": "12390", + "codeCommune": "12024", + "libelleAcheminement": "BELCASTEL", + "nomCommune": "BELCASTEL" }, { - "codePostal": "17480", - "codeCommune": "17093", - "libelleAcheminement": "LE CHATEAU D OLERON", - "nomCommune": "LE CHATEAU D OLERON" + "codePostal": "14490", + "codeCommune": "14050", + "libelleAcheminement": "LA BAZOQUE", + "nomCommune": "LA BAZOQUE" }, { - "codePostal": "18800", - "codeCommune": "18282", - "libelleAcheminement": "VILLABON", - "nomCommune": "VILLABON" + "codePostal": "25340", + "codeCommune": "25306", + "libelleAcheminement": "L HOPITAL ST LIEFFROY", + "nomCommune": "L HOPITAL ST LIEFFROY" }, { - "codePostal": "57445", - "codeCommune": "57566", - "libelleAcheminement": "REDING", - "nomCommune": "REDING" + "codePostal": "25110", + "codeCommune": "25251", + "libelleAcheminement": "FOURBANNE", + "nomCommune": "FOURBANNE" }, { - "codePostal": "52700", - "codeCommune": "52407", - "libelleAcheminement": "PREZ SOUS LAFAUCHE", - "nomCommune": "PREZ SOUS LAFAUCHE" + "codePostal": "12310", + "codeCommune": "12026", + "libelleAcheminement": "BERTHOLENE", + "nomCommune": "BERTHOLENE" }, { - "codePostal": "17480", - "codeCommune": "17093", - "libelleAcheminement": "LE CHATEAU D OLERON", - "nomCommune": "LE CHATEAU D OLERON" + "codePostal": "14950", + "codeCommune": "14055", + "libelleAcheminement": "BEAUMONT EN AUGE", + "nomCommune": "BEAUMONT EN AUGE" }, { - "codePostal": "18260", - "codeCommune": "18284", - "libelleAcheminement": "VILLEGENON", - "nomCommune": "VILLEGENON" + "codePostal": "25250", + "codeCommune": "25311", + "libelleAcheminement": "HYEMONDANS", + "nomCommune": "HYEMONDANS" }, { - "codePostal": "57200", - "codeCommune": "57568", - "libelleAcheminement": "REMELFING", - "nomCommune": "REMELFING" + "codePostal": "25140", + "codeCommune": "25255", + "libelleAcheminement": "FOURNET BLANCHEROCHE", + "nomCommune": "FOURNET BLANCHEROCHE" }, { - "codePostal": "52140", - "codeCommune": "52415", - "libelleAcheminement": "RANCONNIERES", - "nomCommune": "RANCONNIERES" + "codePostal": "12300", + "codeCommune": "12028", + "libelleAcheminement": "BOISSE PENCHOT", + "nomCommune": "BOISSE PENCHOT" }, { - "codePostal": "17340", - "codeCommune": "17094", - "libelleAcheminement": "CHATELAILLON PLAGE", - "nomCommune": "CHATELAILLON PLAGE" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "19120", - "codeCommune": "19007", - "libelleAcheminement": "ALTILLAC", - "nomCommune": "ALTILLAC" + "codePostal": "25160", + "codeCommune": "25320", + "libelleAcheminement": "LABERGEMENT STE MARIE", + "nomCommune": "LABERGEMENT STE MARIE" }, { - "codePostal": "57580", - "codeCommune": "57572", - "libelleAcheminement": "REMILLY", - "nomCommune": "REMILLY" + "codePostal": "25560", + "codeCommune": "25259", + "libelleAcheminement": "FRASNE", + "nomCommune": "FRASNE" }, { - "codePostal": "52700", - "codeCommune": "52420", - "libelleAcheminement": "REYNEL", - "nomCommune": "REYNEL" + "codePostal": "12300", + "codeCommune": "12030", + "libelleAcheminement": "BOUILLAC", + "nomCommune": "BOUILLAC" }, { - "codePostal": "17210", - "codeCommune": "17095", - "libelleAcheminement": "CHATENET", - "nomCommune": "CHATENET" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "19320", - "codeCommune": "19010", - "libelleAcheminement": "ARGENTAT SUR DORDOGNE", - "nomCommune": "ARGENTAT SUR DORDOGNE" + "codePostal": "25130", + "codeCommune": "25321", + "libelleAcheminement": "VILLERS LE LAC", + "nomCommune": "VILLERS LE LAC" }, { - "codePostal": "57130", - "codeCommune": "57578", - "libelleAcheminement": "REZONVILLE VIONVILLE", - "nomCommune": "REZONVILLE VIONVILLE" + "codePostal": "25660", + "codeCommune": "25267", + "libelleAcheminement": "GENNES", + "nomCommune": "GENNES" }, { - "codePostal": "52000", - "codeCommune": "52421", - "libelleAcheminement": "RIAUCOURT", - "nomCommune": "RIAUCOURT" + "codePostal": "12390", + "codeCommune": "12031", + "libelleAcheminement": "BOURNAZEL", + "nomCommune": "BOURNAZEL" }, { - "codePostal": "17470", - "codeCommune": "17101", - "libelleAcheminement": "CHERBONNIERES", - "nomCommune": "CHERBONNIERES" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "19400", - "codeCommune": "19010", - "libelleAcheminement": "ARGENTAT SUR DORDOGNE", - "nomCommune": "ARGENTAT SUR DORDOGNE" + "codePostal": "25550", + "codeCommune": "25322", + "libelleAcheminement": "LAIRE", + "nomCommune": "LAIRE" }, { - "codePostal": "57720", - "codeCommune": "57590", - "libelleAcheminement": "ROLBING", - "nomCommune": "ROLBING" + "codePostal": "25680", + "codeCommune": "25277", + "libelleAcheminement": "GONDENANS LES MOULINS", + "nomCommune": "GONDENANS LES MOULINS" }, { - "codePostal": "52700", - "codeCommune": "52428", - "libelleAcheminement": "ROCHEFORT SUR LA COTE", - "nomCommune": "ROCHEFORT SUR LA COTE" + "codePostal": "12340", + "codeCommune": "12033", + "libelleAcheminement": "BOZOULS", + "nomCommune": "BOZOULS" }, { - "codePostal": "17500", - "codeCommune": "17108", - "libelleAcheminement": "CLAM", - "nomCommune": "CLAM" + "codePostal": "14710", + "codeCommune": "14063", + "libelleAcheminement": "BERNESQ", + "nomCommune": "BERNESQ" }, { - "codePostal": "19120", - "codeCommune": "19012", - "libelleAcheminement": "ASTAILLAC", - "nomCommune": "ASTAILLAC" + "codePostal": "25170", + "codeCommune": "25326", + "libelleAcheminement": "LANTENNE VERTIERE", + "nomCommune": "LANTENNE VERTIERE" }, { - "codePostal": "57930", - "codeCommune": "57592", - "libelleAcheminement": "ROMELFING", - "nomCommune": "ROMELFING" + "codePostal": "25570", + "codeCommune": "25285", + "libelleAcheminement": "GRAND COMBE CHATELEU", + "nomCommune": "GRAND COMBE CHATELEU" }, { - "codePostal": "52210", - "codeCommune": "52431", - "libelleAcheminement": "ROCHETAILLEE", - "nomCommune": "ROCHETAILLEE" + "codePostal": "12450", + "codeCommune": "12043", + "libelleAcheminement": "CALMONT", + "nomCommune": "CALMONT" }, { - "codePostal": "17220", - "codeCommune": "17109", - "libelleAcheminement": "CLAVETTE", - "nomCommune": "CLAVETTE" + "codePostal": "14112", + "codeCommune": "14068", + "libelleAcheminement": "BIEVILLE BEUVILLE", + "nomCommune": "BIEVILLE BEUVILLE" }, { - "codePostal": "19430", - "codeCommune": "19017", - "libelleAcheminement": "BASSIGNAC LE BAS", - "nomCommune": "BASSIGNAC LE BAS" + "codePostal": "25170", + "codeCommune": "25332", + "libelleAcheminement": "LAVERNAY", + "nomCommune": "LAVERNAY" }, { - "codePostal": "57160", - "codeCommune": "57601", - "libelleAcheminement": "ROZERIEULLES", - "nomCommune": "ROZERIEULLES" + "codePostal": "25380", + "codeCommune": "25290", + "libelleAcheminement": "LA GRANGE", + "nomCommune": "LA GRANGE" }, { - "codePostal": "52260", - "codeCommune": "52432", - "libelleAcheminement": "ROLAMPONT", - "nomCommune": "ROLAMPONT" + "codePostal": "12450", + "codeCommune": "12043", + "libelleAcheminement": "CALMONT", + "nomCommune": "CALMONT" }, { - "codePostal": "17330", - "codeCommune": "17124", - "libelleAcheminement": "COURANT", - "nomCommune": "COURANT" + "codePostal": "14700", + "codeCommune": "14087", + "libelleAcheminement": "BONNOEIL", + "nomCommune": "BONNOEIL" }, { - "codePostal": "19430", - "codeCommune": "19034", - "libelleAcheminement": "CAMPS ST MATHURIN LEOBAZEL", - "nomCommune": "CAMPS ST MATHURIN LEOBAZEL" + "codePostal": "25270", + "codeCommune": "25334", + "libelleAcheminement": "LEVIER", + "nomCommune": "LEVIER" }, { - "codePostal": "57640", - "codeCommune": "57607", - "libelleAcheminement": "STE BARBE", - "nomCommune": "STE BARBE" + "codePostal": "25370", + "codeCommune": "25308", + "libelleAcheminement": "LES HOPITAUX VIEUX", + "nomCommune": "LES HOPITAUX VIEUX" }, { - "codePostal": "52160", - "codeCommune": "52439", - "libelleAcheminement": "ROUVRES SUR AUBE", - "nomCommune": "ROUVRES SUR AUBE" + "codePostal": "12800", + "codeCommune": "12046", + "libelleAcheminement": "CAMJAC", + "nomCommune": "CAMJAC" }, { - "codePostal": "17400", - "codeCommune": "17125", - "libelleAcheminement": "COURCELLES", - "nomCommune": "COURCELLES" + "codePostal": "14540", + "codeCommune": "14092", + "libelleAcheminement": "BOURGUEBUS", + "nomCommune": "BOURGUEBUS" }, { - "codePostal": "19190", - "codeCommune": "19048", - "libelleAcheminement": "LE CHASTANG", - "nomCommune": "LE CHASTANG" + "codePostal": "25330", + "codeCommune": "25338", + "libelleAcheminement": "LIZINE", + "nomCommune": "LIZINE" }, { - "codePostal": "57320", - "codeCommune": "57610", - "libelleAcheminement": "ST FRANCOIS LACROIX", - "nomCommune": "ST FRANCOIS LACROIX" + "codePostal": "25110", + "codeCommune": "25312", + "libelleAcheminement": "HYEVRE MAGNY", + "nomCommune": "HYEVRE MAGNY" }, { - "codePostal": "52230", - "codeCommune": "52443", - "libelleAcheminement": "SAILLY", - "nomCommune": "SAILLY" + "codePostal": "12700", + "codeCommune": "12052", + "libelleAcheminement": "CAPDENAC GARE", + "nomCommune": "CAPDENAC GARE" }, { - "codePostal": "17160", - "codeCommune": "17126", - "libelleAcheminement": "COURCERAC", - "nomCommune": "COURCERAC" + "codePostal": "14250", + "codeCommune": "14098", + "libelleAcheminement": "THUE ET MUE", + "nomCommune": "THUE ET MUE" }, { - "codePostal": "19290", - "codeCommune": "19052", - "libelleAcheminement": "CHAVANAC", - "nomCommune": "CHAVANAC" + "codePostal": "25330", + "codeCommune": "25346", + "libelleAcheminement": "LONGEVILLE", + "nomCommune": "LONGEVILLE" }, { - "codePostal": "57640", - "codeCommune": "57612", - "libelleAcheminement": "ST HUBERT", - "nomCommune": "ST HUBERT" + "codePostal": "25550", + "codeCommune": "25316", + "libelleAcheminement": "ISSANS", + "nomCommune": "ISSANS" }, { - "codePostal": "52700", - "codeCommune": "52444", - "libelleAcheminement": "ST BLIN", - "nomCommune": "ST BLIN" + "codePostal": "12240", + "codeCommune": "12059", + "libelleAcheminement": "CASTANET", + "nomCommune": "CASTANET" }, { - "codePostal": "17170", - "codeCommune": "17127", - "libelleAcheminement": "COURCON", - "nomCommune": "COURCON" + "codePostal": "14160", + "codeCommune": "14110", + "libelleAcheminement": "BRUCOURT", + "nomCommune": "BRUCOURT" }, { - "codePostal": "19200", - "codeCommune": "19053", - "libelleAcheminement": "CHAVEROCHE", - "nomCommune": "CHAVEROCHE" + "codePostal": "25370", + "codeCommune": "25348", + "libelleAcheminement": "LONGEVILLES MONT D OR", + "nomCommune": "LONGEVILLES MONT D OR" }, { - "codePostal": "57070", - "codeCommune": "57616", - "libelleAcheminement": "ST JULIEN LES METZ", - "nomCommune": "ST JULIEN LES METZ" + "codePostal": "25530", + "codeCommune": "25325", + "libelleAcheminement": "LANDRESSE", + "nomCommune": "LANDRESSE" }, { - "codePostal": "52190", - "codeCommune": "52445", - "libelleAcheminement": "ST BROINGT LE BOIS", - "nomCommune": "ST BROINGT LE BOIS" + "codePostal": "12800", + "codeCommune": "12060", + "libelleAcheminement": "CASTELMARY", + "nomCommune": "CASTELMARY" }, { - "codePostal": "17350", - "codeCommune": "17134", - "libelleAcheminement": "CRAZANNES", - "nomCommune": "CRAZANNES" + "codePostal": "14250", + "codeCommune": "14111", + "libelleAcheminement": "BUCEELS", + "nomCommune": "BUCEELS" }, { - "codePostal": "19120", - "codeCommune": "19054", - "libelleAcheminement": "CHENAILLER MASCHEIX", - "nomCommune": "CHENAILLER MASCHEIX" + "codePostal": "25110", + "codeCommune": "25354", + "libelleAcheminement": "LUXIOL", + "nomCommune": "LUXIOL" }, { - "codePostal": "57170", - "codeCommune": "57625", - "libelleAcheminement": "SALONNES", - "nomCommune": "SALONNES" + "codePostal": "25260", + "codeCommune": "25345", + "libelleAcheminement": "LONGEVELLE SUR DOUBS", + "nomCommune": "LONGEVELLE SUR DOUBS" }, { - "codePostal": "52200", - "codeCommune": "52449", - "libelleAcheminement": "SAINTS GEOSMES", - "nomCommune": "SAINTS GEOSMES" + "codePostal": "12500", + "codeCommune": "12061", + "libelleAcheminement": "CASTELNAU DE MANDAILLES", + "nomCommune": "CASTELNAU DE MANDAILLES" }, { - "codePostal": "17330", - "codeCommune": "17139", - "libelleAcheminement": "DOEUIL SUR LE MIGNON", - "nomCommune": "DOEUIL SUR LE MIGNON" + "codePostal": "14330", + "codeCommune": "14138", + "libelleAcheminement": "CARTIGNY L EPINAY", + "nomCommune": "CARTIGNY L EPINAY" }, { - "codePostal": "19300", - "codeCommune": "19070", - "libelleAcheminement": "DARNETS", - "nomCommune": "DARNETS" + "codePostal": "25120", + "codeCommune": "25356", + "libelleAcheminement": "MAICHE", + "nomCommune": "MAICHE" }, { - "codePostal": "57200", - "codeCommune": "57631", - "libelleAcheminement": "SARREGUEMINES", - "nomCommune": "SARREGUEMINES" + "codePostal": "25360", + "codeCommune": "25355", + "libelleAcheminement": "MAGNY CHATELARD", + "nomCommune": "MAGNY CHATELARD" }, { - "codePostal": "52210", - "codeCommune": "52450", - "libelleAcheminement": "ST LOUP SUR AUJON", - "nomCommune": "ST LOUP SUR AUJON" + "codePostal": "12620", + "codeCommune": "12062", + "libelleAcheminement": "CASTELNAU PEGAYROLS", + "nomCommune": "CASTELNAU PEGAYROLS" }, { - "codePostal": "17139", - "codeCommune": "17142", - "libelleAcheminement": "DOMPIERRE SUR MER", - "nomCommune": "DOMPIERRE SUR MER" + "codePostal": "14240", + "codeCommune": "14143", + "libelleAcheminement": "CAUMONT SUR AURE", + "nomCommune": "CAUMONT SUR AURE" }, { - "codePostal": "19170", - "codeCommune": "19074", - "libelleAcheminement": "L EGLISE AUX BOIS", - "nomCommune": "L EGLISE AUX BOIS" + "codePostal": "25620", + "codeCommune": "25360", + "libelleAcheminement": "MALBRANS", + "nomCommune": "MALBRANS" }, { - "codePostal": "57200", - "codeCommune": "57631", - "libelleAcheminement": "SARREGUEMINES", - "nomCommune": "SARREGUEMINES" + "codePostal": "25330", + "codeCommune": "25359", + "libelleAcheminement": "MALANS", + "nomCommune": "MALANS" }, { - "codePostal": "52200", - "codeCommune": "52453", - "libelleAcheminement": "ST MAURICE", - "nomCommune": "ST MAURICE" + "codePostal": "12500", + "codeCommune": "12064", + "libelleAcheminement": "LE CAYROL", + "nomCommune": "LE CAYROL" }, { - "codePostal": "17139", - "codeCommune": "17142", - "libelleAcheminement": "DOMPIERRE SUR MER", - "nomCommune": "DOMPIERRE SUR MER" + "codePostal": "14240", + "codeCommune": "14143", + "libelleAcheminement": "CAUMONT SUR AURE", + "nomCommune": "CAUMONT SUR AURE" }, { - "codePostal": "19140", - "codeCommune": "19076", - "libelleAcheminement": "ESPARTIGNAC", - "nomCommune": "ESPARTIGNAC" + "codePostal": "25620", + "codeCommune": "25364", + "libelleAcheminement": "MAMIROLLE", + "nomCommune": "MAMIROLLE" }, { - "codePostal": "57420", - "codeCommune": "57653", - "libelleAcheminement": "SILLY EN SAULNOIS", - "nomCommune": "SILLY EN SAULNOIS" + "codePostal": "25160", + "codeCommune": "25361", + "libelleAcheminement": "MALBUISSON", + "nomCommune": "MALBUISSON" }, { - "codePostal": "52150", - "codeCommune": "52455", - "libelleAcheminement": "ST THIEBAULT", - "nomCommune": "ST THIEBAULT" + "codePostal": "12520", + "codeCommune": "12070", + "libelleAcheminement": "COMPEYRE", + "nomCommune": "COMPEYRE" }, { - "codePostal": "17620", - "codeCommune": "17146", - "libelleAcheminement": "ECHILLAIS", - "nomCommune": "ECHILLAIS" + "codePostal": "14770", + "codeCommune": "14146", + "libelleAcheminement": "CAUVILLE", + "nomCommune": "CAUVILLE" }, { - "codePostal": "19410", - "codeCommune": "19078", - "libelleAcheminement": "ESTIVAUX", - "nomCommune": "ESTIVAUX" + "codePostal": "25250", + "codeCommune": "25369", + "libelleAcheminement": "MARVELISE", + "nomCommune": "MARVELISE" }, { - "codePostal": "57350", - "codeCommune": "57659", - "libelleAcheminement": "SPICHEREN", - "nomCommune": "SPICHEREN" + "codePostal": "25160", + "codeCommune": "25362", + "libelleAcheminement": "MALPAS", + "nomCommune": "MALPAS" }, { - "codePostal": "52140", - "codeCommune": "52461", - "libelleAcheminement": "SARREY", - "nomCommune": "SARREY" + "codePostal": "12470", + "codeCommune": "12074", + "libelleAcheminement": "CONDOM D AUBRAC", + "nomCommune": "CONDOM D AUBRAC" }, { - "codePostal": "17600", - "codeCommune": "17151", - "libelleAcheminement": "L EGUILLE", - "nomCommune": "L EGUILLE" + "codePostal": "14130", + "codeCommune": "14161", + "libelleAcheminement": "CLARBEC", + "nomCommune": "CLARBEC" }, { - "codePostal": "19380", - "codeCommune": "19084", - "libelleAcheminement": "FORGES", - "nomCommune": "FORGES" + "codePostal": "25700", + "codeCommune": "25370", + "libelleAcheminement": "MATHAY", + "nomCommune": "MATHAY" }, { - "codePostal": "57350", - "codeCommune": "57660", - "libelleAcheminement": "STIRING WENDEL", - "nomCommune": "STIRING WENDEL" + "codePostal": "25350", + "codeCommune": "25367", + "libelleAcheminement": "MANDEURE", + "nomCommune": "MANDEURE" }, { - "codePostal": "52230", - "codeCommune": "52463", - "libelleAcheminement": "SAUDRON", - "nomCommune": "SAUDRON" + "codePostal": "12320", + "codeCommune": "12076", + "libelleAcheminement": "CONQUES EN ROUERGUE", + "nomCommune": "CONQUES EN ROUERGUE" }, { - "codePostal": "17120", - "codeCommune": "17152", - "libelleAcheminement": "EPARGNES", - "nomCommune": "EPARGNES" + "codePostal": "14480", + "codeCommune": "14169", + "libelleAcheminement": "COLOMBIERS SUR SEULLES", + "nomCommune": "COLOMBIERS SUR SEULLES" }, { - "codePostal": "19170", - "codeCommune": "19087", - "libelleAcheminement": "GOURDON MURAT", - "nomCommune": "GOURDON MURAT" + "codePostal": "25410", + "codeCommune": "25374", + "libelleAcheminement": "MERCEY LE GRAND", + "nomCommune": "MERCEY LE GRAND" }, { - "codePostal": "57980", - "codeCommune": "57665", - "libelleAcheminement": "TENTELING", - "nomCommune": "TENTELING" + "codePostal": "25210", + "codeCommune": "25373", + "libelleAcheminement": "LE MEMONT", + "nomCommune": "LE MEMONT" }, { - "codePostal": "52700", - "codeCommune": "52468", - "libelleAcheminement": "SEMILLY", - "nomCommune": "SEMILLY" + "codePostal": "12110", + "codeCommune": "12083", + "libelleAcheminement": "CRANSAC", + "nomCommune": "CRANSAC" }, { - "codePostal": "17750", - "codeCommune": "17155", - "libelleAcheminement": "ETAULES", - "nomCommune": "ETAULES" + "codePostal": "14100", + "codeCommune": "14193", + "libelleAcheminement": "COURTONNE LA MEURDRAC", + "nomCommune": "COURTONNE LA MEURDRAC" }, { - "codePostal": "19400", - "codeCommune": "19091", - "libelleAcheminement": "HAUTEFAGE", - "nomCommune": "HAUTEFAGE" + "codePostal": "25170", + "codeCommune": "25383", + "libelleAcheminement": "MONCLEY", + "nomCommune": "MONCLEY" }, { - "codePostal": "57180", - "codeCommune": "57666", - "libelleAcheminement": "TERVILLE", - "nomCommune": "TERVILLE" + "codePostal": "25680", + "codeCommune": "25377", + "libelleAcheminement": "MESANDANS", + "nomCommune": "MESANDANS" }, { - "codePostal": "52000", - "codeCommune": "52469", - "libelleAcheminement": "SEMOUTIERS MONTSAON", - "nomCommune": "SEMOUTIERS MONTSAON" + "codePostal": "12000", + "codeCommune": "12090", + "libelleAcheminement": "DRUELLE BALSAC", + "nomCommune": "DRUELLE BALSAC" }, { - "codePostal": "17240", - "codeCommune": "17160", - "libelleAcheminement": "FLOIRAC", - "nomCommune": "FLOIRAC" + "codePostal": "14290", + "codeCommune": "14194", + "libelleAcheminement": "COURTONNE LES DEUX EGLISES", + "nomCommune": "COURTONNE LES DEUX EGLISES" }, { - "codePostal": "19350", - "codeCommune": "19094", - "libelleAcheminement": "JUILLAC", - "nomCommune": "JUILLAC" + "codePostal": "25210", + "codeCommune": "25391", + "libelleAcheminement": "MONT DE LAVAL", + "nomCommune": "MONT DE LAVAL" }, { - "codePostal": "57590", - "codeCommune": "57674", - "libelleAcheminement": "TINCRY", - "nomCommune": "TINCRY" + "codePostal": "25370", + "codeCommune": "25380", + "libelleAcheminement": "METABIEF", + "nomCommune": "METABIEF" }, { - "codePostal": "52130", - "codeCommune": "52475", - "libelleAcheminement": "SOMMANCOURT", - "nomCommune": "SOMMANCOURT" + "codePostal": "12140", + "codeCommune": "12093", + "libelleAcheminement": "LE FEL", + "nomCommune": "LE FEL" }, { - "codePostal": "17290", - "codeCommune": "17166", - "libelleAcheminement": "FORGES", - "nomCommune": "FORGES" + "codePostal": "14480", + "codeCommune": "14200", + "libelleAcheminement": "CREULLY SUR SEULLES", + "nomCommune": "CREULLY SUR SEULLES" }, { - "codePostal": "19170", - "codeCommune": "19095", - "libelleAcheminement": "LACELLE", - "nomCommune": "LACELLE" + "codePostal": "25120", + "codeCommune": "25392", + "libelleAcheminement": "MONT DE VOUGNEY", + "nomCommune": "MONT DE VOUGNEY" }, { - "codePostal": "57670", - "codeCommune": "57675", - "libelleAcheminement": "TORCHEVILLE", - "nomCommune": "TORCHEVILLE" + "codePostal": "25680", + "codeCommune": "25385", + "libelleAcheminement": "MONTAGNEY SERVIGNEY", + "nomCommune": "MONTAGNEY SERVIGNEY" }, { - "codePostal": "52300", - "codeCommune": "52484", - "libelleAcheminement": "SUZANNECOURT", - "nomCommune": "SUZANNECOURT" + "codePostal": "12310", + "codeCommune": "12107", + "libelleAcheminement": "GAILLAC D AVEYRON", + "nomCommune": "GAILLAC D AVEYRON" }, { - "codePostal": "17360", - "codeCommune": "17173", - "libelleAcheminement": "LA GENETOUZE", - "nomCommune": "LA GENETOUZE" + "codePostal": "14620", + "codeCommune": "14206", + "libelleAcheminement": "CROCY", + "nomCommune": "CROCY" }, { - "codePostal": "19700", - "codeCommune": "19100", - "libelleAcheminement": "LAGRAULIERE", - "nomCommune": "LAGRAULIERE" + "codePostal": "25660", + "codeCommune": "25395", + "libelleAcheminement": "MONTFAUCON", + "nomCommune": "MONTFAUCON" }, { - "codePostal": "57710", - "codeCommune": "57678", - "libelleAcheminement": "TRESSANGE", - "nomCommune": "TRESSANGE" + "codePostal": "25190", + "codeCommune": "25387", + "libelleAcheminement": "MONTANDON", + "nomCommune": "MONTANDON" }, { - "codePostal": "52500", - "codeCommune": "52493", - "libelleAcheminement": "TORNAY", - "nomCommune": "TORNAY" + "codePostal": "12390", + "codeCommune": "12111", + "libelleAcheminement": "GOUTRENS", + "nomCommune": "GOUTRENS" }, { - "codePostal": "17160", - "codeCommune": "17176", - "libelleAcheminement": "GIBOURNE", - "nomCommune": "GIBOURNE" + "codePostal": "14220", + "codeCommune": "14207", + "libelleAcheminement": "CROISILLES", + "nomCommune": "CROISILLES" }, { - "codePostal": "19340", - "codeCommune": "19103", - "libelleAcheminement": "LAMAZIERE HAUTE", - "nomCommune": "LAMAZIERE HAUTE" + "codePostal": "25920", + "codeCommune": "25415", + "libelleAcheminement": "MOUTHIER HAUTE PIERRE", + "nomCommune": "MOUTHIER HAUTE PIERRE" }, { - "codePostal": "57340", - "codeCommune": "57687", - "libelleAcheminement": "VALLERANGE", - "nomCommune": "VALLERANGE" + "codePostal": "25650", + "codeCommune": "25390", + "libelleAcheminement": "MONTBENOIT", + "nomCommune": "MONTBENOIT" }, { - "codePostal": "52000", - "codeCommune": "52494", - "libelleAcheminement": "TREIX", - "nomCommune": "TREIX" + "codePostal": "12230", + "codeCommune": "12115", + "libelleAcheminement": "L HOSPITALET DU LARZAC", + "nomCommune": "L HOSPITALET DU LARZAC" }, { - "codePostal": "17100", - "codeCommune": "17179", - "libelleAcheminement": "LES GONDS", - "nomCommune": "LES GONDS" + "codePostal": "14400", + "codeCommune": "14209", + "libelleAcheminement": "CROUAY", + "nomCommune": "CROUAY" }, { - "codePostal": "19120", - "codeCommune": "19116", - "libelleAcheminement": "LIOURDRES", - "nomCommune": "LIOURDRES" + "codePostal": "25360", + "codeCommune": "25437", + "libelleAcheminement": "OSSE", + "nomCommune": "OSSE" }, { - "codePostal": "57070", - "codeCommune": "57694", - "libelleAcheminement": "VANY", - "nomCommune": "VANY" + "codePostal": "25170", + "codeCommune": "25414", + "libelleAcheminement": "LE MOUTHEROT", + "nomCommune": "LE MOUTHEROT" }, { - "codePostal": "52160", - "codeCommune": "52499", - "libelleAcheminement": "VAILLANT", - "nomCommune": "VAILLANT" + "codePostal": "12600", + "codeCommune": "12118", + "libelleAcheminement": "LACROIX BARREZ", + "nomCommune": "LACROIX BARREZ" }, { - "codePostal": "17500", - "codeCommune": "17187", - "libelleAcheminement": "GUITINIERES", - "nomCommune": "GUITINIERES" + "codePostal": "14220", + "codeCommune": "14211", + "libelleAcheminement": "CULEY LE PATRY", + "nomCommune": "CULEY LE PATRY" }, { - "codePostal": "19600", - "codeCommune": "19117", - "libelleAcheminement": "LISSAC SUR COUZE", - "nomCommune": "LISSAC SUR COUZE" + "codePostal": "25520", + "codeCommune": "25440", + "libelleAcheminement": "OUHANS", + "nomCommune": "OUHANS" }, { - "codePostal": "57580", - "codeCommune": "57698", - "libelleAcheminement": "VATIMONT", - "nomCommune": "VATIMONT" + "codePostal": "25580", + "codeCommune": "25424", + "libelleAcheminement": "LES PREMIERS SAPINS", + "nomCommune": "LES PREMIERS SAPINS" }, { - "codePostal": "52330", - "codeCommune": "52506", - "libelleAcheminement": "VAUDREMONT", - "nomCommune": "VAUDREMONT" + "codePostal": "12210", + "codeCommune": "12119", + "libelleAcheminement": "LAGUIOLE", + "nomCommune": "LAGUIOLE" }, { - "codePostal": "17137", - "codeCommune": "17190", - "libelleAcheminement": "L HOUMEAU", - "nomCommune": "L HOUMEAU" + "codePostal": "14840", + "codeCommune": "14215", + "libelleAcheminement": "CUVERVILLE", + "nomCommune": "CUVERVILLE" }, { - "codePostal": "19360", - "codeCommune": "19123", - "libelleAcheminement": "MALEMORT", - "nomCommune": "MALEMORT" + "codePostal": "25530", + "codeCommune": "25441", + "libelleAcheminement": "OUVANS", + "nomCommune": "OUVANS" }, { - "codePostal": "57420", - "codeCommune": "57708", - "libelleAcheminement": "VERNY", - "nomCommune": "VERNY" + "codePostal": "25190", + "codeCommune": "25426", + "libelleAcheminement": "NOIREFONTAINE", + "nomCommune": "NOIREFONTAINE" }, { - "codePostal": "52130", - "codeCommune": "52510", - "libelleAcheminement": "VAUX SUR BLAISE", - "nomCommune": "VAUX SUR BLAISE" + "codePostal": "12230", + "codeCommune": "12122", + "libelleAcheminement": "LAPANOUSE DE CERNON", + "nomCommune": "LAPANOUSE DE CERNON" }, { - "codePostal": "17330", - "codeCommune": "17195", - "libelleAcheminement": "LA JARRIE AUDOUIN", - "nomCommune": "LA JARRIE AUDOUIN" + "codePostal": "14620", + "codeCommune": "14216", + "libelleAcheminement": "DAMBLAINVILLE", + "nomCommune": "DAMBLAINVILLE" }, { - "codePostal": "19510", - "codeCommune": "19129", - "libelleAcheminement": "MASSERET", - "nomCommune": "MASSERET" + "codePostal": "25360", + "codeCommune": "25446", + "libelleAcheminement": "PASSAVANT", + "nomCommune": "PASSAVANT" }, { - "codePostal": "57670", - "codeCommune": "57711", - "libelleAcheminement": "VIBERSVILLER", - "nomCommune": "VIBERSVILLER" + "codePostal": "25170", + "codeCommune": "25427", + "libelleAcheminement": "NOIRONTE", + "nomCommune": "NOIRONTE" }, { - "codePostal": "52250", - "codeCommune": "52516", - "libelleAcheminement": "VERSEILLES LE HAUT", - "nomCommune": "VERSEILLES LE HAUT" + "codePostal": "12380", + "codeCommune": "12125", + "libelleAcheminement": "LAVAL ROQUECEZIERE", + "nomCommune": "LAVAL ROQUECEZIERE" }, { - "codePostal": "17380", - "codeCommune": "17202", - "libelleAcheminement": "LANDES", - "nomCommune": "LANDES" + "codePostal": "14440", + "codeCommune": "14228", + "libelleAcheminement": "DOUVRES LA DELIVRANDE", + "nomCommune": "DOUVRES LA DELIVRANDE" }, { - "codePostal": "19200", - "codeCommune": "19135", - "libelleAcheminement": "MESTES", - "nomCommune": "MESTES" + "codePostal": "25510", + "codeCommune": "25453", + "libelleAcheminement": "PIERREFONTAINE LES VARANS", + "nomCommune": "PIERREFONTAINE LES VARANS" }, { - "codePostal": "57690", - "codeCommune": "57714", - "libelleAcheminement": "HAUTE VIGNEULLES", - "nomCommune": "HAUTE VIGNEULLES" + "codePostal": "25220", + "codeCommune": "25429", + "libelleAcheminement": "NOVILLARS", + "nomCommune": "NOVILLARS" }, { - "codePostal": "52400", - "codeCommune": "52520", - "libelleAcheminement": "VICQ", - "nomCommune": "VICQ" + "codePostal": "12170", + "codeCommune": "12127", + "libelleAcheminement": "LEDERGUES", + "nomCommune": "LEDERGUES" }, { - "codePostal": "17290", - "codeCommune": "17203", - "libelleAcheminement": "LANDRAIS", - "nomCommune": "LANDRAIS" + "codePostal": "14340", + "codeCommune": "14231", + "libelleAcheminement": "BEAUFOUR DRUVAL", + "nomCommune": "BEAUFOUR DRUVAL" }, { - "codePostal": "19300", - "codeCommune": "19145", - "libelleAcheminement": "MOUSTIER VENTADOUR", - "nomCommune": "MOUSTIER VENTADOUR" + "codePostal": "25170", + "codeCommune": "25455", + "libelleAcheminement": "PLACEY", + "nomCommune": "PLACEY" }, { - "codePostal": "57530", - "codeCommune": "57718", - "libelleAcheminement": "VILLERS STONCOURT", - "nomCommune": "VILLERS STONCOURT" + "codePostal": "25390", + "codeCommune": "25432", + "libelleAcheminement": "ORCHAMPS VENNES", + "nomCommune": "ORCHAMPS VENNES" }, { - "codePostal": "52190", - "codeCommune": "52529", - "libelleAcheminement": "VILLEGUSIEN LE LAC", - "nomCommune": "VILLEGUSIEN LE LAC" + "codePostal": "12440", + "codeCommune": "12128", + "libelleAcheminement": "LESCURE JAOUL", + "nomCommune": "LESCURE JAOUL" }, { - "codePostal": "17500", - "codeCommune": "17204", - "libelleAcheminement": "LEOVILLE", - "nomCommune": "LEOVILLE" + "codePostal": "14250", + "codeCommune": "14232", + "libelleAcheminement": "DUCY STE MARGUERITE", + "nomCommune": "DUCY STE MARGUERITE" }, { - "codePostal": "19460", - "codeCommune": "19146", - "libelleAcheminement": "NAVES", - "nomCommune": "NAVES" + "codePostal": "25440", + "codeCommune": "25460", + "libelleAcheminement": "LE VAL", + "nomCommune": "LE VAL" }, { - "codePostal": "57670", - "codeCommune": "57725", - "libelleAcheminement": "VITTERSBOURG", - "nomCommune": "VITTERSBOURG" + "codePostal": "25290", + "codeCommune": "25434", + "libelleAcheminement": "ORNANS", + "nomCommune": "ORNANS" }, { - "codePostal": "52210", - "codeCommune": "52538", - "libelleAcheminement": "VILLIERS SUR SUIZE", - "nomCommune": "VILLIERS SUR SUIZE" + "codePostal": "12430", + "codeCommune": "12129", + "libelleAcheminement": "LESTRADE ET THOUELS", + "nomCommune": "LESTRADE ET THOUELS" }, { - "codePostal": "17230", - "codeCommune": "17208", - "libelleAcheminement": "LONGEVES", - "nomCommune": "LONGEVES" + "codePostal": "14250", + "codeCommune": "14236", + "libelleAcheminement": "ELLON", + "nomCommune": "ELLON" }, { - "codePostal": "19390", - "codeCommune": "19155", - "libelleAcheminement": "ORLIAC DE BAR", - "nomCommune": "ORLIAC DE BAR" + "codePostal": "25300", + "codeCommune": "25462", + "libelleAcheminement": "PONTARLIER", + "nomCommune": "PONTARLIER" }, { - "codePostal": "57370", - "codeCommune": "57743", - "libelleAcheminement": "WALTEMBOURG", - "nomCommune": "WALTEMBOURG" + "codePostal": "25530", + "codeCommune": "25435", + "libelleAcheminement": "ORSANS", + "nomCommune": "ORSANS" }, { - "codePostal": "52600", - "codeCommune": "52539", - "libelleAcheminement": "VIOLOT", - "nomCommune": "VIOLOT" + "codePostal": "12740", + "codeCommune": "12131", + "libelleAcheminement": "LA LOUBIERE", + "nomCommune": "LA LOUBIERE" }, { - "codePostal": "17520", - "codeCommune": "17209", - "libelleAcheminement": "LONZAC", - "nomCommune": "LONZAC" + "codePostal": "14610", + "codeCommune": "14242", + "libelleAcheminement": "EPRON", + "nomCommune": "EPRON" }, { - "codePostal": "19190", - "codeCommune": "19163", - "libelleAcheminement": "LE PESCHER", - "nomCommune": "LE PESCHER" + "codePostal": "25240", + "codeCommune": "25464", + "libelleAcheminement": "LES PONTETS", + "nomCommune": "LES PONTETS" }, { - "codePostal": "57635", - "codeCommune": "57747", - "libelleAcheminement": "WINTERSBOURG", - "nomCommune": "WINTERSBOURG" + "codePostal": "25320", + "codeCommune": "25438", + "libelleAcheminement": "OSSELLE ROUTELLE", + "nomCommune": "OSSELLE ROUTELLE" }, { - "codePostal": "52130", - "codeCommune": "52543", - "libelleAcheminement": "VOILLECOMTE", - "nomCommune": "VOILLECOMTE" + "codePostal": "12270", + "codeCommune": "12135", + "libelleAcheminement": "LUNAC", + "nomCommune": "LUNAC" }, { - "codePostal": "17240", - "codeCommune": "17210", - "libelleAcheminement": "LORIGNAC", - "nomCommune": "LORIGNAC" + "codePostal": "14220", + "codeCommune": "14248", + "libelleAcheminement": "ESPINS", + "nomCommune": "ESPINS" }, { - "codePostal": "19260", - "codeCommune": "19165", - "libelleAcheminement": "PEYRISSAC", - "nomCommune": "PEYRISSAC" + "codePostal": "25640", + "codeCommune": "25468", + "libelleAcheminement": "POULIGNEY LUSANS", + "nomCommune": "POULIGNEY LUSANS" }, { - "codePostal": "57170", - "codeCommune": "57753", - "libelleAcheminement": "WUISSE", - "nomCommune": "WUISSE" + "codePostal": "25640", + "codeCommune": "25439", + "libelleAcheminement": "OUGNEY DOUVOT", + "nomCommune": "OUGNEY DOUVOT" }, { - "codePostal": "52200", - "codeCommune": "52545", - "libelleAcheminement": "VOISINES", - "nomCommune": "VOISINES" + "codePostal": "12160", + "codeCommune": "12137", + "libelleAcheminement": "MANHAC", + "nomCommune": "MANHAC" }, { - "codePostal": "17230", - "codeCommune": "17218", - "libelleAcheminement": "MARANS", - "nomCommune": "MARANS" + "codePostal": "14210", + "codeCommune": "14257", + "libelleAcheminement": "EVRECY", + "nomCommune": "EVRECY" }, { - "codePostal": "19430", - "codeCommune": "19171", - "libelleAcheminement": "REYGADE", - "nomCommune": "REYGADE" + "codePostal": "25250", + "codeCommune": "25479", + "libelleAcheminement": "RANG", + "nomCommune": "RANG" }, { - "codePostal": "57830", - "codeCommune": "57756", - "libelleAcheminement": "XOUAXANGE", - "nomCommune": "XOUAXANGE" + "codePostal": "25160", + "codeCommune": "25442", + "libelleAcheminement": "OYE ET PALLET", + "nomCommune": "OYE ET PALLET" }, { - "codePostal": "53940", - "codeCommune": "53001", - "libelleAcheminement": "AHUILLE", - "nomCommune": "AHUILLE" + "codePostal": "12550", + "codeCommune": "12141", + "libelleAcheminement": "MARTRIN", + "nomCommune": "MARTRIN" }, { - "codePostal": "17320", - "codeCommune": "17219", - "libelleAcheminement": "MARENNES HIERS BROUAGE", - "nomCommune": "MARENNES HIERS BROUAGE" + "codePostal": "14700", + "codeCommune": "14258", + "libelleAcheminement": "FALAISE", + "nomCommune": "FALAISE" }, { - "codePostal": "19260", - "codeCommune": "19172", - "libelleAcheminement": "RILHAC TREIGNAC", - "nomCommune": "RILHAC TREIGNAC" + "codePostal": "25150", + "codeCommune": "25485", + "libelleAcheminement": "REMONDANS VAIVRE", + "nomCommune": "REMONDANS VAIVRE" }, { - "codePostal": "57970", - "codeCommune": "57757", - "libelleAcheminement": "YUTZ", - "nomCommune": "YUTZ" + "codePostal": "25440", + "codeCommune": "25443", + "libelleAcheminement": "PALANTINE", + "nomCommune": "PALANTINE" }, { - "codePostal": "53300", - "codeCommune": "53003", - "libelleAcheminement": "AMBRIERES LES VALLEES", - "nomCommune": "AMBRIERES LES VALLEES" + "codePostal": "12630", + "codeCommune": "12157", + "libelleAcheminement": "MONTROZIER", + "nomCommune": "MONTROZIER" }, { - "codePostal": "17700", - "codeCommune": "17221", - "libelleAcheminement": "MARSAIS", - "nomCommune": "MARSAIS" + "codePostal": "14290", + "codeCommune": "14273", + "libelleAcheminement": "LA FOLLETIERE ABENON", + "nomCommune": "LA FOLLETIERE ABENON" }, { - "codePostal": "19300", - "codeCommune": "19176", - "libelleAcheminement": "ROSIERS D EGLETONS", - "nomCommune": "ROSIERS D EGLETONS" + "codePostal": "25110", + "codeCommune": "25492", + "libelleAcheminement": "RILLANS", + "nomCommune": "RILLANS" }, { - "codePostal": "57260", - "codeCommune": "57763", - "libelleAcheminement": "ZOMMANGE", - "nomCommune": "ZOMMANGE" + "codePostal": "25870", + "codeCommune": "25444", + "libelleAcheminement": "PALISE", + "nomCommune": "PALISE" }, { - "codePostal": "53600", - "codeCommune": "53010", - "libelleAcheminement": "ASSE LE BERENGER", - "nomCommune": "ASSE LE BERENGER" + "codePostal": "12370", + "codeCommune": "12163", + "libelleAcheminement": "MURASSON", + "nomCommune": "MURASSON" }, { - "codePostal": "17137", - "codeCommune": "17222", - "libelleAcheminement": "MARSILLY", - "nomCommune": "MARSILLY" + "codePostal": "14600", + "codeCommune": "14299", + "libelleAcheminement": "GENNEVILLE", + "nomCommune": "GENNEVILLE" }, { - "codePostal": "19350", - "codeCommune": "19177", - "libelleAcheminement": "ROSIERS DE JUILLAC", - "nomCommune": "ROSIERS DE JUILLAC" + "codePostal": "25560", + "codeCommune": "25493", + "libelleAcheminement": "LA RIVIERE DRUGEON", + "nomCommune": "LA RIVIERE DRUGEON" }, { - "codePostal": "58270", - "codeCommune": "58006", - "libelleAcheminement": "ANLEZY", - "nomCommune": "ANLEZY" + "codePostal": "25390", + "codeCommune": "25457", + "libelleAcheminement": "PLAIMBOIS VENNES", + "nomCommune": "PLAIMBOIS VENNES" }, { - "codePostal": "53400", - "codeCommune": "53012", - "libelleAcheminement": "ATHEE", - "nomCommune": "ATHEE" + "codePostal": "12850", + "codeCommune": "12176", + "libelleAcheminement": "ONET LE CHATEAU", + "nomCommune": "ONET LE CHATEAU" }, { - "codePostal": "17400", - "codeCommune": "17226", - "libelleAcheminement": "MAZERAY", - "nomCommune": "MAZERAY" + "codePostal": "14430", + "codeCommune": "14300", + "libelleAcheminement": "GERROTS", + "nomCommune": "GERROTS" }, { - "codePostal": "19500", - "codeCommune": "19184", - "libelleAcheminement": "ST BAZILE DE MEYSSAC", - "nomCommune": "ST BAZILE DE MEYSSAC" + "codePostal": "25310", + "codeCommune": "25497", + "libelleAcheminement": "ROCHES LES BLAMONT", + "nomCommune": "ROCHES LES BLAMONT" }, { - "codePostal": "58450", - "codeCommune": "58007", - "libelleAcheminement": "ANNAY", - "nomCommune": "ANNAY" + "codePostal": "25440", + "codeCommune": "25460", + "libelleAcheminement": "LE VAL", + "nomCommune": "LE VAL" }, { - "codePostal": "53700", - "codeCommune": "53013", - "libelleAcheminement": "AVERTON", - "nomCommune": "AVERTON" + "codePostal": "12550", + "codeCommune": "12183", + "libelleAcheminement": "PLAISANCE", + "nomCommune": "PLAISANCE" }, { - "codePostal": "17800", - "codeCommune": "17227", - "libelleAcheminement": "MAZEROLLES", - "nomCommune": "MAZEROLLES" + "codePostal": "14430", + "codeCommune": "14308", + "libelleAcheminement": "GOUSTRANVILLE", + "nomCommune": "GOUSTRANVILLE" }, { - "codePostal": "19410", - "codeCommune": "19188", - "libelleAcheminement": "ST BONNET L ENFANTIER", - "nomCommune": "ST BONNET L ENFANTIER" + "codePostal": "25680", + "codeCommune": "25505", + "libelleAcheminement": "ROUGEMONT", + "nomCommune": "ROUGEMONT" }, { - "codePostal": "58500", - "codeCommune": "58011", - "libelleAcheminement": "ARMES", - "nomCommune": "ARMES" + "codePostal": "25110", + "codeCommune": "25465", + "libelleAcheminement": "PONT LES MOULINS", + "nomCommune": "PONT LES MOULINS" }, { - "codePostal": "53350", - "codeCommune": "53018", - "libelleAcheminement": "BALLOTS", - "nomCommune": "BALLOTS" + "codePostal": "12470", + "codeCommune": "12187", + "libelleAcheminement": "PRADES D AUBRAC", + "nomCommune": "PRADES D AUBRAC" }, { - "codePostal": "17150", - "codeCommune": "17236", - "libelleAcheminement": "MIRAMBEAU", - "nomCommune": "MIRAMBEAU" + "codePostal": "14190", + "codeCommune": "14310", + "libelleAcheminement": "GRAINVILLE LANGANNERIE", + "nomCommune": "GRAINVILLE LANGANNERIE" }, { - "codePostal": "19200", - "codeCommune": "19190", - "libelleAcheminement": "ST BONNET PRES BORT", - "nomCommune": "ST BONNET PRES BORT" + "codePostal": "25640", + "codeCommune": "25506", + "libelleAcheminement": "ROUGEMONTOT", + "nomCommune": "ROUGEMONTOT" }, { - "codePostal": "58700", - "codeCommune": "58014", - "libelleAcheminement": "ARZEMBOUY", - "nomCommune": "ARZEMBOUY" + "codePostal": "25680", + "codeCommune": "25472", + "libelleAcheminement": "PUESSANS", + "nomCommune": "PUESSANS" }, { - "codePostal": "53170", - "codeCommune": "53025", - "libelleAcheminement": "BAZOUGERS", - "nomCommune": "BAZOUGERS" + "codePostal": "12320", + "codeCommune": "12193", + "libelleAcheminement": "PRUINES", + "nomCommune": "PRUINES" }, { - "codePostal": "17780", - "codeCommune": "17237", - "libelleAcheminement": "MOEZE", - "nomCommune": "MOEZE" + "codePostal": "14880", + "codeCommune": "14325", + "libelleAcheminement": "HERMANVILLE SUR MER", + "nomCommune": "HERMANVILLE SUR MER" }, { - "codePostal": "19220", - "codeCommune": "19205", - "libelleAcheminement": "ST GENIEZ O MERLE", - "nomCommune": "ST GENIEZ O MERLE" + "codePostal": "25170", + "codeCommune": "25536", + "libelleAcheminement": "SAUVAGNEY", + "nomCommune": "SAUVAGNEY" }, { - "codePostal": "58110", - "codeCommune": "58017", - "libelleAcheminement": "AUNAY EN BAZOIS", - "nomCommune": "AUNAY EN BAZOIS" + "codePostal": "25150", + "codeCommune": "25485", + "libelleAcheminement": "REMONDANS VAIVRE", + "nomCommune": "REMONDANS VAIVRE" }, { - "codePostal": "53290", - "codeCommune": "53029", - "libelleAcheminement": "BIERNE LES VILLAGES", - "nomCommune": "BIERNE LES VILLAGES" + "codePostal": "12800", + "codeCommune": "12194", + "libelleAcheminement": "QUINS", + "nomCommune": "QUINS" }, { - "codePostal": "17350", - "codeCommune": "17252", - "libelleAcheminement": "LE MUNG", - "nomCommune": "LE MUNG" + "codePostal": "14100", + "codeCommune": "14334", + "libelleAcheminement": "L HOTELLERIE", + "nomCommune": "L HOTELLERIE" }, { - "codePostal": "19220", - "codeCommune": "19214", - "libelleAcheminement": "ST JULIEN AUX BOIS", - "nomCommune": "ST JULIEN AUX BOIS" + "codePostal": "25110", + "codeCommune": "25546", + "libelleAcheminement": "SILLEY BLEFOND", + "nomCommune": "SILLEY BLEFOND" }, { - "codePostal": "58420", - "codeCommune": "58026", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "25330", + "codeCommune": "25489", + "libelleAcheminement": "REUGNEY", + "nomCommune": "REUGNEY" }, { - "codePostal": "53960", - "codeCommune": "53034", - "libelleAcheminement": "BONCHAMP LES LAVAL", - "nomCommune": "BONCHAMP LES LAVAL" + "codePostal": "12170", + "codeCommune": "12197", + "libelleAcheminement": "REQUISTA", + "nomCommune": "REQUISTA" }, { - "codePostal": "17380", - "codeCommune": "17254", - "libelleAcheminement": "NACHAMPS", - "nomCommune": "NACHAMPS" + "codePostal": "14430", + "codeCommune": "14335", + "libelleAcheminement": "HOTOT EN AUGE", + "nomCommune": "HOTOT EN AUGE" }, { - "codePostal": "19600", - "codeCommune": "19229", - "libelleAcheminement": "ST PANTALEON DE LARCHE", - "nomCommune": "ST PANTALEON DE LARCHE" + "codePostal": "25600", + "codeCommune": "25547", + "libelleAcheminement": "SOCHAUX", + "nomCommune": "SOCHAUX" }, { - "codePostal": "58420", - "codeCommune": "58026", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "25640", + "codeCommune": "25491", + "libelleAcheminement": "RIGNOSOT", + "nomCommune": "RIGNOSOT" }, { - "codePostal": "53290", - "codeCommune": "53037", - "libelleAcheminement": "BOUESSAY", - "nomCommune": "BOUESSAY" + "codePostal": "12100", + "codeCommune": "12204", + "libelleAcheminement": "LA ROQUE STE MARGUERITE", + "nomCommune": "LA ROQUE STE MARGUERITE" }, { - "codePostal": "17770", - "codeCommune": "17256", - "libelleAcheminement": "NANTILLE", - "nomCommune": "NANTILLE" + "codePostal": "14330", + "codeCommune": "14342", + "libelleAcheminement": "ISIGNY SUR MER", + "nomCommune": "ISIGNY SUR MER" }, { - "codePostal": "19320", - "codeCommune": "19231", - "libelleAcheminement": "ST PARDOUX LA CROISILLE", - "nomCommune": "ST PARDOUX LA CROISILLE" + "codePostal": "25190", + "codeCommune": "25548", + "libelleAcheminement": "SOLEMONT", + "nomCommune": "SOLEMONT" }, { - "codePostal": "58210", - "codeCommune": "58029", - "libelleAcheminement": "BEUVRON", - "nomCommune": "BEUVRON" + "codePostal": "25220", + "codeCommune": "25495", + "libelleAcheminement": "ROCHE LEZ BEAUPRE", + "nomCommune": "ROCHE LEZ BEAUPRE" }, { - "codePostal": "53120", - "codeCommune": "53042", - "libelleAcheminement": "BRECE", - "nomCommune": "BRECE" + "codePostal": "12330", + "codeCommune": "12215", + "libelleAcheminement": "ST CHRISTOPHE VALLON", + "nomCommune": "ST CHRISTOPHE VALLON" }, { - "codePostal": "17470", - "codeCommune": "17271", - "libelleAcheminement": "PAILLE", - "nomCommune": "PAILLE" + "codePostal": "14250", + "codeCommune": "14346", + "libelleAcheminement": "JUAYE MONDAYE", + "nomCommune": "JUAYE MONDAYE" }, { - "codePostal": "19220", - "codeCommune": "19237", - "libelleAcheminement": "ST PRIVAT", - "nomCommune": "ST PRIVAT" + "codePostal": "25520", + "codeCommune": "25549", + "libelleAcheminement": "SOMBACOUR", + "nomCommune": "SOMBACOUR" }, { - "codePostal": "58340", - "codeCommune": "58046", - "libelleAcheminement": "CERCY LA TOUR", - "nomCommune": "CERCY LA TOUR" + "codePostal": "25680", + "codeCommune": "25498", + "libelleAcheminement": "ROGNON", + "nomCommune": "ROGNON" }, { - "codePostal": "53160", - "codeCommune": "53053", - "libelleAcheminement": "CHAMPGENETEUX", - "nomCommune": "CHAMPGENETEUX" + "codePostal": "12500", + "codeCommune": "12216", + "libelleAcheminement": "ST COME D OLT", + "nomCommune": "ST COME D OLT" }, { - "codePostal": "17160", - "codeCommune": "17290", - "libelleAcheminement": "PRIGNAC", - "nomCommune": "PRIGNAC" + "codePostal": "14480", + "codeCommune": "14355", + "libelleAcheminement": "PONTS SUR SEULLES", + "nomCommune": "PONTS SUR SEULLES" }, { - "codePostal": "19380", - "codeCommune": "19245", - "libelleAcheminement": "ST SYLVAIN", - "nomCommune": "ST SYLVAIN" + "codePostal": "25320", + "codeCommune": "25564", + "libelleAcheminement": "TORPES", + "nomCommune": "TORPES" }, { - "codePostal": "58210", - "codeCommune": "58053", - "libelleAcheminement": "CHAMPLEMY", - "nomCommune": "CHAMPLEMY" + "codePostal": "25680", + "codeCommune": "25499", + "libelleAcheminement": "ROMAIN", + "nomCommune": "ROMAIN" }, { - "codePostal": "53950", - "codeCommune": "53056", - "libelleAcheminement": "LA CHAPELLE ANTHENAISE", - "nomCommune": "LA CHAPELLE ANTHENAISE" + "codePostal": "12260", + "codeCommune": "12217", + "libelleAcheminement": "STE CROIX", + "nomCommune": "STE CROIX" }, { - "codePostal": "17138", - "codeCommune": "17291", - "libelleAcheminement": "PUILBOREAU", - "nomCommune": "PUILBOREAU" + "codePostal": "14480", + "codeCommune": "14355", + "libelleAcheminement": "PONTS SUR SEULLES", + "nomCommune": "PONTS SUR SEULLES" }, { - "codePostal": "19140", - "codeCommune": "19248", - "libelleAcheminement": "ST YBARD", - "nomCommune": "ST YBARD" + "codePostal": "25370", + "codeCommune": "25565", + "libelleAcheminement": "TOUILLON ET LOUTELET", + "nomCommune": "TOUILLON ET LOUTELET" }, { - "codePostal": "58300", - "codeCommune": "58055", - "libelleAcheminement": "CHAMPVERT", - "nomCommune": "CHAMPVERT" + "codePostal": "25240", + "codeCommune": "25501", + "libelleAcheminement": "RONDEFONTAINE", + "nomCommune": "RONDEFONTAINE" }, { - "codePostal": "53200", - "codeCommune": "53062", - "libelleAcheminement": "CHATEAU GONTIER SUR MAYENNE", - "nomCommune": "CHATEAU GONTIER SUR MAYENNE" + "codePostal": "12320", + "codeCommune": "12221", + "libelleAcheminement": "ST FELIX DE LUNEL", + "nomCommune": "ST FELIX DE LUNEL" }, { - "codePostal": "17500", - "codeCommune": "17295", - "libelleAcheminement": "REAUX SUR TREFLE", - "nomCommune": "REAUX SUR TREFLE" + "codePostal": "14100", + "codeCommune": "14366", + "libelleAcheminement": "LISIEUX", + "nomCommune": "LISIEUX" }, { - "codePostal": "19110", - "codeCommune": "19252", - "libelleAcheminement": "SARROUX ST JULIEN", - "nomCommune": "SARROUX ST JULIEN" + "codePostal": "25470", + "codeCommune": "25573", + "libelleAcheminement": "URTIERE", + "nomCommune": "URTIERE" }, { - "codePostal": "58240", - "codeCommune": "58057", - "libelleAcheminement": "CHANTENAY ST IMBERT", - "nomCommune": "CHANTENAY ST IMBERT" + "codePostal": "25380", + "codeCommune": "25504", + "libelleAcheminement": "ROSUREUX", + "nomCommune": "ROSUREUX" }, { - "codePostal": "53300", - "codeCommune": "53079", - "libelleAcheminement": "COUESMES VAUCE", - "nomCommune": "COUESMES VAUCE" + "codePostal": "12420", + "codeCommune": "12223", + "libelleAcheminement": "ARGENCES EN AUBRAC", + "nomCommune": "ARGENCES EN AUBRAC" }, { - "codePostal": "17460", - "codeCommune": "17296", - "libelleAcheminement": "RETAUD", - "nomCommune": "RETAUD" + "codePostal": "14330", + "codeCommune": "14367", + "libelleAcheminement": "LISON", + "nomCommune": "LISON" }, { - "codePostal": "19310", - "codeCommune": "19253", - "libelleAcheminement": "SEGONZAC", - "nomCommune": "SEGONZAC" + "codePostal": "25700", + "codeCommune": "25580", + "libelleAcheminement": "VALENTIGNEY", + "nomCommune": "VALENTIGNEY" }, { - "codePostal": "58400", - "codeCommune": "58059", - "libelleAcheminement": "LA CHARITE SUR LOIRE", - "nomCommune": "LA CHARITE SUR LOIRE" + "codePostal": "25340", + "codeCommune": "25516", + "libelleAcheminement": "ST GEORGES ARMONT", + "nomCommune": "ST GEORGES ARMONT" }, { - "codePostal": "53300", - "codeCommune": "53079", - "libelleAcheminement": "COUESMES VAUCE", - "nomCommune": "COUESMES VAUCE" + "codePostal": "12480", + "codeCommune": "12228", + "libelleAcheminement": "ST IZAIRE", + "nomCommune": "ST IZAIRE" }, { - "codePostal": "17940", - "codeCommune": "17297", - "libelleAcheminement": "RIVEDOUX PLAGE", - "nomCommune": "RIVEDOUX PLAGE" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "19160", - "codeCommune": "19256", - "libelleAcheminement": "SERANDON", - "nomCommune": "SERANDON" + "codePostal": "25190", + "codeCommune": "25583", + "libelleAcheminement": "VALONNE", + "nomCommune": "VALONNE" }, { - "codePostal": "58160", - "codeCommune": "58072", - "libelleAcheminement": "CHEVENON", - "nomCommune": "CHEVENON" + "codePostal": "25190", + "codeCommune": "25519", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "53700", - "codeCommune": "53083", - "libelleAcheminement": "COURCITE", - "nomCommune": "COURCITE" + "codePostal": "12780", + "codeCommune": "12238", + "libelleAcheminement": "ST LEONS", + "nomCommune": "ST LEONS" }, { - "codePostal": "17000", - "codeCommune": "17300", - "libelleAcheminement": "LA ROCHELLE", - "nomCommune": "LA ROCHELLE" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "19290", - "codeCommune": "19261", - "libelleAcheminement": "SORNAC", - "nomCommune": "SORNAC" + "codePostal": "25190", + "codeCommune": "25591", + "libelleAcheminement": "VAUFREY", + "nomCommune": "VAUFREY" }, { - "codePostal": "58800", - "codeCommune": "58075", - "libelleAcheminement": "CHITRY LES MINES", - "nomCommune": "CHITRY LES MINES" + "codePostal": "25360", + "codeCommune": "25520", + "libelleAcheminement": "ST JUAN", + "nomCommune": "ST JUAN" }, { - "codePostal": "53700", - "codeCommune": "53085", - "libelleAcheminement": "CRENNES SUR FRAUBEE", - "nomCommune": "CRENNES SUR FRAUBEE" + "codePostal": "12200", + "codeCommune": "12242", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "17250", - "codeCommune": "17302", - "libelleAcheminement": "ROMEGOUX", - "nomCommune": "ROMEGOUX" + "codePostal": "14700", + "codeCommune": "14375", + "libelleAcheminement": "LES LOGES SAULCES", + "nomCommune": "LES LOGES SAULCES" }, { - "codePostal": "19370", - "codeCommune": "19262", - "libelleAcheminement": "SOUDAINE LAVINADIERE", - "nomCommune": "SOUDAINE LAVINADIERE" + "codePostal": "25160", + "codeCommune": "25592", + "libelleAcheminement": "VAUX ET CHANTEGRUE", + "nomCommune": "VAUX ET CHANTEGRUE" }, { - "codePostal": "58220", - "codeCommune": "58077", - "libelleAcheminement": "CIEZ", - "nomCommune": "CIEZ" + "codePostal": "25160", + "codeCommune": "25525", + "libelleAcheminement": "ST POINT LAC", + "nomCommune": "ST POINT LAC" }, { - "codePostal": "53170", - "codeCommune": "53087", - "libelleAcheminement": "LA CROPTE", - "nomCommune": "LA CROPTE" + "codePostal": "12400", + "codeCommune": "12251", + "libelleAcheminement": "ST VICTOR ET MELVIEU", + "nomCommune": "ST VICTOR ET MELVIEU" }, { - "codePostal": "17800", - "codeCommune": "17304", - "libelleAcheminement": "ROUFFIAC", - "nomCommune": "ROUFFIAC" + "codePostal": "14250", + "codeCommune": "14380", + "libelleAcheminement": "LOUCELLES", + "nomCommune": "LOUCELLES" }, { - "codePostal": "19200", - "codeCommune": "19266", - "libelleAcheminement": "THALAMY", - "nomCommune": "THALAMY" + "codePostal": "25870", + "codeCommune": "25598", + "libelleAcheminement": "VENISE", + "nomCommune": "VENISE" }, { - "codePostal": "58200", - "codeCommune": "58086", - "libelleAcheminement": "COSNE COURS SUR LOIRE", - "nomCommune": "COSNE COURS SUR LOIRE" + "codePostal": "25440", + "codeCommune": "25528", + "libelleAcheminement": "SAMSON", + "nomCommune": "SAMSON" }, { - "codePostal": "53200", - "codeCommune": "53089", - "libelleAcheminement": "DAON", - "nomCommune": "DAON" + "codePostal": "12410", + "codeCommune": "12253", + "libelleAcheminement": "SALLES CURAN", + "nomCommune": "SALLES CURAN" }, { - "codePostal": "17220", - "codeCommune": "17315", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "14170", + "codeCommune": "14381", + "libelleAcheminement": "LOUVAGNY", + "nomCommune": "LOUVAGNY" }, { - "codePostal": "19260", - "codeCommune": "19269", - "libelleAcheminement": "TREIGNAC", - "nomCommune": "TREIGNAC" + "codePostal": "25640", + "codeCommune": "25599", + "libelleAcheminement": "VENNANS", + "nomCommune": "VENNANS" }, { - "codePostal": "58220", - "codeCommune": "58089", - "libelleAcheminement": "COULOUTRE", - "nomCommune": "COULOUTRE" + "codePostal": "25240", + "codeCommune": "25534", + "libelleAcheminement": "SARRAGEOIS", + "nomCommune": "SARRAGEOIS" }, { - "codePostal": "53940", - "codeCommune": "53103", - "libelleAcheminement": "LE GENEST ST ISLE", - "nomCommune": "LE GENEST ST ISLE" + "codePostal": "12740", + "codeCommune": "12264", + "libelleAcheminement": "SEBAZAC CONCOURES", + "nomCommune": "SEBAZAC CONCOURES" }, { - "codePostal": "17240", - "codeCommune": "17325", - "libelleAcheminement": "ST DIZANT DU GUA", - "nomCommune": "ST DIZANT DU GUA" + "codePostal": "14530", + "codeCommune": "14384", + "libelleAcheminement": "LUC SUR MER", + "nomCommune": "LUC SUR MER" }, { - "codePostal": "19500", - "codeCommune": "19273", - "libelleAcheminement": "TURENNE", - "nomCommune": "TURENNE" + "codePostal": "25390", + "codeCommune": "25600", + "libelleAcheminement": "VENNES", + "nomCommune": "VENNES" }, { - "codePostal": "58330", - "codeCommune": "58092", - "libelleAcheminement": "CRUX LA VILLE", - "nomCommune": "CRUX LA VILLE" + "codePostal": "25270", + "codeCommune": "25541", + "libelleAcheminement": "SEPTFONTAINES", + "nomCommune": "SEPTFONTAINES" }, { - "codePostal": "53200", - "codeCommune": "53104", - "libelleAcheminement": "GENNES LONGUEFUYE", - "nomCommune": "GENNES LONGUEFUYE" + "codePostal": "12170", + "codeCommune": "12267", + "libelleAcheminement": "LA SELVE", + "nomCommune": "LA SELVE" }, { - "codePostal": "17240", - "codeCommune": "17328", - "libelleAcheminement": "ST FORT SUR GIRONDE", - "nomCommune": "ST FORT SUR GIRONDE" + "codePostal": "14620", + "codeCommune": "14402", + "libelleAcheminement": "LE MARAIS LA CHAPELLE", + "nomCommune": "LE MARAIS LA CHAPELLE" }, { - "codePostal": "19270", - "codeCommune": "19274", - "libelleAcheminement": "USSAC", - "nomCommune": "USSAC" + "codePostal": "25190", + "codeCommune": "25617", + "libelleAcheminement": "VILLARS SOUS DAMPJOUX", + "nomCommune": "VILLARS SOUS DAMPJOUX" }, { - "codePostal": "58310", - "codeCommune": "58094", - "libelleAcheminement": "DAMPIERRE SOUS BOUHY", - "nomCommune": "DAMPIERRE SOUS BOUHY" + "codePostal": "25770", + "codeCommune": "25542", + "libelleAcheminement": "SERRE LES SAPINS", + "nomCommune": "SERRE LES SAPINS" }, { - "codePostal": "53200", - "codeCommune": "53104", - "libelleAcheminement": "GENNES LONGUEFUYE", - "nomCommune": "GENNES LONGUEFUYE" + "codePostal": "12320", + "codeCommune": "12268", + "libelleAcheminement": "SENERGUES", + "nomCommune": "SENERGUES" }, { - "codePostal": "17240", - "codeCommune": "17331", - "libelleAcheminement": "ST GENIS DE SAINTONGE", - "nomCommune": "ST GENIS DE SAINTONGE" + "codePostal": "14370", + "codeCommune": "14410", + "libelleAcheminement": "MERY BISSIERES EN AUGE", + "nomCommune": "MERY BISSIERES EN AUGE" }, { - "codePostal": "19130", - "codeCommune": "19279", - "libelleAcheminement": "VARS SUR ROSEIX", - "nomCommune": "VARS SUR ROSEIX" + "codePostal": "25530", + "codeCommune": "25623", + "libelleAcheminement": "VILLERS CHIEF", + "nomCommune": "VILLERS CHIEF" }, { - "codePostal": "58340", - "codeCommune": "58097", - "libelleAcheminement": "DIENNES AUBIGNY", - "nomCommune": "DIENNES AUBIGNY" + "codePostal": "25430", + "codeCommune": "25544", + "libelleAcheminement": "SERVIN", + "nomCommune": "SERVIN" }, { - "codePostal": "53410", - "codeCommune": "53108", - "libelleAcheminement": "LA GRAVELLE", - "nomCommune": "LA GRAVELLE" + "codePostal": "12150", + "codeCommune": "12270", + "libelleAcheminement": "SEVERAC D AVEYRON", + "nomCommune": "SEVERAC D AVEYRON" }, { - "codePostal": "17470", - "codeCommune": "17334", - "libelleAcheminement": "ST GEORGES DE LONGUEPIERRE", - "nomCommune": "ST GEORGES DE LONGUEPIERRE" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "19200", - "codeCommune": "19283", - "libelleAcheminement": "VEYRIERES", - "nomCommune": "VEYRIERES" + "codePostal": "25840", + "codeCommune": "25633", + "libelleAcheminement": "VUILLAFANS", + "nomCommune": "VUILLAFANS" }, { - "codePostal": "58120", - "codeCommune": "58099", - "libelleAcheminement": "DOMMARTIN", - "nomCommune": "DOMMARTIN" + "codePostal": "25510", + "codeCommune": "25550", + "libelleAcheminement": "LA SOMMETTE", + "nomCommune": "LA SOMMETTE" }, { - "codePostal": "53110", - "codeCommune": "53118", - "libelleAcheminement": "LE HOUSSEAU BRETIGNOLLES", - "nomCommune": "LE HOUSSEAU BRETIGNOLLES" + "codePostal": "12200", + "codeCommune": "12281", + "libelleAcheminement": "TOULONJAC", + "nomCommune": "TOULONJAC" }, { - "codePostal": "17240", - "codeCommune": "17342", - "libelleAcheminement": "ST GERMAIN DU SEUDRE", - "nomCommune": "ST GERMAIN DU SEUDRE" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "19410", - "codeCommune": "19285", - "libelleAcheminement": "VIGEOIS", - "nomCommune": "VIGEOIS" + "codePostal": "25300", + "codeCommune": "25634", + "libelleAcheminement": "VUILLECIN", + "nomCommune": "VUILLECIN" }, { - "codePostal": "58220", - "codeCommune": "58102", - "libelleAcheminement": "DONZY", - "nomCommune": "DONZY" + "codePostal": "25250", + "codeCommune": "25553", + "libelleAcheminement": "SOYE", + "nomCommune": "SOYE" }, { - "codePostal": "53970", - "codeCommune": "53119", - "libelleAcheminement": "L HUISSERIE", - "nomCommune": "L HUISSERIE" + "codePostal": "12290", + "codeCommune": "12283", + "libelleAcheminement": "TREMOUILLES", + "nomCommune": "TREMOUILLES" }, { - "codePostal": "17500", - "codeCommune": "17345", - "libelleAcheminement": "ST HILAIRE DU BOIS", - "nomCommune": "ST HILAIRE DU BOIS" + "codePostal": "14340", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "21700", - "codeCommune": "21001", - "libelleAcheminement": "AGENCOURT", - "nomCommune": "AGENCOURT" + "codePostal": "26800", + "codeCommune": "26007", + "libelleAcheminement": "AMBONIL", + "nomCommune": "AMBONIL" }, { - "codePostal": "58390", - "codeCommune": "58104", - "libelleAcheminement": "DORNES", - "nomCommune": "DORNES" + "codePostal": "25870", + "codeCommune": "25557", + "libelleAcheminement": "TALLENAY", + "nomCommune": "TALLENAY" }, { - "codePostal": "53250", - "codeCommune": "53121", - "libelleAcheminement": "JAVRON LES CHAPELLES", - "nomCommune": "JAVRON LES CHAPELLES" + "codePostal": "12430", + "codeCommune": "12284", + "libelleAcheminement": "LE TRUEL", + "nomCommune": "LE TRUEL" }, { - "codePostal": "17320", - "codeCommune": "17351", - "libelleAcheminement": "ST JUST LUZAC", - "nomCommune": "ST JUST LUZAC" + "codePostal": "14400", + "codeCommune": "14453", + "libelleAcheminement": "MOSLES", + "nomCommune": "MOSLES" }, { - "codePostal": "21400", - "codeCommune": "21006", - "libelleAcheminement": "AISEY SUR SEINE", - "nomCommune": "AISEY SUR SEINE" + "codePostal": "26140", + "codeCommune": "26009", + "libelleAcheminement": "ANDANCETTE", + "nomCommune": "ANDANCETTE" }, { - "codePostal": "58110", - "codeCommune": "58107", - "libelleAcheminement": "DUN SUR GRANDRY", - "nomCommune": "DUN SUR GRANDRY" + "codePostal": "25620", + "codeCommune": "25558", + "libelleAcheminement": "TARCENAY FOUCHERANS", + "nomCommune": "TARCENAY FOUCHERANS" }, { - "codePostal": "53160", - "codeCommune": "53122", - "libelleAcheminement": "JUBLAINS", - "nomCommune": "JUBLAINS" + "codePostal": "12330", + "codeCommune": "12288", + "libelleAcheminement": "VALADY", + "nomCommune": "VALADY" }, { - "codePostal": "17450", - "codeCommune": "17353", - "libelleAcheminement": "ST LAURENT DE LA PREE", - "nomCommune": "ST LAURENT DE LA PREE" + "codePostal": "14590", + "codeCommune": "14460", + "libelleAcheminement": "MOYAUX", + "nomCommune": "MOYAUX" }, { - "codePostal": "21400", - "codeCommune": "21012", - "libelleAcheminement": "AMPILLY LE SEC", - "nomCommune": "AMPILLY LE SEC" + "codePostal": "26140", + "codeCommune": "26010", + "libelleAcheminement": "ANNEYRON", + "nomCommune": "ANNEYRON" }, { - "codePostal": "58140", - "codeCommune": "58120", - "libelleAcheminement": "GACOGNE", - "nomCommune": "GACOGNE" + "codePostal": "25680", + "codeCommune": "25567", + "libelleAcheminement": "TOURNANS", + "nomCommune": "TOURNANS" }, { - "codePostal": "53380", - "codeCommune": "53123", - "libelleAcheminement": "JUVIGNE", - "nomCommune": "JUVIGNE" + "codePostal": "12220", + "codeCommune": "12289", + "libelleAcheminement": "VALZERGUES", + "nomCommune": "VALZERGUES" }, { - "codePostal": "17520", - "codeCommune": "17357", - "libelleAcheminement": "ST MAIGRIN", - "nomCommune": "ST MAIGRIN" + "codePostal": "14700", + "codeCommune": "14467", + "libelleAcheminement": "NORON L ABBAYE", + "nomCommune": "NORON L ABBAYE" }, { - "codePostal": "21360", - "codeCommune": "21014", - "libelleAcheminement": "ANTHEUIL", - "nomCommune": "ANTHEUIL" + "codePostal": "26260", + "codeCommune": "26014", + "libelleAcheminement": "ARTHEMONAY", + "nomCommune": "ARTHEMONAY" }, { - "codePostal": "58800", - "codeCommune": "58123", - "libelleAcheminement": "GERMENAY", - "nomCommune": "GERMENAY" + "codePostal": "25470", + "codeCommune": "25571", + "libelleAcheminement": "TREVILLERS", + "nomCommune": "TREVILLERS" }, { - "codePostal": "53200", - "codeCommune": "53124", - "libelleAcheminement": "PREE D ANJOU", - "nomCommune": "PREE D ANJOU" + "codePostal": "12220", + "codeCommune": "12290", + "libelleAcheminement": "VAUREILLES", + "nomCommune": "VAUREILLES" }, { - "codePostal": "17330", - "codeCommune": "17361", - "libelleAcheminement": "ST MARTIAL", - "nomCommune": "ST MARTIAL" + "codePostal": "14490", + "codeCommune": "14468", + "libelleAcheminement": "NORON LA POTERIE", + "nomCommune": "NORON LA POTERIE" }, { - "codePostal": "21230", - "codeCommune": "21015", - "libelleAcheminement": "ANTIGNY LA VILLE", - "nomCommune": "ANTIGNY LA VILLE" + "codePostal": "26110", + "codeCommune": "26016", + "libelleAcheminement": "AUBRES", + "nomCommune": "AUBRES" }, { - "codePostal": "58420", - "codeCommune": "58130", - "libelleAcheminement": "GRENOIS", - "nomCommune": "GRENOIS" + "codePostal": "25220", + "codeCommune": "25575", + "libelleAcheminement": "VAIRE", + "nomCommune": "VAIRE" }, { - "codePostal": "53200", - "codeCommune": "53124", - "libelleAcheminement": "PREE D ANJOU", - "nomCommune": "PREE D ANJOU" + "codePostal": "12290", + "codeCommune": "12297", + "libelleAcheminement": "LE VIBAL", + "nomCommune": "LE VIBAL" }, { - "codePostal": "17500", - "codeCommune": "17363", - "libelleAcheminement": "ST MARTIAL DE VITATERNE", - "nomCommune": "ST MARTIAL DE VITATERNE" + "codePostal": "14620", + "codeCommune": "14469", + "libelleAcheminement": "NORREY EN AUGE", + "nomCommune": "NORREY EN AUGE" }, { - "codePostal": "21700", - "codeCommune": "21017", - "libelleAcheminement": "ARCENANT", - "nomCommune": "ARCENANT" + "codePostal": "26160", + "codeCommune": "26031", + "libelleAcheminement": "LA BATIE ROLLAND", + "nomCommune": "LA BATIE ROLLAND" }, { - "codePostal": "58130", - "codeCommune": "58131", - "libelleAcheminement": "GUERIGNY", - "nomCommune": "GUERIGNY" + "codePostal": "25870", + "codeCommune": "25582", + "libelleAcheminement": "VALLEROY", + "nomCommune": "VALLEROY" }, { - "codePostal": "53190", - "codeCommune": "53125", - "libelleAcheminement": "LANDIVY", - "nomCommune": "LANDIVY" + "codePostal": "13190", + "codeCommune": "13002", + "libelleAcheminement": "ALLAUCH", + "nomCommune": "ALLAUCH" }, { - "codePostal": "17360", - "codeCommune": "17366", - "libelleAcheminement": "ST MARTIN DE COUX", - "nomCommune": "ST MARTIN DE COUX" + "codePostal": "14340", + "codeCommune": "14473", + "libelleAcheminement": "NOTRE DAME DE LIVAYE", + "nomCommune": "NOTRE DAME DE LIVAYE" }, { - "codePostal": "21560", - "codeCommune": "21021", - "libelleAcheminement": "ARC SUR TILLE", - "nomCommune": "ARC SUR TILLE" + "codePostal": "26120", + "codeCommune": "26032", + "libelleAcheminement": "LA BAUME CORNILLANE", + "nomCommune": "LA BAUME CORNILLANE" }, { - "codePostal": "58290", - "codeCommune": "58142", - "libelleAcheminement": "LIMANTON", - "nomCommune": "LIMANTON" + "codePostal": "25190", + "codeCommune": "25584", + "libelleAcheminement": "VALOREILLE", + "nomCommune": "VALOREILLE" }, { - "codePostal": "53110", - "codeCommune": "53127", - "libelleAcheminement": "LASSAY LES CHATEAUX", - "nomCommune": "LASSAY LES CHATEAUX" + "codePostal": "13129", + "codeCommune": "13004", + "libelleAcheminement": "ARLES", + "nomCommune": "ARLES" }, { - "codePostal": "17400", - "codeCommune": "17367", - "libelleAcheminement": "ST MARTIN DE JUILLERS", - "nomCommune": "ST MARTIN DE JUILLERS" + "codePostal": "14290", + "codeCommune": "14478", + "libelleAcheminement": "ORBEC", + "nomCommune": "ORBEC" }, { - "codePostal": "21230", - "codeCommune": "21023", - "libelleAcheminement": "ARNAY LE DUC", - "nomCommune": "ARNAY LE DUC" + "codePostal": "26310", + "codeCommune": "26036", + "libelleAcheminement": "BEAUMONT EN DIOIS", + "nomCommune": "BEAUMONT EN DIOIS" }, { - "codePostal": "58270", - "codeCommune": "58143", - "libelleAcheminement": "LIMON", - "nomCommune": "LIMON" + "codePostal": "25230", + "codeCommune": "25586", + "libelleAcheminement": "VANDONCOURT", + "nomCommune": "VANDONCOURT" }, { - "codePostal": "53200", - "codeCommune": "53136", - "libelleAcheminement": "LA ROCHE NEUVILLE", - "nomCommune": "LA ROCHE NEUVILLE" + "codePostal": "13330", + "codeCommune": "13009", + "libelleAcheminement": "LA BARBEN", + "nomCommune": "LA BARBEN" }, { - "codePostal": "17410", - "codeCommune": "17369", - "libelleAcheminement": "ST MARTIN DE RE", - "nomCommune": "ST MARTIN DE RE" + "codePostal": "14230", + "codeCommune": "14480", + "libelleAcheminement": "OSMANVILLE", + "nomCommune": "OSMANVILLE" }, { - "codePostal": "21350", - "codeCommune": "21024", - "libelleAcheminement": "ARNAY SOUS VITTEAUX", - "nomCommune": "ARNAY SOUS VITTEAUX" + "codePostal": "26760", + "codeCommune": "26037", + "libelleAcheminement": "BEAUMONT LES VALENCE", + "nomCommune": "BEAUMONT LES VALENCE" }, { - "codePostal": "58240", - "codeCommune": "58144", - "libelleAcheminement": "LIVRY", - "nomCommune": "LIVRY" + "codePostal": "25380", + "codeCommune": "25589", + "libelleAcheminement": "VAUCLUSOTTE", + "nomCommune": "VAUCLUSOTTE" }, { - "codePostal": "53210", - "codeCommune": "53141", - "libelleAcheminement": "LOUVIGNE", - "nomCommune": "LOUVIGNE" + "codePostal": "13480", + "codeCommune": "13019", + "libelleAcheminement": "CABRIES", + "nomCommune": "CABRIES" }, { - "codePostal": "17780", - "codeCommune": "17375", - "libelleAcheminement": "ST NAZAIRE SUR CHARENTE", - "nomCommune": "ST NAZAIRE SUR CHARENTE" + "codePostal": "14190", + "codeCommune": "14486", + "libelleAcheminement": "OUILLY LE TESSON", + "nomCommune": "OUILLY LE TESSON" }, { - "codePostal": "21380", - "codeCommune": "21027", - "libelleAcheminement": "ASNIERES LES DIJON", - "nomCommune": "ASNIERES LES DIJON" + "codePostal": "26800", + "codeCommune": "26042", + "libelleAcheminement": "BEAUVALLON", + "nomCommune": "BEAUVALLON" }, { - "codePostal": "58140", - "codeCommune": "58145", - "libelleAcheminement": "LORMES", - "nomCommune": "LORMES" + "codePostal": "25430", + "codeCommune": "25595", + "libelleAcheminement": "VELLEROT LES BELVOIR", + "nomCommune": "VELLEROT LES BELVOIR" }, { - "codePostal": "53150", - "codeCommune": "53161", - "libelleAcheminement": "MONTSURS", - "nomCommune": "MONTSURS" + "codePostal": "13950", + "codeCommune": "13020", + "libelleAcheminement": "CADOLIVE", + "nomCommune": "CADOLIVE" }, { - "codePostal": "17310", - "codeCommune": "17385", - "libelleAcheminement": "ST PIERRE D OLERON", - "nomCommune": "ST PIERRE D OLERON" + "codePostal": "14700", + "codeCommune": "14498", + "libelleAcheminement": "PERTHEVILLE NERS", + "nomCommune": "PERTHEVILLE NERS" }, { - "codePostal": "21500", - "codeCommune": "21029", - "libelleAcheminement": "ATHIE", - "nomCommune": "ATHIE" + "codePostal": "26260", + "codeCommune": "26061", + "libelleAcheminement": "BREN", + "nomCommune": "BREN" }, { - "codePostal": "58190", - "codeCommune": "58150", - "libelleAcheminement": "LYS", - "nomCommune": "LYS" + "codePostal": "25530", + "codeCommune": "25596", + "libelleAcheminement": "VELLEROT LES VERCEL", + "nomCommune": "VELLEROT LES VERCEL" }, { - "codePostal": "53250", - "codeCommune": "53164", - "libelleAcheminement": "NEUILLY LE VENDIN", - "nomCommune": "NEUILLY LE VENDIN" + "codePostal": "13620", + "codeCommune": "13021", + "libelleAcheminement": "CARRY LE ROUET", + "nomCommune": "CARRY LE ROUET" }, { - "codePostal": "17270", - "codeCommune": "17386", - "libelleAcheminement": "ST PIERRE DU PALAIS", - "nomCommune": "ST PIERRE DU PALAIS" + "codePostal": "14130", + "codeCommune": "14500", + "libelleAcheminement": "PIERREFITTE EN AUGE", + "nomCommune": "PIERREFITTE EN AUGE" }, { - "codePostal": "21360", - "codeCommune": "21030", - "libelleAcheminement": "AUBAINE", - "nomCommune": "AUBAINE" + "codePostal": "26170", + "codeCommune": "26063", + "libelleAcheminement": "BUIS LES BARONNIES", + "nomCommune": "BUIS LES BARONNIES" }, { - "codePostal": "58400", - "codeCommune": "58155", - "libelleAcheminement": "LA MARCHE", - "nomCommune": "LA MARCHE" + "codePostal": "25110", + "codeCommune": "25602", + "libelleAcheminement": "VERGRANNE", + "nomCommune": "VERGRANNE" }, { - "codePostal": "53240", - "codeCommune": "53179", - "libelleAcheminement": "PLACE", - "nomCommune": "PLACE" + "codePostal": "13600", + "codeCommune": "13023", + "libelleAcheminement": "CEYRESTE", + "nomCommune": "CEYRESTE" }, { - "codePostal": "17250", - "codeCommune": "17389", - "libelleAcheminement": "STE RADEGONDE", - "nomCommune": "STE RADEGONDE" + "codePostal": "14490", + "codeCommune": "14506", + "libelleAcheminement": "PLANQUERY", + "nomCommune": "PLANQUERY" }, { - "codePostal": "21540", - "codeCommune": "21033", - "libelleAcheminement": "AUBIGNY LES SOMBERNON", - "nomCommune": "AUBIGNY LES SOMBERNON" + "codePostal": "26120", + "codeCommune": "26064", + "libelleAcheminement": "CHABEUIL", + "nomCommune": "CHABEUIL" }, { - "codePostal": "58800", - "codeCommune": "58159", - "libelleAcheminement": "MARIGNY SUR YONNE", - "nomCommune": "MARIGNY SUR YONNE" + "codePostal": "25750", + "codeCommune": "25608", + "libelleAcheminement": "LE VERNOY", + "nomCommune": "LE VERNOY" }, { - "codePostal": "53410", - "codeCommune": "53182", - "libelleAcheminement": "PORT BRILLET", - "nomCommune": "PORT BRILLET" + "codePostal": "13790", + "codeCommune": "13025", + "libelleAcheminement": "CHATEAUNEUF LE ROUGE", + "nomCommune": "CHATEAUNEUF LE ROUGE" }, { - "codePostal": "17800", - "codeCommune": "17398", - "libelleAcheminement": "ST SEURIN DE PALENNE", - "nomCommune": "ST SEURIN DE PALENNE" + "codePostal": "14130", + "codeCommune": "14514", + "libelleAcheminement": "PONT L EVEQUE", + "nomCommune": "PONT L EVEQUE" }, { - "codePostal": "21350", - "codeCommune": "21040", - "libelleAcheminement": "AVOSNES", - "nomCommune": "AVOSNES" + "codePostal": "26350", + "codeCommune": "26068", + "libelleAcheminement": "LE CHALON", + "nomCommune": "LE CHALON" }, { - "codePostal": "58180", - "codeCommune": "58160", - "libelleAcheminement": "MARZY", - "nomCommune": "MARZY" + "codePostal": "25600", + "codeCommune": "25614", + "libelleAcheminement": "VIEUX CHARMONT", + "nomCommune": "VIEUX CHARMONT" }, { - "codePostal": "53800", - "codeCommune": "53188", - "libelleAcheminement": "RENAZE", - "nomCommune": "RENAZE" + "codePostal": "13780", + "codeCommune": "13030", + "libelleAcheminement": "CUGES LES PINS", + "nomCommune": "CUGES LES PINS" }, { - "codePostal": "17330", - "codeCommune": "17401", - "libelleAcheminement": "ST SEVERIN SUR BOUTONNE", - "nomCommune": "ST SEVERIN SUR BOUTONNE" + "codePostal": "14210", + "codeCommune": "14519", + "libelleAcheminement": "PREAUX BOCAGE", + "nomCommune": "PREAUX BOCAGE" }, { - "codePostal": "21580", - "codeCommune": "21041", - "libelleAcheminement": "AVOT", - "nomCommune": "AVOT" + "codePostal": "26260", + "codeCommune": "26077", + "libelleAcheminement": "CHARMES SUR L HERBASSE", + "nomCommune": "CHARMES SUR L HERBASSE" }, { - "codePostal": "58180", - "codeCommune": "58160", - "libelleAcheminement": "MARZY", - "nomCommune": "MARZY" + "codePostal": "25410", + "codeCommune": "25616", + "libelleAcheminement": "VILLARS ST GEORGES", + "nomCommune": "VILLARS ST GEORGES" }, { - "codePostal": "53170", - "codeCommune": "53193", - "libelleAcheminement": "RUILLE FROID FONDS", - "nomCommune": "RUILLE FROID FONDS" + "codePostal": "13430", + "codeCommune": "13035", + "libelleAcheminement": "EYGUIERES", + "nomCommune": "EYGUIERES" }, { - "codePostal": "17240", - "codeCommune": "17402", - "libelleAcheminement": "ST SIGISMOND DE CLERMONT", - "nomCommune": "ST SIGISMOND DE CLERMONT" + "codePostal": "14270", + "codeCommune": "14527", + "libelleAcheminement": "BELLE VIE EN AUGE", + "nomCommune": "BELLE VIE EN AUGE" }, { - "codePostal": "21700", - "codeCommune": "21042", - "libelleAcheminement": "BAGNOT", - "nomCommune": "BAGNOT" + "codePostal": "26450", + "codeCommune": "26078", + "libelleAcheminement": "CHAROLS", + "nomCommune": "CHAROLS" }, { - "codePostal": "58210", - "codeCommune": "58163", - "libelleAcheminement": "MENOU", - "nomCommune": "MENOU" + "codePostal": "25150", + "codeCommune": "25618", + "libelleAcheminement": "VILLARS SOUS ECOT", + "nomCommune": "VILLARS SOUS ECOT" }, { - "codePostal": "53470", - "codeCommune": "53195", - "libelleAcheminement": "SACE", - "nomCommune": "SACE" + "codePostal": "13630", + "codeCommune": "13036", + "libelleAcheminement": "EYRAGUES", + "nomCommune": "EYRAGUES" }, { - "codePostal": "17260", - "codeCommune": "17404", - "libelleAcheminement": "ST SIMON DE PELLOUAILLE", - "nomCommune": "ST SIMON DE PELLOUAILLE" + "codePostal": "14270", + "codeCommune": "14527", + "libelleAcheminement": "BELLE VIE EN AUGE", + "nomCommune": "BELLE VIE EN AUGE" }, { - "codePostal": "21110", - "codeCommune": "21057", - "libelleAcheminement": "BEIRE LE FORT", - "nomCommune": "BEIRE LE FORT" + "codePostal": "26300", + "codeCommune": "26079", + "libelleAcheminement": "CHARPEY", + "nomCommune": "CHARPEY" }, { - "codePostal": "58170", - "codeCommune": "58168", - "libelleAcheminement": "MILLAY", - "nomCommune": "MILLAY" + "codePostal": "25580", + "codeCommune": "25630", + "libelleAcheminement": "VOIRES", + "nomCommune": "VOIRES" }, { - "codePostal": "53700", - "codeCommune": "53198", - "libelleAcheminement": "ST AUBIN DU DESERT", - "nomCommune": "ST AUBIN DU DESERT" + "codePostal": "13710", + "codeCommune": "13040", + "libelleAcheminement": "FUVEAU", + "nomCommune": "FUVEAU" }, { - "codePostal": "17600", - "codeCommune": "17406", - "libelleAcheminement": "ST SORNIN", - "nomCommune": "ST SORNIN" + "codePostal": "14860", + "codeCommune": "14530", + "libelleAcheminement": "RANVILLE", + "nomCommune": "RANVILLE" }, { - "codePostal": "21490", - "codeCommune": "21059", - "libelleAcheminement": "BELLEFOND", - "nomCommune": "BELLEFOND" + "codePostal": "26750", + "codeCommune": "26087", + "libelleAcheminement": "CHATILLON ST JEAN", + "nomCommune": "CHATILLON ST JEAN" }, { - "codePostal": "58190", - "codeCommune": "58169", - "libelleAcheminement": "MOISSY MOULINOT", - "nomCommune": "MOISSY MOULINOT" + "codePostal": "25430", + "codeCommune": "25635", + "libelleAcheminement": "VYT LES BELVOIR", + "nomCommune": "VYT LES BELVOIR" }, { - "codePostal": "53120", - "codeCommune": "53199", - "libelleAcheminement": "ST AUBIN FOSSE LOUVAIN", - "nomCommune": "ST AUBIN FOSSE LOUVAIN" + "codePostal": "13120", + "codeCommune": "13041", + "libelleAcheminement": "GARDANNE", + "nomCommune": "GARDANNE" }, { - "codePostal": "17220", - "codeCommune": "17407", - "libelleAcheminement": "STE SOULLE", - "nomCommune": "STE SOULLE" + "codePostal": "14470", + "codeCommune": "14535", + "libelleAcheminement": "REVIERS", + "nomCommune": "REVIERS" }, { - "codePostal": "21290", - "codeCommune": "21063", - "libelleAcheminement": "BENEUVRE", - "nomCommune": "BENEUVRE" + "codePostal": "26300", + "codeCommune": "26088", + "libelleAcheminement": "CHATUZANGE LE GOUBET", + "nomCommune": "CHATUZANGE LE GOUBET" }, { - "codePostal": "58190", - "codeCommune": "58170", - "libelleAcheminement": "MONCEAUX LE COMTE", - "nomCommune": "MONCEAUX LE COMTE" + "codePostal": "26400", + "codeCommune": "26020", + "libelleAcheminement": "LA REPARA AURIPLES", + "nomCommune": "LA REPARA AURIPLES" }, { - "codePostal": "53100", - "codeCommune": "53200", - "libelleAcheminement": "ST BAUDELLE", - "nomCommune": "ST BAUDELLE" + "codePostal": "13700", + "codeCommune": "13054", + "libelleAcheminement": "MARIGNANE", + "nomCommune": "MARIGNANE" }, { - "codePostal": "17220", - "codeCommune": "17407", - "libelleAcheminement": "STE SOULLE", - "nomCommune": "STE SOULLE" + "codePostal": "14540", + "codeCommune": "14538", + "libelleAcheminement": "CASTINE EN PLAINE", + "nomCommune": "CASTINE EN PLAINE" }, { - "codePostal": "21220", - "codeCommune": "21070", - "libelleAcheminement": "BEVY", - "nomCommune": "BEVY" + "codePostal": "26510", + "codeCommune": "26091", + "libelleAcheminement": "CHAUVAC LAUX MONTAUX", + "nomCommune": "CHAUVAC LAUX MONTAUX" }, { - "codePostal": "58110", - "codeCommune": "58171", - "libelleAcheminement": "MONTAPAS", - "nomCommune": "MONTAPAS" + "codePostal": "26560", + "codeCommune": "26022", + "libelleAcheminement": "BALLONS", + "nomCommune": "BALLONS" }, { - "codePostal": "53170", - "codeCommune": "53206", - "libelleAcheminement": "ST CHARLES LA FORET", - "nomCommune": "ST CHARLES LA FORET" + "codePostal": "13590", + "codeCommune": "13060", + "libelleAcheminement": "MEYREUIL", + "nomCommune": "MEYREUIL" }, { - "codePostal": "17250", - "codeCommune": "17408", - "libelleAcheminement": "ST SULPICE D ARNOULT", - "nomCommune": "ST SULPICE D ARNOULT" + "codePostal": "14710", + "codeCommune": "14547", + "libelleAcheminement": "RUBERCY", + "nomCommune": "RUBERCY" }, { - "codePostal": "21130", - "codeCommune": "21074", - "libelleAcheminement": "BILLEY", - "nomCommune": "BILLEY" + "codePostal": "26400", + "codeCommune": "26098", + "libelleAcheminement": "COBONNE", + "nomCommune": "COBONNE" }, { - "codePostal": "58130", - "codeCommune": "58176", - "libelleAcheminement": "MONTIGNY AUX AMOGNES", - "nomCommune": "MONTIGNY AUX AMOGNES" + "codePostal": "26730", + "codeCommune": "26034", + "libelleAcheminement": "LA BAUME D HOSTUN", + "nomCommune": "LA BAUME D HOSTUN" }, { - "codePostal": "53140", - "codeCommune": "53208", - "libelleAcheminement": "ST CYR EN PAIL", - "nomCommune": "ST CYR EN PAIL" + "codePostal": "13105", + "codeCommune": "13062", + "libelleAcheminement": "MIMET", + "nomCommune": "MIMET" }, { - "codePostal": "17200", - "codeCommune": "17409", - "libelleAcheminement": "ST SULPICE DE ROYAN", - "nomCommune": "ST SULPICE DE ROYAN" + "codePostal": "14540", + "codeCommune": "14554", + "libelleAcheminement": "LE CASTELET", + "nomCommune": "LE CASTELET" }, { - "codePostal": "21450", - "codeCommune": "21075", - "libelleAcheminement": "BILLY LES CHANCEAUX", - "nomCommune": "BILLY LES CHANCEAUX" + "codePostal": "26740", + "codeCommune": "26102", + "libelleAcheminement": "CONDILLAC", + "nomCommune": "CONDILLAC" }, { - "codePostal": "58230", - "codeCommune": "58180", - "libelleAcheminement": "MONTSAUCHE LES SETTONS", - "nomCommune": "MONTSAUCHE LES SETTONS" + "codePostal": "26400", + "codeCommune": "26035", + "libelleAcheminement": "BEAUFORT SUR GERVANNE", + "nomCommune": "BEAUFORT SUR GERVANNE" }, { - "codePostal": "53290", - "codeCommune": "53210", - "libelleAcheminement": "ST DENIS D ANJOU", - "nomCommune": "ST DENIS D ANJOU" + "codePostal": "13940", + "codeCommune": "13064", + "libelleAcheminement": "MOLLEGES", + "nomCommune": "MOLLEGES" }, { - "codePostal": "17370", - "codeCommune": "17411", - "libelleAcheminement": "ST TROJAN LES BAINS", - "nomCommune": "ST TROJAN LES BAINS" + "codePostal": "14130", + "codeCommune": "14555", + "libelleAcheminement": "ST ANDRE D HEBERTOT", + "nomCommune": "ST ANDRE D HEBERTOT" }, { - "codePostal": "21270", - "codeCommune": "21076", - "libelleAcheminement": "BINGES", - "nomCommune": "BINGES" + "codePostal": "26510", + "codeCommune": "26104", + "libelleAcheminement": "CORNILLAC", + "nomCommune": "CORNILLAC" }, { - "codePostal": "58230", - "codeCommune": "58180", - "libelleAcheminement": "MONTSAUCHE LES SETTONS", - "nomCommune": "MONTSAUCHE LES SETTONS" + "codePostal": "26300", + "codeCommune": "26039", + "libelleAcheminement": "BEAUREGARD BARET", + "nomCommune": "BEAUREGARD BARET" }, { - "codePostal": "53500", - "codeCommune": "53211", - "libelleAcheminement": "ST DENIS DE GASTINES", - "nomCommune": "ST DENIS DE GASTINES" + "codePostal": "13790", + "codeCommune": "13072", + "libelleAcheminement": "PEYNIER", + "nomCommune": "PEYNIER" }, { - "codePostal": "17600", - "codeCommune": "17421", - "libelleAcheminement": "SAUJON", - "nomCommune": "SAUJON" + "codePostal": "14750", + "codeCommune": "14562", + "libelleAcheminement": "ST AUBIN SUR MER", + "nomCommune": "ST AUBIN SUR MER" }, { - "codePostal": "21330", - "codeCommune": "21078", - "libelleAcheminement": "BISSEY LA PIERRE", - "nomCommune": "BISSEY LA PIERRE" + "codePostal": "26510", + "codeCommune": "26105", + "libelleAcheminement": "CORNILLON SUR L OULE", + "nomCommune": "CORNILLON SUR L OULE" }, { - "codePostal": "58230", - "codeCommune": "58185", - "libelleAcheminement": "MOUX EN MORVAN", - "nomCommune": "MOUX EN MORVAN" + "codePostal": "26240", + "codeCommune": "26041", + "libelleAcheminement": "BEAUSEMBLANT", + "nomCommune": "BEAUSEMBLANT" }, { - "codePostal": "53170", - "codeCommune": "53212", - "libelleAcheminement": "ST DENIS DU MAINE", - "nomCommune": "ST DENIS DU MAINE" + "codePostal": "13790", + "codeCommune": "13072", + "libelleAcheminement": "PEYNIER", + "nomCommune": "PEYNIER" }, { - "codePostal": "17150", - "codeCommune": "17424", - "libelleAcheminement": "SEMOUSSAC", - "nomCommune": "SEMOUSSAC" + "codePostal": "14280", + "codeCommune": "14566", + "libelleAcheminement": "ST CONTEST", + "nomCommune": "ST CONTEST" }, { - "codePostal": "21310", - "codeCommune": "21079", - "libelleAcheminement": "BLAGNY SUR VINGEANNE", - "nomCommune": "BLAGNY SUR VINGEANNE" + "codePostal": "26740", + "codeCommune": "26106", + "libelleAcheminement": "LA COUCOURDE", + "nomCommune": "LA COUCOURDE" }, { - "codePostal": "58440", - "codeCommune": "58187", - "libelleAcheminement": "MYENNES", - "nomCommune": "MYENNES" + "codePostal": "26170", + "codeCommune": "26043", + "libelleAcheminement": "BEAUVOISIN", + "nomCommune": "BEAUVOISIN" }, { - "codePostal": "53100", - "codeCommune": "53219", - "libelleAcheminement": "ST GEORGES BUTTAVENT", - "nomCommune": "ST GEORGES BUTTAVENT" + "codePostal": "13114", + "codeCommune": "13079", + "libelleAcheminement": "PUYLOUBIER", + "nomCommune": "PUYLOUBIER" }, { - "codePostal": "17160", - "codeCommune": "17428", - "libelleAcheminement": "SONNAC", - "nomCommune": "SONNAC" + "codePostal": "14480", + "codeCommune": "14569", + "libelleAcheminement": "STE CROIX SUR MER", + "nomCommune": "STE CROIX SUR MER" }, { - "codePostal": "21540", - "codeCommune": "21081", - "libelleAcheminement": "BLAISY HAUT", - "nomCommune": "BLAISY HAUT" + "codePostal": "26350", + "codeCommune": "26107", + "libelleAcheminement": "CREPOL", + "nomCommune": "CREPOL" }, { - "codePostal": "58300", - "codeCommune": "58192", - "libelleAcheminement": "NEUVILLE LES DECIZE", - "nomCommune": "NEUVILLE LES DECIZE" + "codePostal": "26170", + "codeCommune": "26048", + "libelleAcheminement": "BENIVAY OLLON", + "nomCommune": "BENIVAY OLLON" }, { - "codePostal": "53240", - "codeCommune": "53222", - "libelleAcheminement": "ST GERMAIN D ANXURE", - "nomCommune": "ST GERMAIN D ANXURE" + "codePostal": "13610", + "codeCommune": "13080", + "libelleAcheminement": "LE PUY STE REPARADE", + "nomCommune": "LE PUY STE REPARADE" }, { - "codePostal": "17150", - "codeCommune": "17430", - "libelleAcheminement": "SOUBRAN", - "nomCommune": "SOUBRAN" + "codePostal": "14950", + "codeCommune": "14575", + "libelleAcheminement": "ST ETIENNE LA THILLAYE", + "nomCommune": "ST ETIENNE LA THILLAYE" }, { - "codePostal": "21360", - "codeCommune": "21087", - "libelleAcheminement": "BLIGNY SUR OUCHE", - "nomCommune": "BLIGNY SUR OUCHE" + "codePostal": "26160", + "codeCommune": "26131", + "libelleAcheminement": "EYZAHUT", + "nomCommune": "EYZAHUT" }, { - "codePostal": "58700", - "codeCommune": "58196", - "libelleAcheminement": "NOLAY", - "nomCommune": "NOLAY" + "codePostal": "26300", + "codeCommune": "26049", + "libelleAcheminement": "BESAYES", + "nomCommune": "BESAYES" }, { - "codePostal": "53380", - "codeCommune": "53226", - "libelleAcheminement": "ST HILAIRE DU MAINE", - "nomCommune": "ST HILAIRE DU MAINE" + "codePostal": "13840", + "codeCommune": "13082", + "libelleAcheminement": "ROGNES", + "nomCommune": "ROGNES" }, { - "codePostal": "17350", - "codeCommune": "17436", - "libelleAcheminement": "TAILLEBOURG", - "nomCommune": "TAILLEBOURG" + "codePostal": "14260", + "codeCommune": "14579", + "libelleAcheminement": "SEULLINE", + "nomCommune": "SEULLINE" }, { - "codePostal": "21700", - "codeCommune": "21088", - "libelleAcheminement": "BONCOURT LE BOIS", - "nomCommune": "BONCOURT LE BOIS" + "codePostal": "26570", + "codeCommune": "26135", + "libelleAcheminement": "FERRASSIERES", + "nomCommune": "FERRASSIERES" }, { - "codePostal": "58190", - "codeCommune": "58197", - "libelleAcheminement": "NUARS", - "nomCommune": "NUARS" + "codePostal": "26110", + "codeCommune": "26050", + "libelleAcheminement": "BESIGNAN", + "nomCommune": "BESIGNAN" }, { - "codePostal": "53270", - "codeCommune": "53228", - "libelleAcheminement": "BLANDOUET ST JEAN", - "nomCommune": "BLANDOUET ST JEAN" + "codePostal": "13790", + "codeCommune": "13087", + "libelleAcheminement": "ROUSSET", + "nomCommune": "ROUSSET" }, { - "codePostal": "17290", - "codeCommune": "17447", - "libelleAcheminement": "LE THOU", - "nomCommune": "LE THOU" + "codePostal": "14310", + "codeCommune": "14579", + "libelleAcheminement": "SEULLINE", + "nomCommune": "SEULLINE" }, { - "codePostal": "21420", - "codeCommune": "21092", - "libelleAcheminement": "BOUILLAND", - "nomCommune": "BOUILLAND" + "codePostal": "26310", + "codeCommune": "26136", + "libelleAcheminement": "VAL MARAVEL", + "nomCommune": "VAL MARAVEL" }, { - "codePostal": "58370", - "codeCommune": "58199", - "libelleAcheminement": "ONLAY", - "nomCommune": "ONLAY" + "codePostal": "26160", + "codeCommune": "26052", + "libelleAcheminement": "BONLIEU SUR ROUBION", + "nomCommune": "BONLIEU SUR ROUBION" }, { - "codePostal": "53480", - "codeCommune": "53232", - "libelleAcheminement": "ST LEGER", - "nomCommune": "ST LEGER" + "codePostal": "13460", + "codeCommune": "13096", + "libelleAcheminement": "SAINTES MARIES DE LA MER", + "nomCommune": "SAINTES MARIES DE LA MER" }, { - "codePostal": "17380", - "codeCommune": "17448", - "libelleAcheminement": "TONNAY BOUTONNE", - "nomCommune": "TONNAY BOUTONNE" + "codePostal": "14700", + "codeCommune": "14588", + "libelleAcheminement": "ST GERMAIN LANGOT", + "nomCommune": "ST GERMAIN LANGOT" }, { - "codePostal": "21690", - "codeCommune": "21098", - "libelleAcheminement": "BOUX SOUS SALMAISE", - "nomCommune": "BOUX SOUS SALMAISE" + "codePostal": "26400", + "codeCommune": "26137", + "libelleAcheminement": "FRANCILLON SUR ROUBION", + "nomCommune": "FRANCILLON SUR ROUBION" }, { - "codePostal": "58500", - "codeCommune": "58200", - "libelleAcheminement": "OUAGNE", - "nomCommune": "OUAGNE" + "codePostal": "26410", + "codeCommune": "26055", + "libelleAcheminement": "BOULC", + "nomCommune": "BOULC" }, { - "codePostal": "53290", - "codeCommune": "53233", - "libelleAcheminement": "ST LOUP DU DORAT", - "nomCommune": "ST LOUP DU DORAT" + "codePostal": "13109", + "codeCommune": "13107", + "libelleAcheminement": "SIMIANE COLLONGUE", + "nomCommune": "SIMIANE COLLONGUE" }, { - "codePostal": "17160", - "codeCommune": "17451", - "libelleAcheminement": "LES TOUCHES DE PERIGNY", - "nomCommune": "LES TOUCHES DE PERIGNY" + "codePostal": "14570", + "codeCommune": "14602", + "libelleAcheminement": "ST LAMBERT", + "nomCommune": "ST LAMBERT" }, { - "codePostal": "21430", - "codeCommune": "21102", - "libelleAcheminement": "BRAZEY EN MORVAN", - "nomCommune": "BRAZEY EN MORVAN" + "codePostal": "26700", + "codeCommune": "26138", + "libelleAcheminement": "LA GARDE ADHEMAR", + "nomCommune": "LA GARDE ADHEMAR" }, { - "codePostal": "58230", - "codeCommune": "58205", - "libelleAcheminement": "OUROUX EN MORVAN", - "nomCommune": "OUROUX EN MORVAN" + "codePostal": "26190", + "codeCommune": "26059", + "libelleAcheminement": "BOUVANTE", + "nomCommune": "BOUVANTE" }, { - "codePostal": "53220", - "codeCommune": "53238", - "libelleAcheminement": "ST MARS SUR LA FUTAIE", - "nomCommune": "ST MARS SUR LA FUTAIE" + "codePostal": "13530", + "codeCommune": "13110", + "libelleAcheminement": "TRETS", + "nomCommune": "TRETS" }, { - "codePostal": "17390", - "codeCommune": "17452", - "libelleAcheminement": "LA TREMBLADE", - "nomCommune": "LA TREMBLADE" + "codePostal": "14710", + "codeCommune": "14605", + "libelleAcheminement": "ST LAURENT SUR MER", + "nomCommune": "ST LAURENT SUR MER" }, { - "codePostal": "21390", - "codeCommune": "21108", - "libelleAcheminement": "BRIANNY", - "nomCommune": "BRIANNY" + "codePostal": "26750", + "codeCommune": "26140", + "libelleAcheminement": "GEYSSANS", + "nomCommune": "GEYSSANS" }, { - "codePostal": "58320", - "codeCommune": "58207", - "libelleAcheminement": "PARIGNY LES VAUX", - "nomCommune": "PARIGNY LES VAUX" + "codePostal": "26340", + "codeCommune": "26062", + "libelleAcheminement": "BRETTE", + "nomCommune": "BRETTE" }, { - "codePostal": "53400", - "codeCommune": "53251", - "libelleAcheminement": "ST QUENTIN LES ANGES", - "nomCommune": "ST QUENTIN LES ANGES" + "codePostal": "13126", + "codeCommune": "13111", + "libelleAcheminement": "VAUVENARGUES", + "nomCommune": "VAUVENARGUES" }, { - "codePostal": "17640", - "codeCommune": "17461", - "libelleAcheminement": "VAUX SUR MER", - "nomCommune": "VAUX SUR MER" + "codePostal": "14330", + "codeCommune": "14613", + "libelleAcheminement": "ST MARCOUF", + "nomCommune": "ST MARCOUF" }, { - "codePostal": "21400", - "codeCommune": "21115", - "libelleAcheminement": "BUNCEY", - "nomCommune": "BUNCEY" + "codePostal": "26410", + "codeCommune": "26142", + "libelleAcheminement": "GLANDAGE", + "nomCommune": "GLANDAGE" }, { - "codePostal": "58220", - "codeCommune": "58209", - "libelleAcheminement": "PERROY", - "nomCommune": "PERROY" + "codePostal": "26420", + "codeCommune": "26074", + "libelleAcheminement": "LA CHAPELLE EN VERCORS", + "nomCommune": "LA CHAPELLE EN VERCORS" }, { - "codePostal": "53270", - "codeCommune": "53255", - "libelleAcheminement": "STE SUZANNE ET CHAMMES", - "nomCommune": "STE SUZANNE ET CHAMMES" + "codePostal": "13770", + "codeCommune": "13113", + "libelleAcheminement": "VENELLES", + "nomCommune": "VENELLES" }, { - "codePostal": "17400", - "codeCommune": "17465", - "libelleAcheminement": "LA VERGNE", - "nomCommune": "LA VERGNE" + "codePostal": "14100", + "codeCommune": "14626", + "libelleAcheminement": "ST MARTIN DE MAILLOC", + "nomCommune": "ST MARTIN DE MAILLOC" }, { - "codePostal": "21360", - "codeCommune": "21120", - "libelleAcheminement": "LA BUSSIERE SUR OUCHE", - "nomCommune": "LA BUSSIERE SUR OUCHE" + "codePostal": "26390", + "codeCommune": "26148", + "libelleAcheminement": "HAUTERIVES", + "nomCommune": "HAUTERIVES" }, { - "codePostal": "58230", - "codeCommune": "58210", - "libelleAcheminement": "PLANCHEZ", - "nomCommune": "PLANCHEZ" + "codePostal": "26300", + "codeCommune": "26088", + "libelleAcheminement": "CHATUZANGE LE GOUBET", + "nomCommune": "CHATUZANGE LE GOUBET" }, { - "codePostal": "53340", - "codeCommune": "53257", - "libelleAcheminement": "SAULGES", - "nomCommune": "SAULGES" + "codePostal": "13122", + "codeCommune": "13114", + "libelleAcheminement": "VENTABREN", + "nomCommune": "VENTABREN" }, { - "codePostal": "17230", - "codeCommune": "17472", - "libelleAcheminement": "VILLEDOUX", - "nomCommune": "VILLEDOUX" + "codePostal": "14400", + "codeCommune": "14630", + "libelleAcheminement": "ST MARTIN DES ENTREES", + "nomCommune": "ST MARTIN DES ENTREES" }, { - "codePostal": "21540", - "codeCommune": "21121", - "libelleAcheminement": "BUSSY LA PESLE", - "nomCommune": "BUSSY LA PESLE" + "codePostal": "26560", + "codeCommune": "26150", + "libelleAcheminement": "IZON LA BRUISSE", + "nomCommune": "IZON LA BRUISSE" }, { - "codePostal": "58200", - "codeCommune": "58213", - "libelleAcheminement": "POUGNY", - "nomCommune": "POUGNY" + "codePostal": "26110", + "codeCommune": "26103", + "libelleAcheminement": "CONDORCET", + "nomCommune": "CONDORCET" }, { - "codePostal": "53360", - "codeCommune": "53260", - "libelleAcheminement": "SIMPLE", - "nomCommune": "SIMPLE" + "codePostal": "13011", + "codeCommune": "13211", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 11" }, { - "codePostal": "17500", - "codeCommune": "17476", - "libelleAcheminement": "VILLEXAVIER", - "nomCommune": "VILLEXAVIER" + "codePostal": "14670", + "codeCommune": "14637", + "libelleAcheminement": "ST OUEN DU MESNIL OGER", + "nomCommune": "ST OUEN DU MESNIL OGER" }, { - "codePostal": "21290", - "codeCommune": "21129", - "libelleAcheminement": "CHAMBAIN", - "nomCommune": "CHAMBAIN" + "codePostal": "26150", + "codeCommune": "26159", + "libelleAcheminement": "LAVAL D AIX", + "nomCommune": "LAVAL D AIX" }, { - "codePostal": "58150", - "codeCommune": "58215", - "libelleAcheminement": "POUILLY SUR LOIRE", - "nomCommune": "POUILLY SUR LOIRE" + "codePostal": "26460", + "codeCommune": "26111", + "libelleAcheminement": "CRUPIES", + "nomCommune": "CRUPIES" }, { - "codePostal": "53300", - "codeCommune": "53261", - "libelleAcheminement": "SOUCE", - "nomCommune": "SOUCE" + "codePostal": "13013", + "codeCommune": "13213", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 13" }, { - "codePostal": "17260", - "codeCommune": "17479", - "libelleAcheminement": "VIROLLET", - "nomCommune": "VIROLLET" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "21110", - "codeCommune": "21130", - "libelleAcheminement": "CHAMBEIRE", - "nomCommune": "CHAMBEIRE" + "codePostal": "26240", + "codeCommune": "26160", + "libelleAcheminement": "LAVEYRON", + "nomCommune": "LAVEYRON" }, { - "codePostal": "58310", - "codeCommune": "58227", - "libelleAcheminement": "ST AMAND EN PUISAYE", - "nomCommune": "ST AMAND EN PUISAYE" + "codePostal": "26400", + "codeCommune": "26115", + "libelleAcheminement": "DIVAJEU", + "nomCommune": "DIVAJEU" }, { - "codePostal": "53500", - "codeCommune": "53269", - "libelleAcheminement": "VAUTORTE", - "nomCommune": "VAUTORTE" + "codePostal": "13015", + "codeCommune": "13215", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 15" }, { - "codePostal": "17290", - "codeCommune": "17480", - "libelleAcheminement": "VIRSON", - "nomCommune": "VIRSON" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "21220", - "codeCommune": "21133", - "libelleAcheminement": "CHAMBOLLE MUSIGNY", - "nomCommune": "CHAMBOLLE MUSIGNY" + "codePostal": "26190", + "codeCommune": "26163", + "libelleAcheminement": "LEONCEL", + "nomCommune": "LEONCEL" }, { - "codePostal": "58130", - "codeCommune": "58231", - "libelleAcheminement": "ST AUBIN LES FORGES", - "nomCommune": "ST AUBIN LES FORGES" + "codePostal": "26290", + "codeCommune": "26116", + "libelleAcheminement": "DONZERE", + "nomCommune": "DONZERE" }, { - "codePostal": "53600", - "codeCommune": "53276", - "libelleAcheminement": "VOUTRE", - "nomCommune": "VOUTRE" + "codePostal": "14370", + "codeCommune": "14005", + "libelleAcheminement": "VALAMBRAY", + "nomCommune": "VALAMBRAY" }, { - "codePostal": "17700", - "codeCommune": "17482", - "libelleAcheminement": "VOUHE", - "nomCommune": "VOUHE" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "21400", - "codeCommune": "21134", - "libelleAcheminement": "CHAMESSON", - "nomCommune": "CHAMESSON" + "codePostal": "26250", + "codeCommune": "26165", + "libelleAcheminement": "LIVRON SUR DROME", + "nomCommune": "LIVRON SUR DROME" }, { - "codePostal": "58300", - "codeCommune": "58245", - "libelleAcheminement": "ST HILAIRE FONTAINE", - "nomCommune": "ST HILAIRE FONTAINE" + "codePostal": "26210", + "codeCommune": "26118", + "libelleAcheminement": "EPINOUZE", + "nomCommune": "EPINOUZE" }, { - "codePostal": "54610", - "codeCommune": "54001", - "libelleAcheminement": "ABAUCOURT SUR SEILLE", - "nomCommune": "ABAUCOURT" + "codePostal": "14210", + "codeCommune": "14006", + "libelleAcheminement": "AMAYE SUR ORNE", + "nomCommune": "AMAYE SUR ORNE" }, { - "codePostal": "17730", - "codeCommune": "17484", - "libelleAcheminement": "PORT DES BARQUES", - "nomCommune": "PORT DES BARQUES" + "codePostal": "14700", + "codeCommune": "14677", + "libelleAcheminement": "SOULANGY", + "nomCommune": "SOULANGY" }, { - "codePostal": "21310", - "codeCommune": "21135", - "libelleAcheminement": "CHAMPAGNE SUR VINGEANNE", - "nomCommune": "CHAMPAGNE SUR VINGEANNE" + "codePostal": "26410", + "codeCommune": "26178", + "libelleAcheminement": "MENGLON", + "nomCommune": "MENGLON" }, { - "codePostal": "58270", - "codeCommune": "58247", - "libelleAcheminement": "ST JEAN AUX AMOGNES", - "nomCommune": "ST JEAN AUX AMOGNES" + "codePostal": "26750", + "codeCommune": "26139", + "libelleAcheminement": "GENISSIEUX", + "nomCommune": "GENISSIEUX" }, { - "codePostal": "54112", - "codeCommune": "54010", - "libelleAcheminement": "ALLAMPS", - "nomCommune": "ALLAMPS" + "codePostal": "14860", + "codeCommune": "14009", + "libelleAcheminement": "AMFREVILLE", + "nomCommune": "AMFREVILLE" }, { - "codePostal": "17370", - "codeCommune": "17485", - "libelleAcheminement": "LE GRAND VILLAGE PLAGE", - "nomCommune": "LE GRAND VILLAGE PLAGE" + "codePostal": "14130", + "codeCommune": "14687", + "libelleAcheminement": "LE THEIL EN AUGE", + "nomCommune": "LE THEIL EN AUGE" }, { - "codePostal": "21130", - "codeCommune": "21138", - "libelleAcheminement": "CHAMPDOTRE", - "nomCommune": "CHAMPDOTRE" + "codePostal": "26170", + "codeCommune": "26180", + "libelleAcheminement": "MERINDOL LES OLIVIERS", + "nomCommune": "MERINDOL LES OLIVIERS" }, { - "codePostal": "58200", - "codeCommune": "58251", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "26400", + "codeCommune": "26144", + "libelleAcheminement": "GRANE", + "nomCommune": "GRANE" }, { - "codePostal": "54370", - "codeCommune": "54023", - "libelleAcheminement": "ARRACOURT", - "nomCommune": "ARRACOURT" + "codePostal": "14770", + "codeCommune": "14027", + "libelleAcheminement": "LES MONTS D AUNAY", + "nomCommune": "LES MONTS D AUNAY" }, { - "codePostal": "18220", - "codeCommune": "18003", - "libelleAcheminement": "LES AIX D ANGILLON", - "nomCommune": "LES AIX D ANGILLON" + "codePostal": "14210", + "codeCommune": "14721", + "libelleAcheminement": "VACOGNES NEUILLY", + "nomCommune": "VACOGNES NEUILLY" }, { - "codePostal": "21320", - "codeCommune": "21153", - "libelleAcheminement": "CHATELLENOT", - "nomCommune": "CHATELLENOT" + "codePostal": "26560", + "codeCommune": "26181", + "libelleAcheminement": "MEVOUILLON", + "nomCommune": "MEVOUILLON" }, { - "codePostal": "58150", - "codeCommune": "58256", - "libelleAcheminement": "ST MARTIN SUR NOHAIN", - "nomCommune": "ST MARTIN SUR NOHAIN" + "codePostal": "26470", + "codeCommune": "26147", + "libelleAcheminement": "GUMIANE", + "nomCommune": "GUMIANE" }, { - "codePostal": "54370", - "codeCommune": "54026", - "libelleAcheminement": "ATHIENVILLE", - "nomCommune": "ATHIENVILLE" + "codePostal": "14220", + "codeCommune": "14039", + "libelleAcheminement": "BARBERY", + "nomCommune": "BARBERY" }, { - "codePostal": "18200", - "codeCommune": "18009", - "libelleAcheminement": "ARCOMPS", - "nomCommune": "ARCOMPS" + "codePostal": "14350", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "21290", - "codeCommune": "21157", - "libelleAcheminement": "CHAUGEY", - "nomCommune": "CHAUGEY" + "codePostal": "26270", + "codeCommune": "26185", + "libelleAcheminement": "MIRMANDE", + "nomCommune": "MIRMANDE" }, { - "codePostal": "58330", - "codeCommune": "58257", - "libelleAcheminement": "ST MAURICE", - "nomCommune": "ST MAURICE" + "codePostal": "26310", + "codeCommune": "26152", + "libelleAcheminement": "JONCHERES", + "nomCommune": "JONCHERES" }, { - "codePostal": "54450", - "codeCommune": "54030", - "libelleAcheminement": "AUTREPIERRE", - "nomCommune": "AUTREPIERRE" + "codePostal": "14600", + "codeCommune": "14041", + "libelleAcheminement": "BARNEVILLE LA BERTRAN", + "nomCommune": "BARNEVILLE LA BERTRAN" }, { - "codePostal": "18200", - "codeCommune": "18013", - "libelleAcheminement": "ARPHEUILLES", - "nomCommune": "ARPHEUILLES" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "21610", - "codeCommune": "21158", - "libelleAcheminement": "CHAUME ET COURCHAMP", - "nomCommune": "CHAUME ET COURCHAMP" + "codePostal": "26110", + "codeCommune": "26190", + "libelleAcheminement": "MONTAULIEU", + "nomCommune": "MONTAULIEU" }, { - "codePostal": "58490", - "codeCommune": "58260", - "libelleAcheminement": "ST PARIZE LE CHATEL", - "nomCommune": "ST PARIZE LE CHATEL" + "codePostal": "26560", + "codeCommune": "26154", + "libelleAcheminement": "LACHAU", + "nomCommune": "LACHAU" }, { - "codePostal": "54160", - "codeCommune": "54032", - "libelleAcheminement": "AUTREY", - "nomCommune": "AUTREY" + "codePostal": "14210", + "codeCommune": "14042", + "libelleAcheminement": "BARON SUR ODON", + "nomCommune": "BARON SUR ODON" }, { - "codePostal": "18700", - "codeCommune": "18015", - "libelleAcheminement": "AUBIGNY SUR NERE", - "nomCommune": "AUBIGNY SUR NERE" + "codePostal": "14930", + "codeCommune": "14747", + "libelleAcheminement": "VIEUX", + "nomCommune": "VIEUX" }, { - "codePostal": "21450", - "codeCommune": "21160", - "libelleAcheminement": "CHAUME LES BAIGNEUX", - "nomCommune": "CHAUME LES BAIGNEUX" + "codePostal": "26740", + "codeCommune": "26191", + "libelleAcheminement": "MONTBOUCHER SUR JABRON", + "nomCommune": "MONTBOUCHER SUR JABRON" }, { - "codePostal": "58490", - "codeCommune": "58260", - "libelleAcheminement": "ST PARIZE LE CHATEL", - "nomCommune": "ST PARIZE LE CHATEL" + "codePostal": "26310", + "codeCommune": "26164", + "libelleAcheminement": "LESCHES EN DIOIS", + "nomCommune": "LESCHES EN DIOIS" }, { - "codePostal": "54490", - "codeCommune": "54033", - "libelleAcheminement": "AVILLERS", - "nomCommune": "AVILLERS" + "codePostal": "14860", + "codeCommune": "14046", + "libelleAcheminement": "BAVENT", + "nomCommune": "BAVENT" }, { - "codePostal": "18220", - "codeCommune": "18016", - "libelleAcheminement": "AUBINGES", - "nomCommune": "AUBINGES" + "codePostal": "14310", + "codeCommune": "14752", + "libelleAcheminement": "VILLERS BOCAGE", + "nomCommune": "VILLERS BOCAGE" }, { - "codePostal": "21260", - "codeCommune": "21163", - "libelleAcheminement": "CHAZEUIL", - "nomCommune": "CHAZEUIL" + "codePostal": "26760", + "codeCommune": "26196", + "libelleAcheminement": "MONTELEGER", + "nomCommune": "MONTELEGER" }, { - "codePostal": "58200", - "codeCommune": "58261", - "libelleAcheminement": "ST PERE", - "nomCommune": "ST PERE" + "codePostal": "26620", + "codeCommune": "26168", + "libelleAcheminement": "LUS LA CROIX HAUTE", + "nomCommune": "LUS LA CROIX HAUTE" }, { - "codePostal": "54150", - "codeCommune": "54036", - "libelleAcheminement": "AVRIL", - "nomCommune": "AVRIL" + "codePostal": "14370", + "codeCommune": "14057", + "libelleAcheminement": "BELLENGREVILLE", + "nomCommune": "BELLENGREVILLE" }, { - "codePostal": "18300", - "codeCommune": "18020", - "libelleAcheminement": "BANNAY", - "nomCommune": "BANNAY" + "codePostal": "14113", + "codeCommune": "14755", + "libelleAcheminement": "VILLERVILLE", + "nomCommune": "VILLERVILLE" }, { - "codePostal": "21320", - "codeCommune": "21164", - "libelleAcheminement": "CHAZILLY", - "nomCommune": "CHAZILLY" + "codePostal": "26310", + "codeCommune": "26204", + "libelleAcheminement": "MONTLAUR EN DIOIS", + "nomCommune": "MONTLAUR EN DIOIS" }, { - "codePostal": "58110", - "codeCommune": "58262", - "libelleAcheminement": "ST PEREUSE", - "nomCommune": "ST PEREUSE" + "codePostal": "26780", + "codeCommune": "26169", + "libelleAcheminement": "MALATAVERNE", + "nomCommune": "MALATAVERNE" }, { - "codePostal": "54120", - "codeCommune": "54039", - "libelleAcheminement": "BACCARAT", - "nomCommune": "BACCARAT" + "codePostal": "14970", + "codeCommune": "14060", + "libelleAcheminement": "BENOUVILLE", + "nomCommune": "BENOUVILLE" }, { - "codePostal": "18370", - "codeCommune": "18024", - "libelleAcheminement": "BEDDES", - "nomCommune": "BEDDES" + "codePostal": "14700", + "codeCommune": "14759", + "libelleAcheminement": "VILLY LEZ FALAISE", + "nomCommune": "VILLY LEZ FALAISE" }, { - "codePostal": "21220", - "codeCommune": "21178", - "libelleAcheminement": "VALFORET", - "nomCommune": "VALFORET" + "codePostal": "26120", + "codeCommune": "26212", + "libelleAcheminement": "MONTVENDRE", + "nomCommune": "MONTVENDRE" }, { - "codePostal": "58420", - "codeCommune": "58266", - "libelleAcheminement": "ST REVERIEN", - "nomCommune": "ST REVERIEN" + "codePostal": "26210", + "codeCommune": "26172", + "libelleAcheminement": "MANTHES", + "nomCommune": "MANTHES" }, { - "codePostal": "54620", - "codeCommune": "54049", - "libelleAcheminement": "BASLIEUX", - "nomCommune": "BASLIEUX" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "18350", - "codeCommune": "18031", - "libelleAcheminement": "BLET", - "nomCommune": "BLET" + "codePostal": "14370", + "codeCommune": "14761", + "libelleAcheminement": "VIMONT", + "nomCommune": "VIMONT" }, { - "codePostal": "21250", - "codeCommune": "21189", - "libelleAcheminement": "CORBERON", - "nomCommune": "CORBERON" + "codePostal": "26110", + "codeCommune": "26220", + "libelleAcheminement": "NYONS", + "nomCommune": "NYONS" }, { - "codePostal": "58160", - "codeCommune": "58273", - "libelleAcheminement": "SAUVIGNY LES BOIS", - "nomCommune": "SAUVIGNY LES BOIS" + "codePostal": "26300", + "codeCommune": "26173", + "libelleAcheminement": "MARCHES", + "nomCommune": "MARCHES" }, { - "codePostal": "54620", - "codeCommune": "54056", - "libelleAcheminement": "BAZAILLES", - "nomCommune": "BAZAILLES" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "18000", - "codeCommune": "18033", - "libelleAcheminement": "BOURGES", - "nomCommune": "BOURGES" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "21910", - "codeCommune": "21191", - "libelleAcheminement": "CORCELLES LES CITEAUX", - "nomCommune": "CORCELLES LES CITEAUX" + "codePostal": "26400", + "codeCommune": "26221", + "libelleAcheminement": "OMBLEZE", + "nomCommune": "OMBLEZE" }, { - "codePostal": "58170", - "codeCommune": "58274", - "libelleAcheminement": "SAVIGNY POIL FOL", - "nomCommune": "SAVIGNY POIL FOL" + "codePostal": "26150", + "codeCommune": "26175", + "libelleAcheminement": "MARIGNAC EN DIOIS", + "nomCommune": "MARIGNAC EN DIOIS" }, { - "codePostal": "54610", - "codeCommune": "54059", - "libelleAcheminement": "BELLEAU", - "nomCommune": "BELLEAU" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "18220", - "codeCommune": "18035", - "libelleAcheminement": "BRECY", - "nomCommune": "BRECY" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "21150", - "codeCommune": "21197", - "libelleAcheminement": "CORPOYER LA CHAPELLE", - "nomCommune": "CORPOYER LA CHAPELLE" + "codePostal": "26510", + "codeCommune": "26227", + "libelleAcheminement": "PELONNE", + "nomCommune": "PELONNE" }, { - "codePostal": "58360", - "codeCommune": "58276", - "libelleAcheminement": "SEMELAY", - "nomCommune": "SEMELAY" + "codePostal": "26600", + "codeCommune": "26179", + "libelleAcheminement": "MERCUROL VEAUNES", + "nomCommune": "MERCUROL VEAUNES" }, { - "codePostal": "54450", - "codeCommune": "54061", - "libelleAcheminement": "BENAMENIL", - "nomCommune": "BENAMENIL" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "18200", - "codeCommune": "18042", - "libelleAcheminement": "LA CELLE", - "nomCommune": "LA CELLE" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "21460", - "codeCommune": "21198", - "libelleAcheminement": "CORROMBLES", - "nomCommune": "CORROMBLES" + "codePostal": "26340", + "codeCommune": "26228", + "libelleAcheminement": "PENNES LE SEC", + "nomCommune": "PENNES LE SEC" }, { - "codePostal": "58500", - "codeCommune": "58282", - "libelleAcheminement": "SURGY", - "nomCommune": "SURGY" + "codePostal": "26110", + "codeCommune": "26182", + "libelleAcheminement": "MIRABEL AUX BARONNIES", + "nomCommune": "MIRABEL AUX BARONNIES" }, { - "codePostal": "54470", - "codeCommune": "54063", - "libelleAcheminement": "BERNECOURT", - "nomCommune": "BERNECOURT" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "18190", - "codeCommune": "18046", - "libelleAcheminement": "CHAMBON", - "nomCommune": "CHAMBON" + "codePostal": "15700", + "codeCommune": "15003", + "libelleAcheminement": "ALLY", + "nomCommune": "ALLY" }, { - "codePostal": "21460", - "codeCommune": "21199", - "libelleAcheminement": "CORSAINT", - "nomCommune": "CORSAINT" + "codePostal": "26170", + "codeCommune": "26229", + "libelleAcheminement": "LA PENNE SUR L OUVEZE", + "nomCommune": "LA PENNE SUR L OUVEZE" }, { - "codePostal": "58190", - "codeCommune": "58284", - "libelleAcheminement": "TALON", - "nomCommune": "TALON" + "codePostal": "26400", + "codeCommune": "26183", + "libelleAcheminement": "MIRABEL ET BLACONS", + "nomCommune": "MIRABEL ET BLACONS" }, { - "codePostal": "54200", - "codeCommune": "54073", - "libelleAcheminement": "BICQUELEY", - "nomCommune": "BICQUELEY" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "18570", - "codeCommune": "18050", - "libelleAcheminement": "LA CHAPELLE ST URSIN", - "nomCommune": "LA CHAPELLE ST URSIN" + "codePostal": "15000", + "codeCommune": "15014", + "libelleAcheminement": "AURILLAC", + "nomCommune": "AURILLAC" }, { - "codePostal": "21400", - "codeCommune": "21201", - "libelleAcheminement": "COULMIER LE SEC", - "nomCommune": "COULMIER LE SEC" + "codePostal": "26380", + "codeCommune": "26231", + "libelleAcheminement": "PEYRINS", + "nomCommune": "PEYRINS" }, { - "codePostal": "58170", - "codeCommune": "58287", - "libelleAcheminement": "TAZILLY", - "nomCommune": "TAZILLY" + "codePostal": "26770", + "codeCommune": "26192", + "libelleAcheminement": "MONTBRISON SUR LEZ", + "nomCommune": "MONTBRISON SUR LEZ" }, { - "codePostal": "54450", - "codeCommune": "54078", - "libelleAcheminement": "BLEMEREY", - "nomCommune": "BLEMEREY" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "18250", - "codeCommune": "18051", - "libelleAcheminement": "LA CHAPELOTTE", - "nomCommune": "LA CHAPELOTTE" + "codePostal": "15250", + "codeCommune": "15016", + "libelleAcheminement": "AYRENS", + "nomCommune": "AYRENS" }, { - "codePostal": "21520", - "codeCommune": "21202", - "libelleAcheminement": "COURBAN", - "nomCommune": "COURBAN" + "codePostal": "26110", + "codeCommune": "26233", + "libelleAcheminement": "PIEGON", + "nomCommune": "PIEGON" }, { - "codePostal": "58150", - "codeCommune": "58295", - "libelleAcheminement": "TRACY SUR LOIRE", - "nomCommune": "TRACY SUR LOIRE" + "codePostal": "26120", + "codeCommune": "26197", + "libelleAcheminement": "MONTELIER", + "nomCommune": "MONTELIER" }, { - "codePostal": "54300", - "codeCommune": "54083", - "libelleAcheminement": "BONVILLER", - "nomCommune": "BONVILLER" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "18350", - "codeCommune": "18054", - "libelleAcheminement": "CHARLY", - "nomCommune": "CHARLY" + "codePostal": "15800", + "codeCommune": "15017", + "libelleAcheminement": "BADAILHAC", + "nomCommune": "BADAILHAC" }, { - "codePostal": "21220", - "codeCommune": "21228", - "libelleAcheminement": "DETAIN ET BRUANT", - "nomCommune": "DETAIN ET BRUANT" + "codePostal": "26160", + "codeCommune": "26243", + "libelleAcheminement": "LE POET LAVAL", + "nomCommune": "LE POET LAVAL" }, { - "codePostal": "58400", - "codeCommune": "58302", - "libelleAcheminement": "VARENNES LES NARCY", - "nomCommune": "VARENNES LES NARCY" + "codePostal": "26120", + "codeCommune": "26197", + "libelleAcheminement": "MONTELIER", + "nomCommune": "MONTELIER" }, { - "codePostal": "54111", - "codeCommune": "54084", - "libelleAcheminement": "MONT BONVILLERS", - "nomCommune": "MONT BONVILLERS" + "codePostal": "14990", + "codeCommune": "14066", + "libelleAcheminement": "BERNIERES SUR MER", + "nomCommune": "BERNIERES SUR MER" }, { - "codePostal": "18170", - "codeCommune": "18059", - "libelleAcheminement": "LE CHATELET", - "nomCommune": "LE CHATELET" + "codePostal": "15300", + "codeCommune": "15025", + "libelleAcheminement": "ALBEPIERRE BREDONS", + "nomCommune": "ALBEPIERRE BREDONS" }, { - "codePostal": "21390", - "codeCommune": "21232", - "libelleAcheminement": "DOMPIERRE EN MORVAN", - "nomCommune": "DOMPIERRE EN MORVAN" + "codePostal": "26240", + "codeCommune": "26247", + "libelleAcheminement": "PONSAS", + "nomCommune": "PONSAS" }, { - "codePostal": "58300", - "codeCommune": "58306", - "libelleAcheminement": "VERNEUIL", - "nomCommune": "VERNEUIL" + "codePostal": "26750", + "codeCommune": "26207", + "libelleAcheminement": "MONTMIRAL", + "nomCommune": "MONTMIRAL" }, { - "codePostal": "54200", - "codeCommune": "54086", - "libelleAcheminement": "BOUCQ", - "nomCommune": "BOUCQ" + "codePostal": "14130", + "codeCommune": "14077", + "libelleAcheminement": "BLANGY LE CHATEAU", + "nomCommune": "BLANGY LE CHATEAU" }, { - "codePostal": "18160", - "codeCommune": "18065", - "libelleAcheminement": "CHEZAL BENOIT", - "nomCommune": "CHEZAL BENOIT" + "codePostal": "15230", + "codeCommune": "15033", + "libelleAcheminement": "CEZENS", + "nomCommune": "CEZENS" }, { - "codePostal": "21510", - "codeCommune": "21235", - "libelleAcheminement": "DUESME", - "nomCommune": "DUESME" + "codePostal": "26150", + "codeCommune": "26248", + "libelleAcheminement": "PONTAIX", + "nomCommune": "PONTAIX" }, { - "codePostal": "58500", - "codeCommune": "58312", - "libelleAcheminement": "VILLIERS SUR YONNE", - "nomCommune": "VILLIERS SUR YONNE" + "codePostal": "26220", + "codeCommune": "26222", + "libelleAcheminement": "ORCINAS", + "nomCommune": "ORCINAS" }, { - "codePostal": "54740", - "codeCommune": "54094", - "libelleAcheminement": "BRALLEVILLE", - "nomCommune": "BRALLEVILLE" + "codePostal": "14400", + "codeCommune": "14078", + "libelleAcheminement": "BLAY", + "nomCommune": "BLAY" }, { - "codePostal": "18350", - "codeCommune": "18080", - "libelleAcheminement": "CROISY", - "nomCommune": "CROISY" + "codePostal": "15190", + "codeCommune": "15054", + "libelleAcheminement": "CONDAT", + "nomCommune": "CONDAT" }, { - "codePostal": "21120", - "codeCommune": "21240", - "libelleAcheminement": "ECHEVANNES", - "nomCommune": "ECHEVANNES" + "codePostal": "26570", + "codeCommune": "26263", + "libelleAcheminement": "REILHANETTE", + "nomCommune": "REILHANETTE" }, { - "codePostal": "59215", - "codeCommune": "59002", - "libelleAcheminement": "ABSCON", - "nomCommune": "ABSCON" + "codePostal": "26400", + "codeCommune": "26234", + "libelleAcheminement": "PIEGROS LA CLASTRE", + "nomCommune": "PIEGROS LA CLASTRE" }, { - "codePostal": "54280", - "codeCommune": "54100", - "libelleAcheminement": "BRIN SUR SEILLE", - "nomCommune": "BRIN SUR SEILLE" + "codePostal": "14260", + "codeCommune": "14084", + "libelleAcheminement": "BONNEMAISON", + "nomCommune": "BONNEMAISON" }, { - "codePostal": "18150", - "codeCommune": "18082", - "libelleAcheminement": "CUFFY", - "nomCommune": "CUFFY" + "codePostal": "15380", + "codeCommune": "15066", + "libelleAcheminement": "LE FALGOUX", + "nomCommune": "LE FALGOUX" }, { - "codePostal": "21110", - "codeCommune": "21242", - "libelleAcheminement": "ECHIGEY", - "nomCommune": "ECHIGEY" + "codePostal": "26600", + "codeCommune": "26271", + "libelleAcheminement": "LA ROCHE DE GLUN", + "nomCommune": "LA ROCHE DE GLUN" }, { - "codePostal": "59310", - "codeCommune": "59004", - "libelleAcheminement": "AIX EN PEVELE", - "nomCommune": "AIX EN PEVELE" + "codePostal": "26170", + "codeCommune": "26239", + "libelleAcheminement": "PLAISIANS", + "nomCommune": "PLAISIANS" }, { - "codePostal": "54370", - "codeCommune": "54106", - "libelleAcheminement": "BURES", - "nomCommune": "BURES" + "codePostal": "14430", + "codeCommune": "14091", + "libelleAcheminement": "BOURGEAUVILLE", + "nomCommune": "BOURGEAUVILLE" }, { - "codePostal": "18130", - "codeCommune": "18087", - "libelleAcheminement": "DUN SUR AURON", - "nomCommune": "DUN SUR AURON" + "codePostal": "15140", + "codeCommune": "15067", + "libelleAcheminement": "LE FAU", + "nomCommune": "LE FAU" }, { - "codePostal": "21400", - "codeCommune": "21258", - "libelleAcheminement": "ETROCHEY", - "nomCommune": "ETROCHEY" + "codePostal": "26300", + "codeCommune": "26273", + "libelleAcheminement": "ROCHEFORT SAMSON", + "nomCommune": "ROCHEFORT SAMSON" }, { - "codePostal": "59280", - "codeCommune": "59017", - "libelleAcheminement": "ARMENTIERES", - "nomCommune": "ARMENTIERES" + "codePostal": "26170", + "codeCommune": "26242", + "libelleAcheminement": "LE POET EN PERCIP", + "nomCommune": "LE POET EN PERCIP" }, { - "codePostal": "54450", - "codeCommune": "54107", - "libelleAcheminement": "BURIVILLE", - "nomCommune": "BURIVILLE" + "codePostal": "14740", + "codeCommune": "14098", + "libelleAcheminement": "THUE ET MUE", + "nomCommune": "THUE ET MUE" }, { - "codePostal": "18380", - "codeCommune": "18088", - "libelleAcheminement": "ENNORDRES", - "nomCommune": "ENNORDRES" + "codePostal": "15230", + "codeCommune": "15077", + "libelleAcheminement": "GOURDIEGES", + "nomCommune": "GOURDIEGES" }, { - "codePostal": "21290", - "codeCommune": "21262", - "libelleAcheminement": "FAVEROLLES LES LUCEY", - "nomCommune": "FAVEROLLES LES LUCEY" + "codePostal": "26770", + "codeCommune": "26276", + "libelleAcheminement": "ROCHE ST SECRET BECONNE", + "nomCommune": "ROCHE ST SECRET BECONNE" }, { - "codePostal": "59269", - "codeCommune": "59019", - "libelleAcheminement": "ARTRES", - "nomCommune": "ARTRES" + "codePostal": "26160", + "codeCommune": "26249", + "libelleAcheminement": "PONT DE BARRET", + "nomCommune": "PONT DE BARRET" }, { - "codePostal": "54134", - "codeCommune": "54109", - "libelleAcheminement": "CEINTREY", - "nomCommune": "CEINTREY" + "codePostal": "14740", + "codeCommune": "14098", + "libelleAcheminement": "THUE ET MUE", + "nomCommune": "THUE ET MUE" }, { - "codePostal": "18360", - "codeCommune": "18089", - "libelleAcheminement": "EPINEUIL LE FLEURIEL", - "nomCommune": "EPINEUIL LE FLEURIEL" + "codePostal": "15110", + "codeCommune": "15078", + "libelleAcheminement": "JABRUN", + "nomCommune": "JABRUN" }, { - "codePostal": "21230", - "codeCommune": "21264", - "libelleAcheminement": "LE FETE", - "nomCommune": "LE FETE" + "codePostal": "26230", + "codeCommune": "26284", + "libelleAcheminement": "ROUSSAS", + "nomCommune": "ROUSSAS" }, { - "codePostal": "59310", - "codeCommune": "59029", - "libelleAcheminement": "AUCHY LEZ ORCHIES", - "nomCommune": "AUCHY LEZ ORCHIES" + "codePostal": "26310", + "codeCommune": "26262", + "libelleAcheminement": "RECOUBEAU JANSAC", + "nomCommune": "RECOUBEAU JANSAC" }, { - "codePostal": "54330", - "codeCommune": "54117", - "libelleAcheminement": "CHAOUILLEY", - "nomCommune": "CHAOUILLEY" + "codePostal": "14860", + "codeCommune": "14106", + "libelleAcheminement": "BREVILLE LES MONTS", + "nomCommune": "BREVILLE LES MONTS" }, { - "codePostal": "18310", - "codeCommune": "18100", - "libelleAcheminement": "GENOUILLY", - "nomCommune": "GENOUILLY" + "codePostal": "15120", + "codeCommune": "15082", + "libelleAcheminement": "JUNHAC", + "nomCommune": "JUNHAC" }, { - "codePostal": "21220", - "codeCommune": "21265", - "libelleAcheminement": "FIXIN", - "nomCommune": "FIXIN" + "codePostal": "26770", + "codeCommune": "26285", + "libelleAcheminement": "ROUSSET LES VIGNES", + "nomCommune": "ROUSSET LES VIGNES" }, { - "codePostal": "59300", - "codeCommune": "59032", - "libelleAcheminement": "AULNOY LEZ VALENCIENNES", - "nomCommune": "AULNOY LEZ VALENCIENNES" + "codePostal": "26510", + "codeCommune": "26264", + "libelleAcheminement": "REMUZAT", + "nomCommune": "REMUZAT" }, { - "codePostal": "54200", - "codeCommune": "54122", - "libelleAcheminement": "CHAUDENEY SUR MOSELLE", - "nomCommune": "CHAUDENEY SUR MOSELLE" + "codePostal": "14190", + "codeCommune": "14116", + "libelleAcheminement": "LE BU SUR ROUVRES", + "nomCommune": "LE BU SUR ROUVRES" }, { - "codePostal": "18150", - "codeCommune": "18101", - "libelleAcheminement": "GERMIGNY L EXEMPT", - "nomCommune": "GERMIGNY L EXEMPT" + "codePostal": "15130", + "codeCommune": "15085", + "libelleAcheminement": "LABROUSSE", + "nomCommune": "LABROUSSE" }, { - "codePostal": "21150", - "codeCommune": "21271", - "libelleAcheminement": "FLAVIGNY SUR OZERAIN", - "nomCommune": "FLAVIGNY SUR OZERAIN" + "codePostal": "26420", + "codeCommune": "26290", + "libelleAcheminement": "ST AGNAN EN VERCORS", + "nomCommune": "ST AGNAN EN VERCORS" }, { - "codePostal": "59296", - "codeCommune": "59038", - "libelleAcheminement": "AVESNES LE SEC", - "nomCommune": "AVESNES LE SEC" + "codePostal": "26170", + "codeCommune": "26278", + "libelleAcheminement": "LA ROCHE SUR LE BUIS", + "nomCommune": "LA ROCHE SUR LE BUIS" }, { - "codePostal": "54610", - "codeCommune": "54126", - "libelleAcheminement": "CHENICOURT", - "nomCommune": "CHENICOURT" + "codePostal": "14000", + "codeCommune": "14118", + "libelleAcheminement": "CAEN", + "nomCommune": "CAEN" }, { - "codePostal": "18600", - "codeCommune": "18102", - "libelleAcheminement": "GIVARDON", - "nomCommune": "GIVARDON" + "codePostal": "15130", + "codeCommune": "15090", + "libelleAcheminement": "LAFEUILLADE EN VEZIE", + "nomCommune": "LAFEUILLADE EN VEZIE" }, { - "codePostal": "21450", - "codeCommune": "21276", - "libelleAcheminement": "FONTAINES EN DUESMOIS", - "nomCommune": "FONTAINES EN DUESMOIS" + "codePostal": "26150", + "codeCommune": "26291", + "libelleAcheminement": "ST ANDEOL", + "nomCommune": "ST ANDEOL" }, { - "codePostal": "59780", - "codeCommune": "59044", - "libelleAcheminement": "BAISIEUX", - "nomCommune": "BAISIEUX" + "codePostal": "26340", + "codeCommune": "26289", + "libelleAcheminement": "SAILLANS", + "nomCommune": "SAILLANS" }, { - "codePostal": "54260", - "codeCommune": "54134", - "libelleAcheminement": "COLMEY", - "nomCommune": "COLMEY" + "codePostal": "14240", + "codeCommune": "14120", + "libelleAcheminement": "CAHAGNES", + "nomCommune": "CAHAGNES" }, { - "codePostal": "18310", - "codeCommune": "18103", - "libelleAcheminement": "GRACAY", - "nomCommune": "GRACAY" + "codePostal": "15270", + "codeCommune": "15092", + "libelleAcheminement": "LANOBRE", + "nomCommune": "LANOBRE" }, { - "codePostal": "21390", - "codeCommune": "21280", - "libelleAcheminement": "FONTANGY", - "nomCommune": "FONTANGY" + "codePostal": "26340", + "codeCommune": "26296", + "libelleAcheminement": "ST BENOIT EN DIOIS", + "nomCommune": "ST BENOIT EN DIOIS" }, { - "codePostal": "59266", - "codeCommune": "59049", - "libelleAcheminement": "BANTOUZELLE", - "nomCommune": "BANTOUZELLE" + "codePostal": "26420", + "codeCommune": "26290", + "libelleAcheminement": "ST AGNAN EN VERCORS", + "nomCommune": "ST AGNAN EN VERCORS" }, { - "codePostal": "54170", - "codeCommune": "54143", - "libelleAcheminement": "CREPEY", - "nomCommune": "CREPEY" + "codePostal": "14210", + "codeCommune": "14122", + "libelleAcheminement": "LA CAINE", + "nomCommune": "LA CAINE" }, { - "codePostal": "18800", - "codeCommune": "18105", - "libelleAcheminement": "GRON", - "nomCommune": "GRON" + "codePostal": "15120", + "codeCommune": "15093", + "libelleAcheminement": "LAPEYRUGUE", + "nomCommune": "LAPEYRUGUE" }, { - "codePostal": "21120", - "codeCommune": "21286", - "libelleAcheminement": "FRENOIS", - "nomCommune": "FRENOIS" + "codePostal": "26350", + "codeCommune": "26298", + "libelleAcheminement": "ST CHRISTOPHE ET LE LARIS", + "nomCommune": "ST CHRISTOPHE ET LE LARIS" }, { - "codePostal": "59480", - "codeCommune": "59051", - "libelleAcheminement": "LA BASSEE", - "nomCommune": "LA BASSEE" + "codePostal": "26260", + "codeCommune": "26294", + "libelleAcheminement": "ST BARDOUX", + "nomCommune": "ST BARDOUX" }, { - "codePostal": "54370", - "codeCommune": "54155", - "libelleAcheminement": "DEUXVILLE", - "nomCommune": "DEUXVILLE" + "codePostal": "14610", + "codeCommune": "14125", + "libelleAcheminement": "CAMBES EN PLAINE", + "nomCommune": "CAMBES EN PLAINE" }, { - "codePostal": "18260", - "codeCommune": "18117", - "libelleAcheminement": "JARS", - "nomCommune": "JARS" + "codePostal": "15150", + "codeCommune": "15094", + "libelleAcheminement": "LAROQUEBROU", + "nomCommune": "LAROQUEBROU" }, { - "codePostal": "21500", - "codeCommune": "21287", - "libelleAcheminement": "FRESNES", - "nomCommune": "FRESNES" + "codePostal": "26310", + "codeCommune": "26300", + "libelleAcheminement": "ST DIZIER EN DIOIS", + "nomCommune": "ST DIZIER EN DIOIS" }, { - "codePostal": "59570", - "codeCommune": "59053", - "libelleAcheminement": "BAVAY", - "nomCommune": "BAVAY" + "codePostal": "26160", + "codeCommune": "26305", + "libelleAcheminement": "ST GERVAIS SUR ROUBION", + "nomCommune": "ST GERVAIS SUR ROUBION" }, { - "codePostal": "54170", - "codeCommune": "54158", - "libelleAcheminement": "DOLCOURT", - "nomCommune": "DOLCOURT" + "codePostal": "14340", + "codeCommune": "14126", + "libelleAcheminement": "CAMBREMER", + "nomCommune": "CAMBREMER" }, { - "codePostal": "18130", - "codeCommune": "18121", - "libelleAcheminement": "LANTAN", - "nomCommune": "LANTAN" + "codePostal": "15250", + "codeCommune": "15095", + "libelleAcheminement": "LAROQUEVIEILLE", + "nomCommune": "LAROQUEVIEILLE" }, { - "codePostal": "21700", - "codeCommune": "21289", - "libelleAcheminement": "FUSSEY", - "nomCommune": "FUSSEY" + "codePostal": "26190", + "codeCommune": "26302", + "libelleAcheminement": "STE EULALIE EN ROYANS", + "nomCommune": "STE EULALIE EN ROYANS" }, { - "codePostal": "59134", - "codeCommune": "59056", - "libelleAcheminement": "BEAUCAMPS LIGNY", - "nomCommune": "BEAUCAMPS LIGNY" + "codePostal": "26110", + "codeCommune": "26306", + "libelleAcheminement": "STE JALLE", + "nomCommune": "STE JALLE" }, { - "codePostal": "54470", - "codeCommune": "54166", - "libelleAcheminement": "DOMMARTIN LA CHAUSSEE", - "nomCommune": "DOMMARTIN LA CHAUSSEE" + "codePostal": "14340", + "codeCommune": "14126", + "libelleAcheminement": "CAMBREMER", + "nomCommune": "CAMBREMER" }, { - "codePostal": "18240", - "codeCommune": "18125", - "libelleAcheminement": "LERE", - "nomCommune": "LERE" + "codePostal": "15300", + "codeCommune": "15102", + "libelleAcheminement": "LAVIGERIE", + "nomCommune": "LAVIGERIE" }, { - "codePostal": "21410", - "codeCommune": "21300", - "libelleAcheminement": "GISSEY SUR OUCHE", - "nomCommune": "GISSEY SUR OUCHE" + "codePostal": "26110", + "codeCommune": "26304", + "libelleAcheminement": "ST FERREOL TRENTE PAS", + "nomCommune": "ST FERREOL TRENTE PAS" }, { - "codePostal": "59980", - "codeCommune": "59074", - "libelleAcheminement": "BERTRY", - "nomCommune": "BERTRY" + "codePostal": "26150", + "codeCommune": "26308", + "libelleAcheminement": "ST JULIEN EN QUINT", + "nomCommune": "ST JULIEN EN QUINT" }, { - "codePostal": "54360", - "codeCommune": "54175", - "libelleAcheminement": "EINVAUX", - "nomCommune": "EINVAUX" + "codePostal": "14340", + "codeCommune": "14126", + "libelleAcheminement": "CAMBREMER", + "nomCommune": "CAMBREMER" }, { - "codePostal": "18120", - "codeCommune": "18128", - "libelleAcheminement": "LIMEUX", - "nomCommune": "LIMEUX" + "codePostal": "15320", + "codeCommune": "15108", + "libelleAcheminement": "VAL D ARCOMIE", + "nomCommune": "VAL D ARCOMIE" }, { - "codePostal": "21520", - "codeCommune": "21303", - "libelleAcheminement": "LES GOULLES", - "nomCommune": "LES GOULLES" + "codePostal": "26190", + "codeCommune": "26307", + "libelleAcheminement": "ST JEAN EN ROYANS", + "nomCommune": "ST JEAN EN ROYANS" }, { - "codePostal": "59216", - "codeCommune": "59078", - "libelleAcheminement": "BEUGNIES", - "nomCommune": "BEUGNIES" + "codePostal": "26410", + "codeCommune": "26327", + "libelleAcheminement": "ST ROMAN", + "nomCommune": "ST ROMAN" }, { - "codePostal": "54330", - "codeCommune": "54185", - "libelleAcheminement": "ETREVAL", - "nomCommune": "ETREVAL" + "codePostal": "14490", + "codeCommune": "14130", + "libelleAcheminement": "CAMPIGNY", + "nomCommune": "CAMPIGNY" }, { - "codePostal": "18140", - "codeCommune": "18132", - "libelleAcheminement": "LUGNY CHAMPAGNE", - "nomCommune": "LUGNY CHAMPAGNE" + "codePostal": "15400", + "codeCommune": "15116", + "libelleAcheminement": "MARCHASTEL", + "nomCommune": "MARCHASTEL" }, { - "codePostal": "21150", - "codeCommune": "21307", - "libelleAcheminement": "GRESIGNY STE REINE", - "nomCommune": "GRESIGNY STE REINE" + "codePostal": "26420", + "codeCommune": "26315", + "libelleAcheminement": "ST MARTIN EN VERCORS", + "nomCommune": "ST MARTIN EN VERCORS" }, { - "codePostal": "59192", - "codeCommune": "59079", - "libelleAcheminement": "BEUVRAGES", - "nomCommune": "BEUVRAGES" + "codePostal": "26340", + "codeCommune": "26328", + "libelleAcheminement": "ST SAUVEUR EN DIOIS", + "nomCommune": "ST SAUVEUR EN DIOIS" }, { - "codePostal": "54470", - "codeCommune": "54187", - "libelleAcheminement": "EUVEZIN", - "nomCommune": "EUVEZIN" + "codePostal": "14230", + "codeCommune": "14136", + "libelleAcheminement": "CARDONVILLE", + "nomCommune": "CARDONVILLE" }, { - "codePostal": "18120", - "codeCommune": "18134", - "libelleAcheminement": "LURY SUR ARNON", - "nomCommune": "LURY SUR ARNON" + "codePostal": "15220", + "codeCommune": "15117", + "libelleAcheminement": "MARCOLES", + "nomCommune": "MARCOLES" }, { - "codePostal": "21150", - "codeCommune": "21308", - "libelleAcheminement": "GRIGNON", - "nomCommune": "GRIGNON" + "codePostal": "26110", + "codeCommune": "26317", + "libelleAcheminement": "ST MAURICE SUR EYGUES", + "nomCommune": "ST MAURICE SUR EYGUES" }, { - "codePostal": "59380", - "codeCommune": "59082", - "libelleAcheminement": "BIERNE", - "nomCommune": "BIERNE" + "codePostal": "26210", + "codeCommune": "26330", + "libelleAcheminement": "ST SORLIN EN VALLOIRE", + "nomCommune": "ST SORLIN EN VALLOIRE" }, { - "codePostal": "54210", - "codeCommune": "54192", - "libelleAcheminement": "FERRIERES", - "nomCommune": "FERRIERES" + "codePostal": "14650", + "codeCommune": "14137", + "libelleAcheminement": "CARPIQUET", + "nomCommune": "CARPIQUET" }, { - "codePostal": "18170", - "codeCommune": "18136", - "libelleAcheminement": "MARCAIS", - "nomCommune": "MARCAIS" + "codePostal": "15400", + "codeCommune": "15124", + "libelleAcheminement": "MENET", + "nomCommune": "MENET" }, { - "codePostal": "21330", - "codeCommune": "21309", - "libelleAcheminement": "GRISELLES", - "nomCommune": "GRISELLES" + "codePostal": "26190", + "codeCommune": "26320", + "libelleAcheminement": "ST NAZAIRE EN ROYANS", + "nomCommune": "ST NAZAIRE EN ROYANS" }, { - "codePostal": "59280", - "codeCommune": "59088", - "libelleAcheminement": "BOIS GRENIER", - "nomCommune": "BOIS GRENIER" + "codePostal": "26240", + "codeCommune": "26332", + "libelleAcheminement": "ST UZE", + "nomCommune": "ST UZE" }, { - "codePostal": "54560", - "codeCommune": "54194", - "libelleAcheminement": "FILLIERES", - "nomCommune": "FILLIERES" + "codePostal": "14240", + "codeCommune": "14143", + "libelleAcheminement": "CAUMONT SUR AURE", + "nomCommune": "CAUMONT SUR AURE" }, { - "codePostal": "18320", - "codeCommune": "18139", - "libelleAcheminement": "MARSEILLES LES AUBIGNY", - "nomCommune": "MARSEILLES LES AUBIGNY" + "codePostal": "15100", + "codeCommune": "15125", + "libelleAcheminement": "MENTIERES", + "nomCommune": "MENTIERES" }, { - "codePostal": "21250", - "codeCommune": "21311", - "libelleAcheminement": "GROSBOIS LES TICHEY", - "nomCommune": "GROSBOIS LES TICHEY" + "codePostal": "26140", + "codeCommune": "26325", + "libelleAcheminement": "ST RAMBERT D ALBON", + "nomCommune": "ST RAMBERT D ALBON" }, { - "codePostal": "59440", - "codeCommune": "59093", - "libelleAcheminement": "BOULOGNE SUR HELPE", - "nomCommune": "BOULOGNE SUR HELPE" + "codePostal": "26240", + "codeCommune": "26333", + "libelleAcheminement": "ST VALLIER", + "nomCommune": "ST VALLIER" }, { - "codePostal": "54122", - "codeCommune": "54199", - "libelleAcheminement": "FLIN", - "nomCommune": "FLIN" + "codePostal": "14240", + "codeCommune": "14143", + "libelleAcheminement": "CAUMONT SUR AURE", + "nomCommune": "CAUMONT SUR AURE" }, { - "codePostal": "18320", - "codeCommune": "18143", - "libelleAcheminement": "MENETOU COUTURE", - "nomCommune": "MENETOU COUTURE" + "codePostal": "15240", + "codeCommune": "15128", + "libelleAcheminement": "LA MONSELIE", + "nomCommune": "LA MONSELIE" }, { - "codePostal": "21290", - "codeCommune": "21313", - "libelleAcheminement": "GURGY LE CHATEAU", - "nomCommune": "GURGY LE CHATEAU" + "codePostal": "26130", + "codeCommune": "26326", + "libelleAcheminement": "ST RESTITUT", + "nomCommune": "ST RESTITUT" }, { - "codePostal": "59830", - "codeCommune": "59096", - "libelleAcheminement": "BOURGHELLES", - "nomCommune": "BOURGHELLES" + "codePostal": "26160", + "codeCommune": "26334", + "libelleAcheminement": "SALETTES", + "nomCommune": "SALETTES" }, { - "codePostal": "54570", - "codeCommune": "54205", - "libelleAcheminement": "FOUG", - "nomCommune": "FOUG" + "codePostal": "14270", + "codeCommune": "14149", + "libelleAcheminement": "CESNY AUX VIGNES", + "nomCommune": "CESNY AUX VIGNES" }, { - "codePostal": "18510", - "codeCommune": "18145", - "libelleAcheminement": "MENETOU SALON", - "nomCommune": "MENETOU SALON" + "codePostal": "15100", + "codeCommune": "15130", + "libelleAcheminement": "MONTCHAMP", + "nomCommune": "MONTCHAMP" }, { - "codePostal": "21270", - "codeCommune": "21316", - "libelleAcheminement": "HEUILLEY SUR SAONE", - "nomCommune": "HEUILLEY SUR SAONE" + "codePostal": "26190", + "codeCommune": "26331", + "libelleAcheminement": "ST THOMAS EN ROYANS", + "nomCommune": "ST THOMAS EN ROYANS" }, { - "codePostal": "59168", - "codeCommune": "59104", - "libelleAcheminement": "BOUSSOIS", - "nomCommune": "BOUSSOIS" + "codePostal": "26130", + "codeCommune": "26342", + "libelleAcheminement": "SOLERIEUX", + "nomCommune": "SOLERIEUX" }, { - "codePostal": "54300", - "codeCommune": "54206", - "libelleAcheminement": "FRAIMBOIS", - "nomCommune": "FRAIMBOIS" + "codePostal": "14220", + "codeCommune": "14150", + "libelleAcheminement": "CESNY LES SOURCES", + "nomCommune": "CESNY LES SOURCES" }, { - "codePostal": "18700", - "codeCommune": "18147", - "libelleAcheminement": "MENETREOL SUR SAULDRE", - "nomCommune": "MENETREOL SUR SAULDRE" + "codePostal": "15170", + "codeCommune": "15141", + "libelleAcheminement": "NEUSSARGUES EN PINATELLE", + "nomCommune": "NEUSSARGUES EN PINATELLE" }, { - "codePostal": "21120", - "codeCommune": "21317", - "libelleAcheminement": "IS SUR TILLE", - "nomCommune": "IS SUR TILLE" + "codePostal": "26270", + "codeCommune": "26337", + "libelleAcheminement": "SAULCE SUR RHONE", + "nomCommune": "SAULCE SUR RHONE" }, { - "codePostal": "59870", - "codeCommune": "59105", - "libelleAcheminement": "BOUVIGNIES", - "nomCommune": "BOUVIGNIES" + "codePostal": "26400", + "codeCommune": "26344", + "libelleAcheminement": "SOYANS", + "nomCommune": "SOYANS" }, { - "codePostal": "54200", - "codeCommune": "54208", - "libelleAcheminement": "FRANCHEVILLE", - "nomCommune": "FRANCHEVILLE" + "codePostal": "14680", + "codeCommune": "14160", + "libelleAcheminement": "CINTHEAUX", + "nomCommune": "CINTHEAUX" }, { - "codePostal": "18100", - "codeCommune": "18150", - "libelleAcheminement": "MERY SUR CHER", - "nomCommune": "MERY SUR CHER" + "codePostal": "15170", + "codeCommune": "15141", + "libelleAcheminement": "NEUSSARGUES EN PINATELLE", + "nomCommune": "NEUSSARGUES EN PINATELLE" }, { - "codePostal": "21140", - "codeCommune": "21329", - "libelleAcheminement": "JUILLY", - "nomCommune": "JUILLY" + "codePostal": "26740", + "codeCommune": "26339", + "libelleAcheminement": "SAVASSE", + "nomCommune": "SAVASSE" }, { - "codePostal": "59123", - "codeCommune": "59107", - "libelleAcheminement": "BRAY DUNES", - "nomCommune": "BRAY DUNES" + "codePostal": "26400", + "codeCommune": "26346", + "libelleAcheminement": "SUZE", + "nomCommune": "SUZE" }, { - "codePostal": "54160", - "codeCommune": "54214", - "libelleAcheminement": "FROLOIS", - "nomCommune": "FROLOIS" + "codePostal": "14570", + "codeCommune": "14162", + "libelleAcheminement": "CLECY", + "nomCommune": "CLECY" }, { - "codePostal": "18170", - "codeCommune": "18153", - "libelleAcheminement": "MORLAC", - "nomCommune": "MORLAC" + "codePostal": "15170", + "codeCommune": "15141", + "libelleAcheminement": "NEUSSARGUES EN PINATELLE", + "nomCommune": "NEUSSARGUES EN PINATELLE" }, { - "codePostal": "21440", - "codeCommune": "21338", - "libelleAcheminement": "LAMARGELLE", - "nomCommune": "LAMARGELLE" + "codePostal": "26790", + "codeCommune": "26345", + "libelleAcheminement": "SUZE LA ROUSSE", + "nomCommune": "SUZE LA ROUSSE" }, { - "codePostal": "59199", - "codeCommune": "59114", - "libelleAcheminement": "BRUILLE ST AMAND", - "nomCommune": "BRUILLE ST AMAND" + "codePostal": "26750", + "codeCommune": "26355", + "libelleAcheminement": "TRIORS", + "nomCommune": "TRIORS" }, { - "codePostal": "54380", - "codeCommune": "54225", - "libelleAcheminement": "GEZONCOURT", - "nomCommune": "GEZONCOURT" + "codePostal": "14880", + "codeCommune": "14166", + "libelleAcheminement": "COLLEVILLE MONTGOMERY", + "nomCommune": "COLLEVILLE MONTGOMERY" }, { - "codePostal": "18350", - "codeCommune": "18154", - "libelleAcheminement": "MORNAY BERRY", - "nomCommune": "MORNAY BERRY" + "codePostal": "15260", + "codeCommune": "15142", + "libelleAcheminement": "NEUVEGLISE SUR TRUYERE", + "nomCommune": "NEUVEGLISE SUR TRUYERE" }, { - "codePostal": "21250", - "codeCommune": "21340", - "libelleAcheminement": "LANTHES", - "nomCommune": "LANTHES" + "codePostal": "26460", + "codeCommune": "26356", + "libelleAcheminement": "TRUINAS", + "nomCommune": "TRUINAS" }, { - "codePostal": "59151", - "codeCommune": "59115", - "libelleAcheminement": "BRUNEMONT", - "nomCommune": "BRUNEMONT" + "codePostal": "26110", + "codeCommune": "26363", + "libelleAcheminement": "VALOUSE", + "nomCommune": "VALOUSE" }, { - "codePostal": "54112", - "codeCommune": "54226", - "libelleAcheminement": "GIBEAUMEIX", - "nomCommune": "GIBEAUMEIX" + "codePostal": "14460", + "codeCommune": "14167", + "libelleAcheminement": "COLOMBELLES", + "nomCommune": "COLOMBELLES" }, { - "codePostal": "18600", - "codeCommune": "18155", - "libelleAcheminement": "MORNAY SUR ALLIER", - "nomCommune": "MORNAY SUR ALLIER" + "codePostal": "15800", + "codeCommune": "15146", + "libelleAcheminement": "PAILHEROLS", + "nomCommune": "PAILHEROLS" }, { - "codePostal": "21290", - "codeCommune": "21346", - "libelleAcheminement": "LEUGLAY", - "nomCommune": "LEUGLAY" + "codePostal": "26790", + "codeCommune": "26357", + "libelleAcheminement": "TULETTE", + "nomCommune": "TULETTE" }, { - "codePostal": "59630", - "codeCommune": "59130", - "libelleAcheminement": "CAPPELLE BROUCK", - "nomCommune": "CAPPELLE BROUCK" + "codePostal": "26400", + "codeCommune": "26365", + "libelleAcheminement": "VAUNAVEYS LA ROCHETTE", + "nomCommune": "VAUNAVEYS LA ROCHETTE" }, { - "codePostal": "54115", - "codeCommune": "54237", - "libelleAcheminement": "GRIMONVILLER", - "nomCommune": "GRIMONVILLER" + "codePostal": "14710", + "codeCommune": "14168", + "libelleAcheminement": "COLOMBIERES", + "nomCommune": "COLOMBIERES" }, { - "codePostal": "18330", - "codeCommune": "18165", - "libelleAcheminement": "NEUVY SUR BARANGEON", - "nomCommune": "NEUVY SUR BARANGEON" + "codePostal": "15700", + "codeCommune": "15153", + "libelleAcheminement": "PLEAUX", + "nomCommune": "PLEAUX" }, { - "codePostal": "21200", - "codeCommune": "21347", - "libelleAcheminement": "LEVERNOIS", - "nomCommune": "LEVERNOIS" + "codePostal": "26310", + "codeCommune": "26361", + "libelleAcheminement": "VALDROME", + "nomCommune": "VALDROME" }, { - "codePostal": "59180", - "codeCommune": "59131", - "libelleAcheminement": "CAPPELLE LA GRANDE", - "nomCommune": "CAPPELLE LA GRANDE" + "codePostal": "26110", + "codeCommune": "26367", + "libelleAcheminement": "VENTEROL", + "nomCommune": "VENTEROL" }, { - "codePostal": "54470", - "codeCommune": "54240", - "libelleAcheminement": "GROSROUVRES", - "nomCommune": "GROSROUVRES" + "codePostal": "14220", + "codeCommune": "14171", + "libelleAcheminement": "COMBRAY", + "nomCommune": "COMBRAY" }, { - "codePostal": "18260", - "codeCommune": "18168", - "libelleAcheminement": "LE NOYER", - "nomCommune": "LE NOYER" + "codePostal": "15700", + "codeCommune": "15153", + "libelleAcheminement": "PLEAUX", + "nomCommune": "PLEAUX" }, { - "codePostal": "21430", - "codeCommune": "21349", - "libelleAcheminement": "LIERNAIS", - "nomCommune": "LIERNAIS" + "codePostal": "26400", + "codeCommune": "26365", + "libelleAcheminement": "VAUNAVEYS LA ROCHETTE", + "nomCommune": "VAUNAVEYS LA ROCHETTE" }, { - "codePostal": "59360", - "codeCommune": "59136", - "libelleAcheminement": "LE CATEAU CAMBRESIS", - "nomCommune": "LE CATEAU CAMBRESIS" + "codePostal": "26170", + "codeCommune": "26370", + "libelleAcheminement": "VERCOIRAN", + "nomCommune": "VERCOIRAN" }, { - "codePostal": "54800", - "codeCommune": "54249", - "libelleAcheminement": "HANNONVILLE SUZEMONT", - "nomCommune": "HANNONVILLE SUZEMONT" + "codePostal": "14110", + "codeCommune": "14174", + "libelleAcheminement": "CONDE EN NORMANDIE", + "nomCommune": "CONDE EN NORMANDIE" }, { - "codePostal": "18200", - "codeCommune": "18171", - "libelleAcheminement": "ORCENAIS", - "nomCommune": "ORCENAIS" + "codePostal": "15160", + "codeCommune": "15155", + "libelleAcheminement": "PRADIERS", + "nomCommune": "PRADIERS" }, { - "codePostal": "21110", - "codeCommune": "21353", - "libelleAcheminement": "LONGECOURT EN PLAINE", - "nomCommune": "LONGECOURT EN PLAINE" + "codePostal": "26560", + "codeCommune": "26372", + "libelleAcheminement": "VERS SUR MEOUGE", + "nomCommune": "VERS SUR MEOUGE" }, { - "codePostal": "59225", - "codeCommune": "59149", - "libelleAcheminement": "CLARY", - "nomCommune": "CLARY" + "codePostal": "26560", + "codeCommune": "26375", + "libelleAcheminement": "VILLEFRANCHE LE CHATEAU", + "nomCommune": "VILLEFRANCHE LE CHATEAU" }, { - "codePostal": "54110", - "codeCommune": "54250", - "libelleAcheminement": "HARAUCOURT", - "nomCommune": "HARAUCOURT" + "codePostal": "14110", + "codeCommune": "14174", + "libelleAcheminement": "CONDE EN NORMANDIE", + "nomCommune": "CONDE EN NORMANDIE" }, { - "codePostal": "18200", - "codeCommune": "18172", - "libelleAcheminement": "ORVAL", - "nomCommune": "ORVAL" + "codePostal": "15320", + "codeCommune": "15168", + "libelleAcheminement": "RUYNES EN MARGERIDE", + "nomCommune": "RUYNES EN MARGERIDE" }, { - "codePostal": "21520", - "codeCommune": "21357", - "libelleAcheminement": "LOUESME", - "nomCommune": "LOUESME" + "codePostal": "26220", + "codeCommune": "26373", + "libelleAcheminement": "VESC", + "nomCommune": "VESC" }, { - "codePostal": "59310", - "codeCommune": "59158", - "libelleAcheminement": "COUTICHES", - "nomCommune": "COUTICHES" + "codePostal": "26600", + "codeCommune": "26379", + "libelleAcheminement": "GRANGES LES BEAUMONT", + "nomCommune": "GRANGES LES BEAUMONT" }, { - "codePostal": "54740", - "codeCommune": "54252", - "libelleAcheminement": "HAROUE", - "nomCommune": "HAROUE" + "codePostal": "14100", + "codeCommune": "14179", + "libelleAcheminement": "CORDEBUGLE", + "nomCommune": "CORDEBUGLE" }, { - "codePostal": "18200", - "codeCommune": "18178", - "libelleAcheminement": "LA PERCHE", - "nomCommune": "LA PERCHE" + "codePostal": "15220", + "codeCommune": "15172", + "libelleAcheminement": "ST ANTOINE", + "nomCommune": "ST ANTOINE" }, { - "codePostal": "21360", - "codeCommune": "21360", - "libelleAcheminement": "LUSIGNY SUR OUCHE", - "nomCommune": "LUSIGNY SUR OUCHE" + "codePostal": "26110", + "codeCommune": "26377", + "libelleAcheminement": "VINSOBRES", + "nomCommune": "VINSOBRES" }, { - "codePostal": "59154", - "codeCommune": "59160", - "libelleAcheminement": "CRESPIN", - "nomCommune": "CRESPIN" + "codePostal": "27800", + "codeCommune": "27001", + "libelleAcheminement": "ACLOU", + "nomCommune": "ACLOU" }, { - "codePostal": "54290", - "codeCommune": "54256", - "libelleAcheminement": "HAUSSONVILLE", - "nomCommune": "HAUSSONVILLE" + "codePostal": "14700", + "codeCommune": "14180", + "libelleAcheminement": "CORDEY", + "nomCommune": "CORDEY" }, { - "codePostal": "18340", - "codeCommune": "18180", - "libelleAcheminement": "PLAIMPIED GIVAUDINS", - "nomCommune": "PLAIMPIED GIVAUDINS" + "codePostal": "15230", + "codeCommune": "15198", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "21170", - "codeCommune": "21366", - "libelleAcheminement": "MAGNY LES AUBIGNY", - "nomCommune": "MAGNY LES AUBIGNY" + "codePostal": "26600", + "codeCommune": "26380", + "libelleAcheminement": "GERVANS", + "nomCommune": "GERVANS" }, { - "codePostal": "59990", - "codeCommune": "59166", - "libelleAcheminement": "CURGIES", - "nomCommune": "CURGIES" + "codePostal": "27570", + "codeCommune": "27002", + "libelleAcheminement": "ACON", + "nomCommune": "ACON" }, { - "codePostal": "54300", - "codeCommune": "54260", - "libelleAcheminement": "HERIMENIL", - "nomCommune": "HERIMENIL" + "codePostal": "14440", + "codeCommune": "14197", + "libelleAcheminement": "CRESSERONS", + "nomCommune": "CRESSERONS" }, { - "codePostal": "18290", - "codeCommune": "18182", - "libelleAcheminement": "POISIEUX", - "nomCommune": "POISIEUX" + "codePostal": "15110", + "codeCommune": "15209", + "libelleAcheminement": "ST REMY DE CHAUDES AIGUES", + "nomCommune": "ST REMY DE CHAUDES AIGUES" }, { - "codePostal": "21130", - "codeCommune": "21367", - "libelleAcheminement": "MAGNY MONTARLOT", - "nomCommune": "MAGNY MONTARLOT" + "codePostal": "26300", + "codeCommune": "26382", + "libelleAcheminement": "ST VINCENT LA COMMANDERIE", + "nomCommune": "ST VINCENT LA COMMANDERIE" }, { - "codePostal": "59268", - "codeCommune": "59167", - "libelleAcheminement": "CUVILLERS", - "nomCommune": "CUVILLERS" + "codePostal": "27250", + "codeCommune": "27009", + "libelleAcheminement": "AMBENAY", + "nomCommune": "AMBENAY" }, { - "codePostal": "54370", - "codeCommune": "54262", - "libelleAcheminement": "HOEVILLE", - "nomCommune": "HOEVILLE" + "codePostal": "14400", + "codeCommune": "14214", + "libelleAcheminement": "CUSSY", + "nomCommune": "CUSSY" }, { - "codePostal": "18380", - "codeCommune": "18185", - "libelleAcheminement": "PRESLY", - "nomCommune": "PRESLY" + "codePostal": "15150", + "codeCommune": "15211", + "libelleAcheminement": "ST SANTIN CANTALES", + "nomCommune": "ST SANTIN CANTALES" }, { - "codePostal": "21430", - "codeCommune": "21375", - "libelleAcheminement": "MANLAY", - "nomCommune": "MANLAY" + "codePostal": "27460", + "codeCommune": "27008", + "libelleAcheminement": "ALIZAY", + "nomCommune": "ALIZAY" }, { - "codePostal": "59127", - "codeCommune": "59171", - "libelleAcheminement": "DEHERIES", - "nomCommune": "DEHERIES" + "codePostal": "27140", + "codeCommune": "27010", + "libelleAcheminement": "AMECOURT", + "nomCommune": "AMECOURT" }, { - "codePostal": "54310", - "codeCommune": "54263", - "libelleAcheminement": "HOMECOURT", - "nomCommune": "HOMECOURT" + "codePostal": "14430", + "codeCommune": "14227", + "libelleAcheminement": "DOUVILLE EN AUGE", + "nomCommune": "DOUVILLE EN AUGE" }, { - "codePostal": "18120", - "codeCommune": "18186", - "libelleAcheminement": "PREUILLY", - "nomCommune": "PREUILLY" + "codePostal": "15150", + "codeCommune": "15217", + "libelleAcheminement": "ST VICTOR", + "nomCommune": "ST VICTOR" }, { - "codePostal": "21270", - "codeCommune": "21376", - "libelleAcheminement": "MARANDEUIL", - "nomCommune": "MARANDEUIL" + "codePostal": "27370", + "codeCommune": "27011", + "libelleAcheminement": "AMFREVILLE ST AMAND", + "nomCommune": "AMFREVILLE ST AMAND" }, { - "codePostal": "59740", - "codeCommune": "59174", - "libelleAcheminement": "DIMECHAUX", - "nomCommune": "DIMECHAUX" + "codePostal": "27370", + "codeCommune": "27011", + "libelleAcheminement": "AMFREVILLE ST AMAND", + "nomCommune": "AMFREVILLE ST AMAND" }, { - "codePostal": "54110", - "codeCommune": "54269", - "libelleAcheminement": "HUDIVILLER", - "nomCommune": "HUDIVILLER" + "codePostal": "14130", + "codeCommune": "14230", + "libelleAcheminement": "DRUBEC", + "nomCommune": "DRUBEC" }, { - "codePostal": "18370", - "codeCommune": "18187", - "libelleAcheminement": "PREVERANGES", - "nomCommune": "PREVERANGES" + "codePostal": "15140", + "codeCommune": "15219", + "libelleAcheminement": "SALERS", + "nomCommune": "SALERS" }, { - "codePostal": "21120", - "codeCommune": "21383", - "libelleAcheminement": "MARCILLY SUR TILLE", - "nomCommune": "MARCILLY SUR TILLE" + "codePostal": "27820", + "codeCommune": "27019", + "libelleAcheminement": "ARMENTIERES SUR AVRE", + "nomCommune": "ARMENTIERES SUR AVRE" }, { - "codePostal": "59216", - "codeCommune": "59175", - "libelleAcheminement": "DIMONT", - "nomCommune": "DIMONT" + "codePostal": "27600", + "codeCommune": "27022", + "libelleAcheminement": "LE VAL D HAZEY", + "nomCommune": "LE VAL D HAZEY" }, { - "codePostal": "54450", - "codeCommune": "54271", - "libelleAcheminement": "IGNEY", - "nomCommune": "IGNEY" + "codePostal": "14600", + "codeCommune": "14243", + "libelleAcheminement": "EQUEMAUVILLE", + "nomCommune": "EQUEMAUVILLE" }, { - "codePostal": "18400", - "codeCommune": "18188", - "libelleAcheminement": "PRIMELLES", - "nomCommune": "PRIMELLES" + "codePostal": "15290", + "codeCommune": "15224", + "libelleAcheminement": "LA SEGALASSIERE", + "nomCommune": "LA SEGALASSIERE" }, { - "codePostal": "21500", - "codeCommune": "21389", - "libelleAcheminement": "MARMAGNE", - "nomCommune": "MARMAGNE" + "codePostal": "27180", + "codeCommune": "27020", + "libelleAcheminement": "ARNIERES SUR ITON", + "nomCommune": "ARNIERES SUR ITON" }, { - "codePostal": "59400", - "codeCommune": "59176", - "libelleAcheminement": "DOIGNIES", - "nomCommune": "DOIGNIES" + "codePostal": "27180", + "codeCommune": "27023", + "libelleAcheminement": "AULNAY SUR ITON", + "nomCommune": "AULNAY SUR ITON" }, { - "codePostal": "54800", - "codeCommune": "54273", - "libelleAcheminement": "JARNY", - "nomCommune": "JARNY" + "codePostal": "14400", + "codeCommune": "14250", + "libelleAcheminement": "ESQUAY SUR SEULLES", + "nomCommune": "ESQUAY SUR SEULLES" }, { - "codePostal": "18290", - "codeCommune": "18198", - "libelleAcheminement": "ST AMBROIX", - "nomCommune": "ST AMBROIX" + "codePostal": "15310", + "codeCommune": "15238", + "libelleAcheminement": "TOURNEMIRE", + "nomCommune": "TOURNEMIRE" }, { - "codePostal": "21380", - "codeCommune": "21391", - "libelleAcheminement": "MARSANNAY LE BOIS", - "nomCommune": "MARSANNAY LE BOIS" + "codePostal": "27490", + "codeCommune": "27025", + "libelleAcheminement": "AUTHEUIL AUTHOUILLET", + "nomCommune": "AUTHEUIL AUTHOUILLET" }, { - "codePostal": "59440", - "codeCommune": "59177", - "libelleAcheminement": "DOMPIERRE SUR HELPE", - "nomCommune": "DOMPIERRE SUR HELPE" + "codePostal": "27240", + "codeCommune": "27032", + "libelleAcheminement": "CHAMBOIS", + "nomCommune": "CHAMBOIS" }, { - "codePostal": "54470", - "codeCommune": "54275", - "libelleAcheminement": "JAULNY", - "nomCommune": "JAULNY" + "codePostal": "14790", + "codeCommune": "14274", + "libelleAcheminement": "FONTAINE ETOUPEFOUR", + "nomCommune": "FONTAINE ETOUPEFOUR" }, { - "codePostal": "18130", - "codeCommune": "18204", - "libelleAcheminement": "ST DENIS DE PALIN", - "nomCommune": "ST DENIS DE PALIN" + "codePostal": "15110", + "codeCommune": "15241", + "libelleAcheminement": "LA TRINITAT", + "nomCommune": "LA TRINITAT" }, { - "codePostal": "21270", - "codeCommune": "21398", - "libelleAcheminement": "MAXILLY SUR SAONE", - "nomCommune": "MAXILLY SUR SAONE" + "codePostal": "27490", + "codeCommune": "27025", + "libelleAcheminement": "AUTHEUIL AUTHOUILLET", + "nomCommune": "AUTHEUIL AUTHOUILLET" }, { - "codePostal": "59500", - "codeCommune": "59178", - "libelleAcheminement": "DOUAI", - "nomCommune": "DOUAI" + "codePostal": "27130", + "codeCommune": "27036", + "libelleAcheminement": "BALINES", + "nomCommune": "BALINES" }, { - "codePostal": "54490", - "codeCommune": "54284", - "libelleAcheminement": "JOUDREVILLE", - "nomCommune": "JOUDREVILLE" + "codePostal": "14190", + "codeCommune": "14276", + "libelleAcheminement": "FONTAINE LE PIN", + "nomCommune": "FONTAINE LE PIN" }, { - "codePostal": "18110", - "codeCommune": "18206", - "libelleAcheminement": "ST ELOY DE GY", - "nomCommune": "ST ELOY DE GY" + "codePostal": "15590", + "codeCommune": "15252", + "libelleAcheminement": "VELZIC", + "nomCommune": "VELZIC" }, { - "codePostal": "21220", - "codeCommune": "21407", - "libelleAcheminement": "MESSANGES", - "nomCommune": "MESSANGES" + "codePostal": "27930", + "codeCommune": "27031", + "libelleAcheminement": "AVIRON", + "nomCommune": "AVIRON" }, { - "codePostal": "59500", - "codeCommune": "59178", - "libelleAcheminement": "DOUAI", - "nomCommune": "DOUAI" + "codePostal": "27230", + "codeCommune": "27042", + "libelleAcheminement": "BARVILLE", + "nomCommune": "BARVILLE" }, { - "codePostal": "54370", - "codeCommune": "54285", - "libelleAcheminement": "JUVRECOURT", - "nomCommune": "JUVRECOURT" + "codePostal": "14320", + "codeCommune": "14277", + "libelleAcheminement": "FONTENAY LE MARMION", + "nomCommune": "FONTENAY LE MARMION" }, { - "codePostal": "18350", - "codeCommune": "18215", - "libelleAcheminement": "ST HILAIRE DE GONDILLY", - "nomCommune": "ST HILAIRE DE GONDILLY" + "codePostal": "15350", + "codeCommune": "15254", + "libelleAcheminement": "VEYRIERES", + "nomCommune": "VEYRIERES" }, { - "codePostal": "21380", - "codeCommune": "21408", - "libelleAcheminement": "MESSIGNY ET VANTOUX", - "nomCommune": "MESSIGNY ET VANTOUX" + "codePostal": "27240", + "codeCommune": "27032", + "libelleAcheminement": "CHAMBOIS", + "nomCommune": "CHAMBOIS" }, { - "codePostal": "59140", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "27230", + "codeCommune": "27046", + "libelleAcheminement": "BAZOQUES", + "nomCommune": "BAZOQUES" }, { - "codePostal": "54800", - "codeCommune": "54286", - "libelleAcheminement": "LABRY", - "nomCommune": "LABRY" + "codePostal": "14710", + "codeCommune": "14281", + "libelleAcheminement": "FORMIGNY LA BATAILLE", + "nomCommune": "FORMIGNY LA BATAILLE" }, { - "codePostal": "18370", - "codeCommune": "18217", - "libelleAcheminement": "ST JEANVRIN", - "nomCommune": "ST JEANVRIN" + "codePostal": "15500", + "codeCommune": "15259", + "libelleAcheminement": "VIEILLESPESSE", + "nomCommune": "VIEILLESPESSE" }, { - "codePostal": "21210", - "codeCommune": "21422", - "libelleAcheminement": "MOLPHEY", - "nomCommune": "MOLPHEY" + "codePostal": "27930", + "codeCommune": "27033", + "libelleAcheminement": "BACQUEPUIS", + "nomCommune": "BACQUEPUIS" }, { - "codePostal": "59240", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "27330", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "54380", - "codeCommune": "54294", - "libelleAcheminement": "LANDREMONT", - "nomCommune": "LANDREMONT" + "codePostal": "14710", + "codeCommune": "14281", + "libelleAcheminement": "FORMIGNY LA BATAILLE", + "nomCommune": "FORMIGNY LA BATAILLE" }, { - "codePostal": "18270", - "codeCommune": "18225", - "libelleAcheminement": "ST MAUR", - "nomCommune": "ST MAUR" + "codePostal": "15200", + "codeCommune": "15261", + "libelleAcheminement": "LE VIGEAN", + "nomCommune": "LE VIGEAN" }, { - "codePostal": "21360", - "codeCommune": "21427", - "libelleAcheminement": "MONTCEAU ET ECHARNANT", - "nomCommune": "MONTCEAU ET ECHARNANT" + "codePostal": "27130", + "codeCommune": "27038", + "libelleAcheminement": "LES BARILS", + "nomCommune": "LES BARILS" }, { - "codePostal": "59173", - "codeCommune": "59184", - "libelleAcheminement": "EBBLINGHEM", - "nomCommune": "EBBLINGHEM" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "54280", - "codeCommune": "54296", - "libelleAcheminement": "LANEUVELOTTE", - "nomCommune": "LANEUVELOTTE" + "codePostal": "14700", + "codeCommune": "14289", + "libelleAcheminement": "FRESNE LA MERE", + "nomCommune": "FRESNE LA MERE" }, { - "codePostal": "18190", - "codeCommune": "18236", - "libelleAcheminement": "ST SYMPHORIEN", - "nomCommune": "ST SYMPHORIEN" + "codePostal": "15130", + "codeCommune": "15266", + "libelleAcheminement": "YOLET", + "nomCommune": "YOLET" }, { - "codePostal": "21610", - "codeCommune": "21433", - "libelleAcheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", - "nomCommune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE" + "codePostal": "27180", + "codeCommune": "27044", + "libelleAcheminement": "LES BAUX STE CROIX", + "nomCommune": "LES BAUX STE CROIX" }, { - "codePostal": "59176", - "codeCommune": "59185", - "libelleAcheminement": "ECAILLON", - "nomCommune": "ECAILLON" + "codePostal": "27180", + "codeCommune": "27057", + "libelleAcheminement": "BERNIENVILLE", + "nomCommune": "BERNIENVILLE" }, { - "codePostal": "54410", - "codeCommune": "54300", - "libelleAcheminement": "LANEUVEVILLE DEVANT NANCY", - "nomCommune": "LANEUVEVILLE DEVANT NANCY" + "codePostal": "14230", + "codeCommune": "14298", + "libelleAcheminement": "GEFOSSE FONTENAY", + "nomCommune": "GEFOSSE FONTENAY" }, { - "codePostal": "18300", - "codeCommune": "18241", - "libelleAcheminement": "SANCERRE", - "nomCommune": "SANCERRE" + "codePostal": "15000", + "codeCommune": "15267", + "libelleAcheminement": "YTRAC", + "nomCommune": "YTRAC" }, { - "codePostal": "21170", - "codeCommune": "21440", - "libelleAcheminement": "MONTOT", - "nomCommune": "MONTOT" + "codePostal": "27330", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "59740", - "codeCommune": "59186", - "libelleAcheminement": "ECCLES", - "nomCommune": "ECCLES" + "codePostal": "27700", + "codeCommune": "27058", + "libelleAcheminement": "LES TROIS LACS", + "nomCommune": "LES TROIS LACS" }, { - "codePostal": "54410", - "codeCommune": "54300", - "libelleAcheminement": "LANEUVEVILLE DEVANT NANCY", - "nomCommune": "LANEUVEVILLE DEVANT NANCY" + "codePostal": "14510", + "codeCommune": "14305", + "libelleAcheminement": "GONNEVILLE SUR MER", + "nomCommune": "GONNEVILLE SUR MER" }, { - "codePostal": "18600", - "codeCommune": "18242", - "libelleAcheminement": "SANCOINS", - "nomCommune": "SANCOINS" + "codePostal": "15130", + "codeCommune": "15267", + "libelleAcheminement": "YTRAC", + "nomCommune": "YTRAC" }, { - "codePostal": "21320", - "codeCommune": "21441", - "libelleAcheminement": "MONT ST JEAN", - "nomCommune": "MONT ST JEAN" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "59620", - "codeCommune": "59188", - "libelleAcheminement": "ECUELIN", - "nomCommune": "ECUELIN" + "codePostal": "27700", + "codeCommune": "27058", + "libelleAcheminement": "LES TROIS LACS", + "nomCommune": "LES TROIS LACS" }, { - "codePostal": "54950", - "codeCommune": "54303", - "libelleAcheminement": "LARONXE", - "nomCommune": "LARONXE" + "codePostal": "14200", + "codeCommune": "14327", + "libelleAcheminement": "HEROUVILLE ST CLAIR", + "nomCommune": "HEROUVILLE ST CLAIR" }, { - "codePostal": "18270", - "codeCommune": "18252", - "libelleAcheminement": "SIDIAILLES", - "nomCommune": "SIDIAILLES" + "codePostal": "15290", + "codeCommune": "15268", + "libelleAcheminement": "LE ROUGET PERS", + "nomCommune": "LE ROUGET PERS" }, { - "codePostal": "21210", - "codeCommune": "21445", - "libelleAcheminement": "LA MOTTE TERNANT", - "nomCommune": "LA MOTTE TERNANT" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "59600", - "codeCommune": "59190", - "libelleAcheminement": "ELESMES", - "nomCommune": "ELESMES" + "codePostal": "27800", + "codeCommune": "27061", + "libelleAcheminement": "BERTHOUVILLE", + "nomCommune": "BERTHOUVILLE" }, { - "codePostal": "54470", - "codeCommune": "54317", - "libelleAcheminement": "LIRONVILLE", - "nomCommune": "LIRONVILLE" + "codePostal": "14600", + "codeCommune": "14333", + "libelleAcheminement": "HONFLEUR", + "nomCommune": "HONFLEUR" }, { - "codePostal": "18300", - "codeCommune": "18258", - "libelleAcheminement": "SURY EN VAUX", - "nomCommune": "SURY EN VAUX" + "codePostal": "16140", + "codeCommune": "16005", + "libelleAcheminement": "AIGRE", + "nomCommune": "AIGRE" }, { - "codePostal": "21190", - "codeCommune": "21450", - "libelleAcheminement": "NANTOUX", - "nomCommune": "NANTOUX" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "59127", - "codeCommune": "59191", - "libelleAcheminement": "ELINCOURT", - "nomCommune": "ELINCOURT" + "codePostal": "27210", + "codeCommune": "27065", + "libelleAcheminement": "BEUZEVILLE", + "nomCommune": "BEUZEVILLE" }, { - "codePostal": "54700", - "codeCommune": "54320", - "libelleAcheminement": "LOISY", - "nomCommune": "LOISY" + "codePostal": "14430", + "codeCommune": "14335", + "libelleAcheminement": "HOTOT EN AUGE", + "nomCommune": "HOTOT EN AUGE" }, { - "codePostal": "18300", - "codeCommune": "18262", - "libelleAcheminement": "THAUVENAY", - "nomCommune": "THAUVENAY" + "codePostal": "16500", + "codeCommune": "16016", + "libelleAcheminement": "ANSAC SUR VIENNE", + "nomCommune": "ANSAC SUR VIENNE" }, { - "codePostal": "21400", - "codeCommune": "21465", - "libelleAcheminement": "OBTREE", - "nomCommune": "OBTREE" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "59710", - "codeCommune": "59197", - "libelleAcheminement": "ENNEVELIN", - "nomCommune": "ENNEVELIN" + "codePostal": "27700", + "codeCommune": "27070", + "libelleAcheminement": "FRENELLES EN VEXIN", + "nomCommune": "FRENELLES EN VEXIN" }, { - "codePostal": "54260", - "codeCommune": "54322", - "libelleAcheminement": "LONGUYON", - "nomCommune": "LONGUYON" + "codePostal": "14250", + "codeCommune": "14336", + "libelleAcheminement": "HOTTOT LES BAGUES", + "nomCommune": "HOTTOT LES BAGUES" }, { - "codePostal": "18100", - "codeCommune": "18263", - "libelleAcheminement": "THENIOUX", - "nomCommune": "THENIOUX" + "codePostal": "16130", + "codeCommune": "16018", + "libelleAcheminement": "ARS", + "nomCommune": "ARS" }, { - "codePostal": "21250", - "codeCommune": "21474", - "libelleAcheminement": "PAGNY LA VILLE", - "nomCommune": "PAGNY LA VILLE" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "59124", - "codeCommune": "59205", - "libelleAcheminement": "ESCAUDAIN", - "nomCommune": "ESCAUDAIN" + "codePostal": "27300", + "codeCommune": "27079", + "libelleAcheminement": "BOISSY LAMBERVILLE", + "nomCommune": "BOISSY LAMBERVILLE" }, { - "codePostal": "54290", - "codeCommune": "54325", - "libelleAcheminement": "LOROMONTZEY", - "nomCommune": "LOROMONTZEY" + "codePostal": "14510", + "codeCommune": "14338", + "libelleAcheminement": "HOULGATE", + "nomCommune": "HOULGATE" }, { - "codePostal": "18320", - "codeCommune": "18265", - "libelleAcheminement": "TORTERON", - "nomCommune": "TORTERON" + "codePostal": "16460", + "codeCommune": "16023", + "libelleAcheminement": "AUNAC SUR CHARENTE", + "nomCommune": "AUNAC SUR CHARENTE" }, { - "codePostal": "21160", - "codeCommune": "21481", - "libelleAcheminement": "PERRIGNY LES DIJON", - "nomCommune": "PERRIGNY LES DIJON" + "codePostal": "27410", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "59940", - "codeCommune": "59212", - "libelleAcheminement": "ESTAIRES", - "nomCommune": "ESTAIRES" + "codePostal": "27310", + "codeCommune": "27085", + "libelleAcheminement": "FLANCOURT CRESCY EN ROUMOIS", + "nomCommune": "FLANCOURT CRESCY EN ROUMOIS" }, { - "codePostal": "54200", - "codeCommune": "54327", - "libelleAcheminement": "LUCEY", - "nomCommune": "LUCEY" + "codePostal": "14170", + "codeCommune": "14345", + "libelleAcheminement": "JORT", + "nomCommune": "JORT" }, { - "codePostal": "18160", - "codeCommune": "18266", - "libelleAcheminement": "TOUCHAY", - "nomCommune": "TOUCHAY" + "codePostal": "16300", + "codeCommune": "16028", + "libelleAcheminement": "BARBEZIEUX ST HILAIRE", + "nomCommune": "BARBEZIEUX ST HILAIRE" }, { - "codePostal": "21440", - "codeCommune": "21494", - "libelleAcheminement": "PONCEY SUR L IGNON", - "nomCommune": "PONCEY SUR L IGNON" + "codePostal": "27660", + "codeCommune": "27059", + "libelleAcheminement": "BERNOUVILLE", + "nomCommune": "BERNOUVILLE" }, { - "codePostal": "59400", - "codeCommune": "59213", - "libelleAcheminement": "ESTOURMEL", - "nomCommune": "ESTOURMEL" + "codePostal": "27520", + "codeCommune": "27089", + "libelleAcheminement": "THENOUVILLE", + "nomCommune": "THENOUVILLE" }, { - "codePostal": "54700", - "codeCommune": "54332", - "libelleAcheminement": "MAIDIERES", - "nomCommune": "MAIDIERES" + "codePostal": "14260", + "codeCommune": "14347", + "libelleAcheminement": "DIALAN SUR CHAINE", + "nomCommune": "DIALAN SUR CHAINE" }, { - "codePostal": "18570", - "codeCommune": "18267", - "libelleAcheminement": "TROUY", - "nomCommune": "TROUY" + "codePostal": "16210", + "codeCommune": "16029", + "libelleAcheminement": "BARDENAC", + "nomCommune": "BARDENAC" }, { - "codePostal": "21130", - "codeCommune": "21495", - "libelleAcheminement": "PONT", - "nomCommune": "PONT" + "codePostal": "27520", + "codeCommune": "27062", + "libelleAcheminement": "LES MONTS DU ROUMOIS", + "nomCommune": "LES MONTS DU ROUMOIS" }, { - "codePostal": "59990", - "codeCommune": "59215", - "libelleAcheminement": "ESTREUX", - "nomCommune": "ESTREUX" + "codePostal": "27310", + "codeCommune": "27103", + "libelleAcheminement": "BOURG ACHARD", + "nomCommune": "BOURG ACHARD" }, { - "codePostal": "54150", - "codeCommune": "54334", - "libelleAcheminement": "MAIRY MAINVILLE", - "nomCommune": "MAIRY MAINVILLE" + "codePostal": "14320", + "codeCommune": "14349", + "libelleAcheminement": "LAIZE CLINCHAMPS", + "nomCommune": "LAIZE CLINCHAMPS" }, { - "codePostal": "18600", - "codeCommune": "18275", - "libelleAcheminement": "VEREAUX", - "nomCommune": "VEREAUX" + "codePostal": "16700", + "codeCommune": "16044", + "libelleAcheminement": "BIOUSSAC", + "nomCommune": "BIOUSSAC" }, { - "codePostal": "21350", - "codeCommune": "21498", - "libelleAcheminement": "POSANGES", - "nomCommune": "POSANGES" + "codePostal": "27150", + "codeCommune": "27070", + "libelleAcheminement": "FRENELLES EN VEXIN", + "nomCommune": "FRENELLES EN VEXIN" }, { - "codePostal": "59310", - "codeCommune": "59222", - "libelleAcheminement": "FAUMONT", - "nomCommune": "FAUMONT" + "codePostal": "27520", + "codeCommune": "27105", + "libelleAcheminement": "GRAND BOURGTHEROULDE", + "nomCommune": "GRAND BOURGTHEROULDE" }, { - "codePostal": "54560", - "codeCommune": "54337", - "libelleAcheminement": "MALAVILLERS", - "nomCommune": "MALAVILLERS" + "codePostal": "14380", + "codeCommune": "14352", + "libelleAcheminement": "LANDELLES ET COUPIGNY", + "nomCommune": "LANDELLES ET COUPIGNY" }, { - "codePostal": "18110", - "codeCommune": "18280", - "libelleAcheminement": "VIGNOUX SOUS LES AIX", - "nomCommune": "VIGNOUX SOUS LES AIX" + "codePostal": "16250", + "codeCommune": "16046", + "libelleAcheminement": "COTEAUX DU BLANZACAIS", + "nomCommune": "COTEAUX DU BLANZACAIS" }, { - "codePostal": "21410", - "codeCommune": "21504", - "libelleAcheminement": "PRALON", - "nomCommune": "PRALON" + "codePostal": "27120", + "codeCommune": "27076", + "libelleAcheminement": "BOISSET LES PREVANCHES", + "nomCommune": "BOISSET LES PREVANCHES" }, { - "codePostal": "59750", - "codeCommune": "59225", - "libelleAcheminement": "FEIGNIES", - "nomCommune": "FEIGNIES" + "codePostal": "27520", + "codeCommune": "27105", + "libelleAcheminement": "GRAND BOURGTHEROULDE", + "nomCommune": "GRAND BOURGTHEROULDE" }, { - "codePostal": "54385", - "codeCommune": "54346", - "libelleAcheminement": "MANONCOURT EN WOEVRE", - "nomCommune": "MANONCOURT EN WOEVRE" + "codePostal": "14140", + "codeCommune": "14362", + "libelleAcheminement": "LESSARD ET LE CHENE", + "nomCommune": "LESSARD ET LE CHENE" }, { - "codePostal": "18800", - "codeCommune": "18286", - "libelleAcheminement": "VILLEQUIERS", - "nomCommune": "VILLEQUIERS" + "codePostal": "16120", + "codeCommune": "16050", + "libelleAcheminement": "BONNEUIL", + "nomCommune": "BONNEUIL" }, { - "codePostal": "21700", - "codeCommune": "21517", - "libelleAcheminement": "QUINCEY", - "nomCommune": "QUINCEY" + "codePostal": "27520", + "codeCommune": "27077", + "libelleAcheminement": "BOISSEY LE CHATEL", + "nomCommune": "BOISSEY LE CHATEL" }, { - "codePostal": "59610", - "codeCommune": "59229", - "libelleAcheminement": "FERON", - "nomCommune": "FERON" + "codePostal": "27520", + "codeCommune": "27105", + "libelleAcheminement": "GRAND BOURGTHEROULDE", + "nomCommune": "GRAND BOURGTHEROULDE" }, { - "codePostal": "54800", - "codeCommune": "54353", - "libelleAcheminement": "MARS LA TOUR", - "nomCommune": "MARS LA TOUR" + "codePostal": "14250", + "codeCommune": "14364", + "libelleAcheminement": "LINGEVRES", + "nomCommune": "LINGEVRES" }, { - "codePostal": "19260", - "codeCommune": "19001", - "libelleAcheminement": "AFFIEUX", - "nomCommune": "AFFIEUX" + "codePostal": "16240", + "codeCommune": "16059", + "libelleAcheminement": "BRETTES", + "nomCommune": "BRETTES" }, { - "codePostal": "21220", - "codeCommune": "21523", - "libelleAcheminement": "REULLE VERGY", - "nomCommune": "REULLE VERGY" + "codePostal": "27310", + "codeCommune": "27091", + "libelleAcheminement": "BOSGOUET", + "nomCommune": "BOSGOUET" }, { - "codePostal": "59148", - "codeCommune": "59239", - "libelleAcheminement": "FLINES LEZ RACHES", - "nomCommune": "FLINES LEZ RACHES" + "codePostal": "27160", + "codeCommune": "27112", + "libelleAcheminement": "BRETEUIL", + "nomCommune": "BRETEUIL" }, { - "codePostal": "54200", - "codeCommune": "54360", - "libelleAcheminement": "MENIL LA TOUR", - "nomCommune": "MENIL LA TOUR" + "codePostal": "14490", + "codeCommune": "14369", + "libelleAcheminement": "LITTEAU", + "nomCommune": "LITTEAU" }, { - "codePostal": "19250", - "codeCommune": "19008", - "libelleAcheminement": "AMBRUGEAT", - "nomCommune": "AMBRUGEAT" + "codePostal": "16110", + "codeCommune": "16067", + "libelleAcheminement": "BUNZAC", + "nomCommune": "BUNZAC" }, { - "codePostal": "21530", - "codeCommune": "21531", - "libelleAcheminement": "ROUVRAY", - "nomCommune": "ROUVRAY" + "codePostal": "27700", + "codeCommune": "27097", + "libelleAcheminement": "BOUAFLES", + "nomCommune": "BOUAFLES" }, { - "codePostal": "59219", - "codeCommune": "59241", - "libelleAcheminement": "FLOYON", - "nomCommune": "FLOYON" + "codePostal": "27800", + "codeCommune": "27116", + "libelleAcheminement": "BRIONNE", + "nomCommune": "BRIONNE" }, { - "codePostal": "54850", - "codeCommune": "54366", - "libelleAcheminement": "MESSEIN", - "nomCommune": "MESSEIN" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "19000", - "codeCommune": "19009", - "libelleAcheminement": "LES ANGLES SUR CORREZE", - "nomCommune": "LES ANGLES SUR CORREZE" + "codePostal": "16260", + "codeCommune": "16068", + "libelleAcheminement": "CELLEFROUIN", + "nomCommune": "CELLEFROUIN" }, { - "codePostal": "21110", - "codeCommune": "21532", - "libelleAcheminement": "ROUVRES EN PLAINE", - "nomCommune": "ROUVRES EN PLAINE" + "codePostal": "27150", + "codeCommune": "27098", + "libelleAcheminement": "BOUCHEVILLIERS", + "nomCommune": "BOUCHEVILLIERS" }, { - "codePostal": "59157", - "codeCommune": "59243", - "libelleAcheminement": "FONTAINE AU PIRE", - "nomCommune": "FONTAINE AU PIRE" + "codePostal": "27120", + "codeCommune": "27123", + "libelleAcheminement": "CAILLOUET ORGEVILLE", + "nomCommune": "CAILLOUET ORGEVILLE" }, { - "codePostal": "54385", - "codeCommune": "54370", - "libelleAcheminement": "MINORVILLE", - "nomCommune": "MINORVILLE" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "19230", - "codeCommune": "19011", - "libelleAcheminement": "ARNAC POMPADOUR", - "nomCommune": "ARNAC POMPADOUR" + "codePostal": "16150", + "codeCommune": "16070", + "libelleAcheminement": "CHABANAIS", + "nomCommune": "CHABANAIS" }, { - "codePostal": "21320", - "codeCommune": "21533", - "libelleAcheminement": "ROUVRES SOUS MEILLY", - "nomCommune": "ROUVRES SOUS MEILLY" + "codePostal": "27380", + "codeCommune": "27104", + "libelleAcheminement": "BOURG BEAUDOUIN", + "nomCommune": "BOURG BEAUDOUIN" }, { - "codePostal": "59134", - "codeCommune": "59250", - "libelleAcheminement": "FOURNES EN WEPPES", - "nomCommune": "FOURNES EN WEPPES" + "codePostal": "27400", + "codeCommune": "27127", + "libelleAcheminement": "CANAPPEVILLE", + "nomCommune": "CANAPPEVILLE" }, { - "codePostal": "54170", - "codeCommune": "54379", - "libelleAcheminement": "MONT L ETROIT", - "nomCommune": "MONT L ETROIT" + "codePostal": "14290", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "19220", - "codeCommune": "19018", - "libelleAcheminement": "BASSIGNAC LE HAUT", - "nomCommune": "BASSIGNAC LE HAUT" + "codePostal": "16250", + "codeCommune": "16072", + "libelleAcheminement": "CHADURIE", + "nomCommune": "CHADURIE" }, { - "codePostal": "21200", - "codeCommune": "21534", - "libelleAcheminement": "RUFFEY LES BEAUNE", - "nomCommune": "RUFFEY LES BEAUNE" + "codePostal": "27350", + "codeCommune": "27110", + "libelleAcheminement": "BRESTOT", + "nomCommune": "BRESTOT" }, { - "codePostal": "59231", - "codeCommune": "59267", - "libelleAcheminement": "GONNELIEU", - "nomCommune": "GONNELIEU" + "codePostal": "27120", + "codeCommune": "27140", + "libelleAcheminement": "CHAMBRAY", + "nomCommune": "CHAMBRAY" }, { - "codePostal": "54113", - "codeCommune": "54380", - "libelleAcheminement": "MONT LE VIGNOBLE", - "nomCommune": "MONT LE VIGNOBLE" + "codePostal": "14290", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "19390", - "codeCommune": "19020", - "libelleAcheminement": "BEAUMONT", - "nomCommune": "BEAUMONT" + "codePostal": "16300", + "codeCommune": "16074", + "libelleAcheminement": "CHALLIGNAC", + "nomCommune": "CHALLIGNAC" }, { - "codePostal": "21140", - "codeCommune": "21547", - "libelleAcheminement": "ST EUPHRONE", - "nomCommune": "ST EUPHRONE" + "codePostal": "27800", + "codeCommune": "27125", + "libelleAcheminement": "CALLEVILLE", + "nomCommune": "CALLEVILLE" }, { - "codePostal": "59820", - "codeCommune": "59273", - "libelleAcheminement": "GRAVELINES", - "nomCommune": "GRAVELINES" + "codePostal": "27380", + "codeCommune": "27151", + "libelleAcheminement": "CHARLEVAL", + "nomCommune": "CHARLEVAL" }, { - "codePostal": "54920", - "codeCommune": "54385", - "libelleAcheminement": "MORFONTAINE", - "nomCommune": "MORFONTAINE" + "codePostal": "14400", + "codeCommune": "14385", + "libelleAcheminement": "MAGNY EN BESSIN", + "nomCommune": "MAGNY EN BESSIN" }, { - "codePostal": "19230", - "codeCommune": "19025", - "libelleAcheminement": "BEYSSENAC", - "nomCommune": "BEYSSENAC" + "codePostal": "16320", + "codeCommune": "16082", + "libelleAcheminement": "BOISNE LA TUDE", + "nomCommune": "BOISNE LA TUDE" }, { - "codePostal": "21510", - "codeCommune": "21549", - "libelleAcheminement": "ST GERMAIN LE ROCHEUX", - "nomCommune": "ST GERMAIN LE ROCHEUX" + "codePostal": "27300", + "codeCommune": "27129", + "libelleAcheminement": "CAORCHES ST NICOLAS", + "nomCommune": "CAORCHES ST NICOLAS" }, { - "codePostal": "59360", - "codeCommune": "59274", - "libelleAcheminement": "LA GROISE", - "nomCommune": "LA GROISE" + "codePostal": "27420", + "codeCommune": "27152", + "libelleAcheminement": "CHATEAU SUR EPTE", + "nomCommune": "CHATEAU SUR EPTE" }, { - "codePostal": "54113", - "codeCommune": "54392", - "libelleAcheminement": "MOUTROT", - "nomCommune": "MOUTROT" + "codePostal": "14400", + "codeCommune": "14400", + "libelleAcheminement": "LE MANOIR", + "nomCommune": "LE MANOIR" }, { - "codePostal": "19120", - "codeCommune": "19026", - "libelleAcheminement": "BILHAC", - "nomCommune": "BILHAC" + "codePostal": "16320", + "codeCommune": "16082", + "libelleAcheminement": "BOISNE LA TUDE", + "nomCommune": "BOISNE LA TUDE" }, { - "codePostal": "21500", - "codeCommune": "21550", - "libelleAcheminement": "ST GERMAIN LES SENAILLY", - "nomCommune": "ST GERMAIN LES SENAILLY" + "codePostal": "27300", + "codeCommune": "27129", + "libelleAcheminement": "CAORCHES ST NICOLAS", + "nomCommune": "CAORCHES ST NICOLAS" }, { - "codePostal": "59287", - "codeCommune": "59276", - "libelleAcheminement": "GUESNAIN", - "nomCommune": "GUESNAIN" + "codePostal": "27240", + "codeCommune": "27157", + "libelleAcheminement": "MARBOIS", + "nomCommune": "MARBOIS" }, { - "codePostal": "54000", - "codeCommune": "54395", - "libelleAcheminement": "NANCY", - "nomCommune": "NANCY" + "codePostal": "14117", + "codeCommune": "14401", + "libelleAcheminement": "MANVIEUX", + "nomCommune": "MANVIEUX" }, { - "codePostal": "19170", - "codeCommune": "19027", - "libelleAcheminement": "BONNEFOND", - "nomCommune": "BONNEFOND" + "codePostal": "16150", + "codeCommune": "16086", + "libelleAcheminement": "CHASSENON", + "nomCommune": "CHASSENON" }, { - "codePostal": "21490", - "codeCommune": "21555", - "libelleAcheminement": "ST JULIEN", - "nomCommune": "ST JULIEN" + "codePostal": "27110", + "codeCommune": "27135", + "libelleAcheminement": "CESSEVILLE", + "nomCommune": "CESSEVILLE" }, { - "codePostal": "59151", - "codeCommune": "59280", - "libelleAcheminement": "HAMEL", - "nomCommune": "HAMEL" + "codePostal": "27210", + "codeCommune": "27169", + "libelleAcheminement": "CONTEVILLE", + "nomCommune": "CONTEVILLE" }, { - "codePostal": "54230", - "codeCommune": "54397", - "libelleAcheminement": "NEUVES MAISONS", - "nomCommune": "NEUVES MAISONS" + "codePostal": "14100", + "codeCommune": "14403", + "libelleAcheminement": "MAROLLES", + "nomCommune": "MAROLLES" }, { - "codePostal": "19170", - "codeCommune": "19033", - "libelleAcheminement": "BUGEAT", - "nomCommune": "BUGEAT" + "codePostal": "16350", + "codeCommune": "16087", + "libelleAcheminement": "CHASSIECQ", + "nomCommune": "CHASSIECQ" }, { - "codePostal": "21210", - "codeCommune": "21560", - "libelleAcheminement": "ST MARTIN DE LA MER", - "nomCommune": "ST MARTIN DE LA MER" + "codePostal": "27580", + "codeCommune": "27137", + "libelleAcheminement": "CHAISE DIEU DU THEIL", + "nomCommune": "CHAISE DIEU DU THEIL" }, { - "codePostal": "59330", - "codeCommune": "59291", - "libelleAcheminement": "HAUTMONT", - "nomCommune": "HAUTMONT" + "codePostal": "27300", + "codeCommune": "27179", + "libelleAcheminement": "COURBEPINE", + "nomCommune": "COURBEPINE" }, { - "codePostal": "54540", - "codeCommune": "54398", - "libelleAcheminement": "NEUVILLER LES BADONVILLER", - "nomCommune": "NEUVILLER LES BADONVILLER" + "codePostal": "14920", + "codeCommune": "14407", + "libelleAcheminement": "MATHIEU", + "nomCommune": "MATHIEU" }, { - "codePostal": "19430", - "codeCommune": "19034", - "libelleAcheminement": "CAMPS ST MATHURIN LEOBAZEL", - "nomCommune": "CAMPS ST MATHURIN LEOBAZEL" + "codePostal": "16120", + "codeCommune": "16090", + "libelleAcheminement": "CHATEAUNEUF SUR CHARENTE", + "nomCommune": "CHATEAUNEUF SUR CHARENTE" }, { - "codePostal": "21540", - "codeCommune": "21563", - "libelleAcheminement": "ST MESMIN", - "nomCommune": "ST MESMIN" + "codePostal": "27260", + "codeCommune": "27146", + "libelleAcheminement": "LA CHAPELLE BAYVEL", + "nomCommune": "LA CHAPELLE BAYVEL" }, { - "codePostal": "59470", - "codeCommune": "59305", - "libelleAcheminement": "HERZEELE", - "nomCommune": "HERZEELE" + "codePostal": "27490", + "codeCommune": "27191", + "libelleAcheminement": "CLEF VALLEE D EURE", + "nomCommune": "CLEF VALLEE D EURE" }, { - "codePostal": "54610", - "codeCommune": "54400", - "libelleAcheminement": "NOMENY", - "nomCommune": "NOMENY" + "codePostal": "14220", + "codeCommune": "14411", + "libelleAcheminement": "MESLAY", + "nomCommune": "MESLAY" }, { - "codePostal": "19320", - "codeCommune": "19040", - "libelleAcheminement": "CHAMPAGNAC LA PRUNE", - "nomCommune": "CHAMPAGNAC LA PRUNE" + "codePostal": "16380", + "codeCommune": "16093", + "libelleAcheminement": "CHAZELLES", + "nomCommune": "CHAZELLES" }, { - "codePostal": "21130", - "codeCommune": "21572", - "libelleAcheminement": "ST SEINE EN BACHE", - "nomCommune": "ST SEINE EN BACHE" + "codePostal": "27270", + "codeCommune": "27148", + "libelleAcheminement": "LA CHAPELLE GAUTHIER", + "nomCommune": "LA CHAPELLE GAUTHIER" }, { - "codePostal": "59143", - "codeCommune": "59307", - "libelleAcheminement": "HOLQUE", - "nomCommune": "HOLQUE" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "54385", - "codeCommune": "54404", - "libelleAcheminement": "NOVIANT AUX PRES", - "nomCommune": "NOVIANT AUX PRES" + "codePostal": "14260", + "codeCommune": "14412", + "libelleAcheminement": "LE MESNIL AU GRAIN", + "nomCommune": "LE MESNIL AU GRAIN" }, { - "codePostal": "19300", - "codeCommune": "19046", - "libelleAcheminement": "CHAPELLE SPINASSE", - "nomCommune": "CHAPELLE SPINASSE" + "codePostal": "16150", + "codeCommune": "16100", + "libelleAcheminement": "CHIRAC", + "nomCommune": "CHIRAC" }, { - "codePostal": "21350", - "codeCommune": "21576", - "libelleAcheminement": "ST THIBAULT", - "nomCommune": "ST THIBAULT" + "codePostal": "27150", + "codeCommune": "27153", + "libelleAcheminement": "CHAUVINCOURT PROVEMONT", + "nomCommune": "CHAUVINCOURT PROVEMONT" }, { - "codePostal": "59266", - "codeCommune": "59312", - "libelleAcheminement": "HONNECOURT SUR ESCAUT", - "nomCommune": "HONNECOURT SUR ESCAUT" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "54530", - "codeCommune": "54415", - "libelleAcheminement": "PAGNY SUR MOSELLE", - "nomCommune": "PAGNY SUR MOSELLE" + "codePostal": "14230", + "codeCommune": "14439", + "libelleAcheminement": "MONFREVILLE", + "nomCommune": "MONFREVILLE" }, { - "codePostal": "19160", - "codeCommune": "19055", - "libelleAcheminement": "CHIRAC BELLEVUE", - "nomCommune": "CHIRAC BELLEVUE" + "codePostal": "16330", + "codeCommune": "16108", + "libelleAcheminement": "COULONGES", + "nomCommune": "COULONGES" }, { - "codePostal": "21340", - "codeCommune": "21583", - "libelleAcheminement": "SANTOSSE", - "nomCommune": "SANTOSSE" + "codePostal": "27170", + "codeCommune": "27164", + "libelleAcheminement": "COMBON", + "nomCommune": "COMBON" }, { - "codePostal": "59530", - "codeCommune": "59325", - "libelleAcheminement": "JOLIMETZ", - "nomCommune": "JOLIMETZ" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "54470", - "codeCommune": "54416", - "libelleAcheminement": "PANNES", - "nomCommune": "PANNES" + "codePostal": "14310", + "codeCommune": "14449", + "libelleAcheminement": "MONTS EN BESSIN", + "nomCommune": "MONTS EN BESSIN" }, { - "codePostal": "19250", - "codeCommune": "19058", - "libelleAcheminement": "COMBRESSOL", - "nomCommune": "COMBRESSOL" + "codePostal": "16700", + "codeCommune": "16110", + "libelleAcheminement": "COURCOME", + "nomCommune": "COURCOME" }, { - "codePostal": "21380", - "codeCommune": "21589", - "libelleAcheminement": "SAUSSY", - "nomCommune": "SAUSSY" + "codePostal": "27500", + "codeCommune": "27174", + "libelleAcheminement": "CORNEVILLE SUR RISLE", + "nomCommune": "CORNEVILLE SUR RISLE" }, { - "codePostal": "59167", - "codeCommune": "59327", - "libelleAcheminement": "LALLAING", - "nomCommune": "LALLAING" + "codePostal": "27120", + "codeCommune": "27203", + "libelleAcheminement": "DOUAINS", + "nomCommune": "DOUAINS" }, { - "codePostal": "54540", - "codeCommune": "54423", - "libelleAcheminement": "PEXONNE", - "nomCommune": "PEXONNE" + "codePostal": "14790", + "codeCommune": "14454", + "libelleAcheminement": "MOUEN", + "nomCommune": "MOUEN" }, { - "codePostal": "19800", - "codeCommune": "19062", - "libelleAcheminement": "CORREZE", - "nomCommune": "CORREZE" + "codePostal": "16210", + "codeCommune": "16112", + "libelleAcheminement": "COURLAC", + "nomCommune": "COURLAC" }, { - "codePostal": "21430", - "codeCommune": "21593", - "libelleAcheminement": "SAVILLY", - "nomCommune": "SAVILLY" + "codePostal": "27940", + "codeCommune": "27180", + "libelleAcheminement": "COURCELLES SUR SEINE", + "nomCommune": "COURCELLES SUR SEINE" }, { - "codePostal": "59740", - "codeCommune": "59347", - "libelleAcheminement": "LIESSIES", - "nomCommune": "LIESSIES" + "codePostal": "27380", + "codeCommune": "27205", + "libelleAcheminement": "DOUVILLE SUR ANDELLE", + "nomCommune": "DOUVILLE SUR ANDELLE" }, { - "codePostal": "54610", - "codeCommune": "54424", - "libelleAcheminement": "PHLIN", - "nomCommune": "PHLIN" + "codePostal": "14620", + "codeCommune": "14457", + "libelleAcheminement": "LES MOUTIERS EN AUGE", + "nomCommune": "LES MOUTIERS EN AUGE" }, { - "codePostal": "19500", - "codeCommune": "19067", - "libelleAcheminement": "CUREMONTE", - "nomCommune": "CUREMONTE" + "codePostal": "16410", + "codeCommune": "16120", + "libelleAcheminement": "DIRAC", + "nomCommune": "DIRAC" }, { - "codePostal": "21910", - "codeCommune": "21596", - "libelleAcheminement": "SAVOUGES", - "nomCommune": "SAVOUGES" + "codePostal": "27750", + "codeCommune": "27183", + "libelleAcheminement": "LA COUTURE BOUSSEY", + "nomCommune": "LA COUTURE BOUSSEY" }, { - "codePostal": "59191", - "codeCommune": "59349", - "libelleAcheminement": "LIGNY EN CAMBRESIS", - "nomCommune": "LIGNY EN CAMBRESIS" + "codePostal": "27230", + "codeCommune": "27207", + "libelleAcheminement": "DRUCOURT", + "nomCommune": "DRUCOURT" }, { - "codePostal": "54700", - "codeCommune": "54431", - "libelleAcheminement": "PONT A MOUSSON", - "nomCommune": "PONT A MOUSSON" + "codePostal": "14220", + "codeCommune": "14458", + "libelleAcheminement": "LES MOUTIERS EN CINGLAIS", + "nomCommune": "LES MOUTIERS EN CINGLAIS" }, { - "codePostal": "19300", - "codeCommune": "19073", - "libelleAcheminement": "EGLETONS", - "nomCommune": "EGLETONS" + "codePostal": "16170", + "codeCommune": "16123", + "libelleAcheminement": "ECHALLAT", + "nomCommune": "ECHALLAT" }, { - "codePostal": "21260", - "codeCommune": "21599", - "libelleAcheminement": "SELONGEY", - "nomCommune": "SELONGEY" + "codePostal": "27110", + "codeCommune": "27187", + "libelleAcheminement": "CRIQUEBEUF LA CAMPAGNE", + "nomCommune": "CRIQUEBEUF LA CAMPAGNE" }, { - "codePostal": "59120", - "codeCommune": "59360", - "libelleAcheminement": "LOOS", - "nomCommune": "LOOS" + "codePostal": "27110", + "codeCommune": "27212", + "libelleAcheminement": "ECAUVILLE", + "nomCommune": "ECAUVILLE" }, { - "codePostal": "54160", - "codeCommune": "54437", - "libelleAcheminement": "PULLIGNY", - "nomCommune": "PULLIGNY" + "codePostal": "14100", + "codeCommune": "14466", + "libelleAcheminement": "NOROLLES", + "nomCommune": "NOROLLES" }, { - "codePostal": "19340", - "codeCommune": "19080", - "libelleAcheminement": "EYGURANDE", - "nomCommune": "EYGURANDE" + "codePostal": "16150", + "codeCommune": "16132", + "libelleAcheminement": "ETAGNAC", + "nomCommune": "ETAGNAC" }, { - "codePostal": "21320", - "codeCommune": "21600", - "libelleAcheminement": "SEMAREY", - "nomCommune": "SEMAREY" + "codePostal": "27340", + "codeCommune": "27188", + "libelleAcheminement": "CRIQUEBEUF SUR SEINE", + "nomCommune": "CRIQUEBEUF SUR SEINE" }, { - "codePostal": "59700", - "codeCommune": "59378", - "libelleAcheminement": "MARCQ EN BAROEUL", - "nomCommune": "MARCQ EN BAROEUL" + "codePostal": "27420", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "54450", - "codeCommune": "54447", - "libelleAcheminement": "RECLONVILLE", - "nomCommune": "RECLONVILLE" + "codePostal": "14210", + "codeCommune": "14475", + "libelleAcheminement": "VAL D ARRY", + "nomCommune": "VAL D ARRY" }, { - "codePostal": "19800", - "codeCommune": "19085", - "libelleAcheminement": "GIMEL LES CASCADES", - "nomCommune": "GIMEL LES CASCADES" + "codePostal": "16240", + "codeCommune": "16142", + "libelleAcheminement": "LA FORET DE TESSE", + "nomCommune": "LA FORET DE TESSE" }, { - "codePostal": "21450", - "codeCommune": "21602", - "libelleAcheminement": "SEMOND", - "nomCommune": "SEMOND" + "codePostal": "27490", + "codeCommune": "27191", + "libelleAcheminement": "CLEF VALLEE D EURE", + "nomCommune": "CLEF VALLEE D EURE" }, { - "codePostal": "59990", - "codeCommune": "59381", - "libelleAcheminement": "MARESCHES", - "nomCommune": "MARESCHES" + "codePostal": "27630", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "54470", - "codeCommune": "54453", - "libelleAcheminement": "REMBERCOURT SUR MAD", - "nomCommune": "REMBERCOURT SUR MAD" + "codePostal": "14170", + "codeCommune": "14476", + "libelleAcheminement": "OLENDON", + "nomCommune": "OLENDON" }, { - "codePostal": "19150", - "codeCommune": "19098", - "libelleAcheminement": "LAGARDE MARC LA TOUR", - "nomCommune": "LAGARDE MARC LA TOUR" + "codePostal": "16170", + "codeCommune": "16148", + "libelleAcheminement": "GENAC BIGNAC", + "nomCommune": "GENAC BIGNAC" }, { - "codePostal": "21550", - "codeCommune": "21606", - "libelleAcheminement": "LADOIX SERRIGNY", - "nomCommune": "LADOIX SERRIGNY" + "codePostal": "27490", + "codeCommune": "27191", + "libelleAcheminement": "CLEF VALLEE D EURE", + "nomCommune": "CLEF VALLEE D EURE" }, { - "codePostal": "59238", - "codeCommune": "59382", - "libelleAcheminement": "MARETZ", - "nomCommune": "MARETZ" + "codePostal": "27630", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "54385", - "codeCommune": "54463", - "libelleAcheminement": "ROSIERES EN HAYE", - "nomCommune": "ROSIERES EN HAYE" + "codePostal": "14590", + "codeCommune": "14484", + "libelleAcheminement": "OUILLY DU HOULEY", + "nomCommune": "OUILLY DU HOULEY" }, { - "codePostal": "19150", - "codeCommune": "19101", - "libelleAcheminement": "LAGUENNE SUR AVALOUZE", - "nomCommune": "LAGUENNE SUR AVALOUZE" + "codePostal": "16130", + "codeCommune": "16150", + "libelleAcheminement": "GENSAC LA PALLUE", + "nomCommune": "GENSAC LA PALLUE" }, { - "codePostal": "21540", - "codeCommune": "21611", - "libelleAcheminement": "SOMBERNON", - "nomCommune": "SOMBERNON" + "codePostal": "27700", + "codeCommune": "27194", + "libelleAcheminement": "CUVERVILLE", + "nomCommune": "CUVERVILLE" }, { - "codePostal": "59164", - "codeCommune": "59385", - "libelleAcheminement": "MARPENT", - "nomCommune": "MARPENT" + "codePostal": "27110", + "codeCommune": "27215", + "libelleAcheminement": "ECQUETOT", + "nomCommune": "ECQUETOT" }, { - "codePostal": "54200", - "codeCommune": "54466", - "libelleAcheminement": "ROYAUMEIX", - "nomCommune": "ROYAUMEIX" + "codePostal": "14590", + "codeCommune": "14504", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "19150", - "codeCommune": "19101", - "libelleAcheminement": "LAGUENNE SUR AVALOUZE", - "nomCommune": "LAGUENNE SUR AVALOUZE" + "codePostal": "16130", + "codeCommune": "16152", + "libelleAcheminement": "GIMEUX", + "nomCommune": "GIMEUX" }, { - "codePostal": "21350", - "codeCommune": "21613", - "libelleAcheminement": "SOUSSEY SUR BRIONNE", - "nomCommune": "SOUSSEY SUR BRIONNE" + "codePostal": "27340", + "codeCommune": "27196", + "libelleAcheminement": "LES DAMPS", + "nomCommune": "LES DAMPS" }, { - "codePostal": "59520", - "codeCommune": "59386", - "libelleAcheminement": "MARQUETTE LEZ LILLE", - "nomCommune": "MARQUETTE LEZ LILLE" + "codePostal": "27190", + "codeCommune": "27217", + "libelleAcheminement": "EMANVILLE", + "nomCommune": "EMANVILLE" }, { - "codePostal": "54580", - "codeCommune": "54469", - "libelleAcheminement": "ST AIL", - "nomCommune": "ST AIL" + "codePostal": "14690", + "codeCommune": "14510", + "libelleAcheminement": "LA POMMERAYE", + "nomCommune": "LA POMMERAYE" }, { - "codePostal": "19510", - "codeCommune": "19104", - "libelleAcheminement": "LAMONGERIE", - "nomCommune": "LAMONGERIE" + "codePostal": "16140", + "codeCommune": "16155", + "libelleAcheminement": "LES GOURS", + "nomCommune": "LES GOURS" }, { - "codePostal": "21310", - "codeCommune": "21619", - "libelleAcheminement": "TANAY", - "nomCommune": "TANAY" + "codePostal": "27930", + "codeCommune": "27200", + "libelleAcheminement": "DARDEZ", + "nomCommune": "DARDEZ" }, { - "codePostal": "59252", - "codeCommune": "59387", - "libelleAcheminement": "MARQUETTE EN OSTREVANT", - "nomCommune": "MARQUETTE EN OSTREVANT" + "codePostal": "27110", + "codeCommune": "27219", + "libelleAcheminement": "EPEGARD", + "nomCommune": "EPEGARD" }, { - "codePostal": "54290", - "codeCommune": "54471", - "libelleAcheminement": "ST BOINGT", - "nomCommune": "ST BOINGT" + "codePostal": "14110", + "codeCommune": "14512", + "libelleAcheminement": "PONTECOULANT", + "nomCommune": "PONTECOULANT" }, { - "codePostal": "19130", - "codeCommune": "19109", - "libelleAcheminement": "LASCAUX", - "nomCommune": "LASCAUX" + "codePostal": "16340", + "codeCommune": "16166", + "libelleAcheminement": "L ISLE D ESPAGNAC", + "nomCommune": "L ISLE D ESPAGNAC" }, { - "codePostal": "21220", - "codeCommune": "21625", - "libelleAcheminement": "TERNANT", - "nomCommune": "TERNANT" + "codePostal": "27290", + "codeCommune": "27209", + "libelleAcheminement": "ECAQUELON", + "nomCommune": "ECAQUELON" }, { - "codePostal": "59176", - "codeCommune": "59390", - "libelleAcheminement": "MASNY", - "nomCommune": "MASNY" + "codePostal": "27110", + "codeCommune": "27224", + "libelleAcheminement": "EPREVILLE PRES LE NEUBOURG", + "nomCommune": "EPREVILLE PRES LE NEUBOURG" }, { - "codePostal": "54450", - "codeCommune": "54480", - "libelleAcheminement": "ST MARTIN", - "nomCommune": "ST MARTIN" + "codePostal": "14130", + "codeCommune": "14514", + "libelleAcheminement": "PONT L EVEQUE", + "nomCommune": "PONT L EVEQUE" }, { - "codePostal": "19500", - "codeCommune": "19115", - "libelleAcheminement": "LIGNEYRAC", - "nomCommune": "LIGNEYRAC" + "codePostal": "16300", + "codeCommune": "16176", + "libelleAcheminement": "LACHAISE", + "nomCommune": "LACHAISE" }, { - "codePostal": "21570", - "codeCommune": "21628", - "libelleAcheminement": "THOIRES", - "nomCommune": "THOIRES" + "codePostal": "27420", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "59600", - "codeCommune": "59392", - "libelleAcheminement": "MAUBEUGE", - "nomCommune": "MAUBEUGE" + "codePostal": "27270", + "codeCommune": "27239", + "libelleAcheminement": "FERRIERES ST HILAIRE", + "nomCommune": "FERRIERES ST HILAIRE" }, { - "codePostal": "54540", - "codeCommune": "54481", - "libelleAcheminement": "ST MAURICE AUX FORGES", - "nomCommune": "ST MAURICE AUX FORGES" + "codePostal": "14690", + "codeCommune": "14531", + "libelleAcheminement": "RAPILLY", + "nomCommune": "RAPILLY" }, { - "codePostal": "19500", - "codeCommune": "19119", - "libelleAcheminement": "LOSTANGES", - "nomCommune": "LOSTANGES" + "codePostal": "16390", + "codeCommune": "16180", + "libelleAcheminement": "LAPRADE", + "nomCommune": "LAPRADE" }, { - "codePostal": "21340", - "codeCommune": "21636", - "libelleAcheminement": "THURY", - "nomCommune": "THURY" + "codePostal": "27510", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "59270", - "codeCommune": "59399", - "libelleAcheminement": "MERRIS", - "nomCommune": "MERRIS" + "codePostal": "27480", + "codeCommune": "27245", + "libelleAcheminement": "FLEURY LA FORET", + "nomCommune": "FLEURY LA FORET" }, { - "codePostal": "54130", - "codeCommune": "54482", - "libelleAcheminement": "ST MAX", - "nomCommune": "ST MAX" + "codePostal": "14340", + "codeCommune": "14541", + "libelleAcheminement": "LA ROQUE BAIGNARD", + "nomCommune": "LA ROQUE BAIGNARD" }, { - "codePostal": "19200", - "codeCommune": "19128", - "libelleAcheminement": "MARGERIDES", - "nomCommune": "MARGERIDES" + "codePostal": "16500", + "codeCommune": "16181", + "libelleAcheminement": "LESSAC", + "nomCommune": "LESSAC" }, { - "codePostal": "21540", - "codeCommune": "21648", - "libelleAcheminement": "TURCEY", - "nomCommune": "TURCEY" + "codePostal": "27510", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "59224", - "codeCommune": "59407", - "libelleAcheminement": "MONCHAUX SUR ECAILLON", - "nomCommune": "MONCHAUX SUR ECAILLON" + "codePostal": "27380", + "codeCommune": "27247", + "libelleAcheminement": "FLIPOU", + "nomCommune": "FLIPOU" }, { - "codePostal": "54480", - "codeCommune": "54488", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "14740", + "codeCommune": "14543", + "libelleAcheminement": "ROTS", + "nomCommune": "ROTS" }, { - "codePostal": "19510", - "codeCommune": "19131", - "libelleAcheminement": "MEILHARDS", - "nomCommune": "MEILHARDS" + "codePostal": "16420", + "codeCommune": "16182", + "libelleAcheminement": "LESTERPS", + "nomCommune": "LESTERPS" }, { - "codePostal": "21350", - "codeCommune": "21649", - "libelleAcheminement": "UNCEY LE FRANC", - "nomCommune": "UNCEY LE FRANC" + "codePostal": "27930", + "codeCommune": "27216", + "libelleAcheminement": "EMALLEVILLE", + "nomCommune": "EMALLEVILLE" }, { - "codePostal": "59283", - "codeCommune": "59408", - "libelleAcheminement": "MONCHEAUX", - "nomCommune": "MONCHEAUX" + "codePostal": "27230", + "codeCommune": "27248", + "libelleAcheminement": "FOLLEVILLE", + "nomCommune": "FOLLEVILLE" }, { - "codePostal": "54560", - "codeCommune": "54491", - "libelleAcheminement": "SANCY", - "nomCommune": "SANCY" + "codePostal": "14190", + "codeCommune": "14546", + "libelleAcheminement": "ROUVRES", + "nomCommune": "ROUVRES" }, { - "codePostal": "19800", - "codeCommune": "19137", - "libelleAcheminement": "MEYRIGNAC L EGLISE", - "nomCommune": "MEYRIGNAC L EGLISE" + "codePostal": "16270", + "codeCommune": "16192", + "libelleAcheminement": "TERRES DE HAUTE CHARENTE", + "nomCommune": "TERRES DE HAUTE CHARENTE" }, { - "codePostal": "21360", - "codeCommune": "21660", - "libelleAcheminement": "VEILLY", - "nomCommune": "VEILLY" + "codePostal": "27730", + "codeCommune": "27220", + "libelleAcheminement": "EPIEDS", + "nomCommune": "EPIEDS" }, { - "codePostal": "59360", - "codeCommune": "59412", - "libelleAcheminement": "MONTAY", - "nomCommune": "MONTAY" + "codePostal": "27230", + "codeCommune": "27252", + "libelleAcheminement": "FONTAINE LA LOUVET", + "nomCommune": "FONTAINE LA LOUVET" }, { - "codePostal": "54420", - "codeCommune": "54495", - "libelleAcheminement": "SAULXURES LES NANCY", - "nomCommune": "SAULXURES LES NANCY" + "codePostal": "14320", + "codeCommune": "14556", + "libelleAcheminement": "ST ANDRE SUR ORNE", + "nomCommune": "ST ANDRE SUR ORNE" }, { - "codePostal": "19600", - "codeCommune": "19151", - "libelleAcheminement": "NOAILLES", - "nomCommune": "NOAILLES" + "codePostal": "16140", + "codeCommune": "16194", + "libelleAcheminement": "LUPSAULT", + "nomCommune": "LUPSAULT" }, { - "codePostal": "21150", - "codeCommune": "21663", - "libelleAcheminement": "VENAREY LES LAUMES", - "nomCommune": "VENAREY LES LAUMES" + "codePostal": "27150", + "codeCommune": "27232", + "libelleAcheminement": "FARCEAUX", + "nomCommune": "FARCEAUX" }, { - "codePostal": "59225", - "codeCommune": "59413", - "libelleAcheminement": "MONTIGNY EN CAMBRESIS", - "nomCommune": "MONTIGNY EN CAMBRESIS" + "codePostal": "27120", + "codeCommune": "27254", + "libelleAcheminement": "FONTAINE SOUS JOUY", + "nomCommune": "FONTAINE SOUS JOUY" }, { - "codePostal": "54550", - "codeCommune": "54505", - "libelleAcheminement": "SEXEY AUX FORGES", - "nomCommune": "SEXEY AUX FORGES" + "codePostal": "14290", + "codeCommune": "14570", + "libelleAcheminement": "VALORBIQUET", + "nomCommune": "VALORBIQUET" }, { - "codePostal": "19310", - "codeCommune": "19161", - "libelleAcheminement": "PERPEZAC LE BLANC", - "nomCommune": "PERPEZAC LE BLANC" + "codePostal": "16120", + "codeCommune": "16204", + "libelleAcheminement": "BELLEVIGNE", + "nomCommune": "BELLEVIGNE" }, { - "codePostal": "21360", - "codeCommune": "21673", - "libelleAcheminement": "VEUVEY SUR OUCHE", - "nomCommune": "VEUVEY SUR OUCHE" + "codePostal": "27290", + "codeCommune": "27267", + "libelleAcheminement": "FRENEUSE SUR RISLE", + "nomCommune": "FRENEUSE SUR RISLE" }, { - "codePostal": "59182", - "codeCommune": "59414", - "libelleAcheminement": "MONTIGNY EN OSTREVENT", - "nomCommune": "MONTIGNY EN OSTREVENT" + "codePostal": "27210", + "codeCommune": "27260", + "libelleAcheminement": "FOULBEC", + "nomCommune": "FOULBEC" }, { - "codePostal": "54280", - "codeCommune": "54510", - "libelleAcheminement": "SORNEVILLE", - "nomCommune": "SORNEVILLE" + "codePostal": "14140", + "codeCommune": "14576", + "libelleAcheminement": "VAL DE VIE", + "nomCommune": "VAL DE VIE" }, { - "codePostal": "19200", - "codeCommune": "19167", - "libelleAcheminement": "CONFOLENT PORT DIEU", - "nomCommune": "CONFOLENT PORT DIEU" + "codePostal": "16500", + "codeCommune": "16205", + "libelleAcheminement": "MANOT", + "nomCommune": "MANOT" }, { - "codePostal": "21360", - "codeCommune": "21677", - "libelleAcheminement": "VIC DES PRES", - "nomCommune": "VIC DES PRES" + "codePostal": "27260", + "codeCommune": "27269", + "libelleAcheminement": "FRESNE CAUVERVILLE", + "nomCommune": "FRESNE CAUVERVILLE" }, { - "codePostal": "59227", - "codeCommune": "59415", - "libelleAcheminement": "MONTRECOURT", - "nomCommune": "MONTRECOURT" + "codePostal": "27680", + "codeCommune": "27263", + "libelleAcheminement": "LE PERREY", + "nomCommune": "LE PERREY" }, { - "codePostal": "54800", - "codeCommune": "54511", - "libelleAcheminement": "SPONVILLE", - "nomCommune": "SPONVILLE" + "codePostal": "14130", + "codeCommune": "14578", + "libelleAcheminement": "ST GATIEN DES BOIS", + "nomCommune": "ST GATIEN DES BOIS" }, { - "codePostal": "19120", - "codeCommune": "19169", - "libelleAcheminement": "PUY D ARNAC", - "nomCommune": "PUY D ARNAC" + "codePostal": "16140", + "codeCommune": "16207", + "libelleAcheminement": "MARCILLAC LANVILLE", + "nomCommune": "MARCILLAC LANVILLE" }, { - "codePostal": "21270", - "codeCommune": "21680", - "libelleAcheminement": "VIELVERGE", - "nomCommune": "VIELVERGE" + "codePostal": "27120", + "codeCommune": "27273", + "libelleAcheminement": "GADENCOURT", + "nomCommune": "GADENCOURT" }, { - "codePostal": "59960", - "codeCommune": "59426", - "libelleAcheminement": "NEUVILLE EN FERRAIN", - "nomCommune": "NEUVILLE EN FERRAIN" + "codePostal": "27220", + "codeCommune": "27277", + "libelleAcheminement": "LA BARONNIE", + "nomCommune": "LA BARONNIE" }, { - "codePostal": "54930", - "codeCommune": "54516", - "libelleAcheminement": "THEY SOUS VAUDEMONT", - "nomCommune": "THEY SOUS VAUDEMONT" + "codePostal": "14710", + "codeCommune": "14591", + "libelleAcheminement": "AURE SUR MER", + "nomCommune": "AURE SUR MER" }, { - "codePostal": "19270", - "codeCommune": "19202", - "libelleAcheminement": "STE FEREOLE", - "nomCommune": "STE FEREOLE" + "codePostal": "16620", + "codeCommune": "16222", + "libelleAcheminement": "MONTBOYER", + "nomCommune": "MONTBOYER" }, { - "codePostal": "21230", - "codeCommune": "21683", - "libelleAcheminement": "VIEVY", - "nomCommune": "VIEVY" + "codePostal": "27930", + "codeCommune": "27282", + "libelleAcheminement": "GAUVILLE LA CAMPAGNE", + "nomCommune": "GAUVILLE LA CAMPAGNE" }, { - "codePostal": "59293", - "codeCommune": "59429", - "libelleAcheminement": "NEUVILLE SUR ESCAUT", - "nomCommune": "NEUVILLE SUR ESCAUT" + "codePostal": "27780", + "codeCommune": "27278", + "libelleAcheminement": "GARENNES SUR EURE", + "nomCommune": "GARENNES SUR EURE" }, { - "codePostal": "54120", - "codeCommune": "54519", - "libelleAcheminement": "THIAVILLE SUR MEURTHE", - "nomCommune": "THIAVILLE SUR MEURTHE" + "codePostal": "14100", + "codeCommune": "14595", + "libelleAcheminement": "ST JEAN DE LIVET", + "nomCommune": "ST JEAN DE LIVET" }, { - "codePostal": "19170", - "codeCommune": "19209", - "libelleAcheminement": "ST HILAIRE LES COURBES", - "nomCommune": "ST HILAIRE LES COURBES" + "codePostal": "16300", + "codeCommune": "16224", + "libelleAcheminement": "MONTMERAC", + "nomCommune": "MONTMERAC" }, { - "codePostal": "21200", - "codeCommune": "21684", - "libelleAcheminement": "VIGNOLES", - "nomCommune": "VIGNOLES" + "codePostal": "27110", + "codeCommune": "27298", + "libelleAcheminement": "GRAVERON SEMERVILLE", + "nomCommune": "GRAVERON SEMERVILLE" }, { - "codePostal": "59360", - "codeCommune": "59430", - "libelleAcheminement": "NEUVILLY", - "nomCommune": "NEUVILLY" + "codePostal": "27930", + "codeCommune": "27280", + "libelleAcheminement": "GAUCIEL", + "nomCommune": "GAUCIEL" }, { - "codePostal": "54800", - "codeCommune": "54524", - "libelleAcheminement": "THUMEREVILLE", - "nomCommune": "THUMEREVILLE" + "codePostal": "14430", + "codeCommune": "14598", + "libelleAcheminement": "ST JOUIN", + "nomCommune": "ST JOUIN" }, { - "codePostal": "19560", - "codeCommune": "19211", - "libelleAcheminement": "ST HILAIRE PEYROUX", - "nomCommune": "ST HILAIRE PEYROUX" + "codePostal": "16300", + "codeCommune": "16224", + "libelleAcheminement": "MONTMERAC", + "nomCommune": "MONTMERAC" }, { - "codePostal": "21120", - "codeCommune": "21692", - "libelleAcheminement": "VILLECOMTE", - "nomCommune": "VILLECOMTE" + "codePostal": "27720", + "codeCommune": "27304", + "libelleAcheminement": "GUERNY", + "nomCommune": "GUERNY" }, { - "codePostal": "59850", - "codeCommune": "59431", - "libelleAcheminement": "NIEPPE", - "nomCommune": "NIEPPE" + "codePostal": "27190", + "codeCommune": "27281", + "libelleAcheminement": "GAUDREVILLE LA RIVIERE", + "nomCommune": "GAUDREVILLE LA RIVIERE" }, { - "codePostal": "54210", - "codeCommune": "54527", - "libelleAcheminement": "TONNOY", - "nomCommune": "TONNOY" + "codePostal": "14430", + "codeCommune": "14606", + "libelleAcheminement": "ST LEGER DUBOSQ", + "nomCommune": "ST LEGER DUBOSQ" }, { - "codePostal": "19210", - "codeCommune": "19216", - "libelleAcheminement": "ST JULIEN LE VENDOMOIS", - "nomCommune": "ST JULIEN LE VENDOMOIS" + "codePostal": "16190", + "codeCommune": "16230", + "libelleAcheminement": "MONTMOREAU", + "nomCommune": "MONTMOREAU" }, { - "codePostal": "21690", - "codeCommune": "21705", - "libelleAcheminement": "VILLOTTE ST SEINE", - "nomCommune": "VILLOTTE ST SEINE" + "codePostal": "27930", + "codeCommune": "27306", + "libelleAcheminement": "GUICHAINVILLE", + "nomCommune": "GUICHAINVILLE" }, { - "codePostal": "59570", - "codeCommune": "59441", - "libelleAcheminement": "OBIES", - "nomCommune": "OBIES" + "codePostal": "27620", + "codeCommune": "27285", + "libelleAcheminement": "GIVERNY", + "nomCommune": "GIVERNY" }, { - "codePostal": "54115", - "codeCommune": "54531", - "libelleAcheminement": "TRAMONT ST ANDRE", - "nomCommune": "TRAMONT ST ANDRE" + "codePostal": "14310", + "codeCommune": "14607", + "libelleAcheminement": "ST LOUET SUR SEULLES", + "nomCommune": "ST LOUET SUR SEULLES" }, { - "codePostal": "19160", - "codeCommune": "19219", - "libelleAcheminement": "STE MARIE LAPANOUZE", - "nomCommune": "STE MARIE LAPANOUZE" + "codePostal": "16700", + "codeCommune": "16242", + "libelleAcheminement": "NANTEUIL EN VALLEE", + "nomCommune": "NANTEUIL EN VALLEE" }, { - "codePostal": "21400", - "codeCommune": "21706", - "libelleAcheminement": "VILLOTTE SUR OURCE", - "nomCommune": "VILLOTTE SUR OURCE" + "codePostal": "27220", + "codeCommune": "27309", + "libelleAcheminement": "L HABIT", + "nomCommune": "L HABIT" }, { - "codePostal": "59670", - "codeCommune": "59453", - "libelleAcheminement": "OUDEZEELE", - "nomCommune": "OUDEZEELE" + "codePostal": "27190", + "codeCommune": "27287", + "libelleAcheminement": "GLISOLLES", + "nomCommune": "GLISOLLES" }, { - "codePostal": "54800", - "codeCommune": "54535", - "libelleAcheminement": "TRONVILLE", - "nomCommune": "TRONVILLE" + "codePostal": "14740", + "codeCommune": "14610", + "libelleAcheminement": "ST MANVIEU NORREY", + "nomCommune": "ST MANVIEU NORREY" }, { - "codePostal": "19150", - "codeCommune": "19235", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "16200", + "codeCommune": "16243", + "libelleAcheminement": "NERCILLAC", + "nomCommune": "NERCILLAC" }, { - "codePostal": "21350", - "codeCommune": "21707", - "libelleAcheminement": "VILLY EN AUXOIS", - "nomCommune": "VILLY EN AUXOIS" + "codePostal": "27150", + "codeCommune": "27310", + "libelleAcheminement": "HACQUEVILLE", + "nomCommune": "HACQUEVILLE" }, { - "codePostal": "59670", - "codeCommune": "59454", - "libelleAcheminement": "OXELAERE", - "nomCommune": "OXELAERE" + "codePostal": "27170", + "codeCommune": "27290", + "libelleAcheminement": "GOUPIL OTHON", + "nomCommune": "GOUPIL OTHON" }, { - "codePostal": "54112", - "codeCommune": "54538", - "libelleAcheminement": "URUFFE", - "nomCommune": "URUFFE" + "codePostal": "14710", + "codeCommune": "14622", + "libelleAcheminement": "ST MARTIN DE BLAGNY", + "nomCommune": "ST MARTIN DE BLAGNY" }, { - "codePostal": "19290", - "codeCommune": "19238", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "16270", + "codeCommune": "16245", + "libelleAcheminement": "NIEUIL", + "nomCommune": "NIEUIL" }, { - "codePostal": "21350", - "codeCommune": "21710", - "libelleAcheminement": "VITTEAUX", - "nomCommune": "VITTEAUX" + "codePostal": "27700", + "codeCommune": "27315", + "libelleAcheminement": "HARQUENCY", + "nomCommune": "HARQUENCY" }, { - "codePostal": "59190", - "codeCommune": "59469", - "libelleAcheminement": "PRADELLES", - "nomCommune": "PRADELLES" + "codePostal": "27580", + "codeCommune": "27291", + "libelleAcheminement": "GOURNAY LE GUERIN", + "nomCommune": "GOURNAY LE GUERIN" }, { - "codePostal": "54480", - "codeCommune": "54540", - "libelleAcheminement": "VAL ET CHATILLON", - "nomCommune": "VAL ET CHATILLON" + "codePostal": "14220", + "codeCommune": "14635", + "libelleAcheminement": "ST OMER", + "nomCommune": "ST OMER" }, { - "codePostal": "19230", - "codeCommune": "19243", - "libelleAcheminement": "ST SORNIN LAVOLPS", - "nomCommune": "ST SORNIN LAVOLPS" + "codePostal": "16210", + "codeCommune": "16252", + "libelleAcheminement": "ORIVAL", + "nomCommune": "ORIVAL" }, { - "codePostal": "21400", - "codeCommune": "21711", - "libelleAcheminement": "VIX", - "nomCommune": "VIX" + "codePostal": "27430", + "codeCommune": "27330", + "libelleAcheminement": "HERQUEVILLE", + "nomCommune": "HERQUEVILLE" }, { - "codePostal": "59380", - "codeCommune": "59478", - "libelleAcheminement": "QUAEDYPRE", - "nomCommune": "QUAEDYPRE" + "codePostal": "27800", + "codeCommune": "27311", + "libelleAcheminement": "HARCOURT", + "nomCommune": "HARCOURT" }, { - "codePostal": "54910", - "codeCommune": "54542", - "libelleAcheminement": "VALLEROY", - "nomCommune": "VALLEROY" + "codePostal": "14490", + "codeCommune": "14643", + "libelleAcheminement": "ST PAUL DU VERNAY", + "nomCommune": "ST PAUL DU VERNAY" }, { - "codePostal": "19250", - "codeCommune": "19244", - "libelleAcheminement": "ST SULPICE LES BOIS", - "nomCommune": "ST SULPICE LES BOIS" + "codePostal": "16250", + "codeCommune": "16263", + "libelleAcheminement": "PLASSAC ROUFFIAC", + "nomCommune": "PLASSAC ROUFFIAC" }, { - "codePostal": "21640", - "codeCommune": "21716", - "libelleAcheminement": "VOUGEOT", - "nomCommune": "VOUGEOT" + "codePostal": "27860", + "codeCommune": "27333", + "libelleAcheminement": "HEUDICOURT", + "nomCommune": "HEUDICOURT" }, { - "codePostal": "59243", - "codeCommune": "59479", - "libelleAcheminement": "QUAROUBLE", - "nomCommune": "QUAROUBLE" + "codePostal": "27370", + "codeCommune": "27313", + "libelleAcheminement": "LA HARENGERE", + "nomCommune": "LA HARENGERE" }, { - "codePostal": "54500", - "codeCommune": "54547", - "libelleAcheminement": "VANDOEUVRE LES NANCY", - "nomCommune": "VANDOEUVRE LES NANCY" + "codePostal": "14670", + "codeCommune": "14651", + "libelleAcheminement": "ST PIERRE DU JONQUET", + "nomCommune": "ST PIERRE DU JONQUET" }, { - "codePostal": "19510", - "codeCommune": "19250", - "libelleAcheminement": "SALON LA TOUR", - "nomCommune": "SALON LA TOUR" + "codePostal": "16490", + "codeCommune": "16264", + "libelleAcheminement": "PLEUVILLE", + "nomCommune": "PLEUVILLE" }, { - "codePostal": "22100", - "codeCommune": "22003", - "libelleAcheminement": "AUCALEUC", - "nomCommune": "AUCALEUC" + "codePostal": "27310", + "codeCommune": "27340", + "libelleAcheminement": "HONGUEMARE GUENOUVILLE", + "nomCommune": "HONGUEMARE GUENOUVILLE" }, { - "codePostal": "59269", - "codeCommune": "59480", - "libelleAcheminement": "QUERENAING", - "nomCommune": "QUERENAING" + "codePostal": "27350", + "codeCommune": "27317", + "libelleAcheminement": "LA HAYE AUBREE", + "nomCommune": "LA HAYE AUBREE" }, { - "codePostal": "54110", - "codeCommune": "54549", - "libelleAcheminement": "VARANGEVILLE", - "nomCommune": "VARANGEVILLE" + "codePostal": "14140", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "19220", - "codeCommune": "19258", - "libelleAcheminement": "SERVIERES LE CHATEAU", - "nomCommune": "SERVIERES LE CHATEAU" + "codePostal": "16150", + "codeCommune": "16270", + "libelleAcheminement": "PRESSIGNAC", + "nomCommune": "PRESSIGNAC" }, { - "codePostal": "22140", - "codeCommune": "22006", - "libelleAcheminement": "BERHET", - "nomCommune": "BERHET" + "codePostal": "27930", + "codeCommune": "27347", + "libelleAcheminement": "HUEST", + "nomCommune": "HUEST" }, { - "codePostal": "59554", - "codeCommune": "59488", - "libelleAcheminement": "RAILLENCOURT STE OLLE", - "nomCommune": "RAILLENCOURT STE OLLE" + "codePostal": "27400", + "codeCommune": "27321", + "libelleAcheminement": "LA HAYE LE COMTE", + "nomCommune": "LA HAYE LE COMTE" }, { - "codePostal": "54840", - "codeCommune": "54557", - "libelleAcheminement": "BOIS DE HAYE", - "nomCommune": "BOIS DE HAYE" + "codePostal": "14140", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "19170", - "codeCommune": "19265", - "libelleAcheminement": "TARNAC", - "nomCommune": "TARNAC" + "codePostal": "16200", + "codeCommune": "16277", + "libelleAcheminement": "REPARSAC", + "nomCommune": "REPARSAC" }, { - "codePostal": "22100", - "codeCommune": "22008", - "libelleAcheminement": "BOBITAL", - "nomCommune": "BOBITAL" + "codePostal": "27110", + "codeCommune": "27354", + "libelleAcheminement": "IVILLE", + "nomCommune": "IVILLE" }, { - "codePostal": "59177", - "codeCommune": "59493", - "libelleAcheminement": "RAMOUSIES", - "nomCommune": "RAMOUSIES" + "codePostal": "27800", + "codeCommune": "27325", + "libelleAcheminement": "HECMANVILLE", + "nomCommune": "HECMANVILLE" }, { - "codePostal": "54290", - "codeCommune": "54559", - "libelleAcheminement": "VELLE SUR MOSELLE", - "nomCommune": "VELLE SUR MOSELLE" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "19200", - "codeCommune": "19275", - "libelleAcheminement": "USSEL", - "nomCommune": "USSEL" + "codePostal": "16320", + "codeCommune": "16283", + "libelleAcheminement": "RONSENAC", + "nomCommune": "RONSENAC" }, { - "codePostal": "22160", - "codeCommune": "22024", - "libelleAcheminement": "CALANHEL", - "nomCommune": "CALANHEL" + "codePostal": "27220", + "codeCommune": "27360", + "libelleAcheminement": "JUMELLES", + "nomCommune": "JUMELLES" }, { - "codePostal": "59245", - "codeCommune": "59495", - "libelleAcheminement": "RECQUIGNIES", - "nomCommune": "RECQUIGNIES" + "codePostal": "27630", + "codeCommune": "27331", + "libelleAcheminement": "HEUBECOURT HARICOURT", + "nomCommune": "HEUBECOURT HARICOURT" }, { - "codePostal": "54620", - "codeCommune": "54568", - "libelleAcheminement": "VILLE AU MONTOIS", - "nomCommune": "VILLE AU MONTOIS" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "19140", - "codeCommune": "19276", - "libelleAcheminement": "UZERCHE", - "nomCommune": "UZERCHE" + "codePostal": "16170", + "codeCommune": "16286", + "libelleAcheminement": "ROUILLAC", + "nomCommune": "ROUILLAC" }, { - "codePostal": "22160", - "codeCommune": "22025", - "libelleAcheminement": "CALLAC DE BRETAGNE", - "nomCommune": "CALLAC" + "codePostal": "27350", + "codeCommune": "27363", + "libelleAcheminement": "LE LANDIN", + "nomCommune": "LE LANDIN" }, { - "codePostal": "59550", - "codeCommune": "59503", - "libelleAcheminement": "ROBERSART", - "nomCommune": "ROBERSART" + "codePostal": "27700", + "codeCommune": "27337", + "libelleAcheminement": "HEUQUEVILLE", + "nomCommune": "HEUQUEVILLE" }, { - "codePostal": "54210", - "codeCommune": "54571", - "libelleAcheminement": "VILLE EN VERMOIS", - "nomCommune": "VILLE EN VERMOIS" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "21121", - "codeCommune": "21003", - "libelleAcheminement": "AHUY", - "nomCommune": "AHUY" + "codePostal": "16170", + "codeCommune": "16286", + "libelleAcheminement": "ROUILLAC", + "nomCommune": "ROUILLAC" }, { - "codePostal": "22100", - "codeCommune": "22026", - "libelleAcheminement": "CALORGUEN", - "nomCommune": "CALORGUEN" + "codePostal": "27560", + "codeCommune": "27367", + "libelleAcheminement": "LIEUREY", + "nomCommune": "LIEUREY" }, { - "codePostal": "59730", - "codeCommune": "59506", - "libelleAcheminement": "ROMERIES", - "nomCommune": "ROMERIES" + "codePostal": "27400", + "codeCommune": "27339", + "libelleAcheminement": "HONDOUVILLE", + "nomCommune": "HONDOUVILLE" }, { - "codePostal": "54380", - "codeCommune": "54573", - "libelleAcheminement": "VILLERS EN HAYE", - "nomCommune": "VILLERS EN HAYE" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "21700", - "codeCommune": "21022", - "libelleAcheminement": "ARGILLY", - "nomCommune": "ARGILLY" + "codePostal": "16170", + "codeCommune": "16286", + "libelleAcheminement": "ROUILLAC", + "nomCommune": "ROUILLAC" }, { - "codePostal": "22450", - "codeCommune": "22028", - "libelleAcheminement": "CAMLEZ", - "nomCommune": "CAMLEZ" + "codePostal": "27150", + "codeCommune": "27372", + "libelleAcheminement": "LONGCHAMPS", + "nomCommune": "LONGCHAMPS" }, { - "codePostal": "59230", - "codeCommune": "59511", - "libelleAcheminement": "ROSULT", - "nomCommune": "ROSULT" + "codePostal": "27210", + "codeCommune": "27361", + "libelleAcheminement": "LA LANDE ST LEGER", + "nomCommune": "LA LANDE ST LEGER" }, { - "codePostal": "54760", - "codeCommune": "54577", - "libelleAcheminement": "VILLERS LES MOIVRONS", - "nomCommune": "VILLERS LES MOIVRONS" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "21450", - "codeCommune": "21043", - "libelleAcheminement": "BAIGNEUX LES JUIFS", - "nomCommune": "BAIGNEUX LES JUIFS" + "codePostal": "16220", + "codeCommune": "16290", + "libelleAcheminement": "ROUZEDE", + "nomCommune": "ROUZEDE" }, { - "codePostal": "22300", - "codeCommune": "22030", - "libelleAcheminement": "CAOUENNEC LANVEZEAC", - "nomCommune": "CAOUENNEC LANVEZEAC" + "codePostal": "27150", + "codeCommune": "27379", + "libelleAcheminement": "MAINNEVILLE", + "nomCommune": "MAINNEVILLE" }, { - "codePostal": "59258", - "codeCommune": "59517", - "libelleAcheminement": "LES RUES DES VIGNES", - "nomCommune": "LES RUES DES VIGNES" + "codePostal": "27220", + "codeCommune": "27368", + "libelleAcheminement": "LIGNEROLLES", + "nomCommune": "LIGNEROLLES" }, { - "codePostal": "54190", - "codeCommune": "54580", - "libelleAcheminement": "VILLERUPT", - "nomCommune": "VILLERUPT" + "codePostal": "14400", + "codeCommune": "14663", + "libelleAcheminement": "ST VIGOR LE GRAND", + "nomCommune": "ST VIGOR LE GRAND" }, { - "codePostal": "21330", - "codeCommune": "21044", - "libelleAcheminement": "BALOT", - "nomCommune": "BALOT" + "codePostal": "16600", + "codeCommune": "16291", + "libelleAcheminement": "RUELLE SUR TOUVRE", + "nomCommune": "RUELLE SUR TOUVRE" }, { - "codePostal": "22350", - "codeCommune": "22036", - "libelleAcheminement": "LA CHAPELLE BLANCHE", - "nomCommune": "LA CHAPELLE BLANCHE" + "codePostal": "27370", + "codeCommune": "27382", + "libelleAcheminement": "MANDEVILLE", + "nomCommune": "MANDEVILLE" }, { - "codePostal": "59554", - "codeCommune": "59521", - "libelleAcheminement": "SAILLY LEZ CAMBRAI", - "nomCommune": "SAILLY LEZ CAMBRAI" + "codePostal": "27480", + "codeCommune": "27369", + "libelleAcheminement": "LILLY", + "nomCommune": "LILLY" }, { - "codePostal": "54840", - "codeCommune": "54583", - "libelleAcheminement": "VILLEY LE SEC", - "nomCommune": "VILLEY LE SEC" + "codePostal": "14240", + "codeCommune": "14664", + "libelleAcheminement": "SALLEN", + "nomCommune": "SALLEN" }, { - "codePostal": "21460", - "codeCommune": "21047", - "libelleAcheminement": "BARD LES EPOISSES", - "nomCommune": "BARD LES EPOISSES" + "codePostal": "16700", + "codeCommune": "16292", + "libelleAcheminement": "RUFFEC", + "nomCommune": "RUFFEC" }, { - "codePostal": "22140", - "codeCommune": "22041", - "libelleAcheminement": "COATASCORN", - "nomCommune": "COATASCORN" + "codePostal": "27500", + "codeCommune": "27385", + "libelleAcheminement": "MANNEVILLE SUR RISLE", + "nomCommune": "MANNEVILLE SUR RISLE" }, { - "codePostal": "59262", - "codeCommune": "59523", - "libelleAcheminement": "SAINGHIN EN MELANTOIS", - "nomCommune": "SAINGHIN EN MELANTOIS" + "codePostal": "27400", + "codeCommune": "27375", + "libelleAcheminement": "LOUVIERS", + "nomCommune": "LOUVIERS" }, { - "codePostal": "54300", - "codeCommune": "54588", - "libelleAcheminement": "VITRIMONT", - "nomCommune": "VITRIMONT" + "codePostal": "14330", + "codeCommune": "14668", + "libelleAcheminement": "SAONNET", + "nomCommune": "SAONNET" }, { - "codePostal": "21510", - "codeCommune": "21052", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "16230", + "codeCommune": "16300", + "libelleAcheminement": "VAL DE BONNIEURE", + "nomCommune": "VAL DE BONNIEURE" }, { - "codePostal": "22450", - "codeCommune": "22042", - "libelleAcheminement": "COATREVEN", - "nomCommune": "COATREVEN" + "codePostal": "27390", + "codeCommune": "27404", + "libelleAcheminement": "MESNIL ROUSSET", + "nomCommune": "MESNIL ROUSSET" }, { - "codePostal": "59350", - "codeCommune": "59527", - "libelleAcheminement": "ST ANDRE LEZ LILLE", - "nomCommune": "ST ANDRE LEZ LILLE" + "codePostal": "27300", + "codeCommune": "27381", + "libelleAcheminement": "MALOUY", + "nomCommune": "MALOUY" }, { - "codePostal": "54260", - "codeCommune": "54590", - "libelleAcheminement": "VIVIERS SUR CHIERS", - "nomCommune": "VIVIERS SUR CHIERS" + "codePostal": "14240", + "codeCommune": "14672", + "libelleAcheminement": "VAL DE DROME", + "nomCommune": "VAL DE DROME" }, { - "codePostal": "21310", - "codeCommune": "21056", - "libelleAcheminement": "BEIRE LE CHATEL", - "nomCommune": "BEIRE LE CHATEL" + "codePostal": "16230", + "codeCommune": "16300", + "libelleAcheminement": "VAL DE BONNIEURE", + "nomCommune": "VAL DE BONNIEURE" }, { - "codePostal": "22330", - "codeCommune": "22046", - "libelleAcheminement": "LE MENE", - "nomCommune": "LE MENE" + "codePostal": "27150", + "codeCommune": "27405", + "libelleAcheminement": "MESNIL SOUS VIENNE", + "nomCommune": "MESNIL SOUS VIENNE" }, { - "codePostal": "59360", - "codeCommune": "59531", - "libelleAcheminement": "ST BENIN", - "nomCommune": "ST BENIN" + "codePostal": "27680", + "codeCommune": "27388", + "libelleAcheminement": "MARAIS VERNIER", + "nomCommune": "MARAIS VERNIER" }, { - "codePostal": "54260", - "codeCommune": "54590", - "libelleAcheminement": "VIVIERS SUR CHIERS", - "nomCommune": "VIVIERS SUR CHIERS" + "codePostal": "14710", + "codeCommune": "14681", + "libelleAcheminement": "SURRAIN", + "nomCommune": "SURRAIN" }, { - "codePostal": "21510", - "codeCommune": "21061", - "libelleAcheminement": "BELLENOD SUR SEINE", - "nomCommune": "BELLENOD SUR SEINE" + "codePostal": "16230", + "codeCommune": "16300", + "libelleAcheminement": "VAL DE BONNIEURE", + "nomCommune": "VAL DE BONNIEURE" }, { - "codePostal": "22100", - "codeCommune": "22050", - "libelleAcheminement": "DINAN", - "nomCommune": "DINAN" + "codePostal": "27440", + "codeCommune": "27407", + "libelleAcheminement": "MESNIL VERCLIVES", + "nomCommune": "MESNIL VERCLIVES" }, { - "codePostal": "59620", - "codeCommune": "59542", - "libelleAcheminement": "ST REMY CHAUSSEE", - "nomCommune": "ST REMY CHAUSSEE" + "codePostal": "27110", + "codeCommune": "27389", + "libelleAcheminement": "MARBEUF", + "nomCommune": "MARBEUF" }, { - "codePostal": "54260", - "codeCommune": "54590", - "libelleAcheminement": "VIVIERS SUR CHIERS", - "nomCommune": "VIVIERS SUR CHIERS" + "codePostal": "14940", + "codeCommune": "14698", + "libelleAcheminement": "TOUFFREVILLE", + "nomCommune": "TOUFFREVILLE" }, { - "codePostal": "21110", - "codeCommune": "21067", - "libelleAcheminement": "BESSEY LES CITEAUX", - "nomCommune": "BESSEY LES CITEAUX" + "codePostal": "16300", + "codeCommune": "16301", + "libelleAcheminement": "ST AULAIS LA CHAPELLE", + "nomCommune": "ST AULAIS LA CHAPELLE" }, { - "codePostal": "22520", - "codeCommune": "22055", - "libelleAcheminement": "BINIC ETABLES SUR MER", - "nomCommune": "BINIC ETABLES SUR MER" + "codePostal": "27340", + "codeCommune": "27412", + "libelleAcheminement": "TERRES DE BORD", + "nomCommune": "TERRES DE BORD" }, { - "codePostal": "59268", - "codeCommune": "59552", - "libelleAcheminement": "SANCOURT", - "nomCommune": "SANCOURT" + "codePostal": "27210", + "codeCommune": "27393", + "libelleAcheminement": "MARTAINVILLE", + "nomCommune": "MARTAINVILLE" }, { - "codePostal": "54470", - "codeCommune": "54594", - "libelleAcheminement": "XAMMES", - "nomCommune": "XAMMES" + "codePostal": "14130", + "codeCommune": "14706", + "libelleAcheminement": "TOURVILLE EN AUGE", + "nomCommune": "TOURVILLE EN AUGE" }, { - "codePostal": "21320", - "codeCommune": "21068", - "libelleAcheminement": "BEUREY BAUGUAY", - "nomCommune": "BEUREY BAUGUAY" + "codePostal": "16170", + "codeCommune": "16312", + "libelleAcheminement": "ST CYBARDEAUX", + "nomCommune": "ST CYBARDEAUX" }, { - "codePostal": "22350", - "codeCommune": "22069", - "libelleAcheminement": "GUENROC", - "nomCommune": "GUENROC" + "codePostal": "27800", + "codeCommune": "27418", + "libelleAcheminement": "MORSAN", + "nomCommune": "MORSAN" }, { - "codePostal": "59320", - "codeCommune": "59566", - "libelleAcheminement": "SEQUEDIN", - "nomCommune": "SEQUEDIN" + "codePostal": "27340", + "codeCommune": "27394", + "libelleAcheminement": "MARTOT", + "nomCommune": "MARTOT" }, { - "codePostal": "54990", - "codeCommune": "54596", - "libelleAcheminement": "XEUILLEY", - "nomCommune": "XEUILLEY" + "codePostal": "14310", + "codeCommune": "14708", + "libelleAcheminement": "TRACY BOCAGE", + "nomCommune": "TRACY BOCAGE" }, { - "codePostal": "21440", - "codeCommune": "21085", - "libelleAcheminement": "BLIGNY LE SEC", - "nomCommune": "BLIGNY LE SEC" + "codePostal": "16230", + "codeCommune": "16326", + "libelleAcheminement": "ST GROUX", + "nomCommune": "ST GROUX" }, { - "codePostal": "22390", - "codeCommune": "22072", - "libelleAcheminement": "GURUNHUEL", - "nomCommune": "GURUNHUEL" + "codePostal": "27420", + "codeCommune": "27420", + "libelleAcheminement": "MOUFLAINES", + "nomCommune": "MOUFLAINES" }, { - "codePostal": "59190", - "codeCommune": "59577", - "libelleAcheminement": "STAPLE", - "nomCommune": "STAPLE" + "codePostal": "27400", + "codeCommune": "27403", + "libelleAcheminement": "LE MESNIL JOURDAIN", + "nomCommune": "LE MESNIL JOURDAIN" }, { - "codePostal": "54370", - "codeCommune": "54601", - "libelleAcheminement": "XURES", - "nomCommune": "XURES" + "codePostal": "14670", + "codeCommune": "14712", + "libelleAcheminement": "TROARN", + "nomCommune": "TROARN" }, { - "codePostal": "21250", - "codeCommune": "21089", - "libelleAcheminement": "BONNENCONTRE", - "nomCommune": "BONNENCONTRE" + "codePostal": "16190", + "codeCommune": "16334", + "libelleAcheminement": "ST MARTIAL", + "nomCommune": "ST MARTIAL" }, { - "codePostal": "22120", - "codeCommune": "22081", - "libelleAcheminement": "HILLION", - "nomCommune": "HILLION" + "codePostal": "27430", + "codeCommune": "27422", + "libelleAcheminement": "MUIDS", + "nomCommune": "MUIDS" }, { - "codePostal": "59242", - "codeCommune": "59586", - "libelleAcheminement": "TEMPLEUVE EN PEVELE", - "nomCommune": "TEMPLEUVE EN PEVELE" + "codePostal": "27650", + "codeCommune": "27406", + "libelleAcheminement": "MESNIL SUR L ESTREE", + "nomCommune": "MESNIL SUR L ESTREE" }, { - "codePostal": "55400", - "codeCommune": "55002", - "libelleAcheminement": "ABAUCOURT HAUTECOURT", - "nomCommune": "ABAUCOURT HAUTECOURT" + "codePostal": "14210", + "codeCommune": "14713", + "libelleAcheminement": "MONTILLIERES SUR ORNE", + "nomCommune": "MONTILLIERES SUR ORNE" }, { - "codePostal": "21360", - "codeCommune": "21091", - "libelleAcheminement": "BOUHEY", - "nomCommune": "BOUHEY" + "codePostal": "16170", + "codeCommune": "16339", + "libelleAcheminement": "VAL D AUGE", + "nomCommune": "VAL D AUGE" }, { - "codePostal": "22100", - "codeCommune": "22082", - "libelleAcheminement": "LE HINGLE", - "nomCommune": "LE HINGLE" + "codePostal": "27300", + "codeCommune": "27425", + "libelleAcheminement": "NASSANDRES SUR RISLE", + "nomCommune": "NASSANDRES SUR RISLE" }, { - "codePostal": "59224", - "codeCommune": "59589", - "libelleAcheminement": "THIANT", - "nomCommune": "THIANT" + "codePostal": "27510", + "codeCommune": "27408", + "libelleAcheminement": "MEZIERES EN VEXIN", + "nomCommune": "MEZIERES EN VEXIN" }, { - "codePostal": "55800", - "codeCommune": "55011", - "libelleAcheminement": "ANDERNAY", - "nomCommune": "ANDERNAY" + "codePostal": "14490", + "codeCommune": "14714", + "libelleAcheminement": "LE TRONQUAY", + "nomCommune": "LE TRONQUAY" }, { - "codePostal": "21260", - "codeCommune": "21096", - "libelleAcheminement": "BOUSSENOIS", - "nomCommune": "BOUSSENOIS" + "codePostal": "16170", + "codeCommune": "16339", + "libelleAcheminement": "VAL D AUGE", + "nomCommune": "VAL D AUGE" }, { - "codePostal": "22270", - "codeCommune": "22084", - "libelleAcheminement": "JUGON LES LACS COMMUNE NOUVELLE", - "nomCommune": "JUGON LES LACS COMMUNE NOUVELLE" + "codePostal": "27730", + "codeCommune": "27429", + "libelleAcheminement": "NEUILLY", + "nomCommune": "NEUILLY" }, { - "codePostal": "59141", - "codeCommune": "59593", - "libelleAcheminement": "THUN L EVEQUE", - "nomCommune": "THUN L EVEQUE" + "codePostal": "27220", + "codeCommune": "27421", + "libelleAcheminement": "MOUSSEAUX NEUVILLE", + "nomCommune": "MOUSSEAUX NEUVILLE" }, { - "codePostal": "55300", - "codeCommune": "55012", - "libelleAcheminement": "APREMONT LA FORET", - "nomCommune": "APREMONT LA FORET" + "codePostal": "14190", + "codeCommune": "14719", + "libelleAcheminement": "URVILLE", + "nomCommune": "URVILLE" }, { - "codePostal": "21560", - "codeCommune": "21105", - "libelleAcheminement": "BRESSEY SUR TILLE", - "nomCommune": "BRESSEY SUR TILLE" + "codePostal": "16470", + "codeCommune": "16341", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "22500", - "codeCommune": "22086", - "libelleAcheminement": "KERFOT", - "nomCommune": "KERFOT" + "codePostal": "27190", + "codeCommune": "27436", + "libelleAcheminement": "NOGENT LE SEC", + "nomCommune": "NOGENT LE SEC" }, { - "codePostal": "59141", - "codeCommune": "59595", - "libelleAcheminement": "THUN ST MARTIN", - "nomCommune": "THUN ST MARTIN" + "codePostal": "27650", + "codeCommune": "27423", + "libelleAcheminement": "MUZY", + "nomCommune": "MUZY" }, { - "codePostal": "55210", - "codeCommune": "55021", - "libelleAcheminement": "AVILLERS STE CROIX", - "nomCommune": "AVILLERS STE CROIX" + "codePostal": "14420", + "codeCommune": "14720", + "libelleAcheminement": "USSY", + "nomCommune": "USSY" }, { - "codePostal": "21490", - "codeCommune": "21107", - "libelleAcheminement": "BRETIGNY", - "nomCommune": "BRETIGNY" + "codePostal": "16460", + "codeCommune": "16356", + "libelleAcheminement": "ST SULPICE DE RUFFEC", + "nomCommune": "ST SULPICE DE RUFFEC" }, { - "codePostal": "22480", - "codeCommune": "22092", - "libelleAcheminement": "KERPERT", - "nomCommune": "KERPERT" + "codePostal": "27940", + "codeCommune": "27440", + "libelleAcheminement": "NOTRE DAME DE L ISLE", + "nomCommune": "NOTRE DAME DE L ISLE" }, { - "codePostal": "59554", - "codeCommune": "59597", - "libelleAcheminement": "TILLOY LEZ CAMBRAI", - "nomCommune": "TILLOY LEZ CAMBRAI" + "codePostal": "27190", + "codeCommune": "27424", + "libelleAcheminement": "NAGEL SEEZ MESNIL", + "nomCommune": "NAGEL SEEZ MESNIL" }, { - "codePostal": "55130", - "codeCommune": "55026", - "libelleAcheminement": "BADONVILLIERS GERAUVILLIERS", - "nomCommune": "BADONVILLIERS GERAUVILLIERS" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "21220", - "codeCommune": "21110", - "libelleAcheminement": "BROCHON", - "nomCommune": "BROCHON" + "codePostal": "16300", + "codeCommune": "16360", + "libelleAcheminement": "SALLES DE BARBEZIEUX", + "nomCommune": "SALLES DE BARBEZIEUX" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "27390", + "codeCommune": "27442", + "libelleAcheminement": "NOTRE DAME DU HAMEL", + "nomCommune": "NOTRE DAME DU HAMEL" }, { - "codePostal": "59229", - "codeCommune": "59605", - "libelleAcheminement": "UXEM", - "nomCommune": "UXEM" + "codePostal": "27550", + "codeCommune": "27425", + "libelleAcheminement": "NASSANDRES SUR RISLE", + "nomCommune": "NASSANDRES SUR RISLE" }, { - "codePostal": "55260", - "codeCommune": "55032", - "libelleAcheminement": "BAUDREMONT", - "nomCommune": "BAUDREMONT" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "21250", - "codeCommune": "21112", - "libelleAcheminement": "BROIN", - "nomCommune": "BROIN" + "codePostal": "16420", + "codeCommune": "16363", + "libelleAcheminement": "SAULGOND", + "nomCommune": "SAULGOND" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "27120", + "codeCommune": "27448", + "libelleAcheminement": "PACY SUR EURE", + "nomCommune": "PACY SUR EURE" }, { - "codePostal": "59300", - "codeCommune": "59606", - "libelleAcheminement": "VALENCIENNES", - "nomCommune": "VALENCIENNES" + "codePostal": "27330", + "codeCommune": "27431", + "libelleAcheminement": "LA NEUVE LYRE", + "nomCommune": "LA NEUVE LYRE" }, { - "codePostal": "55700", - "codeCommune": "55036", - "libelleAcheminement": "BEAUCLAIR", - "nomCommune": "BEAUCLAIR" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "21500", - "codeCommune": "21114", - "libelleAcheminement": "BUFFON", - "nomCommune": "BUFFON" + "codePostal": "16200", + "codeCommune": "16369", + "libelleAcheminement": "SIGOGNE", + "nomCommune": "SIGOGNE" }, { - "codePostal": "22450", - "codeCommune": "22101", - "libelleAcheminement": "LANGOAT", - "nomCommune": "LANGOAT" + "codePostal": "27130", + "codeCommune": "27457", + "libelleAcheminement": "PISEUX", + "nomCommune": "PISEUX" }, { - "codePostal": "59213", - "codeCommune": "59608", - "libelleAcheminement": "VENDEGIES SUR ECAILLON", - "nomCommune": "VENDEGIES SUR ECAILLON" + "codePostal": "27800", + "codeCommune": "27433", + "libelleAcheminement": "NEUVILLE SUR AUTHOU", + "nomCommune": "NEUVILLE SUR AUTHOU" }, { - "codePostal": "55250", - "codeCommune": "55038", - "libelleAcheminement": "BEAULIEU EN ARGONNE", - "nomCommune": "BEAULIEU EN ARGONNE" + "codePostal": "14400", + "codeCommune": "14728", + "libelleAcheminement": "VAUCELLES", + "nomCommune": "VAUCELLES" }, { - "codePostal": "21510", - "codeCommune": "21117", - "libelleAcheminement": "BUSSEAUT", - "nomCommune": "BUSSEAUT" + "codePostal": "16110", + "codeCommune": "16379", + "libelleAcheminement": "TAPONNAT FLEURIGNAC", + "nomCommune": "TAPONNAT FLEURIGNAC" }, { - "codePostal": "22360", - "codeCommune": "22106", - "libelleAcheminement": "LANGUEUX", - "nomCommune": "LANGUEUX" + "codePostal": "27170", + "codeCommune": "27466", + "libelleAcheminement": "LE PLESSIS STE OPPORTUNE", + "nomCommune": "LE PLESSIS STE OPPORTUNE" }, { - "codePostal": "59237", - "codeCommune": "59611", - "libelleAcheminement": "VERLINGHEM", - "nomCommune": "VERLINGHEM" + "codePostal": "27120", + "codeCommune": "27448", + "libelleAcheminement": "PACY SUR EURE", + "nomCommune": "PACY SUR EURE" }, { - "codePostal": "55100", - "codeCommune": "55042", - "libelleAcheminement": "BELLERAY", - "nomCommune": "BELLERAY" + "codePostal": "14170", + "codeCommune": "14735", + "libelleAcheminement": "VENDEUVRE", + "nomCommune": "VENDEUVRE" }, { - "codePostal": "21150", - "codeCommune": "21122", - "libelleAcheminement": "BUSSY LE GRAND", - "nomCommune": "BUSSY LE GRAND" + "codePostal": "16240", + "codeCommune": "16381", + "libelleAcheminement": "THEIL RABIER", + "nomCommune": "THEIL RABIER" }, { - "codePostal": "22610", - "codeCommune": "22111", - "libelleAcheminement": "LANMODEZ", - "nomCommune": "LANMODEZ" + "codePostal": "27360", + "codeCommune": "27470", + "libelleAcheminement": "PONT ST PIERRE", + "nomCommune": "PONT ST PIERRE" }, { - "codePostal": "59138", - "codeCommune": "59617", - "libelleAcheminement": "VIEUX MESNIL", - "nomCommune": "VIEUX MESNIL" + "codePostal": "27910", + "codeCommune": "27453", + "libelleAcheminement": "PERRIERS SUR ANDELLE", + "nomCommune": "PERRIERS SUR ANDELLE" }, { - "codePostal": "55270", - "codeCommune": "55065", - "libelleAcheminement": "BOUREUILLES", - "nomCommune": "BOUREUILLES" + "codePostal": "14790", + "codeCommune": "14738", + "libelleAcheminement": "VERSON", + "nomCommune": "VERSON" }, { - "codePostal": "21110", - "codeCommune": "21126", - "libelleAcheminement": "CESSEY SUR TILLE", - "nomCommune": "CESSEY SUR TILLE" + "codePostal": "16200", + "codeCommune": "16387", + "libelleAcheminement": "TRIAC LAUTRAIT", + "nomCommune": "TRIAC LAUTRAIT" }, { - "codePostal": "22480", - "codeCommune": "22115", - "libelleAcheminement": "LANRIVAIN", - "nomCommune": "LANRIVAIN" + "codePostal": "27940", + "codeCommune": "27473", + "libelleAcheminement": "PORT MORT", + "nomCommune": "PORT MORT" }, { - "codePostal": "59870", - "codeCommune": "59629", - "libelleAcheminement": "VRED", - "nomCommune": "VRED" + "codePostal": "27910", + "codeCommune": "27454", + "libelleAcheminement": "PERRUEL", + "nomCommune": "PERRUEL" }, { - "codePostal": "55190", - "codeCommune": "55066", - "libelleAcheminement": "BOVEE SUR BARBOURE", - "nomCommune": "BOVEE SUR BARBOURE" + "codePostal": "14114", + "codeCommune": "14739", + "libelleAcheminement": "VER SUR MER", + "nomCommune": "VER SUR MER" }, { - "codePostal": "21350", - "codeCommune": "21147", - "libelleAcheminement": "CHARNY", - "nomCommune": "CHARNY" + "codePostal": "16330", + "codeCommune": "16393", + "libelleAcheminement": "VARS", + "nomCommune": "VARS" }, { - "codePostal": "22170", - "codeCommune": "22116", - "libelleAcheminement": "LANRODEC", - "nomCommune": "LANRODEC" + "codePostal": "27930", + "codeCommune": "27489", + "libelleAcheminement": "REUILLY", + "nomCommune": "REUILLY" }, { - "codePostal": "59127", - "codeCommune": "59631", - "libelleAcheminement": "WALINCOURT SELVIGNY", - "nomCommune": "WALINCOURT SELVIGNY" + "codePostal": "27230", + "codeCommune": "27455", + "libelleAcheminement": "PIENCOURT", + "nomCommune": "PIENCOURT" }, { - "codePostal": "55500", - "codeCommune": "55067", - "libelleAcheminement": "BOVIOLLES", - "nomCommune": "BOVIOLLES" + "codePostal": "14290", + "codeCommune": "14740", + "libelleAcheminement": "LA VESPIERE FRIARDEL", + "nomCommune": "LA VESPIERE FRIARDEL" }, { - "codePostal": "21190", - "codeCommune": "21150", - "libelleAcheminement": "CHASSAGNE MONTRACHET", - "nomCommune": "CHASSAGNE MONTRACHET" + "codePostal": "16350", + "codeCommune": "16403", + "libelleAcheminement": "LE VIEUX CERIER", + "nomCommune": "LE VIEUX CERIER" }, { - "codePostal": "22410", - "codeCommune": "22117", - "libelleAcheminement": "LANTIC", - "nomCommune": "LANTIC" + "codePostal": "27350", + "codeCommune": "27500", + "libelleAcheminement": "ROUTOT", + "nomCommune": "ROUTOT" }, { - "codePostal": "59190", - "codeCommune": "59634", - "libelleAcheminement": "WALLON CAPPEL", - "nomCommune": "WALLON CAPPEL" + "codePostal": "27230", + "codeCommune": "27459", + "libelleAcheminement": "LES PLACES", + "nomCommune": "LES PLACES" }, { - "codePostal": "55120", - "codeCommune": "55068", - "libelleAcheminement": "BRABANT EN ARGONNE", - "nomCommune": "BRABANT EN ARGONNE" + "codePostal": "14170", + "codeCommune": "14742", + "libelleAcheminement": "VICQUES", + "nomCommune": "VICQUES" }, { - "codePostal": "21150", - "codeCommune": "21151", - "libelleAcheminement": "CHASSEY", - "nomCommune": "CHASSEY" + "codePostal": "16220", + "codeCommune": "16406", + "libelleAcheminement": "MOULINS SUR TARDOIRE", + "nomCommune": "MOULINS SUR TARDOIRE" }, { - "codePostal": "22100", - "codeCommune": "22118", - "libelleAcheminement": "LANVALLAY", - "nomCommune": "LANVALLAY" + "codePostal": "27250", + "codeCommune": "27508", + "libelleAcheminement": "ST ANTONIN DE SOMMAIRE", + "nomCommune": "ST ANTONIN DE SOMMAIRE" }, { - "codePostal": "59118", - "codeCommune": "59636", - "libelleAcheminement": "WAMBRECHIES", - "nomCommune": "WAMBRECHIES" + "codePostal": "27230", + "codeCommune": "27462", + "libelleAcheminement": "LE PLANQUAY", + "nomCommune": "LE PLANQUAY" }, { - "codePostal": "55100", - "codeCommune": "55073", - "libelleAcheminement": "BRAS SUR MEUSE", - "nomCommune": "BRAS SUR MEUSE" + "codePostal": "14430", + "codeCommune": "14743", + "libelleAcheminement": "VICTOT PONTFOL", + "nomCommune": "VICTOT PONTFOL" }, { - "codePostal": "21360", - "codeCommune": "21156", - "libelleAcheminement": "CHAUDENAY LE CHATEAU", - "nomCommune": "CHAUDENAY LE CHATEAU" + "codePostal": "16320", + "codeCommune": "16408", + "libelleAcheminement": "VILLEBOIS LAVALETTE", + "nomCommune": "VILLEBOIS LAVALETTE" }, { - "codePostal": "22230", - "codeCommune": "22122", - "libelleAcheminement": "LAURENAN", - "nomCommune": "LAURENAN" + "codePostal": "27270", + "codeCommune": "27514", + "libelleAcheminement": "ST AUBIN DU THENNEY", + "nomCommune": "ST AUBIN DU THENNEY" }, { - "codePostal": "59139", - "codeCommune": "59648", - "libelleAcheminement": "WATTIGNIES", - "nomCommune": "WATTIGNIES" + "codePostal": "27180", + "codeCommune": "27464", + "libelleAcheminement": "LE PLESSIS GROHAN", + "nomCommune": "LE PLESSIS GROHAN" }, { - "codePostal": "55150", - "codeCommune": "55076", - "libelleAcheminement": "BREHEVILLE", - "nomCommune": "BREHEVILLE" + "codePostal": "14130", + "codeCommune": "14748", + "libelleAcheminement": "VIEUX BOURG", + "nomCommune": "VIEUX BOURG" }, { - "codePostal": "21400", - "codeCommune": "21165", - "libelleAcheminement": "CHEMIN D AISEY", - "nomCommune": "CHEMIN D AISEY" + "codePostal": "16240", + "codeCommune": "16409", + "libelleAcheminement": "VILLEFAGNAN", + "nomCommune": "VILLEFAGNAN" }, { - "codePostal": "22230", - "codeCommune": "22133", - "libelleAcheminement": "LOSCOUET SUR MEU", - "nomCommune": "LOSCOUET SUR MEU" + "codePostal": "27300", + "codeCommune": "27516", + "libelleAcheminement": "TREIS SANTS EN OUCHE", + "nomCommune": "TREIS SANTS EN OUCHE" }, { - "codePostal": "59470", - "codeCommune": "59666", - "libelleAcheminement": "ZEGERSCAPPEL", - "nomCommune": "ZEGERSCAPPEL" + "codePostal": "27120", + "codeCommune": "27465", + "libelleAcheminement": "LE PLESSIS HEBERT", + "nomCommune": "LE PLESSIS HEBERT" }, { - "codePostal": "55700", - "codeCommune": "55083", - "libelleAcheminement": "BROUENNES", - "nomCommune": "BROUENNES" + "codePostal": "14700", + "codeCommune": "14751", + "libelleAcheminement": "VIGNATS", + "nomCommune": "VIGNATS" }, { - "codePostal": "21300", - "codeCommune": "21166", - "libelleAcheminement": "CHENOVE", - "nomCommune": "CHENOVE" + "codePostal": "16400", + "codeCommune": "16418", + "libelleAcheminement": "VOEUIL ET GIGET", + "nomCommune": "VOEUIL ET GIGET" }, { - "codePostal": "22700", - "codeCommune": "22134", - "libelleAcheminement": "LOUANNEC", - "nomCommune": "LOUANNEC" + "codePostal": "27600", + "codeCommune": "27517", + "libelleAcheminement": "ST AUBIN SUR GAILLON", + "nomCommune": "ST AUBIN SUR GAILLON" }, { - "codePostal": "59272", - "codeCommune": "59670", - "libelleAcheminement": "DON", - "nomCommune": "DON" + "codePostal": "27430", + "codeCommune": "27471", + "libelleAcheminement": "PORTE DE SEINE", + "nomCommune": "PORTE DE SEINE" }, { - "codePostal": "55400", - "codeCommune": "55094", - "libelleAcheminement": "BUZY DARMONT", - "nomCommune": "BUZY DARMONT" + "codePostal": "14420", + "codeCommune": "14753", + "libelleAcheminement": "VILLERS CANIVET", + "nomCommune": "VILLERS CANIVET" }, { - "codePostal": "21200", - "codeCommune": "21170", - "libelleAcheminement": "CHEVIGNY EN VALIERE", - "nomCommune": "CHEVIGNY EN VALIERE" + "codePostal": "16220", + "codeCommune": "16421", + "libelleAcheminement": "VOUTHON", + "nomCommune": "VOUTHON" }, { - "codePostal": "22160", - "codeCommune": "22138", - "libelleAcheminement": "MAEL PESTIVIEN", - "nomCommune": "MAEL PESTIVIEN" + "codePostal": "27950", + "codeCommune": "27525", + "libelleAcheminement": "STE COLOMBE PRES VERNON", + "nomCommune": "STE COLOMBE PRES VERNON" }, { - "codePostal": "60600", - "codeCommune": "60008", - "libelleAcheminement": "AIRION", - "nomCommune": "AIRION" + "codePostal": "27190", + "codeCommune": "27472", + "libelleAcheminement": "PORTES", + "nomCommune": "PORTES" }, { - "codePostal": "55270", - "codeCommune": "55103", - "libelleAcheminement": "CHARPENTRY", - "nomCommune": "CHARPENTRY" + "codePostal": "14310", + "codeCommune": "14760", + "libelleAcheminement": "VILLY BOCAGE", + "nomCommune": "VILLY BOCAGE" }, { - "codePostal": "21800", - "codeCommune": "21171", - "libelleAcheminement": "CHEVIGNY ST SAUVEUR", - "nomCommune": "CHEVIGNY ST SAUVEUR" + "codePostal": "16110", + "codeCommune": "16425", + "libelleAcheminement": "YVRAC ET MALLEYRAND", + "nomCommune": "YVRAC ET MALLEYRAND" }, { - "codePostal": "22550", - "codeCommune": "22143", - "libelleAcheminement": "MATIGNON", - "nomCommune": "MATIGNON" + "codePostal": "27190", + "codeCommune": "27535", + "libelleAcheminement": "ST ELIER", + "nomCommune": "ST ELIER" }, { - "codePostal": "60000", - "codeCommune": "60009", - "libelleAcheminement": "ALLONNE", - "nomCommune": "ALLONNE" + "codePostal": "27500", + "codeCommune": "27476", + "libelleAcheminement": "LES PREAUX", + "nomCommune": "LES PREAUX" }, { - "codePostal": "55130", - "codeCommune": "55104", - "libelleAcheminement": "CHASSEY BEAUPRE", - "nomCommune": "CHASSEY BEAUPRE" + "codePostal": "14500", + "codeCommune": "14762", + "libelleAcheminement": "VIRE NORMANDIE", + "nomCommune": "VIRE NORMANDIE" }, { - "codePostal": "21270", - "codeCommune": "21175", - "libelleAcheminement": "CIREY LES PONTAILLER", - "nomCommune": "CIREY LES PONTAILLER" + "codePostal": "17520", + "codeCommune": "17016", + "libelleAcheminement": "ARCHIAC", + "nomCommune": "ARCHIAC" }, { - "codePostal": "22220", - "codeCommune": "22152", - "libelleAcheminement": "MINIHY TREGUIER", - "nomCommune": "MINIHY TREGUIER" + "codePostal": "27450", + "codeCommune": "27542", + "libelleAcheminement": "ST GEORGES DU VIEVRE", + "nomCommune": "ST GEORGES DU VIEVRE" }, { - "codePostal": "60310", - "codeCommune": "60011", - "libelleAcheminement": "AMY", - "nomCommune": "AMY" + "codePostal": "27510", + "codeCommune": "27477", + "libelleAcheminement": "PRESSAGNY L ORGUEILLEUX", + "nomCommune": "PRESSAGNY L ORGUEILLEUX" }, { - "codePostal": "55600", - "codeCommune": "55109", - "libelleAcheminement": "CHAUVENCY LE CHATEAU", - "nomCommune": "CHAUVENCY LE CHATEAU" + "codePostal": "15100", + "codeCommune": "15004", + "libelleAcheminement": "ANDELAT", + "nomCommune": "ANDELAT" }, { - "codePostal": "21220", - "codeCommune": "21178", - "libelleAcheminement": "VALFORET", - "nomCommune": "VALFORET" + "codePostal": "17520", + "codeCommune": "17020", + "libelleAcheminement": "ARTHENAC", + "nomCommune": "ARTHENAC" }, { - "codePostal": "22510", - "codeCommune": "22153", - "libelleAcheminement": "MONCONTOUR DE BRETAGNE", - "nomCommune": "MONCONTOUR" + "codePostal": "27710", + "codeCommune": "27543", + "libelleAcheminement": "ST GEORGES MOTEL", + "nomCommune": "ST GEORGES MOTEL" }, { - "codePostal": "60120", - "codeCommune": "60017", - "libelleAcheminement": "ANSAUVILLERS", - "nomCommune": "ANSAUVILLERS" + "codePostal": "27610", + "codeCommune": "27493", + "libelleAcheminement": "ROMILLY SUR ANDELLE", + "nomCommune": "ROMILLY SUR ANDELLE" }, { - "codePostal": "55600", - "codeCommune": "55110", - "libelleAcheminement": "CHAUVENCY ST HUBERT", - "nomCommune": "CHAUVENCY ST HUBERT" + "codePostal": "15150", + "codeCommune": "15011", + "libelleAcheminement": "ARNAC", + "nomCommune": "ARNAC" }, { - "codePostal": "21490", - "codeCommune": "21179", - "libelleAcheminement": "CLENAY", - "nomCommune": "CLENAY" + "codePostal": "17770", + "codeCommune": "17023", + "libelleAcheminement": "AUJAC", + "nomCommune": "AUJAC" }, { - "codePostal": "22510", - "codeCommune": "22165", - "libelleAcheminement": "PENGUILY", - "nomCommune": "PENGUILY" + "codePostal": "27220", + "codeCommune": "27544", + "libelleAcheminement": "ST GERMAIN DE FRESNEY", + "nomCommune": "ST GERMAIN DE FRESNEY" }, { - "codePostal": "60400", - "codeCommune": "60021", - "libelleAcheminement": "APPILLY", - "nomCommune": "APPILLY" + "codePostal": "27110", + "codeCommune": "27498", + "libelleAcheminement": "ROUGE PERRIERS", + "nomCommune": "ROUGE PERRIERS" }, { - "codePostal": "55160", - "codeCommune": "55121", - "libelleAcheminement": "COMBRES SOUS LES COTES", - "nomCommune": "COMBRES SOUS LES COTES" + "codePostal": "15500", + "codeCommune": "15013", + "libelleAcheminement": "AURIAC L EGLISE", + "nomCommune": "AURIAC L EGLISE" }, { - "codePostal": "21230", - "codeCommune": "21181", - "libelleAcheminement": "CLOMOT", - "nomCommune": "CLOMOT" + "codePostal": "17800", + "codeCommune": "17027", + "libelleAcheminement": "AVY", + "nomCommune": "AVY" }, { - "codePostal": "22700", - "codeCommune": "22168", - "libelleAcheminement": "PERROS GUIREC", - "nomCommune": "PERROS GUIREC" + "codePostal": "27450", + "codeCommune": "27550", + "libelleAcheminement": "ST GREGOIRE DU VIEVRE", + "nomCommune": "ST GREGOIRE DU VIEVRE" }, { - "codePostal": "60400", - "codeCommune": "60037", - "libelleAcheminement": "BABOEUF", - "nomCommune": "BABOEUF" + "codePostal": "27930", + "codeCommune": "27504", + "libelleAcheminement": "SACQUENVILLE", + "nomCommune": "SACQUENVILLE" }, { - "codePostal": "55170", - "codeCommune": "55132", - "libelleAcheminement": "COUSANCES LES FORGES", - "nomCommune": "COUSANCES LES FORGES" + "codePostal": "15240", + "codeCommune": "15015", + "libelleAcheminement": "AUZERS", + "nomCommune": "AUZERS" }, { - "codePostal": "21110", - "codeCommune": "21183", - "libelleAcheminement": "COLLONGES ET PREMIERES", - "nomCommune": "COLLONGES ET PREMIERES" + "codePostal": "17440", + "codeCommune": "17028", + "libelleAcheminement": "AYTRE", + "nomCommune": "AYTRE" }, { - "codePostal": "22130", - "codeCommune": "22172", - "libelleAcheminement": "PLANCOET", - "nomCommune": "PLANCOET" + "codePostal": "27390", + "codeCommune": "27556", + "libelleAcheminement": "ST LAURENT DU TENCEMENT", + "nomCommune": "ST LAURENT DU TENCEMENT" }, { - "codePostal": "60930", - "codeCommune": "60041", - "libelleAcheminement": "BAILLEUL SUR THERAIN", - "nomCommune": "BAILLEUL SUR THERAIN" + "codePostal": "27390", + "codeCommune": "27505", + "libelleAcheminement": "ST AGNAN DE CERNIERES", + "nomCommune": "ST AGNAN DE CERNIERES" }, { - "codePostal": "55290", - "codeCommune": "55133", - "libelleAcheminement": "COUVERTPUIS", - "nomCommune": "COUVERTPUIS" + "codePostal": "15270", + "codeCommune": "15038", + "libelleAcheminement": "CHAMPS SUR TARENTAINE MARCHAL", + "nomCommune": "CHAMPS SUR TARENTAINE MARCHAL" }, { - "codePostal": "21700", - "codeCommune": "21194", - "libelleAcheminement": "CORGOLOIN", - "nomCommune": "CORGOLOIN" + "codePostal": "17290", + "codeCommune": "17032", + "libelleAcheminement": "BALLON", + "nomCommune": "BALLON" }, { - "codePostal": "22170", - "codeCommune": "22182", - "libelleAcheminement": "PLELO", - "nomCommune": "PLELO" + "codePostal": "27160", + "codeCommune": "27578", + "libelleAcheminement": "STE MARIE D ATTEZ", + "nomCommune": "STE MARIE D ATTEZ" }, { - "codePostal": "60250", - "codeCommune": "60044", - "libelleAcheminement": "BALAGNY SUR THERAIN", - "nomCommune": "BALAGNY SUR THERAIN" + "codePostal": "27230", + "codeCommune": "27512", + "libelleAcheminement": "ST AUBIN DE SCELLON", + "nomCommune": "ST AUBIN DE SCELLON" }, { - "codePostal": "55130", - "codeCommune": "55148", - "libelleAcheminement": "DELOUZE ROSIERES", - "nomCommune": "DELOUZE ROSIERES" + "codePostal": "15400", + "codeCommune": "15050", + "libelleAcheminement": "LE CLAUX", + "nomCommune": "LE CLAUX" }, { - "codePostal": "21340", - "codeCommune": "21195", - "libelleAcheminement": "CORMOT VAUCHIGNON", - "nomCommune": "CORMOT VAUCHIGNON" + "codePostal": "17330", + "codeCommune": "17043", + "libelleAcheminement": "BERNAY ST MARTIN", + "nomCommune": "BERNAY ST MARTIN" }, { - "codePostal": "22210", - "codeCommune": "22183", - "libelleAcheminement": "PLEMET", - "nomCommune": "PLEMET" + "codePostal": "27310", + "codeCommune": "27580", + "libelleAcheminement": "ST OUEN DE THOUBERVILLE", + "nomCommune": "ST OUEN DE THOUBERVILLE" }, { - "codePostal": "60810", - "codeCommune": "60045", - "libelleAcheminement": "BARBERY", - "nomCommune": "BARBERY" + "codePostal": "27450", + "codeCommune": "27522", + "libelleAcheminement": "ST CHRISTOPHE SUR CONDE", + "nomCommune": "ST CHRISTOPHE SUR CONDE" }, { - "codePostal": "55150", - "codeCommune": "55149", - "libelleAcheminement": "DELUT", - "nomCommune": "DELUT" + "codePostal": "15170", + "codeCommune": "15053", + "libelleAcheminement": "COLTINES", + "nomCommune": "COLTINES" }, { - "codePostal": "21120", - "codeCommune": "21211", - "libelleAcheminement": "CRECEY SUR TILLE", - "nomCommune": "CRECEY SUR TILLE" + "codePostal": "17150", + "codeCommune": "17052", + "libelleAcheminement": "BOISREDON", + "nomCommune": "BOISREDON" }, { - "codePostal": "22640", - "codeCommune": "22185", - "libelleAcheminement": "PLENEE JUGON", - "nomCommune": "PLENEE JUGON" + "codePostal": "27290", + "codeCommune": "27587", + "libelleAcheminement": "ST PHILBERT SUR RISLE", + "nomCommune": "ST PHILBERT SUR RISLE" }, { - "codePostal": "60640", - "codeCommune": "60052", - "libelleAcheminement": "BEAUGIES SOUS BOIS", - "nomCommune": "BEAUGIES SOUS BOIS" + "codePostal": "27800", + "codeCommune": "27527", + "libelleAcheminement": "ST CYR DE SALERNE", + "nomCommune": "ST CYR DE SALERNE" }, { - "codePostal": "55300", - "codeCommune": "55159", - "libelleAcheminement": "DOMPCEVRIN", - "nomCommune": "DOMPCEVRIN" + "codePostal": "15100", + "codeCommune": "15055", + "libelleAcheminement": "COREN", + "nomCommune": "COREN" }, { - "codePostal": "21500", - "codeCommune": "21212", - "libelleAcheminement": "CREPAND", - "nomCommune": "CREPAND" + "codePostal": "17270", + "codeCommune": "17054", + "libelleAcheminement": "BORESSE ET MARTRON", + "nomCommune": "BORESSE ET MARTRON" }, { - "codePostal": "22190", - "codeCommune": "22187", - "libelleAcheminement": "PLERIN", - "nomCommune": "PLERIN" + "codePostal": "27210", + "codeCommune": "27604", + "libelleAcheminement": "ST SULPICE DE GRIMBOUVILLE", + "nomCommune": "ST SULPICE DE GRIMBOUVILLE" }, { - "codePostal": "60310", - "codeCommune": "60053", - "libelleAcheminement": "BEAULIEU LES FONTAINES", - "nomCommune": "BEAULIEU LES FONTAINES" + "codePostal": "27450", + "codeCommune": "27538", + "libelleAcheminement": "ST ETIENNE L ALLIER", + "nomCommune": "ST ETIENNE L ALLIER" }, { - "codePostal": "55300", - "codeCommune": "55160", - "libelleAcheminement": "DOMPIERRE AUX BOIS", - "nomCommune": "DOMPIERRE AUX BOIS" + "codePostal": "15250", + "codeCommune": "15056", + "libelleAcheminement": "CRANDELLES", + "nomCommune": "CRANDELLES" }, { - "codePostal": "21360", - "codeCommune": "21214", - "libelleAcheminement": "CRUGEY", - "nomCommune": "CRUGEY" + "codePostal": "17210", + "codeCommune": "17061", + "libelleAcheminement": "BRAN", + "nomCommune": "BRAN" }, { - "codePostal": "22610", - "codeCommune": "22195", - "libelleAcheminement": "PLEUBIAN", - "nomCommune": "PLEUBIAN" + "codePostal": "27300", + "codeCommune": "27608", + "libelleAcheminement": "ST VICTOR DE CHRETIENVILLE", + "nomCommune": "ST VICTOR DE CHRETIENVILLE" }, { - "codePostal": "60390", - "codeCommune": "60054", - "libelleAcheminement": "LES HAUTS TALICAN", - "nomCommune": "LES HAUTS TALICAN" + "codePostal": "27560", + "codeCommune": "27541", + "libelleAcheminement": "LE MESNIL ST JEAN", + "nomCommune": "LE MESNIL ST JEAN" }, { - "codePostal": "55160", - "codeCommune": "55163", - "libelleAcheminement": "DONCOURT AUX TEMPLIERS", - "nomCommune": "DONCOURT AUX TEMPLIERS" + "codePostal": "15150", + "codeCommune": "15057", + "libelleAcheminement": "CROS DE MONTVERT", + "nomCommune": "CROS DE MONTVERT" }, { - "codePostal": "21380", - "codeCommune": "21218", - "libelleAcheminement": "CURTIL ST SEINE", - "nomCommune": "CURTIL ST SEINE" + "codePostal": "17160", + "codeCommune": "17067", + "libelleAcheminement": "BRIE SOUS MATHA", + "nomCommune": "BRIE SOUS MATHA" }, { - "codePostal": "22740", - "codeCommune": "22199", - "libelleAcheminement": "PLEUMEUR GAUTIER", - "nomCommune": "PLEUMEUR GAUTIER" + "codePostal": "27800", + "codeCommune": "27609", + "libelleAcheminement": "ST VICTOR D EPINE", + "nomCommune": "ST VICTOR D EPINE" }, { - "codePostal": "60490", - "codeCommune": "60061", - "libelleAcheminement": "BELLOY", - "nomCommune": "BELLOY" + "codePostal": "27930", + "codeCommune": "27546", + "libelleAcheminement": "ST GERMAIN DES ANGLES", + "nomCommune": "ST GERMAIN DES ANGLES" }, { - "codePostal": "55110", - "codeCommune": "55165", - "libelleAcheminement": "DOULCON", - "nomCommune": "DOULCON" + "codePostal": "15700", + "codeCommune": "15064", + "libelleAcheminement": "ESCORAILLES", + "nomCommune": "ESCORAILLES" }, { - "codePostal": "21350", - "codeCommune": "21224", - "libelleAcheminement": "DAMPIERRE EN MONTAGNE", - "nomCommune": "DAMPIERRE EN MONTAGNE" + "codePostal": "17770", + "codeCommune": "17072", + "libelleAcheminement": "BURIE", + "nomCommune": "BURIE" }, { - "codePostal": "22260", - "codeCommune": "22204", - "libelleAcheminement": "PLOEZAL", - "nomCommune": "PLOEZAL" + "codePostal": "27370", + "codeCommune": "27616", + "libelleAcheminement": "LA SAUSSAYE", + "nomCommune": "LA SAUSSAYE" }, { - "codePostal": "60120", - "codeCommune": "60082", - "libelleAcheminement": "BONNEUIL LES EAUX", - "nomCommune": "BONNEUIL LES EAUX" + "codePostal": "27930", + "codeCommune": "27560", + "libelleAcheminement": "ST LUC", + "nomCommune": "ST LUC" }, { - "codePostal": "55160", - "codeCommune": "55172", - "libelleAcheminement": "LES EPARGES", - "nomCommune": "LES EPARGES" + "codePostal": "15310", + "codeCommune": "15072", + "libelleAcheminement": "FREIX ANGLARDS", + "nomCommune": "FREIX ANGLARDS" }, { - "codePostal": "21310", - "codeCommune": "21225", - "libelleAcheminement": "DAMPIERRE ET FLEE", - "nomCommune": "DAMPIERRE ET FLEE" + "codePostal": "17210", + "codeCommune": "17074", + "libelleAcheminement": "BUSSAC FORET", + "nomCommune": "BUSSAC FORET" }, { - "codePostal": "22650", - "codeCommune": "22209", - "libelleAcheminement": "BEAUSSAIS SUR MER", - "nomCommune": "BEAUSSAIS SUR MER" + "codePostal": "27150", + "codeCommune": "27617", + "libelleAcheminement": "SAUSSAY LA CAMPAGNE", + "nomCommune": "SAUSSAY LA CAMPAGNE" }, { - "codePostal": "60123", - "codeCommune": "60083", - "libelleAcheminement": "BONNEUIL EN VALOIS", - "nomCommune": "BONNEUIL EN VALOIS" + "codePostal": "27500", + "codeCommune": "27563", + "libelleAcheminement": "ST MARDS DE BLACARVILLE", + "nomCommune": "ST MARDS DE BLACARVILLE" }, { - "codePostal": "55500", - "codeCommune": "55179", - "libelleAcheminement": "ERNEVILLE AUX BOIS", - "nomCommune": "ERNEVILLE AUX BOIS" + "codePostal": "15130", + "codeCommune": "15074", + "libelleAcheminement": "GIOU DE MAMOU", + "nomCommune": "GIOU DE MAMOU" }, { - "codePostal": "21121", - "codeCommune": "21227", - "libelleAcheminement": "DAROIS", - "nomCommune": "DAROIS" + "codePostal": "17270", + "codeCommune": "17077", + "libelleAcheminement": "CERCOUX", + "nomCommune": "CERCOUX" }, { - "codePostal": "22810", - "codeCommune": "22216", - "libelleAcheminement": "PLOUGONVER", - "nomCommune": "PLOUGONVER" + "codePostal": "27190", + "codeCommune": "27618", + "libelleAcheminement": "SEBECOURT", + "nomCommune": "SEBECOURT" }, { - "codePostal": "60112", - "codeCommune": "60084", - "libelleAcheminement": "BONNIERES", - "nomCommune": "BONNIERES" + "codePostal": "27230", + "codeCommune": "27564", + "libelleAcheminement": "ST MARDS DE FRESNE", + "nomCommune": "ST MARDS DE FRESNE" }, { - "codePostal": "55000", - "codeCommune": "55186", - "libelleAcheminement": "FAINS VEEL", - "nomCommune": "FAINS VEEL" + "codePostal": "15150", + "codeCommune": "15076", + "libelleAcheminement": "GLENAT", + "nomCommune": "GLENAT" }, { - "codePostal": "21120", - "codeCommune": "21230", - "libelleAcheminement": "DIENAY", - "nomCommune": "DIENAY" + "codePostal": "17430", + "codeCommune": "17085", + "libelleAcheminement": "CHAMPDOLENT", + "nomCommune": "CHAMPDOLENT" }, { - "codePostal": "22300", - "codeCommune": "22224", - "libelleAcheminement": "PLOULEC H", - "nomCommune": "PLOULEC H" + "codePostal": "27290", + "codeCommune": "27631", + "libelleAcheminement": "THIERVILLE", + "nomCommune": "THIERVILLE" }, { - "codePostal": "60120", - "codeCommune": "60085", - "libelleAcheminement": "BONVILLERS", - "nomCommune": "BONVILLERS" + "codePostal": "27160", + "codeCommune": "27578", + "libelleAcheminement": "STE MARIE D ATTEZ", + "nomCommune": "STE MARIE D ATTEZ" }, { - "codePostal": "55000", - "codeCommune": "55186", - "libelleAcheminement": "FAINS VEEL", - "nomCommune": "FAINS VEEL" + "codePostal": "15120", + "codeCommune": "15084", + "libelleAcheminement": "LABESSERETTE", + "nomCommune": "LABESSERETTE" }, { - "codePostal": "21000", - "codeCommune": "21231", - "libelleAcheminement": "DIJON", - "nomCommune": "DIJON" + "codePostal": "17610", + "codeCommune": "17086", + "libelleAcheminement": "CHANIERS", + "nomCommune": "CHANIERS" }, { - "codePostal": "22970", - "codeCommune": "22225", - "libelleAcheminement": "PLOUMAGOAR", - "nomCommune": "PLOUMAGOAR" + "codePostal": "27420", + "codeCommune": "27633", + "libelleAcheminement": "LES THILLIERS EN VEXIN", + "nomCommune": "LES THILLIERS EN VEXIN" }, { - "codePostal": "60840", - "codeCommune": "60106", - "libelleAcheminement": "BREUIL LE SEC", - "nomCommune": "BREUIL LE SEC" + "codePostal": "27370", + "codeCommune": "27579", + "libelleAcheminement": "ST OUEN DE PONTCHEUIL", + "nomCommune": "ST OUEN DE PONTCHEUIL" }, { - "codePostal": "55250", - "codeCommune": "55194", - "libelleAcheminement": "FOUCAUCOURT SUR THABAS", - "nomCommune": "FOUCAUCOURT SUR THABAS" + "codePostal": "15120", + "codeCommune": "15089", + "libelleAcheminement": "LADINHAC", + "nomCommune": "LADINHAC" }, { - "codePostal": "21540", - "codeCommune": "21238", - "libelleAcheminement": "ECHANNAY", - "nomCommune": "ECHANNAY" + "codePostal": "17100", + "codeCommune": "17089", + "libelleAcheminement": "LA CHAPELLE DES POTS", + "nomCommune": "LA CHAPELLE DES POTS" }, { - "codePostal": "22780", - "codeCommune": "22227", - "libelleAcheminement": "PLOUNERIN", - "nomCommune": "PLOUNERIN" + "codePostal": "27370", + "codeCommune": "27638", + "libelleAcheminement": "LE THUIT DE L OISON", + "nomCommune": "LE THUIT DE L OISON" }, { - "codePostal": "60210", - "codeCommune": "60109", - "libelleAcheminement": "BROMBOS", - "nomCommune": "BROMBOS" + "codePostal": "27520", + "codeCommune": "27586", + "libelleAcheminement": "ST PHILBERT SUR BOISSEY", + "nomCommune": "ST PHILBERT SUR BOISSEY" }, { - "codePostal": "55500", - "codeCommune": "55195", - "libelleAcheminement": "FOUCHERES AUX BOIS", - "nomCommune": "FOUCHERES AUX BOIS" + "codePostal": "15590", + "codeCommune": "15096", + "libelleAcheminement": "LASCELLE MANDAILLES", + "nomCommune": "LASCELLE" }, { - "codePostal": "21420", - "codeCommune": "21241", - "libelleAcheminement": "ECHEVRONNE", - "nomCommune": "ECHEVRONNE" + "codePostal": "17230", + "codeCommune": "17091", + "libelleAcheminement": "CHARRON", + "nomCommune": "CHARRON" }, { - "codePostal": "22110", - "codeCommune": "22229", - "libelleAcheminement": "PLOUNEVEZ QUINTIN", - "nomCommune": "PLOUNEVEZ QUINTIN" + "codePostal": "27370", + "codeCommune": "27638", + "libelleAcheminement": "LE THUIT DE L OISON", + "nomCommune": "LE THUIT DE L OISON" }, { - "codePostal": "60480", - "codeCommune": "60113", - "libelleAcheminement": "BUCAMPS", - "nomCommune": "BUCAMPS" + "codePostal": "27370", + "codeCommune": "27593", + "libelleAcheminement": "ST PIERRE DES FLEURS", + "nomCommune": "ST PIERRE DES FLEURS" }, { - "codePostal": "55120", - "codeCommune": "55199", - "libelleAcheminement": "FROIDOS", - "nomCommune": "FROIDOS" + "codePostal": "15500", + "codeCommune": "15098", + "libelleAcheminement": "LAURIE", + "nomCommune": "LAURIE" }, { - "codePostal": "21500", - "codeCommune": "21248", - "libelleAcheminement": "ERINGES", - "nomCommune": "ERINGES" + "codePostal": "17480", + "codeCommune": "17093", + "libelleAcheminement": "LE CHATEAU D OLERON", + "nomCommune": "LE CHATEAU D OLERON" }, { - "codePostal": "22420", - "codeCommune": "22235", - "libelleAcheminement": "PLOUZELAMBRE", - "nomCommune": "PLOUZELAMBRE" + "codePostal": "27370", + "codeCommune": "27654", + "libelleAcheminement": "TOURVILLE LA CAMPAGNE", + "nomCommune": "TOURVILLE LA CAMPAGNE" }, { - "codePostal": "60130", - "codeCommune": "60115", - "libelleAcheminement": "BULLES", - "nomCommune": "BULLES" + "codePostal": "27370", + "codeCommune": "27595", + "libelleAcheminement": "ST PIERRE DU BOSGUERARD", + "nomCommune": "ST PIERRE DU BOSGUERARD" }, { - "codePostal": "55110", - "codeCommune": "55206", - "libelleAcheminement": "GERCOURT ET DRILLANCOURT", - "nomCommune": "GERCOURT ET DRILLANCOURT" + "codePostal": "15300", + "codeCommune": "15100", + "libelleAcheminement": "LAVEISSENET", + "nomCommune": "LAVEISSENET" }, { - "codePostal": "21510", - "codeCommune": "21253", - "libelleAcheminement": "ETALANTE", - "nomCommune": "ETALANTE" + "codePostal": "17480", + "codeCommune": "17093", + "libelleAcheminement": "LE CHATEAU D OLERON", + "nomCommune": "LE CHATEAU D OLERON" }, { - "codePostal": "22310", - "codeCommune": "22238", - "libelleAcheminement": "PLUFUR", - "nomCommune": "PLUFUR" + "codePostal": "27680", + "codeCommune": "27665", + "libelleAcheminement": "TROUVILLE LA HAULE", + "nomCommune": "TROUVILLE LA HAULE" }, { - "codePostal": "60250", - "codeCommune": "60116", - "libelleAcheminement": "BURY", - "nomCommune": "BURY" + "codePostal": "27180", + "codeCommune": "27602", + "libelleAcheminement": "ST SEBASTIEN DE MORSENT", + "nomCommune": "ST SEBASTIEN DE MORSENT" }, { - "codePostal": "55110", - "codeCommune": "55208", - "libelleAcheminement": "GESNES EN ARGONNE", - "nomCommune": "GESNES EN ARGONNE" + "codePostal": "15120", + "codeCommune": "15103", + "libelleAcheminement": "LEUCAMP", + "nomCommune": "LEUCAMP" }, { - "codePostal": "21270", - "codeCommune": "21256", - "libelleAcheminement": "ETEVAUX", - "nomCommune": "ETEVAUX" + "codePostal": "17500", + "codeCommune": "17108", + "libelleAcheminement": "CLAM", + "nomCommune": "CLAM" }, { - "codePostal": "22350", - "codeCommune": "22239", - "libelleAcheminement": "PLUMAUDAN", - "nomCommune": "PLUMAUDAN" + "codePostal": "27350", + "codeCommune": "27669", + "libelleAcheminement": "VALLETOT", + "nomCommune": "VALLETOT" }, { - "codePostal": "60170", - "codeCommune": "60119", - "libelleAcheminement": "CAMBRONNE LES RIBECOURT", - "nomCommune": "CAMBRONNE LES RIBECOURT" + "codePostal": "27130", + "codeCommune": "27610", + "libelleAcheminement": "ST VICTOR SUR AVRE", + "nomCommune": "ST VICTOR SUR AVRE" }, { - "codePostal": "55130", - "codeCommune": "55215", - "libelleAcheminement": "GONDRECOURT LE CHATEAU", - "nomCommune": "GONDRECOURT LE CHATEAU" + "codePostal": "43450", + "codeCommune": "15105", + "libelleAcheminement": "LEYVAUX", + "nomCommune": "LEYVAUX" }, { - "codePostal": "21600", - "codeCommune": "21263", - "libelleAcheminement": "FENAY", - "nomCommune": "FENAY" + "codePostal": "17270", + "codeCommune": "17110", + "libelleAcheminement": "CLERAC", + "nomCommune": "CLERAC" }, { - "codePostal": "22200", - "codeCommune": "22248", - "libelleAcheminement": "POMMERIT LE VICOMTE", - "nomCommune": "POMMERIT LE VICOMTE" + "codePostal": "27430", + "codeCommune": "27673", + "libelleAcheminement": "VATTEVILLE", + "nomCommune": "VATTEVILLE" }, { - "codePostal": "60310", - "codeCommune": "60124", - "libelleAcheminement": "CANDOR", - "nomCommune": "CANDOR" + "codePostal": "27950", + "codeCommune": "27612", + "libelleAcheminement": "ST VINCENT DES BOIS", + "nomCommune": "ST VINCENT DES BOIS" }, { - "codePostal": "55160", - "codeCommune": "55232", - "libelleAcheminement": "HARVILLE", - "nomCommune": "HARVILLE" + "codePostal": "15320", + "codeCommune": "15108", + "libelleAcheminement": "VAL D ARCOMIE", + "nomCommune": "VAL D ARCOMIE" }, { - "codePostal": "21140", - "codeCommune": "21272", - "libelleAcheminement": "LE VAL LARREY", - "nomCommune": "LE VAL LARREY" + "codePostal": "17240", + "codeCommune": "17111", + "libelleAcheminement": "CLION", + "nomCommune": "CLION" }, { - "codePostal": "22140", - "codeCommune": "22254", - "libelleAcheminement": "PRAT", - "nomCommune": "PRAT" + "codePostal": "27390", + "codeCommune": "27680", + "libelleAcheminement": "VERNEUSSES", + "nomCommune": "VERNEUSSES" }, { - "codePostal": "60680", - "codeCommune": "60125", - "libelleAcheminement": "CANLY", - "nomCommune": "CANLY" + "codePostal": "27500", + "codeCommune": "27620", + "libelleAcheminement": "SELLES", + "nomCommune": "SELLES" }, { - "codePostal": "55100", - "codeCommune": "55236", - "libelleAcheminement": "HAUDAINVILLE", - "nomCommune": "HAUDAINVILLE" + "codePostal": "15320", + "codeCommune": "15108", + "libelleAcheminement": "VAL D ARCOMIE", + "nomCommune": "VAL D ARCOMIE" }, { - "codePostal": "21390", - "codeCommune": "21272", - "libelleAcheminement": "LE VAL LARREY", - "nomCommune": "LE VAL LARREY" + "codePostal": "17600", + "codeCommune": "17112", + "libelleAcheminement": "LA CLISSE", + "nomCommune": "LA CLISSE" }, { - "codePostal": "22450", - "codeCommune": "22257", - "libelleAcheminement": "QUEMPERVEN", - "nomCommune": "QUEMPERVEN" + "codePostal": "27680", + "codeCommune": "27686", + "libelleAcheminement": "VIEUX PORT", + "nomCommune": "VIEUX PORT" }, { - "codePostal": "60840", - "codeCommune": "60130", - "libelleAcheminement": "CATENOY", - "nomCommune": "CATENOY" + "codePostal": "27470", + "codeCommune": "27622", + "libelleAcheminement": "SERQUIGNY", + "nomCommune": "SERQUIGNY" }, { - "codePostal": "55130", - "codeCommune": "55247", - "libelleAcheminement": "HORVILLE EN ORNOIS", - "nomCommune": "HORVILLE EN ORNOIS" + "codePostal": "15320", + "codeCommune": "15108", + "libelleAcheminement": "VAL D ARCOMIE", + "nomCommune": "VAL D ARCOMIE" }, { - "codePostal": "21610", - "codeCommune": "21277", - "libelleAcheminement": "FONTAINE FRANCAISE", - "nomCommune": "FONTAINE FRANCAISE" + "codePostal": "17600", + "codeCommune": "17120", + "libelleAcheminement": "CORME ROYAL", + "nomCommune": "CORME ROYAL" }, { - "codePostal": "22460", - "codeCommune": "22260", - "libelleAcheminement": "LE QUILLIO", - "nomCommune": "LE QUILLIO" + "codePostal": "27120", + "codeCommune": "27689", + "libelleAcheminement": "VILLEGATS", + "nomCommune": "VILLEGATS" }, { - "codePostal": "60730", - "codeCommune": "60135", - "libelleAcheminement": "CAUVIGNY", - "nomCommune": "CAUVIGNY" + "codePostal": "27700", + "codeCommune": "27635", + "libelleAcheminement": "LE THUIT", + "nomCommune": "LE THUIT" }, { - "codePostal": "55700", - "codeCommune": "55250", - "libelleAcheminement": "INOR", - "nomCommune": "INOR" + "codePostal": "15190", + "codeCommune": "15132", + "libelleAcheminement": "MONTGRELEIX", + "nomCommune": "MONTGRELEIX" }, { - "codePostal": "21170", - "codeCommune": "21285", - "libelleAcheminement": "FRANXAULT", - "nomCommune": "FRANXAULT" + "codePostal": "17130", + "codeCommune": "17129", + "libelleAcheminement": "COURPIGNAC", + "nomCommune": "COURPIGNAC" }, { - "codePostal": "22450", - "codeCommune": "22264", - "libelleAcheminement": "LA ROCHE JAUDY", - "nomCommune": "LA ROCHE JAUDY" + "codePostal": "27420", + "codeCommune": "27690", + "libelleAcheminement": "VILLERS EN VEXIN", + "nomCommune": "VILLERS EN VEXIN" }, { - "codePostal": "60360", - "codeCommune": "60153", - "libelleAcheminement": "CHOQUEUSE LES BENARDS", - "nomCommune": "CHOQUEUSE LES BENARDS" + "codePostal": "27500", + "codeCommune": "27645", + "libelleAcheminement": "TOCQUEVILLE", + "nomCommune": "TOCQUEVILLE" }, { - "codePostal": "55120", - "codeCommune": "55266", - "libelleAcheminement": "LACHALADE", - "nomCommune": "LACHALADE" + "codePostal": "15120", + "codeCommune": "15134", + "libelleAcheminement": "MONTSALVY", + "nomCommune": "MONTSALVY" }, { - "codePostal": "21540", - "codeCommune": "21310", - "libelleAcheminement": "GROSBOIS EN MONTAGNE", - "nomCommune": "GROSBOIS EN MONTAGNE" + "codePostal": "17470", + "codeCommune": "17138", + "libelleAcheminement": "DAMPIERRE SUR BOUTONNE", + "nomCommune": "DAMPIERRE SUR BOUTONNE" }, { - "codePostal": "22450", - "codeCommune": "22264", - "libelleAcheminement": "LA ROCHE JAUDY", - "nomCommune": "LA ROCHE JAUDY" + "codePostal": "27240", + "codeCommune": "27693", + "libelleAcheminement": "SYLVAINS LES MOULINS", + "nomCommune": "SYLVAINS LES MOULINS" }, { - "codePostal": "60430", - "codeCommune": "60165", - "libelleAcheminement": "LE COUDRAY SUR THELLE", - "nomCommune": "LE COUDRAY SUR THELLE" + "codePostal": "27440", + "codeCommune": "27649", + "libelleAcheminement": "TOUFFREVILLE", + "nomCommune": "TOUFFREVILLE" }, { - "codePostal": "55800", - "codeCommune": "55271", - "libelleAcheminement": "LAHEYCOURT", - "nomCommune": "LAHEYCOURT" + "codePostal": "15230", + "codeCommune": "15139", + "libelleAcheminement": "NARNHAC", + "nomCommune": "NARNHAC" }, { - "codePostal": "21121", - "codeCommune": "21315", - "libelleAcheminement": "HAUTEVILLE LES DIJON", - "nomCommune": "HAUTEVILLE LES DIJON" + "codePostal": "17330", + "codeCommune": "17139", + "libelleAcheminement": "DOEUIL SUR LE MIGNON", + "nomCommune": "DOEUIL SUR LE MIGNON" }, { - "codePostal": "22110", - "codeCommune": "22266", - "libelleAcheminement": "ROSTRENEN", - "nomCommune": "ROSTRENEN" + "codePostal": "27100", + "codeCommune": "27701", + "libelleAcheminement": "VAL DE REUIL", + "nomCommune": "VAL DE REUIL" }, { - "codePostal": "60150", - "codeCommune": "60166", - "libelleAcheminement": "COUDUN", - "nomCommune": "COUDUN" + "codePostal": "27930", + "codeCommune": "27652", + "libelleAcheminement": "TOURNEVILLE", + "nomCommune": "TOURNEVILLE" }, { - "codePostal": "55300", - "codeCommune": "55274", - "libelleAcheminement": "LAMORVILLE", - "nomCommune": "LAMORVILLE" + "codePostal": "15170", + "codeCommune": "15141", + "libelleAcheminement": "NEUSSARGUES EN PINATELLE", + "nomCommune": "NEUSSARGUES EN PINATELLE" }, { - "codePostal": "21110", - "codeCommune": "21320", - "libelleAcheminement": "IZIER", - "nomCommune": "IZIER" + "codePostal": "17550", + "codeCommune": "17140", + "libelleAcheminement": "DOLUS D OLERON", + "nomCommune": "DOLUS D OLERON" }, { - "codePostal": "22110", - "codeCommune": "22266", - "libelleAcheminement": "ROSTRENEN", - "nomCommune": "ROSTRENEN" + "codePostal": "28300", + "codeCommune": "28006", + "libelleAcheminement": "AMILLY", + "nomCommune": "AMILLY" }, { - "codePostal": "60420", - "codeCommune": "60168", - "libelleAcheminement": "COURCELLES EPAYELLES", - "nomCommune": "COURCELLES EPAYELLES" + "codePostal": "27500", + "codeCommune": "27655", + "libelleAcheminement": "TOURVILLE SUR PONT AUDEMER", + "nomCommune": "TOURVILLE SUR PONT AUDEMER" }, { - "codePostal": "55100", - "codeCommune": "55276", - "libelleAcheminement": "LANDRECOURT LEMPIRE", - "nomCommune": "LANDRECOURT LEMPIRE" + "codePostal": "15100", + "codeCommune": "15142", + "libelleAcheminement": "NEUVEGLISE SUR TRUYERE", + "nomCommune": "NEUVEGLISE SUR TRUYERE" }, { - "codePostal": "21250", - "codeCommune": "21322", - "libelleAcheminement": "JALLANGES", - "nomCommune": "JALLANGES" + "codePostal": "17620", + "codeCommune": "17146", + "libelleAcheminement": "ECHILLAIS", + "nomCommune": "ECHILLAIS" }, { - "codePostal": "22250", - "codeCommune": "22267", - "libelleAcheminement": "ROUILLAC", - "nomCommune": "ROUILLAC" + "codePostal": "28480", + "codeCommune": "28010", + "libelleAcheminement": "ARGENVILLIERS", + "nomCommune": "ARGENVILLIERS" }, { - "codePostal": "60580", - "codeCommune": "60172", - "libelleAcheminement": "COYE LA FORET", - "nomCommune": "COYE LA FORET" + "codePostal": "27500", + "codeCommune": "27656", + "libelleAcheminement": "TOUTAINVILLE", + "nomCommune": "TOUTAINVILLE" }, { - "codePostal": "55100", - "codeCommune": "55276", - "libelleAcheminement": "LANDRECOURT LEMPIRE", - "nomCommune": "LANDRECOURT LEMPIRE" + "codePostal": "15290", + "codeCommune": "15144", + "libelleAcheminement": "OMPS", + "nomCommune": "OMPS" }, { - "codePostal": "21460", - "codeCommune": "21324", - "libelleAcheminement": "JEUX LES BARD", - "nomCommune": "JEUX LES BARD" + "codePostal": "17810", + "codeCommune": "17148", + "libelleAcheminement": "ECURAT", + "nomCommune": "ECURAT" }, { - "codePostal": "22400", - "codeCommune": "22273", - "libelleAcheminement": "ST ALBAN", - "nomCommune": "ST ALBAN" + "codePostal": "28220", + "codeCommune": "28012", + "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", + "nomCommune": "COMMUNE NOUVELLE D ARROU" }, { - "codePostal": "60800", - "codeCommune": "60176", - "libelleAcheminement": "CREPY EN VALOIS", - "nomCommune": "CREPY EN VALOIS" + "codePostal": "27130", + "codeCommune": "27679", + "libelleAcheminement": "VERNEUIL D AVRE ET D ITON", + "nomCommune": "VERNEUIL D AVRE ET D ITON" }, { - "codePostal": "55700", - "codeCommune": "55279", - "libelleAcheminement": "LANEUVILLE SUR MEUSE", - "nomCommune": "LANEUVILLE SUR MEUSE" + "codePostal": "15290", + "codeCommune": "15147", + "libelleAcheminement": "PARLAN", + "nomCommune": "PARLAN" }, { - "codePostal": "21340", - "codeCommune": "21327", - "libelleAcheminement": "VAL MONT", - "nomCommune": "VAL MONT" + "codePostal": "17137", + "codeCommune": "17153", + "libelleAcheminement": "ESNANDES", + "nomCommune": "ESNANDES" }, { - "codePostal": "22630", - "codeCommune": "22274", - "libelleAcheminement": "ST ANDRE DES EAUX", - "nomCommune": "ST ANDRE DES EAUX" + "codePostal": "28290", + "codeCommune": "28012", + "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", + "nomCommune": "COMMUNE NOUVELLE D ARROU" }, { - "codePostal": "60350", - "codeCommune": "60188", - "libelleAcheminement": "CUISE LA MOTTE", - "nomCommune": "CUISE LA MOTTE" + "codePostal": "27330", + "codeCommune": "27685", + "libelleAcheminement": "LA VIEILLE LYRE", + "nomCommune": "LA VIEILLE LYRE" }, { - "codePostal": "55250", - "codeCommune": "55295", - "libelleAcheminement": "LISLE EN BARROIS", - "nomCommune": "LISLE EN BARROIS" + "codePostal": "15800", + "codeCommune": "15154", + "libelleAcheminement": "POLMINHAC", + "nomCommune": "POLMINHAC" }, { - "codePostal": "21340", - "codeCommune": "21327", - "libelleAcheminement": "VAL MONT", - "nomCommune": "VAL MONT" + "codePostal": "17170", + "codeCommune": "17158", + "libelleAcheminement": "FERRIERES", + "nomCommune": "FERRIERES" }, { - "codePostal": "22600", - "codeCommune": "22275", - "libelleAcheminement": "ST BARNABE", - "nomCommune": "ST BARNABE" + "codePostal": "28700", + "codeCommune": "28015", + "libelleAcheminement": "AUNEAU BLEURY ST SYMPHORIEN", + "nomCommune": "AUNEAU BLEURY ST SYMPHORIEN" }, { - "codePostal": "60620", - "codeCommune": "60190", - "libelleAcheminement": "CUVERGNON", - "nomCommune": "CUVERGNON" + "codePostal": "27940", + "codeCommune": "27691", + "libelleAcheminement": "VILLERS SUR LE ROULE", + "nomCommune": "VILLERS SUR LE ROULE" }, { - "codePostal": "55300", - "codeCommune": "55303", - "libelleAcheminement": "LOUPMONT", - "nomCommune": "LOUPMONT" + "codePostal": "15130", + "codeCommune": "15156", + "libelleAcheminement": "PRUNET", + "nomCommune": "PRUNET" }, { - "codePostal": "21210", - "codeCommune": "21328", - "libelleAcheminement": "JUILLENAY", - "nomCommune": "JUILLENAY" + "codePostal": "17500", + "codeCommune": "17163", + "libelleAcheminement": "FONTAINES D OZILLAC", + "nomCommune": "FONTAINES D OZILLAC" }, { - "codePostal": "22800", - "codeCommune": "22276", - "libelleAcheminement": "ST BIHY", - "nomCommune": "ST BIHY" + "codePostal": "28310", + "codeCommune": "28026", + "libelleAcheminement": "BAUDREVILLE", + "nomCommune": "BAUDREVILLE" }, { - "codePostal": "60790", - "codeCommune": "60196", - "libelleAcheminement": "LA DRENNE", - "nomCommune": "LA DRENNE" + "codePostal": "27240", + "codeCommune": "27693", + "libelleAcheminement": "SYLVAINS LES MOULINS", + "nomCommune": "SYLVAINS LES MOULINS" }, { - "codePostal": "55100", - "codeCommune": "55307", - "libelleAcheminement": "LOUVEMONT COTE DU POIVRE", - "nomCommune": "LOUVEMONT COTE DU POIVRE" + "codePostal": "15250", + "codeCommune": "15160", + "libelleAcheminement": "REILHAC", + "nomCommune": "REILHAC" }, { - "codePostal": "21130", - "codeCommune": "21331", - "libelleAcheminement": "LABERGEMENT LES AUXONNE", - "nomCommune": "LABERGEMENT LES AUXONNE" + "codePostal": "17260", + "codeCommune": "17172", + "libelleAcheminement": "GEMOZAC", + "nomCommune": "GEMOZAC" }, { - "codePostal": "22800", - "codeCommune": "22277", - "libelleAcheminement": "ST BRANDAN", - "nomCommune": "ST BRANDAN" + "codePostal": "28140", + "codeCommune": "28028", + "libelleAcheminement": "BAZOCHES EN DUNOIS", + "nomCommune": "BAZOCHES EN DUNOIS" }, { - "codePostal": "60790", - "codeCommune": "60196", - "libelleAcheminement": "LA DRENNE", - "nomCommune": "LA DRENNE" + "codePostal": "27110", + "codeCommune": "27698", + "libelleAcheminement": "VITOT", + "nomCommune": "VITOT" }, { - "codePostal": "55300", - "codeCommune": "55312", - "libelleAcheminement": "MAIZEY", - "nomCommune": "MAIZEY" + "codePostal": "15100", + "codeCommune": "15164", + "libelleAcheminement": "ROFFIAC", + "nomCommune": "ROFFIAC" }, { - "codePostal": "21820", - "codeCommune": "21332", - "libelleAcheminement": "LABERGEMENT LES SEURRE", - "nomCommune": "LABERGEMENT LES SEURRE" + "codePostal": "17160", + "codeCommune": "17177", + "libelleAcheminement": "LE GICQ", + "nomCommune": "LE GICQ" }, { - "codePostal": "22600", - "codeCommune": "22279", - "libelleAcheminement": "ST CARADEC", - "nomCommune": "ST CARADEC" + "codePostal": "28140", + "codeCommune": "28029", + "libelleAcheminement": "BAZOCHES LES HAUTES", + "nomCommune": "BAZOCHES LES HAUTES" }, { - "codePostal": "60530", - "codeCommune": "60197", - "libelleAcheminement": "DIEUDONNE", - "nomCommune": "DIEUDONNE" + "codePostal": "27520", + "codeCommune": "27699", + "libelleAcheminement": "VOISCREVILLE", + "nomCommune": "VOISCREVILLE" }, { - "codePostal": "55500", - "codeCommune": "55326", - "libelleAcheminement": "MAULAN", - "nomCommune": "MAULAN" + "codePostal": "15240", + "codeCommune": "15169", + "libelleAcheminement": "SAIGNES", + "nomCommune": "SAIGNES" }, { - "codePostal": "21210", - "codeCommune": "21335", - "libelleAcheminement": "LACOUR D ARCENAY", - "nomCommune": "LACOUR D ARCENAY" + "codePostal": "17100", + "codeCommune": "17179", + "libelleAcheminement": "LES GONDS", + "nomCommune": "LES GONDS" }, { - "codePostal": "22210", - "codeCommune": "22288", - "libelleAcheminement": "ST ETIENNE DU GUE DE L ISLE", - "nomCommune": "ST ETIENNE DU GUE DE L ISLE" + "codePostal": "28150", + "codeCommune": "28032", + "libelleAcheminement": "BEAUVILLIERS", + "nomCommune": "BEAUVILLIERS" }, { - "codePostal": "60530", - "codeCommune": "60212", - "libelleAcheminement": "ERCUIS", - "nomCommune": "ERCUIS" + "codePostal": "27370", + "codeCommune": "27700", + "libelleAcheminement": "VRAIVILLE", + "nomCommune": "VRAIVILLE" }, { - "codePostal": "55260", - "codeCommune": "55333", - "libelleAcheminement": "MENIL AUX BOIS", - "nomCommune": "MENIL AUX BOIS" + "codePostal": "15190", + "codeCommune": "15170", + "libelleAcheminement": "ST AMANDIN", + "nomCommune": "ST AMANDIN" }, { - "codePostal": "21330", - "codeCommune": "21343", - "libelleAcheminement": "LARREY", - "nomCommune": "LARREY" + "codePostal": "17490", + "codeCommune": "17180", + "libelleAcheminement": "GOURVILLETTE", + "nomCommune": "GOURVILLETTE" }, { - "codePostal": "22530", - "codeCommune": "22295", - "libelleAcheminement": "ST GILLES VIEUX MARCHE", - "nomCommune": "ST GILLES VIEUX MARCHE" + "codePostal": "28240", + "codeCommune": "28033", + "libelleAcheminement": "BELHOMERT GUEHOUVILLE", + "nomCommune": "BELHOMERT GUEHOUVILLE" }, { - "codePostal": "60950", - "codeCommune": "60213", - "libelleAcheminement": "ERMENONVILLE", - "nomCommune": "ERMENONVILLE" + "codePostal": "28410", + "codeCommune": "28001", + "libelleAcheminement": "ABONDANT", + "nomCommune": "ABONDANT" }, { - "codePostal": "55800", - "codeCommune": "55340", - "libelleAcheminement": "MOGNEVILLE", - "nomCommune": "MOGNEVILLE" + "codePostal": "15140", + "codeCommune": "15176", + "libelleAcheminement": "ST CHAMANT", + "nomCommune": "ST CHAMANT" }, { - "codePostal": "21700", - "codeCommune": "21368", - "libelleAcheminement": "MAGNY LES VILLERS", - "nomCommune": "MAGNY LES VILLERS" + "codePostal": "17140", + "codeCommune": "17200", + "libelleAcheminement": "LAGORD", + "nomCommune": "LAGORD" }, { - "codePostal": "22750", - "codeCommune": "22302", - "libelleAcheminement": "ST JACUT DE LA MER", - "nomCommune": "ST JACUT DE LA MER" + "codePostal": "28130", + "codeCommune": "28052", + "libelleAcheminement": "BOUGLAINVAL", + "nomCommune": "BOUGLAINVAL" }, { - "codePostal": "60130", - "codeCommune": "60216", - "libelleAcheminement": "ERQUINVILLERS", - "nomCommune": "ERQUINVILLERS" + "codePostal": "28800", + "codeCommune": "28005", + "libelleAcheminement": "ALLUYES", + "nomCommune": "ALLUYES" }, { - "codePostal": "55150", - "codeCommune": "55341", - "libelleAcheminement": "MOIREY FLABAS CREPION", - "nomCommune": "MOIREY FLABAS CREPION" + "codePostal": "15600", + "codeCommune": "15181", + "libelleAcheminement": "ST CONSTANT FOURNOULES", + "nomCommune": "ST CONSTANT FOURNOULES" }, { - "codePostal": "21310", - "codeCommune": "21369", - "libelleAcheminement": "MAGNY ST MEDARD", - "nomCommune": "MAGNY ST MEDARD" + "codePostal": "17170", + "codeCommune": "17201", + "libelleAcheminement": "LA LAIGNE", + "nomCommune": "LA LAIGNE" }, { - "codePostal": "22940", - "codeCommune": "22307", - "libelleAcheminement": "ST JULIEN", - "nomCommune": "ST JULIEN" + "codePostal": "28170", + "codeCommune": "28053", + "libelleAcheminement": "LE BOULLAY LES DEUX EGLISES", + "nomCommune": "LE BOULLAY LES DEUX EGLISES" }, { - "codePostal": "60420", - "codeCommune": "60232", - "libelleAcheminement": "FERRIERES", - "nomCommune": "FERRIERES" + "codePostal": "28170", + "codeCommune": "28008", + "libelleAcheminement": "ARDELLES", + "nomCommune": "ARDELLES" }, { - "codePostal": "55140", - "codeCommune": "55344", - "libelleAcheminement": "MONTBRAS", - "nomCommune": "MONTBRAS" + "codePostal": "15600", + "codeCommune": "15181", + "libelleAcheminement": "ST CONSTANT FOURNOULES", + "nomCommune": "ST CONSTANT FOURNOULES" }, { - "codePostal": "21110", - "codeCommune": "21370", - "libelleAcheminement": "MAGNY SUR TILLE", - "nomCommune": "MAGNY SUR TILLE" + "codePostal": "17380", + "codeCommune": "17202", + "libelleAcheminement": "LANDES", + "nomCommune": "LANDES" }, { - "codePostal": "22630", - "codeCommune": "22308", - "libelleAcheminement": "ST JUVAT", - "nomCommune": "ST JUVAT" + "codePostal": "28210", + "codeCommune": "28055", + "libelleAcheminement": "LE BOULLAY THIERRY", + "nomCommune": "LE BOULLAY THIERRY" }, { - "codePostal": "60360", - "codeCommune": "60240", - "libelleAcheminement": "FONTAINE BONNELEAU", - "nomCommune": "FONTAINE BONNELEAU" + "codePostal": "28700", + "codeCommune": "28009", + "libelleAcheminement": "ARDELU", + "nomCommune": "ARDELU" }, { - "codePostal": "55110", - "codeCommune": "55345", - "libelleAcheminement": "MONT DEVANT SASSEY", - "nomCommune": "MONT DEVANT SASSEY" + "codePostal": "15140", + "codeCommune": "15186", + "libelleAcheminement": "STE EULALIE", + "nomCommune": "STE EULALIE" }, { - "codePostal": "21120", - "codeCommune": "21385", - "libelleAcheminement": "MAREY SUR TILLE", - "nomCommune": "MAREY SUR TILLE" + "codePostal": "17520", + "codeCommune": "17209", + "libelleAcheminement": "LONZAC", + "nomCommune": "LONZAC" }, { - "codePostal": "22140", - "codeCommune": "22310", - "libelleAcheminement": "ST LAURENT", - "nomCommune": "ST LAURENT" + "codePostal": "28410", + "codeCommune": "28056", + "libelleAcheminement": "BOUTIGNY PROUAIS", + "nomCommune": "BOUTIGNY PROUAIS" }, { - "codePostal": "60190", - "codeCommune": "60247", - "libelleAcheminement": "FOUILLEUSE", - "nomCommune": "FOUILLEUSE" + "codePostal": "28290", + "codeCommune": "28012", + "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", + "nomCommune": "COMMUNE NOUVELLE D ARROU" }, { - "codePostal": "55160", - "codeCommune": "55363", - "libelleAcheminement": "MOULOTTE", - "nomCommune": "MOULOTTE" + "codePostal": "15100", + "codeCommune": "15188", + "libelleAcheminement": "ST GEORGES", + "nomCommune": "ST GEORGES" }, { - "codePostal": "21150", - "codeCommune": "21386", - "libelleAcheminement": "MARIGNY LE CAHOUET", - "nomCommune": "MARIGNY LE CAHOUET" + "codePostal": "17240", + "codeCommune": "17210", + "libelleAcheminement": "LORIGNAC", + "nomCommune": "LORIGNAC" }, { - "codePostal": "22130", - "codeCommune": "22311", - "libelleAcheminement": "ST LORMEL", - "nomCommune": "ST LORMEL" + "codePostal": "28800", + "codeCommune": "28065", + "libelleAcheminement": "BULLAINVILLE", + "nomCommune": "BULLAINVILLE" }, { - "codePostal": "60000", - "codeCommune": "60250", - "libelleAcheminement": "FOUQUENIES", - "nomCommune": "FOUQUENIES" + "codePostal": "28500", + "codeCommune": "28014", + "libelleAcheminement": "AUNAY SOUS CRECY", + "nomCommune": "AUNAY SOUS CRECY" }, { - "codePostal": "55000", - "codeCommune": "55366", - "libelleAcheminement": "VAL D ORNAIN", - "nomCommune": "VAL D ORNAIN" + "codePostal": "15150", + "codeCommune": "15189", + "libelleAcheminement": "ST GERONS", + "nomCommune": "ST GERONS" }, { - "codePostal": "21140", - "codeCommune": "21394", - "libelleAcheminement": "MASSINGY LES SEMUR", - "nomCommune": "MASSINGY LES SEMUR" + "codePostal": "17490", + "codeCommune": "17217", + "libelleAcheminement": "MACQUEVILLE", + "nomCommune": "MACQUEVILLE" }, { - "codePostal": "22600", - "codeCommune": "22314", - "libelleAcheminement": "ST MAUDAN", - "nomCommune": "ST MAUDAN" + "codePostal": "28400", + "codeCommune": "28072", + "libelleAcheminement": "CHAMPROND EN PERCHET", + "nomCommune": "CHAMPROND EN PERCHET" }, { - "codePostal": "60640", - "codeCommune": "60255", - "libelleAcheminement": "FRENICHES", - "nomCommune": "FRENICHES" + "codePostal": "28330", + "codeCommune": "28016", + "libelleAcheminement": "LES AUTELS VILLEVILLON", + "nomCommune": "LES AUTELS VILLEVILLON" }, { - "codePostal": "55000", - "codeCommune": "55366", - "libelleAcheminement": "VAL D ORNAIN", - "nomCommune": "VAL D ORNAIN" + "codePostal": "15400", + "codeCommune": "15190", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "21190", - "codeCommune": "21405", - "libelleAcheminement": "MERCEUIL", - "nomCommune": "MERCEUIL" + "codePostal": "17230", + "codeCommune": "17218", + "libelleAcheminement": "MARANS", + "nomCommune": "MARANS" }, { - "codePostal": "22550", - "codeCommune": "22323", - "libelleAcheminement": "ST POTAN", - "nomCommune": "ST POTAN" + "codePostal": "28700", + "codeCommune": "28073", + "libelleAcheminement": "CHAMPSERU", + "nomCommune": "CHAMPSERU" }, { - "codePostal": "60310", - "codeCommune": "60258", - "libelleAcheminement": "FRESNIERES", - "nomCommune": "FRESNIERES" + "codePostal": "28330", + "codeCommune": "28018", + "libelleAcheminement": "AUTHON DU PERCHE", + "nomCommune": "AUTHON DU PERCHE" }, { - "codePostal": "55230", - "codeCommune": "55367", - "libelleAcheminement": "MUZERAY", - "nomCommune": "MUZERAY" + "codePostal": "15250", + "codeCommune": "15204", + "libelleAcheminement": "ST PAUL DES LANDES", + "nomCommune": "ST PAUL DES LANDES" }, { - "codePostal": "21540", - "codeCommune": "21406", - "libelleAcheminement": "MESMONT", - "nomCommune": "MESMONT" + "codePostal": "17320", + "codeCommune": "17219", + "libelleAcheminement": "MARENNES HIERS BROUAGE", + "nomCommune": "MARENNES HIERS BROUAGE" }, { - "codePostal": "22410", - "codeCommune": "22325", - "libelleAcheminement": "ST QUAY PORTRIEUX", - "nomCommune": "ST QUAY PORTRIEUX" + "codePostal": "28120", + "codeCommune": "28081", + "libelleAcheminement": "CHARONVILLE", + "nomCommune": "CHARONVILLE" }, { - "codePostal": "60000", - "codeCommune": "60264", - "libelleAcheminement": "FROCOURT", - "nomCommune": "FROCOURT" + "codePostal": "28140", + "codeCommune": "28019", + "libelleAcheminement": "BAIGNEAUX", + "nomCommune": "BAIGNEAUX" }, { - "codePostal": "55000", - "codeCommune": "55369", - "libelleAcheminement": "NAIVES ROSIERES", - "nomCommune": "NAIVES ROSIERES" + "codePostal": "15350", + "codeCommune": "15206", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "21340", - "codeCommune": "21420", - "libelleAcheminement": "MOLINOT", - "nomCommune": "MOLINOT" + "codePostal": "17160", + "codeCommune": "17224", + "libelleAcheminement": "MATHA", + "nomCommune": "MATHA" }, { - "codePostal": "22270", - "codeCommune": "22326", - "libelleAcheminement": "ST RIEUL", - "nomCommune": "ST RIEUL" + "codePostal": "28200", + "codeCommune": "28088", + "libelleAcheminement": "CHATEAUDUN", + "nomCommune": "CHATEAUDUN" }, { - "codePostal": "60360", - "codeCommune": "60267", - "libelleAcheminement": "LE GALLET", - "nomCommune": "LE GALLET" + "codePostal": "28320", + "codeCommune": "28023", + "libelleAcheminement": "BAILLEAU ARMENONVILLE", + "nomCommune": "BAILLEAU ARMENONVILLE" }, { - "codePostal": "55500", - "codeCommune": "55370", - "libelleAcheminement": "NAIX AUX FORGES", - "nomCommune": "NAIX AUX FORGES" + "codePostal": "15380", + "codeCommune": "15218", + "libelleAcheminement": "ST VINCENT DE SALERS", + "nomCommune": "ST VINCENT DE SALERS" }, { - "codePostal": "21250", - "codeCommune": "21424", - "libelleAcheminement": "MONTAGNY LES SEURRE", - "nomCommune": "MONTAGNY LES SEURRE" + "codePostal": "17210", + "codeCommune": "17229", + "libelleAcheminement": "MERIGNAC", + "nomCommune": "MERIGNAC" }, { - "codePostal": "22510", - "codeCommune": "22332", - "libelleAcheminement": "ST TRIMOEL", - "nomCommune": "ST TRIMOEL" + "codePostal": "28700", + "codeCommune": "28092", + "libelleAcheminement": "CHATENAY", + "nomCommune": "CHATENAY" }, { - "codePostal": "60000", - "codeCommune": "60277", - "libelleAcheminement": "GOINCOURT", - "nomCommune": "GOINCOURT" + "codePostal": "28630", + "codeCommune": "28024", + "libelleAcheminement": "BARJOUVILLE", + "nomCommune": "BARJOUVILLE" }, { - "codePostal": "55500", - "codeCommune": "55372", - "libelleAcheminement": "NANCOIS SUR ORNAIN", - "nomCommune": "NANCOIS SUR ORNAIN" + "codePostal": "15300", + "codeCommune": "15225", + "libelleAcheminement": "SEGUR LES VILLAS", + "nomCommune": "SEGUR LES VILLAS" }, { - "codePostal": "21500", - "codeCommune": "21429", - "libelleAcheminement": "MONTIGNY MONTFORT", - "nomCommune": "MONTIGNY MONTFORT" + "codePostal": "17330", + "codeCommune": "17234", + "libelleAcheminement": "MIGRE", + "nomCommune": "MIGRE" }, { - "codePostal": "22570", - "codeCommune": "22334", - "libelleAcheminement": "ST IGEAUX", - "nomCommune": "ST IGEAUX" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "60400", - "codeCommune": "60287", - "libelleAcheminement": "GRANDRU", - "nomCommune": "GRANDRU" + "codePostal": "28270", + "codeCommune": "28030", + "libelleAcheminement": "BEAUCHE", + "nomCommune": "BEAUCHE" }, { - "codePostal": "55120", - "codeCommune": "55383", - "libelleAcheminement": "NEUVILLY EN ARGONNE", - "nomCommune": "NEUVILLY EN ARGONNE" + "codePostal": "15200", + "codeCommune": "15230", + "libelleAcheminement": "SOURNIAC", + "nomCommune": "SOURNIAC" }, { - "codePostal": "21390", - "codeCommune": "21430", - "libelleAcheminement": "MONTIGNY ST BARTHELEMY", - "nomCommune": "MONTIGNY ST BARTHELEMY" + "codePostal": "17150", + "codeCommune": "17236", + "libelleAcheminement": "MIRAMBEAU", + "nomCommune": "MIRAMBEAU" }, { - "codePostal": "22720", - "codeCommune": "22335", - "libelleAcheminement": "SENVEN LEHART", - "nomCommune": "SENVEN LEHART" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "60640", - "codeCommune": "60291", - "libelleAcheminement": "GUISCARD", - "nomCommune": "GUISCARD" + "codePostal": "28120", + "codeCommune": "28041", + "libelleAcheminement": "BLANDAINVILLE", + "nomCommune": "BLANDAINVILLE" }, { - "codePostal": "55120", - "codeCommune": "55385", - "libelleAcheminement": "NIXEVILLE BLERCOURT", - "nomCommune": "NIXEVILLE BLERCOURT" + "codePostal": "15100", + "codeCommune": "15235", + "libelleAcheminement": "LES TERNES", + "nomCommune": "LES TERNES" }, { - "codePostal": "21270", - "codeCommune": "21437", - "libelleAcheminement": "MONTMANCON", - "nomCommune": "MONTMANCON" + "codePostal": "17113", + "codeCommune": "17247", + "libelleAcheminement": "MORNAC SUR SEUDRE", + "nomCommune": "MORNAC SUR SEUDRE" }, { - "codePostal": "22560", - "codeCommune": "22343", - "libelleAcheminement": "TREBEURDEN", - "nomCommune": "TREBEURDEN" + "codePostal": "28480", + "codeCommune": "28105", + "libelleAcheminement": "COMBRES", + "nomCommune": "COMBRES" }, { - "codePostal": "60310", - "codeCommune": "60292", - "libelleAcheminement": "GURY", - "nomCommune": "GURY" + "codePostal": "28150", + "codeCommune": "28049", + "libelleAcheminement": "BONCE", + "nomCommune": "BONCE" }, { - "codePostal": "55210", - "codeCommune": "55386", - "libelleAcheminement": "NONSARD LAMARCHE", - "nomCommune": "NONSARD LAMARCHE" + "codePostal": "15600", + "codeCommune": "15242", + "libelleAcheminement": "LE TRIOULOU", + "nomCommune": "LE TRIOULOU" }, { - "codePostal": "21290", - "codeCommune": "21438", - "libelleAcheminement": "MONTMOYEN", - "nomCommune": "MONTMOYEN" + "codePostal": "17430", + "codeCommune": "17253", + "libelleAcheminement": "MURON", + "nomCommune": "MURON" }, { - "codePostal": "22510", - "codeCommune": "22345", - "libelleAcheminement": "TREBRY", - "nomCommune": "TREBRY" + "codePostal": "28140", + "codeCommune": "28114", + "libelleAcheminement": "COURBEHAYE", + "nomCommune": "COURBEHAYE" }, { - "codePostal": "60240", - "codeCommune": "60293", - "libelleAcheminement": "HADANCOURT LE HAUT CLOCHER", - "nomCommune": "HADANCOURT LE HAUT CLOCHER" + "codePostal": "28210", + "codeCommune": "28058", + "libelleAcheminement": "BRECHAMPS", + "nomCommune": "BRECHAMPS" }, { - "codePostal": "55800", - "codeCommune": "55388", - "libelleAcheminement": "NOYERS AUZECOURT", - "nomCommune": "NOYERS AUZECOURT" + "codePostal": "15100", + "codeCommune": "15245", + "libelleAcheminement": "VABRES", + "nomCommune": "VABRES" }, { - "codePostal": "21540", - "codeCommune": "21439", - "libelleAcheminement": "MONTOILLOT", - "nomCommune": "MONTOILLOT" + "codePostal": "17380", + "codeCommune": "17254", + "libelleAcheminement": "NACHAMPS", + "nomCommune": "NACHAMPS" }, { - "codePostal": "22300", - "codeCommune": "22349", - "libelleAcheminement": "TREDREZ LOCQUEMEAU", - "nomCommune": "TREDREZ LOCQUEMEAU" + "codePostal": "28190", + "codeCommune": "28116", + "libelleAcheminement": "COURVILLE SUR EURE", + "nomCommune": "COURVILLE SUR EURE" }, { - "codePostal": "60380", - "codeCommune": "60306", - "libelleAcheminement": "HECOURT", - "nomCommune": "HECOURT" + "codePostal": "28300", + "codeCommune": "28070", + "libelleAcheminement": "CHAMPHOL", + "nomCommune": "CHAMPHOL" }, { - "codePostal": "55800", - "codeCommune": "55388", - "libelleAcheminement": "NOYERS AUZECOURT", - "nomCommune": "NOYERS AUZECOURT" + "codePostal": "15170", + "codeCommune": "15247", + "libelleAcheminement": "VALJOUZE", + "nomCommune": "VALJOUZE" }, { - "codePostal": "21150", - "codeCommune": "21448", - "libelleAcheminement": "MUSSY LA FOSSE", - "nomCommune": "MUSSY LA FOSSE" + "codePostal": "17600", + "codeCommune": "17255", + "libelleAcheminement": "NANCRAS", + "nomCommune": "NANCRAS" }, { - "codePostal": "22310", - "codeCommune": "22350", - "libelleAcheminement": "TREDUDER", - "nomCommune": "TREDUDER" + "codePostal": "28140", + "codeCommune": "28121", + "libelleAcheminement": "DAMBRON", + "nomCommune": "DAMBRON" }, { - "codePostal": "60380", - "codeCommune": "60312", - "libelleAcheminement": "HERICOURT SUR THERAIN", - "nomCommune": "HERICOURT SUR THERAIN" + "codePostal": "28290", + "codeCommune": "28079", + "libelleAcheminement": "CHAPELLE ROYALE", + "nomCommune": "CHAPELLE ROYALE" }, { - "codePostal": "55160", - "codeCommune": "55399", - "libelleAcheminement": "PAREID", - "nomCommune": "PAREID" + "codePostal": "15240", + "codeCommune": "15250", + "libelleAcheminement": "VEBRET", + "nomCommune": "VEBRET" }, { - "codePostal": "21330", - "codeCommune": "21451", - "libelleAcheminement": "NESLE ET MASSOULT", - "nomCommune": "NESLE ET MASSOULT" + "codePostal": "17770", + "codeCommune": "17256", + "libelleAcheminement": "NANTILLE", + "nomCommune": "NANTILLE" }, { - "codePostal": "22290", - "codeCommune": "22361", - "libelleAcheminement": "TREGUIDEL", - "nomCommune": "TREGUIDEL" + "codePostal": "28100", + "codeCommune": "28134", + "libelleAcheminement": "DREUX", + "nomCommune": "DREUX" }, { - "codePostal": "60430", - "codeCommune": "60316", - "libelleAcheminement": "HODENC L EVEQUE", - "nomCommune": "HODENC L EVEQUE" + "codePostal": "28500", + "codeCommune": "28082", + "libelleAcheminement": "CHARPONT", + "nomCommune": "CHARPONT" }, { - "codePostal": "55400", - "codeCommune": "55400", - "libelleAcheminement": "PARFONDRUPT", - "nomCommune": "PARFONDRUPT" + "codePostal": "15120", + "codeCommune": "15260", + "libelleAcheminement": "VIEILLEVIE", + "nomCommune": "VIEILLEVIE" }, { - "codePostal": "21800", - "codeCommune": "21452", - "libelleAcheminement": "NEUILLY CRIMOLOIS", - "nomCommune": "NEUILLY CRIMOLOIS" + "codePostal": "17700", + "codeCommune": "17293", + "libelleAcheminement": "PUYRAVAULT", + "nomCommune": "PUYRAVAULT" }, { - "codePostal": "22290", - "codeCommune": "22370", - "libelleAcheminement": "TREMEVEN", - "nomCommune": "TREMEVEN" + "codePostal": "28270", + "codeCommune": "28143", + "libelleAcheminement": "ESCORPAIN", + "nomCommune": "ESCORPAIN" }, { - "codePostal": "60390", - "codeCommune": "60319", - "libelleAcheminement": "LA HOUSSOYE", - "nomCommune": "LA HOUSSOYE" + "codePostal": "28300", + "codeCommune": "28102", + "libelleAcheminement": "CLEVILLIERS", + "nomCommune": "CLEVILLIERS" }, { - "codePostal": "55150", - "codeCommune": "55403", - "libelleAcheminement": "PEUVILLERS", - "nomCommune": "PEUVILLERS" + "codePostal": "15300", + "codeCommune": "15263", + "libelleAcheminement": "VIRARGUES", + "nomCommune": "VIRARGUES" }, { - "codePostal": "21330", - "codeCommune": "21454", - "libelleAcheminement": "NICEY", - "nomCommune": "NICEY" + "codePostal": "17380", + "codeCommune": "17294", + "libelleAcheminement": "PUYROLLAND", + "nomCommune": "PUYROLLAND" }, { - "codePostal": "22230", - "codeCommune": "22371", - "libelleAcheminement": "TREMOREL", - "nomCommune": "TREMOREL" + "codePostal": "28340", + "codeCommune": "28149", + "libelleAcheminement": "LA FERTE VIDAME", + "nomCommune": "LA FERTE VIDAME" }, { - "codePostal": "60240", - "codeCommune": "60322", - "libelleAcheminement": "JAMERICOURT", - "nomCommune": "JAMERICOURT" + "codePostal": "28300", + "codeCommune": "28104", + "libelleAcheminement": "COLTAINVILLE", + "nomCommune": "COLTAINVILLE" }, { - "codePostal": "55230", - "codeCommune": "55405", - "libelleAcheminement": "PILLON", - "nomCommune": "PILLON" + "codePostal": "15140", + "codeCommune": "15269", + "libelleAcheminement": "BESSE", + "nomCommune": "BESSE" }, { - "codePostal": "21400", - "codeCommune": "21455", - "libelleAcheminement": "NOD SUR SEINE", - "nomCommune": "NOD SUR SEINE" + "codePostal": "17000", + "codeCommune": "17300", + "libelleAcheminement": "LA ROCHELLE", + "nomCommune": "LA ROCHELLE" }, { - "codePostal": "22600", - "codeCommune": "22376", - "libelleAcheminement": "TREVE", - "nomCommune": "TREVE" + "codePostal": "28140", + "codeCommune": "28157", + "libelleAcheminement": "FONTENAY SUR CONIE", + "nomCommune": "FONTENAY SUR CONIE" }, { - "codePostal": "60350", - "codeCommune": "60324", - "libelleAcheminement": "JAULZY", - "nomCommune": "JAULZY" + "codePostal": "28200", + "codeCommune": "28106", + "libelleAcheminement": "CONIE MOLITARD", + "nomCommune": "CONIE MOLITARD" }, { - "codePostal": "55800", - "codeCommune": "55414", - "libelleAcheminement": "RANCOURT SUR ORNAIN", - "nomCommune": "RANCOURT SUR ORNAIN" + "codePostal": "16700", + "codeCommune": "16002", + "libelleAcheminement": "LES ADJOTS", + "nomCommune": "LES ADJOTS" }, { - "codePostal": "21500", - "codeCommune": "21456", - "libelleAcheminement": "NOGENT LES MONTBARD", - "nomCommune": "NOGENT LES MONTBARD" + "codePostal": "17170", + "codeCommune": "17303", + "libelleAcheminement": "LA RONDE", + "nomCommune": "LA RONDE" }, { - "codePostal": "22290", - "codeCommune": "22378", - "libelleAcheminement": "TREVEREC", - "nomCommune": "TREVEREC" + "codePostal": "28300", + "codeCommune": "28163", + "libelleAcheminement": "FRESNAY LE GILMERT", + "nomCommune": "FRESNAY LE GILMERT" }, { - "codePostal": "60310", - "codeCommune": "60329", - "libelleAcheminement": "LABERLIERE", - "nomCommune": "LABERLIERE" + "codePostal": "28140", + "codeCommune": "28108", + "libelleAcheminement": "CORMAINVILLE", + "nomCommune": "CORMAINVILLE" }, { - "codePostal": "55140", - "codeCommune": "55434", - "libelleAcheminement": "RIGNY ST MARTIN", - "nomCommune": "RIGNY ST MARTIN" + "codePostal": "16140", + "codeCommune": "16005", + "libelleAcheminement": "AIGRE", + "nomCommune": "AIGRE" }, { - "codePostal": "21390", - "codeCommune": "21457", - "libelleAcheminement": "NOIDAN", - "nomCommune": "NOIDAN" + "codePostal": "17200", + "codeCommune": "17306", + "libelleAcheminement": "ROYAN", + "nomCommune": "ROYAN" }, { - "codePostal": "22450", - "codeCommune": "22383", - "libelleAcheminement": "TROGUERY", - "nomCommune": "TROGUERY" + "codePostal": "28310", + "codeCommune": "28164", + "libelleAcheminement": "FRESNAY L EVEQUE", + "nomCommune": "FRESNAY L EVEQUE" }, { - "codePostal": "60380", - "codeCommune": "60335", - "libelleAcheminement": "LACHAPELLE SOUS GERBEROY", - "nomCommune": "LACHAPELLE SOUS GERBEROY" + "codePostal": "28480", + "codeCommune": "28119", + "libelleAcheminement": "LA CROIX DU PERCHE", + "nomCommune": "LA CROIX DU PERCHE" }, { - "codePostal": "55160", - "codeCommune": "55439", - "libelleAcheminement": "RONVAUX", - "nomCommune": "RONVAUX" + "codePostal": "16490", + "codeCommune": "16007", + "libelleAcheminement": "ALLOUE", + "nomCommune": "ALLOUE" }, { - "codePostal": "21400", - "codeCommune": "21460", - "libelleAcheminement": "NOIRON SUR SEINE", - "nomCommune": "NOIRON SUR SEINE" + "codePostal": "17260", + "codeCommune": "17310", + "libelleAcheminement": "ST ANDRE DE LIDON", + "nomCommune": "ST ANDRE DE LIDON" }, { - "codePostal": "22800", - "codeCommune": "22386", - "libelleAcheminement": "LE VIEUX BOURG", - "nomCommune": "LE VIEUX BOURG" + "codePostal": "28700", + "codeCommune": "28169", + "libelleAcheminement": "GARANCIERES EN BEAUCE", + "nomCommune": "GARANCIERES EN BEAUCE" }, { - "codePostal": "60260", - "codeCommune": "60346", - "libelleAcheminement": "LAMORLAYE", - "nomCommune": "LAMORLAYE" + "codePostal": "28270", + "codeCommune": "28120", + "libelleAcheminement": "CRUCEY VILLAGES", + "nomCommune": "CRUCEY VILLAGES" }, { - "codePostal": "55400", - "codeCommune": "55443", - "libelleAcheminement": "ROUVRES EN WOEVRE", - "nomCommune": "ROUVRES EN WOEVRE" + "codePostal": "16000", + "codeCommune": "16015", + "libelleAcheminement": "ANGOULEME", + "nomCommune": "ANGOULEME" }, { - "codePostal": "21340", - "codeCommune": "21461", - "libelleAcheminement": "NOLAY", - "nomCommune": "NOLAY" + "codePostal": "17570", + "codeCommune": "17311", + "libelleAcheminement": "ST AUGUSTIN", + "nomCommune": "ST AUGUSTIN" }, { - "codePostal": "22420", - "codeCommune": "22387", - "libelleAcheminement": "LE VIEUX MARCHE", - "nomCommune": "LE VIEUX MARCHE" + "codePostal": "28500", + "codeCommune": "28171", + "libelleAcheminement": "GARNAY", + "nomCommune": "GARNAY" }, { - "codePostal": "60220", - "codeCommune": "60347", - "libelleAcheminement": "LANNOY CUILLERE", - "nomCommune": "LANNOY CUILLERE" + "codePostal": "28360", + "codeCommune": "28122", + "libelleAcheminement": "DAMMARIE", + "nomCommune": "DAMMARIE" }, { - "codePostal": "55230", - "codeCommune": "55445", - "libelleAcheminement": "ROUVROIS SUR OTHAIN", - "nomCommune": "ROUVROIS SUR OTHAIN" + "codePostal": "16460", + "codeCommune": "16023", + "libelleAcheminement": "AUNAC SUR CHARENTE", + "nomCommune": "AUNAC SUR CHARENTE" }, { - "codePostal": "21340", - "codeCommune": "21461", - "libelleAcheminement": "NOLAY", - "nomCommune": "NOLAY" + "codePostal": "17770", + "codeCommune": "17313", + "libelleAcheminement": "ST BRIS DES BOIS", + "nomCommune": "ST BRIS DES BOIS" }, { - "codePostal": "22120", - "codeCommune": "22389", - "libelleAcheminement": "YFFINIAC", - "nomCommune": "YFFINIAC" + "codePostal": "28320", + "codeCommune": "28172", + "libelleAcheminement": "GAS", + "nomCommune": "GAS" }, { - "codePostal": "60240", - "codeCommune": "60352", - "libelleAcheminement": "LATTAINVILLE", - "nomCommune": "LATTAINVILLE" + "codePostal": "28350", + "codeCommune": "28124", + "libelleAcheminement": "DAMPIERRE SUR AVRE", + "nomCommune": "DAMPIERRE SUR AVRE" }, { - "codePostal": "55220", - "codeCommune": "55453", - "libelleAcheminement": "ST ANDRE EN BARROIS", - "nomCommune": "ST ANDRE EN BARROIS" + "codePostal": "16560", + "codeCommune": "16024", + "libelleAcheminement": "AUSSAC VADALLE", + "nomCommune": "AUSSAC VADALLE" }, { - "codePostal": "21450", - "codeCommune": "21466", - "libelleAcheminement": "OIGNY", - "nomCommune": "OIGNY" + "codePostal": "17590", + "codeCommune": "17318", + "libelleAcheminement": "ST CLEMENT DES BALEINES", + "nomCommune": "ST CLEMENT DES BALEINES" }, { - "codePostal": "23210", - "codeCommune": "23006", - "libelleAcheminement": "ARRENES", - "nomCommune": "ARRENES" + "codePostal": "28160", + "codeCommune": "28182", + "libelleAcheminement": "GOHORY", + "nomCommune": "GOHORY" }, { - "codePostal": "60510", - "codeCommune": "60355", - "libelleAcheminement": "LAVERSINES", - "nomCommune": "LAVERSINES" + "codePostal": "28800", + "codeCommune": "28126", + "libelleAcheminement": "DANCY", + "nomCommune": "DANCY" }, { - "codePostal": "55500", - "codeCommune": "55454", - "libelleAcheminement": "ST AUBIN SUR AIRE", - "nomCommune": "ST AUBIN SUR AIRE" + "codePostal": "16360", + "codeCommune": "16025", + "libelleAcheminement": "BAIGNES STE RADEGONDE", + "nomCommune": "BAIGNES STE RADEGONDE" }, { - "codePostal": "21610", - "codeCommune": "21468", - "libelleAcheminement": "ORAIN", - "nomCommune": "ORAIN" + "codePostal": "17210", + "codeCommune": "17319", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "23700", - "codeCommune": "23013", - "libelleAcheminement": "AUZANCES", - "nomCommune": "AUZANCES" + "codePostal": "28700", + "codeCommune": "28194", + "libelleAcheminement": "HOUVILLE LA BRANCHE", + "nomCommune": "HOUVILLE LA BRANCHE" }, { - "codePostal": "60140", - "codeCommune": "60360", - "libelleAcheminement": "LIANCOURT", - "nomCommune": "LIANCOURT" + "codePostal": "28160", + "codeCommune": "28127", + "libelleAcheminement": "DANGEAU", + "nomCommune": "DANGEAU" }, { - "codePostal": "55160", - "codeCommune": "55457", - "libelleAcheminement": "ST HILAIRE EN WOEVRE", - "nomCommune": "ST HILAIRE EN WOEVRE" + "codePostal": "16430", + "codeCommune": "16026", + "libelleAcheminement": "BALZAC", + "nomCommune": "BALZAC" }, { - "codePostal": "21440", - "codeCommune": "21479", - "libelleAcheminement": "PELLEREY", - "nomCommune": "PELLEREY" + "codePostal": "17520", + "codeCommune": "17326", + "libelleAcheminement": "ST EUGENE", + "nomCommune": "ST EUGENE" }, { - "codePostal": "23120", - "codeCommune": "23016", - "libelleAcheminement": "BANIZE", - "nomCommune": "BANIZE" + "codePostal": "28310", + "codeCommune": "28199", + "libelleAcheminement": "JANVILLE EN BEAUCE", + "nomCommune": "JANVILLE EN BEAUCE" }, { - "codePostal": "60240", - "codeCommune": "60363", - "libelleAcheminement": "LIERVILLE", - "nomCommune": "LIERVILLE" + "codePostal": "28160", + "codeCommune": "28127", + "libelleAcheminement": "DANGEAU", + "nomCommune": "DANGEAU" }, { - "codePostal": "55130", - "codeCommune": "55459", - "libelleAcheminement": "ST JOIRE", - "nomCommune": "ST JOIRE" + "codePostal": "16120", + "codeCommune": "16032", + "libelleAcheminement": "BASSAC", + "nomCommune": "BASSAC" }, { - "codePostal": "21120", - "codeCommune": "21483", - "libelleAcheminement": "PICHANGES", - "nomCommune": "PICHANGES" + "codePostal": "17190", + "codeCommune": "17337", + "libelleAcheminement": "ST GEORGES D OLERON", + "nomCommune": "ST GEORGES D OLERON" }, { - "codePostal": "23600", - "codeCommune": "23032", - "libelleAcheminement": "BOUSSAC BOURG", - "nomCommune": "BOUSSAC BOURG" + "codePostal": "28270", + "codeCommune": "28206", + "libelleAcheminement": "LAONS", + "nomCommune": "LAONS" }, { - "codePostal": "60130", - "codeCommune": "60364", - "libelleAcheminement": "LIEUVILLERS", - "nomCommune": "LIEUVILLERS" + "codePostal": "28250", + "codeCommune": "28130", + "libelleAcheminement": "DIGNY", + "nomCommune": "DIGNY" }, { - "codePostal": "55500", - "codeCommune": "55472", - "libelleAcheminement": "SAULVAUX", - "nomCommune": "SAULVAUX" + "codePostal": "16250", + "codeCommune": "16036", + "libelleAcheminement": "BECHERESSE", + "nomCommune": "BECHERESSE" }, { - "codePostal": "21110", - "codeCommune": "21487", - "libelleAcheminement": "PLUVET", - "nomCommune": "PLUVET" + "codePostal": "17700", + "codeCommune": "17340", + "libelleAcheminement": "ST PIERRE LA NOUE", + "nomCommune": "ST PIERRE LA NOUE" }, { - "codePostal": "23000", - "codeCommune": "23033", - "libelleAcheminement": "LA BRIONNE", - "nomCommune": "LA BRIONNE" + "codePostal": "28700", + "codeCommune": "28207", + "libelleAcheminement": "LETHUIN", + "nomCommune": "LETHUIN" }, { - "codePostal": "60240", - "codeCommune": "60367", - "libelleAcheminement": "LOCONVILLE", - "nomCommune": "LOCONVILLE" + "codePostal": "28230", + "codeCommune": "28140", + "libelleAcheminement": "EPERNON", + "nomCommune": "EPERNON" }, { - "codePostal": "55000", - "codeCommune": "55479", - "libelleAcheminement": "SEIGNEULLES", - "nomCommune": "SEIGNEULLES" + "codePostal": "16210", + "codeCommune": "16037", + "libelleAcheminement": "BELLON", + "nomCommune": "BELLON" }, { - "codePostal": "21440", - "codeCommune": "21489", - "libelleAcheminement": "POISEUL LA GRANGE", - "nomCommune": "POISEUL LA GRANGE" + "codePostal": "17500", + "codeCommune": "17341", + "libelleAcheminement": "ST GERMAIN DE VIBRAC", + "nomCommune": "ST GERMAIN DE VIBRAC" }, { - "codePostal": "23110", - "codeCommune": "23046", - "libelleAcheminement": "CHAMBONCHARD", - "nomCommune": "CHAMBONCHARD" + "codePostal": "28700", + "codeCommune": "28208", + "libelleAcheminement": "LEVAINVILLE", + "nomCommune": "LEVAINVILLE" }, { - "codePostal": "60150", - "codeCommune": "60368", - "libelleAcheminement": "LONGUEIL ANNEL", - "nomCommune": "LONGUEIL ANNEL" + "codePostal": "28120", + "codeCommune": "28142", + "libelleAcheminement": "ERMENONVILLE LA PETITE", + "nomCommune": "ERMENONVILLE LA PETITE" }, { - "codePostal": "55220", - "codeCommune": "55482", - "libelleAcheminement": "SENONCOURT LES MAUJOUY", - "nomCommune": "SENONCOURT LES MAUJOUY" + "codePostal": "16120", + "codeCommune": "16045", + "libelleAcheminement": "BIRAC", + "nomCommune": "BIRAC" }, { - "codePostal": "21270", - "codeCommune": "21496", - "libelleAcheminement": "PONTAILLER SUR SAONE", - "nomCommune": "PONTAILLER SUR SAONE" + "codePostal": "17520", + "codeCommune": "17357", + "libelleAcheminement": "ST MAIGRIN", + "nomCommune": "ST MAIGRIN" }, { - "codePostal": "23160", - "codeCommune": "23050", - "libelleAcheminement": "LA CHAPELLE BALOUE", - "nomCommune": "LA CHAPELLE BALOUE" + "codePostal": "28300", + "codeCommune": "28209", + "libelleAcheminement": "LEVES", + "nomCommune": "LEVES" }, { - "codePostal": "60110", - "codeCommune": "60370", - "libelleAcheminement": "LORMAISON", - "nomCommune": "LORMAISON" + "codePostal": "28190", + "codeCommune": "28148", + "libelleAcheminement": "LE FAVRIL", + "nomCommune": "LE FAVRIL" }, { - "codePostal": "55300", - "codeCommune": "55487", - "libelleAcheminement": "SEUZEY", - "nomCommune": "SEUZEY" + "codePostal": "16250", + "codeCommune": "16046", + "libelleAcheminement": "COTEAUX DU BLANZACAIS", + "nomCommune": "COTEAUX DU BLANZACAIS" }, { - "codePostal": "21400", - "codeCommune": "21499", - "libelleAcheminement": "POTHIERES", - "nomCommune": "POTHIERES" + "codePostal": "17470", + "codeCommune": "17358", + "libelleAcheminement": "ST MANDE SUR BREDOIRE", + "nomCommune": "ST MANDE SUR BREDOIRE" }, { - "codePostal": "23130", - "codeCommune": "23058", - "libelleAcheminement": "LE CHAUCHET", - "nomCommune": "LE CHAUCHET" + "codePostal": "28300", + "codeCommune": "28229", + "libelleAcheminement": "MAINVILLIERS", + "nomCommune": "MAINVILLIERS" }, { - "codePostal": "60112", - "codeCommune": "60376", - "libelleAcheminement": "MAISONCELLE ST PIERRE", - "nomCommune": "MAISONCELLE ST PIERRE" + "codePostal": "28270", + "codeCommune": "28151", + "libelleAcheminement": "FESSANVILLIERS MATTANVILLIERS", + "nomCommune": "FESSANVILLIERS MATTANVILLIERS" }, { - "codePostal": "55000", - "codeCommune": "55504", - "libelleAcheminement": "TANNOIS", - "nomCommune": "TANNOIS" + "codePostal": "16350", + "codeCommune": "16054", + "libelleAcheminement": "LE BOUCHAGE", + "nomCommune": "LE BOUCHAGE" }, { - "codePostal": "21150", - "codeCommune": "21500", - "libelleAcheminement": "POUILLENAY", - "nomCommune": "POUILLENAY" + "codePostal": "17700", + "codeCommune": "17359", + "libelleAcheminement": "ST MARD", + "nomCommune": "ST MARD" }, { - "codePostal": "23200", - "codeCommune": "23059", - "libelleAcheminement": "LA CHAUSSADE", - "nomCommune": "LA CHAUSSADE" + "codePostal": "28270", + "codeCommune": "28231", + "libelleAcheminement": "LA MANCELIERE", + "nomCommune": "LA MANCELIERE" }, { - "codePostal": "60490", - "codeCommune": "60378", - "libelleAcheminement": "MAREST SUR MATZ", - "nomCommune": "MAREST SUR MATZ" + "codePostal": "28800", + "codeCommune": "28153", + "libelleAcheminement": "FLACEY", + "nomCommune": "FLACEY" }, { - "codePostal": "55210", - "codeCommune": "55507", - "libelleAcheminement": "THILLOT", - "nomCommune": "THILLOT" + "codePostal": "16120", + "codeCommune": "16057", + "libelleAcheminement": "BOUTEVILLE", + "nomCommune": "BOUTEVILLE" }, { - "codePostal": "21610", - "codeCommune": "21503", - "libelleAcheminement": "POUILLY SUR VINGEANNE", - "nomCommune": "POUILLY SUR VINGEANNE" + "codePostal": "17330", + "codeCommune": "17361", + "libelleAcheminement": "ST MARTIAL", + "nomCommune": "ST MARTIAL" }, { - "codePostal": "23700", - "codeCommune": "23066", - "libelleAcheminement": "LE COMPAS", - "nomCommune": "LE COMPAS" + "codePostal": "28200", + "codeCommune": "28233", + "libelleAcheminement": "MARBOUE", + "nomCommune": "MARBOUE" }, { - "codePostal": "60690", - "codeCommune": "60387", - "libelleAcheminement": "MARSEILLE EN BEAUVAISIS", - "nomCommune": "MARSEILLE EN BEAUVAISIS" + "codePostal": "28700", + "codeCommune": "28160", + "libelleAcheminement": "FRANCOURVILLE", + "nomCommune": "FRANCOURVILLE" }, { - "codePostal": "55000", - "codeCommune": "55514", - "libelleAcheminement": "TREMONT SUR SAULX", - "nomCommune": "TREMONT SUR SAULX" + "codePostal": "16100", + "codeCommune": "16058", + "libelleAcheminement": "BOUTIERS ST TROJAN", + "nomCommune": "BOUTIERS ST TROJAN" }, { - "codePostal": "21370", - "codeCommune": "21508", - "libelleAcheminement": "PRENOIS", - "nomCommune": "PRENOIS" + "codePostal": "17520", + "codeCommune": "17364", + "libelleAcheminement": "ST MARTIAL SUR NE", + "nomCommune": "ST MARTIAL SUR NE" }, { - "codePostal": "23500", - "codeCommune": "23071", - "libelleAcheminement": "CROZE", - "nomCommune": "CROZE" + "codePostal": "28400", + "codeCommune": "28236", + "libelleAcheminement": "ARCISSES", + "nomCommune": "ARCISSES" }, { - "codePostal": "60150", - "codeCommune": "60392", - "libelleAcheminement": "MELICOCQ", - "nomCommune": "MELICOCQ" + "codePostal": "28240", + "codeCommune": "28166", + "libelleAcheminement": "FRIAIZE", + "nomCommune": "FRIAIZE" }, { - "codePostal": "55250", - "codeCommune": "55517", - "libelleAcheminement": "SEUIL D ARGONNE", - "nomCommune": "SEUIL D ARGONNE" + "codePostal": "16370", + "codeCommune": "16060", + "libelleAcheminement": "BREVILLE", + "nomCommune": "BREVILLE" }, { - "codePostal": "21400", - "codeCommune": "21511", - "libelleAcheminement": "PUITS", - "nomCommune": "PUITS" + "codePostal": "17400", + "codeCommune": "17367", + "libelleAcheminement": "ST MARTIN DE JUILLERS", + "nomCommune": "ST MARTIN DE JUILLERS" }, { - "codePostal": "23480", - "codeCommune": "23086", - "libelleAcheminement": "FRANSECHES", - "nomCommune": "FRANSECHES" + "codePostal": "28240", + "codeCommune": "28240", + "libelleAcheminement": "MEAUCE", + "nomCommune": "MEAUCE" }, { - "codePostal": "60420", - "codeCommune": "60394", - "libelleAcheminement": "MENEVILLERS", - "nomCommune": "MENEVILLERS" + "codePostal": "28190", + "codeCommune": "28167", + "libelleAcheminement": "FRUNCE", + "nomCommune": "FRUNCE" }, { - "codePostal": "55500", - "codeCommune": "55518", - "libelleAcheminement": "COUSANCES LES TRICONVILLE", - "nomCommune": "COUSANCES LES TRICONVILLE" + "codePostal": "16250", + "codeCommune": "16075", + "libelleAcheminement": "CHAMPAGNE VIGNY", + "nomCommune": "CHAMPAGNE VIGNY" }, { - "codePostal": "21190", - "codeCommune": "21512", - "libelleAcheminement": "PULIGNY MONTRACHET", - "nomCommune": "PULIGNY MONTRACHET" + "codePostal": "17410", + "codeCommune": "17369", + "libelleAcheminement": "ST MARTIN DE RE", + "nomCommune": "ST MARTIN DE RE" }, { - "codePostal": "23340", - "codeCommune": "23090", - "libelleAcheminement": "GENTIOUX PIGEROLLES", - "nomCommune": "GENTIOUX PIGEROLLES" + "codePostal": "28310", + "codeCommune": "28243", + "libelleAcheminement": "MEROUVILLE", + "nomCommune": "MEROUVILLE" }, { - "codePostal": "60210", - "codeCommune": "60397", - "libelleAcheminement": "LE MESNIL CONTEVILLE", - "nomCommune": "LE MESNIL CONTEVILLE" + "codePostal": "28400", + "codeCommune": "28175", + "libelleAcheminement": "LA GAUDAINE", + "nomCommune": "LA GAUDAINE" }, { - "codePostal": "55500", - "codeCommune": "55518", - "libelleAcheminement": "COUSANCES LES TRICONVILLE", - "nomCommune": "COUSANCES LES TRICONVILLE" + "codePostal": "16290", + "codeCommune": "16077", + "libelleAcheminement": "CHAMPMILLON", + "nomCommune": "CHAMPMILLON" }, { - "codePostal": "21510", - "codeCommune": "21514", - "libelleAcheminement": "QUEMIGNY SUR SEINE", - "nomCommune": "QUEMIGNY SUR SEINE" + "codePostal": "17220", + "codeCommune": "17373", + "libelleAcheminement": "ST MEDARD D AUNIS", + "nomCommune": "ST MEDARD D AUNIS" }, { - "codePostal": "23240", - "codeCommune": "23095", - "libelleAcheminement": "LE GRAND BOURG", - "nomCommune": "LE GRAND BOURG" + "codePostal": "28360", + "codeCommune": "28246", + "libelleAcheminement": "MESLAY LE VIDAME", + "nomCommune": "MESLAY LE VIDAME" }, { - "codePostal": "60112", - "codeCommune": "60403", - "libelleAcheminement": "MILLY SUR THERAIN", - "nomCommune": "MILLY SUR THERAIN" + "codePostal": "28310", + "codeCommune": "28183", + "libelleAcheminement": "GOMMERVILLE", + "nomCommune": "GOMMERVILLE" }, { - "codePostal": "55300", - "codeCommune": "55521", - "libelleAcheminement": "TROYON", - "nomCommune": "TROYON" + "codePostal": "16360", + "codeCommune": "16079", + "libelleAcheminement": "CHANTILLAC", + "nomCommune": "CHANTILLAC" }, { - "codePostal": "21800", - "codeCommune": "21515", - "libelleAcheminement": "QUETIGNY", - "nomCommune": "QUETIGNY" + "codePostal": "17210", + "codeCommune": "17378", + "libelleAcheminement": "ST PALAIS DE NEGRIGNAC", + "nomCommune": "ST PALAIS DE NEGRIGNAC" }, { - "codePostal": "23130", - "codeCommune": "23097", - "libelleAcheminement": "ISSOUDUN LETRIEIX", - "nomCommune": "ISSOUDUN LETRIEIX" + "codePostal": "28500", + "codeCommune": "28251", + "libelleAcheminement": "MEZIERES EN DROUAIS", + "nomCommune": "MEZIERES EN DROUAIS" }, { - "codePostal": "60220", - "codeCommune": "60407", - "libelleAcheminement": "MONCEAUX L ABBAYE", - "nomCommune": "MONCEAUX L ABBAYE" + "codePostal": "28140", + "codeCommune": "28190", + "libelleAcheminement": "GUILLONVILLE", + "nomCommune": "GUILLONVILLE" }, { - "codePostal": "55270", - "codeCommune": "55527", - "libelleAcheminement": "VARENNES EN ARGONNE", - "nomCommune": "VARENNES EN ARGONNE" + "codePostal": "16100", + "codeCommune": "16089", + "libelleAcheminement": "CHATEAUBERNARD", + "nomCommune": "CHATEAUBERNARD" }, { - "codePostal": "21540", - "codeCommune": "21520", - "libelleAcheminement": "REMILLY EN MONTAGNE", - "nomCommune": "REMILLY EN MONTAGNE" + "codePostal": "17800", + "codeCommune": "17379", + "libelleAcheminement": "ST PALAIS DE PHIOLIN", + "nomCommune": "ST PALAIS DE PHIOLIN" }, { - "codePostal": "23270", - "codeCommune": "23102", - "libelleAcheminement": "LADAPEYRE", - "nomCommune": "LADAPEYRE" + "codePostal": "28480", + "codeCommune": "28252", + "libelleAcheminement": "MIERMAIGNE", + "nomCommune": "MIERMAIGNE" }, { - "codePostal": "60810", - "codeCommune": "60415", - "libelleAcheminement": "MONTEPILLOY", - "nomCommune": "MONTEPILLOY" + "codePostal": "28480", + "codeCommune": "28192", + "libelleAcheminement": "HAPPONVILLIERS", + "nomCommune": "HAPPONVILLIERS" }, { - "codePostal": "55140", - "codeCommune": "55533", - "libelleAcheminement": "VAUCOULEURS", - "nomCommune": "VAUCOULEURS" + "codePostal": "16480", + "codeCommune": "16091", + "libelleAcheminement": "CHATIGNAC", + "nomCommune": "CHATIGNAC" }, { - "codePostal": "21560", - "codeCommune": "21521", - "libelleAcheminement": "REMILLY SUR TILLE", - "nomCommune": "REMILLY SUR TILLE" + "codePostal": "17330", + "codeCommune": "17384", + "libelleAcheminement": "ST PIERRE DE L ISLE", + "nomCommune": "ST PIERRE DE L ISLE" }, { - "codePostal": "23220", - "codeCommune": "23109", - "libelleAcheminement": "LINARD MALVAL", - "nomCommune": "LINARD MALVAL" + "codePostal": "28190", + "codeCommune": "28254", + "libelleAcheminement": "MITTAINVILLIERS VERIGNY", + "nomCommune": "MITTAINVILLIERS VERIGNY" }, { - "codePostal": "60420", - "codeCommune": "60416", - "libelleAcheminement": "MONTGERAIN", - "nomCommune": "MONTGERAIN" + "codePostal": "28130", + "codeCommune": "28195", + "libelleAcheminement": "HOUX", + "nomCommune": "HOUX" }, { - "codePostal": "55500", - "codeCommune": "55543", - "libelleAcheminement": "VELAINES", - "nomCommune": "VELAINES" + "codePostal": "16370", + "codeCommune": "16097", + "libelleAcheminement": "CHERVES RICHEMONT", + "nomCommune": "CHERVES RICHEMONT" }, { - "codePostal": "21340", - "codeCommune": "21527", - "libelleAcheminement": "LA ROCHEPOT", - "nomCommune": "LA ROCHEPOT" + "codePostal": "17250", + "codeCommune": "17387", + "libelleAcheminement": "ST PORCHAIRE", + "nomCommune": "ST PORCHAIRE" }, { - "codePostal": "23360", - "codeCommune": "23112", - "libelleAcheminement": "LOURDOUEIX ST PIERRE", - "nomCommune": "LOURDOUEIX ST PIERRE" + "codePostal": "28190", + "codeCommune": "28254", + "libelleAcheminement": "MITTAINVILLIERS VERIGNY", + "nomCommune": "MITTAINVILLIERS VERIGNY" }, { - "codePostal": "60150", - "codeCommune": "60423", - "libelleAcheminement": "MONTMACQ", - "nomCommune": "MONTMACQ" + "codePostal": "28120", + "codeCommune": "28196", + "libelleAcheminement": "ILLIERS COMBRAY", + "nomCommune": "ILLIERS COMBRAY" }, { - "codePostal": "55100", - "codeCommune": "55545", - "libelleAcheminement": "VERDUN", - "nomCommune": "VERDUN" + "codePostal": "16240", + "codeCommune": "16098", + "libelleAcheminement": "LA CHEVRERIE", + "nomCommune": "LA CHEVRERIE" }, { - "codePostal": "21150", - "codeCommune": "21528", - "libelleAcheminement": "LA ROCHE VANNEAU", - "nomCommune": "LA ROCHE VANNEAU" + "codePostal": "17800", + "codeCommune": "17388", + "libelleAcheminement": "ST QUANTIN DE RANCANNE", + "nomCommune": "ST QUANTIN DE RANCANNE" }, { - "codePostal": "23190", - "codeCommune": "23113", - "libelleAcheminement": "LUPERSAT", - "nomCommune": "LUPERSAT" + "codePostal": "28140", + "codeCommune": "28283", + "libelleAcheminement": "NOTTONVILLE", + "nomCommune": "NOTTONVILLE" }, { - "codePostal": "60480", - "codeCommune": "60425", - "libelleAcheminement": "MONTREUIL SUR BRECHE", - "nomCommune": "MONTREUIL SUR BRECHE" + "codePostal": "28310", + "codeCommune": "28199", + "libelleAcheminement": "JANVILLE EN BEAUCE", + "nomCommune": "JANVILLE EN BEAUCE" }, { - "codePostal": "55210", - "codeCommune": "55551", - "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", - "nomCommune": "VIGNEULLES LES HATTONCHATEL" + "codePostal": "16360", + "codeCommune": "16105", + "libelleAcheminement": "CONDEON", + "nomCommune": "CONDEON" }, { - "codePostal": "21500", - "codeCommune": "21530", - "libelleAcheminement": "ROUGEMONT", - "nomCommune": "ROUGEMONT" + "codePostal": "17700", + "codeCommune": "17394", + "libelleAcheminement": "ST SATURNIN DU BOIS", + "nomCommune": "ST SATURNIN DU BOIS" }, { - "codePostal": "23260", - "codeCommune": "23115", - "libelleAcheminement": "MAGNAT L ETRANGE", - "nomCommune": "MAGNAT L ETRANGE" + "codePostal": "28700", + "codeCommune": "28285", + "libelleAcheminement": "OINVILLE SOUS AUNEAU", + "nomCommune": "OINVILLE SOUS AUNEAU" }, { - "codePostal": "60119", - "codeCommune": "60427", - "libelleAcheminement": "MONTS", - "nomCommune": "MONTS" + "codePostal": "28310", + "codeCommune": "28210", + "libelleAcheminement": "LEVESVILLE LA CHENARD", + "nomCommune": "LEVESVILLE LA CHENARD" }, { - "codePostal": "55150", - "codeCommune": "55556", - "libelleAcheminement": "VILLE DEVANT CHAUMONT", - "nomCommune": "VILLE DEVANT CHAUMONT" + "codePostal": "16500", + "codeCommune": "16106", + "libelleAcheminement": "CONFOLENS", + "nomCommune": "CONFOLENS" }, { - "codePostal": "21490", - "codeCommune": "21535", - "libelleAcheminement": "RUFFEY LES ECHIREY", - "nomCommune": "RUFFEY LES ECHIREY" + "codePostal": "17330", + "codeCommune": "17401", + "libelleAcheminement": "ST SEVERIN SUR BOUTONNE", + "nomCommune": "ST SEVERIN SUR BOUTONNE" }, { - "codePostal": "23600", - "codeCommune": "23120", - "libelleAcheminement": "MALLERET BOUSSAC", - "nomCommune": "MALLERET BOUSSAC" + "codePostal": "28120", + "codeCommune": "28286", + "libelleAcheminement": "OLLE", + "nomCommune": "OLLE" }, { - "codePostal": "60530", - "codeCommune": "60429", - "libelleAcheminement": "MORANGLES", - "nomCommune": "MORANGLES" + "codePostal": "28150", + "codeCommune": "28215", + "libelleAcheminement": "LOUVILLE LA CHENARD", + "nomCommune": "LOUVILLE LA CHENARD" }, { - "codePostal": "55220", - "codeCommune": "55566", - "libelleAcheminement": "VILLERS SUR MEUSE", - "nomCommune": "VILLERS SUR MEUSE" + "codePostal": "16400", + "codeCommune": "16113", + "libelleAcheminement": "LA COURONNE", + "nomCommune": "LA COURONNE" }, { - "codePostal": "21210", - "codeCommune": "21546", - "libelleAcheminement": "ST DIDIER", - "nomCommune": "ST DIDIER" + "codePostal": "17220", + "codeCommune": "17407", + "libelleAcheminement": "STE SOULLE", + "nomCommune": "STE SOULLE" }, { - "codePostal": "23210", - "codeCommune": "23124", - "libelleAcheminement": "MARSAC", - "nomCommune": "MARSAC" + "codePostal": "28210", + "codeCommune": "28289", + "libelleAcheminement": "ORMOY", + "nomCommune": "ORMOY" }, { - "codePostal": "60440", - "codeCommune": "60446", - "libelleAcheminement": "NANTEUIL LE HAUDOUIN", - "nomCommune": "NANTEUIL LE HAUDOUIN" + "codePostal": "28480", + "codeCommune": "28219", + "libelleAcheminement": "LUIGNY", + "nomCommune": "LUIGNY" }, { - "codePostal": "55110", - "codeCommune": "55571", - "libelleAcheminement": "VILOSNES HARAUMONT", - "nomCommune": "VILOSNES HARAUMONT" + "codePostal": "16460", + "codeCommune": "16114", + "libelleAcheminement": "COUTURE", + "nomCommune": "COUTURE" }, { - "codePostal": "21170", - "codeCommune": "21554", - "libelleAcheminement": "ST JEAN DE LOSNE", - "nomCommune": "ST JEAN DE LOSNE" + "codePostal": "17250", + "codeCommune": "17408", + "libelleAcheminement": "ST SULPICE D ARNOULT", + "nomCommune": "ST SULPICE D ARNOULT" }, { - "codePostal": "23100", - "codeCommune": "23125", - "libelleAcheminement": "LE MAS D ARTIGE", - "nomCommune": "LE MAS D ARTIGE" + "codePostal": "28190", + "codeCommune": "28290", + "libelleAcheminement": "ORROUER", + "nomCommune": "ORROUER" }, { - "codePostal": "60530", - "codeCommune": "60450", - "libelleAcheminement": "NEUILLY EN THELLE", - "nomCommune": "NEUILLY EN THELLE" + "codePostal": "28500", + "codeCommune": "28223", + "libelleAcheminement": "LURAY", + "nomCommune": "LURAY" }, { - "codePostal": "55150", - "codeCommune": "55572", - "libelleAcheminement": "VITTARVILLE", - "nomCommune": "VITTARVILLE" + "codePostal": "16410", + "codeCommune": "16119", + "libelleAcheminement": "DIGNAC", + "nomCommune": "DIGNAC" }, { - "codePostal": "21450", - "codeCommune": "21557", - "libelleAcheminement": "ST MARC SUR SEINE", - "nomCommune": "ST MARC SUR SEINE" + "codePostal": "17150", + "codeCommune": "17410", + "libelleAcheminement": "ST THOMAS DE CONAC", + "nomCommune": "ST THOMAS DE CONAC" }, { - "codePostal": "23420", - "codeCommune": "23131", - "libelleAcheminement": "MERINCHAL", - "nomCommune": "MERINCHAL" + "codePostal": "28260", + "codeCommune": "28293", + "libelleAcheminement": "OULINS", + "nomCommune": "OULINS" }, { - "codePostal": "60190", - "codeCommune": "60456", - "libelleAcheminement": "LA NEUVILLE ROY", - "nomCommune": "LA NEUVILLE ROY" + "codePostal": "28170", + "codeCommune": "28226", + "libelleAcheminement": "MAILLEBOIS", + "nomCommune": "MAILLEBOIS" }, { - "codePostal": "55190", - "codeCommune": "55573", - "libelleAcheminement": "VOID VACON", - "nomCommune": "VOID VACON" + "codePostal": "16220", + "codeCommune": "16124", + "libelleAcheminement": "ECURAS", + "nomCommune": "ECURAS" }, { - "codePostal": "21200", - "codeCommune": "21558", - "libelleAcheminement": "STE MARIE LA BLANCHE", - "nomCommune": "STE MARIE LA BLANCHE" + "codePostal": "17150", + "codeCommune": "17423", + "libelleAcheminement": "SEMILLAC", + "nomCommune": "SEMILLAC" }, { - "codePostal": "23150", - "codeCommune": "23138", - "libelleAcheminement": "MOUTIER D AHUN", - "nomCommune": "MOUTIER D AHUN" + "codePostal": "28800", + "codeCommune": "28306", + "libelleAcheminement": "PRE ST MARTIN", + "nomCommune": "PRE ST MARTIN" }, { - "codePostal": "60510", - "codeCommune": "60461", - "libelleAcheminement": "NIVILLERS", - "nomCommune": "NIVILLERS" + "codePostal": "28130", + "codeCommune": "28227", + "libelleAcheminement": "MAINTENON", + "nomCommune": "MAINTENON" }, { - "codePostal": "55190", - "codeCommune": "55573", - "libelleAcheminement": "VOID VACON", - "nomCommune": "VOID VACON" + "codePostal": "16320", + "codeCommune": "16125", + "libelleAcheminement": "EDON", + "nomCommune": "EDON" }, { - "codePostal": "21410", - "codeCommune": "21559", - "libelleAcheminement": "STE MARIE SUR OUCHE", - "nomCommune": "STE MARIE SUR OUCHE" + "codePostal": "17150", + "codeCommune": "17424", + "libelleAcheminement": "SEMOUSSAC", + "nomCommune": "SEMOUSSAC" }, { - "codePostal": "23220", - "codeCommune": "23139", - "libelleAcheminement": "MOUTIER MALCARD", - "nomCommune": "MOUTIER MALCARD" + "codePostal": "28340", + "codeCommune": "28314", + "libelleAcheminement": "LES RESSUINTES", + "nomCommune": "LES RESSUINTES" }, { - "codePostal": "60210", - "codeCommune": "60472", - "libelleAcheminement": "OFFOY", - "nomCommune": "OFFOY" + "codePostal": "28120", + "codeCommune": "28234", + "libelleAcheminement": "MARCHEVILLE", + "nomCommune": "MARCHEVILLE" }, { - "codePostal": "55130", - "codeCommune": "55574", - "libelleAcheminement": "VOUTHON BAS", - "nomCommune": "VOUTHON BAS" + "codePostal": "16250", + "codeCommune": "16133", + "libelleAcheminement": "ETRIAC", + "nomCommune": "ETRIAC" }, { - "codePostal": "21170", - "codeCommune": "21581", - "libelleAcheminement": "SAMEREY", - "nomCommune": "SAMEREY" + "codePostal": "17770", + "codeCommune": "17426", + "libelleAcheminement": "LE SEURE", + "nomCommune": "LE SEURE" }, { - "codePostal": "23360", - "codeCommune": "23147", - "libelleAcheminement": "NOUZEROLLES", - "nomCommune": "NOUZEROLLES" + "codePostal": "28120", + "codeCommune": "28326", + "libelleAcheminement": "ST AVIT LES GUESPIERES", + "nomCommune": "ST AVIT LES GUESPIERES" }, { - "codePostal": "60310", - "codeCommune": "60474", - "libelleAcheminement": "OGNOLLES", - "nomCommune": "OGNOLLES" + "codePostal": "28410", + "codeCommune": "28235", + "libelleAcheminement": "MARCHEZAIS", + "nomCommune": "MARCHEZAIS" }, { - "codePostal": "55400", - "codeCommune": "55578", - "libelleAcheminement": "WARCQ", - "nomCommune": "WARCQ" + "codePostal": "16410", + "codeCommune": "16146", + "libelleAcheminement": "GARAT", + "nomCommune": "GARAT" }, { - "codePostal": "21590", - "codeCommune": "21582", - "libelleAcheminement": "SANTENAY", - "nomCommune": "SANTENAY" + "codePostal": "17170", + "codeCommune": "17439", + "libelleAcheminement": "TAUGON", + "nomCommune": "TAUGON" }, { - "codePostal": "23250", - "codeCommune": "23155", - "libelleAcheminement": "PONTARION", - "nomCommune": "PONTARION" + "codePostal": "28200", + "codeCommune": "28330", + "libelleAcheminement": "VILLEMAURY", + "nomCommune": "VILLEMAURY" }, { - "codePostal": "60510", - "codeCommune": "60480", - "libelleAcheminement": "OROER", - "nomCommune": "OROER" + "codePostal": "28240", + "codeCommune": "28265", + "libelleAcheminement": "MONTLANDON", + "nomCommune": "MONTLANDON" }, { - "codePostal": "56350", - "codeCommune": "56001", - "libelleAcheminement": "ALLAIRE", - "nomCommune": "ALLAIRE" + "codePostal": "16320", + "codeCommune": "16147", + "libelleAcheminement": "GARDES LE PONTAROUX", + "nomCommune": "GARDES LE PONTAROUX" }, { - "codePostal": "21120", - "codeCommune": "21587", - "libelleAcheminement": "SAULX LE DUC", - "nomCommune": "SAULX LE DUC" + "codePostal": "17400", + "codeCommune": "17440", + "libelleAcheminement": "TERNANT", + "nomCommune": "TERNANT" }, { - "codePostal": "23130", - "codeCommune": "23159", - "libelleAcheminement": "PUY MALSIGNAT", - "nomCommune": "PUY MALSIGNAT" + "codePostal": "28500", + "codeCommune": "28332", + "libelleAcheminement": "STE GEMME MORONVAL", + "nomCommune": "STE GEMME MORONVAL" }, { - "codePostal": "60120", - "codeCommune": "60486", - "libelleAcheminement": "PAILLART", - "nomCommune": "PAILLART" + "codePostal": "28500", + "codeCommune": "28267", + "libelleAcheminement": "MONTREUIL", + "nomCommune": "MONTREUIL" }, { - "codePostal": "56190", - "codeCommune": "56002", - "libelleAcheminement": "AMBON", - "nomCommune": "AMBON" + "codePostal": "16480", + "codeCommune": "16161", + "libelleAcheminement": "GUIZENGEARD", + "nomCommune": "GUIZENGEARD" }, { - "codePostal": "21540", - "codeCommune": "21592", - "libelleAcheminement": "SAVIGNY SOUS MALAIN", - "nomCommune": "SAVIGNY SOUS MALAIN" + "codePostal": "17160", + "codeCommune": "17446", + "libelleAcheminement": "THORS", + "nomCommune": "THORS" }, { - "codePostal": "23110", - "codeCommune": "23167", - "libelleAcheminement": "SANNAT", - "nomCommune": "SANNAT" + "codePostal": "28240", + "codeCommune": "28333", + "libelleAcheminement": "ST DENIS DES PUITS", + "nomCommune": "ST DENIS DES PUITS" }, { - "codePostal": "60350", - "codeCommune": "60491", - "libelleAcheminement": "PIERREFONDS", - "nomCommune": "PIERREFONDS" + "codePostal": "28210", + "codeCommune": "28279", + "libelleAcheminement": "NOGENT LE ROI", + "nomCommune": "NOGENT LE ROI" }, { - "codePostal": "56190", - "codeCommune": "56004", - "libelleAcheminement": "ARZAL", - "nomCommune": "ARZAL" + "codePostal": "16320", + "codeCommune": "16162", + "libelleAcheminement": "GURAT", + "nomCommune": "GURAT" }, { - "codePostal": "21220", - "codeCommune": "21597", - "libelleAcheminement": "SEGROIS", - "nomCommune": "SEGROIS" + "codePostal": "17290", + "codeCommune": "17447", + "libelleAcheminement": "LE THOU", + "nomCommune": "LE THOU" }, { - "codePostal": "23250", - "codeCommune": "23168", - "libelleAcheminement": "SARDENT", - "nomCommune": "SARDENT" + "codePostal": "28800", + "codeCommune": "28353", + "libelleAcheminement": "ST MAUR SUR LE LOIR", + "nomCommune": "ST MAUR SUR LE LOIR" }, { - "codePostal": "60128", - "codeCommune": "60494", - "libelleAcheminement": "PLAILLY", - "nomCommune": "PLAILLY" + "codePostal": "28120", + "codeCommune": "28282", + "libelleAcheminement": "NONVILLIERS GRANDHOUX", + "nomCommune": "NONVILLIERS GRANDHOUX" }, { - "codePostal": "56380", - "codeCommune": "56012", - "libelleAcheminement": "BEIGNON", - "nomCommune": "BEIGNON" + "codePostal": "16200", + "codeCommune": "16167", + "libelleAcheminement": "JARNAC", + "nomCommune": "JARNAC" }, { - "codePostal": "21250", - "codeCommune": "21607", - "libelleAcheminement": "SEURRE", - "nomCommune": "SEURRE" + "codePostal": "17430", + "codeCommune": "17449", + "libelleAcheminement": "TONNAY CHARENTE", + "nomCommune": "TONNAY CHARENTE" }, { - "codePostal": "23000", - "codeCommune": "23169", - "libelleAcheminement": "LA SAUNIERE", - "nomCommune": "LA SAUNIERE" + "codePostal": "28130", + "codeCommune": "28357", + "libelleAcheminement": "ST PIAT", + "nomCommune": "ST PIAT" }, { - "codePostal": "60130", - "codeCommune": "60495", - "libelleAcheminement": "PLAINVAL", - "nomCommune": "PLAINVAL" + "codePostal": "28150", + "codeCommune": "28291", + "libelleAcheminement": "OUARVILLE", + "nomCommune": "OUARVILLE" }, { - "codePostal": "56240", - "codeCommune": "56014", - "libelleAcheminement": "BERNE", - "nomCommune": "BERNE" + "codePostal": "16250", + "codeCommune": "16175", + "libelleAcheminement": "VAL DES VIGNES", + "nomCommune": "VAL DES VIGNES" }, { - "codePostal": "21110", - "codeCommune": "21609", - "libelleAcheminement": "SOIRANS", - "nomCommune": "SOIRANS" + "codePostal": "17130", + "codeCommune": "17454", + "libelleAcheminement": "TUGERAS ST MAURICE", + "nomCommune": "TUGERAS ST MAURICE" }, { - "codePostal": "23700", - "codeCommune": "23171", - "libelleAcheminement": "SERMUR", - "nomCommune": "SERMUR" + "codePostal": "28240", + "codeCommune": "28362", + "libelleAcheminement": "ST VICTOR DE BUTHON", + "nomCommune": "ST VICTOR DE BUTHON" }, { - "codePostal": "60640", - "codeCommune": "60502", - "libelleAcheminement": "LE PLESSIS PATTE D OIE", - "nomCommune": "LE PLESSIS PATTE D OIE" + "codePostal": "28500", + "codeCommune": "28292", + "libelleAcheminement": "OUERRE", + "nomCommune": "OUERRE" }, { - "codePostal": "56500", - "codeCommune": "56017", - "libelleAcheminement": "BIGNAN", - "nomCommune": "BIGNAN" + "codePostal": "16300", + "codeCommune": "16178", + "libelleAcheminement": "LAGARDE SUR LE NE", + "nomCommune": "LAGARDE SUR LE NE" }, { - "codePostal": "21120", - "codeCommune": "21614", - "libelleAcheminement": "SPOY", - "nomCommune": "SPOY" + "codePostal": "17250", + "codeCommune": "17455", + "libelleAcheminement": "LA VALLEE", + "nomCommune": "LA VALLEE" }, { - "codePostal": "23190", - "codeCommune": "23172", - "libelleAcheminement": "LA SERRE BUSSIERE VIEILLE", - "nomCommune": "LA SERRE BUSSIERE VIEILLE" + "codePostal": "28800", + "codeCommune": "28364", + "libelleAcheminement": "SANCHEVILLE", + "nomCommune": "SANCHEVILLE" }, { - "codePostal": "60420", - "codeCommune": "60503", - "libelleAcheminement": "LE PLOYRON", - "nomCommune": "LE PLOYRON" + "codePostal": "28700", + "codeCommune": "28294", + "libelleAcheminement": "OYSONVILLE", + "nomCommune": "OYSONVILLE" }, { - "codePostal": "56190", - "codeCommune": "56018", - "libelleAcheminement": "BILLIERS", - "nomCommune": "BILLIERS" + "codePostal": "16700", + "codeCommune": "16189", + "libelleAcheminement": "LONDIGNY", + "nomCommune": "LONDIGNY" }, { - "codePostal": "21430", - "codeCommune": "21615", - "libelleAcheminement": "SUSSEY", - "nomCommune": "SUSSEY" + "codePostal": "17460", + "codeCommune": "17460", + "libelleAcheminement": "VARZAY", + "nomCommune": "VARZAY" }, { - "codePostal": "23150", - "codeCommune": "23175", - "libelleAcheminement": "SOUS PARSAT", - "nomCommune": "SOUS PARSAT" + "codePostal": "28310", + "codeCommune": "28367", + "libelleAcheminement": "SANTILLY", + "nomCommune": "SANTILLY" }, { - "codePostal": "60400", - "codeCommune": "60507", - "libelleAcheminement": "PONTOISE LES NOYON", - "nomCommune": "PONTOISE LES NOYON" + "codePostal": "28140", + "codeCommune": "28296", + "libelleAcheminement": "PERONVILLE", + "nomCommune": "PERONVILLE" }, { - "codePostal": "56390", - "codeCommune": "56022", - "libelleAcheminement": "BRANDIVY", - "nomCommune": "BRANDIVY" + "codePostal": "16270", + "codeCommune": "16192", + "libelleAcheminement": "TERRES DE HAUTE CHARENTE", + "nomCommune": "TERRES DE HAUTE CHARENTE" }, { - "codePostal": "21240", - "codeCommune": "21617", - "libelleAcheminement": "TALANT", - "nomCommune": "TALANT" + "codePostal": "17230", + "codeCommune": "17472", + "libelleAcheminement": "VILLEDOUX", + "nomCommune": "VILLEDOUX" }, { - "codePostal": "23300", - "codeCommune": "23176", - "libelleAcheminement": "LA SOUTERRAINE", - "nomCommune": "LA SOUTERRAINE" + "codePostal": "28250", + "codeCommune": "28368", + "libelleAcheminement": "LA SAUCELLE", + "nomCommune": "LA SAUCELLE" }, { - "codePostal": "60460", - "codeCommune": "60513", - "libelleAcheminement": "PRECY SUR OISE", - "nomCommune": "PRECY SUR OISE" + "codePostal": "28210", + "codeCommune": "28299", + "libelleAcheminement": "LES PINTHIERES", + "nomCommune": "LES PINTHIERES" }, { - "codePostal": "56310", - "codeCommune": "56026", - "libelleAcheminement": "BUBRY", - "nomCommune": "BUBRY" + "codePostal": "16270", + "codeCommune": "16192", + "libelleAcheminement": "TERRES DE HAUTE CHARENTE", + "nomCommune": "TERRES DE HAUTE CHARENTE" }, { - "codePostal": "21210", - "codeCommune": "21629", - "libelleAcheminement": "THOISY LA BERCHERE", - "nomCommune": "THOISY LA BERCHERE" + "codePostal": "17510", + "codeCommune": "17477", + "libelleAcheminement": "VILLIERS COUTURE", + "nomCommune": "VILLIERS COUTURE" }, { - "codePostal": "23130", - "codeCommune": "23185", - "libelleAcheminement": "ST CHABRAIS", - "nomCommune": "ST CHABRAIS" + "codePostal": "28500", + "codeCommune": "28369", + "libelleAcheminement": "SAULNIERES", + "nomCommune": "SAULNIERES" }, { - "codePostal": "60620", - "codeCommune": "60527", - "libelleAcheminement": "REEZ FOSSE MARTIN", - "nomCommune": "REEZ FOSSE MARTIN" + "codePostal": "28310", + "codeCommune": "28300", + "libelleAcheminement": "POINVILLE", + "nomCommune": "POINVILLE" }, { - "codePostal": "56240", - "codeCommune": "56029", - "libelleAcheminement": "CALAN", - "nomCommune": "CALAN" + "codePostal": "16240", + "codeCommune": "16197", + "libelleAcheminement": "LA MAGDELEINE", + "nomCommune": "LA MAGDELEINE" }, { - "codePostal": "21110", - "codeCommune": "21632", - "libelleAcheminement": "THOREY EN PLAINE", - "nomCommune": "THOREY EN PLAINE" + "codePostal": "17290", + "codeCommune": "17480", + "libelleAcheminement": "VIRSON", + "nomCommune": "VIRSON" }, { - "codePostal": "23270", - "codeCommune": "23188", - "libelleAcheminement": "ST DIZIER LES DOMAINES", - "nomCommune": "ST DIZIER LES DOMAINES" + "codePostal": "28260", + "codeCommune": "28371", + "libelleAcheminement": "SAUSSAY", + "nomCommune": "SAUSSAY" }, { - "codePostal": "60480", - "codeCommune": "60535", - "libelleAcheminement": "REUIL SUR BRECHE", - "nomCommune": "REUIL SUR BRECHE" + "codePostal": "28150", + "codeCommune": "28304", + "libelleAcheminement": "PRASVILLE", + "nomCommune": "PRASVILLE" }, { - "codePostal": "56800", - "codeCommune": "56032", - "libelleAcheminement": "CAMPENEAC", - "nomCommune": "CAMPENEAC" + "codePostal": "16320", + "codeCommune": "16198", + "libelleAcheminement": "MAGNAC LAVALETTE VILLARS", + "nomCommune": "MAGNAC LAVALETTE VILLARS" }, { - "codePostal": "21460", - "codeCommune": "21635", - "libelleAcheminement": "THOSTE", - "nomCommune": "THOSTE" + "codePostal": "17340", + "codeCommune": "17483", + "libelleAcheminement": "YVES", + "nomCommune": "YVES" }, { - "codePostal": "23000", - "codeCommune": "23191", - "libelleAcheminement": "ST ELOI", - "nomCommune": "ST ELOI" + "codePostal": "28250", + "codeCommune": "28373", + "libelleAcheminement": "SENONCHES", + "nomCommune": "SENONCHES" }, { - "codePostal": "60220", - "codeCommune": "60545", - "libelleAcheminement": "ROMESCAMPS", - "nomCommune": "ROMESCAMPS" + "codePostal": "28270", + "codeCommune": "28308", + "libelleAcheminement": "PRUDEMANCHE", + "nomCommune": "PRUDEMANCHE" }, { - "codePostal": "56910", - "codeCommune": "56033", - "libelleAcheminement": "CARENTOIR", - "nomCommune": "CARENTOIR" + "codePostal": "16380", + "codeCommune": "16203", + "libelleAcheminement": "MAINZAC", + "nomCommune": "MAINZAC" }, { - "codePostal": "21120", - "codeCommune": "21638", - "libelleAcheminement": "TIL CHATEL", - "nomCommune": "TIL CHATEL" + "codePostal": "17340", + "codeCommune": "17483", + "libelleAcheminement": "YVES", + "nomCommune": "YVES" }, { - "codePostal": "23290", - "codeCommune": "23192", - "libelleAcheminement": "FURSAC", - "nomCommune": "FURSAC" + "codePostal": "28400", + "codeCommune": "28378", + "libelleAcheminement": "SOUANCE AU PERCHE", + "nomCommune": "SOUANCE AU PERCHE" }, { - "codePostal": "60140", - "codeCommune": "60547", - "libelleAcheminement": "ROSOY", - "nomCommune": "ROSOY" + "codePostal": "28270", + "codeCommune": "28315", + "libelleAcheminement": "REVERCOURT", + "nomCommune": "REVERCOURT" }, { - "codePostal": "56340", - "codeCommune": "56034", - "libelleAcheminement": "CARNAC", - "nomCommune": "CARNAC" + "codePostal": "16120", + "codeCommune": "16204", + "libelleAcheminement": "BELLEVIGNE", + "nomCommune": "BELLEVIGNE" }, { - "codePostal": "21130", - "codeCommune": "21639", - "libelleAcheminement": "TILLENAY", - "nomCommune": "TILLENAY" + "codePostal": "17730", + "codeCommune": "17484", + "libelleAcheminement": "PORT DES BARQUES", + "nomCommune": "PORT DES BARQUES" }, { - "codePostal": "23110", - "codeCommune": "23203", - "libelleAcheminement": "ST JULIEN LA GENETE", - "nomCommune": "ST JULIEN LA GENETE" + "codePostal": "28500", + "codeCommune": "28394", + "libelleAcheminement": "TREON", + "nomCommune": "TREON" }, { - "codePostal": "60620", - "codeCommune": "60548", - "libelleAcheminement": "ROSOY EN MULTIEN", - "nomCommune": "ROSOY EN MULTIEN" + "codePostal": "28270", + "codeCommune": "28322", + "libelleAcheminement": "RUEIL LA GADELIERE", + "nomCommune": "RUEIL LA GADELIERE" }, { - "codePostal": "56500", - "codeCommune": "56039", - "libelleAcheminement": "LA CHAPELLE NEUVE", - "nomCommune": "LA CHAPELLE NEUVE" + "codePostal": "16230", + "codeCommune": "16206", + "libelleAcheminement": "MANSLE", + "nomCommune": "MANSLE" }, { - "codePostal": "21460", - "codeCommune": "21640", - "libelleAcheminement": "TORCY ET POULIGNY", - "nomCommune": "TORCY ET POULIGNY" + "codePostal": "18220", + "codeCommune": "18003", + "libelleAcheminement": "LES AIX D ANGILLON", + "nomCommune": "LES AIX D ANGILLON" }, { - "codePostal": "23000", - "codeCommune": "23206", - "libelleAcheminement": "ST LAURENT", - "nomCommune": "ST LAURENT" + "codePostal": "28400", + "codeCommune": "28395", + "libelleAcheminement": "TRIZAY COUTRETOT ST SERGE", + "nomCommune": "TRIZAY COUTRETOT ST SERGE" }, { - "codePostal": "60690", - "codeCommune": "60550", - "libelleAcheminement": "ROTHOIS", - "nomCommune": "ROTHOIS" + "codePostal": "28190", + "codeCommune": "28324", + "libelleAcheminement": "ST ARNOULT DES BOIS", + "nomCommune": "ST ARNOULT DES BOIS" }, { - "codePostal": "56390", - "codeCommune": "56042", - "libelleAcheminement": "COLPO", - "nomCommune": "COLPO" + "codePostal": "16310", + "codeCommune": "16213", + "libelleAcheminement": "MAZEROLLES", + "nomCommune": "MAZEROLLES" }, { - "codePostal": "21460", - "codeCommune": "21642", - "libelleAcheminement": "TOUTRY", - "nomCommune": "TOUTRY" + "codePostal": "18340", + "codeCommune": "18008", + "libelleAcheminement": "ARCAY", + "nomCommune": "ARCAY" }, { - "codePostal": "23200", - "codeCommune": "23211", - "libelleAcheminement": "ST MARC A FRONGIER", - "nomCommune": "ST MARC A FRONGIER" + "codePostal": "28140", + "codeCommune": "28400", + "libelleAcheminement": "VARIZE", + "nomCommune": "VARIZE" }, { - "codePostal": "60690", - "codeCommune": "60557", - "libelleAcheminement": "ROY BOISSY", - "nomCommune": "ROY BOISSY" + "codePostal": "28200", + "codeCommune": "28329", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "56430", - "codeCommune": "56043", - "libelleAcheminement": "CONCORET", - "nomCommune": "CONCORET" + "codePostal": "16370", + "codeCommune": "16218", + "libelleAcheminement": "MESNAC", + "nomCommune": "MESNAC" }, { - "codePostal": "21310", - "codeCommune": "21644", - "libelleAcheminement": "TROCHERES", - "nomCommune": "TROCHERES" + "codePostal": "18140", + "codeCommune": "18012", + "libelleAcheminement": "ARGENVIERES", + "nomCommune": "ARGENVIERES" }, { - "codePostal": "23460", - "codeCommune": "23212", - "libelleAcheminement": "ST MARC A LOUBAUD", - "nomCommune": "ST MARC A LOUBAUD" + "codePostal": "28150", + "codeCommune": "28406", + "libelleAcheminement": "EOLE EN BEAUCE", + "nomCommune": "EOLE EN BEAUCE" }, { - "codePostal": "60310", - "codeCommune": "60558", - "libelleAcheminement": "ROYE SUR MATZ", - "nomCommune": "ROYE SUR MATZ" + "codePostal": "28240", + "codeCommune": "28335", + "libelleAcheminement": "ST ELIPH", + "nomCommune": "ST ELIPH" }, { - "codePostal": "56200", - "codeCommune": "56044", - "libelleAcheminement": "COURNON", - "nomCommune": "COURNON" + "codePostal": "16190", + "codeCommune": "16230", + "libelleAcheminement": "MONTMOREAU", + "nomCommune": "MONTMOREAU" }, { - "codePostal": "21440", - "codeCommune": "21646", - "libelleAcheminement": "TROUHAUT", - "nomCommune": "TROUHAUT" + "codePostal": "18260", + "codeCommune": "18014", + "libelleAcheminement": "ASSIGNY", + "nomCommune": "ASSIGNY" }, { - "codePostal": "23430", - "codeCommune": "23230", - "libelleAcheminement": "ST PIERRE CHERIGNAT", - "nomCommune": "ST PIERRE CHERIGNAT" + "codePostal": "28800", + "codeCommune": "28418", + "libelleAcheminement": "VILLIERS ST ORIEN", + "nomCommune": "VILLIERS ST ORIEN" }, { - "codePostal": "60420", - "codeCommune": "60564", - "libelleAcheminement": "SAINS MORAINVILLERS", - "nomCommune": "SAINS MORAINVILLERS" + "codePostal": "28190", + "codeCommune": "28337", + "libelleAcheminement": "ST GEORGES SUR EURE", + "nomCommune": "ST GEORGES SUR EURE" }, { - "codePostal": "56410", - "codeCommune": "56054", - "libelleAcheminement": "ERDEVEN", - "nomCommune": "ERDEVEN" + "codePostal": "16120", + "codeCommune": "16233", + "libelleAcheminement": "MOSNAC ST SIMEUX", + "nomCommune": "MOSNAC ST SIMEUX" }, { - "codePostal": "21121", - "codeCommune": "21651", - "libelleAcheminement": "VAL SUZON", - "nomCommune": "VAL SUZON" + "codePostal": "18520", + "codeCommune": "18018", + "libelleAcheminement": "AVORD", + "nomCommune": "AVORD" }, { - "codePostal": "23460", - "codeCommune": "23232", - "libelleAcheminement": "ST PIERRE BELLEVUE", - "nomCommune": "ST PIERRE BELLEVUE" + "codePostal": "28360", + "codeCommune": "28419", + "libelleAcheminement": "VITRAY EN BEAUCE", + "nomCommune": "VITRAY EN BEAUCE" }, { - "codePostal": "60220", - "codeCommune": "60566", - "libelleAcheminement": "ST ARNOULT", - "nomCommune": "ST ARNOULT" + "codePostal": "28400", + "codeCommune": "28342", + "libelleAcheminement": "ST JEAN PIERRE FIXTE", + "nomCommune": "ST JEAN PIERRE FIXTE" }, { - "codePostal": "56320", - "codeCommune": "56057", - "libelleAcheminement": "LE FAOUET", - "nomCommune": "LE FAOUET" + "codePostal": "16230", + "codeCommune": "16241", + "libelleAcheminement": "NANCLARS", + "nomCommune": "NANCLARS" }, { - "codePostal": "21400", - "codeCommune": "21655", - "libelleAcheminement": "VANVEY", - "nomCommune": "VANVEY" + "codePostal": "18210", + "codeCommune": "18021", + "libelleAcheminement": "BANNEGON", + "nomCommune": "BANNEGON" }, { - "codePostal": "23460", - "codeCommune": "23232", - "libelleAcheminement": "ST PIERRE BELLEVUE", - "nomCommune": "ST PIERRE BELLEVUE" + "codePostal": "28150", + "codeCommune": "28422", + "libelleAcheminement": "LES VILLAGES VOVEENS", + "nomCommune": "LES VILLAGES VOVEENS" }, { - "codePostal": "60650", - "codeCommune": "60567", - "libelleAcheminement": "ST AUBIN EN BRAY", - "nomCommune": "ST AUBIN EN BRAY" + "codePostal": "28350", + "codeCommune": "28348", + "libelleAcheminement": "ST LUBIN DES JONCHERETS", + "nomCommune": "ST LUBIN DES JONCHERETS" }, { - "codePostal": "56110", - "codeCommune": "56066", - "libelleAcheminement": "GOURIN", - "nomCommune": "GOURIN" + "codePostal": "16700", + "codeCommune": "16242", + "libelleAcheminement": "NANTEUIL EN VALLEE", + "nomCommune": "NANTEUIL EN VALLEE" }, { - "codePostal": "21370", - "codeCommune": "21661", - "libelleAcheminement": "VELARS SUR OUCHE", - "nomCommune": "VELARS SUR OUCHE" + "codePostal": "18240", + "codeCommune": "18026", + "libelleAcheminement": "BELLEVILLE SUR LOIRE", + "nomCommune": "BELLEVILLE SUR LOIRE" }, { - "codePostal": "23240", - "codeCommune": "23236", - "libelleAcheminement": "ST PRIEST LA PLAINE", - "nomCommune": "ST PRIEST LA PLAINE" + "codePostal": "28150", + "codeCommune": "28422", + "libelleAcheminement": "LES VILLAGES VOVEENS", + "nomCommune": "LES VILLAGES VOVEENS" }, { - "codePostal": "60149", - "codeCommune": "60570", - "libelleAcheminement": "ST CREPIN IBOUVILLERS", - "nomCommune": "ST CREPIN IBOUVILLERS" + "codePostal": "28190", + "codeCommune": "28350", + "libelleAcheminement": "ST LUPERCE", + "nomCommune": "ST LUPERCE" }, { - "codePostal": "56590", - "codeCommune": "56069", - "libelleAcheminement": "GROIX", - "nomCommune": "GROIX" + "codePostal": "16500", + "codeCommune": "16249", + "libelleAcheminement": "ORADOUR FANAIS", + "nomCommune": "ORADOUR FANAIS" }, { - "codePostal": "21150", - "codeCommune": "21663", - "libelleAcheminement": "VENAREY LES LAUMES", - "nomCommune": "VENAREY LES LAUMES" + "codePostal": "18520", + "codeCommune": "18027", + "libelleAcheminement": "BENGY SUR CRAON", + "nomCommune": "BENGY SUR CRAON" }, { - "codePostal": "23140", - "codeCommune": "23243", - "libelleAcheminement": "ST SILVAIN SOUS TOULX", - "nomCommune": "ST SILVAIN SOUS TOULX" + "codePostal": "28160", + "codeCommune": "28424", + "libelleAcheminement": "YEVRES", + "nomCommune": "YEVRES" }, { - "codePostal": "60130", - "codeCommune": "60581", - "libelleAcheminement": "ST JUST EN CHAUSSEE", - "nomCommune": "ST JUST EN CHAUSSEE" + "codePostal": "28240", + "codeCommune": "28354", + "libelleAcheminement": "ST MAURICE ST GERMAIN", + "nomCommune": "ST MAURICE ST GERMAIN" }, { - "codePostal": "56190", - "codeCommune": "56077", - "libelleAcheminement": "LE GUERNO", - "nomCommune": "LE GUERNO" + "codePostal": "16240", + "codeCommune": "16253", + "libelleAcheminement": "PAIZAY NAUDOUIN EMBOURIE", + "nomCommune": "PAIZAY NAUDOUIN EMBOURIE" }, { - "codePostal": "21260", - "codeCommune": "21665", - "libelleAcheminement": "VERNOIS LES VESVRES", - "nomCommune": "VERNOIS LES VESVRES" + "codePostal": "18210", + "codeCommune": "18029", + "libelleAcheminement": "BESSAIS LE FROMENTAL", + "nomCommune": "BESSAIS LE FROMENTAL" }, { - "codePostal": "23800", - "codeCommune": "23244", - "libelleAcheminement": "ST SULPICE LE DUNOIS", - "nomCommune": "ST SULPICE LE DUNOIS" + "codePostal": "29560", + "codeCommune": "29001", + "libelleAcheminement": "ARGOL", + "nomCommune": "ARGOL" }, { - "codePostal": "60170", - "codeCommune": "60582", - "libelleAcheminement": "ST LEGER AUX BOIS", - "nomCommune": "ST LEGER AUX BOIS" + "codePostal": "28260", + "codeCommune": "28355", + "libelleAcheminement": "ST OUEN MARCHEFROY", + "nomCommune": "ST OUEN MARCHEFROY" }, { - "codePostal": "56800", - "codeCommune": "56079", - "libelleAcheminement": "GUILLAC", - "nomCommune": "GUILLAC" + "codePostal": "16390", + "codeCommune": "16254", + "libelleAcheminement": "PALLUAUD", + "nomCommune": "PALLUAUD" }, { - "codePostal": "21120", - "codeCommune": "21666", - "libelleAcheminement": "VERNOT", - "nomCommune": "VERNOT" + "codePostal": "18410", + "codeCommune": "18030", + "libelleAcheminement": "BLANCAFORT", + "nomCommune": "BLANCAFORT" }, { - "codePostal": "23000", - "codeCommune": "23245", - "libelleAcheminement": "ST SULPICE LE GUERETOIS", - "nomCommune": "ST SULPICE LE GUERETOIS" + "codePostal": "29380", + "codeCommune": "29004", + "libelleAcheminement": "BANNALEC", + "nomCommune": "BANNALEC" }, { - "codePostal": "60650", - "codeCommune": "60591", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "28170", + "codeCommune": "28360", + "libelleAcheminement": "ST SAUVEUR MARVILLE", + "nomCommune": "ST SAUVEUR MARVILLE" }, { - "codePostal": "56690", - "codeCommune": "56097", - "libelleAcheminement": "LANDEVANT", - "nomCommune": "LANDEVANT" + "codePostal": "16250", + "codeCommune": "16258", + "libelleAcheminement": "PERIGNAC", + "nomCommune": "PERIGNAC" }, { - "codePostal": "21260", - "codeCommune": "21667", - "libelleAcheminement": "VERONNES", - "nomCommune": "VERONNES" + "codePostal": "18350", + "codeCommune": "18031", + "libelleAcheminement": "BLET", + "nomCommune": "BLET" }, { - "codePostal": "23460", - "codeCommune": "23249", - "libelleAcheminement": "ST YRIEIX LA MONTAGNE", - "nomCommune": "ST YRIEIX LA MONTAGNE" + "codePostal": "29690", + "codeCommune": "29007", + "libelleAcheminement": "BERRIEN", + "nomCommune": "BERRIEN" }, { - "codePostal": "60380", - "codeCommune": "60594", - "libelleAcheminement": "ST QUENTIN DES PRES", - "nomCommune": "ST QUENTIN DES PRES" + "codePostal": "28700", + "codeCommune": "28366", + "libelleAcheminement": "SANTEUIL", + "nomCommune": "SANTEUIL" }, { - "codePostal": "56120", - "codeCommune": "56102", - "libelleAcheminement": "FORGES DE LANOUEE", - "nomCommune": "FORGES DE LANOUEE" + "codePostal": "16260", + "codeCommune": "16261", + "libelleAcheminement": "LES PINS", + "nomCommune": "LES PINS" }, { - "codePostal": "21540", - "codeCommune": "21669", - "libelleAcheminement": "VERREY SOUS DREE", - "nomCommune": "VERREY SOUS DREE" + "codePostal": "18220", + "codeCommune": "18035", + "libelleAcheminement": "BRECY", + "nomCommune": "BRECY" }, { - "codePostal": "23250", - "codeCommune": "23253", - "libelleAcheminement": "THAURON", - "nomCommune": "THAURON" + "codePostal": "29820", + "codeCommune": "29011", + "libelleAcheminement": "BOHARS", + "nomCommune": "BOHARS" }, { - "codePostal": "60220", - "codeCommune": "60596", - "libelleAcheminement": "ST SAMSON LA POTERIE", - "nomCommune": "ST SAMSON LA POTERIE" + "codePostal": "28410", + "codeCommune": "28375", + "libelleAcheminement": "SERVILLE", + "nomCommune": "SERVILLE" }, { - "codePostal": "56220", - "codeCommune": "56111", - "libelleAcheminement": "LIMERZEL", - "nomCommune": "LIMERZEL" + "codePostal": "16700", + "codeCommune": "16268", + "libelleAcheminement": "POURSAC", + "nomCommune": "POURSAC" }, { - "codePostal": "21690", - "codeCommune": "21670", - "libelleAcheminement": "VERREY SOUS SALMAISE", - "nomCommune": "VERREY SOUS SALMAISE" + "codePostal": "18130", + "codeCommune": "18040", + "libelleAcheminement": "BUSSY", + "nomCommune": "BUSSY" }, { - "codePostal": "23120", - "codeCommune": "23257", - "libelleAcheminement": "VALLIERE", - "nomCommune": "VALLIERE" + "codePostal": "29890", + "codeCommune": "29021", + "libelleAcheminement": "PLOUNEOUR BRIGNOGAN PLAGES", + "nomCommune": "PLOUNEOUR BRIGNOGAN PLAGES" }, { - "codePostal": "60430", - "codeCommune": "60598", - "libelleAcheminement": "ST SULPICE", - "nomCommune": "ST SULPICE" + "codePostal": "28140", + "codeCommune": "28382", + "libelleAcheminement": "TERMINIERS", + "nomCommune": "TERMINIERS" }, { - "codePostal": "56300", - "codeCommune": "56125", - "libelleAcheminement": "MALGUENAC", - "nomCommune": "MALGUENAC" + "codePostal": "16400", + "codeCommune": "16271", + "libelleAcheminement": "PUYMOYEN", + "nomCommune": "PUYMOYEN" }, { - "codePostal": "21140", - "codeCommune": "21689", - "libelleAcheminement": "VILLARS ET VILLENOTTE", - "nomCommune": "VILLARS ET VILLENOTTE" + "codePostal": "18150", + "codeCommune": "18048", + "libelleAcheminement": "LA CHAPELLE HUGON", + "nomCommune": "LA CHAPELLE HUGON" }, { - "codePostal": "23800", - "codeCommune": "23263", - "libelleAcheminement": "VILLARD", - "nomCommune": "VILLARD" + "codePostal": "29150", + "codeCommune": "29025", + "libelleAcheminement": "CAST", + "nomCommune": "CAST" }, { - "codePostal": "60300", - "codeCommune": "60612", - "libelleAcheminement": "SENLIS", - "nomCommune": "SENLIS" + "codePostal": "28480", + "codeCommune": "28387", + "libelleAcheminement": "THIRON GARDAIS", + "nomCommune": "THIRON GARDAIS" }, { - "codePostal": "56130", - "codeCommune": "56126", - "libelleAcheminement": "MARZAN", - "nomCommune": "MARZAN" + "codePostal": "16240", + "codeCommune": "16273", + "libelleAcheminement": "RAIX", + "nomCommune": "RAIX" }, { - "codePostal": "21700", - "codeCommune": "21691", - "libelleAcheminement": "VILLEBICHOT", - "nomCommune": "VILLEBICHOT" + "codePostal": "18570", + "codeCommune": "18050", + "libelleAcheminement": "LA CHAPELLE ST URSIN", + "nomCommune": "LA CHAPELLE ST URSIN" }, { - "codePostal": "23260", - "codeCommune": "23265", - "libelleAcheminement": "LA VILLENEUVE", - "nomCommune": "LA VILLENEUVE" + "codePostal": "29770", + "codeCommune": "29028", + "libelleAcheminement": "CLEDEN CAP SIZUN", + "nomCommune": "CLEDEN CAP SIZUN" }, { - "codePostal": "60800", - "codeCommune": "60618", - "libelleAcheminement": "SERY MAGNEVAL", - "nomCommune": "SERY MAGNEVAL" + "codePostal": "28630", + "codeCommune": "28388", + "libelleAcheminement": "THIVARS", + "nomCommune": "THIVARS" }, { - "codePostal": "56320", - "codeCommune": "56131", - "libelleAcheminement": "MESLAN", - "nomCommune": "MESLAN" + "codePostal": "16170", + "codeCommune": "16286", + "libelleAcheminement": "ROUILLAC", + "nomCommune": "ROUILLAC" }, { - "codePostal": "21330", - "codeCommune": "21693", - "libelleAcheminement": "VILLEDIEU", - "nomCommune": "VILLEDIEU" + "codePostal": "18160", + "codeCommune": "18065", + "libelleAcheminement": "CHEZAL BENOIT", + "nomCommune": "CHEZAL BENOIT" }, { - "codePostal": "23260", - "codeCommune": "23266", - "libelleAcheminement": "LA VILLETELLE", - "nomCommune": "LA VILLETELLE" + "codePostal": "29360", + "codeCommune": "29031", + "libelleAcheminement": "CLOHARS CARNOET", + "nomCommune": "CLOHARS CARNOET" }, { - "codePostal": "60590", - "codeCommune": "60626", - "libelleAcheminement": "TALMONTIERS", - "nomCommune": "TALMONTIERS" + "codePostal": "28200", + "codeCommune": "28389", + "libelleAcheminement": "THIVILLE", + "nomCommune": "THIVILLE" }, { - "codePostal": "56230", - "codeCommune": "56135", - "libelleAcheminement": "MOLAC", - "nomCommune": "MOLAC" + "codePostal": "16440", + "codeCommune": "16287", + "libelleAcheminement": "ROULLET ST ESTEPHE", + "nomCommune": "ROULLET ST ESTEPHE" }, { - "codePostal": "21140", - "codeCommune": "21696", - "libelleAcheminement": "VILLENEUVE SOUS CHARIGNY", - "nomCommune": "VILLENEUVE SOUS CHARIGNY" + "codePostal": "18290", + "codeCommune": "18066", + "libelleAcheminement": "CIVRAY", + "nomCommune": "CIVRAY" }, { - "codePostal": "24220", - "codeCommune": "24006", - "libelleAcheminement": "ALLAS LES MINES", - "nomCommune": "ALLAS LES MINES" + "codePostal": "29450", + "codeCommune": "29038", + "libelleAcheminement": "COMMANA", + "nomCommune": "COMMANA" }, { - "codePostal": "60310", - "codeCommune": "60632", - "libelleAcheminement": "THIESCOURT", - "nomCommune": "THIESCOURT" + "codePostal": "28170", + "codeCommune": "28393", + "libelleAcheminement": "TREMBLAY LES VILLAGES", + "nomCommune": "TREMBLAY LES VILLAGES" }, { - "codePostal": "56380", - "codeCommune": "56136", - "libelleAcheminement": "MONTENEUF", - "nomCommune": "MONTENEUF" + "codePostal": "16350", + "codeCommune": "16310", + "libelleAcheminement": "ST COUTANT", + "nomCommune": "ST COUTANT" }, { - "codePostal": "21120", - "codeCommune": "21702", - "libelleAcheminement": "VILLEY SUR TILLE", - "nomCommune": "VILLEY SUR TILLE" + "codePostal": "18350", + "codeCommune": "18072", + "libelleAcheminement": "CORNUSSE", + "nomCommune": "CORNUSSE" }, { - "codePostal": "24160", - "codeCommune": "24009", - "libelleAcheminement": "ANLHIAC", - "nomCommune": "ANLHIAC" + "codePostal": "29900", + "codeCommune": "29039", + "libelleAcheminement": "CONCARNEAU", + "nomCommune": "CONCARNEAU" }, { - "codePostal": "60480", - "codeCommune": "60634", - "libelleAcheminement": "THIEUX", - "nomCommune": "THIEUX" + "codePostal": "28500", + "codeCommune": "28404", + "libelleAcheminement": "VERNOUILLET", + "nomCommune": "VERNOUILLET" }, { - "codePostal": "56800", - "codeCommune": "56139", - "libelleAcheminement": "MONTERTELOT", - "nomCommune": "MONTERTELOT" + "codePostal": "16450", + "codeCommune": "16329", + "libelleAcheminement": "ST LAURENT DE CERIS", + "nomCommune": "ST LAURENT DE CERIS" }, { - "codePostal": "21400", - "codeCommune": "21704", - "libelleAcheminement": "VILLIERS LE DUC", - "nomCommune": "VILLIERS LE DUC" + "codePostal": "18270", + "codeCommune": "18083", + "libelleAcheminement": "CULAN", + "nomCommune": "CULAN" }, { - "codePostal": "24430", - "codeCommune": "24010", - "libelleAcheminement": "ANNESSE ET BEAULIEU", - "nomCommune": "ANNESSE ET BEAULIEU" + "codePostal": "29460", + "codeCommune": "29045", + "libelleAcheminement": "DIRINON", + "nomCommune": "DIRINON" }, { - "codePostal": "60170", - "codeCommune": "60642", - "libelleAcheminement": "TRACY LE VAL", - "nomCommune": "TRACY LE VAL" + "codePostal": "28700", + "codeCommune": "28408", + "libelleAcheminement": "VIERVILLE", + "nomCommune": "VIERVILLE" }, { - "codePostal": "56190", - "codeCommune": "56143", - "libelleAcheminement": "MUZILLAC", - "nomCommune": "MUZILLAC" + "codePostal": "16500", + "codeCommune": "16337", + "libelleAcheminement": "ST MAURICE DES LIONS", + "nomCommune": "ST MAURICE DES LIONS" }, { - "codePostal": "21500", - "codeCommune": "21709", - "libelleAcheminement": "VISERNY", - "nomCommune": "VISERNY" + "codePostal": "18380", + "codeCommune": "18088", + "libelleAcheminement": "ENNORDRES", + "nomCommune": "ENNORDRES" }, { - "codePostal": "24260", - "codeCommune": "24015", - "libelleAcheminement": "AUDRIX", - "nomCommune": "AUDRIX" + "codePostal": "29100", + "codeCommune": "29046", + "libelleAcheminement": "DOUARNENEZ", + "nomCommune": "DOUARNENEZ" }, { - "codePostal": "60590", - "codeCommune": "60644", - "libelleAcheminement": "TRIE CHATEAU", - "nomCommune": "TRIE CHATEAU" + "codePostal": "28120", + "codeCommune": "28409", + "libelleAcheminement": "VIEUVICQ", + "nomCommune": "VIEUVICQ" }, { - "codePostal": "56500", - "codeCommune": "56144", - "libelleAcheminement": "EVELLYS", - "nomCommune": "EVELLYS" + "codePostal": "16130", + "codeCommune": "16343", + "libelleAcheminement": "ST PREUIL", + "nomCommune": "ST PREUIL" }, { - "codePostal": "21230", - "codeCommune": "21715", - "libelleAcheminement": "VOUDENAY", - "nomCommune": "VOUDENAY" + "codePostal": "18250", + "codeCommune": "18109", + "libelleAcheminement": "HENRICHEMONT", + "nomCommune": "HENRICHEMONT" }, { - "codePostal": "24330", - "codeCommune": "24026", - "libelleAcheminement": "BASSILLAC ET AUBEROCHE", - "nomCommune": "BASSILLAC ET AUBEROCHE" + "codePostal": "29500", + "codeCommune": "29051", + "libelleAcheminement": "ERGUE GABERIC", + "nomCommune": "ERGUE GABERIC" }, { - "codePostal": "60800", - "codeCommune": "60650", - "libelleAcheminement": "TRUMILLY", - "nomCommune": "TRUMILLY" + "codePostal": "28700", + "codeCommune": "28421", + "libelleAcheminement": "VOISE", + "nomCommune": "VOISE" }, { - "codePostal": "56500", - "codeCommune": "56144", - "libelleAcheminement": "EVELLYS", - "nomCommune": "EVELLYS" + "codePostal": "16390", + "codeCommune": "16350", + "libelleAcheminement": "ST SEVERIN", + "nomCommune": "ST SEVERIN" }, { - "codePostal": "22810", - "codeCommune": "22005", - "libelleAcheminement": "BELLE ISLE EN TERRE", - "nomCommune": "BELLE ISLE EN TERRE" + "codePostal": "18170", + "codeCommune": "18112", + "libelleAcheminement": "IDS ST ROCH", + "nomCommune": "IDS ST ROCH" }, { - "codePostal": "24640", - "codeCommune": "24026", - "libelleAcheminement": "BASSILLAC ET AUBEROCHE", - "nomCommune": "BASSILLAC ET AUBEROCHE" + "codePostal": "29650", + "codeCommune": "29067", + "libelleAcheminement": "GUERLESQUIN", + "nomCommune": "GUERLESQUIN" }, { - "codePostal": "60240", - "codeCommune": "60659", - "libelleAcheminement": "VAUDANCOURT", - "nomCommune": "VAUDANCOURT" + "codePostal": "28150", + "codeCommune": "28422", + "libelleAcheminement": "LES VILLAGES VOVEENS", + "nomCommune": "LES VILLAGES VOVEENS" }, { - "codePostal": "56130", - "codeCommune": "56147", - "libelleAcheminement": "NIVILLAC", - "nomCommune": "NIVILLAC" + "codePostal": "16480", + "codeCommune": "16354", + "libelleAcheminement": "STE SOULINE", + "nomCommune": "STE SOULINE" }, { - "codePostal": "22810", - "codeCommune": "22005", - "libelleAcheminement": "BELLE ISLE EN TERRE", - "nomCommune": "BELLE ISLE EN TERRE" + "codePostal": "18260", + "codeCommune": "18117", + "libelleAcheminement": "JARS", + "nomCommune": "JARS" }, { - "codePostal": "24400", - "codeCommune": "24029", - "libelleAcheminement": "BEAUPOUYET", - "nomCommune": "BEAUPOUYET" + "codePostal": "29730", + "codeCommune": "29072", + "libelleAcheminement": "GUILVINEC", + "nomCommune": "GUILVINEC" }, { - "codePostal": "60590", - "codeCommune": "60660", - "libelleAcheminement": "LE VAUMAIN", - "nomCommune": "LE VAUMAIN" + "codePostal": "29770", + "codeCommune": "29003", + "libelleAcheminement": "AUDIERNE", + "nomCommune": "AUDIERNE" }, { - "codePostal": "56920", - "codeCommune": "56151", - "libelleAcheminement": "NOYAL PONTIVY", - "nomCommune": "NOYAL PONTIVY" + "codePostal": "16710", + "codeCommune": "16358", + "libelleAcheminement": "ST YRIEIX SUR CHARENTE", + "nomCommune": "ST YRIEIX SUR CHARENTE" }, { - "codePostal": "22210", - "codeCommune": "22027", - "libelleAcheminement": "LE CAMBOUT", - "nomCommune": "LE CAMBOUT" + "codePostal": "18320", + "codeCommune": "18118", + "libelleAcheminement": "JOUET SUR L AUBOIS", + "nomCommune": "JOUET SUR L AUBOIS" }, { - "codePostal": "24130", - "codeCommune": "24051", - "libelleAcheminement": "BOSSET", - "nomCommune": "BOSSET" + "codePostal": "29620", + "codeCommune": "29073", + "libelleAcheminement": "GUIMAEC", + "nomCommune": "GUIMAEC" }, { - "codePostal": "60117", - "codeCommune": "60661", - "libelleAcheminement": "VAUMOISE", - "nomCommune": "VAUMOISE" + "codePostal": "29950", + "codeCommune": "29006", + "libelleAcheminement": "BENODET", + "nomCommune": "BENODET" }, { - "codePostal": "56130", - "codeCommune": "56153", - "libelleAcheminement": "PEAULE", - "nomCommune": "PEAULE" + "codePostal": "16480", + "codeCommune": "16365", + "libelleAcheminement": "SAUVIGNAC", + "nomCommune": "SAUVIGNAC" }, { - "codePostal": "22300", - "codeCommune": "22030", - "libelleAcheminement": "CAOUENNEC LANVEZEAC", - "nomCommune": "CAOUENNEC LANVEZEAC" + "codePostal": "18130", + "codeCommune": "18119", + "libelleAcheminement": "JUSSY CHAMPAGNE", + "nomCommune": "JUSSY CHAMPAGNE" }, { - "codePostal": "24560", - "codeCommune": "24054", - "libelleAcheminement": "BOUNIAGUES", - "nomCommune": "BOUNIAGUES" + "codePostal": "29490", + "codeCommune": "29075", + "libelleAcheminement": "GUIPAVAS", + "nomCommune": "GUIPAVAS" }, { - "codePostal": "60112", - "codeCommune": "60668", - "libelleAcheminement": "VERDEREL LES SAUQUEUSE", - "nomCommune": "VERDEREL LES SAUQUEUSE" + "codePostal": "29790", + "codeCommune": "29008", + "libelleAcheminement": "BEUZEC CAP SIZUN", + "nomCommune": "BEUZEC CAP SIZUN" }, { - "codePostal": "56800", - "codeCommune": "56165", - "libelleAcheminement": "PLOERMEL", - "nomCommune": "PLOERMEL" + "codePostal": "16130", + "codeCommune": "16366", + "libelleAcheminement": "SEGONZAC", + "nomCommune": "SEGONZAC" }, { - "codePostal": "22140", - "codeCommune": "22034", - "libelleAcheminement": "CAVAN", - "nomCommune": "CAVAN" + "codePostal": "18140", + "codeCommune": "18120", + "libelleAcheminement": "JUSSY LE CHAUDRIER", + "nomCommune": "JUSSY LE CHAUDRIER" }, { - "codePostal": "24310", - "codeCommune": "24055", - "libelleAcheminement": "BOURDEILLES", - "nomCommune": "BOURDEILLES" + "codePostal": "29670", + "codeCommune": "29079", + "libelleAcheminement": "HENVIC", + "nomCommune": "HENVIC" }, { - "codePostal": "60810", - "codeCommune": "60682", - "libelleAcheminement": "VILLERS ST FRAMBOURG OGNON", - "nomCommune": "VILLERS ST FRAMBOURG OGNON" + "codePostal": "29640", + "codeCommune": "29012", + "libelleAcheminement": "BOLAZEC", + "nomCommune": "BOLAZEC" }, { - "codePostal": "56400", - "codeCommune": "56167", - "libelleAcheminement": "PLOUGOUMELEN", - "nomCommune": "PLOUGOUMELEN" + "codePostal": "16440", + "codeCommune": "16370", + "libelleAcheminement": "SIREUIL", + "nomCommune": "SIREUIL" }, { - "codePostal": "22160", - "codeCommune": "22037", - "libelleAcheminement": "LA CHAPELLE NEUVE", - "nomCommune": "LA CHAPELLE NEUVE" + "codePostal": "18120", + "codeCommune": "18124", + "libelleAcheminement": "LAZENAY", + "nomCommune": "LAZENAY" }, { - "codePostal": "24320", - "codeCommune": "24057", - "libelleAcheminement": "BOURG DES MAISONS", - "nomCommune": "BOURG DES MAISONS" + "codePostal": "29100", + "codeCommune": "29090", + "libelleAcheminement": "KERLAZ", + "nomCommune": "KERLAZ" }, { - "codePostal": "60380", - "codeCommune": "60691", - "libelleAcheminement": "VILLERS VERMONT", - "nomCommune": "VILLERS VERMONT" + "codePostal": "29510", + "codeCommune": "29020", + "libelleAcheminement": "BRIEC", + "nomCommune": "BRIEC" }, { - "codePostal": "56680", - "codeCommune": "56169", - "libelleAcheminement": "PLOUHINEC", - "nomCommune": "PLOUHINEC" + "codePostal": "16260", + "codeCommune": "16375", + "libelleAcheminement": "SUAUX", + "nomCommune": "SUAUX" }, { - "codePostal": "22970", - "codeCommune": "22040", - "libelleAcheminement": "COADOUT", - "nomCommune": "COADOUT" + "codePostal": "18340", + "codeCommune": "18126", + "libelleAcheminement": "LEVET", + "nomCommune": "LEVET" }, { - "codePostal": "24150", - "codeCommune": "24060", - "libelleAcheminement": "BOURNIQUEL", - "nomCommune": "BOURNIQUEL" + "codePostal": "29890", + "codeCommune": "29091", + "libelleAcheminement": "KERLOUAN", + "nomCommune": "KERLOUAN" }, { - "codePostal": "60640", - "codeCommune": "60693", - "libelleAcheminement": "VILLESELVE", - "nomCommune": "VILLESELVE" + "codePostal": "29890", + "codeCommune": "29021", + "libelleAcheminement": "PLOUNEOUR BRIGNOGAN PLAGES", + "nomCommune": "PLOUNEOUR BRIGNOGAN PLAGES" }, { - "codePostal": "56400", - "codeCommune": "56175", - "libelleAcheminement": "PLUMERGAT", - "nomCommune": "PLUMERGAT" + "codePostal": "16360", + "codeCommune": "16384", + "libelleAcheminement": "TOUVERAC", + "nomCommune": "TOUVERAC" }, { - "codePostal": "22430", - "codeCommune": "22054", - "libelleAcheminement": "ERQUY", - "nomCommune": "ERQUY" + "codePostal": "18340", + "codeCommune": "18129", + "libelleAcheminement": "LISSAY LOCHY", + "nomCommune": "LISSAY LOCHY" }, { - "codePostal": "24320", - "codeCommune": "24062", - "libelleAcheminement": "BOUTEILLES ST SEBASTIEN", - "nomCommune": "BOUTEILLES ST SEBASTIEN" + "codePostal": "29260", + "codeCommune": "29094", + "libelleAcheminement": "KERNOUES", + "nomCommune": "KERNOUES" }, { - "codePostal": "60420", - "codeCommune": "60698", - "libelleAcheminement": "WACQUEMOULIN", - "nomCommune": "WACQUEMOULIN" + "codePostal": "29660", + "codeCommune": "29023", + "libelleAcheminement": "CARANTEC", + "nomCommune": "CARANTEC" }, { - "codePostal": "56290", - "codeCommune": "56181", - "libelleAcheminement": "PORT LOUIS", - "nomCommune": "PORT LOUIS" + "codePostal": "16460", + "codeCommune": "16396", + "libelleAcheminement": "VENTOUSE", + "nomCommune": "VENTOUSE" }, { - "codePostal": "22630", - "codeCommune": "22056", - "libelleAcheminement": "EVRAN", - "nomCommune": "EVRAN" + "codePostal": "18500", + "codeCommune": "18141", + "libelleAcheminement": "MEHUN SUR YEVRE", + "nomCommune": "MEHUN SUR YEVRE" }, { - "codePostal": "24360", - "codeCommune": "24071", - "libelleAcheminement": "BUSSIERE BADIL", - "nomCommune": "BUSSIERE BADIL" + "codePostal": "29860", + "codeCommune": "29095", + "libelleAcheminement": "KERSAINT PLABENNEC", + "nomCommune": "KERSAINT PLABENNEC" }, { - "codePostal": "60420", - "codeCommune": "60702", - "libelleAcheminement": "WELLES PERENNES", - "nomCommune": "WELLES PERENNES" + "codePostal": "29360", + "codeCommune": "29031", + "libelleAcheminement": "CLOHARS CARNOET", + "nomCommune": "CLOHARS CARNOET" }, { - "codePostal": "56140", - "codeCommune": "56191", - "libelleAcheminement": "REMINIAC", - "nomCommune": "REMINIAC" + "codePostal": "16510", + "codeCommune": "16400", + "libelleAcheminement": "VERTEUIL SUR CHARENTE", + "nomCommune": "VERTEUIL SUR CHARENTE" }, { - "codePostal": "22460", - "codeCommune": "22068", - "libelleAcheminement": "GRACE UZEL", - "nomCommune": "GRACE UZEL" + "codePostal": "18200", + "codeCommune": "18142", + "libelleAcheminement": "MEILLANT", + "nomCommune": "MEILLANT" }, { - "codePostal": "24610", - "codeCommune": "24083", - "libelleAcheminement": "CARSAC DE GURSON", - "nomCommune": "CARSAC DE GURSON" + "codePostal": "29830", + "codeCommune": "29099", + "libelleAcheminement": "LAMPAUL PLOUDALMEZEAU", + "nomCommune": "LAMPAUL PLOUDALMEZEAU" }, { - "codePostal": "61120", - "codeCommune": "61010", - "libelleAcheminement": "AUBRY LE PANTHOU", - "nomCommune": "AUBRY LE PANTHOU" + "codePostal": "29190", + "codeCommune": "29033", + "libelleAcheminement": "LE CLOITRE PLEYBEN", + "nomCommune": "LE CLOITRE PLEYBEN" }, { - "codePostal": "56130", - "codeCommune": "56195", - "libelleAcheminement": "LA ROCHE BERNARD", - "nomCommune": "LA ROCHE BERNARD" + "codePostal": "16300", + "codeCommune": "16405", + "libelleAcheminement": "VIGNOLLES", + "nomCommune": "VIGNOLLES" }, { - "codePostal": "22200", - "codeCommune": "22070", - "libelleAcheminement": "GUINGAMP", - "nomCommune": "GUINGAMP" + "codePostal": "18300", + "codeCommune": "18146", + "libelleAcheminement": "MENETREOL SOUS SANCERRE", + "nomCommune": "MENETREOL SOUS SANCERRE" }, { - "codePostal": "24380", - "codeCommune": "24094", - "libelleAcheminement": "CHALAGNAC", - "nomCommune": "CHALAGNAC" + "codePostal": "29800", + "codeCommune": "29103", + "libelleAcheminement": "LANDERNEAU", + "nomCommune": "LANDERNEAU" }, { - "codePostal": "61160", - "codeCommune": "61023", - "libelleAcheminement": "BAILLEUL", - "nomCommune": "BAILLEUL" + "codePostal": "29530", + "codeCommune": "29036", + "libelleAcheminement": "COLLOREC", + "nomCommune": "COLLOREC" }, { - "codePostal": "56220", - "codeCommune": "56196", - "libelleAcheminement": "ROCHEFORT EN TERRE", - "nomCommune": "ROCHEFORT EN TERRE" + "codePostal": "16240", + "codeCommune": "16413", + "libelleAcheminement": "VILLIERS LE ROUX", + "nomCommune": "VILLIERS LE ROUX" }, { - "codePostal": "22270", - "codeCommune": "22084", - "libelleAcheminement": "JUGON LES LACS COMMUNE NOUVELLE", - "nomCommune": "JUGON LES LACS COMMUNE NOUVELLE" + "codePostal": "18380", + "codeCommune": "18149", + "libelleAcheminement": "MERY ES BOIS", + "nomCommune": "MERY ES BOIS" }, { - "codePostal": "24320", - "codeCommune": "24097", - "libelleAcheminement": "CHAMPAGNE ET FONTAINE", - "nomCommune": "CHAMPAGNE ET FONTAINE" + "codePostal": "29260", + "codeCommune": "29124", + "libelleAcheminement": "LESNEVEN", + "nomCommune": "LESNEVEN" }, { - "codePostal": "61210", - "codeCommune": "61028", - "libelleAcheminement": "BAZOCHES AU HOULME", - "nomCommune": "BAZOCHES AU HOULME" + "codePostal": "29120", + "codeCommune": "29037", + "libelleAcheminement": "COMBRIT", + "nomCommune": "COMBRIT" }, { - "codePostal": "56800", - "codeCommune": "56197", - "libelleAcheminement": "VAL D OUST", - "nomCommune": "VAL D OUST" + "codePostal": "16330", + "codeCommune": "16419", + "libelleAcheminement": "VOUHARTE", + "nomCommune": "VOUHARTE" }, { - "codePostal": "22110", - "codeCommune": "22087", - "libelleAcheminement": "KERGRIST MOELOU", - "nomCommune": "KERGRIST MOELOU" + "codePostal": "18220", + "codeCommune": "18156", + "libelleAcheminement": "MOROGUES", + "nomCommune": "MOROGUES" }, { - "codePostal": "24190", - "codeCommune": "24104", - "libelleAcheminement": "CHANTERAC", - "nomCommune": "CHANTERAC" + "codePostal": "29390", + "codeCommune": "29125", + "libelleAcheminement": "LEUHAN", + "nomCommune": "LEUHAN" }, { - "codePostal": "61190", - "codeCommune": "61034", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "29160", + "codeCommune": "29042", + "libelleAcheminement": "CROZON", + "nomCommune": "CROZON" }, { - "codePostal": "56110", - "codeCommune": "56199", - "libelleAcheminement": "ROUDOUALLEC", - "nomCommune": "ROUDOUALLEC" + "codePostal": "17123", + "codeCommune": "17004", + "libelleAcheminement": "ILE D AIX", + "nomCommune": "ILE D AIX" }, { - "codePostal": "22480", - "codeCommune": "22088", - "libelleAcheminement": "KERIEN", - "nomCommune": "KERIEN" + "codePostal": "18600", + "codeCommune": "18161", + "libelleAcheminement": "NEUILLY EN DUN", + "nomCommune": "NEUILLY EN DUN" }, { - "codePostal": "24530", - "codeCommune": "24129", - "libelleAcheminement": "CONDAT SUR TRINCOU", - "nomCommune": "CONDAT SUR TRINCOU" + "codePostal": "29400", + "codeCommune": "29131", + "libelleAcheminement": "LOCMELAR", + "nomCommune": "LOCMELAR" }, { - "codePostal": "61600", - "codeCommune": "61035", - "libelleAcheminement": "BEAUVAIN", - "nomCommune": "BEAUVAIN" + "codePostal": "29150", + "codeCommune": "29044", + "libelleAcheminement": "DINEAULT", + "nomCommune": "DINEAULT" }, { - "codePostal": "56450", - "codeCommune": "56205", - "libelleAcheminement": "ST ARMEL", - "nomCommune": "ST ARMEL" + "codePostal": "17540", + "codeCommune": "17007", + "libelleAcheminement": "ANAIS", + "nomCommune": "ANAIS" }, { - "codePostal": "22450", - "codeCommune": "22090", - "libelleAcheminement": "KERMARIA SULARD", - "nomCommune": "KERMARIA SULARD" + "codePostal": "18390", + "codeCommune": "18166", + "libelleAcheminement": "NOHANT EN GOUT", + "nomCommune": "NOHANT EN GOUT" }, { - "codePostal": "24800", - "codeCommune": "24134", - "libelleAcheminement": "CORGNAC SUR L ISLE", - "nomCommune": "CORGNAC SUR L ISLE" + "codePostal": "29470", + "codeCommune": "29140", + "libelleAcheminement": "LOPERHET", + "nomCommune": "LOPERHET" }, { - "codePostal": "61220", - "codeCommune": "61040", - "libelleAcheminement": "BELLOU EN HOULME", - "nomCommune": "BELLOU EN HOULME" + "codePostal": "29370", + "codeCommune": "29049", + "libelleAcheminement": "ELLIANT", + "nomCommune": "ELLIANT" }, { - "codePostal": "56150", - "codeCommune": "56207", - "libelleAcheminement": "ST BARTHELEMY", - "nomCommune": "ST BARTHELEMY" + "codePostal": "17540", + "codeCommune": "17009", + "libelleAcheminement": "ANGLIERS", + "nomCommune": "ANGLIERS" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "18390", + "codeCommune": "18174", + "libelleAcheminement": "OSMOY", + "nomCommune": "OSMOY" }, { - "codePostal": "24220", - "codeCommune": "24142", - "libelleAcheminement": "COUX ET BIGAROQUE MOUZENS", - "nomCommune": "COUX ET BIGAROQUE MOUZENS" + "codePostal": "29140", + "codeCommune": "29146", + "libelleAcheminement": "MELGVEN", + "nomCommune": "MELGVEN" }, { - "codePostal": "61340", - "codeCommune": "61043", - "libelleAcheminement": "BERD HUIS", - "nomCommune": "BERD HUIS" + "codePostal": "29770", + "codeCommune": "29063", + "libelleAcheminement": "GOULIEN", + "nomCommune": "GOULIEN" }, { - "codePostal": "56540", - "codeCommune": "56210", - "libelleAcheminement": "ST CARADEC TREGOMEL", - "nomCommune": "ST CARADEC TREGOMEL" + "codePostal": "17380", + "codeCommune": "17017", + "libelleAcheminement": "ARCHINGEAY", + "nomCommune": "ARCHINGEAY" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "18200", + "codeCommune": "18178", + "libelleAcheminement": "LA PERCHE", + "nomCommune": "LA PERCHE" }, { - "codePostal": "24150", - "codeCommune": "24143", - "libelleAcheminement": "COUZE ET ST FRONT", - "nomCommune": "COUZE ET ST FRONT" + "codePostal": "29242", + "codeCommune": "29155", + "libelleAcheminement": "ILE D OUESSANT", + "nomCommune": "OUESSANT" }, { - "codePostal": "61430", - "codeCommune": "61044", - "libelleAcheminement": "BERJOU", - "nomCommune": "BERJOU" + "codePostal": "29710", + "codeCommune": "29070", + "libelleAcheminement": "GUILER SUR GOYEN", + "nomCommune": "GUILER SUR GOYEN" }, { - "codePostal": "56920", - "codeCommune": "56213", - "libelleAcheminement": "ST GERAND CROIXANVEC", - "nomCommune": "ST GERAND CROIXANVEC" + "codePostal": "17400", + "codeCommune": "17022", + "libelleAcheminement": "ASNIERES LA GIRAUD", + "nomCommune": "ASNIERES LA GIRAUD" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "18110", + "codeCommune": "18179", + "libelleAcheminement": "PIGNY", + "nomCommune": "PIGNY" }, { - "codePostal": "24270", - "codeCommune": "24158", - "libelleAcheminement": "DUSSAC", - "nomCommune": "DUSSAC" + "codePostal": "29760", + "codeCommune": "29158", + "libelleAcheminement": "PENMARCH", + "nomCommune": "PENMARCH" }, { - "codePostal": "61110", - "codeCommune": "61050", - "libelleAcheminement": "COUR MAUGIS SUR HUISNE", - "nomCommune": "COUR MAUGIS SUR HUISNE" + "codePostal": "29253", + "codeCommune": "29082", + "libelleAcheminement": "ILE DE BATZ", + "nomCommune": "ILE DE BATZ" }, { - "codePostal": "56460", - "codeCommune": "56219", - "libelleAcheminement": "ST GUYOMARD", - "nomCommune": "ST GUYOMARD" + "codePostal": "17160", + "codeCommune": "17029", + "libelleAcheminement": "BAGNIZEAU", + "nomCommune": "BAGNIZEAU" }, { - "codePostal": "22400", - "codeCommune": "22098", - "libelleAcheminement": "LANDEHEN", - "nomCommune": "LANDEHEN" + "codePostal": "18290", + "codeCommune": "18181", + "libelleAcheminement": "PLOU", + "nomCommune": "PLOU" }, { - "codePostal": "24560", - "codeCommune": "24168", - "libelleAcheminement": "PLAISANCE", - "nomCommune": "PLAISANCE" + "codePostal": "29860", + "codeCommune": "29160", + "libelleAcheminement": "PLABENNEC", + "nomCommune": "PLABENNEC" }, { - "codePostal": "61110", - "codeCommune": "61050", - "libelleAcheminement": "COUR MAUGIS SUR HUISNE", - "nomCommune": "COUR MAUGIS SUR HUISNE" + "codePostal": "29980", + "codeCommune": "29085", + "libelleAcheminement": "ILE TUDY", + "nomCommune": "ILE TUDY" }, { - "codePostal": "56700", - "codeCommune": "56220", - "libelleAcheminement": "STE HELENE", - "nomCommune": "STE HELENE" + "codePostal": "17490", + "codeCommune": "17035", + "libelleAcheminement": "BAZAUGES", + "nomCommune": "BAZAUGES" }, { - "codePostal": "22130", - "codeCommune": "22105", - "libelleAcheminement": "LANGUENAN", - "nomCommune": "LANGUENAN" + "codePostal": "18290", + "codeCommune": "18182", + "libelleAcheminement": "POISIEUX", + "nomCommune": "POISIEUX" }, { - "codePostal": "24260", - "codeCommune": "24172", - "libelleAcheminement": "LES EYZIES", - "nomCommune": "LES EYZIES" + "codePostal": "29410", + "codeCommune": "29163", + "libelleAcheminement": "PLEYBER CHRIST", + "nomCommune": "PLEYBER CHRIST" }, { - "codePostal": "61570", - "codeCommune": "61055", - "libelleAcheminement": "BOUCE", - "nomCommune": "BOUCE" + "codePostal": "29460", + "codeCommune": "29086", + "libelleAcheminement": "IRVILLAC", + "nomCommune": "IRVILLAC" }, { - "codePostal": "56350", - "codeCommune": "56223", - "libelleAcheminement": "ST JEAN LA POTERIE", - "nomCommune": "ST JEAN LA POTERIE" + "codePostal": "17620", + "codeCommune": "17036", + "libelleAcheminement": "BEAUGEAY", + "nomCommune": "BEAUGEAY" }, { - "codePostal": "22300", - "codeCommune": "22113", - "libelleAcheminement": "LANNION", - "nomCommune": "LANNION" + "codePostal": "18170", + "codeCommune": "18193", + "libelleAcheminement": "REZAY", + "nomCommune": "REZAY" }, { - "codePostal": "24620", - "codeCommune": "24172", - "libelleAcheminement": "LES EYZIES", - "nomCommune": "LES EYZIES" + "codePostal": "29740", + "codeCommune": "29165", + "libelleAcheminement": "PLOBANNALEC LESCONIL", + "nomCommune": "PLOBANNALEC LESCONIL" }, { - "codePostal": "61110", - "codeCommune": "61061", - "libelleAcheminement": "BRETONCELLES", - "nomCommune": "BRETONCELLES" + "codePostal": "29100", + "codeCommune": "29087", + "libelleAcheminement": "LE JUCH", + "nomCommune": "LE JUCH" }, { - "codePostal": "56140", - "codeCommune": "56228", - "libelleAcheminement": "ST MARCEL", - "nomCommune": "ST MARCEL" + "codePostal": "17490", + "codeCommune": "17037", + "libelleAcheminement": "BEAUVAIS SUR MATHA", + "nomCommune": "BEAUVAIS SUR MATHA" }, { - "codePostal": "22410", - "codeCommune": "22117", - "libelleAcheminement": "LANTIC", - "nomCommune": "LANTIC" + "codePostal": "18110", + "codeCommune": "18206", + "libelleAcheminement": "ST ELOY DE GY", + "nomCommune": "ST ELOY DE GY" }, { - "codePostal": "24560", - "codeCommune": "24176", - "libelleAcheminement": "FAURILLES", - "nomCommune": "FAURILLES" + "codePostal": "29700", + "codeCommune": "29170", + "libelleAcheminement": "PLOMELIN", + "nomCommune": "PLOMELIN" }, { - "codePostal": "61120", - "codeCommune": "61071", - "libelleAcheminement": "CAMEMBERT", - "nomCommune": "CAMEMBERT" + "codePostal": "29870", + "codeCommune": "29101", + "libelleAcheminement": "LANDEDA", + "nomCommune": "LANDEDA" }, { - "codePostal": "56200", - "codeCommune": "56229", - "libelleAcheminement": "ST MARTIN SUR OUST", - "nomCommune": "ST MARTIN SUR OUST" + "codePostal": "17400", + "codeCommune": "17046", + "libelleAcheminement": "BIGNAY", + "nomCommune": "BIGNAY" }, { - "codePostal": "22100", - "codeCommune": "22118", - "libelleAcheminement": "LANVALLAY", - "nomCommune": "LANVALLAY" + "codePostal": "18100", + "codeCommune": "18210", + "libelleAcheminement": "ST GEORGES SUR LA PREE", + "nomCommune": "ST GEORGES SUR LA PREE" }, { - "codePostal": "24450", - "codeCommune": "24180", - "libelleAcheminement": "FIRBEIX", - "nomCommune": "FIRBEIX" + "codePostal": "29710", + "codeCommune": "29173", + "libelleAcheminement": "PLONEIS", + "nomCommune": "PLONEIS" }, { - "codePostal": "61320", - "codeCommune": "61080", - "libelleAcheminement": "CHAHAINS", - "nomCommune": "CHAHAINS" + "codePostal": "29430", + "codeCommune": "29111", + "libelleAcheminement": "LANHOUARNEAU", + "nomCommune": "LANHOUARNEAU" }, { - "codePostal": "56910", - "codeCommune": "56230", - "libelleAcheminement": "ST NICOLAS DU TERTRE", - "nomCommune": "ST NICOLAS DU TERTRE" + "codePostal": "17560", + "codeCommune": "17058", + "libelleAcheminement": "BOURCEFRANC LE CHAPUS", + "nomCommune": "BOURCEFRANC LE CHAPUS" }, { - "codePostal": "22100", - "codeCommune": "22118", - "libelleAcheminement": "LANVALLAY", - "nomCommune": "LANVALLAY" + "codePostal": "18320", + "codeCommune": "18215", + "libelleAcheminement": "ST HILAIRE DE GONDILLY", + "nomCommune": "ST HILAIRE DE GONDILLY" }, { - "codePostal": "24580", - "codeCommune": "24183", - "libelleAcheminement": "FLEURAC", - "nomCommune": "FLEURAC" + "codePostal": "29550", + "codeCommune": "29176", + "libelleAcheminement": "PLONEVEZ PORZAY", + "nomCommune": "PLONEVEZ PORZAY" }, { - "codePostal": "61390", - "codeCommune": "61082", - "libelleAcheminement": "LE CHALANGE", - "nomCommune": "LE CHALANGE" + "codePostal": "29620", + "codeCommune": "29113", + "libelleAcheminement": "LANMEUR", + "nomCommune": "LANMEUR" }, { - "codePostal": "56250", - "codeCommune": "56231", - "libelleAcheminement": "ST NOLFF", - "nomCommune": "ST NOLFF" + "codePostal": "17700", + "codeCommune": "17063", + "libelleAcheminement": "BREUIL LA REORTE", + "nomCommune": "BREUIL LA REORTE" }, { - "codePostal": "22290", - "codeCommune": "22121", - "libelleAcheminement": "LANVOLLON", - "nomCommune": "LANVOLLON" + "codePostal": "18350", + "codeCommune": "18215", + "libelleAcheminement": "ST HILAIRE DE GONDILLY", + "nomCommune": "ST HILAIRE DE GONDILLY" }, { - "codePostal": "24210", - "codeCommune": "24188", - "libelleAcheminement": "FOSSEMAGNE", - "nomCommune": "FOSSEMAGNE" + "codePostal": "29650", + "codeCommune": "29183", + "libelleAcheminement": "PLOUEGAT MOYSAN", + "nomCommune": "PLOUEGAT MOYSAN" }, { - "codePostal": "61210", - "codeCommune": "61084", - "libelleAcheminement": "CHAMPCERIE", - "nomCommune": "CHAMPCERIE" + "codePostal": "29640", + "codeCommune": "29114", + "libelleAcheminement": "LANNEANOU", + "nomCommune": "LANNEANOU" }, { - "codePostal": "56130", - "codeCommune": "56250", - "libelleAcheminement": "THEHILLAC", - "nomCommune": "THEHILLAC" + "codePostal": "17430", + "codeCommune": "17075", + "libelleAcheminement": "CABARIOT", + "nomCommune": "CABARIOT" }, { - "codePostal": "22340", - "codeCommune": "22128", - "libelleAcheminement": "LOCARN", - "nomCommune": "LOCARN" + "codePostal": "18370", + "codeCommune": "18217", + "libelleAcheminement": "ST JEANVRIN", + "nomCommune": "ST JEANVRIN" }, { - "codePostal": "24680", - "codeCommune": "24194", - "libelleAcheminement": "GARDONNE", - "nomCommune": "GARDONNE" + "codePostal": "29470", + "codeCommune": "29189", + "libelleAcheminement": "PLOUGASTEL DAOULAS", + "nomCommune": "PLOUGASTEL DAOULAS" }, { - "codePostal": "61100", - "codeCommune": "61094", - "libelleAcheminement": "LA CHAPELLE AU MOINE", - "nomCommune": "LA CHAPELLE AU MOINE" + "codePostal": "29520", + "codeCommune": "29122", + "libelleAcheminement": "LAZ", + "nomCommune": "LAZ" }, { - "codePostal": "56450", - "codeCommune": "56251", - "libelleAcheminement": "THEIX NOYALO", - "nomCommune": "THEIX NOYALO" + "codePostal": "17130", + "codeCommune": "17092", + "libelleAcheminement": "CHARTUZAC", + "nomCommune": "CHARTUZAC" }, { - "codePostal": "22480", - "codeCommune": "22139", - "libelleAcheminement": "MAGOAR", - "nomCommune": "MAGOAR" + "codePostal": "18140", + "codeCommune": "18224", + "libelleAcheminement": "ST MARTIN DES CHAMPS", + "nomCommune": "ST MARTIN DES CHAMPS" }, { - "codePostal": "24170", - "codeCommune": "24206", - "libelleAcheminement": "GRIVES", - "nomCommune": "GRIVES" + "codePostal": "29217", + "codeCommune": "29190", + "libelleAcheminement": "PLOUGONVELIN", + "nomCommune": "PLOUGONVELIN" }, { - "codePostal": "61230", - "codeCommune": "61108", - "libelleAcheminement": "CISAI ST AUBIN", - "nomCommune": "CISAI ST AUBIN" + "codePostal": "29670", + "codeCommune": "29132", + "libelleAcheminement": "LOCQUENOLE", + "nomCommune": "LOCQUENOLE" }, { - "codePostal": "56140", - "codeCommune": "56253", - "libelleAcheminement": "TREAL", - "nomCommune": "TREAL" + "codePostal": "17600", + "codeCommune": "17097", + "libelleAcheminement": "LE CHAY", + "nomCommune": "LE CHAY" }, { - "codePostal": "22110", - "codeCommune": "22146", - "libelleAcheminement": "MELLIONNEC", - "nomCommune": "MELLIONNEC" + "codePostal": "18700", + "codeCommune": "18227", + "libelleAcheminement": "STE MONTAINE", + "nomCommune": "STE MONTAINE" }, { - "codePostal": "24410", - "codeCommune": "24216", - "libelleAcheminement": "LA JEMAYE PONTEYRAUD", - "nomCommune": "LA JEMAYE PONTEYRAUD" + "codePostal": "29217", + "codeCommune": "29190", + "libelleAcheminement": "PLOUGONVELIN", + "nomCommune": "PLOUGONVELIN" }, { - "codePostal": "61360", - "codeCommune": "61121", - "libelleAcheminement": "COULIMER", - "nomCommune": "COULIMER" + "codePostal": "29310", + "codeCommune": "29136", + "libelleAcheminement": "LOCUNOLE", + "nomCommune": "LOCUNOLE" }, { - "codePostal": "56190", - "codeCommune": "56259", - "libelleAcheminement": "LA TRINITE SURZUR", - "nomCommune": "LA TRINITE SURZUR" + "codePostal": "17150", + "codeCommune": "17116", + "libelleAcheminement": "CONSAC", + "nomCommune": "CONSAC" }, { - "codePostal": "22230", - "codeCommune": "22148", - "libelleAcheminement": "MERILLAC", - "nomCommune": "MERILLAC" + "codePostal": "18170", + "codeCommune": "18230", + "libelleAcheminement": "ST PIERRE LES BOIS", + "nomCommune": "ST PIERRE LES BOIS" }, { - "codePostal": "24130", - "codeCommune": "24222", - "libelleAcheminement": "LA FORCE", - "nomCommune": "LA FORCE" + "codePostal": "29810", + "codeCommune": "29201", + "libelleAcheminement": "PLOUMOGUER", + "nomCommune": "PLOUMOGUER" }, { - "codePostal": "61400", - "codeCommune": "61129", - "libelleAcheminement": "COURGEON", - "nomCommune": "COURGEON" + "codePostal": "29190", + "codeCommune": "29142", + "libelleAcheminement": "LOTHEY", + "nomCommune": "LOTHEY" }, { - "codePostal": "56400", - "codeCommune": "56262", - "libelleAcheminement": "LE BONO", - "nomCommune": "BONO" + "codePostal": "17600", + "codeCommune": "17119", + "libelleAcheminement": "CORME ECLUSE", + "nomCommune": "CORME ECLUSE" }, { - "codePostal": "22460", - "codeCommune": "22149", - "libelleAcheminement": "MERLEAC", - "nomCommune": "MERLEAC" + "codePostal": "18210", + "codeCommune": "18231", + "libelleAcheminement": "ST PIERRE LES ETIEUX", + "nomCommune": "ST PIERRE LES ETIEUX" }, { - "codePostal": "24270", - "codeCommune": "24227", - "libelleAcheminement": "LANOUAILLE", - "nomCommune": "LANOUAILLE" + "codePostal": "29400", + "codeCommune": "29204", + "libelleAcheminement": "PLOUNEVENTER", + "nomCommune": "PLOUNEVENTER" }, { - "codePostal": "61250", - "codeCommune": "61141", - "libelleAcheminement": "CUISSAI", - "nomCommune": "CUISSAI" + "codePostal": "29420", + "codeCommune": "29148", + "libelleAcheminement": "MESPAUL", + "nomCommune": "MESPAUL" }, { - "codePostal": "57590", - "codeCommune": "57009", - "libelleAcheminement": "AJONCOURT", - "nomCommune": "AJONCOURT" + "codePostal": "17670", + "codeCommune": "17121", + "libelleAcheminement": "LA COUARDE SUR MER", + "nomCommune": "LA COUARDE SUR MER" }, { - "codePostal": "22200", - "codeCommune": "22156", - "libelleAcheminement": "MOUSTERU", - "nomCommune": "MOUSTERU" + "codePostal": "18370", + "codeCommune": "18232", + "libelleAcheminement": "ST PRIEST LA MARCHE", + "nomCommune": "ST PRIEST LA MARCHE" }, { - "codePostal": "24540", - "codeCommune": "24231", - "libelleAcheminement": "LAVALADE", - "nomCommune": "LAVALADE" + "codePostal": "29420", + "codeCommune": "29210", + "libelleAcheminement": "PLOUVORN", + "nomCommune": "PLOUVORN" }, { - "codePostal": "61700", - "codeCommune": "61145", - "libelleAcheminement": "DOMFRONT EN POIRAIE", - "nomCommune": "DOMFRONT EN POIRAIE" + "codePostal": "29600", + "codeCommune": "29151", + "libelleAcheminement": "MORLAIX", + "nomCommune": "MORLAIX" }, { - "codePostal": "57865", - "codeCommune": "57017", - "libelleAcheminement": "AMANVILLERS", - "nomCommune": "AMANVILLERS" + "codePostal": "17100", + "codeCommune": "17128", + "libelleAcheminement": "COURCOURY", + "nomCommune": "COURCOURY" }, { - "codePostal": "22340", - "codeCommune": "22157", - "libelleAcheminement": "LE MOUSTOIR", - "nomCommune": "LE MOUSTOIR" + "codePostal": "18190", + "codeCommune": "18236", + "libelleAcheminement": "ST SYMPHORIEN", + "nomCommune": "ST SYMPHORIEN" }, { - "codePostal": "24400", - "codeCommune": "24234", - "libelleAcheminement": "LES LECHES", - "nomCommune": "LES LECHES" + "codePostal": "29700", + "codeCommune": "29216", + "libelleAcheminement": "PLUGUFFAN", + "nomCommune": "PLUGUFFAN" }, { - "codePostal": "61100", - "codeCommune": "61148", - "libelleAcheminement": "DURCET", - "nomCommune": "DURCET" + "codePostal": "29800", + "codeCommune": "29156", + "libelleAcheminement": "PENCRAN", + "nomCommune": "PENCRAN" }, { - "codePostal": "57360", - "codeCommune": "57019", - "libelleAcheminement": "AMNEVILLE LES THERMES", - "nomCommune": "AMNEVILLE" + "codePostal": "17260", + "codeCommune": "17133", + "libelleAcheminement": "CRAVANS", + "nomCommune": "CRAVANS" }, { - "codePostal": "22500", - "codeCommune": "22162", - "libelleAcheminement": "PAIMPOL", - "nomCommune": "PAIMPOL" + "codePostal": "18500", + "codeCommune": "18237", + "libelleAcheminement": "STE THORETTE", + "nomCommune": "STE THORETTE" }, { - "codePostal": "24100", - "codeCommune": "24237", - "libelleAcheminement": "LEMBRAS", - "nomCommune": "LEMBRAS" + "codePostal": "29840", + "codeCommune": "29221", + "libelleAcheminement": "PORSPODER", + "nomCommune": "PORSPODER" }, { - "codePostal": "61440", - "codeCommune": "61149", - "libelleAcheminement": "ECHALOU", - "nomCommune": "ECHALOU" + "codePostal": "29760", + "codeCommune": "29158", + "libelleAcheminement": "PENMARCH", + "nomCommune": "PENMARCH" }, { - "codePostal": "57580", - "codeCommune": "57029", - "libelleAcheminement": "ARRIANCE", - "nomCommune": "ARRIANCE" + "codePostal": "17100", + "codeCommune": "17143", + "libelleAcheminement": "LE DOUHET", + "nomCommune": "LE DOUHET" }, { - "codePostal": "22710", - "codeCommune": "22166", - "libelleAcheminement": "PENVENAN", - "nomCommune": "PENVENAN" + "codePostal": "18600", + "codeCommune": "18242", + "libelleAcheminement": "SANCOINS", + "nomCommune": "SANCOINS" }, { - "codePostal": "24800", - "codeCommune": "24238", - "libelleAcheminement": "LEMPZOURS", - "nomCommune": "LEMPZOURS" + "codePostal": "29800", + "codeCommune": "29237", + "libelleAcheminement": "LA ROCHE MAURICE", + "nomCommune": "LA ROCHE MAURICE" }, { - "codePostal": "61160", - "codeCommune": "61152", - "libelleAcheminement": "ECORCHES", - "nomCommune": "ECORCHES" + "codePostal": "29710", + "codeCommune": "29159", + "libelleAcheminement": "PEUMERIT", + "nomCommune": "PEUMERIT" }, { - "codePostal": "57580", - "codeCommune": "57037", - "libelleAcheminement": "AUBE", - "nomCommune": "AUBE" + "codePostal": "17800", + "codeCommune": "17145", + "libelleAcheminement": "ECHEBRUNE", + "nomCommune": "ECHEBRUNE" }, { - "codePostal": "22800", - "codeCommune": "22170", - "libelleAcheminement": "PLAINE HAUTE", - "nomCommune": "PLAINE HAUTE" + "codePostal": "18240", + "codeCommune": "18243", + "libelleAcheminement": "SANTRANGES", + "nomCommune": "SANTRANGES" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "29570", + "codeCommune": "29238", + "libelleAcheminement": "ROSCANVEL", + "nomCommune": "ROSCANVEL" }, { - "codePostal": "61150", - "codeCommune": "61153", - "libelleAcheminement": "ECOUCHE LES VALLEES", - "nomCommune": "ECOUCHE LES VALLEES" + "codePostal": "29740", + "codeCommune": "29165", + "libelleAcheminement": "PLOBANNALEC LESCONIL", + "nomCommune": "PLOBANNALEC LESCONIL" }, { - "codePostal": "57710", - "codeCommune": "57041", - "libelleAcheminement": "AUMETZ", - "nomCommune": "AUMETZ" + "codePostal": "17510", + "codeCommune": "17149", + "libelleAcheminement": "LES EDUTS", + "nomCommune": "LES EDUTS" }, { - "codePostal": "22190", - "codeCommune": "22187", - "libelleAcheminement": "PLERIN", - "nomCommune": "PLERIN" + "codePostal": "18300", + "codeCommune": "18249", + "libelleAcheminement": "SENS BEAUJEU", + "nomCommune": "SENS BEAUJEU" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "29590", + "codeCommune": "29240", + "libelleAcheminement": "ROSNOEN", + "nomCommune": "ROSNOEN" }, { - "codePostal": "61550", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" + "codePostal": "29720", + "codeCommune": "29174", + "libelleAcheminement": "PLONEOUR LANVERN", + "nomCommune": "PLONEOUR LANVERN" }, { - "codePostal": "57690", - "codeCommune": "57047", - "libelleAcheminement": "BAMBIDERSTROFF", - "nomCommune": "BAMBIDERSTROFF" + "codePostal": "17600", + "codeCommune": "17151", + "libelleAcheminement": "L EGUILLE", + "nomCommune": "L EGUILLE" }, { - "codePostal": "22490", - "codeCommune": "22190", - "libelleAcheminement": "PLESLIN TRIGAVOU", - "nomCommune": "PLESLIN TRIGAVOU" + "codePostal": "18190", + "codeCommune": "18250", + "libelleAcheminement": "SERRUELLES", + "nomCommune": "SERRUELLES" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "29260", + "codeCommune": "29255", + "libelleAcheminement": "ST MEEN", + "nomCommune": "ST MEEN" }, { - "codePostal": "61550", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" + "codePostal": "29530", + "codeCommune": "29175", + "libelleAcheminement": "PLONEVEZ DU FAOU", + "nomCommune": "PLONEVEZ DU FAOU" }, { - "codePostal": "57830", - "codeCommune": "57050", - "libelleAcheminement": "BARCHAIN", - "nomCommune": "BARCHAIN" + "codePostal": "17400", + "codeCommune": "17165", + "libelleAcheminement": "FONTENET", + "nomCommune": "FONTENET" }, { - "codePostal": "22560", - "codeCommune": "22198", - "libelleAcheminement": "PLEUMEUR BODOU", - "nomCommune": "PLEUMEUR BODOU" + "codePostal": "18140", + "codeCommune": "18251", + "libelleAcheminement": "SEVRY", + "nomCommune": "SEVRY" }, { - "codePostal": "24620", - "codeCommune": "24255", - "libelleAcheminement": "MARQUAY", - "nomCommune": "MARQUAY" + "codePostal": "29290", + "codeCommune": "29260", + "libelleAcheminement": "ST RENAN", + "nomCommune": "ST RENAN" }, { - "codePostal": "61600", - "codeCommune": "61168", - "libelleAcheminement": "LA FERTE MACE", - "nomCommune": "LA FERTE MACE" + "codePostal": "29260", + "codeCommune": "29179", + "libelleAcheminement": "PLOUDANIEL", + "nomCommune": "PLOUDANIEL" }, { - "codePostal": "57340", - "codeCommune": "57059", - "libelleAcheminement": "BELLANGE", - "nomCommune": "BELLANGE" + "codePostal": "17290", + "codeCommune": "17166", + "libelleAcheminement": "FORGES", + "nomCommune": "FORGES" }, { - "codePostal": "22340", - "codeCommune": "22202", - "libelleAcheminement": "PLEVIN", - "nomCommune": "PLEVIN" + "codePostal": "18220", + "codeCommune": "18253", + "libelleAcheminement": "SOULANGIS", + "nomCommune": "SOULANGIS" }, { - "codePostal": "24430", - "codeCommune": "24256", - "libelleAcheminement": "MARSAC SUR L ISLE", - "nomCommune": "MARSAC SUR L ISLE" + "codePostal": "29520", + "codeCommune": "29267", + "libelleAcheminement": "ST THOIS", + "nomCommune": "ST THOIS" }, { - "codePostal": "61240", - "codeCommune": "61188", - "libelleAcheminement": "LA GENEVRAIE", - "nomCommune": "LA GENEVRAIE" + "codePostal": "29800", + "codeCommune": "29180", + "libelleAcheminement": "PLOUDIRY", + "nomCommune": "PLOUDIRY" }, { - "codePostal": "57570", - "codeCommune": "57062", - "libelleAcheminement": "BERG SUR MOSELLE", - "nomCommune": "BERG SUR MOSELLE" + "codePostal": "17270", + "codeCommune": "17167", + "libelleAcheminement": "LE FOUILLOUX", + "nomCommune": "LE FOUILLOUX" }, { - "codePostal": "22420", - "codeCommune": "22207", - "libelleAcheminement": "PLOUARET", - "nomCommune": "PLOUARET" + "codePostal": "18300", + "codeCommune": "18258", + "libelleAcheminement": "SURY EN VAUX", + "nomCommune": "SURY EN VAUX" }, { - "codePostal": "24140", - "codeCommune": "24259", - "libelleAcheminement": "EYRAUD CREMPSE MAURENS", - "nomCommune": "EYRAUD CREMPSE MAURENS" + "codePostal": "29440", + "codeCommune": "29271", + "libelleAcheminement": "ST VOUGAY", + "nomCommune": "ST VOUGAY" }, { - "codePostal": "61160", - "codeCommune": "61197", - "libelleAcheminement": "GUEPREI", - "nomCommune": "GUEPREI" + "codePostal": "29420", + "codeCommune": "29184", + "libelleAcheminement": "PLOUENAN", + "nomCommune": "PLOUENAN" }, { - "codePostal": "57310", - "codeCommune": "57067", - "libelleAcheminement": "BERTRANGE", - "nomCommune": "BERTRANGE" + "codePostal": "17250", + "codeCommune": "17171", + "libelleAcheminement": "GEAY", + "nomCommune": "GEAY" }, { - "codePostal": "22830", - "codeCommune": "22208", - "libelleAcheminement": "PLOUASNE", - "nomCommune": "PLOUASNE" + "codePostal": "18260", + "codeCommune": "18264", + "libelleAcheminement": "THOU", + "nomCommune": "THOU" }, { - "codePostal": "24140", - "codeCommune": "24259", - "libelleAcheminement": "EYRAUD CREMPSE MAURENS", - "nomCommune": "EYRAUD CREMPSE MAURENS" + "codePostal": "29640", + "codeCommune": "29275", + "libelleAcheminement": "SCRIGNAC", + "nomCommune": "SCRIGNAC" }, { - "codePostal": "61120", - "codeCommune": "61198", - "libelleAcheminement": "GUERQUESALLES", - "nomCommune": "GUERQUESALLES" + "codePostal": "29430", + "codeCommune": "29185", + "libelleAcheminement": "PLOUESCAT", + "nomCommune": "PLOUESCAT" }, { - "codePostal": "57170", - "codeCommune": "57084", - "libelleAcheminement": "BIONCOURT", - "nomCommune": "BIONCOURT" + "codePostal": "17430", + "codeCommune": "17174", + "libelleAcheminement": "GENOUILLE", + "nomCommune": "GENOUILLE" }, { - "codePostal": "22300", - "codeCommune": "22211", - "libelleAcheminement": "PLOUBEZRE", - "nomCommune": "PLOUBEZRE" + "codePostal": "18320", + "codeCommune": "18265", + "libelleAcheminement": "TORTERON", + "nomCommune": "TORTERON" }, { - "codePostal": "24150", - "codeCommune": "24260", - "libelleAcheminement": "MAUZAC ET GRAND CASTANG", - "nomCommune": "MAUZAC ET GRAND CASTANG" + "codePostal": "29250", + "codeCommune": "29276", + "libelleAcheminement": "SIBIRIL", + "nomCommune": "SIBIRIL" }, { - "codePostal": "61140", - "codeCommune": "61211", - "libelleAcheminement": "JUVIGNY VAL D ANDAINE", - "nomCommune": "JUVIGNY VAL D ANDAINE" + "codePostal": "29440", + "codeCommune": "29187", + "libelleAcheminement": "PLOUGAR", + "nomCommune": "PLOUGAR" }, { - "codePostal": "57220", - "codeCommune": "57085", - "libelleAcheminement": "BIONVILLE SUR NIED", - "nomCommune": "BIONVILLE SUR NIED" + "codePostal": "17160", + "codeCommune": "17176", + "libelleAcheminement": "GIBOURNE", + "nomCommune": "GIBOURNE" }, { - "codePostal": "22490", - "codeCommune": "22213", - "libelleAcheminement": "PLOUER SUR RANCE", - "nomCommune": "PLOUER SUR RANCE" + "codePostal": "18190", + "codeCommune": "18268", + "libelleAcheminement": "UZAY LE VENON", + "nomCommune": "UZAY LE VENON" }, { - "codePostal": "24550", - "codeCommune": "24263", - "libelleAcheminement": "MAZEYROLLES", - "nomCommune": "MAZEYROLLES" + "codePostal": "29260", + "codeCommune": "29288", + "libelleAcheminement": "TREGARANTEC", + "nomCommune": "TREGARANTEC" }, { - "codePostal": "61330", - "codeCommune": "61211", - "libelleAcheminement": "JUVIGNY VAL D ANDAINE", - "nomCommune": "JUVIGNY VAL D ANDAINE" + "codePostal": "29630", + "codeCommune": "29188", + "libelleAcheminement": "PLOUGASNOU", + "nomCommune": "PLOUGASNOU" }, { - "codePostal": "57260", - "codeCommune": "57090", - "libelleAcheminement": "BLANCHE EGLISE", - "nomCommune": "BLANCHE EGLISE" + "codePostal": "17170", + "codeCommune": "17182", + "libelleAcheminement": "LA GREVE SUR MIGNON", + "nomCommune": "LA GREVE SUR MIGNON" }, { - "codePostal": "22470", - "codeCommune": "22214", - "libelleAcheminement": "PLOUEZEC", - "nomCommune": "PLOUEZEC" + "codePostal": "18110", + "codeCommune": "18280", + "libelleAcheminement": "VIGNOUX SOUS LES AIX", + "nomCommune": "VIGNOUX SOUS LES AIX" }, { - "codePostal": "24480", - "codeCommune": "24273", - "libelleAcheminement": "MOLIERES", - "nomCommune": "MOLIERES" + "codePostal": "29720", + "codeCommune": "29292", + "libelleAcheminement": "TREGUENNEC", + "nomCommune": "TREGUENNEC" }, { - "codePostal": "61330", - "codeCommune": "61211", - "libelleAcheminement": "JUVIGNY VAL D ANDAINE", - "nomCommune": "JUVIGNY VAL D ANDAINE" + "codePostal": "29640", + "codeCommune": "29191", + "libelleAcheminement": "PLOUGONVEN", + "nomCommune": "PLOUGONVEN" }, { - "codePostal": "57200", - "codeCommune": "57093", - "libelleAcheminement": "BLIES GUERSVILLER", - "nomCommune": "BLIES GUERSVILLER" + "codePostal": "17520", + "codeCommune": "17192", + "libelleAcheminement": "JARNAC CHAMPAGNE", + "nomCommune": "JARNAC CHAMPAGNE" }, { - "codePostal": "22440", - "codeCommune": "22215", - "libelleAcheminement": "PLOUFRAGAN", - "nomCommune": "PLOUFRAGAN" + "codePostal": "18500", + "codeCommune": "18281", + "libelleAcheminement": "VIGNOUX SUR BARANGEON", + "nomCommune": "VIGNOUX SUR BARANGEON" }, { - "codePostal": "24240", - "codeCommune": "24276", - "libelleAcheminement": "MONESTIER", - "nomCommune": "MONESTIER" + "codePostal": "29910", + "codeCommune": "29293", + "libelleAcheminement": "TREGUNC", + "nomCommune": "TREGUNC" }, { - "codePostal": "61330", - "codeCommune": "61211", - "libelleAcheminement": "JUVIGNY VAL D ANDAINE", - "nomCommune": "JUVIGNY VAL D ANDAINE" + "codePostal": "29250", + "codeCommune": "29192", + "libelleAcheminement": "PLOUGOULM", + "nomCommune": "PLOUGOULM" }, { - "codePostal": "57220", - "codeCommune": "57097", - "libelleAcheminement": "BOULAY", - "nomCommune": "BOULAY MOSELLE" + "codePostal": "17130", + "codeCommune": "17199", + "libelleAcheminement": "JUSSAS", + "nomCommune": "JUSSAS" }, { - "codePostal": "22810", - "codeCommune": "22228", - "libelleAcheminement": "PLOUNEVEZ MOEDEC", - "nomCommune": "PLOUNEVEZ MOEDEC" + "codePostal": "18800", + "codeCommune": "18286", + "libelleAcheminement": "VILLEQUIERS", + "nomCommune": "VILLEQUIERS" }, { - "codePostal": "24350", - "codeCommune": "24286", - "libelleAcheminement": "MONTAGRIER", - "nomCommune": "MONTAGRIER" + "codePostal": "29450", + "codeCommune": "29294", + "libelleAcheminement": "LE TREHOU", + "nomCommune": "LE TREHOU" }, { - "codePostal": "61320", - "codeCommune": "61228", - "libelleAcheminement": "L OREE D ECOUVES", - "nomCommune": "L OREE D ECOUVES" + "codePostal": "29400", + "codeCommune": "29193", + "libelleAcheminement": "PLOUGOURVEST", + "nomCommune": "PLOUGOURVEST" }, { - "codePostal": "57260", - "codeCommune": "57098", - "libelleAcheminement": "BOURGALTROFF", - "nomCommune": "BOURGALTROFF" + "codePostal": "17870", + "codeCommune": "17205", + "libelleAcheminement": "LOIRE LES MARAIS", + "nomCommune": "LOIRE LES MARAIS" }, { - "codePostal": "22160", - "codeCommune": "22231", - "libelleAcheminement": "PLOURAC H", - "nomCommune": "PLOURAC H" + "codePostal": "19380", + "codeCommune": "19004", + "libelleAcheminement": "ALBUSSAC", + "nomCommune": "ALBUSSAC" }, { - "codePostal": "24560", - "codeCommune": "24287", - "libelleAcheminement": "MONTAUT", - "nomCommune": "MONTAUT" + "codePostal": "29720", + "codeCommune": "29298", + "libelleAcheminement": "TREOGAT", + "nomCommune": "TREOGAT" }, { - "codePostal": "61290", - "codeCommune": "61230", - "libelleAcheminement": "LONGNY LES VILLAGES", - "nomCommune": "LONGNY LES VILLAGES" + "codePostal": "29880", + "codeCommune": "29195", + "libelleAcheminement": "PLOUGUERNEAU", + "nomCommune": "PLOUGUERNEAU" }, { - "codePostal": "57810", - "codeCommune": "57099", - "libelleAcheminement": "BOURDONNAY", - "nomCommune": "BOURDONNAY" + "codePostal": "17470", + "codeCommune": "17206", + "libelleAcheminement": "LOIRE SUR NIE", + "nomCommune": "LOIRE SUR NIE" }, { - "codePostal": "22250", - "codeCommune": "22240", - "libelleAcheminement": "PLUMAUGAT", - "nomCommune": "PLUMAUGAT" + "codePostal": "19250", + "codeCommune": "19008", + "libelleAcheminement": "AMBRUGEAT", + "nomCommune": "AMBRUGEAT" }, { - "codePostal": "24290", - "codeCommune": "24291", - "libelleAcheminement": "MONTIGNAC LASCAUX", - "nomCommune": "MONTIGNAC LASCAUX" + "codePostal": "29290", + "codeCommune": "29299", + "libelleAcheminement": "TREOUERGAT", + "nomCommune": "TREOUERGAT" }, { - "codePostal": "61250", - "codeCommune": "61234", - "libelleAcheminement": "LONRAI", - "nomCommune": "LONRAI" + "codePostal": "29860", + "codeCommune": "29209", + "libelleAcheminement": "PLOUVIEN", + "nomCommune": "PLOUVIEN" }, { - "codePostal": "57310", - "codeCommune": "57102", - "libelleAcheminement": "BOUSSE", - "nomCommune": "BOUSSE" + "codePostal": "17330", + "codeCommune": "17211", + "libelleAcheminement": "LOULAY", + "nomCommune": "LOULAY" }, { - "codePostal": "22210", - "codeCommune": "22241", - "libelleAcheminement": "PLUMIEUX", - "nomCommune": "PLUMIEUX" + "codePostal": "19190", + "codeCommune": "19013", + "libelleAcheminement": "AUBAZINES", + "nomCommune": "AUBAZINES" }, { - "codePostal": "24700", - "codeCommune": "24294", - "libelleAcheminement": "MONTPON MENESTEROL", - "nomCommune": "MONTPON MENESTEROL" + "codePostal": "20160", + "codeCommune": "2A019", + "libelleAcheminement": "ARBORI", + "nomCommune": "ARBORI" }, { - "codePostal": "61160", - "codeCommune": "61238", - "libelleAcheminement": "LOUVIERES EN AUGE", - "nomCommune": "LOUVIERES EN AUGE" + "codePostal": "29690", + "codeCommune": "29211", + "libelleAcheminement": "PLOUYE", + "nomCommune": "PLOUYE" }, { - "codePostal": "57570", - "codeCommune": "57104", - "libelleAcheminement": "BOUST", - "nomCommune": "BOUST" + "codePostal": "17330", + "codeCommune": "17213", + "libelleAcheminement": "LOZAY", + "nomCommune": "LOZAY" }, { - "codePostal": "22240", - "codeCommune": "22242", - "libelleAcheminement": "PLURIEN", - "nomCommune": "PLURIEN" + "codePostal": "19220", + "codeCommune": "19014", + "libelleAcheminement": "AURIAC", + "nomCommune": "AURIAC" }, { - "codePostal": "24390", - "codeCommune": "24302", - "libelleAcheminement": "NAILHAC", - "nomCommune": "NAILHAC" + "codePostal": "20116", + "codeCommune": "2A024", + "libelleAcheminement": "AULLENE", + "nomCommune": "AULLENE" }, { - "codePostal": "61290", - "codeCommune": "61242", - "libelleAcheminement": "LE MAGE", - "nomCommune": "LE MAGE" + "codePostal": "29720", + "codeCommune": "29214", + "libelleAcheminement": "PLOVAN", + "nomCommune": "PLOVAN" }, { - "codePostal": "57380", - "codeCommune": "57105", - "libelleAcheminement": "BOUSTROFF", - "nomCommune": "BOUSTROFF" + "codePostal": "17430", + "codeCommune": "17216", + "libelleAcheminement": "LUSSANT", + "nomCommune": "LUSSANT" }, { - "codePostal": "22260", - "codeCommune": "22250", - "libelleAcheminement": "PONTRIEUX", - "nomCommune": "PONTRIEUX" + "codePostal": "19220", + "codeCommune": "19018", + "libelleAcheminement": "BASSIGNAC LE HAUT", + "nomCommune": "BASSIGNAC LE HAUT" }, { - "codePostal": "24320", - "codeCommune": "24303", - "libelleAcheminement": "NANTEUIL AURIAC DE BOURZAC", - "nomCommune": "NANTEUIL AURIAC DE BOURZAC" + "codePostal": "20121", + "codeCommune": "2A027", + "libelleAcheminement": "AZZANA", + "nomCommune": "AZZANA" }, { - "codePostal": "61410", - "codeCommune": "61257", - "libelleAcheminement": "MEHOUDIN", - "nomCommune": "MEHOUDIN" + "codePostal": "29790", + "codeCommune": "29218", + "libelleAcheminement": "PONT CROIX", + "nomCommune": "PONT CROIX" }, { - "codePostal": "57400", - "codeCommune": "57119", - "libelleAcheminement": "BUHL LORRAINE", - "nomCommune": "BUHL LORRAINE" + "codePostal": "17800", + "codeCommune": "17220", + "libelleAcheminement": "MARIGNAC", + "nomCommune": "MARIGNAC" }, { - "codePostal": "22260", - "codeCommune": "22256", - "libelleAcheminement": "QUEMPER GUEZENNEC", - "nomCommune": "QUEMPER GUEZENNEC" + "codePostal": "19120", + "codeCommune": "19019", + "libelleAcheminement": "BEAULIEU SUR DORDOGNE", + "nomCommune": "BEAULIEU SUR DORDOGNE" }, { - "codePostal": "24320", - "codeCommune": "24303", - "libelleAcheminement": "NANTEUIL AURIAC DE BOURZAC", - "nomCommune": "NANTEUIL AURIAC DE BOURZAC" + "codePostal": "20160", + "codeCommune": "2A028", + "libelleAcheminement": "BALOGNA", + "nomCommune": "BALOGNA" }, { - "codePostal": "61800", - "codeCommune": "61262", - "libelleAcheminement": "LE MENIL CIBOULT", - "nomCommune": "LE MENIL CIBOULT" + "codePostal": "29180", + "codeCommune": "29229", + "libelleAcheminement": "QUEMENEVEN", + "nomCommune": "QUEMENEVEN" }, { - "codePostal": "57640", - "codeCommune": "57129", - "libelleAcheminement": "CHARLY ORADOUR", - "nomCommune": "CHARLY ORADOUR" + "codePostal": "17137", + "codeCommune": "17222", + "libelleAcheminement": "MARSILLY", + "nomCommune": "MARSILLY" }, { - "codePostal": "22120", - "codeCommune": "22258", - "libelleAcheminement": "QUESSOY", - "nomCommune": "QUESSOY" + "codePostal": "19110", + "codeCommune": "19028", + "libelleAcheminement": "BORT LES ORGUES", + "nomCommune": "BORT LES ORGUES" }, { - "codePostal": "24800", - "codeCommune": "24304", - "libelleAcheminement": "NANTHEUIL", - "nomCommune": "NANTHEUIL" + "codePostal": "20129", + "codeCommune": "2A032", + "libelleAcheminement": "BASTELICACCIA", + "nomCommune": "BASTELICACCIA" }, { - "codePostal": "61240", - "codeCommune": "61272", - "libelleAcheminement": "LE MENIL VICOMTE", - "nomCommune": "LE MENIL VICOMTE" + "codePostal": "29300", + "codeCommune": "29233", + "libelleAcheminement": "QUIMPERLE", + "nomCommune": "QUIMPERLE" }, { - "codePostal": "57160", - "codeCommune": "57134", - "libelleAcheminement": "CHATEL ST GERMAIN", - "nomCommune": "CHATEL ST GERMAIN" + "codePostal": "17770", + "codeCommune": "17235", + "libelleAcheminement": "MIGRON", + "nomCommune": "MIGRON" }, { - "codePostal": "22100", - "codeCommune": "22259", - "libelleAcheminement": "QUEVERT", - "nomCommune": "QUEVERT" + "codePostal": "19500", + "codeCommune": "19029", + "libelleAcheminement": "BRANCEILLES", + "nomCommune": "BRANCEILLES" }, { - "codePostal": "24230", - "codeCommune": "24306", - "libelleAcheminement": "NASTRINGUES", - "nomCommune": "NASTRINGUES" + "codePostal": "20169", + "codeCommune": "2A041", + "libelleAcheminement": "BONIFACIO", + "nomCommune": "BONIFACIO" }, { - "codePostal": "61210", - "codeCommune": "61273", - "libelleAcheminement": "MENIL VIN", - "nomCommune": "MENIL VIN" + "codePostal": "29170", + "codeCommune": "29247", + "libelleAcheminement": "ST EVARZEC", + "nomCommune": "ST EVARZEC" }, { - "codePostal": "57420", - "codeCommune": "57137", - "libelleAcheminement": "CHEMINOT", - "nomCommune": "CHEMINOT" + "codePostal": "17160", + "codeCommune": "17239", + "libelleAcheminement": "MONS", + "nomCommune": "MONS" }, { - "codePostal": "22300", - "codeCommune": "22265", - "libelleAcheminement": "ROSPEZ", - "nomCommune": "ROSPEZ" + "codePostal": "19310", + "codeCommune": "19030", + "libelleAcheminement": "BRIGNAC LA PLAINE", + "nomCommune": "BRIGNAC LA PLAINE" }, { - "codePostal": "24460", - "codeCommune": "24308", - "libelleAcheminement": "NEGRONDES", - "nomCommune": "NEGRONDES" + "codePostal": "20142", + "codeCommune": "2A056", + "libelleAcheminement": "CAMPO", + "nomCommune": "CAMPO" }, { - "codePostal": "61160", - "codeCommune": "61283", - "libelleAcheminement": "MONTABARD", - "nomCommune": "MONTABARD" + "codePostal": "29600", + "codeCommune": "29254", + "libelleAcheminement": "ST MARTIN DES CHAMPS", + "nomCommune": "ST MARTIN DES CHAMPS" }, { - "codePostal": "57800", - "codeCommune": "57144", - "libelleAcheminement": "COCHEREN", - "nomCommune": "COCHEREN" + "codePostal": "17130", + "codeCommune": "17240", + "libelleAcheminement": "MONTENDRE", + "nomCommune": "MONTENDRE" }, { - "codePostal": "22550", - "codeCommune": "22268", - "libelleAcheminement": "RUCA", - "nomCommune": "RUCA" + "codePostal": "19100", + "codeCommune": "19031", + "libelleAcheminement": "BRIVE LA GAILLARDE", + "nomCommune": "BRIVE LA GAILLARDE" }, { - "codePostal": "24300", - "codeCommune": "24311", - "libelleAcheminement": "NONTRON", - "nomCommune": "NONTRON" + "codePostal": "20170", + "codeCommune": "2A061", + "libelleAcheminement": "CARBINI", + "nomCommune": "CARBINI" }, { - "codePostal": "61170", - "codeCommune": "61284", - "libelleAcheminement": "MONTCHEVREL", - "nomCommune": "MONTCHEVREL" + "codePostal": "29830", + "codeCommune": "29257", + "libelleAcheminement": "ST PABU", + "nomCommune": "ST PABU" }, { - "codePostal": "57800", - "codeCommune": "57144", - "libelleAcheminement": "COCHEREN", - "nomCommune": "COCHEREN" + "codePostal": "17220", + "codeCommune": "17245", + "libelleAcheminement": "MONTROY", + "nomCommune": "MONTROY" }, { - "codePostal": "22260", - "codeCommune": "22269", - "libelleAcheminement": "RUNAN", - "nomCommune": "RUNAN" + "codePostal": "19430", + "codeCommune": "19034", + "libelleAcheminement": "CAMPS ST MATHURIN LEOBAZEL", + "nomCommune": "CAMPS ST MATHURIN LEOBAZEL" }, { - "codePostal": "24380", - "codeCommune": "24312", - "libelleAcheminement": "SANILHAC", - "nomCommune": "SANILHAC" + "codePostal": "20160", + "codeCommune": "2A090", + "libelleAcheminement": "COGGIA", + "nomCommune": "COGGIA" }, { - "codePostal": "61210", - "codeCommune": "61290", - "libelleAcheminement": "MONTREUIL AU HOULME", - "nomCommune": "MONTREUIL AU HOULME" + "codePostal": "29590", + "codeCommune": "29263", + "libelleAcheminement": "ST SEGAL", + "nomCommune": "ST SEGAL" }, { - "codePostal": "57420", - "codeCommune": "57147", - "libelleAcheminement": "COIN SUR SEILLE", - "nomCommune": "COIN SUR SEILLE" + "codePostal": "17600", + "codeCommune": "17265", + "libelleAcheminement": "NIEULLE SUR SEUDRE", + "nomCommune": "NIEULLE SUR SEUDRE" }, { - "codePostal": "22200", - "codeCommune": "22272", - "libelleAcheminement": "ST AGATHON", - "nomCommune": "ST AGATHON" + "codePostal": "19350", + "codeCommune": "19035", + "libelleAcheminement": "CHABRIGNAC", + "nomCommune": "CHABRIGNAC" }, { - "codePostal": "24410", - "codeCommune": "24316", - "libelleAcheminement": "PARCOUL CHENAUD", - "nomCommune": "PARCOUL CHENAUD" + "codePostal": "20114", + "codeCommune": "2A114", + "libelleAcheminement": "FIGARI", + "nomCommune": "FIGARI" }, { - "codePostal": "61800", - "codeCommune": "61292", - "libelleAcheminement": "MONTSECRET CLAIREFOUGERE", - "nomCommune": "MONTSECRET CLAIREFOUGERE" + "codePostal": "29800", + "codeCommune": "29270", + "libelleAcheminement": "ST URBAIN", + "nomCommune": "ST URBAIN" }, { - "codePostal": "57530", - "codeCommune": "57155", - "libelleAcheminement": "COURCELLES CHAUSSY", - "nomCommune": "COURCELLES CHAUSSY" + "codePostal": "17500", + "codeCommune": "17270", + "libelleAcheminement": "OZILLAC", + "nomCommune": "OZILLAC" }, { - "codePostal": "22000", - "codeCommune": "22278", - "libelleAcheminement": "ST BRIEUC", - "nomCommune": "ST BRIEUC" + "codePostal": "19320", + "codeCommune": "19039", + "libelleAcheminement": "CHAMPAGNAC LA NOAILLE", + "nomCommune": "CHAMPAGNAC LA NOAILLE" }, { - "codePostal": "24590", - "codeCommune": "24317", - "libelleAcheminement": "PAULIN", - "nomCommune": "PAULIN" + "codePostal": "20100", + "codeCommune": "2A115", + "libelleAcheminement": "FOCE", + "nomCommune": "FOCE" }, { - "codePostal": "61160", - "codeCommune": "61303", - "libelleAcheminement": "NECY", - "nomCommune": "NECY" + "codePostal": "29140", + "codeCommune": "29272", + "libelleAcheminement": "ST YVI", + "nomCommune": "ST YVI" }, { - "codePostal": "57530", - "codeCommune": "57156", - "libelleAcheminement": "COURCELLES SUR NIED", - "nomCommune": "COURCELLES SUR NIED" + "codePostal": "17800", + "codeCommune": "17273", + "libelleAcheminement": "PERIGNAC", + "nomCommune": "PERIGNAC" }, { - "codePostal": "22380", - "codeCommune": "22282", - "libelleAcheminement": "ST CAST LE GUILDO", - "nomCommune": "ST CAST LE GUILDO" + "codePostal": "19430", + "codeCommune": "19045", + "libelleAcheminement": "LA CHAPELLE ST GERAUD", + "nomCommune": "LA CHAPELLE ST GERAUD" }, { - "codePostal": "24370", - "codeCommune": "24325", - "libelleAcheminement": "PECHS DE L ESPERANCE", - "nomCommune": "PECHS DE L ESPERANCE" + "codePostal": "20100", + "codeCommune": "2A128", + "libelleAcheminement": "GRANACE", + "nomCommune": "GRANACE" }, { - "codePostal": "61250", - "codeCommune": "61304", - "libelleAcheminement": "NEUILLY LE BISSON", - "nomCommune": "NEUILLY LE BISSON" + "codePostal": "29390", + "codeCommune": "29274", + "libelleAcheminement": "SCAER", + "nomCommune": "SCAER" }, { - "codePostal": "57690", - "codeCommune": "57159", - "libelleAcheminement": "CREHANGE", - "nomCommune": "CREHANGE" + "codePostal": "17180", + "codeCommune": "17274", + "libelleAcheminement": "PERIGNY", + "nomCommune": "PERIGNY" }, { - "codePostal": "22380", - "codeCommune": "22282", - "libelleAcheminement": "ST CAST LE GUILDO", - "nomCommune": "ST CAST LE GUILDO" + "codePostal": "19600", + "codeCommune": "19049", + "libelleAcheminement": "CHASTEAUX", + "nomCommune": "CHASTEAUX" }, { - "codePostal": "24510", - "codeCommune": "24327", - "libelleAcheminement": "PEZULS", - "nomCommune": "PEZULS" + "codePostal": "20153", + "codeCommune": "2A133", + "libelleAcheminement": "GUITERA LES BAINS", + "nomCommune": "GUITERA LES BAINS" }, { - "codePostal": "61130", - "codeCommune": "61319", - "libelleAcheminement": "ORIGNY LE ROUX", - "nomCommune": "ORIGNY LE ROUX" + "codePostal": "29670", + "codeCommune": "29279", + "libelleAcheminement": "TAULE", + "nomCommune": "TAULE" }, { - "codePostal": "57420", - "codeCommune": "57162", - "libelleAcheminement": "CUVRY", - "nomCommune": "CUVRY" + "codePostal": "17210", + "codeCommune": "17276", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "22230", - "codeCommune": "22309", - "libelleAcheminement": "ST LAUNEUC", - "nomCommune": "ST LAUNEUC" + "codePostal": "19290", + "codeCommune": "19052", + "libelleAcheminement": "CHAVANAC", + "nomCommune": "CHAVANAC" }, { - "codePostal": "24700", - "codeCommune": "24329", - "libelleAcheminement": "LE PIZOU", - "nomCommune": "LE PIZOU" + "codePostal": "20171", + "codeCommune": "2A163", + "libelleAcheminement": "MONACIA D AULLENE", + "nomCommune": "MONACIA D AULLENE" }, { - "codePostal": "61250", - "codeCommune": "61321", - "libelleAcheminement": "PACE", - "nomCommune": "PACE" + "codePostal": "29440", + "codeCommune": "29285", + "libelleAcheminement": "TREFLAOUENAN", + "nomCommune": "TREFLAOUENAN" }, { - "codePostal": "57370", - "codeCommune": "57168", - "libelleAcheminement": "DANNE ET QUATRE VENTS", - "nomCommune": "DANNE ET QUATRE VENTS" + "codePostal": "17130", + "codeCommune": "17282", + "libelleAcheminement": "POMMIERS MOULONS", + "nomCommune": "POMMIERS MOULONS" }, { - "codePostal": "22720", - "codeCommune": "22322", - "libelleAcheminement": "ST PEVER", - "nomCommune": "ST PEVER" + "codePostal": "19340", + "codeCommune": "19064", + "libelleAcheminement": "COUFFY SUR SARSONNE", + "nomCommune": "COUFFY SUR SARSONNE" }, { - "codePostal": "24500", - "codeCommune": "24348", - "libelleAcheminement": "RAZAC D EYMET", - "nomCommune": "RAZAC D EYMET" + "codePostal": "20160", + "codeCommune": "2A174", + "libelleAcheminement": "MURZO", + "nomCommune": "MURZO" }, { - "codePostal": "61700", - "codeCommune": "61326", - "libelleAcheminement": "PERROU", - "nomCommune": "PERROU" + "codePostal": "29560", + "codeCommune": "29289", + "libelleAcheminement": "TREGARVAN", + "nomCommune": "TREGARVAN" }, { - "codePostal": "57460", - "codeCommune": "57202", - "libelleAcheminement": "ETZLING", - "nomCommune": "ETZLING" + "codePostal": "17880", + "codeCommune": "17286", + "libelleAcheminement": "LES PORTES EN RE", + "nomCommune": "LES PORTES EN RE" }, { - "codePostal": "22410", - "codeCommune": "22325", - "libelleAcheminement": "ST QUAY PORTRIEUX", - "nomCommune": "ST QUAY PORTRIEUX" + "codePostal": "19520", + "codeCommune": "19066", + "libelleAcheminement": "CUBLAC", + "nomCommune": "CUBLAC" }, { - "codePostal": "24380", - "codeCommune": "24365", - "libelleAcheminement": "ST AMAND DE VERGT", - "nomCommune": "ST AMAND DE VERGT" + "codePostal": "20112", + "codeCommune": "2A191", + "libelleAcheminement": "OLMICCIA", + "nomCommune": "OLMICCIA" }, { - "codePostal": "61170", - "codeCommune": "61331", - "libelleAcheminement": "LE PLANTIS", - "nomCommune": "LE PLANTIS" + "codePostal": "29300", + "codeCommune": "29297", + "libelleAcheminement": "TREMEVEN", + "nomCommune": "TREMEVEN" }, { - "codePostal": "57640", - "codeCommune": "57204", - "libelleAcheminement": "FAILLY", - "nomCommune": "FAILLY" + "codePostal": "17210", + "codeCommune": "17287", + "libelleAcheminement": "POUILLAC", + "nomCommune": "POUILLAC" }, { - "codePostal": "22640", - "codeCommune": "22341", - "libelleAcheminement": "TRAMAIN", - "nomCommune": "TRAMAIN" + "codePostal": "19500", + "codeCommune": "19067", + "libelleAcheminement": "CUREMONTE", + "nomCommune": "CUREMONTE" }, { - "codePostal": "24200", - "codeCommune": "24366", - "libelleAcheminement": "ST ANDRE D ALLAS", - "nomCommune": "ST ANDRE D ALLAS" + "codePostal": "20147", + "codeCommune": "2A197", + "libelleAcheminement": "OSANI", + "nomCommune": "OSANI" }, { - "codePostal": "61210", - "codeCommune": "61339", - "libelleAcheminement": "PUTANGES LE LAC", - "nomCommune": "PUTANGES LE LAC" + "codePostal": "29380", + "codeCommune": "29300", + "libelleAcheminement": "LE TREVOUX", + "nomCommune": "LE TREVOUX" }, { - "codePostal": "57450", - "codeCommune": "57207", - "libelleAcheminement": "FAREBERSVILLER", - "nomCommune": "FAREBERSVILLER" + "codePostal": "17460", + "codeCommune": "17289", + "libelleAcheminement": "PREGUILLAC", + "nomCommune": "PREGUILLAC" }, { - "codePostal": "22250", - "codeCommune": "22348", - "libelleAcheminement": "TREDIAS", - "nomCommune": "TREDIAS" + "codePostal": "19250", + "codeCommune": "19071", + "libelleAcheminement": "DAVIGNAC", + "nomCommune": "DAVIGNAC" }, { - "codePostal": "24110", - "codeCommune": "24371", - "libelleAcheminement": "ST AQUILIN", - "nomCommune": "ST AQUILIN" + "codePostal": "20150", + "codeCommune": "2A198", + "libelleAcheminement": "OTA", + "nomCommune": "OTA" }, { - "codePostal": "61210", - "codeCommune": "61339", - "libelleAcheminement": "PUTANGES LE LAC", - "nomCommune": "PUTANGES LE LAC" + "codePostal": "20167", + "codeCommune": "2A001", + "libelleAcheminement": "AFA", + "nomCommune": "AFA" }, { - "codePostal": "57420", - "codeCommune": "57212", - "libelleAcheminement": "FEY", - "nomCommune": "FEY" + "codePostal": "17500", + "codeCommune": "17295", + "libelleAcheminement": "REAUX SUR TREFLE", + "nomCommune": "REAUX SUR TREFLE" }, { - "codePostal": "22300", - "codeCommune": "22349", - "libelleAcheminement": "TREDREZ LOCQUEMEAU", - "nomCommune": "TREDREZ LOCQUEMEAU" + "codePostal": "19140", + "codeCommune": "19076", + "libelleAcheminement": "ESPARTIGNAC", + "nomCommune": "ESPARTIGNAC" }, { - "codePostal": "24500", - "codeCommune": "24373", - "libelleAcheminement": "ST AUBIN DE CADELECH", - "nomCommune": "ST AUBIN DE CADELECH" + "codePostal": "20142", + "codeCommune": "2A253", + "libelleAcheminement": "QUASQUARA", + "nomCommune": "QUASQUARA" }, { - "codePostal": "61250", - "codeCommune": "61341", - "libelleAcheminement": "ECOUVES", - "nomCommune": "ECOUVES" + "codePostal": "20167", + "codeCommune": "2A006", + "libelleAcheminement": "ALATA", + "nomCommune": "ALATA" }, { - "codePostal": "57635", - "codeCommune": "57216", - "libelleAcheminement": "FLEISHEIM", - "nomCommune": "FLEISHEIM" + "codePostal": "17510", + "codeCommune": "17301", + "libelleAcheminement": "ROMAZIERES", + "nomCommune": "ROMAZIERES" }, { - "codePostal": "22630", - "codeCommune": "22352", - "libelleAcheminement": "TREFUMEL", - "nomCommune": "TREFUMEL" + "codePostal": "19410", + "codeCommune": "19078", + "libelleAcheminement": "ESTIVAUX", + "nomCommune": "ESTIVAUX" }, { - "codePostal": "24540", - "codeCommune": "24384", - "libelleAcheminement": "ST CASSIEN", - "nomCommune": "ST CASSIEN" + "codePostal": "20121", + "codeCommune": "2A262", + "libelleAcheminement": "ROSAZIA", + "nomCommune": "ROSAZIA" }, { - "codePostal": "61110", - "codeCommune": "61345", - "libelleAcheminement": "REMALARD EN PERCHE", - "nomCommune": "REMALARD EN PERCHE" + "codePostal": "20151", + "codeCommune": "2A014", + "libelleAcheminement": "AMBIEGNA", + "nomCommune": "AMBIEGNA" }, { - "codePostal": "57365", - "codeCommune": "57219", - "libelleAcheminement": "FLEVY", - "nomCommune": "FLEVY" + "codePostal": "17770", + "codeCommune": "17314", + "libelleAcheminement": "ST CESAIRE", + "nomCommune": "ST CESAIRE" }, { - "codePostal": "22200", - "codeCommune": "22358", - "libelleAcheminement": "TREGONNEAU", - "nomCommune": "TREGONNEAU" + "codePostal": "19330", + "codeCommune": "19082", + "libelleAcheminement": "FAVARS", + "nomCommune": "FAVARS" }, { - "codePostal": "24550", - "codeCommune": "24386", - "libelleAcheminement": "ST CERNIN DE L HERM", - "nomCommune": "ST CERNIN DE L HERM" + "codePostal": "20121", + "codeCommune": "2A266", + "libelleAcheminement": "SALICE", + "nomCommune": "SALICE" }, { - "codePostal": "61170", - "codeCommune": "61360", - "libelleAcheminement": "ST AGNAN SUR SARTHE", - "nomCommune": "ST AGNAN SUR SARTHE" + "codePostal": "20151", + "codeCommune": "2A022", + "libelleAcheminement": "ARRO", + "nomCommune": "ARRO" }, { - "codePostal": "57600", - "codeCommune": "57222", - "libelleAcheminement": "FOLKLING", - "nomCommune": "FOLKLING" + "codePostal": "17520", + "codeCommune": "17316", + "libelleAcheminement": "ST CIERS CHAMPAGNE", + "nomCommune": "ST CIERS CHAMPAGNE" }, { - "codePostal": "22420", - "codeCommune": "22359", - "libelleAcheminement": "TREGROM", - "nomCommune": "TREGROM" + "codePostal": "19380", + "codeCommune": "19084", + "libelleAcheminement": "FORGES", + "nomCommune": "FORGES" }, { - "codePostal": "24250", - "codeCommune": "24395", - "libelleAcheminement": "ST CYBRANET", - "nomCommune": "ST CYBRANET" + "codePostal": "20134", + "codeCommune": "2A268", + "libelleAcheminement": "SAMPOLO", + "nomCommune": "SAMPOLO" }, { - "codePostal": "61800", - "codeCommune": "61374", - "libelleAcheminement": "ST CHRISTOPHE DE CHAULIEU", - "nomCommune": "ST CHRISTOPHE DE CHAULIEU" + "codePostal": "20110", + "codeCommune": "2A035", + "libelleAcheminement": "BELVEDERE CAMPOMORO", + "nomCommune": "BELVEDERE CAMPOMORO" }, { - "codePostal": "57320", - "codeCommune": "57235", - "libelleAcheminement": "FREISTROFF", - "nomCommune": "FREISTROFF" + "codePostal": "17430", + "codeCommune": "17320", + "libelleAcheminement": "ST COUTANT LE GRAND", + "nomCommune": "ST COUTANT LE GRAND" }, { - "codePostal": "22950", - "codeCommune": "22360", - "libelleAcheminement": "TREGUEUX", - "nomCommune": "TREGUEUX" + "codePostal": "19800", + "codeCommune": "19085", + "libelleAcheminement": "GIMEL LES CASCADES", + "nomCommune": "GIMEL LES CASCADES" }, { - "codePostal": "24220", - "codeCommune": "24396", - "libelleAcheminement": "ST CYPRIEN", - "nomCommune": "ST CYPRIEN" + "codePostal": "20167", + "codeCommune": "2A271", + "libelleAcheminement": "SARROLA CARCOPINO", + "nomCommune": "SARROLA CARCOPINO" }, { - "codePostal": "61570", - "codeCommune": "61375", - "libelleAcheminement": "BOISCHAMPRE", - "nomCommune": "BOISCHAMPRE" + "codePostal": "20136", + "codeCommune": "2A040", + "libelleAcheminement": "BOCOGNANO", + "nomCommune": "BOCOGNANO" }, { - "codePostal": "57590", - "codeCommune": "57236", - "libelleAcheminement": "FREMERY", - "nomCommune": "FREMERY" + "codePostal": "17650", + "codeCommune": "17323", + "libelleAcheminement": "ST DENIS D OLERON", + "nomCommune": "ST DENIS D OLERON" }, { - "codePostal": "22490", - "codeCommune": "22368", - "libelleAcheminement": "TREMEREUC", - "nomCommune": "TREMEREUC" + "codePostal": "19500", + "codeCommune": "19093", + "libelleAcheminement": "JUGEALS NAZARETH", + "nomCommune": "JUGEALS NAZARETH" }, { - "codePostal": "24190", - "codeCommune": "24418", - "libelleAcheminement": "ST GERMAIN DU SALEMBRE", - "nomCommune": "ST GERMAIN DU SALEMBRE" + "codePostal": "20140", + "codeCommune": "2A284", + "libelleAcheminement": "SOLLACARO", + "nomCommune": "SOLLACARO" }, { - "codePostal": "61570", - "codeCommune": "61375", - "libelleAcheminement": "BOISCHAMPRE", - "nomCommune": "BOISCHAMPRE" + "codePostal": "20130", + "codeCommune": "2A065", + "libelleAcheminement": "CARGESE", + "nomCommune": "CARGESE" }, { - "codePostal": "57175", - "codeCommune": "57242", - "libelleAcheminement": "GANDRANGE", - "nomCommune": "GANDRANGE" + "codePostal": "17330", + "codeCommune": "17327", + "libelleAcheminement": "ST FELIX", + "nomCommune": "ST FELIX" }, { - "codePostal": "22410", - "codeCommune": "22377", - "libelleAcheminement": "TREVENEUC", - "nomCommune": "TREVENEUC" + "codePostal": "19320", + "codeCommune": "19097", + "libelleAcheminement": "LAFAGE SUR SOMBRE", + "nomCommune": "LAFAGE SUR SOMBRE" }, { - "codePostal": "24500", - "codeCommune": "24423", - "libelleAcheminement": "ST JULIEN INNOCENCE EULALIE", - "nomCommune": "ST JULIEN INNOCENCE EULALIE" + "codePostal": "20146", + "codeCommune": "2A288", + "libelleAcheminement": "SOTTA", + "nomCommune": "SOTTA" }, { - "codePostal": "61130", - "codeCommune": "61379", - "libelleAcheminement": "ST CYR LA ROSIERE", - "nomCommune": "ST CYR LA ROSIERE" + "codePostal": "20164", + "codeCommune": "2A066", + "libelleAcheminement": "CARGIACA", + "nomCommune": "CARGIACA" }, { - "codePostal": "57570", - "codeCommune": "57245", - "libelleAcheminement": "GAVISSE", - "nomCommune": "GAVISSE" + "codePostal": "17780", + "codeCommune": "17329", + "libelleAcheminement": "ST FROULT", + "nomCommune": "ST FROULT" }, { - "codePostal": "22690", - "codeCommune": "22385", - "libelleAcheminement": "LA VICOMTE SUR RANCE", - "nomCommune": "LA VICOMTE SUR RANCE" + "codePostal": "19500", + "codeCommune": "19099", + "libelleAcheminement": "LAGLEYGEOLLE", + "nomCommune": "LAGLEYGEOLLE" }, { - "codePostal": "24800", - "codeCommune": "24428", - "libelleAcheminement": "ST JORY DE CHALAIS", - "nomCommune": "ST JORY DE CHALAIS" + "codePostal": "20167", + "codeCommune": "2A323", + "libelleAcheminement": "TAVACO", + "nomCommune": "TAVACO" }, { - "codePostal": "61400", - "codeCommune": "61381", - "libelleAcheminement": "ST DENIS SUR HUISNE", - "nomCommune": "ST DENIS SUR HUISNE" + "codePostal": "20168", + "codeCommune": "2A094", + "libelleAcheminement": "CORRANO", + "nomCommune": "CORRANO" }, { - "codePostal": "57620", - "codeCommune": "57250", - "libelleAcheminement": "GOETZENBRUCK", - "nomCommune": "GOETZENBRUCK" + "codePostal": "17240", + "codeCommune": "17332", + "libelleAcheminement": "ST GEORGES ANTIGNAC", + "nomCommune": "ST GEORGES ANTIGNAC" }, { - "codePostal": "22930", - "codeCommune": "22390", - "libelleAcheminement": "YVIAS", - "nomCommune": "YVIAS" + "codePostal": "19150", + "codeCommune": "19101", + "libelleAcheminement": "LAGUENNE SUR AVALOUZE", + "nomCommune": "LAGUENNE SUR AVALOUZE" }, { - "codePostal": "24320", - "codeCommune": "24434", - "libelleAcheminement": "ST JUST", - "nomCommune": "ST JUST" + "codePostal": "20163", + "codeCommune": "2A324", + "libelleAcheminement": "TAVERA", + "nomCommune": "TAVERA" }, { - "codePostal": "61420", - "codeCommune": "61382", - "libelleAcheminement": "ST DENIS SUR SARTHON", - "nomCommune": "ST DENIS SUR SARTHON" + "codePostal": "20126", + "codeCommune": "2A100", + "libelleAcheminement": "CRISTINACCE", + "nomCommune": "CRISTINACCE" }, { - "codePostal": "57620", - "codeCommune": "57250", - "libelleAcheminement": "GOETZENBRUCK", - "nomCommune": "GOETZENBRUCK" + "codePostal": "17190", + "codeCommune": "17337", + "libelleAcheminement": "ST GEORGES D OLERON", + "nomCommune": "ST GEORGES D OLERON" }, { - "codePostal": "23150", - "codeCommune": "23001", - "libelleAcheminement": "AHUN", - "nomCommune": "AHUN" + "codePostal": "19160", + "codeCommune": "19102", + "libelleAcheminement": "LAMAZIERE BASSE", + "nomCommune": "LAMAZIERE BASSE" }, { - "codePostal": "24100", - "codeCommune": "24437", - "libelleAcheminement": "ST LAURENT DES VIGNES", - "nomCommune": "ST LAURENT DES VIGNES" + "codePostal": "20167", + "codeCommune": "2A336", + "libelleAcheminement": "VALLE DI MEZZANA", + "nomCommune": "VALLE DI MEZZANA" }, { - "codePostal": "61550", - "codeCommune": "61386", - "libelleAcheminement": "ST EVROULT NOTRE DAME DU BOIS", - "nomCommune": "ST EVROULT NOTRE DAME DU BOIS" + "codePostal": "20167", + "codeCommune": "2A103", + "libelleAcheminement": "CUTTOLI CORTICCHIATO", + "nomCommune": "CUTTOLI CORTICCHIATO" }, { - "codePostal": "57660", - "codeCommune": "57258", - "libelleAcheminement": "GRENING", - "nomCommune": "GRENING" + "codePostal": "17700", + "codeCommune": "17338", + "libelleAcheminement": "ST GEORGES DU BOIS", + "nomCommune": "ST GEORGES DU BOIS" }, { - "codePostal": "23380", - "codeCommune": "23002", - "libelleAcheminement": "AJAIN", - "nomCommune": "AJAIN" + "codePostal": "19190", + "codeCommune": "19105", + "libelleAcheminement": "LANTEUIL", + "nomCommune": "LANTEUIL" }, { - "codePostal": "24510", - "codeCommune": "24445", - "libelleAcheminement": "ST MARCEL DU PERIGORD", - "nomCommune": "ST MARCEL DU PERIGORD" + "codePostal": "20132", + "codeCommune": "2A359", + "libelleAcheminement": "ZICAVO", + "nomCommune": "ZICAVO" }, { - "codePostal": "61350", - "codeCommune": "61387", - "libelleAcheminement": "ST FRAIMBAULT", - "nomCommune": "ST FRAIMBAULT" + "codePostal": "20126", + "codeCommune": "2A108", + "libelleAcheminement": "EVISA", + "nomCommune": "EVISA" }, { - "codePostal": "57480", - "codeCommune": "57259", - "libelleAcheminement": "GRINDORFF BIZING", - "nomCommune": "GRINDORFF BIZING" + "codePostal": "17700", + "codeCommune": "17340", + "libelleAcheminement": "ST PIERRE LA NOUE", + "nomCommune": "ST PIERRE LA NOUE" }, { - "codePostal": "23160", - "codeCommune": "23018", - "libelleAcheminement": "BAZELAT", - "nomCommune": "BAZELAT" + "codePostal": "19550", + "codeCommune": "19106", + "libelleAcheminement": "LAPLEAU", + "nomCommune": "LAPLEAU" }, { - "codePostal": "24300", - "codeCommune": "24451", - "libelleAcheminement": "ST MARTIAL DE VALETTE", - "nomCommune": "ST MARTIAL DE VALETTE" + "codePostal": "20144", + "codeCommune": "2A362", + "libelleAcheminement": "ZONZA", + "nomCommune": "ZONZA" }, { - "codePostal": "61600", - "codeCommune": "61390", - "libelleAcheminement": "ST GEORGES D ANNEBECQ", - "nomCommune": "ST GEORGES D ANNEBECQ" + "codePostal": "20128", + "codeCommune": "2A130", + "libelleAcheminement": "GROSSETO PRUGNA", + "nomCommune": "GROSSETO PRUGNA" }, { - "codePostal": "57520", - "codeCommune": "57260", - "libelleAcheminement": "GROSBLIEDERSTROFF", - "nomCommune": "GROSBLIEDERSTROFF" + "codePostal": "17770", + "codeCommune": "17344", + "libelleAcheminement": "ST HILAIRE DE VILLEFRANCHE", + "nomCommune": "ST HILAIRE DE VILLEFRANCHE" }, { - "codePostal": "23220", - "codeCommune": "23025", - "libelleAcheminement": "BONNAT", - "nomCommune": "BONNAT" + "codePostal": "19160", + "codeCommune": "19113", + "libelleAcheminement": "LIGINIAC", + "nomCommune": "LIGINIAC" }, { - "codePostal": "24320", - "codeCommune": "24452", - "libelleAcheminement": "ST MARTIAL VIVEYROL", - "nomCommune": "ST MARTIAL VIVEYROL" + "codePostal": "20112", + "codeCommune": "2A363", + "libelleAcheminement": "ZOZA", + "nomCommune": "ZOZA" }, { - "codePostal": "61700", - "codeCommune": "61401", - "libelleAcheminement": "ST GILLES DES MARAIS", - "nomCommune": "ST GILLES DES MARAIS" + "codePostal": "20166", + "codeCommune": "2A130", + "libelleAcheminement": "GROSSETO PRUGNA", + "nomCommune": "GROSSETO PRUGNA" }, { - "codePostal": "57430", - "codeCommune": "57267", - "libelleAcheminement": "LE VAL DE GUEBLANGE", - "nomCommune": "LE VAL DE GUEBLANGE" + "codePostal": "17500", + "codeCommune": "17345", + "libelleAcheminement": "ST HILAIRE DU BOIS", + "nomCommune": "ST HILAIRE DU BOIS" }, { - "codePostal": "23230", - "codeCommune": "23026", - "libelleAcheminement": "BORD ST GEORGES", - "nomCommune": "BORD ST GEORGES" + "codePostal": "19120", + "codeCommune": "19116", + "libelleAcheminement": "LIOURDRES", + "nomCommune": "LIOURDRES" }, { - "codePostal": "24400", - "codeCommune": "24457", - "libelleAcheminement": "ST MARTIN L ASTIER", - "nomCommune": "ST MARTIN L ASTIER" + "codePostal": "20224", + "codeCommune": "2B007", + "libelleAcheminement": "ALBERTACCE", + "nomCommune": "ALBERTACCE" }, { - "codePostal": "61400", - "codeCommune": "61404", - "libelleAcheminement": "ST HILAIRE LE CHATEL", - "nomCommune": "ST HILAIRE LE CHATEL" + "codePostal": "20128", + "codeCommune": "2A132", + "libelleAcheminement": "GUARGUALE", + "nomCommune": "GUARGUALE" }, { - "codePostal": "57470", - "codeCommune": "57271", - "libelleAcheminement": "GUENVILLER", - "nomCommune": "GUENVILLER" + "codePostal": "17400", + "codeCommune": "17347", + "libelleAcheminement": "ST JEAN D ANGELY", + "nomCommune": "ST JEAN D ANGELY" }, { - "codePostal": "23400", - "codeCommune": "23027", - "libelleAcheminement": "BOSMOREAU LES MINES", - "nomCommune": "BOSMOREAU LES MINES" + "codePostal": "19200", + "codeCommune": "19128", + "libelleAcheminement": "MARGERIDES", + "nomCommune": "MARGERIDES" }, { - "codePostal": "24400", - "codeCommune": "24465", - "libelleAcheminement": "ST MICHEL DE DOUBLE", - "nomCommune": "ST MICHEL DE DOUBLE" + "codePostal": "20270", + "codeCommune": "2B009", + "libelleAcheminement": "ALERIA", + "nomCommune": "ALERIA" }, { - "codePostal": "61320", - "codeCommune": "61419", - "libelleAcheminement": "STE MARGUERITE DE CARROUGES", - "nomCommune": "STE MARGUERITE DE CARROUGES" + "codePostal": "20165", + "codeCommune": "2A146", + "libelleAcheminement": "LORETO DI TALLANO", + "nomCommune": "LORETO DI TALLANO" }, { - "codePostal": "57220", - "codeCommune": "57277", - "libelleAcheminement": "GUINKIRCHEN", - "nomCommune": "GUINKIRCHEN" + "codePostal": "17400", + "codeCommune": "17350", + "libelleAcheminement": "ST JULIEN DE L ESCAP", + "nomCommune": "ST JULIEN DE L ESCAP" }, { - "codePostal": "23220", - "codeCommune": "23029", - "libelleAcheminement": "LE BOURG D HEM", - "nomCommune": "LE BOURG D HEM" + "codePostal": "19250", + "codeCommune": "19136", + "libelleAcheminement": "MEYMAC", + "nomCommune": "MEYMAC" }, { - "codePostal": "24370", - "codeCommune": "24470", - "libelleAcheminement": "STE MONDANE", - "nomCommune": "STE MONDANE" + "codePostal": "20270", + "codeCommune": "2B016", + "libelleAcheminement": "ANTISANTI", + "nomCommune": "ANTISANTI" }, { - "codePostal": "61300", - "codeCommune": "61423", - "libelleAcheminement": "ST MARTIN D ECUBLEI", - "nomCommune": "ST MARTIN D ECUBLEI" + "codePostal": "20141", + "codeCommune": "2A154", + "libelleAcheminement": "MARIGNANA", + "nomCommune": "MARIGNANA" }, { - "codePostal": "57370", - "codeCommune": "57291", - "libelleAcheminement": "HANGVILLER", - "nomCommune": "HANGVILLER" + "codePostal": "17360", + "codeCommune": "17366", + "libelleAcheminement": "ST MARTIN DE COUX", + "nomCommune": "ST MARTIN DE COUX" }, { - "codePostal": "23600", - "codeCommune": "23038", - "libelleAcheminement": "BUSSIERE ST GEORGES", - "nomCommune": "BUSSIERE ST GEORGES" + "codePostal": "19290", + "codeCommune": "19139", + "libelleAcheminement": "MILLEVACHES", + "nomCommune": "MILLEVACHES" }, { - "codePostal": "24520", - "codeCommune": "24472", - "libelleAcheminement": "ST NEXANS", - "nomCommune": "ST NEXANS" + "codePostal": "20253", + "codeCommune": "2B029", + "libelleAcheminement": "BARBAGGIO", + "nomCommune": "BARBAGGIO" }, { - "codePostal": "61130", - "codeCommune": "61426", - "libelleAcheminement": "ST MARTIN DU VIEUX BELLEME", - "nomCommune": "ST MARTIN DU VIEUX BELLEME" + "codePostal": "20150", + "codeCommune": "2A198", + "libelleAcheminement": "OTA", + "nomCommune": "OTA" }, { - "codePostal": "57230", - "codeCommune": "57294", - "libelleAcheminement": "HANVILLER", - "nomCommune": "HANVILLER" + "codePostal": "17500", + "codeCommune": "17372", + "libelleAcheminement": "ST MEDARD", + "nomCommune": "ST MEDARD" }, { - "codePostal": "23480", - "codeCommune": "23043", - "libelleAcheminement": "CHAMBERAUD", - "nomCommune": "CHAMBERAUD" + "codePostal": "19210", + "codeCommune": "19144", + "libelleAcheminement": "MONTGIBAUD", + "nomCommune": "MONTGIBAUD" }, { - "codePostal": "24380", - "codeCommune": "24480", - "libelleAcheminement": "ST PAUL DE SERRE", - "nomCommune": "ST PAUL DE SERRE" + "codePostal": "20226", + "codeCommune": "2B034", + "libelleAcheminement": "BELGODERE", + "nomCommune": "BELGODERE" }, { - "codePostal": "61250", - "codeCommune": "61433", - "libelleAcheminement": "ST NICOLAS DES BOIS", - "nomCommune": "ST NICOLAS DES BOIS" + "codePostal": "20125", + "codeCommune": "2A240", + "libelleAcheminement": "POGGIOLO", + "nomCommune": "POGGIOLO" }, { - "codePostal": "57630", - "codeCommune": "57295", - "libelleAcheminement": "HARAUCOURT SUR SEILLE", - "nomCommune": "HARAUCOURT SUR SEILLE" + "codePostal": "17420", + "codeCommune": "17380", + "libelleAcheminement": "ST PALAIS SUR MER", + "nomCommune": "ST PALAIS SUR MER" }, { - "codePostal": "23250", - "codeCommune": "23051", - "libelleAcheminement": "LA CHAPELLE ST MARTIAL", - "nomCommune": "LA CHAPELLE ST MARTIAL" + "codePostal": "19500", + "codeCommune": "19150", + "libelleAcheminement": "NOAILHAC", + "nomCommune": "NOAILHAC" }, { - "codePostal": "24560", - "codeCommune": "24483", - "libelleAcheminement": "ST PERDOUX", - "nomCommune": "ST PERDOUX" + "codePostal": "20620", + "codeCommune": "2B037", + "libelleAcheminement": "BIGUGLIA", + "nomCommune": "BIGUGLIA" }, { - "codePostal": "61100", - "codeCommune": "61436", - "libelleAcheminement": "STE OPPORTUNE", - "nomCommune": "STE OPPORTUNE" + "codePostal": "20145", + "codeCommune": "2A269", + "libelleAcheminement": "SARI SOLENZARA", + "nomCommune": "SARI SOLENZARA" }, { - "codePostal": "57550", - "codeCommune": "57296", - "libelleAcheminement": "HARGARTEN AUX MINES", - "nomCommune": "HARGARTEN AUX MINES" + "codePostal": "17400", + "codeCommune": "17381", + "libelleAcheminement": "ST PARDOULT", + "nomCommune": "ST PARDOULT" }, { - "codePostal": "23700", - "codeCommune": "23053", - "libelleAcheminement": "CHARD", - "nomCommune": "CHARD" + "codePostal": "19410", + "codeCommune": "19154", + "libelleAcheminement": "ORGNAC SUR VEZERE", + "nomCommune": "ORGNAC SUR VEZERE" }, { - "codePostal": "24130", - "codeCommune": "24487", - "libelleAcheminement": "ST PIERRE D EYRAUD", - "nomCommune": "ST PIERRE D EYRAUD" + "codePostal": "20620", + "codeCommune": "2B037", + "libelleAcheminement": "BIGUGLIA", + "nomCommune": "BIGUGLIA" }, { - "codePostal": "61300", - "codeCommune": "61440", - "libelleAcheminement": "ST OUEN SUR ITON", - "nomCommune": "ST OUEN SUR ITON" + "codePostal": "20151", + "codeCommune": "2A270", + "libelleAcheminement": "SARI D ORCINO", + "nomCommune": "SARI D ORCINO" }, { - "codePostal": "57850", - "codeCommune": "57300", - "libelleAcheminement": "HASELBOURG", - "nomCommune": "HASELBOURG" + "codePostal": "17270", + "codeCommune": "17386", + "libelleAcheminement": "ST PIERRE DU PALAIS", + "nomCommune": "ST PIERRE DU PALAIS" }, { - "codePostal": "23700", - "codeCommune": "23055", - "libelleAcheminement": "CHATELARD", - "nomCommune": "CHATELARD" + "codePostal": "19190", + "codeCommune": "19156", + "libelleAcheminement": "PALAZINGES", + "nomCommune": "PALAZINGES" }, { - "codePostal": "24560", - "codeCommune": "24492", - "libelleAcheminement": "STE RADEGONDE", - "nomCommune": "STE RADEGONDE" + "codePostal": "20222", + "codeCommune": "2B043", + "libelleAcheminement": "BRANDO", + "nomCommune": "BRANDO" }, { - "codePostal": "61430", - "codeCommune": "61444", - "libelleAcheminement": "ST PHILBERT SUR ORNE", - "nomCommune": "ST PHILBERT SUR ORNE" + "codePostal": "20140", + "codeCommune": "2A276", + "libelleAcheminement": "SERRA DI FERRO", + "nomCommune": "SERRA DI FERRO" }, { - "codePostal": "57650", - "codeCommune": "57305", - "libelleAcheminement": "HAVANGE", - "nomCommune": "HAVANGE" + "codePostal": "17600", + "codeCommune": "17393", + "libelleAcheminement": "ST ROMAIN DE BENET", + "nomCommune": "ST ROMAIN DE BENET" }, { - "codePostal": "23130", - "codeCommune": "23061", - "libelleAcheminement": "CHENERAILLES", - "nomCommune": "CHENERAILLES" + "codePostal": "19160", + "codeCommune": "19157", + "libelleAcheminement": "PALISSE", + "nomCommune": "PALISSE" }, { - "codePostal": "24700", - "codeCommune": "24494", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "20230", + "codeCommune": "2B057", + "libelleAcheminement": "CANALE DI VERDE", + "nomCommune": "CANALE DI VERDE" }, { - "codePostal": "61800", - "codeCommune": "61445", - "libelleAcheminement": "ST PIERRE D ENTREMONT", - "nomCommune": "ST PIERRE D ENTREMONT" + "codePostal": "20147", + "codeCommune": "2A279", + "libelleAcheminement": "SERRIERA", + "nomCommune": "SERRIERA" }, { - "codePostal": "57700", - "codeCommune": "57306", - "libelleAcheminement": "HAYANGE", - "nomCommune": "HAYANGE" + "codePostal": "17350", + "codeCommune": "17397", + "libelleAcheminement": "ST SAVINIEN", + "nomCommune": "ST SAVINIEN" }, { - "codePostal": "23220", - "codeCommune": "23062", - "libelleAcheminement": "CHENIERS", - "nomCommune": "CHENIERS" + "codePostal": "19170", + "codeCommune": "19168", + "libelleAcheminement": "PRADINES", + "nomCommune": "PRADINES" }, { - "codePostal": "24230", - "codeCommune": "24501", - "libelleAcheminement": "ST SEURIN DE PRATS", - "nomCommune": "ST SEURIN DE PRATS" + "codePostal": "20217", + "codeCommune": "2B058", + "libelleAcheminement": "CANARI", + "nomCommune": "CANARI" }, { - "codePostal": "61370", - "codeCommune": "61446", - "libelleAcheminement": "ST PIERRE DES LOGES", - "nomCommune": "ST PIERRE DES LOGES" + "codePostal": "20152", + "codeCommune": "2A285", + "libelleAcheminement": "SORBOLLANO", + "nomCommune": "SORBOLLANO" }, { - "codePostal": "57700", - "codeCommune": "57306", - "libelleAcheminement": "HAYANGE", - "nomCommune": "HAYANGE" + "codePostal": "17600", + "codeCommune": "17406", + "libelleAcheminement": "ST SORNIN", + "nomCommune": "ST SORNIN" }, { - "codePostal": "23700", - "codeCommune": "23073", - "libelleAcheminement": "DONTREIX", - "nomCommune": "DONTREIX" + "codePostal": "19430", + "codeCommune": "19171", + "libelleAcheminement": "REYGADE", + "nomCommune": "REYGADE" }, { - "codePostal": "24410", - "codeCommune": "24511", - "libelleAcheminement": "ST VINCENT JALMOUTIERS", - "nomCommune": "ST VINCENT JALMOUTIERS" + "codePostal": "20215", + "codeCommune": "2B072", + "libelleAcheminement": "CASALTA", + "nomCommune": "CASALTA" }, { - "codePostal": "61350", - "codeCommune": "61452", - "libelleAcheminement": "ST ROCH SUR EGRENNE", - "nomCommune": "ST ROCH SUR EGRENNE" + "codePostal": "20143", + "codeCommune": "2A310", + "libelleAcheminement": "SANTA MARIA FIGANIELLA", + "nomCommune": "SANTA MARIA FIGANIELLA" }, { - "codePostal": "57530", - "codeCommune": "57307", - "libelleAcheminement": "HAYES", - "nomCommune": "HAYES" + "codePostal": "17138", + "codeCommune": "17414", + "libelleAcheminement": "ST XANDRE", + "nomCommune": "ST XANDRE" }, { - "codePostal": "23480", - "codeCommune": "23074", - "libelleAcheminement": "LE DONZEIL", - "nomCommune": "LE DONZEIL" + "codePostal": "19160", + "codeCommune": "19175", + "libelleAcheminement": "ROCHE LE PEYROUX", + "nomCommune": "ROCHE LE PEYROUX" }, { - "codePostal": "24420", - "codeCommune": "24513", - "libelleAcheminement": "ST VINCENT SUR L ISLE", - "nomCommune": "ST VINCENT SUR L ISLE" + "codePostal": "20236", + "codeCommune": "2B083", + "libelleAcheminement": "CASTIRLA", + "nomCommune": "CASTIRLA" }, { - "codePostal": "61470", - "codeCommune": "61460", - "libelleAcheminement": "SAP EN AUGE", - "nomCommune": "SAP EN AUGE" + "codePostal": "20110", + "codeCommune": "2A349", + "libelleAcheminement": "VIGGIANELLO", + "nomCommune": "VIGGIANELLO" }, { - "codePostal": "57660", - "codeCommune": "57311", - "libelleAcheminement": "HELLIMER", - "nomCommune": "HELLIMER" + "codePostal": "17130", + "codeCommune": "17417", + "libelleAcheminement": "SALIGNAC DE MIRAMBEAU", + "nomCommune": "SALIGNAC DE MIRAMBEAU" }, { - "codePostal": "23500", - "codeCommune": "23079", - "libelleAcheminement": "FELLETIN", - "nomCommune": "FELLETIN" + "codePostal": "19350", + "codeCommune": "19177", + "libelleAcheminement": "ROSIERS DE JUILLAC", + "nomCommune": "ROSIERS DE JUILLAC" }, { - "codePostal": "24230", - "codeCommune": "24514", - "libelleAcheminement": "ST VIVIEN", - "nomCommune": "ST VIVIEN" + "codePostal": "20230", + "codeCommune": "2B088", + "libelleAcheminement": "CHIATRA DI VERDE", + "nomCommune": "CHIATRA" }, { - "codePostal": "61600", - "codeCommune": "61463", - "libelleAcheminement": "LES MONTS D ANDAINE", - "nomCommune": "LES MONTS D ANDAINE" + "codePostal": "20212", + "codeCommune": "2B005", + "libelleAcheminement": "ALANDO", + "nomCommune": "ALANDO" }, { - "codePostal": "57690", - "codeCommune": "57313", - "libelleAcheminement": "HEMILLY", - "nomCommune": "HEMILLY" + "codePostal": "17120", + "codeCommune": "17425", + "libelleAcheminement": "SEMUSSAC", + "nomCommune": "SEMUSSAC" }, { - "codePostal": "23110", - "codeCommune": "23083", - "libelleAcheminement": "FONTANIERES", - "nomCommune": "FONTANIERES" + "codePostal": "19500", + "codeCommune": "19184", + "libelleAcheminement": "ST BAZILE DE MEYSSAC", + "nomCommune": "ST BAZILE DE MEYSSAC" }, { - "codePostal": "24590", - "codeCommune": "24516", - "libelleAcheminement": "SALIGNAC EYVIGUES", - "nomCommune": "SALIGNAC EYVIGUES" + "codePostal": "20212", + "codeCommune": "2B110", + "libelleAcheminement": "FAVALELLO DE BOZIO", + "nomCommune": "FAVALELLO" }, { - "codePostal": "61200", - "codeCommune": "61472", - "libelleAcheminement": "SEVIGNY", - "nomCommune": "SEVIGNY" + "codePostal": "20224", + "codeCommune": "2B007", + "libelleAcheminement": "ALBERTACCE", + "nomCommune": "ALBERTACCE" }, { - "codePostal": "57790", - "codeCommune": "57318", - "libelleAcheminement": "HERMELANGE", - "nomCommune": "HERMELANGE" + "codePostal": "17350", + "codeCommune": "17436", + "libelleAcheminement": "TAILLEBOURG", + "nomCommune": "TAILLEBOURG" }, { - "codePostal": "23230", - "codeCommune": "23093", - "libelleAcheminement": "GOUZON", - "nomCommune": "GOUZON" + "codePostal": "19130", + "codeCommune": "19196", + "libelleAcheminement": "ST CYR LA ROCHE", + "nomCommune": "ST CYR LA ROCHE" }, { - "codePostal": "24380", - "codeCommune": "24518", - "libelleAcheminement": "SALON", - "nomCommune": "SALON" + "codePostal": "20225", + "codeCommune": "2B112", + "libelleAcheminement": "FELICETO", + "nomCommune": "FELICETO" }, { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "20220", + "codeCommune": "2B010", + "libelleAcheminement": "ALGAJOLA", + "nomCommune": "ALGAJOLA" }, { - "codePostal": "57580", - "codeCommune": "57319", - "libelleAcheminement": "HERNY", - "nomCommune": "HERNY" + "codePostal": "17120", + "codeCommune": "17442", + "libelleAcheminement": "THAIMS", + "nomCommune": "THAIMS" }, { - "codePostal": "23250", - "codeCommune": "23099", - "libelleAcheminement": "JANAILLAT", - "nomCommune": "JANAILLAT" + "codePostal": "19160", + "codeCommune": "19200", + "libelleAcheminement": "ST ETIENNE LA GENESTE", + "nomCommune": "ST ETIENNE LA GENESTE" }, { - "codePostal": "24240", - "codeCommune": "24523", - "libelleAcheminement": "SAUSSIGNAC", - "nomCommune": "SAUSSIGNAC" + "codePostal": "20600", + "codeCommune": "2B120", + "libelleAcheminement": "FURIANI", + "nomCommune": "FURIANI" }, { - "codePostal": "61500", - "codeCommune": "61480", - "libelleAcheminement": "TANVILLE", - "nomCommune": "TANVILLE" + "codePostal": "20228", + "codeCommune": "2B030", + "libelleAcheminement": "BARRETTALI", + "nomCommune": "BARRETTALI" }, { - "codePostal": "57400", - "codeCommune": "57324", - "libelleAcheminement": "HILBESHEIM", - "nomCommune": "HILBESHEIM" + "codePostal": "17380", + "codeCommune": "17457", + "libelleAcheminement": "LA DEVISE", + "nomCommune": "LA DEVISE" }, { - "codePostal": "23220", - "codeCommune": "23101", - "libelleAcheminement": "JOUILLAT", - "nomCommune": "JOUILLAT" + "codePostal": "19220", + "codeCommune": "19205", + "libelleAcheminement": "ST GENIEZ O MERLE", + "nomCommune": "ST GENIEZ O MERLE" }, { - "codePostal": "24270", - "codeCommune": "24526", - "libelleAcheminement": "SAVIGNAC LEDRIER", - "nomCommune": "SAVIGNAC LEDRIER" + "codePostal": "20243", + "codeCommune": "2B135", + "libelleAcheminement": "ISOLACCIO DI FIUMORBO", + "nomCommune": "ISOLACCIO DI FIUMORBO" }, { - "codePostal": "61130", - "codeCommune": "61484", - "libelleAcheminement": "VAL AU PERCHE", - "nomCommune": "VAL AU PERCHE" + "codePostal": "20600", + "codeCommune": "2B033", + "libelleAcheminement": "BASTIA", + "nomCommune": "BASTIA" }, { - "codePostal": "57220", - "codeCommune": "57326", - "libelleAcheminement": "HINCKANGE", - "nomCommune": "HINCKANGE" + "codePostal": "17380", + "codeCommune": "17457", + "libelleAcheminement": "LA DEVISE", + "nomCommune": "LA DEVISE" }, { - "codePostal": "23700", - "codeCommune": "23110", - "libelleAcheminement": "LIOUX LES MONGES", - "nomCommune": "LIOUX LES MONGES" + "codePostal": "19400", + "codeCommune": "19212", + "libelleAcheminement": "ST HILAIRE TAURIEUX", + "nomCommune": "ST HILAIRE TAURIEUX" }, { - "codePostal": "24300", - "codeCommune": "24528", - "libelleAcheminement": "SCEAU ST ANGEL", - "nomCommune": "SCEAU ST ANGEL" + "codePostal": "20244", + "codeCommune": "2B137", + "libelleAcheminement": "LANO", + "nomCommune": "LANO" }, { - "codePostal": "61260", - "codeCommune": "61484", - "libelleAcheminement": "VAL AU PERCHE", - "nomCommune": "VAL AU PERCHE" + "codePostal": "20260", + "codeCommune": "2B049", + "libelleAcheminement": "CALENZANA", + "nomCommune": "CALENZANA" }, { - "codePostal": "57380", - "codeCommune": "57328", - "libelleAcheminement": "HOLACOURT", - "nomCommune": "HOLACOURT" + "codePostal": "17500", + "codeCommune": "17458", + "libelleAcheminement": "VANZAC", + "nomCommune": "VANZAC" }, { - "codePostal": "23260", - "codeCommune": "23119", - "libelleAcheminement": "MALLERET", - "nomCommune": "MALLERET" + "codePostal": "19160", + "codeCommune": "19219", + "libelleAcheminement": "STE MARIE LAPANOUZE", + "nomCommune": "STE MARIE LAPANOUZE" }, { - "codePostal": "24290", - "codeCommune": "24531", - "libelleAcheminement": "SERGEAC", - "nomCommune": "SERGEAC" + "codePostal": "20260", + "codeCommune": "2B150", + "libelleAcheminement": "LUMIO", + "nomCommune": "LUMIO" }, { - "codePostal": "61260", - "codeCommune": "61484", - "libelleAcheminement": "VAL AU PERCHE", - "nomCommune": "VAL AU PERCHE" + "codePostal": "20229", + "codeCommune": "2B052", + "libelleAcheminement": "CAMPANA", + "nomCommune": "CAMPANA" }, { - "codePostal": "57220", - "codeCommune": "57329", - "libelleAcheminement": "HOLLING", - "nomCommune": "HOLLING" + "codePostal": "17470", + "codeCommune": "17471", + "libelleAcheminement": "LA VILLEDIEU", + "nomCommune": "LA VILLEDIEU" }, { - "codePostal": "23700", - "codeCommune": "23123", - "libelleAcheminement": "LES MARS", - "nomCommune": "LES MARS" + "codePostal": "19150", + "codeCommune": "19220", + "libelleAcheminement": "ST MARTIAL DE GIMEL", + "nomCommune": "ST MARTIAL DE GIMEL" }, { - "codePostal": "24420", - "codeCommune": "24540", - "libelleAcheminement": "SORGES ET LIGUEUX EN PERIGORD", - "nomCommune": "SORGES ET LIGUEUX EN PERIGORD" + "codePostal": "20245", + "codeCommune": "2B153", + "libelleAcheminement": "MANSO", + "nomCommune": "MANSO" }, { - "codePostal": "61340", - "codeCommune": "61484", - "libelleAcheminement": "VAL AU PERCHE", - "nomCommune": "VAL AU PERCHE" + "codePostal": "20270", + "codeCommune": "2B053", + "libelleAcheminement": "CAMPI", + "nomCommune": "CAMPI" }, { - "codePostal": "57510", - "codeCommune": "57330", - "libelleAcheminement": "HOLVING", - "nomCommune": "HOLVING" + "codePostal": "18500", + "codeCommune": "18005", + "libelleAcheminement": "ALLOUIS", + "nomCommune": "ALLOUIS" }, { - "codePostal": "23260", - "codeCommune": "23129", - "libelleAcheminement": "MAZIERE AUX BONS HOMMES", - "nomCommune": "LA MAZIERE AUX BONS HOMMES" + "codePostal": "19210", + "codeCommune": "19223", + "libelleAcheminement": "ST MARTIN SEPERT", + "nomCommune": "ST MARTIN SEPERT" }, { - "codePostal": "24460", - "codeCommune": "24540", - "libelleAcheminement": "SORGES ET LIGUEUX EN PERIGORD", - "nomCommune": "SORGES ET LIGUEUX EN PERIGORD" + "codePostal": "20270", + "codeCommune": "2B155", + "libelleAcheminement": "MATRA", + "nomCommune": "MATRA" }, { - "codePostal": "61120", - "codeCommune": "61485", - "libelleAcheminement": "TICHEVILLE", - "nomCommune": "TICHEVILLE" + "codePostal": "20290", + "codeCommune": "2B054", + "libelleAcheminement": "CAMPILE", + "nomCommune": "CAMPILE" }, { - "codePostal": "57470", - "codeCommune": "57332", - "libelleAcheminement": "HOMBOURG HAUT", - "nomCommune": "HOMBOURG HAUT" + "codePostal": "18340", + "codeCommune": "18006", + "libelleAcheminement": "ANNOIX", + "nomCommune": "ANNOIX" }, { - "codePostal": "23360", - "codeCommune": "23130", - "libelleAcheminement": "MEASNES", - "nomCommune": "MEASNES" + "codePostal": "19330", + "codeCommune": "19227", + "libelleAcheminement": "ST MEXANT", + "nomCommune": "ST MEXANT" }, { - "codePostal": "24540", - "codeCommune": "24542", - "libelleAcheminement": "SOULAURES", - "nomCommune": "SOULAURES" + "codePostal": "20218", + "codeCommune": "2B162", + "libelleAcheminement": "MOLTIFAO", + "nomCommune": "MOLTIFAO" }, { - "codePostal": "61800", - "codeCommune": "61486", - "libelleAcheminement": "TINCHEBRAY BOCAGE", - "nomCommune": "TINCHEBRAY BOCAGE" + "codePostal": "20229", + "codeCommune": "2B067", + "libelleAcheminement": "CARPINETO", + "nomCommune": "CARPINETO" }, { - "codePostal": "57820", - "codeCommune": "57339", - "libelleAcheminement": "HULTEHOUSE", - "nomCommune": "HULTEHOUSE" + "codePostal": "18150", + "codeCommune": "18007", + "libelleAcheminement": "APREMONT SUR ALLIER", + "nomCommune": "APREMONT SUR ALLIER" }, { - "codePostal": "23320", - "codeCommune": "23132", - "libelleAcheminement": "MONTAIGUT LE BLANC", - "nomCommune": "MONTAIGUT LE BLANC" + "codePostal": "19200", + "codeCommune": "19233", + "libelleAcheminement": "ST PARDOUX LE VIEUX", + "nomCommune": "ST PARDOUX LE VIEUX" }, { - "codePostal": "24800", - "codeCommune": "24551", - "libelleAcheminement": "THIVIERS", - "nomCommune": "THIVIERS" + "codePostal": "20214", + "codeCommune": "2B167", + "libelleAcheminement": "MONTEGROSSO", + "nomCommune": "MONTEGROSSO" }, { - "codePostal": "61800", - "codeCommune": "61486", - "libelleAcheminement": "TINCHEBRAY BOCAGE", - "nomCommune": "TINCHEBRAY BOCAGE" + "codePostal": "20244", + "codeCommune": "2B068", + "libelleAcheminement": "CARTICASI", + "nomCommune": "CARTICASI" }, { - "codePostal": "57990", - "codeCommune": "57340", - "libelleAcheminement": "HUNDLING", - "nomCommune": "HUNDLING" + "codePostal": "18200", + "codeCommune": "18009", + "libelleAcheminement": "ARCOMPS", + "nomCommune": "ARCOMPS" }, { - "codePostal": "23460", - "codeCommune": "23134", - "libelleAcheminement": "LE MONTEIL AU VICOMTE", - "nomCommune": "LE MONTEIL AU VICOMTE" + "codePostal": "19270", + "codeCommune": "19234", + "libelleAcheminement": "ST PARDOUX L ORTIGIER", + "nomCommune": "ST PARDOUX L ORTIGIER" }, { - "codePostal": "24320", - "codeCommune": "24554", - "libelleAcheminement": "LA TOUR BLANCHE CERCLES", - "nomCommune": "LA TOUR BLANCHE CERCLES" + "codePostal": "20220", + "codeCommune": "2B168", + "libelleAcheminement": "MONTICELLO", + "nomCommune": "MONTICELLO" }, { - "codePostal": "61800", - "codeCommune": "61486", - "libelleAcheminement": "TINCHEBRAY BOCAGE", - "nomCommune": "TINCHEBRAY BOCAGE" + "codePostal": "20224", + "codeCommune": "2B073", + "libelleAcheminement": "CASAMACCIOLI", + "nomCommune": "CASAMACCIOLI" }, { - "codePostal": "57830", - "codeCommune": "57342", - "libelleAcheminement": "IBIGNY", - "nomCommune": "IBIGNY" + "codePostal": "18170", + "codeCommune": "18010", + "libelleAcheminement": "ARDENAIS", + "nomCommune": "ARDENAIS" }, { - "codePostal": "23500", - "codeCommune": "23144", - "libelleAcheminement": "LA NOUAILLE", - "nomCommune": "LA NOUAILLE" + "codePostal": "19700", + "codeCommune": "19240", + "libelleAcheminement": "ST SALVADOUR", + "nomCommune": "ST SALVADOUR" }, { - "codePostal": "24390", - "codeCommune": "24555", - "libelleAcheminement": "TOURTOIRAC", - "nomCommune": "TOURTOIRAC" + "codePostal": "20219", + "codeCommune": "2B171", + "libelleAcheminement": "MURACCIOLE", + "nomCommune": "MURACCIOLE" }, { - "codePostal": "61800", - "codeCommune": "61486", - "libelleAcheminement": "TINCHEBRAY BOCAGE", - "nomCommune": "TINCHEBRAY BOCAGE" + "codePostal": "20250", + "codeCommune": "2B074", + "libelleAcheminement": "CASANOVA", + "nomCommune": "CASANOVA" }, { - "codePostal": "57990", - "codeCommune": "57348", - "libelleAcheminement": "IPPLING", - "nomCommune": "IPPLING" + "codePostal": "18220", + "codeCommune": "18016", + "libelleAcheminement": "AUBINGES", + "nomCommune": "AUBINGES" }, { - "codePostal": "23000", - "codeCommune": "23150", - "libelleAcheminement": "PEYRABOUT", - "nomCommune": "PEYRABOUT" + "codePostal": "19200", + "codeCommune": "19247", + "libelleAcheminement": "ST VICTOUR", + "nomCommune": "ST VICTOUR" }, { - "codePostal": "24150", - "codeCommune": "24566", - "libelleAcheminement": "VARENNES", - "nomCommune": "VARENNES" + "codePostal": "20226", + "codeCommune": "2B180", + "libelleAcheminement": "NOVELLA", + "nomCommune": "NOVELLA" }, { - "codePostal": "61330", - "codeCommune": "61487", - "libelleAcheminement": "TORCHAMP", - "nomCommune": "TORCHAMP" + "codePostal": "20250", + "codeCommune": "2B096", + "libelleAcheminement": "CORTE", + "nomCommune": "CORTE" }, { - "codePostal": "57330", - "codeCommune": "57356", - "libelleAcheminement": "KANFEN", - "nomCommune": "KANFEN" + "codePostal": "18300", + "codeCommune": "18020", + "libelleAcheminement": "BANNAY", + "nomCommune": "BANNAY" }, { - "codePostal": "23130", - "codeCommune": "23151", - "libelleAcheminement": "PEYRAT LA NONIERE", - "nomCommune": "PEYRAT LA NONIERE" + "codePostal": "19140", + "codeCommune": "19248", + "libelleAcheminement": "ST YBARD", + "nomCommune": "ST YBARD" }, { - "codePostal": "24540", - "codeCommune": "24572", - "libelleAcheminement": "VERGT DE BIRON", - "nomCommune": "VERGT DE BIRON" + "codePostal": "20226", + "codeCommune": "2B182", + "libelleAcheminement": "OCCHIATANA", + "nomCommune": "OCCHIATANA" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "20237", + "codeCommune": "2B101", + "libelleAcheminement": "CROCE", + "nomCommune": "CROCE" }, { - "codePostal": "57920", - "codeCommune": "57359", - "libelleAcheminement": "KEMPLICH", - "nomCommune": "KEMPLICH" + "codePostal": "18260", + "codeCommune": "18022", + "libelleAcheminement": "BARLIEU", + "nomCommune": "BARLIEU" }, { - "codePostal": "23500", - "codeCommune": "23158", - "libelleAcheminement": "POUSSANGES", - "nomCommune": "POUSSANGES" + "codePostal": "19110", + "codeCommune": "19252", + "libelleAcheminement": "SARROUX ST JULIEN", + "nomCommune": "SARROUX ST JULIEN" }, { - "codePostal": "24320", - "codeCommune": "24573", - "libelleAcheminement": "VERTEILLAC", - "nomCommune": "VERTEILLAC" + "codePostal": "20232", + "codeCommune": "2B185", + "libelleAcheminement": "OLETTA", + "nomCommune": "OLETTA" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "20290", + "codeCommune": "2B102", + "libelleAcheminement": "CROCICCHIA", + "nomCommune": "CROCICCHIA" }, { - "codePostal": "57460", - "codeCommune": "57360", - "libelleAcheminement": "KERBACH", - "nomCommune": "KERBACH" + "codePostal": "18370", + "codeCommune": "18024", + "libelleAcheminement": "BEDDES", + "nomCommune": "BEDDES" }, { - "codePostal": "23270", - "codeCommune": "23162", - "libelleAcheminement": "ROCHES", - "nomCommune": "ROCHES" + "codePostal": "19430", + "codeCommune": "19259", + "libelleAcheminement": "SEXCLES", + "nomCommune": "SEXCLES" }, { - "codePostal": "24370", - "codeCommune": "24574", - "libelleAcheminement": "VEYRIGNAC", - "nomCommune": "VEYRIGNAC" + "codePostal": "20290", + "codeCommune": "2B192", + "libelleAcheminement": "OLMO", + "nomCommune": "OLMO" }, { - "codePostal": "61160", - "codeCommune": "61505", - "libelleAcheminement": "VILLEDIEU LES BAILLEUL", - "nomCommune": "VILLEDIEU LES BAILLEUL" + "codePostal": "20244", + "codeCommune": "2B106", + "libelleAcheminement": "ERONE", + "nomCommune": "ERONE" }, { - "codePostal": "57920", - "codeCommune": "57367", - "libelleAcheminement": "KLANG", - "nomCommune": "KLANG" + "codePostal": "18240", + "codeCommune": "18032", + "libelleAcheminement": "BOULLERET", + "nomCommune": "BOULLERET" }, { - "codePostal": "23200", - "codeCommune": "23180", - "libelleAcheminement": "ST AMAND", - "nomCommune": "ST AMAND" + "codePostal": "19120", + "codeCommune": "19260", + "libelleAcheminement": "SIONIAC", + "nomCommune": "SIONIAC" }, { - "codePostal": "24220", - "codeCommune": "24577", - "libelleAcheminement": "VEZAC", - "nomCommune": "VEZAC" + "codePostal": "20251", + "codeCommune": "2B201", + "libelleAcheminement": "PANCHERACCIA", + "nomCommune": "PANCHERACCIA" }, { - "codePostal": "61400", - "codeCommune": "61507", - "libelleAcheminement": "VILLIERS SOUS MORTAGNE", - "nomCommune": "VILLIERS SOUS MORTAGNE" + "codePostal": "20234", + "codeCommune": "2B111", + "libelleAcheminement": "FELCE", + "nomCommune": "FELCE" }, { - "codePostal": "57240", - "codeCommune": "57368", - "libelleAcheminement": "KNUTANGE", - "nomCommune": "KNUTANGE" + "codePostal": "18120", + "codeCommune": "18036", + "libelleAcheminement": "BRINAY", + "nomCommune": "BRINAY" }, { - "codePostal": "23400", - "codeCommune": "23181", - "libelleAcheminement": "ST AMAND JARTOUDEIX", - "nomCommune": "ST AMAND JARTOUDEIX" + "codePostal": "19550", + "codeCommune": "19264", + "libelleAcheminement": "SOURSAC", + "nomCommune": "SOURSAC" }, { - "codePostal": "24200", - "codeCommune": "24587", - "libelleAcheminement": "VITRAC", - "nomCommune": "VITRAC" + "codePostal": "20234", + "codeCommune": "2B208", + "libelleAcheminement": "PERELLI", + "nomCommune": "PERELLI" }, { - "codePostal": "62153", - "codeCommune": "62001", - "libelleAcheminement": "ABLAIN ST NAZAIRE", - "nomCommune": "ABLAIN ST NAZAIRE" + "codePostal": "20225", + "codeCommune": "2B138", + "libelleAcheminement": "LAVATOGGIO", + "nomCommune": "LAVATOGGIO" }, { - "codePostal": "57480", - "codeCommune": "57371", - "libelleAcheminement": "HAUTE KONTZ", - "nomCommune": "HAUTE KONTZ" + "codePostal": "18410", + "codeCommune": "18037", + "libelleAcheminement": "BRINON SUR SAULDRE", + "nomCommune": "BRINON SUR SAULDRE" }, { - "codePostal": "23200", - "codeCommune": "23182", - "libelleAcheminement": "ST AVIT DE TARDES", - "nomCommune": "ST AVIT DE TARDES" + "codePostal": "19200", + "codeCommune": "19266", + "libelleAcheminement": "THALAMY", + "nomCommune": "THALAMY" }, { - "codePostal": "25250", - "codeCommune": "25005", - "libelleAcheminement": "ACCOLANS", - "nomCommune": "ACCOLANS" + "codePostal": "20230", + "codeCommune": "2B210", + "libelleAcheminement": "PERO CASEVECCHIE", + "nomCommune": "PERO CASEVECCHIE" }, { - "codePostal": "62320", - "codeCommune": "62003", - "libelleAcheminement": "ACHEVILLE", - "nomCommune": "ACHEVILLE" + "codePostal": "20215", + "codeCommune": "2B145", + "libelleAcheminement": "LORETO DI CASINCA", + "nomCommune": "LORETO DI CASINCA" }, { - "codePostal": "57830", - "codeCommune": "57377", - "libelleAcheminement": "LANDANGE", - "nomCommune": "LANDANGE" + "codePostal": "18300", + "codeCommune": "18039", + "libelleAcheminement": "BUE", + "nomCommune": "BUE" }, { - "codePostal": "23480", - "codeCommune": "23183", - "libelleAcheminement": "ST AVIT LE PAUVRE", - "nomCommune": "ST AVIT LE PAUVRE" + "codePostal": "19500", + "codeCommune": "19273", + "libelleAcheminement": "TURENNE", + "nomCommune": "TURENNE" }, { - "codePostal": "25360", - "codeCommune": "25006", - "libelleAcheminement": "ADAM LES PASSAVANT", - "nomCommune": "ADAM LES PASSAVANT" + "codePostal": "20218", + "codeCommune": "2B220", + "libelleAcheminement": "PIEDIGRIGGIO", + "nomCommune": "PIEDIGRIGGIO" }, { - "codePostal": "62380", - "codeCommune": "62008", - "libelleAcheminement": "ACQUIN WESTBECOURT", - "nomCommune": "ACQUIN WESTBECOURT" + "codePostal": "20240", + "codeCommune": "2B149", + "libelleAcheminement": "LUGO DI NAZZA", + "nomCommune": "LUGO DI NAZZA" }, { - "codePostal": "57385", - "codeCommune": "57386", - "libelleAcheminement": "LAUDREFANG", - "nomCommune": "LAUDREFANG" + "codePostal": "18360", + "codeCommune": "18041", + "libelleAcheminement": "LA CELETTE", + "nomCommune": "LA CELETTE" }, { - "codePostal": "23000", - "codeCommune": "23186", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "19270", + "codeCommune": "19274", + "libelleAcheminement": "USSAC", + "nomCommune": "USSAC" }, { - "codePostal": "25400", - "codeCommune": "25020", - "libelleAcheminement": "ARBOUANS", - "nomCommune": "ARBOUANS" + "codePostal": "20230", + "codeCommune": "2B225", + "libelleAcheminement": "PIETRA DI VERDE", + "nomCommune": "PIETRA DI VERDE" }, { - "codePostal": "62116", - "codeCommune": "62009", - "libelleAcheminement": "ADINFER", - "nomCommune": "ADINFER" + "codePostal": "20212", + "codeCommune": "2B157", + "libelleAcheminement": "MAZZOLA", + "nomCommune": "MAZZOLA" }, { - "codePostal": "57480", - "codeCommune": "57387", - "libelleAcheminement": "LAUMESFELD", - "nomCommune": "LAUMESFELD" + "codePostal": "18200", + "codeCommune": "18042", + "libelleAcheminement": "LA CELLE", + "nomCommune": "LA CELLE" }, { - "codePostal": "23400", - "codeCommune": "23189", - "libelleAcheminement": "ST DIZIER MASBARAUD", - "nomCommune": "ST DIZIER MASBARAUD" + "codePostal": "19200", + "codeCommune": "19275", + "libelleAcheminement": "USSEL", + "nomCommune": "USSEL" }, { - "codePostal": "25300", - "codeCommune": "25024", - "libelleAcheminement": "ARCON", - "nomCommune": "ARCON" + "codePostal": "20246", + "codeCommune": "2B230", + "libelleAcheminement": "PIEVE", + "nomCommune": "PIEVE" }, { - "codePostal": "62161", - "codeCommune": "62011", - "libelleAcheminement": "AGNEZ LES DUISANS", - "nomCommune": "AGNEZ LES DUISANS" + "codePostal": "20287", + "codeCommune": "2B159", + "libelleAcheminement": "MERIA", + "nomCommune": "MERIA" }, { - "codePostal": "57580", - "codeCommune": "57395", - "libelleAcheminement": "LESSE", - "nomCommune": "LESSE" + "codePostal": "18190", + "codeCommune": "18046", + "libelleAcheminement": "CHAMBON", + "nomCommune": "CHAMBON" }, { - "codePostal": "23400", - "codeCommune": "23205", - "libelleAcheminement": "ST JUNIEN LA BREGERE", - "nomCommune": "ST JUNIEN LA BREGERE" + "codePostal": "21121", + "codeCommune": "21003", + "libelleAcheminement": "AHUY", + "nomCommune": "AHUY" }, { - "codePostal": "25520", - "codeCommune": "25025", - "libelleAcheminement": "ARC SOUS CICON", - "nomCommune": "ARC SOUS CICON" + "codePostal": "20259", + "codeCommune": "2B235", + "libelleAcheminement": "PIOGGIOLA", + "nomCommune": "PIOGGIOLA" }, { - "codePostal": "62690", - "codeCommune": "62012", - "libelleAcheminement": "AGNIERES", - "nomCommune": "AGNIERES" + "codePostal": "20270", + "codeCommune": "2B161", + "libelleAcheminement": "MOITA", + "nomCommune": "MOITA" }, { - "codePostal": "57810", - "codeCommune": "57397", - "libelleAcheminement": "LEY", - "nomCommune": "LEY" + "codePostal": "18140", + "codeCommune": "18049", + "libelleAcheminement": "LA CHAPELLE MONTLINARD", + "nomCommune": "LA CHAPELLE MONTLINARD" }, { - "codePostal": "23300", - "codeCommune": "23207", - "libelleAcheminement": "ST LEGER BRIDEREIX", - "nomCommune": "ST LEGER BRIDEREIX" + "codePostal": "21510", + "codeCommune": "21004", + "libelleAcheminement": "AIGNAY LE DUC", + "nomCommune": "AIGNAY LE DUC" }, { - "codePostal": "25270", - "codeCommune": "25026", - "libelleAcheminement": "ARC SOUS MONTENOT", - "nomCommune": "ARC SOUS MONTENOT" + "codePostal": "20232", + "codeCommune": "2B239", + "libelleAcheminement": "POGGIO D OLETTA", + "nomCommune": "POGGIO D OLETTA" }, { - "codePostal": "62217", - "codeCommune": "62013", - "libelleAcheminement": "AGNY", - "nomCommune": "AGNY" + "codePostal": "20218", + "codeCommune": "2B169", + "libelleAcheminement": "MOROSAGLIA", + "nomCommune": "MOROSAGLIA" }, { - "codePostal": "57340", - "codeCommune": "57401", - "libelleAcheminement": "LIDREZING", - "nomCommune": "LIDREZING" + "codePostal": "18250", + "codeCommune": "18051", + "libelleAcheminement": "LA CHAPELOTTE", + "nomCommune": "LA CHAPELOTTE" }, { - "codePostal": "23430", - "codeCommune": "23217", - "libelleAcheminement": "ST MARTIN STE CATHERINE", - "nomCommune": "ST MARTIN STE CATHERINE" + "codePostal": "21230", + "codeCommune": "21009", + "libelleAcheminement": "ALLEREY", + "nomCommune": "ALLEREY" }, { - "codePostal": "25400", - "codeCommune": "25031", - "libelleAcheminement": "AUDINCOURT", - "nomCommune": "AUDINCOURT" + "codePostal": "20237", + "codeCommune": "2B241", + "libelleAcheminement": "POGGIO MARINACCIO", + "nomCommune": "POGGIO MARINACCIO" }, { - "codePostal": "62120", - "codeCommune": "62014", - "libelleAcheminement": "AIRE SUR LA LYS", - "nomCommune": "AIRE SUR LA LYS" + "codePostal": "20217", + "codeCommune": "2B184", + "libelleAcheminement": "OLCANI", + "nomCommune": "OLCANI" }, { - "codePostal": "57635", - "codeCommune": "57407", - "libelleAcheminement": "LIXHEIM", - "nomCommune": "LIXHEIM" + "codePostal": "18800", + "codeCommune": "18056", + "libelleAcheminement": "CHASSY", + "nomCommune": "CHASSY" }, { - "codePostal": "23260", - "codeCommune": "23218", - "libelleAcheminement": "ST MAURICE PRES CROCQ", - "nomCommune": "ST MAURICE PRES CROCQ" + "codePostal": "21420", + "codeCommune": "21010", + "libelleAcheminement": "ALOXE CORTON", + "nomCommune": "ALOXE CORTON" }, { - "codePostal": "25870", - "codeCommune": "25035", - "libelleAcheminement": "LES AUXONS", - "nomCommune": "LES AUXONS" + "codePostal": "20229", + "codeCommune": "2B243", + "libelleAcheminement": "POLVEROSO", + "nomCommune": "POLVEROSO" }, { - "codePostal": "62180", - "codeCommune": "62015", - "libelleAcheminement": "AIRON NOTRE DAME", - "nomCommune": "AIRON NOTRE DAME" + "codePostal": "20217", + "codeCommune": "2B187", + "libelleAcheminement": "OLMETA DI CAPOCORSO", + "nomCommune": "OLMETA DI CAPOCORSO" }, { - "codePostal": "57520", - "codeCommune": "57408", - "libelleAcheminement": "LIXING LES ROUHLING", - "nomCommune": "LIXING LES ROUHLING" + "codePostal": "18350", + "codeCommune": "18060", + "libelleAcheminement": "CHAUMONT", + "nomCommune": "CHAUMONT" }, { - "codePostal": "23100", - "codeCommune": "23221", - "libelleAcheminement": "ST MERD LA BREUILLE", - "nomCommune": "ST MERD LA BREUILLE" + "codePostal": "21230", + "codeCommune": "21015", + "libelleAcheminement": "ANTIGNY LA VILLE", + "nomCommune": "ANTIGNY LA VILLE" }, { - "codePostal": "25720", - "codeCommune": "25036", - "libelleAcheminement": "AVANNE AVENEY", - "nomCommune": "AVANNE AVENEY" + "codePostal": "20218", + "codeCommune": "2B248", + "libelleAcheminement": "PRATO DI GIOVELLINA", + "nomCommune": "PRATO DI GIOVELLINA" }, { - "codePostal": "62850", - "codeCommune": "62020", - "libelleAcheminement": "ALEMBON", - "nomCommune": "ALEMBON" + "codePostal": "20236", + "codeCommune": "2B193", + "libelleAcheminement": "OMESSA", + "nomCommune": "OMESSA" }, { - "codePostal": "57660", - "codeCommune": "57409", - "libelleAcheminement": "LIXING LES ST AVOLD", - "nomCommune": "LIXING LES ST AVOLD" + "codePostal": "18150", + "codeCommune": "18062", + "libelleAcheminement": "LE CHAUTAY", + "nomCommune": "LE CHAUTAY" }, { - "codePostal": "23600", - "codeCommune": "23233", - "libelleAcheminement": "ST PIERRE LE BOST", - "nomCommune": "ST PIERRE LE BOST" + "codePostal": "21310", + "codeCommune": "21016", + "libelleAcheminement": "ARCEAU", + "nomCommune": "ARCEAU" }, { - "codePostal": "25380", - "codeCommune": "25051", - "libelleAcheminement": "BELLEHERBE", - "nomCommune": "BELLEHERBE" + "codePostal": "20213", + "codeCommune": "2B252", + "libelleAcheminement": "PRUNO", + "nomCommune": "PRUNO" }, { - "codePostal": "62190", - "codeCommune": "62028", - "libelleAcheminement": "AMES", - "nomCommune": "AMES" + "codePostal": "20236", + "codeCommune": "2B193", + "libelleAcheminement": "OMESSA", + "nomCommune": "OMESSA" }, { - "codePostal": "57790", - "codeCommune": "57414", - "libelleAcheminement": "LORQUIN", - "nomCommune": "LORQUIN" + "codePostal": "18410", + "codeCommune": "18067", + "libelleAcheminement": "CLEMONT", + "nomCommune": "CLEMONT" }, { - "codePostal": "23110", - "codeCommune": "23234", - "libelleAcheminement": "ST PRIEST", - "nomCommune": "ST PRIEST" + "codePostal": "21350", + "codeCommune": "21024", + "libelleAcheminement": "ARNAY SOUS VITTEAUX", + "nomCommune": "ARNAY SOUS VITTEAUX" }, { - "codePostal": "25190", - "codeCommune": "25061", - "libelleAcheminement": "BIEF", - "nomCommune": "BIEF" + "codePostal": "20247", + "codeCommune": "2B261", + "libelleAcheminement": "ROGLIANO", + "nomCommune": "ROGLIANO" }, { - "codePostal": "62760", - "codeCommune": "62030", - "libelleAcheminement": "AMPLIER", - "nomCommune": "AMPLIER" + "codePostal": "20229", + "codeCommune": "2B202", + "libelleAcheminement": "PARATA", + "nomCommune": "PARATA" }, { - "codePostal": "57050", - "codeCommune": "57415", - "libelleAcheminement": "LORRY LES METZ", - "nomCommune": "LORRY LES METZ" + "codePostal": "18260", + "codeCommune": "18070", + "libelleAcheminement": "CONCRESSAULT", + "nomCommune": "CONCRESSAULT" }, { - "codePostal": "23400", - "codeCommune": "23237", - "libelleAcheminement": "ST PRIEST PALUS", - "nomCommune": "ST PRIEST PALUS" + "codePostal": "21360", + "codeCommune": "21030", + "libelleAcheminement": "AUBAINE", + "nomCommune": "AUBAINE" }, { - "codePostal": "25250", - "codeCommune": "25067", - "libelleAcheminement": "BLUSSANS", - "nomCommune": "BLUSSANS" + "codePostal": "20244", + "codeCommune": "2B264", + "libelleAcheminement": "RUSIO", + "nomCommune": "RUSIO" }, { - "codePostal": "62134", - "codeCommune": "62036", - "libelleAcheminement": "ANVIN", - "nomCommune": "ANVIN" + "codePostal": "20290", + "codeCommune": "2B206", + "libelleAcheminement": "PENTA ACQUATELLA", + "nomCommune": "PENTA ACQUATELLA" }, { - "codePostal": "57420", - "codeCommune": "57416", - "libelleAcheminement": "LORRY MARDIGNY", - "nomCommune": "LORRY MARDIGNY" + "codePostal": "18130", + "codeCommune": "18071", + "libelleAcheminement": "CONTRES", + "nomCommune": "CONTRES" }, { - "codePostal": "23190", - "codeCommune": "23241", - "libelleAcheminement": "ST SILVAIN BELLEGARDE", - "nomCommune": "ST SILVAIN BELLEGARDE" + "codePostal": "21410", + "codeCommune": "21051", + "libelleAcheminement": "BAULME LA ROCHE", + "nomCommune": "BAULME LA ROCHE" }, { - "codePostal": "25330", - "codeCommune": "25070", - "libelleAcheminement": "BOLANDOZ", - "nomCommune": "BOLANDOZ" + "codePostal": "20239", + "codeCommune": "2B265", + "libelleAcheminement": "RUTALI", + "nomCommune": "RUTALI" }, { - "codePostal": "62610", - "codeCommune": "62038", - "libelleAcheminement": "ARDRES", - "nomCommune": "ARDRES" + "codePostal": "20213", + "codeCommune": "2B207", + "libelleAcheminement": "PENTA DI CASINCA", + "nomCommune": "PENTA DI CASINCA" }, { - "codePostal": "57670", - "codeCommune": "57417", - "libelleAcheminement": "LOSTROFF", - "nomCommune": "LOSTROFF" + "codePostal": "18340", + "codeCommune": "18073", + "libelleAcheminement": "CORQUOY", + "nomCommune": "CORQUOY" }, { - "codePostal": "23320", - "codeCommune": "23247", - "libelleAcheminement": "ST VAURY", - "nomCommune": "ST VAURY" + "codePostal": "21320", + "codeCommune": "21062", + "libelleAcheminement": "BELLENOT SOUS POUILLY", + "nomCommune": "BELLENOT SOUS POUILLY" }, { - "codePostal": "25230", - "codeCommune": "25071", - "libelleAcheminement": "BONDEVAL", - "nomCommune": "BONDEVAL" + "codePostal": "20215", + "codeCommune": "2B280", + "libelleAcheminement": "SILVARECCIO", + "nomCommune": "SILVARECCIO" }, { - "codePostal": "62510", - "codeCommune": "62040", - "libelleAcheminement": "ARQUES", - "nomCommune": "ARQUES" + "codePostal": "20234", + "codeCommune": "2B216", + "libelleAcheminement": "PIAZZALI", + "nomCommune": "PIAZZALI" }, { - "codePostal": "57730", - "codeCommune": "57428", - "libelleAcheminement": "MACHEREN", - "nomCommune": "MACHEREN" + "codePostal": "18300", + "codeCommune": "18074", + "libelleAcheminement": "COUARGUES", + "nomCommune": "COUARGUES" }, { - "codePostal": "23000", - "codeCommune": "23248", - "libelleAcheminement": "ST VICTOR EN MARCHE", - "nomCommune": "ST VICTOR EN MARCHE" + "codePostal": "21360", + "codeCommune": "21065", + "libelleAcheminement": "BESSEY EN CHAUME", + "nomCommune": "BESSEY EN CHAUME" }, { - "codePostal": "25210", - "codeCommune": "25077", - "libelleAcheminement": "LA BOSSE", - "nomCommune": "LA BOSSE" + "codePostal": "20233", + "codeCommune": "2B281", + "libelleAcheminement": "SISCO", + "nomCommune": "SISCO" }, { - "codePostal": "62223", - "codeCommune": "62042", - "libelleAcheminement": "ATHIES", - "nomCommune": "ATHIES" + "codePostal": "20229", + "codeCommune": "2B221", + "libelleAcheminement": "PIEDIPARTINO", + "nomCommune": "PIEDIPARTINO" }, { - "codePostal": "57480", - "codeCommune": "57437", - "libelleAcheminement": "MALLING", - "nomCommune": "MALLING" + "codePostal": "18320", + "codeCommune": "18075", + "libelleAcheminement": "COURS LES BARRES", + "nomCommune": "COURS LES BARRES" }, { - "codePostal": "23230", - "codeCommune": "23255", - "libelleAcheminement": "TROIS FONDS", - "nomCommune": "TROIS FONDS" + "codePostal": "21110", + "codeCommune": "21067", + "libelleAcheminement": "BESSEY LES CITEAUX", + "nomCommune": "BESSEY LES CITEAUX" }, { - "codePostal": "25360", - "codeCommune": "25078", - "libelleAcheminement": "BOUCLANS", - "nomCommune": "BOUCLANS" + "codePostal": "20213", + "codeCommune": "2B286", + "libelleAcheminement": "SORBO OCAGNANO", + "nomCommune": "SORBO OCAGNANO" }, { - "codePostal": "62690", - "codeCommune": "62045", - "libelleAcheminement": "AUBIGNY EN ARTOIS", - "nomCommune": "AUBIGNY EN ARTOIS" + "codePostal": "20228", + "codeCommune": "2B233", + "libelleAcheminement": "PINO", + "nomCommune": "PINO" }, { - "codePostal": "57480", - "codeCommune": "57439", - "libelleAcheminement": "MANDEREN RITZING", - "nomCommune": "MANDEREN RITZING" + "codePostal": "18300", + "codeCommune": "18079", + "libelleAcheminement": "CREZANCY EN SANCERRE", + "nomCommune": "CREZANCY EN SANCERRE" }, { - "codePostal": "24300", - "codeCommune": "24001", - "libelleAcheminement": "ABJAT SUR BANDIAT", - "nomCommune": "ABJAT SUR BANDIAT" + "codePostal": "21330", + "codeCommune": "21078", + "libelleAcheminement": "BISSEY LA PIERRE", + "nomCommune": "BISSEY LA PIERRE" }, { - "codePostal": "25560", - "codeCommune": "25079", - "libelleAcheminement": "BOUJAILLES", - "nomCommune": "BOUJAILLES" + "codePostal": "20229", + "codeCommune": "2B291", + "libelleAcheminement": "STAZZONA", + "nomCommune": "STAZZONA" }, { - "codePostal": "62770", - "codeCommune": "62050", - "libelleAcheminement": "AUCHY LES HESDIN", - "nomCommune": "AUCHY LES HESDIN" + "codePostal": "20230", + "codeCommune": "2B242", + "libelleAcheminement": "POGGIO MEZZANA", + "nomCommune": "POGGIO MEZZANA" }, { - "codePostal": "57380", - "codeCommune": "57442", - "libelleAcheminement": "MANY", - "nomCommune": "MANY" + "codePostal": "18110", + "codeCommune": "18097", + "libelleAcheminement": "FUSSY", + "nomCommune": "FUSSY" }, { - "codePostal": "24210", - "codeCommune": "24004", - "libelleAcheminement": "AJAT", - "nomCommune": "AJAT" + "codePostal": "21690", + "codeCommune": "21084", + "libelleAcheminement": "SOURCE SEINE", + "nomCommune": "SOURCE SEINE" }, { - "codePostal": "25560", - "codeCommune": "25085", - "libelleAcheminement": "BOUVERANS", - "nomCommune": "BOUVERANS" + "codePostal": "20250", + "codeCommune": "2B306", + "libelleAcheminement": "SANTA LUCIA DI MERCURIO", + "nomCommune": "SANTA LUCIA DI MERCURIO" }, { - "codePostal": "62164", - "codeCommune": "62056", - "libelleAcheminement": "AUDRESSELLES", - "nomCommune": "AUDRESSELLES" + "codePostal": "20243", + "codeCommune": "2B251", + "libelleAcheminement": "PRUNELLI DI FIUMORBO", + "nomCommune": "PRUNELLI DI FIUMORBO" }, { - "codePostal": "57630", - "codeCommune": "57448", - "libelleAcheminement": "MARSAL", - "nomCommune": "MARSAL" + "codePostal": "18300", + "codeCommune": "18098", + "libelleAcheminement": "GARDEFORT", + "nomCommune": "GARDEFORT" }, { - "codePostal": "24480", - "codeCommune": "24005", - "libelleAcheminement": "ALLES SUR DORDOGNE", - "nomCommune": "ALLES SUR DORDOGNE" + "codePostal": "21200", + "codeCommune": "21086", + "libelleAcheminement": "BLIGNY LES BEAUNE", + "nomCommune": "BLIGNY LES BEAUNE" }, { - "codePostal": "25250", - "codeCommune": "25093", - "libelleAcheminement": "BRETIGNEY", - "nomCommune": "BRETIGNEY" + "codePostal": "20250", + "codeCommune": "2B315", + "libelleAcheminement": "SANTO PIETRO DI VENACO", + "nomCommune": "SANTO PIETRO DI VENACO" }, { - "codePostal": "62550", - "codeCommune": "62058", - "libelleAcheminement": "AUMERVAL", - "nomCommune": "AUMERVAL" + "codePostal": "20237", + "codeCommune": "2B255", + "libelleAcheminement": "QUERCITELLO", + "nomCommune": "QUERCITELLO" }, { - "codePostal": "57550", - "codeCommune": "57460", - "libelleAcheminement": "MERTEN", - "nomCommune": "MERTEN" + "codePostal": "18600", + "codeCommune": "18106", + "libelleAcheminement": "GROSSOUVRE", + "nomCommune": "GROSSOUVRE" }, { - "codePostal": "24210", - "codeCommune": "24019", - "libelleAcheminement": "AZERAT", - "nomCommune": "AZERAT" + "codePostal": "21360", + "codeCommune": "21087", + "libelleAcheminement": "BLIGNY SUR OUCHE", + "nomCommune": "BLIGNY SUR OUCHE" }, { - "codePostal": "25600", - "codeCommune": "25097", - "libelleAcheminement": "BROGNARD", - "nomCommune": "BROGNARD" + "codePostal": "20230", + "codeCommune": "2B319", + "libelleAcheminement": "TALASANI", + "nomCommune": "TALASANI" }, { - "codePostal": "62360", - "codeCommune": "62075", - "libelleAcheminement": "BAINCTHUN", - "nomCommune": "BAINCTHUN" + "codePostal": "20246", + "codeCommune": "2B257", + "libelleAcheminement": "RAPALE", + "nomCommune": "RAPALE" }, { - "codePostal": "57000", - "codeCommune": "57463", - "libelleAcheminement": "METZ", - "nomCommune": "METZ" + "codePostal": "18150", + "codeCommune": "18108", + "libelleAcheminement": "LA GUERCHE SUR L AUBOIS", + "nomCommune": "LA GUERCHE SUR L AUBOIS" }, { - "codePostal": "24390", - "codeCommune": "24021", - "libelleAcheminement": "BADEFOLS D ANS", - "nomCommune": "BADEFOLS D ANS" + "codePostal": "21330", + "codeCommune": "21093", + "libelleAcheminement": "BOUIX", + "nomCommune": "BOUIX" }, { - "codePostal": "25440", - "codeCommune": "25098", - "libelleAcheminement": "BUFFARD", - "nomCommune": "BUFFARD" + "codePostal": "20270", + "codeCommune": "2B328", + "libelleAcheminement": "TOX", + "nomCommune": "TOX" }, { - "codePostal": "62450", - "codeCommune": "62080", - "libelleAcheminement": "BAPAUME", - "nomCommune": "BAPAUME" + "codePostal": "20212", + "codeCommune": "2B275", + "libelleAcheminement": "SERMANO", + "nomCommune": "SERMANO" }, { - "codePostal": "57920", - "codeCommune": "57464", - "libelleAcheminement": "METZERESCHE", - "nomCommune": "METZERESCHE" + "codePostal": "18160", + "codeCommune": "18114", + "libelleAcheminement": "INEUIL", + "nomCommune": "INEUIL" }, { - "codePostal": "24560", - "codeCommune": "24024", - "libelleAcheminement": "BARDOU", - "nomCommune": "BARDOU" + "codePostal": "21350", + "codeCommune": "21100", + "libelleAcheminement": "BRAIN", + "nomCommune": "BRAIN" }, { - "codePostal": "25520", - "codeCommune": "25099", - "libelleAcheminement": "BUGNY", - "nomCommune": "BUGNY" + "codePostal": "20218", + "codeCommune": "2B332", + "libelleAcheminement": "URTACA", + "nomCommune": "URTACA" }, { - "codePostal": "62123", - "codeCommune": "62085", - "libelleAcheminement": "BASSEUX", - "nomCommune": "BASSEUX" + "codePostal": "20240", + "codeCommune": "2B283", + "libelleAcheminement": "SOLARO", + "nomCommune": "SOLARO" }, { - "codePostal": "57940", - "codeCommune": "57465", - "libelleAcheminement": "METZERVISSE", - "nomCommune": "METZERVISSE" + "codePostal": "18380", + "codeCommune": "18115", + "libelleAcheminement": "IVOY LE PRE", + "nomCommune": "IVOY LE PRE" }, { - "codePostal": "24210", - "codeCommune": "24025", - "libelleAcheminement": "BARS", - "nomCommune": "BARS" + "codePostal": "21390", + "codeCommune": "21101", + "libelleAcheminement": "BRAUX", + "nomCommune": "BRAUX" }, { - "codePostal": "25320", - "codeCommune": "25103", - "libelleAcheminement": "BUSY", - "nomCommune": "BUSY" + "codePostal": "20232", + "codeCommune": "2B333", + "libelleAcheminement": "VALLECALLE", + "nomCommune": "VALLECALLE" }, { - "codePostal": "62158", - "codeCommune": "62086", - "libelleAcheminement": "BAVINCOURT", - "nomCommune": "BAVINCOURT" + "codePostal": "20212", + "codeCommune": "2B292", + "libelleAcheminement": "SANT ANDREA DI BOZIO", + "nomCommune": "SANT ANDREA DI BOZIO" }, { - "codePostal": "57930", - "codeCommune": "57469", - "libelleAcheminement": "MITTERSHEIM", - "nomCommune": "MITTERSHEIM" + "codePostal": "18300", + "codeCommune": "18116", + "libelleAcheminement": "JALOGNES", + "nomCommune": "JALOGNES" }, { - "codePostal": "24330", - "codeCommune": "24026", - "libelleAcheminement": "BASSILLAC ET AUBEROCHE", - "nomCommune": "BASSILLAC ET AUBEROCHE" + "codePostal": "21390", + "codeCommune": "21108", + "libelleAcheminement": "BRIANNY", + "nomCommune": "BRIANNY" }, { - "codePostal": "25440", - "codeCommune": "25109", - "libelleAcheminement": "CESSEY", - "nomCommune": "CESSEY" + "codePostal": "20240", + "codeCommune": "2B342", + "libelleAcheminement": "VENTISERI", + "nomCommune": "VENTISERI" }, { - "codePostal": "62810", - "codeCommune": "62091", - "libelleAcheminement": "BEAUDRICOURT", - "nomCommune": "BEAUDRICOURT" + "codePostal": "20213", + "codeCommune": "2B299", + "libelleAcheminement": "SAN GAVINO D AMPUGNANI", + "nomCommune": "SAN GAVINO D AMPUGNANI" }, { - "codePostal": "57415", - "codeCommune": "57477", - "libelleAcheminement": "MONTBRONN", - "nomCommune": "MONTBRONN" + "codePostal": "18340", + "codeCommune": "18122", + "libelleAcheminement": "LAPAN", + "nomCommune": "LAPAN" }, { - "codePostal": "24220", - "codeCommune": "24036", - "libelleAcheminement": "BERBIGUIERES", - "nomCommune": "BERBIGUIERES" + "codePostal": "21500", + "codeCommune": "21114", + "libelleAcheminement": "BUFFON", + "nomCommune": "BUFFON" }, { - "codePostal": "25190", - "codeCommune": "25114", - "libelleAcheminement": "CHAMESOL", - "nomCommune": "CHAMESOL" + "codePostal": "20240", + "codeCommune": "2B342", + "libelleAcheminement": "VENTISERI", + "nomCommune": "VENTISERI" }, { - "codePostal": "62810", - "codeCommune": "62092", - "libelleAcheminement": "BEAUFORT BLAVINCOURT", - "nomCommune": "BEAUFORT BLAVINCOURT" + "codePostal": "20230", + "codeCommune": "2B302", + "libelleAcheminement": "SAN GIOVANNI DI MORIANI", + "nomCommune": "SAN GIOVANNI DI MORIANI" }, { - "codePostal": "57480", - "codeCommune": "57479", - "libelleAcheminement": "MONTENACH", - "nomCommune": "MONTENACH" + "codePostal": "18240", + "codeCommune": "18125", + "libelleAcheminement": "LERE", + "nomCommune": "LERE" }, { - "codePostal": "24320", - "codeCommune": "24038", - "libelleAcheminement": "BERTRIC BUREE", - "nomCommune": "BERTRIC BUREE" + "codePostal": "21110", + "codeCommune": "21126", + "libelleAcheminement": "CESSEY SUR TILLE", + "nomCommune": "CESSEY SUR TILLE" }, { - "codePostal": "25360", - "codeCommune": "25116", - "libelleAcheminement": "CHAMPLIVE", - "nomCommune": "CHAMPLIVE" + "codePostal": "20215", + "codeCommune": "2B343", + "libelleAcheminement": "VENZOLASCA", + "nomCommune": "VENZOLASCA" }, { - "codePostal": "62960", - "codeCommune": "62095", - "libelleAcheminement": "BEAUMETZ LES AIRE", - "nomCommune": "BEAUMETZ LES AIRE" + "codePostal": "20230", + "codeCommune": "2B303", + "libelleAcheminement": "SAN GIULIANO", + "nomCommune": "SAN GIULIANO" }, { - "codePostal": "57860", - "codeCommune": "57481", - "libelleAcheminement": "MONTOIS LA MONTAGNE", - "nomCommune": "MONTOIS LA MONTAGNE" + "codePostal": "18160", + "codeCommune": "18127", + "libelleAcheminement": "LIGNIERES", + "nomCommune": "LIGNIERES" }, { - "codePostal": "24590", - "codeCommune": "24050", - "libelleAcheminement": "BORREZE", - "nomCommune": "BORREZE" + "codePostal": "21320", + "codeCommune": "21128", + "libelleAcheminement": "CHAILLY SUR ARMANCON", + "nomCommune": "CHAILLY SUR ARMANCON" }, { - "codePostal": "25640", - "codeCommune": "25117", - "libelleAcheminement": "CHAMPOUX", - "nomCommune": "CHAMPOUX" + "codePostal": "20290", + "codeCommune": "2B355", + "libelleAcheminement": "VOLPAJOLA", + "nomCommune": "VOLPAJOLA" }, { - "codePostal": "62123", - "codeCommune": "62097", - "libelleAcheminement": "BEAUMETZ LES LOGES", - "nomCommune": "BEAUMETZ LES LOGES" + "codePostal": "20200", + "codeCommune": "2B305", + "libelleAcheminement": "SAN MARTINO DI LOTA", + "nomCommune": "SAN MARTINO DI LOTA" }, { - "codePostal": "57340", - "codeCommune": "57483", - "libelleAcheminement": "MORHANGE", - "nomCommune": "MORHANGE" + "codePostal": "18170", + "codeCommune": "18130", + "libelleAcheminement": "LOYE SUR ARNON", + "nomCommune": "LOYE SUR ARNON" }, { - "codePostal": "24330", - "codeCommune": "24053", - "libelleAcheminement": "BOULAZAC ISLE MANOIRE", - "nomCommune": "BOULAZAC ISLE MANOIRE" + "codePostal": "21290", + "codeCommune": "21129", + "libelleAcheminement": "CHAMBAIN", + "nomCommune": "CHAMBAIN" }, { - "codePostal": "25330", - "codeCommune": "25120", - "libelleAcheminement": "CHANTRANS", - "nomCommune": "CHANTRANS" + "codePostal": "30760", + "codeCommune": "30005", + "libelleAcheminement": "AIGUEZE", + "nomCommune": "AIGUEZE" }, { - "codePostal": "62142", - "codeCommune": "62104", - "libelleAcheminement": "BELLEBRUNE", - "nomCommune": "BELLEBRUNE" + "codePostal": "20200", + "codeCommune": "2B309", + "libelleAcheminement": "SANTA MARIA DI LOTA", + "nomCommune": "SANTA MARIA DI LOTA" }, { - "codePostal": "57590", - "codeCommune": "57486", - "libelleAcheminement": "MORVILLE SUR NIED", - "nomCommune": "MORVILLE SUR NIED" + "codePostal": "18170", + "codeCommune": "18135", + "libelleAcheminement": "MAISONNAIS", + "nomCommune": "MAISONNAIS" }, { - "codePostal": "24330", - "codeCommune": "24053", - "libelleAcheminement": "BOULAZAC ISLE MANOIRE", - "nomCommune": "BOULAZAC ISLE MANOIRE" + "codePostal": "21400", + "codeCommune": "21134", + "libelleAcheminement": "CHAMESSON", + "nomCommune": "CHAMESSON" }, { - "codePostal": "25470", - "codeCommune": "25124", - "libelleAcheminement": "CHARMAUVILLERS", - "nomCommune": "CHARMAUVILLERS" + "codePostal": "30250", + "codeCommune": "30023", + "libelleAcheminement": "AUJARGUES", + "nomCommune": "AUJARGUES" }, { - "codePostal": "62142", - "codeCommune": "62105", - "libelleAcheminement": "BELLE ET HOULLEFORT", - "nomCommune": "BELLE ET HOULLEFORT" + "codePostal": "20230", + "codeCommune": "2B313", + "libelleAcheminement": "SAN NICOLAO", + "nomCommune": "SAN NICOLAO" }, { - "codePostal": "57160", - "codeCommune": "57487", - "libelleAcheminement": "MOULINS LES METZ", - "nomCommune": "MOULINS LES METZ" + "codePostal": "18320", + "codeCommune": "18143", + "libelleAcheminement": "MENETOU COUTURE", + "nomCommune": "MENETOU COUTURE" }, { - "codePostal": "24600", - "codeCommune": "24058", - "libelleAcheminement": "BOURG DU BOST", - "nomCommune": "BOURG DU BOST" + "codePostal": "21500", + "codeCommune": "21137", + "libelleAcheminement": "CHAMP D OISEAU", + "nomCommune": "CHAMP D OISEAU" }, { - "codePostal": "25290", - "codeCommune": "25129", - "libelleAcheminement": "CHASSAGNE ST DENIS", - "nomCommune": "CHASSAGNE ST DENIS" + "codePostal": "30700", + "codeCommune": "30030", + "libelleAcheminement": "BARON", + "nomCommune": "BARON" }, { - "codePostal": "62490", - "codeCommune": "62106", - "libelleAcheminement": "BELLONNE", - "nomCommune": "BELLONNE" + "codePostal": "20270", + "codeCommune": "2B320", + "libelleAcheminement": "TALLONE", + "nomCommune": "TALLONE" }, { - "codePostal": "57630", - "codeCommune": "57490", - "libelleAcheminement": "MOYENVIC", - "nomCommune": "MOYENVIC" + "codePostal": "18300", + "codeCommune": "18144", + "libelleAcheminement": "MENETOU RATEL", + "nomCommune": "MENETOU RATEL" }, { - "codePostal": "24310", - "codeCommune": "24064", - "libelleAcheminement": "BRANTOME EN PERIGORD", - "nomCommune": "BRANTOME EN PERIGORD" + "codePostal": "21310", + "codeCommune": "21146", + "libelleAcheminement": "CHARMES", + "nomCommune": "CHARMES" }, { - "codePostal": "25500", - "codeCommune": "25148", - "libelleAcheminement": "LA CHENALOTTE", - "nomCommune": "LA CHENALOTTE" + "codePostal": "30127", + "codeCommune": "30034", + "libelleAcheminement": "BELLEGARDE", + "nomCommune": "BELLEGARDE" }, { - "codePostal": "62118", - "codeCommune": "62128", - "libelleAcheminement": "BIACHE ST VAAST", - "nomCommune": "BIACHE ST VAAST" + "codePostal": "20270", + "codeCommune": "2B320", + "libelleAcheminement": "TALLONE", + "nomCommune": "TALLONE" }, { - "codePostal": "57220", - "codeCommune": "57507", - "libelleAcheminement": "NIEDERVISSE", - "nomCommune": "NIEDERVISSE" + "codePostal": "18100", + "codeCommune": "18150", + "libelleAcheminement": "MERY SUR CHER", + "nomCommune": "MERY SUR CHER" }, { - "codePostal": "24210", - "codeCommune": "24066", - "libelleAcheminement": "BROUCHAUD", - "nomCommune": "BROUCHAUD" + "codePostal": "21170", + "codeCommune": "21148", + "libelleAcheminement": "CHARREY SUR SAONE", + "nomCommune": "CHARREY SUR SAONE" }, { - "codePostal": "25340", - "codeCommune": "25156", - "libelleAcheminement": "PAYS DE CLERVAL", - "nomCommune": "PAYS DE CLERVAL" + "codePostal": "30770", + "codeCommune": "30040", + "libelleAcheminement": "BLANDAS", + "nomCommune": "BLANDAS" }, { - "codePostal": "62650", - "codeCommune": "62134", - "libelleAcheminement": "BIMONT", - "nomCommune": "BIMONT" + "codePostal": "20250", + "codeCommune": "2B329", + "libelleAcheminement": "TRALONCA", + "nomCommune": "TRALONCA" }, { - "codePostal": "57720", - "codeCommune": "57513", - "libelleAcheminement": "NOUSSEVILLER LES BITCHE", - "nomCommune": "NOUSSEVILLER LES BITCHE" + "codePostal": "18160", + "codeCommune": "18152", + "libelleAcheminement": "MONTLOUIS", + "nomCommune": "MONTLOUIS" }, { - "codePostal": "24480", - "codeCommune": "24068", - "libelleAcheminement": "LE BUISSON DE CADOUIN", - "nomCommune": "LE BUISSON DE CADOUIN" + "codePostal": "21400", + "codeCommune": "21154", + "libelleAcheminement": "CHATILLON SUR SEINE", + "nomCommune": "CHATILLON SUR SEINE" }, { - "codePostal": "25410", - "codeCommune": "25162", - "libelleAcheminement": "CORCELLES FERRIERES", - "nomCommune": "CORCELLES FERRIERES" + "codePostal": "30580", + "codeCommune": "30048", + "libelleAcheminement": "BOUQUET", + "nomCommune": "BOUQUET" }, { - "codePostal": "62575", - "codeCommune": "62139", - "libelleAcheminement": "BLENDECQUES", - "nomCommune": "BLENDECQUES" + "codePostal": "20259", + "codeCommune": "2B339", + "libelleAcheminement": "VALLICA", + "nomCommune": "VALLICA" }, { - "codePostal": "57680", - "codeCommune": "57515", - "libelleAcheminement": "NOVEANT SUR MOSELLE", - "nomCommune": "NOVEANT SUR MOSELLE" + "codePostal": "18350", + "codeCommune": "18154", + "libelleAcheminement": "MORNAY BERRY", + "nomCommune": "MORNAY BERRY" }, { - "codePostal": "24260", - "codeCommune": "24076", - "libelleAcheminement": "CAMPAGNE", - "nomCommune": "CAMPAGNE" + "codePostal": "21360", + "codeCommune": "21156", + "libelleAcheminement": "CHAUDENAY LE CHATEAU", + "nomCommune": "CHAUDENAY LE CHATEAU" }, { - "codePostal": "25340", - "codeCommune": "25178", - "libelleAcheminement": "CROSEY LE PETIT", - "nomCommune": "CROSEY LE PETIT" + "codePostal": "30260", + "codeCommune": "30050", + "libelleAcheminement": "BRAGASSARGUES", + "nomCommune": "BRAGASSARGUES" }, { - "codePostal": "62390", - "codeCommune": "62143", - "libelleAcheminement": "BOFFLES", - "nomCommune": "BOFFLES" + "codePostal": "20230", + "codeCommune": "2B340", + "libelleAcheminement": "VELONE ORNETO", + "nomCommune": "VELONE ORNETO" }, { - "codePostal": "57320", - "codeCommune": "57516", - "libelleAcheminement": "OBERDORFF", - "nomCommune": "OBERDORFF" + "codePostal": "18250", + "codeCommune": "18163", + "libelleAcheminement": "NEUVY DEUX CLOCHERS", + "nomCommune": "NEUVY DEUX CLOCHERS" }, { - "codePostal": "24140", - "codeCommune": "24077", - "libelleAcheminement": "CAMPSEGRET", - "nomCommune": "CAMPSEGRET" + "codePostal": "21290", + "codeCommune": "21157", + "libelleAcheminement": "CHAUGEY", + "nomCommune": "CHAUGEY" }, { - "codePostal": "25680", - "codeCommune": "25181", - "libelleAcheminement": "CUBRIAL", - "nomCommune": "CUBRIAL" + "codePostal": "30350", + "codeCommune": "30068", + "libelleAcheminement": "CARDET", + "nomCommune": "CARDET" }, { - "codePostal": "62156", - "codeCommune": "62145", - "libelleAcheminement": "BOIRY NOTRE DAME", - "nomCommune": "BOIRY NOTRE DAME" + "codePostal": "20231", + "codeCommune": "2B341", + "libelleAcheminement": "VENACO", + "nomCommune": "VENACO" }, { - "codePostal": "57220", - "codeCommune": "57519", - "libelleAcheminement": "OBERVISSE", - "nomCommune": "OBERVISSE" + "codePostal": "18700", + "codeCommune": "18170", + "libelleAcheminement": "OIZON", + "nomCommune": "OIZON" }, { - "codePostal": "24370", - "codeCommune": "24081", - "libelleAcheminement": "CARLUX", - "nomCommune": "CARLUX" + "codePostal": "21400", + "codeCommune": "21161", + "libelleAcheminement": "CHAUMONT LE BOIS", + "nomCommune": "CHAUMONT LE BOIS" }, { - "codePostal": "25680", - "codeCommune": "25184", - "libelleAcheminement": "CUSE ET ADRISANS", - "nomCommune": "CUSE ET ADRISANS" + "codePostal": "30330", + "codeCommune": "30076", + "libelleAcheminement": "CAVILLARGUES", + "nomCommune": "CAVILLARGUES" }, { - "codePostal": "62320", - "codeCommune": "62148", - "libelleAcheminement": "BOIS BERNARD", - "nomCommune": "BOIS BERNARD" + "codePostal": "20229", + "codeCommune": "2B344", + "libelleAcheminement": "VERDESE", + "nomCommune": "VERDESE" }, { - "codePostal": "57810", - "codeCommune": "57524", - "libelleAcheminement": "OMMERAY", - "nomCommune": "OMMERAY" + "codePostal": "18200", + "codeCommune": "18172", + "libelleAcheminement": "ORVAL", + "nomCommune": "ORVAL" }, { - "codePostal": "24250", - "codeCommune": "24086", - "libelleAcheminement": "CASTELNAUD LA CHAPELLE", - "nomCommune": "CASTELNAUD LA CHAPELLE" + "codePostal": "21220", + "codeCommune": "21178", + "libelleAcheminement": "VALFORET", + "nomCommune": "VALFORET" }, { - "codePostal": "25600", - "codeCommune": "25188", - "libelleAcheminement": "DAMBENOIS", - "nomCommune": "DAMBENOIS" + "codePostal": "30450", + "codeCommune": "30079", + "libelleAcheminement": "CHAMBON", + "nomCommune": "CHAMBON" }, { - "codePostal": "62200", - "codeCommune": "62160", - "libelleAcheminement": "BOULOGNE SUR MER", - "nomCommune": "BOULOGNE SUR MER" + "codePostal": "20200", + "codeCommune": "2B353", + "libelleAcheminement": "VILLE DI PIETRABUGNO", + "nomCommune": "VILLE DI PIETRABUGNO" }, { - "codePostal": "57590", - "codeCommune": "57525", - "libelleAcheminement": "ORIOCOURT", - "nomCommune": "ORIOCOURT" + "codePostal": "18130", + "codeCommune": "18177", + "libelleAcheminement": "PARNAY", + "nomCommune": "PARNAY" }, { - "codePostal": "24250", - "codeCommune": "24091", - "libelleAcheminement": "CENAC ET ST JULIEN", - "nomCommune": "CENAC ET ST JULIEN" + "codePostal": "21270", + "codeCommune": "21180", + "libelleAcheminement": "CLERY", + "nomCommune": "CLERY" }, { - "codePostal": "25420", - "codeCommune": "25191", - "libelleAcheminement": "DAMPIERRE SUR LE DOUBS", - "nomCommune": "DAMPIERRE SUR LE DOUBS" + "codePostal": "30450", + "codeCommune": "30090", + "libelleAcheminement": "CONCOULES", + "nomCommune": "CONCOULES" }, { - "codePostal": "62340", - "codeCommune": "62161", - "libelleAcheminement": "BOUQUEHAULT", - "nomCommune": "BOUQUEHAULT" + "codePostal": "20240", + "codeCommune": "2B366", + "libelleAcheminement": "CHISA", + "nomCommune": "CHISA" }, { - "codePostal": "57840", - "codeCommune": "57529", - "libelleAcheminement": "OTTANGE", - "nomCommune": "OTTANGE" + "codePostal": "18600", + "codeCommune": "18196", + "libelleAcheminement": "ST AIGNAN DES NOYERS", + "nomCommune": "ST AIGNAN DES NOYERS" }, { - "codePostal": "24750", - "codeCommune": "24098", - "libelleAcheminement": "CHAMPCEVINEL", - "nomCommune": "CHAMPCEVINEL" + "codePostal": "21110", + "codeCommune": "21183", + "libelleAcheminement": "COLLONGES ET PREMIERES", + "nomCommune": "COLLONGES ET PREMIERES" }, { - "codePostal": "25450", - "codeCommune": "25193", - "libelleAcheminement": "DAMPRICHARD", - "nomCommune": "DAMPRICHARD" + "codePostal": "30500", + "codeCommune": "30097", + "libelleAcheminement": "COURRY", + "nomCommune": "COURRY" }, { - "codePostal": "62240", - "codeCommune": "62165", - "libelleAcheminement": "BOURNONVILLE", - "nomCommune": "BOURNONVILLE" + "codePostal": "30100", + "codeCommune": "30007", + "libelleAcheminement": "ALES", + "nomCommune": "ALES" }, { - "codePostal": "57530", - "codeCommune": "57533", - "libelleAcheminement": "PANGE", - "nomCommune": "PANGE" + "codePostal": "18400", + "codeCommune": "18201", + "libelleAcheminement": "ST CAPRAIS", + "nomCommune": "ST CAPRAIS" }, { - "codePostal": "24320", - "codeCommune": "24105", - "libelleAcheminement": "CHAPDEUIL", - "nomCommune": "CHAPDEUIL" + "codePostal": "21200", + "codeCommune": "21185", + "libelleAcheminement": "COMBERTAULT", + "nomCommune": "COMBERTAULT" }, { - "codePostal": "25230", - "codeCommune": "25196", - "libelleAcheminement": "DASLE", - "nomCommune": "DASLE" + "codePostal": "30170", + "codeCommune": "30099", + "libelleAcheminement": "CROS", + "nomCommune": "CROS" }, { - "codePostal": "62700", - "codeCommune": "62178", - "libelleAcheminement": "BRUAY LA BUISSIERE", - "nomCommune": "BRUAY LA BUISSIERE" + "codePostal": "30500", + "codeCommune": "30008", + "libelleAcheminement": "ALLEGRE LES FUMADES", + "nomCommune": "ALLEGRE LES FUMADES" }, { - "codePostal": "57410", - "codeCommune": "57535", - "libelleAcheminement": "PETIT REDERCHING", - "nomCommune": "PETIT REDERCHING" + "codePostal": "18400", + "codeCommune": "18207", + "libelleAcheminement": "ST FLORENT SUR CHER", + "nomCommune": "ST FLORENT SUR CHER" }, { - "codePostal": "24170", - "codeCommune": "24122", - "libelleAcheminement": "CLADECH", - "nomCommune": "CLADECH" + "codePostal": "21700", + "codeCommune": "21186", + "libelleAcheminement": "COMBLANCHIEN", + "nomCommune": "COMBLANCHIEN" }, { - "codePostal": "25960", - "codeCommune": "25197", - "libelleAcheminement": "DELUZ", - "nomCommune": "DELUZ" + "codePostal": "30750", + "codeCommune": "30105", + "libelleAcheminement": "DOURBIES", + "nomCommune": "DOURBIES" }, { - "codePostal": "62116", - "codeCommune": "62181", - "libelleAcheminement": "BUCQUOY", - "nomCommune": "BUCQUOY" + "codePostal": "30770", + "codeCommune": "30017", + "libelleAcheminement": "ARRIGAS", + "nomCommune": "ARRIGAS" }, { - "codePostal": "57540", - "codeCommune": "57537", - "libelleAcheminement": "PETITE ROSSELLE", - "nomCommune": "PETITE ROSSELLE" + "codePostal": "18240", + "codeCommune": "18208", + "libelleAcheminement": "STE GEMME EN SANCERROIS", + "nomCommune": "STE GEMME EN SANCERROIS" }, { - "codePostal": "24140", - "codeCommune": "24123", - "libelleAcheminement": "CLERMONT DE BEAUREGARD", - "nomCommune": "CLERMONT DE BEAUREGARD" + "codePostal": "21320", + "codeCommune": "21187", + "libelleAcheminement": "COMMARIN", + "nomCommune": "COMMARIN" }, { - "codePostal": "25140", - "codeCommune": "25213", - "libelleAcheminement": "LES ECORCES", - "nomCommune": "LES ECORCES" + "codePostal": "30124", + "codeCommune": "30108", + "libelleAcheminement": "L ESTRECHURE", + "nomCommune": "L ESTRECHURE" }, { - "codePostal": "62124", - "codeCommune": "62189", - "libelleAcheminement": "BUS", - "nomCommune": "BUS" + "codePostal": "30620", + "codeCommune": "30020", + "libelleAcheminement": "AUBORD", + "nomCommune": "AUBORD" }, { - "codePostal": "57170", - "codeCommune": "57538", - "libelleAcheminement": "PETTONCOURT", - "nomCommune": "PETTONCOURT" + "codePostal": "18110", + "codeCommune": "18211", + "libelleAcheminement": "ST GEORGES SUR MOULON", + "nomCommune": "ST GEORGES SUR MOULON" }, { - "codePostal": "24560", - "codeCommune": "24126", - "libelleAcheminement": "COLOMBIER", - "nomCommune": "COLOMBIER" + "codePostal": "21150", + "codeCommune": "21197", + "libelleAcheminement": "CORPOYER LA CHAPELLE", + "nomCommune": "CORPOYER LA CHAPELLE" }, { - "codePostal": "25640", - "codeCommune": "25215", - "libelleAcheminement": "L ECOUVOTTE", - "nomCommune": "L ECOUVOTTE" + "codePostal": "30730", + "codeCommune": "30112", + "libelleAcheminement": "FONS", + "nomCommune": "FONS" }, { - "codePostal": "62350", - "codeCommune": "62190", - "libelleAcheminement": "BUSNES", - "nomCommune": "BUSNES" + "codePostal": "30190", + "codeCommune": "30021", + "libelleAcheminement": "AUBUSSARGUES", + "nomCommune": "AUBUSSARGUES" }, { - "codePostal": "57340", - "codeCommune": "57539", - "libelleAcheminement": "PEVANGE", - "nomCommune": "PEVANGE" + "codePostal": "18340", + "codeCommune": "18212", + "libelleAcheminement": "ST GERMAIN DES BOIS", + "nomCommune": "ST GERMAIN DES BOIS" }, { - "codePostal": "24390", - "codeCommune": "24136", - "libelleAcheminement": "COUBJOURS", - "nomCommune": "COUBJOURS" + "codePostal": "21120", + "codeCommune": "21208", + "libelleAcheminement": "COURTIVRON", + "nomCommune": "COURTIVRON" }, { - "codePostal": "25170", - "codeCommune": "25217", - "libelleAcheminement": "EMAGNY", - "nomCommune": "EMAGNY" + "codePostal": "30250", + "codeCommune": "30114", + "libelleAcheminement": "FONTANES", + "nomCommune": "FONTANES" }, { - "codePostal": "62100", - "codeCommune": "62193", - "libelleAcheminement": "CALAIS", - "nomCommune": "CALAIS" + "codePostal": "30640", + "codeCommune": "30033", + "libelleAcheminement": "BEAUVOISIN", + "nomCommune": "BEAUVOISIN" }, { - "codePostal": "57230", - "codeCommune": "57541", - "libelleAcheminement": "PHILIPPSBOURG", - "nomCommune": "PHILIPPSBOURG" + "codePostal": "18160", + "codeCommune": "18216", + "libelleAcheminement": "ST HILAIRE EN LIGNIERES", + "nomCommune": "ST HILAIRE EN LIGNIERES" }, { - "codePostal": "24350", - "codeCommune": "24144", - "libelleAcheminement": "CREYSSAC", - "nomCommune": "CREYSSAC" + "codePostal": "21220", + "codeCommune": "21217", + "libelleAcheminement": "CURLEY", + "nomCommune": "CURLEY" }, { - "codePostal": "25530", - "codeCommune": "25218", - "libelleAcheminement": "EPENOUSE", - "nomCommune": "EPENOUSE" + "codePostal": "30300", + "codeCommune": "30117", + "libelleAcheminement": "FOURQUES", + "nomCommune": "FOURQUES" }, { - "codePostal": "62470", - "codeCommune": "62194", - "libelleAcheminement": "CALONNE RICOUART", - "nomCommune": "CALONNE RICOUART" + "codePostal": "30320", + "codeCommune": "30039", + "libelleAcheminement": "BEZOUCE", + "nomCommune": "BEZOUCE" }, { - "codePostal": "57050", - "codeCommune": "57545", - "libelleAcheminement": "PLAPPEVILLE", - "nomCommune": "PLAPPEVILLE" + "codePostal": "18390", + "codeCommune": "18226", + "libelleAcheminement": "ST MICHEL DE VOLANGIS", + "nomCommune": "ST MICHEL DE VOLANGIS" }, { - "codePostal": "24250", - "codeCommune": "24150", - "libelleAcheminement": "DAGLAN", - "nomCommune": "DAGLAN" + "codePostal": "21120", + "codeCommune": "21230", + "libelleAcheminement": "DIENAY", + "nomCommune": "DIENAY" }, { - "codePostal": "25580", - "codeCommune": "25222", - "libelleAcheminement": "ETALANS", - "nomCommune": "ETALANS" + "codePostal": "30170", + "codeCommune": "30119", + "libelleAcheminement": "FRESSAC", + "nomCommune": "FRESSAC" }, { - "codePostal": "62149", - "codeCommune": "62200", - "libelleAcheminement": "CAMBRIN", - "nomCommune": "CAMBRIN" + "codePostal": "30160", + "codeCommune": "30045", + "libelleAcheminement": "BORDEZAC", + "nomCommune": "BORDEZAC" }, { - "codePostal": "57590", - "codeCommune": "57555", - "libelleAcheminement": "PREVOCOURT", - "nomCommune": "PREVOCOURT" + "codePostal": "18140", + "codeCommune": "18240", + "libelleAcheminement": "SANCERGUES", + "nomCommune": "SANCERGUES" }, { - "codePostal": "24140", - "codeCommune": "24155", - "libelleAcheminement": "DOUVILLE", - "nomCommune": "DOUVILLE" + "codePostal": "21000", + "codeCommune": "21231", + "libelleAcheminement": "DIJON", + "nomCommune": "DIJON" }, { - "codePostal": "25330", - "codeCommune": "25223", - "libelleAcheminement": "ETERNOZ", - "nomCommune": "ETERNOZ" + "codePostal": "30160", + "codeCommune": "30120", + "libelleAcheminement": "GAGNIERES", + "nomCommune": "GAGNIERES" }, { - "codePostal": "62150", - "codeCommune": "62218", - "libelleAcheminement": "CAUCOURT", - "nomCommune": "CAUCOURT" + "codePostal": "30190", + "codeCommune": "30053", + "libelleAcheminement": "BRIGNON", + "nomCommune": "BRIGNON" }, { - "codePostal": "57590", - "codeCommune": "57559", - "libelleAcheminement": "PUZIEUX", - "nomCommune": "PUZIEUX" + "codePostal": "18290", + "codeCommune": "18244", + "libelleAcheminement": "SAUGY", + "nomCommune": "SAUGY" }, { - "codePostal": "24360", - "codeCommune": "24163", - "libelleAcheminement": "ETOUARS", - "nomCommune": "ETOUARS" + "codePostal": "21320", + "codeCommune": "21244", + "libelleAcheminement": "EGUILLY", + "nomCommune": "EGUILLY" }, { - "codePostal": "25170", - "codeCommune": "25225", - "libelleAcheminement": "ETRABONNE", - "nomCommune": "ETRABONNE" + "codePostal": "30730", + "codeCommune": "30122", + "libelleAcheminement": "GAJAN", + "nomCommune": "GAJAN" }, { - "codePostal": "62127", - "codeCommune": "62221", - "libelleAcheminement": "CHELERS", - "nomCommune": "CHELERS" + "codePostal": "30170", + "codeCommune": "30058", + "libelleAcheminement": "LA CADIERE ET CAMBO", + "nomCommune": "LA CADIERE ET CAMBO" }, { - "codePostal": "57410", - "codeCommune": "57561", - "libelleAcheminement": "RAHLING", - "nomCommune": "RAHLING" + "codePostal": "18340", + "codeCommune": "18248", + "libelleAcheminement": "SENNECAY", + "nomCommune": "SENNECAY" }, { - "codePostal": "24620", - "codeCommune": "24172", - "libelleAcheminement": "LES EYZIES", - "nomCommune": "LES EYZIES" + "codePostal": "21500", + "codeCommune": "21248", + "libelleAcheminement": "ERINGES", + "nomCommune": "ERINGES" }, { - "codePostal": "25520", - "codeCommune": "25229", - "libelleAcheminement": "EVILLERS", - "nomCommune": "EVILLERS" + "codePostal": "30190", + "codeCommune": "30126", + "libelleAcheminement": "GARRIGUES STE EULALIE", + "nomCommune": "GARRIGUES STE EULALIE" }, { - "codePostal": "62920", - "codeCommune": "62224", - "libelleAcheminement": "CHOCQUES", - "nomCommune": "CHOCQUES" + "codePostal": "30770", + "codeCommune": "30064", + "libelleAcheminement": "CAMPESTRE ET LUC", + "nomCommune": "CAMPESTRE ET LUC" }, { - "codePostal": "57550", - "codeCommune": "57570", - "libelleAcheminement": "REMERING", - "nomCommune": "REMERING" + "codePostal": "18340", + "codeCommune": "18254", + "libelleAcheminement": "SOYE EN SEPTAINE", + "nomCommune": "SOYE EN SEPTAINE" }, { - "codePostal": "24290", - "codeCommune": "24174", - "libelleAcheminement": "FANLAC", - "nomCommune": "FANLAC" + "codePostal": "21510", + "codeCommune": "21253", + "libelleAcheminement": "ETALANTE", + "nomCommune": "ETALANTE" }, { - "codePostal": "25470", - "codeCommune": "25234", - "libelleAcheminement": "FERRIERES LE LAC", - "nomCommune": "FERRIERES LE LAC" + "codePostal": "30330", + "codeCommune": "30127", + "libelleAcheminement": "GAUJAC", + "nomCommune": "GAUJAC" }, { - "codePostal": "62500", - "codeCommune": "62225", - "libelleAcheminement": "CLAIRMARAIS", - "nomCommune": "CLAIRMARAIS" + "codePostal": "30200", + "codeCommune": "30081", + "libelleAcheminement": "CHUSCLAN", + "nomCommune": "CHUSCLAN" }, { - "codePostal": "57510", - "codeCommune": "57571", - "libelleAcheminement": "REMERING LES PUTTELANGE", - "nomCommune": "REMERING LES PUTTELANGE" + "codePostal": "18260", + "codeCommune": "18256", + "libelleAcheminement": "SUBLIGNY", + "nomCommune": "SUBLIGNY" }, { - "codePostal": "24500", - "codeCommune": "24186", - "libelleAcheminement": "FONROQUE", - "nomCommune": "FONROQUE" + "codePostal": "21270", + "codeCommune": "21256", + "libelleAcheminement": "ETEVAUX", + "nomCommune": "ETEVAUX" }, { - "codePostal": "25330", - "codeCommune": "25236", - "libelleAcheminement": "FERTANS", - "nomCommune": "FERTANS" + "codePostal": "30250", + "codeCommune": "30136", + "libelleAcheminement": "JUNAS", + "nomCommune": "JUNAS" }, { - "codePostal": "62380", - "codeCommune": "62229", - "libelleAcheminement": "CLETY", - "nomCommune": "CLETY" + "codePostal": "30870", + "codeCommune": "30082", + "libelleAcheminement": "CLARENSAC", + "nomCommune": "CLARENSAC" }, { - "codePostal": "57570", - "codeCommune": "57574", - "libelleAcheminement": "BASSE RENTGEN", - "nomCommune": "BASSE RENTGEN" + "codePostal": "18300", + "codeCommune": "18262", + "libelleAcheminement": "THAUVENAY", + "nomCommune": "THAUVENAY" }, { - "codePostal": "24320", - "codeCommune": "24199", - "libelleAcheminement": "GOUT ROSSIGNOL", - "nomCommune": "GOUT ROSSIGNOL" + "codePostal": "21290", + "codeCommune": "21262", + "libelleAcheminement": "FAVEROLLES LES LUCEY", + "nomCommune": "FAVEROLLES LES LUCEY" }, { - "codePostal": "25490", - "codeCommune": "25237", - "libelleAcheminement": "FESCHES LE CHATEL", - "nomCommune": "FESCHES LE CHATEL" + "codePostal": "30110", + "codeCommune": "30137", + "libelleAcheminement": "LAMELOUZE", + "nomCommune": "LAMELOUZE" }, { - "codePostal": "62142", - "codeCommune": "62230", - "libelleAcheminement": "COLEMBERT", - "nomCommune": "COLEMBERT" + "codePostal": "30920", + "codeCommune": "30083", + "libelleAcheminement": "CODOGNAN", + "nomCommune": "CODOGNAN" }, { - "codePostal": "57480", - "codeCommune": "57576", - "libelleAcheminement": "RETTEL", - "nomCommune": "RETTEL" + "codePostal": "18570", + "codeCommune": "18267", + "libelleAcheminement": "TROUY", + "nomCommune": "TROUY" }, { - "codePostal": "24380", - "codeCommune": "24208", - "libelleAcheminement": "GRUN BORDAS", - "nomCommune": "GRUN BORDAS" + "codePostal": "21490", + "codeCommune": "21266", + "libelleAcheminement": "FLACEY", + "nomCommune": "FLACEY" }, { - "codePostal": "25660", - "codeCommune": "25245", - "libelleAcheminement": "FONTAIN", - "nomCommune": "FONTAIN" + "codePostal": "30460", + "codeCommune": "30140", + "libelleAcheminement": "LASALLE", + "nomCommune": "LASALLE" }, { - "codePostal": "62180", - "codeCommune": "62231", - "libelleAcheminement": "COLLINE BEAUMONT", - "nomCommune": "COLLINE BEAUMONT" + "codePostal": "30360", + "codeCommune": "30100", + "libelleAcheminement": "CRUVIERS LASCOURS", + "nomCommune": "CRUVIERS LASCOURS" }, { - "codePostal": "57230", - "codeCommune": "57577", - "libelleAcheminement": "REYERSVILLER", - "nomCommune": "REYERSVILLER" + "codePostal": "18190", + "codeCommune": "18270", + "libelleAcheminement": "VALLENAY", + "nomCommune": "VALLENAY" }, { - "codePostal": "24630", - "codeCommune": "24218", - "libelleAcheminement": "JUMILHAC LE GRAND", - "nomCommune": "JUMILHAC LE GRAND" + "codePostal": "21150", + "codeCommune": "21271", + "libelleAcheminement": "FLAVIGNY SUR OZERAIN", + "nomCommune": "FLAVIGNY SUR OZERAIN" }, { - "codePostal": "25110", - "codeCommune": "25251", - "libelleAcheminement": "FOURBANNE", - "nomCommune": "FOURBANNE" + "codePostal": "30110", + "codeCommune": "30142", + "libelleAcheminement": "LAVAL PRADEL", + "nomCommune": "LAVAL PRADEL" }, { - "codePostal": "62158", - "codeCommune": "62243", - "libelleAcheminement": "COULLEMONT", - "nomCommune": "COULLEMONT" + "codePostal": "30390", + "codeCommune": "30107", + "libelleAcheminement": "ESTEZARGUES", + "nomCommune": "ESTEZARGUES" }, { - "codePostal": "57810", - "codeCommune": "57579", - "libelleAcheminement": "RHODES", - "nomCommune": "RHODES" + "codePostal": "18300", + "codeCommune": "18274", + "libelleAcheminement": "VERDIGNY", + "nomCommune": "VERDIGNY" }, { - "codePostal": "24150", - "codeCommune": "24223", - "libelleAcheminement": "LALINDE", - "nomCommune": "LALINDE" + "codePostal": "21140", + "codeCommune": "21272", + "libelleAcheminement": "LE VAL LARREY", + "nomCommune": "LE VAL LARREY" }, { - "codePostal": "25440", - "codeCommune": "25253", - "libelleAcheminement": "FOURG", - "nomCommune": "FOURG" + "codePostal": "30580", + "codeCommune": "30151", + "libelleAcheminement": "LUSSAN", + "nomCommune": "LUSSAN" }, { - "codePostal": "62710", - "codeCommune": "62250", - "libelleAcheminement": "COURRIERES", - "nomCommune": "COURRIERES" + "codePostal": "30660", + "codeCommune": "30123", + "libelleAcheminement": "GALLARGUES LE MONTUEUX", + "nomCommune": "GALLARGUES LE MONTUEUX" }, { - "codePostal": "57270", - "codeCommune": "57582", - "libelleAcheminement": "RICHEMONT", - "nomCommune": "RICHEMONT" + "codePostal": "18160", + "codeCommune": "18283", + "libelleAcheminement": "VILLECELIN", + "nomCommune": "VILLECELIN" }, { - "codePostal": "24150", - "codeCommune": "24228", - "libelleAcheminement": "LANQUAIS", - "nomCommune": "LANQUAIS" + "codePostal": "21410", + "codeCommune": "21273", + "libelleAcheminement": "FLEUREY SUR OUCHE", + "nomCommune": "FLEUREY SUR OUCHE" }, { - "codePostal": "25300", - "codeCommune": "25254", - "libelleAcheminement": "LES FOURGS", - "nomCommune": "LES FOURGS" + "codePostal": "30960", + "codeCommune": "30152", + "libelleAcheminement": "LES MAGES", + "nomCommune": "LES MAGES" }, { - "codePostal": "62158", - "codeCommune": "62253", - "libelleAcheminement": "COUTURELLE", - "nomCommune": "COUTURELLE" + "codePostal": "30760", + "codeCommune": "30124", + "libelleAcheminement": "LE GARN", + "nomCommune": "LE GARN" }, { - "codePostal": "57340", - "codeCommune": "57587", - "libelleAcheminement": "RODALBE", - "nomCommune": "RODALBE" + "codePostal": "18300", + "codeCommune": "18287", + "libelleAcheminement": "VINON", + "nomCommune": "VINON" }, { - "codePostal": "24570", - "codeCommune": "24229", - "libelleAcheminement": "LE LARDIN ST LAZARE", - "nomCommune": "LE LARDIN ST LAZARE" + "codePostal": "21260", + "codeCommune": "21275", + "libelleAcheminement": "FONCEGRIVE", + "nomCommune": "FONCEGRIVE" }, { - "codePostal": "25140", - "codeCommune": "25256", - "libelleAcheminement": "FRAMBOUHANS", - "nomCommune": "FRAMBOUHANS" + "codePostal": "30129", + "codeCommune": "30155", + "libelleAcheminement": "MANDUEL", + "nomCommune": "MANDUEL" }, { - "codePostal": "62310", - "codeCommune": "62256", - "libelleAcheminement": "CREPY", - "nomCommune": "CREPY" + "codePostal": "30450", + "codeCommune": "30130", + "libelleAcheminement": "GENOLHAC", + "nomCommune": "GENOLHAC" }, { - "codePostal": "57260", - "codeCommune": "57595", - "libelleAcheminement": "RORBACH LES DIEUZE", - "nomCommune": "RORBACH LES DIEUZE" + "codePostal": "18340", + "codeCommune": "18288", + "libelleAcheminement": "VORLY", + "nomCommune": "VORLY" }, { - "codePostal": "24550", - "codeCommune": "24232", - "libelleAcheminement": "LAVAUR", - "nomCommune": "LAVAUR" + "codePostal": "21220", + "codeCommune": "21295", + "libelleAcheminement": "GEVREY CHAMBERTIN", + "nomCommune": "GEVREY CHAMBERTIN" }, { - "codePostal": "25240", - "codeCommune": "25263", - "libelleAcheminement": "GELLIN", - "nomCommune": "GELLIN" + "codePostal": "30350", + "codeCommune": "30161", + "libelleAcheminement": "MASSANES", + "nomCommune": "MASSANES" }, { - "codePostal": "62128", - "codeCommune": "62259", - "libelleAcheminement": "CROISILLES", - "nomCommune": "CROISILLES" + "codePostal": "30240", + "codeCommune": "30133", + "libelleAcheminement": "LE GRAU DU ROI", + "nomCommune": "LE GRAU DU ROI" }, { - "codePostal": "57390", - "codeCommune": "57603", - "libelleAcheminement": "RUSSANGE", - "nomCommune": "RUSSANGE" + "codePostal": "19190", + "codeCommune": "19003", + "libelleAcheminement": "ALBIGNAC", + "nomCommune": "ALBIGNAC" }, { - "codePostal": "24110", - "codeCommune": "24236", - "libelleAcheminement": "LEGUILLAC DE L AUCHE", - "nomCommune": "LEGUILLAC DE L AUCHE" + "codePostal": "21640", + "codeCommune": "21297", + "libelleAcheminement": "GILLY LES CITEAUX", + "nomCommune": "GILLY LES CITEAUX" }, { - "codePostal": "25660", - "codeCommune": "25267", - "libelleAcheminement": "GENNES", - "nomCommune": "GENNES" + "codePostal": "30410", + "codeCommune": "30167", + "libelleAcheminement": "MEYRANNES", + "nomCommune": "MEYRANNES" }, { - "codePostal": "62130", - "codeCommune": "62260", - "libelleAcheminement": "CROIX EN TERNOIS", - "nomCommune": "CROIX EN TERNOIS" + "codePostal": "30300", + "codeCommune": "30135", + "libelleAcheminement": "JONQUIERES ST VINCENT", + "nomCommune": "JONQUIERES ST VINCENT" }, { - "codePostal": "57420", - "codeCommune": "57605", - "libelleAcheminement": "SAILLY ACHATEL", - "nomCommune": "SAILLY ACHATEL" + "codePostal": "19000", + "codeCommune": "19009", + "libelleAcheminement": "LES ANGLES SUR CORREZE", + "nomCommune": "LES ANGLES SUR CORREZE" }, { - "codePostal": "24510", - "codeCommune": "24240", - "libelleAcheminement": "LIMEUIL", - "nomCommune": "LIMEUIL" + "codePostal": "21580", + "codeCommune": "21304", + "libelleAcheminement": "GRANCEY LE CHATEAU", + "nomCommune": "GRANCEY LE CHATEAU NEUVELLE" }, { - "codePostal": "25640", - "codeCommune": "25269", - "libelleAcheminement": "GERMONDANS", - "nomCommune": "GERMONDANS" + "codePostal": "30150", + "codeCommune": "30178", + "libelleAcheminement": "MONTFAUCON", + "nomCommune": "MONTFAUCON" }, { - "codePostal": "62380", - "codeCommune": "62271", - "libelleAcheminement": "DOHEM", - "nomCommune": "DOHEM" + "codePostal": "30750", + "codeCommune": "30139", + "libelleAcheminement": "LANUEJOLS", + "nomCommune": "LANUEJOLS" }, { - "codePostal": "57500", - "codeCommune": "57606", - "libelleAcheminement": "ST AVOLD", - "nomCommune": "ST AVOLD" + "codePostal": "19230", + "codeCommune": "19011", + "libelleAcheminement": "ARNAC POMPADOUR", + "nomCommune": "ARNAC POMPADOUR" }, { - "codePostal": "24210", - "codeCommune": "24241", - "libelleAcheminement": "LIMEYRAT", - "nomCommune": "LIMEYRAT" + "codePostal": "21570", + "codeCommune": "21305", + "libelleAcheminement": "GRANCEY SUR OURCE", + "nomCommune": "GRANCEY SUR OURCE" }, { - "codePostal": "25190", - "codeCommune": "25275", - "libelleAcheminement": "GLERE", - "nomCommune": "GLERE" + "codePostal": "30260", + "codeCommune": "30181", + "libelleAcheminement": "MONTMIRAT", + "nomCommune": "MONTMIRAT" }, { - "codePostal": "62116", - "codeCommune": "62272", - "libelleAcheminement": "DOUCHY LES AYETTE", - "nomCommune": "DOUCHY LES AYETTE" + "codePostal": "30290", + "codeCommune": "30141", + "libelleAcheminement": "LAUDUN L ARDOISE", + "nomCommune": "LAUDUN L ARDOISE" }, { - "codePostal": "57830", - "codeCommune": "57611", - "libelleAcheminement": "ST GEORGES", - "nomCommune": "ST GEORGES" + "codePostal": "19800", + "codeCommune": "19016", + "libelleAcheminement": "BAR", + "nomCommune": "BAR" }, { - "codePostal": "24540", - "codeCommune": "24244", - "libelleAcheminement": "LOLME", - "nomCommune": "LOLME" + "codePostal": "21150", + "codeCommune": "21307", + "libelleAcheminement": "GRESIGNY STE REINE", + "nomCommune": "GRESIGNY STE REINE" }, { - "codePostal": "25190", - "codeCommune": "25275", - "libelleAcheminement": "GLERE", - "nomCommune": "GLERE" + "codePostal": "30121", + "codeCommune": "30185", + "libelleAcheminement": "MUS", + "nomCommune": "MUS" }, { - "codePostal": "62770", - "codeCommune": "62282", - "libelleAcheminement": "ECLIMEUX", - "nomCommune": "ECLIMEUX" + "codePostal": "30350", + "codeCommune": "30146", + "libelleAcheminement": "LEDIGNAN", + "nomCommune": "LEDIGNAN" }, { - "codePostal": "57420", - "codeCommune": "57617", - "libelleAcheminement": "ST JURE", - "nomCommune": "ST JURE" + "codePostal": "19120", + "codeCommune": "19019", + "libelleAcheminement": "BEAULIEU SUR DORDOGNE", + "nomCommune": "BEAULIEU SUR DORDOGNE" }, { - "codePostal": "24420", - "codeCommune": "24262", - "libelleAcheminement": "MAYAC", - "nomCommune": "MAYAC" + "codePostal": "21230", + "codeCommune": "21325", + "libelleAcheminement": "JOUEY", + "nomCommune": "JOUEY" }, { - "codePostal": "25210", - "codeCommune": "25286", - "libelleAcheminement": "GRAND COMBE DES BOIS", - "nomCommune": "GRAND COMBE DES BOIS" + "codePostal": "30160", + "codeCommune": "30194", + "libelleAcheminement": "PEYREMALE", + "nomCommune": "PEYREMALE" }, { - "codePostal": "62270", - "codeCommune": "62283", - "libelleAcheminement": "ECOIVRES", - "nomCommune": "ECOIVRES" + "codePostal": "30450", + "codeCommune": "30153", + "libelleAcheminement": "MALONS ET ELZE", + "nomCommune": "MALONS ET ELZE" }, { - "codePostal": "57820", - "codeCommune": "57618", - "libelleAcheminement": "ST LOUIS", - "nomCommune": "ST LOUIS" + "codePostal": "19510", + "codeCommune": "19022", + "libelleAcheminement": "BENAYES", + "nomCommune": "BENAYES" }, { - "codePostal": "24350", - "codeCommune": "24266", - "libelleAcheminement": "MENSIGNAC", - "nomCommune": "MENSIGNAC" + "codePostal": "21450", + "codeCommune": "21326", + "libelleAcheminement": "JOURS LES BAIGNEUX", + "nomCommune": "JOURS LES BAIGNEUX" }, { - "codePostal": "25320", - "codeCommune": "25287", - "libelleAcheminement": "GRANDFONTAINE", - "nomCommune": "GRANDFONTAINE" + "codePostal": "30170", + "codeCommune": "30200", + "libelleAcheminement": "POMPIGNAN", + "nomCommune": "POMPIGNAN" }, { - "codePostal": "62170", - "codeCommune": "62289", - "libelleAcheminement": "ECUIRES", - "nomCommune": "ECUIRES" + "codePostal": "30120", + "codeCommune": "30154", + "libelleAcheminement": "MANDAGOUT", + "nomCommune": "MANDAGOUT" }, { - "codePostal": "57260", - "codeCommune": "57621", - "libelleAcheminement": "ST MEDARD", - "nomCommune": "ST MEDARD" + "codePostal": "19230", + "codeCommune": "19024", + "libelleAcheminement": "BEYSSAC", + "nomCommune": "BEYSSAC" }, { - "codePostal": "24240", - "codeCommune": "24274", - "libelleAcheminement": "MONBAZILLAC", - "nomCommune": "MONBAZILLAC" + "codePostal": "21210", + "codeCommune": "21328", + "libelleAcheminement": "JUILLENAY", + "nomCommune": "JUILLENAY" }, { - "codePostal": "25510", - "codeCommune": "25289", - "libelleAcheminement": "GRANDFONTAINE SUR CREUSE", - "nomCommune": "GRANDFONTAINE SUR CREUSE" + "codePostal": "30130", + "codeCommune": "30202", + "libelleAcheminement": "PONT ST ESPRIT", + "nomCommune": "PONT ST ESPRIT" }, { - "codePostal": "62223", - "codeCommune": "62290", - "libelleAcheminement": "ECURIE", - "nomCommune": "ECURIE" + "codePostal": "30360", + "codeCommune": "30158", + "libelleAcheminement": "MARTIGNARGUES", + "nomCommune": "MARTIGNARGUES" }, { - "codePostal": "57640", - "codeCommune": "57626", - "libelleAcheminement": "SANRY LES VIGY", - "nomCommune": "SANRY LES VIGY" + "codePostal": "19120", + "codeCommune": "19026", + "libelleAcheminement": "BILHAC", + "nomCommune": "BILHAC" }, { - "codePostal": "24210", - "codeCommune": "24284", - "libelleAcheminement": "MONTAGNAC D AUBEROCHE", - "nomCommune": "MONTAGNAC D AUBEROCHE" + "codePostal": "21130", + "codeCommune": "21331", + "libelleAcheminement": "LABERGEMENT LES AUXONNE", + "nomCommune": "LABERGEMENT LES AUXONNE" }, { - "codePostal": "25160", - "codeCommune": "25295", - "libelleAcheminement": "LES GRANGETTES", - "nomCommune": "LES GRANGETTES" + "codePostal": "30530", + "codeCommune": "30203", + "libelleAcheminement": "PORTES", + "nomCommune": "PORTES" }, { - "codePostal": "62300", - "codeCommune": "62291", - "libelleAcheminement": "ELEU DIT LEAUWETTE", - "nomCommune": "ELEU DIT LEAUWETTE" + "codePostal": "30350", + "codeCommune": "30163", + "libelleAcheminement": "MAURESSARGUES", + "nomCommune": "MAURESSARGUES" }, { - "codePostal": "57400", - "codeCommune": "57630", - "libelleAcheminement": "SARREBOURG", - "nomCommune": "SARREBOURG" + "codePostal": "19170", + "codeCommune": "19027", + "libelleAcheminement": "BONNEFOND", + "nomCommune": "BONNEFOND" }, { - "codePostal": "24250", - "codeCommune": "24300", - "libelleAcheminement": "NABIRAT", - "nomCommune": "NABIRAT" + "codePostal": "21440", + "codeCommune": "21338", + "libelleAcheminement": "LAMARGELLE", + "nomCommune": "LAMARGELLE" }, { - "codePostal": "25110", - "codeCommune": "25299", - "libelleAcheminement": "GUILLON LES BAINS", - "nomCommune": "GUILLON LES BAINS" + "codePostal": "30500", + "codeCommune": "30204", + "libelleAcheminement": "POTELIERES", + "nomCommune": "POTELIERES" }, { - "codePostal": "62990", - "codeCommune": "62293", - "libelleAcheminement": "EMBRY", - "nomCommune": "EMBRY" + "codePostal": "30340", + "codeCommune": "30165", + "libelleAcheminement": "MEJANNES LES ALES", + "nomCommune": "MEJANNES LES ALES" }, { - "codePostal": "57720", - "codeCommune": "57641", - "libelleAcheminement": "SCHWEYEN", - "nomCommune": "SCHWEYEN" + "codePostal": "19330", + "codeCommune": "19042", + "libelleAcheminement": "CHANTEIX", + "nomCommune": "CHANTEIX" }, { - "codePostal": "24800", - "codeCommune": "24305", - "libelleAcheminement": "NANTHIAT", - "nomCommune": "NANTHIAT" + "codePostal": "21370", + "codeCommune": "21339", + "libelleAcheminement": "LANTENAY", + "nomCommune": "LANTENAY" }, { - "codePostal": "25370", - "codeCommune": "25307", - "libelleAcheminement": "LES HOPITAUX NEUFS", - "nomCommune": "LES HOPITAUX NEUFS" + "codePostal": "30129", + "codeCommune": "30211", + "libelleAcheminement": "REDESSAN", + "nomCommune": "REDESSAN" }, { - "codePostal": "62145", - "codeCommune": "62295", - "libelleAcheminement": "ENQUIN LEZ GUINEGATTE", - "nomCommune": "ENQUIN LEZ GUINEGATTE" + "codePostal": "30120", + "codeCommune": "30170", + "libelleAcheminement": "MOLIERES CAVAILLAC", + "nomCommune": "MOLIERES CAVAILLAC" }, { - "codePostal": "57530", - "codeCommune": "57648", - "libelleAcheminement": "SERVIGNY LES RAVILLE", - "nomCommune": "SERVIGNY LES RAVILLE" + "codePostal": "19360", + "codeCommune": "19043", + "libelleAcheminement": "LA CHAPELLE AUX BROCS", + "nomCommune": "LA CHAPELLE AUX BROCS" }, { - "codePostal": "24170", - "codeCommune": "24313", - "libelleAcheminement": "ORLIAC", - "nomCommune": "ORLIAC" + "codePostal": "21170", + "codeCommune": "21342", + "libelleAcheminement": "LAPERRIERE SUR SAONE", + "nomCommune": "LAPERRIERE SUR SAONE" }, { - "codePostal": "25360", - "codeCommune": "25324", - "libelleAcheminement": "LANANS", - "nomCommune": "LANANS" + "codePostal": "30430", + "codeCommune": "30215", + "libelleAcheminement": "RIVIERES", + "nomCommune": "RIVIERES" }, { - "codePostal": "62134", - "codeCommune": "62301", - "libelleAcheminement": "EQUIRRE", - "nomCommune": "EQUIRRE" + "codePostal": "30170", + "codeCommune": "30172", + "libelleAcheminement": "MONOBLET", + "nomCommune": "MONOBLET" }, { - "codePostal": "57580", - "codeCommune": "57656", - "libelleAcheminement": "SORBEY", - "nomCommune": "SORBEY" + "codePostal": "19190", + "codeCommune": "19048", + "libelleAcheminement": "LE CHASTANG", + "nomCommune": "LE CHASTANG" }, { - "codePostal": "24270", - "codeCommune": "24320", - "libelleAcheminement": "PAYZAC", - "nomCommune": "PAYZAC" + "codePostal": "21330", + "codeCommune": "21343", + "libelleAcheminement": "LARREY", + "nomCommune": "LARREY" }, { - "codePostal": "25720", - "codeCommune": "25328", - "libelleAcheminement": "LARNOD", - "nomCommune": "LARNOD" + "codePostal": "30200", + "codeCommune": "30222", + "libelleAcheminement": "LA ROQUE SUR CEZE", + "nomCommune": "LA ROQUE SUR CEZE" }, { - "codePostal": "62170", - "codeCommune": "62312", - "libelleAcheminement": "ESTREE", - "nomCommune": "ESTREE" + "codePostal": "30120", + "codeCommune": "30176", + "libelleAcheminement": "MONTDARDIER", + "nomCommune": "MONTDARDIER" }, { - "codePostal": "57960", - "codeCommune": "57658", - "libelleAcheminement": "SOUCHT", - "nomCommune": "SOUCHT" + "codePostal": "19390", + "codeCommune": "19051", + "libelleAcheminement": "CHAUMEIL", + "nomCommune": "CHAUMEIL" }, { - "codePostal": "24120", - "codeCommune": "24321", - "libelleAcheminement": "PAZAYAC", - "nomCommune": "PAZAYAC" + "codePostal": "21110", + "codeCommune": "21352", + "libelleAcheminement": "LONGEAULT PLUVAULT", + "nomCommune": "LONGEAULT PLUVAULT" }, { - "codePostal": "25210", - "codeCommune": "25329", - "libelleAcheminement": "LAVAL LE PRIEURE", - "nomCommune": "LAVAL LE PRIEURE" + "codePostal": "30570", + "codeCommune": "30229", + "libelleAcheminement": "ST ANDRE DE MAJENCOULES", + "nomCommune": "ST ANDRE DE MAJENCOULES" }, { - "codePostal": "62810", - "codeCommune": "62316", - "libelleAcheminement": "ESTREE WAMIN", - "nomCommune": "ESTREE WAMIN" + "codePostal": "30730", + "codeCommune": "30182", + "libelleAcheminement": "MONTPEZAT", + "nomCommune": "MONTPEZAT" }, { - "codePostal": "57350", - "codeCommune": "57659", - "libelleAcheminement": "SPICHEREN", - "nomCommune": "SPICHEREN" + "codePostal": "19250", + "codeCommune": "19058", + "libelleAcheminement": "COMBRESSOL", + "nomCommune": "COMBRESSOL" }, { - "codePostal": "24370", - "codeCommune": "24325", - "libelleAcheminement": "PECHS DE L ESPERANCE", - "nomCommune": "PECHS DE L ESPERANCE" + "codePostal": "21290", + "codeCommune": "21359", + "libelleAcheminement": "LUCEY", + "nomCommune": "LUCEY" }, { - "codePostal": "25580", - "codeCommune": "25331", - "libelleAcheminement": "LAVANS VUILLAFANS", - "nomCommune": "LAVANS VUILLAFANS" + "codePostal": "30940", + "codeCommune": "30231", + "libelleAcheminement": "ST ANDRE DE VALBORGNE", + "nomCommune": "ST ANDRE DE VALBORGNE" }, { - "codePostal": "62141", - "codeCommune": "62321", - "libelleAcheminement": "EVIN MALMAISON", - "nomCommune": "EVIN MALMAISON" + "codePostal": "30900", + "codeCommune": "30189", + "libelleAcheminement": "NIMES", + "nomCommune": "NIMES" }, { - "codePostal": "57350", - "codeCommune": "57660", - "libelleAcheminement": "STIRING WENDEL", - "nomCommune": "STIRING WENDEL" + "codePostal": "19140", + "codeCommune": "19060", + "libelleAcheminement": "CONDAT SUR GANAVEIX", + "nomCommune": "CONDAT SUR GANAVEIX" }, { - "codePostal": "33220", - "codeCommune": "24335", - "libelleAcheminement": "PORT STE FOY ET PONCHAPT", - "nomCommune": "PORT STE FOY ET PONCHAPT" + "codePostal": "21450", + "codeCommune": "21364", + "libelleAcheminement": "MAGNY LAMBERT", + "nomCommune": "MAGNY LAMBERT" }, { - "codePostal": "25170", - "codeCommune": "25332", - "libelleAcheminement": "LAVERNAY", - "nomCommune": "LAVERNAY" + "codePostal": "30330", + "codeCommune": "30232", + "libelleAcheminement": "ST ANDRE D OLERARGUES", + "nomCommune": "ST ANDRE D OLERARGUES" }, { - "codePostal": "62560", - "codeCommune": "62325", - "libelleAcheminement": "FAUQUEMBERGUES", - "nomCommune": "FAUQUEMBERGUES" + "codePostal": "30200", + "codeCommune": "30191", + "libelleAcheminement": "ORSAN", + "nomCommune": "ORSAN" }, { - "codePostal": "57385", - "codeCommune": "57668", - "libelleAcheminement": "TETING SUR NIED", - "nomCommune": "TETING SUR NIED" + "codePostal": "19300", + "codeCommune": "19070", + "libelleAcheminement": "DARNETS", + "nomCommune": "DARNETS" }, { - "codePostal": "24550", - "codeCommune": "24337", - "libelleAcheminement": "PRATS DU PERIGORD", - "nomCommune": "PRATS DU PERIGORD" + "codePostal": "21170", + "codeCommune": "21366", + "libelleAcheminement": "MAGNY LES AUBIGNY", + "nomCommune": "MAGNY LES AUBIGNY" }, { - "codePostal": "25270", - "codeCommune": "25334", - "libelleAcheminement": "LEVIER", - "nomCommune": "LEVIER" + "codePostal": "30730", + "codeCommune": "30233", + "libelleAcheminement": "ST BAUZELY", + "nomCommune": "ST BAUZELY" }, { - "codePostal": "62223", - "codeCommune": "62331", - "libelleAcheminement": "FEUCHY", - "nomCommune": "FEUCHY" + "codePostal": "30730", + "codeCommune": "30193", + "libelleAcheminement": "PARIGNARGUES", + "nomCommune": "PARIGNARGUES" }, { - "codePostal": "57450", - "codeCommune": "57669", - "libelleAcheminement": "THEDING", - "nomCommune": "THEDING" + "codePostal": "19600", + "codeCommune": "19077", + "libelleAcheminement": "ESTIVALS", + "nomCommune": "ESTIVALS" }, { - "codePostal": "24200", - "codeCommune": "24341", - "libelleAcheminement": "PROISSANS", - "nomCommune": "PROISSANS" + "codePostal": "21400", + "codeCommune": "21372", + "libelleAcheminement": "MAISEY LE DUC", + "nomCommune": "MAISEY LE DUC" }, { - "codePostal": "25690", - "codeCommune": "25343", - "libelleAcheminement": "LONGEMAISON", - "nomCommune": "LONGEMAISON" + "codePostal": "30210", + "codeCommune": "30235", + "libelleAcheminement": "ST BONNET DU GARD", + "nomCommune": "ST BONNET DU GARD" }, { - "codePostal": "62132", - "codeCommune": "62334", - "libelleAcheminement": "FIENNES", - "nomCommune": "FIENNES" + "codePostal": "30340", + "codeCommune": "30197", + "libelleAcheminement": "LES PLANS", + "nomCommune": "LES PLANS" }, { - "codePostal": "57100", - "codeCommune": "57672", - "libelleAcheminement": "THIONVILLE", - "nomCommune": "THIONVILLE" + "codePostal": "19430", + "codeCommune": "19086", + "libelleAcheminement": "GOULLES", + "nomCommune": "GOULLES" }, { - "codePostal": "24430", - "codeCommune": "24350", - "libelleAcheminement": "RAZAC SUR L ISLE", - "nomCommune": "RAZAC SUR L ISLE" + "codePostal": "21350", + "codeCommune": "21377", + "libelleAcheminement": "MARCELLOIS", + "nomCommune": "MARCELLOIS" }, { - "codePostal": "25360", - "codeCommune": "25355", - "libelleAcheminement": "MAGNY CHATELARD", - "nomCommune": "MAGNY CHATELARD" + "codePostal": "30460", + "codeCommune": "30236", + "libelleAcheminement": "ST BONNET DE SALENDRINQUE", + "nomCommune": "ST BONNET DE SALENDRINQUE" }, { - "codePostal": "62111", - "codeCommune": "62341", - "libelleAcheminement": "FONCQUEVILLERS", - "nomCommune": "FONCQUEVILLERS" + "codePostal": "30450", + "codeCommune": "30201", + "libelleAcheminement": "PONTEILS ET BRESIS", + "nomCommune": "PONTEILS ET BRESIS" }, { - "codePostal": "57380", - "codeCommune": "57673", - "libelleAcheminement": "THONVILLE", - "nomCommune": "THONVILLE" + "codePostal": "19170", + "codeCommune": "19087", + "libelleAcheminement": "GOURDON MURAT", + "nomCommune": "GOURDON MURAT" }, { - "codePostal": "24490", - "codeCommune": "24354", - "libelleAcheminement": "LA ROCHE CHALAIS", - "nomCommune": "LA ROCHE CHALAIS" + "codePostal": "21200", + "codeCommune": "21387", + "libelleAcheminement": "MARIGNY LES REULLEE", + "nomCommune": "MARIGNY LES REULLEE" }, { - "codePostal": "25120", - "codeCommune": "25356", - "libelleAcheminement": "MAICHE", - "nomCommune": "MAICHE" + "codePostal": "30360", + "codeCommune": "30240", + "libelleAcheminement": "ST CESAIRE DE GAUZIGNAN", + "nomCommune": "ST CESAIRE DE GAUZIGNAN" }, { - "codePostal": "62390", - "codeCommune": "62345", - "libelleAcheminement": "FONTAINE L ETALON", - "nomCommune": "FONTAINE L ETALON" + "codePostal": "30210", + "codeCommune": "30207", + "libelleAcheminement": "POUZILHAC", + "nomCommune": "POUZILHAC" }, { - "codePostal": "57300", - "codeCommune": "57677", - "libelleAcheminement": "TREMERY", - "nomCommune": "TREMERY" + "codePostal": "19320", + "codeCommune": "19089", + "libelleAcheminement": "GROS CHASTANG", + "nomCommune": "GROS CHASTANG" }, { - "codePostal": "24490", - "codeCommune": "24354", - "libelleAcheminement": "LA ROCHE CHALAIS", - "nomCommune": "LA ROCHE CHALAIS" + "codePostal": "21190", + "codeCommune": "21397", + "libelleAcheminement": "MAVILLY MANDELOT", + "nomCommune": "MAVILLY MANDELOT" }, { - "codePostal": "25650", - "codeCommune": "25357", - "libelleAcheminement": "MAISONS DU BOIS LIEVREMONT", - "nomCommune": "MAISONS DU BOIS LIEVREMONT" + "codePostal": "30380", + "codeCommune": "30243", + "libelleAcheminement": "ST CHRISTOL LEZ ALES", + "nomCommune": "ST CHRISTOL LEZ ALES" }, { - "codePostal": "62270", - "codeCommune": "62346", - "libelleAcheminement": "FORTEL EN ARTOIS", - "nomCommune": "FORTEL EN ARTOIS" + "codePostal": "30610", + "codeCommune": "30208", + "libelleAcheminement": "PUECHREDON", + "nomCommune": "PUECHREDON" }, { - "codePostal": "57385", - "codeCommune": "57679", - "libelleAcheminement": "TRITTELING REDLACH", - "nomCommune": "TRITTELING REDLACH" + "codePostal": "19600", + "codeCommune": "19107", + "libelleAcheminement": "LARCHE", + "nomCommune": "LARCHE" }, { - "codePostal": "24580", - "codeCommune": "24356", - "libelleAcheminement": "ROUFFIGNAC ST CERNIN DE REILHAC", - "nomCommune": "ROUFFIGNAC ST CERNIN DE REILHAC" + "codePostal": "21190", + "codeCommune": "21405", + "libelleAcheminement": "MERCEUIL", + "nomCommune": "MERCEUIL" }, { - "codePostal": "25330", - "codeCommune": "25359", - "libelleAcheminement": "MALANS", - "nomCommune": "MALANS" + "codePostal": "30260", + "codeCommune": "30244", + "libelleAcheminement": "ST CLEMENT", + "nomCommune": "ST CLEMENT" }, { - "codePostal": "62490", - "codeCommune": "62355", - "libelleAcheminement": "FRESNES LES MONTAUBAN", - "nomCommune": "FRESNES LES MONTAUBAN" + "codePostal": "30720", + "codeCommune": "30214", + "libelleAcheminement": "RIBAUTE LES TAVERNES", + "nomCommune": "RIBAUTE LES TAVERNES" }, { - "codePostal": "57870", - "codeCommune": "57680", - "libelleAcheminement": "TROISFONTAINES", - "nomCommune": "TROISFONTAINES" + "codePostal": "19160", + "codeCommune": "19110", + "libelleAcheminement": "LATRONCHE", + "nomCommune": "LATRONCHE" }, { - "codePostal": "24500", - "codeCommune": "24359", - "libelleAcheminement": "SADILLAC", - "nomCommune": "SADILLAC" + "codePostal": "21140", + "codeCommune": "21413", + "libelleAcheminement": "MILLERY", + "nomCommune": "MILLERY" }, { - "codePostal": "25620", - "codeCommune": "25360", - "libelleAcheminement": "MALBRANS", - "nomCommune": "MALBRANS" + "codePostal": "30870", + "codeCommune": "30245", + "libelleAcheminement": "ST COME ET MARUEJOLS", + "nomCommune": "ST COME ET MARUEJOLS" }, { - "codePostal": "62310", - "codeCommune": "62364", - "libelleAcheminement": "FRUGES", - "nomCommune": "FRUGES" + "codePostal": "30190", + "codeCommune": "30224", + "libelleAcheminement": "LA ROUVIERE", + "nomCommune": "LA ROUVIERE" }, { - "codePostal": "57320", - "codeCommune": "57681", - "libelleAcheminement": "TROMBORN", - "nomCommune": "TROMBORN" + "codePostal": "19500", + "codeCommune": "19115", + "libelleAcheminement": "LIGNEYRAC", + "nomCommune": "LIGNEYRAC" }, { - "codePostal": "24290", - "codeCommune": "24364", - "libelleAcheminement": "COLY ST AMAND", - "nomCommune": "COLY ST AMAND" + "codePostal": "21510", + "codeCommune": "21418", + "libelleAcheminement": "MOITRON", + "nomCommune": "MOITRON" }, { - "codePostal": "25620", - "codeCommune": "25364", - "libelleAcheminement": "MAMIROLLE", - "nomCommune": "MAMIROLLE" + "codePostal": "30500", + "codeCommune": "30247", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "62123", - "codeCommune": "62378", - "libelleAcheminement": "GOUVES", - "nomCommune": "GOUVES" + "codePostal": "30130", + "codeCommune": "30226", + "libelleAcheminement": "ST ALEXANDRE", + "nomCommune": "ST ALEXANDRE" }, { - "codePostal": "57730", - "codeCommune": "57690", - "libelleAcheminement": "VALMONT", - "nomCommune": "VALMONT" + "codePostal": "19470", + "codeCommune": "19118", + "libelleAcheminement": "LE LONZAC", + "nomCommune": "LE LONZAC" }, { - "codePostal": "24230", - "codeCommune": "24370", - "libelleAcheminement": "ST ANTOINE DE BREUILH", - "nomCommune": "ST ANTOINE DE BREUILH" + "codePostal": "21200", + "codeCommune": "21423", + "libelleAcheminement": "MONTAGNY LES BEAUNE", + "nomCommune": "MONTAGNY LES BEAUNE" }, { - "codePostal": "25350", - "codeCommune": "25367", - "libelleAcheminement": "MANDEURE", - "nomCommune": "MANDEURE" + "codePostal": "30190", + "codeCommune": "30248", + "libelleAcheminement": "ST DEZERY", + "nomCommune": "ST DEZERY" }, { - "codePostal": "62870", - "codeCommune": "62382", - "libelleAcheminement": "GOUY ST ANDRE", - "nomCommune": "GOUY ST ANDRE" + "codePostal": "30500", + "codeCommune": "30227", + "libelleAcheminement": "ST AMBROIX", + "nomCommune": "ST AMBROIX" }, { - "codePostal": "57220", - "codeCommune": "57695", - "libelleAcheminement": "VARIZE VAUDONCOURT", - "nomCommune": "VARIZE VAUDONCOURT" + "codePostal": "19520", + "codeCommune": "19124", + "libelleAcheminement": "MANSAC", + "nomCommune": "MANSAC" }, { - "codePostal": "24540", - "codeCommune": "24378", - "libelleAcheminement": "ST AVIT RIVIERE", - "nomCommune": "ST AVIT RIVIERE" + "codePostal": "21610", + "codeCommune": "21433", + "libelleAcheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", + "nomCommune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE" }, { - "codePostal": "25170", - "codeCommune": "25371", - "libelleAcheminement": "MAZEROLLES LE SALIN", - "nomCommune": "MAZEROLLES LE SALIN" + "codePostal": "30980", + "codeCommune": "30249", + "libelleAcheminement": "ST DIONISY", + "nomCommune": "ST DIONISY" }, { - "codePostal": "62147", - "codeCommune": "62384", - "libelleAcheminement": "GRAINCOURT LES HAVRINCOURT", - "nomCommune": "GRAINCOURT LES HAVRINCOURT" + "codePostal": "30460", + "codeCommune": "30246", + "libelleAcheminement": "STE CROIX DE CADERLE", + "nomCommune": "STE CROIX DE CADERLE" }, { - "codePostal": "57170", - "codeCommune": "57702", - "libelleAcheminement": "VAXY", - "nomCommune": "VAXY" + "codePostal": "19500", + "codeCommune": "19126", + "libelleAcheminement": "MARCILLAC LA CROZE", + "nomCommune": "MARCILLAC LA CROZE" }, { - "codePostal": "24700", - "codeCommune": "24380", - "libelleAcheminement": "ST BARTHELEMY DE BELLEGARDE", - "nomCommune": "ST BARTHELEMY DE BELLEGARDE" + "codePostal": "21610", + "codeCommune": "21433", + "libelleAcheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", + "nomCommune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE" }, { - "codePostal": "25660", - "codeCommune": "25375", - "libelleAcheminement": "MEREY SOUS MONTROND", - "nomCommune": "MEREY SOUS MONTROND" + "codePostal": "30960", + "codeCommune": "30253", + "libelleAcheminement": "ST FLORENT SUR AUZONNET", + "nomCommune": "ST FLORENT SUR AUZONNET" }, { - "codePostal": "62160", - "codeCommune": "62386", - "libelleAcheminement": "GRENAY", - "nomCommune": "GRENAY" + "codePostal": "30190", + "codeCommune": "30255", + "libelleAcheminement": "ST GENIES DE MALGOIRES", + "nomCommune": "ST GENIES DE MALGOIRES" }, { - "codePostal": "57920", - "codeCommune": "57704", - "libelleAcheminement": "VECKRING", - "nomCommune": "VECKRING" + "codePostal": "19340", + "codeCommune": "19134", + "libelleAcheminement": "MERLINES", + "nomCommune": "MERLINES" }, { - "codePostal": "24440", - "codeCommune": "24393", - "libelleAcheminement": "STE CROIX", - "nomCommune": "STE CROIX" + "codePostal": "21210", + "codeCommune": "21434", + "libelleAcheminement": "MONTLAY EN AUXOIS", + "nomCommune": "MONTLAY EN AUXOIS" }, { - "codePostal": "25440", - "codeCommune": "25379", - "libelleAcheminement": "MESMAY", - "nomCommune": "MESMAY" + "codePostal": "30700", + "codeCommune": "30262", + "libelleAcheminement": "ST HIPPOLYTE DE MONTAIGU", + "nomCommune": "ST HIPPOLYTE DE MONTAIGU" }, { - "codePostal": "62118", - "codeCommune": "62405", - "libelleAcheminement": "HAMBLAIN LES PRES", - "nomCommune": "HAMBLAIN LES PRES" + "codePostal": "30430", + "codeCommune": "30266", + "libelleAcheminement": "ST JEAN DE MARUEJOLS ET AVEJAN", + "nomCommune": "ST JEAN DE MARUEJOLS ET AVEJAN" }, { - "codePostal": "57635", - "codeCommune": "57713", - "libelleAcheminement": "VIEUX LIXHEIM", - "nomCommune": "VIEUX LIXHEIM" + "codePostal": "19500", + "codeCommune": "19138", + "libelleAcheminement": "MEYSSAC", + "nomCommune": "MEYSSAC" }, { - "codePostal": "24340", - "codeCommune": "24394", - "libelleAcheminement": "STE CROIX DE MAREUIL", - "nomCommune": "STE CROIX DE MAREUIL" + "codePostal": "21540", + "codeCommune": "21439", + "libelleAcheminement": "MONTOILLOT", + "nomCommune": "MONTOILLOT" }, { - "codePostal": "25120", - "codeCommune": "25392", - "libelleAcheminement": "MONT DE VOUGNEY", - "nomCommune": "MONT DE VOUGNEY" + "codePostal": "30610", + "codeCommune": "30265", + "libelleAcheminement": "ST JEAN DE CRIEULON", + "nomCommune": "ST JEAN DE CRIEULON" }, { - "codePostal": "62121", - "codeCommune": "62406", - "libelleAcheminement": "HAMELINCOURT", - "nomCommune": "HAMELINCOURT" + "codePostal": "30350", + "codeCommune": "30267", + "libelleAcheminement": "ST JEAN DE SERRES", + "nomCommune": "ST JEAN DE SERRES" }, { - "codePostal": "57640", - "codeCommune": "57716", - "libelleAcheminement": "VIGY", - "nomCommune": "VIGY" + "codePostal": "19300", + "codeCommune": "19143", + "libelleAcheminement": "MONTAIGNAC SUR DOUSTRE", + "nomCommune": "MONTAIGNAC SUR DOUSTRE" }, { - "codePostal": "24360", - "codeCommune": "24398", - "libelleAcheminement": "ST ESTEPHE", - "nomCommune": "ST ESTEPHE" + "codePostal": "21320", + "codeCommune": "21441", + "libelleAcheminement": "MONT ST JEAN", + "nomCommune": "MONT ST JEAN" }, { - "codePostal": "25260", - "codeCommune": "25394", - "libelleAcheminement": "MONTENOIS", - "nomCommune": "MONTENOIS" + "codePostal": "30270", + "codeCommune": "30269", + "libelleAcheminement": "ST JEAN DU GARD", + "nomCommune": "ST JEAN DU GARD" }, { - "codePostal": "62340", - "codeCommune": "62408", - "libelleAcheminement": "HAMES BOUCRES", - "nomCommune": "HAMES BOUCRES" + "codePostal": "30760", + "codeCommune": "30273", + "libelleAcheminement": "ST JULIEN DE PEYROLAS", + "nomCommune": "ST JULIEN DE PEYROLAS" }, { - "codePostal": "57340", - "codeCommune": "57717", - "libelleAcheminement": "VILLER", - "nomCommune": "VILLER" + "codePostal": "19300", + "codeCommune": "19143", + "libelleAcheminement": "MONTAIGNAC SUR DOUSTRE", + "nomCommune": "MONTAIGNAC SUR DOUSTRE" }, { - "codePostal": "24260", - "codeCommune": "24404", - "libelleAcheminement": "ST FELIX DE REILLAC ET MORTEMART", - "nomCommune": "ST FELIX DE REILLAC ET MORTEMART" + "codePostal": "21500", + "codeCommune": "21446", + "libelleAcheminement": "MOUTIERS ST JEAN", + "nomCommune": "MOUTIERS ST JEAN" }, { - "codePostal": "25320", - "codeCommune": "25397", - "libelleAcheminement": "MONTFERRAND LE CHATEAU", - "nomCommune": "MONTFERRAND LE CHATEAU" + "codePostal": "30500", + "codeCommune": "30271", + "libelleAcheminement": "ST JULIEN DE CASSAGNAS", + "nomCommune": "ST JULIEN DE CASSAGNAS" }, { - "codePostal": "62144", - "codeCommune": "62415", - "libelleAcheminement": "HAUTE AVESNES", - "nomCommune": "HAUTE AVESNES" + "codePostal": "30440", + "codeCommune": "30280", + "libelleAcheminement": "ST LAURENT LE MINIER", + "nomCommune": "ST LAURENT LE MINIER" }, { - "codePostal": "57580", - "codeCommune": "57728", - "libelleAcheminement": "VOIMHAUT", - "nomCommune": "VOIMHAUT" + "codePostal": "19300", + "codeCommune": "19145", + "libelleAcheminement": "MOUSTIER VENTADOUR", + "nomCommune": "MOUSTIER VENTADOUR" }, { - "codePostal": "24510", - "codeCommune": "24407", - "libelleAcheminement": "STE FOY DE LONGAS", - "nomCommune": "STE FOY DE LONGAS" + "codePostal": "21800", + "codeCommune": "21452", + "libelleAcheminement": "NEUILLY CRIMOLOIS", + "nomCommune": "NEUILLY CRIMOLOIS" }, { - "codePostal": "25111", - "codeCommune": "25400", - "libelleAcheminement": "MONTGESOYE", - "nomCommune": "MONTGESOYE" + "codePostal": "30340", + "codeCommune": "30274", + "libelleAcheminement": "ST JULIEN LES ROSIERS", + "nomCommune": "ST JULIEN LES ROSIERS" }, { - "codePostal": "62130", - "codeCommune": "62416", - "libelleAcheminement": "HAUTECLOQUE", - "nomCommune": "HAUTECLOQUE" + "codePostal": "30700", + "codeCommune": "30286", + "libelleAcheminement": "ST MAXIMIN", + "nomCommune": "ST MAXIMIN" }, { - "codePostal": "57940", - "codeCommune": "57733", - "libelleAcheminement": "VOLSTROFF", - "nomCommune": "VOLSTROFF" + "codePostal": "19380", + "codeCommune": "19149", + "libelleAcheminement": "NEUVILLE", + "nomCommune": "NEUVILLE" }, { - "codePostal": "24400", - "codeCommune": "24409", - "libelleAcheminement": "ST FRONT DE PRADOUX", - "nomCommune": "ST FRONT DE PRADOUX" + "codePostal": "21400", + "codeCommune": "21455", + "libelleAcheminement": "NOD SUR SEINE", + "nomCommune": "NOD SUR SEINE" }, { - "codePostal": "25240", - "codeCommune": "25413", - "libelleAcheminement": "MOUTHE", - "nomCommune": "MOUTHE" + "codePostal": "30220", + "codeCommune": "30276", + "libelleAcheminement": "ST LAURENT D AIGOUZE", + "nomCommune": "ST LAURENT D AIGOUZE" }, { - "codePostal": "62810", - "codeCommune": "62418", - "libelleAcheminement": "HAUTEVILLE", - "nomCommune": "HAUTEVILLE" + "codePostal": "30480", + "codeCommune": "30291", + "libelleAcheminement": "ST PAUL LA COSTE", + "nomCommune": "ST PAUL LA COSTE" }, { - "codePostal": "57320", - "codeCommune": "57739", - "libelleAcheminement": "WALDWEISTROFF", - "nomCommune": "WALDWEISTROFF" + "codePostal": "19150", + "codeCommune": "19158", + "libelleAcheminement": "PANDRIGNES", + "nomCommune": "PANDRIGNES" }, { - "codePostal": "24130", - "codeCommune": "24413", - "libelleAcheminement": "ST GEORGES BLANCANEIX", - "nomCommune": "ST GEORGES BLANCANEIX" + "codePostal": "21910", + "codeCommune": "21458", + "libelleAcheminement": "NOIRON SOUS GEVREY", + "nomCommune": "NOIRON SOUS GEVREY" }, { - "codePostal": "25440", - "codeCommune": "25416", - "libelleAcheminement": "MYON", - "nomCommune": "MYON" + "codePostal": "30200", + "codeCommune": "30277", + "libelleAcheminement": "ST LAURENT DE CARNOLS", + "nomCommune": "ST LAURENT DE CARNOLS" }, { - "codePostal": "62850", - "codeCommune": "62419", - "libelleAcheminement": "HAUT LOQUIN", - "nomCommune": "HAUT LOQUIN" + "codePostal": "30430", + "codeCommune": "30293", + "libelleAcheminement": "ST PRIVAT DE CHAMPCLOS", + "nomCommune": "ST PRIVAT DE CHAMPCLOS" }, { - "codePostal": "57200", - "codeCommune": "57745", - "libelleAcheminement": "WIESVILLER", - "nomCommune": "WIESVILLER" + "codePostal": "19310", + "codeCommune": "19161", + "libelleAcheminement": "PERPEZAC LE BLANC", + "nomCommune": "PERPEZAC LE BLANC" }, { - "codePostal": "24140", - "codeCommune": "24414", - "libelleAcheminement": "ST GEORGES DE MONTCLARD", - "nomCommune": "ST GEORGES DE MONTCLARD" + "codePostal": "21700", + "codeCommune": "21464", + "libelleAcheminement": "NUITS ST GEORGES", + "nomCommune": "NUITS ST GEORGES" }, { - "codePostal": "25580", - "codeCommune": "25424", - "libelleAcheminement": "LES PREMIERS SAPINS", - "nomCommune": "LES PREMIERS SAPINS" + "codePostal": "30700", + "codeCommune": "30295", + "libelleAcheminement": "ST QUENTIN LA POTERIE", + "nomCommune": "ST QUENTIN LA POTERIE" }, { - "codePostal": "62175", - "codeCommune": "62425", - "libelleAcheminement": "HENDECOURT LES RANSART", - "nomCommune": "HENDECOURT LES RANSART" + "codePostal": "30750", + "codeCommune": "30297", + "libelleAcheminement": "ST SAUVEUR CAMPRIEU", + "nomCommune": "ST SAUVEUR CAMPRIEU" }, { - "codePostal": "57200", - "codeCommune": "57750", - "libelleAcheminement": "WOELFLING LES SARREGUEMINES", - "nomCommune": "WOELFLING LES SARREGUEMINES" + "codePostal": "19190", + "codeCommune": "19163", + "libelleAcheminement": "LE PESCHER", + "nomCommune": "LE PESCHER" }, { - "codePostal": "24160", - "codeCommune": "24417", - "libelleAcheminement": "ST GERMAIN DES PRES", - "nomCommune": "ST GERMAIN DES PRES" + "codePostal": "21490", + "codeCommune": "21469", + "libelleAcheminement": "ORGEUX", + "nomCommune": "ORGEUX" }, { - "codePostal": "25530", - "codeCommune": "25441", - "libelleAcheminement": "OUVANS", - "nomCommune": "OUVANS" + "codePostal": "30440", + "codeCommune": "30296", + "libelleAcheminement": "ST ROMAN DE CODIERES", + "nomCommune": "ST ROMAN DE CODIERES" }, { - "codePostal": "62110", - "codeCommune": "62427", - "libelleAcheminement": "HENIN BEAUMONT", - "nomCommune": "HENIN BEAUMONT" + "codePostal": "30700", + "codeCommune": "30301", + "libelleAcheminement": "ST VICTOR DES OULES", + "nomCommune": "ST VICTOR DES OULES" }, { - "codePostal": "57140", - "codeCommune": "57751", - "libelleAcheminement": "WOIPPY", - "nomCommune": "WOIPPY" + "codePostal": "19120", + "codeCommune": "19169", + "libelleAcheminement": "PUY D ARNAC", + "nomCommune": "PUY D ARNAC" }, { - "codePostal": "24500", - "codeCommune": "24423", - "libelleAcheminement": "ST JULIEN INNOCENCE EULALIE", - "nomCommune": "ST JULIEN INNOCENCE EULALIE" + "codePostal": "21450", + "codeCommune": "21471", + "libelleAcheminement": "ORRET", + "nomCommune": "ORRET" }, { - "codePostal": "25440", - "codeCommune": "25450", - "libelleAcheminement": "PESSANS", - "nomCommune": "PESSANS" + "codePostal": "30340", + "codeCommune": "30305", + "libelleAcheminement": "SALINDRES", + "nomCommune": "SALINDRES" }, { - "codePostal": "62128", - "codeCommune": "62428", - "libelleAcheminement": "HENIN SUR COJEUL", - "nomCommune": "HENIN SUR COJEUL" + "codePostal": "30110", + "codeCommune": "30307", + "libelleAcheminement": "LES SALLES DU GARDON", + "nomCommune": "LES SALLES DU GARDON" }, { - "codePostal": "57590", - "codeCommune": "57755", - "libelleAcheminement": "XOCOURT", - "nomCommune": "XOCOURT" + "codePostal": "19220", + "codeCommune": "19173", + "libelleAcheminement": "RILHAC XAINTRIE", + "nomCommune": "RILHAC XAINTRIE" }, { - "codePostal": "24540", - "codeCommune": "24446", - "libelleAcheminement": "ST MARCORY", - "nomCommune": "ST MARCORY" + "codePostal": "21260", + "codeCommune": "21472", + "libelleAcheminement": "ORVILLE", + "nomCommune": "ORVILLE" }, { - "codePostal": "25470", - "codeCommune": "25458", - "libelleAcheminement": "LES PLAINS ET GRANDS ESSARTS", - "nomCommune": "LES PLAINS ET GRANDS ESSARTS" + "codePostal": "30250", + "codeCommune": "30306", + "libelleAcheminement": "SALINELLES", + "nomCommune": "SALINELLES" }, { - "codePostal": "62130", - "codeCommune": "62433", - "libelleAcheminement": "HERICOURT", - "nomCommune": "HERICOURT" + "codePostal": "30150", + "codeCommune": "30312", + "libelleAcheminement": "SAUVETERRE", + "nomCommune": "SAUVETERRE" }, { - "codePostal": "57340", - "codeCommune": "57759", - "libelleAcheminement": "ZARBELING", - "nomCommune": "ZARBELING" + "codePostal": "19270", + "codeCommune": "19178", + "libelleAcheminement": "SADROC", + "nomCommune": "SADROC" }, { - "codePostal": "24700", - "codeCommune": "24449", - "libelleAcheminement": "ST MARTIAL D ARTENSET", - "nomCommune": "ST MARTIAL D ARTENSET" + "codePostal": "21370", + "codeCommune": "21478", + "libelleAcheminement": "PASQUES", + "nomCommune": "PASQUES" }, { - "codePostal": "25340", - "codeCommune": "25461", - "libelleAcheminement": "POMPIERRE SUR DOUBS", - "nomCommune": "POMPIERRE SUR DOUBS" + "codePostal": "30350", + "codeCommune": "30314", + "libelleAcheminement": "SAVIGNARGUES", + "nomCommune": "SAVIGNARGUES" }, { - "codePostal": "62530", - "codeCommune": "62443", - "libelleAcheminement": "HERSIN COUPIGNY", - "nomCommune": "HERSIN COUPIGNY" + "codePostal": "30650", + "codeCommune": "30315", + "libelleAcheminement": "SAZE", + "nomCommune": "SAZE" }, { - "codePostal": "58200", - "codeCommune": "58002", - "libelleAcheminement": "ALLIGNY COSNE", - "nomCommune": "ALLIGNY COSNE" + "codePostal": "19200", + "codeCommune": "19180", + "libelleAcheminement": "ST ANGEL", + "nomCommune": "ST ANGEL" }, { - "codePostal": "24300", - "codeCommune": "24458", - "libelleAcheminement": "ST MARTIN LE PIN", - "nomCommune": "ST MARTIN LE PIN" + "codePostal": "21120", + "codeCommune": "21491", + "libelleAcheminement": "POISEUL LES SAULX", + "nomCommune": "POISEUL LES SAULX" }, { - "codePostal": "25380", - "codeCommune": "25471", - "libelleAcheminement": "PROVENCHERE", - "nomCommune": "PROVENCHERE" + "codePostal": "30210", + "codeCommune": "30317", + "libelleAcheminement": "SERNHAC", + "nomCommune": "SERNHAC" }, { - "codePostal": "62360", - "codeCommune": "62448", - "libelleAcheminement": "HESDIN L ABBE", - "nomCommune": "HESDIN L ABBE" + "codePostal": "30580", + "codeCommune": "30320", + "libelleAcheminement": "SEYNES", + "nomCommune": "SEYNES" }, { - "codePostal": "58310", - "codeCommune": "58012", - "libelleAcheminement": "ARQUIAN", - "nomCommune": "ARQUIAN" + "codePostal": "19130", + "codeCommune": "19182", + "libelleAcheminement": "ST AULAIRE", + "nomCommune": "ST AULAIRE" }, { - "codePostal": "24610", - "codeCommune": "24461", - "libelleAcheminement": "ST MEARD DE GURCON", - "nomCommune": "ST MEARD DE GURCON" + "codePostal": "21270", + "codeCommune": "21496", + "libelleAcheminement": "PONTAILLER SUR SAONE", + "nomCommune": "PONTAILLER SUR SAONE" }, { - "codePostal": "25150", - "codeCommune": "25485", - "libelleAcheminement": "REMONDANS VAIVRE", - "nomCommune": "REMONDANS VAIVRE" + "codePostal": "30250", + "codeCommune": "30321", + "libelleAcheminement": "SOMMIERES", + "nomCommune": "SOMMIERES" }, { - "codePostal": "62550", - "codeCommune": "62450", - "libelleAcheminement": "HESTRUS", - "nomCommune": "HESTRUS" + "codePostal": "30440", + "codeCommune": "30325", + "libelleAcheminement": "SUMENE", + "nomCommune": "SUMENE" }, { - "codePostal": "58110", - "codeCommune": "58024", - "libelleAcheminement": "BAZOLLES", - "nomCommune": "BAZOLLES" + "codePostal": "19130", + "codeCommune": "19187", + "libelleAcheminement": "ST BONNET LA RIVIERE", + "nomCommune": "ST BONNET LA RIVIERE" }, { - "codePostal": "24160", - "codeCommune": "24463", - "libelleAcheminement": "ST MEDARD D EXCIDEUIL", - "nomCommune": "ST MEDARD D EXCIDEUIL" + "codePostal": "21140", + "codeCommune": "21497", + "libelleAcheminement": "PONT ET MASSENE", + "nomCommune": "PONT ET MASSENE" }, { - "codePostal": "25440", - "codeCommune": "25488", - "libelleAcheminement": "RENNES SUR LOUE", - "nomCommune": "RENNES SUR LOUE" + "codePostal": "30330", + "codeCommune": "30331", + "libelleAcheminement": "TRESQUES", + "nomCommune": "TRESQUES" }, { - "codePostal": "62158", - "codeCommune": "62465", - "libelleAcheminement": "HUMBERCAMPS", - "nomCommune": "HUMBERCAMPS" + "codePostal": "30390", + "codeCommune": "30328", + "libelleAcheminement": "THEZIERS", + "nomCommune": "THEZIERS" }, { - "codePostal": "58270", - "codeCommune": "58028", - "libelleAcheminement": "BEAUMONT SARDOLLES", - "nomCommune": "BEAUMONT SARDOLLES" + "codePostal": "19200", + "codeCommune": "19190", + "libelleAcheminement": "ST BONNET PRES BORT", + "nomCommune": "ST BONNET PRES BORT" }, { - "codePostal": "24210", - "codeCommune": "24473", - "libelleAcheminement": "STE ORSE", - "nomCommune": "STE ORSE" + "codePostal": "21350", + "codeCommune": "21498", + "libelleAcheminement": "POSANGES", + "nomCommune": "POSANGES" }, { - "codePostal": "25560", - "codeCommune": "25493", - "libelleAcheminement": "LA RIVIERE DRUGEON", - "nomCommune": "LA RIVIERE DRUGEON" + "codePostal": "30700", + "codeCommune": "30334", + "libelleAcheminement": "UZES", + "nomCommune": "UZES" }, { - "codePostal": "62300", - "codeCommune": "62498", - "libelleAcheminement": "LENS", - "nomCommune": "LENS" + "codePostal": "30750", + "codeCommune": "30332", + "libelleAcheminement": "TREVES", + "nomCommune": "TREVES" }, { - "codePostal": "58460", - "codeCommune": "58038", - "libelleAcheminement": "BREUGNON", - "nomCommune": "BREUGNON" + "codePostal": "19490", + "codeCommune": "19203", + "libelleAcheminement": "STE FORTUNADE", + "nomCommune": "STE FORTUNADE" }, { - "codePostal": "24170", - "codeCommune": "24478", - "libelleAcheminement": "ST PARDOUX ET VIELVIC", - "nomCommune": "ST PARDOUX ET VIELVIC" + "codePostal": "21150", + "codeCommune": "21500", + "libelleAcheminement": "POUILLENAY", + "nomCommune": "POUILLENAY" }, { - "codePostal": "25370", - "codeCommune": "25494", - "libelleAcheminement": "ROCHEJEAN", - "nomCommune": "ROCHEJEAN" + "codePostal": "30600", + "codeCommune": "30341", + "libelleAcheminement": "VAUVERT", + "nomCommune": "VAUVERT" }, { - "codePostal": "62800", - "codeCommune": "62510", - "libelleAcheminement": "LIEVIN", - "nomCommune": "LIEVIN" + "codePostal": "30460", + "codeCommune": "30335", + "libelleAcheminement": "VABRES", + "nomCommune": "VABRES" }, { - "codePostal": "58420", - "codeCommune": "58041", - "libelleAcheminement": "BRINON SUR BEUVRON", - "nomCommune": "BRINON SUR BEUVRON" + "codePostal": "19290", + "codeCommune": "19206", + "libelleAcheminement": "ST GERMAIN LAVOLPS", + "nomCommune": "ST GERMAIN LAVOLPS" }, { - "codePostal": "24330", - "codeCommune": "24484", - "libelleAcheminement": "ST PIERRE DE CHIGNAC", - "nomCommune": "ST PIERRE DE CHIGNAC" + "codePostal": "21320", + "codeCommune": "21501", + "libelleAcheminement": "POUILLY EN AUXOIS", + "nomCommune": "POUILLY EN AUXOIS" }, { - "codePostal": "25680", - "codeCommune": "25498", - "libelleAcheminement": "ROGNON", - "nomCommune": "ROGNON" + "codePostal": "30630", + "codeCommune": "30343", + "libelleAcheminement": "VERFEUIL", + "nomCommune": "VERFEUIL" }, { - "codePostal": "62450", - "codeCommune": "62515", - "libelleAcheminement": "LIGNY THILLOY", - "nomCommune": "LIGNY THILLOY" + "codePostal": "30300", + "codeCommune": "30336", + "libelleAcheminement": "VALLABREGUES", + "nomCommune": "VALLABREGUES" }, { - "codePostal": "58420", - "codeCommune": "58052", - "libelleAcheminement": "CHAMPALLEMENT", - "nomCommune": "CHAMPALLEMENT" + "codePostal": "19550", + "codeCommune": "19208", + "libelleAcheminement": "ST HILAIRE FOISSAC", + "nomCommune": "ST HILAIRE FOISSAC" }, { - "codePostal": "24170", - "codeCommune": "24488", - "libelleAcheminement": "ST POMPONT", - "nomCommune": "ST POMPONT" + "codePostal": "21390", + "codeCommune": "21505", + "libelleAcheminement": "PRECY SOUS THIL", + "nomCommune": "PRECY SOUS THIL" }, { - "codePostal": "25680", - "codeCommune": "25505", - "libelleAcheminement": "ROUGEMONT", - "nomCommune": "ROUGEMONT" + "codePostal": "30310", + "codeCommune": "30344", + "libelleAcheminement": "VERGEZE", + "nomCommune": "VERGEZE" }, { - "codePostal": "62130", - "codeCommune": "62539", - "libelleAcheminement": "MAISNIL", - "nomCommune": "MAISNIL" + "codePostal": "30600", + "codeCommune": "30341", + "libelleAcheminement": "VAUVERT", + "nomCommune": "VAUVERT" }, { - "codePostal": "58240", - "codeCommune": "58057", - "libelleAcheminement": "CHANTENAY ST IMBERT", - "nomCommune": "CHANTENAY ST IMBERT" + "codePostal": "19560", + "codeCommune": "19211", + "libelleAcheminement": "ST HILAIRE PEYROUX", + "nomCommune": "ST HILAIRE PEYROUX" }, { - "codePostal": "24450", - "codeCommune": "24489", - "libelleAcheminement": "ST PRIEST LES FOUGERES", - "nomCommune": "ST PRIEST LES FOUGERES" + "codePostal": "21190", + "codeCommune": "21512", + "libelleAcheminement": "PULIGNY MONTRACHET", + "nomCommune": "PULIGNY MONTRACHET" }, { - "codePostal": "25360", - "codeCommune": "25520", - "libelleAcheminement": "ST JUAN", - "nomCommune": "ST JUAN" + "codePostal": "31440", + "codeCommune": "31015", + "libelleAcheminement": "ARGUT DESSOUS", + "nomCommune": "ARGUT DESSOUS" }, { - "codePostal": "62140", - "codeCommune": "62549", - "libelleAcheminement": "MARCONNE", - "nomCommune": "MARCONNE" + "codePostal": "30600", + "codeCommune": "30341", + "libelleAcheminement": "VAUVERT", + "nomCommune": "VAUVERT" }, { - "codePostal": "58300", - "codeCommune": "58060", - "libelleAcheminement": "CHARRIN", - "nomCommune": "CHARRIN" + "codePostal": "19700", + "codeCommune": "19213", + "libelleAcheminement": "ST JAL", + "nomCommune": "ST JAL" }, { - "codePostal": "24410", - "codeCommune": "24490", - "libelleAcheminement": "ST PRIVAT EN PERIGORD", - "nomCommune": "ST PRIVAT EN PERIGORD" + "codePostal": "21540", + "codeCommune": "21520", + "libelleAcheminement": "REMILLY EN MONTAGNE", + "nomCommune": "REMILLY EN MONTAGNE" }, { - "codePostal": "25430", - "codeCommune": "25529", - "libelleAcheminement": "SANCEY", - "nomCommune": "SANCEY" + "codePostal": "31460", + "codeCommune": "31026", + "libelleAcheminement": "AURIAC SUR VENDINELLE", + "nomCommune": "AURIAC SUR VENDINELLE" }, { - "codePostal": "62550", - "codeCommune": "62553", - "libelleAcheminement": "MAREST", - "nomCommune": "MAREST" + "codePostal": "30200", + "codeCommune": "30342", + "libelleAcheminement": "VENEJAN", + "nomCommune": "VENEJAN" }, { - "codePostal": "58110", - "codeCommune": "58065", - "libelleAcheminement": "CHATILLON EN BAZOIS", - "nomCommune": "CHATILLON EN BAZOIS" + "codePostal": "19170", + "codeCommune": "19226", + "libelleAcheminement": "ST MERD LES OUSSINES", + "nomCommune": "ST MERD LES OUSSINES" }, { - "codePostal": "24210", - "codeCommune": "24491", - "libelleAcheminement": "ST RABIER", - "nomCommune": "ST RABIER" + "codePostal": "21220", + "codeCommune": "21523", + "libelleAcheminement": "REULLE VERGY", + "nomCommune": "REULLE VERGY" }, { - "codePostal": "25510", - "codeCommune": "25550", - "libelleAcheminement": "LA SOMMETTE", - "nomCommune": "LA SOMMETTE" + "codePostal": "31130", + "codeCommune": "31044", + "libelleAcheminement": "BALMA", + "nomCommune": "BALMA" }, { - "codePostal": "62670", - "codeCommune": "62563", - "libelleAcheminement": "MAZINGARBE", - "nomCommune": "MAZINGARBE" + "codePostal": "30250", + "codeCommune": "30352", + "libelleAcheminement": "VILLEVIEILLE", + "nomCommune": "VILLEVIEILLE" }, { - "codePostal": "58120", - "codeCommune": "58068", - "libelleAcheminement": "CHAUMARD", - "nomCommune": "CHAUMARD" + "codePostal": "19600", + "codeCommune": "19229", + "libelleAcheminement": "ST PANTALEON DE LARCHE", + "nomCommune": "ST PANTALEON DE LARCHE" }, { - "codePostal": "24520", - "codeCommune": "24499", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "21570", + "codeCommune": "21524", + "libelleAcheminement": "RIEL LES EAUX", + "nomCommune": "RIEL LES EAUX" }, { - "codePostal": "25250", - "codeCommune": "25553", - "libelleAcheminement": "SOYE", - "nomCommune": "SOYE" + "codePostal": "31290", + "codeCommune": "31054", + "libelleAcheminement": "BEAUTEVILLE", + "nomCommune": "BEAUTEVILLE" }, { - "codePostal": "62120", - "codeCommune": "62564", - "libelleAcheminement": "MAZINGHEM", - "nomCommune": "MAZINGHEM" + "codePostal": "31230", + "codeCommune": "31001", + "libelleAcheminement": "AGASSAC", + "nomCommune": "AGASSAC" }, { - "codePostal": "58800", - "codeCommune": "58069", - "libelleAcheminement": "CHAUMOT", - "nomCommune": "CHAUMOT" + "codePostal": "19800", + "codeCommune": "19236", + "libelleAcheminement": "ST PRIEST DE GIMEL", + "nomCommune": "ST PRIEST DE GIMEL" }, { - "codePostal": "24190", - "codeCommune": "24502", - "libelleAcheminement": "ST SEVERIN D ESTISSAC", - "nomCommune": "ST SEVERIN D ESTISSAC" + "codePostal": "21530", + "codeCommune": "21525", + "libelleAcheminement": "LA ROCHE EN BRENIL", + "nomCommune": "LA ROCHE EN BRENIL" }, { - "codePostal": "25680", - "codeCommune": "25556", - "libelleAcheminement": "TALLANS", - "nomCommune": "TALLANS" + "codePostal": "31480", + "codeCommune": "31062", + "libelleAcheminement": "BELLESSERRE", + "nomCommune": "BELLESSERRE" }, { - "codePostal": "62217", - "codeCommune": "62568", - "libelleAcheminement": "MERCATEL", - "nomCommune": "MERCATEL" + "codePostal": "31550", + "codeCommune": "31002", + "libelleAcheminement": "AIGNES", + "nomCommune": "AIGNES" }, { - "codePostal": "58700", - "codeCommune": "58070", - "libelleAcheminement": "CHAZEUIL", - "nomCommune": "CHAZEUIL" + "codePostal": "19290", + "codeCommune": "19238", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "24800", - "codeCommune": "24505", - "libelleAcheminement": "ST SULPICE D EXCIDEUIL", - "nomCommune": "ST SULPICE D EXCIDEUIL" + "codePostal": "21350", + "codeCommune": "21537", + "libelleAcheminement": "SAFFRES", + "nomCommune": "SAFFRES" }, { - "codePostal": "25220", - "codeCommune": "25560", - "libelleAcheminement": "THISE", - "nomCommune": "THISE" + "codePostal": "31420", + "codeCommune": "31063", + "libelleAcheminement": "BENQUE", + "nomCommune": "BENQUE" }, { - "codePostal": "62270", - "codeCommune": "62577", - "libelleAcheminement": "MONCHEL SUR CANCHE", - "nomCommune": "MONCHEL SUR CANCHE" + "codePostal": "31420", + "codeCommune": "31005", + "libelleAcheminement": "ALAN", + "nomCommune": "ALAN" }, { - "codePostal": "58500", - "codeCommune": "58073", - "libelleAcheminement": "CHEVROCHES", - "nomCommune": "CHEVROCHES" + "codePostal": "19290", + "codeCommune": "19241", + "libelleAcheminement": "ST SETIERS", + "nomCommune": "ST SETIERS" }, { - "codePostal": "24160", - "codeCommune": "24507", - "libelleAcheminement": "STE TRIE", - "nomCommune": "STE TRIE" + "codePostal": "21510", + "codeCommune": "21549", + "libelleAcheminement": "ST GERMAIN LE ROCHEUX", + "nomCommune": "ST GERMAIN LE ROCHEUX" }, { - "codePostal": "25310", - "codeCommune": "25562", - "libelleAcheminement": "THULAY", - "nomCommune": "THULAY" + "codePostal": "31210", + "codeCommune": "31076", + "libelleAcheminement": "BORDES DE RIVIERE", + "nomCommune": "BORDES DE RIVIERE" }, { - "codePostal": "62118", - "codeCommune": "62582", - "libelleAcheminement": "MONCHY LE PREUX", - "nomCommune": "MONCHY LE PREUX" + "codePostal": "31160", + "codeCommune": "31014", + "libelleAcheminement": "ARGUENOS", + "nomCommune": "ARGUENOS" }, { - "codePostal": "58110", - "codeCommune": "58076", - "libelleAcheminement": "CHOUGNY", - "nomCommune": "CHOUGNY" + "codePostal": "19130", + "codeCommune": "19242", + "libelleAcheminement": "ST SOLVE", + "nomCommune": "ST SOLVE" }, { - "codePostal": "24350", - "codeCommune": "24508", - "libelleAcheminement": "ST VICTOR", - "nomCommune": "ST VICTOR" + "codePostal": "21230", + "codeCommune": "21566", + "libelleAcheminement": "ST PIERRE EN VAUX", + "nomCommune": "ST PIERRE EN VAUX" }, { - "codePostal": "25640", - "codeCommune": "25566", - "libelleAcheminement": "LA TOUR DE SCAY", - "nomCommune": "LA TOUR DE SCAY" + "codePostal": "31570", + "codeCommune": "31082", + "libelleAcheminement": "BOURG ST BERNARD", + "nomCommune": "BOURG ST BERNARD" }, { - "codePostal": "62130", - "codeCommune": "62590", - "libelleAcheminement": "MONTS EN TERNOIS", - "nomCommune": "MONTS EN TERNOIS" + "codePostal": "31190", + "codeCommune": "31024", + "libelleAcheminement": "AURAGNE", + "nomCommune": "AURAGNE" }, { - "codePostal": "58270", - "codeCommune": "58078", - "libelleAcheminement": "CIZELY", - "nomCommune": "CIZELY" + "codePostal": "19230", + "codeCommune": "19243", + "libelleAcheminement": "ST SORNIN LAVOLPS", + "nomCommune": "ST SORNIN LAVOLPS" }, { - "codePostal": "24200", - "codeCommune": "24512", - "libelleAcheminement": "ST VINCENT LE PALUEL", - "nomCommune": "ST VINCENT LE PALUEL" + "codePostal": "21500", + "codeCommune": "21568", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "25620", - "codeCommune": "25569", - "libelleAcheminement": "TREPOT", - "nomCommune": "TREPOT" + "codePostal": "31330", + "codeCommune": "31093", + "libelleAcheminement": "LE BURGAUD", + "nomCommune": "LE BURGAUD" }, { - "codePostal": "62550", - "codeCommune": "62601", - "libelleAcheminement": "NEDONCHEL", - "nomCommune": "NEDONCHEL" + "codePostal": "31320", + "codeCommune": "31025", + "libelleAcheminement": "AUREVILLE", + "nomCommune": "AUREVILLE" }, { - "codePostal": "58500", - "codeCommune": "58079", - "libelleAcheminement": "CLAMECY", - "nomCommune": "CLAMECY" + "codePostal": "19510", + "codeCommune": "19250", + "libelleAcheminement": "SALON LA TOUR", + "nomCommune": "SALON LA TOUR" }, { - "codePostal": "24160", - "codeCommune": "24515", - "libelleAcheminement": "SALAGNAC", - "nomCommune": "SALAGNAC" + "codePostal": "21320", + "codeCommune": "21570", + "libelleAcheminement": "STE SABINE", + "nomCommune": "STE SABINE" }, { - "codePostal": "25680", - "codeCommune": "25570", - "libelleAcheminement": "TRESSANDANS", - "nomCommune": "TRESSANDANS" + "codePostal": "31660", + "codeCommune": "31094", + "libelleAcheminement": "BUZET SUR TARN", + "nomCommune": "BUZET SUR TARN" }, { - "codePostal": "62217", - "codeCommune": "62611", - "libelleAcheminement": "NEUVILLE VITASSE", - "nomCommune": "NEUVILLE VITASSE" + "codePostal": "31190", + "codeCommune": "31027", + "libelleAcheminement": "AURIBAIL", + "nomCommune": "AURIBAIL" }, { - "codePostal": "58500", - "codeCommune": "58079", - "libelleAcheminement": "CLAMECY", - "nomCommune": "CLAMECY" + "codePostal": "19230", + "codeCommune": "19254", + "libelleAcheminement": "SEGUR LE CHATEAU", + "nomCommune": "SEGUR LE CHATEAU" }, { - "codePostal": "24160", - "codeCommune": "24515", - "libelleAcheminement": "SALAGNAC", - "nomCommune": "SALAGNAC" + "codePostal": "21130", + "codeCommune": "21572", + "libelleAcheminement": "ST SEINE EN BACHE", + "nomCommune": "ST SEINE EN BACHE" }, { - "codePostal": "25190", - "codeCommune": "25583", - "libelleAcheminement": "VALONNE", - "nomCommune": "VALONNE" + "codePostal": "31350", + "codeCommune": "31108", + "libelleAcheminement": "CARDEILHAC", + "nomCommune": "CARDEILHAC" }, { - "codePostal": "62580", - "codeCommune": "62612", - "libelleAcheminement": "NEUVIREUIL", - "nomCommune": "NEUVIREUIL" + "codePostal": "31570", + "codeCommune": "31029", + "libelleAcheminement": "AURIN", + "nomCommune": "AURIN" }, { - "codePostal": "58800", - "codeCommune": "58083", - "libelleAcheminement": "CORBIGNY", - "nomCommune": "CORBIGNY" + "codePostal": "19700", + "codeCommune": "19255", + "libelleAcheminement": "SEILHAC", + "nomCommune": "SEILHAC" }, { - "codePostal": "24500", - "codeCommune": "24532", - "libelleAcheminement": "SERRES ET MONTGUYARD", - "nomCommune": "SERRES ET MONTGUYARD" + "codePostal": "21170", + "codeCommune": "21581", + "libelleAcheminement": "SAMEREY", + "nomCommune": "SAMEREY" }, { - "codePostal": "25380", - "codeCommune": "25589", - "libelleAcheminement": "VAUCLUSOTTE", - "nomCommune": "VAUCLUSOTTE" + "codePostal": "31230", + "codeCommune": "31115", + "libelleAcheminement": "CASTELGAILLARD", + "nomCommune": "CASTELGAILLARD" }, { - "codePostal": "62390", - "codeCommune": "62616", - "libelleAcheminement": "NOEUX LES AUXI", - "nomCommune": "NOEUX LES AUXI" + "codePostal": "31190", + "codeCommune": "31033", + "libelleAcheminement": "AUTERIVE", + "nomCommune": "AUTERIVE" }, { - "codePostal": "58300", - "codeCommune": "58095", - "libelleAcheminement": "DECIZE", - "nomCommune": "DECIZE" + "codePostal": "19190", + "codeCommune": "19257", + "libelleAcheminement": "SERILHAC", + "nomCommune": "SERILHAC" }, { - "codePostal": "24600", - "codeCommune": "24537", - "libelleAcheminement": "SIORAC DE RIBERAC", - "nomCommune": "SIORAC DE RIBERAC" + "codePostal": "21910", + "codeCommune": "21586", + "libelleAcheminement": "SAULON LA RUE", + "nomCommune": "SAULON LA RUE" }, { - "codePostal": "25190", - "codeCommune": "25591", - "libelleAcheminement": "VAUFREY", - "nomCommune": "VAUFREY" + "codePostal": "31480", + "codeCommune": "31126", + "libelleAcheminement": "CAUBIAC", + "nomCommune": "CAUBIAC" }, { - "codePostal": "62120", - "codeCommune": "62620", - "libelleAcheminement": "NORRENT FONTES", - "nomCommune": "NORRENT FONTES" + "codePostal": "31320", + "codeCommune": "31035", + "libelleAcheminement": "AUZEVILLE TOLOSANE", + "nomCommune": "AUZEVILLE TOLOSANE" }, { - "codePostal": "58190", - "codeCommune": "58098", - "libelleAcheminement": "DIROL", - "nomCommune": "DIROL" + "codePostal": "19260", + "codeCommune": "19269", + "libelleAcheminement": "TREIGNAC", + "nomCommune": "TREIGNAC" }, { - "codePostal": "24390", - "codeCommune": "24546", - "libelleAcheminement": "TEMPLE LAGUYON", - "nomCommune": "TEMPLE LAGUYON" + "codePostal": "21120", + "codeCommune": "21587", + "libelleAcheminement": "SAULX LE DUC", + "nomCommune": "SAULX LE DUC" }, { - "codePostal": "25530", - "codeCommune": "25596", - "libelleAcheminement": "VELLEROT LES VERCEL", - "nomCommune": "VELLEROT LES VERCEL" + "codePostal": "31440", + "codeCommune": "31132", + "libelleAcheminement": "CAZAUX LAYRISSE", + "nomCommune": "CAZAUX LAYRISSE" }, { - "codePostal": "62890", - "codeCommune": "62622", - "libelleAcheminement": "NORT LEULINGHEM", - "nomCommune": "NORT LEULINGHEM" + "codePostal": "31440", + "codeCommune": "31040", + "libelleAcheminement": "BACHOS", + "nomCommune": "BACHOS" }, { - "codePostal": "58800", - "codeCommune": "58110", - "libelleAcheminement": "EPIRY", - "nomCommune": "EPIRY" + "codePostal": "19200", + "codeCommune": "19275", + "libelleAcheminement": "USSEL", + "nomCommune": "USSEL" }, { - "codePostal": "24120", - "codeCommune": "24547", - "libelleAcheminement": "TERRASSON LAVILLEDIEU", - "nomCommune": "TERRASSON LAVILLEDIEU" + "codePostal": "21380", + "codeCommune": "21591", + "libelleAcheminement": "SAVIGNY LE SEC", + "nomCommune": "SAVIGNY LE SEC" }, { - "codePostal": "25640", - "codeCommune": "25599", - "libelleAcheminement": "VENNANS", - "nomCommune": "VENNANS" + "codePostal": "31510", + "codeCommune": "31143", + "libelleAcheminement": "CIER DE RIVIERE", + "nomCommune": "CIER DE RIVIERE" }, { - "codePostal": "62770", - "codeCommune": "62625", - "libelleAcheminement": "NOYELLES LES HUMIERES", - "nomCommune": "NOYELLES LES HUMIERES" + "codePostal": "31580", + "codeCommune": "31043", + "libelleAcheminement": "BALESTA", + "nomCommune": "BALESTA" }, { - "codePostal": "58160", - "codeCommune": "58112", - "libelleAcheminement": "LA FERMETE", - "nomCommune": "LA FERMETE" + "codePostal": "19800", + "codeCommune": "19287", + "libelleAcheminement": "VITRAC SUR MONTANE", + "nomCommune": "VITRAC SUR MONTANE" }, { - "codePostal": "24480", - "codeCommune": "24560", - "libelleAcheminement": "URVAL", - "nomCommune": "URVAL" + "codePostal": "21430", + "codeCommune": "21593", + "libelleAcheminement": "SAVILLY", + "nomCommune": "SAVILLY" }, { - "codePostal": "25530", - "codeCommune": "25601", - "libelleAcheminement": "VERCEL VILLEDIEU LE CAMP", - "nomCommune": "VERCEL VILLEDIEU LE CAMP" + "codePostal": "31440", + "codeCommune": "31144", + "libelleAcheminement": "CIERP GAUD", + "nomCommune": "CIERP GAUD" }, { - "codePostal": "62270", - "codeCommune": "62631", - "libelleAcheminement": "NUNCQ HAUTECOTE", - "nomCommune": "NUNCQ HAUTECOTE" + "codePostal": "31370", + "codeCommune": "31051", + "libelleAcheminement": "BEAUFORT", + "nomCommune": "BEAUFORT" }, { - "codePostal": "58240", - "codeCommune": "58115", - "libelleAcheminement": "FLEURY SUR LOIRE", - "nomCommune": "FLEURY SUR LOIRE" + "codePostal": "21410", + "codeCommune": "21002", + "libelleAcheminement": "AGEY", + "nomCommune": "AGEY" }, { - "codePostal": "24360", - "codeCommune": "24565", - "libelleAcheminement": "VARAIGNES", - "nomCommune": "VARAIGNES" + "codePostal": "21310", + "codeCommune": "21595", + "libelleAcheminement": "SAVOLLES", + "nomCommune": "SAVOLLES" }, { - "codePostal": "25110", - "codeCommune": "25602", - "libelleAcheminement": "VERGRANNE", - "nomCommune": "VERGRANNE" + "codePostal": "31210", + "codeCommune": "31147", + "libelleAcheminement": "CLARAC", + "nomCommune": "CLARAC" }, { - "codePostal": "62370", - "codeCommune": "62634", - "libelleAcheminement": "OFFEKERQUE", - "nomCommune": "OFFEKERQUE" + "codePostal": "31870", + "codeCommune": "31052", + "libelleAcheminement": "BEAUMONT SUR LEZE", + "nomCommune": "BEAUMONT SUR LEZE" }, { - "codePostal": "58320", - "codeCommune": "58124", - "libelleAcheminement": "GERMIGNY SUR LOIRE", - "nomCommune": "GERMIGNY SUR LOIRE" + "codePostal": "21110", + "codeCommune": "21005", + "libelleAcheminement": "AISEREY", + "nomCommune": "AISEREY" }, { - "codePostal": "24520", - "codeCommune": "24570", - "libelleAcheminement": "VERDON", - "nomCommune": "VERDON" + "codePostal": "21110", + "codeCommune": "21609", + "libelleAcheminement": "SOIRANS", + "nomCommune": "SOIRANS" }, { - "codePostal": "25110", - "codeCommune": "25604", - "libelleAcheminement": "VERNE", - "nomCommune": "VERNE" + "codePostal": "31450", + "codeCommune": "31151", + "libelleAcheminement": "CORRONSAC", + "nomCommune": "CORRONSAC" }, { - "codePostal": "62860", - "codeCommune": "62638", - "libelleAcheminement": "OISY LE VERGER", - "nomCommune": "OISY LE VERGER" + "codePostal": "31260", + "codeCommune": "31059", + "libelleAcheminement": "BELBEZE EN COMMINGES", + "nomCommune": "BELBEZE EN COMMINGES" }, { - "codePostal": "58700", - "codeCommune": "58127", - "libelleAcheminement": "GIRY", - "nomCommune": "GIRY" + "codePostal": "21400", + "codeCommune": "21006", + "libelleAcheminement": "AISEY SUR SEINE", + "nomCommune": "AISEY SUR SEINE" }, { - "codePostal": "24140", - "codeCommune": "24581", - "libelleAcheminement": "VILLAMBLARD", - "nomCommune": "VILLAMBLARD" + "codePostal": "21350", + "codeCommune": "21613", + "libelleAcheminement": "SOUSSEY SUR BRIONNE", + "nomCommune": "SOUSSEY SUR BRIONNE" }, { - "codePostal": "25580", - "codeCommune": "25605", - "libelleAcheminement": "VERNIERFONTAINE", - "nomCommune": "VERNIERFONTAINE" + "codePostal": "31480", + "codeCommune": "31156", + "libelleAcheminement": "COX", + "nomCommune": "COX" }, { - "codePostal": "62460", - "codeCommune": "62642", - "libelleAcheminement": "OURTON", - "nomCommune": "OURTON" + "codePostal": "31540", + "codeCommune": "31060", + "libelleAcheminement": "BELESTA EN LAURAGAIS", + "nomCommune": "BELESTA EN LAURAGAIS" }, { - "codePostal": "58420", - "codeCommune": "58132", - "libelleAcheminement": "GUIPY", - "nomCommune": "GUIPY" + "codePostal": "21390", + "codeCommune": "21007", + "libelleAcheminement": "AISY SOUS THIL", + "nomCommune": "AISY SOUS THIL" }, { - "codePostal": "24610", - "codeCommune": "24584", - "libelleAcheminement": "VILLEFRANCHE DE LONCHAT", - "nomCommune": "VILLEFRANCHE DE LONCHAT" + "codePostal": "21430", + "codeCommune": "21615", + "libelleAcheminement": "SUSSEY", + "nomCommune": "SUSSEY" }, { - "codePostal": "25430", - "codeCommune": "25607", - "libelleAcheminement": "VERNOIS LES BELVOIR", - "nomCommune": "VERNOIS LES BELVOIR" + "codePostal": "31210", + "codeCommune": "31159", + "libelleAcheminement": "LE CUING", + "nomCommune": "LE CUING" }, { - "codePostal": "62118", - "codeCommune": "62650", - "libelleAcheminement": "PELVES", - "nomCommune": "PELVES" + "codePostal": "31660", + "codeCommune": "31066", + "libelleAcheminement": "BESSIERES", + "nomCommune": "BESSIERES" }, { - "codePostal": "58160", - "codeCommune": "58134", - "libelleAcheminement": "IMPHY", - "nomCommune": "IMPHY" + "codePostal": "21150", + "codeCommune": "21008", + "libelleAcheminement": "ALISE STE REINE", + "nomCommune": "ALISE STE REINE" }, { - "codePostal": "24600", - "codeCommune": "24586", - "libelleAcheminement": "VILLETOUREIX", - "nomCommune": "VILLETOUREIX" + "codePostal": "21190", + "codeCommune": "21616", + "libelleAcheminement": "TAILLY", + "nomCommune": "TAILLY" }, { - "codePostal": "25870", - "codeCommune": "25612", - "libelleAcheminement": "VIEILLEY", - "nomCommune": "VIEILLEY" + "codePostal": "31450", + "codeCommune": "31161", + "libelleAcheminement": "DEYME", + "nomCommune": "DEYME" }, { - "codePostal": "62231", - "codeCommune": "62654", - "libelleAcheminement": "PEUPLINGUES", - "nomCommune": "PEUPLINGUES" + "codePostal": "31440", + "codeCommune": "31067", + "libelleAcheminement": "BEZINS GARRAUX", + "nomCommune": "BEZINS GARRAUX" }, { - "codePostal": "58290", - "codeCommune": "58135", - "libelleAcheminement": "ISENAY", - "nomCommune": "ISENAY" + "codePostal": "21400", + "codeCommune": "21012", + "libelleAcheminement": "AMPILLY LE SEC", + "nomCommune": "AMPILLY LE SEC" }, { - "codePostal": "25340", - "codeCommune": "25003", - "libelleAcheminement": "ABBENANS", - "nomCommune": "ABBENANS" + "codePostal": "21270", + "codeCommune": "21624", + "libelleAcheminement": "TELLECEY", + "nomCommune": "TELLECEY" }, { - "codePostal": "25600", - "codeCommune": "25614", - "libelleAcheminement": "VIEUX CHARMONT", - "nomCommune": "VIEUX CHARMONT" + "codePostal": "31450", + "codeCommune": "31162", + "libelleAcheminement": "DONNEVILLE", + "nomCommune": "DONNEVILLE" }, { - "codePostal": "62126", - "codeCommune": "62658", - "libelleAcheminement": "PITTEFAUX", - "nomCommune": "PITTEFAUX" + "codePostal": "31700", + "codeCommune": "31069", + "libelleAcheminement": "BLAGNAC", + "nomCommune": "BLAGNAC" }, { - "codePostal": "58250", - "codeCommune": "58139", - "libelleAcheminement": "LANTY", - "nomCommune": "LANTY" + "codePostal": "21410", + "codeCommune": "21013", + "libelleAcheminement": "ANCEY", + "nomCommune": "ANCEY" }, { - "codePostal": "25310", - "codeCommune": "25004", - "libelleAcheminement": "ABBEVILLERS", - "nomCommune": "ABBEVILLERS" + "codePostal": "21220", + "codeCommune": "21625", + "libelleAcheminement": "TERNANT", + "nomCommune": "TERNANT" }, { - "codePostal": "50250", - "codeCommune": "50236", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "31480", + "codeCommune": "31164", + "libelleAcheminement": "DRUDAS", + "nomCommune": "DRUDAS" }, { - "codePostal": "62760", - "codeCommune": "62663", - "libelleAcheminement": "POMMERA", - "nomCommune": "POMMERA" + "codePostal": "31350", + "codeCommune": "31070", + "libelleAcheminement": "BLAJAN", + "nomCommune": "BLAJAN" }, { - "codePostal": "58380", - "codeCommune": "58146", - "libelleAcheminement": "LUCENAY LES AIX", - "nomCommune": "LUCENAY LES AIX" + "codePostal": "21320", + "codeCommune": "21020", + "libelleAcheminement": "ARCONCEY", + "nomCommune": "ARCONCEY" }, { - "codePostal": "25550", - "codeCommune": "25013", - "libelleAcheminement": "ALLONDANS", - "nomCommune": "ALLONDANS" + "codePostal": "21570", + "codeCommune": "21628", + "libelleAcheminement": "THOIRES", + "nomCommune": "THOIRES" }, { - "codePostal": "50250", - "codeCommune": "50236", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "31600", + "codeCommune": "31165", + "libelleAcheminement": "EAUNES", + "nomCommune": "EAUNES" }, { - "codePostal": "62880", - "codeCommune": "62666", - "libelleAcheminement": "PONT A VENDIN", - "nomCommune": "PONT A VENDIN" + "codePostal": "31110", + "codeCommune": "31081", + "libelleAcheminement": "BOURG D OUEIL", + "nomCommune": "BOURG D OUEIL" }, { - "codePostal": "58800", - "codeCommune": "58153", - "libelleAcheminement": "MAGNY LORMES", - "nomCommune": "MAGNY LORMES" + "codePostal": "21130", + "codeCommune": "21028", + "libelleAcheminement": "ATHEE", + "nomCommune": "ATHEE" }, { - "codePostal": "25330", - "codeCommune": "25017", - "libelleAcheminement": "AMONDANS", - "nomCommune": "AMONDANS" + "codePostal": "21340", + "codeCommune": "21636", + "libelleAcheminement": "THURY", + "nomCommune": "THURY" }, { - "codePostal": "50250", - "codeCommune": "50236", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "31800", + "codeCommune": "31175", + "libelleAcheminement": "ESTANCARBON", + "nomCommune": "ESTANCARBON" }, { - "codePostal": "62860", - "codeCommune": "62671", - "libelleAcheminement": "PRONVILLE EN ARTOIS", - "nomCommune": "PRONVILLE EN ARTOIS" + "codePostal": "31470", + "codeCommune": "31087", + "libelleAcheminement": "BRAGAYRAC", + "nomCommune": "BRAGAYRAC" }, { - "codePostal": "58240", - "codeCommune": "58158", - "libelleAcheminement": "MARS SUR ALLIER", - "nomCommune": "MARS SUR ALLIER" + "codePostal": "21570", + "codeCommune": "21034", + "libelleAcheminement": "AUTRICOURT", + "nomCommune": "AUTRICOURT" }, { - "codePostal": "25340", - "codeCommune": "25018", - "libelleAcheminement": "ANTEUIL", - "nomCommune": "ANTEUIL" + "codePostal": "21130", + "codeCommune": "21639", + "libelleAcheminement": "TILLENAY", + "nomCommune": "TILLENAY" }, { - "codePostal": "50570", - "codeCommune": "50239", - "libelleAcheminement": "THEREVAL", - "nomCommune": "THEREVAL" + "codePostal": "31260", + "codeCommune": "31195", + "libelleAcheminement": "FRANCAZAL", + "nomCommune": "FRANCAZAL" }, { - "codePostal": "62116", - "codeCommune": "62672", - "libelleAcheminement": "PUISIEUX", - "nomCommune": "PUISIEUX" + "codePostal": "31530", + "codeCommune": "31089", + "libelleAcheminement": "BRETX", + "nomCommune": "BRETX" }, { - "codePostal": "58800", - "codeCommune": "58179", - "libelleAcheminement": "MONTREUILLON", - "nomCommune": "MONTREUILLON" + "codePostal": "21250", + "codeCommune": "21035", + "libelleAcheminement": "AUVILLARS SUR SAONE", + "nomCommune": "AUVILLARS SUR SAONE" }, { - "codePostal": "25170", - "codeCommune": "25030", - "libelleAcheminement": "AUDEUX", - "nomCommune": "AUDEUX" + "codePostal": "21440", + "codeCommune": "21646", + "libelleAcheminement": "TROUHAUT", + "nomCommune": "TROUHAUT" }, { - "codePostal": "50540", - "codeCommune": "50256", - "libelleAcheminement": "ISIGNY LE BUAT", - "nomCommune": "ISIGNY LE BUAT" + "codePostal": "31150", + "codeCommune": "31205", + "libelleAcheminement": "GAGNAC SUR GARONNE", + "nomCommune": "GAGNAC SUR GARONNE" }, { - "codePostal": "62310", - "codeCommune": "62685", - "libelleAcheminement": "RADINGHEM", - "nomCommune": "RADINGHEM" + "codePostal": "31480", + "codeCommune": "31098", + "libelleAcheminement": "CADOURS", + "nomCommune": "CADOURS" }, { - "codePostal": "58350", - "codeCommune": "58188", - "libelleAcheminement": "NANNAY", - "nomCommune": "NANNAY" + "codePostal": "21190", + "codeCommune": "21037", + "libelleAcheminement": "AUXEY DURESSES", + "nomCommune": "AUXEY DURESSES" }, { - "codePostal": "25870", - "codeCommune": "25035", - "libelleAcheminement": "LES AUXONS", - "nomCommune": "LES AUXONS" + "codePostal": "21220", + "codeCommune": "21650", + "libelleAcheminement": "URCY", + "nomCommune": "URCY" }, { - "codePostal": "50310", - "codeCommune": "50258", - "libelleAcheminement": "JOGANVILLE", - "nomCommune": "JOGANVILLE" + "codePostal": "31160", + "codeCommune": "31208", + "libelleAcheminement": "GANTIES", + "nomCommune": "GANTIES" }, { - "codePostal": "62270", - "codeCommune": "62695", - "libelleAcheminement": "REBREUVIETTE", - "nomCommune": "REBREUVIETTE" + "codePostal": "31310", + "codeCommune": "31103", + "libelleAcheminement": "CANENS", + "nomCommune": "CANENS" }, { - "codePostal": "58400", - "codeCommune": "58189", - "libelleAcheminement": "NARCY", - "nomCommune": "NARCY" + "codePostal": "21350", + "codeCommune": "21040", + "libelleAcheminement": "AVOSNES", + "nomCommune": "AVOSNES" }, { - "codePostal": "25690", - "codeCommune": "25039", - "libelleAcheminement": "AVOUDREY", - "nomCommune": "AVOUDREY" + "codePostal": "21400", + "codeCommune": "21653", + "libelleAcheminement": "VANNAIRE", + "nomCommune": "VANNAIRE" }, { - "codePostal": "50520", - "codeCommune": "50260", - "libelleAcheminement": "JUVIGNY LES VALLEES", - "nomCommune": "JUVIGNY LES VALLEES" + "codePostal": "31330", + "codeCommune": "31232", + "libelleAcheminement": "GRENADE", + "nomCommune": "GRENADE" }, { - "codePostal": "62860", - "codeCommune": "62697", - "libelleAcheminement": "RECOURT", - "nomCommune": "RECOURT" + "codePostal": "31460", + "codeCommune": "31106", + "libelleAcheminement": "CARAMAN", + "nomCommune": "CARAMAN" }, { - "codePostal": "58450", - "codeCommune": "58193", - "libelleAcheminement": "NEUVY SUR LOIRE", - "nomCommune": "NEUVY SUR LOIRE" + "codePostal": "21700", + "codeCommune": "21042", + "libelleAcheminement": "BAGNOT", + "nomCommune": "BAGNOT" }, { - "codePostal": "25490", - "codeCommune": "25040", - "libelleAcheminement": "BADEVEL", - "nomCommune": "BADEVEL" + "codePostal": "21400", + "codeCommune": "21655", + "libelleAcheminement": "VANVEY", + "nomCommune": "VANVEY" }, { - "codePostal": "50520", - "codeCommune": "50260", - "libelleAcheminement": "JUVIGNY LES VALLEES", - "nomCommune": "JUVIGNY LES VALLEES" + "codePostal": "31260", + "codeCommune": "31237", + "libelleAcheminement": "HIS", + "nomCommune": "HIS" }, { - "codePostal": "62140", - "codeCommune": "62700", - "libelleAcheminement": "REGNAUVILLE", - "nomCommune": "REGNAUVILLE" + "codePostal": "31420", + "codeCommune": "31109", + "libelleAcheminement": "CASSAGNABERE TOURNAS", + "nomCommune": "CASSAGNABERE TOURNAS" }, { - "codePostal": "58130", - "codeCommune": "58204", - "libelleAcheminement": "VAUX D AMOGNES", - "nomCommune": "VAUX D AMOGNES" + "codePostal": "21430", + "codeCommune": "21046", + "libelleAcheminement": "BARD LE REGULIER", + "nomCommune": "BARD LE REGULIER" }, { - "codePostal": "25560", - "codeCommune": "25041", - "libelleAcheminement": "BANNANS", - "nomCommune": "BANNANS" + "codePostal": "21370", + "codeCommune": "21661", + "libelleAcheminement": "VELARS SUR OUCHE", + "nomCommune": "VELARS SUR OUCHE" }, { - "codePostal": "50520", - "codeCommune": "50260", - "libelleAcheminement": "JUVIGNY LES VALLEES", - "nomCommune": "JUVIGNY LES VALLEES" + "codePostal": "31450", + "codeCommune": "31240", + "libelleAcheminement": "ISSUS", + "nomCommune": "ISSUS" }, { - "codePostal": "62450", - "codeCommune": "62708", - "libelleAcheminement": "RIENCOURT LES BAPAUME", - "nomCommune": "RIENCOURT LES BAPAUME" + "codePostal": "31320", + "codeCommune": "31113", + "libelleAcheminement": "CASTANET TOLOSAN", + "nomCommune": "CASTANET TOLOSAN" }, { - "codePostal": "58500", - "codeCommune": "58217", - "libelleAcheminement": "POUSSEAUX", - "nomCommune": "POUSSEAUX" + "codePostal": "21580", + "codeCommune": "21049", + "libelleAcheminement": "BARJON", + "nomCommune": "BARJON" }, { - "codePostal": "25210", - "codeCommune": "25042", - "libelleAcheminement": "LE BARBOUX", - "nomCommune": "LE BARBOUX" + "codePostal": "21390", + "codeCommune": "21678", + "libelleAcheminement": "VIC SOUS THIL", + "nomCommune": "VIC SOUS THIL" }, { - "codePostal": "50600", - "codeCommune": "50263", - "libelleAcheminement": "LAPENTY", - "nomCommune": "LAPENTY" + "codePostal": "31190", + "codeCommune": "31256", + "libelleAcheminement": "LABRUYERE DORSA", + "nomCommune": "LABRUYERE DORSA" }, { - "codePostal": "62350", - "codeCommune": "62713", - "libelleAcheminement": "ROBECQ", - "nomCommune": "ROBECQ" + "codePostal": "31160", + "codeCommune": "31114", + "libelleAcheminement": "CASTELBIAGUE", + "nomCommune": "CASTELBIAGUE" }, { - "codePostal": "58360", - "codeCommune": "58219", - "libelleAcheminement": "PREPORCHE", - "nomCommune": "PREPORCHE" + "codePostal": "21510", + "codeCommune": "21055", + "libelleAcheminement": "BEAUNOTTE", + "nomCommune": "BEAUNOTTE" }, { - "codePostal": "25440", - "codeCommune": "25044", - "libelleAcheminement": "BARTHERANS", - "nomCommune": "BARTHERANS" + "codePostal": "21270", + "codeCommune": "21680", + "libelleAcheminement": "VIELVERGE", + "nomCommune": "VIELVERGE" }, { - "codePostal": "50700", - "codeCommune": "50270", - "libelleAcheminement": "LIEUSAINT", - "nomCommune": "LIEUSAINT" + "codePostal": "31480", + "codeCommune": "31265", + "libelleAcheminement": "LAGRAULET ST NICOLAS", + "nomCommune": "LAGRAULET ST NICOLAS" }, { - "codePostal": "62610", - "codeCommune": "62716", - "libelleAcheminement": "RODELINGHEM", - "nomCommune": "RODELINGHEM" + "codePostal": "31350", + "codeCommune": "31121", + "libelleAcheminement": "CASTERA VIGNOLES", + "nomCommune": "CASTERA VIGNOLES" }, { - "codePostal": "58400", - "codeCommune": "58220", - "libelleAcheminement": "RAVEAU", - "nomCommune": "RAVEAU" + "codePostal": "21110", + "codeCommune": "21057", + "libelleAcheminement": "BEIRE LE FORT", + "nomCommune": "BEIRE LE FORT" }, { - "codePostal": "25640", - "codeCommune": "25045", - "libelleAcheminement": "BATTENANS LES MINES", - "nomCommune": "BATTENANS LES MINES" + "codePostal": "21700", + "codeCommune": "21688", + "libelleAcheminement": "VILLARS FONTAINE", + "nomCommune": "VILLARS FONTAINE" }, { - "codePostal": "50670", - "codeCommune": "50271", - "libelleAcheminement": "LINGEARD", - "nomCommune": "LINGEARD" + "codePostal": "31180", + "codeCommune": "31273", + "libelleAcheminement": "LAPEYROUSE FOSSAT", + "nomCommune": "LAPEYROUSE FOSSAT" }, { - "codePostal": "62770", - "codeCommune": "62719", - "libelleAcheminement": "ROLLANCOURT", - "nomCommune": "ROLLANCOURT" + "codePostal": "31580", + "codeCommune": "31130", + "libelleAcheminement": "CAZARIL TAMBOURES", + "nomCommune": "CAZARIL TAMBOURES" }, { - "codePostal": "58190", - "codeCommune": "58224", - "libelleAcheminement": "RUAGES", - "nomCommune": "RUAGES" + "codePostal": "21320", + "codeCommune": "21068", + "libelleAcheminement": "BEUREY BAUGUAY", + "nomCommune": "BEUREY BAUGUAY" }, { - "codePostal": "25110", - "codeCommune": "25047", - "libelleAcheminement": "BAUME LES DAMES", - "nomCommune": "BAUME LES DAMES" + "codePostal": "21140", + "codeCommune": "21689", + "libelleAcheminement": "VILLARS ET VILLENOTTE", + "nomCommune": "VILLARS ET VILLENOTTE" }, { - "codePostal": "50250", - "codeCommune": "50273", - "libelleAcheminement": "MONTSENELLE", - "nomCommune": "MONTSENELLE" + "codePostal": "31800", + "codeCommune": "31274", + "libelleAcheminement": "LARCAN", + "nomCommune": "LARCAN" }, { - "codePostal": "62120", - "codeCommune": "62720", - "libelleAcheminement": "ROMBLY", - "nomCommune": "ROMBLY" + "codePostal": "31160", + "codeCommune": "31131", + "libelleAcheminement": "CAZAUNOUS", + "nomCommune": "CAZAUNOUS" }, { - "codePostal": "58230", - "codeCommune": "58226", - "libelleAcheminement": "ST AGNAN", - "nomCommune": "ST AGNAN" + "codePostal": "21520", + "codeCommune": "21077", + "libelleAcheminement": "BISSEY LA COTE", + "nomCommune": "BISSEY LA COTE" }, { - "codePostal": "25470", - "codeCommune": "25049", - "libelleAcheminement": "BELFAYS", - "nomCommune": "BELFAYS" + "codePostal": "21120", + "codeCommune": "21692", + "libelleAcheminement": "VILLECOMTE", + "nomCommune": "VILLECOMTE" }, { - "codePostal": "50600", - "codeCommune": "50274", - "libelleAcheminement": "LES LOGES MARCHIS", - "nomCommune": "LES LOGES MARCHIS" + "codePostal": "31310", + "codeCommune": "31279", + "libelleAcheminement": "LATOUR", + "nomCommune": "LATOUR" }, { - "codePostal": "62620", - "codeCommune": "62727", - "libelleAcheminement": "RUITZ", - "nomCommune": "RUITZ" + "codePostal": "31620", + "codeCommune": "31136", + "libelleAcheminement": "CEPET", + "nomCommune": "CEPET" }, { - "codePostal": "58140", - "codeCommune": "58229", - "libelleAcheminement": "ST ANDRE EN MORVAN", - "nomCommune": "ST ANDRE EN MORVAN" + "codePostal": "21310", + "codeCommune": "21079", + "libelleAcheminement": "BLAGNY SUR VINGEANNE", + "nomCommune": "BLAGNY SUR VINGEANNE" }, { - "codePostal": "25530", - "codeCommune": "25052", - "libelleAcheminement": "BELMONT", - "nomCommune": "BELMONT" + "codePostal": "21450", + "codeCommune": "21695", + "libelleAcheminement": "LA VILLENEUVE LES CONVERS", + "nomCommune": "LA VILLENEUVE LES CONVERS" }, { - "codePostal": "50410", - "codeCommune": "50295", - "libelleAcheminement": "MAUPERTUIS", - "nomCommune": "MAUPERTUIS" + "codePostal": "31590", + "codeCommune": "31285", + "libelleAcheminement": "LAVALETTE", + "nomCommune": "LAVALETTE" }, { - "codePostal": "62550", - "codeCommune": "62740", - "libelleAcheminement": "SAINS LES PERNES", - "nomCommune": "SAINS LES PERNES" + "codePostal": "31350", + "codeCommune": "31138", + "libelleAcheminement": "CHARLAS", + "nomCommune": "CHARLAS" }, { - "codePostal": "58330", - "codeCommune": "58233", - "libelleAcheminement": "ST BENIN DES BOIS", - "nomCommune": "ST BENIN DES BOIS" + "codePostal": "21430", + "codeCommune": "21083", + "libelleAcheminement": "BLANOT", + "nomCommune": "BLANOT" }, { - "codePostal": "25210", - "codeCommune": "25062", - "libelleAcheminement": "LE BIZOT", - "nomCommune": "LE BIZOT" + "codePostal": "21140", + "codeCommune": "21696", + "libelleAcheminement": "VILLENEUVE SOUS CHARIGNY", + "nomCommune": "VILLENEUVE SOUS CHARIGNY" }, { - "codePostal": "50880", - "codeCommune": "50297", - "libelleAcheminement": "LA MEAUFFE", - "nomCommune": "LA MEAUFFE" + "codePostal": "31410", + "codeCommune": "31287", + "libelleAcheminement": "LAVERNOSE LACASSE", + "nomCommune": "LAVERNOSE LACASSE" }, { - "codePostal": "62350", - "codeCommune": "62747", - "libelleAcheminement": "ST FLORIS", - "nomCommune": "ST FLORIS" + "codePostal": "31350", + "codeCommune": "31141", + "libelleAcheminement": "CIADOUX", + "nomCommune": "CIADOUX" }, { - "codePostal": "58190", - "codeCommune": "58237", - "libelleAcheminement": "ST DIDIER", - "nomCommune": "ST DIDIER" + "codePostal": "21700", + "codeCommune": "21088", + "libelleAcheminement": "BONCOURT LE BOIS", + "nomCommune": "BONCOURT LE BOIS" }, { - "codePostal": "25310", - "codeCommune": "25063", - "libelleAcheminement": "BLAMONT", - "nomCommune": "BLAMONT" + "codePostal": "21120", + "codeCommune": "21702", + "libelleAcheminement": "VILLEY SUR TILLE", + "nomCommune": "VILLEY SUR TILLE" }, { - "codePostal": "50570", - "codeCommune": "50302", - "libelleAcheminement": "LE MESNIL AMEY", - "nomCommune": "LE MESNIL AMEY" + "codePostal": "31530", + "codeCommune": "31297", + "libelleAcheminement": "LEVIGNAC", + "nomCommune": "LEVIGNAC" }, { - "codePostal": "62250", - "codeCommune": "62751", - "libelleAcheminement": "ST INGLEVERT", - "nomCommune": "ST INGLEVERT" + "codePostal": "31750", + "codeCommune": "31169", + "libelleAcheminement": "ESCALQUENS", + "nomCommune": "ESCALQUENS" }, { - "codePostal": "58000", - "codeCommune": "58238", - "libelleAcheminement": "ST ELOI", - "nomCommune": "ST ELOI" + "codePostal": "21420", + "codeCommune": "21092", + "libelleAcheminement": "BOUILLAND", + "nomCommune": "BOUILLAND" }, { - "codePostal": "25320", - "codeCommune": "25084", - "libelleAcheminement": "BOUSSIERES", - "nomCommune": "BOUSSIERES" + "codePostal": "21690", + "codeCommune": "21705", + "libelleAcheminement": "VILLOTTE ST SEINE", + "nomCommune": "VILLOTTE ST SEINE" }, { - "codePostal": "50570", - "codeCommune": "50310", - "libelleAcheminement": "LE MESNIL EURY", - "nomCommune": "LE MESNIL EURY" + "codePostal": "31510", + "codeCommune": "31308", + "libelleAcheminement": "LUSCAN", + "nomCommune": "LUSCAN" }, { - "codePostal": "62170", - "codeCommune": "62752", - "libelleAcheminement": "ST JOSSE", - "nomCommune": "ST JOSSE" + "codePostal": "31260", + "codeCommune": "31183", + "libelleAcheminement": "FIGAROL", + "nomCommune": "FIGAROL" }, { - "codePostal": "58300", - "codeCommune": "58241", - "libelleAcheminement": "ST GERMAIN CHASSENAY", - "nomCommune": "ST GERMAIN CHASSENAY" + "codePostal": "21470", + "codeCommune": "21103", + "libelleAcheminement": "BRAZEY EN PLAINE", + "nomCommune": "BRAZEY EN PLAINE" }, { - "codePostal": "25110", - "codeCommune": "25094", - "libelleAcheminement": "BRETIGNEY NOTRE DAME", - "nomCommune": "BRETIGNEY NOTRE DAME" + "codePostal": "21500", + "codeCommune": "21709", + "libelleAcheminement": "VISERNY", + "nomCommune": "VISERNY" }, { - "codePostal": "50670", - "codeCommune": "50312", - "libelleAcheminement": "LE MESNIL GILBERT", - "nomCommune": "LE MESNIL GILBERT" + "codePostal": "31430", + "codeCommune": "31309", + "libelleAcheminement": "LUSSAN ADEILHAC", + "nomCommune": "LUSSAN ADEILHAC" }, { - "codePostal": "62280", - "codeCommune": "62758", - "libelleAcheminement": "ST MARTIN BOULOGNE", - "nomCommune": "ST MARTIN BOULOGNE" + "codePostal": "31140", + "codeCommune": "31186", + "libelleAcheminement": "FONBEAUZARD", + "nomCommune": "FONBEAUZARD" }, { - "codePostal": "58150", - "codeCommune": "58248", - "libelleAcheminement": "ST LAURENT L ABBAYE", - "nomCommune": "ST LAURENT L ABBAYE" + "codePostal": "21110", + "codeCommune": "21106", + "libelleAcheminement": "BRETENIERE", + "nomCommune": "BRETENIERE" }, { - "codePostal": "25170", - "codeCommune": "25101", - "libelleAcheminement": "BURGILLE", - "nomCommune": "BURGILLE" + "codePostal": "21700", + "codeCommune": "21714", + "libelleAcheminement": "VOSNE ROMANEE", + "nomCommune": "VOSNE ROMANEE" }, { - "codePostal": "50510", - "codeCommune": "50327", - "libelleAcheminement": "LA MEURDRAQUIERE", - "nomCommune": "LA MEURDRAQUIERE" + "codePostal": "31310", + "codeCommune": "31312", + "libelleAcheminement": "MAILHOLAS", + "nomCommune": "MAILHOLAS" }, { - "codePostal": "62500", - "codeCommune": "62772", - "libelleAcheminement": "SALPERWICK", - "nomCommune": "SALPERWICK" + "codePostal": "31470", + "codeCommune": "31188", + "libelleAcheminement": "FONTENILLES", + "nomCommune": "FONTENILLES" }, { - "codePostal": "58120", - "codeCommune": "58249", - "libelleAcheminement": "ST LEGER DE FOUGERET", - "nomCommune": "ST LEGER DE FOUGERET" + "codePostal": "21290", + "codeCommune": "21116", + "libelleAcheminement": "BURE LES TEMPLIERS", + "nomCommune": "BURE LES TEMPLIERS" }, { - "codePostal": "25470", - "codeCommune": "25102", - "libelleAcheminement": "BURNEVILLERS", - "nomCommune": "BURNEVILLERS" + "codePostal": "21290", + "codeCommune": "21717", + "libelleAcheminement": "VOULAINES LES TEMPLIERS", + "nomCommune": "VOULAINES LES TEMPLIERS" }, { - "codePostal": "50700", - "codeCommune": "50335", - "libelleAcheminement": "MONTAIGU LA BRISETTE", - "nomCommune": "MONTAIGU LA BRISETTE" + "codePostal": "31510", + "codeCommune": "31313", + "libelleAcheminement": "MALVEZIE", + "nomCommune": "MALVEZIE" }, { - "codePostal": "62870", - "codeCommune": "62783", - "libelleAcheminement": "SAULCHOY", - "nomCommune": "SAULCHOY" + "codePostal": "31160", + "codeCommune": "31191", + "libelleAcheminement": "FOUGARON", + "nomCommune": "FOUGARON" }, { - "codePostal": "58300", - "codeCommune": "58250", - "libelleAcheminement": "ST LEGER DES VIGNES", - "nomCommune": "ST LEGER DES VIGNES" + "codePostal": "21580", + "codeCommune": "21119", + "libelleAcheminement": "BUSSIERES", + "nomCommune": "BUSSIERES" }, { - "codePostal": "25320", - "codeCommune": "25105", - "libelleAcheminement": "BYANS SUR DOUBS", - "nomCommune": "BYANS SUR DOUBS" + "codePostal": "22400", + "codeCommune": "22002", + "libelleAcheminement": "ANDEL", + "nomCommune": "ANDEL" }, { - "codePostal": "50200", - "codeCommune": "50345", - "libelleAcheminement": "MONTHUCHON", - "nomCommune": "MONTHUCHON" + "codePostal": "31260", + "codeCommune": "31315", + "libelleAcheminement": "MANE", + "nomCommune": "MANE" }, { - "codePostal": "62240", - "codeCommune": "62786", - "libelleAcheminement": "SELLES", - "nomCommune": "SELLES" + "codePostal": "31460", + "codeCommune": "31194", + "libelleAcheminement": "FRANCARVILLE", + "nomCommune": "FRANCARVILLE" }, { - "codePostal": "58350", - "codeCommune": "58252", - "libelleAcheminement": "ST MALO EN DONZIOIS", - "nomCommune": "ST MALO EN DONZIOIS" + "codePostal": "21540", + "codeCommune": "21121", + "libelleAcheminement": "BUSSY LA PESLE", + "nomCommune": "BUSSY LA PESLE" }, { - "codePostal": "25290", - "codeCommune": "25106", - "libelleAcheminement": "CADEMENE", - "nomCommune": "CADEMENE" + "codePostal": "22130", + "codeCommune": "22014", + "libelleAcheminement": "BOURSEUL", + "nomCommune": "BOURSEUL" }, { - "codePostal": "50240", - "codeCommune": "50347", - "libelleAcheminement": "MONTJOIE ST MARTIN", - "nomCommune": "MONTJOIE ST MARTIN" + "codePostal": "31260", + "codeCommune": "31321", + "libelleAcheminement": "MARSOULAS", + "nomCommune": "MARSOULAS" }, { - "codePostal": "62270", - "codeCommune": "62795", - "libelleAcheminement": "SIBIVILLE", - "nomCommune": "SIBIVILLE" + "codePostal": "31440", + "codeCommune": "31199", + "libelleAcheminement": "FRONSAC", + "nomCommune": "FRONSAC" }, { - "codePostal": "58150", - "codeCommune": "58265", - "libelleAcheminement": "ST QUENTIN SUR NOHAIN", - "nomCommune": "ST QUENTIN SUR NOHAIN" + "codePostal": "21290", + "codeCommune": "21123", + "libelleAcheminement": "BUXEROLLES", + "nomCommune": "BUXEROLLES" }, { - "codePostal": "25170", - "codeCommune": "25115", - "libelleAcheminement": "CHAMPAGNEY", - "nomCommune": "CHAMPAGNEY" + "codePostal": "22870", + "codeCommune": "22016", + "libelleAcheminement": "ILE DE BREHAT", + "nomCommune": "ILE DE BREHAT" }, { - "codePostal": "50210", - "codeCommune": "50350", - "libelleAcheminement": "MONTPINCHON", - "nomCommune": "MONTPINCHON" + "codePostal": "31310", + "codeCommune": "31326", + "libelleAcheminement": "MASSABRAC", + "nomCommune": "MASSABRAC" }, { - "codePostal": "62130", - "codeCommune": "62797", - "libelleAcheminement": "SIRACOURT", - "nomCommune": "SIRACOURT" + "codePostal": "31230", + "codeCommune": "31201", + "libelleAcheminement": "FRONTIGNAN SAVES", + "nomCommune": "FRONTIGNAN SAVES" }, { - "codePostal": "58250", - "codeCommune": "58268", - "libelleAcheminement": "ST SEINE", - "nomCommune": "ST SEINE" + "codePostal": "21250", + "codeCommune": "21131", + "libelleAcheminement": "CHAMBLANC", + "nomCommune": "CHAMBLANC" }, { - "codePostal": "25840", - "codeCommune": "25130", - "libelleAcheminement": "CHATEAUVIEUX LES FOSSES", - "nomCommune": "CHATEAUVIEUX LES FOSSES" + "codePostal": "22250", + "codeCommune": "22020", + "libelleAcheminement": "BROONS", + "nomCommune": "BROONS" }, { - "codePostal": "50810", - "codeCommune": "50351", - "libelleAcheminement": "MONTRABOT", - "nomCommune": "MONTRABOT" + "codePostal": "31290", + "codeCommune": "31328", + "libelleAcheminement": "MAUREMONT", + "nomCommune": "MAUREMONT" }, { - "codePostal": "62810", - "codeCommune": "62802", - "libelleAcheminement": "LE SOUICH", - "nomCommune": "LE SOUICH" + "codePostal": "31620", + "codeCommune": "31202", + "libelleAcheminement": "FRONTON", + "nomCommune": "FRONTON" }, { - "codePostal": "58160", - "codeCommune": "58273", - "libelleAcheminement": "SAUVIGNY LES BOIS", - "nomCommune": "SAUVIGNY LES BOIS" + "codePostal": "21220", + "codeCommune": "21133", + "libelleAcheminement": "CHAMBOLLE MUSIGNY", + "nomCommune": "CHAMBOLLE MUSIGNY" }, { - "codePostal": "25240", - "codeCommune": "25131", - "libelleAcheminement": "CHATELBLANC", - "nomCommune": "CHATELBLANC" + "codePostal": "22160", + "codeCommune": "22023", + "libelleAcheminement": "BULAT PESTIVIEN", + "nomCommune": "BULAT PESTIVIEN" }, { - "codePostal": "50410", - "codeCommune": "50357", - "libelleAcheminement": "MORIGNY", - "nomCommune": "MORIGNY" + "codePostal": "31160", + "codeCommune": "31348", + "libelleAcheminement": "MONCAUP", + "nomCommune": "MONCAUP" }, { - "codePostal": "62129", - "codeCommune": "62811", - "libelleAcheminement": "THEROUANNE", - "nomCommune": "THEROUANNE" + "codePostal": "31270", + "codeCommune": "31203", + "libelleAcheminement": "FROUZINS", + "nomCommune": "FROUZINS" }, { - "codePostal": "58150", - "codeCommune": "58281", - "libelleAcheminement": "SUILLY LA TOUR", - "nomCommune": "SUILLY LA TOUR" + "codePostal": "21310", + "codeCommune": "21135", + "libelleAcheminement": "CHAMPAGNE SUR VINGEANNE", + "nomCommune": "CHAMPAGNE SUR VINGEANNE" }, { - "codePostal": "25190", - "codeCommune": "25138", - "libelleAcheminement": "LES TERRES DE CHAUX", - "nomCommune": "LES TERRES DE CHAUX" + "codePostal": "22160", + "codeCommune": "22025", + "libelleAcheminement": "CALLAC DE BRETAGNE", + "nomCommune": "CALLAC" }, { - "codePostal": "50140", - "codeCommune": "50359", - "libelleAcheminement": "MORTAIN BOCAGE", - "nomCommune": "MORTAIN BOCAGE" + "codePostal": "31350", + "codeCommune": "31350", + "libelleAcheminement": "MONDILHAN", + "nomCommune": "MONDILHAN" }, { - "codePostal": "62134", - "codeCommune": "62818", - "libelleAcheminement": "TILLY CAPELLE", - "nomCommune": "TILLY CAPELLE" + "codePostal": "31430", + "codeCommune": "31204", + "libelleAcheminement": "FUSTIGNAC", + "nomCommune": "FUSTIGNAC" }, { - "codePostal": "58240", - "codeCommune": "58294", - "libelleAcheminement": "TOURY SUR JOUR", - "nomCommune": "TOURY SUR JOUR" + "codePostal": "21440", + "codeCommune": "21136", + "libelleAcheminement": "CHAMPAGNY", + "nomCommune": "CHAMPAGNY" }, { - "codePostal": "25650", - "codeCommune": "25139", - "libelleAcheminement": "LA CHAUX", - "nomCommune": "LA CHAUX" + "codePostal": "22350", + "codeCommune": "22032", + "libelleAcheminement": "CAULNES", + "nomCommune": "CAULNES" }, { - "codePostal": "50600", - "codeCommune": "50362", - "libelleAcheminement": "MOULINES", - "nomCommune": "MOULINES" + "codePostal": "31370", + "codeCommune": "31359", + "libelleAcheminement": "MONTASTRUC SAVES", + "nomCommune": "MONTASTRUC SAVES" }, { - "codePostal": "62830", - "codeCommune": "62821", - "libelleAcheminement": "TINGRY", - "nomCommune": "TINGRY" + "codePostal": "31550", + "codeCommune": "31206", + "libelleAcheminement": "GAILLAC TOULZA", + "nomCommune": "GAILLAC TOULZA" }, { - "codePostal": "58400", - "codeCommune": "58298", - "libelleAcheminement": "TRONSANGES", - "nomCommune": "TRONSANGES" + "codePostal": "21130", + "codeCommune": "21138", + "libelleAcheminement": "CHAMPDOTRE", + "nomCommune": "CHAMPDOTRE" }, { - "codePostal": "25170", - "codeCommune": "25150", - "libelleAcheminement": "CHEVIGNEY SUR L OGNON", - "nomCommune": "CHEVIGNEY SUR L OGNON" + "codePostal": "22210", + "codeCommune": "22039", + "libelleAcheminement": "LA CHEZE", + "nomCommune": "LA CHEZE" }, { - "codePostal": "50490", - "codeCommune": "50364", - "libelleAcheminement": "MUNEVILLE LE BINGARD", - "nomCommune": "MUNEVILLE LE BINGARD" + "codePostal": "31110", + "codeCommune": "31360", + "libelleAcheminement": "MONTAUBAN DE LUCHON", + "nomCommune": "MONTAUBAN DE LUCHON" }, { - "codePostal": "62390", - "codeCommune": "62822", - "libelleAcheminement": "TOLLENT", - "nomCommune": "TOLLENT" + "codePostal": "31380", + "codeCommune": "31212", + "libelleAcheminement": "GARIDECH", + "nomCommune": "GARIDECH" }, { - "codePostal": "58130", - "codeCommune": "58300", - "libelleAcheminement": "URZY", - "nomCommune": "URZY" + "codePostal": "21140", + "codeCommune": "21145", + "libelleAcheminement": "CHARIGNY", + "nomCommune": "CHARIGNY" }, { - "codePostal": "25300", - "codeCommune": "25157", - "libelleAcheminement": "LA CLUSE ET MIJOUX", - "nomCommune": "LA CLUSE ET MIJOUX" + "codePostal": "22140", + "codeCommune": "22041", + "libelleAcheminement": "COATASCORN", + "nomCommune": "COATASCORN" }, { - "codePostal": "50390", - "codeCommune": "50370", - "libelleAcheminement": "NEHOU", - "nomCommune": "NEHOU" + "codePostal": "31220", + "codeCommune": "31362", + "libelleAcheminement": "MONTBERAUD", + "nomCommune": "MONTBERAUD" }, { - "codePostal": "62890", - "codeCommune": "62827", - "libelleAcheminement": "TOURNEHEM SUR LA HEM", - "nomCommune": "TOURNEHEM SUR LA HEM" + "codePostal": "31510", + "codeCommune": "31217", + "libelleAcheminement": "GENOS", + "nomCommune": "GENOS" }, { - "codePostal": "58290", - "codeCommune": "58301", - "libelleAcheminement": "VANDENESSE", - "nomCommune": "VANDENESSE" + "codePostal": "21190", + "codeCommune": "21150", + "libelleAcheminement": "CHASSAGNE MONTRACHET", + "nomCommune": "CHASSAGNE MONTRACHET" }, { - "codePostal": "25260", - "codeCommune": "25159", - "libelleAcheminement": "COLOMBIER FONTAINE", - "nomCommune": "COLOMBIER FONTAINE" + "codePostal": "22400", + "codeCommune": "22044", + "libelleAcheminement": "COETMIEUX", + "nomCommune": "COETMIEUX" }, { - "codePostal": "50250", - "codeCommune": "50372", - "libelleAcheminement": "NEUFMESNIL", - "nomCommune": "NEUFMESNIL" + "codePostal": "31220", + "codeCommune": "31367", + "libelleAcheminement": "MONTCLAR DE COMMINGES", + "nomCommune": "MONTCLAR DE COMMINGES" }, { - "codePostal": "62310", - "codeCommune": "62828", - "libelleAcheminement": "TRAMECOURT", - "nomCommune": "TRAMECOURT" + "codePostal": "31110", + "codeCommune": "31222", + "libelleAcheminement": "GOUAUX DE LUCHON", + "nomCommune": "GOUAUX DE LUCHON" }, { - "codePostal": "58150", - "codeCommune": "58307", - "libelleAcheminement": "VIELMANAY", - "nomCommune": "VIELMANAY" + "codePostal": "21360", + "codeCommune": "21155", + "libelleAcheminement": "CHAUDENAY LA VILLE", + "nomCommune": "CHAUDENAY LA VILLE" }, { - "codePostal": "25410", - "codeCommune": "25164", - "libelleAcheminement": "CORCONDRAY", - "nomCommune": "CORCONDRAY" + "codePostal": "22330", + "codeCommune": "22046", + "libelleAcheminement": "LE MENE", + "nomCommune": "LE MENE" }, { - "codePostal": "50250", - "codeCommune": "50374", - "libelleAcheminement": "NEUVILLE EN BEAUMONT", - "nomCommune": "NEUVILLE EN BEAUMONT" + "codePostal": "31510", + "codeCommune": "31369", + "libelleAcheminement": "MONT DE GALIE", + "nomCommune": "MONT DE GALIE" }, { - "codePostal": "62130", - "codeCommune": "62831", - "libelleAcheminement": "TROISVAUX", - "nomCommune": "TROISVAUX" + "codePostal": "31230", + "codeCommune": "31223", + "libelleAcheminement": "GOUDEX", + "nomCommune": "GOUDEX" }, { - "codePostal": "59251", - "codeCommune": "59005", - "libelleAcheminement": "ALLENNES LES MARAIS", - "nomCommune": "ALLENNES LES MARAIS" + "codePostal": "21320", + "codeCommune": "21164", + "libelleAcheminement": "CHAZILLY", + "nomCommune": "CHAZILLY" }, { - "codePostal": "25360", - "codeCommune": "25166", - "libelleAcheminement": "COTEBRUNE", - "nomCommune": "COTEBRUNE" + "codePostal": "22330", + "codeCommune": "22046", + "libelleAcheminement": "LE MENE", + "nomCommune": "LE MENE" }, { - "codePostal": "50630", - "codeCommune": "50384", - "libelleAcheminement": "OCTEVILLE L AVENEL", - "nomCommune": "OCTEVILLE L AVENEL" + "codePostal": "31560", + "codeCommune": "31380", + "libelleAcheminement": "MONTGEARD", + "nomCommune": "MONTGEARD" }, { - "codePostal": "62630", - "codeCommune": "62832", - "libelleAcheminement": "TUBERSENT", - "nomCommune": "TUBERSENT" + "codePostal": "31210", + "codeCommune": "31224", + "libelleAcheminement": "GOURDAN POLIGNAN", + "nomCommune": "GOURDAN POLIGNAN" }, { - "codePostal": "59144", - "codeCommune": "59006", - "libelleAcheminement": "AMFROIPRET", - "nomCommune": "AMFROIPRET" + "codePostal": "21300", + "codeCommune": "21166", + "libelleAcheminement": "CHENOVE", + "nomCommune": "CHENOVE" }, { - "codePostal": "25170", - "codeCommune": "25172", - "libelleAcheminement": "COURCHAPON", - "nomCommune": "COURCHAPON" + "codePostal": "22320", + "codeCommune": "22047", + "libelleAcheminement": "CORLAY", + "nomCommune": "CORLAY" }, { - "codePostal": "50660", - "codeCommune": "50388", - "libelleAcheminement": "ORVAL SUR SIENNE", - "nomCommune": "ORVAL SUR SIENNE" + "codePostal": "31450", + "codeCommune": "31381", + "libelleAcheminement": "MONTGISCARD", + "nomCommune": "MONTGISCARD" }, { - "codePostal": "62550", - "codeCommune": "62835", - "libelleAcheminement": "VALHUON", - "nomCommune": "VALHUON" + "codePostal": "31150", + "codeCommune": "31230", + "libelleAcheminement": "GRATENTOUR", + "nomCommune": "GRATENTOUR" }, { - "codePostal": "59650", - "codeCommune": "59009", - "libelleAcheminement": "VILLENEUVE D ASCQ", - "nomCommune": "VILLENEUVE D ASCQ" + "codePostal": "21200", + "codeCommune": "21170", + "libelleAcheminement": "CHEVIGNY EN VALIERE", + "nomCommune": "CHEVIGNY EN VALIERE" }, { - "codePostal": "25380", - "codeCommune": "25173", - "libelleAcheminement": "COUR ST MAURICE", - "nomCommune": "COUR ST MAURICE" + "codePostal": "22100", + "codeCommune": "22050", + "libelleAcheminement": "DINAN", + "nomCommune": "DINAN" }, { - "codePostal": "50210", - "codeCommune": "50389", - "libelleAcheminement": "OUVILLE", - "nomCommune": "OUVILLE" + "codePostal": "31540", + "codeCommune": "31393", + "libelleAcheminement": "MOURVILLES HAUTES", + "nomCommune": "MOURVILLES HAUTES" }, { - "codePostal": "62124", - "codeCommune": "62840", - "libelleAcheminement": "VELU", - "nomCommune": "VELU" + "codePostal": "31190", + "codeCommune": "31231", + "libelleAcheminement": "GRAZAC", + "nomCommune": "GRAZAC" }, { - "codePostal": "59400", - "codeCommune": "59010", - "libelleAcheminement": "ANNEUX", - "nomCommune": "ANNEUX" + "codePostal": "21200", + "codeCommune": "21173", + "libelleAcheminement": "CHOREY LES BEAUNE", + "nomCommune": "CHOREY LES BEAUNE" }, { - "codePostal": "25530", - "codeCommune": "25175", - "libelleAcheminement": "COURTETAIN ET SALANS", - "nomCommune": "COURTETAIN ET SALANS" + "codePostal": "22430", + "codeCommune": "22054", + "libelleAcheminement": "ERQUY", + "nomCommune": "ERQUY" }, { - "codePostal": "50600", - "codeCommune": "50391", - "libelleAcheminement": "GRANDPARIGNY", - "nomCommune": "GRANDPARIGNY" + "codePostal": "31410", + "codeCommune": "31399", + "libelleAcheminement": "NOE", + "nomCommune": "NOE" }, { - "codePostal": "62830", - "codeCommune": "62845", - "libelleAcheminement": "VERLINCTHUN", - "nomCommune": "VERLINCTHUN" + "codePostal": "31190", + "codeCommune": "31233", + "libelleAcheminement": "GREPIAC", + "nomCommune": "GREPIAC" }, { - "codePostal": "59410", - "codeCommune": "59014", - "libelleAcheminement": "ANZIN", - "nomCommune": "ANZIN" + "codePostal": "21320", + "codeCommune": "21176", + "libelleAcheminement": "CIVRY EN MONTAGNE", + "nomCommune": "CIVRY EN MONTAGNE" }, { - "codePostal": "25870", - "codeCommune": "25186", - "libelleAcheminement": "CUSSEY SUR L OGNON", - "nomCommune": "CUSSEY SUR L OGNON" + "codePostal": "22430", + "codeCommune": "22054", + "libelleAcheminement": "ERQUY", + "nomCommune": "ERQUY" }, { - "codePostal": "50410", - "codeCommune": "50393", - "libelleAcheminement": "PERCY EN NORMANDIE", - "nomCommune": "PERCY EN NORMANDIE" + "codePostal": "31450", + "codeCommune": "31402", + "libelleAcheminement": "ODARS", + "nomCommune": "ODARS" }, { - "codePostal": "62240", - "codeCommune": "62853", - "libelleAcheminement": "VIEIL MOUTIER", - "nomCommune": "VIEIL MOUTIER" + "codePostal": "31110", + "codeCommune": "31242", + "libelleAcheminement": "JURVIELLE", + "nomCommune": "JURVIELLE" }, { - "codePostal": "59494", - "codeCommune": "59027", - "libelleAcheminement": "AUBRY DU HAINAUT", - "nomCommune": "AUBRY DU HAINAUT" + "codePostal": "21220", + "codeCommune": "21178", + "libelleAcheminement": "VALFORET", + "nomCommune": "VALFORET" }, { - "codePostal": "25150", - "codeCommune": "25187", - "libelleAcheminement": "DAMBELIN", - "nomCommune": "DAMBELIN" + "codePostal": "22290", + "codeCommune": "22063", + "libelleAcheminement": "GOMMENEC H", + "nomCommune": "GOMMENEC H" }, { - "codePostal": "50410", - "codeCommune": "50393", - "libelleAcheminement": "PERCY EN NORMANDIE", - "nomCommune": "PERCY EN NORMANDIE" + "codePostal": "31320", + "codeCommune": "31409", + "libelleAcheminement": "PECHABOU", + "nomCommune": "PECHABOU" }, { - "codePostal": "62580", - "codeCommune": "62861", - "libelleAcheminement": "VIMY", - "nomCommune": "VIMY" + "codePostal": "31540", + "codeCommune": "31243", + "libelleAcheminement": "JUZES", + "nomCommune": "JUZES" }, { - "codePostal": "59620", - "codeCommune": "59033", - "libelleAcheminement": "AULNOYE AYMERIES", - "nomCommune": "AULNOYE AYMERIES" + "codePostal": "21360", + "codeCommune": "21184", + "libelleAcheminement": "COLOMBIER", + "nomCommune": "COLOMBIER" }, { - "codePostal": "25190", - "codeCommune": "25192", - "libelleAcheminement": "DAMPJOUX", - "nomCommune": "DAMPJOUX" + "codePostal": "22200", + "codeCommune": "22067", + "libelleAcheminement": "GRACES", + "nomCommune": "GRACES" }, { - "codePostal": "50220", - "codeCommune": "50407", - "libelleAcheminement": "POILLEY", - "nomCommune": "POILLEY" + "codePostal": "31140", + "codeCommune": "31410", + "libelleAcheminement": "PECHBONNIEU", + "nomCommune": "PECHBONNIEU" }, { - "codePostal": "62120", - "codeCommune": "62875", - "libelleAcheminement": "WARDRECQUES", - "nomCommune": "WARDRECQUES" + "codePostal": "31160", + "codeCommune": "31245", + "libelleAcheminement": "JUZET D IZAUT", + "nomCommune": "JUZET D IZAUT" }, { - "codePostal": "59570", - "codeCommune": "59053", - "libelleAcheminement": "BAVAY", - "nomCommune": "BAVAY" + "codePostal": "21400", + "codeCommune": "21201", + "libelleAcheminement": "COULMIER LE SEC", + "nomCommune": "COULMIER LE SEC" }, { - "codePostal": "25410", - "codeCommune": "25195", - "libelleAcheminement": "DANNEMARIE SUR CRETE", - "nomCommune": "DANNEMARIE SUR CRETE" + "codePostal": "22550", + "codeCommune": "22076", + "libelleAcheminement": "HENANBIHEN", + "nomCommune": "HENANBIHEN" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "31350", + "codeCommune": "31412", + "libelleAcheminement": "PEGUILHAN", + "nomCommune": "PEGUILHAN" }, { - "codePostal": "62960", - "codeCommune": "62885", - "libelleAcheminement": "WESTREHEM", - "nomCommune": "WESTREHEM" + "codePostal": "31800", + "codeCommune": "31246", + "libelleAcheminement": "LABARTHE INARD", + "nomCommune": "LABARTHE INARD" }, { - "codePostal": "59360", - "codeCommune": "59055", - "libelleAcheminement": "BAZUEL", - "nomCommune": "BAZUEL" + "codePostal": "21140", + "codeCommune": "21205", + "libelleAcheminement": "COURCELLES LES SEMUR", + "nomCommune": "COURCELLES LES SEMUR" }, { - "codePostal": "25750", - "codeCommune": "25198", - "libelleAcheminement": "DESANDANS", - "nomCommune": "DESANDANS" + "codePostal": "22270", + "codeCommune": "22084", + "libelleAcheminement": "JUGON LES LACS COMMUNE NOUVELLE", + "nomCommune": "JUGON LES LACS COMMUNE NOUVELLE" }, { - "codePostal": "50300", - "codeCommune": "50411", - "libelleAcheminement": "PONTS", - "nomCommune": "PONTS" + "codePostal": "31860", + "codeCommune": "31421", + "libelleAcheminement": "PINS JUSTARET", + "nomCommune": "PINS JUSTARET" }, { - "codePostal": "62720", - "codeCommune": "62889", - "libelleAcheminement": "WIERRE EFFROY", - "nomCommune": "WIERRE EFFROY" + "codePostal": "31450", + "codeCommune": "31249", + "libelleAcheminement": "LABASTIDE BEAUVOIR", + "nomCommune": "LABASTIDE BEAUVOIR" }, { - "codePostal": "59540", - "codeCommune": "59059", - "libelleAcheminement": "BEAUMONT EN CAMBRESIS", - "nomCommune": "BEAUMONT EN CAMBRESIS" + "codePostal": "21580", + "codeCommune": "21207", + "libelleAcheminement": "COURLON", + "nomCommune": "COURLON" }, { - "codePostal": "25330", - "codeCommune": "25199", - "libelleAcheminement": "DESERVILLERS", - "nomCommune": "DESERVILLERS" + "codePostal": "22270", + "codeCommune": "22084", + "libelleAcheminement": "JUGON LES LACS COMMUNE NOUVELLE", + "nomCommune": "JUGON LES LACS COMMUNE NOUVELLE" }, { - "codePostal": "50660", - "codeCommune": "50419", - "libelleAcheminement": "QUETTREVILLE SUR SIENNE", - "nomCommune": "QUETTREVILLE SUR SIENNE" + "codePostal": "31220", + "codeCommune": "31422", + "libelleAcheminement": "PLAGNE", + "nomCommune": "PLAGNE" }, { - "codePostal": "62580", - "codeCommune": "62892", - "libelleAcheminement": "WILLERVAL", - "nomCommune": "WILLERVAL" + "codePostal": "31370", + "codeCommune": "31250", + "libelleAcheminement": "LABASTIDE CLERMONT", + "nomCommune": "LABASTIDE CLERMONT" }, { - "codePostal": "59157", - "codeCommune": "59063", - "libelleAcheminement": "BEAUVOIS EN CAMBRESIS", - "nomCommune": "BEAUVOIS EN CAMBRESIS" + "codePostal": "21310", + "codeCommune": "21225", + "libelleAcheminement": "DAMPIERRE ET FLEE", + "nomCommune": "DAMPIERRE ET FLEE" }, { - "codePostal": "25870", - "codeCommune": "25200", - "libelleAcheminement": "DEVECEY", - "nomCommune": "DEVECEY" + "codePostal": "22110", + "codeCommune": "22087", + "libelleAcheminement": "KERGRIST MOELOU", + "nomCommune": "KERGRIST MOELOU" }, { - "codePostal": "50660", - "codeCommune": "50419", - "libelleAcheminement": "QUETTREVILLE SUR SIENNE", - "nomCommune": "QUETTREVILLE SUR SIENNE" + "codePostal": "31110", + "codeCommune": "31432", + "libelleAcheminement": "PORTET DE LUCHON", + "nomCommune": "PORTET DE LUCHON" }, { - "codePostal": "62930", - "codeCommune": "62893", - "libelleAcheminement": "WIMEREUX", - "nomCommune": "WIMEREUX" + "codePostal": "31230", + "codeCommune": "31251", + "libelleAcheminement": "LABASTIDE PAUMES", + "nomCommune": "LABASTIDE PAUMES" }, { - "codePostal": "59135", - "codeCommune": "59064", - "libelleAcheminement": "BELLAING", - "nomCommune": "BELLAING" + "codePostal": "21150", + "codeCommune": "21226", + "libelleAcheminement": "DARCEY", + "nomCommune": "DARCEY" }, { - "codePostal": "25560", - "codeCommune": "25202", - "libelleAcheminement": "DOMPIERRE LES TILLEULS", - "nomCommune": "DOMPIERRE LES TILLEULS" + "codePostal": "22450", + "codeCommune": "22090", + "libelleAcheminement": "KERMARIA SULARD", + "nomCommune": "KERMARIA SULARD" }, { - "codePostal": "50310", - "codeCommune": "50421", - "libelleAcheminement": "QUINEVILLE", - "nomCommune": "QUINEVILLE" + "codePostal": "31450", + "codeCommune": "31437", + "libelleAcheminement": "POUZE", + "nomCommune": "POUZE" }, { - "codePostal": "62126", - "codeCommune": "62894", - "libelleAcheminement": "WIMILLE", - "nomCommune": "WIMILLE" + "codePostal": "31620", + "codeCommune": "31252", + "libelleAcheminement": "LABASTIDE ST SERNIN", + "nomCommune": "LABASTIDE ST SERNIN" }, { - "codePostal": "59570", - "codeCommune": "59065", - "libelleAcheminement": "BELLIGNIES", - "nomCommune": "BELLIGNIES" + "codePostal": "21420", + "codeCommune": "21241", + "libelleAcheminement": "ECHEVRONNE", + "nomCommune": "ECHEVRONNE" }, { - "codePostal": "25510", - "codeCommune": "25203", - "libelleAcheminement": "DOMPREL", - "nomCommune": "DOMPREL" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "50260", - "codeCommune": "50425", - "libelleAcheminement": "RAUVILLE LA BIGOT", - "nomCommune": "RAUVILLE LA BIGOT" + "codePostal": "31190", + "codeCommune": "31442", + "libelleAcheminement": "PUYDANIEL", + "nomCommune": "PUYDANIEL" }, { - "codePostal": "62240", - "codeCommune": "62896", - "libelleAcheminement": "WIRWIGNES", - "nomCommune": "WIRWIGNES" + "codePostal": "31800", + "codeCommune": "31270", + "libelleAcheminement": "LANDORTHE", + "nomCommune": "LANDORTHE" }, { - "codePostal": "59145", - "codeCommune": "59068", - "libelleAcheminement": "BERLAIMONT", - "nomCommune": "BERLAIMONT" + "codePostal": "21110", + "codeCommune": "21242", + "libelleAcheminement": "ECHIGEY", + "nomCommune": "ECHIGEY" }, { - "codePostal": "25440", - "codeCommune": "25209", - "libelleAcheminement": "ECHAY", - "nomCommune": "ECHAY" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "50390", - "codeCommune": "50426", - "libelleAcheminement": "RAUVILLE LA PLACE", - "nomCommune": "RAUVILLE LA PLACE" + "codePostal": "31520", + "codeCommune": "31446", + "libelleAcheminement": "RAMONVILLE ST AGNE", + "nomCommune": "RAMONVILLE ST AGNE" }, { - "codePostal": "62179", - "codeCommune": "62899", - "libelleAcheminement": "WISSANT", - "nomCommune": "WISSANT" + "codePostal": "31480", + "codeCommune": "31275", + "libelleAcheminement": "LAREOLE", + "nomCommune": "LAREOLE" }, { - "codePostal": "59235", - "codeCommune": "59071", - "libelleAcheminement": "BERSEE", - "nomCommune": "BERSEE" + "codePostal": "21460", + "codeCommune": "21247", + "libelleAcheminement": "EPOISSES", + "nomCommune": "EPOISSES" }, { - "codePostal": "25550", - "codeCommune": "25210", - "libelleAcheminement": "ECHENANS", - "nomCommune": "ECHENANS" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "50520", - "codeCommune": "50428", - "libelleAcheminement": "REFFUVEILLE", - "nomCommune": "REFFUVEILLE" + "codePostal": "31310", + "codeCommune": "31455", + "libelleAcheminement": "RIEUX VOLVESTRE", + "nomCommune": "RIEUX VOLVESTRE" }, { - "codePostal": "62120", - "codeCommune": "62900", - "libelleAcheminement": "WITTERNESSE", - "nomCommune": "WITTERNESSE" + "codePostal": "31530", + "codeCommune": "31277", + "libelleAcheminement": "LASSERRE PRADERE", + "nomCommune": "LASSERRE PRADERE" }, { - "codePostal": "59270", - "codeCommune": "59073", - "libelleAcheminement": "BERTHEN", - "nomCommune": "BERTHEN" + "codePostal": "21320", + "codeCommune": "21251", + "libelleAcheminement": "ESSEY", + "nomCommune": "ESSEY" }, { - "codePostal": "25480", - "codeCommune": "25212", - "libelleAcheminement": "ECOLE VALENTIN", - "nomCommune": "ECOLE VALENTIN" + "codePostal": "22980", + "codeCommune": "22097", + "libelleAcheminement": "LA LANDEC", + "nomCommune": "LA LANDEC" }, { - "codePostal": "50570", - "codeCommune": "50431", - "libelleAcheminement": "REMILLY LES MARAIS", - "nomCommune": "REMILLY LES MARAIS" + "codePostal": "31230", + "codeCommune": "31456", + "libelleAcheminement": "RIOLAS", + "nomCommune": "RIOLAS" }, { - "codePostal": "62120", - "codeCommune": "62901", - "libelleAcheminement": "WITTES", - "nomCommune": "WITTES" + "codePostal": "31440", + "codeCommune": "31290", + "libelleAcheminement": "LEGE", + "nomCommune": "LEGE" }, { - "codePostal": "59540", - "codeCommune": "59075", - "libelleAcheminement": "BETHENCOURT", - "nomCommune": "BETHENCOURT" + "codePostal": "21500", + "codeCommune": "21259", + "libelleAcheminement": "FAIN LES MONTBARD", + "nomCommune": "FAIN LES MONTBARD" }, { - "codePostal": "25150", - "codeCommune": "25214", - "libelleAcheminement": "ECOT", - "nomCommune": "ECOT" + "codePostal": "22980", + "codeCommune": "22104", + "libelleAcheminement": "LANGUEDIAS", + "nomCommune": "LANGUEDIAS" }, { - "codePostal": "50760", - "codeCommune": "50433", - "libelleAcheminement": "REVILLE", - "nomCommune": "REVILLE" + "codePostal": "31380", + "codeCommune": "31459", + "libelleAcheminement": "ROQUESERIERE", + "nomCommune": "ROQUESERIERE" }, { - "codePostal": "62650", - "codeCommune": "62903", - "libelleAcheminement": "ZOTEUX", - "nomCommune": "ZOTEUX" + "codePostal": "31800", + "codeCommune": "31300", + "libelleAcheminement": "LIEOUX", + "nomCommune": "LIEOUX" }, { - "codePostal": "59570", - "codeCommune": "59077", - "libelleAcheminement": "BETTRECHIES", - "nomCommune": "BETTRECHIES" + "codePostal": "21500", + "codeCommune": "21260", + "libelleAcheminement": "FAIN LES MOUTIERS", + "nomCommune": "FAIN LES MOUTIERS" }, { - "codePostal": "25800", - "codeCommune": "25219", - "libelleAcheminement": "EPENOY", - "nomCommune": "EPENOY" + "codePostal": "22570", + "codeCommune": "22107", + "libelleAcheminement": "BON REPOS SUR BLAVET", + "nomCommune": "BON REPOS SUR BLAVET" }, { - "codePostal": "50210", - "codeCommune": "50437", - "libelleAcheminement": "RONCEY", - "nomCommune": "RONCEY" + "codePostal": "31180", + "codeCommune": "31462", + "libelleAcheminement": "ROUFFIAC TOLOSAN", + "nomCommune": "ROUFFIAC TOLOSAN" }, { - "codePostal": "62360", - "codeCommune": "62908", - "libelleAcheminement": "LA CAPELLE LES BOULOGNE", - "nomCommune": "LA CAPELLE LES BOULOGNE" + "codePostal": "31410", + "codeCommune": "31303", + "libelleAcheminement": "LONGAGES", + "nomCommune": "LONGAGES" }, { - "codePostal": "59217", - "codeCommune": "59081", - "libelleAcheminement": "BEVILLERS", - "nomCommune": "BEVILLERS" + "codePostal": "21230", + "codeCommune": "21264", + "libelleAcheminement": "LE FETE", + "nomCommune": "LE FETE" }, { - "codePostal": "25800", - "codeCommune": "25227", - "libelleAcheminement": "ETRAY", - "nomCommune": "ETRAY" + "codePostal": "22480", + "codeCommune": "22115", + "libelleAcheminement": "LANRIVAIN", + "nomCommune": "LANRIVAIN" }, { - "codePostal": "50500", - "codeCommune": "50445", - "libelleAcheminement": "ST ANDRE DE BOHON", - "nomCommune": "ST ANDRE DE BOHON" + "codePostal": "31420", + "codeCommune": "31468", + "libelleAcheminement": "ST ANDRE", + "nomCommune": "ST ANDRE" }, { - "codePostal": "63600", - "codeCommune": "63003", - "libelleAcheminement": "AMBERT", - "nomCommune": "AMBERT" + "codePostal": "31290", + "codeCommune": "31310", + "libelleAcheminement": "LUX", + "nomCommune": "LUX" }, { - "codePostal": "59470", - "codeCommune": "59089", - "libelleAcheminement": "BOLLEZEELE", - "nomCommune": "BOLLEZEELE" + "codePostal": "21130", + "codeCommune": "21269", + "libelleAcheminement": "FLAMMERANS", + "nomCommune": "FLAMMERANS" }, { - "codePostal": "25530", - "codeCommune": "25231", - "libelleAcheminement": "EYSSON", - "nomCommune": "EYSSON" + "codePostal": "22170", + "codeCommune": "22116", + "libelleAcheminement": "LANRODEC", + "nomCommune": "LANRODEC" }, { - "codePostal": "50140", - "codeCommune": "50456", - "libelleAcheminement": "ST CLEMENT RANCOUDRAY", - "nomCommune": "ST CLEMENT RANCOUDRAY" + "codePostal": "31440", + "codeCommune": "31471", + "libelleAcheminement": "ST BEAT LEZ", + "nomCommune": "ST BEAT LEZ" }, { - "codePostal": "63770", - "codeCommune": "63004", - "libelleAcheminement": "LES ANCIZES COMPS", - "nomCommune": "LES ANCIZES COMPS" + "codePostal": "31360", + "codeCommune": "31314", + "libelleAcheminement": "MANCIOUX", + "nomCommune": "MANCIOUX" }, { - "codePostal": "59166", - "codeCommune": "59098", - "libelleAcheminement": "BOUSBECQUE", - "nomCommune": "BOUSBECQUE" + "codePostal": "21390", + "codeCommune": "21272", + "libelleAcheminement": "LE VAL LARREY", + "nomCommune": "LE VAL LARREY" }, { - "codePostal": "25250", - "codeCommune": "25232", - "libelleAcheminement": "FAIMBE", - "nomCommune": "FAIMBE" + "codePostal": "22410", + "codeCommune": "22117", + "libelleAcheminement": "LANTIC", + "nomCommune": "LANTIC" }, { - "codePostal": "50310", - "codeCommune": "50461", - "libelleAcheminement": "ST CYR", - "nomCommune": "ST CYR" + "codePostal": "31540", + "codeCommune": "31478", + "libelleAcheminement": "ST FELIX LAURAGAIS", + "nomCommune": "ST FELIX LAURAGAIS" }, { - "codePostal": "63170", - "codeCommune": "63014", - "libelleAcheminement": "AUBIERE", - "nomCommune": "AUBIERE" + "codePostal": "31220", + "codeCommune": "31318", + "libelleAcheminement": "MARIGNAC LASPEYRES", + "nomCommune": "MARIGNAC LASPEYRES" }, { - "codePostal": "59178", - "codeCommune": "59100", - "libelleAcheminement": "BOUSIGNIES", - "nomCommune": "BOUSIGNIES" + "codePostal": "21610", + "codeCommune": "21277", + "libelleAcheminement": "FONTAINE FRANCAISE", + "nomCommune": "FONTAINE FRANCAISE" }, { - "codePostal": "25470", - "codeCommune": "25238", - "libelleAcheminement": "FESSEVILLERS", - "nomCommune": "FESSEVILLERS" + "codePostal": "22100", + "codeCommune": "22118", + "libelleAcheminement": "LANVALLAY", + "nomCommune": "LANVALLAY" }, { - "codePostal": "50760", - "codeCommune": "50469", - "libelleAcheminement": "STE GENEVIEVE", - "nomCommune": "STE GENEVIEVE" + "codePostal": "31570", + "codeCommune": "31480", + "libelleAcheminement": "STE FOY D AIGREFEUILLE", + "nomCommune": "STE FOY D AIGREFEUILLE" }, { - "codePostal": "63690", - "codeCommune": "63024", - "libelleAcheminement": "AVEZE", - "nomCommune": "AVEZE" + "codePostal": "31210", + "codeCommune": "31323", + "libelleAcheminement": "MARTRES DE RIVIERE", + "nomCommune": "MARTRES DE RIVIERE" }, { - "codePostal": "59149", - "codeCommune": "59101", - "libelleAcheminement": "BOUSIGNIES SUR ROC", - "nomCommune": "BOUSIGNIES SUR ROC" + "codePostal": "21390", + "codeCommune": "21280", + "libelleAcheminement": "FONTANGY", + "nomCommune": "FONTANGY" }, { - "codePostal": "25500", - "codeCommune": "25240", - "libelleAcheminement": "LES FINS", - "nomCommune": "LES FINS" + "codePostal": "22290", + "codeCommune": "22121", + "libelleAcheminement": "LANVOLLON", + "nomCommune": "LANVOLLON" }, { - "codePostal": "50370", - "codeCommune": "50472", - "libelleAcheminement": "ST GEORGES DE LIVOYE", - "nomCommune": "ST GEORGES DE LIVOYE" + "codePostal": "31470", + "codeCommune": "31481", + "libelleAcheminement": "STE FOY DE PEYROLIERES", + "nomCommune": "STE FOY DE PEYROLIERES" }, { - "codePostal": "63390", - "codeCommune": "63025", - "libelleAcheminement": "AYAT SUR SIOULE", - "nomCommune": "AYAT SUR SIOULE" + "codePostal": "31220", + "codeCommune": "31324", + "libelleAcheminement": "MARTRES TOLOSANE", + "nomCommune": "MARTRES TOLOSANE" }, { - "codePostal": "59217", - "codeCommune": "59102", - "libelleAcheminement": "BOUSSIERES EN CAMBRESIS", - "nomCommune": "BOUSSIERES EN CAMBRESIS" + "codePostal": "21610", + "codeCommune": "21281", + "libelleAcheminement": "FONTENELLE", + "nomCommune": "FONTENELLE" }, { - "codePostal": "25340", - "codeCommune": "25247", - "libelleAcheminement": "FONTENELLE MONTBY", - "nomCommune": "FONTENELLE MONTBY" + "codePostal": "22540", + "codeCommune": "22135", + "libelleAcheminement": "LOUARGAT", + "nomCommune": "LOUARGAT" }, { - "codePostal": "50180", - "codeCommune": "50483", - "libelleAcheminement": "ST GILLES", - "nomCommune": "ST GILLES" + "codePostal": "31800", + "codeCommune": "31483", + "libelleAcheminement": "ST GAUDENS", + "nomCommune": "ST GAUDENS" }, { - "codePostal": "63970", - "codeCommune": "63026", - "libelleAcheminement": "AYDAT", - "nomCommune": "AYDAT" + "codePostal": "31220", + "codeCommune": "31327", + "libelleAcheminement": "MAURAN", + "nomCommune": "MAURAN" }, { - "codePostal": "59178", - "codeCommune": "59109", - "libelleAcheminement": "BRILLON", - "nomCommune": "BRILLON" + "codePostal": "21580", + "codeCommune": "21283", + "libelleAcheminement": "FRAIGNOT ET VESVROTTE", + "nomCommune": "FRAIGNOT ET VESVROTTE" }, { - "codePostal": "25210", - "codeCommune": "25248", - "libelleAcheminement": "LES FONTENELLES", - "nomCommune": "LES FONTENELLES" + "codePostal": "22480", + "codeCommune": "22139", + "libelleAcheminement": "MAGOAR", + "nomCommune": "MAGOAR" }, { - "codePostal": "50390", - "codeCommune": "50486", - "libelleAcheminement": "ST JACQUES DE NEHOU", - "nomCommune": "ST JACQUES DE NEHOU" + "codePostal": "31800", + "codeCommune": "31487", + "libelleAcheminement": "ST IGNAN", + "nomCommune": "ST IGNAN" }, { - "codePostal": "63810", - "codeCommune": "63028", - "libelleAcheminement": "BAGNOLS", - "nomCommune": "BAGNOLS" + "codePostal": "31110", + "codeCommune": "31335", + "libelleAcheminement": "MAYREGNE", + "nomCommune": "MAYREGNE" }, { - "codePostal": "59490", - "codeCommune": "59113", - "libelleAcheminement": "BRUILLE LEZ MARCHIENNES", - "nomCommune": "BRUILLE LEZ MARCHIENNES" + "codePostal": "21440", + "codeCommune": "21284", + "libelleAcheminement": "FRANCHEVILLE", + "nomCommune": "FRANCHEVILLE" }, { - "codePostal": "25110", - "codeCommune": "25249", - "libelleAcheminement": "FONTENOTTE", - "nomCommune": "FONTENOTTE" + "codePostal": "22450", + "codeCommune": "22141", + "libelleAcheminement": "MANTALLOT", + "nomCommune": "MANTALLOT" }, { - "codePostal": "50240", - "codeCommune": "50487", - "libelleAcheminement": "ST JAMES", - "nomCommune": "ST JAMES" + "codePostal": "31240", + "codeCommune": "31488", + "libelleAcheminement": "ST JEAN", + "nomCommune": "ST JEAN" }, { - "codePostal": "63570", - "codeCommune": "63031", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "31800", + "codeCommune": "31344", + "libelleAcheminement": "MIRAMONT DE COMMINGES", + "nomCommune": "MIRAMONT DE COMMINGES" }, { - "codePostal": "59144", - "codeCommune": "59116", - "libelleAcheminement": "BRY", - "nomCommune": "BRY" + "codePostal": "21170", + "codeCommune": "21285", + "libelleAcheminement": "FRANXAULT", + "nomCommune": "FRANXAULT" }, { - "codePostal": "25770", - "codeCommune": "25258", - "libelleAcheminement": "FRANOIS", - "nomCommune": "FRANOIS" + "codePostal": "22550", + "codeCommune": "22143", + "libelleAcheminement": "MATIGNON", + "nomCommune": "MATIGNON" }, { - "codePostal": "50810", - "codeCommune": "50492", - "libelleAcheminement": "ST JEAN D ELLE", - "nomCommune": "ST JEAN D ELLE" + "codePostal": "31560", + "codeCommune": "31495", + "libelleAcheminement": "ST LEON", + "nomCommune": "ST LEON" }, { - "codePostal": "63610", - "codeCommune": "63038", - "libelleAcheminement": "BESSE ET ST ANASTAISE", - "nomCommune": "BESSE ET ST ANASTAISE" + "codePostal": "31230", + "codeCommune": "31347", + "libelleAcheminement": "MOLAS", + "nomCommune": "MOLAS" }, { - "codePostal": "59285", - "codeCommune": "59119", - "libelleAcheminement": "BUYSSCHEURE", - "nomCommune": "BUYSSCHEURE" + "codePostal": "21120", + "codeCommune": "21286", + "libelleAcheminement": "FRENOIS", + "nomCommune": "FRENOIS" }, { - "codePostal": "25560", - "codeCommune": "25259", - "libelleAcheminement": "FRASNE", - "nomCommune": "FRASNE" + "codePostal": "22440", + "codeCommune": "22144", + "libelleAcheminement": "LA MEAUGON", + "nomCommune": "LA MEAUGON" }, { - "codePostal": "50810", - "codeCommune": "50492", - "libelleAcheminement": "ST JEAN D ELLE", - "nomCommune": "ST JEAN D ELLE" + "codePostal": "31140", + "codeCommune": "31497", + "libelleAcheminement": "ST LOUP CAMMAS", + "nomCommune": "ST LOUP CAMMAS" }, { - "codePostal": "63220", - "codeCommune": "63039", - "libelleAcheminement": "BEURIERES", - "nomCommune": "BEURIERES" + "codePostal": "31700", + "codeCommune": "31351", + "libelleAcheminement": "MONDONVILLE", + "nomCommune": "MONDONVILLE" }, { - "codePostal": "59780", - "codeCommune": "59124", - "libelleAcheminement": "CAMPHIN EN PEVELE", - "nomCommune": "CAMPHIN EN PEVELE" + "codePostal": "21120", + "codeCommune": "21290", + "libelleAcheminement": "GEMEAUX", + "nomCommune": "GEMEAUX" }, { - "codePostal": "25190", - "codeCommune": "25261", - "libelleAcheminement": "FROIDEVAUX", - "nomCommune": "FROIDEVAUX" + "codePostal": "22400", + "codeCommune": "22160", + "libelleAcheminement": "NOYAL", + "nomCommune": "NOYAL" }, { - "codePostal": "50320", - "codeCommune": "50493", - "libelleAcheminement": "ST JEAN DES CHAMPS", - "nomCommune": "ST JEAN DES CHAMPS" + "codePostal": "31350", + "codeCommune": "31498", + "libelleAcheminement": "ST LOUP EN COMMINGES", + "nomCommune": "ST LOUP EN COMMINGES" }, { - "codePostal": "63160", - "codeCommune": "63044", - "libelleAcheminement": "BONGHEAT", - "nomCommune": "BONGHEAT" + "codePostal": "31370", + "codeCommune": "31353", + "libelleAcheminement": "MONES", + "nomCommune": "MONES" }, { - "codePostal": "59242", - "codeCommune": "59129", - "libelleAcheminement": "CAPPELLE EN PEVELE", - "nomCommune": "CAPPELLE EN PEVELE" + "codePostal": "21410", + "codeCommune": "21293", + "libelleAcheminement": "GERGUEIL", + "nomCommune": "GERGUEIL" }, { - "codePostal": "25870", - "codeCommune": "25265", - "libelleAcheminement": "GENEUILLE", - "nomCommune": "GENEUILLE" + "codePostal": "22540", + "codeCommune": "22164", + "libelleAcheminement": "PEDERNEC", + "nomCommune": "PEDERNEC" }, { - "codePostal": "50420", - "codeCommune": "50504", - "libelleAcheminement": "ST LOUET SUR VIRE", - "nomCommune": "ST LOUET SUR VIRE" + "codePostal": "31470", + "codeCommune": "31499", + "libelleAcheminement": "ST LYS", + "nomCommune": "ST LYS" }, { - "codePostal": "63190", - "codeCommune": "63045", - "libelleAcheminement": "BORT L ETANG", - "nomCommune": "BORT L ETANG" + "codePostal": "31560", + "codeCommune": "31354", + "libelleAcheminement": "MONESTROL", + "nomCommune": "MONESTROL" }, { - "codePostal": "59217", - "codeCommune": "59132", - "libelleAcheminement": "CARNIERES", - "nomCommune": "CARNIERES" + "codePostal": "21350", + "codeCommune": "21298", + "libelleAcheminement": "GISSEY LE VIEIL", + "nomCommune": "GISSEY LE VIEIL" }, { - "codePostal": "25650", - "codeCommune": "25271", - "libelleAcheminement": "GILLEY", - "nomCommune": "GILLEY" + "codePostal": "22510", + "codeCommune": "22165", + "libelleAcheminement": "PENGUILY", + "nomCommune": "PENGUILY" }, { - "codePostal": "50750", - "codeCommune": "50512", - "libelleAcheminement": "ST MARTIN DE BONFOSSE", - "nomCommune": "ST MARTIN DE BONFOSSE" + "codePostal": "31110", + "codeCommune": "31500", + "libelleAcheminement": "ST MAMET", + "nomCommune": "ST MAMET" }, { - "codePostal": "63340", - "codeCommune": "63046", - "libelleAcheminement": "BOUDES", - "nomCommune": "BOUDES" + "codePostal": "31280", + "codeCommune": "31355", + "libelleAcheminement": "MONS", + "nomCommune": "MONS" }, { - "codePostal": "59540", - "codeCommune": "59139", - "libelleAcheminement": "CAUDRY", - "nomCommune": "CAUDRY" + "codePostal": "21150", + "codeCommune": "21299", + "libelleAcheminement": "GISSEY SOUS FLAVIGNY", + "nomCommune": "GISSEY SOUS FLAVIGNY" }, { - "codePostal": "25680", - "codeCommune": "25277", - "libelleAcheminement": "GONDENANS LES MOULINS", - "nomCommune": "GONDENANS LES MOULINS" + "codePostal": "22700", + "codeCommune": "22168", + "libelleAcheminement": "PERROS GUIREC", + "nomCommune": "PERROS GUIREC" }, { - "codePostal": "50150", - "codeCommune": "50514", - "libelleAcheminement": "CHAULIEU", - "nomCommune": "CHAULIEU" + "codePostal": "31360", + "codeCommune": "31503", + "libelleAcheminement": "ST MARTORY", + "nomCommune": "ST MARTORY" }, { - "codePostal": "63150", - "codeCommune": "63047", - "libelleAcheminement": "LA BOURBOULE", - "nomCommune": "LA BOURBOULE" + "codePostal": "31140", + "codeCommune": "31364", + "libelleAcheminement": "MONTBERON", + "nomCommune": "MONTBERON" }, { - "codePostal": "59230", - "codeCommune": "59144", - "libelleAcheminement": "CHATEAU L ABBAYE", - "nomCommune": "CHATEAU L ABBAYE" + "codePostal": "21410", + "codeCommune": "21300", + "libelleAcheminement": "GISSEY SUR OUCHE", + "nomCommune": "GISSEY SUR OUCHE" }, { - "codePostal": "25150", - "codeCommune": "25281", - "libelleAcheminement": "GOUX LES DAMBELIN", - "nomCommune": "GOUX LES DAMBELIN" + "codePostal": "22290", + "codeCommune": "22177", + "libelleAcheminement": "PLEGUIEN", + "nomCommune": "PLEGUIEN" }, { - "codePostal": "50480", - "codeCommune": "50523", - "libelleAcheminement": "STE MERE EGLISE", - "nomCommune": "STE MERE EGLISE" + "codePostal": "31360", + "codeCommune": "31504", + "libelleAcheminement": "ST MEDARD", + "nomCommune": "ST MEDARD" }, { - "codePostal": "63760", - "codeCommune": "63048", - "libelleAcheminement": "BOURG LASTIC", - "nomCommune": "BOURG LASTIC" + "codePostal": "31230", + "codeCommune": "31373", + "libelleAcheminement": "MONTESQUIEU GUITTAUT", + "nomCommune": "MONTESQUIEU GUITTAUT" }, { - "codePostal": "59147", - "codeCommune": "59145", - "libelleAcheminement": "CHEMY", - "nomCommune": "CHEMY" + "codePostal": "21400", + "codeCommune": "21302", + "libelleAcheminement": "GOMMEVILLE", + "nomCommune": "GOMMEVILLE" }, { - "codePostal": "25200", - "codeCommune": "25284", - "libelleAcheminement": "GRAND CHARMONT", - "nomCommune": "GRAND CHARMONT" + "codePostal": "22210", + "codeCommune": "22183", + "libelleAcheminement": "PLEMET", + "nomCommune": "PLEMET" }, { - "codePostal": "50480", - "codeCommune": "50523", - "libelleAcheminement": "STE MERE EGLISE", - "nomCommune": "STE MERE EGLISE" + "codePostal": "31650", + "codeCommune": "31506", + "libelleAcheminement": "ST ORENS DE GAMEVILLE", + "nomCommune": "ST ORENS DE GAMEVILLE" }, { - "codePostal": "63490", - "codeCommune": "63056", - "libelleAcheminement": "BROUSSE", - "nomCommune": "BROUSSE" + "codePostal": "31450", + "codeCommune": "31374", + "libelleAcheminement": "MONTESQUIEU LAURAGAIS", + "nomCommune": "MONTESQUIEU LAURAGAIS" }, { - "codePostal": "59740", - "codeCommune": "59147", - "libelleAcheminement": "CHOISIES", - "nomCommune": "CHOISIES" + "codePostal": "21580", + "codeCommune": "21304", + "libelleAcheminement": "GRANCEY LE CHATEAU", + "nomCommune": "GRANCEY LE CHATEAU NEUVELLE" }, { - "codePostal": "25390", - "codeCommune": "25288", - "libelleAcheminement": "FOURNETS LUISANS", - "nomCommune": "FOURNETS LUISANS" + "codePostal": "22150", + "codeCommune": "22184", + "libelleAcheminement": "PLEMY", + "nomCommune": "PLEMY" }, { - "codePostal": "50480", - "codeCommune": "50523", - "libelleAcheminement": "STE MERE EGLISE", - "nomCommune": "STE MERE EGLISE" + "codePostal": "31570", + "codeCommune": "31512", + "libelleAcheminement": "ST PIERRE DE LAGES", + "nomCommune": "ST PIERRE DE LAGES" }, { - "codePostal": "63260", - "codeCommune": "63061", - "libelleAcheminement": "BUSSIERES ET PRUNS", - "nomCommune": "BUSSIERES ET PRUNS" + "codePostal": "31410", + "codeCommune": "31379", + "libelleAcheminement": "MONTGAZIN", + "nomCommune": "MONTGAZIN" }, { - "codePostal": "59210", - "codeCommune": "59155", - "libelleAcheminement": "COUDEKERQUE BRANCHE", - "nomCommune": "COUDEKERQUE BRANCHE" + "codePostal": "21150", + "codeCommune": "21308", + "libelleAcheminement": "GRIGNON", + "nomCommune": "GRIGNON" }, { - "codePostal": "25380", - "codeCommune": "25290", - "libelleAcheminement": "LA GRANGE", - "nomCommune": "LA GRANGE" + "codePostal": "22310", + "codeCommune": "22194", + "libelleAcheminement": "PLESTIN LES GREVES", + "nomCommune": "PLESTIN LES GREVES" }, { - "codePostal": "50370", - "codeCommune": "50529", - "libelleAcheminement": "ST NICOLAS DES BOIS", - "nomCommune": "ST NICOLAS DES BOIS" + "codePostal": "31580", + "codeCommune": "31513", + "libelleAcheminement": "ST PLANCARD", + "nomCommune": "ST PLANCARD" }, { - "codePostal": "63620", - "codeCommune": "63064", - "libelleAcheminement": "LA CELLE", - "nomCommune": "LA CELLE" + "codePostal": "31450", + "codeCommune": "31384", + "libelleAcheminement": "MONTLAUR", + "nomCommune": "MONTLAUR" }, { - "codePostal": "59149", - "codeCommune": "59157", - "libelleAcheminement": "COUSOLRE", - "nomCommune": "COUSOLRE" + "codePostal": "21540", + "codeCommune": "21310", + "libelleAcheminement": "GROSBOIS EN MONTAGNE", + "nomCommune": "GROSBOIS EN MONTAGNE" }, { - "codePostal": "25110", - "codeCommune": "25298", - "libelleAcheminement": "GROSBOIS", - "nomCommune": "GROSBOIS" + "codePostal": "22610", + "codeCommune": "22195", + "libelleAcheminement": "PLEUBIAN", + "nomCommune": "PLEUBIAN" }, { - "codePostal": "50870", - "codeCommune": "50535", - "libelleAcheminement": "LE PARC", - "nomCommune": "LE PARC" + "codePostal": "31620", + "codeCommune": "31515", + "libelleAcheminement": "ST RUSTICE", + "nomCommune": "ST RUSTICE" }, { - "codePostal": "63670", - "codeCommune": "63069", - "libelleAcheminement": "LE CENDRE", - "nomCommune": "LE CENDRE" + "codePostal": "31420", + "codeCommune": "31386", + "libelleAcheminement": "MONTOULIEU ST BERNARD", + "nomCommune": "MONTOULIEU ST BERNARD" }, { - "codePostal": "59279", - "codeCommune": "59159", - "libelleAcheminement": "CRAYWICK", - "nomCommune": "CRAYWICK" + "codePostal": "21110", + "codeCommune": "21319", + "libelleAcheminement": "IZEURE", + "nomCommune": "IZEURE" }, { - "codePostal": "25650", - "codeCommune": "25303", - "libelleAcheminement": "HAUTERIVE LA FRESSE", - "nomCommune": "HAUTERIVE LA FRESSE" + "codePostal": "22690", + "codeCommune": "22197", + "libelleAcheminement": "PLEUDIHEN SUR RANCE", + "nomCommune": "PLEUDIHEN SUR RANCE" }, { - "codePostal": "50220", - "codeCommune": "50543", - "libelleAcheminement": "ST QUENTIN SUR LE HOMME", - "nomCommune": "ST QUENTIN SUR LE HOMME" + "codePostal": "31350", + "codeCommune": "31532", + "libelleAcheminement": "SARREMEZAN", + "nomCommune": "SARREMEZAN" }, { - "codePostal": "63320", - "codeCommune": "63073", - "libelleAcheminement": "CHADELEUF", - "nomCommune": "CHADELEUF" + "codePostal": "31850", + "codeCommune": "31389", + "libelleAcheminement": "MONTRABE", + "nomCommune": "MONTRABE" }, { - "codePostal": "59553", - "codeCommune": "59165", - "libelleAcheminement": "CUINCY", - "nomCommune": "CUINCY" + "codePostal": "21820", + "codeCommune": "21332", + "libelleAcheminement": "LABERGEMENT LES SEURRE", + "nomCommune": "LABERGEMENT LES SEURRE" }, { - "codePostal": "25110", - "codeCommune": "25312", - "libelleAcheminement": "HYEVRE MAGNY", - "nomCommune": "HYEVRE MAGNY" + "codePostal": "22240", + "codeCommune": "22201", + "libelleAcheminement": "PLEVENON", + "nomCommune": "PLEVENON" }, { - "codePostal": "50750", - "codeCommune": "50546", - "libelleAcheminement": "BOURGVALLEES", - "nomCommune": "BOURGVALLEES" + "codePostal": "31600", + "codeCommune": "31533", + "libelleAcheminement": "SAUBENS", + "nomCommune": "SAUBENS" }, { - "codePostal": "63980", - "codeCommune": "63076", - "libelleAcheminement": "CHAMBON SUR DOLORE", - "nomCommune": "CHAMBON SUR DOLORE" + "codePostal": "31460", + "codeCommune": "31392", + "libelleAcheminement": "MOURVILLES BASSES", + "nomCommune": "MOURVILLES BASSES" }, { - "codePostal": "59220", - "codeCommune": "59172", - "libelleAcheminement": "DENAIN", - "nomCommune": "DENAIN" + "codePostal": "21210", + "codeCommune": "21335", + "libelleAcheminement": "LACOUR D ARCENAY", + "nomCommune": "LACOUR D ARCENAY" }, { - "codePostal": "25110", - "codeCommune": "25313", - "libelleAcheminement": "HYEVRE PAROISSE", - "nomCommune": "HYEVRE PAROISSE" + "codePostal": "22130", + "codeCommune": "22205", + "libelleAcheminement": "PLOREC SUR ARGUENON", + "nomCommune": "PLOREC SUR ARGUENON" }, { - "codePostal": "50750", - "codeCommune": "50546", - "libelleAcheminement": "BOURGVALLEES", - "nomCommune": "BOURGVALLEES" + "codePostal": "31510", + "codeCommune": "31535", + "libelleAcheminement": "SAUVETERRE DE COMMINGES", + "nomCommune": "SAUVETERRE DE COMMINGES" }, { - "codePostal": "63790", - "codeCommune": "63077", - "libelleAcheminement": "CHAMBON SUR LAC", - "nomCommune": "CHAMBON SUR LAC" + "codePostal": "31110", + "codeCommune": "31394", + "libelleAcheminement": "MOUSTAJON", + "nomCommune": "MOUSTAJON" }, { - "codePostal": "59500", - "codeCommune": "59178", - "libelleAcheminement": "DOUAI", - "nomCommune": "DOUAI" + "codePostal": "21330", + "codeCommune": "21336", + "libelleAcheminement": "LAIGNES", + "nomCommune": "LAIGNES" }, { - "codePostal": "25250", - "codeCommune": "25315", - "libelleAcheminement": "L ISLE SUR LE DOUBS", - "nomCommune": "L ISLE SUR LE DOUBS" + "codePostal": "22620", + "codeCommune": "22210", + "libelleAcheminement": "PLOUBAZLANEC", + "nomCommune": "PLOUBAZLANEC" }, { - "codePostal": "50490", - "codeCommune": "50550", - "libelleAcheminement": "ST SAUVEUR VILLAGES", - "nomCommune": "ST SAUVEUR VILLAGES" + "codePostal": "31460", + "codeCommune": "31540", + "libelleAcheminement": "SEGREVILLE", + "nomCommune": "SEGREVILLE" }, { - "codePostal": "63530", - "codeCommune": "63083", - "libelleAcheminement": "CHANAT LA MOUTEYRE", - "nomCommune": "CHANAT LA MOUTEYRE" + "codePostal": "31600", + "codeCommune": "31395", + "libelleAcheminement": "MURET", + "nomCommune": "MURET" }, { - "codePostal": "59630", - "codeCommune": "59182", - "libelleAcheminement": "DRINCHAM", - "nomCommune": "DRINCHAM" + "codePostal": "21200", + "codeCommune": "21347", + "libelleAcheminement": "LEVERNOIS", + "nomCommune": "LEVERNOIS" }, { - "codePostal": "25170", - "codeCommune": "25317", - "libelleAcheminement": "JALLERANGE", - "nomCommune": "JALLERANGE" + "codePostal": "22440", + "codeCommune": "22215", + "libelleAcheminement": "PLOUFRAGAN", + "nomCommune": "PLOUFRAGAN" }, { - "codePostal": "50490", - "codeCommune": "50550", - "libelleAcheminement": "ST SAUVEUR VILLAGES", - "nomCommune": "ST SAUVEUR VILLAGES" + "codePostal": "31170", + "codeCommune": "31557", + "libelleAcheminement": "TOURNEFEUILLE", + "nomCommune": "TOURNEFEUILLE" }, { - "codePostal": "63450", - "codeCommune": "63084", - "libelleAcheminement": "CHANONAT", - "nomCommune": "CHANONAT" + "codePostal": "31350", + "codeCommune": "31397", + "libelleAcheminement": "NENIGAN", + "nomCommune": "NENIGAN" }, { - "codePostal": "59240", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "21610", + "codeCommune": "21348", + "libelleAcheminement": "LICEY SUR VINGEANNE", + "nomCommune": "LICEY SUR VINGEANNE" }, { - "codePostal": "25270", - "codeCommune": "25334", - "libelleAcheminement": "LEVIER", - "nomCommune": "LEVIER" + "codePostal": "22440", + "codeCommune": "22215", + "libelleAcheminement": "PLOUFRAGAN", + "nomCommune": "PLOUFRAGAN" }, { - "codePostal": "50750", - "codeCommune": "50556", - "libelleAcheminement": "STE SUZANNE SUR VIRE", - "nomCommune": "STE SUZANNE SUR VIRE" + "codePostal": "31260", + "codeCommune": "31562", + "libelleAcheminement": "URAU", + "nomCommune": "URAU" }, { - "codePostal": "63140", - "codeCommune": "63103", - "libelleAcheminement": "CHATEL GUYON", - "nomCommune": "CHATEL GUYON" + "codePostal": "31330", + "codeCommune": "31403", + "libelleAcheminement": "ONDES", + "nomCommune": "ONDES" }, { - "codePostal": "59114", - "codeCommune": "59189", - "libelleAcheminement": "EECKE", - "nomCommune": "EECKE" + "codePostal": "21430", + "codeCommune": "21349", + "libelleAcheminement": "LIERNAIS", + "nomCommune": "LIERNAIS" }, { - "codePostal": "25190", - "codeCommune": "25335", - "libelleAcheminement": "LIEBVILLERS", - "nomCommune": "LIEBVILLERS" + "codePostal": "22220", + "codeCommune": "22221", + "libelleAcheminement": "PLOUGUIEL", + "nomCommune": "PLOUGUIEL" }, { - "codePostal": "50530", - "codeCommune": "50565", - "libelleAcheminement": "SARTILLY BAIE BOCAGE", - "nomCommune": "SARTILLY BAIE BOCAGE" + "codePostal": "31540", + "codeCommune": "31570", + "libelleAcheminement": "VAUX", + "nomCommune": "VAUX" }, { - "codePostal": "63720", - "codeCommune": "63107", - "libelleAcheminement": "CHAVAROUX", - "nomCommune": "CHAVAROUX" + "codePostal": "31220", + "codeCommune": "31406", + "libelleAcheminement": "PALAMINY", + "nomCommune": "PALAMINY" }, { - "codePostal": "59320", - "codeCommune": "59193", - "libelleAcheminement": "EMMERIN", - "nomCommune": "EMMERIN" + "codePostal": "21230", + "codeCommune": "21354", + "libelleAcheminement": "LONGECOURT LES CULETRE", + "nomCommune": "LONGECOURT LES CULETRE" }, { - "codePostal": "25930", - "codeCommune": "25339", - "libelleAcheminement": "LODS", - "nomCommune": "LODS" + "codePostal": "22290", + "codeCommune": "22236", + "libelleAcheminement": "PLUDUAL", + "nomCommune": "PLUDUAL" }, { - "codePostal": "50480", - "codeCommune": "50571", - "libelleAcheminement": "SEBEVILLE", - "nomCommune": "SEBEVILLE" + "codePostal": "31860", + "codeCommune": "31580", + "libelleAcheminement": "VILLATE", + "nomCommune": "VILLATE" }, { - "codePostal": "63610", - "codeCommune": "63117", - "libelleAcheminement": "COMPAINS", - "nomCommune": "COMPAINS" + "codePostal": "31420", + "codeCommune": "31414", + "libelleAcheminement": "PEYRISSAS", + "nomCommune": "PEYRISSAS" }, { - "codePostal": "59320", - "codeCommune": "59196", - "libelleAcheminement": "ENNETIERES EN WEPPES", - "nomCommune": "ENNETIERES EN WEPPES" + "codePostal": "21360", + "codeCommune": "21360", + "libelleAcheminement": "LUSIGNY SUR OUCHE", + "nomCommune": "LUSIGNY SUR OUCHE" }, { - "codePostal": "25380", - "codeCommune": "25344", - "libelleAcheminement": "LONGEVELLE LES RUSSEY", - "nomCommune": "LONGEVELLE LES RUSSEY" + "codePostal": "22390", + "codeCommune": "22249", + "libelleAcheminement": "PONT MELVEZ", + "nomCommune": "PONT MELVEZ" }, { - "codePostal": "50150", - "codeCommune": "50582", - "libelleAcheminement": "SOURDEVAL", - "nomCommune": "SOURDEVAL" + "codePostal": "31580", + "codeCommune": "31586", + "libelleAcheminement": "VILLENEUVE LECUSSAN", + "nomCommune": "VILLENEUVE LECUSSAN" }, { - "codePostal": "63114", - "codeCommune": "63121", - "libelleAcheminement": "COUDES", - "nomCommune": "COUDES" + "codePostal": "31390", + "codeCommune": "31416", + "libelleAcheminement": "PEYSSIES", + "nomCommune": "PEYSSIES" }, { - "codePostal": "59132", - "codeCommune": "59198", - "libelleAcheminement": "EPPE SAUVAGE", - "nomCommune": "EPPE SAUVAGE" + "codePostal": "21110", + "codeCommune": "21370", + "libelleAcheminement": "MAGNY SUR TILLE", + "nomCommune": "MAGNY SUR TILLE" }, { - "codePostal": "25260", - "codeCommune": "25345", - "libelleAcheminement": "LONGEVELLE SUR DOUBS", - "nomCommune": "LONGEVELLE SUR DOUBS" + "codePostal": "22450", + "codeCommune": "22257", + "libelleAcheminement": "QUEMPERVEN", + "nomCommune": "QUEMPERVEN" }, { - "codePostal": "50320", - "codeCommune": "50590", - "libelleAcheminement": "LE TANU", - "nomCommune": "LE TANU" + "codePostal": "31290", + "codeCommune": "31589", + "libelleAcheminement": "VILLENOUVELLE", + "nomCommune": "VILLENOUVELLE" }, { - "codePostal": "63320", - "codeCommune": "63122", - "libelleAcheminement": "COURGOUL", - "nomCommune": "COURGOUL" + "codePostal": "31130", + "codeCommune": "31418", + "libelleAcheminement": "PIN BALMA", + "nomCommune": "PIN BALMA" }, { - "codePostal": "59161", - "codeCommune": "59206", - "libelleAcheminement": "ESCAUDOEUVRES", - "nomCommune": "ESCAUDOEUVRES" + "codePostal": "21110", + "codeCommune": "21388", + "libelleAcheminement": "MARLIENS", + "nomCommune": "MARLIENS" }, { - "codePostal": "25330", - "codeCommune": "25346", - "libelleAcheminement": "LONGEVILLE", - "nomCommune": "LONGEVILLE" + "codePostal": "22300", + "codeCommune": "22265", + "libelleAcheminement": "ROSPEZ", + "nomCommune": "ROSPEZ" }, { - "codePostal": "50640", - "codeCommune": "50591", - "libelleAcheminement": "LE TEILLEUL", - "nomCommune": "LE TEILLEUL" + "codePostal": "31260", + "codeCommune": "31591", + "libelleAcheminement": "ESCOULIS", + "nomCommune": "ESCOULIS" }, { - "codePostal": "63800", - "codeCommune": "63124", - "libelleAcheminement": "COURNON D AUVERGNE", - "nomCommune": "COURNON D AUVERGNE" + "codePostal": "31120", + "codeCommune": "31433", + "libelleAcheminement": "PORTET SUR GARONNE", + "nomCommune": "PORTET SUR GARONNE" }, { - "codePostal": "59161", - "codeCommune": "59216", - "libelleAcheminement": "ESWARS", - "nomCommune": "ESWARS" + "codePostal": "21160", + "codeCommune": "21390", + "libelleAcheminement": "MARSANNAY LA COTE", + "nomCommune": "MARSANNAY LA COTE" }, { - "codePostal": "25650", - "codeCommune": "25347", - "libelleAcheminement": "LA LONGEVILLE", - "nomCommune": "LA LONGEVILLE" + "codePostal": "22390", + "codeCommune": "22271", + "libelleAcheminement": "ST ADRIEN", + "nomCommune": "ST ADRIEN" }, { - "codePostal": "50640", - "codeCommune": "50591", - "libelleAcheminement": "LE TEILLEUL", - "nomCommune": "LE TEILLEUL" + "codePostal": "31230", + "codeCommune": "31593", + "libelleAcheminement": "CAZAC", + "nomCommune": "CAZAC" }, { - "codePostal": "63350", - "codeCommune": "63131", - "libelleAcheminement": "CULHAT", - "nomCommune": "CULHAT" + "codePostal": "31230", + "codeCommune": "31443", + "libelleAcheminement": "PUYMAURIN", + "nomCommune": "PUYMAURIN" }, { - "codePostal": "59155", - "codeCommune": "59220", - "libelleAcheminement": "FACHES THUMESNIL", - "nomCommune": "FACHES THUMESNIL" + "codePostal": "21400", + "codeCommune": "21393", + "libelleAcheminement": "MASSINGY", + "nomCommune": "MASSINGY" }, { - "codePostal": "25640", - "codeCommune": "25368", - "libelleAcheminement": "MARCHAUX CHAUDEFONTAINE", - "nomCommune": "MARCHAUX CHAUDEFONTAINE" + "codePostal": "22400", + "codeCommune": "22273", + "libelleAcheminement": "ST ALBAN", + "nomCommune": "ST ALBAN" }, { - "codePostal": "50420", - "codeCommune": "50592", - "libelleAcheminement": "TESSY BOCAGE", - "nomCommune": "TESSY BOCAGE" + "codePostal": "32430", + "codeCommune": "32007", + "libelleAcheminement": "ARDIZAS", + "nomCommune": "ARDIZAS" }, { - "codePostal": "63220", - "codeCommune": "63137", - "libelleAcheminement": "DORANGES", - "nomCommune": "DORANGES" + "codePostal": "31130", + "codeCommune": "31445", + "libelleAcheminement": "QUINT FONSEGRIVES", + "nomCommune": "QUINT FONSEGRIVES" }, { - "codePostal": "59300", - "codeCommune": "59221", - "libelleAcheminement": "FAMARS", - "nomCommune": "FAMARS" + "codePostal": "21220", + "codeCommune": "21407", + "libelleAcheminement": "MESSANGES", + "nomCommune": "MESSANGES" }, { - "codePostal": "25410", - "codeCommune": "25374", - "libelleAcheminement": "MERCEY LE GRAND", - "nomCommune": "MERCEY LE GRAND" + "codePostal": "22150", + "codeCommune": "22281", + "libelleAcheminement": "ST CARREUC", + "nomCommune": "ST CARREUC" }, { - "codePostal": "50420", - "codeCommune": "50592", - "libelleAcheminement": "TESSY BOCAGE", - "nomCommune": "TESSY BOCAGE" + "codePostal": "32450", + "codeCommune": "32018", + "libelleAcheminement": "AURIMONT", + "nomCommune": "AURIMONT" }, { - "codePostal": "63840", - "codeCommune": "63147", - "libelleAcheminement": "EGLISOLLES", - "nomCommune": "EGLISOLLES" + "codePostal": "31250", + "codeCommune": "31451", + "libelleAcheminement": "REVEL", + "nomCommune": "REVEL" }, { - "codePostal": "59550", - "codeCommune": "59223", - "libelleAcheminement": "LE FAVRIL", - "nomCommune": "LE FAVRIL" + "codePostal": "21380", + "codeCommune": "21408", + "libelleAcheminement": "MESSIGNY ET VANTOUX", + "nomCommune": "MESSIGNY ET VANTOUX" }, { - "codePostal": "25680", - "codeCommune": "25377", - "libelleAcheminement": "MESANDANS", - "nomCommune": "MESANDANS" + "codePostal": "22380", + "codeCommune": "22282", + "libelleAcheminement": "ST CAST LE GUILDO", + "nomCommune": "ST CAST LE GUILDO" }, { - "codePostal": "50470", - "codeCommune": "50599", - "libelleAcheminement": "TOLLEVAST", - "nomCommune": "TOLLEVAST" + "codePostal": "32120", + "codeCommune": "32026", + "libelleAcheminement": "BAJONNETTE", + "nomCommune": "BAJONNETTE" }, { - "codePostal": "63300", - "codeCommune": "63151", - "libelleAcheminement": "ESCOUTOUX", - "nomCommune": "ESCOUTOUX" + "codePostal": "31120", + "codeCommune": "31458", + "libelleAcheminement": "ROQUES", + "nomCommune": "ROQUES" }, { - "codePostal": "59128", - "codeCommune": "59234", - "libelleAcheminement": "FLERS EN ESCREBIEUX", - "nomCommune": "FLERS EN ESCREBIEUX" + "codePostal": "21510", + "codeCommune": "21410", + "libelleAcheminement": "MEULSON", + "nomCommune": "MEULSON" }, { - "codePostal": "25370", - "codeCommune": "25380", - "libelleAcheminement": "METABIEF", - "nomCommune": "METABIEF" + "codePostal": "22260", + "codeCommune": "22283", + "libelleAcheminement": "ST CLET", + "nomCommune": "ST CLET" }, { - "codePostal": "50760", - "codeCommune": "50613", - "libelleAcheminement": "VALCANVILLE", - "nomCommune": "VALCANVILLE" + "codePostal": "32190", + "codeCommune": "32031", + "libelleAcheminement": "BASCOUS", + "nomCommune": "BASCOUS" }, { - "codePostal": "63570", - "codeCommune": "63156", - "libelleAcheminement": "ESTEIL", - "nomCommune": "ESTEIL" + "codePostal": "31120", + "codeCommune": "31460", + "libelleAcheminement": "ROQUETTES", + "nomCommune": "ROQUETTES" }, { - "codePostal": "59222", - "codeCommune": "59246", - "libelleAcheminement": "FOREST EN CAMBRESIS", - "nomCommune": "FOREST EN CAMBRESIS" + "codePostal": "21200", + "codeCommune": "21411", + "libelleAcheminement": "MEURSANGES", + "nomCommune": "MEURSANGES" }, { - "codePostal": "25870", - "codeCommune": "25382", - "libelleAcheminement": "MONCEY", - "nomCommune": "MONCEY" + "codePostal": "22720", + "codeCommune": "22289", + "libelleAcheminement": "ST FIACRE", + "nomCommune": "ST FIACRE" }, { - "codePostal": "50310", - "codeCommune": "50621", - "libelleAcheminement": "VAUDREVILLE", - "nomCommune": "VAUDREVILLE" + "codePostal": "32160", + "codeCommune": "32036", + "libelleAcheminement": "BEAUMARCHES", + "nomCommune": "BEAUMARCHES" }, { - "codePostal": "63630", - "codeCommune": "63158", - "libelleAcheminement": "FAYET RONAYE", - "nomCommune": "FAYET RONAYE" + "codePostal": "31470", + "codeCommune": "31466", + "libelleAcheminement": "SAIGUEDE", + "nomCommune": "SAIGUEDE" }, { - "codePostal": "59510", - "codeCommune": "59247", - "libelleAcheminement": "FOREST SUR MARQUE", - "nomCommune": "FOREST SUR MARQUE" + "codePostal": "21230", + "codeCommune": "21414", + "libelleAcheminement": "MIMEURE", + "nomCommune": "MIMEURE" }, { - "codePostal": "25170", - "codeCommune": "25383", - "libelleAcheminement": "MONCLEY", - "nomCommune": "MONCLEY" + "codePostal": "22290", + "codeCommune": "22293", + "libelleAcheminement": "ST GILLES LES BOIS", + "nomCommune": "ST GILLES LES BOIS" }, { - "codePostal": "50450", - "codeCommune": "50626", - "libelleAcheminement": "VER", - "nomCommune": "VER" + "codePostal": "32400", + "codeCommune": "32046", + "libelleAcheminement": "BERNEDE", + "nomCommune": "BERNEDE" }, { - "codePostal": "63210", - "codeCommune": "63176", - "libelleAcheminement": "HEUME L EGLISE", - "nomCommune": "HEUME L EGLISE" + "codePostal": "31110", + "codeCommune": "31470", + "libelleAcheminement": "ST AVENTIN", + "nomCommune": "ST AVENTIN" }, { - "codePostal": "59234", - "codeCommune": "59254", - "libelleAcheminement": "FRESSAIN", - "nomCommune": "FRESSAIN" + "codePostal": "21250", + "codeCommune": "21424", + "libelleAcheminement": "MONTAGNY LES SEURRE", + "nomCommune": "MONTAGNY LES SEURRE" }, { - "codePostal": "25190", - "codeCommune": "25386", - "libelleAcheminement": "MONTANCY", - "nomCommune": "MONTANCY" + "codePostal": "22980", + "codeCommune": "22317", + "libelleAcheminement": "ST MELOIR DES BOIS", + "nomCommune": "ST MELOIR DES BOIS" }, { - "codePostal": "50430", - "codeCommune": "50629", - "libelleAcheminement": "VESLY", - "nomCommune": "VESLY" + "codePostal": "32310", + "codeCommune": "32052", + "libelleAcheminement": "BEZOLLES", + "nomCommune": "BEZOLLES" }, { - "codePostal": "63350", - "codeCommune": "63180", - "libelleAcheminement": "JOZE", - "nomCommune": "JOZE" + "codePostal": "31330", + "codeCommune": "31473", + "libelleAcheminement": "ST CEZERT", + "nomCommune": "ST CEZERT" }, { - "codePostal": "59268", - "codeCommune": "59255", - "libelleAcheminement": "FRESSIES", - "nomCommune": "FRESSIES" + "codePostal": "21250", + "codeCommune": "21436", + "libelleAcheminement": "MONTMAIN", + "nomCommune": "MONTMAIN" }, { - "codePostal": "25190", - "codeCommune": "25387", - "libelleAcheminement": "MONTANDON", - "nomCommune": "MONTANDON" + "codePostal": "22300", + "codeCommune": "22319", + "libelleAcheminement": "ST MICHEL EN GREVE", + "nomCommune": "ST MICHEL EN GREVE" }, { - "codePostal": "50630", - "codeCommune": "50634", - "libelleAcheminement": "VIDECOSVILLE", - "nomCommune": "VIDECOSVILLE" + "codePostal": "32550", + "codeCommune": "32060", + "libelleAcheminement": "BOUCAGNERES", + "nomCommune": "BOUCAGNERES" }, { - "codePostal": "63700", - "codeCommune": "63187", - "libelleAcheminement": "LAPEYROUSE", - "nomCommune": "LAPEYROUSE" + "codePostal": "31310", + "codeCommune": "31474", + "libelleAcheminement": "ST CHRISTAUD", + "nomCommune": "ST CHRISTAUD" }, { - "codePostal": "59249", - "codeCommune": "59257", - "libelleAcheminement": "FROMELLES", - "nomCommune": "FROMELLES" + "codePostal": "21270", + "codeCommune": "21437", + "libelleAcheminement": "MONTMANCON", + "nomCommune": "MONTMANCON" }, { - "codePostal": "25210", - "codeCommune": "25389", - "libelleAcheminement": "MONTBELIARDOT", - "nomCommune": "MONTBELIARDOT" + "codePostal": "22100", + "codeCommune": "22327", + "libelleAcheminement": "ST SAMSON SUR RANCE", + "nomCommune": "ST SAMSON SUR RANCE" }, { - "codePostal": "50700", - "codeCommune": "50648", - "libelleAcheminement": "YVETOT BOCAGE", - "nomCommune": "YVETOT BOCAGE" + "codePostal": "32800", + "codeCommune": "32064", + "libelleAcheminement": "BRETAGNE D ARMAGNAC", + "nomCommune": "BRETAGNE D ARMAGNAC" }, { - "codePostal": "63200", - "codeCommune": "63203", - "libelleAcheminement": "MALAUZAT", - "nomCommune": "MALAUZAT" + "codePostal": "31180", + "codeCommune": "31484", + "libelleAcheminement": "ST GENIES BELLEVUE", + "nomCommune": "ST GENIES BELLEVUE" }, { - "codePostal": "59169", - "codeCommune": "59263", - "libelleAcheminement": "GOEULZIN", - "nomCommune": "GOEULZIN" + "codePostal": "21230", + "codeCommune": "21447", + "libelleAcheminement": "MUSIGNY", + "nomCommune": "MUSIGNY" }, { - "codePostal": "25650", - "codeCommune": "25390", - "libelleAcheminement": "MONTBENOIT", - "nomCommune": "MONTBENOIT" + "codePostal": "22230", + "codeCommune": "22333", + "libelleAcheminement": "ST VRAN", + "nomCommune": "ST VRAN" }, { - "codePostal": "51150", - "codeCommune": "51007", - "libelleAcheminement": "AMBONNAY", - "nomCommune": "AMBONNAY" + "codePostal": "32500", + "codeCommune": "32066", + "libelleAcheminement": "BRUGNENS", + "nomCommune": "BRUGNENS" }, { - "codePostal": "63510", - "codeCommune": "63204", - "libelleAcheminement": "MALINTRAT", - "nomCommune": "MALINTRAT" + "codePostal": "31380", + "codeCommune": "31489", + "libelleAcheminement": "ST JEAN LHERM", + "nomCommune": "ST JEAN LHERM" }, { - "codePostal": "59231", - "codeCommune": "59269", - "libelleAcheminement": "GOUZEAUCOURT", - "nomCommune": "GOUZEAUCOURT" + "codePostal": "21500", + "codeCommune": "21456", + "libelleAcheminement": "NOGENT LES MONTBARD", + "nomCommune": "NOGENT LES MONTBARD" }, { - "codePostal": "25160", - "codeCommune": "25405", - "libelleAcheminement": "MONTPERREUX", - "nomCommune": "MONTPERREUX" + "codePostal": "22570", + "codeCommune": "22334", + "libelleAcheminement": "ST IGEAUX", + "nomCommune": "ST IGEAUX" }, { - "codePostal": "51160", - "codeCommune": "51028", - "libelleAcheminement": "AVENAY VAL D OR", - "nomCommune": "AVENAY VAL D OR" + "codePostal": "32320", + "codeCommune": "32077", + "libelleAcheminement": "CASTELNAU D ANGLES", + "nomCommune": "CASTELNAU D ANGLES" }, { - "codePostal": "63480", - "codeCommune": "63207", - "libelleAcheminement": "MARAT", - "nomCommune": "MARAT" + "codePostal": "31590", + "codeCommune": "31501", + "libelleAcheminement": "ST MARCEL PAULEL", + "nomCommune": "ST MARCEL PAULEL" }, { - "codePostal": "59153", - "codeCommune": "59272", - "libelleAcheminement": "GRAND FORT PHILIPPE", - "nomCommune": "GRAND FORT PHILIPPE" + "codePostal": "21310", + "codeCommune": "21459", + "libelleAcheminement": "NOIRON SUR BEZE", + "nomCommune": "NOIRON SUR BEZE" }, { - "codePostal": "25920", - "codeCommune": "25415", - "libelleAcheminement": "MOUTHIER HAUTE PIERRE", - "nomCommune": "MOUTHIER HAUTE PIERRE" + "codePostal": "22510", + "codeCommune": "22346", + "libelleAcheminement": "TREDANIEL", + "nomCommune": "TREDANIEL" }, { - "codePostal": "51160", - "codeCommune": "51030", - "libelleAcheminement": "AY CHAMPAGNE", - "nomCommune": "AY CHAMPAGNE" + "codePostal": "32410", + "codeCommune": "32083", + "libelleAcheminement": "CASTERA VERDUZAN", + "nomCommune": "CASTERA VERDUZAN" }, { - "codePostal": "63350", - "codeCommune": "63210", - "libelleAcheminement": "MARINGUES", - "nomCommune": "MARINGUES" + "codePostal": "31220", + "codeCommune": "31505", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "59138", - "codeCommune": "59283", - "libelleAcheminement": "HARGNIES", - "nomCommune": "HARGNIES" + "codePostal": "21400", + "codeCommune": "21465", + "libelleAcheminement": "OBTREE", + "nomCommune": "OBTREE" }, { - "codePostal": "25680", - "codeCommune": "25419", - "libelleAcheminement": "NANS", - "nomCommune": "NANS" + "codePostal": "22630", + "codeCommune": "22352", + "libelleAcheminement": "TREFUMEL", + "nomCommune": "TREFUMEL" }, { - "codePostal": "51270", - "codeCommune": "51034", - "libelleAcheminement": "BANNAY", - "nomCommune": "BANNAY" + "codePostal": "32170", + "codeCommune": "32086", + "libelleAcheminement": "CASTEX", + "nomCommune": "CASTEX" }, { - "codePostal": "63160", - "codeCommune": "63216", - "libelleAcheminement": "MAUZUN", - "nomCommune": "MAUZUN" + "codePostal": "31530", + "codeCommune": "31507", + "libelleAcheminement": "ST PAUL SUR SAVE", + "nomCommune": "ST PAUL SUR SAVE" }, { - "codePostal": "59191", - "codeCommune": "59287", - "libelleAcheminement": "HAUCOURT EN CAMBRESIS", - "nomCommune": "HAUCOURT EN CAMBRESIS" + "codePostal": "21250", + "codeCommune": "21475", + "libelleAcheminement": "PAGNY LE CHATEAU", + "nomCommune": "PAGNY LE CHATEAU" }, { - "codePostal": "25580", - "codeCommune": "25424", - "libelleAcheminement": "LES PREMIERS SAPINS", - "nomCommune": "LES PREMIERS SAPINS" + "codePostal": "22730", + "codeCommune": "22353", + "libelleAcheminement": "TREGASTEL", + "nomCommune": "TREGASTEL" }, { - "codePostal": "51270", - "codeCommune": "51042", - "libelleAcheminement": "BAYE", - "nomCommune": "BAYE" + "codePostal": "32810", + "codeCommune": "32091", + "libelleAcheminement": "CASTIN", + "nomCommune": "CASTIN" }, { - "codePostal": "63750", - "codeCommune": "63225", - "libelleAcheminement": "MESSEIX", - "nomCommune": "MESSEIX" + "codePostal": "31510", + "codeCommune": "31509", + "libelleAcheminement": "ST PE D ARDET", + "nomCommune": "ST PE D ARDET" }, { - "codePostal": "59199", - "codeCommune": "59301", - "libelleAcheminement": "HERGNIES", - "nomCommune": "HERGNIES" + "codePostal": "21540", + "codeCommune": "21477", + "libelleAcheminement": "PANGES", + "nomCommune": "PANGES" }, { - "codePostal": "25580", - "codeCommune": "25424", - "libelleAcheminement": "LES PREMIERS SAPINS", - "nomCommune": "LES PREMIERS SAPINS" + "codePostal": "22660", + "codeCommune": "22363", + "libelleAcheminement": "TRELEVERN", + "nomCommune": "TRELEVERN" }, { - "codePostal": "51300", - "codeCommune": "51059", - "libelleAcheminement": "BIGNICOURT SUR MARNE", - "nomCommune": "BIGNICOURT SUR MARNE" + "codePostal": "32100", + "codeCommune": "32095", + "libelleAcheminement": "CAUSSENS", + "nomCommune": "CAUSSENS" }, { - "codePostal": "63730", - "codeCommune": "63227", - "libelleAcheminement": "MIREFLEURS", - "nomCommune": "MIREFLEURS" + "codePostal": "31590", + "codeCommune": "31511", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "59570", - "codeCommune": "59310", - "libelleAcheminement": "HON HERGIES", - "nomCommune": "HON HERGIES" + "codePostal": "21440", + "codeCommune": "21479", + "libelleAcheminement": "PELLEREY", + "nomCommune": "PELLEREY" }, { - "codePostal": "25390", - "codeCommune": "25432", - "libelleAcheminement": "ORCHAMPS VENNES", - "nomCommune": "ORCHAMPS VENNES" + "codePostal": "22110", + "codeCommune": "22365", + "libelleAcheminement": "TREMARGAT", + "nomCommune": "TREMARGAT" }, { - "codePostal": "51340", - "codeCommune": "51060", - "libelleAcheminement": "BIGNICOURT SUR SAULX", - "nomCommune": "BIGNICOURT SUR SAULX" + "codePostal": "32800", + "codeCommune": "32100", + "libelleAcheminement": "CAZENEUVE", + "nomCommune": "CAZENEUVE" }, { - "codePostal": "63160", - "codeCommune": "63239", - "libelleAcheminement": "MONTMORIN", - "nomCommune": "MONTMORIN" + "codePostal": "31260", + "codeCommune": "31521", + "libelleAcheminement": "SALEICH", + "nomCommune": "SALEICH" }, { - "codePostal": "59460", - "codeCommune": "59324", - "libelleAcheminement": "JEUMONT", - "nomCommune": "JEUMONT" + "codePostal": "21420", + "codeCommune": "21480", + "libelleAcheminement": "PERNAND VERGELESSES", + "nomCommune": "PERNAND VERGELESSES" }, { - "codePostal": "25620", - "codeCommune": "25434", - "libelleAcheminement": "ORNANS", - "nomCommune": "ORNANS" + "codePostal": "22310", + "codeCommune": "22366", + "libelleAcheminement": "TREMEL", + "nomCommune": "TREMEL" }, { - "codePostal": "51800", - "codeCommune": "51062", - "libelleAcheminement": "BINARVILLE", - "nomCommune": "BINARVILLE" + "codePostal": "32430", + "codeCommune": "32106", + "libelleAcheminement": "COLOGNE", + "nomCommune": "COLOGNE" }, { - "codePostal": "63830", - "codeCommune": "63254", - "libelleAcheminement": "NOHANENT", - "nomCommune": "NOHANENT" + "codePostal": "31390", + "codeCommune": "31525", + "libelleAcheminement": "SALLES SUR GARONNE", + "nomCommune": "SALLES SUR GARONNE" }, { - "codePostal": "59390", - "codeCommune": "59332", - "libelleAcheminement": "LANNOY", - "nomCommune": "LANNOY" + "codePostal": "21160", + "codeCommune": "21481", + "libelleAcheminement": "PERRIGNY LES DIJON", + "nomCommune": "PERRIGNY LES DIJON" }, { - "codePostal": "25320", - "codeCommune": "25438", - "libelleAcheminement": "OSSELLE ROUTELLE", - "nomCommune": "OSSELLE ROUTELLE" + "codePostal": "22290", + "codeCommune": "22378", + "libelleAcheminement": "TREVEREC", + "nomCommune": "TREVEREC" }, { - "codePostal": "51390", - "codeCommune": "51072", - "libelleAcheminement": "BOUILLY", - "nomCommune": "BOUILLY" + "codePostal": "32330", + "codeCommune": "32110", + "libelleAcheminement": "COURRENSAN", + "nomCommune": "COURRENSAN" }, { - "codePostal": "63340", - "codeCommune": "63255", - "libelleAcheminement": "NONETTE ORSONNETTE", - "nomCommune": "NONETTE ORSONNETTE" + "codePostal": "31430", + "codeCommune": "31543", + "libelleAcheminement": "SENARENS", + "nomCommune": "SENARENS" }, { - "codePostal": "59553", - "codeCommune": "59334", - "libelleAcheminement": "LAUWIN PLANQUE", - "nomCommune": "LAUWIN PLANQUE" + "codePostal": "21370", + "codeCommune": "21485", + "libelleAcheminement": "PLOMBIERES LES DIJON", + "nomCommune": "PLOMBIERES LES DIJON" }, { - "codePostal": "25690", - "codeCommune": "25447", - "libelleAcheminement": "PASSONFONTAINE", - "nomCommune": "PASSONFONTAINE" + "codePostal": "22660", + "codeCommune": "22379", + "libelleAcheminement": "TREVOU TREGUIGNEC", + "nomCommune": "TREVOU TREGUIGNEC" }, { - "codePostal": "51170", - "codeCommune": "51073", - "libelleAcheminement": "BOULEUSE", - "nomCommune": "BOULEUSE" + "codePostal": "32190", + "codeCommune": "32115", + "libelleAcheminement": "DEMU", + "nomCommune": "DEMU" }, { - "codePostal": "63550", - "codeCommune": "63267", - "libelleAcheminement": "PALLADUC", - "nomCommune": "PALLADUC" + "codePostal": "31560", + "codeCommune": "31546", + "libelleAcheminement": "SEYRE", + "nomCommune": "SEYRE" }, { - "codePostal": "59226", - "codeCommune": "59335", - "libelleAcheminement": "LECELLES", - "nomCommune": "LECELLES" + "codePostal": "21110", + "codeCommune": "21487", + "libelleAcheminement": "PLUVET", + "nomCommune": "PLUVET" }, { - "codePostal": "25210", - "codeCommune": "25456", - "libelleAcheminement": "PLAIMBOIS DU MIROIR", - "nomCommune": "PLAIMBOIS DU MIROIR" + "codePostal": "22450", + "codeCommune": "22381", + "libelleAcheminement": "TREZENY", + "nomCommune": "TREZENY" }, { - "codePostal": "51110", - "codeCommune": "51075", - "libelleAcheminement": "BOURGOGNE FRESNE", - "nomCommune": "BOURGOGNE FRESNE" + "codePostal": "32430", + "codeCommune": "32120", + "libelleAcheminement": "ENCAUSSE", + "nomCommune": "ENCAUSSE" }, { - "codePostal": "63500", - "codeCommune": "63270", - "libelleAcheminement": "PARENTIGNAT", - "nomCommune": "PARENTIGNAT" + "codePostal": "31160", + "codeCommune": "31550", + "libelleAcheminement": "SOUEICH", + "nomCommune": "SOUEICH" }, { - "codePostal": "59143", - "codeCommune": "59337", - "libelleAcheminement": "LEDERZEELE", - "nomCommune": "LEDERZEELE" + "codePostal": "21330", + "codeCommune": "21488", + "libelleAcheminement": "POINCON LES LARREY", + "nomCommune": "POINCON LES LARREY" }, { - "codePostal": "25390", - "codeCommune": "25457", - "libelleAcheminement": "PLAIMBOIS VENNES", - "nomCommune": "PLAIMBOIS VENNES" + "codePostal": "22690", + "codeCommune": "22385", + "libelleAcheminement": "LA VICOMTE SUR RANCE", + "nomCommune": "LA VICOMTE SUR RANCE" }, { - "codePostal": "51400", - "codeCommune": "51078", - "libelleAcheminement": "BOUY", - "nomCommune": "BOUY" + "codePostal": "32370", + "codeCommune": "32125", + "libelleAcheminement": "ESPAS", + "nomCommune": "ESPAS" }, { - "codePostal": "63290", - "codeCommune": "63271", - "libelleAcheminement": "PASLIERES", - "nomCommune": "PASLIERES" + "codePostal": "31500", + "codeCommune": "31555", + "libelleAcheminement": "TOULOUSE", + "nomCommune": "TOULOUSE" }, { - "codePostal": "59470", - "codeCommune": "59338", - "libelleAcheminement": "LEDRINGHEM", - "nomCommune": "LEDRINGHEM" + "codePostal": "21440", + "codeCommune": "21489", + "libelleAcheminement": "POISEUL LA GRANGE", + "nomCommune": "POISEUL LA GRANGE" }, { - "codePostal": "25160", - "codeCommune": "25459", - "libelleAcheminement": "LA PLANEE", - "nomCommune": "LA PLANEE" + "codePostal": "22980", + "codeCommune": "22388", + "libelleAcheminement": "VILDE GUINGALAN", + "nomCommune": "VILDE GUINGALAN" }, { - "codePostal": "51150", - "codeCommune": "51079", - "libelleAcheminement": "BOUZY", - "nomCommune": "BOUZY" + "codePostal": "32490", + "codeCommune": "32134", + "libelleAcheminement": "FREGOUVILLE", + "nomCommune": "FREGOUVILLE" }, { - "codePostal": "63210", - "codeCommune": "63274", - "libelleAcheminement": "PERPEZAT", - "nomCommune": "PERPEZAT" + "codePostal": "31460", + "codeCommune": "31558", + "libelleAcheminement": "TOUTENS", + "nomCommune": "TOUTENS" }, { - "codePostal": "59115", - "codeCommune": "59339", - "libelleAcheminement": "LEERS", - "nomCommune": "LEERS" + "codePostal": "21400", + "codeCommune": "21499", + "libelleAcheminement": "POTHIERES", + "nomCommune": "POTHIERES" }, { - "codePostal": "25115", - "codeCommune": "25467", - "libelleAcheminement": "POUILLEY LES VIGNES", - "nomCommune": "POUILLEY LES VIGNES" + "codePostal": "22120", + "codeCommune": "22389", + "libelleAcheminement": "YFFINIAC", + "nomCommune": "YFFINIAC" }, { - "codePostal": "51800", - "codeCommune": "51083", - "libelleAcheminement": "BRAUX ST REMY", - "nomCommune": "BRAUX ST REMY" + "codePostal": "32400", + "codeCommune": "32135", + "libelleAcheminement": "FUSTEROUAU", + "nomCommune": "FUSTEROUAU" }, { - "codePostal": "63920", - "codeCommune": "63276", - "libelleAcheminement": "PESCHADOIRES", - "nomCommune": "PESCHADOIRES" + "codePostal": "31510", + "codeCommune": "31564", + "libelleAcheminement": "VALCABRERE", + "nomCommune": "VALCABRERE" }, { - "codePostal": "59740", - "codeCommune": "59342", - "libelleAcheminement": "LEZ FONTAINE", - "nomCommune": "LEZ FONTAINE" + "codePostal": "21410", + "codeCommune": "21504", + "libelleAcheminement": "PRALON", + "nomCommune": "PRALON" }, { - "codePostal": "25680", - "codeCommune": "25472", - "libelleAcheminement": "PUESSANS", - "nomCommune": "PUESSANS" + "codePostal": "23380", + "codeCommune": "23002", + "libelleAcheminement": "AJAIN", + "nomCommune": "AJAIN" }, { - "codePostal": "51230", - "codeCommune": "51090", - "libelleAcheminement": "BROUSSY LE GRAND", - "nomCommune": "BROUSSY LE GRAND" + "codePostal": "32200", + "codeCommune": "32148", + "libelleAcheminement": "GISCARO", + "nomCommune": "GISCARO" }, { - "codePostal": "63580", - "codeCommune": "63277", - "libelleAcheminement": "PESLIERES", - "nomCommune": "PESLIERES" + "codePostal": "31290", + "codeCommune": "31566", + "libelleAcheminement": "VALLEGUE", + "nomCommune": "VALLEGUE" }, { - "codePostal": "59810", - "codeCommune": "59343", - "libelleAcheminement": "LESQUIN", - "nomCommune": "LESQUIN" + "codePostal": "21400", + "codeCommune": "21511", + "libelleAcheminement": "PUITS", + "nomCommune": "PUITS" }, { - "codePostal": "25640", - "codeCommune": "25474", - "libelleAcheminement": "LE PUY", - "nomCommune": "LE PUY" + "codePostal": "23200", + "codeCommune": "23028", + "libelleAcheminement": "BOSROGER", + "nomCommune": "BOSROGER" }, { - "codePostal": "51120", - "codeCommune": "51092", - "libelleAcheminement": "BROYES", - "nomCommune": "BROYES" + "codePostal": "32400", + "codeCommune": "32151", + "libelleAcheminement": "GOUX", + "nomCommune": "GOUX" }, { - "codePostal": "63470", - "codeCommune": "63292", - "libelleAcheminement": "PUY ST GULMIER", - "nomCommune": "PUY ST GULMIER" + "codePostal": "31450", + "codeCommune": "31568", + "libelleAcheminement": "VARENNES", + "nomCommune": "VARENNES" }, { - "codePostal": "59000", - "codeCommune": "59350", - "libelleAcheminement": "LILLE", - "nomCommune": "LILLE" + "codePostal": "21510", + "codeCommune": "21514", + "libelleAcheminement": "QUEMIGNY SUR SEINE", + "nomCommune": "QUEMIGNY SUR SEINE" }, { - "codePostal": "25520", - "codeCommune": "25487", - "libelleAcheminement": "RENEDALE", - "nomCommune": "RENEDALE" + "codePostal": "23320", + "codeCommune": "23036", + "libelleAcheminement": "BUSSIERE DUNOISE", + "nomCommune": "BUSSIERE DUNOISE" }, { - "codePostal": "51320", - "codeCommune": "51099", - "libelleAcheminement": "BUSSY LETTREE", - "nomCommune": "BUSSY LETTREE" + "codePostal": "32730", + "codeCommune": "32152", + "libelleAcheminement": "HAGET", + "nomCommune": "HAGET" }, { - "codePostal": "63190", - "codeCommune": "63296", - "libelleAcheminement": "RAVEL", - "nomCommune": "RAVEL" + "codePostal": "31460", + "codeCommune": "31571", + "libelleAcheminement": "VENDINE", + "nomCommune": "VENDINE" }, { - "codePostal": "59800", - "codeCommune": "59350", - "libelleAcheminement": "LILLE", - "nomCommune": "LILLE" + "codePostal": "21510", + "codeCommune": "21526", + "libelleAcheminement": "ROCHEFORT SUR BREVON", + "nomCommune": "ROCHEFORT SUR BREVON" }, { - "codePostal": "25330", - "codeCommune": "25489", - "libelleAcheminement": "REUGNEY", - "nomCommune": "REUGNEY" + "codePostal": "23700", + "codeCommune": "23037", + "libelleAcheminement": "BUSSIERE NOUVELLE", + "nomCommune": "BUSSIERE NOUVELLE" }, { - "codePostal": "51800", - "codeCommune": "51104", - "libelleAcheminement": "CERNAY EN DORMOIS", - "nomCommune": "CERNAY EN DORMOIS" + "codePostal": "32120", + "codeCommune": "32154", + "libelleAcheminement": "HOMPS", + "nomCommune": "HOMPS" }, { - "codePostal": "63200", - "codeCommune": "63300", - "libelleAcheminement": "RIOM", - "nomCommune": "RIOM" + "codePostal": "31340", + "codeCommune": "31584", + "libelleAcheminement": "VILLEMUR SUR TARN", + "nomCommune": "VILLEMUR SUR TARN" }, { - "codePostal": "59720", - "codeCommune": "59365", - "libelleAcheminement": "LOUVROIL", - "nomCommune": "LOUVROIL" + "codePostal": "21340", + "codeCommune": "21527", + "libelleAcheminement": "LA ROCHEPOT", + "nomCommune": "LA ROCHEPOT" }, { - "codePostal": "25640", - "codeCommune": "25491", - "libelleAcheminement": "RIGNOSOT", - "nomCommune": "RIGNOSOT" + "codePostal": "23220", + "codeCommune": "23044", + "libelleAcheminement": "CHAMBON STE CROIX", + "nomCommune": "CHAMBON STE CROIX" }, { - "codePostal": "51130", - "codeCommune": "51110", - "libelleAcheminement": "CHALTRAIT", - "nomCommune": "CHALTRAIT" + "codePostal": "32380", + "codeCommune": "32158", + "libelleAcheminement": "L ISLE BOUZON", + "nomCommune": "L ISLE BOUZON" }, { - "codePostal": "63670", - "codeCommune": "63302", - "libelleAcheminement": "LA ROCHE BLANCHE", - "nomCommune": "LA ROCHE BLANCHE" + "codePostal": "31620", + "codeCommune": "31587", + "libelleAcheminement": "VILLENEUVE LES BOULOC", + "nomCommune": "VILLENEUVE LES BOULOC" }, { - "codePostal": "59173", - "codeCommune": "59366", - "libelleAcheminement": "LYNDE", - "nomCommune": "LYNDE" + "codePostal": "21490", + "codeCommune": "21535", + "libelleAcheminement": "RUFFEY LES ECHIREY", + "nomCommune": "RUFFEY LES ECHIREY" }, { - "codePostal": "25110", - "codeCommune": "25492", - "libelleAcheminement": "RILLANS", - "nomCommune": "RILLANS" + "codePostal": "23170", + "codeCommune": "23045", + "libelleAcheminement": "CHAMBON SUR VOUEIZE", + "nomCommune": "CHAMBON SUR VOUEIZE" }, { - "codePostal": "51330", - "codeCommune": "51133", - "libelleAcheminement": "LE CHATELIER", - "nomCommune": "LE CHATELIER" + "codePostal": "32600", + "codeCommune": "32160", + "libelleAcheminement": "L ISLE JOURDAIN", + "nomCommune": "L ISLE JOURDAIN" }, { - "codePostal": "63410", - "codeCommune": "63318", - "libelleAcheminement": "ST ANGEL", - "nomCommune": "ST ANGEL" + "codePostal": "31270", + "codeCommune": "31588", + "libelleAcheminement": "VILLENEUVE TOLOSANE", + "nomCommune": "VILLENEUVE TOLOSANE" }, { - "codePostal": "59980", - "codeCommune": "59394", - "libelleAcheminement": "MAUROIS", - "nomCommune": "MAUROIS" + "codePostal": "21850", + "codeCommune": "21540", + "libelleAcheminement": "ST APOLLINAIRE", + "nomCommune": "ST APOLLINAIRE" }, { - "codePostal": "25220", - "codeCommune": "25495", - "libelleAcheminement": "ROCHE LEZ BEAUPRE", - "nomCommune": "ROCHE LEZ BEAUPRE" + "codePostal": "23240", + "codeCommune": "23047", + "libelleAcheminement": "CHAMBORAND", + "nomCommune": "CHAMBORAND" }, { - "codePostal": "51300", - "codeCommune": "51134", - "libelleAcheminement": "CHATELRAOULD ST LOUVENT", - "nomCommune": "CHATELRAOULD ST LOUVENT" + "codePostal": "32360", + "codeCommune": "32162", + "libelleAcheminement": "JEGUN", + "nomCommune": "JEGUN" }, { - "codePostal": "63660", - "codeCommune": "63319", - "libelleAcheminement": "ST ANTHEME", - "nomCommune": "ST ANTHEME" + "codePostal": "31440", + "codeCommune": "31590", + "libelleAcheminement": "BINOS", + "nomCommune": "BINOS" }, { - "codePostal": "59570", - "codeCommune": "59396", - "libelleAcheminement": "MECQUIGNIES", - "nomCommune": "MECQUIGNIES" + "codePostal": "21190", + "codeCommune": "21541", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "25680", - "codeCommune": "25499", - "libelleAcheminement": "ROMAIN", - "nomCommune": "ROMAIN" + "codePostal": "23220", + "codeCommune": "23049", + "libelleAcheminement": "CHAMPSANGLARD", + "nomCommune": "CHAMPSANGLARD" }, { - "codePostal": "51310", - "codeCommune": "51137", - "libelleAcheminement": "CHATILLON SUR MORIN", - "nomCommune": "CHATILLON SUR MORIN" + "codePostal": "32810", + "codeCommune": "32183", + "libelleAcheminement": "LAHITTE", + "nomCommune": "LAHITTE" }, { - "codePostal": "63630", - "codeCommune": "63323", - "libelleAcheminement": "ST BONNET LE BOURG", - "nomCommune": "ST BONNET LE BOURG" + "codePostal": "32000", + "codeCommune": "32013", + "libelleAcheminement": "AUCH", + "nomCommune": "AUCH" }, { - "codePostal": "59710", - "codeCommune": "59398", - "libelleAcheminement": "MERIGNIES", - "nomCommune": "MERIGNIES" + "codePostal": "21210", + "codeCommune": "21546", + "libelleAcheminement": "ST DIDIER", + "nomCommune": "ST DIDIER" }, { - "codePostal": "25680", - "codeCommune": "25505", - "libelleAcheminement": "ROUGEMONT", - "nomCommune": "ROUGEMONT" + "codePostal": "23700", + "codeCommune": "23054", + "libelleAcheminement": "CHARRON", + "nomCommune": "CHARRON" }, { - "codePostal": "51800", - "codeCommune": "51143", - "libelleAcheminement": "LE CHEMIN", - "nomCommune": "LE CHEMIN" + "codePostal": "32500", + "codeCommune": "32184", + "libelleAcheminement": "LALANNE", + "nomCommune": "LALANNE" }, { - "codePostal": "63320", - "codeCommune": "63330", - "libelleAcheminement": "ST CIRGUES SUR COUZE", - "nomCommune": "ST CIRGUES SUR COUZE" + "codePostal": "32120", + "codeCommune": "32021", + "libelleAcheminement": "AVENSAC", + "nomCommune": "AVENSAC" }, { - "codePostal": "59218", - "codeCommune": "59425", - "libelleAcheminement": "NEUVILLE EN AVESNOIS", - "nomCommune": "NEUVILLE EN AVESNOIS" + "codePostal": "21140", + "codeCommune": "21547", + "libelleAcheminement": "ST EUPHRONE", + "nomCommune": "ST EUPHRONE" }, { - "codePostal": "25640", - "codeCommune": "25506", - "libelleAcheminement": "ROUGEMONTOT", - "nomCommune": "ROUGEMONTOT" + "codePostal": "23500", + "codeCommune": "23071", + "libelleAcheminement": "CROZE", + "nomCommune": "CROZE" }, { - "codePostal": "51300", - "codeCommune": "51156", - "libelleAcheminement": "CLOYES SUR MARNE", - "nomCommune": "CLOYES SUR MARNE" + "codePostal": "32240", + "codeCommune": "32189", + "libelleAcheminement": "LANNEMAIGNAN", + "nomCommune": "LANNEMAIGNAN" }, { - "codePostal": "63660", - "codeCommune": "63331", - "libelleAcheminement": "ST CLEMENT DE VALORGUE", - "nomCommune": "ST CLEMENT DE VALORGUE" + "codePostal": "32380", + "codeCommune": "32023", + "libelleAcheminement": "AVEZAN", + "nomCommune": "AVEZAN" }, { - "codePostal": "59400", - "codeCommune": "59432", - "libelleAcheminement": "NIERGNIES", - "nomCommune": "NIERGNIES" + "codePostal": "21270", + "codeCommune": "21556", + "libelleAcheminement": "ST LEGER TRIEY", + "nomCommune": "ST LEGER TRIEY" }, { - "codePostal": "25440", - "codeCommune": "25507", - "libelleAcheminement": "ROUHE", - "nomCommune": "ROUHE" + "codePostal": "23100", + "codeCommune": "23080", + "libelleAcheminement": "FENIERS", + "nomCommune": "FENIERS" }, { - "codePostal": "51130", - "codeCommune": "51158", - "libelleAcheminement": "VAL DES MARAIS", - "nomCommune": "VAL DES MARAIS" + "codePostal": "32400", + "codeCommune": "32192", + "libelleAcheminement": "LANNUX", + "nomCommune": "LANNUX" }, { - "codePostal": "63320", - "codeCommune": "63335", - "libelleAcheminement": "ST DIERY", - "nomCommune": "ST DIERY" + "codePostal": "32300", + "codeCommune": "32030", + "libelleAcheminement": "BARS", + "nomCommune": "BARS" }, { - "codePostal": "59159", - "codeCommune": "59438", - "libelleAcheminement": "NOYELLES SUR ESCAUT", - "nomCommune": "NOYELLES SUR ESCAUT" + "codePostal": "21410", + "codeCommune": "21559", + "libelleAcheminement": "STE MARIE SUR OUCHE", + "nomCommune": "STE MARIE SUR OUCHE" }, { - "codePostal": "25170", - "codeCommune": "25510", - "libelleAcheminement": "RUFFEY LE CHATEAU", - "nomCommune": "RUFFEY LE CHATEAU" + "codePostal": "23340", + "codeCommune": "23090", + "libelleAcheminement": "GENTIOUX PIGEROLLES", + "nomCommune": "GENTIOUX PIGEROLLES" }, { - "codePostal": "51510", - "codeCommune": "51160", - "libelleAcheminement": "COMPERTRIX", - "nomCommune": "COMPERTRIX" + "codePostal": "32330", + "codeCommune": "32203", + "libelleAcheminement": "LAURAET", + "nomCommune": "LAURAET" }, { - "codePostal": "63122", - "codeCommune": "63345", - "libelleAcheminement": "ST GENES CHAMPANELLE", - "nomCommune": "ST GENES CHAMPANELLE" + "codePostal": "32320", + "codeCommune": "32033", + "libelleAcheminement": "BAZIAN", + "nomCommune": "BAZIAN" }, { - "codePostal": "59550", - "codeCommune": "59439", - "libelleAcheminement": "NOYELLES SUR SAMBRE", - "nomCommune": "NOYELLES SUR SAMBRE" + "codePostal": "21220", + "codeCommune": "21565", + "libelleAcheminement": "ST PHILIBERT", + "nomCommune": "ST PHILIBERT" }, { - "codePostal": "25640", - "codeCommune": "25518", - "libelleAcheminement": "ST HILAIRE", - "nomCommune": "ST HILAIRE" + "codePostal": "23500", + "codeCommune": "23091", + "libelleAcheminement": "GIOUX", + "nomCommune": "GIOUX" }, { - "codePostal": "51270", - "codeCommune": "51174", - "libelleAcheminement": "CORRIBERT", - "nomCommune": "CORRIBERT" + "codePostal": "32360", + "codeCommune": "32204", + "libelleAcheminement": "LAVARDENS", + "nomCommune": "LAVARDENS" }, { - "codePostal": "63122", - "codeCommune": "63345", - "libelleAcheminement": "ST GENES CHAMPANELLE", - "nomCommune": "ST GENES CHAMPANELLE" + "codePostal": "32410", + "codeCommune": "32035", + "libelleAcheminement": "BEAUCAIRE", + "nomCommune": "BEAUCAIRE" }, { - "codePostal": "59132", - "codeCommune": "59445", - "libelleAcheminement": "OHAIN", - "nomCommune": "OHAIN" + "codePostal": "21230", + "codeCommune": "21567", + "libelleAcheminement": "ST PRIX LES ARNAY", + "nomCommune": "ST PRIX LES ARNAY" }, { - "codePostal": "25113", - "codeCommune": "25523", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "23000", + "codeCommune": "23096", + "libelleAcheminement": "GUERET", + "nomCommune": "GUERET" }, { - "codePostal": "51230", - "codeCommune": "51176", - "libelleAcheminement": "CORROY", - "nomCommune": "CORROY" + "codePostal": "32400", + "codeCommune": "32209", + "libelleAcheminement": "LELIN LAPUJOLLE", + "nomCommune": "LELIN LAPUJOLLE" }, { - "codePostal": "63390", - "codeCommune": "63354", - "libelleAcheminement": "ST GERVAIS D AUVERGNE", - "nomCommune": "ST GERVAIS D AUVERGNE" + "codePostal": "32100", + "codeCommune": "32037", + "libelleAcheminement": "BEAUMONT", + "nomCommune": "BEAUMONT" }, { - "codePostal": "59310", - "codeCommune": "59449", - "libelleAcheminement": "ORCHIES", - "nomCommune": "ORCHIES" + "codePostal": "21610", + "codeCommune": "21574", + "libelleAcheminement": "ST SEINE SUR VINGEANNE", + "nomCommune": "ST SEINE SUR VINGEANNE" }, { - "codePostal": "25410", - "codeCommune": "25527", - "libelleAcheminement": "ST VIT", - "nomCommune": "ST VIT" + "codePostal": "23150", + "codeCommune": "23105", + "libelleAcheminement": "LAVAVEIX LES MINES", + "nomCommune": "LAVAVEIX LES MINES" }, { - "codePostal": "51240", - "codeCommune": "51178", - "libelleAcheminement": "COUPETZ", - "nomCommune": "COUPETZ" + "codePostal": "32220", + "codeCommune": "32213", + "libelleAcheminement": "LOMBEZ", + "nomCommune": "LOMBEZ" }, { - "codePostal": "63720", - "codeCommune": "63362", - "libelleAcheminement": "ST IGNAT", - "nomCommune": "ST IGNAT" + "codePostal": "32100", + "codeCommune": "32044", + "libelleAcheminement": "BERAUT", + "nomCommune": "BERAUT" }, { - "codePostal": "59295", - "codeCommune": "59455", - "libelleAcheminement": "PAILLENCOURT", - "nomCommune": "PAILLENCOURT" + "codePostal": "21350", + "codeCommune": "21576", + "libelleAcheminement": "ST THIBAULT", + "nomCommune": "ST THIBAULT" }, { - "codePostal": "25660", - "codeCommune": "25532", - "libelleAcheminement": "SAONE", - "nomCommune": "SAONE" + "codePostal": "23220", + "codeCommune": "23109", + "libelleAcheminement": "LINARD MALVAL", + "nomCommune": "LINARD MALVAL" }, { - "codePostal": "51270", - "codeCommune": "51186", - "libelleAcheminement": "COURJEONNET", - "nomCommune": "COURJEONNET" + "codePostal": "32230", + "codeCommune": "32217", + "libelleAcheminement": "LOUSLITGES", + "nomCommune": "LOUSLITGES" }, { - "codePostal": "63230", - "codeCommune": "63363", - "libelleAcheminement": "ST JACQUES D AMBUR", - "nomCommune": "ST JACQUES D AMBUR" + "codePostal": "32300", + "codeCommune": "32045", + "libelleAcheminement": "BERDOUES", + "nomCommune": "BERDOUES" }, { - "codePostal": "59494", - "codeCommune": "59459", - "libelleAcheminement": "PETITE FORET", - "nomCommune": "PETITE FORET" + "codePostal": "21410", + "codeCommune": "21578", + "libelleAcheminement": "ST VICTOR SUR OUCHE", + "nomCommune": "ST VICTOR SUR OUCHE" }, { - "codePostal": "25330", - "codeCommune": "25533", - "libelleAcheminement": "SARAZ", - "nomCommune": "SARAZ" + "codePostal": "23220", + "codeCommune": "23109", + "libelleAcheminement": "LINARD MALVAL", + "nomCommune": "LINARD MALVAL" }, { - "codePostal": "51390", - "codeCommune": "51188", - "libelleAcheminement": "COURMAS", - "nomCommune": "COURMAS" + "codePostal": "32290", + "codeCommune": "32219", + "libelleAcheminement": "LUPIAC", + "nomCommune": "LUPIAC" }, { - "codePostal": "63330", - "codeCommune": "63373", - "libelleAcheminement": "ST MAIGNER", - "nomCommune": "ST MAIGNER" + "codePostal": "32420", + "codeCommune": "32048", + "libelleAcheminement": "BETCAVE AGUIN", + "nomCommune": "BETCAVE AGUIN" }, { - "codePostal": "59710", - "codeCommune": "59466", - "libelleAcheminement": "PONT A MARCQ", - "nomCommune": "PONT A MARCQ" + "codePostal": "21210", + "codeCommune": "21584", + "libelleAcheminement": "SAULIEU", + "nomCommune": "SAULIEU" }, { - "codePostal": "25240", - "codeCommune": "25534", - "libelleAcheminement": "SARRAGEOIS", - "nomCommune": "SARRAGEOIS" + "codePostal": "23700", + "codeCommune": "23110", + "libelleAcheminement": "LIOUX LES MONGES", + "nomCommune": "LIOUX LES MONGES" }, { - "codePostal": "51800", - "codeCommune": "51191", - "libelleAcheminement": "COURTEMONT", - "nomCommune": "COURTEMONT" + "codePostal": "32110", + "codeCommune": "32220", + "libelleAcheminement": "LUPPE VIOLLES", + "nomCommune": "LUPPE VIOLLES" }, { - "codePostal": "63310", - "codeCommune": "63387", - "libelleAcheminement": "ST PRIEST BRAMEFANT", - "nomCommune": "ST PRIEST BRAMEFANT" + "codePostal": "32350", + "codeCommune": "32054", + "libelleAcheminement": "BIRAN", + "nomCommune": "BIRAN" }, { - "codePostal": "59990", - "codeCommune": "59471", - "libelleAcheminement": "PRESEAU", - "nomCommune": "PRESEAU" + "codePostal": "21910", + "codeCommune": "21585", + "libelleAcheminement": "SAULON LA CHAPELLE", + "nomCommune": "SAULON LA CHAPELLE" }, { - "codePostal": "25110", - "codeCommune": "25538", - "libelleAcheminement": "SECHIN", - "nomCommune": "SECHIN" + "codePostal": "23700", + "codeCommune": "23123", + "libelleAcheminement": "LES MARS", + "nomCommune": "LES MARS" }, { - "codePostal": "51700", - "codeCommune": "51192", - "libelleAcheminement": "COURTHIEZY", - "nomCommune": "COURTHIEZY" + "codePostal": "32380", + "codeCommune": "32223", + "libelleAcheminement": "MAGNAS", + "nomCommune": "MAGNAS" }, { - "codePostal": "63760", - "codeCommune": "63399", - "libelleAcheminement": "ST SULPICE", - "nomCommune": "ST SULPICE" + "codePostal": "32450", + "codeCommune": "32061", + "libelleAcheminement": "BOULAUR", + "nomCommune": "BOULAUR" }, { - "codePostal": "59267", - "codeCommune": "59476", - "libelleAcheminement": "PROVILLE", - "nomCommune": "PROVILLE" + "codePostal": "21500", + "codeCommune": "21594", + "libelleAcheminement": "SAVOISY", + "nomCommune": "SAVOISY" }, { - "codePostal": "25190", - "codeCommune": "25548", - "libelleAcheminement": "SOLEMONT", - "nomCommune": "SOLEMONT" + "codePostal": "23210", + "codeCommune": "23124", + "libelleAcheminement": "MARSAC", + "nomCommune": "MARSAC" }, { - "codePostal": "51600", - "codeCommune": "51197", - "libelleAcheminement": "LA CROIX EN CHAMPAGNE", - "nomCommune": "LA CROIX EN CHAMPAGNE" + "codePostal": "32140", + "codeCommune": "32228", + "libelleAcheminement": "MANENT MONTANE", + "nomCommune": "MANENT MONTANE" }, { - "codePostal": "63310", - "codeCommune": "63400", - "libelleAcheminement": "ST SYLVESTRE PRAGOULIN", - "nomCommune": "ST SYLVESTRE PRAGOULIN" + "codePostal": "32350", + "codeCommune": "32065", + "libelleAcheminement": "LE BROUILH MONBERT", + "nomCommune": "LE BROUILH MONBERT" }, { - "codePostal": "59161", - "codeCommune": "59492", - "libelleAcheminement": "RAMILLIES", - "nomCommune": "RAMILLIES" + "codePostal": "21250", + "codeCommune": "21607", + "libelleAcheminement": "SEURRE", + "nomCommune": "SEURRE" }, { - "codePostal": "25520", - "codeCommune": "25549", - "libelleAcheminement": "SOMBACOUR", - "nomCommune": "SOMBACOUR" + "codePostal": "23190", + "codeCommune": "23127", + "libelleAcheminement": "MAUTES", + "nomCommune": "MAUTES" }, { - "codePostal": "51400", - "codeCommune": "51205", - "libelleAcheminement": "DAMPIERRE AU TEMPLE", - "nomCommune": "DAMPIERRE AU TEMPLE" + "codePostal": "32190", + "codeCommune": "32231", + "libelleAcheminement": "MARAMBAT", + "nomCommune": "MARAMBAT" }, { - "codePostal": "63550", - "codeCommune": "63402", - "libelleAcheminement": "ST VICTOR MONTVIANEIX", - "nomCommune": "ST VICTOR MONTVIANEIX" + "codePostal": "32440", + "codeCommune": "32079", + "libelleAcheminement": "CASTELNAU D AUZAN LABARRERE", + "nomCommune": "CASTELNAU D AUZAN LABARRERE" }, { - "codePostal": "59360", - "codeCommune": "59496", - "libelleAcheminement": "REJET DE BEAULIEU", - "nomCommune": "REJET DE BEAULIEU" + "codePostal": "21120", + "codeCommune": "21614", + "libelleAcheminement": "SPOY", + "nomCommune": "SPOY" }, { - "codePostal": "25470", - "codeCommune": "25571", - "libelleAcheminement": "TREVILLERS", - "nomCommune": "TREVILLERS" + "codePostal": "23260", + "codeCommune": "23129", + "libelleAcheminement": "MAZIERE AUX BONS HOMMES", + "nomCommune": "LA MAZIERE AUX BONS HOMMES" }, { - "codePostal": "51300", - "codeCommune": "51215", - "libelleAcheminement": "DOMPREMY", - "nomCommune": "DOMPREMY" + "codePostal": "32150", + "codeCommune": "32236", + "libelleAcheminement": "MARGUESTAU", + "nomCommune": "MARGUESTAU" }, { - "codePostal": "63970", - "codeCommune": "63407", - "libelleAcheminement": "SAULZET LE FROID", - "nomCommune": "SAULZET LE FROID" + "codePostal": "32190", + "codeCommune": "32088", + "libelleAcheminement": "CASTILLON DEBATS", + "nomCommune": "CASTILLON DEBATS" }, { - "codePostal": "59122", - "codeCommune": "59499", - "libelleAcheminement": "REXPOEDE", - "nomCommune": "REXPOEDE" + "codePostal": "21240", + "codeCommune": "21617", + "libelleAcheminement": "TALANT", + "nomCommune": "TALANT" }, { - "codePostal": "25470", - "codeCommune": "25573", - "libelleAcheminement": "URTIERE", - "nomCommune": "URTIERE" + "codePostal": "23300", + "codeCommune": "23143", + "libelleAcheminement": "NOTH", + "nomCommune": "NOTH" }, { - "codePostal": "51340", - "codeCommune": "51218", - "libelleAcheminement": "VAL DE VIERE", - "nomCommune": "VAL DE VIERE" + "codePostal": "32170", + "codeCommune": "32238", + "libelleAcheminement": "MARSEILLAN", + "nomCommune": "MARSEILLAN" }, { - "codePostal": "63560", - "codeCommune": "63428", - "libelleAcheminement": "TEILHET", - "nomCommune": "TEILHET" + "codePostal": "32360", + "codeCommune": "32089", + "libelleAcheminement": "CASTILLON MASSAS", + "nomCommune": "CASTILLON MASSAS" }, { - "codePostal": "59159", - "codeCommune": "59500", - "libelleAcheminement": "RIBECOURT LA TOUR", - "nomCommune": "RIBECOURT LA TOUR" + "codePostal": "21290", + "codeCommune": "21626", + "libelleAcheminement": "TERREFONDREE", + "nomCommune": "TERREFONDREE" }, { - "codePostal": "25160", - "codeCommune": "25592", - "libelleAcheminement": "VAUX ET CHANTEGRUE", - "nomCommune": "VAUX ET CHANTEGRUE" + "codePostal": "23170", + "codeCommune": "23145", + "libelleAcheminement": "NOUHANT", + "nomCommune": "NOUHANT" }, { - "codePostal": "51300", - "codeCommune": "51224", - "libelleAcheminement": "ECRIENNES", - "nomCommune": "ECRIENNES" + "codePostal": "32700", + "codeCommune": "32239", + "libelleAcheminement": "MARSOLAN", + "nomCommune": "MARSOLAN" }, { - "codePostal": "63600", - "codeCommune": "63431", - "libelleAcheminement": "THIOLIERES", - "nomCommune": "THIOLIERES" + "codePostal": "32400", + "codeCommune": "32093", + "libelleAcheminement": "CAUMONT", + "nomCommune": "CAUMONT" }, { - "codePostal": "59870", - "codeCommune": "59501", - "libelleAcheminement": "RIEULAY", - "nomCommune": "RIEULAY" + "codePostal": "21350", + "codeCommune": "21633", + "libelleAcheminement": "THOREY SOUS CHARNY", + "nomCommune": "THOREY SOUS CHARNY" }, { - "codePostal": "25660", - "codeCommune": "25611", - "libelleAcheminement": "LA VEZE", - "nomCommune": "LA VEZE" + "codePostal": "23130", + "codeCommune": "23152", + "libelleAcheminement": "PIERREFITTE", + "nomCommune": "PIERREFITTE" }, { - "codePostal": "51240", - "codeCommune": "51227", - "libelleAcheminement": "ECURY SUR COOLE", - "nomCommune": "ECURY SUR COOLE" + "codePostal": "32400", + "codeCommune": "32244", + "libelleAcheminement": "MAULICHERES", + "nomCommune": "MAULICHERES" }, { - "codePostal": "63470", - "codeCommune": "63433", - "libelleAcheminement": "TORTEBESSE", - "nomCommune": "TORTEBESSE" + "codePostal": "32110", + "codeCommune": "32094", + "libelleAcheminement": "CAUPENNE D ARMAGNAC", + "nomCommune": "CAUPENNE D ARMAGNAC" }, { - "codePostal": "59172", - "codeCommune": "59504", - "libelleAcheminement": "ROEULX", - "nomCommune": "ROEULX" + "codePostal": "21360", + "codeCommune": "21634", + "libelleAcheminement": "THOREY SUR OUCHE", + "nomCommune": "THOREY SUR OUCHE" }, { - "codePostal": "25340", - "codeCommune": "25613", - "libelleAcheminement": "VIETHOREY", - "nomCommune": "VIETHOREY" + "codePostal": "23250", + "codeCommune": "23157", + "libelleAcheminement": "LA POUGE", + "nomCommune": "LA POUGE" }, { - "codePostal": "51200", - "codeCommune": "51230", - "libelleAcheminement": "EPERNAY", - "nomCommune": "EPERNAY" + "codePostal": "32240", + "codeCommune": "32246", + "libelleAcheminement": "MAUPAS", + "nomCommune": "MAUPAS" }, { - "codePostal": "63490", - "codeCommune": "63439", - "libelleAcheminement": "USSON", - "nomCommune": "USSON" + "codePostal": "32140", + "codeCommune": "32103", + "libelleAcheminement": "CHELAN", + "nomCommune": "CHELAN" }, { - "codePostal": "59790", - "codeCommune": "59507", - "libelleAcheminement": "RONCHIN", - "nomCommune": "RONCHIN" + "codePostal": "21500", + "codeCommune": "21641", + "libelleAcheminement": "TOUILLON", + "nomCommune": "TOUILLON" }, { - "codePostal": "25240", - "codeCommune": "25619", - "libelleAcheminement": "LES VILLEDIEU", - "nomCommune": "LES VILLEDIEU" + "codePostal": "23500", + "codeCommune": "23158", + "libelleAcheminement": "POUSSANGES", + "nomCommune": "POUSSANGES" }, { - "codePostal": "51320", - "codeCommune": "51244", - "libelleAcheminement": "FAUX VESIGNEUL", - "nomCommune": "FAUX VESIGNEUL" + "codePostal": "32420", + "codeCommune": "32250", + "libelleAcheminement": "MEILHAN", + "nomCommune": "MEILHAN" }, { - "codePostal": "63610", - "codeCommune": "63440", - "libelleAcheminement": "VALBELEIX", - "nomCommune": "VALBELEIX" + "codePostal": "32300", + "codeCommune": "32104", + "libelleAcheminement": "CLERMONT POUYGUILLES", + "nomCommune": "CLERMONT POUYGUILLES" }, { - "codePostal": "59230", - "codeCommune": "59526", - "libelleAcheminement": "ST AMAND LES EAUX", - "nomCommune": "ST AMAND LES EAUX" + "codePostal": "21130", + "codeCommune": "21643", + "libelleAcheminement": "TRECLUN", + "nomCommune": "TRECLUN" }, { - "codePostal": "25530", - "codeCommune": "25623", - "libelleAcheminement": "VILLERS CHIEF", - "nomCommune": "VILLERS CHIEF" + "codePostal": "23460", + "codeCommune": "23165", + "libelleAcheminement": "ROYERE DE VASSIVIERE", + "nomCommune": "ROYERE DE VASSIVIERE" }, { - "codePostal": "51190", - "codeCommune": "51251", - "libelleAcheminement": "FLAVIGNY", - "nomCommune": "FLAVIGNY" + "codePostal": "32360", + "codeCommune": "32251", + "libelleAcheminement": "MERENS", + "nomCommune": "MERENS" }, { - "codePostal": "63720", - "codeCommune": "63443", - "libelleAcheminement": "VARENNES SUR MORGE", - "nomCommune": "VARENNES SUR MORGE" + "codePostal": "32220", + "codeCommune": "32124", + "libelleAcheminement": "ESPAON", + "nomCommune": "ESPAON" }, { - "codePostal": "59188", - "codeCommune": "59528", - "libelleAcheminement": "ST AUBERT", - "nomCommune": "ST AUBERT" + "codePostal": "21440", + "codeCommune": "21659", + "libelleAcheminement": "VAUX SAULES", + "nomCommune": "VAUX SAULES" }, { - "codePostal": "25510", - "codeCommune": "25625", - "libelleAcheminement": "VILLERS LA COMBE", - "nomCommune": "VILLERS LA COMBE" + "codePostal": "23400", + "codeCommune": "23181", + "libelleAcheminement": "ST AMAND JARTOUDEIX", + "nomCommune": "ST AMAND JARTOUDEIX" }, { - "codePostal": "51120", - "codeCommune": "51254", - "libelleAcheminement": "FONTAINE DENIS NUISY", - "nomCommune": "FONTAINE DENIS NUISY" + "codePostal": "32390", + "codeCommune": "32255", + "libelleAcheminement": "MIRAMONT LATOUR", + "nomCommune": "MIRAMONT LATOUR" }, { - "codePostal": "63260", - "codeCommune": "63446", - "libelleAcheminement": "VENSAT", - "nomCommune": "VENSAT" + "codePostal": "32170", + "codeCommune": "32126", + "libelleAcheminement": "ESTAMPES", + "nomCommune": "ESTAMPES" }, { - "codePostal": "59163", - "codeCommune": "59530", - "libelleAcheminement": "ST AYBERT", - "nomCommune": "ST AYBERT" + "codePostal": "21350", + "codeCommune": "21662", + "libelleAcheminement": "VELOGNY", + "nomCommune": "VELOGNY" }, { - "codePostal": "25270", - "codeCommune": "25627", - "libelleAcheminement": "VILLERS SOUS CHALAMONT", - "nomCommune": "VILLERS SOUS CHALAMONT" + "codePostal": "23130", + "codeCommune": "23187", + "libelleAcheminement": "ST DIZIER LA TOUR", + "nomCommune": "ST DIZIER LA TOUR" }, { - "codePostal": "51300", - "codeCommune": "51262", - "libelleAcheminement": "FRIGNICOURT", - "nomCommune": "FRIGNICOURT" + "codePostal": "32350", + "codeCommune": "32257", + "libelleAcheminement": "MIRANNES", + "nomCommune": "MIRANNES" }, { - "codePostal": "63580", - "codeCommune": "63448", - "libelleAcheminement": "LE VERNET CHAMEANE", - "nomCommune": "LE VERNET CHAMEANE" + "codePostal": "32240", + "codeCommune": "32127", + "libelleAcheminement": "ESTANG", + "nomCommune": "ESTANG" }, { - "codePostal": "59820", - "codeCommune": "59532", - "libelleAcheminement": "ST GEORGES SUR L AA", - "nomCommune": "ST GEORGES SUR L AA" + "codePostal": "21150", + "codeCommune": "21663", + "libelleAcheminement": "VENAREY LES LAUMES", + "nomCommune": "VENAREY LES LAUMES" }, { - "codePostal": "25420", - "codeCommune": "25632", - "libelleAcheminement": "VOUJEAUCOURT", - "nomCommune": "VOUJEAUCOURT" + "codePostal": "23290", + "codeCommune": "23192", + "libelleAcheminement": "FURSAC", + "nomCommune": "FURSAC" }, { - "codePostal": "51210", - "codeCommune": "51264", - "libelleAcheminement": "LE GAULT SOIGNY", - "nomCommune": "LE GAULT SOIGNY" + "codePostal": "32390", + "codeCommune": "32258", + "libelleAcheminement": "MIREPOIX", + "nomCommune": "MIREPOIX" }, { - "codePostal": "63250", - "codeCommune": "63463", - "libelleAcheminement": "VISCOMTAT", - "nomCommune": "VISCOMTAT" + "codePostal": "32400", + "codeCommune": "32161", + "libelleAcheminement": "IZOTGES", + "nomCommune": "IZOTGES" }, { - "codePostal": "59292", - "codeCommune": "59533", - "libelleAcheminement": "ST HILAIRE LEZ CAMBRAI", - "nomCommune": "ST HILAIRE LEZ CAMBRAI" + "codePostal": "21120", + "codeCommune": "21666", + "libelleAcheminement": "VERNOT", + "nomCommune": "VERNOT" }, { - "codePostal": "25300", - "codeCommune": "25634", - "libelleAcheminement": "VUILLECIN", - "nomCommune": "VUILLECIN" + "codePostal": "23500", + "codeCommune": "23196", + "libelleAcheminement": "ST FRION", + "nomCommune": "ST FRION" }, { - "codePostal": "51290", - "codeCommune": "51277", - "libelleAcheminement": "STE MARIE DU LAC NUISEMENT", - "nomCommune": "STE MARIE DU LAC NUISEMENT" + "codePostal": "32420", + "codeCommune": "32260", + "libelleAcheminement": "MONBARDON", + "nomCommune": "MONBARDON" }, { - "codePostal": "63120", - "codeCommune": "63468", - "libelleAcheminement": "VOLLORE MONTAGNE", - "nomCommune": "VOLLORE MONTAGNE" + "codePostal": "32300", + "codeCommune": "32177", + "libelleAcheminement": "LAGARDE HACHAN", + "nomCommune": "LAGARDE HACHAN" }, { - "codePostal": "59440", - "codeCommune": "59534", - "libelleAcheminement": "ST HILAIRE SUR HELPE", - "nomCommune": "ST HILAIRE SUR HELPE" + "codePostal": "21330", + "codeCommune": "21671", + "libelleAcheminement": "VERTAULT", + "nomCommune": "VERTAULT" }, { - "codePostal": "26800", - "codeCommune": "26007", - "libelleAcheminement": "AMBONIL", - "nomCommune": "AMBONIL" + "codePostal": "23500", + "codeCommune": "23198", + "libelleAcheminement": "ST GEORGES NIGREMONT", + "nomCommune": "ST GEORGES NIGREMONT" }, { - "codePostal": "51800", - "codeCommune": "51280", - "libelleAcheminement": "GRATREUIL", - "nomCommune": "GRATREUIL" + "codePostal": "32130", + "codeCommune": "32261", + "libelleAcheminement": "MONBLANC", + "nomCommune": "MONBLANC" }, { - "codePostal": "63700", - "codeCommune": "63471", - "libelleAcheminement": "YOUX", - "nomCommune": "YOUX" + "codePostal": "32450", + "codeCommune": "32198", + "libelleAcheminement": "LARTIGUE", + "nomCommune": "LARTIGUE" }, { - "codePostal": "59330", - "codeCommune": "59543", - "libelleAcheminement": "ST REMY DU NORD", - "nomCommune": "ST REMY DU NORD" + "codePostal": "21360", + "codeCommune": "21673", + "libelleAcheminement": "VEUVEY SUR OUCHE", + "nomCommune": "VEUVEY SUR OUCHE" }, { - "codePostal": "26470", - "codeCommune": "26012", - "libelleAcheminement": "ARNAYON", - "nomCommune": "ARNAYON" + "codePostal": "23110", + "codeCommune": "23203", + "libelleAcheminement": "ST JULIEN LA GENETE", + "nomCommune": "ST JULIEN LA GENETE" }, { - "codePostal": "51110", - "codeCommune": "51299", - "libelleAcheminement": "ISLES SUR SUIPPE", - "nomCommune": "ISLES SUR SUIPPE" + "codePostal": "32220", + "codeCommune": "32277", + "libelleAcheminement": "MONTAMAT", + "nomCommune": "MONTAMAT" }, { - "codePostal": "64210", - "codeCommune": "64009", - "libelleAcheminement": "AHETZE", - "nomCommune": "AHETZE" + "codePostal": "32550", + "codeCommune": "32201", + "libelleAcheminement": "LASSEUBE PROPRE", + "nomCommune": "LASSEUBE PROPRE" }, { - "codePostal": "59360", - "codeCommune": "59545", - "libelleAcheminement": "ST SOUPLET", - "nomCommune": "ST SOUPLET" + "codePostal": "21140", + "codeCommune": "21676", + "libelleAcheminement": "VIC DE CHASSENAY", + "nomCommune": "VIC DE CHASSENAY" }, { - "codePostal": "26340", - "codeCommune": "26019", - "libelleAcheminement": "AUREL", - "nomCommune": "AUREL" + "codePostal": "23130", + "codeCommune": "23204", + "libelleAcheminement": "ST JULIEN LE CHATEL", + "nomCommune": "ST JULIEN LE CHATEL" }, { - "codePostal": "51390", - "codeCommune": "51310", - "libelleAcheminement": "JOUY LES REIMS", - "nomCommune": "JOUY LES REIMS" + "codePostal": "32300", + "codeCommune": "32278", + "libelleAcheminement": "MONTAUT", + "nomCommune": "MONTAUT" }, { - "codePostal": "64130", - "codeCommune": "64012", - "libelleAcheminement": "AINHARP", - "nomCommune": "AINHARP" + "codePostal": "32700", + "codeCommune": "32208", + "libelleAcheminement": "LECTOURE", + "nomCommune": "LECTOURE" }, { - "codePostal": "59496", - "codeCommune": "59550", - "libelleAcheminement": "SALOME", - "nomCommune": "SALOME" + "codePostal": "21450", + "codeCommune": "21685", + "libelleAcheminement": "VILLAINES EN DUESMOIS", + "nomCommune": "VILLAINES EN DUESMOIS" }, { - "codePostal": "26400", - "codeCommune": "26021", - "libelleAcheminement": "AUTICHAMP", - "nomCommune": "AUTICHAMP" + "codePostal": "23460", + "codeCommune": "23216", + "libelleAcheminement": "ST MARTIN CHATEAU", + "nomCommune": "ST MARTIN CHATEAU" }, { - "codePostal": "51150", - "codeCommune": "51312", - "libelleAcheminement": "JUVIGNY", - "nomCommune": "JUVIGNY" + "codePostal": "32170", + "codeCommune": "32281", + "libelleAcheminement": "MONT DE MARRAST", + "nomCommune": "MONT DE MARRAST" }, { - "codePostal": "64120", - "codeCommune": "64018", - "libelleAcheminement": "AMENDEUIX ONEIX", - "nomCommune": "AMENDEUIX ONEIX" + "codePostal": "32140", + "codeCommune": "32216", + "libelleAcheminement": "LOURTIES MONBRUN", + "nomCommune": "LOURTIES MONBRUN" }, { - "codePostal": "59310", - "codeCommune": "59551", - "libelleAcheminement": "SAMEON", - "nomCommune": "SAMEON" + "codePostal": "21500", + "codeCommune": "21686", + "libelleAcheminement": "VILLAINES LES PREVOTES", + "nomCommune": "VILLAINES LES PREVOTES" }, { - "codePostal": "26310", - "codeCommune": "26025", - "libelleAcheminement": "BARNAVE", - "nomCommune": "BARNAVE" + "codePostal": "23100", + "codeCommune": "23221", + "libelleAcheminement": "ST MERD LA BREUILLE", + "nomCommune": "ST MERD LA BREUILLE" }, { - "codePostal": "51290", - "codeCommune": "51315", - "libelleAcheminement": "LANDRICOURT", - "nomCommune": "LANDRICOURT" + "codePostal": "32550", + "codeCommune": "32282", + "libelleAcheminement": "MONTEGUT", + "nomCommune": "MONTEGUT" }, { - "codePostal": "64120", - "codeCommune": "64019", - "libelleAcheminement": "AMOROTS SUCCOS", - "nomCommune": "AMOROTS SUCCOS" + "codePostal": "32270", + "codeCommune": "32221", + "libelleAcheminement": "LUSSAN", + "nomCommune": "LUSSAN" }, { - "codePostal": "59211", - "codeCommune": "59553", - "libelleAcheminement": "SANTES", - "nomCommune": "SANTES" + "codePostal": "21700", + "codeCommune": "21691", + "libelleAcheminement": "VILLEBICHOT", + "nomCommune": "VILLEBICHOT" }, { - "codePostal": "26310", - "codeCommune": "26036", - "libelleAcheminement": "BEAUMONT EN DIOIS", - "nomCommune": "BEAUMONT EN DIOIS" + "codePostal": "23400", + "codeCommune": "23227", + "libelleAcheminement": "ST PARDOUX MORTEROLLES", + "nomCommune": "ST PARDOUX MORTEROLLES" }, { - "codePostal": "51600", - "codeCommune": "51317", - "libelleAcheminement": "LAVAL SUR TOURBE", - "nomCommune": "LAVAL SUR TOURBE" + "codePostal": "32110", + "codeCommune": "32296", + "libelleAcheminement": "NOGARO", + "nomCommune": "NOGARO" }, { - "codePostal": "64420", - "codeCommune": "64021", - "libelleAcheminement": "ANDOINS", - "nomCommune": "ANDOINS" + "codePostal": "32110", + "codeCommune": "32222", + "libelleAcheminement": "MAGNAN", + "nomCommune": "MAGNAN" }, { - "codePostal": "59174", - "codeCommune": "59564", - "libelleAcheminement": "LA SENTINELLE", - "nomCommune": "LA SENTINELLE" + "codePostal": "21350", + "codeCommune": "21694", + "libelleAcheminement": "VILLEFERRY", + "nomCommune": "VILLEFERRY" }, { - "codePostal": "26760", - "codeCommune": "26037", - "libelleAcheminement": "BEAUMONT LES VALENCE", - "nomCommune": "BEAUMONT LES VALENCE" + "codePostal": "23200", + "codeCommune": "23228", + "libelleAcheminement": "ST PARDOUX LE NEUF", + "nomCommune": "ST PARDOUX LE NEUF" }, { - "codePostal": "51300", - "codeCommune": "51328", - "libelleAcheminement": "LOISY SUR MARNE", - "nomCommune": "LOISY SUR MARNE" + "codePostal": "32260", + "codeCommune": "32302", + "libelleAcheminement": "ORNEZAN", + "nomCommune": "ORNEZAN" }, { - "codePostal": "64510", - "codeCommune": "64023", - "libelleAcheminement": "ANGAIS", - "nomCommune": "ANGAIS" + "codePostal": "32310", + "codeCommune": "32224", + "libelleAcheminement": "MAIGNAUT TAUZIA", + "nomCommune": "MAIGNAUT TAUZIA" }, { - "codePostal": "59173", - "codeCommune": "59568", - "libelleAcheminement": "SERCUS", - "nomCommune": "SERCUS" + "codePostal": "21400", + "codeCommune": "21706", + "libelleAcheminement": "VILLOTTE SUR OURCE", + "nomCommune": "VILLOTTE SUR OURCE" }, { - "codePostal": "26300", - "codeCommune": "26039", - "libelleAcheminement": "BEAUREGARD BARET", - "nomCommune": "BEAUREGARD BARET" + "codePostal": "23240", + "codeCommune": "23236", + "libelleAcheminement": "ST PRIEST LA PLAINE", + "nomCommune": "ST PRIEST LA PLAINE" }, { - "codePostal": "51300", - "codeCommune": "51334", - "libelleAcheminement": "LUXEMONT ET VILLOTTE", - "nomCommune": "LUXEMONT ET VILLOTTE" + "codePostal": "32500", + "codeCommune": "32306", + "libelleAcheminement": "PAUILHAC", + "nomCommune": "PAUILHAC" }, { - "codePostal": "64220", - "codeCommune": "64026", - "libelleAcheminement": "ANHAUX", - "nomCommune": "ANHAUX" + "codePostal": "32730", + "codeCommune": "32225", + "libelleAcheminement": "MALABAT", + "nomCommune": "MALABAT" }, { - "codePostal": "59450", - "codeCommune": "59569", - "libelleAcheminement": "SIN LE NOBLE", - "nomCommune": "SIN LE NOBLE" + "codePostal": "22100", + "codeCommune": "22003", + "libelleAcheminement": "AUCALEUC", + "nomCommune": "AUCALEUC" }, { - "codePostal": "26310", - "codeCommune": "26040", - "libelleAcheminement": "BEAURIERES", - "nomCommune": "BEAURIERES" + "codePostal": "23600", + "codeCommune": "23240", + "libelleAcheminement": "ST SILVAIN BAS LE ROC", + "nomCommune": "ST SILVAIN BAS LE ROC" }, { - "codePostal": "51170", - "codeCommune": "51337", - "libelleAcheminement": "MAGNEUX", - "nomCommune": "MAGNEUX" + "codePostal": "32550", + "codeCommune": "32307", + "libelleAcheminement": "PAVIE", + "nomCommune": "PAVIE" }, { - "codePostal": "64190", - "codeCommune": "64033", - "libelleAcheminement": "ARAUX", - "nomCommune": "ARAUX" + "codePostal": "32170", + "codeCommune": "32226", + "libelleAcheminement": "MANAS BASTANOUS", + "nomCommune": "MANAS BASTANOUS" }, { - "codePostal": "59380", - "codeCommune": "59570", - "libelleAcheminement": "SOCX", - "nomCommune": "SOCX" + "codePostal": "22140", + "codeCommune": "22004", + "libelleAcheminement": "BEGARD", + "nomCommune": "BEGARD" }, { - "codePostal": "26800", - "codeCommune": "26042", - "libelleAcheminement": "BEAUVALLON", - "nomCommune": "BEAUVALLON" + "codePostal": "23000", + "codeCommune": "23248", + "libelleAcheminement": "ST VICTOR EN MARCHE", + "nomCommune": "ST VICTOR EN MARCHE" }, { - "codePostal": "51340", - "codeCommune": "51358", - "libelleAcheminement": "MAURUPT LE MONTOIS", - "nomCommune": "MAURUPT LE MONTOIS" + "codePostal": "32130", + "codeCommune": "32308", + "libelleAcheminement": "PEBEES", + "nomCommune": "PEBEES" }, { - "codePostal": "64120", - "codeCommune": "64045", - "libelleAcheminement": "ARHANSUS", - "nomCommune": "ARHANSUS" + "codePostal": "32200", + "codeCommune": "32247", + "libelleAcheminement": "MAURENS", + "nomCommune": "MAURENS" }, { - "codePostal": "59189", - "codeCommune": "59578", - "libelleAcheminement": "STEENBECQUE", - "nomCommune": "STEENBECQUE" + "codePostal": "22810", + "codeCommune": "22005", + "libelleAcheminement": "BELLE ISLE EN TERRE", + "nomCommune": "BELLE ISLE EN TERRE" }, { - "codePostal": "26170", - "codeCommune": "26043", - "libelleAcheminement": "BEAUVOISIN", - "nomCommune": "BEAUVOISIN" + "codePostal": "23460", + "codeCommune": "23249", + "libelleAcheminement": "ST YRIEIX LA MONTAGNE", + "nomCommune": "ST YRIEIX LA MONTAGNE" }, { - "codePostal": "51800", - "codeCommune": "51368", - "libelleAcheminement": "MINAUCOURT LE MESNIL LES HURLUS", - "nomCommune": "MINAUCOURT LE MESNIL LES HURLUS" + "codePostal": "32230", + "codeCommune": "32317", + "libelleAcheminement": "PEYRUSSE VIEILLE", + "nomCommune": "PEYRUSSE VIEILLE" }, { - "codePostal": "64370", - "codeCommune": "64057", - "libelleAcheminement": "ARTHEZ DE BEARN", - "nomCommune": "ARTHEZ DE BEARN" + "codePostal": "32340", + "codeCommune": "32253", + "libelleAcheminement": "MIRADOUX", + "nomCommune": "MIRADOUX" }, { - "codePostal": "59114", - "codeCommune": "59580", - "libelleAcheminement": "STEENVOORDE", - "nomCommune": "STEENVOORDE" + "codePostal": "22170", + "codeCommune": "22011", + "libelleAcheminement": "BOQUEHO", + "nomCommune": "BOQUEHO" }, { - "codePostal": "26160", - "codeCommune": "26052", - "libelleAcheminement": "BONLIEU SUR ROUBION", - "nomCommune": "BONLIEU SUR ROUBION" + "codePostal": "23170", + "codeCommune": "23261", + "libelleAcheminement": "VIERSAT", + "nomCommune": "VIERSAT" }, { - "codePostal": "51800", - "codeCommune": "51370", - "libelleAcheminement": "MOIREMONT", - "nomCommune": "MOIREMONT" + "codePostal": "32130", + "codeCommune": "32321", + "libelleAcheminement": "POLASTRON", + "nomCommune": "POLASTRON" }, { - "codePostal": "64800", - "codeCommune": "64058", - "libelleAcheminement": "ARTHEZ D ASSON", - "nomCommune": "ARTHEZ D ASSON" + "codePostal": "32300", + "codeCommune": "32254", + "libelleAcheminement": "MIRAMONT D ASTARAC", + "nomCommune": "MIRAMONT D ASTARAC" }, { - "codePostal": "59181", - "codeCommune": "59581", - "libelleAcheminement": "STEENWERCK", - "nomCommune": "STEENWERCK" + "codePostal": "22510", + "codeCommune": "22015", + "libelleAcheminement": "BREHAND", + "nomCommune": "BREHAND" }, { - "codePostal": "26410", - "codeCommune": "26055", - "libelleAcheminement": "BOULC", - "nomCommune": "BOULC" + "codePostal": "24300", + "codeCommune": "24001", + "libelleAcheminement": "ABJAT SUR BANDIAT", + "nomCommune": "ABJAT SUR BANDIAT" }, { - "codePostal": "51120", - "codeCommune": "51374", - "libelleAcheminement": "MONDEMENT MONTGIVROUX", - "nomCommune": "MONDEMENT MONTGIVROUX" + "codePostal": "32800", + "codeCommune": "32338", + "libelleAcheminement": "RAMOUZENS", + "nomCommune": "RAMOUZENS" }, { - "codePostal": "64260", - "codeCommune": "64062", - "libelleAcheminement": "ARUDY", - "nomCommune": "ARUDY" + "codePostal": "32300", + "codeCommune": "32256", + "libelleAcheminement": "MIRANDE", + "nomCommune": "MIRANDE" }, { - "codePostal": "59270", - "codeCommune": "59582", - "libelleAcheminement": "STRAZEELE", - "nomCommune": "STRAZEELE" + "codePostal": "22100", + "codeCommune": "22026", + "libelleAcheminement": "CALORGUEN", + "nomCommune": "CALORGUEN" }, { - "codePostal": "26190", - "codeCommune": "26059", - "libelleAcheminement": "BOUVANTE", - "nomCommune": "BOUVANTE" + "codePostal": "24210", + "codeCommune": "24004", + "libelleAcheminement": "AJAT", + "nomCommune": "AJAT" }, { - "codePostal": "51500", - "codeCommune": "51375", - "libelleAcheminement": "MONTBRE", - "nomCommune": "MONTBRE" + "codePostal": "32390", + "codeCommune": "32341", + "libelleAcheminement": "REJAUMONT", + "nomCommune": "REJAUMONT" }, { - "codePostal": "64310", - "codeCommune": "64065", - "libelleAcheminement": "ASCAIN", - "nomCommune": "ASCAIN" + "codePostal": "32600", + "codeCommune": "32262", + "libelleAcheminement": "MONBRUN", + "nomCommune": "MONBRUN" }, { - "codePostal": "59114", - "codeCommune": "59587", - "libelleAcheminement": "TERDEGHEM", - "nomCommune": "TERDEGHEM" + "codePostal": "22480", + "codeCommune": "22029", + "libelleAcheminement": "CANIHUEL", + "nomCommune": "CANIHUEL" }, { - "codePostal": "26170", - "codeCommune": "26063", - "libelleAcheminement": "BUIS LES BARONNIES", - "nomCommune": "BUIS LES BARONNIES" + "codePostal": "24260", + "codeCommune": "24015", + "libelleAcheminement": "AUDRIX", + "nomCommune": "AUDRIX" }, { - "codePostal": "51210", - "codeCommune": "51380", - "libelleAcheminement": "MONTMIRAIL", - "nomCommune": "MONTMIRAIL" + "codePostal": "32400", + "codeCommune": "32344", + "libelleAcheminement": "RISCLE", + "nomCommune": "RISCLE" }, { - "codePostal": "64450", - "codeCommune": "64070", - "libelleAcheminement": "ASTIS", - "nomCommune": "ASTIS" + "codePostal": "32300", + "codeCommune": "32263", + "libelleAcheminement": "MONCASSIN", + "nomCommune": "MONCASSIN" }, { - "codePostal": "59380", - "codeCommune": "59588", - "libelleAcheminement": "TETEGHEM COUDEKERQUE VILLAGE", - "nomCommune": "TETEGHEM COUDEKERQUE VILLAGE" + "codePostal": "22970", + "codeCommune": "22040", + "libelleAcheminement": "COADOUT", + "nomCommune": "COADOUT" }, { - "codePostal": "26190", - "codeCommune": "26066", - "libelleAcheminement": "LE CHAFFAL", - "nomCommune": "LE CHAFFAL" + "codePostal": "24210", + "codeCommune": "24019", + "libelleAcheminement": "AZERAT", + "nomCommune": "AZERAT" }, { - "codePostal": "51270", - "codeCommune": "51381", - "libelleAcheminement": "MONTMORT LUCY", - "nomCommune": "MONTMORT LUCY" + "codePostal": "32430", + "codeCommune": "32349", + "libelleAcheminement": "ROQUELAURE ST AUBIN", + "nomCommune": "ROQUELAURE ST AUBIN" }, { - "codePostal": "64390", - "codeCommune": "64071", - "libelleAcheminement": "ATHOS ASPIS", - "nomCommune": "ATHOS ASPIS" + "codePostal": "32300", + "codeCommune": "32265", + "libelleAcheminement": "MONCLAR SUR LOSSE", + "nomCommune": "MONCLAR SUR LOSSE" }, { - "codePostal": "59189", - "codeCommune": "59590", - "libelleAcheminement": "THIENNES", - "nomCommune": "THIENNES" + "codePostal": "22330", + "codeCommune": "22046", + "libelleAcheminement": "LE MENE", + "nomCommune": "LE MENE" }, { - "codePostal": "26470", - "codeCommune": "26067", - "libelleAcheminement": "CHALANCON", - "nomCommune": "CHALANCON" + "codePostal": "24150", + "codeCommune": "24022", + "libelleAcheminement": "BADEFOLS SUR DORDOGNE", + "nomCommune": "BADEFOLS SUR DORDOGNE" }, { - "codePostal": "51400", - "codeCommune": "51389", - "libelleAcheminement": "MOURMELON LE PETIT", - "nomCommune": "MOURMELON LE PETIT" + "codePostal": "32100", + "codeCommune": "32350", + "libelleAcheminement": "ROQUEPINE", + "nomCommune": "ROQUEPINE" }, { - "codePostal": "64270", - "codeCommune": "64082", - "libelleAcheminement": "AUTERRIVE", - "nomCommune": "AUTERRIVE" + "codePostal": "32240", + "codeCommune": "32274", + "libelleAcheminement": "MONLEZUN D ARMAGNAC", + "nomCommune": "MONLEZUN D ARMAGNAC" }, { - "codePostal": "59163", - "codeCommune": "59591", - "libelleAcheminement": "THIVENCELLE", - "nomCommune": "THIVENCELLE" + "codePostal": "22330", + "codeCommune": "22046", + "libelleAcheminement": "LE MENE", + "nomCommune": "LE MENE" }, { - "codePostal": "26350", - "codeCommune": "26068", - "libelleAcheminement": "LE CHALON", - "nomCommune": "LE CHALON" + "codePostal": "24330", + "codeCommune": "24026", + "libelleAcheminement": "BASSILLAC ET AUBEROCHE", + "nomCommune": "BASSILLAC ET AUBEROCHE" }, { - "codePostal": "51530", - "codeCommune": "51390", - "libelleAcheminement": "MOUSSY", - "nomCommune": "MOUSSY" + "codePostal": "32170", + "codeCommune": "32355", + "libelleAcheminement": "SADEILLAN", + "nomCommune": "SADEILLAN" }, { - "codePostal": "64520", - "codeCommune": "64094", - "libelleAcheminement": "BARDOS", - "nomCommune": "BARDOS" + "codePostal": "32730", + "codeCommune": "32283", + "libelleAcheminement": "MONTEGUT ARROS", + "nomCommune": "MONTEGUT ARROS" }, { - "codePostal": "59239", - "codeCommune": "59592", - "libelleAcheminement": "THUMERIES", - "nomCommune": "THUMERIES" + "codePostal": "22100", + "codeCommune": "22050", + "libelleAcheminement": "DINAN", + "nomCommune": "DINAN" }, { - "codePostal": "26300", - "codeCommune": "26079", - "libelleAcheminement": "CHARPEY", - "nomCommune": "CHARPEY" + "codePostal": "24440", + "codeCommune": "24028", + "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", + "nomCommune": "BEAUMONTOIS EN PERIGORD" }, { - "codePostal": "51160", - "codeCommune": "51392", - "libelleAcheminement": "MUTIGNY", - "nomCommune": "MUTIGNY" + "codePostal": "32430", + "codeCommune": "32357", + "libelleAcheminement": "STE ANNE", + "nomCommune": "STE ANNE" }, { - "codePostal": "64200", - "codeCommune": "64100", - "libelleAcheminement": "BASSUSSARRY", - "nomCommune": "BASSUSSARRY" + "codePostal": "32200", + "codeCommune": "32288", + "libelleAcheminement": "MONTIRON", + "nomCommune": "MONTIRON" }, { - "codePostal": "59158", - "codeCommune": "59594", - "libelleAcheminement": "THUN ST AMAND", - "nomCommune": "THUN ST AMAND" + "codePostal": "22290", + "codeCommune": "22057", + "libelleAcheminement": "LE FAOUET", + "nomCommune": "LE FAOUET" }, { - "codePostal": "26120", - "codeCommune": "26081", - "libelleAcheminement": "CHATEAUDOUBLE", - "nomCommune": "CHATEAUDOUBLE" + "codePostal": "24400", + "codeCommune": "24029", + "libelleAcheminement": "BEAUPOUYET", + "nomCommune": "BEAUPOUYET" }, { - "codePostal": "51480", - "codeCommune": "51393", - "libelleAcheminement": "NANTEUIL LA FORET", - "nomCommune": "NANTEUIL LA FORET" + "codePostal": "32120", + "codeCommune": "32359", + "libelleAcheminement": "ST ANTONIN", + "nomCommune": "ST ANTONIN" }, { - "codePostal": "64100", - "codeCommune": "64102", - "libelleAcheminement": "BAYONNE", - "nomCommune": "BAYONNE" + "codePostal": "32240", + "codeCommune": "32291", + "libelleAcheminement": "MORMES", + "nomCommune": "MORMES" }, { - "codePostal": "59218", - "codeCommune": "59607", - "libelleAcheminement": "VENDEGIES AU BOIS", - "nomCommune": "VENDEGIES AU BOIS" + "codePostal": "22800", + "codeCommune": "22059", + "libelleAcheminement": "LE FOEIL", + "nomCommune": "LE FOEIL" }, { - "codePostal": "26300", - "codeCommune": "26088", - "libelleAcheminement": "CHATUZANGE LE GOUBET", - "nomCommune": "CHATUZANGE LE GOUBET" + "codePostal": "24140", + "codeCommune": "24034", + "libelleAcheminement": "BELEYMAS", + "nomCommune": "BELEYMAS" }, { - "codePostal": "51330", - "codeCommune": "51397", - "libelleAcheminement": "LA NEUVILLE AUX BOIS", - "nomCommune": "LA NEUVILLE AUX BOIS" + "codePostal": "32700", + "codeCommune": "32364", + "libelleAcheminement": "ST AVIT FRANDAT", + "nomCommune": "ST AVIT FRANDAT" }, { - "codePostal": "64120", - "codeCommune": "64106", - "libelleAcheminement": "BEHASQUE LAPISTE", - "nomCommune": "BEHASQUE LAPISTE" + "codePostal": "32130", + "codeCommune": "32297", + "libelleAcheminement": "NOILHAN", + "nomCommune": "NOILHAN" }, { - "codePostal": "59175", - "codeCommune": "59609", - "libelleAcheminement": "VENDEVILLE", - "nomCommune": "VENDEVILLE" + "codePostal": "22110", + "codeCommune": "22061", + "libelleAcheminement": "GLOMEL", + "nomCommune": "GLOMEL" }, { - "codePostal": "26300", - "codeCommune": "26088", - "libelleAcheminement": "CHATUZANGE LE GOUBET", - "nomCommune": "CHATUZANGE LE GOUBET" + "codePostal": "24170", + "codeCommune": "24035", + "libelleAcheminement": "PAYS DE BELVES", + "nomCommune": "PAYS DE BELVES" }, { - "codePostal": "51480", - "codeCommune": "51398", - "libelleAcheminement": "LA NEUVILLE AUX LARRIS", - "nomCommune": "LA NEUVILLE AUX LARRIS" + "codePostal": "32120", + "codeCommune": "32366", + "libelleAcheminement": "ST BRES", + "nomCommune": "ST BRES" }, { - "codePostal": "64160", - "codeCommune": "64114", - "libelleAcheminement": "BERNADETS", - "nomCommune": "BERNADETS" + "codePostal": "32800", + "codeCommune": "32299", + "libelleAcheminement": "NOULENS", + "nomCommune": "NOULENS" }, { - "codePostal": "59227", - "codeCommune": "59610", - "libelleAcheminement": "VERCHAIN MAUGRE", - "nomCommune": "VERCHAIN MAUGRE" + "codePostal": "22570", + "codeCommune": "22064", + "libelleAcheminement": "GOUAREC", + "nomCommune": "GOUAREC" }, { - "codePostal": "26220", - "codeCommune": "26101", - "libelleAcheminement": "COMPS", - "nomCommune": "COMPS" + "codePostal": "24220", + "codeCommune": "24036", + "libelleAcheminement": "BERBIGUIERES", + "nomCommune": "BERBIGUIERES" }, { - "codePostal": "51480", - "codeCommune": "51410", - "libelleAcheminement": "OEUILLY", - "nomCommune": "OEUILLY" + "codePostal": "32380", + "codeCommune": "32370", + "libelleAcheminement": "ST CLAR", + "nomCommune": "ST CLAR" }, { - "codePostal": "64260", - "codeCommune": "64128", - "libelleAcheminement": "BILHERES", - "nomCommune": "BILHERES" + "codePostal": "32260", + "codeCommune": "32300", + "libelleAcheminement": "ORBESSAN", + "nomCommune": "ORBESSAN" }, { - "codePostal": "59730", - "codeCommune": "59612", - "libelleAcheminement": "VERTAIN", - "nomCommune": "VERTAIN" + "codePostal": "22390", + "codeCommune": "22072", + "libelleAcheminement": "GURUNHUEL", + "nomCommune": "GURUNHUEL" }, { - "codePostal": "26510", - "codeCommune": "26104", - "libelleAcheminement": "CORNILLAC", - "nomCommune": "CORNILLAC" + "codePostal": "24320", + "codeCommune": "24038", + "libelleAcheminement": "BERTRIC BUREE", + "nomCommune": "BERTRIC BUREE" }, { - "codePostal": "51530", - "codeCommune": "51413", - "libelleAcheminement": "OIRY", - "nomCommune": "OIRY" + "codePostal": "32380", + "codeCommune": "32371", + "libelleAcheminement": "ST CREAC", + "nomCommune": "ST CREAC" }, { - "codePostal": "64320", - "codeCommune": "64132", - "libelleAcheminement": "BIZANOS", - "nomCommune": "BIZANOS" + "codePostal": "32420", + "codeCommune": "32309", + "libelleAcheminement": "PELLEFIGUE", + "nomCommune": "PELLEFIGUE" }, { - "codePostal": "59970", - "codeCommune": "59613", - "libelleAcheminement": "VICQ", - "nomCommune": "VICQ" + "codePostal": "22320", + "codeCommune": "22073", + "libelleAcheminement": "LA HARMOYE", + "nomCommune": "LA HARMOYE" }, { - "codePostal": "26400", - "codeCommune": "26115", - "libelleAcheminement": "DIVAJEU", - "nomCommune": "DIVAJEU" + "codePostal": "24220", + "codeCommune": "24040", + "libelleAcheminement": "BEYNAC ET CAZENAC", + "nomCommune": "BEYNAC ET CAZENAC" }, { - "codePostal": "51270", - "codeCommune": "51416", - "libelleAcheminement": "ORBAIS L ABBAYE", - "nomCommune": "ORBAIS L ABBAYE" + "codePostal": "32300", + "codeCommune": "32375", + "libelleAcheminement": "ST ELIX THEUX", + "nomCommune": "ST ELIX THEUX" }, { - "codePostal": "64290", - "codeCommune": "64139", - "libelleAcheminement": "BOSDARROS", - "nomCommune": "BOSDARROS" + "codePostal": "32550", + "codeCommune": "32312", + "libelleAcheminement": "PESSAN", + "nomCommune": "PESSAN" }, { - "codePostal": "59271", - "codeCommune": "59614", - "libelleAcheminement": "VIESLY", - "nomCommune": "VIESLY" + "codePostal": "22600", + "codeCommune": "22075", + "libelleAcheminement": "HEMONSTOIR", + "nomCommune": "HEMONSTOIR" }, { - "codePostal": "26600", - "codeCommune": "26119", - "libelleAcheminement": "EROME", - "nomCommune": "EROME" + "codePostal": "24310", + "codeCommune": "24042", + "libelleAcheminement": "BIRAS", + "nomCommune": "BIRAS" }, { - "codePostal": "51140", - "codeCommune": "51429", - "libelleAcheminement": "PEVY", - "nomCommune": "PEVY" + "codePostal": "32430", + "codeCommune": "32377", + "libelleAcheminement": "ST GEORGES", + "nomCommune": "ST GEORGES" }, { - "codePostal": "64190", - "codeCommune": "64149", - "libelleAcheminement": "BUGNEIN", - "nomCommune": "BUGNEIN" + "codePostal": "32360", + "codeCommune": "32316", + "libelleAcheminement": "PEYRUSSE MASSAS", + "nomCommune": "PEYRUSSE MASSAS" }, { - "codePostal": "59530", - "codeCommune": "59619", - "libelleAcheminement": "VILLEREAU", - "nomCommune": "VILLEREAU" + "codePostal": "22400", + "codeCommune": "22093", + "libelleAcheminement": "LAMBALLE ARMOR", + "nomCommune": "LAMBALLE ARMOR" }, { - "codePostal": "26560", - "codeCommune": "26126", - "libelleAcheminement": "EYGALAYES", - "nomCommune": "EYGALAYES" + "codePostal": "24540", + "codeCommune": "24043", + "libelleAcheminement": "BIRON", + "nomCommune": "BIRON" }, { - "codePostal": "51220", - "codeCommune": "51444", - "libelleAcheminement": "POUILLON", - "nomCommune": "POUILLON" + "codePostal": "32400", + "codeCommune": "32378", + "libelleAcheminement": "ST GERME", + "nomCommune": "ST GERME" }, { - "codePostal": "64220", - "codeCommune": "64154", - "libelleAcheminement": "BUSSUNARITS SARRASQUETTE", - "nomCommune": "BUSSUNARITS SARRASQUETTE" + "codePostal": "32300", + "codeCommune": "32323", + "libelleAcheminement": "PONSAMPERE", + "nomCommune": "PONSAMPERE" }, { - "codePostal": "59234", - "codeCommune": "59620", - "libelleAcheminement": "VILLERS AU TERTRE", - "nomCommune": "VILLERS AU TERTRE" + "codePostal": "22770", + "codeCommune": "22094", + "libelleAcheminement": "LANCIEUX", + "nomCommune": "LANCIEUX" }, { - "codePostal": "26730", - "codeCommune": "26129", - "libelleAcheminement": "EYMEUX", - "nomCommune": "EYMEUX" + "codePostal": "24330", + "codeCommune": "24053", + "libelleAcheminement": "BOULAZAC ISLE MANOIRE", + "nomCommune": "BOULAZAC ISLE MANOIRE" }, { - "codePostal": "51400", - "codeCommune": "51447", - "libelleAcheminement": "PROSNES", - "nomCommune": "PROSNES" + "codePostal": "32230", + "codeCommune": "32383", + "libelleAcheminement": "ST JUSTIN", + "nomCommune": "ST JUSTIN" }, { - "codePostal": "64220", - "codeCommune": "64155", - "libelleAcheminement": "BUSTINCE IRIBERRY", - "nomCommune": "BUSTINCE IRIBERRY" + "codePostal": "32260", + "codeCommune": "32327", + "libelleAcheminement": "POUY LOUBRIN", + "nomCommune": "POUY LOUBRIN" }, { - "codePostal": "59188", - "codeCommune": "59622", - "libelleAcheminement": "VILLERS EN CAUCHIES", - "nomCommune": "VILLERS EN CAUCHIES" + "codePostal": "22130", + "codeCommune": "22105", + "libelleAcheminement": "LANGUENAN", + "nomCommune": "LANGUENAN" }, { - "codePostal": "26160", - "codeCommune": "26131", - "libelleAcheminement": "EYZAHUT", - "nomCommune": "EYZAHUT" + "codePostal": "24310", + "codeCommune": "24064", + "libelleAcheminement": "BRANTOME EN PERIGORD", + "nomCommune": "BRANTOME EN PERIGORD" }, { - "codePostal": "51100", - "codeCommune": "51454", - "libelleAcheminement": "REIMS", - "nomCommune": "REIMS" + "codePostal": "32360", + "codeCommune": "32384", + "libelleAcheminement": "ST LARY", + "nomCommune": "ST LARY" }, { - "codePostal": "64680", - "codeCommune": "64156", - "libelleAcheminement": "BUZIET", - "nomCommune": "BUZIET" + "codePostal": "32190", + "codeCommune": "32332", + "libelleAcheminement": "PRENERON", + "nomCommune": "PRENERON" }, { - "codePostal": "59530", - "codeCommune": "59626", - "libelleAcheminement": "VILLERS POL", - "nomCommune": "VILLERS POL" + "codePostal": "22570", + "codeCommune": "22107", + "libelleAcheminement": "BON REPOS SUR BLAVET", + "nomCommune": "BON REPOS SUR BLAVET" }, { - "codePostal": "26310", - "codeCommune": "26136", - "libelleAcheminement": "VAL MARAVEL", - "nomCommune": "VAL MARAVEL" + "codePostal": "24310", + "codeCommune": "24064", + "libelleAcheminement": "BRANTOME EN PERIGORD", + "nomCommune": "BRANTOME EN PERIGORD" }, { - "codePostal": "51210", - "codeCommune": "51460", - "libelleAcheminement": "RIEUX", - "nomCommune": "RIEUX" + "codePostal": "32480", + "codeCommune": "32391", + "libelleAcheminement": "ST MARTIN DE GOYNE", + "nomCommune": "ST MARTIN DE GOYNE" }, { - "codePostal": "64330", - "codeCommune": "64159", - "libelleAcheminement": "CADILLON", - "nomCommune": "CADILLON" + "codePostal": "32120", + "codeCommune": "32335", + "libelleAcheminement": "PUYCASQUIER", + "nomCommune": "PUYCASQUIER" }, { - "codePostal": "59135", - "codeCommune": "59632", - "libelleAcheminement": "WALLERS", - "nomCommune": "WALLERS" + "codePostal": "22580", + "codeCommune": "22109", + "libelleAcheminement": "LANLOUP", + "nomCommune": "LANLOUP" }, { - "codePostal": "26310", - "codeCommune": "26136", - "libelleAcheminement": "VAL MARAVEL", - "nomCommune": "VAL MARAVEL" + "codePostal": "24310", + "codeCommune": "24064", + "libelleAcheminement": "BRANTOME EN PERIGORD", + "nomCommune": "BRANTOME EN PERIGORD" }, { - "codePostal": "52100", - "codeCommune": "51478", - "libelleAcheminement": "ST EULIEN", - "nomCommune": "ST EULIEN" + "codePostal": "32450", + "codeCommune": "32392", + "libelleAcheminement": "ST MARTIN GIMOIS", + "nomCommune": "ST MARTIN GIMOIS" }, { - "codePostal": "64370", - "codeCommune": "64172", - "libelleAcheminement": "CASTEIDE CANDAU", - "nomCommune": "CASTEIDE CANDAU" + "codePostal": "32160", + "codeCommune": "32362", + "libelleAcheminement": "ST AUNIX LENGROS", + "nomCommune": "ST AUNIX LENGROS" }, { - "codePostal": "59135", - "codeCommune": "59632", - "libelleAcheminement": "WALLERS", - "nomCommune": "WALLERS" + "codePostal": "22290", + "codeCommune": "22112", + "libelleAcheminement": "LANNEBERT", + "nomCommune": "LANNEBERT" }, { - "codePostal": "26400", - "codeCommune": "26137", - "libelleAcheminement": "FRANCILLON SUR ROUBION", - "nomCommune": "FRANCILLON SUR ROUBION" + "codePostal": "24210", + "codeCommune": "24066", + "libelleAcheminement": "BROUCHAUD", + "nomCommune": "BROUCHAUD" }, { - "codePostal": "51510", - "codeCommune": "51483", - "libelleAcheminement": "ST GIBRIEN", - "nomCommune": "ST GIBRIEN" + "codePostal": "32300", + "codeCommune": "32393", + "libelleAcheminement": "ST MAUR", + "nomCommune": "ST MAUR" }, { - "codePostal": "64330", - "codeCommune": "64180", - "libelleAcheminement": "CASTETPUGON", - "nomCommune": "CASTETPUGON" + "codePostal": "32390", + "codeCommune": "32368", + "libelleAcheminement": "STE CHRISTIE", + "nomCommune": "STE CHRISTIE" }, { - "codePostal": "59132", - "codeCommune": "59633", - "libelleAcheminement": "WALLERS EN FAGNE", - "nomCommune": "WALLERS EN FAGNE" + "codePostal": "22300", + "codeCommune": "22113", + "libelleAcheminement": "LANNION", + "nomCommune": "LANNION" }, { - "codePostal": "26700", - "codeCommune": "26138", - "libelleAcheminement": "LA GARDE ADHEMAR", - "nomCommune": "LA GARDE ADHEMAR" + "codePostal": "24360", + "codeCommune": "24071", + "libelleAcheminement": "BUSSIERE BADIL", + "nomCommune": "BUSSIERE BADIL" }, { - "codePostal": "51600", - "codeCommune": "51486", - "libelleAcheminement": "ST HILAIRE LE GRAND", - "nomCommune": "ST HILAIRE LE GRAND" + "codePostal": "32400", + "codeCommune": "32398", + "libelleAcheminement": "ST MONT", + "nomCommune": "ST MONT" }, { - "codePostal": "64190", - "codeCommune": "64186", - "libelleAcheminement": "CHARRE", - "nomCommune": "CHARRE" + "codePostal": "32430", + "codeCommune": "32372", + "libelleAcheminement": "ST CRICQ", + "nomCommune": "ST CRICQ" }, { - "codePostal": "59144", - "codeCommune": "59639", - "libelleAcheminement": "WARGNIES LE GRAND", - "nomCommune": "WARGNIES LE GRAND" + "codePostal": "22410", + "codeCommune": "22117", + "libelleAcheminement": "LANTIC", + "nomCommune": "LANTIC" }, { - "codePostal": "26750", - "codeCommune": "26140", - "libelleAcheminement": "GEYSSANS", - "nomCommune": "GEYSSANS" + "codePostal": "24550", + "codeCommune": "24075", + "libelleAcheminement": "CAMPAGNAC LES QUERCY", + "nomCommune": "CAMPAGNAC LES QUERCY" }, { - "codePostal": "51130", - "codeCommune": "51499", - "libelleAcheminement": "ST MARD LES ROUFFY", - "nomCommune": "ST MARD LES ROUFFY" + "codePostal": "32220", + "codeCommune": "32407", + "libelleAcheminement": "ST SOULAN", + "nomCommune": "ST SOULAN" }, { - "codePostal": "64330", - "codeCommune": "64190", - "libelleAcheminement": "CLARACQ", - "nomCommune": "CLARACQ" + "codePostal": "32170", + "codeCommune": "32373", + "libelleAcheminement": "STE DODE", + "nomCommune": "STE DODE" }, { - "codePostal": "59144", - "codeCommune": "59640", - "libelleAcheminement": "WARGNIES LE PETIT", - "nomCommune": "WARGNIES LE PETIT" + "codePostal": "22420", + "codeCommune": "22119", + "libelleAcheminement": "LANVELLEC", + "nomCommune": "LANVELLEC" }, { - "codePostal": "26560", - "codeCommune": "26154", - "libelleAcheminement": "LACHAU", - "nomCommune": "LACHAU" + "codePostal": "24170", + "codeCommune": "24084", + "libelleAcheminement": "CARVES", + "nomCommune": "CARVES" }, { - "codePostal": "51240", - "codeCommune": "51502", - "libelleAcheminement": "ST MARTIN AUX CHAMPS", - "nomCommune": "ST MARTIN AUX CHAMPS" + "codePostal": "32140", + "codeCommune": "32409", + "libelleAcheminement": "SAMARAN", + "nomCommune": "SAMARAN" }, { - "codePostal": "64360", - "codeCommune": "64197", - "libelleAcheminement": "CUQUERON", - "nomCommune": "CUQUERON" + "codePostal": "32450", + "codeCommune": "32374", + "libelleAcheminement": "ST ELIX D ASTARAC", + "nomCommune": "ST ELIX D ASTARAC" }, { - "codePostal": "59380", - "codeCommune": "59641", - "libelleAcheminement": "WARHEM", - "nomCommune": "WARHEM" + "codePostal": "22810", + "codeCommune": "22129", + "libelleAcheminement": "LOC ENVEL", + "nomCommune": "LOC ENVEL" }, { - "codePostal": "26210", - "codeCommune": "26155", - "libelleAcheminement": "LAPEYROUSE MORNAY", - "nomCommune": "LAPEYROUSE MORNAY" + "codePostal": "24250", + "codeCommune": "24086", + "libelleAcheminement": "CASTELNAUD LA CHAPELLE", + "nomCommune": "CASTELNAUD LA CHAPELLE" }, { - "codePostal": "51470", - "codeCommune": "51506", - "libelleAcheminement": "ST MEMMIE", - "nomCommune": "ST MEMMIE" + "codePostal": "32400", + "codeCommune": "32414", + "libelleAcheminement": "SARRAGACHIES", + "nomCommune": "SARRAGACHIES" }, { - "codePostal": "64330", - "codeCommune": "64199", - "libelleAcheminement": "DIUSSE", - "nomCommune": "DIUSSE" + "codePostal": "32550", + "codeCommune": "32381", + "libelleAcheminement": "ST JEAN LE COMTAL", + "nomCommune": "ST JEAN LE COMTAL" }, { - "codePostal": "59870", - "codeCommune": "59642", - "libelleAcheminement": "WARLAING", - "nomCommune": "WARLAING" + "codePostal": "22540", + "codeCommune": "22135", + "libelleAcheminement": "LOUARGAT", + "nomCommune": "LOUARGAT" }, { - "codePostal": "26270", - "codeCommune": "26166", - "libelleAcheminement": "LORIOL SUR DROME", - "nomCommune": "LORIOL SUR DROME" + "codePostal": "24320", + "codeCommune": "24097", + "libelleAcheminement": "CHAMPAGNE ET FONTAINE", + "nomCommune": "CHAMPAGNE ET FONTAINE" }, { - "codePostal": "51800", - "codeCommune": "51507", - "libelleAcheminement": "STE MENEHOULD", - "nomCommune": "STE MENEHOULD" + "codePostal": "32500", + "codeCommune": "32417", + "libelleAcheminement": "LA SAUVETAT", + "nomCommune": "LA SAUVETAT" }, { - "codePostal": "64440", - "codeCommune": "64204", - "libelleAcheminement": "EAUX BONNES", - "nomCommune": "EAUX BONNES" + "codePostal": "32380", + "codeCommune": "32385", + "libelleAcheminement": "ST LEONARD", + "nomCommune": "ST LEONARD" }, { - "codePostal": "59560", - "codeCommune": "59643", - "libelleAcheminement": "WARNETON", - "nomCommune": "WARNETON" + "codePostal": "22600", + "codeCommune": "22136", + "libelleAcheminement": "LOUDEAC", + "nomCommune": "LOUDEAC" }, { - "codePostal": "26740", - "codeCommune": "26176", - "libelleAcheminement": "MARSANNE", - "nomCommune": "MARSANNE" + "codePostal": "24650", + "codeCommune": "24102", + "libelleAcheminement": "CHANCELADE", + "nomCommune": "CHANCELADE" }, { - "codePostal": "51320", - "codeCommune": "51508", - "libelleAcheminement": "ST OUEN DOMPROT", - "nomCommune": "ST OUEN DOMPROT" + "codePostal": "32450", + "codeCommune": "32428", + "libelleAcheminement": "SEMEZIES CACHAN", + "nomCommune": "SEMEZIES CACHAN" }, { - "codePostal": "64160", - "codeCommune": "64212", - "libelleAcheminement": "ESPECHEDE", - "nomCommune": "ESPECHEDE" + "codePostal": "32220", + "codeCommune": "32386", + "libelleAcheminement": "ST LIZIER DU PLANTE", + "nomCommune": "ST LIZIER DU PLANTE" }, { - "codePostal": "59143", - "codeCommune": "59647", - "libelleAcheminement": "WATTEN", - "nomCommune": "WATTEN" + "codePostal": "22640", + "codeCommune": "22140", + "libelleAcheminement": "LA MALHOURE", + "nomCommune": "LA MALHOURE" }, { - "codePostal": "26410", - "codeCommune": "26178", - "libelleAcheminement": "MENGLON", - "nomCommune": "MENGLON" + "codePostal": "24320", + "codeCommune": "24110", + "libelleAcheminement": "LA CHAPELLE MONTABOURLET", + "nomCommune": "LA CHAPELLE MONTABOURLET" }, { - "codePostal": "51290", - "codeCommune": "51513", - "libelleAcheminement": "ST REMY EN BOUZEMONT ST GENEST", - "nomCommune": "ST REMY EN BOUZEMONT ST GENEST ISSON" + "codePostal": "32130", + "codeCommune": "32432", + "libelleAcheminement": "SEYSSES SAVES", + "nomCommune": "SEYSSES SAVES" }, { - "codePostal": "64400", - "codeCommune": "64217", - "libelleAcheminement": "ESQUIULE", - "nomCommune": "ESQUIULE" + "codePostal": "32300", + "codeCommune": "32401", + "libelleAcheminement": "ST OST", + "nomCommune": "ST OST" }, { - "codePostal": "59136", - "codeCommune": "59653", - "libelleAcheminement": "WAVRIN", - "nomCommune": "WAVRIN" + "codePostal": "22200", + "codeCommune": "22150", + "libelleAcheminement": "LE MERZER", + "nomCommune": "LE MERZER" }, { - "codePostal": "26170", - "codeCommune": "26180", - "libelleAcheminement": "MERINDOL LES OLIVIERS", - "nomCommune": "MERINDOL LES OLIVIERS" + "codePostal": "24640", + "codeCommune": "24121", + "libelleAcheminement": "CHOURGNAC", + "nomCommune": "CHOURGNAC" }, { - "codePostal": "51600", - "codeCommune": "51517", - "libelleAcheminement": "ST SOUPLET SUR PY", - "nomCommune": "ST SOUPLET SUR PY" + "codePostal": "32420", + "codeCommune": "32433", + "libelleAcheminement": "SIMORRE", + "nomCommune": "SIMORRE" }, { - "codePostal": "64120", - "codeCommune": "64221", - "libelleAcheminement": "ETCHARRY", - "nomCommune": "ETCHARRY" + "codePostal": "32500", + "codeCommune": "32405", + "libelleAcheminement": "STE RADEGONDE", + "nomCommune": "STE RADEGONDE" }, { - "codePostal": "59670", - "codeCommune": "59655", - "libelleAcheminement": "WEMAERS CAPPEL", - "nomCommune": "WEMAERS CAPPEL" + "codePostal": "22600", + "codeCommune": "22155", + "libelleAcheminement": "LA MOTTE", + "nomCommune": "LA MOTTE" }, { - "codePostal": "26560", - "codeCommune": "26181", - "libelleAcheminement": "MEVOUILLON", - "nomCommune": "MEVOUILLON" + "codePostal": "24560", + "codeCommune": "24132", + "libelleAcheminement": "CONNE DE LABARDE", + "nomCommune": "CONNE DE LABARDE" }, { - "codePostal": "51340", - "codeCommune": "51521", - "libelleAcheminement": "ST VRAIN", - "nomCommune": "ST VRAIN" + "codePostal": "32430", + "codeCommune": "32435", + "libelleAcheminement": "SIRAC", + "nomCommune": "SIRAC" }, { - "codePostal": "64410", - "codeCommune": "64226", - "libelleAcheminement": "FICHOUS RIUMAYOU", - "nomCommune": "FICHOUS RIUMAYOU" + "codePostal": "32370", + "codeCommune": "32408", + "libelleAcheminement": "SALLES D ARMAGNAC", + "nomCommune": "SALLES D ARMAGNAC" }, { - "codePostal": "60690", - "codeCommune": "60004", - "libelleAcheminement": "ACHY", - "nomCommune": "ACHY" + "codePostal": "22200", + "codeCommune": "22156", + "libelleAcheminement": "MOUSTERU", + "nomCommune": "MOUSTERU" }, { - "codePostal": "26310", - "codeCommune": "26186", - "libelleAcheminement": "MISCON", - "nomCommune": "MISCON" + "codePostal": "24220", + "codeCommune": "24142", + "libelleAcheminement": "COUX ET BIGAROQUE MOUZENS", + "nomCommune": "COUX ET BIGAROQUE MOUZENS" }, { - "codePostal": "51120", - "codeCommune": "51526", - "libelleAcheminement": "SAUDOY", - "nomCommune": "SAUDOY" + "codePostal": "32450", + "codeCommune": "32447", + "libelleAcheminement": "TIRENT PONTEJAC", + "nomCommune": "TIRENT PONTEJAC" }, { - "codePostal": "64120", - "codeCommune": "64228", - "libelleAcheminement": "GABAT", - "nomCommune": "GABAT" + "codePostal": "32130", + "codeCommune": "32410", + "libelleAcheminement": "SAMATAN", + "nomCommune": "SAMATAN" }, { - "codePostal": "60700", - "codeCommune": "60006", - "libelleAcheminement": "LES AGEUX", - "nomCommune": "LES AGEUX" + "codePostal": "22200", + "codeCommune": "22161", + "libelleAcheminement": "PABU", + "nomCommune": "PABU" }, { - "codePostal": "26760", - "codeCommune": "26196", - "libelleAcheminement": "MONTELEGER", - "nomCommune": "MONTELEGER" + "codePostal": "24380", + "codeCommune": "24146", + "libelleAcheminement": "CREYSSENSAC ET PISSOT", + "nomCommune": "CREYSSENSAC ET PISSOT" }, { - "codePostal": "51400", - "codeCommune": "51530", - "libelleAcheminement": "SEPT SAULX", - "nomCommune": "SEPT SAULX" + "codePostal": "32400", + "codeCommune": "32461", + "libelleAcheminement": "VERLUS", + "nomCommune": "VERLUS" }, { - "codePostal": "64450", - "codeCommune": "64232", - "libelleAcheminement": "GARLEDE MONDEBAT", - "nomCommune": "GARLEDE MONDEBAT" + "codePostal": "32220", + "codeCommune": "32420", + "libelleAcheminement": "SAUVIMONT", + "nomCommune": "SAUVIMONT" }, { - "codePostal": "60130", - "codeCommune": "60014", - "libelleAcheminement": "ANGIVILLERS", - "nomCommune": "ANGIVILLERS" + "codePostal": "22340", + "codeCommune": "22163", + "libelleAcheminement": "PAULE", + "nomCommune": "PAULE" }, { - "codePostal": "26120", - "codeCommune": "26197", - "libelleAcheminement": "MONTELIER", - "nomCommune": "MONTELIER" + "codePostal": "24170", + "codeCommune": "24151", + "libelleAcheminement": "DOISSAT", + "nomCommune": "DOISSAT" }, { - "codePostal": "51800", - "codeCommune": "51533", - "libelleAcheminement": "SERVON MELZICOURT", - "nomCommune": "SERVON MELZICOURT" + "codePostal": "32400", + "codeCommune": "32463", + "libelleAcheminement": "VIELLA", + "nomCommune": "VIELLA" }, { - "codePostal": "64530", - "codeCommune": "64238", - "libelleAcheminement": "GER", - "nomCommune": "GER" + "codePostal": "32600", + "codeCommune": "32425", + "libelleAcheminement": "SEGOUFIELLE", + "nomCommune": "SEGOUFIELLE" }, { - "codePostal": "60880", - "codeCommune": "60023", - "libelleAcheminement": "ARMANCOURT", - "nomCommune": "ARMANCOURT" + "codePostal": "22550", + "codeCommune": "22174", + "libelleAcheminement": "PLEBOULLE", + "nomCommune": "PLEBOULLE" }, { - "codePostal": "26150", - "codeCommune": "26205", - "libelleAcheminement": "MONTMAUR EN DIOIS", - "nomCommune": "MONTMAUR EN DIOIS" + "codePostal": "24250", + "codeCommune": "24152", + "libelleAcheminement": "DOMME", + "nomCommune": "DOMME" }, { - "codePostal": "51340", - "codeCommune": "51539", - "libelleAcheminement": "SOGNY EN L ANGLE", - "nomCommune": "SOGNY EN L ANGLE" + "codePostal": "32300", + "codeCommune": "32466", + "libelleAcheminement": "VIOZAN", + "nomCommune": "VIOZAN" }, { - "codePostal": "64190", - "codeCommune": "64242", - "libelleAcheminement": "GESTAS", - "nomCommune": "GESTAS" + "codePostal": "32260", + "codeCommune": "32426", + "libelleAcheminement": "SEISSAN", + "nomCommune": "SEISSAN" }, { - "codePostal": "60190", - "codeCommune": "60024", - "libelleAcheminement": "ARSY", - "nomCommune": "ARSY" + "codePostal": "22270", + "codeCommune": "22175", + "libelleAcheminement": "PLEDELIAC", + "nomCommune": "PLEDELIAC" }, { - "codePostal": "26130", - "codeCommune": "26211", - "libelleAcheminement": "MONTSEGUR SUR LAUZON", - "nomCommune": "MONTSEGUR SUR LAUZON" + "codePostal": "24140", + "codeCommune": "24155", + "libelleAcheminement": "DOUVILLE", + "nomCommune": "DOUVILLE" }, { - "codePostal": "51240", - "codeCommune": "51552", - "libelleAcheminement": "SONGY", - "nomCommune": "SONGY" + "codePostal": "32140", + "codeCommune": "32468", + "libelleAcheminement": "AUSSOS", + "nomCommune": "AUSSOS" }, { - "codePostal": "64370", - "codeCommune": "64243", - "libelleAcheminement": "GEUS D ARZACQ", - "nomCommune": "GEUS D ARZACQ" + "codePostal": "32700", + "codeCommune": "32429", + "libelleAcheminement": "SEMPESSERRE", + "nomCommune": "SEMPESSERRE" }, { - "codePostal": "60350", - "codeCommune": "60025", - "libelleAcheminement": "ATTICHY", - "nomCommune": "ATTICHY" + "codePostal": "22170", + "codeCommune": "22182", + "libelleAcheminement": "PLELO", + "nomCommune": "PLELO" }, { - "codePostal": "26210", - "codeCommune": "26213", - "libelleAcheminement": "MORAS EN VALLOIRE", - "nomCommune": "MORAS EN VALLOIRE" + "codePostal": "24160", + "codeCommune": "24164", + "libelleAcheminement": "EXCIDEUIL", + "nomCommune": "EXCIDEUIL" }, { - "codePostal": "51600", - "codeCommune": "51553", - "libelleAcheminement": "SOUAIN PERTHES LES HURLUS", - "nomCommune": "SOUAIN PERTHES LES HURLUS" + "codePostal": "33230", + "codeCommune": "33001", + "libelleAcheminement": "ABZAC", + "nomCommune": "ABZAC" }, { - "codePostal": "64800", - "codeCommune": "64257", - "libelleAcheminement": "HAUT DE BOSDARROS", - "nomCommune": "HAUT DE BOSDARROS" + "codePostal": "32260", + "codeCommune": "32438", + "libelleAcheminement": "TACHOIRES", + "nomCommune": "TACHOIRES" }, { - "codePostal": "60390", - "codeCommune": "60029", - "libelleAcheminement": "AUNEUIL", - "nomCommune": "AUNEUIL" + "codePostal": "22190", + "codeCommune": "22187", + "libelleAcheminement": "PLERIN", + "nomCommune": "PLERIN" }, { - "codePostal": "26220", - "codeCommune": "26222", - "libelleAcheminement": "ORCINAS", - "nomCommune": "ORCINAS" + "codePostal": "24560", + "codeCommune": "24168", + "libelleAcheminement": "PLAISANCE", + "nomCommune": "PLAISANCE" }, { - "codePostal": "51320", - "codeCommune": "51555", - "libelleAcheminement": "SOUDE", - "nomCommune": "SOUDE" + "codePostal": "33440", + "codeCommune": "33003", + "libelleAcheminement": "AMBARES ET LAGRAVE", + "nomCommune": "AMBARES ET LAGRAVE" }, { - "codePostal": "64470", - "codeCommune": "64258", - "libelleAcheminement": "HAUX", - "nomCommune": "HAUX" + "codePostal": "32400", + "codeCommune": "32439", + "libelleAcheminement": "TARSAC", + "nomCommune": "TARSAC" }, { - "codePostal": "60400", - "codeCommune": "60055", - "libelleAcheminement": "BEAURAINS LES NOYON", - "nomCommune": "BEAURAINS LES NOYON" + "codePostal": "22190", + "codeCommune": "22187", + "libelleAcheminement": "PLERIN", + "nomCommune": "PLERIN" }, { - "codePostal": "26190", - "codeCommune": "26223", - "libelleAcheminement": "ORIOL EN ROYANS", - "nomCommune": "ORIOL EN ROYANS" + "codePostal": "24560", + "codeCommune": "24168", + "libelleAcheminement": "PLAISANCE", + "nomCommune": "PLAISANCE" }, { - "codePostal": "51320", - "codeCommune": "51556", - "libelleAcheminement": "SOUDRON", - "nomCommune": "SOUDRON" + "codePostal": "33510", + "codeCommune": "33005", + "libelleAcheminement": "ANDERNOS LES BAINS", + "nomCommune": "ANDERNOS LES BAINS" }, { - "codePostal": "64780", - "codeCommune": "64273", - "libelleAcheminement": "IRISSARRY", - "nomCommune": "IRISSARRY" + "codePostal": "32160", + "codeCommune": "32440", + "libelleAcheminement": "TASQUE", + "nomCommune": "TASQUE" }, { - "codePostal": "60390", - "codeCommune": "60063", - "libelleAcheminement": "BERNEUIL EN BRAY", - "nomCommune": "BERNEUIL EN BRAY" + "codePostal": "22640", + "codeCommune": "22193", + "libelleAcheminement": "PLESTAN", + "nomCommune": "PLESTAN" }, { - "codePostal": "26750", - "codeCommune": "26225", - "libelleAcheminement": "PARNANS", - "nomCommune": "PARNANS" + "codePostal": "24620", + "codeCommune": "24172", + "libelleAcheminement": "LES EYZIES", + "nomCommune": "LES EYZIES" }, { - "codePostal": "51600", - "codeCommune": "51559", - "libelleAcheminement": "SUIPPES", - "nomCommune": "SUIPPES" + "codePostal": "33760", + "codeCommune": "33008", + "libelleAcheminement": "PORTE DE BENAUGE", + "nomCommune": "PORTE DE BENAUGE" }, { - "codePostal": "64110", - "codeCommune": "64284", - "libelleAcheminement": "JURANCON", - "nomCommune": "JURANCON" + "codePostal": "32700", + "codeCommune": "32442", + "libelleAcheminement": "TERRAUBE", + "nomCommune": "TERRAUBE" }, { - "codePostal": "60490", - "codeCommune": "60071", - "libelleAcheminement": "BIERMONT", - "nomCommune": "BIERMONT" + "codePostal": "22610", + "codeCommune": "22195", + "libelleAcheminement": "PLEUBIAN", + "nomCommune": "PLEUBIAN" }, { - "codePostal": "26380", - "codeCommune": "26231", - "libelleAcheminement": "PEYRINS", - "nomCommune": "PEYRINS" + "codePostal": "24560", + "codeCommune": "24177", + "libelleAcheminement": "FAUX", + "nomCommune": "FAUX" }, { - "codePostal": "51150", - "codeCommune": "51564", - "libelleAcheminement": "VAL DE LIVRE", - "nomCommune": "VAL DE LIVRE" + "codePostal": "33760", + "codeCommune": "33008", + "libelleAcheminement": "PORTE DE BENAUGE", + "nomCommune": "PORTE DE BENAUGE" }, { - "codePostal": "64300", - "codeCommune": "64286", - "libelleAcheminement": "LAA MONDRANS", - "nomCommune": "LAA MONDRANS" + "codePostal": "32170", + "codeCommune": "32446", + "libelleAcheminement": "TILLAC", + "nomCommune": "TILLAC" }, { - "codePostal": "60860", - "codeCommune": "60077", - "libelleAcheminement": "BLICOURT", - "nomCommune": "BLICOURT" + "codePostal": "22560", + "codeCommune": "22198", + "libelleAcheminement": "PLEUMEUR BODOU", + "nomCommune": "PLEUMEUR BODOU" }, { - "codePostal": "26110", - "codeCommune": "26233", - "libelleAcheminement": "PIEGON", - "nomCommune": "PIEGON" + "codePostal": "24250", + "codeCommune": "24184", + "libelleAcheminement": "FLORIMONT GAUMIER", + "nomCommune": "FLORIMONT GAUMIER" }, { - "codePostal": "51240", - "codeCommune": "51574", - "libelleAcheminement": "TOGNY AUX BOEUFS", - "nomCommune": "TOGNY AUX BOEUFS" + "codePostal": "33740", + "codeCommune": "33011", + "libelleAcheminement": "ARES", + "nomCommune": "ARES" }, { - "codePostal": "64990", - "codeCommune": "64304", - "libelleAcheminement": "LAHONCE", - "nomCommune": "LAHONCE" + "codePostal": "32430", + "codeCommune": "32448", + "libelleAcheminement": "TOUGET", + "nomCommune": "TOUGET" }, { - "codePostal": "60190", - "codeCommune": "60078", - "libelleAcheminement": "BLINCOURT", - "nomCommune": "BLINCOURT" + "codePostal": "22560", + "codeCommune": "22198", + "libelleAcheminement": "PLEUMEUR BODOU", + "nomCommune": "PLEUMEUR BODOU" }, { - "codePostal": "26170", - "codeCommune": "26242", - "libelleAcheminement": "LE POET EN PERCIP", - "nomCommune": "LE POET EN PERCIP" + "codePostal": "33220", + "codeCommune": "24189", + "libelleAcheminement": "FOUGUEYROLLES", + "nomCommune": "FOUGUEYROLLES" }, { - "codePostal": "51210", - "codeCommune": "51579", - "libelleAcheminement": "TREFOLS", - "nomCommune": "TREFOLS" + "codePostal": "33790", + "codeCommune": "33020", + "libelleAcheminement": "AURIOLLES", + "nomCommune": "AURIOLLES" }, { - "codePostal": "64350", - "codeCommune": "64307", - "libelleAcheminement": "LALONGUE", - "nomCommune": "LALONGUE" + "codePostal": "32230", + "codeCommune": "32455", + "libelleAcheminement": "TRONCENS", + "nomCommune": "TRONCENS" }, { - "codePostal": "60820", - "codeCommune": "60086", - "libelleAcheminement": "BORAN SUR OISE", - "nomCommune": "BORAN SUR OISE" + "codePostal": "22130", + "codeCommune": "22200", + "libelleAcheminement": "PLEVEN", + "nomCommune": "PLEVEN" }, { - "codePostal": "26150", - "codeCommune": "26246", - "libelleAcheminement": "PONET ET ST AUBAN", - "nomCommune": "PONET ET ST AUBAN" + "codePostal": "24240", + "codeCommune": "24193", + "libelleAcheminement": "GAGEAC ET ROUILLAC", + "nomCommune": "GAGEAC ET ROUILLAC" }, { - "codePostal": "51140", - "codeCommune": "51582", - "libelleAcheminement": "TRIGNY", - "nomCommune": "TRIGNY" + "codePostal": "33480", + "codeCommune": "33022", + "libelleAcheminement": "AVENSAN", + "nomCommune": "AVENSAN" }, { - "codePostal": "64350", - "codeCommune": "64311", - "libelleAcheminement": "LANNECAUBE", - "nomCommune": "LANNECAUBE" + "codePostal": "32720", + "codeCommune": "32460", + "libelleAcheminement": "VERGOIGNAN", + "nomCommune": "VERGOIGNAN" }, { - "codePostal": "60490", - "codeCommune": "60093", - "libelleAcheminement": "BOULOGNE LA GRASSE", - "nomCommune": "BOULOGNE LA GRASSE" + "codePostal": "22340", + "codeCommune": "22202", + "libelleAcheminement": "PLEVIN", + "nomCommune": "PLEVIN" }, { - "codePostal": "26240", - "codeCommune": "26247", - "libelleAcheminement": "PONSAS", - "nomCommune": "PONSAS" + "codePostal": "24300", + "codeCommune": "24209", + "libelleAcheminement": "HAUTEFAYE", + "nomCommune": "HAUTEFAYE" }, { - "codePostal": "51800", - "codeCommune": "51588", - "libelleAcheminement": "VALMY", - "nomCommune": "VALMY" + "codePostal": "33640", + "codeCommune": "33023", + "libelleAcheminement": "AYGUEMORTE LES GRAVES", + "nomCommune": "AYGUEMORTE LES GRAVES" }, { - "codePostal": "64410", - "codeCommune": "64318", - "libelleAcheminement": "LARREULE", - "nomCommune": "LARREULE" + "codePostal": "33124", + "codeCommune": "33002", + "libelleAcheminement": "AILLAS", + "nomCommune": "AILLAS" }, { - "codePostal": "60113", - "codeCommune": "60099", - "libelleAcheminement": "BRAISNES SUR ARONDE", - "nomCommune": "BRAISNES SUR ARONDE" + "codePostal": "22170", + "codeCommune": "22206", + "libelleAcheminement": "CHATELAUDREN PLOUAGAT", + "nomCommune": "CHATELAUDREN PLOUAGAT" }, { - "codePostal": "26150", - "codeCommune": "26248", - "libelleAcheminement": "PONTAIX", - "nomCommune": "PONTAIX" + "codePostal": "24260", + "codeCommune": "24217", + "libelleAcheminement": "JOURNIAC", + "nomCommune": "JOURNIAC" }, { - "codePostal": "51600", - "codeCommune": "51600", - "libelleAcheminement": "VAUDESINCOURT", - "nomCommune": "VAUDESINCOURT" + "codePostal": "33190", + "codeCommune": "33024", + "libelleAcheminement": "BAGAS", + "nomCommune": "BAGAS" }, { - "codePostal": "64190", - "codeCommune": "64326", - "libelleAcheminement": "LAY LAMIDOU", - "nomCommune": "LAY LAMIDOU" + "codePostal": "33810", + "codeCommune": "33004", + "libelleAcheminement": "AMBES", + "nomCommune": "AMBES" }, { - "codePostal": "60600", - "codeCommune": "60107", - "libelleAcheminement": "BREUIL LE VERT", - "nomCommune": "BREUIL LE VERT" + "codePostal": "22650", + "codeCommune": "22209", + "libelleAcheminement": "BEAUSSAIS SUR MER", + "nomCommune": "BEAUSSAIS SUR MER" }, { - "codePostal": "26600", - "codeCommune": "26250", - "libelleAcheminement": "PONT DE L ISERE", - "nomCommune": "PONT DE L ISERE" + "codePostal": "24520", + "codeCommune": "24224", + "libelleAcheminement": "LAMONZIE MONTASTRUC", + "nomCommune": "LAMONZIE MONTASTRUC" }, { - "codePostal": "51480", - "codeCommune": "51605", - "libelleAcheminement": "VENTEUIL", - "nomCommune": "VENTEUIL" + "codePostal": "33114", + "codeCommune": "33029", + "libelleAcheminement": "LE BARP", + "nomCommune": "LE BARP" }, { - "codePostal": "64320", - "codeCommune": "64329", - "libelleAcheminement": "LEE", - "nomCommune": "LEE" + "codePostal": "33390", + "codeCommune": "33006", + "libelleAcheminement": "ANGLADE", + "nomCommune": "ANGLADE" }, { - "codePostal": "60380", - "codeCommune": "60114", - "libelleAcheminement": "BUICOURT", - "nomCommune": "BUICOURT" + "codePostal": "22300", + "codeCommune": "22211", + "libelleAcheminement": "PLOUBEZRE", + "nomCommune": "PLOUBEZRE" }, { - "codePostal": "26310", - "codeCommune": "26253", - "libelleAcheminement": "POYOLS", - "nomCommune": "POYOLS" + "codePostal": "24400", + "codeCommune": "24234", + "libelleAcheminement": "LES LECHES", + "nomCommune": "LES LECHES" }, { - "codePostal": "51330", - "codeCommune": "51608", - "libelleAcheminement": "VERNANCOURT", - "nomCommune": "VERNANCOURT" + "codePostal": "33390", + "codeCommune": "33047", + "libelleAcheminement": "BERSON", + "nomCommune": "BERSON" }, { - "codePostal": "64130", - "codeCommune": "64341", - "libelleAcheminement": "LICHOS", - "nomCommune": "LICHOS" + "codePostal": "33640", + "codeCommune": "33007", + "libelleAcheminement": "ARBANATS", + "nomCommune": "ARBANATS" }, { - "codePostal": "60290", - "codeCommune": "60120", - "libelleAcheminement": "CAMBRONNE LES CLERMONT", - "nomCommune": "CAMBRONNE LES CLERMONT" + "codePostal": "22490", + "codeCommune": "22213", + "libelleAcheminement": "PLOUER SUR RANCE", + "nomCommune": "PLOUER SUR RANCE" }, { - "codePostal": "26340", - "codeCommune": "26254", - "libelleAcheminement": "PRADELLE", - "nomCommune": "PRADELLE" + "codePostal": "24110", + "codeCommune": "24236", + "libelleAcheminement": "LEGUILLAC DE L AUCHE", + "nomCommune": "LEGUILLAC DE L AUCHE" }, { - "codePostal": "51130", - "codeCommune": "51611", - "libelleAcheminement": "VERT TOULON", - "nomCommune": "VERT TOULON" + "codePostal": "33124", + "codeCommune": "33048", + "libelleAcheminement": "BERTHEZ", + "nomCommune": "BERTHEZ" }, { - "codePostal": "64300", - "codeCommune": "64349", - "libelleAcheminement": "LOUBIENG", - "nomCommune": "LOUBIENG" + "codePostal": "33460", + "codeCommune": "33010", + "libelleAcheminement": "ARCINS", + "nomCommune": "ARCINS" }, { - "codePostal": "60640", - "codeCommune": "60121", - "libelleAcheminement": "CAMPAGNE", - "nomCommune": "CAMPAGNE" + "codePostal": "22470", + "codeCommune": "22214", + "libelleAcheminement": "PLOUEZEC", + "nomCommune": "PLOUEZEC" }, { - "codePostal": "26170", - "codeCommune": "26256", - "libelleAcheminement": "PROPIAC", - "nomCommune": "PROPIAC" + "codePostal": "24100", + "codeCommune": "24237", + "libelleAcheminement": "LEMBRAS", + "nomCommune": "LEMBRAS" }, { - "codePostal": "51130", - "codeCommune": "51612", - "libelleAcheminement": "BLANCS COTEAUX", - "nomCommune": "BLANCS COTEAUX" + "codePostal": "33500", + "codeCommune": "33052", + "libelleAcheminement": "LES BILLAUX", + "nomCommune": "LES BILLAUX" }, { - "codePostal": "64250", - "codeCommune": "64350", - "libelleAcheminement": "LOUHOSSOA", - "nomCommune": "LOUHOSSOA" + "codePostal": "33500", + "codeCommune": "33015", + "libelleAcheminement": "ARVEYRES", + "nomCommune": "ARVEYRES" }, { - "codePostal": "60170", - "codeCommune": "60129", - "libelleAcheminement": "CARLEPONT", - "nomCommune": "CARLEPONT" + "codePostal": "22780", + "codeCommune": "22217", + "libelleAcheminement": "PLOUGRAS", + "nomCommune": "PLOUGRAS" }, { - "codePostal": "26450", - "codeCommune": "26258", - "libelleAcheminement": "PUY ST MARTIN", - "nomCommune": "PUY ST MARTIN" + "codePostal": "24510", + "codeCommune": "24240", + "libelleAcheminement": "LIMEUIL", + "nomCommune": "LIMEUIL" }, { - "codePostal": "51240", - "codeCommune": "51616", - "libelleAcheminement": "VESIGNEUL SUR MARNE", - "nomCommune": "VESIGNEUL SUR MARNE" + "codePostal": "33340", + "codeCommune": "33055", + "libelleAcheminement": "BLAIGNAN PRIGNAC", + "nomCommune": "BLAIGNAN PRIGNAC" }, { - "codePostal": "64350", - "codeCommune": "64356", - "libelleAcheminement": "LUC ARMAU", - "nomCommune": "LUC ARMAU" + "codePostal": "33430", + "codeCommune": "33017", + "libelleAcheminement": "AUBIAC", + "nomCommune": "AUBIAC" }, { - "codePostal": "60300", - "codeCommune": "60138", - "libelleAcheminement": "CHAMANT", - "nomCommune": "CHAMANT" + "codePostal": "22580", + "codeCommune": "22222", + "libelleAcheminement": "PLOUHA", + "nomCommune": "PLOUHA" }, { - "codePostal": "26770", - "codeCommune": "26276", - "libelleAcheminement": "ROCHE ST SECRET BECONNE", - "nomCommune": "ROCHE ST SECRET BECONNE" + "codePostal": "24540", + "codeCommune": "24244", + "libelleAcheminement": "LOLME", + "nomCommune": "LOLME" }, { - "codePostal": "51330", - "codeCommune": "51619", - "libelleAcheminement": "LE VIEIL DAMPIERRE", - "nomCommune": "LE VIEIL DAMPIERRE" + "codePostal": "33480", + "codeCommune": "33070", + "libelleAcheminement": "BRACH", + "nomCommune": "BRACH" }, { - "codePostal": "64120", - "codeCommune": "64368", - "libelleAcheminement": "MASPARRAUTE", - "nomCommune": "MASPARRAUTE" + "codePostal": "33240", + "codeCommune": "33018", + "libelleAcheminement": "VAL DE VIRVEE", + "nomCommune": "VAL DE VIRVEE" }, { - "codePostal": "60520", - "codeCommune": "60142", - "libelleAcheminement": "LA CHAPELLE EN SERVAL", - "nomCommune": "LA CHAPELLE EN SERVAL" + "codePostal": "22420", + "codeCommune": "22235", + "libelleAcheminement": "PLOUZELAMBRE", + "nomCommune": "PLOUZELAMBRE" }, { - "codePostal": "26470", - "codeCommune": "26283", - "libelleAcheminement": "ROTTIER", - "nomCommune": "ROTTIER" + "codePostal": "24550", + "codeCommune": "24245", + "libelleAcheminement": "LOUBEJAC", + "nomCommune": "LOUBEJAC" }, { - "codePostal": "51800", - "codeCommune": "51620", - "libelleAcheminement": "VIENNE LA VILLE", - "nomCommune": "VIENNE LA VILLE" + "codePostal": "33720", + "codeCommune": "33076", + "libelleAcheminement": "BUDOS", + "nomCommune": "BUDOS" }, { - "codePostal": "64460", - "codeCommune": "64372", - "libelleAcheminement": "MAURE", - "nomCommune": "MAURE" + "codePostal": "33750", + "codeCommune": "33028", + "libelleAcheminement": "BARON", + "nomCommune": "BARON" }, { - "codePostal": "60150", - "codeCommune": "60147", - "libelleAcheminement": "CHEVINCOURT", - "nomCommune": "CHEVINCOURT" + "codePostal": "22130", + "codeCommune": "22237", + "libelleAcheminement": "PLUDUNO", + "nomCommune": "PLUDUNO" }, { - "codePostal": "26450", - "codeCommune": "26287", - "libelleAcheminement": "ROYNAC", - "nomCommune": "ROYNAC" + "codePostal": "24110", + "codeCommune": "24251", + "libelleAcheminement": "MANZAC SUR VERN", + "nomCommune": "MANZAC SUR VERN" }, { - "codePostal": "51310", - "codeCommune": "51625", - "libelleAcheminement": "VILLENEUVE LA LIONNE", - "nomCommune": "VILLENEUVE LA LIONNE" + "codePostal": "33410", + "codeCommune": "33081", + "libelleAcheminement": "CADILLAC", + "nomCommune": "CADILLAC" }, { - "codePostal": "64350", - "codeCommune": "64390", - "libelleAcheminement": "MONCAUP", - "nomCommune": "MONCAUP" + "codePostal": "33340", + "codeCommune": "33038", + "libelleAcheminement": "BEGADAN", + "nomCommune": "BEGADAN" }, { - "codePostal": "60750", - "codeCommune": "60151", - "libelleAcheminement": "CHOISY AU BAC", - "nomCommune": "CHOISY AU BAC" + "codePostal": "22210", + "codeCommune": "22241", + "libelleAcheminement": "PLUMIEUX", + "nomCommune": "PLUMIEUX" }, { - "codePostal": "26340", - "codeCommune": "26289", - "libelleAcheminement": "SAILLANS", - "nomCommune": "SAILLANS" + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { - "codePostal": "51270", - "codeCommune": "51639", - "libelleAcheminement": "LA VILLE SOUS ORBAIS", - "nomCommune": "LA VILLE SOUS ORBAIS" + "codePostal": "33190", + "codeCommune": "33087", + "libelleAcheminement": "CAMIRAN", + "nomCommune": "CAMIRAN" }, { - "codePostal": "64360", - "codeCommune": "64393", - "libelleAcheminement": "MONEIN", - "nomCommune": "MONEIN" + "codePostal": "33350", + "codeCommune": "33045", + "libelleAcheminement": "BELVES DE CASTILLON", + "nomCommune": "BELVES DE CASTILLON" }, { - "codePostal": "60940", - "codeCommune": "60154", - "libelleAcheminement": "CINQUEUX", - "nomCommune": "CINQUEUX" + "codePostal": "22120", + "codeCommune": "22246", + "libelleAcheminement": "POMMERET", + "nomCommune": "POMMERET" }, { - "codePostal": "26190", - "codeCommune": "26311", - "libelleAcheminement": "ST LAURENT EN ROYANS", - "nomCommune": "ST LAURENT EN ROYANS" + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { - "codePostal": "51800", - "codeCommune": "51646", - "libelleAcheminement": "VIRGINY", - "nomCommune": "VIRGINY" + "codePostal": "33121", + "codeCommune": "33097", + "libelleAcheminement": "CARCANS", + "nomCommune": "CARCANS" }, { - "codePostal": "64350", - "codeCommune": "64394", - "libelleAcheminement": "MONPEZAT", - "nomCommune": "MONPEZAT" + "codePostal": "33380", + "codeCommune": "33051", + "libelleAcheminement": "BIGANOS", + "nomCommune": "BIGANOS" }, { - "codePostal": "60420", - "codeCommune": "60158", - "libelleAcheminement": "COIVREL", - "nomCommune": "COIVREL" + "codePostal": "22260", + "codeCommune": "22250", + "libelleAcheminement": "PONTRIEUX", + "nomCommune": "PONTRIEUX" }, { - "codePostal": "26510", - "codeCommune": "26318", - "libelleAcheminement": "ST MAY", - "nomCommune": "ST MAY" + "codePostal": "24540", + "codeCommune": "24257", + "libelleAcheminement": "MARSALES", + "nomCommune": "MARSALES" }, { - "codePostal": "51800", - "codeCommune": "51659", - "libelleAcheminement": "WARGEMOULIN HURLUS", - "nomCommune": "WARGEMOULIN HURLUS" + "codePostal": "33360", + "codeCommune": "33099", + "libelleAcheminement": "CARIGNAN DE BORDEAUX", + "nomCommune": "CARIGNAN DE BORDEAUX" }, { - "codePostal": "64460", - "codeCommune": "64395", - "libelleAcheminement": "MONSEGUR", - "nomCommune": "MONSEGUR" + "codePostal": "33430", + "codeCommune": "33053", + "libelleAcheminement": "BIRAC", + "nomCommune": "BIRAC" }, { - "codePostal": "60200", - "codeCommune": "60159", - "libelleAcheminement": "COMPIEGNE", - "nomCommune": "COMPIEGNE" + "codePostal": "22120", + "codeCommune": "22258", + "libelleAcheminement": "QUESSOY", + "nomCommune": "QUESSOY" }, { - "codePostal": "26190", - "codeCommune": "26320", - "libelleAcheminement": "ST NAZAIRE EN ROYANS", - "nomCommune": "ST NAZAIRE EN ROYANS" + "codePostal": "24540", + "codeCommune": "24280", + "libelleAcheminement": "MONPAZIER", + "nomCommune": "MONPAZIER" }, { - "codePostal": "52120", - "codeCommune": "52005", - "libelleAcheminement": "AIZANVILLE", - "nomCommune": "AIZANVILLE" + "codePostal": "33540", + "codeCommune": "33112", + "libelleAcheminement": "CAUMONT", + "nomCommune": "CAUMONT" }, { - "codePostal": "64300", - "codeCommune": "64396", - "libelleAcheminement": "MONT", - "nomCommune": "MONT" + "codePostal": "33190", + "codeCommune": "33054", + "libelleAcheminement": "BLAIGNAC", + "nomCommune": "BLAIGNAC" }, { - "codePostal": "60490", - "codeCommune": "60160", - "libelleAcheminement": "CONCHY LES POTS", - "nomCommune": "CONCHY LES POTS" + "codePostal": "22460", + "codeCommune": "22260", + "libelleAcheminement": "LE QUILLIO", + "nomCommune": "LE QUILLIO" }, { - "codePostal": "26750", - "codeCommune": "26323", - "libelleAcheminement": "ST PAUL LES ROMANS", - "nomCommune": "ST PAUL LES ROMANS" + "codePostal": "24140", + "codeCommune": "24285", + "libelleAcheminement": "MONTAGNAC LA CREMPSE", + "nomCommune": "MONTAGNAC LA CREMPSE" }, { - "codePostal": "52110", - "codeCommune": "52007", - "libelleAcheminement": "AMBONVILLE", - "nomCommune": "AMBONVILLE" + "codePostal": "33113", + "codeCommune": "33115", + "libelleAcheminement": "CAZALIS", + "nomCommune": "CAZALIS" }, { - "codePostal": "64470", - "codeCommune": "64404", - "libelleAcheminement": "MONTORY", - "nomCommune": "MONTORY" + "codePostal": "33290", + "codeCommune": "33056", + "libelleAcheminement": "BLANQUEFORT", + "nomCommune": "BLANQUEFORT" }, { - "codePostal": "60120", - "codeCommune": "60163", - "libelleAcheminement": "CORMEILLES", - "nomCommune": "CORMEILLES" + "codePostal": "22200", + "codeCommune": "22272", + "libelleAcheminement": "ST AGATHON", + "nomCommune": "ST AGATHON" }, { - "codePostal": "26210", - "codeCommune": "26330", - "libelleAcheminement": "ST SORLIN EN VALLOIRE", - "nomCommune": "ST SORLIN EN VALLOIRE" + "codePostal": "24560", + "codeCommune": "24287", + "libelleAcheminement": "MONTAUT", + "nomCommune": "MONTAUT" }, { - "codePostal": "52310", - "codeCommune": "52011", - "libelleAcheminement": "ANNEVILLE LA PRAIRIE", - "nomCommune": "ANNEVILLE LA PRAIRIE" + "codePostal": "33360", + "codeCommune": "33118", + "libelleAcheminement": "CENAC", + "nomCommune": "CENAC" }, { - "codePostal": "64370", - "codeCommune": "64406", - "libelleAcheminement": "MORLANNE", - "nomCommune": "MORLANNE" + "codePostal": "33210", + "codeCommune": "33060", + "libelleAcheminement": "BOMMES", + "nomCommune": "BOMMES" }, { - "codePostal": "60850", - "codeCommune": "60164", - "libelleAcheminement": "LE COUDRAY ST GERMER", - "nomCommune": "LE COUDRAY ST GERMER" + "codePostal": "22100", + "codeCommune": "22280", + "libelleAcheminement": "ST CARNE", + "nomCommune": "ST CARNE" }, { - "codePostal": "26190", - "codeCommune": "26331", - "libelleAcheminement": "ST THOMAS EN ROYANS", - "nomCommune": "ST THOMAS EN ROYANS" + "codePostal": "24230", + "codeCommune": "24288", + "libelleAcheminement": "MONTAZEAU", + "nomCommune": "MONTAZEAU" }, { - "codePostal": "52160", - "codeCommune": "52016", - "libelleAcheminement": "ARBOT", - "nomCommune": "ARBOT" + "codePostal": "33150", + "codeCommune": "33119", + "libelleAcheminement": "CENON", + "nomCommune": "CENON" }, { - "codePostal": "64990", - "codeCommune": "64407", - "libelleAcheminement": "MOUGUERRE", - "nomCommune": "MOUGUERRE" + "codePostal": "33270", + "codeCommune": "33065", + "libelleAcheminement": "BOULIAC", + "nomCommune": "BOULIAC" }, { - "codePostal": "60240", - "codeCommune": "60169", - "libelleAcheminement": "COURCELLES LES GISORS", - "nomCommune": "COURCELLES LES GISORS" + "codePostal": "22380", + "codeCommune": "22282", + "libelleAcheminement": "ST CAST LE GUILDO", + "nomCommune": "ST CAST LE GUILDO" }, { - "codePostal": "26240", - "codeCommune": "26333", - "libelleAcheminement": "ST VALLIER", - "nomCommune": "ST VALLIER" + "codePostal": "24290", + "codeCommune": "24291", + "libelleAcheminement": "MONTIGNAC LASCAUX", + "nomCommune": "MONTIGNAC LASCAUX" }, { - "codePostal": "52110", - "codeCommune": "52019", - "libelleAcheminement": "ARNANCOURT", - "nomCommune": "ARNANCOURT" + "codePostal": "33760", + "codeCommune": "33121", + "libelleAcheminement": "CESSAC", + "nomCommune": "CESSAC" }, { - "codePostal": "64450", - "codeCommune": "64415", - "libelleAcheminement": "NAVAILLES ANGOS", - "nomCommune": "NAVAILLES ANGOS" + "codePostal": "33420", + "codeCommune": "33071", + "libelleAcheminement": "BRANNE", + "nomCommune": "BRANNE" }, { - "codePostal": "60300", - "codeCommune": "60170", - "libelleAcheminement": "COURTEUIL", - "nomCommune": "COURTEUIL" + "codePostal": "22510", + "codeCommune": "22296", + "libelleAcheminement": "ST GLEN", + "nomCommune": "ST GLEN" }, { - "codePostal": "26560", - "codeCommune": "26340", - "libelleAcheminement": "SEDERON", - "nomCommune": "SEDERON" + "codePostal": "24170", + "codeCommune": "24293", + "libelleAcheminement": "MONPLAISANT", + "nomCommune": "MONPLAISANT" }, { - "codePostal": "52130", - "codeCommune": "52021", - "libelleAcheminement": "ATTANCOURT", - "nomCommune": "ATTANCOURT" + "codePostal": "33620", + "codeCommune": "33123", + "libelleAcheminement": "CEZAC", + "nomCommune": "CEZAC" }, { - "codePostal": "64150", - "codeCommune": "64418", - "libelleAcheminement": "NOGUERES", - "nomCommune": "NOGUERES" + "codePostal": "33124", + "codeCommune": "33074", + "libelleAcheminement": "BROUQUEYRAN", + "nomCommune": "BROUQUEYRAN" }, { - "codePostal": "60310", - "codeCommune": "60174", - "libelleAcheminement": "CRAPEAUMESNIL", - "nomCommune": "CRAPEAUMESNIL" + "codePostal": "22630", + "codeCommune": "22306", + "libelleAcheminement": "ST JUDOCE", + "nomCommune": "ST JUDOCE" }, { - "codePostal": "26600", - "codeCommune": "26341", - "libelleAcheminement": "SERVES SUR RHONE", - "nomCommune": "SERVES SUR RHONE" + "codePostal": "24400", + "codeCommune": "24299", + "libelleAcheminement": "MUSSIDAN", + "nomCommune": "MUSSIDAN" }, { - "codePostal": "52190", - "codeCommune": "52027", - "libelleAcheminement": "AUJEURRES", - "nomCommune": "AUJEURRES" + "codePostal": "33210", + "codeCommune": "33130", + "libelleAcheminement": "COIMERES", + "nomCommune": "COIMERES" }, { - "codePostal": "64300", - "codeCommune": "64430", - "libelleAcheminement": "ORTHEZ", - "nomCommune": "ORTHEZ" + "codePostal": "33750", + "codeCommune": "33083", + "libelleAcheminement": "CAMARSAC", + "nomCommune": "CAMARSAC" }, { - "codePostal": "60190", - "codeCommune": "60177", - "libelleAcheminement": "CRESSONSACQ", - "nomCommune": "CRESSONSACQ" + "codePostal": "22940", + "codeCommune": "22307", + "libelleAcheminement": "ST JULIEN", + "nomCommune": "ST JULIEN" }, { - "codePostal": "26000", - "codeCommune": "26362", - "libelleAcheminement": "VALENCE", - "nomCommune": "VALENCE" + "codePostal": "24320", + "codeCommune": "24303", + "libelleAcheminement": "NANTEUIL AURIAC DE BOURZAC", + "nomCommune": "NANTEUIL AURIAC DE BOURZAC" }, { - "codePostal": "52160", - "codeCommune": "52028", - "libelleAcheminement": "AULNOY SUR AUBE", - "nomCommune": "AULNOY SUR AUBE" + "codePostal": "33460", + "codeCommune": "33146", + "libelleAcheminement": "CUSSAC FORT MEDOC", + "nomCommune": "CUSSAC FORT MEDOC" }, { - "codePostal": "64780", - "codeCommune": "64436", - "libelleAcheminement": "OSSES", - "nomCommune": "OSSES" + "codePostal": "33420", + "codeCommune": "33086", + "libelleAcheminement": "CAMIAC ET ST DENIS", + "nomCommune": "CAMIAC ET ST DENIS" }, { - "codePostal": "60400", - "codeCommune": "60181", - "libelleAcheminement": "CRISOLLES", - "nomCommune": "CRISOLLES" + "codePostal": "22320", + "codeCommune": "22316", + "libelleAcheminement": "ST MAYEUX", + "nomCommune": "ST MAYEUX" }, { - "codePostal": "26420", - "codeCommune": "26364", - "libelleAcheminement": "VASSIEUX EN VERCORS", - "nomCommune": "VASSIEUX EN VERCORS" + "codePostal": "24440", + "codeCommune": "24307", + "libelleAcheminement": "NAUSSANNES", + "nomCommune": "NAUSSANNES" }, { - "codePostal": "52250", - "codeCommune": "52035", - "libelleAcheminement": "BAISSEY", - "nomCommune": "BAISSEY" + "codePostal": "33420", + "codeCommune": "33147", + "libelleAcheminement": "DAIGNAC", + "nomCommune": "DAIGNAC" }, { - "codePostal": "64120", - "codeCommune": "64437", - "libelleAcheminement": "OSTABAT ASME", - "nomCommune": "OSTABAT ASME" + "codePostal": "33610", + "codeCommune": "33090", + "libelleAcheminement": "CANEJAN", + "nomCommune": "CANEJAN" }, { - "codePostal": "60120", - "codeCommune": "60183", - "libelleAcheminement": "CROISSY SUR CELLE", - "nomCommune": "CROISSY SUR CELLE" + "codePostal": "22270", + "codeCommune": "22326", + "libelleAcheminement": "ST RIEUL", + "nomCommune": "ST RIEUL" }, { - "codePostal": "26400", - "codeCommune": "26365", - "libelleAcheminement": "VAUNAVEYS LA ROCHETTE", - "nomCommune": "VAUNAVEYS LA ROCHETTE" + "codePostal": "24190", + "codeCommune": "24309", + "libelleAcheminement": "NEUVIC", + "nomCommune": "NEUVIC" }, { - "codePostal": "52110", - "codeCommune": "52039", - "libelleAcheminement": "BAUDRECOURT", - "nomCommune": "BAUDRECOURT" + "codePostal": "33580", + "codeCommune": "33150", + "libelleAcheminement": "DIEULIVOL", + "nomCommune": "DIEULIVOL" }, { - "codePostal": "64120", - "codeCommune": "64441", - "libelleAcheminement": "PAGOLLE", - "nomCommune": "PAGOLLE" + "codePostal": "33121", + "codeCommune": "33097", + "libelleAcheminement": "CARCANS", + "nomCommune": "CARCANS" }, { - "codePostal": "60210", - "codeCommune": "60193", - "libelleAcheminement": "DAMERAUCOURT", - "nomCommune": "DAMERAUCOURT" + "codePostal": "22220", + "codeCommune": "22347", + "libelleAcheminement": "TREDARZEC", + "nomCommune": "TREDARZEC" }, { - "codePostal": "05700", - "codeCommune": "26374", - "libelleAcheminement": "VILLEBOIS LES PINS", - "nomCommune": "VILLEBOIS LES PINS" + "codePostal": "24410", + "codeCommune": "24316", + "libelleAcheminement": "PARCOUL CHENAUD", + "nomCommune": "PARCOUL CHENAUD" }, { - "codePostal": "52260", - "codeCommune": "52042", - "libelleAcheminement": "BEAUCHEMIN", - "nomCommune": "BEAUCHEMIN" + "codePostal": "33860", + "codeCommune": "33151", + "libelleAcheminement": "DONNEZAC", + "nomCommune": "DONNEZAC" }, { - "codePostal": "64190", - "codeCommune": "64458", - "libelleAcheminement": "PRECHACQ JOSBAIG", - "nomCommune": "PRECHACQ JOSBAIG" + "codePostal": "33190", + "codeCommune": "33102", + "libelleAcheminement": "CASSEUIL", + "nomCommune": "CASSEUIL" }, { - "codePostal": "60310", - "codeCommune": "60198", - "libelleAcheminement": "DIVES", - "nomCommune": "DIVES" + "codePostal": "22300", + "codeCommune": "22349", + "libelleAcheminement": "TREDREZ LOCQUEMEAU", + "nomCommune": "TREDREZ LOCQUEMEAU" }, { - "codePostal": "26470", - "codeCommune": "26378", - "libelleAcheminement": "VOLVENT", - "nomCommune": "VOLVENT" + "codePostal": "24310", + "codeCommune": "24319", + "libelleAcheminement": "PAUSSAC ET ST VIVIEN", + "nomCommune": "PAUSSAC ET ST VIVIEN" }, { - "codePostal": "52270", - "codeCommune": "52044", - "libelleAcheminement": "ROCHES BETTAINCOURT", - "nomCommune": "ROCHES BETTAINCOURT" + "codePostal": "33410", + "codeCommune": "33152", + "libelleAcheminement": "DONZAC", + "nomCommune": "DONZAC" }, { - "codePostal": "64260", - "codeCommune": "64463", - "libelleAcheminement": "REBENACQ", - "nomCommune": "REBENACQ" + "codePostal": "33540", + "codeCommune": "33103", + "libelleAcheminement": "CASTELMORON D ALBRET", + "nomCommune": "CASTELMORON D ALBRET" }, { - "codePostal": "60590", - "codeCommune": "60211", - "libelleAcheminement": "ERAGNY SUR EPTE", - "nomCommune": "ERAGNY SUR EPTE" + "codePostal": "22310", + "codeCommune": "22350", + "libelleAcheminement": "TREDUDER", + "nomCommune": "TREDUDER" }, { - "codePostal": "26300", - "codeCommune": "26381", - "libelleAcheminement": "JAILLANS", - "nomCommune": "JAILLANS" + "codePostal": "24370", + "codeCommune": "24325", + "libelleAcheminement": "PECHS DE L ESPERANCE", + "nomCommune": "PECHS DE L ESPERANCE" }, { - "codePostal": "52110", - "codeCommune": "52047", - "libelleAcheminement": "BEURVILLE", - "nomCommune": "BEURVILLE" + "codePostal": "33390", + "codeCommune": "33161", + "libelleAcheminement": "EYRANS", + "nomCommune": "EYRANS" }, { - "codePostal": "64330", - "codeCommune": "64464", - "libelleAcheminement": "RIBARROUY", - "nomCommune": "RIBARROUY" + "codePostal": "33230", + "codeCommune": "33124", + "libelleAcheminement": "CHAMADELLE", + "nomCommune": "CHAMADELLE" }, { - "codePostal": "60600", - "codeCommune": "60215", - "libelleAcheminement": "ERQUERY", - "nomCommune": "ERQUERY" + "codePostal": "22590", + "codeCommune": "22356", + "libelleAcheminement": "TREGOMEUR", + "nomCommune": "TREGOMEUR" }, { - "codePostal": "26300", - "codeCommune": "26382", - "libelleAcheminement": "ST VINCENT LA COMMANDERIE", - "nomCommune": "ST VINCENT LA COMMANDERIE" + "codePostal": "24360", + "codeCommune": "24328", + "libelleAcheminement": "PIEGUT PLUVIERS", + "nomCommune": "PIEGUT PLUVIERS" }, { - "codePostal": "52340", - "codeCommune": "52050", - "libelleAcheminement": "BIESLES", - "nomCommune": "BIESLES" + "codePostal": "33210", + "codeCommune": "33164", + "libelleAcheminement": "FARGUES", + "nomCommune": "FARGUES" }, { - "codePostal": "64160", - "codeCommune": "64482", - "libelleAcheminement": "ST JAMMES", - "nomCommune": "ST JAMMES" + "codePostal": "33540", + "codeCommune": "33131", + "libelleAcheminement": "COIRAC", + "nomCommune": "COIRAC" }, { - "codePostal": "60120", - "codeCommune": "60221", - "libelleAcheminement": "ESQUENNOY", - "nomCommune": "ESQUENNOY" + "codePostal": "22420", + "codeCommune": "22359", + "libelleAcheminement": "TREGROM", + "nomCommune": "TREGROM" }, { - "codePostal": "27120", - "codeCommune": "27004", - "libelleAcheminement": "AIGLEVILLE", - "nomCommune": "AIGLEVILLE" + "codePostal": "24580", + "codeCommune": "24330", + "libelleAcheminement": "PLAZAC", + "nomCommune": "PLAZAC" }, { - "codePostal": "52200", - "codeCommune": "52062", - "libelleAcheminement": "BOURG", - "nomCommune": "BOURG" + "codePostal": "33270", + "codeCommune": "33167", + "libelleAcheminement": "FLOIRAC", + "nomCommune": "FLOIRAC" }, { - "codePostal": "64310", - "codeCommune": "64495", - "libelleAcheminement": "ST PEE SUR NIVELLE", - "nomCommune": "ST PEE SUR NIVELLE" + "codePostal": "33340", + "codeCommune": "33134", + "libelleAcheminement": "COUQUEQUES", + "nomCommune": "COUQUEQUES" }, { - "codePostal": "60190", - "codeCommune": "60223", - "libelleAcheminement": "ESTREES ST DENIS", - "nomCommune": "ESTREES ST DENIS" + "codePostal": "22950", + "codeCommune": "22360", + "libelleAcheminement": "TREGUEUX", + "nomCommune": "TREGUEUX" }, { - "codePostal": "27250", - "codeCommune": "27009", - "libelleAcheminement": "AMBENAY", - "nomCommune": "AMBENAY" + "codePostal": "24160", + "codeCommune": "24339", + "libelleAcheminement": "PREYSSAC D EXCIDEUIL", + "nomCommune": "PREYSSAC D EXCIDEUIL" }, { - "codePostal": "52320", - "codeCommune": "52091", - "libelleAcheminement": "CERISIERES", - "nomCommune": "CERISIERES" + "codePostal": "33190", + "codeCommune": "33170", + "libelleAcheminement": "FONTET", + "nomCommune": "FONTET" }, { - "codePostal": "64390", - "codeCommune": "64513", - "libelleAcheminement": "SAUVETERRE DE BEARN", - "nomCommune": "SAUVETERRE DE BEARN" + "codePostal": "33580", + "codeCommune": "33136", + "libelleAcheminement": "COURS DE MONSEGUR", + "nomCommune": "COURS DE MONSEGUR" }, { - "codePostal": "60330", - "codeCommune": "60226", - "libelleAcheminement": "EVE", - "nomCommune": "EVE" + "codePostal": "22250", + "codeCommune": "22369", + "libelleAcheminement": "TREMEUR", + "nomCommune": "TREMEUR" }, { - "codePostal": "27700", - "codeCommune": "27016", - "libelleAcheminement": "LES ANDELYS", - "nomCommune": "LES ANDELYS" + "codePostal": "24130", + "codeCommune": "24340", + "libelleAcheminement": "PRIGONRIEUX", + "nomCommune": "PRIGONRIEUX" }, { - "codePostal": "52160", - "codeCommune": "52094", - "libelleAcheminement": "VALS DES TILLES", - "nomCommune": "VALS DES TILLES" + "codePostal": "33570", + "codeCommune": "33173", + "libelleAcheminement": "FRANCS", + "nomCommune": "FRANCS" }, { - "codePostal": "64160", - "codeCommune": "64520", - "libelleAcheminement": "SERRES MORLAAS", - "nomCommune": "SERRES MORLAAS" + "codePostal": "33760", + "codeCommune": "33156", + "libelleAcheminement": "ESCOUSSANS", + "nomCommune": "ESCOUSSANS" }, { - "codePostal": "60310", - "codeCommune": "60227", - "libelleAcheminement": "EVRICOURT", - "nomCommune": "EVRICOURT" + "codePostal": "22230", + "codeCommune": "22371", + "libelleAcheminement": "TREMOREL", + "nomCommune": "TREMOREL" }, { - "codePostal": "27130", - "codeCommune": "27038", - "libelleAcheminement": "LES BARILS", - "nomCommune": "LES BARILS" + "codePostal": "24440", + "codeCommune": "24347", + "libelleAcheminement": "RAMPIEUX", + "nomCommune": "RAMPIEUX" }, { - "codePostal": "52160", - "codeCommune": "52094", - "libelleAcheminement": "VALS DES TILLES", - "nomCommune": "VALS DES TILLES" + "codePostal": "33340", + "codeCommune": "33177", + "libelleAcheminement": "GAILLAN EN MEDOC", + "nomCommune": "GAILLAN EN MEDOC" }, { - "codePostal": "64190", - "codeCommune": "64530", - "libelleAcheminement": "SUSMIOU", - "nomCommune": "SUSMIOU" + "codePostal": "33420", + "codeCommune": "33157", + "libelleAcheminement": "ESPIET", + "nomCommune": "ESPIET" }, { - "codePostal": "60240", - "codeCommune": "60228", - "libelleAcheminement": "FAY LES ETANGS", - "nomCommune": "FAY LES ETANGS" + "codePostal": "22440", + "codeCommune": "22372", + "libelleAcheminement": "TREMUSON", + "nomCommune": "TREMUSON" }, { - "codePostal": "27160", - "codeCommune": "27043", - "libelleAcheminement": "LES BAUX DE BRETEUIL", - "nomCommune": "LES BAUX DE BRETEUIL" + "codePostal": "24240", + "codeCommune": "24349", + "libelleAcheminement": "RAZAC DE SAUSSIGNAC", + "nomCommune": "RAZAC DE SAUSSIGNAC" }, { - "codePostal": "52700", - "codeCommune": "52095", - "libelleAcheminement": "CHALVRAINES", - "nomCommune": "CHALVRAINES" + "codePostal": "33430", + "codeCommune": "33178", + "libelleAcheminement": "GAJAC", + "nomCommune": "GAJAC" }, { - "codePostal": "64190", - "codeCommune": "64531", - "libelleAcheminement": "TABAILLE USQUAIN", - "nomCommune": "TABAILLE USQUAIN" + "codePostal": "33760", + "codeCommune": "33163", + "libelleAcheminement": "FALEYRAS", + "nomCommune": "FALEYRAS" }, { - "codePostal": "60680", - "codeCommune": "60229", - "libelleAcheminement": "LE FAYEL", - "nomCommune": "LE FAYEL" + "codePostal": "22930", + "codeCommune": "22390", + "libelleAcheminement": "YVIAS", + "nomCommune": "YVIAS" }, { - "codePostal": "27330", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "24500", + "codeCommune": "24359", + "libelleAcheminement": "SADILLAC", + "nomCommune": "SADILLAC" }, { - "codePostal": "52410", - "codeCommune": "52099", - "libelleAcheminement": "CHAMOUILLEY", - "nomCommune": "CHAMOUILLEY" + "codePostal": "33430", + "codeCommune": "33180", + "libelleAcheminement": "GANS", + "nomCommune": "GANS" }, { - "codePostal": "64220", - "codeCommune": "64538", - "libelleAcheminement": "UHART CIZE", - "nomCommune": "UHART CIZE" + "codePostal": "33840", + "codeCommune": "33190", + "libelleAcheminement": "GOUALADE", + "nomCommune": "GOUALADE" }, { - "codePostal": "60510", - "codeCommune": "60230", - "libelleAcheminement": "LE FAY ST QUENTIN", - "nomCommune": "LE FAY ST QUENTIN" + "codePostal": "22350", + "codeCommune": "22391", + "libelleAcheminement": "YVIGNAC LA TOUR", + "nomCommune": "YVIGNAC LA TOUR" }, { - "codePostal": "27330", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "24510", + "codeCommune": "24362", + "libelleAcheminement": "VAL DE LOUYRE ET CAUDEAU", + "nomCommune": "VAL DE LOUYRE ET CAUDEAU" }, { - "codePostal": "52200", - "codeCommune": "52102", - "libelleAcheminement": "CHAMPIGNY LES LANGRES", - "nomCommune": "CHAMPIGNY LES LANGRES" + "codePostal": "33840", + "codeCommune": "33188", + "libelleAcheminement": "GISCOS", + "nomCommune": "GISCOS" }, { - "codePostal": "64120", - "codeCommune": "64539", - "libelleAcheminement": "UHART MIXE", - "nomCommune": "UHART MIXE" + "codePostal": "33420", + "codeCommune": "33194", + "libelleAcheminement": "GREZILLAC", + "nomCommune": "GREZILLAC" }, { - "codePostal": "60590", - "codeCommune": "60235", - "libelleAcheminement": "FLAVACOURT", - "nomCommune": "FLAVACOURT" + "codePostal": "23210", + "codeCommune": "23006", + "libelleAcheminement": "ARRENES", + "nomCommune": "ARRENES" }, { - "codePostal": "27330", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "24120", + "codeCommune": "24364", + "libelleAcheminement": "COLY ST AMAND", + "nomCommune": "COLY ST AMAND" }, { - "codePostal": "52260", - "codeCommune": "52106", - "libelleAcheminement": "CHANOY", - "nomCommune": "CHANOY" + "codePostal": "33690", + "codeCommune": "33195", + "libelleAcheminement": "GRIGNOLS", + "nomCommune": "GRIGNOLS" }, { - "codePostal": "64990", - "codeCommune": "64540", - "libelleAcheminement": "URCUIT", - "nomCommune": "URCUIT" + "codePostal": "33230", + "codeCommune": "33198", + "libelleAcheminement": "GUITRES", + "nomCommune": "GUITRES" }, { - "codePostal": "60300", - "codeCommune": "60241", - "libelleAcheminement": "FONTAINE CHAALIS", - "nomCommune": "FONTAINE CHAALIS" + "codePostal": "23200", + "codeCommune": "23008", + "libelleAcheminement": "AUBUSSON", + "nomCommune": "AUBUSSON" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "24380", + "codeCommune": "24365", + "libelleAcheminement": "ST AMAND DE VERGT", + "nomCommune": "ST AMAND DE VERGT" }, { - "codePostal": "52110", - "codeCommune": "52109", - "libelleAcheminement": "CHARMES EN L ANGLE", - "nomCommune": "CHARMES EN L ANGLE" + "codePostal": "33550", + "codeCommune": "33201", + "libelleAcheminement": "HAUX", + "nomCommune": "HAUX" }, { - "codePostal": "64130", - "codeCommune": "64559", - "libelleAcheminement": "VIODOS ABENSE DE BAS", - "nomCommune": "VIODOS ABENSE DE BAS" + "codePostal": "33190", + "codeCommune": "33204", + "libelleAcheminement": "HURE", + "nomCommune": "HURE" }, { - "codePostal": "60480", - "codeCommune": "60243", - "libelleAcheminement": "FONTAINE ST LUCIEN", - "nomCommune": "FONTAINE ST LUCIEN" + "codePostal": "23210", + "codeCommune": "23011", + "libelleAcheminement": "AULON", + "nomCommune": "AULON" }, { - "codePostal": "27110", - "codeCommune": "27055", - "libelleAcheminement": "BERENGEVILLE LA CAMPAGNE", - "nomCommune": "BERENGEVILLE LA CAMPAGNE" + "codePostal": "24110", + "codeCommune": "24371", + "libelleAcheminement": "ST AQUILIN", + "nomCommune": "ST AQUILIN" }, { - "codePostal": "52200", - "codeCommune": "52115", - "libelleAcheminement": "CHATENAY MACHERON", - "nomCommune": "CHATENAY MACHERON" + "codePostal": "33720", + "codeCommune": "33205", + "libelleAcheminement": "ILLATS", + "nomCommune": "ILLATS" }, { - "codePostal": "64450", - "codeCommune": "64560", - "libelleAcheminement": "VIVEN", - "nomCommune": "VIVEN" + "codePostal": "33420", + "codeCommune": "33209", + "libelleAcheminement": "JUGAZAN", + "nomCommune": "JUGAZAN" }, { - "codePostal": "60510", - "codeCommune": "60251", - "libelleAcheminement": "FOUQUEROLLES", - "nomCommune": "FOUQUEROLLES" + "codePostal": "23210", + "codeCommune": "23021", + "libelleAcheminement": "BENEVENT L ABBAYE", + "nomCommune": "BENEVENT L ABBAYE" }, { - "codePostal": "27800", - "codeCommune": "27061", - "libelleAcheminement": "BERTHOUVILLE", - "nomCommune": "BERTHOUVILLE" + "codePostal": "24560", + "codeCommune": "24374", + "libelleAcheminement": "ST AUBIN DE LANQUAIS", + "nomCommune": "ST AUBIN DE LANQUAIS" }, { - "codePostal": "52300", - "codeCommune": "52118", - "libelleAcheminement": "CHATONRUPT SOMMERMONT", - "nomCommune": "CHATONRUPT SOMMERMONT" + "codePostal": "33450", + "codeCommune": "33207", + "libelleAcheminement": "IZON", + "nomCommune": "IZON" }, { - "codePostal": "65260", - "codeCommune": "65001", - "libelleAcheminement": "ADAST", - "nomCommune": "ADAST" + "codePostal": "33720", + "codeCommune": "33225", + "libelleAcheminement": "LANDIRAS", + "nomCommune": "LANDIRAS" }, { - "codePostal": "60800", - "codeCommune": "60261", - "libelleAcheminement": "FRESNOY LE LUAT", - "nomCommune": "FRESNOY LE LUAT" + "codePostal": "23270", + "codeCommune": "23022", + "libelleAcheminement": "BETETE", + "nomCommune": "BETETE" }, { - "codePostal": "27210", - "codeCommune": "27064", - "libelleAcheminement": "BERVILLE SUR MER", - "nomCommune": "BERVILLE SUR MER" + "codePostal": "24250", + "codeCommune": "24375", + "libelleAcheminement": "ST AUBIN DE NABIRAT", + "nomCommune": "ST AUBIN DE NABIRAT" }, { - "codePostal": "52170", - "codeCommune": "52123", - "libelleAcheminement": "CHEVILLON", - "nomCommune": "CHEVILLON" + "codePostal": "33690", + "codeCommune": "33212", + "libelleAcheminement": "LABESCAU", + "nomCommune": "LABESCAU" }, { - "codePostal": "65560", - "codeCommune": "65018", - "libelleAcheminement": "ARBEOST", - "nomCommune": "ARBEOST" + "codePostal": "33690", + "codeCommune": "33235", + "libelleAcheminement": "LAVAZAN", + "nomCommune": "LAVAZAN" }, { - "codePostal": "60210", - "codeCommune": "60269", - "libelleAcheminement": "GAUDECHART", - "nomCommune": "GAUDECHART" + "codePostal": "23230", + "codeCommune": "23026", + "libelleAcheminement": "BORD ST GEORGES", + "nomCommune": "BORD ST GEORGES" }, { - "codePostal": "27660", - "codeCommune": "27067", - "libelleAcheminement": "BEZU ST ELOI", - "nomCommune": "BEZU ST ELOI" + "codePostal": "24360", + "codeCommune": "24381", + "libelleAcheminement": "ST BARTHELEMY DE BUSSIERE", + "nomCommune": "ST BARTHELEMY DE BUSSIERE" }, { - "codePostal": "52000", - "codeCommune": "52125", - "libelleAcheminement": "CHAMARANDES CHOIGNES", - "nomCommune": "CHAMARANDES CHOIGNES" + "codePostal": "33210", + "codeCommune": "33227", + "libelleAcheminement": "LANGON", + "nomCommune": "LANGON" }, { - "codePostal": "65100", - "codeCommune": "65038", - "libelleAcheminement": "ARTIGUES", - "nomCommune": "ARTIGUES" + "codePostal": "33950", + "codeCommune": "33236", + "libelleAcheminement": "LEGE CAP FERRET", + "nomCommune": "LEGE CAP FERRET" }, { - "codePostal": "60129", - "codeCommune": "60274", - "libelleAcheminement": "GLAIGNES", - "nomCommune": "GLAIGNES" + "codePostal": "23700", + "codeCommune": "23034", + "libelleAcheminement": "BROUSSE", + "nomCommune": "BROUSSE" }, { - "codePostal": "27150", - "codeCommune": "27070", - "libelleAcheminement": "FRENELLES EN VEXIN", - "nomCommune": "FRENELLES EN VEXIN" + "codePostal": "24270", + "codeCommune": "24397", + "libelleAcheminement": "ST CYR LES CHAMPAGNES", + "nomCommune": "ST CYR LES CHAMPAGNES" }, { - "codePostal": "52000", - "codeCommune": "52125", - "libelleAcheminement": "CHAMARANDES CHOIGNES", - "nomCommune": "CHAMARANDES CHOIGNES" + "codePostal": "33710", + "codeCommune": "33228", + "libelleAcheminement": "LANSAC", + "nomCommune": "LANSAC" }, { - "codePostal": "65380", - "codeCommune": "65052", - "libelleAcheminement": "AVERAN", - "nomCommune": "AVERAN" + "codePostal": "33840", + "codeCommune": "33239", + "libelleAcheminement": "LERM ET MUSSET", + "nomCommune": "LERM ET MUSSET" }, { - "codePostal": "60420", - "codeCommune": "60276", - "libelleAcheminement": "GODENVILLERS", - "nomCommune": "GODENVILLERS" + "codePostal": "23110", + "codeCommune": "23046", + "libelleAcheminement": "CHAMBONCHARD", + "nomCommune": "CHAMBONCHARD" }, { - "codePostal": "27520", - "codeCommune": "27077", - "libelleAcheminement": "BOISSEY LE CHATEL", - "nomCommune": "BOISSEY LE CHATEL" + "codePostal": "24340", + "codeCommune": "24403", + "libelleAcheminement": "ST FELIX DE BOURDEILLES", + "nomCommune": "ST FELIX DE BOURDEILLES" }, { - "codePostal": "52190", - "codeCommune": "52126", - "libelleAcheminement": "CHOILLEY DARDENAY", - "nomCommune": "CHOILLEY DARDENAY" + "codePostal": "33138", + "codeCommune": "33229", + "libelleAcheminement": "LANTON", + "nomCommune": "LANTON" }, { - "codePostal": "65200", - "codeCommune": "65059", - "libelleAcheminement": "BAGNERES DE BIGORRE", - "nomCommune": "BAGNERES DE BIGORRE" + "codePostal": "33220", + "codeCommune": "33242", + "libelleAcheminement": "LES LEVES ET THOUMEYRAGUES", + "nomCommune": "LES LEVES ET THOUMEYRAGUES" }, { - "codePostal": "60117", - "codeCommune": "60279", - "libelleAcheminement": "GONDREVILLE", - "nomCommune": "GONDREVILLE" + "codePostal": "23700", + "codeCommune": "23055", + "libelleAcheminement": "CHATELARD", + "nomCommune": "CHATELARD" }, { - "codePostal": "27290", - "codeCommune": "27083", - "libelleAcheminement": "BONNEVILLE APTOT", - "nomCommune": "BONNEVILLE APTOT" + "codePostal": "24300", + "codeCommune": "24411", + "libelleAcheminement": "ST FRONT SUR NIZONNE", + "nomCommune": "ST FRONT SUR NIZONNE" }, { - "codePostal": "52700", - "codeCommune": "52128", - "libelleAcheminement": "CIREY LES MAREILLES", - "nomCommune": "CIREY LES MAREILLES" + "codePostal": "33210", + "codeCommune": "33237", + "libelleAcheminement": "LEOGEATS", + "nomCommune": "LEOGEATS" }, { - "codePostal": "65690", - "codeCommune": "65062", - "libelleAcheminement": "BARBAZAN DEBAT", - "nomCommune": "BARBAZAN DEBAT" + "codePostal": "33430", + "codeCommune": "33244", + "libelleAcheminement": "LIGNAN DE BAZAS", + "nomCommune": "LIGNAN DE BAZAS" }, { - "codePostal": "60270", - "codeCommune": "60282", - "libelleAcheminement": "GOUVIEUX", - "nomCommune": "GOUVIEUX" + "codePostal": "23270", + "codeCommune": "23057", + "libelleAcheminement": "CHATELUS MALVALEIX", + "nomCommune": "CHATELUS MALVALEIX" }, { - "codePostal": "27230", - "codeCommune": "27106", - "libelleAcheminement": "BOURNAINVILLE FAVEROLLES", - "nomCommune": "BOURNAINVILLE FAVEROLLES" + "codePostal": "24170", + "codeCommune": "24416", + "libelleAcheminement": "ST GERMAIN DE BELVES", + "nomCommune": "ST GERMAIN DE BELVES" }, { - "codePostal": "52110", - "codeCommune": "52129", - "libelleAcheminement": "CIREY SUR BLAISE", - "nomCommune": "CIREY SUR BLAISE" + "codePostal": "33190", + "codeCommune": "33250", + "libelleAcheminement": "LOUBENS", + "nomCommune": "LOUBENS" }, { - "codePostal": "65240", - "codeCommune": "65064", - "libelleAcheminement": "BAREILLES", - "nomCommune": "BAREILLES" + "codePostal": "33220", + "codeCommune": "33246", + "libelleAcheminement": "LIGUEUX", + "nomCommune": "LIGUEUX" }, { - "codePostal": "60210", - "codeCommune": "60297", - "libelleAcheminement": "LE HAMEL", - "nomCommune": "LE HAMEL" + "codePostal": "23130", + "codeCommune": "23058", + "libelleAcheminement": "LE CHAUCHET", + "nomCommune": "LE CHAUCHET" }, { - "codePostal": "27350", - "codeCommune": "27110", - "libelleAcheminement": "BRESTOT", - "nomCommune": "BRESTOT" + "codePostal": "24190", + "codeCommune": "24418", + "libelleAcheminement": "ST GERMAIN DU SALEMBRE", + "nomCommune": "ST GERMAIN DU SALEMBRE" }, { - "codePostal": "52400", - "codeCommune": "52135", - "libelleAcheminement": "COIFFY LE BAS", - "nomCommune": "COIFFY LE BAS" + "codePostal": "33670", + "codeCommune": "33263", + "libelleAcheminement": "MADIRAC", + "nomCommune": "MADIRAC" }, { - "codePostal": "65250", - "codeCommune": "65069", - "libelleAcheminement": "LA BARTHE DE NESTE", - "nomCommune": "LA BARTHE DE NESTE" + "codePostal": "33480", + "codeCommune": "33248", + "libelleAcheminement": "LISTRAC MEDOC", + "nomCommune": "LISTRAC MEDOC" }, { - "codePostal": "60210", - "codeCommune": "60303", - "libelleAcheminement": "HAUTBOS", - "nomCommune": "HAUTBOS" + "codePostal": "23250", + "codeCommune": "23060", + "libelleAcheminement": "CHAVANAT", + "nomCommune": "CHAVANAT" }, { - "codePostal": "27220", - "codeCommune": "27111", - "libelleAcheminement": "BRETAGNOLLES", - "nomCommune": "BRETAGNOLLES" + "codePostal": "24400", + "codeCommune": "24420", + "libelleAcheminement": "ST GERY", + "nomCommune": "ST GERY" }, { - "codePostal": "52160", - "codeCommune": "52137", - "libelleAcheminement": "COLMIER LE BAS", - "nomCommune": "COLMIER LE BAS" + "codePostal": "33620", + "codeCommune": "33266", + "libelleAcheminement": "MARCENAIS", + "nomCommune": "MARCENAIS" }, { - "codePostal": "65140", - "codeCommune": "65073", - "libelleAcheminement": "BAZILLAC", - "nomCommune": "BAZILLAC" + "codePostal": "33125", + "codeCommune": "33251", + "libelleAcheminement": "LOUCHATS", + "nomCommune": "LOUCHATS" }, { - "codePostal": "60190", - "codeCommune": "60308", - "libelleAcheminement": "HEMEVILLERS", - "nomCommune": "HEMEVILLERS" + "codePostal": "23130", + "codeCommune": "23061", + "libelleAcheminement": "CHENERAILLES", + "nomCommune": "CHENERAILLES" }, { - "codePostal": "27160", - "codeCommune": "27112", - "libelleAcheminement": "BRETEUIL", - "nomCommune": "BRETEUIL" + "codePostal": "24330", + "codeCommune": "24421", + "libelleAcheminement": "ST GEYRAC", + "nomCommune": "ST GEYRAC" }, { - "codePostal": "52160", - "codeCommune": "52138", - "libelleAcheminement": "COLMIER LE HAUT", - "nomCommune": "COLMIER LE HAUT" + "codePostal": "33690", + "codeCommune": "33271", + "libelleAcheminement": "MARIONS", + "nomCommune": "MARIONS" }, { - "codePostal": "65670", - "codeCommune": "65074", - "libelleAcheminement": "BAZORDAN", - "nomCommune": "BAZORDAN" + "codePostal": "33840", + "codeCommune": "33255", + "libelleAcheminement": "LUCMAU", + "nomCommune": "LUCMAU" }, { - "codePostal": "60119", - "codeCommune": "60309", - "libelleAcheminement": "HENONVILLE", - "nomCommune": "HENONVILLE" + "codePostal": "23270", + "codeCommune": "23064", + "libelleAcheminement": "CLUGNAT", + "nomCommune": "CLUGNAT" }, { - "codePostal": "27160", - "codeCommune": "27112", - "libelleAcheminement": "BRETEUIL", - "nomCommune": "BRETEUIL" + "codePostal": "24110", + "codeCommune": "24442", + "libelleAcheminement": "ST LEON SUR L ISLE", + "nomCommune": "ST LEON SUR L ISLE" }, { - "codePostal": "52330", - "codeCommune": "52140", - "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", - "nomCommune": "COLOMBEY LES DEUX EGLISES" + "codePostal": "33350", + "codeCommune": "33282", + "libelleAcheminement": "MERIGNAS", + "nomCommune": "MERIGNAS" }, { - "codePostal": "65170", - "codeCommune": "65075", - "libelleAcheminement": "BAZUS AURE", - "nomCommune": "BAZUS AURE" + "codePostal": "33290", + "codeCommune": "33256", + "libelleAcheminement": "LUDON MEDOC", + "nomCommune": "LUDON MEDOC" }, { - "codePostal": "60360", - "codeCommune": "60314", - "libelleAcheminement": "HETOMESNIL", - "nomCommune": "HETOMESNIL" + "codePostal": "23700", + "codeCommune": "23066", + "libelleAcheminement": "LE COMPAS", + "nomCommune": "LE COMPAS" }, { - "codePostal": "27930", - "codeCommune": "27118", - "libelleAcheminement": "BROSVILLE", - "nomCommune": "BROSVILLE" + "codePostal": "24160", + "codeCommune": "24448", + "libelleAcheminement": "ST MARTIAL D ALBAREDE", + "nomCommune": "ST MARTIAL D ALBAREDE" }, { - "codePostal": "52000", - "codeCommune": "52141", - "libelleAcheminement": "CONDES", - "nomCommune": "CONDES" + "codePostal": "33380", + "codeCommune": "33284", + "libelleAcheminement": "MIOS", + "nomCommune": "MIOS" }, { - "codePostal": "65190", - "codeCommune": "65079", - "libelleAcheminement": "BEGOLE", - "nomCommune": "BEGOLE" + "codePostal": "33420", + "codeCommune": "33257", + "libelleAcheminement": "LUGAIGNAC", + "nomCommune": "LUGAIGNAC" }, { - "codePostal": "60250", - "codeCommune": "60317", - "libelleAcheminement": "HONDAINVILLE", - "nomCommune": "HONDAINVILLE" + "codePostal": "23100", + "codeCommune": "23067", + "libelleAcheminement": "LA COURTINE", + "nomCommune": "LA COURTINE" }, { - "codePostal": "27800", - "codeCommune": "27125", - "libelleAcheminement": "CALLEVILLE", - "nomCommune": "CALLEVILLE" + "codePostal": "24210", + "codeCommune": "24473", + "libelleAcheminement": "STE ORSE", + "nomCommune": "STE ORSE" }, { - "codePostal": "52700", - "codeCommune": "52142", - "libelleAcheminement": "CONSIGNY", - "nomCommune": "CONSIGNY" + "codePostal": "33710", + "codeCommune": "33285", + "libelleAcheminement": "MOMBRIER", + "nomCommune": "MOMBRIER" }, { - "codePostal": "65230", - "codeCommune": "65090", - "libelleAcheminement": "BETPOUY", - "nomCommune": "BETPOUY" + "codePostal": "33620", + "codeCommune": "33272", + "libelleAcheminement": "MARSAS", + "nomCommune": "MARSAS" }, { - "codePostal": "60710", - "codeCommune": "60318", - "libelleAcheminement": "HOUDANCOURT", - "nomCommune": "HOUDANCOURT" + "codePostal": "23140", + "codeCommune": "23072", + "libelleAcheminement": "DOMEYROT", + "nomCommune": "DOMEYROT" }, { - "codePostal": "27500", - "codeCommune": "27126", - "libelleAcheminement": "CAMPIGNY", - "nomCommune": "CAMPIGNY" + "codePostal": "24470", + "codeCommune": "24479", + "libelleAcheminement": "ST PARDOUX LA RIVIERE", + "nomCommune": "ST PARDOUX LA RIVIERE" }, { - "codePostal": "52500", - "codeCommune": "52145", - "libelleAcheminement": "COUBLANC", - "nomCommune": "COUBLANC" + "codePostal": "33190", + "codeCommune": "33287", + "libelleAcheminement": "MONGAUZY", + "nomCommune": "MONGAUZY" }, { - "codePostal": "65220", - "codeCommune": "65095", - "libelleAcheminement": "BONNEFONT", - "nomCommune": "BONNEFONT" + "codePostal": "33700", + "codeCommune": "33281", + "libelleAcheminement": "MERIGNAC", + "nomCommune": "MERIGNAC" }, { - "codePostal": "60240", - "codeCommune": "60327", - "libelleAcheminement": "JOUY SOUS THELLE", - "nomCommune": "JOUY SOUS THELLE" + "codePostal": "23340", + "codeCommune": "23077", + "libelleAcheminement": "FAUX LA MONTAGNE", + "nomCommune": "FAUX LA MONTAGNE" }, { - "codePostal": "27600", - "codeCommune": "27142", - "libelleAcheminement": "CHAMPENARD", - "nomCommune": "CHAMPENARD" + "codePostal": "24130", + "codeCommune": "24487", + "libelleAcheminement": "ST PIERRE D EYRAUD", + "nomCommune": "ST PIERRE D EYRAUD" }, { - "codePostal": "52190", - "codeCommune": "52158", - "libelleAcheminement": "CUSEY", - "nomCommune": "CUSEY" + "codePostal": "33450", + "codeCommune": "33293", + "libelleAcheminement": "MONTUSSAN", + "nomCommune": "MONTUSSAN" }, { - "codePostal": "65130", - "codeCommune": "65096", - "libelleAcheminement": "BONNEMAZON", - "nomCommune": "BONNEMAZON" + "codePostal": "33410", + "codeCommune": "33288", + "libelleAcheminement": "MONPRIMBLANC", + "nomCommune": "MONPRIMBLANC" }, { - "codePostal": "60590", - "codeCommune": "60331", - "libelleAcheminement": "LABOSSE", - "nomCommune": "LABOSSE" + "codePostal": "23500", + "codeCommune": "23079", + "libelleAcheminement": "FELLETIN", + "nomCommune": "FELLETIN" }, { - "codePostal": "27230", - "codeCommune": "27149", - "libelleAcheminement": "LA CHAPELLE HARENG", - "nomCommune": "LA CHAPELLE HARENG" + "codePostal": "24170", + "codeCommune": "24488", + "libelleAcheminement": "ST POMPONT", + "nomCommune": "ST POMPONT" }, { - "codePostal": "52130", - "codeCommune": "52169", - "libelleAcheminement": "DOMBLAIN", - "nomCommune": "DOMBLAIN" + "codePostal": "33420", + "codeCommune": "33298", + "libelleAcheminement": "MOULON", + "nomCommune": "MOULON" }, { - "codePostal": "65100", - "codeCommune": "65107", - "libelleAcheminement": "BOURREAC", - "nomCommune": "BOURREAC" + "codePostal": "33580", + "codeCommune": "33289", + "libelleAcheminement": "MONSEGUR", + "nomCommune": "MONSEGUR" }, { - "codePostal": "60480", - "codeCommune": "60336", - "libelleAcheminement": "LACHAUSSEE DU BOIS D ECU", - "nomCommune": "LACHAUSSEE DU BOIS D ECU" + "codePostal": "23360", + "codeCommune": "23084", + "libelleAcheminement": "LA FORET DU TEMPLE", + "nomCommune": "LA FORET DU TEMPLE" }, { - "codePostal": "27150", - "codeCommune": "27153", - "libelleAcheminement": "CHAUVINCOURT PROVEMONT", - "nomCommune": "CHAUVINCOURT PROVEMONT" + "codePostal": "24450", + "codeCommune": "24489", + "libelleAcheminement": "ST PRIEST LES FOUGERES", + "nomCommune": "ST PRIEST LES FOUGERES" }, { - "codePostal": "52270", - "codeCommune": "52177", - "libelleAcheminement": "DOULAINCOURT SAUCOURT", - "nomCommune": "DOULAINCOURT SAUCOURT" + "codePostal": "33730", + "codeCommune": "33307", + "libelleAcheminement": "NOAILLAN", + "nomCommune": "NOAILLAN" }, { - "codePostal": "65240", - "codeCommune": "65116", - "libelleAcheminement": "CADEAC", - "nomCommune": "CADEAC" + "codePostal": "33240", + "codeCommune": "33295", + "libelleAcheminement": "MOUILLAC", + "nomCommune": "MOUILLAC" }, { - "codePostal": "60400", - "codeCommune": "60348", - "libelleAcheminement": "LARBROYE", - "nomCommune": "LARBROYE" + "codePostal": "23350", + "codeCommune": "23089", + "libelleAcheminement": "GENOUILLAC", + "nomCommune": "GENOUILLAC" }, { - "codePostal": "27220", - "codeCommune": "27154", - "libelleAcheminement": "CHAVIGNY BAILLEUL", - "nomCommune": "CHAVIGNY BAILLEUL" + "codePostal": "24410", + "codeCommune": "24490", + "libelleAcheminement": "ST PRIVAT EN PERIGORD", + "nomCommune": "ST PRIVAT EN PERIGORD" }, { - "codePostal": "52410", - "codeCommune": "52194", - "libelleAcheminement": "EURVILLE BIENVILLE", - "nomCommune": "EURVILLE BIENVILLE" + "codePostal": "33113", + "codeCommune": "33310", + "libelleAcheminement": "ORIGNE", + "nomCommune": "ORIGNE" }, { - "codePostal": "65710", - "codeCommune": "65123", - "libelleAcheminement": "CAMPAN", - "nomCommune": "CAMPAN" + "codePostal": "33990", + "codeCommune": "33300", + "libelleAcheminement": "NAUJAC SUR MER", + "nomCommune": "NAUJAC SUR MER" }, { - "codePostal": "60120", - "codeCommune": "60353", - "libelleAcheminement": "LAVACQUERIE", - "nomCommune": "LAVACQUERIE" + "codePostal": "23600", + "codeCommune": "23104", + "libelleAcheminement": "LAVAUFRANCHE", + "nomCommune": "LAVAUFRANCHE" }, { - "codePostal": "27160", - "codeCommune": "27157", - "libelleAcheminement": "MARBOIS", - "nomCommune": "MARBOIS" + "codePostal": "24560", + "codeCommune": "24492", + "libelleAcheminement": "STE RADEGONDE", + "nomCommune": "STE RADEGONDE" }, { - "codePostal": "52500", - "codeCommune": "52195", - "libelleAcheminement": "FARINCOURT", - "nomCommune": "FARINCOURT" + "codePostal": "33240", + "codeCommune": "33321", + "libelleAcheminement": "PEUJARD", + "nomCommune": "PEUJARD" }, { - "codePostal": "65170", - "codeCommune": "65124", - "libelleAcheminement": "CAMPARAN", - "nomCommune": "CAMPARAN" + "codePostal": "33500", + "codeCommune": "33302", + "libelleAcheminement": "NEAC", + "nomCommune": "NEAC" }, { - "codePostal": "60210", - "codeCommune": "60354", - "libelleAcheminement": "LAVERRIERE", - "nomCommune": "LAVERRIERE" + "codePostal": "23150", + "codeCommune": "23107", + "libelleAcheminement": "LEPINAS", + "nomCommune": "LEPINAS" }, { - "codePostal": "27290", - "codeCommune": "27167", - "libelleAcheminement": "CONDE SUR RISLE", - "nomCommune": "CONDE SUR RISLE" + "codePostal": "24470", + "codeCommune": "24498", + "libelleAcheminement": "ST SAUD LACOUSSIERE", + "nomCommune": "ST SAUD LACOUSSIERE" }, { - "codePostal": "52800", - "codeCommune": "52205", - "libelleAcheminement": "FOULAIN", - "nomCommune": "FOULAIN" + "codePostal": "33500", + "codeCommune": "33328", + "libelleAcheminement": "POMEROL", + "nomCommune": "POMEROL" }, { - "codePostal": "65230", - "codeCommune": "65126", - "libelleAcheminement": "CAMPUZAN", - "nomCommune": "CAMPUZAN" + "codePostal": "33580", + "codeCommune": "33304", + "libelleAcheminement": "NEUFFONS", + "nomCommune": "NEUFFONS" }, { - "codePostal": "60800", - "codeCommune": "60358", - "libelleAcheminement": "LEVIGNEN", - "nomCommune": "LEVIGNEN" + "codePostal": "23240", + "codeCommune": "23111", + "libelleAcheminement": "LIZIERES", + "nomCommune": "LIZIERES" }, { - "codePostal": "27120", - "codeCommune": "27171", - "libelleAcheminement": "LE CORMIER", - "nomCommune": "LE CORMIER" + "codePostal": "24520", + "codeCommune": "24499", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "52360", - "codeCommune": "52207", - "libelleAcheminement": "FRECOURT", - "nomCommune": "FRECOURT" + "codePostal": "33730", + "codeCommune": "33329", + "libelleAcheminement": "POMPEJAC", + "nomCommune": "POMPEJAC" }, { - "codePostal": "65130", - "codeCommune": "65127", - "libelleAcheminement": "CAPVERN LES BAINS", - "nomCommune": "CAPVERN" + "codePostal": "33430", + "codeCommune": "33305", + "libelleAcheminement": "LE NIZAN", + "nomCommune": "LE NIZAN" }, { - "codePostal": "60240", - "codeCommune": "60361", - "libelleAcheminement": "LIANCOURT ST PIERRE", - "nomCommune": "LIANCOURT ST PIERRE" + "codePostal": "23360", + "codeCommune": "23112", + "libelleAcheminement": "LOURDOUEIX ST PIERRE", + "nomCommune": "LOURDOUEIX ST PIERRE" }, { - "codePostal": "27150", - "codeCommune": "27176", - "libelleAcheminement": "COUDRAY", - "nomCommune": "COUDRAY" + "codePostal": "24230", + "codeCommune": "24501", + "libelleAcheminement": "ST SEURIN DE PRATS", + "nomCommune": "ST SEURIN DE PRATS" }, { - "codePostal": "52210", - "codeCommune": "52220", - "libelleAcheminement": "GIEY SUR AUJON", - "nomCommune": "GIEY SUR AUJON" + "codePostal": "33660", + "codeCommune": "33332", + "libelleAcheminement": "PORCHERES", + "nomCommune": "PORCHERES" }, { - "codePostal": "65700", - "codeCommune": "65130", - "libelleAcheminement": "CASTELNAU RIVIERE BASSE", - "nomCommune": "CASTELNAU RIVIERE BASSE" + "codePostal": "33340", + "codeCommune": "33309", + "libelleAcheminement": "ORDONNAC", + "nomCommune": "ORDONNAC" }, { - "codePostal": "60640", - "codeCommune": "60362", - "libelleAcheminement": "LIBERMONT", - "nomCommune": "LIBERMONT" + "codePostal": "23360", + "codeCommune": "23112", + "libelleAcheminement": "LOURDOUEIX ST PIERRE", + "nomCommune": "LOURDOUEIX ST PIERRE" }, { - "codePostal": "27120", - "codeCommune": "27190", - "libelleAcheminement": "CROISY SUR EURE", - "nomCommune": "CROISY SUR EURE" + "codePostal": "24600", + "codeCommune": "24504", + "libelleAcheminement": "ST SULPICE DE ROUMAGNAC", + "nomCommune": "ST SULPICE DE ROUMAGNAC" }, { - "codePostal": "52320", - "codeCommune": "52230", - "libelleAcheminement": "GUDMONT VILLIERS", - "nomCommune": "GUDMONT VILLIERS" + "codePostal": "33730", + "codeCommune": "33336", + "libelleAcheminement": "PRECHAC", + "nomCommune": "PRECHAC" }, { - "codePostal": "65350", - "codeCommune": "65133", - "libelleAcheminement": "CASTERA LOU", - "nomCommune": "CASTERA LOU" + "codePostal": "33370", + "codeCommune": "33330", + "libelleAcheminement": "POMPIGNAC", + "nomCommune": "POMPIGNAC" }, { - "codePostal": "60510", - "codeCommune": "60366", - "libelleAcheminement": "LITZ", - "nomCommune": "LITZ" + "codePostal": "23260", + "codeCommune": "23115", + "libelleAcheminement": "MAGNAT L ETRANGE", + "nomCommune": "MAGNAT L ETRANGE" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "24160", + "codeCommune": "24507", + "libelleAcheminement": "STE TRIE", + "nomCommune": "STE TRIE" }, { - "codePostal": "52600", - "codeCommune": "52242", - "libelleAcheminement": "HAUTE AMANCE", - "nomCommune": "HAUTE AMANCE" + "codePostal": "33710", + "codeCommune": "33341", + "libelleAcheminement": "PUGNAC", + "nomCommune": "PUGNAC" }, { - "codePostal": "65230", - "codeCommune": "65136", - "libelleAcheminement": "CAUBOUS", - "nomCommune": "CAUBOUS" + "codePostal": "33710", + "codeCommune": "33341", + "libelleAcheminement": "PUGNAC", + "nomCommune": "PUGNAC" }, { - "codePostal": "60126", - "codeCommune": "60369", - "libelleAcheminement": "LONGUEIL STE MARIE", - "nomCommune": "LONGUEIL STE MARIE" + "codePostal": "23800", + "codeCommune": "23117", + "libelleAcheminement": "MAISON FEYNE", + "nomCommune": "MAISON FEYNE" }, { - "codePostal": "27120", - "codeCommune": "27203", - "libelleAcheminement": "DOUAINS", - "nomCommune": "DOUAINS" + "codePostal": "24420", + "codeCommune": "24513", + "libelleAcheminement": "ST VINCENT SUR L ISLE", + "nomCommune": "ST VINCENT SUR L ISLE" }, { - "codePostal": "52600", - "codeCommune": "52242", - "libelleAcheminement": "HAUTE AMANCE", - "nomCommune": "HAUTE AMANCE" + "codePostal": "33141", + "codeCommune": "33364", + "libelleAcheminement": "SAILLANS", + "nomCommune": "SAILLANS" }, { - "codePostal": "65200", - "codeCommune": "65147", - "libelleAcheminement": "CIEUTAT", - "nomCommune": "CIEUTAT" + "codePostal": "33660", + "codeCommune": "33347", + "libelleAcheminement": "PUYNORMAND", + "nomCommune": "PUYNORMAND" }, { - "codePostal": "60600", - "codeCommune": "60375", - "libelleAcheminement": "MAIMBEVILLE", - "nomCommune": "MAIMBEVILLE" + "codePostal": "23600", + "codeCommune": "23120", + "libelleAcheminement": "MALLERET BOUSSAC", + "nomCommune": "MALLERET BOUSSAC" }, { - "codePostal": "27320", - "codeCommune": "27206", - "libelleAcheminement": "DROISY", - "nomCommune": "DROISY" + "codePostal": "24160", + "codeCommune": "24515", + "libelleAcheminement": "SALAGNAC", + "nomCommune": "SALAGNAC" }, { - "codePostal": "52600", - "codeCommune": "52242", - "libelleAcheminement": "HAUTE AMANCE", - "nomCommune": "HAUTE AMANCE" + "codePostal": "33490", + "codeCommune": "33367", + "libelleAcheminement": "ST ANDRE DU BOIS", + "nomCommune": "ST ANDRE DU BOIS" }, { - "codePostal": "65350", - "codeCommune": "65151", - "libelleAcheminement": "COLLONGUES", - "nomCommune": "COLLONGUES" + "codePostal": "33340", + "codeCommune": "33348", + "libelleAcheminement": "QUEYRAC", + "nomCommune": "QUEYRAC" }, { - "codePostal": "60310", - "codeCommune": "60381", - "libelleAcheminement": "MARGNY AUX CERISES", - "nomCommune": "MARGNY AUX CERISES" + "codePostal": "23400", + "codeCommune": "23133", + "libelleAcheminement": "MONTBOUCHER", + "nomCommune": "MONTBOUCHER" }, { - "codePostal": "27510", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "24170", + "codeCommune": "24517", + "libelleAcheminement": "SALLES DE BELVES", + "nomCommune": "SALLES DE BELVES" }, { - "codePostal": "52150", - "codeCommune": "52243", - "libelleAcheminement": "HUILLIECOURT", - "nomCommune": "HUILLIECOURT" + "codePostal": "33820", + "codeCommune": "33374", + "libelleAcheminement": "ST AUBIN DE BLAYE", + "nomCommune": "ST AUBIN DE BLAYE" }, { - "codePostal": "65370", - "codeCommune": "65158", - "libelleAcheminement": "ESBAREICH", - "nomCommune": "ESBAREICH" + "codePostal": "33420", + "codeCommune": "33350", + "libelleAcheminement": "RAUZAN", + "nomCommune": "RAUZAN" }, { - "codePostal": "60890", - "codeCommune": "60385", - "libelleAcheminement": "MAROLLES", - "nomCommune": "MAROLLES" + "codePostal": "23220", + "codeCommune": "23136", + "libelleAcheminement": "MORTROUX", + "nomCommune": "MORTROUX" }, { - "codePostal": "27630", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "24380", + "codeCommune": "24518", + "libelleAcheminement": "SALON", + "nomCommune": "SALON" }, { - "codePostal": "52150", - "codeCommune": "52247", - "libelleAcheminement": "ILLOUD", - "nomCommune": "ILLOUD" + "codePostal": "33420", + "codeCommune": "33375", + "libelleAcheminement": "ST AUBIN DE BRANNE", + "nomCommune": "ST AUBIN DE BRANNE" }, { - "codePostal": "65370", - "codeCommune": "65175", - "libelleAcheminement": "FERRERE", - "nomCommune": "FERRERE" + "codePostal": "33190", + "codeCommune": "33352", + "libelleAcheminement": "LA REOLE", + "nomCommune": "LA REOLE" }, { - "codePostal": "60660", - "codeCommune": "60393", - "libelleAcheminement": "MELLO", - "nomCommune": "MELLO" + "codePostal": "23150", + "codeCommune": "23138", + "libelleAcheminement": "MOUTIER D AHUN", + "nomCommune": "MOUTIER D AHUN" }, { - "codePostal": "27440", - "codeCommune": "27214", - "libelleAcheminement": "ECOUIS", - "nomCommune": "ECOUIS" + "codePostal": "24420", + "codeCommune": "24540", + "libelleAcheminement": "SORGES ET LIGUEUX EN PERIGORD", + "nomCommune": "SORGES ET LIGUEUX EN PERIGORD" }, { - "codePostal": "52220", - "codeCommune": "52266", - "libelleAcheminement": "LANEUVILLE A REMY", - "nomCommune": "LANEUVILLE A REMY" + "codePostal": "33220", + "codeCommune": "33377", + "libelleAcheminement": "ST AVIT DE SOULEGE", + "nomCommune": "ST AVIT DE SOULEGE" }, { - "codePostal": "65220", - "codeCommune": "65178", - "libelleAcheminement": "FRECHEDE", - "nomCommune": "FRECHEDE" + "codePostal": "33410", + "codeCommune": "33355", + "libelleAcheminement": "RIONS", + "nomCommune": "RIONS" }, { - "codePostal": "60240", - "codeCommune": "60401", - "libelleAcheminement": "LE MESNIL THERIBUS", - "nomCommune": "LE MESNIL THERIBUS" + "codePostal": "23130", + "codeCommune": "23151", + "libelleAcheminement": "PEYRAT LA NONIERE", + "nomCommune": "PEYRAT LA NONIERE" }, { - "codePostal": "27110", - "codeCommune": "27215", - "libelleAcheminement": "ECQUETOT", - "nomCommune": "ECQUETOT" + "codePostal": "24240", + "codeCommune": "24549", + "libelleAcheminement": "THENAC", + "nomCommune": "THENAC" }, { - "codePostal": "52200", - "codeCommune": "52269", - "libelleAcheminement": "LANGRES", - "nomCommune": "LANGRES" + "codePostal": "33710", + "codeCommune": "33388", + "libelleAcheminement": "ST CIERS DE CANESSE", + "nomCommune": "ST CIERS DE CANESSE" }, { - "codePostal": "65120", - "codeCommune": "65192", - "libelleAcheminement": "GAVARNIE GEDRE", - "nomCommune": "GAVARNIE GEDRE" + "codePostal": "33760", + "codeCommune": "33358", + "libelleAcheminement": "ROMAGNE", + "nomCommune": "ROMAGNE" }, { - "codePostal": "60880", - "codeCommune": "60402", - "libelleAcheminement": "LE MEUX", - "nomCommune": "LE MEUX" + "codePostal": "23250", + "codeCommune": "23155", + "libelleAcheminement": "PONTARION", + "nomCommune": "PONTARION" }, { - "codePostal": "27560", - "codeCommune": "27222", - "libelleAcheminement": "EPREVILLE EN LIEUVIN", - "nomCommune": "EPREVILLE EN LIEUVIN" + "codePostal": "24800", + "codeCommune": "24567", + "libelleAcheminement": "VAUNAC", + "nomCommune": "VAUNAC" }, { - "codePostal": "52800", - "codeCommune": "52271", - "libelleAcheminement": "LANQUES SUR ROGNON", - "nomCommune": "LANQUES SUR ROGNON" + "codePostal": "33350", + "codeCommune": "33390", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "65240", - "codeCommune": "65199", - "libelleAcheminement": "GERM", - "nomCommune": "GERM" + "codePostal": "33580", + "codeCommune": "33359", + "libelleAcheminement": "ROQUEBRUNE", + "nomCommune": "ROQUEBRUNE" }, { - "codePostal": "60220", - "codeCommune": "60405", - "libelleAcheminement": "MOLIENS", - "nomCommune": "MOLIENS" + "codePostal": "23800", + "codeCommune": "23166", + "libelleAcheminement": "SAGNAT", + "nomCommune": "SAGNAT" }, { - "codePostal": "27190", - "codeCommune": "27238", - "libelleAcheminement": "FERRIERES HAUT CLOCHER", - "nomCommune": "FERRIERES HAUT CLOCHER" + "codePostal": "24540", + "codeCommune": "24572", + "libelleAcheminement": "VERGT DE BIRON", + "nomCommune": "VERGT DE BIRON" }, { - "codePostal": "52000", - "codeCommune": "52276", - "libelleAcheminement": "LAVILLE AUX BOIS", - "nomCommune": "LAVILLE AUX BOIS" + "codePostal": "33330", + "codeCommune": "33394", + "libelleAcheminement": "ST EMILION", + "nomCommune": "ST EMILION" }, { - "codePostal": "65400", - "codeCommune": "65202", - "libelleAcheminement": "GEZ", - "nomCommune": "GEZ" + "codePostal": "33220", + "codeCommune": "33360", + "libelleAcheminement": "LA ROQUILLE", + "nomCommune": "LA ROQUILLE" }, { - "codePostal": "60113", - "codeCommune": "60408", - "libelleAcheminement": "MONCHY HUMIERES", - "nomCommune": "MONCHY HUMIERES" + "codePostal": "23110", + "codeCommune": "23167", + "libelleAcheminement": "SANNAT", + "nomCommune": "SANNAT" }, { - "codePostal": "27270", - "codeCommune": "27239", - "libelleAcheminement": "FERRIERES ST HILAIRE", - "nomCommune": "FERRIERES ST HILAIRE" + "codePostal": "24140", + "codeCommune": "24581", + "libelleAcheminement": "VILLAMBLARD", + "nomCommune": "VILLAMBLARD" }, { - "codePostal": "52700", - "codeCommune": "52286", - "libelleAcheminement": "LEURVILLE", - "nomCommune": "LEURVILLE" + "codePostal": "33350", + "codeCommune": "33401", + "libelleAcheminement": "STE FLORENCE", + "nomCommune": "STE FLORENCE" }, { - "codePostal": "65100", - "codeCommune": "65203", - "libelleAcheminement": "GEZ EZ ANGLES", - "nomCommune": "GEZ EZ ANGLES" + "codePostal": "33910", + "codeCommune": "33362", + "libelleAcheminement": "SABLONS", + "nomCommune": "SABLONS" }, { - "codePostal": "60240", - "codeCommune": "60411", - "libelleAcheminement": "MONNEVILLE", - "nomCommune": "MONNEVILLE" + "codePostal": "23600", + "codeCommune": "23174", + "libelleAcheminement": "SOUMANS", + "nomCommune": "SOUMANS" }, { - "codePostal": "27470", - "codeCommune": "27251", - "libelleAcheminement": "FONTAINE L ABBE", - "nomCommune": "FONTAINE L ABBE" + "codePostal": "25320", + "codeCommune": "25001", + "libelleAcheminement": "ABBANS DESSOUS", + "nomCommune": "ABBANS DESSOUS" }, { - "codePostal": "52230", - "codeCommune": "52288", - "libelleAcheminement": "LEZEVILLE", - "nomCommune": "LEZEVILLE" + "codePostal": "33490", + "codeCommune": "33411", + "libelleAcheminement": "ST GERMAIN DE GRAVE", + "nomCommune": "ST GERMAIN DE GRAVE" }, { - "codePostal": "65130", - "codeCommune": "65207", - "libelleAcheminement": "GOURGUE", - "nomCommune": "GOURGUE" + "codePostal": "33126", + "codeCommune": "33365", + "libelleAcheminement": "ST AIGNAN", + "nomCommune": "ST AIGNAN" }, { - "codePostal": "60950", - "codeCommune": "60413", - "libelleAcheminement": "MONTAGNY STE FELICITE", - "nomCommune": "MONTAGNY STE FELICITE" + "codePostal": "23150", + "codeCommune": "23175", + "libelleAcheminement": "SOUS PARSAT", + "nomCommune": "SOUS PARSAT" }, { - "codePostal": "27500", - "codeCommune": "27263", - "libelleAcheminement": "LE PERREY", - "nomCommune": "LE PERREY" + "codePostal": "25310", + "codeCommune": "25004", + "libelleAcheminement": "ABBEVILLERS", + "nomCommune": "ABBEVILLERS" }, { - "codePostal": "52300", - "codeCommune": "52302", - "libelleAcheminement": "MAIZIERES", - "nomCommune": "MAIZIERES" + "codePostal": "33340", + "codeCommune": "33412", + "libelleAcheminement": "ST GERMAIN D ESTEUIL", + "nomCommune": "ST GERMAIN D ESTEUIL" }, { - "codePostal": "65240", - "codeCommune": "65209", - "libelleAcheminement": "GREZIAN", - "nomCommune": "GREZIAN" + "codePostal": "33860", + "codeCommune": "33380", + "libelleAcheminement": "VAL DE LIVENNE", + "nomCommune": "VAL DE LIVENNE" }, { - "codePostal": "60300", - "codeCommune": "60421", - "libelleAcheminement": "MONT L EVEQUE", - "nomCommune": "MONT L EVEQUE" + "codePostal": "23200", + "codeCommune": "23182", + "libelleAcheminement": "ST AVIT DE TARDES", + "nomCommune": "ST AVIT DE TARDES" }, { - "codePostal": "27680", - "codeCommune": "27263", - "libelleAcheminement": "LE PERREY", - "nomCommune": "LE PERREY" + "codePostal": "25270", + "codeCommune": "25026", + "libelleAcheminement": "ARC SOUS MONTENOT", + "nomCommune": "ARC SOUS MONTENOT" }, { - "codePostal": "52500", - "codeCommune": "52303", - "libelleAcheminement": "MAIZIERES SUR AMANCE", - "nomCommune": "MAIZIERES SUR AMANCE" + "codePostal": "33240", + "codeCommune": "33414", + "libelleAcheminement": "ST GERMAIN DE LA RIVIERE", + "nomCommune": "ST GERMAIN DE LA RIVIERE" }, { - "codePostal": "65120", - "codeCommune": "65210", - "libelleAcheminement": "GRUST", - "nomCommune": "GRUST" + "codePostal": "33920", + "codeCommune": "33382", + "libelleAcheminement": "ST CHRISTOLY DE BLAYE", + "nomCommune": "ST CHRISTOLY DE BLAYE" }, { - "codePostal": "60650", - "codeCommune": "60428", - "libelleAcheminement": "LE MONT ST ADRIEN", - "nomCommune": "LE MONT ST ADRIEN" + "codePostal": "23400", + "codeCommune": "23189", + "libelleAcheminement": "ST DIZIER MASBARAUD", + "nomCommune": "ST DIZIER MASBARAUD" }, { - "codePostal": "27290", - "codeCommune": "27267", - "libelleAcheminement": "FRENEUSE SUR RISLE", - "nomCommune": "FRENEUSE SUR RISLE" + "codePostal": "25150", + "codeCommune": "25033", + "libelleAcheminement": "AUTECHAUX ROIDE", + "nomCommune": "AUTECHAUX ROIDE" }, { - "codePostal": "52800", - "codeCommune": "52315", - "libelleAcheminement": "MARNAY SUR MARNE", - "nomCommune": "MARNAY SUR MARNE" + "codePostal": "33480", + "codeCommune": "33417", + "libelleAcheminement": "STE HELENE", + "nomCommune": "STE HELENE" }, { - "codePostal": "65200", - "codeCommune": "65216", - "libelleAcheminement": "HAUBAN", - "nomCommune": "HAUBAN" + "codePostal": "33230", + "codeCommune": "33385", + "libelleAcheminement": "ST CHRISTOPHE DE DOUBLE", + "nomCommune": "ST CHRISTOPHE DE DOUBLE" }, { - "codePostal": "60128", - "codeCommune": "60432", - "libelleAcheminement": "MORTEFONTAINE", - "nomCommune": "MORTEFONTAINE" + "codePostal": "23190", + "codeCommune": "23190", + "libelleAcheminement": "ST DOMET", + "nomCommune": "ST DOMET" }, { - "codePostal": "27220", - "codeCommune": "27277", - "libelleAcheminement": "LA BARONNIE", - "nomCommune": "LA BARONNIE" + "codePostal": "25720", + "codeCommune": "25036", + "libelleAcheminement": "AVANNE AVENEY", + "nomCommune": "AVANNE AVENEY" }, { - "codePostal": "52300", - "codeCommune": "52316", - "libelleAcheminement": "MATHONS", - "nomCommune": "MATHONS" + "codePostal": "33127", + "codeCommune": "33422", + "libelleAcheminement": "ST JEAN D ILLAC", + "nomCommune": "ST JEAN D ILLAC" }, { - "codePostal": "65150", - "codeCommune": "65217", - "libelleAcheminement": "HAUTAGET", - "nomCommune": "HAUTAGET" + "codePostal": "33180", + "codeCommune": "33395", + "libelleAcheminement": "ST ESTEPHE", + "nomCommune": "ST ESTEPHE" }, { - "codePostal": "60190", - "codeCommune": "60441", - "libelleAcheminement": "MOYVILLERS", - "nomCommune": "MOYVILLERS" + "codePostal": "23000", + "codeCommune": "23191", + "libelleAcheminement": "ST ELOI", + "nomCommune": "ST ELOI" }, { - "codePostal": "27190", - "codeCommune": "27281", - "libelleAcheminement": "GAUDREVILLE LA RIVIERE", - "nomCommune": "GAUDREVILLE LA RIVIERE" + "codePostal": "25110", + "codeCommune": "25047", + "libelleAcheminement": "BAUME LES DAMES", + "nomCommune": "BAUME LES DAMES" }, { - "codePostal": "52110", - "codeCommune": "52321", - "libelleAcheminement": "MERTRUD", - "nomCommune": "MERTRUD" + "codePostal": "33112", + "codeCommune": "33424", + "libelleAcheminement": "ST LAURENT MEDOC", + "nomCommune": "ST LAURENT MEDOC" }, { - "codePostal": "65190", - "codeCommune": "65222", - "libelleAcheminement": "HITTE", - "nomCommune": "HITTE" + "codePostal": "33190", + "codeCommune": "33398", + "libelleAcheminement": "ST EXUPERY", + "nomCommune": "ST EXUPERY" }, { - "codePostal": "60400", - "codeCommune": "60445", - "libelleAcheminement": "NAMPCEL", - "nomCommune": "NAMPCEL" + "codePostal": "23500", + "codeCommune": "23194", + "libelleAcheminement": "STE FEYRE LA MONTAGNE", + "nomCommune": "STE FEYRE LA MONTAGNE" }, { - "codePostal": "27930", - "codeCommune": "27282", - "libelleAcheminement": "GAUVILLE LA CAMPAGNE", - "nomCommune": "GAUVILLE LA CAMPAGNE" + "codePostal": "25380", + "codeCommune": "25051", + "libelleAcheminement": "BELLEHERBE", + "nomCommune": "BELLEHERBE" }, { - "codePostal": "52100", - "codeCommune": "52327", - "libelleAcheminement": "MOESLAINS", - "nomCommune": "MOESLAINS" + "codePostal": "33540", + "codeCommune": "33427", + "libelleAcheminement": "ST LAURENT DU BOIS", + "nomCommune": "ST LAURENT DU BOIS" }, { - "codePostal": "65350", - "codeCommune": "65232", - "libelleAcheminement": "JACQUE", - "nomCommune": "JACQUE" + "codePostal": "33540", + "codeCommune": "33399", + "libelleAcheminement": "ST FELIX DE FONCAUDE", + "nomCommune": "ST FELIX DE FONCAUDE" }, { - "codePostal": "60890", - "codeCommune": "60448", - "libelleAcheminement": "NEUFCHELLES", - "nomCommune": "NEUFCHELLES" + "codePostal": "23000", + "codeCommune": "23195", + "libelleAcheminement": "ST FIEL", + "nomCommune": "ST FIEL" }, { - "codePostal": "27620", - "codeCommune": "27285", - "libelleAcheminement": "GIVERNY", - "nomCommune": "GIVERNY" + "codePostal": "25430", + "codeCommune": "25053", + "libelleAcheminement": "BELVOIR", + "nomCommune": "BELVOIR" }, { - "codePostal": "52140", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "33670", + "codeCommune": "33431", + "libelleAcheminement": "ST LEON", + "nomCommune": "ST LEON" }, { - "codePostal": "65200", - "codeCommune": "65238", - "libelleAcheminement": "LABASSERE", - "nomCommune": "LABASSERE" + "codePostal": "33125", + "codeCommune": "33436", + "libelleAcheminement": "ST MAGNE", + "nomCommune": "ST MAGNE" }, { - "codePostal": "60290", - "codeCommune": "60451", - "libelleAcheminement": "NEUILLY SOUS CLERMONT", - "nomCommune": "NEUILLY SOUS CLERMONT" + "codePostal": "23250", + "codeCommune": "23197", + "libelleAcheminement": "ST GEORGES LA POUGE", + "nomCommune": "ST GEORGES LA POUGE" }, { - "codePostal": "27290", - "codeCommune": "27288", - "libelleAcheminement": "GLOS SUR RISLE", - "nomCommune": "GLOS SUR RISLE" + "codePostal": "25420", + "codeCommune": "25054", + "libelleAcheminement": "BERCHE", + "nomCommune": "BERCHE" }, { - "codePostal": "52140", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "33450", + "codeCommune": "33433", + "libelleAcheminement": "ST LOUBES", + "nomCommune": "ST LOUBES" }, { - "codePostal": "65130", - "codeCommune": "65239", - "libelleAcheminement": "LABASTIDE", - "nomCommune": "LABASTIDE" + "codePostal": "33490", + "codeCommune": "33438", + "libelleAcheminement": "ST MAIXANT", + "nomCommune": "ST MAIXANT" }, { - "codePostal": "60119", - "codeCommune": "60452", - "libelleAcheminement": "NEUVILLE BOSC", - "nomCommune": "NEUVILLE BOSC" + "codePostal": "23400", + "codeCommune": "23205", + "libelleAcheminement": "ST JUNIEN LA BREGERE", + "nomCommune": "ST JUNIEN LA BREGERE" }, { - "codePostal": "27170", - "codeCommune": "27290", - "libelleAcheminement": "GOUPIL OTHON", - "nomCommune": "GOUPIL OTHON" + "codePostal": "25410", + "codeCommune": "25055", + "libelleAcheminement": "BERTHELANGE", + "nomCommune": "BERTHELANGE" }, { - "codePostal": "52130", - "codeCommune": "52336", - "libelleAcheminement": "MONTREUIL SUR BLAISE", - "nomCommune": "MONTREUIL SUR BLAISE" + "codePostal": "33490", + "codeCommune": "33435", + "libelleAcheminement": "ST MACAIRE", + "nomCommune": "ST MACAIRE" }, { - "codePostal": "65310", - "codeCommune": "65251", - "libelleAcheminement": "LALOUBERE", - "nomCommune": "LALOUBERE" + "codePostal": "33390", + "codeCommune": "33441", + "libelleAcheminement": "ST MARTIN LACAUSSADE", + "nomCommune": "ST MARTIN LACAUSSADE" }, { - "codePostal": "60180", - "codeCommune": "60463", - "libelleAcheminement": "NOGENT SUR OISE", - "nomCommune": "NOGENT SUR OISE" + "codePostal": "23460", + "codeCommune": "23212", + "libelleAcheminement": "ST MARC A LOUBAUD", + "nomCommune": "ST MARC A LOUBAUD" }, { - "codePostal": "27270", - "codeCommune": "27295", - "libelleAcheminement": "GRAND CAMP", - "nomCommune": "GRAND CAMP" + "codePostal": "25000", + "codeCommune": "25056", + "libelleAcheminement": "BESANCON", + "nomCommune": "BESANCON" }, { - "codePostal": "52110", - "codeCommune": "52341", - "libelleAcheminement": "MORANCOURT", - "nomCommune": "MORANCOURT" + "codePostal": "33490", + "codeCommune": "33440", + "libelleAcheminement": "ST MARTIAL", + "nomCommune": "ST MARTIAL" }, { - "codePostal": "65380", - "codeCommune": "65252", - "libelleAcheminement": "LAMARQUE PONTACQ", - "nomCommune": "LAMARQUE PONTACQ" + "codePostal": "33330", + "codeCommune": "33459", + "libelleAcheminement": "ST PEY D ARMENS", + "nomCommune": "ST PEY D ARMENS" }, { - "codePostal": "60130", - "codeCommune": "60468", - "libelleAcheminement": "NOURARD LE FRANC", - "nomCommune": "NOURARD LE FRANC" + "codePostal": "23100", + "codeCommune": "23215", + "libelleAcheminement": "ST MARTIAL LE VIEUX", + "nomCommune": "ST MARTIAL LE VIEUX" }, { - "codePostal": "27700", - "codeCommune": "27307", - "libelleAcheminement": "GUISENIERS", - "nomCommune": "GUISENIERS" + "codePostal": "25640", + "codeCommune": "25065", + "libelleAcheminement": "BLARIANS", + "nomCommune": "BLARIANS" }, { - "codePostal": "52600", - "codeCommune": "52354", - "libelleAcheminement": "NOIDANT CHATENOY", - "nomCommune": "NOIDANT CHATENOY" + "codePostal": "33540", + "codeCommune": "33443", + "libelleAcheminement": "ST MARTIN DE LERM", + "nomCommune": "ST MARTIN DE LERM" }, { - "codePostal": "65300", - "codeCommune": "65258", - "libelleAcheminement": "LANNEMEZAN", - "nomCommune": "LANNEMEZAN" + "codePostal": "33220", + "codeCommune": "33462", + "libelleAcheminement": "ST PHILIPPE DU SEIGNAL", + "nomCommune": "ST PHILIPPE DU SEIGNAL" }, { - "codePostal": "60730", - "codeCommune": "60469", - "libelleAcheminement": "NOVILLERS", - "nomCommune": "NOVILLERS" + "codePostal": "23430", + "codeCommune": "23217", + "libelleAcheminement": "ST MARTIN STE CATHERINE", + "nomCommune": "ST MARTIN STE CATHERINE" }, { - "codePostal": "27150", - "codeCommune": "27310", - "libelleAcheminement": "HACQUEVILLE", - "nomCommune": "HACQUEVILLE" + "codePostal": "25210", + "codeCommune": "25077", + "libelleAcheminement": "LA BOSSE", + "nomCommune": "LA BOSSE" }, { - "codePostal": "52200", - "codeCommune": "52355", - "libelleAcheminement": "NOIDANT LE ROCHEUX", - "nomCommune": "NOIDANT LE ROCHEUX" + "codePostal": "33650", + "codeCommune": "33454", + "libelleAcheminement": "ST MORILLON", + "nomCommune": "ST MORILLON" }, { - "codePostal": "65350", - "codeCommune": "65259", - "libelleAcheminement": "LANSAC", - "nomCommune": "LANSAC" + "codePostal": "33250", + "codeCommune": "33471", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "60220", - "codeCommune": "60476", - "libelleAcheminement": "OMECOURT", - "nomCommune": "OMECOURT" + "codePostal": "23260", + "codeCommune": "23218", + "libelleAcheminement": "ST MAURICE PRES CROCQ", + "nomCommune": "ST MAURICE PRES CROCQ" }, { - "codePostal": "27400", - "codeCommune": "27322", - "libelleAcheminement": "LA HAYE MALHERBE", - "nomCommune": "LA HAYE MALHERBE" + "codePostal": "25360", + "codeCommune": "25078", + "libelleAcheminement": "BOUCLANS", + "nomCommune": "BOUCLANS" }, { - "codePostal": "52200", - "codeCommune": "52366", - "libelleAcheminement": "ORMANCEY", - "nomCommune": "ORMANCEY" + "codePostal": "33820", + "codeCommune": "33456", + "libelleAcheminement": "ST PALAIS", + "nomCommune": "ST PALAIS" }, { - "codePostal": "65350", - "codeCommune": "65265", - "libelleAcheminement": "LASLADES", - "nomCommune": "LASLADES" + "codePostal": "33660", + "codeCommune": "33472", + "libelleAcheminement": "ST SAUVEUR DE PUYNORMAND", + "nomCommune": "ST SAUVEUR DE PUYNORMAND" }, { - "codePostal": "60860", - "codeCommune": "60484", - "libelleAcheminement": "OUDEUIL", - "nomCommune": "OUDEUIL" + "codePostal": "23200", + "codeCommune": "23220", + "libelleAcheminement": "ST MEDARD LA ROCHETTE", + "nomCommune": "ST MEDARD LA ROCHETTE" }, { - "codePostal": "27430", - "codeCommune": "27330", - "libelleAcheminement": "HERQUEVILLE", - "nomCommune": "HERQUEVILLE" + "codePostal": "25250", + "codeCommune": "25083", + "libelleAcheminement": "BOURNOIS", + "nomCommune": "BOURNOIS" }, { - "codePostal": "52400", - "codeCommune": "52377", - "libelleAcheminement": "PARNOY EN BASSIGNY", - "nomCommune": "PARNOY EN BASSIGNY" + "codePostal": "33350", + "codeCommune": "33460", + "libelleAcheminement": "ST PEY DE CASTETS", + "nomCommune": "ST PEY DE CASTETS" }, { - "codePostal": "65140", - "codeCommune": "65269", - "libelleAcheminement": "LESCURRY", - "nomCommune": "LESCURRY" + "codePostal": "33710", + "codeCommune": "33475", + "libelleAcheminement": "ST SEURIN DE BOURG", + "nomCommune": "ST SEURIN DE BOURG" }, { - "codePostal": "60170", - "codeCommune": "60492", - "libelleAcheminement": "PIMPREZ", - "nomCommune": "PIMPREZ" + "codePostal": "23110", + "codeCommune": "23234", + "libelleAcheminement": "ST PRIEST", + "nomCommune": "ST PRIEST" }, { - "codePostal": "27400", - "codeCommune": "27332", - "libelleAcheminement": "HEUDEBOUVILLE", - "nomCommune": "HEUDEBOUVILLE" + "codePostal": "25320", + "codeCommune": "25084", + "libelleAcheminement": "BOUSSIERES", + "nomCommune": "BOUSSIERES" }, { - "codePostal": "52100", - "codeCommune": "52386", - "libelleAcheminement": "PERTHES", - "nomCommune": "PERTHES" + "codePostal": "33350", + "codeCommune": "33461", + "libelleAcheminement": "ST PHILIPPE D AIGUILLE", + "nomCommune": "ST PHILIPPE D AIGUILLE" }, { - "codePostal": "65150", - "codeCommune": "65277", - "libelleAcheminement": "LOMBRES", - "nomCommune": "LOMBRES" + "codePostal": "33420", + "codeCommune": "33488", + "libelleAcheminement": "ST VINCENT DE PERTIGNAS", + "nomCommune": "ST VINCENT DE PERTIGNAS" }, { - "codePostal": "60130", - "codeCommune": "60497", - "libelleAcheminement": "LE PLESSIER SUR BULLES", - "nomCommune": "LE PLESSIER SUR BULLES" + "codePostal": "23480", + "codeCommune": "23246", + "libelleAcheminement": "ST SULPICE LES CHAMPS", + "nomCommune": "ST SULPICE LES CHAMPS" }, { - "codePostal": "27400", - "codeCommune": "27335", - "libelleAcheminement": "HEUDREVILLE SUR EURE", - "nomCommune": "HEUDREVILLE SUR EURE" + "codePostal": "25640", + "codeCommune": "25086", + "libelleAcheminement": "BRAILLANS", + "nomCommune": "BRAILLANS" }, { - "codePostal": "52360", - "codeCommune": "52392", - "libelleAcheminement": "PLESNOY", - "nomCommune": "PLESNOY" + "codePostal": "33490", + "codeCommune": "33463", + "libelleAcheminement": "ST PIERRE D AURILLAC", + "nomCommune": "ST PIERRE D AURILLAC" }, { - "codePostal": "65200", - "codeCommune": "65281", - "libelleAcheminement": "LOUCRUP", - "nomCommune": "LOUCRUP" + "codePostal": "33580", + "codeCommune": "33491", + "libelleAcheminement": "ST VIVIEN DE MONSEGUR", + "nomCommune": "ST VIVIEN DE MONSEGUR" }, { - "codePostal": "60310", - "codeCommune": "60499", - "libelleAcheminement": "PLESSIS DE ROYE", - "nomCommune": "PLESSIS DE ROYE" + "codePostal": "23320", + "codeCommune": "23247", + "libelleAcheminement": "ST VAURY", + "nomCommune": "ST VAURY" }, { - "codePostal": "27700", - "codeCommune": "27337", - "libelleAcheminement": "HEUQUEVILLE", - "nomCommune": "HEUQUEVILLE" + "codePostal": "25440", + "codeCommune": "25090", + "libelleAcheminement": "BRERES", + "nomCommune": "BRERES" }, { - "codePostal": "52160", - "codeCommune": "52393", - "libelleAcheminement": "POINSENOT", - "nomCommune": "POINSENOT" + "codePostal": "33390", + "codeCommune": "33477", + "libelleAcheminement": "ST SEURIN DE CURSAC", + "nomCommune": "ST SEURIN DE CURSAC" }, { - "codePostal": "65510", - "codeCommune": "65282", - "libelleAcheminement": "LOUDENVIELLE", - "nomCommune": "LOUDENVIELLE" + "codePostal": "33340", + "codeCommune": "33493", + "libelleAcheminement": "ST YZANS DE MEDOC", + "nomCommune": "ST YZANS DE MEDOC" }, { - "codePostal": "60430", - "codeCommune": "60504", - "libelleAcheminement": "PONCHON", - "nomCommune": "PONCHON" + "codePostal": "23170", + "codeCommune": "23251", + "libelleAcheminement": "TARDES", + "nomCommune": "TARDES" }, { - "codePostal": "27570", - "codeCommune": "27341", - "libelleAcheminement": "L HOSMES", - "nomCommune": "L HOSMES" + "codePostal": "25380", + "codeCommune": "25095", + "libelleAcheminement": "BRETONVILLERS", + "nomCommune": "BRETONVILLERS" }, { - "codePostal": "52800", - "codeCommune": "52396", - "libelleAcheminement": "POINSON LES NOGENT", - "nomCommune": "POINSON LES NOGENT" + "codePostal": "33113", + "codeCommune": "33484", + "libelleAcheminement": "ST SYMPHORIEN", + "nomCommune": "ST SYMPHORIEN" }, { - "codePostal": "65290", - "codeCommune": "65284", - "libelleAcheminement": "LOUEY", - "nomCommune": "LOUEY" + "codePostal": "33370", + "codeCommune": "33496", + "libelleAcheminement": "SALLEBOEUF", + "nomCommune": "SALLEBOEUF" }, { - "codePostal": "60520", - "codeCommune": "60505", - "libelleAcheminement": "PONTARME", - "nomCommune": "PONTARME" + "codePostal": "23260", + "codeCommune": "23266", + "libelleAcheminement": "LA VILLETELLE", + "nomCommune": "LA VILLETELLE" }, { - "codePostal": "27410", - "codeCommune": "27345", - "libelleAcheminement": "LA HOUSSAYE", - "nomCommune": "LA HOUSSAYE" + "codePostal": "25240", + "codeCommune": "25096", + "libelleAcheminement": "BREY ET MAISON DU BOIS", + "nomCommune": "BREY ET MAISON DU BOIS" }, { - "codePostal": "52190", - "codeCommune": "52405", - "libelleAcheminement": "LE MONTSAUGEONNAIS", - "nomCommune": "LE MONTSAUGEONNAIS" + "codePostal": "33920", + "codeCommune": "33489", + "libelleAcheminement": "ST VIVIEN DE BLAYE", + "nomCommune": "ST VIVIEN DE BLAYE" }, { - "codePostal": "65370", - "codeCommune": "65287", - "libelleAcheminement": "LOURES BAROUSSE", - "nomCommune": "LOURES BAROUSSE" + "codePostal": "33920", + "codeCommune": "33502", + "libelleAcheminement": "SAUGON", + "nomCommune": "SAUGON" }, { - "codePostal": "60400", - "codeCommune": "60506", - "libelleAcheminement": "PONT L EVEQUE", - "nomCommune": "PONT L EVEQUE" + "codePostal": "24590", + "codeCommune": "24012", + "libelleAcheminement": "ARCHIGNAC", + "nomCommune": "ARCHIGNAC" }, { - "codePostal": "27930", - "codeCommune": "27347", - "libelleAcheminement": "HUEST", - "nomCommune": "HUEST" + "codePostal": "25640", + "codeCommune": "25107", + "libelleAcheminement": "CENDREY", + "nomCommune": "CENDREY" }, { - "codePostal": "52220", - "codeCommune": "52411", - "libelleAcheminement": "RIVES DERVOISES", - "nomCommune": "RIVES DERVOISES" + "codePostal": "33770", + "codeCommune": "33498", + "libelleAcheminement": "SALLES", + "nomCommune": "SALLES" }, { - "codePostal": "65190", - "codeCommune": "65290", - "libelleAcheminement": "LUC", - "nomCommune": "LUC" + "codePostal": "33490", + "codeCommune": "33510", + "libelleAcheminement": "SEMENS", + "nomCommune": "SEMENS" }, { - "codePostal": "60700", - "codeCommune": "60508", - "libelleAcheminement": "PONTPOINT", - "nomCommune": "PONTPOINT" + "codePostal": "24290", + "codeCommune": "24018", + "libelleAcheminement": "AURIAC DU PERIGORD", + "nomCommune": "AURIAC DU PERIGORD" }, { - "codePostal": "27290", - "codeCommune": "27349", - "libelleAcheminement": "ILLEVILLE SUR MONTFORT", - "nomCommune": "ILLEVILLE SUR MONTFORT" + "codePostal": "25220", + "codeCommune": "25112", + "libelleAcheminement": "CHALEZEULE", + "nomCommune": "CHALEZEULE" }, { - "codePostal": "52220", - "codeCommune": "52411", - "libelleAcheminement": "RIVES DERVOISES", - "nomCommune": "RIVES DERVOISES" + "codePostal": "33650", + "codeCommune": "33501", + "libelleAcheminement": "SAUCATS", + "nomCommune": "SAUCATS" }, { - "codePostal": "65100", - "codeCommune": "65291", - "libelleAcheminement": "LUGAGNAN", - "nomCommune": "LUGAGNAN" + "codePostal": "33690", + "codeCommune": "33513", + "libelleAcheminement": "SILLAS", + "nomCommune": "SILLAS" }, { - "codePostal": "60700", - "codeCommune": "60509", - "libelleAcheminement": "PONT STE MAXENCE", - "nomCommune": "PONT STE MAXENCE" + "codePostal": "24210", + "codeCommune": "24020", + "libelleAcheminement": "LA BACHELLERIE", + "nomCommune": "LA BACHELLERIE" }, { - "codePostal": "27210", - "codeCommune": "27361", - "libelleAcheminement": "LA LANDE ST LEGER", - "nomCommune": "LA LANDE ST LEGER" + "codePostal": "25170", + "codeCommune": "25115", + "libelleAcheminement": "CHAMPAGNEY", + "nomCommune": "CHAMPAGNEY" }, { - "codePostal": "52140", - "codeCommune": "52416", - "libelleAcheminement": "RANGECOURT", - "nomCommune": "RANGECOURT" + "codePostal": "33210", + "codeCommune": "33504", + "libelleAcheminement": "SAUTERNES", + "nomCommune": "SAUTERNES" }, { - "codePostal": "65320", - "codeCommune": "65292", - "libelleAcheminement": "LUQUET", - "nomCommune": "LUQUET" + "codePostal": "33590", + "codeCommune": "33521", + "libelleAcheminement": "TALAIS", + "nomCommune": "TALAIS" }, { - "codePostal": "60850", - "codeCommune": "60516", - "libelleAcheminement": "PUISEUX EN BRAY", - "nomCommune": "PUISEUX EN BRAY" + "codePostal": "24390", + "codeCommune": "24021", + "libelleAcheminement": "BADEFOLS D ANS", + "nomCommune": "BADEFOLS D ANS" }, { - "codePostal": "27350", - "codeCommune": "27363", - "libelleAcheminement": "LE LANDIN", - "nomCommune": "LE LANDIN" + "codePostal": "25240", + "codeCommune": "25121", + "libelleAcheminement": "CHAPELLE DES BOIS", + "nomCommune": "CHAPELLE DES BOIS" }, { - "codePostal": "52700", - "codeCommune": "52423", - "libelleAcheminement": "RIMAUCOURT", - "nomCommune": "RIMAUCOURT" + "codePostal": "33540", + "codeCommune": "33506", + "libelleAcheminement": "SAUVETERRE DE GUYENNE", + "nomCommune": "SAUVETERRE DE GUYENNE" }, { - "codePostal": "65140", - "codeCommune": "65297", - "libelleAcheminement": "MANSAN", - "nomCommune": "MANSAN" + "codePostal": "33710", + "codeCommune": "33525", + "libelleAcheminement": "TAURIAC", + "nomCommune": "TAURIAC" }, { - "codePostal": "60480", - "codeCommune": "60518", - "libelleAcheminement": "PUITS LA VALLEE", - "nomCommune": "PUITS LA VALLEE" + "codePostal": "24210", + "codeCommune": "24025", + "libelleAcheminement": "BARS", + "nomCommune": "BARS" }, { - "codePostal": "27400", - "codeCommune": "27375", - "libelleAcheminement": "LOUVIERS", - "nomCommune": "LOUVIERS" + "codePostal": "25140", + "codeCommune": "25127", + "libelleAcheminement": "CHARQUEMONT", + "nomCommune": "CHARQUEMONT" }, { - "codePostal": "52260", - "codeCommune": "52432", - "libelleAcheminement": "ROLAMPONT", - "nomCommune": "ROLAMPONT" + "codePostal": "33430", + "codeCommune": "33507", + "libelleAcheminement": "SAUVIAC", + "nomCommune": "SAUVIAC" }, { - "codePostal": "65200", - "codeCommune": "65300", - "libelleAcheminement": "MARSAS", - "nomCommune": "MARSAS" + "codePostal": "33710", + "codeCommune": "33530", + "libelleAcheminement": "TEUILLAC", + "nomCommune": "TEUILLAC" }, { - "codePostal": "60220", - "codeCommune": "60521", - "libelleAcheminement": "QUINCAMPOIX FLEUZY", - "nomCommune": "QUINCAMPOIX FLEUZY" + "codePostal": "24330", + "codeCommune": "24026", + "libelleAcheminement": "BASSILLAC ET AUBEROCHE", + "nomCommune": "BASSILLAC ET AUBEROCHE" }, { - "codePostal": "27210", - "codeCommune": "27384", - "libelleAcheminement": "MANNEVILLE LA RAOULT", - "nomCommune": "MANNEVILLE LA RAOULT" + "codePostal": "25140", + "codeCommune": "25127", + "libelleAcheminement": "CHARQUEMONT", + "nomCommune": "CHARQUEMONT" }, { - "codePostal": "52150", - "codeCommune": "52433", - "libelleAcheminement": "ROMAIN SUR MEUSE", - "nomCommune": "ROMAIN SUR MEUSE" + "codePostal": "33910", + "codeCommune": "33509", + "libelleAcheminement": "SAVIGNAC DE L ISLE", + "nomCommune": "SAVIGNAC DE L ISLE" }, { - "codePostal": "65350", - "codeCommune": "65301", - "libelleAcheminement": "MARSEILLAN", - "nomCommune": "MARSEILLAN" + "codePostal": "33370", + "codeCommune": "33535", + "libelleAcheminement": "TRESSES", + "nomCommune": "TRESSES" }, { - "codePostal": "60130", - "codeCommune": "60522", - "libelleAcheminement": "QUINQUEMPOIX", - "nomCommune": "QUINQUEMPOIX" + "codePostal": "24330", + "codeCommune": "24026", + "libelleAcheminement": "BASSILLAC ET AUBEROCHE", + "nomCommune": "BASSILLAC ET AUBEROCHE" }, { - "codePostal": "27390", - "codeCommune": "27395", - "libelleAcheminement": "MELICOURT", - "nomCommune": "MELICOURT" + "codePostal": "25290", + "codeCommune": "25129", + "libelleAcheminement": "CHASSAGNE ST DENIS", + "nomCommune": "CHASSAGNE ST DENIS" }, { - "codePostal": "52320", - "codeCommune": "52436", - "libelleAcheminement": "ROUECOURT", - "nomCommune": "ROUECOURT" + "codePostal": "33780", + "codeCommune": "33514", + "libelleAcheminement": "SOULAC SUR MER", + "nomCommune": "SOULAC SUR MER" }, { - "codePostal": "65360", - "codeCommune": "65313", - "libelleAcheminement": "MOMERES", - "nomCommune": "MOMERES" + "codePostal": "33930", + "codeCommune": "33540", + "libelleAcheminement": "VENDAYS MONTALIVET", + "nomCommune": "VENDAYS MONTALIVET" }, { - "codePostal": "60290", - "codeCommune": "60524", - "libelleAcheminement": "RANTIGNY", - "nomCommune": "RANTIGNY" + "codePostal": "24440", + "codeCommune": "24028", + "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", + "nomCommune": "BEAUMONTOIS EN PERIGORD" }, { - "codePostal": "27850", - "codeCommune": "27396", - "libelleAcheminement": "MENESQUEVILLE", - "nomCommune": "MENESQUEVILLE" + "codePostal": "25650", + "codeCommune": "25139", + "libelleAcheminement": "LA CHAUX", + "nomCommune": "LA CHAUX" }, { - "codePostal": "52160", - "codeCommune": "52437", - "libelleAcheminement": "ROUELLES", - "nomCommune": "ROUELLES" + "codePostal": "33760", + "codeCommune": "33523", + "libelleAcheminement": "TARGON", + "nomCommune": "TARGON" }, { - "codePostal": "65330", - "codeCommune": "65318", - "libelleAcheminement": "MONTASTRUC", - "nomCommune": "MONTASTRUC" + "codePostal": "33490", + "codeCommune": "33543", + "libelleAcheminement": "VERDELAIS", + "nomCommune": "VERDELAIS" }, { - "codePostal": "60240", - "codeCommune": "60528", - "libelleAcheminement": "REILLY", - "nomCommune": "REILLY" + "codePostal": "24170", + "codeCommune": "24035", + "libelleAcheminement": "PAYS DE BELVES", + "nomCommune": "PAYS DE BELVES" }, { - "codePostal": "27120", - "codeCommune": "27397", - "libelleAcheminement": "MENILLES", - "nomCommune": "MENILLES" + "codePostal": "25440", + "codeCommune": "25149", + "libelleAcheminement": "CHENECEY BUILLON", + "nomCommune": "CHENECEY BUILLON" }, { - "codePostal": "52190", - "codeCommune": "52446", - "libelleAcheminement": "ST BROINGT LES FOSSES", - "nomCommune": "ST BROINGT LES FOSSES" + "codePostal": "33260", + "codeCommune": "33529", + "libelleAcheminement": "LA TESTE DE BUCH", + "nomCommune": "LA TESTE DE BUCH" }, { - "codePostal": "65150", - "codeCommune": "65319", - "libelleAcheminement": "MONTEGUT", - "nomCommune": "MONTEGUT" + "codePostal": "33180", + "codeCommune": "33545", + "libelleAcheminement": "VERTHEUIL", + "nomCommune": "VERTHEUIL" }, { - "codePostal": "60190", - "codeCommune": "60531", - "libelleAcheminement": "REMY", - "nomCommune": "REMY" + "codePostal": "24100", + "codeCommune": "24037", + "libelleAcheminement": "BERGERAC", + "nomCommune": "BERGERAC" }, { - "codePostal": "27930", - "codeCommune": "27401", - "libelleAcheminement": "LE MESNIL FUGUET", - "nomCommune": "LE MESNIL FUGUET" + "codePostal": "25620", + "codeCommune": "25152", + "libelleAcheminement": "LA CHEVILLOTTE", + "nomCommune": "LA CHEVILLOTTE" }, { - "codePostal": "52200", - "codeCommune": "52447", - "libelleAcheminement": "ST CIERGUES", - "nomCommune": "ST CIERGUES" + "codePostal": "33141", + "codeCommune": "33548", + "libelleAcheminement": "VILLEGOUGE", + "nomCommune": "VILLEGOUGE" }, { - "codePostal": "65350", - "codeCommune": "65326", - "libelleAcheminement": "MUN", - "nomCommune": "MUN" + "codePostal": "33140", + "codeCommune": "33550", + "libelleAcheminement": "VILLENAVE D ORNON", + "nomCommune": "VILLENAVE D ORNON" }, { - "codePostal": "60490", - "codeCommune": "60533", - "libelleAcheminement": "RESSONS SUR MATZ", - "nomCommune": "RESSONS SUR MATZ" + "codePostal": "24550", + "codeCommune": "24039", + "libelleAcheminement": "BESSE", + "nomCommune": "BESSE" }, { - "codePostal": "27320", - "codeCommune": "27411", - "libelleAcheminement": "MOISVILLE", - "nomCommune": "MOISVILLE" + "codePostal": "25870", + "codeCommune": "25153", + "libelleAcheminement": "CHEVROZ", + "nomCommune": "CHEVROZ" }, { - "codePostal": "52300", - "codeCommune": "52456", - "libelleAcheminement": "ST URBAIN MACONCOURT", - "nomCommune": "ST URBAIN MACONCOURT" + "codePostal": "33720", + "codeCommune": "33552", + "libelleAcheminement": "VIRELADE", + "nomCommune": "VIRELADE" }, { - "codePostal": "65100", - "codeCommune": "65334", - "libelleAcheminement": "OMEX", - "nomCommune": "OMEX" + "codePostal": "33370", + "codeCommune": "33554", + "libelleAcheminement": "YVRAC", + "nomCommune": "YVRAC" }, { - "codePostal": "60170", - "codeCommune": "60537", - "libelleAcheminement": "RIBECOURT DRESLINCOURT", - "nomCommune": "RIBECOURT DRESLINCOURT" + "codePostal": "24390", + "codeCommune": "24046", + "libelleAcheminement": "BOISSEUILH", + "nomCommune": "BOISSEUILH" }, { - "codePostal": "27150", - "codeCommune": "27417", - "libelleAcheminement": "MORGNY", - "nomCommune": "MORGNY" + "codePostal": "25420", + "codeCommune": "25170", + "libelleAcheminement": "COURCELLES LES MONTBELIARD", + "nomCommune": "COURCELLES LES MONTBELIARD" }, { - "codePostal": "52400", - "codeCommune": "52470", - "libelleAcheminement": "SERQUEUX", - "nomCommune": "SERQUEUX" + "codePostal": "34800", + "codeCommune": "34013", + "libelleAcheminement": "ASPIRAN", + "nomCommune": "ASPIRAN" }, { - "codePostal": "65800", - "codeCommune": "65340", - "libelleAcheminement": "ORLEIX", - "nomCommune": "ORLEIX" + "codePostal": "34290", + "codeCommune": "34001", + "libelleAcheminement": "ABEILHAN", + "nomCommune": "ABEILHAN" }, { - "codePostal": "60800", - "codeCommune": "60543", - "libelleAcheminement": "ROCQUEMONT", - "nomCommune": "ROCQUEMONT" + "codePostal": "24590", + "codeCommune": "24050", + "libelleAcheminement": "BORREZE", + "nomCommune": "BORREZE" }, { - "codePostal": "27420", - "codeCommune": "27420", - "libelleAcheminement": "MOUFLAINES", - "nomCommune": "MOUFLAINES" + "codePostal": "25240", + "codeCommune": "25179", + "libelleAcheminement": "LE CROUZET", + "nomCommune": "LE CROUZET" }, { - "codePostal": "52220", - "codeCommune": "52479", - "libelleAcheminement": "SOMMEVOIRE", - "nomCommune": "SOMMEVOIRE" + "codePostal": "34530", + "codeCommune": "34017", + "libelleAcheminement": "AUMES", + "nomCommune": "AUMES" }, { - "codePostal": "65100", - "codeCommune": "65345", - "libelleAcheminement": "OSSUN EZ ANGLES", - "nomCommune": "OSSUN EZ ANGLES" + "codePostal": "34230", + "codeCommune": "34002", + "libelleAcheminement": "ADISSAN", + "nomCommune": "ADISSAN" }, { - "codePostal": "60660", - "codeCommune": "60551", - "libelleAcheminement": "ROUSSELOY", - "nomCommune": "ROUSSELOY" + "codePostal": "24560", + "codeCommune": "24054", + "libelleAcheminement": "BOUNIAGUES", + "nomCommune": "BOUNIAGUES" }, { - "codePostal": "27800", - "codeCommune": "27433", - "libelleAcheminement": "NEUVILLE SUR AUTHOU", - "nomCommune": "NEUVILLE SUR AUTHOU" + "codePostal": "25680", + "codeCommune": "25184", + "libelleAcheminement": "CUSE ET ADRISANS", + "nomCommune": "CUSE ET ADRISANS" }, { - "codePostal": "52150", - "codeCommune": "52482", - "libelleAcheminement": "SOULAUCOURT SUR MOUZON", - "nomCommune": "SOULAUCOURT SUR MOUZON" + "codePostal": "34360", + "codeCommune": "34021", + "libelleAcheminement": "BABEAU BOULDOUX", + "nomCommune": "BABEAU BOULDOUX" }, { - "codePostal": "65490", - "codeCommune": "65350", - "libelleAcheminement": "OURSBELILLE", - "nomCommune": "OURSBELILLE" + "codePostal": "34210", + "codeCommune": "34004", + "libelleAcheminement": "AGEL", + "nomCommune": "AGEL" }, { - "codePostal": "60190", - "codeCommune": "60553", - "libelleAcheminement": "ROUVILLERS", - "nomCommune": "ROUVILLERS" + "codePostal": "24300", + "codeCommune": "24056", + "libelleAcheminement": "LE BOURDEIX", + "nomCommune": "LE BOURDEIX" }, { - "codePostal": "27150", - "codeCommune": "27437", - "libelleAcheminement": "NOJEON EN VEXIN", - "nomCommune": "NOJEON EN VEXIN" + "codePostal": "25150", + "codeCommune": "25187", + "libelleAcheminement": "DAMBELIN", + "nomCommune": "DAMBELIN" }, { - "codePostal": "52210", - "codeCommune": "52486", - "libelleAcheminement": "TERNAT", - "nomCommune": "TERNAT" + "codePostal": "34210", + "codeCommune": "34026", + "libelleAcheminement": "BEAUFORT", + "nomCommune": "BEAUFORT" }, { - "codePostal": "65100", - "codeCommune": "65355", - "libelleAcheminement": "PAREAC", - "nomCommune": "PAREAC" + "codePostal": "34190", + "codeCommune": "34005", + "libelleAcheminement": "AGONES", + "nomCommune": "AGONES" }, { - "codePostal": "60120", - "codeCommune": "60555", - "libelleAcheminement": "ROUVROY LES MERLES", - "nomCommune": "ROUVROY LES MERLES" + "codePostal": "24600", + "codeCommune": "24058", + "libelleAcheminement": "BOURG DU BOST", + "nomCommune": "BOURG DU BOST" }, { - "codePostal": "27410", - "codeCommune": "27444", - "libelleAcheminement": "LE NOYER EN OUCHE", - "nomCommune": "LE NOYER EN OUCHE" + "codePostal": "25490", + "codeCommune": "25190", + "libelleAcheminement": "DAMPIERRE LES BOIS", + "nomCommune": "DAMPIERRE LES BOIS" }, { - "codePostal": "52220", - "codeCommune": "52487", - "libelleAcheminement": "THILLEUX", - "nomCommune": "THILLEUX" + "codePostal": "34230", + "codeCommune": "34029", + "libelleAcheminement": "BELARGA", + "nomCommune": "BELARGA" }, { - "codePostal": "65190", - "codeCommune": "65357", - "libelleAcheminement": "PEYRAUBE", - "nomCommune": "PEYRAUBE" + "codePostal": "34150", + "codeCommune": "34010", + "libelleAcheminement": "ANIANE", + "nomCommune": "ANIANE" }, { - "codePostal": "60510", - "codeCommune": "60559", - "libelleAcheminement": "LA RUE ST PIERRE", - "nomCommune": "LA RUE ST PIERRE" + "codePostal": "24250", + "codeCommune": "24063", + "libelleAcheminement": "BOUZIC", + "nomCommune": "BOUZIC" }, { - "codePostal": "27230", - "codeCommune": "27455", - "libelleAcheminement": "PIENCOURT", - "nomCommune": "PIENCOURT" + "codePostal": "25560", + "codeCommune": "25202", + "libelleAcheminement": "DOMPIERRE LES TILLEULS", + "nomCommune": "DOMPIERRE LES TILLEULS" }, { - "codePostal": "52230", - "codeCommune": "52491", - "libelleAcheminement": "THONNANCE LES MOULINS", - "nomCommune": "THONNANCE LES MOULINS" + "codePostal": "34500", + "codeCommune": "34032", + "libelleAcheminement": "BEZIERS", + "nomCommune": "BEZIERS" }, { - "codePostal": "65100", - "codeCommune": "65366", - "libelleAcheminement": "POUEYFERRE", - "nomCommune": "POUEYFERRE" + "codePostal": "34150", + "codeCommune": "34011", + "libelleAcheminement": "ARBORAS", + "nomCommune": "ARBORAS" }, { - "codePostal": "60117", - "codeCommune": "60561", - "libelleAcheminement": "RUSSY BEMONT", - "nomCommune": "RUSSY BEMONT" + "codePostal": "24260", + "codeCommune": "24067", + "libelleAcheminement": "LE BUGUE", + "nomCommune": "LE BUGUE" }, { - "codePostal": "27130", - "codeCommune": "27457", - "libelleAcheminement": "PISEUX", - "nomCommune": "PISEUX" + "codePostal": "25550", + "codeCommune": "25207", + "libelleAcheminement": "DUNG", + "nomCommune": "DUNG" }, { - "codePostal": "52600", - "codeCommune": "52492", - "libelleAcheminement": "TORCENAY", - "nomCommune": "TORCENAY" + "codePostal": "34160", + "codeCommune": "34033", + "libelleAcheminement": "BOISSERON", + "nomCommune": "BOISSERON" }, { - "codePostal": "65590", - "codeCommune": "65379", - "libelleAcheminement": "RIS", - "nomCommune": "RIS" + "codePostal": "34820", + "codeCommune": "34014", + "libelleAcheminement": "ASSAS", + "nomCommune": "ASSAS" }, { - "codePostal": "60790", - "codeCommune": "60570", - "libelleAcheminement": "ST CREPIN IBOUVILLERS", - "nomCommune": "ST CREPIN IBOUVILLERS" + "codePostal": "24480", + "codeCommune": "24068", + "libelleAcheminement": "LE BUISSON DE CADOUIN", + "nomCommune": "LE BUISSON DE CADOUIN" }, { - "codePostal": "27170", - "codeCommune": "27466", - "libelleAcheminement": "LE PLESSIS STE OPPORTUNE", - "nomCommune": "LE PLESSIS STE OPPORTUNE" + "codePostal": "25580", + "codeCommune": "25211", + "libelleAcheminement": "ECHEVANNES", + "nomCommune": "ECHEVANNES" }, { - "codePostal": "52110", - "codeCommune": "52495", - "libelleAcheminement": "TREMILLY", - "nomCommune": "TREMILLY" + "codePostal": "34150", + "codeCommune": "34035", + "libelleAcheminement": "LA BOISSIERE", + "nomCommune": "LA BOISSIERE" }, { - "codePostal": "65700", - "codeCommune": "65387", - "libelleAcheminement": "ST LANNE", - "nomCommune": "ST LANNE" + "codePostal": "34230", + "codeCommune": "34016", + "libelleAcheminement": "AUMELAS", + "nomCommune": "AUMELAS" }, { - "codePostal": "60155", - "codeCommune": "60583", - "libelleAcheminement": "ST LEGER EN BRAY", - "nomCommune": "ST LEGER EN BRAY" + "codePostal": "24140", + "codeCommune": "24077", + "libelleAcheminement": "CAMPSEGRET", + "nomCommune": "CAMPSEGRET" }, { - "codePostal": "27500", - "codeCommune": "27467", - "libelleAcheminement": "PONT AUDEMER", - "nomCommune": "PONT AUDEMER" + "codePostal": "25640", + "codeCommune": "25215", + "libelleAcheminement": "L ECOUVOTTE", + "nomCommune": "L ECOUVOTTE" }, { - "codePostal": "52130", - "codeCommune": "52497", - "libelleAcheminement": "TROISFONTAINES LA VILLE", - "nomCommune": "TROISFONTAINES LA VILLE" + "codePostal": "34310", + "codeCommune": "34052", + "libelleAcheminement": "CAPESTANG", + "nomCommune": "CAPESTANG" }, { - "codePostal": "65150", - "codeCommune": "65389", - "libelleAcheminement": "ST LAURENT DE NESTE", - "nomCommune": "ST LAURENT DE NESTE" + "codePostal": "34260", + "codeCommune": "34019", + "libelleAcheminement": "AVENE", + "nomCommune": "AVENE" }, { - "codePostal": "60700", - "codeCommune": "60587", - "libelleAcheminement": "ST MARTIN LONGUEAU", - "nomCommune": "ST MARTIN LONGUEAU" + "codePostal": "24540", + "codeCommune": "24080", + "libelleAcheminement": "CAPDROT", + "nomCommune": "CAPDROT" }, { - "codePostal": "27500", - "codeCommune": "27467", - "libelleAcheminement": "PONT AUDEMER", - "nomCommune": "PONT AUDEMER" + "codePostal": "25530", + "codeCommune": "25218", + "libelleAcheminement": "EPENOUSE", + "nomCommune": "EPENOUSE" }, { - "codePostal": "52400", - "codeCommune": "52504", - "libelleAcheminement": "VARENNES SUR AMANCE", - "nomCommune": "VARENNES SUR AMANCE" + "codePostal": "34490", + "codeCommune": "34061", + "libelleAcheminement": "CAUSSES ET VEYRAN", + "nomCommune": "CAUSSES ET VEYRAN" }, { - "codePostal": "65400", - "codeCommune": "65393", - "libelleAcheminement": "ST PASTOUS", - "nomCommune": "ST PASTOUS" + "codePostal": "34290", + "codeCommune": "34025", + "libelleAcheminement": "BASSAN", + "nomCommune": "BASSAN" }, { - "codePostal": "60130", - "codeCommune": "60595", - "libelleAcheminement": "ST REMY EN L EAU", - "nomCommune": "ST REMY EN L EAU" + "codePostal": "24370", + "codeCommune": "24081", + "libelleAcheminement": "CARLUX", + "nomCommune": "CARLUX" }, { - "codePostal": "27290", - "codeCommune": "27468", - "libelleAcheminement": "PONT AUTHOU", - "nomCommune": "PONT AUTHOU" + "codePostal": "25110", + "codeCommune": "25221", + "libelleAcheminement": "ESNANS", + "nomCommune": "ESNANS" }, { - "codePostal": "52150", - "codeCommune": "52505", - "libelleAcheminement": "VAUDRECOURT", - "nomCommune": "VAUDRECOURT" + "codePostal": "34360", + "codeCommune": "34070", + "libelleAcheminement": "CEBAZAN", + "nomCommune": "CEBAZAN" }, { - "codePostal": "65140", - "codeCommune": "65397", - "libelleAcheminement": "ST SEVER DE RUSTAN", - "nomCommune": "ST SEVER DE RUSTAN" + "codePostal": "34360", + "codeCommune": "34030", + "libelleAcheminement": "BERLOU", + "nomCommune": "BERLOU" }, { - "codePostal": "60320", - "codeCommune": "60597", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "24610", + "codeCommune": "24083", + "libelleAcheminement": "CARSAC DE GURSON", + "nomCommune": "CARSAC DE GURSON" }, { - "codePostal": "27360", - "codeCommune": "27470", - "libelleAcheminement": "PONT ST PIERRE", - "nomCommune": "PONT ST PIERRE" + "codePostal": "25580", + "codeCommune": "25222", + "libelleAcheminement": "ETALANS", + "nomCommune": "ETALANS" }, { - "codePostal": "52300", - "codeCommune": "52511", - "libelleAcheminement": "VAUX SUR ST URBAIN", - "nomCommune": "VAUX SUR ST URBAIN" + "codePostal": "34830", + "codeCommune": "34077", + "libelleAcheminement": "CLAPIERS", + "nomCommune": "CLAPIERS" }, { - "codePostal": "65500", - "codeCommune": "65403", - "libelleAcheminement": "SANOUS", - "nomCommune": "SANOUS" + "codePostal": "34550", + "codeCommune": "34031", + "libelleAcheminement": "BESSAN", + "nomCommune": "BESSAN" }, { - "codePostal": "60210", - "codeCommune": "60605", - "libelleAcheminement": "SARNOIS", - "nomCommune": "SARNOIS" + "codePostal": "24220", + "codeCommune": "24087", + "libelleAcheminement": "CASTELS ET BEZENAC", + "nomCommune": "CASTELS ET BEZENAC" }, { - "codePostal": "27190", - "codeCommune": "27472", - "libelleAcheminement": "PORTES", - "nomCommune": "PORTES" + "codePostal": "25460", + "codeCommune": "25228", + "libelleAcheminement": "ETUPES", + "nomCommune": "ETUPES" }, { - "codePostal": "52300", - "codeCommune": "52512", - "libelleAcheminement": "VECQUEVILLE", - "nomCommune": "VECQUEVILLE" + "codePostal": "34270", + "codeCommune": "34078", + "libelleAcheminement": "CLARET", + "nomCommune": "CLARET" }, { - "codePostal": "65410", - "codeCommune": "65408", - "libelleAcheminement": "SARRANCOLIN", - "nomCommune": "SARRANCOLIN" + "codePostal": "34760", + "codeCommune": "34037", + "libelleAcheminement": "BOUJAN SUR LIBRON", + "nomCommune": "BOUJAN SUR LIBRON" }, { - "codePostal": "60650", - "codeCommune": "60611", - "libelleAcheminement": "SENANTES", - "nomCommune": "SENANTES" + "codePostal": "24150", + "codeCommune": "24088", + "libelleAcheminement": "CAUSE DE CLERANS", + "nomCommune": "CAUSE DE CLERANS" }, { - "codePostal": "27560", - "codeCommune": "27475", - "libelleAcheminement": "LA POTERIE MATHIEU", - "nomCommune": "LA POTERIE MATHIEU" + "codePostal": "25330", + "codeCommune": "25241", + "libelleAcheminement": "FLAGEY", + "nomCommune": "FLAGEY" }, { - "codePostal": "52500", - "codeCommune": "52513", - "libelleAcheminement": "VELLES", - "nomCommune": "VELLES" + "codePostal": "34360", + "codeCommune": "34100", + "libelleAcheminement": "FERRIERES POUSSAROU", + "nomCommune": "FERRIERES POUSSAROU" }, { - "codePostal": "65140", - "codeCommune": "65409", - "libelleAcheminement": "SARRIAC BIGORRE", - "nomCommune": "SARRIAC BIGORRE" + "codePostal": "34650", + "codeCommune": "34040", + "libelleAcheminement": "BRENAS", + "nomCommune": "BRENAS" }, { - "codePostal": "60240", - "codeCommune": "60614", - "libelleAcheminement": "SERANS", - "nomCommune": "SERANS" + "codePostal": "24190", + "codeCommune": "24104", + "libelleAcheminement": "CHANTERAC", + "nomCommune": "CHANTERAC" }, { - "codePostal": "27150", - "codeCommune": "27480", - "libelleAcheminement": "PUCHAY", - "nomCommune": "PUCHAY" + "codePostal": "25660", + "codeCommune": "25245", + "libelleAcheminement": "FONTAIN", + "nomCommune": "FONTAIN" }, { - "codePostal": "52800", - "codeCommune": "52518", - "libelleAcheminement": "VESAIGNES SUR MARNE", - "nomCommune": "VESAIGNES SUR MARNE" + "codePostal": "34510", + "codeCommune": "34101", + "libelleAcheminement": "FLORENSAC", + "nomCommune": "FLORENSAC" }, { - "codePostal": "65600", - "codeCommune": "65417", - "libelleAcheminement": "SEMEAC", - "nomCommune": "SEMEAC" + "codePostal": "34190", + "codeCommune": "34042", + "libelleAcheminement": "BRISSAC", + "nomCommune": "BRISSAC" }, { - "codePostal": "60120", - "codeCommune": "60615", - "libelleAcheminement": "SEREVILLERS", - "nomCommune": "SEREVILLERS" + "codePostal": "24350", + "codeCommune": "24108", + "libelleAcheminement": "LA CHAPELLE GONAGUET", + "nomCommune": "LA CHAPELLE GONAGUET" }, { - "codePostal": "27400", - "codeCommune": "27483", - "libelleAcheminement": "QUATREMARE", - "nomCommune": "QUATREMARE" + "codePostal": "25140", + "codeCommune": "25256", + "libelleAcheminement": "FRAMBOUHANS", + "nomCommune": "FRAMBOUHANS" }, { - "codePostal": "52160", - "codeCommune": "52526", - "libelleAcheminement": "VILLARS SANTENOGE", - "nomCommune": "VILLARS SANTENOGE" + "codePostal": "34320", + "codeCommune": "34104", + "libelleAcheminement": "FOS", + "nomCommune": "FOS" }, { - "codePostal": "65140", - "codeCommune": "65418", - "libelleAcheminement": "SENAC", - "nomCommune": "SENAC" + "codePostal": "34800", + "codeCommune": "34045", + "libelleAcheminement": "CABRIERES", + "nomCommune": "CABRIERES" }, { - "codePostal": "60590", - "codeCommune": "60616", - "libelleAcheminement": "SERIFONTAINE", - "nomCommune": "SERIFONTAINE" + "codePostal": "24120", + "codeCommune": "24117", + "libelleAcheminement": "LES COTEAUX PERIGOURDINS", + "nomCommune": "LES COTEAUX PERIGOURDINS" }, { - "codePostal": "27110", - "codeCommune": "27486", - "libelleAcheminement": "QUITTEBEUF", - "nomCommune": "QUITTEBEUF" + "codePostal": "25770", + "codeCommune": "25258", + "libelleAcheminement": "FRANOIS", + "nomCommune": "FRANOIS" }, { - "codePostal": "52160", - "codeCommune": "52542", - "libelleAcheminement": "VIVEY", - "nomCommune": "VIVEY" + "codePostal": "34110", + "codeCommune": "34108", + "libelleAcheminement": "FRONTIGNAN", + "nomCommune": "FRONTIGNAN" }, { - "codePostal": "65330", - "codeCommune": "65419", - "libelleAcheminement": "SENTOUS", - "nomCommune": "SENTOUS" + "codePostal": "34610", + "codeCommune": "34055", + "libelleAcheminement": "CASTANET LE HAUT", + "nomCommune": "CASTANET LE HAUT" }, { - "codePostal": "60430", - "codeCommune": "60620", - "libelleAcheminement": "SILLY TILLARD", - "nomCommune": "SILLY TILLARD" + "codePostal": "24140", + "codeCommune": "24123", + "libelleAcheminement": "CLERMONT DE BEAUREGARD", + "nomCommune": "CLERMONT DE BEAUREGARD" }, { - "codePostal": "27220", - "codeCommune": "27507", - "libelleAcheminement": "ST ANDRE DE L EURE", - "nomCommune": "ST ANDRE DE L EURE" + "codePostal": "25250", + "codeCommune": "25266", + "libelleAcheminement": "GENEY", + "nomCommune": "GENEY" }, { - "codePostal": "52500", - "codeCommune": "52546", - "libelleAcheminement": "VONCOURT", - "nomCommune": "VONCOURT" + "codePostal": "34790", + "codeCommune": "34116", + "libelleAcheminement": "GRABELS", + "nomCommune": "GRABELS" }, { - "codePostal": "65400", - "codeCommune": "65420", - "libelleAcheminement": "SERE EN LAVEDAN", - "nomCommune": "SERE EN LAVEDAN" + "codePostal": "34160", + "codeCommune": "34058", + "libelleAcheminement": "CASTRIES", + "nomCommune": "CASTRIES" }, { - "codePostal": "60210", - "codeCommune": "60622", - "libelleAcheminement": "SOMMEREUX", - "nomCommune": "SOMMEREUX" + "codePostal": "24570", + "codeCommune": "24130", + "libelleAcheminement": "CONDAT SUR VEZERE", + "nomCommune": "CONDAT SUR VEZERE" }, { - "codePostal": "27110", - "codeCommune": "27511", - "libelleAcheminement": "ST AUBIN D ECROSVILLE", - "nomCommune": "ST AUBIN D ECROSVILLE" + "codePostal": "25640", + "codeCommune": "25269", + "libelleAcheminement": "GERMONDANS", + "nomCommune": "GERMONDANS" }, { - "codePostal": "52310", - "codeCommune": "52548", - "libelleAcheminement": "VRAINCOURT", - "nomCommune": "VRAINCOURT" + "codePostal": "34260", + "codeCommune": "34117", + "libelleAcheminement": "GRAISSESSAC", + "nomCommune": "GRAISSESSAC" }, { - "codePostal": "65190", - "codeCommune": "65426", - "libelleAcheminement": "SINZOS", - "nomCommune": "SINZOS" + "codePostal": "34720", + "codeCommune": "34063", + "libelleAcheminement": "CAUX", + "nomCommune": "CAUX" }, { - "codePostal": "60380", - "codeCommune": "60624", - "libelleAcheminement": "SULLY", - "nomCommune": "SULLY" + "codePostal": "24450", + "codeCommune": "24133", + "libelleAcheminement": "LA COQUILLE", + "nomCommune": "LA COQUILLE" }, { - "codePostal": "27300", - "codeCommune": "27516", - "libelleAcheminement": "TREIS SANTS EN OUCHE", - "nomCommune": "TREIS SANTS EN OUCHE" + "codePostal": "25190", + "codeCommune": "25275", + "libelleAcheminement": "GLERE", + "nomCommune": "GLERE" }, { - "codePostal": "53230", - "codeCommune": "53011", - "libelleAcheminement": "ASTILLE", - "nomCommune": "ASTILLE" + "codePostal": "34650", + "codeCommune": "34121", + "libelleAcheminement": "JONCELS", + "nomCommune": "JONCELS" }, { - "codePostal": "65700", - "codeCommune": "65432", - "libelleAcheminement": "SOUBLECAUSE", - "nomCommune": "SOUBLECAUSE" + "codePostal": "34520", + "codeCommune": "34064", + "libelleAcheminement": "LE CAYLAR", + "nomCommune": "LE CAYLAR" }, { - "codePostal": "60510", - "codeCommune": "60628", - "libelleAcheminement": "THERDONNE", - "nomCommune": "THERDONNE" + "codePostal": "24800", + "codeCommune": "24134", + "libelleAcheminement": "CORGNAC SUR L ISLE", + "nomCommune": "CORGNAC SUR L ISLE" }, { - "codePostal": "27680", - "codeCommune": "27518", - "libelleAcheminement": "ST AUBIN SUR QUILLEBEUF", - "nomCommune": "ST AUBIN SUR QUILLEBEUF" + "codePostal": "25680", + "codeCommune": "25279", + "libelleAcheminement": "GOUHELANS", + "nomCommune": "GOUHELANS" }, { - "codePostal": "53160", - "codeCommune": "53016", - "libelleAcheminement": "BAIS", - "nomCommune": "BAIS" + "codePostal": "34150", + "codeCommune": "34125", + "libelleAcheminement": "LAGAMAS", + "nomCommune": "LAGAMAS" }, { - "codePostal": "65260", - "codeCommune": "65435", - "libelleAcheminement": "SOULOM", - "nomCommune": "SOULOM" + "codePostal": "34270", + "codeCommune": "34066", + "libelleAcheminement": "CAZEVIEILLE", + "nomCommune": "CAZEVIEILLE" }, { - "codePostal": "60150", - "codeCommune": "60636", - "libelleAcheminement": "THOUROTTE", - "nomCommune": "THOUROTTE" + "codePostal": "24390", + "codeCommune": "24136", + "libelleAcheminement": "COUBJOURS", + "nomCommune": "COUBJOURS" }, { - "codePostal": "27450", - "codeCommune": "27522", - "libelleAcheminement": "ST CHRISTOPHE SUR CONDE", - "nomCommune": "ST CHRISTOPHE SUR CONDE" + "codePostal": "25520", + "codeCommune": "25282", + "libelleAcheminement": "GOUX LES USIERS", + "nomCommune": "GOUX LES USIERS" }, { - "codePostal": "53470", - "codeCommune": "53023", - "libelleAcheminement": "LA BAZOUGE DES ALLEUX", - "nomCommune": "LA BAZOUGE DES ALLEUX" + "codePostal": "34700", + "codeCommune": "34133", + "libelleAcheminement": "LAVALETTE", + "nomCommune": "LAVALETTE" }, { - "codePostal": "65320", - "codeCommune": "65439", - "libelleAcheminement": "TARASTEIX", - "nomCommune": "TARASTEIX" + "codePostal": "34190", + "codeCommune": "34067", + "libelleAcheminement": "CAZILHAC", + "nomCommune": "CAZILHAC" }, { - "codePostal": "60890", - "codeCommune": "60637", - "libelleAcheminement": "THURY EN VALOIS", - "nomCommune": "THURY EN VALOIS" + "codePostal": "24420", + "codeCommune": "24137", + "libelleAcheminement": "COULAURES", + "nomCommune": "COULAURES" }, { - "codePostal": "27800", - "codeCommune": "27527", - "libelleAcheminement": "ST CYR DE SALERNE", - "nomCommune": "ST CYR DE SALERNE" + "codePostal": "25160", + "codeCommune": "25295", + "libelleAcheminement": "LES GRANGETTES", + "nomCommune": "LES GRANGETTES" }, { - "codePostal": "53320", - "codeCommune": "53026", - "libelleAcheminement": "BEAULIEU SUR OUDON", - "nomCommune": "BEAULIEU SUR OUDON" + "codePostal": "34210", + "codeCommune": "34141", + "libelleAcheminement": "LA LIVINIERE", + "nomCommune": "LA LIVINIERE" }, { - "codePostal": "65330", - "codeCommune": "65449", - "libelleAcheminement": "TOURNOUS DEVANT", - "nomCommune": "TOURNOUS DEVANT" + "codePostal": "34120", + "codeCommune": "34068", + "libelleAcheminement": "CAZOULS D HERAULT", + "nomCommune": "CAZOULS D HERAULT" }, { - "codePostal": "60170", - "codeCommune": "60641", - "libelleAcheminement": "TRACY LE MONT", - "nomCommune": "TRACY LE MONT" + "codePostal": "24320", + "codeCommune": "24141", + "libelleAcheminement": "COUTURES", + "nomCommune": "COUTURES" }, { - "codePostal": "27370", - "codeCommune": "27529", - "libelleAcheminement": "ST CYR LA CAMPAGNE", - "nomCommune": "ST CYR LA CAMPAGNE" + "codePostal": "25110", + "codeCommune": "25299", + "libelleAcheminement": "GUILLON LES BAINS", + "nomCommune": "GUILLON LES BAINS" }, { - "codePostal": "53290", - "codeCommune": "53029", - "libelleAcheminement": "BIERNE LES VILLAGES", - "nomCommune": "BIERNE LES VILLAGES" + "codePostal": "34650", + "codeCommune": "34144", + "libelleAcheminement": "LUNAS", + "nomCommune": "LUNAS" }, { - "codePostal": "65200", - "codeCommune": "65451", - "libelleAcheminement": "TREBONS", - "nomCommune": "TREBONS" + "codePostal": "34370", + "codeCommune": "34069", + "libelleAcheminement": "CAZOULS LES BEZIERS", + "nomCommune": "CAZOULS LES BEZIERS" }, { - "codePostal": "60590", - "codeCommune": "60644", - "libelleAcheminement": "TRIE CHATEAU", - "nomCommune": "TRIE CHATEAU" + "codePostal": "24150", + "codeCommune": "24143", + "libelleAcheminement": "COUZE ET ST FRONT", + "nomCommune": "COUZE ET ST FRONT" }, { - "codePostal": "27190", - "codeCommune": "27535", - "libelleAcheminement": "ST ELIER", - "nomCommune": "ST ELIER" + "codePostal": "25580", + "codeCommune": "25300", + "libelleAcheminement": "GUYANS DURNES", + "nomCommune": "GUYANS DURNES" }, { - "codePostal": "53170", - "codeCommune": "53030", - "libelleAcheminement": "LE BIGNON DU MAINE", - "nomCommune": "LE BIGNON DU MAINE" + "codePostal": "34370", + "codeCommune": "34148", + "libelleAcheminement": "MARAUSSAN", + "nomCommune": "MARAUSSAN" }, { - "codePostal": "65370", - "codeCommune": "65453", - "libelleAcheminement": "TROUBAT", - "nomCommune": "TROUBAT" + "codePostal": "34420", + "codeCommune": "34073", + "libelleAcheminement": "CERS", + "nomCommune": "CERS" }, { - "codePostal": "60112", - "codeCommune": "60646", - "libelleAcheminement": "TROISSEREUX", - "nomCommune": "TROISSEREUX" + "codePostal": "24640", + "codeCommune": "24147", + "libelleAcheminement": "CUBJAC AUVEZERE VAL D ANS", + "nomCommune": "CUBJAC AUVEZERE VAL D ANS" }, { - "codePostal": "27560", - "codeCommune": "27541", - "libelleAcheminement": "LE MESNIL ST JEAN", - "nomCommune": "LE MESNIL ST JEAN" + "codePostal": "25390", + "codeCommune": "25301", + "libelleAcheminement": "GUYANS VENNES", + "nomCommune": "GUYANS VENNES" }, { - "codePostal": "53150", - "codeCommune": "53043", - "libelleAcheminement": "BREE", - "nomCommune": "BREE" + "codePostal": "34590", + "codeCommune": "34151", + "libelleAcheminement": "MARSILLARGUES", + "nomCommune": "MARSILLARGUES" }, { - "codePostal": "65150", - "codeCommune": "65455", - "libelleAcheminement": "TUZAGUET", - "nomCommune": "TUZAGUET" + "codePostal": "34370", + "codeCommune": "34089", + "libelleAcheminement": "CREISSAN", + "nomCommune": "CREISSAN" }, { - "codePostal": "60350", - "codeCommune": "60647", - "libelleAcheminement": "TROSLY BREUIL", - "nomCommune": "TROSLY BREUIL" + "codePostal": "24330", + "codeCommune": "24156", + "libelleAcheminement": "LA DOUZE", + "nomCommune": "LA DOUZE" }, { - "codePostal": "27710", - "codeCommune": "27543", - "libelleAcheminement": "ST GEORGES MOTEL", - "nomCommune": "ST GEORGES MOTEL" + "codePostal": "25300", + "codeCommune": "25309", + "libelleAcheminement": "HOUTAUD", + "nomCommune": "HOUTAUD" }, { - "codePostal": "53420", - "codeCommune": "53048", - "libelleAcheminement": "CHAILLAND", - "nomCommune": "CHAILLAND" + "codePostal": "34310", + "codeCommune": "34161", + "libelleAcheminement": "MONTADY", + "nomCommune": "MONTADY" }, { - "codePostal": "65220", - "codeCommune": "65461", - "libelleAcheminement": "VIDOU", - "nomCommune": "VIDOU" + "codePostal": "34210", + "codeCommune": "34097", + "libelleAcheminement": "FELINES MINERVOIS", + "nomCommune": "FELINES MINERVOIS" }, { - "codePostal": "60730", - "codeCommune": "60651", - "libelleAcheminement": "ULLY ST GEORGES", - "nomCommune": "ULLY ST GEORGES" + "codePostal": "24270", + "codeCommune": "24158", + "libelleAcheminement": "DUSSAC", + "nomCommune": "DUSSAC" }, { - "codePostal": "27230", - "codeCommune": "27547", - "libelleAcheminement": "ST GERMAIN LA CAMPAGNE", - "nomCommune": "ST GERMAIN LA CAMPAGNE" + "codePostal": "25110", + "codeCommune": "25313", + "libelleAcheminement": "HYEVRE PAROISSE", + "nomCommune": "HYEVRE PAROISSE" }, { - "codePostal": "53440", - "codeCommune": "53057", - "libelleAcheminement": "LA CHAPELLE AU RIBOUL", - "nomCommune": "LA CHAPELLE AU RIBOUL" + "codePostal": "34530", + "codeCommune": "34162", + "libelleAcheminement": "MONTAGNAC", + "nomCommune": "MONTAGNAC" }, { - "codePostal": "65230", - "codeCommune": "65468", - "libelleAcheminement": "VIEUZOS", - "nomCommune": "VIEUZOS" + "codePostal": "34210", + "codeCommune": "34098", + "libelleAcheminement": "FERRALS LES MONTAGNES", + "nomCommune": "FERRALS LES MONTAGNES" }, { - "codePostal": "60120", - "codeCommune": "60664", - "libelleAcheminement": "VENDEUIL CAPLY", - "nomCommune": "VENDEUIL CAPLY" + "codePostal": "24410", + "codeCommune": "24159", + "libelleAcheminement": "ECHOURGNAC", + "nomCommune": "ECHOURGNAC" }, { - "codePostal": "27270", - "codeCommune": "27552", - "libelleAcheminement": "ST JEAN DU THENNEY", - "nomCommune": "ST JEAN DU THENNEY" + "codePostal": "25110", + "codeCommune": "25313", + "libelleAcheminement": "HYEVRE PAROISSE", + "nomCommune": "HYEVRE PAROISSE" }, { - "codePostal": "53200", - "codeCommune": "53062", - "libelleAcheminement": "CHATEAU GONTIER SUR MAYENNE", - "nomCommune": "CHATEAU GONTIER SUR MAYENNE" + "codePostal": "34320", + "codeCommune": "34168", + "libelleAcheminement": "MONTESQUIEU", + "nomCommune": "MONTESQUIEU" }, { - "codePostal": "65230", - "codeCommune": "65475", - "libelleAcheminement": "VILLEMUR", - "nomCommune": "VILLEMUR" + "codePostal": "34480", + "codeCommune": "34105", + "libelleAcheminement": "FOUZILHON", + "nomCommune": "FOUZILHON" }, { - "codePostal": "60950", - "codeCommune": "60666", - "libelleAcheminement": "VER SUR LAUNETTE", - "nomCommune": "VER SUR LAUNETTE" + "codePostal": "24400", + "codeCommune": "24161", + "libelleAcheminement": "EGLISE NEUVE D ISSAC", + "nomCommune": "EGLISE NEUVE D ISSAC" }, { - "codePostal": "27930", - "codeCommune": "27560", - "libelleAcheminement": "ST LUC", - "nomCommune": "ST LUC" + "codePostal": "25720", + "codeCommune": "25328", + "libelleAcheminement": "LARNOD", + "nomCommune": "LARNOD" }, { - "codePostal": "53100", - "codeCommune": "53064", - "libelleAcheminement": "CHATILLON SUR COLMONT", - "nomCommune": "CHATILLON SUR COLMONT" + "codePostal": "34980", + "codeCommune": "34169", + "libelleAcheminement": "MONTFERRIER SUR LEZ", + "nomCommune": "MONTFERRIER SUR LEZ" }, { - "codePostal": "65500", - "codeCommune": "65476", - "libelleAcheminement": "VILLENAVE PRES BEARN", - "nomCommune": "VILLENAVE PRES BEARN" + "codePostal": "34330", + "codeCommune": "34107", + "libelleAcheminement": "FRAISSE SUR AGOUT", + "nomCommune": "FRAISSE SUR AGOUT" }, { - "codePostal": "60140", - "codeCommune": "60669", - "libelleAcheminement": "VERDERONNE", - "nomCommune": "VERDERONNE" + "codePostal": "24560", + "codeCommune": "24168", + "libelleAcheminement": "PLAISANCE", + "nomCommune": "PLAISANCE" }, { - "codePostal": "27500", - "codeCommune": "27563", - "libelleAcheminement": "ST MARDS DE BLACARVILLE", - "nomCommune": "ST MARDS DE BLACARVILLE" + "codePostal": "25580", + "codeCommune": "25331", + "libelleAcheminement": "LAVANS VUILLAFANS", + "nomCommune": "LAVANS VUILLAFANS" }, { - "codePostal": "53200", - "codeCommune": "53066", - "libelleAcheminement": "CHEMAZE", - "nomCommune": "CHEMAZE" + "codePostal": "34310", + "codeCommune": "34170", + "libelleAcheminement": "MONTOULIERS", + "nomCommune": "MONTOULIERS" }, { - "codePostal": "65200", - "codeCommune": "65479", - "libelleAcheminement": "VISKER", - "nomCommune": "VISKER" + "codePostal": "34320", + "codeCommune": "34109", + "libelleAcheminement": "GABIAN", + "nomCommune": "GABIAN" }, { - "codePostal": "60550", - "codeCommune": "60670", - "libelleAcheminement": "VERNEUIL EN HALATTE", - "nomCommune": "VERNEUIL EN HALATTE" + "codePostal": "24800", + "codeCommune": "24171", + "libelleAcheminement": "EYZERAC", + "nomCommune": "EYZERAC" }, { - "codePostal": "27370", - "codeCommune": "27579", - "libelleAcheminement": "ST OUEN DE PONTCHEUIL", - "nomCommune": "ST OUEN DE PONTCHEUIL" + "codePostal": "25270", + "codeCommune": "25334", + "libelleAcheminement": "LEVIER", + "nomCommune": "LEVIER" }, { - "codePostal": "53800", - "codeCommune": "53073", - "libelleAcheminement": "CONGRIER", - "nomCommune": "CONGRIER" + "codePostal": "34190", + "codeCommune": "34171", + "libelleAcheminement": "MONTOULIEU", + "nomCommune": "MONTOULIEU" }, { - "codePostal": "65120", - "codeCommune": "65481", - "libelleAcheminement": "BAREGES", - "nomCommune": "BAREGES" + "codePostal": "34190", + "codeCommune": "34115", + "libelleAcheminement": "GORNIES", + "nomCommune": "GORNIES" }, { - "codePostal": "60440", - "codeCommune": "60671", - "libelleAcheminement": "VERSIGNY", - "nomCommune": "VERSIGNY" + "codePostal": "24120", + "codeCommune": "24179", + "libelleAcheminement": "LA FEUILLADE", + "nomCommune": "LA FEUILLADE" }, { - "codePostal": "27950", - "codeCommune": "27612", - "libelleAcheminement": "ST VINCENT DES BOIS", - "nomCommune": "ST VINCENT DES BOIS" + "codePostal": "25390", + "codeCommune": "25349", + "libelleAcheminement": "LORAY", + "nomCommune": "LORAY" }, { - "codePostal": "53100", - "codeCommune": "53074", - "libelleAcheminement": "CONTEST", - "nomCommune": "CONTEST" + "codePostal": "34980", + "codeCommune": "34177", + "libelleAcheminement": "MURLES", + "nomCommune": "MURLES" }, { - "codePostal": "66760", - "codeCommune": "66005", - "libelleAcheminement": "ANGOUSTRINE VILLENEUVE ESCALDES", - "nomCommune": "ANGOUSTRINE VILLENEUVE DES ESCALDES" + "codePostal": "34820", + "codeCommune": "34118", + "libelleAcheminement": "GUZARGUES", + "nomCommune": "GUZARGUES" }, { - "codePostal": "60117", - "codeCommune": "60672", - "libelleAcheminement": "VEZ", - "nomCommune": "VEZ" + "codePostal": "24580", + "codeCommune": "24183", + "libelleAcheminement": "FLEURAC", + "nomCommune": "FLEURAC" }, { - "codePostal": "27400", - "codeCommune": "27624", - "libelleAcheminement": "SURVILLE", - "nomCommune": "SURVILLE" + "codePostal": "25260", + "codeCommune": "25350", + "libelleAcheminement": "LOUGRES", + "nomCommune": "LOUGRES" }, { - "codePostal": "53230", - "codeCommune": "53075", - "libelleAcheminement": "COSMES", - "nomCommune": "COSMES" + "codePostal": "34310", + "codeCommune": "34206", + "libelleAcheminement": "POILHES", + "nomCommune": "POILHES" }, { - "codePostal": "66760", - "codeCommune": "66005", - "libelleAcheminement": "ANGOUSTRINE VILLENEUVE ESCALDES", - "nomCommune": "ANGOUSTRINE VILLENEUVE DES ESCALDES" + "codePostal": "34600", + "codeCommune": "34119", + "libelleAcheminement": "HEREPIAN", + "nomCommune": "HEREPIAN" }, { - "codePostal": "60162", - "codeCommune": "60675", - "libelleAcheminement": "VIGNEMONT", - "nomCommune": "VIGNEMONT" + "codePostal": "24380", + "codeCommune": "24190", + "libelleAcheminement": "FOULEIX", + "nomCommune": "FOULEIX" }, { - "codePostal": "27420", - "codeCommune": "27633", - "libelleAcheminement": "LES THILLIERS EN VEXIN", - "nomCommune": "LES THILLIERS EN VEXIN" + "codePostal": "25650", + "codeCommune": "25357", + "libelleAcheminement": "MAISONS DU BOIS LIEVREMONT", + "nomCommune": "MAISONS DU BOIS LIEVREMONT" }, { - "codePostal": "53400", - "codeCommune": "53084", - "libelleAcheminement": "CRAON", - "nomCommune": "CRAON" + "codePostal": "34230", + "codeCommune": "34208", + "libelleAcheminement": "POPIAN", + "nomCommune": "POPIAN" }, { - "codePostal": "66700", - "codeCommune": "66008", - "libelleAcheminement": "ARGELES SUR MER", - "nomCommune": "ARGELES SUR MER" + "codePostal": "34725", + "codeCommune": "34122", + "libelleAcheminement": "JONQUIERES", + "nomCommune": "JONQUIERES" }, { - "codePostal": "60175", - "codeCommune": "60678", - "libelleAcheminement": "VILLENEUVE LES SABLONS", - "nomCommune": "VILLENEUVE LES SABLONS" + "codePostal": "24210", + "codeCommune": "24192", + "libelleAcheminement": "GABILLOU", + "nomCommune": "GABILLOU" }, { - "codePostal": "27700", - "codeCommune": "27635", - "libelleAcheminement": "LE THUIT", - "nomCommune": "LE THUIT" + "codePostal": "25650", + "codeCommune": "25357", + "libelleAcheminement": "MAISONS DU BOIS LIEVREMONT", + "nomCommune": "MAISONS DU BOIS LIEVREMONT" }, { - "codePostal": "53380", - "codeCommune": "53086", - "libelleAcheminement": "LA CROIXILLE", - "nomCommune": "LA CROIXILLE" + "codePostal": "34420", + "codeCommune": "34209", + "libelleAcheminement": "PORTIRAGNES", + "nomCommune": "PORTIRAGNES" }, { - "codePostal": "66670", - "codeCommune": "66011", - "libelleAcheminement": "BAGES", - "nomCommune": "BAGES" + "codePostal": "34990", + "codeCommune": "34123", + "libelleAcheminement": "JUVIGNAC", + "nomCommune": "JUVIGNAC" }, { - "codePostal": "60870", - "codeCommune": "60684", - "libelleAcheminement": "VILLERS ST PAUL", - "nomCommune": "VILLERS ST PAUL" + "codePostal": "24110", + "codeCommune": "24205", + "libelleAcheminement": "GRIGNOLS", + "nomCommune": "GRIGNOLS" }, { - "codePostal": "27370", - "codeCommune": "27638", - "libelleAcheminement": "LE THUIT DE L OISON", - "nomCommune": "LE THUIT DE L OISON" + "codePostal": "25120", + "codeCommune": "25366", + "libelleAcheminement": "MANCENANS LIZERNE", + "nomCommune": "MANCENANS LIZERNE" }, { - "codePostal": "53190", - "codeCommune": "53091", - "libelleAcheminement": "DESERTINES", - "nomCommune": "DESERTINES" + "codePostal": "34230", + "codeCommune": "34215", + "libelleAcheminement": "POUZOLS", + "nomCommune": "POUZOLS" }, { - "codePostal": "66650", - "codeCommune": "66016", - "libelleAcheminement": "BANYULS SUR MER", - "nomCommune": "BANYULS SUR MER" + "codePostal": "34240", + "codeCommune": "34126", + "libelleAcheminement": "LAMALOU LES BAINS", + "nomCommune": "LAMALOU LES BAINS" }, { - "codePostal": "60500", - "codeCommune": "60695", - "libelleAcheminement": "VINEUIL ST FIRMIN", - "nomCommune": "VINEUIL ST FIRMIN" + "codePostal": "24390", + "codeCommune": "24210", + "libelleAcheminement": "HAUTEFORT", + "nomCommune": "HAUTEFORT" }, { - "codePostal": "27930", - "codeCommune": "27652", - "libelleAcheminement": "TOURNEVILLE", - "nomCommune": "TOURNEVILLE" + "codePostal": "25170", + "codeCommune": "25371", + "libelleAcheminement": "MAZEROLLES LE SALIN", + "nomCommune": "MAZEROLLES LE SALIN" }, { - "codePostal": "53260", - "codeCommune": "53094", - "libelleAcheminement": "ENTRAMMES", - "nomCommune": "ENTRAMMES" + "codePostal": "34730", + "codeCommune": "34217", + "libelleAcheminement": "PRADES LE LEZ", + "nomCommune": "PRADES LE LEZ" }, { - "codePostal": "66130", - "codeCommune": "66022", - "libelleAcheminement": "BOULE D AMONT", - "nomCommune": "BOULE D AMONT" + "codePostal": "34190", + "codeCommune": "34128", + "libelleAcheminement": "LAROQUE", + "nomCommune": "LAROQUE" }, { - "codePostal": "60380", - "codeCommune": "60699", - "libelleAcheminement": "WAMBEZ", - "nomCommune": "WAMBEZ" + "codePostal": "24560", + "codeCommune": "24212", + "libelleAcheminement": "ISSIGEAC", + "nomCommune": "ISSIGEAC" }, { - "codePostal": "27500", - "codeCommune": "27656", - "libelleAcheminement": "TOUTAINVILLE", - "nomCommune": "TOUTAINVILLE" + "codePostal": "25250", + "codeCommune": "25372", + "libelleAcheminement": "MEDIERE", + "nomCommune": "MEDIERE" }, { - "codePostal": "53600", - "codeCommune": "53097", - "libelleAcheminement": "EVRON", - "nomCommune": "EVRON" + "codePostal": "34390", + "codeCommune": "34219", + "libelleAcheminement": "PREMIAN", + "nomCommune": "PREMIAN" }, { - "codePostal": "66600", - "codeCommune": "66030", - "libelleAcheminement": "CALCE", - "nomCommune": "CALCE" + "codePostal": "34880", + "codeCommune": "34134", + "libelleAcheminement": "LAVERUNE", + "nomCommune": "LAVERUNE" }, { - "codePostal": "60430", - "codeCommune": "60700", - "libelleAcheminement": "WARLUIS", - "nomCommune": "WARLUIS" + "codePostal": "24630", + "codeCommune": "24218", + "libelleAcheminement": "JUMILHAC LE GRAND", + "nomCommune": "JUMILHAC LE GRAND" }, { - "codePostal": "27310", - "codeCommune": "27661", - "libelleAcheminement": "LA TRINITE DE THOUBERVILLE", - "nomCommune": "LA TRINITE DE THOUBERVILLE" + "codePostal": "25660", + "codeCommune": "25375", + "libelleAcheminement": "LES MONTS RONDS", + "nomCommune": "LES MONTS RONDS" }, { - "codePostal": "53600", - "codeCommune": "53097", - "libelleAcheminement": "EVRON", - "nomCommune": "EVRON" + "codePostal": "34150", + "codeCommune": "34221", + "libelleAcheminement": "PUECHABON", + "nomCommune": "PUECHABON" }, { - "codePostal": "66300", - "codeCommune": "66033", - "libelleAcheminement": "CAMELAS", - "nomCommune": "CAMELAS" + "codePostal": "34800", + "codeCommune": "34137", + "libelleAcheminement": "LIAUSSON", + "nomCommune": "LIAUSSON" }, { - "codePostal": "61570", - "codeCommune": "61002", - "libelleAcheminement": "ALMENECHES", - "nomCommune": "ALMENECHES" + "codePostal": "24170", + "codeCommune": "24230", + "libelleAcheminement": "LARZAC", + "nomCommune": "LARZAC" }, { - "codePostal": "27110", - "codeCommune": "27663", - "libelleAcheminement": "LE TRONCQ", - "nomCommune": "LE TRONCQ" + "codePostal": "25870", + "codeCommune": "25382", + "libelleAcheminement": "MONCEY", + "nomCommune": "MONCEY" }, { - "codePostal": "53350", - "codeCommune": "53098", - "libelleAcheminement": "FONTAINE COUVERTE", - "nomCommune": "FONTAINE COUVERTE" + "codePostal": "34230", + "codeCommune": "34222", + "libelleAcheminement": "PUILACHER", + "nomCommune": "PUILACHER" }, { - "codePostal": "66140", - "codeCommune": "66037", - "libelleAcheminement": "CANET EN ROUSSILLON", - "nomCommune": "CANET EN ROUSSILLON" + "codePostal": "34290", + "codeCommune": "34139", + "libelleAcheminement": "LIEURAN LES BEZIERS", + "nomCommune": "LIEURAN LES BEZIERS" }, { - "codePostal": "61130", - "codeCommune": "61005", - "libelleAcheminement": "APPENAI SOUS BELLEME", - "nomCommune": "APPENAI SOUS BELLEME" + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { - "codePostal": "27680", - "codeCommune": "27665", - "libelleAcheminement": "TROUVILLE LA HAULE", - "nomCommune": "TROUVILLE LA HAULE" + "codePostal": "25680", + "codeCommune": "25384", + "libelleAcheminement": "MONDON", + "nomCommune": "MONDON" }, { - "codePostal": "53190", - "codeCommune": "53100", - "libelleAcheminement": "FOUGEROLLES DU PLESSIS", - "nomCommune": "FOUGEROLLES DU PLESSIS" + "codePostal": "34360", + "codeCommune": "34245", + "libelleAcheminement": "ST CHINIAN", + "nomCommune": "ST CHINIAN" }, { - "codePostal": "66680", - "codeCommune": "66038", - "libelleAcheminement": "CANOHES", - "nomCommune": "CANOHES" + "codePostal": "34140", + "codeCommune": "34143", + "libelleAcheminement": "LOUPIAN", + "nomCommune": "LOUPIAN" }, { - "codePostal": "61100", - "codeCommune": "61007", - "libelleAcheminement": "ATHIS VAL DE ROUVRE", - "nomCommune": "ATHIS VAL DE ROUVRE" + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { - "codePostal": "27300", - "codeCommune": "27667", - "libelleAcheminement": "VALAILLES", - "nomCommune": "VALAILLES" + "codePostal": "25190", + "codeCommune": "25393", + "libelleAcheminement": "MONTECHEROUX", + "nomCommune": "MONTECHEROUX" }, { - "codePostal": "53540", - "codeCommune": "53102", - "libelleAcheminement": "GASTINES", - "nomCommune": "GASTINES" + "codePostal": "34980", + "codeCommune": "34247", + "libelleAcheminement": "ST CLEMENT DE RIVIERE", + "nomCommune": "ST CLEMENT DE RIVIERE" }, { - "codePostal": "66600", - "codeCommune": "66041", - "libelleAcheminement": "CASES DE PENE", - "nomCommune": "CASES DE PENE" + "codePostal": "34340", + "codeCommune": "34150", + "libelleAcheminement": "MARSEILLAN", + "nomCommune": "MARSEILLAN" }, { - "codePostal": "61100", - "codeCommune": "61007", - "libelleAcheminement": "ATHIS VAL DE ROUVRE", - "nomCommune": "ATHIS VAL DE ROUVRE" + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { - "codePostal": "27910", - "codeCommune": "27672", - "libelleAcheminement": "VASCOEUIL", - "nomCommune": "VASCOEUIL" + "codePostal": "25110", + "codeCommune": "25401", + "libelleAcheminement": "MONTIVERNAGE", + "nomCommune": "MONTIVERNAGE" }, { - "codePostal": "53940", - "codeCommune": "53103", - "libelleAcheminement": "LE GENEST ST ISLE", - "nomCommune": "LE GENEST ST ISLE" + "codePostal": "34725", + "codeCommune": "34254", + "libelleAcheminement": "ST FELIX DE LODEZ", + "nomCommune": "ST FELIX DE LODEZ" }, { - "codePostal": "66820", - "codeCommune": "66043", - "libelleAcheminement": "CASTEIL", - "nomCommune": "CASTEIL" + "codePostal": "34340", + "codeCommune": "34150", + "libelleAcheminement": "MARSEILLAN", + "nomCommune": "MARSEILLAN" }, { - "codePostal": "61270", - "codeCommune": "61012", - "libelleAcheminement": "AUGUAISE", - "nomCommune": "AUGUAISE" + "codePostal": "24430", + "codeCommune": "24256", + "libelleAcheminement": "MARSAC SUR L ISLE", + "nomCommune": "MARSAC SUR L ISLE" }, { - "codePostal": "27430", - "codeCommune": "27673", - "libelleAcheminement": "VATTEVILLE", - "nomCommune": "VATTEVILLE" + "codePostal": "25190", + "codeCommune": "25402", + "libelleAcheminement": "MONTJOIE LE CHATEAU", + "nomCommune": "MONTJOIE LE CHATEAU" }, { - "codePostal": "53290", - "codeCommune": "53110", - "libelleAcheminement": "GREZ EN BOUERE", - "nomCommune": "GREZ EN BOUERE" + "codePostal": "34980", + "codeCommune": "34255", + "libelleAcheminement": "ST GELY DU FESC", + "nomCommune": "ST GELY DU FESC" }, { - "codePostal": "66500", - "codeCommune": "66045", - "libelleAcheminement": "CATLLAR", - "nomCommune": "CATLLAR" + "codePostal": "34380", + "codeCommune": "34152", + "libelleAcheminement": "MAS DE LONDRES", + "nomCommune": "MAS DE LONDRES" }, { - "codePostal": "61500", - "codeCommune": "61015", - "libelleAcheminement": "AUNOU SUR ORNE", - "nomCommune": "AUNOU SUR ORNE" + "codePostal": "24140", + "codeCommune": "24259", + "libelleAcheminement": "EYRAUD CREMPSE MAURENS", + "nomCommune": "EYRAUD CREMPSE MAURENS" }, { - "codePostal": "27180", - "codeCommune": "27678", - "libelleAcheminement": "LES VENTES", - "nomCommune": "LES VENTES" + "codePostal": "25270", + "codeCommune": "25404", + "libelleAcheminement": "MONTMAHOUX", + "nomCommune": "MONTMAHOUX" }, { - "codePostal": "53640", - "codeCommune": "53116", - "libelleAcheminement": "LE HORPS", - "nomCommune": "LE HORPS" + "codePostal": "34725", + "codeCommune": "34262", + "libelleAcheminement": "ST GUIRAUD", + "nomCommune": "ST GUIRAUD" }, { - "codePostal": "66190", - "codeCommune": "66053", - "libelleAcheminement": "COLLIOURE", - "nomCommune": "COLLIOURE" + "codePostal": "34270", + "codeCommune": "34153", + "libelleAcheminement": "LES MATELLES", + "nomCommune": "LES MATELLES" }, { - "codePostal": "61500", - "codeCommune": "61056", - "libelleAcheminement": "LE BOUILLON", - "nomCommune": "LE BOUILLON" + "codePostal": "24140", + "codeCommune": "24259", + "libelleAcheminement": "EYRAUD CREMPSE MAURENS", + "nomCommune": "EYRAUD CREMPSE MAURENS" }, { - "codePostal": "27130", - "codeCommune": "27679", - "libelleAcheminement": "VERNEUIL D AVRE ET D ITON", - "nomCommune": "VERNEUIL D AVRE ET D ITON" + "codePostal": "25160", + "codeCommune": "25405", + "libelleAcheminement": "MONTPERREUX", + "nomCommune": "MONTPERREUX" }, { - "codePostal": "53360", - "codeCommune": "53117", - "libelleAcheminement": "HOUSSAY", - "nomCommune": "HOUSSAY" + "codePostal": "34380", + "codeCommune": "34264", + "libelleAcheminement": "ST JEAN DE BUEGES", + "nomCommune": "ST JEAN DE BUEGES" }, { - "codePostal": "66200", - "codeCommune": "66065", - "libelleAcheminement": "ELNE", - "nomCommune": "ELNE" + "codePostal": "34130", + "codeCommune": "34154", + "libelleAcheminement": "MAUGUIO", + "nomCommune": "MAUGUIO" }, { - "codePostal": "61390", - "codeCommune": "61064", - "libelleAcheminement": "BRULLEMAIL", - "nomCommune": "BRULLEMAIL" + "codePostal": "24260", + "codeCommune": "24261", + "libelleAcheminement": "MAUZENS ET MIREMONT", + "nomCommune": "MAUZENS ET MIREMONT" }, { - "codePostal": "27870", - "codeCommune": "27682", - "libelleAcheminement": "VESLY", - "nomCommune": "VESLY" + "codePostal": "25440", + "codeCommune": "25416", + "libelleAcheminement": "MYON", + "nomCommune": "MYON" }, { - "codePostal": "53110", - "codeCommune": "53127", - "libelleAcheminement": "LASSAY LES CHATEAUX", - "nomCommune": "LASSAY LES CHATEAUX" + "codePostal": "34380", + "codeCommune": "34274", + "libelleAcheminement": "ST MARTIN DE LONDRES", + "nomCommune": "ST MARTIN DE LONDRES" }, { - "codePostal": "66800", - "codeCommune": "66067", - "libelleAcheminement": "ERR", - "nomCommune": "ERR" + "codePostal": "34800", + "codeCommune": "34156", + "libelleAcheminement": "MERIFONS", + "nomCommune": "MERIFONS" }, { - "codePostal": "61320", - "codeCommune": "61074", - "libelleAcheminement": "CARROUGES", - "nomCommune": "CARROUGES" + "codePostal": "24420", + "codeCommune": "24262", + "libelleAcheminement": "MAYAC", + "nomCommune": "MAYAC" }, { - "codePostal": "27330", - "codeCommune": "27685", - "libelleAcheminement": "LA VIEILLE LYRE", - "nomCommune": "LA VIEILLE LYRE" + "codePostal": "25360", + "codeCommune": "25417", + "libelleAcheminement": "NAISEY LES GRANGES", + "nomCommune": "NAISEY LES GRANGES" }, { - "codePostal": "53110", - "codeCommune": "53127", - "libelleAcheminement": "LASSAY LES CHATEAUX", - "nomCommune": "LASSAY LES CHATEAUX" + "codePostal": "34570", + "codeCommune": "34282", + "libelleAcheminement": "ST PAUL ET VALMALLE", + "nomCommune": "ST PAUL ET VALMALLE" }, { - "codePostal": "66360", - "codeCommune": "66068", - "libelleAcheminement": "ESCARO", - "nomCommune": "ESCARO" + "codePostal": "34140", + "codeCommune": "34157", + "libelleAcheminement": "MEZE", + "nomCommune": "MEZE" }, { - "codePostal": "61330", - "codeCommune": "61075", - "libelleAcheminement": "CEAUCE", - "nomCommune": "CEAUCE" + "codePostal": "24350", + "codeCommune": "24266", + "libelleAcheminement": "MENSIGNAC", + "nomCommune": "MENSIGNAC" }, { - "codePostal": "27940", - "codeCommune": "27691", - "libelleAcheminement": "VILLERS SUR LE ROULE", - "nomCommune": "VILLERS SUR LE ROULE" + "codePostal": "25360", + "codeCommune": "25418", + "libelleAcheminement": "NANCRAY", + "nomCommune": "NANCRAY" }, { - "codePostal": "53410", - "codeCommune": "53129", - "libelleAcheminement": "LAUNAY VILLIERS", - "nomCommune": "LAUNAY VILLIERS" + "codePostal": "34630", + "codeCommune": "34289", + "libelleAcheminement": "ST THIBERY", + "nomCommune": "ST THIBERY" }, { - "codePostal": "66600", - "codeCommune": "66069", - "libelleAcheminement": "ESPIRA DE L AGLY", - "nomCommune": "ESPIRA DE L AGLY" + "codePostal": "34310", + "codeCommune": "34167", + "libelleAcheminement": "MONTELS", + "nomCommune": "MONTELS" }, { - "codePostal": "61500", - "codeCommune": "61076", - "libelleAcheminement": "LE CERCUEIL", - "nomCommune": "LE CERCUEIL" + "codePostal": "24610", + "codeCommune": "24272", + "libelleAcheminement": "MINZAC", + "nomCommune": "MINZAC" }, { - "codePostal": "27640", - "codeCommune": "27696", - "libelleAcheminement": "VILLIERS EN DESOEUVRE", - "nomCommune": "VILLIERS EN DESOEUVRE" + "codePostal": "25680", + "codeCommune": "25419", + "libelleAcheminement": "NANS", + "nomCommune": "NANS" }, { - "codePostal": "53120", - "codeCommune": "53132", - "libelleAcheminement": "LEVARE", - "nomCommune": "LEVARE" + "codePostal": "34390", + "codeCommune": "34291", + "libelleAcheminement": "ST VINCENT D OLARGUES", + "nomCommune": "ST VINCENT D OLARGUES" }, { - "codePostal": "66320", - "codeCommune": "66073", - "libelleAcheminement": "ESTOHER", - "nomCommune": "ESTOHER" + "codePostal": "34150", + "codeCommune": "34173", + "libelleAcheminement": "MONTPEYROUX", + "nomCommune": "MONTPEYROUX" }, { - "codePostal": "61000", - "codeCommune": "61077", - "libelleAcheminement": "CERISE", - "nomCommune": "CERISE" + "codePostal": "24560", + "codeCommune": "24278", + "libelleAcheminement": "MONMADALES", + "nomCommune": "MONMADALES" }, { - "codePostal": "27110", - "codeCommune": "27698", - "libelleAcheminement": "VITOT", - "nomCommune": "VITOT" + "codePostal": "25500", + "codeCommune": "25425", + "libelleAcheminement": "NOEL CERNEUX", + "nomCommune": "NOEL CERNEUX" }, { - "codePostal": "53140", - "codeCommune": "53133", - "libelleAcheminement": "LIGNIERES ORGERES", - "nomCommune": "LIGNIERES ORGERES" + "codePostal": "34800", + "codeCommune": "34292", + "libelleAcheminement": "SALASC", + "nomCommune": "SALASC" }, { - "codePostal": "66500", - "codeCommune": "66074", - "libelleAcheminement": "EUS", - "nomCommune": "EUS" + "codePostal": "34800", + "codeCommune": "34175", + "libelleAcheminement": "MOUREZE", + "nomCommune": "MOUREZE" }, { - "codePostal": "61240", - "codeCommune": "61081", - "libelleAcheminement": "CHAILLOUE", - "nomCommune": "CHAILLOUE" + "codePostal": "24560", + "codeCommune": "24279", + "libelleAcheminement": "MONMARVES", + "nomCommune": "MONMARVES" }, { - "codePostal": "28290", - "codeCommune": "28012", - "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", - "nomCommune": "COMMUNE NOUVELLE D ARROU" + "codePostal": "25640", + "codeCommune": "25430", + "libelleAcheminement": "OLLANS", + "nomCommune": "OLLANS" }, { - "codePostal": "53700", - "codeCommune": "53139", - "libelleAcheminement": "LOUPFOUGERES", - "nomCommune": "LOUPFOUGERES" + "codePostal": "34400", + "codeCommune": "34294", + "libelleAcheminement": "SATURARGUES", + "nomCommune": "SATURARGUES" }, { - "codePostal": "66220", - "codeCommune": "66077", - "libelleAcheminement": "FENOUILLET", - "nomCommune": "FENOUILLET" - }, - { - "codePostal": "61120", - "codeCommune": "61086", - "libelleAcheminement": "LES CHAMPEAUX", - "nomCommune": "LES CHAMPEAUX" - }, - { - "codePostal": "28290", - "codeCommune": "28012", - "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", - "nomCommune": "COMMUNE NOUVELLE D ARROU" - }, - { - "codePostal": "53950", - "codeCommune": "53140", - "libelleAcheminement": "LOUVERNE", - "nomCommune": "LOUVERNE" + "codePostal": "34570", + "codeCommune": "34179", + "libelleAcheminement": "MURVIEL LES MONTPELLIER", + "nomCommune": "MURVIEL LES MONTPELLIER" }, { - "codePostal": "66320", - "codeCommune": "66079", - "libelleAcheminement": "FINESTRET", - "nomCommune": "FINESTRET" + "codePostal": "24350", + "codeCommune": "24286", + "libelleAcheminement": "MONTAGRIER", + "nomCommune": "MONTAGRIER" }, { - "codePostal": "61120", - "codeCommune": "61089", - "libelleAcheminement": "CHAMPOSOULT", - "nomCommune": "CHAMPOSOULT" + "codePostal": "25120", + "codeCommune": "25433", + "libelleAcheminement": "ORGEANS BLANCHEFONTAINE", + "nomCommune": "ORGEANS BLANCHEFONTAINE" }, { - "codePostal": "28700", - "codeCommune": "28013", - "libelleAcheminement": "AUNAY SOUS AUNEAU", - "nomCommune": "AUNAY SOUS AUNEAU" + "codePostal": "34270", + "codeCommune": "34297", + "libelleAcheminement": "SAUTEYRARGUES", + "nomCommune": "SAUTEYRARGUES" }, { - "codePostal": "53250", - "codeCommune": "53142", - "libelleAcheminement": "MADRE", - "nomCommune": "MADRE" + "codePostal": "34800", + "codeCommune": "34180", + "libelleAcheminement": "NEBIAN", + "nomCommune": "NEBIAN" }, { - "codePostal": "66210", - "codeCommune": "66082", - "libelleAcheminement": "FORMIGUERES", - "nomCommune": "FORMIGUERES" + "codePostal": "24230", + "codeCommune": "24289", + "libelleAcheminement": "MONTCARET", + "nomCommune": "MONTCARET" }, { - "codePostal": "61700", - "codeCommune": "61091", - "libelleAcheminement": "CHAMPSECRET", - "nomCommune": "CHAMPSECRET" + "codePostal": "25440", + "codeCommune": "25450", + "libelleAcheminement": "PESSANS", + "nomCommune": "PESSANS" }, { - "codePostal": "28300", - "codeCommune": "28022", - "libelleAcheminement": "BAILLEAU L EVEQUE", - "nomCommune": "BAILLEAU L EVEQUE" + "codePostal": "34330", + "codeCommune": "34305", + "libelleAcheminement": "LE SOULIE", + "nomCommune": "LE SOULIE" }, { - "codePostal": "53170", - "codeCommune": "53143", - "libelleAcheminement": "MAISONCELLES DU MAINE", - "nomCommune": "MAISONCELLES DU MAINE" + "codePostal": "34320", + "codeCommune": "34181", + "libelleAcheminement": "NEFFIES", + "nomCommune": "NEFFIES" }, { - "codePostal": "66220", - "codeCommune": "66083", - "libelleAcheminement": "FOSSE", - "nomCommune": "FOSSE" + "codePostal": "24700", + "codeCommune": "24294", + "libelleAcheminement": "MONTPON MENESTEROL", + "nomCommune": "MONTPON MENESTEROL" }, { - "codePostal": "61140", - "codeCommune": "61096", - "libelleAcheminement": "RIVES D ANDAINE", - "nomCommune": "RIVES D ANDAINE" + "codePostal": "25160", + "codeCommune": "25459", + "libelleAcheminement": "LA PLANEE", + "nomCommune": "LA PLANEE" }, { - "codePostal": "28140", - "codeCommune": "28028", - "libelleAcheminement": "BAZOCHES EN DUNOIS", - "nomCommune": "BAZOCHES EN DUNOIS" + "codePostal": "34700", + "codeCommune": "34316", + "libelleAcheminement": "USCLAS DU BOSC", + "nomCommune": "USCLAS DU BOSC" }, { - "codePostal": "53200", - "codeCommune": "53145", - "libelleAcheminement": "MARIGNE PEUTON", - "nomCommune": "MARIGNE PEUTON" + "codePostal": "34440", + "codeCommune": "34183", + "libelleAcheminement": "NISSAN LEZ ENSERUNE", + "nomCommune": "NISSAN LEZ ENSERUNE" }, { - "codePostal": "66820", - "codeCommune": "66085", - "libelleAcheminement": "FUILLA", - "nomCommune": "FUILLA" + "codePostal": "24110", + "codeCommune": "24295", + "libelleAcheminement": "MONTREM", + "nomCommune": "MONTREM" }, { - "codePostal": "61410", - "codeCommune": "61096", - "libelleAcheminement": "RIVES D ANDAINE", - "nomCommune": "RIVES D ANDAINE" + "codePostal": "25150", + "codeCommune": "25463", + "libelleAcheminement": "PONT DE ROIDE VERMONDANS", + "nomCommune": "PONT DE ROIDE VERMONDANS" }, { - "codePostal": "28270", - "codeCommune": "28030", - "libelleAcheminement": "BEAUCHE", - "nomCommune": "BEAUCHE" + "codePostal": "34270", + "codeCommune": "34318", + "libelleAcheminement": "VACQUIERES", + "nomCommune": "VACQUIERES" }, { - "codePostal": "53100", - "codeCommune": "53147", - "libelleAcheminement": "MAYENNE", - "nomCommune": "MAYENNE" + "codePostal": "34390", + "codeCommune": "34187", + "libelleAcheminement": "OLARGUES", + "nomCommune": "OLARGUES" }, { - "codePostal": "66320", - "codeCommune": "66086", - "libelleAcheminement": "GLORIANES", - "nomCommune": "GLORIANES" + "codePostal": "24250", + "codeCommune": "24300", + "libelleAcheminement": "NABIRAT", + "nomCommune": "NABIRAT" }, { - "codePostal": "61230", - "codeCommune": "61103", - "libelleAcheminement": "CHAUMONT", - "nomCommune": "CHAUMONT" + "codePostal": "25410", + "codeCommune": "25466", + "libelleAcheminement": "POUILLEY FRANCAIS", + "nomCommune": "POUILLEY FRANCAIS" }, { - "codePostal": "28480", - "codeCommune": "28031", - "libelleAcheminement": "BEAUMONT LES AUTELS", - "nomCommune": "BEAUMONT LES AUTELS" + "codePostal": "34270", + "codeCommune": "34322", + "libelleAcheminement": "VALFLAUNES", + "nomCommune": "VALFLAUNES" }, { - "codePostal": "53200", - "codeCommune": "53150", - "libelleAcheminement": "MENIL", - "nomCommune": "MENIL" + "codePostal": "34250", + "codeCommune": "34192", + "libelleAcheminement": "PALAVAS LES FLOTS", + "nomCommune": "PALAVAS LES FLOTS" }, { - "codePostal": "66360", - "codeCommune": "66102", - "libelleAcheminement": "MANTET", - "nomCommune": "MANTET" + "codePostal": "24460", + "codeCommune": "24308", + "libelleAcheminement": "NEGRONDES", + "nomCommune": "NEGRONDES" }, { - "codePostal": "61110", - "codeCommune": "61116", - "libelleAcheminement": "SABLONS SUR HUISNE", - "nomCommune": "SABLONS SUR HUISNE" + "codePostal": "25550", + "codeCommune": "25469", + "libelleAcheminement": "PRESENTEVILLERS", + "nomCommune": "PRESENTEVILLERS" }, { - "codePostal": "28150", - "codeCommune": "28032", - "libelleAcheminement": "BEAUVILLIERS", - "nomCommune": "BEAUVILLIERS" + "codePostal": "34800", + "codeCommune": "34323", + "libelleAcheminement": "VALMASCLE", + "nomCommune": "VALMASCLE" }, { - "codePostal": "53220", - "codeCommune": "53154", - "libelleAcheminement": "MONTAUDIN", - "nomCommune": "MONTAUDIN" + "codePostal": "34800", + "codeCommune": "34197", + "libelleAcheminement": "PERET", + "nomCommune": "PERET" }, { - "codePostal": "66320", - "codeCommune": "66103", - "libelleAcheminement": "MARQUIXANES", - "nomCommune": "MARQUIXANES" + "codePostal": "24510", + "codeCommune": "24318", + "libelleAcheminement": "PAUNAT", + "nomCommune": "PAUNAT" }, { - "codePostal": "61230", - "codeCommune": "61122", - "libelleAcheminement": "COULMER", - "nomCommune": "COULMER" + "codePostal": "25250", + "codeCommune": "25470", + "libelleAcheminement": "LA PRETIERE", + "nomCommune": "LA PRETIERE" }, { - "codePostal": "28190", - "codeCommune": "28040", - "libelleAcheminement": "BILLANCELLES", - "nomCommune": "BILLANCELLES" + "codePostal": "34290", + "codeCommune": "34325", + "libelleAcheminement": "VALROS", + "nomCommune": "VALROS" }, { - "codePostal": "53320", - "codeCommune": "53158", - "libelleAcheminement": "MONTJEAN", - "nomCommune": "MONTJEAN" + "codePostal": "34470", + "codeCommune": "34198", + "libelleAcheminement": "PEROLS", + "nomCommune": "PEROLS" }, { - "codePostal": "66200", - "codeCommune": "66114", - "libelleAcheminement": "MONTESCOT", - "nomCommune": "MONTESCOT" + "codePostal": "24600", + "codeCommune": "24323", + "libelleAcheminement": "PETIT BERSAC", + "nomCommune": "PETIT BERSAC" }, { - "codePostal": "61160", - "codeCommune": "61123", - "libelleAcheminement": "COULONCES", - "nomCommune": "COULONCES" + "codePostal": "25640", + "codeCommune": "25474", + "libelleAcheminement": "LE PUY", + "nomCommune": "LE PUY" }, { - "codePostal": "28120", - "codeCommune": "28041", - "libelleAcheminement": "BLANDAINVILLE", - "nomCommune": "BLANDAINVILLE" + "codePostal": "34230", + "codeCommune": "34328", + "libelleAcheminement": "VENDEMIAN", + "nomCommune": "VENDEMIAN" }, { - "codePostal": "53150", - "codeCommune": "53161", - "libelleAcheminement": "MONTSURS", - "nomCommune": "MONTSURS" + "codePostal": "34700", + "codeCommune": "34205", + "libelleAcheminement": "LES PLANS", + "nomCommune": "LES PLANS" }, { - "codePostal": "66360", - "codeCommune": "66125", - "libelleAcheminement": "OLETTE", - "nomCommune": "OLETTE" + "codePostal": "33220", + "codeCommune": "24335", + "libelleAcheminement": "PORT STE FOY ET PONCHAPT", + "nomCommune": "PORT STE FOY ET PONCHAPT" }, { - "codePostal": "61170", - "codeCommune": "61126", - "libelleAcheminement": "COULONGES SUR SARTHE", - "nomCommune": "COULONGES SUR SARTHE" + "codePostal": "25440", + "codeCommune": "25475", + "libelleAcheminement": "QUINGEY", + "nomCommune": "QUINGEY" }, { - "codePostal": "28340", - "codeCommune": "28046", - "libelleAcheminement": "BOISSY LES PERCHE", - "nomCommune": "BOISSY LES PERCHE" + "codePostal": "34500", + "codeCommune": "34336", + "libelleAcheminement": "VILLENEUVE LES BEZIERS", + "nomCommune": "VILLENEUVE LES BEZIERS" }, { - "codePostal": "53150", - "codeCommune": "53163", - "libelleAcheminement": "NEAU", - "nomCommune": "NEAU" + "codePostal": "34230", + "codeCommune": "34210", + "libelleAcheminement": "LE POUGET", + "nomCommune": "LE POUGET" }, { - "codePostal": "66000", - "codeCommune": "66136", - "libelleAcheminement": "PERPIGNAN", - "nomCommune": "PERPIGNAN" + "codePostal": "24150", + "codeCommune": "24338", + "libelleAcheminement": "PRESSIGNAC VICQ", + "nomCommune": "PRESSIGNAC VICQ" }, { - "codePostal": "61120", - "codeCommune": "61139", - "libelleAcheminement": "CROUTTES", - "nomCommune": "CROUTTES" + "codePostal": "25430", + "codeCommune": "25478", + "libelleAcheminement": "RANDEVILLERS", + "nomCommune": "RANDEVILLERS" }, { - "codePostal": "28360", - "codeCommune": "28048", - "libelleAcheminement": "LA BOURDINIERE ST LOUP", - "nomCommune": "LA BOURDINIERE ST LOUP" + "codePostal": "34800", + "codeCommune": "34338", + "libelleAcheminement": "VILLENEUVETTE", + "nomCommune": "VILLENEUVETTE" }, { - "codePostal": "53400", - "codeCommune": "53165", - "libelleAcheminement": "NIAFLES", - "nomCommune": "NIAFLES" + "codePostal": "34700", + "codeCommune": "34212", + "libelleAcheminement": "POUJOLS", + "nomCommune": "POUJOLS" }, { - "codePostal": "66480", - "codeCommune": "66137", - "libelleAcheminement": "LE PERTHUS", - "nomCommune": "LE PERTHUS" + "codePostal": "24140", + "codeCommune": "24345", + "libelleAcheminement": "QUEYSSAC", + "nomCommune": "QUEYSSAC" }, { - "codePostal": "61300", - "codeCommune": "61140", - "libelleAcheminement": "CRULAI", - "nomCommune": "CRULAI" + "codePostal": "25370", + "codeCommune": "25494", + "libelleAcheminement": "ROCHEJEAN", + "nomCommune": "ROCHEJEAN" }, { - "codePostal": "28170", - "codeCommune": "28053", - "libelleAcheminement": "LE BOULLAY LES DEUX EGLISES", - "nomCommune": "LE BOULLAY LES DEUX EGLISES" + "codePostal": "34360", + "codeCommune": "34339", + "libelleAcheminement": "VILLESPASSANS", + "nomCommune": "VILLESPASSANS" }, { - "codePostal": "53970", - "codeCommune": "53168", - "libelleAcheminement": "NUILLE SUR VICOIN", - "nomCommune": "NUILLE SUR VICOIN" + "codePostal": "34560", + "codeCommune": "34213", + "libelleAcheminement": "POUSSAN", + "nomCommune": "POUSSAN" }, { - "codePostal": "66730", - "codeCommune": "66139", - "libelleAcheminement": "PEZILLA DE CONFLENT", - "nomCommune": "PEZILLA DE CONFLENT" + "codePostal": "24500", + "codeCommune": "24348", + "libelleAcheminement": "RAZAC D EYMET", + "nomCommune": "RAZAC D EYMET" }, { - "codePostal": "61150", - "codeCommune": "61153", - "libelleAcheminement": "ECOUCHE LES VALLEES", - "nomCommune": "ECOUCHE LES VALLEES" + "codePostal": "25440", + "codeCommune": "25500", + "libelleAcheminement": "RONCHAUX", + "nomCommune": "RONCHAUX" }, { - "codePostal": "28210", - "codeCommune": "28055", - "libelleAcheminement": "LE BOULLAY THIERRY", - "nomCommune": "LE BOULLAY THIERRY" + "codePostal": "34380", + "codeCommune": "34343", + "libelleAcheminement": "VIOLS LE FORT", + "nomCommune": "VIOLS LE FORT" }, { - "codePostal": "53100", - "codeCommune": "53174", - "libelleAcheminement": "PARIGNE SUR BRAYE", - "nomCommune": "PARIGNE SUR BRAYE" + "codePostal": "34480", + "codeCommune": "34214", + "libelleAcheminement": "POUZOLLES", + "nomCommune": "POUZOLLES" }, { - "codePostal": "66370", - "codeCommune": "66140", - "libelleAcheminement": "PEZILLA LA RIVIERE", - "nomCommune": "PEZILLA LA RIVIERE" + "codePostal": "24430", + "codeCommune": "24350", + "libelleAcheminement": "RAZAC SUR L ISLE", + "nomCommune": "RAZAC SUR L ISLE" }, { - "codePostal": "61150", - "codeCommune": "61153", - "libelleAcheminement": "ECOUCHE LES VALLEES", - "nomCommune": "ECOUCHE LES VALLEES" + "codePostal": "25410", + "codeCommune": "25502", + "libelleAcheminement": "ROSET FLUANS", + "nomCommune": "ROSET FLUANS" }, { - "codePostal": "28410", - "codeCommune": "28056", - "libelleAcheminement": "BOUTIGNY PROUAIS", - "nomCommune": "BOUTIGNY PROUAIS" + "codePostal": "35150", + "codeCommune": "35002", + "libelleAcheminement": "AMANLIS", + "nomCommune": "AMANLIS" }, { - "codePostal": "53360", - "codeCommune": "53186", - "libelleAcheminement": "QUELAINES ST GAULT", - "nomCommune": "QUELAINES ST GAULT" + "codePostal": "34600", + "codeCommune": "34216", + "libelleAcheminement": "LE PRADAL", + "nomCommune": "LE PRADAL" }, { - "codePostal": "66500", - "codeCommune": "66149", - "libelleAcheminement": "PRADES", - "nomCommune": "PRADES" + "codePostal": "24600", + "codeCommune": "24352", + "libelleAcheminement": "RIBERAC", + "nomCommune": "RIBERAC" }, { - "codePostal": "61150", - "codeCommune": "61153", - "libelleAcheminement": "ECOUCHE LES VALLEES", - "nomCommune": "ECOUCHE LES VALLEES" + "codePostal": "25680", + "codeCommune": "25505", + "libelleAcheminement": "ROUGEMONT", + "nomCommune": "ROUGEMONT" }, { - "codePostal": "28210", - "codeCommune": "28058", - "libelleAcheminement": "BRECHAMPS", - "nomCommune": "BRECHAMPS" + "codePostal": "35560", + "codeCommune": "35004", + "libelleAcheminement": "VAL COUESNON", + "nomCommune": "VAL COUESNON" }, { - "codePostal": "53110", - "codeCommune": "53189", - "libelleAcheminement": "RENNES EN GRENOUILLES", - "nomCommune": "RENNES EN GRENOUILLES" + "codePostal": "34220", + "codeCommune": "34228", + "libelleAcheminement": "RIEUSSEC", + "nomCommune": "RIEUSSEC" }, { - "codePostal": "66730", - "codeCommune": "66151", - "libelleAcheminement": "PRATS DE SOURNIA", - "nomCommune": "PRATS DE SOURNIA" + "codePostal": "24170", + "codeCommune": "24360", + "libelleAcheminement": "SAGELAT", + "nomCommune": "SAGELAT" }, { - "codePostal": "61500", - "codeCommune": "61164", - "libelleAcheminement": "LA FERRIERE BECHET", - "nomCommune": "LA FERRIERE BECHET" + "codePostal": "25210", + "codeCommune": "25512", + "libelleAcheminement": "LE RUSSEY", + "nomCommune": "LE RUSSEY" }, { - "codePostal": "28160", - "codeCommune": "28061", - "libelleAcheminement": "BROU", - "nomCommune": "BROU" + "codePostal": "35600", + "codeCommune": "35013", + "libelleAcheminement": "BAINS SUR OUST", + "nomCommune": "BAINS SUR OUST" }, { - "codePostal": "53300", - "codeCommune": "53216", - "libelleAcheminement": "ST FRAIMBAULT DE PRIERES", - "nomCommune": "ST FRAIMBAULT DE PRIERES" + "codePostal": "34220", + "codeCommune": "34229", + "libelleAcheminement": "RIOLS", + "nomCommune": "RIOLS" }, { - "codePostal": "66210", - "codeCommune": "66154", - "libelleAcheminement": "PUYVALADOR", - "nomCommune": "PUYVALADOR" + "codePostal": "24520", + "codeCommune": "24361", + "libelleAcheminement": "ST AGNE", + "nomCommune": "ST AGNE" }, { - "codePostal": "61420", - "codeCommune": "61165", - "libelleAcheminement": "LA FERRIERE BOCHARD", - "nomCommune": "LA FERRIERE BOCHARD" + "codePostal": "25270", + "codeCommune": "25513", + "libelleAcheminement": "STE ANNE", + "nomCommune": "STE ANNE" }, { - "codePostal": "28240", - "codeCommune": "28071", - "libelleAcheminement": "CHAMPROND EN GATINE", - "nomCommune": "CHAMPROND EN GATINE" + "codePostal": "35680", + "codeCommune": "35014", + "libelleAcheminement": "BAIS", + "nomCommune": "BAIS" }, { - "codePostal": "53240", - "codeCommune": "53224", - "libelleAcheminement": "ST GERMAIN LE FOUILLOUX", - "nomCommune": "ST GERMAIN LE FOUILLOUX" + "codePostal": "34650", + "codeCommune": "34233", + "libelleAcheminement": "ROQUEREDONDE", + "nomCommune": "ROQUEREDONDE" }, { - "codePostal": "66360", - "codeCommune": "66157", - "libelleAcheminement": "RAILLEU", - "nomCommune": "RAILLEU" + "codePostal": "24260", + "codeCommune": "24377", + "libelleAcheminement": "ST AVIT DE VIALARD", + "nomCommune": "ST AVIT DE VIALARD" }, { - "codePostal": "61390", - "codeCommune": "61166", - "libelleAcheminement": "FERRIERES LA VERRERIE", - "nomCommune": "FERRIERES LA VERRERIE" + "codePostal": "25520", + "codeCommune": "25517", + "libelleAcheminement": "ST GORGON MAIN", + "nomCommune": "ST GORGON MAIN" }, { - "codePostal": "28700", - "codeCommune": "28073", - "libelleAcheminement": "CHAMPSERU", - "nomCommune": "CHAMPSERU" + "codePostal": "35500", + "codeCommune": "35015", + "libelleAcheminement": "BALAZE", + "nomCommune": "BALAZE" }, { - "codePostal": "53110", - "codeCommune": "53235", - "libelleAcheminement": "STE MARIE DU BOIS", - "nomCommune": "STE MARIE DU BOIS" + "codePostal": "34320", + "codeCommune": "34237", + "libelleAcheminement": "ROUJAN", + "nomCommune": "ROUJAN" }, { - "codePostal": "66750", - "codeCommune": "66171", - "libelleAcheminement": "ST CYPRIEN", - "nomCommune": "ST CYPRIEN" + "codePostal": "24540", + "codeCommune": "24378", + "libelleAcheminement": "ST AVIT RIVIERE", + "nomCommune": "ST AVIT RIVIERE" }, { - "codePostal": "61470", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" + "codePostal": "25113", + "codeCommune": "25523", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "28330", - "codeCommune": "28080", - "libelleAcheminement": "CHARBONNIERES", - "nomCommune": "CHARBONNIERES" + "codePostal": "35420", + "codeCommune": "35018", + "libelleAcheminement": "LA BAZOUGE DU DESERT", + "nomCommune": "LA BAZOUGE DU DESERT" }, { - "codePostal": "53500", - "codeCommune": "53245", - "libelleAcheminement": "ST PIERRE DES LANDES", - "nomCommune": "ST PIERRE DES LANDES" + "codePostal": "34190", + "codeCommune": "34238", + "libelleAcheminement": "ST ANDRE DE BUEGES", + "nomCommune": "ST ANDRE DE BUEGES" }, { - "codePostal": "66510", - "codeCommune": "66176", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "24700", + "codeCommune": "24380", + "libelleAcheminement": "ST BARTHELEMY DE BELLEGARDE", + "nomCommune": "ST BARTHELEMY DE BELLEGARDE" }, { - "codePostal": "61550", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" + "codePostal": "25260", + "codeCommune": "25524", + "libelleAcheminement": "ST MAURICE COLOMBIER", + "nomCommune": "ST MAURICE COLOMBIER" }, { - "codePostal": "28500", - "codeCommune": "28082", - "libelleAcheminement": "CHARPONT", - "nomCommune": "CHARPONT" + "codePostal": "35830", + "codeCommune": "35024", + "libelleAcheminement": "BETTON", + "nomCommune": "BETTON" }, { - "codePostal": "53270", - "codeCommune": "53248", - "libelleAcheminement": "ST PIERRE SUR ERVE", - "nomCommune": "ST PIERRE SUR ERVE" + "codePostal": "34160", + "codeCommune": "34242", + "libelleAcheminement": "ST BAUZILLE DE MONTMEL", + "nomCommune": "ST BAUZILLE DE MONTMEL" }, { - "codePostal": "66260", - "codeCommune": "66179", - "libelleAcheminement": "ST LAURENT DE CERDANS", - "nomCommune": "ST LAURENT DE CERDANS" + "codePostal": "24560", + "codeCommune": "24385", + "libelleAcheminement": "ST CERNIN DE LABARDE", + "nomCommune": "ST CERNIN DE LABARDE" }, { - "codePostal": "61550", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" + "codePostal": "25430", + "codeCommune": "25529", + "libelleAcheminement": "SANCEY", + "nomCommune": "SANCEY" }, { - "codePostal": "28130", - "codeCommune": "28084", - "libelleAcheminement": "CHARTAINVILLIERS", - "nomCommune": "CHARTAINVILLIERS" + "codePostal": "35360", + "codeCommune": "35027", + "libelleAcheminement": "BOISGERVILLY", + "nomCommune": "BOISGERVILLY" }, { - "codePostal": "53160", - "codeCommune": "53249", - "libelleAcheminement": "VIMARTIN SUR ORTHE", - "nomCommune": "VIMARTIN SUR ORTHE" + "codePostal": "34670", + "codeCommune": "34244", + "libelleAcheminement": "ST BRES", + "nomCommune": "ST BRES" }, { - "codePostal": "66800", - "codeCommune": "66181", - "libelleAcheminement": "STE LEOCADIE", - "nomCommune": "STE LEOCADIE" + "codePostal": "24550", + "codeCommune": "24386", + "libelleAcheminement": "ST CERNIN DE L HERM", + "nomCommune": "ST CERNIN DE L HERM" }, { - "codePostal": "61550", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" + "codePostal": "25330", + "codeCommune": "25533", + "libelleAcheminement": "SARAZ", + "nomCommune": "SARAZ" }, { - "codePostal": "28120", - "codeCommune": "28095", - "libelleAcheminement": "CHAUFFOURS", - "nomCommune": "CHAUFFOURS" + "codePostal": "35270", + "codeCommune": "35029", + "libelleAcheminement": "BONNEMAIN", + "nomCommune": "BONNEMAIN" }, { - "codePostal": "53540", - "codeCommune": "53250", - "libelleAcheminement": "ST POIX", - "nomCommune": "ST POIX" + "codePostal": "34400", + "codeCommune": "34246", + "libelleAcheminement": "ENTRE VIGNES", + "nomCommune": "ENTRE VIGNES" }, { - "codePostal": "66130", - "codeCommune": "66185", - "libelleAcheminement": "ST MICHEL DE LLOTES", - "nomCommune": "ST MICHEL DE LLOTES" + "codePostal": "24250", + "codeCommune": "24395", + "libelleAcheminement": "ST CYBRANET", + "nomCommune": "ST CYBRANET" }, { - "codePostal": "61210", - "codeCommune": "61189", - "libelleAcheminement": "GIEL COURTEILLES", - "nomCommune": "GIEL COURTEILLES" + "codePostal": "25110", + "codeCommune": "25538", + "libelleAcheminement": "SECHIN", + "nomCommune": "SECHIN" }, { - "codePostal": "28500", - "codeCommune": "28098", - "libelleAcheminement": "CHERISY", - "nomCommune": "CHERISY" + "codePostal": "35320", + "codeCommune": "35030", + "libelleAcheminement": "LA BOSSE DE BRETAGNE", + "nomCommune": "LA BOSSE DE BRETAGNE" }, { - "codePostal": "53160", - "codeCommune": "53256", - "libelleAcheminement": "ST THOMAS DE COURCERIERS", - "nomCommune": "ST THOMAS DE COURCERIERS" + "codePostal": "34270", + "codeCommune": "34248", + "libelleAcheminement": "STE CROIX DE QUINTILLARGUES", + "nomCommune": "STE CROIX DE QUINTILLARGUES" }, { - "codePostal": "66280", - "codeCommune": "66189", - "libelleAcheminement": "SALEILLES", - "nomCommune": "SALEILLES" + "codePostal": "24360", + "codeCommune": "24398", + "libelleAcheminement": "ST ESTEPHE", + "nomCommune": "ST ESTEPHE" }, { - "codePostal": "61310", - "codeCommune": "61190", - "libelleAcheminement": "GINAI", - "nomCommune": "GINAI" + "codePostal": "25230", + "codeCommune": "25539", + "libelleAcheminement": "SELONCOURT", + "nomCommune": "SELONCOURT" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "35230", + "codeCommune": "35032", + "libelleAcheminement": "BOURGBARRE", + "nomCommune": "BOURGBARRE" }, { - "codePostal": "53390", - "codeCommune": "53259", - "libelleAcheminement": "SENONNES", - "nomCommune": "SENONNES" + "codePostal": "34160", + "codeCommune": "34256", + "libelleAcheminement": "ST GENIES DES MOURGUES", + "nomCommune": "ST GENIES DES MOURGUES" }, { - "codePostal": "66360", - "codeCommune": "66193", - "libelleAcheminement": "SERDINYA", - "nomCommune": "SERDINYA" + "codePostal": "24460", + "codeCommune": "24408", + "libelleAcheminement": "ST FRONT D ALEMPS", + "nomCommune": "ST FRONT D ALEMPS" }, { - "codePostal": "61240", - "codeCommune": "61192", - "libelleAcheminement": "GODISSON", - "nomCommune": "GODISSON" + "codePostal": "25330", + "codeCommune": "25545", + "libelleAcheminement": "SILLEY AMANCEY", + "nomCommune": "SILLEY AMANCEY" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "35370", + "codeCommune": "35038", + "libelleAcheminement": "BREAL SOUS VITRE", + "nomCommune": "BREAL SOUS VITRE" }, { - "codePostal": "53210", - "codeCommune": "53262", - "libelleAcheminement": "SOULGE SUR OUETTE", - "nomCommune": "SOULGE SUR OUETTE" + "codePostal": "34610", + "codeCommune": "34260", + "libelleAcheminement": "ST GERVAIS SUR MARE", + "nomCommune": "ST GERVAIS SUR MARE" }, { - "codePostal": "66400", - "codeCommune": "66199", - "libelleAcheminement": "TAILLET", - "nomCommune": "TAILLET" + "codePostal": "24130", + "codeCommune": "24413", + "libelleAcheminement": "ST GEORGES BLANCANEIX", + "nomCommune": "ST GEORGES BLANCANEIX" }, { - "codePostal": "61550", - "codeCommune": "61193", - "libelleAcheminement": "LA GONFRIERE", - "nomCommune": "LA GONFRIERE" + "codePostal": "25470", + "codeCommune": "25559", + "libelleAcheminement": "THIEBOUHANS", + "nomCommune": "THIEBOUHANS" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "35530", + "codeCommune": "35039", + "libelleAcheminement": "BRECE", + "nomCommune": "BRECE" }, { - "codePostal": "53270", - "codeCommune": "53264", - "libelleAcheminement": "THORIGNE EN CHARNIE", - "nomCommune": "THORIGNE EN CHARNIE" + "codePostal": "34150", + "codeCommune": "34261", + "libelleAcheminement": "ST GUILHEM LE DESERT", + "nomCommune": "ST GUILHEM LE DESERT" }, { - "codePostal": "66320", - "codeCommune": "66201", - "libelleAcheminement": "TARERACH", - "nomCommune": "TARERACH" + "codePostal": "24140", + "codeCommune": "24422", + "libelleAcheminement": "ST HILAIRE D ESTISSAC", + "nomCommune": "ST HILAIRE D ESTISSAC" }, { - "codePostal": "61150", - "codeCommune": "61194", - "libelleAcheminement": "MONTS SUR ORNE", - "nomCommune": "MONTS SUR ORNE" + "codePostal": "25640", + "codeCommune": "25566", + "libelleAcheminement": "LA TOUR DE SCAY", + "nomCommune": "LA TOUR DE SCAY" }, { - "codePostal": "28480", - "codeCommune": "28105", - "libelleAcheminement": "COMBRES", - "nomCommune": "COMBRES" + "codePostal": "35330", + "codeCommune": "35046", + "libelleAcheminement": "LES BRULAIS", + "nomCommune": "LES BRULAIS" }, { - "codePostal": "53120", - "codeCommune": "53270", - "libelleAcheminement": "VIEUVY", - "nomCommune": "VIEUVY" + "codePostal": "34360", + "codeCommune": "34269", + "libelleAcheminement": "ST JEAN DE MINERVOIS", + "nomCommune": "ST JEAN DE MINERVOIS" }, { - "codePostal": "66720", - "codeCommune": "66205", - "libelleAcheminement": "TAUTAVEL", - "nomCommune": "TAUTAVEL" + "codePostal": "24500", + "codeCommune": "24423", + "libelleAcheminement": "ST JULIEN INNOCENCE EULALIE", + "nomCommune": "ST JULIEN INNOCENCE EULALIE" }, { - "codePostal": "61130", - "codeCommune": "61196", - "libelleAcheminement": "BELFORET EN PERCHE", - "nomCommune": "BELFORET EN PERCHE" + "codePostal": "25620", + "codeCommune": "25569", + "libelleAcheminement": "TREPOT", + "nomCommune": "TREPOT" }, { - "codePostal": "28200", - "codeCommune": "28106", - "libelleAcheminement": "CONIE MOLITARD", - "nomCommune": "CONIE MOLITARD" + "codePostal": "35500", + "codeCommune": "35052", + "libelleAcheminement": "CHAMPEAUX", + "nomCommune": "CHAMPEAUX" }, { - "codePostal": "54260", - "codeCommune": "54011", - "libelleAcheminement": "ALLONDRELLE LA MALMAISON", - "nomCommune": "ALLONDRELLE LA MALMAISON" + "codePostal": "34390", + "codeCommune": "34273", + "libelleAcheminement": "ST MARTIN DE L ARCON", + "nomCommune": "ST MARTIN DE L ARCON" }, { - "codePostal": "66440", - "codeCommune": "66212", - "libelleAcheminement": "TORREILLES", - "nomCommune": "TORREILLES" + "codePostal": "24400", + "codeCommune": "24436", + "libelleAcheminement": "ST LAURENT DES HOMMES", + "nomCommune": "ST LAURENT DES HOMMES" }, { - "codePostal": "61320", - "codeCommune": "61209", - "libelleAcheminement": "JOUE DU BOIS", - "nomCommune": "JOUE DU BOIS" + "codePostal": "25680", + "codeCommune": "25572", + "libelleAcheminement": "TROUVANS", + "nomCommune": "TROUVANS" }, { - "codePostal": "28630", - "codeCommune": "28107", - "libelleAcheminement": "CORANCEZ", - "nomCommune": "CORANCEZ" + "codePostal": "35330", + "codeCommune": "35057", + "libelleAcheminement": "LA CHAPELLE BOUEXIC", + "nomCommune": "LA CHAPELLE BOUEXIC" }, { - "codePostal": "54470", - "codeCommune": "54019", - "libelleAcheminement": "ANSAUVILLE", - "nomCommune": "ANSAUVILLE" + "codePostal": "34520", + "codeCommune": "34278", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "66340", - "codeCommune": "66220", - "libelleAcheminement": "VALCEBOLLERE", - "nomCommune": "VALCEBOLLERE" + "codePostal": "24290", + "codeCommune": "24443", + "libelleAcheminement": "ST LEON SUR VEZERE", + "nomCommune": "ST LEON SUR VEZERE" }, { - "codePostal": "61150", - "codeCommune": "61210", - "libelleAcheminement": "JOUE DU PLAIN", - "nomCommune": "JOUE DU PLAIN" + "codePostal": "25340", + "codeCommune": "25574", + "libelleAcheminement": "UZELLE", + "nomCommune": "UZELLE" }, { - "codePostal": "28140", - "codeCommune": "28108", - "libelleAcheminement": "CORMAINVILLE", - "nomCommune": "CORMAINVILLE" + "codePostal": "35360", + "codeCommune": "35060", + "libelleAcheminement": "LA CHAPELLE DU LOU DU LAC", + "nomCommune": "LA CHAPELLE DU LOU DU LAC" }, { - "codePostal": "54530", - "codeCommune": "54022", - "libelleAcheminement": "ARNAVILLE", - "nomCommune": "ARNAVILLE" + "codePostal": "34230", + "codeCommune": "34281", + "libelleAcheminement": "ST PARGOIRE", + "nomCommune": "ST PARGOIRE" }, { - "codePostal": "66320", - "codeCommune": "66221", - "libelleAcheminement": "VALMANYA", - "nomCommune": "VALMANYA" + "codePostal": "24300", + "codeCommune": "24451", + "libelleAcheminement": "ST MARTIAL DE VALETTE", + "nomCommune": "ST MARTIAL DE VALETTE" }, { - "codePostal": "61320", - "codeCommune": "61216", - "libelleAcheminement": "LA LANDE DE GOULT", - "nomCommune": "LA LANDE DE GOULT" + "codePostal": "25220", + "codeCommune": "25575", + "libelleAcheminement": "VAIRE", + "nomCommune": "VAIRE" }, { - "codePostal": "28500", - "codeCommune": "28117", - "libelleAcheminement": "CRECY COUVE", - "nomCommune": "CRECY COUVE" + "codePostal": "35660", + "codeCommune": "35064", + "libelleAcheminement": "LA CHAPELLE DE BRAIN", + "nomCommune": "LA CHAPELLE DE BRAIN" }, { - "codePostal": "54760", - "codeCommune": "54024", - "libelleAcheminement": "ARRAYE ET HAN", - "nomCommune": "ARRAYE ET HAN" + "codePostal": "34520", + "codeCommune": "34283", + "libelleAcheminement": "ST PIERRE DE LA FAGE", + "nomCommune": "ST PIERRE DE LA FAGE" }, { - "codePostal": "66300", - "codeCommune": "66226", - "libelleAcheminement": "VILLEMOLAQUE", - "nomCommune": "VILLEMOLAQUE" + "codePostal": "24610", + "codeCommune": "24454", + "libelleAcheminement": "ST MARTIN DE GURSON", + "nomCommune": "ST MARTIN DE GURSON" }, { - "codePostal": "61100", - "codeCommune": "61221", - "libelleAcheminement": "LANDIGOU", - "nomCommune": "LANDIGOU" + "codePostal": "25220", + "codeCommune": "25575", + "libelleAcheminement": "VAIRE", + "nomCommune": "VAIRE" }, { - "codePostal": "28160", - "codeCommune": "28127", - "libelleAcheminement": "DANGEAU", - "nomCommune": "DANGEAU" + "codePostal": "35590", + "codeCommune": "35065", + "libelleAcheminement": "LA CHAPELLE THOUARAULT", + "nomCommune": "LA CHAPELLE THOUARAULT" }, { - "codePostal": "54510", - "codeCommune": "54025", - "libelleAcheminement": "ART SUR MEURTHE", - "nomCommune": "ART SUR MEURTHE" + "codePostal": "34400", + "codeCommune": "34288", + "libelleAcheminement": "ST SERIES", + "nomCommune": "ST SERIES" }, { - "codePostal": "66610", - "codeCommune": "66228", - "libelleAcheminement": "VILLENEUVE LA RIVIERE", - "nomCommune": "VILLENEUVE LA RIVIERE" + "codePostal": "24600", + "codeCommune": "24460", + "libelleAcheminement": "ST MEARD DE DRONE", + "nomCommune": "ST MEARD DE DRONE" }, { - "codePostal": "61100", - "codeCommune": "61222", - "libelleAcheminement": "LANDISACQ", - "nomCommune": "LANDISACQ" + "codePostal": "25640", + "codeCommune": "25579", + "libelleAcheminement": "VAL DE ROULANS", + "nomCommune": "VAL DE ROULANS" }, { - "codePostal": "28200", - "codeCommune": "28132", - "libelleAcheminement": "DONNEMAIN ST MAMES", - "nomCommune": "DONNEMAIN ST MAMES" + "codePostal": "35250", + "codeCommune": "35067", + "libelleAcheminement": "CHASNE SUR ILLET", + "nomCommune": "CHASNE SUR ILLET" }, { - "codePostal": "54560", - "codeCommune": "54029", - "libelleAcheminement": "AUDUN LE ROMAN", - "nomCommune": "AUDUN LE ROMAN" + "codePostal": "34330", + "codeCommune": "34293", + "libelleAcheminement": "LA SALVETAT SUR AGOUT", + "nomCommune": "LA SALVETAT SUR AGOUT" }, { - "codePostal": "67490", - "codeCommune": "67006", - "libelleAcheminement": "ALTENHEIM", - "nomCommune": "ALTENHEIM" + "codePostal": "24610", + "codeCommune": "24461", + "libelleAcheminement": "ST MEARD DE GURCON", + "nomCommune": "ST MEARD DE GURCON" }, { - "codePostal": "61320", - "codeCommune": "61228", - "libelleAcheminement": "L OREE D ECOUVES", - "nomCommune": "L OREE D ECOUVES" + "codePostal": "25380", + "codeCommune": "25588", + "libelleAcheminement": "VAUCLUSE", + "nomCommune": "VAUCLUSE" }, { - "codePostal": "28230", - "codeCommune": "28135", - "libelleAcheminement": "DROUE SUR DROUETTE", - "nomCommune": "DROUE SUR DROUETTE" + "codePostal": "35220", + "codeCommune": "35068", + "libelleAcheminement": "CHATEAUBOURG", + "nomCommune": "CHATEAUBOURG" }, { - "codePostal": "54385", - "codeCommune": "54034", - "libelleAcheminement": "AVRAINVILLE", - "nomCommune": "AVRAINVILLE" + "codePostal": "34410", + "codeCommune": "34299", + "libelleAcheminement": "SERIGNAN", + "nomCommune": "SERIGNAN" }, { - "codePostal": "67130", - "codeCommune": "67027", - "libelleAcheminement": "BELMONT", - "nomCommune": "BELMONT" + "codePostal": "24400", + "codeCommune": "24462", + "libelleAcheminement": "ST MEDARD DE MUSSIDAN", + "nomCommune": "ST MEDARD DE MUSSIDAN" }, { - "codePostal": "61400", - "codeCommune": "61229", - "libelleAcheminement": "LOISAIL", - "nomCommune": "LOISAIL" + "codePostal": "25360", + "codeCommune": "25590", + "libelleAcheminement": "VAUDRIVILLERS", + "nomCommune": "VAUDRIVILLERS" }, { - "codePostal": "28500", - "codeCommune": "28136", - "libelleAcheminement": "ECLUZELLES", - "nomCommune": "ECLUZELLES" + "codePostal": "35220", + "codeCommune": "35068", + "libelleAcheminement": "CHATEAUBOURG", + "nomCommune": "CHATEAUBOURG" }, { - "codePostal": "54210", - "codeCommune": "54037", - "libelleAcheminement": "AZELOT", - "nomCommune": "AZELOT" + "codePostal": "34600", + "codeCommune": "34308", + "libelleAcheminement": "TAUSSAC LA BILLIERE", + "nomCommune": "TAUSSAC LA BILLIERE" }, { - "codePostal": "67210", - "codeCommune": "67031", - "libelleAcheminement": "BERNARDSWILLER", - "nomCommune": "BERNARDSWILLER" + "codePostal": "24380", + "codeCommune": "24468", + "libelleAcheminement": "ST MICHEL DE VILLADEIX", + "nomCommune": "ST MICHEL DE VILLADEIX" }, { - "codePostal": "61290", - "codeCommune": "61230", - "libelleAcheminement": "LONGNY LES VILLAGES", - "nomCommune": "LONGNY LES VILLAGES" + "codePostal": "25110", + "codeCommune": "25604", + "libelleAcheminement": "VERNE", + "nomCommune": "VERNE" }, { - "codePostal": "28230", - "codeCommune": "28140", - "libelleAcheminement": "EPERNON", - "nomCommune": "EPERNON" + "codePostal": "35133", + "codeCommune": "35071", + "libelleAcheminement": "LE CHATELLIER", + "nomCommune": "LE CHATELLIER" }, { - "codePostal": "54170", - "codeCommune": "54041", - "libelleAcheminement": "BAGNEUX", - "nomCommune": "BAGNEUX" + "codePostal": "34820", + "codeCommune": "34309", + "libelleAcheminement": "TEYRAN", + "nomCommune": "TEYRAN" }, { - "codePostal": "67370", - "codeCommune": "67034", - "libelleAcheminement": "BERSTETT", - "nomCommune": "BERSTETT" + "codePostal": "24520", + "codeCommune": "24472", + "libelleAcheminement": "ST NEXANS", + "nomCommune": "ST NEXANS" }, { - "codePostal": "61290", - "codeCommune": "61230", - "libelleAcheminement": "LONGNY LES VILLAGES", - "nomCommune": "LONGNY LES VILLAGES" + "codePostal": "25580", + "codeCommune": "25605", + "libelleAcheminement": "VERNIERFONTAINE", + "nomCommune": "VERNIERFONTAINE" }, { - "codePostal": "28120", - "codeCommune": "28141", - "libelleAcheminement": "ERMENONVILLE LA GRANDE", - "nomCommune": "ERMENONVILLE LA GRANDE" + "codePostal": "35310", + "codeCommune": "35080", + "libelleAcheminement": "CINTRE", + "nomCommune": "CINTRE" }, { - "codePostal": "54170", - "codeCommune": "54047", - "libelleAcheminement": "BARISEY LA COTE", - "nomCommune": "BARISEY LA COTE" + "codePostal": "34490", + "codeCommune": "34310", + "libelleAcheminement": "THEZAN LES BEZIERS", + "nomCommune": "THEZAN LES BEZIERS" }, { - "codePostal": "67360", - "codeCommune": "67037", - "libelleAcheminement": "BIBLISHEIM", - "nomCommune": "BIBLISHEIM" + "codePostal": "24600", + "codeCommune": "24477", + "libelleAcheminement": "ST PARDOUX DE DRONE", + "nomCommune": "ST PARDOUX DE DRONE" }, { - "codePostal": "61150", - "codeCommune": "61237", - "libelleAcheminement": "LOUGE SUR MAIRE", - "nomCommune": "LOUGE SUR MAIRE" + "codePostal": "25430", + "codeCommune": "25607", + "libelleAcheminement": "VERNOIS LES BELVOIR", + "nomCommune": "VERNOIS LES BELVOIR" }, { - "codePostal": "28800", - "codeCommune": "28153", - "libelleAcheminement": "FLACEY", - "nomCommune": "FLACEY" + "codePostal": "35134", + "codeCommune": "35082", + "libelleAcheminement": "COESMES", + "nomCommune": "COESMES" }, { - "codePostal": "54370", - "codeCommune": "54050", - "libelleAcheminement": "BATHELEMONT", - "nomCommune": "BATHELEMONT" + "codePostal": "34230", + "codeCommune": "34313", + "libelleAcheminement": "TRESSAN", + "nomCommune": "TRESSAN" }, { - "codePostal": "67170", - "codeCommune": "67039", - "libelleAcheminement": "BILWISHEIM", - "nomCommune": "BILWISHEIM" + "codePostal": "24380", + "codeCommune": "24480", + "libelleAcheminement": "ST PAUL DE SERRE", + "nomCommune": "ST PAUL DE SERRE" }, { - "codePostal": "61500", - "codeCommune": "61240", - "libelleAcheminement": "MACE", - "nomCommune": "MACE" + "codePostal": "25270", + "codeCommune": "25621", + "libelleAcheminement": "VILLENEUVE D AMONT", + "nomCommune": "VILLENEUVE D AMONT" }, { - "codePostal": "28240", - "codeCommune": "28156", - "libelleAcheminement": "FONTAINE SIMON", - "nomCommune": "FONTAINE SIMON" + "codePostal": "35270", + "codeCommune": "35085", + "libelleAcheminement": "COMBOURG", + "nomCommune": "COMBOURG" }, { - "codePostal": "54800", - "codeCommune": "54058", - "libelleAcheminement": "BECHAMPS", - "nomCommune": "BECHAMPS" + "codePostal": "34520", + "codeCommune": "34317", + "libelleAcheminement": "LA VACQUERIE ST MARTIN CASTRIES", + "nomCommune": "LA VACQUERIE ET ST MARTIN DE CASTRIES" }, { - "codePostal": "67600", - "codeCommune": "67040", - "libelleAcheminement": "BINDERNHEIM", - "nomCommune": "BINDERNHEIM" + "codePostal": "24330", + "codeCommune": "24484", + "libelleAcheminement": "ST PIERRE DE CHIGNAC", + "nomCommune": "ST PIERRE DE CHIGNAC" }, { - "codePostal": "61600", - "codeCommune": "61243", - "libelleAcheminement": "MAGNY LE DESERT", - "nomCommune": "MAGNY LE DESERT" + "codePostal": "25110", + "codeCommune": "25626", + "libelleAcheminement": "VILLERS ST MARTIN", + "nomCommune": "VILLERS ST MARTIN" }, { - "codePostal": "28630", - "codeCommune": "28158", - "libelleAcheminement": "FONTENAY SUR EURE", - "nomCommune": "FONTENAY SUR EURE" + "codePostal": "35500", + "codeCommune": "35087", + "libelleAcheminement": "CORNILLE", + "nomCommune": "CORNILLE" }, { - "codePostal": "54610", - "codeCommune": "54059", - "libelleAcheminement": "BELLEAU", - "nomCommune": "BELLEAU" + "codePostal": "34320", + "codeCommune": "34319", + "libelleAcheminement": "VAILHAN", + "nomCommune": "VAILHAN" }, { - "codePostal": "67140", - "codeCommune": "67060", - "libelleAcheminement": "BOURGHEIM", - "nomCommune": "BOURGHEIM" + "codePostal": "24700", + "codeCommune": "24494", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "61230", - "codeCommune": "61252", - "libelleAcheminement": "MARDILLY", - "nomCommune": "MARDILLY" + "codePostal": "25110", + "codeCommune": "25629", + "libelleAcheminement": "VOILLANS", + "nomCommune": "VOILLANS" }, { - "codePostal": "28300", - "codeCommune": "28163", - "libelleAcheminement": "FRESNAY LE GILMERT", - "nomCommune": "FRESNAY LE GILMERT" + "codePostal": "35320", + "codeCommune": "35089", + "libelleAcheminement": "LA COUYERE", + "nomCommune": "LA COUYERE" }, { - "codePostal": "54610", - "codeCommune": "54059", - "libelleAcheminement": "BELLEAU", - "nomCommune": "BELLEAU" + "codePostal": "34570", + "codeCommune": "34320", + "libelleAcheminement": "VAILHAUQUES", + "nomCommune": "VAILHAUQUES" }, { - "codePostal": "67220", - "codeCommune": "67063", - "libelleAcheminement": "BREITENBACH", - "nomCommune": "BREITENBACH" + "codePostal": "24190", + "codeCommune": "24502", + "libelleAcheminement": "ST SEVERIN D ESTISSAC", + "nomCommune": "ST SEVERIN D ESTISSAC" }, { - "codePostal": "61170", - "codeCommune": "61258", - "libelleAcheminement": "LE MELE SUR SARTHE", - "nomCommune": "LE MELE SUR SARTHE" + "codePostal": "25320", + "codeCommune": "25631", + "libelleAcheminement": "VORGES LES PINS", + "nomCommune": "VORGES LES PINS" }, { - "codePostal": "28500", - "codeCommune": "28170", - "libelleAcheminement": "GARANCIERES EN DROUAIS", - "nomCommune": "GARANCIERES EN DROUAIS" + "codePostal": "35640", + "codeCommune": "35103", + "libelleAcheminement": "EANCE", + "nomCommune": "EANCE" }, { - "codePostal": "54120", - "codeCommune": "54065", - "libelleAcheminement": "BERTRICHAMPS", - "nomCommune": "BERTRICHAMPS" + "codePostal": "34350", + "codeCommune": "34324", + "libelleAcheminement": "VALRAS PLAGE", + "nomCommune": "VALRAS PLAGE" }, { - "codePostal": "67160", - "codeCommune": "67074", - "libelleAcheminement": "CLEEBOURG", - "nomCommune": "CLEEBOURG" + "codePostal": "24410", + "codeCommune": "24511", + "libelleAcheminement": "ST VINCENT JALMOUTIERS", + "nomCommune": "ST VINCENT JALMOUTIERS" }, { - "codePostal": "61270", - "codeCommune": "61259", - "libelleAcheminement": "LE MENIL BERARD", - "nomCommune": "LE MENIL BERARD" + "codePostal": "26150", + "codeCommune": "26001", + "libelleAcheminement": "SOLAURE EN DIOIS", + "nomCommune": "SOLAURE EN DIOIS" }, { - "codePostal": "28140", - "codeCommune": "28190", - "libelleAcheminement": "GUILLONVILLE", - "nomCommune": "GUILLONVILLE" + "codePostal": "35370", + "codeCommune": "35109", + "libelleAcheminement": "ETRELLES", + "nomCommune": "ETRELLES" }, { - "codePostal": "54540", - "codeCommune": "54075", - "libelleAcheminement": "BIONVILLE", - "nomCommune": "BIONVILLE" + "codePostal": "34220", + "codeCommune": "34326", + "libelleAcheminement": "VELIEUX", + "nomCommune": "VELIEUX" }, { - "codePostal": "67510", - "codeCommune": "67075", - "libelleAcheminement": "CLIMBACH", - "nomCommune": "CLIMBACH" + "codePostal": "24240", + "codeCommune": "24523", + "libelleAcheminement": "SAUSSIGNAC", + "nomCommune": "SAUSSIGNAC" }, { - "codePostal": "61210", - "codeCommune": "61265", - "libelleAcheminement": "MENIL GONDOUIN", - "nomCommune": "MENIL GONDOUIN" + "codePostal": "26140", + "codeCommune": "26002", + "libelleAcheminement": "ALBON", + "nomCommune": "ALBON" }, { - "codePostal": "28480", - "codeCommune": "28192", - "libelleAcheminement": "HAPPONVILLIERS", - "nomCommune": "HAPPONVILLIERS" + "codePostal": "35440", + "codeCommune": "35110", + "libelleAcheminement": "FEINS", + "nomCommune": "FEINS" }, { - "codePostal": "54360", - "codeCommune": "54076", - "libelleAcheminement": "BLAINVILLE SUR L EAU", - "nomCommune": "BLAINVILLE SUR L EAU" + "codePostal": "34110", + "codeCommune": "34333", + "libelleAcheminement": "VIC LA GARDIOLE", + "nomCommune": "VIC LA GARDIOLE" }, { - "codePostal": "67310", - "codeCommune": "67085", - "libelleAcheminement": "DANGOLSHEIM", - "nomCommune": "DANGOLSHEIM" + "codePostal": "24420", + "codeCommune": "24527", + "libelleAcheminement": "SAVIGNAC LES EGLISES", + "nomCommune": "SAVIGNAC LES EGLISES" }, { - "codePostal": "61160", - "codeCommune": "61276", - "libelleAcheminement": "MERRI", - "nomCommune": "MERRI" + "codePostal": "26300", + "codeCommune": "26004", + "libelleAcheminement": "ALIXAN", + "nomCommune": "ALIXAN" }, { - "codePostal": "28310", - "codeCommune": "28199", - "libelleAcheminement": "JANVILLE EN BEAUCE", - "nomCommune": "JANVILLE EN BEAUCE" + "codePostal": "35850", + "codeCommune": "35120", + "libelleAcheminement": "GEVEZE", + "nomCommune": "GEVEZE" }, { - "codePostal": "54800", - "codeCommune": "54093", - "libelleAcheminement": "BRAINVILLE", - "nomCommune": "BRAINVILLE" + "codePostal": "34750", + "codeCommune": "34337", + "libelleAcheminement": "VILLENEUVE LES MAGUELONE", + "nomCommune": "VILLENEUVE LES MAGUELONE" }, { - "codePostal": "67350", - "codeCommune": "67087", - "libelleAcheminement": "DAUENDORF", - "nomCommune": "DAUENDORF" + "codePostal": "24240", + "codeCommune": "24534", + "libelleAcheminement": "SIGOULES ET FLAUGEAC", + "nomCommune": "SIGOULES ET FLAUGEAC" }, { - "codePostal": "61570", - "codeCommune": "61288", - "libelleAcheminement": "MONTMERREI", - "nomCommune": "MONTMERREI" + "codePostal": "26400", + "codeCommune": "26006", + "libelleAcheminement": "ALLEX", + "nomCommune": "ALLEX" }, { - "codePostal": "28250", - "codeCommune": "28200", - "libelleAcheminement": "JAUDRAIS", - "nomCommune": "JAUDRAIS" + "codePostal": "35140", + "codeCommune": "35121", + "libelleAcheminement": "GOSNE", + "nomCommune": "GOSNE" }, { - "codePostal": "54540", - "codeCommune": "54097", - "libelleAcheminement": "BREMENIL", - "nomCommune": "BREMENIL" + "codePostal": "34400", + "codeCommune": "34340", + "libelleAcheminement": "VILLETELLE", + "nomCommune": "VILLETELLE" }, { - "codePostal": "67490", - "codeCommune": "67089", - "libelleAcheminement": "DETTWILLER", - "nomCommune": "DETTWILLER" + "codePostal": "24370", + "codeCommune": "24535", + "libelleAcheminement": "SIMEYROLS", + "nomCommune": "SIMEYROLS" }, { - "codePostal": "61800", - "codeCommune": "61292", - "libelleAcheminement": "MONTSECRET CLAIREFOUGERE", - "nomCommune": "MONTSECRET CLAIREFOUGERE" + "codePostal": "26200", + "codeCommune": "26008", + "libelleAcheminement": "ANCONE", + "nomCommune": "ANCONE" }, { - "codePostal": "28310", - "codeCommune": "28210", - "libelleAcheminement": "LEVESVILLE LA CHENARD", - "nomCommune": "LEVESVILLE LA CHENARD" + "codePostal": "35350", + "codeCommune": "35122", + "libelleAcheminement": "LA GOUESNIERE", + "nomCommune": "LA GOUESNIERE" }, { - "codePostal": "54150", - "codeCommune": "54099", - "libelleAcheminement": "VAL DE BRIEY", - "nomCommune": "VAL DE BRIEY" + "codePostal": "35250", + "codeCommune": "35003", + "libelleAcheminement": "ANDOUILLE NEUVILLE", + "nomCommune": "ANDOUILLE NEUVILLE" }, { - "codePostal": "67360", - "codeCommune": "67093", - "libelleAcheminement": "DIEFFENBACH LES WOERTH", - "nomCommune": "DIEFFENBACH LES WOERTH" + "codePostal": "24400", + "codeCommune": "24543", + "libelleAcheminement": "SOURZAC", + "nomCommune": "SOURZAC" }, { - "codePostal": "61600", - "codeCommune": "61295", - "libelleAcheminement": "LA MOTTE FOUQUET", - "nomCommune": "LA MOTTE FOUQUET" + "codePostal": "26340", + "codeCommune": "26015", + "libelleAcheminement": "AUBENASSON", + "nomCommune": "AUBENASSON" }, { - "codePostal": "28210", - "codeCommune": "28213", - "libelleAcheminement": "LORMAYE", - "nomCommune": "LORMAYE" + "codePostal": "35440", + "codeCommune": "35128", + "libelleAcheminement": "GUIPEL", + "nomCommune": "GUIPEL" }, { - "codePostal": "54120", - "codeCommune": "54101", - "libelleAcheminement": "BROUVILLE", - "nomCommune": "BROUVILLE" + "codePostal": "35370", + "codeCommune": "35006", + "libelleAcheminement": "ARGENTRE DU PLESSIS", + "nomCommune": "ARGENTRE DU PLESSIS" }, { - "codePostal": "67430", - "codeCommune": "67095", - "libelleAcheminement": "DIEMERINGEN", - "nomCommune": "DIEMERINGEN" + "codePostal": "24620", + "codeCommune": "24544", + "libelleAcheminement": "TAMNIES", + "nomCommune": "TAMNIES" }, { - "codePostal": "61120", - "codeCommune": "61307", - "libelleAcheminement": "NEUVILLE SUR TOUQUES", - "nomCommune": "NEUVILLE SUR TOUQUES" + "codePostal": "26340", + "codeCommune": "26017", + "libelleAcheminement": "AUCELON", + "nomCommune": "AUCELON" }, { - "codePostal": "28240", - "codeCommune": "28214", - "libelleAcheminement": "LA LOUPE", - "nomCommune": "LA LOUPE" + "codePostal": "35630", + "codeCommune": "35130", + "libelleAcheminement": "HEDE BAZOUGES", + "nomCommune": "HEDE BAZOUGES" }, { - "codePostal": "54800", - "codeCommune": "54103", - "libelleAcheminement": "BRUVILLE", - "nomCommune": "BRUVILLE" + "codePostal": "35560", + "codeCommune": "35019", + "libelleAcheminement": "BAZOUGES LA PEROUSE", + "nomCommune": "BAZOUGES LA PEROUSE" }, { - "codePostal": "67117", - "codeCommune": "67102", - "libelleAcheminement": "DOSSENHEIM KOCHERSBERG", - "nomCommune": "DOSSENHEIM KOCHERSBERG" + "codePostal": "24240", + "codeCommune": "24549", + "libelleAcheminement": "THENAC", + "nomCommune": "THENAC" }, { - "codePostal": "61340", - "codeCommune": "61309", - "libelleAcheminement": "PERCHE EN NOCE", - "nomCommune": "PERCHE EN NOCE" + "codePostal": "26340", + "codeCommune": "26019", + "libelleAcheminement": "AUREL", + "nomCommune": "AUREL" }, { - "codePostal": "28480", - "codeCommune": "28219", - "libelleAcheminement": "LUIGNY", - "nomCommune": "LUIGNY" + "codePostal": "35630", + "codeCommune": "35130", + "libelleAcheminement": "HEDE BAZOUGES", + "nomCommune": "HEDE BAZOUGES" }, { - "codePostal": "54113", - "codeCommune": "54105", - "libelleAcheminement": "BULLIGNY", - "nomCommune": "BULLIGNY" + "codePostal": "35190", + "codeCommune": "35022", + "libelleAcheminement": "BECHEREL", + "nomCommune": "BECHEREL" }, { - "codePostal": "67160", - "codeCommune": "67104", - "libelleAcheminement": "DRACHENBRONN BIRLENBACH", - "nomCommune": "DRACHENBRONN BIRLENBACH" + "codePostal": "24210", + "codeCommune": "24550", + "libelleAcheminement": "THENON", + "nomCommune": "THENON" }, { - "codePostal": "61200", - "codeCommune": "61314", - "libelleAcheminement": "OCCAGNES", - "nomCommune": "OCCAGNES" + "codePostal": "26300", + "codeCommune": "26023", + "libelleAcheminement": "BARBIERES", + "nomCommune": "BARBIERES" }, { - "codePostal": "28360", - "codeCommune": "28222", - "libelleAcheminement": "LUPLANTE", - "nomCommune": "LUPLANTE" + "codePostal": "35750", + "codeCommune": "35133", + "libelleAcheminement": "IFFENDIC", + "nomCommune": "IFFENDIC" }, { - "codePostal": "54230", - "codeCommune": "54111", - "libelleAcheminement": "CHALIGNY", - "nomCommune": "CHALIGNY" + "codePostal": "35890", + "codeCommune": "35033", + "libelleAcheminement": "BOURG DES COMPTES", + "nomCommune": "BOURG DES COMPTES" }, { - "codePostal": "67410", - "codeCommune": "67106", - "libelleAcheminement": "DRUSENHEIM", - "nomCommune": "DRUSENHEIM" + "codePostal": "24320", + "codeCommune": "24554", + "libelleAcheminement": "LA TOUR BLANCHE CERCLES", + "nomCommune": "LA TOUR BLANCHE CERCLES" }, { - "codePostal": "61160", - "codeCommune": "61316", - "libelleAcheminement": "OMMOY", - "nomCommune": "OMMOY" + "codePostal": "26160", + "codeCommune": "26045", + "libelleAcheminement": "LA BEGUDE DE MAZENC", + "nomCommune": "LA BEGUDE DE MAZENC" }, { - "codePostal": "28170", - "codeCommune": "28226", - "libelleAcheminement": "MAILLEBOIS", - "nomCommune": "MAILLEBOIS" + "codePostal": "35450", + "codeCommune": "35154", + "libelleAcheminement": "LIVRE SUR CHANGEON", + "nomCommune": "LIVRE SUR CHANGEON" }, { - "codePostal": "54450", - "codeCommune": "54124", - "libelleAcheminement": "CHAZELLES SUR ALBE", - "nomCommune": "CHAZELLES SUR ALBE" + "codePostal": "35120", + "codeCommune": "35034", + "libelleAcheminement": "LA BOUSSAC", + "nomCommune": "LA BOUSSAC" }, { - "codePostal": "67360", - "codeCommune": "67110", - "libelleAcheminement": "DURRENBACH", - "nomCommune": "DURRENBACH" + "codePostal": "24750", + "codeCommune": "24557", + "libelleAcheminement": "TRELISSAC", + "nomCommune": "TRELISSAC" }, { - "codePostal": "61360", - "codeCommune": "61327", - "libelleAcheminement": "PERVENCHERES", - "nomCommune": "PERVENCHERES" + "codePostal": "26110", + "codeCommune": "26046", + "libelleAcheminement": "BELLECOMBE TARENDOL", + "nomCommune": "BELLECOMBE TARENDOL" }, { - "codePostal": "28170", - "codeCommune": "28226", - "libelleAcheminement": "MAILLEBOIS", - "nomCommune": "MAILLEBOIS" + "codePostal": "35560", + "codeCommune": "35164", + "libelleAcheminement": "MARCILLE RAOUL", + "nomCommune": "MARCILLE RAOUL" }, { - "codePostal": "54720", - "codeCommune": "54127", - "libelleAcheminement": "CHENIERES", - "nomCommune": "CHENIERES" + "codePostal": "35310", + "codeCommune": "35037", + "libelleAcheminement": "BREAL SOUS MONTFORT", + "nomCommune": "BREAL SOUS MONTFORT" }, { - "codePostal": "67120", - "codeCommune": "67112", - "libelleAcheminement": "DUTTLENHEIM", - "nomCommune": "DUTTLENHEIM" + "codePostal": "24510", + "codeCommune": "24558", + "libelleAcheminement": "TREMOLAT", + "nomCommune": "TREMOLAT" }, { - "codePostal": "61310", - "codeCommune": "61328", - "libelleAcheminement": "LE PIN AU HARAS", - "nomCommune": "LE PIN AU HARAS" + "codePostal": "26470", + "codeCommune": "26047", + "libelleAcheminement": "BELLEGARDE EN DIOIS", + "nomCommune": "BELLEGARDE EN DIOIS" }, { - "codePostal": "28700", - "codeCommune": "28230", - "libelleAcheminement": "MAISONS", - "nomCommune": "MAISONS" + "codePostal": "35330", + "codeCommune": "35168", + "libelleAcheminement": "VAL D ANAST", + "nomCommune": "VAL D ANAST" }, { - "codePostal": "54290", - "codeCommune": "54130", - "libelleAcheminement": "CLAYEURES", - "nomCommune": "CLAYEURES" + "codePostal": "35135", + "codeCommune": "35055", + "libelleAcheminement": "CHANTEPIE", + "nomCommune": "CHANTEPIE" }, { - "codePostal": "67600", - "codeCommune": "67115", - "libelleAcheminement": "EBERSHEIM", - "nomCommune": "EBERSHEIM" + "codePostal": "24480", + "codeCommune": "24560", + "libelleAcheminement": "URVAL", + "nomCommune": "URVAL" }, { - "codePostal": "61120", - "codeCommune": "61333", - "libelleAcheminement": "PONTCHARDON", - "nomCommune": "PONTCHARDON" + "codePostal": "26300", + "codeCommune": "26057", + "libelleAcheminement": "BOURG DE PEAGE", + "nomCommune": "BOURG DE PEAGE" }, { - "codePostal": "28270", - "codeCommune": "28231", - "libelleAcheminement": "LA MANCELIERE", - "nomCommune": "LA MANCELIERE" + "codePostal": "35450", + "codeCommune": "35170", + "libelleAcheminement": "MECE", + "nomCommune": "MECE" }, { - "codePostal": "54260", - "codeCommune": "54134", - "libelleAcheminement": "COLMEY", - "nomCommune": "COLMEY" + "codePostal": "35520", + "codeCommune": "35059", + "libelleAcheminement": "LA CHAPELLE DES FOUGERETZ", + "nomCommune": "LA CHAPELLE DES FOUGERETZ" }, { - "codePostal": "67550", - "codeCommune": "67119", - "libelleAcheminement": "ECKWERSHEIM", - "nomCommune": "ECKWERSHEIM" + "codePostal": "24360", + "codeCommune": "24565", + "libelleAcheminement": "VARAIGNES", + "nomCommune": "VARAIGNES" }, { - "codePostal": "61320", - "codeCommune": "61357", - "libelleAcheminement": "ROUPERROUX", - "nomCommune": "ROUPERROUX" + "codePostal": "26190", + "codeCommune": "26066", + "libelleAcheminement": "LE CHAFFAL", + "nomCommune": "LE CHAFFAL" }, { - "codePostal": "28410", - "codeCommune": "28235", - "libelleAcheminement": "MARCHEZAIS", - "nomCommune": "MARCHEZAIS" + "codePostal": "35420", + "codeCommune": "35174", + "libelleAcheminement": "MELLE", + "nomCommune": "MELLE" }, { - "codePostal": "54800", - "codeCommune": "54136", - "libelleAcheminement": "CONFLANS EN JARNISY", - "nomCommune": "CONFLANS EN JARNISY" + "codePostal": "35500", + "codeCommune": "35061", + "libelleAcheminement": "LA CHAPELLE ERBREE", + "nomCommune": "LA CHAPELLE ERBREE" }, { - "codePostal": "67390", - "codeCommune": "67121", - "libelleAcheminement": "ELSENHEIM", - "nomCommune": "ELSENHEIM" + "codePostal": "24320", + "codeCommune": "24569", + "libelleAcheminement": "VENDOIRE", + "nomCommune": "VENDOIRE" }, { - "codePostal": "61470", - "codeCommune": "61392", - "libelleAcheminement": "ST GERMAIN D AUNAY", - "nomCommune": "ST GERMAIN D AUNAY" + "codePostal": "26600", + "codeCommune": "26072", + "libelleAcheminement": "CHANTEMERLE LES BLES", + "nomCommune": "CHANTEMERLE LES BLES" }, { - "codePostal": "28250", - "codeCommune": "28248", - "libelleAcheminement": "LE MESNIL THOMAS", - "nomCommune": "LE MESNIL THOMAS" + "codePostal": "35480", + "codeCommune": "35176", + "libelleAcheminement": "GUIPRY MESSAC", + "nomCommune": "GUIPRY MESSAC" }, { - "codePostal": "54870", - "codeCommune": "54137", - "libelleAcheminement": "CONS LA GRANDVILLE", - "nomCommune": "CONS LA GRANDVILLE" + "codePostal": "35410", + "codeCommune": "35069", + "libelleAcheminement": "CHATEAUGIRON", + "nomCommune": "CHATEAUGIRON" }, { - "codePostal": "67710", - "codeCommune": "67122", - "libelleAcheminement": "WANGENBOURG ENGENTHAL", - "nomCommune": "WANGENBOURG ENGENTHAL" + "codePostal": "24220", + "codeCommune": "24577", + "libelleAcheminement": "VEZAC", + "nomCommune": "VEZAC" }, { - "codePostal": "61240", - "codeCommune": "61393", - "libelleAcheminement": "ST GERMAIN DE CLAIREFEUILLE", - "nomCommune": "ST GERMAIN DE CLAIREFEUILLE" + "codePostal": "26230", + "codeCommune": "26073", + "libelleAcheminement": "CHANTEMERLE LES GRIGNAN", + "nomCommune": "CHANTEMERLE LES GRIGNAN" }, { - "codePostal": "28800", - "codeCommune": "28259", - "libelleAcheminement": "MONTBOISSIER", - "nomCommune": "MONTBOISSIER" + "codePostal": "35480", + "codeCommune": "35176", + "libelleAcheminement": "GUIPRY MESSAC", + "nomCommune": "GUIPRY MESSAC" }, { - "codePostal": "54400", - "codeCommune": "54138", - "libelleAcheminement": "COSNES ET ROMAIN", - "nomCommune": "COSNES ET ROMAIN" + "codePostal": "35490", + "codeCommune": "35075", + "libelleAcheminement": "CHAUVIGNE", + "nomCommune": "CHAUVIGNE" }, { - "codePostal": "67350", - "codeCommune": "67123", - "libelleAcheminement": "ENGWILLER", - "nomCommune": "ENGWILLER" + "codePostal": "24530", + "codeCommune": "24582", + "libelleAcheminement": "VILLARS", + "nomCommune": "VILLARS" }, { - "codePostal": "61130", - "codeCommune": "61394", - "libelleAcheminement": "ST GERMAIN DE LA COUDRE", - "nomCommune": "ST GERMAIN DE LA COUDRE" + "codePostal": "26420", + "codeCommune": "26074", + "libelleAcheminement": "LA CHAPELLE EN VERCORS", + "nomCommune": "LA CHAPELLE EN VERCORS" }, { - "codePostal": "28700", - "codeCommune": "28268", - "libelleAcheminement": "MORAINVILLE", - "nomCommune": "MORAINVILLE" + "codePostal": "35520", + "codeCommune": "35177", + "libelleAcheminement": "LA MEZIERE", + "nomCommune": "LA MEZIERE" }, { - "codePostal": "54120", - "codeCommune": "54154", - "libelleAcheminement": "DENEUVRE", - "nomCommune": "DENEUVRE" + "codePostal": "35640", + "codeCommune": "35077", + "libelleAcheminement": "CHELUN", + "nomCommune": "CHELUN" }, { - "codePostal": "67680", - "codeCommune": "67125", - "libelleAcheminement": "EPFIG", - "nomCommune": "EPFIG" + "codePostal": "24200", + "codeCommune": "24587", + "libelleAcheminement": "VITRAC", + "nomCommune": "VITRAC" }, { - "codePostal": "61110", - "codeCommune": "61395", - "libelleAcheminement": "ST GERMAIN DES GROIS", - "nomCommune": "ST GERMAIN DES GROIS" + "codePostal": "26120", + "codeCommune": "26081", + "libelleAcheminement": "CHATEAUDOUBLE", + "nomCommune": "CHATEAUDOUBLE" }, { - "codePostal": "28150", - "codeCommune": "28274", - "libelleAcheminement": "MOUTIERS", - "nomCommune": "MOUTIERS" + "codePostal": "35360", + "codeCommune": "35184", + "libelleAcheminement": "MONTAUBAN DE BRETAGNE", + "nomCommune": "MONTAUBAN DE BRETAGNE" }, { - "codePostal": "54200", - "codeCommune": "54167", - "libelleAcheminement": "DOMMARTIN LES TOUL", - "nomCommune": "DOMMARTIN LES TOUL" + "codePostal": "35120", + "codeCommune": "35078", + "libelleAcheminement": "CHERRUEIX", + "nomCommune": "CHERRUEIX" }, { - "codePostal": "67290", - "codeCommune": "67126", - "libelleAcheminement": "ERCKARTSWILLER", - "nomCommune": "ERCKARTSWILLER" + "codePostal": "25440", + "codeCommune": "25002", + "libelleAcheminement": "ABBANS DESSUS", + "nomCommune": "ABBANS DESSUS" }, { - "codePostal": "61160", - "codeCommune": "61399", - "libelleAcheminement": "ST GERVAIS DES SABLONS", - "nomCommune": "ST GERVAIS DES SABLONS" + "codePostal": "26300", + "codeCommune": "26084", + "libelleAcheminement": "CHATEAUNEUF SUR ISERE", + "nomCommune": "CHATEAUNEUF SUR ISERE" }, { - "codePostal": "28800", - "codeCommune": "28277", - "libelleAcheminement": "NEUVY EN DUNOIS", - "nomCommune": "NEUVY EN DUNOIS" + "codePostal": "35120", + "codeCommune": "35186", + "libelleAcheminement": "MONT DOL", + "nomCommune": "MONT DOL" }, { - "codePostal": "54370", - "codeCommune": "54176", - "libelleAcheminement": "EINVILLE AU JARD", - "nomCommune": "EINVILLE AU JARD" + "codePostal": "35330", + "codeCommune": "35084", + "libelleAcheminement": "COMBLESSAC", + "nomCommune": "COMBLESSAC" }, { - "codePostal": "67330", - "codeCommune": "67129", - "libelleAcheminement": "ERNOLSHEIM LES SAVERNE", - "nomCommune": "ERNOLSHEIM LES SAVERNE" + "codePostal": "25250", + "codeCommune": "25005", + "libelleAcheminement": "ACCOLANS", + "nomCommune": "ACCOLANS" }, { - "codePostal": "61500", - "codeCommune": "61400", - "libelleAcheminement": "ST GERVAIS DU PERRON", - "nomCommune": "ST GERVAIS DU PERRON" + "codePostal": "26410", + "codeCommune": "26086", + "libelleAcheminement": "CHATILLON EN DIOIS", + "nomCommune": "CHATILLON EN DIOIS" }, { - "codePostal": "28120", - "codeCommune": "28286", - "libelleAcheminement": "OLLE", - "nomCommune": "OLLE" + "codePostal": "35160", + "codeCommune": "35187", + "libelleAcheminement": "MONTERFIL", + "nomCommune": "MONTERFIL" }, { - "codePostal": "54280", - "codeCommune": "54180", - "libelleAcheminement": "ERBEVILLER SUR AMEZULE", - "nomCommune": "ERBEVILLER SUR AMEZULE" + "codePostal": "35210", + "codeCommune": "35086", + "libelleAcheminement": "COMBOURTILLE", + "nomCommune": "COMBOURTILLE" }, { - "codePostal": "67114", - "codeCommune": "67131", - "libelleAcheminement": "ESCHAU", - "nomCommune": "ESCHAU" + "codePostal": "25220", + "codeCommune": "25014", + "libelleAcheminement": "AMAGNEY", + "nomCommune": "AMAGNEY" }, { - "codePostal": "61360", - "codeCommune": "61411", - "libelleAcheminement": "ST JOUIN DE BLAVOU", - "nomCommune": "ST JOUIN DE BLAVOU" + "codePostal": "26510", + "codeCommune": "26091", + "libelleAcheminement": "CHAUVAC LAUX MONTAUX", + "nomCommune": "CHAUVAC LAUX MONTAUX" }, { - "codePostal": "28260", - "codeCommune": "28293", - "libelleAcheminement": "OULINS", - "nomCommune": "OULINS" + "codePostal": "35760", + "codeCommune": "35189", + "libelleAcheminement": "MONTGERMONT", + "nomCommune": "MONTGERMONT" }, { - "codePostal": "54680", - "codeCommune": "54181", - "libelleAcheminement": "ERROUVILLE", - "nomCommune": "ERROUVILLE" + "codePostal": "35270", + "codeCommune": "35092", + "libelleAcheminement": "CUGUEN", + "nomCommune": "CUGUEN" }, { - "codePostal": "67860", - "codeCommune": "67146", - "libelleAcheminement": "FRIESENHEIM", - "nomCommune": "FRIESENHEIM" + "codePostal": "25330", + "codeCommune": "25015", + "libelleAcheminement": "AMANCEY", + "nomCommune": "AMANCEY" }, { - "codePostal": "61350", - "codeCommune": "61421", - "libelleAcheminement": "ST MARS D EGRENNE", - "nomCommune": "ST MARS D EGRENNE" + "codePostal": "26450", + "codeCommune": "26095", + "libelleAcheminement": "CLEON D ANDRAN", + "nomCommune": "CLEON D ANDRAN" }, { - "codePostal": "28310", - "codeCommune": "28300", - "libelleAcheminement": "POINVILLE", - "nomCommune": "POINVILLE" + "codePostal": "35210", + "codeCommune": "35192", + "libelleAcheminement": "MONTREUIL DES LANDES", + "nomCommune": "MONTREUIL DES LANDES" }, { - "codePostal": "54470", - "codeCommune": "54182", - "libelleAcheminement": "ESSEY ET MAIZERAIS", - "nomCommune": "ESSEY ET MAIZERAIS" + "codePostal": "35450", + "codeCommune": "35101", + "libelleAcheminement": "DOURDAIN", + "nomCommune": "DOURDAIN" }, { - "codePostal": "67360", - "codeCommune": "67160", - "libelleAcheminement": "GOERSDORF", - "nomCommune": "GOERSDORF" + "codePostal": "25340", + "codeCommune": "25018", + "libelleAcheminement": "ANTEUIL", + "nomCommune": "ANTEUIL" }, { - "codePostal": "61270", - "codeCommune": "61422", - "libelleAcheminement": "LES ASPRES", - "nomCommune": "LES ASPRES" + "codePostal": "26120", + "codeCommune": "26100", + "libelleAcheminement": "COMBOVIN", + "nomCommune": "COMBOVIN" }, { - "codePostal": "28300", - "codeCommune": "28301", - "libelleAcheminement": "POISVILLIERS", - "nomCommune": "POISVILLIERS" + "codePostal": "35520", + "codeCommune": "35193", + "libelleAcheminement": "MONTREUIL LE GAST", + "nomCommune": "MONTREUIL LE GAST" }, { - "codePostal": "54540", - "codeCommune": "54191", - "libelleAcheminement": "FENNEVILLER", - "nomCommune": "FENNEVILLER" + "codePostal": "35620", + "codeCommune": "35106", + "libelleAcheminement": "ERCE EN LAMEE", + "nomCommune": "ERCE EN LAMEE" }, { - "codePostal": "67490", - "codeCommune": "67162", - "libelleAcheminement": "GOTTESHEIM", - "nomCommune": "GOTTESHEIM" + "codePostal": "25400", + "codeCommune": "25031", + "libelleAcheminement": "AUDINCOURT", + "nomCommune": "AUDINCOURT" }, { - "codePostal": "61100", - "codeCommune": "61443", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "26740", + "codeCommune": "26106", + "libelleAcheminement": "LA COUCOURDE", + "nomCommune": "LA COUCOURDE" }, { - "codePostal": "28250", - "codeCommune": "28310", - "libelleAcheminement": "LA PUISAYE", - "nomCommune": "LA PUISAYE" + "codePostal": "35310", + "codeCommune": "35196", + "libelleAcheminement": "MORDELLES", + "nomCommune": "MORDELLES" }, { - "codePostal": "54260", - "codeCommune": "54212", - "libelleAcheminement": "FRESNOIS LA MONTAGNE", - "nomCommune": "FRESNOIS LA MONTAGNE" + "codePostal": "35133", + "codeCommune": "35112", + "libelleAcheminement": "FLEURIGNE", + "nomCommune": "FLEURIGNE" }, { - "codePostal": "67270", - "codeCommune": "67163", - "libelleAcheminement": "GOUGENHEIM", - "nomCommune": "GOUGENHEIM" + "codePostal": "25870", + "codeCommune": "25035", + "libelleAcheminement": "LES AUXONS", + "nomCommune": "LES AUXONS" }, { - "codePostal": "61340", - "codeCommune": "61448", - "libelleAcheminement": "ST PIERRE LA BRUYERE", - "nomCommune": "ST PIERRE LA BRUYERE" + "codePostal": "26780", + "codeCommune": "26121", + "libelleAcheminement": "ESPELUCHE", + "nomCommune": "ESPELUCHE" }, { - "codePostal": "28170", - "codeCommune": "28312", - "libelleAcheminement": "PUISEUX", - "nomCommune": "PUISEUX" + "codePostal": "35680", + "codeCommune": "35198", + "libelleAcheminement": "MOULINS", + "nomCommune": "MOULINS" }, { - "codePostal": "54800", - "codeCommune": "54213", - "libelleAcheminement": "FRIAUVILLE", - "nomCommune": "FRIAUVILLE" + "codePostal": "35390", + "codeCommune": "35124", + "libelleAcheminement": "GRAND FOUGERAY", + "nomCommune": "GRAND FOUGERAY" }, { - "codePostal": "67110", - "codeCommune": "67176", - "libelleAcheminement": "GUNDERSHOFFEN", - "nomCommune": "GUNDERSHOFFEN" + "codePostal": "25680", + "codeCommune": "25038", + "libelleAcheminement": "AVILLEY", + "nomCommune": "AVILLEY" }, { - "codePostal": "61170", - "codeCommune": "61454", - "libelleAcheminement": "STE SCOLASSE SUR SARTHE", - "nomCommune": "STE SCOLASSE SUR SARTHE" + "codePostal": "26470", + "codeCommune": "26123", + "libelleAcheminement": "ESTABLET", + "nomCommune": "ESTABLET" }, { - "codePostal": "28150", - "codeCommune": "28313", - "libelleAcheminement": "RECLAINVILLE", - "nomCommune": "RECLAINVILLE" + "codePostal": "35410", + "codeCommune": "35204", + "libelleAcheminement": "NOUVOITOU", + "nomCommune": "NOUVOITOU" }, { - "codePostal": "54740", - "codeCommune": "54221", - "libelleAcheminement": "GERBECOURT ET HAPLEMONT", - "nomCommune": "GERBECOURT ET HAPLEMONT" + "codePostal": "35130", + "codeCommune": "35125", + "libelleAcheminement": "LA GUERCHE DE BRETAGNE", + "nomCommune": "LA GUERCHE DE BRETAGNE" }, { - "codePostal": "67110", - "codeCommune": "67176", - "libelleAcheminement": "GUNDERSHOFFEN", - "nomCommune": "GUNDERSHOFFEN" + "codePostal": "25690", + "codeCommune": "25039", + "libelleAcheminement": "AVOUDREY", + "nomCommune": "AVOUDREY" }, { - "codePostal": "61300", - "codeCommune": "61456", - "libelleAcheminement": "ST SULPICE SUR RISLE", - "nomCommune": "ST SULPICE SUR RISLE" + "codePostal": "26240", + "codeCommune": "26133", + "libelleAcheminement": "FAY LE CLOS", + "nomCommune": "FAY LE CLOS" }, { - "codePostal": "28340", - "codeCommune": "28314", - "libelleAcheminement": "LES RESSUINTES", - "nomCommune": "LES RESSUINTES" + "codePostal": "35740", + "codeCommune": "35210", + "libelleAcheminement": "PACE", + "nomCommune": "PACE" }, { - "codePostal": "54450", - "codeCommune": "54230", - "libelleAcheminement": "GOGNEY", - "nomCommune": "GOGNEY" + "codePostal": "35580", + "codeCommune": "35126", + "libelleAcheminement": "GUICHEN", + "nomCommune": "GUICHEN" }, { - "codePostal": "67110", - "codeCommune": "67176", - "libelleAcheminement": "GUNDERSHOFFEN", - "nomCommune": "GUNDERSHOFFEN" + "codePostal": "25420", + "codeCommune": "25043", + "libelleAcheminement": "BART", + "nomCommune": "BART" }, { - "codePostal": "61230", - "codeCommune": "61461", - "libelleAcheminement": "LE SAP ANDRE", - "nomCommune": "LE SAP ANDRE" + "codePostal": "26310", + "codeCommune": "26136", + "libelleAcheminement": "VAL MARAVEL", + "nomCommune": "VAL MARAVEL" }, { - "codePostal": "28270", - "codeCommune": "28315", - "libelleAcheminement": "REVERCOURT", - "nomCommune": "REVERCOURT" + "codePostal": "35210", + "codeCommune": "35214", + "libelleAcheminement": "PARCE", + "nomCommune": "PARCE" }, { - "codePostal": "54800", - "codeCommune": "54231", - "libelleAcheminement": "GONDRECOURT AIX", - "nomCommune": "GONDRECOURT AIX" + "codePostal": "35150", + "codeCommune": "35136", + "libelleAcheminement": "JANZE", + "nomCommune": "JANZE" }, { - "codePostal": "67320", - "codeCommune": "67178", - "libelleAcheminement": "GUNGWILLER", - "nomCommune": "GUNGWILLER" + "codePostal": "25440", + "codeCommune": "25044", + "libelleAcheminement": "BARTHERANS", + "nomCommune": "BARTHERANS" }, { - "codePostal": "61100", - "codeCommune": "61466", - "libelleAcheminement": "LA SELLE LA FORGE", - "nomCommune": "LA SELLE LA FORGE" + "codePostal": "26400", + "codeCommune": "26141", + "libelleAcheminement": "GIGORS ET LOZERON", + "nomCommune": "GIGORS ET LOZERON" }, { - "codePostal": "28340", - "codeCommune": "28316", - "libelleAcheminement": "ROHAIRE", - "nomCommune": "ROHAIRE" + "codePostal": "35470", + "codeCommune": "35221", + "libelleAcheminement": "PLECHATEL", + "nomCommune": "PLECHATEL" }, { - "codePostal": "54380", - "codeCommune": "54239", - "libelleAcheminement": "GRISCOURT", - "nomCommune": "GRISCOURT" + "codePostal": "35660", + "codeCommune": "35145", + "libelleAcheminement": "LANGON", + "nomCommune": "LANGON" }, { - "codePostal": "67500", - "codeCommune": "67180", - "libelleAcheminement": "HAGUENAU", - "nomCommune": "HAGUENAU" + "codePostal": "25520", + "codeCommune": "25060", + "libelleAcheminement": "BIANS LES USIERS", + "nomCommune": "BIANS LES USIERS" }, { - "codePostal": "61250", - "codeCommune": "61467", - "libelleAcheminement": "SEMALLE", - "nomCommune": "SEMALLE" + "codePostal": "26530", + "codeCommune": "26143", + "libelleAcheminement": "LE GRAND SERRE", + "nomCommune": "LE GRAND SERRE" }, { - "codePostal": "28330", - "codeCommune": "28327", - "libelleAcheminement": "ST BOMER", - "nomCommune": "ST BOMER" + "codePostal": "35470", + "codeCommune": "35221", + "libelleAcheminement": "PLECHATEL", + "nomCommune": "PLECHATEL" }, { - "codePostal": "54470", - "codeCommune": "54244", - "libelleAcheminement": "HAGEVILLE", - "nomCommune": "HAGEVILLE" + "codePostal": "35630", + "codeCommune": "35146", + "libelleAcheminement": "LANGOUET", + "nomCommune": "LANGOUET" }, { - "codePostal": "67500", - "codeCommune": "67180", - "libelleAcheminement": "HAGUENAU", - "nomCommune": "HAGUENAU" + "codePostal": "25210", + "codeCommune": "25062", + "libelleAcheminement": "LE BIZOT", + "nomCommune": "LE BIZOT" }, { - "codePostal": "61160", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "26560", + "codeCommune": "26153", + "libelleAcheminement": "LABOREL", + "nomCommune": "LABOREL" }, { - "codePostal": "28210", - "codeCommune": "28343", - "libelleAcheminement": "ST LAURENT LA GATINE", - "nomCommune": "ST LAURENT LA GATINE" + "codePostal": "35137", + "codeCommune": "35227", + "libelleAcheminement": "PLEUMELEUC", + "nomCommune": "PLEUMELEUC" }, { - "codePostal": "54470", - "codeCommune": "54248", - "libelleAcheminement": "HAMONVILLE", - "nomCommune": "HAMONVILLE" + "codePostal": "35580", + "codeCommune": "35149", + "libelleAcheminement": "LASSY", + "nomCommune": "LASSY" }, { - "codePostal": "67230", - "codeCommune": "67192", - "libelleAcheminement": "HERBSHEIM", - "nomCommune": "HERBSHEIM" + "codePostal": "25230", + "codeCommune": "25071", + "libelleAcheminement": "BONDEVAL", + "nomCommune": "BONDEVAL" }, { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "26740", + "codeCommune": "26157", + "libelleAcheminement": "LA LAUPIE", + "nomCommune": "LA LAUPIE" }, { - "codePostal": "28170", - "codeCommune": "28351", - "libelleAcheminement": "ST MAIXME HAUTERIVE", - "nomCommune": "ST MAIXME HAUTERIVE" + "codePostal": "35290", + "codeCommune": "35234", + "libelleAcheminement": "QUEDILLAC", + "nomCommune": "QUEDILLAC" }, { - "codePostal": "54180", - "codeCommune": "54257", - "libelleAcheminement": "HEILLECOURT", - "nomCommune": "HEILLECOURT" + "codePostal": "35133", + "codeCommune": "35150", + "libelleAcheminement": "LECOUSSE", + "nomCommune": "LECOUSSE" }, { - "codePostal": "67150", - "codeCommune": "67200", - "libelleAcheminement": "HIPSHEIM", - "nomCommune": "HIPSHEIM" + "codePostal": "25560", + "codeCommune": "25075", + "libelleAcheminement": "BONNEVAUX", + "nomCommune": "BONNEVAUX" }, { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "26510", + "codeCommune": "26161", + "libelleAcheminement": "LEMPS", + "nomCommune": "LEMPS" }, { - "codePostal": "28260", - "codeCommune": "28371", - "libelleAcheminement": "SAUSSAY", - "nomCommune": "SAUSSAY" + "codePostal": "35780", + "codeCommune": "35241", + "libelleAcheminement": "LA RICHARDAIS", + "nomCommune": "LA RICHARDAIS" }, { - "codePostal": "54370", - "codeCommune": "54258", - "libelleAcheminement": "HENAMENIL", - "nomCommune": "HENAMENIL" + "codePostal": "35340", + "codeCommune": "35152", + "libelleAcheminement": "LIFFRE", + "nomCommune": "LIFFRE" }, { - "codePostal": "67270", - "codeCommune": "67202", - "libelleAcheminement": "HOCHFELDEN", - "nomCommune": "HOCHFELDEN" + "codePostal": "25640", + "codeCommune": "25092", + "libelleAcheminement": "LA BRETENIERE", + "nomCommune": "LA BRETENIERE" }, { - "codePostal": "61410", - "codeCommune": "61482", - "libelleAcheminement": "TESSE FROULAY", - "nomCommune": "TESSE FROULAY" + "codePostal": "26260", + "codeCommune": "26177", + "libelleAcheminement": "MARSAZ", + "nomCommune": "MARSAZ" }, { - "codePostal": "28240", - "codeCommune": "28385", - "libelleAcheminement": "LE THIEULIN", - "nomCommune": "LE THIEULIN" + "codePostal": "35850", + "codeCommune": "35245", + "libelleAcheminement": "ROMILLE", + "nomCommune": "ROMILLE" }, { - "codePostal": "54930", - "codeCommune": "54268", - "libelleAcheminement": "HOUSSEVILLE", - "nomCommune": "HOUSSEVILLE" + "codePostal": "35190", + "codeCommune": "35156", + "libelleAcheminement": "LONGAULNAY", + "nomCommune": "LONGAULNAY" }, { - "codePostal": "67170", - "codeCommune": "67203", - "libelleAcheminement": "HOCHSTETT", - "nomCommune": "HOCHSTETT" + "codePostal": "25560", + "codeCommune": "25100", + "libelleAcheminement": "BULLE", + "nomCommune": "BULLE" }, { - "codePostal": "61260", - "codeCommune": "61484", - "libelleAcheminement": "VAL AU PERCHE", - "nomCommune": "VAL AU PERCHE" + "codePostal": "26600", + "codeCommune": "26179", + "libelleAcheminement": "MERCUROL VEAUNES", + "nomCommune": "MERCUROL VEAUNES" }, { - "codePostal": "28170", - "codeCommune": "28393", - "libelleAcheminement": "TREMBLAY LES VILLAGES", - "nomCommune": "TREMBLAY LES VILLAGES" + "codePostal": "35610", + "codeCommune": "35247", + "libelleAcheminement": "ROZ SUR COUESNON", + "nomCommune": "ROZ SUR COUESNON" }, { - "codePostal": "54740", - "codeCommune": "54278", - "libelleAcheminement": "JEVONCOURT", - "nomCommune": "JEVONCOURT" + "codePostal": "35420", + "codeCommune": "35162", + "libelleAcheminement": "LOUVIGNE DU DESERT", + "nomCommune": "LOUVIGNE DU DESERT" }, { - "codePostal": "67250", - "codeCommune": "67206", - "libelleAcheminement": "HOFFEN", - "nomCommune": "HOFFEN" + "codePostal": "25470", + "codeCommune": "25102", + "libelleAcheminement": "BURNEVILLERS", + "nomCommune": "BURNEVILLERS" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "26310", + "codeCommune": "26186", + "libelleAcheminement": "MISCON", + "nomCommune": "MISCON" }, { - "codePostal": "28170", - "codeCommune": "28393", - "libelleAcheminement": "TREMBLAY LES VILLAGES", - "nomCommune": "TREMBLAY LES VILLAGES" + "codePostal": "35390", + "codeCommune": "35249", + "libelleAcheminement": "STE ANNE SUR VILAINE", + "nomCommune": "STE ANNE SUR VILAINE" }, { - "codePostal": "54240", - "codeCommune": "54280", - "libelleAcheminement": "JOEUF", - "nomCommune": "JOEUF" + "codePostal": "35210", + "codeCommune": "35163", + "libelleAcheminement": "LUITRE DOMPIERRE", + "nomCommune": "LUITRE DOMPIERRE" }, { - "codePostal": "67270", - "codeCommune": "67209", - "libelleAcheminement": "HOHFRANKENHEIM", - "nomCommune": "HOHFRANKENHEIM" + "codePostal": "25440", + "codeCommune": "25109", + "libelleAcheminement": "CESSEY", + "nomCommune": "CESSEY" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "26170", + "codeCommune": "26188", + "libelleAcheminement": "MOLLANS SUR OUVEZE", + "nomCommune": "MOLLANS SUR OUVEZE" }, { - "codePostal": "28150", - "codeCommune": "28411", - "libelleAcheminement": "VILLARS", - "nomCommune": "VILLARS" + "codePostal": "35800", + "codeCommune": "35256", + "libelleAcheminement": "ST BRIAC SUR MER", + "nomCommune": "ST BRIAC SUR MER" }, { - "codePostal": "54300", - "codeCommune": "54281", - "libelleAcheminement": "JOLIVET", - "nomCommune": "JOLIVET" + "codePostal": "35640", + "codeCommune": "35167", + "libelleAcheminement": "MARTIGNE FERCHAUD", + "nomCommune": "MARTIGNE FERCHAUD" }, { - "codePostal": "67250", - "codeCommune": "67213", - "libelleAcheminement": "HUNSPACH", - "nomCommune": "HUNSPACH" + "codePostal": "25190", + "codeCommune": "25114", + "libelleAcheminement": "CHAMESOL", + "nomCommune": "CHAMESOL" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "26170", + "codeCommune": "26189", + "libelleAcheminement": "MONTAUBAN SUR L OUVEZE", + "nomCommune": "MONTAUBAN SUR L OUVEZE" }, { - "codePostal": "28150", - "codeCommune": "28422", - "libelleAcheminement": "LES VILLAGES VOVEENS", - "nomCommune": "LES VILLAGES VOVEENS" + "codePostal": "35460", + "codeCommune": "35257", + "libelleAcheminement": "MAEN ROCH", + "nomCommune": "MAEN ROCH" }, { - "codePostal": "54620", - "codeCommune": "54282", - "libelleAcheminement": "JOPPECOURT", - "nomCommune": "JOPPECOURT" + "codePostal": "35330", + "codeCommune": "35168", + "libelleAcheminement": "VAL D ANAST", + "nomCommune": "VAL D ANAST" }, { - "codePostal": "67230", - "codeCommune": "67216", - "libelleAcheminement": "HUTTENHEIM", - "nomCommune": "HUTTENHEIM" + "codePostal": "25360", + "codeCommune": "25116", + "libelleAcheminement": "CHAMPLIVE", + "nomCommune": "CHAMPLIVE" }, { - "codePostal": "61110", - "codeCommune": "61501", - "libelleAcheminement": "VERRIERES", - "nomCommune": "VERRIERES" + "codePostal": "26570", + "codeCommune": "26193", + "libelleAcheminement": "MONTBRUN LES BAINS", + "nomCommune": "MONTBRUN LES BAINS" }, { - "codePostal": "28320", - "codeCommune": "28425", - "libelleAcheminement": "YMERAY", - "nomCommune": "YMERAY" + "codePostal": "35210", + "codeCommune": "35260", + "libelleAcheminement": "ST CHRISTOPHE DES BOIS", + "nomCommune": "ST CHRISTOPHE DES BOIS" }, { - "codePostal": "54300", - "codeCommune": "54292", - "libelleAcheminement": "LAMATH", - "nomCommune": "LAMATH" + "codePostal": "35360", + "codeCommune": "35171", + "libelleAcheminement": "MEDREAC", + "nomCommune": "MEDREAC" }, { - "codePostal": "67270", - "codeCommune": "67220", - "libelleAcheminement": "INGENHEIM", - "nomCommune": "INGENHEIM" + "codePostal": "25240", + "codeCommune": "25142", + "libelleAcheminement": "CHAUX NEUVE", + "nomCommune": "CHAUX NEUVE" }, { - "codePostal": "61120", - "codeCommune": "61508", - "libelleAcheminement": "VIMOUTIERS", - "nomCommune": "VIMOUTIERS" + "codePostal": "26350", + "codeCommune": "26194", + "libelleAcheminement": "MONTCHENU", + "nomCommune": "MONTCHENU" }, { - "codePostal": "28150", - "codeCommune": "28426", - "libelleAcheminement": "YMONVILLE", - "nomCommune": "YMONVILLE" + "codePostal": "35350", + "codeCommune": "35263", + "libelleAcheminement": "ST COULOMB", + "nomCommune": "ST COULOMB" }, { - "codePostal": "54570", - "codeCommune": "54306", - "libelleAcheminement": "LAY ST REMY", - "nomCommune": "LAY ST REMY" + "codePostal": "35330", + "codeCommune": "35175", + "libelleAcheminement": "MERNEL", + "nomCommune": "MERNEL" }, { - "codePostal": "67340", - "codeCommune": "67222", - "libelleAcheminement": "INGWILLER", - "nomCommune": "INGWILLER" + "codePostal": "25260", + "codeCommune": "25159", + "libelleAcheminement": "COLOMBIER FONTAINE", + "nomCommune": "COLOMBIER FONTAINE" }, { - "codePostal": "62121", - "codeCommune": "62006", - "libelleAcheminement": "ACHIET LE PETIT", - "nomCommune": "ACHIET LE PETIT" + "codePostal": "26120", + "codeCommune": "26206", + "libelleAcheminement": "MONTMEYRAN", + "nomCommune": "MONTMEYRAN" }, { - "codePostal": "29950", - "codeCommune": "29006", - "libelleAcheminement": "BENODET", - "nomCommune": "BENODET" + "codePostal": "35630", + "codeCommune": "35276", + "libelleAcheminement": "ST GONDRAN", + "nomCommune": "ST GONDRAN" }, { - "codePostal": "54810", - "codeCommune": "54321", - "libelleAcheminement": "LONGLAVILLE", - "nomCommune": "LONGLAVILLE" + "codePostal": "35140", + "codeCommune": "35178", + "libelleAcheminement": "MEZIERES SUR COUESNON", + "nomCommune": "MEZIERES SUR COUESNON" }, { - "codePostal": "67880", - "codeCommune": "67223", - "libelleAcheminement": "INNENHEIM", - "nomCommune": "INNENHEIM" + "codePostal": "25640", + "codeCommune": "25163", + "libelleAcheminement": "CORCELLE MIESLOT", + "nomCommune": "CORCELLE MIESLOT" }, { - "codePostal": "62380", - "codeCommune": "62010", - "libelleAcheminement": "AFFRINGUES", - "nomCommune": "AFFRINGUES" + "codePostal": "26350", + "codeCommune": "26210", + "libelleAcheminement": "VALHERBASSE", + "nomCommune": "VALHERBASSE" }, { - "codePostal": "29640", - "codeCommune": "29012", - "libelleAcheminement": "BOLAZEC", - "nomCommune": "BOLAZEC" + "codePostal": "35750", + "codeCommune": "35277", + "libelleAcheminement": "ST GONLAY", + "nomCommune": "ST GONLAY" }, { - "codePostal": "54710", - "codeCommune": "54328", - "libelleAcheminement": "LUDRES", - "nomCommune": "LUDRES" + "codePostal": "35460", + "codeCommune": "35191", + "libelleAcheminement": "LES PORTES DU COGLAIS", + "nomCommune": "LES PORTES DU COGLAIS" }, { - "codePostal": "67117", - "codeCommune": "67226", - "libelleAcheminement": "ITTENHEIM", - "nomCommune": "ITTENHEIM" + "codePostal": "25360", + "codeCommune": "25166", + "libelleAcheminement": "COTEBRUNE", + "nomCommune": "COTEBRUNE" }, { - "codePostal": "62650", - "codeCommune": "62021", - "libelleAcheminement": "ALETTE", - "nomCommune": "ALETTE" + "codePostal": "26240", + "codeCommune": "26216", + "libelleAcheminement": "ST JEAN DE GALAURE", + "nomCommune": "ST JEAN DE GALAURE" }, { - "codePostal": "29190", - "codeCommune": "29016", - "libelleAcheminement": "BRASPARTS", - "nomCommune": "BRASPARTS" + "codePostal": "35430", + "codeCommune": "35279", + "libelleAcheminement": "ST GUINOUX", + "nomCommune": "ST GUINOUX" }, { - "codePostal": "54300", - "codeCommune": "54329", - "libelleAcheminement": "LUNEVILLE", - "nomCommune": "LUNEVILLE" + "codePostal": "35440", + "codeCommune": "35195", + "libelleAcheminement": "MONTREUIL SUR ILLE", + "nomCommune": "MONTREUIL SUR ILLE" }, { - "codePostal": "67370", - "codeCommune": "67228", - "libelleAcheminement": "NEUGARTHEIM ITTLENHEIM", - "nomCommune": "NEUGARTHEIM ITTLENHEIM" + "codePostal": "25470", + "codeCommune": "25174", + "libelleAcheminement": "COURTEFONTAINE", + "nomCommune": "COURTEFONTAINE" }, { - "codePostal": "62149", - "codeCommune": "62034", - "libelleAcheminement": "ANNEQUIN", - "nomCommune": "ANNEQUIN" + "codePostal": "26190", + "codeCommune": "26217", + "libelleAcheminement": "LA MOTTE FANJAS", + "nomCommune": "LA MOTTE FANJAS" }, { - "codePostal": "29510", - "codeCommune": "29020", - "libelleAcheminement": "BRIEC", - "nomCommune": "BRIEC" + "codePostal": "35140", + "codeCommune": "35282", + "libelleAcheminement": "RIVES DU COUESNON", + "nomCommune": "RIVES DU COUESNON" }, { - "codePostal": "54150", - "codeCommune": "54334", - "libelleAcheminement": "MAIRY MAINVILLE", - "nomCommune": "MAIRY MAINVILLE" + "codePostal": "35560", + "codeCommune": "35205", + "libelleAcheminement": "NOYAL SOUS BAZOUGES", + "nomCommune": "NOYAL SOUS BAZOUGES" }, { - "codePostal": "67370", - "codeCommune": "67228", - "libelleAcheminement": "NEUGARTHEIM ITTLENHEIM", - "nomCommune": "NEUGARTHEIM ITTLENHEIM" + "codePostal": "25560", + "codeCommune": "25176", + "libelleAcheminement": "COURVIERES", + "nomCommune": "COURVIERES" }, { - "codePostal": "62232", - "codeCommune": "62035", - "libelleAcheminement": "ANNEZIN", - "nomCommune": "ANNEZIN" + "codePostal": "26120", + "codeCommune": "26232", + "libelleAcheminement": "PEYRUS", + "nomCommune": "PEYRUS" }, { - "codePostal": "29660", - "codeCommune": "29023", - "libelleAcheminement": "CARANTEC", - "nomCommune": "CARANTEC" + "codePostal": "35480", + "codeCommune": "35289", + "libelleAcheminement": "ST MALO DE PHILY", + "nomCommune": "ST MALO DE PHILY" }, { - "codePostal": "54550", - "codeCommune": "54336", - "libelleAcheminement": "MAIZIERES", - "nomCommune": "MAIZIERES" + "codePostal": "35230", + "codeCommune": "35206", + "libelleAcheminement": "NOYAL CHATILLON SUR SEICHE", + "nomCommune": "NOYAL CHATILLON SUR SEICHE" }, { - "codePostal": "67440", - "codeCommune": "67229", - "libelleAcheminement": "JETTERSWILLER", - "nomCommune": "JETTERSWILLER" + "codePostal": "25340", + "codeCommune": "25178", + "libelleAcheminement": "CROSEY LE PETIT", + "nomCommune": "CROSEY LE PETIT" }, { - "codePostal": "62610", - "codeCommune": "62038", - "libelleAcheminement": "ARDRES", - "nomCommune": "ARDRES" + "codePostal": "26400", + "codeCommune": "26240", + "libelleAcheminement": "PLAN DE BAIX", + "nomCommune": "PLAN DE BAIX" }, { - "codePostal": "29520", - "codeCommune": "29027", - "libelleAcheminement": "CHATEAUNEUF DU FAOU", - "nomCommune": "CHATEAUNEUF DU FAOU" + "codePostal": "35133", + "codeCommune": "35310", + "libelleAcheminement": "ST SAUVEUR DES LANDES", + "nomCommune": "ST SAUVEUR DES LANDES" }, { - "codePostal": "54220", - "codeCommune": "54339", - "libelleAcheminement": "MALZEVILLE", - "nomCommune": "MALZEVILLE" + "codePostal": "35230", + "codeCommune": "35206", + "libelleAcheminement": "NOYAL CHATILLON SUR SEICHE", + "nomCommune": "NOYAL CHATILLON SUR SEICHE" }, { - "codePostal": "67240", - "codeCommune": "67252", - "libelleAcheminement": "KURTZENHOUSE", - "nomCommune": "KURTZENHOUSE" + "codePostal": "25110", + "codeCommune": "25183", + "libelleAcheminement": "CUSANCE", + "nomCommune": "CUSANCE" }, { - "codePostal": "62140", - "codeCommune": "62046", - "libelleAcheminement": "AUBIN ST VAAST", - "nomCommune": "AUBIN ST VAAST" + "codePostal": "26110", + "codeCommune": "26244", + "libelleAcheminement": "LE POET SIGILLAT", + "nomCommune": "LE POET SIGILLAT" }, { - "codePostal": "29360", - "codeCommune": "29031", - "libelleAcheminement": "CLOHARS CARNOET", - "nomCommune": "CLOHARS CARNOET" + "codePostal": "35580", + "codeCommune": "35312", + "libelleAcheminement": "ST SENOUX", + "nomCommune": "ST SENOUX" }, { - "codePostal": "54470", - "codeCommune": "54343", - "libelleAcheminement": "MANDRES AUX QUATRE TOURS", - "nomCommune": "MANDRES AUX QUATRE TOURS" + "codePostal": "35530", + "codeCommune": "35207", + "libelleAcheminement": "NOYAL SUR VILAINE", + "nomCommune": "NOYAL SUR VILAINE" }, { - "codePostal": "67220", - "codeCommune": "67255", - "libelleAcheminement": "LALAYE", - "nomCommune": "LALAYE" + "codePostal": "25600", + "codeCommune": "25188", + "libelleAcheminement": "DAMBENOIS", + "nomCommune": "DAMBENOIS" }, { - "codePostal": "62890", - "codeCommune": "62055", - "libelleAcheminement": "AUDREHEM", - "nomCommune": "AUDREHEM" + "codePostal": "26470", + "codeCommune": "26245", + "libelleAcheminement": "POMMEROL", + "nomCommune": "POMMEROL" }, { - "codePostal": "29190", - "codeCommune": "29033", - "libelleAcheminement": "LE CLOITRE PLEYBEN", - "nomCommune": "LE CLOITRE PLEYBEN" + "codePostal": "35190", + "codeCommune": "35318", + "libelleAcheminement": "ST THUAL", + "nomCommune": "ST THUAL" }, { - "codePostal": "54385", - "codeCommune": "54348", - "libelleAcheminement": "MANONVILLE", - "nomCommune": "MANONVILLE" + "codePostal": "35610", + "codeCommune": "35222", + "libelleAcheminement": "PLEINE FOUGERES", + "nomCommune": "PLEINE FOUGERES" }, { - "codePostal": "67430", - "codeCommune": "67278", - "libelleAcheminement": "MACKWILLER", - "nomCommune": "MACKWILLER" + "codePostal": "25310", + "codeCommune": "25194", + "libelleAcheminement": "DANNEMARIE", + "nomCommune": "DANNEMARIE" }, { - "codePostal": "62610", - "codeCommune": "62059", - "libelleAcheminement": "AUTINGUES", - "nomCommune": "AUTINGUES" + "codePostal": "26600", + "codeCommune": "26250", + "libelleAcheminement": "PONT DE L ISERE", + "nomCommune": "PONT DE L ISERE" }, { - "codePostal": "29160", - "codeCommune": "29042", - "libelleAcheminement": "CROZON", - "nomCommune": "CROZON" + "codePostal": "35320", + "codeCommune": "35321", + "libelleAcheminement": "SAULNIERES", + "nomCommune": "SAULNIERES" }, { - "codePostal": "54230", - "codeCommune": "54352", - "libelleAcheminement": "MARON", - "nomCommune": "MARON" + "codePostal": "35380", + "codeCommune": "35223", + "libelleAcheminement": "PLELAN LE GRAND", + "nomCommune": "PLELAN LE GRAND" }, { - "codePostal": "67220", - "codeCommune": "67280", - "libelleAcheminement": "MAISONSGOUTTE", - "nomCommune": "MAISONSGOUTTE" + "codePostal": "25960", + "codeCommune": "25197", + "libelleAcheminement": "DELUZ", + "nomCommune": "DELUZ" }, { - "codePostal": "62390", - "codeCommune": "62060", - "libelleAcheminement": "AUXI LE CHATEAU", - "nomCommune": "AUXI LE CHATEAU" + "codePostal": "26310", + "codeCommune": "26253", + "libelleAcheminement": "POYOLS", + "nomCommune": "POYOLS" }, { - "codePostal": "29100", - "codeCommune": "29046", - "libelleAcheminement": "DOUARNENEZ", - "nomCommune": "DOUARNENEZ" + "codePostal": "35130", + "codeCommune": "35325", + "libelleAcheminement": "LA SELLE GUERCHAISE", + "nomCommune": "LA SELLE GUERCHAISE" }, { - "codePostal": "54830", - "codeCommune": "54356", - "libelleAcheminement": "MATTEXEY", - "nomCommune": "MATTEXEY" + "codePostal": "35730", + "codeCommune": "35228", + "libelleAcheminement": "PLEURTUIT", + "nomCommune": "PLEURTUIT" }, { - "codePostal": "67250", - "codeCommune": "67288", - "libelleAcheminement": "MEMMELSHOFFEN", - "nomCommune": "MEMMELSHOFFEN" + "codePostal": "25300", + "codeCommune": "25201", + "libelleAcheminement": "DOMMARTIN", + "nomCommune": "DOMMARTIN" }, { - "codePostal": "62650", - "codeCommune": "62062", - "libelleAcheminement": "AVESNES", - "nomCommune": "AVESNES" + "codePostal": "26340", + "codeCommune": "26254", + "libelleAcheminement": "PRADELLE", + "nomCommune": "PRADELLE" }, { - "codePostal": "29100", - "codeCommune": "29046", - "libelleAcheminement": "DOUARNENEZ", - "nomCommune": "DOUARNENEZ" + "codePostal": "35620", + "codeCommune": "35332", + "libelleAcheminement": "TEILLAY", + "nomCommune": "TEILLAY" }, { - "codePostal": "54320", - "codeCommune": "54357", - "libelleAcheminement": "MAXEVILLE", - "nomCommune": "MAXEVILLE" + "codePostal": "35190", + "codeCommune": "35233", + "libelleAcheminement": "QUEBRIAC", + "nomCommune": "QUEBRIAC" }, { - "codePostal": "67580", - "codeCommune": "67292", - "libelleAcheminement": "MIETESHEIM", - "nomCommune": "MIETESHEIM" + "codePostal": "25150", + "codeCommune": "25214", + "libelleAcheminement": "ECOT", + "nomCommune": "ECOT" }, { - "codePostal": "62450", - "codeCommune": "62064", - "libelleAcheminement": "AVESNES LES BAPAUME", - "nomCommune": "AVESNES LES BAPAUME" + "codePostal": "26310", + "codeCommune": "26255", + "libelleAcheminement": "LES PRES", + "nomCommune": "LES PRES" }, { - "codePostal": "29590", - "codeCommune": "29053", - "libelleAcheminement": "LE FAOU", - "nomCommune": "LE FAOU" + "codePostal": "35680", + "codeCommune": "35350", + "libelleAcheminement": "VERGEAL", + "nomCommune": "VERGEAL" }, { - "codePostal": "54560", - "codeCommune": "54363", - "libelleAcheminement": "MERCY LE HAUT", - "nomCommune": "MERCY LE HAUT" + "codePostal": "35700", + "codeCommune": "35238", + "libelleAcheminement": "RENNES", + "nomCommune": "RENNES" }, { - "codePostal": "67270", - "codeCommune": "67293", - "libelleAcheminement": "MINVERSHEIM", - "nomCommune": "MINVERSHEIM" + "codePostal": "25330", + "codeCommune": "25223", + "libelleAcheminement": "ETERNOZ", + "nomCommune": "ETERNOZ" }, { - "codePostal": "62310", - "codeCommune": "62066", - "libelleAcheminement": "AVONDANCE", - "nomCommune": "AVONDANCE" + "codePostal": "26170", + "codeCommune": "26256", + "libelleAcheminement": "PROPIAC", + "nomCommune": "PROPIAC" }, { - "codePostal": "29940", - "codeCommune": "29057", - "libelleAcheminement": "LA FORET FOUESNANT", - "nomCommune": "LA FORET FOUESNANT" + "codePostal": "35610", + "codeCommune": "35354", + "libelleAcheminement": "VIEUX VIEL", + "nomCommune": "VIEUX VIEL" }, { - "codePostal": "54560", - "codeCommune": "54363", - "libelleAcheminement": "MERCY LE HAUT", - "nomCommune": "MERCY LE HAUT" + "codePostal": "35240", + "codeCommune": "35239", + "libelleAcheminement": "RETIERS", + "nomCommune": "RETIERS" }, { - "codePostal": "67140", - "codeCommune": "67295", - "libelleAcheminement": "MITTELBERGHEIM", - "nomCommune": "MITTELBERGHEIM" + "codePostal": "25170", + "codeCommune": "25225", + "libelleAcheminement": "ETRABONNE", + "nomCommune": "ETRABONNE" }, { - "codePostal": "62310", - "codeCommune": "62069", - "libelleAcheminement": "AZINCOURT", - "nomCommune": "AZINCOURT" + "codePostal": "26340", + "codeCommune": "26266", + "libelleAcheminement": "RIMON ET SAVEL", + "nomCommune": "RIMON ET SAVEL" }, { - "codePostal": "29410", - "codeCommune": "29068", - "libelleAcheminement": "GUICLAN", - "nomCommune": "GUICLAN" + "codePostal": "35420", + "codeCommune": "35357", + "libelleAcheminement": "VILLAMEE", + "nomCommune": "VILLAMEE" }, { - "codePostal": "54580", - "codeCommune": "54371", - "libelleAcheminement": "MOINEVILLE", - "nomCommune": "MOINEVILLE" + "codePostal": "35650", + "codeCommune": "35240", + "libelleAcheminement": "LE RHEU", + "nomCommune": "LE RHEU" }, { - "codePostal": "67350", - "codeCommune": "67307", - "libelleAcheminement": "MULHAUSEN", - "nomCommune": "MULHAUSEN" + "codePostal": "25400", + "codeCommune": "25230", + "libelleAcheminement": "EXINCOURT", + "nomCommune": "EXINCOURT" }, { - "codePostal": "62550", - "codeCommune": "62071", - "libelleAcheminement": "BAILLEUL LES PERNES", - "nomCommune": "BAILLEUL LES PERNES" + "codePostal": "26170", + "codeCommune": "26267", + "libelleAcheminement": "RIOMS", + "nomCommune": "RIOMS" }, { - "codePostal": "29400", - "codeCommune": "29074", - "libelleAcheminement": "GUIMILIAU", - "nomCommune": "GUIMILIAU" + "codePostal": "35960", + "codeCommune": "35361", + "libelleAcheminement": "LE VIVIER SUR MER", + "nomCommune": "LE VIVIER SUR MER" }, { - "codePostal": "54300", - "codeCommune": "54373", - "libelleAcheminement": "MONCEL LES LUNEVILLE", - "nomCommune": "MONCEL LES LUNEVILLE" + "codePostal": "35230", + "codeCommune": "35250", + "libelleAcheminement": "ST ARMEL", + "nomCommune": "ST ARMEL" }, { - "codePostal": "67480", - "codeCommune": "67319", - "libelleAcheminement": "NEUHAEUSEL", - "nomCommune": "NEUHAEUSEL" + "codePostal": "25530", + "codeCommune": "25231", + "libelleAcheminement": "EYSSON", + "nomCommune": "EYSSON" }, { - "codePostal": "62580", - "codeCommune": "62073", - "libelleAcheminement": "BAILLEUL SIR BERTHOULT", - "nomCommune": "BAILLEUL SIR BERTHOULT" + "codePostal": "26110", + "codeCommune": "26269", + "libelleAcheminement": "ROCHEBRUNE", + "nomCommune": "ROCHEBRUNE" }, { - "codePostal": "29670", - "codeCommune": "29079", - "libelleAcheminement": "HENVIC", - "nomCommune": "HENVIC" + "codePostal": "36110", + "codeCommune": "36013", + "libelleAcheminement": "BAUDRES", + "nomCommune": "BAUDRES" }, { - "codePostal": "54870", - "codeCommune": "54378", - "libelleAcheminement": "MONTIGNY SUR CHIERS", - "nomCommune": "MONTIGNY SUR CHIERS" + "codePostal": "35190", + "codeCommune": "35265", + "libelleAcheminement": "ST DOMINEUC", + "nomCommune": "ST DOMINEUC" }, { - "codePostal": "67130", - "codeCommune": "67321", - "libelleAcheminement": "NEUVILLER LA ROCHE", - "nomCommune": "NEUVILLER LA ROCHE" + "codePostal": "25410", + "codeCommune": "25235", + "libelleAcheminement": "FERRIERES LES BOIS", + "nomCommune": "FERRIERES LES BOIS" }, { - "codePostal": "62860", - "codeCommune": "62081", - "libelleAcheminement": "BARALLE", - "nomCommune": "BARALLE" + "codePostal": "26160", + "codeCommune": "26272", + "libelleAcheminement": "ROCHEFORT EN VALDAINE", + "nomCommune": "ROCHEFORT EN VALDAINE" }, { - "codePostal": "29890", - "codeCommune": "29091", - "libelleAcheminement": "KERLOUAN", - "nomCommune": "KERLOUAN" + "codePostal": "36310", + "codeCommune": "36015", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "54370", - "codeCommune": "54388", - "libelleAcheminement": "MOUACOURT", - "nomCommune": "MOUACOURT" + "codePostal": "35610", + "codeCommune": "35270", + "libelleAcheminement": "ST GEORGES DE GREHAIGNE", + "nomCommune": "ST GEORGES DE GREHAIGNE" }, { - "codePostal": "67330", - "codeCommune": "67322", - "libelleAcheminement": "NEUWILLER LES SAVERNE", - "nomCommune": "NEUWILLER LES SAVERNE" + "codePostal": "25440", + "codeCommune": "25253", + "libelleAcheminement": "FOURG", + "nomCommune": "FOURG" }, { - "codePostal": "62124", - "codeCommune": "62082", - "libelleAcheminement": "BARASTRE", - "nomCommune": "BARASTRE" + "codePostal": "26340", + "codeCommune": "26274", + "libelleAcheminement": "ROCHEFOURCHAT", + "nomCommune": "ROCHEFOURCHAT" }, { - "codePostal": "29860", - "codeCommune": "29095", - "libelleAcheminement": "KERSAINT PLABENNEC", - "nomCommune": "KERSAINT PLABENNEC" + "codePostal": "36100", + "codeCommune": "36021", + "libelleAcheminement": "LES BORDES", + "nomCommune": "LES BORDES" }, { - "codePostal": "54450", - "codeCommune": "54401", - "libelleAcheminement": "NONHIGNY", - "nomCommune": "NONHIGNY" + "codePostal": "35370", + "codeCommune": "35272", + "libelleAcheminement": "ST GERMAIN DU PINEL", + "nomCommune": "ST GERMAIN DU PINEL" }, { - "codePostal": "67207", - "codeCommune": "67326", - "libelleAcheminement": "NIEDERHAUSBERGEN", - "nomCommune": "NIEDERHAUSBERGEN" + "codePostal": "25250", + "codeCommune": "25264", + "libelleAcheminement": "GEMONVAL", + "nomCommune": "GEMONVAL" }, { - "codePostal": "62158", - "codeCommune": "62086", - "libelleAcheminement": "BAVINCOURT", - "nomCommune": "BAVINCOURT" + "codePostal": "26790", + "codeCommune": "26275", + "libelleAcheminement": "ROCHEGUDE", + "nomCommune": "ROCHEGUDE" }, { - "codePostal": "29400", - "codeCommune": "29097", - "libelleAcheminement": "LAMPAUL GUIMILIAU", - "nomCommune": "LAMPAUL GUIMILIAU" + "codePostal": "36100", + "codeCommune": "36027", + "libelleAcheminement": "BRIVES", + "nomCommune": "BRIVES" }, { - "codePostal": "54330", - "codeCommune": "54409", - "libelleAcheminement": "OMELMONT", - "nomCommune": "OMELMONT" + "codePostal": "35590", + "codeCommune": "35275", + "libelleAcheminement": "ST GILLES", + "nomCommune": "ST GILLES" }, { - "codePostal": "67630", - "codeCommune": "67327", - "libelleAcheminement": "NIEDERLAUTERBACH", - "nomCommune": "NIEDERLAUTERBACH" + "codePostal": "25310", + "codeCommune": "25274", + "libelleAcheminement": "GLAY", + "nomCommune": "GLAY" }, { - "codePostal": "62770", - "codeCommune": "62090", - "libelleAcheminement": "BEALENCOURT", - "nomCommune": "BEALENCOURT" + "codePostal": "26150", + "codeCommune": "26282", + "libelleAcheminement": "ROMEYER", + "nomCommune": "ROMEYER" }, { - "codePostal": "29530", - "codeCommune": "29102", - "libelleAcheminement": "LANDELEAU", - "nomCommune": "LANDELEAU" + "codePostal": "36150", + "codeCommune": "36029", + "libelleAcheminement": "BUXEUIL", + "nomCommune": "BUXEUIL" }, { - "codePostal": "54740", - "codeCommune": "54411", - "libelleAcheminement": "ORMES ET VILLE", - "nomCommune": "ORMES ET VILLE" + "codePostal": "35140", + "codeCommune": "35282", + "libelleAcheminement": "RIVES DU COUESNON", + "nomCommune": "RIVES DU COUESNON" }, { - "codePostal": "67330", - "codeCommune": "67333", - "libelleAcheminement": "NIEDERSOULTZBACH", - "nomCommune": "NIEDERSOULTZBACH" + "codePostal": "25340", + "codeCommune": "25276", + "libelleAcheminement": "GONDENANS MONTBY", + "nomCommune": "GONDENANS MONTBY" }, { - "codePostal": "62450", - "codeCommune": "62093", - "libelleAcheminement": "BEAULENCOURT", - "nomCommune": "BEAULENCOURT" + "codePostal": "26420", + "codeCommune": "26290", + "libelleAcheminement": "ST AGNAN EN VERCORS", + "nomCommune": "ST AGNAN EN VERCORS" }, { - "codePostal": "29560", - "codeCommune": "29104", - "libelleAcheminement": "LANDEVENNEC", - "nomCommune": "LANDEVENNEC" + "codePostal": "36500", + "codeCommune": "36031", + "libelleAcheminement": "BUZANCAIS", + "nomCommune": "BUZANCAIS" }, { - "codePostal": "54150", - "codeCommune": "54413", - "libelleAcheminement": "OZERAILLES", - "nomCommune": "OZERAILLES" + "codePostal": "35140", + "codeCommune": "35282", + "libelleAcheminement": "RIVES DU COUESNON", + "nomCommune": "RIVES DU COUESNON" }, { - "codePostal": "67660", - "codeCommune": "67339", - "libelleAcheminement": "BETSCHDORF", - "nomCommune": "BETSCHDORF" + "codePostal": "25200", + "codeCommune": "25284", + "libelleAcheminement": "GRAND CHARMONT", + "nomCommune": "GRAND CHARMONT" }, { - "codePostal": "62600", - "codeCommune": "62108", - "libelleAcheminement": "BERCK", - "nomCommune": "BERCK" + "codePostal": "26260", + "codeCommune": "26301", + "libelleAcheminement": "ST DONAT SUR L HERBASSE", + "nomCommune": "ST DONAT SUR L HERBASSE" }, { - "codePostal": "29510", - "codeCommune": "29107", - "libelleAcheminement": "LANDUDAL", - "nomCommune": "LANDUDAL" + "codePostal": "36200", + "codeCommune": "36033", + "libelleAcheminement": "CELON", + "nomCommune": "CELON" }, { - "codePostal": "54480", - "codeCommune": "54419", - "libelleAcheminement": "PARUX", - "nomCommune": "PARUX" + "codePostal": "35270", + "codeCommune": "35286", + "libelleAcheminement": "ST LEGER DES PRES", + "nomCommune": "ST LEGER DES PRES" }, { - "codePostal": "67660", - "codeCommune": "67339", - "libelleAcheminement": "BETSCHDORF", - "nomCommune": "BETSCHDORF" + "codePostal": "25320", + "codeCommune": "25287", + "libelleAcheminement": "GRANDFONTAINE", + "nomCommune": "GRANDFONTAINE" }, { - "codePostal": "62123", - "codeCommune": "62115", - "libelleAcheminement": "BERNEVILLE", - "nomCommune": "BERNEVILLE" + "codePostal": "26170", + "codeCommune": "26303", + "libelleAcheminement": "STE EUPHEMIE SUR OUVEZE", + "nomCommune": "STE EUPHEMIE SUR OUVEZE" }, { - "codePostal": "29840", - "codeCommune": "29109", - "libelleAcheminement": "LANDUNVEZ", - "nomCommune": "LANDUNVEZ" + "codePostal": "36370", + "codeCommune": "36036", + "libelleAcheminement": "CHALAIS", + "nomCommune": "CHALAIS" }, { - "codePostal": "54260", - "codeCommune": "54420", - "libelleAcheminement": "PETIT FAILLY", - "nomCommune": "PETIT FAILLY" + "codePostal": "35400", + "codeCommune": "35288", + "libelleAcheminement": "ST MALO", + "nomCommune": "ST MALO" }, { - "codePostal": "67660", - "codeCommune": "67339", - "libelleAcheminement": "BETSCHDORF", - "nomCommune": "BETSCHDORF" + "codePostal": "25390", + "codeCommune": "25288", + "libelleAcheminement": "FOURNETS LUISANS", + "nomCommune": "FOURNETS LUISANS" }, { - "codePostal": "62400", - "codeCommune": "62119", - "libelleAcheminement": "BETHUNE", - "nomCommune": "BETHUNE" + "codePostal": "26350", + "codeCommune": "26310", + "libelleAcheminement": "ST LAURENT D ONAY", + "nomCommune": "ST LAURENT D ONAY" }, { - "codePostal": "29430", - "codeCommune": "29111", - "libelleAcheminement": "LANHOUARNEAU", - "nomCommune": "LANHOUARNEAU" + "codePostal": "36400", + "codeCommune": "36046", + "libelleAcheminement": "LA CHATRE", + "nomCommune": "LA CHATRE" }, { - "codePostal": "54200", - "codeCommune": "54426", - "libelleAcheminement": "PIERRE LA TREICHE", - "nomCommune": "PIERRE LA TREICHE" + "codePostal": "35750", + "codeCommune": "35290", + "libelleAcheminement": "ST MALON SUR MEL", + "nomCommune": "ST MALON SUR MEL" }, { - "codePostal": "67110", - "codeCommune": "67340", - "libelleAcheminement": "OBERBRONN", - "nomCommune": "OBERBRONN" + "codePostal": "25300", + "codeCommune": "25293", + "libelleAcheminement": "GRANGES NARBOZ", + "nomCommune": "GRANGES NARBOZ" }, { - "codePostal": "62150", - "codeCommune": "62120", - "libelleAcheminement": "BEUGIN", - "nomCommune": "BEUGIN" + "codePostal": "26330", + "codeCommune": "26314", + "libelleAcheminement": "ST MARTIN D AOUT", + "nomCommune": "ST MARTIN D AOUT" }, { - "codePostal": "29190", - "codeCommune": "29115", - "libelleAcheminement": "LANNEDERN", - "nomCommune": "LANNEDERN" + "codePostal": "36800", + "codeCommune": "36051", + "libelleAcheminement": "CHITRAY", + "nomCommune": "CHITRAY" }, { - "codePostal": "54160", - "codeCommune": "54429", - "libelleAcheminement": "PIERREVILLE", - "nomCommune": "PIERREVILLE" + "codePostal": "35460", + "codeCommune": "35292", + "libelleAcheminement": "ST MARC LE BLANC", + "nomCommune": "ST MARC LE BLANC" }, { - "codePostal": "67280", - "codeCommune": "67342", - "libelleAcheminement": "OBERHASLACH", - "nomCommune": "OBERHASLACH" + "codePostal": "25790", + "codeCommune": "25296", + "libelleAcheminement": "LES GRAS", + "nomCommune": "LES GRAS" }, { - "codePostal": "62124", - "codeCommune": "62122", - "libelleAcheminement": "BEUGNY", - "nomCommune": "BEUGNY" + "codePostal": "26190", + "codeCommune": "26316", + "libelleAcheminement": "ST MARTIN LE COLONEL", + "nomCommune": "ST MARTIN LE COLONEL" }, { - "codePostal": "29400", - "codeCommune": "29116", - "libelleAcheminement": "LANNEUFFRET", - "nomCommune": "LANNEUFFRET" + "codePostal": "36340", + "codeCommune": "36056", + "libelleAcheminement": "CLUIS", + "nomCommune": "CLUIS" }, { - "codePostal": "54340", - "codeCommune": "54430", - "libelleAcheminement": "POMPEY", - "nomCommune": "POMPEY" + "codePostal": "35140", + "codeCommune": "35304", + "libelleAcheminement": "ST OUEN DES ALLEUX", + "nomCommune": "ST OUEN DES ALLEUX" }, { - "codePostal": "67160", - "codeCommune": "67344", - "libelleAcheminement": "OBERHOFFEN LES WISSEMBOURG", - "nomCommune": "OBERHOFFEN LES WISSEMBOURG" + "codePostal": "25620", + "codeCommune": "25297", + "libelleAcheminement": "LE GRATTERIS", + "nomCommune": "LE GRATTERIS" }, { - "codePostal": "62660", - "codeCommune": "62126", - "libelleAcheminement": "BEUVRY", - "nomCommune": "BEUVRY" + "codePostal": "26510", + "codeCommune": "26318", + "libelleAcheminement": "ST MAY", + "nomCommune": "ST MAY" }, { - "codePostal": "29870", - "codeCommune": "29117", - "libelleAcheminement": "LANNILIS", - "nomCommune": "LANNILIS" + "codePostal": "36300", + "codeCommune": "36058", + "libelleAcheminement": "CONCREMIERS", + "nomCommune": "CONCREMIERS" }, { - "codePostal": "54425", - "codeCommune": "54439", - "libelleAcheminement": "PULNOY", - "nomCommune": "PULNOY" + "codePostal": "35560", + "codeCommune": "35309", + "libelleAcheminement": "ST REMY DU PLAIN", + "nomCommune": "ST REMY DU PLAIN" }, { - "codePostal": "67330", - "codeCommune": "67347", - "libelleAcheminement": "OBERMODERN ZUTZENDORF", - "nomCommune": "OBERMODERN ZUTZENDORF" + "codePostal": "25370", + "codeCommune": "25307", + "libelleAcheminement": "LES HOPITAUX NEUFS", + "nomCommune": "LES HOPITAUX NEUFS" }, { - "codePostal": "62380", - "codeCommune": "62140", - "libelleAcheminement": "BLEQUIN", - "nomCommune": "BLEQUIN" + "codePostal": "26340", + "codeCommune": "26321", + "libelleAcheminement": "ST NAZAIRE LE DESERT", + "nomCommune": "ST NAZAIRE LE DESERT" }, { - "codePostal": "29190", - "codeCommune": "29123", - "libelleAcheminement": "LENNON", - "nomCommune": "LENNON" + "codePostal": "36260", + "codeCommune": "36065", + "libelleAcheminement": "DIOU", + "nomCommune": "DIOU" }, { - "codePostal": "54800", - "codeCommune": "54440", - "libelleAcheminement": "PUXE", - "nomCommune": "PUXE" + "codePostal": "35630", + "codeCommune": "35317", + "libelleAcheminement": "ST SYMPHORIEN", + "nomCommune": "ST SYMPHORIEN" }, { - "codePostal": "67203", - "codeCommune": "67350", - "libelleAcheminement": "OBERSCHAEFFOLSHEIM", - "nomCommune": "OBERSCHAEFFOLSHEIM" + "codePostal": "25680", + "codeCommune": "25310", + "libelleAcheminement": "HUANNE MONTMARTIN", + "nomCommune": "HUANNE MONTMARTIN" }, { - "codePostal": "62120", - "codeCommune": "62141", - "libelleAcheminement": "BLESSY", - "nomCommune": "BLESSY" + "codePostal": "26770", + "codeCommune": "26335", + "libelleAcheminement": "SALLES SOUS BOIS", + "nomCommune": "SALLES SOUS BOIS" }, { - "codePostal": "29260", - "codeCommune": "29124", - "libelleAcheminement": "LESNEVEN", - "nomCommune": "LESNEVEN" + "codePostal": "36180", + "codeCommune": "36080", + "libelleAcheminement": "FREDILLE", + "nomCommune": "FREDILLE" }, { - "codePostal": "54800", - "codeCommune": "54441", - "libelleAcheminement": "PUXIEUX", - "nomCommune": "PUXIEUX" + "codePostal": "35320", + "codeCommune": "35322", + "libelleAcheminement": "LE SEL DE BRETAGNE", + "nomCommune": "LE SEL DE BRETAGNE" }, { - "codePostal": "67160", - "codeCommune": "67351", - "libelleAcheminement": "SEEBACH", - "nomCommune": "SEEBACH" + "codePostal": "25470", + "codeCommune": "25314", + "libelleAcheminement": "INDEVILLERS", + "nomCommune": "INDEVILLERS" }, { - "codePostal": "62128", - "codeCommune": "62144", - "libelleAcheminement": "BOIRY BECQUERELLE", - "nomCommune": "BOIRY BECQUERELLE" + "codePostal": "26400", + "codeCommune": "26336", + "libelleAcheminement": "SAOU", + "nomCommune": "SAOU" }, { - "codePostal": "29390", - "codeCommune": "29125", - "libelleAcheminement": "LEUHAN", - "nomCommune": "LEUHAN" + "codePostal": "36180", + "codeCommune": "36086", + "libelleAcheminement": "HEUGNES", + "nomCommune": "HEUGNES" }, { - "codePostal": "54540", - "codeCommune": "54443", - "libelleAcheminement": "RAON LES LEAU", - "nomCommune": "RAON LES LEAU" + "codePostal": "35530", + "codeCommune": "35327", + "libelleAcheminement": "SERVON SUR VILAINE", + "nomCommune": "SERVON SUR VILAINE" }, { - "codePostal": "67850", - "codeCommune": "67356", - "libelleAcheminement": "OFFENDORF", - "nomCommune": "OFFENDORF" + "codePostal": "25250", + "codeCommune": "25315", + "libelleAcheminement": "L ISLE SUR LE DOUBS", + "nomCommune": "L ISLE SUR LE DOUBS" }, { - "codePostal": "62500", - "codeCommune": "62149", - "libelleAcheminement": "BOISDINGHEM", - "nomCommune": "BOISDINGHEM" + "codePostal": "26270", + "codeCommune": "26337", + "libelleAcheminement": "SAULCE SUR RHONE", + "nomCommune": "SAULCE SUR RHONE" }, { - "codePostal": "29280", - "codeCommune": "29130", - "libelleAcheminement": "LOCMARIA PLOUZANE", - "nomCommune": "LOCMARIA PLOUZANE" + "codePostal": "36240", + "codeCommune": "36090", + "libelleAcheminement": "JEU MALOCHES", + "nomCommune": "JEU MALOCHES" }, { - "codePostal": "54610", - "codeCommune": "54444", - "libelleAcheminement": "RAUCOURT", - "nomCommune": "RAUCOURT" + "codePostal": "35550", + "codeCommune": "35328", + "libelleAcheminement": "SIXT SUR AFF", + "nomCommune": "SIXT SUR AFF" }, { - "codePostal": "67170", - "codeCommune": "67361", - "libelleAcheminement": "OLWISHEIM", - "nomCommune": "OLWISHEIM" + "codePostal": "25360", + "codeCommune": "25324", + "libelleAcheminement": "LANANS", + "nomCommune": "LANANS" }, { - "codePostal": "62175", - "codeCommune": "62151", - "libelleAcheminement": "BOISLEUX AU MONT", - "nomCommune": "BOISLEUX AU MONT" + "codePostal": "26560", + "codeCommune": "26340", + "libelleAcheminement": "SEDERON", + "nomCommune": "SEDERON" }, { - "codePostal": "29180", - "codeCommune": "29134", - "libelleAcheminement": "LOCRONAN", - "nomCommune": "LOCRONAN" + "codePostal": "36370", + "codeCommune": "36094", + "libelleAcheminement": "LIGNAC", + "nomCommune": "LIGNAC" }, { - "codePostal": "54120", - "codeCommune": "54450", - "libelleAcheminement": "REHERREY", - "nomCommune": "REHERREY" + "codePostal": "35500", + "codeCommune": "35330", + "libelleAcheminement": "TAILLIS", + "nomCommune": "TAILLIS" }, { - "codePostal": "67990", - "codeCommune": "67363", - "libelleAcheminement": "OSTHOFFEN", - "nomCommune": "OSTHOFFEN" + "codePostal": "25250", + "codeCommune": "25327", + "libelleAcheminement": "LANTHENANS", + "nomCommune": "LANTHENANS" }, { - "codePostal": "62175", - "codeCommune": "62152", - "libelleAcheminement": "BOISLEUX ST MARC", - "nomCommune": "BOISLEUX ST MARC" + "codePostal": "26600", + "codeCommune": "26347", + "libelleAcheminement": "TAIN L HERMITAGE", + "nomCommune": "TAIN L HERMITAGE" }, { - "codePostal": "29460", - "codeCommune": "29137", - "libelleAcheminement": "LOGONNA DAOULAS", - "nomCommune": "LOGONNA DAOULAS" + "codePostal": "36400", + "codeCommune": "36109", + "libelleAcheminement": "LE MAGNY", + "nomCommune": "LE MAGNY" }, { - "codePostal": "54430", - "codeCommune": "54451", - "libelleAcheminement": "REHON", - "nomCommune": "REHON" + "codePostal": "35370", + "codeCommune": "35338", + "libelleAcheminement": "TORCE", + "nomCommune": "TORCE" }, { - "codePostal": "67530", - "codeCommune": "67368", - "libelleAcheminement": "OTTROTT", - "nomCommune": "OTTROTT" + "codePostal": "25110", + "codeCommune": "25341", + "libelleAcheminement": "LOMONT SUR CRETE", + "nomCommune": "LOMONT SUR CRETE" }, { - "codePostal": "62270", - "codeCommune": "62154", - "libelleAcheminement": "BONNIERES", - "nomCommune": "BONNIERES" + "codePostal": "26460", + "codeCommune": "26351", + "libelleAcheminement": "LES TONILS", + "nomCommune": "LES TONILS" }, { - "codePostal": "29190", - "codeCommune": "29142", - "libelleAcheminement": "LOTHEY", - "nomCommune": "LOTHEY" + "codePostal": "36500", + "codeCommune": "36118", + "libelleAcheminement": "MEOBECQ", + "nomCommune": "MEOBECQ" }, { - "codePostal": "54450", - "codeCommune": "54458", - "libelleAcheminement": "REPAIX", - "nomCommune": "REPAIX" + "codePostal": "35610", + "codeCommune": "35339", + "libelleAcheminement": "TRANS LA FORET", + "nomCommune": "TRANS LA FORET" }, { - "codePostal": "67370", - "codeCommune": "67375", - "libelleAcheminement": "PFULGRIESHEIM", - "nomCommune": "PFULGRIESHEIM" + "codePostal": "25210", + "codeCommune": "25351", + "libelleAcheminement": "LE LUHIER", + "nomCommune": "LE LUHIER" }, { - "codePostal": "62890", - "codeCommune": "62155", - "libelleAcheminement": "BONNINGUES LES ARDRES", - "nomCommune": "BONNINGUES LES ARDRES" + "codePostal": "26510", + "codeCommune": "26376", + "libelleAcheminement": "VILLEPERDRIX", + "nomCommune": "VILLEPERDRIX" }, { - "codePostal": "29790", - "codeCommune": "29145", - "libelleAcheminement": "CONFORT MEILARS", - "nomCommune": "CONFORT MEILARS" + "codePostal": "36290", + "codeCommune": "36123", + "libelleAcheminement": "MEZIERES EN BRENNE", + "nomCommune": "MEZIERES EN BRENNE" }, { - "codePostal": "54610", - "codeCommune": "54464", - "libelleAcheminement": "ROUVES", - "nomCommune": "ROUVES" + "codePostal": "35190", + "codeCommune": "35345", + "libelleAcheminement": "TREVERIEN", + "nomCommune": "TREVERIEN" }, { - "codePostal": "67420", - "codeCommune": "67377", - "libelleAcheminement": "PLAINE", - "nomCommune": "PLAINE" + "codePostal": "25640", + "codeCommune": "25368", + "libelleAcheminement": "MARCHAUX CHAUDEFONTAINE", + "nomCommune": "MARCHAUX CHAUDEFONTAINE" }, { - "codePostal": "62340", - "codeCommune": "62156", - "libelleAcheminement": "BONNINGUES LES CALAIS", - "nomCommune": "BONNINGUES LES CALAIS" + "codePostal": "27400", + "codeCommune": "27003", + "libelleAcheminement": "ACQUIGNY", + "nomCommune": "ACQUIGNY" }, { - "codePostal": "29140", - "codeCommune": "29146", - "libelleAcheminement": "MELGVEN", - "nomCommune": "MELGVEN" + "codePostal": "36800", + "codeCommune": "36124", + "libelleAcheminement": "MIGNE", + "nomCommune": "MIGNE" }, { - "codePostal": "54580", - "codeCommune": "54469", - "libelleAcheminement": "ST AIL", - "nomCommune": "ST AIL" + "codePostal": "35132", + "codeCommune": "35353", + "libelleAcheminement": "VEZIN LE COQUET", + "nomCommune": "VEZIN LE COQUET" }, { - "codePostal": "67350", - "codeCommune": "67403", - "libelleAcheminement": "RINGENDORF", - "nomCommune": "RINGENDORF" + "codePostal": "25620", + "codeCommune": "25375", + "libelleAcheminement": "LES MONTS RONDS", + "nomCommune": "LES MONTS RONDS" }, { - "codePostal": "62270", - "codeCommune": "62158", - "libelleAcheminement": "BOUBERS SUR CANCHE", - "nomCommune": "BOUBERS SUR CANCHE" + "codePostal": "27400", + "codeCommune": "27003", + "libelleAcheminement": "ACQUIGNY", + "nomCommune": "ACQUIGNY" }, { - "codePostal": "29270", - "codeCommune": "29152", - "libelleAcheminement": "MOTREFF", - "nomCommune": "MOTREFF" + "codePostal": "36140", + "codeCommune": "36126", + "libelleAcheminement": "MONTCHEVRIER", + "nomCommune": "MONTCHEVRIER" }, { - "codePostal": "54470", - "codeCommune": "54470", - "libelleAcheminement": "ST BAUSSANT", - "nomCommune": "ST BAUSSANT" + "codePostal": "35490", + "codeCommune": "35355", + "libelleAcheminement": "VIEUX VY SUR COUESNON", + "nomCommune": "VIEUX VY SUR COUESNON" }, { - "codePostal": "67270", - "codeCommune": "67406", - "libelleAcheminement": "ROHR", - "nomCommune": "ROHR" + "codePostal": "25310", + "codeCommune": "25378", + "libelleAcheminement": "MESLIERES", + "nomCommune": "MESLIERES" }, { - "codePostal": "62550", - "codeCommune": "62166", - "libelleAcheminement": "BOURS", - "nomCommune": "BOURS" + "codePostal": "27500", + "codeCommune": "27006", + "libelleAcheminement": "AIZIER", + "nomCommune": "AIZIER" }, { - "codePostal": "29710", - "codeCommune": "29159", - "libelleAcheminement": "PEUMERIT", - "nomCommune": "PEUMERIT" + "codePostal": "36400", + "codeCommune": "36127", + "libelleAcheminement": "MONTGIVRAY", + "nomCommune": "MONTGIVRAY" }, { - "codePostal": "54700", - "codeCommune": "54474", - "libelleAcheminement": "STE GENEVIEVE", - "nomCommune": "STE GENEVIEVE" + "codePostal": "35630", + "codeCommune": "35356", + "libelleAcheminement": "VIGNOC", + "nomCommune": "VIGNOC" }, { - "codePostal": "67560", - "codeCommune": "67410", - "libelleAcheminement": "ROSENWILLER", - "nomCommune": "ROSENWILLER" + "codePostal": "25440", + "codeCommune": "25379", + "libelleAcheminement": "MESMAY", + "nomCommune": "MESMAY" }, { - "codePostal": "62380", - "codeCommune": "62169", - "libelleAcheminement": "BOUVELINGHEM", - "nomCommune": "BOUVELINGHEM" + "codePostal": "27380", + "codeCommune": "27013", + "libelleAcheminement": "AMFREVILLE SOUS LES MONTS", + "nomCommune": "AMFREVILLE SOUS LES MONTS" }, { - "codePostal": "29550", - "codeCommune": "29166", - "libelleAcheminement": "PLOEVEN", - "nomCommune": "PLOEVEN" + "codePostal": "36130", + "codeCommune": "36128", + "libelleAcheminement": "MONTIERCHAUME", + "nomCommune": "MONTIERCHAUME" }, { - "codePostal": "54210", - "codeCommune": "54483", - "libelleAcheminement": "ST NICOLAS DE PORT", - "nomCommune": "ST NICOLAS DE PORT" + "codePostal": "35540", + "codeCommune": "35362", + "libelleAcheminement": "LE TRONCHET", + "nomCommune": "LE TRONCHET" }, { - "codePostal": "67170", - "codeCommune": "67417", - "libelleAcheminement": "ROTTELSHEIM", - "nomCommune": "ROTTELSHEIM" + "codePostal": "25480", + "codeCommune": "25381", + "libelleAcheminement": "MISEREY SALINES", + "nomCommune": "MISEREY SALINES" }, { - "codePostal": "62170", - "codeCommune": "62177", - "libelleAcheminement": "BRIMEUX", - "nomCommune": "BRIMEUX" + "codePostal": "27430", + "codeCommune": "27015", + "libelleAcheminement": "ANDE", + "nomCommune": "ANDE" }, { - "codePostal": "29700", - "codeCommune": "29170", - "libelleAcheminement": "PLOMELIN", - "nomCommune": "PLOMELIN" + "codePostal": "36400", + "codeCommune": "36130", + "libelleAcheminement": "MONTLEVICQ", + "nomCommune": "MONTLEVICQ" }, { - "codePostal": "54740", - "codeCommune": "54486", - "libelleAcheminement": "ST REMIMONT", - "nomCommune": "ST REMIMONT" + "codePostal": "35131", + "codeCommune": "35363", + "libelleAcheminement": "PONT PEAN", + "nomCommune": "PONT PEAN" }, { - "codePostal": "67420", - "codeCommune": "67424", - "libelleAcheminement": "ST BLAISE LA ROCHE", - "nomCommune": "ST BLAISE LA ROCHE" + "codePostal": "25680", + "codeCommune": "25385", + "libelleAcheminement": "MONTAGNEY SERVIGNEY", + "nomCommune": "MONTAGNEY SERVIGNEY" }, { - "codePostal": "62240", - "codeCommune": "62179", - "libelleAcheminement": "BRUNEMBERT", - "nomCommune": "BRUNEMBERT" + "codePostal": "27700", + "codeCommune": "27016", + "libelleAcheminement": "LES ANDELYS", + "nomCommune": "LES ANDELYS" }, { - "codePostal": "29720", - "codeCommune": "29174", - "libelleAcheminement": "PLONEOUR LANVERN", - "nomCommune": "PLONEOUR LANVERN" + "codePostal": "36230", + "codeCommune": "36141", + "libelleAcheminement": "NEUVY ST SEPULCHRE", + "nomCommune": "NEUVY ST SEPULCHRE" }, { - "codePostal": "54380", - "codeCommune": "54490", - "libelleAcheminement": "SAIZERAIS", - "nomCommune": "SAIZERAIS" + "codePostal": "36500", + "codeCommune": "36007", + "libelleAcheminement": "ARGY", + "nomCommune": "ARGY" }, { - "codePostal": "67220", - "codeCommune": "67430", - "libelleAcheminement": "ST PIERRE BOIS", - "nomCommune": "ST PIERRE BOIS" + "codePostal": "25200", + "codeCommune": "25388", + "libelleAcheminement": "MONTBELIARD", + "nomCommune": "MONTBELIARD" }, { - "codePostal": "62860", - "codeCommune": "62184", - "libelleAcheminement": "BUISSY", - "nomCommune": "BUISSY" + "codePostal": "27600", + "codeCommune": "27022", + "libelleAcheminement": "LE VAL D HAZEY", + "nomCommune": "LE VAL D HAZEY" }, { - "codePostal": "29550", - "codeCommune": "29176", - "libelleAcheminement": "PLONEVEZ PORZAY", - "nomCommune": "PLONEVEZ PORZAY" + "codePostal": "36210", + "codeCommune": "36147", + "libelleAcheminement": "ORVILLE", + "nomCommune": "ORVILLE" }, { - "codePostal": "54115", - "codeCommune": "54494", - "libelleAcheminement": "SAULXEROTTE", - "nomCommune": "SAULXEROTTE" + "codePostal": "36110", + "codeCommune": "36023", + "libelleAcheminement": "BOUGES LE CHATEAU", + "nomCommune": "BOUGES LE CHATEAU" }, { - "codePostal": "67160", - "codeCommune": "67432", - "libelleAcheminement": "SALMBACH", - "nomCommune": "SALMBACH" + "codePostal": "25210", + "codeCommune": "25389", + "libelleAcheminement": "MONTBELIARDOT", + "nomCommune": "MONTBELIARDOT" }, { - "codePostal": "62310", - "codeCommune": "62209", - "libelleAcheminement": "CANLERS", - "nomCommune": "CANLERS" + "codePostal": "27420", + "codeCommune": "27026", + "libelleAcheminement": "AUTHEVERNES", + "nomCommune": "AUTHEVERNES" }, { - "codePostal": "29810", - "codeCommune": "29177", - "libelleAcheminement": "PLOUARZEL", - "nomCommune": "PLOUARZEL" + "codePostal": "36500", + "codeCommune": "36149", + "libelleAcheminement": "PALLUAU SUR INDRE", + "nomCommune": "PALLUAU SUR INDRE" }, { - "codePostal": "54280", - "codeCommune": "54498", - "libelleAcheminement": "SEICHAMPS", - "nomCommune": "SEICHAMPS" + "codePostal": "36000", + "codeCommune": "36044", + "libelleAcheminement": "CHATEAUROUX", + "nomCommune": "CHATEAUROUX" }, { - "codePostal": "67260", - "codeCommune": "67435", - "libelleAcheminement": "SARREWERDEN", - "nomCommune": "SARREWERDEN" + "codePostal": "25120", + "codeCommune": "25392", + "libelleAcheminement": "MONT DE VOUGNEY", + "nomCommune": "MONT DE VOUGNEY" }, { - "codePostal": "62220", - "codeCommune": "62215", - "libelleAcheminement": "CARVIN", - "nomCommune": "CARVIN" + "codePostal": "27220", + "codeCommune": "27027", + "libelleAcheminement": "LES AUTHIEUX", + "nomCommune": "LES AUTHIEUX" }, { - "codePostal": "29800", - "codeCommune": "29180", - "libelleAcheminement": "PLOUDIRY", - "nomCommune": "PLOUDIRY" + "codePostal": "36300", + "codeCommune": "36165", + "libelleAcheminement": "POULIGNY ST PIERRE", + "nomCommune": "POULIGNY ST PIERRE" }, { - "codePostal": "54170", - "codeCommune": "54500", - "libelleAcheminement": "SELAINCOURT", - "nomCommune": "SELAINCOURT" + "codePostal": "36700", + "codeCommune": "36045", + "libelleAcheminement": "CHATILLON SUR INDRE", + "nomCommune": "CHATILLON SUR INDRE" }, { - "codePostal": "67260", - "codeCommune": "67435", - "libelleAcheminement": "SARREWERDEN", - "nomCommune": "SARREWERDEN" + "codePostal": "25360", + "codeCommune": "25417", + "libelleAcheminement": "NAISEY LES GRANGES", + "nomCommune": "NAISEY LES GRANGES" }, { - "codePostal": "62158", - "codeCommune": "62216", - "libelleAcheminement": "LA CAUCHIE", - "nomCommune": "LA CAUCHIE" + "codePostal": "27260", + "codeCommune": "27035", + "libelleAcheminement": "BAILLEUL LA VALLEE", + "nomCommune": "BAILLEUL LA VALLEE" }, { - "codePostal": "29420", - "codeCommune": "29184", - "libelleAcheminement": "PLOUENAN", - "nomCommune": "PLOUENAN" + "codePostal": "36240", + "codeCommune": "36166", + "libelleAcheminement": "PREAUX", + "nomCommune": "PREAUX" }, { - "codePostal": "54830", - "codeCommune": "54501", - "libelleAcheminement": "SERANVILLE", - "nomCommune": "SERANVILLE" + "codePostal": "36170", + "codeCommune": "36049", + "libelleAcheminement": "CHAZELET", + "nomCommune": "CHAZELET" }, { - "codePostal": "67310", - "codeCommune": "67442", - "libelleAcheminement": "SCHARRACHBERGHEIM IRMSTETT", - "nomCommune": "SCHARRACHBERGHEIM IRMSTETT" + "codePostal": "25210", + "codeCommune": "25421", + "libelleAcheminement": "NARBIEF", + "nomCommune": "NARBIEF" }, { - "codePostal": "62140", - "codeCommune": "62220", - "libelleAcheminement": "CAVRON ST MARTIN", - "nomCommune": "CAVRON ST MARTIN" + "codePostal": "27270", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "29440", - "codeCommune": "29187", - "libelleAcheminement": "PLOUGAR", - "nomCommune": "PLOUGAR" + "codePostal": "36170", + "codeCommune": "36174", + "libelleAcheminement": "ROUSSINES", + "nomCommune": "ROUSSINES" }, { - "codePostal": "54560", - "codeCommune": "54504", - "libelleAcheminement": "SERROUVILLE", - "nomCommune": "SERROUVILLE" + "codePostal": "36300", + "codeCommune": "36053", + "libelleAcheminement": "CIRON", + "nomCommune": "CIRON" }, { - "codePostal": "67750", - "codeCommune": "67445", - "libelleAcheminement": "SCHERWILLER", - "nomCommune": "SCHERWILLER" + "codePostal": "25150", + "codeCommune": "25422", + "libelleAcheminement": "NEUCHATEL URTIERE", + "nomCommune": "NEUCHATEL URTIERE" }, { - "codePostal": "62128", - "codeCommune": "62223", - "libelleAcheminement": "CHERISY", - "nomCommune": "CHERISY" + "codePostal": "27330", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "29630", - "codeCommune": "29188", - "libelleAcheminement": "PLOUGASNOU", - "nomCommune": "PLOUGASNOU" + "codePostal": "36110", + "codeCommune": "36175", + "libelleAcheminement": "ROUVRES LES BOIS", + "nomCommune": "ROUVRES LES BOIS" }, { - "codePostal": "54610", - "codeCommune": "54508", - "libelleAcheminement": "SIVRY", - "nomCommune": "SIVRY" + "codePostal": "36300", + "codeCommune": "36053", + "libelleAcheminement": "CIRON", + "nomCommune": "CIRON" }, { - "codePostal": "67240", - "codeCommune": "67450", - "libelleAcheminement": "SCHIRRHOFFEN", - "nomCommune": "SCHIRRHOFFEN" + "codePostal": "25580", + "codeCommune": "25424", + "libelleAcheminement": "LES PREMIERS SAPINS", + "nomCommune": "LES PREMIERS SAPINS" }, { - "codePostal": "62150", - "codeCommune": "62232", - "libelleAcheminement": "LA COMTE", - "nomCommune": "LA COMTE" + "codePostal": "27330", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "29810", - "codeCommune": "29201", - "libelleAcheminement": "PLOUMOGUER", - "nomCommune": "PLOUMOGUER" + "codePostal": "36170", + "codeCommune": "36177", + "libelleAcheminement": "SACIERGES ST MARTIN", + "nomCommune": "SACIERGES ST MARTIN" }, { - "codePostal": "54110", - "codeCommune": "54509", - "libelleAcheminement": "SOMMERVILLER", - "nomCommune": "SOMMERVILLER" + "codePostal": "36100", + "codeCommune": "36059", + "libelleAcheminement": "CONDE", + "nomCommune": "CONDE" }, { - "codePostal": "67390", - "codeCommune": "67453", - "libelleAcheminement": "SCHOENAU", - "nomCommune": "SCHOENAU" + "codePostal": "25580", + "codeCommune": "25424", + "libelleAcheminement": "LES PREMIERS SAPINS", + "nomCommune": "LES PREMIERS SAPINS" }, { - "codePostal": "62990", - "codeCommune": "62236", - "libelleAcheminement": "CONTES", - "nomCommune": "CONTES" + "codePostal": "27170", + "codeCommune": "27051", + "libelleAcheminement": "BEAUMONT LE ROGER", + "nomCommune": "BEAUMONT LE ROGER" }, { - "codePostal": "29400", - "codeCommune": "29204", - "libelleAcheminement": "PLOUNEVENTER", - "nomCommune": "PLOUNEVENTER" + "codePostal": "36100", + "codeCommune": "36181", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "54480", - "codeCommune": "54512", - "libelleAcheminement": "TANCONVILLE", - "nomCommune": "TANCONVILLE" + "codePostal": "36130", + "codeCommune": "36063", + "libelleAcheminement": "DEOLS", + "nomCommune": "DEOLS" }, { - "codePostal": "67590", - "codeCommune": "67458", - "libelleAcheminement": "SCHWEIGHOUSE SUR MODER", - "nomCommune": "SCHWEIGHOUSE SUR MODER" + "codePostal": "25580", + "codeCommune": "25424", + "libelleAcheminement": "LES PREMIERS SAPINS", + "nomCommune": "LES PREMIERS SAPINS" }, { - "codePostal": "62126", - "codeCommune": "62237", - "libelleAcheminement": "CONTEVILLE LES BOULOGNE", - "nomCommune": "CONTEVILLE LES BOULOGNE" + "codePostal": "27160", + "codeCommune": "27054", + "libelleAcheminement": "BEMECOURT", + "nomCommune": "BEMECOURT" }, { - "codePostal": "29270", - "codeCommune": "29205", - "libelleAcheminement": "PLOUNEVEZEL", - "nomCommune": "PLOUNEVEZEL" + "codePostal": "36400", + "codeCommune": "36186", + "libelleAcheminement": "ST CHRISTOPHE EN BOUCHERIE", + "nomCommune": "ST CHRISTOPHE EN BOUCHERIE" }, { - "codePostal": "54330", - "codeCommune": "54515", - "libelleAcheminement": "THELOD", - "nomCommune": "THELOD" + "codePostal": "36300", + "codeCommune": "36066", + "libelleAcheminement": "DOUADIC", + "nomCommune": "DOUADIC" }, { - "codePostal": "67260", - "codeCommune": "67468", - "libelleAcheminement": "SILTZHEIM", - "nomCommune": "SILTZHEIM" + "codePostal": "25580", + "codeCommune": "25424", + "libelleAcheminement": "LES PREMIERS SAPINS", + "nomCommune": "LES PREMIERS SAPINS" }, { - "codePostal": "62112", - "codeCommune": "62240", - "libelleAcheminement": "CORBEHEM", - "nomCommune": "CORBEHEM" + "codePostal": "27940", + "codeCommune": "27058", + "libelleAcheminement": "LES TROIS LACS", + "nomCommune": "LES TROIS LACS" }, { - "codePostal": "29430", - "codeCommune": "29206", - "libelleAcheminement": "PLOUNEVEZ LOCHRIST", - "nomCommune": "PLOUNEVEZ LOCHRIST" + "codePostal": "36170", + "codeCommune": "36187", + "libelleAcheminement": "ST CIVRAN", + "nomCommune": "ST CIVRAN" }, { - "codePostal": "54610", - "codeCommune": "54517", - "libelleAcheminement": "THEZEY ST MARTIN", - "nomCommune": "THEZEY ST MARTIN" + "codePostal": "36270", + "codeCommune": "36070", + "libelleAcheminement": "EGUZON CHANTOME", + "nomCommune": "EGUZON CHANTOME" }, { - "codePostal": "67460", - "codeCommune": "67471", - "libelleAcheminement": "SOUFFELWEYERSHEIM", - "nomCommune": "SOUFFELWEYERSHEIM" + "codePostal": "25600", + "codeCommune": "25428", + "libelleAcheminement": "NOMMAY", + "nomCommune": "NOMMAY" }, { - "codePostal": "62970", - "codeCommune": "62249", - "libelleAcheminement": "COURCELLES LES LENS", - "nomCommune": "COURCELLES LES LENS" + "codePostal": "27370", + "codeCommune": "27062", + "libelleAcheminement": "LES MONTS DU ROUMOIS", + "nomCommune": "LES MONTS DU ROUMOIS" }, { - "codePostal": "29800", - "codeCommune": "29237", - "libelleAcheminement": "LA ROCHE MAURICE", - "nomCommune": "LA ROCHE MAURICE" + "codePostal": "36500", + "codeCommune": "36193", + "libelleAcheminement": "STE GEMME", + "nomCommune": "STE GEMME" }, { - "codePostal": "54470", - "codeCommune": "54518", - "libelleAcheminement": "THIAUCOURT REGNIEVILLE", - "nomCommune": "THIAUCOURT REGNIEVILLE" + "codePostal": "36220", + "codeCommune": "36076", + "libelleAcheminement": "FONTGOMBAULT", + "nomCommune": "FONTGOMBAULT" }, { - "codePostal": "67620", - "codeCommune": "67472", - "libelleAcheminement": "SOUFFLENHEIM", - "nomCommune": "SOUFFLENHEIM" + "codePostal": "25250", + "codeCommune": "25431", + "libelleAcheminement": "ONANS", + "nomCommune": "ONANS" }, { - "codePostal": "62780", - "codeCommune": "62261", - "libelleAcheminement": "CUCQ", - "nomCommune": "CUCQ" + "codePostal": "27170", + "codeCommune": "27063", + "libelleAcheminement": "BERVILLE LA CAMPAGNE", + "nomCommune": "BERVILLE LA CAMPAGNE" }, { - "codePostal": "29570", - "codeCommune": "29238", - "libelleAcheminement": "ROSCANVEL", - "nomCommune": "ROSCANVEL" + "codePostal": "36370", + "codeCommune": "36197", + "libelleAcheminement": "ST HILAIRE SUR BENAIZE", + "nomCommune": "ST HILAIRE SUR BENAIZE" }, { - "codePostal": "54300", - "codeCommune": "54520", - "libelleAcheminement": "THIEBAUMENIL", - "nomCommune": "THIEBAUMENIL" + "codePostal": "36240", + "codeCommune": "36082", + "libelleAcheminement": "GEHEE", + "nomCommune": "GEHEE" }, { - "codePostal": "67790", - "codeCommune": "67478", - "libelleAcheminement": "STEINBOURG", - "nomCommune": "STEINBOURG" + "codePostal": "25430", + "codeCommune": "25436", + "libelleAcheminement": "ORVE", + "nomCommune": "ORVE" }, { - "codePostal": "62780", - "codeCommune": "62261", - "libelleAcheminement": "CUCQ", - "nomCommune": "CUCQ" + "codePostal": "27210", + "codeCommune": "27064", + "libelleAcheminement": "BERVILLE SUR MER", + "nomCommune": "BERVILLE SUR MER" }, { - "codePostal": "29140", - "codeCommune": "29241", - "libelleAcheminement": "ROSPORDEN", - "nomCommune": "ROSPORDEN" + "codePostal": "36500", + "codeCommune": "36198", + "libelleAcheminement": "ST LACTENCIN", + "nomCommune": "ST LACTENCIN" }, { - "codePostal": "54115", - "codeCommune": "54529", - "libelleAcheminement": "TRAMONT EMY", - "nomCommune": "TRAMONT EMY" + "codePostal": "36300", + "codeCommune": "36087", + "libelleAcheminement": "INGRANDES", + "nomCommune": "INGRANDES" }, { - "codePostal": "67190", - "codeCommune": "67480", - "libelleAcheminement": "STILL", - "nomCommune": "STILL" + "codePostal": "25410", + "codeCommune": "25438", + "libelleAcheminement": "OSSELLE ROUTELLE", + "nomCommune": "OSSELLE ROUTELLE" }, { - "codePostal": "62149", - "codeCommune": "62262", - "libelleAcheminement": "CUINCHY", - "nomCommune": "CUINCHY" + "codePostal": "27660", + "codeCommune": "27067", + "libelleAcheminement": "BEZU ST ELOI", + "nomCommune": "BEZU ST ELOI" }, { - "codePostal": "29460", - "codeCommune": "29246", - "libelleAcheminement": "ST ELOY", - "nomCommune": "ST ELOY" + "codePostal": "36260", + "codeCommune": "36205", + "libelleAcheminement": "ST PIERRE DE JARDS", + "nomCommune": "ST PIERRE DE JARDS" }, { - "codePostal": "54115", - "codeCommune": "54530", - "libelleAcheminement": "TRAMONT LASSUS", - "nomCommune": "TRAMONT LASSUS" + "codePostal": "36100", + "codeCommune": "36098", + "libelleAcheminement": "LIZERAY", + "nomCommune": "LIZERAY" }, { - "codePostal": "67250", - "codeCommune": "67484", - "libelleAcheminement": "STUNDWILLER", - "nomCommune": "STUNDWILLER" + "codePostal": "25440", + "codeCommune": "25445", + "libelleAcheminement": "PAROY", + "nomCommune": "PAROY" }, { - "codePostal": "62129", - "codeCommune": "62265", - "libelleAcheminement": "DELETTES", - "nomCommune": "DELETTES" + "codePostal": "27330", + "codeCommune": "27068", + "libelleAcheminement": "BOIS ANZERAY", + "nomCommune": "BOIS ANZERAY" }, { - "codePostal": "29260", - "codeCommune": "29248", - "libelleAcheminement": "ST FREGANT", - "nomCommune": "ST FREGANT" + "codePostal": "36220", + "codeCommune": "36213", + "libelleAcheminement": "SAUZELLES", + "nomCommune": "SAUZELLES" }, { - "codePostal": "54870", - "codeCommune": "54537", - "libelleAcheminement": "UGNY", - "nomCommune": "UGNY" + "codePostal": "36140", + "codeCommune": "36099", + "libelleAcheminement": "LOURDOUEIX ST MICHEL", + "nomCommune": "LOURDOUEIX ST MICHEL" }, { - "codePostal": "67470", - "codeCommune": "67494", - "libelleAcheminement": "TRIMBACH", - "nomCommune": "TRIMBACH" + "codePostal": "25170", + "codeCommune": "25448", + "libelleAcheminement": "PELOUSEY", + "nomCommune": "PELOUSEY" }, { - "codePostal": "62810", - "codeCommune": "62266", - "libelleAcheminement": "DENIER", - "nomCommune": "DENIER" + "codePostal": "27250", + "codeCommune": "27069", + "libelleAcheminement": "BOIS ARNAULT", + "nomCommune": "BOIS ARNAULT" }, { - "codePostal": "29260", - "codeCommune": "29255", - "libelleAcheminement": "ST MEEN", - "nomCommune": "ST MEEN" + "codePostal": "36210", + "codeCommune": "36217", + "libelleAcheminement": "SEMBLECAY", + "nomCommune": "SEMBLECAY" }, { - "codePostal": "54540", - "codeCommune": "54539", - "libelleAcheminement": "VACQUEVILLE", - "nomCommune": "VACQUEVILLE" + "codePostal": "36340", + "codeCommune": "36110", + "libelleAcheminement": "MAILLET", + "nomCommune": "MAILLET" }, { - "codePostal": "67350", - "codeCommune": "67497", - "libelleAcheminement": "UHLWILLER", - "nomCommune": "UHLWILLER" + "codePostal": "25240", + "codeCommune": "25451", + "libelleAcheminement": "PETITE CHAUX", + "nomCommune": "PETITE CHAUX" }, { - "codePostal": "62460", - "codeCommune": "62269", - "libelleAcheminement": "DIEVAL", - "nomCommune": "DIEVAL" + "codePostal": "27700", + "codeCommune": "27070", + "libelleAcheminement": "FRENELLES EN VEXIN", + "nomCommune": "FRENELLES EN VEXIN" }, { - "codePostal": "29400", - "codeCommune": "29262", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "36210", + "codeCommune": "36229", + "libelleAcheminement": "VAL FOUZON", + "nomCommune": "VAL FOUZON" }, { - "codePostal": "54370", - "codeCommune": "54541", - "libelleAcheminement": "VALHEY", - "nomCommune": "VALHEY" + "codePostal": "36160", + "codeCommune": "36132", + "libelleAcheminement": "LA MOTTE FEUILLY", + "nomCommune": "LA MOTTE FEUILLY" }, { - "codePostal": "67220", - "codeCommune": "67499", - "libelleAcheminement": "URBEIS", - "nomCommune": "URBEIS" + "codePostal": "25480", + "codeCommune": "25454", + "libelleAcheminement": "PIREY", + "nomCommune": "PIREY" }, { - "codePostal": "62138", - "codeCommune": "62276", - "libelleAcheminement": "DOUVRIN", - "nomCommune": "DOUVRIN" + "codePostal": "27220", + "codeCommune": "27073", + "libelleAcheminement": "BOIS LE ROI", + "nomCommune": "BOIS LE ROI" }, { - "codePostal": "29410", - "codeCommune": "29266", - "libelleAcheminement": "ST THEGONNEC LOC EGUINER", - "nomCommune": "ST THEGONNEC LOC EGUINER" + "codePostal": "36400", + "codeCommune": "36234", + "libelleAcheminement": "VERNEUIL SUR IGNERAIE", + "nomCommune": "VERNEUIL SUR IGNERAIE" }, { - "codePostal": "54830", - "codeCommune": "54543", - "libelleAcheminement": "VALLOIS", - "nomCommune": "VALLOIS" + "codePostal": "36500", + "codeCommune": "36139", + "libelleAcheminement": "NEUILLAY LES BOIS", + "nomCommune": "NEUILLAY LES BOIS" }, { - "codePostal": "67150", - "codeCommune": "67501", - "libelleAcheminement": "UTTENHEIM", - "nomCommune": "UTTENHEIM" + "codePostal": "25470", + "codeCommune": "25458", + "libelleAcheminement": "LES PLAINS ET GRANDS ESSARTS", + "nomCommune": "LES PLAINS ET GRANDS ESSARTS" }, { - "codePostal": "62131", - "codeCommune": "62278", - "libelleAcheminement": "DROUVIN LE MARAIS", - "nomCommune": "DROUVIN LE MARAIS" + "codePostal": "27330", + "codeCommune": "27075", + "libelleAcheminement": "BOIS NORMAND PRES LYRE", + "nomCommune": "BOIS NORMAND PRES LYRE" }, { - "codePostal": "29800", - "codeCommune": "29268", - "libelleAcheminement": "ST THONAN", - "nomCommune": "ST THONAN" + "codePostal": "36320", + "codeCommune": "36241", + "libelleAcheminement": "VILLEDIEU SUR INDRE", + "nomCommune": "VILLEDIEU SUR INDRE" }, { - "codePostal": "54112", - "codeCommune": "54548", - "libelleAcheminement": "VANNES LE CHATEL", - "nomCommune": "VANNES LE CHATEL" + "codePostal": "36100", + "codeCommune": "36140", + "libelleAcheminement": "NEUVY PAILLOUX", + "nomCommune": "NEUVY PAILLOUX" }, { - "codePostal": "67220", - "codeCommune": "67507", - "libelleAcheminement": "VILLE", - "nomCommune": "VILLE" + "codePostal": "25150", + "codeCommune": "25463", + "libelleAcheminement": "PONT DE ROIDE VERMONDANS", + "nomCommune": "PONT DE ROIDE VERMONDANS" }, { - "codePostal": "62145", - "codeCommune": "62295", - "libelleAcheminement": "ENQUIN LEZ GUINEGATTE", - "nomCommune": "ENQUIN LEZ GUINEGATTE" + "codePostal": "27290", + "codeCommune": "27083", + "libelleAcheminement": "BONNEVILLE APTOT", + "nomCommune": "BONNEVILLE APTOT" }, { - "codePostal": "29450", - "codeCommune": "29277", - "libelleAcheminement": "SIZUN", - "nomCommune": "SIZUN" + "codePostal": "36360", + "codeCommune": "36244", + "libelleAcheminement": "VILLENTROIS FAVEROLLES EN BERRY", + "nomCommune": "VILLENTROIS FAVEROLLES EN BERRY" }, { - "codePostal": "54370", - "codeCommune": "54551", - "libelleAcheminement": "VAUCOURT", - "nomCommune": "VAUCOURT" + "codePostal": "36800", + "codeCommune": "36148", + "libelleAcheminement": "OULCHES", + "nomCommune": "OULCHES" }, { - "codePostal": "67430", - "codeCommune": "67508", - "libelleAcheminement": "VOELLERDINGEN", - "nomCommune": "VOELLERDINGEN" + "codePostal": "25640", + "codeCommune": "25468", + "libelleAcheminement": "POULIGNEY LUSANS", + "nomCommune": "POULIGNEY LUSANS" }, { - "codePostal": "62650", - "codeCommune": "62296", - "libelleAcheminement": "ENQUIN SUR BAILLONS", - "nomCommune": "ENQUIN SUR BAILLONS" + "codePostal": "27670", + "codeCommune": "27090", + "libelleAcheminement": "BOSROUMOIS", + "nomCommune": "BOSROUMOIS" }, { - "codePostal": "29140", - "codeCommune": "29281", - "libelleAcheminement": "TOURCH", - "nomCommune": "TOURCH" + "codePostal": "36600", + "codeCommune": "36244", + "libelleAcheminement": "VILLENTROIS FAVEROLLES EN BERRY", + "nomCommune": "VILLENTROIS FAVEROLLES EN BERRY" }, { - "codePostal": "54330", - "codeCommune": "54552", - "libelleAcheminement": "VAUDEMONT", - "nomCommune": "VAUDEMONT" + "codePostal": "36290", + "codeCommune": "36153", + "libelleAcheminement": "PAULNAY", + "nomCommune": "PAULNAY" }, { - "codePostal": "67130", - "codeCommune": "67513", - "libelleAcheminement": "WALDERSBACH", - "nomCommune": "WALDERSBACH" + "codePostal": "25720", + "codeCommune": "25473", + "libelleAcheminement": "PUGEY", + "nomCommune": "PUGEY" }, { - "codePostal": "62121", - "codeCommune": "62306", - "libelleAcheminement": "ERVILLERS", - "nomCommune": "ERVILLERS" + "codePostal": "27250", + "codeCommune": "27096", + "libelleAcheminement": "LES BOTTEREAUX", + "nomCommune": "LES BOTTEREAUX" }, { - "codePostal": "29260", - "codeCommune": "29288", - "libelleAcheminement": "TREGARANTEC", - "nomCommune": "TREGARANTEC" + "codePostal": "37270", + "codeCommune": "37008", + "libelleAcheminement": "ATHEE SUR CHER", + "nomCommune": "ATHEE SUR CHER" }, { - "codePostal": "54740", - "codeCommune": "54554", - "libelleAcheminement": "VAUDIGNY", - "nomCommune": "VAUDIGNY" + "codePostal": "36200", + "codeCommune": "36154", + "libelleAcheminement": "LE PECHEREAU", + "nomCommune": "LE PECHEREAU" }, { - "codePostal": "67520", - "codeCommune": "67517", - "libelleAcheminement": "WANGEN", - "nomCommune": "WANGEN" + "codePostal": "25320", + "codeCommune": "25477", + "libelleAcheminement": "RANCENAY", + "nomCommune": "RANCENAY" }, { - "codePostal": "62179", - "codeCommune": "62307", - "libelleAcheminement": "ESCALLES", - "nomCommune": "ESCALLES" + "codePostal": "27520", + "codeCommune": "27105", + "libelleAcheminement": "GRAND BOURGTHEROULDE", + "nomCommune": "GRAND BOURGTHEROULDE" }, { - "codePostal": "29800", - "codeCommune": "29295", - "libelleAcheminement": "TREMAOUEZAN", - "nomCommune": "TREMAOUEZAN" + "codePostal": "37270", + "codeCommune": "37015", + "libelleAcheminement": "AZAY SUR CHER", + "nomCommune": "AZAY SUR CHER" }, { - "codePostal": "54450", - "codeCommune": "54556", - "libelleAcheminement": "VEHO", - "nomCommune": "VEHO" + "codePostal": "36350", + "codeCommune": "36157", + "libelleAcheminement": "LA PEROUILLE", + "nomCommune": "LA PEROUILLE" }, { - "codePostal": "67500", - "codeCommune": "67523", - "libelleAcheminement": "WEITBRUCH", - "nomCommune": "WEITBRUCH" + "codePostal": "25550", + "codeCommune": "25481", + "libelleAcheminement": "RAYNANS", + "nomCommune": "RAYNANS" }, { - "codePostal": "62850", - "codeCommune": "62308", - "libelleAcheminement": "ESCOEUILLES", - "nomCommune": "ESCOEUILLES" + "codePostal": "27500", + "codeCommune": "27107", + "libelleAcheminement": "BOURNEVILLE STE CROIX", + "nomCommune": "BOURNEVILLE STE CROIX" }, { - "codePostal": "29300", - "codeCommune": "29297", - "libelleAcheminement": "TREMEVEN", - "nomCommune": "TREMEVEN" + "codePostal": "37370", + "codeCommune": "37021", + "libelleAcheminement": "BEAUMONT LOUESTAULT", + "nomCommune": "BEAUMONT LOUESTAULT" }, { - "codePostal": "54840", - "codeCommune": "54557", - "libelleAcheminement": "BOIS DE HAYE", - "nomCommune": "BOIS DE HAYE" + "codePostal": "36300", + "codeCommune": "36176", + "libelleAcheminement": "RUFFEC", + "nomCommune": "RUFFEC" }, { - "codePostal": "67270", - "codeCommune": "67530", - "libelleAcheminement": "WICKERSHEIM WILSHAUSEN", - "nomCommune": "WICKERSHEIM WILSHAUSEN" + "codePostal": "25170", + "codeCommune": "25482", + "libelleAcheminement": "RECOLOGNE", + "nomCommune": "RECOLOGNE" }, { - "codePostal": "62170", - "codeCommune": "62315", - "libelleAcheminement": "ESTREELLES", - "nomCommune": "ESTREELLES" + "codePostal": "27800", + "codeCommune": "27113", + "libelleAcheminement": "BRETIGNY", + "nomCommune": "BRETIGNY" }, { - "codePostal": "29590", - "codeCommune": "29302", - "libelleAcheminement": "PONT DE BUIS LES QUIMERCH", - "nomCommune": "PONT DE BUIS LES QUIMERCH" + "codePostal": "37510", + "codeCommune": "37025", + "libelleAcheminement": "BERTHENAY", + "nomCommune": "BERTHENAY" }, { - "codePostal": "54540", - "codeCommune": "54560", - "libelleAcheminement": "VENEY", - "nomCommune": "VENEY" + "codePostal": "36210", + "codeCommune": "36185", + "libelleAcheminement": "ST CHRISTOPHE EN BAZELLE", + "nomCommune": "ST CHRISTOPHE EN BAZELLE" }, { - "codePostal": "67370", - "codeCommune": "67532", - "libelleAcheminement": "WILLGOTTHEIM", - "nomCommune": "WILLGOTTHEIM" + "codePostal": "25160", + "codeCommune": "25486", + "libelleAcheminement": "REMORAY BOUJEONS", + "nomCommune": "REMORAY BOUJEONS" + }, + { + "codePostal": "27640", + "codeCommune": "27114", + "libelleAcheminement": "BREUILPONT", + "nomCommune": "BREUILPONT" }, { - "codePostal": "62630", - "codeCommune": "62318", - "libelleAcheminement": "ETAPLES", - "nomCommune": "ETAPLES" + "codePostal": "37240", + "codeCommune": "37029", + "libelleAcheminement": "BOSSEE", + "nomCommune": "BOSSEE" }, { - "codePostal": "29590", - "codeCommune": "29302", - "libelleAcheminement": "PONT DE BUIS LES QUIMERCH", - "nomCommune": "PONT DE BUIS LES QUIMERCH" + "codePostal": "36700", + "codeCommune": "36188", + "libelleAcheminement": "ST CYRAN DU JAMBOT", + "nomCommune": "ST CYRAN DU JAMBOT" }, { - "codePostal": "54470", - "codeCommune": "54564", - "libelleAcheminement": "VIEVILLE EN HAYE", - "nomCommune": "VIEVILLE EN HAYE" + "codePostal": "25520", + "codeCommune": "25487", + "libelleAcheminement": "RENEDALE", + "nomCommune": "RENEDALE" }, { - "codePostal": "67370", - "codeCommune": "67532", - "libelleAcheminement": "WILLGOTTHEIM", - "nomCommune": "WILLGOTTHEIM" + "codePostal": "27270", + "codeCommune": "27130", + "libelleAcheminement": "CAPELLE LES GRANDS", + "nomCommune": "CAPELLE LES GRANDS" }, { - "codePostal": "62156", - "codeCommune": "62319", - "libelleAcheminement": "ETERPIGNY", - "nomCommune": "ETERPIGNY" + "codePostal": "37240", + "codeCommune": "37032", + "libelleAcheminement": "BOURNAN", + "nomCommune": "BOURNAN" }, { - "codePostal": "20167", - "codeCommune": "2A004", - "libelleAcheminement": "AJACCIO", - "nomCommune": "AJACCIO" + "codePostal": "36170", + "codeCommune": "36196", + "libelleAcheminement": "ST GILLES", + "nomCommune": "ST GILLES" }, { - "codePostal": "54360", - "codeCommune": "54565", - "libelleAcheminement": "VIGNEULLES", - "nomCommune": "VIGNEULLES" + "codePostal": "25440", + "codeCommune": "25488", + "libelleAcheminement": "RENNES SUR LOUE", + "nomCommune": "RENNES SUR LOUE" }, { - "codePostal": "67110", - "codeCommune": "67536", - "libelleAcheminement": "WINDSTEIN", - "nomCommune": "WINDSTEIN" + "codePostal": "27180", + "codeCommune": "27132", + "libelleAcheminement": "CAUGE", + "nomCommune": "CAUGE" }, { - "codePostal": "62840", - "codeCommune": "62338", - "libelleAcheminement": "FLEURBAIX", - "nomCommune": "FLEURBAIX" + "codePostal": "37290", + "codeCommune": "37033", + "libelleAcheminement": "BOUSSAY", + "nomCommune": "BOUSSAY" }, { - "codePostal": "20112", - "codeCommune": "2A011", - "libelleAcheminement": "ALTAGENE", - "nomCommune": "ALTAGENE" + "codePostal": "36250", + "codeCommune": "36202", + "libelleAcheminement": "ST MAUR", + "nomCommune": "ST MAUR" }, { - "codePostal": "54890", - "codeCommune": "54570", - "libelleAcheminement": "VILLECEY SUR MAD", - "nomCommune": "VILLECEY SUR MAD" + "codePostal": "25640", + "codeCommune": "25490", + "libelleAcheminement": "RIGNEY", + "nomCommune": "RIGNEY" }, { - "codePostal": "67470", - "codeCommune": "67541", - "libelleAcheminement": "WINTZENBACH", - "nomCommune": "WINTZENBACH" + "codePostal": "27190", + "codeCommune": "27141", + "libelleAcheminement": "CHAMP DOLENT", + "nomCommune": "CHAMP DOLENT" }, { - "codePostal": "62550", - "codeCommune": "62340", - "libelleAcheminement": "FLORINGHEM", - "nomCommune": "FLORINGHEM" + "codePostal": "37120", + "codeCommune": "37035", + "libelleAcheminement": "BRAYE SOUS FAYE", + "nomCommune": "BRAYE SOUS FAYE" }, { - "codePostal": "20121", - "codeCommune": "2A027", - "libelleAcheminement": "AZZANA", - "nomCommune": "AZZANA" + "codePostal": "36700", + "codeCommune": "36203", + "libelleAcheminement": "ST MEDARD", + "nomCommune": "ST MEDARD" }, { - "codePostal": "54260", - "codeCommune": "54576", - "libelleAcheminement": "VILLERS LE ROND", - "nomCommune": "VILLERS LE ROND" + "codePostal": "25190", + "codeCommune": "25503", + "libelleAcheminement": "ROSIERES SUR BARBECHE", + "nomCommune": "ROSIERES SUR BARBECHE" }, { - "codePostal": "67160", - "codeCommune": "67544", - "libelleAcheminement": "WISSEMBOURG", - "nomCommune": "WISSEMBOURG" + "codePostal": "27220", + "codeCommune": "27154", + "libelleAcheminement": "CHAVIGNY BAILLEUL", + "nomCommune": "CHAVIGNY BAILLEUL" }, { - "codePostal": "62810", - "codeCommune": "62347", - "libelleAcheminement": "FOSSEUX", - "nomCommune": "FOSSEUX" + "codePostal": "37500", + "codeCommune": "37042", + "libelleAcheminement": "CANDES ST MARTIN", + "nomCommune": "CANDES ST MARTIN" }, { - "codePostal": "20100", - "codeCommune": "2A038", - "libelleAcheminement": "BILIA", - "nomCommune": "BILIA" + "codePostal": "36290", + "codeCommune": "36204", + "libelleAcheminement": "ST MICHEL EN BRENNE", + "nomCommune": "ST MICHEL EN BRENNE" }, { - "codePostal": "54700", - "codeCommune": "54579", - "libelleAcheminement": "VILLERS SOUS PRENY", - "nomCommune": "VILLERS SOUS PRENY" + "codePostal": "25680", + "codeCommune": "25505", + "libelleAcheminement": "ROUGEMONT", + "nomCommune": "ROUGEMONT" }, { - "codePostal": "67160", - "codeCommune": "67544", - "libelleAcheminement": "WISSEMBOURG", - "nomCommune": "WISSEMBOURG" + "codePostal": "27820", + "codeCommune": "27155", + "libelleAcheminement": "CHENNEBRUN", + "nomCommune": "CHENNEBRUN" }, { - "codePostal": "62140", - "codeCommune": "62359", - "libelleAcheminement": "FRESSIN", - "nomCommune": "FRESSIN" + "codePostal": "37350", + "codeCommune": "37044", + "libelleAcheminement": "LA CELLE GUENAND", + "nomCommune": "LA CELLE GUENAND" }, { - "codePostal": "20140", - "codeCommune": "2A071", - "libelleAcheminement": "CASALABRIVA", - "nomCommune": "CASALABRIVA" + "codePostal": "36290", + "codeCommune": "36212", + "libelleAcheminement": "SAULNAY", + "nomCommune": "SAULNAY" }, { - "codePostal": "54190", - "codeCommune": "54580", - "libelleAcheminement": "VILLERUPT", - "nomCommune": "VILLERUPT" + "codePostal": "25680", + "codeCommune": "25505", + "libelleAcheminement": "ROUGEMONT", + "nomCommune": "ROUGEMONT" }, { - "codePostal": "67160", - "codeCommune": "67544", - "libelleAcheminement": "WISSEMBOURG", - "nomCommune": "WISSEMBOURG" + "codePostal": "27160", + "codeCommune": "27157", + "libelleAcheminement": "MARBOIS", + "nomCommune": "MARBOIS" }, { - "codePostal": "62185", - "codeCommune": "62360", - "libelleAcheminement": "FRETHUN", - "nomCommune": "FRETHUN" + "codePostal": "37390", + "codeCommune": "37047", + "libelleAcheminement": "CERELLES", + "nomCommune": "CERELLES" }, { - "codePostal": "20117", - "codeCommune": "2A085", - "libelleAcheminement": "CAURO", - "nomCommune": "CAURO" + "codePostal": "36500", + "codeCommune": "36218", + "libelleAcheminement": "SOUGE", + "nomCommune": "SOUGE" }, { - "codePostal": "54123", - "codeCommune": "54586", - "libelleAcheminement": "VITERNE", - "nomCommune": "VITERNE" + "codePostal": "25170", + "codeCommune": "25510", + "libelleAcheminement": "RUFFEY LE CHATEAU", + "nomCommune": "RUFFEY LE CHATEAU" }, { - "codePostal": "67230", - "codeCommune": "67545", - "libelleAcheminement": "WITTERNHEIM", - "nomCommune": "WITTERNHEIM" + "codePostal": "27180", + "codeCommune": "27161", + "libelleAcheminement": "CLAVILLE", + "nomCommune": "CLAVILLE" }, { - "codePostal": "62690", - "codeCommune": "62363", - "libelleAcheminement": "FREVIN CAPELLE", - "nomCommune": "FREVIN CAPELLE" + "codePostal": "37290", + "codeCommune": "37048", + "libelleAcheminement": "CHAMBON", + "nomCommune": "CHAMBON" }, { - "codePostal": "20117", - "codeCommune": "2A104", - "libelleAcheminement": "ECCICA SUARELLA", - "nomCommune": "ECCICA SUARELLA" + "codePostal": "36800", + "codeCommune": "36220", + "libelleAcheminement": "THENAY", + "nomCommune": "THENAY" }, { - "codePostal": "54330", - "codeCommune": "54587", - "libelleAcheminement": "VITREY", - "nomCommune": "VITREY" + "codePostal": "25300", + "codeCommune": "25515", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "67820", - "codeCommune": "67547", - "libelleAcheminement": "WITTISHEIM", - "nomCommune": "WITTISHEIM" + "codePostal": "27260", + "codeCommune": "27170", + "libelleAcheminement": "CORMEILLES", + "nomCommune": "CORMEILLES" }, { - "codePostal": "62580", - "codeCommune": "62369", - "libelleAcheminement": "GAVRELLE", - "nomCommune": "GAVRELLE" + "codePostal": "37120", + "codeCommune": "37051", + "libelleAcheminement": "CHAMPIGNY SUR VEUDE", + "nomCommune": "CHAMPIGNY SUR VEUDE" }, { - "codePostal": "20126", - "codeCommune": "2A108", - "libelleAcheminement": "EVISA", - "nomCommune": "EVISA" + "codePostal": "36310", + "codeCommune": "36223", + "libelleAcheminement": "TILLY", + "nomCommune": "TILLY" }, { - "codePostal": "54134", - "codeCommune": "54591", - "libelleAcheminement": "VOINEMONT", - "nomCommune": "VOINEMONT" + "codePostal": "25190", + "codeCommune": "25519", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "68210", - "codeCommune": "68002", - "libelleAcheminement": "ALTENACH", - "nomCommune": "ALTENACH" + "codePostal": "27120", + "codeCommune": "27171", + "libelleAcheminement": "LE CORMIER", + "nomCommune": "LE CORMIER" }, { - "codePostal": "62111", - "codeCommune": "62375", - "libelleAcheminement": "GOMMECOURT", - "nomCommune": "GOMMECOURT" + "codePostal": "37240", + "codeCommune": "37057", + "libelleAcheminement": "LA CHAPELLE BLANCHE ST MARTIN", + "nomCommune": "LA CHAPELLE BLANCHE ST MARTIN" }, { - "codePostal": "20137", - "codeCommune": "2A139", - "libelleAcheminement": "LECCI", - "nomCommune": "LECCI" + "codePostal": "36210", + "codeCommune": "36229", + "libelleAcheminement": "VAL FOUZON", + "nomCommune": "VAL FOUZON" }, { - "codePostal": "54890", - "codeCommune": "54593", - "libelleAcheminement": "WAVILLE", - "nomCommune": "WAVILLE" + "codePostal": "25210", + "codeCommune": "25522", + "libelleAcheminement": "ST JULIEN LES RUSSEY", + "nomCommune": "ST JULIEN LES RUSSEY" }, { - "codePostal": "68410", - "codeCommune": "68005", - "libelleAcheminement": "AMMERSCHWIHR", - "nomCommune": "AMMERSCHWIHR" + "codePostal": "27300", + "codeCommune": "27173", + "libelleAcheminement": "CORNEVILLE LA FOUQUETIERE", + "nomCommune": "CORNEVILLE LA FOUQUETIERE" }, { - "codePostal": "62330", - "codeCommune": "62391", - "libelleAcheminement": "GUARBECQUE", - "nomCommune": "GUARBECQUE" + "codePostal": "37140", + "codeCommune": "37058", + "libelleAcheminement": "LA CHAPELLE SUR LOIRE", + "nomCommune": "LA CHAPELLE SUR LOIRE" }, { - "codePostal": "20170", - "codeCommune": "2A142", - "libelleAcheminement": "LEVIE", - "nomCommune": "LEVIE" + "codePostal": "36210", + "codeCommune": "36229", + "libelleAcheminement": "VAL FOUZON", + "nomCommune": "VAL FOUZON" }, { - "codePostal": "54300", - "codeCommune": "54595", - "libelleAcheminement": "XERMAMENIL", - "nomCommune": "XERMAMENIL" + "codePostal": "25410", + "codeCommune": "25527", + "libelleAcheminement": "ST VIT", + "nomCommune": "ST VIT" }, { - "codePostal": "68210", - "codeCommune": "68006", - "libelleAcheminement": "BERNWILLER", - "nomCommune": "BERNWILLER" + "codePostal": "27130", + "codeCommune": "27182", + "libelleAcheminement": "COURTEILLES", + "nomCommune": "COURTEILLES" }, { - "codePostal": "62130", - "codeCommune": "62396", - "libelleAcheminement": "GUINECOURT", - "nomCommune": "GUINECOURT" + "codePostal": "37290", + "codeCommune": "37061", + "libelleAcheminement": "CHARNIZAY", + "nomCommune": "CHARNIZAY" }, { - "codePostal": "20112", - "codeCommune": "2A158", - "libelleAcheminement": "MELA", - "nomCommune": "MELA" + "codePostal": "36330", + "codeCommune": "36231", + "libelleAcheminement": "VELLES", + "nomCommune": "VELLES" }, { - "codePostal": "54490", - "codeCommune": "54598", - "libelleAcheminement": "XIVRY CIRCOURT", - "nomCommune": "XIVRY CIRCOURT" + "codePostal": "25660", + "codeCommune": "25532", + "libelleAcheminement": "SAONE", + "nomCommune": "SAONE" }, { - "codePostal": "68210", - "codeCommune": "68006", - "libelleAcheminement": "BERNWILLER", - "nomCommune": "BERNWILLER" + "codePostal": "27400", + "codeCommune": "27184", + "libelleAcheminement": "CRASVILLE", + "nomCommune": "CRASVILLE" }, { - "codePostal": "62340", - "codeCommune": "62397", - "libelleAcheminement": "GUINES", - "nomCommune": "GUINES" + "codePostal": "37330", + "codeCommune": "37062", + "libelleAcheminement": "CHATEAU LA VALLIERE", + "nomCommune": "CHATEAU LA VALLIERE" }, { - "codePostal": "20171", - "codeCommune": "2A163", - "libelleAcheminement": "MONACIA D AULLENE", - "nomCommune": "MONACIA D AULLENE" + "codePostal": "36100", + "codeCommune": "36248", + "libelleAcheminement": "VOUILLON", + "nomCommune": "VOUILLON" }, { - "codePostal": "55400", - "codeCommune": "55002", - "libelleAcheminement": "ABAUCOURT HAUTECOURT", - "nomCommune": "ABAUCOURT HAUTECOURT" + "codePostal": "25290", + "codeCommune": "25537", + "libelleAcheminement": "SCEY MAISIERES", + "nomCommune": "SCEY MAISIERES" }, { - "codePostal": "68210", - "codeCommune": "68017", - "libelleAcheminement": "BALLERSDORF", - "nomCommune": "BALLERSDORF" + "codePostal": "27530", + "codeCommune": "27193", + "libelleAcheminement": "CROTH", + "nomCommune": "CROTH" }, { - "codePostal": "62570", - "codeCommune": "62403", - "libelleAcheminement": "HALLINES", - "nomCommune": "HALLINES" + "codePostal": "37370", + "codeCommune": "37068", + "libelleAcheminement": "CHEMILLE SUR DEME", + "nomCommune": "CHEMILLE SUR DEME" }, { - "codePostal": "20150", - "codeCommune": "2A198", - "libelleAcheminement": "OTA", - "nomCommune": "OTA" + "codePostal": "37400", + "codeCommune": "37003", + "libelleAcheminement": "AMBOISE", + "nomCommune": "AMBOISE" }, { - "codePostal": "55130", - "codeCommune": "55005", - "libelleAcheminement": "AMANTY", - "nomCommune": "AMANTY" + "codePostal": "25290", + "codeCommune": "25537", + "libelleAcheminement": "SCEY MAISIERES", + "nomCommune": "SCEY MAISIERES" }, { - "codePostal": "68320", - "codeCommune": "68019", - "libelleAcheminement": "BALTZENHEIM", - "nomCommune": "BALTZENHEIM" + "codePostal": "27160", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "62132", - "codeCommune": "62412", - "libelleAcheminement": "HARDINGHEN", - "nomCommune": "HARDINGHEN" + "codePostal": "37220", + "codeCommune": "37071", + "libelleAcheminement": "CHEZELLES", + "nomCommune": "CHEZELLES" }, { - "codePostal": "20121", - "codeCommune": "2A204", - "libelleAcheminement": "PASTRICCIOLA", - "nomCommune": "PASTRICCIOLA" + "codePostal": "37420", + "codeCommune": "37011", + "libelleAcheminement": "AVOINE", + "nomCommune": "AVOINE" }, { - "codePostal": "55300", - "codeCommune": "55012", - "libelleAcheminement": "APREMONT LA FORET", - "nomCommune": "APREMONT LA FORET" + "codePostal": "25190", + "codeCommune": "25551", + "libelleAcheminement": "SOULCE CERNAY", + "nomCommune": "SOULCE CERNAY" }, { - "codePostal": "68127", - "codeCommune": "68037", - "libelleAcheminement": "BILTZHEIM", - "nomCommune": "BILTZHEIM" + "codePostal": "27720", + "codeCommune": "27199", + "libelleAcheminement": "DANGU", + "nomCommune": "DANGU" }, { - "codePostal": "62111", - "codeCommune": "62422", - "libelleAcheminement": "HEBUTERNE", - "nomCommune": "HEBUTERNE" + "codePostal": "37500", + "codeCommune": "37072", + "libelleAcheminement": "CHINON", + "nomCommune": "CHINON" }, { - "codePostal": "20123", - "codeCommune": "2A232", - "libelleAcheminement": "PILA CANALE", - "nomCommune": "PILA CANALE" + "codePostal": "37510", + "codeCommune": "37018", + "libelleAcheminement": "BALLAN MIRE", + "nomCommune": "BALLAN MIRE" }, { - "codePostal": "55230", - "codeCommune": "55013", - "libelleAcheminement": "ARRANCY SUR CRUSNE", - "nomCommune": "ARRANCY SUR CRUSNE" + "codePostal": "25250", + "codeCommune": "25552", + "libelleAcheminement": "SOURANS", + "nomCommune": "SOURANS" }, { - "codePostal": "68620", - "codeCommune": "68040", - "libelleAcheminement": "BITSCHWILLER LES THANN", - "nomCommune": "BITSCHWILLER LES THANN" + "codePostal": "27150", + "codeCommune": "27204", + "libelleAcheminement": "DOUDEAUVILLE EN VEXIN", + "nomCommune": "DOUDEAUVILLE EN VEXIN" }, { - "codePostal": "62182", - "codeCommune": "62424", - "libelleAcheminement": "HENDECOURT LES CAGNICOURT", - "nomCommune": "HENDECOURT LES CAGNICOURT" + "codePostal": "37150", + "codeCommune": "37073", + "libelleAcheminement": "CHISSEAUX", + "nomCommune": "CHISSEAUX" }, { - "codePostal": "20125", - "codeCommune": "2A240", - "libelleAcheminement": "POGGIOLO", - "nomCommune": "POGGIOLO" + "codePostal": "37140", + "codeCommune": "37024", + "libelleAcheminement": "BENAIS", + "nomCommune": "BENAIS" }, { - "codePostal": "55700", - "codeCommune": "55025", - "libelleAcheminement": "BAALON", - "nomCommune": "BAALON" + "codePostal": "25620", + "codeCommune": "25558", + "libelleAcheminement": "TARCENAY FOUCHERANS", + "nomCommune": "TARCENAY FOUCHERANS" }, { - "codePostal": "68380", - "codeCommune": "68051", - "libelleAcheminement": "BREITENBACH", - "nomCommune": "BREITENBACH HAUT RHIN" + "codePostal": "27320", + "codeCommune": "27206", + "libelleAcheminement": "DROISY", + "nomCommune": "DROISY" }, { - "codePostal": "62690", - "codeCommune": "62438", - "libelleAcheminement": "HERMAVILLE", - "nomCommune": "HERMAVILLE" + "codePostal": "37240", + "codeCommune": "37094", + "libelleAcheminement": "CUSSAY", + "nomCommune": "CUSSAY" }, { - "codePostal": "20121", - "codeCommune": "2A259", - "libelleAcheminement": "REZZA", - "nomCommune": "REZZA" + "codePostal": "37600", + "codeCommune": "37026", + "libelleAcheminement": "BETZ LE CHATEAU", + "nomCommune": "BETZ LE CHATEAU" }, { - "codePostal": "55110", - "codeCommune": "55028", - "libelleAcheminement": "BANTHEVILLE", - "nomCommune": "BANTHEVILLE" + "codePostal": "25870", + "codeCommune": "25563", + "libelleAcheminement": "THUREY LE MONT", + "nomCommune": "THUREY LE MONT" }, { - "codePostal": "68440", - "codeCommune": "68055", - "libelleAcheminement": "BRUEBACH", - "nomCommune": "BRUEBACH" + "codePostal": "27230", + "codeCommune": "27208", + "libelleAcheminement": "DURANVILLE", + "nomCommune": "DURANVILLE" }, { - "codePostal": "62140", - "codeCommune": "62447", - "libelleAcheminement": "HESDIN", - "nomCommune": "HESDIN" + "codePostal": "37190", + "codeCommune": "37099", + "libelleAcheminement": "DRUYE", + "nomCommune": "DRUYE" }, { - "codePostal": "20121", - "codeCommune": "2A266", - "libelleAcheminement": "SALICE", - "nomCommune": "SALICE" + "codePostal": "37140", + "codeCommune": "37031", + "libelleAcheminement": "BOURGUEIL", + "nomCommune": "BOURGUEIL" }, { - "codePostal": "55270", - "codeCommune": "55033", - "libelleAcheminement": "BAULNY", - "nomCommune": "BAULNY" + "codePostal": "25680", + "codeCommune": "25570", + "libelleAcheminement": "TRESSANDANS", + "nomCommune": "TRESSANDANS" }, { - "codePostal": "68530", - "codeCommune": "68058", - "libelleAcheminement": "BUHL", - "nomCommune": "BUHL" + "codePostal": "27630", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "62990", - "codeCommune": "62449", - "libelleAcheminement": "HESMOND", - "nomCommune": "HESMOND" + "codePostal": "37370", + "codeCommune": "37101", + "libelleAcheminement": "EPEIGNE SUR DEME", + "nomCommune": "EPEIGNE SUR DEME" }, { - "codePostal": "20147", - "codeCommune": "2A279", - "libelleAcheminement": "SERRIERA", - "nomCommune": "SERRIERA" + "codePostal": "37220", + "codeCommune": "37040", + "libelleAcheminement": "BRIZAY", + "nomCommune": "BRIZAY" }, { - "codePostal": "55170", - "codeCommune": "55035", - "libelleAcheminement": "BAZINCOURT SUR SAULX", - "nomCommune": "BAZINCOURT SUR SAULX" + "codePostal": "25800", + "codeCommune": "25578", + "libelleAcheminement": "VALDAHON", + "nomCommune": "VALDAHON" }, { - "codePostal": "68700", - "codeCommune": "68063", - "libelleAcheminement": "CERNAY", - "nomCommune": "CERNAY" + "codePostal": "27630", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "62310", - "codeCommune": "62453", - "libelleAcheminement": "HEZECQUES", - "nomCommune": "HEZECQUES" + "codePostal": "37240", + "codeCommune": "37103", + "libelleAcheminement": "ESVES LE MOUTIER", + "nomCommune": "ESVES LE MOUTIER" }, { - "codePostal": "20125", - "codeCommune": "2A282", - "libelleAcheminement": "SOCCIA", - "nomCommune": "SOCCIA" + "codePostal": "37170", + "codeCommune": "37050", + "libelleAcheminement": "CHAMBRAY LES TOURS", + "nomCommune": "CHAMBRAY LES TOURS" }, { - "codePostal": "55100", - "codeCommune": "55039", - "libelleAcheminement": "BEAUMONT EN VERDUNOIS", - "nomCommune": "BEAUMONT EN VERDUNOIS" + "codePostal": "25410", + "codeCommune": "25594", + "libelleAcheminement": "VELESMES ESSARTS", + "nomCommune": "VELESMES ESSARTS" }, { - "codePostal": "68490", - "codeCommune": "68064", - "libelleAcheminement": "CHALAMPE", - "nomCommune": "CHALAMPE" + "codePostal": "27630", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "62232", - "codeCommune": "62454", - "libelleAcheminement": "HINGES", - "nomCommune": "HINGES" + "codePostal": "37350", + "codeCommune": "37107", + "libelleAcheminement": "FERRIERE LARCON", + "nomCommune": "FERRIERE LARCON" }, { - "codePostal": "20112", - "codeCommune": "2A308", - "libelleAcheminement": "STE LUCIE DE TALLANO", - "nomCommune": "STE LUCIE DE TALLANO" + "codePostal": "37600", + "codeCommune": "37053", + "libelleAcheminement": "CHANCEAUX PRES LOCHES", + "nomCommune": "CHANCEAUX PRES LOCHES" }, { - "codePostal": "55250", - "codeCommune": "55040", - "libelleAcheminement": "BEAUSITE", - "nomCommune": "BEAUSITE" + "codePostal": "25430", + "codeCommune": "25597", + "libelleAcheminement": "VELLEVANS", + "nomCommune": "VELLEVANS" }, { - "codePostal": "68480", - "codeCommune": "68075", - "libelleAcheminement": "DURMENACH", - "nomCommune": "DURMENACH" + "codePostal": "27440", + "codeCommune": "27214", + "libelleAcheminement": "ECOUIS", + "nomCommune": "ECOUIS" }, { - "codePostal": "62150", - "codeCommune": "62457", - "libelleAcheminement": "HOUDAIN", - "nomCommune": "HOUDAIN" + "codePostal": "37340", + "codeCommune": "37112", + "libelleAcheminement": "GIZEUX", + "nomCommune": "GIZEUX" }, { - "codePostal": "20167", - "codeCommune": "2A323", - "libelleAcheminement": "TAVACO", - "nomCommune": "TAVACO" + "codePostal": "37130", + "codeCommune": "37056", + "libelleAcheminement": "LA CHAPELLE AUX NAUX", + "nomCommune": "LA CHAPELLE AUX NAUX" }, { - "codePostal": "55210", - "codeCommune": "55046", - "libelleAcheminement": "BENEY EN WOEVRE", - "nomCommune": "BENEY EN WOEVRE" + "codePostal": "25530", + "codeCommune": "25601", + "libelleAcheminement": "VERCEL VILLEDIEU LE CAMP", + "nomCommune": "VERCEL VILLEDIEU LE CAMP" }, { - "codePostal": "68720", - "codeCommune": "68081", - "libelleAcheminement": "ST BERNARD", - "nomCommune": "ST BERNARD" + "codePostal": "27260", + "codeCommune": "27218", + "libelleAcheminement": "EPAIGNES", + "nomCommune": "EPAIGNES" }, { - "codePostal": "62270", - "codeCommune": "62459", - "libelleAcheminement": "HOUVIN HOUVIGNEUL", - "nomCommune": "HOUVIN HOUVIGNEUL" + "codePostal": "37160", + "codeCommune": "37115", + "libelleAcheminement": "DESCARTES", + "nomCommune": "DESCARTES" }, { - "codePostal": "20163", - "codeCommune": "2A324", - "libelleAcheminement": "TAVERA", - "nomCommune": "TAVERA" + "codePostal": "37110", + "codeCommune": "37063", + "libelleAcheminement": "CHATEAU RENAULT", + "nomCommune": "CHATEAU RENAULT" }, { - "codePostal": "55400", - "codeCommune": "55057", - "libelleAcheminement": "BOINVILLE EN WOEVRE", - "nomCommune": "BOINVILLE EN WOEVRE" + "codePostal": "25340", + "codeCommune": "25613", + "libelleAcheminement": "VIETHOREY", + "nomCommune": "VIETHOREY" }, { - "codePostal": "68190", - "codeCommune": "68082", - "libelleAcheminement": "ENSISHEIM", - "nomCommune": "ENSISHEIM" + "codePostal": "27560", + "codeCommune": "27222", + "libelleAcheminement": "EPREVILLE EN LIEUVIN", + "nomCommune": "EPREVILLE EN LIEUVIN" }, { - "codePostal": "62330", - "codeCommune": "62473", - "libelleAcheminement": "ISBERGUES", - "nomCommune": "ISBERGUES" + "codePostal": "37500", + "codeCommune": "37126", + "libelleAcheminement": "LERNE", + "nomCommune": "LERNE" }, { - "codePostal": "20133", - "codeCommune": "2A330", - "libelleAcheminement": "UCCIANI", - "nomCommune": "UCCIANI" + "codePostal": "37190", + "codeCommune": "37067", + "libelleAcheminement": "CHEILLE", + "nomCommune": "CHEILLE" }, { - "codePostal": "55160", - "codeCommune": "55060", - "libelleAcheminement": "BONZEE", - "nomCommune": "BONZEE" + "codePostal": "25310", + "codeCommune": "25615", + "libelleAcheminement": "VILLARS LES BLAMONT", + "nomCommune": "VILLARS LES BLAMONT" }, { - "codePostal": "68740", - "codeCommune": "68091", - "libelleAcheminement": "FESSENHEIM", - "nomCommune": "FESSENHEIM" + "codePostal": "27350", + "codeCommune": "27227", + "libelleAcheminement": "ETREVILLE", + "nomCommune": "ETREVILLE" }, { - "codePostal": "62610", - "codeCommune": "62488", - "libelleAcheminement": "LANDRETHUN LES ARDRES", - "nomCommune": "LANDRETHUN LES ARDRES" + "codePostal": "37130", + "codeCommune": "37128", + "libelleAcheminement": "LIGNIERES DE TOURAINE", + "nomCommune": "LIGNIERES DE TOURAINE" }, { - "codePostal": "20118", - "codeCommune": "2A348", - "libelleAcheminement": "VICO", - "nomCommune": "VICO" + "codePostal": "37160", + "codeCommune": "37080", + "libelleAcheminement": "CIVRAY SUR ESVES", + "nomCommune": "CIVRAY SUR ESVES" }, { - "codePostal": "55160", - "codeCommune": "55060", - "libelleAcheminement": "BONZEE", - "nomCommune": "BONZEE" + "codePostal": "25240", + "codeCommune": "25619", + "libelleAcheminement": "LES VILLEDIEU", + "nomCommune": "LES VILLEDIEU" }, { - "codePostal": "68320", - "codeCommune": "68095", - "libelleAcheminement": "FORTSCHWIHR", - "nomCommune": "FORTSCHWIHR" + "codePostal": "27350", + "codeCommune": "27228", + "libelleAcheminement": "ETURQUERAYE", + "nomCommune": "ETURQUERAYE" }, { - "codePostal": "62122", - "codeCommune": "62489", - "libelleAcheminement": "LAPUGNOY", - "nomCommune": "LAPUGNOY" + "codePostal": "37530", + "codeCommune": "37131", + "libelleAcheminement": "LIMERAY", + "nomCommune": "LIMERAY" }, { - "codePostal": "20132", - "codeCommune": "2A359", - "libelleAcheminement": "ZICAVO", - "nomCommune": "ZICAVO" + "codePostal": "37500", + "codeCommune": "37088", + "libelleAcheminement": "COUZIERS", + "nomCommune": "COUZIERS" }, { - "codePostal": "55300", - "codeCommune": "55062", - "libelleAcheminement": "BOUCONVILLE SUR MADT", - "nomCommune": "BOUCONVILLE SUR MADT" + "codePostal": "25170", + "codeCommune": "25622", + "libelleAcheminement": "VILLERS BUZON", + "nomCommune": "VILLERS BUZON" }, { - "codePostal": "68990", - "codeCommune": "68101", - "libelleAcheminement": "GALFINGUE", - "nomCommune": "GALFINGUE" + "codePostal": "27190", + "codeCommune": "27235", + "libelleAcheminement": "FAVEROLLES LA CAMPAGNE", + "nomCommune": "FAVEROLLES LA CAMPAGNE" }, { - "codePostal": "62840", - "codeCommune": "62491", - "libelleAcheminement": "LAVENTIE", - "nomCommune": "LAVENTIE" + "codePostal": "37320", + "codeCommune": "37134", + "libelleAcheminement": "LOUANS", + "nomCommune": "LOUANS" }, { - "codePostal": "20270", - "codeCommune": "2B009", - "libelleAcheminement": "ALERIA", - "nomCommune": "ALERIA" + "codePostal": "37380", + "codeCommune": "37092", + "libelleAcheminement": "CROTELLES", + "nomCommune": "CROTELLES" }, { - "codePostal": "55150", - "codeCommune": "55071", - "libelleAcheminement": "BRANDEVILLE", - "nomCommune": "BRANDEVILLE" + "codePostal": "25510", + "codeCommune": "25625", + "libelleAcheminement": "VILLERS LA COMBE", + "nomCommune": "VILLERS LA COMBE" }, { - "codePostal": "68690", - "codeCommune": "68102", - "libelleAcheminement": "GEISHOUSE", - "nomCommune": "GEISHOUSE" + "codePostal": "27190", + "codeCommune": "27238", + "libelleAcheminement": "FERRIERES HAUT CLOCHER", + "nomCommune": "FERRIERES HAUT CLOCHER" }, { - "codePostal": "62990", - "codeCommune": "62492", - "libelleAcheminement": "LEBIEZ", - "nomCommune": "LEBIEZ" + "codePostal": "37530", + "codeCommune": "37158", + "libelleAcheminement": "MONTREUIL EN TOURAINE", + "nomCommune": "MONTREUIL EN TOURAINE" }, { - "codePostal": "20251", - "codeCommune": "2B012", - "libelleAcheminement": "ALTIANI", - "nomCommune": "ALTIANI" + "codePostal": "37150", + "codeCommune": "37100", + "libelleAcheminement": "EPEIGNE LES BOIS", + "nomCommune": "EPEIGNE LES BOIS" }, { - "codePostal": "55140", - "codeCommune": "55080", - "libelleAcheminement": "BRIXEY AUX CHANOINES", - "nomCommune": "BRIXEY AUX CHANOINES" + "codePostal": "25270", + "codeCommune": "25627", + "libelleAcheminement": "VILLERS SOUS CHALAMONT", + "nomCommune": "VILLERS SOUS CHALAMONT" }, { - "codePostal": "68600", - "codeCommune": "68104", - "libelleAcheminement": "GEISWASSER", - "nomCommune": "GEISWASSER" + "codePostal": "27760", + "codeCommune": "27240", + "libelleAcheminement": "LA FERRIERE SUR RISLE", + "nomCommune": "LA FERRIERE SUR RISLE" }, { - "codePostal": "62790", - "codeCommune": "62497", - "libelleAcheminement": "LEFOREST", - "nomCommune": "LEFOREST" + "codePostal": "37190", + "codeCommune": "37165", + "libelleAcheminement": "NEUIL", + "nomCommune": "NEUIL" }, { - "codePostal": "20226", - "codeCommune": "2B034", - "libelleAcheminement": "BELGODERE", - "nomCommune": "BELGODERE" + "codePostal": "37110", + "codeCommune": "37106", + "libelleAcheminement": "LA FERRIERE", + "nomCommune": "LA FERRIERE" }, { - "codePostal": "55140", - "codeCommune": "55088", - "libelleAcheminement": "BUREY EN VAUX", - "nomCommune": "BUREY EN VAUX" + "codePostal": "25420", + "codeCommune": "25632", + "libelleAcheminement": "VOUJEAUCOURT", + "nomCommune": "VOUJEAUCOURT" }, { - "codePostal": "68760", - "codeCommune": "68106", - "libelleAcheminement": "GOLDBACH ALTENBACH", - "nomCommune": "GOLDBACH ALTENBACH" + "codePostal": "27190", + "codeCommune": "27242", + "libelleAcheminement": "LE FIDELAIRE", + "nomCommune": "LE FIDELAIRE" }, { - "codePostal": "62500", - "codeCommune": "62504", - "libelleAcheminement": "LEULINGHEM", - "nomCommune": "LEULINGHEM" + "codePostal": "37360", + "codeCommune": "37167", + "libelleAcheminement": "NEUILLE PONT PIERRE", + "nomCommune": "NEUILLE PONT PIERRE" }, { - "codePostal": "20290", - "codeCommune": "2B042", - "libelleAcheminement": "BORGO", - "nomCommune": "BORGO" + "codePostal": "37230", + "codeCommune": "37109", + "libelleAcheminement": "FONDETTES", + "nomCommune": "FONDETTES" }, { - "codePostal": "55140", - "codeCommune": "55100", - "libelleAcheminement": "CHAMPOUGNY", - "nomCommune": "CHAMPOUGNY" + "codePostal": "26780", + "codeCommune": "26005", + "libelleAcheminement": "ALLAN", + "nomCommune": "ALLAN" }, { - "codePostal": "68760", - "codeCommune": "68106", - "libelleAcheminement": "GOLDBACH ALTENBACH", - "nomCommune": "GOLDBACH ALTENBACH" + "codePostal": "27470", + "codeCommune": "27251", + "libelleAcheminement": "FONTAINE L ABBE", + "nomCommune": "FONTAINE L ABBE" }, { - "codePostal": "62810", - "codeCommune": "62511", - "libelleAcheminement": "LIGNEREUIL", - "nomCommune": "LIGNEREUIL" + "codePostal": "37370", + "codeCommune": "37170", + "libelleAcheminement": "NEUVY LE ROI", + "nomCommune": "NEUVY LE ROI" }, { - "codePostal": "20212", - "codeCommune": "2B045", - "libelleAcheminement": "BUSTANICO", - "nomCommune": "BUSTANICO" + "codePostal": "37150", + "codeCommune": "37110", + "libelleAcheminement": "FRANCUEIL", + "nomCommune": "FRANCUEIL" }, { - "codePostal": "55400", - "codeCommune": "55105", - "libelleAcheminement": "CHATILLON SOUS LES COTES", - "nomCommune": "CHATILLON SOUS LES COTES" + "codePostal": "26470", + "codeCommune": "26012", + "libelleAcheminement": "ARNAYON", + "nomCommune": "ARNAYON" }, { - "codePostal": "68580", - "codeCommune": "68137", - "libelleAcheminement": "HINDLINGEN", - "nomCommune": "HINDLINGEN" + "codePostal": "27220", + "codeCommune": "27256", + "libelleAcheminement": "LA FORET DU PARC", + "nomCommune": "LA FORET DU PARC" }, { - "codePostal": "62127", - "codeCommune": "62514", - "libelleAcheminement": "LIGNY ST FLOCHEL", - "nomCommune": "LIGNY ST FLOCHEL" + "codePostal": "37800", + "codeCommune": "37174", + "libelleAcheminement": "NOUATRE", + "nomCommune": "NOUATRE" }, { - "codePostal": "20214", - "codeCommune": "2B049", - "libelleAcheminement": "CALENZANA", - "nomCommune": "CALENZANA" + "codePostal": "37110", + "codeCommune": "37116", + "libelleAcheminement": "LES HERMITES", + "nomCommune": "LES HERMITES" }, { - "codePostal": "55200", - "codeCommune": "55114", - "libelleAcheminement": "CHONVILLE MALAUMONT", - "nomCommune": "CHONVILLE MALAUMONT" + "codePostal": "26570", + "codeCommune": "26018", + "libelleAcheminement": "AULAN", + "nomCommune": "AULAN" }, { - "codePostal": "68720", - "codeCommune": "68141", - "libelleAcheminement": "HOCHSTATT", - "nomCommune": "HOCHSTATT" + "codePostal": "27220", + "codeCommune": "27259", + "libelleAcheminement": "FOUCRAINVILLE", + "nomCommune": "FOUCRAINVILLE" }, { - "codePostal": "62190", - "codeCommune": "62516", - "libelleAcheminement": "LILLERS", - "nomCommune": "LILLERS" + "codePostal": "37230", + "codeCommune": "37182", + "libelleAcheminement": "PERNAY", + "nomCommune": "PERNAY" }, { - "codePostal": "20229", - "codeCommune": "2B052", - "libelleAcheminement": "CAMPANA", - "nomCommune": "CAMPANA" + "codePostal": "37420", + "codeCommune": "37118", + "libelleAcheminement": "HUISMES", + "nomCommune": "HUISMES" }, { - "codePostal": "55120", - "codeCommune": "55116", - "libelleAcheminement": "LE CLAON", - "nomCommune": "LE CLAON" + "codePostal": "26310", + "codeCommune": "26025", + "libelleAcheminement": "BARNAVE", + "nomCommune": "BARNAVE" }, { - "codePostal": "68125", - "codeCommune": "68146", - "libelleAcheminement": "HOUSSEN", - "nomCommune": "HOUSSEN" + "codePostal": "27370", + "codeCommune": "27261", + "libelleAcheminement": "FOUQUEVILLE", + "nomCommune": "FOUQUEVILLE" }, { - "codePostal": "62870", - "codeCommune": "62538", - "libelleAcheminement": "MAINTENAY", - "nomCommune": "MAINTENAY" + "codePostal": "37800", + "codeCommune": "37190", + "libelleAcheminement": "PUSSIGNY", + "nomCommune": "PUSSIGNY" }, { - "codePostal": "20290", - "codeCommune": "2B054", - "libelleAcheminement": "CAMPILE", - "nomCommune": "CAMPILE" + "codePostal": "37220", + "codeCommune": "37119", + "libelleAcheminement": "L ILE BOUCHARD", + "nomCommune": "L ILE BOUCHARD" }, { - "codePostal": "55000", - "codeCommune": "55123", - "libelleAcheminement": "LES HAUTS DE CHEE", - "nomCommune": "LES HAUTS DE CHEE" + "codePostal": "26310", + "codeCommune": "26030", + "libelleAcheminement": "LA BATIE DES FONDS", + "nomCommune": "LA BATIE DES FONDS" }, { - "codePostal": "68130", - "codeCommune": "68148", - "libelleAcheminement": "HUNDSBACH", - "nomCommune": "HUNDSBACH" + "codePostal": "27500", + "codeCommune": "27263", + "libelleAcheminement": "LE PERREY", + "nomCommune": "LE PERREY" }, { - "codePostal": "62310", - "codeCommune": "62541", - "libelleAcheminement": "MAISONCELLE", - "nomCommune": "MAISONCELLE" + "codePostal": "37120", + "codeCommune": "37191", + "libelleAcheminement": "RAZINES", + "nomCommune": "RAZINES" }, { - "codePostal": "20230", - "codeCommune": "2B057", - "libelleAcheminement": "CANALE DI VERDE", - "nomCommune": "CANALE DI VERDE" + "codePostal": "37120", + "codeCommune": "37121", + "libelleAcheminement": "JAULNAY", + "nomCommune": "JAULNAY" }, { - "codePostal": "55000", - "codeCommune": "55123", - "libelleAcheminement": "LES HAUTS DE CHEE", - "nomCommune": "LES HAUTS DE CHEE" + "codePostal": "26790", + "codeCommune": "26054", + "libelleAcheminement": "BOUCHET", + "nomCommune": "BOUCHET" }, { - "codePostal": "68040", - "codeCommune": "68155", - "libelleAcheminement": "INGERSHEIM", - "nomCommune": "INGERSHEIM" + "codePostal": "27680", + "codeCommune": "27263", + "libelleAcheminement": "LE PERREY", + "nomCommune": "LE PERREY" }, { - "codePostal": "62810", - "codeCommune": "62544", - "libelleAcheminement": "MANIN", - "nomCommune": "MANIN" + "codePostal": "37420", + "codeCommune": "37197", + "libelleAcheminement": "RIGNY USSE", + "nomCommune": "RIGNY USSE" }, { - "codePostal": "20218", - "codeCommune": "2B080", - "libelleAcheminement": "CASTIFAO", - "nomCommune": "CASTIFAO" + "codePostal": "37300", + "codeCommune": "37122", + "libelleAcheminement": "JOUE LES TOURS", + "nomCommune": "JOUE LES TOURS" }, { - "codePostal": "55260", - "codeCommune": "55128", - "libelleAcheminement": "COURCELLES SUR AIRE", - "nomCommune": "COURCELLES SUR AIRE" + "codePostal": "26410", + "codeCommune": "26055", + "libelleAcheminement": "BOULC", + "nomCommune": "BOULC" }, { - "codePostal": "68680", - "codeCommune": "68163", - "libelleAcheminement": "KEMBS", - "nomCommune": "KEMBS" + "codePostal": "27800", + "codeCommune": "27266", + "libelleAcheminement": "FRANQUEVILLE", + "nomCommune": "FRANQUEVILLE" }, { - "codePostal": "62170", - "codeCommune": "62547", - "libelleAcheminement": "MARANT", - "nomCommune": "MARANT" + "codePostal": "37190", + "codeCommune": "37200", + "libelleAcheminement": "RIVARENNES", + "nomCommune": "RIVARENNES" }, { - "codePostal": "20218", - "codeCommune": "2B081", - "libelleAcheminement": "CASTIGLIONE", - "nomCommune": "CASTIGLIONE" + "codePostal": "37270", + "codeCommune": "37124", + "libelleAcheminement": "LARCAY", + "nomCommune": "LARCAY" }, { - "codePostal": "55100", - "codeCommune": "55139", - "libelleAcheminement": "CUMIERES LE MORT HOMME", - "nomCommune": "CUMIERES LE MORT HOMME" + "codePostal": "26410", + "codeCommune": "26055", + "libelleAcheminement": "BOULC", + "nomCommune": "BOULC" }, { - "codePostal": "68480", - "codeCommune": "68165", - "libelleAcheminement": "KIFFIS", - "nomCommune": "KIFFIS" + "codePostal": "27600", + "codeCommune": "27275", + "libelleAcheminement": "GAILLON", + "nomCommune": "GAILLON" }, { - "codePostal": "62630", - "codeCommune": "62554", - "libelleAcheminement": "MARESVILLE", - "nomCommune": "MARESVILLE" + "codePostal": "37360", + "codeCommune": "37204", + "libelleAcheminement": "ROUZIERS DE TOURAINE", + "nomCommune": "ROUZIERS DE TOURAINE" }, { - "codePostal": "20238", - "codeCommune": "2B086", - "libelleAcheminement": "CENTURI", - "nomCommune": "CENTURI" + "codePostal": "37240", + "codeCommune": "37130", + "libelleAcheminement": "LIGUEIL", + "nomCommune": "LIGUEIL" }, { - "codePostal": "55110", - "codeCommune": "55140", - "libelleAcheminement": "CUNEL", - "nomCommune": "CUNEL" + "codePostal": "26500", + "codeCommune": "26058", + "libelleAcheminement": "BOURG LES VALENCE", + "nomCommune": "BOURG LES VALENCE" }, { - "codePostal": "68290", - "codeCommune": "68167", - "libelleAcheminement": "KIRCHBERG", - "nomCommune": "KIRCHBERG" + "codePostal": "27140", + "codeCommune": "27284", + "libelleAcheminement": "GISORS", + "nomCommune": "GISORS" }, { - "codePostal": "62170", - "codeCommune": "62556", - "libelleAcheminement": "MARLES SUR CANCHE", - "nomCommune": "MARLES SUR CANCHE" + "codePostal": "37190", + "codeCommune": "37205", + "libelleAcheminement": "SACHE", + "nomCommune": "SACHE" }, { - "codePostal": "20221", - "codeCommune": "2B087", - "libelleAcheminement": "CERVIONE", - "nomCommune": "CERVIONE" + "codePostal": "37160", + "codeCommune": "37145", + "libelleAcheminement": "MARCE SUR ESVES", + "nomCommune": "MARCE SUR ESVES" }, { - "codePostal": "55130", - "codeCommune": "55142", - "libelleAcheminement": "DAINVILLE BERTHELEVILLE", - "nomCommune": "DAINVILLE BERTHELEVILLE" + "codePostal": "26400", + "codeCommune": "26065", + "libelleAcheminement": "CHABRILLAN", + "nomCommune": "CHABRILLAN" }, { - "codePostal": "68440", - "codeCommune": "68174", - "libelleAcheminement": "LANDSER", - "nomCommune": "LANDSER" + "codePostal": "27560", + "codeCommune": "27286", + "libelleAcheminement": "GIVERVILLE", + "nomCommune": "GIVERVILLE" }, { - "codePostal": "62240", - "codeCommune": "62566", - "libelleAcheminement": "MENNEVILLE", - "nomCommune": "MENNEVILLE" + "codePostal": "37140", + "codeCommune": "37228", + "libelleAcheminement": "ST NICOLAS DE BOURGUEIL", + "nomCommune": "ST NICOLAS DE BOURGUEIL" }, { - "codePostal": "20212", - "codeCommune": "2B110", - "libelleAcheminement": "FAVALELLO DE BOZIO", - "nomCommune": "FAVALELLO" + "codePostal": "37120", + "codeCommune": "37148", + "libelleAcheminement": "MARIGNY MARMANDE", + "nomCommune": "MARIGNY MARMANDE" }, { - "codePostal": "55320", - "codeCommune": "55154", - "libelleAcheminement": "DIEUE SUR MEUSE", - "nomCommune": "DIEUE SUR MEUSE" + "codePostal": "26190", + "codeCommune": "26066", + "libelleAcheminement": "LE CHAFFAL", + "nomCommune": "LE CHAFFAL" }, { - "codePostal": "68580", - "codeCommune": "68176", - "libelleAcheminement": "LARGITZEN", - "nomCommune": "LARGITZEN" + "codePostal": "27390", + "codeCommune": "27289", + "libelleAcheminement": "LA GOULAFRIERE", + "nomCommune": "LA GOULAFRIERE" }, { - "codePostal": "62890", - "codeCommune": "62567", - "libelleAcheminement": "MENTQUE NORTBECOURT", - "nomCommune": "MENTQUE NORTBECOURT" + "codePostal": "37140", + "codeCommune": "37232", + "libelleAcheminement": "COTEAUX SUR LOIRE", + "nomCommune": "COTEAUX SUR LOIRE" }, { - "codePostal": "20251", - "codeCommune": "2B126", - "libelleAcheminement": "GIUNCAGGIO", - "nomCommune": "GIUNCAGGIO" + "codePostal": "37460", + "codeCommune": "37157", + "libelleAcheminement": "MONTRESOR", + "nomCommune": "MONTRESOR" }, { - "codePostal": "55150", - "codeCommune": "55156", - "libelleAcheminement": "DOMBRAS", - "nomCommune": "DOMBRAS" + "codePostal": "26150", + "codeCommune": "26069", + "libelleAcheminement": "CHAMALOC", + "nomCommune": "CHAMALOC" }, { - "codePostal": "68610", - "codeCommune": "68177", - "libelleAcheminement": "LAUTENBACH", - "nomCommune": "LAUTENBACH" + "codePostal": "27170", + "codeCommune": "27290", + "libelleAcheminement": "GOUPIL OTHON", + "nomCommune": "GOUPIL OTHON" }, { - "codePostal": "62560", - "codeCommune": "62569", - "libelleAcheminement": "MERCK ST LIEVIN", - "nomCommune": "MERCK ST LIEVIN" + "codePostal": "37340", + "codeCommune": "37241", + "libelleAcheminement": "SAVIGNE SUR LATHAN", + "nomCommune": "SAVIGNE SUR LATHAN" }, { - "codePostal": "20220", - "codeCommune": "2B134", - "libelleAcheminement": "L ILE ROUSSE", - "nomCommune": "L ILE ROUSSE" + "codePostal": "37110", + "codeCommune": "37160", + "libelleAcheminement": "MORAND", + "nomCommune": "MORAND" }, { - "codePostal": "55240", - "codeCommune": "55158", - "libelleAcheminement": "DOMMARY BARONCOURT", - "nomCommune": "DOMMARY BARONCOURT" + "codePostal": "26230", + "codeCommune": "26070", + "libelleAcheminement": "CHAMARET", + "nomCommune": "CHAMARET" }, { - "codePostal": "68610", - "codeCommune": "68178", - "libelleAcheminement": "LAUTENBACHZELL", - "nomCommune": "LAUTENBACHZELL" + "codePostal": "27380", + "codeCommune": "27294", + "libelleAcheminement": "VAL D ORGER", + "nomCommune": "VAL D ORGER" }, { - "codePostal": "62680", - "codeCommune": "62570", - "libelleAcheminement": "MERICOURT", - "nomCommune": "MERICOURT" + "codePostal": "37510", + "codeCommune": "37243", + "libelleAcheminement": "SAVONNIERES", + "nomCommune": "SAVONNIERES" }, { - "codePostal": "20215", - "codeCommune": "2B145", - "libelleAcheminement": "LORETO DI CASINCA", - "nomCommune": "LORETO DI CASINCA" + "codePostal": "37210", + "codeCommune": "37171", + "libelleAcheminement": "NOIZAY", + "nomCommune": "NOIZAY" }, { - "codePostal": "55150", - "codeCommune": "55170", - "libelleAcheminement": "ECUREY EN VERDUNOIS", - "nomCommune": "ECUREY EN VERDUNOIS" + "codePostal": "26600", + "codeCommune": "26071", + "libelleAcheminement": "CHANOS CURSON", + "nomCommune": "CHANOS CURSON" }, { - "codePostal": "68480", - "codeCommune": "68181", - "libelleAcheminement": "LEVONCOURT", - "nomCommune": "LEVONCOURT" + "codePostal": "27270", + "codeCommune": "27295", + "libelleAcheminement": "GRAND CAMP", + "nomCommune": "GRAND CAMP" }, { - "codePostal": "62155", - "codeCommune": "62571", - "libelleAcheminement": "MERLIMONT", - "nomCommune": "MERLIMONT" + "codePostal": "37220", + "codeCommune": "37244", + "libelleAcheminement": "SAZILLY", + "nomCommune": "SAZILLY" }, { - "codePostal": "20290", - "codeCommune": "2B148", - "libelleAcheminement": "LUCCIANA", - "nomCommune": "LUCCIANA" + "codePostal": "37460", + "codeCommune": "37173", + "libelleAcheminement": "NOUANS LES FONTAINES", + "nomCommune": "NOUANS LES FONTAINES" }, { - "codePostal": "55140", - "codeCommune": "55173", - "libelleAcheminement": "EPIEZ SUR MEUSE", - "nomCommune": "EPIEZ SUR MEUSE" + "codePostal": "26470", + "codeCommune": "26075", + "libelleAcheminement": "LA CHARCE", + "nomCommune": "LA CHARCE" }, { - "codePostal": "68280", - "codeCommune": "68189", - "libelleAcheminement": "LOGELHEIM", - "nomCommune": "LOGELHEIM" + "codePostal": "27170", + "codeCommune": "27300", + "libelleAcheminement": "GROSLEY SUR RISLE", + "nomCommune": "GROSLEY SUR RISLE" }, { - "codePostal": "62124", - "codeCommune": "62572", - "libelleAcheminement": "METZ EN COUTURE", - "nomCommune": "METZ EN COUTURE" + "codePostal": "37360", + "codeCommune": "37249", + "libelleAcheminement": "SONZAY", + "nomCommune": "SONZAY" }, { - "codePostal": "20240", - "codeCommune": "2B149", - "libelleAcheminement": "LUGO DI NAZZA", - "nomCommune": "LUGO DI NAZZA" + "codePostal": "37460", + "codeCommune": "37177", + "libelleAcheminement": "ORBIGNY", + "nomCommune": "ORBIGNY" }, { - "codePostal": "55500", - "codeCommune": "55179", - "libelleAcheminement": "ERNEVILLE AUX BOIS", - "nomCommune": "ERNEVILLE AUX BOIS" + "codePostal": "26300", + "codeCommune": "26079", + "libelleAcheminement": "CHARPEY", + "nomCommune": "CHARPEY" }, { - "codePostal": "68720", - "codeCommune": "68191", - "libelleAcheminement": "LUEMSCHWILLER", - "nomCommune": "LUEMSCHWILLER" + "codePostal": "27700", + "codeCommune": "27307", + "libelleAcheminement": "GUISENIERS", + "nomCommune": "GUISENIERS" }, { - "codePostal": "62123", - "codeCommune": "62578", - "libelleAcheminement": "MONCHIET", - "nomCommune": "MONCHIET" + "codePostal": "37310", + "codeCommune": "37253", + "libelleAcheminement": "SUBLAINES", + "nomCommune": "SUBLAINES" }, { - "codePostal": "20270", - "codeCommune": "2B161", - "libelleAcheminement": "MOITA", - "nomCommune": "MOITA" + "codePostal": "37600", + "codeCommune": "37183", + "libelleAcheminement": "PERRUSSON", + "nomCommune": "PERRUSSON" }, { - "codePostal": "55400", - "codeCommune": "55181", - "libelleAcheminement": "ETAIN", - "nomCommune": "ETAIN" + "codePostal": "26340", + "codeCommune": "26080", + "libelleAcheminement": "CHASTEL ARNAUD", + "nomCommune": "CHASTEL ARNAUD" }, { - "codePostal": "68210", - "codeCommune": "68196", - "libelleAcheminement": "MAGNY", - "nomCommune": "MAGNY" + "codePostal": "27800", + "codeCommune": "27318", + "libelleAcheminement": "LA HAYE DE CALLEVILLE", + "nomCommune": "LA HAYE DE CALLEVILLE" }, { - "codePostal": "62140", - "codeCommune": "62596", - "libelleAcheminement": "MOURIEZ", - "nomCommune": "MOURIEZ" + "codePostal": "37000", + "codeCommune": "37261", + "libelleAcheminement": "TOURS", + "nomCommune": "TOURS" }, { - "codePostal": "20218", - "codeCommune": "2B162", - "libelleAcheminement": "MOLTIFAO", - "nomCommune": "MOLTIFAO" + "codePostal": "37340", + "codeCommune": "37198", + "libelleAcheminement": "RILLE", + "nomCommune": "RILLE" }, { - "codePostal": "55200", - "codeCommune": "55184", - "libelleAcheminement": "EUVILLE", - "nomCommune": "EUVILLE" + "codePostal": "26780", + "codeCommune": "26085", + "libelleAcheminement": "CHATEAUNEUF DU RHONE", + "nomCommune": "CHATEAUNEUF DU RHONE" }, { - "codePostal": "68510", - "codeCommune": "68198", - "libelleAcheminement": "MAGSTATT LE HAUT", - "nomCommune": "MAGSTATT LE HAUT" + "codePostal": "27370", + "codeCommune": "27320", + "libelleAcheminement": "LA HAYE DU THEIL", + "nomCommune": "LA HAYE DU THEIL" }, { - "codePostal": "62121", - "codeCommune": "62597", - "libelleAcheminement": "MOYENNEVILLE", - "nomCommune": "MOYENNEVILLE" + "codePostal": "37600", + "codeCommune": "37265", + "libelleAcheminement": "VARENNES", + "nomCommune": "VARENNES" }, { - "codePostal": "20214", - "codeCommune": "2B167", - "libelleAcheminement": "MONTEGROSSO", - "nomCommune": "MONTEGROSSO" + "codePostal": "37220", + "codeCommune": "37199", + "libelleAcheminement": "RILLY SUR VIENNE", + "nomCommune": "RILLY SUR VIENNE" }, { - "codePostal": "55200", - "codeCommune": "55184", - "libelleAcheminement": "EUVILLE", - "nomCommune": "EUVILLE" + "codePostal": "26410", + "codeCommune": "26086", + "libelleAcheminement": "CHATILLON EN DIOIS", + "nomCommune": "CHATILLON EN DIOIS" }, { - "codePostal": "68630", - "codeCommune": "68209", - "libelleAcheminement": "MITTELWIHR", - "nomCommune": "MITTELWIHR" + "codePostal": "27700", + "codeCommune": "27329", + "libelleAcheminement": "HENNEZIS", + "nomCommune": "HENNEZIS" }, { - "codePostal": "62142", - "codeCommune": "62599", - "libelleAcheminement": "NABRINGHEN", - "nomCommune": "NABRINGHEN" + "codePostal": "37460", + "codeCommune": "37275", + "libelleAcheminement": "VILLEDOMAIN", + "nomCommune": "VILLEDOMAIN" }, { - "codePostal": "20259", - "codeCommune": "2B190", - "libelleAcheminement": "OLMI CAPPELLA", - "nomCommune": "OLMI CAPPELLA" + "codePostal": "37500", + "codeCommune": "37202", + "libelleAcheminement": "LA ROCHE CLERMAULT", + "nomCommune": "LA ROCHE CLERMAULT" }, { - "codePostal": "55110", - "codeCommune": "55193", - "libelleAcheminement": "FORGES SUR MEUSE", - "nomCommune": "FORGES SUR MEUSE" + "codePostal": "26110", + "codeCommune": "26089", + "libelleAcheminement": "CHAUDEBONNE", + "nomCommune": "CHAUDEBONNE" }, { - "codePostal": "68580", - "codeCommune": "68216", - "libelleAcheminement": "MOOSLARGUE", - "nomCommune": "MOOSLARGUE" + "codePostal": "27400", + "codeCommune": "27332", + "libelleAcheminement": "HEUDEBOUVILLE", + "nomCommune": "HEUDEBOUVILLE" }, { - "codePostal": "62130", - "codeCommune": "62607", - "libelleAcheminement": "NEUVILLE AU CORNET", - "nomCommune": "NEUVILLE AU CORNET" + "codePostal": "37290", + "codeCommune": "37282", + "libelleAcheminement": "YZEURES SUR CREUSE", + "nomCommune": "YZEURES SUR CREUSE" }, { - "codePostal": "20236", - "codeCommune": "2B193", - "libelleAcheminement": "OMESSA", - "nomCommune": "OMESSA" + "codePostal": "37360", + "codeCommune": "37206", + "libelleAcheminement": "ST ANTOINE DU ROCHER", + "nomCommune": "ST ANTOINE DU ROCHER" }, { - "codePostal": "55400", - "codeCommune": "55201", - "libelleAcheminement": "FROMEZEY", - "nomCommune": "FROMEZEY" + "codePostal": "26260", + "codeCommune": "26092", + "libelleAcheminement": "CHAVANNES", + "nomCommune": "CHAVANNES" }, { - "codePostal": "68640", - "codeCommune": "68222", - "libelleAcheminement": "MUESPACH LE HAUT", - "nomCommune": "MUESPACH LE HAUT" + "codePostal": "27230", + "codeCommune": "27334", + "libelleAcheminement": "HEUDREVILLE EN LIEUVIN", + "nomCommune": "HEUDREVILLE EN LIEUVIN" }, { - "codePostal": "62610", - "codeCommune": "62614", - "libelleAcheminement": "NIELLES LES ARDRES", - "nomCommune": "NIELLES LES ARDRES" + "codePostal": "38490", + "codeCommune": "38001", + "libelleAcheminement": "LES ABRETS EN DAUPHINE", + "nomCommune": "LES ABRETS EN DAUPHINE" }, { - "codePostal": "20226", - "codeCommune": "2B199", - "libelleAcheminement": "PALASCA", - "nomCommune": "PALASCA" + "codePostal": "37550", + "codeCommune": "37208", + "libelleAcheminement": "ST AVERTIN", + "nomCommune": "ST AVERTIN" }, { - "codePostal": "55000", - "codeCommune": "55207", - "libelleAcheminement": "GERY", - "nomCommune": "GERY" + "codePostal": "26240", + "codeCommune": "26094", + "libelleAcheminement": "CLAVEYSON", + "nomCommune": "CLAVEYSON" }, { - "codePostal": "68740", - "codeCommune": "68225", - "libelleAcheminement": "MUNCHHOUSE", - "nomCommune": "MUNCHHOUSE" + "codePostal": "27950", + "codeCommune": "27336", + "libelleAcheminement": "LA HEUNIERE", + "nomCommune": "LA HEUNIERE" }, { - "codePostal": "62890", - "codeCommune": "62618", - "libelleAcheminement": "NORDAUSQUES", - "nomCommune": "NORDAUSQUES" + "codePostal": "38114", + "codeCommune": "38005", + "libelleAcheminement": "ALLEMOND", + "nomCommune": "ALLEMOND" }, { - "codePostal": "20229", - "codeCommune": "2B221", - "libelleAcheminement": "PIEDIPARTINO", - "nomCommune": "PIEDIPARTINO" + "codePostal": "37800", + "codeCommune": "37212", + "libelleAcheminement": "STE CATHERINE DE FIERBOIS", + "nomCommune": "STE CATHERINE DE FIERBOIS" }, { - "codePostal": "55260", - "codeCommune": "55210", - "libelleAcheminement": "GIMECOURT", - "nomCommune": "GIMECOURT" + "codePostal": "26260", + "codeCommune": "26096", + "libelleAcheminement": "CLERIEUX", + "nomCommune": "CLERIEUX" }, { - "codePostal": "68250", - "codeCommune": "68228", - "libelleAcheminement": "MUNWILLER", - "nomCommune": "MUNWILLER" + "codePostal": "27570", + "codeCommune": "27341", + "libelleAcheminement": "L HOSMES", + "nomCommune": "L HOSMES" }, { - "codePostal": "62128", - "codeCommune": "62619", - "libelleAcheminement": "NOREUIL", - "nomCommune": "NOREUIL" + "codePostal": "38140", + "codeCommune": "38013", + "libelleAcheminement": "APPRIEU", + "nomCommune": "APPRIEU" }, { - "codePostal": "20233", - "codeCommune": "2B224", - "libelleAcheminement": "PIETRACORBARA", - "nomCommune": "PIETRACORBARA" + "codePostal": "37370", + "codeCommune": "37213", + "libelleAcheminement": "ST CHRISTOPHE SUR LE NAIS", + "nomCommune": "ST CHRISTOPHE SUR LE NAIS" }, { - "codePostal": "55400", - "codeCommune": "55211", - "libelleAcheminement": "GINCREY", - "nomCommune": "GINCREY" + "codePostal": "26220", + "codeCommune": "26101", + "libelleAcheminement": "COMPS", + "nomCommune": "COMPS" }, { - "codePostal": "68960", - "codeCommune": "68240", - "libelleAcheminement": "ILLTAL", - "nomCommune": "ILLTAL" + "codePostal": "27400", + "codeCommune": "27342", + "libelleAcheminement": "HOUETTEVILLE", + "nomCommune": "HOUETTEVILLE" }, { - "codePostal": "62370", - "codeCommune": "62623", - "libelleAcheminement": "NOUVELLE EGLISE", - "nomCommune": "NOUVELLE EGLISE" + "codePostal": "38440", + "codeCommune": "38015", + "libelleAcheminement": "ARTAS", + "nomCommune": "ARTAS" }, { - "codePostal": "20251", - "codeCommune": "2B226", - "libelleAcheminement": "PIETRASERENA", - "nomCommune": "PIETRASERENA" + "codePostal": "37600", + "codeCommune": "37218", + "libelleAcheminement": "ST FLOVIER", + "nomCommune": "ST FLOVIER" }, { - "codePostal": "55140", - "codeCommune": "55217", - "libelleAcheminement": "GOUSSAINCOURT", - "nomCommune": "GOUSSAINCOURT" + "codePostal": "26600", + "codeCommune": "26110", + "libelleAcheminement": "CROZES HERMITAGE", + "nomCommune": "CROZES HERMITAGE" }, { - "codePostal": "68960", - "codeCommune": "68240", - "libelleAcheminement": "ILLTAL", - "nomCommune": "ILLTAL" + "codePostal": "27120", + "codeCommune": "27343", + "libelleAcheminement": "HOULBEC COCHEREL", + "nomCommune": "HOULBEC COCHEREL" }, { - "codePostal": "62123", - "codeCommune": "62629", - "libelleAcheminement": "NOYELLETTE", - "nomCommune": "NOYELLETTE" + "codePostal": "38630", + "codeCommune": "38022", + "libelleAcheminement": "LES AVENIERES VEYRINS THUELLIN", + "nomCommune": "LES AVENIERES VEYRINS THUELLIN" }, { - "codePostal": "20234", - "codeCommune": "2B234", - "libelleAcheminement": "PIOBETTA", - "nomCommune": "PIOBETTA" + "codePostal": "37500", + "codeCommune": "37220", + "libelleAcheminement": "ST GERMAIN SUR VIENNE", + "nomCommune": "ST GERMAIN SUR VIENNE" }, { - "codePostal": "55000", - "codeCommune": "55221", - "libelleAcheminement": "GUERPONT", - "nomCommune": "GUERPONT" + "codePostal": "26220", + "codeCommune": "26114", + "libelleAcheminement": "DIEULEFIT", + "nomCommune": "DIEULEFIT" }, { - "codePostal": "68130", - "codeCommune": "68245", - "libelleAcheminement": "OBERMORSCHWILLER", - "nomCommune": "OBERMORSCHWILLER" + "codePostal": "27440", + "codeCommune": "27346", + "libelleAcheminement": "HOUVILLE EN VEXIN", + "nomCommune": "HOUVILLE EN VEXIN" }, { - "codePostal": "62810", - "codeCommune": "62630", - "libelleAcheminement": "NOYELLE VION", - "nomCommune": "NOYELLE VION" + "codePostal": "38530", + "codeCommune": "38027", + "libelleAcheminement": "BARRAUX", + "nomCommune": "BARRAUX" }, { - "codePostal": "20259", - "codeCommune": "2B235", - "libelleAcheminement": "PIOGGIOLA", - "nomCommune": "PIOGGIOLA" + "codePostal": "37330", + "codeCommune": "37223", + "libelleAcheminement": "ST LAURENT DE LIN", + "nomCommune": "ST LAURENT DE LIN" }, { - "codePostal": "55400", - "codeCommune": "55222", - "libelleAcheminement": "GUSSAINVILLE", - "nomCommune": "GUSSAINVILLE" + "codePostal": "26190", + "codeCommune": "26117", + "libelleAcheminement": "ECHEVIS", + "nomCommune": "ECHEVIS" }, { - "codePostal": "68370", - "codeCommune": "68249", - "libelleAcheminement": "ORBEY", - "nomCommune": "ORBEY" + "codePostal": "27460", + "codeCommune": "27348", + "libelleAcheminement": "IGOVILLE", + "nomCommune": "IGOVILLE" }, { - "codePostal": "62270", - "codeCommune": "62631", - "libelleAcheminement": "NUNCQ HAUTECOTE", - "nomCommune": "NUNCQ HAUTECOTE" + "codePostal": "38470", + "codeCommune": "38033", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "20229", - "codeCommune": "2B243", - "libelleAcheminement": "POLVEROSO", - "nomCommune": "POLVEROSO" + "codePostal": "37380", + "codeCommune": "37224", + "libelleAcheminement": "ST LAURENT EN GATINES", + "nomCommune": "ST LAURENT EN GATINES" }, { - "codePostal": "55600", - "codeCommune": "55226", - "libelleAcheminement": "HAN LES JUVIGNY", - "nomCommune": "HAN LES JUVIGNY" + "codePostal": "26800", + "codeCommune": "26124", + "libelleAcheminement": "ETOILE SUR RHONE", + "nomCommune": "ETOILE SUR RHONE" }, { - "codePostal": "68490", - "codeCommune": "68254", - "libelleAcheminement": "PETIT LANDAU", - "nomCommune": "PETIT LANDAU" + "codePostal": "27400", + "codeCommune": "27351", + "libelleAcheminement": "INCARVILLE", + "nomCommune": "INCARVILLE" }, { - "codePostal": "62920", - "codeCommune": "62632", - "libelleAcheminement": "OBLINGHEM", - "nomCommune": "OBLINGHEM" + "codePostal": "38270", + "codeCommune": "38037", + "libelleAcheminement": "BELLEGARDE POUSSIEU", + "nomCommune": "BELLEGARDE POUSSIEU" }, { - "codePostal": "20243", - "codeCommune": "2B251", - "libelleAcheminement": "PRUNELLI DI FIUMORBO", - "nomCommune": "PRUNELLI DI FIUMORBO" + "codePostal": "37270", + "codeCommune": "37225", + "libelleAcheminement": "ST MARTIN LE BEAU", + "nomCommune": "ST MARTIN LE BEAU" }, { - "codePostal": "55210", - "codeCommune": "55228", - "libelleAcheminement": "HANNONVILLE SOUS LES COTES", - "nomCommune": "HANNONVILLE SOUS LES COTES" + "codePostal": "26800", + "codeCommune": "26124", + "libelleAcheminement": "ETOILE SUR RHONE", + "nomCommune": "ETOILE SUR RHONE" }, { - "codePostal": "68480", - "codeCommune": "68259", - "libelleAcheminement": "RAEDERSDORF", - "nomCommune": "RAEDERSDORF" + "codePostal": "27540", + "codeCommune": "27355", + "libelleAcheminement": "IVRY LA BATAILLE", + "nomCommune": "IVRY LA BATAILLE" }, { - "codePostal": "62760", - "codeCommune": "62640", - "libelleAcheminement": "ORVILLE", - "nomCommune": "ORVILLE" + "codePostal": "38190", + "codeCommune": "38039", + "libelleAcheminement": "BERNIN", + "nomCommune": "BERNIN" }, { - "codePostal": "20213", - "codeCommune": "2B252", - "libelleAcheminement": "PRUNO", - "nomCommune": "PRUNO" + "codePostal": "37310", + "codeCommune": "37234", + "libelleAcheminement": "ST QUENTIN SUR INDROIS", + "nomCommune": "ST QUENTIN SUR INDROIS" }, { - "codePostal": "55160", - "codeCommune": "55242", - "libelleAcheminement": "HENNEMONT", - "nomCommune": "HENNEMONT" + "codePostal": "26560", + "codeCommune": "26126", + "libelleAcheminement": "EYGALAYES", + "nomCommune": "EYGALAYES" }, { - "codePostal": "68470", - "codeCommune": "68262", - "libelleAcheminement": "RANSPACH", - "nomCommune": "RANSPACH" + "codePostal": "27120", + "codeCommune": "27358", + "libelleAcheminement": "JOUY SUR EURE", + "nomCommune": "JOUY SUR EURE" }, { - "codePostal": "62230", - "codeCommune": "62643", - "libelleAcheminement": "OUTREAU", - "nomCommune": "OUTREAU" + "codePostal": "38330", + "codeCommune": "38045", + "libelleAcheminement": "BIVIERS", + "nomCommune": "BIVIERS" }, { - "codePostal": "20213", - "codeCommune": "2B252", - "libelleAcheminement": "PRUNO", - "nomCommune": "PRUNO" + "codePostal": "37390", + "codeCommune": "37237", + "libelleAcheminement": "ST ROCH", + "nomCommune": "ST ROCH" }, { - "codePostal": "55130", - "codeCommune": "55248", - "libelleAcheminement": "HOUDELAINCOURT", - "nomCommune": "HOUDELAINCOURT" + "codePostal": "26170", + "codeCommune": "26127", + "libelleAcheminement": "EYGALIERS", + "nomCommune": "EYGALIERS" }, { - "codePostal": "68220", - "codeCommune": "68264", - "libelleAcheminement": "RANSPACH LE HAUT", - "nomCommune": "RANSPACH LE HAUT" + "codePostal": "27690", + "codeCommune": "27365", + "libelleAcheminement": "LERY", + "nomCommune": "LERY" }, { - "codePostal": "62650", - "codeCommune": "62648", - "libelleAcheminement": "PARENTY", - "nomCommune": "PARENTY" + "codePostal": "38690", + "codeCommune": "38046", + "libelleAcheminement": "BIZONNES", + "nomCommune": "BIZONNES" }, { - "codePostal": "20242", - "codeCommune": "2B263", - "libelleAcheminement": "ROSPIGLIANI", - "nomCommune": "ROSPIGLIANI" + "codePostal": "37600", + "codeCommune": "37238", + "libelleAcheminement": "ST SENOCH", + "nomCommune": "ST SENOCH" }, { - "codePostal": "55200", - "codeCommune": "55258", - "libelleAcheminement": "GEVILLE", - "nomCommune": "GEVILLE" + "codePostal": "26730", + "codeCommune": "26129", + "libelleAcheminement": "EYMEUX", + "nomCommune": "EYMEUX" }, { - "codePostal": "68890", - "codeCommune": "68266", - "libelleAcheminement": "REGUISHEIM", - "nomCommune": "REGUISHEIM" + "codePostal": "27190", + "codeCommune": "27374", + "libelleAcheminement": "LOUVERSEY", + "nomCommune": "LOUVERSEY" }, { - "codePostal": "62130", - "codeCommune": "62655", - "libelleAcheminement": "PIERREMONT", - "nomCommune": "PIERREMONT" + "codePostal": "38510", + "codeCommune": "38050", + "libelleAcheminement": "LE BOUCHAGE", + "nomCommune": "LE BOUCHAGE" }, { - "codePostal": "20290", - "codeCommune": "2B274", - "libelleAcheminement": "SCOLCA", - "nomCommune": "SCOLCA" + "codePostal": "37420", + "codeCommune": "37242", + "libelleAcheminement": "SAVIGNY EN VERON", + "nomCommune": "SAVIGNY EN VERON" }, { - "codePostal": "55120", - "codeCommune": "55260", - "libelleAcheminement": "JULVECOURT", - "nomCommune": "JULVECOURT" + "codePostal": "26730", + "codeCommune": "26129", + "libelleAcheminement": "EYMEUX", + "nomCommune": "EYMEUX" }, { - "codePostal": "68150", - "codeCommune": "68269", - "libelleAcheminement": "RIBEAUVILLE", - "nomCommune": "RIBEAUVILLE" + "codePostal": "27320", + "codeCommune": "27378", + "libelleAcheminement": "LA MADELEINE DE NONANCOURT", + "nomCommune": "LA MADELEINE DE NONANCOURT" }, { - "codePostal": "62390", - "codeCommune": "62665", - "libelleAcheminement": "LE PONCHEL", - "nomCommune": "LE PONCHEL" + "codePostal": "38150", + "codeCommune": "38051", + "libelleAcheminement": "BOUGE CHAMBALUD", + "nomCommune": "BOUGE CHAMBALUD" }, { - "codePostal": "20213", - "codeCommune": "2B286", - "libelleAcheminement": "SORBO OCAGNANO", - "nomCommune": "SORBO OCAGNANO" + "codePostal": "37600", + "codeCommune": "37246", + "libelleAcheminement": "SENNEVIERES", + "nomCommune": "SENNEVIERES" }, { - "codePostal": "55300", - "codeCommune": "55264", - "libelleAcheminement": "KOEUR LA PETITE", - "nomCommune": "KOEUR LA PETITE" + "codePostal": "26160", + "codeCommune": "26134", + "libelleAcheminement": "FELINES SUR RIMANDOULE", + "nomCommune": "FELINES SUR RIMANDOULE" }, { - "codePostal": "68640", - "codeCommune": "68273", - "libelleAcheminement": "RIESPACH", - "nomCommune": "RIESPACH" + "codePostal": "27130", + "codeCommune": "27383", + "libelleAcheminement": "MANDRES", + "nomCommune": "MANDRES" }, { - "codePostal": "62480", - "codeCommune": "62667", - "libelleAcheminement": "LE PORTEL", - "nomCommune": "LE PORTEL" + "codePostal": "38590", + "codeCommune": "38058", + "libelleAcheminement": "BREZINS", + "nomCommune": "BREZINS" }, { - "codePostal": "20217", - "codeCommune": "2B298", - "libelleAcheminement": "ST FLORENT", - "nomCommune": "ST FLORENT" + "codePostal": "37220", + "codeCommune": "37255", + "libelleAcheminement": "TAVANT", + "nomCommune": "TAVANT" }, { - "codePostal": "55160", - "codeCommune": "55265", - "libelleAcheminement": "LABEUVILLE", - "nomCommune": "LABEUVILLE" + "codePostal": "26730", + "codeCommune": "26149", + "libelleAcheminement": "HOSTUN", + "nomCommune": "HOSTUN" }, { - "codePostal": "68210", - "codeCommune": "68282", - "libelleAcheminement": "ROMAGNY", - "nomCommune": "ROMAGNY" + "codePostal": "27210", + "codeCommune": "27384", + "libelleAcheminement": "MANNEVILLE LA RAOULT", + "nomCommune": "MANNEVILLE LA RAOULT" }, { - "codePostal": "62550", - "codeCommune": "62669", - "libelleAcheminement": "PRESSY", - "nomCommune": "PRESSY" + "codePostal": "38500", + "codeCommune": "38061", + "libelleAcheminement": "LA BUISSE", + "nomCommune": "LA BUISSE" }, { - "codePostal": "20200", - "codeCommune": "2B309", - "libelleAcheminement": "SANTA MARIA DI LOTA", - "nomCommune": "SANTA MARIA DI LOTA" + "codePostal": "37220", + "codeCommune": "37256", + "libelleAcheminement": "THENEUIL", + "nomCommune": "THENEUIL" }, { - "codePostal": "55210", - "codeCommune": "55267", - "libelleAcheminement": "LACHAUSSEE", - "nomCommune": "LACHAUSSEE" + "codePostal": "26210", + "codeCommune": "26162", + "libelleAcheminement": "LENS LESTANG", + "nomCommune": "LENS LESTANG" }, { - "codePostal": "68660", - "codeCommune": "68283", - "libelleAcheminement": "ROMBACH LE FRANC", - "nomCommune": "ROMBACH LE FRANC" + "codePostal": "27930", + "codeCommune": "27401", + "libelleAcheminement": "LE MESNIL FUGUET", + "nomCommune": "LE MESNIL FUGUET" }, { - "codePostal": "62830", - "codeCommune": "62679", - "libelleAcheminement": "QUESTRECQUES", - "nomCommune": "QUESTRECQUES" + "codePostal": "38150", + "codeCommune": "38072", + "libelleAcheminement": "CHANAS", + "nomCommune": "CHANAS" }, { - "codePostal": "20221", - "codeCommune": "2B311", - "libelleAcheminement": "SANTA MARIA POGGIO", - "nomCommune": "SANTA MARIA POGGIO" + "codePostal": "37120", + "codeCommune": "37268", + "libelleAcheminement": "VERNEUIL LE CHATEAU", + "nomCommune": "VERNEUIL LE CHATEAU" }, { - "codePostal": "55210", - "codeCommune": "55267", - "libelleAcheminement": "LACHAUSSEE", - "nomCommune": "LACHAUSSEE" + "codePostal": "26250", + "codeCommune": "26165", + "libelleAcheminement": "LIVRON SUR DROME", + "nomCommune": "LIVRON SUR DROME" }, { - "codePostal": "68590", - "codeCommune": "68285", - "libelleAcheminement": "RORSCHWIHR", - "nomCommune": "RORSCHWIHR" + "codePostal": "27290", + "codeCommune": "27413", + "libelleAcheminement": "MONTFORT SUR RISLE", + "nomCommune": "MONTFORT SUR RISLE" }, { - "codePostal": "62390", - "codeCommune": "62683", - "libelleAcheminement": "QUOEUX HAUT MAINIL", - "nomCommune": "QUOEUX HAUT MAINIL" + "codePostal": "38740", + "codeCommune": "38073", + "libelleAcheminement": "CHANTEPERIER", + "nomCommune": "CHANTEPERIER" }, { - "codePostal": "20246", - "codeCommune": "2B314", - "libelleAcheminement": "SANTO PIETRO DI TENDA", - "nomCommune": "SANTO PIETRO DI TENDA" + "codePostal": "37700", + "codeCommune": "37273", + "libelleAcheminement": "LA VILLE AUX DAMES", + "nomCommune": "LA VILLE AUX DAMES" }, { - "codePostal": "55800", - "codeCommune": "55272", - "libelleAcheminement": "LAIMONT", - "nomCommune": "LAIMONT" + "codePostal": "26270", + "codeCommune": "26166", + "libelleAcheminement": "LORIOL SUR DROME", + "nomCommune": "LORIOL SUR DROME" }, { - "codePostal": "68128", - "codeCommune": "68286", - "libelleAcheminement": "ROSENAU", - "nomCommune": "ROSENAU" + "codePostal": "27390", + "codeCommune": "27414", + "libelleAcheminement": "MONTREUIL L ARGILLE", + "nomCommune": "MONTREUIL L ARGILLE" }, { - "codePostal": "62120", - "codeCommune": "62684", - "libelleAcheminement": "RACQUINGHEM", - "nomCommune": "RACQUINGHEM" + "codePostal": "38580", + "codeCommune": "38078", + "libelleAcheminement": "LA CHAPELLE DU BARD", + "nomCommune": "LA CHAPELLE DU BARD" }, { - "codePostal": "20230", - "codeCommune": "2B319", - "libelleAcheminement": "TALASANI", - "nomCommune": "TALASANI" + "codePostal": "37370", + "codeCommune": "37274", + "libelleAcheminement": "VILLEBOURG", + "nomCommune": "VILLEBOURG" }, { - "codePostal": "55300", - "codeCommune": "55274", - "libelleAcheminement": "LAMORVILLE", - "nomCommune": "LAMORVILLE" + "codePostal": "26310", + "codeCommune": "26167", + "libelleAcheminement": "LUC EN DIOIS", + "nomCommune": "LUC EN DIOIS" }, { - "codePostal": "68300", - "codeCommune": "68297", - "libelleAcheminement": "ST LOUIS", - "nomCommune": "ST LOUIS" + "codePostal": "27170", + "codeCommune": "27425", + "libelleAcheminement": "NASSANDRES SUR RISLE", + "nomCommune": "NASSANDRES SUR RISLE" }, { - "codePostal": "62129", - "codeCommune": "62691", - "libelleAcheminement": "ST AUGUSTIN", - "nomCommune": "ST AUGUSTIN" + "codePostal": "38850", + "codeCommune": "38082", + "libelleAcheminement": "CHARAVINES", + "nomCommune": "CHARAVINES" }, { - "codePostal": "20234", - "codeCommune": "2B321", - "libelleAcheminement": "TARRANO", - "nomCommune": "TARRANO" + "codePostal": "37460", + "codeCommune": "37277", + "libelleAcheminement": "VILLELOIN COULANGE", + "nomCommune": "VILLELOIN COULANGE" }, { - "codePostal": "55170", - "codeCommune": "55284", - "libelleAcheminement": "LAVINCOURT", - "nomCommune": "LAVINCOURT" + "codePostal": "26120", + "codeCommune": "26170", + "libelleAcheminement": "MALISSARD", + "nomCommune": "MALISSARD" }, { - "codePostal": "68520", - "codeCommune": "68302", - "libelleAcheminement": "SCHWEIGHOUSE THANN", - "nomCommune": "SCHWEIGHOUSE THANN" + "codePostal": "27830", + "codeCommune": "27426", + "libelleAcheminement": "NEAUFLES ST MARTIN", + "nomCommune": "NEAUFLES ST MARTIN" }, { - "codePostal": "62380", - "codeCommune": "62702", - "libelleAcheminement": "REMILLY WIRQUIN", - "nomCommune": "REMILLY WIRQUIN" + "codePostal": "38140", + "codeCommune": "38084", + "libelleAcheminement": "CHARNECLES", + "nomCommune": "CHARNECLES" }, { - "codePostal": "20270", - "codeCommune": "2B328", - "libelleAcheminement": "TOX", - "nomCommune": "TOX" + "codePostal": "38490", + "codeCommune": "38001", + "libelleAcheminement": "LES ABRETS EN DAUPHINE", + "nomCommune": "LES ABRETS EN DAUPHINE" }, { - "codePostal": "55200", - "codeCommune": "55288", - "libelleAcheminement": "LEROUVILLE", - "nomCommune": "LEROUVILLE" + "codePostal": "26260", + "codeCommune": "26174", + "libelleAcheminement": "MARGES", + "nomCommune": "MARGES" }, { - "codePostal": "68130", - "codeCommune": "68303", - "libelleAcheminement": "SCHWOBEN", - "nomCommune": "SCHWOBEN" + "codePostal": "27250", + "codeCommune": "27427", + "libelleAcheminement": "NEAUFLES AUVERGNY", + "nomCommune": "NEAUFLES AUVERGNY" }, { - "codePostal": "62990", - "codeCommune": "62710", - "libelleAcheminement": "RIMBOVAL", - "nomCommune": "RIMBOVAL" + "codePostal": "38230", + "codeCommune": "38085", + "libelleAcheminement": "CHARVIEU CHAVAGNEUX", + "nomCommune": "CHARVIEU CHAVAGNEUX" }, { - "codePostal": "20235", - "codeCommune": "2B337", - "libelleAcheminement": "VALLE DI ROSTINO", - "nomCommune": "VALLE DI ROSTINO" + "codePostal": "38460", + "codeCommune": "38010", + "libelleAcheminement": "ANNOISIN CHATELANS", + "nomCommune": "ANNOISIN CHATELANS" }, { - "codePostal": "55260", - "codeCommune": "55289", - "libelleAcheminement": "LEVONCOURT", - "nomCommune": "LEVONCOURT" + "codePostal": "26510", + "codeCommune": "26199", + "libelleAcheminement": "MONTFERRAND LA FARE", + "nomCommune": "MONTFERRAND LA FARE" }, { - "codePostal": "68580", - "codeCommune": "68305", - "libelleAcheminement": "SEPPOIS LE BAS", - "nomCommune": "SEPPOIS LE BAS" + "codePostal": "27250", + "codeCommune": "27427", + "libelleAcheminement": "NEAUFLES AUVERGNY", + "nomCommune": "NEAUFLES AUVERGNY" }, { - "codePostal": "62130", - "codeCommune": "62717", - "libelleAcheminement": "ROELLECOURT", - "nomCommune": "ROELLECOURT" + "codePostal": "38230", + "codeCommune": "38085", + "libelleAcheminement": "CHARVIEU CHAVAGNEUX", + "nomCommune": "CHARVIEU CHAVAGNEUX" }, { - "codePostal": "20229", - "codeCommune": "2B338", - "libelleAcheminement": "VALLE D OREZZA", - "nomCommune": "VALLE D OREZZA" + "codePostal": "38550", + "codeCommune": "38019", + "libelleAcheminement": "AUBERIVES SUR VAREZE", + "nomCommune": "AUBERIVES SUR VAREZE" }, { - "codePostal": "55110", - "codeCommune": "55292", - "libelleAcheminement": "LINY DEVANT DUN", - "nomCommune": "LINY DEVANT DUN" + "codePostal": "26560", + "codeCommune": "26200", + "libelleAcheminement": "MONTFROC", + "nomCommune": "MONTFROC" }, { - "codePostal": "68580", - "codeCommune": "68306", - "libelleAcheminement": "SEPPOIS LE HAUT", - "nomCommune": "SEPPOIS LE HAUT" + "codePostal": "27150", + "codeCommune": "27430", + "libelleAcheminement": "LA NEUVE GRANGE", + "nomCommune": "LA NEUVE GRANGE" }, { - "codePostal": "62870", - "codeCommune": "62723", - "libelleAcheminement": "ROUSSENT", - "nomCommune": "ROUSSENT" + "codePostal": "38470", + "codeCommune": "38086", + "libelleAcheminement": "CHASSELAY", + "nomCommune": "CHASSELAY" }, { - "codePostal": "20219", - "codeCommune": "2B354", - "libelleAcheminement": "VIVARIO", - "nomCommune": "VIVARIO" + "codePostal": "38142", + "codeCommune": "38020", + "libelleAcheminement": "AURIS", + "nomCommune": "AURIS" }, { - "codePostal": "55000", - "codeCommune": "55296", - "libelleAcheminement": "L ISLE EN RIGAULT", - "nomCommune": "L ISLE EN RIGAULT" + "codePostal": "26220", + "codeCommune": "26202", + "libelleAcheminement": "MONTJOUX", + "nomCommune": "MONTJOUX" }, { - "codePostal": "68290", - "codeCommune": "68308", - "libelleAcheminement": "SICKERT", - "nomCommune": "SICKERT" + "codePostal": "27890", + "codeCommune": "27432", + "libelleAcheminement": "LA NEUVILLE DU BOSC", + "nomCommune": "LA NEUVILLE DU BOSC" }, { - "codePostal": "62860", - "codeCommune": "62728", - "libelleAcheminement": "RUMAUCOURT", - "nomCommune": "RUMAUCOURT" + "codePostal": "38550", + "codeCommune": "38101", + "libelleAcheminement": "CHEYSSIEU", + "nomCommune": "CHEYSSIEU" }, { - "codePostal": "20219", - "codeCommune": "2B354", - "libelleAcheminement": "VIVARIO", - "nomCommune": "VIVARIO" + "codePostal": "38390", + "codeCommune": "38026", + "libelleAcheminement": "LA BALME LES GROTTES", + "nomCommune": "LA BALME LES GROTTES" }, { - "codePostal": "55000", - "codeCommune": "55298", - "libelleAcheminement": "LOISEY", - "nomCommune": "LOISEY" + "codePostal": "26150", + "codeCommune": "26205", + "libelleAcheminement": "MONTMAUR EN DIOIS", + "nomCommune": "MONTMAUR EN DIOIS" }, { - "codePostal": "68850", - "codeCommune": "68321", - "libelleAcheminement": "STAFFELFELDEN", - "nomCommune": "STAFFELFELDEN" + "codePostal": "27560", + "codeCommune": "27435", + "libelleAcheminement": "LA NOE POULAIN", + "nomCommune": "LA NOE POULAIN" }, { - "codePostal": "62124", - "codeCommune": "62731", - "libelleAcheminement": "RUYAULCOURT", - "nomCommune": "RUYAULCOURT" + "codePostal": "38930", + "codeCommune": "38103", + "libelleAcheminement": "CHICHILIANNE", + "nomCommune": "CHICHILIANNE" }, { - "codePostal": "20214", - "codeCommune": "2B361", - "libelleAcheminement": "ZILIA", - "nomCommune": "ZILIA" + "codePostal": "38140", + "codeCommune": "38030", + "libelleAcheminement": "BEAUCROISSANT", + "nomCommune": "BEAUCROISSANT" }, { - "codePostal": "55230", - "codeCommune": "55299", - "libelleAcheminement": "LOISON", - "nomCommune": "LOISON" + "codePostal": "26800", + "codeCommune": "26208", + "libelleAcheminement": "MONTOISON", + "nomCommune": "MONTOISON" }, { - "codePostal": "68440", - "codeCommune": "68323", - "libelleAcheminement": "STEINBRUNN LE BAS", - "nomCommune": "STEINBRUNN LE BAS" + "codePostal": "27150", + "codeCommune": "27437", + "libelleAcheminement": "NOJEON EN VEXIN", + "nomCommune": "NOJEON EN VEXIN" }, { - "codePostal": "62111", - "codeCommune": "62733", - "libelleAcheminement": "SAILLY AU BOIS", - "nomCommune": "SAILLY AU BOIS" + "codePostal": "38690", + "codeCommune": "38118", + "libelleAcheminement": "COLOMBE", + "nomCommune": "COLOMBE" }, { - "codePostal": "20272", - "codeCommune": "2B364", - "libelleAcheminement": "ZUANI", - "nomCommune": "ZUANI" + "codePostal": "38440", + "codeCommune": "38035", + "libelleAcheminement": "BEAUVOIR DE MARC", + "nomCommune": "BEAUVOIR DE MARC" }, { - "codePostal": "55500", - "codeCommune": "55300", - "libelleAcheminement": "LONGEAUX", - "nomCommune": "LONGEAUX" + "codePostal": "26510", + "codeCommune": "26209", + "libelleAcheminement": "MONTREAL LES SOURCES", + "nomCommune": "MONTREAL LES SOURCES" }, { - "codePostal": "68580", - "codeCommune": "68330", - "libelleAcheminement": "STRUETH", - "nomCommune": "STRUETH" + "codePostal": "27190", + "codeCommune": "27447", + "libelleAcheminement": "LE VAL DORE", + "nomCommune": "LE VAL DORE" }, { - "codePostal": "62490", - "codeCommune": "62734", - "libelleAcheminement": "SAILLY EN OSTREVENT", - "nomCommune": "SAILLY EN OSTREVENT" + "codePostal": "38710", + "codeCommune": "38127", + "libelleAcheminement": "CORNILLON EN TRIEVES", + "nomCommune": "CORNILLON EN TRIEVES" }, { - "codePostal": "30100", - "codeCommune": "30007", - "libelleAcheminement": "ALES", - "nomCommune": "ALES" + "codePostal": "38690", + "codeCommune": "38038", + "libelleAcheminement": "BELMONT", + "nomCommune": "BELMONT" }, { - "codePostal": "55260", - "codeCommune": "55301", - "libelleAcheminement": "LONGCHAMPS SUR AIRE", - "nomCommune": "LONGCHAMPS SUR AIRE" + "codePostal": "26130", + "codeCommune": "26211", + "libelleAcheminement": "MONTSEGUR SUR LAUZON", + "nomCommune": "MONTSEGUR SUR LAUZON" }, { - "codePostal": "01300", - "codeCommune": "01006", - "libelleAcheminement": "AMBLEON", - "nomCommune": "AMBLEON" + "codePostal": "27180", + "codeCommune": "27451", + "libelleAcheminement": "PARVILLE", + "nomCommune": "PARVILLE" }, { - "codePostal": "62860", - "codeCommune": "62739", - "libelleAcheminement": "SAINS LES MARQUION", - "nomCommune": "SAINS LES MARQUION" + "codePostal": "38250", + "codeCommune": "38129", + "libelleAcheminement": "CORRENCON EN VERCORS", + "nomCommune": "CORRENCON EN VERCORS" }, { - "codePostal": "30700", - "codeCommune": "30014", - "libelleAcheminement": "ARPAILLARGUES ET AUREILLAC", - "nomCommune": "ARPAILLARGUES ET AUREILLAC" + "codePostal": "38730", + "codeCommune": "38047", + "libelleAcheminement": "BLANDIN", + "nomCommune": "BLANDIN" }, { - "codePostal": "55700", - "codeCommune": "55310", - "libelleAcheminement": "LUZY ST MARTIN", - "nomCommune": "LUZY ST MARTIN" + "codePostal": "26210", + "codeCommune": "26213", + "libelleAcheminement": "MORAS EN VALLOIRE", + "nomCommune": "MORAS EN VALLOIRE" }, { - "codePostal": "01500", - "codeCommune": "01007", - "libelleAcheminement": "AMBRONAY", - "nomCommune": "AMBRONAY" + "codePostal": "27300", + "codeCommune": "27460", + "libelleAcheminement": "PLAINVILLE", + "nomCommune": "PLAINVILLE" }, { - "codePostal": "62370", - "codeCommune": "62748", - "libelleAcheminement": "ST FOLQUIN", - "nomCommune": "ST FOLQUIN" + "codePostal": "38970", + "codeCommune": "38132", + "libelleAcheminement": "LES COTES DE CORPS", + "nomCommune": "LES COTES DE CORPS" }, { - "codePostal": "30120", - "codeCommune": "30015", - "libelleAcheminement": "ARPHY", - "nomCommune": "ARPHY" + "codePostal": "38090", + "codeCommune": "38048", + "libelleAcheminement": "BONNEFAMILLE", + "nomCommune": "BONNEFAMILLE" }, { - "codePostal": "55270", - "codeCommune": "55313", - "libelleAcheminement": "MALANCOURT", - "nomCommune": "MALANCOURT" + "codePostal": "26460", + "codeCommune": "26214", + "libelleAcheminement": "MORNANS", + "nomCommune": "MORNANS" }, { - "codePostal": "01100", - "codeCommune": "01014", - "libelleAcheminement": "ARBENT", - "nomCommune": "ARBENT" + "codePostal": "27500", + "codeCommune": "27467", + "libelleAcheminement": "PONT AUDEMER", + "nomCommune": "PONT AUDEMER" }, { - "codePostal": "62128", - "codeCommune": "62754", - "libelleAcheminement": "ST LEGER", - "nomCommune": "ST LEGER" + "codePostal": "38460", + "codeCommune": "38138", + "libelleAcheminement": "CREMIEU", + "nomCommune": "CREMIEU" }, { - "codePostal": "30120", - "codeCommune": "30016", - "libelleAcheminement": "ARRE", - "nomCommune": "ARRE" + "codePostal": "38510", + "codeCommune": "38055", + "libelleAcheminement": "BRANGUES", + "nomCommune": "BRANGUES" }, { - "codePostal": "55700", - "codeCommune": "55323", - "libelleAcheminement": "MARTINCOURT SUR MEUSE", - "nomCommune": "MARTINCOURT SUR MEUSE" + "codePostal": "26470", + "codeCommune": "26215", + "libelleAcheminement": "LA MOTTE CHALANCON", + "nomCommune": "LA MOTTE CHALANCON" }, { - "codePostal": "01300", - "codeCommune": "01015", - "libelleAcheminement": "ARBOYS EN BUGEY", - "nomCommune": "ARBOYS EN BUGEY" + "codePostal": "27500", + "codeCommune": "27467", + "libelleAcheminement": "PONT AUDEMER", + "nomCommune": "PONT AUDEMER" }, { - "codePostal": "62360", - "codeCommune": "62755", - "libelleAcheminement": "ST LEONARD", - "nomCommune": "ST LEONARD" + "codePostal": "38510", + "codeCommune": "38139", + "libelleAcheminement": "CREYS MEPIEU", + "nomCommune": "CREYS MEPIEU" }, { - "codePostal": "30250", - "codeCommune": "30023", - "libelleAcheminement": "AUJARGUES", - "nomCommune": "AUJARGUES" + "codePostal": "38870", + "codeCommune": "38056", + "libelleAcheminement": "BRESSIEUX", + "nomCommune": "BRESSIEUX" }, { - "codePostal": "55600", - "codeCommune": "55324", - "libelleAcheminement": "MARVILLE", - "nomCommune": "MARVILLE" + "codePostal": "26240", + "codeCommune": "26216", + "libelleAcheminement": "ST JEAN DE GALAURE", + "nomCommune": "ST JEAN DE GALAURE" }, { - "codePostal": "01190", - "codeCommune": "01016", - "libelleAcheminement": "ARBIGNY", - "nomCommune": "ARBIGNY" + "codePostal": "27340", + "codeCommune": "27469", + "libelleAcheminement": "PONT DE L ARCHE", + "nomCommune": "PONT DE L ARCHE" }, { - "codePostal": "62130", - "codeCommune": "62767", - "libelleAcheminement": "ST POL SUR TERNOISE", - "nomCommune": "ST POL SUR TERNOISE" + "codePostal": "38300", + "codeCommune": "38141", + "libelleAcheminement": "CULIN", + "nomCommune": "CULIN" }, { - "codePostal": "30160", - "codeCommune": "30037", - "libelleAcheminement": "BESSEGES", - "nomCommune": "BESSEGES" + "codePostal": "38320", + "codeCommune": "38057", + "libelleAcheminement": "BRESSON", + "nomCommune": "BRESSON" }, { - "codePostal": "55140", - "codeCommune": "55328", - "libelleAcheminement": "MAXEY SUR VAISE", - "nomCommune": "MAXEY SUR VAISE" + "codePostal": "26540", + "codeCommune": "26218", + "libelleAcheminement": "MOURS ST EUSEBE", + "nomCommune": "MOURS ST EUSEBE" }, { - "codePostal": "01380", - "codeCommune": "01026", - "libelleAcheminement": "BAGE LE CHATEL", - "nomCommune": "BAGE LE CHATEL" + "codePostal": "27100", + "codeCommune": "27471", + "libelleAcheminement": "PORTE DE SEINE", + "nomCommune": "PORTE DE SEINE" }, { - "codePostal": "62850", - "codeCommune": "62775", - "libelleAcheminement": "SANGHEN", - "nomCommune": "SANGHEN" + "codePostal": "38790", + "codeCommune": "38144", + "libelleAcheminement": "DIEMOZ", + "nomCommune": "DIEMOZ" }, { - "codePostal": "30580", - "codeCommune": "30048", - "libelleAcheminement": "BOUQUET", - "nomCommune": "BOUQUET" + "codePostal": "38530", + "codeCommune": "38062", + "libelleAcheminement": "LA BUISSIERE", + "nomCommune": "LA BUISSIERE" }, { - "codePostal": "55300", - "codeCommune": "55329", - "libelleAcheminement": "MECRIN", - "nomCommune": "MECRIN" + "codePostal": "26120", + "codeCommune": "26224", + "libelleAcheminement": "OURCHES", + "nomCommune": "OURCHES" }, { - "codePostal": "01360", - "codeCommune": "01027", - "libelleAcheminement": "BALAN", - "nomCommune": "BALAN" + "codePostal": "27740", + "codeCommune": "27474", + "libelleAcheminement": "POSES", + "nomCommune": "POSES" }, { - "codePostal": "62121", - "codeCommune": "62776", - "libelleAcheminement": "SAPIGNIES", - "nomCommune": "SAPIGNIES" + "codePostal": "38360", + "codeCommune": "38153", + "libelleAcheminement": "ENGINS", + "nomCommune": "ENGINS" }, { - "codePostal": "30210", - "codeCommune": "30057", - "libelleAcheminement": "CABRIERES", - "nomCommune": "CABRIERES" + "codePostal": "38110", + "codeCommune": "38064", + "libelleAcheminement": "CESSIEU", + "nomCommune": "CESSIEU" }, { - "codePostal": "55190", - "codeCommune": "55330", - "libelleAcheminement": "MELIGNY LE GRAND", - "nomCommune": "MELIGNY LE GRAND" + "codePostal": "26170", + "codeCommune": "26236", + "libelleAcheminement": "PIERRELONGUE", + "nomCommune": "PIERRELONGUE" }, { - "codePostal": "01300", - "codeCommune": "01034", - "libelleAcheminement": "BELLEY", - "nomCommune": "BELLEY" + "codePostal": "27560", + "codeCommune": "27475", + "libelleAcheminement": "LA POTERIE MATHIEU", + "nomCommune": "LA POTERIE MATHIEU" }, { - "codePostal": "62450", - "codeCommune": "62777", - "libelleAcheminement": "LE SARS", - "nomCommune": "LE SARS" + "codePostal": "38780", + "codeCommune": "38160", + "libelleAcheminement": "EYZIN PINET", + "nomCommune": "EYZIN PINET" }, { - "codePostal": "30132", - "codeCommune": "30060", - "libelleAcheminement": "CAISSARGUES", - "nomCommune": "CAISSARGUES" + "codePostal": "38122", + "codeCommune": "38066", + "libelleAcheminement": "CHALON", + "nomCommune": "CHALON" }, { - "codePostal": "55500", - "codeCommune": "55332", - "libelleAcheminement": "MENAUCOURT", - "nomCommune": "MENAUCOURT" + "codePostal": "26110", + "codeCommune": "26238", + "libelleAcheminement": "LES PILLES", + "nomCommune": "LES PILLES" }, { - "codePostal": "01260", - "codeCommune": "01036", - "libelleAcheminement": "VALROMEY SUR SERAN", - "nomCommune": "VALROMEY SUR SERAN" + "codePostal": "27220", + "codeCommune": "27478", + "libelleAcheminement": "PREY", + "nomCommune": "PREY" }, { - "codePostal": "62760", - "codeCommune": "62779", - "libelleAcheminement": "SARTON", - "nomCommune": "SARTON" + "codePostal": "38290", + "codeCommune": "38176", + "libelleAcheminement": "FRONTONAS", + "nomCommune": "FRONTONAS" }, { - "codePostal": "30420", - "codeCommune": "30062", - "libelleAcheminement": "CALVISSON", - "nomCommune": "CALVISSON" + "codePostal": "38460", + "codeCommune": "38067", + "libelleAcheminement": "CHAMAGNIEU", + "nomCommune": "CHAMAGNIEU" }, { - "codePostal": "55150", - "codeCommune": "55336", - "libelleAcheminement": "MERLES SUR LOISON", - "nomCommune": "MERLES SUR LOISON" + "codePostal": "26450", + "codeCommune": "26258", + "libelleAcheminement": "PUY ST MARTIN", + "nomCommune": "PUY ST MARTIN" }, { - "codePostal": "01260", - "codeCommune": "01036", - "libelleAcheminement": "VALROMEY SUR SERAN", - "nomCommune": "VALROMEY SUR SERAN" + "codePostal": "27150", + "codeCommune": "27480", + "libelleAcheminement": "PUCHAY", + "nomCommune": "PUCHAY" }, { - "codePostal": "62860", - "codeCommune": "62781", - "libelleAcheminement": "SAUCHY LESTREE", - "nomCommune": "SAUCHY LESTREE" + "codePostal": "38520", + "codeCommune": "38177", + "libelleAcheminement": "LA GARDE", + "nomCommune": "LA GARDE" }, { - "codePostal": "30770", - "codeCommune": "30064", - "libelleAcheminement": "CAMPESTRE ET LUC", - "nomCommune": "CAMPESTRE ET LUC" + "codePostal": "38460", + "codeCommune": "38067", + "libelleAcheminement": "CHAMAGNIEU", + "nomCommune": "CHAMAGNIEU" }, { - "codePostal": "55150", - "codeCommune": "55341", - "libelleAcheminement": "MOIREY FLABAS CREPION", - "nomCommune": "MOIREY FLABAS CREPION" + "codePostal": "26230", + "codeCommune": "26261", + "libelleAcheminement": "REAUVILLE", + "nomCommune": "REAUVILLE" }, { - "codePostal": "01470", - "codeCommune": "01037", - "libelleAcheminement": "BENONCES", - "nomCommune": "BENONCES" + "codePostal": "27130", + "codeCommune": "27481", + "libelleAcheminement": "PULLAY", + "nomCommune": "PULLAY" }, { - "codePostal": "62158", - "codeCommune": "62784", - "libelleAcheminement": "SAULTY", - "nomCommune": "SAULTY" + "codePostal": "38750", + "codeCommune": "38191", + "libelleAcheminement": "HUEZ", + "nomCommune": "HUEZ" }, { - "codePostal": "30350", - "codeCommune": "30065", - "libelleAcheminement": "CANAULES ET ARGENTIERES", - "nomCommune": "CANAULES ET ARGENTIERES" + "codePostal": "38560", + "codeCommune": "38071", + "libelleAcheminement": "CHAMP SUR DRAC", + "nomCommune": "CHAMP SUR DRAC" }, { - "codePostal": "55270", - "codeCommune": "55343", - "libelleAcheminement": "MONTBLAINVILLE", - "nomCommune": "MONTBLAINVILLE" + "codePostal": "26310", + "codeCommune": "26262", + "libelleAcheminement": "RECOUBEAU JANSAC", + "nomCommune": "RECOUBEAU JANSAC" }, { - "codePostal": "01350", - "codeCommune": "01039", - "libelleAcheminement": "BEON", - "nomCommune": "BEON" + "codePostal": "27370", + "codeCommune": "27482", + "libelleAcheminement": "LA PYLE", + "nomCommune": "LA PYLE" }, { - "codePostal": "62380", - "codeCommune": "62788", - "libelleAcheminement": "SENINGHEM", - "nomCommune": "SENINGHEM" + "codePostal": "38570", + "codeCommune": "38192", + "libelleAcheminement": "HURTIERES", + "nomCommune": "HURTIERES" }, { - "codePostal": "30350", - "codeCommune": "30068", - "libelleAcheminement": "CARDET", - "nomCommune": "CARDET" + "codePostal": "38470", + "codeCommune": "38074", + "libelleAcheminement": "CHANTESSE", + "nomCommune": "CHANTESSE" }, { - "codePostal": "55600", - "codeCommune": "55351", - "libelleAcheminement": "MONTMEDY", - "nomCommune": "MONTMEDY" + "codePostal": "26160", + "codeCommune": "26268", + "libelleAcheminement": "ROCHEBAUDIN", + "nomCommune": "ROCHEBAUDIN" }, { - "codePostal": "01380", - "codeCommune": "01050", - "libelleAcheminement": "BOISSEY", - "nomCommune": "BOISSEY" + "codePostal": "27400", + "codeCommune": "27483", + "libelleAcheminement": "QUATREMARE", + "nomCommune": "QUATREMARE" }, { - "codePostal": "62910", - "codeCommune": "62792", - "libelleAcheminement": "SERQUES", - "nomCommune": "SERQUES" + "codePostal": "38080", + "codeCommune": "38193", + "libelleAcheminement": "L ISLE D ABEAU", + "nomCommune": "L ISLE D ABEAU" }, { - "codePostal": "30920", - "codeCommune": "30083", - "libelleAcheminement": "CODOGNAN", - "nomCommune": "CODOGNAN" + "codePostal": "38110", + "codeCommune": "38076", + "libelleAcheminement": "LA CHAPELLE DE LA TOUR", + "nomCommune": "LA CHAPELLE DE LA TOUR" }, { - "codePostal": "55110", - "codeCommune": "55365", - "libelleAcheminement": "MURVAUX", - "nomCommune": "MURVAUX" + "codePostal": "26770", + "codeCommune": "26276", + "libelleAcheminement": "ROCHE ST SECRET BECONNE", + "nomCommune": "ROCHE ST SECRET BECONNE" }, { - "codePostal": "01360", - "codeCommune": "01062", - "libelleAcheminement": "BRESSOLLES", - "nomCommune": "BRESSOLLES" + "codePostal": "27680", + "codeCommune": "27485", + "libelleAcheminement": "QUILLEBEUF SUR SEINE", + "nomCommune": "QUILLEBEUF SUR SEINE" }, { - "codePostal": "62530", - "codeCommune": "62793", - "libelleAcheminement": "SERVINS", - "nomCommune": "SERVINS" + "codePostal": "38190", + "codeCommune": "38206", + "libelleAcheminement": "LAVAL EN BELLEDONNE", + "nomCommune": "LAVAL EN BELLEDONNE" }, { - "codePostal": "30140", - "codeCommune": "30094", - "libelleAcheminement": "CORBES", - "nomCommune": "CORBES" + "codePostal": "38150", + "codeCommune": "38077", + "libelleAcheminement": "LA CHAPELLE DE SURIEU", + "nomCommune": "LA CHAPELLE DE SURIEU" }, { - "codePostal": "55000", - "codeCommune": "55366", - "libelleAcheminement": "VAL D ORNAIN", - "nomCommune": "VAL D ORNAIN" + "codePostal": "26100", + "codeCommune": "26281", + "libelleAcheminement": "ROMANS SUR ISERE", + "nomCommune": "ROMANS SUR ISERE" }, { - "codePostal": "01460", - "codeCommune": "01063", - "libelleAcheminement": "BRION", - "nomCommune": "BRION" + "codePostal": "27350", + "codeCommune": "27497", + "libelleAcheminement": "ROUGEMONTIERS", + "nomCommune": "ROUGEMONTIERS" }, { - "codePostal": "62380", - "codeCommune": "62794", - "libelleAcheminement": "SETQUES", - "nomCommune": "SETQUES" + "codePostal": "38350", + "codeCommune": "38207", + "libelleAcheminement": "LAVALDENS", + "nomCommune": "LAVALDENS" }, { - "codePostal": "30170", - "codeCommune": "30099", - "libelleAcheminement": "CROS", - "nomCommune": "CROS" + "codePostal": "38790", + "codeCommune": "38081", + "libelleAcheminement": "CHARANTONNAY", + "nomCommune": "CHARANTONNAY" }, { - "codePostal": "55000", - "codeCommune": "55369", - "libelleAcheminement": "NAIVES ROSIERES", - "nomCommune": "NAIVES ROSIERES" + "codePostal": "26470", + "codeCommune": "26283", + "libelleAcheminement": "ROTTIER", + "nomCommune": "ROTTIER" }, { - "codePostal": "01430", - "codeCommune": "01067", - "libelleAcheminement": "CEIGNES", - "nomCommune": "CEIGNES" + "codePostal": "27120", + "codeCommune": "27501", + "libelleAcheminement": "ROUVRAY", + "nomCommune": "ROUVRAY" }, { - "codePostal": "62123", - "codeCommune": "62796", - "libelleAcheminement": "SIMENCOURT", - "nomCommune": "SIMENCOURT" + "codePostal": "38710", + "codeCommune": "38208", + "libelleAcheminement": "LAVARS", + "nomCommune": "LAVARS" }, { - "codePostal": "30360", - "codeCommune": "30101", - "libelleAcheminement": "DEAUX", - "nomCommune": "DEAUX" + "codePostal": "38680", + "codeCommune": "38092", + "libelleAcheminement": "CHATELUS", + "nomCommune": "CHATELUS" }, { - "codePostal": "55700", - "codeCommune": "55377", - "libelleAcheminement": "NEPVANT", - "nomCommune": "NEPVANT" + "codePostal": "26510", + "codeCommune": "26286", + "libelleAcheminement": "ROUSSIEUX", + "nomCommune": "ROUSSIEUX" }, { - "codePostal": "01450", - "codeCommune": "01068", - "libelleAcheminement": "CERDON", - "nomCommune": "CERDON" + "codePostal": "27110", + "codeCommune": "27511", + "libelleAcheminement": "ST AUBIN D ECROSVILLE", + "nomCommune": "ST AUBIN D ECROSVILLE" }, { - "codePostal": "62153", - "codeCommune": "62801", - "libelleAcheminement": "SOUCHEZ", - "nomCommune": "SOUCHEZ" + "codePostal": "38440", + "codeCommune": "38211", + "libelleAcheminement": "LIEUDIEU", + "nomCommune": "LIEUDIEU" }, { - "codePostal": "30350", - "codeCommune": "30104", - "libelleAcheminement": "DOMESSARGUES", - "nomCommune": "DOMESSARGUES" + "codePostal": "38440", + "codeCommune": "38094", + "libelleAcheminement": "CHATONNAY", + "nomCommune": "CHATONNAY" }, { - "codePostal": "55260", - "codeCommune": "55380", - "libelleAcheminement": "NEUVILLE EN VERDUNOIS", - "nomCommune": "NEUVILLE EN VERDUNOIS" + "codePostal": "26170", + "codeCommune": "26292", + "libelleAcheminement": "ST AUBAN SUR L OUVEZE", + "nomCommune": "ST AUBAN SUR L OUVEZE" }, { - "codePostal": "01240", - "codeCommune": "01069", - "libelleAcheminement": "CERTINES", - "nomCommune": "CERTINES" + "codePostal": "27270", + "codeCommune": "27516", + "libelleAcheminement": "TREIS SANTS EN OUCHE", + "nomCommune": "TREIS SANTS EN OUCHE" }, { - "codePostal": "62850", - "codeCommune": "62803", - "libelleAcheminement": "SURQUES", - "nomCommune": "SURQUES" + "codePostal": "38220", + "codeCommune": "38212", + "libelleAcheminement": "LIVET ET GAVET", + "nomCommune": "LIVET ET GAVET" }, { - "codePostal": "30170", - "codeCommune": "30106", - "libelleAcheminement": "DURFORT ET ST MARTIN DE SOSSENAC", - "nomCommune": "DURFORT ET ST MARTIN DE SOSSENAC" + "codePostal": "38300", + "codeCommune": "38102", + "libelleAcheminement": "CHEZENEUVE", + "nomCommune": "CHEZENEUVE" }, { - "codePostal": "55800", - "codeCommune": "55382", - "libelleAcheminement": "NEUVILLE SUR ORNAIN", - "nomCommune": "NEUVILLE SUR ORNAIN" + "codePostal": "26330", + "codeCommune": "26293", + "libelleAcheminement": "ST AVIT", + "nomCommune": "ST AVIT" }, { - "codePostal": "01170", - "codeCommune": "01071", - "libelleAcheminement": "CESSY", - "nomCommune": "CESSY" + "codePostal": "27110", + "codeCommune": "27524", + "libelleAcheminement": "STE COLOMBE LA COMMANDERIE", + "nomCommune": "STE COLOMBE LA COMMANDERIE" }, { - "codePostal": "62179", - "codeCommune": "62806", - "libelleAcheminement": "TARDINGHEN", - "nomCommune": "TARDINGHEN" + "codePostal": "38470", + "codeCommune": "38216", + "libelleAcheminement": "MALLEVAL EN VERCORS", + "nomCommune": "MALLEVAL EN VERCORS" }, { - "codePostal": "30700", - "codeCommune": "30110", - "libelleAcheminement": "FLAUX", - "nomCommune": "FLAUX" + "codePostal": "38490", + "codeCommune": "38104", + "libelleAcheminement": "CHIMILIN", + "nomCommune": "CHIMILIN" }, { - "codePostal": "55260", - "codeCommune": "55384", - "libelleAcheminement": "NICEY SUR AIRE", - "nomCommune": "NICEY SUR AIRE" + "codePostal": "26240", + "codeCommune": "26295", + "libelleAcheminement": "ST BARTHELEMY DE VALS", + "nomCommune": "ST BARTHELEMY DE VALS" }, { - "codePostal": "01350", - "codeCommune": "01073", - "libelleAcheminement": "CEYZERIEU", - "nomCommune": "CEYZERIEU" + "codePostal": "27140", + "codeCommune": "27533", + "libelleAcheminement": "ST DENIS LE FERMENT", + "nomCommune": "ST DENIS LE FERMENT" }, { - "codePostal": "62134", - "codeCommune": "62808", - "libelleAcheminement": "TENEUR", - "nomCommune": "TENEUR" + "codePostal": "38980", + "codeCommune": "38221", + "libelleAcheminement": "MARNANS", + "nomCommune": "MARNANS" }, { - "codePostal": "30730", - "codeCommune": "30112", - "libelleAcheminement": "FONS", - "nomCommune": "FONS" + "codePostal": "38460", + "codeCommune": "38109", + "libelleAcheminement": "CHOZEAU", + "nomCommune": "CHOZEAU" }, { - "codePostal": "55250", - "codeCommune": "55389", - "libelleAcheminement": "NUBECOURT", - "nomCommune": "NUBECOURT" + "codePostal": "26150", + "codeCommune": "26299", + "libelleAcheminement": "STE CROIX", + "nomCommune": "STE CROIX" }, { - "codePostal": "01320", - "codeCommune": "01074", - "libelleAcheminement": "CHALAMONT", - "nomCommune": "CHALAMONT" + "codePostal": "27800", + "codeCommune": "27536", + "libelleAcheminement": "ST ELOI DE FOURQUES", + "nomCommune": "ST ELOI DE FOURQUES" }, { - "codePostal": "62130", - "codeCommune": "62813", - "libelleAcheminement": "LA THIEULOYE", - "nomCommune": "LA THIEULOYE" + "codePostal": "38620", + "codeCommune": "38222", + "libelleAcheminement": "MASSIEU", + "nomCommune": "MASSIEU" }, { - "codePostal": "30300", - "codeCommune": "30117", - "libelleAcheminement": "FOURQUES", - "nomCommune": "FOURQUES" + "codePostal": "38142", + "codeCommune": "38112", + "libelleAcheminement": "CLAVANS EN HAUT OISANS", + "nomCommune": "CLAVANS EN HAUT OISANS" }, { - "codePostal": "55250", - "codeCommune": "55389", - "libelleAcheminement": "NUBECOURT", - "nomCommune": "NUBECOURT" + "codePostal": "26420", + "codeCommune": "26309", + "libelleAcheminement": "ST JULIEN EN VERCORS", + "nomCommune": "ST JULIEN EN VERCORS" }, { - "codePostal": "01230", - "codeCommune": "01076", - "libelleAcheminement": "CHALEY", - "nomCommune": "CHALEY" + "codePostal": "27230", + "codeCommune": "27547", + "libelleAcheminement": "ST GERMAIN LA CAMPAGNE", + "nomCommune": "ST GERMAIN LA CAMPAGNE" }, { - "codePostal": "62760", - "codeCommune": "62814", - "libelleAcheminement": "THIEVRES", - "nomCommune": "THIEVRES" + "codePostal": "38880", + "codeCommune": "38225", + "libelleAcheminement": "AUTRANS MEAUDRE EN VERCORS", + "nomCommune": "AUTRANS MEAUDRE EN VERCORS" }, { - "codePostal": "30170", - "codeCommune": "30119", - "libelleAcheminement": "FRESSAC", - "nomCommune": "FRESSAC" + "codePostal": "38930", + "codeCommune": "38113", + "libelleAcheminement": "CLELLES EN TRIEVES", + "nomCommune": "CLELLES" }, { - "codePostal": "55190", - "codeCommune": "55396", - "libelleAcheminement": "OURCHES SUR MEUSE", - "nomCommune": "OURCHES SUR MEUSE" + "codePostal": "26740", + "codeCommune": "26312", + "libelleAcheminement": "ST MARCEL LES SAUZET", + "nomCommune": "ST MARCEL LES SAUZET" }, { - "codePostal": "01450", - "codeCommune": "01077", - "libelleAcheminement": "CHALLES LA MONTAGNE", - "nomCommune": "CHALLES LA MONTAGNE" + "codePostal": "27320", + "codeCommune": "27548", + "libelleAcheminement": "ST GERMAIN SUR AVRE", + "nomCommune": "ST GERMAIN SUR AVRE" }, { - "codePostal": "62690", - "codeCommune": "62816", - "libelleAcheminement": "TILLOY LES HERMAVILLE", - "nomCommune": "TILLOY LES HERMAVILLE" + "codePostal": "38710", + "codeCommune": "38226", + "libelleAcheminement": "MENS", + "nomCommune": "MENS" }, { - "codePostal": "30260", - "codeCommune": "30121", - "libelleAcheminement": "GAILHAN", - "nomCommune": "GAILHAN" + "codePostal": "38550", + "codeCommune": "38114", + "libelleAcheminement": "CLONAS SUR VAREZE", + "nomCommune": "CLONAS SUR VAREZE" }, { - "codePostal": "55160", - "codeCommune": "55406", - "libelleAcheminement": "PINTHEVILLE", - "nomCommune": "PINTHEVILLE" + "codePostal": "26770", + "codeCommune": "26322", + "libelleAcheminement": "ST PANTALEON LES VIGNES", + "nomCommune": "ST PANTALEON LES VIGNES" }, { - "codePostal": "01110", - "codeCommune": "01080", - "libelleAcheminement": "CHAMPDOR CORCELLES", - "nomCommune": "CHAMPDOR CORCELLES" + "codePostal": "27270", + "codeCommune": "27552", + "libelleAcheminement": "ST JEAN DU THENNEY", + "nomCommune": "ST JEAN DU THENNEY" }, { - "codePostal": "62217", - "codeCommune": "62817", - "libelleAcheminement": "TILLOY LES MOFFLAINES", - "nomCommune": "TILLOY LES MOFFLAINES" + "codePostal": "38240", + "codeCommune": "38229", + "libelleAcheminement": "MEYLAN", + "nomCommune": "MEYLAN" }, { - "codePostal": "30730", - "codeCommune": "30122", - "libelleAcheminement": "GAJAN", - "nomCommune": "GAJAN" + "codePostal": "38700", + "codeCommune": "38126", + "libelleAcheminement": "CORENC", + "nomCommune": "CORENC" }, { - "codePostal": "55200", - "codeCommune": "55407", - "libelleAcheminement": "PONT SUR MEUSE", - "nomCommune": "PONT SUR MEUSE" + "codePostal": "26110", + "codeCommune": "26329", + "libelleAcheminement": "ST SAUVEUR GOUVERNET", + "nomCommune": "ST SAUVEUR GOUVERNET" }, { - "codePostal": "01800", - "codeCommune": "01088", - "libelleAcheminement": "CHARNOZ SUR AIN", - "nomCommune": "CHARNOZ SUR AIN" + "codePostal": "27950", + "codeCommune": "27554", + "libelleAcheminement": "LA CHAPELLE LONGUEVILLE", + "nomCommune": "LA CHAPELLE LONGUEVILLE" }, { - "codePostal": "62520", - "codeCommune": "62826", - "libelleAcheminement": "LE TOUQUET PARIS PLAGE", - "nomCommune": "LE TOUQUET PARIS PLAGE" + "codePostal": "38450", + "codeCommune": "38235", + "libelleAcheminement": "MIRIBEL LANCHATRE", + "nomCommune": "MIRIBEL LANCHATRE" }, { - "codePostal": "30300", - "codeCommune": "30135", - "libelleAcheminement": "JONQUIERES ST VINCENT", - "nomCommune": "JONQUIERES ST VINCENT" + "codePostal": "38500", + "codeCommune": "38133", + "libelleAcheminement": "COUBLEVIE", + "nomCommune": "COUBLEVIE" }, { - "codePostal": "55220", - "codeCommune": "55411", - "libelleAcheminement": "RAMBLUZIN ET BENOITE VAUX", - "nomCommune": "RAMBLUZIN ET BENOITE VAUX" + "codePostal": "26740", + "codeCommune": "26338", + "libelleAcheminement": "SAUZET", + "nomCommune": "SAUZET" }, { - "codePostal": "01500", - "codeCommune": "01089", - "libelleAcheminement": "CHATEAU GAILLARD", - "nomCommune": "CHATEAU GAILLARD" + "codePostal": "27950", + "codeCommune": "27554", + "libelleAcheminement": "LA CHAPELLE LONGUEVILLE", + "nomCommune": "LA CHAPELLE LONGUEVILLE" }, { - "codePostal": "62450", - "codeCommune": "62829", - "libelleAcheminement": "LE TRANSLOY", - "nomCommune": "LE TRANSLOY" + "codePostal": "38270", + "codeCommune": "38240", + "libelleAcheminement": "MOISSIEU SUR DOLON", + "nomCommune": "MOISSIEU SUR DOLON" }, { - "codePostal": "30250", - "codeCommune": "30136", - "libelleAcheminement": "JUNAS", - "nomCommune": "JUNAS" + "codePostal": "38300", + "codeCommune": "38136", + "libelleAcheminement": "CRACHIER", + "nomCommune": "CRACHIER" }, { - "codePostal": "55300", - "codeCommune": "55415", - "libelleAcheminement": "RANZIERES", - "nomCommune": "RANZIERES" + "codePostal": "26160", + "codeCommune": "26343", + "libelleAcheminement": "SOUSPIERRE", + "nomCommune": "SOUSPIERRE" }, { - "codePostal": "01250", - "codeCommune": "01095", - "libelleAcheminement": "NIVIGNE ET SURAN", - "nomCommune": "NIVIGNE ET SURAN" + "codePostal": "27300", + "codeCommune": "27557", + "libelleAcheminement": "ST LEGER DE ROTES", + "nomCommune": "ST LEGER DE ROTES" }, { - "codePostal": "62140", - "codeCommune": "62834", - "libelleAcheminement": "VACQUERIETTE ERQUIERES", - "nomCommune": "VACQUERIETTE ERQUIERES" + "codePostal": "38970", + "codeCommune": "38241", + "libelleAcheminement": "MONESTIER D AMBEL", + "nomCommune": "MONESTIER D AMBEL" }, { - "codePostal": "30980", - "codeCommune": "30138", - "libelleAcheminement": "LANGLADE", - "nomCommune": "LANGLADE" + "codePostal": "38920", + "codeCommune": "38140", + "libelleAcheminement": "CROLLES", + "nomCommune": "CROLLES" }, { - "codePostal": "55120", - "codeCommune": "55416", - "libelleAcheminement": "RARECOURT", - "nomCommune": "RARECOURT" + "codePostal": "26770", + "codeCommune": "26348", + "libelleAcheminement": "TAULIGNAN", + "nomCommune": "TAULIGNAN" }, { - "codePostal": "01300", - "codeCommune": "01098", - "libelleAcheminement": "CHAZEY BONS", - "nomCommune": "CHAZEY BONS" + "codePostal": "27520", + "codeCommune": "27558", + "libelleAcheminement": "ST LEGER DU GENNETEY", + "nomCommune": "ST LEGER DU GENNETEY" }, { - "codePostal": "62182", - "codeCommune": "62858", - "libelleAcheminement": "VILLERS LES CAGNICOURT", - "nomCommune": "VILLERS LES CAGNICOURT" + "codePostal": "38160", + "codeCommune": "38245", + "libelleAcheminement": "MONTAGNE", + "nomCommune": "MONTAGNE" }, { - "codePostal": "30760", - "codeCommune": "30143", - "libelleAcheminement": "LAVAL ST ROMAN", - "nomCommune": "LAVAL ST ROMAN" + "codePostal": "38460", + "codeCommune": "38146", + "libelleAcheminement": "DIZIMIEU", + "nomCommune": "DIZIMIEU" }, { - "codePostal": "55190", - "codeCommune": "55421", - "libelleAcheminement": "REFFROY", - "nomCommune": "REFFROY" + "codePostal": "26220", + "codeCommune": "26350", + "libelleAcheminement": "TEYSSIERES", + "nomCommune": "TEYSSIERES" }, { - "codePostal": "01190", - "codeCommune": "01102", - "libelleAcheminement": "CHEVROUX", - "nomCommune": "CHEVROUX" + "codePostal": "27210", + "codeCommune": "27561", + "libelleAcheminement": "ST MACLOU", + "nomCommune": "ST MACLOU" }, { - "codePostal": "62127", - "codeCommune": "62860", - "libelleAcheminement": "VILLERS SIR SIMON", - "nomCommune": "VILLERS SIR SIMON" + "codePostal": "38620", + "codeCommune": "38256", + "libelleAcheminement": "MONTFERRAT", + "nomCommune": "MONTFERRAT" }, { - "codePostal": "30610", - "codeCommune": "30150", - "libelleAcheminement": "LOGRIAN FLORIAN", - "nomCommune": "LOGRIAN FLORIAN" + "codePostal": "38130", + "codeCommune": "38151", + "libelleAcheminement": "ECHIROLLES", + "nomCommune": "ECHIROLLES" }, { - "codePostal": "55600", - "codeCommune": "55425", - "libelleAcheminement": "REMOIVILLE", - "nomCommune": "REMOIVILLE" + "codePostal": "26740", + "codeCommune": "26353", + "libelleAcheminement": "LES TOURRETTES", + "nomCommune": "LES TOURRETTES" }, { - "codePostal": "01410", - "codeCommune": "01104", - "libelleAcheminement": "CHEZERY FORENS", - "nomCommune": "CHEZERY FORENS" + "codePostal": "27150", + "codeCommune": "27567", + "libelleAcheminement": "STE MARIE DE VATIMESNIL", + "nomCommune": "STE MARIE DE VATIMESNIL" }, { - "codePostal": "62770", - "codeCommune": "62872", - "libelleAcheminement": "WAMIN", - "nomCommune": "WAMIN" + "codePostal": "38122", + "codeCommune": "38259", + "libelleAcheminement": "MONTSEVEROUX", + "nomCommune": "MONTSEVEROUX" }, { - "codePostal": "30140", - "codeCommune": "30168", - "libelleAcheminement": "MIALET", - "nomCommune": "MIALET" + "codePostal": "38300", + "codeCommune": "38152", + "libelleAcheminement": "ECLOSE BADINIERES", + "nomCommune": "ECLOSE BADINIERES" }, { - "codePostal": "55130", - "codeCommune": "55436", - "libelleAcheminement": "LES ROISES", - "nomCommune": "LES ROISES" + "codePostal": "26120", + "codeCommune": "26358", + "libelleAcheminement": "UPIE", + "nomCommune": "UPIE" }, { - "codePostal": "01250", - "codeCommune": "01106", - "libelleAcheminement": "CIZE", - "nomCommune": "CIZE" + "codePostal": "27190", + "codeCommune": "27568", + "libelleAcheminement": "STE MARTHE", + "nomCommune": "STE MARTHE" }, { - "codePostal": "62123", - "codeCommune": "62878", - "libelleAcheminement": "WARLUS", - "nomCommune": "WARLUS" + "codePostal": "38580", + "codeCommune": "38268", + "libelleAcheminement": "LE MOUTARET", + "nomCommune": "LE MOUTARET" }, { - "codePostal": "30410", - "codeCommune": "30171", - "libelleAcheminement": "MOLIERES SUR CEZE", - "nomCommune": "MOLIERES SUR CEZE" + "codePostal": "38740", + "codeCommune": "38154", + "libelleAcheminement": "ENTRAIGUES", + "nomCommune": "ENTRAIGUES" }, { - "codePostal": "55160", - "codeCommune": "55457", - "libelleAcheminement": "ST HILAIRE EN WOEVRE", - "nomCommune": "ST HILAIRE EN WOEVRE" + "codePostal": "26000", + "codeCommune": "26362", + "libelleAcheminement": "VALENCE", + "nomCommune": "VALENCE" }, { - "codePostal": "01300", - "codeCommune": "01110", - "libelleAcheminement": "COLOMIEU", - "nomCommune": "COLOMIEU" + "codePostal": "27300", + "codeCommune": "27569", + "libelleAcheminement": "ST MARTIN DU TILLEUL", + "nomCommune": "ST MARTIN DU TILLEUL" }, { - "codePostal": "62390", - "codeCommune": "62891", - "libelleAcheminement": "WILLENCOURT", - "nomCommune": "WILLENCOURT" + "codePostal": "38360", + "codeCommune": "38281", + "libelleAcheminement": "NOYAREY", + "nomCommune": "NOYAREY" }, { - "codePostal": "30700", - "codeCommune": "30174", - "libelleAcheminement": "MONTAREN ET ST MEDIERS", - "nomCommune": "MONTAREN ET ST MEDIERS" + "codePostal": "38780", + "codeCommune": "38157", + "libelleAcheminement": "ESTRABLIN", + "nomCommune": "ESTRABLIN" }, { - "codePostal": "55150", - "codeCommune": "55461", - "libelleAcheminement": "ST LAURENT SUR OTHAIN", - "nomCommune": "ST LAURENT SUR OTHAIN" + "codePostal": "26420", + "codeCommune": "26364", + "libelleAcheminement": "VASSIEUX EN VERCORS", + "nomCommune": "VASSIEUX EN VERCORS" }, { - "codePostal": "01400", - "codeCommune": "01113", - "libelleAcheminement": "CONDEISSIAT", - "nomCommune": "CONDEISSIAT" + "codePostal": "27110", + "codeCommune": "27576", + "libelleAcheminement": "STE OPPORTUNE DU BOSC", + "nomCommune": "STE OPPORTUNE DU BOSC" }, { - "codePostal": "62219", - "codeCommune": "62898", - "libelleAcheminement": "WISQUES", - "nomCommune": "WISQUES" + "codePostal": "38460", + "codeCommune": "38282", + "libelleAcheminement": "OPTEVOZ", + "nomCommune": "OPTEVOZ" }, { - "codePostal": "30490", - "codeCommune": "30179", - "libelleAcheminement": "MONTFRIN", - "nomCommune": "MONTFRIN" + "codePostal": "38260", + "codeCommune": "38161", + "libelleAcheminement": "FARAMANS", + "nomCommune": "FARAMANS" }, { - "codePostal": "55500", - "codeCommune": "55472", - "libelleAcheminement": "SAULVAUX", - "nomCommune": "SAULVAUX" + "codePostal": "26510", + "codeCommune": "26369", + "libelleAcheminement": "VERCLAUSE", + "nomCommune": "VERCLAUSE" }, { - "codePostal": "01420", - "codeCommune": "01118", - "libelleAcheminement": "CORBONOD", - "nomCommune": "CORBONOD" + "codePostal": "27680", + "codeCommune": "27577", + "libelleAcheminement": "STE OPPORTUNE LA MARE", + "nomCommune": "STE OPPORTUNE LA MARE" }, { - "codePostal": "63260", - "codeCommune": "63001", - "libelleAcheminement": "AIGUEPERSE", - "nomCommune": "AIGUEPERSE" + "codePostal": "38114", + "codeCommune": "38289", + "libelleAcheminement": "OZ", + "nomCommune": "OZ" }, { - "codePostal": "30730", - "codeCommune": "30182", - "libelleAcheminement": "MONTPEZAT", - "nomCommune": "MONTPEZAT" + "codePostal": "38580", + "codeCommune": "38163", + "libelleAcheminement": "LE HAUT BREDA", + "nomCommune": "LE HAUT BREDA" }, { - "codePostal": "55000", - "codeCommune": "55488", - "libelleAcheminement": "SILMONT", - "nomCommune": "SILMONT" + "codePostal": "26340", + "codeCommune": "26371", + "libelleAcheminement": "VERONNE", + "nomCommune": "VERONNE" }, { - "codePostal": "01110", - "codeCommune": "01121", - "libelleAcheminement": "CORLIER", - "nomCommune": "CORLIER" + "codePostal": "27260", + "codeCommune": "27591", + "libelleAcheminement": "ST PIERRE DE CORMEILLES", + "nomCommune": "ST PIERRE DE CORMEILLES" }, { - "codePostal": "63700", - "codeCommune": "63011", - "libelleAcheminement": "ARS LES FAVETS", - "nomCommune": "ARS LES FAVETS" + "codePostal": "38460", + "codeCommune": "38294", + "libelleAcheminement": "PANOSSAS", + "nomCommune": "PANOSSAS" }, { - "codePostal": "30350", - "codeCommune": "30183", - "libelleAcheminement": "MOULEZAN", - "nomCommune": "MOULEZAN" + "codePostal": "38690", + "codeCommune": "38167", + "libelleAcheminement": "FLACHERES", + "nomCommune": "FLACHERES" }, { - "codePostal": "55100", - "codeCommune": "55489", - "libelleAcheminement": "SIVRY LA PERCHE", - "nomCommune": "SIVRY LA PERCHE" + "codePostal": "26470", + "codeCommune": "26378", + "libelleAcheminement": "VOLVENT", + "nomCommune": "VOLVENT" }, { - "codePostal": "01560", - "codeCommune": "01124", - "libelleAcheminement": "CORMOZ", - "nomCommune": "CORMOZ" + "codePostal": "27450", + "codeCommune": "27594", + "libelleAcheminement": "ST PIERRE DES IFS", + "nomCommune": "ST PIERRE DES IFS" }, { - "codePostal": "63590", - "codeCommune": "63023", - "libelleAcheminement": "AUZELLES", - "nomCommune": "AUZELLES" + "codePostal": "38590", + "codeCommune": "38308", + "libelleAcheminement": "PLAN", + "nomCommune": "PLAN" }, { - "codePostal": "30190", - "codeCommune": "30184", - "libelleAcheminement": "MOUSSAC", - "nomCommune": "MOUSSAC" + "codePostal": "38600", + "codeCommune": "38169", + "libelleAcheminement": "FONTAINE", + "nomCommune": "FONTAINE" }, { - "codePostal": "55800", - "codeCommune": "55493", - "libelleAcheminement": "SOMMEILLES", - "nomCommune": "SOMMEILLES" + "codePostal": "26300", + "codeCommune": "26381", + "libelleAcheminement": "JAILLANS", + "nomCommune": "JAILLANS" }, { - "codePostal": "01560", - "codeCommune": "01128", - "libelleAcheminement": "COURTES", - "nomCommune": "COURTES" + "codePostal": "27680", + "codeCommune": "27601", + "libelleAcheminement": "ST SAMSON DE LA ROQUE", + "nomCommune": "ST SAMSON DE LA ROQUE" }, { - "codePostal": "63600", - "codeCommune": "63027", - "libelleAcheminement": "BAFFIE", - "nomCommune": "BAFFIE" + "codePostal": "38320", + "codeCommune": "38309", + "libelleAcheminement": "POISAT", + "nomCommune": "POISAT" }, { - "codePostal": "30580", - "codeCommune": "30187", - "libelleAcheminement": "NAVACELLES", - "nomCommune": "NAVACELLES" + "codePostal": "38120", + "codeCommune": "38170", + "libelleAcheminement": "FONTANIL CORNILLON", + "nomCommune": "FONTANIL CORNILLON" }, { - "codePostal": "55220", - "codeCommune": "55497", - "libelleAcheminement": "LES SOUHESMES RAMPONT", - "nomCommune": "LES SOUHESMES RAMPONT" + "codePostal": "27120", + "codeCommune": "27004", + "libelleAcheminement": "AIGLEVILLE", + "nomCommune": "AIGLEVILLE" }, { - "codePostal": "01350", - "codeCommune": "01133", - "libelleAcheminement": "CRESSIN ROCHEFORT", - "nomCommune": "CRESSIN ROCHEFORT" + "codePostal": "27150", + "codeCommune": "27614", + "libelleAcheminement": "SANCOURT", + "nomCommune": "SANCOURT" }, { - "codePostal": "63570", - "codeCommune": "63029", - "libelleAcheminement": "BANSAT", - "nomCommune": "BANSAT" + "codePostal": "38530", + "codeCommune": "38314", + "libelleAcheminement": "PONTCHARRA", + "nomCommune": "PONTCHARRA" }, { - "codePostal": "30900", - "codeCommune": "30189", - "libelleAcheminement": "NIMES", - "nomCommune": "NIMES" + "codePostal": "38590", + "codeCommune": "38171", + "libelleAcheminement": "LA FORTERESSE", + "nomCommune": "LA FORTERESSE" }, { - "codePostal": "55230", - "codeCommune": "55500", - "libelleAcheminement": "SPINCOURT", - "nomCommune": "SPINCOURT" + "codePostal": "27600", + "codeCommune": "27005", + "libelleAcheminement": "AILLY", + "nomCommune": "AILLY" }, { - "codePostal": "01290", - "codeCommune": "01134", - "libelleAcheminement": "CROTTET", - "nomCommune": "CROTTET" + "codePostal": "27220", + "codeCommune": "27621", + "libelleAcheminement": "SEREZ", + "nomCommune": "SEREZ" }, { - "codePostal": "63110", - "codeCommune": "63032", - "libelleAcheminement": "BEAUMONT", - "nomCommune": "BEAUMONT" + "codePostal": "38230", + "codeCommune": "38316", + "libelleAcheminement": "PONT DE CHERUY", + "nomCommune": "PONT DE CHERUY" }, { - "codePostal": "30340", - "codeCommune": "30197", - "libelleAcheminement": "LES PLANS", - "nomCommune": "LES PLANS" + "codePostal": "38260", + "codeCommune": "38174", + "libelleAcheminement": "LA FRETTE", + "nomCommune": "LA FRETTE" }, { - "codePostal": "55230", - "codeCommune": "55500", - "libelleAcheminement": "SPINCOURT", - "nomCommune": "SPINCOURT" + "codePostal": "27380", + "codeCommune": "27012", + "libelleAcheminement": "AMFREVILLE LES CHAMPS", + "nomCommune": "AMFREVILLE LES CHAMPS" }, { - "codePostal": "01290", - "codeCommune": "01136", - "libelleAcheminement": "CRUZILLES LES MEPILLAT", - "nomCommune": "CRUZILLES LES MEPILLAT" + "codePostal": "27230", + "codeCommune": "27629", + "libelleAcheminement": "THIBERVILLE", + "nomCommune": "THIBERVILLE" }, { - "codePostal": "63116", - "codeCommune": "63034", - "libelleAcheminement": "BEAUREGARD L EVEQUE", - "nomCommune": "BEAUREGARD L EVEQUE" + "codePostal": "38800", + "codeCommune": "38317", + "libelleAcheminement": "LE PONT DE CLAIX", + "nomCommune": "LE PONT DE CLAIX" }, { - "codePostal": "30450", - "codeCommune": "30201", - "libelleAcheminement": "PONTEILS ET BRESIS", - "nomCommune": "PONTEILS ET BRESIS" + "codePostal": "38190", + "codeCommune": "38175", + "libelleAcheminement": "FROGES", + "nomCommune": "FROGES" }, { - "codePostal": "55700", - "codeCommune": "55502", - "libelleAcheminement": "STENAY", - "nomCommune": "STENAY" + "codePostal": "27930", + "codeCommune": "27017", + "libelleAcheminement": "ANGERVILLE LA CAMPAGNE", + "nomCommune": "ANGERVILLE LA CAMPAGNE" }, { - "codePostal": "01340", - "codeCommune": "01163", - "libelleAcheminement": "FOISSIAT", - "nomCommune": "FOISSIAT" + "codePostal": "27370", + "codeCommune": "27638", + "libelleAcheminement": "LE THUIT DE L OISON", + "nomCommune": "LE THUIT DE L OISON" }, { - "codePostal": "63480", - "codeCommune": "63037", - "libelleAcheminement": "BERTIGNAT", - "nomCommune": "BERTIGNAT" + "codePostal": "38680", + "codeCommune": "38319", + "libelleAcheminement": "PONT EN ROYANS", + "nomCommune": "PONT EN ROYANS" }, { - "codePostal": "30130", - "codeCommune": "30202", - "libelleAcheminement": "PONT ST ESPRIT", - "nomCommune": "PONT ST ESPRIT" + "codePostal": "38540", + "codeCommune": "38189", + "libelleAcheminement": "HEYRIEUX", + "nomCommune": "HEYRIEUX" }, { - "codePostal": "55140", - "codeCommune": "55503", - "libelleAcheminement": "TAILLANCOURT", - "nomCommune": "TAILLANCOURT" + "codePostal": "27290", + "codeCommune": "27018", + "libelleAcheminement": "APPEVILLE ANNEBAULT", + "nomCommune": "APPEVILLE ANNEBAULT" }, { - "codePostal": "01090", - "codeCommune": "01165", - "libelleAcheminement": "FRANCHELEINS", - "nomCommune": "FRANCHELEINS" + "codePostal": "27570", + "codeCommune": "27643", + "libelleAcheminement": "TILLIERES SUR AVRE", + "nomCommune": "TILLIERES SUR AVRE" }, { - "codePostal": "63610", - "codeCommune": "63038", - "libelleAcheminement": "BESSE ET ST ANASTAISE", - "nomCommune": "BESSE ET ST ANASTAISE" + "codePostal": "38390", + "codeCommune": "38320", + "libelleAcheminement": "PORCIEU AMBLAGNIEU", + "nomCommune": "PORCIEU AMBLAGNIEU" }, { - "codePostal": "30500", - "codeCommune": "30204", - "libelleAcheminement": "POTELIERES", - "nomCommune": "POTELIERES" + "codePostal": "38118", + "codeCommune": "38190", + "libelleAcheminement": "HIERES SUR AMBY", + "nomCommune": "HIERES SUR AMBY" }, { - "codePostal": "55260", - "codeCommune": "55506", - "libelleAcheminement": "THILLOMBOIS", - "nomCommune": "THILLOMBOIS" + "codePostal": "27260", + "codeCommune": "27021", + "libelleAcheminement": "ASNIERES", + "nomCommune": "ASNIERES" }, { - "codePostal": "01140", - "codeCommune": "01167", - "libelleAcheminement": "GARNERANS", - "nomCommune": "GARNERANS" + "codePostal": "27930", + "codeCommune": "27659", + "libelleAcheminement": "LA TRINITE", + "nomCommune": "LA TRINITE" }, { - "codePostal": "63160", - "codeCommune": "63040", - "libelleAcheminement": "BILLOM", - "nomCommune": "BILLOM" + "codePostal": "38350", + "codeCommune": "38326", + "libelleAcheminement": "PRUNIERES", + "nomCommune": "PRUNIERES" }, { - "codePostal": "30320", - "codeCommune": "30206", - "libelleAcheminement": "POULX", - "nomCommune": "POULX" + "codePostal": "38750", + "codeCommune": "38191", + "libelleAcheminement": "HUEZ", + "nomCommune": "HUEZ" }, { - "codePostal": "55600", - "codeCommune": "55508", - "libelleAcheminement": "THONNE LA LONG", - "nomCommune": "THONNE LA LONG" + "codePostal": "27940", + "codeCommune": "27022", + "libelleAcheminement": "LE VAL D HAZEY", + "nomCommune": "LE VAL D HAZEY" }, { - "codePostal": "01100", - "codeCommune": "01171", - "libelleAcheminement": "GEOVREISSET", - "nomCommune": "GEOVREISSET" + "codePostal": "27270", + "codeCommune": "27660", + "libelleAcheminement": "LA TRINITE DE REVILLE", + "nomCommune": "LA TRINITE DE REVILLE" }, { - "codePostal": "63350", - "codeCommune": "63058", - "libelleAcheminement": "BULHON", - "nomCommune": "BULHON" + "codePostal": "38470", + "codeCommune": "38345", + "libelleAcheminement": "ROVON", + "nomCommune": "ROVON" }, { - "codePostal": "30210", - "codeCommune": "30207", - "libelleAcheminement": "POUZILHAC", - "nomCommune": "POUZILHAC" + "codePostal": "38200", + "codeCommune": "38199", + "libelleAcheminement": "JARDIN", + "nomCommune": "JARDIN" }, { - "codePostal": "55600", - "codeCommune": "55509", - "libelleAcheminement": "THONNE LE THIL", - "nomCommune": "THONNE LE THIL" + "codePostal": "27290", + "codeCommune": "27028", + "libelleAcheminement": "AUTHOU", + "nomCommune": "AUTHOU" }, { - "codePostal": "01100", - "codeCommune": "01181", - "libelleAcheminement": "GROISSIAT", - "nomCommune": "GROISSIAT" + "codePostal": "27120", + "codeCommune": "27668", + "libelleAcheminement": "LE VAL DAVID", + "nomCommune": "LE VAL DAVID" }, { - "codePostal": "63700", - "codeCommune": "63062", - "libelleAcheminement": "BUXIERES SOUS MONTAIGUT", - "nomCommune": "BUXIERES SOUS MONTAIGUT" + "codePostal": "38370", + "codeCommune": "38353", + "libelleAcheminement": "ST ALBAN DU RHONE", + "nomCommune": "ST ALBAN DU RHONE" }, { - "codePostal": "30129", - "codeCommune": "30211", - "libelleAcheminement": "REDESSAN", - "nomCommune": "REDESSAN" + "codePostal": "38200", + "codeCommune": "38215", + "libelleAcheminement": "LUZINAY", + "nomCommune": "LUZINAY" }, { - "codePostal": "55600", - "codeCommune": "55510", - "libelleAcheminement": "THONNE LES PRES", - "nomCommune": "THONNE LES PRES" + "codePostal": "27440", + "codeCommune": "27034", + "libelleAcheminement": "BACQUEVILLE", + "nomCommune": "BACQUEVILLE" }, { - "codePostal": "01260", - "codeCommune": "01187", - "libelleAcheminement": "HAUT VALROMEY", - "nomCommune": "HAUT VALROMEY" + "codePostal": "27910", + "codeCommune": "27672", + "libelleAcheminement": "VASCOEUIL", + "nomCommune": "VASCOEUIL" }, { - "codePostal": "63520", - "codeCommune": "63065", - "libelleAcheminement": "CEILLOUX", - "nomCommune": "CEILLOUX" + "codePostal": "38380", + "codeCommune": "38376", + "libelleAcheminement": "ST CHRISTOPHE SUR GUIERS", + "nomCommune": "ST CHRISTOPHE SUR GUIERS" }, { - "codePostal": "30750", - "codeCommune": "30213", - "libelleAcheminement": "REVENS", - "nomCommune": "REVENS" + "codePostal": "38270", + "codeCommune": "38219", + "libelleAcheminement": "MARCOLLIN", + "nomCommune": "MARCOLLIN" }, { - "codePostal": "55600", - "codeCommune": "55511", - "libelleAcheminement": "THONNELLE", - "nomCommune": "THONNELLE" + "codePostal": "27170", + "codeCommune": "27037", + "libelleAcheminement": "BARC", + "nomCommune": "BARC" }, { - "codePostal": "01200", - "codeCommune": "01189", - "libelleAcheminement": "INJOUX GENISSIAT", - "nomCommune": "INJOUX GENISSIAT" + "codePostal": "27930", + "codeCommune": "27684", + "libelleAcheminement": "LE VIEIL EVREUX", + "nomCommune": "LE VIEIL EVREUX" }, { - "codePostal": "63122", - "codeCommune": "63070", - "libelleAcheminement": "CEYRAT", - "nomCommune": "CEYRAT" + "codePostal": "38690", + "codeCommune": "38380", + "libelleAcheminement": "ST DIDIER DE BIZONNES", + "nomCommune": "ST DIDIER DE BIZONNES" }, { - "codePostal": "30720", - "codeCommune": "30214", - "libelleAcheminement": "RIBAUTE LES TAVERNES", - "nomCommune": "RIBAUTE LES TAVERNES" + "codePostal": "38300", + "codeCommune": "38223", + "libelleAcheminement": "MAUBEC", + "nomCommune": "MAUBEC" }, { - "codePostal": "55220", - "codeCommune": "55512", - "libelleAcheminement": "TILLY SUR MEUSE", - "nomCommune": "TILLY SUR MEUSE" + "codePostal": "27310", + "codeCommune": "27039", + "libelleAcheminement": "BARNEVILLE SUR SEINE", + "nomCommune": "BARNEVILLE SUR SEINE" }, { - "codePostal": "01640", - "codeCommune": "01199", - "libelleAcheminement": "JUJURIEUX", - "nomCommune": "JUJURIEUX" + "codePostal": "27110", + "codeCommune": "27692", + "libelleAcheminement": "VILLETTES", + "nomCommune": "VILLETTES" }, { - "codePostal": "63250", - "codeCommune": "63072", - "libelleAcheminement": "CHABRELOCHE", - "nomCommune": "CHABRELOCHE" + "codePostal": "38450", + "codeCommune": "38388", + "libelleAcheminement": "ST GEORGES DE COMMIERS", + "nomCommune": "ST GEORGES DE COMMIERS" }, { - "codePostal": "30650", - "codeCommune": "30217", - "libelleAcheminement": "ROCHEFORT DU GARD", - "nomCommune": "ROCHEFORT DU GARD" + "codePostal": "38620", + "codeCommune": "38228", + "libelleAcheminement": "MERLAS", + "nomCommune": "MERLAS" }, { - "codePostal": "55250", - "codeCommune": "55517", - "libelleAcheminement": "SEUIL D ARGONNE", - "nomCommune": "SEUIL D ARGONNE" + "codePostal": "27170", + "codeCommune": "27040", + "libelleAcheminement": "BARQUET", + "nomCommune": "BARQUET" }, { - "codePostal": "01450", - "codeCommune": "01214", - "libelleAcheminement": "LEYSSARD", - "nomCommune": "LEYSSARD" + "codePostal": "27240", + "codeCommune": "27693", + "libelleAcheminement": "SYLVAINS LES MOULINS", + "nomCommune": "SYLVAINS LES MOULINS" }, { - "codePostal": "63410", - "codeCommune": "63092", - "libelleAcheminement": "CHARBONNIERES LES VARENNES", - "nomCommune": "CHARBONNIERES LES VARENNES" + "codePostal": "38790", + "codeCommune": "38389", + "libelleAcheminement": "ST GEORGES D ESPERANCHE", + "nomCommune": "ST GEORGES D ESPERANCHE" }, { - "codePostal": "30190", - "codeCommune": "30224", - "libelleAcheminement": "LA ROUVIERE", - "nomCommune": "LA ROUVIERE" + "codePostal": "38380", + "codeCommune": "38236", + "libelleAcheminement": "MIRIBEL LES ECHELLES", + "nomCommune": "MIRIBEL LES ECHELLES" }, { - "codePostal": "55310", - "codeCommune": "55519", - "libelleAcheminement": "TRONVILLE EN BARROIS", - "nomCommune": "TRONVILLE EN BARROIS" + "codePostal": "27330", + "codeCommune": "27049", + "libelleAcheminement": "MESNIL EN OUCHE", + "nomCommune": "MESNIL EN OUCHE" }, { - "codePostal": "01430", - "codeCommune": "01228", - "libelleAcheminement": "MAILLAT", - "nomCommune": "MAILLAT" + "codePostal": "27950", + "codeCommune": "27694", + "libelleAcheminement": "VILLEZ SOUS BAILLEUL", + "nomCommune": "VILLEZ SOUS BAILLEUL" }, { - "codePostal": "63160", - "codeCommune": "63096", - "libelleAcheminement": "CHAS", - "nomCommune": "CHAS" + "codePostal": "38650", + "codeCommune": "38391", + "libelleAcheminement": "ST GUILLAUME", + "nomCommune": "ST GUILLAUME" }, { - "codePostal": "30130", - "codeCommune": "30226", - "libelleAcheminement": "ST ALEXANDRE", - "nomCommune": "ST ALEXANDRE" + "codePostal": "38220", + "codeCommune": "38252", + "libelleAcheminement": "MONTCHABOUD", + "nomCommune": "MONTCHABOUD" }, { - "codePostal": "55230", - "codeCommune": "55535", - "libelleAcheminement": "VAUDONCOURT", - "nomCommune": "VAUDONCOURT" + "codePostal": "27370", + "codeCommune": "27053", + "libelleAcheminement": "LE BEC THOMAS", + "nomCommune": "LE BEC THOMAS" }, { - "codePostal": "01240", - "codeCommune": "01235", - "libelleAcheminement": "MARLIEUX", - "nomCommune": "MARLIEUX" + "codePostal": "28500", + "codeCommune": "28003", + "libelleAcheminement": "ALLAINVILLE", + "nomCommune": "ALLAINVILLE" }, { - "codePostal": "63320", - "codeCommune": "63097", - "libelleAcheminement": "CHASSAGNE", - "nomCommune": "CHASSAGNE" + "codePostal": "38660", + "codeCommune": "38395", + "libelleAcheminement": "PLATEAU DES PETITES ROCHES", + "nomCommune": "PLATEAU DES PETITES ROCHES" }, { - "codePostal": "30190", - "codeCommune": "30228", - "libelleAcheminement": "STE ANASTASIE", - "nomCommune": "STE ANASTASIE" + "codePostal": "38520", + "codeCommune": "38253", + "libelleAcheminement": "LES DEUX ALPES", + "nomCommune": "LES DEUX ALPES" }, { - "codePostal": "55300", - "codeCommune": "55540", - "libelleAcheminement": "VAUX LES PALAMEIX", - "nomCommune": "VAUX LES PALAMEIX" + "codePostal": "27300", + "codeCommune": "27056", + "libelleAcheminement": "BERNAY", + "nomCommune": "BERNAY" }, { - "codePostal": "01250", - "codeCommune": "01245", - "libelleAcheminement": "BOHAS MEYRIAT RIGNAT", - "nomCommune": "BOHAS MEYRIAT RIGNAT" + "codePostal": "28260", + "codeCommune": "28007", + "libelleAcheminement": "ANET", + "nomCommune": "ANET" }, { - "codePostal": "63119", - "codeCommune": "63099", - "libelleAcheminement": "CHATEAUGAY", - "nomCommune": "CHATEAUGAY" + "codePostal": "38340", + "codeCommune": "38407", + "libelleAcheminement": "LA SURE EN CHARTREUSE", + "nomCommune": "LA SURE EN CHARTREUSE" }, { - "codePostal": "30630", - "codeCommune": "30230", - "libelleAcheminement": "ST ANDRE DE ROQUEPERTUIS", - "nomCommune": "ST ANDRE DE ROQUEPERTUIS" + "codePostal": "38770", + "codeCommune": "38254", + "libelleAcheminement": "MONTEYNARD", + "nomCommune": "MONTEYNARD" }, { - "codePostal": "55600", - "codeCommune": "55544", - "libelleAcheminement": "VELOSNES", - "nomCommune": "VELOSNES" + "codePostal": "27520", + "codeCommune": "27062", + "libelleAcheminement": "LES MONTS DU ROUMOIS", + "nomCommune": "LES MONTS DU ROUMOIS" }, { - "codePostal": "01660", - "codeCommune": "01246", - "libelleAcheminement": "MEZERIAT", - "nomCommune": "MEZERIAT" + "codePostal": "28220", + "codeCommune": "28012", + "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", + "nomCommune": "COMMUNE NOUVELLE D ARROU" }, { - "codePostal": "63140", - "codeCommune": "63103", - "libelleAcheminement": "CHATEL GUYON", - "nomCommune": "CHATEL GUYON" + "codePostal": "38680", + "codeCommune": "38409", + "libelleAcheminement": "ST JUST DE CLAIX", + "nomCommune": "ST JUST DE CLAIX" }, { - "codePostal": "30330", - "codeCommune": "30232", - "libelleAcheminement": "ST ANDRE D OLERARGUES", - "nomCommune": "ST ANDRE D OLERARGUES" + "codePostal": "38940", + "codeCommune": "38255", + "libelleAcheminement": "MONTFALCON", + "nomCommune": "MONTFALCON" }, { - "codePostal": "55800", - "codeCommune": "55560", - "libelleAcheminement": "VILLERS AUX VENTS", - "nomCommune": "VILLERS AUX VENTS" + "codePostal": "27800", + "codeCommune": "27074", + "libelleAcheminement": "BOISNEY", + "nomCommune": "BOISNEY" }, { - "codePostal": "01170", - "codeCommune": "01247", - "libelleAcheminement": "MIJOUX", - "nomCommune": "MIJOUX" + "codePostal": "28290", + "codeCommune": "28012", + "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", + "nomCommune": "COMMUNE NOUVELLE D ARROU" }, { - "codePostal": "63320", - "codeCommune": "63109", - "libelleAcheminement": "CHIDRAC", - "nomCommune": "CHIDRAC" + "codePostal": "38970", + "codeCommune": "38414", + "libelleAcheminement": "STE LUCE", + "nomCommune": "STE LUCE" }, { - "codePostal": "30730", - "codeCommune": "30233", - "libelleAcheminement": "ST BAUZELY", - "nomCommune": "ST BAUZELY" + "codePostal": "38460", + "codeCommune": "38260", + "libelleAcheminement": "MORAS", + "nomCommune": "MORAS" }, { - "codePostal": "55500", - "codeCommune": "55562", - "libelleAcheminement": "VILLERS LE SEC", - "nomCommune": "VILLERS LE SEC" + "codePostal": "27310", + "codeCommune": "27085", + "libelleAcheminement": "FLANCOURT CRESCY EN ROUMOIS", + "nomCommune": "FLANCOURT CRESCY EN ROUMOIS" }, { - "codePostal": "01250", - "codeCommune": "01254", - "libelleAcheminement": "MONTAGNAT", - "nomCommune": "MONTAGNAT" + "codePostal": "28330", + "codeCommune": "28018", + "libelleAcheminement": "AUTHON DU PERCHE", + "nomCommune": "AUTHON DU PERCHE" }, { - "codePostal": "63740", - "codeCommune": "63110", - "libelleAcheminement": "CISTERNES LA FORET", - "nomCommune": "CISTERNES LA FORET" + "codePostal": "38930", + "codeCommune": "38419", + "libelleAcheminement": "ST MARTIN DE CLELLES", + "nomCommune": "ST MARTIN DE CLELLES" }, { - "codePostal": "30350", - "codeCommune": "30234", - "libelleAcheminement": "ST BENEZET", - "nomCommune": "ST BENEZET" + "codePostal": "38770", + "codeCommune": "38266", + "libelleAcheminement": "LA MOTTE ST MARTIN", + "nomCommune": "LA MOTTE ST MARTIN" }, { - "codePostal": "55160", - "codeCommune": "55565", - "libelleAcheminement": "VILLERS SOUS PAREID", - "nomCommune": "VILLERS SOUS PAREID" + "codePostal": "27310", + "codeCommune": "27085", + "libelleAcheminement": "FLANCOURT CRESCY EN ROUMOIS", + "nomCommune": "FLANCOURT CRESCY EN ROUMOIS" }, { - "codePostal": "01470", - "codeCommune": "01255", - "libelleAcheminement": "MONTAGNIEU", - "nomCommune": "MONTAGNIEU" + "codePostal": "28120", + "codeCommune": "28021", + "libelleAcheminement": "BAILLEAU LE PIN", + "nomCommune": "BAILLEAU LE PIN" }, { - "codePostal": "63320", - "codeCommune": "63111", - "libelleAcheminement": "CLEMENSAT", - "nomCommune": "CLEMENSAT" + "codePostal": "38410", + "codeCommune": "38422", + "libelleAcheminement": "ST MARTIN D URIAGE", + "nomCommune": "ST MARTIN D URIAGE" }, { - "codePostal": "30210", - "codeCommune": "30235", - "libelleAcheminement": "ST BONNET DU GARD", - "nomCommune": "ST BONNET DU GARD" + "codePostal": "38420", + "codeCommune": "38271", + "libelleAcheminement": "MURIANETTE", + "nomCommune": "MURIANETTE" }, { - "codePostal": "55250", - "codeCommune": "55569", - "libelleAcheminement": "VILLOTTE DEVANT LOUPPY", - "nomCommune": "VILLOTTE DEVANT LOUPPY" + "codePostal": "27670", + "codeCommune": "27090", + "libelleAcheminement": "BOSROUMOIS", + "nomCommune": "BOSROUMOIS" }, { - "codePostal": "01120", - "codeCommune": "01262", - "libelleAcheminement": "MONTLUEL", - "nomCommune": "MONTLUEL" + "codePostal": "28270", + "codeCommune": "28037", + "libelleAcheminement": "BEROU LA MULOTIERE", + "nomCommune": "BEROU LA MULOTIERE" }, { - "codePostal": "63720", - "codeCommune": "63112", - "libelleAcheminement": "CLERLANDE", - "nomCommune": "CLERLANDE" + "codePostal": "38950", + "codeCommune": "38423", + "libelleAcheminement": "ST MARTIN LE VINOUX", + "nomCommune": "ST MARTIN LE VINOUX" }, { - "codePostal": "30150", - "codeCommune": "30254", - "libelleAcheminement": "ST GENIES DE COMOLAS", - "nomCommune": "ST GENIES DE COMOLAS" + "codePostal": "38300", + "codeCommune": "38276", + "libelleAcheminement": "NIVOLAS VERMELLE", + "nomCommune": "NIVOLAS VERMELLE" }, { - "codePostal": "55150", - "codeCommune": "55580", - "libelleAcheminement": "WAVRILLE", - "nomCommune": "WAVRILLE" + "codePostal": "27210", + "codeCommune": "27100", + "libelleAcheminement": "BOULLEVILLE", + "nomCommune": "BOULLEVILLE" }, { - "codePostal": "01310", - "codeCommune": "01264", - "libelleAcheminement": "MONTRACOL", - "nomCommune": "MONTRACOL" + "codePostal": "28330", + "codeCommune": "28038", + "libelleAcheminement": "BETHONVILLIERS", + "nomCommune": "BETHONVILLIERS" }, { - "codePostal": "63340", - "codeCommune": "63114", - "libelleAcheminement": "COLLANGES", - "nomCommune": "COLLANGES" + "codePostal": "38570", + "codeCommune": "38439", + "libelleAcheminement": "CRETS EN BELLEDONNE", + "nomCommune": "CRETS EN BELLEDONNE" }, { - "codePostal": "30190", - "codeCommune": "30255", - "libelleAcheminement": "ST GENIES DE MALGOIRES", - "nomCommune": "ST GENIES DE MALGOIRES" + "codePostal": "38270", + "codeCommune": "38290", + "libelleAcheminement": "PACT", + "nomCommune": "PACT" }, { - "codePostal": "56640", - "codeCommune": "56005", - "libelleAcheminement": "ARZON", - "nomCommune": "ARZON" + "codePostal": "27500", + "codeCommune": "27101", + "libelleAcheminement": "BOUQUELON", + "nomCommune": "BOUQUELON" }, { - "codePostal": "01300", - "codeCommune": "01268", - "libelleAcheminement": "MURS ET GELIGNIEUX", - "nomCommune": "MURS ET GELIGNIEUX" + "codePostal": "28700", + "codeCommune": "28039", + "libelleAcheminement": "BEVILLE LE COMTE", + "nomCommune": "BEVILLE LE COMTE" }, { - "codePostal": "63380", - "codeCommune": "63118", - "libelleAcheminement": "CONDAT EN COMBRAILLE", - "nomCommune": "CONDAT EN COMBRAILLE" + "codePostal": "38380", + "codeCommune": "38442", + "libelleAcheminement": "ST PIERRE DE CHARTREUSE", + "nomCommune": "ST PIERRE DE CHARTREUSE" }, { - "codePostal": "30170", - "codeCommune": "30263", - "libelleAcheminement": "ST HIPPOLYTE DU FORT", - "nomCommune": "ST HIPPOLYTE DU FORT" + "codePostal": "38550", + "codeCommune": "38298", + "libelleAcheminement": "LE PEAGE DE ROUSSILLON", + "nomCommune": "LE PEAGE DE ROUSSILLON" }, { - "codePostal": "56800", - "codeCommune": "56006", - "libelleAcheminement": "AUGAN", - "nomCommune": "AUGAN" + "codePostal": "27220", + "codeCommune": "27111", + "libelleAcheminement": "BRETAGNOLLES", + "nomCommune": "BRETAGNOLLES" }, { - "codePostal": "01210", - "codeCommune": "01281", - "libelleAcheminement": "ORNEX", - "nomCommune": "ORNEX" + "codePostal": "28360", + "codeCommune": "28048", + "libelleAcheminement": "LA BOURDINIERE ST LOUP", + "nomCommune": "LA BOURDINIERE ST LOUP" }, { - "codePostal": "63730", - "codeCommune": "63120", - "libelleAcheminement": "CORENT", - "nomCommune": "CORENT" + "codePostal": "38160", + "codeCommune": "38443", + "libelleAcheminement": "ST PIERRE DE CHERENNES", + "nomCommune": "ST PIERRE DE CHERENNES" }, { - "codePostal": "30350", - "codeCommune": "30267", - "libelleAcheminement": "ST JEAN DE SERRES", - "nomCommune": "ST JEAN DE SERRES" + "codePostal": "38260", + "codeCommune": "38300", + "libelleAcheminement": "PENOL", + "nomCommune": "PENOL" }, { - "codePostal": "56360", - "codeCommune": "56009", - "libelleAcheminement": "BANGOR", - "nomCommune": "BANGOR" + "codePostal": "27160", + "codeCommune": "27112", + "libelleAcheminement": "BRETEUIL", + "nomCommune": "BRETEUIL" }, { - "codePostal": "01430", - "codeCommune": "01282", - "libelleAcheminement": "OUTRIAZ", - "nomCommune": "OUTRIAZ" + "codePostal": "28270", + "codeCommune": "28059", + "libelleAcheminement": "BREZOLLES", + "nomCommune": "BREZOLLES" }, { - "codePostal": "63450", - "codeCommune": "63126", - "libelleAcheminement": "LE CREST", - "nomCommune": "LE CREST" + "codePostal": "38380", + "codeCommune": "38446", + "libelleAcheminement": "ST PIERRE D ENTREMONT", + "nomCommune": "ST PIERRE D ENTREMONT" }, { - "codePostal": "30580", - "codeCommune": "30275", - "libelleAcheminement": "ST JUST ET VACQUIERES", - "nomCommune": "ST JUST ET VACQUIERES" + "codePostal": "38119", + "codeCommune": "38304", + "libelleAcheminement": "PIERRE CHATEL", + "nomCommune": "PIERRE CHATEL" }, { - "codePostal": "56420", - "codeCommune": "56019", - "libelleAcheminement": "BILLIO", - "nomCommune": "BILLIO" + "codePostal": "27270", + "codeCommune": "27117", + "libelleAcheminement": "BROGLIE", + "nomCommune": "BROGLIE" }, { - "codePostal": "01100", - "codeCommune": "01283", - "libelleAcheminement": "OYONNAX", - "nomCommune": "OYONNAX" + "codePostal": "28160", + "codeCommune": "28061", + "libelleAcheminement": "BROU", + "nomCommune": "BROU" }, { - "codePostal": "63350", - "codeCommune": "63128", - "libelleAcheminement": "CREVANT LAVEINE", - "nomCommune": "CREVANT LAVEINE" + "codePostal": "38370", + "codeCommune": "38448", + "libelleAcheminement": "ST PRIM", + "nomCommune": "ST PRIM" }, { - "codePostal": "30200", - "codeCommune": "30277", - "libelleAcheminement": "ST LAURENT DE CARNOLS", - "nomCommune": "ST LAURENT DE CARNOLS" + "codePostal": "38210", + "codeCommune": "38310", + "libelleAcheminement": "POLIENAS", + "nomCommune": "POLIENAS" }, { - "codePostal": "56420", - "codeCommune": "56027", - "libelleAcheminement": "BULEON", - "nomCommune": "BULEON" + "codePostal": "27930", + "codeCommune": "27118", + "libelleAcheminement": "BROSVILLE", + "nomCommune": "BROSVILLE" }, { - "codePostal": "01430", - "codeCommune": "01293", - "libelleAcheminement": "PEYRIAT", - "nomCommune": "PEYRIAT" + "codePostal": "28120", + "codeCommune": "28067", + "libelleAcheminement": "CERNAY", + "nomCommune": "CERNAY" }, { - "codePostal": "63830", - "codeCommune": "63141", - "libelleAcheminement": "DURTOL", - "nomCommune": "DURTOL" + "codePostal": "38160", + "codeCommune": "38453", + "libelleAcheminement": "ST ROMANS", + "nomCommune": "ST ROMANS" }, { - "codePostal": "30440", - "codeCommune": "30280", - "libelleAcheminement": "ST LAURENT LE MINIER", - "nomCommune": "ST LAURENT LE MINIER" + "codePostal": "38350", + "codeCommune": "38313", + "libelleAcheminement": "PONSONNAS", + "nomCommune": "PONSONNAS" }, { - "codePostal": "56620", - "codeCommune": "56040", - "libelleAcheminement": "CLEGUER", - "nomCommune": "CLEGUER" + "codePostal": "27730", + "codeCommune": "27119", + "libelleAcheminement": "BUEIL", + "nomCommune": "BUEIL" }, { - "codePostal": "01270", - "codeCommune": "01296", - "libelleAcheminement": "PIRAJOUX", - "nomCommune": "PIRAJOUX" + "codePostal": "28300", + "codeCommune": "28068", + "libelleAcheminement": "CHALLET", + "nomCommune": "CHALLET" }, { - "codePostal": "63980", - "codeCommune": "63142", - "libelleAcheminement": "ECHANDELYS", - "nomCommune": "ECHANDELYS" + "codePostal": "38300", + "codeCommune": "38455", + "libelleAcheminement": "ST SAVIN", + "nomCommune": "ST SAVIN" }, { - "codePostal": "30700", - "codeCommune": "30299", - "libelleAcheminement": "ST SIFFRET", - "nomCommune": "ST SIFFRET" + "codePostal": "38680", + "codeCommune": "38322", + "libelleAcheminement": "PRESLES", + "nomCommune": "PRESLES" }, { - "codePostal": "56120", - "codeCommune": "56050", - "libelleAcheminement": "LA CROIX HELLEAN", - "nomCommune": "LA CROIX HELLEAN" + "codePostal": "27190", + "codeCommune": "27120", + "libelleAcheminement": "BUREY", + "nomCommune": "BUREY" }, { - "codePostal": "01120", - "codeCommune": "01297", - "libelleAcheminement": "PIZAY", - "nomCommune": "PIZAY" + "codePostal": "28700", + "codeCommune": "28074", + "libelleAcheminement": "LA CHAPELLE D AUNAINVILLE", + "nomCommune": "LA CHAPELLE D AUNAINVILLE" }, { - "codePostal": "63260", - "codeCommune": "63143", - "libelleAcheminement": "EFFIAT", - "nomCommune": "EFFIAT" + "codePostal": "38710", + "codeCommune": "38456", + "libelleAcheminement": "CHATEL EN TRIEVES", + "nomCommune": "CHATEL EN TRIEVES" }, { - "codePostal": "30290", - "codeCommune": "30302", - "libelleAcheminement": "ST VICTOR LA COSTE", - "nomCommune": "ST VICTOR LA COSTE" + "codePostal": "38270", + "codeCommune": "38324", + "libelleAcheminement": "PRIMARETTE", + "nomCommune": "PRIMARETTE" }, { - "codePostal": "56750", - "codeCommune": "56052", - "libelleAcheminement": "DAMGAN", - "nomCommune": "DAMGAN" + "codePostal": "27490", + "codeCommune": "27124", + "libelleAcheminement": "CAILLY SUR EURE", + "nomCommune": "CAILLY SUR EURE" }, { - "codePostal": "01450", - "codeCommune": "01303", - "libelleAcheminement": "PONCIN", - "nomCommune": "PONCIN" + "codePostal": "28340", + "codeCommune": "28077", + "libelleAcheminement": "LA CHAPELLE FORTIN", + "nomCommune": "LA CHAPELLE FORTIN" }, { - "codePostal": "63850", - "codeCommune": "63144", - "libelleAcheminement": "EGLISENEUVE D ENTRAIGUES", - "nomCommune": "EGLISENEUVE D ENTRAIGUES" + "codePostal": "38780", + "codeCommune": "38480", + "libelleAcheminement": "SEPTEME", + "nomCommune": "SEPTEME" }, { - "codePostal": "30500", - "codeCommune": "30303", - "libelleAcheminement": "ST VICTOR DE MALCAP", - "nomCommune": "ST VICTOR DE MALCAP" + "codePostal": "38120", + "codeCommune": "38325", + "libelleAcheminement": "PROVEYSIEUX", + "nomCommune": "PROVEYSIEUX" }, { - "codePostal": "56530", - "codeCommune": "56063", - "libelleAcheminement": "GESTEL", - "nomCommune": "GESTEL" + "codePostal": "27500", + "codeCommune": "27126", + "libelleAcheminement": "CAMPIGNY", + "nomCommune": "CAMPIGNY" }, { - "codePostal": "01290", - "codeCommune": "01306", - "libelleAcheminement": "PONT DE VEYLE", - "nomCommune": "PONT DE VEYLE" + "codePostal": "28130", + "codeCommune": "28084", + "libelleAcheminement": "CHARTAINVILLIERS", + "nomCommune": "CHARTAINVILLIERS" }, { - "codePostal": "63160", - "codeCommune": "63154", - "libelleAcheminement": "ESPIRAT", - "nomCommune": "ESPIRAT" + "codePostal": "38510", + "codeCommune": "38483", + "libelleAcheminement": "SERMERIEU", + "nomCommune": "SERMERIEU" }, { - "codePostal": "30760", - "codeCommune": "30304", - "libelleAcheminement": "SALAZAC", - "nomCommune": "SALAZAC" + "codePostal": "38420", + "codeCommune": "38334", + "libelleAcheminement": "REVEL", + "nomCommune": "REVEL" }, { - "codePostal": "56120", - "codeCommune": "56068", - "libelleAcheminement": "LA GREE ST LAURENT", - "nomCommune": "LA GREE ST LAURENT" + "codePostal": "27120", + "codeCommune": "27136", + "libelleAcheminement": "CHAIGNES", + "nomCommune": "CHAIGNES" }, { - "codePostal": "01110", - "codeCommune": "01311", - "libelleAcheminement": "PREMILLIEU", - "nomCommune": "PREMILLIEU" + "codePostal": "28270", + "codeCommune": "28090", + "libelleAcheminement": "LES CHATELETS", + "nomCommune": "LES CHATELETS" }, { - "codePostal": "63520", - "codeCommune": "63155", - "libelleAcheminement": "ESTANDEUIL", - "nomCommune": "ESTANDEUIL" + "codePostal": "38460", + "codeCommune": "38488", + "libelleAcheminement": "SICCIEU ST JULIEN ET CARISIEU", + "nomCommune": "SICCIEU ST JULIEN ET CARISIEU" }, { - "codePostal": "30700", - "codeCommune": "30308", - "libelleAcheminement": "SANILHAC SAGRIES", - "nomCommune": "SANILHAC SAGRIES" + "codePostal": "38140", + "codeCommune": "38337", + "libelleAcheminement": "RIVES SUR FURE", + "nomCommune": "RIVES" }, { - "codePostal": "56150", - "codeCommune": "56074", - "libelleAcheminement": "GUENIN", - "nomCommune": "GUENIN" + "codePostal": "27270", + "codeCommune": "27138", + "libelleAcheminement": "CHAMBLAC", + "nomCommune": "CHAMBLAC" }, { - "codePostal": "01160", - "codeCommune": "01314", - "libelleAcheminement": "PRIAY", - "nomCommune": "PRIAY" + "codePostal": "28120", + "codeCommune": "28091", + "libelleAcheminement": "LES CHATELLIERS NOTRE DAME", + "nomCommune": "LES CHATELLIERS NOTRE DAME" }, { - "codePostal": "63500", - "codeCommune": "63160", - "libelleAcheminement": "AULHAT FLAT", - "nomCommune": "AULHAT FLAT" + "codePostal": "38570", + "codeCommune": "38501", + "libelleAcheminement": "TENCIN", + "nomCommune": "TENCIN" }, { - "codePostal": "30150", - "codeCommune": "30312", - "libelleAcheminement": "SAUVETERRE", - "nomCommune": "SAUVETERRE" + "codePostal": "38090", + "codeCommune": "38339", + "libelleAcheminement": "ROCHE", + "nomCommune": "ROCHE" }, { - "codePostal": "56380", - "codeCommune": "56075", - "libelleAcheminement": "GUER", - "nomCommune": "GUER" + "codePostal": "27600", + "codeCommune": "27142", + "libelleAcheminement": "CHAMPENARD", + "nomCommune": "CHAMPENARD" }, { - "codePostal": "01250", - "codeCommune": "01321", - "libelleAcheminement": "REVONNAS", - "nomCommune": "REVONNAS" + "codePostal": "28210", + "codeCommune": "28094", + "libelleAcheminement": "CHAUDON", + "nomCommune": "CHAUDON" }, { - "codePostal": "63500", - "codeCommune": "63160", - "libelleAcheminement": "AULHAT FLAT", - "nomCommune": "AULHAT FLAT" + "codePostal": "38460", + "codeCommune": "38515", + "libelleAcheminement": "TREPT", + "nomCommune": "TREPT" }, { - "codePostal": "30650", - "codeCommune": "30315", - "libelleAcheminement": "SAZE", - "nomCommune": "SAZE" + "codePostal": "38090", + "codeCommune": "38339", + "libelleAcheminement": "ROCHE", + "nomCommune": "ROCHE" }, { - "codePostal": "56310", - "codeCommune": "56076", - "libelleAcheminement": "GUERN", - "nomCommune": "GUERN" + "codePostal": "27220", + "codeCommune": "27144", + "libelleAcheminement": "CHAMPIGNY LA FUTELAYE", + "nomCommune": "CHAMPIGNY LA FUTELAYE" }, { - "codePostal": "01390", - "codeCommune": "01333", - "libelleAcheminement": "ST ANDRE DE CORCY", - "nomCommune": "ST ANDRE DE CORCY" + "codePostal": "28260", + "codeCommune": "28096", + "libelleAcheminement": "LA CHAUSSEE D IVRY", + "nomCommune": "LA CHAUSSEE D IVRY" }, { - "codePostal": "63620", - "codeCommune": "63165", - "libelleAcheminement": "GIAT", - "nomCommune": "GIAT" + "codePostal": "38210", + "codeCommune": "38517", + "libelleAcheminement": "TULLINS", + "nomCommune": "TULLINS" }, { - "codePostal": "30210", - "codeCommune": "30317", - "libelleAcheminement": "SERNHAC", - "nomCommune": "SERNHAC" + "codePostal": "38370", + "codeCommune": "38340", + "libelleAcheminement": "LES ROCHES DE CONDRIEU", + "nomCommune": "LES ROCHES DE CONDRIEU" }, { - "codePostal": "56490", - "codeCommune": "56080", - "libelleAcheminement": "GUILLIERS", - "nomCommune": "GUILLIERS" + "codePostal": "27230", + "codeCommune": "27149", + "libelleAcheminement": "LA CHAPELLE HARENG", + "nomCommune": "LA CHAPELLE HARENG" }, { - "codePostal": "01290", - "codeCommune": "01334", - "libelleAcheminement": "ST ANDRE D HUIRIAT", - "nomCommune": "ST ANDRE D HUIRIAT" + "codePostal": "28190", + "codeCommune": "28099", + "libelleAcheminement": "CHUISNES", + "nomCommune": "CHUISNES" }, { - "codePostal": "63340", - "codeCommune": "63166", - "libelleAcheminement": "GIGNAT", - "nomCommune": "GIGNAT" + "codePostal": "38210", + "codeCommune": "38517", + "libelleAcheminement": "TULLINS", + "nomCommune": "TULLINS" }, { - "codePostal": "30460", - "codeCommune": "30322", - "libelleAcheminement": "SOUDORGUES", - "nomCommune": "SOUDORGUES" + "codePostal": "38150", + "codeCommune": "38344", + "libelleAcheminement": "ROUSSILLON", + "nomCommune": "ROUSSILLON" }, { - "codePostal": "56120", - "codeCommune": "56082", - "libelleAcheminement": "HELLEAN", - "nomCommune": "HELLEAN" + "codePostal": "27250", + "codeCommune": "27156", + "libelleAcheminement": "CHERONVILLIERS", + "nomCommune": "CHERONVILLIERS" }, { - "codePostal": "01300", - "codeCommune": "01338", - "libelleAcheminement": "GROSLEE ST BENOIT", - "nomCommune": "GROSLEE ST BENOIT" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "63160", - "codeCommune": "63168", - "libelleAcheminement": "GLAINE MONTAIGUT", - "nomCommune": "GLAINE MONTAIGUT" + "codePostal": "38740", + "codeCommune": "38518", + "libelleAcheminement": "VALBONNAIS", + "nomCommune": "VALBONNAIS" }, { - "codePostal": "30750", - "codeCommune": "30332", - "libelleAcheminement": "TREVES", - "nomCommune": "TREVES" + "codePostal": "38940", + "codeCommune": "38347", + "libelleAcheminement": "ROYBON", + "nomCommune": "ROYBON" }, { - "codePostal": "56840", - "codeCommune": "56088", - "libelleAcheminement": "ILE D ARZ", - "nomCommune": "ILE D ARZ" + "codePostal": "27160", + "codeCommune": "27157", + "libelleAcheminement": "MARBOIS", + "nomCommune": "MARBOIS" }, { - "codePostal": "01120", - "codeCommune": "01342", - "libelleAcheminement": "STE CROIX", - "nomCommune": "STE CROIX" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "63230", - "codeCommune": "63170", - "libelleAcheminement": "LA GOUTELLE", - "nomCommune": "LA GOUTELLE" + "codePostal": "38730", + "codeCommune": "38520", + "libelleAcheminement": "VALENCOGNE", + "nomCommune": "VALENCOGNE" }, { - "codePostal": "30700", - "codeCommune": "30337", - "libelleAcheminement": "VALLABRIX", - "nomCommune": "VALLABRIX" + "codePostal": "38080", + "codeCommune": "38352", + "libelleAcheminement": "ST ALBAN DE ROCHE", + "nomCommune": "ST ALBAN DE ROCHE" }, { - "codePostal": "56300", - "codeCommune": "56093", - "libelleAcheminement": "KERGRIST", - "nomCommune": "KERGRIST" + "codePostal": "27240", + "codeCommune": "27157", + "libelleAcheminement": "MARBOIS", + "nomCommune": "MARBOIS" }, { - "codePostal": "01380", - "codeCommune": "01343", - "libelleAcheminement": "ST CYR SUR MENTHON", - "nomCommune": "ST CYR SUR MENTHON" + "codePostal": "28240", + "codeCommune": "28109", + "libelleAcheminement": "LES CORVEES LES YYS", + "nomCommune": "LES CORVEES LES YYS" }, { - "codePostal": "63390", - "codeCommune": "63171", - "libelleAcheminement": "GOUTTIERES", - "nomCommune": "GOUTTIERES" + "codePostal": "38350", + "codeCommune": "38521", + "libelleAcheminement": "LA VALETTE", + "nomCommune": "LA VALETTE" }, { - "codePostal": "30570", - "codeCommune": "30339", - "libelleAcheminement": "VAL D AIGOUAL", - "nomCommune": "VAL D AIGOUAL" + "codePostal": "38650", + "codeCommune": "38355", + "libelleAcheminement": "ST ANDEOL", + "nomCommune": "ST ANDEOL" }, { - "codePostal": "56160", - "codeCommune": "56099", - "libelleAcheminement": "LANGOELAN", - "nomCommune": "LANGOELAN" + "codePostal": "27500", + "codeCommune": "27163", + "libelleAcheminement": "COLLETOT", + "nomCommune": "COLLETOT" }, { - "codePostal": "01190", - "codeCommune": "01352", - "libelleAcheminement": "ST ETIENNE SUR REYSSOUZE", - "nomCommune": "ST ETIENNE SUR REYSSOUZE" + "codePostal": "28630", + "codeCommune": "28110", + "libelleAcheminement": "LE COUDRAY", + "nomCommune": "LE COUDRAY" }, { - "codePostal": "63500", - "codeCommune": "63178", - "libelleAcheminement": "ISSOIRE", - "nomCommune": "ISSOIRE" + "codePostal": "38410", + "codeCommune": "38529", + "libelleAcheminement": "VAULNAVEYS LE HAUT", + "nomCommune": "VAULNAVEYS LE HAUT" }, { - "codePostal": "30210", - "codeCommune": "30340", - "libelleAcheminement": "VALLIGUIERES", - "nomCommune": "VALLIGUIERES" + "codePostal": "38440", + "codeCommune": "38358", + "libelleAcheminement": "STE ANNE SUR GERVONDE", + "nomCommune": "STE ANNE SUR GERVONDE" }, { - "codePostal": "56260", - "codeCommune": "56107", - "libelleAcheminement": "LARMOR PLAGE", - "nomCommune": "LARMOR PLAGE" + "codePostal": "27150", + "codeCommune": "27176", + "libelleAcheminement": "COUDRAY", + "nomCommune": "COUDRAY" }, { - "codePostal": "01290", - "codeCommune": "01365", - "libelleAcheminement": "ST JEAN SUR VEYLE", - "nomCommune": "ST JEAN SUR VEYLE" + "codePostal": "28330", + "codeCommune": "28111", + "libelleAcheminement": "COUDRAY AU PERCHE", + "nomCommune": "COUDRAY AU PERCHE" }, { - "codePostal": "63460", - "codeCommune": "63181", - "libelleAcheminement": "JOZERAND", - "nomCommune": "JOZERAND" + "codePostal": "38290", + "codeCommune": "38537", + "libelleAcheminement": "LA VERPILLIERE", + "nomCommune": "LA VERPILLIERE" }, { - "codePostal": "30600", - "codeCommune": "30341", - "libelleAcheminement": "VAUVERT", - "nomCommune": "VAUVERT" + "codePostal": "38160", + "codeCommune": "38359", + "libelleAcheminement": "ST ANTOINE L ABBAYE", + "nomCommune": "ST ANTOINE L ABBAYE" }, { - "codePostal": "56500", - "codeCommune": "56117", - "libelleAcheminement": "LOCMINE", - "nomCommune": "LOCMINE" + "codePostal": "27320", + "codeCommune": "27181", + "libelleAcheminement": "COURDEMANCHE", + "nomCommune": "COURDEMANCHE" }, { - "codePostal": "01500", - "codeCommune": "01379", - "libelleAcheminement": "ST MAURICE DE REMENS", - "nomCommune": "ST MAURICE DE REMENS" + "codePostal": "28500", + "codeCommune": "28117", + "libelleAcheminement": "CRECY COUVE", + "nomCommune": "CRECY COUVE" }, { - "codePostal": "63570", - "codeCommune": "63182", - "libelleAcheminement": "JUMEAUX", - "nomCommune": "JUMEAUX" + "codePostal": "38510", + "codeCommune": "38543", + "libelleAcheminement": "VEZERONCE CURTIN", + "nomCommune": "VEZERONCE CURTIN" }, { - "codePostal": "30200", - "codeCommune": "30342", - "libelleAcheminement": "VENEJAN", - "nomCommune": "VENEJAN" + "codePostal": "38270", + "codeCommune": "38363", + "libelleAcheminement": "ST BARTHELEMY DE BEAUREPAIRE", + "nomCommune": "ST BARTHELEMY" }, { - "codePostal": "56570", - "codeCommune": "56118", - "libelleAcheminement": "LOCMIQUELIC", - "nomCommune": "LOCMIQUELIC" + "codePostal": "27110", + "codeCommune": "27185", + "libelleAcheminement": "CRESTOT", + "nomCommune": "CRESTOT" }, { - "codePostal": "01320", - "codeCommune": "01381", - "libelleAcheminement": "ST NIZIER LE DESERT", - "nomCommune": "ST NIZIER LE DESERT" + "codePostal": "28270", + "codeCommune": "28120", + "libelleAcheminement": "CRUCEY VILLAGES", + "nomCommune": "CRUCEY VILLAGES" }, { - "codePostal": "63570", - "codeCommune": "63185", - "libelleAcheminement": "LAMONTGIE", - "nomCommune": "LAMONTGIE" + "codePostal": "38510", + "codeCommune": "38543", + "libelleAcheminement": "VEZERONCE CURTIN", + "nomCommune": "VEZERONCE CURTIN" }, { - "codePostal": "30210", - "codeCommune": "30346", - "libelleAcheminement": "VERS PONT DU GARD", - "nomCommune": "VERS PONT DU GARD" + "codePostal": "38220", + "codeCommune": "38364", + "libelleAcheminement": "ST BARTHELEMY DE SECHILIENNE", + "nomCommune": "ST BARTHELEMY DE SECHILIENNE" }, { - "codePostal": "56430", - "codeCommune": "56127", - "libelleAcheminement": "MAURON", - "nomCommune": "MAURON" + "codePostal": "27120", + "codeCommune": "27190", + "libelleAcheminement": "CROISY SUR EURE", + "nomCommune": "CROISY SUR EURE" }, { - "codePostal": "01250", - "codeCommune": "01408", - "libelleAcheminement": "SIMANDRE SUR SURAN", - "nomCommune": "SIMANDRE SUR SURAN" + "codePostal": "28160", + "codeCommune": "28123", + "libelleAcheminement": "DAMPIERRE SOUS BROU", + "nomCommune": "DAMPIERRE SOUS BROU" }, { - "codePostal": "63820", - "codeCommune": "63189", - "libelleAcheminement": "LAQUEUILLE", - "nomCommune": "LAQUEUILLE" + "codePostal": "38890", + "codeCommune": "38546", + "libelleAcheminement": "VIGNIEU", + "nomCommune": "VIGNIEU" }, { - "codePostal": "30360", - "codeCommune": "30348", - "libelleAcheminement": "VEZENOBRES", - "nomCommune": "VEZENOBRES" + "codePostal": "38840", + "codeCommune": "38370", + "libelleAcheminement": "ST BONNET DE CHAVAGNE", + "nomCommune": "ST BONNET DE CHAVAGNE" }, { - "codePostal": "56890", - "codeCommune": "56132", - "libelleAcheminement": "MEUCON", - "nomCommune": "MEUCON" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "01510", - "codeCommune": "01415", - "libelleAcheminement": "TALISSIEU", - "nomCommune": "TALISSIEU" + "codePostal": "28700", + "codeCommune": "28129", + "libelleAcheminement": "DENONVILLE", + "nomCommune": "DENONVILLE" }, { - "codePostal": "63440", - "codeCommune": "63197", - "libelleAcheminement": "LISSEUIL", - "nomCommune": "LISSEUIL" + "codePostal": "38190", + "codeCommune": "38547", + "libelleAcheminement": "VILLARD BONNOT", + "nomCommune": "VILLARD BONNOT" }, { - "codePostal": "30230", - "codeCommune": "30356", - "libelleAcheminement": "RODILHAN", - "nomCommune": "RODILHAN" + "codePostal": "38620", + "codeCommune": "38372", + "libelleAcheminement": "ST BUEIL", + "nomCommune": "ST BUEIL" }, { - "codePostal": "56490", - "codeCommune": "56134", - "libelleAcheminement": "MOHON", - "nomCommune": "MOHON" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "01140", - "codeCommune": "01420", - "libelleAcheminement": "THOISSEY", - "nomCommune": "THOISSEY" + "codePostal": "28200", + "codeCommune": "28132", + "libelleAcheminement": "DONNEMAIN ST MAMES", + "nomCommune": "DONNEMAIN ST MAMES" }, { - "codePostal": "63350", - "codeCommune": "63201", - "libelleAcheminement": "LUZILLAT", - "nomCommune": "LUZILLAT" + "codePostal": "38250", + "codeCommune": "38548", + "libelleAcheminement": "VILLARD DE LANS", + "nomCommune": "VILLARD DE LANS" }, { - "codePostal": "31450", - "codeCommune": "31004", - "libelleAcheminement": "AYGUESVIVES", - "nomCommune": "AYGUESVIVES" + "codePostal": "38110", + "codeCommune": "38377", + "libelleAcheminement": "ST CLAIR DE LA TOUR", + "nomCommune": "ST CLAIR DE LA TOUR" }, { - "codePostal": "56500", - "codeCommune": "56141", - "libelleAcheminement": "MOUSTOIR AC", - "nomCommune": "MOUSTOIR AC" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "01370", - "codeCommune": "01426", - "libelleAcheminement": "VAL REVERMONT", - "nomCommune": "VAL REVERMONT" + "codePostal": "28500", + "codeCommune": "28136", + "libelleAcheminement": "ECLUZELLES", + "nomCommune": "ECLUZELLES" }, { - "codePostal": "63270", - "codeCommune": "63205", - "libelleAcheminement": "MANGLIEU", - "nomCommune": "MANGLIEU" + "codePostal": "38114", + "codeCommune": "38550", + "libelleAcheminement": "VILLARD RECULAS", + "nomCommune": "VILLARD RECULAS" }, { - "codePostal": "31230", - "codeCommune": "31008", - "libelleAcheminement": "ANAN", - "nomCommune": "ANAN" + "codePostal": "38940", + "codeCommune": "38379", + "libelleAcheminement": "ST CLAIR SUR GALAURE", + "nomCommune": "ST CLAIR SUR GALAURE" }, { - "codePostal": "56300", - "codeCommune": "56146", - "libelleAcheminement": "NEULLIAC", - "nomCommune": "NEULLIAC" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "01140", - "codeCommune": "01428", - "libelleAcheminement": "VALEINS", - "nomCommune": "VALEINS" + "codePostal": "28330", + "codeCommune": "28144", + "libelleAcheminement": "LES ETILLEUX", + "nomCommune": "LES ETILLEUX" }, { - "codePostal": "63410", - "codeCommune": "63206", - "libelleAcheminement": "MANZAT", - "nomCommune": "MANZAT" + "codePostal": "38440", + "codeCommune": "38555", + "libelleAcheminement": "VILLENEUVE DE MARC", + "nomCommune": "VILLENEUVE DE MARC" }, { - "codePostal": "31510", - "codeCommune": "31009", - "libelleAcheminement": "ANTICHAN DE FRONTIGNES", - "nomCommune": "ANTICHAN DE FRONTIGNES" + "codePostal": "38590", + "codeCommune": "38384", + "libelleAcheminement": "ST ETIENNE DE ST GEOIRS", + "nomCommune": "ST ETIENNE DE ST GEOIRS" }, { - "codePostal": "56140", - "codeCommune": "56159", - "libelleAcheminement": "PLEUCADEUC", - "nomCommune": "PLEUCADEUC" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "01560", - "codeCommune": "01433", - "libelleAcheminement": "VERNOUX", - "nomCommune": "VERNOUX" + "codePostal": "28210", + "codeCommune": "28146", + "libelleAcheminement": "FAVEROLLES", + "nomCommune": "FAVEROLLES" }, { - "codePostal": "63340", - "codeCommune": "63209", - "libelleAcheminement": "MAREUGHEOL", - "nomCommune": "MAREUGHEOL" + "codePostal": "38730", + "codeCommune": "38560", + "libelleAcheminement": "VAL DE VIRIEU", + "nomCommune": "VAL DE VIRIEU" }, { - "codePostal": "31210", - "codeCommune": "31013", - "libelleAcheminement": "ARDIEGE", - "nomCommune": "ARDIEGE" + "codePostal": "38620", + "codeCommune": "38386", + "libelleAcheminement": "ST GEOIRE EN VALDAINE", + "nomCommune": "ST GEOIRE EN VALDAINE" }, { - "codePostal": "56310", - "codeCommune": "56173", - "libelleAcheminement": "PLUMELIAU BIEUZY", - "nomCommune": "PLUMELIAU BIEUZY" + "codePostal": "27240", + "codeCommune": "27198", + "libelleAcheminement": "MESNILS SUR ITON", + "nomCommune": "MESNILS SUR ITON" }, { - "codePostal": "01330", - "codeCommune": "01434", - "libelleAcheminement": "VERSAILLEUX", - "nomCommune": "VERSAILLEUX" + "codePostal": "28190", + "codeCommune": "28154", + "libelleAcheminement": "FONTAINE LA GUYON", + "nomCommune": "FONTAINE LA GUYON" }, { - "codePostal": "63720", - "codeCommune": "63215", - "libelleAcheminement": "MARTRES SUR MORGE", - "nomCommune": "MARTRES SUR MORGE" + "codePostal": "38210", + "codeCommune": "38566", + "libelleAcheminement": "VOUREY", + "nomCommune": "VOUREY" }, { - "codePostal": "31160", - "codeCommune": "31014", - "libelleAcheminement": "ARGUENOS", - "nomCommune": "ARGUENOS" + "codePostal": "38470", + "codeCommune": "38390", + "libelleAcheminement": "ST GERVAIS", + "nomCommune": "ST GERVAIS" }, { - "codePostal": "56330", - "codeCommune": "56177", - "libelleAcheminement": "PLUVIGNER", - "nomCommune": "PLUVIGNER" + "codePostal": "27110", + "codeCommune": "27201", + "libelleAcheminement": "DAUBEUF LA CAMPAGNE", + "nomCommune": "DAUBEUF LA CAMPAGNE" }, { - "codePostal": "01560", - "codeCommune": "01437", - "libelleAcheminement": "VESCOURS", - "nomCommune": "VESCOURS" + "codePostal": "28170", + "codeCommune": "28155", + "libelleAcheminement": "FONTAINE LES RIBOUTS", + "nomCommune": "FONTAINE LES RIBOUTS" }, { - "codePostal": "63560", - "codeCommune": "63223", - "libelleAcheminement": "MENAT", - "nomCommune": "MENAT" + "codePostal": "38410", + "codeCommune": "38567", + "libelleAcheminement": "CHAMROUSSE", + "nomCommune": "CHAMROUSSE" }, { - "codePostal": "31110", - "codeCommune": "31019", - "libelleAcheminement": "ARTIGUE", - "nomCommune": "ARTIGUE" + "codePostal": "38260", + "codeCommune": "38393", + "libelleAcheminement": "ST HILAIRE DE LA COTE", + "nomCommune": "ST HILAIRE DE LA COTE" }, { - "codePostal": "56300", - "codeCommune": "56178", - "libelleAcheminement": "PONTIVY", - "nomCommune": "PONTIVY" + "codePostal": "27320", + "codeCommune": "27206", + "libelleAcheminement": "DROISY", + "nomCommune": "DROISY" }, { - "codePostal": "01570", - "codeCommune": "01439", - "libelleAcheminement": "VESINES", - "nomCommune": "VESINES" + "codePostal": "28250", + "codeCommune": "28159", + "libelleAcheminement": "LA FRAMBOISIERE", + "nomCommune": "LA FRAMBOISIERE" }, { - "codePostal": "63750", - "codeCommune": "63225", - "libelleAcheminement": "MESSEIX", - "nomCommune": "MESSEIX" + "codePostal": "39800", + "codeCommune": "39003", + "libelleAcheminement": "ABERGEMENT LE PETIT", + "nomCommune": "ABERGEMENT LE PETIT" }, { - "codePostal": "31800", - "codeCommune": "31021", - "libelleAcheminement": "ASPRET SARRAT", - "nomCommune": "ASPRET SARRAT" + "codePostal": "38330", + "codeCommune": "38397", + "libelleAcheminement": "ST ISMIER", + "nomCommune": "ST ISMIER" }, { - "codePostal": "56620", - "codeCommune": "56179", - "libelleAcheminement": "PONT SCORFF", - "nomCommune": "PONT SCORFF" + "codePostal": "27170", + "codeCommune": "27210", + "libelleAcheminement": "ECARDENVILLE LA CAMPAGNE", + "nomCommune": "ECARDENVILLE LA CAMPAGNE" }, { - "codePostal": "01430", - "codeCommune": "01441", - "libelleAcheminement": "VIEU D IZENAVE", - "nomCommune": "VIEU D IZENAVE" + "codePostal": "28360", + "codeCommune": "28162", + "libelleAcheminement": "FRESNAY LE COMTE", + "nomCommune": "FRESNAY LE COMTE" }, { - "codePostal": "63111", - "codeCommune": "63226", - "libelleAcheminement": "MUR SUR ALLIER", - "nomCommune": "MUR SUR ALLIER" + "codePostal": "39110", + "codeCommune": "39004", + "libelleAcheminement": "ABERGEMENT LES THESY", + "nomCommune": "ABERGEMENT LES THESY" }, { - "codePostal": "31420", - "codeCommune": "31023", - "libelleAcheminement": "AULON", - "nomCommune": "AULON" + "codePostal": "38710", + "codeCommune": "38403", + "libelleAcheminement": "ST JEAN D HERANS", + "nomCommune": "ST JEAN D HERANS" }, { - "codePostal": "56500", - "codeCommune": "56190", - "libelleAcheminement": "REGUINY", - "nomCommune": "REGUINY" + "codePostal": "27510", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "01800", - "codeCommune": "01450", - "libelleAcheminement": "VILLIEU LOYES MOLLON", - "nomCommune": "VILLIEU LOYES MOLLON" + "codePostal": "28320", + "codeCommune": "28168", + "libelleAcheminement": "GALLARDON", + "nomCommune": "GALLARDON" }, { - "codePostal": "63380", - "codeCommune": "63228", - "libelleAcheminement": "MIREMONT", - "nomCommune": "MIREMONT" + "codePostal": "39700", + "codeCommune": "39008", + "libelleAcheminement": "AMANGE", + "nomCommune": "AMANGE" }, { - "codePostal": "31460", - "codeCommune": "31026", - "libelleAcheminement": "AURIAC SUR VENDINELLE", - "nomCommune": "AURIAC SUR VENDINELLE" + "codePostal": "38420", + "codeCommune": "38404", + "libelleAcheminement": "ST JEAN LE VIEUX", + "nomCommune": "ST JEAN LE VIEUX" }, { - "codePostal": "56670", - "codeCommune": "56193", - "libelleAcheminement": "RIANTEC", - "nomCommune": "RIANTEC" + "codePostal": "27630", + "codeCommune": "27213", + "libelleAcheminement": "VEXIN SUR EPTE", + "nomCommune": "VEXIN SUR EPTE" }, { - "codePostal": "01300", - "codeCommune": "01454", - "libelleAcheminement": "VIRIGNIN", - "nomCommune": "VIRIGNIN" + "codePostal": "28300", + "codeCommune": "28173", + "libelleAcheminement": "GASVILLE OISEME", + "nomCommune": "GASVILLE OISEME" }, { - "codePostal": "63650", - "codeCommune": "63231", - "libelleAcheminement": "LA MONNERIE LE MONTEL", - "nomCommune": "LA MONNERIE LE MONTEL" + "codePostal": "39290", + "codeCommune": "39014", + "libelleAcheminement": "ARCHELANGE", + "nomCommune": "ARCHELANGE" }, { - "codePostal": "31850", - "codeCommune": "31053", - "libelleAcheminement": "BEAUPUY", - "nomCommune": "BEAUPUY" + "codePostal": "38160", + "codeCommune": "38416", + "libelleAcheminement": "ST MARCELLIN", + "nomCommune": "ST MARCELLIN" }, { - "codePostal": "56350", - "codeCommune": "56194", - "libelleAcheminement": "RIEUX", - "nomCommune": "RIEUX" + "codePostal": "27150", + "codeCommune": "27226", + "libelleAcheminement": "ETREPAGNY", + "nomCommune": "ETREPAGNY" }, { - "codePostal": "01350", - "codeCommune": "01456", - "libelleAcheminement": "VONGNES", - "nomCommune": "VONGNES" + "codePostal": "28630", + "codeCommune": "28177", + "libelleAcheminement": "GELLAINVILLE", + "nomCommune": "GELLAINVILLE" }, { - "codePostal": "63114", - "codeCommune": "63241", - "libelleAcheminement": "MONTPEYROUX", - "nomCommune": "MONTPEYROUX" + "codePostal": "39240", + "codeCommune": "39018", + "libelleAcheminement": "AROMAS", + "nomCommune": "AROMAS" }, { - "codePostal": "31460", - "codeCommune": "31055", - "libelleAcheminement": "BEAUVILLE", - "nomCommune": "BEAUVILLE" + "codePostal": "38660", + "codeCommune": "38418", + "libelleAcheminement": "STE MARIE DU MONT", + "nomCommune": "STE MARIE DU MONT" }, { - "codePostal": "56110", - "codeCommune": "56201", - "libelleAcheminement": "LE SAINT", - "nomCommune": "LE SAINT" + "codePostal": "27530", + "codeCommune": "27230", + "libelleAcheminement": "EZY SUR EURE", + "nomCommune": "EZY SUR EURE" }, { - "codePostal": "02200", - "codeCommune": "02003", - "libelleAcheminement": "ACY", - "nomCommune": "ACY" + "codePostal": "28500", + "codeCommune": "28178", + "libelleAcheminement": "GERMAINVILLE", + "nomCommune": "GERMAINVILLE" }, { - "codePostal": "63160", - "codeCommune": "63252", - "libelleAcheminement": "NEUVILLE", - "nomCommune": "NEUVILLE" + "codePostal": "39120", + "codeCommune": "39022", + "libelleAcheminement": "ASNANS BEAUVOISIN", + "nomCommune": "ASNANS BEAUVOISIN" }, { - "codePostal": "31450", - "codeCommune": "31057", - "libelleAcheminement": "BELBERAUD", - "nomCommune": "BELBERAUD" + "codePostal": "38930", + "codeCommune": "38424", + "libelleAcheminement": "ST MAURICE EN TRIEVES", + "nomCommune": "ST MAURICE EN TRIEVES" }, { - "codePostal": "56140", - "codeCommune": "56211", - "libelleAcheminement": "ST CONGARD", - "nomCommune": "ST CONGARD" + "codePostal": "27930", + "codeCommune": "27234", + "libelleAcheminement": "FAUVILLE", + "nomCommune": "FAUVILLE" }, { - "codePostal": "02190", - "codeCommune": "02005", - "libelleAcheminement": "AGUILCOURT", - "nomCommune": "AGUILCOURT" + "codePostal": "28260", + "codeCommune": "28180", + "libelleAcheminement": "GILLES", + "nomCommune": "GILLES" }, { - "codePostal": "63450", - "codeCommune": "63259", - "libelleAcheminement": "OLLOIX", - "nomCommune": "OLLOIX" + "codePostal": "39120", + "codeCommune": "39022", + "libelleAcheminement": "ASNANS BEAUVOISIN", + "nomCommune": "ASNANS BEAUVOISIN" }, { - "codePostal": "31260", - "codeCommune": "31059", - "libelleAcheminement": "BELBEZE EN COMMINGES", - "nomCommune": "BELBEZE EN COMMINGES" + "codePostal": "38590", + "codeCommune": "38427", + "libelleAcheminement": "ST MICHEL DE ST GEOIRS", + "nomCommune": "ST MICHEL DE ST GEOIRS" }, { - "codePostal": "56430", - "codeCommune": "56225", - "libelleAcheminement": "ST LERY", - "nomCommune": "ST LERY" + "codePostal": "27110", + "codeCommune": "27241", + "libelleAcheminement": "FEUGUEROLLES", + "nomCommune": "FEUGUEROLLES" }, { - "codePostal": "02320", - "codeCommune": "02018", - "libelleAcheminement": "ANIZY LE GRAND", - "nomCommune": "ANIZY LE GRAND" + "codePostal": "28700", + "codeCommune": "28188", + "libelleAcheminement": "LE GUE DE LONGROI", + "nomCommune": "LE GUE DE LONGROI" }, { - "codePostal": "63880", - "codeCommune": "63260", - "libelleAcheminement": "OLMET", - "nomCommune": "OLMET" + "codePostal": "39700", + "codeCommune": "39024", + "libelleAcheminement": "AUDELANGE", + "nomCommune": "AUDELANGE" }, { - "codePostal": "31390", - "codeCommune": "31071", - "libelleAcheminement": "BOIS DE LA PIERRE", - "nomCommune": "BOIS DE LA PIERRE" + "codePostal": "38190", + "codeCommune": "38430", + "libelleAcheminement": "ST MURY MONTEYMOND", + "nomCommune": "ST MURY MONTEYMOND" }, { - "codePostal": "56350", - "codeCommune": "56232", - "libelleAcheminement": "ST PERREUX", - "nomCommune": "ST PERREUX" + "codePostal": "27600", + "codeCommune": "27249", + "libelleAcheminement": "FONTAINE BELLENGER", + "nomCommune": "FONTAINE BELLENGER" }, { - "codePostal": "02130", - "codeCommune": "02022", - "libelleAcheminement": "ARCY STE RESTITUE", - "nomCommune": "ARCY STE RESTITUE" + "codePostal": "28130", + "codeCommune": "28191", + "libelleAcheminement": "HANCHES", + "nomCommune": "HANCHES" }, { - "codePostal": "63210", - "codeCommune": "63264", - "libelleAcheminement": "ORCIVAL", - "nomCommune": "ORCIVAL" + "codePostal": "39380", + "codeCommune": "39026", + "libelleAcheminement": "AUGERANS", + "nomCommune": "AUGERANS" }, { - "codePostal": "31580", - "codeCommune": "31078", - "libelleAcheminement": "BOUDRAC", - "nomCommune": "BOUDRAC" + "codePostal": "38250", + "codeCommune": "38433", + "libelleAcheminement": "ST NIZIER DU MOUCHEROTTE", + "nomCommune": "ST NIZIER DU MOUCHEROTTE" }, { - "codePostal": "56250", - "codeCommune": "56247", - "libelleAcheminement": "SULNIAC", - "nomCommune": "SULNIAC" + "codePostal": "27220", + "codeCommune": "27271", + "libelleAcheminement": "FRESNEY", + "nomCommune": "FRESNEY" }, { - "codePostal": "02270", - "codeCommune": "02027", - "libelleAcheminement": "ASSIS SUR SERRE", - "nomCommune": "ASSIS SUR SERRE" + "codePostal": "28310", + "codeCommune": "28199", + "libelleAcheminement": "JANVILLE EN BEAUCE", + "nomCommune": "JANVILLE EN BEAUCE" }, { - "codePostal": "63270", - "codeCommune": "63269", - "libelleAcheminement": "PARENT", - "nomCommune": "PARENT" + "codePostal": "39160", + "codeCommune": "39035", + "libelleAcheminement": "BALANOD", + "nomCommune": "BALANOD" }, { - "codePostal": "31110", - "codeCommune": "31081", - "libelleAcheminement": "BOURG D OUEIL", - "nomCommune": "BOURG D OUEIL" + "codePostal": "38870", + "codeCommune": "38440", + "libelleAcheminement": "ST PIERRE DE BRESSIEUX", + "nomCommune": "ST PIERRE DE BRESSIEUX" }, { - "codePostal": "56450", - "codeCommune": "56248", - "libelleAcheminement": "SURZUR", - "nomCommune": "SURZUR" + "codePostal": "27620", + "codeCommune": "27279", + "libelleAcheminement": "GASNY", + "nomCommune": "GASNY" }, { - "codePostal": "02420", - "codeCommune": "02030", - "libelleAcheminement": "AUBENCHEUL AUX BOIS", - "nomCommune": "AUBENCHEUL AUX BOIS" + "codePostal": "28340", + "codeCommune": "28202", + "libelleAcheminement": "LAMBLORE", + "nomCommune": "LAMBLORE" }, { - "codePostal": "63170", - "codeCommune": "63272", - "libelleAcheminement": "PERIGNAT LES SARLIEVE", - "nomCommune": "PERIGNAT LES SARLIEVE" + "codePostal": "39700", + "codeCommune": "39039", + "libelleAcheminement": "LA BARRE", + "nomCommune": "LA BARRE" }, { - "codePostal": "31360", - "codeCommune": "31084", - "libelleAcheminement": "BOUSSENS", - "nomCommune": "BOUSSENS" + "codePostal": "38070", + "codeCommune": "38449", + "libelleAcheminement": "ST QUENTIN FALLAVIER", + "nomCommune": "ST QUENTIN FALLAVIER" }, { - "codePostal": "56370", - "codeCommune": "56252", - "libelleAcheminement": "LE TOUR DU PARC", - "nomCommune": "LE TOUR DU PARC" + "codePostal": "27290", + "codeCommune": "27288", + "libelleAcheminement": "GLOS SUR RISLE", + "nomCommune": "GLOS SUR RISLE" }, { - "codePostal": "02300", - "codeCommune": "02041", - "libelleAcheminement": "AUTREVILLE", - "nomCommune": "AUTREVILLE" + "codePostal": "28190", + "codeCommune": "28203", + "libelleAcheminement": "LANDELLES", + "nomCommune": "LANDELLES" }, { - "codePostal": "63380", - "codeCommune": "63283", - "libelleAcheminement": "PONTAUMUR", - "nomCommune": "PONTAUMUR" + "codePostal": "39570", + "codeCommune": "39041", + "libelleAcheminement": "BAUME LES MESSIEURS", + "nomCommune": "BAUME LES MESSIEURS" }, { - "codePostal": "31440", - "codeCommune": "31085", - "libelleAcheminement": "BOUTX", - "nomCommune": "BOUTX" + "codePostal": "38070", + "codeCommune": "38449", + "libelleAcheminement": "ST QUENTIN FALLAVIER", + "nomCommune": "ST QUENTIN FALLAVIER" }, { - "codePostal": "56400", - "codeCommune": "56263", - "libelleAcheminement": "STE ANNE D AURAY", - "nomCommune": "STE ANNE D AURAY" + "codePostal": "27930", + "codeCommune": "27299", + "libelleAcheminement": "GRAVIGNY", + "nomCommune": "GRAVIGNY" }, { - "codePostal": "02000", - "codeCommune": "02047", - "libelleAcheminement": "BARENTON CEL", - "nomCommune": "BARENTON CEL" + "codePostal": "28200", + "codeCommune": "28211", + "libelleAcheminement": "LOGRON", + "nomCommune": "LOGRON" }, { - "codePostal": "63470", - "codeCommune": "63289", - "libelleAcheminement": "PRONDINES", - "nomCommune": "PRONDINES" + "codePostal": "39800", + "codeCommune": "39049", + "libelleAcheminement": "BERSAILLIN", + "nomCommune": "BERSAILLIN" }, { - "codePostal": "31490", - "codeCommune": "31088", - "libelleAcheminement": "BRAX", - "nomCommune": "BRAX" + "codePostal": "38210", + "codeCommune": "38450", + "libelleAcheminement": "ST QUENTIN SUR ISERE", + "nomCommune": "ST QUENTIN SUR ISERE" }, { - "codePostal": "56540", - "codeCommune": "56264", - "libelleAcheminement": "KERNASCLEDEN", - "nomCommune": "KERNASCLEDEN" + "codePostal": "27220", + "codeCommune": "27301", + "libelleAcheminement": "GROSSOEUVRE", + "nomCommune": "GROSSOEUVRE" }, { - "codePostal": "02850", - "codeCommune": "02051", - "libelleAcheminement": "BARZY SUR MARNE", - "nomCommune": "BARZY SUR MARNE" + "codePostal": "28140", + "codeCommune": "28212", + "libelleAcheminement": "LOIGNY LA BATAILLE", + "nomCommune": "LOIGNY LA BATAILLE" }, { - "codePostal": "63290", - "codeCommune": "63301", - "libelleAcheminement": "RIS", - "nomCommune": "RIS" + "codePostal": "39800", + "codeCommune": "39054", + "libelleAcheminement": "BIEFMORIN", + "nomCommune": "BIEFMORIN" }, { - "codePostal": "31420", - "codeCommune": "31109", - "libelleAcheminement": "CASSAGNABERE TOURNAS", - "nomCommune": "CASSAGNABERE TOURNAS" + "codePostal": "38460", + "codeCommune": "38451", + "libelleAcheminement": "ST ROMAIN DE JALIONAS", + "nomCommune": "ST ROMAIN DE JALIONAS" }, { - "codePostal": "57560", - "codeCommune": "57003", - "libelleAcheminement": "ABRESCHVILLER", - "nomCommune": "ABRESCHVILLER" + "codePostal": "27370", + "codeCommune": "27302", + "libelleAcheminement": "LE BOSC DU THEIL", + "nomCommune": "LE BOSC DU THEIL" }, { - "codePostal": "02330", - "codeCommune": "02053", - "libelleAcheminement": "VALLEES EN CHAMPAGNE", - "nomCommune": "VALLEES EN CHAMPAGNE" + "codePostal": "28140", + "codeCommune": "28221", + "libelleAcheminement": "LUMEAU", + "nomCommune": "LUMEAU" }, { - "codePostal": "63210", - "codeCommune": "63305", - "libelleAcheminement": "ROCHEFORT MONTAGNE", - "nomCommune": "ROCHEFORT MONTAGNE" + "codePostal": "39130", + "codeCommune": "39058", + "libelleAcheminement": "BLYE", + "nomCommune": "BLYE" }, { - "codePostal": "31320", - "codeCommune": "31113", - "libelleAcheminement": "CASTANET TOLOSAN", - "nomCommune": "CASTANET TOLOSAN" + "codePostal": "38150", + "codeCommune": "38452", + "libelleAcheminement": "ST ROMAIN DE SURIEU", + "nomCommune": "ST ROMAIN DE SURIEU" }, { - "codePostal": "57340", - "codeCommune": "57004", - "libelleAcheminement": "ACHAIN", - "nomCommune": "ACHAIN" + "codePostal": "27150", + "codeCommune": "27324", + "libelleAcheminement": "HEBECOURT", + "nomCommune": "HEBECOURT" }, { - "codePostal": "02160", - "codeCommune": "02058", - "libelleAcheminement": "BEAURIEUX", - "nomCommune": "BEAURIEUX" + "codePostal": "28170", + "codeCommune": "28226", + "libelleAcheminement": "MAILLEBOIS", + "nomCommune": "MAILLEBOIS" }, { - "codePostal": "63540", - "codeCommune": "63307", - "libelleAcheminement": "ROMAGNAT", - "nomCommune": "ROMAGNAT" + "codePostal": "39220", + "codeCommune": "39059", + "libelleAcheminement": "BOIS D AMONT", + "nomCommune": "BOIS D AMONT" }, { - "codePostal": "31160", - "codeCommune": "31114", - "libelleAcheminement": "CASTELBIAGUE", - "nomCommune": "CASTELBIAGUE" + "codePostal": "38160", + "codeCommune": "38454", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "57580", - "codeCommune": "57007", - "libelleAcheminement": "ADAINCOURT", - "nomCommune": "ADAINCOURT" + "codePostal": "27110", + "codeCommune": "27327", + "libelleAcheminement": "HECTOMARE", + "nomCommune": "HECTOMARE" }, { - "codePostal": "02200", - "codeCommune": "02064", - "libelleAcheminement": "BELLEU", - "nomCommune": "BELLEU" + "codePostal": "28400", + "codeCommune": "28236", + "libelleAcheminement": "ARCISSES", + "nomCommune": "ARCISSES" }, { - "codePostal": "63540", - "codeCommune": "63307", - "libelleAcheminement": "ROMAGNAT", - "nomCommune": "ROMAGNAT" + "codePostal": "39230", + "codeCommune": "39060", + "libelleAcheminement": "BOIS DE GAND", + "nomCommune": "BOIS DE GAND" }, { - "codePostal": "31180", - "codeCommune": "31117", - "libelleAcheminement": "CASTELMAUROU", - "nomCommune": "CASTELMAUROU" + "codePostal": "38200", + "codeCommune": "38459", + "libelleAcheminement": "ST SORLIN DE VIENNE", + "nomCommune": "ST SORLIN DE VIENNE" }, { - "codePostal": "57170", - "codeCommune": "57018", - "libelleAcheminement": "AMELECOURT", - "nomCommune": "AMELECOURT" + "codePostal": "27630", + "codeCommune": "27331", + "libelleAcheminement": "HEUBECOURT HARICOURT", + "nomCommune": "HEUBECOURT HARICOURT" }, { - "codePostal": "02250", - "codeCommune": "02068", - "libelleAcheminement": "BERLANCOURT", - "nomCommune": "BERLANCOURT" + "codePostal": "28400", + "codeCommune": "28237", + "libelleAcheminement": "MAROLLES LES BUIS", + "nomCommune": "MAROLLES LES BUIS" }, { - "codePostal": "63130", - "codeCommune": "63308", - "libelleAcheminement": "ROYAT", - "nomCommune": "ROYAT" + "codePostal": "39240", + "codeCommune": "39062", + "libelleAcheminement": "LA BOISSIERE", + "nomCommune": "LA BOISSIERE" }, { - "codePostal": "31110", - "codeCommune": "31123", - "libelleAcheminement": "CASTILLON DE LARBOUST", - "nomCommune": "CASTILLON DE LARBOUST" + "codePostal": "38620", + "codeCommune": "38460", + "libelleAcheminement": "ST SULPICE DES RIVOIRES", + "nomCommune": "ST SULPICE DES RIVOIRES" }, { - "codePostal": "57320", - "codeCommune": "57025", - "libelleAcheminement": "ANZELING", - "nomCommune": "ANZELING" + "codePostal": "27600", + "codeCommune": "27332", + "libelleAcheminement": "HEUDEBOUVILLE", + "nomCommune": "HEUDEBOUVILLE" }, { - "codePostal": "02290", - "codeCommune": "02071", - "libelleAcheminement": "BERNY RIVIERE", - "nomCommune": "BERNY RIVIERE" + "codePostal": "28500", + "codeCommune": "28239", + "libelleAcheminement": "MARVILLE MOUTIERS BRULE", + "nomCommune": "MARVILLE MOUTIERS BRULE" }, { - "codePostal": "63840", - "codeCommune": "63309", - "libelleAcheminement": "SAILLANT", - "nomCommune": "SAILLANT" + "codePostal": "39800", + "codeCommune": "39065", + "libelleAcheminement": "BONNEFONTAINE", + "nomCommune": "BONNEFONTAINE" }, { - "codePostal": "31160", - "codeCommune": "31131", - "libelleAcheminement": "CAZAUNOUS", - "nomCommune": "CAZAUNOUS" + "codePostal": "38110", + "codeCommune": "38464", + "libelleAcheminement": "ST VICTOR DE CESSIEU", + "nomCommune": "ST VICTOR DE CESSIEU" }, { - "codePostal": "57130", - "codeCommune": "57032", - "libelleAcheminement": "ARS SUR MOSELLE", - "nomCommune": "ARS SUR MOSELLE" + "codePostal": "27400", + "codeCommune": "27335", + "libelleAcheminement": "HEUDREVILLE SUR EURE", + "nomCommune": "HEUDREVILLE SUR EURE" }, { - "codePostal": "02200", - "codeCommune": "02077", - "libelleAcheminement": "BERZY LE SEC", - "nomCommune": "BERZY LE SEC" + "codePostal": "28120", + "codeCommune": "28245", + "libelleAcheminement": "MESLAY LE GRENET", + "nomCommune": "MESLAY LE GRENET" }, { - "codePostal": "63120", - "codeCommune": "63310", - "libelleAcheminement": "STE AGATHE", - "nomCommune": "STE AGATHE" + "codePostal": "39290", + "codeCommune": "39074", + "libelleAcheminement": "BRANS", + "nomCommune": "BRANS" }, { - "codePostal": "31220", - "codeCommune": "31135", - "libelleAcheminement": "CAZERES", - "nomCommune": "CAZERES" + "codePostal": "38890", + "codeCommune": "38467", + "libelleAcheminement": "SALAGNON", + "nomCommune": "SALAGNON" }, { - "codePostal": "57170", - "codeCommune": "57036", - "libelleAcheminement": "ATTILLONCOURT", - "nomCommune": "ATTILLONCOURT" + "codePostal": "27290", + "codeCommune": "27349", + "libelleAcheminement": "ILLEVILLE SUR MONTFORT", + "nomCommune": "ILLEVILLE SUR MONTFORT" }, { - "codePostal": "02300", - "codeCommune": "02086", - "libelleAcheminement": "BICHANCOURT", - "nomCommune": "BICHANCOURT" + "codePostal": "28260", + "codeCommune": "28247", + "libelleAcheminement": "LE MESNIL SIMON", + "nomCommune": "LE MESNIL SIMON" }, { - "codePostal": "63220", - "codeCommune": "63312", - "libelleAcheminement": "ST ALYRE D ARLANC", - "nomCommune": "ST ALYRE D ARLANC" + "codePostal": "39100", + "codeCommune": "39078", + "libelleAcheminement": "BREVANS", + "nomCommune": "BREVANS" }, { - "codePostal": "31510", - "codeCommune": "31143", - "libelleAcheminement": "CIER DE RIVIERE", - "nomCommune": "CIER DE RIVIERE" + "codePostal": "38290", + "codeCommune": "38475", + "libelleAcheminement": "SATOLAS ET BONCE", + "nomCommune": "SATOLAS ET BONCE" }, { - "codePostal": "57685", - "codeCommune": "57039", - "libelleAcheminement": "AUGNY", - "nomCommune": "AUGNY" + "codePostal": "27250", + "codeCommune": "27359", + "libelleAcheminement": "JUIGNETTES", + "nomCommune": "JUIGNETTES" }, { - "codePostal": "02160", - "codeCommune": "02091", - "libelleAcheminement": "BLANZY LES FISMES", - "nomCommune": "BLANZY LES FISMES" + "codePostal": "28630", + "codeCommune": "28253", + "libelleAcheminement": "MIGNIERES", + "nomCommune": "MIGNIERES" }, { - "codePostal": "63890", - "codeCommune": "63314", - "libelleAcheminement": "ST AMANT ROCHE SAVINE", - "nomCommune": "ST AMANT ROCHE SAVINE" + "codePostal": "39570", + "codeCommune": "39079", + "libelleAcheminement": "BRIOD", + "nomCommune": "BRIOD" }, { - "codePostal": "31440", - "codeCommune": "31144", - "libelleAcheminement": "CIERP GAUD", - "nomCommune": "CIERP GAUD" + "codePostal": "38290", + "codeCommune": "38475", + "libelleAcheminement": "SATOLAS ET BONCE", + "nomCommune": "SATOLAS ET BONCE" }, { - "codePostal": "57810", - "codeCommune": "57042", - "libelleAcheminement": "AVRICOURT", - "nomCommune": "AVRICOURT" + "codePostal": "27210", + "codeCommune": "27361", + "libelleAcheminement": "LA LANDE ST LEGER", + "nomCommune": "LA LANDE ST LEGER" }, { - "codePostal": "02220", - "codeCommune": "02120", - "libelleAcheminement": "BRENELLE", - "nomCommune": "BRENELLE" + "codePostal": "28700", + "codeCommune": "28255", + "libelleAcheminement": "MOINVILLE LA JEULIN", + "nomCommune": "MOINVILLE LA JEULIN" }, { - "codePostal": "63630", - "codeCommune": "63324", - "libelleAcheminement": "ST BONNET LE CHASTEL", - "nomCommune": "ST BONNET LE CHASTEL" + "codePostal": "39320", + "codeCommune": "39080", + "libelleAcheminement": "BROISSIA", + "nomCommune": "BROISSIA" }, { - "codePostal": "31700", - "codeCommune": "31150", - "libelleAcheminement": "CORNEBARRIEU", - "nomCommune": "CORNEBARRIEU" + "codePostal": "38260", + "codeCommune": "38479", + "libelleAcheminement": "PORTE DES BONNEVAUX", + "nomCommune": "PORTE DES BONNEVAUX" }, { - "codePostal": "57050", - "codeCommune": "57049", - "libelleAcheminement": "LE BAN ST MARTIN", - "nomCommune": "LE BAN ST MARTIN" + "codePostal": "27470", + "codeCommune": "27364", + "libelleAcheminement": "LAUNAY", + "nomCommune": "LAUNAY" }, { - "codePostal": "02870", - "codeCommune": "02122", - "libelleAcheminement": "BRIE", - "nomCommune": "BRIE" + "codePostal": "28700", + "codeCommune": "28257", + "libelleAcheminement": "MONDONVILLE ST JEAN", + "nomCommune": "MONDONVILLE ST JEAN" }, { - "codePostal": "63580", - "codeCommune": "63328", - "libelleAcheminement": "STE CATHERINE", - "nomCommune": "STE CATHERINE" + "codePostal": "39120", + "codeCommune": "39090", + "libelleAcheminement": "CHAINEE DES COUPIS", + "nomCommune": "CHAINEE DES COUPIS" }, { - "codePostal": "31450", - "codeCommune": "31151", - "libelleAcheminement": "CORRONSAC", - "nomCommune": "CORRONSAC" + "codePostal": "38780", + "codeCommune": "38480", + "libelleAcheminement": "SEPTEME", + "nomCommune": "SEPTEME" }, { - "codePostal": "57580", - "codeCommune": "57057", - "libelleAcheminement": "BECHY", - "nomCommune": "BECHY" + "codePostal": "27650", + "codeCommune": "27376", + "libelleAcheminement": "LOUYE", + "nomCommune": "LOUYE" }, { - "codePostal": "02240", - "codeCommune": "02124", - "libelleAcheminement": "BRISSY HAMEGICOURT", - "nomCommune": "BRISSY HAMEGICOURT" + "codePostal": "28800", + "codeCommune": "28260", + "libelleAcheminement": "MONTHARVILLE", + "nomCommune": "MONTHARVILLE" }, { - "codePostal": "63310", - "codeCommune": "63333", - "libelleAcheminement": "ST DENIS COMBARNAZAT", - "nomCommune": "ST DENIS COMBARNAZAT" + "codePostal": "39600", + "codeCommune": "39095", + "libelleAcheminement": "CHAMPAGNE SUR LOUE", + "nomCommune": "CHAMPAGNE SUR LOUE" }, { - "codePostal": "31480", - "codeCommune": "31156", - "libelleAcheminement": "COX", - "nomCommune": "COX" + "codePostal": "38780", + "codeCommune": "38480", + "libelleAcheminement": "SEPTEME", + "nomCommune": "SEPTEME" }, { - "codePostal": "57460", - "codeCommune": "57058", - "libelleAcheminement": "BEHREN LES FORBACH", - "nomCommune": "BEHREN LES FORBACH" + "codePostal": "27480", + "codeCommune": "27377", + "libelleAcheminement": "LYONS LA FORET", + "nomCommune": "LYONS LA FORET" }, { - "codePostal": "02810", - "codeCommune": "02125", - "libelleAcheminement": "BRUMETZ", - "nomCommune": "BRUMETZ" + "codePostal": "28270", + "codeCommune": "28263", + "libelleAcheminement": "MONTIGNY SUR AVRE", + "nomCommune": "MONTIGNY SUR AVRE" }, { - "codePostal": "63700", - "codeCommune": "63338", - "libelleAcheminement": "ST ELOY LES MINES", - "nomCommune": "ST ELOY LES MINES" + "codePostal": "01590", + "codeCommune": "39102", + "libelleAcheminement": "CHANCIA", + "nomCommune": "CHANCIA" }, { - "codePostal": "31160", - "codeCommune": "31174", - "libelleAcheminement": "ESTADENS", - "nomCommune": "ESTADENS" + "codePostal": "38350", + "codeCommune": "38489", + "libelleAcheminement": "SIEVOZ", + "nomCommune": "SIEVOZ" }, { - "codePostal": "57800", - "codeCommune": "57061", - "libelleAcheminement": "BENING LES ST AVOLD", - "nomCommune": "BENING LES ST AVOLD" + "codePostal": "27460", + "codeCommune": "27386", + "libelleAcheminement": "LE MANOIR", + "nomCommune": "LE MANOIR" }, { - "codePostal": "02870", - "codeCommune": "02132", - "libelleAcheminement": "BUCY LES CERNY", - "nomCommune": "BUCY LES CERNY" + "codePostal": "28240", + "codeCommune": "28264", + "libelleAcheminement": "MONTIREAU", + "nomCommune": "MONTIREAU" }, { - "codePostal": "63320", - "codeCommune": "63342", - "libelleAcheminement": "ST FLORET", - "nomCommune": "ST FLORET" + "codePostal": "39700", + "codeCommune": "39121", + "libelleAcheminement": "CHATENOIS", + "nomCommune": "CHATENOIS" }, { - "codePostal": "31260", - "codeCommune": "31183", - "libelleAcheminement": "FIGAROL", - "nomCommune": "FIGAROL" + "codePostal": "38460", + "codeCommune": "38494", + "libelleAcheminement": "SOLEYMIEU", + "nomCommune": "SOLEYMIEU" }, { - "codePostal": "57370", - "codeCommune": "57064", - "libelleAcheminement": "BERLING", - "nomCommune": "BERLING" + "codePostal": "27390", + "codeCommune": "27395", + "libelleAcheminement": "MELICOURT", + "nomCommune": "MELICOURT" }, { - "codePostal": "02500", - "codeCommune": "02134", - "libelleAcheminement": "BUIRE", - "nomCommune": "BUIRE" + "codePostal": "28800", + "codeCommune": "28270", + "libelleAcheminement": "MORIERS", + "nomCommune": "MORIERS" }, { - "codePostal": "63440", - "codeCommune": "63344", - "libelleAcheminement": "ST GAL SUR SIOULE", - "nomCommune": "ST GAL SUR SIOULE" + "codePostal": "39150", + "codeCommune": "39130", + "libelleAcheminement": "NANCHEZ", + "nomCommune": "NANCHEZ" }, { - "codePostal": "31290", - "codeCommune": "31185", - "libelleAcheminement": "FOLCARDE", - "nomCommune": "FOLCARDE" + "codePostal": "38350", + "codeCommune": "38499", + "libelleAcheminement": "SUSVILLE", + "nomCommune": "SUSVILLE" }, { - "codePostal": "57220", - "codeCommune": "57070", - "libelleAcheminement": "BETTANGE", - "nomCommune": "BETTANGE" + "codePostal": "27850", + "codeCommune": "27396", + "libelleAcheminement": "MENESQUEVILLE", + "nomCommune": "MENESQUEVILLE" }, { - "codePostal": "02200", - "codeCommune": "02138", - "libelleAcheminement": "BUZANCY", - "nomCommune": "BUZANCY" + "codePostal": "28340", + "codeCommune": "28271", + "libelleAcheminement": "MORVILLIERS", + "nomCommune": "MORVILLIERS" }, { - "codePostal": "63850", - "codeCommune": "63346", - "libelleAcheminement": "ST GENES CHAMPESPE", - "nomCommune": "ST GENES CHAMPESPE" + "codePostal": "39240", + "codeCommune": "39137", + "libelleAcheminement": "ST HYMETIERE SUR VALOUSE", + "nomCommune": "ST HYMETIERE SUR VALOUSE" }, { - "codePostal": "31470", - "codeCommune": "31187", - "libelleAcheminement": "FONSORBES", - "nomCommune": "FONSORBES" + "codePostal": "38110", + "codeCommune": "38509", + "libelleAcheminement": "LA TOUR DU PIN", + "nomCommune": "LA TOUR DU PIN" }, { - "codePostal": "57930", - "codeCommune": "57071", - "libelleAcheminement": "BETTBORN", - "nomCommune": "BETTBORN" + "codePostal": "27120", + "codeCommune": "27397", + "libelleAcheminement": "MENILLES", + "nomCommune": "MENILLES" }, { - "codePostal": "02260", - "codeCommune": "02141", - "libelleAcheminement": "LA CAPELLE", - "nomCommune": "LA CAPELLE" + "codePostal": "28160", + "codeCommune": "28272", + "libelleAcheminement": "MOTTEREAU", + "nomCommune": "MOTTEREAU" }, { - "codePostal": "63260", - "codeCommune": "63347", - "libelleAcheminement": "ST GENES DU RETZ", - "nomCommune": "ST GENES DU RETZ" + "codePostal": "39570", + "codeCommune": "39146", + "libelleAcheminement": "CHILLY LE VIGNOBLE", + "nomCommune": "CHILLY LE VIGNOBLE" }, { - "codePostal": "31550", - "codeCommune": "31206", - "libelleAcheminement": "GAILLAC TOULZA", - "nomCommune": "GAILLAC TOULZA" + "codePostal": "38300", + "codeCommune": "38512", + "libelleAcheminement": "TRAMOLE", + "nomCommune": "TRAMOLE" }, { - "codePostal": "57580", - "codeCommune": "57075", - "libelleAcheminement": "BEUX", - "nomCommune": "BEUX" + "codePostal": "27640", + "codeCommune": "27400", + "libelleAcheminement": "MEREY", + "nomCommune": "MEREY" }, { - "codePostal": "02490", - "codeCommune": "02144", - "libelleAcheminement": "CAULAINCOURT", - "nomCommune": "CAULAINCOURT" + "codePostal": "28310", + "codeCommune": "28276", + "libelleAcheminement": "NEUVY EN BEAUCE", + "nomCommune": "NEUVY EN BEAUCE" }, { - "codePostal": "63470", - "codeCommune": "63351", - "libelleAcheminement": "ST GERMAIN PRES HERMENT", - "nomCommune": "ST GERMAIN PRES HERMENT" + "codePostal": "39300", + "codeCommune": "39153", + "libelleAcheminement": "CIZE", + "nomCommune": "CIZE" }, { - "codePostal": "31160", - "codeCommune": "31208", - "libelleAcheminement": "GANTIES", - "nomCommune": "GANTIES" + "codePostal": "38470", + "codeCommune": "38523", + "libelleAcheminement": "VARACIEUX", + "nomCommune": "VARACIEUX" }, { - "codePostal": "57570", - "codeCommune": "57076", - "libelleAcheminement": "BEYREN LES SIERCK", - "nomCommune": "BEYREN LES SIERCK" + "codePostal": "27930", + "codeCommune": "27410", + "libelleAcheminement": "MISEREY", + "nomCommune": "MISEREY" }, { - "codePostal": "02860", - "codeCommune": "02150", - "libelleAcheminement": "CERNY EN LAONNOIS", - "nomCommune": "CERNY EN LAONNOIS" + "codePostal": "28210", + "codeCommune": "28279", + "libelleAcheminement": "NOGENT LE ROI", + "nomCommune": "NOGENT LE ROI" }, { - "codePostal": "63330", - "codeCommune": "63360", - "libelleAcheminement": "ST HILAIRE PRES PIONSAT", - "nomCommune": "ST HILAIRE" + "codePostal": "39200", + "codeCommune": "39157", + "libelleAcheminement": "COISERETTE", + "nomCommune": "COISERETTE" }, { - "codePostal": "31560", - "codeCommune": "31220", - "libelleAcheminement": "GIBEL", - "nomCommune": "GIBEL" + "codePostal": "38410", + "codeCommune": "38528", + "libelleAcheminement": "VAULNAVEYS LE BAS", + "nomCommune": "VAULNAVEYS LE BAS" }, { - "codePostal": "57410", - "codeCommune": "57083", - "libelleAcheminement": "BINING", - "nomCommune": "BINING" + "codePostal": "27390", + "codeCommune": "27414", + "libelleAcheminement": "MONTREUIL L ARGILLE", + "nomCommune": "MONTREUIL L ARGILLE" }, { - "codePostal": "02270", - "codeCommune": "02169", - "libelleAcheminement": "CHATILLON LES SONS", - "nomCommune": "CHATILLON LES SONS" + "codePostal": "28400", + "codeCommune": "28280", + "libelleAcheminement": "NOGENT LE ROTROU", + "nomCommune": "NOGENT LE ROTROU" }, { - "codePostal": "63580", - "codeCommune": "63376", - "libelleAcheminement": "ST MARTIN D OLLIERES", - "nomCommune": "ST MARTIN D OLLIERES" + "codePostal": "39570", + "codeCommune": "39162", + "libelleAcheminement": "CONDAMINE", + "nomCommune": "CONDAMINE" }, { - "codePostal": "31540", - "codeCommune": "31243", - "libelleAcheminement": "JUZES", - "nomCommune": "JUZES" + "codePostal": "38610", + "codeCommune": "38533", + "libelleAcheminement": "VENON", + "nomCommune": "VENON" }, { - "codePostal": "57930", - "codeCommune": "57086", - "libelleAcheminement": "BELLES FORETS", - "nomCommune": "BELLES FORETS" + "codePostal": "27260", + "codeCommune": "27415", + "libelleAcheminement": "MORAINVILLE JOUVEAUX", + "nomCommune": "MORAINVILLE JOUVEAUX" }, { - "codePostal": "02160", - "codeCommune": "02171", - "libelleAcheminement": "CHAUDARDES", - "nomCommune": "CHAUDARDES" + "codePostal": "28140", + "codeCommune": "28287", + "libelleAcheminement": "ORGERES EN BEAUCE", + "nomCommune": "ORGERES EN BEAUCE" }, { - "codePostal": "63330", - "codeCommune": "63377", - "libelleAcheminement": "ST MAURICE PRES PIONSAT", - "nomCommune": "ST MAURICE PRES PIONSAT" + "codePostal": "39240", + "codeCommune": "39163", + "libelleAcheminement": "CONDES", + "nomCommune": "CONDES" }, { - "codePostal": "31160", - "codeCommune": "31245", - "libelleAcheminement": "JUZET D IZAUT", - "nomCommune": "JUZET D IZAUT" + "codePostal": "38113", + "codeCommune": "38540", + "libelleAcheminement": "VEUREY VOROIZE", + "nomCommune": "VEUREY VOROIZE" }, { - "codePostal": "57230", - "codeCommune": "57089", - "libelleAcheminement": "BITCHE", - "nomCommune": "BITCHE" + "codePostal": "27150", + "codeCommune": "27417", + "libelleAcheminement": "MORGNY", + "nomCommune": "MORGNY" }, { - "codePostal": "02860", - "codeCommune": "02177", - "libelleAcheminement": "CHERET", - "nomCommune": "CHERET" + "codePostal": "28300", + "codeCommune": "28301", + "libelleAcheminement": "POISVILLIERS", + "nomCommune": "POISVILLIERS" }, { - "codePostal": "63460", - "codeCommune": "63379", - "libelleAcheminement": "ST MYON", - "nomCommune": "ST MYON" + "codePostal": "39570", + "codeCommune": "39164", + "libelleAcheminement": "CONLIEGE", + "nomCommune": "CONLIEGE" }, { - "codePostal": "31620", - "codeCommune": "31252", - "libelleAcheminement": "LABASTIDE ST SERNIN", - "nomCommune": "LABASTIDE ST SERNIN" + "codePostal": "38190", + "codeCommune": "38547", + "libelleAcheminement": "VILLARD BONNOT", + "nomCommune": "VILLARD BONNOT" }, { - "codePostal": "57720", - "codeCommune": "57108", - "libelleAcheminement": "BREIDENBACH", - "nomCommune": "BREIDENBACH" + "codePostal": "27550", + "codeCommune": "27425", + "libelleAcheminement": "NASSANDRES SUR RISLE", + "nomCommune": "NASSANDRES SUR RISLE" }, { - "codePostal": "02000", - "codeCommune": "02183", - "libelleAcheminement": "CHEVREGNY", - "nomCommune": "CHEVREGNY" + "codePostal": "28190", + "codeCommune": "28302", + "libelleAcheminement": "PONTGOUIN", + "nomCommune": "PONTGOUIN" }, { - "codePostal": "63210", - "codeCommune": "63386", - "libelleAcheminement": "ST PIERRE ROCHE", - "nomCommune": "ST PIERRE ROCHE" + "codePostal": "39240", + "codeCommune": "39166", + "libelleAcheminement": "CORNOD", + "nomCommune": "CORNOD" }, { - "codePostal": "31670", - "codeCommune": "31254", - "libelleAcheminement": "LABEGE", - "nomCommune": "LABEGE" + "codePostal": "38190", + "codeCommune": "38547", + "libelleAcheminement": "VILLARD BONNOT", + "nomCommune": "VILLARD BONNOT" }, { - "codePostal": "57570", - "codeCommune": "57109", - "libelleAcheminement": "BREISTROFF LA GRANDE", - "nomCommune": "BREISTROFF LA GRANDE" + "codePostal": "27250", + "codeCommune": "27427", + "libelleAcheminement": "NEAUFLES AUVERGNY", + "nomCommune": "NEAUFLES AUVERGNY" }, { - "codePostal": "02570", - "codeCommune": "02186", - "libelleAcheminement": "CHEZY SUR MARNE", - "nomCommune": "CHEZY SUR MARNE" + "codePostal": "28140", + "codeCommune": "28303", + "libelleAcheminement": "POUPRY", + "nomCommune": "POUPRY" }, { - "codePostal": "63500", - "codeCommune": "63404", - "libelleAcheminement": "ST YVOINE", - "nomCommune": "ST YVOINE" + "codePostal": "39570", + "codeCommune": "39170", + "libelleAcheminement": "COURLANS", + "nomCommune": "COURLANS" }, { - "codePostal": "31800", - "codeCommune": "31268", - "libelleAcheminement": "LALOURET LAFFITEAU", - "nomCommune": "LALOURET LAFFITEAU" + "codePostal": "38520", + "codeCommune": "38549", + "libelleAcheminement": "VILLARD NOTRE DAME", + "nomCommune": "VILLARD NOTRE DAME" }, { - "codePostal": "57535", - "codeCommune": "57111", - "libelleAcheminement": "BRONVAUX", - "nomCommune": "BRONVAUX" + "codePostal": "27110", + "codeCommune": "27428", + "libelleAcheminement": "LE NEUBOURG", + "nomCommune": "LE NEUBOURG" }, { - "codePostal": "02880", - "codeCommune": "02190", - "libelleAcheminement": "CHIVRES VAL", - "nomCommune": "CHIVRES VAL" + "codePostal": "28360", + "codeCommune": "28309", + "libelleAcheminement": "PRUNAY LE GILLON", + "nomCommune": "PRUNAY LE GILLON" }, { - "codePostal": "63500", - "codeCommune": "63411", - "libelleAcheminement": "SAUVAGNAT STE MARTHE", - "nomCommune": "SAUVAGNAT STE MARTHE" + "codePostal": "39190", + "codeCommune": "39173", + "libelleAcheminement": "COUSANCE", + "nomCommune": "COUSANCE" }, { - "codePostal": "31140", - "codeCommune": "31282", - "libelleAcheminement": "LAUNAGUET", - "nomCommune": "LAUNAGUET" + "codePostal": "38460", + "codeCommune": "38554", + "libelleAcheminement": "VILLEMOIRIEU", + "nomCommune": "VILLEMOIRIEU" }, { - "codePostal": "57220", - "codeCommune": "57112", - "libelleAcheminement": "BROUCK", - "nomCommune": "BROUCK" + "codePostal": "27930", + "codeCommune": "27439", + "libelleAcheminement": "NORMANVILLE", + "nomCommune": "NORMANVILLE" }, { - "codePostal": "02340", - "codeCommune": "02200", - "libelleAcheminement": "CLERMONT LES FERMES", - "nomCommune": "CLERMONT LES FERMES" + "codePostal": "28250", + "codeCommune": "28310", + "libelleAcheminement": "LA PUISAYE", + "nomCommune": "LA PUISAYE" }, { - "codePostal": "63120", - "codeCommune": "63414", - "libelleAcheminement": "SAUVIAT", - "nomCommune": "SAUVIAT" + "codePostal": "39570", + "codeCommune": "39177", + "libelleAcheminement": "HAUTEROCHE", + "nomCommune": "HAUTEROCHE" }, { - "codePostal": "31530", - "codeCommune": "31297", - "libelleAcheminement": "LEVIGNAC", - "nomCommune": "LEVIGNAC" + "codePostal": "38280", + "codeCommune": "38557", + "libelleAcheminement": "VILLETTE D ANTHON", + "nomCommune": "VILLETTE D ANTHON" }, { - "codePostal": "57565", - "codeCommune": "57113", - "libelleAcheminement": "BROUDERDORFF", - "nomCommune": "BROUDERDORFF" + "codePostal": "27720", + "codeCommune": "27445", + "libelleAcheminement": "NOYERS", + "nomCommune": "NOYERS" }, { - "codePostal": "02370", - "codeCommune": "02210", - "libelleAcheminement": "CONDE SUR AISNE", - "nomCommune": "CONDE SUR AISNE" + "codePostal": "28170", + "codeCommune": "28323", + "libelleAcheminement": "ST ANGE ET TORCAY", + "nomCommune": "ST ANGE ET TORCAY" }, { - "codePostal": "63690", - "codeCommune": "63426", - "libelleAcheminement": "TAUVES", - "nomCommune": "TAUVES" + "codePostal": "39190", + "codeCommune": "39185", + "libelleAcheminement": "CUISIA", + "nomCommune": "CUISIA" }, { - "codePostal": "31800", - "codeCommune": "31302", - "libelleAcheminement": "LODES", - "nomCommune": "LODES" + "codePostal": "38730", + "codeCommune": "38560", + "libelleAcheminement": "VAL DE VIRIEU", + "nomCommune": "VAL DE VIRIEU" }, { - "codePostal": "57635", - "codeCommune": "57114", - "libelleAcheminement": "BROUVILLER", - "nomCommune": "BROUVILLER" + "codePostal": "27190", + "codeCommune": "27446", + "libelleAcheminement": "ORMES", + "nomCommune": "ORMES" }, { - "codePostal": "02700", - "codeCommune": "02212", - "libelleAcheminement": "CONDREN", - "nomCommune": "CONDREN" + "codePostal": "28120", + "codeCommune": "28336", + "libelleAcheminement": "ST EMAN", + "nomCommune": "ST EMAN" }, { - "codePostal": "63460", - "codeCommune": "63427", - "libelleAcheminement": "TEILHEDE", - "nomCommune": "TEILHEDE" + "codePostal": "39290", + "codeCommune": "39188", + "libelleAcheminement": "DAMMARTIN MARPAIN", + "nomCommune": "DAMMARTIN MARPAIN" }, { - "codePostal": "31260", - "codeCommune": "31315", - "libelleAcheminement": "MANE", - "nomCommune": "MANE" + "codePostal": "38340", + "codeCommune": "38565", + "libelleAcheminement": "VOREPPE", + "nomCommune": "VOREPPE" }, { - "codePostal": "57450", - "codeCommune": "57122", - "libelleAcheminement": "CAPPEL", - "nomCommune": "CAPPEL" + "codePostal": "27190", + "codeCommune": "27447", + "libelleAcheminement": "LE VAL DORE", + "nomCommune": "LE VAL DORE" }, { - "codePostal": "02310", - "codeCommune": "02221", - "libelleAcheminement": "COUPRU", - "nomCommune": "COUPRU" + "codePostal": "28190", + "codeCommune": "28339", + "libelleAcheminement": "ST GERMAIN LE GAILLARD", + "nomCommune": "ST GERMAIN LE GAILLARD" }, { - "codePostal": "63340", - "codeCommune": "63429", - "libelleAcheminement": "TERNANT LES EAUX", - "nomCommune": "TERNANT LES EAUX" + "codePostal": "39350", + "codeCommune": "39190", + "libelleAcheminement": "DAMPIERRE", + "nomCommune": "DAMPIERRE" }, { - "codePostal": "31460", - "codeCommune": "31325", - "libelleAcheminement": "MASCARVILLE", - "nomCommune": "MASCARVILLE" + "codePostal": "39140", + "codeCommune": "39017", + "libelleAcheminement": "ARLAY", + "nomCommune": "ARLAY" }, { - "codePostal": "57365", - "codeCommune": "57125", - "libelleAcheminement": "CHAILLY LES ENNERY", - "nomCommune": "CHAILLY LES ENNERY" + "codePostal": "27400", + "codeCommune": "27456", + "libelleAcheminement": "PINTERVILLE", + "nomCommune": "PINTERVILLE" }, { - "codePostal": "02350", - "codeCommune": "02248", - "libelleAcheminement": "CUIRIEUX", - "nomCommune": "CUIRIEUX" + "codePostal": "28700", + "codeCommune": "28344", + "libelleAcheminement": "ST LEGER DES AUBEES", + "nomCommune": "ST LEGER DES AUBEES" }, { - "codePostal": "63300", - "codeCommune": "63430", - "libelleAcheminement": "THIERS", - "nomCommune": "THIERS" + "codePostal": "39700", + "codeCommune": "39205", + "libelleAcheminement": "ECLANS NENON", + "nomCommune": "ECLANS NENON" }, { - "codePostal": "31410", - "codeCommune": "31334", - "libelleAcheminement": "MAUZAC", - "nomCommune": "MAUZAC" + "codePostal": "39240", + "codeCommune": "39018", + "libelleAcheminement": "AROMAS", + "nomCommune": "AROMAS" }, { - "codePostal": "57170", - "codeCommune": "57133", - "libelleAcheminement": "CHATEAU VOUE", - "nomCommune": "CHATEAU VOUE" + "codePostal": "27500", + "codeCommune": "27467", + "libelleAcheminement": "PONT AUDEMER", + "nomCommune": "PONT AUDEMER" }, { - "codePostal": "02220", - "codeCommune": "02249", - "libelleAcheminement": "CUIRY HOUSSE", - "nomCommune": "CUIRY HOUSSE" + "codePostal": "28270", + "codeCommune": "28346", + "libelleAcheminement": "ST LUBIN DE CRAVANT", + "nomCommune": "ST LUBIN DE CRAVANT" }, { - "codePostal": "63810", - "codeCommune": "63437", - "libelleAcheminement": "TREMOUILLE ST LOUP", - "nomCommune": "TREMOUILLE ST LOUP" + "codePostal": "39120", + "codeCommune": "39211", + "libelleAcheminement": "LES ESSARDS TAIGNEVAUX", + "nomCommune": "LES ESSARDS TAIGNEVAUX" }, { - "codePostal": "31260", - "codeCommune": "31336", - "libelleAcheminement": "MAZERES SUR SALAT", - "nomCommune": "MAZERES SUR SALAT" + "codePostal": "39250", + "codeCommune": "39020", + "libelleAcheminement": "ARSURE ARSURETTE", + "nomCommune": "ARSURE ARSURETTE" }, { - "codePostal": "57245", - "codeCommune": "57140", - "libelleAcheminement": "CHESNY", - "nomCommune": "CHESNY" + "codePostal": "27290", + "codeCommune": "27468", + "libelleAcheminement": "PONT AUTHOU", + "nomCommune": "PONT AUTHOU" }, { - "codePostal": "02200", - "codeCommune": "02253", - "libelleAcheminement": "CUISY EN ALMONT", - "nomCommune": "CUISY EN ALMONT" + "codePostal": "28410", + "codeCommune": "28347", + "libelleAcheminement": "ST LUBIN DE LA HAYE", + "nomCommune": "ST LUBIN DE LA HAYE" }, { - "codePostal": "63500", - "codeCommune": "63444", - "libelleAcheminement": "VARENNES SUR USSON", - "nomCommune": "VARENNES SUR USSON" + "codePostal": "39700", + "codeCommune": "39219", + "libelleAcheminement": "EVANS", + "nomCommune": "EVANS" }, { - "codePostal": "31230", - "codeCommune": "31343", - "libelleAcheminement": "MIRAMBEAU", - "nomCommune": "MIRAMBEAU" + "codePostal": "39570", + "codeCommune": "39021", + "libelleAcheminement": "LA CHAILLEUSE", + "nomCommune": "LA CHAILLEUSE" }, { - "codePostal": "57420", - "codeCommune": "57146", - "libelleAcheminement": "COIN LES CUVRY", - "nomCommune": "COIN LES CUVRY" + "codePostal": "27420", + "codeCommune": "27490", + "libelleAcheminement": "RICHEVILLE", + "nomCommune": "RICHEVILLE" }, { - "codePostal": "02270", - "codeCommune": "02261", - "libelleAcheminement": "DERCY", - "nomCommune": "DERCY" + "codePostal": "28130", + "codeCommune": "28352", + "libelleAcheminement": "ST MARTIN DE NIGELLES", + "nomCommune": "ST MARTIN DE NIGELLES" }, { - "codePostal": "63580", - "codeCommune": "63448", - "libelleAcheminement": "LE VERNET CHAMEANE", - "nomCommune": "LE VERNET CHAMEANE" + "codePostal": "39800", + "codeCommune": "39225", + "libelleAcheminement": "LE FIED", + "nomCommune": "LE FIED" }, { - "codePostal": "31160", - "codeCommune": "31348", - "libelleAcheminement": "MONCAUP", - "nomCommune": "MONCAUP" + "codePostal": "39410", + "codeCommune": "39029", + "libelleAcheminement": "AUMUR", + "nomCommune": "AUMUR" }, { - "codePostal": "57220", - "codeCommune": "57154", - "libelleAcheminement": "COUME", - "nomCommune": "COUME" + "codePostal": "27170", + "codeCommune": "27492", + "libelleAcheminement": "ROMILLY LA PUTHENAYE", + "nomCommune": "ROMILLY LA PUTHENAYE" }, { - "codePostal": "02700", - "codeCommune": "02262", - "libelleAcheminement": "DEUILLET", - "nomCommune": "DEUILLET" + "codePostal": "28380", + "codeCommune": "28359", + "libelleAcheminement": "ST REMY SUR AVRE", + "nomCommune": "ST REMY SUR AVRE" }, { - "codePostal": "63910", - "codeCommune": "63453", - "libelleAcheminement": "VERTAIZON", - "nomCommune": "VERTAIZON" + "codePostal": "39140", + "codeCommune": "39229", + "libelleAcheminement": "FONTAINEBRUX", + "nomCommune": "FONTAINEBRUX" }, { - "codePostal": "31530", - "codeCommune": "31356", - "libelleAcheminement": "MONTAIGUT SUR SAVE", - "nomCommune": "MONTAIGUT SUR SAVE" + "codePostal": "39190", + "codeCommune": "39043", + "libelleAcheminement": "BEAUFORT ORBAGNA", + "nomCommune": "BEAUFORT ORBAGNA" }, { - "codePostal": "57260", - "codeCommune": "57161", - "libelleAcheminement": "CUTTING", - "nomCommune": "CUTTING" + "codePostal": "27790", + "codeCommune": "27496", + "libelleAcheminement": "ROSAY SUR LIEURE", + "nomCommune": "ROSAY SUR LIEURE" }, { - "codePostal": "02310", - "codeCommune": "02268", - "libelleAcheminement": "DOMPTIN", - "nomCommune": "DOMPTIN" + "codePostal": "28800", + "codeCommune": "28370", + "libelleAcheminement": "SAUMERAY", + "nomCommune": "SAUMERAY" }, { - "codePostal": "63480", - "codeCommune": "63454", - "libelleAcheminement": "VERTOLAYE", - "nomCommune": "VERTOLAYE" + "codePostal": "39150", + "codeCommune": "39232", + "libelleAcheminement": "FORT DU PLASNE", + "nomCommune": "FORT DU PLASNE" }, { - "codePostal": "31370", - "codeCommune": "31359", - "libelleAcheminement": "MONTASTRUC SAVES", - "nomCommune": "MONTASTRUC SAVES" + "codePostal": "39310", + "codeCommune": "39046", + "libelleAcheminement": "BELLECOMBE", + "nomCommune": "BELLECOMBE" }, { - "codePostal": "57830", - "codeCommune": "57175", - "libelleAcheminement": "DIANE CAPELLE", - "nomCommune": "DIANE CAPELLE" + "codePostal": "27450", + "codeCommune": "27520", + "libelleAcheminement": "ST BENOIT DES OMBRES", + "nomCommune": "ST BENOIT DES OMBRES" }, { - "codePostal": "02130", - "codeCommune": "02271", - "libelleAcheminement": "DRAVEGNY", - "nomCommune": "DRAVEGNY" + "codePostal": "28250", + "codeCommune": "28373", + "libelleAcheminement": "SENONCHES", + "nomCommune": "SENONCHES" }, { - "codePostal": "63270", - "codeCommune": "63457", - "libelleAcheminement": "VIC LE COMTE", - "nomCommune": "VIC LE COMTE" + "codePostal": "39100", + "codeCommune": "39233", + "libelleAcheminement": "FOUCHERANS", + "nomCommune": "FOUCHERANS" }, { - "codePostal": "31220", - "codeCommune": "31362", - "libelleAcheminement": "MONTBERAUD", - "nomCommune": "MONTBERAUD" + "codePostal": "39290", + "codeCommune": "39051", + "libelleAcheminement": "BIARNE", + "nomCommune": "BIARNE" }, { - "codePostal": "57980", - "codeCommune": "57176", - "libelleAcheminement": "DIEBLING", - "nomCommune": "DIEBLING" + "codePostal": "27820", + "codeCommune": "27521", + "libelleAcheminement": "ST CHRISTOPHE SUR AVRE", + "nomCommune": "ST CHRISTOPHE SUR AVRE" }, { - "codePostal": "02210", - "codeCommune": "02272", - "libelleAcheminement": "DROIZY", - "nomCommune": "DROIZY" + "codePostal": "28170", + "codeCommune": "28374", + "libelleAcheminement": "SERAZEREUX", + "nomCommune": "SERAZEREUX" }, { - "codePostal": "63310", - "codeCommune": "63459", - "libelleAcheminement": "VILLENEUVE LES CERFS", - "nomCommune": "VILLENEUVE LES CERFS" + "codePostal": "39700", + "codeCommune": "39235", + "libelleAcheminement": "FRAISANS", + "nomCommune": "FRAISANS" }, { - "codePostal": "31290", - "codeCommune": "31368", - "libelleAcheminement": "MONTCLAR LAURAGAIS", - "nomCommune": "MONTCLAR LAURAGAIS" + "codePostal": "39250", + "codeCommune": "39055", + "libelleAcheminement": "BILLECUL", + "nomCommune": "BILLECUL" }, { - "codePostal": "57810", - "codeCommune": "57183", - "libelleAcheminement": "DONNELAY", - "nomCommune": "DONNELAY" + "codePostal": "27100", + "codeCommune": "27528", + "libelleAcheminement": "LE VAUDREUIL", + "nomCommune": "LE VAUDREUIL" }, { - "codePostal": "02000", - "codeCommune": "02294", - "libelleAcheminement": "ETOUVELLES", - "nomCommune": "ETOUVELLES" + "codePostal": "28240", + "codeCommune": "28385", + "libelleAcheminement": "LE THIEULIN", + "nomCommune": "LE THIEULIN" }, { - "codePostal": "63380", - "codeCommune": "63460", - "libelleAcheminement": "VILLOSSANGES", - "nomCommune": "VILLOSSANGES" + "codePostal": "39290", + "codeCommune": "39238", + "libelleAcheminement": "FRASNE LES MEULIERES", + "nomCommune": "FRASNE LES MEULIERES" }, { - "codePostal": "31540", - "codeCommune": "31371", - "libelleAcheminement": "MONTEGUT LAURAGAIS", - "nomCommune": "MONTEGUT LAURAGAIS" + "codePostal": "39370", + "codeCommune": "39068", + "libelleAcheminement": "LES BOUCHOUX", + "nomCommune": "LES BOUCHOUX" }, { - "codePostal": "57415", - "codeCommune": "57192", - "libelleAcheminement": "ENCHENBERG", - "nomCommune": "ENCHENBERG" + "codePostal": "27520", + "codeCommune": "27531", + "libelleAcheminement": "ST DENIS DES MONTS", + "nomCommune": "ST DENIS DES MONTS" }, { - "codePostal": "02460", - "codeCommune": "02307", - "libelleAcheminement": "LA FERTE MILON", - "nomCommune": "LA FERTE MILON" + "codePostal": "28170", + "codeCommune": "28386", + "libelleAcheminement": "THIMERT GATELLES", + "nomCommune": "THIMERT GATELLES" }, { - "codePostal": "63330", - "codeCommune": "63462", - "libelleAcheminement": "VIRLET", - "nomCommune": "VIRLET" + "codePostal": "39120", + "codeCommune": "39245", + "libelleAcheminement": "GATEY", + "nomCommune": "GATEY" }, { - "codePostal": "31450", - "codeCommune": "31374", - "libelleAcheminement": "MONTESQUIEU LAURAGAIS", - "nomCommune": "MONTESQUIEU LAURAGAIS" + "codePostal": "39700", + "codeCommune": "39076", + "libelleAcheminement": "LA BRETENIERE", + "nomCommune": "LA BRETENIERE" }, { - "codePostal": "57720", - "codeCommune": "57196", - "libelleAcheminement": "ERCHING", - "nomCommune": "ERCHING" + "codePostal": "27370", + "codeCommune": "27534", + "libelleAcheminement": "ST DIDIER DES BOIS", + "nomCommune": "ST DIDIER DES BOIS" }, { - "codePostal": "02760", - "codeCommune": "02330", - "libelleAcheminement": "FRANCILLY SELENCY", - "nomCommune": "FRANCILLY SELENCY" + "codePostal": "28170", + "codeCommune": "28393", + "libelleAcheminement": "TREMBLAY LES VILLAGES", + "nomCommune": "TREMBLAY LES VILLAGES" }, { - "codePostal": "63270", - "codeCommune": "63472", - "libelleAcheminement": "YRONDE ET BURON", - "nomCommune": "YRONDE ET BURON" + "codePostal": "39800", + "codeCommune": "39263", + "libelleAcheminement": "GROZON", + "nomCommune": "GROZON" }, { - "codePostal": "31310", - "codeCommune": "31375", - "libelleAcheminement": "MONTESQUIEU VOLVESTRE", - "nomCommune": "MONTESQUIEU VOLVESTRE" + "codePostal": "39120", + "codeCommune": "39077", + "libelleAcheminement": "BRETENIERES", + "nomCommune": "BRETENIERES" }, { - "codePostal": "57570", - "codeCommune": "57203", - "libelleAcheminement": "EVRANGE", - "nomCommune": "EVRANGE" + "codePostal": "27920", + "codeCommune": "27539", + "libelleAcheminement": "ST ETIENNE SOUS BAILLEUL", + "nomCommune": "ST ETIENNE SOUS BAILLEUL" }, { - "codePostal": "02230", - "codeCommune": "02334", - "libelleAcheminement": "FRESNOY LE GRAND", - "nomCommune": "FRESNOY LE GRAND" + "codePostal": "28170", + "codeCommune": "28393", + "libelleAcheminement": "TREMBLAY LES VILLAGES", + "nomCommune": "TREMBLAY LES VILLAGES" }, { - "codePostal": "64160", - "codeCommune": "64002", - "libelleAcheminement": "ABERE", - "nomCommune": "ABERE" + "codePostal": "39320", + "codeCommune": "39273", + "libelleAcheminement": "MONTLAINSIA", + "nomCommune": "MONTLAINSIA" }, { - "codePostal": "31350", - "codeCommune": "31378", - "libelleAcheminement": "MONTGAILLARD SUR SAVE", - "nomCommune": "MONTGAILLARD SUR SAVE" + "codePostal": "39250", + "codeCommune": "39085", + "libelleAcheminement": "CERNIEBAUD", + "nomCommune": "CERNIEBAUD" }, { - "codePostal": "57640", - "codeCommune": "57204", - "libelleAcheminement": "FAILLY", - "nomCommune": "FAILLY" + "codePostal": "27620", + "codeCommune": "27540", + "libelleAcheminement": "STE GENEVIEVE LES GASNY", + "nomCommune": "STE GENEVIEVE LES GASNY" }, { - "codePostal": "02430", - "codeCommune": "02340", - "libelleAcheminement": "GAUCHY", - "nomCommune": "GAUCHY" + "codePostal": "28700", + "codeCommune": "28397", + "libelleAcheminement": "UMPEAU", + "nomCommune": "UMPEAU" }, { - "codePostal": "64150", - "codeCommune": "64003", - "libelleAcheminement": "ABIDOS", - "nomCommune": "ABIDOS" + "codePostal": "39130", + "codeCommune": "39278", + "libelleAcheminement": "LARGILLAY MARSONNAY", + "nomCommune": "LARGILLAY MARSONNAY" }, { - "codePostal": "31560", - "codeCommune": "31380", - "libelleAcheminement": "MONTGEARD", - "nomCommune": "MONTGEARD" + "codePostal": "39800", + "codeCommune": "39094", + "libelleAcheminement": "CHAMOLE", + "nomCommune": "CHAMOLE" }, { - "codePostal": "57450", - "codeCommune": "57208", - "libelleAcheminement": "FARSCHVILLER", - "nomCommune": "FARSCHVILLER" + "codePostal": "27560", + "codeCommune": "27541", + "libelleAcheminement": "LE MESNIL ST JEAN", + "nomCommune": "LE MESNIL ST JEAN" }, { - "codePostal": "02590", - "codeCommune": "02343", - "libelleAcheminement": "GERMAINE", - "nomCommune": "GERMAINE" + "codePostal": "28240", + "codeCommune": "28401", + "libelleAcheminement": "VAUPILLON", + "nomCommune": "VAUPILLON" }, { - "codePostal": "64390", - "codeCommune": "64004", - "libelleAcheminement": "ABITAIN", - "nomCommune": "ABITAIN" + "codePostal": "39700", + "codeCommune": "39285", + "libelleAcheminement": "LAVANS LES DOLE", + "nomCommune": "LAVANS LES DOLE" }, { - "codePostal": "31560", - "codeCommune": "31396", - "libelleAcheminement": "NAILLOUX", - "nomCommune": "NAILLOUX" + "codePostal": "39100", + "codeCommune": "39101", + "libelleAcheminement": "CHAMPVANS", + "nomCommune": "CHAMPVANS" }, { - "codePostal": "57380", - "codeCommune": "57209", - "libelleAcheminement": "FAULQUEMONT", - "nomCommune": "FAULQUEMONT" + "codePostal": "27370", + "codeCommune": "27545", + "libelleAcheminement": "ST GERMAIN DE PASQUIER", + "nomCommune": "ST GERMAIN DE PASQUIER" }, { - "codePostal": "02350", - "codeCommune": "02346", - "libelleAcheminement": "GIZY", - "nomCommune": "GIZY" + "codePostal": "28150", + "codeCommune": "28406", + "libelleAcheminement": "EOLE EN BEAUCE", + "nomCommune": "EOLE EN BEAUCE" }, { - "codePostal": "64220", - "codeCommune": "64011", - "libelleAcheminement": "AINCILLE", - "nomCommune": "AINCILLE" + "codePostal": "39170", + "codeCommune": "39286", + "libelleAcheminement": "LAVANS LES ST CLAUDE", + "nomCommune": "LAVANS LES ST CLAUDE" }, { - "codePostal": "31350", - "codeCommune": "31398", - "libelleAcheminement": "NIZAN GESSE", - "nomCommune": "NIZAN GESSE" + "codePostal": "39260", + "codeCommune": "39106", + "libelleAcheminement": "CHARCHILLA", + "nomCommune": "CHARCHILLA" }, { - "codePostal": "57190", - "codeCommune": "57221", - "libelleAcheminement": "FLORANGE", - "nomCommune": "FLORANGE" + "codePostal": "27950", + "codeCommune": "27554", + "libelleAcheminement": "LA CHAPELLE LONGUEVILLE", + "nomCommune": "LA CHAPELLE LONGUEVILLE" }, { - "codePostal": "02350", - "codeCommune": "02353", - "libelleAcheminement": "GRANDLUP ET FAY", - "nomCommune": "GRANDLUP ET FAY" + "codePostal": "28150", + "codeCommune": "28406", + "libelleAcheminement": "EOLE EN BEAUCE", + "nomCommune": "EOLE EN BEAUCE" }, { - "codePostal": "64220", - "codeCommune": "64013", - "libelleAcheminement": "AINHICE MONGELOS", - "nomCommune": "AINHICE MONGELOS" + "codePostal": "39170", + "codeCommune": "39293", + "libelleAcheminement": "LESCHERES", + "nomCommune": "LESCHERES" }, { - "codePostal": "31350", - "codeCommune": "31412", - "libelleAcheminement": "PEGUILHAN", - "nomCommune": "PEGUILHAN" + "codePostal": "39240", + "codeCommune": "39111", + "libelleAcheminement": "CHARNOD", + "nomCommune": "CHARNOD" }, { - "codePostal": "57650", - "codeCommune": "57226", - "libelleAcheminement": "FONTOY", - "nomCommune": "FONTOY" + "codePostal": "27220", + "codeCommune": "27555", + "libelleAcheminement": "ST LAURENT DES BOIS", + "nomCommune": "ST LAURENT DES BOIS" }, { - "codePostal": "02360", - "codeCommune": "02354", - "libelleAcheminement": "GRANDRIEUX", - "nomCommune": "GRANDRIEUX" + "codePostal": "28150", + "codeCommune": "28411", + "libelleAcheminement": "VILLARS", + "nomCommune": "VILLARS" }, { - "codePostal": "64160", - "codeCommune": "64027", - "libelleAcheminement": "ANOS", - "nomCommune": "ANOS" + "codePostal": "39320", + "codeCommune": "39295", + "libelleAcheminement": "LOISIA", + "nomCommune": "LOISIA" }, { - "codePostal": "31390", - "codeCommune": "31416", - "libelleAcheminement": "PEYSSIES", - "nomCommune": "PEYSSIES" + "codePostal": "39380", + "codeCommune": "39117", + "libelleAcheminement": "CHATELAY", + "nomCommune": "CHATELAY" }, { - "codePostal": "57600", - "codeCommune": "57227", - "libelleAcheminement": "FORBACH", - "nomCommune": "FORBACH" + "codePostal": "27930", + "codeCommune": "27570", + "libelleAcheminement": "ST MARTIN LA CAMPAGNE", + "nomCommune": "ST MARTIN LA CAMPAGNE" }, { - "codePostal": "02210", - "codeCommune": "02356", - "libelleAcheminement": "GRISOLLES", - "nomCommune": "GRISOLLES" + "codePostal": "28210", + "codeCommune": "28415", + "libelleAcheminement": "VILLEMEUX SUR EURE", + "nomCommune": "VILLEMEUX SUR EURE" }, { - "codePostal": "64120", - "codeCommune": "64034", - "libelleAcheminement": "ARBERATS SILLEGUE", - "nomCommune": "ARBERATS SILLEGUE" + "codePostal": "39230", + "codeCommune": "39296", + "libelleAcheminement": "LOMBARD", + "nomCommune": "LOMBARD" }, { - "codePostal": "31370", - "codeCommune": "31423", - "libelleAcheminement": "PLAGNOLE", - "nomCommune": "PLAGNOLE" + "codePostal": "39230", + "codeCommune": "39124", + "libelleAcheminement": "CHAUMERGY", + "nomCommune": "CHAUMERGY" }, { - "codePostal": "57660", - "codeCommune": "57237", - "libelleAcheminement": "FREMESTROFF", - "nomCommune": "FREMESTROFF" + "codePostal": "27450", + "codeCommune": "27571", + "libelleAcheminement": "ST MARTIN ST FIRMIN", + "nomCommune": "ST MARTIN ST FIRMIN" }, { - "codePostal": "02140", - "codeCommune": "02369", - "libelleAcheminement": "HARCIGNY", - "nomCommune": "HARCIGNY" + "codePostal": "28130", + "codeCommune": "28423", + "libelleAcheminement": "YERMENONVILLE", + "nomCommune": "YERMENONVILLE" }, { - "codePostal": "64120", - "codeCommune": "64036", - "libelleAcheminement": "ARBOUET SUSSAUTE", - "nomCommune": "ARBOUET SUSSAUTE" + "codePostal": "39120", + "codeCommune": "39299", + "libelleAcheminement": "LONGWY SUR LE DOUBS", + "nomCommune": "LONGWY SUR LE DOUBS" }, { - "codePostal": "31830", - "codeCommune": "31424", - "libelleAcheminement": "PLAISANCE DU TOUCH", - "nomCommune": "PLAISANCE DU TOUCH" + "codePostal": "39800", + "codeCommune": "39127", + "libelleAcheminement": "CHAUSSENANS", + "nomCommune": "CHAUSSENANS" }, { - "codePostal": "57170", - "codeCommune": "57238", - "libelleAcheminement": "FRESNES EN SAULNOIS", - "nomCommune": "FRESNES EN SAULNOIS" + "codePostal": "27160", + "codeCommune": "27578", + "libelleAcheminement": "STE MARIE D ATTEZ", + "nomCommune": "STE MARIE D ATTEZ" }, { - "codePostal": "02420", - "codeCommune": "02370", - "libelleAcheminement": "HARGICOURT", - "nomCommune": "HARGICOURT" + "codePostal": "28320", + "codeCommune": "28425", + "libelleAcheminement": "YMERAY", + "nomCommune": "YMERAY" }, { - "codePostal": "64200", - "codeCommune": "64038", - "libelleAcheminement": "ARCANGUES", - "nomCommune": "ARCANGUES" + "codePostal": "39210", + "codeCommune": "39317", + "libelleAcheminement": "LA MARRE", + "nomCommune": "LA MARRE" }, { - "codePostal": "31800", - "codeCommune": "31427", - "libelleAcheminement": "POINTIS INARD", - "nomCommune": "POINTIS INARD" + "codePostal": "39150", + "codeCommune": "39130", + "libelleAcheminement": "NANCHEZ", + "nomCommune": "NANCHEZ" }, { - "codePostal": "57820", - "codeCommune": "57244", - "libelleAcheminement": "GARREBOURG", - "nomCommune": "GARREBOURG" + "codePostal": "27800", + "codeCommune": "27584", + "libelleAcheminement": "ST PAUL DE FOURQUES", + "nomCommune": "ST PAUL DE FOURQUES" }, { - "codePostal": "02140", - "codeCommune": "02373", - "libelleAcheminement": "HARY", - "nomCommune": "HARY" + "codePostal": "29650", + "codeCommune": "29014", + "libelleAcheminement": "BOTSORHEL", + "nomCommune": "BOTSORHEL" }, { - "codePostal": "64320", - "codeCommune": "64041", - "libelleAcheminement": "ARESSY", - "nomCommune": "ARESSY" + "codePostal": "39260", + "codeCommune": "39318", + "libelleAcheminement": "MARTIGNA", + "nomCommune": "MARTIGNA" }, { - "codePostal": "31210", - "codeCommune": "31430", - "libelleAcheminement": "PONLAT TAILLEBOURG", - "nomCommune": "PONLAT TAILLEBOURG" + "codePostal": "39150", + "codeCommune": "39130", + "libelleAcheminement": "NANCHEZ", + "nomCommune": "NANCHEZ" }, { - "codePostal": "57260", - "codeCommune": "57246", - "libelleAcheminement": "GELUCOURT", - "nomCommune": "GELUCOURT" + "codePostal": "27920", + "codeCommune": "27589", + "libelleAcheminement": "ST PIERRE DE BAILLEUL", + "nomCommune": "ST PIERRE DE BAILLEUL" }, { - "codePostal": "02120", - "codeCommune": "02376", - "libelleAcheminement": "HAUTEVILLE", - "nomCommune": "HAUTEVILLE" + "codePostal": "29160", + "codeCommune": "29042", + "libelleAcheminement": "CROZON", + "nomCommune": "CROZON" }, { - "codePostal": "64410", - "codeCommune": "64044", - "libelleAcheminement": "ARGET", - "nomCommune": "ARGET" + "codePostal": "39190", + "codeCommune": "39320", + "libelleAcheminement": "MAYNAL", + "nomCommune": "MAYNAL" }, { - "codePostal": "31110", - "codeCommune": "31432", - "libelleAcheminement": "PORTET DE LUCHON", - "nomCommune": "PORTET DE LUCHON" + "codePostal": "39110", + "codeCommune": "39133", + "libelleAcheminement": "CHAUX CHAMPAGNY", + "nomCommune": "CHAUX CHAMPAGNY" }, { - "codePostal": "57170", - "codeCommune": "57247", - "libelleAcheminement": "GERBECOURT", - "nomCommune": "GERBECOURT" + "codePostal": "27800", + "codeCommune": "27592", + "libelleAcheminement": "ST PIERRE DE SALERNE", + "nomCommune": "ST PIERRE DE SALERNE" }, { - "codePostal": "02440", - "codeCommune": "02380", - "libelleAcheminement": "HINACOURT", - "nomCommune": "HINACOURT" + "codePostal": "29460", + "codeCommune": "29043", + "libelleAcheminement": "DAOULAS", + "nomCommune": "DAOULAS" }, { - "codePostal": "64640", - "codeCommune": "64046", - "libelleAcheminement": "ARMENDARITS", - "nomCommune": "ARMENDARITS" + "codePostal": "39260", + "codeCommune": "39328", + "libelleAcheminement": "MEUSSIA", + "nomCommune": "MEUSSIA" }, { - "codePostal": "31120", - "codeCommune": "31433", - "libelleAcheminement": "PORTET SUR GARONNE", - "nomCommune": "PORTET SUR GARONNE" + "codePostal": "39230", + "codeCommune": "39136", + "libelleAcheminement": "CHEMENOT", + "nomCommune": "CHEMENOT" }, { - "codePostal": "57530", - "codeCommune": "57249", - "libelleAcheminement": "GLATIGNY", - "nomCommune": "GLATIGNY" + "codePostal": "27600", + "codeCommune": "27599", + "libelleAcheminement": "ST PIERRE LA GARENNE", + "nomCommune": "ST PIERRE LA GARENNE" }, { - "codePostal": "02420", - "codeCommune": "02392", - "libelleAcheminement": "JONCOURT", - "nomCommune": "JONCOURT" + "codePostal": "29100", + "codeCommune": "29046", + "libelleAcheminement": "DOUARNENEZ", + "nomCommune": "DOUARNENEZ" }, { - "codePostal": "64220", - "codeCommune": "64047", - "libelleAcheminement": "ARNEGUY", - "nomCommune": "ARNEGUY" + "codePostal": "39250", + "codeCommune": "39329", + "libelleAcheminement": "MIEGES", + "nomCommune": "MIEGES" }, { - "codePostal": "31320", - "codeCommune": "31448", - "libelleAcheminement": "REBIGUE", - "nomCommune": "REBIGUE" + "codePostal": "39120", + "codeCommune": "39138", + "libelleAcheminement": "CHEMIN", + "nomCommune": "CHEMIN" }, { - "codePostal": "57220", - "codeCommune": "57252", - "libelleAcheminement": "GOMELANGE", - "nomCommune": "GOMELANGE" + "codePostal": "27560", + "codeCommune": "27603", + "libelleAcheminement": "ST SIMEON", + "nomCommune": "ST SIMEON" }, { - "codePostal": "02380", - "codeCommune": "02395", - "libelleAcheminement": "JUMENCOURT", - "nomCommune": "JUMENCOURT" + "codePostal": "29860", + "codeCommune": "29047", + "libelleAcheminement": "LE DRENNEC", + "nomCommune": "LE DRENNEC" }, { - "codePostal": "64120", - "codeCommune": "64049", - "libelleAcheminement": "AROUE ITHOROTS OLHAIBY", - "nomCommune": "AROUE ITHOROTS OLHAIBY" + "codePostal": "39800", + "codeCommune": "39330", + "libelleAcheminement": "MIERY", + "nomCommune": "MIERY" }, { - "codePostal": "31800", - "codeCommune": "31449", - "libelleAcheminement": "REGADES", - "nomCommune": "REGADES" + "codePostal": "39120", + "codeCommune": "39139", + "libelleAcheminement": "CHENE BERNARD", + "nomCommune": "CHENE BERNARD" }, { - "codePostal": "57815", - "codeCommune": "57253", - "libelleAcheminement": "GONDREXANGE", - "nomCommune": "GONDREXANGE" + "codePostal": "27260", + "codeCommune": "27605", + "libelleAcheminement": "ST SYLVESTRE DE CORMEILLES", + "nomCommune": "ST SYLVESTRE DE CORMEILLES" }, { - "codePostal": "02600", - "codeCommune": "02410", - "libelleAcheminement": "LARGNY SUR AUTOMNE", - "nomCommune": "LARGNY SUR AUTOMNE" + "codePostal": "29590", + "codeCommune": "29053", + "libelleAcheminement": "LE FAOU", + "nomCommune": "LE FAOU" }, { - "codePostal": "64350", - "codeCommune": "64052", - "libelleAcheminement": "ARRICAU BORDES", - "nomCommune": "ARRICAU BORDES" + "codePostal": "39570", + "codeCommune": "39334", + "libelleAcheminement": "MOIRON", + "nomCommune": "MOIRON" }, { - "codePostal": "31800", - "codeCommune": "31452", - "libelleAcheminement": "RIEUCAZE", - "nomCommune": "RIEUCAZE" + "codePostal": "39290", + "codeCommune": "39141", + "libelleAcheminement": "CHEVIGNY", + "nomCommune": "CHEVIGNY" }, { - "codePostal": "57680", - "codeCommune": "57254", - "libelleAcheminement": "GORZE", - "nomCommune": "GORZE" + "codePostal": "27930", + "codeCommune": "27611", + "libelleAcheminement": "ST VIGOR", + "nomCommune": "ST VIGOR" }, { - "codePostal": "02210", - "codeCommune": "02411", - "libelleAcheminement": "LATILLY", - "nomCommune": "LATILLY" + "codePostal": "29690", + "codeCommune": "29054", + "libelleAcheminement": "LA FEUILLEE", + "nomCommune": "LA FEUILLEE" }, { - "codePostal": "64420", - "codeCommune": "64053", - "libelleAcheminement": "ARRIEN", - "nomCommune": "ARRIEN" + "codePostal": "39260", + "codeCommune": "39351", + "libelleAcheminement": "MONTCUSEL", + "nomCommune": "MONTCUSEL" }, { - "codePostal": "31120", - "codeCommune": "31460", - "libelleAcheminement": "ROQUETTES", - "nomCommune": "ROQUETTES" + "codePostal": "39110", + "codeCommune": "39155", + "libelleAcheminement": "CLUCY", + "nomCommune": "CLUCY" }, { - "codePostal": "57170", - "codeCommune": "57257", - "libelleAcheminement": "GREMECEY", - "nomCommune": "GREMECEY" + "codePostal": "27400", + "codeCommune": "27623", + "libelleAcheminement": "SURTAUVILLE", + "nomCommune": "SURTAUVILLE" }, { - "codePostal": "02220", - "codeCommune": "02421", - "libelleAcheminement": "LESGES", - "nomCommune": "LESGES" + "codePostal": "29260", + "codeCommune": "29055", + "libelleAcheminement": "LE FOLGOET", + "nomCommune": "LE FOLGOET" }, { - "codePostal": "64660", - "codeCommune": "64064", - "libelleAcheminement": "ASASP ARROS", - "nomCommune": "ASASP ARROS" + "codePostal": "39320", + "codeCommune": "39353", + "libelleAcheminement": "MONTFLEUR", + "nomCommune": "MONTFLEUR" }, { - "codePostal": "31540", - "codeCommune": "31463", - "libelleAcheminement": "ROUMENS", - "nomCommune": "ROUMENS" + "codePostal": "39140", + "codeCommune": "39167", + "libelleAcheminement": "COSGES", + "nomCommune": "COSGES" }, { - "codePostal": "57510", - "codeCommune": "57263", - "libelleAcheminement": "GRUNDVILLER", - "nomCommune": "GRUNDVILLER" + "codePostal": "27400", + "codeCommune": "27624", + "libelleAcheminement": "SURVILLE", + "nomCommune": "SURVILLE" }, { - "codePostal": "02350", - "codeCommune": "02430", - "libelleAcheminement": "LIESSE NOTRE DAME", - "nomCommune": "LIESSE NOTRE DAME" + "codePostal": "29940", + "codeCommune": "29057", + "libelleAcheminement": "LA FORET FOUESNANT", + "nomCommune": "LA FORET FOUESNANT" }, { - "codePostal": "64290", - "codeCommune": "64072", - "libelleAcheminement": "AUBERTIN", - "nomCommune": "AUBERTIN" + "codePostal": "39110", + "codeCommune": "39359", + "libelleAcheminement": "MONTMARLON", + "nomCommune": "MONTMARLON" }, { - "codePostal": "31470", - "codeCommune": "31466", - "libelleAcheminement": "SAIGUEDE", - "nomCommune": "SAIGUEDE" + "codePostal": "39570", + "codeCommune": "39169", + "libelleAcheminement": "COURBOUZON", + "nomCommune": "COURBOUZON" }, { - "codePostal": "57260", - "codeCommune": "57268", - "libelleAcheminement": "GUEBLING", - "nomCommune": "GUEBLING" + "codePostal": "27800", + "codeCommune": "27630", + "libelleAcheminement": "THIBOUVILLE", + "nomCommune": "THIBOUVILLE" }, { - "codePostal": "02220", - "codeCommune": "02432", - "libelleAcheminement": "LIME", - "nomCommune": "LIME" + "codePostal": "29710", + "codeCommune": "29065", + "libelleAcheminement": "GOURLIZON", + "nomCommune": "GOURLIZON" }, { - "codePostal": "64330", - "codeCommune": "64074", - "libelleAcheminement": "AUBOUS", - "nomCommune": "AUBOUS" + "codePostal": "39570", + "codeCommune": "39362", + "libelleAcheminement": "MONTMOROT", + "nomCommune": "MONTMOROT" }, { - "codePostal": "31420", - "codeCommune": "31468", - "libelleAcheminement": "ST ANDRE", - "nomCommune": "ST ANDRE" + "codePostal": "39200", + "codeCommune": "39174", + "libelleAcheminement": "COYRIERE", + "nomCommune": "COYRIERE" }, { - "codePostal": "57690", - "codeCommune": "57276", - "libelleAcheminement": "GUINGLANGE", - "nomCommune": "GUINGLANGE" + "codePostal": "27510", + "codeCommune": "27644", + "libelleAcheminement": "TILLY", + "nomCommune": "TILLY" }, { - "codePostal": "02600", - "codeCommune": "02438", - "libelleAcheminement": "LONGPONT", - "nomCommune": "LONGPONT" + "codePostal": "29180", + "codeCommune": "29066", + "libelleAcheminement": "GUENGAT", + "nomCommune": "GUENGAT" }, { - "codePostal": "64390", - "codeCommune": "64083", - "libelleAcheminement": "AUTEVIELLE ST MARTIN BIDEREN", - "nomCommune": "AUTEVIELLE ST MARTIN BIDEREN" + "codePostal": "39300", + "codeCommune": "39366", + "libelleAcheminement": "MONT SUR MONNET", + "nomCommune": "MONT SUR MONNET" }, { - "codePostal": "31110", - "codeCommune": "31470", - "libelleAcheminement": "ST AVENTIN", - "nomCommune": "ST AVENTIN" + "codePostal": "39600", + "codeCommune": "39176", + "libelleAcheminement": "CRAMANS", + "nomCommune": "CRAMANS" }, { - "codePostal": "57570", - "codeCommune": "57282", - "libelleAcheminement": "HAGEN", - "nomCommune": "HAGEN" + "codePostal": "27210", + "codeCommune": "27646", + "libelleAcheminement": "LE TORPT", + "nomCommune": "LE TORPT" }, { - "codePostal": "02160", - "codeCommune": "02439", - "libelleAcheminement": "LES SEPTVALLONS", - "nomCommune": "LES SEPTVALLONS" + "codePostal": "29300", + "codeCommune": "29071", + "libelleAcheminement": "GUILLIGOMARC H", + "nomCommune": "GUILLIGOMARC H" }, { - "codePostal": "64300", - "codeCommune": "64087", - "libelleAcheminement": "BAIGTS DE BEARN", - "nomCommune": "BAIGTS DE BEARN" + "codePostal": "39330", + "codeCommune": "39370", + "libelleAcheminement": "MOUCHARD", + "nomCommune": "MOUCHARD" }, { - "codePostal": "31540", - "codeCommune": "31478", - "libelleAcheminement": "ST FELIX LAURAGAIS", - "nomCommune": "ST FELIX LAURAGAIS" + "codePostal": "39570", + "codeCommune": "39177", + "libelleAcheminement": "HAUTEROCHE", + "nomCommune": "HAUTEROCHE" }, { - "codePostal": "57870", - "codeCommune": "57298", - "libelleAcheminement": "HARREBERG", - "nomCommune": "HARREBERG" + "codePostal": "27180", + "codeCommune": "27650", + "libelleAcheminement": "TOURNEDOS BOIS HUBERT", + "nomCommune": "TOURNEDOS BOIS HUBERT" }, { - "codePostal": "02190", - "codeCommune": "02440", - "libelleAcheminement": "LOR", - "nomCommune": "LOR" + "codePostal": "29290", + "codeCommune": "29076", + "libelleAcheminement": "MILIZAC GUIPRONVEL", + "nomCommune": "MILIZAC GUIPRONVEL" }, { - "codePostal": "64160", - "codeCommune": "64095", - "libelleAcheminement": "BARINQUE", - "nomCommune": "BARINQUE" + "codePostal": "39160", + "codeCommune": "39378", + "libelleAcheminement": "LES TROIS CHATEAUX", + "nomCommune": "LES TROIS CHATEAUX" }, { - "codePostal": "31380", - "codeCommune": "31489", - "libelleAcheminement": "ST JEAN LHERM", - "nomCommune": "ST JEAN LHERM" + "codePostal": "39290", + "codeCommune": "39188", + "libelleAcheminement": "DAMMARTIN MARPAIN", + "nomCommune": "DAMMARTIN MARPAIN" }, { - "codePostal": "57700", - "codeCommune": "57306", - "libelleAcheminement": "HAYANGE", - "nomCommune": "HAYANGE" + "codePostal": "27110", + "codeCommune": "27658", + "libelleAcheminement": "LE TREMBLAY OMONVILLE", + "nomCommune": "LE TREMBLAY OMONVILLE" }, { - "codePostal": "02440", - "codeCommune": "02446", - "libelleAcheminement": "LY FONTAINE", - "nomCommune": "LY FONTAINE" + "codePostal": "29460", + "codeCommune": "29078", + "libelleAcheminement": "HANVEC", + "nomCommune": "HANVEC" }, { - "codePostal": "64220", - "codeCommune": "64107", - "libelleAcheminement": "BEHORLEGUY", - "nomCommune": "BEHORLEGUY" + "codePostal": "39570", + "codeCommune": "39390", + "libelleAcheminement": "NOGNA", + "nomCommune": "NOGNA" }, { - "codePostal": "31540", - "codeCommune": "31491", - "libelleAcheminement": "ST JULIA", - "nomCommune": "ST JULIA" + "codePostal": "39500", + "codeCommune": "39189", + "libelleAcheminement": "DAMPARIS", + "nomCommune": "DAMPARIS" }, { - "codePostal": "57820", - "codeCommune": "57315", - "libelleAcheminement": "HENRIDORFF", - "nomCommune": "HENRIDORFF" + "codePostal": "27110", + "codeCommune": "27663", + "libelleAcheminement": "LE TRONCQ", + "nomCommune": "LE TRONCQ" }, { - "codePostal": "02120", - "codeCommune": "02455", - "libelleAcheminement": "MALZY", - "nomCommune": "MALZY" + "codePostal": "29810", + "codeCommune": "29098", + "libelleAcheminement": "LAMPAUL PLOUARZEL", + "nomCommune": "LAMPAUL PLOUARZEL" }, { - "codePostal": "64800", - "codeCommune": "64109", - "libelleAcheminement": "BENEJACQ", - "nomCommune": "BENEJACQ" + "codePostal": "39250", + "codeCommune": "39393", + "libelleAcheminement": "ONGLIERES", + "nomCommune": "ONGLIERES" }, { - "codePostal": "31350", - "codeCommune": "31493", - "libelleAcheminement": "ST LARY BOUJEAN", - "nomCommune": "ST LARY BOUJEAN" + "codePostal": "39100", + "codeCommune": "39198", + "libelleAcheminement": "DOLE", + "nomCommune": "DOLE" }, { - "codePostal": "57830", - "codeCommune": "57320", - "libelleAcheminement": "HERTZING", - "nomCommune": "HERTZING" + "codePostal": "27480", + "codeCommune": "27664", + "libelleAcheminement": "LE TRONQUAY", + "nomCommune": "LE TRONQUAY" }, { - "codePostal": "02350", - "codeCommune": "02457", - "libelleAcheminement": "MARCHAIS", - "nomCommune": "MARCHAIS" + "codePostal": "29260", + "codeCommune": "29100", + "libelleAcheminement": "LANARVILY", + "nomCommune": "LANARVILY" }, { - "codePostal": "64270", - "codeCommune": "64113", - "libelleAcheminement": "BERGOUEY VIELLENAVE", - "nomCommune": "BERGOUEY VIELLENAVE" + "codePostal": "39700", + "codeCommune": "39396", + "libelleAcheminement": "ORCHAMPS", + "nomCommune": "ORCHAMPS" }, { - "codePostal": "31560", - "codeCommune": "31495", - "libelleAcheminement": "ST LEON", - "nomCommune": "ST LEON" + "codePostal": "39210", + "codeCommune": "39199", + "libelleAcheminement": "DOMBLANS", + "nomCommune": "DOMBLANS" }, { - "codePostal": "57320", - "codeCommune": "57322", - "libelleAcheminement": "HESTROFF", - "nomCommune": "HESTROFF" + "codePostal": "27300", + "codeCommune": "27667", + "libelleAcheminement": "VALAILLES", + "nomCommune": "VALAILLES" }, { - "codePostal": "02300", - "codeCommune": "02461", - "libelleAcheminement": "MAREST DAMPCOURT", - "nomCommune": "MAREST DAMPCOURT" + "codePostal": "29560", + "codeCommune": "29104", + "libelleAcheminement": "LANDEVENNEC", + "nomCommune": "LANDEVENNEC" }, { - "codePostal": "64350", - "codeCommune": "64118", - "libelleAcheminement": "BETRACQ", - "nomCommune": "BETRACQ" + "codePostal": "39350", + "codeCommune": "39398", + "libelleAcheminement": "OUGNEY", + "nomCommune": "OUGNEY" }, { - "codePostal": "31470", - "codeCommune": "31499", - "libelleAcheminement": "ST LYS", - "nomCommune": "ST LYS" + "codePostal": "39130", + "codeCommune": "39201", + "libelleAcheminement": "DOUCIER", + "nomCommune": "DOUCIER" }, { - "codePostal": "57920", - "codeCommune": "57331", - "libelleAcheminement": "HOMBOURG BUDANGE", - "nomCommune": "HOMBOURG BUDANGE" + "codePostal": "27110", + "codeCommune": "27677", + "libelleAcheminement": "VENON", + "nomCommune": "VENON" }, { - "codePostal": "02130", - "codeCommune": "02462", - "libelleAcheminement": "MAREUIL EN DOLE", - "nomCommune": "MAREUIL EN DOLE" + "codePostal": "29400", + "codeCommune": "29105", + "libelleAcheminement": "LANDIVISIAU", + "nomCommune": "LANDIVISIAU" }, { - "codePostal": "64230", - "codeCommune": "64121", - "libelleAcheminement": "BEYRIE EN BEARN", - "nomCommune": "BEYRIE EN BEARN" + "codePostal": "39380", + "codeCommune": "39399", + "libelleAcheminement": "OUNANS", + "nomCommune": "OUNANS" }, { - "codePostal": "31590", - "codeCommune": "31501", - "libelleAcheminement": "ST MARCEL PAULEL", - "nomCommune": "ST MARCEL PAULEL" + "codePostal": "39250", + "codeCommune": "39203", + "libelleAcheminement": "DOYE", + "nomCommune": "DOYE" }, { - "codePostal": "57510", - "codeCommune": "57337", - "libelleAcheminement": "HOSTE", - "nomCommune": "HOSTE" + "codePostal": "27180", + "codeCommune": "27678", + "libelleAcheminement": "LES VENTES", + "nomCommune": "LES VENTES" }, { - "codePostal": "02140", - "codeCommune": "02463", - "libelleAcheminement": "MARFONTAINE", - "nomCommune": "MARFONTAINE" + "codePostal": "29510", + "codeCommune": "29106", + "libelleAcheminement": "LANDREVARZEC", + "nomCommune": "LANDREVARZEC" }, { - "codePostal": "64520", - "codeCommune": "64123", - "libelleAcheminement": "BIDACHE", - "nomCommune": "BIDACHE" + "codePostal": "39570", + "codeCommune": "39411", + "libelleAcheminement": "PERRIGNY", + "nomCommune": "PERRIGNY" }, { - "codePostal": "31110", - "codeCommune": "31508", - "libelleAcheminement": "ST PAUL D OUEIL", - "nomCommune": "ST PAUL D OUEIL" + "codePostal": "39700", + "codeCommune": "39205", + "libelleAcheminement": "ECLANS NENON", + "nomCommune": "ECLANS NENON" }, { - "codePostal": "57970", - "codeCommune": "57345", - "libelleAcheminement": "INGLANGE", - "nomCommune": "INGLANGE" + "codePostal": "27110", + "codeCommune": "27695", + "libelleAcheminement": "VILLEZ SUR LE NEUBOURG", + "nomCommune": "VILLEZ SUR LE NEUBOURG" }, { - "codePostal": "02250", - "codeCommune": "02468", - "libelleAcheminement": "MARLE", - "nomCommune": "MARLE" + "codePostal": "29710", + "codeCommune": "29108", + "libelleAcheminement": "LANDUDEC", + "nomCommune": "LANDUDEC" }, { - "codePostal": "64780", - "codeCommune": "64124", - "libelleAcheminement": "BIDARRAY", - "nomCommune": "BIDARRAY" + "codePostal": "39300", + "codeCommune": "39419", + "libelleAcheminement": "PILLEMOINE", + "nomCommune": "PILLEMOINE" }, { - "codePostal": "31590", - "codeCommune": "31511", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "39600", + "codeCommune": "39206", + "libelleAcheminement": "ECLEUX", + "nomCommune": "ECLEUX" }, { - "codePostal": "57590", - "codeCommune": "57349", - "libelleAcheminement": "JALLAUCOURT", - "nomCommune": "JALLAUCOURT" + "codePostal": "27400", + "codeCommune": "27697", + "libelleAcheminement": "VIRONVAY", + "nomCommune": "VIRONVAY" }, { - "codePostal": "02800", - "codeCommune": "02473", - "libelleAcheminement": "MAYOT", - "nomCommune": "MAYOT" + "codePostal": "29840", + "codeCommune": "29109", + "libelleAcheminement": "LANDUNVEZ", + "nomCommune": "LANDUNVEZ" }, { - "codePostal": "64300", - "codeCommune": "64131", - "libelleAcheminement": "BIRON", - "nomCommune": "BIRON" + "codePostal": "39150", + "codeCommune": "39424", + "libelleAcheminement": "LES PLANCHES EN MONTAGNE", + "nomCommune": "LES PLANCHES EN MONTAGNE" }, { - "codePostal": "31290", - "codeCommune": "31514", - "libelleAcheminement": "ST ROME", - "nomCommune": "ST ROME" + "codePostal": "39160", + "codeCommune": "39209", + "libelleAcheminement": "VAL D EPY", + "nomCommune": "VAL D EPY" }, { - "codePostal": "57590", - "codeCommune": "57354", - "libelleAcheminement": "JUVILLE", - "nomCommune": "JUVILLE" + "codePostal": "28700", + "codeCommune": "28013", + "libelleAcheminement": "AUNAY SOUS AUNEAU", + "nomCommune": "AUNAY SOUS AUNEAU" }, { - "codePostal": "02270", - "codeCommune": "02491", - "libelleAcheminement": "MONCEAU LE NEUF ET FAUCOUZY", - "nomCommune": "MONCEAU LE NEUF ET FAUCOUZY" + "codePostal": "29190", + "codeCommune": "29115", + "libelleAcheminement": "LANNEDERN", + "nomCommune": "LANNEDERN" }, { - "codePostal": "64510", - "codeCommune": "64133", - "libelleAcheminement": "BOEIL BEZING", - "nomCommune": "BOEIL BEZING" + "codePostal": "39250", + "codeCommune": "39428", + "libelleAcheminement": "PLENISETTE", + "nomCommune": "PLENISETTE" }, { - "codePostal": "31470", - "codeCommune": "31518", - "libelleAcheminement": "ST THOMAS", - "nomCommune": "ST THOMAS" + "codePostal": "39250", + "codeCommune": "39214", + "libelleAcheminement": "ESSERVAL TARTRE", + "nomCommune": "ESSERVAL TARTRE" }, { - "codePostal": "57920", - "codeCommune": "57358", - "libelleAcheminement": "KEDANGE SUR CANNER", - "nomCommune": "KEDANGE SUR CANNER" + "codePostal": "28700", + "codeCommune": "28015", + "libelleAcheminement": "AUNEAU BLEURY ST SYMPHORIEN", + "nomCommune": "AUNEAU BLEURY ST SYMPHORIEN" }, { - "codePostal": "02120", - "codeCommune": "02494", - "libelleAcheminement": "MONCEAU SUR OISE", - "nomCommune": "MONCEAU SUR OISE" + "codePostal": "29280", + "codeCommune": "29130", + "libelleAcheminement": "LOCMARIA PLOUZANE", + "nomCommune": "LOCMARIA PLOUZANE" }, { - "codePostal": "64490", - "codeCommune": "64136", - "libelleAcheminement": "BORCE", - "nomCommune": "BORCE" + "codePostal": "39120", + "codeCommune": "39429", + "libelleAcheminement": "PLEURE", + "nomCommune": "PLEURE" }, { - "codePostal": "31260", - "codeCommune": "31523", - "libelleAcheminement": "SALIES DU SALAT", - "nomCommune": "SALIES DU SALAT" + "codePostal": "39130", + "codeCommune": "39216", + "libelleAcheminement": "ETIVAL", + "nomCommune": "ETIVAL" }, { - "codePostal": "57830", - "codeCommune": "57362", - "libelleAcheminement": "KERPRICH AUX BOIS", - "nomCommune": "KERPRICH AUX BOIS" + "codePostal": "28300", + "codeCommune": "28022", + "libelleAcheminement": "BAILLEAU L EVEQUE", + "nomCommune": "BAILLEAU L EVEQUE" }, { - "codePostal": "02470", - "codeCommune": "02496", - "libelleAcheminement": "MONNES", - "nomCommune": "MONNES" + "codePostal": "29241", + "codeCommune": "29133", + "libelleAcheminement": "LOCQUIREC", + "nomCommune": "LOCQUIREC" }, { - "codePostal": "64510", - "codeCommune": "64138", - "libelleAcheminement": "BORDES", - "nomCommune": "BORDES" + "codePostal": "39270", + "codeCommune": "39455", + "libelleAcheminement": "REITHOUSE", + "nomCommune": "REITHOUSE" }, { - "codePostal": "31390", - "codeCommune": "31525", - "libelleAcheminement": "SALLES SUR GARONNE", - "nomCommune": "SALLES SUR GARONNE" + "codePostal": "39700", + "codeCommune": "39218", + "libelleAcheminement": "ETREPIGNEY", + "nomCommune": "ETREPIGNEY" }, { - "codePostal": "57970", - "codeCommune": "57370", - "libelleAcheminement": "KOENIGSMACKER", - "nomCommune": "KOENIGSMACKER" + "codePostal": "28310", + "codeCommune": "28025", + "libelleAcheminement": "BARMAINVILLE", + "nomCommune": "BARMAINVILLE" }, { - "codePostal": "02340", - "codeCommune": "02502", - "libelleAcheminement": "MONTCORNET", - "nomCommune": "MONTCORNET" + "codePostal": "29750", + "codeCommune": "29135", + "libelleAcheminement": "LOCTUDY", + "nomCommune": "LOCTUDY" }, { - "codePostal": "64370", - "codeCommune": "64144", - "libelleAcheminement": "BOUMOURT", - "nomCommune": "BOUMOURT" + "codePostal": "39400", + "codeCommune": "39470", + "libelleAcheminement": "LES ROUSSES", + "nomCommune": "LES ROUSSES" }, { - "codePostal": "31300", - "codeCommune": "31555", - "libelleAcheminement": "TOULOUSE", - "nomCommune": "TOULOUSE" + "codePostal": "39250", + "codeCommune": "39221", + "libelleAcheminement": "LA FAVIERE", + "nomCommune": "LA FAVIERE" }, { - "codePostal": "57410", - "codeCommune": "57376", - "libelleAcheminement": "LAMBACH", - "nomCommune": "LAMBACH" + "codePostal": "28480", + "codeCommune": "28031", + "libelleAcheminement": "BEAUMONT LES AUTELS", + "nomCommune": "BEAUMONT LES AUTELS" }, { - "codePostal": "02810", - "codeCommune": "02512", - "libelleAcheminement": "MONTIGNY L ALLIER", - "nomCommune": "MONTIGNY L ALLIER" + "codePostal": "29460", + "codeCommune": "29137", + "libelleAcheminement": "LOGONNA DAOULAS", + "nomCommune": "LOGONNA DAOULAS" }, { - "codePostal": "64450", - "codeCommune": "64146", - "libelleAcheminement": "BOURNOS", - "nomCommune": "BOURNOS" + "codePostal": "39140", + "codeCommune": "39471", + "libelleAcheminement": "RUFFEY SUR SEILLE", + "nomCommune": "RUFFEY SUR SEILLE" }, { - "codePostal": "31510", - "codeCommune": "31564", - "libelleAcheminement": "VALCABRERE", - "nomCommune": "VALCABRERE" + "codePostal": "39460", + "codeCommune": "39228", + "libelleAcheminement": "FONCINE LE HAUT", + "nomCommune": "FONCINE LE HAUT" }, { - "codePostal": "57810", - "codeCommune": "57383", - "libelleAcheminement": "LANGUIMBERG", - "nomCommune": "LANGUIMBERG" + "codePostal": "28300", + "codeCommune": "28034", + "libelleAcheminement": "BERCHERES ST GERMAIN", + "nomCommune": "BERCHERES ST GERMAIN" }, { - "codePostal": "02330", - "codeCommune": "02515", - "libelleAcheminement": "MONTIGNY LES CONDE", - "nomCommune": "MONTIGNY LES CONDE" + "codePostal": "29590", + "codeCommune": "29139", + "libelleAcheminement": "LOPEREC", + "nomCommune": "LOPEREC" }, { - "codePostal": "64390", - "codeCommune": "64151", - "libelleAcheminement": "BURGARONNE", - "nomCommune": "BURGARONNE" + "codePostal": "39230", + "codeCommune": "39489", + "libelleAcheminement": "ST LOTHAIN", + "nomCommune": "ST LOTHAIN" }, { - "codePostal": "31570", - "codeCommune": "31567", - "libelleAcheminement": "VALLESVILLES", - "nomCommune": "VALLESVILLES" + "codePostal": "39230", + "codeCommune": "39234", + "libelleAcheminement": "FOULENAY", + "nomCommune": "FOULENAY" }, { - "codePostal": "57630", - "codeCommune": "57399", - "libelleAcheminement": "LEZEY", - "nomCommune": "LEZEY" + "codePostal": "28340", + "codeCommune": "28046", + "libelleAcheminement": "BOISSY LES PERCHE", + "nomCommune": "BOISSY LES PERCHE" }, { - "codePostal": "02270", - "codeCommune": "02517", - "libelleAcheminement": "MONTIGNY SUR CRECY", - "nomCommune": "MONTIGNY SUR CRECY" + "codePostal": "29800", + "codeCommune": "29144", + "libelleAcheminement": "LA MARTYRE", + "nomCommune": "LA MARTYRE" }, { - "codePostal": "64330", - "codeCommune": "64153", - "libelleAcheminement": "BUROSSE MENDOUSSE", - "nomCommune": "BUROSSE MENDOUSSE" + "codePostal": "39170", + "codeCommune": "39491", + "libelleAcheminement": "COTEAUX DU LIZON", + "nomCommune": "COTEAUX DU LIZON" }, { - "codePostal": "31450", - "codeCommune": "31568", - "libelleAcheminement": "VARENNES", - "nomCommune": "VARENNES" + "codePostal": "39570", + "codeCommune": "39250", + "libelleAcheminement": "GERUGE", + "nomCommune": "GERUGE" }, { - "codePostal": "57420", - "codeCommune": "57422", - "libelleAcheminement": "LOUVIGNY", - "nomCommune": "LOUVIGNY" + "codePostal": "28210", + "codeCommune": "28054", + "libelleAcheminement": "LE BOULLAY MIVOYE", + "nomCommune": "LE BOULLAY MIVOYE" }, { - "codePostal": "02160", - "codeCommune": "02530", - "libelleAcheminement": "MOULINS", - "nomCommune": "MOULINS" + "codePostal": "29300", + "codeCommune": "29147", + "libelleAcheminement": "MELLAC", + "nomCommune": "MELLAC" }, { - "codePostal": "64260", - "codeCommune": "64157", - "libelleAcheminement": "BUZY", - "nomCommune": "BUZY" + "codePostal": "39130", + "codeCommune": "39493", + "libelleAcheminement": "ST MAURICE CRILLAT", + "nomCommune": "ST MAURICE CRILLAT" }, { - "codePostal": "31460", - "codeCommune": "31571", - "libelleAcheminement": "VENDINE", - "nomCommune": "VENDINE" + "codePostal": "39250", + "codeCommune": "39254", + "libelleAcheminement": "GILLOIS", + "nomCommune": "GILLOIS" }, { - "codePostal": "57170", - "codeCommune": "57423", - "libelleAcheminement": "LUBECOURT", - "nomCommune": "LUBECOURT" + "codePostal": "28410", + "codeCommune": "28056", + "libelleAcheminement": "BOUTIGNY PROUAIS", + "nomCommune": "BOUTIGNY PROUAIS" }, { - "codePostal": "02400", - "codeCommune": "02540", - "libelleAcheminement": "NESLES LA MONTAGNE", - "nomCommune": "NESLES LA MONTAGNE" + "codePostal": "29350", + "codeCommune": "29150", + "libelleAcheminement": "MOELAN SUR MER", + "nomCommune": "MOELAN SUR MER" }, { - "codePostal": "64520", - "codeCommune": "64161", - "libelleAcheminement": "CAME", - "nomCommune": "CAME" + "codePostal": "39110", + "codeCommune": "39500", + "libelleAcheminement": "SALINS LES BAINS", + "nomCommune": "SALINS LES BAINS" }, { - "codePostal": "31290", - "codeCommune": "31576", - "libelleAcheminement": "VIEILLEVIGNE", - "nomCommune": "VIEILLEVIGNE" + "codePostal": "39190", + "codeCommune": "39255", + "libelleAcheminement": "GIZIA", + "nomCommune": "GIZIA" }, { - "codePostal": "57530", - "codeCommune": "57431", - "libelleAcheminement": "MAIZEROY", - "nomCommune": "MAIZEROY" + "codePostal": "28800", + "codeCommune": "28057", + "libelleAcheminement": "BOUVILLE", + "nomCommune": "BOUVILLE" }, { - "codePostal": "02250", - "codeCommune": "02545", - "libelleAcheminement": "LA NEUVILLE BOSMONT", - "nomCommune": "LA NEUVILLE BOSMONT" + "codePostal": "29920", + "codeCommune": "29153", + "libelleAcheminement": "NEVEZ", + "nomCommune": "NEVEZ" }, { - "codePostal": "64220", - "codeCommune": "64166", - "libelleAcheminement": "CARO", - "nomCommune": "CARO" + "codePostal": "39300", + "codeCommune": "39503", + "libelleAcheminement": "SAPOIS", + "nomCommune": "SAPOIS" }, { - "codePostal": "31860", - "codeCommune": "31580", - "libelleAcheminement": "VILLATE", - "nomCommune": "VILLATE" + "codePostal": "39150", + "codeCommune": "39258", + "libelleAcheminement": "GRANDE RIVIERE CHATEAU", + "nomCommune": "GRANDE RIVIERE CHATEAU" }, { - "codePostal": "57660", - "codeCommune": "57453", - "libelleAcheminement": "MAXSTADT", - "nomCommune": "MAXSTADT" + "codePostal": "28300", + "codeCommune": "28060", + "libelleAcheminement": "BRICONVILLE", + "nomCommune": "BRICONVILLE" }, { - "codePostal": "02100", - "codeCommune": "02549", - "libelleAcheminement": "NEUVILLE ST AMAND", - "nomCommune": "NEUVILLE ST AMAND" + "codePostal": "29550", + "codeCommune": "29166", + "libelleAcheminement": "PLOEVEN", + "nomCommune": "PLOEVEN" }, { - "codePostal": "64160", - "codeCommune": "64167", - "libelleAcheminement": "CARRERE", - "nomCommune": "CARRERE" + "codePostal": "39270", + "codeCommune": "39504", + "libelleAcheminement": "SARROGNA", + "nomCommune": "SARROGNA" }, { - "codePostal": "31620", - "codeCommune": "31581", - "libelleAcheminement": "VILLAUDRIC", - "nomCommune": "VILLAUDRIC" + "codePostal": "39600", + "codeCommune": "39259", + "libelleAcheminement": "GRANGE DE VAIVRE", + "nomCommune": "GRANGE DE VAIVRE" }, { - "codePostal": "57960", - "codeCommune": "57456", - "libelleAcheminement": "MEISENTHAL", - "nomCommune": "MEISENTHAL" + "codePostal": "28410", + "codeCommune": "28064", + "libelleAcheminement": "BU", + "nomCommune": "BU" }, { - "codePostal": "02880", - "codeCommune": "02551", - "libelleAcheminement": "NEUVILLE SUR MARGIVAL", - "nomCommune": "NEUVILLE SUR MARGIVAL" + "codePostal": "29120", + "codeCommune": "29171", + "libelleAcheminement": "PLOMEUR", + "nomCommune": "PLOMEUR" }, { - "codePostal": "64270", - "codeCommune": "64170", - "libelleAcheminement": "CASTAGNEDE", - "nomCommune": "CASTAGNEDE" + "codePostal": "39270", + "codeCommune": "39504", + "libelleAcheminement": "SARROGNA", + "nomCommune": "SARROGNA" }, { - "codePostal": "31800", - "codeCommune": "31585", - "libelleAcheminement": "VILLENEUVE DE RIVIERE", - "nomCommune": "VILLENEUVE DE RIVIERE" + "codePostal": "39130", + "codeCommune": "39265", + "libelleAcheminement": "HAUTECOUR", + "nomCommune": "HAUTECOUR" }, { - "codePostal": "57560", - "codeCommune": "57461", - "libelleAcheminement": "METAIRIES ST QUIRIN", - "nomCommune": "METAIRIES ST QUIRIN" + "codePostal": "28240", + "codeCommune": "28071", + "libelleAcheminement": "CHAMPROND EN GATINE", + "nomCommune": "CHAMPROND EN GATINE" }, { - "codePostal": "02170", - "codeCommune": "02558", - "libelleAcheminement": "LE NOUVION EN THIERACHE", - "nomCommune": "LE NOUVION EN THIERACHE" + "codePostal": "29810", + "codeCommune": "29177", + "libelleAcheminement": "PLOUARZEL", + "nomCommune": "PLOUARZEL" }, { - "codePostal": "64170", - "codeCommune": "64171", - "libelleAcheminement": "CASTEIDE CAMI", - "nomCommune": "CASTEIDE CAMI" + "codePostal": "39230", + "codeCommune": "39508", + "libelleAcheminement": "SELLIERES", + "nomCommune": "SELLIERES" }, { - "codePostal": "31620", - "codeCommune": "31587", - "libelleAcheminement": "VILLENEUVE LES BOULOC", - "nomCommune": "VILLENEUVE LES BOULOC" + "codePostal": "39360", + "codeCommune": "39269", + "libelleAcheminement": "JEURRE", + "nomCommune": "JEURRE" }, { - "codePostal": "57980", - "codeCommune": "57466", - "libelleAcheminement": "METZING", - "nomCommune": "METZING" + "codePostal": "28200", + "codeCommune": "28075", + "libelleAcheminement": "LA CHAPELLE DU NOYER", + "nomCommune": "LA CHAPELLE DU NOYER" }, { - "codePostal": "02120", - "codeCommune": "02563", - "libelleAcheminement": "NOYALES", - "nomCommune": "NOYALES" + "codePostal": "29620", + "codeCommune": "29182", + "libelleAcheminement": "PLOUEGAT GUERAND", + "nomCommune": "PLOUEGAT GUERAND" }, { - "codePostal": "64460", - "codeCommune": "64173", - "libelleAcheminement": "CASTEIDE DOAT", - "nomCommune": "CASTEIDE DOAT" + "codePostal": "39310", + "codeCommune": "39510", + "libelleAcheminement": "SEPTMONCEL LES MOLUNES", + "nomCommune": "SEPTMONCEL LES MOLUNES" }, { - "codePostal": "32720", - "codeCommune": "32004", - "libelleAcheminement": "ARBLADE LE BAS", - "nomCommune": "ARBLADE LE BAS" + "codePostal": "39320", + "codeCommune": "39273", + "libelleAcheminement": "MONTLAINSIA", + "nomCommune": "MONTLAINSIA" }, { - "codePostal": "57300", - "codeCommune": "57474", - "libelleAcheminement": "MONDELANGE", - "nomCommune": "MONDELANGE" + "codePostal": "28500", + "codeCommune": "28076", + "libelleAcheminement": "LA CHAPELLE FORAINVILLIERS", + "nomCommune": "LA CHAPELLE FORAINVILLIERS" }, { - "codePostal": "02160", - "codeCommune": "02565", - "libelleAcheminement": "OEUILLY", - "nomCommune": "OEUILLY" + "codePostal": "29780", + "codeCommune": "29197", + "libelleAcheminement": "PLOUHINEC", + "nomCommune": "PLOUHINEC" }, { - "codePostal": "64300", - "codeCommune": "64179", - "libelleAcheminement": "CASTETNER", - "nomCommune": "CASTETNER" + "codePostal": "39230", + "codeCommune": "39511", + "libelleAcheminement": "SERGENAUX", + "nomCommune": "SERGENAUX" }, { - "codePostal": "32430", - "codeCommune": "32007", - "libelleAcheminement": "ARDIZAS", - "nomCommune": "ARDIZAS" + "codePostal": "39300", + "codeCommune": "39277", + "libelleAcheminement": "LE LARDERET", + "nomCommune": "LE LARDERET" }, { - "codePostal": "57670", - "codeCommune": "57478", - "libelleAcheminement": "MONTDIDIER", - "nomCommune": "MONTDIDIER" + "codePostal": "28330", + "codeCommune": "28080", + "libelleAcheminement": "CHARBONNIERES", + "nomCommune": "CHARBONNIERES" }, { - "codePostal": "02860", - "codeCommune": "02573", - "libelleAcheminement": "ORGEVAL", - "nomCommune": "ORGEVAL" + "codePostal": "29610", + "codeCommune": "29199", + "libelleAcheminement": "PLOUIGNEAU", + "nomCommune": "PLOUIGNEAU" }, { - "codePostal": "64370", - "codeCommune": "64181", - "libelleAcheminement": "CASTILLON D ARTHEZ", - "nomCommune": "CASTILLON D ARTHEZ" + "codePostal": "39700", + "codeCommune": "39513", + "libelleAcheminement": "SERMANGE", + "nomCommune": "SERMANGE" }, { - "codePostal": "32230", - "codeCommune": "32008", - "libelleAcheminement": "ARMENTIEUX", - "nomCommune": "ARMENTIEUX" + "codePostal": "39700", + "codeCommune": "39284", + "libelleAcheminement": "LAVANGEOT", + "nomCommune": "LAVANGEOT" }, { - "codePostal": "57645", - "codeCommune": "57482", - "libelleAcheminement": "OGY MONTOY FLANVILLE", - "nomCommune": "OGY MONTOY FLANVILLE" + "codePostal": "28000", + "codeCommune": "28085", + "libelleAcheminement": "CHARTRES", + "nomCommune": "CHARTRES" }, { - "codePostal": "02550", - "codeCommune": "02574", - "libelleAcheminement": "ORIGNY EN THIERACHE", - "nomCommune": "ORIGNY EN THIERACHE" + "codePostal": "29270", + "codeCommune": "29205", + "libelleAcheminement": "PLOUNEVEZEL", + "nomCommune": "PLOUNEVEZEL" }, { - "codePostal": "64130", - "codeCommune": "64187", - "libelleAcheminement": "CHARRITTE DE BAS", - "nomCommune": "CHARRITTE DE BAS" + "codePostal": "39300", + "codeCommune": "39517", + "libelleAcheminement": "SIROD", + "nomCommune": "SIROD" }, { - "codePostal": "32300", - "codeCommune": "32015", - "libelleAcheminement": "AUJAN MOURNEDE", - "nomCommune": "AUJAN MOURNEDE" + "codePostal": "39240", + "codeCommune": "39290", + "libelleAcheminement": "VALZIN EN PETITE MONTAGNE", + "nomCommune": "VALZIN EN PETITE MONTAGNE" }, { - "codePostal": "57170", - "codeCommune": "57485", - "libelleAcheminement": "MORVILLE LES VIC", - "nomCommune": "MORVILLE LES VIC" + "codePostal": "28270", + "codeCommune": "28087", + "libelleAcheminement": "CHATAINCOURT", + "nomCommune": "CHATAINCOURT" }, { - "codePostal": "02160", - "codeCommune": "02582", - "libelleAcheminement": "PAISSY", - "nomCommune": "PAISSY" + "codePostal": "29280", + "codeCommune": "29212", + "libelleAcheminement": "PLOUZANE", + "nomCommune": "PLOUZANE" }, { - "codePostal": "64130", - "codeCommune": "64188", - "libelleAcheminement": "CHERAUTE", - "nomCommune": "CHERAUTE" + "codePostal": "39350", + "codeCommune": "39527", + "libelleAcheminement": "TAXENNE", + "nomCommune": "TAXENNE" }, { - "codePostal": "32120", - "codeCommune": "32026", - "libelleAcheminement": "BAJONNETTE", - "nomCommune": "BAJONNETTE" + "codePostal": "39300", + "codeCommune": "39301", + "libelleAcheminement": "LOULLE", + "nomCommune": "LOULLE" }, { - "codePostal": "57770", - "codeCommune": "57488", - "libelleAcheminement": "MOUSSEY", - "nomCommune": "MOUSSEY" + "codePostal": "28120", + "codeCommune": "28095", + "libelleAcheminement": "CHAUFFOURS", + "nomCommune": "CHAUFFOURS" }, { - "codePostal": "02260", - "codeCommune": "02584", - "libelleAcheminement": "PAPLEUX", - "nomCommune": "PAPLEUX" + "codePostal": "29440", + "codeCommune": "29213", + "libelleAcheminement": "PLOUZEVEDE", + "nomCommune": "PLOUZEVEDE" }, { - "codePostal": "64350", - "codeCommune": "64196", - "libelleAcheminement": "CROUSEILLES", - "nomCommune": "CROUSEILLES" + "codePostal": "39160", + "codeCommune": "39532", + "libelleAcheminement": "THOISSIA", + "nomCommune": "THOISSIA" }, { - "codePostal": "32100", - "codeCommune": "32037", - "libelleAcheminement": "BEAUMONT", - "nomCommune": "BEAUMONT" + "codePostal": "39350", + "codeCommune": "39302", + "libelleAcheminement": "LOUVATANGE", + "nomCommune": "LOUVATANGE" }, { - "codePostal": "57620", - "codeCommune": "57489", - "libelleAcheminement": "MOUTERHOUSE", - "nomCommune": "MOUTERHOUSE" + "codePostal": "28500", + "codeCommune": "28098", + "libelleAcheminement": "CHERISY", + "nomCommune": "CHERISY" }, { - "codePostal": "02200", - "codeCommune": "02598", - "libelleAcheminement": "PERNANT", - "nomCommune": "PERNANT" + "codePostal": "29710", + "codeCommune": "29225", + "libelleAcheminement": "POULDREUZIC", + "nomCommune": "POULDREUZIC" }, { - "codePostal": "64370", - "codeCommune": "64200", - "libelleAcheminement": "DOAZON", - "nomCommune": "DOAZON" + "codePostal": "39160", + "codeCommune": "39551", + "libelleAcheminement": "VERIA", + "nomCommune": "VERIA" }, { - "codePostal": "32450", - "codeCommune": "32040", - "libelleAcheminement": "BEDECHAN", - "nomCommune": "BEDECHAN" + "codePostal": "39210", + "codeCommune": "39304", + "libelleAcheminement": "LE LOUVEROT", + "nomCommune": "LE LOUVEROT" }, { - "codePostal": "57910", - "codeCommune": "57499", - "libelleAcheminement": "NEUFGRANGE", - "nomCommune": "NEUFGRANGE" + "codePostal": "28300", + "codeCommune": "28100", + "libelleAcheminement": "CINTRAY", + "nomCommune": "CINTRAY" }, { - "codePostal": "02300", - "codeCommune": "02599", - "libelleAcheminement": "PIERREMANDE", - "nomCommune": "PIERREMANDE" + "codePostal": "29690", + "codeCommune": "29227", + "libelleAcheminement": "POULLAOUEN", + "nomCommune": "POULLAOUEN" }, { - "codePostal": "64450", - "codeCommune": "64203", - "libelleAcheminement": "DOUMY", - "nomCommune": "DOUMY" + "codePostal": "39210", + "codeCommune": "39553", + "libelleAcheminement": "LE VERNOIS", + "nomCommune": "LE VERNOIS" }, { - "codePostal": "32140", - "codeCommune": "32041", - "libelleAcheminement": "BELLEGARDE", - "nomCommune": "BELLEGARDE" + "codePostal": "39570", + "codeCommune": "39306", + "libelleAcheminement": "MACORNAY", + "nomCommune": "MACORNAY" }, { - "codePostal": "57830", - "codeCommune": "57500", - "libelleAcheminement": "NEUFMOULINS", - "nomCommune": "NEUFMOULINS" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "02350", - "codeCommune": "02600", - "libelleAcheminement": "PIERREPONT", - "nomCommune": "PIERREPONT" + "codePostal": "29310", + "codeCommune": "29230", + "libelleAcheminement": "QUERRIEN", + "nomCommune": "QUERRIEN" }, { - "codePostal": "64270", - "codeCommune": "64205", - "libelleAcheminement": "ESCOS", - "nomCommune": "ESCOS" + "codePostal": "39230", + "codeCommune": "39555", + "libelleAcheminement": "VERS SOUS SELLIERES", + "nomCommune": "VERS SOUS SELLIERES" }, { - "codePostal": "32100", - "codeCommune": "32044", - "libelleAcheminement": "BERAUT", - "nomCommune": "BERAUT" + "codePostal": "39260", + "codeCommune": "39307", + "libelleAcheminement": "MAISOD", + "nomCommune": "MAISOD" }, { - "codePostal": "57790", - "codeCommune": "57509", - "libelleAcheminement": "NITTING", - "nomCommune": "NITTING" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "02480", - "codeCommune": "02604", - "libelleAcheminement": "PITHON", - "nomCommune": "PITHON" + "codePostal": "29340", + "codeCommune": "29236", + "libelleAcheminement": "RIEC SUR BELON", + "nomCommune": "RIEC SUR BELON" }, { - "codePostal": "64420", - "codeCommune": "64216", - "libelleAcheminement": "ESPOEY", - "nomCommune": "ESPOEY" + "codePostal": "39130", + "codeCommune": "39556", + "libelleAcheminement": "VERTAMBOZ", + "nomCommune": "VERTAMBOZ" }, { - "codePostal": "32300", - "codeCommune": "32045", - "libelleAcheminement": "BERDOUES", - "nomCommune": "BERDOUES" + "codePostal": "39130", + "codeCommune": "39322", + "libelleAcheminement": "MENETRUX EN JOUX", + "nomCommune": "MENETRUX EN JOUX" }, { - "codePostal": "57140", - "codeCommune": "57511", - "libelleAcheminement": "NORROY LE VENEUR", - "nomCommune": "NORROY LE VENEUR" + "codePostal": "28220", + "codeCommune": "28103", + "libelleAcheminement": "CLOYES LES TROIS RIVIERES", + "nomCommune": "CLOYES LES TROIS RIVIERES" }, { - "codePostal": "02860", - "codeCommune": "02609", - "libelleAcheminement": "PLOYART ET VAURSEINE", - "nomCommune": "PLOYART ET VAURSEINE" + "codePostal": "29150", + "codeCommune": "29243", + "libelleAcheminement": "ST COULITZ", + "nomCommune": "ST COULITZ" }, { - "codePostal": "64490", - "codeCommune": "64223", - "libelleAcheminement": "ETSAUT", - "nomCommune": "ETSAUT" + "codePostal": "39380", + "codeCommune": "39559", + "libelleAcheminement": "LA VIEILLE LOYE", + "nomCommune": "LA VIEILLE LOYE" }, { - "codePostal": "32130", - "codeCommune": "32051", - "libelleAcheminement": "BEZERIL", - "nomCommune": "BEZERIL" + "codePostal": "39270", + "codeCommune": "39324", + "libelleAcheminement": "MERONA", + "nomCommune": "MERONA" }, { - "codePostal": "57990", - "codeCommune": "57514", - "libelleAcheminement": "NOUSSEVILLER ST NABOR", - "nomCommune": "NOUSSEVILLER ST NABOR" + "codePostal": "28210", + "codeCommune": "28118", + "libelleAcheminement": "CROISILLES", + "nomCommune": "CROISILLES" }, { - "codePostal": "02200", - "codeCommune": "02610", - "libelleAcheminement": "POMMIERS", - "nomCommune": "POMMIERS" + "codePostal": "29120", + "codeCommune": "29252", + "libelleAcheminement": "ST JEAN TROLIMON", + "nomCommune": "ST JEAN TROLIMON" }, { - "codePostal": "64290", - "codeCommune": "64230", - "libelleAcheminement": "GAN", - "nomCommune": "GAN" + "codePostal": "39200", + "codeCommune": "39560", + "libelleAcheminement": "VILLARD ST SAUVEUR", + "nomCommune": "VILLARD ST SAUVEUR" }, { - "codePostal": "32350", - "codeCommune": "32054", - "libelleAcheminement": "BIRAN", - "nomCommune": "BIRAN" + "codePostal": "39600", + "codeCommune": "39337", + "libelleAcheminement": "MOLAMBOZ", + "nomCommune": "MOLAMBOZ" }, { - "codePostal": "57720", - "codeCommune": "57517", - "libelleAcheminement": "OBERGAILBACH", - "nomCommune": "OBERGAILBACH" + "codePostal": "28160", + "codeCommune": "28127", + "libelleAcheminement": "DANGEAU", + "nomCommune": "DANGEAU" }, { - "codePostal": "02320", - "codeCommune": "02619", - "libelleAcheminement": "PREMONTRE", - "nomCommune": "PREMONTRE" + "codePostal": "29410", + "codeCommune": "29266", + "libelleAcheminement": "ST THEGONNEC LOC EGUINER", + "nomCommune": "ST THEGONNEC LOC EGUINER" }, { - "codePostal": "64350", - "codeCommune": "64236", - "libelleAcheminement": "GAYON", - "nomCommune": "GAYON" + "codePostal": "39120", + "codeCommune": "39571", + "libelleAcheminement": "VILLERS ROBERT", + "nomCommune": "VILLERS ROBERT" }, { - "codePostal": "32380", - "codeCommune": "32055", - "libelleAcheminement": "BIVES", - "nomCommune": "BIVES" + "codePostal": "39300", + "codeCommune": "39344", + "libelleAcheminement": "MONNET LA VILLE", + "nomCommune": "MONNET LA VILLE" }, { - "codePostal": "57420", - "codeCommune": "57527", - "libelleAcheminement": "ORNY", - "nomCommune": "ORNY" + "codePostal": "28230", + "codeCommune": "28135", + "libelleAcheminement": "DROUE SUR DROUETTE", + "nomCommune": "DROUE SUR DROUETTE" }, { - "codePostal": "02860", - "codeCommune": "02621", - "libelleAcheminement": "PRESLES ET THIERNY", - "nomCommune": "PRESLES ET THIERNY" + "codePostal": "29410", + "codeCommune": "29266", + "libelleAcheminement": "ST THEGONNEC LOC EGUINER", + "nomCommune": "ST THEGONNEC LOC EGUINER" }, { - "codePostal": "64110", - "codeCommune": "64237", - "libelleAcheminement": "GELOS", - "nomCommune": "GELOS" + "codePostal": "39100", + "codeCommune": "39573", + "libelleAcheminement": "VILLETTE LES DOLE", + "nomCommune": "VILLETTE LES DOLE" }, { - "codePostal": "32410", - "codeCommune": "32059", - "libelleAcheminement": "BONAS", - "nomCommune": "BONAS" + "codePostal": "39570", + "codeCommune": "39348", + "libelleAcheminement": "MONTAIGU", + "nomCommune": "MONTAIGU" }, { - "codePostal": "57660", - "codeCommune": "57536", - "libelleAcheminement": "PETIT TENQUIN", - "nomCommune": "PETIT TENQUIN" + "codePostal": "28170", + "codeCommune": "28147", + "libelleAcheminement": "FAVIERES", + "nomCommune": "FAVIERES" }, { - "codePostal": "02120", - "codeCommune": "02625", - "libelleAcheminement": "PROIX", - "nomCommune": "PROIX" + "codePostal": "29800", + "codeCommune": "29268", + "libelleAcheminement": "ST THONAN", + "nomCommune": "ST THONAN" }, { - "codePostal": "64640", - "codeCommune": "64259", - "libelleAcheminement": "HELETTE", - "nomCommune": "HELETTE" + "codePostal": "39140", + "codeCommune": "39574", + "libelleAcheminement": "VILLEVIEUX", + "nomCommune": "VILLEVIEUX" }, { - "codePostal": "32450", - "codeCommune": "32061", - "libelleAcheminement": "BOULAUR", - "nomCommune": "BOULAUR" + "codePostal": "39320", + "codeCommune": "39363", + "libelleAcheminement": "MONTREVEL", + "nomCommune": "MONTREVEL" }, { - "codePostal": "57670", - "codeCommune": "57573", - "libelleAcheminement": "RENING", - "nomCommune": "RENING" + "codePostal": "28800", + "codeCommune": "28176", + "libelleAcheminement": "LE GAULT ST DENIS", + "nomCommune": "LE GAULT ST DENIS" }, { - "codePostal": "02300", - "codeCommune": "02631", - "libelleAcheminement": "QUIERZY", - "nomCommune": "QUIERZY" + "codePostal": "29250", + "codeCommune": "29273", + "libelleAcheminement": "SANTEC", + "nomCommune": "SANTEC" }, { - "codePostal": "64270", - "codeCommune": "64263", - "libelleAcheminement": "L HOPITAL D ORION", - "nomCommune": "L HOPITAL D ORION" + "codePostal": "39350", + "codeCommune": "39581", + "libelleAcheminement": "VITREUX", + "nomCommune": "VITREUX" }, { - "codePostal": "32800", - "codeCommune": "32073", - "libelleAcheminement": "CAMPAGNE D ARMAGNAC", - "nomCommune": "CAMPAGNE D ARMAGNAC" + "codePostal": "39400", + "codeCommune": "39368", + "libelleAcheminement": "HAUTS DE BIENNE", + "nomCommune": "HAUTS DE BIENNE" }, { - "codePostal": "57720", - "codeCommune": "57584", - "libelleAcheminement": "RIMLING", - "nomCommune": "RIMLING" + "codePostal": "28310", + "codeCommune": "28183", + "libelleAcheminement": "GOMMERVILLE", + "nomCommune": "GOMMERVILLE" }, { - "codePostal": "02100", - "codeCommune": "02637", - "libelleAcheminement": "REMAUCOURT", - "nomCommune": "REMAUCOURT" + "codePostal": "29560", + "codeCommune": "29280", + "libelleAcheminement": "TELGRUC SUR MER", + "nomCommune": "TELGRUC SUR MER" }, { - "codePostal": "64320", - "codeCommune": "64269", - "libelleAcheminement": "IDRON", - "nomCommune": "IDRON" + "codePostal": "39360", + "codeCommune": "39585", + "libelleAcheminement": "VULVOZ", + "nomCommune": "VULVOZ" }, { - "codePostal": "32250", - "codeCommune": "32079", - "libelleAcheminement": "CASTELNAU D AUZAN LABARRERE", - "nomCommune": "CASTELNAU D AUZAN LABARRERE" + "codePostal": "39120", + "codeCommune": "39385", + "libelleAcheminement": "NEUBLANS ABERGEMENT", + "nomCommune": "NEUBLANS ABERGEMENT" }, { - "codePostal": "57570", - "codeCommune": "57588", - "libelleAcheminement": "RODEMACK", - "nomCommune": "RODEMACK" + "codePostal": "28700", + "codeCommune": "28183", + "libelleAcheminement": "GOMMERVILLE", + "nomCommune": "GOMMERVILLE" }, { - "codePostal": "02440", - "codeCommune": "02639", - "libelleAcheminement": "REMIGNY", - "nomCommune": "REMIGNY" + "codePostal": "29140", + "codeCommune": "29281", + "libelleAcheminement": "TOURCH", + "nomCommune": "TOURCH" }, { - "codePostal": "64220", - "codeCommune": "64275", - "libelleAcheminement": "ISPOURE", - "nomCommune": "ISPOURE" + "codePostal": "39110", + "codeCommune": "39586", + "libelleAcheminement": "ARESCHES", + "nomCommune": "ARESCHES" }, { - "codePostal": "32100", - "codeCommune": "32080", - "libelleAcheminement": "CASTELNAU SUR L AUVIGNON", - "nomCommune": "CASTELNAU SUR L AUVIGNON" + "codePostal": "39800", + "codeCommune": "39386", + "libelleAcheminement": "NEUVILLEY", + "nomCommune": "NEUVILLEY" }, { - "codePostal": "57410", - "codeCommune": "57589", - "libelleAcheminement": "ROHRBACH LES BITCHE", - "nomCommune": "ROHRBACH LES BITCHE" + "codePostal": "28410", + "codeCommune": "28185", + "libelleAcheminement": "GOUSSAINVILLE", + "nomCommune": "GOUSSAINVILLE" }, { - "codePostal": "02340", - "codeCommune": "02641", - "libelleAcheminement": "RENNEVAL", - "nomCommune": "RENNEVAL" + "codePostal": "29800", + "codeCommune": "29295", + "libelleAcheminement": "TREMAOUEZAN", + "nomCommune": "TREMAOUEZAN" }, { - "codePostal": "64250", - "codeCommune": "64279", - "libelleAcheminement": "ITXASSOU", - "nomCommune": "ITXASSOU" + "codePostal": "40800", + "codeCommune": "40001", + "libelleAcheminement": "AIRE SUR L ADOUR", + "nomCommune": "AIRE SUR L ADOUR" }, { - "codePostal": "32380", - "codeCommune": "32084", - "libelleAcheminement": "CASTERON", - "nomCommune": "CASTERON" + "codePostal": "39330", + "codeCommune": "39403", + "libelleAcheminement": "PAGNOZ", + "nomCommune": "PAGNOZ" }, { - "codePostal": "57480", - "codeCommune": "57604", - "libelleAcheminement": "RUSTROFF", - "nomCommune": "RUSTROFF" + "codePostal": "28260", + "codeCommune": "28187", + "libelleAcheminement": "GUAINVILLE", + "nomCommune": "GUAINVILLE" }, { - "codePostal": "02240", - "codeCommune": "02648", - "libelleAcheminement": "RIBEMONT", - "nomCommune": "RIBEMONT" + "codePostal": "20000", + "codeCommune": "2A004", + "libelleAcheminement": "AJACCIO", + "nomCommune": "AJACCIO" }, { - "codePostal": "64260", - "codeCommune": "64280", - "libelleAcheminement": "IZESTE", - "nomCommune": "IZESTE" + "codePostal": "40140", + "codeCommune": "40021", + "libelleAcheminement": "AZUR", + "nomCommune": "AZUR" }, { - "codePostal": "32170", - "codeCommune": "32086", - "libelleAcheminement": "CASTEX", - "nomCommune": "CASTEX" + "codePostal": "39570", + "codeCommune": "39404", + "libelleAcheminement": "PANNESSIERES", + "nomCommune": "PANNESSIERES" }, { - "codePostal": "57510", - "codeCommune": "57615", - "libelleAcheminement": "ST JEAN ROHRBACH", - "nomCommune": "ST JEAN ROHRBACH" + "codePostal": "28310", + "codeCommune": "28189", + "libelleAcheminement": "GUILLEVILLE", + "nomCommune": "GUILLEVILLE" }, { - "codePostal": "02120", - "codeCommune": "02668", - "libelleAcheminement": "SAINS RICHAUMONT", - "nomCommune": "SAINS RICHAUMONT" + "codePostal": "20090", + "codeCommune": "2A004", + "libelleAcheminement": "AJACCIO", + "nomCommune": "AJACCIO" }, { - "codePostal": "64480", - "codeCommune": "64282", - "libelleAcheminement": "JATXOU", - "nomCommune": "JATXOU" + "codePostal": "40320", + "codeCommune": "40022", + "libelleAcheminement": "BAHUS SOUBIRAN", + "nomCommune": "BAHUS SOUBIRAN" }, { - "codePostal": "32490", - "codeCommune": "32090", - "libelleAcheminement": "CASTILLON SAVES", - "nomCommune": "CASTILLON SAVES" + "codePostal": "39100", + "codeCommune": "39405", + "libelleAcheminement": "PARCEY", + "nomCommune": "PARCEY" }, { - "codePostal": "57560", - "codeCommune": "57623", - "libelleAcheminement": "ST QUIRIN", - "nomCommune": "ST QUIRIN" + "codePostal": "28410", + "codeCommune": "28193", + "libelleAcheminement": "HAVELU", + "nomCommune": "HAVELU" }, { - "codePostal": "02360", - "codeCommune": "02674", - "libelleAcheminement": "ST CLEMENT", - "nomCommune": "ST CLEMENT" + "codePostal": "20128", + "codeCommune": "2A008", + "libelleAcheminement": "ALBITRECCIA", + "nomCommune": "ALBITRECCIA" }, { - "codePostal": "64220", - "codeCommune": "64283", - "libelleAcheminement": "JAXU", - "nomCommune": "JAXU" + "codePostal": "40500", + "codeCommune": "40024", + "libelleAcheminement": "BANOS", + "nomCommune": "BANOS" }, { - "codePostal": "32200", - "codeCommune": "32092", - "libelleAcheminement": "CATONVIELLE", - "nomCommune": "CATONVIELLE" + "codePostal": "39120", + "codeCommune": "39415", + "libelleAcheminement": "PETIT NOIR", + "nomCommune": "PETIT NOIR" }, { - "codePostal": "57905", - "codeCommune": "57633", - "libelleAcheminement": "SARREINSMING", - "nomCommune": "SARREINSMING" + "codePostal": "28200", + "codeCommune": "28198", + "libelleAcheminement": "JALLANS", + "nomCommune": "JALLANS" }, { - "codePostal": "02330", - "codeCommune": "02677", - "libelleAcheminement": "ST EUGENE", - "nomCommune": "ST EUGENE" + "codePostal": "20166", + "codeCommune": "2A008", + "libelleAcheminement": "ALBITRECCIA", + "nomCommune": "ALBITRECCIA" }, { - "codePostal": "64270", - "codeCommune": "64291", - "libelleAcheminement": "LABASTIDE VILLEFRANCHE", - "nomCommune": "LABASTIDE VILLEFRANCHE" + "codePostal": "40360", + "codeCommune": "40028", + "libelleAcheminement": "BASTENNES", + "nomCommune": "BASTENNES" }, { - "codePostal": "32100", - "codeCommune": "32095", - "libelleAcheminement": "CAUSSENS", - "nomCommune": "CAUSSENS" + "codePostal": "39270", + "codeCommune": "39423", + "libelleAcheminement": "PLAISIA", + "nomCommune": "PLAISIA" }, { - "codePostal": "57140", - "codeCommune": "57634", - "libelleAcheminement": "SAULNY", - "nomCommune": "SAULNY" + "codePostal": "28250", + "codeCommune": "28200", + "libelleAcheminement": "JAUDRAIS", + "nomCommune": "JAUDRAIS" }, { - "codePostal": "02140", - "codeCommune": "02688", - "libelleAcheminement": "ST PIERRE LES FRANQUEVILLE", - "nomCommune": "ST PIERRE LES FRANQUEVILLE" + "codePostal": "20112", + "codeCommune": "2A011", + "libelleAcheminement": "ALTAGENE", + "nomCommune": "ALTAGENE" }, { - "codePostal": "64460", - "codeCommune": "64293", - "libelleAcheminement": "LABATUT", - "nomCommune": "LABATUT" + "codePostal": "40320", + "codeCommune": "40029", + "libelleAcheminement": "BATS", + "nomCommune": "BATS" }, { - "codePostal": "32130", - "codeCommune": "32098", - "libelleAcheminement": "CAZAUX SAVES", - "nomCommune": "CAZAUX SAVES" + "codePostal": "39150", + "codeCommune": "39424", + "libelleAcheminement": "LES PLANCHES EN MONTAGNE", + "nomCommune": "LES PLANCHES EN MONTAGNE" }, { - "codePostal": "57400", - "codeCommune": "57637", - "libelleAcheminement": "SCHNECKENBUSCH", - "nomCommune": "SCHNECKENBUSCH" + "codePostal": "28300", + "codeCommune": "28201", + "libelleAcheminement": "JOUY", + "nomCommune": "JOUY" }, { - "codePostal": "02100", - "codeCommune": "02691", - "libelleAcheminement": "ST QUENTIN", - "nomCommune": "ST QUENTIN" + "codePostal": "20140", + "codeCommune": "2A021", + "libelleAcheminement": "ARGIUSTA MORICCIO", + "nomCommune": "ARGIUSTA MORICCIO" }, { - "codePostal": "64120", - "codeCommune": "64294", - "libelleAcheminement": "LABETS BISCAY", - "nomCommune": "LABETS BISCAY" + "codePostal": "40240", + "codeCommune": "40039", + "libelleAcheminement": "BETBEZER D ARMAGNAC", + "nomCommune": "BETBEZER D ARMAGNAC" }, { - "codePostal": "32230", - "codeCommune": "32099", - "libelleAcheminement": "CAZAUX VILLECOMTAL", - "nomCommune": "CAZAUX VILLECOMTAL" + "codePostal": "39600", + "codeCommune": "39425", + "libelleAcheminement": "LES PLANCHES PRES ARBOIS", + "nomCommune": "LES PLANCHES PRES ARBOIS" }, { - "codePostal": "57350", - "codeCommune": "57638", - "libelleAcheminement": "SCHOENECK", - "nomCommune": "SCHOENECK" + "codePostal": "28210", + "codeCommune": "28213", + "libelleAcheminement": "LORMAYE", + "nomCommune": "LORMAYE" }, { - "codePostal": "02130", - "codeCommune": "02713", - "libelleAcheminement": "SERINGES ET NESLES", - "nomCommune": "SERINGES ET NESLES" + "codePostal": "20151", + "codeCommune": "2A060", + "libelleAcheminement": "CANNELLE", + "nomCommune": "CANNELLE" }, { - "codePostal": "64300", - "codeCommune": "64295", - "libelleAcheminement": "LABEYRIE", - "nomCommune": "LABEYRIE" + "codePostal": "40390", + "codeCommune": "40042", + "libelleAcheminement": "BIARROTTE", + "nomCommune": "BIARROTTE" }, { - "codePostal": "32800", - "codeCommune": "32100", - "libelleAcheminement": "CAZENEUVE", - "nomCommune": "CAZENEUVE" + "codePostal": "39210", + "codeCommune": "39426", + "libelleAcheminement": "PLASNE", + "nomCommune": "PLASNE" }, { - "codePostal": "57420", - "codeCommune": "57643", - "libelleAcheminement": "SECOURT", - "nomCommune": "SECOURT" + "codePostal": "28240", + "codeCommune": "28214", + "libelleAcheminement": "LA LOUPE", + "nomCommune": "LA LOUPE" }, { - "codePostal": "02220", - "codeCommune": "02714", - "libelleAcheminement": "SERMOISE", - "nomCommune": "SERMOISE" + "codePostal": "20190", + "codeCommune": "2A064", + "libelleAcheminement": "CARDO TORGIA", + "nomCommune": "CARDO TORGIA" }, { - "codePostal": "64220", - "codeCommune": "64297", - "libelleAcheminement": "LACARRE", - "nomCommune": "LACARRE" + "codePostal": "40390", + "codeCommune": "40044", + "libelleAcheminement": "BIAUDOS", + "nomCommune": "BIAUDOS" }, { - "codePostal": "32140", - "codeCommune": "32103", - "libelleAcheminement": "CHELAN", - "nomCommune": "CHELAN" + "codePostal": "39700", + "codeCommune": "39430", + "libelleAcheminement": "PLUMONT", + "nomCommune": "PLUMONT" }, { - "codePostal": "57280", - "codeCommune": "57645", - "libelleAcheminement": "SEMECOURT", - "nomCommune": "SEMECOURT" + "codePostal": "28500", + "codeCommune": "28216", + "libelleAcheminement": "LOUVILLIERS EN DROUAIS", + "nomCommune": "LOUVILLIERS EN DROUAIS" }, { - "codePostal": "02240", - "codeCommune": "02717", - "libelleAcheminement": "SERY LES MEZIERES", - "nomCommune": "SERY LES MEZIERES" + "codePostal": "20111", + "codeCommune": "2A070", + "libelleAcheminement": "CASAGLIONE", + "nomCommune": "CASAGLIONE" }, { - "codePostal": "64470", - "codeCommune": "64298", - "libelleAcheminement": "LACARRY ARHAN CHARRITTE DE HAUT", - "nomCommune": "LACARRY ARHAN CHARRITTE DE HAUT" + "codePostal": "40330", + "codeCommune": "40047", + "libelleAcheminement": "BONNEGARDE", + "nomCommune": "BONNEGARDE" }, { - "codePostal": "32300", - "codeCommune": "32114", - "libelleAcheminement": "CUELAS", - "nomCommune": "CUELAS" + "codePostal": "39110", + "codeCommune": "39436", + "libelleAcheminement": "PONT D HERY", + "nomCommune": "PONT D HERY" }, { - "codePostal": "57480", - "codeCommune": "57650", - "libelleAcheminement": "SIERCK LES BAINS", - "nomCommune": "SIERCK LES BAINS" + "codePostal": "28250", + "codeCommune": "28217", + "libelleAcheminement": "LOUVILLIERS LES PERCHE", + "nomCommune": "LOUVILLIERS LES PERCHE" }, { - "codePostal": "02240", - "codeCommune": "02721", - "libelleAcheminement": "SISSY", - "nomCommune": "SISSY" + "codePostal": "20140", + "codeCommune": "2A071", + "libelleAcheminement": "CASALABRIVA", + "nomCommune": "CASALABRIVA" }, { - "codePostal": "64360", - "codeCommune": "64299", - "libelleAcheminement": "LACOMMANDE", - "nomCommune": "LACOMMANDE" + "codePostal": "40090", + "codeCommune": "40050", + "libelleAcheminement": "BOSTENS", + "nomCommune": "BOSTENS" }, { - "codePostal": "32190", - "codeCommune": "32115", - "libelleAcheminement": "DEMU", - "nomCommune": "DEMU" + "codePostal": "39600", + "codeCommune": "39439", + "libelleAcheminement": "PORT LESNEY", + "nomCommune": "PORT LESNEY" }, { - "codePostal": "57230", - "codeCommune": "57661", - "libelleAcheminement": "STURZELBRONN", - "nomCommune": "STURZELBRONN" + "codePostal": "28110", + "codeCommune": "28218", + "libelleAcheminement": "LUCE", + "nomCommune": "LUCE" }, { - "codePostal": "02200", - "codeCommune": "02722", - "libelleAcheminement": "SOISSONS", - "nomCommune": "SOISSONS" + "codePostal": "20117", + "codeCommune": "2A085", + "libelleAcheminement": "CAURO", + "nomCommune": "CAURO" }, { - "codePostal": "64170", - "codeCommune": "64300", - "libelleAcheminement": "LACQ", - "nomCommune": "LACQ" + "codePostal": "40180", + "codeCommune": "40063", + "libelleAcheminement": "CANDRESSE", + "nomCommune": "CANDRESSE" }, { - "codePostal": "32800", - "codeCommune": "32119", - "libelleAcheminement": "EAUZE", - "nomCommune": "EAUZE" + "codePostal": "39700", + "codeCommune": "39452", + "libelleAcheminement": "RANS", + "nomCommune": "RANS" }, { - "codePostal": "57380", - "codeCommune": "57670", - "libelleAcheminement": "THICOURT", - "nomCommune": "THICOURT" + "codePostal": "28360", + "codeCommune": "28222", + "libelleAcheminement": "LUPLANTE", + "nomCommune": "LUPLANTE" }, { - "codePostal": "02470", - "codeCommune": "02724", - "libelleAcheminement": "SOMMELANS", - "nomCommune": "SOMMELANS" + "codePostal": "20118", + "codeCommune": "2A090", + "libelleAcheminement": "COGGIA", + "nomCommune": "COGGIA" }, { - "codePostal": "64170", - "codeCommune": "64300", - "libelleAcheminement": "LACQ", - "nomCommune": "LACQ" + "codePostal": "40400", + "codeCommune": "40067", + "libelleAcheminement": "CARCEN PONSON", + "nomCommune": "CARCEN PONSON" }, { - "codePostal": "32140", - "codeCommune": "32122", - "libelleAcheminement": "ESCLASSAN LABASTIDE", - "nomCommune": "ESCLASSAN LABASTIDE" + "codePostal": "39230", + "codeCommune": "39454", + "libelleAcheminement": "RECANOZ", + "nomCommune": "RECANOZ" }, { - "codePostal": "57580", - "codeCommune": "57676", - "libelleAcheminement": "TRAGNY", - "nomCommune": "TRAGNY" + "codePostal": "28240", + "codeCommune": "28232", + "libelleAcheminement": "MANOU", + "nomCommune": "MANOU" }, { - "codePostal": "02480", - "codeCommune": "02726", - "libelleAcheminement": "SOMMETTE EAUCOURT", - "nomCommune": "SOMMETTE EAUCOURT" + "codePostal": "20138", + "codeCommune": "2A098", + "libelleAcheminement": "COTI CHIAVARI", + "nomCommune": "COTI CHIAVARI" }, { - "codePostal": "64150", - "codeCommune": "64301", - "libelleAcheminement": "LAGOR", - "nomCommune": "LAGOR" + "codePostal": "40360", + "codeCommune": "40071", + "libelleAcheminement": "CASTELNAU CHALOSSE", + "nomCommune": "CASTELNAU CHALOSSE" }, { - "codePostal": "32240", - "codeCommune": "32127", - "libelleAcheminement": "ESTANG", - "nomCommune": "ESTANG" + "codePostal": "39140", + "codeCommune": "39457", + "libelleAcheminement": "LES REPOTS", + "nomCommune": "LES REPOTS" }, { - "codePostal": "57560", - "codeCommune": "57682", - "libelleAcheminement": "TURQUESTEIN BLANCRUPT", - "nomCommune": "TURQUESTEIN BLANCRUPT" + "codePostal": "28400", + "codeCommune": "28236", + "libelleAcheminement": "ARCISSES", + "nomCommune": "ARCISSES" }, { - "codePostal": "02270", - "codeCommune": "02727", - "libelleAcheminement": "SONS ET RONCHERES", - "nomCommune": "SONS ET RONCHERES" + "codePostal": "20117", + "codeCommune": "2A104", + "libelleAcheminement": "ECCICA SUARELLA", + "nomCommune": "ECCICA SUARELLA" }, { - "codePostal": "64800", - "codeCommune": "64302", - "libelleAcheminement": "LAGOS", - "nomCommune": "LAGOS" + "codePostal": "40300", + "codeCommune": "40077", + "libelleAcheminement": "CAUNEILLE", + "nomCommune": "CAUNEILLE" }, { - "codePostal": "32300", - "codeCommune": "32128", - "libelleAcheminement": "ESTIPOUY", - "nomCommune": "ESTIPOUY" + "codePostal": "39570", + "codeCommune": "39458", + "libelleAcheminement": "REVIGNY", + "nomCommune": "REVIGNY" }, { - "codePostal": "57270", - "codeCommune": "57683", - "libelleAcheminement": "UCKANGE", - "nomCommune": "UCKANGE" + "codePostal": "28250", + "codeCommune": "28248", + "libelleAcheminement": "LE MESNIL THOMAS", + "nomCommune": "LE MESNIL THOMAS" }, { - "codePostal": "02160", - "codeCommune": "02730", - "libelleAcheminement": "SOUPIR", - "nomCommune": "SOUPIR" + "codePostal": "20140", + "codeCommune": "2A160", + "libelleAcheminement": "MOCA CROCE", + "nomCommune": "MOCA CROCE" }, { - "codePostal": "64270", - "codeCommune": "64305", - "libelleAcheminement": "LAHONTAN", - "nomCommune": "LAHONTAN" + "codePostal": "40250", + "codeCommune": "40078", + "libelleAcheminement": "CAUPENNE", + "nomCommune": "CAUPENNE" }, { - "codePostal": "32380", - "codeCommune": "32129", - "libelleAcheminement": "ESTRAMIAC", - "nomCommune": "ESTRAMIAC" + "codePostal": "39220", + "codeCommune": "39470", + "libelleAcheminement": "LES ROUSSES", + "nomCommune": "LES ROUSSES" }, { - "codePostal": "57660", - "codeCommune": "57684", - "libelleAcheminement": "VAHL EBERSING", - "nomCommune": "VAHL EBERSING" + "codePostal": "28130", + "codeCommune": "28249", + "libelleAcheminement": "MEVOISINS", + "nomCommune": "MEVOISINS" }, { - "codePostal": "02140", - "codeCommune": "02731", - "libelleAcheminement": "LE SOURD", - "nomCommune": "LE SOURD" + "codePostal": "20125", + "codeCommune": "2A196", + "libelleAcheminement": "ORTO", + "nomCommune": "ORTO" }, { - "codePostal": "64460", - "codeCommune": "64309", - "libelleAcheminement": "LAMAYOU", - "nomCommune": "LAMAYOU" + "codePostal": "40320", + "codeCommune": "40083", + "libelleAcheminement": "CLEDES", + "nomCommune": "CLEDES" }, { - "codePostal": "32340", - "codeCommune": "32131", - "libelleAcheminement": "FLAMARENS", - "nomCommune": "FLAMARENS" + "codePostal": "39400", + "codeCommune": "39470", + "libelleAcheminement": "LES ROUSSES", + "nomCommune": "LES ROUSSES" }, { - "codePostal": "57970", - "codeCommune": "57689", - "libelleAcheminement": "VALMESTROFF", - "nomCommune": "VALMESTROFF" + "codePostal": "28120", + "codeCommune": "28261", + "libelleAcheminement": "MONTIGNY LE CHARTIF", + "nomCommune": "MONTIGNY LE CHARTIF" }, { - "codePostal": "02240", - "codeCommune": "02732", - "libelleAcheminement": "SURFONTAINE", - "nomCommune": "SURFONTAINE" + "codePostal": "20147", + "codeCommune": "2A203", + "libelleAcheminement": "PARTINELLO", + "nomCommune": "PARTINELLO" }, { - "codePostal": "64570", - "codeCommune": "64310", - "libelleAcheminement": "LANNE EN BARETOUS", - "nomCommune": "LANNE EN BARETOUS" + "codePostal": "40500", + "codeCommune": "40092", + "libelleAcheminement": "DUMES", + "nomCommune": "DUMES" }, { - "codePostal": "32390", - "codeCommune": "32142", - "libelleAcheminement": "GAVARRET SUR AULOUSTE", - "nomCommune": "GAVARRET SUR AULOUSTE" + "codePostal": "39120", + "codeCommune": "39477", + "libelleAcheminement": "ST BARAING", + "nomCommune": "ST BARAING" }, { - "codePostal": "57340", - "codeCommune": "57692", - "libelleAcheminement": "VANNECOURT", - "nomCommune": "VANNECOURT" + "codePostal": "28700", + "codeCommune": "28268", + "libelleAcheminement": "MORAINVILLE", + "nomCommune": "MORAINVILLE" }, { - "codePostal": "02700", - "codeCommune": "02738", - "libelleAcheminement": "TERGNIER", - "nomCommune": "TERGNIER" + "codePostal": "20167", + "codeCommune": "2A209", + "libelleAcheminement": "PERI", + "nomCommune": "PERI" }, { - "codePostal": "64480", - "codeCommune": "64317", - "libelleAcheminement": "LARRESSORE", - "nomCommune": "LARRESSORE" + "codePostal": "40310", + "codeCommune": "40093", + "libelleAcheminement": "ESCALANS", + "nomCommune": "ESCALANS" }, { - "codePostal": "32400", - "codeCommune": "32151", - "libelleAcheminement": "GOUX", - "nomCommune": "GOUX" + "codePostal": "39200", + "codeCommune": "39478", + "libelleAcheminement": "ST CLAUDE", + "nomCommune": "ST CLAUDE" }, { - "codePostal": "57070", - "codeCommune": "57693", - "libelleAcheminement": "VANTOUX", - "nomCommune": "VANTOUX" + "codePostal": "28630", + "codeCommune": "28269", + "libelleAcheminement": "MORANCEZ", + "nomCommune": "MORANCEZ" }, { - "codePostal": "02700", - "codeCommune": "02738", - "libelleAcheminement": "TERGNIER", - "nomCommune": "TERGNIER" + "codePostal": "20131", + "codeCommune": "2A215", + "libelleAcheminement": "PIANOTTOLI CALDARELLO", + "nomCommune": "PIANOTTOLI CALDARELLO" }, { - "codePostal": "64350", - "codeCommune": "64331", - "libelleAcheminement": "LEMBEYE", - "nomCommune": "LEMBEYE" + "codePostal": "40320", + "codeCommune": "40097", + "libelleAcheminement": "EUGENIE LES BAINS", + "nomCommune": "EUGENIE LES BAINS" }, { - "codePostal": "32730", - "codeCommune": "32152", - "libelleAcheminement": "HAGET", - "nomCommune": "HAGET" + "codePostal": "39200", + "codeCommune": "39478", + "libelleAcheminement": "ST CLAUDE", + "nomCommune": "ST CLAUDE" }, { - "codePostal": "57130", - "codeCommune": "57707", - "libelleAcheminement": "VERNEVILLE", - "nomCommune": "VERNEVILLE" + "codePostal": "28160", + "codeCommune": "28273", + "libelleAcheminement": "MOULHARD", + "nomCommune": "MOULHARD" }, { - "codePostal": "02390", - "codeCommune": "02741", - "libelleAcheminement": "THENELLES", - "nomCommune": "THENELLES" + "codePostal": "20166", + "codeCommune": "2A228", + "libelleAcheminement": "PIETROSELLA", + "nomCommune": "PIETROSELLA" }, { - "codePostal": "64230", - "codeCommune": "64335", - "libelleAcheminement": "LESCAR", - "nomCommune": "LESCAR" + "codePostal": "40380", + "codeCommune": "40104", + "libelleAcheminement": "GAMARDE LES BAINS", + "nomCommune": "GAMARDE LES BAINS" }, { - "codePostal": "32460", - "codeCommune": "32155", - "libelleAcheminement": "LE HOUGA", - "nomCommune": "LE HOUGA" + "codePostal": "39200", + "codeCommune": "39478", + "libelleAcheminement": "ST CLAUDE", + "nomCommune": "ST CLAUDE" }, { - "codePostal": "57370", - "codeCommune": "57709", - "libelleAcheminement": "VESCHEIM", - "nomCommune": "VESCHEIM" + "codePostal": "28150", + "codeCommune": "28274", + "libelleAcheminement": "MOUTIERS", + "nomCommune": "MOUTIERS" }, { - "codePostal": "02490", - "codeCommune": "02747", - "libelleAcheminement": "TREFCON", - "nomCommune": "TREFCON" + "codePostal": "20121", + "codeCommune": "2A259", + "libelleAcheminement": "REZZA", + "nomCommune": "REZZA" }, { - "codePostal": "64530", - "codeCommune": "64344", - "libelleAcheminement": "LIVRON", - "nomCommune": "LIVRON" + "codePostal": "40330", + "codeCommune": "40109", + "libelleAcheminement": "GAUJACQ", + "nomCommune": "GAUJACQ" }, { - "codePostal": "32300", - "codeCommune": "32156", - "libelleAcheminement": "IDRAC RESPAILLES", - "nomCommune": "IDRAC RESPAILLES" + "codePostal": "39600", + "codeCommune": "39479", + "libelleAcheminement": "ST CYR MONTMALIN", + "nomCommune": "ST CYR MONTMALIN" }, { - "codePostal": "57340", - "codeCommune": "57719", - "libelleAcheminement": "VILLERS SUR NIED", - "nomCommune": "VILLERS SUR NIED" + "codePostal": "28800", + "codeCommune": "28277", + "libelleAcheminement": "NEUVY EN DUNOIS", + "nomCommune": "NEUVY EN DUNOIS" }, { - "codePostal": "02860", - "codeCommune": "02751", - "libelleAcheminement": "TRUCY", - "nomCommune": "TRUCY" + "codePostal": "20140", + "codeCommune": "2A276", + "libelleAcheminement": "SERRA DI FERRO", + "nomCommune": "SERRA DI FERRO" }, { - "codePostal": "64420", - "codeCommune": "64352", - "libelleAcheminement": "LOURENTIES", - "nomCommune": "LOURENTIES" + "codePostal": "40400", + "codeCommune": "40116", + "libelleAcheminement": "GOUTS", + "nomCommune": "GOUTS" }, { - "codePostal": "32270", - "codeCommune": "32157", - "libelleAcheminement": "L ISLE ARNE", - "nomCommune": "L ISLE ARNE" + "codePostal": "39100", + "codeCommune": "39501", + "libelleAcheminement": "SAMPANS", + "nomCommune": "SAMPANS" }, { - "codePostal": "57370", - "codeCommune": "57721", - "libelleAcheminement": "VILSBERG", - "nomCommune": "VILSBERG" + "codePostal": "28630", + "codeCommune": "28278", + "libelleAcheminement": "NOGENT LE PHAYE", + "nomCommune": "NOGENT LE PHAYE" }, { - "codePostal": "02120", - "codeCommune": "02753", - "libelleAcheminement": "TUPIGNY", - "nomCommune": "TUPIGNY" + "codePostal": "20127", + "codeCommune": "2A278", + "libelleAcheminement": "SERRA DI SCOPAMENE", + "nomCommune": "SERRA DI SCOPAMENE" }, { - "codePostal": "64410", - "codeCommune": "64355", - "libelleAcheminement": "LOUVIGNY", - "nomCommune": "LOUVIGNY" + "codePostal": "40250", + "codeCommune": "40121", + "libelleAcheminement": "HAURIET", + "nomCommune": "HAURIET" }, { - "codePostal": "32300", - "codeCommune": "32159", - "libelleAcheminement": "L ISLE DE NOE", - "nomCommune": "L ISLE DE NOE" + "codePostal": "39270", + "codeCommune": "39504", + "libelleAcheminement": "SARROGNA", + "nomCommune": "SARROGNA" }, { - "codePostal": "57560", - "codeCommune": "57734", - "libelleAcheminement": "VOYER", - "nomCommune": "VOYER" + "codePostal": "28120", + "codeCommune": "28281", + "libelleAcheminement": "NOGENT SUR EURE", + "nomCommune": "NOGENT SUR EURE" }, { - "codePostal": "02000", - "codeCommune": "02755", - "libelleAcheminement": "URCEL", - "nomCommune": "URCEL" + "codePostal": "20125", + "codeCommune": "2A282", + "libelleAcheminement": "SOCCIA", + "nomCommune": "SOCCIA" }, { - "codePostal": "64420", - "codeCommune": "64358", - "libelleAcheminement": "LUCGARIER", - "nomCommune": "LUCGARIER" + "codePostal": "40180", + "codeCommune": "40126", + "libelleAcheminement": "HINX", + "nomCommune": "HINX" }, { - "codePostal": "32260", - "codeCommune": "32169", - "libelleAcheminement": "LABARTHE", - "nomCommune": "LABARTHE" + "codePostal": "39130", + "codeCommune": "39505", + "libelleAcheminement": "SAUGEOT", + "nomCommune": "SAUGEOT" }, { - "codePostal": "57420", - "codeCommune": "57737", - "libelleAcheminement": "VULMONT", - "nomCommune": "VULMONT" + "codePostal": "28310", + "codeCommune": "28284", + "libelleAcheminement": "OINVILLE ST LIPHARD", + "nomCommune": "OINVILLE ST LIPHARD" }, { - "codePostal": "02120", - "codeCommune": "02757", - "libelleAcheminement": "VADENCOURT", - "nomCommune": "VADENCOURT" + "codePostal": "20134", + "codeCommune": "2A322", + "libelleAcheminement": "TASSO", + "nomCommune": "TASSO" }, { - "codePostal": "64660", - "codeCommune": "64360", - "libelleAcheminement": "LURBE ST CHRISTAU", - "nomCommune": "LURBE ST CHRISTAU" + "codePostal": "40240", + "codeCommune": "40131", + "libelleAcheminement": "LABASTIDE D ARMAGNAC", + "nomCommune": "LABASTIDE D ARMAGNAC" }, { - "codePostal": "32130", - "codeCommune": "32171", - "libelleAcheminement": "LABASTIDE SAVES", - "nomCommune": "LABASTIDE SAVES" + "codePostal": "39310", + "codeCommune": "39510", + "libelleAcheminement": "SEPTMONCEL LES MOLUNES", + "nomCommune": "SEPTMONCEL LES MOLUNES" }, { - "codePostal": "57480", - "codeCommune": "57740", - "libelleAcheminement": "WALDWISSE", - "nomCommune": "WALDWISSE" + "codePostal": "28150", + "codeCommune": "28313", + "libelleAcheminement": "RECLAINVILLE", + "nomCommune": "RECLAINVILLE" }, { - "codePostal": "02110", - "codeCommune": "02760", - "libelleAcheminement": "LA VALLEE MULATRE", - "nomCommune": "LA VALLEE MULATRE" + "codePostal": "20118", + "codeCommune": "2A348", + "libelleAcheminement": "VICO", + "nomCommune": "VICO" }, { - "codePostal": "64190", - "codeCommune": "64381", - "libelleAcheminement": "MERITEIN", - "nomCommune": "MERITEIN" + "codePostal": "40530", + "codeCommune": "40133", + "libelleAcheminement": "LABENNE", + "nomCommune": "LABENNE" }, { - "codePostal": "32170", - "codeCommune": "32181", - "libelleAcheminement": "LAGUIAN MAZOUS", - "nomCommune": "LAGUIAN MAZOUS" + "codePostal": "39700", + "codeCommune": "39514", + "libelleAcheminement": "SERRE LES MOULIERES", + "nomCommune": "SERRE LES MOULIERES" }, { - "codePostal": "57720", - "codeCommune": "57741", - "libelleAcheminement": "WALSCHBRONN", - "nomCommune": "WALSCHBRONN" + "codePostal": "28340", + "codeCommune": "28316", + "libelleAcheminement": "ROHAIRE", + "nomCommune": "ROHAIRE" }, { - "codePostal": "02190", - "codeCommune": "02761", - "libelleAcheminement": "VARISCOURT", - "nomCommune": "VARISCOURT" + "codePostal": "20167", + "codeCommune": "2A351", + "libelleAcheminement": "VILLANOVA", + "nomCommune": "VILLANOVA" }, { - "codePostal": "64370", - "codeCommune": "64382", - "libelleAcheminement": "MESPLEDE", - "nomCommune": "MESPLEDE" + "codePostal": "40210", + "codeCommune": "40134", + "libelleAcheminement": "LABOUHEYRE", + "nomCommune": "LABOUHEYRE" }, { - "codePostal": "32260", - "codeCommune": "32186", - "libelleAcheminement": "LAMAGUERE", - "nomCommune": "LAMAGUERE" + "codePostal": "39300", + "codeCommune": "39517", + "libelleAcheminement": "SIROD", + "nomCommune": "SIROD" }, { - "codePostal": "57320", - "codeCommune": "57749", - "libelleAcheminement": "VOELFLING LES BOUZONVILLE", - "nomCommune": "VOELFLING LES BOUZONVILLE" + "codePostal": "28700", + "codeCommune": "28317", + "libelleAcheminement": "ROINVILLE", + "nomCommune": "ROINVILLE" }, { - "codePostal": "02320", - "codeCommune": "02766", - "libelleAcheminement": "VAUDESSON", - "nomCommune": "VAUDESSON" + "codePostal": "20270", + "codeCommune": "2B002", + "libelleAcheminement": "AGHIONE", + "nomCommune": "AGHIONE" }, { - "codePostal": "64300", - "codeCommune": "64396", - "libelleAcheminement": "MONT", - "nomCommune": "MONT" + "codePostal": "40120", + "codeCommune": "40137", + "libelleAcheminement": "LACQUY", + "nomCommune": "LACQUY" }, { - "codePostal": "32240", - "codeCommune": "32189", - "libelleAcheminement": "LANNEMAIGNAN", - "nomCommune": "LANNEMAIGNAN" + "codePostal": "39130", + "codeCommune": "39538", + "libelleAcheminement": "UXELLES", + "nomCommune": "UXELLES" }, { - "codePostal": "57330", - "codeCommune": "57764", - "libelleAcheminement": "ZOUFFTGEN", - "nomCommune": "ZOUFFTGEN" + "codePostal": "28300", + "codeCommune": "28325", + "libelleAcheminement": "ST AUBIN DES BOIS", + "nomCommune": "ST AUBIN DES BOIS" }, { - "codePostal": "02320", - "codeCommune": "02768", - "libelleAcheminement": "VAUXAILLON", - "nomCommune": "VAUXAILLON" + "codePostal": "20212", + "codeCommune": "2B013", + "libelleAcheminement": "ALZI", + "nomCommune": "ALZI" }, { - "codePostal": "64800", - "codeCommune": "64400", - "libelleAcheminement": "MONTAUT", - "nomCommune": "MONTAUT" + "codePostal": "40090", + "codeCommune": "40139", + "libelleAcheminement": "LAGLORIEUSE", + "nomCommune": "LAGLORIEUSE" }, { - "codePostal": "32190", - "codeCommune": "32190", - "libelleAcheminement": "LANNEPAX", - "nomCommune": "LANNEPAX" + "codePostal": "39380", + "codeCommune": "39546", + "libelleAcheminement": "VAUDREY", + "nomCommune": "VAUDREY" }, { - "codePostal": "57970", - "codeCommune": "57767", - "libelleAcheminement": "STUCKANGE", - "nomCommune": "STUCKANGE" + "codePostal": "28330", + "codeCommune": "28327", + "libelleAcheminement": "ST BOMER", + "nomCommune": "ST BOMER" }, { - "codePostal": "02350", - "codeCommune": "02790", - "libelleAcheminement": "VESLES ET CAUMONT", - "nomCommune": "VESLES ET CAUMONT" + "codePostal": "20276", + "codeCommune": "2B023", + "libelleAcheminement": "ASCO", + "nomCommune": "ASCO" }, { - "codePostal": "64190", - "codeCommune": "64403", - "libelleAcheminement": "MONTFORT", - "nomCommune": "MONTFORT" + "codePostal": "40465", + "codeCommune": "40142", + "libelleAcheminement": "LALUQUE", + "nomCommune": "LALUQUE" }, { - "codePostal": "32220", - "codeCommune": "32206", - "libelleAcheminement": "LAYMONT", - "nomCommune": "LAYMONT" + "codePostal": "39600", + "codeCommune": "39565", + "libelleAcheminement": "VILLENEUVE D AVAL", + "nomCommune": "VILLENEUVE D AVAL" }, { - "codePostal": "58110", - "codeCommune": "58004", - "libelleAcheminement": "ALLUY", - "nomCommune": "ALLUY" + "codePostal": "28200", + "codeCommune": "28330", + "libelleAcheminement": "VILLEMAURY", + "nomCommune": "VILLEMAURY" }, { - "codePostal": "02290", - "codeCommune": "02795", - "libelleAcheminement": "VIC SUR AISNE", - "nomCommune": "VIC SUR AISNE" + "codePostal": "20200", + "codeCommune": "2B033", + "libelleAcheminement": "BASTIA", + "nomCommune": "BASTIA" }, { - "codePostal": "64330", - "codeCommune": "64408", - "libelleAcheminement": "MOUHOUS", - "nomCommune": "MOUHOUS" + "codePostal": "40250", + "codeCommune": "40144", + "libelleAcheminement": "LARBEY", + "nomCommune": "LARBEY" }, { - "codePostal": "32240", - "codeCommune": "32211", - "libelleAcheminement": "LIAS D ARMAGNAC", - "nomCommune": "LIAS D ARMAGNAC" + "codePostal": "39800", + "codeCommune": "39570", + "libelleAcheminement": "VILLERS LES BOIS", + "nomCommune": "VILLERS LES BOIS" }, { - "codePostal": "58190", - "codeCommune": "58005", - "libelleAcheminement": "AMAZY", - "nomCommune": "AMAZY" + "codePostal": "28200", + "codeCommune": "28330", + "libelleAcheminement": "VILLEMAURY", + "nomCommune": "VILLEMAURY" }, { - "codePostal": "02160", - "codeCommune": "02797", - "libelleAcheminement": "VIEL ARCY", - "nomCommune": "VIEL ARCY" + "codePostal": "20226", + "codeCommune": "2B034", + "libelleAcheminement": "BELGODERE", + "nomCommune": "BELGODERE" }, { - "codePostal": "64190", - "codeCommune": "64412", - "libelleAcheminement": "NABAS", - "nomCommune": "NABAS" + "codePostal": "40400", + "codeCommune": "40151", + "libelleAcheminement": "LESGOR", + "nomCommune": "LESGOR" }, { - "codePostal": "32110", - "codeCommune": "32214", - "libelleAcheminement": "LOUBEDAT", - "nomCommune": "LOUBEDAT" + "codePostal": "39190", + "codeCommune": "39576", + "libelleAcheminement": "VAL SONNETTE", + "nomCommune": "VAL SONNETTE" }, { - "codePostal": "58430", - "codeCommune": "58010", - "libelleAcheminement": "ARLEUF", - "nomCommune": "ARLEUF" + "codePostal": "28480", + "codeCommune": "28331", + "libelleAcheminement": "SAINTIGNY", + "nomCommune": "SAINTIGNY" }, { - "codePostal": "02210", - "codeCommune": "02799", - "libelleAcheminement": "VIERZY", - "nomCommune": "VIERZY" + "codePostal": "20212", + "codeCommune": "2B045", + "libelleAcheminement": "BUSTANICO", + "nomCommune": "BUSTANICO" }, { - "codePostal": "64190", - "codeCommune": "64414", - "libelleAcheminement": "NARP", - "nomCommune": "NARP" + "codePostal": "40170", + "codeCommune": "40157", + "libelleAcheminement": "LIT ET MIXE", + "nomCommune": "LIT ET MIXE" }, { - "codePostal": "32230", - "codeCommune": "32217", - "libelleAcheminement": "LOUSLITGES", - "nomCommune": "LOUSLITGES" + "codePostal": "39240", + "codeCommune": "39583", + "libelleAcheminement": "VOSBLES VALFIN", + "nomCommune": "VOSBLES VALFIN" }, { - "codePostal": "58700", - "codeCommune": "58013", - "libelleAcheminement": "ARTHEL", - "nomCommune": "ARTHEL" + "codePostal": "28170", + "codeCommune": "28341", + "libelleAcheminement": "ST JEAN DE REBERVILLIERS", + "nomCommune": "ST JEAN DE REBERVILLIERS" }, { - "codePostal": "02540", - "codeCommune": "02800", - "libelleAcheminement": "VIFFORT", - "nomCommune": "VIFFORT" + "codePostal": "20229", + "codeCommune": "2B063", + "libelleAcheminement": "CARCHETO BRUSTICO", + "nomCommune": "CARCHETO BRUSTICO" }, { - "codePostal": "64800", - "codeCommune": "64417", - "libelleAcheminement": "NAY", - "nomCommune": "NAY" + "codePostal": "40120", + "codeCommune": "40164", + "libelleAcheminement": "RETJONS", + "nomCommune": "RETJONS" }, { - "codePostal": "32290", - "codeCommune": "32218", - "libelleAcheminement": "LOUSSOUS DEBAT", - "nomCommune": "LOUSSOUS DEBAT" + "codePostal": "40700", + "codeCommune": "40007", + "libelleAcheminement": "ARGELOS", + "nomCommune": "ARGELOS" }, { - "codePostal": "58190", - "codeCommune": "58016", - "libelleAcheminement": "ASNOIS", - "nomCommune": "ASNOIS" + "codePostal": "28210", + "codeCommune": "28343", + "libelleAcheminement": "ST LAURENT LA GATINE", + "nomCommune": "ST LAURENT LA GATINE" }, { - "codePostal": "02420", - "codeCommune": "02808", - "libelleAcheminement": "VILLERET", - "nomCommune": "VILLERET" + "codePostal": "20237", + "codeCommune": "2B069", + "libelleAcheminement": "CASABIANCA", + "nomCommune": "CASABIANCA" }, { - "codePostal": "64120", - "codeCommune": "64425", - "libelleAcheminement": "OREGUE", - "nomCommune": "OREGUE" + "codePostal": "40320", + "codeCommune": "40174", + "libelleAcheminement": "MAURIES", + "nomCommune": "MAURIES" }, { - "codePostal": "32370", - "codeCommune": "32227", - "libelleAcheminement": "MANCIET", - "nomCommune": "MANCIET" + "codePostal": "40430", + "codeCommune": "40008", + "libelleAcheminement": "ARGELOUSE", + "nomCommune": "ARGELOUSE" }, { - "codePostal": "58110", - "codeCommune": "58024", - "libelleAcheminement": "BAZOLLES", - "nomCommune": "BAZOLLES" + "codePostal": "28210", + "codeCommune": "28349", + "libelleAcheminement": "ST LUCIEN", + "nomCommune": "ST LUCIEN" }, { - "codePostal": "02600", - "codeCommune": "02810", - "libelleAcheminement": "VILLERS COTTERETS", - "nomCommune": "VILLERS COTTERETS" + "codePostal": "20213", + "codeCommune": "2B077", + "libelleAcheminement": "CASTELLARE DI CASINCA", + "nomCommune": "CASTELLARE DI CASINCA" }, { - "codePostal": "64490", - "codeCommune": "64433", - "libelleAcheminement": "OSSE EN ASPE", - "nomCommune": "OSSE EN ASPE" + "codePostal": "40270", + "codeCommune": "40175", + "libelleAcheminement": "MAURRIN", + "nomCommune": "MAURRIN" }, { - "codePostal": "32140", - "codeCommune": "32228", - "libelleAcheminement": "MANENT MONTANE", - "nomCommune": "MANENT MONTANE" + "codePostal": "40700", + "codeCommune": "40016", + "libelleAcheminement": "AUBAGNAN", + "nomCommune": "AUBAGNAN" }, { - "codePostal": "58160", - "codeCommune": "58025", - "libelleAcheminement": "BEARD", - "nomCommune": "BEARD" + "codePostal": "28170", + "codeCommune": "28351", + "libelleAcheminement": "ST MAIXME HAUTERIVE", + "nomCommune": "ST MAIXME HAUTERIVE" }, { - "codePostal": "02240", - "codeCommune": "02813", - "libelleAcheminement": "VILLERS LE SEC", - "nomCommune": "VILLERS LE SEC" + "codePostal": "20218", + "codeCommune": "2B081", + "libelleAcheminement": "CASTIGLIONE", + "nomCommune": "CASTIGLIONE" }, { - "codePostal": "64160", - "codeCommune": "64438", - "libelleAcheminement": "OUILLON", - "nomCommune": "OUILLON" + "codePostal": "40240", + "codeCommune": "40176", + "libelleAcheminement": "MAUVEZIN D ARMAGNAC", + "nomCommune": "MAUVEZIN D ARMAGNAC" }, { - "codePostal": "32290", - "codeCommune": "32235", - "libelleAcheminement": "MARGOUET MEYMES", - "nomCommune": "MARGOUET MEYMES" + "codePostal": "40500", + "codeCommune": "40026", + "libelleAcheminement": "BAS MAUCO", + "nomCommune": "BAS MAUCO" }, { - "codePostal": "58420", - "codeCommune": "58026", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "28120", + "codeCommune": "28365", + "libelleAcheminement": "SANDARVILLE", + "nomCommune": "SANDARVILLE" }, { - "codePostal": "02120", - "codeCommune": "02814", - "libelleAcheminement": "VILLERS LES GUISE", - "nomCommune": "VILLERS LES GUISE" + "codePostal": "20225", + "codeCommune": "2B084", + "libelleAcheminement": "CATERI", + "nomCommune": "CATERI" }, { - "codePostal": "64150", - "codeCommune": "64443", - "libelleAcheminement": "PARDIES", - "nomCommune": "PARDIES" + "codePostal": "40660", + "codeCommune": "40181", + "libelleAcheminement": "MESSANGES", + "nomCommune": "MESSANGES" }, { - "codePostal": "32140", - "codeCommune": "32242", - "libelleAcheminement": "MASSEUBE", - "nomCommune": "MASSEUBE" + "codePostal": "40300", + "codeCommune": "40034", + "libelleAcheminement": "BELUS", + "nomCommune": "BELUS" }, { - "codePostal": "58700", - "codeCommune": "58027", - "libelleAcheminement": "BEAUMONT LA FERRIERE", - "nomCommune": "BEAUMONT LA FERRIERE" + "codePostal": "28250", + "codeCommune": "28373", + "libelleAcheminement": "SENONCHES", + "nomCommune": "SENONCHES" }, { - "codePostal": "02300", - "codeCommune": "02820", - "libelleAcheminement": "VIRY NOUREUIL", - "nomCommune": "VIRY NOUREUIL" + "codePostal": "20237", + "codeCommune": "2B113", + "libelleAcheminement": "FICAJA", + "nomCommune": "FICAJA" }, { - "codePostal": "64370", - "codeCommune": "64450", - "libelleAcheminement": "POMPS", - "nomCommune": "POMPS" + "codePostal": "40290", + "codeCommune": "40186", + "libelleAcheminement": "MISSON", + "nomCommune": "MISSON" }, { - "codePostal": "32220", - "codeCommune": "32276", - "libelleAcheminement": "MONTADET", - "nomCommune": "MONTADET" + "codePostal": "40280", + "codeCommune": "40037", + "libelleAcheminement": "BENQUET", + "nomCommune": "BENQUET" }, { - "codePostal": "58120", - "codeCommune": "58034", - "libelleAcheminement": "BLISMES", - "nomCommune": "BLISMES" + "codePostal": "28260", + "codeCommune": "28377", + "libelleAcheminement": "SOREL MOUSSEL", + "nomCommune": "SOREL MOUSSEL" }, { - "codePostal": "02870", - "codeCommune": "02821", - "libelleAcheminement": "VIVAISE", - "nomCommune": "VIVAISE" + "codePostal": "20245", + "codeCommune": "2B121", + "libelleAcheminement": "GALERIA", + "nomCommune": "GALERIA" }, { - "codePostal": "64460", - "codeCommune": "64451", - "libelleAcheminement": "PONSON DEBAT POUTS", - "nomCommune": "PONSON DEBAT POUTS" + "codePostal": "40700", + "codeCommune": "40190", + "libelleAcheminement": "MONSEGUR", + "nomCommune": "MONSEGUR" }, { - "codePostal": "32300", - "codeCommune": "32278", - "libelleAcheminement": "MONTAUT", - "nomCommune": "MONTAUT" + "codePostal": "40370", + "codeCommune": "40040", + "libelleAcheminement": "BEYLONGUE", + "nomCommune": "BEYLONGUE" }, { - "codePostal": "58310", - "codeCommune": "58036", - "libelleAcheminement": "BOUHY", - "nomCommune": "BOUHY" + "codePostal": "28130", + "codeCommune": "28379", + "libelleAcheminement": "SOULAIRES", + "nomCommune": "SOULAIRES" }, { - "codePostal": "02880", - "codeCommune": "02828", - "libelleAcheminement": "VREGNY", - "nomCommune": "VREGNY" + "codePostal": "20240", + "codeCommune": "2B123", + "libelleAcheminement": "GHISONACCIA", + "nomCommune": "GHISONACCIA" }, { - "codePostal": "64300", - "codeCommune": "64471", - "libelleAcheminement": "ST BOES", - "nomCommune": "ST BOES" + "codePostal": "40190", + "codeCommune": "40193", + "libelleAcheminement": "MONTEGUT", + "nomCommune": "MONTEGUT" }, { - "codePostal": "32810", - "codeCommune": "32279", - "libelleAcheminement": "MONTAUT LES CRENEAUX", - "nomCommune": "MONTAUT LES CRENEAUX" + "codePostal": "40270", + "codeCommune": "40049", + "libelleAcheminement": "BORDERES ET LAMENSANS", + "nomCommune": "BORDERES ET LAMENSANS" }, { - "codePostal": "58140", - "codeCommune": "58037", - "libelleAcheminement": "BRASSY", - "nomCommune": "BRASSY" + "codePostal": "28630", + "codeCommune": "28380", + "libelleAcheminement": "SOURS", + "nomCommune": "SOURS" }, { - "codePostal": "02880", - "codeCommune": "02829", - "libelleAcheminement": "VUILLERY", - "nomCommune": "VUILLERY" + "codePostal": "20237", + "codeCommune": "2B125", + "libelleAcheminement": "GIOCATOJO", + "nomCommune": "GIOCATOJO" }, { - "codePostal": "64500", - "codeCommune": "64483", - "libelleAcheminement": "ST JEAN DE LUZ", - "nomCommune": "ST JEAN DE LUZ" + "codePostal": "40380", + "codeCommune": "40194", + "libelleAcheminement": "MONTFORT EN CHALOSSE", + "nomCommune": "MONTFORT EN CHALOSSE" }, { - "codePostal": "32550", - "codeCommune": "32282", - "libelleAcheminement": "MONTEGUT", - "nomCommune": "MONTEGUT" + "codePostal": "40120", + "codeCommune": "40053", + "libelleAcheminement": "BOURRIOT BERGONCE", + "nomCommune": "BOURRIOT BERGONCE" }, { - "codePostal": "58800", - "codeCommune": "58047", - "libelleAcheminement": "CERVON", - "nomCommune": "CERVON" + "codePostal": "28360", + "codeCommune": "28383", + "libelleAcheminement": "THEUVILLE", + "nomCommune": "THEUVILLE" }, { - "codePostal": "02500", - "codeCommune": "02833", - "libelleAcheminement": "WIMY", - "nomCommune": "WIMY" + "codePostal": "20252", + "codeCommune": "2B140", + "libelleAcheminement": "LENTO", + "nomCommune": "LENTO" }, { - "codePostal": "64780", - "codeCommune": "64490", - "libelleAcheminement": "ST MARTIN D ARROSSA", - "nomCommune": "ST MARTIN D ARROSSA" + "codePostal": "40300", + "codeCommune": "40211", + "libelleAcheminement": "ORIST", + "nomCommune": "ORIST" }, { - "codePostal": "32240", - "codeCommune": "32291", - "libelleAcheminement": "MORMES", - "nomCommune": "MORMES" + "codePostal": "40280", + "codeCommune": "40055", + "libelleAcheminement": "BRETAGNE DE MARSAN", + "nomCommune": "BRETAGNE DE MARSAN" }, { - "codePostal": "58220", - "codeCommune": "58048", - "libelleAcheminement": "CESSY LES BOIS", - "nomCommune": "CESSY LES BOIS" + "codePostal": "28170", + "codeCommune": "28386", + "libelleAcheminement": "THIMERT GATELLES", + "nomCommune": "THIMERT GATELLES" }, { - "codePostal": "03360", - "codeCommune": "03003", - "libelleAcheminement": "AINAY LE CHATEAU", - "nomCommune": "AINAY LE CHATEAU" + "codePostal": "20230", + "codeCommune": "2B143", + "libelleAcheminement": "LINGUIZZETTA", + "nomCommune": "LINGUIZZETTA" }, { - "codePostal": "64780", - "codeCommune": "64490", - "libelleAcheminement": "ST MARTIN D ARROSSA", - "nomCommune": "ST MARTIN D ARROSSA" + "codePostal": "40410", + "codeCommune": "40227", + "libelleAcheminement": "PISSOS", + "nomCommune": "PISSOS" }, { - "codePostal": "32500", - "codeCommune": "32306", - "libelleAcheminement": "PAUILHAC", - "nomCommune": "PAUILHAC" + "codePostal": "40120", + "codeCommune": "40058", + "libelleAcheminement": "CACHEN", + "nomCommune": "CACHEN" }, { - "codePostal": "58700", - "codeCommune": "58054", - "libelleAcheminement": "CHAMPLIN", - "nomCommune": "CHAMPLIN" + "codePostal": "28140", + "codeCommune": "28390", + "libelleAcheminement": "TILLAY LE PENEUX", + "nomCommune": "TILLAY LE PENEUX" }, { - "codePostal": "03420", - "codeCommune": "03007", - "libelleAcheminement": "ARPHEUILLES ST PRIEST", - "nomCommune": "ARPHEUILLES ST PRIEST" + "codePostal": "20224", + "codeCommune": "2B147", + "libelleAcheminement": "LOZZI", + "nomCommune": "LOZZI" }, { - "codePostal": "64120", - "codeCommune": "64493", - "libelleAcheminement": "ST PALAIS", - "nomCommune": "ST PALAIS" + "codePostal": "40380", + "codeCommune": "40236", + "libelleAcheminement": "POYARTIN", + "nomCommune": "POYARTIN" }, { - "codePostal": "32550", - "codeCommune": "32312", - "libelleAcheminement": "PESSAN", - "nomCommune": "PESSAN" + "codePostal": "40090", + "codeCommune": "40061", + "libelleAcheminement": "CAMPAGNE", + "nomCommune": "CAMPAGNE" }, { - "codePostal": "58350", - "codeCommune": "58061", - "libelleAcheminement": "CHASNAY", - "nomCommune": "CHASNAY" + "codePostal": "28310", + "codeCommune": "28392", + "libelleAcheminement": "TRANCRAINVILLE", + "nomCommune": "TRANCRAINVILLE" }, { - "codePostal": "03140", - "codeCommune": "03016", - "libelleAcheminement": "BARBERIER", - "nomCommune": "BARBERIER" + "codePostal": "20290", + "codeCommune": "2B148", + "libelleAcheminement": "LUCCIANA", + "nomCommune": "LUCCIANA" }, { - "codePostal": "64270", - "codeCommune": "64494", - "libelleAcheminement": "ST PE DE LEREN", - "nomCommune": "ST PE DE LEREN" + "codePostal": "40190", + "codeCommune": "40238", + "libelleAcheminement": "PUJO LE PLAN", + "nomCommune": "PUJO LE PLAN" }, { - "codePostal": "32340", - "codeCommune": "32314", - "libelleAcheminement": "PEYRECAVE", - "nomCommune": "PEYRECAVE" + "codePostal": "40380", + "codeCommune": "40068", + "libelleAcheminement": "CASSEN", + "nomCommune": "CASSEN" }, { - "codePostal": "58120", - "codeCommune": "58063", - "libelleAcheminement": "CHATEAU CHINON CAMPAGNE", - "nomCommune": "CHATEAU CHINON CAMPAGNE" + "codePostal": "28170", + "codeCommune": "28393", + "libelleAcheminement": "TREMBLAY LES VILLAGES", + "nomCommune": "TREMBLAY LES VILLAGES" }, { - "codePostal": "03500", - "codeCommune": "03018", - "libelleAcheminement": "BAYET", - "nomCommune": "BAYET" + "codePostal": "20259", + "codeCommune": "2B156", + "libelleAcheminement": "MAUSOLEO", + "nomCommune": "MAUSOLEO" }, { - "codePostal": "64800", - "codeCommune": "64498", - "libelleAcheminement": "ST VINCENT", - "nomCommune": "ST VINCENT" + "codePostal": "40320", + "codeCommune": "40239", + "libelleAcheminement": "PUYOL CAZALET", + "nomCommune": "PUYOL CAZALET" }, { - "codePostal": "32230", - "codeCommune": "32317", - "libelleAcheminement": "PEYRUSSE VIEILLE", - "nomCommune": "PEYRUSSE VIEILLE" + "codePostal": "40330", + "codeCommune": "40074", + "libelleAcheminement": "CASTEL SARRAZIN", + "nomCommune": "CASTEL SARRAZIN" }, { - "codePostal": "58170", - "codeCommune": "58074", - "libelleAcheminement": "CHIDDES", - "nomCommune": "CHIDDES" + "codePostal": "28800", + "codeCommune": "28396", + "libelleAcheminement": "TRIZAY LES BONNEVAL", + "nomCommune": "TRIZAY LES BONNEVAL" }, { - "codePostal": "03230", - "codeCommune": "03019", - "libelleAcheminement": "BEAULON", - "nomCommune": "BEAULON" + "codePostal": "20214", + "codeCommune": "2B167", + "libelleAcheminement": "MONTEGROSSO", + "nomCommune": "MONTEGROSSO" }, { - "codePostal": "64300", - "codeCommune": "64500", - "libelleAcheminement": "SALLES MONGISCARD", - "nomCommune": "SALLES MONGISCARD" + "codePostal": "40270", + "codeCommune": "40240", + "libelleAcheminement": "RENUNG", + "nomCommune": "RENUNG" }, { - "codePostal": "32340", - "codeCommune": "32320", - "libelleAcheminement": "PLIEUX", - "nomCommune": "PLIEUX" + "codePostal": "40260", + "codeCommune": "40075", + "libelleAcheminement": "CASTETS", + "nomCommune": "CASTETS" }, { - "codePostal": "58120", - "codeCommune": "58082", - "libelleAcheminement": "CORANCY", - "nomCommune": "CORANCY" + "codePostal": "28630", + "codeCommune": "28403", + "libelleAcheminement": "VER LES CHARTRES", + "nomCommune": "VER LES CHARTRES" }, { - "codePostal": "03130", - "codeCommune": "03024", - "libelleAcheminement": "BERT", - "nomCommune": "BERT" + "codePostal": "20214", + "codeCommune": "2B167", + "libelleAcheminement": "MONTEGROSSO", + "nomCommune": "MONTEGROSSO" }, { - "codePostal": "64490", - "codeCommune": "64506", - "libelleAcheminement": "SARRANCE", - "nomCommune": "SARRANCE" + "codePostal": "40180", + "codeCommune": "40244", + "libelleAcheminement": "RIVIERE SAAS ET GOURBY", + "nomCommune": "RIVIERE SAAS ET GOURBY" }, { - "codePostal": "32130", - "codeCommune": "32321", - "libelleAcheminement": "POLASTRON", - "nomCommune": "POLASTRON" + "codePostal": "40310", + "codeCommune": "40102", + "libelleAcheminement": "GABARRET", + "nomCommune": "GABARRET" }, { - "codePostal": "58210", - "codeCommune": "58084", - "libelleAcheminement": "CORVOL D EMBERNARD", - "nomCommune": "CORVOL D EMBERNARD" + "codePostal": "28500", + "codeCommune": "28405", + "libelleAcheminement": "VERT EN DROUAIS", + "nomCommune": "VERT EN DROUAIS" }, { - "codePostal": "03170", - "codeCommune": "03027", - "libelleAcheminement": "BEZENET", - "nomCommune": "BEZENET" + "codePostal": "20218", + "codeCommune": "2B169", + "libelleAcheminement": "MOROSAGLIA", + "nomCommune": "MOROSAGLIA" }, { - "codePostal": "64420", - "codeCommune": "64507", - "libelleAcheminement": "SAUBOLE", - "nomCommune": "SAUBOLE" + "codePostal": "40090", + "codeCommune": "40250", + "libelleAcheminement": "ST AVIT", + "nomCommune": "ST AVIT" }, { - "codePostal": "32160", - "codeCommune": "32330", - "libelleAcheminement": "PRECHAC SUR ADOUR", - "nomCommune": "PRECHAC SUR ADOUR" + "codePostal": "40420", + "codeCommune": "40105", + "libelleAcheminement": "GAREIN", + "nomCommune": "GAREIN" }, { - "codePostal": "58300", - "codeCommune": "58087", - "libelleAcheminement": "COSSAYE", - "nomCommune": "COSSAYE" + "codePostal": "28150", + "codeCommune": "28406", + "libelleAcheminement": "EOLE EN BEAUCE", + "nomCommune": "EOLE EN BEAUCE" }, { - "codePostal": "03170", - "codeCommune": "03031", - "libelleAcheminement": "BIZENEUILLE", - "nomCommune": "BIZENEUILLE" + "codePostal": "20225", + "codeCommune": "2B175", + "libelleAcheminement": "NESSA", + "nomCommune": "NESSA" }, { - "codePostal": "64400", - "codeCommune": "64508", - "libelleAcheminement": "SAUCEDE", - "nomCommune": "SAUCEDE" + "codePostal": "40190", + "codeCommune": "40255", + "libelleAcheminement": "ST CRICQ VILLENEUVE", + "nomCommune": "ST CRICQ VILLENEUVE" }, { - "codePostal": "32800", - "codeCommune": "32338", - "libelleAcheminement": "RAMOUZENS", - "nomCommune": "RAMOUZENS" + "codePostal": "40180", + "codeCommune": "40106", + "libelleAcheminement": "GARREY", + "nomCommune": "GARREY" }, { - "codePostal": "58350", - "codeCommune": "58101", - "libelleAcheminement": "DOMPIERRE SUR NIEVRE", - "nomCommune": "DOMPIERRE SUR NIEVRE" + "codePostal": "28480", + "codeCommune": "28407", + "libelleAcheminement": "VICHERES", + "nomCommune": "VICHERES" }, { - "codePostal": "03360", - "codeCommune": "03037", - "libelleAcheminement": "BRAIZE", - "nomCommune": "BRAIZE" + "codePostal": "20242", + "codeCommune": "2B177", + "libelleAcheminement": "NOCETA", + "nomCommune": "NOCETA" }, { - "codePostal": "64230", - "codeCommune": "64511", - "libelleAcheminement": "SAUVAGNON", - "nomCommune": "SAUVAGNON" + "codePostal": "40200", + "codeCommune": "40257", + "libelleAcheminement": "STE EULALIE EN BORN", + "nomCommune": "STE EULALIE EN BORN" }, { - "codePostal": "32800", - "codeCommune": "32340", - "libelleAcheminement": "REANS", - "nomCommune": "REANS" + "codePostal": "40090", + "codeCommune": "40111", + "libelleAcheminement": "GELOUX", + "nomCommune": "GELOUX" }, { - "codePostal": "58530", - "codeCommune": "58103", - "libelleAcheminement": "DORNECY", - "nomCommune": "DORNECY" + "codePostal": "28130", + "codeCommune": "28417", + "libelleAcheminement": "VILLIERS LE MORHIER", + "nomCommune": "VILLIERS LE MORHIER" }, { - "codePostal": "03500", - "codeCommune": "03038", - "libelleAcheminement": "BRANSAT", - "nomCommune": "BRANSAT" + "codePostal": "20234", + "codeCommune": "2B179", + "libelleAcheminement": "NOVALE", + "nomCommune": "NOVALE" }, { - "codePostal": "64350", - "codeCommune": "64517", - "libelleAcheminement": "SEMEACQ BLACHON", - "nomCommune": "SEMEACQ BLACHON" + "codePostal": "40190", + "codeCommune": "40258", + "libelleAcheminement": "STE FOY", + "nomCommune": "STE FOY" }, { - "codePostal": "32390", - "codeCommune": "32341", - "libelleAcheminement": "REJAUMONT", - "nomCommune": "REJAUMONT" + "codePostal": "40380", + "codeCommune": "40112", + "libelleAcheminement": "GIBRET", + "nomCommune": "GIBRET" }, { - "codePostal": "58430", - "codeCommune": "58111", - "libelleAcheminement": "FACHIN", - "nomCommune": "FACHIN" + "codePostal": "28150", + "codeCommune": "28422", + "libelleAcheminement": "LES VILLAGES VOVEENS", + "nomCommune": "LES VILLAGES VOVEENS" }, { - "codePostal": "03110", - "codeCommune": "03043", - "libelleAcheminement": "BROUT VERNET", - "nomCommune": "BROUT VERNET" + "codePostal": "20272", + "codeCommune": "2B213", + "libelleAcheminement": "PIANELLO", + "nomCommune": "PIANELLO" }, { - "codePostal": "64420", - "codeCommune": "64526", - "libelleAcheminement": "SOUMOULOU", - "nomCommune": "SOUMOULOU" + "codePostal": "40240", + "codeCommune": "40267", + "libelleAcheminement": "ST JUSTIN", + "nomCommune": "ST JUSTIN" }, { - "codePostal": "32390", - "codeCommune": "32347", - "libelleAcheminement": "ROQUEFORT", - "nomCommune": "ROQUEFORT" + "codePostal": "40465", + "codeCommune": "40115", + "libelleAcheminement": "GOUSSE", + "nomCommune": "GOUSSE" }, { - "codePostal": "58170", - "codeCommune": "58114", - "libelleAcheminement": "FLETY", - "nomCommune": "FLETY" + "codePostal": "29300", + "codeCommune": "29002", + "libelleAcheminement": "ARZANO", + "nomCommune": "ARZANO" }, { - "codePostal": "03440", - "codeCommune": "03046", - "libelleAcheminement": "BUXIERES LES MINES", - "nomCommune": "BUXIERES LES MINES" + "codePostal": "20215", + "codeCommune": "2B214", + "libelleAcheminement": "PIANO", + "nomCommune": "PIANO" }, { - "codePostal": "64250", - "codeCommune": "64527", - "libelleAcheminement": "SOURAIDE", - "nomCommune": "SOURAIDE" + "codePostal": "40300", + "codeCommune": "40269", + "libelleAcheminement": "ST LON LES MINES", + "nomCommune": "ST LON LES MINES" }, { - "codePostal": "32310", - "codeCommune": "32351", - "libelleAcheminement": "ROQUES", - "nomCommune": "ROQUES" + "codePostal": "40290", + "codeCommune": "40118", + "libelleAcheminement": "HABAS", + "nomCommune": "HABAS" }, { - "codePostal": "58600", - "codeCommune": "58117", - "libelleAcheminement": "FOURCHAMBAULT", - "nomCommune": "FOURCHAMBAULT" + "codePostal": "29770", + "codeCommune": "29003", + "libelleAcheminement": "AUDIERNE", + "nomCommune": "AUDIERNE" }, { - "codePostal": "03250", - "codeCommune": "03050", - "libelleAcheminement": "LA CHABANNE", - "nomCommune": "LA CHABANNE" + "codePostal": "20251", + "codeCommune": "2B218", + "libelleAcheminement": "PIEDICORTE DI GAGGIO", + "nomCommune": "PIEDICORTE DI GAGGIO" }, { - "codePostal": "64360", - "codeCommune": "64535", - "libelleAcheminement": "TARSACQ", - "nomCommune": "TARSACQ" + "codePostal": "40390", + "codeCommune": "40272", + "libelleAcheminement": "ST MARTIN DE HINX", + "nomCommune": "ST MARTIN DE HINX" }, { - "codePostal": "32200", - "codeCommune": "32356", - "libelleAcheminement": "ST ANDRE", - "nomCommune": "ST ANDRE" + "codePostal": "40310", + "codeCommune": "40124", + "libelleAcheminement": "HERRE", + "nomCommune": "HERRE" }, { - "codePostal": "58270", - "codeCommune": "58119", - "libelleAcheminement": "FRASNAY REUGNY", - "nomCommune": "FRASNAY REUGNY" + "codePostal": "29690", + "codeCommune": "29013", + "libelleAcheminement": "BOTMEUR", + "nomCommune": "BOTMEUR" }, { - "codePostal": "03140", - "codeCommune": "03053", - "libelleAcheminement": "CHANTELLE", - "nomCommune": "CHANTELLE" + "codePostal": "20233", + "codeCommune": "2B224", + "libelleAcheminement": "PIETRACORBARA", + "nomCommune": "PIETRACORBARA" }, { - "codePostal": "64470", - "codeCommune": "64537", - "libelleAcheminement": "TROIS VILLES", - "nomCommune": "TROIS VILLES" + "codePostal": "40280", + "codeCommune": "40281", + "libelleAcheminement": "ST PIERRE DU MONT", + "nomCommune": "ST PIERRE DU MONT" }, { - "codePostal": "32340", - "codeCommune": "32358", - "libelleAcheminement": "ST ANTOINE", - "nomCommune": "ST ANTOINE" + "codePostal": "40180", + "codeCommune": "40125", + "libelleAcheminement": "HEUGAS", + "nomCommune": "HEUGAS" }, { - "codePostal": "58230", - "codeCommune": "58129", - "libelleAcheminement": "GOULOUX", - "nomCommune": "GOULOUX" + "codePostal": "29860", + "codeCommune": "29015", + "libelleAcheminement": "BOURG BLANC", + "nomCommune": "BOURG BLANC" }, { - "codePostal": "03380", - "codeCommune": "03055", - "libelleAcheminement": "LA CHAPELAUDE", - "nomCommune": "LA CHAPELAUDE" + "codePostal": "20237", + "codeCommune": "2B246", + "libelleAcheminement": "LA PORTA", + "nomCommune": "LA PORTA" }, { - "codePostal": "64160", - "codeCommune": "64544", - "libelleAcheminement": "UROST", - "nomCommune": "UROST" + "codePostal": "40990", + "codeCommune": "40283", + "libelleAcheminement": "ST VINCENT DE PAUL", + "nomCommune": "ST VINCENT DE PAUL" }, { - "codePostal": "32160", - "codeCommune": "32362", - "libelleAcheminement": "ST AUNIX LENGROS", - "nomCommune": "ST AUNIX LENGROS" + "codePostal": "40700", + "codeCommune": "40128", + "libelleAcheminement": "HORSARRIEU", + "nomCommune": "HORSARRIEU" }, { - "codePostal": "58330", - "codeCommune": "58136", - "libelleAcheminement": "JAILLY", - "nomCommune": "JAILLY" + "codePostal": "29190", + "codeCommune": "29016", + "libelleAcheminement": "BRASPARTS", + "nomCommune": "BRASPARTS" }, { - "codePostal": "03390", - "codeCommune": "03058", - "libelleAcheminement": "CHAPPES", - "nomCommune": "CHAPPES" + "codePostal": "20213", + "codeCommune": "2B252", + "libelleAcheminement": "PRUNO", + "nomCommune": "PRUNO" }, { - "codePostal": "64122", - "codeCommune": "64545", - "libelleAcheminement": "URRUGNE", - "nomCommune": "URRUGNE" + "codePostal": "40320", + "codeCommune": "40286", + "libelleAcheminement": "SAMADET", + "nomCommune": "SAMADET" }, { - "codePostal": "32300", - "codeCommune": "32363", - "libelleAcheminement": "STE AURENCE CAZAUX", - "nomCommune": "STE AURENCE CAZAUX" + "codePostal": "40230", + "codeCommune": "40129", + "libelleAcheminement": "JOSSE", + "nomCommune": "JOSSE" }, { - "codePostal": "58240", - "codeCommune": "58148", - "libelleAcheminement": "LUTHENAY UXELOUP", - "nomCommune": "LUTHENAY UXELOUP" + "codePostal": "29810", + "codeCommune": "29017", + "libelleAcheminement": "BRELES", + "nomCommune": "BRELES" }, { - "codePostal": "03800", - "codeCommune": "03061", - "libelleAcheminement": "CHARMES", - "nomCommune": "CHARMES" + "codePostal": "20250", + "codeCommune": "2B260", + "libelleAcheminement": "RIVENTOSA", + "nomCommune": "RIVENTOSA" }, { - "codePostal": "64480", - "codeCommune": "64547", - "libelleAcheminement": "USTARITZ", - "nomCommune": "USTARITZ" + "codePostal": "40500", + "codeCommune": "40289", + "libelleAcheminement": "SARRAZIET", + "nomCommune": "SARRAZIET" }, { - "codePostal": "32320", - "codeCommune": "32367", - "libelleAcheminement": "ST CHRISTAUD", - "nomCommune": "ST CHRISTAUD" + "codePostal": "40700", + "codeCommune": "40130", + "libelleAcheminement": "LABASTIDE CHALOSSE", + "nomCommune": "LABASTIDE CHALOSSE" }, { - "codePostal": "58260", - "codeCommune": "58151", - "libelleAcheminement": "LA MACHINE", - "nomCommune": "LA MACHINE" + "codePostal": "29200", + "codeCommune": "29019", + "libelleAcheminement": "BREST", + "nomCommune": "BREST" }, { - "codePostal": "03140", - "codeCommune": "03062", - "libelleAcheminement": "CHARROUX", - "nomCommune": "CHARROUX" + "codePostal": "20246", + "codeCommune": "2B287", + "libelleAcheminement": "SORIO", + "nomCommune": "SORIO" }, { - "codePostal": "64230", - "codeCommune": "64549", - "libelleAcheminement": "UZEIN", - "nomCommune": "UZEIN" + "codePostal": "40420", + "codeCommune": "40297", + "libelleAcheminement": "LE SEN", + "nomCommune": "LE SEN" }, { - "codePostal": "32380", - "codeCommune": "32371", - "libelleAcheminement": "ST CREAC", - "nomCommune": "ST CREAC" + "codePostal": "40240", + "codeCommune": "40140", + "libelleAcheminement": "LAGRANGE", + "nomCommune": "LAGRANGE" }, { - "codePostal": "58140", - "codeCommune": "58166", - "libelleAcheminement": "MHERE", - "nomCommune": "MHERE" + "codePostal": "29270", + "codeCommune": "29024", + "libelleAcheminement": "CARHAIX PLOUGUER", + "nomCommune": "CARHAIX PLOUGUER" }, { - "codePostal": "03510", - "codeCommune": "03063", - "libelleAcheminement": "CHASSENARD", - "nomCommune": "CHASSENARD" + "codePostal": "20250", + "codeCommune": "2B289", + "libelleAcheminement": "SOVERIA", + "nomCommune": "SOVERIA" }, { - "codePostal": "64110", - "codeCommune": "64550", - "libelleAcheminement": "UZOS", - "nomCommune": "UZOS" + "codePostal": "40700", + "codeCommune": "40298", + "libelleAcheminement": "SERRES GASTON", + "nomCommune": "SERRES GASTON" }, { - "codePostal": "32170", - "codeCommune": "32373", - "libelleAcheminement": "STE DODE", - "nomCommune": "STE DODE" + "codePostal": "40250", + "codeCommune": "40141", + "libelleAcheminement": "LAHOSSE", + "nomCommune": "LAHOSSE" }, { - "codePostal": "58250", - "codeCommune": "58173", - "libelleAcheminement": "MONTARON", - "nomCommune": "MONTARON" + "codePostal": "29150", + "codeCommune": "29026", + "libelleAcheminement": "CHATEAULIN", + "nomCommune": "CHATEAULIN" }, { - "codePostal": "03250", - "codeCommune": "03066", - "libelleAcheminement": "CHATEL MONTAGNE", - "nomCommune": "CHATEL MONTAGNE" + "codePostal": "20226", + "codeCommune": "2B290", + "libelleAcheminement": "SPELONCATO", + "nomCommune": "SPELONCATO" }, { - "codePostal": "64400", - "codeCommune": "64551", - "libelleAcheminement": "VERDETS", - "nomCommune": "VERDETS" + "codePostal": "40300", + "codeCommune": "40306", + "libelleAcheminement": "SORDE L ABBAYE", + "nomCommune": "SORDE L ABBAYE" }, { - "codePostal": "32110", - "codeCommune": "32380", - "libelleAcheminement": "ST GRIEDE", - "nomCommune": "ST GRIEDE" + "codePostal": "40250", + "codeCommune": "40147", + "libelleAcheminement": "LAUREDE", + "nomCommune": "LAUREDE" }, { - "codePostal": "58110", - "codeCommune": "58175", - "libelleAcheminement": "MONT ET MARRE", - "nomCommune": "MONT ET MARRE" + "codePostal": "29233", + "codeCommune": "29030", + "libelleAcheminement": "CLEDER", + "nomCommune": "CLEDER" }, { - "codePostal": "03210", - "codeCommune": "03069", - "libelleAcheminement": "CHATILLON", - "nomCommune": "CHATILLON" + "codePostal": "20221", + "codeCommune": "2B293", + "libelleAcheminement": "SANT ANDREA DI COTONE", + "nomCommune": "SANT ANDREA DI COTONE" }, { - "codePostal": "64170", - "codeCommune": "64554", - "libelleAcheminement": "VIELLENAVE D ARTHEZ", - "nomCommune": "VIELLENAVE D ARTHEZ" + "codePostal": "40430", + "codeCommune": "40307", + "libelleAcheminement": "SORE", + "nomCommune": "SORE" }, { - "codePostal": "32190", - "codeCommune": "32382", - "libelleAcheminement": "ST JEAN POUTGE", - "nomCommune": "ST JEAN POUTGE" + "codePostal": "40120", + "codeCommune": "40149", + "libelleAcheminement": "LENCOUACQ", + "nomCommune": "LENCOUACQ" }, { - "codePostal": "58340", - "codeCommune": "58178", - "libelleAcheminement": "MONTIGNY SUR CANNE", - "nomCommune": "MONTIGNY SUR CANNE" + "codePostal": "29950", + "codeCommune": "29032", + "libelleAcheminement": "CLOHARS FOUESNANT", + "nomCommune": "CLOHARS FOUESNANT" }, { - "codePostal": "03230", - "codeCommune": "03074", - "libelleAcheminement": "CHEVAGNES", - "nomCommune": "CHEVAGNES" + "codePostal": "20220", + "codeCommune": "2B296", + "libelleAcheminement": "SANT ANTONINO", + "nomCommune": "SANT ANTONINO" }, { - "codePostal": "65390", - "codeCommune": "65007", - "libelleAcheminement": "ANDREST", - "nomCommune": "ANDREST" + "codePostal": "40250", + "codeCommune": "40309", + "libelleAcheminement": "SOUPROSSE", + "nomCommune": "SOUPROSSE" }, { - "codePostal": "32360", - "codeCommune": "32384", - "libelleAcheminement": "ST LARY", - "nomCommune": "ST LARY" + "codePostal": "40260", + "codeCommune": "40152", + "libelleAcheminement": "LESPERON", + "nomCommune": "LESPERON" }, { - "codePostal": "58290", - "codeCommune": "58182", - "libelleAcheminement": "MOULINS ENGILBERT", - "nomCommune": "MOULINS ENGILBERT" + "codePostal": "29870", + "codeCommune": "29035", + "libelleAcheminement": "COAT MEAL", + "nomCommune": "COAT MEAL" }, { - "codePostal": "03230", - "codeCommune": "03076", - "libelleAcheminement": "CHEZY", - "nomCommune": "CHEZY" + "codePostal": "20244", + "codeCommune": "2B304", + "libelleAcheminement": "SAN LORENZO", + "nomCommune": "SAN LORENZO" }, { - "codePostal": "65100", - "codeCommune": "65011", - "libelleAcheminement": "LES ANGLES", - "nomCommune": "LES ANGLES" + "codePostal": "40400", + "codeCommune": "40313", + "libelleAcheminement": "TARTAS", + "nomCommune": "TARTAS" }, { - "codePostal": "32450", - "codeCommune": "32428", - "libelleAcheminement": "SEMEZIES CACHAN", - "nomCommune": "SEMEZIES CACHAN" + "codePostal": "40250", + "codeCommune": "40153", + "libelleAcheminement": "LE LEUY", + "nomCommune": "LE LEUY" }, { - "codePostal": "58190", - "codeCommune": "58190", - "libelleAcheminement": "NEUFFONTAINES", - "nomCommune": "NEUFFONTAINES" + "codePostal": "29160", + "codeCommune": "29042", + "libelleAcheminement": "CROZON", + "nomCommune": "CROZON" }, { - "codePostal": "03240", - "codeCommune": "03092", - "libelleAcheminement": "CRESSANGES", - "nomCommune": "CRESSANGES" + "codePostal": "20230", + "codeCommune": "2B307", + "libelleAcheminement": "SANTA LUCIA DI MORIANI", + "nomCommune": "SANTA LUCIA DI MORIANI" }, { - "codePostal": "65200", - "codeCommune": "65016", - "libelleAcheminement": "ANTIST", - "nomCommune": "ANTIST" + "codePostal": "40320", + "codeCommune": "40321", + "libelleAcheminement": "URGONS", + "nomCommune": "URGONS" }, { - "codePostal": "32130", - "codeCommune": "32432", - "libelleAcheminement": "SEYSSES SAVES", - "nomCommune": "SEYSSES SAVES" + "codePostal": "40410", + "codeCommune": "40156", + "libelleAcheminement": "LIPOSTHEY", + "nomCommune": "LIPOSTHEY" }, { - "codePostal": "58000", - "codeCommune": "58194", - "libelleAcheminement": "NEVERS", - "nomCommune": "NEVERS" + "codePostal": "29800", + "codeCommune": "29056", + "libelleAcheminement": "LA FOREST LANDERNEAU", + "nomCommune": "LA FOREST LANDERNEAU" }, { - "codePostal": "03140", - "codeCommune": "03096", - "libelleAcheminement": "DENEUILLE LES CHANTELLE", - "nomCommune": "DENEUILLE LES CHANTELLE" + "codePostal": "20200", + "codeCommune": "2B309", + "libelleAcheminement": "SANTA MARIA DI LOTA", + "nomCommune": "SANTA MARIA DI LOTA" }, { - "codePostal": "65360", - "codeCommune": "65019", - "libelleAcheminement": "ARCIZAC ADOUR", - "nomCommune": "ARCIZAC ADOUR" + "codePostal": "40420", + "codeCommune": "40323", + "libelleAcheminement": "VERT", + "nomCommune": "VERT" }, { - "codePostal": "32110", - "codeCommune": "32434", - "libelleAcheminement": "SION", - "nomCommune": "SION" + "codePostal": "40250", + "codeCommune": "40160", + "libelleAcheminement": "LOURQUEN", + "nomCommune": "LOURQUEN" }, { - "codePostal": "58250", - "codeCommune": "58195", - "libelleAcheminement": "LA NOCLE MAULAIX", - "nomCommune": "LA NOCLE MAULAIX" + "codePostal": "29170", + "codeCommune": "29058", + "libelleAcheminement": "FOUESNANT", + "nomCommune": "FOUESNANT" }, { - "codePostal": "03310", - "codeCommune": "03106", - "libelleAcheminement": "DURDAT LAREQUILLE", - "nomCommune": "DURDAT LAREQUILLE" + "codePostal": "20221", + "codeCommune": "2B311", + "libelleAcheminement": "SANTA MARIA POGGIO", + "nomCommune": "SANTA MARIA POGGIO" }, { - "codePostal": "65400", - "codeCommune": "65021", - "libelleAcheminement": "ARCIZANS AVANT", - "nomCommune": "ARCIZANS AVANT" + "codePostal": "40380", + "codeCommune": "40324", + "libelleAcheminement": "VICQ D AURIBAT", + "nomCommune": "VICQ D AURIBAT" }, { - "codePostal": "32430", - "codeCommune": "32435", - "libelleAcheminement": "SIRAC", - "nomCommune": "SIRAC" + "codePostal": "40630", + "codeCommune": "40165", + "libelleAcheminement": "LUGLON", + "nomCommune": "LUGLON" }, { - "codePostal": "58210", - "codeCommune": "58201", - "libelleAcheminement": "OUDAN", - "nomCommune": "OUDAN" + "codePostal": "29190", + "codeCommune": "29062", + "libelleAcheminement": "GOUEZEC", + "nomCommune": "GOUEZEC" }, { - "codePostal": "03800", - "codeCommune": "03118", - "libelleAcheminement": "GANNAT", - "nomCommune": "GANNAT" + "codePostal": "20230", + "codeCommune": "2B313", + "libelleAcheminement": "SAN NICOLAO", + "nomCommune": "SAN NICOLAO" }, { - "codePostal": "65240", - "codeCommune": "65023", - "libelleAcheminement": "ARDENGOST", - "nomCommune": "ARDENGOST" + "codePostal": "40560", + "codeCommune": "40326", + "libelleAcheminement": "VIELLE ST GIRONS", + "nomCommune": "VIELLE ST GIRONS" }, { - "codePostal": "32190", - "codeCommune": "32456", - "libelleAcheminement": "TUDELLE", - "nomCommune": "TUDELLE" + "codePostal": "40140", + "codeCommune": "40168", + "libelleAcheminement": "MAGESCQ", + "nomCommune": "MAGESCQ" }, { - "codePostal": "58700", - "codeCommune": "58203", - "libelleAcheminement": "OULON", - "nomCommune": "OULON" + "codePostal": "29820", + "codeCommune": "29069", + "libelleAcheminement": "GUILERS", + "nomCommune": "GUILERS" }, { - "codePostal": "03270", - "codeCommune": "03126", - "libelleAcheminement": "HAUTERIVE", - "nomCommune": "HAUTERIVE" + "codePostal": "20217", + "codeCommune": "2B314", + "libelleAcheminement": "SANTO PIETRO DI TENDA", + "nomCommune": "SANTO PIETRO DI TENDA" }, { - "codePostal": "65230", - "codeCommune": "65026", - "libelleAcheminement": "ARIES ESPENAN", - "nomCommune": "ARIES ESPENAN" + "codePostal": "40480", + "codeCommune": "40328", + "libelleAcheminement": "VIEUX BOUCAU LES BAINS", + "nomCommune": "VIEUX BOUCAU LES BAINS" }, { - "codePostal": "32400", - "codeCommune": "32461", - "libelleAcheminement": "VERLUS", - "nomCommune": "VERLUS" + "codePostal": "40120", + "codeCommune": "40169", + "libelleAcheminement": "MAILLAS", + "nomCommune": "MAILLAS" }, { - "codePostal": "58130", - "codeCommune": "58204", - "libelleAcheminement": "VAUX D AMOGNES", - "nomCommune": "VAUX D AMOGNES" + "codePostal": "29880", + "codeCommune": "29077", + "libelleAcheminement": "GUISSENY", + "nomCommune": "GUISSENY" }, { - "codePostal": "03360", - "codeCommune": "03130", - "libelleAcheminement": "ISLE ET BARDAIS", - "nomCommune": "ISLE ET BARDAIS" + "codePostal": "20220", + "codeCommune": "2B316", + "libelleAcheminement": "SANTA REPARATA DI BALAGNA", + "nomCommune": "SANTA REPARATA DI BALAGNA" }, { - "codePostal": "65100", - "codeCommune": "65033", - "libelleAcheminement": "ARRODETS EZ ANGLES", - "nomCommune": "ARRODETS EZ ANGLES" + "codePostal": "40110", + "codeCommune": "40330", + "libelleAcheminement": "VILLENAVE", + "nomCommune": "VILLENAVE" }, { - "codePostal": "33124", - "codeCommune": "33002", - "libelleAcheminement": "AILLAS", - "nomCommune": "AILLAS" + "codePostal": "40250", + "codeCommune": "40177", + "libelleAcheminement": "MAYLIS", + "nomCommune": "MAYLIS" }, { - "codePostal": "58800", - "codeCommune": "58208", - "libelleAcheminement": "PAZY", - "nomCommune": "PAZY" + "codePostal": "29990", + "codeCommune": "29083", + "libelleAcheminement": "ILE DE SEIN", + "nomCommune": "ILE DE SEIN" }, { - "codePostal": "03130", - "codeCommune": "03144", - "libelleAcheminement": "LIERNOLLES", - "nomCommune": "LIERNOLLES" + "codePostal": "20230", + "codeCommune": "2B319", + "libelleAcheminement": "TALASANI", + "nomCommune": "TALASANI" }, { - "codePostal": "65400", - "codeCommune": "65036", - "libelleAcheminement": "ARTALENS SOUIN", - "nomCommune": "ARTALENS SOUIN" + "codePostal": "40110", + "codeCommune": "40333", + "libelleAcheminement": "YGOS ST SATURNIN", + "nomCommune": "YGOS ST SATURNIN" }, { - "codePostal": "33510", - "codeCommune": "33005", - "libelleAcheminement": "ANDERNOS LES BAINS", - "nomCommune": "ANDERNOS LES BAINS" + "codePostal": "40350", + "codeCommune": "40183", + "libelleAcheminement": "MIMBASTE", + "nomCommune": "MIMBASTE" }, { - "codePostal": "58700", - "codeCommune": "58218", - "libelleAcheminement": "PREMERY", - "nomCommune": "PREMERY" + "codePostal": "29400", + "codeCommune": "29097", + "libelleAcheminement": "LAMPAUL GUIMILIAU", + "nomCommune": "LAMPAUL GUIMILIAU" }, { - "codePostal": "03500", - "codeCommune": "03149", - "libelleAcheminement": "LOUCHY MONTFAND", - "nomCommune": "LOUCHY MONTFAND" + "codePostal": "20248", + "codeCommune": "2B327", + "libelleAcheminement": "TOMINO", + "nomCommune": "TOMINO" }, { - "codePostal": "65130", - "codeCommune": "65041", - "libelleAcheminement": "ASQUE", - "nomCommune": "ASQUE" + "codePostal": "40180", + "codeCommune": "40334", + "libelleAcheminement": "YZOSSE", + "nomCommune": "YZOSSE" }, { - "codePostal": "33460", - "codeCommune": "33010", - "libelleAcheminement": "ARCINS", - "nomCommune": "ARCINS" + "codePostal": "40660", + "codeCommune": "40187", + "libelleAcheminement": "MOLIETS ET MAA", + "nomCommune": "MOLIETS ET MAA" }, { - "codePostal": "58190", - "codeCommune": "58230", - "libelleAcheminement": "ST AUBIN DES CHAUMES", - "nomCommune": "ST AUBIN DES CHAUMES" + "codePostal": "29870", + "codeCommune": "29101", + "libelleAcheminement": "LANDEDA", + "nomCommune": "LANDEDA" }, { - "codePostal": "03320", - "codeCommune": "03155", - "libelleAcheminement": "LURCY LEVIS", - "nomCommune": "LURCY LEVIS" + "codePostal": "20221", + "codeCommune": "2B335", + "libelleAcheminement": "VALLE DI CAMPOLORO", + "nomCommune": "VALLE DI CAMPOLORO" }, { - "codePostal": "65200", - "codeCommune": "65043", - "libelleAcheminement": "ASTUGUE", - "nomCommune": "ASTUGUE" + "codePostal": "41000", + "codeCommune": "41018", + "libelleAcheminement": "BLOIS", + "nomCommune": "BLOIS" }, { - "codePostal": "33240", - "codeCommune": "33018", - "libelleAcheminement": "VAL DE VIRVEE", - "nomCommune": "VAL DE VIRVEE" + "codePostal": "40410", + "codeCommune": "40200", + "libelleAcheminement": "MOUSTEY", + "nomCommune": "MOUSTEY" }, { - "codePostal": "58270", - "codeCommune": "58232", - "libelleAcheminement": "ST BENIN D AZY", - "nomCommune": "ST BENIN D AZY" + "codePostal": "29530", + "codeCommune": "29102", + "libelleAcheminement": "LANDELEAU", + "nomCommune": "LANDELEAU" }, { - "codePostal": "03260", - "codeCommune": "03157", - "libelleAcheminement": "MAGNET", - "nomCommune": "MAGNET" + "codePostal": "20215", + "codeCommune": "2B346", + "libelleAcheminement": "VESCOVATO", + "nomCommune": "VESCOVATO" }, { - "codePostal": "65390", - "codeCommune": "65048", - "libelleAcheminement": "AURENSAN", - "nomCommune": "AURENSAN" + "codePostal": "41250", + "codeCommune": "41025", + "libelleAcheminement": "BRACIEUX", + "nomCommune": "BRACIEUX" }, { - "codePostal": "33124", - "codeCommune": "33021", - "libelleAcheminement": "AUROS", - "nomCommune": "AUROS" + "codePostal": "40250", + "codeCommune": "40204", + "libelleAcheminement": "NERBIS", + "nomCommune": "NERBIS" }, { - "codePostal": "58230", - "codeCommune": "58235", - "libelleAcheminement": "ST BRISSON", - "nomCommune": "ST BRISSON" + "codePostal": "29510", + "codeCommune": "29107", + "libelleAcheminement": "LANDUDAL", + "nomCommune": "LANDUDAL" }, { - "codePostal": "03210", - "codeCommune": "03162", - "libelleAcheminement": "MARIGNY", - "nomCommune": "MARIGNY" + "codePostal": "20290", + "codeCommune": "2B350", + "libelleAcheminement": "VIGNALE", + "nomCommune": "VIGNALE" }, { - "codePostal": "65370", - "codeCommune": "65053", - "libelleAcheminement": "AVEUX", - "nomCommune": "AVEUX" + "codePostal": "41160", + "codeCommune": "41026", + "libelleAcheminement": "BREVAINVILLE", + "nomCommune": "BREVAINVILLE" }, { - "codePostal": "33830", - "codeCommune": "33042", - "libelleAcheminement": "BELIN BELIET", - "nomCommune": "BELIN BELIET" + "codePostal": "40300", + "codeCommune": "40206", + "libelleAcheminement": "OEYREGAVE", + "nomCommune": "OEYREGAVE" }, { - "codePostal": "58220", - "codeCommune": "58236", - "libelleAcheminement": "STE COLOMBE DES BOIS", - "nomCommune": "STE COLOMBE DES BOIS" + "codePostal": "29160", + "codeCommune": "29120", + "libelleAcheminement": "LANVEOC", + "nomCommune": "LANVEOC" }, { - "codePostal": "03360", - "codeCommune": "03168", - "libelleAcheminement": "MEAULNE VITRAY", - "nomCommune": "MEAULNE VITRAY" + "codePostal": "20214", + "codeCommune": "2B361", + "libelleAcheminement": "ZILIA", + "nomCommune": "ZILIA" }, { - "codePostal": "65170", - "codeCommune": "65058", - "libelleAcheminement": "AZET", - "nomCommune": "AZET" + "codePostal": "41160", + "codeCommune": "41028", + "libelleAcheminement": "BUSLOUP", + "nomCommune": "BUSLOUP" }, { - "codePostal": "33830", - "codeCommune": "33042", - "libelleAcheminement": "BELIN BELIET", - "nomCommune": "BELIN BELIET" + "codePostal": "40440", + "codeCommune": "40209", + "libelleAcheminement": "ONDRES", + "nomCommune": "ONDRES" }, { - "codePostal": "58270", - "codeCommune": "58239", - "libelleAcheminement": "ST FIRMIN", - "nomCommune": "ST FIRMIN" + "codePostal": "29190", + "codeCommune": "29123", + "libelleAcheminement": "LENNON", + "nomCommune": "LENNON" }, { - "codePostal": "03510", - "codeCommune": "03173", - "libelleAcheminement": "MOLINET", - "nomCommune": "MOLINET" + "codePostal": "30700", + "codeCommune": "30001", + "libelleAcheminement": "AIGALIERS", + "nomCommune": "AIGALIERS" }, { - "codePostal": "65140", - "codeCommune": "65061", - "libelleAcheminement": "BARBACHEN", - "nomCommune": "BARBACHEN" + "codePostal": "41120", + "codeCommune": "41031", + "libelleAcheminement": "CELLETTES", + "nomCommune": "CELLETTES" }, { - "codePostal": "33500", - "codeCommune": "33052", - "libelleAcheminement": "LES BILLAUX", - "nomCommune": "LES BILLAUX" + "codePostal": "40380", + "codeCommune": "40216", + "libelleAcheminement": "OZOURT", + "nomCommune": "OZOURT" }, { - "codePostal": "58360", - "codeCommune": "58246", - "libelleAcheminement": "ST HONORE LES BAINS", - "nomCommune": "ST HONORE LES BAINS" + "codePostal": "29530", + "codeCommune": "29141", + "libelleAcheminement": "LOQUEFFRET", + "nomCommune": "LOQUEFFRET" }, { - "codePostal": "03470", - "codeCommune": "03177", - "libelleAcheminement": "MONETAY SUR LOIRE", - "nomCommune": "MONETAY SUR LOIRE" + "codePostal": "30770", + "codeCommune": "30009", + "libelleAcheminement": "ALZON", + "nomCommune": "ALZON" }, { - "codePostal": "65100", - "codeCommune": "65065", - "libelleAcheminement": "BARLEST", - "nomCommune": "BARLEST" + "codePostal": "41320", + "codeCommune": "41038", + "libelleAcheminement": "LA CHAPELLE MONTMARTIN", + "nomCommune": "LA CHAPELLE MONTMARTIN" }, { - "codePostal": "33390", - "codeCommune": "33058", - "libelleAcheminement": "BLAYE", - "nomCommune": "BLAYE" + "codePostal": "40160", + "codeCommune": "40217", + "libelleAcheminement": "PARENTIS EN BORN", + "nomCommune": "PARENTIS EN BORN" }, { - "codePostal": "58130", - "codeCommune": "58254", - "libelleAcheminement": "ST MARTIN D HEUILLE", - "nomCommune": "ST MARTIN D HEUILLE" + "codePostal": "29790", + "codeCommune": "29143", + "libelleAcheminement": "MAHALON", + "nomCommune": "MAHALON" }, { - "codePostal": "03130", - "codeCommune": "03178", - "libelleAcheminement": "MONTAIGUET EN FOREZ", - "nomCommune": "MONTAIGUET EN FOREZ" + "codePostal": "30133", + "codeCommune": "30011", + "libelleAcheminement": "LES ANGLES", + "nomCommune": "LES ANGLES" }, { - "codePostal": "65130", - "codeCommune": "65071", - "libelleAcheminement": "BATSERE", - "nomCommune": "BATSERE" + "codePostal": "41320", + "codeCommune": "41044", + "libelleAcheminement": "CHATRES SUR CHER", + "nomCommune": "CHATRES SUR CHER" }, { - "codePostal": "33670", - "codeCommune": "33059", - "libelleAcheminement": "BLESIGNAC", - "nomCommune": "BLESIGNAC" + "codePostal": "40190", + "codeCommune": "40221", + "libelleAcheminement": "PERQUIE", + "nomCommune": "PERQUIE" }, { - "codePostal": "58300", - "codeCommune": "58259", - "libelleAcheminement": "ST PARIZE EN VIRY", - "nomCommune": "ST PARIZE EN VIRY" + "codePostal": "29350", + "codeCommune": "29150", + "libelleAcheminement": "MOELAN SUR MER", + "nomCommune": "MOELAN SUR MER" }, { - "codePostal": "03100", - "codeCommune": "03185", - "libelleAcheminement": "MONTLUCON", - "nomCommune": "MONTLUCON" + "codePostal": "30210", + "codeCommune": "30013", + "libelleAcheminement": "ARGILLIERS", + "nomCommune": "ARGILLIERS" }, { - "codePostal": "65130", - "codeCommune": "65081", - "libelleAcheminement": "BENQUE MOLERE", - "nomCommune": "BENQUE MOLERE" + "codePostal": "41170", + "codeCommune": "41053", + "libelleAcheminement": "CHOUE", + "nomCommune": "CHOUE" }, { - "codePostal": "33370", - "codeCommune": "33061", - "libelleAcheminement": "BONNETAN", - "nomCommune": "BONNETAN" + "codePostal": "40300", + "codeCommune": "40222", + "libelleAcheminement": "PEY", + "nomCommune": "PEY" }, { - "codePostal": "58270", - "codeCommune": "58269", - "libelleAcheminement": "ST SULPICE", - "nomCommune": "ST SULPICE" + "codePostal": "29270", + "codeCommune": "29152", + "libelleAcheminement": "MOTREFF", + "nomCommune": "MOTREFF" }, { - "codePostal": "03390", - "codeCommune": "03191", - "libelleAcheminement": "MURAT", - "nomCommune": "MURAT" + "codePostal": "30770", + "codeCommune": "30025", + "libelleAcheminement": "AUMESSAS", + "nomCommune": "AUMESSAS" }, { - "codePostal": "65230", - "codeCommune": "65088", - "libelleAcheminement": "BETBEZE", - "nomCommune": "BETBEZE" + "codePostal": "41150", + "codeCommune": "41055", + "libelleAcheminement": "VALLOIRE SUR CISSE", + "nomCommune": "VALLOIRE SUR CISSE" }, { - "codePostal": "33000", - "codeCommune": "33063", - "libelleAcheminement": "BORDEAUX", - "nomCommune": "BORDEAUX" + "codePostal": "40200", + "codeCommune": "40229", + "libelleAcheminement": "PONTENX LES FORGES", + "nomCommune": "PONTENX LES FORGES" }, { - "codePostal": "58310", - "codeCommune": "58270", - "libelleAcheminement": "ST VERAIN", - "nomCommune": "ST VERAIN" + "codePostal": "29920", + "codeCommune": "29153", + "libelleAcheminement": "NEVEZ", + "nomCommune": "NEVEZ" }, { - "codePostal": "03000", - "codeCommune": "03200", - "libelleAcheminement": "NEUVY", - "nomCommune": "NEUVY" + "codePostal": "30140", + "codeCommune": "30027", + "libelleAcheminement": "BAGARD", + "nomCommune": "BAGARD" }, { - "codePostal": "65330", - "codeCommune": "65097", - "libelleAcheminement": "BONREPOS", - "nomCommune": "BONREPOS" + "codePostal": "41120", + "codeCommune": "41059", + "libelleAcheminement": "LE CONTROIS EN SOLOGNE", + "nomCommune": "LE CONTROIS EN SOLOGNE" }, { - "codePostal": "33190", - "codeCommune": "33066", - "libelleAcheminement": "BOURDELLES", - "nomCommune": "BOURDELLES" + "codePostal": "40120", + "codeCommune": "40234", + "libelleAcheminement": "POUYDESSEAUX", + "nomCommune": "POUYDESSEAUX" }, { - "codePostal": "58330", - "codeCommune": "58275", - "libelleAcheminement": "SAXI BOURDON", - "nomCommune": "SAXI BOURDON" + "codePostal": "29190", + "codeCommune": "29162", + "libelleAcheminement": "PLEYBEN", + "nomCommune": "PLEYBEN" }, { - "codePostal": "03230", - "codeCommune": "03203", - "libelleAcheminement": "PARAY LE FRESIL", - "nomCommune": "PARAY LE FRESIL" + "codePostal": "30300", + "codeCommune": "30032", + "libelleAcheminement": "BEAUCAIRE", + "nomCommune": "BEAUCAIRE" }, { - "codePostal": "65130", - "codeCommune": "65105", - "libelleAcheminement": "BOURG DE BIGORRE", - "nomCommune": "BOURG DE BIGORRE" + "codePostal": "41100", + "codeCommune": "41065", + "libelleAcheminement": "COULOMMIERS LA TOUR", + "nomCommune": "COULOMMIERS LA TOUR" }, { - "codePostal": "33750", - "codeCommune": "33079", - "libelleAcheminement": "CADARSAC", - "nomCommune": "CADARSAC" + "codePostal": "40370", + "codeCommune": "40243", + "libelleAcheminement": "RION DES LANDES", + "nomCommune": "RION DES LANDES" }, { - "codePostal": "58290", - "codeCommune": "58277", - "libelleAcheminement": "SERMAGES", - "nomCommune": "SERMAGES" + "codePostal": "29770", + "codeCommune": "29168", + "libelleAcheminement": "PLOGOFF", + "nomCommune": "PLOGOFF" }, { - "codePostal": "03500", - "codeCommune": "03204", - "libelleAcheminement": "PARAY SOUS BRIAILLES", - "nomCommune": "PARAY SOUS BRIAILLES" + "codePostal": "30700", + "codeCommune": "30041", + "libelleAcheminement": "BLAUZAC", + "nomCommune": "BLAUZAC" }, { - "codePostal": "65370", - "codeCommune": "65109", - "libelleAcheminement": "BRAMEVAQUE", - "nomCommune": "BRAMEVAQUE" + "codePostal": "41220", + "codeCommune": "41085", + "libelleAcheminement": "LA FERTE ST CYR", + "nomCommune": "LA FERTE ST CYR" }, { - "codePostal": "33240", - "codeCommune": "33082", - "libelleAcheminement": "CADILLAC EN FRONSADAIS", - "nomCommune": "CADILLAC EN FRONSADAIS" + "codePostal": "40370", + "codeCommune": "40243", + "libelleAcheminement": "RION DES LANDES", + "nomCommune": "RION DES LANDES" }, { - "codePostal": "58700", - "codeCommune": "58279", - "libelleAcheminement": "SICHAMPS", - "nomCommune": "SICHAMPS" + "codePostal": "29830", + "codeCommune": "29178", + "libelleAcheminement": "PLOUDALMEZEAU", + "nomCommune": "PLOUDALMEZEAU" }, { - "codePostal": "03470", - "codeCommune": "03207", - "libelleAcheminement": "PIERREFITTE SUR LOIRE", - "nomCommune": "PIERREFITTE SUR LOIRE" + "codePostal": "30140", + "codeCommune": "30042", + "libelleAcheminement": "BOISSET ET GAUJAC", + "nomCommune": "BOISSET ET GAUJAC" }, { - "codePostal": "65190", - "codeCommune": "65113", - "libelleAcheminement": "BURG", - "nomCommune": "BURG" + "codePostal": "41270", + "codeCommune": "41088", + "libelleAcheminement": "FONTAINE RAOUL", + "nomCommune": "FONTAINE RAOUL" }, { - "codePostal": "33750", - "codeCommune": "33083", - "libelleAcheminement": "CAMARSAC", - "nomCommune": "CAMARSAC" + "codePostal": "40120", + "codeCommune": "40245", + "libelleAcheminement": "ROQUEFORT", + "nomCommune": "ROQUEFORT" }, { - "codePostal": "58300", - "codeCommune": "58280", - "libelleAcheminement": "SOUGY SUR LOIRE", - "nomCommune": "SOUGY SUR LOIRE" + "codePostal": "29800", + "codeCommune": "29181", + "libelleAcheminement": "PLOUEDERN", + "nomCommune": "PLOUEDERN" }, { - "codePostal": "03800", - "codeCommune": "03209", - "libelleAcheminement": "POEZAT", - "nomCommune": "POEZAT" + "codePostal": "30190", + "codeCommune": "30049", + "libelleAcheminement": "BOURDIC", + "nomCommune": "BOURDIC" }, { - "codePostal": "65350", - "codeCommune": "65115", - "libelleAcheminement": "CABANAC", - "nomCommune": "CABANAC" + "codePostal": "41230", + "codeCommune": "41099", + "libelleAcheminement": "GY EN SOLOGNE", + "nomCommune": "GY EN SOLOGNE" }, { - "codePostal": "33360", - "codeCommune": "33085", - "libelleAcheminement": "CAMBLANES ET MEYNAC", - "nomCommune": "CAMBLANES ET MEYNAC" + "codePostal": "40800", + "codeCommune": "40247", + "libelleAcheminement": "ST AGNET", + "nomCommune": "ST AGNET" }, { - "codePostal": "58420", - "codeCommune": "58283", - "libelleAcheminement": "TACONNAY", - "nomCommune": "TACONNAY" + "codePostal": "29252", + "codeCommune": "29186", + "libelleAcheminement": "PLOUEZOC H", + "nomCommune": "PLOUEZOC H" }, { - "codePostal": "03410", - "codeCommune": "03211", - "libelleAcheminement": "PREMILHAT", - "nomCommune": "PREMILHAT" + "codePostal": "30110", + "codeCommune": "30051", + "libelleAcheminement": "BRANOUX LES TAILLADES", + "nomCommune": "BRANOUX LES TAILLADES" }, { - "codePostal": "65710", - "codeCommune": "65123", - "libelleAcheminement": "CAMPAN", - "nomCommune": "CAMPAN" + "codePostal": "41230", + "codeCommune": "41112", + "libelleAcheminement": "LASSAY SUR CROISNE", + "nomCommune": "LASSAY SUR CROISNE" }, { - "codePostal": "33840", - "codeCommune": "33095", - "libelleAcheminement": "CAPTIEUX", - "nomCommune": "CAPTIEUX" + "codePostal": "40390", + "codeCommune": "40248", + "libelleAcheminement": "ST ANDRE DE SEIGNANX", + "nomCommune": "ST ANDRE DE SEIGNANX" }, { - "codePostal": "58110", - "codeCommune": "58285", - "libelleAcheminement": "TAMNAY EN BAZOIS", - "nomCommune": "TAMNAY EN BAZOIS" + "codePostal": "29260", + "codeCommune": "29198", + "libelleAcheminement": "PLOUIDER", + "nomCommune": "PLOUIDER" }, { - "codePostal": "03420", - "codeCommune": "03216", - "libelleAcheminement": "RONNET", - "nomCommune": "RONNET" + "codePostal": "30580", + "codeCommune": "30055", + "libelleAcheminement": "BROUZET LES ALES", + "nomCommune": "BROUZET LES ALES" }, { - "codePostal": "65710", - "codeCommune": "65123", - "libelleAcheminement": "CAMPAN", - "nomCommune": "CAMPAN" + "codePostal": "41360", + "codeCommune": "41120", + "libelleAcheminement": "LUNAY", + "nomCommune": "LUNAY" }, { - "codePostal": "33121", - "codeCommune": "33097", - "libelleAcheminement": "CARCANS", - "nomCommune": "CARCANS" + "codePostal": "40390", + "codeCommune": "40251", + "libelleAcheminement": "ST BARTHELEMY", + "nomCommune": "ST BARTHELEMY" }, { - "codePostal": "58110", - "codeCommune": "58292", - "libelleAcheminement": "TINTURY", - "nomCommune": "TINTURY" + "codePostal": "29650", + "codeCommune": "29199", + "libelleAcheminement": "PLOUIGNEAU", + "nomCommune": "PLOUIGNEAU" }, { - "codePostal": "03170", - "codeCommune": "03217", - "libelleAcheminement": "ST ANGEL", - "nomCommune": "ST ANGEL" + "codePostal": "30210", + "codeCommune": "30057", + "libelleAcheminement": "CABRIERES", + "nomCommune": "CABRIERES" }, { - "codePostal": "65230", - "codeCommune": "65134", - "libelleAcheminement": "CASTERETS", - "nomCommune": "CASTERETS" + "codePostal": "41100", + "codeCommune": "41124", + "libelleAcheminement": "MARCILLY EN BEAUCE", + "nomCommune": "MARCILLY EN BEAUCE" }, { - "codePostal": "33360", - "codeCommune": "33099", - "libelleAcheminement": "CARIGNAN DE BORDEAUX", - "nomCommune": "CARIGNAN DE BORDEAUX" + "codePostal": "40380", + "codeCommune": "40260", + "libelleAcheminement": "ST GEOURS D AURIBAT", + "nomCommune": "ST GEOURS D AURIBAT" }, { - "codePostal": "58300", - "codeCommune": "58293", - "libelleAcheminement": "TOURY LURCY", - "nomCommune": "TOURY LURCY" + "codePostal": "29410", + "codeCommune": "29202", + "libelleAcheminement": "PLOUNEOUR MENEZ", + "nomCommune": "PLOUNEOUR MENEZ" }, { - "codePostal": "03360", - "codeCommune": "03221", - "libelleAcheminement": "ST BONNET TRONCAIS", - "nomCommune": "ST BONNET TRONCAIS" + "codePostal": "30740", + "codeCommune": "30059", + "libelleAcheminement": "LE CAILAR", + "nomCommune": "LE CAILAR" }, { - "codePostal": "65130", - "codeCommune": "65135", - "libelleAcheminement": "CASTILLON", - "nomCommune": "CASTILLON" + "codePostal": "41330", + "codeCommune": "41128", + "libelleAcheminement": "MAROLLES", + "nomCommune": "MAROLLES" }, { - "codePostal": "33540", - "codeCommune": "33105", - "libelleAcheminement": "CASTELVIEL", - "nomCommune": "CASTELVIEL" + "codePostal": "40230", + "codeCommune": "40261", + "libelleAcheminement": "ST GEOURS DE MAREMNE", + "nomCommune": "ST GEOURS DE MAREMNE" }, { - "codePostal": "58260", - "codeCommune": "58297", - "libelleAcheminement": "TROIS VEVRES", - "nomCommune": "TROIS VEVRES" + "codePostal": "29830", + "codeCommune": "29208", + "libelleAcheminement": "PLOURIN", + "nomCommune": "PLOURIN" }, { - "codePostal": "03260", - "codeCommune": "03232", - "libelleAcheminement": "ST FELIX", - "nomCommune": "ST FELIX" + "codePostal": "30132", + "codeCommune": "30060", + "libelleAcheminement": "CAISSARGUES", + "nomCommune": "CAISSARGUES" }, { - "codePostal": "65370", - "codeCommune": "65139", - "libelleAcheminement": "CAZARILH", - "nomCommune": "CAZARILH" + "codePostal": "41500", + "codeCommune": "41134", + "libelleAcheminement": "MENARS", + "nomCommune": "MENARS" }, { - "codePostal": "33350", - "codeCommune": "33108", - "libelleAcheminement": "CASTILLON LA BATAILLE", - "nomCommune": "CASTILLON LA BATAILLE" + "codePostal": "40240", + "codeCommune": "40265", + "libelleAcheminement": "ST JULIEN D ARMAGNAC", + "nomCommune": "ST JULIEN D ARMAGNAC" }, { - "codePostal": "58460", - "codeCommune": "58299", - "libelleAcheminement": "TRUCY L ORGUEILLEUX", - "nomCommune": "TRUCY L ORGUEILLEUX" + "codePostal": "29120", + "codeCommune": "29220", + "libelleAcheminement": "PONT L ABBE", + "nomCommune": "PONT L ABBE" }, { - "codePostal": "03260", - "codeCommune": "03236", - "libelleAcheminement": "ST GERMAIN DES FOSSES", - "nomCommune": "ST GERMAIN DES FOSSES" + "codePostal": "30350", + "codeCommune": "30065", + "libelleAcheminement": "CANAULES ET ARGENTIERES", + "nomCommune": "CANAULES ET ARGENTIERES" }, { - "codePostal": "65240", - "codeCommune": "65141", - "libelleAcheminement": "CAZAUX FRECHET ANERAN CAMORS", - "nomCommune": "CAZAUX FRECHET ANERAN CAMORS" + "codePostal": "41320", + "codeCommune": "41135", + "libelleAcheminement": "MENNETOU SUR CHER", + "nomCommune": "MENNETOU SUR CHER" }, { - "codePostal": "33540", - "codeCommune": "33112", - "libelleAcheminement": "CAUMONT", - "nomCommune": "CAUMONT" + "codePostal": "40170", + "codeCommune": "40266", + "libelleAcheminement": "ST JULIEN EN BORN", + "nomCommune": "ST JULIEN EN BORN" }, { - "codePostal": "58370", - "codeCommune": "58309", - "libelleAcheminement": "VILLAPOURCON", - "nomCommune": "VILLAPOURCON" + "codePostal": "29840", + "codeCommune": "29221", + "libelleAcheminement": "PORSPODER", + "nomCommune": "PORSPODER" }, { - "codePostal": "03220", - "codeCommune": "03240", - "libelleAcheminement": "ST LEON", - "nomCommune": "ST LEON" + "codePostal": "30260", + "codeCommune": "30066", + "libelleAcheminement": "CANNES ET CLAIRAN", + "nomCommune": "CANNES ET CLAIRAN" }, { - "codePostal": "65240", - "codeCommune": "65141", - "libelleAcheminement": "CAZAUX FRECHET ANERAN CAMORS", - "nomCommune": "CAZAUX FRECHET ANERAN CAMORS" + "codePostal": "41170", + "codeCommune": "41143", + "libelleAcheminement": "MONDOUBLEAU", + "nomCommune": "MONDOUBLEAU" }, { - "codePostal": "33430", - "codeCommune": "33116", - "libelleAcheminement": "CAZATS", - "nomCommune": "CAZATS" + "codePostal": "40390", + "codeCommune": "40273", + "libelleAcheminement": "ST MARTIN DE SEIGNANX", + "nomCommune": "ST MARTIN DE SEIGNANX" }, { - "codePostal": "58210", - "codeCommune": "58310", - "libelleAcheminement": "VILLIERS LE SEC", - "nomCommune": "VILLIERS LE SEC" + "codePostal": "29100", + "codeCommune": "29224", + "libelleAcheminement": "POULDERGAT", + "nomCommune": "POULDERGAT" }, { - "codePostal": "03150", - "codeCommune": "03242", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "30700", + "codeCommune": "30067", + "libelleAcheminement": "LA CAPELLE ET MASMOLENE", + "nomCommune": "LA CAPELLE ET MASMOLENE" }, { - "codePostal": "65190", - "codeCommune": "65149", - "libelleAcheminement": "CLARAC", - "nomCommune": "CLARAC" + "codePostal": "41800", + "codeCommune": "41149", + "libelleAcheminement": "MONTOIRE SUR LE LOIR", + "nomCommune": "MONTOIRE SUR LE LOIR" }, { - "codePostal": "33620", - "codeCommune": "33123", - "libelleAcheminement": "CEZAC", - "nomCommune": "CEZAC" + "codePostal": "40270", + "codeCommune": "40275", + "libelleAcheminement": "ST MAURICE SUR ADOUR", + "nomCommune": "ST MAURICE SUR ADOUR" }, { - "codePostal": "58420", - "codeCommune": "58313", - "libelleAcheminement": "VITRY LACHE", - "nomCommune": "VITRY LACHE" + "codePostal": "29246", + "codeCommune": "29227", + "libelleAcheminement": "POULLAOUEN", + "nomCommune": "POULLAOUEN" }, { - "codePostal": "03420", - "codeCommune": "03244", - "libelleAcheminement": "ST MARCEL EN MARCILLAT", - "nomCommune": "ST MARCEL EN MARCILLAT" + "codePostal": "30190", + "codeCommune": "30072", + "libelleAcheminement": "CASTELNAU VALENCE", + "nomCommune": "CASTELNAU VALENCE" }, { - "codePostal": "65130", - "codeCommune": "65166", - "libelleAcheminement": "ESPECHE", - "nomCommune": "ESPECHE" + "codePostal": "41500", + "codeCommune": "41156", + "libelleAcheminement": "MULSANS", + "nomCommune": "MULSANS" }, { - "codePostal": "33920", - "codeCommune": "33126", - "libelleAcheminement": "CIVRAC DE BLAYE", - "nomCommune": "CIVRAC DE BLAYE" + "codePostal": "40200", + "codeCommune": "40278", + "libelleAcheminement": "ST PAUL EN BORN", + "nomCommune": "ST PAUL EN BORN" }, { - "codePostal": "59268", - "codeCommune": "59001", - "libelleAcheminement": "ABANCOURT", - "nomCommune": "ABANCOURT" + "codePostal": "29770", + "codeCommune": "29228", + "libelleAcheminement": "PRIMELIN", + "nomCommune": "PRIMELIN" }, { - "codePostal": "03250", - "codeCommune": "03248", - "libelleAcheminement": "ST NICOLAS DES BIEFS", - "nomCommune": "ST NICOLAS DES BIEFS" + "codePostal": "30480", + "codeCommune": "30077", + "libelleAcheminement": "CENDRAS", + "nomCommune": "CENDRAS" }, { - "codePostal": "65120", - "codeCommune": "65173", - "libelleAcheminement": "ESTERRE", - "nomCommune": "ESTERRE" + "codePostal": "41100", + "codeCommune": "41158", + "libelleAcheminement": "NAVEIL", + "nomCommune": "NAVEIL" }, { - "codePostal": "33670", - "codeCommune": "33145", - "libelleAcheminement": "CURSAN", - "nomCommune": "CURSAN" + "codePostal": "40990", + "codeCommune": "40279", + "libelleAcheminement": "ST PAUL LES DAX", + "nomCommune": "ST PAUL LES DAX" }, { - "codePostal": "59580", - "codeCommune": "59008", - "libelleAcheminement": "ANICHE", - "nomCommune": "ANICHE" + "codePostal": "29000", + "codeCommune": "29232", + "libelleAcheminement": "QUIMPER", + "nomCommune": "QUIMPER" }, { - "codePostal": "03390", - "codeCommune": "03256", - "libelleAcheminement": "ST PRIEST EN MURAT", - "nomCommune": "ST PRIEST EN MURAT" + "codePostal": "30210", + "codeCommune": "30085", + "libelleAcheminement": "COLLIAS", + "nomCommune": "COLLIAS" }, { - "codePostal": "65240", - "codeCommune": "65180", - "libelleAcheminement": "FRECHET AURE", - "nomCommune": "FRECHET AURE" + "codePostal": "41210", + "codeCommune": "41159", + "libelleAcheminement": "NEUNG SUR BEUVRON", + "nomCommune": "NEUNG SUR BEUVRON" }, { - "codePostal": "33420", - "codeCommune": "33148", - "libelleAcheminement": "DARDENAC", - "nomCommune": "DARDENAC" + "codePostal": "40400", + "codeCommune": "40285", + "libelleAcheminement": "ST YAGUEN", + "nomCommune": "ST YAGUEN" }, { - "codePostal": "59280", - "codeCommune": "59017", - "libelleAcheminement": "ARMENTIERES", - "nomCommune": "ARMENTIERES" + "codePostal": "29300", + "codeCommune": "29234", + "libelleAcheminement": "REDENE", + "nomCommune": "REDENE" }, { - "codePostal": "03120", - "codeCommune": "03257", - "libelleAcheminement": "ST PRIX", - "nomCommune": "ST PRIX" + "codePostal": "30250", + "codeCommune": "30088", + "libelleAcheminement": "COMBAS", + "nomCommune": "COMBAS" }, { - "codePostal": "65330", - "codeCommune": "65183", - "libelleAcheminement": "GALAN", - "nomCommune": "GALAN" + "codePostal": "41150", + "codeCommune": "41167", + "libelleAcheminement": "VEUZAIN SUR LOIRE", + "nomCommune": "VEUZAIN SUR LOIRE" }, { - "codePostal": "33860", - "codeCommune": "33151", - "libelleAcheminement": "DONNEZAC", - "nomCommune": "DONNEZAC" + "codePostal": "40230", + "codeCommune": "40291", + "libelleAcheminement": "SAUBION", + "nomCommune": "SAUBION" }, { - "codePostal": "59551", - "codeCommune": "59022", - "libelleAcheminement": "ATTICHES", - "nomCommune": "ATTICHES" + "codePostal": "29260", + "codeCommune": "29248", + "libelleAcheminement": "ST FREGANT", + "nomCommune": "ST FREGANT" }, { - "codePostal": "03240", - "codeCommune": "03260", - "libelleAcheminement": "ST SORNIN", - "nomCommune": "ST SORNIN" + "codePostal": "30630", + "codeCommune": "30096", + "libelleAcheminement": "CORNILLON", + "nomCommune": "CORNILLON" }, { - "codePostal": "65330", - "codeCommune": "65184", - "libelleAcheminement": "GALEZ", - "nomCommune": "GALEZ" + "codePostal": "41300", + "codeCommune": "41176", + "libelleAcheminement": "PIERREFITTE SUR SAULDRE", + "nomCommune": "PIERREFITTE SUR SAULDRE" }, { - "codePostal": "33840", - "codeCommune": "33155", - "libelleAcheminement": "ESCAUDES", - "nomCommune": "ESCAUDES" + "codePostal": "40320", + "codeCommune": "40305", + "libelleAcheminement": "SORBETS", + "nomCommune": "SORBETS" }, { - "codePostal": "59165", - "codeCommune": "59024", - "libelleAcheminement": "AUBERCHICOURT", - "nomCommune": "AUBERCHICOURT" + "codePostal": "29270", + "codeCommune": "29250", + "libelleAcheminement": "ST HERNIN", + "nomCommune": "ST HERNIN" }, { - "codePostal": "03220", - "codeCommune": "03263", - "libelleAcheminement": "ST VOIR", - "nomCommune": "ST VOIR" + "codePostal": "30450", + "codeCommune": "30130", + "libelleAcheminement": "GENOLHAC", + "nomCommune": "GENOLHAC" }, { - "codePostal": "65670", - "codeCommune": "65187", - "libelleAcheminement": "GAUSSAN", - "nomCommune": "GAUSSAN" + "codePostal": "41190", + "codeCommune": "41182", + "libelleAcheminement": "PRAY", + "nomCommune": "PRAY" }, { - "codePostal": "33760", - "codeCommune": "33156", - "libelleAcheminement": "ESCOUSSANS", - "nomCommune": "ESCOUSSANS" + "codePostal": "40220", + "codeCommune": "40312", + "libelleAcheminement": "TARNOS", + "nomCommune": "TARNOS" }, { - "codePostal": "59249", - "codeCommune": "59025", - "libelleAcheminement": "AUBERS", - "nomCommune": "AUBERS" + "codePostal": "29630", + "codeCommune": "29251", + "libelleAcheminement": "ST JEAN DU DOIGT", + "nomCommune": "ST JEAN DU DOIGT" }, { - "codePostal": "03430", - "codeCommune": "03269", - "libelleAcheminement": "SAUVAGNY", - "nomCommune": "SAUVAGNY" + "codePostal": "30110", + "codeCommune": "30132", + "libelleAcheminement": "LA GRAND COMBE", + "nomCommune": "LA GRAND COMBE" }, { - "codePostal": "65120", - "codeCommune": "65192", - "libelleAcheminement": "GAVARNIE GEDRE", - "nomCommune": "GAVARNIE GEDRE" + "codePostal": "41800", + "codeCommune": "41201", + "libelleAcheminement": "ST ARNOULT", + "nomCommune": "ST ARNOULT" }, { - "codePostal": "33370", - "codeCommune": "33165", - "libelleAcheminement": "FARGUES ST HILAIRE", - "nomCommune": "FARGUES ST HILAIRE" + "codePostal": "40360", + "codeCommune": "40316", + "libelleAcheminement": "TILH", + "nomCommune": "TILH" }, { - "codePostal": "59400", - "codeCommune": "59039", - "libelleAcheminement": "AWOINGT", - "nomCommune": "AWOINGT" + "codePostal": "29550", + "codeCommune": "29256", + "libelleAcheminement": "ST NIC", + "nomCommune": "ST NIC" }, { - "codePostal": "03410", - "codeCommune": "03279", - "libelleAcheminement": "TEILLET ARGENTY", - "nomCommune": "TEILLET ARGENTY" + "codePostal": "30240", + "codeCommune": "30133", + "libelleAcheminement": "LE GRAU DU ROI", + "nomCommune": "LE GRAU DU ROI" }, { - "codePostal": "65140", - "codeCommune": "65196", - "libelleAcheminement": "GENSAC", - "nomCommune": "GENSAC" + "codePostal": "41350", + "codeCommune": "41204", + "libelleAcheminement": "ST CLAUDE DE DIRAY", + "nomCommune": "ST CLAUDE DE DIRAY" }, { - "codePostal": "33270", - "codeCommune": "33167", - "libelleAcheminement": "FLOIRAC", - "nomCommune": "FLOIRAC" + "codePostal": "40270", + "codeCommune": "40329", + "libelleAcheminement": "LE VIGNAU", + "nomCommune": "LE VIGNAU" }, { - "codePostal": "59138", - "codeCommune": "59041", - "libelleAcheminement": "BACHANT", - "nomCommune": "BACHANT" + "codePostal": "29190", + "codeCommune": "29261", + "libelleAcheminement": "ST RIVOAL", + "nomCommune": "ST RIVOAL" }, { - "codePostal": "03240", - "codeCommune": "03281", - "libelleAcheminement": "LE THEIL", - "nomCommune": "LE THEIL" + "codePostal": "30760", + "codeCommune": "30134", + "libelleAcheminement": "ISSIRAC", + "nomCommune": "ISSIRAC" }, { - "codePostal": "65100", - "codeCommune": "65197", - "libelleAcheminement": "GER", - "nomCommune": "GER" + "codePostal": "41500", + "codeCommune": "41207", + "libelleAcheminement": "ST DYE SUR LOIRE", + "nomCommune": "ST DYE SUR LOIRE" }, { - "codePostal": "33430", - "codeCommune": "33180", - "libelleAcheminement": "GANS", - "nomCommune": "GANS" + "codePostal": "40190", + "codeCommune": "40331", + "libelleAcheminement": "VILLENEUVE DE MARSAN", + "nomCommune": "VILLENEUVE DE MARSAN" }, { - "codePostal": "59830", - "codeCommune": "59042", - "libelleAcheminement": "BACHY", - "nomCommune": "BACHY" + "codePostal": "29400", + "codeCommune": "29262", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "03350", - "codeCommune": "03282", - "libelleAcheminement": "THENEUILLE", - "nomCommune": "THENEUILLE" + "codePostal": "30290", + "codeCommune": "30141", + "libelleAcheminement": "LAUDUN L ARDOISE", + "nomCommune": "LAUDUN L ARDOISE" }, { - "codePostal": "65100", - "codeCommune": "65201", - "libelleAcheminement": "GEU", - "nomCommune": "GEU" + "codePostal": "41220", + "codeCommune": "41220", + "libelleAcheminement": "ST LAURENT NOUAN", + "nomCommune": "ST LAURENT NOUAN" }, { - "codePostal": "33920", - "codeCommune": "33184", - "libelleAcheminement": "GENERAC", - "nomCommune": "GENERAC" + "codePostal": "41100", + "codeCommune": "41003", + "libelleAcheminement": "AREINES", + "nomCommune": "AREINES" }, { - "codePostal": "59270", - "codeCommune": "59043", - "libelleAcheminement": "BAILLEUL", - "nomCommune": "BAILLEUL" + "codePostal": "29600", + "codeCommune": "29265", + "libelleAcheminement": "STE SEVE", + "nomCommune": "STE SEVE" }, { - "codePostal": "03220", - "codeCommune": "03291", - "libelleAcheminement": "TREZELLES", - "nomCommune": "TREZELLES" + "codePostal": "30260", + "codeCommune": "30148", + "libelleAcheminement": "LIOUC", + "nomCommune": "LIOUC" }, { - "codePostal": "65350", - "codeCommune": "65204", - "libelleAcheminement": "GONEZ", - "nomCommune": "GONEZ" + "codePostal": "41500", + "codeCommune": "41245", + "libelleAcheminement": "SERIS", + "nomCommune": "SERIS" }, { - "codePostal": "33890", - "codeCommune": "33186", - "libelleAcheminement": "GENSAC", - "nomCommune": "GENSAC" + "codePostal": "41800", + "codeCommune": "41004", + "libelleAcheminement": "ARTINS", + "nomCommune": "ARTINS" }, { - "codePostal": "59132", - "codeCommune": "59045", - "libelleAcheminement": "BAIVES", - "nomCommune": "BAIVES" + "codePostal": "29380", + "codeCommune": "29269", + "libelleAcheminement": "ST THURIEN", + "nomCommune": "ST THURIEN" }, { - "codePostal": "03330", - "codeCommune": "03295", - "libelleAcheminement": "VALIGNAT", - "nomCommune": "VALIGNAT" + "codePostal": "30610", + "codeCommune": "30150", + "libelleAcheminement": "LOGRIAN FLORIAN", + "nomCommune": "LOGRIAN FLORIAN" }, { - "codePostal": "65230", - "codeCommune": "65213", - "libelleAcheminement": "GUIZERIX", - "nomCommune": "GUIZERIX" + "codePostal": "41170", + "codeCommune": "41248", + "libelleAcheminement": "COUETRON AU PERCHE", + "nomCommune": "COUETRON AU PERCHE" }, { - "codePostal": "33190", - "codeCommune": "33187", - "libelleAcheminement": "GIRONDE SUR DROPT", - "nomCommune": "GIRONDE SUR DROPT" + "codePostal": "41130", + "codeCommune": "41016", + "libelleAcheminement": "BILLY", + "nomCommune": "BILLY" }, { - "codePostal": "59470", - "codeCommune": "59046", - "libelleAcheminement": "BAMBECQUE", - "nomCommune": "BAMBECQUE" + "codePostal": "29800", + "codeCommune": "29286", + "libelleAcheminement": "TREFLEVENEZ", + "nomCommune": "TREFLEVENEZ" }, { - "codePostal": "03450", - "codeCommune": "03302", - "libelleAcheminement": "VEAUCE", - "nomCommune": "VEAUCE" + "codePostal": "30960", + "codeCommune": "30159", + "libelleAcheminement": "LE MARTINET", + "nomCommune": "LE MARTINET" }, { - "codePostal": "65250", - "codeCommune": "65218", - "libelleAcheminement": "HECHES", - "nomCommune": "HECHES" + "codePostal": "41800", + "codeCommune": "41255", + "libelleAcheminement": "TERNAY", + "nomCommune": "TERNAY" }, { - "codePostal": "33720", - "codeCommune": "33197", - "libelleAcheminement": "GUILLOS", - "nomCommune": "GUILLOS" + "codePostal": "41270", + "codeCommune": "41022", + "libelleAcheminement": "BOUFFRY", + "nomCommune": "BOUFFRY" }, { - "codePostal": "59554", - "codeCommune": "59048", - "libelleAcheminement": "BANTIGNY", - "nomCommune": "BANTIGNY" + "codePostal": "29870", + "codeCommune": "29290", + "libelleAcheminement": "TREGLONOU", + "nomCommune": "TREGLONOU" }, { - "codePostal": "03110", - "codeCommune": "03304", - "libelleAcheminement": "VENDAT", - "nomCommune": "VENDAT" + "codePostal": "30350", + "codeCommune": "30160", + "libelleAcheminement": "MARUEJOLS LES GARDON", + "nomCommune": "MARUEJOLS LES GARDON" }, { - "codePostal": "65100", - "codeCommune": "65237", - "libelleAcheminement": "JUNCALAS", - "nomCommune": "JUNCALAS" + "codePostal": "41300", + "codeCommune": "41256", + "libelleAcheminement": "THEILLAY", + "nomCommune": "THEILLAY" }, { - "codePostal": "33640", - "codeCommune": "33206", - "libelleAcheminement": "ISLE ST GEORGES", - "nomCommune": "ISLE ST GEORGES" + "codePostal": "41360", + "codeCommune": "41030", + "libelleAcheminement": "CELLE", + "nomCommune": "CELLE" }, { - "codePostal": "59440", - "codeCommune": "59050", - "libelleAcheminement": "BAS LIEU", - "nomCommune": "BAS LIEU" + "codePostal": "29970", + "codeCommune": "29291", + "libelleAcheminement": "TREGOUREZ", + "nomCommune": "TREGOUREZ" }, { - "codePostal": "03190", - "codeCommune": "03305", - "libelleAcheminement": "VERNEIX", - "nomCommune": "VERNEIX" + "codePostal": "30840", + "codeCommune": "30166", + "libelleAcheminement": "MEYNES", + "nomCommune": "MEYNES" }, { - "codePostal": "65130", - "codeCommune": "65241", - "libelleAcheminement": "LABORDE", - "nomCommune": "LABORDE" + "codePostal": "41250", + "codeCommune": "41262", + "libelleAcheminement": "TOUR EN SOLOGNE", + "nomCommune": "TOUR EN SOLOGNE" }, { - "codePostal": "33124", - "codeCommune": "33216", - "libelleAcheminement": "LADOS", - "nomCommune": "LADOS" + "codePostal": "41250", + "codeCommune": "41034", + "libelleAcheminement": "CHAMBORD", + "nomCommune": "CHAMBORD" }, { - "codePostal": "59730", - "codeCommune": "59060", - "libelleAcheminement": "BEAURAIN", - "nomCommune": "BEAURAIN" + "codePostal": "20167", + "codeCommune": "2A004", + "libelleAcheminement": "AJACCIO", + "nomCommune": "AJACCIO" }, { - "codePostal": "03350", - "codeCommune": "03313", - "libelleAcheminement": "LE VILHAIN", - "nomCommune": "LE VILHAIN" + "codePostal": "30410", + "codeCommune": "30171", + "libelleAcheminement": "MOLIERES SUR CEZE", + "nomCommune": "MOLIERES SUR CEZE" }, { - "codePostal": "65320", - "codeCommune": "65244", - "libelleAcheminement": "LAGARDE", - "nomCommune": "LAGARDE" + "codePostal": "41230", + "codeCommune": "41268", + "libelleAcheminement": "VEILLEINS", + "nomCommune": "VEILLEINS" }, { - "codePostal": "33190", - "codeCommune": "33221", - "libelleAcheminement": "LAMOTHE LANDERRON", - "nomCommune": "LAMOTHE LANDERRON" + "codePostal": "41270", + "codeCommune": "41041", + "libelleAcheminement": "LA CHAPELLE VICOMTESSE", + "nomCommune": "LA CHAPELLE VICOMTESSE" }, { - "codePostal": "59740", - "codeCommune": "59062", - "libelleAcheminement": "BEAURIEUX", - "nomCommune": "BEAURIEUX" + "codePostal": "20100", + "codeCommune": "2A038", + "libelleAcheminement": "BILIA", + "nomCommune": "BILIA" }, { - "codePostal": "04420", - "codeCommune": "04009", - "libelleAcheminement": "ARCHAIL", - "nomCommune": "ARCHAIL" + "codePostal": "30700", + "codeCommune": "30174", + "libelleAcheminement": "MONTAREN ET ST MEDIERS", + "nomCommune": "MONTAREN ET ST MEDIERS" }, { - "codePostal": "65230", - "codeCommune": "65249", - "libelleAcheminement": "LALANNE", - "nomCommune": "LALANNE" + "codePostal": "41290", + "codeCommune": "41273", + "libelleAcheminement": "VIEVY LE RAYE", + "nomCommune": "VIEVY LE RAYE" }, { - "codePostal": "33840", - "codeCommune": "33232", - "libelleAcheminement": "LARTIGUE", - "nomCommune": "LARTIGUE" + "codePostal": "41260", + "codeCommune": "41047", + "libelleAcheminement": "LA CHAUSSEE ST VICTOR", + "nomCommune": "LA CHAUSSEE ST VICTOR" }, { - "codePostal": "59600", - "codeCommune": "59072", - "libelleAcheminement": "BERSILLIES", - "nomCommune": "BERSILLIES" + "codePostal": "20111", + "codeCommune": "2A048", + "libelleAcheminement": "CALCATOGGIO", + "nomCommune": "CALCATOGGIO" }, { - "codePostal": "04110", - "codeCommune": "04012", - "libelleAcheminement": "AUBENAS LES ALPES", - "nomCommune": "AUBENAS LES ALPES" + "codePostal": "30360", + "codeCommune": "30177", + "libelleAcheminement": "MONTEILS", + "nomCommune": "MONTEILS" }, { - "codePostal": "65190", - "codeCommune": "65270", - "libelleAcheminement": "LESPOUEY", - "nomCommune": "LESPOUEY" + "codePostal": "41800", + "codeCommune": "41274", + "libelleAcheminement": "VILLAVARD", + "nomCommune": "VILLAVARD" }, { - "codePostal": "33850", - "codeCommune": "33238", - "libelleAcheminement": "LEOGNAN", - "nomCommune": "LEOGNAN" + "codePostal": "41700", + "codeCommune": "41049", + "libelleAcheminement": "CHEMERY", + "nomCommune": "CHEMERY" }, { - "codePostal": "59270", - "codeCommune": "59073", - "libelleAcheminement": "BERTHEN", - "nomCommune": "BERTHEN" + "codePostal": "20123", + "codeCommune": "2A091", + "libelleAcheminement": "COGNOCOLI MONTICCHI", + "nomCommune": "COGNOCOLI MONTICCHI" }, { - "codePostal": "04270", - "codeCommune": "04028", - "libelleAcheminement": "BEYNES", - "nomCommune": "BEYNES" + "codePostal": "30490", + "codeCommune": "30179", + "libelleAcheminement": "MONTFRIN", + "nomCommune": "MONTFRIN" }, { - "codePostal": "65350", - "codeCommune": "65276", - "libelleAcheminement": "LIZOS", - "nomCommune": "LIZOS" + "codePostal": "41160", + "codeCommune": "41275", + "libelleAcheminement": "LA VILLE AUX CLERCS", + "nomCommune": "LA VILLE AUX CLERCS" }, { - "codePostal": "33840", - "codeCommune": "33239", - "libelleAcheminement": "LERM ET MUSSET", - "nomCommune": "LERM ET MUSSET" + "codePostal": "41700", + "codeCommune": "41059", + "libelleAcheminement": "LE CONTROIS EN SOLOGNE", + "nomCommune": "LE CONTROIS EN SOLOGNE" }, { - "codePostal": "59190", - "codeCommune": "59091", - "libelleAcheminement": "BORRE", - "nomCommune": "BORRE" + "codePostal": "20135", + "codeCommune": "2A092", + "libelleAcheminement": "CONCA", + "nomCommune": "CONCA" }, { - "codePostal": "04270", - "codeCommune": "04031", - "libelleAcheminement": "BRAS D ASSE", - "nomCommune": "BRAS D ASSE" + "codePostal": "30190", + "codeCommune": "30184", + "libelleAcheminement": "MOUSSAC", + "nomCommune": "MOUSSAC" }, { - "codePostal": "65220", - "codeCommune": "65293", - "libelleAcheminement": "LUSTAR", - "nomCommune": "LUSTAR" + "codePostal": "41000", + "codeCommune": "41276", + "libelleAcheminement": "VILLEBAROU", + "nomCommune": "VILLEBAROU" }, { - "codePostal": "33220", - "codeCommune": "33242", - "libelleAcheminement": "LES LEVES ET THOUMEYRAGUES", - "nomCommune": "LES LEVES ET THOUMEYRAGUES" + "codePostal": "41700", + "codeCommune": "41062", + "libelleAcheminement": "COUDDES", + "nomCommune": "COUDDES" }, { - "codePostal": "59111", - "codeCommune": "59092", - "libelleAcheminement": "BOUCHAIN", - "nomCommune": "BOUCHAIN" + "codePostal": "20148", + "codeCommune": "2A099", + "libelleAcheminement": "COZZANO", + "nomCommune": "COZZANO" }, { - "codePostal": "04700", - "codeCommune": "04034", - "libelleAcheminement": "LA BRILLANNE", - "nomCommune": "LA BRILLANNE" + "codePostal": "30360", + "codeCommune": "30188", + "libelleAcheminement": "NERS", + "nomCommune": "NERS" }, { - "codePostal": "65350", - "codeCommune": "65298", - "libelleAcheminement": "MARQUERIE", - "nomCommune": "MARQUERIE" + "codePostal": "41310", + "codeCommune": "41278", + "libelleAcheminement": "VILLECHAUVE", + "nomCommune": "VILLECHAUVE" }, { - "codePostal": "33790", - "codeCommune": "33247", - "libelleAcheminement": "LISTRAC DE DUREZE", - "nomCommune": "LISTRAC DE DUREZE" + "codePostal": "41110", + "codeCommune": "41063", + "libelleAcheminement": "COUFFY", + "nomCommune": "COUFFY" }, { - "codePostal": "59630", - "codeCommune": "59094", - "libelleAcheminement": "BOURBOURG", - "nomCommune": "BOURBOURG" + "codePostal": "20190", + "codeCommune": "2A117", + "libelleAcheminement": "FORCIOLO", + "nomCommune": "FORCIOLO" }, { - "codePostal": "04210", - "codeCommune": "04035", - "libelleAcheminement": "BRUNET", - "nomCommune": "BRUNET" + "codePostal": "30120", + "codeCommune": "30199", + "libelleAcheminement": "POMMIERS", + "nomCommune": "POMMIERS" }, { - "codePostal": "65500", - "codeCommune": "65299", - "libelleAcheminement": "MARSAC", - "nomCommune": "MARSAC" + "codePostal": "41200", + "codeCommune": "41280", + "libelleAcheminement": "VILLEFRANCHE SUR CHER", + "nomCommune": "VILLEFRANCHE SUR CHER" }, { - "codePostal": "33310", - "codeCommune": "33249", - "libelleAcheminement": "LORMONT", - "nomCommune": "LORMONT" + "codePostal": "41800", + "codeCommune": "41070", + "libelleAcheminement": "VALLEE DE RONSARD", + "nomCommune": "VALLEE DE RONSARD" }, { - "codePostal": "59222", - "codeCommune": "59099", - "libelleAcheminement": "BOUSIES", - "nomCommune": "BOUSIES" + "codePostal": "20100", + "codeCommune": "2A127", + "libelleAcheminement": "GIUNCHETO", + "nomCommune": "GIUNCHETO" }, { - "codePostal": "04250", - "codeCommune": "04037", - "libelleAcheminement": "LE CAIRE", - "nomCommune": "LE CAIRE" + "codePostal": "30131", + "codeCommune": "30209", + "libelleAcheminement": "PUJAUT", + "nomCommune": "PUJAUT" }, { - "codePostal": "65150", - "codeCommune": "65307", - "libelleAcheminement": "MAZERES DE NESTE", - "nomCommune": "MAZERES DE NESTE" + "codePostal": "41100", + "codeCommune": "41287", + "libelleAcheminement": "VILLERABLE", + "nomCommune": "VILLERABLE" }, { - "codePostal": "33370", - "codeCommune": "33252", - "libelleAcheminement": "LOUPES", - "nomCommune": "LOUPES" + "codePostal": "41220", + "codeCommune": "41071", + "libelleAcheminement": "CROUY SUR COSSON", + "nomCommune": "CROUY SUR COSSON" }, { - "codePostal": "59730", - "codeCommune": "59108", - "libelleAcheminement": "BRIASTRE", - "nomCommune": "BRIASTRE" + "codePostal": "20160", + "codeCommune": "2A131", + "libelleAcheminement": "GUAGNO", + "nomCommune": "GUAGNO" }, { - "codePostal": "04120", - "codeCommune": "04039", - "libelleAcheminement": "CASTELLANE", - "nomCommune": "CASTELLANE" + "codePostal": "30260", + "codeCommune": "30210", + "libelleAcheminement": "QUISSAC", + "nomCommune": "QUISSAC" }, { - "codePostal": "65200", - "codeCommune": "65310", - "libelleAcheminement": "MERILHEU", - "nomCommune": "MERILHEU" + "codePostal": "42820", + "codeCommune": "42003", + "libelleAcheminement": "AMBIERLE", + "nomCommune": "AMBIERLE" }, { - "codePostal": "33410", - "codeCommune": "33253", - "libelleAcheminement": "LOUPIAC", - "nomCommune": "LOUPIAC" + "codePostal": "41100", + "codeCommune": "41072", + "libelleAcheminement": "CRUCHERAY", + "nomCommune": "CRUCHERAY" }, { - "codePostal": "59630", - "codeCommune": "59110", - "libelleAcheminement": "BROUCKERQUE", - "nomCommune": "BROUCKERQUE" + "codePostal": "20160", + "codeCommune": "2A141", + "libelleAcheminement": "LETIA", + "nomCommune": "LETIA" }, { - "codePostal": "04380", - "codeCommune": "04040", - "libelleAcheminement": "LE CASTELLARD MELAN", - "nomCommune": "LE CASTELLARD MELAN" + "codePostal": "30650", + "codeCommune": "30217", + "libelleAcheminement": "ROCHEFORT DU GARD", + "nomCommune": "ROCHEFORT DU GARD" }, { - "codePostal": "65140", - "codeCommune": "65311", - "libelleAcheminement": "MINGOT", - "nomCommune": "MINGOT" + "codePostal": "42460", + "codeCommune": "42007", + "libelleAcheminement": "ARCINGES", + "nomCommune": "ARCINGES" }, { - "codePostal": "33840", - "codeCommune": "33255", - "libelleAcheminement": "LUCMAU", - "nomCommune": "LUCMAU" + "codePostal": "41360", + "codeCommune": "41090", + "libelleAcheminement": "FORTAN", + "nomCommune": "FORTAN" }, { - "codePostal": "59151", - "codeCommune": "59117", - "libelleAcheminement": "BUGNICOURT", - "nomCommune": "BUGNICOURT" + "codePostal": "20170", + "codeCommune": "2A142", + "libelleAcheminement": "LEVIE", + "nomCommune": "LEVIE" }, { - "codePostal": "04320", - "codeCommune": "04043", - "libelleAcheminement": "VAL DE CHALVAGNE", - "nomCommune": "VAL DE CHALVAGNE" + "codePostal": "30440", + "codeCommune": "30220", + "libelleAcheminement": "ROQUEDUR", + "nomCommune": "ROQUEDUR" }, { - "codePostal": "65140", - "codeCommune": "65314", - "libelleAcheminement": "MONFAUCON", - "nomCommune": "MONFAUCON" + "codePostal": "42370", + "codeCommune": "42008", + "libelleAcheminement": "ARCON", + "nomCommune": "ARCON" }, { - "codePostal": "33290", - "codeCommune": "33256", - "libelleAcheminement": "LUDON MEDOC", - "nomCommune": "LUDON MEDOC" + "codePostal": "41310", + "codeCommune": "41098", + "libelleAcheminement": "GOMBERGEAN", + "nomCommune": "GOMBERGEAN" }, { - "codePostal": "59217", - "codeCommune": "59138", - "libelleAcheminement": "CATTENIERES", - "nomCommune": "CATTENIERES" + "codePostal": "20139", + "codeCommune": "2A144", + "libelleAcheminement": "LOPIGNA", + "nomCommune": "LOPIGNA" }, { - "codePostal": "04510", - "codeCommune": "04046", - "libelleAcheminement": "LE CHAFFAUT ST JURSON", - "nomCommune": "LE CHAFFAUT ST JURSON" + "codePostal": "30150", + "codeCommune": "30221", + "libelleAcheminement": "ROQUEMAURE", + "nomCommune": "ROQUEMAURE" }, { - "codePostal": "65150", - "codeCommune": "65323", - "libelleAcheminement": "MONTSERIE", - "nomCommune": "MONTSERIE" + "codePostal": "42720", + "codeCommune": "42016", + "libelleAcheminement": "LA BENISSON DIEU", + "nomCommune": "LA BENISSON DIEU" }, { - "codePostal": "33620", - "codeCommune": "33266", - "libelleAcheminement": "MARCENAIS", - "nomCommune": "MARCENAIS" + "codePostal": "41310", + "codeCommune": "41107", + "libelleAcheminement": "LANCE", + "nomCommune": "LANCE" }, { - "codePostal": "59191", - "codeCommune": "59140", - "libelleAcheminement": "CAULLERY", - "nomCommune": "CAULLERY" + "codePostal": "20112", + "codeCommune": "2A158", + "libelleAcheminement": "MELA", + "nomCommune": "MELA" }, { - "codePostal": "04510", - "codeCommune": "04046", - "libelleAcheminement": "LE CHAFFAUT ST JURSON", - "nomCommune": "LE CHAFFAUT ST JURSON" + "codePostal": "30190", + "codeCommune": "30241", + "libelleAcheminement": "ST CHAPTES", + "nomCommune": "ST CHAPTES" }, { - "codePostal": "65150", - "codeCommune": "65329", - "libelleAcheminement": "NISTOS", - "nomCommune": "NISTOS" + "codePostal": "42460", + "codeCommune": "42033", + "libelleAcheminement": "LE CERGNE", + "nomCommune": "LE CERGNE" }, { - "codePostal": "33460", - "codeCommune": "33268", - "libelleAcheminement": "MARGAUX CANTENAC", - "nomCommune": "MARGAUX CANTENAC" + "codePostal": "41190", + "codeCommune": "41108", + "libelleAcheminement": "LANCOME", + "nomCommune": "LANCOME" }, { - "codePostal": "59400", - "codeCommune": "59141", - "libelleAcheminement": "CAUROIR", - "nomCommune": "CAUROIR" + "codePostal": "20117", + "codeCommune": "2A181", + "libelleAcheminement": "OCANA", + "nomCommune": "OCANA" }, { - "codePostal": "04200", - "codeCommune": "04053", - "libelleAcheminement": "CHATEAUNEUF VAL ST DONAT", - "nomCommune": "CHATEAUNEUF VAL ST DONAT" + "codePostal": "30760", + "codeCommune": "30242", + "libelleAcheminement": "ST CHRISTOL DE RODIERES", + "nomCommune": "ST CHRISTOL DE RODIERES" }, { - "codePostal": "65200", - "codeCommune": "65338", - "libelleAcheminement": "ORIGNAC", - "nomCommune": "ORIGNAC" + "codePostal": "42800", + "codeCommune": "42036", + "libelleAcheminement": "CHAGNON", + "nomCommune": "CHAGNON" }, { - "codePostal": "33210", - "codeCommune": "33279", - "libelleAcheminement": "MAZERES", - "nomCommune": "MAZERES" + "codePostal": "41190", + "codeCommune": "41109", + "libelleAcheminement": "LANDES LE GAULOIS", + "nomCommune": "LANDES LE GAULOIS" }, { - "codePostal": "59740", - "codeCommune": "59148", - "libelleAcheminement": "CLAIRFAYTS", - "nomCommune": "CLAIRFAYTS" + "codePostal": "20113", + "codeCommune": "2A189", + "libelleAcheminement": "OLMETO", + "nomCommune": "OLMETO" }, { - "codePostal": "04330", - "codeCommune": "04055", - "libelleAcheminement": "CHAUDON NORANTE", - "nomCommune": "CHAUDON NORANTE" + "codePostal": "30140", + "codeCommune": "30252", + "libelleAcheminement": "ST FELIX DE PALLIERES", + "nomCommune": "ST FELIX DE PALLIERES" }, { - "codePostal": "65380", - "codeCommune": "65339", - "libelleAcheminement": "ORINCLES", - "nomCommune": "ORINCLES" + "codePostal": "42920", + "codeCommune": "42039", + "libelleAcheminement": "CHALMAZEL JEANSAGNIERE", + "nomCommune": "CHALMAZEL JEANSAGNIERE" }, { - "codePostal": "33700", - "codeCommune": "33281", - "libelleAcheminement": "MERIGNAC", - "nomCommune": "MERIGNAC" + "codePostal": "41320", + "codeCommune": "41110", + "libelleAcheminement": "LANGON SUR CHER", + "nomCommune": "LANGON SUR CHER" }, { - "codePostal": "59560", - "codeCommune": "59152", - "libelleAcheminement": "COMINES", - "nomCommune": "COMINES" + "codePostal": "20134", + "codeCommune": "2A200", + "libelleAcheminement": "PALNECA", + "nomCommune": "PALNECA" }, { - "codePostal": "05110", - "codeCommune": "04058", - "libelleAcheminement": "CLARET", - "nomCommune": "CLARET" + "codePostal": "30150", + "codeCommune": "30254", + "libelleAcheminement": "ST GENIES DE COMOLAS", + "nomCommune": "ST GENIES DE COMOLAS" }, { - "codePostal": "65320", - "codeCommune": "65341", - "libelleAcheminement": "OROIX", - "nomCommune": "OROIX" + "codePostal": "42920", + "codeCommune": "42039", + "libelleAcheminement": "CHALMAZEL JEANSAGNIERE", + "nomCommune": "CHALMAZEL JEANSAGNIERE" }, { - "codePostal": "33450", - "codeCommune": "33293", - "libelleAcheminement": "MONTUSSAN", - "nomCommune": "MONTUSSAN" + "codePostal": "41500", + "codeCommune": "41130", + "libelleAcheminement": "MAVES", + "nomCommune": "MAVES" }, { - "codePostal": "59380", - "codeCommune": "59162", - "libelleAcheminement": "CROCHTE", - "nomCommune": "CROCHTE" + "codePostal": "20121", + "codeCommune": "2A204", + "libelleAcheminement": "PASTRICCIOLA", + "nomCommune": "PASTRICCIOLA" }, { - "codePostal": "05110", - "codeCommune": "04066", - "libelleAcheminement": "CURBANS", - "nomCommune": "CURBANS" + "codePostal": "30320", + "codeCommune": "30257", + "libelleAcheminement": "ST GERVASY", + "nomCommune": "ST GERVASY" }, { - "codePostal": "65100", - "codeCommune": "65343", - "libelleAcheminement": "OSSEN", - "nomCommune": "OSSEN" + "codePostal": "42440", + "codeCommune": "42040", + "libelleAcheminement": "LA CHAMBA", + "nomCommune": "LA CHAMBA" }, { - "codePostal": "33240", - "codeCommune": "33295", - "libelleAcheminement": "MOUILLAC", - "nomCommune": "MOUILLAC" + "codePostal": "41100", + "codeCommune": "41138", + "libelleAcheminement": "MESLAY", + "nomCommune": "MESLAY" }, { - "codePostal": "59222", - "codeCommune": "59164", - "libelleAcheminement": "CROIX CALUYAU", - "nomCommune": "CROIX CALUYAU" + "codePostal": "20140", + "codeCommune": "2A211", + "libelleAcheminement": "PETRETO BICCHISANO", + "nomCommune": "PETRETO BICCHISANO" }, { - "codePostal": "04400", - "codeCommune": "04073", - "libelleAcheminement": "ENCHASTRAYES", - "nomCommune": "ENCHASTRAYES" + "codePostal": "30210", + "codeCommune": "30260", + "libelleAcheminement": "ST HILAIRE D OZILHAN", + "nomCommune": "ST HILAIRE D OZILHAN" }, { - "codePostal": "65100", - "codeCommune": "65351", - "libelleAcheminement": "OUSTE", - "nomCommune": "OUSTE" + "codePostal": "42110", + "codeCommune": "42041", + "libelleAcheminement": "CHAMBEON", + "nomCommune": "CHAMBEON" }, { - "codePostal": "33480", - "codeCommune": "33297", - "libelleAcheminement": "MOULIS EN MEDOC", - "nomCommune": "MOULIS EN MEDOC" + "codePostal": "41160", + "codeCommune": "41141", + "libelleAcheminement": "MOISY", + "nomCommune": "MOISY" }, { - "codePostal": "59830", - "codeCommune": "59168", - "libelleAcheminement": "CYSOING", - "nomCommune": "CYSOING" + "codePostal": "20123", + "codeCommune": "2A232", + "libelleAcheminement": "PILA CANALE", + "nomCommune": "PILA CANALE" }, { - "codePostal": "04200", - "codeCommune": "04075", - "libelleAcheminement": "ENTREPIERRES", - "nomCommune": "ENTREPIERRES" + "codePostal": "30360", + "codeCommune": "30264", + "libelleAcheminement": "ST JEAN DE CEYRARGUES", + "nomCommune": "ST JEAN DE CEYRARGUES" }, { - "codePostal": "65130", - "codeCommune": "65356", - "libelleAcheminement": "PERE", - "nomCommune": "PERE" + "codePostal": "42600", + "codeCommune": "42046", + "libelleAcheminement": "CHAMPDIEU", + "nomCommune": "CHAMPDIEU" }, { - "codePostal": "33990", - "codeCommune": "33300", - "libelleAcheminement": "NAUJAC SUR MER", - "nomCommune": "NAUJAC SUR MER" + "codePostal": "41230", + "codeCommune": "41157", + "libelleAcheminement": "MUR DE SOLOGNE", + "nomCommune": "MUR DE SOLOGNE" }, { - "codePostal": "59440", - "codeCommune": "59181", - "libelleAcheminement": "DOURLERS", - "nomCommune": "DOURLERS" + "codePostal": "20137", + "codeCommune": "2A247", + "libelleAcheminement": "PORTO VECCHIO", + "nomCommune": "PORTO VECCHIO" }, { - "codePostal": "04800", - "codeCommune": "04081", - "libelleAcheminement": "ESPARRON DE VERDON", - "nomCommune": "ESPARRON DE VERDON" + "codePostal": "30960", + "codeCommune": "30268", + "libelleAcheminement": "ST JEAN DE VALERISCLE", + "nomCommune": "ST JEAN DE VALERISCLE" }, { - "codePostal": "65270", - "codeCommune": "65360", - "libelleAcheminement": "PEYROUSE", - "nomCommune": "PEYROUSE" + "codePostal": "42380", + "codeCommune": "42050", + "libelleAcheminement": "LA CHAPELLE EN LAFAYE", + "nomCommune": "LA CHAPELLE EN LAFAYE" }, { - "codePostal": "33420", - "codeCommune": "33301", - "libelleAcheminement": "NAUJAN ET POSTIAC", - "nomCommune": "NAUJAN ET POSTIAC" + "codePostal": "41290", + "codeCommune": "41171", + "libelleAcheminement": "OUCQUES LA NOUVELLE", + "nomCommune": "OUCQUES LA NOUVELLE" }, { - "codePostal": "59430", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "20110", + "codeCommune": "2A249", + "libelleAcheminement": "PROPRIANO", + "nomCommune": "PROPRIANO" }, { - "codePostal": "04250", - "codeCommune": "04085", - "libelleAcheminement": "FAUCON DU CAIRE", - "nomCommune": "FAUCON DU CAIRE" + "codePostal": "30140", + "codeCommune": "30270", + "libelleAcheminement": "ST JEAN DU PIN", + "nomCommune": "ST JEAN DU PIN" }, { - "codePostal": "65300", - "codeCommune": "65363", - "libelleAcheminement": "PINAS", - "nomCommune": "PINAS" + "codePostal": "42140", + "codeCommune": "42062", + "libelleAcheminement": "CHEVRIERES", + "nomCommune": "CHEVRIERES" }, { - "codePostal": "33410", - "codeCommune": "33308", - "libelleAcheminement": "OMET", - "nomCommune": "OMET" + "codePostal": "41240", + "codeCommune": "41173", + "libelleAcheminement": "BEAUCE LA ROMAINE", + "nomCommune": "BEAUCE LA ROMAINE" }, { - "codePostal": "59640", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "20145", + "codeCommune": "2A269", + "libelleAcheminement": "SARI SOLENZARA", + "nomCommune": "SARI SOLENZARA" }, { - "codePostal": "04240", - "codeCommune": "04090", - "libelleAcheminement": "LE FUGERET", - "nomCommune": "LE FUGERET" + "codePostal": "30580", + "codeCommune": "30275", + "libelleAcheminement": "ST JUST ET VACQUIERES", + "nomCommune": "ST JUST ET VACQUIERES" }, { - "codePostal": "65220", - "codeCommune": "65374", - "libelleAcheminement": "PUYDARRIEUX", - "nomCommune": "PUYDARRIEUX" + "codePostal": "42110", + "codeCommune": "42065", + "libelleAcheminement": "CIVENS", + "nomCommune": "CIVENS" }, { - "codePostal": "33340", - "codeCommune": "33309", - "libelleAcheminement": "ORDONNAC", - "nomCommune": "ORDONNAC" + "codePostal": "41240", + "codeCommune": "41173", + "libelleAcheminement": "BEAUCE LA ROMAINE", + "nomCommune": "BEAUCE LA ROMAINE" }, { - "codePostal": "59530", - "codeCommune": "59194", - "libelleAcheminement": "ENGLEFONTAINE", - "nomCommune": "ENGLEFONTAINE" + "codePostal": "20100", + "codeCommune": "2A272", + "libelleAcheminement": "SARTENE", + "nomCommune": "SARTENE" }, { - "codePostal": "04310", - "codeCommune": "04091", - "libelleAcheminement": "GANAGOBIE", - "nomCommune": "GANAGOBIE" + "codePostal": "30126", + "codeCommune": "30278", + "libelleAcheminement": "ST LAURENT DES ARBRES", + "nomCommune": "ST LAURENT DES ARBRES" }, { - "codePostal": "65140", - "codeCommune": "65375", - "libelleAcheminement": "RABASTENS DE BIGORRE", - "nomCommune": "RABASTENS DE BIGORRE" + "codePostal": "42120", + "codeCommune": "42071", + "libelleAcheminement": "LE COTEAU", + "nomCommune": "LE COTEAU" }, { - "codePostal": "33250", - "codeCommune": "33314", - "libelleAcheminement": "PAUILLAC", - "nomCommune": "PAUILLAC" + "codePostal": "41240", + "codeCommune": "41173", + "libelleAcheminement": "BEAUCE LA ROMAINE", + "nomCommune": "BEAUCE LA ROMAINE" }, { - "codePostal": "59169", - "codeCommune": "59199", - "libelleAcheminement": "ERCHIN", - "nomCommune": "ERCHIN" + "codePostal": "20112", + "codeCommune": "2A308", + "libelleAcheminement": "STE LUCIE DE TALLANO", + "nomCommune": "STE LUCIE DE TALLANO" }, { - "codePostal": "04150", - "codeCommune": "04095", - "libelleAcheminement": "L HOSPITALET", - "nomCommune": "L HOSPITALET" + "codePostal": "30360", + "codeCommune": "30285", + "libelleAcheminement": "ST MAURICE DE CAZEVIEILLE", + "nomCommune": "ST MAURICE DE CAZEVIEILLE" }, { - "codePostal": "65330", - "codeCommune": "65376", - "libelleAcheminement": "RECURT", - "nomCommune": "RECURT" + "codePostal": "42111", + "codeCommune": "42072", + "libelleAcheminement": "LA COTE EN COUZAN", + "nomCommune": "LA COTE EN COUZAN" }, { - "codePostal": "33490", - "codeCommune": "33323", - "libelleAcheminement": "LE PIAN SUR GARONNE", - "nomCommune": "LE PIAN SUR GARONNE" + "codePostal": "41100", + "codeCommune": "41175", + "libelleAcheminement": "PEZOU", + "nomCommune": "PEZOU" }, { - "codePostal": "59470", - "codeCommune": "59200", - "libelleAcheminement": "ERINGHEM", - "nomCommune": "ERINGHEM" + "codePostal": "20128", + "codeCommune": "2A331", + "libelleAcheminement": "URBALACONE", + "nomCommune": "URBALACONE" }, { - "codePostal": "04170", - "codeCommune": "04099", - "libelleAcheminement": "LAMBRUISSE", - "nomCommune": "LAMBRUISSE" + "codePostal": "30610", + "codeCommune": "30289", + "libelleAcheminement": "ST NAZAIRE DES GARDIES", + "nomCommune": "ST NAZAIRE DES GARDIES" }, { - "codePostal": "65300", - "codeCommune": "65377", - "libelleAcheminement": "REJAUMONT", - "nomCommune": "REJAUMONT" + "codePostal": "42460", + "codeCommune": "42074", + "libelleAcheminement": "COUTOUVRE", + "nomCommune": "COUTOUVRE" }, { - "codePostal": "33720", - "codeCommune": "33327", - "libelleAcheminement": "PODENSAC", - "nomCommune": "PODENSAC" + "codePostal": "41170", + "codeCommune": "41177", + "libelleAcheminement": "LE PLESSIS DORIN", + "nomCommune": "LE PLESSIS DORIN" }, { - "codePostal": "59320", - "codeCommune": "59201", - "libelleAcheminement": "ERQUINGHEM LE SEC", - "nomCommune": "ERQUINGHEM LE SEC" + "codePostal": "20116", + "codeCommune": "2A357", + "libelleAcheminement": "ZERUBIA", + "nomCommune": "ZERUBIA" }, { - "codePostal": "04700", - "codeCommune": "04106", - "libelleAcheminement": "LURS", - "nomCommune": "LURS" + "codePostal": "30700", + "codeCommune": "30299", + "libelleAcheminement": "ST SIFFRET", + "nomCommune": "ST SIFFRET" }, { - "codePostal": "65370", - "codeCommune": "65382", - "libelleAcheminement": "SACOUE", - "nomCommune": "SACOUE" + "codePostal": "42800", + "codeCommune": "42083", + "libelleAcheminement": "DARGOIRE", + "nomCommune": "DARGOIRE" }, { - "codePostal": "33190", - "codeCommune": "33331", - "libelleAcheminement": "PONDAURAT", - "nomCommune": "PONDAURAT" + "codePostal": "41370", + "codeCommune": "41178", + "libelleAcheminement": "LE PLESSIS L ECHELLE", + "nomCommune": "LE PLESSIS L ECHELLE" }, { - "codePostal": "59193", - "codeCommune": "59202", - "libelleAcheminement": "ERQUINGHEM LYS", - "nomCommune": "ERQUINGHEM LYS" + "codePostal": "20190", + "codeCommune": "2A360", + "libelleAcheminement": "ZIGLIARA", + "nomCommune": "ZIGLIARA" }, { - "codePostal": "04300", - "codeCommune": "04111", - "libelleAcheminement": "MANE", - "nomCommune": "MANE" + "codePostal": "30500", + "codeCommune": "30303", + "libelleAcheminement": "ST VICTOR DE MALCAP", + "nomCommune": "ST VICTOR DE MALCAP" }, { - "codePostal": "65220", - "codeCommune": "65383", - "libelleAcheminement": "SADOURNIN", - "nomCommune": "SADOURNIN" + "codePostal": "42130", + "codeCommune": "42084", + "libelleAcheminement": "DEBATS RIVIERE D ORPRA", + "nomCommune": "DEBATS RIVIERE D ORPRA" }, { - "codePostal": "33570", - "codeCommune": "33342", - "libelleAcheminement": "PUISSEGUIN", - "nomCommune": "PUISSEGUIN" + "codePostal": "41310", + "codeCommune": "41184", + "libelleAcheminement": "PRUNAY CASSEREAU", + "nomCommune": "PRUNAY CASSEREAU" }, { - "codePostal": "59171", - "codeCommune": "59203", - "libelleAcheminement": "ERRE", - "nomCommune": "ERRE" + "codePostal": "20124", + "codeCommune": "2A362", + "libelleAcheminement": "ZONZA", + "nomCommune": "ZONZA" }, { - "codePostal": "04110", - "codeCommune": "04129", - "libelleAcheminement": "MONTJUSTIN", - "nomCommune": "MONTJUSTIN" + "codePostal": "30125", + "codeCommune": "30310", + "libelleAcheminement": "SAUMANE", + "nomCommune": "SAUMANE" }, { - "codePostal": "65250", - "codeCommune": "65385", - "libelleAcheminement": "ST ARROMAN", - "nomCommune": "ST ARROMAN" + "codePostal": "42670", + "codeCommune": "42086", + "libelleAcheminement": "ECOCHE", + "nomCommune": "ECOCHE" }, { - "codePostal": "33580", - "codeCommune": "33345", - "libelleAcheminement": "LE PUY", - "nomCommune": "LE PUY" + "codePostal": "41100", + "codeCommune": "41187", + "libelleAcheminement": "RENAY", + "nomCommune": "RENAY" }, { - "codePostal": "59320", - "codeCommune": "59208", - "libelleAcheminement": "ESCOBECQUES", - "nomCommune": "ESCOBECQUES" + "codePostal": "20244", + "codeCommune": "2B003", + "libelleAcheminement": "AITI", + "nomCommune": "AITI" }, { - "codePostal": "04150", - "codeCommune": "04132", - "libelleAcheminement": "MONTSALIER", - "nomCommune": "MONTSALIER" + "codePostal": "30450", + "codeCommune": "30316", + "libelleAcheminement": "SENECHAS", + "nomCommune": "SENECHAS" }, { - "codePostal": "65500", - "codeCommune": "65390", - "libelleAcheminement": "ST LEZER", - "nomCommune": "ST LEZER" + "codePostal": "42320", + "codeCommune": "42093", + "libelleAcheminement": "FARNAY", + "nomCommune": "FARNAY" }, { - "codePostal": "33420", - "codeCommune": "33350", - "libelleAcheminement": "RAUZAN", - "nomCommune": "RAUZAN" + "codePostal": "41100", + "codeCommune": "41200", + "libelleAcheminement": "STE ANNE", + "nomCommune": "STE ANNE" }, { - "codePostal": "59470", - "codeCommune": "59210", - "libelleAcheminement": "ESQUELBECQ", - "nomCommune": "ESQUELBECQ" + "codePostal": "20270", + "codeCommune": "2B009", + "libelleAcheminement": "ALERIA", + "nomCommune": "ALERIA" }, { - "codePostal": "04250", - "codeCommune": "04134", - "libelleAcheminement": "LA MOTTE DU CAIRE", - "nomCommune": "LA MOTTE DU CAIRE" + "codePostal": "30700", + "codeCommune": "30319", + "libelleAcheminement": "SERVIERS ET LABAUME", + "nomCommune": "SERVIERS ET LABAUME" }, { - "codePostal": "65370", - "codeCommune": "65391", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "42700", + "codeCommune": "42095", + "libelleAcheminement": "FIRMINY", + "nomCommune": "FIRMINY" }, { - "codePostal": "33220", - "codeCommune": "33354", - "libelleAcheminement": "RIOCAUD", - "nomCommune": "RIOCAUD" + "codePostal": "41190", + "codeCommune": "41208", + "libelleAcheminement": "ST ETIENNE DES GUERETS", + "nomCommune": "ST ETIENNE DES GUERETS" }, { - "codePostal": "59151", - "codeCommune": "59214", - "libelleAcheminement": "ESTREES", - "nomCommune": "ESTREES" + "codePostal": "20220", + "codeCommune": "2B020", + "libelleAcheminement": "AREGNO", + "nomCommune": "AREGNO" }, { - "codePostal": "04300", - "codeCommune": "04138", - "libelleAcheminement": "NIOZELLES", - "nomCommune": "NIOZELLES" + "codePostal": "30110", + "codeCommune": "30323", + "libelleAcheminement": "SOUSTELLE", + "nomCommune": "SOUSTELLE" }, { - "codePostal": "65400", - "codeCommune": "65396", - "libelleAcheminement": "ST SAVIN", - "nomCommune": "ST SAVIN" + "codePostal": "42470", + "codeCommune": "42098", + "libelleAcheminement": "FOURNEAUX", + "nomCommune": "FOURNEAUX" }, { - "codePostal": "33760", - "codeCommune": "33358", - "libelleAcheminement": "ROMAGNE", - "nomCommune": "ROMAGNE" + "codePostal": "41160", + "codeCommune": "41214", + "libelleAcheminement": "ST HILAIRE LA GRAVELLE", + "nomCommune": "ST HILAIRE LA GRAVELLE" }, { - "codePostal": "59219", - "codeCommune": "59218", - "libelleAcheminement": "ETROEUNGT", - "nomCommune": "ETROEUNGT" + "codePostal": "20225", + "codeCommune": "2B025", + "libelleAcheminement": "AVAPESSA", + "nomCommune": "AVAPESSA" }, { - "codePostal": "04310", - "codeCommune": "04149", - "libelleAcheminement": "PEYRUIS", - "nomCommune": "PEYRUIS" + "codePostal": "30430", + "codeCommune": "30327", + "libelleAcheminement": "THARAUX", + "nomCommune": "THARAUX" }, { - "codePostal": "65120", - "codeCommune": "65399", - "libelleAcheminement": "SALIGOS", - "nomCommune": "SALIGOS" + "codePostal": "42140", + "codeCommune": "42102", + "libelleAcheminement": "GRAMMOND", + "nomCommune": "GRAMMOND" }, { - "codePostal": "33670", - "codeCommune": "33363", - "libelleAcheminement": "SADIRAC", - "nomCommune": "SADIRAC" + "codePostal": "41800", + "codeCommune": "41215", + "libelleAcheminement": "ST JACQUES DES GUERETS", + "nomCommune": "ST JACQUES DES GUERETS" }, { - "codePostal": "59295", - "codeCommune": "59219", - "libelleAcheminement": "ESTRUN", - "nomCommune": "ESTRUN" + "codePostal": "20200", + "codeCommune": "2B033", + "libelleAcheminement": "BASTIA", + "nomCommune": "BASTIA" }, { - "codePostal": "04420", - "codeCommune": "04155", - "libelleAcheminement": "PRADS HAUTE BLEONE", - "nomCommune": "PRADS HAUTE BLEONE" + "codePostal": "30570", + "codeCommune": "30339", + "libelleAcheminement": "VAL D AIGOUAL", + "nomCommune": "VAL D AIGOUAL" }, { - "codePostal": "65360", - "codeCommune": "65401", - "libelleAcheminement": "SALLES ADOUR", - "nomCommune": "SALLES ADOUR" + "codePostal": "42460", + "codeCommune": "42104", + "libelleAcheminement": "LA GRESLE", + "nomCommune": "LA GRESLE" }, { - "codePostal": "33220", - "codeCommune": "33369", - "libelleAcheminement": "ST ANDRE ET APPELLES", - "nomCommune": "ST ANDRE ET APPELLES" + "codePostal": "41320", + "codeCommune": "41218", + "libelleAcheminement": "ST JULIEN SUR CHER", + "nomCommune": "ST JULIEN SUR CHER" }, { - "codePostal": "59750", - "codeCommune": "59225", - "libelleAcheminement": "FEIGNIES", - "nomCommune": "FEIGNIES" + "codePostal": "20252", + "codeCommune": "2B036", + "libelleAcheminement": "BIGORNO", + "nomCommune": "BIGORNO" }, { - "codePostal": "04420", - "codeCommune": "04155", - "libelleAcheminement": "PRADS HAUTE BLEONE", - "nomCommune": "PRADS HAUTE BLEONE" + "codePostal": "30570", + "codeCommune": "30339", + "libelleAcheminement": "VAL D AIGOUAL", + "nomCommune": "VAL D AIGOUAL" }, { - "codePostal": "65370", - "codeCommune": "65402", - "libelleAcheminement": "SAMURAN", - "nomCommune": "SAMURAN" + "codePostal": "42260", + "codeCommune": "42106", + "libelleAcheminement": "GREZOLLES", + "nomCommune": "GREZOLLES" }, { - "codePostal": "33390", - "codeCommune": "33370", - "libelleAcheminement": "ST ANDRONY", - "nomCommune": "ST ANDRONY" + "codePostal": "41170", + "codeCommune": "41224", + "libelleAcheminement": "ST MARC DU COR", + "nomCommune": "ST MARC DU COR" }, { - "codePostal": "59740", - "codeCommune": "59226", - "libelleAcheminement": "FELLERIES", - "nomCommune": "FELLERIES" + "codePostal": "20235", + "codeCommune": "2B039", + "libelleAcheminement": "BISINCHI", + "nomCommune": "BISINCHI" }, { - "codePostal": "04700", - "codeCommune": "04156", - "libelleAcheminement": "PUIMICHEL", - "nomCommune": "PUIMICHEL" + "codePostal": "30210", + "codeCommune": "30340", + "libelleAcheminement": "VALLIGUIERES", + "nomCommune": "VALLIGUIERES" }, { - "codePostal": "65100", - "codeCommune": "65415", - "libelleAcheminement": "SEGUS", - "nomCommune": "SEGUS" + "codePostal": "42600", + "codeCommune": "42122", + "libelleAcheminement": "LEZIGNEUX", + "nomCommune": "LEZIGNEUX" }, { - "codePostal": "33220", - "codeCommune": "33377", - "libelleAcheminement": "ST AVIT DE SOULEGE", - "nomCommune": "ST AVIT DE SOULEGE" + "codePostal": "41000", + "codeCommune": "41230", + "libelleAcheminement": "ST SULPICE DE POMMERAY", + "nomCommune": "ST SULPICE DE POMMERAY" }, { - "codePostal": "59680", - "codeCommune": "59231", - "libelleAcheminement": "FERRIERE LA PETITE", - "nomCommune": "FERRIERE LA PETITE" + "codePostal": "20290", + "codeCommune": "2B042", + "libelleAcheminement": "BORGO", + "nomCommune": "BORGO" }, { - "codePostal": "04150", - "codeCommune": "04162", - "libelleAcheminement": "REVEST DES BROUSSES", - "nomCommune": "REVEST DES BROUSSES" + "codePostal": "30530", + "codeCommune": "30345", + "libelleAcheminement": "LA VERNAREDE", + "nomCommune": "LA VERNAREDE" }, { - "codePostal": "65100", - "codeCommune": "65421", - "libelleAcheminement": "SERE LANSO", - "nomCommune": "SERE LANSO" + "codePostal": "42420", + "codeCommune": "42123", + "libelleAcheminement": "LORETTE", + "nomCommune": "LORETTE" }, { - "codePostal": "33220", - "codeCommune": "33378", - "libelleAcheminement": "ST AVIT ST NAZAIRE", - "nomCommune": "ST AVIT ST NAZAIRE" + "codePostal": "41120", + "codeCommune": "41233", + "libelleAcheminement": "SAMBIN", + "nomCommune": "SAMBIN" }, { - "codePostal": "59550", - "codeCommune": "59242", - "libelleAcheminement": "FONTAINE AU BOIS", - "nomCommune": "FONTAINE AU BOIS" + "codePostal": "20222", + "codeCommune": "2B043", + "libelleAcheminement": "BRANDO", + "nomCommune": "BRANDO" }, { - "codePostal": "04150", - "codeCommune": "04169", - "libelleAcheminement": "LA ROCHEGIRON", - "nomCommune": "LA ROCHEGIRON" + "codePostal": "30210", + "codeCommune": "30346", + "libelleAcheminement": "VERS PONT DU GARD", + "nomCommune": "VERS PONT DU GARD" }, { - "codePostal": "65320", - "codeCommune": "65422", - "libelleAcheminement": "SERON", - "nomCommune": "SERON" + "codePostal": "42300", + "codeCommune": "42127", + "libelleAcheminement": "MABLY", + "nomCommune": "MABLY" }, { - "codePostal": "33920", - "codeCommune": "33382", - "libelleAcheminement": "ST CHRISTOLY DE BLAYE", - "nomCommune": "ST CHRISTOLY DE BLAYE" + "codePostal": "41310", + "codeCommune": "41236", + "libelleAcheminement": "SASNIERES", + "nomCommune": "SASNIERES" }, { - "codePostal": "59610", - "codeCommune": "59249", - "libelleAcheminement": "FOURMIES", - "nomCommune": "FOURMIES" + "codePostal": "20222", + "codeCommune": "2B043", + "libelleAcheminement": "BRANDO", + "nomCommune": "BRANDO" }, { - "codePostal": "04500", - "codeCommune": "04172", - "libelleAcheminement": "ROUMOULES", - "nomCommune": "ROUMOULES" + "codePostal": "30600", + "codeCommune": "30347", + "libelleAcheminement": "VESTRIC ET CANDIAC", + "nomCommune": "VESTRIC ET CANDIAC" }, { - "codePostal": "65500", - "codeCommune": "65425", - "libelleAcheminement": "SIARROUY", - "nomCommune": "SIARROUY" + "codePostal": "42520", + "codeCommune": "42132", + "libelleAcheminement": "MALLEVAL", + "nomCommune": "MALLEVAL" }, { - "codePostal": "33820", - "codeCommune": "33389", - "libelleAcheminement": "ST CIERS SUR GIRONDE", - "nomCommune": "ST CIERS SUR GIRONDE" + "codePostal": "41130", + "codeCommune": "41242", + "libelleAcheminement": "SELLES SUR CHER", + "nomCommune": "SELLES SUR CHER" }, { - "codePostal": "59236", - "codeCommune": "59252", - "libelleAcheminement": "FRELINGHIEN", - "nomCommune": "FRELINGHIEN" + "codePostal": "20214", + "codeCommune": "2B049", + "libelleAcheminement": "CALENZANA", + "nomCommune": "CALENZANA" }, { - "codePostal": "04170", - "codeCommune": "04173", - "libelleAcheminement": "ST ANDRE LES ALPES", - "nomCommune": "ST ANDRE LES ALPES" + "codePostal": "30360", + "codeCommune": "30348", + "libelleAcheminement": "VEZENOBRES", + "nomCommune": "VEZENOBRES" }, { - "codePostal": "65000", - "codeCommune": "65440", - "libelleAcheminement": "TARBES", - "nomCommune": "TARBES" + "codePostal": "42140", + "codeCommune": "42133", + "libelleAcheminement": "MARCENOD", + "nomCommune": "MARCENOD" }, { - "codePostal": "33350", - "codeCommune": "33390", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "41300", + "codeCommune": "41249", + "libelleAcheminement": "SOUESMES", + "nomCommune": "SOUESMES" }, { - "codePostal": "59273", - "codeCommune": "59256", - "libelleAcheminement": "FRETIN", - "nomCommune": "FRETIN" + "codePostal": "20214", + "codeCommune": "2B049", + "libelleAcheminement": "CALENZANA", + "nomCommune": "CALENZANA" }, { - "codePostal": "04500", - "codeCommune": "04176", - "libelleAcheminement": "STE CROIX DU VERDON", - "nomCommune": "STE CROIX DU VERDON" + "codePostal": "30260", + "codeCommune": "30349", + "libelleAcheminement": "VIC LE FESQ", + "nomCommune": "VIC LE FESQ" }, { - "codePostal": "65350", - "codeCommune": "65443", - "libelleAcheminement": "THUY", - "nomCommune": "THUY" + "codePostal": "42140", + "codeCommune": "42138", + "libelleAcheminement": "MARINGES", + "nomCommune": "MARINGES" }, { - "codePostal": "33430", - "codeCommune": "33391", - "libelleAcheminement": "ST COME", - "nomCommune": "ST COME" + "codePostal": "41800", + "codeCommune": "41250", + "libelleAcheminement": "SOUGE", + "nomCommune": "SOUGE" }, { - "codePostal": "59242", - "codeCommune": "59258", - "libelleAcheminement": "GENECH", - "nomCommune": "GENECH" + "codePostal": "20244", + "codeCommune": "2B051", + "libelleAcheminement": "CAMBIA", + "nomCommune": "CAMBIA" }, { - "codePostal": "04270", - "codeCommune": "04182", - "libelleAcheminement": "ST JULIEN D ASSE", - "nomCommune": "ST JULIEN D ASSE" + "codePostal": "30400", + "codeCommune": "30351", + "libelleAcheminement": "VILLENEUVE LES AVIGNON", + "nomCommune": "VILLENEUVE LES AVIGNON" }, { - "codePostal": "65300", - "codeCommune": "65456", - "libelleAcheminement": "UGLAS", - "nomCommune": "UGLAS" + "codePostal": "42660", + "codeCommune": "42139", + "libelleAcheminement": "MARLHES", + "nomCommune": "MARLHES" }, { - "codePostal": "33490", - "codeCommune": "33403", - "libelleAcheminement": "STE FOY LA LONGUE", - "nomCommune": "STE FOY LA LONGUE" + "codePostal": "41370", + "codeCommune": "41253", + "libelleAcheminement": "TALCY", + "nomCommune": "TALCY" }, { - "codePostal": "59530", - "codeCommune": "59259", - "libelleAcheminement": "GHISSIGNIES", - "nomCommune": "GHISSIGNIES" + "codePostal": "20252", + "codeCommune": "2B055", + "libelleAcheminement": "CAMPITELLO", + "nomCommune": "CAMPITELLO" }, { - "codePostal": "04300", - "codeCommune": "04188", - "libelleAcheminement": "ST MAIME", - "nomCommune": "ST MAIME" + "codePostal": "30770", + "codeCommune": "30353", + "libelleAcheminement": "VISSEC", + "nomCommune": "VISSEC" }, { - "codePostal": "65140", - "codeCommune": "65457", - "libelleAcheminement": "UGNOUAS", - "nomCommune": "UGNOUAS" + "codePostal": "42380", + "codeCommune": "42146", + "libelleAcheminement": "MONTARCHER", + "nomCommune": "MONTARCHER" }, { - "codePostal": "33490", - "codeCommune": "33411", - "libelleAcheminement": "ST GERMAIN DE GRAVE", - "nomCommune": "ST GERMAIN DE GRAVE" + "codePostal": "41190", + "codeCommune": "41261", + "libelleAcheminement": "TOURAILLES", + "nomCommune": "TOURAILLES" }, { - "codePostal": "59122", - "codeCommune": "59260", - "libelleAcheminement": "GHYVELDE", - "nomCommune": "GHYVELDE" + "codePostal": "20270", + "codeCommune": "2B075", + "libelleAcheminement": "CASEVECCHIE", + "nomCommune": "CASEVECCHIE" }, { - "codePostal": "04870", - "codeCommune": "04192", - "libelleAcheminement": "ST MICHEL L OBSERVATOIRE", - "nomCommune": "ST MICHEL L OBSERVATOIRE" + "codePostal": "30350", + "codeCommune": "30354", + "libelleAcheminement": "MONTAGNAC", + "nomCommune": "MONTAGNAC" }, { - "codePostal": "66200", - "codeCommune": "66002", - "libelleAcheminement": "ALENYA", - "nomCommune": "ALENYA" + "codePostal": "42130", + "codeCommune": "42150", + "libelleAcheminement": "MONTVERDUN", + "nomCommune": "MONTVERDUN" }, { - "codePostal": "33340", - "codeCommune": "33412", - "libelleAcheminement": "ST GERMAIN D ESTEUIL", - "nomCommune": "ST GERMAIN D ESTEUIL" + "codePostal": "41290", + "codeCommune": "41273", + "libelleAcheminement": "VIEVY LE RAYE", + "nomCommune": "VIEVY LE RAYE" }, { - "codePostal": "59144", - "codeCommune": "59265", - "libelleAcheminement": "GOMMEGNIES", - "nomCommune": "GOMMEGNIES" + "codePostal": "20218", + "codeCommune": "2B082", + "libelleAcheminement": "CASTINETA", + "nomCommune": "CASTINETA" }, { - "codePostal": "06260", - "codeCommune": "04194", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "31280", + "codeCommune": "31003", + "libelleAcheminement": "AIGREFEUILLE", + "nomCommune": "AIGREFEUILLE" }, { - "codePostal": "66320", - "codeCommune": "66013", - "libelleAcheminement": "BAILLESTAVY", - "nomCommune": "BAILLESTAVY" + "codePostal": "42510", + "codeCommune": "42155", + "libelleAcheminement": "NERVIEUX", + "nomCommune": "NERVIEUX" }, { - "codePostal": "33750", - "codeCommune": "33413", - "libelleAcheminement": "ST GERMAIN DU PUCH", - "nomCommune": "ST GERMAIN DU PUCH" + "codePostal": "41200", + "codeCommune": "41282", + "libelleAcheminement": "VILLEHERVIERS", + "nomCommune": "VILLEHERVIERS" }, { - "codePostal": "59760", - "codeCommune": "59271", - "libelleAcheminement": "GRANDE SYNTHE", - "nomCommune": "GRANDE SYNTHE" + "codePostal": "20221", + "codeCommune": "2B087", + "libelleAcheminement": "CERVIONE", + "nomCommune": "CERVIONE" }, { - "codePostal": "04220", - "codeCommune": "04197", - "libelleAcheminement": "STE TULLE", - "nomCommune": "STE TULLE" + "codePostal": "31460", + "codeCommune": "31006", + "libelleAcheminement": "ALBIAC", + "nomCommune": "ALBIAC" }, { - "codePostal": "66420", - "codeCommune": "66017", - "libelleAcheminement": "LE BARCARES", - "nomCommune": "LE BARCARES" + "codePostal": "42990", + "codeCommune": "42164", + "libelleAcheminement": "PALOGNEUX", + "nomCommune": "PALOGNEUX" }, { - "codePostal": "33480", - "codeCommune": "33417", - "libelleAcheminement": "STE HELENE", - "nomCommune": "STE HELENE" + "codePostal": "41100", + "codeCommune": "41290", + "libelleAcheminement": "VILLEROMAIN", + "nomCommune": "VILLEROMAIN" }, { - "codePostal": "59198", - "codeCommune": "59285", - "libelleAcheminement": "HASPRES", - "nomCommune": "HASPRES" + "codePostal": "20224", + "codeCommune": "2B095", + "libelleAcheminement": "CORSCIA", + "nomCommune": "CORSCIA" }, { - "codePostal": "04150", - "codeCommune": "04201", - "libelleAcheminement": "SAUMANE", - "nomCommune": "SAUMANE" + "codePostal": "31160", + "codeCommune": "31011", + "libelleAcheminement": "ARBAS", + "nomCommune": "ARBAS" }, { - "codePostal": "66420", - "codeCommune": "66017", - "libelleAcheminement": "LE BARCARES", - "nomCommune": "LE BARCARES" + "codePostal": "42360", + "codeCommune": "42165", + "libelleAcheminement": "PANISSIERES", + "nomCommune": "PANISSIERES" }, { - "codePostal": "33540", - "codeCommune": "33419", - "libelleAcheminement": "ST HILAIRE DU BOIS", - "nomCommune": "ST HILAIRE DU BOIS" + "codePostal": "41350", + "codeCommune": "41295", + "libelleAcheminement": "VINEUIL", + "nomCommune": "VINEUIL" }, { - "codePostal": "59320", - "codeCommune": "59286", - "libelleAcheminement": "HAUBOURDIN", - "nomCommune": "HAUBOURDIN" + "codePostal": "20212", + "codeCommune": "2B105", + "libelleAcheminement": "ERBAJOLO", + "nomCommune": "ERBAJOLO" }, { - "codePostal": "04300", - "codeCommune": "04206", - "libelleAcheminement": "SIGONCE", - "nomCommune": "SIGONCE" + "codePostal": "31420", + "codeCommune": "31023", + "libelleAcheminement": "AULON", + "nomCommune": "AULON" }, { - "codePostal": "66110", - "codeCommune": "66018", - "libelleAcheminement": "LA BASTIDE", - "nomCommune": "LA BASTIDE" + "codePostal": "42260", + "codeCommune": "42173", + "libelleAcheminement": "POMMIERS EN FOREZ", + "nomCommune": "POMMIERS EN FOREZ" }, { - "codePostal": "33112", - "codeCommune": "33424", - "libelleAcheminement": "ST LAURENT MEDOC", - "nomCommune": "ST LAURENT MEDOC" + "codePostal": "41600", + "codeCommune": "41296", + "libelleAcheminement": "VOUZON", + "nomCommune": "VOUZON" }, { - "codePostal": "59171", - "codeCommune": "59297", - "libelleAcheminement": "HELESMES", - "nomCommune": "HELESMES" + "codePostal": "20212", + "codeCommune": "2B116", + "libelleAcheminement": "FOCICCHIA", + "nomCommune": "FOCICCHIA" }, { - "codePostal": "04200", - "codeCommune": "04209", - "libelleAcheminement": "SISTERON", - "nomCommune": "SISTERON" + "codePostal": "31290", + "codeCommune": "31037", + "libelleAcheminement": "AVIGNONET LAURAGAIS", + "nomCommune": "AVIGNONET LAURAGAIS" }, { - "codePostal": "66720", - "codeCommune": "66019", - "libelleAcheminement": "BELESTA", - "nomCommune": "BELESTA" + "codePostal": "42600", + "codeCommune": "42180", + "libelleAcheminement": "PRECIEUX", + "nomCommune": "PRECIEUX" }, { - "codePostal": "33670", - "codeCommune": "33431", - "libelleAcheminement": "ST LEON", - "nomCommune": "ST LEON" + "codePostal": "41600", + "codeCommune": "41297", + "libelleAcheminement": "YVOY LE MARRON", + "nomCommune": "YVOY LE MARRON" }, { - "codePostal": "59190", - "codeCommune": "59308", - "libelleAcheminement": "HONDEGHEM", - "nomCommune": "HONDEGHEM" + "codePostal": "20218", + "codeCommune": "2B122", + "libelleAcheminement": "GAVIGNANO", + "nomCommune": "GAVIGNANO" }, { - "codePostal": "04170", - "codeCommune": "04218", - "libelleAcheminement": "THORAME BASSE", - "nomCommune": "THORAME BASSE" + "codePostal": "31420", + "codeCommune": "31039", + "libelleAcheminement": "BACHAS", + "nomCommune": "BACHAS" }, { - "codePostal": "66160", - "codeCommune": "66024", - "libelleAcheminement": "LE BOULOU", - "nomCommune": "LE BOULOU" + "codePostal": "42340", + "codeCommune": "42185", + "libelleAcheminement": "RIVAS", + "nomCommune": "RIVAS" }, { - "codePostal": "33490", - "codeCommune": "33438", - "libelleAcheminement": "ST MAIXANT", - "nomCommune": "ST MAIXANT" + "codePostal": "42160", + "codeCommune": "42005", + "libelleAcheminement": "ANDREZIEUX BOUTHEON", + "nomCommune": "ANDREZIEUX BOUTHEON" }, { - "codePostal": "59111", - "codeCommune": "59313", - "libelleAcheminement": "HORDAIN", - "nomCommune": "HORDAIN" + "codePostal": "20220", + "codeCommune": "2B134", + "libelleAcheminement": "L ILE ROUSSE", + "nomCommune": "L ILE ROUSSE" }, { - "codePostal": "04400", - "codeCommune": "04220", - "libelleAcheminement": "LES THUILES", - "nomCommune": "LES THUILES" + "codePostal": "31510", + "codeCommune": "31041", + "libelleAcheminement": "BAGIRY", + "nomCommune": "BAGIRY" }, { - "codePostal": "66330", - "codeCommune": "66028", - "libelleAcheminement": "CABESTANY", - "nomCommune": "CABESTANY" + "codePostal": "42890", + "codeCommune": "42195", + "libelleAcheminement": "SAIL SOUS COUZAN", + "nomCommune": "SAIL SOUS COUZAN" }, { - "codePostal": "33160", - "codeCommune": "33449", - "libelleAcheminement": "ST MEDARD EN JALLES", - "nomCommune": "ST MEDARD EN JALLES" + "codePostal": "42510", + "codeCommune": "42011", + "libelleAcheminement": "BALBIGNY", + "nomCommune": "BALBIGNY" }, { - "codePostal": "59171", - "codeCommune": "59314", - "libelleAcheminement": "HORNAING", - "nomCommune": "HORNAING" + "codePostal": "20243", + "codeCommune": "2B135", + "libelleAcheminement": "ISOLACCIO DI FIUMORBO", + "nomCommune": "ISOLACCIO DI FIUMORBO" }, { - "codePostal": "04200", - "codeCommune": "04233", - "libelleAcheminement": "VAUMEILH", - "nomCommune": "VAUMEILH" + "codePostal": "31110", + "codeCommune": "31042", + "libelleAcheminement": "BAGNERES DE LUCHON", + "nomCommune": "BAGNERES DE LUCHON" }, { - "codePostal": "66300", - "codeCommune": "66029", - "libelleAcheminement": "CAIXAS", - "nomCommune": "CAIXAS" + "codePostal": "42310", + "codeCommune": "42203", + "libelleAcheminement": "ST BONNET DES QUARTS", + "nomCommune": "ST BONNET DES QUARTS" }, { - "codePostal": "33126", - "codeCommune": "33451", - "libelleAcheminement": "ST MICHEL DE FRONSAC", - "nomCommune": "ST MICHEL DE FRONSAC" + "codePostal": "42210", + "codeCommune": "42013", + "libelleAcheminement": "BELLEGARDE EN FOREZ", + "nomCommune": "BELLEGARDE EN FOREZ" }, { - "codePostal": "59552", - "codeCommune": "59329", - "libelleAcheminement": "LAMBRES LEZ DOUAI", - "nomCommune": "LAMBRES LEZ DOUAI" + "codePostal": "20230", + "codeCommune": "2B143", + "libelleAcheminement": "LINGUIZZETTA", + "nomCommune": "LINGUIZZETTA" }, { - "codePostal": "04170", - "codeCommune": "04236", - "libelleAcheminement": "VERGONS", - "nomCommune": "VERGONS" + "codePostal": "31510", + "codeCommune": "31045", + "libelleAcheminement": "BARBAZAN", + "nomCommune": "BARBAZAN" }, { - "codePostal": "66130", - "codeCommune": "66040", - "libelleAcheminement": "CASEFABRE", - "nomCommune": "CASEFABRE" + "codePostal": "42380", + "codeCommune": "42204", + "libelleAcheminement": "ST BONNET LE CHATEAU", + "nomCommune": "ST BONNET LE CHATEAU" }, { - "codePostal": "33820", - "codeCommune": "33456", - "libelleAcheminement": "ST PALAIS", - "nomCommune": "ST PALAIS" + "codePostal": "42670", + "codeCommune": "42014", + "libelleAcheminement": "BELLEROCHE", + "nomCommune": "BELLEROCHE" }, { - "codePostal": "59219", - "codeCommune": "59333", - "libelleAcheminement": "LAROUILLIES", - "nomCommune": "LAROUILLIES" + "codePostal": "20290", + "codeCommune": "2B148", + "libelleAcheminement": "LUCCIANA", + "nomCommune": "LUCCIANA" }, { - "codePostal": "04110", - "codeCommune": "04241", - "libelleAcheminement": "VILLEMUS", - "nomCommune": "VILLEMUS" + "codePostal": "31450", + "codeCommune": "31048", + "libelleAcheminement": "BAZIEGE", + "nomCommune": "BAZIEGE" }, { - "codePostal": "66300", - "codeCommune": "66044", - "libelleAcheminement": "CASTELNOU", - "nomCommune": "CASTELNOU" + "codePostal": "42400", + "codeCommune": "42207", + "libelleAcheminement": "ST CHAMOND", + "nomCommune": "ST CHAMOND" }, { - "codePostal": "33390", - "codeCommune": "33458", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "42220", + "codeCommune": "42023", + "libelleAcheminement": "BOURG ARGENTAL", + "nomCommune": "BOURG ARGENTAL" }, { - "codePostal": "59259", - "codeCommune": "59336", - "libelleAcheminement": "LECLUSE", - "nomCommune": "LECLUSE" + "codePostal": "20228", + "codeCommune": "2B152", + "libelleAcheminement": "LURI", + "nomCommune": "LURI" }, { - "codePostal": "05460", - "codeCommune": "05001", - "libelleAcheminement": "ABRIES RISTOLAS", - "nomCommune": "ABRIES RISTOLAS" + "codePostal": "31380", + "codeCommune": "31049", + "libelleAcheminement": "BAZUS", + "nomCommune": "BAZUS" }, { - "codePostal": "66220", - "codeCommune": "66046", - "libelleAcheminement": "CAUDIES DE FENOUILLEDES", - "nomCommune": "CAUDIES DE FENOUILLEDES" + "codePostal": "42320", + "codeCommune": "42208", + "libelleAcheminement": "ST CHRISTO EN JAREZ", + "nomCommune": "ST CHRISTO EN JAREZ" }, { - "codePostal": "33330", - "codeCommune": "33459", - "libelleAcheminement": "ST PEY D ARMENS", - "nomCommune": "ST PEY D ARMENS" + "codePostal": "42220", + "codeCommune": "42028", + "libelleAcheminement": "BURDIGNES", + "nomCommune": "BURDIGNES" }, { - "codePostal": "59495", - "codeCommune": "59340", - "libelleAcheminement": "LEFFRINCKOUCKE", - "nomCommune": "LEFFRINCKOUCKE" + "codePostal": "20228", + "codeCommune": "2B152", + "libelleAcheminement": "LURI", + "nomCommune": "LURI" }, { - "codePostal": "05120", - "codeCommune": "05006", - "libelleAcheminement": "L ARGENTIERE LA BESSEE", - "nomCommune": "L ARGENTIERE LA BESSEE" + "codePostal": "31450", + "codeCommune": "31057", + "libelleAcheminement": "BELBERAUD", + "nomCommune": "BELBERAUD" }, { - "codePostal": "66500", - "codeCommune": "66051", - "libelleAcheminement": "CLARA VILLERACH", - "nomCommune": "CLARA VILLERACH" + "codePostal": "42160", + "codeCommune": "42211", + "libelleAcheminement": "ST CYPRIEN", + "nomCommune": "ST CYPRIEN" }, { - "codePostal": "33490", - "codeCommune": "33463", - "libelleAcheminement": "ST PIERRE D AURILLAC", - "nomCommune": "ST PIERRE D AURILLAC" + "codePostal": "42600", + "codeCommune": "42037", + "libelleAcheminement": "CHALAIN D UZORE", + "nomCommune": "CHALAIN D UZORE" }, { - "codePostal": "59287", - "codeCommune": "59345", - "libelleAcheminement": "LEWARDE", - "nomCommune": "LEWARDE" + "codePostal": "20214", + "codeCommune": "2B165", + "libelleAcheminement": "MONCALE", + "nomCommune": "MONCALE" }, { - "codePostal": "05800", - "codeCommune": "05009", - "libelleAcheminement": "ASPRES LES CORPS", - "nomCommune": "ASPRES LES CORPS" + "codePostal": "31110", + "codeCommune": "31064", + "libelleAcheminement": "BENQUE DESSOUS ET DESSUS", + "nomCommune": "BENQUE DESSOUS ET DESSUS" }, { - "codePostal": "66500", - "codeCommune": "66052", - "libelleAcheminement": "CODALET", - "nomCommune": "CODALET" + "codePostal": "42140", + "codeCommune": "42216", + "libelleAcheminement": "ST DENIS SUR COISE", + "nomCommune": "ST DENIS SUR COISE" }, { - "codePostal": "33760", - "codeCommune": "33464", - "libelleAcheminement": "ST PIERRE DE BAT", - "nomCommune": "ST PIERRE DE BAT" + "codePostal": "42140", + "codeCommune": "42055", + "libelleAcheminement": "CHATELUS", + "nomCommune": "CHATELUS" }, { - "codePostal": "59260", - "codeCommune": "59346", - "libelleAcheminement": "LEZENNES", - "nomCommune": "LEZENNES" + "codePostal": "20238", + "codeCommune": "2B170", + "libelleAcheminement": "MORSIGLIA", + "nomCommune": "MORSIGLIA" }, { - "codePostal": "05140", - "codeCommune": "05010", - "libelleAcheminement": "ASPRES SUR BUECH", - "nomCommune": "ASPRES SUR BUECH" + "codePostal": "31340", + "codeCommune": "31073", + "libelleAcheminement": "BONDIGOUX", + "nomCommune": "BONDIGOUX" }, { - "codePostal": "66200", - "codeCommune": "66059", - "libelleAcheminement": "CORNEILLA DEL VERCOL", - "nomCommune": "CORNEILLA DEL VERCOL" + "codePostal": "42800", + "codeCommune": "42225", + "libelleAcheminement": "GENILAC", + "nomCommune": "GENILAC" }, { - "codePostal": "33750", - "codeCommune": "33466", - "libelleAcheminement": "ST QUENTIN DE BARON", - "nomCommune": "ST QUENTIN DE BARON" + "codePostal": "42114", + "codeCommune": "42063", + "libelleAcheminement": "CHIRASSIMONT", + "nomCommune": "CHIRASSIMONT" }, { - "codePostal": "59260", - "codeCommune": "59350", - "libelleAcheminement": "LILLE", - "nomCommune": "LILLE" + "codePostal": "20239", + "codeCommune": "2B172", + "libelleAcheminement": "MURATO", + "nomCommune": "MURATO" }, { - "codePostal": "05230", - "codeCommune": "05011", - "libelleAcheminement": "AVANCON", - "nomCommune": "AVANCON" + "codePostal": "31590", + "codeCommune": "31074", + "libelleAcheminement": "BONREPOS RIQUET", + "nomCommune": "BONREPOS RIQUET" }, { - "codePostal": "66260", - "codeCommune": "66061", - "libelleAcheminement": "COUSTOUGES", - "nomCommune": "COUSTOUGES" + "codePostal": "42800", + "codeCommune": "42225", + "libelleAcheminement": "GENILAC", + "nomCommune": "GENILAC" }, { - "codePostal": "33350", - "codeCommune": "33468", - "libelleAcheminement": "STE RADEGONDE", - "nomCommune": "STE RADEGONDE" + "codePostal": "42410", + "codeCommune": "42064", + "libelleAcheminement": "CHUYER", + "nomCommune": "CHUYER" }, { - "codePostal": "59777", - "codeCommune": "59350", - "libelleAcheminement": "LILLE", - "nomCommune": "LILLE" + "codePostal": "20225", + "codeCommune": "2B173", + "libelleAcheminement": "MURO", + "nomCommune": "MURO" }, { - "codePostal": "05200", - "codeCommune": "05012", - "libelleAcheminement": "BARATIER", - "nomCommune": "BARATIER" + "codePostal": "31350", + "codeCommune": "31080", + "libelleAcheminement": "BOULOGNE SUR GESSE", + "nomCommune": "BOULOGNE SUR GESSE" }, { - "codePostal": "66320", - "codeCommune": "66070", - "libelleAcheminement": "ESPIRA DE CONFLENT", - "nomCommune": "ESPIRA DE CONFLENT" + "codePostal": "42510", + "codeCommune": "42226", + "libelleAcheminement": "ST GEORGES DE BAROILLE", + "nomCommune": "ST GEORGES DE BAROILLE" }, { - "codePostal": "33250", - "codeCommune": "33471", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "42110", + "codeCommune": "42066", + "libelleAcheminement": "CLEPPE", + "nomCommune": "CLEPPE" }, { - "codePostal": "59570", - "codeCommune": "59357", - "libelleAcheminement": "LA LONGUEVILLE", - "nomCommune": "LA LONGUEVILLE" + "codePostal": "20232", + "codeCommune": "2B188", + "libelleAcheminement": "OLMETA DI TUDA", + "nomCommune": "OLMETA DI TUDA" }, { - "codePostal": "05230", - "codeCommune": "05017", - "libelleAcheminement": "LA BATIE NEUVE", - "nomCommune": "LA BATIE NEUVE" + "codePostal": "31440", + "codeCommune": "31085", + "libelleAcheminement": "BOUTX", + "nomCommune": "BOUTX" }, { - "codePostal": "66800", - "codeCommune": "66072", - "libelleAcheminement": "ESTAVAR", - "nomCommune": "ESTAVAR" + "codePostal": "42560", + "codeCommune": "42240", + "libelleAcheminement": "ST JEAN SOLEYMIEUX", + "nomCommune": "ST JEAN SOLEYMIEUX" }, { - "codePostal": "33390", - "codeCommune": "33477", - "libelleAcheminement": "ST SEURIN DE CURSAC", - "nomCommune": "ST SEURIN DE CURSAC" + "codePostal": "42220", + "codeCommune": "42067", + "libelleAcheminement": "COLOMBIER", + "nomCommune": "COLOMBIER" }, { - "codePostal": "59830", - "codeCommune": "59364", - "libelleAcheminement": "LOUVIL", - "nomCommune": "LOUVIL" + "codePostal": "20270", + "codeCommune": "2B201", + "libelleAcheminement": "PANCHERACCIA", + "nomCommune": "PANCHERACCIA" }, { - "codePostal": "05000", - "codeCommune": "05018", - "libelleAcheminement": "LA BATIE VIEILLE", - "nomCommune": "LA BATIE VIEILLE" + "codePostal": "31420", + "codeCommune": "31086", + "libelleAcheminement": "BOUZIN", + "nomCommune": "BOUZIN" }, { - "codePostal": "66800", - "codeCommune": "66075", - "libelleAcheminement": "EYNE", - "nomCommune": "EYNE" + "codePostal": "42590", + "codeCommune": "42241", + "libelleAcheminement": "ST JODARD", + "nomCommune": "ST JODARD" }, { - "codePostal": "33540", - "codeCommune": "33482", - "libelleAcheminement": "ST SULPICE DE POMMIERS", - "nomCommune": "ST SULPICE DE POMMIERS" + "codePostal": "42120", + "codeCommune": "42069", + "libelleAcheminement": "COMMELLE VERNAY", + "nomCommune": "COMMELLE VERNAY" }, { - "codePostal": "59134", - "codeCommune": "59371", - "libelleAcheminement": "LE MAISNIL", - "nomCommune": "LE MAISNIL" + "codePostal": "20253", + "codeCommune": "2B205", + "libelleAcheminement": "PATRIMONIO", + "nomCommune": "PATRIMONIO" }, { - "codePostal": "05700", - "codeCommune": "05021", - "libelleAcheminement": "LE BERSAC", - "nomCommune": "LE BERSAC" + "codePostal": "31490", + "codeCommune": "31088", + "libelleAcheminement": "BRAX", + "nomCommune": "BRAX" }, { - "codePostal": "66320", - "codeCommune": "66089", - "libelleAcheminement": "JOCH", - "nomCommune": "JOCH" + "codePostal": "42111", + "codeCommune": "42245", + "libelleAcheminement": "VETRE SUR ANZON", + "nomCommune": "VETRE SUR ANZON" }, { - "codePostal": "33710", - "codeCommune": "33486", - "libelleAcheminement": "ST TROJAN", - "nomCommune": "ST TROJAN" + "codePostal": "42210", + "codeCommune": "42075", + "libelleAcheminement": "CRAINTILLEUX", + "nomCommune": "CRAINTILLEUX" }, { - "codePostal": "59127", - "codeCommune": "59372", - "libelleAcheminement": "MALINCOURT", - "nomCommune": "MALINCOURT" + "codePostal": "20229", + "codeCommune": "2B219", + "libelleAcheminement": "PIEDICROCE", + "nomCommune": "PIEDICROCE" }, { - "codePostal": "05600", - "codeCommune": "05026", - "libelleAcheminement": "CEILLAC", - "nomCommune": "CEILLAC" + "codePostal": "31460", + "codeCommune": "31097", + "libelleAcheminement": "LE CABANIAL", + "nomCommune": "LE CABANIAL" }, { - "codePostal": "66230", - "codeCommune": "66091", - "libelleAcheminement": "LAMANERE", - "nomCommune": "LAMANERE" + "codePostal": "42680", + "codeCommune": "42256", + "libelleAcheminement": "ST MARCELLIN EN FOREZ", + "nomCommune": "ST MARCELLIN EN FOREZ" }, { - "codePostal": "33440", - "codeCommune": "33487", - "libelleAcheminement": "ST VINCENT DE PAUL", - "nomCommune": "ST VINCENT DE PAUL" + "codePostal": "42460", + "codeCommune": "42079", + "libelleAcheminement": "CUINZIER", + "nomCommune": "CUINZIER" }, { - "codePostal": "59440", - "codeCommune": "59374", - "libelleAcheminement": "MARBAIX", - "nomCommune": "MARBAIX" + "codePostal": "20251", + "codeCommune": "2B226", + "libelleAcheminement": "PIETRASERENA", + "nomCommune": "PIETRASERENA" }, { - "codePostal": "05260", - "codeCommune": "05029", - "libelleAcheminement": "CHABOTTES", - "nomCommune": "CHABOTTES" + "codePostal": "31460", + "codeCommune": "31102", + "libelleAcheminement": "CAMBIAC", + "nomCommune": "CAMBIAC" }, { - "codePostal": "66200", - "codeCommune": "66094", - "libelleAcheminement": "LATOUR BAS ELNE", - "nomCommune": "LATOUR BAS ELNE" + "codePostal": "42190", + "codeCommune": "42273", + "libelleAcheminement": "ST PIERRE LA NOAILLE", + "nomCommune": "ST PIERRE LA NOAILLE" }, { - "codePostal": "33920", - "codeCommune": "33489", - "libelleAcheminement": "ST VIVIEN DE BLAYE", - "nomCommune": "ST VIVIEN DE BLAYE" + "codePostal": "42110", + "codeCommune": "42094", + "libelleAcheminement": "FEURS", + "nomCommune": "FEURS" }, { - "codePostal": "59252", - "codeCommune": "59379", - "libelleAcheminement": "MARCQ EN OSTREVENT", - "nomCommune": "MARCQ EN OSTREVENT" + "codePostal": "20240", + "codeCommune": "2B236", + "libelleAcheminement": "POGGIO DI NAZZA", + "nomCommune": "POGGIO DI NAZZA" }, { - "codePostal": "05000", - "codeCommune": "05037", - "libelleAcheminement": "CHATEAUVIEUX", - "nomCommune": "CHATEAUVIEUX" + "codePostal": "31430", + "codeCommune": "31119", + "libelleAcheminement": "CASTELNAU PICAMPEAU", + "nomCommune": "CASTELNAU PICAMPEAU" }, { - "codePostal": "66220", - "codeCommune": "66097", - "libelleAcheminement": "LESQUERDE", - "nomCommune": "LESQUERDE" + "codePostal": "42440", + "codeCommune": "42295", + "libelleAcheminement": "LES SALLES", + "nomCommune": "LES SALLES" }, { - "codePostal": "33340", - "codeCommune": "33493", - "libelleAcheminement": "ST YZANS DE MEDOC", - "nomCommune": "ST YZANS DE MEDOC" + "codePostal": "42480", + "codeCommune": "42097", + "libelleAcheminement": "LA FOUILLOUSE", + "nomCommune": "LA FOUILLOUSE" }, { - "codePostal": "59360", - "codeCommune": "59395", - "libelleAcheminement": "MAZINGHIEN", - "nomCommune": "MAZINGHIEN" + "codePostal": "20250", + "codeCommune": "2B238", + "libelleAcheminement": "POGGIO DI VENACO", + "nomCommune": "POGGIO DI VENACO" }, { - "codePostal": "05350", - "codeCommune": "05038", - "libelleAcheminement": "CHATEAU VILLE VIEILLE", - "nomCommune": "CHATEAU VILLE VIEILLE" + "codePostal": "31360", + "codeCommune": "31124", + "libelleAcheminement": "CASTILLON DE ST MARTORY", + "nomCommune": "CASTILLON DE ST MARTORY" }, { - "codePostal": "66210", - "codeCommune": "66098", - "libelleAcheminement": "LA LLAGONNE", - "nomCommune": "LA LLAGONNE" + "codePostal": "42450", + "codeCommune": "42304", + "libelleAcheminement": "SURY LE COMTAL", + "nomCommune": "SURY LE COMTAL" }, { - "codePostal": "33670", - "codeCommune": "33505", - "libelleAcheminement": "LA SAUVE", - "nomCommune": "LA SAUVE" + "codePostal": "42220", + "codeCommune": "42101", + "libelleAcheminement": "GRAIX", + "nomCommune": "GRAIX" }, { - "codePostal": "59660", - "codeCommune": "59400", - "libelleAcheminement": "MERVILLE", - "nomCommune": "MERVILLE" + "codePostal": "20218", + "codeCommune": "2B244", + "libelleAcheminement": "POPOLASCA", + "nomCommune": "POPOLASCA" }, { - "codePostal": "05110", - "codeCommune": "05049", - "libelleAcheminement": "ESPARRON", - "nomCommune": "ESPARRON" + "codePostal": "31110", + "codeCommune": "31127", + "libelleAcheminement": "CAUBOUS", + "nomCommune": "CAUBOUS" }, { - "codePostal": "66500", - "codeCommune": "66104", - "libelleAcheminement": "LOS MASOS", - "nomCommune": "LOS MASOS" + "codePostal": "42740", + "codeCommune": "42308", + "libelleAcheminement": "LA TERRASSE SUR DORLAY", + "nomCommune": "LA TERRASSE SUR DORLAY" }, { - "codePostal": "33690", - "codeCommune": "33511", - "libelleAcheminement": "SENDETS", - "nomCommune": "SENDETS" + "codePostal": "42560", + "codeCommune": "42107", + "libelleAcheminement": "GUMIERES", + "nomCommune": "GUMIERES" }, { - "codePostal": "59143", - "codeCommune": "59402", - "libelleAcheminement": "MILLAM", - "nomCommune": "MILLAM" + "codePostal": "20243", + "codeCommune": "2B251", + "libelleAcheminement": "PRUNELLI DI FIUMORBO", + "nomCommune": "PRUNELLI DI FIUMORBO" }, { - "codePostal": "05130", - "codeCommune": "05057", - "libelleAcheminement": "FOUILLOUSE", - "nomCommune": "FOUILLOUSE" + "codePostal": "31110", + "codeCommune": "31133", + "libelleAcheminement": "CAZEAUX DE LARBOUST", + "nomCommune": "CAZEAUX DE LARBOUST" }, { - "codePostal": "66210", - "codeCommune": "66105", - "libelleAcheminement": "MATEMALE", - "nomCommune": "MATEMALE" + "codePostal": "42210", + "codeCommune": "42315", + "libelleAcheminement": "UNIAS", + "nomCommune": "UNIAS" }, { - "codePostal": "33400", - "codeCommune": "33522", - "libelleAcheminement": "TALENCE", - "nomCommune": "TALENCE" + "codePostal": "42130", + "codeCommune": "42109", + "libelleAcheminement": "L HOPITAL SOUS ROCHEFORT", + "nomCommune": "L HOPITAL SOUS ROCHEFORT" }, { - "codePostal": "59178", - "codeCommune": "59403", - "libelleAcheminement": "MILLONFOSSE", - "nomCommune": "MILLONFOSSE" + "codePostal": "20243", + "codeCommune": "2B251", + "libelleAcheminement": "PRUNELLI DI FIUMORBO", + "nomCommune": "PRUNELLI DI FIUMORBO" }, { - "codePostal": "05130", - "codeCommune": "05068", - "libelleAcheminement": "JARJAYES", - "nomCommune": "JARJAYES" + "codePostal": "31220", + "codeCommune": "31135", + "libelleAcheminement": "CAZERES", + "nomCommune": "CAZERES" }, { - "codePostal": "66480", - "codeCommune": "66106", - "libelleAcheminement": "MAUREILLAS LAS ILLAS", - "nomCommune": "MAUREILLAS LAS ILLAS" + "codePostal": "42390", + "codeCommune": "42330", + "libelleAcheminement": "VILLARS", + "nomCommune": "VILLARS" }, { - "codePostal": "33710", - "codeCommune": "33525", - "libelleAcheminement": "TAURIAC", - "nomCommune": "TAURIAC" + "codePostal": "42460", + "codeCommune": "42112", + "libelleAcheminement": "JARNOSSE", + "nomCommune": "JARNOSSE" }, { - "codePostal": "59620", - "codeCommune": "59406", - "libelleAcheminement": "MONCEAU ST WAAST", - "nomCommune": "MONCEAU ST WAAST" + "codePostal": "20229", + "codeCommune": "2B256", + "libelleAcheminement": "RAPAGGIO", + "nomCommune": "RAPAGGIO" }, { - "codePostal": "05110", - "codeCommune": "05071", - "libelleAcheminement": "LARDIER ET VALENCA", - "nomCommune": "LARDIER ET VALENCA" + "codePostal": "31290", + "codeCommune": "31137", + "libelleAcheminement": "CESSALES", + "nomCommune": "CESSALES" }, { - "codePostal": "66480", - "codeCommune": "66106", - "libelleAcheminement": "MAUREILLAS LAS ILLAS", - "nomCommune": "MAUREILLAS LAS ILLAS" + "codePostal": "42780", + "codeCommune": "42334", + "libelleAcheminement": "VIOLAY", + "nomCommune": "VIOLAY" }, { - "codePostal": "33470", - "codeCommune": "33527", - "libelleAcheminement": "LE TEICH", - "nomCommune": "LE TEICH" + "codePostal": "42130", + "codeCommune": "42119", + "libelleAcheminement": "LEIGNEUX", + "nomCommune": "LEIGNEUX" }, { - "codePostal": "59370", - "codeCommune": "59410", - "libelleAcheminement": "MONS EN BAROEUL", - "nomCommune": "MONS EN BAROEUL" + "codePostal": "20290", + "codeCommune": "2B274", + "libelleAcheminement": "SCOLCA", + "nomCommune": "SCOLCA" }, { - "codePostal": "05220", - "codeCommune": "05079", - "libelleAcheminement": "LE MONETIER LES BAINS", - "nomCommune": "LE MONETIER LES BAINS" + "codePostal": "31440", + "codeCommune": "31144", + "libelleAcheminement": "CIERP GAUD", + "nomCommune": "CIERP GAUD" }, { - "codePostal": "66500", - "codeCommune": "66109", - "libelleAcheminement": "MOLITG LES BAINS", - "nomCommune": "MOLITG LES BAINS" + "codePostal": "43000", + "codeCommune": "43002", + "libelleAcheminement": "AIGUILHE", + "nomCommune": "AIGUILHE" }, { - "codePostal": "33260", - "codeCommune": "33529", - "libelleAcheminement": "LA TESTE DE BUCH", - "nomCommune": "LA TESTE DE BUCH" + "codePostal": "42114", + "codeCommune": "42128", + "libelleAcheminement": "MACHEZAL", + "nomCommune": "MACHEZAL" }, { - "codePostal": "59190", - "codeCommune": "59416", - "libelleAcheminement": "MORBECQUE", - "nomCommune": "MORBECQUE" + "codePostal": "20243", + "codeCommune": "2B277", + "libelleAcheminement": "SERRA DI FIUMORBO", + "nomCommune": "SERRA DI FIUMORBO" }, { - "codePostal": "05700", - "codeCommune": "05094", - "libelleAcheminement": "NOSSAGE ET BENEVENT", - "nomCommune": "NOSSAGE ET BENEVENT" + "codePostal": "31770", + "codeCommune": "31149", + "libelleAcheminement": "COLOMIERS", + "nomCommune": "COLOMIERS" }, { - "codePostal": "66150", - "codeCommune": "66116", - "libelleAcheminement": "MONTFERRER", - "nomCommune": "MONTFERRER" + "codePostal": "43380", + "codeCommune": "43011", + "libelleAcheminement": "AUBAZAT", + "nomCommune": "AUBAZAT" }, { - "codePostal": "33710", - "codeCommune": "33530", - "libelleAcheminement": "TEUILLAC", - "nomCommune": "TEUILLAC" + "codePostal": "42520", + "codeCommune": "42129", + "libelleAcheminement": "MACLAS", + "nomCommune": "MACLAS" }, { - "codePostal": "59330", - "codeCommune": "59424", - "libelleAcheminement": "NEUF MESNIL", - "nomCommune": "NEUF MESNIL" + "codePostal": "20213", + "codeCommune": "2B297", + "libelleAcheminement": "SAN DAMIANO", + "nomCommune": "SAN DAMIANO" }, { - "codePostal": "05170", - "codeCommune": "05096", - "libelleAcheminement": "ORCIERES", - "nomCommune": "ORCIERES" + "codePostal": "31230", + "codeCommune": "31152", + "libelleAcheminement": "COUEILLES", + "nomCommune": "COUEILLES" }, { - "codePostal": "66720", - "codeCommune": "66118", - "libelleAcheminement": "MONTNER", - "nomCommune": "MONTNER" + "codePostal": "43300", + "codeCommune": "43013", + "libelleAcheminement": "VISSAC AUTEYRAC", + "nomCommune": "VISSAC AUTEYRAC" }, { - "codePostal": "33370", - "codeCommune": "33535", - "libelleAcheminement": "TRESSES", - "nomCommune": "TRESSES" + "codePostal": "42600", + "codeCommune": "42130", + "libelleAcheminement": "MAGNEUX HAUTE RIVE", + "nomCommune": "MAGNEUX HAUTE RIVE" }, { - "codePostal": "59239", - "codeCommune": "59427", - "libelleAcheminement": "LA NEUVILLE", - "nomCommune": "LA NEUVILLE" + "codePostal": "20230", + "codeCommune": "2B313", + "libelleAcheminement": "SAN NICOLAO", + "nomCommune": "SAN NICOLAO" }, { - "codePostal": "05700", - "codeCommune": "05097", - "libelleAcheminement": "ORPIERRE", - "nomCommune": "ORPIERRE" + "codePostal": "31220", + "codeCommune": "31153", + "libelleAcheminement": "COULADERE", + "nomCommune": "COULADERE" }, { - "codePostal": "66500", - "codeCommune": "66119", - "libelleAcheminement": "MOSSET", - "nomCommune": "MOSSET" + "codePostal": "43450", + "codeCommune": "43014", + "libelleAcheminement": "AUTRAC", + "nomCommune": "AUTRAC" }, { - "codePostal": "33340", - "codeCommune": "33538", - "libelleAcheminement": "VALEYRAC", - "nomCommune": "VALEYRAC" + "codePostal": "42110", + "codeCommune": "42143", + "libelleAcheminement": "MIZERIEUX", + "nomCommune": "MIZERIEUX" }, { - "codePostal": "59680", - "codeCommune": "59442", - "libelleAcheminement": "OBRECHIES", - "nomCommune": "OBRECHIES" + "codePostal": "20234", + "codeCommune": "2B321", + "libelleAcheminement": "TARRANO", + "nomCommune": "TARRANO" }, { - "codePostal": "05340", - "codeCommune": "05101", - "libelleAcheminement": "VALLOUISE PELVOUX", - "nomCommune": "VALLOUISE PELVOUX" + "codePostal": "31700", + "codeCommune": "31160", + "libelleAcheminement": "DAUX", + "nomCommune": "DAUX" }, { - "codePostal": "66400", - "codeCommune": "66126", - "libelleAcheminement": "OMS", - "nomCommune": "OMS" + "codePostal": "43390", + "codeCommune": "43017", + "libelleAcheminement": "AZERAT", + "nomCommune": "AZERAT" }, { - "codePostal": "33240", - "codeCommune": "33542", - "libelleAcheminement": "VERAC", - "nomCommune": "VERAC" + "codePostal": "42440", + "codeCommune": "42159", + "libelleAcheminement": "NOIRETABLE", + "nomCommune": "NOIRETABLE" }, { - "codePostal": "59195", - "codeCommune": "59446", - "libelleAcheminement": "OISY", - "nomCommune": "OISY" + "codePostal": "20234", + "codeCommune": "2B334", + "libelleAcheminement": "VALLE D ALESANI", + "nomCommune": "VALLE D ALESANI" }, { - "codePostal": "05340", - "codeCommune": "05101", - "libelleAcheminement": "VALLOUISE PELVOUX", - "nomCommune": "VALLOUISE PELVOUX" + "codePostal": "31230", + "codeCommune": "31178", + "libelleAcheminement": "FABAS", + "nomCommune": "FABAS" }, { - "codePostal": "66600", - "codeCommune": "66127", - "libelleAcheminement": "OPOUL PERILLOS", - "nomCommune": "OPOUL PERILLOS" + "codePostal": "43350", + "codeCommune": "43026", + "libelleAcheminement": "BELLEVUE LA MONTAGNE", + "nomCommune": "BELLEVUE LA MONTAGNE" }, { - "codePostal": "33141", - "codeCommune": "33548", - "libelleAcheminement": "VILLEGOUGE", - "nomCommune": "VILLEGOUGE" + "codePostal": "42155", + "codeCommune": "42162", + "libelleAcheminement": "OUCHES", + "nomCommune": "OUCHES" }, { - "codePostal": "59264", - "codeCommune": "59447", - "libelleAcheminement": "ONNAING", - "nomCommune": "ONNAING" + "codePostal": "20235", + "codeCommune": "2B337", + "libelleAcheminement": "VALLE DI ROSTINO", + "nomCommune": "VALLE DI ROSTINO" }, { - "codePostal": "05300", - "codeCommune": "05103", - "libelleAcheminement": "LE POET", - "nomCommune": "LE POET" + "codePostal": "31470", + "codeCommune": "31187", + "libelleAcheminement": "FONSORBES", + "nomCommune": "FONSORBES" }, { - "codePostal": "66360", - "codeCommune": "66128", - "libelleAcheminement": "OREILLA", - "nomCommune": "OREILLA" + "codePostal": "43350", + "codeCommune": "43030", + "libelleAcheminement": "BLANZAC", + "nomCommune": "BLANZAC" }, { - "codePostal": "33140", - "codeCommune": "33550", - "libelleAcheminement": "VILLENAVE D ORNON", - "nomCommune": "VILLENAVE D ORNON" + "codePostal": "42310", + "codeCommune": "42163", + "libelleAcheminement": "LA PACAUDIERE", + "nomCommune": "LA PACAUDIERE" }, { - "codePostal": "59530", - "codeCommune": "59451", - "libelleAcheminement": "ORSINVAL", - "nomCommune": "ORSINVAL" + "codePostal": "20229", + "codeCommune": "2B338", + "libelleAcheminement": "VALLE D OREZZA", + "nomCommune": "VALLE D OREZZA" }, { - "codePostal": "05100", - "codeCommune": "05107", - "libelleAcheminement": "PUY ST ANDRE", - "nomCommune": "PUY ST ANDRE" + "codePostal": "31430", + "codeCommune": "31193", + "libelleAcheminement": "LE FOUSSERET", + "nomCommune": "LE FOUSSERET" }, { - "codePostal": "66560", - "codeCommune": "66129", - "libelleAcheminement": "ORTAFFA", - "nomCommune": "ORTAFFA" + "codePostal": "43370", + "codeCommune": "43039", + "libelleAcheminement": "LE BRIGNON", + "nomCommune": "LE BRIGNON" }, { - "codePostal": "33240", - "codeCommune": "33553", - "libelleAcheminement": "VIRSAC", - "nomCommune": "VIRSAC" + "codePostal": "42590", + "codeCommune": "42171", + "libelleAcheminement": "PINAY", + "nomCommune": "PINAY" }, { - "codePostal": "59840", - "codeCommune": "59457", - "libelleAcheminement": "PERENCHIES", - "nomCommune": "PERENCHIES" + "codePostal": "20240", + "codeCommune": "2B342", + "libelleAcheminement": "VENTISERI", + "nomCommune": "VENTISERI" }, { - "codePostal": "05200", - "codeCommune": "05108", - "libelleAcheminement": "PUY ST EUSEBE", - "nomCommune": "PUY ST EUSEBE" + "codePostal": "31420", + "codeCommune": "31196", + "libelleAcheminement": "FRANCON", + "nomCommune": "FRANCON" }, { - "codePostal": "66340", - "codeCommune": "66132", - "libelleAcheminement": "PALAU DE CERDAGNE", - "nomCommune": "PALAU DE CERDAGNE" + "codePostal": "43510", + "codeCommune": "43042", + "libelleAcheminement": "CAYRES", + "nomCommune": "CAYRES" }, { - "codePostal": "33380", - "codeCommune": "33555", - "libelleAcheminement": "MARCHEPRIME", - "nomCommune": "MARCHEPRIME" + "codePostal": "42660", + "codeCommune": "42172", + "libelleAcheminement": "PLANFOY", + "nomCommune": "PLANFOY" }, { - "codePostal": "59273", - "codeCommune": "59458", - "libelleAcheminement": "PERONNE EN MELANTOIS", - "nomCommune": "PERONNE EN MELANTOIS" + "codePostal": "20242", + "codeCommune": "2B347", + "libelleAcheminement": "VEZZANI", + "nomCommune": "VEZZANI" }, { - "codePostal": "05290", - "codeCommune": "05110", - "libelleAcheminement": "PUY ST VINCENT", - "nomCommune": "PUY ST VINCENT" + "codePostal": "31510", + "codeCommune": "31207", + "libelleAcheminement": "GALIE", + "nomCommune": "GALIE" }, { - "codePostal": "66380", - "codeCommune": "66141", - "libelleAcheminement": "PIA", - "nomCommune": "PIA" + "codePostal": "43000", + "codeCommune": "43045", + "libelleAcheminement": "CEYSSAC", + "nomCommune": "CEYSSAC" }, { - "codePostal": "34800", - "codeCommune": "34013", - "libelleAcheminement": "ASPIRAN", - "nomCommune": "ASPIRAN" + "codePostal": "42110", + "codeCommune": "42175", + "libelleAcheminement": "POUILLY LES FEURS", + "nomCommune": "POUILLY LES FEURS" }, { - "codePostal": "59244", - "codeCommune": "59461", - "libelleAcheminement": "PETIT FAYT", - "nomCommune": "PETIT FAYT" + "codePostal": "20279", + "codeCommune": "2B352", + "libelleAcheminement": "VILLE DI PARASO", + "nomCommune": "VILLE DI PARASO" }, { - "codePostal": "05150", - "codeCommune": "05117", - "libelleAcheminement": "RIBEYRET", - "nomCommune": "RIBEYRET" + "codePostal": "31290", + "codeCommune": "31210", + "libelleAcheminement": "GARDOUCH", + "nomCommune": "GARDOUCH" }, { - "codePostal": "66720", - "codeCommune": "66143", - "libelleAcheminement": "PLANEZES", - "nomCommune": "PLANEZES" + "codePostal": "43160", + "codeCommune": "43048", + "libelleAcheminement": "LA CHAISE DIEU", + "nomCommune": "LA CHAISE DIEU" }, { - "codePostal": "34230", - "codeCommune": "34016", - "libelleAcheminement": "AUMELAS", - "nomCommune": "AUMELAS" + "codePostal": "42155", + "codeCommune": "42176", + "libelleAcheminement": "POUILLY LES NONAINS", + "nomCommune": "POUILLY LES NONAINS" }, { - "codePostal": "59133", - "codeCommune": "59462", - "libelleAcheminement": "PHALEMPIN", - "nomCommune": "PHALEMPIN" + "codePostal": "20219", + "codeCommune": "2B354", + "libelleAcheminement": "VIVARIO", + "nomCommune": "VIVARIO" }, { - "codePostal": "05300", - "codeCommune": "05118", - "libelleAcheminement": "VAL BUECH MEOUGE", - "nomCommune": "VAL BUECH MEOUGE" + "codePostal": "31110", + "codeCommune": "31213", + "libelleAcheminement": "GARIN", + "nomCommune": "GARIN" }, { - "codePostal": "66760", - "codeCommune": "66146", - "libelleAcheminement": "PORTA", - "nomCommune": "PORTA" + "codePostal": "43400", + "codeCommune": "43051", + "libelleAcheminement": "LE CHAMBON SUR LIGNON", + "nomCommune": "LE CHAMBON SUR LIGNON" }, { - "codePostal": "34210", - "codeCommune": "34020", - "libelleAcheminement": "AZILLANET", - "nomCommune": "AZILLANET" + "codePostal": "42630", + "codeCommune": "42178", + "libelleAcheminement": "PRADINES", + "nomCommune": "PRADINES" }, { - "codePostal": "59218", - "codeCommune": "59464", - "libelleAcheminement": "POIX DU NORD", - "nomCommune": "POIX DU NORD" + "codePostal": "20290", + "codeCommune": "2B355", + "libelleAcheminement": "VOLPAJOLA", + "nomCommune": "VOLPAJOLA" }, { - "codePostal": "05600", - "codeCommune": "05119", - "libelleAcheminement": "RISOUL", - "nomCommune": "RISOUL" + "codePostal": "31350", + "codeCommune": "31218", + "libelleAcheminement": "GENSAC DE BOULOGNE", + "nomCommune": "GENSAC DE BOULOGNE" }, { - "codePostal": "66230", - "codeCommune": "66150", - "libelleAcheminement": "PRATS DE MOLLO LA PRESTE", - "nomCommune": "PRATS DE MOLLO LA PRESTE" + "codePostal": "43100", + "codeCommune": "43055", + "libelleAcheminement": "CHANIAT", + "nomCommune": "CHANIAT" }, { - "codePostal": "34600", - "codeCommune": "34028", - "libelleAcheminement": "BEDARIEUX", - "nomCommune": "BEDARIEUX" + "codePostal": "42230", + "codeCommune": "42189", + "libelleAcheminement": "ROCHE LA MOLIERE", + "nomCommune": "ROCHE LA MOLIERE" }, { - "codePostal": "59360", - "codeCommune": "59465", - "libelleAcheminement": "POMMEREUIL", - "nomCommune": "POMMEREUIL" + "codePostal": "20243", + "codeCommune": "2B365", + "libelleAcheminement": "SAN GAVINO DI FIUMORBO", + "nomCommune": "SAN GAVINO DI FIUMORBO" }, { - "codePostal": "05190", - "codeCommune": "05121", - "libelleAcheminement": "ROCHEBRUNE", - "nomCommune": "ROCHEBRUNE" + "codePostal": "31380", + "codeCommune": "31228", + "libelleAcheminement": "GRAGNAGUE", + "nomCommune": "GRAGNAGUE" }, { - "codePostal": "66130", - "codeCommune": "66153", - "libelleAcheminement": "PRUNET ET BELPUIG", - "nomCommune": "PRUNET ET BELPUIG" + "codePostal": "43230", + "codeCommune": "43067", + "libelleAcheminement": "CHAVANIAC LAFAYETTE", + "nomCommune": "CHAVANIAC LAFAYETTE" }, { - "codePostal": "34160", - "codeCommune": "34033", - "libelleAcheminement": "BOISSERON", - "nomCommune": "BOISSERON" + "codePostal": "42520", + "codeCommune": "42191", + "libelleAcheminement": "ROISEY", + "nomCommune": "ROISEY" }, { - "codePostal": "59550", - "codeCommune": "59474", - "libelleAcheminement": "PRISCHES", - "nomCommune": "PRISCHES" + "codePostal": "30350", + "codeCommune": "30002", + "libelleAcheminement": "AIGREMONT", + "nomCommune": "AIGREMONT" }, { - "codePostal": "05150", - "codeCommune": "05126", - "libelleAcheminement": "ROSANS", - "nomCommune": "ROSANS" + "codePostal": "31160", + "codeCommune": "31236", + "libelleAcheminement": "HERRAN", + "nomCommune": "HERRAN" }, { - "codePostal": "66400", - "codeCommune": "66160", - "libelleAcheminement": "REYNES", - "nomCommune": "REYNES" + "codePostal": "43500", + "codeCommune": "43071", + "libelleAcheminement": "CHOMELIX", + "nomCommune": "CHOMELIX" }, { - "codePostal": "34800", - "codeCommune": "34041", - "libelleAcheminement": "BRIGNAC", - "nomCommune": "BRIGNAC" + "codePostal": "42380", + "codeCommune": "42192", + "libelleAcheminement": "ROZIER COTES D AUREC", + "nomCommune": "ROZIER COTES D AUREC" }, { - "codePostal": "59890", - "codeCommune": "59482", - "libelleAcheminement": "QUESNOY SUR DEULE", - "nomCommune": "QUESNOY SUR DEULE" + "codePostal": "30220", + "codeCommune": "30003", + "libelleAcheminement": "AIGUES MORTES", + "nomCommune": "AIGUES MORTES" }, { - "codePostal": "05160", - "codeCommune": "05130", - "libelleAcheminement": "ST APOLLINAIRE", - "nomCommune": "ST APOLLINAIRE" + "codePostal": "31210", + "codeCommune": "31238", + "libelleAcheminement": "HUOS", + "nomCommune": "HUOS" }, { - "codePostal": "66320", - "codeCommune": "66162", - "libelleAcheminement": "RIGARDA", - "nomCommune": "RIGARDA" + "codePostal": "43100", + "codeCommune": "43074", + "libelleAcheminement": "COHADE", + "nomCommune": "COHADE" }, { - "codePostal": "34160", - "codeCommune": "34048", - "libelleAcheminement": "CAMPAGNE", - "nomCommune": "CAMPAGNE" + "codePostal": "42810", + "codeCommune": "42193", + "libelleAcheminement": "ROZIER EN DONZY", + "nomCommune": "ROZIER EN DONZY" }, { - "codePostal": "59920", - "codeCommune": "59484", - "libelleAcheminement": "QUIEVRECHAIN", - "nomCommune": "QUIEVRECHAIN" + "codePostal": "30470", + "codeCommune": "30006", + "libelleAcheminement": "AIMARGUES", + "nomCommune": "AIMARGUES" }, { - "codePostal": "05250", - "codeCommune": "05139", - "libelleAcheminement": "LE DEVOLUY", - "nomCommune": "LE DEVOLUY" + "codePostal": "31230", + "codeCommune": "31239", + "libelleAcheminement": "L ISLE EN DODON", + "nomCommune": "L ISLE EN DODON" }, { - "codePostal": "66170", - "codeCommune": "66174", - "libelleAcheminement": "ST FELIU D AVALL", - "nomCommune": "ST FELIU D AVALL" + "codePostal": "43230", + "codeCommune": "43079", + "libelleAcheminement": "COUTEUGES", + "nomCommune": "COUTEUGES" }, { - "codePostal": "34420", - "codeCommune": "34073", - "libelleAcheminement": "CERS", - "nomCommune": "CERS" + "codePostal": "42310", + "codeCommune": "42194", + "libelleAcheminement": "SAIL LES BAINS", + "nomCommune": "SAIL LES BAINS" }, { - "codePostal": "59920", - "codeCommune": "59484", - "libelleAcheminement": "QUIEVRECHAIN", - "nomCommune": "QUIEVRECHAIN" + "codePostal": "30390", + "codeCommune": "30012", + "libelleAcheminement": "ARAMON", + "nomCommune": "ARAMON" }, { - "codePostal": "05260", - "codeCommune": "05145", - "libelleAcheminement": "ST JEAN ST NICOLAS", - "nomCommune": "ST JEAN ST NICOLAS" + "codePostal": "31160", + "codeCommune": "31241", + "libelleAcheminement": "IZAUT DE L HOTEL", + "nomCommune": "IZAUT DE L HOTEL" }, { - "codePostal": "66600", - "codeCommune": "66190", - "libelleAcheminement": "SALSES LE CHATEAU", - "nomCommune": "SALSES LE CHATEAU" + "codePostal": "43370", + "codeCommune": "43084", + "libelleAcheminement": "CUSSAC SUR LOIRE", + "nomCommune": "CUSSAC SUR LOIRE" }, { - "codePostal": "34830", - "codeCommune": "34077", - "libelleAcheminement": "CLAPIERS", - "nomCommune": "CLAPIERS" + "codePostal": "42510", + "codeCommune": "42196", + "libelleAcheminement": "STE AGATHE EN DONZY", + "nomCommune": "STE AGATHE EN DONZY" }, { - "codePostal": "59214", - "codeCommune": "59485", - "libelleAcheminement": "QUIEVY", - "nomCommune": "QUIEVY" + "codePostal": "30700", + "codeCommune": "30014", + "libelleAcheminement": "ARPAILLARGUES ET AUREILLAC", + "nomCommune": "ARPAILLARGUES ET AUREILLAC" }, { - "codePostal": "05260", - "codeCommune": "05145", - "libelleAcheminement": "ST JEAN ST NICOLAS", - "nomCommune": "ST JEAN ST NICOLAS" + "codePostal": "31870", + "codeCommune": "31263", + "libelleAcheminement": "LAGARDELLE SUR LEZE", + "nomCommune": "LAGARDELLE SUR LEZE" }, { - "codePostal": "66230", - "codeCommune": "66206", - "libelleAcheminement": "LE TECH", - "nomCommune": "LE TECH" + "codePostal": "43220", + "codeCommune": "43087", + "libelleAcheminement": "DUNIERES", + "nomCommune": "DUNIERES" }, { - "codePostal": "34270", - "codeCommune": "34078", - "libelleAcheminement": "CLARET", - "nomCommune": "CLARET" + "codePostal": "42370", + "codeCommune": "42199", + "libelleAcheminement": "ST ANDRE D APCHON", + "nomCommune": "ST ANDRE D APCHON" }, { - "codePostal": "59194", - "codeCommune": "59486", - "libelleAcheminement": "RACHES", - "nomCommune": "RACHES" + "codePostal": "30120", + "codeCommune": "30015", + "libelleAcheminement": "ARPHY", + "nomCommune": "ARPHY" }, { - "codePostal": "05140", - "codeCommune": "05146", - "libelleAcheminement": "ST JULIEN EN BEAUCHENE", - "nomCommune": "ST JULIEN EN BEAUCHENE" + "codePostal": "31310", + "codeCommune": "31267", + "libelleAcheminement": "LAHITERE", + "nomCommune": "LAHITERE" }, { - "codePostal": "66500", - "codeCommune": "66219", - "libelleAcheminement": "URBANYA", - "nomCommune": "URBANYA" + "codePostal": "43320", + "codeCommune": "43095", + "libelleAcheminement": "FIX ST GENEYS", + "nomCommune": "FIX ST GENEYS" }, { - "codePostal": "34800", - "codeCommune": "34079", - "libelleAcheminement": "CLERMONT L HERAULT", - "nomCommune": "CLERMONT L HERAULT" + "codePostal": "42210", + "codeCommune": "42200", + "libelleAcheminement": "ST ANDRE LE PUY", + "nomCommune": "ST ANDRE LE PUY" }, { - "codePostal": "59530", - "codeCommune": "59494", - "libelleAcheminement": "RAUCOURT AU BOIS", - "nomCommune": "RAUCOURT AU BOIS" + "codePostal": "30250", + "codeCommune": "30018", + "libelleAcheminement": "ASPERES", + "nomCommune": "ASPERES" }, { - "codePostal": "05120", - "codeCommune": "05151", - "libelleAcheminement": "ST MARTIN DE QUEYRIERES", - "nomCommune": "ST MARTIN DE QUEYRIERES" + "codePostal": "31800", + "codeCommune": "31268", + "libelleAcheminement": "LALOURET LAFFITEAU", + "nomCommune": "LALOURET LAFFITEAU" }, { - "codePostal": "66500", - "codeCommune": "66223", - "libelleAcheminement": "VILLEFRANCHE DE CONFLENT", - "nomCommune": "VILLEFRANCHE DE CONFLENT" + "codePostal": "43150", + "codeCommune": "43101", + "libelleAcheminement": "GOUDET", + "nomCommune": "GOUDET" }, { - "codePostal": "34440", - "codeCommune": "34081", - "libelleAcheminement": "COLOMBIERS", - "nomCommune": "COLOMBIERS" + "codePostal": "42100", + "codeCommune": "42218", + "libelleAcheminement": "ST ETIENNE", + "nomCommune": "ST ETIENNE" }, { - "codePostal": "59980", - "codeCommune": "59498", - "libelleAcheminement": "REUMONT", - "nomCommune": "REUMONT" + "codePostal": "30450", + "codeCommune": "30022", + "libelleAcheminement": "AUJAC", + "nomCommune": "AUJAC" }, { - "codePostal": "05260", - "codeCommune": "05153", - "libelleAcheminement": "ST MICHEL DE CHAILLOL", - "nomCommune": "ST MICHEL DE CHAILLOL" + "codePostal": "31580", + "codeCommune": "31276", + "libelleAcheminement": "LARROQUE", + "nomCommune": "LARROQUE" }, { - "codePostal": "66180", - "codeCommune": "66227", - "libelleAcheminement": "VILLENEUVE DE LA RAHO", - "nomCommune": "VILLENEUVE DE LA RAHO" + "codePostal": "43200", + "codeCommune": "43102", + "libelleAcheminement": "GRAZAC", + "nomCommune": "GRAZAC" }, { - "codePostal": "34290", - "codeCommune": "34085", - "libelleAcheminement": "COULOBRES", - "nomCommune": "COULOBRES" + "codePostal": "42100", + "codeCommune": "42218", + "libelleAcheminement": "ST ETIENNE", + "nomCommune": "ST ETIENNE" }, { - "codePostal": "59286", - "codeCommune": "59509", - "libelleAcheminement": "ROOST WARENDIN", - "nomCommune": "ROOST WARENDIN" + "codePostal": "30120", + "codeCommune": "30024", + "libelleAcheminement": "AULAS", + "nomCommune": "AULAS" }, { - "codePostal": "05400", - "codeCommune": "05158", - "libelleAcheminement": "LE SAIX", - "nomCommune": "LE SAIX" + "codePostal": "31800", + "codeCommune": "31278", + "libelleAcheminement": "LATOUE", + "nomCommune": "LATOUE" }, { - "codePostal": "66600", - "codeCommune": "66231", - "libelleAcheminement": "VINGRAU", - "nomCommune": "VINGRAU" + "codePostal": "43230", + "codeCommune": "43107", + "libelleAcheminement": "JOSAT", + "nomCommune": "JOSAT" }, { - "codePostal": "34660", - "codeCommune": "34087", - "libelleAcheminement": "COURNONSEC", - "nomCommune": "COURNONSEC" + "codePostal": "42640", + "codeCommune": "42220", + "libelleAcheminement": "ST FORGEUX LESPINASSE", + "nomCommune": "ST FORGEUX LESPINASSE" }, { - "codePostal": "59131", - "codeCommune": "59514", - "libelleAcheminement": "ROUSIES", - "nomCommune": "ROUSIES" + "codePostal": "30120", + "codeCommune": "30026", + "libelleAcheminement": "AVEZE", + "nomCommune": "AVEZE" }, { - "codePostal": "05300", - "codeCommune": "05160", - "libelleAcheminement": "SALERANS", - "nomCommune": "SALERANS" + "codePostal": "31330", + "codeCommune": "31281", + "libelleAcheminement": "LAUNAC", + "nomCommune": "LAUNAC" }, { - "codePostal": "66220", - "codeCommune": "66232", - "libelleAcheminement": "VIRA", - "nomCommune": "VIRA" + "codePostal": "43340", + "codeCommune": "43111", + "libelleAcheminement": "LANDOS", + "nomCommune": "LANDOS" }, { - "codePostal": "34700", - "codeCommune": "34106", - "libelleAcheminement": "FOZIERES", - "nomCommune": "FOZIERES" + "codePostal": "42260", + "codeCommune": "42230", + "libelleAcheminement": "ST GERMAIN LAVAL", + "nomCommune": "ST GERMAIN LAVAL" }, { - "codePostal": "59281", - "codeCommune": "59520", - "libelleAcheminement": "RUMILLY EN CAMBRESIS", - "nomCommune": "RUMILLY EN CAMBRESIS" + "codePostal": "30200", + "codeCommune": "30028", + "libelleAcheminement": "BAGNOLS SUR CEZE", + "nomCommune": "BAGNOLS SUR CEZE" }, { - "codePostal": "05130", - "codeCommune": "05170", - "libelleAcheminement": "TALLARD", - "nomCommune": "TALLARD" + "codePostal": "31370", + "codeCommune": "31283", + "libelleAcheminement": "LAUTIGNAC", + "nomCommune": "LAUTIGNAC" }, { - "codePostal": "67270", - "codeCommune": "67005", - "libelleAcheminement": "ALTECKENDORF", - "nomCommune": "ALTECKENDORF" + "codePostal": "43200", + "codeCommune": "43114", + "libelleAcheminement": "LAPTE", + "nomCommune": "LAPTE" }, { - "codePostal": "34160", - "codeCommune": "34110", - "libelleAcheminement": "GALARGUES", - "nomCommune": "GALARGUES" + "codePostal": "42640", + "codeCommune": "42231", + "libelleAcheminement": "ST GERMAIN LESPINASSE", + "nomCommune": "ST GERMAIN LESPINASSE" }, { - "codePostal": "59440", - "codeCommune": "59529", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "30580", + "codeCommune": "30035", + "libelleAcheminement": "BELVEZET", + "nomCommune": "BELVEZET" }, { - "codePostal": "05190", - "codeCommune": "05171", - "libelleAcheminement": "THEUS", - "nomCommune": "THEUS" + "codePostal": "31650", + "codeCommune": "31284", + "libelleAcheminement": "LAUZERVILLE", + "nomCommune": "LAUZERVILLE" }, { - "codePostal": "67260", - "codeCommune": "67009", - "libelleAcheminement": "ALTWILLER", - "nomCommune": "ALTWILLER" + "codePostal": "43150", + "codeCommune": "43115", + "libelleAcheminement": "LAUSSONNE", + "nomCommune": "LAUSSONNE" }, { - "codePostal": "34150", - "codeCommune": "34114", - "libelleAcheminement": "GIGNAC", - "nomCommune": "GIGNAC" + "codePostal": "42650", + "codeCommune": "42237", + "libelleAcheminement": "ST JEAN BONNEFONDS", + "nomCommune": "ST JEAN BONNEFONDS" }, { - "codePostal": "59270", - "codeCommune": "59535", - "libelleAcheminement": "ST JANS CAPPEL", - "nomCommune": "ST JANS CAPPEL" + "codePostal": "30620", + "codeCommune": "30036", + "libelleAcheminement": "BERNIS", + "nomCommune": "BERNIS" }, { - "codePostal": "05300", - "codeCommune": "05173", - "libelleAcheminement": "UPAIX", - "nomCommune": "UPAIX" + "codePostal": "31220", + "codeCommune": "31286", + "libelleAcheminement": "LAVELANET DE COMMINGES", + "nomCommune": "LAVELANET DE COMMINGES" }, { - "codePostal": "67320", - "codeCommune": "67017", - "libelleAcheminement": "BAERENDORF", - "nomCommune": "BAERENDORF" + "codePostal": "43380", + "codeCommune": "43118", + "libelleAcheminement": "LAVOUTE CHILHAC", + "nomCommune": "LAVOUTE CHILHAC" }, { - "codePostal": "34480", - "codeCommune": "34130", - "libelleAcheminement": "LAURENS", - "nomCommune": "LAURENS" + "codePostal": "42440", + "codeCommune": "42245", + "libelleAcheminement": "VETRE SUR ANZON", + "nomCommune": "VETRE SUR ANZON" }, { - "codePostal": "59670", - "codeCommune": "59536", - "libelleAcheminement": "STE MARIE CAPPEL", - "nomCommune": "STE MARIE CAPPEL" + "codePostal": "30160", + "codeCommune": "30037", + "libelleAcheminement": "BESSEGES", + "nomCommune": "BESSEGES" }, { - "codePostal": "05110", - "codeCommune": "05184", - "libelleAcheminement": "VITROLLES", - "nomCommune": "VITROLLES" + "codePostal": "31340", + "codeCommune": "31288", + "libelleAcheminement": "LAYRAC SUR TARN", + "nomCommune": "LAYRAC SUR TARN" }, { - "codePostal": "67220", - "codeCommune": "67022", - "libelleAcheminement": "BASSEMBERG", - "nomCommune": "BASSEMBERG" + "codePostal": "43350", + "codeCommune": "43122", + "libelleAcheminement": "LISSAC", + "nomCommune": "LISSAC" }, { - "codePostal": "34270", - "codeCommune": "34131", - "libelleAcheminement": "LAURET", - "nomCommune": "LAURET" + "codePostal": "42220", + "codeCommune": "42246", + "libelleAcheminement": "ST JULIEN MOLIN MOLETTE", + "nomCommune": "ST JULIEN MOLIN MOLETTE" }, { - "codePostal": "59630", - "codeCommune": "59539", - "libelleAcheminement": "ST PIERRE BROUCK", - "nomCommune": "ST PIERRE BROUCK" + "codePostal": "30160", + "codeCommune": "30037", + "libelleAcheminement": "BESSEGES", + "nomCommune": "BESSEGES" }, { - "codePostal": "06910", - "codeCommune": "06001", - "libelleAcheminement": "AIGLUN", - "nomCommune": "AIGLUN" + "codePostal": "31490", + "codeCommune": "31291", + "libelleAcheminement": "LEGUEVIN", + "nomCommune": "LEGUEVIN" }, { - "codePostal": "67310", - "codeCommune": "67030", - "libelleAcheminement": "BERGBIETEN", - "nomCommune": "BERGBIETEN" + "codePostal": "43100", + "codeCommune": "43125", + "libelleAcheminement": "LUBILHAC", + "nomCommune": "LUBILHAC" }, { - "codePostal": "34710", - "codeCommune": "34135", - "libelleAcheminement": "LESPIGNAN", - "nomCommune": "LESPIGNAN" + "codePostal": "42430", + "codeCommune": "42248", + "libelleAcheminement": "ST JUST EN CHEVALET", + "nomCommune": "ST JUST EN CHEVALET" }, { - "codePostal": "59880", - "codeCommune": "59544", - "libelleAcheminement": "ST SAULVE", - "nomCommune": "ST SAULVE" + "codePostal": "30114", + "codeCommune": "30043", + "libelleAcheminement": "BOISSIERES", + "nomCommune": "BOISSIERES" }, { - "codePostal": "06750", - "codeCommune": "06003", - "libelleAcheminement": "ANDON", - "nomCommune": "ANDON" + "codePostal": "31360", + "codeCommune": "31296", + "libelleAcheminement": "LESTELLE DE ST MARTORY", + "nomCommune": "LESTELLE DE ST MARTORY" }, { - "codePostal": "67170", - "codeCommune": "67033", - "libelleAcheminement": "BERNOLSHEIM", - "nomCommune": "BERNOLSHEIM" + "codePostal": "43800", + "codeCommune": "43126", + "libelleAcheminement": "MALREVERS", + "nomCommune": "MALREVERS" }, { - "codePostal": "34800", - "codeCommune": "34137", - "libelleAcheminement": "LIAUSSON", - "nomCommune": "LIAUSSON" + "codePostal": "42210", + "codeCommune": "42251", + "libelleAcheminement": "ST LAURENT LA CONCHE", + "nomCommune": "ST LAURENT LA CONCHE" }, { - "codePostal": "59188", - "codeCommune": "59547", - "libelleAcheminement": "ST VAAST EN CAMBRESIS", - "nomCommune": "ST VAAST EN CAMBRESIS" + "codePostal": "30230", + "codeCommune": "30047", + "libelleAcheminement": "BOUILLARGUES", + "nomCommune": "BOUILLARGUES" }, { - "codePostal": "06260", - "codeCommune": "06008", - "libelleAcheminement": "AUVARE", - "nomCommune": "AUVARE" + "codePostal": "31230", + "codeCommune": "31301", + "libelleAcheminement": "LILHAC", + "nomCommune": "LILHAC" }, { - "codePostal": "67370", - "codeCommune": "67034", - "libelleAcheminement": "BERSTETT", - "nomCommune": "BERSTETT" + "codePostal": "43700", + "codeCommune": "43140", + "libelleAcheminement": "LE MONTEIL", + "nomCommune": "LE MONTEIL" }, { - "codePostal": "34290", - "codeCommune": "34139", - "libelleAcheminement": "LIEURAN LES BEZIERS", - "nomCommune": "LIEURAN LES BEZIERS" + "codePostal": "42260", + "codeCommune": "42268", + "libelleAcheminement": "VEZELIN SUR LOIRE", + "nomCommune": "VEZELIN SUR LOIRE" }, { - "codePostal": "59218", - "codeCommune": "59549", - "libelleAcheminement": "SALESCHES", - "nomCommune": "SALESCHES" + "codePostal": "30120", + "codeCommune": "30052", + "libelleAcheminement": "BREAU MARS", + "nomCommune": "BREAU MARS" }, { - "codePostal": "06420", - "codeCommune": "06009", - "libelleAcheminement": "BAIROLS", - "nomCommune": "BAIROLS" + "codePostal": "31440", + "codeCommune": "31316", + "libelleAcheminement": "MARIGNAC", + "nomCommune": "MARIGNAC" }, { - "codePostal": "67170", - "codeCommune": "67035", - "libelleAcheminement": "BERSTHEIM", - "nomCommune": "BERSTHEIM" + "codePostal": "43260", + "codeCommune": "43143", + "libelleAcheminement": "MONTUSCLAT", + "nomCommune": "MONTUSCLAT" }, { - "codePostal": "34490", - "codeCommune": "34140", - "libelleAcheminement": "LIGNAN SUR ORB", - "nomCommune": "LIGNAN SUR ORB" + "codePostal": "42740", + "codeCommune": "42271", + "libelleAcheminement": "ST PAUL EN JAREZ", + "nomCommune": "ST PAUL EN JAREZ" }, { - "codePostal": "59230", - "codeCommune": "59554", - "libelleAcheminement": "SARS ET ROSIERES", - "nomCommune": "SARS ET ROSIERES" + "codePostal": "30120", + "codeCommune": "30052", + "libelleAcheminement": "BREAU MARS", + "nomCommune": "BREAU MARS" }, { - "codePostal": "06390", - "codeCommune": "06015", - "libelleAcheminement": "BERRE LES ALPES", - "nomCommune": "BERRE LES ALPES" + "codePostal": "31550", + "codeCommune": "31319", + "libelleAcheminement": "MARLIAC", + "nomCommune": "MARLIAC" }, { - "codePostal": "67720", - "codeCommune": "67038", - "libelleAcheminement": "BIETLENHEIM", - "nomCommune": "BIETLENHEIM" + "codePostal": "43200", + "codeCommune": "43150", + "libelleAcheminement": "LE PERTUIS", + "nomCommune": "LE PERTUIS" }, { - "codePostal": "34700", - "codeCommune": "34142", - "libelleAcheminement": "LODEVE", - "nomCommune": "LODEVE" + "codePostal": "42260", + "codeCommune": "42274", + "libelleAcheminement": "ST POLGUES", + "nomCommune": "ST POLGUES" }, { - "codePostal": "59145", - "codeCommune": "59556", - "libelleAcheminement": "SASSEGNIES", - "nomCommune": "SASSEGNIES" + "codePostal": "30260", + "codeCommune": "30054", + "libelleAcheminement": "BROUZET LES QUISSAC", + "nomCommune": "BROUZET LES QUISSAC" }, { - "codePostal": "06530", - "codeCommune": "06026", - "libelleAcheminement": "CABRIS", - "nomCommune": "CABRIS" + "codePostal": "31390", + "codeCommune": "31320", + "libelleAcheminement": "MARQUEFAVE", + "nomCommune": "MARQUEFAVE" }, { - "codePostal": "67800", - "codeCommune": "67043", - "libelleAcheminement": "BISCHHEIM", - "nomCommune": "BISCHHEIM" + "codePostal": "43220", + "codeCommune": "43163", + "libelleAcheminement": "RIOTORD", + "nomCommune": "RIOTORD" }, { - "codePostal": "34130", - "codeCommune": "34154", - "libelleAcheminement": "MAUGUIO", - "nomCommune": "MAUGUIO" + "codePostal": "42270", + "codeCommune": "42275", + "libelleAcheminement": "ST PRIEST EN JAREZ", + "nomCommune": "ST PRIEST EN JAREZ" }, { - "codePostal": "59990", - "codeCommune": "59559", - "libelleAcheminement": "SEBOURG", - "nomCommune": "SEBOURG" + "codePostal": "30260", + "codeCommune": "30069", + "libelleAcheminement": "CARNAS", + "nomCommune": "CARNAS" }, { - "codePostal": "06800", - "codeCommune": "06027", - "libelleAcheminement": "CAGNES SUR MER", - "nomCommune": "CAGNES SUR MER" + "codePostal": "31460", + "codeCommune": "31325", + "libelleAcheminement": "MASCARVILLE", + "nomCommune": "MASCARVILLE" }, { - "codePostal": "67340", - "codeCommune": "67044", - "libelleAcheminement": "BISCHHOLTZ", - "nomCommune": "BISCHHOLTZ" + "codePostal": "43810", + "codeCommune": "43164", + "libelleAcheminement": "ROCHE EN REGNIER", + "nomCommune": "ROCHE EN REGNIER" }, { - "codePostal": "34800", - "codeCommune": "34156", - "libelleAcheminement": "MERIFONS", - "nomCommune": "MERIFONS" + "codePostal": "42590", + "codeCommune": "42277", + "libelleAcheminement": "ST PRIEST LA ROCHE", + "nomCommune": "ST PRIEST LA ROCHE" }, { - "codePostal": "59113", - "codeCommune": "59560", - "libelleAcheminement": "SECLIN", - "nomCommune": "SECLIN" + "codePostal": "30130", + "codeCommune": "30070", + "libelleAcheminement": "CARSAN", + "nomCommune": "CARSAN" }, { - "codePostal": "06150", - "codeCommune": "06029", - "libelleAcheminement": "CANNES", - "nomCommune": "CANNES" + "codePostal": "31190", + "codeCommune": "31332", + "libelleAcheminement": "MAUVAISIN", + "nomCommune": "MAUVAISIN" }, { - "codePostal": "67870", - "codeCommune": "67045", - "libelleAcheminement": "BISCHOFFSHEIM", - "nomCommune": "BISCHOFFSHEIM" + "codePostal": "43800", + "codeCommune": "43165", + "libelleAcheminement": "ROSIERES", + "nomCommune": "ROSIERES" }, { - "codePostal": "34140", - "codeCommune": "34157", - "libelleAcheminement": "MEZE", - "nomCommune": "MEZE" + "codePostal": "42430", + "codeCommune": "42282", + "libelleAcheminement": "ST ROMAIN D URFE", + "nomCommune": "ST ROMAIN D URFE" }, { - "codePostal": "59440", - "codeCommune": "59562", - "libelleAcheminement": "SEMERIES", - "nomCommune": "SEMERIES" + "codePostal": "30750", + "codeCommune": "30074", + "libelleAcheminement": "CAUSSE BEGON", + "nomCommune": "CAUSSE BEGON" }, { - "codePostal": "06510", - "codeCommune": "06033", - "libelleAcheminement": "CARROS", - "nomCommune": "CARROS" + "codePostal": "31230", + "codeCommune": "31333", + "libelleAcheminement": "MAUVEZIN", + "nomCommune": "MAUVEZIN" }, { - "codePostal": "67113", - "codeCommune": "67049", - "libelleAcheminement": "BLAESHEIM", - "nomCommune": "BLAESHEIM" + "codePostal": "43130", + "codeCommune": "43166", + "libelleAcheminement": "ST ANDRE DE CHALENCON", + "nomCommune": "ST ANDRE DE CHALENCON" }, { - "codePostal": "34110", - "codeCommune": "34159", - "libelleAcheminement": "MIREVAL", - "nomCommune": "MIREVAL" + "codePostal": "42660", + "codeCommune": "42286", + "libelleAcheminement": "ST ROMAIN LES ATHEUX", + "nomCommune": "ST ROMAIN LES ATHEUX" }, { - "codePostal": "59440", - "codeCommune": "59563", - "libelleAcheminement": "SEMOUSIES", - "nomCommune": "SEMOUSIES" + "codePostal": "30820", + "codeCommune": "30075", + "libelleAcheminement": "CAVEIRAC", + "nomCommune": "CAVEIRAC" }, { - "codePostal": "06460", - "codeCommune": "06037", - "libelleAcheminement": "CAUSSOLS", - "nomCommune": "CAUSSOLS" + "codePostal": "31160", + "codeCommune": "31342", + "libelleAcheminement": "MILHAS", + "nomCommune": "MILHAS" }, { - "codePostal": "67650", - "codeCommune": "67051", - "libelleAcheminement": "BLIENSCHWILLER", - "nomCommune": "BLIENSCHWILLER" + "codePostal": "43420", + "codeCommune": "43168", + "libelleAcheminement": "ST ARCONS DE BARGES", + "nomCommune": "ST ARCONS DE BARGES" }, { - "codePostal": "34390", - "codeCommune": "34160", - "libelleAcheminement": "MONS", - "nomCommune": "MONS" + "codePostal": "42110", + "codeCommune": "42297", + "libelleAcheminement": "SALVIZINET", + "nomCommune": "SALVIZINET" }, { - "codePostal": "59213", - "codeCommune": "59575", - "libelleAcheminement": "SOMMAING", - "nomCommune": "SOMMAING" + "codePostal": "30530", + "codeCommune": "30080", + "libelleAcheminement": "CHAMBORIGAUD", + "nomCommune": "CHAMBORIGAUD" }, { - "codePostal": "06470", - "codeCommune": "06040", - "libelleAcheminement": "CHATEAUNEUF D ENTRAUNES", - "nomCommune": "CHATEAUNEUF D ENTRAUNES" + "codePostal": "31850", + "codeCommune": "31352", + "libelleAcheminement": "MONDOUZIL", + "nomCommune": "MONDOUZIL" }, { - "codePostal": "67730", - "codeCommune": "67073", - "libelleAcheminement": "CHATENOIS", - "nomCommune": "CHATENOIS" + "codePostal": "43290", + "codeCommune": "43172", + "libelleAcheminement": "ST BONNET LE FROID", + "nomCommune": "ST BONNET LE FROID" }, { - "codePostal": "34570", - "codeCommune": "34163", - "libelleAcheminement": "MONTARNAUD", - "nomCommune": "MONTARNAUD" + "codePostal": "42600", + "codeCommune": "42299", + "libelleAcheminement": "SAVIGNEUX", + "nomCommune": "SAVIGNEUX" }, { - "codePostal": "59550", - "codeCommune": "59583", - "libelleAcheminement": "TAISNIERES EN THIERACHE", - "nomCommune": "TAISNIERES EN THIERACHE" + "codePostal": "30200", + "codeCommune": "30081", + "libelleAcheminement": "CHUSCLAN", + "nomCommune": "CHUSCLAN" }, { - "codePostal": "06420", - "codeCommune": "06042", - "libelleAcheminement": "CLANS", - "nomCommune": "CLANS" + "codePostal": "31230", + "codeCommune": "31363", + "libelleAcheminement": "MONTBERNARD", + "nomCommune": "MONTBERNARD" }, { - "codePostal": "67650", - "codeCommune": "67094", - "libelleAcheminement": "DIEFFENTHAL", - "nomCommune": "DIEFFENTHAL" + "codePostal": "43260", + "codeCommune": "43181", + "libelleAcheminement": "ST ETIENNE LARDEYROL", + "nomCommune": "ST ETIENNE LARDEYROL" }, { - "codePostal": "34560", - "codeCommune": "34165", - "libelleAcheminement": "MONTBAZIN", - "nomCommune": "MONTBAZIN" + "codePostal": "42260", + "codeCommune": "42303", + "libelleAcheminement": "SOUTERNON", + "nomCommune": "SOUTERNON" }, { - "codePostal": "59175", - "codeCommune": "59585", - "libelleAcheminement": "TEMPLEMARS", - "nomCommune": "TEMPLEMARS" + "codePostal": "30190", + "codeCommune": "30086", + "libelleAcheminement": "COLLORGUES", + "nomCommune": "COLLORGUES" }, { - "codePostal": "06390", - "codeCommune": "06043", - "libelleAcheminement": "COARAZE", - "nomCommune": "COARAZE" + "codePostal": "31310", + "codeCommune": "31365", + "libelleAcheminement": "MONTBRUN BOCAGE", + "nomCommune": "MONTBRUN BOCAGE" }, { - "codePostal": "67190", - "codeCommune": "67098", - "libelleAcheminement": "DINSHEIM SUR BRUCHE", - "nomCommune": "DINSHEIM SUR BRUCHE" + "codePostal": "43450", + "codeCommune": "43182", + "libelleAcheminement": "ST ETIENNE SUR BLESLE", + "nomCommune": "ST ETIENNE SUR BLESLE" }, { - "codePostal": "34310", - "codeCommune": "34170", - "libelleAcheminement": "MONTOULIERS", - "nomCommune": "MONTOULIERS" + "codePostal": "42660", + "codeCommune": "42306", + "libelleAcheminement": "TARENTAISE", + "nomCommune": "TARENTAISE" }, { - "codePostal": "59200", - "codeCommune": "59599", - "libelleAcheminement": "TOURCOING", - "nomCommune": "TOURCOING" + "codePostal": "30111", + "codeCommune": "30091", + "libelleAcheminement": "CONGENIES", + "nomCommune": "CONGENIES" }, { - "codePostal": "06390", - "codeCommune": "06048", - "libelleAcheminement": "CONTES", - "nomCommune": "CONTES" + "codePostal": "31450", + "codeCommune": "31366", + "libelleAcheminement": "MONTBRUN LAURAGAIS", + "nomCommune": "MONTBRUN LAURAGAIS" }, { - "codePostal": "67120", - "codeCommune": "67101", - "libelleAcheminement": "DORLISHEIM", - "nomCommune": "DORLISHEIM" + "codePostal": "43250", + "codeCommune": "43185", + "libelleAcheminement": "STE FLORINE", + "nomCommune": "STE FLORINE" }, { - "codePostal": "34190", - "codeCommune": "34171", - "libelleAcheminement": "MONTOULIEU", - "nomCommune": "MONTOULIEU" + "codePostal": "42800", + "codeCommune": "42307", + "libelleAcheminement": "TARTARAS", + "nomCommune": "TARTARAS" }, { - "codePostal": "59152", - "codeCommune": "59602", - "libelleAcheminement": "TRESSIN", - "nomCommune": "TRESSIN" + "codePostal": "30330", + "codeCommune": "30092", + "libelleAcheminement": "CONNAUX", + "nomCommune": "CONNAUX" }, { - "codePostal": "06910", - "codeCommune": "06052", - "libelleAcheminement": "CUEBRIS", - "nomCommune": "CUEBRIS" + "codePostal": "31310", + "codeCommune": "31375", + "libelleAcheminement": "MONTESQUIEU VOLVESTRE", + "nomCommune": "MONTESQUIEU VOLVESTRE" }, { - "codePostal": "67320", - "codeCommune": "67111", - "libelleAcheminement": "DURSTEL", - "nomCommune": "DURSTEL" + "codePostal": "43350", + "codeCommune": "43187", + "libelleAcheminement": "ST GENEYS PRES ST PAULIEN", + "nomCommune": "ST GENEYS PRES ST PAULIEN" }, { - "codePostal": "34000", - "codeCommune": "34172", - "libelleAcheminement": "MONTPELLIER", - "nomCommune": "MONTPELLIER" + "codePostal": "42380", + "codeCommune": "42312", + "libelleAcheminement": "LA TOURETTE", + "nomCommune": "LA TOURETTE" }, { - "codePostal": "59125", - "codeCommune": "59603", - "libelleAcheminement": "TRITH ST LEGER", - "nomCommune": "TRITH ST LEGER" + "codePostal": "30170", + "codeCommune": "30093", + "libelleAcheminement": "CONQUEYRAC", + "nomCommune": "CONQUEYRAC" }, { - "codePostal": "06470", - "codeCommune": "06053", - "libelleAcheminement": "DALUIS", - "nomCommune": "DALUIS" + "codePostal": "31260", + "codeCommune": "31376", + "libelleAcheminement": "MONTGAILLARD DE SALIES", + "nomCommune": "MONTGAILLARD DE SALIES" }, { - "codePostal": "67140", - "codeCommune": "67120", - "libelleAcheminement": "EICHHOFFEN", - "nomCommune": "EICHHOFFEN" + "codePostal": "43500", + "codeCommune": "43189", + "libelleAcheminement": "ST GEORGES LAGRICOL", + "nomCommune": "ST GEORGES LAGRICOL" }, { - "codePostal": "34190", - "codeCommune": "34174", - "libelleAcheminement": "MOULES ET BAUCELS", - "nomCommune": "MOULES ET BAUCELS" + "codePostal": "42130", + "codeCommune": "42313", + "libelleAcheminement": "TRELINS", + "nomCommune": "TRELINS" }, { - "codePostal": "59232", - "codeCommune": "59615", - "libelleAcheminement": "VIEUX BERQUIN", - "nomCommune": "VIEUX BERQUIN" + "codePostal": "30260", + "codeCommune": "30095", + "libelleAcheminement": "CORCONNE", + "nomCommune": "CORCONNE" }, { - "codePostal": "06340", - "codeCommune": "06054", - "libelleAcheminement": "DRAP", - "nomCommune": "DRAP" + "codePostal": "31350", + "codeCommune": "31378", + "libelleAcheminement": "MONTGAILLARD SUR SAVE", + "nomCommune": "MONTGAILLARD SUR SAVE" }, { - "codePostal": "67710", - "codeCommune": "67122", - "libelleAcheminement": "WANGENBOURG ENGENTHAL", - "nomCommune": "WANGENBOURG ENGENTHAL" + "codePostal": "43700", + "codeCommune": "43190", + "libelleAcheminement": "ST GERMAIN LAPRADE", + "nomCommune": "ST GERMAIN LAPRADE" }, { - "codePostal": "34800", - "codeCommune": "34175", - "libelleAcheminement": "MOUREZE", - "nomCommune": "MOUREZE" + "codePostal": "42310", + "codeCommune": "42317", + "libelleAcheminement": "URBISE", + "nomCommune": "URBISE" }, { - "codePostal": "59142", - "codeCommune": "59624", - "libelleAcheminement": "VILLERS OUTREAUX", - "nomCommune": "VILLERS OUTREAUX" + "codePostal": "30360", + "codeCommune": "30101", + "libelleAcheminement": "DEAUX", + "nomCommune": "DEAUX" }, { - "codePostal": "06670", - "codeCommune": "06055", - "libelleAcheminement": "DURANUS", - "nomCommune": "DURANUS" + "codePostal": "31350", + "codeCommune": "31385", + "libelleAcheminement": "MONTMAURIN", + "nomCommune": "MONTMAURIN" }, { - "codePostal": "67710", - "codeCommune": "67122", - "libelleAcheminement": "WANGENBOURG ENGENTHAL", - "nomCommune": "WANGENBOURG ENGENTHAL" + "codePostal": "43320", + "codeCommune": "43197", + "libelleAcheminement": "ST JEAN DE NAY", + "nomCommune": "ST JEAN DE NAY" }, { - "codePostal": "34490", - "codeCommune": "34178", - "libelleAcheminement": "MURVIEL LES BEZIERS", - "nomCommune": "MURVIEL LES BEZIERS" + "codePostal": "42320", + "codeCommune": "42320", + "libelleAcheminement": "VALFLEURY", + "nomCommune": "VALFLEURY" }, { - "codePostal": "59231", - "codeCommune": "59625", - "libelleAcheminement": "VILLERS PLOUICH", - "nomCommune": "VILLERS PLOUICH" + "codePostal": "30580", + "codeCommune": "30115", + "libelleAcheminement": "FONTARECHES", + "nomCommune": "FONTARECHES" }, { - "codePostal": "06440", - "codeCommune": "06057", - "libelleAcheminement": "L ESCARENE", - "nomCommune": "L ESCARENE" + "codePostal": "31430", + "codeCommune": "31387", + "libelleAcheminement": "MONTOUSSIN", + "nomCommune": "MONTOUSSIN" }, { - "codePostal": "67360", - "codeCommune": "67132", - "libelleAcheminement": "ESCHBACH", - "nomCommune": "ESCHBACH" + "codePostal": "43260", + "codeCommune": "43200", + "libelleAcheminement": "ST JULIEN CHAPTEUIL", + "nomCommune": "ST JULIEN CHAPTEUIL" }, { - "codePostal": "34440", - "codeCommune": "34183", - "libelleAcheminement": "NISSAN LEZ ENSERUNE", - "nomCommune": "NISSAN LEZ ENSERUNE" + "codePostal": "42111", + "codeCommune": "42321", + "libelleAcheminement": "LA VALLA SUR ROCHEFORT", + "nomCommune": "LA VALLA SUR ROCHEFORT" }, { - "codePostal": "59830", - "codeCommune": "59638", - "libelleAcheminement": "WANNEHAIN", - "nomCommune": "WANNEHAIN" + "codePostal": "30210", + "codeCommune": "30116", + "libelleAcheminement": "FOURNES", + "nomCommune": "FOURNES" }, { - "codePostal": "06850", - "codeCommune": "06063", - "libelleAcheminement": "GARS", - "nomCommune": "GARS" + "codePostal": "31210", + "codeCommune": "31390", + "libelleAcheminement": "MONTREJEAU", + "nomCommune": "MONTREJEAU" }, { - "codePostal": "67320", - "codeCommune": "67136", - "libelleAcheminement": "EYWILLER", - "nomCommune": "EYWILLER" + "codePostal": "43500", + "codeCommune": "43201", + "libelleAcheminement": "ST JULIEN D ANCE", + "nomCommune": "ST JULIEN D ANCE" }, { - "codePostal": "34230", - "codeCommune": "34194", - "libelleAcheminement": "PAULHAN", - "nomCommune": "PAULHAN" + "codePostal": "42340", + "codeCommune": "42324", + "libelleAcheminement": "VEAUCHETTE", + "nomCommune": "VEAUCHETTE" }, { - "codePostal": "59290", - "codeCommune": "59646", - "libelleAcheminement": "WASQUEHAL", - "nomCommune": "WASQUEHAL" + "codePostal": "30260", + "codeCommune": "30121", + "libelleAcheminement": "GAILHAN", + "nomCommune": "GAILHAN" }, { - "codePostal": "06130", - "codeCommune": "06069", - "libelleAcheminement": "GRASSE", - "nomCommune": "GRASSE" + "codePostal": "31260", + "codeCommune": "31391", + "libelleAcheminement": "MONTSAUNES", + "nomCommune": "MONTSAUNES" }, { - "codePostal": "67640", - "codeCommune": "67137", - "libelleAcheminement": "FEGERSHEIM", - "nomCommune": "FEGERSHEIM" + "codePostal": "43810", + "codeCommune": "43217", + "libelleAcheminement": "ST PIERRE DU CHAMP", + "nomCommune": "ST PIERRE DU CHAMP" }, { - "codePostal": "34600", - "codeCommune": "34200", - "libelleAcheminement": "PEZENES LES MINES", - "nomCommune": "PEZENES LES MINES" + "codePostal": "42590", + "codeCommune": "42325", + "libelleAcheminement": "VENDRANGES", + "nomCommune": "VENDRANGES" }, { - "codePostal": "59380", - "codeCommune": "59657", - "libelleAcheminement": "WEST CAPPEL", - "nomCommune": "WEST CAPPEL" + "codePostal": "30510", + "codeCommune": "30128", + "libelleAcheminement": "GENERAC", + "nomCommune": "GENERAC" }, { - "codePostal": "06520", - "codeCommune": "06069", - "libelleAcheminement": "GRASSE", - "nomCommune": "GRASSE" + "codePostal": "31350", + "codeCommune": "31398", + "libelleAcheminement": "NIZAN GESSE", + "nomCommune": "NIZAN GESSE" }, { - "codePostal": "67580", - "codeCommune": "67141", - "libelleAcheminement": "FORSTHEIM", - "nomCommune": "FORSTHEIM" + "codePostal": "43260", + "codeCommune": "43218", + "libelleAcheminement": "ST PIERRE EYNAC", + "nomCommune": "ST PIERRE EYNAC" }, { - "codePostal": "34360", - "codeCommune": "34201", - "libelleAcheminement": "PIERRERUE", - "nomCommune": "PIERRERUE" + "codePostal": "42410", + "codeCommune": "42327", + "libelleAcheminement": "VERIN", + "nomCommune": "VERIN" }, { - "codePostal": "59470", - "codeCommune": "59663", - "libelleAcheminement": "WORMHOUT", - "nomCommune": "WORMHOUT" + "codePostal": "30140", + "codeCommune": "30129", + "libelleAcheminement": "GENERARGUES", + "nomCommune": "GENERARGUES" }, { - "codePostal": "06440", - "codeCommune": "06077", - "libelleAcheminement": "LUCERAM", - "nomCommune": "LUCERAM" + "codePostal": "31450", + "codeCommune": "31401", + "libelleAcheminement": "NOUEILLES", + "nomCommune": "NOUEILLES" }, { - "codePostal": "67140", - "codeCommune": "67155", - "libelleAcheminement": "GERTWILLER", - "nomCommune": "GERTWILLER" + "codePostal": "43580", + "codeCommune": "43225", + "libelleAcheminement": "ST VENERAND", + "nomCommune": "ST VENERAND" }, { - "codePostal": "34230", - "codeCommune": "34204", - "libelleAcheminement": "PLAISSAN", - "nomCommune": "PLAISSAN" + "codePostal": "42220", + "codeCommune": "42329", + "libelleAcheminement": "LA VERSANNE", + "nomCommune": "LA VERSANNE" }, { - "codePostal": "59380", - "codeCommune": "59665", - "libelleAcheminement": "WYLDER", - "nomCommune": "WYLDER" + "codePostal": "30630", + "codeCommune": "30131", + "libelleAcheminement": "GOUDARGUES", + "nomCommune": "GOUDARGUES" }, { - "codePostal": "06000", - "codeCommune": "06088", - "libelleAcheminement": "NICE", - "nomCommune": "NICE" + "codePostal": "31510", + "codeCommune": "31405", + "libelleAcheminement": "ORE", + "nomCommune": "ORE" }, { - "codePostal": "67170", - "codeCommune": "67156", - "libelleAcheminement": "GEUDERTHEIM", - "nomCommune": "GEUDERTHEIM" + "codePostal": "43440", + "codeCommune": "43226", + "libelleAcheminement": "ST VERT", + "nomCommune": "ST VERT" }, { - "codePostal": "34230", - "codeCommune": "34208", - "libelleAcheminement": "POPIAN", - "nomCommune": "POPIAN" + "codePostal": "42155", + "codeCommune": "42331", + "libelleAcheminement": "VILLEMONTAIS", + "nomCommune": "VILLEMONTAIS" }, { - "codePostal": "60480", - "codeCommune": "60003", - "libelleAcheminement": "ABBEVILLE ST LUCIEN", - "nomCommune": "ABBEVILLE ST LUCIEN" + "codePostal": "30110", + "codeCommune": "30132", + "libelleAcheminement": "LA GRAND COMBE", + "nomCommune": "LA GRAND COMBE" }, { - "codePostal": "06300", - "codeCommune": "06088", - "libelleAcheminement": "NICE", - "nomCommune": "NICE" + "codePostal": "31320", + "codeCommune": "31411", + "libelleAcheminement": "PECHBUSQUE", + "nomCommune": "PECHBUSQUE" }, { - "codePostal": "67700", - "codeCommune": "67161", - "libelleAcheminement": "GOTTENHOUSE", - "nomCommune": "GOTTENHOUSE" + "codePostal": "43140", + "codeCommune": "43227", + "libelleAcheminement": "ST VICTOR MALESCOURS", + "nomCommune": "ST VICTOR MALESCOURS" }, { - "codePostal": "34560", - "codeCommune": "34213", - "libelleAcheminement": "POUSSAN", - "nomCommune": "POUSSAN" + "codePostal": "42720", + "codeCommune": "42338", + "libelleAcheminement": "VOUGY", + "nomCommune": "VOUGY" }, { - "codePostal": "60250", - "codeCommune": "60015", - "libelleAcheminement": "ANGY", - "nomCommune": "ANGY" + "codePostal": "30760", + "codeCommune": "30143", + "libelleAcheminement": "LAVAL ST ROMAN", + "nomCommune": "LAVAL ST ROMAN" }, { - "codePostal": "06440", - "codeCommune": "06091", - "libelleAcheminement": "PEILLE", - "nomCommune": "PEILLE" + "codePostal": "31480", + "codeCommune": "31413", + "libelleAcheminement": "PELLEPORT", + "nomCommune": "PELLEPORT" }, { - "codePostal": "67190", - "codeCommune": "67167", - "libelleAcheminement": "GRENDELBRUCH", - "nomCommune": "GRENDELBRUCH" + "codePostal": "43150", + "codeCommune": "43231", + "libelleAcheminement": "SALETTES", + "nomCommune": "SALETTES" }, { - "codePostal": "34160", - "codeCommune": "34227", - "libelleAcheminement": "RESTINCLIERES", - "nomCommune": "RESTINCLIERES" + "codePostal": "42430", + "codeCommune": "42339", + "libelleAcheminement": "CHAUSSETERRE", + "nomCommune": "CHAUSSETERRE" }, { - "codePostal": "60250", - "codeCommune": "60016", - "libelleAcheminement": "ANSACQ", - "nomCommune": "ANSACQ" + "codePostal": "30250", + "codeCommune": "30144", + "libelleAcheminement": "LECQUES", + "nomCommune": "LECQUES" }, { - "codePostal": "06260", - "codeCommune": "06093", - "libelleAcheminement": "LA PENNE", - "nomCommune": "LA PENNE" + "codePostal": "31820", + "codeCommune": "31417", + "libelleAcheminement": "PIBRAC", + "nomCommune": "PIBRAC" }, { - "codePostal": "67190", - "codeCommune": "67168", - "libelleAcheminement": "GRESSWILLER", - "nomCommune": "GRESSWILLER" + "codePostal": "43170", + "codeCommune": "43234", + "libelleAcheminement": "SAUGUES", + "nomCommune": "SAUGUES" }, { - "codePostal": "34220", - "codeCommune": "34228", - "libelleAcheminement": "RIEUSSEC", - "nomCommune": "RIEUSSEC" + "codePostal": "43100", + "codeCommune": "43001", + "libelleAcheminement": "AGNAT", + "nomCommune": "AGNAT" }, { - "codePostal": "60300", - "codeCommune": "60022", - "libelleAcheminement": "APREMONT", - "nomCommune": "APREMONT" + "codePostal": "30350", + "codeCommune": "30147", + "libelleAcheminement": "LEZAN", + "nomCommune": "LEZAN" }, { - "codePostal": "06470", - "codeCommune": "06094", - "libelleAcheminement": "PEONE", - "nomCommune": "PEONE" + "codePostal": "31370", + "codeCommune": "31423", + "libelleAcheminement": "PLAGNOLE", + "nomCommune": "PLAGNOLE" }, { - "codePostal": "67240", - "codeCommune": "67169", - "libelleAcheminement": "GRIES", - "nomCommune": "GRIES" + "codePostal": "43300", + "codeCommune": "43239", + "libelleAcheminement": "SIAUGUES STE MARIE", + "nomCommune": "SIAUGUES STE MARIE" }, { - "codePostal": "34650", - "codeCommune": "34233", - "libelleAcheminement": "ROQUEREDONDE", - "nomCommune": "ROQUEREDONDE" + "codePostal": "43580", + "codeCommune": "43005", + "libelleAcheminement": "ALLEYRAS", + "nomCommune": "ALLEYRAS" }, { - "codePostal": "60390", - "codeCommune": "60029", - "libelleAcheminement": "AUNEUIL", - "nomCommune": "AUNEUIL" + "codePostal": "30126", + "codeCommune": "30149", + "libelleAcheminement": "LIRAC", + "nomCommune": "LIRAC" }, { - "codePostal": "06260", - "codeCommune": "06096", - "libelleAcheminement": "PIERLAS", - "nomCommune": "PIERLAS" + "codePostal": "31830", + "codeCommune": "31424", + "libelleAcheminement": "PLAISANCE DU TOUCH", + "nomCommune": "PLAISANCE DU TOUCH" }, { - "codePostal": "67110", - "codeCommune": "67176", - "libelleAcheminement": "GUNDERSHOFFEN", - "nomCommune": "GUNDERSHOFFEN" + "codePostal": "43230", + "codeCommune": "43250", + "libelleAcheminement": "VALS LE CHASTEL", + "nomCommune": "VALS LE CHASTEL" }, { - "codePostal": "34610", - "codeCommune": "34235", - "libelleAcheminement": "ROSIS", - "nomCommune": "ROSIS" + "codePostal": "43380", + "codeCommune": "43006", + "libelleAcheminement": "ALLY", + "nomCommune": "ALLY" }, { - "codePostal": "60390", - "codeCommune": "60030", - "libelleAcheminement": "AUTEUIL", - "nomCommune": "AUTEUIL" + "codePostal": "30320", + "codeCommune": "30156", + "libelleAcheminement": "MARGUERITTES", + "nomCommune": "MARGUERITTES" }, { - "codePostal": "06550", - "codeCommune": "06108", - "libelleAcheminement": "LA ROQUETTE SUR SIAGNE", - "nomCommune": "LA ROQUETTE SUR SIAGNE" + "codePostal": "31800", + "codeCommune": "31427", + "libelleAcheminement": "POINTIS INARD", + "nomCommune": "POINTIS INARD" }, { - "codePostal": "67360", - "codeCommune": "67177", - "libelleAcheminement": "GUNSTETT", - "nomCommune": "GUNSTETT" + "codePostal": "43800", + "codeCommune": "43267", + "libelleAcheminement": "VOREY", + "nomCommune": "VOREY" }, { - "codePostal": "34130", - "codeCommune": "34240", - "libelleAcheminement": "ST AUNES", - "nomCommune": "ST AUNES" + "codePostal": "43700", + "codeCommune": "43010", + "libelleAcheminement": "ARSAC EN VELAY", + "nomCommune": "ARSAC EN VELAY" }, { - "codePostal": "60890", - "codeCommune": "60031", - "libelleAcheminement": "AUTHEUIL EN VALOIS", - "nomCommune": "AUTHEUIL EN VALOIS" + "codePostal": "30140", + "codeCommune": "30168", + "libelleAcheminement": "MIALET", + "nomCommune": "MIALET" }, { - "codePostal": "06650", - "codeCommune": "06112", - "libelleAcheminement": "LE ROURET", - "nomCommune": "LE ROURET" + "codePostal": "31450", + "codeCommune": "31429", + "libelleAcheminement": "POMPERTUZAT", + "nomCommune": "POMPERTUZAT" }, { - "codePostal": "67600", - "codeCommune": "67196", - "libelleAcheminement": "HILSENHEIM", - "nomCommune": "HILSENHEIM" + "codePostal": "44320", + "codeCommune": "44005", + "libelleAcheminement": "CHAUMES EN RETZ", + "nomCommune": "CHAUMES EN RETZ" }, { - "codePostal": "34670", - "codeCommune": "34244", - "libelleAcheminement": "ST BRES", - "nomCommune": "ST BRES" + "codePostal": "43110", + "codeCommune": "43012", + "libelleAcheminement": "AUREC SUR LOIRE", + "nomCommune": "AUREC SUR LOIRE" }, { - "codePostal": "60130", - "codeCommune": "60034", - "libelleAcheminement": "AVRECHY", - "nomCommune": "AVRECHY" + "codePostal": "30540", + "codeCommune": "30169", + "libelleAcheminement": "MILHAUD", + "nomCommune": "MILHAUD" }, { - "codePostal": "06530", - "codeCommune": "06137", - "libelleAcheminement": "SPERACEDES", - "nomCommune": "SPERACEDES" + "codePostal": "31210", + "codeCommune": "31430", + "libelleAcheminement": "PONLAT TAILLEBOURG", + "nomCommune": "PONLAT TAILLEBOURG" }, { - "codePostal": "67270", - "codeCommune": "67202", - "libelleAcheminement": "HOCHFELDEN", - "nomCommune": "HOCHFELDEN" + "codePostal": "44740", + "codeCommune": "44010", + "libelleAcheminement": "BATZ SUR MER", + "nomCommune": "BATZ SUR MER" }, { - "codePostal": "34390", - "codeCommune": "34250", - "libelleAcheminement": "ST ETIENNE D ALBAGNAN", - "nomCommune": "ST ETIENNE D ALBAGNAN" + "codePostal": "43210", + "codeCommune": "43020", + "libelleAcheminement": "BAS EN BASSET", + "nomCommune": "BAS EN BASSET" }, { - "codePostal": "60190", - "codeCommune": "60036", - "libelleAcheminement": "AVRIGNY", - "nomCommune": "AVRIGNY" + "codePostal": "30340", + "codeCommune": "30173", + "libelleAcheminement": "MONS", + "nomCommune": "MONS" }, { - "codePostal": "06750", - "codeCommune": "06154", - "libelleAcheminement": "VALDEROURE", - "nomCommune": "VALDEROURE" + "codePostal": "31160", + "codeCommune": "31431", + "libelleAcheminement": "PORTET D ASPET", + "nomCommune": "PORTET D ASPET" }, { - "codePostal": "67310", - "codeCommune": "67208", - "libelleAcheminement": "HOHENGOEFT", - "nomCommune": "HOHENGOEFT" + "codePostal": "44580", + "codeCommune": "44021", + "libelleAcheminement": "VILLENEUVE EN RETZ", + "nomCommune": "VILLENEUVE EN RETZ" }, { - "codePostal": "34610", - "codeCommune": "34257", - "libelleAcheminement": "ST GENIES DE VARENSAL", - "nomCommune": "ST GENIES DE VARENSAL" + "codePostal": "43200", + "codeCommune": "43028", + "libelleAcheminement": "BESSAMOREL", + "nomCommune": "BESSAMOREL" }, { - "codePostal": "60120", - "codeCommune": "60039", - "libelleAcheminement": "BACOUEL", - "nomCommune": "BACOUEL" + "codePostal": "30350", + "codeCommune": "30183", + "libelleAcheminement": "MOULEZAN", + "nomCommune": "MOULEZAN" }, { - "codePostal": "06710", - "codeCommune": "06158", - "libelleAcheminement": "VILLARS SUR VAR", - "nomCommune": "VILLARS SUR VAR" + "codePostal": "31430", + "codeCommune": "31436", + "libelleAcheminement": "POUY DE TOUGES", + "nomCommune": "POUY DE TOUGES" }, { - "codePostal": "67140", - "codeCommune": "67227", - "libelleAcheminement": "ITTERSWILLER", - "nomCommune": "ITTERSWILLER" + "codePostal": "44850", + "codeCommune": "44028", + "libelleAcheminement": "LE CELLIER", + "nomCommune": "LE CELLIER" }, { - "codePostal": "34700", - "codeCommune": "34268", - "libelleAcheminement": "ST JEAN DE LA BLAQUIERE", - "nomCommune": "ST JEAN DE LA BLAQUIERE" + "codePostal": "43700", + "codeCommune": "43032", + "libelleAcheminement": "BLAVOZY", + "nomCommune": "BLAVOZY" }, { - "codePostal": "60190", - "codeCommune": "60040", - "libelleAcheminement": "BAILLEUL LE SOC", - "nomCommune": "BAILLEUL LE SOC" + "codePostal": "30114", + "codeCommune": "30186", + "libelleAcheminement": "NAGES ET SOLORGUES", + "nomCommune": "NAGES ET SOLORGUES" }, { - "codePostal": "06270", - "codeCommune": "06161", - "libelleAcheminement": "VILLENEUVE LOUBET", - "nomCommune": "VILLENEUVE LOUBET" + "codePostal": "31460", + "codeCommune": "31441", + "libelleAcheminement": "PRUNET", + "nomCommune": "PRUNET" }, { - "codePostal": "67230", - "codeCommune": "67233", - "libelleAcheminement": "KERTZFELD", - "nomCommune": "KERTZFELD" + "codePostal": "44450", + "codeCommune": "44029", + "libelleAcheminement": "DIVATTE SUR LOIRE", + "nomCommune": "DIVATTE SUR LOIRE" }, { - "codePostal": "34360", - "codeCommune": "34269", - "libelleAcheminement": "ST JEAN DE MINERVOIS", - "nomCommune": "ST JEAN DE MINERVOIS" + "codePostal": "43500", + "codeCommune": "43034", + "libelleAcheminement": "BOISSET", + "nomCommune": "BOISSET" }, { - "codePostal": "60170", - "codeCommune": "60043", - "libelleAcheminement": "BAILLY", - "nomCommune": "BAILLY" + "codePostal": "30580", + "codeCommune": "30187", + "libelleAcheminement": "NAVACELLES", + "nomCommune": "NAVACELLES" }, { - "codePostal": "07440", - "codeCommune": "07007", - "libelleAcheminement": "ALBOUSSIERE", - "nomCommune": "ALBOUSSIERE" + "codePostal": "31160", + "codeCommune": "31447", + "libelleAcheminement": "RAZECUEILLE", + "nomCommune": "RAZECUEILLE" }, { - "codePostal": "67930", - "codeCommune": "67235", - "libelleAcheminement": "KESSELDORF", - "nomCommune": "KESSELDORF" + "codePostal": "44450", + "codeCommune": "44029", + "libelleAcheminement": "DIVATTE SUR LOIRE", + "nomCommune": "DIVATTE SUR LOIRE" }, { - "codePostal": "34190", - "codeCommune": "34277", - "libelleAcheminement": "ST MAURICE NAVACELLES", - "nomCommune": "ST MAURICE NAVACELLES" + "codePostal": "43350", + "codeCommune": "43036", + "libelleAcheminement": "BORNE", + "nomCommune": "BORNE" }, { - "codePostal": "60210", - "codeCommune": "60051", - "libelleAcheminement": "BEAUDEDUIT", - "nomCommune": "BEAUDEDUIT" + "codePostal": "30900", + "codeCommune": "30189", + "libelleAcheminement": "NIMES", + "nomCommune": "NIMES" }, { - "codePostal": "07210", - "codeCommune": "07008", - "libelleAcheminement": "ALISSAS", - "nomCommune": "ALISSAS" + "codePostal": "31320", + "codeCommune": "31448", + "libelleAcheminement": "REBIGUE", + "nomCommune": "REBIGUE" }, { - "codePostal": "67230", - "codeCommune": "67246", - "libelleAcheminement": "KOGENHEIM", - "nomCommune": "KOGENHEIM" + "codePostal": "44410", + "codeCommune": "44030", + "libelleAcheminement": "LA CHAPELLE DES MARAIS", + "nomCommune": "LA CHAPELLE DES MARAIS" }, { - "codePostal": "34490", - "codeCommune": "34279", - "libelleAcheminement": "ST NAZAIRE DE LADAREZ", - "nomCommune": "ST NAZAIRE DE LADAREZ" + "codePostal": "43510", + "codeCommune": "43037", + "libelleAcheminement": "LE BOUCHET ST NICOLAS", + "nomCommune": "LE BOUCHET ST NICOLAS" }, { - "codePostal": "60390", - "codeCommune": "60054", - "libelleAcheminement": "LES HAUTS TALICAN", - "nomCommune": "LES HAUTS TALICAN" + "codePostal": "30124", + "codeCommune": "30195", + "libelleAcheminement": "PEYROLLES", + "nomCommune": "PEYROLLES" }, { - "codePostal": "07530", - "codeCommune": "07011", - "libelleAcheminement": "VALLEES D ANTRAIGUES ASPERJOC", - "nomCommune": "VALLEES D ANTRAIGUES ASPERJOC" + "codePostal": "31800", + "codeCommune": "31452", + "libelleAcheminement": "RIEUCAZE", + "nomCommune": "RIEUCAZE" }, { - "codePostal": "67520", - "codeCommune": "67253", - "libelleAcheminement": "KUTTOLSHEIM", - "nomCommune": "KUTTOLSHEIM" + "codePostal": "44690", + "codeCommune": "44037", + "libelleAcheminement": "CHATEAU THEBAUD", + "nomCommune": "CHATEAU THEBAUD" }, { - "codePostal": "34725", - "codeCommune": "34287", - "libelleAcheminement": "ST SATURNIN DE LUCIAN", - "nomCommune": "ST SATURNIN DE LUCIAN" + "codePostal": "43100", + "codeCommune": "43040", + "libelleAcheminement": "BRIOUDE", + "nomCommune": "BRIOUDE" }, { - "codePostal": "60129", - "codeCommune": "60066", - "libelleAcheminement": "BETHANCOURT EN VALOIS", - "nomCommune": "BETHANCOURT EN VALOIS" + "codePostal": "30122", + "codeCommune": "30198", + "libelleAcheminement": "LES PLANTIERS", + "nomCommune": "LES PLANTIERS" }, { - "codePostal": "07600", - "codeCommune": "07011", - "libelleAcheminement": "VALLEES D ANTRAIGUES ASPERJOC", - "nomCommune": "VALLEES D ANTRAIGUES ASPERJOC" + "codePostal": "31540", + "codeCommune": "31463", + "libelleAcheminement": "ROUMENS", + "nomCommune": "ROUMENS" }, { - "codePostal": "67250", - "codeCommune": "67254", - "libelleAcheminement": "KUTZENHAUSEN", - "nomCommune": "KUTZENHAUSEN" + "codePostal": "44118", + "codeCommune": "44041", + "libelleAcheminement": "LA CHEVROLIERE", + "nomCommune": "LA CHEVROLIERE" }, { - "codePostal": "34390", - "codeCommune": "34291", - "libelleAcheminement": "ST VINCENT D OLARGUES", - "nomCommune": "ST VINCENT D OLARGUES" + "codePostal": "43440", + "codeCommune": "43052", + "libelleAcheminement": "CHAMPAGNAC LE VIEUX", + "nomCommune": "CHAMPAGNAC LE VIEUX" }, { - "codePostal": "60320", - "codeCommune": "60067", - "libelleAcheminement": "BETHISY ST MARTIN", - "nomCommune": "BETHISY ST MARTIN" + "codePostal": "30330", + "codeCommune": "30205", + "libelleAcheminement": "POUGNADORESSE", + "nomCommune": "POUGNADORESSE" }, { - "codePostal": "07330", - "codeCommune": "07018", - "libelleAcheminement": "ASTET", - "nomCommune": "ASTET" + "codePostal": "31370", + "codeCommune": "31464", + "libelleAcheminement": "SABONNERES", + "nomCommune": "SABONNERES" }, { - "codePostal": "67220", - "codeCommune": "67255", - "libelleAcheminement": "LALAYE", - "nomCommune": "LALAYE" + "codePostal": "44560", + "codeCommune": "44046", + "libelleAcheminement": "CORSEPT", + "nomCommune": "CORSEPT" }, { - "codePostal": "34270", - "codeCommune": "34297", - "libelleAcheminement": "SAUTEYRARGUES", - "nomCommune": "SAUTEYRARGUES" + "codePostal": "43170", + "codeCommune": "43054", + "libelleAcheminement": "CHANALEILLES", + "nomCommune": "CHANALEILLES" }, { - "codePostal": "60350", - "codeCommune": "60072", - "libelleAcheminement": "BITRY", - "nomCommune": "BITRY" + "codePostal": "30320", + "codeCommune": "30206", + "libelleAcheminement": "POULX", + "nomCommune": "POULX" }, { - "codePostal": "07330", - "codeCommune": "07025", - "libelleAcheminement": "BARNAS", - "nomCommune": "BARNAS" + "codePostal": "31440", + "codeCommune": "31471", + "libelleAcheminement": "ST BEAT LEZ", + "nomCommune": "ST BEAT LEZ" }, { - "codePostal": "67700", - "codeCommune": "67258", - "libelleAcheminement": "LANDERSHEIM", - "nomCommune": "LANDERSHEIM" + "codePostal": "44530", + "codeCommune": "44053", + "libelleAcheminement": "DREFFEAC", + "nomCommune": "DREFFEAC" }, { - "codePostal": "34700", - "codeCommune": "34306", - "libelleAcheminement": "SOUMONT", - "nomCommune": "SOUMONT" + "codePostal": "43300", + "codeCommune": "43065", + "libelleAcheminement": "CHASTEL", + "nomCommune": "CHASTEL" }, { - "codePostal": "60510", - "codeCommune": "60081", - "libelleAcheminement": "BONLIER", - "nomCommune": "BONLIER" + "codePostal": "30210", + "codeCommune": "30212", + "libelleAcheminement": "REMOULINS", + "nomCommune": "REMOULINS" }, { - "codePostal": "07630", - "codeCommune": "07026", - "libelleAcheminement": "LE BEAGE", - "nomCommune": "LE BEAGE" + "codePostal": "31430", + "codeCommune": "31476", + "libelleAcheminement": "ST ELIX LE CHATEAU", + "nomCommune": "ST ELIX LE CHATEAU" }, { - "codePostal": "67510", - "codeCommune": "67263", - "libelleAcheminement": "LEMBACH", - "nomCommune": "LEMBACH" + "codePostal": "44660", + "codeCommune": "44058", + "libelleAcheminement": "FERCE", + "nomCommune": "FERCE" }, { - "codePostal": "34490", - "codeCommune": "34310", - "libelleAcheminement": "THEZAN LES BEZIERS", - "nomCommune": "THEZAN LES BEZIERS" + "codePostal": "43380", + "codeCommune": "43070", + "libelleAcheminement": "CHILHAC", + "nomCommune": "CHILHAC" }, { - "codePostal": "60540", - "codeCommune": "60088", - "libelleAcheminement": "BORNEL", - "nomCommune": "BORNEL" + "codePostal": "30430", + "codeCommune": "30218", + "libelleAcheminement": "ROCHEGUDE", + "nomCommune": "ROCHEGUDE" }, { - "codePostal": "07190", - "codeCommune": "07030", - "libelleAcheminement": "BEAUVENE", - "nomCommune": "BEAUVENE" + "codePostal": "31290", + "codeCommune": "31514", + "libelleAcheminement": "ST ROME", + "nomCommune": "ST ROME" }, { - "codePostal": "67440", - "codeCommune": "67272", - "libelleAcheminement": "LOCHWILLER", - "nomCommune": "LOCHWILLER" + "codePostal": "44320", + "codeCommune": "44061", + "libelleAcheminement": "FROSSAY", + "nomCommune": "FROSSAY" }, { - "codePostal": "34120", - "codeCommune": "34311", - "libelleAcheminement": "TOURBES", - "nomCommune": "TOURBES" + "codePostal": "43230", + "codeCommune": "43075", + "libelleAcheminement": "COLLAT", + "nomCommune": "COLLAT" }, { - "codePostal": "60240", - "codeCommune": "60090", - "libelleAcheminement": "BOUCONVILLERS", - "nomCommune": "BOUCONVILLERS" + "codePostal": "30340", + "codeCommune": "30223", + "libelleAcheminement": "ROUSSON", + "nomCommune": "ROUSSON" }, { - "codePostal": "07460", - "codeCommune": "07031", - "libelleAcheminement": "BERRIAS ET CASTELJAU", - "nomCommune": "BERRIAS ET CASTELJAU" + "codePostal": "31470", + "codeCommune": "31518", + "libelleAcheminement": "ST THOMAS", + "nomCommune": "ST THOMAS" }, { - "codePostal": "67290", - "codeCommune": "67273", - "libelleAcheminement": "LOHR", - "nomCommune": "LOHR" + "codePostal": "44130", + "codeCommune": "44062", + "libelleAcheminement": "LE GAVRE", + "nomCommune": "LE GAVRE" }, { - "codePostal": "34270", - "codeCommune": "34314", - "libelleAcheminement": "LE TRIADOU", - "nomCommune": "LE TRIADOU" + "codePostal": "43700", + "codeCommune": "43078", + "libelleAcheminement": "COUBON", + "nomCommune": "COUBON" }, { - "codePostal": "60440", - "codeCommune": "60101", - "libelleAcheminement": "BREGY", - "nomCommune": "BREGY" + "codePostal": "30190", + "codeCommune": "30228", + "libelleAcheminement": "STE ANASTASIE", + "nomCommune": "STE ANASTASIE" }, { - "codePostal": "07700", - "codeCommune": "07034", - "libelleAcheminement": "BIDON", - "nomCommune": "BIDON" + "codePostal": "31260", + "codeCommune": "31523", + "libelleAcheminement": "SALIES DU SALAT", + "nomCommune": "SALIES DU SALAT" }, { - "codePostal": "67390", - "codeCommune": "67281", - "libelleAcheminement": "MARCKOLSHEIM", - "nomCommune": "MARCKOLSHEIM" + "codePostal": "44290", + "codeCommune": "44067", + "libelleAcheminement": "GUEMENE PENFAO", + "nomCommune": "GUEMENE PENFAO" }, { - "codePostal": "34230", - "codeCommune": "34315", - "libelleAcheminement": "USCLAS D HERAULT", - "nomCommune": "USCLAS D HERAULT" + "codePostal": "43000", + "codeCommune": "43089", + "libelleAcheminement": "ESPALY ST MARCEL", + "nomCommune": "ESPALY ST MARCEL" }, { - "codePostal": "60510", - "codeCommune": "60103", - "libelleAcheminement": "BRESLES", - "nomCommune": "BRESLES" + "codePostal": "30500", + "codeCommune": "30237", + "libelleAcheminement": "ST BRES", + "nomCommune": "ST BRES" }, { - "codePostal": "07440", - "codeCommune": "07035", - "libelleAcheminement": "BOFFRES", - "nomCommune": "BOFFRES" + "codePostal": "31220", + "codeCommune": "31530", + "libelleAcheminement": "SANA", + "nomCommune": "SANA" }, { - "codePostal": "67520", - "codeCommune": "67282", - "libelleAcheminement": "MARLENHEIM", - "nomCommune": "MARLENHEIM" + "codePostal": "44115", + "codeCommune": "44071", + "libelleAcheminement": "HAUTE GOULAINE", + "nomCommune": "HAUTE GOULAINE" }, { - "codePostal": "34220", - "codeCommune": "34331", - "libelleAcheminement": "VERRERIES DE MOUSSANS", - "nomCommune": "VERRERIES DE MOUSSANS" + "codePostal": "43580", + "codeCommune": "43090", + "libelleAcheminement": "ESPLANTAS VAZEILLES", + "nomCommune": "ESPLANTAS VAZEILLES" }, { - "codePostal": "60400", - "codeCommune": "60117", - "libelleAcheminement": "BUSSY", - "nomCommune": "BUSSY" + "codePostal": "30360", + "codeCommune": "30250", + "libelleAcheminement": "ST ETIENNE DE L OLM", + "nomCommune": "ST ETIENNE DE L OLM" }, { - "codePostal": "07590", - "codeCommune": "07038", - "libelleAcheminement": "BORNE", - "nomCommune": "BORNE" + "codePostal": "31800", + "codeCommune": "31536", + "libelleAcheminement": "SAUX ET POMAREDE", + "nomCommune": "SAUX ET POMAREDE" }, { - "codePostal": "67440", - "codeCommune": "67283", - "libelleAcheminement": "MARMOUTIER", - "nomCommune": "MARMOUTIER" + "codePostal": "44410", + "codeCommune": "44072", + "libelleAcheminement": "HERBIGNAC", + "nomCommune": "HERBIGNAC" }, { - "codePostal": "34420", - "codeCommune": "34336", - "libelleAcheminement": "VILLENEUVE LES BEZIERS", - "nomCommune": "VILLENEUVE LES BEZIERS" + "codePostal": "43150", + "codeCommune": "43097", + "libelleAcheminement": "FREYCENET LA CUCHE", + "nomCommune": "FREYCENET LA CUCHE" }, { - "codePostal": "60400", - "codeCommune": "60118", - "libelleAcheminement": "CAISNES", - "nomCommune": "CAISNES" + "codePostal": "30200", + "codeCommune": "30256", + "libelleAcheminement": "ST GERVAIS", + "nomCommune": "ST GERVAIS" }, { - "codePostal": "07100", - "codeCommune": "07041", - "libelleAcheminement": "BOULIEU LES ANNONAY", - "nomCommune": "BOULIEU LES ANNONAY" + "codePostal": "31800", + "codeCommune": "31537", + "libelleAcheminement": "SAVARTHES", + "nomCommune": "SAVARTHES" }, { - "codePostal": "67210", - "codeCommune": "67286", - "libelleAcheminement": "MEISTRATZHEIM", - "nomCommune": "MEISTRATZHEIM" + "codePostal": "44610", + "codeCommune": "44074", + "libelleAcheminement": "INDRE", + "nomCommune": "INDRE" }, { - "codePostal": "34560", - "codeCommune": "34341", - "libelleAcheminement": "VILLEVEYRAC", - "nomCommune": "VILLEVEYRAC" + "codePostal": "43490", + "codeCommune": "43109", + "libelleAcheminement": "LAFARRE", + "nomCommune": "LAFARRE" }, { - "codePostal": "60220", - "codeCommune": "60122", - "libelleAcheminement": "CAMPEAUX", - "nomCommune": "CAMPEAUX" + "codePostal": "30800", + "codeCommune": "30258", + "libelleAcheminement": "ST GILLES", + "nomCommune": "ST GILLES" }, { - "codePostal": "07590", - "codeCommune": "07047", - "libelleAcheminement": "CELLIER DU LUC", - "nomCommune": "CELLIER DU LUC" + "codePostal": "31440", + "codeCommune": "31548", + "libelleAcheminement": "SIGNAC", + "nomCommune": "SIGNAC" }, { - "codePostal": "67340", - "codeCommune": "67289", - "libelleAcheminement": "MENCHHOFFEN", - "nomCommune": "MENCHHOFFEN" + "codePostal": "44520", + "codeCommune": "44075", + "libelleAcheminement": "ISSE", + "nomCommune": "ISSE" }, { - "codePostal": "35250", - "codeCommune": "35007", - "libelleAcheminement": "AUBIGNE", - "nomCommune": "AUBIGNE" + "codePostal": "43100", + "codeCommune": "43110", + "libelleAcheminement": "LAMOTHE", + "nomCommune": "LAMOTHE" }, { - "codePostal": "60480", - "codeCommune": "60123", - "libelleAcheminement": "CAMPREMY", - "nomCommune": "CAMPREMY" + "codePostal": "30560", + "codeCommune": "30259", + "libelleAcheminement": "ST HILAIRE DE BRETHMAS", + "nomCommune": "ST HILAIRE DE BRETHMAS" }, { - "codePostal": "07240", - "codeCommune": "07048", - "libelleAcheminement": "CHALENCON", - "nomCommune": "CHALENCON" + "codePostal": "31110", + "codeCommune": "31549", + "libelleAcheminement": "SODE", + "nomCommune": "SODE" }, { - "codePostal": "67190", - "codeCommune": "67299", - "libelleAcheminement": "MOLLKIRCH", - "nomCommune": "MOLLKIRCH" + "codePostal": "44170", + "codeCommune": "44076", + "libelleAcheminement": "JANS", + "nomCommune": "JANS" }, { - "codePostal": "35470", - "codeCommune": "35012", - "libelleAcheminement": "BAIN DE BRETAGNE", - "nomCommune": "BAIN DE BRETAGNE" + "codePostal": "43340", + "codeCommune": "43111", + "libelleAcheminement": "LANDOS", + "nomCommune": "LANDOS" }, { - "codePostal": "60310", - "codeCommune": "60127", - "libelleAcheminement": "CANNY SUR MATZ", - "nomCommune": "CANNY SUR MATZ" + "codePostal": "30170", + "codeCommune": "30263", + "libelleAcheminement": "ST HIPPOLYTE DU FORT", + "nomCommune": "ST HIPPOLYTE DU FORT" }, { - "codePostal": "07120", - "codeCommune": "07061", - "libelleAcheminement": "CHAUZON", - "nomCommune": "CHAUZON" + "codePostal": "31570", + "codeCommune": "31551", + "libelleAcheminement": "TARABEL", + "nomCommune": "TARABEL" }, { - "codePostal": "67600", - "codeCommune": "67310", - "libelleAcheminement": "MUSSIG", - "nomCommune": "MUSSIG" + "codePostal": "44290", + "codeCommune": "44092", + "libelleAcheminement": "MASSERAC", + "nomCommune": "MASSERAC" }, { - "codePostal": "35600", - "codeCommune": "35013", - "libelleAcheminement": "BAINS SUR OUST", - "nomCommune": "BAINS SUR OUST" + "codePostal": "43300", + "codeCommune": "43112", + "libelleAcheminement": "LANGEAC", + "nomCommune": "LANGEAC" }, { - "codePostal": "60130", - "codeCommune": "60133", - "libelleAcheminement": "CATILLON FUMECHON", - "nomCommune": "CATILLON FUMECHON" + "codePostal": "30440", + "codeCommune": "30272", + "libelleAcheminement": "ST JULIEN DE LA NEF", + "nomCommune": "ST JULIEN DE LA NEF" }, { - "codePostal": "07270", - "codeCommune": "07068", - "libelleAcheminement": "COLOMBIER LE JEUNE", - "nomCommune": "COLOMBIER LE JEUNE" + "codePostal": "31420", + "codeCommune": "31552", + "libelleAcheminement": "TERREBASSE", + "nomCommune": "TERREBASSE" }, { - "codePostal": "67600", - "codeCommune": "67311", - "libelleAcheminement": "MUTTERSHOLTZ", - "nomCommune": "MUTTERSHOLTZ" + "codePostal": "44520", + "codeCommune": "44095", + "libelleAcheminement": "LA MEILLERAYE DE BRETAGNE", + "nomCommune": "LA MEILLERAYE DE BRETAGNE" }, { - "codePostal": "35190", - "codeCommune": "35017", - "libelleAcheminement": "LA BAUSSAINE", - "nomCommune": "LA BAUSSAINE" + "codePostal": "43360", + "codeCommune": "43123", + "libelleAcheminement": "LORLANGES", + "nomCommune": "LORLANGES" }, { - "codePostal": "60500", - "codeCommune": "60141", - "libelleAcheminement": "CHANTILLY", - "nomCommune": "CHANTILLY" + "codePostal": "30330", + "codeCommune": "30282", + "libelleAcheminement": "ST MARCEL DE CAREIRET", + "nomCommune": "ST MARCEL DE CAREIRET" }, { - "codePostal": "07510", - "codeCommune": "07075", - "libelleAcheminement": "CROS DE GEORAND", - "nomCommune": "CROS DE GEORAND" + "codePostal": "31000", + "codeCommune": "31555", + "libelleAcheminement": "TOULOUSE", + "nomCommune": "TOULOUSE" }, { - "codePostal": "67190", - "codeCommune": "67313", - "libelleAcheminement": "MUTZIG", - "nomCommune": "MUTZIG" + "codePostal": "44140", + "codeCommune": "44102", + "libelleAcheminement": "MONTBERT", + "nomCommune": "MONTBERT" }, { - "codePostal": "35750", - "codeCommune": "35026", - "libelleAcheminement": "BLERUAIS", - "nomCommune": "BLERUAIS" + "codePostal": "43520", + "codeCommune": "43130", + "libelleAcheminement": "MAZET ST VOY", + "nomCommune": "MAZET ST VOY" }, { - "codePostal": "60710", - "codeCommune": "60149", - "libelleAcheminement": "CHEVRIERES", - "nomCommune": "CHEVRIERES" + "codePostal": "30440", + "codeCommune": "30283", + "libelleAcheminement": "ST MARTIAL", + "nomCommune": "ST MARTIAL" }, { - "codePostal": "07270", - "codeCommune": "07095", - "libelleAcheminement": "GILHOC SUR ORMEZE", - "nomCommune": "GILHOC SUR ORMEZE" + "codePostal": "31200", + "codeCommune": "31555", + "libelleAcheminement": "TOULOUSE", + "nomCommune": "TOULOUSE" }, { - "codePostal": "67630", - "codeCommune": "67315", - "libelleAcheminement": "NEEWILLER PRES LAUTERBOURG", - "nomCommune": "NEEWILLER PRES LAUTERBOURG" + "codePostal": "44300", + "codeCommune": "44109", + "libelleAcheminement": "NANTES", + "nomCommune": "NANTES" }, { - "codePostal": "35320", - "codeCommune": "35030", - "libelleAcheminement": "LA BOSSE DE BRETAGNE", - "nomCommune": "LA BOSSE DE BRETAGNE" + "codePostal": "43300", + "codeCommune": "43132", + "libelleAcheminement": "MAZEYRAT D ALLIER", + "nomCommune": "MAZEYRAT D ALLIER" }, { - "codePostal": "60138", - "codeCommune": "60150", - "libelleAcheminement": "CHIRY OURSCAMP", - "nomCommune": "CHIRY OURSCAMP" + "codePostal": "30200", + "codeCommune": "30287", + "libelleAcheminement": "ST MICHEL D EUZET", + "nomCommune": "ST MICHEL D EUZET" }, { - "codePostal": "07500", - "codeCommune": "07102", - "libelleAcheminement": "GUILHERAND GRANGES", - "nomCommune": "GUILHERAND GRANGES" + "codePostal": "31210", + "codeCommune": "31556", + "libelleAcheminement": "LES TOURREILLES", + "nomCommune": "LES TOURREILLES" }, { - "codePostal": "67130", - "codeCommune": "67321", - "libelleAcheminement": "NEUVILLER LA ROCHE", - "nomCommune": "NEUVILLER LA ROCHE" + "codePostal": "44330", + "codeCommune": "44117", + "libelleAcheminement": "LE PALLET", + "nomCommune": "LE PALLET" }, { - "codePostal": "35330", - "codeCommune": "35035", - "libelleAcheminement": "BOVEL", - "nomCommune": "BOVEL" + "codePostal": "43580", + "codeCommune": "43136", + "libelleAcheminement": "MONISTROL D ALLIER", + "nomCommune": "MONISTROL D ALLIER" }, { - "codePostal": "60660", - "codeCommune": "60155", - "libelleAcheminement": "CIRES LES MELLO", - "nomCommune": "CIRES LES MELLO" + "codePostal": "30200", + "codeCommune": "30288", + "libelleAcheminement": "ST NAZAIRE", + "nomCommune": "ST NAZAIRE" }, { - "codePostal": "07310", - "codeCommune": "07103", - "libelleAcheminement": "ST JULIEN D INTRES", - "nomCommune": "ST JULIEN D INTRES" + "codePostal": "31240", + "codeCommune": "31561", + "libelleAcheminement": "L UNION", + "nomCommune": "L UNION" }, { - "codePostal": "67110", - "codeCommune": "67324", - "libelleAcheminement": "NIEDERBRONN LES BAINS", - "nomCommune": "NIEDERBRONN LES BAINS" + "codePostal": "44670", + "codeCommune": "44121", + "libelleAcheminement": "PETIT AUVERNE", + "nomCommune": "PETIT AUVERNE" }, { - "codePostal": "35170", - "codeCommune": "35047", - "libelleAcheminement": "BRUZ", - "nomCommune": "BRUZ" + "codePostal": "43300", + "codeCommune": "43151", + "libelleAcheminement": "PINOLS", + "nomCommune": "PINOLS" }, { - "codePostal": "60280", - "codeCommune": "60156", - "libelleAcheminement": "CLAIROIX", - "nomCommune": "CLAIROIX" + "codePostal": "30330", + "codeCommune": "30292", + "libelleAcheminement": "ST PONS LA CALM", + "nomCommune": "ST PONS LA CALM" }, { - "codePostal": "07110", - "codeCommune": "07118", - "libelleAcheminement": "LABOULE", - "nomCommune": "LABOULE" + "codePostal": "31340", + "codeCommune": "31563", + "libelleAcheminement": "VACQUIERS", + "nomCommune": "VACQUIERS" }, { - "codePostal": "67350", - "codeCommune": "67328", - "libelleAcheminement": "NIEDERMODERN", - "nomCommune": "NIEDERMODERN" + "codePostal": "44770", + "codeCommune": "44126", + "libelleAcheminement": "LA PLAINE SUR MER", + "nomCommune": "LA PLAINE SUR MER" }, { - "codePostal": "35135", - "codeCommune": "35055", - "libelleAcheminement": "CHANTEPIE", - "nomCommune": "CHANTEPIE" + "codePostal": "43000", + "codeCommune": "43152", + "libelleAcheminement": "POLIGNAC", + "nomCommune": "POLIGNAC" }, { - "codePostal": "60360", - "codeCommune": "60161", - "libelleAcheminement": "CONTEVILLE", - "nomCommune": "CONTEVILLE" + "codePostal": "30340", + "codeCommune": "30294", + "libelleAcheminement": "ST PRIVAT DES VIEUX", + "nomCommune": "ST PRIVAT DES VIEUX" }, { - "codePostal": "07380", - "codeCommune": "07127", - "libelleAcheminement": "LALEVADE D ARDECHE", - "nomCommune": "LALEVADE D ARDECHE" + "codePostal": "31340", + "codeCommune": "31583", + "libelleAcheminement": "VILLEMATIER", + "nomCommune": "VILLEMATIER" }, { - "codePostal": "67470", - "codeCommune": "67330", - "libelleAcheminement": "NIEDERROEDERN", - "nomCommune": "NIEDERROEDERN" + "codePostal": "44160", + "codeCommune": "44129", + "libelleAcheminement": "PONTCHATEAU", + "nomCommune": "PONTCHATEAU" }, { - "codePostal": "35630", - "codeCommune": "35058", - "libelleAcheminement": "LA CHAPELLE CHAUSSEE", - "nomCommune": "LA CHAPELLE CHAUSSEE" + "codePostal": "43420", + "codeCommune": "43154", + "libelleAcheminement": "PRADELLES", + "nomCommune": "PRADELLES" }, { - "codePostal": "60350", - "codeCommune": "60171", - "libelleAcheminement": "COURTIEUX", - "nomCommune": "COURTIEUX" + "codePostal": "30750", + "codeCommune": "30297", + "libelleAcheminement": "ST SAUVEUR CAMPRIEU", + "nomCommune": "ST SAUVEUR CAMPRIEU" }, { - "codePostal": "07520", - "codeCommune": "07128", - "libelleAcheminement": "LALOUVESC", - "nomCommune": "LALOUVESC" + "codePostal": "32270", + "codeCommune": "32002", + "libelleAcheminement": "ANSAN", + "nomCommune": "ANSAN" }, { - "codePostal": "67240", - "codeCommune": "67345", - "libelleAcheminement": "OBERHOFFEN SUR MODER", - "nomCommune": "OBERHOFFEN SUR MODER" + "codePostal": "44210", + "codeCommune": "44131", + "libelleAcheminement": "PORNIC", + "nomCommune": "PORNIC" }, { - "codePostal": "35660", - "codeCommune": "35064", - "libelleAcheminement": "LA CHAPELLE DE BRAIN", - "nomCommune": "LA CHAPELLE DE BRAIN" + "codePostal": "43420", + "codeCommune": "43180", + "libelleAcheminement": "ST ETIENNE DU VIGAN", + "nomCommune": "ST ETIENNE DU VIGAN" }, { - "codePostal": "60420", - "codeCommune": "60179", - "libelleAcheminement": "CREVECOEUR LE PETIT", - "nomCommune": "CREVECOEUR LE PETIT" + "codePostal": "30260", + "codeCommune": "30300", + "libelleAcheminement": "ST THEODORIT", + "nomCommune": "ST THEODORIT" }, { - "codePostal": "07660", - "codeCommune": "07130", - "libelleAcheminement": "LANARCE", - "nomCommune": "LANARCE" + "codePostal": "32720", + "codeCommune": "32004", + "libelleAcheminement": "ARBLADE LE BAS", + "nomCommune": "ARBLADE LE BAS" }, { - "codePostal": "67330", - "codeCommune": "67347", - "libelleAcheminement": "OBERMODERN ZUTZENDORF", - "nomCommune": "OBERMODERN ZUTZENDORF" + "codePostal": "44390", + "codeCommune": "44138", + "libelleAcheminement": "PUCEUL", + "nomCommune": "PUCEUL" }, { - "codePostal": "35220", - "codeCommune": "35068", - "libelleAcheminement": "CHATEAUBOURG", - "nomCommune": "CHATEAUBOURG" + "codePostal": "43390", + "codeCommune": "43193", + "libelleAcheminement": "ST HILAIRE", + "nomCommune": "ST HILAIRE" }, { - "codePostal": "60530", - "codeCommune": "60185", - "libelleAcheminement": "CROUY EN THELLE", - "nomCommune": "CROUY EN THELLE" + "codePostal": "30700", + "codeCommune": "30308", + "libelleAcheminement": "SANILHAC SAGRIES", + "nomCommune": "SANILHAC SAGRIES" }, { - "codePostal": "07110", - "codeCommune": "07132", - "libelleAcheminement": "LARGENTIERE", - "nomCommune": "LARGENTIERE" + "codePostal": "32110", + "codeCommune": "32005", + "libelleAcheminement": "ARBLADE LE HAUT", + "nomCommune": "ARBLADE LE HAUT" }, { - "codePostal": "67330", - "codeCommune": "67352", - "libelleAcheminement": "OBERSOULTZBACH", - "nomCommune": "OBERSOULTZBACH" + "codePostal": "44117", + "codeCommune": "44151", + "libelleAcheminement": "ST ANDRE DES EAUX", + "nomCommune": "ST ANDRE DES EAUX" }, { - "codePostal": "35410", - "codeCommune": "35069", - "libelleAcheminement": "CHATEAUGIRON", - "nomCommune": "CHATEAUGIRON" + "codePostal": "43240", + "codeCommune": "43205", + "libelleAcheminement": "ST JUST MALMONT", + "nomCommune": "ST JUST MALMONT" }, { - "codePostal": "60850", - "codeCommune": "60187", - "libelleAcheminement": "CUIGY EN BRAY", - "nomCommune": "CUIGY EN BRAY" + "codePostal": "30260", + "codeCommune": "30309", + "libelleAcheminement": "SARDAN", + "nomCommune": "SARDAN" }, { - "codePostal": "07190", - "codeCommune": "07149", - "libelleAcheminement": "MARCOLS LES EAUX", - "nomCommune": "MARCOLS LES EAUX" + "codePostal": "32300", + "codeCommune": "32015", + "libelleAcheminement": "AUJAN MOURNEDE", + "nomCommune": "AUJAN MOURNEDE" }, { - "codePostal": "67170", - "codeCommune": "67359", - "libelleAcheminement": "OHLUNGEN", - "nomCommune": "OHLUNGEN" + "codePostal": "44650", + "codeCommune": "44156", + "libelleAcheminement": "CORCOUE SUR LOGNE", + "nomCommune": "CORCOUE SUR LOGNE" }, { - "codePostal": "35133", - "codeCommune": "35071", - "libelleAcheminement": "LE CHATELLIER", - "nomCommune": "LE CHATELLIER" + "codePostal": "43620", + "codeCommune": "43213", + "libelleAcheminement": "ST PAL DE MONS", + "nomCommune": "ST PAL DE MONS" }, { - "codePostal": "60490", - "codeCommune": "60191", - "libelleAcheminement": "CUVILLY", - "nomCommune": "CUVILLY" + "codePostal": "30610", + "codeCommune": "30311", + "libelleAcheminement": "SAUVE", + "nomCommune": "SAUVE" }, { - "codePostal": "07300", - "codeCommune": "07152", - "libelleAcheminement": "MAUVES", - "nomCommune": "MAUVES" + "codePostal": "32600", + "codeCommune": "32016", + "libelleAcheminement": "AURADE", + "nomCommune": "AURADE" }, { - "codePostal": "67350", - "codeCommune": "67372", - "libelleAcheminement": "VAL DE MODER", - "nomCommune": "VAL DE MODER" + "codePostal": "44650", + "codeCommune": "44156", + "libelleAcheminement": "CORCOUE SUR LOGNE", + "nomCommune": "CORCOUE SUR LOGNE" }, { - "codePostal": "35330", - "codeCommune": "35084", - "libelleAcheminement": "COMBLESSAC", - "nomCommune": "COMBLESSAC" + "codePostal": "43420", + "codeCommune": "43215", + "libelleAcheminement": "ST PAUL DE TARTAS", + "nomCommune": "ST PAUL DE TARTAS" }, { - "codePostal": "60790", - "codeCommune": "60196", - "libelleAcheminement": "LA DRENNE", - "nomCommune": "LA DRENNE" + "codePostal": "30190", + "codeCommune": "30313", + "libelleAcheminement": "SAUZET", + "nomCommune": "SAUZET" }, { - "codePostal": "07330", - "codeCommune": "07153", - "libelleAcheminement": "MAYRES", - "nomCommune": "MAYRES" + "codePostal": "32170", + "codeCommune": "32020", + "libelleAcheminement": "AUX AUSSAT", + "nomCommune": "AUX AUSSAT" }, { - "codePostal": "67320", - "codeCommune": "67373", - "libelleAcheminement": "PFALZWEYER", - "nomCommune": "PFALZWEYER" + "codePostal": "44530", + "codeCommune": "44161", + "libelleAcheminement": "ST GILDAS DES BOIS", + "nomCommune": "ST GILDAS DES BOIS" }, { - "codePostal": "35270", - "codeCommune": "35085", - "libelleAcheminement": "COMBOURG", - "nomCommune": "COMBOURG" + "codePostal": "43230", + "codeCommune": "43219", + "libelleAcheminement": "ST PREJET ARMANDON", + "nomCommune": "ST PREJET ARMANDON" }, { - "codePostal": "60360", - "codeCommune": "60199", - "libelleAcheminement": "DOMELIERS", - "nomCommune": "DOMELIERS" + "codePostal": "30340", + "codeCommune": "30318", + "libelleAcheminement": "SERVAS", + "nomCommune": "SERVAS" }, { - "codePostal": "07690", - "codeCommune": "07160", - "libelleAcheminement": "MONESTIER", - "nomCommune": "MONESTIER" + "codePostal": "32480", + "codeCommune": "32047", + "libelleAcheminement": "BERRAC", + "nomCommune": "BERRAC" }, { - "codePostal": "67115", - "codeCommune": "67378", - "libelleAcheminement": "PLOBSHEIM", - "nomCommune": "PLOBSHEIM" + "codePostal": "44150", + "codeCommune": "44163", + "libelleAcheminement": "VAIR SUR LOIRE", + "nomCommune": "VAIR SUR LOIRE" }, { - "codePostal": "35210", - "codeCommune": "35086", - "libelleAcheminement": "COMBOURTILLE", - "nomCommune": "COMBOURTILLE" + "codePostal": "43600", + "codeCommune": "43224", + "libelleAcheminement": "STE SIGOLENE", + "nomCommune": "STE SIGOLENE" }, { - "codePostal": "60590", - "codeCommune": "60208", - "libelleAcheminement": "ENENCOURT LEAGE", - "nomCommune": "ENENCOURT LEAGE" + "codePostal": "30460", + "codeCommune": "30322", + "libelleAcheminement": "SOUDORGUES", + "nomCommune": "SOUDORGUES" }, { - "codePostal": "07410", - "codeCommune": "07170", - "libelleAcheminement": "PAILHARES", - "nomCommune": "PAILHARES" + "codePostal": "32110", + "codeCommune": "32049", + "libelleAcheminement": "BETOUS", + "nomCommune": "BETOUS" }, { - "codePostal": "67250", - "codeCommune": "67379", - "libelleAcheminement": "PREUSCHDORF", - "nomCommune": "PREUSCHDORF" + "codePostal": "44640", + "codeCommune": "44166", + "libelleAcheminement": "ST JEAN DE BOISEAU", + "nomCommune": "ST JEAN DE BOISEAU" }, { - "codePostal": "35320", - "codeCommune": "35090", - "libelleAcheminement": "CREVIN", - "nomCommune": "CREVIN" + "codePostal": "43230", + "codeCommune": "43232", + "libelleAcheminement": "SALZUIT", + "nomCommune": "SALZUIT" }, { - "codePostal": "60380", - "codeCommune": "60214", - "libelleAcheminement": "ERNEMONT BOUTAVENT", - "nomCommune": "ERNEMONT BOUTAVENT" + "codePostal": "30250", + "codeCommune": "30324", + "libelleAcheminement": "SOUVIGNARGUES", + "nomCommune": "SOUVIGNARGUES" }, { - "codePostal": "07230", - "codeCommune": "07171", - "libelleAcheminement": "PAYZAC", - "nomCommune": "PAYZAC" + "codePostal": "32130", + "codeCommune": "32051", + "libelleAcheminement": "BEZERIL", + "nomCommune": "BEZERIL" }, { - "codePostal": "67117", - "codeCommune": "67382", - "libelleAcheminement": "QUATZENHEIM", - "nomCommune": "QUATZENHEIM" + "codePostal": "44720", + "codeCommune": "44168", + "libelleAcheminement": "ST JOACHIM", + "nomCommune": "ST JOACHIM" }, { - "codePostal": "35680", - "codeCommune": "35097", - "libelleAcheminement": "DOMALAIN", - "nomCommune": "DOMALAIN" + "codePostal": "43320", + "codeCommune": "43233", + "libelleAcheminement": "SANSSAC L EGLISE", + "nomCommune": "SANSSAC L EGLISE" }, { - "codePostal": "60600", - "codeCommune": "60225", - "libelleAcheminement": "ETOUY", - "nomCommune": "ETOUY" + "codePostal": "30126", + "codeCommune": "30326", + "libelleAcheminement": "TAVEL", + "nomCommune": "TAVEL" }, { - "codePostal": "07340", - "codeCommune": "07172", - "libelleAcheminement": "PEAUGRES", - "nomCommune": "PEAUGRES" + "codePostal": "32140", + "codeCommune": "32053", + "libelleAcheminement": "BEZUES BAJON", + "nomCommune": "BEZUES BAJON" }, { - "codePostal": "67116", - "codeCommune": "67389", - "libelleAcheminement": "REICHSTETT", - "nomCommune": "REICHSTETT" + "codePostal": "44190", + "codeCommune": "44173", + "libelleAcheminement": "ST LUMINE DE CLISSON", + "nomCommune": "ST LUMINE DE CLISSON" }, { - "codePostal": "35450", - "codeCommune": "35101", - "libelleAcheminement": "DOURDAIN", - "nomCommune": "DOURDAIN" + "codePostal": "43190", + "codeCommune": "43244", + "libelleAcheminement": "TENCE", + "nomCommune": "TENCE" }, { - "codePostal": "60800", - "codeCommune": "60231", - "libelleAcheminement": "FEIGNEUX", - "nomCommune": "FEIGNEUX" + "codePostal": "30140", + "codeCommune": "30329", + "libelleAcheminement": "THOIRAS", + "nomCommune": "THOIRAS" }, { - "codePostal": "07380", - "codeCommune": "07178", - "libelleAcheminement": "PONT DE LABEAUME", - "nomCommune": "PONT DE LABEAUME" + "codePostal": "32380", + "codeCommune": "32055", + "libelleAcheminement": "BIVES", + "nomCommune": "BIVES" }, { - "codePostal": "67440", - "codeCommune": "67395", - "libelleAcheminement": "REUTENBOURG", - "nomCommune": "REUTENBOURG" + "codePostal": "44310", + "codeCommune": "44174", + "libelleAcheminement": "ST LUMINE DE COUTAIS", + "nomCommune": "ST LUMINE DE COUTAIS" }, { - "codePostal": "35120", - "codeCommune": "35104", - "libelleAcheminement": "EPINIAC", - "nomCommune": "EPINIAC" + "codePostal": "43430", + "codeCommune": "43253", + "libelleAcheminement": "LES VASTRES", + "nomCommune": "LES VASTRES" }, { - "codePostal": "60600", - "codeCommune": "60234", - "libelleAcheminement": "FITZ JAMES", - "nomCommune": "FITZ JAMES" + "codePostal": "30620", + "codeCommune": "30333", + "libelleAcheminement": "UCHAUD", + "nomCommune": "UCHAUD" }, { - "codePostal": "07250", - "codeCommune": "07181", - "libelleAcheminement": "LE POUZIN", - "nomCommune": "LE POUZIN" + "codePostal": "32370", + "codeCommune": "32062", + "libelleAcheminement": "BOURROUILLAN", + "nomCommune": "BOURROUILLAN" }, { - "codePostal": "67860", - "codeCommune": "67397", - "libelleAcheminement": "RHINAU", - "nomCommune": "RHINAU" + "codePostal": "44410", + "codeCommune": "44175", + "libelleAcheminement": "ST LYPHARD", + "nomCommune": "ST LYPHARD" }, { - "codePostal": "35150", - "codeCommune": "35108", - "libelleAcheminement": "ESSE", - "nomCommune": "ESSE" + "codePostal": "43360", + "codeCommune": "43258", + "libelleAcheminement": "VERGONGHEON", + "nomCommune": "VERGONGHEON" }, { - "codePostal": "60690", - "codeCommune": "60242", - "libelleAcheminement": "FONTAINE LAVAGANNE", - "nomCommune": "FONTAINE LAVAGANNE" + "codePostal": "30580", + "codeCommune": "30338", + "libelleAcheminement": "VALLERARGUES", + "nomCommune": "VALLERARGUES" }, { - "codePostal": "07000", - "codeCommune": "07186", - "libelleAcheminement": "PRIVAS", - "nomCommune": "PRIVAS" + "codePostal": "32350", + "codeCommune": "32065", + "libelleAcheminement": "LE BROUILH MONBERT", + "nomCommune": "LE BROUILH MONBERT" }, { - "codePostal": "67560", - "codeCommune": "67411", - "libelleAcheminement": "ROSHEIM", - "nomCommune": "ROSHEIM" + "codePostal": "44540", + "codeCommune": "44180", + "libelleAcheminement": "VALLONS DE L ERDRE", + "nomCommune": "VALLONS DE L ERDRE" }, { - "codePostal": "35140", - "codeCommune": "35121", - "libelleAcheminement": "GOSNE", - "nomCommune": "GOSNE" + "codePostal": "43320", + "codeCommune": "43260", + "libelleAcheminement": "LE VERNET", + "nomCommune": "LE VERNET" }, { - "codePostal": "60220", - "codeCommune": "60245", - "libelleAcheminement": "FORMERIE", - "nomCommune": "FORMERIE" + "codePostal": "30570", + "codeCommune": "30339", + "libelleAcheminement": "VAL D AIGOUAL", + "nomCommune": "VAL D AIGOUAL" }, { - "codePostal": "07110", - "codeCommune": "07193", - "libelleAcheminement": "ROCHER", - "nomCommune": "ROCHER" + "codePostal": "32380", + "codeCommune": "32068", + "libelleAcheminement": "CADEILHAN", + "nomCommune": "CADEILHAN" }, { - "codePostal": "67290", - "codeCommune": "67413", - "libelleAcheminement": "ROSTEIG", - "nomCommune": "ROSTEIG" + "codePostal": "44460", + "codeCommune": "44185", + "libelleAcheminement": "ST NICOLAS DE REDON", + "nomCommune": "ST NICOLAS DE REDON" }, { - "codePostal": "35350", - "codeCommune": "35122", - "libelleAcheminement": "LA GOUESNIERE", - "nomCommune": "LA GOUESNIERE" + "codePostal": "43490", + "codeCommune": "43263", + "libelleAcheminement": "VIELPRAT", + "nomCommune": "VIELPRAT" }, { - "codePostal": "60220", - "codeCommune": "60248", - "libelleAcheminement": "FOUILLOY", - "nomCommune": "FOUILLOY" + "codePostal": "30120", + "codeCommune": "30350", + "libelleAcheminement": "LE VIGAN", + "nomCommune": "LE VIGAN" }, { - "codePostal": "07560", - "codeCommune": "07200", - "libelleAcheminement": "LE ROUX", - "nomCommune": "LE ROUX" + "codePostal": "32400", + "codeCommune": "32070", + "libelleAcheminement": "CAHUZAC SUR ADOUR", + "nomCommune": "CAHUZAC SUR ADOUR" }, { - "codePostal": "67340", - "codeCommune": "67415", - "libelleAcheminement": "ROTHBACH", - "nomCommune": "ROTHBACH" + "codePostal": "44160", + "codeCommune": "44189", + "libelleAcheminement": "STE REINE DE BRETAGNE", + "nomCommune": "STE REINE DE BRETAGNE" }, { - "codePostal": "35580", - "codeCommune": "35126", - "libelleAcheminement": "GUICHEN", - "nomCommune": "GUICHEN" + "codePostal": "44320", + "codeCommune": "44005", + "libelleAcheminement": "CHAUMES EN RETZ", + "nomCommune": "CHAUMES EN RETZ" }, { - "codePostal": "60250", - "codeCommune": "60249", - "libelleAcheminement": "FOULANGUES", - "nomCommune": "FOULANGUES" + "codePostal": "30230", + "codeCommune": "30356", + "libelleAcheminement": "RODILHAN", + "nomCommune": "RODILHAN" }, { - "codePostal": "07320", - "codeCommune": "07204", - "libelleAcheminement": "ST AGREVE", - "nomCommune": "ST AGREVE" + "codePostal": "32190", + "codeCommune": "32071", + "libelleAcheminement": "CAILLAVET", + "nomCommune": "CAILLAVET" }, { - "codePostal": "67130", - "codeCommune": "67420", - "libelleAcheminement": "RUSS", - "nomCommune": "RUSS" + "codePostal": "44530", + "codeCommune": "44196", + "libelleAcheminement": "SEVERAC", + "nomCommune": "SEVERAC" }, { - "codePostal": "35440", - "codeCommune": "35128", - "libelleAcheminement": "GUIPEL", - "nomCommune": "GUIPEL" + "codePostal": "44160", + "codeCommune": "44013", + "libelleAcheminement": "BESNE", + "nomCommune": "BESNE" }, { - "codePostal": "60480", - "codeCommune": "60253", - "libelleAcheminement": "FRANCASTEL", - "nomCommune": "FRANCASTEL" + "codePostal": "31450", + "codeCommune": "31004", + "libelleAcheminement": "AYGUESVIVES", + "nomCommune": "AYGUESVIVES" }, { - "codePostal": "07120", - "codeCommune": "07207", - "libelleAcheminement": "ST ALBAN AURIOLLES", - "nomCommune": "ST ALBAN AURIOLLES" + "codePostal": "32500", + "codeCommune": "32078", + "libelleAcheminement": "CASTELNAU D ARBIEU", + "nomCommune": "CASTELNAU D ARBIEU" }, { - "codePostal": "67220", - "codeCommune": "67430", - "libelleAcheminement": "ST PIERRE BOIS", - "nomCommune": "ST PIERRE BOIS" + "codePostal": "44660", + "codeCommune": "44200", + "libelleAcheminement": "SOULVACHE", + "nomCommune": "SOULVACHE" }, { - "codePostal": "35890", - "codeCommune": "35139", - "libelleAcheminement": "LAILLE", - "nomCommune": "LAILLE" + "codePostal": "44130", + "codeCommune": "44015", + "libelleAcheminement": "BLAIN", + "nomCommune": "BLAIN" }, { - "codePostal": "60240", - "codeCommune": "60256", - "libelleAcheminement": "MONTCHEVREUIL", - "nomCommune": "MONTCHEVREUIL" + "codePostal": "31230", + "codeCommune": "31007", + "libelleAcheminement": "AMBAX", + "nomCommune": "AMBAX" }, { - "codePostal": "07160", - "codeCommune": "07209", - "libelleAcheminement": "ST ANDEOL DE FOURCHADES", - "nomCommune": "ST ANDEOL DE FOURCHADES" + "codePostal": "32100", + "codeCommune": "32080", + "libelleAcheminement": "CASTELNAU SUR L AUVIGNON", + "nomCommune": "CASTELNAU SUR L AUVIGNON" }, { - "codePostal": "67700", - "codeCommune": "67437", - "libelleAcheminement": "SAVERNE", - "nomCommune": "SAVERNE" + "codePostal": "44420", + "codeCommune": "44211", + "libelleAcheminement": "LA TURBALLE", + "nomCommune": "LA TURBALLE" }, { - "codePostal": "35320", - "codeCommune": "35140", - "libelleAcheminement": "LALLEU", - "nomCommune": "LALLEU" + "codePostal": "44430", + "codeCommune": "44016", + "libelleAcheminement": "LA BOISSIERE DU DORE", + "nomCommune": "LA BOISSIERE DU DORE" }, { - "codePostal": "60240", - "codeCommune": "60257", - "libelleAcheminement": "FRESNE LEGUILLON", - "nomCommune": "FRESNE LEGUILLON" + "codePostal": "31160", + "codeCommune": "31012", + "libelleAcheminement": "ARBON", + "nomCommune": "ARBON" }, { - "codePostal": "07690", - "codeCommune": "07212", - "libelleAcheminement": "ST ANDRE EN VIVARAIS", - "nomCommune": "ST ANDRE EN VIVARAIS" + "codePostal": "32240", + "codeCommune": "32087", + "libelleAcheminement": "CASTEX D ARMAGNAC", + "nomCommune": "CASTEX D ARMAGNAC" }, { - "codePostal": "67150", - "codeCommune": "67438", - "libelleAcheminement": "SCHAEFFERSHEIM", - "nomCommune": "SCHAEFFERSHEIM" + "codePostal": "44370", + "codeCommune": "44213", + "libelleAcheminement": "LOIREAUXENCE", + "nomCommune": "LOIREAUXENCE" }, { - "codePostal": "35450", - "codeCommune": "35154", - "libelleAcheminement": "LIVRE SUR CHANGEON", - "nomCommune": "LIVRE SUR CHANGEON" + "codePostal": "44130", + "codeCommune": "44023", + "libelleAcheminement": "BOUVRON", + "nomCommune": "BOUVRON" }, { - "codePostal": "60640", - "codeCommune": "60263", - "libelleAcheminement": "FRETOY LE CHATEAU", - "nomCommune": "FRETOY LE CHATEAU" + "codePostal": "31210", + "codeCommune": "31013", + "libelleAcheminement": "ARDIEGE", + "nomCommune": "ARDIEGE" }, { - "codePostal": "07800", - "codeCommune": "07221", - "libelleAcheminement": "ST CIERGE LA SERRE", - "nomCommune": "ST CIERGE LA SERRE" + "codePostal": "32130", + "codeCommune": "32098", + "libelleAcheminement": "CAZAUX SAVES", + "nomCommune": "CAZAUX SAVES" }, { - "codePostal": "67270", - "codeCommune": "67444", - "libelleAcheminement": "SCHERLENHEIM", - "nomCommune": "SCHERLENHEIM" + "codePostal": "44170", + "codeCommune": "44214", + "libelleAcheminement": "VAY", + "nomCommune": "VAY" }, { - "codePostal": "35270", - "codeCommune": "35159", - "libelleAcheminement": "LOURMAIS", - "nomCommune": "LOURMAIS" + "codePostal": "44750", + "codeCommune": "44025", + "libelleAcheminement": "CAMPBON", + "nomCommune": "CAMPBON" }, { - "codePostal": "60220", - "codeCommune": "60280", - "libelleAcheminement": "GOURCHELLES", - "nomCommune": "GOURCHELLES" + "codePostal": "31440", + "codeCommune": "31017", + "libelleAcheminement": "ARLOS", + "nomCommune": "ARLOS" }, { - "codePostal": "07510", - "codeCommune": "07224", - "libelleAcheminement": "ST CIRGUES EN MONTAGNE", - "nomCommune": "ST CIRGUES EN MONTAGNE" + "codePostal": "32410", + "codeCommune": "32102", + "libelleAcheminement": "CEZAN", + "nomCommune": "CEZAN" }, { - "codePostal": "67750", - "codeCommune": "67445", - "libelleAcheminement": "SCHERWILLER", - "nomCommune": "SCHERWILLER" + "codePostal": "44116", + "codeCommune": "44216", + "libelleAcheminement": "VIEILLEVIGNE", + "nomCommune": "VIEILLEVIGNE" }, { - "codePostal": "35560", - "codeCommune": "35164", - "libelleAcheminement": "MARCILLE RAOUL", - "nomCommune": "MARCILLE RAOUL" + "codePostal": "44240", + "codeCommune": "44035", + "libelleAcheminement": "LA CHAPELLE SUR ERDRE", + "nomCommune": "LA CHAPELLE SUR ERDRE" }, { - "codePostal": "60120", - "codeCommune": "60283", - "libelleAcheminement": "GOUY LES GROSEILLERS", - "nomCommune": "GOUY LES GROSEILLERS" + "codePostal": "31360", + "codeCommune": "31018", + "libelleAcheminement": "ARNAUD GUILHEM", + "nomCommune": "ARNAUD GUILHEM" }, { - "codePostal": "07310", - "codeCommune": "07226", - "libelleAcheminement": "ST CLEMENT", - "nomCommune": "ST CLEMENT" + "codePostal": "32230", + "codeCommune": "32111", + "libelleAcheminement": "COURTIES", + "nomCommune": "COURTIES" }, { - "codePostal": "67600", - "codeCommune": "67462", - "libelleAcheminement": "SELESTAT", - "nomCommune": "SELESTAT" + "codePostal": "44810", + "codeCommune": "44221", + "libelleAcheminement": "LA CHEVALLERAIS", + "nomCommune": "LA CHEVALLERAIS" }, { - "codePostal": "35330", - "codeCommune": "35168", - "libelleAcheminement": "VAL D ANAST", - "nomCommune": "VAL D ANAST" + "codePostal": "44110", + "codeCommune": "44036", + "libelleAcheminement": "CHATEAUBRIANT", + "nomCommune": "CHATEAUBRIANT" }, { - "codePostal": "60680", - "codeCommune": "60284", - "libelleAcheminement": "GRANDFRESNOY", - "nomCommune": "GRANDFRESNOY" + "codePostal": "31110", + "codeCommune": "31019", + "libelleAcheminement": "ARTIGUE", + "nomCommune": "ARTIGUE" }, { - "codePostal": "07190", - "codeCommune": "07233", - "libelleAcheminement": "ST ETIENNE DE SERRE", - "nomCommune": "ST ETIENNE DE SERRE" + "codePostal": "32110", + "codeCommune": "32113", + "libelleAcheminement": "CRAVENCERES", + "nomCommune": "CRAVENCERES" }, { - "codePostal": "67130", - "codeCommune": "67470", - "libelleAcheminement": "SOLBACH", - "nomCommune": "SOLBACH" + "codePostal": "45480", + "codeCommune": "45005", + "libelleAcheminement": "ANDONVILLE", + "nomCommune": "ANDONVILLE" }, { - "codePostal": "35460", - "codeCommune": "35191", - "libelleAcheminement": "LES PORTES DU COGLAIS", - "nomCommune": "LES PORTES DU COGLAIS" + "codePostal": "44360", + "codeCommune": "44045", + "libelleAcheminement": "CORDEMAIS", + "nomCommune": "CORDEMAIS" }, { - "codePostal": "60380", - "codeCommune": "60288", - "libelleAcheminement": "GREMEVILLERS", - "nomCommune": "GREMEVILLERS" + "codePostal": "31800", + "codeCommune": "31021", + "libelleAcheminement": "ASPRET SARRAT", + "nomCommune": "ASPRET SARRAT" }, { - "codePostal": "07410", - "codeCommune": "07236", - "libelleAcheminement": "ST FELICIEN", - "nomCommune": "ST FELICIEN" + "codePostal": "32800", + "codeCommune": "32119", + "libelleAcheminement": "EAUZE", + "nomCommune": "EAUZE" }, { - "codePostal": "67250", - "codeCommune": "67474", - "libelleAcheminement": "SOULTZ SOUS FORETS", - "nomCommune": "SOULTZ SOUS FORETS" + "codePostal": "45160", + "codeCommune": "45006", + "libelleAcheminement": "ARDON", + "nomCommune": "ARDON" }, { - "codePostal": "35460", - "codeCommune": "35191", - "libelleAcheminement": "LES PORTES DU COGLAIS", - "nomCommune": "LES PORTES DU COGLAIS" + "codePostal": "44590", + "codeCommune": "44051", + "libelleAcheminement": "DERVAL", + "nomCommune": "DERVAL" }, { - "codePostal": "60650", - "codeCommune": "60296", - "libelleAcheminement": "HANNACHES", - "nomCommune": "HANNACHES" + "codePostal": "31420", + "codeCommune": "31028", + "libelleAcheminement": "AURIGNAC", + "nomCommune": "AURIGNAC" }, { - "codePostal": "07160", - "codeCommune": "07239", - "libelleAcheminement": "ST GENEST LACHAMP", - "nomCommune": "ST GENEST LACHAMP" + "codePostal": "32300", + "codeCommune": "32128", + "libelleAcheminement": "ESTIPOUY", + "nomCommune": "ESTIPOUY" }, { - "codePostal": "67200", - "codeCommune": "67482", - "libelleAcheminement": "STRASBOURG", - "nomCommune": "STRASBOURG" + "codePostal": "45340", + "codeCommune": "45018", + "libelleAcheminement": "AUXY", + "nomCommune": "AUXY" }, { - "codePostal": "35250", - "codeCommune": "35197", - "libelleAcheminement": "MOUAZE", - "nomCommune": "MOUAZE" + "codePostal": "44130", + "codeCommune": "44056", + "libelleAcheminement": "FAY DE BRETAGNE", + "nomCommune": "FAY DE BRETAGNE" }, { - "codePostal": "60650", - "codeCommune": "60298", - "libelleAcheminement": "HANVOILE", - "nomCommune": "HANVOILE" + "codePostal": "31840", + "codeCommune": "31032", + "libelleAcheminement": "AUSSONNE", + "nomCommune": "AUSSONNE" }, { - "codePostal": "07190", - "codeCommune": "07239", - "libelleAcheminement": "ST GENEST LACHAMP", - "nomCommune": "ST GENEST LACHAMP" + "codePostal": "32250", + "codeCommune": "32133", + "libelleAcheminement": "FOURCES", + "nomCommune": "FOURCES" }, { - "codePostal": "67370", - "codeCommune": "67485", - "libelleAcheminement": "STUTZHEIM OFFENHEIM", - "nomCommune": "STUTZHEIM OFFENHEIM" + "codePostal": "45130", + "codeCommune": "45020", + "libelleAcheminement": "LE BARDON", + "nomCommune": "LE BARDON" }, { - "codePostal": "35680", - "codeCommune": "35198", - "libelleAcheminement": "MOULINS", - "nomCommune": "MOULINS" + "codePostal": "44810", + "codeCommune": "44073", + "libelleAcheminement": "HERIC", + "nomCommune": "HERIC" }, { - "codePostal": "60510", - "codeCommune": "60302", - "libelleAcheminement": "HAUDIVILLERS", - "nomCommune": "HAUDIVILLERS" + "codePostal": "31360", + "codeCommune": "31034", + "libelleAcheminement": "AUZAS", + "nomCommune": "AUZAS" }, { - "codePostal": "07800", - "codeCommune": "07240", - "libelleAcheminement": "ST GEORGES LES BAINS", - "nomCommune": "ST GEORGES LES BAINS" + "codePostal": "32420", + "codeCommune": "32141", + "libelleAcheminement": "GAUJAN", + "nomCommune": "GAUJAN" }, { - "codePostal": "67350", - "codeCommune": "67498", - "libelleAcheminement": "UHRWILLER", - "nomCommune": "UHRWILLER" + "codePostal": "45340", + "codeCommune": "45021", + "libelleAcheminement": "BARVILLE EN GATINAIS", + "nomCommune": "BARVILLE EN GATINAIS" }, { - "codePostal": "35130", - "codeCommune": "35200", - "libelleAcheminement": "MOUTIERS", - "nomCommune": "MOUTIERS" + "codePostal": "44650", + "codeCommune": "44081", + "libelleAcheminement": "LEGE", + "nomCommune": "LEGE" }, { - "codePostal": "60350", - "codeCommune": "60305", - "libelleAcheminement": "HAUTEFONTAINE", - "nomCommune": "HAUTEFONTAINE" + "codePostal": "31650", + "codeCommune": "31036", + "libelleAcheminement": "AUZIELLE", + "nomCommune": "AUZIELLE" }, { - "codePostal": "07300", - "codeCommune": "07245", - "libelleAcheminement": "ST JEAN DE MUZOLS", - "nomCommune": "ST JEAN DE MUZOLS" + "codePostal": "32390", + "codeCommune": "32142", + "libelleAcheminement": "GAVARRET SUR AULOUSTE", + "nomCommune": "GAVARRET SUR AULOUSTE" }, { - "codePostal": "67290", - "codeCommune": "67509", - "libelleAcheminement": "VOLKSBERG", - "nomCommune": "VOLKSBERG" + "codePostal": "45340", + "codeCommune": "45022", + "libelleAcheminement": "BATILLY EN GATINAIS", + "nomCommune": "BATILLY EN GATINAIS" }, { - "codePostal": "35230", - "codeCommune": "35206", - "libelleAcheminement": "NOYAL CHATILLON SUR SEICHE", - "nomCommune": "NOYAL CHATILLON SUR SEICHE" + "codePostal": "44430", + "codeCommune": "44084", + "libelleAcheminement": "LE LOROUX BOTTEREAU", + "nomCommune": "LE LOROUX BOTTEREAU" }, { - "codePostal": "60120", - "codeCommune": "60311", - "libelleAcheminement": "LA HERELLE", - "nomCommune": "LA HERELLE" + "codePostal": "31310", + "codeCommune": "31047", + "libelleAcheminement": "BAX", + "nomCommune": "BAX" }, { - "codePostal": "07290", - "codeCommune": "07250", - "libelleAcheminement": "ST JEURE D AY", - "nomCommune": "ST JEURE D AY" + "codePostal": "32480", + "codeCommune": "32143", + "libelleAcheminement": "GAZAUPOUY", + "nomCommune": "GAZAUPOUY" }, { - "codePostal": "67700", - "codeCommune": "67515", - "libelleAcheminement": "WALDOLWISHEIM", - "nomCommune": "WALDOLWISHEIM" + "codePostal": "45480", + "codeCommune": "45025", + "libelleAcheminement": "BAZOCHES LES GALLERANDES", + "nomCommune": "BAZOCHES LES GALLERANDES" }, { - "codePostal": "35540", - "codeCommune": "35224", - "libelleAcheminement": "PLERGUER", - "nomCommune": "PLERGUER" + "codePostal": "44270", + "codeCommune": "44090", + "libelleAcheminement": "LA MARNE", + "nomCommune": "LA MARNE" }, { - "codePostal": "60650", - "codeCommune": "60315", - "libelleAcheminement": "HODENC EN BRAY", - "nomCommune": "HODENC EN BRAY" + "codePostal": "31360", + "codeCommune": "31050", + "libelleAcheminement": "BEAUCHALOT", + "nomCommune": "BEAUCHALOT" }, { - "codePostal": "07210", - "codeCommune": "07260", - "libelleAcheminement": "ST LAGER BRESSAC", - "nomCommune": "ST LAGER BRESSAC" + "codePostal": "32230", + "codeCommune": "32144", + "libelleAcheminement": "GAZAX ET BACCARISSE", + "nomCommune": "GAZAX ET BACCARISSE" }, { - "codePostal": "67610", - "codeCommune": "67519", - "libelleAcheminement": "LA WANTZENAU", - "nomCommune": "LA WANTZENAU" + "codePostal": "45190", + "codeCommune": "45028", + "libelleAcheminement": "BEAUGENCY", + "nomCommune": "BEAUGENCY" }, { - "codePostal": "35720", - "codeCommune": "35225", - "libelleAcheminement": "PLESDER", - "nomCommune": "PLESDER" + "codePostal": "44550", + "codeCommune": "44103", + "libelleAcheminement": "MONTOIR DE BRETAGNE", + "nomCommune": "MONTOIR DE BRETAGNE" }, { - "codePostal": "60141", - "codeCommune": "60320", - "libelleAcheminement": "IVORS", - "nomCommune": "IVORS" + "codePostal": "31850", + "codeCommune": "31053", + "libelleAcheminement": "BEAUPUY", + "nomCommune": "BEAUPUY" }, { - "codePostal": "07200", - "codeCommune": "07272", - "libelleAcheminement": "ST MAURICE D ARDECHE", - "nomCommune": "ST MAURICE D ARDECHE" + "codePostal": "32720", + "codeCommune": "32145", + "libelleAcheminement": "GEE RIVIERE", + "nomCommune": "GEE RIVIERE" }, { - "codePostal": "67310", - "codeCommune": "67520", - "libelleAcheminement": "WASSELONNE", - "nomCommune": "WASSELONNE" + "codePostal": "45340", + "codeCommune": "45030", + "libelleAcheminement": "BEAUNE LA ROLANDE", + "nomCommune": "BEAUNE LA ROLANDE" }, { - "codePostal": "35720", - "codeCommune": "35226", - "libelleAcheminement": "PLEUGUENEUC", - "nomCommune": "PLEUGUENEUC" + "codePostal": "44760", + "codeCommune": "44106", + "libelleAcheminement": "LES MOUTIERS EN RETZ", + "nomCommune": "LES MOUTIERS EN RETZ" }, { - "codePostal": "60173", - "codeCommune": "60321", - "libelleAcheminement": "IVRY LE TEMPLE", - "nomCommune": "IVRY LE TEMPLE" + "codePostal": "31460", + "codeCommune": "31055", + "libelleAcheminement": "BEAUVILLE", + "nomCommune": "BEAUVILLE" }, { - "codePostal": "07450", - "codeCommune": "07282", - "libelleAcheminement": "ST PIERRE DE COLOMBIER", - "nomCommune": "ST PIERRE DE COLOMBIER" + "codePostal": "32500", + "codeCommune": "32150", + "libelleAcheminement": "GOUTZ", + "nomCommune": "GOUTZ" }, { - "codePostal": "67720", - "codeCommune": "67529", - "libelleAcheminement": "WEYERSHEIM", - "nomCommune": "WEYERSHEIM" + "codePostal": "45210", + "codeCommune": "45032", + "libelleAcheminement": "LE BIGNON MIRABEAU", + "nomCommune": "LE BIGNON MIRABEAU" }, { - "codePostal": "35137", - "codeCommune": "35227", - "libelleAcheminement": "PLEUMELEUC", - "nomCommune": "PLEUMELEUC" + "codePostal": "44330", + "codeCommune": "44108", + "libelleAcheminement": "MOUZILLON", + "nomCommune": "MOUZILLON" }, { - "codePostal": "60850", - "codeCommune": "60344", - "libelleAcheminement": "LALANDELLE", - "nomCommune": "LALANDELLE" + "codePostal": "31450", + "codeCommune": "31058", + "libelleAcheminement": "BELBEZE DE LAURAGAIS", + "nomCommune": "BELBEZE DE LAURAGAIS" }, { - "codePostal": "07140", - "codeCommune": "07284", - "libelleAcheminement": "ST PIERRE ST JEAN", - "nomCommune": "ST PIERRE ST JEAN" + "codePostal": "32550", + "codeCommune": "32153", + "libelleAcheminement": "HAULIES", + "nomCommune": "HAULIES" }, { - "codePostal": "67270", - "codeCommune": "67530", - "libelleAcheminement": "WICKERSHEIM WILSHAUSEN", - "nomCommune": "WICKERSHEIM WILSHAUSEN" + "codePostal": "45340", + "codeCommune": "45035", + "libelleAcheminement": "BOISCOMMUN", + "nomCommune": "BOISCOMMUN" }, { - "codePostal": "35730", - "codeCommune": "35228", - "libelleAcheminement": "PLEURTUIT", - "nomCommune": "PLEURTUIT" + "codePostal": "44000", + "codeCommune": "44109", + "libelleAcheminement": "NANTES", + "nomCommune": "NANTES" }, { - "codePostal": "60600", - "codeCommune": "60345", - "libelleAcheminement": "LAMECOURT", - "nomCommune": "LAMECOURT" + "codePostal": "31370", + "codeCommune": "31065", + "libelleAcheminement": "BERAT", + "nomCommune": "BERAT" }, { - "codePostal": "07700", - "codeCommune": "07291", - "libelleAcheminement": "ST REMEZE", - "nomCommune": "ST REMEZE" + "codePostal": "32460", + "codeCommune": "32155", + "libelleAcheminement": "LE HOUGA", + "nomCommune": "LE HOUGA" }, { - "codePostal": "67110", - "codeCommune": "67536", - "libelleAcheminement": "WINDSTEIN", - "nomCommune": "WINDSTEIN" + "codePostal": "45460", + "codeCommune": "45042", + "libelleAcheminement": "LES BORDES", + "nomCommune": "LES BORDES" }, { - "codePostal": "35240", - "codeCommune": "35239", - "libelleAcheminement": "RETIERS", - "nomCommune": "RETIERS" + "codePostal": "44390", + "codeCommune": "44110", + "libelleAcheminement": "NORT SUR ERDRE", + "nomCommune": "NORT SUR ERDRE" }, { - "codePostal": "60420", - "codeCommune": "60357", - "libelleAcheminement": "LEGLANTIERS", - "nomCommune": "LEGLANTIERS" + "codePostal": "31110", + "codeCommune": "31068", + "libelleAcheminement": "BILLIERE", + "nomCommune": "BILLIERE" }, { - "codePostal": "07290", - "codeCommune": "07292", - "libelleAcheminement": "ST ROMAIN D AY", - "nomCommune": "ST ROMAIN D AY" + "codePostal": "32300", + "codeCommune": "32156", + "libelleAcheminement": "IDRAC RESPAILLES", + "nomCommune": "IDRAC RESPAILLES" }, { - "codePostal": "67170", - "codeCommune": "67539", - "libelleAcheminement": "WINGERSHEIM LES QUATRE BANS", - "nomCommune": "WINGERSHEIM LES QUATRE BANS" + "codePostal": "45460", + "codeCommune": "45051", + "libelleAcheminement": "BRAY ST AIGNAN", + "nomCommune": "BRAY ST AIGNAN" }, { - "codePostal": "35650", - "codeCommune": "35240", - "libelleAcheminement": "LE RHEU", - "nomCommune": "LE RHEU" + "codePostal": "44170", + "codeCommune": "44113", + "libelleAcheminement": "NOZAY", + "nomCommune": "NOZAY" }, { - "codePostal": "60650", - "codeCommune": "60359", - "libelleAcheminement": "LHERAULE", - "nomCommune": "LHERAULE" + "codePostal": "31470", + "codeCommune": "31075", + "libelleAcheminement": "BONREPOS SUR AUSSONNELLE", + "nomCommune": "BONREPOS SUR AUSSONNELLE" }, { - "codePostal": "07210", - "codeCommune": "07298", - "libelleAcheminement": "ST SYMPHORIEN SOUS CHOMERAC", - "nomCommune": "ST SYMPHORIEN SOUS CHOMERAC" + "codePostal": "32190", + "codeCommune": "32166", + "libelleAcheminement": "JUSTIAN", + "nomCommune": "JUSTIAN" }, { - "codePostal": "67130", - "codeCommune": "67543", - "libelleAcheminement": "WISCHES", - "nomCommune": "WISCHES" + "codePostal": "45410", + "codeCommune": "45058", + "libelleAcheminement": "BUCY LE ROI", + "nomCommune": "BUCY LE ROI" }, { - "codePostal": "35390", - "codeCommune": "35249", - "libelleAcheminement": "STE ANNE SUR VILAINE", - "nomCommune": "STE ANNE SUR VILAINE" + "codePostal": "44390", + "codeCommune": "44122", + "libelleAcheminement": "PETIT MARS", + "nomCommune": "PETIT MARS" }, { - "codePostal": "60480", - "codeCommune": "60377", - "libelleAcheminement": "MAISONCELLE TUILERIE", - "nomCommune": "MAISONCELLE TUILERIE" + "codePostal": "31340", + "codeCommune": "31077", + "libelleAcheminement": "LE BORN", + "nomCommune": "LE BORN" }, { - "codePostal": "07210", - "codeCommune": "07302", - "libelleAcheminement": "ST VINCENT DE BARRES", - "nomCommune": "ST VINCENT DE BARRES" + "codePostal": "32260", + "codeCommune": "32169", + "libelleAcheminement": "LABARTHE", + "nomCommune": "LABARTHE" }, { - "codePostal": "67670", - "codeCommune": "67546", - "libelleAcheminement": "WITTERSHEIM", - "nomCommune": "WITTERSHEIM" + "codePostal": "45120", + "codeCommune": "45061", + "libelleAcheminement": "CEPOY", + "nomCommune": "CEPOY" }, { - "codePostal": "35133", - "codeCommune": "35273", - "libelleAcheminement": "ST GERMAIN EN COGLES", - "nomCommune": "ST GERMAIN EN COGLES" + "codePostal": "44290", + "codeCommune": "44123", + "libelleAcheminement": "PIERRIC", + "nomCommune": "PIERRIC" }, { - "codePostal": "60490", - "codeCommune": "60386", - "libelleAcheminement": "MARQUEGLISE", - "nomCommune": "MARQUEGLISE" + "codePostal": "31580", + "codeCommune": "31078", + "libelleAcheminement": "BOUDRAC", + "nomCommune": "BOUDRAC" }, { - "codePostal": "07150", - "codeCommune": "07304", - "libelleAcheminement": "SALAVAS", - "nomCommune": "SALAVAS" + "codePostal": "32400", + "codeCommune": "32170", + "libelleAcheminement": "LABARTHETE", + "nomCommune": "LABARTHETE" }, { - "codePostal": "67700", - "codeCommune": "67553", - "libelleAcheminement": "WOLSCHHEIM", - "nomCommune": "WOLSCHHEIM" + "codePostal": "45340", + "codeCommune": "45069", + "libelleAcheminement": "CHAMBON LA FORET", + "nomCommune": "CHAMBON LA FORET" }, { - "codePostal": "35590", - "codeCommune": "35275", - "libelleAcheminement": "ST GILLES", - "nomCommune": "ST GILLES" + "codePostal": "44420", + "codeCommune": "44125", + "libelleAcheminement": "PIRIAC SUR MER", + "nomCommune": "PIRIAC SUR MER" }, { - "codePostal": "60110", - "codeCommune": "60395", - "libelleAcheminement": "MERU", - "nomCommune": "MERU" + "codePostal": "31620", + "codeCommune": "31079", + "libelleAcheminement": "BOULOC", + "nomCommune": "BOULOC" }, { - "codePostal": "07140", - "codeCommune": "07305", - "libelleAcheminement": "LES SALELLES", - "nomCommune": "LES SALELLES" + "codePostal": "32700", + "codeCommune": "32176", + "libelleAcheminement": "LAGARDE FIMARCON", + "nomCommune": "LAGARDE" }, { - "codePostal": "67310", - "codeCommune": "67556", - "libelleAcheminement": "ZEINHEIM", - "nomCommune": "ZEINHEIM" + "codePostal": "45270", + "codeCommune": "45078", + "libelleAcheminement": "CHAPELON", + "nomCommune": "CHAPELON" }, { - "codePostal": "35750", - "codeCommune": "35277", - "libelleAcheminement": "ST GONLAY", - "nomCommune": "ST GONLAY" + "codePostal": "44140", + "codeCommune": "44127", + "libelleAcheminement": "LA PLANCHE", + "nomCommune": "LA PLANCHE" }, { - "codePostal": "60130", - "codeCommune": "60400", - "libelleAcheminement": "LE MESNIL SUR BULLES", - "nomCommune": "LE MESNIL SUR BULLES" + "codePostal": "31420", + "codeCommune": "31083", + "libelleAcheminement": "BOUSSAN", + "nomCommune": "BOUSSAN" }, { - "codePostal": "07120", - "codeCommune": "07306", - "libelleAcheminement": "SAMPZON", - "nomCommune": "SAMPZON" + "codePostal": "32330", + "codeCommune": "32180", + "libelleAcheminement": "LAGRAULET DU GERS", + "nomCommune": "LAGRAULET DU GERS" }, { - "codePostal": "68320", - "codeCommune": "68009", - "libelleAcheminement": "ARTZENHEIM", - "nomCommune": "ARTZENHEIM" + "codePostal": "45480", + "codeCommune": "45080", + "libelleAcheminement": "CHARMONT EN BEAUCE", + "nomCommune": "CHARMONT EN BEAUCE" }, { - "codePostal": "35430", - "codeCommune": "35279", - "libelleAcheminement": "ST GUINOUX", - "nomCommune": "ST GUINOUX" + "codePostal": "44860", + "codeCommune": "44130", + "libelleAcheminement": "PONT ST MARTIN", + "nomCommune": "PONT ST MARTIN" }, { - "codePostal": "60140", - "codeCommune": "60404", - "libelleAcheminement": "MOGNEVILLE", - "nomCommune": "MOGNEVILLE" + "codePostal": "31360", + "codeCommune": "31084", + "libelleAcheminement": "BOUSSENS", + "nomCommune": "BOUSSENS" }, { - "codePostal": "07380", - "codeCommune": "07315", - "libelleAcheminement": "LA SOUCHE", - "nomCommune": "LA SOUCHE" + "codePostal": "32140", + "codeCommune": "32185", + "libelleAcheminement": "LALANNE ARQUE", + "nomCommune": "LALANNE ARQUE" }, { - "codePostal": "68490", - "codeCommune": "68020", - "libelleAcheminement": "BANTZENHEIM", - "nomCommune": "BANTZENHEIM" + "codePostal": "45360", + "codeCommune": "45087", + "libelleAcheminement": "CHATILLON SUR LOIRE", + "nomCommune": "CHATILLON SUR LOIRE" }, { - "codePostal": "35140", - "codeCommune": "35280", - "libelleAcheminement": "ST HILAIRE DES LANDES", - "nomCommune": "ST HILAIRE DES LANDES" + "codePostal": "44210", + "codeCommune": "44131", + "libelleAcheminement": "PORNIC", + "nomCommune": "PORNIC" }, { - "codePostal": "60290", - "codeCommune": "60409", - "libelleAcheminement": "MONCHY ST ELOI", - "nomCommune": "MONCHY ST ELOI" + "codePostal": "31160", + "codeCommune": "31085", + "libelleAcheminement": "BOUTX", + "nomCommune": "BOUTX" }, { - "codePostal": "07340", - "codeCommune": "07321", - "libelleAcheminement": "THORRENC", - "nomCommune": "THORRENC" + "codePostal": "32190", + "codeCommune": "32190", + "libelleAcheminement": "LANNEPAX", + "nomCommune": "LANNEPAX" }, { - "codePostal": "68870", - "codeCommune": "68021", - "libelleAcheminement": "BARTENHEIM", - "nomCommune": "BARTENHEIM" + "codePostal": "45700", + "codeCommune": "45102", + "libelleAcheminement": "CONFLANS SUR LOING", + "nomCommune": "CONFLANS SUR LOING" }, { - "codePostal": "35550", - "codeCommune": "35285", - "libelleAcheminement": "ST JUST", - "nomCommune": "ST JUST" + "codePostal": "44510", + "codeCommune": "44135", + "libelleAcheminement": "LE POULIGUEN", + "nomCommune": "LE POULIGUEN" }, { - "codePostal": "60160", - "codeCommune": "60414", - "libelleAcheminement": "MONTATAIRE", - "nomCommune": "MONTATAIRE" + "codePostal": "31160", + "codeCommune": "31085", + "libelleAcheminement": "BOUTX", + "nomCommune": "BOUTX" }, { - "codePostal": "07330", - "codeCommune": "07322", - "libelleAcheminement": "THUEYTS", - "nomCommune": "THUEYTS" + "codePostal": "32110", + "codeCommune": "32191", + "libelleAcheminement": "LANNE SOUBIRAN", + "nomCommune": "LANNE SOUBIRAN" }, { - "codePostal": "68980", - "codeCommune": "68023", - "libelleAcheminement": "BEBLENHEIM", - "nomCommune": "BEBLENHEIM" + "codePostal": "45130", + "codeCommune": "45109", + "libelleAcheminement": "COULMIERS", + "nomCommune": "COULMIERS" }, { - "codePostal": "35400", - "codeCommune": "35288", - "libelleAcheminement": "ST MALO", - "nomCommune": "ST MALO" + "codePostal": "44770", + "codeCommune": "44136", + "libelleAcheminement": "PREFAILLES", + "nomCommune": "PREFAILLES" }, { - "codePostal": "60190", - "codeCommune": "60418", - "libelleAcheminement": "MONTIERS", - "nomCommune": "MONTIERS" + "codePostal": "31160", + "codeCommune": "31095", + "libelleAcheminement": "CABANAC CAZAUX", + "nomCommune": "CABANAC CAZAUX" }, { - "codePostal": "07300", - "codeCommune": "07324", - "libelleAcheminement": "TOURNON SUR RHONE", - "nomCommune": "TOURNON SUR RHONE" + "codePostal": "32480", + "codeCommune": "32195", + "libelleAcheminement": "LARROQUE ENGALIN", + "nomCommune": "LARROQUE ENGALIN" }, { - "codePostal": "68210", - "codeCommune": "68024", - "libelleAcheminement": "BELLEMAGNY", - "nomCommune": "BELLEMAGNY" + "codePostal": "45490", + "codeCommune": "45114", + "libelleAcheminement": "COURTEMPIERRE", + "nomCommune": "COURTEMPIERRE" }, { - "codePostal": "35750", - "codeCommune": "35290", - "libelleAcheminement": "ST MALON SUR MEL", - "nomCommune": "ST MALON SUR MEL" + "codePostal": "44140", + "codeCommune": "44142", + "libelleAcheminement": "REMOUILLE", + "nomCommune": "REMOUILLE" }, { - "codePostal": "60300", - "codeCommune": "60422", - "libelleAcheminement": "MONTLOGNON", - "nomCommune": "MONTLOGNON" + "codePostal": "31480", + "codeCommune": "31096", + "libelleAcheminement": "CABANAC SEGUENVILLE", + "nomCommune": "CABANAC SEGUENVILLE" }, { - "codePostal": "07600", - "codeCommune": "07331", - "libelleAcheminement": "VALS LES BAINS", - "nomCommune": "VALS LES BAINS" + "codePostal": "32110", + "codeCommune": "32202", + "libelleAcheminement": "LAUJUZAN", + "nomCommune": "LAUJUZAN" }, { - "codePostal": "68500", - "codeCommune": "68032", - "libelleAcheminement": "BERRWILLER", - "nomCommune": "BERRWILLER" + "codePostal": "45420", + "codeCommune": "45120", + "libelleAcheminement": "DAMMARIE EN PUISAYE", + "nomCommune": "DAMMARIE EN PUISAYE" }, { - "codePostal": "35560", - "codeCommune": "35309", - "libelleAcheminement": "ST REMY DU PLAIN", - "nomCommune": "ST REMY DU PLAIN" + "codePostal": "44440", + "codeCommune": "44144", + "libelleAcheminement": "RIAILLE", + "nomCommune": "RIAILLE" }, { - "codePostal": "60134", - "codeCommune": "60426", - "libelleAcheminement": "MONTREUIL SUR THERAIN", - "nomCommune": "MONTREUIL SUR THERAIN" + "codePostal": "31560", + "codeCommune": "31100", + "libelleAcheminement": "CALMONT", + "nomCommune": "CALMONT" }, { - "codePostal": "07690", - "codeCommune": "07333", - "libelleAcheminement": "VANOSC", - "nomCommune": "VANOSC" + "codePostal": "32230", + "codeCommune": "32205", + "libelleAcheminement": "LAVERAET", + "nomCommune": "LAVERAET" }, { - "codePostal": "68480", - "codeCommune": "68034", - "libelleAcheminement": "BETTLACH", - "nomCommune": "BETTLACH" + "codePostal": "45230", + "codeCommune": "45121", + "libelleAcheminement": "DAMMARIE SUR LOING", + "nomCommune": "DAMMARIE SUR LOING" }, { - "codePostal": "35330", - "codeCommune": "35311", - "libelleAcheminement": "ST SEGLIN", - "nomCommune": "ST SEGLIN" + "codePostal": "44110", + "codeCommune": "44153", + "libelleAcheminement": "ST AUBIN DES CHATEAUX", + "nomCommune": "ST AUBIN DES CHATEAUX" }, { - "codePostal": "60570", - "codeCommune": "60433", - "libelleAcheminement": "MORTEFONTAINE EN THELLE", - "nomCommune": "MORTEFONTAINE EN THELLE" + "codePostal": "31410", + "codeCommune": "31104", + "libelleAcheminement": "CAPENS", + "nomCommune": "CAPENS" }, { - "codePostal": "07000", - "codeCommune": "07340", - "libelleAcheminement": "VEYRAS", - "nomCommune": "VEYRAS" + "codePostal": "32600", + "codeCommune": "32210", + "libelleAcheminement": "LIAS", + "nomCommune": "LIAS" }, { - "codePostal": "68600", - "codeCommune": "68036", - "libelleAcheminement": "BIESHEIM", - "nomCommune": "BIESHEIM" + "codePostal": "45390", + "codeCommune": "45124", + "libelleAcheminement": "DESMONTS", + "nomCommune": "DESMONTS" }, { - "codePostal": "35250", - "codeCommune": "35315", - "libelleAcheminement": "ST SULPICE LA FORET", - "nomCommune": "ST SULPICE LA FORET" + "codePostal": "44310", + "codeCommune": "44155", + "libelleAcheminement": "ST COLOMBAN", + "nomCommune": "ST COLOMBAN" }, { - "codePostal": "60490", - "codeCommune": "60434", - "libelleAcheminement": "MORTEMER", - "nomCommune": "MORTEMER" + "codePostal": "31390", + "codeCommune": "31107", + "libelleAcheminement": "CARBONNE", + "nomCommune": "CARBONNE" }, { - "codePostal": "08310", - "codeCommune": "08005", - "libelleAcheminement": "ALINCOURT", - "nomCommune": "ALINCOURT" + "codePostal": "32480", + "codeCommune": "32212", + "libelleAcheminement": "LIGARDES", + "nomCommune": "LIGARDES" }, { - "codePostal": "68580", - "codeCommune": "68039", - "libelleAcheminement": "BISEL", - "nomCommune": "BISEL" + "codePostal": "45370", + "codeCommune": "45130", + "libelleAcheminement": "DRY", + "nomCommune": "DRY" }, { - "codePostal": "35360", - "codeCommune": "35320", - "libelleAcheminement": "ST UNIAC", - "nomCommune": "ST UNIAC" + "codePostal": "44360", + "codeCommune": "44158", + "libelleAcheminement": "ST ETIENNE DE MONTLUC", + "nomCommune": "ST ETIENNE DE MONTLUC" }, { - "codePostal": "60380", - "codeCommune": "60435", - "libelleAcheminement": "MORVILLERS", - "nomCommune": "MORVILLERS" + "codePostal": "31260", + "codeCommune": "31110", + "libelleAcheminement": "CASSAGNE", + "nomCommune": "CASSAGNE" }, { - "codePostal": "08300", - "codeCommune": "08021", - "libelleAcheminement": "ARNICOURT", - "nomCommune": "ARNICOURT" + "codePostal": "32300", + "codeCommune": "32215", + "libelleAcheminement": "LOUBERSAN", + "nomCommune": "LOUBERSAN" }, { - "codePostal": "68290", - "codeCommune": "68045", - "libelleAcheminement": "BOURBACH LE BAS", - "nomCommune": "BOURBACH LE BAS" + "codePostal": "45340", + "codeCommune": "45132", + "libelleAcheminement": "EGRY", + "nomCommune": "EGRY" }, { - "codePostal": "35610", - "codeCommune": "35339", - "libelleAcheminement": "TRANS LA FORET", - "nomCommune": "TRANS LA FORET" + "codePostal": "44540", + "codeCommune": "44180", + "libelleAcheminement": "VALLONS DE L ERDRE", + "nomCommune": "VALLONS DE L ERDRE" }, { - "codePostal": "60250", - "codeCommune": "60437", - "libelleAcheminement": "MOUCHY LE CHATEL", - "nomCommune": "MOUCHY LE CHATEL" + "codePostal": "31780", + "codeCommune": "31116", + "libelleAcheminement": "CASTELGINEST", + "nomCommune": "CASTELGINEST" }, { - "codePostal": "08150", - "codeCommune": "08026", - "libelleAcheminement": "AUBIGNY LES POTHEES", - "nomCommune": "AUBIGNY LES POTHEES" + "codePostal": "32290", + "codeCommune": "32218", + "libelleAcheminement": "LOUSSOUS DEBAT", + "nomCommune": "LOUSSOUS DEBAT" }, { - "codePostal": "68870", - "codeCommune": "68054", - "libelleAcheminement": "BRINCKHEIM", - "nomCommune": "BRINCKHEIM" + "codePostal": "45300", + "codeCommune": "45133", + "libelleAcheminement": "ENGENVILLE", + "nomCommune": "ENGENVILLE" }, { - "codePostal": "36140", - "codeCommune": "36001", - "libelleAcheminement": "AIGURANDE", - "nomCommune": "AIGURANDE" + "codePostal": "44320", + "codeCommune": "44187", + "libelleAcheminement": "ST PERE EN RETZ", + "nomCommune": "ST PERE EN RETZ" }, { - "codePostal": "60190", - "codeCommune": "60440", - "libelleAcheminement": "MOYENNEVILLE", - "nomCommune": "MOYENNEVILLE" + "codePostal": "31620", + "codeCommune": "31118", + "libelleAcheminement": "CASTELNAU D ESTRETEFONDS", + "nomCommune": "CASTELNAU D ESTRETEFONDS" }, { - "codePostal": "08240", - "codeCommune": "08035", - "libelleAcheminement": "AUTRUCHE", - "nomCommune": "AUTRUCHE" + "codePostal": "32370", + "codeCommune": "32227", + "libelleAcheminement": "MANCIET", + "nomCommune": "MANCIET" }, { - "codePostal": "68600", - "codeCommune": "68069", - "libelleAcheminement": "DESSENHEIM", - "nomCommune": "DESSENHEIM" + "codePostal": "45300", + "codeCommune": "45139", + "libelleAcheminement": "ESTOUY", + "nomCommune": "ESTOUY" }, { - "codePostal": "36200", - "codeCommune": "36006", - "libelleAcheminement": "ARGENTON SUR CREUSE", - "nomCommune": "ARGENTON SUR CREUSE" + "codePostal": "44110", + "codeCommune": "44199", + "libelleAcheminement": "SOUDAN", + "nomCommune": "SOUDAN" }, { - "codePostal": "60480", - "codeCommune": "60442", - "libelleAcheminement": "MUIDORGE", - "nomCommune": "MUIDORGE" + "codePostal": "31530", + "codeCommune": "31120", + "libelleAcheminement": "LE CASTERA", + "nomCommune": "LE CASTERA" }, { - "codePostal": "08260", - "codeCommune": "08037", - "libelleAcheminement": "AUVILLERS LES FORGES", - "nomCommune": "AUVILLERS LES FORGES" + "codePostal": "32230", + "codeCommune": "32233", + "libelleAcheminement": "MARCIAC", + "nomCommune": "MARCIAC" }, { - "codePostal": "68440", - "codeCommune": "68072", - "libelleAcheminement": "DIETWILLER", - "nomCommune": "DIETWILLER" + "codePostal": "45230", + "codeCommune": "45143", + "libelleAcheminement": "FEINS EN GATINAIS", + "nomCommune": "FEINS EN GATINAIS" }, { - "codePostal": "36290", - "codeCommune": "36010", - "libelleAcheminement": "AZAY LE FERRON", - "nomCommune": "AZAY LE FERRON" + "codePostal": "44240", + "codeCommune": "44201", + "libelleAcheminement": "SUCE SUR ERDRE", + "nomCommune": "SUCE SUR ERDRE" }, { - "codePostal": "60220", - "codeCommune": "60444", - "libelleAcheminement": "MUREAUMONT", - "nomCommune": "MUREAUMONT" + "codePostal": "31430", + "codeCommune": "31122", + "libelleAcheminement": "CASTIES LABRANDE", + "nomCommune": "CASTIES LABRANDE" }, { - "codePostal": "08190", - "codeCommune": "08039", - "libelleAcheminement": "AVAUX", - "nomCommune": "AVAUX" + "codePostal": "32230", + "codeCommune": "32240", + "libelleAcheminement": "MASCARAS", + "nomCommune": "MASCARAS" }, { - "codePostal": "68480", - "codeCommune": "68074", - "libelleAcheminement": "DURLINSDORF", - "nomCommune": "DURLINSDORF" + "codePostal": "45210", + "codeCommune": "45148", + "libelleAcheminement": "FONTENAY SUR LOING", + "nomCommune": "FONTENAY SUR LOING" }, { - "codePostal": "36310", - "codeCommune": "36020", - "libelleAcheminement": "BONNEUIL", - "nomCommune": "BONNEUIL" + "codePostal": "44360", + "codeCommune": "44203", + "libelleAcheminement": "LE TEMPLE DE BRETAGNE", + "nomCommune": "LE TEMPLE DE BRETAGNE" }, { - "codePostal": "60190", - "codeCommune": "60449", - "libelleAcheminement": "NEUFVY SUR ARONDE", - "nomCommune": "NEUFVY SUR ARONDE" + "codePostal": "31190", + "codeCommune": "31128", + "libelleAcheminement": "CAUJAC", + "nomCommune": "CAUJAC" }, { - "codePostal": "08200", - "codeCommune": "08043", - "libelleAcheminement": "BALAN", - "nomCommune": "BALAN" + "codePostal": "32140", + "codeCommune": "32242", + "libelleAcheminement": "MASSEUBE", + "nomCommune": "MASSEUBE" }, { - "codePostal": "68720", - "codeCommune": "68077", - "libelleAcheminement": "EGLINGEN", - "nomCommune": "EGLINGEN" + "codePostal": "45320", + "codeCommune": "45149", + "libelleAcheminement": "FOUCHEROLLES", + "nomCommune": "FOUCHEROLLES" }, { - "codePostal": "36200", - "codeCommune": "36022", - "libelleAcheminement": "BOUESSE", - "nomCommune": "BOUESSE" + "codePostal": "44570", + "codeCommune": "44210", + "libelleAcheminement": "TRIGNAC", + "nomCommune": "TRIGNAC" }, { - "codePostal": "60400", - "codeCommune": "60471", - "libelleAcheminement": "NOYON", - "nomCommune": "NOYON" + "codePostal": "31110", + "codeCommune": "31129", + "libelleAcheminement": "CAZARILH LASPENES", + "nomCommune": "CAZARILH LASPENES" }, { - "codePostal": "08220", - "codeCommune": "08046", - "libelleAcheminement": "BANOGNE RECOUVRANCE", - "nomCommune": "BANOGNE RECOUVRANCE" + "codePostal": "32150", + "codeCommune": "32264", + "libelleAcheminement": "MONCLAR D ARMAGNAC", + "nomCommune": "MONCLAR" }, { - "codePostal": "68130", - "codeCommune": "68080", - "libelleAcheminement": "EMLINGEN", - "nomCommune": "EMLINGEN" + "codePostal": "45310", + "codeCommune": "45152", + "libelleAcheminement": "GEMIGNY", + "nomCommune": "GEMIGNY" }, { - "codePostal": "36110", - "codeCommune": "36024", - "libelleAcheminement": "BRETAGNE", - "nomCommune": "BRETAGNE" + "codePostal": "44370", + "codeCommune": "44213", + "libelleAcheminement": "LOIREAUXENCE", + "nomCommune": "LOIREAUXENCE" }, { - "codePostal": "60560", - "codeCommune": "60482", - "libelleAcheminement": "ORRY LA VILLE", - "nomCommune": "ORRY LA VILLE" + "codePostal": "31420", + "codeCommune": "31134", + "libelleAcheminement": "CAZENEUVE MONTAUT", + "nomCommune": "CAZENEUVE MONTAUT" }, { - "codePostal": "08210", - "codeCommune": "08055", - "libelleAcheminement": "BEAUMONT EN ARGONNE", - "nomCommune": "BEAUMONT EN ARGONNE" + "codePostal": "32490", + "codeCommune": "32268", + "libelleAcheminement": "MONFERRAN SAVES", + "nomCommune": "MONFERRAN SAVES" }, { - "codePostal": "68440", - "codeCommune": "68084", - "libelleAcheminement": "ESCHENTZWILLER", - "nomCommune": "ESCHENTZWILLER" + "codePostal": "45480", + "codeCommune": "45160", + "libelleAcheminement": "GRENEVILLE EN BEAUCE", + "nomCommune": "GRENEVILLE EN BEAUCE" }, { - "codePostal": "36140", - "codeCommune": "36028", - "libelleAcheminement": "LA BUXERETTE", - "nomCommune": "LA BUXERETTE" + "codePostal": "44120", + "codeCommune": "44215", + "libelleAcheminement": "VERTOU", + "nomCommune": "VERTOU" }, { - "codePostal": "60490", - "codeCommune": "60483", - "libelleAcheminement": "ORVILLERS SOREL", - "nomCommune": "ORVILLERS SOREL" + "codePostal": "31160", + "codeCommune": "31140", + "libelleAcheminement": "CHEIN DESSUS", + "nomCommune": "CHEIN DESSUS" }, { - "codePostal": "08240", - "codeCommune": "08057", - "libelleAcheminement": "BELLEVILLE ET CHATILLON SUR BAR", - "nomCommune": "BELLEVILLE ET CHATILLON SUR BAR" + "codePostal": "32240", + "codeCommune": "32271", + "libelleAcheminement": "MONGUILHEM", + "nomCommune": "MONGUILHEM" }, { - "codePostal": "68210", - "codeCommune": "68086", - "libelleAcheminement": "FALKWILLER", - "nomCommune": "FALKWILLER" + "codePostal": "45300", + "codeCommune": "45162", + "libelleAcheminement": "GUIGNEVILLE", + "nomCommune": "GUIGNEVILLE" }, { - "codePostal": "36200", - "codeCommune": "36032", - "libelleAcheminement": "CEAULMONT", - "nomCommune": "CEAULMONT" + "codePostal": "44360", + "codeCommune": "44217", + "libelleAcheminement": "VIGNEUX DE BRETAGNE", + "nomCommune": "VIGNEUX DE BRETAGNE" }, { - "codePostal": "60400", - "codeCommune": "60488", - "libelleAcheminement": "PASSEL", - "nomCommune": "PASSEL" + "codePostal": "31110", + "codeCommune": "31142", + "libelleAcheminement": "CIER DE LUCHON", + "nomCommune": "CIER DE LUCHON" }, { - "codePostal": "08090", - "codeCommune": "08058", - "libelleAcheminement": "BELVAL", - "nomCommune": "BELVAL" + "codePostal": "32140", + "codeCommune": "32272", + "libelleAcheminement": "MONLAUR BERNET", + "nomCommune": "MONLAUR BERNET" }, { - "codePostal": "68640", - "codeCommune": "68087", - "libelleAcheminement": "FELDBACH", - "nomCommune": "FELDBACH" + "codePostal": "45600", + "codeCommune": "45164", + "libelleAcheminement": "GUILLY", + "nomCommune": "GUILLY" }, { - "codePostal": "36310", - "codeCommune": "36035", - "libelleAcheminement": "CHAILLAC", - "nomCommune": "CHAILLAC" + "codePostal": "45200", + "codeCommune": "45004", + "libelleAcheminement": "AMILLY", + "nomCommune": "AMILLY" }, { - "codePostal": "60860", - "codeCommune": "60493", - "libelleAcheminement": "PISSELEU", - "nomCommune": "PISSELEU" + "codePostal": "31810", + "codeCommune": "31148", + "libelleAcheminement": "CLERMONT LE FORT", + "nomCommune": "CLERMONT LE FORT" }, { - "codePostal": "08240", - "codeCommune": "08059", - "libelleAcheminement": "BELVAL BOIS DES DAMES", - "nomCommune": "BELVAL BOIS DES DAMES" + "codePostal": "32170", + "codeCommune": "32275", + "libelleAcheminement": "MONPARDIAC", + "nomCommune": "MONPARDIAC" }, { - "codePostal": "68540", - "codeCommune": "68088", - "libelleAcheminement": "FELDKIRCH", - "nomCommune": "FELDKIRCH" + "codePostal": "45140", + "codeCommune": "45169", + "libelleAcheminement": "INGRE", + "nomCommune": "INGRE" }, { - "codePostal": "36100", - "codeCommune": "36037", - "libelleAcheminement": "LA CHAMPENOISE", - "nomCommune": "LA CHAMPENOISE" + "codePostal": "45330", + "codeCommune": "45013", + "libelleAcheminement": "AUGERVILLE LA RIVIERE", + "nomCommune": "AUGERVILLE LA RIVIERE" }, { - "codePostal": "60640", - "codeCommune": "60519", - "libelleAcheminement": "QUESMY", - "nomCommune": "QUESMY" + "codePostal": "31700", + "codeCommune": "31150", + "libelleAcheminement": "CORNEBARRIEU", + "nomCommune": "CORNEBARRIEU" }, { - "codePostal": "08450", - "codeCommune": "08063", - "libelleAcheminement": "LA BESACE", - "nomCommune": "LA BESACE" + "codePostal": "32220", + "codeCommune": "32276", + "libelleAcheminement": "MONTADET", + "nomCommune": "MONTADET" }, { - "codePostal": "68220", - "codeCommune": "68094", - "libelleAcheminement": "FOLGENSBOURG", - "nomCommune": "FOLGENSBOURG" + "codePostal": "45480", + "codeCommune": "45174", + "libelleAcheminement": "JOUY EN PITHIVERAIS", + "nomCommune": "JOUY EN PITHIVERAIS" }, { - "codePostal": "36000", - "codeCommune": "36044", - "libelleAcheminement": "CHATEAUROUX", - "nomCommune": "CHATEAUROUX" + "codePostal": "45500", + "codeCommune": "45016", + "libelleAcheminement": "AUTRY LE CHATEL", + "nomCommune": "AUTRY LE CHATEL" }, { - "codePostal": "60155", - "codeCommune": "60523", - "libelleAcheminement": "RAINVILLERS", - "nomCommune": "RAINVILLERS" + "codePostal": "31160", + "codeCommune": "31155", + "libelleAcheminement": "COURET", + "nomCommune": "COURET" }, { - "codePostal": "08430", - "codeCommune": "08080", - "libelleAcheminement": "BOUVELLEMONT", - "nomCommune": "BOUVELLEMONT" + "codePostal": "32810", + "codeCommune": "32279", + "libelleAcheminement": "MONTAUT LES CRENEAUX", + "nomCommune": "MONTAUT LES CRENEAUX" }, { - "codePostal": "68210", - "codeCommune": "68100", - "libelleAcheminement": "FULLEREN", - "nomCommune": "FULLEREN" + "codePostal": "45370", + "codeCommune": "45175", + "libelleAcheminement": "JOUY LE POTIER", + "nomCommune": "JOUY LE POTIER" }, { - "codePostal": "36340", - "codeCommune": "36056", - "libelleAcheminement": "CLUIS", - "nomCommune": "CLUIS" + "codePostal": "45130", + "codeCommune": "45019", + "libelleAcheminement": "BACCON", + "nomCommune": "BACCON" }, { - "codePostal": "60130", - "codeCommune": "60526", - "libelleAcheminement": "RAVENEL", - "nomCommune": "RAVENEL" + "codePostal": "31270", + "codeCommune": "31157", + "libelleAcheminement": "CUGNAUX", + "nomCommune": "CUGNAUX" }, { - "codePostal": "08400", - "codeCommune": "08082", - "libelleAcheminement": "BRECY BRIERES", - "nomCommune": "BRECY BRIERES" + "codePostal": "32390", + "codeCommune": "32286", + "libelleAcheminement": "MONTESTRUC SUR GERS", + "nomCommune": "MONTESTRUC SUR GERS" }, { - "codePostal": "68210", - "codeCommune": "68114", - "libelleAcheminement": "GUEVENATTEN", - "nomCommune": "GUEVENATTEN" + "codePostal": "45270", + "codeCommune": "45178", + "libelleAcheminement": "LADON", + "nomCommune": "LADON" }, { - "codePostal": "36100", - "codeCommune": "36059", - "libelleAcheminement": "CONDE", - "nomCommune": "CONDE" + "codePostal": "45480", + "codeCommune": "45025", + "libelleAcheminement": "BAZOCHES LES GALLERANDES", + "nomCommune": "BAZOCHES LES GALLERANDES" }, { - "codePostal": "60600", - "codeCommune": "60529", - "libelleAcheminement": "REMECOURT", - "nomCommune": "REMECOURT" + "codePostal": "31160", + "codeCommune": "31167", + "libelleAcheminement": "ENCAUSSE LES THERMES", + "nomCommune": "ENCAUSSE LES THERMES" }, { - "codePostal": "08190", - "codeCommune": "08084", - "libelleAcheminement": "BRIENNE SUR AISNE", - "nomCommune": "BRIENNE SUR AISNE" + "codePostal": "32250", + "codeCommune": "32290", + "libelleAcheminement": "MONTREAL DU GERS", + "nomCommune": "MONTREAL" }, { - "codePostal": "68116", - "codeCommune": "68115", - "libelleAcheminement": "GUEWENHEIM", - "nomCommune": "GUEWENHEIM" + "codePostal": "45410", + "codeCommune": "45183", + "libelleAcheminement": "LION EN BEAUCE", + "nomCommune": "LION EN BEAUCE" }, { - "codePostal": "36130", - "codeCommune": "36064", - "libelleAcheminement": "DIORS", - "nomCommune": "DIORS" + "codePostal": "45270", + "codeCommune": "45027", + "libelleAcheminement": "BEAUCHAMPS SUR HUILLARD", + "nomCommune": "BEAUCHAMPS SUR HUILLARD" }, { - "codePostal": "60510", - "codeCommune": "60530", - "libelleAcheminement": "REMERANGLES", - "nomCommune": "REMERANGLES" + "codePostal": "31450", + "codeCommune": "31171", + "libelleAcheminement": "ESPANES", + "nomCommune": "ESPANES" }, { - "codePostal": "08240", - "codeCommune": "08089", - "libelleAcheminement": "BUZANCY", - "nomCommune": "BUZANCY" + "codePostal": "32330", + "codeCommune": "32292", + "libelleAcheminement": "MOUCHAN", + "nomCommune": "MOUCHAN" }, { - "codePostal": "68140", - "codeCommune": "68117", - "libelleAcheminement": "GUNSBACH", - "nomCommune": "GUNSBACH" + "codePostal": "45700", + "codeCommune": "45185", + "libelleAcheminement": "LOMBREUIL", + "nomCommune": "LOMBREUIL" }, { - "codePostal": "36260", - "codeCommune": "36065", - "libelleAcheminement": "DIOU", - "nomCommune": "DIOU" + "codePostal": "45630", + "codeCommune": "45029", + "libelleAcheminement": "BEAULIEU SUR LOIRE", + "nomCommune": "BEAULIEU SUR LOIRE" }, { - "codePostal": "60410", - "codeCommune": "60536", - "libelleAcheminement": "RHUIS", - "nomCommune": "RHUIS" + "codePostal": "31160", + "codeCommune": "31174", + "libelleAcheminement": "ESTADENS", + "nomCommune": "ESTADENS" }, { - "codePostal": "08240", - "codeCommune": "08089", - "libelleAcheminement": "BUZANCY", - "nomCommune": "BUZANCY" + "codePostal": "32190", + "codeCommune": "32294", + "libelleAcheminement": "MOUREDE", + "nomCommune": "MOUREDE" }, { - "codePostal": "68420", - "codeCommune": "68123", - "libelleAcheminement": "HATTSTATT", - "nomCommune": "HATTSTATT" + "codePostal": "45260", + "codeCommune": "45187", + "libelleAcheminement": "LORRIS", + "nomCommune": "LORRIS" }, { - "codePostal": "36700", - "codeCommune": "36074", - "libelleAcheminement": "FLERE LA RIVIERE", - "nomCommune": "FLERE LA RIVIERE" + "codePostal": "45340", + "codeCommune": "45035", + "libelleAcheminement": "BOISCOMMUN", + "nomCommune": "BOISCOMMUN" }, { - "codePostal": "60126", - "codeCommune": "60540", - "libelleAcheminement": "RIVECOURT", - "nomCommune": "RIVECOURT" + "codePostal": "31440", + "codeCommune": "31176", + "libelleAcheminement": "ESTENOS", + "nomCommune": "ESTENOS" }, { - "codePostal": "08200", - "codeCommune": "08101", - "libelleAcheminement": "LA CHAPELLE", - "nomCommune": "LA CHAPELLE" + "codePostal": "32140", + "codeCommune": "32304", + "libelleAcheminement": "PANASSAC", + "nomCommune": "PANASSAC" }, { - "codePostal": "68130", - "codeCommune": "68124", - "libelleAcheminement": "HAUSGAUEN", - "nomCommune": "HAUSGAUEN" + "codePostal": "45470", + "codeCommune": "45188", + "libelleAcheminement": "LOURY", + "nomCommune": "LOURY" }, { - "codePostal": "36180", - "codeCommune": "36080", - "libelleAcheminement": "FREDILLE", - "nomCommune": "FREDILLE" + "codePostal": "45480", + "codeCommune": "45037", + "libelleAcheminement": "BOISSEAUX", + "nomCommune": "BOISSEAUX" }, { - "codePostal": "60120", - "codeCommune": "60544", - "libelleAcheminement": "ROCQUENCOURT", - "nomCommune": "ROCQUENCOURT" + "codePostal": "31440", + "codeCommune": "31177", + "libelleAcheminement": "EUP", + "nomCommune": "EUP" }, { - "codePostal": "08220", - "codeCommune": "08102", - "libelleAcheminement": "CHAPPES", - "nomCommune": "CHAPPES" + "codePostal": "32110", + "codeCommune": "32305", + "libelleAcheminement": "PANJAS", + "nomCommune": "PANJAS" }, { - "codePostal": "68720", - "codeCommune": "68127", - "libelleAcheminement": "HEIDWILLER", - "nomCommune": "HEIDWILLER" + "codePostal": "45210", + "codeCommune": "45189", + "libelleAcheminement": "LOUZOUER", + "nomCommune": "LOUZOUER" }, { - "codePostal": "36190", - "codeCommune": "36081", - "libelleAcheminement": "GARGILESSE DAMPIERRE", - "nomCommune": "GARGILESSE DAMPIERRE" + "codePostal": "45460", + "codeCommune": "45039", + "libelleAcheminement": "BONNEE", + "nomCommune": "BONNEE" }, { - "codePostal": "60440", - "codeCommune": "60546", - "libelleAcheminement": "ROSIERES", - "nomCommune": "ROSIERES" + "codePostal": "31540", + "codeCommune": "31180", + "libelleAcheminement": "FALGA", + "nomCommune": "FALGA" }, { - "codePostal": "08250", - "codeCommune": "08109", - "libelleAcheminement": "CHATEL CHEHERY", - "nomCommune": "CHATEL CHEHERY" + "codePostal": "32460", + "codeCommune": "32310", + "libelleAcheminement": "PERCHEDE", + "nomCommune": "PERCHEDE" }, { - "codePostal": "68600", - "codeCommune": "68130", - "libelleAcheminement": "HEITEREN", - "nomCommune": "HEITEREN" + "codePostal": "45330", + "codeCommune": "45191", + "libelleAcheminement": "LE MALESHERBOIS", + "nomCommune": "LE MALESHERBOIS" }, { - "codePostal": "36600", - "codeCommune": "36092", - "libelleAcheminement": "LANGE", - "nomCommune": "LANGE" + "codePostal": "45420", + "codeCommune": "45040", + "libelleAcheminement": "BONNY SUR LOIRE", + "nomCommune": "BONNY SUR LOIRE" }, { - "codePostal": "60800", - "codeCommune": "60552", - "libelleAcheminement": "ROUVILLE", - "nomCommune": "ROUVILLE" + "codePostal": "31290", + "codeCommune": "31185", + "libelleAcheminement": "FOLCARDE", + "nomCommune": "FOLCARDE" }, { - "codePostal": "08450", - "codeCommune": "08115", - "libelleAcheminement": "CHEMERY CHEHERY", - "nomCommune": "CHEMERY CHEHERY" + "codePostal": "32320", + "codeCommune": "32315", + "libelleAcheminement": "PEYRUSSE GRANDE", + "nomCommune": "PEYRUSSE GRANDE" }, { - "codePostal": "68600", - "codeCommune": "68136", - "libelleAcheminement": "HETTENSCHLAG", - "nomCommune": "HETTENSCHLAG" + "codePostal": "45220", + "codeCommune": "45199", + "libelleAcheminement": "MELLEROY", + "nomCommune": "MELLEROY" }, { - "codePostal": "36400", - "codeCommune": "36100", - "libelleAcheminement": "LOUROUER ST LAURENT", - "nomCommune": "LOUROUER ST LAURENT" + "codePostal": "45170", + "codeCommune": "45044", + "libelleAcheminement": "BOUGY LEZ NEUVILLE", + "nomCommune": "BOUGY LEZ NEUVILLE" }, { - "codePostal": "60810", - "codeCommune": "60560", - "libelleAcheminement": "RULLY", - "nomCommune": "RULLY" + "codePostal": "31370", + "codeCommune": "31189", + "libelleAcheminement": "FORGUES", + "nomCommune": "FORGUES" }, { - "codePostal": "08390", - "codeCommune": "08116", - "libelleAcheminement": "BAIRON ET SES ENVIRONS", - "nomCommune": "BAIRON ET SES ENVIRONS" + "codePostal": "32500", + "codeCommune": "32318", + "libelleAcheminement": "PIS", + "nomCommune": "PIS" }, { - "codePostal": "68118", - "codeCommune": "68139", - "libelleAcheminement": "HIRTZBACH", - "nomCommune": "HIRTZBACH" + "codePostal": "45240", + "codeCommune": "45200", + "libelleAcheminement": "MENESTREAU EN VILLETTE", + "nomCommune": "MENESTREAU EN VILLETTE" }, { - "codePostal": "36220", - "codeCommune": "36105", - "libelleAcheminement": "LUREUIL", - "nomCommune": "LUREUIL" + "codePostal": "45140", + "codeCommune": "45059", + "libelleAcheminement": "BUCY ST LIPHARD", + "nomCommune": "BUCY ST LIPHARD" }, { - "codePostal": "60700", - "codeCommune": "60562", - "libelleAcheminement": "SACY LE GRAND", - "nomCommune": "SACY LE GRAND" + "codePostal": "31440", + "codeCommune": "31190", + "libelleAcheminement": "FOS", + "nomCommune": "FOS" }, { - "codePostal": "08390", - "codeCommune": "08116", - "libelleAcheminement": "BAIRON ET SES ENVIRONS", - "nomCommune": "BAIRON ET SES ENVIRONS" + "codePostal": "32160", + "codeCommune": "32319", + "libelleAcheminement": "PLAISANCE", + "nomCommune": "PLAISANCE" }, { - "codePostal": "68740", - "codeCommune": "68140", - "libelleAcheminement": "HIRTZFELDEN", - "nomCommune": "HIRTZFELDEN" + "codePostal": "45370", + "codeCommune": "45204", + "libelleAcheminement": "MEZIERES LEZ CLERY", + "nomCommune": "MEZIERES LEZ CLERY" }, { - "codePostal": "36800", - "codeCommune": "36106", - "libelleAcheminement": "LUZERET", - "nomCommune": "LUZERET" + "codePostal": "45230", + "codeCommune": "45060", + "libelleAcheminement": "LA BUSSIERE", + "nomCommune": "LA BUSSIERE" }, { - "codePostal": "60170", - "codeCommune": "60569", - "libelleAcheminement": "ST CREPIN AUX BOIS", - "nomCommune": "ST CREPIN AUX BOIS" + "codePostal": "31210", + "codeCommune": "31197", + "libelleAcheminement": "FRANQUEVIELLE", + "nomCommune": "FRANQUEVIELLE" }, { - "codePostal": "08400", - "codeCommune": "08116", - "libelleAcheminement": "BAIRON ET SES ENVIRONS", - "nomCommune": "BAIRON ET SES ENVIRONS" + "codePostal": "32300", + "codeCommune": "32324", + "libelleAcheminement": "PONSAN SOUBIRAN", + "nomCommune": "PONSAN SOUBIRAN" }, { - "codePostal": "68140", - "codeCommune": "68142", - "libelleAcheminement": "HOHROD", - "nomCommune": "HOHROD" + "codePostal": "45230", + "codeCommune": "45210", + "libelleAcheminement": "MONTBOUY", + "nomCommune": "MONTBOUY" }, { - "codePostal": "36400", - "codeCommune": "36109", - "libelleAcheminement": "LE MAGNY", - "nomCommune": "LE MAGNY" + "codePostal": "45260", + "codeCommune": "45066", + "libelleAcheminement": "CHAILLY EN GATINAIS", + "nomCommune": "CHAILLY EN GATINAIS" }, { - "codePostal": "60380", - "codeCommune": "60571", - "libelleAcheminement": "ST DENISCOURT", - "nomCommune": "ST DENISCOURT" + "codePostal": "31510", + "codeCommune": "31200", + "libelleAcheminement": "FRONTIGNAN DE COMMINGES", + "nomCommune": "FRONTIGNAN DE COMMINGES" }, { - "codePostal": "08250", - "codeCommune": "08120", - "libelleAcheminement": "CHEVIERES", - "nomCommune": "CHEVIERES" + "codePostal": "32320", + "codeCommune": "32326", + "libelleAcheminement": "POUYLEBON", + "nomCommune": "POUYLEBON" }, { - "codePostal": "68320", - "codeCommune": "68143", - "libelleAcheminement": "PORTE DU RIED", - "nomCommune": "PORTE DU RIED" + "codePostal": "45210", + "codeCommune": "45222", + "libelleAcheminement": "NARGIS", + "nomCommune": "NARGIS" }, { - "codePostal": "36340", - "codeCommune": "36110", - "libelleAcheminement": "MAILLET", - "nomCommune": "MAILLET" + "codePostal": "45420", + "codeCommune": "45070", + "libelleAcheminement": "CHAMPOULET", + "nomCommune": "CHAMPOULET" }, { - "codePostal": "60370", - "codeCommune": "60574", - "libelleAcheminement": "ST FELIX", - "nomCommune": "ST FELIX" + "codePostal": "31310", + "codeCommune": "31219", + "libelleAcheminement": "GENSAC SUR GARONNE", + "nomCommune": "GENSAC SUR GARONNE" }, { - "codePostal": "08250", - "codeCommune": "08128", - "libelleAcheminement": "CONDE LES AUTRY", - "nomCommune": "CONDE LES AUTRY" + "codePostal": "32480", + "codeCommune": "32328", + "libelleAcheminement": "POUY ROQUELAURE", + "nomCommune": "POUY ROQUELAURE" }, { - "codePostal": "68490", - "codeCommune": "68144", - "libelleAcheminement": "HOMBOURG", - "nomCommune": "HOMBOURG" + "codePostal": "45170", + "codeCommune": "45224", + "libelleAcheminement": "NEUVILLE AUX BOIS", + "nomCommune": "NEUVILLE AUX BOIS" }, { - "codePostal": "36340", - "codeCommune": "36111", - "libelleAcheminement": "MALICORNAY", - "nomCommune": "MALICORNAY" + "codePostal": "45380", + "codeCommune": "45075", + "libelleAcheminement": "LA CHAPELLE ST MESMIN", + "nomCommune": "LA CHAPELLE ST MESMIN" }, { - "codePostal": "60340", - "codeCommune": "60584", - "libelleAcheminement": "ST LEU D ESSERENT", - "nomCommune": "ST LEU D ESSERENT" + "codePostal": "31560", + "codeCommune": "31220", + "libelleAcheminement": "GIBEL", + "nomCommune": "GIBEL" }, { - "codePostal": "08250", - "codeCommune": "08131", - "libelleAcheminement": "CORNAY", - "nomCommune": "CORNAY" + "codePostal": "32390", + "codeCommune": "32329", + "libelleAcheminement": "PRECHAC", + "nomCommune": "PRECHAC" }, { - "codePostal": "68180", - "codeCommune": "68145", - "libelleAcheminement": "HORBOURG WIHR", - "nomCommune": "HORBOURG WIHR" + "codePostal": "45510", + "codeCommune": "45226", + "libelleAcheminement": "NEUVY EN SULLIAS", + "nomCommune": "NEUVY EN SULLIAS" }, { - "codePostal": "36220", - "codeCommune": "36119", - "libelleAcheminement": "MERIGNY", - "nomCommune": "MERIGNY" + "codePostal": "45230", + "codeCommune": "45077", + "libelleAcheminement": "LA CHAPELLE SUR AVEYRON", + "nomCommune": "LA CHAPELLE SUR AVEYRON" }, { - "codePostal": "60420", - "codeCommune": "60585", - "libelleAcheminement": "ST MARTIN AUX BOIS", - "nomCommune": "ST MARTIN AUX BOIS" + "codePostal": "31310", + "codeCommune": "31225", + "libelleAcheminement": "GOUTEVERNISSE", + "nomCommune": "GOUTEVERNISSE" }, { - "codePostal": "08140", - "codeCommune": "08136", - "libelleAcheminement": "DAIGNY", - "nomCommune": "DAIGNY" + "codePostal": "32810", + "codeCommune": "32331", + "libelleAcheminement": "PREIGNAN", + "nomCommune": "PREIGNAN" }, { - "codePostal": "68180", - "codeCommune": "68145", - "libelleAcheminement": "HORBOURG WIHR", - "nomCommune": "HORBOURG WIHR" + "codePostal": "45390", + "codeCommune": "45237", + "libelleAcheminement": "ORVILLE", + "nomCommune": "ORVILLE" }, { - "codePostal": "36230", - "codeCommune": "36120", - "libelleAcheminement": "MERS SUR INDRE", - "nomCommune": "MERS SUR INDRE" + "codePostal": "45130", + "codeCommune": "45081", + "libelleAcheminement": "CHARSONVILLE", + "nomCommune": "CHARSONVILLE" }, { - "codePostal": "60860", - "codeCommune": "60590", - "libelleAcheminement": "ST OMER EN CHAUSSEE", - "nomCommune": "ST OMER EN CHAUSSEE" + "codePostal": "31120", + "codeCommune": "31227", + "libelleAcheminement": "GOYRANS", + "nomCommune": "GOYRANS" }, { - "codePostal": "08110", - "codeCommune": "08138", - "libelleAcheminement": "LES DEUX VILLES", - "nomCommune": "LES DEUX VILLES" + "codePostal": "32400", + "codeCommune": "32333", + "libelleAcheminement": "PROJAN", + "nomCommune": "PROJAN" }, { - "codePostal": "68420", - "codeCommune": "68150", - "libelleAcheminement": "HUSSEREN LES CHATEAUX", - "nomCommune": "HUSSEREN LES CHATEAUX" + "codePostal": "45480", + "codeCommune": "45240", + "libelleAcheminement": "OUTARVILLE", + "nomCommune": "OUTARVILLE" }, { - "codePostal": "36100", - "codeCommune": "36121", - "libelleAcheminement": "MEUNET PLANCHES", - "nomCommune": "MEUNET PLANCHES" + "codePostal": "45230", + "codeCommune": "45085", + "libelleAcheminement": "CHATILLON COLIGNY", + "nomCommune": "CHATILLON COLIGNY" }, { - "codePostal": "60850", - "codeCommune": "60592", - "libelleAcheminement": "ST PIERRE ES CHAMPS", - "nomCommune": "ST PIERRE ES CHAMPS" + "codePostal": "31480", + "codeCommune": "31234", + "libelleAcheminement": "LE GRES", + "nomCommune": "LE GRES" }, { - "codePostal": "08160", - "codeCommune": "08140", - "libelleAcheminement": "DOM LE MESNIL", - "nomCommune": "DOM LE MESNIL" + "codePostal": "32600", + "codeCommune": "32334", + "libelleAcheminement": "PUJAUDRAN", + "nomCommune": "PUJAUDRAN" }, { - "codePostal": "68720", - "codeCommune": "68152", - "libelleAcheminement": "ILLFURTH", - "nomCommune": "ILLFURTH" + "codePostal": "45480", + "codeCommune": "45240", + "libelleAcheminement": "OUTARVILLE", + "nomCommune": "OUTARVILLE" }, { - "codePostal": "36290", - "codeCommune": "36123", - "libelleAcheminement": "MEZIERES EN BRENNE", - "nomCommune": "MEZIERES EN BRENNE" + "codePostal": "45480", + "codeCommune": "45088", + "libelleAcheminement": "CHAUSSY", + "nomCommune": "CHAUSSY" }, { - "codePostal": "60210", - "codeCommune": "60599", - "libelleAcheminement": "ST THIBAULT", - "nomCommune": "ST THIBAULT" + "codePostal": "31440", + "codeCommune": "31235", + "libelleAcheminement": "GURAN", + "nomCommune": "GURAN" }, { - "codePostal": "08350", - "codeCommune": "08142", - "libelleAcheminement": "DONCHERY", - "nomCommune": "DONCHERY" + "codePostal": "32230", + "codeCommune": "32342", + "libelleAcheminement": "RICOURT", + "nomCommune": "RICOURT" }, { - "codePostal": "68110", - "codeCommune": "68154", - "libelleAcheminement": "ILLZACH", - "nomCommune": "ILLZACH" + "codePostal": "45150", + "codeCommune": "45241", + "libelleAcheminement": "OUVROUER LES CHAMPS", + "nomCommune": "OUVROUER LES CHAMPS" }, { - "codePostal": "36140", - "codeCommune": "36126", - "libelleAcheminement": "MONTCHEVRIER", - "nomCommune": "MONTCHEVRIER" + "codePostal": "45800", + "codeCommune": "45100", + "libelleAcheminement": "COMBLEUX", + "nomCommune": "COMBLEUX" }, { - "codePostal": "60410", - "codeCommune": "60600", - "libelleAcheminement": "ST VAAST DE LONGMONT", - "nomCommune": "ST VAAST DE LONGMONT" + "codePostal": "31110", + "codeCommune": "31244", + "libelleAcheminement": "JUZET DE LUCHON", + "nomCommune": "JUZET DE LUCHON" }, { - "codePostal": "08220", - "codeCommune": "08143", - "libelleAcheminement": "DOUMELY BEGNY", - "nomCommune": "DOUMELY BEGNY" + "codePostal": "32400", + "codeCommune": "32344", + "libelleAcheminement": "RISCLE", + "nomCommune": "RISCLE" }, { - "codePostal": "68230", - "codeCommune": "68161", - "libelleAcheminement": "KATZENTHAL", - "nomCommune": "KATZENTHAL" + "codePostal": "45310", + "codeCommune": "45248", + "libelleAcheminement": "PATAY", + "nomCommune": "PATAY" }, { - "codePostal": "36400", - "codeCommune": "36127", - "libelleAcheminement": "MONTGIVRAY", - "nomCommune": "MONTGIVRAY" + "codePostal": "45320", + "codeCommune": "45113", + "libelleAcheminement": "COURTEMAUX", + "nomCommune": "COURTEMAUX" }, { - "codePostal": "60220", - "codeCommune": "60602", - "libelleAcheminement": "ST VALERY", - "nomCommune": "ST VALERY" + "codePostal": "31390", + "codeCommune": "31261", + "libelleAcheminement": "LAFITTE VIGORDANE", + "nomCommune": "LAFITTE VIGORDANE" }, { - "codePostal": "08220", - "codeCommune": "08146", - "libelleAcheminement": "DRAIZE", - "nomCommune": "DRAIZE" + "codePostal": "32810", + "codeCommune": "32348", + "libelleAcheminement": "ROQUELAURE", + "nomCommune": "ROQUELAURE" }, { - "codePostal": "68240", - "codeCommune": "68162", - "libelleAcheminement": "KAYSERSBERG VIGNOBLE", - "nomCommune": "KAYSERSBERG VIGNOBLE" + "codePostal": "45270", + "codeCommune": "45259", + "libelleAcheminement": "QUIERS SUR BEZONDE", + "nomCommune": "QUIERS SUR BEZONDE" }, { - "codePostal": "36230", - "codeCommune": "36129", - "libelleAcheminement": "MONTIPOURET", - "nomCommune": "MONTIPOURET" + "codePostal": "45170", + "codeCommune": "45118", + "libelleAcheminement": "CROTTES EN PITHIVERAIS", + "nomCommune": "CROTTES EN PITHIVERAIS" }, { - "codePostal": "60120", - "codeCommune": "60627", - "libelleAcheminement": "TARTIGNY", - "nomCommune": "TARTIGNY" + "codePostal": "31190", + "codeCommune": "31264", + "libelleAcheminement": "LAGRACE DIEU", + "nomCommune": "LAGRACE DIEU" }, { - "codePostal": "08300", - "codeCommune": "08150", - "libelleAcheminement": "ECLY", - "nomCommune": "ECLY" + "codePostal": "32310", + "codeCommune": "32351", + "libelleAcheminement": "ROQUES", + "nomCommune": "ROQUES" }, { - "codePostal": "68240", - "codeCommune": "68162", - "libelleAcheminement": "KAYSERSBERG VIGNOBLE", - "nomCommune": "KAYSERSBERG VIGNOBLE" + "codePostal": "45590", + "codeCommune": "45272", + "libelleAcheminement": "ST CYR EN VAL", + "nomCommune": "ST CYR EN VAL" }, { - "codePostal": "36350", - "codeCommune": "36157", - "libelleAcheminement": "LA PEROUILLE", - "nomCommune": "LA PEROUILLE" + "codePostal": "45390", + "codeCommune": "45125", + "libelleAcheminement": "DIMANCHEVILLE", + "nomCommune": "DIMANCHEVILLE" }, { - "codePostal": "60520", - "codeCommune": "60631", - "libelleAcheminement": "THIERS SUR THEVE", - "nomCommune": "THIERS SUR THEVE" + "codePostal": "31600", + "codeCommune": "31269", + "libelleAcheminement": "LAMASQUERE", + "nomCommune": "LAMASQUERE" }, { - "codePostal": "08260", - "codeCommune": "08155", - "libelleAcheminement": "ETALLE", - "nomCommune": "ETALLE" + "codePostal": "32340", + "codeCommune": "32358", + "libelleAcheminement": "ST ANTOINE", + "nomCommune": "ST ANTOINE" }, { - "codePostal": "68680", - "codeCommune": "68163", - "libelleAcheminement": "KEMBS", - "nomCommune": "KEMBS" + "codePostal": "45360", + "codeCommune": "45276", + "libelleAcheminement": "ST FIRMIN SUR LOIRE", + "nomCommune": "ST FIRMIN SUR LOIRE" }, { - "codePostal": "36160", - "codeCommune": "36163", - "libelleAcheminement": "POULIGNY NOTRE DAME", - "nomCommune": "POULIGNY NOTRE DAME" + "codePostal": "45680", + "codeCommune": "45127", + "libelleAcheminement": "DORDIVES", + "nomCommune": "DORDIVES" }, { - "codePostal": "60160", - "codeCommune": "60635", - "libelleAcheminement": "THIVERNY", - "nomCommune": "THIVERNY" + "codePostal": "31570", + "codeCommune": "31271", + "libelleAcheminement": "LANTA", + "nomCommune": "LANTA" }, { - "codePostal": "08160", - "codeCommune": "08158", - "libelleAcheminement": "ETREPIGNY", - "nomCommune": "ETREPIGNY" + "codePostal": "32300", + "codeCommune": "32361", + "libelleAcheminement": "ST ARROMAN", + "nomCommune": "ST ARROMAN" }, { - "codePostal": "68290", - "codeCommune": "68179", - "libelleAcheminement": "LAUW", - "nomCommune": "LAUW" + "codePostal": "45800", + "codeCommune": "45284", + "libelleAcheminement": "ST JEAN DE BRAYE", + "nomCommune": "ST JEAN DE BRAYE" }, { - "codePostal": "36300", - "codeCommune": "36165", - "libelleAcheminement": "POULIGNY ST PIERRE", - "nomCommune": "POULIGNY ST PIERRE" + "codePostal": "45390", + "codeCommune": "45131", + "libelleAcheminement": "ECHILLEUSES", + "nomCommune": "ECHILLEUSES" }, { - "codePostal": "60250", - "codeCommune": "60638", - "libelleAcheminement": "THURY SOUS CLERMONT", - "nomCommune": "THURY SOUS CLERMONT" + "codePostal": "31530", + "codeCommune": "31277", + "libelleAcheminement": "LASSERRE PRADERE", + "nomCommune": "LASSERRE PRADERE" }, { - "codePostal": "08210", - "codeCommune": "08159", - "libelleAcheminement": "EUILLY ET LOMBUT", - "nomCommune": "EUILLY ET LOMBUT" + "codePostal": "32370", + "codeCommune": "32369", + "libelleAcheminement": "STE CHRISTIE D ARMAGNAC", + "nomCommune": "STE CHRISTIE D ARMAGNAC" }, { - "codePostal": "68220", - "codeCommune": "68182", - "libelleAcheminement": "LEYMEN", - "nomCommune": "LEYMEN" + "codePostal": "45650", + "codeCommune": "45286", + "libelleAcheminement": "ST JEAN LE BLANC", + "nomCommune": "ST JEAN LE BLANC" }, { - "codePostal": "36220", - "codeCommune": "36167", - "libelleAcheminement": "PREUILLY LA VILLE", - "nomCommune": "PREUILLY LA VILLE" + "codePostal": "45250", + "codeCommune": "45138", + "libelleAcheminement": "ESCRIGNELLES", + "nomCommune": "ESCRIGNELLES" }, { - "codePostal": "60000", - "codeCommune": "60639", - "libelleAcheminement": "TILLE", - "nomCommune": "TILLE" + "codePostal": "31310", + "codeCommune": "31280", + "libelleAcheminement": "LATRAPE", + "nomCommune": "LATRAPE" }, { - "codePostal": "08090", - "codeCommune": "08160", - "libelleAcheminement": "EVIGNY", - "nomCommune": "EVIGNY" + "codePostal": "32120", + "codeCommune": "32376", + "libelleAcheminement": "STE GEMME", + "nomCommune": "STE GEMME" }, { - "codePostal": "68610", - "codeCommune": "68188", - "libelleAcheminement": "LINTHAL", - "nomCommune": "LINTHAL" + "codePostal": "45340", + "codeCommune": "45294", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "36800", - "codeCommune": "36192", - "libelleAcheminement": "ST GAULTIER", - "nomCommune": "ST GAULTIER" + "codePostal": "45420", + "codeCommune": "45141", + "libelleAcheminement": "FAVERELLES", + "nomCommune": "FAVERELLES" }, { - "codePostal": "60590", - "codeCommune": "60645", - "libelleAcheminement": "TRIE LA VILLE", - "nomCommune": "TRIE LA VILLE" + "codePostal": "31220", + "codeCommune": "31292", + "libelleAcheminement": "LESCUNS", + "nomCommune": "LESCUNS" }, { - "codePostal": "08250", - "codeCommune": "08161", - "libelleAcheminement": "EXERMONT", - "nomCommune": "EXERMONT" + "codePostal": "32700", + "codeCommune": "32396", + "libelleAcheminement": "ST MEZARD", + "nomCommune": "ST MEZARD" }, { - "codePostal": "68210", - "codeCommune": "68192", - "libelleAcheminement": "VALDIEU LUTRAN", - "nomCommune": "VALDIEU LUTRAN" + "codePostal": "45310", + "codeCommune": "45296", + "libelleAcheminement": "ST PERAVY LA COLOMBE", + "nomCommune": "ST PERAVY LA COLOMBE" }, { - "codePostal": "36250", - "codeCommune": "36202", - "libelleAcheminement": "ST MAUR", - "nomCommune": "ST MAUR" + "codePostal": "45450", + "codeCommune": "45142", + "libelleAcheminement": "FAY AUX LOGES", + "nomCommune": "FAY AUX LOGES" }, { - "codePostal": "60120", - "codeCommune": "60648", - "libelleAcheminement": "TROUSSENCOURT", - "nomCommune": "TROUSSENCOURT" + "codePostal": "31160", + "codeCommune": "31294", + "libelleAcheminement": "LESPITEAU", + "nomCommune": "LESPITEAU" }, { - "codePostal": "08400", - "codeCommune": "08164", - "libelleAcheminement": "FALAISE", - "nomCommune": "FALAISE" + "codePostal": "32100", + "codeCommune": "32400", + "libelleAcheminement": "ST ORENS POUY PETIT", + "nomCommune": "ST ORENS POUY PETIT" }, { - "codePostal": "68480", - "codeCommune": "68194", - "libelleAcheminement": "LUTTER", - "nomCommune": "LUTTER" + "codePostal": "45310", + "codeCommune": "45299", + "libelleAcheminement": "ST SIGISMOND", + "nomCommune": "ST SIGISMOND" }, { - "codePostal": "36700", - "codeCommune": "36203", - "libelleAcheminement": "ST MEDARD", - "nomCommune": "ST MEDARD" + "codePostal": "45150", + "codeCommune": "45144", + "libelleAcheminement": "FEROLLES", + "nomCommune": "FEROLLES" }, { - "codePostal": "60790", - "codeCommune": "60652", - "libelleAcheminement": "VALDAMPIERRE", - "nomCommune": "VALDAMPIERRE" + "codePostal": "31800", + "codeCommune": "31302", + "libelleAcheminement": "LODES", + "nomCommune": "LODES" }, { - "codePostal": "08290", - "codeCommune": "08167", - "libelleAcheminement": "LA FEREE", - "nomCommune": "LA FEREE" + "codePostal": "32260", + "codeCommune": "32411", + "libelleAcheminement": "SANSAN", + "nomCommune": "SANSAN" }, { - "codePostal": "68290", - "codeCommune": "68201", - "libelleAcheminement": "MASEVAUX NIEDERBRUCK", - "nomCommune": "MASEVAUX NIEDERBRUCK" + "codePostal": "45170", + "codeCommune": "45301", + "libelleAcheminement": "SANTEAU", + "nomCommune": "SANTEAU" }, { - "codePostal": "36260", - "codeCommune": "36205", - "libelleAcheminement": "ST PIERRE DE JARDS", - "nomCommune": "ST PIERRE DE JARDS" + "codePostal": "45240", + "codeCommune": "45146", + "libelleAcheminement": "LA FERTE ST AUBIN", + "nomCommune": "LA FERTE ST AUBIN" }, { - "codePostal": "60400", - "codeCommune": "60657", - "libelleAcheminement": "VAUCHELLES", - "nomCommune": "VAUCHELLES" + "codePostal": "31460", + "codeCommune": "31304", + "libelleAcheminement": "LOUBENS LAURAGAIS", + "nomCommune": "LOUBENS LAURAGAIS" }, { - "codePostal": "08260", - "codeCommune": "08169", - "libelleAcheminement": "FLAIGNES HAVYS", - "nomCommune": "FLAIGNES HAVYS" + "codePostal": "32120", + "codeCommune": "32416", + "libelleAcheminement": "SARRANT", + "nomCommune": "SARRANT" }, { - "codePostal": "68470", - "codeCommune": "68211", - "libelleAcheminement": "MITZACH", - "nomCommune": "MITZACH" + "codePostal": "45240", + "codeCommune": "45309", + "libelleAcheminement": "SENNELY", + "nomCommune": "SENNELY" }, { - "codePostal": "36190", - "codeCommune": "36207", - "libelleAcheminement": "ST PLANTAIRE", - "nomCommune": "ST PLANTAIRE" + "codePostal": "45270", + "codeCommune": "45150", + "libelleAcheminement": "FREVILLE DU GATINAIS", + "nomCommune": "FREVILLE DU GATINAIS" }, { - "codePostal": "60410", - "codeCommune": "60667", - "libelleAcheminement": "VERBERIE", - "nomCommune": "VERBERIE" + "codePostal": "31580", + "codeCommune": "31305", + "libelleAcheminement": "LOUDET", + "nomCommune": "LOUDET" }, { - "codePostal": "08160", - "codeCommune": "08173", - "libelleAcheminement": "FLIZE", - "nomCommune": "FLIZE" + "codePostal": "32220", + "codeCommune": "32418", + "libelleAcheminement": "SAUVETERRE", + "nomCommune": "SAUVETERRE" }, { - "codePostal": "68210", - "codeCommune": "68214", - "libelleAcheminement": "MONTREUX JEUNE", - "nomCommune": "MONTREUX JEUNE" + "codePostal": "45700", + "codeCommune": "45312", + "libelleAcheminement": "SOLTERRE", + "nomCommune": "SOLTERRE" }, { - "codePostal": "36290", - "codeCommune": "36212", - "libelleAcheminement": "SAULNAY", - "nomCommune": "SAULNAY" + "codePostal": "45500", + "codeCommune": "45155", + "libelleAcheminement": "GIEN", + "nomCommune": "GIEN" }, { - "codePostal": "60112", - "codeCommune": "60668", - "libelleAcheminement": "VERDEREL LES SAUQUEUSE", - "nomCommune": "VERDEREL LES SAUQUEUSE" + "codePostal": "31510", + "codeCommune": "31306", + "libelleAcheminement": "LOURDE", + "nomCommune": "LOURDE" }, { - "codePostal": "08260", - "codeCommune": "08189", - "libelleAcheminement": "GIRONDELLE", - "nomCommune": "GIRONDELLE" + "codePostal": "32130", + "codeCommune": "32421", + "libelleAcheminement": "SAVIGNAC MONA", + "nomCommune": "SAVIGNAC MONA" }, { - "codePostal": "68640", - "codeCommune": "68221", - "libelleAcheminement": "MUESPACH", - "nomCommune": "MUESPACH" + "codePostal": "45190", + "codeCommune": "45317", + "libelleAcheminement": "TAVERS", + "nomCommune": "TAVERS" }, { - "codePostal": "36160", - "codeCommune": "36214", - "libelleAcheminement": "SAZERAY", - "nomCommune": "SAZERAY" + "codePostal": "45120", + "codeCommune": "45156", + "libelleAcheminement": "GIROLLES", + "nomCommune": "GIROLLES" }, { - "codePostal": "60400", - "codeCommune": "60676", - "libelleAcheminement": "VILLE", - "nomCommune": "VILLE" + "codePostal": "31430", + "codeCommune": "31317", + "libelleAcheminement": "MARIGNAC LASCLARES", + "nomCommune": "MARIGNAC LASCLARES" }, { - "codePostal": "08250", - "codeCommune": "08197", - "libelleAcheminement": "GRANDHAM", - "nomCommune": "GRANDHAM" + "codePostal": "32230", + "codeCommune": "32422", + "libelleAcheminement": "SCIEURAC ET FLOURES", + "nomCommune": "SCIEURAC ET FLOURES" }, { - "codePostal": "68380", - "codeCommune": "68223", - "libelleAcheminement": "MUHLBACH SUR MUNSTER", - "nomCommune": "MUHLBACH SUR MUNSTER" + "codePostal": "45510", + "codeCommune": "45324", + "libelleAcheminement": "TIGY", + "nomCommune": "TIGY" }, { - "codePostal": "36500", - "codeCommune": "36218", - "libelleAcheminement": "SOUGE", - "nomCommune": "SOUGE" + "codePostal": "45300", + "codeCommune": "45162", + "libelleAcheminement": "GUIGNEVILLE", + "nomCommune": "GUIGNEVILLE" }, { - "codePostal": "60340", - "codeCommune": "60686", - "libelleAcheminement": "VILLERS SOUS ST LEU", - "nomCommune": "VILLERS SOUS ST LEU" + "codePostal": "31230", + "codeCommune": "31322", + "libelleAcheminement": "MARTISSERRE", + "nomCommune": "MARTISSERRE" }, { - "codePostal": "08700", - "codeCommune": "08199", - "libelleAcheminement": "LA GRANDVILLE", - "nomCommune": "LA GRANDVILLE" + "codePostal": "32120", + "codeCommune": "32431", + "libelleAcheminement": "SEREMPUY", + "nomCommune": "SEREMPUY" }, { - "codePostal": "68320", - "codeCommune": "68227", - "libelleAcheminement": "MUNTZENHEIM", - "nomCommune": "MUNTZENHEIM" + "codePostal": "45760", + "codeCommune": "45333", + "libelleAcheminement": "VENNECY", + "nomCommune": "VENNECY" }, { - "codePostal": "36400", - "codeCommune": "36221", - "libelleAcheminement": "THEVET ST JULIEN", - "nomCommune": "THEVET ST JULIEN" + "codePostal": "45220", + "codeCommune": "45165", + "libelleAcheminement": "GY LES NONAINS", + "nomCommune": "GY LES NONAINS" }, { - "codePostal": "60120", - "codeCommune": "60692", - "libelleAcheminement": "VILLERS VICOMTE", - "nomCommune": "VILLERS VICOMTE" + "codePostal": "31460", + "codeCommune": "31331", + "libelleAcheminement": "MAUREVILLE", + "nomCommune": "MAUREVILLE" }, { - "codePostal": "08160", - "codeCommune": "08209", - "libelleAcheminement": "HANNOGNE ST MARTIN", - "nomCommune": "HANNOGNE ST MARTIN" + "codePostal": "32110", + "codeCommune": "32437", + "libelleAcheminement": "SORBETS", + "nomCommune": "SORBETS" }, { - "codePostal": "68290", - "codeCommune": "68239", - "libelleAcheminement": "OBERBRUCK", - "nomCommune": "OBERBRUCK" + "codePostal": "45700", + "codeCommune": "45338", + "libelleAcheminement": "VILLEMANDEUR", + "nomCommune": "VILLEMANDEUR" }, { - "codePostal": "36330", - "codeCommune": "36231", - "libelleAcheminement": "VELLES", - "nomCommune": "VELLES" + "codePostal": "45330", + "codeCommune": "45191", + "libelleAcheminement": "LE MALESHERBOIS", + "nomCommune": "LE MALESHERBOIS" }, { - "codePostal": "61100", - "codeCommune": "61007", - "libelleAcheminement": "ATHIS VAL DE ROUVRE", - "nomCommune": "ATHIS VAL DE ROUVRE" + "codePostal": "31320", + "codeCommune": "31340", + "libelleAcheminement": "MERVILLA", + "nomCommune": "MERVILLA" }, { - "codePostal": "08220", - "codeCommune": "08210", - "libelleAcheminement": "HANNOGNE ST REMY", - "nomCommune": "HANNOGNE ST REMY" + "codePostal": "32120", + "codeCommune": "32441", + "libelleAcheminement": "TAYBOSC", + "nomCommune": "TAYBOSC" }, { - "codePostal": "68127", - "codeCommune": "68241", - "libelleAcheminement": "OBERENTZEN", - "nomCommune": "OBERENTZEN" + "codePostal": "45530", + "codeCommune": "45346", + "libelleAcheminement": "VITRY AUX LOGES", + "nomCommune": "VITRY AUX LOGES" }, { - "codePostal": "36600", - "codeCommune": "36235", - "libelleAcheminement": "VEUIL", - "nomCommune": "VEUIL" + "codePostal": "45330", + "codeCommune": "45191", + "libelleAcheminement": "LE MALESHERBOIS", + "nomCommune": "LE MALESHERBOIS" }, { - "codePostal": "61100", - "codeCommune": "61007", - "libelleAcheminement": "ATHIS VAL DE ROUVRE", - "nomCommune": "ATHIS VAL DE ROUVRE" + "codePostal": "31230", + "codeCommune": "31343", + "libelleAcheminement": "MIRAMBEAU", + "nomCommune": "MIRAMBEAU" }, { - "codePostal": "08800", - "codeCommune": "08217", - "libelleAcheminement": "HAULME", - "nomCommune": "HAULME" + "codePostal": "32430", + "codeCommune": "32444", + "libelleAcheminement": "THOUX", + "nomCommune": "THOUX" }, { - "codePostal": "68800", - "codeCommune": "68261", - "libelleAcheminement": "RAMMERSMATT", - "nomCommune": "RAMMERSMATT" + "codePostal": "46090", + "codeCommune": "46007", + "libelleAcheminement": "ARCAMBAL", + "nomCommune": "ARCAMBAL" }, { - "codePostal": "36160", - "codeCommune": "36240", - "libelleAcheminement": "VIJON", - "nomCommune": "VIJON" + "codePostal": "45240", + "codeCommune": "45193", + "libelleAcheminement": "MARCILLY EN VILLETTE", + "nomCommune": "MARCILLY EN VILLETTE" }, { - "codePostal": "61100", - "codeCommune": "61007", - "libelleAcheminement": "ATHIS VAL DE ROUVRE", - "nomCommune": "ATHIS VAL DE ROUVRE" + "codePostal": "31220", + "codeCommune": "31349", + "libelleAcheminement": "MONDAVEZAN", + "nomCommune": "MONDAVEZAN" }, { - "codePostal": "08310", - "codeCommune": "08239", - "libelleAcheminement": "JUNIVILLE", - "nomCommune": "JUNIVILLE" + "codePostal": "32230", + "codeCommune": "32450", + "libelleAcheminement": "TOURDUN", + "nomCommune": "TOURDUN" }, { - "codePostal": "68950", - "codeCommune": "68267", - "libelleAcheminement": "REININGUE", - "nomCommune": "REININGUE" + "codePostal": "46250", + "codeCommune": "46008", + "libelleAcheminement": "LES ARQUES", + "nomCommune": "LES ARQUES" }, { - "codePostal": "36500", - "codeCommune": "36243", - "libelleAcheminement": "VILLEGOUIN", - "nomCommune": "VILLEGOUIN" + "codePostal": "45430", + "codeCommune": "45194", + "libelleAcheminement": "MARDIE", + "nomCommune": "MARDIE" }, { - "codePostal": "61430", - "codeCommune": "61007", - "libelleAcheminement": "ATHIS VAL DE ROUVRE", - "nomCommune": "ATHIS VAL DE ROUVRE" + "codePostal": "31160", + "codeCommune": "31357", + "libelleAcheminement": "MONTASTRUC DE SALIES", + "nomCommune": "MONTASTRUC DE SALIES" }, { - "codePostal": "08110", - "codeCommune": "08255", - "libelleAcheminement": "LINAY", - "nomCommune": "LINAY" + "codePostal": "32190", + "codeCommune": "32456", + "libelleAcheminement": "TUDELLE", + "nomCommune": "TUDELLE" }, { - "codePostal": "68210", - "codeCommune": "68268", - "libelleAcheminement": "RETZWILLER", - "nomCommune": "RETZWILLER" + "codePostal": "46270", + "codeCommune": "46015", + "libelleAcheminement": "BAGNAC SUR CELE", + "nomCommune": "BAGNAC SUR CELE" }, { - "codePostal": "36360", - "codeCommune": "36244", - "libelleAcheminement": "VILLENTROIS FAVEROLLES EN BERRY", - "nomCommune": "VILLENTROIS FAVEROLLES EN BERRY" + "codePostal": "45490", + "codeCommune": "45206", + "libelleAcheminement": "MIGNERES", + "nomCommune": "MIGNERES" }, { - "codePostal": "61500", - "codeCommune": "61013", - "libelleAcheminement": "AUNAY LES BOIS", - "nomCommune": "AUNAY LES BOIS" + "codePostal": "31380", + "codeCommune": "31358", + "libelleAcheminement": "MONTASTRUC LA CONSEILLERE", + "nomCommune": "MONTASTRUC LA CONSEILLERE" }, { - "codePostal": "08440", - "codeCommune": "08263", - "libelleAcheminement": "LUMES", - "nomCommune": "LUMES" + "codePostal": "32110", + "codeCommune": "32458", + "libelleAcheminement": "URGOSSE", + "nomCommune": "URGOSSE" }, { - "codePostal": "68290", - "codeCommune": "68275", - "libelleAcheminement": "RIMBACH PRES MASEVAUX", - "nomCommune": "RIMBACH PRES MASEVAUX" + "codePostal": "46500", + "codeCommune": "46018", + "libelleAcheminement": "LE BASTIT", + "nomCommune": "LE BASTIT" }, { - "codePostal": "36110", - "codeCommune": "36247", - "libelleAcheminement": "VINEUIL", - "nomCommune": "VINEUIL" + "codePostal": "45490", + "codeCommune": "45207", + "libelleAcheminement": "MIGNERETTE", + "nomCommune": "MIGNERETTE" }, { - "codePostal": "61700", - "codeCommune": "61021", - "libelleAcheminement": "AVRILLY", - "nomCommune": "AVRILLY" + "codePostal": "31290", + "codeCommune": "31368", + "libelleAcheminement": "MONTCLAR LAURAGAIS", + "nomCommune": "MONTCLAR LAURAGAIS" }, { - "codePostal": "08310", - "codeCommune": "08264", - "libelleAcheminement": "MACHAULT", - "nomCommune": "MACHAULT" + "codePostal": "32190", + "codeCommune": "32462", + "libelleAcheminement": "VIC FEZENSAC", + "nomCommune": "VIC FEZENSAC" }, { - "codePostal": "68340", - "codeCommune": "68277", - "libelleAcheminement": "RIQUEWIHR", - "nomCommune": "RIQUEWIHR" + "codePostal": "46260", + "codeCommune": "46020", + "libelleAcheminement": "BEAUREGARD", + "nomCommune": "BEAUREGARD" }, { - "codePostal": "37340", - "codeCommune": "37002", - "libelleAcheminement": "AMBILLOU", - "nomCommune": "AMBILLOU" + "codePostal": "45340", + "codeCommune": "45209", + "libelleAcheminement": "MONTBARROIS", + "nomCommune": "MONTBARROIS" }, { - "codePostal": "61450", - "codeCommune": "61024", - "libelleAcheminement": "BANVOU", - "nomCommune": "BANVOU" + "codePostal": "31540", + "codeCommune": "31371", + "libelleAcheminement": "MONTEGUT LAURAGAIS", + "nomCommune": "MONTEGUT LAURAGAIS" }, { - "codePostal": "08370", - "codeCommune": "08269", - "libelleAcheminement": "MALANDRY", - "nomCommune": "MALANDRY" + "codePostal": "32730", + "codeCommune": "32464", + "libelleAcheminement": "VILLECOMTAL SUR ARROS", + "nomCommune": "VILLECOMTAL SUR ARROS" }, { - "codePostal": "68170", - "codeCommune": "68278", - "libelleAcheminement": "RIXHEIM", - "nomCommune": "RIXHEIM" + "codePostal": "46090", + "codeCommune": "46027", + "libelleAcheminement": "BERGANTY", + "nomCommune": "BERGANTY" }, { - "codePostal": "37290", - "codeCommune": "37028", - "libelleAcheminement": "BOSSAY SUR CLAISE", - "nomCommune": "BOSSAY SUR CLAISE" + "codePostal": "45300", + "codeCommune": "45217", + "libelleAcheminement": "MORVILLE EN BEAUCE", + "nomCommune": "MORVILLE EN BEAUCE" }, { - "codePostal": "61170", - "codeCommune": "61026", - "libelleAcheminement": "BARVILLE", - "nomCommune": "BARVILLE" + "codePostal": "31370", + "codeCommune": "31382", + "libelleAcheminement": "MONTGRAS", + "nomCommune": "MONTGRAS" }, { - "codePostal": "08400", - "codeCommune": "08271", - "libelleAcheminement": "MANRE", - "nomCommune": "MANRE" + "codePostal": "32420", + "codeCommune": "32465", + "libelleAcheminement": "VILLEFRANCHE", + "nomCommune": "VILLEFRANCHE" }, { - "codePostal": "68560", - "codeCommune": "68288", - "libelleAcheminement": "RUEDERBACH", - "nomCommune": "RUEDERBACH" + "codePostal": "46800", + "codeCommune": "46033", + "libelleAcheminement": "PORTE DU QUERCY", + "nomCommune": "PORTE DU QUERCY" }, { - "codePostal": "37240", - "codeCommune": "37029", - "libelleAcheminement": "BOSSEE", - "nomCommune": "BOSSEE" + "codePostal": "45340", + "codeCommune": "45228", + "libelleAcheminement": "NIBELLE", + "nomCommune": "NIBELLE" }, { - "codePostal": "61100", - "codeCommune": "61030", - "libelleAcheminement": "LA BAZOQUE", - "nomCommune": "LA BAZOQUE" + "codePostal": "31560", + "codeCommune": "31396", + "libelleAcheminement": "NAILLOUX", + "nomCommune": "NAILLOUX" }, { - "codePostal": "08430", - "codeCommune": "08283", - "libelleAcheminement": "MAZERNY", - "nomCommune": "MAZERNY" + "codePostal": "32200", + "codeCommune": "32467", + "libelleAcheminement": "ST CAPRAIS", + "nomCommune": "ST CAPRAIS" }, { - "codePostal": "68270", - "codeCommune": "68289", - "libelleAcheminement": "RUELISHEIM", - "nomCommune": "RUELISHEIM" + "codePostal": "46160", + "codeCommune": "46041", + "libelleAcheminement": "CADRIEU", + "nomCommune": "CADRIEU" }, { - "codePostal": "37110", - "codeCommune": "37030", - "libelleAcheminement": "LE BOULAY", - "nomCommune": "LE BOULAY" + "codePostal": "45250", + "codeCommune": "45238", + "libelleAcheminement": "OUSSON SUR LOIRE", + "nomCommune": "OUSSON SUR LOIRE" }, { - "codePostal": "61570", - "codeCommune": "61039", - "libelleAcheminement": "LA BELLIERE", - "nomCommune": "LA BELLIERE" + "codePostal": "31540", + "codeCommune": "31400", + "libelleAcheminement": "NOGARET", + "nomCommune": "NOGARET" }, { - "codePostal": "08310", - "codeCommune": "08287", - "libelleAcheminement": "MENIL LEPINOIS", - "nomCommune": "MENIL LEPINOIS" + "codePostal": "33370", + "codeCommune": "33013", + "libelleAcheminement": "ARTIGUES PRES BORDEAUX", + "nomCommune": "ARTIGUES PRES BORDEAUX" }, { - "codePostal": "68740", - "codeCommune": "68291", - "libelleAcheminement": "RUMERSHEIM LE HAUT", - "nomCommune": "RUMERSHEIM LE HAUT" + "codePostal": "46130", + "codeCommune": "46043", + "libelleAcheminement": "CAHUS", + "nomCommune": "CAHUS" }, { - "codePostal": "37240", - "codeCommune": "37032", - "libelleAcheminement": "BOURNAN", - "nomCommune": "BOURNAN" + "codePostal": "45290", + "codeCommune": "45239", + "libelleAcheminement": "OUSSOY EN GATINAIS", + "nomCommune": "OUSSOY EN GATINAIS" }, { - "codePostal": "61290", - "codeCommune": "61046", - "libelleAcheminement": "BIZOU", - "nomCommune": "BIZOU" + "codePostal": "31370", + "codeCommune": "31419", + "libelleAcheminement": "LE PIN MURELET", + "nomCommune": "LE PIN MURELET" }, { - "codePostal": "08110", - "codeCommune": "08289", - "libelleAcheminement": "MESSINCOURT", - "nomCommune": "MESSINCOURT" + "codePostal": "33124", + "codeCommune": "33021", + "libelleAcheminement": "AUROS", + "nomCommune": "AUROS" }, { - "codePostal": "68210", - "codeCommune": "68293", - "libelleAcheminement": "ST COSME", - "nomCommune": "ST COSME" + "codePostal": "46160", + "codeCommune": "46056", + "libelleAcheminement": "CARAYAC", + "nomCommune": "CARAYAC" }, { - "codePostal": "37130", - "codeCommune": "37038", - "libelleAcheminement": "BREHEMONT", - "nomCommune": "BREHEMONT" + "codePostal": "45480", + "codeCommune": "45240", + "libelleAcheminement": "OUTARVILLE", + "nomCommune": "OUTARVILLE" }, { - "codePostal": "61560", - "codeCommune": "61048", - "libelleAcheminement": "BOECE", - "nomCommune": "BOECE" + "codePostal": "31120", + "codeCommune": "31420", + "libelleAcheminement": "PINSAGUEL", + "nomCommune": "PINSAGUEL" }, { - "codePostal": "08090", - "codeCommune": "08297", - "libelleAcheminement": "MONTCORNET", - "nomCommune": "MONTCORNET" + "codePostal": "33730", + "codeCommune": "33026", + "libelleAcheminement": "BALIZAC", + "nomCommune": "BALIZAC" }, { - "codePostal": "68300", - "codeCommune": "68297", - "libelleAcheminement": "ST LOUIS", - "nomCommune": "ST LOUIS" + "codePostal": "46500", + "codeCommune": "46059", + "libelleAcheminement": "CARLUCET", + "nomCommune": "CARLUCET" }, { - "codePostal": "37220", - "codeCommune": "37040", - "libelleAcheminement": "BRIZAY", - "nomCommune": "BRIZAY" + "codePostal": "45290", + "codeCommune": "45242", + "libelleAcheminement": "OUZOUER DES CHAMPS", + "nomCommune": "OUZOUER DES CHAMPS" }, { - "codePostal": "61570", - "codeCommune": "61049", - "libelleAcheminement": "BOISSEI LA LANDE", - "nomCommune": "BOISSEI LA LANDE" + "codePostal": "31220", + "codeCommune": "31425", + "libelleAcheminement": "LE PLAN", + "nomCommune": "LE PLAN" }, { - "codePostal": "08390", - "codeCommune": "08300", - "libelleAcheminement": "LE MONT DIEU", - "nomCommune": "LE MONT DIEU" + "codePostal": "33190", + "codeCommune": "33027", + "libelleAcheminement": "BARIE", + "nomCommune": "BARIE" }, { - "codePostal": "68160", - "codeCommune": "68298", - "libelleAcheminement": "STE MARIE AUX MINES", - "nomCommune": "STE MARIE AUX MINES" + "codePostal": "46140", + "codeCommune": "46060", + "libelleAcheminement": "CARNAC ROUFFIAC", + "nomCommune": "CARNAC ROUFFIAC" }, { - "codePostal": "37390", - "codeCommune": "37047", - "libelleAcheminement": "CERELLES", - "nomCommune": "CERELLES" + "codePostal": "45270", + "codeCommune": "45243", + "libelleAcheminement": "OUZOUER SOUS BELLEGARDE", + "nomCommune": "OUZOUER SOUS BELLEGARDE" }, { - "codePostal": "61110", - "codeCommune": "61050", - "libelleAcheminement": "COUR MAUGIS SUR HUISNE", - "nomCommune": "COUR MAUGIS SUR HUISNE" + "codePostal": "31430", + "codeCommune": "31428", + "libelleAcheminement": "POLASTRON", + "nomCommune": "POLASTRON" }, { - "codePostal": "08800", - "codeCommune": "08302", - "libelleAcheminement": "MONTHERME", - "nomCommune": "MONTHERME" + "codePostal": "33720", + "codeCommune": "33030", + "libelleAcheminement": "BARSAC", + "nomCommune": "BARSAC" }, { - "codePostal": "68480", - "codeCommune": "68312", - "libelleAcheminement": "SONDERSDORF", - "nomCommune": "SONDERSDORF" + "codePostal": "46150", + "codeCommune": "46064", + "libelleAcheminement": "CATUS", + "nomCommune": "CATUS" }, { - "codePostal": "37310", - "codeCommune": "37049", - "libelleAcheminement": "CHAMBOURG SUR INDRE", - "nomCommune": "CHAMBOURG SUR INDRE" + "codePostal": "45700", + "codeCommune": "45247", + "libelleAcheminement": "PANNES", + "nomCommune": "PANNES" }, { - "codePostal": "61340", - "codeCommune": "61050", - "libelleAcheminement": "COUR MAUGIS SUR HUISNE", - "nomCommune": "COUR MAUGIS SUR HUISNE" + "codePostal": "31570", + "codeCommune": "31439", + "libelleAcheminement": "PRESERVILLE", + "nomCommune": "PRESERVILLE" }, { - "codePostal": "08400", - "codeCommune": "08308", - "libelleAcheminement": "MONT ST MARTIN", - "nomCommune": "MONT ST MARTIN" + "codePostal": "33880", + "codeCommune": "33033", + "libelleAcheminement": "BAURECH", + "nomCommune": "BAURECH" }, { - "codePostal": "68230", - "codeCommune": "68316", - "libelleAcheminement": "SOULTZBACH LES BAINS", - "nomCommune": "SOULTZBACH LES BAINS" + "codePostal": "46110", + "codeCommune": "46065", + "libelleAcheminement": "CAVAGNAC", + "nomCommune": "CAVAGNAC" }, { - "codePostal": "37170", - "codeCommune": "37050", - "libelleAcheminement": "CHAMBRAY LES TOURS", - "nomCommune": "CHAMBRAY LES TOURS" + "codePostal": "45300", + "codeCommune": "45253", + "libelleAcheminement": "PITHIVIERS LE VIEIL", + "nomCommune": "PITHIVIERS LE VIEIL" }, { - "codePostal": "61270", - "codeCommune": "61052", - "libelleAcheminement": "BONNEFOI", - "nomCommune": "BONNEFOI" + "codePostal": "31480", + "codeCommune": "31444", + "libelleAcheminement": "PUYSSEGUR", + "nomCommune": "PUYSSEGUR" }, { - "codePostal": "08460", - "codeCommune": "08315", - "libelleAcheminement": "NEUFMAISON", - "nomCommune": "NEUFMAISON" + "codePostal": "33430", + "codeCommune": "33036", + "libelleAcheminement": "BAZAS", + "nomCommune": "BAZAS" }, { - "codePostal": "68570", - "codeCommune": "68318", - "libelleAcheminement": "SOULTZMATT", - "nomCommune": "SOULTZMATT" + "codePostal": "46170", + "codeCommune": "46069", + "libelleAcheminement": "CEZAC", + "nomCommune": "CEZAC" }, { - "codePostal": "37240", - "codeCommune": "37057", - "libelleAcheminement": "LA CHAPELLE BLANCHE ST MARTIN", - "nomCommune": "LA CHAPELLE BLANCHE ST MARTIN" + "codePostal": "45500", + "codeCommune": "45254", + "libelleAcheminement": "POILLY LEZ GIEN", + "nomCommune": "POILLY LEZ GIEN" }, { - "codePostal": "61380", - "codeCommune": "61053", - "libelleAcheminement": "BONSMOULINS", - "nomCommune": "BONSMOULINS" + "codePostal": "31800", + "codeCommune": "31449", + "libelleAcheminement": "REGADES", + "nomCommune": "REGADES" }, { - "codePostal": "08380", - "codeCommune": "08319", - "libelleAcheminement": "NEUVILLE LEZ BEAULIEU", - "nomCommune": "NEUVILLE LEZ BEAULIEU" + "codePostal": "33640", + "codeCommune": "33037", + "libelleAcheminement": "BEAUTIRAN", + "nomCommune": "BEAUTIRAN" }, { - "codePostal": "25410", - "codeCommune": "25616", - "libelleAcheminement": "VILLARS ST GEORGES", - "nomCommune": "VILLARS ST GEORGES" + "codePostal": "46260", + "codeCommune": "46073", + "libelleAcheminement": "CONCOTS", + "nomCommune": "CONCOTS" }, { - "codePostal": "37140", - "codeCommune": "37058", - "libelleAcheminement": "LA CHAPELLE SUR LOIRE", - "nomCommune": "LA CHAPELLE SUR LOIRE" + "codePostal": "45260", + "codeCommune": "45256", + "libelleAcheminement": "PRESNOY", + "nomCommune": "PRESNOY" }, { - "codePostal": "61470", - "codeCommune": "61054", - "libelleAcheminement": "LE BOSC RENOULT", - "nomCommune": "LE BOSC RENOULT" + "codePostal": "31290", + "codeCommune": "31450", + "libelleAcheminement": "RENNEVILLE", + "nomCommune": "RENNEVILLE" }, { - "codePostal": "08240", - "codeCommune": "08326", - "libelleAcheminement": "NOUART", - "nomCommune": "NOUART" + "codePostal": "33830", + "codeCommune": "33042", + "libelleAcheminement": "BELIN BELIET", + "nomCommune": "BELIN BELIET" }, { - "codePostal": "25190", - "codeCommune": "25617", - "libelleAcheminement": "VILLARS SOUS DAMPJOUX", - "nomCommune": "VILLARS SOUS DAMPJOUX" + "codePostal": "46330", + "codeCommune": "46081", + "libelleAcheminement": "CREGOLS", + "nomCommune": "CREGOLS" }, { - "codePostal": "37110", - "codeCommune": "37063", - "libelleAcheminement": "CHATEAU RENAULT", - "nomCommune": "CHATEAU RENAULT" + "codePostal": "45390", + "codeCommune": "45258", + "libelleAcheminement": "PUISEAUX", + "nomCommune": "PUISEAUX" }, { - "codePostal": "61270", - "codeCommune": "61060", - "libelleAcheminement": "BRETHEL", - "nomCommune": "BRETHEL" + "codePostal": "31250", + "codeCommune": "31451", + "libelleAcheminement": "REVEL", + "nomCommune": "REVEL" }, { - "codePostal": "08700", - "codeCommune": "08328", - "libelleAcheminement": "NOUZONVILLE", - "nomCommune": "NOUZONVILLE" + "codePostal": "33760", + "codeCommune": "33044", + "libelleAcheminement": "BELLEFOND", + "nomCommune": "BELLEFOND" }, { - "codePostal": "25150", - "codeCommune": "25618", - "libelleAcheminement": "VILLARS SOUS ECOT", - "nomCommune": "VILLARS SOUS ECOT" + "codePostal": "46600", + "codeCommune": "46084", + "libelleAcheminement": "CREYSSE", + "nomCommune": "CREYSSE" }, { - "codePostal": "37310", - "codeCommune": "37066", - "libelleAcheminement": "CHEDIGNY", - "nomCommune": "CHEDIGNY" + "codePostal": "45220", + "codeCommune": "45279", + "libelleAcheminement": "ST GERMAIN DES PRES", + "nomCommune": "ST GERMAIN DES PRES" }, { - "codePostal": "61160", - "codeCommune": "61062", - "libelleAcheminement": "BRIEUX", - "nomCommune": "BRIEUX" + "codePostal": "31360", + "codeCommune": "31457", + "libelleAcheminement": "ROQUEFORT SUR GARONNE", + "nomCommune": "ROQUEFORT SUR GARONNE" }, { - "codePostal": "08310", - "codeCommune": "08338", - "libelleAcheminement": "PAUVRES", - "nomCommune": "PAUVRES" + "codePostal": "33430", + "codeCommune": "33046", + "libelleAcheminement": "BERNOS BEAULAC", + "nomCommune": "BERNOS BEAULAC" }, { - "codePostal": "25270", - "codeCommune": "25621", - "libelleAcheminement": "VILLENEUVE D AMONT", - "nomCommune": "VILLENEUVE D AMONT" + "codePostal": "46270", + "codeCommune": "46085", + "libelleAcheminement": "CUZAC", + "nomCommune": "CUZAC" }, { - "codePostal": "37190", - "codeCommune": "37067", - "libelleAcheminement": "CHEILLE", - "nomCommune": "CHEILLE" + "codePostal": "45320", + "codeCommune": "45281", + "libelleAcheminement": "ST HILAIRE LES ANDRESIS", + "nomCommune": "ST HILAIRE LES ANDRESIS" }, { - "codePostal": "61170", - "codeCommune": "61066", - "libelleAcheminement": "BURE", - "nomCommune": "BURE" + "codePostal": "31110", + "codeCommune": "31465", + "libelleAcheminement": "SACCOURVIELLE", + "nomCommune": "SACCOURVIELLE" }, { - "codePostal": "08190", - "codeCommune": "08340", - "libelleAcheminement": "POILCOURT SYDNEY", - "nomCommune": "POILCOURT SYDNEY" + "codePostal": "33370", + "codeCommune": "33061", + "libelleAcheminement": "BONNETAN", + "nomCommune": "BONNETAN" }, { - "codePostal": "25840", - "codeCommune": "25633", - "libelleAcheminement": "VUILLAFANS", - "nomCommune": "VUILLAFANS" + "codePostal": "46700", + "codeCommune": "46089", + "libelleAcheminement": "DURAVEL", + "nomCommune": "DURAVEL" }, { - "codePostal": "37150", - "codeCommune": "37070", - "libelleAcheminement": "CHENONCEAUX", - "nomCommune": "CHENONCEAUX" + "codePostal": "45500", + "codeCommune": "45291", + "libelleAcheminement": "ST MARTIN SUR OCRE", + "nomCommune": "ST MARTIN SUR OCRE" }, { - "codePostal": "61500", - "codeCommune": "61068", - "libelleAcheminement": "BURSARD", - "nomCommune": "BURSARD" + "codePostal": "31420", + "codeCommune": "31477", + "libelleAcheminement": "ST ELIX SEGLAN", + "nomCommune": "ST ELIX SEGLAN" }, { - "codePostal": "08430", - "codeCommune": "08352", - "libelleAcheminement": "RAILLICOURT", - "nomCommune": "RAILLICOURT" + "codePostal": "33910", + "codeCommune": "33062", + "libelleAcheminement": "BONZAC", + "nomCommune": "BONZAC" }, { - "codePostal": "26140", - "codeCommune": "26002", - "libelleAcheminement": "ALBON", - "nomCommune": "ALBON" + "codePostal": "46230", + "codeCommune": "46091", + "libelleAcheminement": "ESCAMPS", + "nomCommune": "ESCAMPS" }, { - "codePostal": "37150", - "codeCommune": "37073", - "libelleAcheminement": "CHISSEAUX", - "nomCommune": "CHISSEAUX" + "codePostal": "45490", + "codeCommune": "45303", + "libelleAcheminement": "SCEAUX DU GATINAIS", + "nomCommune": "SCEAUX DU GATINAIS" }, { - "codePostal": "61430", - "codeCommune": "61069", - "libelleAcheminement": "CAHAN", - "nomCommune": "CAHAN" + "codePostal": "31350", + "codeCommune": "31479", + "libelleAcheminement": "ST FERREOL DE COMMINGES", + "nomCommune": "ST FERREOL DE COMMINGES" }, { - "codePostal": "08150", - "codeCommune": "08361", - "libelleAcheminement": "RENWEZ", - "nomCommune": "RENWEZ" + "codePostal": "33000", + "codeCommune": "33063", + "libelleAcheminement": "BORDEAUX", + "nomCommune": "BORDEAUX" }, { - "codePostal": "26300", - "codeCommune": "26004", - "libelleAcheminement": "ALIXAN", - "nomCommune": "ALIXAN" + "codePostal": "46090", + "codeCommune": "46092", + "libelleAcheminement": "ESCLAUZELS", + "nomCommune": "ESCLAUZELS" }, { - "codePostal": "37150", - "codeCommune": "37079", - "libelleAcheminement": "CIVRAY DE TOURAINE", - "nomCommune": "CIVRAY DE TOURAINE" + "codePostal": "45110", + "codeCommune": "45311", + "libelleAcheminement": "SIGLOY", + "nomCommune": "SIGLOY" }, { - "codePostal": "61120", - "codeCommune": "61072", - "libelleAcheminement": "CANAPVILLE", - "nomCommune": "CANAPVILLE" + "codePostal": "31290", + "codeCommune": "31485", + "libelleAcheminement": "ST GERMIER", + "nomCommune": "ST GERMIER" }, { - "codePostal": "08300", - "codeCommune": "08362", - "libelleAcheminement": "RETHEL", - "nomCommune": "RETHEL" + "codePostal": "33350", + "codeCommune": "33064", + "libelleAcheminement": "BOSSUGAN", + "nomCommune": "BOSSUGAN" }, { - "codePostal": "26780", - "codeCommune": "26005", - "libelleAcheminement": "ALLAN", - "nomCommune": "ALLAN" + "codePostal": "46170", + "codeCommune": "46103", + "libelleAcheminement": "ST PAUL FLAUGNAC", + "nomCommune": "ST PAUL FLAUGNAC" }, { - "codePostal": "37340", - "codeCommune": "37081", - "libelleAcheminement": "CLERE LES PINS", - "nomCommune": "CLERE LES PINS" + "codePostal": "45260", + "codeCommune": "45321", + "libelleAcheminement": "THIMORY", + "nomCommune": "THIMORY" }, { - "codePostal": "61500", - "codeCommune": "61081", - "libelleAcheminement": "CHAILLOUE", - "nomCommune": "CHAILLOUE" + "codePostal": "31790", + "codeCommune": "31490", + "libelleAcheminement": "ST JORY", + "nomCommune": "ST JORY" }, { - "codePostal": "08500", - "codeCommune": "08363", - "libelleAcheminement": "REVIN", - "nomCommune": "REVIN" + "codePostal": "33124", + "codeCommune": "33072", + "libelleAcheminement": "BRANNENS", + "nomCommune": "BRANNENS" }, { - "codePostal": "26570", - "codeCommune": "26026", - "libelleAcheminement": "BARRET DE LIOURE", - "nomCommune": "BARRET DE LIOURE" + "codePostal": "46090", + "codeCommune": "46105", + "libelleAcheminement": "FLAUJAC POUJOLS", + "nomCommune": "FLAUJAC POUJOLS" }, { - "codePostal": "37340", - "codeCommune": "37082", - "libelleAcheminement": "CONTINVOIR", - "nomCommune": "CONTINVOIR" + "codePostal": "45310", + "codeCommune": "45326", + "libelleAcheminement": "TOURNOISIS", + "nomCommune": "TOURNOISIS" }, { - "codePostal": "61320", - "codeCommune": "61085", - "libelleAcheminement": "LE CHAMP DE LA PIERRE", - "nomCommune": "LE CHAMP DE LA PIERRE" + "codePostal": "31220", + "codeCommune": "31492", + "libelleAcheminement": "ST JULIEN SUR GARONNE", + "nomCommune": "ST JULIEN SUR GARONNE" }, { - "codePostal": "08130", - "codeCommune": "08364", - "libelleAcheminement": "RILLY SUR AISNE", - "nomCommune": "RILLY SUR AISNE" + "codePostal": "33820", + "codeCommune": "33073", + "libelleAcheminement": "BRAUD ET ST LOUIS", + "nomCommune": "BRAUD ET ST LOUIS" }, { - "codePostal": "26110", - "codeCommune": "26050", - "libelleAcheminement": "BESIGNAN", - "nomCommune": "BESIGNAN" + "codePostal": "46600", + "codeCommune": "46106", + "libelleAcheminement": "FLOIRAC", + "nomCommune": "FLOIRAC" }, { - "codePostal": "37120", - "codeCommune": "37087", - "libelleAcheminement": "COURCOUE", - "nomCommune": "COURCOUE" + "codePostal": "45300", + "codeCommune": "45348", + "libelleAcheminement": "YEVRE LA VILLE", + "nomCommune": "YEVRE LA VILLE" }, { - "codePostal": "61240", - "codeCommune": "61088", - "libelleAcheminement": "CHAMP HAUT", - "nomCommune": "CHAMP HAUT" + "codePostal": "31230", + "codeCommune": "31494", + "libelleAcheminement": "ST LAURENT", + "nomCommune": "ST LAURENT" }, { - "codePostal": "08230", - "codeCommune": "08367", - "libelleAcheminement": "ROCROI", - "nomCommune": "ROCROI" + "codePostal": "33750", + "codeCommune": "33079", + "libelleAcheminement": "CADARSAC", + "nomCommune": "CADARSAC" }, { - "codePostal": "26460", - "codeCommune": "26051", - "libelleAcheminement": "BEZAUDUN SUR BINE", - "nomCommune": "BEZAUDUN SUR BINE" + "codePostal": "46250", + "codeCommune": "46114", + "libelleAcheminement": "FRAYSSINET LE GELAT", + "nomCommune": "FRAYSSINET LE GELAT" }, { - "codePostal": "37500", - "codeCommune": "37088", - "libelleAcheminement": "COUZIERS", - "nomCommune": "COUZIERS" + "codePostal": "45300", + "codeCommune": "45348", + "libelleAcheminement": "YEVRE LA VILLE", + "nomCommune": "YEVRE LA VILLE" }, { - "codePostal": "61140", - "codeCommune": "61096", - "libelleAcheminement": "RIVES D ANDAINE", - "nomCommune": "RIVES D ANDAINE" + "codePostal": "31530", + "codeCommune": "31496", + "libelleAcheminement": "STE LIVRADE", + "nomCommune": "STE LIVRADE" }, { - "codePostal": "08110", - "codeCommune": "08376", - "libelleAcheminement": "SAILLY", - "nomCommune": "SAILLY" + "codePostal": "33360", + "codeCommune": "33085", + "libelleAcheminement": "CAMBLANES ET MEYNAC", + "nomCommune": "CAMBLANES ET MEYNAC" }, { - "codePostal": "26410", - "codeCommune": "26055", - "libelleAcheminement": "BOULC", - "nomCommune": "BOULC" + "codePostal": "46150", + "codeCommune": "46119", + "libelleAcheminement": "GIGOUZAC", + "nomCommune": "GIGOUZAC" }, { - "codePostal": "37220", - "codeCommune": "37090", - "libelleAcheminement": "CRISSAY SUR MANSE", - "nomCommune": "CRISSAY SUR MANSE" + "codePostal": "46140", + "codeCommune": "46005", + "libelleAcheminement": "ANGLARS JUILLAC", + "nomCommune": "ANGLARS JUILLAC" }, { - "codePostal": "61400", - "codeCommune": "61097", - "libelleAcheminement": "LA CHAPELLE MONTLIGEON", - "nomCommune": "LA CHAPELLE MONTLIGEON" + "codePostal": "31110", + "codeCommune": "31508", + "libelleAcheminement": "ST PAUL D OUEIL", + "nomCommune": "ST PAUL D OUEIL" }, { - "codePostal": "08350", - "codeCommune": "08377", - "libelleAcheminement": "ST AIGNAN", - "nomCommune": "ST AIGNAN" + "codePostal": "33550", + "codeCommune": "33093", + "libelleAcheminement": "CAPIAN", + "nomCommune": "CAPIAN" }, { - "codePostal": "26410", - "codeCommune": "26055", - "libelleAcheminement": "BOULC", - "nomCommune": "BOULC" + "codePostal": "46130", + "codeCommune": "46122", + "libelleAcheminement": "GINTRAC", + "nomCommune": "GINTRAC" }, { - "codePostal": "37220", - "codeCommune": "37093", - "libelleAcheminement": "CROUZILLES", - "nomCommune": "CROUZILLES" + "codePostal": "46090", + "codeCommune": "46010", + "libelleAcheminement": "AUJOLS", + "nomCommune": "AUJOLS" }, { - "codePostal": "61270", - "codeCommune": "61100", - "libelleAcheminement": "LA CHAPELLE VIEL", - "nomCommune": "LA CHAPELLE VIEL" + "codePostal": "31230", + "codeCommune": "31522", + "libelleAcheminement": "SALERM", + "nomCommune": "SALERM" }, { - "codePostal": "08310", - "codeCommune": "08379", - "libelleAcheminement": "ST ETIENNE A ARNES", - "nomCommune": "ST ETIENNE A ARNES" + "codePostal": "33840", + "codeCommune": "33095", + "libelleAcheminement": "CAPTIEUX", + "nomCommune": "CAPTIEUX" }, { - "codePostal": "26300", - "codeCommune": "26057", - "libelleAcheminement": "BOURG DE PEAGE", - "nomCommune": "BOURG DE PEAGE" + "codePostal": "46320", + "codeCommune": "46131", + "libelleAcheminement": "GREZES", + "nomCommune": "GREZES" }, { - "codePostal": "37320", - "codeCommune": "37104", - "libelleAcheminement": "ESVRES", - "nomCommune": "ESVRES" + "codePostal": "46600", + "codeCommune": "46016", + "libelleAcheminement": "BALADOU", + "nomCommune": "BALADOU" }, { - "codePostal": "61320", - "codeCommune": "61107", - "libelleAcheminement": "CIRAL", - "nomCommune": "CIRAL" + "codePostal": "31110", + "codeCommune": "31524", + "libelleAcheminement": "SALLES ET PRATVIEL", + "nomCommune": "SALLES ET PRATVIEL" }, { - "codePostal": "08360", - "codeCommune": "08380", - "libelleAcheminement": "ST FERGEUX", - "nomCommune": "ST FERGEUX" + "codePostal": "33540", + "codeCommune": "33105", + "libelleAcheminement": "CASTELVIEL", + "nomCommune": "CASTELVIEL" }, { - "codePostal": "26400", - "codeCommune": "26065", - "libelleAcheminement": "CHABRILLAN", - "nomCommune": "CHABRILLAN" + "codePostal": "46240", + "codeCommune": "46138", + "libelleAcheminement": "COEUR DE CAUSSE", + "nomCommune": "COEUR DE CAUSSE" }, { - "codePostal": "37460", - "codeCommune": "37111", - "libelleAcheminement": "GENILLE", - "nomCommune": "GENILLE" + "codePostal": "46130", + "codeCommune": "46029", + "libelleAcheminement": "BIARS SUR CERE", + "nomCommune": "BIARS SUR CERE" }, { - "codePostal": "61250", - "codeCommune": "61111", - "libelleAcheminement": "COLOMBIERS", - "nomCommune": "COLOMBIERS" + "codePostal": "31350", + "codeCommune": "31528", + "libelleAcheminement": "SAMAN", + "nomCommune": "SAMAN" }, { - "codePostal": "08130", - "codeCommune": "08398", - "libelleAcheminement": "STE VAUBOURG", - "nomCommune": "STE VAUBOURG" + "codePostal": "33640", + "codeCommune": "33109", + "libelleAcheminement": "CASTRES GIRONDE", + "nomCommune": "CASTRES GIRONDE" }, { - "codePostal": "26190", - "codeCommune": "26066", - "libelleAcheminement": "LE CHAFFAL", - "nomCommune": "LE CHAFFAL" + "codePostal": "46120", + "codeCommune": "46139", + "libelleAcheminement": "LABATHUDE", + "nomCommune": "LABATHUDE" }, { - "codePostal": "37350", - "codeCommune": "37114", - "libelleAcheminement": "LA GUERCHE", - "nomCommune": "LA GUERCHE" + "codePostal": "46800", + "codeCommune": "46033", + "libelleAcheminement": "PORTE DU QUERCY", + "nomCommune": "PORTE DU QUERCY" }, { - "codePostal": "61110", - "codeCommune": "61116", - "libelleAcheminement": "SABLONS SUR HUISNE", - "nomCommune": "SABLONS SUR HUISNE" + "codePostal": "31420", + "codeCommune": "31529", + "libelleAcheminement": "SAMOUILLAN", + "nomCommune": "SAMOUILLAN" }, { - "codePostal": "08370", - "codeCommune": "08399", - "libelleAcheminement": "SAPOGNE SUR MARCHE", - "nomCommune": "SAPOGNE SUR MARCHE" + "codePostal": "33490", + "codeCommune": "33111", + "libelleAcheminement": "CAUDROT", + "nomCommune": "CAUDROT" }, { - "codePostal": "26150", - "codeCommune": "26069", - "libelleAcheminement": "CHAMALOC", - "nomCommune": "CHAMALOC" + "codePostal": "46700", + "codeCommune": "46142", + "libelleAcheminement": "LACAPELLE CABANAC", + "nomCommune": "LACAPELLE CABANAC" }, { - "codePostal": "37120", - "codeCommune": "37121", - "libelleAcheminement": "JAULNAY", - "nomCommune": "JAULNAY" + "codePostal": "46120", + "codeCommune": "46036", + "libelleAcheminement": "LE BOUYSSOU", + "nomCommune": "LE BOUYSSOU" }, { - "codePostal": "61110", - "codeCommune": "61116", - "libelleAcheminement": "SABLONS SUR HUISNE", - "nomCommune": "SABLONS SUR HUISNE" + "codePostal": "31460", + "codeCommune": "31534", + "libelleAcheminement": "SAUSSENS", + "nomCommune": "SAUSSENS" }, { - "codePostal": "08400", - "codeCommune": "08410", - "libelleAcheminement": "SEMIDE", - "nomCommune": "SEMIDE" + "codePostal": "33690", + "codeCommune": "33113", + "libelleAcheminement": "CAUVIGNAC", + "nomCommune": "CAUVIGNAC" }, { - "codePostal": "26230", - "codeCommune": "26073", - "libelleAcheminement": "CHANTEMERLE LES GRIGNAN", - "nomCommune": "CHANTEMERLE LES GRIGNAN" + "codePostal": "46230", + "codeCommune": "46148", + "libelleAcheminement": "LALBENQUE", + "nomCommune": "LALBENQUE" }, { - "codePostal": "37300", - "codeCommune": "37122", - "libelleAcheminement": "JOUE LES TOURS", - "nomCommune": "JOUE LES TOURS" + "codePostal": "46100", + "codeCommune": "46052", + "libelleAcheminement": "CAMBOULIT", + "nomCommune": "CAMBOULIT" }, { - "codePostal": "61250", - "codeCommune": "61117", - "libelleAcheminement": "CONDE SUR SARTHE", - "nomCommune": "CONDE SUR SARTHE" + "codePostal": "31370", + "codeCommune": "31538", + "libelleAcheminement": "SAVERES", + "nomCommune": "SAVERES" }, { - "codePostal": "08300", - "codeCommune": "08416", - "libelleAcheminement": "SEUIL", - "nomCommune": "SEUIL" + "codePostal": "33620", + "codeCommune": "33114", + "libelleAcheminement": "CAVIGNAC", + "nomCommune": "CAVIGNAC" }, { - "codePostal": "26260", - "codeCommune": "26077", - "libelleAcheminement": "CHARMES SUR L HERBASSE", - "nomCommune": "CHARMES SUR L HERBASSE" + "codePostal": "46260", + "codeCommune": "46154", + "libelleAcheminement": "LARAMIERE", + "nomCommune": "LARAMIERE" }, { - "codePostal": "37130", - "codeCommune": "37123", - "libelleAcheminement": "LANGEAIS", - "nomCommune": "LANGEAIS" + "codePostal": "46240", + "codeCommune": "46054", + "libelleAcheminement": "CANIAC DU CAUSSE", + "nomCommune": "CANIAC DU CAUSSE" }, { - "codePostal": "61160", - "codeCommune": "61120", - "libelleAcheminement": "COUDEHARD", - "nomCommune": "COUDEHARD" + "codePostal": "31580", + "codeCommune": "31539", + "libelleAcheminement": "SEDEILHAC", + "nomCommune": "SEDEILHAC" }, { - "codePostal": "08380", - "codeCommune": "08420", - "libelleAcheminement": "SIGNY LE PETIT", - "nomCommune": "SIGNY LE PETIT" + "codePostal": "33430", + "codeCommune": "33116", + "libelleAcheminement": "CAZATS", + "nomCommune": "CAZATS" }, { - "codePostal": "26410", - "codeCommune": "26086", - "libelleAcheminement": "CHATILLON EN DIOIS", - "nomCommune": "CHATILLON EN DIOIS" + "codePostal": "46100", + "codeCommune": "46168", + "libelleAcheminement": "LENTILLAC ST BLAISE", + "nomCommune": "LENTILLAC ST BLAISE" }, { - "codePostal": "37460", - "codeCommune": "37127", - "libelleAcheminement": "LE LIEGE", - "nomCommune": "LE LIEGE" + "codePostal": "46100", + "codeCommune": "46057", + "libelleAcheminement": "CARDAILLAC", + "nomCommune": "CARDAILLAC" }, { - "codePostal": "61220", - "codeCommune": "61124", - "libelleAcheminement": "LA COULONCHE", - "nomCommune": "LA COULONCHE" + "codePostal": "31840", + "codeCommune": "31541", + "libelleAcheminement": "SEILH", + "nomCommune": "SEILH" }, { - "codePostal": "08240", - "codeCommune": "08424", - "libelleAcheminement": "SOMMAUTHE", - "nomCommune": "SOMMAUTHE" + "codePostal": "33790", + "codeCommune": "33117", + "libelleAcheminement": "CAZAUGITAT", + "nomCommune": "CAZAUGITAT" }, { - "codePostal": "26410", - "codeCommune": "26086", - "libelleAcheminement": "CHATILLON EN DIOIS", - "nomCommune": "CHATILLON EN DIOIS" + "codePostal": "46260", + "codeCommune": "46179", + "libelleAcheminement": "LUGAGNAC", + "nomCommune": "LUGAGNAC" }, { - "codePostal": "37320", - "codeCommune": "37134", - "libelleAcheminement": "LOUANS", - "nomCommune": "LOUANS" + "codePostal": "46110", + "codeCommune": "46058", + "libelleAcheminement": "CARENNAC", + "nomCommune": "CARENNAC" }, { - "codePostal": "61560", - "codeCommune": "61130", - "libelleAcheminement": "COURGEOUT", - "nomCommune": "COURGEOUT" + "codePostal": "31160", + "codeCommune": "31544", + "libelleAcheminement": "SENGOUAGNET", + "nomCommune": "SENGOUAGNET" }, { - "codePostal": "08250", - "codeCommune": "08425", - "libelleAcheminement": "SOMMERANCE", - "nomCommune": "SOMMERANCE" + "codePostal": "33610", + "codeCommune": "33122", + "libelleAcheminement": "CESTAS", + "nomCommune": "CESTAS" }, { - "codePostal": "26240", - "codeCommune": "26094", - "libelleAcheminement": "CLAVEYSON", - "nomCommune": "CLAVEYSON" + "codePostal": "46140", + "codeCommune": "46182", + "libelleAcheminement": "LUZECH", + "nomCommune": "LUZECH" }, { - "codePostal": "37120", - "codeCommune": "37140", - "libelleAcheminement": "LUZE", - "nomCommune": "LUZE" + "codePostal": "46500", + "codeCommune": "46078", + "libelleAcheminement": "COUZOU", + "nomCommune": "COUZOU" }, { - "codePostal": "61220", - "codeCommune": "61137", - "libelleAcheminement": "CRAMENIL", - "nomCommune": "CRAMENIL" + "codePostal": "31260", + "codeCommune": "31554", + "libelleAcheminement": "TOUILLE", + "nomCommune": "TOUILLE" }, { - "codePostal": "08300", - "codeCommune": "08426", - "libelleAcheminement": "SON", - "nomCommune": "SON" + "codePostal": "33920", + "codeCommune": "33126", + "libelleAcheminement": "CIVRAC DE BLAYE", + "nomCommune": "CIVRAC DE BLAYE" }, { - "codePostal": "26110", - "codeCommune": "26103", - "libelleAcheminement": "CONDORCET", - "nomCommune": "CONDORCET" + "codePostal": "46160", + "codeCommune": "46183", + "libelleAcheminement": "MARCILHAC SUR CELE", + "nomCommune": "MARCILHAC SUR CELE" }, { - "codePostal": "37110", - "codeCommune": "37155", - "libelleAcheminement": "MONTHODON", - "nomCommune": "MONTHODON" + "codePostal": "46090", + "codeCommune": "46095", + "libelleAcheminement": "ESPERE", + "nomCommune": "ESPERE" }, { - "codePostal": "61130", - "codeCommune": "61142", - "libelleAcheminement": "DAME MARIE", - "nomCommune": "DAME MARIE" + "codePostal": "31400", + "codeCommune": "31555", + "libelleAcheminement": "TOULOUSE", + "nomCommune": "TOULOUSE" }, { - "codePostal": "08390", - "codeCommune": "08430", - "libelleAcheminement": "STONNE", - "nomCommune": "STONNE" + "codePostal": "33350", + "codeCommune": "33127", + "libelleAcheminement": "CIVRAC SUR DORDOGNE", + "nomCommune": "CIVRAC SUR DORDOGNE" }, { - "codePostal": "26740", - "codeCommune": "26106", - "libelleAcheminement": "LA COUCOURDE", - "nomCommune": "LA COUCOURDE" + "codePostal": "46350", + "codeCommune": "46186", + "libelleAcheminement": "MASCLAT", + "nomCommune": "MASCLAT" }, { - "codePostal": "37260", - "codeCommune": "37159", - "libelleAcheminement": "MONTS", - "nomCommune": "MONTS" + "codePostal": "46120", + "codeCommune": "46096", + "libelleAcheminement": "ESPEYROUX", + "nomCommune": "ESPEYROUX" }, { - "codePostal": "61270", - "codeCommune": "61151", - "libelleAcheminement": "ECORCEI", - "nomCommune": "ECORCEI" + "codePostal": "31810", + "codeCommune": "31572", + "libelleAcheminement": "VENERQUE", + "nomCommune": "VENERQUE" }, { - "codePostal": "08240", - "codeCommune": "08437", - "libelleAcheminement": "TAILLY", - "nomCommune": "TAILLY" + "codePostal": "33340", + "codeCommune": "33128", + "libelleAcheminement": "CIVRAC EN MEDOC", + "nomCommune": "CIVRAC EN MEDOC" }, { - "codePostal": "26220", - "codeCommune": "26114", - "libelleAcheminement": "DIEULEFIT", - "nomCommune": "DIEULEFIT" + "codePostal": "46700", + "codeCommune": "46187", + "libelleAcheminement": "MAUROUX", + "nomCommune": "MAUROUX" }, { - "codePostal": "37110", - "codeCommune": "37160", - "libelleAcheminement": "MORAND", - "nomCommune": "MORAND" + "codePostal": "46100", + "codeCommune": "46100", + "libelleAcheminement": "FAYCELLES", + "nomCommune": "FAYCELLES" }, { - "codePostal": "61500", - "codeCommune": "61156", - "libelleAcheminement": "ESSAY", - "nomCommune": "ESSAY" + "codePostal": "31320", + "codeCommune": "31575", + "libelleAcheminement": "VIEILLE TOULOUSE", + "nomCommune": "VIEILLE TOULOUSE" }, { - "codePostal": "08430", - "codeCommune": "08454", - "libelleAcheminement": "TOULIGNY", - "nomCommune": "TOULIGNY" + "codePostal": "33540", + "codeCommune": "33129", + "libelleAcheminement": "CLEYRAC", + "nomCommune": "CLEYRAC" }, { - "codePostal": "26780", - "codeCommune": "26121", - "libelleAcheminement": "ESPELUCHE", - "nomCommune": "ESPELUCHE" + "codePostal": "46090", + "codeCommune": "46188", + "libelleAcheminement": "MAXOU", + "nomCommune": "MAXOU" }, { - "codePostal": "37380", - "codeCommune": "37166", - "libelleAcheminement": "NEUILLE LE LIERRE", - "nomCommune": "NEUILLE LE LIERRE" + "codePostal": "46100", + "codeCommune": "46111", + "libelleAcheminement": "FOURMAGNAC", + "nomCommune": "FOURMAGNAC" }, { - "codePostal": "61160", - "codeCommune": "61171", - "libelleAcheminement": "FONTAINE LES BASSETS", - "nomCommune": "FONTAINE LES BASSETS" + "codePostal": "31290", + "codeCommune": "31576", + "libelleAcheminement": "VIEILLEVIGNE", + "nomCommune": "VIEILLEVIGNE" }, { - "codePostal": "08800", - "codeCommune": "08456", - "libelleAcheminement": "TOURNAVAUX", - "nomCommune": "TOURNAVAUX" + "codePostal": "33230", + "codeCommune": "33138", + "libelleAcheminement": "COUTRAS", + "nomCommune": "COUTRAS" }, { - "codePostal": "26340", - "codeCommune": "26122", - "libelleAcheminement": "ESPENEL", - "nomCommune": "ESPENEL" + "codePostal": "46090", + "codeCommune": "46191", + "libelleAcheminement": "MERCUES", + "nomCommune": "MERCUES" }, { - "codePostal": "37360", - "codeCommune": "37167", - "libelleAcheminement": "NEUILLE PONT PIERRE", - "nomCommune": "NEUILLE PONT PIERRE" + "codePostal": "46700", + "codeCommune": "46130", + "libelleAcheminement": "GREZELS", + "nomCommune": "GREZELS" }, { - "codePostal": "61230", - "codeCommune": "61178", - "libelleAcheminement": "LA FRESNAIE FAYEL", - "nomCommune": "LA FRESNAIE FAYEL" + "codePostal": "31480", + "codeCommune": "31577", + "libelleAcheminement": "VIGNAUX", + "nomCommune": "VIGNAUX" }, { - "codePostal": "08110", - "codeCommune": "08459", - "libelleAcheminement": "TREMBLOIS LES CARIGNAN", - "nomCommune": "TREMBLOIS LES CARIGNAN" + "codePostal": "33240", + "codeCommune": "33143", + "libelleAcheminement": "CUBZAC LES PONTS", + "nomCommune": "CUBZAC LES PONTS" }, { - "codePostal": "26800", - "codeCommune": "26124", - "libelleAcheminement": "ETOILE SUR RHONE", - "nomCommune": "ETOILE SUR RHONE" + "codePostal": "46500", + "codeCommune": "46193", + "libelleAcheminement": "MIERS", + "nomCommune": "MIERS" }, { - "codePostal": "37230", - "codeCommune": "37182", - "libelleAcheminement": "PERNAY", - "nomCommune": "PERNAY" + "codePostal": "46240", + "codeCommune": "46138", + "libelleAcheminement": "COEUR DE CAUSSE", + "nomCommune": "COEUR DE CAUSSE" }, { - "codePostal": "61420", - "codeCommune": "61182", - "libelleAcheminement": "GANDELAIN", - "nomCommune": "GANDELAIN" + "codePostal": "31320", + "codeCommune": "31578", + "libelleAcheminement": "VIGOULET AUZIL", + "nomCommune": "VIGOULET AUZIL" }, { - "codePostal": "08150", - "codeCommune": "08460", - "libelleAcheminement": "TREMBLOIS LES ROCROI", - "nomCommune": "TREMBLOIS LES ROCROI" + "codePostal": "33540", + "codeCommune": "33149", + "libelleAcheminement": "DAUBEZE", + "nomCommune": "DAUBEZE" }, { - "codePostal": "26730", - "codeCommune": "26129", - "libelleAcheminement": "EYMEUX", - "nomCommune": "EYMEUX" + "codePostal": "46120", + "codeCommune": "46195", + "libelleAcheminement": "MOLIERES", + "nomCommune": "MOLIERES" }, { - "codePostal": "37260", - "codeCommune": "37186", - "libelleAcheminement": "PONT DE RUAN", - "nomCommune": "PONT DE RUAN" + "codePostal": "46240", + "codeCommune": "46138", + "libelleAcheminement": "COEUR DE CAUSSE", + "nomCommune": "COEUR DE CAUSSE" }, { - "codePostal": "61390", - "codeCommune": "61183", - "libelleAcheminement": "GAPREE", - "nomCommune": "GAPREE" + "codePostal": "31380", + "codeCommune": "31579", + "libelleAcheminement": "VILLARIES", + "nomCommune": "VILLARIES" }, { - "codePostal": "08400", - "codeCommune": "08461", - "libelleAcheminement": "VANDY", - "nomCommune": "VANDY" + "codePostal": "33230", + "codeCommune": "33154", + "libelleAcheminement": "LES EGLISOTTES ET CHALAURES", + "nomCommune": "LES EGLISOTTES ET CHALAURES" }, { - "codePostal": "26240", - "codeCommune": "26133", - "libelleAcheminement": "FAY LE CLOS", - "nomCommune": "FAY LE CLOS" + "codePostal": "46230", + "codeCommune": "46202", + "libelleAcheminement": "MONTDOUMERC", + "nomCommune": "MONTDOUMERC" }, { - "codePostal": "37800", - "codeCommune": "37188", - "libelleAcheminement": "POUZAY", - "nomCommune": "POUZAY" + "codePostal": "46120", + "codeCommune": "46143", + "libelleAcheminement": "LACAPELLE MARIVAL", + "nomCommune": "LACAPELLE MARIVAL" }, { - "codePostal": "61130", - "codeCommune": "61196", - "libelleAcheminement": "BELFORET EN PERCHE", - "nomCommune": "BELFORET EN PERCHE" + "codePostal": "31620", + "codeCommune": "31581", + "libelleAcheminement": "VILLAUDRIC", + "nomCommune": "VILLAUDRIC" }, { - "codePostal": "08240", - "codeCommune": "08470", - "libelleAcheminement": "VERPEL", - "nomCommune": "VERPEL" + "codePostal": "33840", + "codeCommune": "33155", + "libelleAcheminement": "ESCAUDES", + "nomCommune": "ESCAUDES" }, { - "codePostal": "26750", - "codeCommune": "26139", - "libelleAcheminement": "GENISSIEUX", - "nomCommune": "GENISSIEUX" + "codePostal": "46150", + "codeCommune": "46205", + "libelleAcheminement": "MONTGESTY", + "nomCommune": "MONTGESTY" }, { - "codePostal": "37140", - "codeCommune": "37193", - "libelleAcheminement": "RESTIGNE", - "nomCommune": "RESTIGNE" + "codePostal": "46200", + "codeCommune": "46145", + "libelleAcheminement": "LACHAPELLE AUZAC", + "nomCommune": "LACHAPELLE AUZAC" }, { - "codePostal": "61400", - "codeCommune": "61196", - "libelleAcheminement": "BELFORET EN PERCHE", - "nomCommune": "BELFORET EN PERCHE" + "codePostal": "31800", + "codeCommune": "31585", + "libelleAcheminement": "VILLENEUVE DE RIVIERE", + "nomCommune": "VILLENEUVE DE RIVIERE" }, { - "codePostal": "08270", - "codeCommune": "08472", - "libelleAcheminement": "VIEL ST REMY", - "nomCommune": "VIEL ST REMY" + "codePostal": "33820", + "codeCommune": "33159", + "libelleAcheminement": "ETAULIERS", + "nomCommune": "ETAULIERS" }, { - "codePostal": "26530", - "codeCommune": "26143", - "libelleAcheminement": "LE GRAND SERRE", - "nomCommune": "LE GRAND SERRE" + "codePostal": "46330", + "codeCommune": "46212", + "libelleAcheminement": "ORNIAC", + "nomCommune": "ORNIAC" }, { - "codePostal": "37210", - "codeCommune": "37203", - "libelleAcheminement": "ROCHECORBON", - "nomCommune": "ROCHECORBON" + "codePostal": "46240", + "codeCommune": "46151", + "libelleAcheminement": "LAMOTHE CASSEL", + "nomCommune": "LAMOTHE CASSEL" }, { - "codePostal": "61210", - "codeCommune": "61199", - "libelleAcheminement": "HABLOVILLE", - "nomCommune": "HABLOVILLE" + "codePostal": "32360", + "codeCommune": "32003", + "libelleAcheminement": "ANTRAS", + "nomCommune": "ANTRAS" }, { - "codePostal": "08190", - "codeCommune": "08476", - "libelleAcheminement": "VILLERS DEVANT LE THOUR", - "nomCommune": "VILLERS DEVANT LE THOUR" + "codePostal": "33350", + "codeCommune": "33168", + "libelleAcheminement": "FLAUJAGUES", + "nomCommune": "FLAUJAGUES" }, { - "codePostal": "26190", - "codeCommune": "26163", - "libelleAcheminement": "LEONCEL", - "nomCommune": "LEONCEL" + "codePostal": "46300", + "codeCommune": "46241", + "libelleAcheminement": "ROUFFILHAC", + "nomCommune": "ROUFFILHAC" }, { - "codePostal": "37320", - "codeCommune": "37211", - "libelleAcheminement": "ST BRANCHS", - "nomCommune": "ST BRANCHS" + "codePostal": "46160", + "codeCommune": "46155", + "libelleAcheminement": "LARNAGOL", + "nomCommune": "LARNAGOL" }, { - "codePostal": "61130", - "codeCommune": "61207", - "libelleAcheminement": "IGE", - "nomCommune": "IGE" + "codePostal": "32230", + "codeCommune": "32008", + "libelleAcheminement": "ARMENTIEUX", + "nomCommune": "ARMENTIEUX" }, { - "codePostal": "08440", - "codeCommune": "08483", - "libelleAcheminement": "VILLE SUR LUMES", - "nomCommune": "VILLE SUR LUMES" + "codePostal": "33126", + "codeCommune": "33174", + "libelleAcheminement": "FRONSAC", + "nomCommune": "FRONSAC" }, { - "codePostal": "26250", - "codeCommune": "26165", - "libelleAcheminement": "LIVRON SUR DROME", - "nomCommune": "LIVRON SUR DROME" + "codePostal": "46120", + "codeCommune": "46243", + "libelleAcheminement": "RUEYRES", + "nomCommune": "RUEYRES" }, { - "codePostal": "37600", - "codeCommune": "37221", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "46090", + "codeCommune": "46156", + "libelleAcheminement": "BELLEFONT LA RAUZE", + "nomCommune": "BELLEFONT LA RAUZE" }, { - "codePostal": "61140", - "codeCommune": "61211", - "libelleAcheminement": "JUVIGNY VAL D ANDAINE", - "nomCommune": "JUVIGNY VAL D ANDAINE" + "codePostal": "32230", + "codeCommune": "32009", + "libelleAcheminement": "ARMOUS ET CAU", + "nomCommune": "ARMOUS ET CAU" }, { - "codePostal": "08400", - "codeCommune": "08490", - "libelleAcheminement": "VOUZIERS", - "nomCommune": "VOUZIERS" + "codePostal": "33240", + "codeCommune": "33183", + "libelleAcheminement": "GAURIAGUET", + "nomCommune": "GAURIAGUET" }, { - "codePostal": "26300", - "codeCommune": "26173", - "libelleAcheminement": "MARCHES", - "nomCommune": "MARCHES" + "codePostal": "46260", + "codeCommune": "46247", + "libelleAcheminement": "SAILLAC", + "nomCommune": "SAILLAC" }, { - "codePostal": "37380", - "codeCommune": "37224", - "libelleAcheminement": "ST LAURENT EN GATINES", - "nomCommune": "ST LAURENT EN GATINES" + "codePostal": "46360", + "codeCommune": "46162", + "libelleAcheminement": "LAUZES", + "nomCommune": "LAUZES" }, { - "codePostal": "61200", - "codeCommune": "61212", - "libelleAcheminement": "JUVIGNY SUR ORNE", - "nomCommune": "JUVIGNY SUR ORNE" + "codePostal": "32140", + "codeCommune": "32010", + "libelleAcheminement": "ARROUEDE", + "nomCommune": "ARROUEDE" }, { - "codePostal": "08000", - "codeCommune": "08497", - "libelleAcheminement": "WARCQ", - "nomCommune": "WARCQ" + "codePostal": "33920", + "codeCommune": "33184", + "libelleAcheminement": "GENERAC", + "nomCommune": "GENERAC" }, { - "codePostal": "26260", - "codeCommune": "26174", - "libelleAcheminement": "MARGES", - "nomCommune": "MARGES" + "codePostal": "46360", + "codeCommune": "46252", + "libelleAcheminement": "LES PECHS DU VERS", + "nomCommune": "LES PECHS DU VERS" }, { - "codePostal": "37270", - "codeCommune": "37225", - "libelleAcheminement": "ST MARTIN LE BEAU", - "nomCommune": "ST MARTIN LE BEAU" + "codePostal": "46500", + "codeCommune": "46165", + "libelleAcheminement": "LAVERGNE", + "nomCommune": "LAVERGNE" }, { - "codePostal": "61320", - "codeCommune": "61213", - "libelleAcheminement": "LALACELLE", - "nomCommune": "LALACELLE" + "codePostal": "32410", + "codeCommune": "32024", + "libelleAcheminement": "AYGUETINTE", + "nomCommune": "AYGUETINTE" }, { - "codePostal": "09800", - "codeCommune": "09014", - "libelleAcheminement": "ARGEIN", - "nomCommune": "ARGEIN" + "codePostal": "33190", + "codeCommune": "33187", + "libelleAcheminement": "GIRONDE SUR DROPT", + "nomCommune": "GIRONDE SUR DROPT" }, { - "codePostal": "26270", - "codeCommune": "26185", - "libelleAcheminement": "MIRMANDE", - "nomCommune": "MIRMANDE" + "codePostal": "46300", + "codeCommune": "46257", + "libelleAcheminement": "ST CIRQ MADELON", + "nomCommune": "ST CIRQ MADELON" }, { - "codePostal": "37140", - "codeCommune": "37228", - "libelleAcheminement": "ST NICOLAS DE BOURGUEIL", - "nomCommune": "ST NICOLAS DE BOURGUEIL" + "codePostal": "46270", + "codeCommune": "46174", + "libelleAcheminement": "LINAC", + "nomCommune": "LINAC" }, { - "codePostal": "61250", - "codeCommune": "61224", - "libelleAcheminement": "LARRE", - "nomCommune": "LARRE" + "codePostal": "32800", + "codeCommune": "32025", + "libelleAcheminement": "AYZIEU", + "nomCommune": "AYZIEU" }, { - "codePostal": "09460", - "codeCommune": "09020", - "libelleAcheminement": "ARTIGUES", - "nomCommune": "ARTIGUES" + "codePostal": "33590", + "codeCommune": "33193", + "libelleAcheminement": "GRAYAN ET L HOPITAL", + "nomCommune": "GRAYAN ET L HOPITAL" }, { - "codePostal": "26740", - "codeCommune": "26191", - "libelleAcheminement": "MONTBOUCHER SUR JABRON", - "nomCommune": "MONTBOUCHER SUR JABRON" + "codePostal": "46600", + "codeCommune": "46265", + "libelleAcheminement": "ST DENIS LES MARTEL", + "nomCommune": "ST DENIS LES MARTEL" }, { - "codePostal": "37110", - "codeCommune": "37229", - "libelleAcheminement": "ST NICOLAS DES MOTETS", - "nomCommune": "ST NICOLAS DES MOTETS" + "codePostal": "46130", + "codeCommune": "46177", + "libelleAcheminement": "LOUBRESSAC", + "nomCommune": "LOUBRESSAC" }, { - "codePostal": "61420", - "codeCommune": "61228", - "libelleAcheminement": "L OREE D ECOUVES", - "nomCommune": "L OREE D ECOUVES" + "codePostal": "32720", + "codeCommune": "32027", + "libelleAcheminement": "BARCELONNE DU GERS", + "nomCommune": "BARCELONNE DU GERS" }, { - "codePostal": "09100", - "codeCommune": "09022", - "libelleAcheminement": "ARVIGNA", - "nomCommune": "ARVIGNA" + "codePostal": "33420", + "codeCommune": "33196", + "libelleAcheminement": "GUILLAC", + "nomCommune": "GUILLAC" }, { - "codePostal": "26570", - "codeCommune": "26193", - "libelleAcheminement": "MONTBRUN LES BAINS", - "nomCommune": "MONTBRUN LES BAINS" + "codePostal": "46210", + "codeCommune": "46269", + "libelleAcheminement": "ST HILAIRE", + "nomCommune": "ST HILAIRE" }, { - "codePostal": "37130", - "codeCommune": "37232", - "libelleAcheminement": "COTEAUX SUR LOIRE", - "nomCommune": "COTEAUX SUR LOIRE" + "codePostal": "46500", + "codeCommune": "46189", + "libelleAcheminement": "MAYRINHAC LENTOUR", + "nomCommune": "MAYRINHAC LENTOUR" }, { - "codePostal": "61420", - "codeCommune": "61228", - "libelleAcheminement": "L OREE D ECOUVES", - "nomCommune": "L OREE D ECOUVES" + "codePostal": "32350", + "codeCommune": "32029", + "libelleAcheminement": "BARRAN", + "nomCommune": "BARRAN" }, { - "codePostal": "09800", - "codeCommune": "09025", - "libelleAcheminement": "AUCAZEIN", - "nomCommune": "AUCAZEIN" + "codePostal": "33720", + "codeCommune": "33197", + "libelleAcheminement": "GUILLOS", + "nomCommune": "GUILLOS" }, { - "codePostal": "26350", - "codeCommune": "26194", - "libelleAcheminement": "MONTCHENU", - "nomCommune": "MONTCHENU" + "codePostal": "46700", + "codeCommune": "46277", + "libelleAcheminement": "ST MARTIN LE REDON", + "nomCommune": "ST MARTIN LE REDON" }, { - "codePostal": "37140", - "codeCommune": "37232", - "libelleAcheminement": "COTEAUX SUR LOIRE", - "nomCommune": "COTEAUX SUR LOIRE" + "codePostal": "46300", + "codeCommune": "46194", + "libelleAcheminement": "MILHAC", + "nomCommune": "MILHAC" }, { - "codePostal": "61290", - "codeCommune": "61230", - "libelleAcheminement": "LONGNY LES VILLAGES", - "nomCommune": "LONGNY LES VILLAGES" + "codePostal": "32320", + "codeCommune": "32032", + "libelleAcheminement": "BASSOUES", + "nomCommune": "BASSOUES" }, { - "codePostal": "09220", - "codeCommune": "09030", - "libelleAcheminement": "AUZAT", - "nomCommune": "AUZAT" + "codePostal": "33185", + "codeCommune": "33200", + "libelleAcheminement": "LE HAILLAN", + "nomCommune": "LE HAILLAN" }, { - "codePostal": "26120", - "codeCommune": "26206", - "libelleAcheminement": "MONTMEYRAN", - "nomCommune": "MONTMEYRAN" + "codePostal": "46150", + "codeCommune": "46280", + "libelleAcheminement": "ST MEDARD", + "nomCommune": "ST MEDARD" }, { - "codePostal": "37530", - "codeCommune": "37236", - "libelleAcheminement": "ST REGLE", - "nomCommune": "ST REGLE" + "codePostal": "46310", + "codeCommune": "46196", + "libelleAcheminement": "MONTAMEL", + "nomCommune": "MONTAMEL" }, { - "codePostal": "61290", - "codeCommune": "61230", - "libelleAcheminement": "LONGNY LES VILLAGES", - "nomCommune": "LONGNY LES VILLAGES" + "codePostal": "32140", + "codeCommune": "32041", + "libelleAcheminement": "BELLEGARDE", + "nomCommune": "BELLEGARDE" }, { - "codePostal": "09800", - "codeCommune": "09034", - "libelleAcheminement": "BALACET", - "nomCommune": "BALACET" + "codePostal": "33640", + "codeCommune": "33206", + "libelleAcheminement": "ISLE ST GEORGES", + "nomCommune": "ISLE ST GEORGES" }, { - "codePostal": "26800", - "codeCommune": "26208", - "libelleAcheminement": "MONTOISON", - "nomCommune": "MONTOISON" + "codePostal": "46130", + "codeCommune": "46284", + "libelleAcheminement": "ST MICHEL LOUBEJOU", + "nomCommune": "ST MICHEL LOUBEJOU" }, { - "codePostal": "37310", - "codeCommune": "37254", - "libelleAcheminement": "TAUXIGNY ST BAULD", - "nomCommune": "TAUXIGNY ST BAULD" + "codePostal": "46800", + "codeCommune": "46201", + "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", + "nomCommune": "MONTCUQ EN QUERCY BLANC" }, { - "codePostal": "61290", - "codeCommune": "61230", - "libelleAcheminement": "LONGNY LES VILLAGES", - "nomCommune": "LONGNY LES VILLAGES" + "codePostal": "32100", + "codeCommune": "32057", + "libelleAcheminement": "BLAZIERT", + "nomCommune": "BLAZIERT" }, { - "codePostal": "09800", - "codeCommune": "09035", - "libelleAcheminement": "BALAGUERES", - "nomCommune": "BALAGUERES" + "codePostal": "33230", + "codeCommune": "33218", + "libelleAcheminement": "LAGORCE", + "nomCommune": "LAGORCE" }, { - "codePostal": "26510", - "codeCommune": "26209", - "libelleAcheminement": "MONTREAL LES SOURCES", - "nomCommune": "MONTREAL LES SOURCES" + "codePostal": "46200", + "codeCommune": "46293", + "libelleAcheminement": "ST SOZY", + "nomCommune": "ST SOZY" }, { - "codePostal": "37260", - "codeCommune": "37257", - "libelleAcheminement": "THILOUZE", - "nomCommune": "THILOUZE" + "codePostal": "46210", + "codeCommune": "46203", + "libelleAcheminement": "MONTET ET BOUXAL", + "nomCommune": "MONTET ET BOUXAL" }, { - "codePostal": "61380", - "codeCommune": "61244", - "libelleAcheminement": "MAHERU", - "nomCommune": "MAHERU" + "codePostal": "32230", + "codeCommune": "32058", + "libelleAcheminement": "BLOUSSON SERIAN", + "nomCommune": "BLOUSSON SERIAN" }, { - "codePostal": "09000", - "codeCommune": "09044", - "libelleAcheminement": "BAULOU", - "nomCommune": "BAULOU" + "codePostal": "33500", + "codeCommune": "33222", + "libelleAcheminement": "LALANDE DE POMEROL", + "nomCommune": "LALANDE DE POMEROL" }, { - "codePostal": "26240", - "codeCommune": "26216", - "libelleAcheminement": "ST JEAN DE GALAURE", - "nomCommune": "ST JEAN DE GALAURE" + "codePostal": "46400", + "codeCommune": "46295", + "libelleAcheminement": "ST VINCENT DU PENDIT", + "nomCommune": "ST VINCENT DU PENDIT" }, { - "codePostal": "37120", - "codeCommune": "37260", - "libelleAcheminement": "LA TOUR ST GELIN", - "nomCommune": "LA TOUR ST GELIN" + "codePostal": "46500", + "codeCommune": "46213", + "libelleAcheminement": "PADIRAC", + "nomCommune": "PADIRAC" }, { - "codePostal": "61230", - "codeCommune": "61268", - "libelleAcheminement": "MENIL HUBERT EN EXMES", - "nomCommune": "MENIL HUBERT EN EXMES" + "codePostal": "32290", + "codeCommune": "32063", + "libelleAcheminement": "BOUZON GELLENAVE", + "nomCommune": "BOUZON GELLENAVE" }, { - "codePostal": "09000", - "codeCommune": "09066", - "libelleAcheminement": "BRASSAC", - "nomCommune": "BRASSAC" + "codePostal": "33790", + "codeCommune": "33223", + "libelleAcheminement": "LANDERROUAT", + "nomCommune": "LANDERROUAT" }, { - "codePostal": "26240", - "codeCommune": "26216", - "libelleAcheminement": "ST JEAN DE GALAURE", - "nomCommune": "ST JEAN DE GALAURE" + "codePostal": "46140", + "codeCommune": "46296", + "libelleAcheminement": "ST VINCENT RIVE D OLT", + "nomCommune": "ST VINCENT RIVE D OLT" }, { - "codePostal": "37120", - "codeCommune": "37268", - "libelleAcheminement": "VERNEUIL LE CHATEAU", - "nomCommune": "VERNEUIL LE CHATEAU" + "codePostal": "46300", + "codeCommune": "46216", + "libelleAcheminement": "PAYRIGNAC", + "nomCommune": "PAYRIGNAC" }, { - "codePostal": "61560", - "codeCommune": "61277", - "libelleAcheminement": "LA MESNIERE", - "nomCommune": "LA MESNIERE" + "codePostal": "32140", + "codeCommune": "32067", + "libelleAcheminement": "CABAS LOUMASSES", + "nomCommune": "CABAS LOUMASSES" }, { - "codePostal": "09350", - "codeCommune": "09075", - "libelleAcheminement": "CAMPAGNE SUR ARIZE", - "nomCommune": "CAMPAGNE SUR ARIZE" + "codePostal": "33540", + "codeCommune": "33224", + "libelleAcheminement": "LANDERROUET SUR SEGUR", + "nomCommune": "LANDERROUET SUR SEGUR" }, { - "codePostal": "26190", - "codeCommune": "26217", - "libelleAcheminement": "LA MOTTE FANJAS", - "nomCommune": "LA MOTTE FANJAS" + "codePostal": "46340", + "codeCommune": "46297", + "libelleAcheminement": "SALVIAC", + "nomCommune": "SALVIAC" }, { - "codePostal": "37510", - "codeCommune": "37272", - "libelleAcheminement": "VILLANDRY", - "nomCommune": "VILLANDRY" + "codePostal": "46220", + "codeCommune": "46218", + "libelleAcheminement": "PESCADOIRES", + "nomCommune": "PESCADOIRES" }, { - "codePostal": "61440", - "codeCommune": "61278", - "libelleAcheminement": "MESSEI", - "nomCommune": "MESSEI" + "codePostal": "32800", + "codeCommune": "32073", + "libelleAcheminement": "CAMPAGNE D ARMAGNAC", + "nomCommune": "CAMPAGNE D ARMAGNAC" }, { - "codePostal": "09250", - "codeCommune": "09088", - "libelleAcheminement": "CAYCHAX", - "nomCommune": "CAYCHAX" + "codePostal": "33550", + "codeCommune": "33226", + "libelleAcheminement": "LANGOIRAN", + "nomCommune": "LANGOIRAN" }, { - "codePostal": "26110", - "codeCommune": "26220", - "libelleAcheminement": "NYONS", - "nomCommune": "NYONS" + "codePostal": "46140", + "codeCommune": "46301", + "libelleAcheminement": "SAUZET", + "nomCommune": "SAUZET" }, { - "codePostal": "37700", - "codeCommune": "37273", - "libelleAcheminement": "LA VILLE AUX DAMES", - "nomCommune": "LA VILLE AUX DAMES" + "codePostal": "46310", + "codeCommune": "46219", + "libelleAcheminement": "PEYRILLES", + "nomCommune": "PEYRILLES" }, { - "codePostal": "61100", - "codeCommune": "61287", - "libelleAcheminement": "MONTILLY SUR NOIREAU", - "nomCommune": "MONTILLY SUR NOIREAU" + "codePostal": "32290", + "codeCommune": "32081", + "libelleAcheminement": "CASTELNAVET", + "nomCommune": "CASTELNAVET" }, { - "codePostal": "09500", - "codeCommune": "09089", - "libelleAcheminement": "CAZALS DES BAYLES", - "nomCommune": "CAZALS DES BAYLES" + "codePostal": "33138", + "codeCommune": "33229", + "libelleAcheminement": "LANTON", + "nomCommune": "LANTON" }, { - "codePostal": "26400", - "codeCommune": "26221", - "libelleAcheminement": "OMBLEZE", - "nomCommune": "OMBLEZE" + "codePostal": "46190", + "codeCommune": "46311", + "libelleAcheminement": "SOUSCEYRAC EN QUERCY", + "nomCommune": "SOUSCEYRAC EN QUERCY" }, { - "codePostal": "37460", - "codeCommune": "37275", - "libelleAcheminement": "VILLEDOMAIN", - "nomCommune": "VILLEDOMAIN" + "codePostal": "46100", + "codeCommune": "46221", + "libelleAcheminement": "PLANIOLES", + "nomCommune": "PLANIOLES" }, { - "codePostal": "61160", - "codeCommune": "61289", - "libelleAcheminement": "MONT ORMEL", - "nomCommune": "MONT ORMEL" + "codePostal": "32700", + "codeCommune": "32082", + "libelleAcheminement": "CASTERA LECTOUROIS", + "nomCommune": "CASTERA LECTOUROIS" }, { - "codePostal": "09230", - "codeCommune": "09094", - "libelleAcheminement": "CERIZOLS", - "nomCommune": "CERIZOLS" + "codePostal": "33410", + "codeCommune": "33231", + "libelleAcheminement": "LAROQUE", + "nomCommune": "LAROQUE" }, { - "codePostal": "26770", - "codeCommune": "26226", - "libelleAcheminement": "LE PEGUE", - "nomCommune": "LE PEGUE" + "codePostal": "46130", + "codeCommune": "46313", + "libelleAcheminement": "TAURIAC", + "nomCommune": "TAURIAC" }, { - "codePostal": "37210", - "codeCommune": "37281", - "libelleAcheminement": "VOUVRAY", - "nomCommune": "VOUVRAY" + "codePostal": "46260", + "codeCommune": "46230", + "libelleAcheminement": "PUYJOURDES", + "nomCommune": "PUYJOURDES" }, { - "codePostal": "61380", - "codeCommune": "61297", - "libelleAcheminement": "MOULINS LA MARCHE", - "nomCommune": "MOULINS LA MARCHE" + "codePostal": "32340", + "codeCommune": "32085", + "libelleAcheminement": "CASTET ARROUY", + "nomCommune": "CASTET ARROUY" }, { - "codePostal": "09600", - "codeCommune": "09107", - "libelleAcheminement": "DUN", - "nomCommune": "DUN" + "codePostal": "33840", + "codeCommune": "33232", + "libelleAcheminement": "LARTIGUE", + "nomCommune": "LARTIGUE" }, { - "codePostal": "26170", - "codeCommune": "26229", - "libelleAcheminement": "LA PENNE SUR L OUVEZE", - "nomCommune": "LA PENNE SUR L OUVEZE" + "codePostal": "46190", + "codeCommune": "46315", + "libelleAcheminement": "TEYSSIEU", + "nomCommune": "TEYSSIEU" }, { - "codePostal": "38490", - "codeCommune": "38001", - "libelleAcheminement": "LES ABRETS EN DAUPHINE", - "nomCommune": "LES ABRETS EN DAUPHINE" + "codePostal": "46700", + "codeCommune": "46231", + "libelleAcheminement": "PUY L EVEQUE", + "nomCommune": "PUY L EVEQUE" }, { - "codePostal": "61200", - "codeCommune": "61298", - "libelleAcheminement": "MOULINS SUR ORNE", - "nomCommune": "MOULINS SUR ORNE" + "codePostal": "32490", + "codeCommune": "32090", + "libelleAcheminement": "CASTILLON SAVES", + "nomCommune": "CASTILLON SAVES" }, { - "codePostal": "09600", - "codeCommune": "09115", - "libelleAcheminement": "ESCLAGNE", - "nomCommune": "ESCLAGNE" + "codePostal": "33950", + "codeCommune": "33236", + "libelleAcheminement": "LEGE CAP FERRET", + "nomCommune": "LEGE CAP FERRET" }, { - "codePostal": "26120", - "codeCommune": "26232", - "libelleAcheminement": "PEYRUS", - "nomCommune": "PEYRUS" + "codePostal": "46330", + "codeCommune": "46320", + "libelleAcheminement": "TOUR DE FAURE", + "nomCommune": "TOUR DE FAURE" }, { - "codePostal": "38490", - "codeCommune": "38001", - "libelleAcheminement": "LES ABRETS EN DAUPHINE", - "nomCommune": "LES ABRETS EN DAUPHINE" + "codePostal": "46320", + "codeCommune": "46233", + "libelleAcheminement": "QUISSAC", + "nomCommune": "QUISSAC" }, { - "codePostal": "61210", - "codeCommune": "61308", - "libelleAcheminement": "NEUVY AU HOULME", - "nomCommune": "NEUVY AU HOULME" + "codePostal": "32150", + "codeCommune": "32096", + "libelleAcheminement": "CAZAUBON", + "nomCommune": "CAZAUBON" }, { - "codePostal": "09230", - "codeCommune": "09120", - "libelleAcheminement": "FABAS", - "nomCommune": "FABAS" + "codePostal": "33340", + "codeCommune": "33240", + "libelleAcheminement": "LESPARRE MEDOC", + "nomCommune": "LESPARRE MEDOC" }, { - "codePostal": "26110", - "codeCommune": "26238", - "libelleAcheminement": "LES PILLES", - "nomCommune": "LES PILLES" + "codePostal": "47000", + "codeCommune": "47001", + "libelleAcheminement": "AGEN", + "nomCommune": "AGEN" }, { - "codePostal": "38190", - "codeCommune": "38002", - "libelleAcheminement": "LES ADRETS", - "nomCommune": "LES ADRETS" + "codePostal": "46500", + "codeCommune": "46238", + "libelleAcheminement": "RIGNAC", + "nomCommune": "RIGNAC" }, { - "codePostal": "61340", - "codeCommune": "61309", - "libelleAcheminement": "PERCHE EN NOCE", - "nomCommune": "PERCHE EN NOCE" + "codePostal": "32190", + "codeCommune": "32097", + "libelleAcheminement": "CAZAUX D ANGLES", + "nomCommune": "CAZAUX D ANGLES" }, { - "codePostal": "09300", - "codeCommune": "09125", - "libelleAcheminement": "FOUGAX ET BARRINEUF", - "nomCommune": "FOUGAX ET BARRINEUF" + "codePostal": "33360", + "codeCommune": "33245", + "libelleAcheminement": "LIGNAN DE BORDEAUX", + "nomCommune": "LIGNAN DE BORDEAUX" }, { - "codePostal": "26110", - "codeCommune": "26244", - "libelleAcheminement": "LE POET SIGILLAT", - "nomCommune": "LE POET SIGILLAT" + "codePostal": "47190", + "codeCommune": "47004", + "libelleAcheminement": "AIGUILLON", + "nomCommune": "AIGUILLON" }, { - "codePostal": "38190", - "codeCommune": "38002", - "libelleAcheminement": "LES ADRETS", - "nomCommune": "LES ADRETS" + "codePostal": "46120", + "codeCommune": "46242", + "libelleAcheminement": "RUDELLE", + "nomCommune": "RUDELLE" }, { - "codePostal": "61340", - "codeCommune": "61309", - "libelleAcheminement": "PERCHE EN NOCE", - "nomCommune": "PERCHE EN NOCE" + "codePostal": "32500", + "codeCommune": "32101", + "libelleAcheminement": "CERAN", + "nomCommune": "CERAN" }, { - "codePostal": "09800", - "codeCommune": "09129", - "libelleAcheminement": "GALEY", - "nomCommune": "GALEY" + "codePostal": "33790", + "codeCommune": "33247", + "libelleAcheminement": "LISTRAC DE DUREZE", + "nomCommune": "LISTRAC DE DUREZE" }, { - "codePostal": "26160", - "codeCommune": "26251", - "libelleAcheminement": "PORTES EN VALDAINE", - "nomCommune": "PORTES EN VALDAINE" + "codePostal": "47420", + "codeCommune": "47007", + "libelleAcheminement": "ALLONS", + "nomCommune": "ALLONS" }, { - "codePostal": "38470", - "codeCommune": "38004", - "libelleAcheminement": "L ALBENC", - "nomCommune": "L ALBENC" + "codePostal": "46400", + "codeCommune": "46251", + "libelleAcheminement": "ST CERE", + "nomCommune": "ST CERE" }, { - "codePostal": "61370", - "codeCommune": "61330", - "libelleAcheminement": "PLANCHES", - "nomCommune": "PLANCHES" + "codePostal": "32100", + "codeCommune": "32107", + "libelleAcheminement": "CONDOM", + "nomCommune": "CONDOM" }, { - "codePostal": "09110", - "codeCommune": "09140", - "libelleAcheminement": "IGNAUX", - "nomCommune": "IGNAUX" + "codePostal": "33410", + "codeCommune": "33253", + "libelleAcheminement": "LOUPIAC", + "nomCommune": "LOUPIAC" }, { - "codePostal": "26230", - "codeCommune": "26261", - "libelleAcheminement": "REAUVILLE", - "nomCommune": "REAUVILLE" + "codePostal": "47160", + "codeCommune": "47008", + "libelleAcheminement": "AMBRUS", + "nomCommune": "AMBRUS" }, { - "codePostal": "38970", - "codeCommune": "38008", - "libelleAcheminement": "AMBEL", - "nomCommune": "AMBEL" + "codePostal": "46160", + "codeCommune": "46254", + "libelleAcheminement": "ST CHELS", + "nomCommune": "ST CHELS" }, { - "codePostal": "61220", - "codeCommune": "61332", - "libelleAcheminement": "POINTEL", - "nomCommune": "POINTEL" + "codePostal": "32400", + "codeCommune": "32108", + "libelleAcheminement": "CORNEILLAN", + "nomCommune": "CORNEILLAN" }, { - "codePostal": "09100", - "codeCommune": "09145", - "libelleAcheminement": "LES ISSARDS", - "nomCommune": "LES ISSARDS" + "codePostal": "33190", + "codeCommune": "33254", + "libelleAcheminement": "LOUPIAC DE LA REOLE", + "nomCommune": "LOUPIAC DE LA REOLE" }, { - "codePostal": "26570", - "codeCommune": "26263", - "libelleAcheminement": "REILHANETTE", - "nomCommune": "REILHANETTE" + "codePostal": "47370", + "codeCommune": "47011", + "libelleAcheminement": "ANTHE", + "nomCommune": "ANTHE" }, { - "codePostal": "38150", - "codeCommune": "38009", - "libelleAcheminement": "ANJOU", - "nomCommune": "ANJOU" + "codePostal": "46100", + "codeCommune": "46266", + "libelleAcheminement": "ST FELIX", + "nomCommune": "ST FELIX" }, { - "codePostal": "61130", - "codeCommune": "61336", - "libelleAcheminement": "POUVRAI", - "nomCommune": "POUVRAI" + "codePostal": "32160", + "codeCommune": "32109", + "libelleAcheminement": "COULOUME MONDEBAT", + "nomCommune": "COULOUME MONDEBAT" }, { - "codePostal": "09700", - "codeCommune": "09147", - "libelleAcheminement": "LABATUT", - "nomCommune": "LABATUT" + "codePostal": "33760", + "codeCommune": "33258", + "libelleAcheminement": "LUGASSON", + "nomCommune": "LUGASSON" }, { - "codePostal": "26340", - "codeCommune": "26274", - "libelleAcheminement": "ROCHEFOURCHAT", - "nomCommune": "ROCHEFOURCHAT" + "codePostal": "47250", + "codeCommune": "47013", + "libelleAcheminement": "ARGENTON", + "nomCommune": "ARGENTON" }, { - "codePostal": "38460", - "codeCommune": "38010", - "libelleAcheminement": "ANNOISIN CHATELANS", - "nomCommune": "ANNOISIN CHATELANS" + "codePostal": "46400", + "codeCommune": "46271", + "libelleAcheminement": "ST JEAN LESPINASSE", + "nomCommune": "ST JEAN LESPINASSE" }, { - "codePostal": "61210", - "codeCommune": "61339", - "libelleAcheminement": "PUTANGES LE LAC", - "nomCommune": "PUTANGES LE LAC" + "codePostal": "32170", + "codeCommune": "32116", + "libelleAcheminement": "DUFFORT", + "nomCommune": "DUFFORT" }, { - "codePostal": "09200", - "codeCommune": "09149", - "libelleAcheminement": "LACOURT", - "nomCommune": "LACOURT" + "codePostal": "33230", + "codeCommune": "33264", + "libelleAcheminement": "MARANSIN", + "nomCommune": "MARANSIN" }, { - "codePostal": "26170", - "codeCommune": "26278", - "libelleAcheminement": "LA ROCHE SUR LE BUIS", - "nomCommune": "LA ROCHE SUR LE BUIS" + "codePostal": "47800", + "codeCommune": "47014", + "libelleAcheminement": "ARMILLAC", + "nomCommune": "ARMILLAC" }, { - "codePostal": "38630", - "codeCommune": "38022", - "libelleAcheminement": "LES AVENIERES VEYRINS THUELLIN", - "nomCommune": "LES AVENIERES VEYRINS THUELLIN" + "codePostal": "46120", + "codeCommune": "46279", + "libelleAcheminement": "ST MAURICE EN QUERCY", + "nomCommune": "ST MAURICE EN QUERCY" }, { - "codePostal": "61210", - "codeCommune": "61339", - "libelleAcheminement": "PUTANGES LE LAC", - "nomCommune": "PUTANGES LE LAC" + "codePostal": "32810", + "codeCommune": "32117", + "libelleAcheminement": "DURAN", + "nomCommune": "DURAN" }, { - "codePostal": "09500", - "codeCommune": "09150", - "libelleAcheminement": "LAGARDE", - "nomCommune": "LAGARDE" + "codePostal": "33460", + "codeCommune": "33268", + "libelleAcheminement": "MARGAUX CANTENAC", + "nomCommune": "MARGAUX CANTENAC" }, { - "codePostal": "26510", - "codeCommune": "26286", - "libelleAcheminement": "ROUSSIEUX", - "nomCommune": "ROUSSIEUX" + "codePostal": "47120", + "codeCommune": "47018", + "libelleAcheminement": "AURIAC SUR DROPT", + "nomCommune": "AURIAC SUR DROPT" }, { - "codePostal": "38530", - "codeCommune": "38027", - "libelleAcheminement": "BARRAUX", - "nomCommune": "BARRAUX" + "codePostal": "46110", + "codeCommune": "46283", + "libelleAcheminement": "ST MICHEL DE BANNIERES", + "nomCommune": "ST MICHEL DE BANNIERES" }, { - "codePostal": "61210", - "codeCommune": "61339", - "libelleAcheminement": "PUTANGES LE LAC", - "nomCommune": "PUTANGES LE LAC" + "codePostal": "32260", + "codeCommune": "32118", + "libelleAcheminement": "DURBAN", + "nomCommune": "DURBAN" }, { - "codePostal": "09310", - "codeCommune": "09155", - "libelleAcheminement": "LARCAT", - "nomCommune": "LARCAT" + "codePostal": "33790", + "codeCommune": "33277", + "libelleAcheminement": "MASSUGAS", + "nomCommune": "MASSUGAS" }, { - "codePostal": "26420", - "codeCommune": "26290", - "libelleAcheminement": "ST AGNAN EN VERCORS", - "nomCommune": "ST AGNAN EN VERCORS" + "codePostal": "47480", + "codeCommune": "47019", + "libelleAcheminement": "BAJAMONT", + "nomCommune": "BAJAMONT" }, { - "codePostal": "38110", - "codeCommune": "38029", - "libelleAcheminement": "LA BATIE MONTGASCON", - "nomCommune": "LA BATIE MONTGASCON" + "codePostal": "46210", + "codeCommune": "46302", + "libelleAcheminement": "SENAILLAC LATRONQUIERE", + "nomCommune": "SENAILLAC LATRONQUIERE" }, { - "codePostal": "61250", - "codeCommune": "61341", - "libelleAcheminement": "ECOUVES", - "nomCommune": "ECOUVES" + "codePostal": "32140", + "codeCommune": "32122", + "libelleAcheminement": "ESCLASSAN LABASTIDE", + "nomCommune": "ESCLASSAN LABASTIDE" }, { - "codePostal": "09310", - "codeCommune": "09156", - "libelleAcheminement": "LARNAT", - "nomCommune": "LARNAT" + "codePostal": "33210", + "codeCommune": "33279", + "libelleAcheminement": "MAZERES", + "nomCommune": "MAZERES" }, { - "codePostal": "26350", - "codeCommune": "26298", - "libelleAcheminement": "ST CHRISTOPHE ET LE LARIS", - "nomCommune": "ST CHRISTOPHE ET LE LARIS" + "codePostal": "47370", + "codeCommune": "47036", + "libelleAcheminement": "BOURLENS", + "nomCommune": "BOURLENS" }, { - "codePostal": "38140", - "codeCommune": "38030", - "libelleAcheminement": "BEAUCROISSANT", - "nomCommune": "BEAUCROISSANT" + "codePostal": "46240", + "codeCommune": "46304", + "libelleAcheminement": "SENIERGUES", + "nomCommune": "SENIERGUES" }, { - "codePostal": "61270", - "codeCommune": "61342", - "libelleAcheminement": "RAI", - "nomCommune": "RAI" + "codePostal": "32200", + "codeCommune": "32123", + "libelleAcheminement": "ESCORNEBOEUF", + "nomCommune": "ESCORNEBOEUF" }, { - "codePostal": "09230", - "codeCommune": "09158", - "libelleAcheminement": "LASSERRE", - "nomCommune": "LASSERRE" + "codePostal": "33390", + "codeCommune": "33280", + "libelleAcheminement": "MAZION", + "nomCommune": "MAZION" }, { - "codePostal": "26310", - "codeCommune": "26300", - "libelleAcheminement": "ST DIZIER EN DIOIS", - "nomCommune": "ST DIZIER EN DIOIS" + "codePostal": "47210", + "codeCommune": "47037", + "libelleAcheminement": "BOURNEL", + "nomCommune": "BOURNEL" }, { - "codePostal": "38160", - "codeCommune": "38036", - "libelleAcheminement": "BEAUVOIR EN ROYANS", - "nomCommune": "BEAUVOIR EN ROYANS" + "codePostal": "46190", + "codeCommune": "46311", + "libelleAcheminement": "SOUSCEYRAC EN QUERCY", + "nomCommune": "SOUSCEYRAC EN QUERCY" }, { - "codePostal": "61150", - "codeCommune": "61344", - "libelleAcheminement": "RANES", - "nomCommune": "RANES" + "codePostal": "32220", + "codeCommune": "32138", + "libelleAcheminement": "GARRAVET", + "nomCommune": "GARRAVET" }, { - "codePostal": "09350", - "codeCommune": "09172", - "libelleAcheminement": "LOUBAUT", - "nomCommune": "LOUBAUT" + "codePostal": "33540", + "codeCommune": "33283", + "libelleAcheminement": "MESTERRIEUX", + "nomCommune": "MESTERRIEUX" }, { - "codePostal": "26190", - "codeCommune": "26302", - "libelleAcheminement": "STE EULALIE EN ROYANS", - "nomCommune": "STE EULALIE EN ROYANS" + "codePostal": "47420", + "codeCommune": "47039", + "libelleAcheminement": "BOUSSES", + "nomCommune": "BOUSSES" }, { - "codePostal": "38690", - "codeCommune": "38038", - "libelleAcheminement": "BELMONT", - "nomCommune": "BELMONT" + "codePostal": "46120", + "codeCommune": "46319", + "libelleAcheminement": "THEMINETTES", + "nomCommune": "THEMINETTES" }, { - "codePostal": "61210", - "codeCommune": "61349", - "libelleAcheminement": "RI", - "nomCommune": "RI" + "codePostal": "32380", + "codeCommune": "32139", + "libelleAcheminement": "GAUDONVILLE", + "nomCommune": "GAUDONVILLE" }, { - "codePostal": "09120", - "codeCommune": "09173", - "libelleAcheminement": "LOUBENS", - "nomCommune": "LOUBENS" + "codePostal": "33380", + "codeCommune": "33284", + "libelleAcheminement": "MIOS", + "nomCommune": "MIOS" }, { - "codePostal": "26420", - "codeCommune": "26315", - "libelleAcheminement": "ST MARTIN EN VERCORS", - "nomCommune": "ST MARTIN EN VERCORS" + "codePostal": "47600", + "codeCommune": "47045", + "libelleAcheminement": "CALIGNAC", + "nomCommune": "CALIGNAC" }, { - "codePostal": "38142", - "codeCommune": "38040", - "libelleAcheminement": "BESSE", - "nomCommune": "BESSE" + "codePostal": "46700", + "codeCommune": "46321", + "libelleAcheminement": "TOUZAC", + "nomCommune": "TOUZAC" }, { - "codePostal": "61160", - "codeCommune": "61352", - "libelleAcheminement": "RONAI", - "nomCommune": "RONAI" + "codePostal": "32220", + "codeCommune": "32140", + "libelleAcheminement": "GAUJAC", + "nomCommune": "GAUJAC" }, { - "codePostal": "09250", - "codeCommune": "09176", - "libelleAcheminement": "LUZENAC", - "nomCommune": "LUZENAC" + "codePostal": "33190", + "codeCommune": "33294", + "libelleAcheminement": "MORIZES", + "nomCommune": "MORIZES" }, { - "codePostal": "26750", - "codeCommune": "26319", - "libelleAcheminement": "ST MICHEL SUR SAVASSE", - "nomCommune": "ST MICHEL SUR SAVASSE" + "codePostal": "47430", + "codeCommune": "47046", + "libelleAcheminement": "CALONGES", + "nomCommune": "CALONGES" }, { - "codePostal": "38690", - "codeCommune": "38042", - "libelleAcheminement": "BEVENAIS", - "nomCommune": "BEVENAIS" + "codePostal": "46240", + "codeCommune": "46323", + "libelleAcheminement": "USSEL", + "nomCommune": "USSEL" }, { - "codePostal": "61220", - "codeCommune": "61361", - "libelleAcheminement": "ST ANDRE DE BRIOUZE", - "nomCommune": "ST ANDRE DE BRIOUZE" + "codePostal": "32340", + "codeCommune": "32146", + "libelleAcheminement": "GIMBREDE", + "nomCommune": "GIMBREDE" }, { - "codePostal": "09100", - "codeCommune": "09177", - "libelleAcheminement": "MADIERE", - "nomCommune": "MADIERE" + "codePostal": "33420", + "codeCommune": "33301", + "libelleAcheminement": "NAUJAN ET POSTIAC", + "nomCommune": "NAUJAN ET POSTIAC" }, { - "codePostal": "26140", - "codeCommune": "26325", - "libelleAcheminement": "ST RAMBERT D ALBON", - "nomCommune": "ST RAMBERT D ALBON" + "codePostal": "47440", + "codeCommune": "47049", + "libelleAcheminement": "CASSENEUIL", + "nomCommune": "CASSENEUIL" }, { - "codePostal": "38690", - "codeCommune": "38046", - "libelleAcheminement": "BIZONNES", - "nomCommune": "BIZONNES" + "codePostal": "46110", + "codeCommune": "46330", + "libelleAcheminement": "VAYRAC", + "nomCommune": "VAYRAC" }, { - "codePostal": "61150", - "codeCommune": "61371", - "libelleAcheminement": "ST BRICE SOUS RANES", - "nomCommune": "ST BRICE SOUS RANES" + "codePostal": "32200", + "codeCommune": "32147", + "libelleAcheminement": "GIMONT", + "nomCommune": "GIMONT" }, { - "codePostal": "09500", - "codeCommune": "09178", - "libelleAcheminement": "MALEGOUDE", - "nomCommune": "MALEGOUDE" + "codePostal": "33250", + "codeCommune": "33314", + "libelleAcheminement": "PAUILLAC", + "nomCommune": "PAUILLAC" }, { - "codePostal": "26410", - "codeCommune": "26327", - "libelleAcheminement": "ST ROMAN", - "nomCommune": "ST ROMAN" + "codePostal": "47180", + "codeCommune": "47056", + "libelleAcheminement": "CASTELNAU SUR GUPIE", + "nomCommune": "CASTELNAU SUR GUPIE" }, { - "codePostal": "38590", - "codeCommune": "38058", - "libelleAcheminement": "BREZINS", - "nomCommune": "BREZINS" + "codePostal": "47310", + "codeCommune": "47016", + "libelleAcheminement": "AUBIAC", + "nomCommune": "AUBIAC" }, { - "codePostal": "61490", - "codeCommune": "61376", - "libelleAcheminement": "ST CLAIR DE HALOUZE", - "nomCommune": "ST CLAIR DE HALOUZE" + "codePostal": "32160", + "codeCommune": "32163", + "libelleAcheminement": "JU BELLOC", + "nomCommune": "JU BELLOC" }, { - "codePostal": "09350", - "codeCommune": "09186", - "libelleAcheminement": "MERAS", - "nomCommune": "MERAS" + "codePostal": "33240", + "codeCommune": "33317", + "libelleAcheminement": "PERISSAC", + "nomCommune": "PERISSAC" }, { - "codePostal": "26770", - "codeCommune": "26335", - "libelleAcheminement": "SALLES SOUS BOIS", - "nomCommune": "SALLES SOUS BOIS" + "codePostal": "47370", + "codeCommune": "47064", + "libelleAcheminement": "CAZIDEROQUE", + "nomCommune": "CAZIDEROQUE" }, { - "codePostal": "38460", - "codeCommune": "38067", - "libelleAcheminement": "CHAMAGNIEU", - "nomCommune": "CHAMAGNIEU" + "codePostal": "47140", + "codeCommune": "47017", + "libelleAcheminement": "AURADOU", + "nomCommune": "AURADOU" }, { - "codePostal": "61320", - "codeCommune": "61384", - "libelleAcheminement": "ST ELLIER LES BOIS", - "nomCommune": "ST ELLIER LES BOIS" + "codePostal": "32200", + "codeCommune": "32165", + "libelleAcheminement": "JUILLES", + "nomCommune": "JUILLES" }, { - "codePostal": "09400", - "codeCommune": "09192", - "libelleAcheminement": "MIGLOS", - "nomCommune": "MIGLOS" + "codePostal": "33600", + "codeCommune": "33318", + "libelleAcheminement": "PESSAC", + "nomCommune": "PESSAC" }, { - "codePostal": "26270", - "codeCommune": "26337", - "libelleAcheminement": "SAULCE SUR RHONE", - "nomCommune": "SAULCE SUR RHONE" + "codePostal": "47270", + "codeCommune": "47067", + "libelleAcheminement": "CLERMONT SOUBIRAN", + "nomCommune": "CLERMONT SOUBIRAN" }, { - "codePostal": "38530", - "codeCommune": "38075", - "libelleAcheminement": "CHAPAREILLAN", - "nomCommune": "CHAPAREILLAN" + "codePostal": "47130", + "codeCommune": "47022", + "libelleAcheminement": "BAZENS", + "nomCommune": "BAZENS" }, { - "codePostal": "61100", - "codeCommune": "61391", - "libelleAcheminement": "ST GEORGES DES GROSEILLERS", - "nomCommune": "ST GEORGES DES GROSEILLERS" + "codePostal": "32130", + "codeCommune": "32171", + "libelleAcheminement": "LABASTIDE SAVES", + "nomCommune": "LABASTIDE SAVES" }, { - "codePostal": "09130", - "codeCommune": "09195", - "libelleAcheminement": "MONESPLE", - "nomCommune": "MONESPLE" + "codePostal": "33890", + "codeCommune": "33319", + "libelleAcheminement": "PESSAC SUR DORDOGNE", + "nomCommune": "PESSAC SUR DORDOGNE" }, { - "codePostal": "26740", - "codeCommune": "26338", - "libelleAcheminement": "SAUZET", - "nomCommune": "SAUZET" + "codePostal": "47220", + "codeCommune": "47076", + "libelleAcheminement": "CUQ", + "nomCommune": "CUQ" }, { - "codePostal": "38490", - "codeCommune": "38080", - "libelleAcheminement": "CHARANCIEU", - "nomCommune": "CHARANCIEU" + "codePostal": "47290", + "codeCommune": "47023", + "libelleAcheminement": "BEAUGAS", + "nomCommune": "BEAUGAS" }, { - "codePostal": "61390", - "codeCommune": "61398", - "libelleAcheminement": "ST GERMAIN LE VIEUX", - "nomCommune": "ST GERMAIN LE VIEUX" + "codePostal": "32310", + "codeCommune": "32178", + "libelleAcheminement": "LAGARDERE", + "nomCommune": "LAGARDERE" }, { - "codePostal": "09350", - "codeCommune": "09205", - "libelleAcheminement": "MONTFA", - "nomCommune": "MONTFA" + "codePostal": "33570", + "codeCommune": "33320", + "libelleAcheminement": "PETIT PALAIS ET CORNEMPS", + "nomCommune": "PETIT PALAIS ET CORNEMPS" }, { - "codePostal": "26400", - "codeCommune": "26346", - "libelleAcheminement": "SUZE", - "nomCommune": "SUZE" + "codePostal": "47500", + "codeCommune": "47077", + "libelleAcheminement": "CUZORN", + "nomCommune": "CUZORN" }, { - "codePostal": "38790", - "codeCommune": "38081", - "libelleAcheminement": "CHARANTONNAY", - "nomCommune": "CHARANTONNAY" + "codePostal": "47500", + "codeCommune": "47029", + "libelleAcheminement": "BLANQUEFORT SUR BRIOLANCE", + "nomCommune": "BLANQUEFORT SUR BRIOLANCE" }, { - "codePostal": "61270", - "codeCommune": "61406", - "libelleAcheminement": "ST HILAIRE SUR RISLE", - "nomCommune": "ST HILAIRE SUR RISLE" + "codePostal": "32170", + "codeCommune": "32181", + "libelleAcheminement": "LAGUIAN MAZOUS", + "nomCommune": "LAGUIAN MAZOUS" }, { - "codePostal": "09330", - "codeCommune": "09207", - "libelleAcheminement": "MONTGAILLARD", - "nomCommune": "MONTGAILLARD" + "codePostal": "33290", + "codeCommune": "33322", + "libelleAcheminement": "LE PIAN MEDOC", + "nomCommune": "LE PIAN MEDOC" }, { - "codePostal": "26770", - "codeCommune": "26348", - "libelleAcheminement": "TAULIGNAN", - "nomCommune": "TAULIGNAN" + "codePostal": "47350", + "codeCommune": "47088", + "libelleAcheminement": "ESCASSEFORT", + "nomCommune": "ESCASSEFORT" }, { - "codePostal": "38470", - "codeCommune": "38086", - "libelleAcheminement": "CHASSELAY", - "nomCommune": "CHASSELAY" + "codePostal": "47470", + "codeCommune": "47030", + "libelleAcheminement": "BLAYMONT", + "nomCommune": "BLAYMONT" }, { - "codePostal": "61390", - "codeCommune": "61416", - "libelleAcheminement": "ST LEONARD DES PARCS", - "nomCommune": "ST LEONARD DES PARCS" + "codePostal": "32300", + "codeCommune": "32187", + "libelleAcheminement": "LAMAZERE", + "nomCommune": "LAMAZERE" }, { - "codePostal": "09300", - "codeCommune": "09211", - "libelleAcheminement": "MONTSEGUR", - "nomCommune": "MONTSEGUR" + "codePostal": "33720", + "codeCommune": "33327", + "libelleAcheminement": "PODENSAC", + "nomCommune": "PODENSAC" }, { - "codePostal": "26390", - "codeCommune": "26349", - "libelleAcheminement": "TERSANNE", - "nomCommune": "TERSANNE" + "codePostal": "47310", + "codeCommune": "47091", + "libelleAcheminement": "ESTILLAC", + "nomCommune": "ESTILLAC" }, { - "codePostal": "38550", - "codeCommune": "38101", - "libelleAcheminement": "CHEYSSIEU", - "nomCommune": "CHEYSSIEU" + "codePostal": "47240", + "codeCommune": "47032", + "libelleAcheminement": "BON ENCONTRE", + "nomCommune": "BON ENCONTRE" }, { - "codePostal": "61380", - "codeCommune": "61425", - "libelleAcheminement": "ST MARTIN DES PEZERITS", - "nomCommune": "ST MARTIN DES PEZERITS" + "codePostal": "32100", + "codeCommune": "32194", + "libelleAcheminement": "LARRESSINGLE", + "nomCommune": "LARRESSINGLE" }, { - "codePostal": "09500", - "codeCommune": "09213", - "libelleAcheminement": "MOULIN NEUF", - "nomCommune": "MOULIN NEUF" + "codePostal": "33570", + "codeCommune": "33342", + "libelleAcheminement": "PUISSEGUIN", + "nomCommune": "PUISSEGUIN" }, { - "codePostal": "26220", - "codeCommune": "26350", - "libelleAcheminement": "TEYSSIERES", - "nomCommune": "TEYSSIERES" + "codePostal": "47400", + "codeCommune": "47095", + "libelleAcheminement": "FAUILLET", + "nomCommune": "FAUILLET" }, { - "codePostal": "38850", - "codeCommune": "38105", - "libelleAcheminement": "CHIRENS", - "nomCommune": "CHIRENS" + "codePostal": "47290", + "codeCommune": "47033", + "libelleAcheminement": "BOUDY DE BEAUREGARD", + "nomCommune": "BOUDY DE BEAUREGARD" }, { - "codePostal": "61190", - "codeCommune": "61429", - "libelleAcheminement": "CHARENCEY", - "nomCommune": "CHARENCEY" + "codePostal": "32410", + "codeCommune": "32196", + "libelleAcheminement": "LARROQUE ST SERNIN", + "nomCommune": "LARROQUE ST SERNIN" }, { - "codePostal": "09100", - "codeCommune": "09225", - "libelleAcheminement": "PAMIERS", - "nomCommune": "PAMIERS" + "codePostal": "33360", + "codeCommune": "33349", + "libelleAcheminement": "QUINSAC", + "nomCommune": "QUINSAC" }, { - "codePostal": "26160", - "codeCommune": "26352", - "libelleAcheminement": "LA TOUCHE", - "nomCommune": "LA TOUCHE" + "codePostal": "47230", + "codeCommune": "47097", + "libelleAcheminement": "FEUGAROLLES", + "nomCommune": "FEUGAROLLES" }, { - "codePostal": "38460", - "codeCommune": "38109", - "libelleAcheminement": "CHOZEAU", - "nomCommune": "CHOZEAU" + "codePostal": "47310", + "codeCommune": "47040", + "libelleAcheminement": "BRAX", + "nomCommune": "BRAX" }, { - "codePostal": "61410", - "codeCommune": "61439", - "libelleAcheminement": "ST OUEN LE BRISOULT", - "nomCommune": "ST OUEN LE BRISOULT" + "codePostal": "32100", + "codeCommune": "32197", + "libelleAcheminement": "LARROQUE SUR L OSSE", + "nomCommune": "LARROQUE SUR L OSSE" }, { - "codePostal": "09310", - "codeCommune": "09226", - "libelleAcheminement": "PECH", - "nomCommune": "PECH" + "codePostal": "33860", + "codeCommune": "33351", + "libelleAcheminement": "REIGNAC", + "nomCommune": "REIGNAC" }, { - "codePostal": "26340", - "codeCommune": "26368", - "libelleAcheminement": "VERCHENY", - "nomCommune": "VERCHENY" + "codePostal": "47200", + "codeCommune": "47101", + "libelleAcheminement": "FOURQUES SUR GARONNE", + "nomCommune": "FOURQUES SUR GARONNE" }, { - "codePostal": "38470", - "codeCommune": "38117", - "libelleAcheminement": "COGNIN LES GORGES", - "nomCommune": "COGNIN LES GORGES" + "codePostal": "47350", + "codeCommune": "47047", + "libelleAcheminement": "CAMBES", + "nomCommune": "CAMBES" }, { - "codePostal": "61800", - "codeCommune": "61451", - "libelleAcheminement": "ST QUENTIN LES CHARDONNETS", - "nomCommune": "ST QUENTIN LES CHARDONNETS" + "codePostal": "32220", + "codeCommune": "32206", + "libelleAcheminement": "LAYMONT", + "nomCommune": "LAYMONT" }, { - "codePostal": "09300", - "codeCommune": "09227", - "libelleAcheminement": "PEREILLE", - "nomCommune": "PEREILLE" + "codePostal": "33580", + "codeCommune": "33353", + "libelleAcheminement": "RIMONS", + "nomCommune": "RIMONS" }, { - "codePostal": "26220", - "codeCommune": "26373", - "libelleAcheminement": "VESC", - "nomCommune": "VESC" + "codePostal": "47600", + "codeCommune": "47102", + "libelleAcheminement": "FRANCESCAS", + "nomCommune": "FRANCESCAS" }, { - "codePostal": "38138", - "codeCommune": "38131", - "libelleAcheminement": "LES COTES D AREY", - "nomCommune": "LES COTES D AREY" + "codePostal": "47340", + "codeCommune": "47053", + "libelleAcheminement": "CASTELLA", + "nomCommune": "CASTELLA" }, { - "codePostal": "61120", - "codeCommune": "61460", - "libelleAcheminement": "SAP EN AUGE", - "nomCommune": "SAP EN AUGE" + "codePostal": "32240", + "codeCommune": "32211", + "libelleAcheminement": "LIAS D ARMAGNAC", + "nomCommune": "LIAS D ARMAGNAC" }, { - "codePostal": "09460", - "codeCommune": "09237", - "libelleAcheminement": "LE PUCH", - "nomCommune": "LE PUCH" + "codePostal": "33390", + "codeCommune": "33370", + "libelleAcheminement": "ST ANDRONY", + "nomCommune": "ST ANDRONY" }, { - "codePostal": "26560", - "codeCommune": "26375", - "libelleAcheminement": "VILLEFRANCHE LE CHATEAU", - "nomCommune": "VILLEFRANCHE LE CHATEAU" + "codePostal": "47600", + "codeCommune": "47103", + "libelleAcheminement": "FRECHOU", + "nomCommune": "FRECHOU" }, { - "codePostal": "38500", - "codeCommune": "38133", - "libelleAcheminement": "COUBLEVIE", - "nomCommune": "COUBLEVIE" + "codePostal": "47330", + "codeCommune": "47057", + "libelleAcheminement": "CASTILLONNES", + "nomCommune": "CASTILLONNES" }, { - "codePostal": "61500", - "codeCommune": "61464", - "libelleAcheminement": "SEES", - "nomCommune": "SEES" + "codePostal": "32120", + "codeCommune": "32229", + "libelleAcheminement": "MANSEMPUY", + "nomCommune": "MANSEMPUY" }, { - "codePostal": "09400", - "codeCommune": "09241", - "libelleAcheminement": "RABAT LES TROIS SEIGNEURS", - "nomCommune": "RABAT LES TROIS SEIGNEURS" + "codePostal": "33220", + "codeCommune": "33378", + "libelleAcheminement": "ST AVIT ST NAZAIRE", + "nomCommune": "ST AVIT ST NAZAIRE" }, { - "codePostal": "26510", - "codeCommune": "26376", - "libelleAcheminement": "VILLEPERDRIX", - "nomCommune": "VILLEPERDRIX" + "codePostal": "47190", + "codeCommune": "47107", + "libelleAcheminement": "GALAPIAN", + "nomCommune": "GALAPIAN" }, { - "codePostal": "38110", - "codeCommune": "38148", - "libelleAcheminement": "DOLOMIEU", - "nomCommune": "DOLOMIEU" + "codePostal": "47250", + "codeCommune": "47068", + "libelleAcheminement": "COCUMONT", + "nomCommune": "COCUMONT" }, { - "codePostal": "61160", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "32120", + "codeCommune": "32232", + "libelleAcheminement": "MARAVAT", + "nomCommune": "MARAVAT" }, { - "codePostal": "09200", - "codeCommune": "09247", - "libelleAcheminement": "RIVERENERT", - "nomCommune": "RIVERENERT" + "codePostal": "33540", + "codeCommune": "33379", + "libelleAcheminement": "ST BRICE", + "nomCommune": "ST BRICE" }, { - "codePostal": "27400", - "codeCommune": "27003", - "libelleAcheminement": "ACQUIGNY", - "nomCommune": "ACQUIGNY" + "codePostal": "47150", + "codeCommune": "47109", + "libelleAcheminement": "GAVAUDUN", + "nomCommune": "GAVAUDUN" }, { - "codePostal": "38420", - "codeCommune": "38150", - "libelleAcheminement": "DOMENE", - "nomCommune": "DOMENE" + "codePostal": "47180", + "codeCommune": "47074", + "libelleAcheminement": "COUTHURES SUR GARONNE", + "nomCommune": "COUTHURES SUR GARONNE" }, { - "codePostal": "61160", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "32290", + "codeCommune": "32235", + "libelleAcheminement": "MARGOUET MEYMES", + "nomCommune": "MARGOUET MEYMES" }, { - "codePostal": "09350", - "codeCommune": "09253", - "libelleAcheminement": "SABARAT", - "nomCommune": "SABARAT" + "codePostal": "33910", + "codeCommune": "33393", + "libelleAcheminement": "ST DENIS DE PILE", + "nomCommune": "ST DENIS DE PILE" }, { - "codePostal": "27600", - "codeCommune": "27005", - "libelleAcheminement": "AILLY", - "nomCommune": "AILLY" + "codePostal": "47260", + "codeCommune": "47111", + "libelleAcheminement": "GRANGES SUR LOT", + "nomCommune": "GRANGES SUR LOT" }, { - "codePostal": "38380", - "codeCommune": "38155", - "libelleAcheminement": "ENTRE DEUX GUIERS", - "nomCommune": "ENTRE DEUX GUIERS" + "codePostal": "47160", + "codeCommune": "47078", + "libelleAcheminement": "DAMAZAN", + "nomCommune": "DAMAZAN" }, { - "codePostal": "61160", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "32270", + "codeCommune": "32237", + "libelleAcheminement": "MARSAN", + "nomCommune": "MARSAN" }, { - "codePostal": "09120", - "codeCommune": "09256", - "libelleAcheminement": "ST BAUZEIL", - "nomCommune": "ST BAUZEIL" + "codePostal": "33560", + "codeCommune": "33397", + "libelleAcheminement": "STE EULALIE", + "nomCommune": "STE EULALIE" }, { - "codePostal": "27460", - "codeCommune": "27008", - "libelleAcheminement": "ALIZAY", - "nomCommune": "ALIZAY" + "codePostal": "47400", + "codeCommune": "47118", + "libelleAcheminement": "HAUTESVIGNES", + "nomCommune": "HAUTESVIGNES" }, { - "codePostal": "38300", - "codeCommune": "38156", - "libelleAcheminement": "LES EPARRES", - "nomCommune": "LES EPARRES" + "codePostal": "47140", + "codeCommune": "47079", + "libelleAcheminement": "DAUSSE", + "nomCommune": "DAUSSE" }, { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "32400", + "codeCommune": "32245", + "libelleAcheminement": "MAUMUSSON LAGUIAN", + "nomCommune": "MAUMUSSON LAGUIAN" }, { - "codePostal": "09100", - "codeCommune": "09265", - "libelleAcheminement": "ST JEAN DU FALGA", - "nomCommune": "ST JEAN DU FALGA" + "codePostal": "33220", + "codeCommune": "33402", + "libelleAcheminement": "STE FOY LA GRANDE", + "nomCommune": "STE FOY LA GRANDE" }, { - "codePostal": "27400", - "codeCommune": "27014", - "libelleAcheminement": "AMFREVILLE SUR ITON", - "nomCommune": "AMFREVILLE SUR ITON" + "codePostal": "47360", + "codeCommune": "47125", + "libelleAcheminement": "LACEPEDE", + "nomCommune": "LACEPEDE" }, { - "codePostal": "38320", - "codeCommune": "38158", - "libelleAcheminement": "EYBENS", - "nomCommune": "EYBENS" + "codePostal": "47220", + "codeCommune": "47092", + "libelleAcheminement": "FALS", + "nomCommune": "FALS" }, { - "codePostal": "61390", - "codeCommune": "61481", - "libelleAcheminement": "TELLIERES LE PLESSIS", - "nomCommune": "TELLIERES LE PLESSIS" + "codePostal": "32120", + "codeCommune": "32249", + "libelleAcheminement": "MAUVEZIN", + "nomCommune": "MAUVEZIN" }, { - "codePostal": "09800", - "codeCommune": "09267", - "libelleAcheminement": "ST LARY", - "nomCommune": "ST LARY" + "codePostal": "33390", + "codeCommune": "33405", + "libelleAcheminement": "ST GENES DE BLAYE", + "nomCommune": "ST GENES DE BLAYE" }, { - "codePostal": "27600", - "codeCommune": "27022", - "libelleAcheminement": "LE VAL D HAZEY", - "nomCommune": "LE VAL D HAZEY" + "codePostal": "47400", + "codeCommune": "47130", + "libelleAcheminement": "LAGRUERE", + "nomCommune": "LAGRUERE" }, { - "codePostal": "38260", - "codeCommune": "38161", - "libelleAcheminement": "FARAMANS", - "nomCommune": "FARAMANS" + "codePostal": "47400", + "codeCommune": "47110", + "libelleAcheminement": "GONTAUD DE NOGARET", + "nomCommune": "GONTAUD DE NOGARET" }, { - "codePostal": "61800", - "codeCommune": "61486", - "libelleAcheminement": "TINCHEBRAY BOCAGE", - "nomCommune": "TINCHEBRAY BOCAGE" + "codePostal": "32170", + "codeCommune": "32252", + "libelleAcheminement": "MIELAN", + "nomCommune": "MIELAN" }, { - "codePostal": "09300", - "codeCommune": "09281", - "libelleAcheminement": "SAUTEL", - "nomCommune": "SAUTEL" + "codePostal": "33350", + "codeCommune": "33406", + "libelleAcheminement": "ST GENES DE CASTILLON", + "nomCommune": "ST GENES DE CASTILLON" }, { - "codePostal": "27490", - "codeCommune": "27025", - "libelleAcheminement": "AUTHEUIL AUTHOUILLET", - "nomCommune": "AUTHEUIL AUTHOUILLET" + "codePostal": "47230", + "codeCommune": "47143", + "libelleAcheminement": "LAVARDAC", + "nomCommune": "LAVARDAC" }, { - "codePostal": "38110", - "codeCommune": "38162", - "libelleAcheminement": "FAVERGES DE LA TOUR", - "nomCommune": "FAVERGES DE LA TOUR" + "codePostal": "47250", + "codeCommune": "47121", + "libelleAcheminement": "LABASTIDE CASTEL AMOUROUX", + "nomCommune": "LABASTIDE CASTEL AMOUROUX" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "32260", + "codeCommune": "32267", + "libelleAcheminement": "MONFERRAN PLAVES", + "nomCommune": "MONFERRAN PLAVES" }, { - "codePostal": "09700", - "codeCommune": "09282", - "libelleAcheminement": "SAVERDUN", - "nomCommune": "SAVERDUN" + "codePostal": "33670", + "codeCommune": "33408", + "libelleAcheminement": "ST GENES DE LOMBAUD", + "nomCommune": "ST GENES DE LOMBAUD" }, { - "codePostal": "27290", - "codeCommune": "27028", - "libelleAcheminement": "AUTHOU", - "nomCommune": "AUTHOU" + "codePostal": "47800", + "codeCommune": "47144", + "libelleAcheminement": "LAVERGNE", + "nomCommune": "LAVERGNE" }, { - "codePostal": "38530", - "codeCommune": "38166", - "libelleAcheminement": "LA FLACHERE", - "nomCommune": "LA FLACHERE" + "codePostal": "47350", + "codeCommune": "47122", + "libelleAcheminement": "LABRETONIE", + "nomCommune": "LABRETONIE" }, { - "codePostal": "61390", - "codeCommune": "61492", - "libelleAcheminement": "TREMONT", - "nomCommune": "TREMONT" + "codePostal": "32230", + "codeCommune": "32273", + "libelleAcheminement": "MONLEZUN", + "nomCommune": "MONLEZUN" }, { - "codePostal": "09110", - "codeCommune": "09283", - "libelleAcheminement": "SAVIGNAC LES ORMEAUX", - "nomCommune": "SAVIGNAC LES ORMEAUX" + "codePostal": "33760", + "codeCommune": "33409", + "libelleAcheminement": "ST GENIS DU BOIS", + "nomCommune": "ST GENIS DU BOIS" }, { - "codePostal": "27930", - "codeCommune": "27031", - "libelleAcheminement": "AVIRON", - "nomCommune": "AVIRON" + "codePostal": "47390", + "codeCommune": "47145", + "libelleAcheminement": "LAYRAC", + "nomCommune": "LAYRAC" }, { - "codePostal": "38690", - "codeCommune": "38167", - "libelleAcheminement": "FLACHERES", - "nomCommune": "FLACHERES" + "codePostal": "47350", + "codeCommune": "47126", + "libelleAcheminement": "LACHAPELLE", + "nomCommune": "LACHAPELLE" }, { - "codePostal": "61160", - "codeCommune": "61494", - "libelleAcheminement": "TRUN", - "nomCommune": "TRUN" + "codePostal": "32220", + "codeCommune": "32284", + "libelleAcheminement": "MONTEGUT SAVES", + "nomCommune": "MONTEGUT SAVES" }, { - "codePostal": "09110", - "codeCommune": "09298", - "libelleAcheminement": "SORGEAT", - "nomCommune": "SORGEAT" + "codePostal": "33190", + "codeCommune": "33428", + "libelleAcheminement": "ST LAURENT DU PLAN", + "nomCommune": "ST LAURENT DU PLAN" }, { - "codePostal": "27170", - "codeCommune": "27040", - "libelleAcheminement": "BARQUET", - "nomCommune": "BARQUET" + "codePostal": "47360", + "codeCommune": "47155", + "libelleAcheminement": "MADAILLAN", + "nomCommune": "MADAILLAN" }, { - "codePostal": "38080", - "codeCommune": "38172", - "libelleAcheminement": "FOUR", - "nomCommune": "FOUR" + "codePostal": "47320", + "codeCommune": "47127", + "libelleAcheminement": "LAFITTE SUR LOT", + "nomCommune": "LAFITTE SUR LOT" }, { - "codePostal": "61250", - "codeCommune": "61497", - "libelleAcheminement": "VALFRAMBERT", - "nomCommune": "VALFRAMBERT" + "codePostal": "32320", + "codeCommune": "32285", + "libelleAcheminement": "MONTESQUIOU", + "nomCommune": "MONTESQUIOU" }, { - "codePostal": "09240", - "codeCommune": "09304", - "libelleAcheminement": "SUZAN", - "nomCommune": "SUZAN" + "codePostal": "33113", + "codeCommune": "33429", + "libelleAcheminement": "ST LEGER DE BALSON", + "nomCommune": "ST LEGER DE BALSON" }, { - "codePostal": "27230", - "codeCommune": "27042", - "libelleAcheminement": "BARVILLE", - "nomCommune": "BARVILLE" + "codePostal": "47200", + "codeCommune": "47157", + "libelleAcheminement": "MARMANDE", + "nomCommune": "MARMANDE" }, { - "codePostal": "38490", - "codeCommune": "38183", - "libelleAcheminement": "GRANIEU", - "nomCommune": "GRANIEU" + "codePostal": "47170", + "codeCommune": "47134", + "libelleAcheminement": "LANNES", + "nomCommune": "LANNES" }, { - "codePostal": "62121", - "codeCommune": "62005", - "libelleAcheminement": "ACHIET LE GRAND", - "nomCommune": "ACHIET LE GRAND" + "codePostal": "32220", + "codeCommune": "32289", + "libelleAcheminement": "MONTPEZAT", + "nomCommune": "MONTPEZAT" }, { - "codePostal": "09160", - "codeCommune": "09307", - "libelleAcheminement": "TAURIGNAN CASTET", - "nomCommune": "TAURIGNAN CASTET" + "codePostal": "33620", + "codeCommune": "33439", + "libelleAcheminement": "ST MARIENS", + "nomCommune": "ST MARIENS" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "47220", + "codeCommune": "47158", + "libelleAcheminement": "MARMONT PACHAS", + "nomCommune": "MARMONT PACHAS" }, { - "codePostal": "38540", - "codeCommune": "38184", - "libelleAcheminement": "GRENAY", - "nomCommune": "GRENAY" + "codePostal": "47340", + "codeCommune": "47138", + "libelleAcheminement": "LAROQUE TIMBAUT", + "nomCommune": "LAROQUE TIMBAUT" }, { - "codePostal": "62650", - "codeCommune": "62017", - "libelleAcheminement": "AIX EN ERGNY", - "nomCommune": "AIX EN ERGNY" + "codePostal": "32300", + "codeCommune": "32293", + "libelleAcheminement": "MOUCHES", + "nomCommune": "MOUCHES" }, { - "codePostal": "09500", - "codeCommune": "09314", - "libelleAcheminement": "TOURTROL", - "nomCommune": "TOURTROL" + "codePostal": "33490", + "codeCommune": "33444", + "libelleAcheminement": "ST MARTIN DE SESCAS", + "nomCommune": "ST MARTIN DE SESCAS" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "47800", + "codeCommune": "47168", + "libelleAcheminement": "MIRAMONT DE GUYENNE", + "nomCommune": "MIRAMONT DE GUYENNE" }, { - "codePostal": "38320", - "codeCommune": "38188", - "libelleAcheminement": "HERBEYS", - "nomCommune": "HERBEYS" + "codePostal": "47360", + "codeCommune": "47140", + "libelleAcheminement": "LAUGNAC", + "nomCommune": "LAUGNAC" }, { - "codePostal": "62170", - "codeCommune": "62018", - "libelleAcheminement": "AIX EN ISSART", - "nomCommune": "AIX EN ISSART" + "codePostal": "32130", + "codeCommune": "32295", + "libelleAcheminement": "NIZAS", + "nomCommune": "NIZAS" }, { - "codePostal": "09500", - "codeCommune": "09323", - "libelleAcheminement": "VALS", - "nomCommune": "VALS" + "codePostal": "33210", + "codeCommune": "33457", + "libelleAcheminement": "ST PARDON DE CONQUES", + "nomCommune": "ST PARDON DE CONQUES" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "47600", + "codeCommune": "47174", + "libelleAcheminement": "MONCRABEAU", + "nomCommune": "MONCRABEAU" }, { - "codePostal": "38118", - "codeCommune": "38190", - "libelleAcheminement": "HIERES SUR AMBY", - "nomCommune": "HIERES SUR AMBY" + "codePostal": "47200", + "codeCommune": "47150", + "libelleAcheminement": "LONGUEVILLE", + "nomCommune": "LONGUEVILLE" }, { - "codePostal": "62157", - "codeCommune": "62023", - "libelleAcheminement": "ALLOUAGNE", - "nomCommune": "ALLOUAGNE" + "codePostal": "32380", + "codeCommune": "32313", + "libelleAcheminement": "PESSOULENS", + "nomCommune": "PESSOULENS" }, { - "codePostal": "09700", - "codeCommune": "09331", - "libelleAcheminement": "LE VERNET", - "nomCommune": "LE VERNET" + "codePostal": "33760", + "codeCommune": "33464", + "libelleAcheminement": "ST PIERRE DE BAT", + "nomCommune": "ST PIERRE DE BAT" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "47600", + "codeCommune": "47180", + "libelleAcheminement": "MONTAGNAC SUR AUVIGNON", + "nomCommune": "MONTAGNAC SUR AUVIGNON" }, { - "codePostal": "38750", - "codeCommune": "38191", - "libelleAcheminement": "HUEZ", - "nomCommune": "HUEZ" + "codePostal": "47140", + "codeCommune": "47161", + "libelleAcheminement": "MASSELS", + "nomCommune": "MASSELS" }, { - "codePostal": "62164", - "codeCommune": "62025", - "libelleAcheminement": "AMBLETEUSE", - "nomCommune": "AMBLETEUSE" + "codePostal": "32130", + "codeCommune": "32322", + "libelleAcheminement": "POMPIAC", + "nomCommune": "POMPIAC" }, { - "codePostal": "09130", - "codeCommune": "09338", - "libelleAcheminement": "VILLENEUVE DU LATOU", - "nomCommune": "VILLENEUVE DU LATOU" + "codePostal": "33750", + "codeCommune": "33466", + "libelleAcheminement": "ST QUENTIN DE BARON", + "nomCommune": "ST QUENTIN DE BARON" }, { - "codePostal": "27300", - "codeCommune": "27056", - "libelleAcheminement": "BERNAY", - "nomCommune": "BERNAY" + "codePostal": "47130", + "codeCommune": "47186", + "libelleAcheminement": "MONTESQUIEU", + "nomCommune": "MONTESQUIEU" }, { - "codePostal": "38080", - "codeCommune": "38193", - "libelleAcheminement": "L ISLE D ABEAU", - "nomCommune": "L ISLE D ABEAU" + "codePostal": "47210", + "codeCommune": "47164", + "libelleAcheminement": "MAZIERES NARESSE", + "nomCommune": "MAZIERES NARESSE" }, { - "codePostal": "62260", - "codeCommune": "62029", - "libelleAcheminement": "AMETTES", - "nomCommune": "AMETTES" + "codePostal": "32390", + "codeCommune": "32337", + "libelleAcheminement": "PUYSEGUR", + "nomCommune": "PUYSEGUR" }, { - "codePostal": "10140", - "codeCommune": "10005", - "libelleAcheminement": "AMANCE", - "nomCommune": "AMANCE" + "codePostal": "33220", + "codeCommune": "33467", + "libelleAcheminement": "ST QUENTIN DE CAPLONG", + "nomCommune": "ST QUENTIN DE CAPLONG" }, { - "codePostal": "27940", - "codeCommune": "27058", - "libelleAcheminement": "LES TROIS LACS", - "nomCommune": "LES TROIS LACS" + "codePostal": "47200", + "codeCommune": "47191", + "libelleAcheminement": "MONTPOUILLAN", + "nomCommune": "MONTPOUILLAN" }, { - "codePostal": "38270", - "codeCommune": "38198", - "libelleAcheminement": "JARCIEU", - "nomCommune": "JARCIEU" + "codePostal": "47180", + "codeCommune": "47165", + "libelleAcheminement": "MEILHAN SUR GARONNE", + "nomCommune": "MEILHAN SUR GARONNE" }, { - "codePostal": "62223", - "codeCommune": "62037", - "libelleAcheminement": "ANZIN ST AUBIN", - "nomCommune": "ANZIN ST AUBIN" + "codePostal": "32800", + "codeCommune": "32340", + "libelleAcheminement": "REANS", + "nomCommune": "REANS" }, { - "codePostal": "10320", - "codeCommune": "10013", - "libelleAcheminement": "ASSENAY", - "nomCommune": "ASSENAY" + "codePostal": "33240", + "codeCommune": "33470", + "libelleAcheminement": "ST ROMAIN LA VIRVEE", + "nomCommune": "ST ROMAIN LA VIRVEE" }, { - "codePostal": "27660", - "codeCommune": "27059", - "libelleAcheminement": "BERNOUVILLE", - "nomCommune": "BERNOUVILLE" + "codePostal": "47190", + "codeCommune": "47196", + "libelleAcheminement": "NICOLE", + "nomCommune": "NICOLE" }, { - "codePostal": "38560", - "codeCommune": "38200", - "libelleAcheminement": "JARRIE", - "nomCommune": "JARRIE" + "codePostal": "47310", + "codeCommune": "47169", + "libelleAcheminement": "MOIRAX", + "nomCommune": "MOIRAX" }, { - "codePostal": "62610", - "codeCommune": "62038", - "libelleAcheminement": "ARDRES", - "nomCommune": "ARDRES" + "codePostal": "32190", + "codeCommune": "32346", + "libelleAcheminement": "ROQUEBRUNE", + "nomCommune": "ROQUEBRUNE" }, { - "codePostal": "10150", - "codeCommune": "10015", - "libelleAcheminement": "AUBETERRE", - "nomCommune": "AUBETERRE" + "codePostal": "33650", + "codeCommune": "33474", + "libelleAcheminement": "ST SELVE", + "nomCommune": "ST SELVE" }, { - "codePostal": "27520", - "codeCommune": "27062", - "libelleAcheminement": "LES MONTS DU ROUMOIS", - "nomCommune": "LES MONTS DU ROUMOIS" + "codePostal": "47600", + "codeCommune": "47197", + "libelleAcheminement": "NOMDIEU", + "nomCommune": "NOMDIEU" }, { - "codePostal": "38250", - "codeCommune": "38205", - "libelleAcheminement": "LANS EN VERCORS", - "nomCommune": "LANS EN VERCORS" + "codePostal": "47290", + "codeCommune": "47170", + "libelleAcheminement": "MONBAHUS", + "nomCommune": "MONBAHUS" }, { - "codePostal": "62000", - "codeCommune": "62041", - "libelleAcheminement": "ARRAS", - "nomCommune": "ARRAS" + "codePostal": "32390", + "codeCommune": "32347", + "libelleAcheminement": "ROQUEFORT", + "nomCommune": "ROQUEFORT" }, { - "codePostal": "10340", - "codeCommune": "10025", - "libelleAcheminement": "BAGNEUX LA FOSSE", - "nomCommune": "BAGNEUX LA FOSSE" + "codePostal": "33440", + "codeCommune": "33487", + "libelleAcheminement": "ST VINCENT DE PAUL", + "nomCommune": "ST VINCENT DE PAUL" }, { - "codePostal": "27170", - "codeCommune": "27063", - "libelleAcheminement": "BERVILLE LA CAMPAGNE", - "nomCommune": "BERVILLE LA CAMPAGNE" + "codePostal": "47120", + "codeCommune": "47199", + "libelleAcheminement": "PARDAILLAN", + "nomCommune": "PARDAILLAN" }, { - "codePostal": "38660", - "codeCommune": "38214", - "libelleAcheminement": "LUMBIN", - "nomCommune": "LUMBIN" + "codePostal": "47160", + "codeCommune": "47177", + "libelleAcheminement": "MONHEURT", + "nomCommune": "MONHEURT" }, { - "codePostal": "62170", - "codeCommune": "62044", - "libelleAcheminement": "ATTIN", - "nomCommune": "ATTIN" + "codePostal": "32200", + "codeCommune": "32356", + "libelleAcheminement": "ST ANDRE", + "nomCommune": "ST ANDRE" }, { - "codePostal": "10110", - "codeCommune": "10034", - "libelleAcheminement": "BAR SUR SEINE", - "nomCommune": "BAR SUR SEINE" + "codePostal": "33690", + "codeCommune": "33512", + "libelleAcheminement": "SIGALENS", + "nomCommune": "SIGALENS" }, { - "codePostal": "27210", - "codeCommune": "27065", - "libelleAcheminement": "BEUZEVILLE", - "nomCommune": "BEUZEVILLE" + "codePostal": "47210", + "codeCommune": "47200", + "libelleAcheminement": "PARRANQUET", + "nomCommune": "PARRANQUET" }, { - "codePostal": "38470", - "codeCommune": "38216", - "libelleAcheminement": "MALLEVAL EN VERCORS", - "nomCommune": "MALLEVAL EN VERCORS" + "codePostal": "47150", + "codeCommune": "47178", + "libelleAcheminement": "MONSEGUR", + "nomCommune": "MONSEGUR" }, { - "codePostal": "62390", - "codeCommune": "62047", - "libelleAcheminement": "AUBROMETZ", - "nomCommune": "AUBROMETZ" + "codePostal": "32300", + "codeCommune": "32363", + "libelleAcheminement": "STE AURENCE CAZAUX", + "nomCommune": "STE AURENCE CAZAUX" }, { - "codePostal": "10290", - "codeCommune": "10038", - "libelleAcheminement": "BERCENAY LE HAYER", - "nomCommune": "BERCENAY LE HAYER" + "codePostal": "33760", + "codeCommune": "33515", + "libelleAcheminement": "SOULIGNAC", + "nomCommune": "SOULIGNAC" }, { - "codePostal": "27480", - "codeCommune": "27066", - "libelleAcheminement": "BEZU LA FORET", - "nomCommune": "BEZU LA FORET" + "codePostal": "47140", + "codeCommune": "47203", + "libelleAcheminement": "PENNE D AGENAIS", + "nomCommune": "PENNE D AGENAIS" }, { - "codePostal": "38270", - "codeCommune": "38219", - "libelleAcheminement": "MARCOLLIN", - "nomCommune": "MARCOLLIN" + "codePostal": "47350", + "codeCommune": "47189", + "libelleAcheminement": "MONTIGNAC TOUPINERIE", + "nomCommune": "MONTIGNAC TOUPINERIE" }, { - "codePostal": "62179", - "codeCommune": "62054", - "libelleAcheminement": "AUDINGHEN", - "nomCommune": "AUDINGHEN" + "codePostal": "32140", + "codeCommune": "32365", + "libelleAcheminement": "ST BLANCARD", + "nomCommune": "ST BLANCARD" }, { - "codePostal": "10200", - "codeCommune": "10039", - "libelleAcheminement": "BERGERES", - "nomCommune": "BERGERES" + "codePostal": "33790", + "codeCommune": "33516", + "libelleAcheminement": "SOUSSAC", + "nomCommune": "SOUSSAC" }, { - "codePostal": "27700", - "codeCommune": "27070", - "libelleAcheminement": "FRENELLES EN VEXIN", - "nomCommune": "FRENELLES EN VEXIN" + "codePostal": "47380", + "codeCommune": "47206", + "libelleAcheminement": "PINEL HAUTERIVE", + "nomCommune": "PINEL HAUTERIVE" }, { - "codePostal": "38300", - "codeCommune": "38223", - "libelleAcheminement": "MAUBEC", - "nomCommune": "MAUBEC" + "codePostal": "47350", + "codeCommune": "47204", + "libelleAcheminement": "PEYRIERE", + "nomCommune": "PEYRIERE" }, { - "codePostal": "62370", - "codeCommune": "62057", - "libelleAcheminement": "AUDRUICQ", - "nomCommune": "AUDRUICQ" + "codePostal": "32320", + "codeCommune": "32367", + "libelleAcheminement": "ST CHRISTAUD", + "nomCommune": "ST CHRISTAUD" }, { - "codePostal": "10500", - "codeCommune": "10046", - "libelleAcheminement": "BLAINCOURT SUR AUBE", - "nomCommune": "BLAINCOURT SUR AUBE" + "codePostal": "33460", + "codeCommune": "33517", + "libelleAcheminement": "SOUSSANS", + "nomCommune": "SOUSSANS" }, { - "codePostal": "27620", - "codeCommune": "27072", - "libelleAcheminement": "BOIS JEROME ST OUEN", - "nomCommune": "BOIS JEROME ST OUEN" + "codePostal": "47230", + "codeCommune": "47207", + "libelleAcheminement": "POMPIEY", + "nomCommune": "POMPIEY" }, { - "codePostal": "38880", - "codeCommune": "38225", - "libelleAcheminement": "AUTRANS MEAUDRE EN VERCORS", - "nomCommune": "AUTRANS MEAUDRE EN VERCORS" + "codePostal": "47700", + "codeCommune": "47205", + "libelleAcheminement": "PINDERES", + "nomCommune": "PINDERES" }, { - "codePostal": "62127", - "codeCommune": "62061", - "libelleAcheminement": "AVERDOINGT", - "nomCommune": "AVERDOINGT" + "codePostal": "32220", + "codeCommune": "32387", + "libelleAcheminement": "ST LOUBE", + "nomCommune": "ST LOUBE" }, { - "codePostal": "10200", - "codeCommune": "10048", - "libelleAcheminement": "BLIGNY", - "nomCommune": "BLIGNY" + "codePostal": "33320", + "codeCommune": "33519", + "libelleAcheminement": "LE TAILLAN MEDOC", + "nomCommune": "LE TAILLAN MEDOC" }, { - "codePostal": "27330", - "codeCommune": "27075", - "libelleAcheminement": "BOIS NORMAND PRES LYRE", - "nomCommune": "BOIS NORMAND PRES LYRE" + "codePostal": "47360", + "codeCommune": "47213", + "libelleAcheminement": "PRAYSSAS", + "nomCommune": "PRAYSSAS" }, { - "codePostal": "38440", - "codeCommune": "38238", - "libelleAcheminement": "MOIDIEU DETOURBE", - "nomCommune": "MOIDIEU DETOURBE" + "codePostal": "47170", + "codeCommune": "47211", + "libelleAcheminement": "POUDENAS", + "nomCommune": "POUDENAS" }, { - "codePostal": "62127", - "codeCommune": "62070", - "libelleAcheminement": "BAILLEUL AUX CORNAILLES", - "nomCommune": "BAILLEUL AUX CORNAILLES" + "codePostal": "32700", + "codeCommune": "32395", + "libelleAcheminement": "STE MERE", + "nomCommune": "STE MERE" }, { - "codePostal": "10320", - "codeCommune": "10051", - "libelleAcheminement": "BOUILLY", - "nomCommune": "BOUILLY" + "codePostal": "33580", + "codeCommune": "33520", + "libelleAcheminement": "TAILLECAVAT", + "nomCommune": "TAILLECAVAT" }, { - "codePostal": "27120", - "codeCommune": "27081", - "libelleAcheminement": "BONCOURT", - "nomCommune": "BONCOURT" + "codePostal": "47250", + "codeCommune": "47224", + "libelleAcheminement": "ROMESTAING", + "nomCommune": "ROMESTAING" }, { - "codePostal": "38650", - "codeCommune": "38242", - "libelleAcheminement": "MONESTIER DE CLERMONT", - "nomCommune": "MONESTIER DE CLERMONT" + "codePostal": "47800", + "codeCommune": "47218", + "libelleAcheminement": "PUYSSERAMPION", + "nomCommune": "PUYSSERAMPION" }, { - "codePostal": "62123", - "codeCommune": "62072", - "libelleAcheminement": "BAILLEULMONT", - "nomCommune": "BAILLEULMONT" + "codePostal": "32190", + "codeCommune": "32402", + "libelleAcheminement": "ST PAUL DE BAISE", + "nomCommune": "ST PAUL DE BAISE" }, { - "codePostal": "10340", - "codeCommune": "10058", - "libelleAcheminement": "BRAGELOGNE BEAUVOIR", - "nomCommune": "BRAGELOGNE BEAUVOIR" + "codePostal": "33470", + "codeCommune": "33527", + "libelleAcheminement": "LE TEICH", + "nomCommune": "LE TEICH" }, { - "codePostal": "27190", - "codeCommune": "27082", - "libelleAcheminement": "LA BONNEVILLE SUR ITON", - "nomCommune": "LA BONNEVILLE SUR ITON" + "codePostal": "47700", + "codeCommune": "47227", + "libelleAcheminement": "RUFFIAC", + "nomCommune": "RUFFIAC" }, { - "codePostal": "38122", - "codeCommune": "38244", - "libelleAcheminement": "MONSTEROUX MILIEU", - "nomCommune": "MONSTEROUX MILIEU" + "codePostal": "47210", + "codeCommune": "47219", + "libelleAcheminement": "RAYET", + "nomCommune": "RAYET" }, { - "codePostal": "62123", - "codeCommune": "62074", - "libelleAcheminement": "BAILLEULVAL", - "nomCommune": "BAILLEULVAL" + "codePostal": "32450", + "codeCommune": "32412", + "libelleAcheminement": "SARAMON", + "nomCommune": "SARAMON" }, { - "codePostal": "10220", - "codeCommune": "10061", - "libelleAcheminement": "BREVONNES", - "nomCommune": "BREVONNES" + "codePostal": "33420", + "codeCommune": "33531", + "libelleAcheminement": "TIZAC DE CURTON", + "nomCommune": "TIZAC DE CURTON" }, { - "codePostal": "27520", - "codeCommune": "27089", - "libelleAcheminement": "THENOUVILLE", - "nomCommune": "THENOUVILLE" + "codePostal": "47310", + "codeCommune": "47238", + "libelleAcheminement": "STE COLOMBE EN BRUILHOIS", + "nomCommune": "STE COLOMBE EN BRUILHOIS" }, { - "codePostal": "38210", - "codeCommune": "38248", - "libelleAcheminement": "MONTAUD", - "nomCommune": "MONTAUD" + "codePostal": "47160", + "codeCommune": "47220", + "libelleAcheminement": "RAZIMET", + "nomCommune": "RAZIMET" }, { - "codePostal": "62610", - "codeCommune": "62078", - "libelleAcheminement": "BALINGHEM", - "nomCommune": "BALINGHEM" + "codePostal": "32420", + "codeCommune": "32413", + "libelleAcheminement": "SARCOS", + "nomCommune": "SARCOS" }, { - "codePostal": "10140", - "codeCommune": "10062", - "libelleAcheminement": "BRIEL SUR BARSE", - "nomCommune": "BRIEL SUR BARSE" + "codePostal": "33550", + "codeCommune": "33534", + "libelleAcheminement": "LE TOURNE", + "nomCommune": "LE TOURNE" }, { - "codePostal": "27670", - "codeCommune": "27090", - "libelleAcheminement": "BOSROUMOIS", - "nomCommune": "BOSROUMOIS" + "codePostal": "47450", + "codeCommune": "47246", + "libelleAcheminement": "ST HILAIRE DE LUSIGNAN", + "nomCommune": "ST HILAIRE DE LUSIGNAN" }, { - "codePostal": "38890", - "codeCommune": "38250", - "libelleAcheminement": "MONTCARRA", - "nomCommune": "MONTCARRA" + "codePostal": "47170", + "codeCommune": "47221", + "libelleAcheminement": "REAUP LISSE", + "nomCommune": "REAUP LISSE" }, { - "codePostal": "62620", - "codeCommune": "62083", - "libelleAcheminement": "BARLIN", - "nomCommune": "BARLIN" + "codePostal": "32300", + "codeCommune": "32419", + "libelleAcheminement": "SAUVIAC", + "nomCommune": "SAUVIAC" }, { - "codePostal": "10110", - "codeCommune": "10068", - "libelleAcheminement": "BUXEUIL", - "nomCommune": "BUXEUIL" + "codePostal": "33125", + "codeCommune": "33536", + "libelleAcheminement": "LE TUZAN", + "nomCommune": "LE TUZAN" }, { - "codePostal": "27250", - "codeCommune": "27096", - "libelleAcheminement": "LES BOTTEREAUX", - "nomCommune": "LES BOTTEREAUX" + "codePostal": "47120", + "codeCommune": "47247", + "libelleAcheminement": "ST JEAN DE DURAS", + "nomCommune": "ST JEAN DE DURAS" }, { - "codePostal": "38520", - "codeCommune": "38253", - "libelleAcheminement": "LES DEUX ALPES", - "nomCommune": "LES DEUX ALPES" + "codePostal": "47700", + "codeCommune": "47222", + "libelleAcheminement": "LA REUNION", + "nomCommune": "LA REUNION" }, { - "codePostal": "62250", - "codeCommune": "62089", - "libelleAcheminement": "BAZINGHEN", - "nomCommune": "BAZINGHEN" + "codePostal": "32260", + "codeCommune": "32426", + "libelleAcheminement": "SEISSAN", + "nomCommune": "SEISSAN" }, { - "codePostal": "10500", - "codeCommune": "10073", - "libelleAcheminement": "CHALETTE SUR VOIRE", - "nomCommune": "CHALETTE SUR VOIRE" + "codePostal": "33730", + "codeCommune": "33537", + "libelleAcheminement": "UZESTE", + "nomCommune": "UZESTE" }, { - "codePostal": "27930", - "codeCommune": "27099", - "libelleAcheminement": "LE BOULAY MORIN", - "nomCommune": "LE BOULAY MORIN" + "codePostal": "47210", + "codeCommune": "47256", + "libelleAcheminement": "ST MARTIN DE VILLEREAL", + "nomCommune": "ST MARTIN DE VILLEREAL" }, { - "codePostal": "38770", - "codeCommune": "38254", - "libelleAcheminement": "MONTEYNARD", - "nomCommune": "MONTEYNARD" + "codePostal": "47210", + "codeCommune": "47223", + "libelleAcheminement": "RIVES", + "nomCommune": "RIVES" }, { - "codePostal": "62124", - "codeCommune": "62096", - "libelleAcheminement": "BEAUMETZ LES CAMBRAI", - "nomCommune": "BEAUMETZ LES CAMBRAI" + "codePostal": "32230", + "codeCommune": "32427", + "libelleAcheminement": "SEMBOUES", + "nomCommune": "SEMBOUES" }, { - "codePostal": "10100", - "codeCommune": "10114", - "libelleAcheminement": "CRANCEY", - "nomCommune": "CRANCEY" + "codePostal": "33240", + "codeCommune": "33542", + "libelleAcheminement": "VERAC", + "nomCommune": "VERAC" }, { - "codePostal": "27310", - "codeCommune": "27102", - "libelleAcheminement": "BOUQUETOT", - "nomCommune": "BOUQUETOT" + "codePostal": "47270", + "codeCommune": "47269", + "libelleAcheminement": "ST PIERRE DE CLAIRAC", + "nomCommune": "ST PIERRE DE CLAIRAC" }, { - "codePostal": "38350", - "codeCommune": "38264", - "libelleAcheminement": "LA MORTE", - "nomCommune": "LA MORTE" + "codePostal": "47310", + "codeCommune": "47225", + "libelleAcheminement": "ROQUEFORT", + "nomCommune": "ROQUEFORT" }, { - "codePostal": "62217", - "codeCommune": "62099", - "libelleAcheminement": "BEAURAINS", - "nomCommune": "BEAURAINS" + "codePostal": "32120", + "codeCommune": "32436", + "libelleAcheminement": "SOLOMIAC", + "nomCommune": "SOLOMIAC" }, { - "codePostal": "10150", - "codeCommune": "10115", - "libelleAcheminement": "CRENEY PRES TROYES", - "nomCommune": "CRENEY PRES TROYES" + "codePostal": "33123", + "codeCommune": "33544", + "libelleAcheminement": "LE VERDON SUR MER", + "nomCommune": "LE VERDON SUR MER" }, { - "codePostal": "27310", - "codeCommune": "27103", - "libelleAcheminement": "BOURG ACHARD", - "nomCommune": "BOURG ACHARD" + "codePostal": "47120", + "codeCommune": "47271", + "libelleAcheminement": "ST PIERRE SUR DROPT", + "nomCommune": "ST PIERRE SUR DROPT" }, { - "codePostal": "38350", - "codeCommune": "38269", - "libelleAcheminement": "LA MURE D ISERE", - "nomCommune": "LA MURE" + "codePostal": "47800", + "codeCommune": "47226", + "libelleAcheminement": "ROUMAGNE", + "nomCommune": "ROUMAGNE" }, { - "codePostal": "62690", - "codeCommune": "62113", - "libelleAcheminement": "BERLES MONCHEL", - "nomCommune": "BERLES MONCHEL" + "codePostal": "32400", + "codeCommune": "32443", + "libelleAcheminement": "TERMES D ARMAGNAC", + "nomCommune": "TERMES D ARMAGNAC" }, { - "codePostal": "10130", - "codeCommune": "10118", - "libelleAcheminement": "LES CROUTES", - "nomCommune": "LES CROUTES" + "codePostal": "33240", + "codeCommune": "33553", + "libelleAcheminement": "VIRSAC", + "nomCommune": "VIRSAC" }, { - "codePostal": "27230", - "codeCommune": "27106", - "libelleAcheminement": "BOURNAINVILLE FAVEROLLES", - "nomCommune": "BOURNAINVILLE FAVEROLLES" + "codePostal": "47120", + "codeCommune": "47278", + "libelleAcheminement": "ST SERNIN", + "nomCommune": "ST SERNIN" }, { - "codePostal": "38160", - "codeCommune": "38272", - "libelleAcheminement": "MURINAIS", - "nomCommune": "MURINAIS" + "codePostal": "47120", + "codeCommune": "47236", + "libelleAcheminement": "STE COLOMBE DE DURAS", + "nomCommune": "STE COLOMBE DE DURAS" }, { - "codePostal": "62130", - "codeCommune": "62114", - "libelleAcheminement": "BERMICOURT", - "nomCommune": "BERMICOURT" + "codePostal": "32420", + "codeCommune": "32451", + "libelleAcheminement": "TOURNAN", + "nomCommune": "TOURNAN" }, { - "codePostal": "10200", - "codeCommune": "10126", - "libelleAcheminement": "DOLANCOURT", - "nomCommune": "DOLANCOURT" + "codePostal": "34360", + "codeCommune": "34015", + "libelleAcheminement": "ASSIGNAN", + "nomCommune": "ASSIGNAN" }, { - "codePostal": "27580", - "codeCommune": "27108", - "libelleAcheminement": "BOURTH", - "nomCommune": "BOURTH" + "codePostal": "47600", + "codeCommune": "47287", + "libelleAcheminement": "SAUMONT", + "nomCommune": "SAUMONT" }, { - "codePostal": "38220", - "codeCommune": "38279", - "libelleAcheminement": "NOTRE DAME DE MESAGE", - "nomCommune": "NOTRE DAME DE MESAGE" + "codePostal": "47210", + "codeCommune": "47240", + "libelleAcheminement": "ST ETIENNE DE VILLEREAL", + "nomCommune": "ST ETIENNE DE VILLEREAL" }, { - "codePostal": "62170", - "codeCommune": "62116", - "libelleAcheminement": "BERNIEULLES", - "nomCommune": "BERNIEULLES" + "codePostal": "32380", + "codeCommune": "32452", + "libelleAcheminement": "TOURNECOUPE", + "nomCommune": "TOURNECOUPE" }, { - "codePostal": "10220", - "codeCommune": "10129", - "libelleAcheminement": "DOSCHES", - "nomCommune": "DOSCHES" + "codePostal": "34480", + "codeCommune": "34018", + "libelleAcheminement": "AUTIGNAC", + "nomCommune": "AUTIGNAC" }, { - "codePostal": "27570", - "codeCommune": "27115", - "libelleAcheminement": "BREUX SUR AVRE", - "nomCommune": "BREUX SUR AVRE" + "codePostal": "47270", + "codeCommune": "47289", + "libelleAcheminement": "LA SAUVETAT DE SAVERES", + "nomCommune": "LA SAUVETAT DE SAVERES" }, { - "codePostal": "38144", - "codeCommune": "38280", - "libelleAcheminement": "NOTRE DAME DE VAULX", - "nomCommune": "NOTRE DAME DE VAULX" + "codePostal": "47210", + "codeCommune": "47241", + "libelleAcheminement": "ST EUTROPE DE BORN", + "nomCommune": "ST EUTROPE DE BORN" }, { - "codePostal": "62170", - "codeCommune": "62123", - "libelleAcheminement": "BEUSSENT", - "nomCommune": "BEUSSENT" + "codePostal": "32500", + "codeCommune": "32457", + "libelleAcheminement": "URDENS", + "nomCommune": "URDENS" }, { - "codePostal": "10500", - "codeCommune": "10139", - "libelleAcheminement": "EPOTHEMONT", - "nomCommune": "EPOTHEMONT" + "codePostal": "34600", + "codeCommune": "34028", + "libelleAcheminement": "BEDARIEUX", + "nomCommune": "BEDARIEUX" }, { - "codePostal": "27800", - "codeCommune": "27116", - "libelleAcheminement": "BRIONNE", - "nomCommune": "BRIONNE" + "codePostal": "47150", + "codeCommune": "47291", + "libelleAcheminement": "LA SAUVETAT SUR LEDE", + "nomCommune": "LA SAUVETAT SUR LEDE" }, { - "codePostal": "38260", - "codeCommune": "38284", - "libelleAcheminement": "ORNACIEUX BALBINS", - "nomCommune": "ORNACIEUX BALBINS" + "codePostal": "47250", + "codeCommune": "47244", + "libelleAcheminement": "STE GEMME MARTAILLAC", + "nomCommune": "STE GEMME MARTAILLAC" }, { - "codePostal": "62250", - "codeCommune": "62125", - "libelleAcheminement": "BEUVREQUEN", - "nomCommune": "BEUVREQUEN" + "codePostal": "32190", + "codeCommune": "32462", + "libelleAcheminement": "VIC FEZENSAC", + "nomCommune": "VIC FEZENSAC" }, { - "codePostal": "10360", - "codeCommune": "10141", - "libelleAcheminement": "ESSOYES", - "nomCommune": "ESSOYES" + "codePostal": "34220", + "codeCommune": "34034", + "libelleAcheminement": "BOISSET", + "nomCommune": "BOISSET" }, { - "codePostal": "27120", - "codeCommune": "27123", - "libelleAcheminement": "CAILLOUET ORGEVILLE", - "nomCommune": "CAILLOUET ORGEVILLE" + "codePostal": "47220", + "codeCommune": "47293", + "libelleAcheminement": "SAUVETERRE ST DENIS", + "nomCommune": "SAUVETERRE ST DENIS" }, { - "codePostal": "38520", - "codeCommune": "38285", - "libelleAcheminement": "ORNON", - "nomCommune": "ORNON" + "codePostal": "47120", + "codeCommune": "47245", + "libelleAcheminement": "ST GERAUD", + "nomCommune": "ST GERAUD" }, { - "codePostal": "62650", - "codeCommune": "62127", - "libelleAcheminement": "BEZINGHEM", - "nomCommune": "BEZINGHEM" + "codePostal": "33120", + "codeCommune": "33009", + "libelleAcheminement": "ARCACHON", + "nomCommune": "ARCACHON" }, { - "codePostal": "10190", - "codeCommune": "10142", - "libelleAcheminement": "ESTISSAC", - "nomCommune": "ESTISSAC" + "codePostal": "34700", + "codeCommune": "34036", + "libelleAcheminement": "LE BOSC", + "nomCommune": "LE BOSC" }, { - "codePostal": "27180", - "codeCommune": "27132", - "libelleAcheminement": "CAUGE", - "nomCommune": "CAUGE" + "codePostal": "47310", + "codeCommune": "47300", + "libelleAcheminement": "SERIGNAC SUR GARONNE", + "nomCommune": "SERIGNAC SUR GARONNE" }, { - "codePostal": "38260", - "codeCommune": "38291", - "libelleAcheminement": "PAJAY", - "nomCommune": "PAJAY" + "codePostal": "47270", + "codeCommune": "47248", + "libelleAcheminement": "ST JEAN DE THURAC", + "nomCommune": "ST JEAN DE THURAC" }, { - "codePostal": "62450", - "codeCommune": "62129", - "libelleAcheminement": "BIEFVILLERS LES BAPAUME", - "nomCommune": "BIEFVILLERS LES BAPAUME" + "codePostal": "33240", + "codeCommune": "33018", + "libelleAcheminement": "VAL DE VIRVEE", + "nomCommune": "VAL DE VIRVEE" }, { - "codePostal": "10150", - "codeCommune": "10149", - "libelleAcheminement": "FEUGES", - "nomCommune": "FEUGES" + "codePostal": "34160", + "codeCommune": "34043", + "libelleAcheminement": "BUZIGNARGUES", + "nomCommune": "BUZIGNARGUES" }, { - "codePostal": "27270", - "codeCommune": "27138", - "libelleAcheminement": "CHAMBLAC", - "nomCommune": "CHAMBLAC" + "codePostal": "47170", + "codeCommune": "47302", + "libelleAcheminement": "SOS", + "nomCommune": "SOS" }, { - "codePostal": "38730", - "codeCommune": "38292", - "libelleAcheminement": "VILLAGES DU LAC DE PALADRU", - "nomCommune": "VILLAGES DU LAC DE PALADRU" + "codePostal": "47160", + "codeCommune": "47251", + "libelleAcheminement": "ST LEON", + "nomCommune": "ST LEON" }, { - "codePostal": "62121", - "codeCommune": "62131", - "libelleAcheminement": "BIHUCOURT", - "nomCommune": "BIHUCOURT" + "codePostal": "33980", + "codeCommune": "33019", + "libelleAcheminement": "AUDENGE", + "nomCommune": "AUDENGE" }, { - "codePostal": "10220", - "codeCommune": "10165", - "libelleAcheminement": "GERAUDOT", - "nomCommune": "GERAUDOT" + "codePostal": "34330", + "codeCommune": "34046", + "libelleAcheminement": "CAMBON ET SALVERGUES", + "nomCommune": "CAMBON ET SALVERGUES" }, { - "codePostal": "27270", - "codeCommune": "27138", - "libelleAcheminement": "CHAMBLAC", - "nomCommune": "CHAMBLAC" + "codePostal": "47110", + "codeCommune": "47306", + "libelleAcheminement": "LE TEMPLE SUR LOT", + "nomCommune": "LE TEMPLE SUR LOT" }, { - "codePostal": "38490", - "codeCommune": "38296", - "libelleAcheminement": "LE PASSAGE", - "nomCommune": "LE PASSAGE" + "codePostal": "47170", + "codeCommune": "47258", + "libelleAcheminement": "STE MAURE DE PEYRIAC", + "nomCommune": "STE MAURE DE PEYRIAC" }, { - "codePostal": "62270", - "codeCommune": "62137", - "libelleAcheminement": "BLANGERVAL BLANGERMONT", - "nomCommune": "BLANGERVAL BLANGERMONT" + "codePostal": "33190", + "codeCommune": "33031", + "libelleAcheminement": "BASSANNE", + "nomCommune": "BASSANNE" }, { - "codePostal": "10500", - "codeCommune": "10171", - "libelleAcheminement": "HAMPIGNY", - "nomCommune": "HAMPIGNY" + "codePostal": "34260", + "codeCommune": "34049", + "libelleAcheminement": "CAMPLONG", + "nomCommune": "CAMPLONG" }, { - "codePostal": "27250", - "codeCommune": "27156", - "libelleAcheminement": "CHERONVILLIERS", - "nomCommune": "CHERONVILLIERS" + "codePostal": "47400", + "codeCommune": "47310", + "libelleAcheminement": "TONNEINS", + "nomCommune": "TONNEINS" }, { - "codePostal": "38270", - "codeCommune": "38307", - "libelleAcheminement": "PISIEU", - "nomCommune": "PISIEU" + "codePostal": "47220", + "codeCommune": "47262", + "libelleAcheminement": "ST NICOLAS DE LA BALERME", + "nomCommune": "ST NICOLAS DE LA BALERME" }, { - "codePostal": "62770", - "codeCommune": "62138", - "libelleAcheminement": "BLANGY SUR TERNOISE", - "nomCommune": "BLANGY SUR TERNOISE" + "codePostal": "33230", + "codeCommune": "33034", + "libelleAcheminement": "BAYAS", + "nomCommune": "BAYAS" }, { - "codePostal": "10330", - "codeCommune": "10180", - "libelleAcheminement": "JONCREUIL", - "nomCommune": "JONCREUIL" + "codePostal": "34210", + "codeCommune": "34054", + "libelleAcheminement": "CASSAGNOLES", + "nomCommune": "CASSAGNOLES" }, { - "codePostal": "27160", - "codeCommune": "27157", - "libelleAcheminement": "MARBOIS", - "nomCommune": "MARBOIS" + "codePostal": "47380", + "codeCommune": "47319", + "libelleAcheminement": "VILLEBRAMAR", + "nomCommune": "VILLEBRAMAR" }, { - "codePostal": "38590", - "codeCommune": "38308", - "libelleAcheminement": "PLAN", - "nomCommune": "PLAN" + "codePostal": "47200", + "codeCommune": "47263", + "libelleAcheminement": "ST PARDOUX DU BREUIL", + "nomCommune": "ST PARDOUX DU BREUIL" }, { - "codePostal": "62170", - "codeCommune": "62150", - "libelleAcheminement": "BOISJEAN", - "nomCommune": "BOISJEAN" + "codePostal": "33130", + "codeCommune": "33039", + "libelleAcheminement": "BEGLES", + "nomCommune": "BEGLES" }, { - "codePostal": "10140", - "codeCommune": "10183", - "libelleAcheminement": "JUVANZE", - "nomCommune": "JUVANZE" + "codePostal": "34170", + "codeCommune": "34057", + "libelleAcheminement": "CASTELNAU LE LEZ", + "nomCommune": "CASTELNAU LE LEZ" }, { - "codePostal": "27400", - "codeCommune": "27184", - "libelleAcheminement": "CRASVILLE", - "nomCommune": "CRASVILLE" + "codePostal": "48800", + "codeCommune": "48004", + "libelleAcheminement": "ALTIER", + "nomCommune": "ALTIER" }, { - "codePostal": "38350", - "codeCommune": "38313", - "libelleAcheminement": "PONSONNAS", - "nomCommune": "PONSONNAS" + "codePostal": "47800", + "codeCommune": "47264", + "libelleAcheminement": "ST PARDOUX ISAAC", + "nomCommune": "ST PARDOUX ISAAC" }, { - "codePostal": "62270", - "codeCommune": "62154", - "libelleAcheminement": "BONNIERES", - "nomCommune": "BONNIERES" + "codePostal": "33410", + "codeCommune": "33040", + "libelleAcheminement": "BEGUEY", + "nomCommune": "BEGUEY" }, { - "codePostal": "10500", - "codeCommune": "10189", - "libelleAcheminement": "LASSICOURT", - "nomCommune": "LASSICOURT" + "codePostal": "34460", + "codeCommune": "34074", + "libelleAcheminement": "CESSENON SUR ORB", + "nomCommune": "CESSENON SUR ORB" }, { - "codePostal": "27490", - "codeCommune": "27191", - "libelleAcheminement": "CLEF VALLEE D EURE", - "nomCommune": "CLEF VALLEE D EURE" + "codePostal": "48130", + "codeCommune": "48009", + "libelleAcheminement": "PEYRE EN AUBRAC", + "nomCommune": "PEYRE EN AUBRAC" }, { - "codePostal": "38390", - "codeCommune": "38320", - "libelleAcheminement": "PORCIEU AMBLAGNIEU", - "nomCommune": "PORCIEU AMBLAGNIEU" + "codePostal": "47270", + "codeCommune": "47274", + "libelleAcheminement": "ST ROMAIN LE NOBLE", + "nomCommune": "ST ROMAIN LE NOBLE" }, { - "codePostal": "62860", - "codeCommune": "62164", - "libelleAcheminement": "BOURLON", - "nomCommune": "BOURLON" + "codePostal": "33750", + "codeCommune": "33049", + "libelleAcheminement": "BEYCHAC ET CAILLAU", + "nomCommune": "BEYCHAC ET CAILLAU" }, { - "codePostal": "10700", - "codeCommune": "10195", - "libelleAcheminement": "LHUITRE", - "nomCommune": "LHUITRE" + "codePostal": "34210", + "codeCommune": "34075", + "libelleAcheminement": "CESSERAS", + "nomCommune": "CESSERAS" }, { - "codePostal": "27490", - "codeCommune": "27191", - "libelleAcheminement": "CLEF VALLEE D EURE", - "nomCommune": "CLEF VALLEE D EURE" + "codePostal": "48130", + "codeCommune": "48009", + "libelleAcheminement": "PEYRE EN AUBRAC", + "nomCommune": "PEYRE EN AUBRAC" }, { - "codePostal": "38470", - "codeCommune": "38330", - "libelleAcheminement": "QUINCIEU", - "nomCommune": "QUINCIEU" + "codePostal": "47220", + "codeCommune": "47279", + "libelleAcheminement": "ST SIXTE", + "nomCommune": "ST SIXTE" }, { - "codePostal": "62172", - "codeCommune": "62170", - "libelleAcheminement": "BOUVIGNY BOYEFFLES", - "nomCommune": "BOUVIGNY BOYEFFLES" + "codePostal": "33340", + "codeCommune": "33055", + "libelleAcheminement": "BLAIGNAN PRIGNAC", + "nomCommune": "BLAIGNAN PRIGNAC" }, { - "codePostal": "10320", - "codeCommune": "10198", - "libelleAcheminement": "LIREY", - "nomCommune": "LIREY" + "codePostal": "34980", + "codeCommune": "34082", + "libelleAcheminement": "COMBAILLAUX", + "nomCommune": "COMBAILLAUX" }, { - "codePostal": "27490", - "codeCommune": "27191", - "libelleAcheminement": "CLEF VALLEE D EURE", - "nomCommune": "CLEF VALLEE D EURE" + "codePostal": "48130", + "codeCommune": "48009", + "libelleAcheminement": "PEYRE EN AUBRAC", + "nomCommune": "PEYRE EN AUBRAC" }, { - "codePostal": "38110", - "codeCommune": "38341", - "libelleAcheminement": "ROCHETOIRIN", - "nomCommune": "ROCHETOIRIN" + "codePostal": "47420", + "codeCommune": "47286", + "libelleAcheminement": "SAUMEJAN", + "nomCommune": "SAUMEJAN" }, { - "codePostal": "62128", - "codeCommune": "62172", - "libelleAcheminement": "BOYELLES", - "nomCommune": "BOYELLES" + "codePostal": "33540", + "codeCommune": "33057", + "libelleAcheminement": "BLASIMON", + "nomCommune": "BLASIMON" }, { - "codePostal": "10140", - "codeCommune": "10200", - "libelleAcheminement": "LA LOGE AUX CHEVRES", - "nomCommune": "LA LOGE AUX CHEVRES" + "codePostal": "34920", + "codeCommune": "34090", + "libelleAcheminement": "LE CRES", + "nomCommune": "LE CRES" }, { - "codePostal": "27700", - "codeCommune": "27194", - "libelleAcheminement": "CUVERVILLE", - "nomCommune": "CUVERVILLE" + "codePostal": "48800", + "codeCommune": "48015", + "libelleAcheminement": "PIED DE BORNE", + "nomCommune": "PIED DE BORNE" }, { - "codePostal": "38150", - "codeCommune": "38344", - "libelleAcheminement": "ROUSSILLON", - "nomCommune": "ROUSSILLON" + "codePostal": "47410", + "codeCommune": "47296", + "libelleAcheminement": "SEGALAS", + "nomCommune": "SEGALAS" }, { - "codePostal": "62117", - "codeCommune": "62173", - "libelleAcheminement": "BREBIERES", - "nomCommune": "BREBIERES" + "codePostal": "33670", + "codeCommune": "33059", + "libelleAcheminement": "BLESIGNAC", + "nomCommune": "BLESIGNAC" }, { - "codePostal": "10170", - "codeCommune": "10207", - "libelleAcheminement": "LONGUEVILLE SUR AUBE", - "nomCommune": "LONGUEVILLE SUR AUBE" + "codePostal": "34190", + "codeCommune": "34099", + "libelleAcheminement": "FERRIERES LES VERRERIES", + "nomCommune": "FERRIERES LES VERRERIES" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "48190", + "codeCommune": "48027", + "libelleAcheminement": "MONT LOZERE ET GOULET", + "nomCommune": "MONT LOZERE ET GOULET" }, { - "codePostal": "38940", - "codeCommune": "38347", - "libelleAcheminement": "ROYBON", - "nomCommune": "ROYBON" + "codePostal": "47360", + "codeCommune": "47297", + "libelleAcheminement": "SEMBAS", + "nomCommune": "SEMBAS" }, { - "codePostal": "62170", - "codeCommune": "62176", - "libelleAcheminement": "BREXENT ENOCQ", - "nomCommune": "BREXENT ENOCQ" + "codePostal": "33100", + "codeCommune": "33063", + "libelleAcheminement": "BORDEAUX", + "nomCommune": "BORDEAUX" }, { - "codePostal": "10140", - "codeCommune": "10217", - "libelleAcheminement": "MAISON DES CHAMPS", - "nomCommune": "MAISON DES CHAMPS" + "codePostal": "34320", + "codeCommune": "34103", + "libelleAcheminement": "FONTES", + "nomCommune": "FONTES" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "48000", + "codeCommune": "48029", + "libelleAcheminement": "LE BORN", + "nomCommune": "LE BORN" }, { - "codePostal": "38300", - "codeCommune": "38348", - "libelleAcheminement": "RUY MONTCEAU", - "nomCommune": "RUY MONTCEAU" + "codePostal": "47430", + "codeCommune": "47298", + "libelleAcheminement": "SENESTIS", + "nomCommune": "SENESTIS" }, { - "codePostal": "62130", - "codeCommune": "62180", - "libelleAcheminement": "BRIAS", - "nomCommune": "BRIAS" + "codePostal": "33200", + "codeCommune": "33063", + "libelleAcheminement": "BORDEAUX", + "nomCommune": "BORDEAUX" }, { - "codePostal": "10200", - "codeCommune": "10219", - "libelleAcheminement": "MAISONS LES SOULAINES", - "nomCommune": "MAISONS LES SOULAINES" + "codePostal": "34700", + "codeCommune": "34106", + "libelleAcheminement": "FOZIERES", + "nomCommune": "FOZIERES" }, { - "codePostal": "27230", - "codeCommune": "27208", - "libelleAcheminement": "DURANVILLE", - "nomCommune": "DURANVILLE" + "codePostal": "48310", + "codeCommune": "48031", + "libelleAcheminement": "BRION", + "nomCommune": "BRION" }, { - "codePostal": "38680", - "codeCommune": "38356", - "libelleAcheminement": "ST ANDRE EN ROYANS", - "nomCommune": "ST ANDRE EN ROYANS" + "codePostal": "47410", + "codeCommune": "47299", + "libelleAcheminement": "SERIGNAC PEBOUDOU", + "nomCommune": "SERIGNAC PEBOUDOU" }, { - "codePostal": "62390", - "codeCommune": "62182", - "libelleAcheminement": "BUIRE AU BOIS", - "nomCommune": "BUIRE AU BOIS" + "codePostal": "33300", + "codeCommune": "33063", + "libelleAcheminement": "BORDEAUX", + "nomCommune": "BORDEAUX" }, { - "codePostal": "10500", - "codeCommune": "10221", - "libelleAcheminement": "MAIZIERES LES BRIENNE", - "nomCommune": "MAIZIERES LES BRIENNE" + "codePostal": "34110", + "codeCommune": "34108", + "libelleAcheminement": "FRONTIGNAN", + "nomCommune": "FRONTIGNAN" }, { - "codePostal": "27110", - "codeCommune": "27212", - "libelleAcheminement": "ECAUVILLE", - "nomCommune": "ECAUVILLE" + "codePostal": "48500", + "codeCommune": "48034", + "libelleAcheminement": "LA CANOURGUE", + "nomCommune": "LA CANOURGUE" }, { - "codePostal": "38350", - "codeCommune": "38361", - "libelleAcheminement": "ST AREY", - "nomCommune": "ST AREY" + "codePostal": "47370", + "codeCommune": "47312", + "libelleAcheminement": "TOURNON D AGENAIS", + "nomCommune": "TOURNON D AGENAIS" }, { - "codePostal": "62870", - "codeCommune": "62183", - "libelleAcheminement": "BUIRE LE SEC", - "nomCommune": "BUIRE LE SEC" + "codePostal": "33190", + "codeCommune": "33066", + "libelleAcheminement": "BOURDELLES", + "nomCommune": "BOURDELLES" }, { - "codePostal": "10170", - "codeCommune": "10233", - "libelleAcheminement": "MERY SUR SEINE", - "nomCommune": "MERY SUR SEINE" + "codePostal": "34190", + "codeCommune": "34111", + "libelleAcheminement": "GANGES", + "nomCommune": "GANGES" }, { - "codePostal": "27510", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "48500", + "codeCommune": "48034", + "libelleAcheminement": "LA CANOURGUE", + "nomCommune": "LA CANOURGUE" }, { - "codePostal": "38118", - "codeCommune": "38365", - "libelleAcheminement": "ST BAUDILLE DE LA TOUR", - "nomCommune": "ST BAUDILLE DE LA TOUR" + "codePostal": "47380", + "codeCommune": "47313", + "libelleAcheminement": "TOURTRES", + "nomCommune": "TOURTRES" }, { - "codePostal": "62350", - "codeCommune": "62195", - "libelleAcheminement": "CALONNE SUR LA LYS", - "nomCommune": "CALONNE SUR LA LYS" + "codePostal": "33710", + "codeCommune": "33067", + "libelleAcheminement": "BOURG SUR GIRONDE", + "nomCommune": "BOURG" }, { - "codePostal": "10190", - "codeCommune": "10237", - "libelleAcheminement": "MESNIL ST LOUP", - "nomCommune": "MESNIL ST LOUP" + "codePostal": "34130", + "codeCommune": "34127", + "libelleAcheminement": "LANSARGUES", + "nomCommune": "LANSARGUES" }, { - "codePostal": "27630", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "48600", + "codeCommune": "48038", + "libelleAcheminement": "BEL AIR VAL D ANCE", + "nomCommune": "BEL AIR VAL D ANCE" }, { - "codePostal": "38710", - "codeCommune": "38366", - "libelleAcheminement": "ST BAUDILLE ET PIPET", - "nomCommune": "ST BAUDILLE ET PIPET" + "codePostal": "47140", + "codeCommune": "47315", + "libelleAcheminement": "TRENTELS", + "nomCommune": "TRENTELS" }, { - "codePostal": "62690", - "codeCommune": "62199", - "libelleAcheminement": "CAMBLAIN L ABBE", - "nomCommune": "CAMBLAIN L ABBE" + "codePostal": "33113", + "codeCommune": "33068", + "libelleAcheminement": "BOURIDEYS", + "nomCommune": "BOURIDEYS" }, { - "codePostal": "10210", - "codeCommune": "10241", - "libelleAcheminement": "METZ ROBERT", - "nomCommune": "METZ ROBERT" + "codePostal": "34480", + "codeCommune": "34130", + "libelleAcheminement": "LAURENS", + "nomCommune": "LAURENS" }, { - "codePostal": "27150", - "codeCommune": "27226", - "libelleAcheminement": "ETREPAGNY", - "nomCommune": "ETREPAGNY" + "codePostal": "48230", + "codeCommune": "48039", + "libelleAcheminement": "CHANAC", + "nomCommune": "CHANAC" }, { - "codePostal": "38110", - "codeCommune": "38369", - "libelleAcheminement": "STE BLANDINE", - "nomCommune": "STE BLANDINE" + "codePostal": "47400", + "codeCommune": "47316", + "libelleAcheminement": "VARES", + "nomCommune": "VARES" }, { - "codePostal": "62270", - "codeCommune": "62208", - "libelleAcheminement": "CANETTEMONT", - "nomCommune": "CANETTEMONT" + "codePostal": "33240", + "codeCommune": "33082", + "libelleAcheminement": "CADILLAC EN FRONSADAIS", + "nomCommune": "CADILLAC EN FRONSADAIS" }, { - "codePostal": "10140", - "codeCommune": "10252", - "libelleAcheminement": "MONTMARTIN LE HAUT", - "nomCommune": "MONTMARTIN LE HAUT" + "codePostal": "34710", + "codeCommune": "34135", + "libelleAcheminement": "LESPIGNAN", + "nomCommune": "LESPIGNAN" }, { - "codePostal": "27110", - "codeCommune": "27241", - "libelleAcheminement": "FEUGUEROLLES", - "nomCommune": "FEUGUEROLLES" + "codePostal": "48000", + "codeCommune": "48042", + "libelleAcheminement": "CHASTEL NOUVEL", + "nomCommune": "CHASTEL NOUVEL" }, { - "codePostal": "38620", - "codeCommune": "38386", - "libelleAcheminement": "ST GEOIRE EN VALDAINE", - "nomCommune": "ST GEOIRE EN VALDAINE" + "codePostal": "47120", + "codeCommune": "47321", + "libelleAcheminement": "VILLENEUVE DE DURAS", + "nomCommune": "VILLENEUVE DE DURAS" }, { - "codePostal": "62140", - "codeCommune": "62212", - "libelleAcheminement": "CAPELLE LES HESDIN", - "nomCommune": "CAPELLE LES HESDIN" + "codePostal": "33660", + "codeCommune": "33088", + "libelleAcheminement": "CAMPS SUR L ISLE", + "nomCommune": "CAMPS SUR L ISLE" }, { - "codePostal": "10330", - "codeCommune": "10253", - "libelleAcheminement": "MONTMORENCY BEAUFORT", - "nomCommune": "MONTMORENCY BEAUFORT" + "codePostal": "34120", + "codeCommune": "34136", + "libelleAcheminement": "LEZIGNAN LA CEBE", + "nomCommune": "LEZIGNAN LA CEBE" }, { - "codePostal": "27480", - "codeCommune": "27245", - "libelleAcheminement": "FLEURY LA FORET", - "nomCommune": "FLEURY LA FORET" + "codePostal": "48300", + "codeCommune": "48048", + "libelleAcheminement": "CHEYLARD L EVEQUE", + "nomCommune": "CHEYLARD L EVEQUE" }, { - "codePostal": "38790", - "codeCommune": "38389", - "libelleAcheminement": "ST GEORGES D ESPERANCHE", - "nomCommune": "ST GEORGES D ESPERANCHE" + "codePostal": "47300", + "codeCommune": "47323", + "libelleAcheminement": "VILLENEUVE SUR LOT", + "nomCommune": "VILLENEUVE SUR LOT" }, { - "codePostal": "62260", - "codeCommune": "62217", - "libelleAcheminement": "CAUCHY A LA TOUR", - "nomCommune": "CAUCHY A LA TOUR" + "codePostal": "33220", + "codeCommune": "33094", + "libelleAcheminement": "CAPLONG", + "nomCommune": "CAPLONG" }, { - "codePostal": "10150", - "codeCommune": "10256", - "libelleAcheminement": "MONTSUZAIN", - "nomCommune": "MONTSUZAIN" + "codePostal": "34400", + "codeCommune": "34145", + "libelleAcheminement": "LUNEL", + "nomCommune": "LUNEL" }, { - "codePostal": "27380", - "codeCommune": "27247", - "libelleAcheminement": "FLIPOU", - "nomCommune": "FLIPOU" + "codePostal": "48190", + "codeCommune": "48053", + "libelleAcheminement": "CUBIERES", + "nomCommune": "CUBIERES" }, { - "codePostal": "38460", - "codeCommune": "38392", - "libelleAcheminement": "ST HILAIRE DE BRENS", - "nomCommune": "ST HILAIRE DE BRENS" + "codePostal": "48310", + "codeCommune": "48007", + "libelleAcheminement": "ARZENC D APCHER", + "nomCommune": "ARZENC D APCHER" }, { - "codePostal": "62140", - "codeCommune": "62219", - "libelleAcheminement": "CAUMONT", - "nomCommune": "CAUMONT" + "codePostal": "33410", + "codeCommune": "33098", + "libelleAcheminement": "CARDAN", + "nomCommune": "CARDAN" }, { - "codePostal": "10250", - "codeCommune": "10261", - "libelleAcheminement": "MUSSY SUR SEINE", - "nomCommune": "MUSSY SUR SEINE" + "codePostal": "34400", + "codeCommune": "34146", + "libelleAcheminement": "LUNEL VIEL", + "nomCommune": "LUNEL VIEL" }, { - "codePostal": "27260", - "codeCommune": "27269", - "libelleAcheminement": "FRESNE CAUVERVILLE", - "nomCommune": "FRESNE CAUVERVILLE" + "codePostal": "48230", + "codeCommune": "48055", + "libelleAcheminement": "CULTURES", + "nomCommune": "CULTURES" }, { - "codePostal": "38710", - "codeCommune": "38403", - "libelleAcheminement": "ST JEAN D HERANS", - "nomCommune": "ST JEAN D HERANS" + "codePostal": "48130", + "codeCommune": "48009", + "libelleAcheminement": "PEYRE EN AUBRAC", + "nomCommune": "PEYRE EN AUBRAC" }, { - "codePostal": "62140", - "codeCommune": "62222", - "libelleAcheminement": "CHERIENNES", - "nomCommune": "CHERIENNES" + "codePostal": "33390", + "codeCommune": "33100", + "libelleAcheminement": "CARS", + "nomCommune": "CARS" }, { - "codePostal": "10700", - "codeCommune": "10269", - "libelleAcheminement": "NOZAY", - "nomCommune": "NOZAY" + "codePostal": "34480", + "codeCommune": "34147", + "libelleAcheminement": "MAGALAS", + "nomCommune": "MAGALAS" }, { - "codePostal": "27560", - "codeCommune": "27286", - "libelleAcheminement": "GIVERVILLE", - "nomCommune": "GIVERVILLE" + "codePostal": "48310", + "codeCommune": "48064", + "libelleAcheminement": "FOURNELS", + "nomCommune": "FOURNELS" }, { - "codePostal": "38350", - "codeCommune": "38413", - "libelleAcheminement": "ST LAURENT EN BEAUMONT", - "nomCommune": "ST LAURENT EN BEAUMONT" + "codePostal": "48200", + "codeCommune": "48012", + "libelleAcheminement": "LES MONTS VERTS", + "nomCommune": "LES MONTS VERTS" }, { - "codePostal": "62180", - "codeCommune": "62233", - "libelleAcheminement": "CONCHIL LE TEMPLE", - "nomCommune": "CONCHIL LE TEMPLE" + "codePostal": "33390", + "codeCommune": "33101", + "libelleAcheminement": "CARTELEGUE", + "nomCommune": "CARTELEGUE" }, { - "codePostal": "10700", - "codeCommune": "10273", - "libelleAcheminement": "ORTILLON", - "nomCommune": "ORTILLON" + "codePostal": "34560", + "codeCommune": "34165", + "libelleAcheminement": "MONTBAZIN", + "nomCommune": "MONTBAZIN" }, { - "codePostal": "27190", - "codeCommune": "27287", - "libelleAcheminement": "GLISOLLES", - "nomCommune": "GLISOLLES" + "codePostal": "48150", + "codeCommune": "48069", + "libelleAcheminement": "GATUZIERES", + "nomCommune": "GATUZIERES" }, { - "codePostal": "38970", - "codeCommune": "38414", - "libelleAcheminement": "STE LUCE", - "nomCommune": "STE LUCE" + "codePostal": "48400", + "codeCommune": "48019", + "libelleAcheminement": "BARRE DES CEVENNES", + "nomCommune": "BARRE DES CEVENNES" }, { - "codePostal": "62630", - "codeCommune": "62241", - "libelleAcheminement": "CORMONT", - "nomCommune": "CORMONT" + "codePostal": "33480", + "codeCommune": "33104", + "libelleAcheminement": "CASTELNAU DE MEDOC", + "nomCommune": "CASTELNAU DE MEDOC" }, { - "codePostal": "10100", - "codeCommune": "10275", - "libelleAcheminement": "OSSEY LES TROIS MAISONS", - "nomCommune": "OSSEY LES TROIS MAISONS" + "codePostal": "34290", + "codeCommune": "34166", + "libelleAcheminement": "MONTBLANC", + "nomCommune": "MONTBLANC" }, { - "codePostal": "27580", - "codeCommune": "27291", - "libelleAcheminement": "GOURNAY LE GUERIN", - "nomCommune": "GOURNAY LE GUERIN" + "codePostal": "48260", + "codeCommune": "48071", + "libelleAcheminement": "GRANDVALS", + "nomCommune": "GRANDVALS" }, { - "codePostal": "38080", - "codeCommune": "38415", - "libelleAcheminement": "ST MARCEL BEL ACCUEIL", - "nomCommune": "ST MARCEL BEL ACCUEIL" + "codePostal": "48400", + "codeCommune": "48020", + "libelleAcheminement": "BASSURELS", + "nomCommune": "BASSURELS" }, { - "codePostal": "62380", - "codeCommune": "62245", - "libelleAcheminement": "COULOMBY", - "nomCommune": "COULOMBY" + "codePostal": "33210", + "codeCommune": "33106", + "libelleAcheminement": "CASTETS ET CASTILLON", + "nomCommune": "CASTETS ET CASTILLON" }, { - "codePostal": "10160", - "codeCommune": "10276", - "libelleAcheminement": "PAISY COSDON", - "nomCommune": "PAISY COSDON" + "codePostal": "34080", + "codeCommune": "34172", + "libelleAcheminement": "MONTPELLIER", + "nomCommune": "MONTPELLIER" }, { - "codePostal": "27170", - "codeCommune": "27300", - "libelleAcheminement": "GROSLEY SUR RISLE", - "nomCommune": "GROSLEY SUR RISLE" + "codePostal": "48320", + "codeCommune": "48075", + "libelleAcheminement": "ISPAGNAC", + "nomCommune": "ISPAGNAC" }, { - "codePostal": "38660", - "codeCommune": "38417", - "libelleAcheminement": "STE MARIE D ALLOIX", - "nomCommune": "STE MARIE D ALLOIX" + "codePostal": "48250", + "codeCommune": "48021", + "libelleAcheminement": "LA BASTIDE PUYLAURENT", + "nomCommune": "LA BASTIDE PUYLAURENT" }, { - "codePostal": "62121", - "codeCommune": "62248", - "libelleAcheminement": "COURCELLES LE COMTE", - "nomCommune": "COURCELLES LE COMTE" + "codePostal": "33720", + "codeCommune": "33120", + "libelleAcheminement": "CERONS", + "nomCommune": "CERONS" }, { - "codePostal": "10350", - "codeCommune": "10281", - "libelleAcheminement": "LE PAVILLON STE JULIE", - "nomCommune": "LE PAVILLON STE JULIE" + "codePostal": "34320", + "codeCommune": "34184", + "libelleAcheminement": "NIZAS", + "nomCommune": "NIZAS" }, { - "codePostal": "27220", - "codeCommune": "27301", - "libelleAcheminement": "GROSSOEUVRE", - "nomCommune": "GROSSOEUVRE" + "codePostal": "48300", + "codeCommune": "48080", + "libelleAcheminement": "LANGOGNE", + "nomCommune": "LANGOGNE" }, { - "codePostal": "38550", - "codeCommune": "38425", - "libelleAcheminement": "ST MAURICE L EXIL", - "nomCommune": "ST MAURICE L EXIL" + "codePostal": "48190", + "codeCommune": "48027", + "libelleAcheminement": "MONT LOZERE ET GOULET", + "nomCommune": "MONT LOZERE ET GOULET" }, { - "codePostal": "62136", - "codeCommune": "62252", - "libelleAcheminement": "LA COUTURE", - "nomCommune": "LA COUTURE" + "codePostal": "33610", + "codeCommune": "33122", + "libelleAcheminement": "CESTAS", + "nomCommune": "CESTAS" }, { - "codePostal": "10600", - "codeCommune": "10282", - "libelleAcheminement": "PAYNS", - "nomCommune": "PAYNS" + "codePostal": "34380", + "codeCommune": "34185", + "libelleAcheminement": "NOTRE DAME DE LONDRES", + "nomCommune": "NOTRE DAME DE LONDRES" }, { - "codePostal": "27370", - "codeCommune": "27302", - "libelleAcheminement": "LE BOSC DU THEIL", - "nomCommune": "LE BOSC DU THEIL" + "codePostal": "48170", + "codeCommune": "48082", + "libelleAcheminement": "LAUBERT", + "nomCommune": "LAUBERT" }, { - "codePostal": "38350", - "codeCommune": "38428", - "libelleAcheminement": "ST MICHEL EN BEAUMONT", - "nomCommune": "ST MICHEL EN BEAUMONT" + "codePostal": "48190", + "codeCommune": "48027", + "libelleAcheminement": "MONT LOZERE ET GOULET", + "nomCommune": "MONT LOZERE ET GOULET" }, { - "codePostal": "62130", - "codeCommune": "62258", - "libelleAcheminement": "CROISETTE", - "nomCommune": "CROISETTE" + "codePostal": "33250", + "codeCommune": "33125", + "libelleAcheminement": "CISSAC MEDOC", + "nomCommune": "CISSAC MEDOC" }, { - "codePostal": "10500", - "codeCommune": "10283", - "libelleAcheminement": "PEL ET DER", - "nomCommune": "PEL ET DER" + "codePostal": "34700", + "codeCommune": "34188", + "libelleAcheminement": "OLMET ET VILLECUN", + "nomCommune": "OLMET ET VILLECUN" }, { - "codePostal": "27720", - "codeCommune": "27304", - "libelleAcheminement": "GUERNY", - "nomCommune": "GUERNY" + "codePostal": "48140", + "codeCommune": "48089", + "libelleAcheminement": "LE MALZIEU FORAIN", + "nomCommune": "LE MALZIEU FORAIN" }, { - "codePostal": "38330", - "codeCommune": "38431", - "libelleAcheminement": "ST NAZAIRE LES EYMES", - "nomCommune": "ST NAZAIRE LES EYMES" + "codePostal": "48000", + "codeCommune": "48030", + "libelleAcheminement": "BRENOUX", + "nomCommune": "BRENOUX" }, { - "codePostal": "62000", - "codeCommune": "62263", - "libelleAcheminement": "DAINVILLE", - "nomCommune": "DAINVILLE" + "codePostal": "33580", + "codeCommune": "33139", + "libelleAcheminement": "COUTURES", + "nomCommune": "COUTURES" }, { - "codePostal": "10500", - "codeCommune": "10286", - "libelleAcheminement": "PETIT MESNIL", - "nomCommune": "PETIT MESNIL" + "codePostal": "34210", + "codeCommune": "34190", + "libelleAcheminement": "OUPIA", + "nomCommune": "OUPIA" }, { - "codePostal": "27370", - "codeCommune": "27313", - "libelleAcheminement": "LA HARENGERE", - "nomCommune": "LA HARENGERE" + "codePostal": "48100", + "codeCommune": "48092", + "libelleAcheminement": "MARVEJOLS", + "nomCommune": "MARVEJOLS" }, { - "codePostal": "38250", - "codeCommune": "38433", - "libelleAcheminement": "ST NIZIER DU MOUCHEROTTE", - "nomCommune": "ST NIZIER DU MOUCHEROTTE" + "codePostal": "48100", + "codeCommune": "48032", + "libelleAcheminement": "LE BUISSON", + "nomCommune": "LE BUISSON" }, { - "codePostal": "62119", - "codeCommune": "62274", - "libelleAcheminement": "DOURGES", - "nomCommune": "DOURGES" + "codePostal": "33750", + "codeCommune": "33141", + "libelleAcheminement": "CROIGNON", + "nomCommune": "CROIGNON" }, { - "codePostal": "10380", - "codeCommune": "10289", - "libelleAcheminement": "PLANCY L ABBAYE", - "nomCommune": "PLANCY L ABBAYE" + "codePostal": "34230", + "codeCommune": "34194", + "libelleAcheminement": "PAULHAN", + "nomCommune": "PAULHAN" }, { - "codePostal": "27120", - "codeCommune": "27326", - "libelleAcheminement": "HECOURT", - "nomCommune": "HECOURT" + "codePostal": "48100", + "codeCommune": "48099", + "libelleAcheminement": "BOURGS SUR COLAGNE", + "nomCommune": "BOURGS SUR COLAGNE" }, { - "codePostal": "38650", - "codeCommune": "38438", - "libelleAcheminement": "ST PAUL LES MONESTIER", - "nomCommune": "ST PAUL LES MONESTIER" + "codePostal": "48170", + "codeCommune": "48043", + "libelleAcheminement": "CHATEAUNEUF DE RANDON", + "nomCommune": "CHATEAUNEUF DE RANDON" }, { - "codePostal": "62870", - "codeCommune": "62275", - "libelleAcheminement": "DOURIEZ", - "nomCommune": "DOURIEZ" + "codePostal": "33430", + "codeCommune": "33144", + "libelleAcheminement": "CUDOS", + "nomCommune": "CUDOS" }, { - "codePostal": "10400", - "codeCommune": "10291", - "libelleAcheminement": "PLESSIS BARBUISE", - "nomCommune": "PLESSIS BARBUISE" + "codePostal": "34380", + "codeCommune": "34195", + "libelleAcheminement": "PEGAIROLLES DE BUEGES", + "nomCommune": "PEGAIROLLES DE BUEGES" }, { - "codePostal": "27860", - "codeCommune": "27333", - "libelleAcheminement": "HEUDICOURT", - "nomCommune": "HEUDICOURT" + "codePostal": "48300", + "codeCommune": "48105", + "libelleAcheminement": "NAUSSAC FONTANES", + "nomCommune": "NAUSSAC FONTANES" }, { - "codePostal": "38570", - "codeCommune": "38439", - "libelleAcheminement": "CRETS EN BELLEDONNE", - "nomCommune": "CRETS EN BELLEDONNE" + "codePostal": "48170", + "codeCommune": "48045", + "libelleAcheminement": "CHAUDEYRAC", + "nomCommune": "CHAUDEYRAC" }, { - "codePostal": "62161", - "codeCommune": "62279", - "libelleAcheminement": "DUISANS", - "nomCommune": "DUISANS" + "codePostal": "33670", + "codeCommune": "33145", + "libelleAcheminement": "CURSAN", + "nomCommune": "CURSAN" }, { - "codePostal": "10110", - "codeCommune": "10296", - "libelleAcheminement": "POLISY", - "nomCommune": "POLISY" + "codePostal": "34600", + "codeCommune": "34200", + "libelleAcheminement": "PEZENES LES MINES", + "nomCommune": "PEZENES LES MINES" }, { - "codePostal": "27310", - "codeCommune": "27340", - "libelleAcheminement": "HONGUEMARE GUENOUVILLE", - "nomCommune": "HONGUEMARE GUENOUVILLE" + "codePostal": "48800", + "codeCommune": "48117", + "libelleAcheminement": "POURCHARESSES", + "nomCommune": "POURCHARESSES" }, { - "codePostal": "38070", - "codeCommune": "38449", - "libelleAcheminement": "ST QUENTIN FALLAVIER", - "nomCommune": "ST QUENTIN FALLAVIER" + "codePostal": "48310", + "codeCommune": "48058", + "libelleAcheminement": "LA FAGE MONTIVERNOUX", + "nomCommune": "LA FAGE MONTIVERNOUX" }, { - "codePostal": "62360", - "codeCommune": "62281", - "libelleAcheminement": "ECHINGHEN", - "nomCommune": "ECHINGHEN" + "codePostal": "33420", + "codeCommune": "33148", + "libelleAcheminement": "DARDENAC", + "nomCommune": "DARDENAC" }, { - "codePostal": "10700", - "codeCommune": "10299", - "libelleAcheminement": "POUAN LES VALLEES", - "nomCommune": "POUAN LES VALLEES" + "codePostal": "34850", + "codeCommune": "34203", + "libelleAcheminement": "PINET", + "nomCommune": "PINET" }, { - "codePostal": "27400", - "codeCommune": "27351", - "libelleAcheminement": "INCARVILLE", - "nomCommune": "INCARVILLE" + "codePostal": "48200", + "codeCommune": "48121", + "libelleAcheminement": "PRUNIERES", + "nomCommune": "PRUNIERES" }, { - "codePostal": "38070", - "codeCommune": "38449", - "libelleAcheminement": "ST QUENTIN FALLAVIER", - "nomCommune": "ST QUENTIN FALLAVIER" + "codePostal": "48400", + "codeCommune": "48061", + "libelleAcheminement": "FLORAC TROIS RIVIERES", + "nomCommune": "FLORAC TROIS RIVIERES" }, { - "codePostal": "62190", - "codeCommune": "62286", - "libelleAcheminement": "ECQUEDECQUES", - "nomCommune": "ECQUEDECQUES" + "codePostal": "33220", + "codeCommune": "33160", + "libelleAcheminement": "EYNESSE", + "nomCommune": "EYNESSE" }, { - "codePostal": "10170", - "codeCommune": "10305", - "libelleAcheminement": "PREMIERFAIT", - "nomCommune": "PREMIERFAIT" + "codePostal": "34230", + "codeCommune": "34204", + "libelleAcheminement": "PLAISSAN", + "nomCommune": "PLAISSAN" }, { - "codePostal": "27540", - "codeCommune": "27355", - "libelleAcheminement": "IVRY LA BATAILLE", - "nomCommune": "IVRY LA BATAILLE" + "codePostal": "48100", + "codeCommune": "48126", + "libelleAcheminement": "LACHAMP RIBENNES", + "nomCommune": "LACHAMP RIBENNES" }, { - "codePostal": "38150", - "codeCommune": "38452", - "libelleAcheminement": "ST ROMAIN DE SURIEU", - "nomCommune": "ST ROMAIN DE SURIEU" + "codePostal": "48400", + "codeCommune": "48061", + "libelleAcheminement": "FLORAC TROIS RIVIERES", + "nomCommune": "FLORAC TROIS RIVIERES" }, { - "codePostal": "62380", - "codeCommune": "62309", - "libelleAcheminement": "ESQUERDES", - "nomCommune": "ESQUERDES" + "codePostal": "33190", + "codeCommune": "33169", + "libelleAcheminement": "FLOUDES", + "nomCommune": "FLOUDES" }, { - "codePostal": "10190", - "codeCommune": "10307", - "libelleAcheminement": "PRUGNY", - "nomCommune": "PRUGNY" + "codePostal": "34310", + "codeCommune": "34226", + "libelleAcheminement": "QUARANTE", + "nomCommune": "QUARANTE" }, { - "codePostal": "27120", - "codeCommune": "27358", - "libelleAcheminement": "JOUY SUR EURE", - "nomCommune": "JOUY SUR EURE" + "codePostal": "48110", + "codeCommune": "48144", + "libelleAcheminement": "STE CROIX VALLEE FRANCAISE", + "nomCommune": "STE CROIX VALLEE FRANCAISE" }, { - "codePostal": "38290", - "codeCommune": "38475", - "libelleAcheminement": "SATOLAS ET BONCE", - "nomCommune": "SATOLAS ET BONCE" + "codePostal": "48400", + "codeCommune": "48065", + "libelleAcheminement": "FRAISSINET DE FOURQUES", + "nomCommune": "FRAISSINET DE FOURQUES" }, { - "codePostal": "62400", - "codeCommune": "62310", - "libelleAcheminement": "ESSARS", - "nomCommune": "ESSARS" + "codePostal": "33760", + "codeCommune": "33175", + "libelleAcheminement": "FRONTENAC", + "nomCommune": "FRONTENAC" }, { - "codePostal": "10430", - "codeCommune": "10325", - "libelleAcheminement": "ROSIERES PRES TROYES", - "nomCommune": "ROSIERES PRES TROYES" + "codePostal": "34650", + "codeCommune": "34231", + "libelleAcheminement": "ROMIGUIERES", + "nomCommune": "ROMIGUIERES" }, { - "codePostal": "27220", - "codeCommune": "27368", - "libelleAcheminement": "LIGNEROLLES", - "nomCommune": "LIGNEROLLES" + "codePostal": "48210", + "codeCommune": "48146", + "libelleAcheminement": "GORGES DU TARN CAUSSES", + "nomCommune": "GORGES DU TARN CAUSSES" }, { - "codePostal": "38260", - "codeCommune": "38479", - "libelleAcheminement": "PORTE DES BONNEVAUX", - "nomCommune": "PORTE DES BONNEVAUX" + "codePostal": "48000", + "codeCommune": "48081", + "libelleAcheminement": "LANUEJOLS", + "nomCommune": "LANUEJOLS" }, { - "codePostal": "62161", - "codeCommune": "62320", - "libelleAcheminement": "ETRUN", - "nomCommune": "ETRUN" + "codePostal": "33410", + "codeCommune": "33176", + "libelleAcheminement": "GABARNAC", + "nomCommune": "GABARNAC" }, { - "codePostal": "10160", - "codeCommune": "10335", - "libelleAcheminement": "ST BENOIST SUR VANNE", - "nomCommune": "ST BENOIST SUR VANNE" + "codePostal": "34320", + "codeCommune": "34234", + "libelleAcheminement": "ROQUESSELS", + "nomCommune": "ROQUESSELS" }, { - "codePostal": "27150", - "codeCommune": "27372", - "libelleAcheminement": "LONGCHAMPS", - "nomCommune": "LONGCHAMPS" + "codePostal": "48310", + "codeCommune": "48161", + "libelleAcheminement": "ST JUERY", + "nomCommune": "ST JUERY" }, { - "codePostal": "38780", - "codeCommune": "38480", - "libelleAcheminement": "SEPTEME", - "nomCommune": "SEPTEME" + "codePostal": "48500", + "codeCommune": "48094", + "libelleAcheminement": "MASSEGROS CAUSSES GORGES", + "nomCommune": "MASSEGROS CAUSSES GORGES" }, { - "codePostal": "62580", - "codeCommune": "62324", - "libelleAcheminement": "FARBUS", - "nomCommune": "FARBUS" + "codePostal": "33133", + "codeCommune": "33179", + "libelleAcheminement": "GALGON", + "nomCommune": "GALGON" }, { - "codePostal": "10700", - "codeCommune": "10338", - "libelleAcheminement": "ST ETIENNE SOUS BARBUISE", - "nomCommune": "ST ETIENNE SOUS BARBUISE" + "codePostal": "34380", + "codeCommune": "34236", + "libelleAcheminement": "LE ROUET", + "nomCommune": "ROUET" }, { - "codePostal": "27190", - "codeCommune": "27374", - "libelleAcheminement": "LOUVERSEY", - "nomCommune": "LOUVERSEY" + "codePostal": "48160", + "codeCommune": "48163", + "libelleAcheminement": "ST JULIEN DES POINTS", + "nomCommune": "ST JULIEN DES POINTS" }, { - "codePostal": "38300", - "codeCommune": "38481", - "libelleAcheminement": "SEREZIN DE LA TOUR", - "nomCommune": "SEREZIN DE LA TOUR" + "codePostal": "48110", + "codeCommune": "48098", + "libelleAcheminement": "MOLEZON", + "nomCommune": "MOLEZON" }, { - "codePostal": "62450", - "codeCommune": "62326", - "libelleAcheminement": "FAVREUIL", - "nomCommune": "FAVREUIL" + "codePostal": "33350", + "codeCommune": "33181", + "libelleAcheminement": "GARDEGAN ET TOURTIRAC", + "nomCommune": "GARDEGAN ET TOURTIRAC" }, { - "codePostal": "10100", - "codeCommune": "10341", - "libelleAcheminement": "ST HILAIRE SOUS ROMILLY", - "nomCommune": "ST HILAIRE SOUS ROMILLY" + "codePostal": "34725", + "codeCommune": "34239", + "libelleAcheminement": "ST ANDRE DE SANGONIS", + "nomCommune": "ST ANDRE DE SANGONIS" }, { - "codePostal": "27480", - "codeCommune": "27377", - "libelleAcheminement": "LYONS LA FORET", - "nomCommune": "LYONS LA FORET" + "codePostal": "48600", + "codeCommune": "48174", + "libelleAcheminement": "ST PAUL LE FROID", + "nomCommune": "ST PAUL LE FROID" }, { - "codePostal": "38170", - "codeCommune": "38485", - "libelleAcheminement": "SEYSSINET PARISET", - "nomCommune": "SEYSSINET PARISET" + "codePostal": "48100", + "codeCommune": "48107", + "libelleAcheminement": "PALHERS", + "nomCommune": "PALHERS" }, { - "codePostal": "62960", - "codeCommune": "62327", - "libelleAcheminement": "FEBVIN PALFART", - "nomCommune": "FEBVIN PALFART" + "codePostal": "33710", + "codeCommune": "33182", + "libelleAcheminement": "GAURIAC", + "nomCommune": "GAURIAC" }, { - "codePostal": "10350", - "codeCommune": "10348", - "libelleAcheminement": "ST LUPIEN", - "nomCommune": "ST LUPIEN" + "codePostal": "34610", + "codeCommune": "34257", + "libelleAcheminement": "ST GENIES DE VARENSAL", + "nomCommune": "ST GENIES DE VARENSAL" }, { - "codePostal": "27300", - "codeCommune": "27381", - "libelleAcheminement": "MALOUY", - "nomCommune": "MALOUY" + "codePostal": "48340", + "codeCommune": "48175", + "libelleAcheminement": "ST PIERRE DE NOGARET", + "nomCommune": "ST PIERRE DE NOGARET" }, { - "codePostal": "38180", - "codeCommune": "38486", - "libelleAcheminement": "SEYSSINS", - "nomCommune": "SEYSSINS" + "codePostal": "48600", + "codeCommune": "48108", + "libelleAcheminement": "LA PANOUSE", + "nomCommune": "LA PANOUSE" }, { - "codePostal": "62250", - "codeCommune": "62329", - "libelleAcheminement": "FERQUES", - "nomCommune": "FERQUES" + "codePostal": "33660", + "codeCommune": "33191", + "libelleAcheminement": "GOURS", + "nomCommune": "GOURS" }, { - "codePostal": "10180", - "codeCommune": "10349", - "libelleAcheminement": "ST LYE", - "nomCommune": "ST LYE" + "codePostal": "34680", + "codeCommune": "34259", + "libelleAcheminement": "ST GEORGES D ORQUES", + "nomCommune": "ST GEORGES D ORQUES" }, { - "codePostal": "27460", - "codeCommune": "27386", - "libelleAcheminement": "LE MANOIR", - "nomCommune": "LE MANOIR" + "codePostal": "48100", + "codeCommune": "48187", + "libelleAcheminement": "LES SALCES", + "nomCommune": "LES SALCES" }, { - "codePostal": "38660", - "codeCommune": "38503", - "libelleAcheminement": "LA TERRASSE", - "nomCommune": "LA TERRASSE" + "codePostal": "48000", + "codeCommune": "48111", + "libelleAcheminement": "PELOUSE", + "nomCommune": "PELOUSE" }, { - "codePostal": "62173", - "codeCommune": "62332", - "libelleAcheminement": "FICHEUX", - "nomCommune": "FICHEUX" + "codePostal": "33170", + "codeCommune": "33192", + "libelleAcheminement": "GRADIGNAN", + "nomCommune": "GRADIGNAN" }, { - "codePostal": "10130", - "codeCommune": "10359", - "libelleAcheminement": "ST PHAL", - "nomCommune": "ST PHAL" + "codePostal": "34430", + "codeCommune": "34270", + "libelleAcheminement": "ST JEAN DE VEDAS", + "nomCommune": "ST JEAN DE VEDAS" }, { - "codePostal": "27110", - "codeCommune": "27389", - "libelleAcheminement": "MARBEUF", - "nomCommune": "MARBEUF" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "38570", - "codeCommune": "38504", - "libelleAcheminement": "THEYS", - "nomCommune": "THEYS" + "codePostal": "48220", + "codeCommune": "48116", + "libelleAcheminement": "PONT DE MONTVERT SUD MONT LOZERE", + "nomCommune": "PONT DE MONTVERT SUD MONT LOZERE" }, { - "codePostal": "62134", - "codeCommune": "62333", - "libelleAcheminement": "FIEFS", - "nomCommune": "FIEFS" + "codePostal": "33125", + "codeCommune": "33202", + "libelleAcheminement": "HOSTENS", + "nomCommune": "HOSTENS" }, { - "codePostal": "10120", - "codeCommune": "10360", - "libelleAcheminement": "ST POUANGE", - "nomCommune": "ST POUANGE" + "codePostal": "34270", + "codeCommune": "34276", + "libelleAcheminement": "ST MATHIEU DE TREVIERS", + "nomCommune": "ST MATHIEU DE TREVIERS" }, { - "codePostal": "27300", - "codeCommune": "27398", - "libelleAcheminement": "MENNEVAL", - "nomCommune": "MENNEVAL" + "codePostal": "49250", + "codeCommune": "49021", + "libelleAcheminement": "BEAUFORT EN ANJOU", + "nomCommune": "BEAUFORT EN ANJOU" }, { - "codePostal": "38260", - "codeCommune": "38505", - "libelleAcheminement": "THODURE", - "nomCommune": "THODURE" + "codePostal": "48400", + "codeCommune": "48130", + "libelleAcheminement": "ROUSSES", + "nomCommune": "ROUSSES" }, { - "codePostal": "62960", - "codeCommune": "62336", - "libelleAcheminement": "FLECHIN", - "nomCommune": "FLECHIN" + "codePostal": "33990", + "codeCommune": "33203", + "libelleAcheminement": "HOURTIN", + "nomCommune": "HOURTIN" }, { - "codePostal": "10360", - "codeCommune": "10364", - "libelleAcheminement": "ST USAGE", - "nomCommune": "ST USAGE" + "codePostal": "34490", + "codeCommune": "34279", + "libelleAcheminement": "ST NAZAIRE DE LADAREZ", + "nomCommune": "ST NAZAIRE DE LADAREZ" }, { - "codePostal": "27440", - "codeCommune": "27407", - "libelleAcheminement": "MESNIL VERCLIVES", - "nomCommune": "MESNIL VERCLIVES" + "codePostal": "49750", + "codeCommune": "49022", + "libelleAcheminement": "BEAULIEU SUR LAYON", + "nomCommune": "BEAULIEU SUR LAYON" }, { - "codePostal": "38650", - "codeCommune": "38513", - "libelleAcheminement": "TREFFORT", - "nomCommune": "TREFFORT" + "codePostal": "48800", + "codeCommune": "48135", + "libelleAcheminement": "ST ANDRE CAPCEZE", + "nomCommune": "ST ANDRE CAPCEZE" }, { - "codePostal": "62134", - "codeCommune": "62339", - "libelleAcheminement": "FLEURY", - "nomCommune": "FLEURY" + "codePostal": "33590", + "codeCommune": "33208", + "libelleAcheminement": "JAU DIGNAC ET LOIRAC", + "nomCommune": "JAU DIGNAC ET LOIRAC" }, { - "codePostal": "10400", - "codeCommune": "10370", - "libelleAcheminement": "SOLIGNY LES ETANGS", - "nomCommune": "SOLIGNY LES ETANGS" + "codePostal": "34700", + "codeCommune": "34286", + "libelleAcheminement": "ST PRIVAT", + "nomCommune": "ST PRIVAT" }, { - "codePostal": "27510", - "codeCommune": "27408", - "libelleAcheminement": "MEZIERES EN VEXIN", - "nomCommune": "MEZIERES EN VEXIN" + "codePostal": "49600", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "38210", - "codeCommune": "38517", - "libelleAcheminement": "TULLINS", - "nomCommune": "TULLINS" + "codePostal": "48600", + "codeCommune": "48139", + "libelleAcheminement": "ST BONNET LAVAL", + "nomCommune": "ST BONNET LAVAL" }, { - "codePostal": "62134", - "codeCommune": "62342", - "libelleAcheminement": "FONTAINE LES BOULANS", - "nomCommune": "FONTAINE LES BOULANS" + "codePostal": "33460", + "codeCommune": "33211", + "libelleAcheminement": "LABARDE", + "nomCommune": "LABARDE" }, { - "codePostal": "10140", - "codeCommune": "10376", - "libelleAcheminement": "THIEFFRAIN", - "nomCommune": "THIEFFRAIN" + "codePostal": "34570", + "codeCommune": "34295", + "libelleAcheminement": "SAUSSAN", + "nomCommune": "SAUSSAN" }, { - "codePostal": "27800", - "codeCommune": "27418", - "libelleAcheminement": "MORSAN", - "nomCommune": "MORSAN" + "codePostal": "49600", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "38730", - "codeCommune": "38520", - "libelleAcheminement": "VALENCOGNE", - "nomCommune": "VALENCOGNE" + "codePostal": "48300", + "codeCommune": "48150", + "libelleAcheminement": "ST FLOUR DE MERCOIRE", + "nomCommune": "ST FLOUR DE MERCOIRE" }, { - "codePostal": "62150", - "codeCommune": "62356", - "libelleAcheminement": "FRESNICOURT LE DOLMEN", - "nomCommune": "FRESNICOURT LE DOLMEN" + "codePostal": "33760", + "codeCommune": "33215", + "libelleAcheminement": "LADAUX", + "nomCommune": "LADAUX" }, { - "codePostal": "10700", - "codeCommune": "10386", - "libelleAcheminement": "TROUANS", - "nomCommune": "TROUANS" + "codePostal": "34290", + "codeCommune": "34300", + "libelleAcheminement": "SERVIAN", + "nomCommune": "SERVIAN" }, { - "codePostal": "27430", - "codeCommune": "27422", - "libelleAcheminement": "MUIDS", - "nomCommune": "MUIDS" + "codePostal": "49370", + "codeCommune": "49026", + "libelleAcheminement": "BECON LES GRANITS", + "nomCommune": "BECON LES GRANITS" }, { - "codePostal": "38470", - "codeCommune": "38523", - "libelleAcheminement": "VARACIEUX", - "nomCommune": "VARACIEUX" + "codePostal": "48150", + "codeCommune": "48176", + "libelleAcheminement": "ST PIERRE DES TRIPIERS", + "nomCommune": "ST PIERRE DES TRIPIERS" }, { - "codePostal": "62770", - "codeCommune": "62365", - "libelleAcheminement": "GALAMETZ", - "nomCommune": "GALAMETZ" + "codePostal": "33124", + "codeCommune": "33216", + "libelleAcheminement": "LADOS", + "nomCommune": "LADOS" }, { - "codePostal": "10170", - "codeCommune": "10392", - "libelleAcheminement": "VALLANT ST GEORGES", - "nomCommune": "VALLANT ST GEORGES" + "codePostal": "34700", + "codeCommune": "34306", + "libelleAcheminement": "SOUMONT", + "nomCommune": "SOUMONT" }, { - "codePostal": "27170", - "codeCommune": "27425", - "libelleAcheminement": "NASSANDRES SUR RISLE", - "nomCommune": "NASSANDRES SUR RISLE" + "codePostal": "49080", + "codeCommune": "49035", + "libelleAcheminement": "BOUCHEMAINE", + "nomCommune": "BOUCHEMAINE" }, { - "codePostal": "38890", - "codeCommune": "38525", - "libelleAcheminement": "VASSELIN", - "nomCommune": "VASSELIN" + "codePostal": "48140", + "codeCommune": "48179", + "libelleAcheminement": "ST PRIVAT DU FAU", + "nomCommune": "ST PRIVAT DU FAU" }, { - "codePostal": "62150", - "codeCommune": "62366", - "libelleAcheminement": "GAUCHIN LEGAL", - "nomCommune": "GAUCHIN LEGAL" + "codePostal": "33240", + "codeCommune": "33219", + "libelleAcheminement": "LA LANDE DE FRONSAC", + "nomCommune": "LA LANDE DE FRONSAC" }, { - "codePostal": "10260", - "codeCommune": "10399", - "libelleAcheminement": "VAUDES", - "nomCommune": "VAUDES" + "codePostal": "34160", + "codeCommune": "34307", + "libelleAcheminement": "SUSSARGUES", + "nomCommune": "SUSSARGUES" }, { - "codePostal": "27300", - "codeCommune": "27425", - "libelleAcheminement": "NASSANDRES SUR RISLE", - "nomCommune": "NASSANDRES SUR RISLE" + "codePostal": "49520", + "codeCommune": "49036", + "libelleAcheminement": "BOUILLE MENARD", + "nomCommune": "BOUILLE MENARD" }, { - "codePostal": "38620", - "codeCommune": "38531", - "libelleAcheminement": "VELANNE", - "nomCommune": "VELANNE" + "codePostal": "48230", + "codeCommune": "48185", + "libelleAcheminement": "LES SALELLES", + "nomCommune": "LES SALELLES" }, { - "codePostal": "62130", - "codeCommune": "62367", - "libelleAcheminement": "GAUCHIN VERLOINGT", - "nomCommune": "GAUCHIN VERLOINGT" + "codePostal": "33460", + "codeCommune": "33220", + "libelleAcheminement": "LAMARQUE", + "nomCommune": "LAMARQUE" }, { - "codePostal": "10390", - "codeCommune": "10406", - "libelleAcheminement": "VERRIERES", - "nomCommune": "VERRIERES" + "codePostal": "34120", + "codeCommune": "34311", + "libelleAcheminement": "TOURBES", + "nomCommune": "TOURBES" }, { - "codePostal": "27550", - "codeCommune": "27425", - "libelleAcheminement": "NASSANDRES SUR RISLE", - "nomCommune": "NASSANDRES SUR RISLE" + "codePostal": "49520", + "codeCommune": "49038", + "libelleAcheminement": "BOURG L EVEQUE", + "nomCommune": "BOURG L EVEQUE" }, { - "codePostal": "38460", - "codeCommune": "38532", - "libelleAcheminement": "VENERIEU", - "nomCommune": "VENERIEU" + "codePostal": "48400", + "codeCommune": "48193", + "libelleAcheminement": "VEBRON", + "nomCommune": "VEBRON" }, { - "codePostal": "62810", - "codeCommune": "62372", - "libelleAcheminement": "GIVENCHY LE NOBLE", - "nomCommune": "GIVENCHY LE NOBLE" + "codePostal": "33620", + "codeCommune": "33233", + "libelleAcheminement": "LARUSCADE", + "nomCommune": "LARUSCADE" }, { - "codePostal": "10410", - "codeCommune": "10412", - "libelleAcheminement": "VILLECHETIF", - "nomCommune": "VILLECHETIF" + "codePostal": "34270", + "codeCommune": "34314", + "libelleAcheminement": "LE TRIADOU", + "nomCommune": "LE TRIADOU" }, { - "codePostal": "27830", - "codeCommune": "27426", - "libelleAcheminement": "NEAUFLES ST MARTIN", - "nomCommune": "NEAUFLES ST MARTIN" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "38113", - "codeCommune": "38540", - "libelleAcheminement": "VEUREY VOROIZE", - "nomCommune": "VEUREY VOROIZE" + "codePostal": "48220", + "codeCommune": "48194", + "libelleAcheminement": "VIALAS", + "nomCommune": "VIALAS" }, { - "codePostal": "62920", - "codeCommune": "62376", - "libelleAcheminement": "GONNEHEM", - "nomCommune": "GONNEHEM" + "codePostal": "33550", + "codeCommune": "33241", + "libelleAcheminement": "LESTIAC SUR GARONNE", + "nomCommune": "LESTIAC SUR GARONNE" }, { - "codePostal": "10700", - "codeCommune": "10429", - "libelleAcheminement": "VILLETTE SUR AUBE", - "nomCommune": "VILLETTE SUR AUBE" + "codePostal": "34130", + "codeCommune": "34321", + "libelleAcheminement": "VALERGUES", + "nomCommune": "VALERGUES" }, { - "codePostal": "27250", - "codeCommune": "27427", - "libelleAcheminement": "NEAUFLES AUVERGNY", - "nomCommune": "NEAUFLES AUVERGNY" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "38510", - "codeCommune": "38543", - "libelleAcheminement": "VEZERONCE CURTIN", - "nomCommune": "VEZERONCE CURTIN" + "codePostal": "49700", + "codeCommune": "49003", + "libelleAcheminement": "TUFFALUN", + "nomCommune": "TUFFALUN" }, { - "codePostal": "62530", - "codeCommune": "62380", - "libelleAcheminement": "GOUY SERVINS", - "nomCommune": "GOUY SERVINS" + "codePostal": "33370", + "codeCommune": "33252", + "libelleAcheminement": "LOUPES", + "nomCommune": "LOUPES" }, { - "codePostal": "10210", - "codeCommune": "10432", - "libelleAcheminement": "VILLIERS SOUS PRASLIN", - "nomCommune": "VILLIERS SOUS PRASLIN" + "codePostal": "34350", + "codeCommune": "34329", + "libelleAcheminement": "VENDRES", + "nomCommune": "VENDRES" }, { - "codePostal": "27250", - "codeCommune": "27427", - "libelleAcheminement": "NEAUFLES AUVERGNY", - "nomCommune": "NEAUFLES AUVERGNY" + "codePostal": "49400", + "codeCommune": "49060", + "libelleAcheminement": "BELLEVIGNE LES CHATEAUX", + "nomCommune": "BELLEVIGNE LES CHATEAUX" }, { - "codePostal": "38510", - "codeCommune": "38543", - "libelleAcheminement": "VEZERONCE CURTIN", - "nomCommune": "VEZERONCE CURTIN" + "codePostal": "49100", + "codeCommune": "49007", + "libelleAcheminement": "ANGERS", + "nomCommune": "ANGERS" }, { - "codePostal": "62450", - "codeCommune": "62387", - "libelleAcheminement": "GREVILLERS", - "nomCommune": "GREVILLERS" + "codePostal": "33240", + "codeCommune": "33259", + "libelleAcheminement": "LUGON ET L ILE DU CARNAY", + "nomCommune": "LUGON ET L ILE DU CARNAY" }, { - "codePostal": "10800", - "codeCommune": "10435", - "libelleAcheminement": "VILLY LE MARECHAL", - "nomCommune": "VILLY LE MARECHAL" + "codePostal": "34380", + "codeCommune": "34342", + "libelleAcheminement": "VIOLS EN LAVAL", + "nomCommune": "VIOLS EN LAVAL" }, { - "codePostal": "27890", - "codeCommune": "27432", - "libelleAcheminement": "LA NEUVILLE DU BOSC", - "nomCommune": "LA NEUVILLE DU BOSC" + "codePostal": "49340", + "codeCommune": "49070", + "libelleAcheminement": "CHANTELOUP LES BOIS", + "nomCommune": "CHANTELOUP LES BOIS" }, { - "codePostal": "38190", - "codeCommune": "38547", - "libelleAcheminement": "VILLARD BONNOT", - "nomCommune": "VILLARD BONNOT" + "codePostal": "49420", + "codeCommune": "49010", + "libelleAcheminement": "ARMAILLE", + "nomCommune": "ARMAILLE" }, { - "codePostal": "62760", - "codeCommune": "62389", - "libelleAcheminement": "GRINCOURT LES PAS", - "nomCommune": "GRINCOURT LES PAS" + "codePostal": "33830", + "codeCommune": "33260", + "libelleAcheminement": "LUGOS", + "nomCommune": "LUGOS" }, { - "codePostal": "11120", - "codeCommune": "11012", - "libelleAcheminement": "ARGELIERS", - "nomCommune": "ARGELIERS" + "codePostal": "34280", + "codeCommune": "34344", + "libelleAcheminement": "LA GRANDE MOTTE", + "nomCommune": "LA GRANDE MOTTE" }, { - "codePostal": "27560", - "codeCommune": "27434", - "libelleAcheminement": "NOARDS", - "nomCommune": "NOARDS" + "codePostal": "49330", + "codeCommune": "49080", + "libelleAcheminement": "LES HAUTS D ANJOU", + "nomCommune": "LES HAUTS D ANJOU" }, { - "codePostal": "38520", - "codeCommune": "38551", - "libelleAcheminement": "VILLARD REYMOND", - "nomCommune": "VILLARD REYMOND" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "62128", - "codeCommune": "62392", - "libelleAcheminement": "GUEMAPPE", - "nomCommune": "GUEMAPPE" + "codePostal": "33460", + "codeCommune": "33268", + "libelleAcheminement": "MARGAUX CANTENAC", + "nomCommune": "MARGAUX CANTENAC" }, { - "codePostal": "11220", - "codeCommune": "11016", - "libelleAcheminement": "ARQUETTES EN VAL", - "nomCommune": "ARQUETTES EN VAL" + "codePostal": "35250", + "codeCommune": "35007", + "libelleAcheminement": "AUBIGNE", + "nomCommune": "AUBIGNE" }, { - "codePostal": "27190", - "codeCommune": "27446", - "libelleAcheminement": "ORMES", - "nomCommune": "ORMES" + "codePostal": "49330", + "codeCommune": "49080", + "libelleAcheminement": "LES HAUTS D ANJOU", + "nomCommune": "LES HAUTS D ANJOU" }, { - "codePostal": "38280", - "codeCommune": "38557", - "libelleAcheminement": "VILLETTE D ANTHON", - "nomCommune": "VILLETTE D ANTHON" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "62138", - "codeCommune": "62401", - "libelleAcheminement": "HAISNES", - "nomCommune": "HAISNES" + "codePostal": "33220", + "codeCommune": "33269", + "libelleAcheminement": "MARGUERON", + "nomCommune": "MARGUERON" }, { - "codePostal": "11140", - "codeCommune": "11019", - "libelleAcheminement": "AUNAT", - "nomCommune": "AUNAT" + "codePostal": "35137", + "codeCommune": "35023", + "libelleAcheminement": "BEDEE", + "nomCommune": "BEDEE" }, { - "codePostal": "27190", - "codeCommune": "27447", - "libelleAcheminement": "LE VAL DORE", - "nomCommune": "LE VAL DORE" + "codePostal": "49380", + "codeCommune": "49086", + "libelleAcheminement": "TERRANJOU", + "nomCommune": "TERRANJOU" }, { - "codePostal": "38340", - "codeCommune": "38565", - "libelleAcheminement": "VOREPPE", - "nomCommune": "VOREPPE" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "62190", - "codeCommune": "62407", - "libelleAcheminement": "HAM EN ARTOIS", - "nomCommune": "HAM EN ARTOIS" + "codePostal": "33430", + "codeCommune": "33270", + "libelleAcheminement": "MARIMBAULT", + "nomCommune": "MARIMBAULT" }, { - "codePostal": "11340", - "codeCommune": "11028", - "libelleAcheminement": "BELCAIRE", - "nomCommune": "BELCAIRE" + "codePostal": "35150", + "codeCommune": "35028", + "libelleAcheminement": "BOISTRUDAN", + "nomCommune": "BOISTRUDAN" }, { - "codePostal": "27190", - "codeCommune": "27447", - "libelleAcheminement": "LE VAL DORE", - "nomCommune": "LE VAL DORE" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "39500", - "codeCommune": "39001", - "libelleAcheminement": "ABERGEMENT LA RONCE", - "nomCommune": "ABERGEMENT LA RONCE" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "62111", - "codeCommune": "62409", - "libelleAcheminement": "HANNESCAMPS", - "nomCommune": "HANNESCAMPS" + "codePostal": "33650", + "codeCommune": "33274", + "libelleAcheminement": "MARTILLAC", + "nomCommune": "MARTILLAC" }, { - "codePostal": "11410", - "codeCommune": "11030", - "libelleAcheminement": "BELFLOU", - "nomCommune": "BELFLOU" + "codePostal": "35340", + "codeCommune": "35031", + "libelleAcheminement": "LA BOUEXIERE", + "nomCommune": "LA BOUEXIERE" }, { - "codePostal": "27230", - "codeCommune": "27459", - "libelleAcheminement": "LES PLACES", - "nomCommune": "LES PLACES" + "codePostal": "49140", + "codeCommune": "49110", + "libelleAcheminement": "CORZE", + "nomCommune": "CORZE" }, { - "codePostal": "39600", - "codeCommune": "39002", - "libelleAcheminement": "ABERGEMENT LE GRAND", - "nomCommune": "ABERGEMENT LE GRAND" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "62124", - "codeCommune": "62410", - "libelleAcheminement": "HAPLINCOURT", - "nomCommune": "HAPLINCOURT" + "codePostal": "33540", + "codeCommune": "33278", + "libelleAcheminement": "MAURIAC", + "nomCommune": "MAURIAC" }, { - "codePostal": "11140", - "codeCommune": "11031", - "libelleAcheminement": "BELFORT SUR REBENTY", - "nomCommune": "BELFORT SUR REBENTY" + "codePostal": "35330", + "codeCommune": "35035", + "libelleAcheminement": "BOVEL", + "nomCommune": "BOVEL" }, { - "codePostal": "27180", - "codeCommune": "27464", - "libelleAcheminement": "LE PLESSIS GROHAN", - "nomCommune": "LE PLESSIS GROHAN" + "codePostal": "49260", + "codeCommune": "49112", + "libelleAcheminement": "LE COUDRAY MACOUARD", + "nomCommune": "LE COUDRAY MACOUARD" }, { - "codePostal": "39700", - "codeCommune": "39008", - "libelleAcheminement": "AMANGE", - "nomCommune": "AMANGE" + "codePostal": "49110", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "62156", - "codeCommune": "62414", - "libelleAcheminement": "HAUCOURT", - "nomCommune": "HAUCOURT" + "codePostal": "33570", + "codeCommune": "33290", + "libelleAcheminement": "MONTAGNE", + "nomCommune": "MONTAGNE" }, { - "codePostal": "11240", - "codeCommune": "11032", - "libelleAcheminement": "BELLEGARDE DU RAZES", - "nomCommune": "BELLEGARDE DU RAZES" + "codePostal": "35370", + "codeCommune": "35042", + "libelleAcheminement": "BRIELLES", + "nomCommune": "BRIELLES" }, { - "codePostal": "27100", - "codeCommune": "27471", - "libelleAcheminement": "PORTE DE SEINE", - "nomCommune": "PORTE DE SEINE" + "codePostal": "49700", + "codeCommune": "49125", + "libelleAcheminement": "DOUE EN ANJOU", + "nomCommune": "DOUE EN ANJOU" }, { - "codePostal": "39240", - "codeCommune": "39016", - "libelleAcheminement": "ARINTHOD", - "nomCommune": "ARINTHOD" + "codePostal": "49450", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "62142", - "codeCommune": "62429", - "libelleAcheminement": "HENNEVEUX", - "nomCommune": "HENNEVEUX" + "codePostal": "33350", + "codeCommune": "33296", + "libelleAcheminement": "MOULIETS ET VILLEMARTIN", + "nomCommune": "MOULIETS ET VILLEMARTIN" }, { - "codePostal": "11340", - "codeCommune": "11036", - "libelleAcheminement": "BELVIS", - "nomCommune": "BELVIS" + "codePostal": "35260", + "codeCommune": "35049", + "libelleAcheminement": "CANCALE", + "nomCommune": "CANCALE" }, { - "codePostal": "27220", - "codeCommune": "27478", - "libelleAcheminement": "PREY", - "nomCommune": "PREY" + "codePostal": "49700", + "codeCommune": "49125", + "libelleAcheminement": "DOUE EN ANJOU", + "nomCommune": "DOUE EN ANJOU" }, { - "codePostal": "39270", - "codeCommune": "39021", - "libelleAcheminement": "LA CHAILLEUSE", - "nomCommune": "LA CHAILLEUSE" + "codePostal": "49510", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "62130", - "codeCommune": "62436", - "libelleAcheminement": "HERLIN LE SEC", - "nomCommune": "HERLIN LE SEC" + "codePostal": "33480", + "codeCommune": "33297", + "libelleAcheminement": "MOULIS EN MEDOC", + "nomCommune": "MOULIS EN MEDOC" }, { - "codePostal": "11000", - "codeCommune": "11037", - "libelleAcheminement": "BERRIAC", - "nomCommune": "BERRIAC" + "codePostal": "35150", + "codeCommune": "35054", + "libelleAcheminement": "CHANTELOUP", + "nomCommune": "CHANTELOUP" }, { - "codePostal": "27130", - "codeCommune": "27481", - "libelleAcheminement": "PULLAY", - "nomCommune": "PULLAY" + "codePostal": "49260", + "codeCommune": "49131", + "libelleAcheminement": "EPIEDS", + "nomCommune": "EPIEDS" }, { - "codePostal": "39270", - "codeCommune": "39021", - "libelleAcheminement": "LA CHAILLEUSE", - "nomCommune": "LA CHAILLEUSE" + "codePostal": "49510", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "62150", - "codeCommune": "62441", - "libelleAcheminement": "HERMIN", - "nomCommune": "HERMIN" + "codePostal": "33410", + "codeCommune": "33299", + "libelleAcheminement": "MOURENS", + "nomCommune": "MOURENS" }, { - "codePostal": "11200", - "codeCommune": "11040", - "libelleAcheminement": "BIZANET", - "nomCommune": "BIZANET" + "codePostal": "35410", + "codeCommune": "35069", + "libelleAcheminement": "CHATEAUGIRON", + "nomCommune": "CHATEAUGIRON" }, { - "codePostal": "27370", - "codeCommune": "27482", - "libelleAcheminement": "LA PYLE", - "nomCommune": "LA PYLE" + "codePostal": "49460", + "codeCommune": "49135", + "libelleAcheminement": "FENEU", + "nomCommune": "FENEU" }, { - "codePostal": "39570", - "codeCommune": "39021", - "libelleAcheminement": "LA CHAILLEUSE", - "nomCommune": "LA CHAILLEUSE" + "codePostal": "49600", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "62196", - "codeCommune": "62445", - "libelleAcheminement": "HESDIGNEUL LES BETHUNE", - "nomCommune": "HESDIGNEUL LES BETHUNE" + "codePostal": "33750", + "codeCommune": "33303", + "libelleAcheminement": "NERIGEAN", + "nomCommune": "NERIGEAN" }, { - "codePostal": "11800", - "codeCommune": "11043", - "libelleAcheminement": "BOUILHONNAC", - "nomCommune": "BOUILHONNAC" + "codePostal": "35250", + "codeCommune": "35079", + "libelleAcheminement": "CHEVAIGNE", + "nomCommune": "CHEVAIGNE" }, { - "codePostal": "27610", - "codeCommune": "27493", - "libelleAcheminement": "ROMILLY SUR ANDELLE", - "nomCommune": "ROMILLY SUR ANDELLE" + "codePostal": "49123", + "codeCommune": "49160", + "libelleAcheminement": "INGRANDES LE FRESNE SUR LOIRE", + "nomCommune": "INGRANDES LE FRESNE SUR LOIRE" }, { - "codePostal": "39120", - "codeCommune": "39022", - "libelleAcheminement": "ASNANS BEAUVOISIN", - "nomCommune": "ASNANS BEAUVOISIN" + "codePostal": "49320", + "codeCommune": "49029", + "libelleAcheminement": "BLAISON ST SULPICE", + "nomCommune": "BLAISON ST SULPICE" }, { - "codePostal": "62360", - "codeCommune": "62446", - "libelleAcheminement": "HESDIGNEUL LES BOULOGNE", - "nomCommune": "HESDIGNEUL LES BOULOGNE" + "codePostal": "33550", + "codeCommune": "33311", + "libelleAcheminement": "PAILLET", + "nomCommune": "PAILLET" }, { - "codePostal": "11140", - "codeCommune": "11047", - "libelleAcheminement": "LE BOUSQUET", - "nomCommune": "LE BOUSQUET" + "codePostal": "35150", + "codeCommune": "35088", + "libelleAcheminement": "CORPS NUDS", + "nomCommune": "CORPS NUDS" }, { - "codePostal": "27700", - "codeCommune": "27495", - "libelleAcheminement": "LA ROQUETTE", - "nomCommune": "LA ROQUETTE" + "codePostal": "49220", + "codeCommune": "49161", + "libelleAcheminement": "LA JAILLE YVON", + "nomCommune": "LA JAILLE YVON" }, { - "codePostal": "39120", - "codeCommune": "39022", - "libelleAcheminement": "ASNANS BEAUVOISIN", - "nomCommune": "ASNANS BEAUVOISIN" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "62630", - "codeCommune": "62460", - "libelleAcheminement": "HUBERSENT", - "nomCommune": "HUBERSENT" + "codePostal": "33290", + "codeCommune": "33312", + "libelleAcheminement": "PAREMPUYRE", + "nomCommune": "PAREMPUYRE" }, { - "codePostal": "11240", - "codeCommune": "11059", - "libelleAcheminement": "CAILHAVEL", - "nomCommune": "CAILHAVEL" + "codePostal": "35320", + "codeCommune": "35090", + "libelleAcheminement": "CREVIN", + "nomCommune": "CREVIN" }, { - "codePostal": "27250", - "codeCommune": "27502", - "libelleAcheminement": "RUGLES", - "nomCommune": "RUGLES" + "codePostal": "49140", + "codeCommune": "49163", + "libelleAcheminement": "JARZE VILLAGES", + "nomCommune": "JARZE VILLAGES" }, { - "codePostal": "39120", - "codeCommune": "39034", - "libelleAcheminement": "BALAISEAUX", - "nomCommune": "BALAISEAUX" + "codePostal": "49310", + "codeCommune": "49057", + "libelleAcheminement": "CERNUSSON", + "nomCommune": "CERNUSSON" }, { - "codePostal": "62650", - "codeCommune": "62463", - "libelleAcheminement": "HUCQUELIERS", - "nomCommune": "HUCQUELIERS" + "codePostal": "33790", + "codeCommune": "33316", + "libelleAcheminement": "PELLEGRUE", + "nomCommune": "PELLEGRUE" }, { - "codePostal": "11200", - "codeCommune": "11064", - "libelleAcheminement": "CAMPLONG D AUDE", - "nomCommune": "CAMPLONG D AUDE" + "codePostal": "35113", + "codeCommune": "35096", + "libelleAcheminement": "DOMAGNE", + "nomCommune": "DOMAGNE" }, { - "codePostal": "27930", - "codeCommune": "27504", - "libelleAcheminement": "SACQUENVILLE", - "nomCommune": "SACQUENVILLE" + "codePostal": "49140", + "codeCommune": "49163", + "libelleAcheminement": "JARZE VILLAGES", + "nomCommune": "JARZE VILLAGES" }, { - "codePostal": "39570", - "codeCommune": "39041", - "libelleAcheminement": "BAUME LES MESSIEURS", - "nomCommune": "BAUME LES MESSIEURS" + "codePostal": "49440", + "codeCommune": "49061", + "libelleAcheminement": "CHALLAIN LA POTHERIE", + "nomCommune": "CHALLAIN LA POTHERIE" }, { - "codePostal": "62410", - "codeCommune": "62464", - "libelleAcheminement": "HULLUCH", - "nomCommune": "HULLUCH" + "codePostal": "33390", + "codeCommune": "33325", + "libelleAcheminement": "PLASSAC", + "nomCommune": "PLASSAC" }, { - "codePostal": "11000", - "codeCommune": "11069", - "libelleAcheminement": "CARCASSONNE", - "nomCommune": "CARCASSONNE" + "codePostal": "35130", + "codeCommune": "35102", + "libelleAcheminement": "DROUGES", + "nomCommune": "DROUGES" }, { - "codePostal": "27250", - "codeCommune": "27508", - "libelleAcheminement": "ST ANTONIN DE SOMMAIRE", - "nomCommune": "ST ANTONIN DE SOMMAIRE" + "codePostal": "49440", + "codeCommune": "49178", + "libelleAcheminement": "LOIRE", + "nomCommune": "LOIRE" }, { - "codePostal": "39190", - "codeCommune": "39043", - "libelleAcheminement": "BEAUFORT ORBAGNA", - "nomCommune": "BEAUFORT ORBAGNA" + "codePostal": "49290", + "codeCommune": "49063", + "libelleAcheminement": "CHALONNES SUR LOIRE", + "nomCommune": "CHALONNES SUR LOIRE" }, { - "codePostal": "62130", - "codeCommune": "62467", - "libelleAcheminement": "HUMEROEUILLE", - "nomCommune": "HUMEROEUILLE" + "codePostal": "33680", + "codeCommune": "33333", + "libelleAcheminement": "LE PORGE", + "nomCommune": "LE PORGE" }, { - "codePostal": "11360", - "codeCommune": "11071", - "libelleAcheminement": "CASCASTEL DES CORBIERES", - "nomCommune": "CASCASTEL DES CORBIERES" + "codePostal": "35120", + "codeCommune": "35104", + "libelleAcheminement": "EPINIAC", + "nomCommune": "EPINIAC" }, { - "codePostal": "27300", - "codeCommune": "27516", - "libelleAcheminement": "TREIS SANTS EN OUCHE", - "nomCommune": "TREIS SANTS EN OUCHE" + "codePostal": "49370", + "codeCommune": "49183", + "libelleAcheminement": "VAL D ERDRE AUXENCE", + "nomCommune": "VAL D ERDRE AUXENCE" }, { - "codePostal": "39210", - "codeCommune": "39057", - "libelleAcheminement": "BLOIS SUR SEILLE", - "nomCommune": "BLOIS SUR SEILLE" + "codePostal": "49220", + "codeCommune": "49067", + "libelleAcheminement": "CHENILLE CHAMPTEUSSE", + "nomCommune": "CHENILLE CHAMPTEUSSE" }, { - "codePostal": "62130", - "codeCommune": "62468", - "libelleAcheminement": "HUMIERES", - "nomCommune": "HUMIERES" + "codePostal": "33640", + "codeCommune": "33334", + "libelleAcheminement": "PORTETS", + "nomCommune": "PORTETS" }, { - "codePostal": "11160", - "codeCommune": "11075", - "libelleAcheminement": "CASTANS", - "nomCommune": "CASTANS" + "codePostal": "35500", + "codeCommune": "35105", + "libelleAcheminement": "ERBREE", + "nomCommune": "ERBREE" }, { - "codePostal": "27110", - "codeCommune": "27524", - "libelleAcheminement": "STE COLOMBE LA COMMANDERIE", - "nomCommune": "STE COLOMBE LA COMMANDERIE" + "codePostal": "49250", + "codeCommune": "49201", + "libelleAcheminement": "LA MENITRE", + "nomCommune": "LA MENITRE" }, { - "codePostal": "39110", - "codeCommune": "39072", - "libelleAcheminement": "BRACON", - "nomCommune": "BRACON" + "codePostal": "49123", + "codeCommune": "49068", + "libelleAcheminement": "CHAMPTOCE SUR LOIRE", + "nomCommune": "CHAMPTOCE SUR LOIRE" }, { - "codePostal": "62770", - "codeCommune": "62470", - "libelleAcheminement": "INCOURT", - "nomCommune": "INCOURT" + "codePostal": "33670", + "codeCommune": "33335", + "libelleAcheminement": "LE POUT", + "nomCommune": "LE POUT" }, { - "codePostal": "11700", - "codeCommune": "11077", - "libelleAcheminement": "CASTELNAU D AUDE", - "nomCommune": "CASTELNAU D AUDE" + "codePostal": "35150", + "codeCommune": "35108", + "libelleAcheminement": "ESSE", + "nomCommune": "ESSE" }, { - "codePostal": "27390", - "codeCommune": "27530", - "libelleAcheminement": "ST DENIS D AUGERONS", - "nomCommune": "ST DENIS D AUGERONS" + "codePostal": "49330", + "codeCommune": "49205", + "libelleAcheminement": "MIRE", + "nomCommune": "MIRE" }, { - "codePostal": "39120", - "codeCommune": "39077", - "libelleAcheminement": "BRETENIERES", - "nomCommune": "BRETENIERES" + "codePostal": "49270", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "62330", - "codeCommune": "62473", - "libelleAcheminement": "ISBERGUES", - "nomCommune": "ISBERGUES" + "codePostal": "33710", + "codeCommune": "33339", + "libelleAcheminement": "PRIGNAC ET MARCAMPS", + "nomCommune": "PRIGNAC ET MARCAMPS" }, { - "codePostal": "11390", - "codeCommune": "11079", - "libelleAcheminement": "CAUDEBRONDE", - "nomCommune": "CAUDEBRONDE" + "codePostal": "35111", + "codeCommune": "35116", + "libelleAcheminement": "LA FRESNAIS", + "nomCommune": "LA FRESNAIS" }, { - "codePostal": "27370", - "codeCommune": "27534", - "libelleAcheminement": "ST DIDIER DES BOIS", - "nomCommune": "ST DIDIER DES BOIS" + "codePostal": "49110", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "39380", - "codeCommune": "39093", - "libelleAcheminement": "CHAMBLAY", - "nomCommune": "CHAMBLAY" + "codePostal": "49270", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "62330", - "codeCommune": "62473", - "libelleAcheminement": "ISBERGUES", - "nomCommune": "ISBERGUES" + "codePostal": "33350", + "codeCommune": "33344", + "libelleAcheminement": "PUJOLS", + "nomCommune": "PUJOLS" }, { - "codePostal": "11230", - "codeCommune": "11080", - "libelleAcheminement": "VAL DE LAMBRONNE", - "nomCommune": "VAL DE LAMBRONNE" + "codePostal": "35580", + "codeCommune": "35123", + "libelleAcheminement": "GOVEN", + "nomCommune": "GOVEN" }, { - "codePostal": "27920", - "codeCommune": "27539", - "libelleAcheminement": "ST ETIENNE SOUS BAILLEUL", - "nomCommune": "ST ETIENNE SOUS BAILLEUL" + "codePostal": "49600", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "39300", - "codeCommune": "39097", - "libelleAcheminement": "CHAMPAGNOLE", - "nomCommune": "CHAMPAGNOLE" + "codePostal": "49530", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "62360", - "codeCommune": "62474", - "libelleAcheminement": "ISQUES", - "nomCommune": "ISQUES" + "codePostal": "33190", + "codeCommune": "33346", + "libelleAcheminement": "PUYBARBAN", + "nomCommune": "PUYBARBAN" }, { - "codePostal": "11220", - "codeCommune": "11083", - "libelleAcheminement": "CAUNETTES EN VAL", - "nomCommune": "CAUNETTES EN VAL" + "codePostal": "35580", + "codeCommune": "35126", + "libelleAcheminement": "GUICHEN", + "nomCommune": "GUICHEN" }, { - "codePostal": "27450", - "codeCommune": "27542", - "libelleAcheminement": "ST GEORGES DU VIEVRE", - "nomCommune": "ST GEORGES DU VIEVRE" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "01590", - "codeCommune": "39102", - "libelleAcheminement": "CHANCIA", - "nomCommune": "CHANCIA" + "codePostal": "49330", + "codeCommune": "49080", + "libelleAcheminement": "LES HAUTS D ANJOU", + "nomCommune": "LES HAUTS D ANJOU" }, { - "codePostal": "62490", - "codeCommune": "62476", - "libelleAcheminement": "IZEL LES EQUERCHIN", - "nomCommune": "IZEL LES EQUERCHIN" + "codePostal": "33220", + "codeCommune": "33354", + "libelleAcheminement": "RIOCAUD", + "nomCommune": "RIOCAUD" }, { - "codePostal": "11270", - "codeCommune": "11087", - "libelleAcheminement": "CAZALRENOUX", - "nomCommune": "CAZALRENOUX" + "codePostal": "35580", + "codeCommune": "35127", + "libelleAcheminement": "GUIGNEN", + "nomCommune": "GUIGNEN" }, { - "codePostal": "27370", - "codeCommune": "27545", - "libelleAcheminement": "ST GERMAIN DE PASQUIER", - "nomCommune": "ST GERMAIN DE PASQUIER" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "39110", - "codeCommune": "39103", - "libelleAcheminement": "LA CHAPELLE SUR FURIEUSE", - "nomCommune": "LA CHAPELLE SUR FURIEUSE" + "codePostal": "49330", + "codeCommune": "49080", + "libelleAcheminement": "LES HAUTS D ANJOU", + "nomCommune": "LES HAUTS D ANJOU" }, { - "codePostal": "62690", - "codeCommune": "62477", - "libelleAcheminement": "IZEL LES HAMEAU", - "nomCommune": "IZEL LES HAMEAU" + "codePostal": "33126", + "codeCommune": "33356", + "libelleAcheminement": "LA RIVIERE", + "nomCommune": "LA RIVIERE" }, { - "codePostal": "11140", - "codeCommune": "11093", - "libelleAcheminement": "LE CLAT", - "nomCommune": "LE CLAT" + "codePostal": "35590", + "codeCommune": "35131", + "libelleAcheminement": "L HERMITAGE", + "nomCommune": "L HERMITAGE" }, { - "codePostal": "27160", - "codeCommune": "27565", - "libelleAcheminement": "LE LESME", - "nomCommune": "LE LESME" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "39140", - "codeCommune": "39104", - "libelleAcheminement": "CHAPELLE VOLAND", - "nomCommune": "CHAPELLE VOLAND" + "codePostal": "49330", + "codeCommune": "49080", + "libelleAcheminement": "LES HAUTS D ANJOU", + "nomCommune": "LES HAUTS D ANJOU" }, { - "codePostal": "62850", - "codeCommune": "62478", - "libelleAcheminement": "JOURNY", - "nomCommune": "JOURNY" + "codePostal": "33670", + "codeCommune": "33363", + "libelleAcheminement": "SADIRAC", + "nomCommune": "SADIRAC" }, { - "codePostal": "11340", - "codeCommune": "11096", - "libelleAcheminement": "COMUS", - "nomCommune": "COMUS" + "codePostal": "35890", + "codeCommune": "35139", + "libelleAcheminement": "LAILLE", + "nomCommune": "LAILLE" }, { - "codePostal": "27150", - "codeCommune": "27567", - "libelleAcheminement": "STE MARIE DE VATIMESNIL", - "nomCommune": "STE MARIE DE VATIMESNIL" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "39130", - "codeCommune": "39118", - "libelleAcheminement": "CHATEL DE JOUX", - "nomCommune": "CHATEL DE JOUX" + "codePostal": "49540", + "codeCommune": "49086", + "libelleAcheminement": "TERRANJOU", + "nomCommune": "TERRANJOU" }, { - "codePostal": "62113", - "codeCommune": "62480", - "libelleAcheminement": "LABOURSE", - "nomCommune": "LABOURSE" + "codePostal": "33790", + "codeCommune": "33372", + "libelleAcheminement": "ST ANTOINE DU QUEYRET", + "nomCommune": "ST ANTOINE DU QUEYRET" }, { - "codePostal": "11200", - "codeCommune": "11098", - "libelleAcheminement": "CONILHAC CORBIERES", - "nomCommune": "CONILHAC CORBIERES" + "codePostal": "35850", + "codeCommune": "35144", + "libelleAcheminement": "LANGAN", + "nomCommune": "LANGAN" }, { - "codePostal": "27370", - "codeCommune": "27572", - "libelleAcheminement": "ST MESLIN DU BOSC", - "nomCommune": "ST MESLIN DU BOSC" + "codePostal": "49410", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "39150", - "codeCommune": "39130", - "libelleAcheminement": "NANCHEZ", - "nomCommune": "NANCHEZ" + "codePostal": "49750", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "62159", - "codeCommune": "62484", - "libelleAcheminement": "LAGNICOURT MARCEL", - "nomCommune": "LAGNICOURT MARCEL" + "codePostal": "33660", + "codeCommune": "33373", + "libelleAcheminement": "ST ANTOINE SUR L ISLE", + "nomCommune": "ST ANTOINE SUR L ISLE" }, { - "codePostal": "11600", - "codeCommune": "11099", - "libelleAcheminement": "CONQUES SUR ORBIEL", - "nomCommune": "CONQUES SUR ORBIEL" + "codePostal": "35550", + "codeCommune": "35151", + "libelleAcheminement": "LIEURON", + "nomCommune": "LIEURON" }, { - "codePostal": "27450", - "codeCommune": "27594", - "libelleAcheminement": "ST PIERRE DES IFS", - "nomCommune": "ST PIERRE DES IFS" + "codePostal": "49410", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "39150", - "codeCommune": "39131", - "libelleAcheminement": "CHAUX DU DOMBIEF", - "nomCommune": "LA CHAUX DU DOMBIEF" + "codePostal": "49700", + "codeCommune": "49100", + "libelleAcheminement": "CIZAY LA MADELEINE", + "nomCommune": "CIZAY LA MADELEINE" }, { - "codePostal": "62630", - "codeCommune": "62496", - "libelleAcheminement": "LEFAUX", - "nomCommune": "LEFAUX" + "codePostal": "33160", + "codeCommune": "33376", + "libelleAcheminement": "ST AUBIN DE MEDOC", + "nomCommune": "ST AUBIN DE MEDOC" }, { - "codePostal": "11250", - "codeCommune": "11102", - "libelleAcheminement": "COUFFOULENS", - "nomCommune": "COUFFOULENS" + "codePostal": "35133", + "codeCommune": "35163", + "libelleAcheminement": "LUITRE DOMPIERRE", + "nomCommune": "LUITRE DOMPIERRE" }, { - "codePostal": "27370", - "codeCommune": "27595", - "libelleAcheminement": "ST PIERRE DU BOSGUERARD", - "nomCommune": "ST PIERRE DU BOSGUERARD" + "codePostal": "49420", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "39240", - "codeCommune": "39137", - "libelleAcheminement": "ST HYMETIERE SUR VALOUSE", - "nomCommune": "ST HYMETIERE SUR VALOUSE" + "codePostal": "49560", + "codeCommune": "49102", + "libelleAcheminement": "CLERE SUR LAYON", + "nomCommune": "CLERE SUR LAYON" }, { - "codePostal": "62136", - "codeCommune": "62502", - "libelleAcheminement": "LESTREM", - "nomCommune": "LESTREM" + "codePostal": "33340", + "codeCommune": "33383", + "libelleAcheminement": "ST CHRISTOLY MEDOC", + "nomCommune": "ST CHRISTOLY MEDOC" }, { - "codePostal": "11190", - "codeCommune": "11103", - "libelleAcheminement": "COUIZA", - "nomCommune": "COUIZA" + "codePostal": "35520", + "codeCommune": "35173", + "libelleAcheminement": "MELESSE", + "nomCommune": "MELESSE" }, { - "codePostal": "27430", - "codeCommune": "27598", - "libelleAcheminement": "ST PIERRE DU VAUVRAY", - "nomCommune": "ST PIERRE DU VAUVRAY" + "codePostal": "49430", + "codeCommune": "49257", + "libelleAcheminement": "LES RAIRIES", + "nomCommune": "LES RAIRIES" }, { - "codePostal": "39190", - "codeCommune": "39142", - "libelleAcheminement": "CHEVREAUX", - "nomCommune": "CHEVREAUX" + "codePostal": "49260", + "codeCommune": "49113", + "libelleAcheminement": "COURCHAMPS", + "nomCommune": "COURCHAMPS" }, { - "codePostal": "62250", - "codeCommune": "62503", - "libelleAcheminement": "LEUBRINGHEN", - "nomCommune": "LEUBRINGHEN" + "codePostal": "33570", + "codeCommune": "33386", + "libelleAcheminement": "ST CIBARD", + "nomCommune": "ST CIBARD" }, { - "codePostal": "11190", - "codeCommune": "11112", - "libelleAcheminement": "CUBIERES SUR CINOBLE", - "nomCommune": "CUBIERES SUR CINOBLE" + "codePostal": "35360", + "codeCommune": "35184", + "libelleAcheminement": "MONTAUBAN DE BRETAGNE", + "nomCommune": "MONTAUBAN DE BRETAGNE" }, { - "codePostal": "27560", - "codeCommune": "27603", - "libelleAcheminement": "ST SIMEON", - "nomCommune": "ST SIMEON" + "codePostal": "49190", + "codeCommune": "49259", + "libelleAcheminement": "ROCHEFORT SUR LOIRE", + "nomCommune": "ROCHEFORT SUR LOIRE" }, { - "codePostal": "39570", - "codeCommune": "39145", - "libelleAcheminement": "CHILLE", - "nomCommune": "CHILLE" + "codePostal": "49390", + "codeCommune": "49114", + "libelleAcheminement": "COURLEON", + "nomCommune": "COURLEON" }, { - "codePostal": "62250", - "codeCommune": "62505", - "libelleAcheminement": "LEULINGHEN BERNES", - "nomCommune": "LEULINGHEN BERNES" + "codePostal": "33430", + "codeCommune": "33391", + "libelleAcheminement": "ST COME", + "nomCommune": "ST COME" }, { - "codePostal": "11240", - "codeCommune": "11121", - "libelleAcheminement": "DONAZAC", - "nomCommune": "DONAZAC" + "codePostal": "35290", + "codeCommune": "35201", + "libelleAcheminement": "MUEL", + "nomCommune": "MUEL" }, { - "codePostal": "27210", - "codeCommune": "27604", - "libelleAcheminement": "ST SULPICE DE GRIMBOUVILLE", - "nomCommune": "ST SULPICE DE GRIMBOUVILLE" + "codePostal": "49740", + "codeCommune": "49260", + "libelleAcheminement": "LA ROMAGNE", + "nomCommune": "LA ROMAGNE" }, { - "codePostal": "39380", - "codeCommune": "39149", - "libelleAcheminement": "CHISSEY SUR LOUE", - "nomCommune": "CHISSEY SUR LOUE" + "codePostal": "49700", + "codeCommune": "49125", + "libelleAcheminement": "DOUE EN ANJOU", + "nomCommune": "DOUE EN ANJOU" }, { - "codePostal": "62850", - "codeCommune": "62506", - "libelleAcheminement": "LICQUES", - "nomCommune": "LICQUES" + "codePostal": "33410", + "codeCommune": "33392", + "libelleAcheminement": "STE CROIX DU MONT", + "nomCommune": "STE CROIX DU MONT" }, { - "codePostal": "11360", - "codeCommune": "11125", - "libelleAcheminement": "EMBRES ET CASTELMAURE", - "nomCommune": "EMBRES ET CASTELMAURE" + "codePostal": "35230", + "codeCommune": "35208", + "libelleAcheminement": "ORGERES", + "nomCommune": "ORGERES" }, { - "codePostal": "27500", - "codeCommune": "27606", - "libelleAcheminement": "ST SYMPHORIEN", - "nomCommune": "ST SYMPHORIEN" + "codePostal": "49124", + "codeCommune": "49267", + "libelleAcheminement": "ST BARTHELEMY D ANJOU", + "nomCommune": "ST BARTHELEMY D ANJOU" }, { - "codePostal": "39100", - "codeCommune": "39150", - "libelleAcheminement": "CHOISEY", - "nomCommune": "CHOISEY" + "codePostal": "49700", + "codeCommune": "49125", + "libelleAcheminement": "DOUE EN ANJOU", + "nomCommune": "DOUE EN ANJOU" }, { - "codePostal": "62190", - "codeCommune": "62508", - "libelleAcheminement": "LIERES", - "nomCommune": "LIERES" + "codePostal": "33580", + "codeCommune": "33400", + "libelleAcheminement": "ST FERME", + "nomCommune": "ST FERME" }, { - "codePostal": "11240", - "codeCommune": "11128", - "libelleAcheminement": "ESCUEILLENS ET ST JUST", - "nomCommune": "ESCUEILLENS ET ST JUST DE BELENGARD" + "codePostal": "35320", + "codeCommune": "35212", + "libelleAcheminement": "PANCE", + "nomCommune": "PANCE" }, { - "codePostal": "27800", - "codeCommune": "27609", - "libelleAcheminement": "ST VICTOR D EPINE", - "nomCommune": "ST VICTOR D EPINE" + "codePostal": "49130", + "codeCommune": "49288", + "libelleAcheminement": "ST JEAN DE LA CROIX", + "nomCommune": "ST JEAN DE LA CROIX" }, { - "codePostal": "39370", - "codeCommune": "39151", - "libelleAcheminement": "CHOUX", - "nomCommune": "CHOUX" + "codePostal": "49700", + "codeCommune": "49125", + "libelleAcheminement": "DOUE EN ANJOU", + "nomCommune": "DOUE EN ANJOU" }, { - "codePostal": "62145", - "codeCommune": "62509", - "libelleAcheminement": "LIETTRES", - "nomCommune": "LIETTRES" + "codePostal": "33490", + "codeCommune": "33403", + "libelleAcheminement": "STE FOY LA LONGUE", + "nomCommune": "STE FOY LA LONGUE" }, { - "codePostal": "11270", - "codeCommune": "11136", - "libelleAcheminement": "FANJEAUX", - "nomCommune": "FANJEAUX" + "codePostal": "35133", + "codeCommune": "35215", + "libelleAcheminement": "PARIGNE", + "nomCommune": "PARIGNE" }, { - "codePostal": "27370", - "codeCommune": "27616", - "libelleAcheminement": "LA SAUSSAYE", - "nomCommune": "LA SAUSSAYE" + "codePostal": "49070", + "codeCommune": "49294", + "libelleAcheminement": "ST LAMBERT LA POTHERIE", + "nomCommune": "ST LAMBERT LA POTHERIE" }, { - "codePostal": "39800", - "codeCommune": "39159", - "libelleAcheminement": "COLONNE", - "nomCommune": "COLONNE" + "codePostal": "49250", + "codeCommune": "49138", + "libelleAcheminement": "LES BOIS D ANJOU", + "nomCommune": "LES BOIS D ANJOU" }, { - "codePostal": "62960", - "codeCommune": "62512", - "libelleAcheminement": "LIGNY LES AIRE", - "nomCommune": "LIGNY LES AIRE" + "codePostal": "33580", + "codeCommune": "33404", + "libelleAcheminement": "STE GEMME", + "nomCommune": "STE GEMME" }, { - "codePostal": "11330", - "codeCommune": "11137", - "libelleAcheminement": "FELINES TERMENES", - "nomCommune": "FELINES TERMENES" + "codePostal": "35370", + "codeCommune": "35217", + "libelleAcheminement": "LE PERTRE", + "nomCommune": "LE PERTRE" }, { - "codePostal": "27400", - "codeCommune": "27623", - "libelleAcheminement": "SURTAUVILLE", - "nomCommune": "SURTAUVILLE" + "codePostal": "49070", + "codeCommune": "49298", + "libelleAcheminement": "ST LEGER DE LINIERES", + "nomCommune": "ST LEGER DE LINIERES" }, { - "codePostal": "39300", - "codeCommune": "39165", - "libelleAcheminement": "CONTE", - "nomCommune": "CONTE" + "codePostal": "49700", + "codeCommune": "49182", + "libelleAcheminement": "LOURESSE ROCHEMENIER", + "nomCommune": "LOURESSE ROCHEMENIER" }, { - "codePostal": "62270", - "codeCommune": "62513", - "libelleAcheminement": "LIGNY SUR CANCHE", - "nomCommune": "LIGNY SUR CANCHE" + "codePostal": "33920", + "codeCommune": "33416", + "libelleAcheminement": "ST GIRONS D AIGUEVIVES", + "nomCommune": "ST GIRONS D AIGUEVIVES" }, { - "codePostal": "11510", - "codeCommune": "11143", - "libelleAcheminement": "FEUILLA", - "nomCommune": "FEUILLA" + "codePostal": "35320", + "codeCommune": "35218", + "libelleAcheminement": "LE PETIT FOUGERAY", + "nomCommune": "LE PETIT FOUGERAY" }, { - "codePostal": "27800", - "codeCommune": "27630", - "libelleAcheminement": "THIBOUVILLE", - "nomCommune": "THIBOUVILLE" + "codePostal": "49230", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "39240", - "codeCommune": "39166", - "libelleAcheminement": "CORNOD", - "nomCommune": "CORNOD" + "codePostal": "49440", + "codeCommune": "49183", + "libelleAcheminement": "VAL D ERDRE AUXENCE", + "nomCommune": "VAL D ERDRE AUXENCE" }, { - "codePostal": "62270", - "codeCommune": "62518", - "libelleAcheminement": "LINZEUX", - "nomCommune": "LINZEUX" + "codePostal": "33540", + "codeCommune": "33419", + "libelleAcheminement": "ST HILAIRE DU BOIS", + "nomCommune": "ST HILAIRE DU BOIS" }, { - "codePostal": "11510", - "codeCommune": "11144", - "libelleAcheminement": "FITOU", - "nomCommune": "FITOU" + "codePostal": "35550", + "codeCommune": "35219", + "libelleAcheminement": "PIPRIAC", + "nomCommune": "PIPRIAC" }, { - "codePostal": "27290", - "codeCommune": "27631", - "libelleAcheminement": "THIERVILLE", - "nomCommune": "THIERVILLE" + "codePostal": "49800", + "codeCommune": "49307", + "libelleAcheminement": "LOIRE AUTHION", + "nomCommune": "LOIRE AUTHION" }, { - "codePostal": "39700", - "codeCommune": "39172", - "libelleAcheminement": "COURTEFONTAINE", - "nomCommune": "COURTEFONTAINE" + "codePostal": "49140", + "codeCommune": "49188", + "libelleAcheminement": "MARCE", + "nomCommune": "MARCE" }, { - "codePostal": "62140", - "codeCommune": "62521", - "libelleAcheminement": "LA LOGE", - "nomCommune": "LA LOGE" + "codePostal": "33240", + "codeCommune": "33425", + "libelleAcheminement": "ST LAURENT D ARCE", + "nomCommune": "ST LAURENT D ARCE" }, { - "codePostal": "11140", - "codeCommune": "11147", - "libelleAcheminement": "FONTANES DE SAULT", - "nomCommune": "FONTANES DE SAULT" + "codePostal": "35150", + "codeCommune": "35220", + "libelleAcheminement": "PIRE CHANCE", + "nomCommune": "PIRE CHANCE" }, { - "codePostal": "27170", - "codeCommune": "27640", - "libelleAcheminement": "TILLEUL DAME AGNES", - "nomCommune": "TILLEUL DAME AGNES" + "codePostal": "49400", + "codeCommune": "49328", + "libelleAcheminement": "SAUMUR", + "nomCommune": "SAUMUR" }, { - "codePostal": "39270", - "codeCommune": "39180", - "libelleAcheminement": "CRESSIA", - "nomCommune": "CRESSIA" + "codePostal": "49122", + "codeCommune": "49193", + "libelleAcheminement": "LE MAY SUR EVRE", + "nomCommune": "LE MAY SUR EVRE" }, { - "codePostal": "62610", - "codeCommune": "62531", - "libelleAcheminement": "LOUCHES", - "nomCommune": "LOUCHES" + "codePostal": "33440", + "codeCommune": "33434", + "libelleAcheminement": "ST LOUIS DE MONTFERRAND", + "nomCommune": "ST LOUIS DE MONTFERRAND" }, { - "codePostal": "11360", - "codeCommune": "11157", - "libelleAcheminement": "FRAISSE DES CORBIERES", - "nomCommune": "FRAISSE DES CORBIERES" + "codePostal": "35680", + "codeCommune": "35220", + "libelleAcheminement": "PIRE CHANCE", + "nomCommune": "PIRE CHANCE" }, { - "codePostal": "27400", - "codeCommune": "27666", - "libelleAcheminement": "LA VACHERIE", - "nomCommune": "LA VACHERIE" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "39300", - "codeCommune": "39183", - "libelleAcheminement": "CROTENAY", - "nomCommune": "CROTENAY" + "codePostal": "49220", + "codeCommune": "49200", + "libelleAcheminement": "LONGUENEE EN ANJOU", + "nomCommune": "LONGUENEE EN ANJOU" }, { - "codePostal": "62540", - "codeCommune": "62532", - "libelleAcheminement": "LOZINGHEM", - "nomCommune": "LOZINGHEM" + "codePostal": "33910", + "codeCommune": "33442", + "libelleAcheminement": "ST MARTIN DE LAYE", + "nomCommune": "ST MARTIN DE LAYE" }, { - "codePostal": "11270", - "codeCommune": "11162", - "libelleAcheminement": "GENERVILLE", - "nomCommune": "GENERVILLE" + "codePostal": "35540", + "codeCommune": "35224", + "libelleAcheminement": "PLERGUER", + "nomCommune": "PLERGUER" }, { - "codePostal": "27380", - "codeCommune": "27670", - "libelleAcheminement": "VANDRIMARE", - "nomCommune": "VANDRIMARE" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "39190", - "codeCommune": "39185", - "libelleAcheminement": "CUISIA", - "nomCommune": "CUISIA" + "codePostal": "49770", + "codeCommune": "49200", + "libelleAcheminement": "LONGUENEE EN ANJOU", + "nomCommune": "LONGUENEE EN ANJOU" }, { - "codePostal": "62270", - "codeCommune": "62537", - "libelleAcheminement": "MAGNICOURT SUR CANCHE", - "nomCommune": "MAGNICOURT SUR CANCHE" + "codePostal": "33910", + "codeCommune": "33445", + "libelleAcheminement": "ST MARTIN DU BOIS", + "nomCommune": "ST MARTIN DU BOIS" }, { - "codePostal": "11430", - "codeCommune": "11170", - "libelleAcheminement": "GRUISSAN", - "nomCommune": "GRUISSAN" + "codePostal": "35500", + "codeCommune": "35229", + "libelleAcheminement": "POCE LES BOIS", + "nomCommune": "POCE LES BOIS" }, { - "codePostal": "27120", - "codeCommune": "27674", - "libelleAcheminement": "VAUX SUR EURE", - "nomCommune": "VAUX SUR EURE" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "39120", - "codeCommune": "39193", - "libelleAcheminement": "LE DESCHAUX", - "nomCommune": "LE DESCHAUX" + "codePostal": "49460", + "codeCommune": "49214", + "libelleAcheminement": "MONTREUIL JUIGNE", + "nomCommune": "MONTREUIL JUIGNE" }, { - "codePostal": "62990", - "codeCommune": "62552", - "libelleAcheminement": "MARESQUEL ECQUEMICOURT", - "nomCommune": "MARESQUEL ECQUEMICOURT" + "codePostal": "33650", + "codeCommune": "33448", + "libelleAcheminement": "ST MEDARD D EYRANS", + "nomCommune": "ST MEDARD D EYRANS" }, { - "codePostal": "11200", - "codeCommune": "11172", - "libelleAcheminement": "HOMPS", - "nomCommune": "HOMPS" + "codePostal": "35650", + "codeCommune": "35240", + "libelleAcheminement": "LE RHEU", + "nomCommune": "LE RHEU" }, { - "codePostal": "27160", - "codeCommune": "27679", - "libelleAcheminement": "VERNEUIL D AVRE ET D ITON", - "nomCommune": "VERNEUIL D AVRE ET D ITON" + "codePostal": "49360", + "codeCommune": "49336", + "libelleAcheminement": "SOMLOIRE", + "nomCommune": "SOMLOIRE" }, { - "codePostal": "39160", - "codeCommune": "39209", - "libelleAcheminement": "VAL D EPY", - "nomCommune": "VAL D EPY" + "codePostal": "49220", + "codeCommune": "49217", + "libelleAcheminement": "MONTREUIL SUR MAINE", + "nomCommune": "MONTREUIL SUR MAINE" }, { - "codePostal": "62127", - "codeCommune": "62558", - "libelleAcheminement": "MARQUAY", - "nomCommune": "MARQUAY" + "codePostal": "33160", + "codeCommune": "33449", + "libelleAcheminement": "ST MEDARD EN JALLES", + "nomCommune": "ST MEDARD EN JALLES" }, { - "codePostal": "11220", - "codeCommune": "11185", - "libelleAcheminement": "LAGRASSE", - "nomCommune": "LAGRASSE" + "codePostal": "35250", + "codeCommune": "35251", + "libelleAcheminement": "ST AUBIN D AUBIGNE", + "nomCommune": "ST AUBIN D AUBIGNE" }, { - "codePostal": "27700", - "codeCommune": "27683", - "libelleAcheminement": "VEZILLON", - "nomCommune": "VEZILLON" + "codePostal": "49460", + "codeCommune": "49339", + "libelleAcheminement": "SOULAIRE ET BOURG", + "nomCommune": "SOULAIRE ET BOURG" }, { - "codePostal": "39160", - "codeCommune": "39209", - "libelleAcheminement": "VAL D EPY", - "nomCommune": "VAL D EPY" + "codePostal": "49110", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "62250", - "codeCommune": "62560", - "libelleAcheminement": "MARQUISE", - "nomCommune": "MARQUISE" + "codePostal": "33840", + "codeCommune": "33450", + "libelleAcheminement": "ST MICHEL DE CASTELNAU", + "nomCommune": "ST MICHEL DE CASTELNAU" }, { - "codePostal": "11330", - "codeCommune": "11186", - "libelleAcheminement": "LAIRIERE", - "nomCommune": "LAIRIERE" + "codePostal": "35500", + "codeCommune": "35252", + "libelleAcheminement": "ST AUBIN DES LANDES", + "nomCommune": "ST AUBIN DES LANDES" }, { - "codePostal": "27330", - "codeCommune": "27685", - "libelleAcheminement": "LA VIEILLE LYRE", - "nomCommune": "LA VIEILLE LYRE" + "codePostal": "49220", + "codeCommune": "49344", + "libelleAcheminement": "THORIGNE D ANJOU", + "nomCommune": "THORIGNE D ANJOU" }, { - "codePostal": "39120", - "codeCommune": "39211", - "libelleAcheminement": "LES ESSARDS TAIGNEVAUX", - "nomCommune": "LES ESSARDS TAIGNEVAUX" + "codePostal": "49110", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "62310", - "codeCommune": "62565", - "libelleAcheminement": "MENCAS", - "nomCommune": "MENCAS" + "codePostal": "33390", + "codeCommune": "33458", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "11600", - "codeCommune": "11194", - "libelleAcheminement": "LASTOURS", - "nomCommune": "LASTOURS" + "codePostal": "35140", + "codeCommune": "35253", + "libelleAcheminement": "ST AUBIN DU CORMIER", + "nomCommune": "ST AUBIN DU CORMIER" }, { - "codePostal": "27110", - "codeCommune": "27692", - "libelleAcheminement": "VILLETTES", - "nomCommune": "VILLETTES" + "codePostal": "49125", + "codeCommune": "49347", + "libelleAcheminement": "TIERCE", + "nomCommune": "TIERCE" }, { - "codePostal": "39250", - "codeCommune": "39221", - "libelleAcheminement": "LA FAVIERE", - "nomCommune": "LA FAVIERE" + "codePostal": "49110", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "62127", - "codeCommune": "62580", - "libelleAcheminement": "MONCHY BRETON", - "nomCommune": "MONCHY BRETON" + "codePostal": "33330", + "codeCommune": "33480", + "libelleAcheminement": "ST SULPICE DE FALEYRENS", + "nomCommune": "ST SULPICE DE FALEYRENS" }, { - "codePostal": "11370", - "codeCommune": "11202", - "libelleAcheminement": "LEUCATE", - "nomCommune": "LEUCATE" + "codePostal": "35630", + "codeCommune": "35258", + "libelleAcheminement": "ST BRIEUC DES IFFS", + "nomCommune": "ST BRIEUC DES IFFS" }, { - "codePostal": "27110", - "codeCommune": "27695", - "libelleAcheminement": "VILLEZ SUR LE NEUBOURG", - "nomCommune": "VILLEZ SUR LE NEUBOURG" + "codePostal": "49800", + "codeCommune": "49353", + "libelleAcheminement": "TRELAZE", + "nomCommune": "TRELAZE" }, { - "codePostal": "39460", - "codeCommune": "39228", - "libelleAcheminement": "FONCINE LE HAUT", - "nomCommune": "FONCINE LE HAUT" + "codePostal": "49110", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "62134", - "codeCommune": "62581", - "libelleAcheminement": "MONCHY CAYEUX", - "nomCommune": "MONCHY CAYEUX" + "codePostal": "33540", + "codeCommune": "33482", + "libelleAcheminement": "ST SULPICE DE POMMIERS", + "nomCommune": "ST SULPICE DE POMMIERS" }, { - "codePostal": "11600", - "codeCommune": "11205", - "libelleAcheminement": "LIMOUSIS", - "nomCommune": "LIMOUSIS" + "codePostal": "35134", + "codeCommune": "35262", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "27370", - "codeCommune": "27700", - "libelleAcheminement": "VRAIVILLE", - "nomCommune": "VRAIVILLE" + "codePostal": "49730", + "codeCommune": "49361", + "libelleAcheminement": "VARENNES SUR LOIRE", + "nomCommune": "VARENNES SUR LOIRE" }, { - "codePostal": "39130", - "codeCommune": "39230", - "libelleAcheminement": "FONTENU", - "nomCommune": "FONTENU" + "codePostal": "49640", + "codeCommune": "49220", + "libelleAcheminement": "MORANNES SUR SARTHE DAUMERAY", + "nomCommune": "MORANNES SUR SARTHE DAUMERAY" }, { - "codePostal": "62170", - "codeCommune": "62585", - "libelleAcheminement": "MONTCAVREL", - "nomCommune": "MONTCAVREL" + "codePostal": "33450", + "codeCommune": "33483", + "libelleAcheminement": "ST SULPICE ET CAMEYRAC", + "nomCommune": "ST SULPICE ET CAMEYRAC" }, { - "codePostal": "11120", - "codeCommune": "11217", - "libelleAcheminement": "MARCORIGNAN", - "nomCommune": "MARCORIGNAN" + "codePostal": "35133", + "codeCommune": "35273", + "libelleAcheminement": "ST GERMAIN EN COGLES", + "nomCommune": "ST GERMAIN EN COGLES" }, { - "codePostal": "27100", - "codeCommune": "27701", - "libelleAcheminement": "VAL DE REUIL", - "nomCommune": "VAL DE REUIL" + "codePostal": "49370", + "codeCommune": "49367", + "libelleAcheminement": "ERDRE EN ANJOU", + "nomCommune": "ERDRE EN ANJOU" }, { - "codePostal": "39250", - "codeCommune": "39237", - "libelleAcheminement": "FRAROZ", - "nomCommune": "FRAROZ" + "codePostal": "49390", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "62124", - "codeCommune": "62591", - "libelleAcheminement": "MORCHIES", - "nomCommune": "MORCHIES" + "codePostal": "33710", + "codeCommune": "33486", + "libelleAcheminement": "ST TROJAN", + "nomCommune": "ST TROJAN" }, { - "codePostal": "11140", - "codeCommune": "11219", - "libelleAcheminement": "MARSA", - "nomCommune": "MARSA" + "codePostal": "35220", + "codeCommune": "35283", + "libelleAcheminement": "ST JEAN SUR VILAINE", + "nomCommune": "ST JEAN SUR VILAINE" }, { - "codePostal": "28800", - "codeCommune": "28005", - "libelleAcheminement": "ALLUYES", - "nomCommune": "ALLUYES" + "codePostal": "49390", + "codeCommune": "49368", + "libelleAcheminement": "VERNANTES", + "nomCommune": "VERNANTES" }, { - "codePostal": "39240", - "codeCommune": "39247", - "libelleAcheminement": "GENOD", - "nomCommune": "GENOD" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "62910", - "codeCommune": "62592", - "libelleAcheminement": "MORINGHEM", - "nomCommune": "MORINGHEM" + "codePostal": "33920", + "codeCommune": "33492", + "libelleAcheminement": "ST YZAN DE SOUDIAC", + "nomCommune": "ST YZAN DE SOUDIAC" }, { - "codePostal": "11390", - "codeCommune": "11221", - "libelleAcheminement": "LES MARTYS", - "nomCommune": "LES MARTYS" + "codePostal": "35800", + "codeCommune": "35287", + "libelleAcheminement": "ST LUNAIRE", + "nomCommune": "ST LUNAIRE" }, { - "codePostal": "28700", - "codeCommune": "28009", - "libelleAcheminement": "ARDELU", - "nomCommune": "ARDELU" + "codePostal": "49310", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "39190", - "codeCommune": "39255", - "libelleAcheminement": "GIZIA", - "nomCommune": "GIZIA" + "codePostal": "49490", + "codeCommune": "49237", + "libelleAcheminement": "LA PELLERINE", + "nomCommune": "LA PELLERINE" }, { - "codePostal": "62450", - "codeCommune": "62593", - "libelleAcheminement": "MORVAL", - "nomCommune": "MORVAL" + "codePostal": "33160", + "codeCommune": "33494", + "libelleAcheminement": "SALAUNES", + "nomCommune": "SALAUNES" }, { - "codePostal": "11380", - "codeCommune": "11222", - "libelleAcheminement": "MAS CABARDES", - "nomCommune": "MAS CABARDES" + "codePostal": "35500", + "codeCommune": "35300", + "libelleAcheminement": "ST M HERVE", + "nomCommune": "ST M HERVE" }, { - "codePostal": "28700", - "codeCommune": "28015", - "libelleAcheminement": "AUNEAU BLEURY ST SYMPHORIEN", - "nomCommune": "AUNEAU BLEURY ST SYMPHORIEN" + "codePostal": "49540", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "39360", - "codeCommune": "39269", - "libelleAcheminement": "JEURRE", - "nomCommune": "JEURRE" + "codePostal": "49410", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "62159", - "codeCommune": "62594", - "libelleAcheminement": "MORY", - "nomCommune": "MORY" + "codePostal": "33550", + "codeCommune": "33518", + "libelleAcheminement": "TABANAC", + "nomCommune": "TABANAC" }, { - "codePostal": "11330", - "codeCommune": "11224", - "libelleAcheminement": "MASSAC", - "nomCommune": "MASSAC" + "codePostal": "35190", + "codeCommune": "35307", + "libelleAcheminement": "ST PERN", + "nomCommune": "ST PERN" }, { - "codePostal": "28330", - "codeCommune": "28016", - "libelleAcheminement": "LES AUTELS VILLEVILLON", - "nomCommune": "LES AUTELS VILLEVILLON" + "codePostal": "49540", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "39320", - "codeCommune": "39273", - "libelleAcheminement": "MONTLAINSIA", - "nomCommune": "MONTLAINSIA" + "codePostal": "49170", + "codeCommune": "49247", + "libelleAcheminement": "LA POSSONNIERE", + "nomCommune": "LA POSSONNIERE" }, { - "codePostal": "62550", - "codeCommune": "62600", - "libelleAcheminement": "NEDON", - "nomCommune": "NEDON" + "codePostal": "33240", + "codeCommune": "33524", + "libelleAcheminement": "TARNES", + "nomCommune": "TARNES" }, { - "codePostal": "11410", - "codeCommune": "11231", - "libelleAcheminement": "MEZERVILLE", - "nomCommune": "MEZERVILLE" + "codePostal": "35720", + "codeCommune": "35308", + "libelleAcheminement": "MESNIL ROC H", + "nomCommune": "MESNIL ROC H" }, { - "codePostal": "28330", - "codeCommune": "28018", - "libelleAcheminement": "AUTHON DU PERCHE", - "nomCommune": "AUTHON DU PERCHE" + "codePostal": "49140", + "codeCommune": "49377", + "libelleAcheminement": "RIVES DU LOIR EN ANJOU", + "nomCommune": "RIVES DU LOIR EN ANJOU" }, { - "codePostal": "01410", - "codeCommune": "39274", - "libelleAcheminement": "LAJOUX", - "nomCommune": "LAJOUX" + "codePostal": "49420", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "62152", - "codeCommune": "62604", - "libelleAcheminement": "NEUFCHATEL HARDELOT", - "nomCommune": "NEUFCHATEL HARDELOT" + "codePostal": "33210", + "codeCommune": "33533", + "libelleAcheminement": "TOULENNE", + "nomCommune": "TOULENNE" }, { - "codePostal": "11420", - "codeCommune": "11236", - "libelleAcheminement": "MOLANDIER", - "nomCommune": "MOLANDIER" + "codePostal": "35133", + "codeCommune": "35324", + "libelleAcheminement": "LA SELLE EN LUITRE", + "nomCommune": "LA SELLE EN LUITRE" }, { - "codePostal": "28630", - "codeCommune": "28024", - "libelleAcheminement": "BARJOUVILLE", - "nomCommune": "BARJOUVILLE" + "codePostal": "49680", + "codeCommune": "49378", + "libelleAcheminement": "VIVY", + "nomCommune": "VIVY" }, { - "codePostal": "39130", - "codeCommune": "39278", - "libelleAcheminement": "LARGILLAY MARSONNAY", - "nomCommune": "LARGILLAY MARSONNAY" + "codePostal": "49420", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "62580", - "codeCommune": "62609", - "libelleAcheminement": "NEUVILLE ST VAAST", - "nomCommune": "NEUVILLE ST VAAST" + "codePostal": "33330", + "codeCommune": "33546", + "libelleAcheminement": "VIGNONET", + "nomCommune": "VIGNONET" }, { - "codePostal": "11250", - "codeCommune": "11242", - "libelleAcheminement": "MONTCLAR", - "nomCommune": "MONTCLAR" + "codePostal": "35235", + "codeCommune": "35334", + "libelleAcheminement": "THORIGNE FOUILLARD", + "nomCommune": "THORIGNE FOUILLARD" }, { - "codePostal": "28300", - "codeCommune": "28034", - "libelleAcheminement": "BERCHERES ST GERMAIN", - "nomCommune": "BERCHERES ST GERMAIN" + "codePostal": "50230", + "codeCommune": "50003", + "libelleAcheminement": "AGON COUTAINVILLE", + "nomCommune": "AGON COUTAINVILLE" }, { - "codePostal": "39140", - "codeCommune": "39279", - "libelleAcheminement": "LARNAUD", - "nomCommune": "LARNAUD" + "codePostal": "49520", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "62170", - "codeCommune": "62610", - "libelleAcheminement": "NEUVILLE SOUS MONTREUIL", - "nomCommune": "NEUVILLE SOUS MONTREUIL" + "codePostal": "33730", + "codeCommune": "33547", + "libelleAcheminement": "VILLANDRAUT", + "nomCommune": "VILLANDRAUT" }, { - "codePostal": "11330", - "codeCommune": "11245", - "libelleAcheminement": "MONTGAILLARD", - "nomCommune": "MONTGAILLARD" + "codePostal": "35460", + "codeCommune": "35336", + "libelleAcheminement": "LE TIERCENT", + "nomCommune": "LE TIERCENT" }, { - "codePostal": "28260", - "codeCommune": "28036", - "libelleAcheminement": "BERCHERES SUR VESGRE", - "nomCommune": "BERCHERES SUR VESGRE" + "codePostal": "50170", + "codeCommune": "50019", + "libelleAcheminement": "AUCEY LA PLAINE", + "nomCommune": "AUCEY LA PLAINE" }, { - "codePostal": "39700", - "codeCommune": "39284", - "libelleAcheminement": "LAVANGEOT", - "nomCommune": "LAVANGEOT" + "codePostal": "49520", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "62950", - "codeCommune": "62624", - "libelleAcheminement": "NOYELLES GODAULT", - "nomCommune": "NOYELLES GODAULT" + "codePostal": "33380", + "codeCommune": "33555", + "libelleAcheminement": "MARCHEPRIME", + "nomCommune": "MARCHEPRIME" }, { - "codePostal": "11240", - "codeCommune": "11246", - "libelleAcheminement": "MONTGRADAIL", - "nomCommune": "MONTGRADAIL" + "codePostal": "35380", + "codeCommune": "35340", + "libelleAcheminement": "TREFFENDEL", + "nomCommune": "TREFFENDEL" }, { - "codePostal": "28360", - "codeCommune": "28048", - "libelleAcheminement": "LA BOURDINIERE ST LOUP", - "nomCommune": "LA BOURDINIERE ST LOUP" + "codePostal": "50480", + "codeCommune": "50021", + "libelleAcheminement": "AUDOUVILLE LA HUBERT", + "nomCommune": "AUDOUVILLE LA HUBERT" }, { - "codePostal": "39170", - "codeCommune": "39286", - "libelleAcheminement": "LAVANS LES ST CLAUDE", - "nomCommune": "LAVANS LES ST CLAUDE" + "codePostal": "49260", + "codeCommune": "49253", + "libelleAcheminement": "LE PUY NOTRE DAME", + "nomCommune": "LE PUY NOTRE DAME" }, { - "codePostal": "62130", - "codeCommune": "62633", - "libelleAcheminement": "OEUF EN TERNOIS", - "nomCommune": "OEUF EN TERNOIS" + "codePostal": "34300", + "codeCommune": "34003", + "libelleAcheminement": "AGDE", + "nomCommune": "AGDE" }, { - "codePostal": "11170", - "codeCommune": "11253", - "libelleAcheminement": "MONTOLIEU", - "nomCommune": "MONTOLIEU" + "codePostal": "35270", + "codeCommune": "35342", + "libelleAcheminement": "TREMEHEUC", + "nomCommune": "TREMEHEUC" }, { - "codePostal": "28150", - "codeCommune": "28049", - "libelleAcheminement": "BONCE", - "nomCommune": "BONCE" + "codePostal": "50270", + "codeCommune": "50031", + "libelleAcheminement": "BARNEVILLE CARTERET", + "nomCommune": "BARNEVILLE CARTERET" }, { - "codePostal": "39170", - "codeCommune": "39286", - "libelleAcheminement": "LAVANS LES ST CLAUDE", - "nomCommune": "LAVANS LES ST CLAUDE" + "codePostal": "49160", + "codeCommune": "49261", + "libelleAcheminement": "GENNES VAL DE LOIRE", + "nomCommune": "GENNES VAL DE LOIRE" }, { - "codePostal": "62990", - "codeCommune": "62635", - "libelleAcheminement": "OFFIN", - "nomCommune": "OFFIN" + "codePostal": "34300", + "codeCommune": "34003", + "libelleAcheminement": "AGDE", + "nomCommune": "AGDE" }, { - "codePostal": "11200", - "codeCommune": "11256", - "libelleAcheminement": "MONTSERET", - "nomCommune": "MONTSERET" + "codePostal": "35450", + "codeCommune": "35347", + "libelleAcheminement": "VAL D IZE", + "nomCommune": "VAL D IZE" }, { - "codePostal": "28800", - "codeCommune": "28051", - "libelleAcheminement": "BONNEVAL", - "nomCommune": "BONNEVAL" + "codePostal": "50420", + "codeCommune": "50039", + "libelleAcheminement": "BEAUCOUDRAY", + "nomCommune": "BEAUCOUDRAY" }, { - "codePostal": "39240", - "codeCommune": "39290", - "libelleAcheminement": "VALZIN EN PETITE MONTAGNE", - "nomCommune": "VALZIN EN PETITE MONTAGNE" + "codePostal": "49350", + "codeCommune": "49261", + "libelleAcheminement": "GENNES VAL DE LOIRE", + "nomCommune": "GENNES VAL DE LOIRE" }, { - "codePostal": "62250", - "codeCommune": "62636", - "libelleAcheminement": "OFFRETHUN", - "nomCommune": "OFFRETHUN" + "codePostal": "34210", + "codeCommune": "34006", + "libelleAcheminement": "AIGNE", + "nomCommune": "AIGNE" }, { - "codePostal": "11700", - "codeCommune": "11261", - "libelleAcheminement": "MOUX", - "nomCommune": "MOUX" + "codePostal": "35160", + "codeCommune": "35351", + "libelleAcheminement": "LE VERGER", + "nomCommune": "LE VERGER" }, { - "codePostal": "28120", - "codeCommune": "28067", - "libelleAcheminement": "CERNAY", - "nomCommune": "CERNAY" + "codePostal": "50150", + "codeCommune": "50040", + "libelleAcheminement": "BEAUFICEL", + "nomCommune": "BEAUFICEL" }, { - "codePostal": "39170", - "codeCommune": "39293", - "libelleAcheminement": "LESCHERES", - "nomCommune": "LESCHERES" + "codePostal": "49350", + "codeCommune": "49261", + "libelleAcheminement": "GENNES VAL DE LOIRE", + "nomCommune": "GENNES VAL DE LOIRE" }, { - "codePostal": "62580", - "codeCommune": "62639", - "libelleAcheminement": "OPPY", - "nomCommune": "OPPY" + "codePostal": "34210", + "codeCommune": "34007", + "libelleAcheminement": "AIGUES VIVES", + "nomCommune": "AIGUES VIVES" }, { - "codePostal": "11100", - "codeCommune": "11262", - "libelleAcheminement": "NARBONNE", - "nomCommune": "NARBONNE" + "codePostal": "35770", + "codeCommune": "35352", + "libelleAcheminement": "VERN SUR SEICHE", + "nomCommune": "VERN SUR SEICHE" }, { - "codePostal": "28300", - "codeCommune": "28070", - "libelleAcheminement": "CHAMPHOL", - "nomCommune": "CHAMPHOL" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "39230", - "codeCommune": "39296", - "libelleAcheminement": "LOMBARD", - "nomCommune": "LOMBARD" + "codePostal": "49170", + "codeCommune": "49283", + "libelleAcheminement": "ST GEORGES SUR LOIRE", + "nomCommune": "ST GEORGES SUR LOIRE" }, { - "codePostal": "62860", - "codeCommune": "62646", - "libelleAcheminement": "PALLUEL", - "nomCommune": "PALLUEL" + "codePostal": "34600", + "codeCommune": "34008", + "libelleAcheminement": "LES AIRES", + "nomCommune": "LES AIRES" }, { - "codePostal": "11140", - "codeCommune": "11265", - "libelleAcheminement": "NIORT DE SAULT", - "nomCommune": "NIORT DE SAULT" + "codePostal": "35130", + "codeCommune": "35359", + "libelleAcheminement": "VISSEICHE", + "nomCommune": "VISSEICHE" }, { - "codePostal": "28200", - "codeCommune": "28075", - "libelleAcheminement": "LA CHAPELLE DU NOYER", - "nomCommune": "LA CHAPELLE DU NOYER" + "codePostal": "50160", + "codeCommune": "50054", + "libelleAcheminement": "BIEVILLE", + "nomCommune": "BIEVILLE" }, { - "codePostal": "39400", - "codeCommune": "39297", - "libelleAcheminement": "LONGCHAUMOIS", - "nomCommune": "LONGCHAUMOIS" + "codePostal": "49280", + "codeCommune": "49299", + "libelleAcheminement": "ST LEGER SOUS CHOLET", + "nomCommune": "ST LEGER SOUS CHOLET" }, { - "codePostal": "62570", - "codeCommune": "62656", - "libelleAcheminement": "PIHEM", - "nomCommune": "PIHEM" + "codePostal": "34290", + "codeCommune": "34009", + "libelleAcheminement": "ALIGNAN DU VENT", + "nomCommune": "ALIGNAN DU VENT" }, { - "codePostal": "11570", - "codeCommune": "11272", - "libelleAcheminement": "PALAJA", - "nomCommune": "PALAJA" + "codePostal": "36120", + "codeCommune": "36003", + "libelleAcheminement": "AMBRAULT", + "nomCommune": "AMBRAULT" }, { - "codePostal": "28500", - "codeCommune": "28076", - "libelleAcheminement": "LA CHAPELLE FORAINVILLIERS", - "nomCommune": "LA CHAPELLE FORAINVILLIERS" + "codePostal": "50360", + "codeCommune": "50064", + "libelleAcheminement": "LA BONNEVILLE", + "nomCommune": "LA BONNEVILLE" }, { - "codePostal": "39210", - "codeCommune": "39304", - "libelleAcheminement": "LE LOUVEROT", - "nomCommune": "LE LOUVEROT" + "codePostal": "49230", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "62310", - "codeCommune": "62659", - "libelleAcheminement": "PLANQUES", - "nomCommune": "PLANQUES" + "codePostal": "34540", + "codeCommune": "34024", + "libelleAcheminement": "BALARUC LE VIEUX", + "nomCommune": "BALARUC LE VIEUX" }, { - "codePostal": "11420", - "codeCommune": "11277", - "libelleAcheminement": "PECHARIC ET LE PY", - "nomCommune": "PECHARIC ET LE PY" + "codePostal": "36210", + "codeCommune": "36004", + "libelleAcheminement": "ANJOUIN", + "nomCommune": "ANJOUIN" }, { - "codePostal": "28480", - "codeCommune": "28086", - "libelleAcheminement": "CHASSANT", - "nomCommune": "CHASSANT" + "codePostal": "50480", + "codeCommune": "50070", + "libelleAcheminement": "BOUTTEVILLE", + "nomCommune": "BOUTTEVILLE" }, { - "codePostal": "39380", - "codeCommune": "39305", - "libelleAcheminement": "LA LOYE", - "nomCommune": "LA LOYE" + "codePostal": "49710", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "62370", - "codeCommune": "62662", - "libelleAcheminement": "POLINCOVE", - "nomCommune": "POLINCOVE" + "codePostal": "34140", + "codeCommune": "34039", + "libelleAcheminement": "BOUZIGUES", + "nomCommune": "BOUZIGUES" }, { - "codePostal": "11420", - "codeCommune": "11290", - "libelleAcheminement": "PLAIGNE", - "nomCommune": "PLAIGNE" + "codePostal": "36330", + "codeCommune": "36009", + "libelleAcheminement": "ARTHON", + "nomCommune": "ARTHON" }, { - "codePostal": "28300", - "codeCommune": "28102", - "libelleAcheminement": "CLEVILLIERS", - "nomCommune": "CLEVILLIERS" + "codePostal": "50260", + "codeCommune": "50082", + "libelleAcheminement": "BRICQUEBEC EN COTENTIN", + "nomCommune": "BRICQUEBEC EN COTENTIN" }, { - "codePostal": "39210", - "codeCommune": "39317", - "libelleAcheminement": "LA MARRE", - "nomCommune": "LA MARRE" + "codePostal": "49260", + "codeCommune": "49302", + "libelleAcheminement": "ST MACAIRE DU BOIS", + "nomCommune": "ST MACAIRE DU BOIS" }, { - "codePostal": "62380", - "codeCommune": "62675", - "libelleAcheminement": "QUERCAMPS", - "nomCommune": "QUERCAMPS" + "codePostal": "34800", + "codeCommune": "34041", + "libelleAcheminement": "BRIGNAC", + "nomCommune": "BRIGNAC" }, { - "codePostal": "11250", - "codeCommune": "11293", - "libelleAcheminement": "POMAS", - "nomCommune": "POMAS" + "codePostal": "36270", + "codeCommune": "36012", + "libelleAcheminement": "BARAIZE", + "nomCommune": "BARAIZE" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "50750", + "codeCommune": "50095", + "libelleAcheminement": "CANISY", + "nomCommune": "CANISY" }, { - "codePostal": "39210", - "codeCommune": "39321", - "libelleAcheminement": "MENETRU LE VIGNOBLE", - "nomCommune": "MENETRU LE VIGNOBLE" + "codePostal": "49170", + "codeCommune": "49306", + "libelleAcheminement": "ST MARTIN DU FOUILLOUX", + "nomCommune": "ST MARTIN DU FOUILLOUX" }, { - "codePostal": "62120", - "codeCommune": "62676", - "libelleAcheminement": "QUERNES", - "nomCommune": "QUERNES" + "codePostal": "34230", + "codeCommune": "34047", + "libelleAcheminement": "CAMPAGNAN", + "nomCommune": "CAMPAGNAN" }, { - "codePostal": "11300", - "codeCommune": "11294", - "libelleAcheminement": "POMY", - "nomCommune": "POMY" + "codePostal": "36400", + "codeCommune": "36025", + "libelleAcheminement": "BRIANTES", + "nomCommune": "BRIANTES" }, { - "codePostal": "28630", - "codeCommune": "28110", - "libelleAcheminement": "LE COUDRAY", - "nomCommune": "LE COUDRAY" + "codePostal": "50570", + "codeCommune": "50098", + "libelleAcheminement": "CARANTILLY", + "nomCommune": "CARANTILLY" }, { - "codePostal": "39800", - "codeCommune": "39336", - "libelleAcheminement": "MOLAIN", - "nomCommune": "MOLAIN" + "codePostal": "49250", + "codeCommune": "49307", + "libelleAcheminement": "LOIRE AUTHION", + "nomCommune": "LOIRE AUTHION" }, { - "codePostal": "62240", - "codeCommune": "62678", - "libelleAcheminement": "QUESQUES", - "nomCommune": "QUESQUES" + "codePostal": "34600", + "codeCommune": "34053", + "libelleAcheminement": "CARLENCAS ET LEVAS", + "nomCommune": "CARLENCAS ET LEVAS" }, { - "codePostal": "11700", - "codeCommune": "11301", - "libelleAcheminement": "PUICHERIC", - "nomCommune": "PUICHERIC" + "codePostal": "36230", + "codeCommune": "36030", + "libelleAcheminement": "BUXIERES D AILLAC", + "nomCommune": "BUXIERES D AILLAC" }, { - "codePostal": "28210", - "codeCommune": "28113", - "libelleAcheminement": "COULOMBS", - "nomCommune": "COULOMBS" + "codePostal": "50480", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "39320", - "codeCommune": "39343", - "libelleAcheminement": "MONNETAY", - "nomCommune": "MONNETAY" + "codePostal": "49800", + "codeCommune": "49307", + "libelleAcheminement": "LOIRE AUTHION", + "nomCommune": "LOIRE AUTHION" }, { - "codePostal": "62120", - "codeCommune": "62681", - "libelleAcheminement": "QUIESTEDE", - "nomCommune": "QUIESTEDE" + "codePostal": "34380", + "codeCommune": "34060", + "libelleAcheminement": "CAUSSE DE LA SELLE", + "nomCommune": "CAUSSE DE LA SELLE" }, { - "codePostal": "11140", - "codeCommune": "11302", - "libelleAcheminement": "PUILAURENS", - "nomCommune": "PUILAURENS" + "codePostal": "36200", + "codeCommune": "36032", + "libelleAcheminement": "CEAULMONT", + "nomCommune": "CEAULMONT" }, { - "codePostal": "28140", - "codeCommune": "28114", - "libelleAcheminement": "COURBEHAYE", - "nomCommune": "COURBEHAYE" + "codePostal": "50500", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "39160", - "codeCommune": "39346", - "libelleAcheminement": "MONTAGNA LE RECONDUIT", - "nomCommune": "MONTAGNA LE RECONDUIT" + "codePostal": "49800", + "codeCommune": "49307", + "libelleAcheminement": "LOIRE AUTHION", + "nomCommune": "LOIRE AUTHION" }, { - "codePostal": "62130", - "codeCommune": "62686", - "libelleAcheminement": "RAMECOURT", - "nomCommune": "RAMECOURT" + "codePostal": "34600", + "codeCommune": "34062", + "libelleAcheminement": "CAUSSINIOJOULS", + "nomCommune": "CAUSSINIOJOULS" }, { - "codePostal": "11230", - "codeCommune": "11303", - "libelleAcheminement": "PUIVERT", - "nomCommune": "PUIVERT" + "codePostal": "36210", + "codeCommune": "36034", + "libelleAcheminement": "CHABRIS", + "nomCommune": "CHABRIS" }, { - "codePostal": "28270", - "codeCommune": "28120", - "libelleAcheminement": "CRUCEY VILLAGES", - "nomCommune": "CRUCEY VILLAGES" + "codePostal": "50330", + "codeCommune": "50101", + "libelleAcheminement": "CARNEVILLE", + "nomCommune": "CARNEVILLE" }, { - "codePostal": "39570", - "codeCommune": "39348", - "libelleAcheminement": "MONTAIGU", - "nomCommune": "MONTAIGU" + "codePostal": "49310", + "codeCommune": "49310", + "libelleAcheminement": "ST PAUL DU BOIS", + "nomCommune": "ST PAUL DU BOIS" }, { - "codePostal": "62173", - "codeCommune": "62689", - "libelleAcheminement": "RANSART", - "nomCommune": "RANSART" + "codePostal": "34700", + "codeCommune": "34072", + "libelleAcheminement": "CELLES", + "nomCommune": "CELLES" }, { - "codePostal": "11190", - "codeCommune": "11309", - "libelleAcheminement": "RENNES LE CHATEAU", - "nomCommune": "RENNES LE CHATEAU" + "codePostal": "36160", + "codeCommune": "36038", + "libelleAcheminement": "CHAMPILLET", + "nomCommune": "CHAMPILLET" }, { - "codePostal": "28270", - "codeCommune": "28120", - "libelleAcheminement": "CRUCEY VILLAGES", - "nomCommune": "CRUCEY VILLAGES" + "codePostal": "50620", + "codeCommune": "50106", + "libelleAcheminement": "CAVIGNY", + "nomCommune": "CAVIGNY" }, { - "codePostal": "39700", - "codeCommune": "39352", - "libelleAcheminement": "MONTEPLAIN", - "nomCommune": "MONTEPLAIN" + "codePostal": "49400", + "codeCommune": "49328", + "libelleAcheminement": "SAUMUR", + "nomCommune": "SAUMUR" }, { - "codePostal": "62850", - "codeCommune": "62692", - "libelleAcheminement": "REBERGUES", - "nomCommune": "REBERGUES" + "codePostal": "34800", + "codeCommune": "34079", + "libelleAcheminement": "CLERMONT L HERAULT", + "nomCommune": "CLERMONT L HERAULT" }, { - "codePostal": "11190", - "codeCommune": "11310", - "libelleAcheminement": "RENNES LES BAINS", - "nomCommune": "RENNES LES BAINS" + "codePostal": "36150", + "codeCommune": "36041", + "libelleAcheminement": "LA CHAPELLE ST LAURIAN", + "nomCommune": "LA CHAPELLE ST LAURIAN" }, { - "codePostal": "28350", - "codeCommune": "28124", - "libelleAcheminement": "DAMPIERRE SUR AVRE", - "nomCommune": "DAMPIERRE SUR AVRE" + "codePostal": "50220", + "codeCommune": "50108", + "libelleAcheminement": "CEAUX", + "nomCommune": "CEAUX" }, { - "codePostal": "39320", - "codeCommune": "39363", - "libelleAcheminement": "MONTREVEL", - "nomCommune": "MONTREVEL" + "codePostal": "49400", + "codeCommune": "49328", + "libelleAcheminement": "SAUMUR", + "nomCommune": "SAUMUR" }, { - "codePostal": "62150", - "codeCommune": "62693", - "libelleAcheminement": "REBREUVE RANCHICOURT", - "nomCommune": "REBREUVE RANCHICOURT" + "codePostal": "34390", + "codeCommune": "34080", + "libelleAcheminement": "COLOMBIERES SUR ORB", + "nomCommune": "COLOMBIERES SUR ORB" }, { - "codePostal": "11270", - "codeCommune": "11312", - "libelleAcheminement": "RIBOUISSE", - "nomCommune": "RIBOUISSE" + "codePostal": "36800", + "codeCommune": "36042", + "libelleAcheminement": "CHASSENEUIL", + "nomCommune": "CHASSENEUIL" }, { - "codePostal": "28190", - "codeCommune": "28128", - "libelleAcheminement": "DANGERS", - "nomCommune": "DANGERS" + "codePostal": "50680", + "codeCommune": "50110", + "libelleAcheminement": "CERISY LA FORET", + "nomCommune": "CERISY LA FORET" }, { - "codePostal": "39400", - "codeCommune": "39367", - "libelleAcheminement": "MORBIER", - "nomCommune": "MORBIER" + "codePostal": "49170", + "codeCommune": "49329", + "libelleAcheminement": "SAVENNIERES", + "nomCommune": "SAVENNIERES" }, { - "codePostal": "62270", - "codeCommune": "62694", - "libelleAcheminement": "REBREUVE SUR CANCHE", - "nomCommune": "REBREUVE SUR CANCHE" + "codePostal": "34440", + "codeCommune": "34081", + "libelleAcheminement": "COLOMBIERS", + "nomCommune": "COLOMBIERS" }, { - "codePostal": "11220", - "codeCommune": "11314", - "libelleAcheminement": "RIEUX EN VAL", - "nomCommune": "RIEUX EN VAL" + "codePostal": "36100", + "codeCommune": "36052", + "libelleAcheminement": "CHOUDAY", + "nomCommune": "CHOUDAY" }, { - "codePostal": "28100", - "codeCommune": "28134", - "libelleAcheminement": "DREUX", - "nomCommune": "DREUX" + "codePostal": "50100", + "codeCommune": "50129", + "libelleAcheminement": "CHERBOURG EN COTENTIN", + "nomCommune": "CHERBOURG EN COTENTIN" }, { - "codePostal": "39330", - "codeCommune": "39370", - "libelleAcheminement": "MOUCHARD", - "nomCommune": "MOUCHARD" + "codePostal": "49170", + "codeCommune": "49329", + "libelleAcheminement": "SAVENNIERES", + "nomCommune": "SAVENNIERES" }, { - "codePostal": "62560", - "codeCommune": "62696", - "libelleAcheminement": "RECLINGHEM", - "nomCommune": "RECLINGHEM" + "codePostal": "34490", + "codeCommune": "34084", + "libelleAcheminement": "CORNEILHAN", + "nomCommune": "CORNEILHAN" }, { - "codePostal": "11290", - "codeCommune": "11327", - "libelleAcheminement": "ROULLENS", - "nomCommune": "ROULLENS" + "codePostal": "36130", + "codeCommune": "36057", + "libelleAcheminement": "COINGS", + "nomCommune": "COINGS" }, { - "codePostal": "28190", - "codeCommune": "28148", - "libelleAcheminement": "LE FAVRIL", - "nomCommune": "LE FAVRIL" + "codePostal": "50460", + "codeCommune": "50129", + "libelleAcheminement": "CHERBOURG EN COTENTIN", + "nomCommune": "CHERBOURG EN COTENTIN" }, { - "codePostal": "39310", - "codeCommune": "39373", - "libelleAcheminement": "LES MOUSSIERES", - "nomCommune": "LES MOUSSIERES" + "codePostal": "49330", + "codeCommune": "49330", + "libelleAcheminement": "SCEAUX D ANJOU", + "nomCommune": "SCEAUX D ANJOU" }, { - "codePostal": "62560", - "codeCommune": "62704", - "libelleAcheminement": "RENTY", - "nomCommune": "RENTY" + "codePostal": "34660", + "codeCommune": "34088", + "libelleAcheminement": "COURNONTERRAL", + "nomCommune": "COURNONTERRAL" }, { - "codePostal": "11800", - "codeCommune": "11330", - "libelleAcheminement": "RUSTIQUES", - "nomCommune": "RUSTIQUES" + "codePostal": "36240", + "codeCommune": "36069", + "libelleAcheminement": "ECUEILLE", + "nomCommune": "ECUEILLE" }, { - "codePostal": "28190", - "codeCommune": "28154", - "libelleAcheminement": "FONTAINE LA GUYON", - "nomCommune": "FONTAINE LA GUYON" + "codePostal": "50330", + "codeCommune": "50142", + "libelleAcheminement": "VICQ SUR MER", + "nomCommune": "VICQ SUR MER" }, { - "codePostal": "39270", - "codeCommune": "39375", - "libelleAcheminement": "MOUTONNE", - "nomCommune": "MOUTONNE" + "codePostal": "49140", + "codeCommune": "49333", + "libelleAcheminement": "SEICHES SUR LE LOIR", + "nomCommune": "SEICHES SUR LE LOIR" }, { - "codePostal": "62136", - "codeCommune": "62706", - "libelleAcheminement": "RICHEBOURG", - "nomCommune": "RICHEBOURG" + "codePostal": "34650", + "codeCommune": "34093", + "libelleAcheminement": "DIO ET VALQUIERES", + "nomCommune": "DIO ET VALQUIERES" }, { - "codePostal": "11200", - "codeCommune": "11332", - "libelleAcheminement": "ST ANDRE DE ROQUELONGUE", - "nomCommune": "ST ANDRE DE ROQUELONGUE" + "codePostal": "36150", + "codeCommune": "36075", + "libelleAcheminement": "FONTENAY", + "nomCommune": "FONTENAY" }, { - "codePostal": "28190", - "codeCommune": "28167", - "libelleAcheminement": "FRUNCE", - "nomCommune": "FRUNCE" + "codePostal": "50670", + "codeCommune": "50144", + "libelleAcheminement": "COULOUVRAY BOISBENATRE", + "nomCommune": "COULOUVRAY BOISBENATRE" }, { - "codePostal": "39160", - "codeCommune": "39378", - "libelleAcheminement": "LES TROIS CHATEAUX", - "nomCommune": "LES TROIS CHATEAUX" + "codePostal": "49400", + "codeCommune": "49341", + "libelleAcheminement": "SOUZAY CHAMPIGNY", + "nomCommune": "SOUZAY CHAMPIGNY" }, { - "codePostal": "62182", - "codeCommune": "62709", - "libelleAcheminement": "RIENCOURT LES CAGNICOURT", - "nomCommune": "RIENCOURT LES CAGNICOURT" + "codePostal": "34270", + "codeCommune": "34102", + "libelleAcheminement": "FONTANES", + "nomCommune": "FONTANES" }, { - "codePostal": "11300", - "codeCommune": "11338", - "libelleAcheminement": "ST COUAT DU RAZES", - "nomCommune": "ST COUAT DU RAZES" + "codePostal": "36150", + "codeCommune": "36083", + "libelleAcheminement": "GIROUX", + "nomCommune": "GIROUX" }, { - "codePostal": "28320", - "codeCommune": "28168", - "libelleAcheminement": "GALLARDON", - "nomCommune": "GALLARDON" + "codePostal": "50630", + "codeCommune": "50150", + "libelleAcheminement": "CRASVILLE", + "nomCommune": "CRASVILLE" }, { - "codePostal": "39140", - "codeCommune": "39379", - "libelleAcheminement": "NANCE", - "nomCommune": "NANCE" + "codePostal": "49380", + "codeCommune": "49345", + "libelleAcheminement": "BELLEVIGNE EN LAYON", + "nomCommune": "BELLEVIGNE EN LAYON" }, { - "codePostal": "62173", - "codeCommune": "62712", - "libelleAcheminement": "RIVIERE", - "nomCommune": "RIVIERE" + "codePostal": "34160", + "codeCommune": "34110", + "libelleAcheminement": "GALARGUES", + "nomCommune": "GALARGUES" }, { - "codePostal": "11310", - "codeCommune": "11339", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "36110", + "codeCommune": "36093", + "libelleAcheminement": "LEVROUX", + "nomCommune": "LEVROUX" }, { - "codePostal": "28700", - "codeCommune": "28169", - "libelleAcheminement": "GARANCIERES EN BEAUCE", - "nomCommune": "GARANCIERES EN BEAUCE" + "codePostal": "50670", + "codeCommune": "50158", + "libelleAcheminement": "CUVES", + "nomCommune": "CUVES" }, { - "codePostal": "39270", - "codeCommune": "39380", - "libelleAcheminement": "NANCUISE", - "nomCommune": "NANCUISE" + "codePostal": "49380", + "codeCommune": "49345", + "libelleAcheminement": "BELLEVIGNE EN LAYON", + "nomCommune": "BELLEVIGNE EN LAYON" }, { - "codePostal": "62450", - "codeCommune": "62715", - "libelleAcheminement": "ROCQUIGNY", - "nomCommune": "ROCQUIGNY" + "codePostal": "34160", + "codeCommune": "34112", + "libelleAcheminement": "GARRIGUES", + "nomCommune": "GARRIGUES" }, { - "codePostal": "11170", - "codeCommune": "11340", - "libelleAcheminement": "STE EULALIE", - "nomCommune": "STE EULALIE" + "codePostal": "36110", + "codeCommune": "36093", + "libelleAcheminement": "LEVROUX", + "nomCommune": "LEVROUX" }, { - "codePostal": "28500", - "codeCommune": "28178", - "libelleAcheminement": "GERMAINVILLE", - "nomCommune": "GERMAINVILLE" + "codePostal": "50350", + "codeCommune": "50165", + "libelleAcheminement": "DONVILLE LES BAINS", + "nomCommune": "DONVILLE LES BAINS" }, { - "codePostal": "39380", - "codeCommune": "39387", - "libelleAcheminement": "NEVY LES DOLE", - "nomCommune": "NEVY LES DOLE" + "codePostal": "49750", + "codeCommune": "49345", + "libelleAcheminement": "BELLEVIGNE EN LAYON", + "nomCommune": "BELLEVIGNE EN LAYON" }, { - "codePostal": "62320", - "codeCommune": "62724", - "libelleAcheminement": "ROUVROY", - "nomCommune": "ROUVROY" + "codePostal": "34830", + "codeCommune": "34120", + "libelleAcheminement": "JACOU", + "nomCommune": "JACOU" }, { - "codePostal": "11250", - "codeCommune": "11344", - "libelleAcheminement": "ST HILAIRE", - "nomCommune": "ST HILAIRE" + "codePostal": "36150", + "codeCommune": "36097", + "libelleAcheminement": "LINIEZ", + "nomCommune": "LINIEZ" }, { - "codePostal": "28310", - "codeCommune": "28183", - "libelleAcheminement": "GOMMERVILLE", - "nomCommune": "GOMMERVILLE" + "codePostal": "50250", + "codeCommune": "50166", + "libelleAcheminement": "DOVILLE", + "nomCommune": "DOVILLE" }, { - "codePostal": "39210", - "codeCommune": "39388", - "libelleAcheminement": "NEVY SUR SEILLE", - "nomCommune": "NEVY SUR SEILLE" + "codePostal": "49340", + "codeCommune": "49355", + "libelleAcheminement": "TREMENTINES", + "nomCommune": "TREMENTINES" }, { - "codePostal": "62113", - "codeCommune": "62735", - "libelleAcheminement": "SAILLY LABOURSE", - "nomCommune": "SAILLY LABOURSE" + "codePostal": "34270", + "codeCommune": "34131", + "libelleAcheminement": "LAURET", + "nomCommune": "LAURET" }, { - "codePostal": "11500", - "codeCommune": "11352", - "libelleAcheminement": "ST LOUIS ET PARAHOU", - "nomCommune": "ST LOUIS ET PARAHOU" + "codePostal": "36400", + "codeCommune": "36100", + "libelleAcheminement": "LOUROUER ST LAURENT", + "nomCommune": "LOUROUER ST LAURENT" }, { - "codePostal": "28700", - "codeCommune": "28183", - "libelleAcheminement": "GOMMERVILLE", - "nomCommune": "GOMMERVILLE" + "codePostal": "50530", + "codeCommune": "50167", + "libelleAcheminement": "DRAGEY RONTHON", + "nomCommune": "DRAGEY RONTHON" }, { - "codePostal": "39570", - "codeCommune": "39390", - "libelleAcheminement": "NOGNA", - "nomCommune": "NOGNA" + "codePostal": "49730", + "codeCommune": "49358", + "libelleAcheminement": "TURQUANT", + "nomCommune": "TURQUANT" }, { - "codePostal": "62840", - "codeCommune": "62736", - "libelleAcheminement": "SAILLY SUR LA LYS", - "nomCommune": "SAILLY SUR LA LYS" + "codePostal": "34700", + "codeCommune": "34132", + "libelleAcheminement": "LAUROUX", + "nomCommune": "LAUROUX" }, { - "codePostal": "11300", - "codeCommune": "11355", - "libelleAcheminement": "ST MARTIN DE VILLEREGLAN", - "nomCommune": "ST MARTIN DE VILLEREGLAN" + "codePostal": "36350", + "codeCommune": "36101", + "libelleAcheminement": "LUANT", + "nomCommune": "LUANT" }, { - "codePostal": "28310", - "codeCommune": "28184", - "libelleAcheminement": "GOUILLONS", - "nomCommune": "GOUILLONS" + "codePostal": "50260", + "codeCommune": "50176", + "libelleAcheminement": "L ETANG BERTRAND", + "nomCommune": "L ETANG BERTRAND" }, { - "codePostal": "39290", - "codeCommune": "39392", - "libelleAcheminement": "OFFLANGES", - "nomCommune": "OFFLANGES" + "codePostal": "49400", + "codeCommune": "49370", + "libelleAcheminement": "VERRIE", + "nomCommune": "VERRIE" }, { - "codePostal": "62114", - "codeCommune": "62737", - "libelleAcheminement": "SAINS EN GOHELLE", - "nomCommune": "SAINS EN GOHELLE" + "codePostal": "34800", + "codeCommune": "34138", + "libelleAcheminement": "LIEURAN CABRIERES", + "nomCommune": "LIEURAN CABRIERES" }, { - "codePostal": "11220", - "codeCommune": "11363", - "libelleAcheminement": "ST PIERRE DES CHAMPS", - "nomCommune": "ST PIERRE DES CHAMPS" + "codePostal": "36150", + "codeCommune": "36102", + "libelleAcheminement": "LUCAY LE LIBRE", + "nomCommune": "LUCAY LE LIBRE" }, { - "codePostal": "28130", - "codeCommune": "28195", - "libelleAcheminement": "HOUX", - "nomCommune": "HOUX" + "codePostal": "50190", + "codeCommune": "50182", + "libelleAcheminement": "LA FEUILLIE", + "nomCommune": "LA FEUILLIE" }, { - "codePostal": "39800", - "codeCommune": "39401", - "libelleAcheminement": "OUSSIERES", - "nomCommune": "OUSSIERES" + "codePostal": "49310", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "62760", - "codeCommune": "62741", - "libelleAcheminement": "ST AMAND", - "nomCommune": "ST AMAND" + "codePostal": "34490", + "codeCommune": "34140", + "libelleAcheminement": "LIGNAN SUR ORB", + "nomCommune": "LIGNAN SUR ORB" }, { - "codePostal": "11310", - "codeCommune": "11367", - "libelleAcheminement": "SAISSAC", - "nomCommune": "SAISSAC" + "codePostal": "36220", + "codeCommune": "36104", + "libelleAcheminement": "LURAIS", + "nomCommune": "LURAIS" }, { - "codePostal": "28200", - "codeCommune": "28198", - "libelleAcheminement": "JALLANS", - "nomCommune": "JALLANS" + "codePostal": "50580", + "codeCommune": "50183", + "libelleAcheminement": "FIERVILLE LES MINES", + "nomCommune": "FIERVILLE LES MINES" }, { - "codePostal": "39570", - "codeCommune": "39404", - "libelleAcheminement": "PANNESSIERES", - "nomCommune": "PANNESSIERES" + "codePostal": "49310", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "62170", - "codeCommune": "62742", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "34700", + "codeCommune": "34142", + "libelleAcheminement": "LODEVE", + "nomCommune": "LODEVE" }, { - "codePostal": "11190", - "codeCommune": "11376", - "libelleAcheminement": "LA SERPENT", - "nomCommune": "LA SERPENT" + "codePostal": "36600", + "codeCommune": "36107", + "libelleAcheminement": "LYE", + "nomCommune": "LYE" }, { - "codePostal": "28310", - "codeCommune": "28199", - "libelleAcheminement": "JANVILLE EN BEAUCE", - "nomCommune": "JANVILLE EN BEAUCE" + "codePostal": "50700", + "codeCommune": "50186", + "libelleAcheminement": "FLOTTEMANVILLE", + "nomCommune": "FLOTTEMANVILLE" }, { - "codePostal": "39230", - "codeCommune": "39407", - "libelleAcheminement": "PASSENANS", - "nomCommune": "PASSENANS" + "codePostal": "49310", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "62140", - "codeCommune": "62743", - "libelleAcheminement": "STE AUSTREBERTHE", - "nomCommune": "STE AUSTREBERTHE" + "codePostal": "34320", + "codeCommune": "34149", + "libelleAcheminement": "MARGON", + "nomCommune": "MARGON" }, { - "codePostal": "11400", - "codeCommune": "11382", - "libelleAcheminement": "SOUILHANELS", - "nomCommune": "SOUILHANELS" + "codePostal": "36120", + "codeCommune": "36112", + "libelleAcheminement": "MARON", + "nomCommune": "MARON" }, { - "codePostal": "28300", - "codeCommune": "28201", - "libelleAcheminement": "JOUY", - "nomCommune": "JOUY" + "codePostal": "50320", + "codeCommune": "50188", + "libelleAcheminement": "FOLLIGNY", + "nomCommune": "FOLLIGNY" }, { - "codePostal": "39290", - "codeCommune": "39409", - "libelleAcheminement": "PEINTRE", - "nomCommune": "PEINTRE" + "codePostal": "49310", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "62990", - "codeCommune": "62745", - "libelleAcheminement": "ST DENOEUX", - "nomCommune": "ST DENOEUX" + "codePostal": "34130", + "codeCommune": "34154", + "libelleAcheminement": "MAUGUIO", + "nomCommune": "MAUGUIO" }, { - "codePostal": "11320", - "codeCommune": "11385", - "libelleAcheminement": "SOUPEX", - "nomCommune": "SOUPEX" + "codePostal": "36370", + "codeCommune": "36114", + "libelleAcheminement": "MAUVIERES", + "nomCommune": "MAUVIERES" }, { - "codePostal": "28700", - "codeCommune": "28208", - "libelleAcheminement": "LEVAINVILLE", - "nomCommune": "LEVAINVILLE" + "codePostal": "50450", + "codeCommune": "50197", + "libelleAcheminement": "GAVRAY SUR SIENNE", + "nomCommune": "GAVRAY SUR SIENNE" }, { - "codePostal": "39210", - "codeCommune": "39422", - "libelleAcheminement": "PLAINOISEAU", - "nomCommune": "PLAINOISEAU" + "codePostal": "49310", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "62360", - "codeCommune": "62746", - "libelleAcheminement": "PONT DE BRIQUES ST ETIENNE", - "nomCommune": "ST ETIENNE AU MONT" + "codePostal": "34370", + "codeCommune": "34155", + "libelleAcheminement": "MAUREILHAN", + "nomCommune": "MAUREILHAN" }, { - "codePostal": "11380", - "codeCommune": "11391", - "libelleAcheminement": "LA TOURETTE CABARDES", - "nomCommune": "LA TOURETTE CABARDES" + "codePostal": "36100", + "codeCommune": "36121", + "libelleAcheminement": "MEUNET PLANCHES", + "nomCommune": "MEUNET PLANCHES" }, { - "codePostal": "28500", - "codeCommune": "28216", - "libelleAcheminement": "LOUVILLIERS EN DROUAIS", - "nomCommune": "LOUVILLIERS EN DROUAIS" + "codePostal": "50560", + "codeCommune": "50198", + "libelleAcheminement": "GEFFOSSES", + "nomCommune": "GEFFOSSES" }, { - "codePostal": "39150", - "codeCommune": "39424", - "libelleAcheminement": "LES PLANCHES EN MONTAGNE", - "nomCommune": "LES PLANCHES EN MONTAGNE" + "codePostal": "49400", + "codeCommune": "49374", + "libelleAcheminement": "VILLEBERNIER", + "nomCommune": "VILLEBERNIER" }, { - "codePostal": "62500", - "codeCommune": "62757", - "libelleAcheminement": "ST MARTIN LEZ TATINGHEM", - "nomCommune": "ST MARTIN LEZ TATINGHEM" + "codePostal": "34210", + "codeCommune": "34158", + "libelleAcheminement": "MINERVE", + "nomCommune": "MINERVE" }, { - "codePostal": "11200", - "codeCommune": "11393", - "libelleAcheminement": "TOUROUZELLE", - "nomCommune": "TOUROUZELLE" + "codePostal": "36170", + "codeCommune": "36134", + "libelleAcheminement": "MOUHET", + "nomCommune": "MOUHET" }, { - "codePostal": "28120", - "codeCommune": "28234", - "libelleAcheminement": "MARCHEVILLE", - "nomCommune": "MARCHEVILLE" + "codePostal": "50190", + "codeCommune": "50208", + "libelleAcheminement": "GONFREVILLE", + "nomCommune": "GONFREVILLE" }, { - "codePostal": "39250", - "codeCommune": "39427", - "libelleAcheminement": "PLENISE", - "nomCommune": "PLENISE" + "codePostal": "50180", + "codeCommune": "50002", + "libelleAcheminement": "AGNEAUX", + "nomCommune": "AGNEAUX" }, { - "codePostal": "62650", - "codeCommune": "62762", - "libelleAcheminement": "ST MICHEL SOUS BOIS", - "nomCommune": "ST MICHEL SOUS BOIS" + "codePostal": "34110", + "codeCommune": "34159", + "libelleAcheminement": "MIREVAL", + "nomCommune": "MIREVAL" }, { - "codePostal": "11510", - "codeCommune": "11398", - "libelleAcheminement": "TREILLES", - "nomCommune": "TREILLES" + "codePostal": "36110", + "codeCommune": "36135", + "libelleAcheminement": "MOULINS SUR CEPHONS", + "nomCommune": "MOULINS SUR CEPHONS" }, { - "codePostal": "28500", - "codeCommune": "28239", - "libelleAcheminement": "MARVILLE MOUTIERS BRULE", - "nomCommune": "MARVILLE MOUTIERS BRULE" + "codePostal": "50330", + "codeCommune": "50209", + "libelleAcheminement": "GONNEVILLE LE THEIL", + "nomCommune": "GONNEVILLE LE THEIL" }, { - "codePostal": "39800", - "codeCommune": "39434", - "libelleAcheminement": "POLIGNY", - "nomCommune": "POLIGNY" + "codePostal": "50400", + "codeCommune": "50008", + "libelleAcheminement": "ANCTOVILLE SUR BOSCQ", + "nomCommune": "ANCTOVILLE SUR BOSCQ" }, { - "codePostal": "62130", - "codeCommune": "62763", - "libelleAcheminement": "ST MICHEL SUR TERNOISE", - "nomCommune": "ST MICHEL SUR TERNOISE" + "codePostal": "34390", + "codeCommune": "34160", + "libelleAcheminement": "MONS", + "nomCommune": "MONS" }, { - "codePostal": "11580", - "codeCommune": "11402", - "libelleAcheminement": "VALMIGERE", - "nomCommune": "VALMIGERE" + "codePostal": "36700", + "codeCommune": "36136", + "libelleAcheminement": "MURS", + "nomCommune": "MURS" }, { - "codePostal": "28700", - "codeCommune": "28257", - "libelleAcheminement": "MONDONVILLE ST JEAN", - "nomCommune": "MONDONVILLE ST JEAN" + "codePostal": "50420", + "codeCommune": "50214", + "libelleAcheminement": "GOUVETS", + "nomCommune": "GOUVETS" }, { - "codePostal": "39110", - "codeCommune": "39436", - "libelleAcheminement": "PONT D HERY", - "nomCommune": "PONT D HERY" + "codePostal": "50500", + "codeCommune": "50016", + "libelleAcheminement": "APPEVILLE", + "nomCommune": "APPEVILLE" }, { - "codePostal": "62185", - "codeCommune": "62769", - "libelleAcheminement": "ST TRICAT", - "nomCommune": "ST TRICAT" + "codePostal": "34570", + "codeCommune": "34163", + "libelleAcheminement": "MONTARNAUD", + "nomCommune": "MONTARNAUD" }, { - "codePostal": "11610", - "codeCommune": "11404", - "libelleAcheminement": "VENTENAC CABARDES", - "nomCommune": "VENTENAC CABARDES" + "codePostal": "36250", + "codeCommune": "36142", + "libelleAcheminement": "NIHERNE", + "nomCommune": "NIHERNE" }, { - "codePostal": "28120", - "codeCommune": "28261", - "libelleAcheminement": "MONTIGNY LE CHARTIF", - "nomCommune": "MONTIGNY LE CHARTIF" + "codePostal": "50620", + "codeCommune": "50216", + "libelleAcheminement": "GRAIGNES MESNIL ANGOT", + "nomCommune": "GRAIGNES MESNIL ANGOT" }, { - "codePostal": "39110", - "codeCommune": "39436", - "libelleAcheminement": "PONT D HERY", - "nomCommune": "PONT D HERY" + "codePostal": "50630", + "codeCommune": "50022", + "libelleAcheminement": "AUMEVILLE LESTRE", + "nomCommune": "AUMEVILLE LESTRE" }, { - "codePostal": "62430", - "codeCommune": "62771", - "libelleAcheminement": "SALLAUMINES", - "nomCommune": "SALLAUMINES" + "codePostal": "34160", + "codeCommune": "34164", + "libelleAcheminement": "MONTAUD", + "nomCommune": "MONTAUD" }, { - "codePostal": "11600", - "codeCommune": "11410", - "libelleAcheminement": "VILLALIER", - "nomCommune": "VILLALIER" + "codePostal": "36800", + "codeCommune": "36144", + "libelleAcheminement": "NURET LE FERRON", + "nomCommune": "NURET LE FERRON" }, { - "codePostal": "28240", - "codeCommune": "28265", - "libelleAcheminement": "MONTLANDON", - "nomCommune": "MONTLANDON" + "codePostal": "50200", + "codeCommune": "50219", + "libelleAcheminement": "GRATOT", + "nomCommune": "GRATOT" }, { - "codePostal": "39400", - "codeCommune": "39441", - "libelleAcheminement": "PREMANON", - "nomCommune": "PREMANON" + "codePostal": "50300", + "codeCommune": "50025", + "libelleAcheminement": "AVRANCHES", + "nomCommune": "AVRANCHES" }, { - "codePostal": "62231", - "codeCommune": "62774", - "libelleAcheminement": "SANGATTE", - "nomCommune": "SANGATTE" + "codePostal": "34090", + "codeCommune": "34172", + "libelleAcheminement": "MONTPELLIER", + "nomCommune": "MONTPELLIER" }, { - "codePostal": "11580", - "codeCommune": "11412", - "libelleAcheminement": "VILLARDEBELLE", - "nomCommune": "VILLARDEBELLE" + "codePostal": "36200", + "codeCommune": "36158", + "libelleAcheminement": "BADECON LE PIN", + "nomCommune": "BADECON LE PIN" }, { - "codePostal": "28630", - "codeCommune": "28269", - "libelleAcheminement": "MORANCEZ", - "nomCommune": "MORANCEZ" + "codePostal": "50410", + "codeCommune": "50225", + "libelleAcheminement": "LE GUISLAIN", + "nomCommune": "LE GUISLAIN" }, { - "codePostal": "39270", - "codeCommune": "39443", - "libelleAcheminement": "PRESILLY", - "nomCommune": "PRESILLY" + "codePostal": "50310", + "codeCommune": "50026", + "libelleAcheminement": "AZEVILLE", + "nomCommune": "AZEVILLE" }, { - "codePostal": "62690", - "codeCommune": "62785", - "libelleAcheminement": "SAVY BERLETTE", - "nomCommune": "SAVY BERLETTE" + "codePostal": "34490", + "codeCommune": "34178", + "libelleAcheminement": "MURVIEL LES BEZIERS", + "nomCommune": "MURVIEL LES BEZIERS" }, { - "codePostal": "11220", - "codeCommune": "11414", - "libelleAcheminement": "VILLAR EN VAL", - "nomCommune": "VILLAR EN VAL" + "codePostal": "36120", + "codeCommune": "36169", + "libelleAcheminement": "PRUNIERS", + "nomCommune": "PRUNIERS" }, { - "codePostal": "28800", - "codeCommune": "28270", - "libelleAcheminement": "MORIERS", - "nomCommune": "MORIERS" + "codePostal": "50410", + "codeCommune": "50234", + "libelleAcheminement": "LA HAYE BELLEFOND", + "nomCommune": "LA HAYE BELLEFOND" }, { - "codePostal": "39230", - "codeCommune": "39454", - "libelleAcheminement": "RECANOZ", - "nomCommune": "RECANOZ" + "codePostal": "50720", + "codeCommune": "50029", + "libelleAcheminement": "BARENTON", + "nomCommune": "BARENTON" }, { - "codePostal": "62240", - "codeCommune": "62789", - "libelleAcheminement": "SENLECQUES", - "nomCommune": "SENLECQUES" + "codePostal": "34800", + "codeCommune": "34186", + "libelleAcheminement": "OCTON", + "nomCommune": "OCTON" }, { - "codePostal": "11230", - "codeCommune": "11424", - "libelleAcheminement": "VILLEFORT", - "nomCommune": "VILLEFORT" + "codePostal": "36260", + "codeCommune": "36171", + "libelleAcheminement": "REUILLY", + "nomCommune": "REUILLY" }, { - "codePostal": "28340", - "codeCommune": "28271", - "libelleAcheminement": "MORVILLIERS", - "nomCommune": "MORVILLIERS" + "codePostal": "50170", + "codeCommune": "50253", + "libelleAcheminement": "HUISNES SUR MER", + "nomCommune": "HUISNES SUR MER" }, { - "codePostal": "39360", - "codeCommune": "39463", - "libelleAcheminement": "ROGNA", - "nomCommune": "ROGNA" + "codePostal": "50810", + "codeCommune": "50032", + "libelleAcheminement": "LA BARRE DE SEMILLY", + "nomCommune": "LA BARRE DE SEMILLY" }, { - "codePostal": "62270", - "codeCommune": "62791", - "libelleAcheminement": "SERICOURT", - "nomCommune": "SERICOURT" + "codePostal": "34210", + "codeCommune": "34189", + "libelleAcheminement": "OLONZAC", + "nomCommune": "OLONZAC" }, { - "codePostal": "11360", - "codeCommune": "11431", - "libelleAcheminement": "VILLENEUVE LES CORBIERES", - "nomCommune": "VILLENEUVE LES CORBIERES" + "codePostal": "36300", + "codeCommune": "36178", + "libelleAcheminement": "ST AIGNY", + "nomCommune": "ST AIGNY" }, { - "codePostal": "28160", - "codeCommune": "28272", - "libelleAcheminement": "MOTTEREAU", - "nomCommune": "MOTTEREAU" + "codePostal": "50540", + "codeCommune": "50256", + "libelleAcheminement": "ISIGNY LE BUAT", + "nomCommune": "ISIGNY LE BUAT" }, { - "codePostal": "39270", - "codeCommune": "39468", - "libelleAcheminement": "ROTHONAY", - "nomCommune": "ROTHONAY" + "codePostal": "50270", + "codeCommune": "50033", + "libelleAcheminement": "BAUBIGNY", + "nomCommune": "BAUBIGNY" }, { - "codePostal": "62810", - "codeCommune": "62798", - "libelleAcheminement": "SOMBRIN", - "nomCommune": "SOMBRIN" + "codePostal": "34490", + "codeCommune": "34191", + "libelleAcheminement": "PAILHES", + "nomCommune": "PAILHES" }, { - "codePostal": "11170", - "codeCommune": "11437", - "libelleAcheminement": "VILLESEQUELANDE", - "nomCommune": "VILLESEQUELANDE" + "codePostal": "36100", + "codeCommune": "36179", + "libelleAcheminement": "ST AOUSTRILLE", + "nomCommune": "ST AOUSTRILLE" }, { - "codePostal": "28210", - "codeCommune": "28275", - "libelleAcheminement": "NERON", - "nomCommune": "NERON" + "codePostal": "50540", + "codeCommune": "50256", + "libelleAcheminement": "ISIGNY LE BUAT", + "nomCommune": "ISIGNY LE BUAT" }, { - "codePostal": "39220", - "codeCommune": "39470", - "libelleAcheminement": "LES ROUSSES", - "nomCommune": "LES ROUSSES" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "62170", - "codeCommune": "62799", - "libelleAcheminement": "SORRUS", - "nomCommune": "SORRUS" + "codePostal": "34360", + "codeCommune": "34193", + "libelleAcheminement": "PARDAILHAN", + "nomCommune": "PARDAILHAN" }, { - "codePostal": "11220", - "codeCommune": "11440", - "libelleAcheminement": "VILLETRITOULS", - "nomCommune": "VILLETRITOULS" + "codePostal": "36400", + "codeCommune": "36184", + "libelleAcheminement": "ST CHARTIER", + "nomCommune": "ST CHARTIER" }, { - "codePostal": "28210", - "codeCommune": "28279", - "libelleAcheminement": "NOGENT LE ROI", - "nomCommune": "NOGENT LE ROI" + "codePostal": "50220", + "codeCommune": "50259", + "libelleAcheminement": "JUILLEY", + "nomCommune": "JUILLEY" }, { - "codePostal": "39400", - "codeCommune": "39470", - "libelleAcheminement": "LES ROUSSES", - "nomCommune": "LES ROUSSES" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "62550", - "codeCommune": "62805", - "libelleAcheminement": "TANGRY", - "nomCommune": "TANGRY" + "codePostal": "34120", + "codeCommune": "34199", + "libelleAcheminement": "PEZENAS", + "nomCommune": "PEZENAS" }, { - "codePostal": "12220", - "codeCommune": "12003", - "libelleAcheminement": "LES ALBRES", - "nomCommune": "LES ALBRES" + "codePostal": "36100", + "codeCommune": "36190", + "libelleAcheminement": "STE FAUSTE", + "nomCommune": "STE FAUSTE" }, { - "codePostal": "28120", - "codeCommune": "28281", - "libelleAcheminement": "NOGENT SUR EURE", - "nomCommune": "NOGENT SUR EURE" + "codePostal": "50520", + "codeCommune": "50260", + "libelleAcheminement": "JUVIGNY LES VALLEES", + "nomCommune": "JUVIGNY LES VALLEES" }, { - "codePostal": "39200", - "codeCommune": "39478", - "libelleAcheminement": "ST CLAUDE", - "nomCommune": "ST CLAUDE" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "62127", - "codeCommune": "62809", - "libelleAcheminement": "TERNAS", - "nomCommune": "TERNAS" + "codePostal": "34570", + "codeCommune": "34202", + "libelleAcheminement": "PIGNAN", + "nomCommune": "PIGNAN" }, { - "codePostal": "12260", - "codeCommune": "12007", - "libelleAcheminement": "AMBEYRAC", - "nomCommune": "AMBEYRAC" + "codePostal": "36800", + "codeCommune": "36192", + "libelleAcheminement": "ST GAULTIER", + "nomCommune": "ST GAULTIER" }, { - "codePostal": "28120", - "codeCommune": "28282", - "libelleAcheminement": "NONVILLIERS GRANDHOUX", - "nomCommune": "NONVILLIERS GRANDHOUX" + "codePostal": "50160", + "codeCommune": "50261", + "libelleAcheminement": "LAMBERVILLE", + "nomCommune": "LAMBERVILLE" }, { - "codePostal": "39200", - "codeCommune": "39478", - "libelleAcheminement": "ST CLAUDE", - "nomCommune": "ST CLAUDE" + "codePostal": "50690", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "62580", - "codeCommune": "62810", - "libelleAcheminement": "THELUS", - "nomCommune": "THELUS" + "codePostal": "34810", + "codeCommune": "34207", + "libelleAcheminement": "POMEROLS", + "nomCommune": "POMEROLS" }, { - "codePostal": "12360", - "codeCommune": "12009", - "libelleAcheminement": "ARNAC SUR DOURDOU", - "nomCommune": "ARNAC SUR DOURDOU" + "codePostal": "36500", + "codeCommune": "36194", + "libelleAcheminement": "ST GENOU", + "nomCommune": "ST GENOU" }, { - "codePostal": "28150", - "codeCommune": "28291", - "libelleAcheminement": "OUARVILLE", - "nomCommune": "OUARVILLE" + "codePostal": "50480", + "codeCommune": "50269", + "libelleAcheminement": "LIESVILLE SUR DOUVE", + "nomCommune": "LIESVILLE SUR DOUVE" }, { - "codePostal": "39600", - "codeCommune": "39479", - "libelleAcheminement": "ST CYR MONTMALIN", - "nomCommune": "ST CYR MONTMALIN" + "codePostal": "50170", + "codeCommune": "50042", + "libelleAcheminement": "BEAUVOIR", + "nomCommune": "BEAUVOIR" }, { - "codePostal": "62180", - "codeCommune": "62815", - "libelleAcheminement": "TIGNY NOYELLE", - "nomCommune": "TIGNY NOYELLE" + "codePostal": "34480", + "codeCommune": "34223", + "libelleAcheminement": "PUIMISSON", + "nomCommune": "PUIMISSON" }, { - "codePostal": "12120", - "codeCommune": "12011", - "libelleAcheminement": "ARVIEU", - "nomCommune": "ARVIEU" + "codePostal": "36260", + "codeCommune": "36199", + "libelleAcheminement": "STE LIZAIGNE", + "nomCommune": "STE LIZAIGNE" }, { - "codePostal": "28130", - "codeCommune": "28298", - "libelleAcheminement": "PIERRES", - "nomCommune": "PIERRES" + "codePostal": "50700", + "codeCommune": "50270", + "libelleAcheminement": "LIEUSAINT", + "nomCommune": "LIEUSAINT" }, { - "codePostal": "39170", - "codeCommune": "39491", - "libelleAcheminement": "COTEAUX DU LIZON", - "nomCommune": "COTEAUX DU LIZON" + "codePostal": "50210", + "codeCommune": "50044", + "libelleAcheminement": "BELVAL", + "nomCommune": "BELVAL" }, { - "codePostal": "62127", - "codeCommune": "62820", - "libelleAcheminement": "TINCQUES", - "nomCommune": "TINCQUES" + "codePostal": "34160", + "codeCommune": "34227", + "libelleAcheminement": "RESTINCLIERES", + "nomCommune": "RESTINCLIERES" }, { - "codePostal": "12110", - "codeCommune": "12013", - "libelleAcheminement": "AUBIN", - "nomCommune": "AUBIN" + "codePostal": "36250", + "codeCommune": "36202", + "libelleAcheminement": "ST MAUR", + "nomCommune": "ST MAUR" }, { - "codePostal": "28140", - "codeCommune": "28303", - "libelleAcheminement": "POUPRY", - "nomCommune": "POUPRY" + "codePostal": "50290", + "codeCommune": "50277", + "libelleAcheminement": "LONGUEVILLE", + "nomCommune": "LONGUEVILLE" }, { - "codePostal": "39270", - "codeCommune": "39504", - "libelleAcheminement": "SARROGNA", - "nomCommune": "SARROGNA" + "codePostal": "50420", + "codeCommune": "50050", + "libelleAcheminement": "BEUVRIGNY", + "nomCommune": "BEUVRIGNY" }, { - "codePostal": "62490", - "codeCommune": "62825", - "libelleAcheminement": "TORTEQUESNE", - "nomCommune": "TORTEQUESNE" + "codePostal": "34460", + "codeCommune": "34232", + "libelleAcheminement": "ROQUEBRUN", + "nomCommune": "ROQUEBRUN" }, { - "codePostal": "12390", - "codeCommune": "12016", - "libelleAcheminement": "AUZITS", - "nomCommune": "AUZITS" + "codePostal": "36120", + "codeCommune": "36211", + "libelleAcheminement": "SASSIERGES ST GERMAIN", + "nomCommune": "SASSIERGES ST GERMAIN" }, { - "codePostal": "28150", - "codeCommune": "28304", - "libelleAcheminement": "PRASVILLE", - "nomCommune": "PRASVILLE" + "codePostal": "50320", + "codeCommune": "50281", + "libelleAcheminement": "LA LUCERNE D OUTREMER", + "nomCommune": "LA LUCERNE D OUTREMER" }, { - "codePostal": "39230", - "codeCommune": "39508", - "libelleAcheminement": "SELLIERES", - "nomCommune": "SELLIERES" + "codePostal": "50360", + "codeCommune": "50052", + "libelleAcheminement": "BEUZEVILLE LA BASTILLE", + "nomCommune": "BEUZEVILLE LA BASTILLE" }, { - "codePostal": "62147", - "codeCommune": "62830", - "libelleAcheminement": "TRESCAULT", - "nomCommune": "TRESCAULT" + "codePostal": "34230", + "codeCommune": "34241", + "libelleAcheminement": "ST BAUZILLE DE LA SYLVE", + "nomCommune": "ST BAUZILLE DE LA SYLVE" }, { - "codePostal": "12200", - "codeCommune": "12021", - "libelleAcheminement": "LE BAS SEGALA", - "nomCommune": "LE BAS SEGALA" + "codePostal": "36160", + "codeCommune": "36214", + "libelleAcheminement": "SAZERAY", + "nomCommune": "SAZERAY" }, { - "codePostal": "28270", - "codeCommune": "28308", - "libelleAcheminement": "PRUDEMANCHE", - "nomCommune": "PRUDEMANCHE" + "codePostal": "50410", + "codeCommune": "50291", + "libelleAcheminement": "MARGUERAY", + "nomCommune": "MARGUERAY" }, { - "codePostal": "39310", - "codeCommune": "39510", - "libelleAcheminement": "SEPTMONCEL LES MOLUNES", - "nomCommune": "SEPTMONCEL LES MOLUNES" + "codePostal": "50390", + "codeCommune": "50055", + "libelleAcheminement": "BINIVILLE", + "nomCommune": "BINIVILLE" }, { - "codePostal": "62880", - "codeCommune": "62842", - "libelleAcheminement": "VENDIN LE VIEIL", - "nomCommune": "VENDIN LE VIEIL" + "codePostal": "34400", + "codeCommune": "34246", + "libelleAcheminement": "ENTRE VIGNES", + "nomCommune": "ENTRE VIGNES" }, { - "codePostal": "12490", - "codeCommune": "12022", - "libelleAcheminement": "LA BASTIDE PRADINES", - "nomCommune": "LA BASTIDE PRADINES" + "codePostal": "36400", + "codeCommune": "36221", + "libelleAcheminement": "THEVET ST JULIEN", + "nomCommune": "THEVET ST JULIEN" }, { - "codePostal": "28360", - "codeCommune": "28309", - "libelleAcheminement": "PRUNAY LE GILLON", - "nomCommune": "PRUNAY LE GILLON" + "codePostal": "50570", + "codeCommune": "50292", + "libelleAcheminement": "MARIGNY LE LOZON", + "nomCommune": "MARIGNY LE LOZON" }, { - "codePostal": "39300", - "codeCommune": "39522", - "libelleAcheminement": "SUPT", - "nomCommune": "SUPT" + "codePostal": "50800", + "codeCommune": "50062", + "libelleAcheminement": "BOISYVON", + "nomCommune": "BOISYVON" }, { - "codePostal": "62980", - "codeCommune": "62846", - "libelleAcheminement": "VERMELLES", - "nomCommune": "VERMELLES" + "codePostal": "34160", + "codeCommune": "34249", + "libelleAcheminement": "ST DREZERY", + "nomCommune": "ST DREZERY" }, { - "codePostal": "12390", - "codeCommune": "12031", - "libelleAcheminement": "BOURNAZEL", - "nomCommune": "BOURNAZEL" + "codePostal": "36220", + "codeCommune": "36224", + "libelleAcheminement": "TOURNON ST MARTIN", + "nomCommune": "TOURNON ST MARTIN" }, { - "codePostal": "28700", - "codeCommune": "28317", - "libelleAcheminement": "ROINVILLE", - "nomCommune": "ROINVILLE" + "codePostal": "50570", + "codeCommune": "50292", + "libelleAcheminement": "MARIGNY LE LOZON", + "nomCommune": "MARIGNY LE LOZON" }, { - "codePostal": "39350", - "codeCommune": "39527", - "libelleAcheminement": "TAXENNE", - "nomCommune": "TAXENNE" + "codePostal": "50610", + "codeCommune": "50066", + "libelleAcheminement": "JULLOUVILLE", + "nomCommune": "JULLOUVILLE" }, { - "codePostal": "62180", - "codeCommune": "62849", - "libelleAcheminement": "VERTON", - "nomCommune": "VERTON" + "codePostal": "34390", + "codeCommune": "34250", + "libelleAcheminement": "ST ETIENNE D ALBAGNAN", + "nomCommune": "ST ETIENNE D ALBAGNAN" }, { - "codePostal": "12800", - "codeCommune": "12041", - "libelleAcheminement": "CABANES", - "nomCommune": "CABANES" + "codePostal": "36230", + "codeCommune": "36226", + "libelleAcheminement": "TRANZAULT", + "nomCommune": "TRANZAULT" }, { - "codePostal": "28310", - "codeCommune": "28319", - "libelleAcheminement": "ROUVRAY ST DENIS", - "nomCommune": "ROUVRAY ST DENIS" + "codePostal": "50570", + "codeCommune": "50302", + "libelleAcheminement": "LE MESNIL AMEY", + "nomCommune": "LE MESNIL AMEY" }, { - "codePostal": "39110", - "codeCommune": "39529", - "libelleAcheminement": "THESY", - "nomCommune": "THESY" + "codePostal": "50200", + "codeCommune": "50072", + "libelleAcheminement": "BRAINVILLE", + "nomCommune": "BRAINVILLE" }, { - "codePostal": "62450", - "codeCommune": "62855", - "libelleAcheminement": "VILLERS AU FLOS", - "nomCommune": "VILLERS AU FLOS" + "codePostal": "34260", + "codeCommune": "34252", + "libelleAcheminement": "ST ETIENNE ESTRECHOUX", + "nomCommune": "ST ETIENNE ESTRECHOUX" }, { - "codePostal": "12160", - "codeCommune": "12045", - "libelleAcheminement": "CAMBOULAZET", - "nomCommune": "CAMBOULAZET" + "codePostal": "36600", + "codeCommune": "36228", + "libelleAcheminement": "VALENCAY", + "nomCommune": "VALENCAY" }, { - "codePostal": "28270", - "codeCommune": "28322", - "libelleAcheminement": "RUEIL LA GADELIERE", - "nomCommune": "RUEIL LA GADELIERE" + "codePostal": "50220", + "codeCommune": "50317", + "libelleAcheminement": "LE MESNIL OZENNE", + "nomCommune": "LE MESNIL OZENNE" }, { - "codePostal": "39240", - "codeCommune": "39530", - "libelleAcheminement": "THOIRETTE COISIA", - "nomCommune": "THOIRETTE COISIA" + "codePostal": "50370", + "codeCommune": "50074", + "libelleAcheminement": "BRECEY", + "nomCommune": "BRECEY" }, { - "codePostal": "62690", - "codeCommune": "62856", - "libelleAcheminement": "VILLERS BRULIN", - "nomCommune": "VILLERS BRULIN" + "codePostal": "34480", + "codeCommune": "34258", + "libelleAcheminement": "ST GENIES DE FONTEDIT", + "nomCommune": "ST GENIES DE FONTEDIT" }, { - "codePostal": "12420", - "codeCommune": "12051", - "libelleAcheminement": "CANTOIN", - "nomCommune": "CANTOIN" + "codePostal": "36400", + "codeCommune": "36236", + "libelleAcheminement": "VICQ EXEMPLET", + "nomCommune": "VICQ EXEMPLET" }, { - "codePostal": "28190", - "codeCommune": "28324", - "libelleAcheminement": "ST ARNOULT DES BOIS", - "nomCommune": "ST ARNOULT DES BOIS" + "codePostal": "50000", + "codeCommune": "50321", + "libelleAcheminement": "LE MESNIL ROUXELIN", + "nomCommune": "LE MESNIL ROUXELIN" }, { - "codePostal": "39270", - "codeCommune": "39534", - "libelleAcheminement": "LA TOUR DU MEIX", - "nomCommune": "LA TOUR DU MEIX" + "codePostal": "50290", + "codeCommune": "50081", + "libelleAcheminement": "BREVILLE SUR MER", + "nomCommune": "BREVILLE SUR MER" }, { - "codePostal": "62390", - "codeCommune": "62859", - "libelleAcheminement": "VILLERS L HOPITAL", - "nomCommune": "VILLERS L HOPITAL" + "codePostal": "34160", + "codeCommune": "34265", + "libelleAcheminement": "ST JEAN DE CORNIES", + "nomCommune": "ST JEAN DE CORNIES" }, { - "codePostal": "12120", - "codeCommune": "12057", - "libelleAcheminement": "CASSAGNES BEGONHES", - "nomCommune": "CASSAGNES BEGONHES" + "codePostal": "36600", + "codeCommune": "36237", + "libelleAcheminement": "VICQ SUR NAHON", + "nomCommune": "VICQ SUR NAHON" }, { - "codePostal": "28120", - "codeCommune": "28326", - "libelleAcheminement": "ST AVIT LES GUESPIERES", - "nomCommune": "ST AVIT LES GUESPIERES" + "codePostal": "50450", + "codeCommune": "50326", + "libelleAcheminement": "LE MESNIL VILLEMAN", + "nomCommune": "LE MESNIL VILLEMAN" }, { - "codePostal": "39380", - "codeCommune": "39546", - "libelleAcheminement": "VAUDREY", - "nomCommune": "VAUDREY" + "codePostal": "50260", + "codeCommune": "50082", + "libelleAcheminement": "BRICQUEBEC EN COTENTIN", + "nomCommune": "BRICQUEBEC EN COTENTIN" }, { - "codePostal": "62310", - "codeCommune": "62862", - "libelleAcheminement": "VINCLY", - "nomCommune": "VINCLY" + "codePostal": "34150", + "codeCommune": "34267", + "libelleAcheminement": "ST JEAN DE FOS", + "nomCommune": "ST JEAN DE FOS" }, { - "codePostal": "12800", - "codeCommune": "12060", - "libelleAcheminement": "CASTELMARY", - "nomCommune": "CASTELMARY" + "codePostal": "36160", + "codeCommune": "36238", + "libelleAcheminement": "VIGOULANT", + "nomCommune": "VIGOULANT" }, { - "codePostal": "28200", - "codeCommune": "28329", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "50190", + "codeCommune": "50328", + "libelleAcheminement": "MILLIERES", + "nomCommune": "MILLIERES" }, { - "codePostal": "39380", - "codeCommune": "39559", - "libelleAcheminement": "LA VIEILLE LOYE", - "nomCommune": "LA VIEILLE LOYE" + "codePostal": "50260", + "codeCommune": "50082", + "libelleAcheminement": "BRICQUEBEC EN COTENTIN", + "nomCommune": "BRICQUEBEC EN COTENTIN" }, { - "codePostal": "62138", - "codeCommune": "62863", - "libelleAcheminement": "VIOLAINES", - "nomCommune": "VIOLAINES" + "codePostal": "34400", + "codeCommune": "34280", + "libelleAcheminement": "ST NAZAIRE DE PEZAN", + "nomCommune": "ST NAZAIRE DE PEZAN" }, { - "codePostal": "12500", - "codeCommune": "12061", - "libelleAcheminement": "CASTELNAU DE MANDAILLES", - "nomCommune": "CASTELNAU DE MANDAILLES" + "codePostal": "36170", + "codeCommune": "36239", + "libelleAcheminement": "VIGOUX", + "nomCommune": "VIGOUX" }, { - "codePostal": "28200", - "codeCommune": "28330", - "libelleAcheminement": "VILLEMAURY", - "nomCommune": "VILLEMAURY" + "codePostal": "50700", + "codeCommune": "50335", + "libelleAcheminement": "MONTAIGU LA BRISETTE", + "nomCommune": "MONTAIGU LA BRISETTE" }, { - "codePostal": "39100", - "codeCommune": "39573", - "libelleAcheminement": "VILLETTE LES DOLE", - "nomCommune": "VILLETTE LES DOLE" + "codePostal": "50260", + "codeCommune": "50082", + "libelleAcheminement": "BRICQUEBEC EN COTENTIN", + "nomCommune": "BRICQUEBEC EN COTENTIN" }, { - "codePostal": "62180", - "codeCommune": "62866", - "libelleAcheminement": "WABEN", - "nomCommune": "WABEN" + "codePostal": "34220", + "codeCommune": "34284", + "libelleAcheminement": "ST PONS DE THOMIERES", + "nomCommune": "ST PONS DE THOMIERES" }, { - "codePostal": "12620", - "codeCommune": "12062", - "libelleAcheminement": "CASTELNAU PEGAYROLS", - "nomCommune": "CASTELNAU PEGAYROLS" + "codePostal": "36160", + "codeCommune": "36240", + "libelleAcheminement": "VIJON", + "nomCommune": "VIJON" }, { - "codePostal": "28240", - "codeCommune": "28335", - "libelleAcheminement": "ST ELIPH", - "nomCommune": "ST ELIPH" + "codePostal": "50760", + "codeCommune": "50342", + "libelleAcheminement": "MONTFARVILLE", + "nomCommune": "MONTFARVILLE" }, { - "codePostal": "39190", - "codeCommune": "39576", - "libelleAcheminement": "VAL SONNETTE", - "nomCommune": "VAL SONNETTE" + "codePostal": "50340", + "codeCommune": "50083", + "libelleAcheminement": "BRICQUEBOSQ", + "nomCommune": "BRICQUEBOSQ" }, { - "codePostal": "62250", - "codeCommune": "62867", - "libelleAcheminement": "WACQUINGHEN", - "nomCommune": "WACQUINGHEN" + "codePostal": "34230", + "codeCommune": "34285", + "libelleAcheminement": "ST PONS DE MAUCHIENS", + "nomCommune": "ST PONS DE MAUCHIENS" }, { - "codePostal": "12330", - "codeCommune": "12066", - "libelleAcheminement": "CLAIRVAUX D AVEYRON", - "nomCommune": "CLAIRVAUX D AVEYRON" + "codePostal": "36110", + "codeCommune": "36247", + "libelleAcheminement": "VINEUIL", + "nomCommune": "VINEUIL" }, { - "codePostal": "28170", - "codeCommune": "28341", - "libelleAcheminement": "ST JEAN DE REBERVILLIERS", - "nomCommune": "ST JEAN DE REBERVILLIERS" + "codePostal": "50140", + "codeCommune": "50359", + "libelleAcheminement": "MORTAIN BOCAGE", + "nomCommune": "MORTAIN BOCAGE" }, { - "codePostal": "39190", - "codeCommune": "39576", - "libelleAcheminement": "VAL SONNETTE", - "nomCommune": "VAL SONNETTE" + "codePostal": "50290", + "codeCommune": "50085", + "libelleAcheminement": "BRICQUEVILLE SUR MER", + "nomCommune": "BRICQUEVILLE SUR MER" }, { - "codePostal": "62140", - "codeCommune": "62871", - "libelleAcheminement": "WAMBERCOURT", - "nomCommune": "WAMBERCOURT" + "codePostal": "34725", + "codeCommune": "34287", + "libelleAcheminement": "ST SATURNIN DE LUCIAN", + "nomCommune": "ST SATURNIN DE LUCIAN" }, { - "codePostal": "12540", - "codeCommune": "12067", - "libelleAcheminement": "LE CLAPIER", - "nomCommune": "LE CLAPIER" + "codePostal": "37160", + "codeCommune": "37001", + "libelleAcheminement": "ABILLY", + "nomCommune": "ABILLY" }, { - "codePostal": "28350", - "codeCommune": "28348", - "libelleAcheminement": "ST LUBIN DES JONCHERETS", - "nomCommune": "ST LUBIN DES JONCHERETS" + "codePostal": "50490", + "codeCommune": "50364", + "libelleAcheminement": "MUNEVILLE LE BINGARD", + "nomCommune": "MUNEVILLE LE BINGARD" }, { - "codePostal": "39190", - "codeCommune": "39576", - "libelleAcheminement": "VAL SONNETTE", - "nomCommune": "VAL SONNETTE" + "codePostal": "50640", + "codeCommune": "50090", + "libelleAcheminement": "BUAIS LES MONTS", + "nomCommune": "BUAIS LES MONTS" }, { - "codePostal": "62128", - "codeCommune": "62873", - "libelleAcheminement": "WANCOURT", - "nomCommune": "WANCOURT" + "codePostal": "34730", + "codeCommune": "34290", + "libelleAcheminement": "ST VINCENT DE BARBEYRARGUES", + "nomCommune": "ST VINCENT DE BARBEYRARGUES" }, { - "codePostal": "12370", - "codeCommune": "12069", - "libelleAcheminement": "COMBRET", - "nomCommune": "COMBRET" + "codePostal": "37500", + "codeCommune": "37004", + "libelleAcheminement": "ANCHE", + "nomCommune": "ANCHE" }, { - "codePostal": "28130", - "codeCommune": "28352", - "libelleAcheminement": "ST MARTIN DE NIGELLES", - "nomCommune": "ST MARTIN DE NIGELLES" + "codePostal": "50390", + "codeCommune": "50370", + "libelleAcheminement": "NEHOU", + "nomCommune": "NEHOU" }, { - "codePostal": "39350", - "codeCommune": "39581", - "libelleAcheminement": "VITREUX", - "nomCommune": "VITREUX" + "codePostal": "50570", + "codeCommune": "50093", + "libelleAcheminement": "CAMETOURS", + "nomCommune": "CAMETOURS" }, { - "codePostal": "62760", - "codeCommune": "62877", - "libelleAcheminement": "WARLINCOURT LES PAS", - "nomCommune": "WARLINCOURT LES PAS" + "codePostal": "34410", + "codeCommune": "34298", + "libelleAcheminement": "SAUVIAN", + "nomCommune": "SAUVIAN" }, { - "codePostal": "12100", - "codeCommune": "12072", - "libelleAcheminement": "COMPREGNAC", - "nomCommune": "COMPREGNAC" + "codePostal": "37260", + "codeCommune": "37006", + "libelleAcheminement": "ARTANNES SUR INDRE", + "nomCommune": "ARTANNES SUR INDRE" }, { - "codePostal": "28380", - "codeCommune": "28359", - "libelleAcheminement": "ST REMY SUR AVRE", - "nomCommune": "ST REMY SUR AVRE" + "codePostal": "50140", + "codeCommune": "50371", + "libelleAcheminement": "LE NEUFBOURG", + "nomCommune": "LE NEUFBOURG" }, { - "codePostal": "39240", - "codeCommune": "39583", - "libelleAcheminement": "VOSBLES VALFIN", - "nomCommune": "VOSBLES VALFIN" + "codePostal": "50480", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "62390", - "codeCommune": "62881", - "libelleAcheminement": "BEAUVOIR WAVANS", - "nomCommune": "BEAUVOIR WAVANS" + "codePostal": "34200", + "codeCommune": "34301", + "libelleAcheminement": "SETE", + "nomCommune": "SETE" }, { - "codePostal": "12320", - "codeCommune": "12076", - "libelleAcheminement": "CONQUES EN ROUERGUE", - "nomCommune": "CONQUES EN ROUERGUE" + "codePostal": "37110", + "codeCommune": "37010", + "libelleAcheminement": "AUZOUER EN TOURAINE", + "nomCommune": "AUZOUER EN TOURAINE" }, { - "codePostal": "28170", - "codeCommune": "28360", - "libelleAcheminement": "ST SAUVEUR MARVILLE", - "nomCommune": "ST SAUVEUR MARVILLE" + "codePostal": "50480", + "codeCommune": "50373", + "libelleAcheminement": "NEUVILLE AU PLAIN", + "nomCommune": "NEUVILLE AU PLAIN" }, { - "codePostal": "39110", - "codeCommune": "39586", - "libelleAcheminement": "ARESCHES", - "nomCommune": "ARESCHES" + "codePostal": "50500", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "62410", - "codeCommune": "62895", - "libelleAcheminement": "WINGLES", - "nomCommune": "WINGLES" + "codePostal": "34700", + "codeCommune": "34304", + "libelleAcheminement": "SOUBES", + "nomCommune": "SOUBES" }, { - "codePostal": "12550", - "codeCommune": "12080", - "libelleAcheminement": "COUPIAC", - "nomCommune": "COUPIAC" + "codePostal": "37340", + "codeCommune": "37013", + "libelleAcheminement": "AVRILLE LES PONCEAUX", + "nomCommune": "AVRILLE LES PONCEAUX" }, { - "codePostal": "28700", - "codeCommune": "28366", - "libelleAcheminement": "SANTEUIL", - "nomCommune": "SANTEUIL" + "codePostal": "50370", + "codeCommune": "50379", + "libelleAcheminement": "NOTRE DAME DE LIVOYE", + "nomCommune": "NOTRE DAME DE LIVOYE" }, { - "codePostal": "40990", - "codeCommune": "40003", - "libelleAcheminement": "ANGOUME", - "nomCommune": "ANGOUME" + "codePostal": "50390", + "codeCommune": "50105", + "libelleAcheminement": "CATTEVILLE", + "nomCommune": "CATTEVILLE" }, { - "codePostal": "62890", - "codeCommune": "62904", - "libelleAcheminement": "ZOUAFQUES", - "nomCommune": "ZOUAFQUES" + "codePostal": "34260", + "codeCommune": "34312", + "libelleAcheminement": "LA TOUR SUR ORB", + "nomCommune": "LA TOUR SUR ORB" }, { - "codePostal": "12300", - "codeCommune": "12089", - "libelleAcheminement": "DECAZEVILLE", - "nomCommune": "DECAZEVILLE" + "codePostal": "37310", + "codeCommune": "37016", + "libelleAcheminement": "AZAY SUR INDRE", + "nomCommune": "AZAY SUR INDRE" }, { - "codePostal": "28310", - "codeCommune": "28367", - "libelleAcheminement": "SANTILLY", - "nomCommune": "SANTILLY" + "codePostal": "50210", + "codeCommune": "50389", + "libelleAcheminement": "OUVILLE", + "nomCommune": "OUVILLE" }, { - "codePostal": "40150", - "codeCommune": "40004", - "libelleAcheminement": "ANGRESSE", - "nomCommune": "ANGRESSE" + "codePostal": "50320", + "codeCommune": "50115", + "libelleAcheminement": "LE GRIPPON", + "nomCommune": "LE GRIPPON" }, { - "codePostal": "63980", - "codeCommune": "63002", - "libelleAcheminement": "AIX LA FAYETTE", - "nomCommune": "AIX LA FAYETTE" + "codePostal": "34220", + "codeCommune": "34331", + "libelleAcheminement": "VERRERIES DE MOUSSANS", + "nomCommune": "VERRERIES DE MOUSSANS" }, { - "codePostal": "12140", - "codeCommune": "12094", - "libelleAcheminement": "ENTRAYGUES SUR TRUYERE", - "nomCommune": "ENTRAYGUES SUR TRUYERE" + "codePostal": "37110", + "codeCommune": "37030", + "libelleAcheminement": "LE BOULAY", + "nomCommune": "LE BOULAY" }, { - "codePostal": "28500", - "codeCommune": "28369", - "libelleAcheminement": "SAULNIERES", - "nomCommune": "SAULNIERES" + "codePostal": "50600", + "codeCommune": "50391", + "libelleAcheminement": "GRANDPARIGNY", + "nomCommune": "GRANDPARIGNY" }, { - "codePostal": "40700", - "codeCommune": "40016", - "libelleAcheminement": "AUBAGNAN", - "nomCommune": "AUBAGNAN" + "codePostal": "50370", + "codeCommune": "50124", + "libelleAcheminement": "LA CHAPELLE UREE", + "nomCommune": "LA CHAPELLE UREE" }, { - "codePostal": "63340", - "codeCommune": "63005", - "libelleAcheminement": "ANTOINGT", - "nomCommune": "ANTOINGT" + "codePostal": "34560", + "codeCommune": "34341", + "libelleAcheminement": "VILLEVEYRAC", + "nomCommune": "VILLEVEYRAC" }, { - "codePostal": "12500", - "codeCommune": "12096", - "libelleAcheminement": "ESPALION", - "nomCommune": "ESPALION" + "codePostal": "37330", + "codeCommune": "37036", + "libelleAcheminement": "BRAYE SUR MAULNE", + "nomCommune": "BRAYE SUR MAULNE" }, { - "codePostal": "28400", - "codeCommune": "28378", - "libelleAcheminement": "SOUANCE AU PERCHE", - "nomCommune": "SOUANCE AU PERCHE" + "codePostal": "50160", + "codeCommune": "50398", + "libelleAcheminement": "LE PERRON", + "nomCommune": "LE PERRON" }, { - "codePostal": "40200", - "codeCommune": "40019", - "libelleAcheminement": "AUREILHAN", - "nomCommune": "AUREILHAN" + "codePostal": "50330", + "codeCommune": "50135", + "libelleAcheminement": "CLITOURPS", + "nomCommune": "CLITOURPS" }, { - "codePostal": "63460", - "codeCommune": "63012", - "libelleAcheminement": "ARTONNE", - "nomCommune": "ARTONNE" + "codePostal": "35460", + "codeCommune": "35004", + "libelleAcheminement": "VAL COUESNON", + "nomCommune": "VAL COUESNON" }, { - "codePostal": "12140", - "codeCommune": "12103", - "libelleAcheminement": "FLORENTIN LA CAPELLE", - "nomCommune": "FLORENTIN LA CAPELLE" + "codePostal": "37600", + "codeCommune": "37039", + "libelleAcheminement": "BRIDORE", + "nomCommune": "BRIDORE" }, { - "codePostal": "28170", - "codeCommune": "28386", - "libelleAcheminement": "THIMERT GATELLES", - "nomCommune": "THIMERT GATELLES" + "codePostal": "50340", + "codeCommune": "50402", + "libelleAcheminement": "LES PIEUX", + "nomCommune": "LES PIEUX" }, { - "codePostal": "40140", - "codeCommune": "40021", - "libelleAcheminement": "AZUR", - "nomCommune": "AZUR" + "codePostal": "50800", + "codeCommune": "50137", + "libelleAcheminement": "LA COLOMBE", + "nomCommune": "LA COLOMBE" }, { - "codePostal": "63260", - "codeCommune": "63013", - "libelleAcheminement": "AUBIAT", - "nomCommune": "AUBIAT" + "codePostal": "35460", + "codeCommune": "35004", + "libelleAcheminement": "VAL COUESNON", + "nomCommune": "VAL COUESNON" }, { - "codePostal": "12340", - "codeCommune": "12106", - "libelleAcheminement": "GABRIAC", - "nomCommune": "GABRIAC" + "codePostal": "37160", + "codeCommune": "37045", + "libelleAcheminement": "LA CELLE ST AVANT", + "nomCommune": "LA CELLE ST AVANT" }, { - "codePostal": "28170", - "codeCommune": "28393", - "libelleAcheminement": "TREMBLAY LES VILLAGES", - "nomCommune": "TREMBLAY LES VILLAGES" + "codePostal": "50250", + "codeCommune": "50405", + "libelleAcheminement": "LE PLESSIS LASTELLE", + "nomCommune": "LE PLESSIS LASTELLE" }, { - "codePostal": "40320", - "codeCommune": "40022", - "libelleAcheminement": "BAHUS SOUBIRAN", - "nomCommune": "BAHUS SOUBIRAN" + "codePostal": "50290", + "codeCommune": "50143", + "libelleAcheminement": "COUDEVILLE SUR MER", + "nomCommune": "COUDEVILLE SUR MER" }, { - "codePostal": "63120", - "codeCommune": "63015", - "libelleAcheminement": "AUBUSSON D AUVERGNE", - "nomCommune": "AUBUSSON D AUVERGNE" + "codePostal": "35130", + "codeCommune": "35005", + "libelleAcheminement": "ARBRISSEL", + "nomCommune": "ARBRISSEL" }, { - "codePostal": "12210", - "codeCommune": "12119", - "libelleAcheminement": "LAGUIOLE", - "nomCommune": "LAGUIOLE" + "codePostal": "37460", + "codeCommune": "37046", + "libelleAcheminement": "CERE LA RONDE", + "nomCommune": "CERE LA RONDE" }, { - "codePostal": "28800", - "codeCommune": "28396", - "libelleAcheminement": "TRIZAY LES BONNEVAL", - "nomCommune": "TRIZAY LES BONNEVAL" + "codePostal": "50620", + "codeCommune": "50409", + "libelleAcheminement": "PONT HEBERT", + "nomCommune": "PONT HEBERT" }, { - "codePostal": "40090", - "codeCommune": "40025", - "libelleAcheminement": "BASCONS", - "nomCommune": "BASCONS" + "codePostal": "50690", + "codeCommune": "50149", + "libelleAcheminement": "COUVILLE", + "nomCommune": "COUVILLE" }, { - "codePostal": "63340", - "codeCommune": "63017", - "libelleAcheminement": "AUGNAT", - "nomCommune": "AUGNAT" + "codePostal": "35130", + "codeCommune": "35008", + "libelleAcheminement": "AVAILLES SUR SEICHE", + "nomCommune": "AVAILLES SUR SEICHE" }, { - "codePostal": "12310", - "codeCommune": "12120", - "libelleAcheminement": "LAISSAC SEVERAC L EGLISE", - "nomCommune": "LAISSAC SEVERAC L EGLISE" + "codePostal": "37310", + "codeCommune": "37049", + "libelleAcheminement": "CHAMBOURG SUR INDRE", + "nomCommune": "CHAMBOURG SUR INDRE" }, { - "codePostal": "28240", - "codeCommune": "28401", - "libelleAcheminement": "VAUPILLON", - "nomCommune": "VAUPILLON" + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { - "codePostal": "40180", - "codeCommune": "40035", - "libelleAcheminement": "BENESSE LES DAX", - "nomCommune": "BENESSE LES DAX" + "codePostal": "50220", + "codeCommune": "50155", + "libelleAcheminement": "CROLLON", + "nomCommune": "CROLLON" }, { - "codePostal": "63510", - "codeCommune": "63019", - "libelleAcheminement": "AULNAT", - "nomCommune": "AULNAT" + "codePostal": "35120", + "codeCommune": "35009", + "libelleAcheminement": "BAGUER MORVAN", + "nomCommune": "BAGUER MORVAN" }, { - "codePostal": "12230", - "codeCommune": "12122", - "libelleAcheminement": "LAPANOUSE DE CERNON", - "nomCommune": "LAPANOUSE DE CERNON" + "codePostal": "37210", + "codeCommune": "37052", + "libelleAcheminement": "CHANCAY", + "nomCommune": "CHANCAY" }, { - "codePostal": "28500", - "codeCommune": "28404", - "libelleAcheminement": "VERNOUILLET", - "nomCommune": "VERNOUILLET" + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { - "codePostal": "40240", - "codeCommune": "40039", - "libelleAcheminement": "BETBEZER D ARMAGNAC", - "nomCommune": "BETBEZER D ARMAGNAC" + "codePostal": "50360", + "codeCommune": "50156", + "libelleAcheminement": "CROSVILLE SUR DOUVE", + "nomCommune": "CROSVILLE SUR DOUVE" }, { - "codePostal": "63210", - "codeCommune": "63020", - "libelleAcheminement": "AURIERES", - "nomCommune": "AURIERES" + "codePostal": "35470", + "codeCommune": "35012", + "libelleAcheminement": "BAIN DE BRETAGNE", + "nomCommune": "BAIN DE BRETAGNE" }, { - "codePostal": "12170", - "codeCommune": "12127", - "libelleAcheminement": "LEDERGUES", - "nomCommune": "LEDERGUES" + "codePostal": "37120", + "codeCommune": "37065", + "libelleAcheminement": "CHAVEIGNES", + "nomCommune": "CHAVEIGNES" }, { - "codePostal": "28140", - "codeCommune": "28406", - "libelleAcheminement": "EOLE EN BEAUCE", - "nomCommune": "EOLE EN BEAUCE" + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { - "codePostal": "40700", - "codeCommune": "40041", - "libelleAcheminement": "BEYRIES", - "nomCommune": "BEYRIES" + "codePostal": "50620", + "codeCommune": "50161", + "libelleAcheminement": "LE DEZERT", + "nomCommune": "LE DEZERT" }, { - "codePostal": "63570", - "codeCommune": "63022", - "libelleAcheminement": "AUZAT LA COMBELLE", - "nomCommune": "AUZAT LA COMBELLE" + "codePostal": "35750", + "codeCommune": "35026", + "libelleAcheminement": "BLERUAIS", + "nomCommune": "BLERUAIS" }, { - "codePostal": "12540", - "codeCommune": "12139", - "libelleAcheminement": "MARNHAGUES ET LATOUR", - "nomCommune": "MARNHAGUES ET LATOUR" + "codePostal": "37460", + "codeCommune": "37069", + "libelleAcheminement": "CHEMILLE SUR INDROIS", + "nomCommune": "CHEMILLE SUR INDROIS" }, { - "codePostal": "28200", - "codeCommune": "28410", - "libelleAcheminement": "VILLAMPUY", - "nomCommune": "VILLAMPUY" + "codePostal": "50660", + "codeCommune": "50419", + "libelleAcheminement": "QUETTREVILLE SUR SIENNE", + "nomCommune": "QUETTREVILLE SUR SIENNE" }, { - "codePostal": "40390", - "codeCommune": "40042", - "libelleAcheminement": "BIARROTTE", - "nomCommune": "BIARROTTE" + "codePostal": "50320", + "codeCommune": "50174", + "libelleAcheminement": "EQUILLY", + "nomCommune": "EQUILLY" }, { - "codePostal": "63310", - "codeCommune": "63033", - "libelleAcheminement": "BEAUMONT LES RANDAN", - "nomCommune": "BEAUMONT LES RANDAN" + "codePostal": "35160", + "codeCommune": "35040", + "libelleAcheminement": "BRETEIL", + "nomCommune": "BRETEIL" }, { - "codePostal": "12200", - "codeCommune": "12140", - "libelleAcheminement": "MARTIEL", - "nomCommune": "MARTIEL" + "codePostal": "37140", + "codeCommune": "37074", + "libelleAcheminement": "CHOUZE SUR LOIRE", + "nomCommune": "CHOUZE SUR LOIRE" }, { - "codePostal": "28360", - "codeCommune": "28419", - "libelleAcheminement": "VITRAY EN BEAUCE", - "nomCommune": "VITRAY EN BEAUCE" + "codePostal": "50660", + "codeCommune": "50419", + "libelleAcheminement": "QUETTREVILLE SUR SIENNE", + "nomCommune": "QUETTREVILLE SUR SIENNE" }, { - "codePostal": "40090", - "codeCommune": "40050", - "libelleAcheminement": "BOSTENS", - "nomCommune": "BOSTENS" + "codePostal": "50360", + "codeCommune": "50177", + "libelleAcheminement": "ETIENVILLE", + "nomCommune": "ETIENVILLE" }, { - "codePostal": "63460", - "codeCommune": "63035", - "libelleAcheminement": "BEAUREGARD VENDON", - "nomCommune": "BEAUREGARD VENDON" + "codePostal": "35150", + "codeCommune": "35041", + "libelleAcheminement": "BRIE", + "nomCommune": "BRIE" }, { - "codePostal": "12360", - "codeCommune": "12147", - "libelleAcheminement": "MONTAGNOL", - "nomCommune": "MONTAGNOL" + "codePostal": "37240", + "codeCommune": "37078", + "libelleAcheminement": "CIRAN", + "nomCommune": "CIRAN" }, { - "codePostal": "28150", - "codeCommune": "28422", - "libelleAcheminement": "LES VILLAGES VOVEENS", - "nomCommune": "LES VILLAGES VOVEENS" + "codePostal": "50310", + "codeCommune": "50421", + "libelleAcheminement": "QUINEVILLE", + "nomCommune": "QUINEVILLE" }, { - "codePostal": "40090", - "codeCommune": "40064", - "libelleAcheminement": "CANENX ET REAUT", - "nomCommune": "CANENX ET REAUT" + "codePostal": "50760", + "codeCommune": "50196", + "libelleAcheminement": "GATTEVILLE LE PHARE", + "nomCommune": "GATTEVILLE LE PHARE" }, { - "codePostal": "63610", - "codeCommune": "63038", - "libelleAcheminement": "BESSE ET ST ANASTAISE", - "nomCommune": "BESSE ET ST ANASTAISE" + "codePostal": "35170", + "codeCommune": "35047", + "libelleAcheminement": "BRUZ", + "nomCommune": "BRUZ" }, { - "codePostal": "12550", - "codeCommune": "12149", - "libelleAcheminement": "MONTCLAR", - "nomCommune": "MONTCLAR" + "codePostal": "37500", + "codeCommune": "37089", + "libelleAcheminement": "CRAVANT LES COTEAUX", + "nomCommune": "CRAVANT LES COTEAUX" }, { - "codePostal": "28130", - "codeCommune": "28423", - "libelleAcheminement": "YERMENONVILLE", - "nomCommune": "YERMENONVILLE" + "codePostal": "50760", + "codeCommune": "50433", + "libelleAcheminement": "REVILLE", + "nomCommune": "REVILLE" }, { - "codePostal": "40130", - "codeCommune": "40065", - "libelleAcheminement": "CAPBRETON", - "nomCommune": "CAPBRETON" + "codePostal": "50330", + "codeCommune": "50209", + "libelleAcheminement": "GONNEVILLE LE THEIL", + "nomCommune": "GONNEVILLE LE THEIL" }, { - "codePostal": "63640", - "codeCommune": "63041", - "libelleAcheminement": "BIOLLET", - "nomCommune": "BIOLLET" + "codePostal": "35190", + "codeCommune": "35050", + "libelleAcheminement": "CARDROC", + "nomCommune": "CARDROC" }, { - "codePostal": "12460", - "codeCommune": "12151", - "libelleAcheminement": "MONTEZIC", - "nomCommune": "MONTEZIC" + "codePostal": "37220", + "codeCommune": "37093", + "libelleAcheminement": "CROUZILLES", + "nomCommune": "CROUZILLES" }, { - "codePostal": "28160", - "codeCommune": "28424", - "libelleAcheminement": "YEVRES", - "nomCommune": "YEVRES" + "codePostal": "50160", + "codeCommune": "50444", + "libelleAcheminement": "ST AMAND VILLAGES", + "nomCommune": "ST AMAND VILLAGES" }, { - "codePostal": "40270", - "codeCommune": "40070", - "libelleAcheminement": "CASTANDET", - "nomCommune": "CASTANDET" + "codePostal": "50190", + "codeCommune": "50210", + "libelleAcheminement": "GORGES", + "nomCommune": "GORGES" }, { - "codePostal": "63112", - "codeCommune": "63042", - "libelleAcheminement": "BLANZAT", - "nomCommune": "BLANZAT" + "codePostal": "35133", + "codeCommune": "35062", + "libelleAcheminement": "LA CHAPELLE JANSON", + "nomCommune": "LA CHAPELLE JANSON" }, { - "codePostal": "12540", - "codeCommune": "12155", - "libelleAcheminement": "FONDAMENTE", - "nomCommune": "FONDAMENTE" + "codePostal": "37110", + "codeCommune": "37095", + "libelleAcheminement": "DAME MARIE LES BOIS", + "nomCommune": "DAME MARIE LES BOIS" }, { - "codePostal": "29300", - "codeCommune": "29002", - "libelleAcheminement": "ARZANO", - "nomCommune": "ARZANO" + "codePostal": "50160", + "codeCommune": "50444", + "libelleAcheminement": "ST AMAND VILLAGES", + "nomCommune": "ST AMAND VILLAGES" }, { - "codePostal": "40360", - "codeCommune": "40071", - "libelleAcheminement": "CASTELNAU CHALOSSE", - "nomCommune": "CASTELNAU CHALOSSE" + "codePostal": "50200", + "codeCommune": "50215", + "libelleAcheminement": "GOUVILLE SUR MER", + "nomCommune": "GOUVILLE SUR MER" }, { - "codePostal": "63820", - "codeCommune": "63053", - "libelleAcheminement": "BRIFFONS", - "nomCommune": "BRIFFONS" + "codePostal": "35660", + "codeCommune": "35064", + "libelleAcheminement": "LA CHAPELLE DE BRAIN", + "nomCommune": "LA CHAPELLE DE BRAIN" }, { - "codePostal": "12330", - "codeCommune": "12165", - "libelleAcheminement": "MURET LE CHATEAU", - "nomCommune": "MURET LE CHATEAU" + "codePostal": "37150", + "codeCommune": "37096", + "libelleAcheminement": "DIERRE", + "nomCommune": "DIERRE" }, { - "codePostal": "29300", - "codeCommune": "29005", - "libelleAcheminement": "BAYE", - "nomCommune": "BAYE" + "codePostal": "50380", + "codeCommune": "50447", + "libelleAcheminement": "ST AUBIN DES PREAUX", + "nomCommune": "ST AUBIN DES PREAUX" }, { - "codePostal": "40500", - "codeCommune": "40076", - "libelleAcheminement": "CAUNA", - "nomCommune": "CAUNA" + "codePostal": "50730", + "codeCommune": "50229", + "libelleAcheminement": "HAMELIN", + "nomCommune": "HAMELIN" }, { - "codePostal": "63500", - "codeCommune": "63054", - "libelleAcheminement": "LE BROC", - "nomCommune": "LE BROC" + "codePostal": "35410", + "codeCommune": "35069", + "libelleAcheminement": "CHATEAUGIRON", + "nomCommune": "CHATEAUGIRON" }, { - "codePostal": "12330", - "codeCommune": "12171", - "libelleAcheminement": "NAUVIALE", - "nomCommune": "NAUVIALE" + "codePostal": "37120", + "codeCommune": "37105", + "libelleAcheminement": "FAYE LA VINEUSE", + "nomCommune": "FAYE LA VINEUSE" }, { - "codePostal": "29820", - "codeCommune": "29011", - "libelleAcheminement": "BOHARS", - "nomCommune": "BOHARS" + "codePostal": "50800", + "codeCommune": "50453", + "libelleAcheminement": "STE CECILE", + "nomCommune": "STE CECILE" }, { - "codePostal": "40700", - "codeCommune": "40089", - "libelleAcheminement": "DOAZIT", - "nomCommune": "DOAZIT" + "codePostal": "50570", + "codeCommune": "50232", + "libelleAcheminement": "HAUTEVILLE LA GUICHARD", + "nomCommune": "HAUTEVILLE LA GUICHARD" }, { - "codePostal": "63230", - "codeCommune": "63055", - "libelleAcheminement": "BROMONT LAMOTHE", - "nomCommune": "BROMONT LAMOTHE" + "codePostal": "35430", + "codeCommune": "35070", + "libelleAcheminement": "CHATEAUNEUF D ILLE ET VILAINE", + "nomCommune": "CHATEAUNEUF D ILLE ET VILAINE" }, { - "codePostal": "12000", - "codeCommune": "12176", - "libelleAcheminement": "ONET LE CHATEAU", - "nomCommune": "ONET LE CHATEAU" + "codePostal": "37130", + "codeCommune": "37123", + "libelleAcheminement": "LANGEAIS", + "nomCommune": "LANGEAIS" }, { - "codePostal": "29200", - "codeCommune": "29019", - "libelleAcheminement": "BREST", - "nomCommune": "BREST" + "codePostal": "50310", + "codeCommune": "50461", + "libelleAcheminement": "ST CYR", + "nomCommune": "ST CYR" }, { - "codePostal": "40360", - "codeCommune": "40090", - "libelleAcheminement": "DONZACQ", - "nomCommune": "DONZACQ" + "codePostal": "50250", + "codeCommune": "50236", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "63250", - "codeCommune": "63066", - "libelleAcheminement": "CELLES SUR DUROLLE", - "nomCommune": "CELLES SUR DUROLLE" + "codePostal": "35590", + "codeCommune": "35081", + "libelleAcheminement": "CLAYES", + "nomCommune": "CLAYES" }, { - "codePostal": "12850", - "codeCommune": "12176", - "libelleAcheminement": "ONET LE CHATEAU", - "nomCommune": "ONET LE CHATEAU" + "codePostal": "37600", + "codeCommune": "37132", + "libelleAcheminement": "LOCHES", + "nomCommune": "LOCHES" }, { - "codePostal": "29570", - "codeCommune": "29022", - "libelleAcheminement": "CAMARET SUR MER", - "nomCommune": "CAMARET SUR MER" + "codePostal": "50720", + "codeCommune": "50474", + "libelleAcheminement": "ST GEORGES DE ROUELLEY", + "nomCommune": "ST GEORGES DE ROUELLEY" }, { - "codePostal": "40210", - "codeCommune": "40094", - "libelleAcheminement": "ESCOURCE", - "nomCommune": "ESCOURCE" + "codePostal": "50250", + "codeCommune": "50236", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "63330", - "codeCommune": "63067", - "libelleAcheminement": "LA CELLETTE", - "nomCommune": "LA CELLETTE" + "codePostal": "35440", + "codeCommune": "35094", + "libelleAcheminement": "DINGE", + "nomCommune": "DINGE" }, { - "codePostal": "12520", - "codeCommune": "12178", - "libelleAcheminement": "PAULHE", - "nomCommune": "PAULHE" + "codePostal": "37330", + "codeCommune": "37137", + "libelleAcheminement": "LUBLE", + "nomCommune": "LUBLE" }, { - "codePostal": "29150", - "codeCommune": "29026", - "libelleAcheminement": "CHATEAULIN", - "nomCommune": "CHATEAULIN" + "codePostal": "50340", + "codeCommune": "50480", + "libelleAcheminement": "ST GERMAIN LE GAILLARD", + "nomCommune": "ST GERMAIN LE GAILLARD" }, { - "codePostal": "40500", - "codeCommune": "40098", - "libelleAcheminement": "EYRES MONCUBE", - "nomCommune": "EYRES MONCUBE" + "codePostal": "50250", + "codeCommune": "50236", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "63210", - "codeCommune": "63071", - "libelleAcheminement": "CEYSSAT", - "nomCommune": "CEYSSAT" + "codePostal": "35120", + "codeCommune": "35095", + "libelleAcheminement": "DOL DE BRETAGNE", + "nomCommune": "DOL DE BRETAGNE" }, { - "codePostal": "12360", - "codeCommune": "12179", - "libelleAcheminement": "PEUX ET COUFFOULEUX", - "nomCommune": "PEUX ET COUFFOULEUX" + "codePostal": "37230", + "codeCommune": "37139", + "libelleAcheminement": "LUYNES", + "nomCommune": "LUYNES" }, { - "codePostal": "29410", - "codeCommune": "29034", - "libelleAcheminement": "LE CLOITRE ST THEGONNEC", - "nomCommune": "LE CLOITRE ST THEGONNEC" + "codePostal": "50190", + "codeCommune": "50482", + "libelleAcheminement": "ST GERMAIN SUR SEVES", + "nomCommune": "ST GERMAIN SUR SEVES" }, { - "codePostal": "40500", - "codeCommune": "40099", - "libelleAcheminement": "FARGUES", - "nomCommune": "FARGUES" + "codePostal": "50180", + "codeCommune": "50239", + "libelleAcheminement": "THEREVAL", + "nomCommune": "THEREVAL" }, { - "codePostal": "63580", - "codeCommune": "63088", - "libelleAcheminement": "LA CHAPELLE SUR USSON", - "nomCommune": "LA CHAPELLE SUR USSON" + "codePostal": "35113", + "codeCommune": "35096", + "libelleAcheminement": "DOMAGNE", + "nomCommune": "DOMAGNE" }, { - "codePostal": "12550", - "codeCommune": "12183", - "libelleAcheminement": "PLAISANCE", - "nomCommune": "PLAISANCE" + "codePostal": "37330", + "codeCommune": "37146", + "libelleAcheminement": "MARCILLY SUR MAULNE", + "nomCommune": "MARCILLY SUR MAULNE" }, { - "codePostal": "29120", - "codeCommune": "29037", - "libelleAcheminement": "COMBRIT", - "nomCommune": "COMBRIT" + "codePostal": "50730", + "codeCommune": "50484", + "libelleAcheminement": "ST HILAIRE DU HARCOUET", + "nomCommune": "ST HILAIRE DU HARCOUET" }, { - "codePostal": "40190", - "codeCommune": "40100", - "libelleAcheminement": "LE FRECHE", - "nomCommune": "LE FRECHE" + "codePostal": "50700", + "codeCommune": "50251", + "libelleAcheminement": "HUBERVILLE", + "nomCommune": "HUBERVILLE" }, { - "codePostal": "63720", - "codeCommune": "63089", - "libelleAcheminement": "CHAPPES", - "nomCommune": "CHAPPES" + "codePostal": "35390", + "codeCommune": "35098", + "libelleAcheminement": "LA DOMINELAIS", + "nomCommune": "LA DOMINELAIS" }, { - "codePostal": "12290", - "codeCommune": "12185", - "libelleAcheminement": "PONT DE SALARS", - "nomCommune": "PONT DE SALARS" + "codePostal": "37370", + "codeCommune": "37149", + "libelleAcheminement": "MARRAY", + "nomCommune": "MARRAY" }, { - "codePostal": "29500", - "codeCommune": "29051", - "libelleAcheminement": "ERGUE GABERIC", - "nomCommune": "ERGUE GABERIC" + "codePostal": "50390", + "codeCommune": "50486", + "libelleAcheminement": "ST JACQUES DE NEHOU", + "nomCommune": "ST JACQUES DE NEHOU" }, { - "codePostal": "40350", - "codeCommune": "40101", - "libelleAcheminement": "GAAS", - "nomCommune": "GAAS" + "codePostal": "50540", + "codeCommune": "50256", + "libelleAcheminement": "ISIGNY LE BUAT", + "nomCommune": "ISIGNY LE BUAT" }, { - "codePostal": "63260", - "codeCommune": "63090", - "libelleAcheminement": "CHAPTUZAT", - "nomCommune": "CHAPTUZAT" + "codePostal": "35420", + "codeCommune": "35111", + "libelleAcheminement": "LE FERRE", + "nomCommune": "LE FERRE" }, { - "codePostal": "12380", - "codeCommune": "12186", - "libelleAcheminement": "POUSTHOMY", - "nomCommune": "POUSTHOMY" + "codePostal": "37390", + "codeCommune": "37152", + "libelleAcheminement": "METTRAY", + "nomCommune": "METTRAY" }, { - "codePostal": "29690", - "codeCommune": "29054", - "libelleAcheminement": "LA FEUILLEE", - "nomCommune": "LA FEUILLEE" + "codePostal": "50240", + "codeCommune": "50487", + "libelleAcheminement": "ST JAMES", + "nomCommune": "ST JAMES" }, { - "codePostal": "40380", - "codeCommune": "40104", - "libelleAcheminement": "GAMARDE LES BAINS", - "nomCommune": "GAMARDE LES BAINS" + "codePostal": "50540", + "codeCommune": "50256", + "libelleAcheminement": "ISIGNY LE BUAT", + "nomCommune": "ISIGNY LE BUAT" }, { - "codePostal": "63410", - "codeCommune": "63092", - "libelleAcheminement": "CHARBONNIERES LES VARENNES", - "nomCommune": "CHARBONNIERES LES VARENNES" + "codePostal": "35300", + "codeCommune": "35115", + "libelleAcheminement": "FOUGERES", + "nomCommune": "FOUGERES" }, { - "codePostal": "12350", - "codeCommune": "12191", - "libelleAcheminement": "PRIVEZAC", - "nomCommune": "PRIVEZAC" + "codePostal": "37380", + "codeCommune": "37153", + "libelleAcheminement": "MONNAIE", + "nomCommune": "MONNAIE" }, { - "codePostal": "29610", - "codeCommune": "29059", - "libelleAcheminement": "GARLAN", - "nomCommune": "GARLAN" + "codePostal": "50240", + "codeCommune": "50487", + "libelleAcheminement": "ST JAMES", + "nomCommune": "ST JAMES" }, { - "codePostal": "40160", - "codeCommune": "40108", - "libelleAcheminement": "GASTES", - "nomCommune": "GASTES" + "codePostal": "50540", + "codeCommune": "50256", + "libelleAcheminement": "ISIGNY LE BUAT", + "nomCommune": "ISIGNY LE BUAT" }, { - "codePostal": "63680", - "codeCommune": "63098", - "libelleAcheminement": "CHASTREIX", - "nomCommune": "CHASTREIX" + "codePostal": "35490", + "codeCommune": "35118", + "libelleAcheminement": "GAHARD", + "nomCommune": "GAHARD" }, { - "codePostal": "12320", - "codeCommune": "12193", - "libelleAcheminement": "PRUINES", - "nomCommune": "PRUINES" + "codePostal": "37380", + "codeCommune": "37166", + "libelleAcheminement": "NEUILLE LE LIERRE", + "nomCommune": "NEUILLE LE LIERRE" }, { - "codePostal": "29710", - "codeCommune": "29065", - "libelleAcheminement": "GOURLIZON", - "nomCommune": "GOURLIZON" + "codePostal": "50240", + "codeCommune": "50487", + "libelleAcheminement": "ST JAMES", + "nomCommune": "ST JAMES" }, { - "codePostal": "40280", - "codeCommune": "40122", - "libelleAcheminement": "HAUT MAUCO", - "nomCommune": "HAUT MAUCO" + "codePostal": "50520", + "codeCommune": "50260", + "libelleAcheminement": "JUVIGNY LES VALLEES", + "nomCommune": "JUVIGNY LES VALLEES" }, { - "codePostal": "63290", - "codeCommune": "63102", - "libelleAcheminement": "CHATELDON", - "nomCommune": "CHATELDON" + "codePostal": "35630", + "codeCommune": "35134", + "libelleAcheminement": "LES IFFS", + "nomCommune": "LES IFFS" }, { - "codePostal": "12800", - "codeCommune": "12194", - "libelleAcheminement": "QUINS", - "nomCommune": "QUINS" + "codePostal": "37160", + "codeCommune": "37168", + "libelleAcheminement": "NEUILLY LE BRIGNON", + "nomCommune": "NEUILLY LE BRIGNON" }, { - "codePostal": "29180", - "codeCommune": "29066", - "libelleAcheminement": "GUENGAT", - "nomCommune": "GUENGAT" + "codePostal": "50680", + "codeCommune": "50491", + "libelleAcheminement": "ST JEAN DE SAVIGNY", + "nomCommune": "ST JEAN DE SAVIGNY" }, { - "codePostal": "40300", - "codeCommune": "40132", - "libelleAcheminement": "LABATUT", - "nomCommune": "LABATUT" + "codePostal": "50520", + "codeCommune": "50260", + "libelleAcheminement": "JUVIGNY LES VALLEES", + "nomCommune": "JUVIGNY LES VALLEES" }, { - "codePostal": "63220", - "codeCommune": "63105", - "libelleAcheminement": "CHAUMONT LE BOURG", - "nomCommune": "CHAUMONT LE BOURG" + "codePostal": "35850", + "codeCommune": "35135", + "libelleAcheminement": "IRODOUER", + "nomCommune": "IRODOUER" }, { - "codePostal": "12240", - "codeCommune": "12198", - "libelleAcheminement": "RIEUPEYROUX", - "nomCommune": "RIEUPEYROUX" + "codePostal": "37220", + "codeCommune": "37178", + "libelleAcheminement": "PANZOULT", + "nomCommune": "PANZOULT" }, { - "codePostal": "29620", - "codeCommune": "29073", - "libelleAcheminement": "GUIMAEC", - "nomCommune": "GUIMAEC" + "codePostal": "50810", + "codeCommune": "50492", + "libelleAcheminement": "ST JEAN D ELLE", + "nomCommune": "ST JEAN D ELLE" }, { - "codePostal": "40320", - "codeCommune": "40136", - "libelleAcheminement": "LACAJUNTE", - "nomCommune": "LACAJUNTE" + "codePostal": "50430", + "codeCommune": "50267", + "libelleAcheminement": "LESSAY", + "nomCommune": "LESSAY" }, { - "codePostal": "63117", - "codeCommune": "63106", - "libelleAcheminement": "CHAURIAT", - "nomCommune": "CHAURIAT" + "codePostal": "35133", + "codeCommune": "35137", + "libelleAcheminement": "JAVENE", + "nomCommune": "JAVENE" }, { - "codePostal": "12640", - "codeCommune": "12200", - "libelleAcheminement": "RIVIERE SUR TARN", - "nomCommune": "RIVIERE SUR TARN" + "codePostal": "37520", + "codeCommune": "37195", + "libelleAcheminement": "LA RICHE", + "nomCommune": "LA RICHE" }, { - "codePostal": "29490", - "codeCommune": "29075", - "libelleAcheminement": "GUIPAVAS", - "nomCommune": "GUIPAVAS" + "codePostal": "50810", + "codeCommune": "50492", + "libelleAcheminement": "ST JEAN D ELLE", + "nomCommune": "ST JEAN D ELLE" }, { - "codePostal": "40250", - "codeCommune": "40141", - "libelleAcheminement": "LAHOSSE", - "nomCommune": "LAHOSSE" + "codePostal": "50250", + "codeCommune": "50273", + "libelleAcheminement": "MONTSENELLE", + "nomCommune": "MONTSENELLE" }, { - "codePostal": "63200", - "codeCommune": "63108", - "libelleAcheminement": "LE CHEIX", - "nomCommune": "LE CHEIX" + "codePostal": "35450", + "codeCommune": "35141", + "libelleAcheminement": "LANDAVRAN", + "nomCommune": "LANDAVRAN" }, { - "codePostal": "12460", - "codeCommune": "12209", - "libelleAcheminement": "ST AMANS DES COTS", - "nomCommune": "ST AMANS DES COTS" + "codePostal": "37370", + "codeCommune": "37207", + "libelleAcheminement": "ST AUBIN LE DEPEINT", + "nomCommune": "ST AUBIN LE DEPEINT" }, { - "codePostal": "29290", - "codeCommune": "29076", - "libelleAcheminement": "MILIZAC GUIPRONVEL", - "nomCommune": "MILIZAC GUIPRONVEL" + "codePostal": "50200", + "codeCommune": "50506", + "libelleAcheminement": "ST MALO DE LA LANDE", + "nomCommune": "ST MALO DE LA LANDE" }, { - "codePostal": "40250", - "codeCommune": "40143", - "libelleAcheminement": "LAMOTHE", - "nomCommune": "LAMOTHE" + "codePostal": "50510", + "codeCommune": "50278", + "libelleAcheminement": "LE LOREUR", + "nomCommune": "LE LOREUR" }, { - "codePostal": "63160", - "codeCommune": "63157", - "libelleAcheminement": "FAYET LE CHATEAU", - "nomCommune": "FAYET LE CHATEAU" + "codePostal": "35133", + "codeCommune": "35142", + "libelleAcheminement": "LANDEAN", + "nomCommune": "LANDEAN" }, { - "codePostal": "12720", - "codeCommune": "12211", - "libelleAcheminement": "ST ANDRE DE VEZINES", - "nomCommune": "ST ANDRE DE VEZINES" + "codePostal": "37500", + "codeCommune": "37210", + "libelleAcheminement": "ST BENOIT LA FORET", + "nomCommune": "ST BENOIT LA FORET" }, { - "codePostal": "29260", - "codeCommune": "29093", - "libelleAcheminement": "KERNILIS", - "nomCommune": "KERNILIS" + "codePostal": "50480", + "codeCommune": "50517", + "libelleAcheminement": "ST MARTIN DE VARREVILLE", + "nomCommune": "ST MARTIN DE VARREVILLE" }, { - "codePostal": "40250", - "codeCommune": "40144", - "libelleAcheminement": "LARBEY", - "nomCommune": "LARBEY" + "codePostal": "50690", + "codeCommune": "50294", + "libelleAcheminement": "MARTINVAST", + "nomCommune": "MARTINVAST" }, { - "codePostal": "63740", - "codeCommune": "63163", - "libelleAcheminement": "GELLES", - "nomCommune": "GELLES" + "codePostal": "35360", + "codeCommune": "35143", + "libelleAcheminement": "LANDUJAN", + "nomCommune": "LANDUJAN" }, { - "codePostal": "12470", - "codeCommune": "12214", - "libelleAcheminement": "ST CHELY D AUBRAC", - "nomCommune": "ST CHELY D AUBRAC" + "codePostal": "37800", + "codeCommune": "37216", + "libelleAcheminement": "ST EPAIN", + "nomCommune": "ST EPAIN" }, { - "codePostal": "29260", - "codeCommune": "29094", - "libelleAcheminement": "KERNOUES", - "nomCommune": "KERNOUES" + "codePostal": "50800", + "codeCommune": "50518", + "libelleAcheminement": "ST MARTIN LE BOUILLANT", + "nomCommune": "ST MARTIN LE BOUILLANT" }, { - "codePostal": "40120", - "codeCommune": "40149", - "libelleAcheminement": "LENCOUACQ", - "nomCommune": "LENCOUACQ" + "codePostal": "50880", + "codeCommune": "50297", + "libelleAcheminement": "LA MEAUFFE", + "nomCommune": "LA MEAUFFE" }, { - "codePostal": "63850", - "codeCommune": "63169", - "libelleAcheminement": "LA GODIVELLE", - "nomCommune": "LA GODIVELLE" + "codePostal": "35111", + "codeCommune": "35153", + "libelleAcheminement": "LILLEMER", + "nomCommune": "LILLEMER" }, { - "codePostal": "12130", - "codeCommune": "12219", - "libelleAcheminement": "STE EULALIE D OLT", - "nomCommune": "STE EULALIE D OLT" + "codePostal": "37110", + "codeCommune": "37229", + "libelleAcheminement": "ST NICOLAS DES MOTETS", + "nomCommune": "ST NICOLAS DES MOTETS" }, { - "codePostal": "29870", - "codeCommune": "29101", - "libelleAcheminement": "LANDEDA", - "nomCommune": "LANDEDA" + "codePostal": "50480", + "codeCommune": "50523", + "libelleAcheminement": "STE MERE EGLISE", + "nomCommune": "STE MERE EGLISE" }, { - "codePostal": "40170", - "codeCommune": "40157", - "libelleAcheminement": "LIT ET MIXE", - "nomCommune": "LIT ET MIXE" + "codePostal": "50510", + "codeCommune": "50304", + "libelleAcheminement": "LE MESNIL AUBERT", + "nomCommune": "LE MESNIL AUBERT" }, { - "codePostal": "63320", - "codeCommune": "63172", - "libelleAcheminement": "GRANDEYROLLES", - "nomCommune": "GRANDEYROLLES" + "codePostal": "35270", + "codeCommune": "35159", + "libelleAcheminement": "LOURMAIS", + "nomCommune": "LOURMAIS" }, { - "codePostal": "12400", - "codeCommune": "12222", - "libelleAcheminement": "ST FELIX DE SORGUES", - "nomCommune": "ST FELIX DE SORGUES" + "codePostal": "37370", + "codeCommune": "37231", + "libelleAcheminement": "ST PATERNE RACAN", + "nomCommune": "ST PATERNE RACAN" }, { - "codePostal": "29800", - "codeCommune": "29103", - "libelleAcheminement": "LANDERNEAU", - "nomCommune": "LANDERNEAU" + "codePostal": "50300", + "codeCommune": "50531", + "libelleAcheminement": "ST OVIN", + "nomCommune": "ST OVIN" }, { - "codePostal": "40250", - "codeCommune": "40160", - "libelleAcheminement": "LOURQUEN", - "nomCommune": "LOURQUEN" + "codePostal": "50600", + "codeCommune": "50315", + "libelleAcheminement": "LE MESNILLARD", + "nomCommune": "LE MESNILLARD" }, { - "codePostal": "63890", - "codeCommune": "63174", - "libelleAcheminement": "GRANDVAL", - "nomCommune": "GRANDVAL" + "codePostal": "35680", + "codeCommune": "35161", + "libelleAcheminement": "LOUVIGNE DE BAIS", + "nomCommune": "LOUVIGNE DE BAIS" }, { - "codePostal": "12420", - "codeCommune": "12223", - "libelleAcheminement": "ARGENCES EN AUBRAC", - "nomCommune": "ARGENCES EN AUBRAC" + "codePostal": "37130", + "codeCommune": "37232", + "libelleAcheminement": "COTEAUX SUR LOIRE", + "nomCommune": "COTEAUX SUR LOIRE" }, { - "codePostal": "29710", - "codeCommune": "29108", - "libelleAcheminement": "LANDUDEC", - "nomCommune": "LANDUDEC" + "codePostal": "50380", + "codeCommune": "50532", + "libelleAcheminement": "ST PAIR SUR MER", + "nomCommune": "ST PAIR SUR MER" }, { - "codePostal": "40210", - "codeCommune": "40163", - "libelleAcheminement": "LUE", - "nomCommune": "LUE" + "codePostal": "50200", + "codeCommune": "50345", + "libelleAcheminement": "MONTHUCHON", + "nomCommune": "MONTHUCHON" }, { - "codePostal": "63290", - "codeCommune": "63184", - "libelleAcheminement": "LACHAUX", - "nomCommune": "LACHAUX" + "codePostal": "35240", + "codeCommune": "35165", + "libelleAcheminement": "MARCILLE ROBERT", + "nomCommune": "MARCILLE ROBERT" }, { - "codePostal": "12140", - "codeCommune": "12226", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "37130", + "codeCommune": "37232", + "libelleAcheminement": "COTEAUX SUR LOIRE", + "nomCommune": "COTEAUX SUR LOIRE" }, { - "codePostal": "29160", - "codeCommune": "29120", - "libelleAcheminement": "LANVEOC", - "nomCommune": "LANVEOC" + "codePostal": "50870", + "codeCommune": "50535", + "libelleAcheminement": "LE PARC", + "nomCommune": "LE PARC" }, { - "codePostal": "40140", - "codeCommune": "40168", - "libelleAcheminement": "MAGESCQ", - "nomCommune": "MAGESCQ" + "codePostal": "50680", + "codeCommune": "50356", + "libelleAcheminement": "MOON SUR ELLE", + "nomCommune": "MOON SUR ELLE" }, { - "codePostal": "63380", - "codeCommune": "63186", - "libelleAcheminement": "LANDOGNE", - "nomCommune": "LANDOGNE" + "codePostal": "35220", + "codeCommune": "35166", + "libelleAcheminement": "MARPIRE", + "nomCommune": "MARPIRE" }, { - "codePostal": "12850", - "codeCommune": "12241", - "libelleAcheminement": "STE RADEGONDE", - "nomCommune": "STE RADEGONDE" + "codePostal": "37360", + "codeCommune": "37245", + "libelleAcheminement": "SEMBLANCAY", + "nomCommune": "SEMBLANCAY" }, { - "codePostal": "29260", - "codeCommune": "29126", - "libelleAcheminement": "LOC BREVALAIRE", - "nomCommune": "LOC BREVALAIRE" + "codePostal": "50870", + "codeCommune": "50535", + "libelleAcheminement": "LE PARC", + "nomCommune": "LE PARC" }, { - "codePostal": "40090", - "codeCommune": "40178", - "libelleAcheminement": "MAZEROLLES", - "nomCommune": "MAZEROLLES" + "codePostal": "50600", + "codeCommune": "50362", + "libelleAcheminement": "MOULINES", + "nomCommune": "MOULINES" }, { - "codePostal": "63760", - "codeCommune": "63191", - "libelleAcheminement": "LASTIC", - "nomCommune": "LASTIC" + "codePostal": "35270", + "codeCommune": "35172", + "libelleAcheminement": "MEILLAC", + "nomCommune": "MEILLAC" }, { - "codePostal": "12490", - "codeCommune": "12243", - "libelleAcheminement": "ST ROME DE CERNON", - "nomCommune": "ST ROME DE CERNON" + "codePostal": "37800", + "codeCommune": "37247", + "libelleAcheminement": "SEPMES", + "nomCommune": "SEPMES" }, { - "codePostal": "29470", - "codeCommune": "29140", - "libelleAcheminement": "LOPERHET", - "nomCommune": "LOPERHET" + "codePostal": "50270", + "codeCommune": "50536", + "libelleAcheminement": "ST PIERRE D ARTHEGLISE", + "nomCommune": "ST PIERRE D ARTHEGLISE" }, { - "codePostal": "40700", - "codeCommune": "40188", - "libelleAcheminement": "MOMUY", - "nomCommune": "MOMUY" + "codePostal": "50420", + "codeCommune": "50363", + "libelleAcheminement": "MOYON VILLAGES", + "nomCommune": "MOYON VILLAGES" }, { - "codePostal": "63190", - "codeCommune": "63195", - "libelleAcheminement": "LEZOUX", - "nomCommune": "LEZOUX" + "codePostal": "35540", + "codeCommune": "35179", + "libelleAcheminement": "MINIAC MORVAN", + "nomCommune": "MINIAC MORVAN" }, { - "codePostal": "12700", - "codeCommune": "12257", - "libelleAcheminement": "CAUSSE ET DIEGE", - "nomCommune": "CAUSSE ET DIEGE" + "codePostal": "37500", + "codeCommune": "37248", + "libelleAcheminement": "SEUILLY", + "nomCommune": "SEUILLY" }, { - "codePostal": "29920", - "codeCommune": "29153", - "libelleAcheminement": "NEVEZ", - "nomCommune": "NEVEZ" + "codePostal": "50200", + "codeCommune": "50537", + "libelleAcheminement": "ST PIERRE DE COUTANCES", + "nomCommune": "ST PIERRE DE COUTANCES" }, { - "codePostal": "40700", - "codeCommune": "40190", - "libelleAcheminement": "MONSEGUR", - "nomCommune": "MONSEGUR" + "codePostal": "50860", + "codeCommune": "50363", + "libelleAcheminement": "MOYON VILLAGES", + "nomCommune": "MOYON VILLAGES" }, { - "codePostal": "63340", - "codeCommune": "63202", - "libelleAcheminement": "MADRIAT", - "nomCommune": "MADRIAT" + "codePostal": "35540", + "codeCommune": "35179", + "libelleAcheminement": "MINIAC MORVAN", + "nomCommune": "MINIAC MORVAN" }, { - "codePostal": "12200", - "codeCommune": "12259", - "libelleAcheminement": "SANVENSA", - "nomCommune": "SANVENSA" + "codePostal": "37330", + "codeCommune": "37251", + "libelleAcheminement": "SOUVIGNE", + "nomCommune": "SOUVIGNE" }, { - "codePostal": "29170", - "codeCommune": "29161", - "libelleAcheminement": "PLEUVEN", - "nomCommune": "PLEUVEN" + "codePostal": "50510", + "codeCommune": "50549", + "libelleAcheminement": "ST SAUVEUR LA POMMERAYE", + "nomCommune": "ST SAUVEUR LA POMMERAYE" }, { - "codePostal": "40380", - "codeCommune": "40194", - "libelleAcheminement": "MONTFORT EN CHALOSSE", - "nomCommune": "MONTFORT EN CHALOSSE" + "codePostal": "50190", + "codeCommune": "50368", + "libelleAcheminement": "NAY", + "nomCommune": "NAY" }, { - "codePostal": "63440", - "codeCommune": "63208", - "libelleAcheminement": "MARCILLAT", - "nomCommune": "MARCILLAT" + "codePostal": "35190", + "codeCommune": "35180", + "libelleAcheminement": "MINIAC SOUS BECHEREL", + "nomCommune": "MINIAC SOUS BECHEREL" }, { - "codePostal": "12260", - "codeCommune": "12261", - "libelleAcheminement": "SAUJAC", - "nomCommune": "SAUJAC" + "codePostal": "37190", + "codeCommune": "37264", + "libelleAcheminement": "VALLERES", + "nomCommune": "VALLERES" }, { - "codePostal": "29410", - "codeCommune": "29163", - "libelleAcheminement": "PLEYBER CHRIST", - "nomCommune": "PLEYBER CHRIST" + "codePostal": "50300", + "codeCommune": "50554", + "libelleAcheminement": "ST SENIER SOUS AVRANCHES", + "nomCommune": "ST SENIER SOUS AVRANCHES" }, { - "codePostal": "40330", - "codeCommune": "40203", - "libelleAcheminement": "NASSIET", - "nomCommune": "NASSIET" + "codePostal": "50200", + "codeCommune": "50376", + "libelleAcheminement": "NICORPS", + "nomCommune": "NICORPS" }, { - "codePostal": "63940", - "codeCommune": "63211", - "libelleAcheminement": "MARSAC EN LIVRADOIS", - "nomCommune": "MARSAC EN LIVRADOIS" + "codePostal": "35870", + "codeCommune": "35181", + "libelleAcheminement": "LE MINIHIC SUR RANCE", + "nomCommune": "LE MINIHIC SUR RANCE" }, { - "codePostal": "12200", - "codeCommune": "12263", - "libelleAcheminement": "SAVIGNAC", - "nomCommune": "SAVIGNAC" + "codePostal": "37270", + "codeCommune": "37267", + "libelleAcheminement": "VERETZ", + "nomCommune": "VERETZ" }, { - "codePostal": "29710", - "codeCommune": "29167", - "libelleAcheminement": "PLOGASTEL ST GERMAIN", - "nomCommune": "PLOGASTEL ST GERMAIN" + "codePostal": "50700", + "codeCommune": "50567", + "libelleAcheminement": "SAUSSEMESNIL", + "nomCommune": "SAUSSEMESNIL" }, { - "codePostal": "40300", - "codeCommune": "40206", - "libelleAcheminement": "OEYREGAVE", - "nomCommune": "OEYREGAVE" + "codePostal": "50600", + "codeCommune": "50391", + "libelleAcheminement": "GRANDPARIGNY", + "nomCommune": "GRANDPARIGNY" }, { - "codePostal": "63430", - "codeCommune": "63213", - "libelleAcheminement": "LES MARTRES D ARTIERE", - "nomCommune": "LES MARTRES D ARTIERE" + "codePostal": "35370", + "codeCommune": "35183", + "libelleAcheminement": "MONDEVERT", + "nomCommune": "MONDEVERT" }, { - "codePostal": "12150", - "codeCommune": "12270", - "libelleAcheminement": "SEVERAC D AVEYRON", - "nomCommune": "SEVERAC D AVEYRON" + "codePostal": "37600", + "codeCommune": "37269", + "libelleAcheminement": "VERNEUIL SUR INDRE", + "nomCommune": "VERNEUIL SUR INDRE" }, { - "codePostal": "29710", - "codeCommune": "29173", - "libelleAcheminement": "PLONEIS", - "nomCommune": "PLONEIS" + "codePostal": "50640", + "codeCommune": "50570", + "libelleAcheminement": "SAVIGNY LE VIEUX", + "nomCommune": "SAVIGNY LE VIEUX" }, { - "codePostal": "40160", - "codeCommune": "40217", - "libelleAcheminement": "PARENTIS EN BORN", - "nomCommune": "PARENTIS EN BORN" + "codePostal": "50410", + "codeCommune": "50393", + "libelleAcheminement": "PERCY EN NORMANDIE", + "nomCommune": "PERCY EN NORMANDIE" }, { - "codePostal": "63730", - "codeCommune": "63214", - "libelleAcheminement": "LES MARTRES DE VEYRE", - "nomCommune": "LES MARTRES DE VEYRE" + "codePostal": "35460", + "codeCommune": "35191", + "libelleAcheminement": "LES PORTES DU COGLAIS", + "nomCommune": "LES PORTES DU COGLAIS" }, - { - "codePostal": "12440", - "codeCommune": "12278", - "libelleAcheminement": "TAYRAC", - "nomCommune": "TAYRAC" + { + "codePostal": "37510", + "codeCommune": "37272", + "libelleAcheminement": "VILLANDRY", + "nomCommune": "VILLANDRY" }, { - "codePostal": "29530", - "codeCommune": "29175", - "libelleAcheminement": "PLONEVEZ DU FAOU", - "nomCommune": "PLONEVEZ DU FAOU" + "codePostal": "50480", + "codeCommune": "50571", + "libelleAcheminement": "SEBEVILLE", + "nomCommune": "SEBEVILLE" }, { - "codePostal": "40190", - "codeCommune": "40221", - "libelleAcheminement": "PERQUIE", - "nomCommune": "PERQUIE" + "codePostal": "50150", + "codeCommune": "50397", + "libelleAcheminement": "PERRIERS EN BEAUFICEL", + "nomCommune": "PERRIERS EN BEAUFICEL" }, { - "codePostal": "63220", - "codeCommune": "63221", - "libelleAcheminement": "MEDEYROLLES", - "nomCommune": "MEDEYROLLES" + "codePostal": "35460", + "codeCommune": "35191", + "libelleAcheminement": "LES PORTES DU COGLAIS", + "nomCommune": "LES PORTES DU COGLAIS" }, { - "codePostal": "12400", - "codeCommune": "12286", - "libelleAcheminement": "VABRES L ABBAYE", - "nomCommune": "VABRES L ABBAYE" + "codePostal": "37110", + "codeCommune": "37276", + "libelleAcheminement": "VILLEDOMER", + "nomCommune": "VILLEDOMER" }, { - "codePostal": "29260", - "codeCommune": "29179", - "libelleAcheminement": "PLOUDANIEL", - "nomCommune": "PLOUDANIEL" + "codePostal": "50640", + "codeCommune": "50591", + "libelleAcheminement": "LE TEILLEUL", + "nomCommune": "LE TEILLEUL" }, { - "codePostal": "40300", - "codeCommune": "40222", - "libelleAcheminement": "PEY", - "nomCommune": "PEY" + "codePostal": "50360", + "codeCommune": "50400", + "libelleAcheminement": "PICAUVILLE", + "nomCommune": "PICAUVILLE" }, { - "codePostal": "63115", - "codeCommune": "63226", - "libelleAcheminement": "MUR SUR ALLIER", - "nomCommune": "MUR SUR ALLIER" + "codePostal": "35500", + "codeCommune": "35194", + "libelleAcheminement": "MONTREUIL SOUS PEROUSE", + "nomCommune": "MONTREUIL SOUS PEROUSE" }, { - "codePostal": "12490", - "codeCommune": "12296", - "libelleAcheminement": "VIALA DU TARN", - "nomCommune": "VIALA DU TARN" + "codePostal": "37260", + "codeCommune": "37278", + "libelleAcheminement": "VILLEPERDUE", + "nomCommune": "VILLEPERDUE" }, { - "codePostal": "29252", - "codeCommune": "29186", - "libelleAcheminement": "PLOUEZOC H", - "nomCommune": "PLOUEZOC H" + "codePostal": "50640", + "codeCommune": "50591", + "libelleAcheminement": "LE TEILLEUL", + "nomCommune": "LE TEILLEUL" }, { - "codePostal": "40700", - "codeCommune": "40223", - "libelleAcheminement": "PEYRE", - "nomCommune": "PEYRE" + "codePostal": "50220", + "codeCommune": "50407", + "libelleAcheminement": "POILLEY", + "nomCommune": "POILLEY" }, { - "codePostal": "63700", - "codeCommune": "63233", - "libelleAcheminement": "MONTAIGUT EN COMBRAILLE", - "nomCommune": "MONTAIGUT" + "codePostal": "35250", + "codeCommune": "35197", + "libelleAcheminement": "MOUAZE", + "nomCommune": "MOUAZE" }, { - "codePostal": "12310", - "codeCommune": "12303", - "libelleAcheminement": "VIMENET", - "nomCommune": "VIMENET" + "codePostal": "37330", + "codeCommune": "37279", + "libelleAcheminement": "VILLIERS AU BOUIN", + "nomCommune": "VILLIERS AU BOUIN" }, { - "codePostal": "29630", - "codeCommune": "29188", - "libelleAcheminement": "PLOUGASNOU", - "nomCommune": "PLOUGASNOU" + "codePostal": "50470", + "codeCommune": "50599", + "libelleAcheminement": "TOLLEVAST", + "nomCommune": "TOLLEVAST" }, { - "codePostal": "40300", - "codeCommune": "40224", - "libelleAcheminement": "PEYREHORADE", - "nomCommune": "PEYREHORADE" + "codePostal": "50880", + "codeCommune": "50409", + "libelleAcheminement": "PONT HEBERT", + "nomCommune": "PONT HEBERT" }, { - "codePostal": "63230", - "codeCommune": "63238", - "libelleAcheminement": "MONTFERMY", - "nomCommune": "MONTFERMY" + "codePostal": "35130", + "codeCommune": "35199", + "libelleAcheminement": "MOUSSE", + "nomCommune": "MOUSSE" }, { - "codePostal": "13100", - "codeCommune": "13001", - "libelleAcheminement": "AIX EN PROVENCE", - "nomCommune": "AIX EN PROVENCE" + "codePostal": "38150", + "codeCommune": "38009", + "libelleAcheminement": "ANJOU", + "nomCommune": "ANJOU" }, { - "codePostal": "29880", - "codeCommune": "29195", - "libelleAcheminement": "PLOUGUERNEAU", - "nomCommune": "PLOUGUERNEAU" + "codePostal": "50340", + "codeCommune": "50604", + "libelleAcheminement": "TREAUVILLE", + "nomCommune": "TREAUVILLE" }, { - "codePostal": "40200", - "codeCommune": "40229", - "libelleAcheminement": "PONTENX LES FORGES", - "nomCommune": "PONTENX LES FORGES" + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { - "codePostal": "63260", - "codeCommune": "63240", - "libelleAcheminement": "MONTPENSIER", - "nomCommune": "MONTPENSIER" + "codePostal": "35380", + "codeCommune": "35211", + "libelleAcheminement": "PAIMPONT", + "nomCommune": "PAIMPONT" }, { - "codePostal": "13190", - "codeCommune": "13002", - "libelleAcheminement": "ALLAUCH", - "nomCommune": "ALLAUCH" + "codePostal": "38140", + "codeCommune": "38013", + "libelleAcheminement": "APPRIEU", + "nomCommune": "APPRIEU" }, { - "codePostal": "29780", - "codeCommune": "29197", - "libelleAcheminement": "PLOUHINEC", - "nomCommune": "PLOUHINEC" + "codePostal": "50620", + "codeCommune": "50606", + "libelleAcheminement": "TRIBEHOU", + "nomCommune": "TRIBEHOU" }, { - "codePostal": "40120", - "codeCommune": "40234", - "libelleAcheminement": "POUYDESSEAUX", - "nomCommune": "POUYDESSEAUX" + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { - "codePostal": "63200", - "codeCommune": "63244", - "libelleAcheminement": "CHAMBARON SUR MORGE", - "nomCommune": "CHAMBARON SUR MORGE" + "codePostal": "35320", + "codeCommune": "35231", + "libelleAcheminement": "POLIGNE", + "nomCommune": "POLIGNE" }, { - "codePostal": "13980", - "codeCommune": "13003", - "libelleAcheminement": "ALLEINS", - "nomCommune": "ALLEINS" + "codePostal": "38270", + "codeCommune": "38034", + "libelleAcheminement": "BEAUREPAIRE", + "nomCommune": "BEAUREPAIRE" }, { - "codePostal": "29830", - "codeCommune": "29208", - "libelleAcheminement": "PLOURIN", - "nomCommune": "PLOURIN" + "codePostal": "50300", + "codeCommune": "50612", + "libelleAcheminement": "VAINS", + "nomCommune": "VAINS" }, { - "codePostal": "40380", - "codeCommune": "40236", - "libelleAcheminement": "POYARTIN", - "nomCommune": "POYARTIN" + "codePostal": "50630", + "codeCommune": "50417", + "libelleAcheminement": "QUETTEHOU", + "nomCommune": "QUETTEHOU" }, { - "codePostal": "63150", - "codeCommune": "63246", - "libelleAcheminement": "MURAT LE QUAIRE", - "nomCommune": "MURAT LE QUAIRE" + "codePostal": "35000", + "codeCommune": "35238", + "libelleAcheminement": "RENNES", + "nomCommune": "RENNES" }, { - "codePostal": "13400", - "codeCommune": "13005", - "libelleAcheminement": "AUBAGNE", - "nomCommune": "AUBAGNE" + "codePostal": "38260", + "codeCommune": "38049", + "libelleAcheminement": "BOSSIEU", + "nomCommune": "BOSSIEU" }, { - "codePostal": "29280", - "codeCommune": "29212", - "libelleAcheminement": "PLOUZANE", - "nomCommune": "PLOUZANE" + "codePostal": "50330", + "codeCommune": "50618", + "libelleAcheminement": "VAROUVILLE", + "nomCommune": "VAROUVILLE" }, { - "codePostal": "40190", - "codeCommune": "40238", - "libelleAcheminement": "PUJO LE PLAN", - "nomCommune": "PUJO LE PLAN" + "codePostal": "50660", + "codeCommune": "50419", + "libelleAcheminement": "QUETTREVILLE SUR SIENNE", + "nomCommune": "QUETTREVILLE SUR SIENNE" }, { - "codePostal": "63210", - "codeCommune": "63248", - "libelleAcheminement": "NEBOUZAT", - "nomCommune": "NEBOUZAT" + "codePostal": "35200", + "codeCommune": "35238", + "libelleAcheminement": "RENNES", + "nomCommune": "RENNES" }, { - "codePostal": "13121", - "codeCommune": "13008", - "libelleAcheminement": "AURONS", - "nomCommune": "AURONS" + "codePostal": "38520", + "codeCommune": "38052", + "libelleAcheminement": "LE BOURG D OISANS", + "nomCommune": "LE BOURG D OISANS" }, { - "codePostal": "29440", - "codeCommune": "29213", - "libelleAcheminement": "PLOUZEVEDE", - "nomCommune": "PLOUZEVEDE" + "codePostal": "50800", + "codeCommune": "50639", + "libelleAcheminement": "VILLEDIEU LES POELES ROUFFIGNY", + "nomCommune": "VILLEDIEU LES POELES ROUFFIGNY" }, { - "codePostal": "40320", - "codeCommune": "40239", - "libelleAcheminement": "PUYOL CAZALET", - "nomCommune": "PUYOL CAZALET" + "codePostal": "50260", + "codeCommune": "50425", + "libelleAcheminement": "RAUVILLE LA BIGOT", + "nomCommune": "RAUVILLE LA BIGOT" }, { - "codePostal": "63290", - "codeCommune": "63253", - "libelleAcheminement": "NOALHAT", - "nomCommune": "NOALHAT" + "codePostal": "35560", + "codeCommune": "35242", + "libelleAcheminement": "RIMOU", + "nomCommune": "RIMOU" }, { - "codePostal": "13520", - "codeCommune": "13011", - "libelleAcheminement": "LES BAUX DE PROVENCE", - "nomCommune": "LES BAUX DE PROVENCE" + "codePostal": "38300", + "codeCommune": "38053", + "libelleAcheminement": "BOURGOIN JALLIEU", + "nomCommune": "BOURGOIN JALLIEU" }, { - "codePostal": "29700", - "codeCommune": "29216", - "libelleAcheminement": "PLUGUFFAN", - "nomCommune": "PLUGUFFAN" + "codePostal": "50690", + "codeCommune": "50643", + "libelleAcheminement": "VIRANDEVILLE", + "nomCommune": "VIRANDEVILLE" }, { - "codePostal": "40370", - "codeCommune": "40243", - "libelleAcheminement": "RION DES LANDES", - "nomCommune": "RION DES LANDES" + "codePostal": "50570", + "codeCommune": "50431", + "libelleAcheminement": "REMILLY LES MARAIS", + "nomCommune": "REMILLY LES MARAIS" }, { - "codePostal": "63220", - "codeCommune": "63256", - "libelleAcheminement": "NOVACELLES", - "nomCommune": "NOVACELLES" + "codePostal": "35490", + "codeCommune": "35244", + "libelleAcheminement": "ROMAZY", + "nomCommune": "ROMAZY" }, { - "codePostal": "13320", - "codeCommune": "13015", - "libelleAcheminement": "BOUC BEL AIR", - "nomCommune": "BOUC BEL AIR" + "codePostal": "38320", + "codeCommune": "38059", + "libelleAcheminement": "BRIE ET ANGONNES", + "nomCommune": "BRIE ET ANGONNES" }, { - "codePostal": "29840", - "codeCommune": "29221", - "libelleAcheminement": "PORSPODER", - "nomCommune": "PORSPODER" + "codePostal": "51530", + "codeCommune": "51002", + "libelleAcheminement": "ST MARTIN D ABLOIS", + "nomCommune": "ST MARTIN D ABLOIS" }, { - "codePostal": "40120", - "codeCommune": "40245", - "libelleAcheminement": "ROQUEFORT", - "nomCommune": "ROQUEFORT" + "codePostal": "50570", + "codeCommune": "50431", + "libelleAcheminement": "REMILLY LES MARAIS", + "nomCommune": "REMILLY LES MARAIS" }, { - "codePostal": "63880", - "codeCommune": "63258", - "libelleAcheminement": "OLLIERGUES", - "nomCommune": "OLLIERGUES" + "codePostal": "35120", + "codeCommune": "35246", + "libelleAcheminement": "ROZ LANDRIEUX", + "nomCommune": "ROZ LANDRIEUX" }, { - "codePostal": "13620", - "codeCommune": "13021", - "libelleAcheminement": "CARRY LE ROUET", - "nomCommune": "CARRY LE ROUET" + "codePostal": "38590", + "codeCommune": "38060", + "libelleAcheminement": "BRION", + "nomCommune": "BRION" }, { - "codePostal": "29100", - "codeCommune": "29224", - "libelleAcheminement": "POULDERGAT", - "nomCommune": "POULDERGAT" + "codePostal": "51170", + "codeCommune": "51013", + "libelleAcheminement": "AOUGNY", + "nomCommune": "AOUGNY" }, { - "codePostal": "40190", - "codeCommune": "40258", - "libelleAcheminement": "STE FOY", - "nomCommune": "STE FOY" + "codePostal": "50620", + "codeCommune": "50431", + "libelleAcheminement": "REMILLY LES MARAIS", + "nomCommune": "REMILLY LES MARAIS" }, { - "codePostal": "63500", - "codeCommune": "63261", - "libelleAcheminement": "ORBEIL", - "nomCommune": "ORBEIL" + "codePostal": "35610", + "codeCommune": "35248", + "libelleAcheminement": "SAINS", + "nomCommune": "SAINS" }, { - "codePostal": "13160", - "codeCommune": "13027", - "libelleAcheminement": "CHATEAURENARD", - "nomCommune": "CHATEAURENARD" + "codePostal": "38690", + "codeCommune": "38063", + "libelleAcheminement": "BURCIN", + "nomCommune": "BURCIN" }, { - "codePostal": "29710", - "codeCommune": "29225", - "libelleAcheminement": "POULDREUZIC", - "nomCommune": "POULDREUZIC" + "codePostal": "51170", + "codeCommune": "51014", + "libelleAcheminement": "ARCIS LE PONSART", + "nomCommune": "ARCIS LE PONSART" }, { - "codePostal": "40320", - "codeCommune": "40270", - "libelleAcheminement": "ST LOUBOUER", - "nomCommune": "ST LOUBOUER" + "codePostal": "50340", + "codeCommune": "50442", + "libelleAcheminement": "LE ROZEL", + "nomCommune": "LE ROZEL" }, { - "codePostal": "63500", - "codeCommune": "63268", - "libelleAcheminement": "PARDINES", - "nomCommune": "PARDINES" + "codePostal": "35120", + "codeCommune": "35259", + "libelleAcheminement": "ST BROLADRE", + "nomCommune": "ST BROLADRE" }, { - "codePostal": "13850", - "codeCommune": "13046", - "libelleAcheminement": "GREASQUE", - "nomCommune": "GREASQUE" + "codePostal": "38190", + "codeCommune": "38070", + "libelleAcheminement": "LE CHAMP PRES FROGES", + "nomCommune": "LE CHAMP PRES FROGES" }, { - "codePostal": "29180", - "codeCommune": "29229", - "libelleAcheminement": "QUEMENEVEN", - "nomCommune": "QUEMENEVEN" + "codePostal": "51290", + "codeCommune": "51017", + "libelleAcheminement": "ARZILLIERES NEUVILLE", + "nomCommune": "ARZILLIERES NEUVILLE" }, { - "codePostal": "40390", - "codeCommune": "40271", - "libelleAcheminement": "STE MARIE DE GOSSE", - "nomCommune": "STE MARIE DE GOSSE" + "codePostal": "50160", + "codeCommune": "50444", + "libelleAcheminement": "ST AMAND VILLAGES", + "nomCommune": "ST AMAND VILLAGES" }, { - "codePostal": "63800", - "codeCommune": "63273", - "libelleAcheminement": "PERIGNAT SUR ALLIER", - "nomCommune": "PERIGNAT SUR ALLIER" + "codePostal": "35140", + "codeCommune": "35261", + "libelleAcheminement": "ST CHRISTOPHE DE VALAINS", + "nomCommune": "ST CHRISTOPHE DE VALAINS" }, { - "codePostal": "13118", - "codeCommune": "13047", - "libelleAcheminement": "ISTRES", - "nomCommune": "ISTRES" + "codePostal": "38740", + "codeCommune": "38073", + "libelleAcheminement": "CHANTEPERIER", + "nomCommune": "CHANTEPERIER" }, { - "codePostal": "29340", - "codeCommune": "29236", - "libelleAcheminement": "RIEC SUR BELON", - "nomCommune": "RIEC SUR BELON" + "codePostal": "51160", + "codeCommune": "51028", + "libelleAcheminement": "AVENAY VAL D OR", + "nomCommune": "AVENAY VAL D OR" }, { - "codePostal": "40550", - "codeCommune": "40276", - "libelleAcheminement": "ST MICHEL ESCALUS", - "nomCommune": "ST MICHEL ESCALUS" + "codePostal": "50450", + "codeCommune": "50463", + "libelleAcheminement": "ST DENIS LE GAST", + "nomCommune": "ST DENIS LE GAST" }, { - "codePostal": "63200", - "codeCommune": "63278", - "libelleAcheminement": "PESSAT VILLENEUVE", - "nomCommune": "PESSAT VILLENEUVE" + "codePostal": "35230", + "codeCommune": "35266", + "libelleAcheminement": "ST ERBLON", + "nomCommune": "ST ERBLON" }, { - "codePostal": "13800", - "codeCommune": "13047", - "libelleAcheminement": "ISTRES", - "nomCommune": "ISTRES" + "codePostal": "38670", + "codeCommune": "38087", + "libelleAcheminement": "CHASSE SUR RHONE", + "nomCommune": "CHASSE SUR RHONE" }, { - "codePostal": "29800", - "codeCommune": "29245", - "libelleAcheminement": "ST DIVY", - "nomCommune": "ST DIVY" + "codePostal": "51190", + "codeCommune": "51029", + "libelleAcheminement": "AVIZE", + "nomCommune": "AVIZE" }, { - "codePostal": "40090", - "codeCommune": "40280", - "libelleAcheminement": "ST PERDON", - "nomCommune": "ST PERDON" + "codePostal": "50210", + "codeCommune": "50464", + "libelleAcheminement": "ST DENIS LE VETU", + "nomCommune": "ST DENIS LE VETU" }, { - "codePostal": "63730", - "codeCommune": "63282", - "libelleAcheminement": "PLAUZAT", - "nomCommune": "PLAUZAT" + "codePostal": "35420", + "codeCommune": "35271", + "libelleAcheminement": "ST GEORGES DE REINTEMBAULT", + "nomCommune": "ST GEORGES DE REINTEMBAULT" }, { - "codePostal": "13500", - "codeCommune": "13056", - "libelleAcheminement": "MARTIGUES", - "nomCommune": "MARTIGUES" + "codePostal": "38980", + "codeCommune": "38093", + "libelleAcheminement": "CHATENAY", + "nomCommune": "CHATENAY" }, { - "codePostal": "29520", - "codeCommune": "29249", - "libelleAcheminement": "ST GOAZEC", - "nomCommune": "ST GOAZEC" + "codePostal": "51160", + "codeCommune": "51030", + "libelleAcheminement": "AY CHAMPAGNE", + "nomCommune": "AY CHAMPAGNE" }, { - "codePostal": "40230", - "codeCommune": "40284", - "libelleAcheminement": "ST VINCENT DE TYROSSE", - "nomCommune": "ST VINCENT DE TYROSSE" + "codePostal": "50620", + "codeCommune": "50468", + "libelleAcheminement": "ST FROMOND", + "nomCommune": "ST FROMOND" }, { - "codePostal": "63430", - "codeCommune": "63284", - "libelleAcheminement": "PONT DU CHATEAU", - "nomCommune": "PONT DU CHATEAU" + "codePostal": "35430", + "codeCommune": "35284", + "libelleAcheminement": "ST JOUAN DES GUERETS", + "nomCommune": "ST JOUAN DES GUERETS" }, { - "codePostal": "13650", - "codeCommune": "13059", - "libelleAcheminement": "MEYRARGUES", - "nomCommune": "MEYRARGUES" + "codePostal": "38160", + "codeCommune": "38099", + "libelleAcheminement": "CHEVRIERES", + "nomCommune": "CHEVRIERES" }, { - "codePostal": "29630", - "codeCommune": "29251", - "libelleAcheminement": "ST JEAN DU DOIGT", - "nomCommune": "ST JEAN DU DOIGT" + "codePostal": "51400", + "codeCommune": "51031", + "libelleAcheminement": "BACONNES", + "nomCommune": "BACONNES" }, { - "codePostal": "40400", - "codeCommune": "40285", - "libelleAcheminement": "ST YAGUEN", - "nomCommune": "ST YAGUEN" + "codePostal": "50760", + "codeCommune": "50469", + "libelleAcheminement": "STE GENEVIEVE", + "nomCommune": "STE GENEVIEVE" }, { - "codePostal": "63440", - "codeCommune": "63286", - "libelleAcheminement": "POUZOL", - "nomCommune": "POUZOL" + "codePostal": "35400", + "codeCommune": "35288", + "libelleAcheminement": "ST MALO", + "nomCommune": "ST MALO" }, { - "codePostal": "13150", - "codeCommune": "13061", - "libelleAcheminement": "ST PIERRE DE MEZOARGUES", - "nomCommune": "ST PIERRE DE MEZOARGUES" + "codePostal": "38640", + "codeCommune": "38111", + "libelleAcheminement": "CLAIX", + "nomCommune": "CLAIX" }, { - "codePostal": "29600", - "codeCommune": "29254", - "libelleAcheminement": "ST MARTIN DES CHAMPS", - "nomCommune": "ST MARTIN DES CHAMPS" + "codePostal": "51270", + "codeCommune": "51033", + "libelleAcheminement": "LE BAIZIL", + "nomCommune": "LE BAIZIL" }, { - "codePostal": "40230", - "codeCommune": "40292", - "libelleAcheminement": "SAUBRIGUES", - "nomCommune": "SAUBRIGUES" + "codePostal": "50270", + "codeCommune": "50471", + "libelleAcheminement": "ST GEORGES DE LA RIVIERE", + "nomCommune": "ST GEORGES DE LA RIVIERE" }, { - "codePostal": "63230", - "codeCommune": "63290", - "libelleAcheminement": "PULVERIERES", - "nomCommune": "PULVERIERES" + "codePostal": "35460", + "codeCommune": "35292", + "libelleAcheminement": "ST MARC LE BLANC", + "nomCommune": "ST MARC LE BLANC" }, { - "codePostal": "13890", - "codeCommune": "13065", - "libelleAcheminement": "MOURIES", - "nomCommune": "MOURIES" + "codePostal": "38470", + "codeCommune": "38117", + "libelleAcheminement": "COGNIN LES GORGES", + "nomCommune": "COGNIN LES GORGES" }, { - "codePostal": "29290", - "codeCommune": "29260", - "libelleAcheminement": "ST RENAN", - "nomCommune": "ST RENAN" + "codePostal": "51270", + "codeCommune": "51045", + "libelleAcheminement": "BEAUNAY", + "nomCommune": "BEAUNAY" }, { - "codePostal": "40410", - "codeCommune": "40295", - "libelleAcheminement": "SAUGNACQ ET MURET", - "nomCommune": "SAUGNACQ ET MURET" + "codePostal": "50600", + "codeCommune": "50484", + "libelleAcheminement": "ST HILAIRE DU HARCOUET", + "nomCommune": "ST HILAIRE DU HARCOUET" }, { - "codePostal": "63160", - "codeCommune": "63297", - "libelleAcheminement": "REIGNAT", - "nomCommune": "REIGNAT" + "codePostal": "35750", + "codeCommune": "35295", + "libelleAcheminement": "ST MAUGAN", + "nomCommune": "ST MAUGAN" }, { - "codePostal": "13520", - "codeCommune": "13068", - "libelleAcheminement": "PARADOU", - "nomCommune": "PARADOU" + "codePostal": "38190", + "codeCommune": "38120", + "libelleAcheminement": "LA COMBE DE LANCEY", + "nomCommune": "LA COMBE DE LANCEY" }, { - "codePostal": "29520", - "codeCommune": "29267", - "libelleAcheminement": "ST THOIS", - "nomCommune": "ST THOIS" + "codePostal": "51220", + "codeCommune": "51051", + "libelleAcheminement": "BERMERICOURT", + "nomCommune": "BERMERICOURT" }, { - "codePostal": "40210", - "codeCommune": "40303", - "libelleAcheminement": "SOLFERINO", - "nomCommune": "SOLFERINO" + "codePostal": "50240", + "codeCommune": "50487", + "libelleAcheminement": "ST JAMES", + "nomCommune": "ST JAMES" }, { - "codePostal": "63330", - "codeCommune": "63304", - "libelleAcheminement": "ROCHE D AGOUX", - "nomCommune": "ROCHE D AGOUX" + "codePostal": "35350", + "codeCommune": "35299", + "libelleAcheminement": "ST MELOIR DES ONDES", + "nomCommune": "ST MELOIR DES ONDES" }, { - "codePostal": "13821", - "codeCommune": "13070", - "libelleAcheminement": "LA PENNE SUR HUVEAUNE", - "nomCommune": "LA PENNE SUR HUVEAUNE" + "codePostal": "38630", + "codeCommune": "38124", + "libelleAcheminement": "CORBELIN", + "nomCommune": "CORBELIN" }, { - "codePostal": "29800", - "codeCommune": "29270", - "libelleAcheminement": "ST URBAIN", - "nomCommune": "ST URBAIN" + "codePostal": "51450", + "codeCommune": "51055", + "libelleAcheminement": "BETHENY", + "nomCommune": "BETHENY" }, { - "codePostal": "40180", - "codeCommune": "40308", - "libelleAcheminement": "SORT EN CHALOSSE", - "nomCommune": "SORT EN CHALOSSE" + "codePostal": "50320", + "codeCommune": "50493", + "libelleAcheminement": "ST JEAN DES CHAMPS", + "nomCommune": "ST JEAN DES CHAMPS" }, { - "codePostal": "63420", - "codeCommune": "63313", - "libelleAcheminement": "ST ALYRE ES MONTAGNE", - "nomCommune": "ST ALYRE ES MONTAGNE" + "codePostal": "35290", + "codeCommune": "35302", + "libelleAcheminement": "ST ONEN LA CHAPELLE", + "nomCommune": "ST ONEN LA CHAPELLE" }, { - "codePostal": "13170", - "codeCommune": "13071", - "libelleAcheminement": "LES PENNES MIRABEAU", - "nomCommune": "LES PENNES MIRABEAU" + "codePostal": "38970", + "codeCommune": "38128", + "libelleAcheminement": "CORPS", + "nomCommune": "CORPS" }, { - "codePostal": "29390", - "codeCommune": "29274", - "libelleAcheminement": "SCAER", - "nomCommune": "SCAER" + "codePostal": "51260", + "codeCommune": "51056", + "libelleAcheminement": "BETHON", + "nomCommune": "BETHON" }, { - "codePostal": "40170", - "codeCommune": "40322", - "libelleAcheminement": "UZA", - "nomCommune": "UZA" + "codePostal": "50750", + "codeCommune": "50512", + "libelleAcheminement": "ST MARTIN DE BONFOSSE", + "nomCommune": "ST MARTIN DE BONFOSSE" }, { - "codePostal": "63450", - "codeCommune": "63315", - "libelleAcheminement": "ST AMANT TALLENDE", - "nomCommune": "ST AMANT TALLENDE" + "codePostal": "35330", + "codeCommune": "35311", + "libelleAcheminement": "ST SEGLIN", + "nomCommune": "ST SEGLIN" }, { - "codePostal": "13790", - "codeCommune": "13072", - "libelleAcheminement": "PEYNIER", - "nomCommune": "PEYNIER" + "codePostal": "38510", + "codeCommune": "38139", + "libelleAcheminement": "CREYS MEPIEU", + "nomCommune": "CREYS MEPIEU" }, { - "codePostal": "29250", - "codeCommune": "29276", - "libelleAcheminement": "SIBIRIL", - "nomCommune": "SIBIRIL" + "codePostal": "51330", + "codeCommune": "51057", + "libelleAcheminement": "BETTANCOURT LA LONGUE", + "nomCommune": "BETTANCOURT LA LONGUE" }, { - "codePostal": "40420", - "codeCommune": "40323", - "libelleAcheminement": "VERT", - "nomCommune": "VERT" + "codePostal": "50150", + "codeCommune": "50514", + "libelleAcheminement": "CHAULIEU", + "nomCommune": "CHAULIEU" }, { - "codePostal": "63310", - "codeCommune": "63317", - "libelleAcheminement": "ST ANDRE LE COQ", - "nomCommune": "ST ANDRE LE COQ" + "codePostal": "35430", + "codeCommune": "35314", + "libelleAcheminement": "ST SULIAC", + "nomCommune": "ST SULIAC" }, { - "codePostal": "13380", - "codeCommune": "13075", - "libelleAcheminement": "PLAN DE CUQUES", - "nomCommune": "PLAN DE CUQUES" + "codePostal": "38510", + "codeCommune": "38139", + "libelleAcheminement": "CREYS MEPIEU", + "nomCommune": "CREYS MEPIEU" }, { - "codePostal": "29217", - "codeCommune": "29282", - "libelleAcheminement": "TREBABU", - "nomCommune": "TREBABU" + "codePostal": "51400", + "codeCommune": "51061", + "libelleAcheminement": "BILLY LE GRAND", + "nomCommune": "BILLY LE GRAND" }, { - "codePostal": "41240", - "codeCommune": "41006", - "libelleAcheminement": "AUTAINVILLE", - "nomCommune": "AUTAINVILLE" + "codePostal": "50150", + "codeCommune": "50514", + "libelleAcheminement": "CHAULIEU", + "nomCommune": "CHAULIEU" }, { - "codePostal": "63380", - "codeCommune": "63320", - "libelleAcheminement": "ST AVIT", - "nomCommune": "ST AVIT" + "codePostal": "35310", + "codeCommune": "35319", + "libelleAcheminement": "ST THURIAL", + "nomCommune": "ST THURIAL" }, { - "codePostal": "13110", - "codeCommune": "13077", - "libelleAcheminement": "PORT DE BOUC", - "nomCommune": "PORT DE BOUC" + "codePostal": "38300", + "codeCommune": "38149", + "libelleAcheminement": "DOMARIN", + "nomCommune": "DOMARIN" }, { - "codePostal": "29800", - "codeCommune": "29286", - "libelleAcheminement": "TREFLEVENEZ", - "nomCommune": "TREFLEVENEZ" + "codePostal": "51700", + "codeCommune": "51063", + "libelleAcheminement": "BINSON ET ORQUIGNY", + "nomCommune": "BINSON ET ORQUIGNY" }, { - "codePostal": "41170", - "codeCommune": "41012", - "libelleAcheminement": "BAILLOU", - "nomCommune": "BAILLOU" + "codePostal": "50690", + "codeCommune": "50519", + "libelleAcheminement": "ST MARTIN LE GREARD", + "nomCommune": "ST MARTIN LE GREARD" }, { - "codePostal": "63800", - "codeCommune": "63325", - "libelleAcheminement": "ST BONNET LES ALLIER", - "nomCommune": "ST BONNET LES ALLIER" + "codePostal": "35610", + "codeCommune": "35329", + "libelleAcheminement": "SOUGEAL", + "nomCommune": "SOUGEAL" }, { - "codePostal": "13114", - "codeCommune": "13079", - "libelleAcheminement": "PUYLOUBIER", - "nomCommune": "PUYLOUBIER" + "codePostal": "38420", + "codeCommune": "38150", + "libelleAcheminement": "DOMENE", + "nomCommune": "DOMENE" }, { - "codePostal": "29560", - "codeCommune": "29289", - "libelleAcheminement": "TREGARVAN", - "nomCommune": "TREGARVAN" + "codePostal": "51300", + "codeCommune": "51066", + "libelleAcheminement": "BLAISE SOUS ARZILLIERES", + "nomCommune": "BLAISE SOUS ARZILLIERES" }, { - "codePostal": "41270", - "codeCommune": "41022", - "libelleAcheminement": "BOUFFRY", - "nomCommune": "BOUFFRY" + "codePostal": "50270", + "codeCommune": "50522", + "libelleAcheminement": "ST MAURICE EN COTENTIN", + "nomCommune": "ST MAURICE EN COTENTIN" }, { - "codePostal": "63210", - "codeCommune": "63326", - "libelleAcheminement": "ST BONNET PRES ORCIVAL", - "nomCommune": "ST BONNET PRES ORCIVAL" + "codePostal": "35160", + "codeCommune": "35331", + "libelleAcheminement": "TALENSAC", + "nomCommune": "TALENSAC" }, { - "codePostal": "13114", - "codeCommune": "13079", - "libelleAcheminement": "PUYLOUBIER", - "nomCommune": "PUYLOUBIER" + "codePostal": "38300", + "codeCommune": "38156", + "libelleAcheminement": "LES EPARRES", + "nomCommune": "LES EPARRES" }, { - "codePostal": "29870", - "codeCommune": "29290", - "libelleAcheminement": "TREGLONOU", - "nomCommune": "TREGLONOU" + "codePostal": "51340", + "codeCommune": "51068", + "libelleAcheminement": "BLESME", + "nomCommune": "BLESME" }, { - "codePostal": "41120", - "codeCommune": "41029", - "libelleAcheminement": "CANDE SUR BEUVRON", - "nomCommune": "CANDE SUR BEUVRON" + "codePostal": "50480", + "codeCommune": "50523", + "libelleAcheminement": "STE MERE EGLISE", + "nomCommune": "STE MERE EGLISE" }, { - "codePostal": "63390", - "codeCommune": "63329", - "libelleAcheminement": "STE CHRISTINE", - "nomCommune": "STE CHRISTINE" + "codePostal": "35240", + "codeCommune": "35333", + "libelleAcheminement": "LE THEIL DE BRETAGNE", + "nomCommune": "LE THEIL DE BRETAGNE" }, { - "codePostal": "13610", - "codeCommune": "13080", - "libelleAcheminement": "LE PUY STE REPARADE", - "nomCommune": "LE PUY STE REPARADE" + "codePostal": "38320", + "codeCommune": "38158", + "libelleAcheminement": "EYBENS", + "nomCommune": "EYBENS" }, { - "codePostal": "29970", - "codeCommune": "29291", - "libelleAcheminement": "TREGOUREZ", - "nomCommune": "TREGOUREZ" + "codePostal": "51310", + "codeCommune": "51071", + "libelleAcheminement": "BOUCHY ST GENEST", + "nomCommune": "BOUCHY ST GENEST" }, { - "codePostal": "41120", - "codeCommune": "41032", - "libelleAcheminement": "CHAILLES", - "nomCommune": "CHAILLES" + "codePostal": "50480", + "codeCommune": "50523", + "libelleAcheminement": "STE MERE EGLISE", + "nomCommune": "STE MERE EGLISE" }, { - "codePostal": "63310", - "codeCommune": "63332", - "libelleAcheminement": "ST CLEMENT DE REGNAT", - "nomCommune": "ST CLEMENT DE REGNAT" + "codePostal": "35190", + "codeCommune": "35337", + "libelleAcheminement": "TINTENIAC", + "nomCommune": "TINTENIAC" }, { - "codePostal": "13870", - "codeCommune": "13083", - "libelleAcheminement": "ROGNONAS", - "nomCommune": "ROGNONAS" + "codePostal": "38290", + "codeCommune": "38176", + "libelleAcheminement": "FRONTONAS", + "nomCommune": "FRONTONAS" }, { - "codePostal": "29450", - "codeCommune": "29294", - "libelleAcheminement": "LE TREHOU", - "nomCommune": "LE TREHOU" + "codePostal": "51170", + "codeCommune": "51073", + "libelleAcheminement": "BOULEUSE", + "nomCommune": "BOULEUSE" }, { - "codePostal": "41250", - "codeCommune": "41034", - "libelleAcheminement": "CHAMBORD", - "nomCommune": "CHAMBORD" + "codePostal": "50670", + "codeCommune": "50525", + "libelleAcheminement": "ST MICHEL DE MONTJOIE", + "nomCommune": "ST MICHEL DE MONTJOIE" }, { - "codePostal": "63380", - "codeCommune": "63339", - "libelleAcheminement": "ST ETIENNE DES CHAMPS", - "nomCommune": "ST ETIENNE DES CHAMPS" + "codePostal": "35320", + "codeCommune": "35343", + "libelleAcheminement": "TRESBOEUF", + "nomCommune": "TRESBOEUF" }, { - "codePostal": "13790", - "codeCommune": "13087", - "libelleAcheminement": "ROUSSET", - "nomCommune": "ROUSSET" + "codePostal": "38260", + "codeCommune": "38180", + "libelleAcheminement": "GILLONNAY", + "nomCommune": "GILLONNAY" }, { - "codePostal": "20167", - "codeCommune": "2A006", - "libelleAcheminement": "ALATA", - "nomCommune": "ALATA" + "codePostal": "51110", + "codeCommune": "51074", + "libelleAcheminement": "BOULT SUR SUIPPE", + "nomCommune": "BOULT SUR SUIPPE" }, { - "codePostal": "41270", - "codeCommune": "41041", - "libelleAcheminement": "LA CHAPELLE VICOMTESSE", - "nomCommune": "LA CHAPELLE VICOMTESSE" + "codePostal": "50250", + "codeCommune": "50528", + "libelleAcheminement": "ST NICOLAS DE PIERREPONT", + "nomCommune": "ST NICOLAS DE PIERREPONT" }, { - "codePostal": "63122", - "codeCommune": "63345", - "libelleAcheminement": "ST GENES CHAMPANELLE", - "nomCommune": "ST GENES CHAMPANELLE" + "codePostal": "35430", + "codeCommune": "35358", + "libelleAcheminement": "LA VILLE ES NONAIS", + "nomCommune": "LA VILLE ES NONAIS" }, { - "codePostal": "13100", - "codeCommune": "13090", - "libelleAcheminement": "ST ANTONIN SUR BAYON", - "nomCommune": "ST ANTONIN SUR BAYON" + "codePostal": "38540", + "codeCommune": "38184", + "libelleAcheminement": "GRENAY", + "nomCommune": "GRENAY" }, { - "codePostal": "20151", - "codeCommune": "2A060", - "libelleAcheminement": "CANNELLE", - "nomCommune": "CANNELLE" + "codePostal": "51110", + "codeCommune": "51075", + "libelleAcheminement": "BOURGOGNE FRESNE", + "nomCommune": "BOURGOGNE FRESNE" }, { - "codePostal": "41110", - "codeCommune": "41042", - "libelleAcheminement": "CHATEAUVIEUX", - "nomCommune": "CHATEAUVIEUX" + "codePostal": "50190", + "codeCommune": "50533", + "libelleAcheminement": "ST PATRICE DE CLAIDS", + "nomCommune": "ST PATRICE DE CLAIDS" }, { - "codePostal": "63580", - "codeCommune": "63348", - "libelleAcheminement": "ST GENES LA TOURETTE", - "nomCommune": "ST GENES LA TOURETTE" + "codePostal": "35500", + "codeCommune": "35360", + "libelleAcheminement": "VITRE", + "nomCommune": "VITRE" }, { - "codePostal": "13240", - "codeCommune": "13106", - "libelleAcheminement": "SEPTEMES LES VALLONS", - "nomCommune": "SEPTEMES LES VALLONS" + "codePostal": "38100", + "codeCommune": "38185", + "libelleAcheminement": "GRENOBLE", + "nomCommune": "GRENOBLE" }, { - "codePostal": "20111", - "codeCommune": "2A070", - "libelleAcheminement": "CASAGLIONE", - "nomCommune": "CASAGLIONE" + "codePostal": "51800", + "codeCommune": "51082", + "libelleAcheminement": "BRAUX STE COHIERE", + "nomCommune": "BRAUX STE COHIERE" }, { - "codePostal": "41320", - "codeCommune": "41044", - "libelleAcheminement": "CHATRES SUR CHER", - "nomCommune": "CHATRES SUR CHER" + "codePostal": "50870", + "codeCommune": "50535", + "libelleAcheminement": "LE PARC", + "nomCommune": "LE PARC" }, { - "codePostal": "63780", - "codeCommune": "63349", - "libelleAcheminement": "ST GEORGES DE MONS", - "nomCommune": "ST GEORGES DE MONS" + "codePostal": "36150", + "codeCommune": "36002", + "libelleAcheminement": "AIZE", + "nomCommune": "AIZE" }, { - "codePostal": "13530", - "codeCommune": "13110", - "libelleAcheminement": "TRETS", - "nomCommune": "TRETS" + "codePostal": "38650", + "codeCommune": "38186", + "libelleAcheminement": "GRESSE EN VERCORS", + "nomCommune": "GRESSE EN VERCORS" }, { - "codePostal": "20148", - "codeCommune": "2A099", - "libelleAcheminement": "COZZANO", - "nomCommune": "COZZANO" + "codePostal": "51120", + "codeCommune": "51092", + "libelleAcheminement": "BROYES", + "nomCommune": "BROYES" }, { - "codePostal": "41400", - "codeCommune": "41051", - "libelleAcheminement": "CHISSAY EN TOURAINE", - "nomCommune": "CHISSAY EN TOURAINE" + "codePostal": "50530", + "codeCommune": "50540", + "libelleAcheminement": "ST PIERRE LANGERS", + "nomCommune": "ST PIERRE LANGERS" }, { - "codePostal": "63880", - "codeCommune": "63355", - "libelleAcheminement": "ST GERVAIS SOUS MEYMONT", - "nomCommune": "ST GERVAIS SOUS MEYMONT" + "codePostal": "36210", + "codeCommune": "36011", + "libelleAcheminement": "BAGNEUX", + "nomCommune": "BAGNEUX" }, { - "codePostal": "13004", - "codeCommune": "13204", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 04" + "codePostal": "38320", + "codeCommune": "38188", + "libelleAcheminement": "HERBEYS", + "nomCommune": "HERBEYS" }, { - "codePostal": "20157", - "codeCommune": "2A119", - "libelleAcheminement": "FRASSETO", - "nomCommune": "FRASSETO" + "codePostal": "51300", + "codeCommune": "51094", + "libelleAcheminement": "BRUSSON", + "nomCommune": "BRUSSON" }, { - "codePostal": "41150", - "codeCommune": "41055", - "libelleAcheminement": "VALLOIRE SUR CISSE", - "nomCommune": "VALLOIRE SUR CISSE" + "codePostal": "50670", + "codeCommune": "50542", + "libelleAcheminement": "ST POIS", + "nomCommune": "ST POIS" }, { - "codePostal": "63340", - "codeCommune": "63357", - "libelleAcheminement": "ST HERENT", - "nomCommune": "ST HERENT" + "codePostal": "36120", + "codeCommune": "36019", + "libelleAcheminement": "BOMMIERS", + "nomCommune": "BOMMIERS" }, { - "codePostal": "13008", - "codeCommune": "13208", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 08" + "codePostal": "38160", + "codeCommune": "38195", + "libelleAcheminement": "IZERON", + "nomCommune": "IZERON" }, { - "codePostal": "20140", - "codeCommune": "2A160", - "libelleAcheminement": "MOCA CROCE", - "nomCommune": "MOCA CROCE" + "codePostal": "51320", + "codeCommune": "51099", + "libelleAcheminement": "BUSSY LETTREE", + "nomCommune": "BUSSY LETTREE" }, { - "codePostal": "41700", - "codeCommune": "41059", - "libelleAcheminement": "LE CONTROIS EN SOLOGNE", - "nomCommune": "LE CONTROIS EN SOLOGNE" + "codePostal": "50750", + "codeCommune": "50546", + "libelleAcheminement": "BOURGVALLEES", + "nomCommune": "BOURGVALLEES" }, { - "codePostal": "63570", - "codeCommune": "63367", - "libelleAcheminement": "ST JEAN ST GERVAIS", - "nomCommune": "ST JEAN ST GERVAIS" + "codePostal": "36110", + "codeCommune": "36024", + "libelleAcheminement": "BRETAGNE", + "nomCommune": "BRETAGNE" }, { - "codePostal": "13009", - "codeCommune": "13209", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 09" + "codePostal": "38280", + "codeCommune": "38197", + "libelleAcheminement": "JANNEYRIAS", + "nomCommune": "JANNEYRIAS" }, { - "codePostal": "20160", - "codeCommune": "2A174", - "libelleAcheminement": "MURZO", - "nomCommune": "MURZO" + "codePostal": "51130", + "codeCommune": "51110", + "libelleAcheminement": "CHALTRAIT", + "nomCommune": "CHALTRAIT" }, { - "codePostal": "41120", - "codeCommune": "41061", - "libelleAcheminement": "CORMERAY", - "nomCommune": "CORMERAY" + "codePostal": "50250", + "codeCommune": "50548", + "libelleAcheminement": "ST SAUVEUR DE PIERREPONT", + "nomCommune": "ST SAUVEUR DE PIERREPONT" }, { - "codePostal": "63820", - "codeCommune": "63370", - "libelleAcheminement": "ST JULIEN PUY LAVEZE", - "nomCommune": "ST JULIEN PUY LAVEZE" + "codePostal": "36140", + "codeCommune": "36028", + "libelleAcheminement": "LA BUXERETTE", + "nomCommune": "LA BUXERETTE" }, { - "codePostal": "13010", - "codeCommune": "13210", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 10" + "codePostal": "38270", + "codeCommune": "38198", + "libelleAcheminement": "JARCIEU", + "nomCommune": "JARCIEU" }, { - "codePostal": "20125", - "codeCommune": "2A196", - "libelleAcheminement": "ORTO", - "nomCommune": "ORTO" + "codePostal": "51500", + "codeCommune": "51115", + "libelleAcheminement": "CHAMPFLEURY", + "nomCommune": "CHAMPFLEURY" }, { - "codePostal": "41110", - "codeCommune": "41063", - "libelleAcheminement": "COUFFY", - "nomCommune": "COUFFY" + "codePostal": "50490", + "codeCommune": "50550", + "libelleAcheminement": "ST SAUVEUR VILLAGES", + "nomCommune": "ST SAUVEUR VILLAGES" }, { - "codePostal": "63230", - "codeCommune": "63381", - "libelleAcheminement": "ST OURS", - "nomCommune": "ST OURS" + "codePostal": "36310", + "codeCommune": "36035", + "libelleAcheminement": "CHAILLAC", + "nomCommune": "CHAILLAC" }, { - "codePostal": "13013", - "codeCommune": "13213", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 13" + "codePostal": "38460", + "codeCommune": "38210", + "libelleAcheminement": "LEYRIEU", + "nomCommune": "LEYRIEU" }, { - "codePostal": "20140", - "codeCommune": "2A211", - "libelleAcheminement": "PETRETO BICCHISANO", - "nomCommune": "PETRETO BICCHISANO" + "codePostal": "51310", + "codeCommune": "51116", + "libelleAcheminement": "CHAMPGUYON", + "nomCommune": "CHAMPGUYON" }, { - "codePostal": "41230", - "codeCommune": "41068", - "libelleAcheminement": "COURMEMIN", - "nomCommune": "COURMEMIN" + "codePostal": "50530", + "codeCommune": "50565", + "libelleAcheminement": "SARTILLY BAIE BOCAGE", + "nomCommune": "SARTILLY BAIE BOCAGE" }, { - "codePostal": "63230", - "codeCommune": "63385", - "libelleAcheminement": "ST PIERRE LE CHASTEL", - "nomCommune": "ST PIERRE LE CHASTEL" + "codePostal": "36100", + "codeCommune": "36037", + "libelleAcheminement": "LA CHAMPENOISE", + "nomCommune": "LA CHAMPENOISE" }, { - "codePostal": "13016", - "codeCommune": "13216", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 16" + "codePostal": "38690", + "codeCommune": "38213", + "libelleAcheminement": "LONGECHENAL", + "nomCommune": "LONGECHENAL" }, { - "codePostal": "20115", - "codeCommune": "2A212", - "libelleAcheminement": "PIANA", - "nomCommune": "PIANA" + "codePostal": "51260", + "codeCommune": "51124", + "libelleAcheminement": "CHANTEMERLE", + "nomCommune": "CHANTEMERLE" }, { - "codePostal": "41500", - "codeCommune": "41069", - "libelleAcheminement": "COUR SUR LOIRE", - "nomCommune": "COUR SUR LOIRE" + "codePostal": "50530", + "codeCommune": "50565", + "libelleAcheminement": "SARTILLY BAIE BOCAGE", + "nomCommune": "SARTILLY BAIE BOCAGE" }, { - "codePostal": "63640", - "codeCommune": "63388", - "libelleAcheminement": "ST PRIEST DES CHAMPS", - "nomCommune": "ST PRIEST DES CHAMPS" + "codePostal": "36400", + "codeCommune": "36043", + "libelleAcheminement": "CHASSIGNOLLES", + "nomCommune": "CHASSIGNOLLES" }, { - "codePostal": "14600", - "codeCommune": "14001", - "libelleAcheminement": "ABLON", - "nomCommune": "ABLON" + "codePostal": "38660", + "codeCommune": "38214", + "libelleAcheminement": "LUMBIN", + "nomCommune": "LUMBIN" }, { - "codePostal": "20145", - "codeCommune": "2A269", - "libelleAcheminement": "SARI SOLENZARA", - "nomCommune": "SARI SOLENZARA" + "codePostal": "51120", + "codeCommune": "51129", + "libelleAcheminement": "CHARLEVILLE", + "nomCommune": "CHARLEVILLE" }, { - "codePostal": "41800", - "codeCommune": "41070", - "libelleAcheminement": "VALLEE DE RONSARD", - "nomCommune": "VALLEE DE RONSARD" + "codePostal": "50270", + "codeCommune": "50572", + "libelleAcheminement": "SENOVILLE", + "nomCommune": "SENOVILLE" }, { - "codePostal": "63440", - "codeCommune": "63391", - "libelleAcheminement": "ST REMY DE BLOT", - "nomCommune": "ST REMY DE BLOT" + "codePostal": "36170", + "codeCommune": "36047", + "libelleAcheminement": "LA CHATRE LANGLIN", + "nomCommune": "LA CHATRE LANGLIN" }, { - "codePostal": "14370", - "codeCommune": "14005", - "libelleAcheminement": "VALAMBRAY", - "nomCommune": "VALAMBRAY" + "codePostal": "38350", + "codeCommune": "38217", + "libelleAcheminement": "MARCIEU", + "nomCommune": "MARCIEU" }, { - "codePostal": "20167", - "codeCommune": "2A271", - "libelleAcheminement": "SARROLA CARCOPINO", - "nomCommune": "SARROLA CARCOPINO" + "codePostal": "51330", + "codeCommune": "51133", + "libelleAcheminement": "LE CHATELIER", + "nomCommune": "LE CHATELIER" }, { - "codePostal": "41360", - "codeCommune": "41078", - "libelleAcheminement": "EPUISAY", - "nomCommune": "EPUISAY" + "codePostal": "50340", + "codeCommune": "50576", + "libelleAcheminement": "SIOUVILLE HAGUE", + "nomCommune": "SIOUVILLE HAGUE" }, { - "codePostal": "63660", - "codeCommune": "63394", - "libelleAcheminement": "ST ROMAIN", - "nomCommune": "ST ROMAIN" + "codePostal": "36200", + "codeCommune": "36048", + "libelleAcheminement": "CHAVIN", + "nomCommune": "CHAVIN" }, { - "codePostal": "14640", - "codeCommune": "14024", - "libelleAcheminement": "AUBERVILLE", - "nomCommune": "AUBERVILLE" + "codePostal": "38112", + "codeCommune": "38225", + "libelleAcheminement": "AUTRANS MEAUDRE EN VERCORS", + "nomCommune": "AUTRANS MEAUDRE EN VERCORS" }, { - "codePostal": "20127", - "codeCommune": "2A278", - "libelleAcheminement": "SERRA DI SCOPAMENE", - "nomCommune": "SERRA DI SCOPAMENE" + "codePostal": "51290", + "codeCommune": "51135", + "libelleAcheminement": "CHATILLON SUR BROUE", + "nomCommune": "CHATILLON SUR BROUE" }, { - "codePostal": "41800", - "codeCommune": "41087", - "libelleAcheminement": "FONTAINE LES COTEAUX", - "nomCommune": "FONTAINE LES COTEAUX" + "codePostal": "50270", + "codeCommune": "50577", + "libelleAcheminement": "SORTOSVILLE EN BEAUMONT", + "nomCommune": "SORTOSVILLE EN BEAUMONT" }, { - "codePostal": "63450", - "codeCommune": "63396", - "libelleAcheminement": "ST SATURNIN", - "nomCommune": "ST SATURNIN" + "codePostal": "36310", + "codeCommune": "36067", + "libelleAcheminement": "DUNET", + "nomCommune": "DUNET" }, { - "codePostal": "14770", - "codeCommune": "14027", - "libelleAcheminement": "LES MONTS D AUNAY", - "nomCommune": "LES MONTS D AUNAY" + "codePostal": "38440", + "codeCommune": "38231", + "libelleAcheminement": "MEYRIEU LES ETANGS", + "nomCommune": "MEYRIEU LES ETANGS" }, { - "codePostal": "20151", - "codeCommune": "2A295", - "libelleAcheminement": "SANT ANDREA D ORCINO", - "nomCommune": "SANT ANDREA D ORCINO" + "codePostal": "51700", + "codeCommune": "51136", + "libelleAcheminement": "CHATILLON SUR MARNE", + "nomCommune": "CHATILLON SUR MARNE" }, { - "codePostal": "41270", - "codeCommune": "41089", - "libelleAcheminement": "LA FONTENELLE", - "nomCommune": "LA FONTENELLE" + "codePostal": "50260", + "codeCommune": "50579", + "libelleAcheminement": "SOTTEVAST", + "nomCommune": "SOTTEVAST" }, { - "codePostal": "63790", - "codeCommune": "63401", - "libelleAcheminement": "ST VICTOR LA RIVIERE", - "nomCommune": "ST VICTOR LA RIVIERE" + "codePostal": "36210", + "codeCommune": "36068", + "libelleAcheminement": "DUN LE POELIER", + "nomCommune": "DUN LE POELIER" }, { - "codePostal": "14340", - "codeCommune": "14033", - "libelleAcheminement": "AUVILLARS", - "nomCommune": "AUVILLARS" + "codePostal": "38440", + "codeCommune": "38232", + "libelleAcheminement": "MEYSSIEZ", + "nomCommune": "MEYSSIEZ" }, { - "codePostal": "20137", - "codeCommune": "2A300", - "libelleAcheminement": "SAN GAVINO DI CARBINI", - "nomCommune": "SAN GAVINO DI CARBINI" + "codePostal": "51140", + "codeCommune": "51145", + "libelleAcheminement": "CHENAY", + "nomCommune": "CHENAY" }, { - "codePostal": "41330", - "codeCommune": "41091", - "libelleAcheminement": "FOSSE", - "nomCommune": "FOSSE" + "codePostal": "50870", + "codeCommune": "50584", + "libelleAcheminement": "SUBLIGNY", + "nomCommune": "SUBLIGNY" }, { - "codePostal": "63470", - "codeCommune": "63410", - "libelleAcheminement": "SAUVAGNAT", - "nomCommune": "SAUVAGNAT" + "codePostal": "36120", + "codeCommune": "36071", + "libelleAcheminement": "ETRECHET", + "nomCommune": "ETRECHET" }, { - "codePostal": "14490", - "codeCommune": "14035", - "libelleAcheminement": "BALLEROY SUR DROME", - "nomCommune": "BALLEROY SUR DROME" + "codePostal": "38142", + "codeCommune": "38237", + "libelleAcheminement": "MIZOEN", + "nomCommune": "MIZOEN" }, { - "codePostal": "20128", - "codeCommune": "2A331", - "libelleAcheminement": "URBALACONE", - "nomCommune": "URBALACONE" + "codePostal": "51300", + "codeCommune": "51156", + "libelleAcheminement": "CLOYES SUR MARNE", + "nomCommune": "CLOYES SUR MARNE" }, { - "codePostal": "41160", - "codeCommune": "41095", - "libelleAcheminement": "FRETEVAL", - "nomCommune": "FRETEVAL" + "codePostal": "50410", + "codeCommune": "50637", + "libelleAcheminement": "VILLEBAUDON", + "nomCommune": "VILLEBAUDON" }, { - "codePostal": "63490", - "codeCommune": "63415", - "libelleAcheminement": "SAUXILLANGES", - "nomCommune": "SAUXILLANGES" + "codePostal": "36160", + "codeCommune": "36073", + "libelleAcheminement": "FEUSINES", + "nomCommune": "FEUSINES" }, { - "codePostal": "14940", - "codeCommune": "14036", - "libelleAcheminement": "BANNEVILLE LA CAMPAGNE", - "nomCommune": "BANNEVILLE LA CAMPAGNE" + "codePostal": "38440", + "codeCommune": "38238", + "libelleAcheminement": "MOIDIEU DETOURBE", + "nomCommune": "MOIDIEU DETOURBE" }, { - "codePostal": "20167", - "codeCommune": "2A351", - "libelleAcheminement": "VILLANOVA", - "nomCommune": "VILLANOVA" + "codePostal": "51510", + "codeCommune": "51160", + "libelleAcheminement": "COMPERTRIX", + "nomCommune": "COMPERTRIX" }, { - "codePostal": "41310", - "codeCommune": "41098", - "libelleAcheminement": "GOMBERGEAN", - "nomCommune": "GOMBERGEAN" + "codePostal": "50700", + "codeCommune": "50648", + "libelleAcheminement": "YVETOT BOCAGE", + "nomCommune": "YVETOT BOCAGE" }, { - "codePostal": "63720", - "codeCommune": "63424", - "libelleAcheminement": "SURAT", - "nomCommune": "SURAT" + "codePostal": "36700", + "codeCommune": "36074", + "libelleAcheminement": "FLERE LA RIVIERE", + "nomCommune": "FLERE LA RIVIERE" }, { - "codePostal": "14400", - "codeCommune": "14040", - "libelleAcheminement": "BARBEVILLE", - "nomCommune": "BARBEVILLE" + "codePostal": "38930", + "codeCommune": "38243", + "libelleAcheminement": "LE MONESTIER DU PERCY", + "nomCommune": "LE MONESTIER DU PERCY" }, { - "codePostal": "20124", - "codeCommune": "2A362", - "libelleAcheminement": "ZONZA", - "nomCommune": "ZONZA" + "codePostal": "51150", + "codeCommune": "51161", + "libelleAcheminement": "CONDE SUR MARNE", + "nomCommune": "CONDE SUR MARNE" }, { - "codePostal": "41310", - "codeCommune": "41103", - "libelleAcheminement": "HUISSEAU EN BEAUCE", - "nomCommune": "HUISSEAU EN BEAUCE" + "codePostal": "51240", + "codeCommune": "51001", + "libelleAcheminement": "ABLANCOURT", + "nomCommune": "ABLANCOURT" }, { - "codePostal": "63380", - "codeCommune": "63436", - "libelleAcheminement": "TRALAIGUES", - "nomCommune": "TRALAIGUES" + "codePostal": "36230", + "codeCommune": "36084", + "libelleAcheminement": "GOURNAY", + "nomCommune": "GOURNAY" }, { - "codePostal": "14600", - "codeCommune": "14041", - "libelleAcheminement": "BARNEVILLE LA BERTRAN", - "nomCommune": "BARNEVILLE LA BERTRAN" + "codePostal": "38110", + "codeCommune": "38246", + "libelleAcheminement": "MONTAGNIEU", + "nomCommune": "MONTAGNIEU" }, { - "codePostal": "20270", - "codeCommune": "2B002", - "libelleAcheminement": "AGHIONE", - "nomCommune": "AGHIONE" + "codePostal": "51270", + "codeCommune": "51163", + "libelleAcheminement": "CONGY", + "nomCommune": "CONGY" }, { - "codePostal": "41370", - "codeCommune": "41123", - "libelleAcheminement": "MARCHENOIR", - "nomCommune": "MARCHENOIR" + "codePostal": "51260", + "codeCommune": "51004", + "libelleAcheminement": "ALLEMANCHE LAUNAY ET SOYER", + "nomCommune": "ALLEMANCHE LAUNAY ET SOYER" }, { - "codePostal": "63710", - "codeCommune": "63449", - "libelleAcheminement": "LE VERNET STE MARGUERITE", - "nomCommune": "LE VERNET STE MARGUERITE" + "codePostal": "36150", + "codeCommune": "36085", + "libelleAcheminement": "GUILLY", + "nomCommune": "GUILLY" }, { - "codePostal": "14620", - "codeCommune": "14043", - "libelleAcheminement": "BAROU EN AUGE", - "nomCommune": "BAROU EN AUGE" + "codePostal": "38210", + "codeCommune": "38248", + "libelleAcheminement": "MONTAUD", + "nomCommune": "MONTAUD" }, { - "codePostal": "20244", - "codeCommune": "2B003", - "libelleAcheminement": "AITI", - "nomCommune": "AITI" + "codePostal": "51320", + "codeCommune": "51167", + "libelleAcheminement": "COOLE", + "nomCommune": "COOLE" }, { - "codePostal": "41110", - "codeCommune": "41126", - "libelleAcheminement": "MAREUIL SUR CHER", - "nomCommune": "MAREUIL SUR CHER" + "codePostal": "51150", + "codeCommune": "51018", + "libelleAcheminement": "ATHIS", + "nomCommune": "ATHIS" }, { - "codePostal": "63320", - "codeCommune": "63452", - "libelleAcheminement": "VERRIERES", - "nomCommune": "VERRIERES" + "codePostal": "36600", + "codeCommune": "36092", + "libelleAcheminement": "LANGE", + "nomCommune": "LANGE" }, { - "codePostal": "14610", - "codeCommune": "14044", - "libelleAcheminement": "BASLY", - "nomCommune": "BASLY" + "codePostal": "38690", + "codeCommune": "38257", + "libelleAcheminement": "MONTREVEL", + "nomCommune": "MONTREVEL" }, { - "codePostal": "20224", - "codeCommune": "2B007", - "libelleAcheminement": "ALBERTACCE", - "nomCommune": "ALBERTACCE" + "codePostal": "51350", + "codeCommune": "51172", + "libelleAcheminement": "CORMONTREUIL", + "nomCommune": "CORMONTREUIL" }, { - "codePostal": "41100", - "codeCommune": "41131", - "libelleAcheminement": "MAZANGE", - "nomCommune": "MAZANGE" + "codePostal": "51240", + "codeCommune": "51022", + "libelleAcheminement": "AULNAY L AITRE", + "nomCommune": "AULNAY L AITRE" }, { - "codePostal": "63120", - "codeCommune": "63469", - "libelleAcheminement": "VOLLORE VILLE", - "nomCommune": "VOLLORE VILLE" + "codePostal": "36160", + "codeCommune": "36095", + "libelleAcheminement": "LIGNEROLLES", + "nomCommune": "LIGNEROLLES" }, { - "codePostal": "14380", - "codeCommune": "14054", - "libelleAcheminement": "BEAUMESNIL", - "nomCommune": "BEAUMESNIL" + "codePostal": "38210", + "codeCommune": "38263", + "libelleAcheminement": "MORETTE", + "nomCommune": "MORETTE" }, { - "codePostal": "20270", - "codeCommune": "2B009", - "libelleAcheminement": "ALERIA", - "nomCommune": "ALERIA" + "codePostal": "51210", + "codeCommune": "51175", + "libelleAcheminement": "CORROBERT", + "nomCommune": "CORROBERT" }, { - "codePostal": "41500", - "codeCommune": "41136", - "libelleAcheminement": "MER", - "nomCommune": "MER" + "codePostal": "51700", + "codeCommune": "51038", + "libelleAcheminement": "BASLIEUX SOUS CHATILLON", + "nomCommune": "BASLIEUX SOUS CHATILLON" }, { - "codePostal": "63700", - "codeCommune": "63471", - "libelleAcheminement": "YOUX", - "nomCommune": "YOUX" + "codePostal": "36220", + "codeCommune": "36096", + "libelleAcheminement": "LINGE", + "nomCommune": "LINGE" }, { - "codePostal": "14950", - "codeCommune": "14055", - "libelleAcheminement": "BEAUMONT EN AUGE", - "nomCommune": "BEAUMONT EN AUGE" + "codePostal": "38350", + "codeCommune": "38273", + "libelleAcheminement": "NANTES EN RATIER", + "nomCommune": "NANTES EN RATIER" }, { - "codePostal": "20220", - "codeCommune": "2B020", - "libelleAcheminement": "AREGNO", - "nomCommune": "AREGNO" + "codePostal": "51240", + "codeCommune": "51178", + "libelleAcheminement": "COUPETZ", + "nomCommune": "COUPETZ" }, { - "codePostal": "41120", - "codeCommune": "41145", - "libelleAcheminement": "MONTHOU SUR BIEVRE", - "nomCommune": "MONTHOU SUR BIEVRE" + "codePostal": "51300", + "codeCommune": "51039", + "libelleAcheminement": "BASSU", + "nomCommune": "BASSU" }, { - "codePostal": "63200", - "codeCommune": "63473", - "libelleAcheminement": "YSSAC LA TOURETTE", - "nomCommune": "YSSAC LA TOURETTE" + "codePostal": "36220", + "codeCommune": "36105", + "libelleAcheminement": "LUREUIL", + "nomCommune": "LUREUIL" }, { - "codePostal": "14370", - "codeCommune": "14057", - "libelleAcheminement": "BELLENGREVILLE", - "nomCommune": "BELLENGREVILLE" + "codePostal": "38470", + "codeCommune": "38275", + "libelleAcheminement": "SERRE NERPOL", + "nomCommune": "SERRE NERPOL" }, { - "codePostal": "20225", - "codeCommune": "2B025", - "libelleAcheminement": "AVAPESSA", - "nomCommune": "AVAPESSA" + "codePostal": "51700", + "codeCommune": "51192", + "libelleAcheminement": "COURTHIEZY", + "nomCommune": "COURTHIEZY" }, { - "codePostal": "41400", - "codeCommune": "41146", - "libelleAcheminement": "MONTHOU SUR CHER", - "nomCommune": "MONTHOU SUR CHER" + "codePostal": "51300", + "codeCommune": "51040", + "libelleAcheminement": "BASSUET", + "nomCommune": "BASSUET" }, { - "codePostal": "64120", - "codeCommune": "64010", - "libelleAcheminement": "AICIRITS CAMOU SUHAST", - "nomCommune": "AICIRITS CAMOU SUHAST" + "codePostal": "36800", + "codeCommune": "36106", + "libelleAcheminement": "LUZERET", + "nomCommune": "LUZERET" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "38144", + "codeCommune": "38280", + "libelleAcheminement": "NOTRE DAME DE VAULX", + "nomCommune": "NOTRE DAME DE VAULX" }, { - "codePostal": "20253", - "codeCommune": "2B029", - "libelleAcheminement": "BARBAGGIO", - "nomCommune": "BARBAGGIO" + "codePostal": "51460", + "codeCommune": "51193", + "libelleAcheminement": "COURTISOLS", + "nomCommune": "COURTISOLS" }, { - "codePostal": "41800", - "codeCommune": "41149", - "libelleAcheminement": "MONTOIRE SUR LE LOIR", - "nomCommune": "MONTOIRE SUR LE LOIR" + "codePostal": "51360", + "codeCommune": "51044", + "libelleAcheminement": "BEAUMONT SUR VESLE", + "nomCommune": "BEAUMONT SUR VESLE" }, { - "codePostal": "64250", - "codeCommune": "64014", - "libelleAcheminement": "AINHOA", - "nomCommune": "AINHOA" + "codePostal": "36230", + "codeCommune": "36108", + "libelleAcheminement": "LYS ST GEORGES", + "nomCommune": "LYS ST GEORGES" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "38520", + "codeCommune": "38286", + "libelleAcheminement": "OULLES", + "nomCommune": "OULLES" }, { - "codePostal": "20228", - "codeCommune": "2B030", - "libelleAcheminement": "BARRETTALI", - "nomCommune": "BARRETTALI" + "codePostal": "51530", + "codeCommune": "51196", + "libelleAcheminement": "CRAMANT", + "nomCommune": "CRAMANT" }, { - "codePostal": "41400", - "codeCommune": "41151", - "libelleAcheminement": "MONTRICHARD VAL DE CHER", - "nomCommune": "MONTRICHARD VAL DE CHER" + "codePostal": "51130", + "codeCommune": "51049", + "libelleAcheminement": "BERGERES LES VERTUS", + "nomCommune": "BERGERES LES VERTUS" }, { - "codePostal": "64470", - "codeCommune": "64015", - "libelleAcheminement": "ALCAY ALCABEHETY SUNHARETTE", - "nomCommune": "ALCAY ALCABEHETY SUNHARETTE" + "codePostal": "36150", + "codeCommune": "36116", + "libelleAcheminement": "MENETREOLS SOUS VATAN", + "nomCommune": "MENETREOLS SOUS VATAN" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "38260", + "codeCommune": "38291", + "libelleAcheminement": "PAJAY", + "nomCommune": "PAJAY" }, { - "codePostal": "20200", - "codeCommune": "2B033", - "libelleAcheminement": "BASTIA", - "nomCommune": "BASTIA" + "codePostal": "51240", + "codeCommune": "51208", + "libelleAcheminement": "DAMPIERRE SUR MOIVRE", + "nomCommune": "DAMPIERRE SUR MOIVRE" }, { - "codePostal": "41400", - "codeCommune": "41151", - "libelleAcheminement": "MONTRICHARD VAL DE CHER", - "nomCommune": "MONTRICHARD VAL DE CHER" + "codePostal": "51340", + "codeCommune": "51060", + "libelleAcheminement": "BIGNICOURT SUR SAULX", + "nomCommune": "BIGNICOURT SUR SAULX" }, { - "codePostal": "64470", - "codeCommune": "64017", - "libelleAcheminement": "ALOS SIBAS ABENSE", - "nomCommune": "ALOS SIBAS ABENSE" + "codePostal": "36200", + "codeCommune": "36117", + "libelleAcheminement": "LE MENOUX", + "nomCommune": "LE MENOUX" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "38730", + "codeCommune": "38292", + "libelleAcheminement": "VILLAGES DU LAC DE PALADRU", + "nomCommune": "VILLAGES DU LAC DE PALADRU" }, { - "codePostal": "20200", - "codeCommune": "2B033", - "libelleAcheminement": "BASTIA", - "nomCommune": "BASTIA" + "codePostal": "51700", + "codeCommune": "51217", + "libelleAcheminement": "DORMANS", + "nomCommune": "DORMANS" }, { - "codePostal": "41500", - "codeCommune": "41155", - "libelleAcheminement": "MUIDES SUR LOIRE", - "nomCommune": "MUIDES SUR LOIRE" + "codePostal": "51110", + "codeCommune": "51075", + "libelleAcheminement": "BOURGOGNE FRESNE", + "nomCommune": "BOURGOGNE FRESNE" }, { - "codePostal": "64600", - "codeCommune": "64024", - "libelleAcheminement": "ANGLET", - "nomCommune": "ANGLET" + "codePostal": "36150", + "codeCommune": "36122", + "libelleAcheminement": "MEUNET SUR VATAN", + "nomCommune": "MEUNET SUR VATAN" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "38390", + "codeCommune": "38295", + "libelleAcheminement": "PARMILIEU", + "nomCommune": "PARMILIEU" }, { - "codePostal": "20252", - "codeCommune": "2B036", - "libelleAcheminement": "BIGORNO", - "nomCommune": "BIGORNO" + "codePostal": "51290", + "codeCommune": "51219", + "libelleAcheminement": "DROSNAY", + "nomCommune": "DROSNAY" }, { - "codePostal": "41250", - "codeCommune": "41160", - "libelleAcheminement": "NEUVY", - "nomCommune": "NEUVY" + "codePostal": "51290", + "codeCommune": "51080", + "libelleAcheminement": "BRANDONVILLERS", + "nomCommune": "BRANDONVILLERS" }, { - "codePostal": "64350", - "codeCommune": "64028", - "libelleAcheminement": "ANOYE", - "nomCommune": "ANOYE" + "codePostal": "36340", + "codeCommune": "36133", + "libelleAcheminement": "MOUHERS", + "nomCommune": "MOUHERS" }, { - "codePostal": "14112", - "codeCommune": "14068", - "libelleAcheminement": "BIEVILLE BEUVILLE", - "nomCommune": "BIEVILLE BEUVILLE" + "codePostal": "38490", + "codeCommune": "38296", + "libelleAcheminement": "LE PASSAGE", + "nomCommune": "LE PASSAGE" }, { - "codePostal": "20222", - "codeCommune": "2B043", - "libelleAcheminement": "BRANDO", - "nomCommune": "BRANDO" + "codePostal": "51290", + "codeCommune": "51223", + "libelleAcheminement": "ECOLLEMONT", + "nomCommune": "ECOLLEMONT" }, { - "codePostal": "41600", - "codeCommune": "41161", - "libelleAcheminement": "NOUAN LE FUZELIER", - "nomCommune": "NOUAN LE FUZELIER" + "codePostal": "51800", + "codeCommune": "51083", + "libelleAcheminement": "BRAUX ST REMY", + "nomCommune": "BRAUX ST REMY" }, { - "codePostal": "64270", - "codeCommune": "64031", - "libelleAcheminement": "ARANCOU", - "nomCommune": "ARANCOU" + "codePostal": "36400", + "codeCommune": "36138", + "libelleAcheminement": "NERET", + "nomCommune": "NERET" }, { - "codePostal": "14100", - "codeCommune": "14069", - "libelleAcheminement": "BEUVILLERS", - "nomCommune": "BEUVILLERS" + "codePostal": "38930", + "codeCommune": "38301", + "libelleAcheminement": "LE PERCY", + "nomCommune": "PERCY" }, { - "codePostal": "20222", - "codeCommune": "2B043", - "libelleAcheminement": "BRANDO", - "nomCommune": "BRANDO" + "codePostal": "51230", + "codeCommune": "51226", + "libelleAcheminement": "ECURY LE REPOS", + "nomCommune": "ECURY LE REPOS" }, { - "codePostal": "41140", - "codeCommune": "41164", - "libelleAcheminement": "NOYERS SUR CHER", - "nomCommune": "NOYERS SUR CHER" + "codePostal": "51140", + "codeCommune": "51086", + "libelleAcheminement": "BREUIL SUR VESLE", + "nomCommune": "BREUIL SUR VESLE" }, { - "codePostal": "64190", - "codeCommune": "64032", - "libelleAcheminement": "ARAUJUZON", - "nomCommune": "ARAUJUZON" + "codePostal": "36290", + "codeCommune": "36145", + "libelleAcheminement": "OBTERRE", + "nomCommune": "OBTERRE" }, { - "codePostal": "14550", - "codeCommune": "14076", - "libelleAcheminement": "BLAINVILLE SUR ORNE", - "nomCommune": "BLAINVILLE SUR ORNE" + "codePostal": "38270", + "codeCommune": "38307", + "libelleAcheminement": "PISIEU", + "nomCommune": "PISIEU" }, { - "codePostal": "20224", - "codeCommune": "2B047", - "libelleAcheminement": "CALACUCCIA", - "nomCommune": "CALACUCCIA" + "codePostal": "51800", + "codeCommune": "51228", + "libelleAcheminement": "ELISE DAUCOURT", + "nomCommune": "ELISE DAUCOURT" }, { - "codePostal": "41150", - "codeCommune": "41167", - "libelleAcheminement": "VEUZAIN SUR LOIRE", - "nomCommune": "VEUZAIN SUR LOIRE" + "codePostal": "51240", + "codeCommune": "51087", + "libelleAcheminement": "BREUVERY SUR COOLE", + "nomCommune": "BREUVERY SUR COOLE" }, { - "codePostal": "64230", - "codeCommune": "64037", - "libelleAcheminement": "ARBUS", - "nomCommune": "ARBUS" + "codePostal": "36260", + "codeCommune": "36152", + "libelleAcheminement": "PAUDY", + "nomCommune": "PAUDY" }, { - "codePostal": "14690", - "codeCommune": "14080", - "libelleAcheminement": "LE BO", - "nomCommune": "LE BO" + "codePostal": "38260", + "codeCommune": "38311", + "libelleAcheminement": "POMMIER DE BEAUREPAIRE", + "nomCommune": "POMMIER DE BEAUREPAIRE" }, { - "codePostal": "20260", - "codeCommune": "2B049", - "libelleAcheminement": "CALENZANA", - "nomCommune": "CALENZANA" + "codePostal": "51330", + "codeCommune": "51229", + "libelleAcheminement": "EPENSE", + "nomCommune": "EPENSE" }, { - "codePostal": "41290", - "codeCommune": "41171", - "libelleAcheminement": "OUCQUES LA NOUVELLE", - "nomCommune": "OUCQUES LA NOUVELLE" + "codePostal": "51220", + "codeCommune": "51088", + "libelleAcheminement": "BRIMONT", + "nomCommune": "BRIMONT" }, { - "codePostal": "64400", - "codeCommune": "64039", - "libelleAcheminement": "AREN", - "nomCommune": "AREN" + "codePostal": "36800", + "codeCommune": "36161", + "libelleAcheminement": "LE PONT CHRETIEN CHABENET", + "nomCommune": "LE PONT CHRETIEN CHABENET" }, { - "codePostal": "14340", - "codeCommune": "14083", - "libelleAcheminement": "BONNEBOSQ", - "nomCommune": "BONNEBOSQ" + "codePostal": "38470", + "codeCommune": "38330", + "libelleAcheminement": "QUINCIEU", + "nomCommune": "QUINCIEU" }, { - "codePostal": "20260", - "codeCommune": "2B050", - "libelleAcheminement": "CALVI", - "nomCommune": "CALVI" + "codePostal": "51270", + "codeCommune": "51247", + "libelleAcheminement": "FEREBRIANGES", + "nomCommune": "FEREBRIANGES" }, { - "codePostal": "41160", - "codeCommune": "41172", - "libelleAcheminement": "OUZOUER LE DOYEN", - "nomCommune": "OUZOUER LE DOYEN" + "codePostal": "51170", + "codeCommune": "51089", + "libelleAcheminement": "BROUILLET", + "nomCommune": "BROUILLET" }, { - "codePostal": "64450", - "codeCommune": "64043", - "libelleAcheminement": "ARGELOS", - "nomCommune": "ARGELOS" + "codePostal": "36210", + "codeCommune": "36162", + "libelleAcheminement": "POULAINES", + "nomCommune": "POULAINES" }, { - "codePostal": "14420", - "codeCommune": "14088", - "libelleAcheminement": "BONS TASSILLY", - "nomCommune": "BONS TASSILLY" + "codePostal": "38121", + "codeCommune": "38336", + "libelleAcheminement": "REVENTIN VAUGRIS", + "nomCommune": "REVENTIN VAUGRIS" }, { - "codePostal": "20270", - "codeCommune": "2B053", - "libelleAcheminement": "CAMPI", - "nomCommune": "CAMPI" + "codePostal": "51700", + "codeCommune": "51249", + "libelleAcheminement": "FESTIGNY", + "nomCommune": "FESTIGNY" }, { - "codePostal": "41160", - "codeCommune": "41173", - "libelleAcheminement": "BEAUCE LA ROMAINE", - "nomCommune": "BEAUCE LA ROMAINE" + "codePostal": "51600", + "codeCommune": "51097", + "libelleAcheminement": "BUSSY LE CHATEAU", + "nomCommune": "BUSSY LE CHATEAU" }, { - "codePostal": "64350", - "codeCommune": "64056", - "libelleAcheminement": "ARROSES", - "nomCommune": "ARROSES" + "codePostal": "36160", + "codeCommune": "36163", + "libelleAcheminement": "POULIGNY NOTRE DAME", + "nomCommune": "POULIGNY NOTRE DAME" }, { - "codePostal": "14430", - "codeCommune": "14093", - "libelleAcheminement": "BRANVILLE", - "nomCommune": "BRANVILLE" + "codePostal": "38210", + "codeCommune": "38338", + "libelleAcheminement": "LA RIVIERE", + "nomCommune": "LA RIVIERE" }, { - "codePostal": "20215", - "codeCommune": "2B072", - "libelleAcheminement": "CASALTA", - "nomCommune": "CASALTA" + "codePostal": "51170", + "codeCommune": "51250", + "libelleAcheminement": "FISMES", + "nomCommune": "FISMES" }, { - "codePostal": "41300", - "codeCommune": "41176", - "libelleAcheminement": "PIERREFITTE SUR SAULDRE", - "nomCommune": "PIERREFITTE SUR SAULDRE" + "codePostal": "51110", + "codeCommune": "51101", + "libelleAcheminement": "CAUREL", + "nomCommune": "CAUREL" }, { - "codePostal": "64170", - "codeCommune": "64061", - "libelleAcheminement": "ARTIX", - "nomCommune": "ARTIX" + "codePostal": "36370", + "codeCommune": "36168", + "libelleAcheminement": "PRISSAC", + "nomCommune": "PRISSAC" }, { - "codePostal": "14260", - "codeCommune": "14096", - "libelleAcheminement": "BREMOY", - "nomCommune": "BREMOY" + "codePostal": "38480", + "codeCommune": "38343", + "libelleAcheminement": "ROMAGNIEU", + "nomCommune": "ROMAGNIEU" }, { - "codePostal": "20270", - "codeCommune": "2B075", - "libelleAcheminement": "CASEVECCHIE", - "nomCommune": "CASEVECCHIE" + "codePostal": "51190", + "codeCommune": "51251", + "libelleAcheminement": "FLAVIGNY", + "nomCommune": "FLAVIGNY" }, { - "codePostal": "41270", - "codeCommune": "41179", - "libelleAcheminement": "LE POISLAY", - "nomCommune": "LE POISLAY" + "codePostal": "51260", + "codeCommune": "51103", + "libelleAcheminement": "LA CELLE SOUS CHANTEMERLE", + "nomCommune": "LA CELLE SOUS CHANTEMERLE" }, { - "codePostal": "64660", - "codeCommune": "64064", - "libelleAcheminement": "ASASP ARROS", - "nomCommune": "ASASP ARROS" + "codePostal": "36800", + "codeCommune": "36172", + "libelleAcheminement": "RIVARENNES", + "nomCommune": "RIVARENNES" }, { - "codePostal": "14250", - "codeCommune": "14098", - "libelleAcheminement": "THUE ET MUE", - "nomCommune": "THUE ET MUE" + "codePostal": "38440", + "codeCommune": "38346", + "libelleAcheminement": "ROYAS", + "nomCommune": "ROYAS" }, { - "codePostal": "20212", - "codeCommune": "2B078", - "libelleAcheminement": "CASTELLARE DI MERCURIO", - "nomCommune": "CASTELLARE DI MERCURIO" + "codePostal": "51800", + "codeCommune": "51255", + "libelleAcheminement": "FONTAINE EN DORMOIS", + "nomCommune": "FONTAINE EN DORMOIS" }, { - "codePostal": "41400", - "codeCommune": "41180", - "libelleAcheminement": "PONTLEVOY", - "nomCommune": "PONTLEVOY" + "codePostal": "51150", + "codeCommune": "51117", + "libelleAcheminement": "CHAMPIGNEUL CHAMPAGNE", + "nomCommune": "CHAMPIGNEUL CHAMPAGNE" }, { - "codePostal": "64510", - "codeCommune": "64067", - "libelleAcheminement": "ASSAT", - "nomCommune": "ASSAT" + "codePostal": "36300", + "codeCommune": "36173", + "libelleAcheminement": "ROSNAY", + "nomCommune": "ROSNAY" }, { - "codePostal": "14160", - "codeCommune": "14110", - "libelleAcheminement": "BRUCOURT", - "nomCommune": "BRUCOURT" + "codePostal": "38300", + "codeCommune": "38348", + "libelleAcheminement": "RUY MONTCEAU", + "nomCommune": "RUY MONTCEAU" }, { - "codePostal": "20235", - "codeCommune": "2B079", - "libelleAcheminement": "CASTELLO DI ROSTINO", - "nomCommune": "CASTELLO DI ROSTINO" + "codePostal": "51160", + "codeCommune": "51266", + "libelleAcheminement": "GERMAINE", + "nomCommune": "GERMAINE" }, { - "codePostal": "41190", - "codeCommune": "41182", - "libelleAcheminement": "PRAY", - "nomCommune": "PRAY" + "codePostal": "51480", + "codeCommune": "51120", + "libelleAcheminement": "CHAMPLAT ET BOUJACOURT", + "nomCommune": "CHAMPLAT ET BOUJACOURT" }, { - "codePostal": "64190", - "codeCommune": "64075", - "libelleAcheminement": "AUDAUX", - "nomCommune": "AUDAUX" + "codePostal": "36120", + "codeCommune": "36180", + "libelleAcheminement": "ST AOUT", + "nomCommune": "ST AOUT" }, { - "codePostal": "14250", - "codeCommune": "14111", - "libelleAcheminement": "BUCEELS", - "nomCommune": "BUCEELS" + "codePostal": "38300", + "codeCommune": "38348", + "libelleAcheminement": "RUY MONTCEAU", + "nomCommune": "RUY MONTCEAU" }, { - "codePostal": "20236", - "codeCommune": "2B083", - "libelleAcheminement": "CASTIRLA", - "nomCommune": "CASTIRLA" + "codePostal": "51400", + "codeCommune": "51278", + "libelleAcheminement": "LES GRANDES LOGES", + "nomCommune": "LES GRANDES LOGES" }, { - "codePostal": "41230", - "codeCommune": "41195", - "libelleAcheminement": "ROUGEOU", - "nomCommune": "ROUGEOU" + "codePostal": "51330", + "codeCommune": "51130", + "libelleAcheminement": "CHARMONT", + "nomCommune": "CHARMONT" }, { - "codePostal": "64450", - "codeCommune": "64077", - "libelleAcheminement": "AUGA", - "nomCommune": "AUGA" + "codePostal": "36170", + "codeCommune": "36182", + "libelleAcheminement": "ST BENOIT DU SAULT", + "nomCommune": "ST BENOIT DU SAULT" }, { - "codePostal": "14190", - "codeCommune": "14116", - "libelleAcheminement": "LE BU SUR ROUVRES", - "nomCommune": "LE BU SUR ROUVRES" + "codePostal": "38190", + "codeCommune": "38350", + "libelleAcheminement": "STE AGNES", + "nomCommune": "STE AGNES" }, { - "codePostal": "20224", - "codeCommune": "2B095", - "libelleAcheminement": "CORSCIA", - "nomCommune": "CORSCIA" + "codePostal": "51390", + "codeCommune": "51282", + "libelleAcheminement": "GUEUX", + "nomCommune": "GUEUX" }, { - "codePostal": "41330", - "codeCommune": "41203", - "libelleAcheminement": "ST BOHAIRE", - "nomCommune": "ST BOHAIRE" + "codePostal": "51800", + "codeCommune": "51139", + "libelleAcheminement": "CHAUDEFONTAINE", + "nomCommune": "CHAUDEFONTAINE" }, { - "codePostal": "64330", - "codeCommune": "64084", - "libelleAcheminement": "AYDIE", - "nomCommune": "AYDIE" + "codePostal": "36160", + "codeCommune": "36208", + "libelleAcheminement": "STE SEVERE SUR INDRE", + "nomCommune": "STE SEVERE SUR INDRE" }, { - "codePostal": "14630", - "codeCommune": "14119", - "libelleAcheminement": "CAGNY", - "nomCommune": "CAGNY" + "codePostal": "38680", + "codeCommune": "38356", + "libelleAcheminement": "ST ANDRE EN ROYANS", + "nomCommune": "ST ANDRE EN ROYANS" }, { - "codePostal": "20212", - "codeCommune": "2B116", - "libelleAcheminement": "FOCICCHIA", - "nomCommune": "FOCICCHIA" + "codePostal": "51300", + "codeCommune": "51284", + "libelleAcheminement": "HAUSSIGNEMONT", + "nomCommune": "HAUSSIGNEMONT" }, { - "codePostal": "41350", - "codeCommune": "41204", - "libelleAcheminement": "ST CLAUDE DE DIRAY", - "nomCommune": "ST CLAUDE DE DIRAY" + "codePostal": "51130", + "codeCommune": "51154", + "libelleAcheminement": "CLAMANGES", + "nomCommune": "CLAMANGES" }, { - "codePostal": "64490", - "codeCommune": "64085", - "libelleAcheminement": "AYDIUS", - "nomCommune": "AYDIUS" + "codePostal": "36100", + "codeCommune": "36209", + "libelleAcheminement": "ST VALENTIN", + "nomCommune": "ST VALENTIN" }, { - "codePostal": "14490", - "codeCommune": "14121", - "libelleAcheminement": "CAHAGNOLLES", - "nomCommune": "CAHAGNOLLES" + "codePostal": "38160", + "codeCommune": "38359", + "libelleAcheminement": "ST ANTOINE L ABBAYE", + "nomCommune": "ST ANTOINE L ABBAYE" }, { - "codePostal": "20245", - "codeCommune": "2B121", - "libelleAcheminement": "GALERIA", - "nomCommune": "GALERIA" + "codePostal": "51320", + "codeCommune": "51285", + "libelleAcheminement": "HAUSSIMONT", + "nomCommune": "HAUSSIMONT" }, { - "codePostal": "41190", - "codeCommune": "41208", - "libelleAcheminement": "ST ETIENNE DES GUERETS", - "nomCommune": "ST ETIENNE DES GUERETS" + "codePostal": "51130", + "codeCommune": "51158", + "libelleAcheminement": "VAL DES MARAIS", + "nomCommune": "VAL DES MARAIS" }, { - "codePostal": "64240", - "codeCommune": "64086", - "libelleAcheminement": "AYHERRE", - "nomCommune": "AYHERRE" + "codePostal": "36100", + "codeCommune": "36215", + "libelleAcheminement": "SEGRY", + "nomCommune": "SEGRY" }, { - "codePostal": "14230", - "codeCommune": "14124", - "libelleAcheminement": "LA CAMBE", - "nomCommune": "LA CAMBE" + "codePostal": "38350", + "codeCommune": "38361", + "libelleAcheminement": "ST AREY", + "nomCommune": "ST AREY" }, { - "codePostal": "20240", - "codeCommune": "2B123", - "libelleAcheminement": "GHISONACCIA", - "nomCommune": "GHISONACCIA" + "codePostal": "51290", + "codeCommune": "51286", + "libelleAcheminement": "HAUTEVILLE", + "nomCommune": "HAUTEVILLE" }, { - "codePostal": "41320", - "codeCommune": "41222", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "51130", + "codeCommune": "51158", + "libelleAcheminement": "VAL DES MARAIS", + "nomCommune": "VAL DES MARAIS" }, { - "codePostal": "64300", - "codeCommune": "64088", - "libelleAcheminement": "BALANSUN", - "nomCommune": "BALANSUN" + "codePostal": "36180", + "codeCommune": "36216", + "libelleAcheminement": "SELLES SUR NAHON", + "nomCommune": "SELLES SUR NAHON" }, { - "codePostal": "14490", - "codeCommune": "14130", - "libelleAcheminement": "CAMPIGNY", - "nomCommune": "CAMPIGNY" + "codePostal": "38710", + "codeCommune": "38366", + "libelleAcheminement": "ST BAUDILLE ET PIPET", + "nomCommune": "ST BAUDILLE ET PIPET" }, { - "codePostal": "20240", - "codeCommune": "2B123", - "libelleAcheminement": "GHISONACCIA", - "nomCommune": "GHISONACCIA" + "codePostal": "51290", + "codeCommune": "51300", + "libelleAcheminement": "ISLE SUR MARNE", + "nomCommune": "ISLE SUR MARNE" }, { - "codePostal": "41100", - "codeCommune": "41226", - "libelleAcheminement": "ST OUEN", - "nomCommune": "ST OUEN" + "codePostal": "51260", + "codeCommune": "51162", + "libelleAcheminement": "CONFLANS SUR SEINE", + "nomCommune": "CONFLANS SUR SEINE" }, { - "codePostal": "64390", - "codeCommune": "64096", - "libelleAcheminement": "BARRAUTE CAMU", - "nomCommune": "BARRAUTE CAMU" + "codePostal": "36100", + "codeCommune": "36222", + "libelleAcheminement": "THIZAY", + "nomCommune": "THIZAY" }, { - "codePostal": "14460", - "codeCommune": "14167", - "libelleAcheminement": "COLOMBELLES", - "nomCommune": "COLOMBELLES" + "codePostal": "38140", + "codeCommune": "38368", + "libelleAcheminement": "ST BLAISE DU BUIS", + "nomCommune": "ST BLAISE DU BUIS" }, { - "codePostal": "20225", - "codeCommune": "2B138", - "libelleAcheminement": "LAVATOGGIO", - "nomCommune": "LAVATOGGIO" + "codePostal": "51150", + "codeCommune": "51303", + "libelleAcheminement": "JALONS", + "nomCommune": "JALONS" }, { - "codePostal": "41210", - "codeCommune": "41231", - "libelleAcheminement": "ST VIATRE", - "nomCommune": "ST VIATRE" + "codePostal": "51230", + "codeCommune": "51164", + "libelleAcheminement": "CONNANTRAY VAUREFROY", + "nomCommune": "CONNANTRAY VAUREFROY" }, { - "codePostal": "64350", - "codeCommune": "64098", - "libelleAcheminement": "BASSILLON VAUZE", - "nomCommune": "BASSILLON VAUZE" + "codePostal": "36700", + "codeCommune": "36225", + "libelleAcheminement": "LE TRANGER", + "nomCommune": "LE TRANGER" }, { - "codePostal": "14110", - "codeCommune": "14174", - "libelleAcheminement": "CONDE EN NORMANDIE", - "nomCommune": "CONDE EN NORMANDIE" + "codePostal": "38960", + "codeCommune": "38383", + "libelleAcheminement": "ST ETIENNE DE CROSSEY", + "nomCommune": "ST ETIENNE DE CROSSEY" }, { - "codePostal": "20252", - "codeCommune": "2B140", - "libelleAcheminement": "LENTO", - "nomCommune": "LENTO" + "codePostal": "51150", + "codeCommune": "51312", + "libelleAcheminement": "JUVIGNY", + "nomCommune": "JUVIGNY" }, { - "codePostal": "41300", - "codeCommune": "41232", - "libelleAcheminement": "SALBRIS", - "nomCommune": "SALBRIS" + "codePostal": "51210", + "codeCommune": "51170", + "libelleAcheminement": "CORFELIX", + "nomCommune": "CORFELIX" }, { - "codePostal": "64260", - "codeCommune": "64116", - "libelleAcheminement": "BESCAT", - "nomCommune": "BESCAT" + "codePostal": "36160", + "codeCommune": "36227", + "libelleAcheminement": "URCIERS", + "nomCommune": "URCIERS" }, { - "codePostal": "14110", - "codeCommune": "14174", - "libelleAcheminement": "CONDE EN NORMANDIE", - "nomCommune": "CONDE EN NORMANDIE" + "codePostal": "38790", + "codeCommune": "38389", + "libelleAcheminement": "ST GEORGES D ESPERANCHE", + "nomCommune": "ST GEORGES D ESPERANCHE" }, { - "codePostal": "20230", - "codeCommune": "2B143", - "libelleAcheminement": "LINGUIZZETTA", - "nomCommune": "LINGUIZZETTA" + "codePostal": "51290", + "codeCommune": "51316", + "libelleAcheminement": "LARZICOURT", + "nomCommune": "LARZICOURT" }, { - "codePostal": "41170", - "codeCommune": "41235", - "libelleAcheminement": "SARGE SUR BRAYE", - "nomCommune": "SARGE SUR BRAYE" + "codePostal": "51480", + "codeCommune": "51173", + "libelleAcheminement": "CORMOYEUX", + "nomCommune": "CORMOYEUX" }, { - "codePostal": "64200", - "codeCommune": "64122", - "libelleAcheminement": "BIARRITZ", - "nomCommune": "BIARRITZ" + "codePostal": "36150", + "codeCommune": "36230", + "libelleAcheminement": "VATAN", + "nomCommune": "VATAN" }, { - "codePostal": "14770", - "codeCommune": "14174", - "libelleAcheminement": "CONDE EN NORMANDIE", - "nomCommune": "CONDE EN NORMANDIE" + "codePostal": "38430", + "codeCommune": "38400", + "libelleAcheminement": "ST JEAN DE MOIRANS", + "nomCommune": "ST JEAN DE MOIRANS" }, { - "codePostal": "20290", - "codeCommune": "2B166", - "libelleAcheminement": "MONTE", - "nomCommune": "MONTE" + "codePostal": "51600", + "codeCommune": "51317", + "libelleAcheminement": "LAVAL SUR TOURBE", + "nomCommune": "LAVAL SUR TOURBE" }, { - "codePostal": "41700", - "codeCommune": "41237", - "libelleAcheminement": "SASSAY", - "nomCommune": "SASSAY" + "codePostal": "51240", + "codeCommune": "51179", + "libelleAcheminement": "COUPEVILLE", + "nomCommune": "COUPEVILLE" }, { - "codePostal": "64210", - "codeCommune": "64125", - "libelleAcheminement": "BIDART", - "nomCommune": "BIDART" + "codePostal": "36600", + "codeCommune": "36233", + "libelleAcheminement": "LA VERNELLE", + "nomCommune": "LA VERNELLE" }, { - "codePostal": "14100", - "codeCommune": "14179", - "libelleAcheminement": "CORDEBUGLE", - "nomCommune": "CORDEBUGLE" + "codePostal": "38134", + "codeCommune": "38405", + "libelleAcheminement": "ST JOSEPH DE RIVIERE", + "nomCommune": "ST JOSEPH DE RIVIERE" }, { - "codePostal": "20217", - "codeCommune": "2B178", - "libelleAcheminement": "NONZA", - "nomCommune": "NONZA" + "codePostal": "51170", + "codeCommune": "51321", + "libelleAcheminement": "LHERY", + "nomCommune": "LHERY" }, { - "codePostal": "41360", - "codeCommune": "41238", - "libelleAcheminement": "SAVIGNY SUR BRAYE", - "nomCommune": "SAVIGNY SUR BRAYE" + "codePostal": "51310", + "codeCommune": "51185", + "libelleAcheminement": "COURGIVAUX", + "nomCommune": "COURGIVAUX" }, { - "codePostal": "64400", - "codeCommune": "64126", - "libelleAcheminement": "BIDOS", - "nomCommune": "BIDOS" + "codePostal": "36600", + "codeCommune": "36235", + "libelleAcheminement": "VEUIL", + "nomCommune": "VEUIL" }, { - "codePostal": "14123", - "codeCommune": "14181", - "libelleAcheminement": "CORMELLES LE ROYAL", - "nomCommune": "CORMELLES LE ROYAL" + "codePostal": "38134", + "codeCommune": "38407", + "libelleAcheminement": "LA SURE EN CHARTREUSE", + "nomCommune": "LA SURE EN CHARTREUSE" }, { - "codePostal": "20226", - "codeCommune": "2B180", - "libelleAcheminement": "NOVELLA", - "nomCommune": "NOVELLA" + "codePostal": "51400", + "codeCommune": "51326", + "libelleAcheminement": "LIVRY LOUVERCY", + "nomCommune": "LIVRY LOUVERCY" }, { - "codePostal": "41500", - "codeCommune": "41245", - "libelleAcheminement": "SERIS", - "nomCommune": "SERIS" + "codePostal": "51270", + "codeCommune": "51186", + "libelleAcheminement": "COURJEONNET", + "nomCommune": "COURJEONNET" }, { - "codePostal": "64140", - "codeCommune": "64129", - "libelleAcheminement": "BILLERE", - "nomCommune": "BILLERE" + "codePostal": "36500", + "codeCommune": "36243", + "libelleAcheminement": "VILLEGOUIN", + "nomCommune": "VILLEGOUIN" }, { - "codePostal": "14400", - "codeCommune": "14184", - "libelleAcheminement": "COTTUN", - "nomCommune": "COTTUN" + "codePostal": "38650", + "codeCommune": "38429", + "libelleAcheminement": "ST MICHEL LES PORTES", + "nomCommune": "ST MICHEL LES PORTES" }, { - "codePostal": "20217", - "codeCommune": "2B183", - "libelleAcheminement": "OGLIASTRO", - "nomCommune": "OGLIASTRO" + "codePostal": "51220", + "codeCommune": "51329", + "libelleAcheminement": "LOIVRE", + "nomCommune": "LOIVRE" }, { - "codePostal": "41120", - "codeCommune": "41246", - "libelleAcheminement": "SEUR", - "nomCommune": "SEUR" + "codePostal": "51170", + "codeCommune": "51187", + "libelleAcheminement": "COURLANDON", + "nomCommune": "COURLANDON" }, { - "codePostal": "64700", - "codeCommune": "64130", - "libelleAcheminement": "BIRIATOU", - "nomCommune": "BIRIATOU" + "codePostal": "37340", + "codeCommune": "37002", + "libelleAcheminement": "AMBILLOU", + "nomCommune": "AMBILLOU" }, { - "codePostal": "14290", - "codeCommune": "14194", - "libelleAcheminement": "COURTONNE LES DEUX EGLISES", - "nomCommune": "COURTONNE LES DEUX EGLISES" + "codePostal": "38490", + "codeCommune": "38434", + "libelleAcheminement": "ST ONDRAS", + "nomCommune": "ST ONDRAS" }, { - "codePostal": "20236", - "codeCommune": "2B193", - "libelleAcheminement": "OMESSA", - "nomCommune": "OMESSA" + "codePostal": "51800", + "codeCommune": "51368", + "libelleAcheminement": "MINAUCOURT LE MESNIL LES HURLUS", + "nomCommune": "MINAUCOURT LE MESNIL LES HURLUS" }, { - "codePostal": "41230", - "codeCommune": "41247", - "libelleAcheminement": "SOINGS EN SOLOGNE", - "nomCommune": "SOINGS EN SOLOGNE" + "codePostal": "51170", + "codeCommune": "51198", + "libelleAcheminement": "CRUGNY", + "nomCommune": "CRUGNY" }, { - "codePostal": "64800", - "codeCommune": "64137", - "libelleAcheminement": "BORDERES", - "nomCommune": "BORDERES" + "codePostal": "37120", + "codeCommune": "37007", + "libelleAcheminement": "ASSAY", + "nomCommune": "ASSAY" }, { - "codePostal": "14440", - "codeCommune": "14197", - "libelleAcheminement": "CRESSERONS", - "nomCommune": "CRESSERONS" + "codePostal": "38760", + "codeCommune": "38436", + "libelleAcheminement": "ST PAUL DE VARCES", + "nomCommune": "ST PAUL DE VARCES" }, { - "codePostal": "20270", - "codeCommune": "2B201", - "libelleAcheminement": "PANCHERACCIA", - "nomCommune": "PANCHERACCIA" + "codePostal": "51470", + "codeCommune": "51372", + "libelleAcheminement": "MONCETZ LONGEVAS", + "nomCommune": "MONCETZ LONGEVAS" }, { - "codePostal": "41170", - "codeCommune": "41248", - "libelleAcheminement": "COUETRON AU PERCHE", - "nomCommune": "COUETRON AU PERCHE" + "codePostal": "51530", + "codeCommune": "51200", + "libelleAcheminement": "CUIS", + "nomCommune": "CUIS" }, { - "codePostal": "64330", - "codeCommune": "64141", - "libelleAcheminement": "BOUEILH BOUEILHO LASQUE", - "nomCommune": "BOUEILH BOUEILHO LASQUE" + "codePostal": "37190", + "codeCommune": "37014", + "libelleAcheminement": "AZAY LE RIDEAU", + "nomCommune": "AZAY LE RIDEAU" }, { - "codePostal": "14400", - "codeCommune": "14209", - "libelleAcheminement": "CROUAY", - "nomCommune": "CROUAY" + "codePostal": "38870", + "codeCommune": "38457", + "libelleAcheminement": "ST SIMEON DE BRESSIEUX", + "nomCommune": "ST SIMEON DE BRESSIEUX" }, { - "codePostal": "20213", - "codeCommune": "2B207", - "libelleAcheminement": "PENTA DI CASINCA", - "nomCommune": "PENTA DI CASINCA" + "codePostal": "51170", + "codeCommune": "51382", + "libelleAcheminement": "MONT SUR COURVILLE", + "nomCommune": "MONT SUR COURVILLE" }, { - "codePostal": "41300", - "codeCommune": "41256", - "libelleAcheminement": "THEILLAY", - "nomCommune": "THEILLAY" + "codePostal": "51480", + "codeCommune": "51204", + "libelleAcheminement": "DAMERY", + "nomCommune": "DAMERY" }, { - "codePostal": "64120", - "codeCommune": "64150", - "libelleAcheminement": "BUNUS", - "nomCommune": "BUNUS" + "codePostal": "37350", + "codeCommune": "37019", + "libelleAcheminement": "BARROU", + "nomCommune": "BARROU" }, { - "codePostal": "14840", - "codeCommune": "14215", - "libelleAcheminement": "CUVERVILLE", - "nomCommune": "CUVERVILLE" + "codePostal": "38119", + "codeCommune": "38462", + "libelleAcheminement": "ST THEOFFREY", + "nomCommune": "ST THEOFFREY" }, { - "codePostal": "20272", - "codeCommune": "2B213", - "libelleAcheminement": "PIANELLO", - "nomCommune": "PIANELLO" + "codePostal": "51210", + "codeCommune": "51386", + "libelleAcheminement": "MORSAINS", + "nomCommune": "MORSAINS" }, { - "codePostal": "41220", - "codeCommune": "41260", - "libelleAcheminement": "THOURY", - "nomCommune": "THOURY" + "codePostal": "51400", + "codeCommune": "51205", + "libelleAcheminement": "DAMPIERRE AU TEMPLE", + "nomCommune": "DAMPIERRE AU TEMPLE" }, { - "codePostal": "64160", - "codeCommune": "64152", - "libelleAcheminement": "BUROS", - "nomCommune": "BUROS" + "codePostal": "37600", + "codeCommune": "37020", + "libelleAcheminement": "BEAULIEU LES LOCHES", + "nomCommune": "BEAULIEU LES LOCHES" }, { - "codePostal": "14220", - "codeCommune": "14226", - "libelleAcheminement": "DONNAY", - "nomCommune": "DONNAY" + "codePostal": "38160", + "codeCommune": "38463", + "libelleAcheminement": "ST VERAND", + "nomCommune": "ST VERAND" }, { - "codePostal": "20229", - "codeCommune": "2B222", - "libelleAcheminement": "PIE D OREZZA", - "nomCommune": "PIE D OREZZA" + "codePostal": "51160", + "codeCommune": "51392", + "libelleAcheminement": "MUTIGNY", + "nomCommune": "MUTIGNY" }, { - "codePostal": "41230", - "codeCommune": "41271", - "libelleAcheminement": "VERNOU EN SOLOGNE", - "nomCommune": "VERNOU EN SOLOGNE" + "codePostal": "51300", + "codeCommune": "51215", + "libelleAcheminement": "DOMPREMY", + "nomCommune": "DOMPREMY" }, { - "codePostal": "64250", - "codeCommune": "64160", - "libelleAcheminement": "CAMBO LES BAINS", - "nomCommune": "CAMBO LES BAINS" + "codePostal": "37420", + "codeCommune": "37022", + "libelleAcheminement": "BEAUMONT EN VERON", + "nomCommune": "BEAUMONT EN VERON" }, { - "codePostal": "14600", - "codeCommune": "14243", - "libelleAcheminement": "EQUEMAUVILLE", - "nomCommune": "EQUEMAUVILLE" + "codePostal": "38510", + "codeCommune": "38465", + "libelleAcheminement": "ST VICTOR DE MORESTEL", + "nomCommune": "ST VICTOR DE MORESTEL" }, { - "codePostal": "20218", - "codeCommune": "2B223", - "libelleAcheminement": "PIETRALBA", - "nomCommune": "PIETRALBA" + "codePostal": "51480", + "codeCommune": "51393", + "libelleAcheminement": "NANTEUIL LA FORET", + "nomCommune": "NANTEUIL LA FORET" }, { - "codePostal": "41160", - "codeCommune": "41275", - "libelleAcheminement": "LA VILLE AUX CLERCS", - "nomCommune": "LA VILLE AUX CLERCS" + "codePostal": "51340", + "codeCommune": "51218", + "libelleAcheminement": "VAL DE VIERE", + "nomCommune": "VAL DE VIERE" }, { - "codePostal": "64270", - "codeCommune": "64168", - "libelleAcheminement": "CARRESSE CASSABER", - "nomCommune": "CARRESSE CASSABER" + "codePostal": "37460", + "codeCommune": "37023", + "libelleAcheminement": "BEAUMONT VILLAGE", + "nomCommune": "BEAUMONT VILLAGE" }, { - "codePostal": "14220", - "codeCommune": "14248", - "libelleAcheminement": "ESPINS", - "nomCommune": "ESPINS" + "codePostal": "38970", + "codeCommune": "38469", + "libelleAcheminement": "LA SALETTE FALLAVAUX", + "nomCommune": "LA SALETTE FALLAVAUX" }, { - "codePostal": "20250", - "codeCommune": "2B238", - "libelleAcheminement": "POGGIO DI VENACO", - "nomCommune": "POGGIO DI VENACO" + "codePostal": "51480", + "codeCommune": "51398", + "libelleAcheminement": "LA NEUVILLE AUX LARRIS", + "nomCommune": "LA NEUVILLE AUX LARRIS" }, { - "codePostal": "41270", - "codeCommune": "41277", - "libelleAcheminement": "VILLEBOUT", - "nomCommune": "VILLEBOUT" + "codePostal": "51300", + "codeCommune": "51224", + "libelleAcheminement": "ECRIENNES", + "nomCommune": "ECRIENNES" }, { - "codePostal": "64460", - "codeCommune": "64174", - "libelleAcheminement": "CASTERA LOUBIX", - "nomCommune": "CASTERA LOUBIX" + "codePostal": "37120", + "codeCommune": "37034", + "libelleAcheminement": "BRASLOU", + "nomCommune": "BRASLOU" }, { - "codePostal": "14210", - "codeCommune": "14257", - "libelleAcheminement": "EVRECY", - "nomCommune": "EVRECY" + "codePostal": "38700", + "codeCommune": "38471", + "libelleAcheminement": "LE SAPPEY EN CHARTREUSE", + "nomCommune": "LE SAPPEY EN CHARTREUSE" }, { - "codePostal": "20237", - "codeCommune": "2B241", - "libelleAcheminement": "POGGIO MARINACCIO", - "nomCommune": "POGGIO MARINACCIO" + "codePostal": "51800", + "codeCommune": "51399", + "libelleAcheminement": "LA NEUVILLE AU PONT", + "nomCommune": "LA NEUVILLE AU PONT" }, { - "codePostal": "41310", - "codeCommune": "41278", - "libelleAcheminement": "VILLECHAUVE", - "nomCommune": "VILLECHAUVE" + "codePostal": "51240", + "codeCommune": "51227", + "libelleAcheminement": "ECURY SUR COOLE", + "nomCommune": "ECURY SUR COOLE" }, { - "codePostal": "64260", - "codeCommune": "64175", - "libelleAcheminement": "CASTET", - "nomCommune": "CASTET" + "codePostal": "37330", + "codeCommune": "37037", + "libelleAcheminement": "BRECHES", + "nomCommune": "BRECHES" }, { - "codePostal": "14320", - "codeCommune": "14266", - "libelleAcheminement": "FEUGUEROLLES BULLY", - "nomCommune": "FEUGUEROLLES BULLY" + "codePostal": "38440", + "codeCommune": "38476", + "libelleAcheminement": "SAVAS MEPIN", + "nomCommune": "SAVAS MEPIN" }, { - "codePostal": "20246", - "codeCommune": "2B257", - "libelleAcheminement": "RAPALE", - "nomCommune": "RAPALE" + "codePostal": "51330", + "codeCommune": "51404", + "libelleAcheminement": "NOIRLIEU", + "nomCommune": "NOIRLIEU" }, { - "codePostal": "41200", - "codeCommune": "41280", - "libelleAcheminement": "VILLEFRANCHE SUR CHER", - "nomCommune": "VILLEFRANCHE SUR CHER" + "codePostal": "51490", + "codeCommune": "51232", + "libelleAcheminement": "EPOYE", + "nomCommune": "EPOYE" }, { - "codePostal": "64170", - "codeCommune": "64184", - "libelleAcheminement": "CESCAU", - "nomCommune": "CESCAU" + "codePostal": "37130", + "codeCommune": "37038", + "libelleAcheminement": "BREHEMONT", + "nomCommune": "BREHEMONT" }, { - "codePostal": "14290", - "codeCommune": "14273", - "libelleAcheminement": "LA FOLLETIERE ABENON", - "nomCommune": "LA FOLLETIERE ABENON" + "codePostal": "38260", + "codeCommune": "38479", + "libelleAcheminement": "PORTE DES BONNEVAUX", + "nomCommune": "PORTE DES BONNEVAUX" }, { - "codePostal": "20250", - "codeCommune": "2B260", - "libelleAcheminement": "RIVENTOSA", - "nomCommune": "RIVENTOSA" + "codePostal": "51240", + "codeCommune": "51409", + "libelleAcheminement": "NUISEMENT SUR COOLE", + "nomCommune": "NUISEMENT SUR COOLE" }, { - "codePostal": "41000", - "codeCommune": "41288", - "libelleAcheminement": "VILLERBON", - "nomCommune": "VILLERBON" + "codePostal": "51310", + "codeCommune": "51236", + "libelleAcheminement": "LES ESSARTS LE VICOMTE", + "nomCommune": "LES ESSARTS LE VICOMTE" }, { - "codePostal": "64800", - "codeCommune": "64191", - "libelleAcheminement": "COARRAZE", - "nomCommune": "COARRAZE" + "codePostal": "37530", + "codeCommune": "37060", + "libelleAcheminement": "CHARGE", + "nomCommune": "CHARGE" }, { - "codePostal": "14710", - "codeCommune": "14281", - "libelleAcheminement": "FORMIGNY LA BATAILLE", - "nomCommune": "FORMIGNY LA BATAILLE" + "codePostal": "38200", + "codeCommune": "38484", + "libelleAcheminement": "SERPAIZE", + "nomCommune": "SERPAIZE" }, { - "codePostal": "20247", - "codeCommune": "2B261", - "libelleAcheminement": "ROGLIANO", - "nomCommune": "ROGLIANO" + "codePostal": "51370", + "codeCommune": "51418", + "libelleAcheminement": "ORMES", + "nomCommune": "ORMES" }, { - "codePostal": "41100", - "codeCommune": "41290", - "libelleAcheminement": "VILLEROMAIN", - "nomCommune": "VILLEROMAIN" + "codePostal": "51130", + "codeCommune": "51239", + "libelleAcheminement": "ETRECHY", + "nomCommune": "ETRECHY" }, { - "codePostal": "64350", - "codeCommune": "64193", - "libelleAcheminement": "CORBERE ABERES", - "nomCommune": "CORBERE ABERES" + "codePostal": "37310", + "codeCommune": "37075", + "libelleAcheminement": "CIGOGNE", + "nomCommune": "CIGOGNE" }, { - "codePostal": "14710", - "codeCommune": "14281", - "libelleAcheminement": "FORMIGNY LA BATAILLE", - "nomCommune": "FORMIGNY LA BATAILLE" + "codePostal": "38180", + "codeCommune": "38486", + "libelleAcheminement": "SEYSSINS", + "nomCommune": "SEYSSINS" }, { - "codePostal": "20244", - "codeCommune": "2B264", - "libelleAcheminement": "RUSIO", - "nomCommune": "RUSIO" + "codePostal": "51390", + "codeCommune": "51422", + "libelleAcheminement": "PARGNY LES REIMS", + "nomCommune": "PARGNY LES REIMS" }, { - "codePostal": "42460", - "codeCommune": "42007", - "libelleAcheminement": "ARCINGES", - "nomCommune": "ARCINGES" + "codePostal": "51510", + "codeCommune": "51242", + "libelleAcheminement": "FAGNIERES", + "nomCommune": "FAGNIERES" }, { - "codePostal": "64410", - "codeCommune": "64195", - "libelleAcheminement": "COUBLUCQ", - "nomCommune": "COUBLUCQ" + "codePostal": "37500", + "codeCommune": "37076", + "libelleAcheminement": "CINAIS", + "nomCommune": "CINAIS" }, { - "codePostal": "14710", - "codeCommune": "14281", - "libelleAcheminement": "FORMIGNY LA BATAILLE", - "nomCommune": "FORMIGNY LA BATAILLE" + "codePostal": "38650", + "codeCommune": "38492", + "libelleAcheminement": "SINARD", + "nomCommune": "SINARD" }, { - "codePostal": "20215", - "codeCommune": "2B280", - "libelleAcheminement": "SILVARECCIO", - "nomCommune": "SILVARECCIO" + "codePostal": "51800", + "codeCommune": "51424", + "libelleAcheminement": "PASSAVANT EN ARGONNE", + "nomCommune": "PASSAVANT EN ARGONNE" }, { - "codePostal": "42670", - "codeCommune": "42014", - "libelleAcheminement": "BELLEROCHE", - "nomCommune": "BELLEROCHE" + "codePostal": "51230", + "codeCommune": "51243", + "libelleAcheminement": "FAUX FRESNAY", + "nomCommune": "FAUX FRESNAY" }, { - "codePostal": "64190", - "codeCommune": "64201", - "libelleAcheminement": "DOGNEN", - "nomCommune": "DOGNEN" + "codePostal": "37130", + "codeCommune": "37077", + "libelleAcheminement": "CINQ MARS LA PILE", + "nomCommune": "CINQ MARS LA PILE" }, { - "codePostal": "14700", - "codeCommune": "14284", - "libelleAcheminement": "FOURNEAUX LE VAL", - "nomCommune": "FOURNEAUX LE VAL" + "codePostal": "38300", + "codeCommune": "38498", + "libelleAcheminement": "SUCCIEU", + "nomCommune": "SUCCIEU" }, { - "codePostal": "20213", - "codeCommune": "2B286", - "libelleAcheminement": "SORBO OCAGNANO", - "nomCommune": "SORBO OCAGNANO" + "codePostal": "51120", + "codeCommune": "51426", + "libelleAcheminement": "PEAS", + "nomCommune": "PEAS" }, { - "codePostal": "42130", - "codeCommune": "42019", - "libelleAcheminement": "BOEN SUR LIGNON", - "nomCommune": "BOEN SUR LIGNON" + "codePostal": "51320", + "codeCommune": "51244", + "libelleAcheminement": "FAUX VESIGNEUL", + "nomCommune": "FAUX VESIGNEUL" }, { - "codePostal": "64390", - "codeCommune": "64215", - "libelleAcheminement": "ESPIUTE", - "nomCommune": "ESPIUTE" + "codePostal": "37340", + "codeCommune": "37082", + "libelleAcheminement": "CONTINVOIR", + "nomCommune": "CONTINVOIR" }, { - "codePostal": "14700", - "codeCommune": "14289", - "libelleAcheminement": "FRESNE LA MERE", - "nomCommune": "FRESNE LA MERE" + "codePostal": "38570", + "codeCommune": "38504", + "libelleAcheminement": "THEYS", + "nomCommune": "THEYS" }, { - "codePostal": "20246", - "codeCommune": "2B301", - "libelleAcheminement": "SAN GAVINO DI TENDA", - "nomCommune": "SAN GAVINO DI TENDA" + "codePostal": "51300", + "codeCommune": "51433", + "libelleAcheminement": "PLICHANCOURT", + "nomCommune": "PLICHANCOURT" }, { - "codePostal": "42720", - "codeCommune": "42026", - "libelleAcheminement": "BRIENNON", - "nomCommune": "BRIENNON" + "codePostal": "51170", + "codeCommune": "51245", + "libelleAcheminement": "FAVEROLLES ET COEMY", + "nomCommune": "FAVEROLLES ET COEMY" }, { - "codePostal": "64410", - "codeCommune": "64234", - "libelleAcheminement": "GAROS", - "nomCommune": "GAROS" + "codePostal": "37330", + "codeCommune": "37084", + "libelleAcheminement": "COUESMES", + "nomCommune": "COUESMES" }, { - "codePostal": "14680", - "codeCommune": "14290", - "libelleAcheminement": "FRESNEY LE PUCEUX", - "nomCommune": "FRESNEY LE PUCEUX" + "codePostal": "38230", + "codeCommune": "38507", + "libelleAcheminement": "TIGNIEU JAMEYZIEU", + "nomCommune": "TIGNIEU JAMEYZIEU" }, { - "codePostal": "20200", - "codeCommune": "2B305", - "libelleAcheminement": "SAN MARTINO DI LOTA", - "nomCommune": "SAN MARTINO DI LOTA" + "codePostal": "51240", + "codeCommune": "51436", + "libelleAcheminement": "POGNY", + "nomCommune": "POGNY" }, { - "codePostal": "42510", - "codeCommune": "42029", - "libelleAcheminement": "BUSSIERES", - "nomCommune": "BUSSIERES" + "codePostal": "51120", + "codeCommune": "51254", + "libelleAcheminement": "FONTAINE DENIS NUISY", + "nomCommune": "FONTAINE DENIS NUISY" }, { - "codePostal": "64120", - "codeCommune": "64235", - "libelleAcheminement": "GARRIS", - "nomCommune": "GARRIS" + "codePostal": "37310", + "codeCommune": "37085", + "libelleAcheminement": "COURCAY", + "nomCommune": "COURCAY" }, { - "codePostal": "14600", - "codeCommune": "14299", - "libelleAcheminement": "GENNEVILLE", - "nomCommune": "GENNEVILLE" + "codePostal": "38700", + "codeCommune": "38516", + "libelleAcheminement": "LA TRONCHE", + "nomCommune": "LA TRONCHE" }, { - "codePostal": "20230", - "codeCommune": "2B307", - "libelleAcheminement": "SANTA LUCIA DI MORIANI", - "nomCommune": "SANTA LUCIA DI MORIANI" + "codePostal": "51480", + "codeCommune": "51457", + "libelleAcheminement": "REUIL", + "nomCommune": "REUIL" }, { - "codePostal": "42240", - "codeCommune": "42031", - "libelleAcheminement": "CALOIRE", - "nomCommune": "CALOIRE" + "codePostal": "51240", + "codeCommune": "51260", + "libelleAcheminement": "LE FRESNE", + "nomCommune": "LE FRESNE" }, { - "codePostal": "64400", - "codeCommune": "64241", - "libelleAcheminement": "GERONCE", - "nomCommune": "GERONCE" + "codePostal": "37220", + "codeCommune": "37090", + "libelleAcheminement": "CRISSAY SUR MANSE", + "nomCommune": "CRISSAY SUR MANSE" }, { - "codePostal": "14600", - "codeCommune": "14304", - "libelleAcheminement": "GONNEVILLE SUR HONFLEUR", - "nomCommune": "GONNEVILLE SUR HONFLEUR" + "codePostal": "38740", + "codeCommune": "38522", + "libelleAcheminement": "VALJOUFFREY", + "nomCommune": "VALJOUFFREY" }, { - "codePostal": "20200", - "codeCommune": "2B309", - "libelleAcheminement": "SANTA MARIA DI LOTA", - "nomCommune": "SANTA MARIA DI LOTA" + "codePostal": "51500", + "codeCommune": "51461", + "libelleAcheminement": "RILLY LA MONTAGNE", + "nomCommune": "RILLY LA MONTAGNE" }, { - "codePostal": "42320", - "codeCommune": "42032", - "libelleAcheminement": "CELLIEU", - "nomCommune": "CELLIEU" + "codePostal": "51120", + "codeCommune": "51265", + "libelleAcheminement": "GAYE", + "nomCommune": "GAYE" }, { - "codePostal": "64400", - "codeCommune": "64244", - "libelleAcheminement": "GEUS D OLORON", - "nomCommune": "GEUS D OLORON" + "codePostal": "37310", + "codeCommune": "37097", + "libelleAcheminement": "DOLUS LE SEC", + "nomCommune": "DOLUS LE SEC" }, { - "codePostal": "14880", - "codeCommune": "14325", - "libelleAcheminement": "HERMANVILLE SUR MER", - "nomCommune": "HERMANVILLE SUR MER" + "codePostal": "38890", + "codeCommune": "38525", + "libelleAcheminement": "VASSELIN", + "nomCommune": "VASSELIN" }, { - "codePostal": "20230", - "codeCommune": "2B319", - "libelleAcheminement": "TALASANI", - "nomCommune": "TALASANI" + "codePostal": "51300", + "codeCommune": "51463", + "libelleAcheminement": "LES RIVIERES HENRUEL", + "nomCommune": "LES RIVIERES HENRUEL" }, { - "codePostal": "42130", - "codeCommune": "42035", - "libelleAcheminement": "CEZAY", - "nomCommune": "CEZAY" + "codePostal": "51290", + "codeCommune": "51277", + "libelleAcheminement": "STE MARIE DU LAC NUISEMENT", + "nomCommune": "STE MARIE DU LAC NUISEMENT" }, { - "codePostal": "64420", - "codeCommune": "64246", - "libelleAcheminement": "GOMER", - "nomCommune": "GOMER" + "codePostal": "37350", + "codeCommune": "37113", + "libelleAcheminement": "LE GRAND PRESSIGNY", + "nomCommune": "LE GRAND PRESSIGNY" }, { - "codePostal": "14850", - "codeCommune": "14328", - "libelleAcheminement": "HEROUVILLETTE", - "nomCommune": "HEROUVILLETTE" + "codePostal": "38470", + "codeCommune": "38526", + "libelleAcheminement": "VATILIEU", + "nomCommune": "VATILIEU" }, { - "codePostal": "20250", - "codeCommune": "2B329", - "libelleAcheminement": "TRALONCA", - "nomCommune": "TRALONCA" + "codePostal": "51170", + "codeCommune": "51466", + "libelleAcheminement": "ROMIGNY", + "nomCommune": "ROMIGNY" }, { - "codePostal": "42800", - "codeCommune": "42053", - "libelleAcheminement": "CHATEAUNEUF", - "nomCommune": "CHATEAUNEUF" + "codePostal": "51300", + "codeCommune": "51288", + "libelleAcheminement": "HEILTZ LE HUTIER", + "nomCommune": "HEILTZ LE HUTIER" }, { - "codePostal": "64520", - "codeCommune": "64250", - "libelleAcheminement": "GUICHE", - "nomCommune": "GUICHE" + "codePostal": "37350", + "codeCommune": "37114", + "libelleAcheminement": "LA GUERCHE", + "nomCommune": "LA GUERCHE" }, { - "codePostal": "14430", - "codeCommune": "14335", - "libelleAcheminement": "HOTOT EN AUGE", - "nomCommune": "HOTOT EN AUGE" + "codePostal": "38114", + "codeCommune": "38527", + "libelleAcheminement": "VAUJANY", + "nomCommune": "VAUJANY" }, { - "codePostal": "20218", - "codeCommune": "2B332", - "libelleAcheminement": "URTACA", - "nomCommune": "URTACA" + "codePostal": "51300", + "codeCommune": "51472", + "libelleAcheminement": "ST AMAND SUR FION", + "nomCommune": "ST AMAND SUR FION" }, { - "codePostal": "42410", - "codeCommune": "42064", - "libelleAcheminement": "CHUYER", - "nomCommune": "CHUYER" + "codePostal": "51340", + "codeCommune": "51289", + "libelleAcheminement": "HEILTZ LE MAURUPT", + "nomCommune": "HEILTZ LE MAURUPT" }, { - "codePostal": "64400", - "codeCommune": "64252", - "libelleAcheminement": "GURMENCON", - "nomCommune": "GURMENCON" + "codePostal": "37340", + "codeCommune": "37117", + "libelleAcheminement": "HOMMES", + "nomCommune": "HOMMES" }, { - "codePostal": "14340", - "codeCommune": "14337", - "libelleAcheminement": "LA HOUBLONNIERE", - "nomCommune": "LA HOUBLONNIERE" + "codePostal": "38620", + "codeCommune": "38531", + "libelleAcheminement": "VELANNE", + "nomCommune": "VELANNE" }, { - "codePostal": "20221", - "codeCommune": "2B335", - "libelleAcheminement": "VALLE DI CAMPOLORO", - "nomCommune": "VALLE DI CAMPOLORO" + "codePostal": "52100", + "codeCommune": "51478", + "libelleAcheminement": "ST EULIEN", + "nomCommune": "ST EULIEN" }, { - "codePostal": "42110", - "codeCommune": "42065", - "libelleAcheminement": "CIVENS", - "nomCommune": "CIVENS" + "codePostal": "51220", + "codeCommune": "51291", + "libelleAcheminement": "HERMONVILLE", + "nomCommune": "HERMONVILLE" }, { - "codePostal": "64190", - "codeCommune": "64253", - "libelleAcheminement": "GURS", - "nomCommune": "GURS" + "codePostal": "37120", + "codeCommune": "37125", + "libelleAcheminement": "LEMERE", + "nomCommune": "LEMERE" }, { - "codePostal": "14230", - "codeCommune": "14342", - "libelleAcheminement": "ISIGNY SUR MER", - "nomCommune": "ISIGNY SUR MER" + "codePostal": "38460", + "codeCommune": "38542", + "libelleAcheminement": "VEYSSILIEU", + "nomCommune": "VEYSSILIEU" }, { - "codePostal": "20240", - "codeCommune": "2B342", - "libelleAcheminement": "VENTISERI", - "nomCommune": "VENTISERI" + "codePostal": "51260", + "codeCommune": "51492", + "libelleAcheminement": "ST JUST SAUVAGE", + "nomCommune": "ST JUST SAUVAGE" }, { - "codePostal": "42840", - "codeCommune": "42068", - "libelleAcheminement": "COMBRE", - "nomCommune": "COMBRE" + "codePostal": "51210", + "codeCommune": "51304", + "libelleAcheminement": "JANVILLIERS", + "nomCommune": "JANVILLIERS" }, { - "codePostal": "64370", - "codeCommune": "64254", - "libelleAcheminement": "HAGETAUBIN", - "nomCommune": "HAGETAUBIN" + "codePostal": "37460", + "codeCommune": "37127", + "libelleAcheminement": "LE LIEGE", + "nomCommune": "LE LIEGE" }, { - "codePostal": "14380", - "codeCommune": "14352", - "libelleAcheminement": "LANDELLES ET COUPIGNY", - "nomCommune": "LANDELLES ET COUPIGNY" + "codePostal": "38450", + "codeCommune": "38545", + "libelleAcheminement": "VIF", + "nomCommune": "VIF" }, { - "codePostal": "20279", - "codeCommune": "2B352", - "libelleAcheminement": "VILLE DI PARASO", - "nomCommune": "VILLE DI PARASO" + "codePostal": "51300", + "codeCommune": "51496", + "libelleAcheminement": "ST LUMIER EN CHAMPAGNE", + "nomCommune": "ST LUMIER EN CHAMPAGNE" }, { - "codePostal": "42460", - "codeCommune": "42074", - "libelleAcheminement": "COUTOUVRE", - "nomCommune": "COUTOUVRE" + "codePostal": "51700", + "codeCommune": "51309", + "libelleAcheminement": "JONQUERY", + "nomCommune": "JONQUERY" }, { - "codePostal": "64240", - "codeCommune": "64256", - "libelleAcheminement": "HASPARREN", - "nomCommune": "HASPARREN" + "codePostal": "37500", + "codeCommune": "37129", + "libelleAcheminement": "LIGRE", + "nomCommune": "LIGRE" }, { - "codePostal": "14830", - "codeCommune": "14354", - "libelleAcheminement": "LANGRUNE SUR MER", - "nomCommune": "LANGRUNE SUR MER" + "codePostal": "38520", + "codeCommune": "38551", + "libelleAcheminement": "VILLARD REYMOND", + "nomCommune": "VILLARD REYMOND" }, { - "codePostal": "20200", - "codeCommune": "2B353", - "libelleAcheminement": "VILLE DI PIETRABUGNO", - "nomCommune": "VILLE DI PIETRABUGNO" + "codePostal": "51520", + "codeCommune": "51504", + "libelleAcheminement": "ST MARTIN SUR LE PRE", + "nomCommune": "ST MARTIN SUR LE PRE" }, { - "codePostal": "42260", - "codeCommune": "42076", - "libelleAcheminement": "CREMEAUX", - "nomCommune": "CREMEAUX" + "codePostal": "51120", + "codeCommune": "51313", + "libelleAcheminement": "LACHY", + "nomCommune": "LACHY" }, { - "codePostal": "64700", - "codeCommune": "64260", - "libelleAcheminement": "HENDAYE", - "nomCommune": "HENDAYE" + "codePostal": "37240", + "codeCommune": "37136", + "libelleAcheminement": "LE LOUROUX", + "nomCommune": "LE LOUROUX" }, { - "codePostal": "14340", - "codeCommune": "14358", - "libelleAcheminement": "LEAUPARTIE", - "nomCommune": "LEAUPARTIE" + "codePostal": "38119", + "codeCommune": "38552", + "libelleAcheminement": "VILLARD ST CHRISTOPHE", + "nomCommune": "VILLARD ST CHRISTOPHE" }, { - "codePostal": "30500", - "codeCommune": "30008", - "libelleAcheminement": "ALLEGRE LES FUMADES", - "nomCommune": "ALLEGRE LES FUMADES" + "codePostal": "51290", + "codeCommune": "51513", + "libelleAcheminement": "ST REMY EN BOUZEMONT ST GENEST", + "nomCommune": "ST REMY EN BOUZEMONT ST GENEST ISSON" }, { - "codePostal": "42460", - "codeCommune": "42079", - "libelleAcheminement": "CUINZIER", - "nomCommune": "CUINZIER" + "codePostal": "51230", + "codeCommune": "51323", + "libelleAcheminement": "LINTHELLES", + "nomCommune": "LINTHELLES" }, { - "codePostal": "64680", - "codeCommune": "64261", - "libelleAcheminement": "HERRERE", - "nomCommune": "HERRERE" + "codePostal": "37400", + "codeCommune": "37138", + "libelleAcheminement": "LUSSAULT SUR LOIRE", + "nomCommune": "LUSSAULT SUR LOIRE" }, { - "codePostal": "14700", - "codeCommune": "14360", - "libelleAcheminement": "LEFFARD", - "nomCommune": "LEFFARD" + "codePostal": "38150", + "codeCommune": "38556", + "libelleAcheminement": "VILLE SOUS ANJOU", + "nomCommune": "VILLE SOUS ANJOU" }, { - "codePostal": "30140", - "codeCommune": "30010", - "libelleAcheminement": "ANDUZE", - "nomCommune": "ANDUZE" + "codePostal": "51220", + "codeCommune": "51518", + "libelleAcheminement": "ST THIERRY", + "nomCommune": "ST THIERRY" }, { - "codePostal": "42580", - "codeCommune": "42092", - "libelleAcheminement": "L ETRAT", - "nomCommune": "L ETRAT" + "codePostal": "51230", + "codeCommune": "51324", + "libelleAcheminement": "LINTHES", + "nomCommune": "LINTHES" }, { - "codePostal": "64130", - "codeCommune": "64264", - "libelleAcheminement": "L HOPITAL ST BLAISE", - "nomCommune": "L HOPITAL ST BLAISE" + "codePostal": "37150", + "codeCommune": "37141", + "libelleAcheminement": "LUZILLE", + "nomCommune": "LUZILLE" }, { - "codePostal": "14140", - "codeCommune": "14362", - "libelleAcheminement": "LESSARD ET LE CHENE", - "nomCommune": "LESSARD ET LE CHENE" + "codePostal": "38280", + "codeCommune": "38557", + "libelleAcheminement": "VILLETTE D ANTHON", + "nomCommune": "VILLETTE D ANTHON" }, { - "codePostal": "30133", - "codeCommune": "30011", - "libelleAcheminement": "LES ANGLES", - "nomCommune": "LES ANGLES" + "codePostal": "52100", + "codeCommune": "51522", + "libelleAcheminement": "SAPIGNICOURT", + "nomCommune": "SAPIGNICOURT" }, { - "codePostal": "42140", - "codeCommune": "42096", - "libelleAcheminement": "FONTANES", - "nomCommune": "FONTANES" + "codePostal": "51240", + "codeCommune": "51339", + "libelleAcheminement": "MAIRY SUR MARNE", + "nomCommune": "MAIRY SUR MARNE" }, { - "codePostal": "64220", - "codeCommune": "64274", - "libelleAcheminement": "IROULEGUY", - "nomCommune": "IROULEGUY" + "codePostal": "37800", + "codeCommune": "37142", + "libelleAcheminement": "MAILLE", + "nomCommune": "MAILLE" }, { - "codePostal": "14780", - "codeCommune": "14365", - "libelleAcheminement": "LION SUR MER", - "nomCommune": "LION SUR MER" + "codePostal": "38200", + "codeCommune": "38558", + "libelleAcheminement": "VILLETTE DE VIENNE", + "nomCommune": "VILLETTE DE VIENNE" }, { - "codePostal": "30250", - "codeCommune": "30019", - "libelleAcheminement": "AUBAIS", - "nomCommune": "AUBAIS" + "codePostal": "51400", + "codeCommune": "51530", + "libelleAcheminement": "SEPT SAULX", + "nomCommune": "SEPT SAULX" }, { - "codePostal": "42480", - "codeCommune": "42097", - "libelleAcheminement": "LA FOUILLOUSE", - "nomCommune": "LA FOUILLOUSE" + "codePostal": "51270", + "codeCommune": "51345", + "libelleAcheminement": "MAREUIL EN BRIE", + "nomCommune": "MAREUIL EN BRIE" }, { - "codePostal": "64390", - "codeCommune": "64287", - "libelleAcheminement": "LAAS", - "nomCommune": "LAAS" + "codePostal": "37240", + "codeCommune": "37143", + "libelleAcheminement": "MANTHELAN", + "nomCommune": "MANTHELAN" }, { - "codePostal": "14330", - "codeCommune": "14370", - "libelleAcheminement": "LE MOLAY LITTRY", - "nomCommune": "LE MOLAY LITTRY" + "codePostal": "38470", + "codeCommune": "38559", + "libelleAcheminement": "VINAY", + "nomCommune": "VINAY" }, { - "codePostal": "30620", - "codeCommune": "30020", - "libelleAcheminement": "AUBORD", - "nomCommune": "AUBORD" + "codePostal": "51500", + "codeCommune": "51536", + "libelleAcheminement": "SILLERY", + "nomCommune": "SILLERY" }, { - "codePostal": "42600", - "codeCommune": "42105", - "libelleAcheminement": "GREZIEUX LE FROMENTAL", - "nomCommune": "GREZIEUX LE FROMENTAL" + "codePostal": "51700", + "codeCommune": "51346", + "libelleAcheminement": "MAREUIL LE PORT", + "nomCommune": "MAREUIL LE PORT" }, { - "codePostal": "64240", - "codeCommune": "64289", - "libelleAcheminement": "LA BASTIDE CLAIRENCE", - "nomCommune": "LA BASTIDE CLAIRENCE" + "codePostal": "37500", + "codeCommune": "37144", + "libelleAcheminement": "MARCAY", + "nomCommune": "MARCAY" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "39600", + "codeCommune": "39002", + "libelleAcheminement": "ABERGEMENT LE GRAND", + "nomCommune": "ABERGEMENT LE GRAND" }, { - "codePostal": "30190", - "codeCommune": "30021", - "libelleAcheminement": "AUBUSSARGUES", - "nomCommune": "AUBUSSARGUES" + "codePostal": "51800", + "codeCommune": "51543", + "libelleAcheminement": "SOMME BIONNE", + "nomCommune": "SOMME BIONNE" }, { - "codePostal": "42110", - "codeCommune": "42113", - "libelleAcheminement": "JAS", - "nomCommune": "JAS" + "codePostal": "51170", + "codeCommune": "51348", + "libelleAcheminement": "MARFAUX", + "nomCommune": "MARFAUX" }, { - "codePostal": "64300", - "codeCommune": "64312", - "libelleAcheminement": "LANNEPLAA", - "nomCommune": "LANNEPLAA" + "codePostal": "37250", + "codeCommune": "37154", + "libelleAcheminement": "MONTBAZON", + "nomCommune": "MONTBAZON" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "39320", + "codeCommune": "39010", + "libelleAcheminement": "ANDELOT MORVAL", + "nomCommune": "ANDELOT MORVAL" }, { - "codePostal": "30140", - "codeCommune": "30027", - "libelleAcheminement": "BAGARD", - "nomCommune": "BAGARD" + "codePostal": "51600", + "codeCommune": "51544", + "libelleAcheminement": "SOMMEPY TAHURE", + "nomCommune": "SOMMEPY TAHURE" }, { - "codePostal": "42430", - "codeCommune": "42116", - "libelleAcheminement": "JURE", - "nomCommune": "JURE" + "codePostal": "51240", + "codeCommune": "51354", + "libelleAcheminement": "MARSON", + "nomCommune": "MARSON" }, { - "codePostal": "64440", - "codeCommune": "64320", - "libelleAcheminement": "LARUNS", - "nomCommune": "LARUNS" + "codePostal": "37260", + "codeCommune": "37159", + "libelleAcheminement": "MONTS", + "nomCommune": "MONTS" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "39320", + "codeCommune": "39010", + "libelleAcheminement": "ANDELOT MORVAL", + "nomCommune": "ANDELOT MORVAL" }, { - "codePostal": "30127", - "codeCommune": "30034", - "libelleAcheminement": "BELLEGARDE", - "nomCommune": "BELLEGARDE" + "codePostal": "51460", + "codeCommune": "51548", + "libelleAcheminement": "SOMME VESLE", + "nomCommune": "SOMME VESLE" }, { - "codePostal": "42560", - "codeCommune": "42117", - "libelleAcheminement": "LAVIEU", - "nomCommune": "LAVIEU" + "codePostal": "51300", + "codeCommune": "51356", + "libelleAcheminement": "MATIGNICOURT GONCOURT", + "nomCommune": "MATIGNICOURT GONCOURT" }, { - "codePostal": "64220", - "codeCommune": "64322", - "libelleAcheminement": "LASSE", - "nomCommune": "LASSE" + "codePostal": "37530", + "codeCommune": "37163", + "libelleAcheminement": "NAZELLES NEGRON", + "nomCommune": "NAZELLES NEGRON" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "39240", + "codeCommune": "39018", + "libelleAcheminement": "AROMAS", + "nomCommune": "AROMAS" }, { - "codePostal": "30580", - "codeCommune": "30035", - "libelleAcheminement": "BELVEZET", - "nomCommune": "BELVEZET" + "codePostal": "51300", + "codeCommune": "51567", + "libelleAcheminement": "THIEBLEMONT FAREMONT", + "nomCommune": "THIEBLEMONT FAREMONT" }, { - "codePostal": "42600", - "codeCommune": "42122", - "libelleAcheminement": "LEZIGNEUX", - "nomCommune": "LEZIGNEUX" + "codePostal": "51510", + "codeCommune": "51357", + "libelleAcheminement": "MATOUGUES", + "nomCommune": "MATOUGUES" }, { - "codePostal": "64490", - "codeCommune": "64330", - "libelleAcheminement": "LEES ATHAS", - "nomCommune": "LEES ATHAS" + "codePostal": "37110", + "codeCommune": "37169", + "libelleAcheminement": "NEUVILLE SUR BRENNE", + "nomCommune": "NEUVILLE SUR BRENNE" }, { - "codePostal": "14290", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "39270", + "codeCommune": "39021", + "libelleAcheminement": "LA CHAILLEUSE", + "nomCommune": "LA CHAILLEUSE" }, { - "codePostal": "30160", - "codeCommune": "30037", - "libelleAcheminement": "BESSEGES", - "nomCommune": "BESSEGES" + "codePostal": "51370", + "codeCommune": "51569", + "libelleAcheminement": "THILLOIS", + "nomCommune": "THILLOIS" }, { - "codePostal": "42380", - "codeCommune": "42126", - "libelleAcheminement": "LURIECQ", - "nomCommune": "LURIECQ" + "codePostal": "51800", + "codeCommune": "51370", + "libelleAcheminement": "MOIREMONT", + "nomCommune": "MOIREMONT" }, { - "codePostal": "64490", - "codeCommune": "64336", - "libelleAcheminement": "LESCUN", - "nomCommune": "LESCUN" + "codePostal": "37530", + "codeCommune": "37185", + "libelleAcheminement": "POCE SUR CISSE", + "nomCommune": "POCE SUR CISSE" }, { - "codePostal": "14230", - "codeCommune": "14378", - "libelleAcheminement": "LONGUEVILLE", - "nomCommune": "LONGUEVILLE" + "codePostal": "39120", + "codeCommune": "39034", + "libelleAcheminement": "BALAISEAUX", + "nomCommune": "BALAISEAUX" }, { - "codePostal": "30320", - "codeCommune": "30039", - "libelleAcheminement": "BEZOUCE", - "nomCommune": "BEZOUCE" + "codePostal": "51140", + "codeCommune": "51582", + "libelleAcheminement": "TRIGNY", + "nomCommune": "TRIGNY" }, { - "codePostal": "42140", - "codeCommune": "42133", - "libelleAcheminement": "MARCENOD", - "nomCommune": "MARCENOD" + "codePostal": "51240", + "codeCommune": "51371", + "libelleAcheminement": "MOIVRE", + "nomCommune": "MOIVRE" }, { - "codePostal": "64160", - "codeCommune": "64338", - "libelleAcheminement": "LESPOURCY", - "nomCommune": "LESPOURCY" + "codePostal": "37260", + "codeCommune": "37186", + "libelleAcheminement": "PONT DE RUAN", + "nomCommune": "PONT DE RUAN" }, { - "codePostal": "14250", - "codeCommune": "14380", - "libelleAcheminement": "LOUCELLES", - "nomCommune": "LOUCELLES" + "codePostal": "39800", + "codeCommune": "39040", + "libelleAcheminement": "BARRETAINE", + "nomCommune": "BARRETAINE" }, { - "codePostal": "30700", - "codeCommune": "30041", - "libelleAcheminement": "BLAUZAC", - "nomCommune": "BLAUZAC" + "codePostal": "51700", + "codeCommune": "51585", + "libelleAcheminement": "TROISSY", + "nomCommune": "TROISSY" }, { - "codePostal": "42130", - "codeCommune": "42136", - "libelleAcheminement": "MARCOUX", - "nomCommune": "MARCOUX" + "codePostal": "51120", + "codeCommune": "51374", + "libelleAcheminement": "MONDEMENT MONTGIVROUX", + "nomCommune": "MONDEMENT MONTGIVROUX" }, { - "codePostal": "64420", - "codeCommune": "64343", - "libelleAcheminement": "LIMENDOUS", - "nomCommune": "LIMENDOUS" + "codePostal": "37800", + "codeCommune": "37187", + "libelleAcheminement": "PORTS SUR VIENNE", + "nomCommune": "PORTS SUR VIENNE" }, { - "codePostal": "14930", - "codeCommune": "14396", - "libelleAcheminement": "MALTOT", - "nomCommune": "MALTOT" + "codePostal": "39210", + "codeCommune": "39041", + "libelleAcheminement": "BAUME LES MESSIEURS", + "nomCommune": "BAUME LES MESSIEURS" }, { - "codePostal": "30140", - "codeCommune": "30042", - "libelleAcheminement": "BOISSET ET GAUJAC", - "nomCommune": "BOISSET ET GAUJAC" + "codePostal": "51400", + "codeCommune": "51587", + "libelleAcheminement": "VADENAY", + "nomCommune": "VADENAY" }, { - "codePostal": "42560", - "codeCommune": "42137", - "libelleAcheminement": "MARGERIE CHANTAGRET", - "nomCommune": "MARGERIE CHANTAGRET" + "codePostal": "51210", + "codeCommune": "51380", + "libelleAcheminement": "MONTMIRAIL", + "nomCommune": "MONTMIRAIL" }, { - "codePostal": "64140", - "codeCommune": "64348", - "libelleAcheminement": "LONS", - "nomCommune": "LONS" + "codePostal": "37140", + "codeCommune": "37193", + "libelleAcheminement": "RESTIGNE", + "nomCommune": "RESTIGNE" }, { - "codePostal": "14710", - "codeCommune": "14397", - "libelleAcheminement": "MANDEVILLE EN BESSIN", - "nomCommune": "MANDEVILLE EN BESSIN" + "codePostal": "39270", + "codeCommune": "39045", + "libelleAcheminement": "BEFFIA", + "nomCommune": "BEFFIA" }, { - "codePostal": "30120", - "codeCommune": "30052", - "libelleAcheminement": "BREAU MARS", - "nomCommune": "BREAU MARS" + "codePostal": "51340", + "codeCommune": "51590", + "libelleAcheminement": "VANAULT LES DAMES", + "nomCommune": "VANAULT LES DAMES" }, { - "codePostal": "42510", - "codeCommune": "42154", - "libelleAcheminement": "NERONDE", - "nomCommune": "NERONDE" + "codePostal": "51530", + "codeCommune": "51390", + "libelleAcheminement": "MOUSSY", + "nomCommune": "MOUSSY" }, { - "codePostal": "64570", - "codeCommune": "64351", - "libelleAcheminement": "LOURDIOS ICHERE", - "nomCommune": "LOURDIOS ICHERE" + "codePostal": "37380", + "codeCommune": "37194", + "libelleAcheminement": "REUGNY", + "nomCommune": "REUGNY" }, { - "codePostal": "14340", - "codeCommune": "14398", - "libelleAcheminement": "MANERBE", - "nomCommune": "MANERBE" + "codePostal": "39800", + "codeCommune": "39050", + "libelleAcheminement": "BESAIN", + "nomCommune": "BESAIN" }, { - "codePostal": "30260", - "codeCommune": "30066", - "libelleAcheminement": "CANNES ET CLAIRAN", - "nomCommune": "CANNES ET CLAIRAN" + "codePostal": "51320", + "codeCommune": "51594", + "libelleAcheminement": "VASSIMONT ET CHAPELAINE", + "nomCommune": "VASSIMONT ET CHAPELAINE" }, { - "codePostal": "42120", - "codeCommune": "42166", - "libelleAcheminement": "PARIGNY", - "nomCommune": "PARIGNY" + "codePostal": "51700", + "codeCommune": "51396", + "libelleAcheminement": "NESLE LE REPONS", + "nomCommune": "NESLE LE REPONS" }, { - "codePostal": "64260", - "codeCommune": "64353", - "libelleAcheminement": "LOUVIE JUZON", - "nomCommune": "LOUVIE JUZON" + "codePostal": "37120", + "codeCommune": "37196", + "libelleAcheminement": "RICHELIEU", + "nomCommune": "RICHELIEU" }, { - "codePostal": "14130", - "codeCommune": "14399", - "libelleAcheminement": "MANNEVILLE LA PIPARD", - "nomCommune": "MANNEVILLE LA PIPARD" + "codePostal": "39150", + "codeCommune": "39052", + "libelleAcheminement": "BIEF DES MAISONS", + "nomCommune": "BIEF DES MAISONS" }, { - "codePostal": "30350", - "codeCommune": "30071", - "libelleAcheminement": "CASSAGNOLES", - "nomCommune": "CASSAGNOLES" + "codePostal": "51210", + "codeCommune": "51596", + "libelleAcheminement": "VAUCHAMPS", + "nomCommune": "VAUCHAMPS" }, { - "codePostal": "42600", - "codeCommune": "42180", - "libelleAcheminement": "PRECIEUX", - "nomCommune": "PRECIEUX" + "codePostal": "51700", + "codeCommune": "51414", + "libelleAcheminement": "OLIZY", + "nomCommune": "OLIZY" }, { - "codePostal": "64120", - "codeCommune": "64362", - "libelleAcheminement": "LUXE SUMBERRAUTE", - "nomCommune": "LUXE SUMBERRAUTE" + "codePostal": "37500", + "codeCommune": "37201", + "libelleAcheminement": "RIVIERE", + "nomCommune": "RIVIERE" }, { - "codePostal": "14400", - "codeCommune": "14400", - "libelleAcheminement": "LE MANOIR", - "nomCommune": "LE MANOIR" + "codePostal": "39210", + "codeCommune": "39057", + "libelleAcheminement": "BLOIS SUR SEILLE", + "nomCommune": "BLOIS SUR SEILLE" }, { - "codePostal": "30820", - "codeCommune": "30075", - "libelleAcheminement": "CAVEIRAC", - "nomCommune": "CAVEIRAC" + "codePostal": "51300", + "codeCommune": "51598", + "libelleAcheminement": "VAUCLERC", + "nomCommune": "VAUCLERC" }, { - "codePostal": "42630", - "codeCommune": "42181", - "libelleAcheminement": "REGNY", - "nomCommune": "REGNY" + "codePostal": "51270", + "codeCommune": "51416", + "libelleAcheminement": "ORBAIS L ABBAYE", + "nomCommune": "ORBAIS L ABBAYE" }, { - "codePostal": "64260", - "codeCommune": "64363", - "libelleAcheminement": "LYS", - "nomCommune": "LYS" + "codePostal": "37540", + "codeCommune": "37214", + "libelleAcheminement": "ST CYR SUR LOIRE", + "nomCommune": "ST CYR SUR LOIRE" }, { - "codePostal": "14700", - "codeCommune": "14405", - "libelleAcheminement": "MARTIGNY SUR L ANTE", - "nomCommune": "MARTIGNY SUR L ANTE" + "codePostal": "39130", + "codeCommune": "39063", + "libelleAcheminement": "BONLIEU", + "nomCommune": "BONLIEU" }, { - "codePostal": "30530", - "codeCommune": "30080", - "libelleAcheminement": "CHAMBORIGAUD", - "nomCommune": "CHAMBORIGAUD" + "codePostal": "51130", + "codeCommune": "51612", + "libelleAcheminement": "BLANCS COTEAUX", + "nomCommune": "BLANCS COTEAUX" }, { - "codePostal": "42800", - "codeCommune": "42186", - "libelleAcheminement": "RIVE DE GIER", - "nomCommune": "RIVE DE GIER" + "codePostal": "51700", + "codeCommune": "51425", + "libelleAcheminement": "PASSY GRIGNY", + "nomCommune": "PASSY GRIGNY" }, { - "codePostal": "64240", - "codeCommune": "64364", - "libelleAcheminement": "MACAYE", - "nomCommune": "MACAYE" + "codePostal": "37230", + "codeCommune": "37217", + "libelleAcheminement": "ST ETIENNE DE CHIGNY", + "nomCommune": "ST ETIENNE DE CHIGNY" }, { - "codePostal": "14480", - "codeCommune": "14406", - "libelleAcheminement": "MOULINS EN BESSIN", - "nomCommune": "MOULINS EN BESSIN" + "codePostal": "39570", + "codeCommune": "39066", + "libelleAcheminement": "BORNAY", + "nomCommune": "BORNAY" }, { - "codePostal": "30870", - "codeCommune": "30082", - "libelleAcheminement": "CLARENSAC", - "nomCommune": "CLARENSAC" + "codePostal": "51360", + "codeCommune": "51613", + "libelleAcheminement": "VERZENAY", + "nomCommune": "VERZENAY" }, { - "codePostal": "42110", - "codeCommune": "42202", - "libelleAcheminement": "ST BARTHELEMY LESTRA", - "nomCommune": "ST BARTHELEMY LESTRA" + "codePostal": "51230", + "codeCommune": "51432", + "libelleAcheminement": "PLEURS", + "nomCommune": "PLEURS" }, { - "codePostal": "64410", - "codeCommune": "64365", - "libelleAcheminement": "MALAUSSANNE", - "nomCommune": "MALAUSSANNE" + "codePostal": "37510", + "codeCommune": "37219", + "libelleAcheminement": "ST GENOUPH", + "nomCommune": "ST GENOUPH" }, { - "codePostal": "14100", - "codeCommune": "14421", - "libelleAcheminement": "LE MESNIL GUILLAUME", - "nomCommune": "LE MESNIL GUILLAUME" + "codePostal": "39300", + "codeCommune": "39070", + "libelleAcheminement": "BOURG DE SIROD", + "nomCommune": "BOURG DE SIROD" }, { - "codePostal": "30200", - "codeCommune": "30084", - "libelleAcheminement": "CODOLET", - "nomCommune": "CODOLET" + "codePostal": "51380", + "codeCommune": "51614", + "libelleAcheminement": "VERZY", + "nomCommune": "VERZY" }, { - "codePostal": "42940", - "codeCommune": "42205", - "libelleAcheminement": "ST BONNET LE COURREAU", - "nomCommune": "ST BONNET LE COURREAU" + "codePostal": "51300", + "codeCommune": "51446", + "libelleAcheminement": "PRINGY", + "nomCommune": "PRINGY" }, { - "codePostal": "64350", - "codeCommune": "64369", - "libelleAcheminement": "MASPIE LALONQUERE JUILLACQ", - "nomCommune": "MASPIE LALONQUERE JUILLACQ" + "codePostal": "37600", + "codeCommune": "37222", + "libelleAcheminement": "ST JEAN ST GERMAIN", + "nomCommune": "ST JEAN ST GERMAIN" }, { - "codePostal": "14380", - "codeCommune": "14424", - "libelleAcheminement": "LE MESNIL ROBERT", - "nomCommune": "LE MESNIL ROBERT" + "codePostal": "39250", + "codeCommune": "39083", + "libelleAcheminement": "CENSEAU", + "nomCommune": "CENSEAU" }, { - "codePostal": "30300", - "codeCommune": "30089", - "libelleAcheminement": "COMPS", - "nomCommune": "COMPS" + "codePostal": "51520", + "codeCommune": "51617", + "libelleAcheminement": "LA VEUVE", + "nomCommune": "LA VEUVE" }, { - "codePostal": "42400", - "codeCommune": "42207", - "libelleAcheminement": "ST CHAMOND", - "nomCommune": "ST CHAMOND" + "codePostal": "51120", + "codeCommune": "51451", + "libelleAcheminement": "QUEUDES", + "nomCommune": "QUEUDES" }, { - "codePostal": "64130", - "codeCommune": "64371", - "libelleAcheminement": "MAULEON SOULE", - "nomCommune": "MAULEON LICHARRE" + "codePostal": "37800", + "codeCommune": "37226", + "libelleAcheminement": "STE MAURE DE TOURAINE", + "nomCommune": "STE MAURE DE TOURAINE" }, { - "codePostal": "14690", - "codeCommune": "14427", - "libelleAcheminement": "LE MESNIL VILLEMENT", - "nomCommune": "LE MESNIL VILLEMENT" + "codePostal": "39240", + "codeCommune": "39086", + "libelleAcheminement": "CERNON", + "nomCommune": "CERNON" }, { - "codePostal": "30190", - "codeCommune": "30102", - "libelleAcheminement": "DIONS", - "nomCommune": "DIONS" + "codePostal": "51330", + "codeCommune": "51619", + "libelleAcheminement": "LE VIEIL DAMPIERRE", + "nomCommune": "LE VIEIL DAMPIERRE" }, { - "codePostal": "42000", - "codeCommune": "42218", - "libelleAcheminement": "ST ETIENNE", - "nomCommune": "ST ETIENNE" + "codePostal": "51520", + "codeCommune": "51453", + "libelleAcheminement": "RECY", + "nomCommune": "RECY" }, { - "codePostal": "64220", - "codeCommune": "64379", - "libelleAcheminement": "MENDIVE", - "nomCommune": "MENDIVE" + "codePostal": "37530", + "codeCommune": "37230", + "libelleAcheminement": "ST OUEN LES VIGNES", + "nomCommune": "ST OUEN LES VIGNES" }, { - "codePostal": "14960", - "codeCommune": "14430", - "libelleAcheminement": "MEUVAINES", - "nomCommune": "MEUVAINES" + "codePostal": "39270", + "codeCommune": "39092", + "libelleAcheminement": "CHAMBERIA", + "nomCommune": "CHAMBERIA" }, { - "codePostal": "30750", - "codeCommune": "30105", - "libelleAcheminement": "DOURBIES", - "nomCommune": "DOURBIES" + "codePostal": "51250", + "codeCommune": "51635", + "libelleAcheminement": "VILLERS LE SEC", + "nomCommune": "VILLERS LE SEC" }, { - "codePostal": "42230", - "codeCommune": "42218", - "libelleAcheminement": "ST ETIENNE", - "nomCommune": "ST ETIENNE" + "codePostal": "51100", + "codeCommune": "51454", + "libelleAcheminement": "REIMS", + "nomCommune": "REIMS" }, { - "codePostal": "64410", - "codeCommune": "64380", - "libelleAcheminement": "MERACQ", - "nomCommune": "MERACQ" + "codePostal": "37700", + "codeCommune": "37233", + "libelleAcheminement": "ST PIERRE DES CORPS", + "nomCommune": "ST PIERRE DES CORPS" }, { - "codePostal": "14140", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "39110", + "codeCommune": "39103", + "libelleAcheminement": "LA CHAPELLE SUR FURIEUSE", + "nomCommune": "LA CHAPELLE SUR FURIEUSE" }, { - "codePostal": "30660", - "codeCommune": "30123", - "libelleAcheminement": "GALLARGUES LE MONTUEUX", - "nomCommune": "GALLARGUES LE MONTUEUX" + "codePostal": "51530", + "codeCommune": "51643", + "libelleAcheminement": "VINAY", + "nomCommune": "VINAY" }, { - "codePostal": "42660", - "codeCommune": "42224", - "libelleAcheminement": "ST GENEST MALIFAUX", - "nomCommune": "ST GENEST MALIFAUX" + "codePostal": "51140", + "codeCommune": "51464", + "libelleAcheminement": "ROMAIN", + "nomCommune": "ROMAIN" }, { - "codePostal": "64410", - "codeCommune": "64383", - "libelleAcheminement": "MIALOS", - "nomCommune": "MIALOS" + "codePostal": "37110", + "codeCommune": "37240", + "libelleAcheminement": "SAUNAY", + "nomCommune": "SAUNAY" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "39140", + "codeCommune": "39104", + "libelleAcheminement": "CHAPELLE VOLAND", + "nomCommune": "CHAPELLE VOLAND" }, { - "codePostal": "30760", - "codeCommune": "30134", - "libelleAcheminement": "ISSIRAC", - "nomCommune": "ISSIRAC" + "codePostal": "51240", + "codeCommune": "51648", + "libelleAcheminement": "VITRY LA VILLE", + "nomCommune": "VITRY LA VILLE" }, { - "codePostal": "42800", - "codeCommune": "42225", - "libelleAcheminement": "GENILAC", - "nomCommune": "GENILAC" + "codePostal": "51800", + "codeCommune": "51470", + "libelleAcheminement": "ROUVROY RIPONT", + "nomCommune": "ROUVROY RIPONT" }, { - "codePostal": "64330", - "codeCommune": "64392", - "libelleAcheminement": "MONCLA", - "nomCommune": "MONCLA" + "codePostal": "37530", + "codeCommune": "37252", + "libelleAcheminement": "SOUVIGNY DE TOURAINE", + "nomCommune": "SOUVIGNY DE TOURAINE" }, { - "codePostal": "14400", - "codeCommune": "14436", - "libelleAcheminement": "MONCEAUX EN BESSIN", - "nomCommune": "MONCEAUX EN BESSIN" + "codePostal": "39300", + "codeCommune": "39105", + "libelleAcheminement": "CHAPOIS", + "nomCommune": "CHAPOIS" }, { - "codePostal": "30350", - "codeCommune": "30147", - "libelleAcheminement": "LEZAN", - "nomCommune": "LEZAN" + "codePostal": "51150", + "codeCommune": "51656", + "libelleAcheminement": "VRAUX", + "nomCommune": "VRAUX" }, { - "codePostal": "42380", - "codeCommune": "42235", - "libelleAcheminement": "ST HILAIRE CUSSON LA VALMITTE", - "nomCommune": "ST HILAIRE CUSSON LA VALMITTE" + "codePostal": "51500", + "codeCommune": "51471", + "libelleAcheminement": "SACY", + "nomCommune": "SACY" }, { - "codePostal": "64410", - "codeCommune": "64397", - "libelleAcheminement": "MONTAGUT", - "nomCommune": "MONTAGUT" + "codePostal": "37310", + "codeCommune": "37254", + "libelleAcheminement": "TAUXIGNY ST BAULD", + "nomCommune": "TAUXIGNY ST BAULD" }, { - "codePostal": "14120", - "codeCommune": "14437", - "libelleAcheminement": "MONDEVILLE", - "nomCommune": "MONDEVILLE" + "codePostal": "39130", + "codeCommune": "39107", + "libelleAcheminement": "CHARCIER", + "nomCommune": "CHARCIER" }, { - "codePostal": "30320", - "codeCommune": "30156", - "libelleAcheminement": "MARGUERITTES", - "nomCommune": "MARGUERITTES" + "codePostal": "51110", + "codeCommune": "51660", + "libelleAcheminement": "WARMERIVILLE", + "nomCommune": "WARMERIVILLE" }, { - "codePostal": "42560", - "codeCommune": "42240", - "libelleAcheminement": "ST JEAN SOLEYMIEUX", - "nomCommune": "ST JEAN SOLEYMIEUX" + "codePostal": "51310", + "codeCommune": "51473", + "libelleAcheminement": "ST BON", + "nomCommune": "ST BON" }, { - "codePostal": "64330", - "codeCommune": "64401", - "libelleAcheminement": "MONT DISSE", - "nomCommune": "MONT DISSE" + "codePostal": "37120", + "codeCommune": "37260", + "libelleAcheminement": "LA TOUR ST GELIN", + "nomCommune": "LA TOUR ST GELIN" }, { - "codePostal": "14620", - "codeCommune": "14452", - "libelleAcheminement": "MORTEAUX COULIBOEUF", - "nomCommune": "MORTEAUX COULIBOEUF" + "codePostal": "39230", + "codeCommune": "39110", + "libelleAcheminement": "LA CHARME", + "nomCommune": "LA CHARME" }, { - "codePostal": "30410", - "codeCommune": "30167", - "libelleAcheminement": "MEYRANNES", - "nomCommune": "MEYRANNES" + "codePostal": "51530", + "codeCommune": "51663", + "libelleAcheminement": "MAGENTA", + "nomCommune": "MAGENTA" }, { - "codePostal": "42590", - "codeCommune": "42241", - "libelleAcheminement": "ST JODARD", - "nomCommune": "ST JODARD" + "codePostal": "51240", + "codeCommune": "51482", + "libelleAcheminement": "ST GERMAIN LA VILLE", + "nomCommune": "ST GERMAIN LA VILLE" }, { - "codePostal": "64160", - "codeCommune": "64405", - "libelleAcheminement": "MORLAAS", - "nomCommune": "MORLAAS" + "codePostal": "37200", + "codeCommune": "37261", + "libelleAcheminement": "TOURS", + "nomCommune": "TOURS" }, { - "codePostal": "14400", - "codeCommune": "14453", - "libelleAcheminement": "MOSLES", - "nomCommune": "MOSLES" + "codePostal": "39600", + "codeCommune": "39116", + "libelleAcheminement": "LA CHATELAINE", + "nomCommune": "LA CHATELAINE" }, { - "codePostal": "30120", - "codeCommune": "30176", - "libelleAcheminement": "MONTDARDIER", - "nomCommune": "MONTDARDIER" + "codePostal": "52400", + "codeCommune": "52002", + "libelleAcheminement": "AIGREMONT", + "nomCommune": "AIGREMONT" }, { - "codePostal": "42220", - "codeCommune": "42246", - "libelleAcheminement": "ST JULIEN MOLIN MOLETTE", - "nomCommune": "ST JULIEN MOLIN MOLETTE" + "codePostal": "51490", + "codeCommune": "51487", + "libelleAcheminement": "ST HILAIRE LE PETIT", + "nomCommune": "ST HILAIRE LE PETIT" }, { - "codePostal": "64400", - "codeCommune": "64409", - "libelleAcheminement": "MOUMOUR", - "nomCommune": "MOUMOUR" + "codePostal": "37210", + "codeCommune": "37270", + "libelleAcheminement": "VERNOU SUR BRENNE", + "nomCommune": "VERNOU SUR BRENNE" }, { - "codePostal": "14790", - "codeCommune": "14454", - "libelleAcheminement": "MOUEN", - "nomCommune": "MOUEN" + "codePostal": "39300", + "codeCommune": "39120", + "libelleAcheminement": "CHATELNEUF", + "nomCommune": "CHATELNEUF" }, { - "codePostal": "30150", - "codeCommune": "30178", - "libelleAcheminement": "MONTFAUCON", - "nomCommune": "MONTFAUCON" + "codePostal": "52360", + "codeCommune": "52009", + "libelleAcheminement": "ANDILLY EN BASSIGNY", + "nomCommune": "ANDILLY EN BASSIGNY" }, { - "codePostal": "42540", - "codeCommune": "42249", - "libelleAcheminement": "ST JUST LA PENDUE", - "nomCommune": "ST JUST LA PENDUE" + "codePostal": "51600", + "codeCommune": "51491", + "libelleAcheminement": "ST JEAN SUR TOURBE", + "nomCommune": "ST JEAN SUR TOURBE" }, { - "codePostal": "64150", - "codeCommune": "64410", - "libelleAcheminement": "MOURENX", - "nomCommune": "MOURENX" + "codePostal": "37190", + "codeCommune": "37271", + "libelleAcheminement": "VILLAINES LES ROCHERS", + "nomCommune": "VILLAINES LES ROCHERS" }, { - "codePostal": "14370", - "codeCommune": "14456", - "libelleAcheminement": "MOULT CHICHEBOVILLE", - "nomCommune": "MOULT CHICHEBOVILLE" + "codePostal": "39120", + "codeCommune": "39128", + "libelleAcheminement": "CHAUSSIN", + "nomCommune": "CHAUSSIN" }, { - "codePostal": "30190", - "codeCommune": "30180", - "libelleAcheminement": "MONTIGNARGUES", - "nomCommune": "MONTIGNARGUES" + "codePostal": "52230", + "codeCommune": "52012", + "libelleAcheminement": "ANNONVILLE", + "nomCommune": "ANNONVILLE" }, { - "codePostal": "42800", - "codeCommune": "42259", - "libelleAcheminement": "ST MARTIN LA PLAINE", - "nomCommune": "ST MARTIN LA PLAINE" + "codePostal": "51340", + "codeCommune": "51497", + "libelleAcheminement": "ST LUMIER LA POPULEUSE", + "nomCommune": "ST LUMIER LA POPULEUSE" }, { - "codePostal": "64130", - "codeCommune": "64411", - "libelleAcheminement": "MUSCULDY", - "nomCommune": "MUSCULDY" + "codePostal": "37210", + "codeCommune": "37281", + "libelleAcheminement": "VOUVRAY", + "nomCommune": "VOUVRAY" }, { - "codePostal": "14620", - "codeCommune": "14457", - "libelleAcheminement": "LES MOUTIERS EN AUGE", - "nomCommune": "LES MOUTIERS EN AUGE" + "codePostal": "39150", + "codeCommune": "39131", + "libelleAcheminement": "CHAUX DU DOMBIEF", + "nomCommune": "LA CHAUX DU DOMBIEF" }, { - "codePostal": "30260", - "codeCommune": "30181", - "libelleAcheminement": "MONTMIRAT", - "nomCommune": "MONTMIRAT" + "codePostal": "52500", + "codeCommune": "52015", + "libelleAcheminement": "ARBIGNY SOUS VARENNES", + "nomCommune": "ARBIGNY SOUS VARENNES" }, { - "codePostal": "42260", - "codeCommune": "42260", - "libelleAcheminement": "ST MARTIN LA SAUVETE", - "nomCommune": "ST MARTIN LA SAUVETE" + "codePostal": "51800", + "codeCommune": "51498", + "libelleAcheminement": "ST MARD SUR AUVE", + "nomCommune": "ST MARD SUR AUVE" }, { - "codePostal": "64190", - "codeCommune": "64416", - "libelleAcheminement": "NAVARRENX", - "nomCommune": "NAVARRENX" + "codePostal": "38190", + "codeCommune": "38002", + "libelleAcheminement": "LES ADRETS", + "nomCommune": "LES ADRETS" }, { - "codePostal": "14340", - "codeCommune": "14474", - "libelleAcheminement": "NOTRE DAME D ESTREES CORBON", - "nomCommune": "NOTRE DAME D ESTREES CORBON" + "codePostal": "39230", + "codeCommune": "39132", + "libelleAcheminement": "LA CHAUX EN BRESSE", + "nomCommune": "LA CHAUX EN BRESSE" }, { - "codePostal": "30000", - "codeCommune": "30189", - "libelleAcheminement": "NIMES", - "nomCommune": "NIMES" + "codePostal": "52160", + "codeCommune": "52016", + "libelleAcheminement": "ARBOT", + "nomCommune": "ARBOT" }, { - "codePostal": "42380", - "codeCommune": "42266", - "libelleAcheminement": "ST NIZIER DE FORNAS", - "nomCommune": "ST NIZIER DE FORNAS" + "codePostal": "51330", + "codeCommune": "51500", + "libelleAcheminement": "ST MARD SUR LE MONT", + "nomCommune": "ST MARD SUR LE MONT" }, { - "codePostal": "64400", - "codeCommune": "64422", - "libelleAcheminement": "OLORON STE MARIE", - "nomCommune": "OLORON STE MARIE" + "codePostal": "38190", + "codeCommune": "38002", + "libelleAcheminement": "LES ADRETS", + "nomCommune": "LES ADRETS" }, { - "codePostal": "14310", - "codeCommune": "14475", - "libelleAcheminement": "VAL D ARRY", - "nomCommune": "VAL D ARRY" + "codePostal": "39270", + "codeCommune": "39134", + "libelleAcheminement": "CHAVERIA", + "nomCommune": "CHAVERIA" }, { - "codePostal": "30530", - "codeCommune": "30203", - "libelleAcheminement": "PORTES", - "nomCommune": "PORTES" + "codePostal": "52130", + "codeCommune": "52021", + "libelleAcheminement": "ATTANCOURT", + "nomCommune": "ATTANCOURT" }, { - "codePostal": "42190", - "codeCommune": "42267", - "libelleAcheminement": "ST NIZIER SOUS CHARLIEU", - "nomCommune": "ST NIZIER SOUS CHARLIEU" + "codePostal": "51490", + "codeCommune": "51503", + "libelleAcheminement": "ST MARTIN L HEUREUX", + "nomCommune": "ST MARTIN L HEUREUX" }, { - "codePostal": "64130", - "codeCommune": "64424", - "libelleAcheminement": "ORDIARP", - "nomCommune": "ORDIARP" + "codePostal": "38470", + "codeCommune": "38004", + "libelleAcheminement": "L ALBENC", + "nomCommune": "L ALBENC" }, { - "codePostal": "14270", - "codeCommune": "14482", - "libelleAcheminement": "OUEZY", - "nomCommune": "OUEZY" + "codePostal": "39230", + "codeCommune": "39140", + "libelleAcheminement": "CHENE SEC", + "nomCommune": "CHENE SEC" }, { - "codePostal": "30120", - "codeCommune": "30219", - "libelleAcheminement": "ROGUES", - "nomCommune": "ROGUES" + "codePostal": "52120", + "codeCommune": "52031", + "libelleAcheminement": "AUTREVILLE SUR LA RENNE", + "nomCommune": "AUTREVILLE SUR LA RENNE" }, { - "codePostal": "42270", - "codeCommune": "42275", - "libelleAcheminement": "ST PRIEST EN JAREZ", - "nomCommune": "ST PRIEST EN JAREZ" + "codePostal": "51800", + "codeCommune": "51507", + "libelleAcheminement": "STE MENEHOULD", + "nomCommune": "STE MENEHOULD" }, { - "codePostal": "64190", - "codeCommune": "64434", - "libelleAcheminement": "OSSENX", - "nomCommune": "OSSENX" + "codePostal": "38280", + "codeCommune": "38011", + "libelleAcheminement": "ANTHON", + "nomCommune": "ANTHON" }, { - "codePostal": "14190", - "codeCommune": "14486", - "libelleAcheminement": "OUILLY LE TESSON", - "nomCommune": "OUILLY LE TESSON" + "codePostal": "39100", + "codeCommune": "39150", + "libelleAcheminement": "CHOISEY", + "nomCommune": "CHOISEY" }, { - "codePostal": "30200", - "codeCommune": "30225", - "libelleAcheminement": "SABRAN", - "nomCommune": "SABRAN" + "codePostal": "52360", + "codeCommune": "52037", + "libelleAcheminement": "BANNES", + "nomCommune": "BANNES" }, { - "codePostal": "42800", - "codeCommune": "42283", - "libelleAcheminement": "ST ROMAIN EN JAREZ", - "nomCommune": "ST ROMAIN EN JAREZ" + "codePostal": "51240", + "codeCommune": "51512", + "libelleAcheminement": "ST QUENTIN SUR COOLE", + "nomCommune": "ST QUENTIN SUR COOLE" }, { - "codePostal": "64300", - "codeCommune": "64440", - "libelleAcheminement": "OZENX MONTESTRUCQ", - "nomCommune": "OZENX MONTESTRUCQ" + "codePostal": "38490", + "codeCommune": "38012", + "libelleAcheminement": "AOSTE", + "nomCommune": "AOSTE" }, { - "codePostal": "14160", - "codeCommune": "14494", - "libelleAcheminement": "PERIERS EN AUGE", - "nomCommune": "PERIERS EN AUGE" + "codePostal": "39130", + "codeCommune": "39154", + "libelleAcheminement": "CLAIRVAUX LES LACS", + "nomCommune": "CLAIRVAUX LES LACS" }, { - "codePostal": "30570", - "codeCommune": "30229", - "libelleAcheminement": "ST ANDRE DE MAJENCOULES", - "nomCommune": "ST ANDRE DE MAJENCOULES" + "codePostal": "52240", + "codeCommune": "52038", + "libelleAcheminement": "BASSONCOURT", + "nomCommune": "BASSONCOURT" }, { - "codePostal": "42600", - "codeCommune": "42290", - "libelleAcheminement": "ST THOMAS LA GARDE", - "nomCommune": "ST THOMAS LA GARDE" + "codePostal": "51800", + "codeCommune": "51519", + "libelleAcheminement": "ST THOMAS EN ARGONNE", + "nomCommune": "ST THOMAS EN ARGONNE" }, { - "codePostal": "64360", - "codeCommune": "64442", - "libelleAcheminement": "PARBAYSE", - "nomCommune": "PARBAYSE" + "codePostal": "38680", + "codeCommune": "38018", + "libelleAcheminement": "AUBERIVES EN ROYANS", + "nomCommune": "AUBERIVES EN ROYANS" }, { - "codePostal": "14170", - "codeCommune": "14497", - "libelleAcheminement": "PERRIERES", - "nomCommune": "PERRIERES" + "codePostal": "39130", + "codeCommune": "39156", + "libelleAcheminement": "COGNA", + "nomCommune": "COGNA" }, { - "codePostal": "30260", - "codeCommune": "30244", - "libelleAcheminement": "ST CLEMENT", - "nomCommune": "ST CLEMENT" + "codePostal": "52270", + "codeCommune": "52044", + "libelleAcheminement": "ROCHES BETTAINCOURT", + "nomCommune": "ROCHES BETTAINCOURT" }, { - "codePostal": "42120", - "codeCommune": "42294", - "libelleAcheminement": "ST VINCENT DE BOISSET", - "nomCommune": "ST VINCENT DE BOISSET" + "codePostal": "51340", + "codeCommune": "51521", + "libelleAcheminement": "ST VRAIN", + "nomCommune": "ST VRAIN" }, { - "codePostal": "64800", - "codeCommune": "64444", - "libelleAcheminement": "PARDIES PIETAT", - "nomCommune": "PARDIES PIETAT" + "codePostal": "38630", + "codeCommune": "38022", + "libelleAcheminement": "LES AVENIERES VEYRINS THUELLIN", + "nomCommune": "LES AVENIERES VEYRINS THUELLIN" }, { - "codePostal": "14700", - "codeCommune": "14498", - "libelleAcheminement": "PERTHEVILLE NERS", - "nomCommune": "PERTHEVILLE NERS" + "codePostal": "39800", + "codeCommune": "39159", + "libelleAcheminement": "COLONNE", + "nomCommune": "COLONNE" }, { - "codePostal": "30190", - "codeCommune": "30248", - "libelleAcheminement": "ST DEZERY", - "nomCommune": "ST DEZERY" + "codePostal": "52300", + "codeCommune": "52055", + "libelleAcheminement": "BLECOURT", + "nomCommune": "BLECOURT" }, { - "codePostal": "42550", - "codeCommune": "42318", - "libelleAcheminement": "USSON EN FOREZ", - "nomCommune": "USSON EN FOREZ" + "codePostal": "51120", + "codeCommune": "51526", + "libelleAcheminement": "SAUDOY", + "nomCommune": "SAUDOY" }, { - "codePostal": "64000", - "codeCommune": "64445", - "libelleAcheminement": "PAU", - "nomCommune": "PAU" + "codePostal": "38630", + "codeCommune": "38022", + "libelleAcheminement": "LES AVENIERES VEYRINS THUELLIN", + "nomCommune": "LES AVENIERES VEYRINS THUELLIN" }, { - "codePostal": "14690", - "codeCommune": "14510", - "libelleAcheminement": "LA POMMERAYE", - "nomCommune": "LA POMMERAYE" + "codePostal": "39300", + "codeCommune": "39165", + "libelleAcheminement": "CONTE", + "nomCommune": "CONTE" }, { - "codePostal": "30140", - "codeCommune": "30252", - "libelleAcheminement": "ST FELIX DE PALLIERES", - "nomCommune": "ST FELIX DE PALLIERES" + "codePostal": "52310", + "codeCommune": "52058", + "libelleAcheminement": "BOLOGNE", + "nomCommune": "BOLOGNE" }, { - "codePostal": "42140", - "codeCommune": "42336", - "libelleAcheminement": "VIRIGNEUX", - "nomCommune": "VIRIGNEUX" + "codePostal": "51340", + "codeCommune": "51528", + "libelleAcheminement": "SCRUPT", + "nomCommune": "SCRUPT" }, { - "codePostal": "64530", - "codeCommune": "64453", - "libelleAcheminement": "PONTACQ", - "nomCommune": "PONTACQ" + "codePostal": "38160", + "codeCommune": "38036", + "libelleAcheminement": "BEAUVOIR EN ROYANS", + "nomCommune": "BEAUVOIR EN ROYANS" }, { - "codePostal": "14130", - "codeCommune": "14514", - "libelleAcheminement": "PONT L EVEQUE", - "nomCommune": "PONT L EVEQUE" + "codePostal": "39300", + "codeCommune": "39183", + "libelleAcheminement": "CROTENAY", + "nomCommune": "CROTENAY" }, { - "codePostal": "30960", - "codeCommune": "30253", - "libelleAcheminement": "ST FLORENT SUR AUZONNET", - "nomCommune": "ST FLORENT SUR AUZONNET" + "codePostal": "52310", + "codeCommune": "52058", + "libelleAcheminement": "BOLOGNE", + "nomCommune": "BOLOGNE" }, { - "codePostal": "43380", - "codeCommune": "43006", - "libelleAcheminement": "ALLY", - "nomCommune": "ALLY" + "codePostal": "51520", + "codeCommune": "51538", + "libelleAcheminement": "SOGNY AUX MOULINS", + "nomCommune": "SOGNY AUX MOULINS" }, { - "codePostal": "64410", - "codeCommune": "64457", - "libelleAcheminement": "POURSIUGUES BOUCOUE", - "nomCommune": "POURSIUGUES BOUCOUE" + "codePostal": "38142", + "codeCommune": "38040", + "libelleAcheminement": "BESSE", + "nomCommune": "BESSE" }, { - "codePostal": "14210", - "codeCommune": "14519", - "libelleAcheminement": "PREAUX BOCAGE", - "nomCommune": "PREAUX BOCAGE" + "codePostal": "39260", + "codeCommune": "39184", + "libelleAcheminement": "LES CROZETS", + "nomCommune": "LES CROZETS" }, { - "codePostal": "30200", - "codeCommune": "30256", - "libelleAcheminement": "ST GERVAIS", - "nomCommune": "ST GERVAIS" + "codePostal": "52360", + "codeCommune": "52059", + "libelleAcheminement": "BONNECOURT", + "nomCommune": "BONNECOURT" }, { - "codePostal": "43200", - "codeCommune": "43007", - "libelleAcheminement": "ARAULES", - "nomCommune": "ARAULES" + "codePostal": "51340", + "codeCommune": "51539", + "libelleAcheminement": "SOGNY EN L ANGLE", + "nomCommune": "SOGNY EN L ANGLE" }, { - "codePostal": "64190", - "codeCommune": "64459", - "libelleAcheminement": "PRECHACQ NAVARRENX", - "nomCommune": "PRECHACQ NAVARRENX" + "codePostal": "38690", + "codeCommune": "38042", + "libelleAcheminement": "BEVENAIS", + "nomCommune": "BEVENAIS" }, { - "codePostal": "14690", - "codeCommune": "14531", - "libelleAcheminement": "RAPILLY", - "nomCommune": "RAPILLY" + "codePostal": "39250", + "codeCommune": "39187", + "libelleAcheminement": "CUVIER", + "nomCommune": "CUVIER" }, { - "codePostal": "30700", - "codeCommune": "30262", - "libelleAcheminement": "ST HIPPOLYTE DE MONTAIGU", - "nomCommune": "ST HIPPOLYTE DE MONTAIGU" + "codePostal": "52400", + "codeCommune": "52060", + "libelleAcheminement": "BOURBONNE LES BAINS", + "nomCommune": "BOURBONNE LES BAINS" }, { - "codePostal": "43380", - "codeCommune": "43011", - "libelleAcheminement": "AUBAZAT", - "nomCommune": "AUBAZAT" + "codePostal": "51320", + "codeCommune": "51545", + "libelleAcheminement": "SOMMESOUS", + "nomCommune": "SOMMESOUS" }, { - "codePostal": "64270", - "codeCommune": "64462", - "libelleAcheminement": "RAMOUS", - "nomCommune": "RAMOUS" + "codePostal": "38300", + "codeCommune": "38053", + "libelleAcheminement": "BOURGOIN JALLIEU", + "nomCommune": "BOURGOIN JALLIEU" }, { - "codePostal": "14600", - "codeCommune": "14536", - "libelleAcheminement": "LA RIVIERE ST SAUVEUR", - "nomCommune": "LA RIVIERE ST SAUVEUR" + "codePostal": "39700", + "codeCommune": "39190", + "libelleAcheminement": "DAMPIERRE", + "nomCommune": "DAMPIERRE" }, { - "codePostal": "30270", - "codeCommune": "30269", - "libelleAcheminement": "ST JEAN DU GARD", - "nomCommune": "ST JEAN DU GARD" + "codePostal": "52700", + "codeCommune": "52061", + "libelleAcheminement": "BOURDONS SUR ROGNON", + "nomCommune": "BOURDONS SUR ROGNON" }, { - "codePostal": "43340", - "codeCommune": "43019", - "libelleAcheminement": "BARGES", - "nomCommune": "BARGES" + "codePostal": "51330", + "codeCommune": "51549", + "libelleAcheminement": "SOMME YEVRE", + "nomCommune": "SOMME YEVRE" }, { - "codePostal": "64190", - "codeCommune": "64466", - "libelleAcheminement": "RIVEHAUTE", - "nomCommune": "RIVEHAUTE" + "codePostal": "38800", + "codeCommune": "38068", + "libelleAcheminement": "CHAMPAGNIER", + "nomCommune": "CHAMPAGNIER" }, { - "codePostal": "14340", - "codeCommune": "14541", - "libelleAcheminement": "LA ROQUE BAIGNARD", - "nomCommune": "LA ROQUE BAIGNARD" + "codePostal": "39100", + "codeCommune": "39198", + "libelleAcheminement": "DOLE", + "nomCommune": "DOLE" }, { - "codePostal": "30500", - "codeCommune": "30271", - "libelleAcheminement": "ST JULIEN DE CASSAGNAS", - "nomCommune": "ST JULIEN DE CASSAGNAS" + "codePostal": "52150", + "codeCommune": "52064", + "libelleAcheminement": "BOURMONT ENTRE MEUSE ET MOUZON", + "nomCommune": "BOURMONT ENTRE MEUSE ET MOUZON" }, { - "codePostal": "43800", - "codeCommune": "43021", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "51320", + "codeCommune": "51550", + "libelleAcheminement": "SOMPUIS", + "nomCommune": "SOMPUIS" }, { - "codePostal": "64160", - "codeCommune": "64472", - "libelleAcheminement": "ST CASTIN", - "nomCommune": "ST CASTIN" + "codePostal": "38530", + "codeCommune": "38075", + "libelleAcheminement": "CHAPAREILLAN", + "nomCommune": "CHAPAREILLAN" }, { - "codePostal": "14980", - "codeCommune": "14543", - "libelleAcheminement": "ROTS", - "nomCommune": "ROTS" + "codePostal": "39110", + "codeCommune": "39202", + "libelleAcheminement": "DOURNON", + "nomCommune": "DOURNON" }, { - "codePostal": "30760", - "codeCommune": "30273", - "libelleAcheminement": "ST JULIEN DE PEYROLAS", - "nomCommune": "ST JULIEN DE PEYROLAS" + "codePostal": "52110", + "codeCommune": "52066", + "libelleAcheminement": "BRACHAY", + "nomCommune": "BRACHAY" }, { - "codePostal": "43500", - "codeCommune": "43023", - "libelleAcheminement": "BEAUNE SUR ARZON", - "nomCommune": "BEAUNE SUR ARZON" + "codePostal": "51600", + "codeCommune": "51559", + "libelleAcheminement": "SUIPPES", + "nomCommune": "SUIPPES" }, { - "codePostal": "64640", - "codeCommune": "64476", - "libelleAcheminement": "ST ESTEBEN", - "nomCommune": "ST ESTEBEN" + "codePostal": "38490", + "codeCommune": "38080", + "libelleAcheminement": "CHARANCIEU", + "nomCommune": "CHARANCIEU" }, { - "codePostal": "14540", - "codeCommune": "14554", - "libelleAcheminement": "LE CASTELET", - "nomCommune": "LE CASTELET" + "codePostal": "39150", + "codeCommune": "39208", + "libelleAcheminement": "ENTRE DEUX MONTS", + "nomCommune": "ENTRE DEUX MONTS" }, { - "codePostal": "30130", - "codeCommune": "30290", - "libelleAcheminement": "ST PAULET DE CAISSON", - "nomCommune": "ST PAULET DE CAISSON" + "codePostal": "52120", + "codeCommune": "52069", + "libelleAcheminement": "BRAUX LE CHATEL", + "nomCommune": "BRAUX LE CHATEL" }, { - "codePostal": "43200", - "codeCommune": "43028", - "libelleAcheminement": "BESSAMOREL", - "nomCommune": "BESSAMOREL" + "codePostal": "51500", + "codeCommune": "51562", + "libelleAcheminement": "TAISSY", + "nomCommune": "TAISSY" }, { - "codePostal": "64430", - "codeCommune": "64477", - "libelleAcheminement": "ST ETIENNE DE BAIGORRY", - "nomCommune": "ST ETIENNE DE BAIGORRY" + "codePostal": "38390", + "codeCommune": "38083", + "libelleAcheminement": "CHARETTE", + "nomCommune": "CHARETTE" }, { - "codePostal": "14290", - "codeCommune": "14570", - "libelleAcheminement": "VALORBIQUET", - "nomCommune": "VALORBIQUET" + "codePostal": "39160", + "codeCommune": "39209", + "libelleAcheminement": "VAL D EPY", + "nomCommune": "VAL D EPY" }, { - "codePostal": "30480", - "codeCommune": "30291", - "libelleAcheminement": "ST PAUL LA COSTE", - "nomCommune": "ST PAUL LA COSTE" + "codePostal": "52000", + "codeCommune": "52072", + "libelleAcheminement": "BRETHENAY", + "nomCommune": "BRETHENAY" }, { - "codePostal": "43380", - "codeCommune": "43031", - "libelleAcheminement": "BLASSAC", - "nomCommune": "BLASSAC" + "codePostal": "51150", + "codeCommune": "51564", + "libelleAcheminement": "VAL DE LIVRE", + "nomCommune": "VAL DE LIVRE" }, { - "codePostal": "64110", - "codeCommune": "64478", - "libelleAcheminement": "ST FAUST", - "nomCommune": "ST FAUST" + "codePostal": "38230", + "codeCommune": "38097", + "libelleAcheminement": "CHAVANOZ", + "nomCommune": "CHAVANOZ" }, { - "codePostal": "14100", - "codeCommune": "14571", - "libelleAcheminement": "ST DENIS DE MAILLOC", - "nomCommune": "ST DENIS DE MAILLOC" + "codePostal": "39160", + "codeCommune": "39209", + "libelleAcheminement": "VAL D EPY", + "nomCommune": "VAL D EPY" }, { - "codePostal": "30340", - "codeCommune": "30294", - "libelleAcheminement": "ST PRIVAT DES VIEUX", - "nomCommune": "ST PRIVAT DES VIEUX" + "codePostal": "52500", + "codeCommune": "52083", + "libelleAcheminement": "CHAMPSEVRAINE", + "nomCommune": "CHAMPSEVRAINE" }, { - "codePostal": "43510", - "codeCommune": "43037", - "libelleAcheminement": "LE BOUCHET ST NICOLAS", - "nomCommune": "LE BOUCHET ST NICOLAS" + "codePostal": "51220", + "codeCommune": "51568", + "libelleAcheminement": "THIL", + "nomCommune": "THIL" }, { - "codePostal": "64390", - "codeCommune": "64480", - "libelleAcheminement": "ST GLADIE ARRIVE MUNEIN", - "nomCommune": "ST GLADIE ARRIVE MUNEIN" + "codePostal": "38730", + "codeCommune": "38098", + "libelleAcheminement": "CHELIEU", + "nomCommune": "CHELIEU" }, { - "codePostal": "14100", - "codeCommune": "14574", - "libelleAcheminement": "ST DESIR", - "nomCommune": "ST DESIR" + "codePostal": "39520", + "codeCommune": "39227", + "libelleAcheminement": "FONCINE LE BAS", + "nomCommune": "FONCINE LE BAS" }, { - "codePostal": "30750", - "codeCommune": "30297", - "libelleAcheminement": "ST SAUVEUR CAMPRIEU", - "nomCommune": "ST SAUVEUR CAMPRIEU" + "codePostal": "52500", + "codeCommune": "52083", + "libelleAcheminement": "CHAMPSEVRAINE", + "nomCommune": "CHAMPSEVRAINE" }, { - "codePostal": "43380", - "codeCommune": "43044", - "libelleAcheminement": "CERZAT", - "nomCommune": "CERZAT" + "codePostal": "51210", + "codeCommune": "51570", + "libelleAcheminement": "LE THOULT TROSNAY", + "nomCommune": "LE THOULT TROSNAY" }, { - "codePostal": "64330", - "codeCommune": "64486", - "libelleAcheminement": "ST JEAN POUDGE", - "nomCommune": "ST JEAN POUDGE" + "codePostal": "38121", + "codeCommune": "38107", + "libelleAcheminement": "CHONAS L AMBALLAN", + "nomCommune": "CHONAS L AMBALLAN" }, { - "codePostal": "14140", - "codeCommune": "14576", - "libelleAcheminement": "VAL DE VIE", - "nomCommune": "VAL DE VIE" + "codePostal": "39130", + "codeCommune": "39239", + "libelleAcheminement": "LA FRASNEE", + "nomCommune": "LA FRASNEE" }, { - "codePostal": "30260", - "codeCommune": "30300", - "libelleAcheminement": "ST THEODORIT", - "nomCommune": "ST THEODORIT" + "codePostal": "52000", + "codeCommune": "52087", + "libelleAcheminement": "BUXIERES LES VILLIERS", + "nomCommune": "BUXIERES LES VILLIERS" }, { - "codePostal": "43000", - "codeCommune": "43045", - "libelleAcheminement": "CEYSSAC", - "nomCommune": "CEYSSAC" + "codePostal": "51360", + "codeCommune": "51571", + "libelleAcheminement": "VAL DE VESLE", + "nomCommune": "VAL DE VESLE" }, { - "codePostal": "64160", - "codeCommune": "64488", - "libelleAcheminement": "ST LAURENT BRETAGNE", - "nomCommune": "ST LAURENT BRETAGNE" + "codePostal": "38680", + "codeCommune": "38108", + "libelleAcheminement": "CHORANCHE", + "nomCommune": "CHORANCHE" }, { - "codePostal": "14130", - "codeCommune": "14578", - "libelleAcheminement": "ST GATIEN DES BOIS", - "nomCommune": "ST GATIEN DES BOIS" + "codePostal": "39570", + "codeCommune": "39241", + "libelleAcheminement": "FREBUANS", + "nomCommune": "FREBUANS" }, { - "codePostal": "30700", - "codeCommune": "30301", - "libelleAcheminement": "ST VICTOR DES OULES", - "nomCommune": "ST VICTOR DES OULES" + "codePostal": "52220", + "codeCommune": "52088", + "libelleAcheminement": "CEFFONDS", + "nomCommune": "CEFFONDS" }, { - "codePostal": "43800", - "codeCommune": "43049", - "libelleAcheminement": "CHAMALIERES SUR LOIRE", - "nomCommune": "CHAMALIERES SUR LOIRE" + "codePostal": "51150", + "codeCommune": "51576", + "libelleAcheminement": "TOURS SUR MARNE", + "nomCommune": "TOURS SUR MARNE" }, { - "codePostal": "64640", - "codeCommune": "64489", - "libelleAcheminement": "ST MARTIN D ARBEROUE", - "nomCommune": "ST MARTIN D ARBEROUE" + "codePostal": "38200", + "codeCommune": "38110", + "libelleAcheminement": "CHUZELLES", + "nomCommune": "CHUZELLES" }, { - "codePostal": "14190", - "codeCommune": "14589", - "libelleAcheminement": "ST GERMAIN LE VASSON", - "nomCommune": "ST GERMAIN LE VASSON" + "codePostal": "39350", + "codeCommune": "39246", + "libelleAcheminement": "GENDREY", + "nomCommune": "GENDREY" }, { - "codePostal": "30340", - "codeCommune": "30305", - "libelleAcheminement": "SALINDRES", - "nomCommune": "SALINDRES" + "codePostal": "52360", + "codeCommune": "52089", + "libelleAcheminement": "CELLES EN BASSIGNY", + "nomCommune": "CELLES EN BASSIGNY" }, { - "codePostal": "43400", - "codeCommune": "43051", - "libelleAcheminement": "LE CHAMBON SUR LIGNON", - "nomCommune": "LE CHAMBON SUR LIGNON" + "codePostal": "51170", + "codeCommune": "51577", + "libelleAcheminement": "TRAMERY", + "nomCommune": "TRAMERY" }, { - "codePostal": "64370", - "codeCommune": "64491", - "libelleAcheminement": "ST MEDARD", - "nomCommune": "ST MEDARD" + "codePostal": "38650", + "codeCommune": "38115", + "libelleAcheminement": "ST MARTIN DE LA CLUZE", + "nomCommune": "ST MARTIN DE LA CLUZE" }, - { - "codePostal": "14130", - "codeCommune": "14593", - "libelleAcheminement": "ST HYMER", - "nomCommune": "ST HYMER" + { + "codePostal": "39240", + "codeCommune": "39247", + "libelleAcheminement": "GENOD", + "nomCommune": "GENOD" }, { - "codePostal": "30450", - "codeCommune": "30316", - "libelleAcheminement": "SENECHAS", - "nomCommune": "SENECHAS" + "codePostal": "52160", + "codeCommune": "52092", + "libelleAcheminement": "CHALANCEY", + "nomCommune": "CHALANCEY" }, { - "codePostal": "43120", - "codeCommune": "43058", - "libelleAcheminement": "LA CHAPELLE D AUREC", - "nomCommune": "LA CHAPELLE D AUREC" + "codePostal": "51340", + "codeCommune": "51583", + "libelleAcheminement": "TROIS FONTAINES L ABBAYE", + "nomCommune": "TROIS FONTAINES L ABBAYE" }, { - "codePostal": "64220", - "codeCommune": "64492", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "38350", + "codeCommune": "38116", + "libelleAcheminement": "COGNET", + "nomCommune": "COGNET" }, { - "codePostal": "14430", - "codeCommune": "14598", - "libelleAcheminement": "ST JOUIN", - "nomCommune": "ST JOUIN" + "codePostal": "39100", + "codeCommune": "39252", + "libelleAcheminement": "GEVRY", + "nomCommune": "GEVRY" }, { - "codePostal": "30340", - "codeCommune": "30318", - "libelleAcheminement": "SERVAS", - "nomCommune": "SERVAS" + "codePostal": "52160", + "codeCommune": "52094", + "libelleAcheminement": "VALS DES TILLES", + "nomCommune": "VALS DES TILLES" }, { - "codePostal": "43160", - "codeCommune": "43059", - "libelleAcheminement": "LA CHAPELLE GENESTE", - "nomCommune": "LA CHAPELLE GENESTE" + "codePostal": "51500", + "codeCommune": "51584", + "libelleAcheminement": "TROIS PUITS", + "nomCommune": "TROIS PUITS" }, { - "codePostal": "64990", - "codeCommune": "64496", - "libelleAcheminement": "ST PIERRE D IRUBE", - "nomCommune": "ST PIERRE D IRUBE" + "codePostal": "38260", + "codeCommune": "38130", + "libelleAcheminement": "LA COTE ST ANDRE", + "nomCommune": "LA COTE ST ANDRE" }, { - "codePostal": "14430", - "codeCommune": "14606", - "libelleAcheminement": "ST LEGER DUBOSQ", - "nomCommune": "ST LEGER DUBOSQ" + "codePostal": "39290", + "codeCommune": "39262", + "libelleAcheminement": "GREDISANS", + "nomCommune": "GREDISANS" }, { - "codePostal": "30110", - "codeCommune": "30323", - "libelleAcheminement": "SOUSTELLE", - "nomCommune": "SOUSTELLE" + "codePostal": "52160", + "codeCommune": "52094", + "libelleAcheminement": "VALS DES TILLES", + "nomCommune": "VALS DES TILLES" }, { - "codePostal": "43300", - "codeCommune": "43060", - "libelleAcheminement": "CHARRAIX", - "nomCommune": "CHARRAIX" + "codePostal": "51800", + "codeCommune": "51588", + "libelleAcheminement": "VALMY", + "nomCommune": "VALMY" }, { - "codePostal": "64300", - "codeCommune": "64510", - "libelleAcheminement": "SAULT DE NAVAILLES", - "nomCommune": "SAULT DE NAVAILLES" + "codePostal": "38138", + "codeCommune": "38131", + "libelleAcheminement": "LES COTES D AREY", + "nomCommune": "LES COTES D AREY" }, { - "codePostal": "14290", - "codeCommune": "14621", - "libelleAcheminement": "ST MARTIN BIENFAITE CRESSONNIERE", - "nomCommune": "ST MARTIN DE BIENFAITE LA CRESSONNIERE" + "codePostal": "39100", + "codeCommune": "39270", + "libelleAcheminement": "JOUHE", + "nomCommune": "JOUHE" }, { - "codePostal": "30126", - "codeCommune": "30326", - "libelleAcheminement": "TAVEL", - "nomCommune": "TAVEL" + "codePostal": "52160", + "codeCommune": "52094", + "libelleAcheminement": "VALS DES TILLES", + "nomCommune": "VALS DES TILLES" }, { - "codePostal": "43230", - "codeCommune": "43072", - "libelleAcheminement": "LA CHOMETTE", - "nomCommune": "LA CHOMETTE" + "codePostal": "51140", + "codeCommune": "51591", + "libelleAcheminement": "VANDEUIL", + "nomCommune": "VANDEUIL" }, { - "codePostal": "64150", - "codeCommune": "64512", - "libelleAcheminement": "SAUVELADE", - "nomCommune": "SAUVELADE" + "codePostal": "38210", + "codeCommune": "38137", + "libelleAcheminement": "CRAS", + "nomCommune": "CRAS" }, { - "codePostal": "14100", - "codeCommune": "14625", - "libelleAcheminement": "ST MARTIN DE LA LIEUE", - "nomCommune": "ST MARTIN DE LA LIEUE" + "codePostal": "39150", + "codeCommune": "39271", + "libelleAcheminement": "LAC DES ROUGES TRUITES", + "nomCommune": "LAC DES ROUGES TRUITES" }, { - "codePostal": "30140", - "codeCommune": "30329", - "libelleAcheminement": "THOIRAS", - "nomCommune": "THOIRAS" + "codePostal": "52160", + "codeCommune": "52094", + "libelleAcheminement": "VALS DES TILLES", + "nomCommune": "VALS DES TILLES" }, { - "codePostal": "43230", - "codeCommune": "43079", - "libelleAcheminement": "COUTEUGES", - "nomCommune": "COUTEUGES" + "codePostal": "51210", + "codeCommune": "51607", + "libelleAcheminement": "VERDON", + "nomCommune": "VERDON" }, { - "codePostal": "64410", - "codeCommune": "64514", - "libelleAcheminement": "SEBY", - "nomCommune": "SEBY" + "codePostal": "38110", + "codeCommune": "38148", + "libelleAcheminement": "DOLOMIEU", + "nomCommune": "DOLOMIEU" }, { - "codePostal": "14100", - "codeCommune": "14626", - "libelleAcheminement": "ST MARTIN DE MAILLOC", - "nomCommune": "ST MARTIN DE MAILLOC" + "codePostal": "39320", + "codeCommune": "39273", + "libelleAcheminement": "MONTLAINSIA", + "nomCommune": "MONTLAINSIA" }, { - "codePostal": "30700", - "codeCommune": "30334", - "libelleAcheminement": "UZES", - "nomCommune": "UZES" + "codePostal": "52160", + "codeCommune": "52094", + "libelleAcheminement": "VALS DES TILLES", + "nomCommune": "VALS DES TILLES" }, { - "codePostal": "43580", - "codeCommune": "43090", - "libelleAcheminement": "ESPLANTAS VAZEILLES", - "nomCommune": "ESPLANTAS VAZEILLES" + "codePostal": "51800", + "codeCommune": "51610", + "libelleAcheminement": "VERRIERES", + "nomCommune": "VERRIERES" }, { - "codePostal": "64260", - "codeCommune": "64522", - "libelleAcheminement": "SEVIGNACQ MEYRACQ", - "nomCommune": "SEVIGNACQ MEYRACQ" + "codePostal": "38380", + "codeCommune": "38155", + "libelleAcheminement": "ENTRE DEUX GUIERS", + "nomCommune": "ENTRE DEUX GUIERS" }, { - "codePostal": "14700", - "codeCommune": "14627", - "libelleAcheminement": "ST MARTIN DE MIEUX", - "nomCommune": "ST MARTIN DE MIEUX" + "codePostal": "39310", + "codeCommune": "39274", + "libelleAcheminement": "LAJOUX", + "nomCommune": "LAJOUX" }, { - "codePostal": "30570", - "codeCommune": "30339", - "libelleAcheminement": "VAL D AIGOUAL", - "nomCommune": "VAL D AIGOUAL" + "codePostal": "52410", + "codeCommune": "52099", + "libelleAcheminement": "CHAMOUILLEY", + "nomCommune": "CHAMOUILLEY" }, { - "codePostal": "43430", - "codeCommune": "43092", - "libelleAcheminement": "FAY SUR LIGNON", - "nomCommune": "FAY SUR LIGNON" + "codePostal": "51130", + "codeCommune": "51611", + "libelleAcheminement": "VERT TOULON", + "nomCommune": "VERT TOULON" }, { - "codePostal": "64470", - "codeCommune": "64533", - "libelleAcheminement": "TARDETS SORHOLUS", - "nomCommune": "TARDETS SORHOLUS" + "codePostal": "38690", + "codeCommune": "38159", + "libelleAcheminement": "EYDOCHE", + "nomCommune": "EYDOCHE" }, { - "codePostal": "14670", - "codeCommune": "14637", - "libelleAcheminement": "ST OUEN DU MESNIL OGER", - "nomCommune": "ST OUEN DU MESNIL OGER" + "codePostal": "39310", + "codeCommune": "39275", + "libelleAcheminement": "LAMOURA", + "nomCommune": "LAMOURA" }, { - "codePostal": "30600", - "codeCommune": "30341", - "libelleAcheminement": "VAUVERT", - "nomCommune": "VAUVERT" + "codePostal": "52100", + "codeCommune": "52104", + "libelleAcheminement": "CHANCENAY", + "nomCommune": "CHANCENAY" }, { - "codePostal": "43160", - "codeCommune": "43093", - "libelleAcheminement": "FELINES", - "nomCommune": "FELINES" + "codePostal": "51800", + "codeCommune": "51621", + "libelleAcheminement": "VIENNE LE CHATEAU", + "nomCommune": "VIENNE LE CHATEAU" }, { - "codePostal": "64330", - "codeCommune": "64534", - "libelleAcheminement": "TARON SADIRAC VIELLENAVE", - "nomCommune": "TARON SADIRAC VIELLENAVE" + "codePostal": "38110", + "codeCommune": "38162", + "libelleAcheminement": "FAVERGES DE LA TOUR", + "nomCommune": "FAVERGES DE LA TOUR" }, { - "codePostal": "14100", - "codeCommune": "14648", - "libelleAcheminement": "ST PIERRE DES IFS", - "nomCommune": "ST PIERRE DES IFS" + "codePostal": "39300", + "codeCommune": "39281", + "libelleAcheminement": "LE LATET", + "nomCommune": "LE LATET" }, { - "codePostal": "31110", - "codeCommune": "31010", - "libelleAcheminement": "ANTIGNAC", - "nomCommune": "ANTIGNAC" + "codePostal": "52190", + "codeCommune": "52113", + "libelleAcheminement": "CHASSIGNY", + "nomCommune": "CHASSIGNY" }, { - "codePostal": "43300", - "codeCommune": "43094", - "libelleAcheminement": "FERRUSSAC", - "nomCommune": "FERRUSSAC" + "codePostal": "51310", + "codeCommune": "51625", + "libelleAcheminement": "VILLENEUVE LA LIONNE", + "nomCommune": "VILLENEUVE LA LIONNE" }, { - "codePostal": "64700", - "codeCommune": "64545", - "libelleAcheminement": "URRUGNE", - "nomCommune": "URRUGNE" + "codePostal": "38530", + "codeCommune": "38166", + "libelleAcheminement": "LA FLACHERE", + "nomCommune": "LA FLACHERE" }, { - "codePostal": "14450", - "codeCommune": "14652", - "libelleAcheminement": "ST PIERRE DU MONT", - "nomCommune": "ST PIERRE DU MONT" + "codePostal": "39240", + "codeCommune": "39290", + "libelleAcheminement": "VALZIN EN PETITE MONTAGNE", + "nomCommune": "VALZIN EN PETITE MONTAGNE" }, { - "codePostal": "31160", - "codeCommune": "31012", - "libelleAcheminement": "ARBON", - "nomCommune": "ARBON" + "codePostal": "52120", + "codeCommune": "52114", + "libelleAcheminement": "CHATEAUVILLAIN", + "nomCommune": "CHATEAUVILLAIN" }, { - "codePostal": "43150", - "codeCommune": "43098", - "libelleAcheminement": "FREYCENET LA TOUR", - "nomCommune": "FREYCENET LA TOUR" + "codePostal": "51500", + "codeCommune": "51629", + "libelleAcheminement": "VILLERS ALLERAND", + "nomCommune": "VILLERS ALLERAND" }, { - "codePostal": "65100", - "codeCommune": "65002", - "libelleAcheminement": "ADE", - "nomCommune": "ADE" + "codePostal": "38080", + "codeCommune": "38172", + "libelleAcheminement": "FOUR", + "nomCommune": "FOUR" }, { - "codePostal": "14140", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "39240", + "codeCommune": "39290", + "libelleAcheminement": "VALZIN EN PETITE MONTAGNE", + "nomCommune": "VALZIN EN PETITE MONTAGNE" }, { - "codePostal": "31360", - "codeCommune": "31018", - "libelleAcheminement": "ARNAUD GUILHEM", - "nomCommune": "ARNAUD GUILHEM" + "codePostal": "52200", + "codeCommune": "52115", + "libelleAcheminement": "CHATENAY MACHERON", + "nomCommune": "CHATENAY MACHERON" }, { - "codePostal": "43230", - "codeCommune": "43100", - "libelleAcheminement": "FRUGIERES LE PIN", - "nomCommune": "FRUGIERES LE PIN" + "codePostal": "51500", + "codeCommune": "51631", + "libelleAcheminement": "VILLERS AUX NOEUDS", + "nomCommune": "VILLERS AUX NOEUDS" }, { - "codePostal": "65400", - "codeCommune": "65004", - "libelleAcheminement": "AGOS VIDALOS", - "nomCommune": "AGOS VIDALOS" + "codePostal": "38610", + "codeCommune": "38179", + "libelleAcheminement": "GIERES", + "nomCommune": "GIERES" }, { - "codePostal": "14140", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "39110", + "codeCommune": "39315", + "libelleAcheminement": "MARNOZ", + "nomCommune": "MARNOZ" }, { - "codePostal": "31190", - "codeCommune": "31024", - "libelleAcheminement": "AURAGNE", - "nomCommune": "AURAGNE" + "codePostal": "52170", + "codeCommune": "52123", + "libelleAcheminement": "CHEVILLON", + "nomCommune": "CHEVILLON" }, { - "codePostal": "43150", - "codeCommune": "43101", - "libelleAcheminement": "GOUDET", - "nomCommune": "GOUDET" + "codePostal": "51270", + "codeCommune": "51639", + "libelleAcheminement": "LA VILLE SOUS ORBAIS", + "nomCommune": "LA VILLE SOUS ORBAIS" }, { - "codePostal": "65150", - "codeCommune": "65009", - "libelleAcheminement": "ANERES", - "nomCommune": "ANERES" + "codePostal": "38570", + "codeCommune": "38181", + "libelleAcheminement": "GONCELIN", + "nomCommune": "GONCELIN" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "39210", + "codeCommune": "39321", + "libelleAcheminement": "MENETRU LE VIGNOBLE", + "nomCommune": "MENETRU LE VIGNOBLE" }, { - "codePostal": "31260", - "codeCommune": "31030", - "libelleAcheminement": "AUSSEING", - "nomCommune": "AUSSEING" + "codePostal": "52400", + "codeCommune": "52124", + "libelleAcheminement": "CHEZEAUX", + "nomCommune": "CHEZEAUX" }, { - "codePostal": "43200", - "codeCommune": "43114", - "libelleAcheminement": "LAPTE", - "nomCommune": "LAPTE" + "codePostal": "51330", + "codeCommune": "51658", + "libelleAcheminement": "VROIL", + "nomCommune": "VROIL" }, { - "codePostal": "65140", - "codeCommune": "65013", - "libelleAcheminement": "ANSOST", - "nomCommune": "ANSOST" + "codePostal": "38000", + "codeCommune": "38185", + "libelleAcheminement": "GRENOBLE", + "nomCommune": "GRENOBLE" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "39290", + "codeCommune": "39323", + "libelleAcheminement": "MENOTEY", + "nomCommune": "MENOTEY" }, { - "codePostal": "31840", - "codeCommune": "31032", - "libelleAcheminement": "AUSSONNE", - "nomCommune": "AUSSONNE" + "codePostal": "52240", + "codeCommune": "52127", + "libelleAcheminement": "CHOISEUL", + "nomCommune": "CHOISEUL" }, { - "codePostal": "43440", - "codeCommune": "43116", - "libelleAcheminement": "LAVAL SUR DOULON", - "nomCommune": "LAVAL SUR DOULON" + "codePostal": "52700", + "codeCommune": "52008", + "libelleAcheminement": "ANDELOT BLANCHEVILLE", + "nomCommune": "ANDELOT BLANCHEVILLE" }, { - "codePostal": "65370", - "codeCommune": "65014", - "libelleAcheminement": "ANTICHAN", - "nomCommune": "ANTICHAN" + "codePostal": "38220", + "codeCommune": "38212", + "libelleAcheminement": "LIVET ET GAVET", + "nomCommune": "LIVET ET GAVET" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "39250", + "codeCommune": "39331", + "libelleAcheminement": "MIGNOVILLARD", + "nomCommune": "MIGNOVILLARD" }, { - "codePostal": "31360", - "codeCommune": "31034", - "libelleAcheminement": "AUZAS", - "nomCommune": "AUZAS" + "codePostal": "52600", + "codeCommune": "52134", + "libelleAcheminement": "COHONS", + "nomCommune": "COHONS" }, { - "codePostal": "43580", - "codeCommune": "43136", - "libelleAcheminement": "MONISTROL D ALLIER", - "nomCommune": "MONISTROL D ALLIER" + "codePostal": "52700", + "codeCommune": "52008", + "libelleAcheminement": "ANDELOT BLANCHEVILLE", + "nomCommune": "ANDELOT BLANCHEVILLE" }, { - "codePostal": "65220", - "codeCommune": "65015", - "libelleAcheminement": "ANTIN", - "nomCommune": "ANTIN" + "codePostal": "38220", + "codeCommune": "38212", + "libelleAcheminement": "LIVET ET GAVET", + "nomCommune": "LIVET ET GAVET" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "39260", + "codeCommune": "39333", + "libelleAcheminement": "MOIRANS EN MONTAGNE", + "nomCommune": "MOIRANS EN MONTAGNE" }, { - "codePostal": "31320", - "codeCommune": "31035", - "libelleAcheminement": "AUZEVILLE TOLOSANE", - "nomCommune": "AUZEVILLE TOLOSANE" + "codePostal": "52160", + "codeCommune": "52137", + "libelleAcheminement": "COLMIER LE BAS", + "nomCommune": "COLMIER LE BAS" }, { - "codePostal": "43120", - "codeCommune": "43137", - "libelleAcheminement": "MONISTROL SUR LOIRE", - "nomCommune": "MONISTROL SUR LOIRE" + "codePostal": "52500", + "codeCommune": "52013", + "libelleAcheminement": "ANROSEY", + "nomCommune": "ANROSEY" }, { - "codePostal": "65170", - "codeCommune": "65017", - "libelleAcheminement": "ARAGNOUET", - "nomCommune": "ARAGNOUET" + "codePostal": "38260", + "codeCommune": "38218", + "libelleAcheminement": "MARCILLOLES", + "nomCommune": "MARCILLOLES" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "39360", + "codeCommune": "39339", + "libelleAcheminement": "CHASSAL MOLINGES", + "nomCommune": "CHASSAL MOLINGES" }, { - "codePostal": "31510", - "codeCommune": "31041", - "libelleAcheminement": "BAGIRY", - "nomCommune": "BAGIRY" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "43230", - "codeCommune": "43139", - "libelleAcheminement": "MONTCLARD", - "nomCommune": "MONTCLARD" + "codePostal": "52250", + "codeCommune": "52014", + "libelleAcheminement": "APREY", + "nomCommune": "APREY" }, { - "codePostal": "65100", - "codeCommune": "65020", - "libelleAcheminement": "ARCIZAC EZ ANGLES", - "nomCommune": "ARCIZAC EZ ANGLES" + "codePostal": "38350", + "codeCommune": "38224", + "libelleAcheminement": "MAYRES SAVEL", + "nomCommune": "MAYRES SAVEL" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "39160", + "codeCommune": "39346", + "libelleAcheminement": "MONTAGNA LE RECONDUIT", + "nomCommune": "MONTAGNA LE RECONDUIT" }, { - "codePostal": "31110", - "codeCommune": "31042", - "libelleAcheminement": "BAGNERES DE LUCHON", - "nomCommune": "BAGNERES DE LUCHON" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "43290", - "codeCommune": "43141", - "libelleAcheminement": "MONTFAUCON EN VELAY", - "nomCommune": "MONTFAUCON EN VELAY" + "codePostal": "52160", + "codeCommune": "52023", + "libelleAcheminement": "AUBERIVE", + "nomCommune": "AUBERIVE" }, { - "codePostal": "65400", - "codeCommune": "65025", - "libelleAcheminement": "ARGELES GAZOST", - "nomCommune": "ARGELES GAZOST" + "codePostal": "38300", + "codeCommune": "38230", + "libelleAcheminement": "MEYRIE", + "nomCommune": "MEYRIE" }, { - "codePostal": "14121", - "codeCommune": "14665", - "libelleAcheminement": "SALLENELLES", - "nomCommune": "SALLENELLES" + "codePostal": "39380", + "codeCommune": "39350", + "libelleAcheminement": "MONTBARREY", + "nomCommune": "MONTBARREY" }, { - "codePostal": "31580", - "codeCommune": "31043", - "libelleAcheminement": "BALESTA", - "nomCommune": "BALESTA" + "codePostal": "52300", + "codeCommune": "52156", + "libelleAcheminement": "CUREL", + "nomCommune": "CUREL" }, { - "codePostal": "43300", - "codeCommune": "43151", - "libelleAcheminement": "PINOLS", - "nomCommune": "PINOLS" + "codePostal": "52160", + "codeCommune": "52028", + "libelleAcheminement": "AULNOY SUR AUBE", + "nomCommune": "AULNOY SUR AUBE" }, { - "codePostal": "65240", - "codeCommune": "65031", - "libelleAcheminement": "ARREAU", - "nomCommune": "ARREAU" + "codePostal": "38430", + "codeCommune": "38239", + "libelleAcheminement": "MOIRANS", + "nomCommune": "MOIRANS" }, { - "codePostal": "14940", - "codeCommune": "14666", - "libelleAcheminement": "SANNERVILLE", - "nomCommune": "SANNERVILLE" + "codePostal": "39700", + "codeCommune": "39352", + "libelleAcheminement": "MONTEPLAIN", + "nomCommune": "MONTEPLAIN" }, { - "codePostal": "31310", - "codeCommune": "31047", - "libelleAcheminement": "BAX", - "nomCommune": "BAX" + "codePostal": "52110", + "codeCommune": "52160", + "libelleAcheminement": "DAILLANCOURT", + "nomCommune": "DAILLANCOURT" }, { - "codePostal": "43260", - "codeCommune": "43158", - "libelleAcheminement": "QUEYRIERES", - "nomCommune": "QUEYRIERES" + "codePostal": "52300", + "codeCommune": "52030", + "libelleAcheminement": "AUTIGNY LE PETIT", + "nomCommune": "AUTIGNY LE PETIT" }, { - "codePostal": "65500", - "codeCommune": "65035", - "libelleAcheminement": "ARTAGNAN", - "nomCommune": "ARTAGNAN" + "codePostal": "38390", + "codeCommune": "38247", + "libelleAcheminement": "MONTALIEU VERCIEU", + "nomCommune": "MONTALIEU VERCIEU" }, { - "codePostal": "14170", - "codeCommune": "14669", - "libelleAcheminement": "SASSY", - "nomCommune": "SASSY" + "codePostal": "39570", + "codeCommune": "39362", + "libelleAcheminement": "MONTMOROT", + "nomCommune": "MONTMOROT" }, { - "codePostal": "31450", - "codeCommune": "31048", - "libelleAcheminement": "BAZIEGE", - "nomCommune": "BAZIEGE" + "codePostal": "52400", + "codeCommune": "52164", + "libelleAcheminement": "DAMREMONT", + "nomCommune": "DAMREMONT" }, { - "codePostal": "43340", - "codeCommune": "43160", - "libelleAcheminement": "RAURET", - "nomCommune": "RAURET" + "codePostal": "52130", + "codeCommune": "52034", + "libelleAcheminement": "BAILLY AUX FORGES", + "nomCommune": "BAILLY AUX FORGES" }, { - "codePostal": "65100", - "codeCommune": "65040", - "libelleAcheminement": "ASPIN EN LAVEDAN", - "nomCommune": "ASPIN EN LAVEDAN" + "codePostal": "38330", + "codeCommune": "38249", + "libelleAcheminement": "MONTBONNOT ST MARTIN", + "nomCommune": "MONTBONNOT ST MARTIN" }, { - "codePostal": "14400", - "codeCommune": "14676", - "libelleAcheminement": "SOMMERVIEU", - "nomCommune": "SOMMERVIEU" + "codePostal": "39380", + "codeCommune": "39365", + "libelleAcheminement": "MONT SOUS VAUDREY", + "nomCommune": "MONT SOUS VAUDREY" }, { - "codePostal": "31480", - "codeCommune": "31062", - "libelleAcheminement": "BELLESSERRE", - "nomCommune": "BELLESSERRE" + "codePostal": "52110", + "codeCommune": "52171", + "libelleAcheminement": "DOMMARTIN LE FRANC", + "nomCommune": "DOMMARTIN LE FRANC" }, { - "codePostal": "43380", - "codeCommune": "43169", - "libelleAcheminement": "ST AUSTREMOINE", - "nomCommune": "ST AUSTREMOINE" + "codePostal": "52260", + "codeCommune": "52042", + "libelleAcheminement": "BEAUCHEMIN", + "nomCommune": "BEAUCHEMIN" }, { - "codePostal": "65350", - "codeCommune": "65044", - "libelleAcheminement": "AUBAREDE", - "nomCommune": "AUBAREDE" + "codePostal": "38890", + "codeCommune": "38250", + "libelleAcheminement": "MONTCARRA", + "nomCommune": "MONTCARRA" }, { - "codePostal": "14610", - "codeCommune": "14685", - "libelleAcheminement": "THAON", - "nomCommune": "THAON" + "codePostal": "39400", + "codeCommune": "39368", + "libelleAcheminement": "HAUTS DE BIENNE", + "nomCommune": "HAUTS DE BIENNE" }, { - "codePostal": "31420", - "codeCommune": "31063", - "libelleAcheminement": "BENQUE", - "nomCommune": "BENQUE" + "codePostal": "52270", + "codeCommune": "52173", + "libelleAcheminement": "DOMREMY LANDEVILLE", + "nomCommune": "DOMREMY LANDEVILLE" }, { - "codePostal": "43380", - "codeCommune": "43175", - "libelleAcheminement": "ST CIRGUES", - "nomCommune": "ST CIRGUES" + "codePostal": "52150", + "codeCommune": "52067", + "libelleAcheminement": "BRAINVILLE SUR MEUSE", + "nomCommune": "BRAINVILLE SUR MEUSE" }, { - "codePostal": "65240", - "codeCommune": "65046", - "libelleAcheminement": "AULON", - "nomCommune": "AULON" + "codePostal": "38860", + "codeCommune": "38253", + "libelleAcheminement": "LES DEUX ALPES", + "nomCommune": "LES DEUX ALPES" }, { - "codePostal": "14220", - "codeCommune": "14689", - "libelleAcheminement": "LE HOM", - "nomCommune": "LE HOM" + "codePostal": "39290", + "codeCommune": "39377", + "libelleAcheminement": "MUTIGNEY", + "nomCommune": "MUTIGNEY" }, { - "codePostal": "31110", - "codeCommune": "31064", - "libelleAcheminement": "BENQUE DESSOUS ET DESSUS", - "nomCommune": "BENQUE DESSOUS ET DESSUS" + "codePostal": "52230", + "codeCommune": "52181", + "libelleAcheminement": "ECHENAY", + "nomCommune": "ECHENAY" }, { - "codePostal": "43450", - "codeCommune": "43182", - "libelleAcheminement": "ST ETIENNE SUR BLESLE", - "nomCommune": "ST ETIENNE SUR BLESLE" + "codePostal": "52240", + "codeCommune": "52074", + "libelleAcheminement": "BREUVANNES EN BASSIGNY", + "nomCommune": "BREUVANNES EN BASSIGNY" }, { - "codePostal": "65800", - "codeCommune": "65047", - "libelleAcheminement": "AUREILHAN", - "nomCommune": "AUREILHAN" + "codePostal": "38860", + "codeCommune": "38253", + "libelleAcheminement": "LES DEUX ALPES", + "nomCommune": "LES DEUX ALPES" }, { - "codePostal": "14130", - "codeCommune": "14694", - "libelleAcheminement": "LE TORQUESNE", - "nomCommune": "LE TORQUESNE" + "codePostal": "39160", + "codeCommune": "39378", + "libelleAcheminement": "LES TROIS CHATEAUX", + "nomCommune": "LES TROIS CHATEAUX" }, { - "codePostal": "31370", - "codeCommune": "31065", - "libelleAcheminement": "BERAT", - "nomCommune": "BERAT" + "codePostal": "52190", + "codeCommune": "52189", + "libelleAcheminement": "LE VAL D ESNOMS", + "nomCommune": "LE VAL D ESNOMS" }, { - "codePostal": "43230", - "codeCommune": "43183", - "libelleAcheminement": "STE EUGENIE DE VILLENEUVE", - "nomCommune": "STE EUGENIE DE VILLENEUVE" + "codePostal": "52500", + "codeCommune": "52083", + "libelleAcheminement": "CHAMPSEVRAINE", + "nomCommune": "CHAMPSEVRAINE" }, { - "codePostal": "65700", - "codeCommune": "65049", - "libelleAcheminement": "AURIEBAT", - "nomCommune": "AURIEBAT" + "codePostal": "38510", + "codeCommune": "38261", + "libelleAcheminement": "MORESTEL", + "nomCommune": "MORESTEL" }, { - "codePostal": "14940", - "codeCommune": "14698", - "libelleAcheminement": "TOUFFREVILLE", - "nomCommune": "TOUFFREVILLE" + "codePostal": "39300", + "codeCommune": "39389", + "libelleAcheminement": "NEY", + "nomCommune": "NEY" }, { - "codePostal": "31230", - "codeCommune": "31072", - "libelleAcheminement": "BOISSEDE", - "nomCommune": "BOISSEDE" + "codePostal": "52340", + "codeCommune": "52190", + "libelleAcheminement": "ESNOUVEAUX", + "nomCommune": "ESNOUVEAUX" }, { - "codePostal": "43510", - "codeCommune": "43198", - "libelleAcheminement": "ST JEAN LACHALM", - "nomCommune": "ST JEAN LACHALM" + "codePostal": "52220", + "codeCommune": "52088", + "libelleAcheminement": "CEFFONDS", + "nomCommune": "CEFFONDS" }, { - "codePostal": "65240", - "codeCommune": "65050", - "libelleAcheminement": "AVAJAN", - "nomCommune": "AVAJAN" + "codePostal": "38350", + "codeCommune": "38264", + "libelleAcheminement": "LA MORTE", + "nomCommune": "LA MORTE" }, { - "codePostal": "14310", - "codeCommune": "14708", - "libelleAcheminement": "TRACY BOCAGE", - "nomCommune": "TRACY BOCAGE" + "codePostal": "39800", + "codeCommune": "39401", + "libelleAcheminement": "OUSSIERES", + "nomCommune": "OUSSIERES" }, { - "codePostal": "31470", - "codeCommune": "31075", - "libelleAcheminement": "BONREPOS SUR AUSSONNELLE", - "nomCommune": "BONREPOS SUR AUSSONNELLE" + "codePostal": "52500", + "codeCommune": "52197", + "libelleAcheminement": "FAYL BILLOT", + "nomCommune": "FAYL BILLOT" }, { - "codePostal": "43260", - "codeCommune": "43200", - "libelleAcheminement": "ST JULIEN CHAPTEUIL", - "nomCommune": "ST JULIEN CHAPTEUIL" + "codePostal": "52320", + "codeCommune": "52091", + "libelleAcheminement": "CERISIERES", + "nomCommune": "CERISIERES" }, { - "codePostal": "65660", - "codeCommune": "65051", - "libelleAcheminement": "AVENTIGNAN", - "nomCommune": "AVENTIGNAN" + "codePostal": "38770", + "codeCommune": "38265", + "libelleAcheminement": "LA MOTTE D AVEILLANS", + "nomCommune": "LA MOTTE D AVEILLANS" }, { - "codePostal": "14117", - "codeCommune": "14709", - "libelleAcheminement": "TRACY SUR MER", - "nomCommune": "TRACY SUR MER" + "codePostal": "39370", + "codeCommune": "39413", + "libelleAcheminement": "LA PESSE", + "nomCommune": "LA PESSE" }, { - "codePostal": "31350", - "codeCommune": "31080", - "libelleAcheminement": "BOULOGNE SUR GESSE", - "nomCommune": "BOULOGNE SUR GESSE" + "codePostal": "52130", + "codeCommune": "52198", + "libelleAcheminement": "FAYS", + "nomCommune": "FAYS" }, { - "codePostal": "43100", - "codeCommune": "43207", - "libelleAcheminement": "ST LAURENT CHABREUGES", - "nomCommune": "ST LAURENT CHABREUGES" + "codePostal": "52600", + "codeCommune": "52093", + "libelleAcheminement": "CHALINDREY", + "nomCommune": "CHALINDREY" }, { - "codePostal": "65130", - "codeCommune": "65054", - "libelleAcheminement": "AVEZAC PRAT LAHITTE", - "nomCommune": "AVEZAC PRAT LAHITTE" + "codePostal": "38140", + "codeCommune": "38270", + "libelleAcheminement": "LA MURETTE", + "nomCommune": "LA MURETTE" }, { - "codePostal": "14670", - "codeCommune": "14712", - "libelleAcheminement": "TROARN", - "nomCommune": "TROARN" + "codePostal": "39210", + "codeCommune": "39421", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "31440", - "codeCommune": "31085", - "libelleAcheminement": "BOUTX", - "nomCommune": "BOUTX" + "codePostal": "52320", + "codeCommune": "52211", + "libelleAcheminement": "FRONCLES", + "nomCommune": "FRONCLES" }, { - "codePostal": "43500", - "codeCommune": "43212", - "libelleAcheminement": "ST PAL DE CHALENCON", - "nomCommune": "ST PAL DE CHALENCON" + "codePostal": "52110", + "codeCommune": "52110", + "libelleAcheminement": "CHARMES LA GRANDE", + "nomCommune": "CHARMES LA GRANDE" }, { - "codePostal": "65710", - "codeCommune": "65059", - "libelleAcheminement": "BAGNERES DE BIGORRE", - "nomCommune": "BAGNERES DE BIGORRE" + "codePostal": "38160", + "codeCommune": "38272", + "libelleAcheminement": "MURINAIS", + "nomCommune": "MURINAIS" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "39250", + "codeCommune": "39427", + "libelleAcheminement": "PLENISE", + "nomCommune": "PLENISE" }, { - "codePostal": "31530", - "codeCommune": "31089", - "libelleAcheminement": "BRETX", - "nomCommune": "BRETX" + "codePostal": "52150", + "codeCommune": "52227", + "libelleAcheminement": "GRAFFIGNY CHEMIN", + "nomCommune": "GRAFFIGNY CHEMIN" }, { - "codePostal": "43620", - "codeCommune": "43213", - "libelleAcheminement": "ST PAL DE MONS", - "nomCommune": "ST PAL DE MONS" + "codePostal": "52120", + "codeCommune": "52114", + "libelleAcheminement": "CHATEAUVILLAIN", + "nomCommune": "CHATEAUVILLAIN" }, { - "codePostal": "65200", - "codeCommune": "65060", - "libelleAcheminement": "BANIOS", - "nomCommune": "BANIOS" + "codePostal": "38450", + "codeCommune": "38277", + "libelleAcheminement": "NOTRE DAME DE COMMIERS", + "nomCommune": "NOTRE DAME DE COMMIERS" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "39290", + "codeCommune": "39432", + "libelleAcheminement": "POINTRE", + "nomCommune": "POINTRE" }, { - "codePostal": "31560", - "codeCommune": "31100", - "libelleAcheminement": "CALMONT", - "nomCommune": "CALMONT" + "codePostal": "52320", + "codeCommune": "52230", + "libelleAcheminement": "GUDMONT VILLIERS", + "nomCommune": "GUDMONT VILLIERS" }, { - "codePostal": "43810", - "codeCommune": "43217", - "libelleAcheminement": "ST PIERRE DU CHAMP", - "nomCommune": "ST PIERRE DU CHAMP" + "codePostal": "52170", + "codeCommune": "52123", + "libelleAcheminement": "CHEVILLON", + "nomCommune": "CHEVILLON" }, { - "codePostal": "65240", - "codeCommune": "65066", - "libelleAcheminement": "BARRANCOUEU", - "nomCommune": "BARRANCOUEU" + "codePostal": "38220", + "codeCommune": "38279", + "libelleAcheminement": "NOTRE DAME DE MESAGE", + "nomCommune": "NOTRE DAME DE MESAGE" }, { - "codePostal": "14170", - "codeCommune": "14735", - "libelleAcheminement": "VENDEUVRE", - "nomCommune": "VENDEUVRE" + "codePostal": "39330", + "codeCommune": "39439", + "libelleAcheminement": "PORT LESNEY", + "nomCommune": "PORT LESNEY" }, { - "codePostal": "31460", - "codeCommune": "31106", - "libelleAcheminement": "CARAMAN", - "nomCommune": "CARAMAN" + "codePostal": "52300", + "codeCommune": "52231", + "libelleAcheminement": "GUINDRECOURT AUX ORMES", + "nomCommune": "GUINDRECOURT AUX ORMES" }, { - "codePostal": "43580", - "codeCommune": "43220", - "libelleAcheminement": "ST PREJET D ALLIER", - "nomCommune": "ST PREJET D ALLIER" + "codePostal": "52000", + "codeCommune": "52125", + "libelleAcheminement": "CHAMARANDES CHOIGNES", + "nomCommune": "CHAMARANDES CHOIGNES" }, { - "codePostal": "65460", - "codeCommune": "65072", - "libelleAcheminement": "BAZET", - "nomCommune": "BAZET" + "codePostal": "38350", + "codeCommune": "38283", + "libelleAcheminement": "ORIS EN RATTIER", + "nomCommune": "ORIS EN RATTIER" }, { - "codePostal": "14570", - "codeCommune": "14741", - "libelleAcheminement": "LE VEY", - "nomCommune": "LE VEY" + "codePostal": "39220", + "codeCommune": "39441", + "libelleAcheminement": "PREMANON", + "nomCommune": "PREMANON" }, { - "codePostal": "31260", - "codeCommune": "31112", - "libelleAcheminement": "CASTAGNEDE", - "nomCommune": "CASTAGNEDE" + "codePostal": "52100", + "codeCommune": "52235", + "libelleAcheminement": "HALLIGNICOURT", + "nomCommune": "HALLIGNICOURT" }, { - "codePostal": "43620", - "codeCommune": "43223", - "libelleAcheminement": "ST ROMAIN LACHALM", - "nomCommune": "ST ROMAIN LACHALM" + "codePostal": "52190", + "codeCommune": "52126", + "libelleAcheminement": "CHOILLEY DARDENAY", + "nomCommune": "CHOILLEY DARDENAY" }, { - "codePostal": "65100", - "codeCommune": "65082", - "libelleAcheminement": "BERBERUST LIAS", - "nomCommune": "BERBERUST LIAS" + "codePostal": "38260", + "codeCommune": "38284", + "libelleAcheminement": "ORNACIEUX BALBINS", + "nomCommune": "ORNACIEUX BALBINS" }, { - "codePostal": "14430", - "codeCommune": "14743", - "libelleAcheminement": "VICTOT PONTFOL", - "nomCommune": "VICTOT PONTFOL" + "codePostal": "39400", + "codeCommune": "39441", + "libelleAcheminement": "PREMANON", + "nomCommune": "PREMANON" }, { - "codePostal": "31430", - "codeCommune": "31119", - "libelleAcheminement": "CASTELNAU PICAMPEAU", - "nomCommune": "CASTELNAU PICAMPEAU" + "codePostal": "52150", + "codeCommune": "52237", + "libelleAcheminement": "HARREVILLE LES CHANTEURS", + "nomCommune": "HARREVILLE LES CHANTEURS" }, { - "codePostal": "43440", - "codeCommune": "43226", - "libelleAcheminement": "ST VERT", - "nomCommune": "ST VERT" + "codePostal": "52700", + "codeCommune": "52128", + "libelleAcheminement": "CIREY LES MAREILLES", + "nomCommune": "CIREY LES MAREILLES" }, { - "codePostal": "65190", - "codeCommune": "65086", - "libelleAcheminement": "BERNADETS DESSUS", - "nomCommune": "BERNADETS DESSUS" + "codePostal": "38520", + "codeCommune": "38285", + "libelleAcheminement": "ORNON", + "nomCommune": "ORNON" }, { - "codePostal": "14570", - "codeCommune": "14756", - "libelleAcheminement": "LA VILLETTE", - "nomCommune": "LA VILLETTE" + "codePostal": "39400", + "codeCommune": "39441", + "libelleAcheminement": "PREMANON", + "nomCommune": "PREMANON" }, { - "codePostal": "31350", - "codeCommune": "31121", - "libelleAcheminement": "CASTERA VIGNOLES", - "nomCommune": "CASTERA VIGNOLES" + "codePostal": "52000", + "codeCommune": "52251", + "libelleAcheminement": "JONCHERY", + "nomCommune": "JONCHERY" }, { - "codePostal": "43300", - "codeCommune": "43239", - "libelleAcheminement": "SIAUGUES STE MARIE", - "nomCommune": "SIAUGUES STE MARIE" + "codePostal": "52230", + "codeCommune": "52131", + "libelleAcheminement": "CIRFONTAINES EN ORNOIS", + "nomCommune": "CIRFONTAINES EN ORNOIS" }, { - "codePostal": "65120", - "codeCommune": "65089", - "libelleAcheminement": "BETPOUEY", - "nomCommune": "BETPOUEY" + "codePostal": "38780", + "codeCommune": "38288", + "libelleAcheminement": "OYTIER ST OBLAS", + "nomCommune": "OYTIER ST OBLAS" }, { - "codePostal": "14310", - "codeCommune": "14760", - "libelleAcheminement": "VILLY BOCAGE", - "nomCommune": "VILLY BOCAGE" + "codePostal": "39570", + "codeCommune": "39445", + "libelleAcheminement": "PUBLY", + "nomCommune": "PUBLY" }, { - "codePostal": "31190", - "codeCommune": "31128", - "libelleAcheminement": "CAUJAC", - "nomCommune": "CAUJAC" + "codePostal": "52330", + "codeCommune": "52254", + "libelleAcheminement": "LACHAPELLE EN BLAISY", + "nomCommune": "LACHAPELLE EN BLAISY" }, { - "codePostal": "43300", - "codeCommune": "43239", - "libelleAcheminement": "SIAUGUES STE MARIE", - "nomCommune": "SIAUGUES STE MARIE" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "65410", - "codeCommune": "65092", - "libelleAcheminement": "BEYREDE JUMET CAMOUS", - "nomCommune": "BEYREDE JUMET CAMOUS" + "codePostal": "38970", + "codeCommune": "38299", + "libelleAcheminement": "PELLAFOL", + "nomCommune": "PELLAFOL" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "39700", + "codeCommune": "39451", + "libelleAcheminement": "RANCHOT", + "nomCommune": "RANCHOT" }, { - "codePostal": "31110", - "codeCommune": "31129", - "libelleAcheminement": "CAZARILH LASPENES", - "nomCommune": "CAZARILH LASPENES" + "codePostal": "52700", + "codeCommune": "52256", + "libelleAcheminement": "LAFAUCHE", + "nomCommune": "LAFAUCHE" }, { - "codePostal": "43130", - "codeCommune": "43240", - "libelleAcheminement": "SOLIGNAC SOUS ROCHE", - "nomCommune": "SOLIGNAC SOUS ROCHE" + "codePostal": "52200", + "codeCommune": "52147", + "libelleAcheminement": "COURCELLES EN MONTAGNE", + "nomCommune": "COURCELLES EN MONTAGNE" }, { - "codePostal": "65400", - "codeCommune": "65098", - "libelleAcheminement": "BOO SILHEN", - "nomCommune": "BOO SILHEN" + "codePostal": "38710", + "codeCommune": "38321", + "libelleAcheminement": "PREBOIS", + "nomCommune": "PREBOIS" }, { - "codePostal": "15160", - "codeCommune": "15001", - "libelleAcheminement": "ALLANCHE", - "nomCommune": "ALLANCHE" + "codePostal": "39170", + "codeCommune": "39453", + "libelleAcheminement": "RAVILLOLES", + "nomCommune": "RAVILLOLES" }, { - "codePostal": "31470", - "codeCommune": "31166", - "libelleAcheminement": "EMPEAUX", - "nomCommune": "EMPEAUX" + "codePostal": "52200", + "codeCommune": "52269", + "libelleAcheminement": "LANGRES", + "nomCommune": "LANGRES" }, { - "codePostal": "43300", - "codeCommune": "43242", - "libelleAcheminement": "TAILHAC", - "nomCommune": "TAILHAC" + "codePostal": "52210", + "codeCommune": "52151", + "libelleAcheminement": "COUR L EVEQUE", + "nomCommune": "COUR L EVEQUE" }, { - "codePostal": "65320", - "codeCommune": "65100", - "libelleAcheminement": "BORDERES SUR L ECHEZ", - "nomCommune": "BORDERES SUR L ECHEZ" + "codePostal": "38950", + "codeCommune": "38328", + "libelleAcheminement": "QUAIX EN CHARTREUSE", + "nomCommune": "QUAIX EN CHARTREUSE" }, { - "codePostal": "15100", - "codeCommune": "15002", - "libelleAcheminement": "ALLEUZE", - "nomCommune": "ALLEUZE" + "codePostal": "39140", + "codeCommune": "39456", + "libelleAcheminement": "RELANS", + "nomCommune": "RELANS" }, { - "codePostal": "31160", - "codeCommune": "31167", - "libelleAcheminement": "ENCAUSSE LES THERMES", - "nomCommune": "ENCAUSSE LES THERMES" + "codePostal": "52140", + "codeCommune": "52275", + "libelleAcheminement": "LAVERNOY", + "nomCommune": "LAVERNOY" }, { - "codePostal": "43430", - "codeCommune": "43253", - "libelleAcheminement": "LES VASTRES", - "nomCommune": "LES VASTRES" + "codePostal": "52240", + "codeCommune": "52161", + "libelleAcheminement": "DAILLECOURT", + "nomCommune": "DAILLECOURT" }, { - "codePostal": "65460", - "codeCommune": "65108", - "libelleAcheminement": "BOURS", - "nomCommune": "BOURS" + "codePostal": "38970", + "codeCommune": "38329", + "libelleAcheminement": "QUET EN BEAUMONT", + "nomCommune": "QUET EN BEAUMONT" }, { - "codePostal": "15000", - "codeCommune": "15014", - "libelleAcheminement": "AURILLAC", - "nomCommune": "AURILLAC" + "codePostal": "39200", + "codeCommune": "39460", + "libelleAcheminement": "LA RIXOUSE", + "nomCommune": "LA RIXOUSE" }, { - "codePostal": "31450", - "codeCommune": "31171", - "libelleAcheminement": "ESPANES", - "nomCommune": "ESPANES" + "codePostal": "52000", + "codeCommune": "52276", + "libelleAcheminement": "LAVILLE AUX BOIS", + "nomCommune": "LAVILLE AUX BOIS" }, { - "codePostal": "43320", - "codeCommune": "43260", - "libelleAcheminement": "LE VERNET", - "nomCommune": "LE VERNET" + "codePostal": "52360", + "codeCommune": "52163", + "libelleAcheminement": "DAMPIERRE", + "nomCommune": "DAMPIERRE" }, { - "codePostal": "65130", - "codeCommune": "65111", - "libelleAcheminement": "BULAN", - "nomCommune": "BULAN" + "codePostal": "38140", + "codeCommune": "38331", + "libelleAcheminement": "REAUMONT", + "nomCommune": "REAUMONT" }, { - "codePostal": "15240", - "codeCommune": "15019", - "libelleAcheminement": "BASSIGNAC", - "nomCommune": "BASSIGNAC" + "codePostal": "39250", + "codeCommune": "39461", + "libelleAcheminement": "RIX", + "nomCommune": "RIX" }, { - "codePostal": "31190", - "codeCommune": "31173", - "libelleAcheminement": "ESPERCE", - "nomCommune": "ESPERCE" + "codePostal": "52210", + "codeCommune": "52282", + "libelleAcheminement": "LEFFONDS", + "nomCommune": "LEFFONDS" }, { - "codePostal": "43600", - "codeCommune": "43265", - "libelleAcheminement": "LES VILLETTES", - "nomCommune": "LES VILLETTES" + "codePostal": "52210", + "codeCommune": "52165", + "libelleAcheminement": "DANCEVOIR", + "nomCommune": "DANCEVOIR" }, { - "codePostal": "65190", - "codeCommune": "65118", - "libelleAcheminement": "CAHARET", - "nomCommune": "CAHARET" + "codePostal": "38140", + "codeCommune": "38332", + "libelleAcheminement": "RENAGE", + "nomCommune": "RENAGE" }, { - "codePostal": "15230", - "codeCommune": "15026", - "libelleAcheminement": "BREZONS", - "nomCommune": "BREZONS" + "codePostal": "39700", + "codeCommune": "39462", + "libelleAcheminement": "ROCHEFORT SUR NENON", + "nomCommune": "ROCHEFORT SUR NENON" }, { - "codePostal": "31800", - "codeCommune": "31175", - "libelleAcheminement": "ESTANCARBON", - "nomCommune": "ESTANCARBON" + "codePostal": "52190", + "codeCommune": "52285", + "libelleAcheminement": "LEUCHEY", + "nomCommune": "LEUCHEY" }, { - "codePostal": "43800", - "codeCommune": "43267", - "libelleAcheminement": "VOREY", - "nomCommune": "VOREY" + "codePostal": "52120", + "codeCommune": "52168", + "libelleAcheminement": "DINTEVILLE", + "nomCommune": "DINTEVILLE" }, { - "codePostal": "65500", - "codeCommune": "65121", - "libelleAcheminement": "CAMALES", - "nomCommune": "CAMALES" + "codePostal": "38680", + "codeCommune": "38333", + "libelleAcheminement": "RENCUREL", + "nomCommune": "RENCUREL" }, { - "codePostal": "15340", - "codeCommune": "15027", - "libelleAcheminement": "PUYCAPEL", - "nomCommune": "PUYCAPEL" + "codePostal": "39360", + "codeCommune": "39463", + "libelleAcheminement": "ROGNA", + "nomCommune": "ROGNA" }, { - "codePostal": "31540", - "codeCommune": "31180", - "libelleAcheminement": "FALGA", - "nomCommune": "FALGA" + "codePostal": "52700", + "codeCommune": "52286", + "libelleAcheminement": "LEURVILLE", + "nomCommune": "LEURVILLE" }, { - "codePostal": "43200", - "codeCommune": "43268", - "libelleAcheminement": "YSSINGEAUX", - "nomCommune": "YSSINGEAUX" + "codePostal": "52110", + "codeCommune": "52172", + "libelleAcheminement": "DOMMARTIN LE ST PERE", + "nomCommune": "DOMMARTIN LE ST PERE" }, { - "codePostal": "65710", - "codeCommune": "65123", - "libelleAcheminement": "CAMPAN", - "nomCommune": "CAMPAN" + "codePostal": "38270", + "codeCommune": "38335", + "libelleAcheminement": "REVEL TOURDAN", + "nomCommune": "REVEL TOURDAN" }, { - "codePostal": "15230", - "codeCommune": "15033", - "libelleAcheminement": "CEZENS", - "nomCommune": "CEZENS" + "codePostal": "39350", + "codeCommune": "39464", + "libelleAcheminement": "ROMAIN", + "nomCommune": "ROMAIN" }, { - "codePostal": "31410", - "codeCommune": "31181", - "libelleAcheminement": "LE FAUGA", - "nomCommune": "LE FAUGA" + "codePostal": "52230", + "codeCommune": "52288", + "libelleAcheminement": "LEZEVILLE", + "nomCommune": "LEZEVILLE" }, { - "codePostal": "44320", - "codeCommune": "44005", - "libelleAcheminement": "CHAUMES EN RETZ", - "nomCommune": "CHAUMES EN RETZ" + "codePostal": "52270", + "codeCommune": "52173", + "libelleAcheminement": "DOMREMY LANDEVILLE", + "nomCommune": "DOMREMY LANDEVILLE" }, { - "codePostal": "65350", - "codeCommune": "65131", - "libelleAcheminement": "CASTELVIEILH", - "nomCommune": "CASTELVIEILH" + "codePostal": "38300", + "codeCommune": "38351", + "libelleAcheminement": "ST AGNIN SUR BION", + "nomCommune": "ST AGNIN SUR BION" }, { - "codePostal": "15200", - "codeCommune": "15036", - "libelleAcheminement": "CHALVIGNAC", - "nomCommune": "CHALVIGNAC" + "codePostal": "39700", + "codeCommune": "39465", + "libelleAcheminement": "ROMANGE", + "nomCommune": "ROMANGE" }, { - "codePostal": "31370", - "codeCommune": "31189", - "libelleAcheminement": "FORGUES", - "nomCommune": "FORGUES" + "codePostal": "52250", + "codeCommune": "52292", + "libelleAcheminement": "LONGEAU PERCEY", + "nomCommune": "LONGEAU PERCEY" }, { - "codePostal": "44680", - "codeCommune": "44005", - "libelleAcheminement": "CHAUMES EN RETZ", - "nomCommune": "CHAUMES EN RETZ" + "codePostal": "52270", + "codeCommune": "52177", + "libelleAcheminement": "DOULAINCOURT SAUCOURT", + "nomCommune": "DOULAINCOURT SAUCOURT" }, { - "codePostal": "65190", - "codeCommune": "65132", - "libelleAcheminement": "CASTERA LANUSSE", - "nomCommune": "CASTERA LANUSSE" + "codePostal": "38490", + "codeCommune": "38357", + "libelleAcheminement": "ST ANDRE LE GAZ", + "nomCommune": "ST ANDRE LE GAZ" }, { - "codePostal": "15350", - "codeCommune": "15037", - "libelleAcheminement": "CHAMPAGNAC", - "nomCommune": "CHAMPAGNAC" + "codePostal": "39190", + "codeCommune": "39466", + "libelleAcheminement": "ROSAY", + "nomCommune": "ROSAY" }, { - "codePostal": "31430", - "codeCommune": "31193", - "libelleAcheminement": "LE FOUSSERET", - "nomCommune": "LE FOUSSERET" + "codePostal": "52130", + "codeCommune": "52294", + "libelleAcheminement": "LOUVEMONT", + "nomCommune": "LOUVEMONT" }, { - "codePostal": "44460", - "codeCommune": "44007", - "libelleAcheminement": "AVESSAC", - "nomCommune": "AVESSAC" + "codePostal": "52110", + "codeCommune": "52178", + "libelleAcheminement": "DOULEVANT LE CHATEAU", + "nomCommune": "DOULEVANT LE CHATEAU" }, { - "codePostal": "65110", - "codeCommune": "65138", - "libelleAcheminement": "CAUTERETS", - "nomCommune": "CAUTERETS" + "codePostal": "38118", + "codeCommune": "38365", + "libelleAcheminement": "ST BAUDILLE DE LA TOUR", + "nomCommune": "ST BAUDILLE DE LA TOUR" }, { - "codePostal": "15500", - "codeCommune": "15043", - "libelleAcheminement": "CHARMENSAC", - "nomCommune": "CHARMENSAC" + "codePostal": "39130", + "codeCommune": "39473", + "libelleAcheminement": "SAFFLOZ", + "nomCommune": "SAFFLOZ" }, { - "codePostal": "31430", - "codeCommune": "31204", - "libelleAcheminement": "FUSTIGNAC", - "nomCommune": "FUSTIGNAC" + "codePostal": "52130", + "codeCommune": "52300", + "libelleAcheminement": "MAGNEUX", + "nomCommune": "MAGNEUX" }, { - "codePostal": "44160", - "codeCommune": "44013", - "libelleAcheminement": "BESNE", - "nomCommune": "BESNE" + "codePostal": "52700", + "codeCommune": "52183", + "libelleAcheminement": "ECOT LA COMBE", + "nomCommune": "ECOT LA COMBE" }, { - "codePostal": "65130", - "codeCommune": "65143", - "libelleAcheminement": "CHELLE SPOU", - "nomCommune": "CHELLE SPOU" + "codePostal": "38520", + "codeCommune": "38375", + "libelleAcheminement": "ST CHRISTOPHE EN OISANS", + "nomCommune": "ST CHRISTOPHE EN OISANS" }, { - "codePostal": "15500", - "codeCommune": "15048", - "libelleAcheminement": "CHAZELLES", - "nomCommune": "CHAZELLES" + "codePostal": "39160", + "codeCommune": "39475", + "libelleAcheminement": "ST AMOUR", + "nomCommune": "ST AMOUR" }, { - "codePostal": "31290", - "codeCommune": "31210", - "libelleAcheminement": "GARDOUCH", - "nomCommune": "GARDOUCH" + "codePostal": "52500", + "codeCommune": "52303", + "libelleAcheminement": "MAIZIERES SUR AMANCE", + "nomCommune": "MAIZIERES SUR AMANCE" }, { - "codePostal": "44140", - "codeCommune": "44014", - "libelleAcheminement": "LE BIGNON", - "nomCommune": "LE BIGNON" + "codePostal": "52400", + "codeCommune": "52185", + "libelleAcheminement": "ENFONVELLE", + "nomCommune": "ENFONVELLE" }, { - "codePostal": "65350", - "codeCommune": "65156", - "libelleAcheminement": "DOURS", - "nomCommune": "DOURS" + "codePostal": "38110", + "codeCommune": "38381", + "libelleAcheminement": "ST DIDIER DE LA TOUR", + "nomCommune": "ST DIDIER DE LA TOUR" }, { - "codePostal": "15400", - "codeCommune": "15050", - "libelleAcheminement": "LE CLAUX", - "nomCommune": "LE CLAUX" + "codePostal": "39200", + "codeCommune": "39478", + "libelleAcheminement": "ST CLAUDE", + "nomCommune": "ST CLAUDE" }, { - "codePostal": "31620", - "codeCommune": "31211", - "libelleAcheminement": "GARGAS", - "nomCommune": "GARGAS" + "codePostal": "52240", + "codeCommune": "52320", + "libelleAcheminement": "MERREY", + "nomCommune": "MERREY" }, { - "codePostal": "44430", - "codeCommune": "44016", - "libelleAcheminement": "LA BOISSIERE DU DORE", - "nomCommune": "LA BOISSIERE DU DORE" + "codePostal": "52230", + "codeCommune": "52187", + "libelleAcheminement": "EPIZON", + "nomCommune": "EPIZON" }, { - "codePostal": "65170", - "codeCommune": "65157", - "libelleAcheminement": "ENS", - "nomCommune": "ENS" + "codePostal": "38590", + "codeCommune": "38387", + "libelleAcheminement": "ST GEOIRS", + "nomCommune": "ST GEOIRS" }, { - "codePostal": "15130", - "codeCommune": "15058", - "libelleAcheminement": "CROS DE RONESQUE", - "nomCommune": "CROS DE RONESQUE" + "codePostal": "39200", + "codeCommune": "39478", + "libelleAcheminement": "ST CLAUDE", + "nomCommune": "ST CLAUDE" }, { - "codePostal": "31350", - "codeCommune": "31218", - "libelleAcheminement": "GENSAC DE BOULOGNE", - "nomCommune": "GENSAC DE BOULOGNE" + "codePostal": "52320", + "codeCommune": "52326", + "libelleAcheminement": "MIRBEL", + "nomCommune": "MIRBEL" }, { - "codePostal": "44340", - "codeCommune": "44020", - "libelleAcheminement": "BOUGUENAIS", - "nomCommune": "BOUGUENAIS" + "codePostal": "52190", + "codeCommune": "52189", + "libelleAcheminement": "LE VAL D ESNOMS", + "nomCommune": "LE VAL D ESNOMS" }, { - "codePostal": "65250", - "codeCommune": "65159", - "libelleAcheminement": "ESCALA", - "nomCommune": "ESCALA" + "codePostal": "38840", + "codeCommune": "38394", + "libelleAcheminement": "ST HILAIRE DU ROSIER", + "nomCommune": "ST HILAIRE DU ROSIER" }, { - "codePostal": "15110", - "codeCommune": "15073", - "libelleAcheminement": "FRIDEFONT", - "nomCommune": "FRIDEFONT" + "codePostal": "39320", + "codeCommune": "39485", + "libelleAcheminement": "VAL SURAN", + "nomCommune": "VAL SURAN" }, { - "codePostal": "31230", - "codeCommune": "31223", - "libelleAcheminement": "GOUDEX", - "nomCommune": "GOUDEX" + "codePostal": "52700", + "codeCommune": "52335", + "libelleAcheminement": "MONTOT SUR ROGNON", + "nomCommune": "MONTOT SUR ROGNON" }, { - "codePostal": "44580", - "codeCommune": "44021", - "libelleAcheminement": "VILLENEUVE EN RETZ", - "nomCommune": "VILLENEUVE EN RETZ" + "codePostal": "52190", + "codeCommune": "52189", + "libelleAcheminement": "LE VAL D ESNOMS", + "nomCommune": "LE VAL D ESNOMS" }, { - "codePostal": "65130", - "codeCommune": "65165", - "libelleAcheminement": "ESPARROS", - "nomCommune": "ESPARROS" + "codePostal": "38660", + "codeCommune": "38395", + "libelleAcheminement": "PLATEAU DES PETITES ROCHES", + "nomCommune": "PLATEAU DES PETITES ROCHES" }, { - "codePostal": "15310", - "codeCommune": "15075", - "libelleAcheminement": "GIRGOLS", - "nomCommune": "GIRGOLS" + "codePostal": "39350", + "codeCommune": "39499", + "libelleAcheminement": "SALIGNEY", + "nomCommune": "SALIGNEY" }, { - "codePostal": "31210", - "codeCommune": "31224", - "libelleAcheminement": "GOURDAN POLIGNAN", - "nomCommune": "GOURDAN POLIGNAN" + "codePostal": "52360", + "codeCommune": "52362", + "libelleAcheminement": "ORBIGNY AU MONT", + "nomCommune": "ORBIGNY AU MONT" }, { - "codePostal": "44580", - "codeCommune": "44021", - "libelleAcheminement": "VILLENEUVE EN RETZ", - "nomCommune": "VILLENEUVE EN RETZ" + "codePostal": "52410", + "codeCommune": "52194", + "libelleAcheminement": "EURVILLE BIENVILLE", + "nomCommune": "EURVILLE BIENVILLE" }, { - "codePostal": "65400", - "codeCommune": "65169", - "libelleAcheminement": "ESTAING", - "nomCommune": "ESTAING" + "codePostal": "38660", + "codeCommune": "38395", + "libelleAcheminement": "PLATEAU DES PETITES ROCHES", + "nomCommune": "PLATEAU DES PETITES ROCHES" }, { - "codePostal": "15230", - "codeCommune": "15086", - "libelleAcheminement": "LACAPELLE BARRES", - "nomCommune": "LACAPELLE BARRES" + "codePostal": "39120", + "codeCommune": "39512", + "libelleAcheminement": "SERGENON", + "nomCommune": "SERGENON" }, { - "codePostal": "31380", - "codeCommune": "31228", - "libelleAcheminement": "GRAGNAGUE", - "nomCommune": "GRAGNAGUE" + "codePostal": "52120", + "codeCommune": "52365", + "libelleAcheminement": "ORGES", + "nomCommune": "ORGES" }, { - "codePostal": "44850", - "codeCommune": "44028", - "libelleAcheminement": "LE CELLIER", - "nomCommune": "LE CELLIER" + "codePostal": "52300", + "codeCommune": "52199", + "libelleAcheminement": "FERRIERE ET LAFOLIE", + "nomCommune": "FERRIERE ET LAFOLIE" }, { - "codePostal": "65220", - "codeCommune": "65177", - "libelleAcheminement": "FONTRAILLES", - "nomCommune": "FONTRAILLES" + "codePostal": "38350", + "codeCommune": "38396", + "libelleAcheminement": "ST HONORE", + "nomCommune": "ST HONORE" }, { - "codePostal": "15150", - "codeCommune": "15094", - "libelleAcheminement": "LAROQUEBROU", - "nomCommune": "LAROQUEBROU" + "codePostal": "39290", + "codeCommune": "39528", + "libelleAcheminement": "THERVAY", + "nomCommune": "THERVAY" }, { - "codePostal": "31480", - "codeCommune": "31234", - "libelleAcheminement": "LE GRES", - "nomCommune": "LE GRES" + "codePostal": "52310", + "codeCommune": "52367", + "libelleAcheminement": "ORMOY LES SEXFONTAINES", + "nomCommune": "ORMOY LES SEXFONTAINES" }, { - "codePostal": "44670", - "codeCommune": "44031", - "libelleAcheminement": "LA CHAPELLE GLAIN", - "nomCommune": "LA CHAPELLE GLAIN" + "codePostal": "52110", + "codeCommune": "52201", + "libelleAcheminement": "FLAMMERECOURT", + "nomCommune": "FLAMMERECOURT" }, { - "codePostal": "65190", - "codeCommune": "65181", - "libelleAcheminement": "FRECHOU FRECHET", - "nomCommune": "FRECHOU FRECHET" + "codePostal": "38440", + "codeCommune": "38399", + "libelleAcheminement": "ST JEAN DE BOURNAY", + "nomCommune": "ST JEAN DE BOURNAY" }, { - "codePostal": "15250", - "codeCommune": "15095", - "libelleAcheminement": "LAROQUEVIEILLE", - "nomCommune": "LAROQUEVIEILLE" + "codePostal": "39130", + "codeCommune": "39531", + "libelleAcheminement": "THOIRIA", + "nomCommune": "THOIRIA" }, { - "codePostal": "31160", - "codeCommune": "31241", - "libelleAcheminement": "IZAUT DE L HOTEL", - "nomCommune": "IZAUT DE L HOTEL" + "codePostal": "52700", + "codeCommune": "52369", + "libelleAcheminement": "ORQUEVAUX", + "nomCommune": "ORQUEVAUX" }, { - "codePostal": "44320", - "codeCommune": "44038", - "libelleAcheminement": "CHAUVE", - "nomCommune": "CHAUVE" + "codePostal": "52000", + "codeCommune": "52205", + "libelleAcheminement": "FOULAIN", + "nomCommune": "FOULAIN" }, { - "codePostal": "65400", - "codeCommune": "65182", - "libelleAcheminement": "GAILLAGOS", - "nomCommune": "GAILLAGOS" + "codePostal": "38110", + "codeCommune": "38401", + "libelleAcheminement": "ST JEAN DE SOUDAIN", + "nomCommune": "ST JEAN DE SOUDAIN" }, { - "codePostal": "15120", - "codeCommune": "15103", - "libelleAcheminement": "LEUCAMP", - "nomCommune": "LEUCAMP" + "codePostal": "39230", + "codeCommune": "39533", + "libelleAcheminement": "TOULOUSE LE CHATEAU", + "nomCommune": "TOULOUSE LE CHATEAU" }, { - "codePostal": "31110", - "codeCommune": "31244", - "libelleAcheminement": "JUZET DE LUCHON", - "nomCommune": "JUZET DE LUCHON" + "codePostal": "52300", + "codeCommune": "52370", + "libelleAcheminement": "OSNE LE VAL", + "nomCommune": "OSNE LE VAL" }, { - "codePostal": "44220", - "codeCommune": "44047", - "libelleAcheminement": "COUERON", - "nomCommune": "COUERON" + "codePostal": "52800", + "codeCommune": "52205", + "libelleAcheminement": "FOULAIN", + "nomCommune": "FOULAIN" }, { - "codePostal": "65370", - "codeCommune": "65186", - "libelleAcheminement": "GAUDENT", - "nomCommune": "GAUDENT" + "codePostal": "38122", + "codeCommune": "38406", + "libelleAcheminement": "ST JULIEN DE L HERMS", + "nomCommune": "ST JULIEN DE L HERMS" }, { - "codePostal": "15210", - "codeCommune": "15111", - "libelleAcheminement": "MADIC", - "nomCommune": "MADIC" + "codePostal": "39800", + "codeCommune": "39535", + "libelleAcheminement": "TOURMONT", + "nomCommune": "TOURMONT" }, { - "codePostal": "31800", - "codeCommune": "31247", - "libelleAcheminement": "LABARTHE RIVIERE", - "nomCommune": "LABARTHE RIVIERE" + "codePostal": "52400", + "codeCommune": "52377", + "libelleAcheminement": "PARNOY EN BASSIGNY", + "nomCommune": "PARNOY EN BASSIGNY" }, { - "codePostal": "44130", - "codeCommune": "44056", - "libelleAcheminement": "FAY DE BRETAGNE", - "nomCommune": "FAY DE BRETAGNE" + "codePostal": "52220", + "codeCommune": "52206", + "libelleAcheminement": "FRAMPAS", + "nomCommune": "FRAMPAS" }, { - "codePostal": "65250", - "codeCommune": "65190", - "libelleAcheminement": "GAZAVE", - "nomCommune": "GAZAVE" + "codePostal": "38540", + "codeCommune": "38408", + "libelleAcheminement": "ST JUST CHALEYSSIN", + "nomCommune": "ST JUST CHALEYSSIN" }, { - "codePostal": "15590", - "codeCommune": "15113", - "libelleAcheminement": "MANDAILLES ST JULIEN", - "nomCommune": "MANDAILLES ST JULIEN" + "codePostal": "39190", + "codeCommune": "39537", + "libelleAcheminement": "TRENAL", + "nomCommune": "TRENAL" }, { - "codePostal": "31450", - "codeCommune": "31249", - "libelleAcheminement": "LABASTIDE BEAUVOIR", - "nomCommune": "LABASTIDE BEAUVOIR" + "codePostal": "52240", + "codeCommune": "52385", + "libelleAcheminement": "PERRUSSE", + "nomCommune": "PERRUSSE" }, { - "codePostal": "44190", - "codeCommune": "44063", - "libelleAcheminement": "GETIGNE", - "nomCommune": "GETIGNE" + "codePostal": "52150", + "codeCommune": "52217", + "libelleAcheminement": "GERMAINVILLIERS", + "nomCommune": "GERMAINVILLIERS" }, { - "codePostal": "65240", - "codeCommune": "65195", - "libelleAcheminement": "GENOS", - "nomCommune": "GENOS" + "codePostal": "38840", + "codeCommune": "38410", + "libelleAcheminement": "ST LATTIER", + "nomCommune": "ST LATTIER" }, { - "codePostal": "15590", - "codeCommune": "15113", - "libelleAcheminement": "MANDAILLES ST JULIEN", - "nomCommune": "MANDAILLES ST JULIEN" + "codePostal": "39360", + "codeCommune": "39547", + "libelleAcheminement": "VAUX LES ST CLAUDE", + "nomCommune": "VAUX LES ST CLAUDE" }, { - "codePostal": "31600", - "codeCommune": "31253", - "libelleAcheminement": "LABASTIDETTE", - "nomCommune": "LABASTIDETTE" + "codePostal": "52160", + "codeCommune": "52395", + "libelleAcheminement": "POINSON LES GRANCEY", + "nomCommune": "POINSON LES GRANCEY" }, { - "codePostal": "44530", - "codeCommune": "44068", - "libelleAcheminement": "GUENROUET", - "nomCommune": "GUENROUET" + "codePostal": "52230", + "codeCommune": "52219", + "libelleAcheminement": "GERMISAY", + "nomCommune": "GERMISAY" }, { - "codePostal": "65170", - "codeCommune": "65208", - "libelleAcheminement": "GRAILHEN", - "nomCommune": "GRAILHEN" + "codePostal": "38080", + "codeCommune": "38415", + "libelleAcheminement": "ST MARCEL BEL ACCUEIL", + "nomCommune": "ST MARCEL BEL ACCUEIL" }, { - "codePostal": "15110", - "codeCommune": "15121", - "libelleAcheminement": "MAURINES", - "nomCommune": "MAURINES" + "codePostal": "39300", + "codeCommune": "39554", + "libelleAcheminement": "VERS EN MONTAGNE", + "nomCommune": "VERS EN MONTAGNE" }, { - "codePostal": "31290", - "codeCommune": "31262", - "libelleAcheminement": "LAGARDE", - "nomCommune": "LAGARDE" + "codePostal": "52120", + "codeCommune": "52399", + "libelleAcheminement": "PONT LA VILLE", + "nomCommune": "PONT LA VILLE" }, { - "codePostal": "44520", - "codeCommune": "44075", - "libelleAcheminement": "ISSE", - "nomCommune": "ISSE" + "codePostal": "52600", + "codeCommune": "52228", + "libelleAcheminement": "GRANDCHAMP", + "nomCommune": "GRANDCHAMP" }, { - "codePostal": "65230", - "codeCommune": "65214", - "libelleAcheminement": "HACHAN", - "nomCommune": "HACHAN" + "codePostal": "38550", + "codeCommune": "38425", + "libelleAcheminement": "ST MAURICE L EXIL", + "nomCommune": "ST MAURICE L EXIL" }, { - "codePostal": "15100", - "codeCommune": "15125", - "libelleAcheminement": "MENTIERES", - "nomCommune": "MENTIERES" + "codePostal": "39120", + "codeCommune": "39570", + "libelleAcheminement": "VILLERS LES BOIS", + "nomCommune": "VILLERS LES BOIS" }, { - "codePostal": "31600", - "codeCommune": "31269", - "libelleAcheminement": "LAMASQUERE", - "nomCommune": "LAMASQUERE" + "codePostal": "52190", + "codeCommune": "52405", + "libelleAcheminement": "LE MONTSAUGEONNAIS", + "nomCommune": "LE MONTSAUGEONNAIS" }, { - "codePostal": "44310", - "codeCommune": "44083", - "libelleAcheminement": "LA LIMOUZINIERE", - "nomCommune": "LA LIMOUZINIERE" + "codePostal": "52320", + "codeCommune": "52230", + "libelleAcheminement": "GUDMONT VILLIERS", + "nomCommune": "GUDMONT VILLIERS" }, { - "codePostal": "65380", - "codeCommune": "65220", - "libelleAcheminement": "HIBARETTE", - "nomCommune": "HIBARETTE" + "codePostal": "38330", + "codeCommune": "38431", + "libelleAcheminement": "ST NAZAIRE LES EYMES", + "nomCommune": "ST NAZAIRE LES EYMES" }, { - "codePostal": "15100", - "codeCommune": "15130", - "libelleAcheminement": "MONTCHAMP", - "nomCommune": "MONTCHAMP" + "codePostal": "39190", + "codeCommune": "39576", + "libelleAcheminement": "VAL SONNETTE", + "nomCommune": "VAL SONNETTE" }, { - "codePostal": "31180", - "codeCommune": "31273", - "libelleAcheminement": "LAPEYROUSE FOSSAT", - "nomCommune": "LAPEYROUSE FOSSAT" + "codePostal": "52220", + "codeCommune": "52411", + "libelleAcheminement": "RIVES DERVOISES", + "nomCommune": "RIVES DERVOISES" }, { - "codePostal": "44270", - "codeCommune": "44087", - "libelleAcheminement": "MACHECOUL ST MEME", - "nomCommune": "MACHECOUL ST MEME" + "codePostal": "52400", + "codeCommune": "52233", + "libelleAcheminement": "GUYONVELLE", + "nomCommune": "GUYONVELLE" }, { - "codePostal": "65200", - "codeCommune": "65221", - "libelleAcheminement": "HIIS", - "nomCommune": "HIIS" + "codePostal": "38500", + "codeCommune": "38432", + "libelleAcheminement": "ST NICOLAS DE MACHERIN", + "nomCommune": "ST NICOLAS DE MACHERIN" }, { - "codePostal": "15380", - "codeCommune": "15137", - "libelleAcheminement": "MOUSSAGES", - "nomCommune": "MOUSSAGES" + "codePostal": "39360", + "codeCommune": "39579", + "libelleAcheminement": "VIRY", + "nomCommune": "VIRY" }, { - "codePostal": "31530", - "codeCommune": "31277", - "libelleAcheminement": "LASSERRE PRADERE", - "nomCommune": "LASSERRE PRADERE" + "codePostal": "52370", + "codeCommune": "52419", + "libelleAcheminement": "RENNEPONT", + "nomCommune": "RENNEPONT" }, { - "codePostal": "44260", - "codeCommune": "44089", - "libelleAcheminement": "MALVILLE", - "nomCommune": "MALVILLE" + "codePostal": "52150", + "codeCommune": "52234", + "libelleAcheminement": "HACOURT", + "nomCommune": "HACOURT" }, { - "codePostal": "65420", - "codeCommune": "65226", - "libelleAcheminement": "IBOS", - "nomCommune": "IBOS" + "codePostal": "38140", + "codeCommune": "38437", + "libelleAcheminement": "ST PAUL D IZEAUX", + "nomCommune": "ST PAUL D IZEAUX" }, { - "codePostal": "15300", - "codeCommune": "15138", - "libelleAcheminement": "MURAT", - "nomCommune": "MURAT" + "codePostal": "40330", + "codeCommune": "40002", + "libelleAcheminement": "AMOU", + "nomCommune": "AMOU" }, { - "codePostal": "31330", - "codeCommune": "31281", - "libelleAcheminement": "LAUNAC", - "nomCommune": "LAUNAC" + "codePostal": "52330", + "codeCommune": "52426", + "libelleAcheminement": "RIZAUCOURT BUCHEY", + "nomCommune": "RIZAUCOURT BUCHEY" }, { - "codePostal": "44760", - "codeCommune": "44106", - "libelleAcheminement": "LES MOUTIERS EN RETZ", - "nomCommune": "LES MOUTIERS EN RETZ" + "codePostal": "52600", + "codeCommune": "52242", + "libelleAcheminement": "HAUTE AMANCE", + "nomCommune": "HAUTE AMANCE" }, { - "codePostal": "65240", - "codeCommune": "65234", - "libelleAcheminement": "JEZEAU", - "nomCommune": "JEZEAU" + "codePostal": "38350", + "codeCommune": "38444", + "libelleAcheminement": "ST PIERRE DE MEAROZ", + "nomCommune": "ST PIERRE DE MEAROZ" }, { - "codePostal": "15230", - "codeCommune": "15139", - "libelleAcheminement": "NARNHAC", - "nomCommune": "NARNHAC" + "codePostal": "40990", + "codeCommune": "40003", + "libelleAcheminement": "ANGOUME", + "nomCommune": "ANGOUME" }, { - "codePostal": "31650", - "codeCommune": "31284", - "libelleAcheminement": "LAUZERVILLE", - "nomCommune": "LAUZERVILLE" + "codePostal": "52700", + "codeCommune": "52428", + "libelleAcheminement": "ROCHEFORT SUR LA COTE", + "nomCommune": "ROCHEFORT SUR LA COTE" }, { - "codePostal": "44000", - "codeCommune": "44109", - "libelleAcheminement": "NANTES", - "nomCommune": "NANTES" + "codePostal": "52190", + "codeCommune": "52249", + "libelleAcheminement": "ISOMES", + "nomCommune": "ISOMES" }, { - "codePostal": "65700", - "codeCommune": "65243", - "libelleAcheminement": "LAFITOLE", - "nomCommune": "LAFITOLE" + "codePostal": "38220", + "codeCommune": "38445", + "libelleAcheminement": "ST PIERRE DE MESAGE", + "nomCommune": "ST PIERRE DE MESAGE" }, { - "codePostal": "15260", - "codeCommune": "15142", - "libelleAcheminement": "NEUVEGLISE SUR TRUYERE", - "nomCommune": "NEUVEGLISE SUR TRUYERE" + "codePostal": "40110", + "codeCommune": "40006", + "libelleAcheminement": "ARENGOSSE", + "nomCommune": "ARENGOSSE" }, { - "codePostal": "31160", - "codeCommune": "31294", - "libelleAcheminement": "LESPITEAU", - "nomCommune": "LESPITEAU" + "codePostal": "52210", + "codeCommune": "52431", + "libelleAcheminement": "ROCHETAILLEE", + "nomCommune": "ROCHETAILLEE" }, { - "codePostal": "44100", - "codeCommune": "44109", - "libelleAcheminement": "NANTES", - "nomCommune": "NANTES" + "codePostal": "52000", + "codeCommune": "52251", + "libelleAcheminement": "JONCHERY", + "nomCommune": "JONCHERY" }, { - "codePostal": "65220", - "codeCommune": "65253", - "libelleAcheminement": "LAMARQUE RUSTAING", - "nomCommune": "LAMARQUE RUSTAING" + "codePostal": "38510", + "codeCommune": "38458", + "libelleAcheminement": "ST SORLIN DE MORESTEL", + "nomCommune": "ST SORLIN DE MORESTEL" }, { - "codePostal": "15150", - "codeCommune": "15143", - "libelleAcheminement": "NIEUDAN", - "nomCommune": "NIEUDAN" + "codePostal": "40090", + "codeCommune": "40012", + "libelleAcheminement": "ARTASSENX", + "nomCommune": "ARTASSENX" }, { - "codePostal": "31460", - "codeCommune": "31304", - "libelleAcheminement": "LOUBENS LAURAGAIS", - "nomCommune": "LOUBENS LAURAGAIS" + "codePostal": "52200", + "codeCommune": "52449", + "libelleAcheminement": "SAINTS GEOSMES", + "nomCommune": "SAINTS GEOSMES" }, { - "codePostal": "44170", - "codeCommune": "44113", - "libelleAcheminement": "NOZAY", - "nomCommune": "NOZAY" + "codePostal": "52310", + "codeCommune": "52260", + "libelleAcheminement": "LAMANCINE", + "nomCommune": "LAMANCINE" }, { - "codePostal": "65240", - "codeCommune": "65255", - "libelleAcheminement": "LANCON", - "nomCommune": "LANCON" + "codePostal": "38660", + "codeCommune": "38466", + "libelleAcheminement": "ST VINCENT DE MERCUZE", + "nomCommune": "ST VINCENT DE MERCUZE" }, { - "codePostal": "15170", - "codeCommune": "15161", - "libelleAcheminement": "REZENTIERES", - "nomCommune": "REZENTIERES" + "codePostal": "40120", + "codeCommune": "40014", + "libelleAcheminement": "ARUE", + "nomCommune": "ARUE" }, { - "codePostal": "31510", - "codeCommune": "31306", - "libelleAcheminement": "LOURDE", - "nomCommune": "LOURDE" + "codePostal": "52210", + "codeCommune": "52450", + "libelleAcheminement": "ST LOUP SUR AUJON", + "nomCommune": "ST LOUP SUR AUJON" }, { - "codePostal": "44270", - "codeCommune": "44119", - "libelleAcheminement": "PAULX", - "nomCommune": "PAULX" + "codePostal": "52220", + "codeCommune": "52266", + "libelleAcheminement": "LANEUVILLE A REMY", + "nomCommune": "LANEUVILLE A REMY" }, { - "codePostal": "65670", - "codeCommune": "65261", - "libelleAcheminement": "LARAN", - "nomCommune": "LARAN" + "codePostal": "38260", + "codeCommune": "38473", + "libelleAcheminement": "SARDIEU", + "nomCommune": "SARDIEU" }, { - "codePostal": "15600", - "codeCommune": "15167", - "libelleAcheminement": "ROUZIERS", - "nomCommune": "ROUZIERS" + "codePostal": "40500", + "codeCommune": "40020", + "libelleAcheminement": "AURICE", + "nomCommune": "AURICE" }, { - "codePostal": "31510", - "codeCommune": "31313", - "libelleAcheminement": "MALVEZIE", - "nomCommune": "MALVEZIE" + "codePostal": "52210", + "codeCommune": "52450", + "libelleAcheminement": "ST LOUP SUR AUJON", + "nomCommune": "ST LOUP SUR AUJON" }, { - "codePostal": "44640", - "codeCommune": "44120", - "libelleAcheminement": "LE PELLERIN", - "nomCommune": "LE PELLERIN" + "codePostal": "52230", + "codeCommune": "52288", + "libelleAcheminement": "LEZEVILLE", + "nomCommune": "LEZEVILLE" }, { - "codePostal": "65700", - "codeCommune": "65264", - "libelleAcheminement": "LASCAZERES", - "nomCommune": "LASCAZERES" + "codePostal": "38290", + "codeCommune": "38475", + "libelleAcheminement": "SATOLAS ET BONCE", + "nomCommune": "SATOLAS ET BONCE" }, { - "codePostal": "15320", - "codeCommune": "15168", - "libelleAcheminement": "RUYNES EN MARGERIDE", - "nomCommune": "RUYNES EN MARGERIDE" + "codePostal": "40380", + "codeCommune": "40023", + "libelleAcheminement": "BAIGTS", + "nomCommune": "BAIGTS" }, { - "codePostal": "31390", - "codeCommune": "31320", - "libelleAcheminement": "MARQUEFAVE", - "nomCommune": "MARQUEFAVE" + "codePostal": "52200", + "codeCommune": "52452", + "libelleAcheminement": "ST MARTIN LES LANGRES", + "nomCommune": "ST MARTIN LES LANGRES" }, { - "codePostal": "44210", - "codeCommune": "44131", - "libelleAcheminement": "PORNIC", - "nomCommune": "PORNIC" + "codePostal": "52500", + "codeCommune": "52290", + "libelleAcheminement": "LES LOGES", + "nomCommune": "LES LOGES" }, { - "codePostal": "65670", - "codeCommune": "65266", - "libelleAcheminement": "LASSALES", - "nomCommune": "LASSALES" + "codePostal": "38290", + "codeCommune": "38475", + "libelleAcheminement": "SATOLAS ET BONCE", + "nomCommune": "SATOLAS ET BONCE" }, { - "codePostal": "15140", - "codeCommune": "15174", - "libelleAcheminement": "ST BONNET DE SALERS", - "nomCommune": "ST BONNET DE SALERS" + "codePostal": "40170", + "codeCommune": "40043", + "libelleAcheminement": "BIAS", + "nomCommune": "BIAS" }, { - "codePostal": "31260", - "codeCommune": "31321", - "libelleAcheminement": "MARSOULAS", - "nomCommune": "MARSOULAS" + "codePostal": "52140", + "codeCommune": "52461", + "libelleAcheminement": "SARREY", + "nomCommune": "SARREY" }, { - "codePostal": "44640", - "codeCommune": "44145", - "libelleAcheminement": "ROUANS", - "nomCommune": "ROUANS" + "codePostal": "52240", + "codeCommune": "52291", + "libelleAcheminement": "LONGCHAMP", + "nomCommune": "LONGCHAMP" }, { - "codePostal": "65400", - "codeCommune": "65267", - "libelleAcheminement": "LAU BALAGNAS", - "nomCommune": "LAU BALAGNAS" + "codePostal": "38260", + "codeCommune": "38479", + "libelleAcheminement": "PORTE DES BONNEVAUX", + "nomCommune": "PORTE DES BONNEVAUX" }, { - "codePostal": "15600", - "codeCommune": "15184", - "libelleAcheminement": "ST ETIENNE DE MAURS", - "nomCommune": "ST ETIENNE DE MAURS" + "codePostal": "40600", + "codeCommune": "40046", + "libelleAcheminement": "BISCARROSSE", + "nomCommune": "BISCARROSSE" }, { - "codePostal": "31230", - "codeCommune": "31322", - "libelleAcheminement": "MARTISSERRE", - "nomCommune": "MARTISSERRE" + "codePostal": "52700", + "codeCommune": "52468", + "libelleAcheminement": "SEMILLY", + "nomCommune": "SEMILLY" }, { - "codePostal": "44690", - "codeCommune": "44159", - "libelleAcheminement": "ST FIACRE SUR MAINE", - "nomCommune": "ST FIACRE SUR MAINE" + "codePostal": "52250", + "codeCommune": "52292", + "libelleAcheminement": "LONGEAU PERCEY", + "nomCommune": "LONGEAU PERCEY" }, { - "codePostal": "65380", - "codeCommune": "65268", - "libelleAcheminement": "LAYRISSE", - "nomCommune": "LAYRISSE" + "codePostal": "38300", + "codeCommune": "38481", + "libelleAcheminement": "SEREZIN DE LA TOUR", + "nomCommune": "SEREZIN DE LA TOUR" }, { - "codePostal": "15100", - "codeCommune": "15187", - "libelleAcheminement": "ST FLOUR", - "nomCommune": "ST FLOUR" + "codePostal": "40090", + "codeCommune": "40051", + "libelleAcheminement": "BOUGUE", + "nomCommune": "BOUGUE" }, { - "codePostal": "31310", - "codeCommune": "31326", - "libelleAcheminement": "MASSABRAC", - "nomCommune": "MASSABRAC" + "codePostal": "52000", + "codeCommune": "52469", + "libelleAcheminement": "SEMOUTIERS MONTSAON", + "nomCommune": "SEMOUTIERS MONTSAON" }, { - "codePostal": "44190", - "codeCommune": "44173", - "libelleAcheminement": "ST LUMINE DE CLISSON", - "nomCommune": "ST LUMINE DE CLISSON" + "codePostal": "52250", + "codeCommune": "52292", + "libelleAcheminement": "LONGEAU PERCEY", + "nomCommune": "LONGEAU PERCEY" }, { - "codePostal": "65100", - "codeCommune": "65271", - "libelleAcheminement": "LEZIGNAN", - "nomCommune": "LEZIGNAN" + "codePostal": "38200", + "codeCommune": "38487", + "libelleAcheminement": "SEYSSUEL", + "nomCommune": "SEYSSUEL" }, { - "codePostal": "15100", - "codeCommune": "15188", - "libelleAcheminement": "ST GEORGES", - "nomCommune": "ST GEORGES" + "codePostal": "40330", + "codeCommune": "40054", + "libelleAcheminement": "BRASSEMPOUY", + "nomCommune": "BRASSEMPOUY" }, { - "codePostal": "31290", - "codeCommune": "31328", - "libelleAcheminement": "MAUREMONT", - "nomCommune": "MAUREMONT" + "codePostal": "52400", + "codeCommune": "52470", + "libelleAcheminement": "SERQUEUX", + "nomCommune": "SERQUEUX" }, { - "codePostal": "44550", - "codeCommune": "44176", - "libelleAcheminement": "ST MALO DE GUERSAC", - "nomCommune": "ST MALO DE GUERSAC" + "codePostal": "52150", + "codeCommune": "52304", + "libelleAcheminement": "MALAINCOURT SUR MEUSE", + "nomCommune": "MALAINCOURT SUR MEUSE" }, { - "codePostal": "65250", - "codeCommune": "65279", - "libelleAcheminement": "LORTET", - "nomCommune": "LORTET" + "codePostal": "38590", + "codeCommune": "38490", + "libelleAcheminement": "SILLANS", + "nomCommune": "SILLANS" }, { - "codePostal": "15150", - "codeCommune": "15189", - "libelleAcheminement": "ST GERONS", - "nomCommune": "ST GERONS" + "codePostal": "40090", + "codeCommune": "40064", + "libelleAcheminement": "CANENX ET REAUT", + "nomCommune": "CANENX ET REAUT" }, { - "codePostal": "31190", - "codeCommune": "31330", - "libelleAcheminement": "MAURESSAC", - "nomCommune": "MAURESSAC" + "codePostal": "52120", + "codeCommune": "52474", + "libelleAcheminement": "SILVAROUVRES", + "nomCommune": "SILVAROUVRES" }, { - "codePostal": "44540", - "codeCommune": "44180", - "libelleAcheminement": "VALLONS DE L ERDRE", - "nomCommune": "VALLONS DE L ERDRE" + "codePostal": "52800", + "codeCommune": "52305", + "libelleAcheminement": "MANDRES LA COTE", + "nomCommune": "MANDRES LA COTE" }, { - "codePostal": "65100", - "codeCommune": "65286", - "libelleAcheminement": "LOURDES", - "nomCommune": "LOURDES" + "codePostal": "38660", + "codeCommune": "38503", + "libelleAcheminement": "LA TERRASSE", + "nomCommune": "LA TERRASSE" }, { - "codePostal": "15310", - "codeCommune": "15191", - "libelleAcheminement": "ST ILLIDE", - "nomCommune": "ST ILLIDE" + "codePostal": "40320", + "codeCommune": "40082", + "libelleAcheminement": "CLASSUN", + "nomCommune": "CLASSUN" }, { - "codePostal": "31440", - "codeCommune": "31337", - "libelleAcheminement": "MELLES", - "nomCommune": "MELLES" + "codePostal": "52150", + "codeCommune": "52476", + "libelleAcheminement": "SOMMERECOURT", + "nomCommune": "SOMMERECOURT" }, { - "codePostal": "44600", - "codeCommune": "44184", - "libelleAcheminement": "ST NAZAIRE", - "nomCommune": "ST NAZAIRE" + "codePostal": "52260", + "codeCommune": "52307", + "libelleAcheminement": "MARAC", + "nomCommune": "MARAC" }, { - "codePostal": "65120", - "codeCommune": "65295", - "libelleAcheminement": "LUZ ST SAUVEUR", - "nomCommune": "LUZ ST SAUVEUR" + "codePostal": "38260", + "codeCommune": "38505", + "libelleAcheminement": "THODURE", + "nomCommune": "THODURE" }, { - "codePostal": "15140", - "codeCommune": "15200", - "libelleAcheminement": "ST MARTIN CANTALES", - "nomCommune": "ST MARTIN CANTALES" + "codePostal": "40210", + "codeCommune": "40085", + "libelleAcheminement": "COMMENSACQ", + "nomCommune": "COMMENSACQ" }, { - "codePostal": "31160", - "codeCommune": "31342", - "libelleAcheminement": "MILHAS", - "nomCommune": "MILHAS" + "codePostal": "52230", + "codeCommune": "52491", + "libelleAcheminement": "THONNANCE LES MOULINS", + "nomCommune": "THONNANCE LES MOULINS" }, { - "codePostal": "44310", - "codeCommune": "44188", - "libelleAcheminement": "ST PHILBERT DE GRAND LIEU", - "nomCommune": "ST PHILBERT DE GRAND LIEU" + "codePostal": "52300", + "codeCommune": "52316", + "libelleAcheminement": "MATHONS", + "nomCommune": "MATHONS" }, { - "codePostal": "65120", - "codeCommune": "65295", - "libelleAcheminement": "LUZ ST SAUVEUR", - "nomCommune": "LUZ ST SAUVEUR" + "codePostal": "38230", + "codeCommune": "38507", + "libelleAcheminement": "TIGNIEU JAMEYZIEU", + "nomCommune": "TIGNIEU JAMEYZIEU" }, { - "codePostal": "15140", - "codeCommune": "15202", - "libelleAcheminement": "ST MARTIN VALMEROUX", - "nomCommune": "ST MARTIN VALMEROUX" + "codePostal": "40100", + "codeCommune": "40088", + "libelleAcheminement": "DAX", + "nomCommune": "DAX" }, { - "codePostal": "31340", - "codeCommune": "31346", - "libelleAcheminement": "MIREPOIX SUR TARN", - "nomCommune": "MIREPOIX SUR TARN" + "codePostal": "52600", + "codeCommune": "52492", + "libelleAcheminement": "TORCENAY", + "nomCommune": "TORCENAY" }, { - "codePostal": "44590", - "codeCommune": "44197", - "libelleAcheminement": "SION LES MINES", - "nomCommune": "SION LES MINES" + "codePostal": "52110", + "codeCommune": "52321", + "libelleAcheminement": "MERTRUD", + "nomCommune": "MERTRUD" }, { - "codePostal": "65700", - "codeCommune": "65304", - "libelleAcheminement": "MAUBOURGUET", - "nomCommune": "MAUBOURGUET" + "codePostal": "38690", + "codeCommune": "38508", + "libelleAcheminement": "TORCHEFELON", + "nomCommune": "TORCHEFELON" }, { - "codePostal": "15350", - "codeCommune": "15206", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "40800", + "codeCommune": "40091", + "libelleAcheminement": "DUHORT BACHEN", + "nomCommune": "DUHORT BACHEN" }, { - "codePostal": "31850", - "codeCommune": "31352", - "libelleAcheminement": "MONDOUZIL", - "nomCommune": "MONDOUZIL" + "codePostal": "52130", + "codeCommune": "52497", + "libelleAcheminement": "TROISFONTAINES LA VILLE", + "nomCommune": "TROISFONTAINES LA VILLE" }, { - "codePostal": "44840", - "codeCommune": "44198", - "libelleAcheminement": "LES SORINIERES", - "nomCommune": "LES SORINIERES" + "codePostal": "52400", + "codeCommune": "52328", + "libelleAcheminement": "MONTCHARVOT", + "nomCommune": "MONTCHARVOT" }, { - "codePostal": "65130", - "codeCommune": "65306", - "libelleAcheminement": "MAUVEZIN", - "nomCommune": "MAUVEZIN" + "codePostal": "38660", + "codeCommune": "38511", + "libelleAcheminement": "LE TOUVET", + "nomCommune": "LE TOUVET" }, { - "codePostal": "15140", - "codeCommune": "15208", - "libelleAcheminement": "ST PROJET DE SALERS", - "nomCommune": "ST PROJET DE SALERS" + "codePostal": "40240", + "codeCommune": "40096", + "libelleAcheminement": "ESTIGARDE", + "nomCommune": "ESTIGARDE" }, { - "codePostal": "31560", - "codeCommune": "31354", - "libelleAcheminement": "MONESTROL", - "nomCommune": "MONESTROL" + "codePostal": "52130", + "codeCommune": "52497", + "libelleAcheminement": "TROISFONTAINES LA VILLE", + "nomCommune": "TROISFONTAINES LA VILLE" }, { - "codePostal": "44470", - "codeCommune": "44204", - "libelleAcheminement": "THOUARE SUR LOIRE", - "nomCommune": "THOUARE SUR LOIRE" + "codePostal": "52330", + "codeCommune": "52330", + "libelleAcheminement": "MONTHERIES", + "nomCommune": "MONTHERIES" }, { - "codePostal": "65240", - "codeCommune": "65317", - "libelleAcheminement": "MONT", - "nomCommune": "MONT" + "codePostal": "38710", + "codeCommune": "38514", + "libelleAcheminement": "TREMINIS", + "nomCommune": "TREMINIS" }, { - "codePostal": "15600", - "codeCommune": "15212", - "libelleAcheminement": "ST SANTIN DE MAURS", - "nomCommune": "ST SANTIN DE MAURS" + "codePostal": "40500", + "codeCommune": "40099", + "libelleAcheminement": "FARGUES", + "nomCommune": "FARGUES" }, { - "codePostal": "31380", - "codeCommune": "31358", - "libelleAcheminement": "MONTASTRUC LA CONSEILLERE", - "nomCommune": "MONTASTRUC LA CONSEILLERE" + "codePostal": "52300", + "codeCommune": "52512", + "libelleAcheminement": "VECQUEVILLE", + "nomCommune": "VECQUEVILLE" }, { - "codePostal": "44390", - "codeCommune": "44205", - "libelleAcheminement": "LES TOUCHES", - "nomCommune": "LES TOUCHES" + "codePostal": "52220", + "codeCommune": "52331", + "libelleAcheminement": "LA PORTE DU DER", + "nomCommune": "LA PORTE DU DER" }, { - "codePostal": "65140", - "codeCommune": "65325", - "libelleAcheminement": "MOUMOULOUS", - "nomCommune": "MOUMOULOUS" + "codePostal": "38460", + "codeCommune": "38532", + "libelleAcheminement": "VENERIEU", + "nomCommune": "VENERIEU" }, { - "codePostal": "15110", - "codeCommune": "15216", - "libelleAcheminement": "ST URCIZE", - "nomCommune": "ST URCIZE" + "codePostal": "40190", + "codeCommune": "40100", + "libelleAcheminement": "LE FRECHE", + "nomCommune": "LE FRECHE" }, { - "codePostal": "31110", - "codeCommune": "31360", - "libelleAcheminement": "MONTAUBAN DE LUCHON", - "nomCommune": "MONTAUBAN DE LUCHON" + "codePostal": "52800", + "codeCommune": "52518", + "libelleAcheminement": "VESAIGNES SUR MARNE", + "nomCommune": "VESAIGNES SUR MARNE" }, { - "codePostal": "44570", - "codeCommune": "44210", - "libelleAcheminement": "TRIGNAC", - "nomCommune": "TRIGNAC" + "codePostal": "52140", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "65200", - "codeCommune": "65328", - "libelleAcheminement": "NEUILH", - "nomCommune": "NEUILH" + "codePostal": "38460", + "codeCommune": "38535", + "libelleAcheminement": "VERNAS", + "nomCommune": "VERNAS" }, { - "codePostal": "15140", - "codeCommune": "15219", - "libelleAcheminement": "SALERS", - "nomCommune": "SALERS" + "codePostal": "40270", + "codeCommune": "40117", + "libelleAcheminement": "GRENADE SUR L ADOUR", + "nomCommune": "GRENADE SUR L ADOUR" }, { - "codePostal": "31410", - "codeCommune": "31361", - "libelleAcheminement": "MONTAUT", - "nomCommune": "MONTAUT" + "codePostal": "52190", + "codeCommune": "52519", + "libelleAcheminement": "VESVRES SOUS CHALANCEY", + "nomCommune": "VESVRES SOUS CHALANCEY" }, { - "codePostal": "44640", - "codeCommune": "44220", - "libelleAcheminement": "VUE", - "nomCommune": "VUE" + "codePostal": "52140", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "65190", - "codeCommune": "65333", - "libelleAcheminement": "OLEAC DESSUS", - "nomCommune": "OLEAC DESSUS" + "codePostal": "38150", + "codeCommune": "38536", + "libelleAcheminement": "VERNIOZ", + "nomCommune": "VERNIOZ" }, { - "codePostal": "15290", - "codeCommune": "15224", - "libelleAcheminement": "LA SEGALASSIERE", - "nomCommune": "LA SEGALASSIERE" + "codePostal": "40300", + "codeCommune": "40120", + "libelleAcheminement": "HASTINGUES", + "nomCommune": "HASTINGUES" }, { - "codePostal": "31230", - "codeCommune": "31363", - "libelleAcheminement": "MONTBERNARD", - "nomCommune": "MONTBERNARD" + "codePostal": "52310", + "codeCommune": "52522", + "libelleAcheminement": "VIEVILLE", + "nomCommune": "VIEVILLE" }, { - "codePostal": "44810", - "codeCommune": "44221", - "libelleAcheminement": "LA CHEVALLERAIS", - "nomCommune": "LA CHEVALLERAIS" + "codePostal": "52130", + "codeCommune": "52336", + "libelleAcheminement": "MONTREUIL SUR BLAISE", + "nomCommune": "MONTREUIL SUR BLAISE" }, { - "codePostal": "65190", - "codeCommune": "65337", - "libelleAcheminement": "ORIEUX", - "nomCommune": "ORIEUX" + "codePostal": "38420", + "codeCommune": "38538", + "libelleAcheminement": "LE VERSOUD", + "nomCommune": "LE VERSOUD" }, { - "codePostal": "15100", - "codeCommune": "15235", - "libelleAcheminement": "LES TERNES", - "nomCommune": "LES TERNES" + "codePostal": "40280", + "codeCommune": "40122", + "libelleAcheminement": "HAUT MAUCO", + "nomCommune": "HAUT MAUCO" }, { - "codePostal": "31510", - "codeCommune": "31369", - "libelleAcheminement": "MONT DE GALIE", - "nomCommune": "MONT DE GALIE" + "codePostal": "52130", + "codeCommune": "52528", + "libelleAcheminement": "VILLE EN BLAISOIS", + "nomCommune": "VILLE EN BLAISOIS" }, { - "codePostal": "45480", - "codeCommune": "45005", - "libelleAcheminement": "ANDONVILLE", - "nomCommune": "ANDONVILLE" + "codePostal": "52230", + "codeCommune": "52337", + "libelleAcheminement": "MONTREUIL SUR THONNANCE", + "nomCommune": "MONTREUIL SUR THONNANCE" }, { - "codePostal": "65350", - "codeCommune": "65342", - "libelleAcheminement": "OSMETS", - "nomCommune": "OSMETS" + "codePostal": "38390", + "codeCommune": "38539", + "libelleAcheminement": "VERTRIEU", + "nomCommune": "VERTRIEU" }, { - "codePostal": "15100", - "codeCommune": "15237", - "libelleAcheminement": "TIVIERS", - "nomCommune": "TIVIERS" + "codePostal": "40300", + "codeCommune": "40132", + "libelleAcheminement": "LABATUT", + "nomCommune": "LABATUT" }, { - "codePostal": "31430", - "codeCommune": "31370", - "libelleAcheminement": "MONTEGUT BOURJAC", - "nomCommune": "MONTEGUT BOURJAC" + "codePostal": "52190", + "codeCommune": "52529", + "libelleAcheminement": "VILLEGUSIEN LE LAC", + "nomCommune": "VILLEGUSIEN LE LAC" }, { - "codePostal": "45170", - "codeCommune": "45009", - "libelleAcheminement": "ASCHERES LE MARCHE", - "nomCommune": "ASCHERES LE MARCHE" + "codePostal": "52360", + "codeCommune": "52348", + "libelleAcheminement": "NEUILLY L EVEQUE", + "nomCommune": "NEUILLY L EVEQUE" }, { - "codePostal": "65370", - "codeCommune": "65347", - "libelleAcheminement": "OURDE", - "nomCommune": "OURDE" + "codePostal": "38090", + "codeCommune": "38553", + "libelleAcheminement": "VILLEFONTAINE", + "nomCommune": "VILLEFONTAINE" }, { - "codePostal": "15400", - "codeCommune": "15243", - "libelleAcheminement": "TRIZAC", - "nomCommune": "TRIZAC" + "codePostal": "40250", + "codeCommune": "40143", + "libelleAcheminement": "LAMOTHE", + "nomCommune": "LAMOTHE" }, { - "codePostal": "31230", - "codeCommune": "31373", - "libelleAcheminement": "MONTESQUIEU GUITTAUT", - "nomCommune": "MONTESQUIEU GUITTAUT" + "codePostal": "52000", + "codeCommune": "52535", + "libelleAcheminement": "VILLIERS LE SEC", + "nomCommune": "VILLIERS LE SEC" }, { - "codePostal": "45500", - "codeCommune": "45016", - "libelleAcheminement": "AUTRY LE CHATEL", - "nomCommune": "AUTRY LE CHATEL" + "codePostal": "52800", + "codeCommune": "52352", + "libelleAcheminement": "NINVILLE", + "nomCommune": "NINVILLE" }, { - "codePostal": "65100", - "codeCommune": "65349", - "libelleAcheminement": "OURDON", - "nomCommune": "OURDON" + "codePostal": "38280", + "codeCommune": "38557", + "libelleAcheminement": "VILLETTE D ANTHON", + "nomCommune": "VILLETTE D ANTHON" }, { - "codePostal": "15240", - "codeCommune": "15250", - "libelleAcheminement": "VEBRET", - "nomCommune": "VEBRET" + "codePostal": "40170", + "codeCommune": "40154", + "libelleAcheminement": "LEVIGNACQ", + "nomCommune": "LEVIGNACQ" }, { - "codePostal": "31450", - "codeCommune": "31384", - "libelleAcheminement": "MONTLAUR", - "nomCommune": "MONTLAUR" + "codePostal": "52400", + "codeCommune": "52544", + "libelleAcheminement": "VOISEY", + "nomCommune": "VOISEY" }, { - "codePostal": "45270", - "codeCommune": "45017", - "libelleAcheminement": "AUVILLIERS EN GATINAIS", - "nomCommune": "AUVILLIERS EN GATINAIS" + "codePostal": "52800", + "codeCommune": "52353", + "libelleAcheminement": "NOGENT", + "nomCommune": "NOGENT" }, { - "codePostal": "65400", - "codeCommune": "65352", - "libelleAcheminement": "OUZOUS", - "nomCommune": "OUZOUS" + "codePostal": "38500", + "codeCommune": "38563", + "libelleAcheminement": "VOIRON", + "nomCommune": "VOIRON" }, { - "codePostal": "15100", - "codeCommune": "15251", - "libelleAcheminement": "VEDRINES ST LOUP", - "nomCommune": "VEDRINES ST LOUP" + "codePostal": "40260", + "codeCommune": "40155", + "libelleAcheminement": "LINXE", + "nomCommune": "LINXE" }, { - "codePostal": "31260", - "codeCommune": "31391", - "libelleAcheminement": "MONTSAUNES", - "nomCommune": "MONTSAUNES" + "codePostal": "52500", + "codeCommune": "52546", + "libelleAcheminement": "VONCOURT", + "nomCommune": "VONCOURT" }, { - "codePostal": "45130", - "codeCommune": "45024", - "libelleAcheminement": "BAULE", - "nomCommune": "BAULE" + "codePostal": "52800", + "codeCommune": "52353", + "libelleAcheminement": "NOGENT", + "nomCommune": "NOGENT" }, { - "codePostal": "65190", - "codeCommune": "65353", - "libelleAcheminement": "OZON", - "nomCommune": "OZON" + "codePostal": "39500", + "codeCommune": "39001", + "libelleAcheminement": "ABERGEMENT LA RONCE", + "nomCommune": "ABERGEMENT LA RONCE" }, { - "codePostal": "15800", - "codeCommune": "15258", - "libelleAcheminement": "VIC SUR CERE", - "nomCommune": "VIC SUR CERE" + "codePostal": "40240", + "codeCommune": "40158", + "libelleAcheminement": "LOSSE", + "nomCommune": "LOSSE" }, { - "codePostal": "31350", - "codeCommune": "31397", - "libelleAcheminement": "NENIGAN", - "nomCommune": "NENIGAN" + "codePostal": "52310", + "codeCommune": "52548", + "libelleAcheminement": "VRAINCOURT", + "nomCommune": "VRAINCOURT" }, { - "codePostal": "45290", - "codeCommune": "45036", - "libelleAcheminement": "BOISMORAND", - "nomCommune": "BOISMORAND" + "codePostal": "52800", + "codeCommune": "52353", + "libelleAcheminement": "NOGENT", + "nomCommune": "NOGENT" }, { - "codePostal": "65240", - "codeCommune": "65354", - "libelleAcheminement": "PAILHAC", - "nomCommune": "PAILHAC" + "codePostal": "39110", + "codeCommune": "39006", + "libelleAcheminement": "AIGLEPIERRE", + "nomCommune": "AIGLEPIERRE" }, { - "codePostal": "15120", - "codeCommune": "15260", - "libelleAcheminement": "VIEILLEVIE", - "nomCommune": "VIEILLEVIE" + "codePostal": "40380", + "codeCommune": "40159", + "libelleAcheminement": "LOUER", + "nomCommune": "LOUER" }, { - "codePostal": "31410", - "codeCommune": "31399", - "libelleAcheminement": "NOE", - "nomCommune": "NOE" + "codePostal": "53940", + "codeCommune": "53001", + "libelleAcheminement": "AHUILLE", + "nomCommune": "AHUILLE" }, { - "codePostal": "45460", - "codeCommune": "45039", - "libelleAcheminement": "BONNEE", - "nomCommune": "BONNEE" + "codePostal": "52600", + "codeCommune": "52354", + "libelleAcheminement": "NOIDANT CHATENOY", + "nomCommune": "NOIDANT CHATENOY" }, { - "codePostal": "65350", - "codeCommune": "65359", - "libelleAcheminement": "PEYRIGUERE", - "nomCommune": "PEYRIGUERE" + "codePostal": "39110", + "codeCommune": "39009", + "libelleAcheminement": "ANDELOT EN MONTAGNE", + "nomCommune": "ANDELOT EN MONTAGNE" }, { - "codePostal": "15130", - "codeCommune": "15266", - "libelleAcheminement": "YOLET", - "nomCommune": "YOLET" + "codePostal": "40240", + "codeCommune": "40161", + "libelleAcheminement": "LUBBON", + "nomCommune": "LUBBON" }, { - "codePostal": "31450", - "codeCommune": "31402", - "libelleAcheminement": "ODARS", - "nomCommune": "ODARS" + "codePostal": "53300", + "codeCommune": "53003", + "libelleAcheminement": "AMBRIERES LES VALLEES", + "nomCommune": "AMBRIERES LES VALLEES" }, { - "codePostal": "45460", - "codeCommune": "45042", - "libelleAcheminement": "LES BORDES", - "nomCommune": "LES BORDES" + "codePostal": "52200", + "codeCommune": "52355", + "libelleAcheminement": "NOIDANT LE ROCHEUX", + "nomCommune": "NOIDANT LE ROCHEUX" }, { - "codePostal": "65140", - "codeCommune": "65361", - "libelleAcheminement": "PEYRUN", - "nomCommune": "PEYRUN" + "codePostal": "39120", + "codeCommune": "39011", + "libelleAcheminement": "ANNOIRE", + "nomCommune": "ANNOIRE" }, { - "codePostal": "16140", - "codeCommune": "16005", - "libelleAcheminement": "AIGRE", - "nomCommune": "AIGRE" + "codePostal": "40700", + "codeCommune": "40172", + "libelleAcheminement": "MANT", + "nomCommune": "MANT" }, { - "codePostal": "31510", - "codeCommune": "31408", - "libelleAcheminement": "PAYSSOUS", - "nomCommune": "PAYSSOUS" + "codePostal": "53240", + "codeCommune": "53005", + "libelleAcheminement": "ANDOUILLE", + "nomCommune": "ANDOUILLE" }, { - "codePostal": "45430", - "codeCommune": "45043", - "libelleAcheminement": "BOU", - "nomCommune": "BOU" + "codePostal": "52300", + "codeCommune": "52356", + "libelleAcheminement": "NOMECOURT", + "nomCommune": "NOMECOURT" }, { - "codePostal": "65230", - "codeCommune": "65368", - "libelleAcheminement": "POUY", - "nomCommune": "POUY" + "codePostal": "39600", + "codeCommune": "39013", + "libelleAcheminement": "ARBOIS", + "nomCommune": "ARBOIS" }, { - "codePostal": "16490", - "codeCommune": "16009", - "libelleAcheminement": "AMBERNAC", - "nomCommune": "AMBERNAC" + "codePostal": "40400", + "codeCommune": "40180", + "libelleAcheminement": "MEILHAN", + "nomCommune": "MEILHAN" }, { - "codePostal": "31140", - "codeCommune": "31410", - "libelleAcheminement": "PECHBONNIEU", - "nomCommune": "PECHBONNIEU" + "codePostal": "53440", + "codeCommune": "53008", + "libelleAcheminement": "ARON", + "nomCommune": "ARON" }, { - "codePostal": "45300", - "codeCommune": "45045", - "libelleAcheminement": "BOUILLY EN GATINAIS", - "nomCommune": "BOUILLY EN GATINAIS" + "codePostal": "52250", + "codeCommune": "52364", + "libelleAcheminement": "ORCEVAUX", + "nomCommune": "ORCEVAUX" }, { - "codePostal": "65350", - "codeCommune": "65380", - "libelleAcheminement": "SABALOS", - "nomCommune": "SABALOS" + "codePostal": "39300", + "codeCommune": "39015", + "libelleAcheminement": "ARDON", + "nomCommune": "ARDON" }, { - "codePostal": "16300", - "codeCommune": "16014", - "libelleAcheminement": "ANGEDUC", - "nomCommune": "ANGEDUC" + "codePostal": "40320", + "codeCommune": "40185", + "libelleAcheminement": "MIRAMONT SENSACQ", + "nomCommune": "MIRAMONT SENSACQ" }, { - "codePostal": "31820", - "codeCommune": "31417", - "libelleAcheminement": "PIBRAC", - "nomCommune": "PIBRAC" + "codePostal": "53700", + "codeCommune": "53013", + "libelleAcheminement": "AVERTON", + "nomCommune": "AVERTON" }, { - "codePostal": "45300", - "codeCommune": "45047", - "libelleAcheminement": "BOUZONVILLE AUX BOIS", - "nomCommune": "BOUZONVILLE AUX BOIS" + "codePostal": "52230", + "codeCommune": "52376", + "libelleAcheminement": "PANSEY", + "nomCommune": "PANSEY" }, { - "codePostal": "65170", - "codeCommune": "65388", - "libelleAcheminement": "ST LARY SOULAN", - "nomCommune": "ST LARY SOULAN" + "codePostal": "39240", + "codeCommune": "39016", + "libelleAcheminement": "ARINTHOD", + "nomCommune": "ARINTHOD" }, { - "codePostal": "16130", - "codeCommune": "16018", - "libelleAcheminement": "ARS", - "nomCommune": "ARS" + "codePostal": "40700", + "codeCommune": "40188", + "libelleAcheminement": "MOMUY", + "nomCommune": "MOMUY" }, { - "codePostal": "31130", - "codeCommune": "31418", - "libelleAcheminement": "PIN BALMA", - "nomCommune": "PIN BALMA" + "codePostal": "53440", + "codeCommune": "53028", + "libelleAcheminement": "BELGEARD", + "nomCommune": "BELGEARD" }, { - "codePostal": "45250", - "codeCommune": "45053", - "libelleAcheminement": "BRIARE", - "nomCommune": "BRIARE" + "codePostal": "52400", + "codeCommune": "52377", + "libelleAcheminement": "PARNOY EN BASSIGNY", + "nomCommune": "PARNOY EN BASSIGNY" }, { - "codePostal": "65230", - "codeCommune": "65404", - "libelleAcheminement": "SARIAC MAGNOAC", - "nomCommune": "SARIAC MAGNOAC" + "codePostal": "39600", + "codeCommune": "39019", + "libelleAcheminement": "LES ARSURES", + "nomCommune": "LES ARSURES" }, { - "codePostal": "16460", - "codeCommune": "16023", - "libelleAcheminement": "AUNAC SUR CHARENTE", - "nomCommune": "AUNAC SUR CHARENTE" + "codePostal": "40500", + "codeCommune": "40191", + "libelleAcheminement": "MONTAUT", + "nomCommune": "MONTAUT" }, { - "codePostal": "31370", - "codeCommune": "31419", - "libelleAcheminement": "LE PIN MURELET", - "nomCommune": "LE PIN MURELET" + "codePostal": "53800", + "codeCommune": "53035", + "libelleAcheminement": "BOUCHAMPS LES CRAON", + "nomCommune": "BOUCHAMPS LES CRAON" }, { - "codePostal": "45620", - "codeCommune": "45063", - "libelleAcheminement": "CERDON", - "nomCommune": "CERDON" + "codePostal": "52200", + "codeCommune": "52380", + "libelleAcheminement": "PEIGNEY", + "nomCommune": "PEIGNEY" }, { - "codePostal": "65370", - "codeCommune": "65407", - "libelleAcheminement": "SARP", - "nomCommune": "SARP" + "codePostal": "39270", + "codeCommune": "39021", + "libelleAcheminement": "LA CHAILLEUSE", + "nomCommune": "LA CHAILLEUSE" }, { - "codePostal": "16460", - "codeCommune": "16023", - "libelleAcheminement": "AUNAC SUR CHARENTE", - "nomCommune": "AUNAC SUR CHARENTE" + "codePostal": "40500", + "codeCommune": "40196", + "libelleAcheminement": "MONTSOUE", + "nomCommune": "MONTSOUE" }, { - "codePostal": "31120", - "codeCommune": "31420", - "libelleAcheminement": "PINSAGUEL", - "nomCommune": "PINSAGUEL" + "codePostal": "53120", + "codeCommune": "53042", + "libelleAcheminement": "BRECE", + "nomCommune": "BRECE" }, { - "codePostal": "45260", - "codeCommune": "45066", - "libelleAcheminement": "CHAILLY EN GATINAIS", - "nomCommune": "CHAILLY EN GATINAIS" + "codePostal": "52500", + "codeCommune": "52406", + "libelleAcheminement": "PRESSIGNY", + "nomCommune": "PRESSIGNY" }, { - "codePostal": "65700", - "codeCommune": "65412", - "libelleAcheminement": "SAUVETERRE", - "nomCommune": "SAUVETERRE" + "codePostal": "39190", + "codeCommune": "39025", + "libelleAcheminement": "AUGEA", + "nomCommune": "AUGEA" }, { - "codePostal": "16300", - "codeCommune": "16028", - "libelleAcheminement": "BARBEZIEUX ST HILAIRE", - "nomCommune": "BARBEZIEUX ST HILAIRE" + "codePostal": "40110", + "codeCommune": "40197", + "libelleAcheminement": "MORCENX LA NOUVELLE", + "nomCommune": "MORCENX LA NOUVELLE" }, { - "codePostal": "31450", - "codeCommune": "31437", - "libelleAcheminement": "POUZE", - "nomCommune": "POUZE" + "codePostal": "53150", + "codeCommune": "53043", + "libelleAcheminement": "BREE", + "nomCommune": "BREE" }, { - "codePostal": "45340", - "codeCommune": "45069", - "libelleAcheminement": "CHAMBON LA FORET", - "nomCommune": "CHAMBON LA FORET" + "codePostal": "52700", + "codeCommune": "52407", + "libelleAcheminement": "PREZ SOUS LAFAUCHE", + "nomCommune": "PREZ SOUS LAFAUCHE" }, { - "codePostal": "65220", - "codeCommune": "65423", - "libelleAcheminement": "SERE RUSTAING", - "nomCommune": "SERE RUSTAING" + "codePostal": "39270", + "codeCommune": "39027", + "libelleAcheminement": "AUGISEY", + "nomCommune": "AUGISEY" }, { - "codePostal": "16450", - "codeCommune": "16035", - "libelleAcheminement": "BEAULIEU SUR SONNETTE", - "nomCommune": "BEAULIEU SUR SONNETTE" + "codePostal": "40110", + "codeCommune": "40197", + "libelleAcheminement": "MORCENX LA NOUVELLE", + "nomCommune": "MORCENX LA NOUVELLE" }, { - "codePostal": "31230", - "codeCommune": "31443", - "libelleAcheminement": "PUYMAURIN", - "nomCommune": "PUYMAURIN" + "codePostal": "53420", + "codeCommune": "53048", + "libelleAcheminement": "CHAILLAND", + "nomCommune": "CHAILLAND" }, { - "codePostal": "45230", - "codeCommune": "45077", - "libelleAcheminement": "LA CHAPELLE SUR AVEYRON", - "nomCommune": "LA CHAPELLE SUR AVEYRON" + "codePostal": "52220", + "codeCommune": "52411", + "libelleAcheminement": "RIVES DERVOISES", + "nomCommune": "RIVES DERVOISES" }, { - "codePostal": "65370", - "codeCommune": "65427", - "libelleAcheminement": "SIRADAN", - "nomCommune": "SIRADAN" + "codePostal": "39100", + "codeCommune": "39030", + "libelleAcheminement": "AUTHUME", + "nomCommune": "AUTHUME" }, { - "codePostal": "16250", - "codeCommune": "16046", - "libelleAcheminement": "COTEAUX DU BLANZACAIS", - "nomCommune": "COTEAUX DU BLANZACAIS" + "codePostal": "40110", + "codeCommune": "40197", + "libelleAcheminement": "MORCENX LA NOUVELLE", + "nomCommune": "MORCENX LA NOUVELLE" }, { - "codePostal": "31290", - "codeCommune": "31450", - "libelleAcheminement": "RENNEVILLE", - "nomCommune": "RENNEVILLE" + "codePostal": "53470", + "codeCommune": "53049", + "libelleAcheminement": "CHALONS DU MAINE", + "nomCommune": "CHALONS DU MAINE" }, { - "codePostal": "45480", - "codeCommune": "45080", - "libelleAcheminement": "CHARMONT EN BEAUCE", - "nomCommune": "CHARMONT EN BEAUCE" + "codePostal": "52140", + "codeCommune": "52415", + "libelleAcheminement": "RANCONNIERES", + "nomCommune": "RANCONNIERES" }, { - "codePostal": "65700", - "codeCommune": "65429", - "libelleAcheminement": "SOMBRUN", - "nomCommune": "SOMBRUN" + "codePostal": "39130", + "codeCommune": "39038", + "libelleAcheminement": "BARESIA SUR L AIN", + "nomCommune": "BARESIA SUR L AIN" }, { - "codePostal": "16250", - "codeCommune": "16046", - "libelleAcheminement": "COTEAUX DU BLANZACAIS", - "nomCommune": "COTEAUX DU BLANZACAIS" + "codePostal": "40700", + "codeCommune": "40198", + "libelleAcheminement": "MORGANX", + "nomCommune": "MORGANX" }, { - "codePostal": "31250", - "codeCommune": "31451", - "libelleAcheminement": "REVEL", - "nomCommune": "REVEL" + "codePostal": "53640", + "codeCommune": "53051", + "libelleAcheminement": "CHAMPEON", + "nomCommune": "CHAMPEON" }, { - "codePostal": "45110", - "codeCommune": "45082", - "libelleAcheminement": "CHATEAUNEUF SUR LOIRE", - "nomCommune": "CHATEAUNEUF SUR LOIRE" + "codePostal": "52000", + "codeCommune": "52421", + "libelleAcheminement": "RIAUCOURT", + "nomCommune": "RIAUCOURT" }, { - "codePostal": "65350", - "codeCommune": "65430", - "libelleAcheminement": "SOREAC", - "nomCommune": "SOREAC" + "codePostal": "39800", + "codeCommune": "39049", + "libelleAcheminement": "BERSAILLIN", + "nomCommune": "BERSAILLIN" }, { - "codePostal": "16190", - "codeCommune": "16052", - "libelleAcheminement": "BORS DE MONTMOREAU", - "nomCommune": "BORS DE MONTMOREAU" + "codePostal": "40110", + "codeCommune": "40210", + "libelleAcheminement": "ONESSE LAHARIE", + "nomCommune": "ONESSE LAHARIE" }, { - "codePostal": "31230", - "codeCommune": "31456", - "libelleAcheminement": "RIOLAS", - "nomCommune": "RIOLAS" + "codePostal": "53200", + "codeCommune": "53063", + "libelleAcheminement": "CHATELAIN", + "nomCommune": "CHATELAIN" }, { - "codePostal": "45210", - "codeCommune": "45091", - "libelleAcheminement": "CHEVANNES", - "nomCommune": "CHEVANNES" + "codePostal": "52190", + "codeCommune": "52425", + "libelleAcheminement": "RIVIERE LES FOSSES", + "nomCommune": "RIVIERE LES FOSSES" }, { - "codePostal": "65430", - "codeCommune": "65433", - "libelleAcheminement": "SOUES", - "nomCommune": "SOUES" + "codePostal": "39250", + "codeCommune": "39053", + "libelleAcheminement": "BIEF DU FOURG", + "nomCommune": "BIEF DU FOURG" }, { - "codePostal": "16300", - "codeCommune": "16062", - "libelleAcheminement": "BRIE SOUS BARBEZIEUX", - "nomCommune": "BRIE SOUS BARBEZIEUX" + "codePostal": "40300", + "codeCommune": "40212", + "libelleAcheminement": "ORTHEVIELLE", + "nomCommune": "ORTHEVIELLE" }, { - "codePostal": "31360", - "codeCommune": "31457", - "libelleAcheminement": "ROQUEFORT SUR GARONNE", - "nomCommune": "ROQUEFORT SUR GARONNE" + "codePostal": "53120", + "codeCommune": "53071", + "libelleAcheminement": "COLOMBIERS DU PLESSIS", + "nomCommune": "COLOMBIERS DU PLESSIS" }, { - "codePostal": "45700", - "codeCommune": "45092", - "libelleAcheminement": "CHEVILLON SUR HUILLARD", - "nomCommune": "CHEVILLON SUR HUILLARD" + "codePostal": "52260", + "codeCommune": "52432", + "libelleAcheminement": "ROLAMPONT", + "nomCommune": "ROLAMPONT" }, { - "codePostal": "65350", - "codeCommune": "65436", - "libelleAcheminement": "SOUYEAUX", - "nomCommune": "SOUYEAUX" + "codePostal": "39140", + "codeCommune": "39056", + "libelleAcheminement": "BLETTERANS", + "nomCommune": "BLETTERANS" }, { - "codePostal": "16480", - "codeCommune": "16066", - "libelleAcheminement": "BROSSAC", - "nomCommune": "BROSSAC" + "codePostal": "40290", + "codeCommune": "40214", + "libelleAcheminement": "OSSAGES", + "nomCommune": "OSSAGES" }, { - "codePostal": "31430", - "codeCommune": "31469", - "libelleAcheminement": "ST ARAILLE", - "nomCommune": "ST ARAILLE" + "codePostal": "53200", + "codeCommune": "53078", + "libelleAcheminement": "COUDRAY", + "nomCommune": "COUDRAY" }, { - "codePostal": "45170", - "codeCommune": "45095", - "libelleAcheminement": "CHILLEURS AUX BOIS", - "nomCommune": "CHILLEURS AUX BOIS" + "codePostal": "52150", + "codeCommune": "52433", + "libelleAcheminement": "ROMAIN SUR MEUSE", + "nomCommune": "ROMAIN SUR MEUSE" }, { - "codePostal": "65300", - "codeCommune": "65437", - "libelleAcheminement": "TAJAN", - "nomCommune": "TAJAN" + "codePostal": "39130", + "codeCommune": "39061", + "libelleAcheminement": "BOISSIA", + "nomCommune": "BOISSIA" }, { - "codePostal": "16150", - "codeCommune": "16070", - "libelleAcheminement": "CHABANAIS", - "nomCommune": "CHABANAIS" + "codePostal": "40410", + "codeCommune": "40227", + "libelleAcheminement": "PISSOS", + "nomCommune": "PISSOS" }, { - "codePostal": "31420", - "codeCommune": "31477", - "libelleAcheminement": "ST ELIX SEGLAN", - "nomCommune": "ST ELIX SEGLAN" + "codePostal": "53700", + "codeCommune": "53085", + "libelleAcheminement": "CRENNES SUR FRAUBEE", + "nomCommune": "CRENNES SUR FRAUBEE" }, { - "codePostal": "45300", - "codeCommune": "45110", - "libelleAcheminement": "COURCELLES LE ROI", - "nomCommune": "COURCELLES LE ROI" + "codePostal": "52300", + "codeCommune": "52440", + "libelleAcheminement": "ROUVROY SUR MARNE", + "nomCommune": "ROUVROY SUR MARNE" }, { - "codePostal": "65370", - "codeCommune": "65441", - "libelleAcheminement": "THEBE", - "nomCommune": "THEBE" + "codePostal": "39800", + "codeCommune": "39073", + "libelleAcheminement": "BRAINANS", + "nomCommune": "BRAINANS" }, { - "codePostal": "16210", - "codeCommune": "16073", - "libelleAcheminement": "CHALAIS", - "nomCommune": "CHALAIS" + "codePostal": "40700", + "codeCommune": "40232", + "libelleAcheminement": "POUDENX", + "nomCommune": "POUDENX" }, { - "codePostal": "31470", - "codeCommune": "31481", - "libelleAcheminement": "STE FOY DE PEYROLIERES", - "nomCommune": "STE FOY DE PEYROLIERES" + "codePostal": "53380", + "codeCommune": "53086", + "libelleAcheminement": "LA CROIXILLE", + "nomCommune": "LA CROIXILLE" }, { - "codePostal": "45170", - "codeCommune": "45118", - "libelleAcheminement": "CROTTES EN PITHIVERAIS", - "nomCommune": "CROTTES EN PITHIVERAIS" + "codePostal": "52200", + "codeCommune": "52453", + "libelleAcheminement": "ST MAURICE", + "nomCommune": "ST MAURICE" }, { - "codePostal": "65230", - "codeCommune": "65442", - "libelleAcheminement": "THERMES MAGNOAC", - "nomCommune": "THERMES MAGNOAC" + "codePostal": "39110", + "codeCommune": "39084", + "libelleAcheminement": "CERNANS", + "nomCommune": "CERNANS" }, { - "codePostal": "16210", - "codeCommune": "16073", - "libelleAcheminement": "CHALAIS", - "nomCommune": "CHALAIS" + "codePostal": "40380", + "codeCommune": "40235", + "libelleAcheminement": "POYANNE", + "nomCommune": "POYANNE" }, { - "codePostal": "31800", - "codeCommune": "31487", - "libelleAcheminement": "ST IGNAN", - "nomCommune": "ST IGNAN" + "codePostal": "53600", + "codeCommune": "53097", + "libelleAcheminement": "EVRON", + "nomCommune": "EVRON" }, { - "codePostal": "45300", - "codeCommune": "45119", - "libelleAcheminement": "DADONVILLE", - "nomCommune": "DADONVILLE" + "codePostal": "52800", + "codeCommune": "52459", + "libelleAcheminement": "SARCEY", + "nomCommune": "SARCEY" }, { - "codePostal": "65150", - "codeCommune": "65444", - "libelleAcheminement": "TIBIRAN JAUNAC", - "nomCommune": "TIBIRAN JAUNAC" + "codePostal": "39570", + "codeCommune": "39088", + "libelleAcheminement": "CESANCEY", + "nomCommune": "CESANCEY" }, { - "codePostal": "16350", - "codeCommune": "16076", - "libelleAcheminement": "CHAMPAGNE MOUTON", - "nomCommune": "CHAMPAGNE MOUTON" + "codePostal": "40465", + "codeCommune": "40237", + "libelleAcheminement": "PRECHACQ LES BAINS", + "nomCommune": "PRECHACQ LES BAINS" }, { - "codePostal": "31240", - "codeCommune": "31488", - "libelleAcheminement": "ST JEAN", - "nomCommune": "ST JEAN" + "codePostal": "53540", + "codeCommune": "53102", + "libelleAcheminement": "GASTINES", + "nomCommune": "GASTINES" }, { - "codePostal": "45150", - "codeCommune": "45123", - "libelleAcheminement": "DARVOY", - "nomCommune": "DARVOY" + "codePostal": "52700", + "codeCommune": "52473", + "libelleAcheminement": "SIGNEVILLE", + "nomCommune": "SIGNEVILLE" }, { - "codePostal": "65130", - "codeCommune": "65445", - "libelleAcheminement": "TILHOUSE", - "nomCommune": "TILHOUSE" + "codePostal": "39380", + "codeCommune": "39093", + "libelleAcheminement": "CHAMBLAY", + "nomCommune": "CHAMBLAY" }, { - "codePostal": "16350", - "codeCommune": "16087", - "libelleAcheminement": "CHASSIECQ", - "nomCommune": "CHASSIECQ" + "codePostal": "40630", + "codeCommune": "40246", + "libelleAcheminement": "SABRES", + "nomCommune": "SABRES" }, { - "codePostal": "31530", - "codeCommune": "31496", - "libelleAcheminement": "STE LIVRADE", - "nomCommune": "STE LIVRADE" + "codePostal": "53370", + "codeCommune": "53106", + "libelleAcheminement": "GESVRES", + "nomCommune": "GESVRES" }, { - "codePostal": "45680", - "codeCommune": "45127", - "libelleAcheminement": "DORDIVES", - "nomCommune": "DORDIVES" + "codePostal": "52400", + "codeCommune": "52483", + "libelleAcheminement": "SOYERS", + "nomCommune": "SOYERS" }, { - "codePostal": "65140", - "codeCommune": "65446", - "libelleAcheminement": "TOSTAT", - "nomCommune": "TOSTAT" + "codePostal": "39290", + "codeCommune": "39096", + "libelleAcheminement": "CHAMPAGNEY", + "nomCommune": "CHAMPAGNEY" }, { - "codePostal": "16120", - "codeCommune": "16090", - "libelleAcheminement": "CHATEAUNEUF SUR CHARENTE", - "nomCommune": "CHATEAUNEUF SUR CHARENTE" + "codePostal": "40300", + "codeCommune": "40254", + "libelleAcheminement": "ST CRICQ DU GAVE", + "nomCommune": "ST CRICQ DU GAVE" }, { - "codePostal": "31140", - "codeCommune": "31497", - "libelleAcheminement": "ST LOUP CAMMAS", - "nomCommune": "ST LOUP CAMMAS" + "codePostal": "53300", + "codeCommune": "53111", + "libelleAcheminement": "LA HAIE TRAVERSAINE", + "nomCommune": "LA HAIE TRAVERSAINE" }, { - "codePostal": "45220", - "codeCommune": "45129", - "libelleAcheminement": "DOUCHY MONTCORBON", - "nomCommune": "DOUCHY MONTCORBON" + "codePostal": "52110", + "codeCommune": "52495", + "libelleAcheminement": "TREMILLY", + "nomCommune": "TREMILLY" }, { - "codePostal": "65260", - "codeCommune": "65473", - "libelleAcheminement": "VILLELONGUE", - "nomCommune": "VILLELONGUE" + "codePostal": "39300", + "codeCommune": "39097", + "libelleAcheminement": "CHAMPAGNOLE", + "nomCommune": "CHAMPAGNOLE" }, { - "codePostal": "16500", - "codeCommune": "16106", - "libelleAcheminement": "CONFOLENS", - "nomCommune": "CONFOLENS" + "codePostal": "40300", + "codeCommune": "40256", + "libelleAcheminement": "ST ETIENNE D ORTHE", + "nomCommune": "ST ETIENNE D ORTHE" }, { - "codePostal": "31360", - "codeCommune": "31503", - "libelleAcheminement": "ST MARTORY", - "nomCommune": "ST MARTORY" + "codePostal": "53110", + "codeCommune": "53118", + "libelleAcheminement": "LE HOUSSEAU BRETIGNOLLES", + "nomCommune": "LE HOUSSEAU BRETIGNOLLES" }, { - "codePostal": "45390", - "codeCommune": "45131", - "libelleAcheminement": "ECHILLEUSES", - "nomCommune": "ECHILLEUSES" + "codePostal": "52100", + "codeCommune": "52500", + "libelleAcheminement": "VALCOURT", + "nomCommune": "VALCOURT" }, { - "codePostal": "65500", - "codeCommune": "65477", - "libelleAcheminement": "VILLENAVE PRES MARSAC", - "nomCommune": "VILLENAVE PRES MARSAC" + "codePostal": "39500", + "codeCommune": "39099", + "libelleAcheminement": "CHAMPDIVERS", + "nomCommune": "CHAMPDIVERS" }, { - "codePostal": "16330", - "codeCommune": "16108", - "libelleAcheminement": "COULONGES", - "nomCommune": "COULONGES" + "codePostal": "40190", + "codeCommune": "40259", + "libelleAcheminement": "ST GEIN", + "nomCommune": "ST GEIN" }, { - "codePostal": "31510", - "codeCommune": "31509", - "libelleAcheminement": "ST PE D ARDET", - "nomCommune": "ST PE D ARDET" + "codePostal": "53250", + "codeCommune": "53121", + "libelleAcheminement": "JAVRON LES CHAPELLES", + "nomCommune": "JAVRON LES CHAPELLES" }, { - "codePostal": "45300", - "codeCommune": "45137", - "libelleAcheminement": "ESCRENNES", - "nomCommune": "ESCRENNES" + "codePostal": "52200", + "codeCommune": "52507", + "libelleAcheminement": "VAUXBONS", + "nomCommune": "VAUXBONS" }, { - "codePostal": "65120", - "codeCommune": "65478", - "libelleAcheminement": "VISCOS", - "nomCommune": "VISCOS" + "codePostal": "39230", + "codeCommune": "39100", + "libelleAcheminement": "CHAMPROUGIER", + "nomCommune": "CHAMPROUGIER" }, { - "codePostal": "16700", - "codeCommune": "16110", - "libelleAcheminement": "COURCOME", - "nomCommune": "COURCOME" + "codePostal": "40120", + "codeCommune": "40262", + "libelleAcheminement": "ST GOR", + "nomCommune": "ST GOR" }, { - "codePostal": "31350", - "codeCommune": "31510", - "libelleAcheminement": "ST PE DELBOSC", - "nomCommune": "ST PE DELBOSC" + "codePostal": "53110", + "codeCommune": "53127", + "libelleAcheminement": "LASSAY LES CHATEAUX", + "nomCommune": "LASSAY LES CHATEAUX" }, { - "codePostal": "45240", - "codeCommune": "45146", - "libelleAcheminement": "LA FERTE ST AUBIN", - "nomCommune": "LA FERTE ST AUBIN" + "codePostal": "52250", + "codeCommune": "52516", + "libelleAcheminement": "VERSEILLES LE HAUT", + "nomCommune": "VERSEILLES LE HAUT" }, { - "codePostal": "65150", - "codeCommune": "65482", - "libelleAcheminement": "CANTAOUS", - "nomCommune": "CANTAOUS" + "codePostal": "39230", + "codeCommune": "39112", + "libelleAcheminement": "LA CHASSAGNE", + "nomCommune": "LA CHASSAGNE" }, { - "codePostal": "16190", - "codeCommune": "16111", - "libelleAcheminement": "COURGEAC", - "nomCommune": "COURGEAC" + "codePostal": "40230", + "codeCommune": "40264", + "libelleAcheminement": "ST JEAN DE MARSACQ", + "nomCommune": "ST JEAN DE MARSACQ" }, { - "codePostal": "31410", - "codeCommune": "31517", - "libelleAcheminement": "ST SULPICE SUR LEZE", - "nomCommune": "ST SULPICE SUR LEZE" + "codePostal": "53110", + "codeCommune": "53127", + "libelleAcheminement": "LASSAY LES CHATEAUX", + "nomCommune": "LASSAY LES CHATEAUX" }, { - "codePostal": "45320", - "codeCommune": "45149", - "libelleAcheminement": "FOUCHEROLLES", - "nomCommune": "FOUCHEROLLES" + "codePostal": "52160", + "codeCommune": "52526", + "libelleAcheminement": "VILLARS SANTENOGE", + "nomCommune": "VILLARS SANTENOGE" }, { - "codePostal": "66360", - "codeCommune": "66010", - "libelleAcheminement": "AYGUATEBIA TALAU", - "nomCommune": "AYGUATEBIA TALAU" + "codePostal": "39130", + "codeCommune": "39118", + "libelleAcheminement": "CHATEL DE JOUX", + "nomCommune": "CHATEL DE JOUX" }, { - "codePostal": "16300", - "codeCommune": "16116", - "libelleAcheminement": "CRITEUIL LA MAGDELEINE", - "nomCommune": "CRITEUIL LA MAGDELEINE" + "codePostal": "40320", + "codeCommune": "40270", + "libelleAcheminement": "ST LOUBOUER", + "nomCommune": "ST LOUBOUER" }, { - "codePostal": "31260", - "codeCommune": "31521", - "libelleAcheminement": "SALEICH", - "nomCommune": "SALEICH" + "codePostal": "53410", + "codeCommune": "53129", + "libelleAcheminement": "LAUNAY VILLIERS", + "nomCommune": "LAUNAY VILLIERS" }, { - "codePostal": "45520", - "codeCommune": "45154", - "libelleAcheminement": "GIDY", - "nomCommune": "GIDY" + "codePostal": "52600", + "codeCommune": "52529", + "libelleAcheminement": "VILLEGUSIEN LE LAC", + "nomCommune": "VILLEGUSIEN LE LAC" }, { - "codePostal": "66300", - "codeCommune": "66015", - "libelleAcheminement": "BANYULS DELS ASPRES", - "nomCommune": "BANYULS DELS ASPRES" + "codePostal": "39150", + "codeCommune": "39126", + "libelleAcheminement": "LA CHAUMUSSE", + "nomCommune": "LA CHAUMUSSE" }, { - "codePostal": "16190", - "codeCommune": "16118", - "libelleAcheminement": "DEVIAT", - "nomCommune": "DEVIAT" + "codePostal": "40390", + "codeCommune": "40271", + "libelleAcheminement": "STE MARIE DE GOSSE", + "nomCommune": "STE MARIE DE GOSSE" }, { - "codePostal": "31230", - "codeCommune": "31522", - "libelleAcheminement": "SALERM", - "nomCommune": "SALERM" + "codePostal": "53120", + "codeCommune": "53132", + "libelleAcheminement": "LEVARE", + "nomCommune": "LEVARE" }, { - "codePostal": "45490", - "codeCommune": "45158", - "libelleAcheminement": "GONDREVILLE", - "nomCommune": "GONDREVILLE" + "codePostal": "52210", + "codeCommune": "52538", + "libelleAcheminement": "VILLIERS SUR SUIZE", + "nomCommune": "VILLIERS SUR SUIZE" }, { - "codePostal": "66210", - "codeCommune": "66020", - "libelleAcheminement": "BOLQUERE", - "nomCommune": "BOLQUERE" + "codePostal": "39150", + "codeCommune": "39129", + "libelleAcheminement": "CHAUX DES CROTENAY", + "nomCommune": "CHAUX DES CROTENAY" }, { - "codePostal": "16140", - "codeCommune": "16122", - "libelleAcheminement": "EBREON", - "nomCommune": "EBREON" + "codePostal": "40230", + "codeCommune": "40284", + "libelleAcheminement": "ST VINCENT DE TYROSSE", + "nomCommune": "ST VINCENT DE TYROSSE" }, { - "codePostal": "31800", - "codeCommune": "31537", - "libelleAcheminement": "SAVARTHES", - "nomCommune": "SAVARTHES" + "codePostal": "53200", + "codeCommune": "53136", + "libelleAcheminement": "LA ROCHE NEUVILLE", + "nomCommune": "LA ROCHE NEUVILLE" }, { - "codePostal": "45480", - "codeCommune": "45160", - "libelleAcheminement": "GRENEVILLE EN BEAUCE", - "nomCommune": "GRENEVILLE EN BEAUCE" + "codePostal": "52320", + "codeCommune": "52547", + "libelleAcheminement": "VOUECOURT", + "nomCommune": "VOUECOURT" }, { - "codePostal": "66760", - "codeCommune": "66025", - "libelleAcheminement": "BOURG MADAME", - "nomCommune": "BOURG MADAME" + "codePostal": "39150", + "codeCommune": "39130", + "libelleAcheminement": "NANCHEZ", + "nomCommune": "NANCHEZ" }, { - "codePostal": "16490", - "codeCommune": "16128", - "libelleAcheminement": "EPENEDE", - "nomCommune": "EPENEDE" + "codePostal": "40120", + "codeCommune": "40288", + "libelleAcheminement": "SARBAZAN", + "nomCommune": "SARBAZAN" }, { - "codePostal": "31840", - "codeCommune": "31541", - "libelleAcheminement": "SEILH", - "nomCommune": "SEILH" + "codePostal": "53700", + "codeCommune": "53139", + "libelleAcheminement": "LOUPFOUGERES", + "nomCommune": "LOUPFOUGERES" }, { - "codePostal": "45620", - "codeCommune": "45171", - "libelleAcheminement": "ISDES", - "nomCommune": "ISDES" + "codePostal": "53400", + "codeCommune": "53012", + "libelleAcheminement": "ATHEE", + "nomCommune": "ATHEE" }, { - "codePostal": "66620", - "codeCommune": "66026", - "libelleAcheminement": "BROUILLA", - "nomCommune": "BROUILLA" + "codePostal": "39240", + "codeCommune": "39137", + "libelleAcheminement": "ST HYMETIERE SUR VALOUSE", + "nomCommune": "ST HYMETIERE SUR VALOUSE" }, { - "codePostal": "16500", - "codeCommune": "16131", - "libelleAcheminement": "ESSE", - "nomCommune": "ESSE" + "codePostal": "40180", + "codeCommune": "40294", + "libelleAcheminement": "SAUGNAC ET CAMBRAN", + "nomCommune": "SAUGNAC ET CAMBRAN" }, { - "codePostal": "31360", - "codeCommune": "31545", - "libelleAcheminement": "SEPX", - "nomCommune": "SEPX" + "codePostal": "53170", + "codeCommune": "53143", + "libelleAcheminement": "MAISONCELLES DU MAINE", + "nomCommune": "MAISONCELLES DU MAINE" }, { - "codePostal": "45480", - "codeCommune": "45174", - "libelleAcheminement": "JOUY EN PITHIVERAIS", - "nomCommune": "JOUY EN PITHIVERAIS" + "codePostal": "53160", + "codeCommune": "53016", + "libelleAcheminement": "BAIS", + "nomCommune": "BAIS" }, { - "codePostal": "66500", - "codeCommune": "66034", - "libelleAcheminement": "CAMPOME", - "nomCommune": "CAMPOME" + "codePostal": "39240", + "codeCommune": "39137", + "libelleAcheminement": "ST HYMETIERE SUR VALOUSE", + "nomCommune": "ST HYMETIERE SUR VALOUSE" }, { - "codePostal": "16730", - "codeCommune": "16138", - "libelleAcheminement": "FLEAC", - "nomCommune": "FLEAC" + "codePostal": "40410", + "codeCommune": "40295", + "libelleAcheminement": "SAUGNAC ET MURET", + "nomCommune": "SAUGNAC ET MURET" }, { - "codePostal": "31440", - "codeCommune": "31548", - "libelleAcheminement": "SIGNAC", - "nomCommune": "SIGNAC" + "codePostal": "53240", + "codeCommune": "53156", + "libelleAcheminement": "MONTFLOURS", + "nomCommune": "MONTFLOURS" }, { - "codePostal": "45370", - "codeCommune": "45175", - "libelleAcheminement": "JOUY LE POTIER", - "nomCommune": "JOUY LE POTIER" + "codePostal": "53340", + "codeCommune": "53017", + "libelleAcheminement": "VAL DU MAINE", + "nomCommune": "VAL DU MAINE" }, { - "codePostal": "66720", - "codeCommune": "66042", - "libelleAcheminement": "CASSAGNES", - "nomCommune": "CASSAGNES" + "codePostal": "39240", + "codeCommune": "39137", + "libelleAcheminement": "ST HYMETIERE SUR VALOUSE", + "nomCommune": "ST HYMETIERE SUR VALOUSE" }, { - "codePostal": "16410", - "codeCommune": "16143", - "libelleAcheminement": "FOUQUEBRUNE", - "nomCommune": "FOUQUEBRUNE" + "codePostal": "40510", + "codeCommune": "40296", + "libelleAcheminement": "SEIGNOSSE", + "nomCommune": "SEIGNOSSE" }, { - "codePostal": "31500", - "codeCommune": "31555", - "libelleAcheminement": "TOULOUSE", - "nomCommune": "TOULOUSE" + "codePostal": "53150", + "codeCommune": "53161", + "libelleAcheminement": "MONTSURS", + "nomCommune": "MONTSURS" }, { - "codePostal": "45270", - "codeCommune": "45178", - "libelleAcheminement": "LADON", - "nomCommune": "LADON" + "codePostal": "53340", + "codeCommune": "53019", + "libelleAcheminement": "BANNES", + "nomCommune": "BANNES" }, { - "codePostal": "66360", - "codeCommune": "66047", - "libelleAcheminement": "CAUDIES DE CONFLENT", - "nomCommune": "CAUDIES DE CONFLENT" + "codePostal": "39190", + "codeCommune": "39142", + "libelleAcheminement": "CHEVREAUX", + "nomCommune": "CHEVREAUX" }, { - "codePostal": "16320", - "codeCommune": "16147", - "libelleAcheminement": "GARDES LE PONTAROUX", - "nomCommune": "GARDES LE PONTAROUX" + "codePostal": "40150", + "codeCommune": "40304", + "libelleAcheminement": "SOORTS HOSSEGOR", + "nomCommune": "SOORTS HOSSEGOR" }, { - "codePostal": "31170", - "codeCommune": "31557", - "libelleAcheminement": "TOURNEFEUILLE", - "nomCommune": "TOURNEFEUILLE" + "codePostal": "53100", + "codeCommune": "53162", + "libelleAcheminement": "MOULAY", + "nomCommune": "MOULAY" }, { - "codePostal": "45290", - "codeCommune": "45180", - "libelleAcheminement": "LANGESSE", - "nomCommune": "LANGESSE" + "codePostal": "53470", + "codeCommune": "53023", + "libelleAcheminement": "LA BAZOUGE DES ALLEUX", + "nomCommune": "LA BAZOUGE DES ALLEUX" }, { - "codePostal": "66400", - "codeCommune": "66049", - "libelleAcheminement": "CERET", - "nomCommune": "CERET" + "codePostal": "39130", + "codeCommune": "39143", + "libelleAcheminement": "CHEVROTAINE", + "nomCommune": "CHEVROTAINE" }, { - "codePostal": "16200", - "codeCommune": "16153", - "libelleAcheminement": "MAINXE GONDEVILLE", - "nomCommune": "MAINXE GONDEVILLE" + "codePostal": "40180", + "codeCommune": "40308", + "libelleAcheminement": "SORT EN CHALOSSE", + "nomCommune": "SORT EN CHALOSSE" }, { - "codePostal": "31290", - "codeCommune": "31560", - "libelleAcheminement": "TREBONS SUR LA GRASSE", - "nomCommune": "TREBONS SUR LA GRASSE" + "codePostal": "53150", + "codeCommune": "53163", + "libelleAcheminement": "NEAU", + "nomCommune": "NEAU" }, { - "codePostal": "45480", - "codeCommune": "45181", - "libelleAcheminement": "LEOUVILLE", - "nomCommune": "LEOUVILLE" + "codePostal": "53290", + "codeCommune": "53029", + "libelleAcheminement": "BIERNE LES VILLAGES", + "nomCommune": "BIERNE LES VILLAGES" }, { - "codePostal": "66550", - "codeCommune": "66058", - "libelleAcheminement": "CORNEILLA LA RIVIERE", - "nomCommune": "CORNEILLA LA RIVIERE" + "codePostal": "39370", + "codeCommune": "39151", + "libelleAcheminement": "CHOUX", + "nomCommune": "CHOUX" }, { - "codePostal": "16450", - "codeCommune": "16157", - "libelleAcheminement": "LE GRAND MADIEU", - "nomCommune": "LE GRAND MADIEU" + "codePostal": "40260", + "codeCommune": "40311", + "libelleAcheminement": "TALLER", + "nomCommune": "TALLER" }, { - "codePostal": "31250", - "codeCommune": "31569", - "libelleAcheminement": "VAUDREUILLE", - "nomCommune": "VAUDREUILLE" + "codePostal": "53400", + "codeCommune": "53165", + "libelleAcheminement": "NIAFLES", + "nomCommune": "NIAFLES" }, { - "codePostal": "45240", - "codeCommune": "45182", - "libelleAcheminement": "LIGNY LE RIBAULT", - "nomCommune": "LIGNY LE RIBAULT" + "codePostal": "53290", + "codeCommune": "53037", + "libelleAcheminement": "BOUESSAY", + "nomCommune": "BOUESSAY" }, { - "codePostal": "66480", - "codeCommune": "66063", - "libelleAcheminement": "LES CLUSES", - "nomCommune": "LES CLUSES" + "codePostal": "39570", + "codeCommune": "39168", + "libelleAcheminement": "COURBETTE", + "nomCommune": "COURBETTE" }, { - "codePostal": "16100", - "codeCommune": "16169", - "libelleAcheminement": "JAVREZAC", - "nomCommune": "JAVREZAC" + "codePostal": "40630", + "codeCommune": "40319", + "libelleAcheminement": "TRENSACQ", + "nomCommune": "TRENSACQ" }, { - "codePostal": "31810", - "codeCommune": "31572", - "libelleAcheminement": "VENERQUE", - "nomCommune": "VENERQUE" + "codePostal": "53140", + "codeCommune": "53173", + "libelleAcheminement": "LA PALLU", + "nomCommune": "LA PALLU" }, { - "codePostal": "45700", - "codeCommune": "45185", - "libelleAcheminement": "LOMBREUIL", - "nomCommune": "LOMBREUIL" + "codePostal": "53230", + "codeCommune": "53058", + "libelleAcheminement": "LA CHAPELLE CRAONNAISE", + "nomCommune": "LA CHAPELLE CRAONNAISE" }, { - "codePostal": "66310", - "codeCommune": "66071", - "libelleAcheminement": "ESTAGEL", - "nomCommune": "ESTAGEL" + "codePostal": "39300", + "codeCommune": "39178", + "libelleAcheminement": "CRANS", + "nomCommune": "CRANS" }, { - "codePostal": "16190", - "codeCommune": "16170", - "libelleAcheminement": "JUIGNAC", - "nomCommune": "JUIGNAC" + "codePostal": "40090", + "codeCommune": "40320", + "libelleAcheminement": "UCHACQ ET PARENTIS", + "nomCommune": "UCHACQ ET PARENTIS" }, { - "codePostal": "31290", - "codeCommune": "31582", - "libelleAcheminement": "VILLEFRANCHE DE LAURAGAIS", - "nomCommune": "VILLEFRANCHE DE LAURAGAIS" + "codePostal": "53360", + "codeCommune": "53186", + "libelleAcheminement": "QUELAINES ST GAULT", + "nomCommune": "QUELAINES ST GAULT" }, { - "codePostal": "45330", - "codeCommune": "45191", - "libelleAcheminement": "LE MALESHERBOIS", - "nomCommune": "LE MALESHERBOIS" + "codePostal": "53150", + "codeCommune": "53059", + "libelleAcheminement": "LA CHAPELLE RAINSOUIN", + "nomCommune": "LA CHAPELLE RAINSOUIN" }, { - "codePostal": "66730", - "codeCommune": "66076", - "libelleAcheminement": "FEILLUNS", - "nomCommune": "FEILLUNS" + "codePostal": "39270", + "codeCommune": "39180", + "libelleAcheminement": "CRESSIA", + "nomCommune": "CRESSIA" }, { - "codePostal": "16130", - "codeCommune": "16171", - "libelleAcheminement": "JUILLAC LE COQ", - "nomCommune": "JUILLAC LE COQ" + "codePostal": "40240", + "codeCommune": "40327", + "libelleAcheminement": "VIELLE SOUBIRAN", + "nomCommune": "VIELLE SOUBIRAN" }, { - "codePostal": "31330", - "codeCommune": "31592", - "libelleAcheminement": "LARRA", - "nomCommune": "LARRA" + "codePostal": "53370", + "codeCommune": "53187", + "libelleAcheminement": "RAVIGNY", + "nomCommune": "RAVIGNY" }, { - "codePostal": "45330", - "codeCommune": "45191", - "libelleAcheminement": "LE MALESHERBOIS", - "nomCommune": "LE MALESHERBOIS" + "codePostal": "53250", + "codeCommune": "53061", + "libelleAcheminement": "CHARCHIGNE", + "nomCommune": "CHARCHIGNE" }, { - "codePostal": "66360", - "codeCommune": "66080", - "libelleAcheminement": "FONTPEDROUSE", - "nomCommune": "FONTPEDROUSE" + "codePostal": "39230", + "codeCommune": "39191", + "libelleAcheminement": "DARBONNAY", + "nomCommune": "DARBONNAY" }, { - "codePostal": "16230", - "codeCommune": "16173", - "libelleAcheminement": "JUILLE", - "nomCommune": "JUILLE" + "codePostal": "41240", + "codeCommune": "41006", + "libelleAcheminement": "AUTAINVILLE", + "nomCommune": "AUTAINVILLE" }, { - "codePostal": "32270", - "codeCommune": "32002", - "libelleAcheminement": "ANSAN", - "nomCommune": "ANSAN" + "codePostal": "53110", + "codeCommune": "53189", + "libelleAcheminement": "RENNES EN GRENOUILLES", + "nomCommune": "RENNES EN GRENOUILLES" }, { - "codePostal": "45190", - "codeCommune": "45202", - "libelleAcheminement": "MESSAS", - "nomCommune": "MESSAS" + "codePostal": "53800", + "codeCommune": "53073", + "libelleAcheminement": "CONGRIER", + "nomCommune": "CONGRIER" }, { - "codePostal": "66300", - "codeCommune": "66084", - "libelleAcheminement": "FOURQUES", - "nomCommune": "FOURQUES" + "codePostal": "39140", + "codeCommune": "39194", + "libelleAcheminement": "DESNES", + "nomCommune": "DESNES" }, { - "codePostal": "16250", - "codeCommune": "16175", - "libelleAcheminement": "VAL DES VIGNES", - "nomCommune": "VAL DES VIGNES" + "codePostal": "41330", + "codeCommune": "41009", + "libelleAcheminement": "AVERDON", + "nomCommune": "AVERDON" }, { - "codePostal": "32120", - "codeCommune": "32021", - "libelleAcheminement": "AVENSAC", - "nomCommune": "AVENSAC" + "codePostal": "53640", + "codeCommune": "53190", + "libelleAcheminement": "LE RIBAY", + "nomCommune": "LE RIBAY" }, { - "codePostal": "45370", - "codeCommune": "45204", - "libelleAcheminement": "MEZIERES LEZ CLERY", - "nomCommune": "MEZIERES LEZ CLERY" + "codePostal": "53230", + "codeCommune": "53075", + "libelleAcheminement": "COSMES", + "nomCommune": "COSMES" }, { - "codePostal": "66360", - "codeCommune": "66090", - "libelleAcheminement": "JUJOLS", - "nomCommune": "JUJOLS" + "codePostal": "39230", + "codeCommune": "39199", + "libelleAcheminement": "DOMBLANS", + "nomCommune": "DOMBLANS" }, { - "codePostal": "16130", - "codeCommune": "16186", - "libelleAcheminement": "LIGNIERES AMBLEVILLE", - "nomCommune": "LIGNIERES AMBLEVILLE" + "codePostal": "41250", + "codeCommune": "41013", + "libelleAcheminement": "BAUZY", + "nomCommune": "BAUZY" }, { - "codePostal": "32290", - "codeCommune": "32022", - "libelleAcheminement": "AVERON BERGELLE", - "nomCommune": "AVERON BERGELLE" + "codePostal": "53390", + "codeCommune": "53192", + "libelleAcheminement": "LA ROUAUDIERE", + "nomCommune": "LA ROUAUDIERE" }, { - "codePostal": "45700", - "codeCommune": "45212", - "libelleAcheminement": "MONTCRESSON", - "nomCommune": "MONTCRESSON" + "codePostal": "53700", + "codeCommune": "53083", + "libelleAcheminement": "COURCITE", + "nomCommune": "COURCITE" }, { - "codePostal": "66760", - "codeCommune": "66095", - "libelleAcheminement": "LATOUR DE CAROL", - "nomCommune": "LATOUR DE CAROL" + "codePostal": "39270", + "codeCommune": "39207", + "libelleAcheminement": "ECRILLE", + "nomCommune": "ECRILLE" }, { - "codePostal": "16270", - "codeCommune": "16192", - "libelleAcheminement": "TERRES DE HAUTE CHARENTE", - "nomCommune": "TERRES DE HAUTE CHARENTE" + "codePostal": "41170", + "codeCommune": "41014", + "libelleAcheminement": "BEAUCHENE", + "nomCommune": "BEAUCHENE" }, { - "codePostal": "32160", - "codeCommune": "32036", - "libelleAcheminement": "BEAUMARCHES", - "nomCommune": "BEAUMARCHES" + "codePostal": "53290", + "codeCommune": "53203", + "libelleAcheminement": "ST BRICE", + "nomCommune": "ST BRICE" }, { - "codePostal": "45300", - "codeCommune": "45217", - "libelleAcheminement": "MORVILLE EN BEAUCE", - "nomCommune": "MORVILLE EN BEAUCE" + "codePostal": "53260", + "codeCommune": "53094", + "libelleAcheminement": "ENTRAMMES", + "nomCommune": "ENTRAMMES" }, { - "codePostal": "66800", - "codeCommune": "66100", - "libelleAcheminement": "LLO", - "nomCommune": "LLO" + "codePostal": "39160", + "codeCommune": "39209", + "libelleAcheminement": "VAL D EPY", + "nomCommune": "VAL D EPY" }, { - "codePostal": "16140", - "codeCommune": "16194", - "libelleAcheminement": "LUPSAULT", - "nomCommune": "LUPSAULT" + "codePostal": "41290", + "codeCommune": "41019", + "libelleAcheminement": "BOISSEAU", + "nomCommune": "BOISSEAU" }, { - "codePostal": "32400", - "codeCommune": "32046", - "libelleAcheminement": "BERNEDE", - "nomCommune": "BERNEDE" + "codePostal": "53700", + "codeCommune": "53223", + "libelleAcheminement": "ST GERMAIN DE COULAMER", + "nomCommune": "ST GERMAIN DE COULAMER" }, { - "codePostal": "45270", - "codeCommune": "45219", - "libelleAcheminement": "MOULON", - "nomCommune": "MOULON" + "codePostal": "53600", + "codeCommune": "53097", + "libelleAcheminement": "EVRON", + "nomCommune": "EVRON" }, { - "codePostal": "66480", - "codeCommune": "66106", - "libelleAcheminement": "MAUREILLAS LAS ILLAS", - "nomCommune": "MAUREILLAS LAS ILLAS" + "codePostal": "39320", + "codeCommune": "39209", + "libelleAcheminement": "VAL D EPY", + "nomCommune": "VAL D EPY" }, { - "codePostal": "16450", - "codeCommune": "16195", - "libelleAcheminement": "LUSSAC", - "nomCommune": "LUSSAC" + "codePostal": "41800", + "codeCommune": "41020", + "libelleAcheminement": "BONNEVEAU", + "nomCommune": "BONNEVEAU" }, { - "codePostal": "32420", - "codeCommune": "32048", - "libelleAcheminement": "BETCAVE AGUIN", - "nomCommune": "BETCAVE AGUIN" + "codePostal": "53240", + "codeCommune": "53224", + "libelleAcheminement": "ST GERMAIN LE FOUILLOUX", + "nomCommune": "ST GERMAIN LE FOUILLOUX" }, { - "codePostal": "45480", - "codeCommune": "45240", - "libelleAcheminement": "OUTARVILLE", - "nomCommune": "OUTARVILLE" + "codePostal": "53260", + "codeCommune": "53099", + "libelleAcheminement": "FORCE", + "nomCommune": "FORCE" }, { - "codePostal": "66460", - "codeCommune": "66107", - "libelleAcheminement": "MAURY", - "nomCommune": "MAURY" + "codePostal": "39570", + "codeCommune": "39217", + "libelleAcheminement": "L ETOILE", + "nomCommune": "L ETOILE" }, { - "codePostal": "16230", - "codeCommune": "16196", - "libelleAcheminement": "LUXE", - "nomCommune": "LUXE" + "codePostal": "41270", + "codeCommune": "41024", + "libelleAcheminement": "BOURSAY", + "nomCommune": "BOURSAY" }, { - "codePostal": "32110", - "codeCommune": "32049", - "libelleAcheminement": "BETOUS", - "nomCommune": "BETOUS" + "codePostal": "53800", + "codeCommune": "53240", + "libelleAcheminement": "ST MARTIN DU LIMET", + "nomCommune": "ST MARTIN DU LIMET" }, { - "codePostal": "45570", - "codeCommune": "45244", - "libelleAcheminement": "OUZOUER SUR LOIRE", - "nomCommune": "OUZOUER SUR LOIRE" + "codePostal": "53200", + "codeCommune": "53101", + "libelleAcheminement": "FROMENTIERES", + "nomCommune": "FROMENTIERES" }, { - "codePostal": "66170", - "codeCommune": "66121", - "libelleAcheminement": "NEFIACH", - "nomCommune": "NEFIACH" + "codePostal": "39700", + "codeCommune": "39220", + "libelleAcheminement": "FALLETANS", + "nomCommune": "FALLETANS" }, { - "codePostal": "16380", - "codeCommune": "16203", - "libelleAcheminement": "MAINZAC", - "nomCommune": "MAINZAC" + "codePostal": "41120", + "codeCommune": "41032", + "libelleAcheminement": "CHAILLES", + "nomCommune": "CHAILLES" }, { - "codePostal": "32550", - "codeCommune": "32060", - "libelleAcheminement": "BOUCAGNERES", - "nomCommune": "BOUCAGNERES" + "codePostal": "53160", + "codeCommune": "53249", + "libelleAcheminement": "VIMARTIN SUR ORTHE", + "nomCommune": "VIMARTIN SUR ORTHE" }, { - "codePostal": "45310", - "codeCommune": "45248", - "libelleAcheminement": "PATAY", - "nomCommune": "PATAY" + "codePostal": "53200", + "codeCommune": "53104", + "libelleAcheminement": "GENNES LONGUEFUYE", + "nomCommune": "GENNES LONGUEFUYE" }, { - "codePostal": "66120", - "codeCommune": "66124", - "libelleAcheminement": "FONT ROMEU ODEILLO VIA", - "nomCommune": "FONT ROMEU ODEILLO VIA" + "codePostal": "39800", + "codeCommune": "39222", + "libelleAcheminement": "FAY EN MONTAGNE", + "nomCommune": "FAY EN MONTAGNE" }, { - "codePostal": "16120", - "codeCommune": "16204", - "libelleAcheminement": "BELLEVIGNE", - "nomCommune": "BELLEVIGNE" + "codePostal": "41600", + "codeCommune": "41036", + "libelleAcheminement": "CHAON", + "nomCommune": "CHAON" }, { - "codePostal": "32290", - "codeCommune": "32063", - "libelleAcheminement": "BOUZON GELLENAVE", - "nomCommune": "BOUZON GELLENAVE" + "codePostal": "53540", + "codeCommune": "53250", + "libelleAcheminement": "ST POIX", + "nomCommune": "ST POIX" }, { - "codePostal": "45260", - "codeCommune": "45256", - "libelleAcheminement": "PRESNOY", - "nomCommune": "PRESNOY" + "codePostal": "53150", + "codeCommune": "53105", + "libelleAcheminement": "GESNES", + "nomCommune": "GESNES" }, { - "codePostal": "66450", - "codeCommune": "66144", - "libelleAcheminement": "POLLESTRES", - "nomCommune": "POLLESTRES" + "codePostal": "39600", + "codeCommune": "39223", + "libelleAcheminement": "LA FERTE", + "nomCommune": "LA FERTE" }, { - "codePostal": "16120", - "codeCommune": "16204", - "libelleAcheminement": "BELLEVIGNE", - "nomCommune": "BELLEVIGNE" + "codePostal": "41500", + "codeCommune": "41039", + "libelleAcheminement": "LA CHAPELLE ST MARTIN EN PLAINE", + "nomCommune": "LA CHAPELLE ST MARTIN EN PLAINE" }, { - "codePostal": "32500", - "codeCommune": "32066", - "libelleAcheminement": "BRUGNENS", - "nomCommune": "BRUGNENS" + "codePostal": "53270", + "codeCommune": "53255", + "libelleAcheminement": "STE SUZANNE ET CHAMMES", + "nomCommune": "STE SUZANNE ET CHAMMES" }, { - "codePostal": "45470", - "codeCommune": "45261", - "libelleAcheminement": "REBRECHIEN", - "nomCommune": "REBRECHIEN" + "codePostal": "53250", + "codeCommune": "53112", + "libelleAcheminement": "LE HAM", + "nomCommune": "LE HAM" }, { - "codePostal": "66300", - "codeCommune": "66145", - "libelleAcheminement": "PONTEILLA", - "nomCommune": "PONTEILLA" + "codePostal": "39130", + "codeCommune": "39230", + "libelleAcheminement": "FONTENU", + "nomCommune": "FONTENU" }, { - "codePostal": "16120", - "codeCommune": "16204", - "libelleAcheminement": "BELLEVIGNE", - "nomCommune": "BELLEVIGNE" + "codePostal": "41110", + "codeCommune": "41042", + "libelleAcheminement": "CHATEAUVIEUX", + "nomCommune": "CHATEAUVIEUX" }, { - "codePostal": "32220", - "codeCommune": "32069", - "libelleAcheminement": "CADEILLAN", - "nomCommune": "CADEILLAN" + "codePostal": "53160", + "codeCommune": "53256", + "libelleAcheminement": "ST THOMAS DE COURCERIERS", + "nomCommune": "ST THOMAS DE COURCERIERS" }, { - "codePostal": "45300", - "codeCommune": "45263", - "libelleAcheminement": "ROUVRES ST JEAN", - "nomCommune": "ROUVRES ST JEAN" + "codePostal": "53160", + "codeCommune": "53113", + "libelleAcheminement": "HAMBERS", + "nomCommune": "HAMBERS" }, { - "codePostal": "66220", - "codeCommune": "66152", - "libelleAcheminement": "PRUGNANES", - "nomCommune": "PRUGNANES" + "codePostal": "39250", + "codeCommune": "39237", + "libelleAcheminement": "FRAROZ", + "nomCommune": "FRAROZ" }, { - "codePostal": "16500", - "codeCommune": "16205", - "libelleAcheminement": "MANOT", - "nomCommune": "MANOT" + "codePostal": "41400", + "codeCommune": "41051", + "libelleAcheminement": "CHISSAY EN TOURAINE", + "nomCommune": "CHISSAY EN TOURAINE" }, { - "codePostal": "32410", - "codeCommune": "32083", - "libelleAcheminement": "CASTERA VERDUZAN", - "nomCommune": "CASTERA VERDUZAN" + "codePostal": "53340", + "codeCommune": "53257", + "libelleAcheminement": "SAULGES", + "nomCommune": "SAULGES" }, { - "codePostal": "45600", - "codeCommune": "45277", - "libelleAcheminement": "ST FLORENT", - "nomCommune": "ST FLORENT" + "codePostal": "53640", + "codeCommune": "53116", + "libelleAcheminement": "LE HORPS", + "nomCommune": "LE HORPS" }, { - "codePostal": "66720", - "codeCommune": "66158", - "libelleAcheminement": "RASIGUERES", - "nomCommune": "RASIGUERES" + "codePostal": "39210", + "codeCommune": "39244", + "libelleAcheminement": "FRONTENAY", + "nomCommune": "FRONTENAY" }, { - "codePostal": "16310", - "codeCommune": "16212", - "libelleAcheminement": "MASSIGNAC", - "nomCommune": "MASSIGNAC" + "codePostal": "41120", + "codeCommune": "41052", + "libelleAcheminement": "CHITENAY", + "nomCommune": "CHITENAY" }, { - "codePostal": "32340", - "codeCommune": "32085", - "libelleAcheminement": "CASTET ARROUY", - "nomCommune": "CASTET ARROUY" + "codePostal": "53300", + "codeCommune": "53261", + "libelleAcheminement": "SOUCE", + "nomCommune": "SOUCE" }, { - "codePostal": "45500", - "codeCommune": "45280", - "libelleAcheminement": "ST GONDON", - "nomCommune": "ST GONDON" + "codePostal": "53360", + "codeCommune": "53117", + "libelleAcheminement": "HOUSSAY", + "nomCommune": "HOUSSAY" }, { - "codePostal": "66210", - "codeCommune": "66159", - "libelleAcheminement": "REAL", - "nomCommune": "REAL" + "codePostal": "39320", + "codeCommune": "39253", + "libelleAcheminement": "GIGNY", + "nomCommune": "GIGNY" }, { - "codePostal": "16200", - "codeCommune": "16216", - "libelleAcheminement": "MERIGNAC", - "nomCommune": "MERIGNAC" + "codePostal": "41150", + "codeCommune": "41055", + "libelleAcheminement": "VALLOIRE SUR CISSE", + "nomCommune": "VALLOIRE SUR CISSE" }, { - "codePostal": "32240", - "codeCommune": "32087", - "libelleAcheminement": "CASTEX D ARMAGNAC", - "nomCommune": "CASTEX D ARMAGNAC" + "codePostal": "53210", + "codeCommune": "53262", + "libelleAcheminement": "SOULGE SUR OUETTE", + "nomCommune": "SOULGE SUR OUETTE" }, { - "codePostal": "45160", - "codeCommune": "45282", - "libelleAcheminement": "ST HILAIRE ST MESMIN", - "nomCommune": "ST HILAIRE ST MESMIN" + "codePostal": "53110", + "codeCommune": "53118", + "libelleAcheminement": "LE HOUSSEAU BRETIGNOLLES", + "nomCommune": "LE HOUSSEAU BRETIGNOLLES" }, { - "codePostal": "66360", - "codeCommune": "66166", - "libelleAcheminement": "SAHORRE", - "nomCommune": "SAHORRE" + "codePostal": "39150", + "codeCommune": "39258", + "libelleAcheminement": "GRANDE RIVIERE CHATEAU", + "nomCommune": "GRANDE RIVIERE CHATEAU" }, { - "codePostal": "16300", - "codeCommune": "16224", - "libelleAcheminement": "MONTMERAC", - "nomCommune": "MONTMERAC" + "codePostal": "41290", + "codeCommune": "41057", + "libelleAcheminement": "CONAN", + "nomCommune": "CONAN" }, { - "codePostal": "32360", - "codeCommune": "32089", - "libelleAcheminement": "CASTILLON MASSAS", - "nomCommune": "CASTILLON MASSAS" + "codePostal": "53270", + "codeCommune": "53264", + "libelleAcheminement": "THORIGNE EN CHARNIE", + "nomCommune": "THORIGNE EN CHARNIE" }, { - "codePostal": "45800", - "codeCommune": "45284", - "libelleAcheminement": "ST JEAN DE BRAYE", - "nomCommune": "ST JEAN DE BRAYE" + "codePostal": "53190", + "codeCommune": "53125", + "libelleAcheminement": "LANDIVY", + "nomCommune": "LANDIVY" }, { - "codePostal": "66690", - "codeCommune": "66168", - "libelleAcheminement": "ST ANDRE", - "nomCommune": "ST ANDRE" + "codePostal": "39120", + "codeCommune": "39266", + "libelleAcheminement": "LES HAYS", + "nomCommune": "LES HAYS" }, { - "codePostal": "16300", - "codeCommune": "16224", - "libelleAcheminement": "MONTMERAC", - "nomCommune": "MONTMERAC" + "codePostal": "41120", + "codeCommune": "41059", + "libelleAcheminement": "LE CONTROIS EN SOLOGNE", + "nomCommune": "LE CONTROIS EN SOLOGNE" }, { - "codePostal": "32190", - "codeCommune": "32097", - "libelleAcheminement": "CAZAUX D ANGLES", - "nomCommune": "CAZAUX D ANGLES" + "codePostal": "53120", + "codeCommune": "53270", + "libelleAcheminement": "VIEUVY", + "nomCommune": "VIEUVY" }, { - "codePostal": "45140", - "codeCommune": "45285", - "libelleAcheminement": "ST JEAN DE LA RUELLE", - "nomCommune": "ST JEAN DE LA RUELLE" + "codePostal": "53220", + "codeCommune": "53126", + "libelleAcheminement": "LARCHAMP", + "nomCommune": "LARCHAMP" }, { - "codePostal": "66750", - "codeCommune": "66171", - "libelleAcheminement": "ST CYPRIEN", - "nomCommune": "ST CYPRIEN" + "codePostal": "39110", + "codeCommune": "39267", + "libelleAcheminement": "IVORY", + "nomCommune": "IVORY" }, { - "codePostal": "16390", - "codeCommune": "16227", - "libelleAcheminement": "MONTIGNAC LE COQ", - "nomCommune": "MONTIGNAC LE COQ" + "codePostal": "41500", + "codeCommune": "41069", + "libelleAcheminement": "COUR SUR LOIRE", + "nomCommune": "COUR SUR LOIRE" }, { - "codePostal": "32400", - "codeCommune": "32108", - "libelleAcheminement": "CORNEILLAN", - "nomCommune": "CORNEILLAN" + "codePostal": "54800", + "codeCommune": "54004", + "libelleAcheminement": "AFFLEVILLE", + "nomCommune": "AFFLEVILLE" }, { - "codePostal": "45340", - "codeCommune": "45288", - "libelleAcheminement": "ST LOUP DES VIGNES", - "nomCommune": "ST LOUP DES VIGNES" + "codePostal": "53000", + "codeCommune": "53130", + "libelleAcheminement": "LAVAL", + "nomCommune": "LAVAL" }, { - "codePostal": "66470", - "codeCommune": "66182", - "libelleAcheminement": "STE MARIE LA MER", - "nomCommune": "STE MARIE LA MER" + "codePostal": "39360", + "codeCommune": "39280", + "libelleAcheminement": "LARRIVOIRE", + "nomCommune": "LARRIVOIRE" }, { - "codePostal": "16460", - "codeCommune": "16238", - "libelleAcheminement": "MOUTONNEAU", - "nomCommune": "MOUTONNEAU" + "codePostal": "41800", + "codeCommune": "41070", + "libelleAcheminement": "VALLEE DE RONSARD", + "nomCommune": "VALLEE DE RONSARD" }, { - "codePostal": "32110", - "codeCommune": "32113", - "libelleAcheminement": "CRAVENCERES", - "nomCommune": "CRAVENCERES" + "codePostal": "54170", + "codeCommune": "54008", + "libelleAcheminement": "ALLAIN", + "nomCommune": "ALLAIN" }, { - "codePostal": "45170", - "codeCommune": "45289", - "libelleAcheminement": "ST LYE LA FORET", - "nomCommune": "ST LYE LA FORET" + "codePostal": "53150", + "codeCommune": "53134", + "libelleAcheminement": "LIVET", + "nomCommune": "LIVET" }, { - "codePostal": "66220", - "codeCommune": "66187", - "libelleAcheminement": "ST PAUL DE FENOUILLET", - "nomCommune": "ST PAUL DE FENOUILLET" + "codePostal": "01590", + "codeCommune": "39283", + "libelleAcheminement": "LAVANCIA EPERCY", + "nomCommune": "LAVANCIA EPERCY" }, { - "codePostal": "16700", - "codeCommune": "16242", - "libelleAcheminement": "NANTEUIL EN VALLEE", - "nomCommune": "NANTEUIL EN VALLEE" + "codePostal": "41220", + "codeCommune": "41074", + "libelleAcheminement": "DHUIZON", + "nomCommune": "DHUIZON" }, { - "codePostal": "32600", - "codeCommune": "32121", - "libelleAcheminement": "ENDOUFIELLE", - "nomCommune": "ENDOUFIELLE" + "codePostal": "54800", + "codeCommune": "54009", + "libelleAcheminement": "ALLAMONT", + "nomCommune": "ALLAMONT" }, { - "codePostal": "45340", - "codeCommune": "45294", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "53320", + "codeCommune": "53137", + "libelleAcheminement": "LOIRON RUILLE", + "nomCommune": "LOIRON RUILLE" }, { - "codePostal": "66360", - "codeCommune": "66191", - "libelleAcheminement": "SANSA", - "nomCommune": "SANSA" + "codePostal": "39260", + "codeCommune": "39289", + "libelleAcheminement": "LECT", + "nomCommune": "LECT" }, { - "codePostal": "16700", - "codeCommune": "16242", - "libelleAcheminement": "NANTEUIL EN VALLEE", - "nomCommune": "NANTEUIL EN VALLEE" + "codePostal": "41360", + "codeCommune": "41078", + "libelleAcheminement": "EPUISAY", + "nomCommune": "EPUISAY" }, { - "codePostal": "32450", - "codeCommune": "32130", - "libelleAcheminement": "FAGET ABBATIAL", - "nomCommune": "FAGET ABBATIAL" + "codePostal": "54260", + "codeCommune": "54011", + "libelleAcheminement": "ALLONDRELLE LA MALMAISON", + "nomCommune": "ALLONDRELLE LA MALMAISON" }, { - "codePostal": "45310", - "codeCommune": "45296", - "libelleAcheminement": "ST PERAVY LA COLOMBE", - "nomCommune": "ST PERAVY LA COLOMBE" + "codePostal": "53320", + "codeCommune": "53137", + "libelleAcheminement": "LOIRON RUILLE", + "nomCommune": "LOIRON RUILLE" }, { - "codePostal": "66230", - "codeCommune": "66194", - "libelleAcheminement": "SERRALONGUE", - "nomCommune": "SERRALONGUE" + "codePostal": "39240", + "codeCommune": "39290", + "libelleAcheminement": "VALZIN EN PETITE MONTAGNE", + "nomCommune": "VALZIN EN PETITE MONTAGNE" }, { - "codePostal": "16190", - "codeCommune": "16246", - "libelleAcheminement": "NONAC", - "nomCommune": "NONAC" + "codePostal": "41300", + "codeCommune": "41084", + "libelleAcheminement": "LA FERTE IMBAULT", + "nomCommune": "LA FERTE IMBAULT" }, { - "codePostal": "32490", - "codeCommune": "32134", - "libelleAcheminement": "FREGOUVILLE", - "nomCommune": "FREGOUVILLE" + "codePostal": "54760", + "codeCommune": "54021", + "libelleAcheminement": "ARMAUCOURT", + "nomCommune": "ARMAUCOURT" }, { - "codePostal": "45110", - "codeCommune": "45311", - "libelleAcheminement": "SIGLOY", - "nomCommune": "SIGLOY" + "codePostal": "53470", + "codeCommune": "53146", + "libelleAcheminement": "MARTIGNE SUR MAYENNE", + "nomCommune": "MARTIGNE SUR MAYENNE" }, { - "codePostal": "66270", - "codeCommune": "66195", - "libelleAcheminement": "LE SOLER", - "nomCommune": "LE SOLER" + "codePostal": "39400", + "codeCommune": "39297", + "libelleAcheminement": "LONGCHAUMOIS", + "nomCommune": "LONGCHAUMOIS" }, { - "codePostal": "16140", - "codeCommune": "16248", - "libelleAcheminement": "ORADOUR", - "nomCommune": "ORADOUR" + "codePostal": "41250", + "codeCommune": "41086", + "libelleAcheminement": "FONTAINES EN SOLOGNE", + "nomCommune": "FONTAINES EN SOLOGNE" }, { - "codePostal": "32380", - "codeCommune": "32139", - "libelleAcheminement": "GAUDONVILLE", - "nomCommune": "GAUDONVILLE" + "codePostal": "54510", + "codeCommune": "54025", + "libelleAcheminement": "ART SUR MEURTHE", + "nomCommune": "ART SUR MEURTHE" }, { - "codePostal": "45530", - "codeCommune": "45316", - "libelleAcheminement": "SURY AUX BOIS", - "nomCommune": "SURY AUX BOIS" + "codePostal": "53600", + "codeCommune": "53153", + "libelleAcheminement": "MEZANGERS", + "nomCommune": "MEZANGERS" }, { - "codePostal": "66730", - "codeCommune": "66198", - "libelleAcheminement": "SOURNIA", - "nomCommune": "SOURNIA" + "codePostal": "39000", + "codeCommune": "39300", + "libelleAcheminement": "LONS LE SAUNIER", + "nomCommune": "LONS LE SAUNIER" }, { - "codePostal": "16480", - "codeCommune": "16251", - "libelleAcheminement": "ORIOLLES", - "nomCommune": "ORIOLLES" + "codePostal": "41190", + "codeCommune": "41093", + "libelleAcheminement": "FRANCAY", + "nomCommune": "FRANCAY" }, { - "codePostal": "32480", - "codeCommune": "32143", - "libelleAcheminement": "GAZAUPOUY", - "nomCommune": "GAZAUPOUY" + "codePostal": "54385", + "codeCommune": "54034", + "libelleAcheminement": "AVRAINVILLE", + "nomCommune": "AVRAINVILLE" }, { - "codePostal": "45260", - "codeCommune": "45321", - "libelleAcheminement": "THIMORY", - "nomCommune": "THIMORY" + "codePostal": "53220", + "codeCommune": "53154", + "libelleAcheminement": "MONTAUDIN", + "nomCommune": "MONTAUDIN" }, { - "codePostal": "66350", - "codeCommune": "66213", - "libelleAcheminement": "TOULOUGES", - "nomCommune": "TOULOUGES" + "codePostal": "39700", + "codeCommune": "39308", + "libelleAcheminement": "MALANGE", + "nomCommune": "MALANGE" }, { - "codePostal": "16700", - "codeCommune": "16268", - "libelleAcheminement": "POURSAC", - "nomCommune": "POURSAC" + "codePostal": "41160", + "codeCommune": "41095", + "libelleAcheminement": "FRETEVAL", + "nomCommune": "FRETEVAL" }, { - "codePostal": "32330", - "codeCommune": "32149", - "libelleAcheminement": "GONDRIN", - "nomCommune": "GONDRIN" + "codePostal": "54170", + "codeCommune": "54046", + "libelleAcheminement": "BARISEY AU PLAIN", + "nomCommune": "BARISEY AU PLAIN" }, { - "codePostal": "45470", - "codeCommune": "45327", - "libelleAcheminement": "TRAINOU", - "nomCommune": "TRAINOU" + "codePostal": "53300", + "codeCommune": "53176", + "libelleAcheminement": "LE PAS", + "nomCommune": "LE PAS" }, { - "codePostal": "66300", - "codeCommune": "66214", - "libelleAcheminement": "TRESSERRE", - "nomCommune": "TRESSERRE" + "codePostal": "39230", + "codeCommune": "39310", + "libelleAcheminement": "MANTRY", + "nomCommune": "MANTRY" }, { - "codePostal": "16110", - "codeCommune": "16269", - "libelleAcheminement": "PRANZAC", - "nomCommune": "PRANZAC" + "codePostal": "41130", + "codeCommune": "41097", + "libelleAcheminement": "GIEVRES", + "nomCommune": "GIEVRES" }, { - "codePostal": "32400", - "codeCommune": "32161", - "libelleAcheminement": "IZOTGES", - "nomCommune": "IZOTGES" + "codePostal": "54370", + "codeCommune": "54050", + "libelleAcheminement": "BATHELEMONT", + "nomCommune": "BATHELEMONT" }, { - "codePostal": "45510", - "codeCommune": "45331", - "libelleAcheminement": "VANNES SUR COSSON", - "nomCommune": "VANNES SUR COSSON" + "codePostal": "53220", + "codeCommune": "53177", + "libelleAcheminement": "LA PELLERINE", + "nomCommune": "LA PELLERINE" }, { - "codePostal": "66820", - "codeCommune": "66222", - "libelleAcheminement": "VERNET LES BAINS", - "nomCommune": "VERNET LES BAINS" + "codePostal": "39240", + "codeCommune": "39312", + "libelleAcheminement": "MARIGNA SUR VALOUSE", + "nomCommune": "MARIGNA SUR VALOUSE" }, { - "codePostal": "16360", - "codeCommune": "16276", - "libelleAcheminement": "REIGNAC", - "nomCommune": "REIGNAC" + "codePostal": "41800", + "codeCommune": "41100", + "libelleAcheminement": "LES HAYES", + "nomCommune": "LES HAYES" }, { - "codePostal": "32230", - "codeCommune": "32164", - "libelleAcheminement": "JUILLAC", - "nomCommune": "JUILLAC" + "codePostal": "54370", + "codeCommune": "54053", + "libelleAcheminement": "BAUZEMONT", + "nomCommune": "BAUZEMONT" }, { - "codePostal": "45600", - "codeCommune": "45336", - "libelleAcheminement": "VIGLAIN", - "nomCommune": "VIGLAIN" + "codePostal": "53360", + "codeCommune": "53178", + "libelleAcheminement": "PEUTON", + "nomCommune": "PEUTON" }, { - "codePostal": "66320", - "codeCommune": "66230", - "libelleAcheminement": "VINCA", - "nomCommune": "VINCA" + "codePostal": "39130", + "codeCommune": "39313", + "libelleAcheminement": "MARIGNY", + "nomCommune": "MARIGNY" }, { - "codePostal": "16170", - "codeCommune": "16286", - "libelleAcheminement": "ROUILLAC", - "nomCommune": "ROUILLAC" + "codePostal": "41310", + "codeCommune": "41103", + "libelleAcheminement": "HUISSEAU EN BEAUCE", + "nomCommune": "HUISSEAU EN BEAUCE" }, { - "codePostal": "32200", - "codeCommune": "32165", - "libelleAcheminement": "JUILLES", - "nomCommune": "JUILLES" + "codePostal": "54800", + "codeCommune": "54058", + "libelleAcheminement": "BECHAMPS", + "nomCommune": "BECHAMPS" }, { - "codePostal": "45270", - "codeCommune": "45339", - "libelleAcheminement": "VILLEMOUTIERS", - "nomCommune": "VILLEMOUTIERS" + "codePostal": "53400", + "codeCommune": "53180", + "libelleAcheminement": "POMMERIEUX", + "nomCommune": "POMMERIEUX" }, { - "codePostal": "66730", - "codeCommune": "66234", - "libelleAcheminement": "LE VIVIER", - "nomCommune": "LE VIVIER" + "codePostal": "39600", + "codeCommune": "39319", + "libelleAcheminement": "MATHENAY", + "nomCommune": "MATHENAY" }, { - "codePostal": "16600", - "codeCommune": "16291", - "libelleAcheminement": "RUELLE SUR TOUVRE", - "nomCommune": "RUELLE SUR TOUVRE" + "codePostal": "41800", + "codeCommune": "41113", + "libelleAcheminement": "LAVARDIN", + "nomCommune": "LAVARDIN" }, { - "codePostal": "32400", - "codeCommune": "32170", - "libelleAcheminement": "LABARTHETE", - "nomCommune": "LABARTHETE" + "codePostal": "54740", + "codeCommune": "54062", + "libelleAcheminement": "BENNEY", + "nomCommune": "BENNEY" }, { - "codePostal": "45190", - "codeCommune": "45344", - "libelleAcheminement": "VILLORCEAU", - "nomCommune": "VILLORCEAU" + "codePostal": "53800", + "codeCommune": "53188", + "libelleAcheminement": "RENAZE", + "nomCommune": "RENAZE" }, { - "codePostal": "67440", - "codeCommune": "67004", - "libelleAcheminement": "SOMMERAU", - "nomCommune": "SOMMERAU" + "codePostal": "39130", + "codeCommune": "39326", + "libelleAcheminement": "MESNOIS", + "nomCommune": "MESNOIS" }, { - "codePostal": "16230", - "codeCommune": "16300", - "libelleAcheminement": "VAL DE BONNIEURE", - "nomCommune": "VAL DE BONNIEURE" + "codePostal": "41500", + "codeCommune": "41114", + "libelleAcheminement": "LESTIOU", + "nomCommune": "LESTIOU" }, { - "codePostal": "32310", - "codeCommune": "32178", - "libelleAcheminement": "LAGARDERE", - "nomCommune": "LAGARDERE" + "codePostal": "54470", + "codeCommune": "54063", + "libelleAcheminement": "BERNECOURT", + "nomCommune": "BERNECOURT" }, { - "codePostal": "46500", - "codeCommune": "46003", - "libelleAcheminement": "ALVIGNAC", - "nomCommune": "ALVIGNAC" + "codePostal": "53170", + "codeCommune": "53193", + "libelleAcheminement": "RUILLE FROID FONDS", + "nomCommune": "RUILLE FROID FONDS" }, { - "codePostal": "67140", - "codeCommune": "67010", - "libelleAcheminement": "ANDLAU", - "nomCommune": "ANDLAU" + "codePostal": "39570", + "codeCommune": "39327", + "libelleAcheminement": "MESSIA SUR SORNE", + "nomCommune": "MESSIA SUR SORNE" }, { - "codePostal": "16100", - "codeCommune": "16304", - "libelleAcheminement": "ST BRICE", - "nomCommune": "ST BRICE" + "codePostal": "41370", + "codeCommune": "41121", + "libelleAcheminement": "LA MADELEINE VILLEFROUIN", + "nomCommune": "LA MADELEINE VILLEFROUIN" }, { - "codePostal": "32130", - "codeCommune": "32182", - "libelleAcheminement": "LAHAS", - "nomCommune": "LAHAS" + "codePostal": "54640", + "codeCommune": "54066", + "libelleAcheminement": "BETTAINVILLERS", + "nomCommune": "BETTAINVILLERS" }, { - "codePostal": "46250", - "codeCommune": "46008", - "libelleAcheminement": "LES ARQUES", - "nomCommune": "LES ARQUES" + "codePostal": "53470", + "codeCommune": "53195", + "libelleAcheminement": "SACE", + "nomCommune": "SACE" }, { - "codePostal": "67320", - "codeCommune": "67013", - "libelleAcheminement": "ASSWILLER", - "nomCommune": "ASSWILLER" + "codePostal": "39250", + "codeCommune": "39329", + "libelleAcheminement": "MIEGES", + "nomCommune": "MIEGES" }, { - "codePostal": "16130", - "codeCommune": "16316", - "libelleAcheminement": "ST FORT SUR LE NE", - "nomCommune": "ST FORT SUR LE NE" + "codePostal": "41110", + "codeCommune": "41126", + "libelleAcheminement": "MAREUIL SUR CHER", + "nomCommune": "MAREUIL SUR CHER" }, { - "codePostal": "32110", - "codeCommune": "32191", - "libelleAcheminement": "LANNE SOUBIRAN", - "nomCommune": "LANNE SOUBIRAN" + "codePostal": "54620", + "codeCommune": "54067", + "libelleAcheminement": "BEUVEILLE", + "nomCommune": "BEUVEILLE" }, { - "codePostal": "46230", - "codeCommune": "46013", - "libelleAcheminement": "BACH", - "nomCommune": "BACH" + "codePostal": "53100", + "codeCommune": "53219", + "libelleAcheminement": "ST GEORGES BUTTAVENT", + "nomCommune": "ST GEORGES BUTTAVENT" }, { - "codePostal": "67120", - "codeCommune": "67016", - "libelleAcheminement": "AVOLSHEIM", - "nomCommune": "AVOLSHEIM" + "codePostal": "39250", + "codeCommune": "39329", + "libelleAcheminement": "MIEGES", + "nomCommune": "MIEGES" }, { - "codePostal": "16460", - "codeCommune": "16318", - "libelleAcheminement": "ST FRONT", - "nomCommune": "ST FRONT" + "codePostal": "41210", + "codeCommune": "41127", + "libelleAcheminement": "LA MAROLLE EN SOLOGNE", + "nomCommune": "LA MAROLLE EN SOLOGNE" }, { - "codePostal": "32150", - "codeCommune": "32193", - "libelleAcheminement": "LAREE", - "nomCommune": "LAREE" + "codePostal": "54115", + "codeCommune": "54068", + "libelleAcheminement": "BEUVEZIN", + "nomCommune": "BEUVEZIN" }, { - "codePostal": "46400", - "codeCommune": "46017", - "libelleAcheminement": "BANNES", - "nomCommune": "BANNES" + "codePostal": "53600", + "codeCommune": "53221", + "libelleAcheminement": "ST GEORGES SUR ERVE", + "nomCommune": "ST GEORGES SUR ERVE" }, { - "codePostal": "67130", - "codeCommune": "67020", - "libelleAcheminement": "BAREMBACH", - "nomCommune": "BAREMBACH" + "codePostal": "39250", + "codeCommune": "39331", + "libelleAcheminement": "MIGNOVILLARD", + "nomCommune": "MIGNOVILLARD" }, { - "codePostal": "16570", - "codeCommune": "16320", - "libelleAcheminement": "ST GENIS D HIERSAC", - "nomCommune": "ST GENIS D HIERSAC" + "codePostal": "41250", + "codeCommune": "41129", + "libelleAcheminement": "MASLIVES", + "nomCommune": "MASLIVES" }, { - "codePostal": "32410", - "codeCommune": "32196", - "libelleAcheminement": "LARROQUE ST SERNIN", - "nomCommune": "LARROQUE ST SERNIN" + "codePostal": "54560", + "codeCommune": "54069", + "libelleAcheminement": "BEUVILLERS", + "nomCommune": "BEUVILLERS" }, { - "codePostal": "46500", - "codeCommune": "46018", - "libelleAcheminement": "LE BASTIT", - "nomCommune": "LE BASTIT" + "codePostal": "53240", + "codeCommune": "53222", + "libelleAcheminement": "ST GERMAIN D ANXURE", + "nomCommune": "ST GERMAIN D ANXURE" }, { - "codePostal": "67230", - "codeCommune": "67028", - "libelleAcheminement": "BENFELD", - "nomCommune": "BENFELD" + "codePostal": "39290", + "codeCommune": "39335", + "libelleAcheminement": "MOISSEY", + "nomCommune": "MOISSEY" }, { - "codePostal": "16480", - "codeCommune": "16331", - "libelleAcheminement": "ST LAURENT DES COMBES", - "nomCommune": "ST LAURENT DES COMBES" + "codePostal": "41190", + "codeCommune": "41142", + "libelleAcheminement": "VALENCISSE", + "nomCommune": "VALENCISSE" }, { - "codePostal": "32450", - "codeCommune": "32198", - "libelleAcheminement": "LARTIGUE", - "nomCommune": "LARTIGUE" + "codePostal": "54200", + "codeCommune": "54073", + "libelleAcheminement": "BICQUELEY", + "nomCommune": "BICQUELEY" }, { - "codePostal": "46230", - "codeCommune": "46026", - "libelleAcheminement": "BELMONT STE FOI", - "nomCommune": "BELMONT STE FOI" + "codePostal": "53240", + "codeCommune": "53225", + "libelleAcheminement": "ST GERMAIN LE GUILLAUME", + "nomCommune": "ST GERMAIN LE GUILLAUME" }, { - "codePostal": "67350", - "codeCommune": "67048", - "libelleAcheminement": "BITSCHHOFFEN", - "nomCommune": "BITSCHHOFFEN" + "codePostal": "39360", + "codeCommune": "39339", + "libelleAcheminement": "CHASSAL MOLINGES", + "nomCommune": "CHASSAL MOLINGES" }, { - "codePostal": "16700", - "codeCommune": "16335", - "libelleAcheminement": "ST MARTIN DU CLOCHER", - "nomCommune": "ST MARTIN DU CLOCHER" + "codePostal": "41400", + "codeCommune": "41146", + "libelleAcheminement": "MONTHOU SUR CHER", + "nomCommune": "MONTHOU SUR CHER" }, { - "codePostal": "32550", - "codeCommune": "32201", - "libelleAcheminement": "LASSEUBE PROPRE", - "nomCommune": "LASSEUBE PROPRE" + "codePostal": "54700", + "codeCommune": "54079", + "libelleAcheminement": "BLENOD LES PONT A MOUSSON", + "nomCommune": "BLENOD LES PONT A MOUSSON" }, { - "codePostal": "46110", - "codeCommune": "46028", - "libelleAcheminement": "BETAILLE", - "nomCommune": "BETAILLE" + "codePostal": "53700", + "codeCommune": "53236", + "libelleAcheminement": "ST MARS DU DESERT", + "nomCommune": "ST MARS DU DESERT" }, { - "codePostal": "67530", - "codeCommune": "67052", - "libelleAcheminement": "BOERSCH", - "nomCommune": "BOERSCH" + "codePostal": "39320", + "codeCommune": "39343", + "libelleAcheminement": "MONNETAY", + "nomCommune": "MONNETAY" }, { - "codePostal": "16300", - "codeCommune": "16338", - "libelleAcheminement": "ST MEDARD DE BARBEZIEUX", - "nomCommune": "ST MEDARD" + "codePostal": "41350", + "codeCommune": "41148", + "libelleAcheminement": "MONTLIVAULT", + "nomCommune": "MONTLIVAULT" }, { - "codePostal": "32230", - "codeCommune": "32205", - "libelleAcheminement": "LAVERAET", - "nomCommune": "LAVERAET" + "codePostal": "54113", + "codeCommune": "54080", + "libelleAcheminement": "BLENOD LES TOUL", + "nomCommune": "BLENOD LES TOUL" }, { - "codePostal": "46130", - "codeCommune": "46029", - "libelleAcheminement": "BIARS SUR CERE", - "nomCommune": "BIARS SUR CERE" + "codePostal": "53500", + "codeCommune": "53245", + "libelleAcheminement": "ST PIERRE DES LANDES", + "nomCommune": "ST PIERRE DES LANDES" }, { - "codePostal": "67420", - "codeCommune": "67059", - "libelleAcheminement": "BOURG BRUCHE", - "nomCommune": "BOURG BRUCHE" + "codePostal": "39210", + "codeCommune": "39349", + "libelleAcheminement": "MONTAIN", + "nomCommune": "MONTAIN" }, { - "codePostal": "16170", - "codeCommune": "16339", - "libelleAcheminement": "VAL D AUGE", - "nomCommune": "VAL D AUGE" + "codePostal": "41250", + "codeCommune": "41150", + "libelleAcheminement": "MONT PRES CHAMBORD", + "nomCommune": "MONT PRES CHAMBORD" }, { - "codePostal": "32300", - "codeCommune": "32215", - "libelleAcheminement": "LOUBERSAN", - "nomCommune": "LOUBERSAN" + "codePostal": "54620", + "codeCommune": "54081", + "libelleAcheminement": "BOISMONT", + "nomCommune": "BOISMONT" }, { - "codePostal": "46500", - "codeCommune": "46030", - "libelleAcheminement": "BIO", - "nomCommune": "BIO" + "codePostal": "53370", + "codeCommune": "53246", + "libelleAcheminement": "ST PIERRE DES NIDS", + "nomCommune": "ST PIERRE DES NIDS" }, { - "codePostal": "67330", - "codeCommune": "67061", - "libelleAcheminement": "BOUXWILLER", - "nomCommune": "BOUXWILLER" + "codePostal": "39400", + "codeCommune": "39367", + "libelleAcheminement": "MORBIER", + "nomCommune": "MORBIER" }, { - "codePostal": "16150", - "codeCommune": "16345", - "libelleAcheminement": "ST QUENTIN SUR CHARENTE", - "nomCommune": "ST QUENTIN SUR CHARENTE" + "codePostal": "41600", + "codeCommune": "41161", + "libelleAcheminement": "NOUAN LE FUZELIER", + "nomCommune": "NOUAN LE FUZELIER" }, { - "codePostal": "32120", - "codeCommune": "32229", - "libelleAcheminement": "MANSEMPUY", - "nomCommune": "MANSEMPUY" + "codePostal": "54290", + "codeCommune": "54085", + "libelleAcheminement": "BORVILLE", + "nomCommune": "BORVILLE" }, { - "codePostal": "46000", - "codeCommune": "46042", - "libelleAcheminement": "CAHORS", - "nomCommune": "CAHORS" + "codePostal": "53160", + "codeCommune": "53249", + "libelleAcheminement": "VIMARTIN SUR ORTHE", + "nomCommune": "VIMARTIN SUR ORTHE" }, { - "codePostal": "67330", - "codeCommune": "67061", - "libelleAcheminement": "BOUXWILLER", - "nomCommune": "BOUXWILLER" + "codePostal": "39400", + "codeCommune": "39368", + "libelleAcheminement": "HAUTS DE BIENNE", + "nomCommune": "HAUTS DE BIENNE" }, { - "codePostal": "16350", - "codeCommune": "16389", - "libelleAcheminement": "TURGON", - "nomCommune": "TURGON" + "codePostal": "41140", + "codeCommune": "41164", + "libelleAcheminement": "NOYERS SUR CHER", + "nomCommune": "NOYERS SUR CHER" }, { - "codePostal": "32120", - "codeCommune": "32232", - "libelleAcheminement": "MARAVAT", - "nomCommune": "MARAVAT" + "codePostal": "54200", + "codeCommune": "54088", + "libelleAcheminement": "BOUVRON", + "nomCommune": "BOUVRON" }, { - "codePostal": "46160", - "codeCommune": "46045", - "libelleAcheminement": "CAJARC", - "nomCommune": "CAJARC" + "codePostal": "53800", + "codeCommune": "53258", + "libelleAcheminement": "LA SELLE CRAONNAISE", + "nomCommune": "LA SELLE CRAONNAISE" }, { - "codePostal": "67130", - "codeCommune": "67066", - "libelleAcheminement": "LA BROQUE", - "nomCommune": "LA BROQUE" + "codePostal": "39330", + "codeCommune": "39370", + "libelleAcheminement": "MOUCHARD", + "nomCommune": "MOUCHARD" }, { - "codePostal": "16140", - "codeCommune": "16390", - "libelleAcheminement": "TUSSON", - "nomCommune": "TUSSON" + "codePostal": "41700", + "codeCommune": "41166", + "libelleAcheminement": "OISLY", + "nomCommune": "OISLY" }, { - "codePostal": "32230", - "codeCommune": "32240", - "libelleAcheminement": "MASCARAS", - "nomCommune": "MASCARAS" + "codePostal": "54740", + "codeCommune": "54094", + "libelleAcheminement": "BRALLEVILLE", + "nomCommune": "BRALLEVILLE" }, { - "codePostal": "46100", - "codeCommune": "46053", - "libelleAcheminement": "CAMBURAT", - "nomCommune": "CAMBURAT" + "codePostal": "53270", + "codeCommune": "53265", + "libelleAcheminement": "TORCE VIVIERS EN CHARNIE", + "nomCommune": "TORCE VIVIERS EN CHARNIE" }, { - "codePostal": "67570", - "codeCommune": "67066", - "libelleAcheminement": "LA BROQUE", - "nomCommune": "LA BROQUE" + "codePostal": "39270", + "codeCommune": "39375", + "libelleAcheminement": "MOUTONNE", + "nomCommune": "MOUTONNE" }, { - "codePostal": "16460", - "codeCommune": "16392", - "libelleAcheminement": "VALENCE", - "nomCommune": "VALENCE" + "codePostal": "41290", + "codeCommune": "41171", + "libelleAcheminement": "OUCQUES LA NOUVELLE", + "nomCommune": "OUCQUES LA NOUVELLE" }, { - "codePostal": "32380", - "codeCommune": "32248", - "libelleAcheminement": "MAUROUX", - "nomCommune": "MAUROUX" + "codePostal": "54610", + "codeCommune": "54095", + "libelleAcheminement": "BRATTE", + "nomCommune": "BRATTE" }, { - "codePostal": "46110", - "codeCommune": "46058", - "libelleAcheminement": "CARENNAC", - "nomCommune": "CARENNAC" + "codePostal": "53160", + "codeCommune": "53266", + "libelleAcheminement": "TRANS", + "nomCommune": "TRANS" }, { - "codePostal": "67320", - "codeCommune": "67071", - "libelleAcheminement": "BUST", - "nomCommune": "BUST" + "codePostal": "39160", + "codeCommune": "39378", + "libelleAcheminement": "LES TROIS CHATEAUX", + "nomCommune": "LES TROIS CHATEAUX" }, { - "codePostal": "16320", - "codeCommune": "16394", - "libelleAcheminement": "VAUX LAVALETTE", - "nomCommune": "VAUX LAVALETTE" + "codePostal": "41240", + "codeCommune": "41173", + "libelleAcheminement": "BEAUCE LA ROMAINE", + "nomCommune": "BEAUCE LA ROMAINE" }, { - "codePostal": "32120", - "codeCommune": "32249", - "libelleAcheminement": "MAUVEZIN", - "nomCommune": "MAUVEZIN" + "codePostal": "54120", + "codeCommune": "54101", + "libelleAcheminement": "BROUVILLE", + "nomCommune": "BROUVILLE" }, { - "codePostal": "46500", - "codeCommune": "46059", - "libelleAcheminement": "CARLUCET", - "nomCommune": "CARLUCET" + "codePostal": "53250", + "codeCommune": "53272", + "libelleAcheminement": "VILLEPAIL", + "nomCommune": "VILLEPAIL" }, { - "codePostal": "67160", - "codeCommune": "67074", - "libelleAcheminement": "CLEEBOURG", - "nomCommune": "CLEEBOURG" + "codePostal": "39140", + "codeCommune": "39379", + "libelleAcheminement": "NANCE", + "nomCommune": "NANCE" }, { - "codePostal": "16350", - "codeCommune": "16404", - "libelleAcheminement": "VIEUX RUFFEC", - "nomCommune": "VIEUX RUFFEC" + "codePostal": "41270", + "codeCommune": "41179", + "libelleAcheminement": "LE POISLAY", + "nomCommune": "LE POISLAY" }, { - "codePostal": "32420", - "codeCommune": "32250", - "libelleAcheminement": "MEILHAN", - "nomCommune": "MEILHAN" + "codePostal": "54280", + "codeCommune": "54113", + "libelleAcheminement": "CHAMPENOUX", + "nomCommune": "CHAMPENOUX" }, { - "codePostal": "46310", - "codeCommune": "46072", - "libelleAcheminement": "CONCORES", - "nomCommune": "CONCORES" + "codePostal": "53170", + "codeCommune": "53273", + "libelleAcheminement": "VILLIERS CHARLEMAGNE", + "nomCommune": "VILLIERS CHARLEMAGNE" }, { - "codePostal": "67120", - "codeCommune": "67080", - "libelleAcheminement": "DACHSTEIN", - "nomCommune": "DACHSTEIN" + "codePostal": "39120", + "codeCommune": "39385", + "libelleAcheminement": "NEUBLANS ABERGEMENT", + "nomCommune": "NEUBLANS ABERGEMENT" }, { - "codePostal": "16310", - "codeCommune": "16416", - "libelleAcheminement": "VITRAC ST VINCENT", - "nomCommune": "VITRAC ST VINCENT" + "codePostal": "41400", + "codeCommune": "41180", + "libelleAcheminement": "PONTLEVOY", + "nomCommune": "PONTLEVOY" }, { - "codePostal": "32360", - "codeCommune": "32251", - "libelleAcheminement": "MERENS", - "nomCommune": "MERENS" + "codePostal": "54260", + "codeCommune": "54118", + "libelleAcheminement": "CHARENCY VEZIN", + "nomCommune": "CHARENCY VEZIN" }, { - "codePostal": "46260", - "codeCommune": "46073", - "libelleAcheminement": "CONCOTS", - "nomCommune": "CONCOTS" + "codePostal": "54610", + "codeCommune": "54001", + "libelleAcheminement": "ABAUCOURT SUR SEILLE", + "nomCommune": "ABAUCOURT" }, { - "codePostal": "67110", - "codeCommune": "67083", - "libelleAcheminement": "DAMBACH", - "nomCommune": "DAMBACH" + "codePostal": "39250", + "codeCommune": "39391", + "libelleAcheminement": "NOZEROY", + "nomCommune": "NOZEROY" }, { - "codePostal": "16400", - "codeCommune": "16418", - "libelleAcheminement": "VOEUIL ET GIGET", - "nomCommune": "VOEUIL ET GIGET" + "codePostal": "41110", + "codeCommune": "41181", + "libelleAcheminement": "POUILLE", + "nomCommune": "POUILLE" }, { - "codePostal": "32170", - "codeCommune": "32252", - "libelleAcheminement": "MIELAN", - "nomCommune": "MIELAN" + "codePostal": "54230", + "codeCommune": "54123", + "libelleAcheminement": "CHAVIGNY", + "nomCommune": "CHAVIGNY" }, { - "codePostal": "46130", - "codeCommune": "46076", - "libelleAcheminement": "CORNAC", - "nomCommune": "CORNAC" + "codePostal": "54770", + "codeCommune": "54006", + "libelleAcheminement": "AGINCOURT", + "nomCommune": "AGINCOURT" }, { - "codePostal": "67150", - "codeCommune": "67086", - "libelleAcheminement": "DAUBENSAND", - "nomCommune": "DAUBENSAND" + "codePostal": "39270", + "codeCommune": "39397", + "libelleAcheminement": "ORGELET", + "nomCommune": "ORGELET" }, { - "codePostal": "16330", - "codeCommune": "16419", - "libelleAcheminement": "VOUHARTE", - "nomCommune": "VOUHARTE" + "codePostal": "41200", + "codeCommune": "41185", + "libelleAcheminement": "PRUNIERS EN SOLOGNE", + "nomCommune": "PRUNIERS EN SOLOGNE" }, { - "codePostal": "32340", - "codeCommune": "32253", - "libelleAcheminement": "MIRADOUX", - "nomCommune": "MIRADOUX" + "codePostal": "54200", + "codeCommune": "54128", + "libelleAcheminement": "CHOLOY MENILLOT", + "nomCommune": "CHOLOY MENILLOT" }, { - "codePostal": "46150", - "codeCommune": "46080", - "libelleAcheminement": "CRAYSSAC", - "nomCommune": "CRAYSSAC" + "codePostal": "54460", + "codeCommune": "54007", + "libelleAcheminement": "AINGERAY", + "nomCommune": "AINGERAY" }, { - "codePostal": "67230", - "codeCommune": "67090", - "libelleAcheminement": "DIEBOLSHEIM", - "nomCommune": "DIEBOLSHEIM" + "codePostal": "39700", + "codeCommune": "39400", + "libelleAcheminement": "OUR", + "nomCommune": "OUR" }, { - "codePostal": "16330", - "codeCommune": "16423", - "libelleAcheminement": "XAMBES", - "nomCommune": "XAMBES" + "codePostal": "41270", + "codeCommune": "41196", + "libelleAcheminement": "RUAN SUR EGVONNE", + "nomCommune": "RUAN SUR EGVONNE" }, { - "codePostal": "32350", - "codeCommune": "32257", - "libelleAcheminement": "MIRANNES", - "nomCommune": "MIRANNES" + "codePostal": "54290", + "codeCommune": "54130", + "libelleAcheminement": "CLAYEURES", + "nomCommune": "CLAYEURES" }, { - "codePostal": "46230", - "codeCommune": "46082", - "libelleAcheminement": "CREMPS", - "nomCommune": "CREMPS" + "codePostal": "54450", + "codeCommune": "54013", + "libelleAcheminement": "AMENONCOURT", + "nomCommune": "AMENONCOURT" }, { - "codePostal": "67260", - "codeCommune": "67091", - "libelleAcheminement": "DIEDENDORF", - "nomCommune": "DIEDENDORF" + "codePostal": "39300", + "codeCommune": "39406", + "libelleAcheminement": "LE PASQUIER", + "nomCommune": "LE PASQUIER" }, { - "codePostal": "16210", - "codeCommune": "16424", - "libelleAcheminement": "YVIERS", - "nomCommune": "YVIERS" + "codePostal": "41310", + "codeCommune": "41199", + "libelleAcheminement": "ST AMAND LONGPRE", + "nomCommune": "ST AMAND LONGPRE" }, { - "codePostal": "32130", - "codeCommune": "32261", - "libelleAcheminement": "MONBLANC", - "nomCommune": "MONBLANC" + "codePostal": "54170", + "codeCommune": "54135", + "libelleAcheminement": "COLOMBEY LES BELLES", + "nomCommune": "COLOMBEY LES BELLES" }, { - "codePostal": "46340", - "codeCommune": "46087", - "libelleAcheminement": "DEGAGNAC", - "nomCommune": "DEGAGNAC" + "codePostal": "54560", + "codeCommune": "54015", + "libelleAcheminement": "ANDERNY", + "nomCommune": "ANDERNY" }, { - "codePostal": "67170", - "codeCommune": "67100", - "libelleAcheminement": "DONNENHEIM", - "nomCommune": "DONNENHEIM" + "codePostal": "39130", + "codeCommune": "39408", + "libelleAcheminement": "PATORNAY", + "nomCommune": "PATORNAY" }, { - "codePostal": "17540", - "codeCommune": "17007", - "libelleAcheminement": "ANAIS", - "nomCommune": "ANAIS" + "codePostal": "41330", + "codeCommune": "41203", + "libelleAcheminement": "ST BOHAIRE", + "nomCommune": "ST BOHAIRE" }, { - "codePostal": "32260", - "codeCommune": "32267", - "libelleAcheminement": "MONFERRAN PLAVES", - "nomCommune": "MONFERRAN PLAVES" + "codePostal": "54210", + "codeCommune": "54141", + "libelleAcheminement": "COYVILLER", + "nomCommune": "COYVILLER" }, { - "codePostal": "46140", - "codeCommune": "46088", - "libelleAcheminement": "DOUELLE", - "nomCommune": "DOUELLE" + "codePostal": "54200", + "codeCommune": "54016", + "libelleAcheminement": "ANDILLY", + "nomCommune": "ANDILLY" }, { - "codePostal": "67330", - "codeCommune": "67103", - "libelleAcheminement": "DOSSENHEIM SUR ZINSEL", - "nomCommune": "DOSSENHEIM SUR ZINSEL" + "codePostal": "39290", + "codeCommune": "39409", + "libelleAcheminement": "PEINTRE", + "nomCommune": "PEINTRE" }, { - "codePostal": "17540", - "codeCommune": "17009", - "libelleAcheminement": "ANGLIERS", - "nomCommune": "ANGLIERS" + "codePostal": "41000", + "codeCommune": "41206", + "libelleAcheminement": "ST DENIS SUR LOIRE", + "nomCommune": "ST DENIS SUR LOIRE" }, { - "codePostal": "32140", - "codeCommune": "32272", - "libelleAcheminement": "MONLAUR BERNET", - "nomCommune": "MONLAUR BERNET" + "codePostal": "54740", + "codeCommune": "54142", + "libelleAcheminement": "CRANTENOY", + "nomCommune": "CRANTENOY" }, { - "codePostal": "46120", - "codeCommune": "46096", - "libelleAcheminement": "ESPEYROUX", - "nomCommune": "ESPEYROUX" + "codePostal": "54540", + "codeCommune": "54017", + "libelleAcheminement": "ANGOMONT", + "nomCommune": "ANGOMONT" }, { - "codePostal": "67160", - "codeCommune": "67104", - "libelleAcheminement": "DRACHENBRONN BIRLENBACH", - "nomCommune": "DRACHENBRONN BIRLENBACH" + "codePostal": "39270", + "codeCommune": "39420", + "libelleAcheminement": "PIMORIN", + "nomCommune": "PIMORIN" }, { - "codePostal": "17690", - "codeCommune": "17010", - "libelleAcheminement": "ANGOULINS", - "nomCommune": "ANGOULINS" + "codePostal": "41160", + "codeCommune": "41216", + "libelleAcheminement": "ST JEAN FROIDMENTEL", + "nomCommune": "ST JEAN FROIDMENTEL" }, { - "codePostal": "32140", - "codeCommune": "32280", - "libelleAcheminement": "MONT D ASTARAC", - "nomCommune": "MONT D ASTARAC" + "codePostal": "54113", + "codeCommune": "54146", + "libelleAcheminement": "CREZILLES", + "nomCommune": "CREZILLES" }, { - "codePostal": "46400", - "codeCommune": "46115", - "libelleAcheminement": "FRAYSSINHES", - "nomCommune": "FRAYSSINHES" + "codePostal": "54530", + "codeCommune": "54022", + "libelleAcheminement": "ARNAVILLE", + "nomCommune": "ARNAVILLE" }, { - "codePostal": "67270", - "codeCommune": "67109", - "libelleAcheminement": "DURNINGEN", - "nomCommune": "DURNINGEN" + "codePostal": "39210", + "codeCommune": "39422", + "libelleAcheminement": "PLAINOISEAU", + "nomCommune": "PLAINOISEAU" }, { - "codePostal": "17380", - "codeCommune": "17012", - "libelleAcheminement": "ANNEZAY", - "nomCommune": "ANNEZAY" + "codePostal": "41220", + "codeCommune": "41220", + "libelleAcheminement": "ST LAURENT NOUAN", + "nomCommune": "ST LAURENT NOUAN" }, { - "codePostal": "32170", - "codeCommune": "32281", - "libelleAcheminement": "MONT DE MARRAST", - "nomCommune": "MONT DE MARRAST" + "codePostal": "54300", + "codeCommune": "54147", + "libelleAcheminement": "CRION", + "nomCommune": "CRION" }, { - "codePostal": "46210", - "codeCommune": "46125", - "libelleAcheminement": "GORSES", - "nomCommune": "GORSES" + "codePostal": "54760", + "codeCommune": "54024", + "libelleAcheminement": "ARRAYE ET HAN", + "nomCommune": "ARRAYE ET HAN" }, { - "codePostal": "67470", - "codeCommune": "67113", - "libelleAcheminement": "EBERBACH SELTZ", - "nomCommune": "EBERBACH SELTZ" + "codePostal": "39130", + "codeCommune": "39435", + "libelleAcheminement": "PONT DE POITTE", + "nomCommune": "PONT DE POITTE" }, { - "codePostal": "17400", - "codeCommune": "17013", - "libelleAcheminement": "ANTEZANT LA CHAPELLE", - "nomCommune": "ANTEZANT LA CHAPELLE" + "codePostal": "41370", + "codeCommune": "41221", + "libelleAcheminement": "ST LEONARD EN BEAUCE", + "nomCommune": "ST LEONARD EN BEAUCE" }, { - "codePostal": "32220", - "codeCommune": "32284", - "libelleAcheminement": "MONTEGUT SAVES", - "nomCommune": "MONTEGUT SAVES" + "codePostal": "54720", + "codeCommune": "54151", + "libelleAcheminement": "CUTRY", + "nomCommune": "CUTRY" }, { - "codePostal": "46160", - "codeCommune": "46129", - "libelleAcheminement": "GREALOU", - "nomCommune": "GREALOU" + "codePostal": "54490", + "codeCommune": "54033", + "libelleAcheminement": "AVILLERS", + "nomCommune": "AVILLERS" }, { - "codePostal": "67600", - "codeCommune": "67116", - "libelleAcheminement": "EBERSMUNSTER", - "nomCommune": "EBERSMUNSTER" + "codePostal": "39110", + "codeCommune": "39436", + "libelleAcheminement": "PONT D HERY", + "nomCommune": "PONT D HERY" }, { - "codePostal": "17770", - "codeCommune": "17025", - "libelleAcheminement": "AUMAGNE", - "nomCommune": "AUMAGNE" + "codePostal": "41110", + "codeCommune": "41239", + "libelleAcheminement": "SEIGY", + "nomCommune": "SEIGY" }, { - "codePostal": "32300", - "codeCommune": "32293", - "libelleAcheminement": "MOUCHES", - "nomCommune": "MOUCHES" + "codePostal": "54930", + "codeCommune": "54156", + "libelleAcheminement": "DIARVILLE", + "nomCommune": "DIARVILLE" }, { - "codePostal": "46700", - "codeCommune": "46130", - "libelleAcheminement": "GREZELS", - "nomCommune": "GREZELS" + "codePostal": "54150", + "codeCommune": "54036", + "libelleAcheminement": "AVRIL", + "nomCommune": "AVRIL" }, { - "codePostal": "67960", - "codeCommune": "67124", - "libelleAcheminement": "ENTZHEIM", - "nomCommune": "ENTZHEIM" + "codePostal": "39110", + "codeCommune": "39436", + "libelleAcheminement": "PONT D HERY", + "nomCommune": "PONT D HERY" }, { - "codePostal": "17120", - "codeCommune": "17034", - "libelleAcheminement": "BARZAN", - "nomCommune": "BARZAN" + "codePostal": "41120", + "codeCommune": "41246", + "libelleAcheminement": "SEUR", + "nomCommune": "SEUR" }, { - "codePostal": "32270", - "codeCommune": "32298", - "libelleAcheminement": "NOUGAROULET", - "nomCommune": "NOUGAROULET" + "codePostal": "54770", + "codeCommune": "54168", + "libelleAcheminement": "DOMMARTIN SOUS AMANCE", + "nomCommune": "DOMMARTIN SOUS AMANCE" }, { - "codePostal": "46150", - "codeCommune": "46136", - "libelleAcheminement": "LABASTIDE DU VERT", - "nomCommune": "LABASTIDE DU VERT" + "codePostal": "54210", + "codeCommune": "54037", + "libelleAcheminement": "AZELOT", + "nomCommune": "AZELOT" }, { - "codePostal": "67120", - "codeCommune": "67127", - "libelleAcheminement": "ERGERSHEIM", - "nomCommune": "ERGERSHEIM" + "codePostal": "39270", + "codeCommune": "39443", + "libelleAcheminement": "PRESILLY", + "nomCommune": "PRESILLY" }, { - "codePostal": "17490", - "codeCommune": "17037", - "libelleAcheminement": "BEAUVAIS SUR MATHA", - "nomCommune": "BEAUVAIS SUR MATHA" + "codePostal": "41170", + "codeCommune": "41248", + "libelleAcheminement": "COUETRON AU PERCHE", + "nomCommune": "COUETRON AU PERCHE" }, { - "codePostal": "32550", - "codeCommune": "32307", - "libelleAcheminement": "PAVIE", - "nomCommune": "PAVIE" + "codePostal": "54490", + "codeCommune": "54169", + "libelleAcheminement": "DOMPRIX", + "nomCommune": "DOMPRIX" }, { - "codePostal": "46240", - "codeCommune": "46138", - "libelleAcheminement": "COEUR DE CAUSSE", - "nomCommune": "COEUR DE CAUSSE" + "codePostal": "54120", + "codeCommune": "54039", + "libelleAcheminement": "BACCARAT", + "nomCommune": "BACCARAT" }, { - "codePostal": "67150", - "codeCommune": "67130", - "libelleAcheminement": "ERSTEIN", - "nomCommune": "ERSTEIN" + "codePostal": "39110", + "codeCommune": "39444", + "libelleAcheminement": "PRETIN", + "nomCommune": "PRETIN" }, { - "codePostal": "17800", - "codeCommune": "17039", - "libelleAcheminement": "BELLUIRE", - "nomCommune": "BELLUIRE" + "codePostal": "41170", + "codeCommune": "41248", + "libelleAcheminement": "COUETRON AU PERCHE", + "nomCommune": "COUETRON AU PERCHE" }, { - "codePostal": "32130", - "codeCommune": "32308", - "libelleAcheminement": "PEBEES", - "nomCommune": "PEBEES" + "codePostal": "54370", + "codeCommune": "54173", + "libelleAcheminement": "DROUVILLE", + "nomCommune": "DROUVILLE" }, { - "codePostal": "46090", - "codeCommune": "46156", - "libelleAcheminement": "BELLEFONT LA RAUZE", - "nomCommune": "BELLEFONT LA RAUZE" + "codePostal": "54170", + "codeCommune": "54041", + "libelleAcheminement": "BAGNEUX", + "nomCommune": "BAGNEUX" }, { - "codePostal": "67150", - "codeCommune": "67130", - "libelleAcheminement": "ERSTEIN", - "nomCommune": "ERSTEIN" + "codePostal": "39600", + "codeCommune": "39446", + "libelleAcheminement": "PUPILLIN", + "nomCommune": "PUPILLIN" }, { - "codePostal": "17770", - "codeCommune": "17042", - "libelleAcheminement": "BERCLOUX", - "nomCommune": "BERCLOUX" + "codePostal": "41170", + "codeCommune": "41254", + "libelleAcheminement": "LE TEMPLE", + "nomCommune": "LE TEMPLE" }, { - "codePostal": "32420", - "codeCommune": "32309", - "libelleAcheminement": "PELLEFIGUE", - "nomCommune": "PELLEFIGUE" + "codePostal": "54200", + "codeCommune": "54174", + "libelleAcheminement": "ECROUVES", + "nomCommune": "ECROUVES" }, { - "codePostal": "46090", - "codeCommune": "46156", - "libelleAcheminement": "BELLEFONT LA RAUZE", - "nomCommune": "BELLEFONT LA RAUZE" + "codePostal": "54290", + "codeCommune": "54042", + "libelleAcheminement": "BAINVILLE AUX MIROIRS", + "nomCommune": "BAINVILLE AUX MIROIRS" }, { - "codePostal": "67117", - "codeCommune": "67138", - "libelleAcheminement": "FESSENHEIM LE BAS", - "nomCommune": "FESSENHEIM LE BAS" + "codePostal": "39570", + "codeCommune": "39447", + "libelleAcheminement": "QUINTIGNY", + "nomCommune": "QUINTIGNY" }, { - "codePostal": "17330", - "codeCommune": "17043", - "libelleAcheminement": "BERNAY ST MARTIN", - "nomCommune": "BERNAY ST MARTIN" + "codePostal": "41140", + "codeCommune": "41258", + "libelleAcheminement": "THESEE", + "nomCommune": "THESEE" }, { - "codePostal": "32380", - "codeCommune": "32313", - "libelleAcheminement": "PESSOULENS", - "nomCommune": "PESSOULENS" + "codePostal": "54370", + "codeCommune": "54176", + "libelleAcheminement": "EINVILLE AU JARD", + "nomCommune": "EINVILLE AU JARD" }, { - "codePostal": "46400", - "codeCommune": "46159", - "libelleAcheminement": "LATOUILLE LENTILLAC", - "nomCommune": "LATOUILLE LENTILLAC" + "codePostal": "54150", + "codeCommune": "54048", + "libelleAcheminement": "LES BAROCHES", + "nomCommune": "LES BAROCHES" }, { - "codePostal": "67310", - "codeCommune": "67139", - "libelleAcheminement": "FLEXBOURG", - "nomCommune": "FLEXBOURG" + "codePostal": "39290", + "codeCommune": "39449", + "libelleAcheminement": "RAINANS", + "nomCommune": "RAINANS" }, { - "codePostal": "17330", - "codeCommune": "17043", - "libelleAcheminement": "BERNAY ST MARTIN", - "nomCommune": "BERNAY ST MARTIN" + "codePostal": "41100", + "codeCommune": "41259", + "libelleAcheminement": "THORE LA ROCHETTE", + "nomCommune": "THORE LA ROCHETTE" }, { - "codePostal": "32360", - "codeCommune": "32316", - "libelleAcheminement": "PEYRUSSE MASSAS", - "nomCommune": "PEYRUSSE MASSAS" + "codePostal": "54610", + "codeCommune": "54179", + "libelleAcheminement": "EPLY", + "nomCommune": "EPLY" }, { - "codePostal": "46150", - "codeCommune": "46171", - "libelleAcheminement": "LHERM", - "nomCommune": "LHERM" + "codePostal": "54980", + "codeCommune": "54051", + "libelleAcheminement": "BATILLY", + "nomCommune": "BATILLY" }, { - "codePostal": "67290", - "codeCommune": "67148", - "libelleAcheminement": "FROHMUHL", - "nomCommune": "FROHMUHL" + "codePostal": "39230", + "codeCommune": "39472", + "libelleAcheminement": "RYE", + "nomCommune": "RYE" }, { - "codePostal": "17700", - "codeCommune": "17063", - "libelleAcheminement": "BREUIL LA REORTE", - "nomCommune": "BREUIL LA REORTE" + "codePostal": "41220", + "codeCommune": "41260", + "libelleAcheminement": "THOURY", + "nomCommune": "THOURY" }, { - "codePostal": "32500", - "codeCommune": "32318", - "libelleAcheminement": "PIS", - "nomCommune": "PIS" + "codePostal": "54680", + "codeCommune": "54181", + "libelleAcheminement": "ERROUVILLE", + "nomCommune": "ERROUVILLE" }, { - "codePostal": "46100", - "codeCommune": "46175", - "libelleAcheminement": "LISSAC ET MOURET", - "nomCommune": "LISSAC ET MOURET" + "codePostal": "54290", + "codeCommune": "54054", + "libelleAcheminement": "BAYON", + "nomCommune": "BAYON" }, { - "codePostal": "67760", - "codeCommune": "67151", - "libelleAcheminement": "GAMBSHEIM", - "nomCommune": "GAMBSHEIM" + "codePostal": "39410", + "codeCommune": "39476", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "17160", - "codeCommune": "17067", - "libelleAcheminement": "BRIE SOUS MATHA", - "nomCommune": "BRIE SOUS MATHA" + "codePostal": "41100", + "codeCommune": "41269", + "libelleAcheminement": "VENDOME", + "nomCommune": "VENDOME" }, { - "codePostal": "32130", - "codeCommune": "32322", - "libelleAcheminement": "POMPIAC", - "nomCommune": "POMPIAC" + "codePostal": "54830", + "codeCommune": "54183", + "libelleAcheminement": "ESSEY LA COTE", + "nomCommune": "ESSEY LA COTE" }, { - "codePostal": "46100", - "codeCommune": "46180", - "libelleAcheminement": "LUNAN", - "nomCommune": "LUNAN" + "codePostal": "54610", + "codeCommune": "54059", + "libelleAcheminement": "BELLEAU", + "nomCommune": "BELLEAU" }, { - "codePostal": "67360", - "codeCommune": "67160", - "libelleAcheminement": "GOERSDORF", - "nomCommune": "GOERSDORF" + "codePostal": "39300", + "codeCommune": "39481", + "libelleAcheminement": "ST GERMAIN EN MONTAGNE", + "nomCommune": "ST GERMAIN EN MONTAGNE" }, { - "codePostal": "17210", - "codeCommune": "17074", - "libelleAcheminement": "BUSSAC FORET", - "nomCommune": "BUSSAC FORET" + "codePostal": "41270", + "codeCommune": "41277", + "libelleAcheminement": "VILLEBOUT", + "nomCommune": "VILLEBOUT" }, { - "codePostal": "32320", - "codeCommune": "32326", - "libelleAcheminement": "POUYLEBON", - "nomCommune": "POUYLEBON" + "codePostal": "54470", + "codeCommune": "54187", + "libelleAcheminement": "EUVEZIN", + "nomCommune": "EUVEZIN" }, { - "codePostal": "46090", - "codeCommune": "46188", - "libelleAcheminement": "MAXOU", - "nomCommune": "MAXOU" + "codePostal": "54480", + "codeCommune": "54064", + "libelleAcheminement": "BERTRAMBOIS", + "nomCommune": "BERTRAMBOIS" }, { - "codePostal": "67210", - "codeCommune": "67164", - "libelleAcheminement": "GOXWILLER", - "nomCommune": "GOXWILLER" + "codePostal": "39320", + "codeCommune": "39485", + "libelleAcheminement": "VAL SURAN", + "nomCommune": "VAL SURAN" }, { - "codePostal": "17130", - "codeCommune": "17092", - "libelleAcheminement": "CHARTUZAC", - "nomCommune": "CHARTUZAC" + "codePostal": "41100", + "codeCommune": "41283", + "libelleAcheminement": "VILLEMARDY", + "nomCommune": "VILLEMARDY" }, { - "codePostal": "32100", - "codeCommune": "32350", - "libelleAcheminement": "ROQUEPINE", - "nomCommune": "ROQUEPINE" + "codePostal": "54210", + "codeCommune": "54192", + "libelleAcheminement": "FERRIERES", + "nomCommune": "FERRIERES" }, { - "codePostal": "46310", - "codeCommune": "46196", - "libelleAcheminement": "MONTAMEL", - "nomCommune": "MONTAMEL" + "codePostal": "54380", + "codeCommune": "54072", + "libelleAcheminement": "BEZAUMONT", + "nomCommune": "BEZAUMONT" }, { - "codePostal": "67870", - "codeCommune": "67172", - "libelleAcheminement": "GRIESHEIM PRES MOLSHEIM", - "nomCommune": "GRIESHEIM PRES MOLSHEIM" + "codePostal": "39230", + "codeCommune": "39486", + "libelleAcheminement": "ST LAMAIN", + "nomCommune": "ST LAMAIN" }, { - "codePostal": "17600", - "codeCommune": "17097", - "libelleAcheminement": "LE CHAY", - "nomCommune": "LE CHAY" + "codePostal": "41220", + "codeCommune": "41285", + "libelleAcheminement": "VILLENY", + "nomCommune": "VILLENY" }, { - "codePostal": "32390", - "codeCommune": "32368", - "libelleAcheminement": "STE CHRISTIE", - "nomCommune": "STE CHRISTIE" + "codePostal": "54150", + "codeCommune": "54198", + "libelleAcheminement": "FLEVILLE LIXIERES", + "nomCommune": "FLEVILLE LIXIERES" }, { - "codePostal": "46250", - "codeCommune": "46200", - "libelleAcheminement": "MONTCLERA", - "nomCommune": "MONTCLERA" + "codePostal": "54450", + "codeCommune": "54077", + "libelleAcheminement": "BLAMONT", + "nomCommune": "BLAMONT" }, { - "codePostal": "67370", - "codeCommune": "67173", - "libelleAcheminement": "GRIESHEIM SUR SOUFFEL", - "nomCommune": "GRIESHEIM SUR SOUFFEL" + "codePostal": "39150", + "codeCommune": "39487", + "libelleAcheminement": "ST LAURENT EN GRANDVAUX", + "nomCommune": "ST LAURENT EN GRANDVAUX" }, { - "codePostal": "17610", - "codeCommune": "17100", - "libelleAcheminement": "CHERAC", - "nomCommune": "CHERAC" + "codePostal": "41100", + "codeCommune": "41291", + "libelleAcheminement": "VILLETRUN", + "nomCommune": "VILLETRUN" }, { - "codePostal": "32430", - "codeCommune": "32372", - "libelleAcheminement": "ST CRICQ", - "nomCommune": "ST CRICQ" + "codePostal": "54122", + "codeCommune": "54201", + "libelleAcheminement": "FONTENOY LA JOUTE", + "nomCommune": "FONTENOY LA JOUTE" }, { - "codePostal": "46800", - "codeCommune": "46201", - "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", - "nomCommune": "MONTCUQ EN QUERCY BLANC" + "codePostal": "54450", + "codeCommune": "54078", + "libelleAcheminement": "BLEMEREY", + "nomCommune": "BLEMEREY" }, { - "codePostal": "67500", - "codeCommune": "67180", - "libelleAcheminement": "HAGUENAU", - "nomCommune": "HAGUENAU" + "codePostal": "39120", + "codeCommune": "39490", + "libelleAcheminement": "ST LOUP", + "nomCommune": "ST LOUP" }, { - "codePostal": "17270", - "codeCommune": "17110", - "libelleAcheminement": "CLERAC", - "nomCommune": "CLERAC" + "codePostal": "41500", + "codeCommune": "41292", + "libelleAcheminement": "VILLEXANTON", + "nomCommune": "VILLEXANTON" }, { - "codePostal": "32300", - "codeCommune": "32375", - "libelleAcheminement": "ST ELIX THEUX", - "nomCommune": "ST ELIX THEUX" + "codePostal": "54300", + "codeCommune": "54206", + "libelleAcheminement": "FRAIMBOIS", + "nomCommune": "FRAIMBOIS" }, { - "codePostal": "46270", - "codeCommune": "46207", - "libelleAcheminement": "MONTREDON", - "nomCommune": "MONTREDON" + "codePostal": "54111", + "codeCommune": "54084", + "libelleAcheminement": "MONT BONVILLERS", + "nomCommune": "MONT BONVILLERS" }, { - "codePostal": "67117", - "codeCommune": "67181", - "libelleAcheminement": "HANDSCHUHEIM", - "nomCommune": "HANDSCHUHEIM" + "codePostal": "39150", + "codeCommune": "39494", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "17130", - "codeCommune": "17129", - "libelleAcheminement": "COURPIGNAC", - "nomCommune": "COURPIGNAC" + "codePostal": "41100", + "codeCommune": "41293", + "libelleAcheminement": "VILLIERSFAUX", + "nomCommune": "VILLIERSFAUX" }, { - "codePostal": "32200", - "codeCommune": "32379", - "libelleAcheminement": "ST GERMIER", - "nomCommune": "ST GERMIER" + "codePostal": "54200", + "codeCommune": "54208", + "libelleAcheminement": "FRANCHEVILLE", + "nomCommune": "FRANCHEVILLE" }, { - "codePostal": "46600", - "codeCommune": "46208", - "libelleAcheminement": "MONTVALENT", - "nomCommune": "MONTVALENT" + "codePostal": "54136", + "codeCommune": "54090", + "libelleAcheminement": "BOUXIERES AUX DAMES", + "nomCommune": "BOUXIERES AUX DAMES" }, { - "codePostal": "67260", - "codeCommune": "67191", - "libelleAcheminement": "HERBITZHEIM", - "nomCommune": "HERBITZHEIM" + "codePostal": "39110", + "codeCommune": "39495", + "libelleAcheminement": "ST THIEBAUD", + "nomCommune": "ST THIEBAUD" }, { - "codePostal": "17260", - "codeCommune": "17133", - "libelleAcheminement": "CRAVANS", - "nomCommune": "CRAVANS" + "codePostal": "41100", + "codeCommune": "41294", + "libelleAcheminement": "VILLIERS SUR LOIR", + "nomCommune": "VILLIERS SUR LOIR" }, { - "codePostal": "32550", - "codeCommune": "32381", - "libelleAcheminement": "ST JEAN LE COMTAL", - "nomCommune": "ST JEAN LE COMTAL" + "codePostal": "54380", + "codeCommune": "54225", + "libelleAcheminement": "GEZONCOURT", + "nomCommune": "GEZONCOURT" }, { - "codePostal": "46150", - "codeCommune": "46211", - "libelleAcheminement": "NUZEJOULS", - "nomCommune": "NUZEJOULS" + "codePostal": "54540", + "codeCommune": "54097", + "libelleAcheminement": "BREMENIL", + "nomCommune": "BREMENIL" }, { - "codePostal": "67290", - "codeCommune": "67198", - "libelleAcheminement": "HINSBOURG", - "nomCommune": "HINSBOURG" + "codePostal": "39110", + "codeCommune": "39497", + "libelleAcheminement": "SAIZENAY", + "nomCommune": "SAIZENAY" }, { - "codePostal": "17550", - "codeCommune": "17140", - "libelleAcheminement": "DOLUS D OLERON", - "nomCommune": "DOLUS D OLERON" + "codePostal": "42550", + "codeCommune": "42006", + "libelleAcheminement": "APINAC", + "nomCommune": "APINAC" }, { - "codePostal": "32230", - "codeCommune": "32383", - "libelleAcheminement": "ST JUSTIN", - "nomCommune": "ST JUSTIN" + "codePostal": "54450", + "codeCommune": "54233", + "libelleAcheminement": "GONDREXON", + "nomCommune": "GONDREXON" }, { - "codePostal": "46330", - "codeCommune": "46212", - "libelleAcheminement": "ORNIAC", - "nomCommune": "ORNIAC" + "codePostal": "54790", + "codeCommune": "54099", + "libelleAcheminement": "VAL DE BRIEY", + "nomCommune": "VAL DE BRIEY" }, { - "codePostal": "67320", - "codeCommune": "67201", - "libelleAcheminement": "HIRSCHLAND", - "nomCommune": "HIRSCHLAND" + "codePostal": "39120", + "codeCommune": "39507", + "libelleAcheminement": "SELIGNEY", + "nomCommune": "SELIGNEY" }, { - "codePostal": "17810", - "codeCommune": "17148", - "libelleAcheminement": "ECURAT", - "nomCommune": "ECURAT" + "codePostal": "42130", + "codeCommune": "42009", + "libelleAcheminement": "ARTHUN", + "nomCommune": "ARTHUN" }, { - "codePostal": "32220", - "codeCommune": "32386", - "libelleAcheminement": "ST LIZIER DU PLANTE", - "nomCommune": "ST LIZIER DU PLANTE" + "codePostal": "54470", + "codeCommune": "54244", + "libelleAcheminement": "HAGEVILLE", + "nomCommune": "HAGEVILLE" }, { - "codePostal": "46140", - "codeCommune": "46214", - "libelleAcheminement": "PARNAC", - "nomCommune": "PARNAC" + "codePostal": "54110", + "codeCommune": "54104", + "libelleAcheminement": "BUISSONCOURT", + "nomCommune": "BUISSONCOURT" }, { - "codePostal": "67250", - "codeCommune": "67206", - "libelleAcheminement": "HOFFEN", - "nomCommune": "HOFFEN" + "codePostal": "39300", + "codeCommune": "39522", + "libelleAcheminement": "SUPT", + "nomCommune": "SUPT" }, { - "codePostal": "17400", - "codeCommune": "17150", - "libelleAcheminement": "LES EGLISES D ARGENTEUIL", - "nomCommune": "LES EGLISES D ARGENTEUIL" + "codePostal": "42600", + "codeCommune": "42012", + "libelleAcheminement": "BARD", + "nomCommune": "BARD" }, { - "codePostal": "32300", - "codeCommune": "32397", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "54290", + "codeCommune": "54245", + "libelleAcheminement": "HAIGNEVILLE", + "nomCommune": "HAIGNEVILLE" }, { - "codePostal": "46220", - "codeCommune": "46218", - "libelleAcheminement": "PESCADOIRES", - "nomCommune": "PESCADOIRES" + "codePostal": "54113", + "codeCommune": "54105", + "libelleAcheminement": "BULLIGNY", + "nomCommune": "BULLIGNY" }, { - "codePostal": "67117", - "codeCommune": "67214", - "libelleAcheminement": "HURTIGHEIM", - "nomCommune": "HURTIGHEIM" + "codePostal": "39300", + "codeCommune": "39523", + "libelleAcheminement": "SYAM", + "nomCommune": "SYAM" }, { - "codePostal": "17250", - "codeCommune": "17154", - "libelleAcheminement": "LES ESSARDS", - "nomCommune": "LES ESSARDS" + "codePostal": "42130", + "codeCommune": "42019", + "libelleAcheminement": "BOEN SUR LIGNON", + "nomCommune": "BOEN SUR LIGNON" }, { - "codePostal": "32100", - "codeCommune": "32400", - "libelleAcheminement": "ST ORENS POUY PETIT", - "nomCommune": "ST ORENS POUY PETIT" + "codePostal": "54860", + "codeCommune": "54254", + "libelleAcheminement": "HAUCOURT MOULAINE", + "nomCommune": "HAUCOURT MOULAINE" }, { - "codePostal": "46310", - "codeCommune": "46219", - "libelleAcheminement": "PEYRILLES", - "nomCommune": "PEYRILLES" + "codePostal": "54134", + "codeCommune": "54109", + "libelleAcheminement": "CEINTREY", + "nomCommune": "CEINTREY" }, { - "codePostal": "67270", - "codeCommune": "67215", - "libelleAcheminement": "HUTTENDORF", - "nomCommune": "HUTTENDORF" + "codePostal": "39500", + "codeCommune": "39526", + "libelleAcheminement": "TAVAUX", + "nomCommune": "TAVAUX" }, { - "codePostal": "17270", - "codeCommune": "17167", - "libelleAcheminement": "LE FOUILLOUX", - "nomCommune": "LE FOUILLOUX" + "codePostal": "42460", + "codeCommune": "42025", + "libelleAcheminement": "BOYER", + "nomCommune": "BOYER" }, { - "codePostal": "32190", - "codeCommune": "32402", - "libelleAcheminement": "ST PAUL DE BAISE", - "nomCommune": "ST PAUL DE BAISE" + "codePostal": "54440", + "codeCommune": "54261", + "libelleAcheminement": "HERSERANGE", + "nomCommune": "HERSERANGE" }, { - "codePostal": "46360", - "codeCommune": "46245", - "libelleAcheminement": "SABADEL LAUZES", - "nomCommune": "SABADEL LAUZES" + "codePostal": "54300", + "codeCommune": "54116", + "libelleAcheminement": "CHANTEHEUX", + "nomCommune": "CHANTEHEUX" }, { - "codePostal": "67480", - "codeCommune": "67231", - "libelleAcheminement": "KAUFFENHEIM", - "nomCommune": "KAUFFENHEIM" + "codePostal": "39110", + "codeCommune": "39529", + "libelleAcheminement": "THESY", + "nomCommune": "THESY" }, { - "codePostal": "17430", - "codeCommune": "17174", - "libelleAcheminement": "GENOUILLE", - "nomCommune": "GENOUILLE" + "codePostal": "42240", + "codeCommune": "42031", + "libelleAcheminement": "CALOIRE", + "nomCommune": "CALOIRE" }, { - "codePostal": "32290", - "codeCommune": "32403", - "libelleAcheminement": "ST PIERRE D AUBEZIES", - "nomCommune": "ST PIERRE D AUBEZIES" + "codePostal": "54330", + "codeCommune": "54264", + "libelleAcheminement": "HOUDELMONT", + "nomCommune": "HOUDELMONT" }, { - "codePostal": "46360", - "codeCommune": "46252", - "libelleAcheminement": "LES PECHS DU VERS", - "nomCommune": "LES PECHS DU VERS" + "codePostal": "54720", + "codeCommune": "54127", + "libelleAcheminement": "CHENIERES", + "nomCommune": "CHENIERES" }, { - "codePostal": "67260", - "codeCommune": "67234", - "libelleAcheminement": "KESKASTEL", - "nomCommune": "KESKASTEL" + "codePostal": "39240", + "codeCommune": "39530", + "libelleAcheminement": "THOIRETTE COISIA", + "nomCommune": "THOIRETTE COISIA" }, { - "codePostal": "17160", - "codeCommune": "17177", - "libelleAcheminement": "LE GICQ", - "nomCommune": "LE GICQ" + "codePostal": "42130", + "codeCommune": "42035", + "libelleAcheminement": "CEZAY", + "nomCommune": "CEZAY" }, { - "codePostal": "32420", - "codeCommune": "32413", - "libelleAcheminement": "SARCOS", - "nomCommune": "SARCOS" + "codePostal": "54330", + "codeCommune": "54266", + "libelleAcheminement": "HOUDREVILLE", + "nomCommune": "HOUDREVILLE" }, { - "codePostal": "46310", - "codeCommune": "46253", - "libelleAcheminement": "ST CHAMARAND", - "nomCommune": "ST CHAMARAND" + "codePostal": "54480", + "codeCommune": "54129", + "libelleAcheminement": "CIREY SUR VEZOUZE", + "nomCommune": "CIREY SUR VEZOUZE" }, { - "codePostal": "67320", - "codeCommune": "67241", - "libelleAcheminement": "KIRRBERG", - "nomCommune": "KIRRBERG" + "codePostal": "39240", + "codeCommune": "39530", + "libelleAcheminement": "THOIRETTE COISIA", + "nomCommune": "THOIRETTE COISIA" }, { - "codePostal": "17520", - "codeCommune": "17192", - "libelleAcheminement": "JARNAC CHAMPAGNE", - "nomCommune": "JARNAC CHAMPAGNE" + "codePostal": "42600", + "codeCommune": "42038", + "libelleAcheminement": "CHALAIN LE COMTAL", + "nomCommune": "CHALAIN LE COMTAL" }, { - "codePostal": "32400", - "codeCommune": "32414", - "libelleAcheminement": "SARRAGACHIES", - "nomCommune": "SARRAGACHIES" + "codePostal": "54450", + "codeCommune": "54271", + "libelleAcheminement": "IGNEY", + "nomCommune": "IGNEY" }, { - "codePostal": "46800", - "codeCommune": "46262", - "libelleAcheminement": "LENDOU EN QUERCY", - "nomCommune": "LENDOU EN QUERCY" + "codePostal": "54400", + "codeCommune": "54138", + "libelleAcheminement": "COSNES ET ROMAIN", + "nomCommune": "COSNES ET ROMAIN" }, { - "codePostal": "67330", - "codeCommune": "67242", - "libelleAcheminement": "KIRRWILLER", - "nomCommune": "KIRRWILLER" + "codePostal": "39600", + "codeCommune": "39539", + "libelleAcheminement": "VADANS", + "nomCommune": "VADANS" }, { - "codePostal": "17770", - "codeCommune": "17198", - "libelleAcheminement": "JUICQ", - "nomCommune": "JUICQ" + "codePostal": "42410", + "codeCommune": "42051", + "libelleAcheminement": "LA CHAPELLE VILLARS", + "nomCommune": "LA CHAPELLE VILLARS" }, { - "codePostal": "32120", - "codeCommune": "32416", - "libelleAcheminement": "SARRANT", - "nomCommune": "SARRANT" + "codePostal": "54200", + "codeCommune": "54272", + "libelleAcheminement": "JAILLON", + "nomCommune": "JAILLON" }, { - "codePostal": "46800", - "codeCommune": "46263", - "libelleAcheminement": "BARGUELONNE EN QUERCY", - "nomCommune": "BARGUELONNE EN QUERCY" + "codePostal": "54680", + "codeCommune": "54149", + "libelleAcheminement": "CRUSNES", + "nomCommune": "CRUSNES" }, { - "codePostal": "67170", - "codeCommune": "67249", - "libelleAcheminement": "KRAUTWILLER", - "nomCommune": "KRAUTWILLER" + "codePostal": "39300", + "codeCommune": "39540", + "libelleAcheminement": "VALEMPOULIERES", + "nomCommune": "VALEMPOULIERES" }, { - "codePostal": "17140", - "codeCommune": "17200", - "libelleAcheminement": "LAGORD", - "nomCommune": "LAGORD" + "codePostal": "42940", + "codeCommune": "42054", + "libelleAcheminement": "CHATELNEUF", + "nomCommune": "CHATELNEUF" }, { - "codePostal": "32220", - "codeCommune": "32418", - "libelleAcheminement": "SAUVETERRE", - "nomCommune": "SAUVETERRE" + "codePostal": "54300", + "codeCommune": "54281", + "libelleAcheminement": "JOLIVET", + "nomCommune": "JOLIVET" }, { - "codePostal": "46800", - "codeCommune": "46263", - "libelleAcheminement": "BARGUELONNE EN QUERCY", - "nomCommune": "BARGUELONNE EN QUERCY" + "codePostal": "54670", + "codeCommune": "54150", + "libelleAcheminement": "CUSTINES", + "nomCommune": "CUSTINES" }, { - "codePostal": "67450", - "codeCommune": "67256", - "libelleAcheminement": "LAMPERTHEIM", - "nomCommune": "LAMPERTHEIM" + "codePostal": "39300", + "codeCommune": "39543", + "libelleAcheminement": "VANNOZ", + "nomCommune": "VANNOZ" }, { - "codePostal": "17330", - "codeCommune": "17211", - "libelleAcheminement": "LOULAY", - "nomCommune": "LOULAY" + "codePostal": "42410", + "codeCommune": "42056", + "libelleAcheminement": "CHAVANAY", + "nomCommune": "CHAVANAY" }, { - "codePostal": "32300", - "codeCommune": "32419", - "libelleAcheminement": "SAUVIAC", - "nomCommune": "SAUVIAC" + "codePostal": "54360", + "codeCommune": "54293", + "libelleAcheminement": "LANDECOURT", + "nomCommune": "LANDECOURT" }, { - "codePostal": "46210", - "codeCommune": "46269", - "libelleAcheminement": "ST HILAIRE", - "nomCommune": "ST HILAIRE" + "codePostal": "54470", + "codeCommune": "54153", + "libelleAcheminement": "DAMPVITOUX", + "nomCommune": "DAMPVITOUX" }, { - "codePostal": "67380", - "codeCommune": "67267", - "libelleAcheminement": "LINGOLSHEIM", - "nomCommune": "LINGOLSHEIM" + "codePostal": "39300", + "codeCommune": "39545", + "libelleAcheminement": "LE VAUDIOUX", + "nomCommune": "LE VAUDIOUX" }, { - "codePostal": "17160", - "codeCommune": "17212", - "libelleAcheminement": "LOUZIGNAC", - "nomCommune": "LOUZIGNAC" + "codePostal": "42140", + "codeCommune": "42059", + "libelleAcheminement": "CHAZELLES SUR LYON", + "nomCommune": "CHAZELLES SUR LYON" }, { - "codePostal": "32130", - "codeCommune": "32421", - "libelleAcheminement": "SAVIGNAC MONA", - "nomCommune": "SAVIGNAC MONA" + "codePostal": "54370", + "codeCommune": "54297", + "libelleAcheminement": "LANEUVEVILLE AUX BOIS", + "nomCommune": "LANEUVEVILLE AUX BOIS" }, { - "codePostal": "46400", - "codeCommune": "46271", - "libelleAcheminement": "ST JEAN LESPINASSE", - "nomCommune": "ST JEAN LESPINASSE" + "codePostal": "54380", + "codeCommune": "54157", + "libelleAcheminement": "DIEULOUARD", + "nomCommune": "DIEULOUARD" }, { - "codePostal": "67430", - "codeCommune": "67274", - "libelleAcheminement": "LORENTZEN", - "nomCommune": "LORENTZEN" + "codePostal": "39800", + "codeCommune": "39548", + "libelleAcheminement": "VAUX SUR POLIGNY", + "nomCommune": "VAUX SUR POLIGNY" }, { - "codePostal": "17330", - "codeCommune": "17213", - "libelleAcheminement": "LOZAY", - "nomCommune": "LOZAY" + "codePostal": "42600", + "codeCommune": "42087", + "libelleAcheminement": "ECOTAY L OLME", + "nomCommune": "ECOTAY L OLME" }, { - "codePostal": "32600", - "codeCommune": "32425", - "libelleAcheminement": "SEGOUFIELLE", - "nomCommune": "SEGOUFIELLE" + "codePostal": "54740", + "codeCommune": "54299", + "libelleAcheminement": "LANEUVEVILLE DEVANT BAYON", + "nomCommune": "LANEUVEVILLE DEVANT BAYON" }, { - "codePostal": "46150", - "codeCommune": "46280", - "libelleAcheminement": "ST MEDARD", - "nomCommune": "ST MEDARD" + "codePostal": "54450", + "codeCommune": "54161", + "libelleAcheminement": "DOMEVRE SUR VEZOUZE", + "nomCommune": "DOMEVRE SUR VEZOUZE" }, { - "codePostal": "67490", - "codeCommune": "67275", - "libelleAcheminement": "LUPSTEIN", - "nomCommune": "LUPSTEIN" + "codePostal": "39570", + "codeCommune": "39552", + "libelleAcheminement": "VERNANTOIS", + "nomCommune": "VERNANTOIS" }, { - "codePostal": "17160", - "codeCommune": "17224", - "libelleAcheminement": "MATHA", - "nomCommune": "MATHA" + "codePostal": "42600", + "codeCommune": "42089", + "libelleAcheminement": "ESSERTINES EN CHATELNEUF", + "nomCommune": "ESSERTINES EN CHATELNEUF" }, { - "codePostal": "32700", - "codeCommune": "32429", - "libelleAcheminement": "SEMPESSERRE", - "nomCommune": "SEMPESSERRE" + "codePostal": "54760", + "codeCommune": "54301", + "libelleAcheminement": "LANFROICOURT", + "nomCommune": "LANFROICOURT" }, { - "codePostal": "46300", - "codeCommune": "46290", - "libelleAcheminement": "ST PROJET", - "nomCommune": "ST PROJET" + "codePostal": "54119", + "codeCommune": "54162", + "libelleAcheminement": "DOMGERMAIN", + "nomCommune": "DOMGERMAIN" }, { - "codePostal": "67130", - "codeCommune": "67276", - "libelleAcheminement": "LUTZELHOUSE", - "nomCommune": "LUTZELHOUSE" + "codePostal": "39240", + "codeCommune": "39557", + "libelleAcheminement": "VESCLES", + "nomCommune": "VESCLES" }, { - "codePostal": "17120", - "codeCommune": "17232", - "libelleAcheminement": "MEURSAC", - "nomCommune": "MEURSAC" + "codePostal": "42430", + "codeCommune": "42116", + "libelleAcheminement": "JURE", + "nomCommune": "JURE" }, { - "codePostal": "32140", - "codeCommune": "32430", - "libelleAcheminement": "SERE", - "nomCommune": "SERE" + "codePostal": "54150", + "codeCommune": "54302", + "libelleAcheminement": "LANTEFONTAINE", + "nomCommune": "LANTEFONTAINE" }, { - "codePostal": "46200", - "codeCommune": "46293", - "libelleAcheminement": "ST SOZY", - "nomCommune": "ST SOZY" + "codePostal": "54800", + "codeCommune": "54171", + "libelleAcheminement": "DONCOURT LES CONFLANS", + "nomCommune": "DONCOURT LES CONFLANS" }, { - "codePostal": "67580", - "codeCommune": "67291", - "libelleAcheminement": "MERTZWILLER", - "nomCommune": "MERTZWILLER" + "codePostal": "39570", + "codeCommune": "39558", + "libelleAcheminement": "VEVY", + "nomCommune": "VEVY" }, { - "codePostal": "17500", - "codeCommune": "17233", - "libelleAcheminement": "MEUX", - "nomCommune": "MEUX" + "codePostal": "42560", + "codeCommune": "42117", + "libelleAcheminement": "LAVIEU", + "nomCommune": "LAVIEU" }, { - "codePostal": "32110", - "codeCommune": "32437", - "libelleAcheminement": "SORBETS", - "nomCommune": "SORBETS" + "codePostal": "54520", + "codeCommune": "54304", + "libelleAcheminement": "LAXOU", + "nomCommune": "LAXOU" }, { - "codePostal": "46140", - "codeCommune": "46296", - "libelleAcheminement": "ST VINCENT RIVE D OLT", - "nomCommune": "ST VINCENT RIVE D OLT" + "codePostal": "54360", + "codeCommune": "54175", + "libelleAcheminement": "EINVAUX", + "nomCommune": "EINVAUX" }, { - "codePostal": "67600", - "codeCommune": "67311", - "libelleAcheminement": "MUTTERSHOLTZ", - "nomCommune": "MUTTERSHOLTZ" + "codePostal": "39260", + "codeCommune": "39561", + "libelleAcheminement": "VILLARDS D HERIA", + "nomCommune": "VILLARDS D HERIA" }, { - "codePostal": "17120", - "codeCommune": "17248", - "libelleAcheminement": "MORTAGNE SUR GIRONDE", - "nomCommune": "MORTAGNE SUR GIRONDE" + "codePostal": "42470", + "codeCommune": "42118", + "libelleAcheminement": "LAY", + "nomCommune": "LAY" }, { - "codePostal": "32430", - "codeCommune": "32444", - "libelleAcheminement": "THOUX", - "nomCommune": "THOUX" + "codePostal": "54690", + "codeCommune": "54305", + "libelleAcheminement": "LAY ST CHRISTOPHE", + "nomCommune": "LAY ST CHRISTOPHE" }, { - "codePostal": "46210", - "codeCommune": "46302", - "libelleAcheminement": "SENAILLAC LATRONQUIERE", - "nomCommune": "SENAILLAC LATRONQUIERE" + "codePostal": "54370", + "codeCommune": "54177", + "libelleAcheminement": "EMBERMENIL", + "nomCommune": "EMBERMENIL" }, { - "codePostal": "67130", - "codeCommune": "67314", - "libelleAcheminement": "NATZWILLER", - "nomCommune": "NATZWILLER" + "codePostal": "39570", + "codeCommune": "39567", + "libelleAcheminement": "VILLENEUVE SOUS PYMONT", + "nomCommune": "VILLENEUVE SOUS PYMONT" }, { - "codePostal": "17600", - "codeCommune": "17255", - "libelleAcheminement": "NANCRAS", - "nomCommune": "NANCRAS" + "codePostal": "42300", + "codeCommune": "42127", + "libelleAcheminement": "MABLY", + "nomCommune": "MABLY" }, { - "codePostal": "32380", - "codeCommune": "32452", - "libelleAcheminement": "TOURNECOUPE", - "nomCommune": "TOURNECOUPE" + "codePostal": "54740", + "codeCommune": "54309", + "libelleAcheminement": "LEMAINVILLE", + "nomCommune": "LEMAINVILLE" }, { - "codePostal": "46120", - "codeCommune": "46314", - "libelleAcheminement": "TERROU", - "nomCommune": "TERROU" + "codePostal": "54260", + "codeCommune": "54178", + "libelleAcheminement": "EPIEZ SUR CHIERS", + "nomCommune": "EPIEZ SUR CHIERS" }, { - "codePostal": "67220", - "codeCommune": "67317", - "libelleAcheminement": "NEUBOIS", - "nomCommune": "NEUBOIS" + "codePostal": "39600", + "codeCommune": "39569", + "libelleAcheminement": "VILLERS FARLAY", + "nomCommune": "VILLERS FARLAY" }, { - "codePostal": "17520", - "codeCommune": "17258", - "libelleAcheminement": "NEUILLAC", - "nomCommune": "NEUILLAC" + "codePostal": "42750", + "codeCommune": "42131", + "libelleAcheminement": "MAIZILLY", + "nomCommune": "MAIZILLY" }, { - "codePostal": "32110", - "codeCommune": "32458", - "libelleAcheminement": "URGOSSE", - "nomCommune": "URGOSSE" + "codePostal": "54740", + "codeCommune": "54310", + "libelleAcheminement": "LEMENIL MITRY", + "nomCommune": "LEMENIL MITRY" }, { - "codePostal": "46500", - "codeCommune": "46317", - "libelleAcheminement": "THEGRA", - "nomCommune": "THEGRA" + "codePostal": "54470", + "codeCommune": "54182", + "libelleAcheminement": "ESSEY ET MAIZERAIS", + "nomCommune": "ESSEY ET MAIZERAIS" }, { - "codePostal": "67500", - "codeCommune": "67331", - "libelleAcheminement": "NIEDERSCHAEFFOLSHEIM", - "nomCommune": "NIEDERSCHAEFFOLSHEIM" + "codePostal": "39230", + "codeCommune": "39577", + "libelleAcheminement": "VINCENT FROIDEVILLE", + "nomCommune": "VINCENT FROIDEVILLE" }, { - "codePostal": "17490", - "codeCommune": "17261", - "libelleAcheminement": "NEUVICQ LE CHATEAU", - "nomCommune": "NEUVICQ LE CHATEAU" + "codePostal": "42130", + "codeCommune": "42134", + "libelleAcheminement": "MARCILLY LE CHATEL", + "nomCommune": "MARCILLY LE CHATEL" }, { - "codePostal": "33440", - "codeCommune": "33003", - "libelleAcheminement": "AMBARES ET LAGRAVE", - "nomCommune": "AMBARES ET LAGRAVE" + "codePostal": "54110", + "codeCommune": "54311", + "libelleAcheminement": "LENONCOURT", + "nomCommune": "LENONCOURT" }, { - "codePostal": "46330", - "codeCommune": "46320", - "libelleAcheminement": "TOUR DE FAURE", - "nomCommune": "TOUR DE FAURE" + "codePostal": "54115", + "codeCommune": "54190", + "libelleAcheminement": "FECOCOURT", + "nomCommune": "FECOCOURT" }, { - "codePostal": "67660", - "codeCommune": "67339", - "libelleAcheminement": "BETSCHDORF", - "nomCommune": "BETSCHDORF" + "codePostal": "39210", + "codeCommune": "39582", + "libelleAcheminement": "VOITEUR", + "nomCommune": "VOITEUR" }, { - "codePostal": "17540", - "codeCommune": "17267", - "libelleAcheminement": "NUAILLE D AUNIS", - "nomCommune": "NUAILLE D AUNIS" + "codePostal": "42560", + "codeCommune": "42137", + "libelleAcheminement": "MARGERIE CHANTAGRET", + "nomCommune": "MARGERIE CHANTAGRET" }, { - "codePostal": "33460", - "codeCommune": "33012", - "libelleAcheminement": "ARSAC", - "nomCommune": "ARSAC" + "codePostal": "54720", + "codeCommune": "54314", + "libelleAcheminement": "LEXY", + "nomCommune": "LEXY" }, { - "codePostal": "46310", - "codeCommune": "46324", - "libelleAcheminement": "UZECH", - "nomCommune": "UZECH" + "codePostal": "54470", + "codeCommune": "54193", + "libelleAcheminement": "FEY EN HAYE", + "nomCommune": "FEY EN HAYE" }, { - "codePostal": "67160", - "codeCommune": "67346", - "libelleAcheminement": "OBERLAUTERBACH", - "nomCommune": "OBERLAUTERBACH" + "codePostal": "39700", + "codeCommune": "39584", + "libelleAcheminement": "VRIANGE", + "nomCommune": "VRIANGE" }, { - "codePostal": "17500", - "codeCommune": "17270", - "libelleAcheminement": "OZILLAC", - "nomCommune": "OZILLAC" + "codePostal": "42840", + "codeCommune": "42145", + "libelleAcheminement": "MONTAGNY", + "nomCommune": "MONTAGNY" }, { - "codePostal": "33980", - "codeCommune": "33019", - "libelleAcheminement": "AUDENGE", - "nomCommune": "AUDENGE" + "codePostal": "54460", + "codeCommune": "54318", + "libelleAcheminement": "LIVERDUN", + "nomCommune": "LIVERDUN" }, { - "codePostal": "47170", - "codeCommune": "47009", - "libelleAcheminement": "ANDIRAN", - "nomCommune": "ANDIRAN" + "codePostal": "54560", + "codeCommune": "54194", + "libelleAcheminement": "FILLIERES", + "nomCommune": "FILLIERES" }, { - "codePostal": "67510", - "codeCommune": "67353", - "libelleAcheminement": "OBERSTEINBACH", - "nomCommune": "OBERSTEINBACH" + "codePostal": "40330", + "codeCommune": "40011", + "libelleAcheminement": "ARSAGUE", + "nomCommune": "ARSAGUE" }, { - "codePostal": "17800", - "codeCommune": "17273", - "libelleAcheminement": "PERIGNAC", - "nomCommune": "PERIGNAC" + "codePostal": "42600", + "codeCommune": "42147", + "libelleAcheminement": "MONTBRISON", + "nomCommune": "MONTBRISON" }, { - "codePostal": "33114", - "codeCommune": "33029", - "libelleAcheminement": "LE BARP", - "nomCommune": "LE BARP" + "codePostal": "54810", + "codeCommune": "54321", + "libelleAcheminement": "LONGLAVILLE", + "nomCommune": "LONGLAVILLE" }, { - "codePostal": "47700", - "codeCommune": "47010", - "libelleAcheminement": "ANTAGNAC", - "nomCommune": "ANTAGNAC" + "codePostal": "54840", + "codeCommune": "54202", + "libelleAcheminement": "FONTENOY SUR MOSELLE", + "nomCommune": "FONTENOY SUR MOSELLE" }, { - "codePostal": "67340", - "codeCommune": "67358", - "libelleAcheminement": "OFFWILLER", - "nomCommune": "OFFWILLER" + "codePostal": "40190", + "codeCommune": "40013", + "libelleAcheminement": "ARTHEZ D ARMAGNAC", + "nomCommune": "ARTHEZ D ARMAGNAC" }, { - "codePostal": "17400", - "codeCommune": "17277", - "libelleAcheminement": "ESSOUVERT", - "nomCommune": "ESSOUVERT" + "codePostal": "42360", + "codeCommune": "42148", + "libelleAcheminement": "MONTCHAL", + "nomCommune": "MONTCHAL" }, { - "codePostal": "33720", - "codeCommune": "33030", - "libelleAcheminement": "BARSAC", - "nomCommune": "BARSAC" + "codePostal": "54400", + "codeCommune": "54323", + "libelleAcheminement": "LONGWY", + "nomCommune": "LONGWY" }, { - "codePostal": "47310", - "codeCommune": "47016", - "libelleAcheminement": "AUBIAC", - "nomCommune": "AUBIAC" + "codePostal": "54160", + "codeCommune": "54214", + "libelleAcheminement": "FROLOIS", + "nomCommune": "FROLOIS" }, { - "codePostal": "67700", - "codeCommune": "67367", - "libelleAcheminement": "OTTERSWILLER", - "nomCommune": "OTTERSWILLER" + "codePostal": "40400", + "codeCommune": "40018", + "libelleAcheminement": "AUDON", + "nomCommune": "AUDON" }, { - "codePostal": "17600", - "codeCommune": "17278", - "libelleAcheminement": "PISANY", - "nomCommune": "PISANY" + "codePostal": "42600", + "codeCommune": "42151", + "libelleAcheminement": "MORNAND EN FOREZ", + "nomCommune": "MORNAND EN FOREZ" }, { - "codePostal": "33210", - "codeCommune": "33050", - "libelleAcheminement": "BIEUJAC", - "nomCommune": "BIEUJAC" + "codePostal": "54200", + "codeCommune": "54327", + "libelleAcheminement": "LUCEY", + "nomCommune": "LUCEY" }, { - "codePostal": "47200", - "codeCommune": "47024", - "libelleAcheminement": "BEAUPUY", - "nomCommune": "BEAUPUY" + "codePostal": "54115", + "codeCommune": "54218", + "libelleAcheminement": "GELAUCOURT", + "nomCommune": "GELAUCOURT" }, { - "codePostal": "67290", - "codeCommune": "67370", - "libelleAcheminement": "PETERSBACH", - "nomCommune": "PETERSBACH" + "codePostal": "40090", + "codeCommune": "40025", + "libelleAcheminement": "BASCONS", + "nomCommune": "BASCONS" }, { - "codePostal": "17240", - "codeCommune": "17279", - "libelleAcheminement": "PLASSAC", - "nomCommune": "PLASSAC" + "codePostal": "42590", + "codeCommune": "42156", + "libelleAcheminement": "NEULISE", + "nomCommune": "NEULISE" }, { - "codePostal": "33380", - "codeCommune": "33051", - "libelleAcheminement": "BIGANOS", - "nomCommune": "BIGANOS" + "codePostal": "54610", + "codeCommune": "54333", + "libelleAcheminement": "MAILLY SUR SEILLE", + "nomCommune": "MAILLY SUR SEILLE" }, { - "codePostal": "47500", - "codeCommune": "47029", - "libelleAcheminement": "BLANQUEFORT SUR BRIOLANCE", - "nomCommune": "BLANQUEFORT SUR BRIOLANCE" + "codePostal": "54110", + "codeCommune": "54219", + "libelleAcheminement": "GELLENONCOURT", + "nomCommune": "GELLENONCOURT" }, { - "codePostal": "67350", - "codeCommune": "67372", - "libelleAcheminement": "VAL DE MODER", - "nomCommune": "VAL DE MODER" + "codePostal": "40700", + "codeCommune": "40027", + "libelleAcheminement": "BASSERCLES", + "nomCommune": "BASSERCLES" }, { - "codePostal": "17400", - "codeCommune": "17288", - "libelleAcheminement": "POURSAY GARNAUD", - "nomCommune": "POURSAY GARNAUD" + "codePostal": "42410", + "codeCommune": "42167", + "libelleAcheminement": "PAVEZIN", + "nomCommune": "PAVEZIN" }, { - "codePostal": "33190", - "codeCommune": "33054", - "libelleAcheminement": "BLAIGNAC", - "nomCommune": "BLAIGNAC" + "codePostal": "54220", + "codeCommune": "54339", + "libelleAcheminement": "MALZEVILLE", + "nomCommune": "MALZEVILLE" }, { - "codePostal": "47470", - "codeCommune": "47030", - "libelleAcheminement": "BLAYMONT", - "nomCommune": "BLAYMONT" + "codePostal": "54730", + "codeCommune": "54234", + "libelleAcheminement": "GORCY", + "nomCommune": "GORCY" }, { - "codePostal": "67420", - "codeCommune": "67384", - "libelleAcheminement": "RANRUPT", - "nomCommune": "RANRUPT" + "codePostal": "40400", + "codeCommune": "40031", + "libelleAcheminement": "BEGAAR", + "nomCommune": "BEGAAR" }, { - "codePostal": "17500", - "codeCommune": "17295", - "libelleAcheminement": "REAUX SUR TREFLE", - "nomCommune": "REAUX SUR TREFLE" + "codePostal": "42380", + "codeCommune": "42169", + "libelleAcheminement": "PERIGNEUX", + "nomCommune": "PERIGNEUX" }, { - "codePostal": "33340", - "codeCommune": "33055", - "libelleAcheminement": "BLAIGNAN PRIGNAC", - "nomCommune": "BLAIGNAN PRIGNAC" + "codePostal": "54470", + "codeCommune": "54343", + "libelleAcheminement": "MANDRES AUX QUATRE TOURS", + "nomCommune": "MANDRES AUX QUATRE TOURS" }, { - "codePostal": "47210", - "codeCommune": "47037", - "libelleAcheminement": "BOURNEL", - "nomCommune": "BOURNEL" + "codePostal": "54380", + "codeCommune": "54239", + "libelleAcheminement": "GRISCOURT", + "nomCommune": "GRISCOURT" }, { - "codePostal": "67320", - "codeCommune": "67386", - "libelleAcheminement": "RAUWILLER", - "nomCommune": "RAUWILLER" + "codePostal": "40410", + "codeCommune": "40032", + "libelleAcheminement": "BELHADE", + "nomCommune": "BELHADE" }, { - "codePostal": "17300", - "codeCommune": "17299", - "libelleAcheminement": "ROCHEFORT", - "nomCommune": "ROCHEFORT" + "codePostal": "42120", + "codeCommune": "42170", + "libelleAcheminement": "PERREUX", + "nomCommune": "PERREUX" }, { - "codePostal": "33290", - "codeCommune": "33056", - "libelleAcheminement": "BLANQUEFORT", - "nomCommune": "BLANQUEFORT" + "codePostal": "54120", + "codeCommune": "54365", + "libelleAcheminement": "MERVILLER", + "nomCommune": "MERVILLER" }, { - "codePostal": "47420", - "codeCommune": "47039", - "libelleAcheminement": "BOUSSES", - "nomCommune": "BOUSSES" + "codePostal": "54930", + "codeCommune": "54241", + "libelleAcheminement": "GUGNEY", + "nomCommune": "GUGNEY" }, { - "codePostal": "67340", - "codeCommune": "67392", - "libelleAcheminement": "REIPERTSWILLER", - "nomCommune": "REIPERTSWILLER" + "codePostal": "40230", + "codeCommune": "40036", + "libelleAcheminement": "BENESSE MAREMNE", + "nomCommune": "BENESSE MAREMNE" }, { - "codePostal": "17200", - "codeCommune": "17306", - "libelleAcheminement": "ROYAN", - "nomCommune": "ROYAN" + "codePostal": "42720", + "codeCommune": "42177", + "libelleAcheminement": "POUILLY SOUS CHARLIEU", + "nomCommune": "POUILLY SOUS CHARLIEU" }, { - "codePostal": "33540", - "codeCommune": "33057", - "libelleAcheminement": "BLASIMON", - "nomCommune": "BLASIMON" + "codePostal": "54135", + "codeCommune": "54367", + "libelleAcheminement": "MEXY", + "nomCommune": "MEXY" }, { - "codePostal": "47130", - "codeCommune": "47041", - "libelleAcheminement": "BRUCH", - "nomCommune": "BRUCH" + "codePostal": "54740", + "codeCommune": "54252", + "libelleAcheminement": "HAROUE", + "nomCommune": "HAROUE" }, { - "codePostal": "67250", - "codeCommune": "67394", - "libelleAcheminement": "RETSCHWILLER", - "nomCommune": "RETSCHWILLER" + "codePostal": "40600", + "codeCommune": "40046", + "libelleAcheminement": "BISCARROSSE", + "nomCommune": "BISCARROSSE" }, { - "codePostal": "17570", - "codeCommune": "17311", - "libelleAcheminement": "ST AUGUSTIN", - "nomCommune": "ST AUGUSTIN" + "codePostal": "42600", + "codeCommune": "42179", + "libelleAcheminement": "PRALONG", + "nomCommune": "PRALONG" }, { - "codePostal": "33100", - "codeCommune": "33063", - "libelleAcheminement": "BORDEAUX", - "nomCommune": "BORDEAUX" + "codePostal": "54700", + "codeCommune": "54375", + "libelleAcheminement": "MONTAUVILLE", + "nomCommune": "MONTAUVILLE" }, { - "codePostal": "47350", - "codeCommune": "47047", - "libelleAcheminement": "CAMBES", - "nomCommune": "CAMBES" + "codePostal": "54800", + "codeCommune": "54253", + "libelleAcheminement": "HATRIZE", + "nomCommune": "HATRIZE" }, { - "codePostal": "67160", - "codeCommune": "67400", - "libelleAcheminement": "RIEDSELTZ", - "nomCommune": "RIEDSELTZ" + "codePostal": "40190", + "codeCommune": "40052", + "libelleAcheminement": "BOURDALAT", + "nomCommune": "BOURDALAT" }, { - "codePostal": "17770", - "codeCommune": "17314", - "libelleAcheminement": "ST CESAIRE", - "nomCommune": "ST CESAIRE" + "codePostal": "42370", + "codeCommune": "42182", + "libelleAcheminement": "RENAISON", + "nomCommune": "RENAISON" }, { - "codePostal": "33710", - "codeCommune": "33067", - "libelleAcheminement": "BOURG SUR GIRONDE", - "nomCommune": "BOURG" + "codePostal": "54760", + "codeCommune": "54376", + "libelleAcheminement": "MONTENOY", + "nomCommune": "MONTENOY" }, { - "codePostal": "47290", - "codeCommune": "47048", - "libelleAcheminement": "CANCON", - "nomCommune": "CANCON" + "codePostal": "54300", + "codeCommune": "54260", + "libelleAcheminement": "HERIMENIL", + "nomCommune": "HERIMENIL" }, { - "codePostal": "67570", - "codeCommune": "67414", - "libelleAcheminement": "ROTHAU", - "nomCommune": "ROTHAU" + "codePostal": "40320", + "codeCommune": "40057", + "libelleAcheminement": "BUANES", + "nomCommune": "BUANES" }, { - "codePostal": "17380", - "codeCommune": "17321", - "libelleAcheminement": "ST CREPIN", - "nomCommune": "ST CREPIN" + "codePostal": "42150", + "codeCommune": "42183", + "libelleAcheminement": "LA RICAMARIE", + "nomCommune": "LA RICAMARIE" }, { - "codePostal": "33113", - "codeCommune": "33068", - "libelleAcheminement": "BOURIDEYS", - "nomCommune": "BOURIDEYS" + "codePostal": "54350", + "codeCommune": "54382", + "libelleAcheminement": "MONT ST MARTIN", + "nomCommune": "MONT ST MARTIN" }, { - "codePostal": "47340", - "codeCommune": "47050", - "libelleAcheminement": "CASSIGNAS", - "nomCommune": "CASSIGNAS" + "codePostal": "54370", + "codeCommune": "54262", + "libelleAcheminement": "HOEVILLE", + "nomCommune": "HOEVILLE" }, { - "codePostal": "67480", - "codeCommune": "67418", - "libelleAcheminement": "ROUNTZENHEIM AUENHEIM", - "nomCommune": "ROUNTZENHEIM AUENHEIM" + "codePostal": "40700", + "codeCommune": "40073", + "libelleAcheminement": "CASTELNER", + "nomCommune": "CASTELNER" }, { - "codePostal": "17330", - "codeCommune": "17327", - "libelleAcheminement": "ST FELIX", - "nomCommune": "ST FELIX" + "codePostal": "42153", + "codeCommune": "42184", + "libelleAcheminement": "RIORGES", + "nomCommune": "RIORGES" }, { - "codePostal": "33110", - "codeCommune": "33069", - "libelleAcheminement": "LE BOUSCAT", - "nomCommune": "LE BOUSCAT" + "codePostal": "54830", + "codeCommune": "54386", + "libelleAcheminement": "MORIVILLER", + "nomCommune": "MORIVILLER" }, { - "codePostal": "47120", - "codeCommune": "47059", - "libelleAcheminement": "CAUBON ST SAUVEUR", - "nomCommune": "CAUBON ST SAUVEUR" + "codePostal": "54180", + "codeCommune": "54265", + "libelleAcheminement": "HOUDEMONT", + "nomCommune": "HOUDEMONT" }, { - "codePostal": "67390", - "codeCommune": "67422", - "libelleAcheminement": "SAASENHEIM", - "nomCommune": "SAASENHEIM" + "codePostal": "40090", + "codeCommune": "40081", + "libelleAcheminement": "CERE", + "nomCommune": "CERE" }, { - "codePostal": "17250", - "codeCommune": "17330", - "libelleAcheminement": "STE GEMME", - "nomCommune": "STE GEMME" + "codePostal": "42600", + "codeCommune": "42188", + "libelleAcheminement": "ROCHE", + "nomCommune": "ROCHE" }, { - "codePostal": "33420", - "codeCommune": "33071", - "libelleAcheminement": "BRANNE", - "nomCommune": "BRANNE" + "codePostal": "54540", + "codeCommune": "54396", + "libelleAcheminement": "NEUFMAISONS", + "nomCommune": "NEUFMAISONS" }, { - "codePostal": "47320", - "codeCommune": "47065", - "libelleAcheminement": "CLAIRAC", - "nomCommune": "CLAIRAC" + "codePostal": "54110", + "codeCommune": "54269", + "libelleAcheminement": "HUDIVILLER", + "nomCommune": "HUDIVILLER" }, { - "codePostal": "67220", - "codeCommune": "67426", - "libelleAcheminement": "ST MARTIN", - "nomCommune": "ST MARTIN" + "codePostal": "40180", + "codeCommune": "40084", + "libelleAcheminement": "CLERMONT", + "nomCommune": "CLERMONT" }, { - "codePostal": "17240", - "codeCommune": "17332", - "libelleAcheminement": "ST GEORGES ANTIGNAC", - "nomCommune": "ST GEORGES ANTIGNAC" + "codePostal": "42130", + "codeCommune": "42197", + "libelleAcheminement": "STE AGATHE LA BOUTERESSE", + "nomCommune": "STE AGATHE LA BOUTERESSE" }, { - "codePostal": "33820", - "codeCommune": "33073", - "libelleAcheminement": "BRAUD ET ST LOUIS", - "nomCommune": "BRAUD ET ST LOUIS" + "codePostal": "54230", + "codeCommune": "54397", + "libelleAcheminement": "NEUVES MAISONS", + "nomCommune": "NEUVES MAISONS" }, { - "codePostal": "47270", - "codeCommune": "47067", - "libelleAcheminement": "CLERMONT SOUBIRAN", - "nomCommune": "CLERMONT SOUBIRAN" + "codePostal": "54800", + "codeCommune": "54277", + "libelleAcheminement": "JEANDELIZE", + "nomCommune": "JEANDELIZE" }, { - "codePostal": "67220", - "codeCommune": "67427", - "libelleAcheminement": "ST MAURICE", - "nomCommune": "ST MAURICE" + "codePostal": "40500", + "codeCommune": "40086", + "libelleAcheminement": "COUDURES", + "nomCommune": "COUDURES" }, { - "codePostal": "17190", - "codeCommune": "17337", - "libelleAcheminement": "ST GEORGES D OLERON", - "nomCommune": "ST GEORGES D OLERON" + "codePostal": "42370", + "codeCommune": "42198", + "libelleAcheminement": "ST ALBAN LES EAUX", + "nomCommune": "ST ALBAN LES EAUX" }, { - "codePostal": "33720", - "codeCommune": "33076", - "libelleAcheminement": "BUDOS", - "nomCommune": "BUDOS" + "codePostal": "54170", + "codeCommune": "54405", + "libelleAcheminement": "OCHEY", + "nomCommune": "OCHEY" }, { - "codePostal": "47250", - "codeCommune": "47068", - "libelleAcheminement": "COCUMONT", - "nomCommune": "COCUMONT" + "codePostal": "54740", + "codeCommune": "54278", + "libelleAcheminement": "JEVONCOURT", + "nomCommune": "JEVONCOURT" }, { - "codePostal": "67530", - "codeCommune": "67428", - "libelleAcheminement": "ST NABOR", - "nomCommune": "ST NABOR" + "codePostal": "40700", + "codeCommune": "40089", + "libelleAcheminement": "DOAZIT", + "nomCommune": "DOAZIT" }, { - "codePostal": "17700", - "codeCommune": "17338", - "libelleAcheminement": "ST GEORGES DU BOIS", - "nomCommune": "ST GEORGES DU BOIS" + "codePostal": "42110", + "codeCommune": "42202", + "libelleAcheminement": "ST BARTHELEMY LESTRA", + "nomCommune": "ST BARTHELEMY LESTRA" }, { - "codePostal": "33390", - "codeCommune": "33089", - "libelleAcheminement": "CAMPUGNAN", - "nomCommune": "CAMPUGNAN" + "codePostal": "54800", + "codeCommune": "54408", + "libelleAcheminement": "OLLEY", + "nomCommune": "OLLEY" }, { - "codePostal": "47110", - "codeCommune": "47081", - "libelleAcheminement": "DOLMAYRAC", - "nomCommune": "DOLMAYRAC" + "codePostal": "54720", + "codeCommune": "54290", + "libelleAcheminement": "LAIX", + "nomCommune": "LAIX" }, { - "codePostal": "67140", - "codeCommune": "67429", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "40210", + "codeCommune": "40094", + "libelleAcheminement": "ESCOURCE", + "nomCommune": "ESCOURCE" }, { - "codePostal": "17500", - "codeCommune": "17339", - "libelleAcheminement": "ST GERMAIN DE LUSIGNAN", - "nomCommune": "ST GERMAIN DE LUSIGNAN" + "codePostal": "42400", + "codeCommune": "42207", + "libelleAcheminement": "ST CHAMOND", + "nomCommune": "ST CHAMOND" }, { - "codePostal": "33560", - "codeCommune": "33096", - "libelleAcheminement": "CARBON BLANC", - "nomCommune": "CARBON BLANC" + "codePostal": "54330", + "codeCommune": "54409", + "libelleAcheminement": "OMELMONT", + "nomCommune": "OMELMONT" }, { - "codePostal": "47120", - "codeCommune": "47086", - "libelleAcheminement": "DURAS", - "nomCommune": "DURAS" + "codePostal": "54970", + "codeCommune": "54295", + "libelleAcheminement": "LANDRES", + "nomCommune": "LANDRES" }, { - "codePostal": "67230", - "codeCommune": "67433", - "libelleAcheminement": "SAND", - "nomCommune": "SAND" + "codePostal": "40290", + "codeCommune": "40095", + "libelleAcheminement": "ESTIBEAUX", + "nomCommune": "ESTIBEAUX" }, { - "codePostal": "17500", - "codeCommune": "17341", - "libelleAcheminement": "ST GERMAIN DE VIBRAC", - "nomCommune": "ST GERMAIN DE VIBRAC" + "codePostal": "42800", + "codeCommune": "42210", + "libelleAcheminement": "STE CROIX EN JAREZ", + "nomCommune": "STE CROIX EN JAREZ" }, { - "codePostal": "33540", - "codeCommune": "33103", - "libelleAcheminement": "CASTELMORON D ALBRET", - "nomCommune": "CASTELMORON D ALBRET" + "codePostal": "54470", + "codeCommune": "54416", + "libelleAcheminement": "PANNES", + "nomCommune": "PANNES" }, { - "codePostal": "47220", - "codeCommune": "47092", - "libelleAcheminement": "FALS", - "nomCommune": "FALS" + "codePostal": "54280", + "codeCommune": "54296", + "libelleAcheminement": "LANEUVELOTTE", + "nomCommune": "LANEUVELOTTE" }, { - "codePostal": "67420", - "codeCommune": "67436", - "libelleAcheminement": "SAULXURES", - "nomCommune": "SAULXURES" + "codePostal": "40350", + "codeCommune": "40101", + "libelleAcheminement": "GAAS", + "nomCommune": "GAAS" }, { - "codePostal": "17240", - "codeCommune": "17343", - "libelleAcheminement": "ST GREGOIRE D ARDENNES", - "nomCommune": "ST GREGOIRE D ARDENNES" + "codePostal": "42000", + "codeCommune": "42218", + "libelleAcheminement": "ST ETIENNE", + "nomCommune": "ST ETIENNE" }, { - "codePostal": "33480", - "codeCommune": "33104", - "libelleAcheminement": "CASTELNAU DE MEDOC", - "nomCommune": "CASTELNAU DE MEDOC" + "codePostal": "54260", + "codeCommune": "54420", + "libelleAcheminement": "PETIT FAILLY", + "nomCommune": "PETIT FAILLY" }, { - "codePostal": "47230", - "codeCommune": "47097", - "libelleAcheminement": "FEUGAROLLES", - "nomCommune": "FEUGAROLLES" + "codePostal": "54410", + "codeCommune": "54300", + "libelleAcheminement": "LANEUVEVILLE DEVANT NANCY", + "nomCommune": "LANEUVEVILLE DEVANT NANCY" }, { - "codePostal": "67700", - "codeCommune": "67437", - "libelleAcheminement": "SAVERNE", - "nomCommune": "SAVERNE" + "codePostal": "40090", + "codeCommune": "40103", + "libelleAcheminement": "GAILLERES", + "nomCommune": "GAILLERES" }, { - "codePostal": "17430", - "codeCommune": "17346", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "42100", + "codeCommune": "42218", + "libelleAcheminement": "ST ETIENNE", + "nomCommune": "ST ETIENNE" }, { - "codePostal": "33210", - "codeCommune": "33106", - "libelleAcheminement": "CASTETS ET CASTILLON", - "nomCommune": "CASTETS ET CASTILLON" + "codePostal": "54540", + "codeCommune": "54427", + "libelleAcheminement": "PIERRE PERCEE", + "nomCommune": "PIERRE PERCEE" }, { - "codePostal": "47260", - "codeCommune": "47099", - "libelleAcheminement": "FONGRAVE", - "nomCommune": "FONGRAVE" + "codePostal": "54760", + "codeCommune": "54315", + "libelleAcheminement": "LEYR", + "nomCommune": "LEYR" }, { - "codePostal": "67310", - "codeCommune": "67442", - "libelleAcheminement": "SCHARRACHBERGHEIM IRMSTETT", - "nomCommune": "SCHARRACHBERGHEIM IRMSTETT" + "codePostal": "40990", + "codeCommune": "40114", + "libelleAcheminement": "GOURBERA", + "nomCommune": "GOURBERA" }, { - "codePostal": "17400", - "codeCommune": "17347", - "libelleAcheminement": "ST JEAN D ANGELY", - "nomCommune": "ST JEAN D ANGELY" + "codePostal": "42110", + "codeCommune": "42221", + "libelleAcheminement": "STE FOY ST SULPICE", + "nomCommune": "STE FOY ST SULPICE" }, { - "codePostal": "33210", - "codeCommune": "33106", - "libelleAcheminement": "CASTETS ET CASTILLON", - "nomCommune": "CASTETS ET CASTILLON" + "codePostal": "54620", + "codeCommune": "54428", + "libelleAcheminement": "PIERREPONT", + "nomCommune": "PIERREPONT" }, { - "codePostal": "47600", - "codeCommune": "47102", - "libelleAcheminement": "FRANCESCAS", - "nomCommune": "FRANCESCAS" + "codePostal": "54700", + "codeCommune": "54320", + "libelleAcheminement": "LOISY", + "nomCommune": "LOISY" }, { - "codePostal": "67630", - "codeCommune": "67443", - "libelleAcheminement": "SCHEIBENHARD", - "nomCommune": "SCHEIBENHARD" + "codePostal": "40190", + "codeCommune": "40127", + "libelleAcheminement": "HONTANX", + "nomCommune": "HONTANX" }, { - "codePostal": "17520", - "codeCommune": "17355", - "libelleAcheminement": "STE LHEURINE", - "nomCommune": "STE LHEURINE" + "codePostal": "42990", + "codeCommune": "42227", + "libelleAcheminement": "ST GEORGES EN COUZAN", + "nomCommune": "ST GEORGES EN COUZAN" }, { - "codePostal": "33620", - "codeCommune": "33114", - "libelleAcheminement": "CAVIGNAC", - "nomCommune": "CAVIGNAC" + "codePostal": "54800", + "codeCommune": "54441", + "libelleAcheminement": "PUXIEUX", + "nomCommune": "PUXIEUX" }, { - "codePostal": "47600", - "codeCommune": "47103", - "libelleAcheminement": "FRECHOU", - "nomCommune": "FRECHOU" + "codePostal": "54290", + "codeCommune": "54324", + "libelleAcheminement": "LOREY", + "nomCommune": "LOREY" }, { - "codePostal": "67300", - "codeCommune": "67447", - "libelleAcheminement": "SCHILTIGHEIM", - "nomCommune": "SCHILTIGHEIM" + "codePostal": "40700", + "codeCommune": "40138", + "libelleAcheminement": "LACRABE", + "nomCommune": "LACRABE" }, { - "codePostal": "17700", - "codeCommune": "17359", - "libelleAcheminement": "ST MARD", - "nomCommune": "ST MARD" + "codePostal": "42370", + "codeCommune": "42232", + "libelleAcheminement": "ST HAON LE CHATEL", + "nomCommune": "ST HAON LE CHATEL" }, { - "codePostal": "33150", - "codeCommune": "33119", - "libelleAcheminement": "CENON", - "nomCommune": "CENON" + "codePostal": "54540", + "codeCommune": "54443", + "libelleAcheminement": "RAON LES LEAU", + "nomCommune": "RAON LES LEAU" }, { - "codePostal": "47200", - "codeCommune": "47108", - "libelleAcheminement": "GAUJAC", - "nomCommune": "GAUJAC" + "codePostal": "54290", + "codeCommune": "54325", + "libelleAcheminement": "LOROMONTZEY", + "nomCommune": "LOROMONTZEY" }, { - "codePostal": "67440", - "codeCommune": "67459", - "libelleAcheminement": "SCHWENHEIM", - "nomCommune": "SCHWENHEIM" + "codePostal": "40270", + "codeCommune": "40145", + "libelleAcheminement": "LARRIVIERE ST SAVIN", + "nomCommune": "LARRIVIERE ST SAVIN" }, { - "codePostal": "17800", - "codeCommune": "17379", - "libelleAcheminement": "ST PALAIS DE PHIOLIN", - "nomCommune": "ST PALAIS DE PHIOLIN" + "codePostal": "42570", + "codeCommune": "42234", + "libelleAcheminement": "ST HEAND", + "nomCommune": "ST HEAND" }, { - "codePostal": "33230", - "codeCommune": "33124", - "libelleAcheminement": "CHAMADELLE", - "nomCommune": "CHAMADELLE" + "codePostal": "54450", + "codeCommune": "54452", + "libelleAcheminement": "REILLON", + "nomCommune": "REILLON" }, { - "codePostal": "47180", - "codeCommune": "47120", - "libelleAcheminement": "JUSIX", - "nomCommune": "JUSIX" + "codePostal": "54129", + "codeCommune": "54331", + "libelleAcheminement": "MAGNIERES", + "nomCommune": "MAGNIERES" }, { - "codePostal": "67270", - "codeCommune": "67460", - "libelleAcheminement": "SCHWINDRATZHEIM", - "nomCommune": "SCHWINDRATZHEIM" + "codePostal": "40320", + "codeCommune": "40148", + "libelleAcheminement": "LAURET", + "nomCommune": "LAURET" }, { - "codePostal": "17420", - "codeCommune": "17380", - "libelleAcheminement": "ST PALAIS SUR MER", - "nomCommune": "ST PALAIS SUR MER" + "codePostal": "42380", + "codeCommune": "42235", + "libelleAcheminement": "ST HILAIRE CUSSON LA VALMITTE", + "nomCommune": "ST HILAIRE CUSSON LA VALMITTE" }, { - "codePostal": "33340", - "codeCommune": "33128", - "libelleAcheminement": "CIVRAC EN MEDOC", - "nomCommune": "CIVRAC EN MEDOC" + "codePostal": "54110", + "codeCommune": "54462", + "libelleAcheminement": "ROSIERES AUX SALINES", + "nomCommune": "ROSIERES AUX SALINES" }, { - "codePostal": "47350", - "codeCommune": "47122", - "libelleAcheminement": "LABRETONIE", - "nomCommune": "LABRETONIE" + "codePostal": "54150", + "codeCommune": "54334", + "libelleAcheminement": "MAIRY MAINVILLE", + "nomCommune": "MAIRY MAINVILLE" }, { - "codePostal": "67390", - "codeCommune": "67461", - "libelleAcheminement": "SCHWOBSHEIM", - "nomCommune": "SCHWOBSHEIM" + "codePostal": "40550", + "codeCommune": "40150", + "libelleAcheminement": "LEON", + "nomCommune": "LEON" }, { - "codePostal": "17400", - "codeCommune": "17381", - "libelleAcheminement": "ST PARDOULT", - "nomCommune": "ST PARDOULT" + "codePostal": "42440", + "codeCommune": "42238", + "libelleAcheminement": "ST JEAN LA VETRE", + "nomCommune": "ST JEAN LA VETRE" }, { - "codePostal": "33710", - "codeCommune": "33132", - "libelleAcheminement": "COMPS", - "nomCommune": "COMPS" + "codePostal": "54210", + "codeCommune": "54468", + "libelleAcheminement": "SAFFAIS", + "nomCommune": "SAFFAIS" }, { - "codePostal": "47240", - "codeCommune": "47128", - "libelleAcheminement": "LAFOX", - "nomCommune": "LAFOX" + "codePostal": "54370", + "codeCommune": "54335", + "libelleAcheminement": "MAIXE", + "nomCommune": "MAIXE" }, { - "codePostal": "67770", - "codeCommune": "67465", - "libelleAcheminement": "SESSENHEIM", - "nomCommune": "SESSENHEIM" + "codePostal": "40090", + "codeCommune": "40162", + "libelleAcheminement": "LUCBARDEZ ET BARGUES", + "nomCommune": "LUCBARDEZ ET BARGUES" }, { - "codePostal": "17700", - "codeCommune": "17382", - "libelleAcheminement": "ST PIERRE D AMILLY", - "nomCommune": "ST PIERRE D AMILLY" + "codePostal": "42155", + "codeCommune": "42239", + "libelleAcheminement": "ST JEAN ST MAURICE SUR LOIRE", + "nomCommune": "ST JEAN ST MAURICE SUR LOIRE" }, { - "codePostal": "33890", - "codeCommune": "33133", - "libelleAcheminement": "COUBEYRAC", - "nomCommune": "COUBEYRAC" + "codePostal": "54580", + "codeCommune": "54469", + "libelleAcheminement": "ST AIL", + "nomCommune": "ST AIL" }, { - "codePostal": "47310", - "codeCommune": "47137", - "libelleAcheminement": "LAPLUME", - "nomCommune": "LAPLUME" + "codePostal": "54300", + "codeCommune": "54350", + "libelleAcheminement": "MARAINVILLER", + "nomCommune": "MARAINVILLER" }, { - "codePostal": "67320", - "codeCommune": "67467", - "libelleAcheminement": "SIEWILLER", - "nomCommune": "SIEWILLER" + "codePostal": "40270", + "codeCommune": "40166", + "libelleAcheminement": "LUSSAGNET", + "nomCommune": "LUSSAGNET" }, { - "codePostal": "17800", - "codeCommune": "17388", - "libelleAcheminement": "ST QUANTIN DE RANCANNE", - "nomCommune": "ST QUANTIN DE RANCANNE" + "codePostal": "42155", + "codeCommune": "42239", + "libelleAcheminement": "ST JEAN ST MAURICE SUR LOIRE", + "nomCommune": "ST JEAN ST MAURICE SUR LOIRE" }, { - "codePostal": "33580", - "codeCommune": "33136", - "libelleAcheminement": "COURS DE MONSEGUR", - "nomCommune": "COURS DE MONSEGUR" + "codePostal": "54470", + "codeCommune": "54477", + "libelleAcheminement": "ST JULIEN LES GORZE", + "nomCommune": "ST JULIEN LES GORZE" }, { - "codePostal": "47230", - "codeCommune": "47143", - "libelleAcheminement": "LAVARDAC", - "nomCommune": "LAVARDAC" + "codePostal": "54820", + "codeCommune": "54351", + "libelleAcheminement": "MARBACHE", + "nomCommune": "MARBACHE" }, { - "codePostal": "67120", - "codeCommune": "67473", - "libelleAcheminement": "SOULTZ LES BAINS", - "nomCommune": "SOULTZ LES BAINS" + "codePostal": "40430", + "codeCommune": "40167", + "libelleAcheminement": "LUXEY", + "nomCommune": "LUXEY" }, { - "codePostal": "17540", - "codeCommune": "17396", - "libelleAcheminement": "ST SAUVEUR D AUNIS", - "nomCommune": "ST SAUVEUR D AUNIS" + "codePostal": "42990", + "codeCommune": "42247", + "libelleAcheminement": "ST JUST EN BAS", + "nomCommune": "ST JUST EN BAS" }, { - "codePostal": "33580", - "codeCommune": "33139", - "libelleAcheminement": "COUTURES", - "nomCommune": "COUTURES" + "codePostal": "54540", + "codeCommune": "54481", + "libelleAcheminement": "ST MAURICE AUX FORGES", + "nomCommune": "ST MAURICE AUX FORGES" }, { - "codePostal": "47140", - "codeCommune": "47161", - "libelleAcheminement": "MASSELS", - "nomCommune": "MASSELS" + "codePostal": "54380", + "codeCommune": "54355", + "libelleAcheminement": "MARTINCOURT", + "nomCommune": "MARTINCOURT" }, { - "codePostal": "67140", - "codeCommune": "67481", - "libelleAcheminement": "STOTZHEIM", - "nomCommune": "STOTZHEIM" + "codePostal": "40120", + "codeCommune": "40170", + "libelleAcheminement": "MAILLERES", + "nomCommune": "MAILLERES" }, { - "codePostal": "17150", - "codeCommune": "17405", - "libelleAcheminement": "ST SORLIN DE CONAC", - "nomCommune": "ST SORLIN DE CONAC" + "codePostal": "42620", + "codeCommune": "42257", + "libelleAcheminement": "ST MARTIN D ESTREAUX", + "nomCommune": "ST MARTIN D ESTREAUX" }, { - "codePostal": "33430", - "codeCommune": "33144", - "libelleAcheminement": "CUDOS", - "nomCommune": "CUDOS" + "codePostal": "54740", + "codeCommune": "54486", + "libelleAcheminement": "ST REMIMONT", + "nomCommune": "ST REMIMONT" }, { - "codePostal": "47140", - "codeCommune": "47162", - "libelleAcheminement": "MASSOULES", - "nomCommune": "MASSOULES" + "codePostal": "54320", + "codeCommune": "54357", + "libelleAcheminement": "MAXEVILLE", + "nomCommune": "MAXEVILLE" }, { - "codePostal": "67100", - "codeCommune": "67482", - "libelleAcheminement": "STRASBOURG", - "nomCommune": "STRASBOURG" + "codePostal": "40090", + "codeCommune": "40178", + "libelleAcheminement": "MAZEROLLES", + "nomCommune": "MAZEROLLES" }, { - "codePostal": "17138", - "codeCommune": "17414", - "libelleAcheminement": "ST XANDRE", - "nomCommune": "ST XANDRE" + "codePostal": "42260", + "codeCommune": "42268", + "libelleAcheminement": "VEZELIN SUR LOIRE", + "nomCommune": "VEZELIN SUR LOIRE" }, { - "codePostal": "33410", - "codeCommune": "33152", - "libelleAcheminement": "DONZAC", - "nomCommune": "DONZAC" + "codePostal": "54290", + "codeCommune": "54487", + "libelleAcheminement": "ST REMY AUX BOIS", + "nomCommune": "ST REMY AUX BOIS" }, { - "codePostal": "47200", - "codeCommune": "47163", - "libelleAcheminement": "MAUVEZIN SUR GUPIE", - "nomCommune": "MAUVEZIN SUR GUPIE" + "codePostal": "54960", + "codeCommune": "54362", + "libelleAcheminement": "MERCY LE BAS", + "nomCommune": "MERCY LE BAS" }, { - "codePostal": "67920", - "codeCommune": "67486", - "libelleAcheminement": "SUNDHOUSE", - "nomCommune": "SUNDHOUSE" + "codePostal": "40200", + "codeCommune": "40184", + "libelleAcheminement": "MIMIZAN", + "nomCommune": "MIMIZAN" }, { - "codePostal": "17510", - "codeCommune": "17416", - "libelleAcheminement": "SALEIGNES", - "nomCommune": "SALEIGNES" + "codePostal": "42170", + "codeCommune": "42279", + "libelleAcheminement": "ST JUST ST RAMBERT", + "nomCommune": "ST JUST ST RAMBERT" }, { - "codePostal": "33350", - "codeCommune": "33153", - "libelleAcheminement": "DOULEZON", - "nomCommune": "DOULEZON" + "codePostal": "54380", + "codeCommune": "54490", + "libelleAcheminement": "SAIZERAIS", + "nomCommune": "SAIZERAIS" }, { - "codePostal": "47180", - "codeCommune": "47165", - "libelleAcheminement": "MEILHAN SUR GARONNE", - "nomCommune": "MEILHAN SUR GARONNE" + "codePostal": "54850", + "codeCommune": "54364", + "libelleAcheminement": "MEREVILLE", + "nomCommune": "MEREVILLE" }, { - "codePostal": "67320", - "codeCommune": "67488", - "libelleAcheminement": "THAL DRULINGEN", - "nomCommune": "THAL DRULINGEN" + "codePostal": "40700", + "codeCommune": "40189", + "libelleAcheminement": "MONGET", + "nomCommune": "MONGET" }, { - "codePostal": "17800", - "codeCommune": "17418", - "libelleAcheminement": "SALIGNAC SUR CHARENTE", - "nomCommune": "SALIGNAC SUR CHARENTE" + "codePostal": "42660", + "codeCommune": "42280", + "libelleAcheminement": "ST REGIS DU COIN", + "nomCommune": "ST REGIS DU COIN" }, { - "codePostal": "33126", - "codeCommune": "33174", - "libelleAcheminement": "FRONSAC", - "nomCommune": "FRONSAC" + "codePostal": "54830", + "codeCommune": "54501", + "libelleAcheminement": "SERANVILLE", + "nomCommune": "SERANVILLE" }, { - "codePostal": "47600", - "codeCommune": "47197", - "libelleAcheminement": "NOMDIEU", - "nomCommune": "NOMDIEU" + "codePostal": "54850", + "codeCommune": "54366", + "libelleAcheminement": "MESSEIN", + "nomCommune": "MESSEIN" }, { - "codePostal": "67440", - "codeCommune": "67489", - "libelleAcheminement": "THAL MARMOUTIER", - "nomCommune": "THAL MARMOUTIER" + "codePostal": "40110", + "codeCommune": "40197", + "libelleAcheminement": "MORCENX LA NOUVELLE", + "nomCommune": "MORCENX LA NOUVELLE" }, { - "codePostal": "17150", - "codeCommune": "17423", - "libelleAcheminement": "SEMILLAC", - "nomCommune": "SEMILLAC" + "codePostal": "42800", + "codeCommune": "42283", + "libelleAcheminement": "ST ROMAIN EN JAREZ", + "nomCommune": "ST ROMAIN EN JAREZ" }, { - "codePostal": "33133", - "codeCommune": "33179", - "libelleAcheminement": "GALGON", - "nomCommune": "GALGON" + "codePostal": "54110", + "codeCommune": "54509", + "libelleAcheminement": "SOMMERVILLER", + "nomCommune": "SOMMERVILLER" }, { - "codePostal": "47520", - "codeCommune": "47201", - "libelleAcheminement": "LE PASSAGE", - "nomCommune": "LE PASSAGE" + "codePostal": "54670", + "codeCommune": "54369", + "libelleAcheminement": "MILLERY", + "nomCommune": "MILLERY" }, { - "codePostal": "67220", - "codeCommune": "67490", - "libelleAcheminement": "THANVILLE", - "nomCommune": "THANVILLE" + "codePostal": "40180", + "codeCommune": "40202", + "libelleAcheminement": "NARROSSE", + "nomCommune": "NARROSSE" }, { - "codePostal": "17770", - "codeCommune": "17426", - "libelleAcheminement": "LE SEURE", - "nomCommune": "LE SEURE" + "codePostal": "42640", + "codeCommune": "42284", + "libelleAcheminement": "ST ROMAIN LA MOTTE", + "nomCommune": "ST ROMAIN LA MOTTE" }, { - "codePostal": "33710", - "codeCommune": "33182", - "libelleAcheminement": "GAURIAC", - "nomCommune": "GAURIAC" + "codePostal": "54300", + "codeCommune": "54520", + "libelleAcheminement": "THIEBAUMENIL", + "nomCommune": "THIEBAUMENIL" }, { - "codePostal": "47140", - "codeCommune": "47203", - "libelleAcheminement": "PENNE D AGENAIS", - "nomCommune": "PENNE D AGENAIS" + "codePostal": "54870", + "codeCommune": "54378", + "libelleAcheminement": "MONTIGNY SUR CHIERS", + "nomCommune": "MONTIGNY SUR CHIERS" }, { - "codePostal": "67370", - "codeCommune": "67495", - "libelleAcheminement": "TRUCHTERSHEIM", - "nomCommune": "TRUCHTERSHEIM" + "codePostal": "40380", + "codeCommune": "40205", + "libelleAcheminement": "NOUSSE", + "nomCommune": "NOUSSE" }, { - "codePostal": "17780", - "codeCommune": "17429", - "libelleAcheminement": "SOUBISE", - "nomCommune": "SOUBISE" + "codePostal": "42610", + "codeCommune": "42285", + "libelleAcheminement": "ST ROMAIN LE PUY", + "nomCommune": "ST ROMAIN LE PUY" }, { - "codePostal": "33240", - "codeCommune": "33183", - "libelleAcheminement": "GAURIAGUET", - "nomCommune": "GAURIAGUET" + "codePostal": "54115", + "codeCommune": "54522", + "libelleAcheminement": "THOREY LYAUTEY", + "nomCommune": "THOREY LYAUTEY" }, { - "codePostal": "47160", - "codeCommune": "47214", - "libelleAcheminement": "PUCH D AGENAIS", - "nomCommune": "PUCH D AGENAIS" + "codePostal": "54118", + "codeCommune": "54393", + "libelleAcheminement": "MOYEN", + "nomCommune": "MOYEN" }, { - "codePostal": "67170", - "codeCommune": "67510", - "libelleAcheminement": "WAHLENHEIM", - "nomCommune": "WAHLENHEIM" + "codePostal": "40380", + "codeCommune": "40208", + "libelleAcheminement": "ONARD", + "nomCommune": "ONARD" }, { - "codePostal": "17130", - "codeCommune": "17433", - "libelleAcheminement": "SOUSMOULINS", - "nomCommune": "SOUSMOULINS" + "codePostal": "42220", + "codeCommune": "42310", + "libelleAcheminement": "THELIS LA COMBE", + "nomCommune": "THELIS LA COMBE" }, { - "codePostal": "33420", - "codeCommune": "33185", - "libelleAcheminement": "GENISSAC", - "nomCommune": "GENISSAC" + "codePostal": "54190", + "codeCommune": "54525", + "libelleAcheminement": "TIERCELET", + "nomCommune": "TIERCELET" }, { - "codePostal": "47300", - "codeCommune": "47215", - "libelleAcheminement": "PUJOLS", - "nomCommune": "PUJOLS" + "codePostal": "54490", + "codeCommune": "54394", + "libelleAcheminement": "MURVILLE", + "nomCommune": "MURVILLE" }, { - "codePostal": "67360", - "codeCommune": "67511", - "libelleAcheminement": "WALBOURG", - "nomCommune": "WALBOURG" + "codePostal": "40110", + "codeCommune": "40210", + "libelleAcheminement": "ONESSE LAHARIE", + "nomCommune": "ONESSE LAHARIE" }, { - "codePostal": "17600", - "codeCommune": "17445", - "libelleAcheminement": "THEZAC", - "nomCommune": "THEZAC" + "codePostal": "42580", + "codeCommune": "42311", + "libelleAcheminement": "LA TOUR EN JAREZ", + "nomCommune": "LA TOUR EN JAREZ" }, { - "codePostal": "33840", - "codeCommune": "33188", - "libelleAcheminement": "GISCOS", - "nomCommune": "GISCOS" + "codePostal": "54510", + "codeCommune": "54526", + "libelleAcheminement": "TOMBLAINE", + "nomCommune": "TOMBLAINE" }, { - "codePostal": "47350", - "codeCommune": "47216", - "libelleAcheminement": "PUYMICLAN", - "nomCommune": "PUYMICLAN" + "codePostal": "54000", + "codeCommune": "54395", + "libelleAcheminement": "NANCY", + "nomCommune": "NANCY" }, { - "codePostal": "67290", - "codeCommune": "67522", - "libelleAcheminement": "WEISLINGEN", - "nomCommune": "WEISLINGEN" + "codePostal": "40110", + "codeCommune": "40215", + "libelleAcheminement": "OUSSE SUZAN", + "nomCommune": "OUSSE SUZAN" }, { - "codePostal": "17130", - "codeCommune": "17454", - "libelleAcheminement": "TUGERAS ST MAURICE", - "nomCommune": "TUGERAS ST MAURICE" + "codePostal": "42600", + "codeCommune": "42328", + "libelleAcheminement": "VERRIERES EN FOREZ", + "nomCommune": "VERRIERES EN FOREZ" }, { - "codePostal": "33660", - "codeCommune": "33191", - "libelleAcheminement": "GOURS", - "nomCommune": "GOURS" + "codePostal": "54500", + "codeCommune": "54547", + "libelleAcheminement": "VANDOEUVRE LES NANCY", + "nomCommune": "VANDOEUVRE LES NANCY" }, { - "codePostal": "47210", - "codeCommune": "47219", - "libelleAcheminement": "RAYET", - "nomCommune": "RAYET" + "codePostal": "54260", + "codeCommune": "54412", + "libelleAcheminement": "OTHE", + "nomCommune": "OTHE" }, { - "codePostal": "67320", - "codeCommune": "67528", - "libelleAcheminement": "WEYER", - "nomCommune": "WEYER" + "codePostal": "40310", + "codeCommune": "40218", + "libelleAcheminement": "PARLEBOSCQ", + "nomCommune": "PARLEBOSCQ" }, { - "codePostal": "17250", - "codeCommune": "17455", - "libelleAcheminement": "LA VALLEE", - "nomCommune": "LA VALLEE" + "codePostal": "42300", + "codeCommune": "42332", + "libelleAcheminement": "VILLEREST", + "nomCommune": "VILLEREST" }, { - "codePostal": "33420", - "codeCommune": "33194", - "libelleAcheminement": "GREZILLAC", - "nomCommune": "GREZILLAC" + "codePostal": "54112", + "codeCommune": "54548", + "libelleAcheminement": "VANNES LE CHATEL", + "nomCommune": "VANNES LE CHATEL" }, { - "codePostal": "47160", - "codeCommune": "47220", - "libelleAcheminement": "RAZIMET", - "nomCommune": "RAZIMET" + "codePostal": "54540", + "codeCommune": "54423", + "libelleAcheminement": "PEXONNE", + "nomCommune": "PEXONNE" }, { - "codePostal": "67130", - "codeCommune": "67531", - "libelleAcheminement": "WILDERSBACH", - "nomCommune": "WILDERSBACH" + "codePostal": "40700", + "codeCommune": "40223", + "libelleAcheminement": "PEYRE", + "nomCommune": "PEYRE" }, { - "codePostal": "17380", - "codeCommune": "17457", - "libelleAcheminement": "LA DEVISE", - "nomCommune": "LA DEVISE" + "codePostal": "42140", + "codeCommune": "42335", + "libelleAcheminement": "VIRICELLES", + "nomCommune": "VIRICELLES" }, { - "codePostal": "33230", - "codeCommune": "33198", - "libelleAcheminement": "GUITRES", - "nomCommune": "GUITRES" + "codePostal": "54110", + "codeCommune": "54549", + "libelleAcheminement": "VARANGEVILLE", + "nomCommune": "VARANGEVILLE" }, { - "codePostal": "47170", - "codeCommune": "47221", - "libelleAcheminement": "REAUP LISSE", - "nomCommune": "REAUP LISSE" + "codePostal": "54200", + "codeCommune": "54426", + "libelleAcheminement": "PIERRE LA TREICHE", + "nomCommune": "PIERRE LA TREICHE" }, { - "codePostal": "67270", - "codeCommune": "67534", - "libelleAcheminement": "WILWISHEIM", - "nomCommune": "WILWISHEIM" + "codePostal": "40300", + "codeCommune": "40224", + "libelleAcheminement": "PEYREHORADE", + "nomCommune": "PEYREHORADE" }, { - "codePostal": "17700", - "codeCommune": "17457", - "libelleAcheminement": "LA DEVISE", - "nomCommune": "LA DEVISE" + "codePostal": "42140", + "codeCommune": "42336", + "libelleAcheminement": "VIRIGNEUX", + "nomCommune": "VIRIGNEUX" }, { - "codePostal": "33990", - "codeCommune": "33203", - "libelleAcheminement": "HOURTIN", - "nomCommune": "HOURTIN" + "codePostal": "54540", + "codeCommune": "54560", + "libelleAcheminement": "VENEY", + "nomCommune": "VENEY" }, { - "codePostal": "47250", - "codeCommune": "47224", - "libelleAcheminement": "ROMESTAING", - "nomCommune": "ROMESTAING" + "codePostal": "54160", + "codeCommune": "54429", + "libelleAcheminement": "PIERREVILLE", + "nomCommune": "PIERREVILLE" }, { - "codePostal": "67170", - "codeCommune": "67539", - "libelleAcheminement": "WINGERSHEIM LES QUATRE BANS", - "nomCommune": "WINGERSHEIM LES QUATRE BANS" + "codePostal": "40320", + "codeCommune": "40226", + "libelleAcheminement": "PIMBO", + "nomCommune": "PIMBO" }, { - "codePostal": "17300", - "codeCommune": "17463", - "libelleAcheminement": "VERGEROUX", - "nomCommune": "VERGEROUX" + "codePostal": "43300", + "codeCommune": "43013", + "libelleAcheminement": "VISSAC AUTEYRAC", + "nomCommune": "VISSAC AUTEYRAC" }, { - "codePostal": "33790", - "codeCommune": "33223", - "libelleAcheminement": "LANDERROUAT", - "nomCommune": "LANDERROUAT" + "codePostal": "54830", + "codeCommune": "54561", + "libelleAcheminement": "VENNEZEY", + "nomCommune": "VENNEZEY" }, { - "codePostal": "47150", - "codeCommune": "47230", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "54160", + "codeCommune": "54437", + "libelleAcheminement": "PULLIGNY", + "nomCommune": "PULLIGNY" }, { - "codePostal": "67270", - "codeCommune": "67539", - "libelleAcheminement": "WINGERSHEIM LES QUATRE BANS", - "nomCommune": "WINGERSHEIM LES QUATRE BANS" + "codePostal": "40360", + "codeCommune": "40228", + "libelleAcheminement": "POMAREZ", + "nomCommune": "POMAREZ" }, { - "codePostal": "17400", - "codeCommune": "17467", - "libelleAcheminement": "VERVANT", - "nomCommune": "VERVANT" + "codePostal": "43380", + "codeCommune": "43031", + "libelleAcheminement": "BLASSAC", + "nomCommune": "BLASSAC" }, { - "codePostal": "33138", - "codeCommune": "33229", - "libelleAcheminement": "LANTON", - "nomCommune": "LANTON" + "codePostal": "54470", + "codeCommune": "54564", + "libelleAcheminement": "VIEVILLE EN HAYE", + "nomCommune": "VIEVILLE EN HAYE" }, { - "codePostal": "47270", - "codeCommune": "47234", - "libelleAcheminement": "ST CAPRAIS DE LERM", - "nomCommune": "ST CAPRAIS DE LERM" + "codePostal": "54115", + "codeCommune": "54438", + "libelleAcheminement": "PULNEY", + "nomCommune": "PULNEY" }, { - "codePostal": "67370", - "codeCommune": "67542", - "libelleAcheminement": "WINTZENHEIM KOCHERSBERG", - "nomCommune": "WINTZENHEIM KOCHERSBERG" + "codePostal": "40465", + "codeCommune": "40230", + "libelleAcheminement": "PONTONX SUR L ADOUR", + "nomCommune": "PONTONX SUR L ADOUR" }, { - "codePostal": "17130", - "codeCommune": "17468", - "libelleAcheminement": "VIBRAC", - "nomCommune": "VIBRAC" + "codePostal": "43700", + "codeCommune": "43041", + "libelleAcheminement": "BRIVES CHARENSAC", + "nomCommune": "BRIVES CHARENSAC" }, { - "codePostal": "33410", - "codeCommune": "33231", - "libelleAcheminement": "LAROQUE", - "nomCommune": "LAROQUE" + "codePostal": "54360", + "codeCommune": "54565", + "libelleAcheminement": "VIGNEULLES", + "nomCommune": "VIGNEULLES" }, { - "codePostal": "47410", - "codeCommune": "47235", - "libelleAcheminement": "ST COLOMB DE LAUZUN", - "nomCommune": "ST COLOMB DE LAUZUN" + "codePostal": "54330", + "codeCommune": "54442", + "libelleAcheminement": "QUEVILLONCOURT", + "nomCommune": "QUEVILLONCOURT" }, { - "codePostal": "67130", - "codeCommune": "67543", - "libelleAcheminement": "WISCHES", - "nomCommune": "WISCHES" + "codePostal": "40700", + "codeCommune": "40253", + "libelleAcheminement": "ST CRICQ CHALOSSE", + "nomCommune": "ST CRICQ CHALOSSE" }, { - "codePostal": "17470", - "codeCommune": "17473", - "libelleAcheminement": "VILLEMORIN", - "nomCommune": "VILLEMORIN" + "codePostal": "43380", + "codeCommune": "43044", + "libelleAcheminement": "CERZAT", + "nomCommune": "CERZAT" }, { - "codePostal": "33620", - "codeCommune": "33233", - "libelleAcheminement": "LARUSCADE", - "nomCommune": "LARUSCADE" + "codePostal": "54290", + "codeCommune": "54567", + "libelleAcheminement": "VILLACOURT", + "nomCommune": "VILLACOURT" }, { - "codePostal": "47310", - "codeCommune": "47238", - "libelleAcheminement": "STE COLOMBE EN BRUILHOIS", - "nomCommune": "STE COLOMBE EN BRUILHOIS" + "codePostal": "54370", + "codeCommune": "54445", + "libelleAcheminement": "RAVILLE SUR SANON", + "nomCommune": "RAVILLE SUR SANON" }, { - "codePostal": "67130", - "codeCommune": "67543", - "libelleAcheminement": "WISCHES", - "nomCommune": "WISCHES" + "codePostal": "40380", + "codeCommune": "40263", + "libelleAcheminement": "ST JEAN DE LIER", + "nomCommune": "ST JEAN DE LIER" }, { - "codePostal": "18500", - "codeCommune": "18005", - "libelleAcheminement": "ALLOUIS", - "nomCommune": "ALLOUIS" + "codePostal": "43410", + "codeCommune": "43050", + "libelleAcheminement": "CHAMBEZON", + "nomCommune": "CHAMBEZON" }, { - "codePostal": "33690", - "codeCommune": "33235", - "libelleAcheminement": "LAVAZAN", - "nomCommune": "LAVAZAN" + "codePostal": "54730", + "codeCommune": "54572", + "libelleAcheminement": "VILLE HOUDLEMONT", + "nomCommune": "VILLE HOUDLEMONT" }, { - "codePostal": "47270", - "codeCommune": "47248", - "libelleAcheminement": "ST JEAN DE THURAC", - "nomCommune": "ST JEAN DE THURAC" + "codePostal": "54470", + "codeCommune": "54453", + "libelleAcheminement": "REMBERCOURT SUR MAD", + "nomCommune": "REMBERCOURT SUR MAD" }, { - "codePostal": "67120", - "codeCommune": "67554", - "libelleAcheminement": "WOLXHEIM", - "nomCommune": "WOLXHEIM" + "codePostal": "40550", + "codeCommune": "40276", + "libelleAcheminement": "ST MICHEL ESCALUS", + "nomCommune": "ST MICHEL ESCALUS" }, { - "codePostal": "18340", - "codeCommune": "18006", - "libelleAcheminement": "ANNOIX", - "nomCommune": "ANNOIX" + "codePostal": "43260", + "codeCommune": "43053", + "libelleAcheminement": "CHAMPCLAUSE", + "nomCommune": "CHAMPCLAUSE" }, { - "codePostal": "33550", - "codeCommune": "33241", - "libelleAcheminement": "LESTIAC SUR GARONNE", - "nomCommune": "LESTIAC SUR GARONNE" + "codePostal": "54870", + "codeCommune": "54574", + "libelleAcheminement": "VILLERS LA CHEVRE", + "nomCommune": "VILLERS LA CHEVRE" }, { - "codePostal": "47290", - "codeCommune": "47259", - "libelleAcheminement": "ST MAURICE DE LESTAPEL", - "nomCommune": "ST MAURICE DE LESTAPEL" + "codePostal": "54110", + "codeCommune": "54456", + "libelleAcheminement": "REMEREVILLE", + "nomCommune": "REMEREVILLE" }, { - "codePostal": "67110", - "codeCommune": "67558", - "libelleAcheminement": "ZINSWILLER", - "nomCommune": "ZINSWILLER" + "codePostal": "40180", + "codeCommune": "40277", + "libelleAcheminement": "ST PANDELON", + "nomCommune": "ST PANDELON" }, { - "codePostal": "18800", - "codeCommune": "18023", - "libelleAcheminement": "BAUGY", - "nomCommune": "BAUGY" + "codePostal": "43430", + "codeCommune": "43053", + "libelleAcheminement": "CHAMPCLAUSE", + "nomCommune": "CHAMPCLAUSE" }, { - "codePostal": "33500", - "codeCommune": "33243", - "libelleAcheminement": "LIBOURNE", - "nomCommune": "LIBOURNE" + "codePostal": "54800", + "codeCommune": "54581", + "libelleAcheminement": "VILLE SUR YRON", + "nomCommune": "VILLE SUR YRON" }, { - "codePostal": "47200", - "codeCommune": "47263", - "libelleAcheminement": "ST PARDOUX DU BREUIL", - "nomCommune": "ST PARDOUX DU BREUIL" + "codePostal": "54630", + "codeCommune": "54459", + "libelleAcheminement": "RICHARDMENIL", + "nomCommune": "RICHARDMENIL" }, { - "codePostal": "68770", - "codeCommune": "68005", - "libelleAcheminement": "AMMERSCHWIHR", - "nomCommune": "AMMERSCHWIHR" + "codePostal": "40500", + "codeCommune": "40282", + "libelleAcheminement": "ST SEVER", + "nomCommune": "ST SEVER" }, { - "codePostal": "18800", - "codeCommune": "18023", - "libelleAcheminement": "BAUGY", - "nomCommune": "BAUGY" + "codePostal": "43300", + "codeCommune": "43056", + "libelleAcheminement": "CHANTEUGES", + "nomCommune": "CHANTEUGES" }, { - "codePostal": "33430", - "codeCommune": "33244", - "libelleAcheminement": "LIGNAN DE BAZAS", - "nomCommune": "LIGNAN DE BAZAS" + "codePostal": "54260", + "codeCommune": "54590", + "libelleAcheminement": "VIVIERS SUR CHIERS", + "nomCommune": "VIVIERS SUR CHIERS" }, { - "codePostal": "47120", - "codeCommune": "47271", - "libelleAcheminement": "ST PIERRE SUR DROPT", - "nomCommune": "ST PIERRE SUR DROPT" + "codePostal": "54610", + "codeCommune": "54464", + "libelleAcheminement": "ROUVES", + "nomCommune": "ROUVES" }, { - "codePostal": "68280", - "codeCommune": "68007", - "libelleAcheminement": "ANDOLSHEIM", - "nomCommune": "ANDOLSHEIM" + "codePostal": "40800", + "codeCommune": "40290", + "libelleAcheminement": "SARRON", + "nomCommune": "SARRON" }, { - "codePostal": "18200", - "codeCommune": "18038", - "libelleAcheminement": "BRUERE ALLICHAMPS", - "nomCommune": "BRUERE ALLICHAMPS" + "codePostal": "43120", + "codeCommune": "43058", + "libelleAcheminement": "LA CHAPELLE D AUREC", + "nomCommune": "LA CHAPELLE D AUREC" }, { - "codePostal": "33127", - "codeCommune": "33273", - "libelleAcheminement": "MARTIGNAS SUR JALLE", - "nomCommune": "MARTIGNAS SUR JALLE" + "codePostal": "54470", + "codeCommune": "54594", + "libelleAcheminement": "XAMMES", + "nomCommune": "XAMMES" }, { - "codePostal": "47340", - "codeCommune": "47273", - "libelleAcheminement": "ST ROBERT", - "nomCommune": "ST ROBERT" + "codePostal": "54200", + "codeCommune": "54466", + "libelleAcheminement": "ROYAUMEIX", + "nomCommune": "ROYAUMEIX" }, { - "codePostal": "68700", - "codeCommune": "68012", - "libelleAcheminement": "ASPACH MICHELBACH", - "nomCommune": "ASPACH MICHELBACH" + "codePostal": "40140", + "codeCommune": "40310", + "libelleAcheminement": "SOUSTONS", + "nomCommune": "SOUSTONS" }, { - "codePostal": "18150", - "codeCommune": "18048", - "libelleAcheminement": "LA CHAPELLE HUGON", - "nomCommune": "LA CHAPELLE HUGON" + "codePostal": "43160", + "codeCommune": "43059", + "libelleAcheminement": "LA CHAPELLE GENESTE", + "nomCommune": "LA CHAPELLE GENESTE" }, { - "codePostal": "33650", - "codeCommune": "33274", - "libelleAcheminement": "MARTILLAC", - "nomCommune": "MARTILLAC" + "codePostal": "54300", + "codeCommune": "54595", + "libelleAcheminement": "XERMAMENIL", + "nomCommune": "XERMAMENIL" }, { - "codePostal": "47120", - "codeCommune": "47278", - "libelleAcheminement": "ST SERNIN", - "nomCommune": "ST SERNIN" + "codePostal": "54580", + "codeCommune": "54469", + "libelleAcheminement": "ST AIL", + "nomCommune": "ST AIL" }, { - "codePostal": "68390", - "codeCommune": "68015", - "libelleAcheminement": "BALDERSHEIM", - "nomCommune": "BALDERSHEIM" + "codePostal": "40180", + "codeCommune": "40314", + "libelleAcheminement": "TERCIS LES BAINS", + "nomCommune": "TERCIS LES BAINS" }, { - "codePostal": "18350", - "codeCommune": "18060", - "libelleAcheminement": "CHAUMONT", - "nomCommune": "CHAUMONT" + "codePostal": "43230", + "codeCommune": "43072", + "libelleAcheminement": "LA CHOMETTE", + "nomCommune": "LA CHOMETTE" }, { - "codePostal": "33540", - "codeCommune": "33278", - "libelleAcheminement": "MAURIAC", - "nomCommune": "MAURIAC" + "codePostal": "54620", + "codeCommune": "54602", + "libelleAcheminement": "HAN DEVANT PIERREPONT", + "nomCommune": "HAN DEVANT PIERREPONT" }, { - "codePostal": "47500", - "codeCommune": "47283", - "libelleAcheminement": "ST VITE", - "nomCommune": "ST VITE" + "codePostal": "54470", + "codeCommune": "54470", + "libelleAcheminement": "ST BAUSSANT", + "nomCommune": "ST BAUSSANT" }, { - "codePostal": "68210", - "codeCommune": "68018", - "libelleAcheminement": "BALSCHWILLER", - "nomCommune": "BALSCHWILLER" + "codePostal": "40990", + "codeCommune": "40315", + "libelleAcheminement": "TETHIEU", + "nomCommune": "TETHIEU" }, { - "codePostal": "18140", - "codeCommune": "18061", - "libelleAcheminement": "CHAUMOUX MARCILLY", - "nomCommune": "CHAUMOUX MARCILLY" + "codePostal": "43160", + "codeCommune": "43073", + "libelleAcheminement": "CISTRIERES", + "nomCommune": "CISTRIERES" }, { - "codePostal": "33390", - "codeCommune": "33280", - "libelleAcheminement": "MAZION", - "nomCommune": "MAZION" + "codePostal": "55130", + "codeCommune": "55005", + "libelleAcheminement": "AMANTY", + "nomCommune": "AMANTY" }, { - "codePostal": "47220", - "codeCommune": "47293", - "libelleAcheminement": "SAUVETERRE ST DENIS", - "nomCommune": "SAUVETERRE ST DENIS" + "codePostal": "54290", + "codeCommune": "54475", + "libelleAcheminement": "ST GERMAIN", + "nomCommune": "ST GERMAIN" }, { - "codePostal": "68210", - "codeCommune": "68018", - "libelleAcheminement": "BALSCHWILLER", - "nomCommune": "BALSCHWILLER" + "codePostal": "40230", + "codeCommune": "40317", + "libelleAcheminement": "TOSSE", + "nomCommune": "TOSSE" }, { - "codePostal": "18290", - "codeCommune": "18066", - "libelleAcheminement": "CIVRAY", - "nomCommune": "CIVRAY" + "codePostal": "43170", + "codeCommune": "43083", + "libelleAcheminement": "CUBELLES", + "nomCommune": "CUBELLES" }, { - "codePostal": "33190", - "codeCommune": "33291", - "libelleAcheminement": "MONTAGOUDIN", - "nomCommune": "MONTAGOUDIN" + "codePostal": "55230", + "codeCommune": "55008", + "libelleAcheminement": "AMEL SUR L ETANG", + "nomCommune": "AMEL SUR L ETANG" }, { - "codePostal": "47120", - "codeCommune": "47294", - "libelleAcheminement": "SAVIGNAC DE DURAS", - "nomCommune": "SAVIGNAC DE DURAS" + "codePostal": "54260", + "codeCommune": "54476", + "libelleAcheminement": "ST JEAN LES LONGUYON", + "nomCommune": "ST JEAN LES LONGUYON" }, { - "codePostal": "68870", - "codeCommune": "68021", - "libelleAcheminement": "BARTENHEIM", - "nomCommune": "BARTENHEIM" + "codePostal": "40250", + "codeCommune": "40318", + "libelleAcheminement": "TOULOUZETTE", + "nomCommune": "TOULOUZETTE" }, { - "codePostal": "18130", - "codeCommune": "18068", - "libelleAcheminement": "COGNY", - "nomCommune": "COGNY" + "codePostal": "43300", + "codeCommune": "43085", + "libelleAcheminement": "DESGES", + "nomCommune": "DESGES" }, { - "codePostal": "33430", - "codeCommune": "33305", - "libelleAcheminement": "LE NIZAN", - "nomCommune": "LE NIZAN" + "codePostal": "55700", + "codeCommune": "55018", + "libelleAcheminement": "AUTREVILLE ST LAMBERT", + "nomCommune": "AUTREVILLE ST LAMBERT" }, { - "codePostal": "47170", - "codeCommune": "47302", - "libelleAcheminement": "SOS", - "nomCommune": "SOS" + "codePostal": "54730", + "codeCommune": "54485", + "libelleAcheminement": "ST PANCRE", + "nomCommune": "ST PANCRE" }, { - "codePostal": "68480", - "codeCommune": "68025", - "libelleAcheminement": "BENDORF", - "nomCommune": "BENDORF" + "codePostal": "40320", + "codeCommune": "40325", + "libelleAcheminement": "VIELLE TURSAN", + "nomCommune": "VIELLE TURSAN" }, { - "codePostal": "18190", - "codeCommune": "18073", - "libelleAcheminement": "CORQUOY", - "nomCommune": "CORQUOY" + "codePostal": "43230", + "codeCommune": "43086", + "libelleAcheminement": "DOMEYRAT", + "nomCommune": "DOMEYRAT" }, { - "codePostal": "33240", - "codeCommune": "33321", - "libelleAcheminement": "PEUJARD", - "nomCommune": "PEUJARD" + "codePostal": "55210", + "codeCommune": "55021", + "libelleAcheminement": "AVILLERS STE CROIX", + "nomCommune": "AVILLERS STE CROIX" }, { - "codePostal": "47270", - "codeCommune": "47305", - "libelleAcheminement": "TAYRAC", - "nomCommune": "TAYRAC" + "codePostal": "54480", + "codeCommune": "54488", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "68130", - "codeCommune": "68027", - "libelleAcheminement": "BERENTZWILLER", - "nomCommune": "BERENTZWILLER" + "codePostal": "40560", + "codeCommune": "40326", + "libelleAcheminement": "VIELLE ST GIRONS", + "nomCommune": "VIELLE ST GIRONS" }, { - "codePostal": "18320", - "codeCommune": "18075", - "libelleAcheminement": "COURS LES BARRES", - "nomCommune": "COURS LES BARRES" + "codePostal": "43170", + "codeCommune": "43090", + "libelleAcheminement": "ESPLANTAS VAZEILLES", + "nomCommune": "ESPLANTAS VAZEILLES" }, { - "codePostal": "33220", - "codeCommune": "33324", - "libelleAcheminement": "PINEUILH", - "nomCommune": "PINEUILH" + "codePostal": "55270", + "codeCommune": "55023", + "libelleAcheminement": "AVOCOURT", + "nomCommune": "AVOCOURT" }, { - "codePostal": "47110", - "codeCommune": "47306", - "libelleAcheminement": "LE TEMPLE SUR LOT", - "nomCommune": "LE TEMPLE SUR LOT" + "codePostal": "54115", + "codeCommune": "54494", + "libelleAcheminement": "SAULXEROTTE", + "nomCommune": "SAULXEROTTE" }, { - "codePostal": "68730", - "codeCommune": "68042", - "libelleAcheminement": "BLOTZHEIM", - "nomCommune": "BLOTZHEIM" + "codePostal": "40160", + "codeCommune": "40332", + "libelleAcheminement": "YCHOUX", + "nomCommune": "YCHOUX" }, { - "codePostal": "18300", - "codeCommune": "18079", - "libelleAcheminement": "CREZANCY EN SANCERRE", - "nomCommune": "CREZANCY EN SANCERRE" + "codePostal": "43300", + "codeCommune": "43094", + "libelleAcheminement": "FERRUSSAC", + "nomCommune": "FERRUSSAC" }, { - "codePostal": "33820", - "codeCommune": "33326", - "libelleAcheminement": "PLEINE SELVE", - "nomCommune": "PLEINE SELVE" + "codePostal": "55150", + "codeCommune": "55024", + "libelleAcheminement": "AZANNES ET SOUMAZANNES", + "nomCommune": "AZANNES ET SOUMAZANNES" }, { - "codePostal": "47400", - "codeCommune": "47310", - "libelleAcheminement": "TONNEINS", - "nomCommune": "TONNEINS" + "codePostal": "54420", + "codeCommune": "54495", + "libelleAcheminement": "SAULXURES LES NANCY", + "nomCommune": "SAULXURES LES NANCY" }, { - "codePostal": "68210", - "codeCommune": "68050", - "libelleAcheminement": "BRECHAUMONT", - "nomCommune": "BRECHAUMONT" + "codePostal": "41310", + "codeCommune": "41007", + "libelleAcheminement": "AUTHON", + "nomCommune": "AUTHON" }, { - "codePostal": "18300", - "codeCommune": "18094", - "libelleAcheminement": "FEUX", - "nomCommune": "FEUX" + "codePostal": "43230", + "codeCommune": "43100", + "libelleAcheminement": "FRUGIERES LE PIN", + "nomCommune": "FRUGIERES LE PIN" }, { - "codePostal": "33640", - "codeCommune": "33334", - "libelleAcheminement": "PORTETS", - "nomCommune": "PORTETS" + "codePostal": "55130", + "codeCommune": "55026", + "libelleAcheminement": "BADONVILLIERS GERAUVILLIERS", + "nomCommune": "BADONVILLIERS GERAUVILLIERS" }, { - "codePostal": "47210", - "codeCommune": "47311", - "libelleAcheminement": "TOURLIAC", - "nomCommune": "TOURLIAC" + "codePostal": "54480", + "codeCommune": "54512", + "libelleAcheminement": "TANCONVILLE", + "nomCommune": "TANCONVILLE" }, { - "codePostal": "68350", - "codeCommune": "68056", - "libelleAcheminement": "BRUNSTATT DIDENHEIM", - "nomCommune": "BRUNSTATT DIDENHEIM" + "codePostal": "41330", + "codeCommune": "41040", + "libelleAcheminement": "LA CHAPELLE VENDOMOISE", + "nomCommune": "LA CHAPELLE VENDOMOISE" }, { - "codePostal": "18600", - "codeCommune": "18106", - "libelleAcheminement": "GROSSOUVRE", - "nomCommune": "GROSSOUVRE" + "codePostal": "43450", + "codeCommune": "43103", + "libelleAcheminement": "GRENIER MONTGON", + "nomCommune": "GRENIER MONTGON" }, { - "codePostal": "33670", - "codeCommune": "33335", - "libelleAcheminement": "LE POUT", - "nomCommune": "LE POUT" + "codePostal": "55250", + "codeCommune": "55040", + "libelleAcheminement": "BEAUSITE", + "nomCommune": "BEAUSITE" }, { - "codePostal": "47230", - "codeCommune": "47318", - "libelleAcheminement": "VIANNE", - "nomCommune": "VIANNE" + "codePostal": "54330", + "codeCommune": "54515", + "libelleAcheminement": "THELOD", + "nomCommune": "THELOD" }, { - "codePostal": "68210", - "codeCommune": "68057", - "libelleAcheminement": "BUETHWILLER", - "nomCommune": "BUETHWILLER" + "codePostal": "41130", + "codeCommune": "41043", + "libelleAcheminement": "CHATILLON SUR CHER", + "nomCommune": "CHATILLON SUR CHER" }, { - "codePostal": "18170", - "codeCommune": "18112", - "libelleAcheminement": "IDS ST ROCH", - "nomCommune": "IDS ST ROCH" + "codePostal": "43100", + "codeCommune": "43105", + "libelleAcheminement": "JAVAUGUES", + "nomCommune": "JAVAUGUES" }, { - "codePostal": "33710", - "codeCommune": "33339", - "libelleAcheminement": "PRIGNAC ET MARCAMPS", - "nomCommune": "PRIGNAC ET MARCAMPS" + "codePostal": "55210", + "codeCommune": "55046", + "libelleAcheminement": "BENEY EN WOEVRE", + "nomCommune": "BENEY EN WOEVRE" }, { - "codePostal": "47370", - "codeCommune": "47328", - "libelleAcheminement": "ST GEORGES", - "nomCommune": "ST GEORGES" + "codePostal": "54170", + "codeCommune": "54523", + "libelleAcheminement": "THUILLEY AUX GROSEILLES", + "nomCommune": "THUILLEY AUX GROSEILLES" }, { - "codePostal": "68520", - "codeCommune": "68060", - "libelleAcheminement": "BURNHAUPT LE HAUT", - "nomCommune": "BURNHAUPT LE HAUT" + "codePostal": "41150", + "codeCommune": "41045", + "libelleAcheminement": "CHAUMONT SUR LOIRE", + "nomCommune": "CHAUMONT SUR LOIRE" }, { - "codePostal": "18340", - "codeCommune": "18129", - "libelleAcheminement": "LISSAY LOCHY", - "nomCommune": "LISSAY LOCHY" + "codePostal": "43440", + "codeCommune": "43116", + "libelleAcheminement": "LAVAL SUR DOULON", + "nomCommune": "LAVAL SUR DOULON" }, { - "codePostal": "33710", - "codeCommune": "33341", - "libelleAcheminement": "PUGNAC", - "nomCommune": "PUGNAC" + "codePostal": "55200", + "codeCommune": "55058", + "libelleAcheminement": "BONCOURT SUR MEUSE", + "nomCommune": "BONCOURT SUR MEUSE" }, { - "codePostal": "48310", - "codeCommune": "48007", - "libelleAcheminement": "ARZENC D APCHER", - "nomCommune": "ARZENC D APCHER" + "codePostal": "54115", + "codeCommune": "54531", + "libelleAcheminement": "TRAMONT ST ANDRE", + "nomCommune": "TRAMONT ST ANDRE" }, { - "codePostal": "68000", - "codeCommune": "68066", - "libelleAcheminement": "COLMAR", - "nomCommune": "COLMAR" + "codePostal": "41600", + "codeCommune": "41046", + "libelleAcheminement": "CHAUMONT SUR THARONNE", + "nomCommune": "CHAUMONT SUR THARONNE" }, { - "codePostal": "18300", - "codeCommune": "18146", - "libelleAcheminement": "MENETREOL SOUS SANCERRE", - "nomCommune": "MENETREOL SOUS SANCERRE" + "codePostal": "43100", + "codeCommune": "43117", + "libelleAcheminement": "LAVAUDIEU", + "nomCommune": "LAVAUDIEU" }, { - "codePostal": "33710", - "codeCommune": "33341", - "libelleAcheminement": "PUGNAC", - "nomCommune": "PUGNAC" + "codePostal": "55160", + "codeCommune": "55060", + "libelleAcheminement": "BONZEE", + "nomCommune": "BONZEE" }, { - "codePostal": "48130", - "codeCommune": "48009", - "libelleAcheminement": "PEYRE EN AUBRAC", - "nomCommune": "PEYRE EN AUBRAC" + "codePostal": "54750", + "codeCommune": "54533", + "libelleAcheminement": "TRIEUX", + "nomCommune": "TRIEUX" }, { - "codePostal": "68210", - "codeCommune": "68068", - "libelleAcheminement": "DANNEMARIE", - "nomCommune": "DANNEMARIE" + "codePostal": "41700", + "codeCommune": "41050", + "libelleAcheminement": "CHEVERNY", + "nomCommune": "CHEVERNY" }, { - "codePostal": "18120", - "codeCommune": "18148", - "libelleAcheminement": "MEREAU", - "nomCommune": "MEREAU" + "codePostal": "43300", + "codeCommune": "43132", + "libelleAcheminement": "MAZEYRAT D ALLIER", + "nomCommune": "MAZEYRAT D ALLIER" }, { - "codePostal": "33570", - "codeCommune": "33342", - "libelleAcheminement": "PUISSEGUIN", - "nomCommune": "PUISSEGUIN" + "codePostal": "55190", + "codeCommune": "55066", + "libelleAcheminement": "BOVEE SUR BARBOURE", + "nomCommune": "BOVEE SUR BARBOURE" }, { - "codePostal": "48200", - "codeCommune": "48012", - "libelleAcheminement": "LES MONTS VERTS", - "nomCommune": "LES MONTS VERTS" + "codePostal": "54640", + "codeCommune": "54536", + "libelleAcheminement": "TUCQUEGNIEUX", + "nomCommune": "TUCQUEGNIEUX" }, { - "codePostal": "68780", - "codeCommune": "68071", - "libelleAcheminement": "DIEFMATTEN", - "nomCommune": "DIEFMATTEN" + "codePostal": "41700", + "codeCommune": "41054", + "libelleAcheminement": "CHOUSSY", + "nomCommune": "CHOUSSY" }, { - "codePostal": "18250", - "codeCommune": "18151", - "libelleAcheminement": "MONTIGNY", - "nomCommune": "MONTIGNY" + "codePostal": "43150", + "codeCommune": "43135", + "libelleAcheminement": "LE MONASTIER SUR GAZEILLE", + "nomCommune": "LE MONASTIER SUR GAZEILLE" }, { - "codePostal": "33580", - "codeCommune": "33359", - "libelleAcheminement": "ROQUEBRUNE", - "nomCommune": "ROQUEBRUNE" + "codePostal": "55400", + "codeCommune": "55072", + "libelleAcheminement": "BRAQUIS", + "nomCommune": "BRAQUIS" }, { - "codePostal": "48200", - "codeCommune": "48025", - "libelleAcheminement": "LES BESSONS", - "nomCommune": "LES BESSONS" + "codePostal": "54112", + "codeCommune": "54538", + "libelleAcheminement": "URUFFE", + "nomCommune": "URUFFE" }, { - "codePostal": "68290", - "codeCommune": "68073", - "libelleAcheminement": "DOLLEREN", - "nomCommune": "DOLLEREN" + "codePostal": "41370", + "codeCommune": "41058", + "libelleAcheminement": "CONCRIERS", + "nomCommune": "CONCRIERS" }, { - "codePostal": "18220", - "codeCommune": "18156", - "libelleAcheminement": "MOROGUES", - "nomCommune": "MOROGUES" + "codePostal": "43290", + "codeCommune": "43142", + "libelleAcheminement": "MONTREGARD", + "nomCommune": "MONTREGARD" }, { - "codePostal": "33910", - "codeCommune": "33362", - "libelleAcheminement": "SABLONS", - "nomCommune": "SABLONS" + "codePostal": "55140", + "codeCommune": "55080", + "libelleAcheminement": "BRIXEY AUX CHANOINES", + "nomCommune": "BRIXEY AUX CHANOINES" }, { - "codePostal": "48170", - "codeCommune": "48027", - "libelleAcheminement": "MONT LOZERE ET GOULET", - "nomCommune": "MONT LOZERE ET GOULET" + "codePostal": "54540", + "codeCommune": "54539", + "libelleAcheminement": "VACQUEVILLE", + "nomCommune": "VACQUEVILLE" }, { - "codePostal": "68130", - "codeCommune": "68096", - "libelleAcheminement": "FRANKEN", - "nomCommune": "FRANKEN" + "codePostal": "41120", + "codeCommune": "41059", + "libelleAcheminement": "LE CONTROIS EN SOLOGNE", + "nomCommune": "LE CONTROIS EN SOLOGNE" }, { - "codePostal": "18330", - "codeCommune": "18159", - "libelleAcheminement": "NANCAY", - "nomCommune": "NANCAY" + "codePostal": "43150", + "codeCommune": "43144", + "libelleAcheminement": "MOUDEYRES", + "nomCommune": "MOUDEYRES" }, { - "codePostal": "33126", - "codeCommune": "33365", - "libelleAcheminement": "ST AIGNAN", - "nomCommune": "ST AIGNAN" + "codePostal": "55140", + "codeCommune": "55089", + "libelleAcheminement": "BUREY LA COTE", + "nomCommune": "BUREY LA COTE" }, { - "codePostal": "48190", - "codeCommune": "48027", - "libelleAcheminement": "MONT LOZERE ET GOULET", - "nomCommune": "MONT LOZERE ET GOULET" + "codePostal": "54121", + "codeCommune": "54546", + "libelleAcheminement": "VANDIERES", + "nomCommune": "VANDIERES" }, { - "codePostal": "68580", - "codeCommune": "68098", - "libelleAcheminement": "FRIESEN", - "nomCommune": "FRIESEN" + "codePostal": "41170", + "codeCommune": "41060", + "libelleAcheminement": "CORMENON", + "nomCommune": "CORMENON" }, { - "codePostal": "18600", - "codeCommune": "18161", - "libelleAcheminement": "NEUILLY EN DUN", - "nomCommune": "NEUILLY EN DUN" + "codePostal": "43230", + "codeCommune": "43148", + "libelleAcheminement": "PAULHAGUET", + "nomCommune": "PAULHAGUET" }, { - "codePostal": "33330", - "codeCommune": "33394", - "libelleAcheminement": "ST EMILION", - "nomCommune": "ST EMILION" + "codePostal": "55700", + "codeCommune": "55095", + "libelleAcheminement": "CESSE", + "nomCommune": "CESSE" }, { - "codePostal": "48310", - "codeCommune": "48031", - "libelleAcheminement": "BRION", - "nomCommune": "BRION" + "codePostal": "54330", + "codeCommune": "54552", + "libelleAcheminement": "VAUDEMONT", + "nomCommune": "VAUDEMONT" }, { - "codePostal": "68210", - "codeCommune": "68107", - "libelleAcheminement": "GOMMERSDORF", - "nomCommune": "GOMMERSDORF" + "codePostal": "41120", + "codeCommune": "41061", + "libelleAcheminement": "CORMERAY", + "nomCommune": "CORMERAY" }, { - "codePostal": "18250", - "codeCommune": "18162", - "libelleAcheminement": "NEUILLY EN SANCERRE", - "nomCommune": "NEUILLY EN SANCERRE" + "codePostal": "43330", + "codeCommune": "43153", + "libelleAcheminement": "PONT SALOMON", + "nomCommune": "PONT SALOMON" }, { - "codePostal": "33190", - "codeCommune": "33398", - "libelleAcheminement": "ST EXUPERY", - "nomCommune": "ST EXUPERY" + "codePostal": "55260", + "codeCommune": "55108", + "libelleAcheminement": "CHAUMONT SUR AIRE", + "nomCommune": "CHAUMONT SUR AIRE" }, { - "codePostal": "48000", - "codeCommune": "48042", - "libelleAcheminement": "CHASTEL NOUVEL", - "nomCommune": "CHASTEL NOUVEL" + "codePostal": "54450", + "codeCommune": "54556", + "libelleAcheminement": "VEHO", + "nomCommune": "VEHO" }, { - "codePostal": "68140", - "codeCommune": "68109", - "libelleAcheminement": "GRIESBACH AU VAL", - "nomCommune": "GRIESBACH AU VAL" + "codePostal": "41500", + "codeCommune": "41066", + "libelleAcheminement": "COURBOUZON", + "nomCommune": "COURBOUZON" }, { - "codePostal": "18600", - "codeCommune": "18164", - "libelleAcheminement": "NEUVY LE BARROIS", - "nomCommune": "NEUVY LE BARROIS" + "codePostal": "43300", + "codeCommune": "43155", + "libelleAcheminement": "PRADES", + "nomCommune": "PRADES" }, { - "codePostal": "33390", - "codeCommune": "33405", - "libelleAcheminement": "ST GENES DE BLAYE", - "nomCommune": "ST GENES DE BLAYE" + "codePostal": "55000", + "codeCommune": "55123", + "libelleAcheminement": "LES HAUTS DE CHEE", + "nomCommune": "LES HAUTS DE CHEE" }, { - "codePostal": "48300", - "codeCommune": "48048", - "libelleAcheminement": "CHEYLARD L EVEQUE", - "nomCommune": "CHEYLARD L EVEQUE" + "codePostal": "54280", + "codeCommune": "54558", + "libelleAcheminement": "VELAINE SOUS AMANCE", + "nomCommune": "VELAINE SOUS AMANCE" }, { - "codePostal": "68970", - "codeCommune": "68113", - "libelleAcheminement": "GUEMAR", - "nomCommune": "GUEMAR" + "codePostal": "41700", + "codeCommune": "41067", + "libelleAcheminement": "COUR CHEVERNY", + "nomCommune": "COUR CHEVERNY" }, { - "codePostal": "18200", - "codeCommune": "18169", - "libelleAcheminement": "NOZIERES", - "nomCommune": "NOZIERES" + "codePostal": "43150", + "codeCommune": "43156", + "libelleAcheminement": "PRESAILLES", + "nomCommune": "PRESAILLES" }, { - "codePostal": "33350", - "codeCommune": "33406", - "libelleAcheminement": "ST GENES DE CASTILLON", - "nomCommune": "ST GENES DE CASTILLON" + "codePostal": "55110", + "codeCommune": "55124", + "libelleAcheminement": "CONSENVOYE", + "nomCommune": "CONSENVOYE" }, { - "codePostal": "48160", - "codeCommune": "48051", - "libelleAcheminement": "LE COLLET DE DEZE", - "nomCommune": "LE COLLET DE DEZE" + "codePostal": "54450", + "codeCommune": "54562", + "libelleAcheminement": "VERDENAL", + "nomCommune": "VERDENAL" }, { - "codePostal": "68440", - "codeCommune": "68118", - "libelleAcheminement": "HABSHEIM", - "nomCommune": "HABSHEIM" + "codePostal": "41230", + "codeCommune": "41068", + "libelleAcheminement": "COURMEMIN", + "nomCommune": "COURMEMIN" }, { - "codePostal": "18130", - "codeCommune": "18173", - "libelleAcheminement": "OSMERY", - "nomCommune": "OSMERY" + "codePostal": "43340", + "codeCommune": "43173", + "libelleAcheminement": "ST CHRISTOPHE D ALLIER", + "nomCommune": "ST CHRISTOPHE D ALLIER" }, { - "codePostal": "33190", - "codeCommune": "33418", - "libelleAcheminement": "ST HILAIRE DE LA NOAILLE", - "nomCommune": "ST HILAIRE DE LA NOAILLE" + "codePostal": "55800", + "codeCommune": "55125", + "libelleAcheminement": "CONTRISSON", + "nomCommune": "CONTRISSON" }, { - "codePostal": "48230", - "codeCommune": "48055", - "libelleAcheminement": "CULTURES", - "nomCommune": "CULTURES" + "codePostal": "54920", + "codeCommune": "54575", + "libelleAcheminement": "VILLERS LA MONTAGNE", + "nomCommune": "VILLERS LA MONTAGNE" }, { - "codePostal": "68210", - "codeCommune": "68119", - "libelleAcheminement": "HAGENBACH", - "nomCommune": "HAGENBACH" + "codePostal": "41160", + "codeCommune": "41073", + "libelleAcheminement": "DANZE", + "nomCommune": "DANZE" }, { - "codePostal": "18390", - "codeCommune": "18174", - "libelleAcheminement": "OSMOY", - "nomCommune": "OSMOY" + "codePostal": "43370", + "codeCommune": "43174", + "libelleAcheminement": "ST CHRISTOPHE SUR DOLAISON", + "nomCommune": "ST CHRISTOPHE SUR DOLAISON" }, { - "codePostal": "33240", - "codeCommune": "33425", - "libelleAcheminement": "ST LAURENT D ARCE", - "nomCommune": "ST LAURENT D ARCE" + "codePostal": "55290", + "codeCommune": "55133", + "libelleAcheminement": "COUVERTPUIS", + "nomCommune": "COUVERTPUIS" }, { - "codePostal": "48600", - "codeCommune": "48070", - "libelleAcheminement": "GRANDRIEU", - "nomCommune": "GRANDRIEU" + "codePostal": "54260", + "codeCommune": "54576", + "libelleAcheminement": "VILLERS LE ROND", + "nomCommune": "VILLERS LE ROND" }, { - "codePostal": "68220", - "codeCommune": "68120", - "libelleAcheminement": "HAGENTHAL LE BAS", - "nomCommune": "HAGENTHAL LE BAS" + "codePostal": "41270", + "codeCommune": "41075", + "libelleAcheminement": "DROUE", + "nomCommune": "DROUE" }, { - "codePostal": "18290", - "codeCommune": "18181", - "libelleAcheminement": "PLOU", - "nomCommune": "PLOU" + "codePostal": "43380", + "codeCommune": "43175", + "libelleAcheminement": "ST CIRGUES", + "nomCommune": "ST CIRGUES" }, { - "codePostal": "33490", - "codeCommune": "33440", - "libelleAcheminement": "ST MARTIAL", - "nomCommune": "ST MARTIAL" + "codePostal": "55100", + "codeCommune": "55139", + "libelleAcheminement": "CUMIERES LE MORT HOMME", + "nomCommune": "CUMIERES LE MORT HOMME" }, { - "codePostal": "48340", - "codeCommune": "48073", - "libelleAcheminement": "LES HERMAUX", - "nomCommune": "LES HERMAUX" + "codePostal": "54760", + "codeCommune": "54577", + "libelleAcheminement": "VILLERS LES MOIVRONS", + "nomCommune": "VILLERS LES MOIVRONS" }, { - "codePostal": "68500", - "codeCommune": "68122", - "libelleAcheminement": "HARTMANNSWILLER", - "nomCommune": "HARTMANNSWILLER" + "codePostal": "41800", + "codeCommune": "41079", + "libelleAcheminement": "LES ESSARTS", + "nomCommune": "LES ESSARTS" }, { - "codePostal": "18130", - "codeCommune": "18191", - "libelleAcheminement": "RAYMOND", - "nomCommune": "RAYMOND" + "codePostal": "43140", + "codeCommune": "43177", + "libelleAcheminement": "ST DIDIER EN VELAY", + "nomCommune": "ST DIDIER EN VELAY" }, { - "codePostal": "33390", - "codeCommune": "33441", - "libelleAcheminement": "ST MARTIN LACAUSSADE", - "nomCommune": "ST MARTIN LACAUSSADE" + "codePostal": "55130", + "codeCommune": "55142", + "libelleAcheminement": "DAINVILLE BERTHELEVILLE", + "nomCommune": "DAINVILLE BERTHELEVILLE" }, { - "codePostal": "48320", - "codeCommune": "48075", - "libelleAcheminement": "ISPAGNAC", - "nomCommune": "ISPAGNAC" + "codePostal": "54190", + "codeCommune": "54580", + "libelleAcheminement": "VILLERUPT", + "nomCommune": "VILLERUPT" }, { - "codePostal": "68210", - "codeCommune": "68125", - "libelleAcheminement": "HECKEN", - "nomCommune": "HECKEN" + "codePostal": "41100", + "codeCommune": "41081", + "libelleAcheminement": "FAYE", + "nomCommune": "FAYE" }, { - "codePostal": "18600", - "codeCommune": "18195", - "libelleAcheminement": "SAGONNE", - "nomCommune": "SAGONNE" + "codePostal": "43230", + "codeCommune": "43183", + "libelleAcheminement": "STE EUGENIE DE VILLENEUVE", + "nomCommune": "STE EUGENIE DE VILLENEUVE" }, { - "codePostal": "33540", - "codeCommune": "33446", - "libelleAcheminement": "ST MARTIN DU PUY", - "nomCommune": "ST MARTIN DU PUY" + "codePostal": "55150", + "codeCommune": "55145", + "libelleAcheminement": "DAMVILLERS", + "nomCommune": "DAMVILLERS" }, { - "codePostal": "48110", - "codeCommune": "48097", - "libelleAcheminement": "MOISSAC VALLEE FRANCAISE", - "nomCommune": "MOISSAC VALLEE FRANCAISE" + "codePostal": "54840", + "codeCommune": "54583", + "libelleAcheminement": "VILLEY LE SEC", + "nomCommune": "VILLEY LE SEC" }, { - "codePostal": "68130", - "codeCommune": "68131", - "libelleAcheminement": "HEIWILLER", - "nomCommune": "HEIWILLER" + "codePostal": "41800", + "codeCommune": "41087", + "libelleAcheminement": "FONTAINE LES COTEAUX", + "nomCommune": "FONTAINE LES COTEAUX" }, { - "codePostal": "18600", - "codeCommune": "18196", - "libelleAcheminement": "ST AIGNAN DES NOYERS", - "nomCommune": "ST AIGNAN DES NOYERS" + "codePostal": "43360", + "codeCommune": "43191", + "libelleAcheminement": "ST GERON", + "nomCommune": "ST GERON" }, { - "codePostal": "33350", - "codeCommune": "33461", - "libelleAcheminement": "ST PHILIPPE D AIGUILLE", - "nomCommune": "ST PHILIPPE D AIGUILLE" + "codePostal": "55110", + "codeCommune": "55146", + "libelleAcheminement": "DANNEVOUX", + "nomCommune": "DANNEVOUX" }, { - "codePostal": "48100", - "codeCommune": "48103", - "libelleAcheminement": "MONTRODAT", - "nomCommune": "MONTRODAT" + "codePostal": "54700", + "codeCommune": "54589", + "libelleAcheminement": "VITTONVILLE", + "nomCommune": "VITTONVILLE" }, { - "codePostal": "68510", - "codeCommune": "68132", - "libelleAcheminement": "HELFRANTZKIRCH", - "nomCommune": "HELFRANTZKIRCH" + "codePostal": "41700", + "codeCommune": "41094", + "libelleAcheminement": "FRESNES", + "nomCommune": "FRESNES" }, { - "codePostal": "18270", - "codeCommune": "18203", - "libelleAcheminement": "ST CHRISTOPHE LE CHAUDRY", - "nomCommune": "ST CHRISTOPHE LE CHAUDRY" + "codePostal": "43260", + "codeCommune": "43194", + "libelleAcheminement": "ST HOSTIEN", + "nomCommune": "ST HOSTIEN" }, { - "codePostal": "33220", - "codeCommune": "33462", - "libelleAcheminement": "ST PHILIPPE DU SEIGNAL", - "nomCommune": "ST PHILIPPE DU SEIGNAL" + "codePostal": "55130", + "codeCommune": "55150", + "libelleAcheminement": "DEMANGE BAUDIGNECOURT", + "nomCommune": "DEMANGE BAUDIGNECOURT" }, { - "codePostal": "48110", - "codeCommune": "48115", - "libelleAcheminement": "LE POMPIDOU", - "nomCommune": "LE POMPIDOU" + "codePostal": "54260", + "codeCommune": "54590", + "libelleAcheminement": "VIVIERS SUR CHIERS", + "nomCommune": "VIVIERS SUR CHIERS" }, { - "codePostal": "68320", - "codeCommune": "68143", - "libelleAcheminement": "PORTE DU RIED", - "nomCommune": "PORTE DU RIED" + "codePostal": "41270", + "codeCommune": "41096", + "libelleAcheminement": "LE GAULT DU PERCHE", + "nomCommune": "LE GAULT DU PERCHE" }, { - "codePostal": "18110", - "codeCommune": "18211", - "libelleAcheminement": "ST GEORGES SUR MOULON", - "nomCommune": "ST GEORGES SUR MOULON" + "codePostal": "43380", + "codeCommune": "43195", + "libelleAcheminement": "ST ILPIZE", + "nomCommune": "ST ILPIZE" }, { - "codePostal": "33650", - "codeCommune": "33474", - "libelleAcheminement": "ST SELVE", - "nomCommune": "ST SELVE" + "codePostal": "55150", + "codeCommune": "55156", + "libelleAcheminement": "DOMBRAS", + "nomCommune": "DOMBRAS" }, { - "codePostal": "48800", - "codeCommune": "48117", - "libelleAcheminement": "POURCHARESSES", - "nomCommune": "POURCHARESSES" + "codePostal": "54330", + "codeCommune": "54592", + "libelleAcheminement": "VRONCOURT", + "nomCommune": "VRONCOURT" }, { - "codePostal": "68470", - "codeCommune": "68151", - "libelleAcheminement": "HUSSEREN WESSERLING", - "nomCommune": "HUSSEREN WESSERLING" + "codePostal": "41350", + "codeCommune": "41104", + "libelleAcheminement": "HUISSEAU SUR COSSON", + "nomCommune": "HUISSEAU SUR COSSON" }, { - "codePostal": "18160", - "codeCommune": "18216", - "libelleAcheminement": "ST HILAIRE EN LIGNIERES", - "nomCommune": "ST HILAIRE EN LIGNIERES" + "codePostal": "43200", + "codeCommune": "43199", + "libelleAcheminement": "ST JEURES", + "nomCommune": "ST JEURES" }, { - "codePostal": "33180", - "codeCommune": "33476", - "libelleAcheminement": "ST SEURIN DE CADOURNE", - "nomCommune": "ST SEURIN DE CADOURNE" + "codePostal": "55300", + "codeCommune": "55160", + "libelleAcheminement": "DOMPIERRE AUX BOIS", + "nomCommune": "DOMPIERRE AUX BOIS" }, { - "codePostal": "48700", - "codeCommune": "48127", - "libelleAcheminement": "MONTS DE RANDON", - "nomCommune": "MONTS DE RANDON" + "codePostal": "54890", + "codeCommune": "54593", + "libelleAcheminement": "WAVILLE", + "nomCommune": "WAVILLE" }, { - "codePostal": "68970", - "codeCommune": "68153", - "libelleAcheminement": "ILLHAEUSERN", - "nomCommune": "ILLHAEUSERN" + "codePostal": "41370", + "codeCommune": "41105", + "libelleAcheminement": "JOSNES", + "nomCommune": "JOSNES" }, { - "codePostal": "18340", - "codeCommune": "18218", - "libelleAcheminement": "ST JUST", - "nomCommune": "ST JUST" + "codePostal": "43300", + "codeCommune": "43202", + "libelleAcheminement": "ST JULIEN DES CHAZES", + "nomCommune": "ST JULIEN DES CHAZES" }, { - "codePostal": "33330", - "codeCommune": "33480", - "libelleAcheminement": "ST SULPICE DE FALEYRENS", - "nomCommune": "ST SULPICE DE FALEYRENS" + "codePostal": "55110", + "codeCommune": "55165", + "libelleAcheminement": "DOULCON", + "nomCommune": "DOULCON" }, { - "codePostal": "48200", - "codeCommune": "48128", - "libelleAcheminement": "RIMEIZE", - "nomCommune": "RIMEIZE" + "codePostal": "54490", + "codeCommune": "54598", + "libelleAcheminement": "XIVRY CIRCOURT", + "nomCommune": "XIVRY CIRCOURT" }, { - "codePostal": "68110", - "codeCommune": "68154", - "libelleAcheminement": "ILLZACH", - "nomCommune": "ILLZACH" + "codePostal": "41600", + "codeCommune": "41106", + "libelleAcheminement": "LAMOTTE BEUVRON", + "nomCommune": "LAMOTTE BEUVRON" }, { - "codePostal": "18110", - "codeCommune": "18223", - "libelleAcheminement": "ST MARTIN D AUXIGNY", - "nomCommune": "ST MARTIN D AUXIGNY" + "codePostal": "43200", + "codeCommune": "43203", + "libelleAcheminement": "ST JULIEN DU PINET", + "nomCommune": "ST JULIEN DU PINET" }, { - "codePostal": "33350", - "codeCommune": "33485", - "libelleAcheminement": "STE TERRE", - "nomCommune": "STE TERRE" + "codePostal": "55230", + "codeCommune": "55168", + "libelleAcheminement": "DUZEY", + "nomCommune": "DUZEY" }, { - "codePostal": "48300", - "codeCommune": "48129", - "libelleAcheminement": "ROCLES", - "nomCommune": "ROCLES" + "codePostal": "55320", + "codeCommune": "55009", + "libelleAcheminement": "ANCEMONT", + "nomCommune": "ANCEMONT" }, { - "codePostal": "68260", - "codeCommune": "68166", - "libelleAcheminement": "KINGERSHEIM", - "nomCommune": "KINGERSHEIM" + "codePostal": "41160", + "codeCommune": "41115", + "libelleAcheminement": "LIGNIERES", + "nomCommune": "LIGNIERES" }, { - "codePostal": "18390", - "codeCommune": "18226", - "libelleAcheminement": "ST MICHEL DE VOLANGIS", - "nomCommune": "ST MICHEL DE VOLANGIS" + "codePostal": "43220", + "codeCommune": "43204", + "libelleAcheminement": "ST JULIEN MOLHESABATE", + "nomCommune": "ST JULIEN MOLHESABATE" }, { - "codePostal": "33770", - "codeCommune": "33498", - "libelleAcheminement": "SALLES", - "nomCommune": "SALLES" + "codePostal": "55150", + "codeCommune": "55170", + "libelleAcheminement": "ECUREY EN VERDUNOIS", + "nomCommune": "ECUREY EN VERDUNOIS" }, { - "codePostal": "48200", - "codeCommune": "48140", - "libelleAcheminement": "ST CHELY D APCHER", - "nomCommune": "ST CHELY D APCHER" + "codePostal": "55230", + "codeCommune": "55013", + "libelleAcheminement": "ARRANCY SUR CRUSNES", + "nomCommune": "ARRANCY SUR CRUSNES" }, { - "codePostal": "68910", - "codeCommune": "68173", - "libelleAcheminement": "LABAROCHE", - "nomCommune": "LABAROCHE" + "codePostal": "41100", + "codeCommune": "41116", + "libelleAcheminement": "LISLE", + "nomCommune": "LISLE" }, { - "codePostal": "18300", - "codeCommune": "18233", - "libelleAcheminement": "ST SATUR", - "nomCommune": "ST SATUR" + "codePostal": "43100", + "codeCommune": "43206", + "libelleAcheminement": "ST JUST PRES BRIOUDE", + "nomCommune": "ST JUST PRES BRIOUDE" }, { - "codePostal": "33124", - "codeCommune": "33508", - "libelleAcheminement": "SAVIGNAC", - "nomCommune": "SAVIGNAC" + "codePostal": "55400", + "codeCommune": "55171", + "libelleAcheminement": "EIX", + "nomCommune": "EIX" }, { - "codePostal": "48210", - "codeCommune": "48146", - "libelleAcheminement": "GORGES DU TARN CAUSSES", - "nomCommune": "GORGES DU TARN CAUSSES" + "codePostal": "55120", + "codeCommune": "55014", + "libelleAcheminement": "AUBREVILLE", + "nomCommune": "AUBREVILLE" }, { - "codePostal": "68660", - "codeCommune": "68185", - "libelleAcheminement": "LIEPVRE", - "nomCommune": "LIEPVRE" + "codePostal": "41200", + "codeCommune": "41118", + "libelleAcheminement": "LOREUX", + "nomCommune": "LOREUX" }, { - "codePostal": "18220", - "codeCommune": "18235", - "libelleAcheminement": "STE SOLANGE", - "nomCommune": "STE SOLANGE" + "codePostal": "43230", + "codeCommune": "43208", + "libelleAcheminement": "STE MARGUERITE", + "nomCommune": "STE MARGUERITE" }, { - "codePostal": "33320", - "codeCommune": "33519", - "libelleAcheminement": "LE TAILLAN MEDOC", - "nomCommune": "LE TAILLAN MEDOC" + "codePostal": "55500", + "codeCommune": "55179", + "libelleAcheminement": "ERNEVILLE AUX BOIS", + "nomCommune": "ERNEVILLE AUX BOIS" }, { - "codePostal": "48210", - "codeCommune": "48146", - "libelleAcheminement": "GORGES DU TARN CAUSSES", - "nomCommune": "GORGES DU TARN CAUSSES" + "codePostal": "55170", + "codeCommune": "55015", + "libelleAcheminement": "AULNOIS EN PERTHOIS", + "nomCommune": "AULNOIS EN PERTHOIS" }, { - "codePostal": "68480", - "codeCommune": "68190", - "libelleAcheminement": "LUCELLE", - "nomCommune": "LUCELLE" + "codePostal": "41370", + "codeCommune": "41119", + "libelleAcheminement": "LORGES", + "nomCommune": "LORGES" }, { - "codePostal": "18360", - "codeCommune": "18238", - "libelleAcheminement": "ST VITTE", - "nomCommune": "ST VITTE" + "codePostal": "43500", + "codeCommune": "43212", + "libelleAcheminement": "ST PAL DE CHALENCON", + "nomCommune": "ST PAL DE CHALENCON" }, { - "codePostal": "33580", - "codeCommune": "33520", - "libelleAcheminement": "TAILLECAVAT", - "nomCommune": "TAILLECAVAT" + "codePostal": "55500", + "codeCommune": "55179", + "libelleAcheminement": "ERNEVILLE AUX BOIS", + "nomCommune": "ERNEVILLE AUX BOIS" }, { - "codePostal": "48300", - "codeCommune": "48150", - "libelleAcheminement": "ST FLOUR DE MERCOIRE", - "nomCommune": "ST FLOUR DE MERCOIRE" + "codePostal": "55300", + "codeCommune": "55027", + "libelleAcheminement": "BANNONCOURT", + "nomCommune": "BANNONCOURT" }, { - "codePostal": "68210", - "codeCommune": "68200", - "libelleAcheminement": "MANSPACH", - "nomCommune": "MANSPACH" + "codePostal": "41370", + "codeCommune": "41123", + "libelleAcheminement": "MARCHENOIR", + "nomCommune": "MARCHENOIR" }, { - "codePostal": "18140", - "codeCommune": "18240", - "libelleAcheminement": "SANCERGUES", - "nomCommune": "SANCERGUES" + "codePostal": "43350", + "codeCommune": "43216", + "libelleAcheminement": "ST PAULIEN", + "nomCommune": "ST PAULIEN" }, { - "codePostal": "33210", - "codeCommune": "33533", - "libelleAcheminement": "TOULENNE", - "nomCommune": "TOULENNE" + "codePostal": "55200", + "codeCommune": "55184", + "libelleAcheminement": "EUVILLE", + "nomCommune": "EUVILLE" }, { - "codePostal": "48340", - "codeCommune": "48156", - "libelleAcheminement": "ST GERMAIN DU TEIL", - "nomCommune": "ST GERMAIN DU TEIL" + "codePostal": "55000", + "codeCommune": "55041", + "libelleAcheminement": "BEHONNE", + "nomCommune": "BEHONNE" }, { - "codePostal": "68290", - "codeCommune": "68201", - "libelleAcheminement": "MASEVAUX NIEDERBRUCK", - "nomCommune": "MASEVAUX NIEDERBRUCK" + "codePostal": "41210", + "codeCommune": "41125", + "libelleAcheminement": "MARCILLY EN GAULT", + "nomCommune": "MARCILLY EN GAULT" }, { - "codePostal": "18300", - "codeCommune": "18249", - "libelleAcheminement": "SENS BEAUJEU", - "nomCommune": "SENS BEAUJEU" + "codePostal": "43380", + "codeCommune": "43222", + "libelleAcheminement": "ST PRIVAT DU DRAGON", + "nomCommune": "ST PRIVAT DU DRAGON" }, { - "codePostal": "33180", - "codeCommune": "33545", - "libelleAcheminement": "VERTHEUIL", - "nomCommune": "VERTHEUIL" + "codePostal": "55200", + "codeCommune": "55196", + "libelleAcheminement": "FREMEREVILLE SOUS LES COTES", + "nomCommune": "FREMEREVILLE SOUS LES COTES" }, { - "codePostal": "48140", - "codeCommune": "48169", - "libelleAcheminement": "ST LEGER DU MALZIEU", - "nomCommune": "ST LEGER DU MALZIEU" + "codePostal": "55100", + "codeCommune": "55047", + "libelleAcheminement": "BETHELAINVILLE", + "nomCommune": "BETHELAINVILLE" }, { - "codePostal": "68690", - "codeCommune": "68217", - "libelleAcheminement": "MOOSCH", - "nomCommune": "MOOSCH" + "codePostal": "41500", + "codeCommune": "41136", + "libelleAcheminement": "MER", + "nomCommune": "MER" }, { - "codePostal": "18220", - "codeCommune": "18253", - "libelleAcheminement": "SOULANGIS", - "nomCommune": "SOULANGIS" + "codePostal": "43800", + "codeCommune": "43230", + "libelleAcheminement": "ST VINCENT", + "nomCommune": "ST VINCENT" }, { - "codePostal": "34210", - "codeCommune": "34007", - "libelleAcheminement": "AIGUES VIVES", - "nomCommune": "AIGUES VIVES" + "codePostal": "55120", + "codeCommune": "55202", + "libelleAcheminement": "FUTEAU", + "nomCommune": "FUTEAU" }, { - "codePostal": "48110", - "codeCommune": "48171", - "libelleAcheminement": "ST MARTIN DE LANSUSCLE", - "nomCommune": "ST MARTIN DE LANSUSCLE" + "codePostal": "55290", + "codeCommune": "55051", + "libelleAcheminement": "BIENCOURT SUR ORGE", + "nomCommune": "BIENCOURT SUR ORGE" }, { - "codePostal": "68780", - "codeCommune": "68219", - "libelleAcheminement": "LE HAUT SOULTZBACH", - "nomCommune": "LE HAUT SOULTZBACH" + "codePostal": "41200", + "codeCommune": "41140", + "libelleAcheminement": "MILLANCAY", + "nomCommune": "MILLANCAY" }, { - "codePostal": "18570", - "codeCommune": "18255", - "libelleAcheminement": "LE SUBDRAY", - "nomCommune": "LE SUBDRAY" + "codePostal": "43300", + "codeCommune": "43242", + "libelleAcheminement": "TAILHAC", + "nomCommune": "TAILHAC" }, { - "codePostal": "34600", - "codeCommune": "34008", - "libelleAcheminement": "LES AIRES", - "nomCommune": "LES AIRES" + "codePostal": "55110", + "codeCommune": "55208", + "libelleAcheminement": "GESNES EN ARGONNE", + "nomCommune": "GESNES EN ARGONNE" }, { - "codePostal": "48160", - "codeCommune": "48173", - "libelleAcheminement": "ST MICHEL DE DEZE", - "nomCommune": "ST MICHEL DE DEZE" + "codePostal": "55500", + "codeCommune": "55061", + "libelleAcheminement": "LE BOUCHON SUR SAULX", + "nomCommune": "LE BOUCHON SUR SAULX" }, { - "codePostal": "68640", - "codeCommune": "68221", - "libelleAcheminement": "MUESPACH", - "nomCommune": "MUESPACH" + "codePostal": "41190", + "codeCommune": "41142", + "libelleAcheminement": "VALENCISSE", + "nomCommune": "VALENCISSE" }, { - "codePostal": "18240", - "codeCommune": "18257", - "libelleAcheminement": "SURY PRES LERE", - "nomCommune": "SURY PRES LERE" + "codePostal": "43210", + "codeCommune": "43249", + "libelleAcheminement": "VALPRIVAS", + "nomCommune": "VALPRIVAS" }, { - "codePostal": "34150", - "codeCommune": "34010", - "libelleAcheminement": "ANIANE", - "nomCommune": "ANIANE" + "codePostal": "55500", + "codeCommune": "55214", + "libelleAcheminement": "GIVRAUVAL", + "nomCommune": "GIVRAUVAL" }, { - "codePostal": "48150", - "codeCommune": "48176", - "libelleAcheminement": "ST PIERRE DES TRIPIERS", - "nomCommune": "ST PIERRE DES TRIPIERS" + "codePostal": "55800", + "codeCommune": "55069", + "libelleAcheminement": "BRABANT LE ROI", + "nomCommune": "BRABANT LE ROI" }, { - "codePostal": "68200", - "codeCommune": "68224", - "libelleAcheminement": "MULHOUSE", - "nomCommune": "MULHOUSE" + "codePostal": "41150", + "codeCommune": "41144", + "libelleAcheminement": "MONTEAUX", + "nomCommune": "MONTEAUX" }, { - "codePostal": "18260", - "codeCommune": "18264", - "libelleAcheminement": "THOU", - "nomCommune": "THOU" + "codePostal": "43320", + "codeCommune": "43254", + "libelleAcheminement": "VAZEILLES LIMANDRE", + "nomCommune": "VAZEILLES LIMANDRE" }, { - "codePostal": "34150", - "codeCommune": "34011", - "libelleAcheminement": "ARBORAS", - "nomCommune": "ARBORAS" + "codePostal": "55600", + "codeCommune": "55226", + "libelleAcheminement": "HAN LES JUVIGNY", + "nomCommune": "HAN LES JUVIGNY" }, { - "codePostal": "48200", - "codeCommune": "48177", - "libelleAcheminement": "ST PIERRE LE VIEUX", - "nomCommune": "ST PIERRE LE VIEUX" + "codePostal": "55170", + "codeCommune": "55075", + "libelleAcheminement": "BRAUVILLIERS", + "nomCommune": "BRAUVILLIERS" }, { - "codePostal": "68140", - "codeCommune": "68226", - "libelleAcheminement": "MUNSTER", - "nomCommune": "MUNSTER" + "codePostal": "41120", + "codeCommune": "41145", + "libelleAcheminement": "MONTHOU SUR BIEVRE", + "nomCommune": "MONTHOU SUR BIEVRE" }, { - "codePostal": "18260", - "codeCommune": "18269", - "libelleAcheminement": "VAILLY SUR SAULDRE", - "nomCommune": "VAILLY SUR SAULDRE" + "codePostal": "43380", + "codeCommune": "43264", + "libelleAcheminement": "VILLENEUVE D ALLIER", + "nomCommune": "VILLENEUVE D ALLIER" }, { - "codePostal": "34820", - "codeCommune": "34014", - "libelleAcheminement": "ASSAS", - "nomCommune": "ASSAS" + "codePostal": "55100", + "codeCommune": "55236", + "libelleAcheminement": "HAUDAINVILLE", + "nomCommune": "HAUDAINVILLE" }, { - "codePostal": "48140", - "codeCommune": "48179", - "libelleAcheminement": "ST PRIVAT DU FAU", - "nomCommune": "ST PRIVAT DU FAU" + "codePostal": "55110", + "codeCommune": "55078", + "libelleAcheminement": "BRIEULLES SUR MEUSE", + "nomCommune": "BRIEULLES SUR MEUSE" }, { - "codePostal": "68600", - "codeCommune": "68231", - "libelleAcheminement": "NEUF BRISACH", - "nomCommune": "NEUF BRISACH" + "codePostal": "41400", + "codeCommune": "41151", + "libelleAcheminement": "MONTRICHARD VAL DE CHER", + "nomCommune": "MONTRICHARD VAL DE CHER" }, { - "codePostal": "18100", - "codeCommune": "18279", - "libelleAcheminement": "VIERZON", - "nomCommune": "VIERZON" + "codePostal": "43200", + "codeCommune": "43268", + "libelleAcheminement": "YSSINGEAUX", + "nomCommune": "YSSINGEAUX" }, { - "codePostal": "34360", - "codeCommune": "34015", - "libelleAcheminement": "ASSIGNAN", - "nomCommune": "ASSIGNAN" + "codePostal": "55100", + "codeCommune": "55239", + "libelleAcheminement": "HAUMONT PRES SAMOGNEUX", + "nomCommune": "HAUMONT PRES SAMOGNEUX" }, { - "codePostal": "48100", - "codeCommune": "48187", - "libelleAcheminement": "LES SALCES", - "nomCommune": "LES SALCES" + "codePostal": "55250", + "codeCommune": "55081", + "libelleAcheminement": "BRIZEAUX", + "nomCommune": "BRIZEAUX" }, { - "codePostal": "68127", - "codeCommune": "68234", - "libelleAcheminement": "NIEDERENTZEN", - "nomCommune": "NIEDERENTZEN" + "codePostal": "41800", + "codeCommune": "41153", + "libelleAcheminement": "MONTROUVEAU", + "nomCommune": "MONTROUVEAU" }, { - "codePostal": "18130", - "codeCommune": "18289", - "libelleAcheminement": "VORNAY", - "nomCommune": "VORNAY" + "codePostal": "44140", + "codeCommune": "44002", + "libelleAcheminement": "AIGREFEUILLE SUR MAINE", + "nomCommune": "AIGREFEUILLE SUR MAINE" }, { - "codePostal": "34670", - "codeCommune": "34022", - "libelleAcheminement": "BAILLARGUES", - "nomCommune": "BAILLARGUES" + "codePostal": "55220", + "codeCommune": "55241", + "libelleAcheminement": "HEIPPES", + "nomCommune": "HEIPPES" }, { - "codePostal": "48220", - "codeCommune": "48194", - "libelleAcheminement": "VIALAS", - "nomCommune": "VIALAS" + "codePostal": "55700", + "codeCommune": "55083", + "libelleAcheminement": "BROUENNES", + "nomCommune": "BROUENNES" }, { - "codePostal": "68960", - "codeCommune": "68240", - "libelleAcheminement": "ILLTAL", - "nomCommune": "ILLTAL" + "codePostal": "41500", + "codeCommune": "41155", + "libelleAcheminement": "MUIDES SUR LOIRE", + "nomCommune": "MUIDES SUR LOIRE" }, { - "codePostal": "19220", - "codeCommune": "19014", - "libelleAcheminement": "AURIAC", - "nomCommune": "AURIAC" + "codePostal": "44680", + "codeCommune": "44005", + "libelleAcheminement": "CHAUMES EN RETZ", + "nomCommune": "CHAUMES EN RETZ" }, { - "codePostal": "34150", - "codeCommune": "34035", - "libelleAcheminement": "LA BOISSIERE", - "nomCommune": "LA BOISSIERE" + "codePostal": "55210", + "codeCommune": "55245", + "libelleAcheminement": "HEUDICOURT SOUS LES COTES", + "nomCommune": "HEUDICOURT SOUS LES COTES" }, { - "codePostal": "49100", - "codeCommune": "49007", - "libelleAcheminement": "ANGERS", - "nomCommune": "ANGERS" + "codePostal": "55400", + "codeCommune": "55094", + "libelleAcheminement": "BUZY DARMONT", + "nomCommune": "BUZY DARMONT" }, { - "codePostal": "68480", - "codeCommune": "68248", - "libelleAcheminement": "OLTINGUE", - "nomCommune": "OLTINGUE" + "codePostal": "41250", + "codeCommune": "41160", + "libelleAcheminement": "NEUVY", + "nomCommune": "NEUVY" }, { - "codePostal": "19310", - "codeCommune": "19015", - "libelleAcheminement": "AYEN", - "nomCommune": "AYEN" + "codePostal": "44410", + "codeCommune": "44006", + "libelleAcheminement": "ASSERAC", + "nomCommune": "ASSERAC" }, { - "codePostal": "34650", - "codeCommune": "34040", - "libelleAcheminement": "BRENAS", - "nomCommune": "BRENAS" + "codePostal": "55600", + "codeCommune": "55252", + "libelleAcheminement": "IRE LE SEC", + "nomCommune": "IRE LE SEC" }, { - "codePostal": "49420", - "codeCommune": "49010", - "libelleAcheminement": "ARMAILLE", - "nomCommune": "ARMAILLE" + "codePostal": "55000", + "codeCommune": "55101", + "libelleAcheminement": "CHARDOGNE", + "nomCommune": "CHARDOGNE" }, { - "codePostal": "68490", - "codeCommune": "68253", - "libelleAcheminement": "OTTMARSHEIM", - "nomCommune": "OTTMARSHEIM" + "codePostal": "41150", + "codeCommune": "41167", + "libelleAcheminement": "VEUZAIN SUR LOIRE", + "nomCommune": "VEUZAIN SUR LOIRE" }, { - "codePostal": "19290", - "codeCommune": "19021", - "libelleAcheminement": "BELLECHASSAGNE", - "nomCommune": "BELLECHASSAGNE" + "codePostal": "44580", + "codeCommune": "44021", + "libelleAcheminement": "VILLENEUVE EN RETZ", + "nomCommune": "VILLENEUVE EN RETZ" }, { - "codePostal": "34480", - "codeCommune": "34044", - "libelleAcheminement": "CABREROLLES", - "nomCommune": "CABREROLLES" + "codePostal": "55220", + "codeCommune": "55254", + "libelleAcheminement": "LES TROIS DOMAINES", + "nomCommune": "LES TROIS DOMAINES" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "55130", + "codeCommune": "55104", + "libelleAcheminement": "CHASSEY BEAUPRE", + "nomCommune": "CHASSEY BEAUPRE" }, { - "codePostal": "68120", - "codeCommune": "68256", - "libelleAcheminement": "PFASTATT", - "nomCommune": "PFASTATT" + "codePostal": "41300", + "codeCommune": "41168", + "libelleAcheminement": "ORCAY", + "nomCommune": "ORCAY" }, { - "codePostal": "19500", - "codeCommune": "19029", - "libelleAcheminement": "BRANCEILLES", - "nomCommune": "BRANCEILLES" + "codePostal": "44830", + "codeCommune": "44024", + "libelleAcheminement": "BRAINS", + "nomCommune": "BRAINS" }, { - "codePostal": "34800", - "codeCommune": "34045", - "libelleAcheminement": "CABRIERES", - "nomCommune": "CABRIERES" + "codePostal": "55200", + "codeCommune": "55258", + "libelleAcheminement": "GEVILLE", + "nomCommune": "GEVILLE" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "55400", + "codeCommune": "55105", + "libelleAcheminement": "CHATILLON SOUS LES COTES", + "nomCommune": "CHATILLON SOUS LES COTES" }, { - "codePostal": "68840", - "codeCommune": "68258", - "libelleAcheminement": "PULVERSHEIM", - "nomCommune": "PULVERSHEIM" + "codePostal": "41290", + "codeCommune": "41171", + "libelleAcheminement": "OUCQUES LA NOUVELLE", + "nomCommune": "OUCQUES LA NOUVELLE" }, { - "codePostal": "19350", - "codeCommune": "19035", - "libelleAcheminement": "CHABRIGNAC", - "nomCommune": "CHABRIGNAC" + "codePostal": "44670", + "codeCommune": "44031", + "libelleAcheminement": "LA CHAPELLE GLAIN", + "nomCommune": "LA CHAPELLE GLAIN" }, { - "codePostal": "34270", - "codeCommune": "34066", - "libelleAcheminement": "CAZEVIEILLE", - "nomCommune": "CAZEVIEILLE" + "codePostal": "55300", + "codeCommune": "55264", + "libelleAcheminement": "KOEUR LA PETITE", + "nomCommune": "KOEUR LA PETITE" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "55600", + "codeCommune": "55109", + "libelleAcheminement": "CHAUVENCY LE CHATEAU", + "nomCommune": "CHAUVENCY LE CHATEAU" }, { - "codePostal": "68190", - "codeCommune": "68260", - "libelleAcheminement": "RAEDERSHEIM", - "nomCommune": "RAEDERSHEIM" + "codePostal": "41100", + "codeCommune": "41174", + "libelleAcheminement": "PERIGNY", + "nomCommune": "PERIGNY" }, { - "codePostal": "19370", - "codeCommune": "19036", - "libelleAcheminement": "CHAMBERET", - "nomCommune": "CHAMBERET" + "codePostal": "44160", + "codeCommune": "44050", + "libelleAcheminement": "CROSSAC", + "nomCommune": "CROSSAC" + }, + { + "codePostal": "55300", + "codeCommune": "55268", + "libelleAcheminement": "LACROIX SUR MEUSE", + "nomCommune": "LACROIX SUR MEUSE" }, { - "codePostal": "34360", - "codeCommune": "34070", - "libelleAcheminement": "CEBAZAN", - "nomCommune": "CEBAZAN" + "codePostal": "55600", + "codeCommune": "55110", + "libelleAcheminement": "CHAUVENCY ST HUBERT", + "nomCommune": "CHAUVENCY ST HUBERT" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "41290", + "codeCommune": "41188", + "libelleAcheminement": "RHODON", + "nomCommune": "RHODON" }, { - "codePostal": "68400", - "codeCommune": "68271", - "libelleAcheminement": "RIEDISHEIM", - "nomCommune": "RIEDISHEIM" + "codePostal": "44110", + "codeCommune": "44054", + "libelleAcheminement": "ERBRAY", + "nomCommune": "ERBRAY" }, { - "codePostal": "19320", - "codeCommune": "19039", - "libelleAcheminement": "CHAMPAGNAC LA NOAILLE", - "nomCommune": "CHAMPAGNAC LA NOAILLE" + "codePostal": "55800", + "codeCommune": "55271", + "libelleAcheminement": "LAHEYCOURT", + "nomCommune": "LAHEYCOURT" }, { - "codePostal": "34260", - "codeCommune": "34071", - "libelleAcheminement": "CEILHES ET ROCOZELS", - "nomCommune": "CEILHES ET ROCOZELS" + "codePostal": "55200", + "codeCommune": "55114", + "libelleAcheminement": "CHONVILLE MALAUMONT", + "nomCommune": "CHONVILLE MALAUMONT" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "41270", + "codeCommune": "41193", + "libelleAcheminement": "ROMILLY", + "nomCommune": "ROMILLY" }, { - "codePostal": "68500", - "codeCommune": "68274", - "libelleAcheminement": "RIMBACH PRES GUEBWILLER", - "nomCommune": "RIMBACH PRES GUEBWILLER" + "codePostal": "44460", + "codeCommune": "44057", + "libelleAcheminement": "FEGREAC", + "nomCommune": "FEGREAC" }, { - "codePostal": "19150", - "codeCommune": "19041", - "libelleAcheminement": "CHANAC LES MINES", - "nomCommune": "CHANAC LES MINES" + "codePostal": "55300", + "codeCommune": "55274", + "libelleAcheminement": "LAMORVILLE", + "nomCommune": "LAMORVILLE" }, { - "codePostal": "34700", - "codeCommune": "34072", - "libelleAcheminement": "CELLES", - "nomCommune": "CELLES" + "codePostal": "55120", + "codeCommune": "55117", + "libelleAcheminement": "CLERMONT EN ARGONNE", + "nomCommune": "CLERMONT EN ARGONNE" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "41200", + "codeCommune": "41194", + "libelleAcheminement": "ROMORANTIN LANTHENAY", + "nomCommune": "ROMORANTIN LANTHENAY" }, { - "codePostal": "68740", - "codeCommune": "68281", - "libelleAcheminement": "ROGGENHOUSE", - "nomCommune": "ROGGENHOUSE" + "codePostal": "44190", + "codeCommune": "44063", + "libelleAcheminement": "GETIGNE", + "nomCommune": "GETIGNE" }, { - "codePostal": "19360", - "codeCommune": "19043", - "libelleAcheminement": "LA CHAPELLE AUX BROCS", - "nomCommune": "LA CHAPELLE AUX BROCS" + "codePostal": "55700", + "codeCommune": "55279", + "libelleAcheminement": "LANEUVILLE SUR MEUSE", + "nomCommune": "LANEUVILLE SUR MEUSE" }, { - "codePostal": "34210", - "codeCommune": "34075", - "libelleAcheminement": "CESSERAS", - "nomCommune": "CESSERAS" + "codePostal": "55110", + "codeCommune": "55118", + "libelleAcheminement": "CLERY LE GRAND", + "nomCommune": "CLERY LE GRAND" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "41100", + "codeCommune": "41209", + "libelleAcheminement": "ST FIRMIN DES PRES", + "nomCommune": "ST FIRMIN DES PRES" }, { - "codePostal": "68480", - "codeCommune": "68284", - "libelleAcheminement": "ROPPENTZWILLER", - "nomCommune": "ROPPENTZWILLER" + "codePostal": "44520", + "codeCommune": "44065", + "libelleAcheminement": "GRAND AUVERNE", + "nomCommune": "GRAND AUVERNE" }, { - "codePostal": "19430", - "codeCommune": "19045", - "libelleAcheminement": "LA CHAPELLE ST GERAUD", - "nomCommune": "LA CHAPELLE ST GERAUD" + "codePostal": "55400", + "codeCommune": "55280", + "libelleAcheminement": "LANHERES", + "nomCommune": "LANHERES" }, { - "codePostal": "34220", - "codeCommune": "34086", - "libelleAcheminement": "COURNIOU", - "nomCommune": "COURNIOU" + "codePostal": "55000", + "codeCommune": "55123", + "libelleAcheminement": "LES HAUTS DE CHEE", + "nomCommune": "LES HAUTS DE CHEE" }, { - "codePostal": "49070", - "codeCommune": "49020", - "libelleAcheminement": "BEAUCOUZE", - "nomCommune": "BEAUCOUZE" + "codePostal": "41320", + "codeCommune": "41222", + "libelleAcheminement": "ST LOUP", + "nomCommune": "ST LOUP" }, { - "codePostal": "68740", - "codeCommune": "68290", - "libelleAcheminement": "RUSTENHART", - "nomCommune": "RUSTENHART" + "codePostal": "44530", + "codeCommune": "44068", + "libelleAcheminement": "GUENROUET", + "nomCommune": "GUENROUET" }, { - "codePostal": "19390", - "codeCommune": "19051", - "libelleAcheminement": "CHAUMEIL", - "nomCommune": "CHAUMEIL" + "codePostal": "55120", + "codeCommune": "55285", + "libelleAcheminement": "LAVOYE", + "nomCommune": "LAVOYE" }, { - "codePostal": "34660", - "codeCommune": "34088", - "libelleAcheminement": "COURNONTERRAL", - "nomCommune": "COURNONTERRAL" + "codePostal": "55260", + "codeCommune": "55128", + "libelleAcheminement": "COURCELLES SUR AIRE", + "nomCommune": "COURCELLES SUR AIRE" }, { - "codePostal": "49250", - "codeCommune": "49021", - "libelleAcheminement": "BEAUFORT EN ANJOU", - "nomCommune": "BEAUFORT EN ANJOU" + "codePostal": "41800", + "codeCommune": "41225", + "libelleAcheminement": "ST MARTIN DES BOIS", + "nomCommune": "ST MARTIN DES BOIS" }, { - "codePostal": "68127", - "codeCommune": "68295", - "libelleAcheminement": "STE CROIX EN PLAINE", - "nomCommune": "STE CROIX EN PLAINE" + "codePostal": "44350", + "codeCommune": "44069", + "libelleAcheminement": "GUERANDE", + "nomCommune": "GUERANDE" }, { - "codePostal": "19320", - "codeCommune": "19056", - "libelleAcheminement": "CLERGOUX", - "nomCommune": "CLERGOUX" + "codePostal": "55260", + "codeCommune": "55289", + "libelleAcheminement": "LEVONCOURT", + "nomCommune": "LEVONCOURT" }, { - "codePostal": "34920", - "codeCommune": "34090", - "libelleAcheminement": "LE CRES", - "nomCommune": "LE CRES" + "codePostal": "55270", + "codeCommune": "55137", + "libelleAcheminement": "CUISY", + "nomCommune": "CUISY" }, { - "codePostal": "49110", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "41100", + "codeCommune": "41226", + "libelleAcheminement": "ST OUEN", + "nomCommune": "ST OUEN" }, { - "codePostal": "68210", - "codeCommune": "68299", - "libelleAcheminement": "ST ULRICH", - "nomCommune": "ST ULRICH" + "codePostal": "44350", + "codeCommune": "44069", + "libelleAcheminement": "GUERANDE", + "nomCommune": "GUERANDE" }, { - "codePostal": "19140", - "codeCommune": "19060", - "libelleAcheminement": "CONDAT SUR GANAVEIX", - "nomCommune": "CONDAT SUR GANAVEIX" + "codePostal": "55500", + "codeCommune": "55291", + "libelleAcheminement": "LIGNY EN BARROIS", + "nomCommune": "LIGNY EN BARROIS" }, { - "codePostal": "34210", - "codeCommune": "34097", - "libelleAcheminement": "FELINES MINERVOIS", - "nomCommune": "FELINES MINERVOIS" + "codePostal": "55150", + "codeCommune": "55149", + "libelleAcheminement": "DELUT", + "nomCommune": "DELUT" }, { - "codePostal": "49510", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "41800", + "codeCommune": "41228", + "libelleAcheminement": "ST RIMAY", + "nomCommune": "ST RIMAY" }, { - "codePostal": "68440", - "codeCommune": "68301", - "libelleAcheminement": "SCHLIERBACH", - "nomCommune": "SCHLIERBACH" + "codePostal": "44610", + "codeCommune": "44074", + "libelleAcheminement": "INDRE", + "nomCommune": "INDRE" }, { - "codePostal": "19270", - "codeCommune": "19072", - "libelleAcheminement": "DONZENAC", - "nomCommune": "DONZENAC" + "codePostal": "55000", + "codeCommune": "55296", + "libelleAcheminement": "L ISLE EN RIGAULT", + "nomCommune": "L ISLE EN RIGAULT" }, { - "codePostal": "34270", - "codeCommune": "34102", - "libelleAcheminement": "FONTANES", - "nomCommune": "FONTANES" + "codePostal": "55320", + "codeCommune": "55154", + "libelleAcheminement": "DIEUE SUR MEUSE", + "nomCommune": "DIEUE SUR MEUSE" }, { - "codePostal": "49510", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "41140", + "codeCommune": "41229", + "libelleAcheminement": "ST ROMAIN SUR CHER", + "nomCommune": "ST ROMAIN SUR CHER" }, { - "codePostal": "68780", - "codeCommune": "68313", - "libelleAcheminement": "SOPPE LE BAS", - "nomCommune": "SOPPE LE BAS" + "codePostal": "44440", + "codeCommune": "44077", + "libelleAcheminement": "JOUE SUR ERDRE", + "nomCommune": "JOUE SUR ERDRE" }, { - "codePostal": "19600", - "codeCommune": "19077", - "libelleAcheminement": "ESTIVALS", - "nomCommune": "ESTIVALS" + "codePostal": "55150", + "codeCommune": "55297", + "libelleAcheminement": "LISSEY", + "nomCommune": "LISSEY" }, { - "codePostal": "34320", - "codeCommune": "34103", - "libelleAcheminement": "FONTES", - "nomCommune": "FONTES" + "codePostal": "55240", + "codeCommune": "55162", + "libelleAcheminement": "DOMREMY LA CANNE", + "nomCommune": "DOMREMY LA CANNE" }, { - "codePostal": "49370", - "codeCommune": "49026", - "libelleAcheminement": "BECON LES GRANITS", - "nomCommune": "BECON LES GRANITS" + "codePostal": "41210", + "codeCommune": "41231", + "libelleAcheminement": "ST VIATRE", + "nomCommune": "ST VIATRE" }, { - "codePostal": "68720", - "codeCommune": "68320", - "libelleAcheminement": "SPECHBACH", - "nomCommune": "SPECHBACH" + "codePostal": "44850", + "codeCommune": "44082", + "libelleAcheminement": "LIGNE", + "nomCommune": "LIGNE" }, { - "codePostal": "19140", - "codeCommune": "19079", - "libelleAcheminement": "EYBURIE", - "nomCommune": "EYBURIE" + "codePostal": "55300", + "codeCommune": "55303", + "libelleAcheminement": "LOUPMONT", + "nomCommune": "LOUPMONT" }, { - "codePostal": "34320", - "codeCommune": "34104", - "libelleAcheminement": "FOS", - "nomCommune": "FOS" + "codePostal": "55100", + "codeCommune": "55166", + "libelleAcheminement": "DUGNY SUR MEUSE", + "nomCommune": "DUGNY SUR MEUSE" }, { - "codePostal": "49320", - "codeCommune": "49029", - "libelleAcheminement": "BLAISON ST SULPICE", - "nomCommune": "BLAISON ST SULPICE" + "codePostal": "41300", + "codeCommune": "41232", + "libelleAcheminement": "SALBRIS", + "nomCommune": "SALBRIS" }, { - "codePostal": "68440", - "codeCommune": "68324", - "libelleAcheminement": "STEINBRUNN LE HAUT", - "nomCommune": "STEINBRUNN LE HAUT" + "codePostal": "44310", + "codeCommune": "44083", + "libelleAcheminement": "LA LIMOUZINIERE", + "nomCommune": "LA LIMOUZINIERE" }, { - "codePostal": "19330", - "codeCommune": "19082", - "libelleAcheminement": "FAVARS", - "nomCommune": "FAVARS" + "codePostal": "55160", + "codeCommune": "55311", + "libelleAcheminement": "MAIZERAY", + "nomCommune": "MAIZERAY" }, { - "codePostal": "34320", - "codeCommune": "34109", - "libelleAcheminement": "GABIAN", - "nomCommune": "GABIAN" + "codePostal": "55140", + "codeCommune": "55173", + "libelleAcheminement": "EPIEZ SUR MEUSE", + "nomCommune": "EPIEZ SUR MEUSE" }, { - "codePostal": "49390", - "codeCommune": "49045", - "libelleAcheminement": "LA BREILLE LES PINS", - "nomCommune": "LA BREILLE LES PINS" + "codePostal": "41190", + "codeCommune": "41234", + "libelleAcheminement": "SANTENAY", + "nomCommune": "SANTENAY" }, { - "codePostal": "25620", - "codeCommune": "25628", - "libelleAcheminement": "VILLERS SOUS MONTROND", - "nomCommune": "VILLERS SOUS MONTROND" + "codePostal": "44110", + "codeCommune": "44085", + "libelleAcheminement": "LOUISFERT", + "nomCommune": "LOUISFERT" }, { - "codePostal": "19320", - "codeCommune": "19097", - "libelleAcheminement": "LAFAGE SUR SOMBRE", - "nomCommune": "LAFAGE SUR SOMBRE" + "codePostal": "55300", + "codeCommune": "55312", + "libelleAcheminement": "MAIZEY", + "nomCommune": "MAIZEY" }, { - "codePostal": "34160", - "codeCommune": "34112", - "libelleAcheminement": "GARRIGUES", - "nomCommune": "GARRIGUES" + "codePostal": "55270", + "codeCommune": "55174", + "libelleAcheminement": "EPINONVILLE", + "nomCommune": "EPINONVILLE" }, { - "codePostal": "49250", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "41170", + "codeCommune": "41235", + "libelleAcheminement": "SARGE SUR BRAYE", + "nomCommune": "SARGE SUR BRAYE" }, { - "codePostal": "26150", - "codeCommune": "26001", - "libelleAcheminement": "SOLAURE EN DIOIS", - "nomCommune": "SOLAURE EN DIOIS" + "codePostal": "44590", + "codeCommune": "44086", + "libelleAcheminement": "LUSANGER", + "nomCommune": "LUSANGER" }, { - "codePostal": "19210", - "codeCommune": "19121", - "libelleAcheminement": "LUBERSAC", - "nomCommune": "LUBERSAC" + "codePostal": "55100", + "codeCommune": "55321", + "libelleAcheminement": "MARRE", + "nomCommune": "MARRE" }, { - "codePostal": "34790", - "codeCommune": "34116", - "libelleAcheminement": "GRABELS", - "nomCommune": "GRABELS" + "codePostal": "55260", + "codeCommune": "55177", + "libelleAcheminement": "ERIZE LA PETITE", + "nomCommune": "ERIZE LA PETITE" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "41700", + "codeCommune": "41237", + "libelleAcheminement": "SASSAY", + "nomCommune": "SASSAY" }, { - "codePostal": "26150", - "codeCommune": "26001", - "libelleAcheminement": "SOLAURE EN DIOIS", - "nomCommune": "SOLAURE EN DIOIS" + "codePostal": "44270", + "codeCommune": "44087", + "libelleAcheminement": "MACHECOUL ST MEME", + "nomCommune": "MACHECOUL ST MEME" }, { - "codePostal": "19190", - "codeCommune": "19132", - "libelleAcheminement": "MENOIRE", - "nomCommune": "MENOIRE" + "codePostal": "55500", + "codeCommune": "55326", + "libelleAcheminement": "MAULAN", + "nomCommune": "MAULAN" }, { - "codePostal": "34820", - "codeCommune": "34118", - "libelleAcheminement": "GUZARGUES", - "nomCommune": "GUZARGUES" + "codePostal": "55000", + "codeCommune": "55178", + "libelleAcheminement": "ERIZE ST DIZIER", + "nomCommune": "ERIZE ST DIZIER" }, { - "codePostal": "49460", - "codeCommune": "49055", - "libelleAcheminement": "CANTENAY EPINARD", - "nomCommune": "CANTENAY EPINARD" + "codePostal": "41360", + "codeCommune": "41238", + "libelleAcheminement": "SAVIGNY SUR BRAYE", + "nomCommune": "SAVIGNY SUR BRAYE" }, { - "codePostal": "26400", - "codeCommune": "26006", - "libelleAcheminement": "ALLEX", - "nomCommune": "ALLEX" + "codePostal": "44170", + "codeCommune": "44091", + "libelleAcheminement": "MARSAC SUR DON", + "nomCommune": "MARSAC SUR DON" }, { - "codePostal": "19430", - "codeCommune": "19133", - "libelleAcheminement": "MERCOEUR", - "nomCommune": "MERCOEUR" + "codePostal": "55300", + "codeCommune": "55329", + "libelleAcheminement": "MECRIN", + "nomCommune": "MECRIN" }, { - "codePostal": "34150", - "codeCommune": "34125", - "libelleAcheminement": "LAGAMAS", - "nomCommune": "LAGAMAS" + "codePostal": "55500", + "codeCommune": "55179", + "libelleAcheminement": "ERNEVILLE AUX BOIS", + "nomCommune": "ERNEVILLE AUX BOIS" }, { - "codePostal": "49420", - "codeCommune": "49056", - "libelleAcheminement": "CARBAY", - "nomCommune": "CARBAY" + "codePostal": "41230", + "codeCommune": "41247", + "libelleAcheminement": "SOINGS EN SOLOGNE", + "nomCommune": "SOINGS EN SOLOGNE" }, { - "codePostal": "26110", - "codeCommune": "26013", - "libelleAcheminement": "ARPAVON", - "nomCommune": "ARPAVON" + "codePostal": "44470", + "codeCommune": "44094", + "libelleAcheminement": "MAUVES SUR LOIRE", + "nomCommune": "MAUVES SUR LOIRE" }, { - "codePostal": "19340", - "codeCommune": "19134", - "libelleAcheminement": "MERLINES", - "nomCommune": "MERLINES" + "codePostal": "55190", + "codeCommune": "55330", + "libelleAcheminement": "MELIGNY LE GRAND", + "nomCommune": "MELIGNY LE GRAND" }, { - "codePostal": "34880", - "codeCommune": "34134", - "libelleAcheminement": "LAVERUNE", - "nomCommune": "LAVERUNE" + "codePostal": "55200", + "codeCommune": "55184", + "libelleAcheminement": "EUVILLE", + "nomCommune": "EUVILLE" }, { - "codePostal": "49260", - "codeCommune": "49060", - "libelleAcheminement": "BELLEVIGNE LES CHATEAUX", - "nomCommune": "BELLEVIGNE LES CHATEAUX" + "codePostal": "41170", + "codeCommune": "41248", + "libelleAcheminement": "COUETRON AU PERCHE", + "nomCommune": "COUETRON AU PERCHE" }, { - "codePostal": "26260", - "codeCommune": "26014", - "libelleAcheminement": "ARTHEMONAY", - "nomCommune": "ARTHEMONAY" + "codePostal": "44420", + "codeCommune": "44097", + "libelleAcheminement": "MESQUER", + "nomCommune": "MESQUER" }, { - "codePostal": "19290", - "codeCommune": "19139", - "libelleAcheminement": "MILLEVACHES", - "nomCommune": "MILLEVACHES" + "codePostal": "55110", + "codeCommune": "55338", + "libelleAcheminement": "MILLY SUR BRADON", + "nomCommune": "MILLY SUR BRADON" }, { - "codePostal": "34650", - "codeCommune": "34144", - "libelleAcheminement": "LUNAS", - "nomCommune": "LUNAS" + "codePostal": "55000", + "codeCommune": "55186", + "libelleAcheminement": "FAINS VEEL", + "nomCommune": "FAINS VEEL" }, { - "codePostal": "49260", - "codeCommune": "49060", - "libelleAcheminement": "BELLEVIGNE LES CHATEAUX", - "nomCommune": "BELLEVIGNE LES CHATEAUX" + "codePostal": "41600", + "codeCommune": "41251", + "libelleAcheminement": "SOUVIGNY EN SOLOGNE", + "nomCommune": "SOUVIGNY EN SOLOGNE" }, { - "codePostal": "26340", - "codeCommune": "26017", - "libelleAcheminement": "AUCELON", - "nomCommune": "AUCELON" + "codePostal": "44200", + "codeCommune": "44109", + "libelleAcheminement": "NANTES", + "nomCommune": "NANTES" }, { - "codePostal": "19300", - "codeCommune": "19143", - "libelleAcheminement": "MONTAIGNAC SUR DOUSTRE", - "nomCommune": "MONTAIGNAC SUR DOUSTRE" + "codePostal": "55400", + "codeCommune": "55339", + "libelleAcheminement": "MOGEVILLE", + "nomCommune": "MOGEVILLE" }, { - "codePostal": "34480", - "codeCommune": "34147", - "libelleAcheminement": "MAGALAS", - "nomCommune": "MAGALAS" + "codePostal": "55400", + "codeCommune": "55191", + "libelleAcheminement": "FOAMEIX ORNEL", + "nomCommune": "FOAMEIX ORNEL" }, { - "codePostal": "49440", - "codeCommune": "49061", - "libelleAcheminement": "CHALLAIN LA POTHERIE", - "nomCommune": "CHALLAIN LA POTHERIE" + "codePostal": "41800", + "codeCommune": "41265", + "libelleAcheminement": "TROO", + "nomCommune": "TROO" }, { - "codePostal": "26570", - "codeCommune": "26018", - "libelleAcheminement": "AULAN", - "nomCommune": "AULAN" + "codePostal": "44110", + "codeCommune": "44112", + "libelleAcheminement": "NOYAL SUR BRUTZ", + "nomCommune": "NOYAL SUR BRUTZ" }, { - "codePostal": "19300", - "codeCommune": "19143", - "libelleAcheminement": "MONTAIGNAC SUR DOUSTRE", - "nomCommune": "MONTAIGNAC SUR DOUSTRE" + "codePostal": "55110", + "codeCommune": "55345", + "libelleAcheminement": "MONT DEVANT SASSEY", + "nomCommune": "MONT DEVANT SASSEY" }, { - "codePostal": "34340", - "codeCommune": "34150", - "libelleAcheminement": "MARSEILLAN", - "nomCommune": "MARSEILLAN" + "codePostal": "55110", + "codeCommune": "55193", + "libelleAcheminement": "FORGES SUR MEUSE", + "nomCommune": "FORGES SUR MEUSE" }, { - "codePostal": "49290", - "codeCommune": "49063", - "libelleAcheminement": "CHALONNES SUR LOIRE", - "nomCommune": "CHALONNES SUR LOIRE" + "codePostal": "41400", + "codeCommune": "41267", + "libelleAcheminement": "VALLIERES LES GRANDES", + "nomCommune": "VALLIERES LES GRANDES" }, { - "codePostal": "26560", - "codeCommune": "26022", - "libelleAcheminement": "BALLONS", - "nomCommune": "BALLONS" + "codePostal": "44270", + "codeCommune": "44119", + "libelleAcheminement": "PAULX", + "nomCommune": "PAULX" }, { - "codePostal": "19190", - "codeCommune": "19156", - "libelleAcheminement": "PALAZINGES", - "nomCommune": "PALAZINGES" + "codePostal": "55320", + "codeCommune": "55347", + "libelleAcheminement": "LES MONTHAIRONS", + "nomCommune": "LES MONTHAIRONS" }, { - "codePostal": "34270", - "codeCommune": "34153", - "libelleAcheminement": "LES MATELLES", - "nomCommune": "LES MATELLES" + "codePostal": "55500", + "codeCommune": "55195", + "libelleAcheminement": "FOUCHERES AUX BOIS", + "nomCommune": "FOUCHERES AUX BOIS" }, { - "codePostal": "49330", - "codeCommune": "49080", - "libelleAcheminement": "LES HAUTS D ANJOU", - "nomCommune": "LES HAUTS D ANJOU" + "codePostal": "41290", + "codeCommune": "41273", + "libelleAcheminement": "VIEVY LE RAYE", + "nomCommune": "VIEVY LE RAYE" }, { - "codePostal": "26310", - "codeCommune": "26030", - "libelleAcheminement": "LA BATIE DES FONDS", - "nomCommune": "LA BATIE DES FONDS" + "codePostal": "44640", + "codeCommune": "44120", + "libelleAcheminement": "LE PELLERIN", + "nomCommune": "LE PELLERIN" }, { - "codePostal": "19200", - "codeCommune": "19180", - "libelleAcheminement": "ST ANGEL", - "nomCommune": "ST ANGEL" + "codePostal": "55600", + "codeCommune": "55351", + "libelleAcheminement": "MONTMEDY", + "nomCommune": "MONTMEDY" }, { - "codePostal": "34370", - "codeCommune": "34155", - "libelleAcheminement": "MAUREILHAN", - "nomCommune": "MAUREILHAN" + "codePostal": "55160", + "codeCommune": "55198", + "libelleAcheminement": "FRESNES EN WOEVRE", + "nomCommune": "FRESNES EN WOEVRE" }, { - "codePostal": "49540", - "codeCommune": "49086", - "libelleAcheminement": "TERRANJOU", - "nomCommune": "TERRANJOU" + "codePostal": "41800", + "codeCommune": "41279", + "libelleAcheminement": "VILLEDIEU LE CHATEAU", + "nomCommune": "VILLEDIEU LE CHATEAU" }, { - "codePostal": "26730", - "codeCommune": "26034", - "libelleAcheminement": "LA BAUME D HOSTUN", - "nomCommune": "LA BAUME D HOSTUN" + "codePostal": "44630", + "codeCommune": "44128", + "libelleAcheminement": "PLESSE", + "nomCommune": "PLESSE" }, { - "codePostal": "19430", - "codeCommune": "19189", - "libelleAcheminement": "ST BONNET LES TOURS DE MERLE", - "nomCommune": "ST BONNET LES TOURS DE MERLE" + "codePostal": "55700", + "codeCommune": "55364", + "libelleAcheminement": "MOUZAY", + "nomCommune": "MOUZAY" }, { - "codePostal": "34310", - "codeCommune": "34167", - "libelleAcheminement": "MONTELS", - "nomCommune": "MONTELS" + "codePostal": "55120", + "codeCommune": "55199", + "libelleAcheminement": "FROIDOS", + "nomCommune": "FROIDOS" }, { - "codePostal": "49500", - "codeCommune": "49089", - "libelleAcheminement": "CHAZE SUR ARGOS", - "nomCommune": "CHAZE SUR ARGOS" + "codePostal": "41330", + "codeCommune": "41281", + "libelleAcheminement": "VILLEFRANCOEUR", + "nomCommune": "VILLEFRANCOEUR" }, { - "codePostal": "26600", - "codeCommune": "26038", - "libelleAcheminement": "BEAUMONT MONTEUX", - "nomCommune": "BEAUMONT MONTEUX" + "codePostal": "44160", + "codeCommune": "44129", + "libelleAcheminement": "PONTCHATEAU", + "nomCommune": "PONTCHATEAU" }, { - "codePostal": "19600", - "codeCommune": "19191", - "libelleAcheminement": "ST CERNIN DE LARCHE", - "nomCommune": "ST CERNIN DE LARCHE" + "codePostal": "55700", + "codeCommune": "55377", + "libelleAcheminement": "NEPVANT", + "nomCommune": "NEPVANT" }, { - "codePostal": "34980", - "codeCommune": "34169", - "libelleAcheminement": "MONTFERRIER SUR LEZ", - "nomCommune": "MONTFERRIER SUR LEZ" + "codePostal": "55100", + "codeCommune": "55200", + "libelleAcheminement": "FROMEREVILLE LES VALLONS", + "nomCommune": "FROMEREVILLE LES VALLONS" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "41310", + "codeCommune": "41286", + "libelleAcheminement": "VILLEPORCHER", + "nomCommune": "VILLEPORCHER" }, { - "codePostal": "26240", - "codeCommune": "26041", - "libelleAcheminement": "BEAUSEMBLANT", - "nomCommune": "BEAUSEMBLANT" + "codePostal": "44160", + "codeCommune": "44152", + "libelleAcheminement": "STE ANNE SUR BRIVET", + "nomCommune": "STE ANNE SUR BRIVET" }, { - "codePostal": "19380", - "codeCommune": "19192", - "libelleAcheminement": "ST CHAMANT", - "nomCommune": "ST CHAMANT" + "codePostal": "55140", + "codeCommune": "55381", + "libelleAcheminement": "NEUVILLE LES VAUCOULEURS", + "nomCommune": "NEUVILLE LES VAUCOULEURS" }, { - "codePostal": "34130", - "codeCommune": "34176", - "libelleAcheminement": "MUDAISON", - "nomCommune": "MUDAISON" + "codePostal": "55320", + "codeCommune": "55204", + "libelleAcheminement": "GENICOURT SUR MEUSE", + "nomCommune": "GENICOURT SUR MEUSE" }, { - "codePostal": "49750", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "41000", + "codeCommune": "41288", + "libelleAcheminement": "VILLERBON", + "nomCommune": "VILLERBON" }, { - "codePostal": "26160", - "codeCommune": "26045", - "libelleAcheminement": "LA BEGUDE DE MAZENC", - "nomCommune": "LA BEGUDE DE MAZENC" + "codePostal": "44250", + "codeCommune": "44154", + "libelleAcheminement": "ST BREVIN LES PINS", + "nomCommune": "ST BREVIN LES PINS" }, { - "codePostal": "19700", - "codeCommune": "19194", - "libelleAcheminement": "ST CLEMENT", - "nomCommune": "ST CLEMENT" + "codePostal": "55120", + "codeCommune": "55385", + "libelleAcheminement": "NIXEVILLE BLERCOURT", + "nomCommune": "NIXEVILLE BLERCOURT" }, { - "codePostal": "34320", - "codeCommune": "34181", - "libelleAcheminement": "NEFFIES", - "nomCommune": "NEFFIES" + "codePostal": "55130", + "codeCommune": "55215", + "libelleAcheminement": "GONDRECOURT LE CHATEAU", + "nomCommune": "GONDRECOURT LE CHATEAU" }, { - "codePostal": "49700", - "codeCommune": "49100", - "libelleAcheminement": "CIZAY LA MADELEINE", - "nomCommune": "CIZAY LA MADELEINE" + "codePostal": "42380", + "codeCommune": "42001", + "libelleAcheminement": "ABOEN", + "nomCommune": "ABOEN" }, { - "codePostal": "26110", - "codeCommune": "26046", - "libelleAcheminement": "BELLECOMBE TARENDOL", - "nomCommune": "BELLECOMBE TARENDOL" + "codePostal": "44250", + "codeCommune": "44154", + "libelleAcheminement": "ST BREVIN LES PINS", + "nomCommune": "ST BREVIN LES PINS" }, { - "codePostal": "19160", - "codeCommune": "19200", - "libelleAcheminement": "ST ETIENNE LA GENESTE", - "nomCommune": "ST ETIENNE LA GENESTE" + "codePostal": "55250", + "codeCommune": "55389", + "libelleAcheminement": "NUBECOURT", + "nomCommune": "NUBECOURT" }, { - "codePostal": "34380", - "codeCommune": "34195", - "libelleAcheminement": "PEGAIROLLES DE BUEGES", - "nomCommune": "PEGAIROLLES DE BUEGES" + "codePostal": "55230", + "codeCommune": "55216", + "libelleAcheminement": "GOURAINCOURT", + "nomCommune": "GOURAINCOURT" }, { - "codePostal": "49690", - "codeCommune": "49109", - "libelleAcheminement": "CORON", - "nomCommune": "CORON" + "codePostal": "42130", + "codeCommune": "42002", + "libelleAcheminement": "AILLEUX", + "nomCommune": "AILLEUX" }, { - "codePostal": "26170", - "codeCommune": "26048", - "libelleAcheminement": "BENIVAY OLLON", - "nomCommune": "BENIVAY OLLON" + "codePostal": "44310", + "codeCommune": "44155", + "libelleAcheminement": "ST COLOMBAN", + "nomCommune": "ST COLOMBAN" }, { - "codePostal": "19490", - "codeCommune": "19203", - "libelleAcheminement": "STE FORTUNADE", - "nomCommune": "STE FORTUNADE" + "codePostal": "55700", + "codeCommune": "55391", + "libelleAcheminement": "OLIZY SUR CHIERS", + "nomCommune": "OLIZY SUR CHIERS" }, { - "codePostal": "34470", - "codeCommune": "34198", - "libelleAcheminement": "PEROLS", - "nomCommune": "PEROLS" + "codePostal": "55150", + "codeCommune": "55218", + "libelleAcheminement": "GREMILLY", + "nomCommune": "GREMILLY" }, { - "codePostal": "49190", - "codeCommune": "49120", - "libelleAcheminement": "DENEE", - "nomCommune": "DENEE" + "codePostal": "42330", + "codeCommune": "42010", + "libelleAcheminement": "AVEIZIEUX", + "nomCommune": "AVEIZIEUX" }, { - "codePostal": "26300", - "codeCommune": "26049", - "libelleAcheminement": "BESAYES", - "nomCommune": "BESAYES" + "codePostal": "44270", + "codeCommune": "44157", + "libelleAcheminement": "ST ETIENNE DE MER MORTE", + "nomCommune": "ST ETIENNE DE MER MORTE" }, { - "codePostal": "19200", - "codeCommune": "19204", - "libelleAcheminement": "ST FREJOUX", - "nomCommune": "ST FREJOUX" + "codePostal": "55140", + "codeCommune": "55397", + "libelleAcheminement": "PAGNY LA BLANCHE COTE", + "nomCommune": "PAGNY LA BLANCHE COTE" }, { - "codePostal": "34120", - "codeCommune": "34199", - "libelleAcheminement": "PEZENAS", - "nomCommune": "PEZENAS" + "codePostal": "55000", + "codeCommune": "55221", + "libelleAcheminement": "GUERPONT", + "nomCommune": "GUERPONT" }, { - "codePostal": "49460", - "codeCommune": "49130", - "libelleAcheminement": "ECUILLE", - "nomCommune": "ECUILLE" + "codePostal": "42670", + "codeCommune": "42015", + "libelleAcheminement": "BELMONT DE LA LOIRE", + "nomCommune": "BELMONT DE LA LOIRE" }, { - "codePostal": "26790", - "codeCommune": "26054", - "libelleAcheminement": "BOUCHET", - "nomCommune": "BOUCHET" + "codePostal": "44690", + "codeCommune": "44159", + "libelleAcheminement": "ST FIACRE SUR MAINE", + "nomCommune": "ST FIACRE SUR MAINE" }, { - "codePostal": "19430", - "codeCommune": "19215", - "libelleAcheminement": "ST JULIEN LE PELERIN", - "nomCommune": "ST JULIEN LE PELERIN" + "codePostal": "55190", + "codeCommune": "55398", + "libelleAcheminement": "PAGNY SUR MEUSE", + "nomCommune": "PAGNY SUR MEUSE" }, { - "codePostal": "34700", - "codeCommune": "34212", - "libelleAcheminement": "POUJOLS", - "nomCommune": "POUJOLS" + "codePostal": "55700", + "codeCommune": "55225", + "libelleAcheminement": "HALLES SOUS LES COTES", + "nomCommune": "HALLES SOUS LES COTES" }, { - "codePostal": "49140", - "codeCommune": "49163", - "libelleAcheminement": "JARZE VILLAGES", - "nomCommune": "JARZE VILLAGES" + "codePostal": "42520", + "codeCommune": "42018", + "libelleAcheminement": "BESSEY", + "nomCommune": "BESSEY" }, { - "codePostal": "26460", - "codeCommune": "26060", - "libelleAcheminement": "BOUVIERES", - "nomCommune": "BOUVIERES" + "codePostal": "44800", + "codeCommune": "44162", + "libelleAcheminement": "ST HERBLAIN", + "nomCommune": "ST HERBLAIN" }, { - "codePostal": "19400", - "codeCommune": "19221", - "libelleAcheminement": "ST MARTIAL ENTRAYGUES", - "nomCommune": "ST MARTIAL ENTRAYGUES" + "codePostal": "55300", + "codeCommune": "55401", + "libelleAcheminement": "LES PAROCHES", + "nomCommune": "LES PAROCHES" }, { - "codePostal": "34480", - "codeCommune": "34223", - "libelleAcheminement": "PUIMISSON", - "nomCommune": "PUIMISSON" + "codePostal": "55300", + "codeCommune": "55229", + "libelleAcheminement": "HAN SUR MEUSE", + "nomCommune": "HAN SUR MEUSE" }, { - "codePostal": "49150", - "codeCommune": "49171", - "libelleAcheminement": "LA LANDE CHASLES", - "nomCommune": "LA LANDE CHASLES" + "codePostal": "42210", + "codeCommune": "42020", + "libelleAcheminement": "BOISSET LES MONTROND", + "nomCommune": "BOISSET LES MONTROND" }, { - "codePostal": "26600", - "codeCommune": "26071", - "libelleAcheminement": "CHANOS CURSON", - "nomCommune": "CHANOS CURSON" + "codePostal": "44190", + "codeCommune": "44165", + "libelleAcheminement": "ST HILAIRE DE CLISSON", + "nomCommune": "ST HILAIRE DE CLISSON" }, { - "codePostal": "19200", - "codeCommune": "19233", - "libelleAcheminement": "ST PARDOUX LE VIEUX", - "nomCommune": "ST PARDOUX LE VIEUX" + "codePostal": "55800", + "codeCommune": "55414", + "libelleAcheminement": "RANCOURT SUR ORNAIN", + "nomCommune": "RANCOURT SUR ORNAIN" }, { - "codePostal": "34480", - "codeCommune": "34224", - "libelleAcheminement": "PUISSALICON", - "nomCommune": "PUISSALICON" + "codePostal": "55120", + "codeCommune": "55253", + "libelleAcheminement": "LES ISLETTES", + "nomCommune": "LES ISLETTES" }, { - "codePostal": "49370", - "codeCommune": "49183", - "libelleAcheminement": "VAL D ERDRE AUXENCE", - "nomCommune": "VAL D ERDRE AUXENCE" + "codePostal": "42560", + "codeCommune": "42021", + "libelleAcheminement": "BOISSET ST PRIEST", + "nomCommune": "BOISSET ST PRIEST" }, { - "codePostal": "26600", - "codeCommune": "26072", - "libelleAcheminement": "CHANTEMERLE LES BLES", - "nomCommune": "CHANTEMERLE LES BLES" + "codePostal": "44450", + "codeCommune": "44169", + "libelleAcheminement": "ST JULIEN DE CONCELLES", + "nomCommune": "ST JULIEN DE CONCELLES" }, { - "codePostal": "19270", - "codeCommune": "19234", - "libelleAcheminement": "ST PARDOUX L ORTIGIER", - "nomCommune": "ST PARDOUX L ORTIGIER" + "codePostal": "55160", + "codeCommune": "55429", + "libelleAcheminement": "RIAVILLE", + "nomCommune": "RIAVILLE" }, { - "codePostal": "34310", - "codeCommune": "34226", - "libelleAcheminement": "QUARANTE", - "nomCommune": "QUARANTE" + "codePostal": "55220", + "codeCommune": "55254", + "libelleAcheminement": "LES TROIS DOMAINES", + "nomCommune": "LES TROIS DOMAINES" }, { - "codePostal": "49122", - "codeCommune": "49193", - "libelleAcheminement": "LE MAY SUR EVRE", - "nomCommune": "LE MAY SUR EVRE" + "codePostal": "42720", + "codeCommune": "42026", + "libelleAcheminement": "BRIENNON", + "nomCommune": "BRIENNON" }, { - "codePostal": "26420", - "codeCommune": "26074", - "libelleAcheminement": "LA CHAPELLE EN VERCORS", - "nomCommune": "LA CHAPELLE EN VERCORS" + "codePostal": "44550", + "codeCommune": "44176", + "libelleAcheminement": "ST MALO DE GUERSAC", + "nomCommune": "ST MALO DE GUERSAC" }, { - "codePostal": "19240", - "codeCommune": "19246", - "libelleAcheminement": "ST VIANCE", - "nomCommune": "ST VIANCE" + "codePostal": "55140", + "codeCommune": "55433", + "libelleAcheminement": "RIGNY LA SALLE", + "nomCommune": "RIGNY LA SALLE" }, { - "codePostal": "34320", - "codeCommune": "34234", - "libelleAcheminement": "ROQUESSELS", - "nomCommune": "ROQUESSELS" + "codePostal": "55120", + "codeCommune": "55257", + "libelleAcheminement": "JOUY EN ARGONNE", + "nomCommune": "JOUY EN ARGONNE" }, { - "codePostal": "49310", - "codeCommune": "49211", - "libelleAcheminement": "MONTILLIERS", - "nomCommune": "MONTILLIERS" + "codePostal": "42260", + "codeCommune": "42027", + "libelleAcheminement": "BULLY", + "nomCommune": "BULLY" }, { - "codePostal": "26470", - "codeCommune": "26075", - "libelleAcheminement": "LA CHARCE", - "nomCommune": "LA CHARCE" + "codePostal": "44540", + "codeCommune": "44180", + "libelleAcheminement": "VALLONS DE L ERDRE", + "nomCommune": "VALLONS DE L ERDRE" }, { - "codePostal": "19700", - "codeCommune": "19255", - "libelleAcheminement": "SEILHAC", - "nomCommune": "SEILHAC" + "codePostal": "55110", + "codeCommune": "55438", + "libelleAcheminement": "ROMAGNE SOUS MONTFAUCON", + "nomCommune": "ROMAGNE SOUS MONTFAUCON" }, { - "codePostal": "34320", - "codeCommune": "34237", - "libelleAcheminement": "ROUJAN", - "nomCommune": "ROUJAN" + "codePostal": "55120", + "codeCommune": "55260", + "libelleAcheminement": "JULVECOURT", + "nomCommune": "JULVECOURT" }, { - "codePostal": "49600", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "42510", + "codeCommune": "42029", + "libelleAcheminement": "BUSSIERES", + "nomCommune": "BUSSIERES" }, { - "codePostal": "26310", - "codeCommune": "26076", - "libelleAcheminement": "CHARENS", - "nomCommune": "CHARENS" + "codePostal": "44600", + "codeCommune": "44184", + "libelleAcheminement": "ST NAZAIRE", + "nomCommune": "ST NAZAIRE" }, { - "codePostal": "19190", - "codeCommune": "19257", - "libelleAcheminement": "SERILHAC", - "nomCommune": "SERILHAC" + "codePostal": "55000", + "codeCommune": "55446", + "libelleAcheminement": "RUMONT", + "nomCommune": "RUMONT" }, { - "codePostal": "34230", - "codeCommune": "34241", - "libelleAcheminement": "ST BAUZILLE DE LA SYLVE", - "nomCommune": "ST BAUZILLE DE LA SYLVE" + "codePostal": "55300", + "codeCommune": "55263", + "libelleAcheminement": "KOEUR LA GRANDE", + "nomCommune": "KOEUR LA GRANDE" }, { - "codePostal": "49640", - "codeCommune": "49220", - "libelleAcheminement": "MORANNES SUR SARTHE DAUMERAY", - "nomCommune": "MORANNES SUR SARTHE DAUMERAY" + "codePostal": "42440", + "codeCommune": "42034", + "libelleAcheminement": "CERVIERES", + "nomCommune": "CERVIERES" }, { - "codePostal": "26110", - "codeCommune": "26082", - "libelleAcheminement": "CHATEAUNEUF DE BORDETTE", - "nomCommune": "CHATEAUNEUF DE BORDETTE" + "codePostal": "44600", + "codeCommune": "44184", + "libelleAcheminement": "ST NAZAIRE", + "nomCommune": "ST NAZAIRE" }, { - "codePostal": "19230", - "codeCommune": "19270", - "libelleAcheminement": "TROCHE", - "nomCommune": "TROCHE" + "codePostal": "55400", + "codeCommune": "55458", + "libelleAcheminement": "ST JEAN LES BUZY", + "nomCommune": "ST JEAN LES BUZY" }, { - "codePostal": "34360", - "codeCommune": "34245", - "libelleAcheminement": "ST CHINIAN", - "nomCommune": "ST CHINIAN" + "codePostal": "55210", + "codeCommune": "55267", + "libelleAcheminement": "LACHAUSSEE", + "nomCommune": "LACHAUSSEE" }, { - "codePostal": "49610", - "codeCommune": "49222", - "libelleAcheminement": "MOZE SUR LOUET", - "nomCommune": "MOZE SUR LOUET" + "codePostal": "42500", + "codeCommune": "42044", + "libelleAcheminement": "LE CHAMBON FEUGEROLLES", + "nomCommune": "LE CHAMBON FEUGEROLLES" }, { - "codePostal": "26750", - "codeCommune": "26087", - "libelleAcheminement": "CHATILLON ST JEAN", - "nomCommune": "CHATILLON ST JEAN" + "codePostal": "44320", + "codeCommune": "44192", + "libelleAcheminement": "ST VIAUD", + "nomCommune": "ST VIAUD" }, { - "codePostal": "19000", - "codeCommune": "19272", - "libelleAcheminement": "TULLE", - "nomCommune": "TULLE" + "codePostal": "55500", + "codeCommune": "55472", + "libelleAcheminement": "SAULVAUX", + "nomCommune": "SAULVAUX" }, { - "codePostal": "34260", - "codeCommune": "34252", - "libelleAcheminement": "ST ETIENNE ESTRECHOUX", - "nomCommune": "ST ETIENNE ESTRECHOUX" + "codePostal": "55800", + "codeCommune": "55272", + "libelleAcheminement": "LAIMONT", + "nomCommune": "LAIMONT" }, { - "codePostal": "49680", - "codeCommune": "49224", - "libelleAcheminement": "NEUILLE", - "nomCommune": "NEUILLE" + "codePostal": "42310", + "codeCommune": "42049", + "libelleAcheminement": "CHANGY", + "nomCommune": "CHANGY" }, { - "codePostal": "26340", - "codeCommune": "26090", - "libelleAcheminement": "LA CHAUDIERE", - "nomCommune": "LA CHAUDIERE" + "codePostal": "44470", + "codeCommune": "44204", + "libelleAcheminement": "THOUARE SUR LOIRE", + "nomCommune": "THOUARE SUR LOIRE" }, { - "codePostal": "19240", - "codeCommune": "19278", - "libelleAcheminement": "VARETZ", - "nomCommune": "VARETZ" + "codePostal": "55140", + "codeCommune": "55474", + "libelleAcheminement": "SAUVIGNY", + "nomCommune": "SAUVIGNY" }, { - "codePostal": "34520", - "codeCommune": "34253", - "libelleAcheminement": "ST FELIX DE L HERAS", - "nomCommune": "ST FELIX DE L HERAS" + "codePostal": "55300", + "codeCommune": "55274", + "libelleAcheminement": "LAMORVILLE", + "nomCommune": "LAMORVILLE" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "42190", + "codeCommune": "42052", + "libelleAcheminement": "CHARLIEU", + "nomCommune": "CHARLIEU" }, { - "codePostal": "26510", - "codeCommune": "26091", - "libelleAcheminement": "CHAUVAC LAUX MONTAUX", - "nomCommune": "CHAUVAC LAUX MONTAUX" + "codePostal": "44119", + "codeCommune": "44209", + "libelleAcheminement": "TREILLIERES", + "nomCommune": "TREILLIERES" }, { - "codePostal": "19120", - "codeCommune": "19280", - "libelleAcheminement": "VEGENNES", - "nomCommune": "VEGENNES" + "codePostal": "55000", + "codeCommune": "55476", + "libelleAcheminement": "SAVONNIERES DEVANT BAR", + "nomCommune": "SAVONNIERES DEVANT BAR" }, { - "codePostal": "34725", - "codeCommune": "34254", - "libelleAcheminement": "ST FELIX DE LODEZ", - "nomCommune": "ST FELIX DE LODEZ" + "codePostal": "55110", + "codeCommune": "55292", + "libelleAcheminement": "LINY DEVANT DUN", + "nomCommune": "LINY DEVANT DUN" }, { - "codePostal": "49730", - "codeCommune": "49235", - "libelleAcheminement": "PARNAY", - "nomCommune": "PARNAY" + "codePostal": "42560", + "codeCommune": "42058", + "libelleAcheminement": "CHAZELLES SUR LAVIEU", + "nomCommune": "CHAZELLES SUR LAVIEU" }, { - "codePostal": "26260", - "codeCommune": "26096", - "libelleAcheminement": "CLERIEUX", - "nomCommune": "CLERIEUX" + "codePostal": "44370", + "codeCommune": "44213", + "libelleAcheminement": "LOIREAUXENCE", + "nomCommune": "LOIREAUXENCE" }, { - "codePostal": "19260", - "codeCommune": "19281", - "libelleAcheminement": "VEIX", - "nomCommune": "VEIX" + "codePostal": "55270", + "codeCommune": "55484", + "libelleAcheminement": "SEPTSARGES", + "nomCommune": "SEPTSARGES" }, { - "codePostal": "34610", - "codeCommune": "34257", - "libelleAcheminement": "ST GENIES DE VARENSAL", - "nomCommune": "ST GENIES DE VARENSAL" + "codePostal": "55110", + "codeCommune": "55293", + "libelleAcheminement": "LION DEVANT DUN", + "nomCommune": "LION DEVANT DUN" }, { - "codePostal": "49490", - "codeCommune": "49237", - "libelleAcheminement": "LA PELLERINE", - "nomCommune": "LA PELLERINE" + "codePostal": "42123", + "codeCommune": "42070", + "libelleAcheminement": "CORDELLE", + "nomCommune": "CORDELLE" }, { - "codePostal": "26270", - "codeCommune": "26097", - "libelleAcheminement": "CLIOUSCLAT", - "nomCommune": "CLIOUSCLAT" + "codePostal": "44120", + "codeCommune": "44215", + "libelleAcheminement": "VERTOU", + "nomCommune": "VERTOU" }, { - "codePostal": "19130", - "codeCommune": "19288", - "libelleAcheminement": "VOUTEZAC", - "nomCommune": "VOUTEZAC" + "codePostal": "55110", + "codeCommune": "55490", + "libelleAcheminement": "SIVRY SUR MEUSE", + "nomCommune": "SIVRY SUR MEUSE" }, { - "codePostal": "34610", - "codeCommune": "34260", - "libelleAcheminement": "ST GERVAIS SUR MARE", - "nomCommune": "ST GERVAIS SUR MARE" + "codePostal": "55230", + "codeCommune": "55299", + "libelleAcheminement": "LOISON", + "nomCommune": "LOISON" }, { - "codePostal": "49124", - "codeCommune": "49241", - "libelleAcheminement": "LE PLESSIS GRAMMOIRE", - "nomCommune": "LE PLESSIS GRAMMOIRE" + "codePostal": "42360", + "codeCommune": "42073", + "libelleAcheminement": "COTTANCE", + "nomCommune": "COTTANCE" }, { - "codePostal": "26740", - "codeCommune": "26102", - "libelleAcheminement": "CONDILLAC", - "nomCommune": "CONDILLAC" + "codePostal": "44140", + "codeCommune": "44223", + "libelleAcheminement": "GENESTON", + "nomCommune": "GENESTON" }, { - "codePostal": "19310", - "codeCommune": "19289", - "libelleAcheminement": "YSSANDON", - "nomCommune": "YSSANDON" + "codePostal": "55800", + "codeCommune": "55493", + "libelleAcheminement": "SOMMEILLES", + "nomCommune": "SOMMEILLES" }, { - "codePostal": "34270", - "codeCommune": "34266", - "libelleAcheminement": "ST JEAN DE CUCULLES", - "nomCommune": "ST JEAN DE CUCULLES" + "codePostal": "55600", + "codeCommune": "55306", + "libelleAcheminement": "LOUPPY SUR LOISON", + "nomCommune": "LOUPPY SUR LOISON" }, { - "codePostal": "49110", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "42540", + "codeCommune": "42077", + "libelleAcheminement": "CROIZET SUR GAND", + "nomCommune": "CROIZET SUR GAND" }, { - "codePostal": "26510", - "codeCommune": "26105", - "libelleAcheminement": "CORNILLON SUR L OULE", - "nomCommune": "CORNILLON SUR L OULE" + "codePostal": "45300", + "codeCommune": "45010", + "libelleAcheminement": "ASCOUX", + "nomCommune": "ASCOUX" }, { - "codePostal": "21150", - "codeCommune": "21008", - "libelleAcheminement": "ALISE STE REINE", - "nomCommune": "ALISE STE REINE" + "codePostal": "55230", + "codeCommune": "55500", + "libelleAcheminement": "SPINCOURT", + "nomCommune": "SPINCOURT" }, { - "codePostal": "34430", - "codeCommune": "34270", - "libelleAcheminement": "ST JEAN DE VEDAS", - "nomCommune": "ST JEAN DE VEDAS" + "codePostal": "55700", + "codeCommune": "55310", + "libelleAcheminement": "LUZY ST MARTIN", + "nomCommune": "LUZY ST MARTIN" }, { - "codePostal": "49410", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "42330", + "codeCommune": "42081", + "libelleAcheminement": "CUZIEU", + "nomCommune": "CUZIEU" }, { - "codePostal": "26350", - "codeCommune": "26107", - "libelleAcheminement": "CREPOL", - "nomCommune": "CREPOL" + "codePostal": "45390", + "codeCommune": "45014", + "libelleAcheminement": "AULNAY LA RIVIERE", + "nomCommune": "AULNAY LA RIVIERE" }, { - "codePostal": "21450", - "codeCommune": "21011", - "libelleAcheminement": "AMPILLY LES BORDES", - "nomCommune": "AMPILLY LES BORDES" + "codePostal": "55500", + "codeCommune": "55501", + "libelleAcheminement": "STAINVILLE", + "nomCommune": "STAINVILLE" }, { - "codePostal": "34400", - "codeCommune": "34280", - "libelleAcheminement": "ST NAZAIRE DE PEZAN", - "nomCommune": "ST NAZAIRE DE PEZAN" + "codePostal": "55270", + "codeCommune": "55313", + "libelleAcheminement": "MALANCOURT", + "nomCommune": "MALANCOURT" }, { - "codePostal": "49420", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "42110", + "codeCommune": "42088", + "libelleAcheminement": "EPERCIEUX ST PAUL", + "nomCommune": "EPERCIEUX ST PAUL" }, { - "codePostal": "26400", - "codeCommune": "26108", - "libelleAcheminement": "CREST", - "nomCommune": "CREST" + "codePostal": "45300", + "codeCommune": "45045", + "libelleAcheminement": "BOUILLY EN GATINAIS", + "nomCommune": "BOUILLY EN GATINAIS" }, { - "codePostal": "21310", - "codeCommune": "21016", - "libelleAcheminement": "ARCEAU", - "nomCommune": "ARCEAU" + "codePostal": "55000", + "codeCommune": "55504", + "libelleAcheminement": "TANNOIS", + "nomCommune": "TANNOIS" }, { - "codePostal": "34700", - "codeCommune": "34286", - "libelleAcheminement": "ST PRIVAT", - "nomCommune": "ST PRIVAT" + "codePostal": "55150", + "codeCommune": "55316", + "libelleAcheminement": "MANGIENNES", + "nomCommune": "MANGIENNES" }, { - "codePostal": "49260", - "codeCommune": "49253", - "libelleAcheminement": "LE PUY NOTRE DAME", - "nomCommune": "LE PUY NOTRE DAME" + "codePostal": "42140", + "codeCommune": "42096", + "libelleAcheminement": "FONTANES", + "nomCommune": "FONTANES" }, { - "codePostal": "26600", - "codeCommune": "26110", - "libelleAcheminement": "CROZES HERMITAGE", - "nomCommune": "CROZES HERMITAGE" + "codePostal": "45300", + "codeCommune": "45047", + "libelleAcheminement": "BOUZONVILLE AUX BOIS", + "nomCommune": "BOUZONVILLE AUX BOIS" }, { - "codePostal": "21320", - "codeCommune": "21020", - "libelleAcheminement": "ARCONCEY", - "nomCommune": "ARCONCEY" + "codePostal": "55600", + "codeCommune": "55511", + "libelleAcheminement": "THONNELLE", + "nomCommune": "THONNELLE" }, { - "codePostal": "34800", - "codeCommune": "34292", - "libelleAcheminement": "SALASC", - "nomCommune": "SALASC" + "codePostal": "55190", + "codeCommune": "55322", + "libelleAcheminement": "MARSON SUR BARBOURE", + "nomCommune": "MARSON SUR BARBOURE" }, { - "codePostal": "49350", - "codeCommune": "49261", - "libelleAcheminement": "GENNES VAL DE LOIRE", - "nomCommune": "GENNES VAL DE LOIRE" + "codePostal": "42490", + "codeCommune": "42099", + "libelleAcheminement": "FRAISSES", + "nomCommune": "FRAISSES" }, { - "codePostal": "26460", - "codeCommune": "26111", - "libelleAcheminement": "CRUPIES", - "nomCommune": "CRUPIES" + "codePostal": "45310", + "codeCommune": "45055", + "libelleAcheminement": "BRICY", + "nomCommune": "BRICY" }, { - "codePostal": "21500", - "codeCommune": "21026", - "libelleAcheminement": "ASNIERES EN MONTAGNE", - "nomCommune": "ASNIERES EN MONTAGNE" + "codePostal": "55500", + "codeCommune": "55518", + "libelleAcheminement": "COUSANCES LES TRICONVILLE", + "nomCommune": "COUSANCES LES TRICONVILLE" }, { - "codePostal": "34330", - "codeCommune": "34293", - "libelleAcheminement": "LA SALVETAT SUR AGOUT", - "nomCommune": "LA SALVETAT SUR AGOUT" + "codePostal": "55600", + "codeCommune": "55324", + "libelleAcheminement": "MARVILLE", + "nomCommune": "MARVILLE" }, { - "codePostal": "49170", - "codeCommune": "49283", - "libelleAcheminement": "ST GEORGES SUR LOIRE", - "nomCommune": "ST GEORGES SUR LOIRE" + "codePostal": "42600", + "codeCommune": "42105", + "libelleAcheminement": "GREZIEUX LE FROMENTAL", + "nomCommune": "GREZIEUX LE FROMENTAL" }, { - "codePostal": "26110", - "codeCommune": "26112", - "libelleAcheminement": "CURNIER", - "nomCommune": "CURNIER" + "codePostal": "45390", + "codeCommune": "45056", + "libelleAcheminement": "BROMEILLES", + "nomCommune": "BROMEILLES" }, { - "codePostal": "21130", - "codeCommune": "21028", - "libelleAcheminement": "ATHEE", - "nomCommune": "ATHEE" + "codePostal": "55140", + "codeCommune": "55522", + "libelleAcheminement": "UGNY SUR MEUSE", + "nomCommune": "UGNY SUR MEUSE" }, { - "codePostal": "34400", - "codeCommune": "34294", - "libelleAcheminement": "SATURARGUES", - "nomCommune": "SATURARGUES" + "codePostal": "55190", + "codeCommune": "55331", + "libelleAcheminement": "MELIGNY LE PETIT", + "nomCommune": "MELIGNY LE PETIT" }, { - "codePostal": "49070", - "codeCommune": "49294", - "libelleAcheminement": "ST LAMBERT LA POTHERIE", - "nomCommune": "ST LAMBERT LA POTHERIE" + "codePostal": "42210", + "codeCommune": "42108", + "libelleAcheminement": "L HOPITAL LE GRAND", + "nomCommune": "L HOPITAL LE GRAND" }, { - "codePostal": "26800", - "codeCommune": "26124", - "libelleAcheminement": "ETOILE SUR RHONE", - "nomCommune": "ETOILE SUR RHONE" + "codePostal": "45300", + "codeCommune": "45065", + "libelleAcheminement": "CESARVILLE DOSSAINVILLE", + "nomCommune": "CESARVILLE DOSSAINVILLE" }, { - "codePostal": "21170", - "codeCommune": "21031", - "libelleAcheminement": "AUBIGNY EN PLAINE", - "nomCommune": "AUBIGNY EN PLAINE" + "codePostal": "55300", + "codeCommune": "55528", + "libelleAcheminement": "VARNEVILLE", + "nomCommune": "VARNEVILLE" }, { - "codePostal": "34570", - "codeCommune": "34295", - "libelleAcheminement": "SAUSSAN", - "nomCommune": "SAUSSAN" + "codePostal": "55500", + "codeCommune": "55332", + "libelleAcheminement": "MENAUCOURT", + "nomCommune": "MENAUCOURT" }, { - "codePostal": "49230", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "42110", + "codeCommune": "42113", + "libelleAcheminement": "JAS", + "nomCommune": "JAS" }, { - "codePostal": "26170", - "codeCommune": "26127", - "libelleAcheminement": "EYGALIERS", - "nomCommune": "EYGALIERS" + "codePostal": "45220", + "codeCommune": "45083", + "libelleAcheminement": "CHATEAU RENARD", + "nomCommune": "CHATEAU RENARD" }, { - "codePostal": "21340", - "codeCommune": "21032", - "libelleAcheminement": "AUBIGNY LA RONCE", - "nomCommune": "AUBIGNY LA RONCE" + "codePostal": "55300", + "codeCommune": "55530", + "libelleAcheminement": "VALBOIS", + "nomCommune": "VALBOIS" }, { - "codePostal": "34410", - "codeCommune": "34298", - "libelleAcheminement": "SAUVIAN", - "nomCommune": "SAUVIAN" + "codePostal": "55260", + "codeCommune": "55333", + "libelleAcheminement": "MENIL AUX BOIS", + "nomCommune": "MENIL AUX BOIS" }, { - "codePostal": "49230", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "42155", + "codeCommune": "42120", + "libelleAcheminement": "LENTIGNY", + "nomCommune": "LENTIGNY" }, { - "codePostal": "26570", - "codeCommune": "26135", - "libelleAcheminement": "FERRASSIERES", - "nomCommune": "FERRASSIERES" + "codePostal": "45210", + "codeCommune": "45091", + "libelleAcheminement": "CHEVANNES", + "nomCommune": "CHEVANNES" }, { - "codePostal": "21250", - "codeCommune": "21035", - "libelleAcheminement": "AUVILLARS SUR SAONE", - "nomCommune": "AUVILLARS SUR SAONE" + "codePostal": "55600", + "codeCommune": "55546", + "libelleAcheminement": "VERNEUIL GRAND", + "nomCommune": "VERNEUIL GRAND" }, { - "codePostal": "34200", - "codeCommune": "34301", - "libelleAcheminement": "SETE", - "nomCommune": "SETE" + "codePostal": "55190", + "codeCommune": "55334", + "libelleAcheminement": "MENIL LA HORGNE", + "nomCommune": "MENIL LA HORGNE" }, { - "codePostal": "49230", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "42520", + "codeCommune": "42124", + "libelleAcheminement": "LUPE", + "nomCommune": "LUPE" }, { - "codePostal": "26400", - "codeCommune": "26141", - "libelleAcheminement": "GIGORS ET LOZERON", - "nomCommune": "GIGORS ET LOZERON" + "codePostal": "45170", + "codeCommune": "45095", + "libelleAcheminement": "CHILLEURS AUX BOIS", + "nomCommune": "CHILLEURS AUX BOIS" }, { - "codePostal": "21120", - "codeCommune": "21039", - "libelleAcheminement": "AVELANGES", - "nomCommune": "AVELANGES" + "codePostal": "55600", + "codeCommune": "55547", + "libelleAcheminement": "VERNEUIL PETIT", + "nomCommune": "VERNEUIL PETIT" }, { - "codePostal": "34160", - "codeCommune": "34307", - "libelleAcheminement": "SUSSARGUES", - "nomCommune": "SUSSARGUES" + "codePostal": "55150", + "codeCommune": "55341", + "libelleAcheminement": "MOIREY FLABAS CREPION", + "nomCommune": "MOIREY FLABAS CREPION" }, { - "codePostal": "49450", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "42210", + "codeCommune": "42135", + "libelleAcheminement": "MARCLOPT", + "nomCommune": "MARCLOPT" }, { - "codePostal": "26390", - "codeCommune": "26148", - "libelleAcheminement": "HAUTERIVES", - "nomCommune": "HAUTERIVES" + "codePostal": "45310", + "codeCommune": "45099", + "libelleAcheminement": "COINCES", + "nomCommune": "COINCES" }, { - "codePostal": "21910", - "codeCommune": "21048", - "libelleAcheminement": "BARGES", - "nomCommune": "BARGES" + "codePostal": "55210", + "codeCommune": "55551", + "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", + "nomCommune": "VIGNEULLES LES HATTONCHATEL" }, { - "codePostal": "34700", - "codeCommune": "34316", - "libelleAcheminement": "USCLAS DU BOSC", - "nomCommune": "USCLAS DU BOSC" + "codePostal": "55270", + "codeCommune": "55346", + "libelleAcheminement": "MONTFAUCON D ARGONNE", + "nomCommune": "MONTFAUCON D ARGONNE" }, { - "codePostal": "49660", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "42560", + "codeCommune": "42140", + "libelleAcheminement": "MAROLS", + "nomCommune": "MAROLS" }, { - "codePostal": "26600", - "codeCommune": "26156", - "libelleAcheminement": "LARNAGE", - "nomCommune": "LARNAGE" + "codePostal": "45300", + "codeCommune": "45111", + "libelleAcheminement": "COURCY AUX LOGES", + "nomCommune": "COURCY AUX LOGES" }, { - "codePostal": "21410", - "codeCommune": "21051", - "libelleAcheminement": "BAULME LA ROCHE", - "nomCommune": "BAULME LA ROCHE" + "codePostal": "55150", + "codeCommune": "55563", + "libelleAcheminement": "VILLERS LES MANGIENNES", + "nomCommune": "VILLERS LES MANGIENNES" }, { - "codePostal": "34270", - "codeCommune": "34318", - "libelleAcheminement": "VACQUIERES", - "nomCommune": "VACQUIERES" + "codePostal": "55110", + "codeCommune": "55349", + "libelleAcheminement": "MONTIGNY DEVANT SASSEY", + "nomCommune": "MONTIGNY DEVANT SASSEY" }, { - "codePostal": "49800", - "codeCommune": "49307", - "libelleAcheminement": "LOIRE AUTHION", - "nomCommune": "LOIRE AUTHION" + "codePostal": "42380", + "codeCommune": "42142", + "libelleAcheminement": "MERLE LEIGNEC", + "nomCommune": "MERLE LEIGNEC" }, { - "codePostal": "26740", - "codeCommune": "26157", - "libelleAcheminement": "LA LAUPIE", - "nomCommune": "LA LAUPIE" + "codePostal": "45260", + "codeCommune": "45112", + "libelleAcheminement": "LA COUR MARIGNY", + "nomCommune": "LA COUR MARIGNY" }, { - "codePostal": "21310", - "codeCommune": "21053", - "libelleAcheminement": "BEAUMONT SUR VINGEANNE", - "nomCommune": "BEAUMONT SUR VINGEANNE" + "codePostal": "55110", + "codeCommune": "55571", + "libelleAcheminement": "VILOSNES HARAUMONT", + "nomCommune": "VILOSNES HARAUMONT" }, { - "codePostal": "34270", - "codeCommune": "34322", - "libelleAcheminement": "VALFLAUNES", - "nomCommune": "VALFLAUNES" + "codePostal": "55400", + "codeCommune": "55357", + "libelleAcheminement": "MORGEMOULIN", + "nomCommune": "MORGEMOULIN" }, { - "codePostal": "49800", - "codeCommune": "49307", - "libelleAcheminement": "LOIRE AUTHION", - "nomCommune": "LOIRE AUTHION" + "codePostal": "42720", + "codeCommune": "42152", + "libelleAcheminement": "NANDAX", + "nomCommune": "NANDAX" }, { - "codePostal": "26150", - "codeCommune": "26159", - "libelleAcheminement": "LAVAL D AIX", - "nomCommune": "LAVAL D AIX" + "codePostal": "45170", + "codeCommune": "45118", + "libelleAcheminement": "CROTTES EN PITHIVERAIS", + "nomCommune": "CROTTES EN PITHIVERAIS" }, { - "codePostal": "21510", - "codeCommune": "21055", - "libelleAcheminement": "BEAUNOTTE", - "nomCommune": "BEAUNOTTE" + "codePostal": "55190", + "codeCommune": "55573", + "libelleAcheminement": "VOID VACON", + "nomCommune": "VOID VACON" }, { - "codePostal": "34290", - "codeCommune": "34325", - "libelleAcheminement": "VALROS", - "nomCommune": "VALROS" + "codePostal": "55500", + "codeCommune": "55358", + "libelleAcheminement": "CHANTERAINE", + "nomCommune": "CHANTERAINE" }, { - "codePostal": "49800", - "codeCommune": "49307", - "libelleAcheminement": "LOIRE AUTHION", - "nomCommune": "LOIRE AUTHION" + "codePostal": "42470", + "codeCommune": "42153", + "libelleAcheminement": "NEAUX", + "nomCommune": "NEAUX" }, { - "codePostal": "26240", - "codeCommune": "26160", - "libelleAcheminement": "LAVEYRON", - "nomCommune": "LAVEYRON" + "codePostal": "45570", + "codeCommune": "45122", + "libelleAcheminement": "DAMPIERRE EN BURLY", + "nomCommune": "DAMPIERRE EN BURLY" }, { - "codePostal": "21360", - "codeCommune": "21065", - "libelleAcheminement": "BESSEY EN CHAUME", - "nomCommune": "BESSEY EN CHAUME" + "codePostal": "55400", + "codeCommune": "55578", + "libelleAcheminement": "WARCQ", + "nomCommune": "WARCQ" }, { - "codePostal": "34800", - "codeCommune": "34338", - "libelleAcheminement": "VILLENEUVETTE", - "nomCommune": "VILLENEUVETTE" + "codePostal": "55400", + "codeCommune": "55361", + "libelleAcheminement": "MOULAINVILLE", + "nomCommune": "MOULAINVILLE" }, { - "codePostal": "49160", - "codeCommune": "49311", - "libelleAcheminement": "ST PHILBERT DU PEUPLE", - "nomCommune": "ST PHILBERT DU PEUPLE" + "codePostal": "42640", + "codeCommune": "42157", + "libelleAcheminement": "NOAILLY", + "nomCommune": "NOAILLY" }, { - "codePostal": "26510", - "codeCommune": "26161", - "libelleAcheminement": "LEMPS", - "nomCommune": "LEMPS" + "codePostal": "45450", + "codeCommune": "45126", + "libelleAcheminement": "DONNERY", + "nomCommune": "DONNERY" }, { - "codePostal": "21360", - "codeCommune": "21066", - "libelleAcheminement": "BESSEY LA COUR", - "nomCommune": "BESSEY LA COUR" + "codePostal": "56350", + "codeCommune": "56001", + "libelleAcheminement": "ALLAIRE", + "nomCommune": "ALLAIRE" }, { - "codePostal": "34380", - "codeCommune": "34343", - "libelleAcheminement": "VIOLS LE FORT", - "nomCommune": "VIOLS LE FORT" + "codePostal": "55700", + "codeCommune": "55362", + "libelleAcheminement": "MOULINS ST HUBERT", + "nomCommune": "MOULINS ST HUBERT" }, { - "codePostal": "49400", - "codeCommune": "49328", - "libelleAcheminement": "SAUMUR", - "nomCommune": "SAUMUR" + "codePostal": "42260", + "codeCommune": "42160", + "libelleAcheminement": "NOLLIEUX", + "nomCommune": "NOLLIEUX" }, { - "codePostal": "26210", - "codeCommune": "26162", - "libelleAcheminement": "LENS LESTANG", - "nomCommune": "LENS LESTANG" + "codePostal": "45220", + "codeCommune": "45129", + "libelleAcheminement": "DOUCHY MONTCORBON", + "nomCommune": "DOUCHY MONTCORBON" }, { - "codePostal": "21320", - "codeCommune": "21082", - "libelleAcheminement": "BLANCEY", - "nomCommune": "BLANCEY" + "codePostal": "56190", + "codeCommune": "56002", + "libelleAcheminement": "AMBON", + "nomCommune": "AMBON" }, { - "codePostal": "34280", - "codeCommune": "34344", - "libelleAcheminement": "LA GRANDE MOTTE", - "nomCommune": "LA GRANDE MOTTE" + "codePostal": "55160", + "codeCommune": "55363", + "libelleAcheminement": "MOULOTTE", + "nomCommune": "MOULOTTE" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "42120", + "codeCommune": "42161", + "libelleAcheminement": "NOTRE DAME DE BOISSET", + "nomCommune": "NOTRE DAME DE BOISSET" }, { - "codePostal": "26310", - "codeCommune": "26164", - "libelleAcheminement": "LESCHES EN DIOIS", - "nomCommune": "LESCHES EN DIOIS" + "codePostal": "45400", + "codeCommune": "45147", + "libelleAcheminement": "FLEURY LES AUBRAIS", + "nomCommune": "FLEURY LES AUBRAIS" }, { - "codePostal": "21430", - "codeCommune": "21083", - "libelleAcheminement": "BLANOT", - "nomCommune": "BLANOT" + "codePostal": "56610", + "codeCommune": "56003", + "libelleAcheminement": "ARRADON", + "nomCommune": "ARRADON" }, { - "codePostal": "35150", - "codeCommune": "35002", - "libelleAcheminement": "AMANLIS", - "nomCommune": "AMANLIS" + "codePostal": "55000", + "codeCommune": "55366", + "libelleAcheminement": "VAL D ORNAIN", + "nomCommune": "VAL D ORNAIN" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "42120", + "codeCommune": "42166", + "libelleAcheminement": "PARIGNY", + "nomCommune": "PARIGNY" }, { - "codePostal": "26780", - "codeCommune": "26169", - "libelleAcheminement": "MALATAVERNE", - "nomCommune": "MALATAVERNE" + "codePostal": "45340", + "codeCommune": "45151", + "libelleAcheminement": "GAUBERTIN", + "nomCommune": "GAUBERTIN" }, { - "codePostal": "21690", - "codeCommune": "21084", - "libelleAcheminement": "SOURCE SEINE", - "nomCommune": "SOURCE SEINE" + "codePostal": "56190", + "codeCommune": "56004", + "libelleAcheminement": "ARZAL", + "nomCommune": "ARZAL" }, { - "codePostal": "35250", - "codeCommune": "35003", - "libelleAcheminement": "ANDOUILLE NEUVILLE", - "nomCommune": "ANDOUILLE NEUVILLE" + "codePostal": "55190", + "codeCommune": "55368", + "libelleAcheminement": "NAIVES EN BLOIS", + "nomCommune": "NAIVES EN BLOIS" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "42800", + "codeCommune": "42186", + "libelleAcheminement": "RIVE DE GIER", + "nomCommune": "RIVE DE GIER" }, { - "codePostal": "26120", - "codeCommune": "26170", - "libelleAcheminement": "MALISSARD", - "nomCommune": "MALISSARD" + "codePostal": "45110", + "codeCommune": "45153", + "libelleAcheminement": "GERMIGNY DES PRES", + "nomCommune": "GERMIGNY DES PRES" }, { - "codePostal": "21690", - "codeCommune": "21084", - "libelleAcheminement": "SOURCE SEINE", - "nomCommune": "SOURCE SEINE" + "codePostal": "56800", + "codeCommune": "56006", + "libelleAcheminement": "AUGAN", + "nomCommune": "AUGAN" }, { - "codePostal": "35460", - "codeCommune": "35004", - "libelleAcheminement": "VAL COUESNON", - "nomCommune": "VAL COUESNON" + "codePostal": "55500", + "codeCommune": "55371", + "libelleAcheminement": "NANCOIS LE GRAND", + "nomCommune": "NANCOIS LE GRAND" }, { - "codePostal": "49140", - "codeCommune": "49334", - "libelleAcheminement": "SERMAISE", - "nomCommune": "SERMAISE" + "codePostal": "42300", + "codeCommune": "42187", + "libelleAcheminement": "ROANNE", + "nomCommune": "ROANNE" }, { - "codePostal": "26150", - "codeCommune": "26175", - "libelleAcheminement": "MARIGNAC EN DIOIS", - "nomCommune": "MARIGNAC EN DIOIS" + "codePostal": "45300", + "codeCommune": "45157", + "libelleAcheminement": "GIVRAINES", + "nomCommune": "GIVRAINES" }, { - "codePostal": "21520", - "codeCommune": "21090", - "libelleAcheminement": "BOUDREVILLE", - "nomCommune": "BOUDREVILLE" + "codePostal": "56870", + "codeCommune": "56008", + "libelleAcheminement": "BADEN", + "nomCommune": "BADEN" }, { - "codePostal": "35130", - "codeCommune": "35008", - "libelleAcheminement": "AVAILLES SUR SEICHE", - "nomCommune": "AVAILLES SUR SEICHE" + "codePostal": "55500", + "codeCommune": "55372", + "libelleAcheminement": "NANCOIS SUR ORNAIN", + "nomCommune": "NANCOIS SUR ORNAIN" }, { - "codePostal": "49360", - "codeCommune": "49336", - "libelleAcheminement": "SOMLOIRE", - "nomCommune": "SOMLOIRE" + "codePostal": "42330", + "codeCommune": "42206", + "libelleAcheminement": "ST BONNET LES OULES", + "nomCommune": "ST BONNET LES OULES" }, { - "codePostal": "26600", - "codeCommune": "26179", - "libelleAcheminement": "MERCUROL VEAUNES", - "nomCommune": "MERCUROL VEAUNES" + "codePostal": "45480", + "codeCommune": "45160", + "libelleAcheminement": "GRENEVILLE EN BEAUCE", + "nomCommune": "GRENEVILLE EN BEAUCE" }, { - "codePostal": "21250", - "codeCommune": "21095", - "libelleAcheminement": "BOUSSELANGE", - "nomCommune": "BOUSSELANGE" + "codePostal": "56390", + "codeCommune": "56022", + "libelleAcheminement": "BRANDIVY", + "nomCommune": "BRANDIVY" }, { - "codePostal": "35500", - "codeCommune": "35015", - "libelleAcheminement": "BALAZE", - "nomCommune": "BALAZE" + "codePostal": "55500", + "codeCommune": "55374", + "libelleAcheminement": "NANT LE PETIT", + "nomCommune": "NANT LE PETIT" }, { - "codePostal": "49380", - "codeCommune": "49345", - "libelleAcheminement": "BELLEVIGNE EN LAYON", - "nomCommune": "BELLEVIGNE EN LAYON" + "codePostal": "42400", + "codeCommune": "42207", + "libelleAcheminement": "ST CHAMOND", + "nomCommune": "ST CHAMOND" }, { - "codePostal": "26170", - "codeCommune": "26188", - "libelleAcheminement": "MOLLANS SUR OUVEZE", - "nomCommune": "MOLLANS SUR OUVEZE" + "codePostal": "45130", + "codeCommune": "45167", + "libelleAcheminement": "HUISSEAU SUR MAUVES", + "nomCommune": "HUISSEAU SUR MAUVES" }, { - "codePostal": "21200", - "codeCommune": "21099", - "libelleAcheminement": "BOUZE LES BEAUNE", - "nomCommune": "BOUZE LES BEAUNE" + "codePostal": "56800", + "codeCommune": "56032", + "libelleAcheminement": "CAMPENEAC", + "nomCommune": "CAMPENEAC" }, { - "codePostal": "35190", - "codeCommune": "35022", - "libelleAcheminement": "BECHEREL", - "nomCommune": "BECHEREL" + "codePostal": "55500", + "codeCommune": "55376", + "libelleAcheminement": "NANTOIS", + "nomCommune": "NANTOIS" }, { - "codePostal": "49380", - "codeCommune": "49345", - "libelleAcheminement": "BELLEVIGNE EN LAYON", - "nomCommune": "BELLEVIGNE EN LAYON" + "codePostal": "42123", + "codeCommune": "42212", + "libelleAcheminement": "ST CYR DE FAVIERES", + "nomCommune": "ST CYR DE FAVIERES" }, { - "codePostal": "26170", - "codeCommune": "26189", - "libelleAcheminement": "MONTAUBAN SUR L OUVEZE", - "nomCommune": "MONTAUBAN SUR L OUVEZE" + "codePostal": "45300", + "codeCommune": "45170", + "libelleAcheminement": "INTVILLE LA GUETARD", + "nomCommune": "INTVILLE LA GUETARD" }, { - "codePostal": "21580", - "codeCommune": "21118", - "libelleAcheminement": "BUSSEROTTE ET MONTENAILLE", - "nomCommune": "BUSSEROTTE ET MONTENAILLE" + "codePostal": "56140", + "codeCommune": "56035", + "libelleAcheminement": "CARO", + "nomCommune": "CARO" }, { - "codePostal": "35830", - "codeCommune": "35024", - "libelleAcheminement": "BETTON", - "nomCommune": "BETTON" + "codePostal": "55120", + "codeCommune": "55379", + "libelleAcheminement": "LE NEUFOUR", + "nomCommune": "LE NEUFOUR" }, { - "codePostal": "49340", - "codeCommune": "49355", - "libelleAcheminement": "TREMENTINES", - "nomCommune": "TREMENTINES" + "codePostal": "42114", + "codeCommune": "42213", + "libelleAcheminement": "ST CYR DE VALORGES", + "nomCommune": "ST CYR DE VALORGES" }, { - "codePostal": "26400", - "codeCommune": "26195", - "libelleAcheminement": "MONTCLAR SUR GERVANNE", - "nomCommune": "MONTCLAR SUR GERVANNE" + "codePostal": "45620", + "codeCommune": "45171", + "libelleAcheminement": "ISDES", + "nomCommune": "ISDES" }, { - "codePostal": "21120", - "codeCommune": "21127", - "libelleAcheminement": "CHAIGNAY", - "nomCommune": "CHAIGNAY" + "codePostal": "56580", + "codeCommune": "56047", + "libelleAcheminement": "CREDIN", + "nomCommune": "CREDIN" }, { - "codePostal": "35150", - "codeCommune": "35028", - "libelleAcheminement": "BOISTRUDAN", - "nomCommune": "BOISTRUDAN" + "codePostal": "55120", + "codeCommune": "55383", + "libelleAcheminement": "NEUVILLY EN ARGONNE", + "nomCommune": "NEUVILLY EN ARGONNE" }, { - "codePostal": "49700", - "codeCommune": "49359", - "libelleAcheminement": "LES ULMES", - "nomCommune": "LES ULMES" + "codePostal": "42111", + "codeCommune": "42217", + "libelleAcheminement": "ST DIDIER SUR ROCHEFORT", + "nomCommune": "ST DIDIER SUR ROCHEFORT" }, { - "codePostal": "26310", - "codeCommune": "26204", - "libelleAcheminement": "MONTLAUR EN DIOIS", - "nomCommune": "MONTLAUR EN DIOIS" + "codePostal": "45150", + "codeCommune": "45173", + "libelleAcheminement": "JARGEAU", + "nomCommune": "JARGEAU" }, { - "codePostal": "21440", - "codeCommune": "21136", - "libelleAcheminement": "CHAMPAGNY", - "nomCommune": "CHAMPAGNY" + "codePostal": "56540", + "codeCommune": "56048", + "libelleAcheminement": "LE CROISTY", + "nomCommune": "LE CROISTY" }, { - "codePostal": "35890", - "codeCommune": "35033", - "libelleAcheminement": "BOURG DES COMPTES", - "nomCommune": "BOURG DES COMPTES" + "codePostal": "55210", + "codeCommune": "55386", + "libelleAcheminement": "NONSARD LAMARCHE", + "nomCommune": "NONSARD LAMARCHE" }, { - "codePostal": "49400", - "codeCommune": "49374", - "libelleAcheminement": "VILLEBERNIER", - "nomCommune": "VILLEBERNIER" + "codePostal": "42610", + "codeCommune": "42228", + "libelleAcheminement": "ST GEORGES HAUTE VILLE", + "nomCommune": "ST GEORGES HAUTE VILLE" }, { - "codePostal": "26750", - "codeCommune": "26207", - "libelleAcheminement": "MONTMIRAL", - "nomCommune": "MONTMIRAL" + "codePostal": "45340", + "codeCommune": "45176", + "libelleAcheminement": "JURANVILLE", + "nomCommune": "JURANVILLE" }, { - "codePostal": "21230", - "codeCommune": "21140", - "libelleAcheminement": "CHAMPIGNOLLES", - "nomCommune": "CHAMPIGNOLLES" + "codePostal": "56420", + "codeCommune": "56051", + "libelleAcheminement": "CRUGUEL", + "nomCommune": "CRUGUEL" }, { - "codePostal": "35160", - "codeCommune": "35040", - "libelleAcheminement": "BRETEIL", - "nomCommune": "BRETEIL" + "codePostal": "55210", + "codeCommune": "55386", + "libelleAcheminement": "NONSARD LAMARCHE", + "nomCommune": "NONSARD LAMARCHE" }, { - "codePostal": "49140", - "codeCommune": "49377", - "libelleAcheminement": "RIVES DU LOIR EN ANJOU", - "nomCommune": "RIVES DU LOIR EN ANJOU" + "codePostal": "42540", + "codeCommune": "42249", + "libelleAcheminement": "ST JUST LA PENDUE", + "nomCommune": "ST JUST LA PENDUE" }, { - "codePostal": "26350", - "codeCommune": "26210", - "libelleAcheminement": "VALHERBASSE", - "nomCommune": "VALHERBASSE" + "codePostal": "45290", + "codeCommune": "45180", + "libelleAcheminement": "LANGESSE", + "nomCommune": "LANGESSE" }, { - "codePostal": "21690", - "codeCommune": "21141", - "libelleAcheminement": "CHAMPRENAULT", - "nomCommune": "CHAMPRENAULT" + "codePostal": "56410", + "codeCommune": "56054", + "libelleAcheminement": "ERDEVEN", + "nomCommune": "ERDEVEN" }, { - "codePostal": "35190", - "codeCommune": "35050", - "libelleAcheminement": "CARDROC", - "nomCommune": "CARDROC" + "codePostal": "55190", + "codeCommune": "55396", + "libelleAcheminement": "OURCHES SUR MEUSE", + "nomCommune": "OURCHES SUR MEUSE" }, { - "codePostal": "49680", - "codeCommune": "49378", - "libelleAcheminement": "VIVY", - "nomCommune": "VIVY" + "codePostal": "42800", + "codeCommune": "42259", + "libelleAcheminement": "ST MARTIN LA PLAINE", + "nomCommune": "ST MARTIN LA PLAINE" }, { - "codePostal": "26340", - "codeCommune": "26228", - "libelleAcheminement": "PENNES LE SEC", - "nomCommune": "PENNES LE SEC" + "codePostal": "45480", + "codeCommune": "45181", + "libelleAcheminement": "LEOUVILLE", + "nomCommune": "LEOUVILLE" }, { - "codePostal": "21690", - "codeCommune": "21144", - "libelleAcheminement": "CHARENCEY", - "nomCommune": "CHARENCEY" + "codePostal": "56320", + "codeCommune": "56057", + "libelleAcheminement": "LE FAOUET", + "nomCommune": "LE FAOUET" }, { - "codePostal": "35500", - "codeCommune": "35061", - "libelleAcheminement": "LA CHAPELLE ERBREE", - "nomCommune": "LA CHAPELLE ERBREE" + "codePostal": "55150", + "codeCommune": "55403", + "libelleAcheminement": "PEUVILLERS", + "nomCommune": "PEUVILLERS" }, { - "codePostal": "50760", - "codeCommune": "50013", - "libelleAcheminement": "ANNEVILLE EN SAIRE", - "nomCommune": "ANNEVILLE EN SAIRE" + "codePostal": "42330", + "codeCommune": "42264", + "libelleAcheminement": "ST MEDARD EN FOREZ", + "nomCommune": "ST MEDARD EN FOREZ" }, { - "codePostal": "26400", - "codeCommune": "26240", - "libelleAcheminement": "PLAN DE BAIX", - "nomCommune": "PLAN DE BAIX" + "codePostal": "45490", + "codeCommune": "45186", + "libelleAcheminement": "LORCY", + "nomCommune": "LORCY" }, { - "codePostal": "21140", - "codeCommune": "21145", - "libelleAcheminement": "CHARIGNY", - "nomCommune": "CHARIGNY" + "codePostal": "56130", + "codeCommune": "56058", + "libelleAcheminement": "FEREL", + "nomCommune": "FEREL" }, { - "codePostal": "35150", - "codeCommune": "35088", - "libelleAcheminement": "CORPS NUDS", - "nomCommune": "CORPS NUDS" + "codePostal": "55700", + "codeCommune": "55408", + "libelleAcheminement": "POUILLY SUR MEUSE", + "nomCommune": "POUILLY SUR MEUSE" }, { - "codePostal": "50500", - "codeCommune": "50016", - "libelleAcheminement": "APPEVILLE", - "nomCommune": "APPEVILLE" + "codePostal": "42410", + "codeCommune": "42265", + "libelleAcheminement": "ST MICHEL SUR RHONE", + "nomCommune": "ST MICHEL SUR RHONE" }, { - "codePostal": "26470", - "codeCommune": "26245", - "libelleAcheminement": "POMMEROL", - "nomCommune": "POMMEROL" + "codePostal": "45300", + "codeCommune": "45191", + "libelleAcheminement": "LE MALESHERBOIS", + "nomCommune": "LE MALESHERBOIS" }, { - "codePostal": "21310", - "codeCommune": "21146", - "libelleAcheminement": "CHARMES", - "nomCommune": "CHARMES" + "codePostal": "56680", + "codeCommune": "56062", + "libelleAcheminement": "GAVRES", + "nomCommune": "GAVRES" }, { - "codePostal": "35290", - "codeCommune": "35091", - "libelleAcheminement": "LE CROUAIS", - "nomCommune": "LE CROUAIS" + "codePostal": "55300", + "codeCommune": "55415", + "libelleAcheminement": "RANZIERES", + "nomCommune": "RANZIERES" }, { - "codePostal": "50480", - "codeCommune": "50021", - "libelleAcheminement": "AUDOUVILLE LA HUBERT", - "nomCommune": "AUDOUVILLE LA HUBERT" + "codePostal": "42240", + "codeCommune": "42270", + "libelleAcheminement": "ST PAUL EN CORNILLON", + "nomCommune": "ST PAUL EN CORNILLON" }, { - "codePostal": "26800", - "codeCommune": "26252", - "libelleAcheminement": "PORTES LES VALENCE", - "nomCommune": "PORTES LES VALENCE" + "codePostal": "45300", + "codeCommune": "45195", + "libelleAcheminement": "MAREAU AUX BOIS", + "nomCommune": "MAREAU AUX BOIS" }, { - "codePostal": "21400", - "codeCommune": "21149", - "libelleAcheminement": "CHARREY SUR SEINE", - "nomCommune": "CHARREY SUR SEINE" + "codePostal": "56530", + "codeCommune": "56063", + "libelleAcheminement": "GESTEL", + "nomCommune": "GESTEL" }, { - "codePostal": "35130", - "codeCommune": "35102", - "libelleAcheminement": "DROUGES", - "nomCommune": "DROUGES" + "codePostal": "55250", + "codeCommune": "55423", + "libelleAcheminement": "REMBERCOURT SOMMAISNE", + "nomCommune": "REMBERCOURT SOMMAISNE" }, { - "codePostal": "50760", - "codeCommune": "50030", - "libelleAcheminement": "BARFLEUR", - "nomCommune": "BARFLEUR" + "codePostal": "42520", + "codeCommune": "42272", + "libelleAcheminement": "ST PIERRE DE BOEUF", + "nomCommune": "ST PIERRE DE BOEUF" }, { - "codePostal": "26310", - "codeCommune": "26262", - "libelleAcheminement": "RECOUBEAU JANSAC", - "nomCommune": "RECOUBEAU JANSAC" + "codePostal": "45370", + "codeCommune": "45196", + "libelleAcheminement": "MAREAU AUX PRES", + "nomCommune": "MAREAU AUX PRES" }, { - "codePostal": "21320", - "codeCommune": "21152", - "libelleAcheminement": "CHATEAUNEUF", - "nomCommune": "CHATEAUNEUF" + "codePostal": "56800", + "codeCommune": "56065", + "libelleAcheminement": "GOURHEL", + "nomCommune": "GOURHEL" }, { - "codePostal": "35620", - "codeCommune": "35106", - "libelleAcheminement": "ERCE EN LAMEE", - "nomCommune": "ERCE EN LAMEE" + "codePostal": "55130", + "codeCommune": "55436", + "libelleAcheminement": "LES ROISES", + "nomCommune": "LES ROISES" }, { - "codePostal": "50500", - "codeCommune": "50036", - "libelleAcheminement": "BAUPTE", - "nomCommune": "BAUPTE" + "codePostal": "42830", + "codeCommune": "42276", + "libelleAcheminement": "ST PRIEST LA PRUGNE", + "nomCommune": "ST PRIEST LA PRUGNE" }, { - "codePostal": "26190", - "codeCommune": "26270", - "libelleAcheminement": "ROCHECHINARD", - "nomCommune": "ROCHECHINARD" + "codePostal": "45190", + "codeCommune": "45202", + "libelleAcheminement": "MESSAS", + "nomCommune": "MESSAS" }, { - "codePostal": "21610", - "codeCommune": "21158", - "libelleAcheminement": "CHAUME ET COURCHAMP", - "nomCommune": "CHAUME ET COURCHAMP" + "codePostal": "56110", + "codeCommune": "56066", + "libelleAcheminement": "GOURIN", + "nomCommune": "GOURIN" }, { - "codePostal": "35370", - "codeCommune": "35109", - "libelleAcheminement": "ETRELLES", - "nomCommune": "ETRELLES" + "codePostal": "55320", + "codeCommune": "55449", + "libelleAcheminement": "RUPT EN WOEVRE", + "nomCommune": "RUPT EN WOEVRE" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "42440", + "codeCommune": "42278", + "libelleAcheminement": "ST PRIEST LA VETRE", + "nomCommune": "ST PRIEST LA VETRE" }, { - "codePostal": "26600", - "codeCommune": "26271", - "libelleAcheminement": "LA ROCHE DE GLUN", - "nomCommune": "LA ROCHE DE GLUN" + "codePostal": "45200", + "codeCommune": "45208", + "libelleAcheminement": "MONTARGIS", + "nomCommune": "MONTARGIS" }, { - "codePostal": "21520", - "codeCommune": "21159", - "libelleAcheminement": "LA CHAUME", - "nomCommune": "LA CHAUME" + "codePostal": "56590", + "codeCommune": "56069", + "libelleAcheminement": "GROIX", + "nomCommune": "GROIX" }, { - "codePostal": "35420", - "codeCommune": "35111", - "libelleAcheminement": "LE FERRE", - "nomCommune": "LE FERRE" + "codePostal": "55220", + "codeCommune": "55453", + "libelleAcheminement": "ST ANDRE EN BARROIS", + "nomCommune": "ST ANDRE EN BARROIS" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "42370", + "codeCommune": "42281", + "libelleAcheminement": "ST RIRAND", + "nomCommune": "ST RIRAND" }, { - "codePostal": "26300", - "codeCommune": "26273", - "libelleAcheminement": "ROCHEFORT SAMSON", - "nomCommune": "ROCHEFORT SAMSON" + "codePostal": "45700", + "codeCommune": "45212", + "libelleAcheminement": "MONTCRESSON", + "nomCommune": "MONTCRESSON" }, { - "codePostal": "21820", - "codeCommune": "21172", - "libelleAcheminement": "CHIVRES", - "nomCommune": "CHIVRES" + "codePostal": "56150", + "codeCommune": "56074", + "libelleAcheminement": "GUENIN", + "nomCommune": "GUENIN" }, { - "codePostal": "35133", - "codeCommune": "35112", - "libelleAcheminement": "FLEURIGNE", - "nomCommune": "FLEURIGNE" + "codePostal": "55160", + "codeCommune": "55457", + "libelleAcheminement": "ST HILAIRE EN WOEVRE", + "nomCommune": "ST HILAIRE EN WOEVRE" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "42470", + "codeCommune": "42289", + "libelleAcheminement": "ST SYMPHORIEN DE LAY", + "nomCommune": "ST SYMPHORIEN DE LAY" }, { - "codePostal": "26790", - "codeCommune": "26275", - "libelleAcheminement": "ROCHEGUDE", - "nomCommune": "ROCHEGUDE" + "codePostal": "45260", + "codeCommune": "45213", + "libelleAcheminement": "MONTEREAU", + "nomCommune": "MONTEREAU" }, { - "codePostal": "21200", - "codeCommune": "21173", - "libelleAcheminement": "CHOREY LES BEAUNE", - "nomCommune": "CHOREY LES BEAUNE" + "codePostal": "56190", + "codeCommune": "56077", + "libelleAcheminement": "LE GUERNO", + "nomCommune": "LE GUERNO" }, { - "codePostal": "35300", - "codeCommune": "35115", - "libelleAcheminement": "FOUGERES", - "nomCommune": "FOUGERES" + "codePostal": "55160", + "codeCommune": "55457", + "libelleAcheminement": "ST HILAIRE EN WOEVRE", + "nomCommune": "ST HILAIRE EN WOEVRE" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "42600", + "codeCommune": "42290", + "libelleAcheminement": "ST THOMAS LA GARDE", + "nomCommune": "ST THOMAS LA GARDE" }, { - "codePostal": "26260", - "codeCommune": "26294", - "libelleAcheminement": "ST BARDOUX", - "nomCommune": "ST BARDOUX" + "codePostal": "45170", + "codeCommune": "45214", + "libelleAcheminement": "MONTIGNY", + "nomCommune": "MONTIGNY" }, { - "codePostal": "21110", - "codeCommune": "21183", - "libelleAcheminement": "COLLONGES ET PREMIERES", - "nomCommune": "COLLONGES ET PREMIERES" + "codePostal": "56520", + "codeCommune": "56078", + "libelleAcheminement": "GUIDEL", + "nomCommune": "GUIDEL" }, { - "codePostal": "35290", - "codeCommune": "35117", - "libelleAcheminement": "GAEL", - "nomCommune": "GAEL" + "codePostal": "55100", + "codeCommune": "55468", + "libelleAcheminement": "SAMOGNEUX", + "nomCommune": "SAMOGNEUX" }, { - "codePostal": "50460", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "42110", + "codeCommune": "42296", + "libelleAcheminement": "SALT EN DONZY", + "nomCommune": "SALT EN DONZY" }, { - "codePostal": "26260", - "codeCommune": "26301", - "libelleAcheminement": "ST DONAT SUR L HERBASSE", - "nomCommune": "ST DONAT SUR L HERBASSE" + "codePostal": "45270", + "codeCommune": "45223", + "libelleAcheminement": "NESPLOY", + "nomCommune": "NESPLOY" }, { - "codePostal": "21200", - "codeCommune": "21185", - "libelleAcheminement": "COMBERTAULT", - "nomCommune": "COMBERTAULT" + "codePostal": "56240", + "codeCommune": "56089", + "libelleAcheminement": "INGUINIEL", + "nomCommune": "INGUINIEL" }, { - "codePostal": "35580", - "codeCommune": "35123", - "libelleAcheminement": "GOVEN", - "nomCommune": "GOVEN" + "codePostal": "55000", + "codeCommune": "55470", + "libelleAcheminement": "SAUDRUPT", + "nomCommune": "SAUDRUPT" }, { - "codePostal": "50460", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "42990", + "codeCommune": "42298", + "libelleAcheminement": "SAUVAIN", + "nomCommune": "SAUVAIN" }, { - "codePostal": "26150", - "codeCommune": "26308", - "libelleAcheminement": "ST JULIEN EN QUINT", - "nomCommune": "ST JULIEN EN QUINT" + "codePostal": "45500", + "codeCommune": "45227", + "libelleAcheminement": "NEVOY", + "nomCommune": "NEVOY" }, { - "codePostal": "21700", - "codeCommune": "21186", - "libelleAcheminement": "COMBLANCHIEN", - "nomCommune": "COMBLANCHIEN" + "codePostal": "56300", + "codeCommune": "56093", + "libelleAcheminement": "KERGRIST", + "nomCommune": "KERGRIST" }, { - "codePostal": "35580", - "codeCommune": "35127", - "libelleAcheminement": "GUIGNEN", - "nomCommune": "GUIGNEN" + "codePostal": "55110", + "codeCommune": "55471", + "libelleAcheminement": "SAULMORY VILLEFRANCHE", + "nomCommune": "SAULMORY VILLEFRANCHE" }, { - "codePostal": "50800", - "codeCommune": "50048", - "libelleAcheminement": "BESLON", - "nomCommune": "BESLON" + "codePostal": "42460", + "codeCommune": "42300", + "libelleAcheminement": "SEVELINGES", + "nomCommune": "SEVELINGES" }, { - "codePostal": "26420", - "codeCommune": "26309", - "libelleAcheminement": "ST JULIEN EN VERCORS", - "nomCommune": "ST JULIEN EN VERCORS" + "codePostal": "45170", + "codeCommune": "45231", + "libelleAcheminement": "OISON", + "nomCommune": "OISON" }, { - "codePostal": "21320", - "codeCommune": "21187", - "libelleAcheminement": "COMMARIN", - "nomCommune": "COMMARIN" + "codePostal": "56690", + "codeCommune": "56096", + "libelleAcheminement": "LANDAUL", + "nomCommune": "LANDAUL" }, { - "codePostal": "35120", - "codeCommune": "35132", - "libelleAcheminement": "HIREL", - "nomCommune": "HIREL" + "codePostal": "55300", + "codeCommune": "55487", + "libelleAcheminement": "SEUZEY", + "nomCommune": "SEUZEY" }, { - "codePostal": "50610", - "codeCommune": "50066", - "libelleAcheminement": "JULLOUVILLE", - "nomCommune": "JULLOUVILLE" + "codePostal": "42290", + "codeCommune": "42302", + "libelleAcheminement": "SORBIERS", + "nomCommune": "SORBIERS" }, { - "codePostal": "26350", - "codeCommune": "26310", - "libelleAcheminement": "ST LAURENT D ONAY", - "nomCommune": "ST LAURENT D ONAY" + "codePostal": "45390", + "codeCommune": "45233", + "libelleAcheminement": "ONDREVILLE SUR ESSONNE", + "nomCommune": "ONDREVILLE SUR ESSONNE" }, { - "codePostal": "21190", - "codeCommune": "21190", - "libelleAcheminement": "CORCELLES LES ARTS", - "nomCommune": "CORCELLES LES ARTS" + "codePostal": "56120", + "codeCommune": "56102", + "libelleAcheminement": "FORGES DE LANOUEE", + "nomCommune": "FORGES DE LANOUEE" }, { - "codePostal": "35120", - "codeCommune": "35132", - "libelleAcheminement": "HIREL", - "nomCommune": "HIREL" + "codePostal": "55000", + "codeCommune": "55488", + "libelleAcheminement": "SILMONT", + "nomCommune": "SILMONT" }, { - "codePostal": "50200", - "codeCommune": "50072", - "libelleAcheminement": "BRAINVILLE", - "nomCommune": "BRAINVILLE" + "codePostal": "42830", + "codeCommune": "42314", + "libelleAcheminement": "LA TUILIERE", + "nomCommune": "LA TUILIERE" }, { - "codePostal": "26740", - "codeCommune": "26312", - "libelleAcheminement": "ST MARCEL LES SAUZET", - "nomCommune": "ST MARCEL LES SAUZET" + "codePostal": "45000", + "codeCommune": "45234", + "libelleAcheminement": "ORLEANS", + "nomCommune": "ORLEANS" }, { - "codePostal": "21160", - "codeCommune": "21192", - "libelleAcheminement": "CORCELLES LES MONTS", - "nomCommune": "CORCELLES LES MONTS" + "codePostal": "56240", + "codeCommune": "56104", + "libelleAcheminement": "LANVAUDAN", + "nomCommune": "LANVAUDAN" }, { - "codePostal": "35150", - "codeCommune": "35136", - "libelleAcheminement": "JANZE", - "nomCommune": "JANZE" + "codePostal": "55190", + "codeCommune": "55496", + "libelleAcheminement": "SORCY ST MARTIN", + "nomCommune": "SORCY ST MARTIN" }, { - "codePostal": "50290", - "codeCommune": "50076", - "libelleAcheminement": "BREHAL", - "nomCommune": "BREHAL" + "codePostal": "42240", + "codeCommune": "42316", + "libelleAcheminement": "UNIEUX", + "nomCommune": "UNIEUX" }, { - "codePostal": "26330", - "codeCommune": "26314", - "libelleAcheminement": "ST MARTIN D AOUT", - "nomCommune": "ST MARTIN D AOUT" + "codePostal": "45100", + "codeCommune": "45234", + "libelleAcheminement": "ORLEANS", + "nomCommune": "ORLEANS" }, { - "codePostal": "21160", - "codeCommune": "21200", - "libelleAcheminement": "COUCHEY", - "nomCommune": "COUCHEY" + "codePostal": "56190", + "codeCommune": "56109", + "libelleAcheminement": "LAUZACH", + "nomCommune": "LAUZACH" }, { - "codePostal": "35450", - "codeCommune": "35141", - "libelleAcheminement": "LANDAVRAN", - "nomCommune": "LANDAVRAN" + "codePostal": "55000", + "codeCommune": "55514", + "libelleAcheminement": "TREMONT SUR SAULX", + "nomCommune": "TREMONT SUR SAULX" }, { - "codePostal": "50290", - "codeCommune": "50076", - "libelleAcheminement": "BREHAL", - "nomCommune": "BREHAL" + "codePostal": "42131", + "codeCommune": "42322", + "libelleAcheminement": "LA VALLA EN GIER", + "nomCommune": "LA VALLA EN GIER" }, { - "codePostal": "26190", - "codeCommune": "26316", - "libelleAcheminement": "ST MARTIN LE COLONEL", - "nomCommune": "ST MARTIN LE COLONEL" + "codePostal": "45480", + "codeCommune": "45240", + "libelleAcheminement": "OUTARVILLE", + "nomCommune": "OUTARVILLE" }, { - "codePostal": "21460", - "codeCommune": "21203", - "libelleAcheminement": "COURCELLES FREMOY", - "nomCommune": "COURCELLES FREMOY" + "codePostal": "56160", + "codeCommune": "56110", + "libelleAcheminement": "LIGNOL", + "nomCommune": "LIGNOL" }, { - "codePostal": "35133", - "codeCommune": "35142", - "libelleAcheminement": "LANDEAN", - "nomCommune": "LANDEAN" + "codePostal": "55250", + "codeCommune": "55517", + "libelleAcheminement": "SEUIL D ARGONNE", + "nomCommune": "SEUIL D ARGONNE" }, { - "codePostal": "50260", - "codeCommune": "50082", - "libelleAcheminement": "BRICQUEBEC EN COTENTIN", - "nomCommune": "BRICQUEBEC EN COTENTIN" + "codePostal": "42520", + "codeCommune": "42326", + "libelleAcheminement": "VERANNE", + "nomCommune": "VERANNE" }, { - "codePostal": "26110", - "codeCommune": "26317", - "libelleAcheminement": "ST MAURICE SUR EYGUES", - "nomCommune": "ST MAURICE SUR EYGUES" + "codePostal": "45480", + "codeCommune": "45240", + "libelleAcheminement": "OUTARVILLE", + "nomCommune": "OUTARVILLE" }, { - "codePostal": "21580", - "codeCommune": "21207", - "libelleAcheminement": "COURLON", - "nomCommune": "COURLON" + "codePostal": "56160", + "codeCommune": "56113", + "libelleAcheminement": "LOCMALO", + "nomCommune": "LOCMALO" }, { - "codePostal": "35850", - "codeCommune": "35144", - "libelleAcheminement": "LANGAN", - "nomCommune": "LANGAN" + "codePostal": "55250", + "codeCommune": "55517", + "libelleAcheminement": "SEUIL D ARGONNE", + "nomCommune": "SEUIL D ARGONNE" }, { - "codePostal": "50260", - "codeCommune": "50082", - "libelleAcheminement": "BRICQUEBEC EN COTENTIN", - "nomCommune": "BRICQUEBEC EN COTENTIN" + "codePostal": "43490", + "codeCommune": "43008", + "libelleAcheminement": "ARLEMPDES", + "nomCommune": "ARLEMPDES" }, { - "codePostal": "26130", - "codeCommune": "26324", - "libelleAcheminement": "ST PAUL TROIS CHATEAUX", - "nomCommune": "ST PAUL TROIS CHATEAUX" + "codePostal": "45200", + "codeCommune": "45249", + "libelleAcheminement": "PAUCOURT", + "nomCommune": "PAUCOURT" }, { - "codePostal": "21220", - "codeCommune": "21219", - "libelleAcheminement": "CURTIL VERGY", - "nomCommune": "CURTIL VERGY" + "codePostal": "56390", + "codeCommune": "56115", + "libelleAcheminement": "LOCMARIA GRAND CHAMP", + "nomCommune": "LOCMARIA GRAND CHAMP" }, { - "codePostal": "35630", - "codeCommune": "35146", - "libelleAcheminement": "LANGOUET", - "nomCommune": "LANGOUET" + "codePostal": "55500", + "codeCommune": "55518", + "libelleAcheminement": "COUSANCES LES TRICONVILLE", + "nomCommune": "COUSANCES LES TRICONVILLE" }, { - "codePostal": "50200", - "codeCommune": "50084", - "libelleAcheminement": "BRICQUEVILLE LA BLOUETTE", - "nomCommune": "BRICQUEVILLE LA BLOUETTE" + "codePostal": "43340", + "codeCommune": "43019", + "libelleAcheminement": "BARGES", + "nomCommune": "BARGES" }, { - "codePostal": "26270", - "codeCommune": "26337", - "libelleAcheminement": "SAULCE SUR RHONE", - "nomCommune": "SAULCE SUR RHONE" + "codePostal": "45300", + "codeCommune": "45253", + "libelleAcheminement": "PITHIVIERS LE VIEIL", + "nomCommune": "PITHIVIERS LE VIEIL" }, { - "codePostal": "21360", - "codeCommune": "21221", - "libelleAcheminement": "CUSSY LA COLONNE", - "nomCommune": "CUSSY LA COLONNE" + "codePostal": "56800", + "codeCommune": "56122", + "libelleAcheminement": "LOYAT", + "nomCommune": "LOYAT" }, { - "codePostal": "35580", - "codeCommune": "35149", - "libelleAcheminement": "LASSY", - "nomCommune": "LASSY" + "codePostal": "55310", + "codeCommune": "55519", + "libelleAcheminement": "TRONVILLE EN BARROIS", + "nomCommune": "TRONVILLE EN BARROIS" }, { - "codePostal": "50750", - "codeCommune": "50095", - "libelleAcheminement": "CANISY", - "nomCommune": "CANISY" + "codePostal": "43100", + "codeCommune": "43022", + "libelleAcheminement": "BEAUMONT", + "nomCommune": "BEAUMONT" }, { - "codePostal": "26600", - "codeCommune": "26347", - "libelleAcheminement": "TAIN L HERMITAGE", - "nomCommune": "TAIN L HERMITAGE" + "codePostal": "45490", + "codeCommune": "45255", + "libelleAcheminement": "PREFONTAINES", + "nomCommune": "PREFONTAINES" }, { - "codePostal": "21150", - "codeCommune": "21226", - "libelleAcheminement": "DARCEY", - "nomCommune": "DARCEY" + "codePostal": "56430", + "codeCommune": "56127", + "libelleAcheminement": "MAURON", + "nomCommune": "MAURON" }, { - "codePostal": "35133", - "codeCommune": "35150", - "libelleAcheminement": "LECOUSSE", - "nomCommune": "LECOUSSE" + "codePostal": "55190", + "codeCommune": "55520", + "libelleAcheminement": "TROUSSEY", + "nomCommune": "TROUSSEY" }, { - "codePostal": "50580", - "codeCommune": "50097", - "libelleAcheminement": "CANVILLE LA ROCQUE", - "nomCommune": "CANVILLE LA ROCQUE" + "codePostal": "43500", + "codeCommune": "43023", + "libelleAcheminement": "BEAUNE SUR ARZON", + "nomCommune": "BEAUNE SUR ARZON" }, { - "codePostal": "26750", - "codeCommune": "26355", - "libelleAcheminement": "TRIORS", - "nomCommune": "TRIORS" + "codePostal": "45310", + "codeCommune": "45262", + "libelleAcheminement": "ROUVRAY STE CROIX", + "nomCommune": "ROUVRAY STE CROIX" }, { - "codePostal": "21540", - "codeCommune": "21234", - "libelleAcheminement": "DREE", - "nomCommune": "DREE" + "codePostal": "56320", + "codeCommune": "56131", + "libelleAcheminement": "MESLAN", + "nomCommune": "MESLAN" }, { - "codePostal": "35550", - "codeCommune": "35151", - "libelleAcheminement": "LIEURON", - "nomCommune": "LIEURON" + "codePostal": "55800", + "codeCommune": "55531", + "libelleAcheminement": "VASSINCOURT", + "nomCommune": "VASSINCOURT" }, { - "codePostal": "50570", - "codeCommune": "50098", - "libelleAcheminement": "CARANTILLY", - "nomCommune": "CARANTILLY" + "codePostal": "43590", + "codeCommune": "43025", + "libelleAcheminement": "BEAUZAC", + "nomCommune": "BEAUZAC" }, { - "codePostal": "26230", - "codeCommune": "26360", - "libelleAcheminement": "VALAURIE", - "nomCommune": "VALAURIE" + "codePostal": "45300", + "codeCommune": "45263", + "libelleAcheminement": "ROUVRES ST JEAN", + "nomCommune": "ROUVRES ST JEAN" }, { - "codePostal": "21170", - "codeCommune": "21239", - "libelleAcheminement": "ECHENON", - "nomCommune": "ECHENON" + "codePostal": "56890", + "codeCommune": "56132", + "libelleAcheminement": "MEUCON", + "nomCommune": "MEUCON" }, { - "codePostal": "35111", - "codeCommune": "35153", - "libelleAcheminement": "LILLEMER", - "nomCommune": "LILLEMER" + "codePostal": "55000", + "codeCommune": "55541", + "libelleAcheminement": "VAVINCOURT", + "nomCommune": "VAVINCOURT" }, { - "codePostal": "50130", - "codeCommune": "50129", - "libelleAcheminement": "CHERBOURG EN COTENTIN", - "nomCommune": "CHERBOURG EN COTENTIN" + "codePostal": "43160", + "codeCommune": "43027", + "libelleAcheminement": "BERBEZIT", + "nomCommune": "BERBEZIT" }, { - "codePostal": "26310", - "codeCommune": "26361", - "libelleAcheminement": "VALDROME", - "nomCommune": "VALDROME" + "codePostal": "45210", + "codeCommune": "45265", + "libelleAcheminement": "ROZOY LE VIEIL", + "nomCommune": "ROZOY LE VIEIL" }, { - "codePostal": "21360", - "codeCommune": "21243", - "libelleAcheminement": "ECUTIGNY", - "nomCommune": "ECUTIGNY" + "codePostal": "56490", + "codeCommune": "56134", + "libelleAcheminement": "MOHON", + "nomCommune": "MOHON" }, { - "codePostal": "35133", - "codeCommune": "35157", - "libelleAcheminement": "LE LOROUX", - "nomCommune": "LE LOROUX" + "codePostal": "55210", + "codeCommune": "55551", + "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", + "nomCommune": "VIGNEULLES LES HATTONCHATEL" }, { - "codePostal": "50800", - "codeCommune": "50137", - "libelleAcheminement": "LA COLOMBE", - "nomCommune": "LA COLOMBE" + "codePostal": "43170", + "codeCommune": "43029", + "libelleAcheminement": "LA BESSEYRE ST MARY", + "nomCommune": "LA BESSEYRE ST MARY" }, { - "codePostal": "26600", - "codeCommune": "26379", - "libelleAcheminement": "GRANGES LES BEAUMONT", - "nomCommune": "GRANGES LES BEAUMONT" + "codePostal": "45410", + "codeCommune": "45266", + "libelleAcheminement": "RUAN", + "nomCommune": "RUAN" }, { - "codePostal": "21320", - "codeCommune": "21244", - "libelleAcheminement": "EGUILLY", - "nomCommune": "EGUILLY" + "codePostal": "56230", + "codeCommune": "56135", + "libelleAcheminement": "MOLAC", + "nomCommune": "MOLAC" }, { - "codePostal": "35133", - "codeCommune": "35163", - "libelleAcheminement": "LUITRE DOMPIERRE", - "nomCommune": "LUITRE DOMPIERRE" + "codePostal": "55600", + "codeCommune": "55554", + "libelleAcheminement": "VILLECLOYE", + "nomCommune": "VILLECLOYE" }, { - "codePostal": "50420", - "codeCommune": "50139", - "libelleAcheminement": "CONDE SUR VIRE", - "nomCommune": "CONDE SUR VIRE" + "codePostal": "43450", + "codeCommune": "43033", + "libelleAcheminement": "BLESLE", + "nomCommune": "BLESLE" }, { - "codePostal": "27500", - "codeCommune": "27006", - "libelleAcheminement": "AIZIER", - "nomCommune": "AIZIER" + "codePostal": "45130", + "codeCommune": "45269", + "libelleAcheminement": "ST AY", + "nomCommune": "ST AY" }, { - "codePostal": "21500", - "codeCommune": "21259", - "libelleAcheminement": "FAIN LES MONTBARD", - "nomCommune": "FAIN LES MONTBARD" + "codePostal": "56250", + "codeCommune": "56137", + "libelleAcheminement": "MONTERBLANC", + "nomCommune": "MONTERBLANC" }, { - "codePostal": "35210", - "codeCommune": "35163", - "libelleAcheminement": "LUITRE DOMPIERRE", - "nomCommune": "LUITRE DOMPIERRE" + "codePostal": "55260", + "codeCommune": "55555", + "libelleAcheminement": "VILLE DEVANT BELRAIN", + "nomCommune": "VILLE DEVANT BELRAIN" }, { - "codePostal": "50330", - "codeCommune": "50142", - "libelleAcheminement": "VICQ SUR MER", - "nomCommune": "VICQ SUR MER" + "codePostal": "43360", + "codeCommune": "43038", + "libelleAcheminement": "BOURNONCLE ST PIERRE", + "nomCommune": "BOURNONCLE ST PIERRE" }, { - "codePostal": "27140", - "codeCommune": "27010", - "libelleAcheminement": "AMECOURT", - "nomCommune": "AMECOURT" + "codePostal": "45550", + "codeCommune": "45273", + "libelleAcheminement": "ST DENIS DE L HOTEL", + "nomCommune": "ST DENIS DE L HOTEL" }, { - "codePostal": "21410", - "codeCommune": "21273", - "libelleAcheminement": "FLEUREY SUR OUCHE", - "nomCommune": "FLEUREY SUR OUCHE" + "codePostal": "56190", + "codeCommune": "56143", + "libelleAcheminement": "MUZILLAC", + "nomCommune": "MUZILLAC" }, { - "codePostal": "35240", - "codeCommune": "35165", - "libelleAcheminement": "MARCILLE ROBERT", - "nomCommune": "MARCILLE ROBERT" + "codePostal": "55500", + "codeCommune": "55562", + "libelleAcheminement": "VILLERS LE SEC", + "nomCommune": "VILLERS LE SEC" }, { - "codePostal": "50330", - "codeCommune": "50142", - "libelleAcheminement": "VICQ SUR MER", - "nomCommune": "VICQ SUR MER" + "codePostal": "43270", + "codeCommune": "43043", + "libelleAcheminement": "CEAUX D ALLEGRE", + "nomCommune": "CEAUX D ALLEGRE" }, { - "codePostal": "27380", - "codeCommune": "27013", - "libelleAcheminement": "AMFREVILLE SOUS LES MONTS", - "nomCommune": "AMFREVILLE SOUS LES MONTS" + "codePostal": "45220", + "codeCommune": "45275", + "libelleAcheminement": "ST FIRMIN DES BOIS", + "nomCommune": "ST FIRMIN DES BOIS" }, { - "codePostal": "21260", - "codeCommune": "21275", - "libelleAcheminement": "FONCEGRIVE", - "nomCommune": "FONCEGRIVE" + "codePostal": "56500", + "codeCommune": "56144", + "libelleAcheminement": "EVELLYS", + "nomCommune": "EVELLYS" }, { - "codePostal": "35640", - "codeCommune": "35167", - "libelleAcheminement": "MARTIGNE FERCHAUD", - "nomCommune": "MARTIGNE FERCHAUD" + "codePostal": "55160", + "codeCommune": "55565", + "libelleAcheminement": "VILLERS SOUS PAREID", + "nomCommune": "VILLERS SOUS PAREID" }, { - "codePostal": "50630", - "codeCommune": "50150", - "libelleAcheminement": "CRASVILLE", - "nomCommune": "CRASVILLE" + "codePostal": "43150", + "codeCommune": "43047", + "libelleAcheminement": "CHADRON", + "nomCommune": "CHADRON" }, { - "codePostal": "27290", - "codeCommune": "27018", - "libelleAcheminement": "APPEVILLE ANNEBAULT", - "nomCommune": "APPEVILLE ANNEBAULT" + "codePostal": "45600", + "codeCommune": "45277", + "libelleAcheminement": "ST FLORENT", + "nomCommune": "ST FLORENT" }, { - "codePostal": "21121", - "codeCommune": "21278", - "libelleAcheminement": "FONTAINE LES DIJON", - "nomCommune": "FONTAINE LES DIJON" + "codePostal": "56130", + "codeCommune": "56153", + "libelleAcheminement": "PEAULE", + "nomCommune": "PEAULE" }, { - "codePostal": "35330", - "codeCommune": "35168", - "libelleAcheminement": "VAL D ANAST", - "nomCommune": "VAL D ANAST" + "codePostal": "55190", + "codeCommune": "55573", + "libelleAcheminement": "VOID VACON", + "nomCommune": "VOID VACON" }, { - "codePostal": "50370", - "codeCommune": "50152", - "libelleAcheminement": "LES CRESNAYS", - "nomCommune": "LES CRESNAYS" + "codePostal": "43300", + "codeCommune": "43060", + "libelleAcheminement": "CHARRAIX", + "nomCommune": "CHARRAIX" }, { - "codePostal": "27260", - "codeCommune": "27021", - "libelleAcheminement": "ASNIERES", - "nomCommune": "ASNIERES" + "codePostal": "45500", + "codeCommune": "45280", + "libelleAcheminement": "ST GONDON", + "nomCommune": "ST GONDON" }, { - "codePostal": "21440", - "codeCommune": "21284", - "libelleAcheminement": "FRANCHEVILLE", - "nomCommune": "FRANCHEVILLE" + "codePostal": "56220", + "codeCommune": "56154", + "libelleAcheminement": "PEILLAC", + "nomCommune": "PEILLAC" }, { - "codePostal": "35450", - "codeCommune": "35170", - "libelleAcheminement": "MECE", - "nomCommune": "MECE" + "codePostal": "55150", + "codeCommune": "55580", + "libelleAcheminement": "WAVRILLE", + "nomCommune": "WAVRILLE" }, { - "codePostal": "50580", - "codeCommune": "50183", - "libelleAcheminement": "FIERVILLE LES MINES", - "nomCommune": "FIERVILLE LES MINES" + "codePostal": "43320", + "codeCommune": "43062", + "libelleAcheminement": "CHASPUZAC", + "nomCommune": "CHASPUZAC" }, { - "codePostal": "27940", - "codeCommune": "27022", - "libelleAcheminement": "LE VAL D HAZEY", - "nomCommune": "LE VAL D HAZEY" + "codePostal": "45160", + "codeCommune": "45282", + "libelleAcheminement": "ST HILAIRE ST MESMIN", + "nomCommune": "ST HILAIRE ST MESMIN" }, { - "codePostal": "21140", - "codeCommune": "21291", - "libelleAcheminement": "GENAY", - "nomCommune": "GENAY" + "codePostal": "56160", + "codeCommune": "56156", + "libelleAcheminement": "PERSQUEN", + "nomCommune": "PERSQUEN" }, { - "codePostal": "35360", - "codeCommune": "35171", - "libelleAcheminement": "MEDREAC", - "nomCommune": "MEDREAC" + "codePostal": "55210", + "codeCommune": "55583", + "libelleAcheminement": "WOEL", + "nomCommune": "WOEL" }, { - "codePostal": "50310", - "codeCommune": "50190", - "libelleAcheminement": "FONTENAY SUR MER", - "nomCommune": "FONTENAY SUR MER" + "codePostal": "43230", + "codeCommune": "43063", + "libelleAcheminement": "CHASSAGNES", + "nomCommune": "CHASSAGNES" }, { - "codePostal": "27930", - "codeCommune": "27033", - "libelleAcheminement": "BACQUEPUIS", - "nomCommune": "BACQUEPUIS" + "codePostal": "45700", + "codeCommune": "45283", + "libelleAcheminement": "ST HILAIRE SUR PUISEAUX", + "nomCommune": "ST HILAIRE SUR PUISEAUX" }, { - "codePostal": "21520", - "codeCommune": "21296", - "libelleAcheminement": "GEVROLLES", - "nomCommune": "GEVROLLES" + "codePostal": "56420", + "codeCommune": "56157", + "libelleAcheminement": "PLAUDREN", + "nomCommune": "PLAUDREN" }, { - "codePostal": "35420", - "codeCommune": "35174", - "libelleAcheminement": "MELLE", - "nomCommune": "MELLE" + "codePostal": "56640", + "codeCommune": "56005", + "libelleAcheminement": "ARZON", + "nomCommune": "ARZON" }, { - "codePostal": "50450", - "codeCommune": "50197", - "libelleAcheminement": "GAVRAY SUR SIENNE", - "nomCommune": "GAVRAY SUR SIENNE" + "codePostal": "43440", + "codeCommune": "43064", + "libelleAcheminement": "CHASSIGNOLLES", + "nomCommune": "CHASSIGNOLLES" }, { - "codePostal": "27140", - "codeCommune": "27045", - "libelleAcheminement": "BAZINCOURT SUR EPTE", - "nomCommune": "BAZINCOURT SUR EPTE" + "codePostal": "45700", + "codeCommune": "45293", + "libelleAcheminement": "ST MAURICE SUR FESSARD", + "nomCommune": "ST MAURICE SUR FESSARD" }, { - "codePostal": "21150", - "codeCommune": "21299", - "libelleAcheminement": "GISSEY SOUS FLAVIGNY", - "nomCommune": "GISSEY SOUS FLAVIGNY" + "codePostal": "56680", + "codeCommune": "56169", + "libelleAcheminement": "PLOUHINEC", + "nomCommune": "PLOUHINEC" }, { - "codePostal": "35360", - "codeCommune": "35184", - "libelleAcheminement": "MONTAUBAN DE BRETAGNE", - "nomCommune": "MONTAUBAN DE BRETAGNE" + "codePostal": "56150", + "codeCommune": "56010", + "libelleAcheminement": "BAUD", + "nomCommune": "BAUD" }, { - "codePostal": "50560", - "codeCommune": "50198", - "libelleAcheminement": "GEFFOSSES", - "nomCommune": "GEFFOSSES" + "codePostal": "43430", + "codeCommune": "43066", + "libelleAcheminement": "CHAUDEYROLLES", + "nomCommune": "CHAUDEYROLLES" }, { - "codePostal": "27230", - "codeCommune": "27046", - "libelleAcheminement": "BAZOQUES", - "nomCommune": "BAZOQUES" + "codePostal": "45300", + "codeCommune": "45320", + "libelleAcheminement": "THIGNONVILLE", + "nomCommune": "THIGNONVILLE" }, { - "codePostal": "21400", - "codeCommune": "21302", - "libelleAcheminement": "GOMMEVILLE", - "nomCommune": "GOMMEVILLE" + "codePostal": "56400", + "codeCommune": "56175", + "libelleAcheminement": "PLUMERGAT", + "nomCommune": "PLUMERGAT" }, { - "codePostal": "35120", - "codeCommune": "35186", - "libelleAcheminement": "MONT DOL", - "nomCommune": "MONT DOL" + "codePostal": "56380", + "codeCommune": "56012", + "libelleAcheminement": "BEIGNON", + "nomCommune": "BEIGNON" }, { - "codePostal": "50330", - "codeCommune": "50209", - "libelleAcheminement": "GONNEVILLE LE THEIL", - "nomCommune": "GONNEVILLE LE THEIL" + "codePostal": "43160", + "codeCommune": "43076", + "libelleAcheminement": "CONNANGLES", + "nomCommune": "CONNANGLES" }, { - "codePostal": "27190", - "codeCommune": "27047", - "libelleAcheminement": "BEAUBRAY", - "nomCommune": "BEAUBRAY" + "codePostal": "45210", + "codeCommune": "45322", + "libelleAcheminement": "THORAILLES", + "nomCommune": "THORAILLES" }, { - "codePostal": "21290", - "codeCommune": "21312", - "libelleAcheminement": "GURGY LA VILLE", - "nomCommune": "GURGY LA VILLE" + "codePostal": "56330", + "codeCommune": "56177", + "libelleAcheminement": "PLUVIGNER", + "nomCommune": "PLUVIGNER" }, { - "codePostal": "35760", - "codeCommune": "35189", - "libelleAcheminement": "MONTGERMONT", - "nomCommune": "MONTGERMONT" + "codePostal": "56550", + "codeCommune": "56013", + "libelleAcheminement": "BELZ", + "nomCommune": "BELZ" }, { - "codePostal": "50420", - "codeCommune": "50214", - "libelleAcheminement": "GOUVETS", - "nomCommune": "GOUVETS" + "codePostal": "43490", + "codeCommune": "43077", + "libelleAcheminement": "COSTAROS", + "nomCommune": "COSTAROS" }, { - "codePostal": "27330", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "45170", + "codeCommune": "45325", + "libelleAcheminement": "TIVERNON", + "nomCommune": "TIVERNON" }, { - "codePostal": "21150", - "codeCommune": "21314", - "libelleAcheminement": "HAUTEROCHE", - "nomCommune": "HAUTEROCHE" + "codePostal": "56330", + "codeCommune": "56177", + "libelleAcheminement": "PLUVIGNER", + "nomCommune": "PLUVIGNER" }, { - "codePostal": "35520", - "codeCommune": "35193", - "libelleAcheminement": "MONTREUIL LE GAST", - "nomCommune": "MONTREUIL LE GAST" + "codePostal": "56500", + "codeCommune": "56017", + "libelleAcheminement": "BIGNAN", + "nomCommune": "BIGNAN" }, { - "codePostal": "50200", - "codeCommune": "50215", - "libelleAcheminement": "GOUVILLE SUR MER", - "nomCommune": "GOUVILLE SUR MER" + "codePostal": "43500", + "codeCommune": "43080", + "libelleAcheminement": "CRAPONNE SUR ARZON", + "nomCommune": "CRAPONNE SUR ARZON" }, { - "codePostal": "27330", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "45220", + "codeCommune": "45329", + "libelleAcheminement": "TRIGUERES", + "nomCommune": "TRIGUERES" }, { - "codePostal": "21110", - "codeCommune": "21330", - "libelleAcheminement": "LABERGEMENT FOIGNEY", - "nomCommune": "LABERGEMENT FOIGNEY" + "codePostal": "56380", + "codeCommune": "56180", + "libelleAcheminement": "PORCARO", + "nomCommune": "PORCARO" }, { - "codePostal": "35310", - "codeCommune": "35196", - "libelleAcheminement": "MORDELLES", - "nomCommune": "MORDELLES" + "codePostal": "56700", + "codeCommune": "56021", + "libelleAcheminement": "BRANDERION", + "nomCommune": "BRANDERION" }, { - "codePostal": "50200", - "codeCommune": "50219", - "libelleAcheminement": "GRATOT", - "nomCommune": "GRATOT" + "codePostal": "43160", + "codeCommune": "43093", + "libelleAcheminement": "FELINES", + "nomCommune": "FELINES" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "45260", + "codeCommune": "45334", + "libelleAcheminement": "VIEILLES MAISONS SUR JOUDRY", + "nomCommune": "VIEILLES MAISONS SUR JOUDRY" }, { - "codePostal": "21330", - "codeCommune": "21336", - "libelleAcheminement": "LAIGNES", - "nomCommune": "LAIGNES" + "codePostal": "56140", + "codeCommune": "56191", + "libelleAcheminement": "REMINIAC", + "nomCommune": "REMINIAC" }, { - "codePostal": "35410", - "codeCommune": "35204", - "libelleAcheminement": "NOUVOITOU", - "nomCommune": "NOUVOITOU" + "codePostal": "56580", + "codeCommune": "56024", + "libelleAcheminement": "BREHAN", + "nomCommune": "BREHAN" }, { - "codePostal": "50310", - "codeCommune": "50227", - "libelleAcheminement": "LE HAM", - "nomCommune": "LE HAM" + "codePostal": "43250", + "codeCommune": "43099", + "libelleAcheminement": "FRUGERES LES MINES", + "nomCommune": "FRUGERES LES MINES" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "45600", + "codeCommune": "45336", + "libelleAcheminement": "VIGLAIN", + "nomCommune": "VIGLAIN" }, { - "codePostal": "21760", - "codeCommune": "21337", - "libelleAcheminement": "LAMARCHE SUR SAONE", - "nomCommune": "LAMARCHE SUR SAONE" + "codePostal": "56140", + "codeCommune": "56211", + "libelleAcheminement": "ST CONGARD", + "nomCommune": "ST CONGARD" }, { - "codePostal": "35380", - "codeCommune": "35211", - "libelleAcheminement": "PAIMPONT", - "nomCommune": "PAIMPONT" + "codePostal": "56330", + "codeCommune": "56031", + "libelleAcheminement": "CAMORS", + "nomCommune": "CAMORS" }, { - "codePostal": "50690", - "codeCommune": "50230", - "libelleAcheminement": "HARDINVAST", - "nomCommune": "HARDINVAST" + "codePostal": "43500", + "codeCommune": "43108", + "libelleAcheminement": "JULLIANGES", + "nomCommune": "JULLIANGES" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "45600", + "codeCommune": "45340", + "libelleAcheminement": "VILLEMURLIN", + "nomCommune": "VILLEMURLIN" }, { - "codePostal": "21140", - "codeCommune": "21341", - "libelleAcheminement": "LANTILLY", - "nomCommune": "LANTILLY" + "codePostal": "56920", + "codeCommune": "56213", + "libelleAcheminement": "ST GERAND CROIXANVEC", + "nomCommune": "ST GERAND CROIXANVEC" }, { - "codePostal": "35370", - "codeCommune": "35217", - "libelleAcheminement": "LE PERTRE", - "nomCommune": "LE PERTRE" + "codePostal": "56480", + "codeCommune": "56041", + "libelleAcheminement": "CLEGUEREC", + "nomCommune": "CLEGUEREC" }, { - "codePostal": "50200", - "codeCommune": "50243", - "libelleAcheminement": "HEUGUEVILLE SUR SIENNE", - "nomCommune": "HEUGUEVILLE SUR SIENNE" + "codePostal": "43260", + "codeCommune": "43113", + "libelleAcheminement": "LANTRIAC", + "nomCommune": "LANTRIAC" }, { - "codePostal": "27170", - "codeCommune": "27050", - "libelleAcheminement": "BEAUMONTEL", - "nomCommune": "BEAUMONTEL" + "codePostal": "45170", + "codeCommune": "45342", + "libelleAcheminement": "VILLEREAU", + "nomCommune": "VILLEREAU" }, { - "codePostal": "21520", - "codeCommune": "21350", - "libelleAcheminement": "LIGNEROLLES", - "nomCommune": "LIGNEROLLES" + "codePostal": "56730", + "codeCommune": "56214", + "libelleAcheminement": "ST GILDAS DE RHUYS", + "nomCommune": "ST GILDAS DE RHUYS" }, { - "codePostal": "35320", - "codeCommune": "35218", - "libelleAcheminement": "LE PETIT FOUGERAY", - "nomCommune": "LE PETIT FOUGERAY" + "codePostal": "56200", + "codeCommune": "56044", + "libelleAcheminement": "COURNON", + "nomCommune": "COURNON" }, { - "codePostal": "50480", - "codeCommune": "50246", - "libelleAcheminement": "HIESVILLE", - "nomCommune": "HIESVILLE" + "codePostal": "43800", + "codeCommune": "43119", + "libelleAcheminement": "LAVOUTE SUR LOIRE", + "nomCommune": "LAVOUTE SUR LOIRE" }, { - "codePostal": "27800", - "codeCommune": "27052", - "libelleAcheminement": "LE BEC HELLOUIN", - "nomCommune": "LE BEC HELLOUIN" + "codePostal": "45700", + "codeCommune": "45345", + "libelleAcheminement": "VIMORY", + "nomCommune": "VIMORY" }, { - "codePostal": "21290", - "codeCommune": "21359", - "libelleAcheminement": "LUCEY", - "nomCommune": "LUCEY" + "codePostal": "56660", + "codeCommune": "56222", + "libelleAcheminement": "ST JEAN BREVELAY", + "nomCommune": "ST JEAN BREVELAY" }, { - "codePostal": "35680", - "codeCommune": "35220", - "libelleAcheminement": "PIRE CHANCE", - "nomCommune": "PIRE CHANCE" + "codePostal": "56950", + "codeCommune": "56046", + "libelleAcheminement": "CRACH", + "nomCommune": "CRACH" }, { - "codePostal": "50320", - "codeCommune": "50247", - "libelleAcheminement": "HOCQUIGNY", - "nomCommune": "HOCQUIGNY" + "codePostal": "43210", + "codeCommune": "43127", + "libelleAcheminement": "MALVALETTE", + "nomCommune": "MALVALETTE" }, { - "codePostal": "27160", - "codeCommune": "27054", - "libelleAcheminement": "BEMECOURT", - "nomCommune": "BEMECOURT" + "codePostal": "46120", + "codeCommune": "46004", + "libelleAcheminement": "ANGLARS", + "nomCommune": "ANGLARS" }, { - "codePostal": "21390", - "codeCommune": "21380", - "libelleAcheminement": "MARCIGNY SOUS THIL", - "nomCommune": "MARCIGNY SOUS THIL" + "codePostal": "56350", + "codeCommune": "56232", + "libelleAcheminement": "ST PERREUX", + "nomCommune": "ST PERREUX" }, { - "codePostal": "35470", - "codeCommune": "35221", - "libelleAcheminement": "PLECHATEL", - "nomCommune": "PLECHATEL" + "codePostal": "56120", + "codeCommune": "56050", + "libelleAcheminement": "LA CROIX HELLEAN", + "nomCommune": "LA CROIX HELLEAN" }, { - "codePostal": "50700", - "codeCommune": "50251", - "libelleAcheminement": "HUBERVILLE", - "nomCommune": "HUBERVILLE" + "codePostal": "43160", + "codeCommune": "43128", + "libelleAcheminement": "MALVIERES", + "nomCommune": "MALVIERES" }, { - "codePostal": "27520", - "codeCommune": "27062", - "libelleAcheminement": "LES MONTS DU ROUMOIS", - "nomCommune": "LES MONTS DU ROUMOIS" + "codePostal": "46800", + "codeCommune": "46033", + "libelleAcheminement": "PORTE DU QUERCY", + "nomCommune": "PORTE DU QUERCY" }, { - "codePostal": "21320", - "codeCommune": "21382", - "libelleAcheminement": "MARCILLY OGNY", - "nomCommune": "MARCILLY OGNY" + "codePostal": "56120", + "codeCommune": "56236", + "libelleAcheminement": "ST SERVANT", + "nomCommune": "ST SERVANT" }, { - "codePostal": "35380", - "codeCommune": "35223", - "libelleAcheminement": "PLELAN LE GRAND", - "nomCommune": "PLELAN LE GRAND" + "codePostal": "56390", + "codeCommune": "56067", + "libelleAcheminement": "GRAND CHAMP", + "nomCommune": "GRAND CHAMP" }, { - "codePostal": "50510", - "codeCommune": "50252", - "libelleAcheminement": "HUDIMESNIL", - "nomCommune": "HUDIMESNIL" + "codePostal": "43190", + "codeCommune": "43129", + "libelleAcheminement": "LE MAS DE TENCE", + "nomCommune": "LE MAS DE TENCE" }, { - "codePostal": "27250", - "codeCommune": "27069", - "libelleAcheminement": "BOIS ARNAULT", - "nomCommune": "BOIS ARNAULT" + "codePostal": "46100", + "codeCommune": "46035", + "libelleAcheminement": "BOUSSAC", + "nomCommune": "BOUSSAC" }, { - "codePostal": "21320", - "codeCommune": "21392", - "libelleAcheminement": "MARTROIS", - "nomCommune": "MARTROIS" + "codePostal": "56860", + "codeCommune": "56243", + "libelleAcheminement": "SENE", + "nomCommune": "SENE" }, { - "codePostal": "35210", - "codeCommune": "35232", - "libelleAcheminement": "PRINCE", - "nomCommune": "PRINCE" + "codePostal": "56120", + "codeCommune": "56070", + "libelleAcheminement": "GUEGON", + "nomCommune": "GUEGON" }, { - "codePostal": "50540", - "codeCommune": "50256", - "libelleAcheminement": "ISIGNY LE BUAT", - "nomCommune": "ISIGNY LE BUAT" + "codePostal": "43230", + "codeCommune": "43131", + "libelleAcheminement": "MAZERAT AUROUZE", + "nomCommune": "MAZERAT AUROUZE" }, { - "codePostal": "27700", - "codeCommune": "27070", - "libelleAcheminement": "FRENELLES EN VEXIN", - "nomCommune": "FRENELLES EN VEXIN" + "codePostal": "46330", + "codeCommune": "46037", + "libelleAcheminement": "BOUZIES", + "nomCommune": "BOUZIES" }, { - "codePostal": "21350", - "codeCommune": "21395", - "libelleAcheminement": "MASSINGY LES VITTEAUX", - "nomCommune": "MASSINGY LES VITTEAUX" + "codePostal": "56300", + "codeCommune": "56246", + "libelleAcheminement": "LE SOURN", + "nomCommune": "LE SOURN" }, { - "codePostal": "35130", - "codeCommune": "35235", - "libelleAcheminement": "RANNEE", - "nomCommune": "RANNEE" + "codePostal": "56800", + "codeCommune": "56079", + "libelleAcheminement": "GUILLAC", + "nomCommune": "GUILLAC" }, { - "codePostal": "50540", - "codeCommune": "50256", - "libelleAcheminement": "ISIGNY LE BUAT", - "nomCommune": "ISIGNY LE BUAT" + "codePostal": "43300", + "codeCommune": "43132", + "libelleAcheminement": "MAZEYRAT D ALLIER", + "nomCommune": "MAZEYRAT D ALLIER" }, { - "codePostal": "27220", - "codeCommune": "27078", - "libelleAcheminement": "LA BOISSIERE", - "nomCommune": "LA BOISSIERE" + "codePostal": "46320", + "codeCommune": "46039", + "libelleAcheminement": "BRENGUES", + "nomCommune": "BRENGUES" }, { - "codePostal": "21510", - "codeCommune": "21396", - "libelleAcheminement": "MAUVILLY", - "nomCommune": "MAUVILLY" + "codePostal": "56800", + "codeCommune": "56249", + "libelleAcheminement": "TAUPONT", + "nomCommune": "TAUPONT" }, { - "codePostal": "35600", - "codeCommune": "35236", - "libelleAcheminement": "REDON", - "nomCommune": "REDON" + "codePostal": "56490", + "codeCommune": "56080", + "libelleAcheminement": "GUILLIERS", + "nomCommune": "GUILLIERS" }, { - "codePostal": "50520", - "codeCommune": "50260", - "libelleAcheminement": "JUVIGNY LES VALLEES", - "nomCommune": "JUVIGNY LES VALLEES" + "codePostal": "43100", + "codeCommune": "43133", + "libelleAcheminement": "MERCOEUR", + "nomCommune": "MERCOEUR" }, { - "codePostal": "27310", - "codeCommune": "27085", - "libelleAcheminement": "FLANCOURT CRESCY EN ROUMOIS", - "nomCommune": "FLANCOURT CRESCY EN ROUMOIS" + "codePostal": "46140", + "codeCommune": "46044", + "libelleAcheminement": "CAILLAC", + "nomCommune": "CAILLAC" }, { - "codePostal": "21200", - "codeCommune": "21411", - "libelleAcheminement": "MEURSANGES", - "nomCommune": "MEURSANGES" + "codePostal": "56450", + "codeCommune": "56251", + "libelleAcheminement": "THEIX NOYALO", + "nomCommune": "THEIX NOYALO" }, { - "codePostal": "35200", - "codeCommune": "35238", - "libelleAcheminement": "RENNES", - "nomCommune": "RENNES" + "codePostal": "56450", + "codeCommune": "56084", + "libelleAcheminement": "LE HEZO", + "nomCommune": "LE HEZO" }, { - "codePostal": "50520", - "codeCommune": "50260", - "libelleAcheminement": "JUVIGNY LES VALLEES", - "nomCommune": "JUVIGNY LES VALLEES" + "codePostal": "43800", + "codeCommune": "43134", + "libelleAcheminement": "MEZERES", + "nomCommune": "MEZERES" }, { - "codePostal": "27670", - "codeCommune": "27090", - "libelleAcheminement": "BOSROUMOIS", - "nomCommune": "BOSROUMOIS" + "codePostal": "46160", + "codeCommune": "46045", + "libelleAcheminement": "CAJARC", + "nomCommune": "CAJARC" }, { - "codePostal": "21190", - "codeCommune": "21412", - "libelleAcheminement": "MEURSAULT", - "nomCommune": "MEURSAULT" + "codePostal": "56140", + "codeCommune": "56253", + "libelleAcheminement": "TREAL", + "nomCommune": "TREAL" }, { - "codePostal": "35650", - "codeCommune": "35240", - "libelleAcheminement": "LE RHEU", - "nomCommune": "LE RHEU" + "codePostal": "56170", + "codeCommune": "56085", + "libelleAcheminement": "ILE DE HOEDIC", + "nomCommune": "HOEDIC" }, { - "codePostal": "50520", - "codeCommune": "50260", - "libelleAcheminement": "JUVIGNY LES VALLEES", - "nomCommune": "JUVIGNY LES VALLEES" + "codePostal": "43120", + "codeCommune": "43137", + "libelleAcheminement": "MONISTROL SUR LOIRE", + "nomCommune": "MONISTROL SUR LOIRE" }, { - "codePostal": "27480", - "codeCommune": "27094", - "libelleAcheminement": "BOSQUENTIN", - "nomCommune": "BOSQUENTIN" + "codePostal": "46350", + "codeCommune": "46047", + "libelleAcheminement": "CALES", + "nomCommune": "CALES" }, { - "codePostal": "21310", - "codeCommune": "21416", - "libelleAcheminement": "MIREBEAU SUR BEZE", - "nomCommune": "MIREBEAU SUR BEZE" + "codePostal": "56400", + "codeCommune": "56263", + "libelleAcheminement": "STE ANNE D AURAY", + "nomCommune": "STE ANNE D AURAY" }, { - "codePostal": "35560", - "codeCommune": "35242", - "libelleAcheminement": "RIMOU", - "nomCommune": "RIMOU" + "codePostal": "56840", + "codeCommune": "56088", + "libelleAcheminement": "ILE D ARZ", + "nomCommune": "ILE D ARZ" }, { - "codePostal": "50430", - "codeCommune": "50265", - "libelleAcheminement": "LAULNE", - "nomCommune": "LAULNE" + "codePostal": "43270", + "codeCommune": "43138", + "libelleAcheminement": "MONLET", + "nomCommune": "MONLET" }, { - "codePostal": "27250", - "codeCommune": "27096", - "libelleAcheminement": "LES BOTTEREAUX", - "nomCommune": "LES BOTTEREAUX" + "codePostal": "46160", + "codeCommune": "46049", + "libelleAcheminement": "CALVIGNAC", + "nomCommune": "CALVIGNAC" }, { - "codePostal": "21210", - "codeCommune": "21417", - "libelleAcheminement": "MISSERY", - "nomCommune": "MISSERY" + "codePostal": "57920", + "codeCommune": "57001", + "libelleAcheminement": "ABONCOURT", + "nomCommune": "ABONCOURT" }, { - "codePostal": "35250", - "codeCommune": "35251", - "libelleAcheminement": "ST AUBIN D AUBIGNE", - "nomCommune": "ST AUBIN D AUBIGNE" + "codePostal": "56690", + "codeCommune": "56097", + "libelleAcheminement": "LANDEVANT", + "nomCommune": "LANDEVANT" }, { - "codePostal": "50310", - "codeCommune": "50268", - "libelleAcheminement": "LESTRE", - "nomCommune": "LESTRE" + "codePostal": "43290", + "codeCommune": "43141", + "libelleAcheminement": "MONTFAUCON EN VELAY", + "nomCommune": "MONTFAUCON EN VELAY" }, { - "codePostal": "27700", - "codeCommune": "27097", - "libelleAcheminement": "BOUAFLES", - "nomCommune": "BOUAFLES" + "codePostal": "46700", + "codeCommune": "46061", + "libelleAcheminement": "CASSAGNES", + "nomCommune": "CASSAGNES" }, { - "codePostal": "21510", - "codeCommune": "21418", - "libelleAcheminement": "MOITRON", - "nomCommune": "MOITRON" + "codePostal": "57340", + "codeCommune": "57004", + "libelleAcheminement": "ACHAIN", + "nomCommune": "ACHAIN" }, { - "codePostal": "35800", - "codeCommune": "35256", - "libelleAcheminement": "ST BRIAC SUR MER", - "nomCommune": "ST BRIAC SUR MER" + "codePostal": "56120", + "codeCommune": "56102", + "libelleAcheminement": "FORGES DE LANOUEE", + "nomCommune": "FORGES DE LANOUEE" }, { - "codePostal": "50250", - "codeCommune": "50273", - "libelleAcheminement": "MONTSENELLE", - "nomCommune": "MONTSENELLE" + "codePostal": "43300", + "codeCommune": "43149", + "libelleAcheminement": "PEBRAC", + "nomCommune": "PEBRAC" }, { - "codePostal": "27210", - "codeCommune": "27100", - "libelleAcheminement": "BOULLEVILLE", - "nomCommune": "BOULLEVILLE" + "codePostal": "46310", + "codeCommune": "46072", + "libelleAcheminement": "CONCORES", + "nomCommune": "CONCORES" }, { - "codePostal": "21140", - "codeCommune": "21431", - "libelleAcheminement": "MONTIGNY SUR ARMANCON", - "nomCommune": "MONTIGNY SUR ARMANCON" + "codePostal": "57380", + "codeCommune": "57008", + "libelleAcheminement": "ADELANGE", + "nomCommune": "ADELANGE" }, { - "codePostal": "35460", - "codeCommune": "35257", - "libelleAcheminement": "MAEN ROCH", - "nomCommune": "MAEN ROCH" + "codePostal": "56870", + "codeCommune": "56106", + "libelleAcheminement": "LARMOR BADEN", + "nomCommune": "LARMOR BADEN" }, { - "codePostal": "50290", - "codeCommune": "50277", - "libelleAcheminement": "LONGUEVILLE", - "nomCommune": "LONGUEVILLE" + "codePostal": "43000", + "codeCommune": "43157", + "libelleAcheminement": "LE PUY EN VELAY", + "nomCommune": "LE PUY EN VELAY" }, { - "codePostal": "27210", - "codeCommune": "27100", - "libelleAcheminement": "BOULLEVILLE", - "nomCommune": "BOULLEVILLE" + "codePostal": "46130", + "codeCommune": "46076", + "libelleAcheminement": "CORNAC", + "nomCommune": "CORNAC" }, { - "codePostal": "21220", - "codeCommune": "21442", - "libelleAcheminement": "MOREY ST DENIS", - "nomCommune": "MOREY ST DENIS" + "codePostal": "57590", + "codeCommune": "57009", + "libelleAcheminement": "AJONCOURT", + "nomCommune": "AJONCOURT" }, { - "codePostal": "35350", - "codeCommune": "35263", - "libelleAcheminement": "ST COULOMB", - "nomCommune": "ST COULOMB" + "codePostal": "56230", + "codeCommune": "56108", + "libelleAcheminement": "LARRE", + "nomCommune": "LARRE" }, { - "codePostal": "50320", - "codeCommune": "50281", - "libelleAcheminement": "LA LUCERNE D OUTREMER", - "nomCommune": "LA LUCERNE D OUTREMER" + "codePostal": "43290", + "codeCommune": "43159", + "libelleAcheminement": "RAUCOULES", + "nomCommune": "RAUCOULES" }, { - "codePostal": "27380", - "codeCommune": "27104", - "libelleAcheminement": "BOURG BEAUDOUIN", - "nomCommune": "BOURG BEAUDOUIN" + "codePostal": "46320", + "codeCommune": "46090", + "libelleAcheminement": "DURBANS", + "nomCommune": "DURBANS" }, { - "codePostal": "21400", - "codeCommune": "21444", - "libelleAcheminement": "MOSSON", - "nomCommune": "MOSSON" + "codePostal": "57130", + "codeCommune": "57021", + "libelleAcheminement": "ANCY DORNOT", + "nomCommune": "ANCY DORNOT" }, { - "codePostal": "35230", - "codeCommune": "35266", - "libelleAcheminement": "ST ERBLON", - "nomCommune": "ST ERBLON" + "codePostal": "56220", + "codeCommune": "56111", + "libelleAcheminement": "LIMERZEL", + "nomCommune": "LIMERZEL" }, { - "codePostal": "50870", - "codeCommune": "50282", - "libelleAcheminement": "LE LUOT", - "nomCommune": "LE LUOT" + "codePostal": "43340", + "codeCommune": "43160", + "libelleAcheminement": "RAURET", + "nomCommune": "RAURET" }, { - "codePostal": "27520", - "codeCommune": "27105", - "libelleAcheminement": "GRAND BOURGTHEROULDE", - "nomCommune": "GRAND BOURGTHEROULDE" + "codePostal": "46320", + "codeCommune": "46093", + "libelleAcheminement": "ESPAGNAC STE EULALIE", + "nomCommune": "ESPAGNAC STE EULALIE" }, { - "codePostal": "21500", - "codeCommune": "21446", - "libelleAcheminement": "MOUTIERS ST JEAN", - "nomCommune": "MOUTIERS ST JEAN" + "codePostal": "57440", + "codeCommune": "57022", + "libelleAcheminement": "ANGEVILLERS", + "nomCommune": "ANGEVILLERS" }, { - "codePostal": "35610", - "codeCommune": "35270", - "libelleAcheminement": "ST GEORGES DE GREHAIGNE", - "nomCommune": "ST GEORGES DE GREHAIGNE" + "codePostal": "56390", + "codeCommune": "56120", + "libelleAcheminement": "LOCQUELTAS", + "nomCommune": "LOCQUELTAS" }, { - "codePostal": "50260", - "codeCommune": "50285", - "libelleAcheminement": "MAGNEVILLE", - "nomCommune": "MAGNEVILLE" + "codePostal": "43300", + "codeCommune": "43167", + "libelleAcheminement": "ST ARCONS D ALLIER", + "nomCommune": "ST ARCONS D ALLIER" }, { - "codePostal": "27230", - "codeCommune": "27106", - "libelleAcheminement": "BOURNAINVILLE FAVEROLLES", - "nomCommune": "BOURNAINVILLE FAVEROLLES" + "codePostal": "46320", + "codeCommune": "46094", + "libelleAcheminement": "ESPEDAILLAC", + "nomCommune": "ESPEDAILLAC" }, { - "codePostal": "21390", - "codeCommune": "21449", - "libelleAcheminement": "NAN SOUS THIL", - "nomCommune": "NAN SOUS THIL" + "codePostal": "57640", + "codeCommune": "57024", + "libelleAcheminement": "ANTILLY", + "nomCommune": "ANTILLY" }, { - "codePostal": "35370", - "codeCommune": "35272", - "libelleAcheminement": "ST GERMAIN DU PINEL", - "nomCommune": "ST GERMAIN DU PINEL" + "codePostal": "56220", + "codeCommune": "56123", + "libelleAcheminement": "MALANSAC", + "nomCommune": "MALANSAC" }, { - "codePostal": "50300", - "codeCommune": "50288", - "libelleAcheminement": "MARCEY LES GREVES", - "nomCommune": "MARCEY LES GREVES" + "codePostal": "43300", + "codeCommune": "43171", + "libelleAcheminement": "ST BERAIN", + "nomCommune": "ST BERAIN" }, { - "codePostal": "27800", - "codeCommune": "27113", - "libelleAcheminement": "BRETIGNY", - "nomCommune": "BRETIGNY" + "codePostal": "46700", + "codeCommune": "46107", + "libelleAcheminement": "FLORESSAS", + "nomCommune": "FLORESSAS" }, { - "codePostal": "21800", - "codeCommune": "21452", - "libelleAcheminement": "NEUILLY CRIMOLOIS", - "nomCommune": "NEUILLY CRIMOLOIS" + "codePostal": "57320", + "codeCommune": "57025", + "libelleAcheminement": "ANZELING", + "nomCommune": "ANZELING" }, { - "codePostal": "35630", - "codeCommune": "35276", - "libelleAcheminement": "ST GONDRAN", - "nomCommune": "ST GONDRAN" + "codePostal": "56130", + "codeCommune": "56126", + "libelleAcheminement": "MARZAN", + "nomCommune": "MARZAN" }, { - "codePostal": "50190", - "codeCommune": "50289", - "libelleAcheminement": "MARCHESIEUX", - "nomCommune": "MARCHESIEUX" + "codePostal": "43510", + "codeCommune": "43198", + "libelleAcheminement": "ST JEAN LACHALM", + "nomCommune": "ST JEAN LACHALM" }, { - "codePostal": "27270", - "codeCommune": "27117", - "libelleAcheminement": "BROGLIE", - "nomCommune": "BROGLIE" + "codePostal": "46400", + "codeCommune": "46115", + "libelleAcheminement": "FRAYSSINHES", + "nomCommune": "FRAYSSINHES" }, { - "codePostal": "21490", - "codeCommune": "21462", - "libelleAcheminement": "NORGES LA VILLE", - "nomCommune": "NORGES LA VILLE" + "codePostal": "57640", + "codeCommune": "57028", + "libelleAcheminement": "ARGANCY", + "nomCommune": "ARGANCY" }, { - "codePostal": "35136", - "codeCommune": "35281", - "libelleAcheminement": "ST JACQUES DE LA LANDE", - "nomCommune": "ST JACQUES DE LA LANDE" + "codePostal": "56310", + "codeCommune": "56128", + "libelleAcheminement": "MELRAND", + "nomCommune": "MELRAND" }, { - "codePostal": "50410", - "codeCommune": "50291", - "libelleAcheminement": "MARGUERAY", - "nomCommune": "MARGUERAY" + "codePostal": "43100", + "codeCommune": "43207", + "libelleAcheminement": "ST LAURENT CHABREUGES", + "nomCommune": "ST LAURENT CHABREUGES" }, { - "codePostal": "27190", - "codeCommune": "27120", - "libelleAcheminement": "BUREY", - "nomCommune": "BUREY" + "codePostal": "46160", + "codeCommune": "46116", + "libelleAcheminement": "FRONTENAC", + "nomCommune": "FRONTENAC" }, { - "codePostal": "21310", - "codeCommune": "21467", - "libelleAcheminement": "OISILLY", - "nomCommune": "OISILLY" + "codePostal": "57405", + "codeCommune": "57033", + "libelleAcheminement": "ARZVILLER", + "nomCommune": "ARZVILLER" }, { - "codePostal": "35220", - "codeCommune": "35283", - "libelleAcheminement": "ST JEAN SUR VILAINE", - "nomCommune": "ST JEAN SUR VILAINE" + "codePostal": "56490", + "codeCommune": "56129", + "libelleAcheminement": "MENEAC", + "nomCommune": "MENEAC" }, { - "codePostal": "50500", - "codeCommune": "50298", - "libelleAcheminement": "MEAUTIS", - "nomCommune": "MEAUTIS" + "codePostal": "43150", + "codeCommune": "43210", + "libelleAcheminement": "ST MARTIN DE FUGERES", + "nomCommune": "ST MARTIN DE FUGERES" }, { - "codePostal": "27490", - "codeCommune": "27124", - "libelleAcheminement": "CAILLY SUR EURE", - "nomCommune": "CAILLY SUR EURE" + "codePostal": "46130", + "codeCommune": "46117", + "libelleAcheminement": "GAGNAC SUR CERE", + "nomCommune": "GAGNAC SUR CERE" }, { - "codePostal": "21260", - "codeCommune": "21472", - "libelleAcheminement": "ORVILLE", - "nomCommune": "ORVILLE" + "codePostal": "57580", + "codeCommune": "57037", + "libelleAcheminement": "AUBE", + "nomCommune": "AUBE" }, { - "codePostal": "35270", - "codeCommune": "35286", - "libelleAcheminement": "ST LEGER DES PRES", - "nomCommune": "ST LEGER DES PRES" + "codePostal": "56140", + "codeCommune": "56133", + "libelleAcheminement": "MISSIRIAC", + "nomCommune": "MISSIRIAC" }, { - "codePostal": "50000", - "codeCommune": "50321", - "libelleAcheminement": "LE MESNIL ROUXELIN", - "nomCommune": "LE MESNIL ROUXELIN" + "codePostal": "43200", + "codeCommune": "43211", + "libelleAcheminement": "ST MAURICE DE LIGNON", + "nomCommune": "ST MAURICE DE LIGNON" }, { - "codePostal": "27310", - "codeCommune": "27133", - "libelleAcheminement": "CAUMONT", - "nomCommune": "CAUMONT" + "codePostal": "46130", + "codeCommune": "46124", + "libelleAcheminement": "GLANES", + "nomCommune": "GLANES" }, { - "codePostal": "21250", - "codeCommune": "21475", - "libelleAcheminement": "PAGNY LE CHATEAU", - "nomCommune": "PAGNY LE CHATEAU" + "codePostal": "57390", + "codeCommune": "57038", + "libelleAcheminement": "AUDUN LE TICHE", + "nomCommune": "AUDUN LE TICHE" }, { - "codePostal": "35400", - "codeCommune": "35288", - "libelleAcheminement": "ST MALO", - "nomCommune": "ST MALO" + "codePostal": "56380", + "codeCommune": "56136", + "libelleAcheminement": "MONTENEUF", + "nomCommune": "MONTENEUF" }, { - "codePostal": "50620", - "codeCommune": "50324", - "libelleAcheminement": "LE MESNIL VENERON", - "nomCommune": "LE MESNIL VENERON" + "codePostal": "43160", + "codeCommune": "43214", + "libelleAcheminement": "ST PAL DE SENOUIRE", + "nomCommune": "ST PAL DE SENOUIRE" }, { - "codePostal": "27190", - "codeCommune": "27141", - "libelleAcheminement": "CHAMP DOLENT", - "nomCommune": "CHAMP DOLENT" + "codePostal": "46210", + "codeCommune": "46125", + "libelleAcheminement": "GORSES", + "nomCommune": "GORSES" }, { - "codePostal": "21420", - "codeCommune": "21480", - "libelleAcheminement": "PERNAND VERGELESSES", - "nomCommune": "PERNAND VERGELESSES" + "codePostal": "57810", + "codeCommune": "57042", + "libelleAcheminement": "AVRICOURT", + "nomCommune": "AVRICOURT" }, { - "codePostal": "35480", - "codeCommune": "35289", - "libelleAcheminement": "ST MALO DE PHILY", - "nomCommune": "ST MALO DE PHILY" + "codePostal": "56500", + "codeCommune": "56144", + "libelleAcheminement": "EVELLYS", + "nomCommune": "EVELLYS" }, { - "codePostal": "50450", - "codeCommune": "50336", - "libelleAcheminement": "MONTAIGU LES BOIS", - "nomCommune": "MONTAIGU LES BOIS" + "codePostal": "43580", + "codeCommune": "43221", + "libelleAcheminement": "ST PRIVAT D ALLIER", + "nomCommune": "ST PRIVAT D ALLIER" }, { - "codePostal": "27220", - "codeCommune": "27144", - "libelleAcheminement": "CHAMPIGNY LA FUTELAYE", - "nomCommune": "CHAMPIGNY LA FUTELAYE" + "codePostal": "46210", + "codeCommune": "46135", + "libelleAcheminement": "LABASTIDE DU HAUT MONT", + "nomCommune": "LABASTIDE DU HAUT MONT" }, { - "codePostal": "21140", - "codeCommune": "21497", - "libelleAcheminement": "PONT ET MASSENE", - "nomCommune": "PONT ET MASSENE" + "codePostal": "57580", + "codeCommune": "57057", + "libelleAcheminement": "BECHY", + "nomCommune": "BECHY" }, { - "codePostal": "35120", - "codeCommune": "35291", - "libelleAcheminement": "ST MARCAN", - "nomCommune": "ST MARCAN" + "codePostal": "56300", + "codeCommune": "56146", + "libelleAcheminement": "NEULLIAC", + "nomCommune": "NEULLIAC" }, { - "codePostal": "50410", - "codeCommune": "50338", - "libelleAcheminement": "MONTBRAY", - "nomCommune": "MONTBRAY" + "codePostal": "43620", + "codeCommune": "43223", + "libelleAcheminement": "ST ROMAIN LACHALM", + "nomCommune": "ST ROMAIN LACHALM" }, { - "codePostal": "27260", - "codeCommune": "27146", - "libelleAcheminement": "LA CHAPELLE BAYVEL", - "nomCommune": "LA CHAPELLE BAYVEL" + "codePostal": "46090", + "codeCommune": "46137", + "libelleAcheminement": "LABASTIDE MARNHAC", + "nomCommune": "LABASTIDE MARNHAC" }, { - "codePostal": "21570", - "codeCommune": "21524", - "libelleAcheminement": "RIEL LES EAUX", - "nomCommune": "RIEL LES EAUX" + "codePostal": "57570", + "codeCommune": "57062", + "libelleAcheminement": "BERG SUR MOSELLE", + "nomCommune": "BERG SUR MOSELLE" }, { - "codePostal": "35600", - "codeCommune": "35294", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "56800", + "codeCommune": "56165", + "libelleAcheminement": "PLOERMEL", + "nomCommune": "PLOERMEL" }, { - "codePostal": "50570", - "codeCommune": "50352", - "libelleAcheminement": "MONTREUIL SUR LOZON", - "nomCommune": "MONTREUIL SUR LOZON" + "codePostal": "43500", + "codeCommune": "43228", + "libelleAcheminement": "ST VICTOR SUR ARLANC", + "nomCommune": "ST VICTOR SUR ARLANC" }, { - "codePostal": "27930", - "codeCommune": "27147", - "libelleAcheminement": "LA CHAPELLE DU BOIS DES FAULX", - "nomCommune": "LA CHAPELLE DU BOIS DES FAULX" + "codePostal": "46340", + "codeCommune": "46164", + "libelleAcheminement": "LAVERCANTIERE", + "nomCommune": "LAVERCANTIERE" }, { - "codePostal": "21350", - "codeCommune": "21537", - "libelleAcheminement": "SAFFRES", - "nomCommune": "SAFFRES" + "codePostal": "57320", + "codeCommune": "57079", + "libelleAcheminement": "BIBICHE", + "nomCommune": "BIBICHE" }, { - "codePostal": "35380", - "codeCommune": "35305", - "libelleAcheminement": "ST PERAN", - "nomCommune": "ST PERAN" + "codePostal": "56240", + "codeCommune": "56166", + "libelleAcheminement": "PLOUAY", + "nomCommune": "PLOUAY" }, { - "codePostal": "50170", - "codeCommune": "50353", - "libelleAcheminement": "LE MONT ST MICHEL", - "nomCommune": "LE MONT ST MICHEL" + "codePostal": "43140", + "codeCommune": "43236", + "libelleAcheminement": "LA SEAUVE SUR SEMENE", + "nomCommune": "LA SEAUVE SUR SEMENE" }, { - "codePostal": "27500", - "codeCommune": "27163", - "libelleAcheminement": "COLLETOT", - "nomCommune": "COLLETOT" + "codePostal": "46120", + "codeCommune": "46170", + "libelleAcheminement": "LEYME", + "nomCommune": "LEYME" }, { - "codePostal": "21850", - "codeCommune": "21540", - "libelleAcheminement": "ST APOLLINAIRE", - "nomCommune": "ST APOLLINAIRE" + "codePostal": "57930", + "codeCommune": "57086", + "libelleAcheminement": "BELLES FORETS", + "nomCommune": "BELLES FORETS" }, { - "codePostal": "35630", - "codeCommune": "35317", - "libelleAcheminement": "ST SYMPHORIEN", - "nomCommune": "ST SYMPHORIEN" + "codePostal": "56400", + "codeCommune": "56167", + "libelleAcheminement": "PLOUGOUMELEN", + "nomCommune": "PLOUGOUMELEN" }, { - "codePostal": "50290", - "codeCommune": "50365", - "libelleAcheminement": "MUNEVILLE SUR MER", - "nomCommune": "MUNEVILLE SUR MER" + "codePostal": "43160", + "codeCommune": "43237", + "libelleAcheminement": "SEMBADEL", + "nomCommune": "SEMBADEL" }, { - "codePostal": "27430", - "codeCommune": "27168", - "libelleAcheminement": "CONNELLES", - "nomCommune": "CONNELLES" + "codePostal": "46100", + "codeCommune": "46175", + "libelleAcheminement": "LISSAC ET MOURET", + "nomCommune": "LISSAC ET MOURET" }, { - "codePostal": "21700", - "codeCommune": "21542", - "libelleAcheminement": "ST BERNARD", - "nomCommune": "ST BERNARD" + "codePostal": "57660", + "codeCommune": "57088", + "libelleAcheminement": "BISTROFF", + "nomCommune": "BISTROFF" }, { - "codePostal": "35130", - "codeCommune": "35325", - "libelleAcheminement": "LA SELLE GUERCHAISE", - "nomCommune": "LA SELLE GUERCHAISE" + "codePostal": "56420", + "codeCommune": "56172", + "libelleAcheminement": "PLUMELEC", + "nomCommune": "PLUMELEC" }, { - "codePostal": "50210", - "codeCommune": "50378", - "libelleAcheminement": "NOTRE DAME DE CENILLY", - "nomCommune": "NOTRE DAME DE CENILLY" + "codePostal": "43510", + "codeCommune": "43238", + "libelleAcheminement": "SENEUJOLS", + "nomCommune": "SENEUJOLS" }, { - "codePostal": "27260", - "codeCommune": "27170", - "libelleAcheminement": "CORMEILLES", - "nomCommune": "CORMEILLES" + "codePostal": "46250", + "codeCommune": "46184", + "libelleAcheminement": "MARMINIAC", + "nomCommune": "MARMINIAC" }, { - "codePostal": "21400", - "codeCommune": "21545", - "libelleAcheminement": "STE COLOMBE SUR SEINE", - "nomCommune": "STE COLOMBE SUR SEINE" + "codePostal": "57200", + "codeCommune": "57092", + "libelleAcheminement": "BLIES EBERSING", + "nomCommune": "BLIES EBERSING" }, { - "codePostal": "35490", - "codeCommune": "35326", - "libelleAcheminement": "SENS DE BRETAGNE", - "nomCommune": "SENS DE BRETAGNE" + "codePostal": "56310", + "codeCommune": "56173", + "libelleAcheminement": "PLUMELIAU BIEUZY", + "nomCommune": "PLUMELIAU BIEUZY" }, { - "codePostal": "50690", - "codeCommune": "50382", - "libelleAcheminement": "NOUAINVILLE", - "nomCommune": "NOUAINVILLE" + "codePostal": "43580", + "codeCommune": "43245", + "libelleAcheminement": "THORAS", + "nomCommune": "THORAS" }, { - "codePostal": "27500", - "codeCommune": "27174", - "libelleAcheminement": "CORNEVILLE SUR RISLE", - "nomCommune": "CORNEVILLE SUR RISLE" + "codePostal": "46800", + "codeCommune": "46201", + "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", + "nomCommune": "MONTCUQ EN QUERCY BLANC" }, { - "codePostal": "21270", - "codeCommune": "21556", - "libelleAcheminement": "ST LEGER TRIEY", - "nomCommune": "ST LEGER TRIEY" + "codePostal": "57200", + "codeCommune": "57093", + "libelleAcheminement": "BLIES GUERSVILLER", + "nomCommune": "BLIES GUERSVILLER" }, { - "codePostal": "35530", - "codeCommune": "35327", - "libelleAcheminement": "SERVON SUR VILAINE", - "nomCommune": "SERVON SUR VILAINE" + "codePostal": "56300", + "codeCommune": "56178", + "libelleAcheminement": "PONTIVY", + "nomCommune": "PONTIVY" }, { - "codePostal": "50660", - "codeCommune": "50388", - "libelleAcheminement": "ORVAL SUR SIENNE", - "nomCommune": "ORVAL SUR SIENNE" + "codePostal": "43530", + "codeCommune": "43246", + "libelleAcheminement": "TIRANGES", + "nomCommune": "TIRANGES" }, { - "codePostal": "27320", - "codeCommune": "27181", - "libelleAcheminement": "COURDEMANCHE", - "nomCommune": "COURDEMANCHE" + "codePostal": "46800", + "codeCommune": "46201", + "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", + "nomCommune": "MONTCUQ EN QUERCY BLANC" }, { - "codePostal": "21410", - "codeCommune": "21559", - "libelleAcheminement": "STE MARIE SUR OUCHE", - "nomCommune": "STE MARIE SUR OUCHE" + "codePostal": "57220", + "codeCommune": "57095", + "libelleAcheminement": "BOUCHEPORN", + "nomCommune": "BOUCHEPORN" }, { - "codePostal": "35610", - "codeCommune": "35329", - "libelleAcheminement": "SOUGEAL", - "nomCommune": "SOUGEAL" + "codePostal": "56320", + "codeCommune": "56182", + "libelleAcheminement": "PRIZIAC", + "nomCommune": "PRIZIAC" }, { - "codePostal": "50600", - "codeCommune": "50391", - "libelleAcheminement": "GRANDPARIGNY", - "nomCommune": "GRANDPARIGNY" + "codePostal": "43450", + "codeCommune": "43247", + "libelleAcheminement": "TORSIAC", + "nomCommune": "TORSIAC" }, { - "codePostal": "27340", - "codeCommune": "27188", - "libelleAcheminement": "CRIQUEBEUF SUR SEINE", - "nomCommune": "CRIQUEBEUF SUR SEINE" + "codePostal": "46600", + "codeCommune": "46208", + "libelleAcheminement": "MONTVALENT", + "nomCommune": "MONTVALENT" }, { - "codePostal": "21220", - "codeCommune": "21565", - "libelleAcheminement": "ST PHILIBERT", - "nomCommune": "ST PHILIBERT" + "codePostal": "57220", + "codeCommune": "57097", + "libelleAcheminement": "BOULAY", + "nomCommune": "BOULAY MOSELLE" }, { - "codePostal": "35620", - "codeCommune": "35332", - "libelleAcheminement": "TEILLAY", - "nomCommune": "TEILLAY" + "codePostal": "56230", + "codeCommune": "56184", + "libelleAcheminement": "QUESTEMBERT", + "nomCommune": "QUESTEMBERT" }, { - "codePostal": "50600", - "codeCommune": "50391", - "libelleAcheminement": "GRANDPARIGNY", - "nomCommune": "GRANDPARIGNY" + "codePostal": "43750", + "codeCommune": "43251", + "libelleAcheminement": "VALS PRES LE PUY", + "nomCommune": "VALS PRES LE PUY" }, { - "codePostal": "27530", - "codeCommune": "27193", - "libelleAcheminement": "CROTH", - "nomCommune": "CROTH" + "codePostal": "46350", + "codeCommune": "46209", + "libelleAcheminement": "NADAILLAC DE ROUGE", + "nomCommune": "NADAILLAC DE ROUGE" }, { - "codePostal": "21230", - "codeCommune": "21566", - "libelleAcheminement": "ST PIERRE EN VAUX", - "nomCommune": "ST PIERRE EN VAUX" + "codePostal": "57230", + "codeCommune": "57103", + "libelleAcheminement": "BOUSSEVILLER", + "nomCommune": "BOUSSEVILLER" }, { - "codePostal": "35235", - "codeCommune": "35334", - "libelleAcheminement": "THORIGNE FOUILLARD", - "nomCommune": "THORIGNE FOUILLARD" + "codePostal": "56530", + "codeCommune": "56185", + "libelleAcheminement": "QUEVEN", + "nomCommune": "QUEVEN" }, { - "codePostal": "50630", - "codeCommune": "50395", - "libelleAcheminement": "LA PERNELLE", - "nomCommune": "LA PERNELLE" + "codePostal": "43170", + "codeCommune": "43256", + "libelleAcheminement": "VENTEUGES", + "nomCommune": "VENTEUGES" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "46250", + "codeCommune": "46222", + "libelleAcheminement": "POMAREDE", + "nomCommune": "POMAREDE" }, { - "codePostal": "21610", - "codeCommune": "21574", - "libelleAcheminement": "ST SEINE SUR VINGEANNE", - "nomCommune": "ST SEINE SUR VINGEANNE" + "codePostal": "57320", + "codeCommune": "57106", + "libelleAcheminement": "BOUZONVILLE", + "nomCommune": "BOUZONVILLE" }, { - "codePostal": "35380", - "codeCommune": "35340", - "libelleAcheminement": "TREFFENDEL", - "nomCommune": "TREFFENDEL" + "codePostal": "56670", + "codeCommune": "56193", + "libelleAcheminement": "RIANTEC", + "nomCommune": "RIANTEC" }, { - "codePostal": "50150", - "codeCommune": "50397", - "libelleAcheminement": "PERRIERS EN BEAUFICEL", - "nomCommune": "PERRIERS EN BEAUFICEL" + "codePostal": "43320", + "codeCommune": "43257", + "libelleAcheminement": "VERGEZAC", + "nomCommune": "VERGEZAC" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "46150", + "codeCommune": "46223", + "libelleAcheminement": "PONTCIRQ", + "nomCommune": "PONTCIRQ" }, { - "codePostal": "21170", - "codeCommune": "21575", - "libelleAcheminement": "ST SYMPHORIEN SUR SAONE", - "nomCommune": "ST SYMPHORIEN SUR SAONE" + "codePostal": "57570", + "codeCommune": "57109", + "libelleAcheminement": "BREISTROFF LA GRANDE", + "nomCommune": "BREISTROFF LA GRANDE" }, { - "codePostal": "35190", - "codeCommune": "35345", - "libelleAcheminement": "TREVERIEN", - "nomCommune": "TREVERIEN" + "codePostal": "56130", + "codeCommune": "56195", + "libelleAcheminement": "LA ROCHE BERNARD", + "nomCommune": "LA ROCHE BERNARD" }, { - "codePostal": "50370", - "codeCommune": "50399", - "libelleAcheminement": "LE PETIT CELLAND", - "nomCommune": "LE PETIT CELLAND" + "codePostal": "43270", + "codeCommune": "43259", + "libelleAcheminement": "VERNASSAL", + "nomCommune": "VERNASSAL" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "46260", + "codeCommune": "46227", + "libelleAcheminement": "PROMILHANES", + "nomCommune": "PROMILHANES" }, { - "codePostal": "21580", - "codeCommune": "21579", - "libelleAcheminement": "SALIVES", - "nomCommune": "SALIVES" + "codePostal": "57220", + "codeCommune": "57112", + "libelleAcheminement": "BROUCK", + "nomCommune": "BROUCK" }, { - "codePostal": "35132", - "codeCommune": "35353", - "libelleAcheminement": "VEZIN LE COQUET", - "nomCommune": "VEZIN LE COQUET" + "codePostal": "56220", + "codeCommune": "56196", + "libelleAcheminement": "ROCHEFORT EN TERRE", + "nomCommune": "ROCHEFORT EN TERRE" }, { - "codePostal": "50770", - "codeCommune": "50403", - "libelleAcheminement": "PIROU", - "nomCommune": "PIROU" + "codePostal": "43600", + "codeCommune": "43265", + "libelleAcheminement": "LES VILLETTES", + "nomCommune": "LES VILLETTES" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "46130", + "codeCommune": "46229", + "libelleAcheminement": "PUYBRUN", + "nomCommune": "PUYBRUN" }, { - "codePostal": "21210", - "codeCommune": "21584", - "libelleAcheminement": "SAULIEU", - "nomCommune": "SAULIEU" + "codePostal": "57340", + "codeCommune": "57115", + "libelleAcheminement": "BRULANGE", + "nomCommune": "BRULANGE" }, { - "codePostal": "35630", - "codeCommune": "35356", - "libelleAcheminement": "VIGNOC", - "nomCommune": "VIGNOC" + "codePostal": "56140", + "codeCommune": "56200", + "libelleAcheminement": "RUFFIAC", + "nomCommune": "RUFFIAC" }, { - "codePostal": "50220", - "codeCommune": "50408", - "libelleAcheminement": "PONTAUBAULT", - "nomCommune": "PONTAUBAULT" + "codePostal": "44150", + "codeCommune": "44003", + "libelleAcheminement": "ANCENIS ST GEREON", + "nomCommune": "ANCENIS ST GEREON" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "46110", + "codeCommune": "46232", + "libelleAcheminement": "LE VIGNON EN QUERCY", + "nomCommune": "LE VIGNON EN QUERCY" }, { - "codePostal": "21910", - "codeCommune": "21586", - "libelleAcheminement": "SAULON LA RUE", - "nomCommune": "SAULON LA RUE" + "codePostal": "57320", + "codeCommune": "57131", + "libelleAcheminement": "CHATEAU ROUGE", + "nomCommune": "CHATEAU ROUGE" }, { - "codePostal": "35430", - "codeCommune": "35358", - "libelleAcheminement": "LA VILLE ES NONAIS", - "nomCommune": "LA VILLE ES NONAIS" + "codePostal": "56890", + "codeCommune": "56206", + "libelleAcheminement": "ST AVE", + "nomCommune": "ST AVE" }, { - "codePostal": "50170", - "codeCommune": "50410", - "libelleAcheminement": "PONTORSON", - "nomCommune": "PONTORSON" + "codePostal": "44410", + "codeCommune": "44006", + "libelleAcheminement": "ASSERAC", + "nomCommune": "ASSERAC" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "46600", + "codeCommune": "46232", + "libelleAcheminement": "LE VIGNON EN QUERCY", + "nomCommune": "LE VIGNON EN QUERCY" }, { - "codePostal": "21360", - "codeCommune": "21588", - "libelleAcheminement": "SAUSSEY", - "nomCommune": "SAUSSEY" + "codePostal": "57170", + "codeCommune": "57133", + "libelleAcheminement": "CHATEAU VOUE", + "nomCommune": "CHATEAU VOUE" }, { - "codePostal": "35130", - "codeCommune": "35359", - "libelleAcheminement": "VISSEICHE", - "nomCommune": "VISSEICHE" + "codePostal": "56540", + "codeCommune": "56210", + "libelleAcheminement": "ST CARADEC TREGOMEL", + "nomCommune": "ST CARADEC TREGOMEL" }, { - "codePostal": "50580", - "codeCommune": "50412", - "libelleAcheminement": "PORT BAIL SUR MER", - "nomCommune": "PORT BAIL SUR MER" + "codePostal": "44115", + "codeCommune": "44009", + "libelleAcheminement": "BASSE GOULAINE", + "nomCommune": "BASSE GOULAINE" }, { - "codePostal": "27380", - "codeCommune": "27205", - "libelleAcheminement": "DOUVILLE SUR ANDELLE", - "nomCommune": "DOUVILLE SUR ANDELLE" + "codePostal": "46500", + "codeCommune": "46235", + "libelleAcheminement": "REILHAC", + "nomCommune": "REILHAC" }, { - "codePostal": "21500", - "codeCommune": "21594", - "libelleAcheminement": "SAVOISY", - "nomCommune": "SAVOISY" + "codePostal": "57420", + "codeCommune": "57139", + "libelleAcheminement": "CHERISEY", + "nomCommune": "CHERISEY" }, { - "codePostal": "36150", - "codeCommune": "36002", - "libelleAcheminement": "AIZE", - "nomCommune": "AIZE" + "codePostal": "56460", + "codeCommune": "56219", + "libelleAcheminement": "ST GUYOMARD", + "nomCommune": "ST GUYOMARD" }, { - "codePostal": "50660", - "codeCommune": "50419", - "libelleAcheminement": "QUETTREVILLE SUR SIENNE", - "nomCommune": "QUETTREVILLE SUR SIENNE" + "codePostal": "44130", + "codeCommune": "44015", + "libelleAcheminement": "BLAIN", + "nomCommune": "BLAIN" }, { - "codePostal": "27420", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "46350", + "codeCommune": "46236", + "libelleAcheminement": "REILHAGUET", + "nomCommune": "REILHAGUET" }, { - "codePostal": "21150", - "codeCommune": "21598", - "libelleAcheminement": "SEIGNY", - "nomCommune": "SEIGNY" + "codePostal": "57420", + "codeCommune": "57146", + "libelleAcheminement": "COIN LES CUVRY", + "nomCommune": "COIN LES CUVRY" }, { - "codePostal": "36500", - "codeCommune": "36007", - "libelleAcheminement": "ARGY", - "nomCommune": "ARGY" + "codePostal": "56220", + "codeCommune": "56221", + "libelleAcheminement": "ST JACUT LES PINS", + "nomCommune": "ST JACUT LES PINS" }, { - "codePostal": "50500", - "codeCommune": "50422", - "libelleAcheminement": "RAIDS", - "nomCommune": "RAIDS" + "codePostal": "44830", + "codeCommune": "44018", + "libelleAcheminement": "BOUAYE", + "nomCommune": "BOUAYE" }, { - "codePostal": "27420", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "46500", + "codeCommune": "46240", + "libelleAcheminement": "ROCAMADOUR", + "nomCommune": "ROCAMADOUR" }, { - "codePostal": "21220", - "codeCommune": "21601", - "libelleAcheminement": "SEMEZANGES", - "nomCommune": "SEMEZANGES" + "codePostal": "57530", + "codeCommune": "57148", + "libelleAcheminement": "COLLIGNY MAIZERY", + "nomCommune": "COLLIGNY MAIZERY" }, { - "codePostal": "36210", - "codeCommune": "36011", - "libelleAcheminement": "BAGNEUX", - "nomCommune": "BAGNEUX" + "codePostal": "56140", + "codeCommune": "56224", + "libelleAcheminement": "ST LAURENT SUR OUST", + "nomCommune": "ST LAURENT SUR OUST" }, { - "codePostal": "50000", - "codeCommune": "50423", - "libelleAcheminement": "RAMPAN", - "nomCommune": "RAMPAN" + "codePostal": "44260", + "codeCommune": "44019", + "libelleAcheminement": "BOUEE", + "nomCommune": "BOUEE" }, { - "codePostal": "27110", - "codeCommune": "27219", - "libelleAcheminement": "EPEGARD", - "nomCommune": "EPEGARD" + "codePostal": "46500", + "codeCommune": "46246", + "libelleAcheminement": "SAIGNES", + "nomCommune": "SAIGNES" }, { - "codePostal": "21500", - "codeCommune": "21604", - "libelleAcheminement": "SENAILLY", - "nomCommune": "SENAILLY" + "codePostal": "57480", + "codeCommune": "57152", + "libelleAcheminement": "CONTZ LES BAINS", + "nomCommune": "CONTZ LES BAINS" }, { - "codePostal": "36100", - "codeCommune": "36021", - "libelleAcheminement": "LES BORDES", - "nomCommune": "LES BORDES" + "codePostal": "56380", + "codeCommune": "56226", + "libelleAcheminement": "ST MALO DE BEIGNON", + "nomCommune": "ST MALO DE BEIGNON" }, { - "codePostal": "50590", - "codeCommune": "50429", - "libelleAcheminement": "REGNEVILLE SUR MER", - "nomCommune": "REGNEVILLE SUR MER" + "codePostal": "44340", + "codeCommune": "44020", + "libelleAcheminement": "BOUGUENAIS", + "nomCommune": "BOUGUENAIS" }, { - "codePostal": "27110", - "codeCommune": "27224", - "libelleAcheminement": "EPREVILLE PRES LE NEUBOURG", - "nomCommune": "EPREVILLE PRES LE NEUBOURG" + "codePostal": "46120", + "codeCommune": "46249", + "libelleAcheminement": "ST BRESSOU", + "nomCommune": "ST BRESSOU" }, { - "codePostal": "21800", - "codeCommune": "21605", - "libelleAcheminement": "SENNECEY LES DIJON", - "nomCommune": "SENNECEY LES DIJON" + "codePostal": "57530", + "codeCommune": "57155", + "libelleAcheminement": "COURCELLES CHAUSSY", + "nomCommune": "COURCELLES CHAUSSY" }, { - "codePostal": "36110", - "codeCommune": "36026", - "libelleAcheminement": "BRION", - "nomCommune": "BRION" + "codePostal": "56140", + "codeCommune": "56228", + "libelleAcheminement": "ST MARCEL", + "nomCommune": "ST MARCEL" }, { - "codePostal": "50140", - "codeCommune": "50436", - "libelleAcheminement": "ROMAGNY FONTENAY", - "nomCommune": "ROMAGNY FONTENAY" + "codePostal": "44580", + "codeCommune": "44021", + "libelleAcheminement": "VILLENEUVE EN RETZ", + "nomCommune": "VILLENEUVE EN RETZ" }, { - "codePostal": "27000", - "codeCommune": "27229", - "libelleAcheminement": "EVREUX", - "nomCommune": "EVREUX" + "codePostal": "46360", + "codeCommune": "46252", + "libelleAcheminement": "LES PECHS DU VERS", + "nomCommune": "LES PECHS DU VERS" }, { - "codePostal": "21530", - "codeCommune": "21608", - "libelleAcheminement": "SINCEY LES ROUVRAY", - "nomCommune": "SINCEY LES ROUVRAY" + "codePostal": "57530", + "codeCommune": "57155", + "libelleAcheminement": "COURCELLES CHAUSSY", + "nomCommune": "COURCELLES CHAUSSY" }, { - "codePostal": "36150", - "codeCommune": "36029", - "libelleAcheminement": "BUXEUIL", - "nomCommune": "BUXEUIL" + "codePostal": "56300", + "codeCommune": "56237", + "libelleAcheminement": "ST THURIAU", + "nomCommune": "ST THURIAU" }, { - "codePostal": "50170", - "codeCommune": "50443", - "libelleAcheminement": "SACEY", - "nomCommune": "SACEY" + "codePostal": "44190", + "codeCommune": "44022", + "libelleAcheminement": "BOUSSAY", + "nomCommune": "BOUSSAY" }, { - "codePostal": "27120", - "codeCommune": "27231", - "libelleAcheminement": "FAINS", - "nomCommune": "FAINS" + "codePostal": "46300", + "codeCommune": "46258", + "libelleAcheminement": "ST CIRQ SOUILLAGUET", + "nomCommune": "ST CIRQ SOUILLAGUET" }, { - "codePostal": "21430", - "codeCommune": "21615", - "libelleAcheminement": "SUSSEY", - "nomCommune": "SUSSEY" + "codePostal": "57850", + "codeCommune": "57163", + "libelleAcheminement": "DABO", + "nomCommune": "DABO" }, { - "codePostal": "36230", - "codeCommune": "36030", - "libelleAcheminement": "BUXIERES D AILLAC", - "nomCommune": "BUXIERES D AILLAC" + "codePostal": "56370", + "codeCommune": "56240", + "libelleAcheminement": "SARZEAU", + "nomCommune": "SARZEAU" }, { - "codePostal": "50160", - "codeCommune": "50444", - "libelleAcheminement": "ST AMAND VILLAGES", - "nomCommune": "ST AMAND VILLAGES" + "codePostal": "44470", + "codeCommune": "44026", + "libelleAcheminement": "CARQUEFOU", + "nomCommune": "CARQUEFOU" }, { - "codePostal": "27210", - "codeCommune": "27233", - "libelleAcheminement": "FATOUVILLE GRESTAIN", - "nomCommune": "FATOUVILLE GRESTAIN" + "codePostal": "46800", + "codeCommune": "46263", + "libelleAcheminement": "BARGUELONNE EN QUERCY", + "nomCommune": "BARGUELONNE EN QUERCY" }, { - "codePostal": "21290", - "codeCommune": "21626", - "libelleAcheminement": "TERREFONDREE", - "nomCommune": "TERREFONDREE" + "codePostal": "57550", + "codeCommune": "57165", + "libelleAcheminement": "DALEM", + "nomCommune": "DALEM" }, { - "codePostal": "36500", - "codeCommune": "36040", - "libelleAcheminement": "LA CHAPELLE ORTHEMALE", - "nomCommune": "LA CHAPELLE ORTHEMALE" + "codePostal": "56160", + "codeCommune": "56242", + "libelleAcheminement": "SEGLIEN", + "nomCommune": "SEGLIEN" }, { - "codePostal": "50140", - "codeCommune": "50450", - "libelleAcheminement": "ST BARTHELEMY", - "nomCommune": "ST BARTHELEMY" + "codePostal": "44390", + "codeCommune": "44027", + "libelleAcheminement": "CASSON", + "nomCommune": "CASSON" }, { - "codePostal": "27930", - "codeCommune": "27234", - "libelleAcheminement": "FAUVILLE", - "nomCommune": "FAUVILLE" + "codePostal": "46800", + "codeCommune": "46263", + "libelleAcheminement": "BARGUELONNE EN QUERCY", + "nomCommune": "BARGUELONNE EN QUERCY" }, { - "codePostal": "21250", - "codeCommune": "21637", - "libelleAcheminement": "TICHEY", - "nomCommune": "TICHEY" + "codePostal": "57370", + "codeCommune": "57168", + "libelleAcheminement": "DANNE ET QUATRE VENTS", + "nomCommune": "DANNE ET QUATRE VENTS" }, { - "codePostal": "36400", - "codeCommune": "36046", - "libelleAcheminement": "LA CHATRE", - "nomCommune": "LA CHATRE" + "codePostal": "56450", + "codeCommune": "56248", + "libelleAcheminement": "SURZUR", + "nomCommune": "SURZUR" }, { - "codePostal": "50730", - "codeCommune": "50452", - "libelleAcheminement": "ST BRICE DE LANDELLES", - "nomCommune": "ST BRICE DE LANDELLES" + "codePostal": "44640", + "codeCommune": "44039", + "libelleAcheminement": "CHEIX EN RETZ", + "nomCommune": "CHEIX EN RETZ" }, { - "codePostal": "27210", - "codeCommune": "27243", - "libelleAcheminement": "FIQUEFLEUR EQUAINVILLE", - "nomCommune": "FIQUEFLEUR EQUAINVILLE" + "codePostal": "46150", + "codeCommune": "46264", + "libelleAcheminement": "ST DENIS CATUS", + "nomCommune": "ST DENIS CATUS" }, { - "codePostal": "21400", - "codeCommune": "21653", - "libelleAcheminement": "VANNAIRE", - "nomCommune": "VANNAIRE" + "codePostal": "57590", + "codeCommune": "57171", + "libelleAcheminement": "DELME", + "nomCommune": "DELME" }, { - "codePostal": "36170", - "codeCommune": "36047", - "libelleAcheminement": "LA CHATRE LANGLIN", - "nomCommune": "LA CHATRE LANGLIN" + "codePostal": "56190", + "codeCommune": "56259", + "libelleAcheminement": "LA TRINITE SURZUR", + "nomCommune": "LA TRINITE SURZUR" }, { - "codePostal": "50140", - "codeCommune": "50456", - "libelleAcheminement": "ST CLEMENT RANCOUDRAY", - "nomCommune": "ST CLEMENT RANCOUDRAY" + "codePostal": "44190", + "codeCommune": "44043", + "libelleAcheminement": "CLISSON", + "nomCommune": "CLISSON" }, { - "codePostal": "27380", - "codeCommune": "27246", - "libelleAcheminement": "FLEURY SUR ANDELLE", - "nomCommune": "FLEURY SUR ANDELLE" + "codePostal": "46260", + "codeCommune": "46270", + "libelleAcheminement": "ST JEAN DE LAUR", + "nomCommune": "ST JEAN DE LAUR" }, { - "codePostal": "21440", - "codeCommune": "21659", - "libelleAcheminement": "VAUX SAULES", - "nomCommune": "VAUX SAULES" + "codePostal": "57810", + "codeCommune": "57183", + "libelleAcheminement": "DONNELAY", + "nomCommune": "DONNELAY" }, { - "codePostal": "36200", - "codeCommune": "36048", - "libelleAcheminement": "CHAVIN", - "nomCommune": "CHAVIN" + "codePostal": "57590", + "codeCommune": "57002", + "libelleAcheminement": "ABONCOURT SUR SEILLE", + "nomCommune": "ABONCOURT SUR SEILLE" }, { - "codePostal": "50000", - "codeCommune": "50475", - "libelleAcheminement": "ST GEORGES MONTCOCQ", - "nomCommune": "ST GEORGES MONTCOCQ" + "codePostal": "44220", + "codeCommune": "44047", + "libelleAcheminement": "COUERON", + "nomCommune": "COUERON" }, { - "codePostal": "27220", - "codeCommune": "27259", - "libelleAcheminement": "FOUCRAINVILLE", - "nomCommune": "FOUCRAINVILLE" + "codePostal": "46330", + "codeCommune": "46276", + "libelleAcheminement": "ST MARTIN LABOUVAL", + "nomCommune": "ST MARTIN LABOUVAL" }, { - "codePostal": "21390", - "codeCommune": "21678", - "libelleAcheminement": "VIC SOUS THIL", - "nomCommune": "VIC SOUS THIL" + "codePostal": "57220", + "codeCommune": "57187", + "libelleAcheminement": "EBLANGE", + "nomCommune": "EBLANGE" }, { - "codePostal": "36300", - "codeCommune": "36053", - "libelleAcheminement": "CIRON", - "nomCommune": "CIRON" + "codePostal": "57560", + "codeCommune": "57003", + "libelleAcheminement": "ABRESCHVILLER", + "nomCommune": "ABRESCHVILLER" }, { - "codePostal": "50340", - "codeCommune": "50480", - "libelleAcheminement": "ST GERMAIN LE GAILLARD", - "nomCommune": "ST GERMAIN LE GAILLARD" + "codePostal": "44220", + "codeCommune": "44047", + "libelleAcheminement": "COUERON", + "nomCommune": "COUERON" }, { - "codePostal": "27120", - "codeCommune": "27273", - "libelleAcheminement": "GADENCOURT", - "nomCommune": "GADENCOURT" + "codePostal": "46330", + "codeCommune": "46299", + "libelleAcheminement": "SAULIAC SUR CELE", + "nomCommune": "SAULIAC SUR CELE" }, { - "codePostal": "21450", - "codeCommune": "21685", - "libelleAcheminement": "VILLAINES EN DUESMOIS", - "nomCommune": "VILLAINES EN DUESMOIS" + "codePostal": "57970", + "codeCommune": "57191", + "libelleAcheminement": "ELZANGE", + "nomCommune": "ELZANGE" }, { - "codePostal": "36140", - "codeCommune": "36060", - "libelleAcheminement": "CREVANT", - "nomCommune": "CREVANT" + "codePostal": "57412", + "codeCommune": "57006", + "libelleAcheminement": "ACHEN", + "nomCommune": "ACHEN" }, { - "codePostal": "50430", - "codeCommune": "50481", - "libelleAcheminement": "ST GERMAIN SUR AY", - "nomCommune": "ST GERMAIN SUR AY" + "codePostal": "44521", + "codeCommune": "44048", + "libelleAcheminement": "COUFFE", + "nomCommune": "COUFFE" }, { - "codePostal": "27150", - "codeCommune": "27276", - "libelleAcheminement": "GAMACHES EN VEXIN", - "nomCommune": "GAMACHES EN VEXIN" + "codePostal": "46190", + "codeCommune": "46311", + "libelleAcheminement": "SOUSCEYRAC EN QUERCY", + "nomCommune": "SOUSCEYRAC EN QUERCY" }, { - "codePostal": "21130", - "codeCommune": "21699", - "libelleAcheminement": "VILLERS LES POTS", - "nomCommune": "VILLERS LES POTS" + "codePostal": "57720", + "codeCommune": "57195", + "libelleAcheminement": "EPPING", + "nomCommune": "EPPING" }, { - "codePostal": "36270", - "codeCommune": "36070", - "libelleAcheminement": "EGUZON CHANTOME", - "nomCommune": "EGUZON CHANTOME" + "codePostal": "57590", + "codeCommune": "57010", + "libelleAcheminement": "ALAINCOURT LA COTE", + "nomCommune": "ALAINCOURT LA COTE" }, { - "codePostal": "50190", - "codeCommune": "50482", - "libelleAcheminement": "ST GERMAIN SUR SEVES", - "nomCommune": "ST GERMAIN SUR SEVES" + "codePostal": "44480", + "codeCommune": "44052", + "libelleAcheminement": "DONGES", + "nomCommune": "DONGES" }, { - "codePostal": "27220", - "codeCommune": "27277", - "libelleAcheminement": "LA BARONNIE", - "nomCommune": "LA BARONNIE" + "codePostal": "46190", + "codeCommune": "46311", + "libelleAcheminement": "SOUSCEYRAC EN QUERCY", + "nomCommune": "SOUSCEYRAC EN QUERCY" }, { - "codePostal": "21430", - "codeCommune": "21703", - "libelleAcheminement": "VILLIERS EN MORVAN", - "nomCommune": "VILLIERS EN MORVAN" + "codePostal": "57290", + "codeCommune": "57206", + "libelleAcheminement": "FAMECK", + "nomCommune": "FAMECK" }, { - "codePostal": "36150", - "codeCommune": "36075", - "libelleAcheminement": "FONTENAY", - "nomCommune": "FONTENAY" + "codePostal": "57670", + "codeCommune": "57011", + "libelleAcheminement": "ALBESTROFF", + "nomCommune": "ALBESTROFF" }, { - "codePostal": "50240", - "codeCommune": "50487", - "libelleAcheminement": "ST JAMES", - "nomCommune": "ST JAMES" + "codePostal": "44500", + "codeCommune": "44055", + "libelleAcheminement": "LA BAULE", + "nomCommune": "LA BAULE ESCOUBLAC" }, { - "codePostal": "27440", - "codeCommune": "27294", - "libelleAcheminement": "VAL D ORGER", - "nomCommune": "VAL D ORGER" + "codePostal": "46190", + "codeCommune": "46311", + "libelleAcheminement": "SOUSCEYRAC EN QUERCY", + "nomCommune": "SOUSCEYRAC EN QUERCY" }, { - "codePostal": "21270", - "codeCommune": "21713", - "libelleAcheminement": "VONGES", - "nomCommune": "VONGES" + "codePostal": "57450", + "codeCommune": "57208", + "libelleAcheminement": "FARSCHVILLER", + "nomCommune": "FARSCHVILLER" }, { - "codePostal": "36600", - "codeCommune": "36077", - "libelleAcheminement": "FONTGUENAND", - "nomCommune": "FONTGUENAND" + "codePostal": "57660", + "codeCommune": "57014", + "libelleAcheminement": "ALTRIPPE", + "nomCommune": "ALTRIPPE" }, { - "codePostal": "50240", - "codeCommune": "50487", - "libelleAcheminement": "ST JAMES", - "nomCommune": "ST JAMES" + "codePostal": "44190", + "codeCommune": "44064", + "libelleAcheminement": "GORGES", + "nomCommune": "GORGES" }, { - "codePostal": "27110", - "codeCommune": "27298", - "libelleAcheminement": "GRAVERON SEMERVILLE", - "nomCommune": "GRAVERON SEMERVILLE" + "codePostal": "46310", + "codeCommune": "46324", + "libelleAcheminement": "UZECH", + "nomCommune": "UZECH" }, { - "codePostal": "21700", - "codeCommune": "21714", - "libelleAcheminement": "VOSNE ROMANEE", - "nomCommune": "VOSNE ROMANEE" + "codePostal": "57930", + "codeCommune": "57210", + "libelleAcheminement": "FENETRANGE", + "nomCommune": "FENETRANGE" }, { - "codePostal": "36230", - "codeCommune": "36078", - "libelleAcheminement": "FOUGEROLLES", - "nomCommune": "FOUGEROLLES" + "codePostal": "57170", + "codeCommune": "57018", + "libelleAcheminement": "AMELECOURT", + "nomCommune": "AMELECOURT" }, { - "codePostal": "50270", - "codeCommune": "50490", - "libelleAcheminement": "ST JEAN DE LA RIVIERE", - "nomCommune": "ST JEAN DE LA RIVIERE" + "codePostal": "44119", + "codeCommune": "44066", + "libelleAcheminement": "GRANDCHAMPS DES FONTAINES", + "nomCommune": "GRANDCHAMPS DES FONTAINES" }, { - "codePostal": "27930", - "codeCommune": "27306", - "libelleAcheminement": "GUICHAINVILLE", - "nomCommune": "GUICHAINVILLE" + "codePostal": "46230", + "codeCommune": "46329", + "libelleAcheminement": "VAYLATS", + "nomCommune": "VAYLATS" }, { - "codePostal": "22460", - "codeCommune": "22001", - "libelleAcheminement": "ALLINEUC", - "nomCommune": "ALLINEUC" + "codePostal": "57190", + "codeCommune": "57221", + "libelleAcheminement": "FLORANGE", + "nomCommune": "FLORANGE" }, { - "codePostal": "36150", - "codeCommune": "36085", - "libelleAcheminement": "GUILLY", - "nomCommune": "GUILLY" + "codePostal": "57360", + "codeCommune": "57019", + "libelleAcheminement": "AMNEVILLE LES THERMES", + "nomCommune": "AMNEVILLE" }, { - "codePostal": "50680", - "codeCommune": "50491", - "libelleAcheminement": "ST JEAN DE SAVIGNY", - "nomCommune": "ST JEAN DE SAVIGNY" + "codePostal": "44290", + "codeCommune": "44067", + "libelleAcheminement": "GUEMENE PENFAO", + "nomCommune": "GUEMENE PENFAO" }, { - "codePostal": "27220", - "codeCommune": "27309", - "libelleAcheminement": "L HABIT", - "nomCommune": "L HABIT" + "codePostal": "46700", + "codeCommune": "46336", + "libelleAcheminement": "VIRE SUR LOT", + "nomCommune": "VIRE SUR LOT" }, { - "codePostal": "22400", - "codeCommune": "22002", - "libelleAcheminement": "ANDEL", - "nomCommune": "ANDEL" + "codePostal": "57650", + "codeCommune": "57226", + "libelleAcheminement": "FONTOY", + "nomCommune": "FONTOY" }, { - "codePostal": "36300", - "codeCommune": "36087", - "libelleAcheminement": "INGRANDES", - "nomCommune": "INGRANDES" + "codePostal": "57580", + "codeCommune": "57020", + "libelleAcheminement": "ANCERVILLE", + "nomCommune": "ANCERVILLE" }, { - "codePostal": "50810", - "codeCommune": "50492", - "libelleAcheminement": "ST JEAN D ELLE", - "nomCommune": "ST JEAN D ELLE" + "codePostal": "44530", + "codeCommune": "44068", + "libelleAcheminement": "GUENROUET", + "nomCommune": "GUENROUET" }, { - "codePostal": "27800", - "codeCommune": "27311", - "libelleAcheminement": "HARCOURT", - "nomCommune": "HARCOURT" + "codePostal": "46090", + "codeCommune": "46340", + "libelleAcheminement": "ST PIERRE LAFEUILLE", + "nomCommune": "ST PIERRE LAFEUILLE" }, { - "codePostal": "22140", - "codeCommune": "22004", - "libelleAcheminement": "BEGARD", - "nomCommune": "BEGARD" + "codePostal": "57790", + "codeCommune": "57233", + "libelleAcheminement": "FRAQUELFING", + "nomCommune": "FRAQUELFING" }, { - "codePostal": "36100", - "codeCommune": "36098", - "libelleAcheminement": "LIZERAY", - "nomCommune": "LIZERAY" + "codePostal": "57810", + "codeCommune": "57044", + "libelleAcheminement": "AZOUDANGE", + "nomCommune": "AZOUDANGE" }, { - "codePostal": "50810", - "codeCommune": "50492", - "libelleAcheminement": "ST JEAN D ELLE", - "nomCommune": "ST JEAN D ELLE" + "codePostal": "44410", + "codeCommune": "44072", + "libelleAcheminement": "HERBIGNAC", + "nomCommune": "HERBIGNAC" }, { - "codePostal": "27350", - "codeCommune": "27317", - "libelleAcheminement": "LA HAYE AUBREE", - "nomCommune": "LA HAYE AUBREE" + "codePostal": "47700", + "codeCommune": "47012", + "libelleAcheminement": "ANZEX", + "nomCommune": "ANZEX" }, { - "codePostal": "22320", - "codeCommune": "22009", - "libelleAcheminement": "LE BODEO", - "nomCommune": "LE BODEO" + "codePostal": "57820", + "codeCommune": "57244", + "libelleAcheminement": "GARREBOURG", + "nomCommune": "GARREBOURG" }, { - "codePostal": "36150", - "codeCommune": "36102", - "libelleAcheminement": "LUCAY LE LIBRE", - "nomCommune": "LUCAY LE LIBRE" + "codePostal": "57230", + "codeCommune": "57046", + "libelleAcheminement": "BAERENTHAL", + "nomCommune": "BAERENTHAL" }, { - "codePostal": "50320", - "codeCommune": "50493", - "libelleAcheminement": "ST JEAN DES CHAMPS", - "nomCommune": "ST JEAN DES CHAMPS" + "codePostal": "44670", + "codeCommune": "44078", + "libelleAcheminement": "JUIGNE DES MOUTIERS", + "nomCommune": "JUIGNE DES MOUTIERS" }, { - "codePostal": "27370", - "codeCommune": "27320", - "libelleAcheminement": "LA HAYE DU THEIL", - "nomCommune": "LA HAYE DU THEIL" + "codePostal": "47220", + "codeCommune": "47015", + "libelleAcheminement": "ASTAFFORT", + "nomCommune": "ASTAFFORT" }, { - "codePostal": "22240", - "codeCommune": "22012", - "libelleAcheminement": "LA BOUILLIE", - "nomCommune": "LA BOUILLIE" + "codePostal": "57220", + "codeCommune": "57252", + "libelleAcheminement": "GOMELANGE", + "nomCommune": "GOMELANGE" }, { - "codePostal": "36220", - "codeCommune": "36104", - "libelleAcheminement": "LURAIS", - "nomCommune": "LURAIS" + "codePostal": "57220", + "codeCommune": "57048", + "libelleAcheminement": "BANNAY", + "nomCommune": "BANNAY" }, { - "codePostal": "50480", - "codeCommune": "50509", - "libelleAcheminement": "STE MARIE DU MONT", - "nomCommune": "STE MARIE DU MONT" + "codePostal": "44430", + "codeCommune": "44079", + "libelleAcheminement": "LE LANDREAU", + "nomCommune": "LE LANDREAU" }, { - "codePostal": "27400", - "codeCommune": "27321", - "libelleAcheminement": "LA HAYE LE COMTE", - "nomCommune": "LA HAYE LE COMTE" + "codePostal": "47120", + "codeCommune": "47020", + "libelleAcheminement": "BALEYSSAGUES", + "nomCommune": "BALEYSSAGUES" }, { - "codePostal": "22870", - "codeCommune": "22016", - "libelleAcheminement": "ILE DE BREHAT", - "nomCommune": "ILE DE BREHAT" + "codePostal": "57170", + "codeCommune": "57257", + "libelleAcheminement": "GREMECEY", + "nomCommune": "GREMECEY" }, { - "codePostal": "36230", - "codeCommune": "36108", - "libelleAcheminement": "LYS ST GEORGES", - "nomCommune": "LYS ST GEORGES" + "codePostal": "57260", + "codeCommune": "57053", + "libelleAcheminement": "BASSING", + "nomCommune": "BASSING" }, { - "codePostal": "50800", - "codeCommune": "50518", - "libelleAcheminement": "ST MARTIN LE BOUILLANT", - "nomCommune": "ST MARTIN LE BOUILLANT" + "codePostal": "44690", + "codeCommune": "44088", + "libelleAcheminement": "MAISDON SUR SEVRE", + "nomCommune": "MAISDON SUR SEVRE" }, { - "codePostal": "27150", - "codeCommune": "27324", - "libelleAcheminement": "HEBECOURT", - "nomCommune": "HEBECOURT" + "codePostal": "47250", + "codeCommune": "47034", + "libelleAcheminement": "BOUGLON", + "nomCommune": "BOUGLON" }, { - "codePostal": "22250", - "codeCommune": "22020", - "libelleAcheminement": "BROONS", - "nomCommune": "BROONS" + "codePostal": "57260", + "codeCommune": "57265", + "libelleAcheminement": "GUEBESTROFF", + "nomCommune": "GUEBESTROFF" }, { - "codePostal": "36150", - "codeCommune": "36122", - "libelleAcheminement": "MEUNET SUR VATAN", - "nomCommune": "MEUNET SUR VATAN" + "codePostal": "57460", + "codeCommune": "57058", + "libelleAcheminement": "BEHREN LES FORBACH", + "nomCommune": "BEHREN LES FORBACH" }, { - "codePostal": "50690", - "codeCommune": "50519", - "libelleAcheminement": "ST MARTIN LE GREARD", - "nomCommune": "ST MARTIN LE GREARD" + "codePostal": "44780", + "codeCommune": "44098", + "libelleAcheminement": "MISSILLAC", + "nomCommune": "MISSILLAC" }, { - "codePostal": "27800", - "codeCommune": "27325", - "libelleAcheminement": "HECMANVILLE", - "nomCommune": "HECMANVILLE" + "codePostal": "47410", + "codeCommune": "47035", + "libelleAcheminement": "BOURGOUGNAGUE", + "nomCommune": "BOURGOUGNAGUE" }, { - "codePostal": "22160", - "codeCommune": "22023", - "libelleAcheminement": "BULAT PESTIVIEN", - "nomCommune": "BULAT PESTIVIEN" + "codePostal": "57260", + "codeCommune": "57266", + "libelleAcheminement": "GUEBLANGE LES DIEUZE", + "nomCommune": "GUEBLANGE LES DIEUZE" }, { - "codePostal": "36260", - "codeCommune": "36125", - "libelleAcheminement": "MIGNY", - "nomCommune": "MIGNY" + "codePostal": "57340", + "codeCommune": "57059", + "libelleAcheminement": "BELLANGE", + "nomCommune": "BELLANGE" }, { - "codePostal": "50480", - "codeCommune": "50523", - "libelleAcheminement": "STE MERE EGLISE", - "nomCommune": "STE MERE EGLISE" + "codePostal": "44520", + "codeCommune": "44099", + "libelleAcheminement": "MOISDON LA RIVIERE", + "nomCommune": "MOISDON LA RIVIERE" }, { - "codePostal": "27110", - "codeCommune": "27327", - "libelleAcheminement": "HECTOMARE", - "nomCommune": "HECTOMARE" + "codePostal": "47260", + "codeCommune": "47054", + "libelleAcheminement": "CASTELMORON SUR LOT", + "nomCommune": "CASTELMORON SUR LOT" }, { - "codePostal": "22530", - "codeCommune": "22033", - "libelleAcheminement": "CAUREL", - "nomCommune": "CAUREL" + "codePostal": "57260", + "codeCommune": "57270", + "libelleAcheminement": "VAL DE BRIDE", + "nomCommune": "VAL DE BRIDE" }, { - "codePostal": "36160", - "codeCommune": "36132", - "libelleAcheminement": "LA MOTTE FEUILLY", - "nomCommune": "LA MOTTE FEUILLY" + "codePostal": "57370", + "codeCommune": "57064", + "libelleAcheminement": "BERLING", + "nomCommune": "BERLING" }, { - "codePostal": "50480", - "codeCommune": "50523", - "libelleAcheminement": "STE MERE EGLISE", - "nomCommune": "STE MERE EGLISE" + "codePostal": "44690", + "codeCommune": "44100", + "libelleAcheminement": "MONNIERES", + "nomCommune": "MONNIERES" }, { - "codePostal": "27700", - "codeCommune": "27329", - "libelleAcheminement": "HENNEZIS", - "nomCommune": "HENNEZIS" + "codePostal": "47290", + "codeCommune": "47055", + "libelleAcheminement": "CASTELNAUD DE GRATECAMBE", + "nomCommune": "CASTELNAUD DE GRATECAMBE" }, { - "codePostal": "22210", - "codeCommune": "22043", - "libelleAcheminement": "COETLOGON", - "nomCommune": "COETLOGON" + "codePostal": "57405", + "codeCommune": "57280", + "libelleAcheminement": "GUNTZVILLER", + "nomCommune": "GUNTZVILLER" }, { - "codePostal": "36220", - "codeCommune": "36137", - "libelleAcheminement": "NEONS SUR CREUSE", - "nomCommune": "NEONS SUR CREUSE" + "codePostal": "57340", + "codeCommune": "57065", + "libelleAcheminement": "BERMERING", + "nomCommune": "BERMERING" }, { - "codePostal": "50190", - "codeCommune": "50533", - "libelleAcheminement": "ST PATRICE DE CLAIDS", - "nomCommune": "ST PATRICE DE CLAIDS" + "codePostal": "44620", + "codeCommune": "44101", + "libelleAcheminement": "LA MONTAGNE", + "nomCommune": "LA MONTAGNE" }, { - "codePostal": "27630", - "codeCommune": "27331", - "libelleAcheminement": "HEUBECOURT HARICOURT", - "nomCommune": "HEUBECOURT HARICOURT" + "codePostal": "47500", + "codeCommune": "47070", + "libelleAcheminement": "CONDEZAYGUES", + "nomCommune": "CONDEZAYGUES" }, { - "codePostal": "22800", - "codeCommune": "22045", - "libelleAcheminement": "COHINIAC", - "nomCommune": "COHINIAC" + "codePostal": "57340", + "codeCommune": "57281", + "libelleAcheminement": "HABOUDANGE", + "nomCommune": "HABOUDANGE" }, { - "codePostal": "36230", - "codeCommune": "36141", - "libelleAcheminement": "NEUVY ST SEPULCHRE", - "nomCommune": "NEUVY ST SEPULCHRE" + "codePostal": "57930", + "codeCommune": "57071", + "libelleAcheminement": "BETTBORN", + "nomCommune": "BETTBORN" }, { - "codePostal": "50870", - "codeCommune": "50535", - "libelleAcheminement": "LE PARC", - "nomCommune": "LE PARC" + "codePostal": "44850", + "codeCommune": "44107", + "libelleAcheminement": "MOUZEIL", + "nomCommune": "MOUZEIL" }, { - "codePostal": "27600", - "codeCommune": "27332", - "libelleAcheminement": "HEUDEBOUVILLE", - "nomCommune": "HEUDEBOUVILLE" + "codePostal": "47360", + "codeCommune": "47073", + "libelleAcheminement": "COURS", + "nomCommune": "COURS" }, { - "codePostal": "22330", - "codeCommune": "22046", - "libelleAcheminement": "LE MENE", - "nomCommune": "LE MENE" + "codePostal": "57970", + "codeCommune": "57287", + "libelleAcheminement": "BASSE HAM", + "nomCommune": "BASSE HAM" }, { - "codePostal": "36400", - "codeCommune": "36143", - "libelleAcheminement": "NOHANT VIC", - "nomCommune": "NOHANT VIC" + "codePostal": "57800", + "codeCommune": "57073", + "libelleAcheminement": "BETTING", + "nomCommune": "BETTING" }, { - "codePostal": "50270", - "codeCommune": "50536", - "libelleAcheminement": "ST PIERRE D ARTHEGLISE", - "nomCommune": "ST PIERRE D ARTHEGLISE" + "codePostal": "44521", + "codeCommune": "44115", + "libelleAcheminement": "OUDON", + "nomCommune": "OUDON" }, { - "codePostal": "27910", - "codeCommune": "27338", - "libelleAcheminement": "LES HOGUES", - "nomCommune": "LES HOGUES" + "codePostal": "47470", + "codeCommune": "47082", + "libelleAcheminement": "DONDAS", + "nomCommune": "DONDAS" }, { - "codePostal": "22330", - "codeCommune": "22046", - "libelleAcheminement": "LE MENE", - "nomCommune": "LE MENE" + "codePostal": "57910", + "codeCommune": "57289", + "libelleAcheminement": "HAMBACH", + "nomCommune": "HAMBACH" }, { - "codePostal": "36190", - "codeCommune": "36146", - "libelleAcheminement": "ORSENNES", - "nomCommune": "ORSENNES" + "codePostal": "57635", + "codeCommune": "57080", + "libelleAcheminement": "BICKENHOLTZ", + "nomCommune": "BICKENHOLTZ" }, { - "codePostal": "50330", - "codeCommune": "50539", - "libelleAcheminement": "ST PIERRE EGLISE", - "nomCommune": "ST PIERRE EGLISE" + "codePostal": "44560", + "codeCommune": "44116", + "libelleAcheminement": "PAIMBOEUF", + "nomCommune": "PAIMBOEUF" }, { - "codePostal": "27400", - "codeCommune": "27342", - "libelleAcheminement": "HOUETTEVILLE", - "nomCommune": "HOUETTEVILLE" + "codePostal": "47210", + "codeCommune": "47083", + "libelleAcheminement": "DOUDRAC", + "nomCommune": "DOUDRAC" }, { - "codePostal": "22100", - "codeCommune": "22050", - "libelleAcheminement": "DINAN", - "nomCommune": "DINAN" + "codePostal": "57370", + "codeCommune": "57291", + "libelleAcheminement": "HANGVILLER", + "nomCommune": "HANGVILLER" }, { - "codePostal": "36800", - "codeCommune": "36148", - "libelleAcheminement": "OULCHES", - "nomCommune": "OULCHES" + "codePostal": "57410", + "codeCommune": "57083", + "libelleAcheminement": "BINING", + "nomCommune": "BINING" }, { - "codePostal": "50400", - "codeCommune": "50541", - "libelleAcheminement": "ST PLANCHERS", - "nomCommune": "ST PLANCHERS" + "codePostal": "44440", + "codeCommune": "44118", + "libelleAcheminement": "PANNECE", + "nomCommune": "PANNECE" }, { - "codePostal": "27120", - "codeCommune": "27343", - "libelleAcheminement": "HOULBEC COCHEREL", - "nomCommune": "HOULBEC COCHEREL" + "codePostal": "47330", + "codeCommune": "47084", + "libelleAcheminement": "DOUZAINS", + "nomCommune": "DOUZAINS" }, { - "codePostal": "22430", - "codeCommune": "22054", - "libelleAcheminement": "ERQUY", - "nomCommune": "ERQUY" + "codePostal": "57850", + "codeCommune": "57300", + "libelleAcheminement": "HASELBOURG", + "nomCommune": "HASELBOURG" }, { - "codePostal": "36500", - "codeCommune": "36149", - "libelleAcheminement": "PALLUAU SUR INDRE", - "nomCommune": "PALLUAU SUR INDRE" + "codePostal": "57260", + "codeCommune": "57090", + "libelleAcheminement": "BLANCHE EGLISE", + "nomCommune": "BLANCHE EGLISE" }, { - "codePostal": "50200", - "codeCommune": "50550", - "libelleAcheminement": "ST SAUVEUR VILLAGES", - "nomCommune": "ST SAUVEUR VILLAGES" + "codePostal": "44630", + "codeCommune": "44128", + "libelleAcheminement": "PLESSE", + "nomCommune": "PLESSE" }, { - "codePostal": "27910", - "codeCommune": "27366", - "libelleAcheminement": "LETTEGUIVES", - "nomCommune": "LETTEGUIVES" + "codePostal": "47420", + "codeCommune": "47085", + "libelleAcheminement": "DURANCE", + "nomCommune": "DURANCE" }, { - "codePostal": "22430", - "codeCommune": "22054", - "libelleAcheminement": "ERQUY", - "nomCommune": "ERQUY" + "codePostal": "57650", + "codeCommune": "57305", + "libelleAcheminement": "HAVANGE", + "nomCommune": "HAVANGE" }, { - "codePostal": "36290", - "codeCommune": "36153", - "libelleAcheminement": "PAULNAY", - "nomCommune": "PAULNAY" + "codePostal": "57260", + "codeCommune": "57098", + "libelleAcheminement": "BOURGALTROFF", + "nomCommune": "BOURGALTROFF" }, { - "codePostal": "50190", - "codeCommune": "50552", - "libelleAcheminement": "ST SEBASTIEN DE RAIDS", - "nomCommune": "ST SEBASTIEN DE RAIDS" + "codePostal": "44160", + "codeCommune": "44129", + "libelleAcheminement": "PONTCHATEAU", + "nomCommune": "PONTCHATEAU" }, { - "codePostal": "27560", - "codeCommune": "27367", - "libelleAcheminement": "LIEUREY", - "nomCommune": "LIEUREY" + "codePostal": "47120", + "codeCommune": "47086", + "libelleAcheminement": "DURAS", + "nomCommune": "DURAS" }, { - "codePostal": "22150", - "codeCommune": "22060", - "libelleAcheminement": "GAUSSON", - "nomCommune": "GAUSSON" + "codePostal": "57700", + "codeCommune": "57306", + "libelleAcheminement": "HAYANGE", + "nomCommune": "HAYANGE" }, { - "codePostal": "36180", - "codeCommune": "36155", - "libelleAcheminement": "PELLEVOISIN", - "nomCommune": "PELLEVOISIN" + "codePostal": "57370", + "codeCommune": "57100", + "libelleAcheminement": "BOURSCHEID", + "nomCommune": "BOURSCHEID" }, { - "codePostal": "50550", - "codeCommune": "50562", - "libelleAcheminement": "ST VAAST LA HOUGUE", - "nomCommune": "ST VAAST LA HOUGUE" + "codePostal": "44710", + "codeCommune": "44133", + "libelleAcheminement": "PORT ST PERE", + "nomCommune": "PORT ST PERE" }, { - "codePostal": "27800", - "codeCommune": "27371", - "libelleAcheminement": "LIVET SUR AUTHOU", - "nomCommune": "LIVET SUR AUTHOU" + "codePostal": "47470", + "codeCommune": "47087", + "libelleAcheminement": "ENGAYRAC", + "nomCommune": "ENGAYRAC" }, { - "codePostal": "22200", - "codeCommune": "22067", - "libelleAcheminement": "GRACES", - "nomCommune": "GRACES" + "codePostal": "57930", + "codeCommune": "57310", + "libelleAcheminement": "HELLERING LES FENETRANGE", + "nomCommune": "HELLERING LES FENETRANGE" }, { - "codePostal": "36800", - "codeCommune": "36172", - "libelleAcheminement": "RIVARENNES", - "nomCommune": "RIVARENNES" + "codePostal": "57340", + "codeCommune": "57107", + "libelleAcheminement": "BREHAIN", + "nomCommune": "BREHAIN" }, { - "codePostal": "50500", - "codeCommune": "50564", - "libelleAcheminement": "TERRE ET MARAIS", - "nomCommune": "TERRE ET MARAIS" + "codePostal": "44750", + "codeCommune": "44139", + "libelleAcheminement": "QUILLY", + "nomCommune": "QUILLY" }, { - "codePostal": "27800", - "codeCommune": "27380", - "libelleAcheminement": "MALLEVILLE SUR LE BEC", - "nomCommune": "MALLEVILLE SUR LE BEC" + "codePostal": "47510", + "codeCommune": "47100", + "libelleAcheminement": "FOULAYRONNES", + "nomCommune": "FOULAYRONNES" }, { - "codePostal": "22200", - "codeCommune": "22067", - "libelleAcheminement": "GRACES", - "nomCommune": "GRACES" + "codePostal": "57220", + "codeCommune": "57312", + "libelleAcheminement": "HELSTROFF", + "nomCommune": "HELSTROFF" }, { - "codePostal": "36170", - "codeCommune": "36177", - "libelleAcheminement": "SACIERGES ST MARTIN", - "nomCommune": "SACIERGES ST MARTIN" + "codePostal": "57635", + "codeCommune": "57114", + "libelleAcheminement": "BROUVILLER", + "nomCommune": "BROUVILLER" }, { - "codePostal": "50530", - "codeCommune": "50565", - "libelleAcheminement": "SARTILLY BAIE BOCAGE", - "nomCommune": "SARTILLY BAIE BOCAGE" + "codePostal": "44430", + "codeCommune": "44141", + "libelleAcheminement": "LA REMAUDIERE", + "nomCommune": "LA REMAUDIERE" }, { - "codePostal": "27130", - "codeCommune": "27383", - "libelleAcheminement": "MANDRES", - "nomCommune": "MANDRES" + "codePostal": "47400", + "codeCommune": "47112", + "libelleAcheminement": "GRATELOUP ST GAYRAND", + "nomCommune": "GRATELOUP ST GAYRAND" }, { - "codePostal": "22320", - "codeCommune": "22073", - "libelleAcheminement": "LA HARMOYE", - "nomCommune": "LA HARMOYE" + "codePostal": "57330", + "codeCommune": "57323", + "libelleAcheminement": "HETTANGE GRANDE", + "nomCommune": "HETTANGE GRANDE" }, { - "codePostal": "36300", - "codeCommune": "36178", - "libelleAcheminement": "ST AIGNY", - "nomCommune": "ST AIGNY" + "codePostal": "57920", + "codeCommune": "57117", + "libelleAcheminement": "BUDING", + "nomCommune": "BUDING" }, { - "codePostal": "50270", - "codeCommune": "50577", - "libelleAcheminement": "SORTOSVILLE EN BEAUMONT", - "nomCommune": "SORTOSVILLE EN BEAUMONT" + "codePostal": "44400", + "codeCommune": "44143", + "libelleAcheminement": "REZE", + "nomCommune": "REZE" }, { - "codePostal": "27500", - "codeCommune": "27385", - "libelleAcheminement": "MANNEVILLE SUR RISLE", - "nomCommune": "MANNEVILLE SUR RISLE" + "codePostal": "47270", + "codeCommune": "47113", + "libelleAcheminement": "GRAYSSAS", + "nomCommune": "GRAYSSAS" }, { - "codePostal": "22320", - "codeCommune": "22074", - "libelleAcheminement": "LE HAUT CORLAY", - "nomCommune": "LE HAUT CORLAY" + "codePostal": "57510", + "codeCommune": "57325", + "libelleAcheminement": "HILSPRICH", + "nomCommune": "HILSPRICH" }, { - "codePostal": "36210", - "codeCommune": "36185", - "libelleAcheminement": "ST CHRISTOPHE EN BAZELLE", - "nomCommune": "ST CHRISTOPHE EN BAZELLE" + "codePostal": "57970", + "codeCommune": "57118", + "libelleAcheminement": "BUDLING", + "nomCommune": "BUDLING" }, { - "codePostal": "50270", - "codeCommune": "50585", - "libelleAcheminement": "SURTAINVILLE", - "nomCommune": "SURTAINVILLE" + "codePostal": "44640", + "codeCommune": "44145", + "libelleAcheminement": "ROUANS", + "nomCommune": "ROUANS" }, { - "codePostal": "27680", - "codeCommune": "27388", - "libelleAcheminement": "MARAIS VERNIER", - "nomCommune": "MARAIS VERNIER" + "codePostal": "47260", + "codeCommune": "47135", + "libelleAcheminement": "LAPARADE", + "nomCommune": "LAPARADE" }, { - "codePostal": "22400", - "codeCommune": "22077", - "libelleAcheminement": "HENANSAL", - "nomCommune": "HENANSAL" + "codePostal": "57920", + "codeCommune": "57331", + "libelleAcheminement": "HOMBOURG BUDANGE", + "nomCommune": "HOMBOURG BUDANGE" }, { - "codePostal": "36230", - "codeCommune": "36189", - "libelleAcheminement": "ST DENIS DE JOUHET", - "nomCommune": "ST DENIS DE JOUHET" + "codePostal": "57220", + "codeCommune": "57121", + "libelleAcheminement": "BURTONCOURT", + "nomCommune": "BURTONCOURT" }, { - "codePostal": "50700", - "codeCommune": "50588", - "libelleAcheminement": "TAMERVILLE", - "nomCommune": "TAMERVILLE" + "codePostal": "44860", + "codeCommune": "44150", + "libelleAcheminement": "ST AIGNAN GRANDLIEU", + "nomCommune": "ST AIGNAN GRANDLIEU" }, { - "codePostal": "27320", - "codeCommune": "27390", - "libelleAcheminement": "MARCILLY LA CAMPAGNE", - "nomCommune": "MARCILLY LA CAMPAGNE" + "codePostal": "47300", + "codeCommune": "47146", + "libelleAcheminement": "LEDAT", + "nomCommune": "LEDAT" }, { - "codePostal": "22150", - "codeCommune": "22079", - "libelleAcheminement": "HENON", - "nomCommune": "HENON" + "codePostal": "57990", + "codeCommune": "57340", + "libelleAcheminement": "HUNDLING", + "nomCommune": "HUNDLING" }, { - "codePostal": "36500", - "codeCommune": "36198", - "libelleAcheminement": "ST LACTENCIN", - "nomCommune": "ST LACTENCIN" + "codePostal": "57490", + "codeCommune": "57123", + "libelleAcheminement": "CARLING", + "nomCommune": "CARLING" }, { - "codePostal": "50170", - "codeCommune": "50589", - "libelleAcheminement": "TANIS", - "nomCommune": "TANIS" + "codePostal": "44250", + "codeCommune": "44154", + "libelleAcheminement": "ST BREVIN LES PINS", + "nomCommune": "ST BREVIN LES PINS" }, { - "codePostal": "27150", - "codeCommune": "27392", - "libelleAcheminement": "MARTAGNY", - "nomCommune": "MARTAGNY" + "codePostal": "47120", + "codeCommune": "47147", + "libelleAcheminement": "LEVIGNAC DE GUYENNE", + "nomCommune": "LEVIGNAC DE GUYENNE" }, { - "codePostal": "22230", - "codeCommune": "22083", - "libelleAcheminement": "ILLIFAUT", - "nomCommune": "ILLIFAUT" + "codePostal": "57480", + "codeCommune": "57341", + "libelleAcheminement": "HUNTING", + "nomCommune": "HUNTING" }, { - "codePostal": "36200", - "codeCommune": "36200", - "libelleAcheminement": "ST MARCEL", - "nomCommune": "ST MARCEL" + "codePostal": "57570", + "codeCommune": "57124", + "libelleAcheminement": "CATTENOM", + "nomCommune": "CATTENOM" }, { - "codePostal": "50640", - "codeCommune": "50591", - "libelleAcheminement": "LE TEILLEUL", - "nomCommune": "LE TEILLEUL" + "codePostal": "44150", + "codeCommune": "44163", + "libelleAcheminement": "VAIR SUR LOIRE", + "nomCommune": "VAIR SUR LOIRE" }, { - "codePostal": "27210", - "codeCommune": "27393", - "libelleAcheminement": "MARTAINVILLE", - "nomCommune": "MARTAINVILLE" + "codePostal": "47700", + "codeCommune": "47148", + "libelleAcheminement": "LEYRITZ MONCASSIN", + "nomCommune": "LEYRITZ MONCASSIN" }, { - "codePostal": "22270", - "codeCommune": "22084", - "libelleAcheminement": "JUGON LES LACS COMMUNE NOUVELLE", - "nomCommune": "JUGON LES LACS COMMUNE NOUVELLE" + "codePostal": "57970", + "codeCommune": "57343", + "libelleAcheminement": "ILLANGE", + "nomCommune": "ILLANGE" }, { - "codePostal": "36160", - "codeCommune": "36208", - "libelleAcheminement": "STE SEVERE SUR INDRE", - "nomCommune": "STE SEVERE SUR INDRE" + "codePostal": "57365", + "codeCommune": "57125", + "libelleAcheminement": "CHAILLY LES ENNERY", + "nomCommune": "CHAILLY LES ENNERY" }, { - "codePostal": "50160", - "codeCommune": "50601", - "libelleAcheminement": "TORIGNY LES VILLES", - "nomCommune": "TORIGNY LES VILLES" + "codePostal": "44680", + "codeCommune": "44164", + "libelleAcheminement": "ST HILAIRE DE CHALEONS", + "nomCommune": "ST HILAIRE DE CHALEONS" }, { - "codePostal": "27340", - "codeCommune": "27394", - "libelleAcheminement": "MARTOT", - "nomCommune": "MARTOT" + "codePostal": "47360", + "codeCommune": "47154", + "libelleAcheminement": "LUSIGNAN PETIT", + "nomCommune": "LUSIGNAN PETIT" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "57990", + "codeCommune": "57348", + "libelleAcheminement": "IPPLING", + "nomCommune": "IPPLING" }, { - "codePostal": "36230", - "codeCommune": "36210", - "libelleAcheminement": "SARZAY", - "nomCommune": "SARZAY" + "codePostal": "57220", + "codeCommune": "57128", + "libelleAcheminement": "CHARLEVILLE SOUS BOIS", + "nomCommune": "CHARLEVILLE SOUS BOIS" }, { - "codePostal": "50160", - "codeCommune": "50601", - "libelleAcheminement": "TORIGNY LES VILLES", - "nomCommune": "TORIGNY LES VILLES" + "codePostal": "44670", + "codeCommune": "44170", + "libelleAcheminement": "ST JULIEN DE VOUVANTES", + "nomCommune": "ST JULIEN DE VOUVANTES" }, { - "codePostal": "27950", - "codeCommune": "27399", - "libelleAcheminement": "MERCEY", - "nomCommune": "MERCEY" + "codePostal": "47200", + "codeCommune": "47156", + "libelleAcheminement": "MARCELLUS", + "nomCommune": "MARCELLUS" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "57130", + "codeCommune": "57350", + "libelleAcheminement": "JOUY AUX ARCHES", + "nomCommune": "JOUY AUX ARCHES" }, { - "codePostal": "36180", - "codeCommune": "36216", - "libelleAcheminement": "SELLES SUR NAHON", - "nomCommune": "SELLES SUR NAHON" + "codePostal": "57640", + "codeCommune": "57129", + "libelleAcheminement": "CHARLY ORADOUR", + "nomCommune": "CHARLY ORADOUR" }, { - "codePostal": "50200", - "codeCommune": "50624", - "libelleAcheminement": "LA VENDELEE", - "nomCommune": "LA VENDELEE" + "codePostal": "44540", + "codeCommune": "44180", + "libelleAcheminement": "VALLONS DE L ERDRE", + "nomCommune": "VALLONS DE L ERDRE" }, { - "codePostal": "27930", - "codeCommune": "27410", - "libelleAcheminement": "MISEREY", - "nomCommune": "MISEREY" + "codePostal": "47140", + "codeCommune": "47162", + "libelleAcheminement": "MASSOULES", + "nomCommune": "MASSOULES" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "57430", + "codeCommune": "57357", + "libelleAcheminement": "KAPPELKINGER", + "nomCommune": "KAPPELKINGER" }, { - "codePostal": "36200", - "codeCommune": "36219", - "libelleAcheminement": "TENDU", - "nomCommune": "TENDU" + "codePostal": "57340", + "codeCommune": "57130", + "libelleAcheminement": "CHATEAU BREHAIN", + "nomCommune": "CHATEAU BREHAIN" }, { - "codePostal": "50410", - "codeCommune": "50637", - "libelleAcheminement": "VILLEBAUDON", - "nomCommune": "VILLEBAUDON" + "codePostal": "44730", + "codeCommune": "44182", + "libelleAcheminement": "ST MICHEL CHEF CHEF", + "nomCommune": "ST MICHEL CHEF CHEF" }, { - "codePostal": "27290", - "codeCommune": "27413", - "libelleAcheminement": "MONTFORT SUR RISLE", - "nomCommune": "MONTFORT SUR RISLE" + "codePostal": "47200", + "codeCommune": "47163", + "libelleAcheminement": "MAUVEZIN SUR GUPIE", + "nomCommune": "MAUVEZIN SUR GUPIE" }, { - "codePostal": "22770", - "codeCommune": "22094", - "libelleAcheminement": "LANCIEUX", - "nomCommune": "LANCIEUX" + "codePostal": "57560", + "codeCommune": "57374", + "libelleAcheminement": "LAFRIMBOLLE", + "nomCommune": "LAFRIMBOLLE" }, { - "codePostal": "36310", - "codeCommune": "36223", - "libelleAcheminement": "TILLY", - "nomCommune": "TILLY" + "codePostal": "57170", + "codeCommune": "57133", + "libelleAcheminement": "CHATEAU VOUE", + "nomCommune": "CHATEAU VOUE" }, { - "codePostal": "50800", - "codeCommune": "50639", - "libelleAcheminement": "VILLEDIEU LES POELES ROUFFIGNY", - "nomCommune": "VILLEDIEU LES POELES ROUFFIGNY" + "codePostal": "44730", + "codeCommune": "44182", + "libelleAcheminement": "ST MICHEL CHEF CHEF", + "nomCommune": "ST MICHEL CHEF CHEF" }, { - "codePostal": "27390", - "codeCommune": "27414", - "libelleAcheminement": "MONTREUIL L ARGILLE", - "nomCommune": "MONTREUIL L ARGILLE" + "codePostal": "47170", + "codeCommune": "47167", + "libelleAcheminement": "MEZIN", + "nomCommune": "MEZIN" }, { - "codePostal": "22980", - "codeCommune": "22097", - "libelleAcheminement": "LA LANDEC", - "nomCommune": "LA LANDEC" + "codePostal": "57410", + "codeCommune": "57376", + "libelleAcheminement": "LAMBACH", + "nomCommune": "LAMBACH" }, { - "codePostal": "36220", - "codeCommune": "36224", - "libelleAcheminement": "TOURNON ST MARTIN", - "nomCommune": "TOURNON ST MARTIN" + "codePostal": "57420", + "codeCommune": "57137", + "libelleAcheminement": "CHEMINOT", + "nomCommune": "CHEMINOT" }, { - "codePostal": "51700", - "codeCommune": "51012", - "libelleAcheminement": "ANTHENAY", - "nomCommune": "ANTHENAY" + "codePostal": "44680", + "codeCommune": "44186", + "libelleAcheminement": "STE PAZANNE", + "nomCommune": "STE PAZANNE" }, { - "codePostal": "27260", - "codeCommune": "27415", - "libelleAcheminement": "MORAINVILLE JOUVEAUX", - "nomCommune": "MORAINVILLE JOUVEAUX" + "codePostal": "47310", + "codeCommune": "47172", + "libelleAcheminement": "MONCAUT", + "nomCommune": "MONCAUT" }, { - "codePostal": "22490", - "codeCommune": "22103", - "libelleAcheminement": "LANGROLAY SUR RANCE", - "nomCommune": "LANGROLAY SUR RANCE" + "codePostal": "57830", + "codeCommune": "57377", + "libelleAcheminement": "LANDANGE", + "nomCommune": "LANDANGE" }, { - "codePostal": "36500", - "codeCommune": "36232", - "libelleAcheminement": "VENDOEUVRES", - "nomCommune": "VENDOEUVRES" + "codePostal": "57185", + "codeCommune": "57143", + "libelleAcheminement": "CLOUANGE", + "nomCommune": "CLOUANGE" }, { - "codePostal": "51800", - "codeCommune": "51015", - "libelleAcheminement": "ARGERS", - "nomCommune": "ARGERS" + "codePostal": "44230", + "codeCommune": "44190", + "libelleAcheminement": "ST SEBASTIEN SUR LOIRE", + "nomCommune": "ST SEBASTIEN SUR LOIRE" }, { - "codePostal": "27190", - "codeCommune": "27424", - "libelleAcheminement": "NAGEL SEEZ MESNIL", - "nomCommune": "NAGEL SEEZ MESNIL" + "codePostal": "47230", + "codeCommune": "47176", + "libelleAcheminement": "MONTGAILLARD EN ALBRET", + "nomCommune": "MONTGAILLARD EN ALBRET" }, { - "codePostal": "22360", - "codeCommune": "22106", - "libelleAcheminement": "LANGUEUX", - "nomCommune": "LANGUEUX" + "codePostal": "57340", + "codeCommune": "57379", + "libelleAcheminement": "LANDROFF", + "nomCommune": "LANDROFF" }, { - "codePostal": "36290", - "codeCommune": "36246", - "libelleAcheminement": "VILLIERS", - "nomCommune": "VILLIERS" + "codePostal": "57800", + "codeCommune": "57144", + "libelleAcheminement": "COCHEREN", + "nomCommune": "COCHEREN" }, { - "codePostal": "51290", - "codeCommune": "51016", - "libelleAcheminement": "ARRIGNY", - "nomCommune": "ARRIGNY" + "codePostal": "44590", + "codeCommune": "44193", + "libelleAcheminement": "ST VINCENT DES LANDES", + "nomCommune": "ST VINCENT DES LANDES" }, { - "codePostal": "27150", - "codeCommune": "27430", - "libelleAcheminement": "LA NEUVE GRANGE", - "nomCommune": "LA NEUVE GRANGE" + "codePostal": "47500", + "codeCommune": "47179", + "libelleAcheminement": "MONSEMPRON LIBOS", + "nomCommune": "MONSEMPRON LIBOS" }, { - "codePostal": "22570", - "codeCommune": "22107", - "libelleAcheminement": "BON REPOS SUR BLAVET", - "nomCommune": "BON REPOS SUR BLAVET" + "codePostal": "57660", + "codeCommune": "57389", + "libelleAcheminement": "LELLING", + "nomCommune": "LELLING" }, { - "codePostal": "37500", - "codeCommune": "37004", - "libelleAcheminement": "ANCHE", - "nomCommune": "ANCHE" + "codePostal": "57590", + "codeCommune": "57158", + "libelleAcheminement": "CRAINCOURT", + "nomCommune": "CRAINCOURT" }, { - "codePostal": "51260", - "codeCommune": "51041", - "libelleAcheminement": "BAUDEMENT", - "nomCommune": "BAUDEMENT" + "codePostal": "44880", + "codeCommune": "44194", + "libelleAcheminement": "SAUTRON", + "nomCommune": "SAUTRON" }, { - "codePostal": "27190", - "codeCommune": "27436", - "libelleAcheminement": "NOGENT LE SEC", - "nomCommune": "NOGENT LE SEC" + "codePostal": "47150", + "codeCommune": "47181", + "libelleAcheminement": "MONTAGNAC SUR LEDE", + "nomCommune": "MONTAGNAC SUR LEDE" }, { - "codePostal": "22290", - "codeCommune": "22112", - "libelleAcheminement": "LANNEBERT", - "nomCommune": "LANNEBERT" + "codePostal": "57810", + "codeCommune": "57397", + "libelleAcheminement": "LEY", + "nomCommune": "LEY" }, { - "codePostal": "37260", - "codeCommune": "37006", - "libelleAcheminement": "ARTANNES SUR INDRE", - "nomCommune": "ARTANNES SUR INDRE" + "codePostal": "57150", + "codeCommune": "57160", + "libelleAcheminement": "CREUTZWALD", + "nomCommune": "CREUTZWALD" }, { - "codePostal": "51110", - "codeCommune": "51043", - "libelleAcheminement": "BAZANCOURT", - "nomCommune": "BAZANCOURT" + "codePostal": "44260", + "codeCommune": "44195", + "libelleAcheminement": "SAVENAY", + "nomCommune": "SAVENAY" }, { - "codePostal": "27930", - "codeCommune": "27439", - "libelleAcheminement": "NORMANVILLE", - "nomCommune": "NORMANVILLE" + "codePostal": "47120", + "codeCommune": "47187", + "libelleAcheminement": "MONTETON", + "nomCommune": "MONTETON" }, { - "codePostal": "22300", - "codeCommune": "22113", - "libelleAcheminement": "LANNION", - "nomCommune": "LANNION" + "codePostal": "57340", + "codeCommune": "57401", + "libelleAcheminement": "LIDREZING", + "nomCommune": "LIDREZING" }, { - "codePostal": "37340", - "codeCommune": "37013", - "libelleAcheminement": "AVRILLE LES PONCEAUX", - "nomCommune": "AVRILLE LES PONCEAUX" + "codePostal": "57420", + "codeCommune": "57162", + "libelleAcheminement": "CUVRY", + "nomCommune": "CUVRY" }, { - "codePostal": "51490", - "codeCommune": "51046", - "libelleAcheminement": "BEINE NAUROY", - "nomCommune": "BEINE NAUROY" + "codePostal": "44840", + "codeCommune": "44198", + "libelleAcheminement": "LES SORINIERES", + "nomCommune": "LES SORINIERES" }, { - "codePostal": "27800", - "codeCommune": "27441", - "libelleAcheminement": "NOTRE DAME D EPINE", - "nomCommune": "NOTRE DAME D EPINE" + "codePostal": "47600", + "codeCommune": "47195", + "libelleAcheminement": "NERAC", + "nomCommune": "NERAC" }, { - "codePostal": "22250", - "codeCommune": "22114", - "libelleAcheminement": "LANRELAS", - "nomCommune": "LANRELAS" + "codePostal": "57670", + "codeCommune": "57410", + "libelleAcheminement": "LHOR", + "nomCommune": "LHOR" }, { - "codePostal": "37360", - "codeCommune": "37021", - "libelleAcheminement": "BEAUMONT LOUESTAULT", - "nomCommune": "BEAUMONT LOUESTAULT" + "codePostal": "57340", + "codeCommune": "57166", + "libelleAcheminement": "DALHAIN", + "nomCommune": "DALHAIN" }, { - "codePostal": "51130", - "codeCommune": "51049", - "libelleAcheminement": "BERGERES LES VERTUS", - "nomCommune": "BERGERES LES VERTUS" + "codePostal": "44440", + "codeCommune": "44202", + "libelleAcheminement": "TEILLE", + "nomCommune": "TEILLE" }, { - "codePostal": "27390", - "codeCommune": "27442", - "libelleAcheminement": "NOTRE DAME DU HAMEL", - "nomCommune": "NOTRE DAME DU HAMEL" + "codePostal": "47520", + "codeCommune": "47201", + "libelleAcheminement": "LE PASSAGE", + "nomCommune": "LE PASSAGE" }, { - "codePostal": "22570", - "codeCommune": "22124", - "libelleAcheminement": "LESCOUET GOUAREC", - "nomCommune": "LESCOUET GOUAREC" + "codePostal": "57650", + "codeCommune": "57411", + "libelleAcheminement": "LOMMERANGE", + "nomCommune": "LOMMERANGE" }, { - "codePostal": "37460", - "codeCommune": "37023", - "libelleAcheminement": "BEAUMONT VILLAGE", - "nomCommune": "BEAUMONT VILLAGE" + "codePostal": "57220", + "codeCommune": "57172", + "libelleAcheminement": "DENTING", + "nomCommune": "DENTING" }, { - "codePostal": "51420", - "codeCommune": "51052", - "libelleAcheminement": "BERRU", - "nomCommune": "BERRU" + "codePostal": "44650", + "codeCommune": "44206", + "libelleAcheminement": "TOUVOIS", + "nomCommune": "TOUVOIS" }, { - "codePostal": "27120", - "codeCommune": "27448", - "libelleAcheminement": "PACY SUR EURE", - "nomCommune": "PACY SUR EURE" + "codePostal": "47130", + "codeCommune": "47210", + "libelleAcheminement": "PORT STE MARIE", + "nomCommune": "PORT STE MARIE" }, { - "codePostal": "22800", - "codeCommune": "22126", - "libelleAcheminement": "LE LESLAY", - "nomCommune": "LE LESLAY" + "codePostal": "57050", + "codeCommune": "57415", + "libelleAcheminement": "LORRY LES METZ", + "nomCommune": "LORRY LES METZ" }, { - "codePostal": "37600", - "codeCommune": "37026", - "libelleAcheminement": "BETZ LE CHATEAU", - "nomCommune": "BETZ LE CHATEAU" + "codePostal": "57925", + "codeCommune": "57179", + "libelleAcheminement": "DISTROFF", + "nomCommune": "DISTROFF" }, { - "codePostal": "51450", - "codeCommune": "51055", - "libelleAcheminement": "BETHENY", - "nomCommune": "BETHENY" + "codePostal": "44440", + "codeCommune": "44207", + "libelleAcheminement": "TRANS SUR ERDRE", + "nomCommune": "TRANS SUR ERDRE" }, { - "codePostal": "27180", - "codeCommune": "27451", - "libelleAcheminement": "PARVILLE", - "nomCommune": "PARVILLE" + "codePostal": "47160", + "codeCommune": "47214", + "libelleAcheminement": "PUCH D AGENAIS", + "nomCommune": "PUCH D AGENAIS" }, { - "codePostal": "22540", - "codeCommune": "22135", - "libelleAcheminement": "LOUARGAT", - "nomCommune": "LOUARGAT" + "codePostal": "57720", + "codeCommune": "57421", + "libelleAcheminement": "LOUTZVILLER", + "nomCommune": "LOUTZVILLER" }, { - "codePostal": "37140", - "codeCommune": "37031", - "libelleAcheminement": "BOURGUEIL", - "nomCommune": "BOURGUEIL" + "codePostal": "57690", + "codeCommune": "57190", + "libelleAcheminement": "ELVANGE", + "nomCommune": "ELVANGE" }, { - "codePostal": "51260", - "codeCommune": "51056", - "libelleAcheminement": "BETHON", - "nomCommune": "BETHON" + "codePostal": "44420", + "codeCommune": "44211", + "libelleAcheminement": "LA TURBALLE", + "nomCommune": "LA TURBALLE" }, { - "codePostal": "27400", - "codeCommune": "27456", - "libelleAcheminement": "PINTERVILLE", - "nomCommune": "PINTERVILLE" + "codePostal": "47350", + "codeCommune": "47216", + "libelleAcheminement": "PUYMICLAN", + "nomCommune": "PUYMICLAN" }, { - "codePostal": "22340", - "codeCommune": "22137", - "libelleAcheminement": "MAEL CARHAIX", - "nomCommune": "MAEL CARHAIX" + "codePostal": "57170", + "codeCommune": "57423", + "libelleAcheminement": "LUBECOURT", + "nomCommune": "LUBECOURT" }, { - "codePostal": "37120", - "codeCommune": "37035", - "libelleAcheminement": "BRAYE SOUS FAYE", - "nomCommune": "BRAYE SOUS FAYE" + "codePostal": "57720", + "codeCommune": "57196", + "libelleAcheminement": "ERCHING", + "nomCommune": "ERCHING" }, { - "codePostal": "51170", - "codeCommune": "51069", - "libelleAcheminement": "BLIGNY", - "nomCommune": "BLIGNY" + "codePostal": "44330", + "codeCommune": "44212", + "libelleAcheminement": "VALLET", + "nomCommune": "VALLET" }, { - "codePostal": "27120", - "codeCommune": "27465", - "libelleAcheminement": "LE PLESSIS HEBERT", - "nomCommune": "LE PLESSIS HEBERT" + "codePostal": "47270", + "codeCommune": "47217", + "libelleAcheminement": "PUYMIROL", + "nomCommune": "PUYMIROL" }, { - "codePostal": "22440", - "codeCommune": "22144", - "libelleAcheminement": "LA MEAUGON", - "nomCommune": "LA MEAUGON" + "codePostal": "57280", + "codeCommune": "57433", + "libelleAcheminement": "MAIZIERES LES METZ", + "nomCommune": "MAIZIERES LES METZ" }, { - "codePostal": "37330", - "codeCommune": "37036", - "libelleAcheminement": "BRAYE SUR MAULNE", - "nomCommune": "BRAYE SUR MAULNE" + "codePostal": "57660", + "codeCommune": "57198", + "libelleAcheminement": "ERSTROFF", + "nomCommune": "ERSTROFF" }, { - "codePostal": "51310", - "codeCommune": "51071", - "libelleAcheminement": "BOUCHY ST GENEST", - "nomCommune": "BOUCHY ST GENEST" + "codePostal": "44370", + "codeCommune": "44213", + "libelleAcheminement": "LOIREAUXENCE", + "nomCommune": "LOIREAUXENCE" }, { - "codePostal": "27500", - "codeCommune": "27467", - "libelleAcheminement": "PONT AUDEMER", - "nomCommune": "PONT AUDEMER" + "codePostal": "47170", + "codeCommune": "47221", + "libelleAcheminement": "REAUP LISSE", + "nomCommune": "REAUP LISSE" }, { - "codePostal": "22270", - "codeCommune": "22145", - "libelleAcheminement": "MEGRIT", - "nomCommune": "MEGRIT" + "codePostal": "57590", + "codeCommune": "57436", + "libelleAcheminement": "MALAUCOURT SUR SEILLE", + "nomCommune": "MALAUCOURT SUR SEILLE" }, { - "codePostal": "37600", - "codeCommune": "37039", - "libelleAcheminement": "BRIDORE", - "nomCommune": "BRIDORE" + "codePostal": "57640", + "codeCommune": "57204", + "libelleAcheminement": "FAILLY", + "nomCommune": "FAILLY" }, { - "codePostal": "51110", - "codeCommune": "51074", - "libelleAcheminement": "BOULT SUR SUIPPE", - "nomCommune": "BOULT SUR SUIPPE" + "codePostal": "44360", + "codeCommune": "44217", + "libelleAcheminement": "VIGNEUX DE BRETAGNE", + "nomCommune": "VIGNEUX DE BRETAGNE" }, { - "codePostal": "27500", - "codeCommune": "27476", - "libelleAcheminement": "LES PREAUX", - "nomCommune": "LES PREAUX" + "codePostal": "47180", + "codeCommune": "47233", + "libelleAcheminement": "STE BAZEILLE", + "nomCommune": "STE BAZEILLE" }, { - "codePostal": "22340", - "codeCommune": "22163", - "libelleAcheminement": "PAULE", - "nomCommune": "PAULE" + "codePostal": "57670", + "codeCommune": "57446", + "libelleAcheminement": "MARIMONT LES BENESTROFF", + "nomCommune": "MARIMONT LES BENESTROFF" }, { - "codePostal": "37600", - "codeCommune": "37053", - "libelleAcheminement": "CHANCEAUX PRES LOCHES", - "nomCommune": "CHANCEAUX PRES LOCHES" + "codePostal": "57640", + "codeCommune": "57204", + "libelleAcheminement": "FAILLY", + "nomCommune": "FAILLY" }, { - "codePostal": "51140", - "codeCommune": "51086", - "libelleAcheminement": "BREUIL SUR VESLE", - "nomCommune": "BREUIL SUR VESLE" + "codePostal": "44640", + "codeCommune": "44220", + "libelleAcheminement": "VUE", + "nomCommune": "VUE" }, { - "codePostal": "27420", - "codeCommune": "27490", - "libelleAcheminement": "RICHEVILLE", - "nomCommune": "RICHEVILLE" + "codePostal": "47410", + "codeCommune": "47235", + "libelleAcheminement": "ST COLOMB DE LAUZUN", + "nomCommune": "ST COLOMB DE LAUZUN" }, { - "codePostal": "22540", - "codeCommune": "22164", - "libelleAcheminement": "PEDERNEC", - "nomCommune": "PEDERNEC" + "codePostal": "57560", + "codeCommune": "57461", + "libelleAcheminement": "METAIRIES ST QUIRIN", + "nomCommune": "METAIRIES ST QUIRIN" }, { - "codePostal": "37390", - "codeCommune": "37059", - "libelleAcheminement": "CHARENTILLY", - "nomCommune": "CHARENTILLY" + "codePostal": "57450", + "codeCommune": "57207", + "libelleAcheminement": "FAREBERSVILLER", + "nomCommune": "FAREBERSVILLER" }, { - "codePostal": "51230", - "codeCommune": "51091", - "libelleAcheminement": "BROUSSY LE PETIT", - "nomCommune": "BROUSSY LE PETIT" + "codePostal": "44170", + "codeCommune": "44224", + "libelleAcheminement": "LA GRIGONNAIS", + "nomCommune": "LA GRIGONNAIS" }, { - "codePostal": "27790", - "codeCommune": "27496", - "libelleAcheminement": "ROSAY SUR LIEURE", - "nomCommune": "ROSAY SUR LIEURE" + "codePostal": "47430", + "codeCommune": "47253", + "libelleAcheminement": "STE MARTHE", + "nomCommune": "STE MARTHE" }, { - "codePostal": "22540", - "codeCommune": "22164", - "libelleAcheminement": "PEDERNEC", - "nomCommune": "PEDERNEC" + "codePostal": "57070", + "codeCommune": "57463", + "libelleAcheminement": "METZ", + "nomCommune": "METZ" }, { - "codePostal": "37220", - "codeCommune": "37071", - "libelleAcheminement": "CHEZELLES", - "nomCommune": "CHEZELLES" + "codePostal": "57380", + "codeCommune": "57209", + "libelleAcheminement": "FAULQUEMONT", + "nomCommune": "FAULQUEMONT" }, { - "codePostal": "51270", - "codeCommune": "51100", - "libelleAcheminement": "LA CAURE", - "nomCommune": "LA CAURE" + "codePostal": "45230", + "codeCommune": "45001", + "libelleAcheminement": "ADON", + "nomCommune": "ADON" }, { - "codePostal": "27230", - "codeCommune": "27512", - "libelleAcheminement": "ST AUBIN DE SCELLON", - "nomCommune": "ST AUBIN DE SCELLON" + "codePostal": "47270", + "codeCommune": "47255", + "libelleAcheminement": "ST MARTIN DE BEAUVILLE", + "nomCommune": "ST MARTIN DE BEAUVILLE" }, { - "codePostal": "22700", - "codeCommune": "22168", - "libelleAcheminement": "PERROS GUIREC", - "nomCommune": "PERROS GUIREC" + "codePostal": "57670", + "codeCommune": "57470", + "libelleAcheminement": "MOLRING", + "nomCommune": "MOLRING" }, { - "codePostal": "37240", - "codeCommune": "37078", - "libelleAcheminement": "CIRAN", - "nomCommune": "CIRAN" + "codePostal": "57280", + "codeCommune": "57211", + "libelleAcheminement": "FEVES", + "nomCommune": "FEVES" }, { - "codePostal": "51110", - "codeCommune": "51101", - "libelleAcheminement": "CAUREL", - "nomCommune": "CAUREL" + "codePostal": "45170", + "codeCommune": "45009", + "libelleAcheminement": "ASCHERES LE MARCHE", + "nomCommune": "ASCHERES LE MARCHE" }, { - "codePostal": "27270", - "codeCommune": "27514", - "libelleAcheminement": "ST AUBIN DU THENNEY", - "nomCommune": "ST AUBIN DU THENNEY" + "codePostal": "47180", + "codeCommune": "47257", + "libelleAcheminement": "ST MARTIN PETIT", + "nomCommune": "ST MARTIN PETIT" }, { - "codePostal": "22550", - "codeCommune": "22174", - "libelleAcheminement": "PLEBOULLE", - "nomCommune": "PLEBOULLE" + "codePostal": "57420", + "codeCommune": "57472", + "libelleAcheminement": "MONCHEUX", + "nomCommune": "MONCHEUX" }, { - "codePostal": "37160", - "codeCommune": "37080", - "libelleAcheminement": "CIVRAY SUR ESVES", - "nomCommune": "CIVRAY SUR ESVES" + "codePostal": "57420", + "codeCommune": "57212", + "libelleAcheminement": "FEY", + "nomCommune": "FEY" }, { - "codePostal": "51260", - "codeCommune": "51103", - "libelleAcheminement": "LA CELLE SOUS CHANTEMERLE", - "nomCommune": "LA CELLE SOUS CHANTEMERLE" + "codePostal": "45170", + "codeCommune": "45011", + "libelleAcheminement": "ATTRAY", + "nomCommune": "ATTRAY" }, { - "codePostal": "27270", - "codeCommune": "27516", - "libelleAcheminement": "TREIS SANTS EN OUCHE", - "nomCommune": "TREIS SANTS EN OUCHE" + "codePostal": "47160", + "codeCommune": "47267", + "libelleAcheminement": "ST PIERRE DE BUZET", + "nomCommune": "ST PIERRE DE BUZET" }, { - "codePostal": "22290", - "codeCommune": "22178", - "libelleAcheminement": "PLEHEDEL", - "nomCommune": "PLEHEDEL" + "codePostal": "57570", + "codeCommune": "57475", + "libelleAcheminement": "MONDORFF", + "nomCommune": "MONDORFF" }, { - "codePostal": "37320", - "codeCommune": "37083", - "libelleAcheminement": "CORMERY", - "nomCommune": "CORMERY" + "codePostal": "57320", + "codeCommune": "57213", + "libelleAcheminement": "FILSTROFF", + "nomCommune": "FILSTROFF" }, { - "codePostal": "51130", - "codeCommune": "51107", - "libelleAcheminement": "CHAINTRIX BIERGES", - "nomCommune": "CHAINTRIX BIERGES" + "codePostal": "45270", + "codeCommune": "45017", + "libelleAcheminement": "AUVILLIERS EN GATINAIS", + "nomCommune": "AUVILLIERS EN GATINAIS" }, { - "codePostal": "27140", - "codeCommune": "27533", - "libelleAcheminement": "ST DENIS LE FERMENT", - "nomCommune": "ST DENIS LE FERMENT" + "codePostal": "47360", + "codeCommune": "47275", + "libelleAcheminement": "ST SALVY", + "nomCommune": "ST SALVY" }, { - "codePostal": "22240", - "codeCommune": "22179", - "libelleAcheminement": "FREHEL", - "nomCommune": "FREHEL" + "codePostal": "57670", + "codeCommune": "57478", + "libelleAcheminement": "MONTDIDIER", + "nomCommune": "MONTDIDIER" }, { - "codePostal": "37330", - "codeCommune": "37084", - "libelleAcheminement": "COUESMES", - "nomCommune": "COUESMES" + "codePostal": "57420", + "codeCommune": "57218", + "libelleAcheminement": "FLEURY", + "nomCommune": "FLEURY" }, { - "codePostal": "51270", - "codeCommune": "51113", - "libelleAcheminement": "CHAMPAUBERT", - "nomCommune": "CHAMPAUBERT" + "codePostal": "45420", + "codeCommune": "45023", + "libelleAcheminement": "BATILLY EN PUISAYE", + "nomCommune": "BATILLY EN PUISAYE" }, { - "codePostal": "27450", - "codeCommune": "27550", - "libelleAcheminement": "ST GREGOIRE DU VIEVRE", - "nomCommune": "ST GREGOIRE DU VIEVRE" + "codePostal": "47180", + "codeCommune": "47277", + "libelleAcheminement": "ST SAUVEUR DE MEILHAN", + "nomCommune": "ST SAUVEUR DE MEILHAN" }, { - "codePostal": "22980", - "codeCommune": "22180", - "libelleAcheminement": "PLELAN LE PETIT", - "nomCommune": "PLELAN LE PETIT" + "codePostal": "57620", + "codeCommune": "57489", + "libelleAcheminement": "MOUTERHOUSE", + "nomCommune": "MOUTERHOUSE" }, { - "codePostal": "37330", - "codeCommune": "37086", - "libelleAcheminement": "COURCELLES DE TOURAINE", - "nomCommune": "COURCELLES DE TOURAINE" + "codePostal": "57190", + "codeCommune": "57221", + "libelleAcheminement": "FLORANGE", + "nomCommune": "FLORANGE" }, { - "codePostal": "51310", - "codeCommune": "51116", - "libelleAcheminement": "CHAMPGUYON", - "nomCommune": "CHAMPGUYON" + "codePostal": "45210", + "codeCommune": "45026", + "libelleAcheminement": "BAZOCHES SUR LE BETZ", + "nomCommune": "BAZOCHES SUR LE BETZ" }, { - "codePostal": "27950", - "codeCommune": "27554", - "libelleAcheminement": "LA CHAPELLE LONGUEVILLE", - "nomCommune": "LA CHAPELLE LONGUEVILLE" + "codePostal": "47500", + "codeCommune": "47283", + "libelleAcheminement": "ST VITE", + "nomCommune": "ST VITE" }, { - "codePostal": "22170", - "codeCommune": "22188", - "libelleAcheminement": "PLERNEUF", - "nomCommune": "PLERNEUF" + "codePostal": "57250", + "codeCommune": "57491", + "libelleAcheminement": "MOYEUVRE GRANDE", + "nomCommune": "MOYEUVRE GRANDE" }, { - "codePostal": "37240", - "codeCommune": "37094", - "libelleAcheminement": "CUSSAY", - "nomCommune": "CUSSAY" + "codePostal": "57600", + "codeCommune": "57227", + "libelleAcheminement": "FORBACH", + "nomCommune": "FORBACH" }, { - "codePostal": "51800", - "codeCommune": "51126", - "libelleAcheminement": "LA CHAPELLE FELCOURT", - "nomCommune": "LA CHAPELLE FELCOURT" + "codePostal": "45760", + "codeCommune": "45034", + "libelleAcheminement": "BOIGNY SUR BIONNE", + "nomCommune": "BOIGNY SUR BIONNE" }, { - "codePostal": "27220", - "codeCommune": "27555", - "libelleAcheminement": "ST LAURENT DES BOIS", - "nomCommune": "ST LAURENT DES BOIS" + "codePostal": "47250", + "codeCommune": "47285", + "libelleAcheminement": "SAMAZAN", + "nomCommune": "SAMAZAN" }, { - "codePostal": "22310", - "codeCommune": "22194", - "libelleAcheminement": "PLESTIN LES GREVES", - "nomCommune": "PLESTIN LES GREVES" + "codePostal": "57250", + "codeCommune": "57492", + "libelleAcheminement": "MOYEUVRE PETITE", + "nomCommune": "MOYEUVRE PETITE" }, { - "codePostal": "37110", - "codeCommune": "37095", - "libelleAcheminement": "DAME MARIE LES BOIS", - "nomCommune": "DAME MARIE LES BOIS" + "codePostal": "57590", + "codeCommune": "57228", + "libelleAcheminement": "FOSSIEUX", + "nomCommune": "FOSSIEUX" }, { - "codePostal": "51270", - "codeCommune": "51128", - "libelleAcheminement": "LA CHAPELLE SOUS ORBAIS", - "nomCommune": "LA CHAPELLE SOUS ORBAIS" + "codePostal": "45430", + "codeCommune": "45043", + "libelleAcheminement": "BOU", + "nomCommune": "BOU" }, { - "codePostal": "27300", - "codeCommune": "27557", - "libelleAcheminement": "ST LEGER DE ROTES", - "nomCommune": "ST LEGER DE ROTES" + "codePostal": "47800", + "codeCommune": "47290", + "libelleAcheminement": "LA SAUVETAT DU DROPT", + "nomCommune": "LA SAUVETAT DU DROPT" }, { - "codePostal": "22240", - "codeCommune": "22201", - "libelleAcheminement": "PLEVENON", - "nomCommune": "PLEVENON" + "codePostal": "57220", + "codeCommune": "57495", + "libelleAcheminement": "NARBEFONTAINE", + "nomCommune": "NARBEFONTAINE" }, { - "codePostal": "37240", - "codeCommune": "37103", - "libelleAcheminement": "ESVES LE MOUTIER", - "nomCommune": "ESVES LE MOUTIER" + "codePostal": "57670", + "codeCommune": "57232", + "libelleAcheminement": "FRANCALTROFF", + "nomCommune": "FRANCALTROFF" }, { - "codePostal": "51120", - "codeCommune": "51129", - "libelleAcheminement": "CHARLEVILLE", - "nomCommune": "CHARLEVILLE" + "codePostal": "45300", + "codeCommune": "45050", + "libelleAcheminement": "BOYNES", + "nomCommune": "BOYNES" }, { - "codePostal": "27190", - "codeCommune": "27568", - "libelleAcheminement": "STE MARTHE", - "nomCommune": "STE MARTHE" + "codePostal": "47500", + "codeCommune": "47292", + "libelleAcheminement": "SAUVETERRE LA LEMANCE", + "nomCommune": "SAUVETERRE LA LEMANCE" }, { - "codePostal": "22150", - "codeCommune": "22203", - "libelleAcheminement": "PLOEUC L HERMITAGE", - "nomCommune": "PLOEUC L HERMITAGE" + "codePostal": "57320", + "codeCommune": "57502", + "libelleAcheminement": "NEUNKIRCHEN LES BOUZONVILLE", + "nomCommune": "NEUNKIRCHEN LES BOUZONVILLE" }, { - "codePostal": "37230", - "codeCommune": "37109", - "libelleAcheminement": "FONDETTES", - "nomCommune": "FONDETTES" + "codePostal": "57320", + "codeCommune": "57235", + "libelleAcheminement": "FREISTROFF", + "nomCommune": "FREISTROFF" }, { - "codePostal": "51170", - "codeCommune": "51140", - "libelleAcheminement": "CHAUMUZY", - "nomCommune": "CHAUMUZY" + "codePostal": "45460", + "codeCommune": "45051", + "libelleAcheminement": "BRAY ST AIGNAN", + "nomCommune": "BRAY ST AIGNAN" }, { - "codePostal": "27160", - "codeCommune": "27578", - "libelleAcheminement": "STE MARIE D ATTEZ", - "nomCommune": "STE MARIE D ATTEZ" + "codePostal": "47150", + "codeCommune": "47295", + "libelleAcheminement": "SAVIGNAC SUR LEYZE", + "nomCommune": "SAVIGNAC SUR LEYZE" }, { - "codePostal": "22150", - "codeCommune": "22203", - "libelleAcheminement": "PLOEUC L HERMITAGE", - "nomCommune": "PLOEUC L HERMITAGE" + "codePostal": "57930", + "codeCommune": "57506", + "libelleAcheminement": "NIEDERSTINZEL", + "nomCommune": "NIEDERSTINZEL" }, { - "codePostal": "37350", - "codeCommune": "37113", - "libelleAcheminement": "LE GRAND PRESSIGNY", - "nomCommune": "LE GRAND PRESSIGNY" + "codePostal": "57590", + "codeCommune": "57236", + "libelleAcheminement": "FREMERY", + "nomCommune": "FREMERY" }, { - "codePostal": "51240", - "codeCommune": "51141", - "libelleAcheminement": "LA CHAUSSEE SUR MARNE", - "nomCommune": "LA CHAUSSEE SUR MARNE" + "codePostal": "45250", + "codeCommune": "45052", + "libelleAcheminement": "BRETEAU", + "nomCommune": "BRETEAU" }, { - "codePostal": "27310", - "codeCommune": "27580", - "libelleAcheminement": "ST OUEN DE THOUBERVILLE", - "nomCommune": "ST OUEN DE THOUBERVILLE" + "codePostal": "47350", + "codeCommune": "47301", + "libelleAcheminement": "SEYCHES", + "nomCommune": "SEYCHES" }, { - "codePostal": "22130", - "codeCommune": "22205", - "libelleAcheminement": "PLOREC SUR ARGUENON", - "nomCommune": "PLOREC SUR ARGUENON" + "codePostal": "57645", + "codeCommune": "57510", + "libelleAcheminement": "NOISSEVILLE", + "nomCommune": "NOISSEVILLE" }, { - "codePostal": "37240", - "codeCommune": "37130", - "libelleAcheminement": "LIGUEIL", - "nomCommune": "LIGUEIL" + "codePostal": "57170", + "codeCommune": "57238", + "libelleAcheminement": "FRESNES EN SAULNOIS", + "nomCommune": "FRESNES EN SAULNOIS" }, { - "codePostal": "51270", - "codeCommune": "51157", - "libelleAcheminement": "COIZARD JOCHES", - "nomCommune": "COIZARD JOCHES" + "codePostal": "45390", + "codeCommune": "45054", + "libelleAcheminement": "BRIARRES SUR ESSONNE", + "nomCommune": "BRIARRES SUR ESSONNE" }, { - "codePostal": "27370", - "codeCommune": "27593", - "libelleAcheminement": "ST PIERRE DES FLEURS", - "nomCommune": "ST PIERRE DES FLEURS" + "codePostal": "47170", + "codeCommune": "47302", + "libelleAcheminement": "SOS", + "nomCommune": "SOS" }, { - "codePostal": "22170", - "codeCommune": "22206", - "libelleAcheminement": "CHATELAUDREN PLOUAGAT", - "nomCommune": "CHATELAUDREN PLOUAGAT" + "codePostal": "57680", + "codeCommune": "57515", + "libelleAcheminement": "NOVEANT SUR MOSELLE", + "nomCommune": "NOVEANT SUR MOSELLE" }, { - "codePostal": "37330", - "codeCommune": "37137", - "libelleAcheminement": "LUBLE", - "nomCommune": "LUBLE" + "codePostal": "57810", + "codeCommune": "57241", + "libelleAcheminement": "FRIBOURG", + "nomCommune": "FRIBOURG" }, { - "codePostal": "51230", - "codeCommune": "51165", - "libelleAcheminement": "CONNANTRE", - "nomCommune": "CONNANTRE" + "codePostal": "45520", + "codeCommune": "45062", + "libelleAcheminement": "CERCOTTES", + "nomCommune": "CERCOTTES" }, { - "codePostal": "27210", - "codeCommune": "27597", - "libelleAcheminement": "ST PIERRE DU VAL", - "nomCommune": "ST PIERRE DU VAL" + "codePostal": "47210", + "codeCommune": "47311", + "libelleAcheminement": "TOURLIAC", + "nomCommune": "TOURLIAC" }, { - "codePostal": "22170", - "codeCommune": "22206", - "libelleAcheminement": "CHATELAUDREN PLOUAGAT", - "nomCommune": "CHATELAUDREN PLOUAGAT" + "codePostal": "57840", + "codeCommune": "57529", + "libelleAcheminement": "OTTANGE", + "nomCommune": "OTTANGE" }, { - "codePostal": "37150", - "codeCommune": "37141", - "libelleAcheminement": "LUZILLE", - "nomCommune": "LUZILLE" + "codePostal": "57175", + "codeCommune": "57242", + "libelleAcheminement": "GANDRANGE", + "nomCommune": "GANDRANGE" }, { - "codePostal": "51320", - "codeCommune": "51169", - "libelleAcheminement": "CORBEIL", - "nomCommune": "CORBEIL" + "codePostal": "45620", + "codeCommune": "45063", + "libelleAcheminement": "CERDON", + "nomCommune": "CERDON" }, { - "codePostal": "27680", - "codeCommune": "27601", - "libelleAcheminement": "ST SAMSON DE LA ROQUE", - "nomCommune": "ST SAMSON DE LA ROQUE" + "codePostal": "47140", + "codeCommune": "47314", + "libelleAcheminement": "TREMONS", + "nomCommune": "TREMONS" }, { - "codePostal": "22650", - "codeCommune": "22209", - "libelleAcheminement": "BEAUSSAIS SUR MER", - "nomCommune": "BEAUSSAIS SUR MER" + "codePostal": "57220", + "codeCommune": "57530", + "libelleAcheminement": "OTTONVILLE", + "nomCommune": "OTTONVILLE" }, { - "codePostal": "37240", - "codeCommune": "37143", - "libelleAcheminement": "MANTHELAN", - "nomCommune": "MANTHELAN" + "codePostal": "57260", + "codeCommune": "57246", + "libelleAcheminement": "GELUCOURT", + "nomCommune": "GELUCOURT" }, { - "codePostal": "51350", - "codeCommune": "51172", - "libelleAcheminement": "CORMONTREUIL", - "nomCommune": "CORMONTREUIL" + "codePostal": "45360", + "codeCommune": "45064", + "libelleAcheminement": "CERNOY EN BERRY", + "nomCommune": "CERNOY EN BERRY" }, { - "codePostal": "27260", - "codeCommune": "27605", - "libelleAcheminement": "ST SYLVESTRE DE CORMEILLES", - "nomCommune": "ST SYLVESTRE DE CORMEILLES" + "codePostal": "47210", + "codeCommune": "47324", + "libelleAcheminement": "VILLEREAL", + "nomCommune": "VILLEREAL" }, { - "codePostal": "22620", - "codeCommune": "22210", - "libelleAcheminement": "PLOUBAZLANEC", - "nomCommune": "PLOUBAZLANEC" + "codePostal": "57370", + "codeCommune": "57540", + "libelleAcheminement": "PHALSBOURG", + "nomCommune": "PHALSBOURG" }, { - "codePostal": "37500", - "codeCommune": "37144", - "libelleAcheminement": "MARCAY", - "nomCommune": "MARCAY" + "codePostal": "57620", + "codeCommune": "57250", + "libelleAcheminement": "GOETZENBRUCK", + "nomCommune": "GOETZENBRUCK" }, { - "codePostal": "51300", - "codeCommune": "51184", - "libelleAcheminement": "COURDEMANGES", - "nomCommune": "COURDEMANGES" + "codePostal": "45300", + "codeCommune": "45065", + "libelleAcheminement": "CESARVILLE DOSSAINVILLE", + "nomCommune": "CESARVILLE DOSSAINVILLE" }, { - "codePostal": "27300", - "codeCommune": "27608", - "libelleAcheminement": "ST VICTOR DE CHRETIENVILLE", - "nomCommune": "ST VICTOR DE CHRETIENVILLE" + "codePostal": "47400", + "codeCommune": "47325", + "libelleAcheminement": "VILLETON", + "nomCommune": "VILLETON" }, { - "codePostal": "22620", - "codeCommune": "22210", - "libelleAcheminement": "PLOUBAZLANEC", - "nomCommune": "PLOUBAZLANEC" + "codePostal": "57050", + "codeCommune": "57545", + "libelleAcheminement": "PLAPPEVILLE", + "nomCommune": "PLAPPEVILLE" }, { - "codePostal": "37120", - "codeCommune": "37148", - "libelleAcheminement": "MARIGNY MARMANDE", - "nomCommune": "MARIGNY MARMANDE" + "codePostal": "57220", + "codeCommune": "57252", + "libelleAcheminement": "GOMELANGE", + "nomCommune": "GOMELANGE" }, { - "codePostal": "51310", - "codeCommune": "51185", - "libelleAcheminement": "COURGIVAUX", - "nomCommune": "COURGIVAUX" + "codePostal": "45380", + "codeCommune": "45067", + "libelleAcheminement": "CHAINGY", + "nomCommune": "CHAINGY" }, { - "codePostal": "27230", - "codeCommune": "27613", - "libelleAcheminement": "ST VINCENT DU BOULAY", - "nomCommune": "ST VINCENT DU BOULAY" + "codePostal": "48200", + "codeCommune": "48002", + "libelleAcheminement": "ALBARET STE MARIE", + "nomCommune": "ALBARET STE MARIE" }, { - "codePostal": "22780", - "codeCommune": "22217", - "libelleAcheminement": "PLOUGRAS", - "nomCommune": "PLOUGRAS" + "codePostal": "57420", + "codeCommune": "57548", + "libelleAcheminement": "PONTOY", + "nomCommune": "PONTOY" }, { - "codePostal": "37130", - "codeCommune": "37150", - "libelleAcheminement": "MAZIERES DE TOURAINE", - "nomCommune": "MAZIERES DE TOURAINE" + "codePostal": "57480", + "codeCommune": "57259", + "libelleAcheminement": "GRINDORFF BIZING", + "nomCommune": "GRINDORFF BIZING" }, { - "codePostal": "51480", - "codeCommune": "51190", - "libelleAcheminement": "COURTAGNON", - "nomCommune": "COURTAGNON" + "codePostal": "45400", + "codeCommune": "45072", + "libelleAcheminement": "CHANTEAU", + "nomCommune": "CHANTEAU" }, { - "codePostal": "27500", - "codeCommune": "27620", - "libelleAcheminement": "SELLES", - "nomCommune": "SELLES" + "codePostal": "48190", + "codeCommune": "48003", + "libelleAcheminement": "ALLENC", + "nomCommune": "ALLENC" }, { - "codePostal": "22150", - "codeCommune": "22219", - "libelleAcheminement": "PLOUGUENAST LANGAST", - "nomCommune": "PLOUGUENAST LANGAST" + "codePostal": "57890", + "codeCommune": "57550", + "libelleAcheminement": "PORCELETTE", + "nomCommune": "PORCELETTE" }, { - "codePostal": "37530", - "codeCommune": "37161", - "libelleAcheminement": "MOSNES", - "nomCommune": "MOSNES" + "codePostal": "57510", + "codeCommune": "57264", + "libelleAcheminement": "GUEBENHOUSE", + "nomCommune": "GUEBENHOUSE" }, { - "codePostal": "51460", - "codeCommune": "51193", - "libelleAcheminement": "COURTISOLS", - "nomCommune": "COURTISOLS" + "codePostal": "45310", + "codeCommune": "45074", + "libelleAcheminement": "LA CHAPELLE ONZERAIN", + "nomCommune": "LA CHAPELLE ONZERAIN" }, { - "codePostal": "27150", - "codeCommune": "27632", - "libelleAcheminement": "LE THIL EN VEXIN", - "nomCommune": "LE THIL" + "codePostal": "48500", + "codeCommune": "48017", + "libelleAcheminement": "BANASSAC CANILHAC", + "nomCommune": "BANASSAC CANILHAC" }, { - "codePostal": "22220", - "codeCommune": "22221", - "libelleAcheminement": "PLOUGUIEL", - "nomCommune": "PLOUGUIEL" + "codePostal": "57410", + "codeCommune": "57561", + "libelleAcheminement": "RAHLING", + "nomCommune": "RAHLING" }, { - "codePostal": "37600", - "codeCommune": "37162", - "libelleAcheminement": "MOUZAY", - "nomCommune": "MOUZAY" + "codePostal": "57220", + "codeCommune": "57277", + "libelleAcheminement": "GUINKIRCHEN", + "nomCommune": "GUINKIRCHEN" }, { - "codePostal": "51530", - "codeCommune": "51196", - "libelleAcheminement": "CRAMANT", - "nomCommune": "CRAMANT" + "codePostal": "45230", + "codeCommune": "45079", + "libelleAcheminement": "LE CHARME", + "nomCommune": "LE CHARME" }, { - "codePostal": "27570", - "codeCommune": "27643", - "libelleAcheminement": "TILLIERES SUR AVRE", - "nomCommune": "TILLIERES SUR AVRE" + "codePostal": "48200", + "codeCommune": "48025", + "libelleAcheminement": "LES BESSONS", + "nomCommune": "LES BESSONS" }, { - "codePostal": "22580", - "codeCommune": "22222", - "libelleAcheminement": "PLOUHA", - "nomCommune": "PLOUHA" + "codePostal": "57810", + "codeCommune": "57564", + "libelleAcheminement": "RECHICOURT LE CHATEAU", + "nomCommune": "RECHICOURT LE CHATEAU" }, { - "codePostal": "37530", - "codeCommune": "37163", - "libelleAcheminement": "NAZELLES NEGRON", - "nomCommune": "NAZELLES NEGRON" + "codePostal": "57300", + "codeCommune": "57283", + "libelleAcheminement": "HAGONDANGE", + "nomCommune": "HAGONDANGE" }, { - "codePostal": "51700", - "codeCommune": "51201", - "libelleAcheminement": "CUISLES", - "nomCommune": "CUISLES" + "codePostal": "45260", + "codeCommune": "45084", + "libelleAcheminement": "CHATENOY", + "nomCommune": "CHATENOY" }, { - "codePostal": "27500", - "codeCommune": "27645", - "libelleAcheminement": "TOCQUEVILLE", - "nomCommune": "TOCQUEVILLE" + "codePostal": "48190", + "codeCommune": "48027", + "libelleAcheminement": "MONT LOZERE ET GOULET", + "nomCommune": "MONT LOZERE ET GOULET" }, { - "codePostal": "22300", - "codeCommune": "22226", - "libelleAcheminement": "PLOUMILLIAU", - "nomCommune": "PLOUMILLIAU" + "codePostal": "57445", + "codeCommune": "57566", + "libelleAcheminement": "REDING", + "nomCommune": "REDING" }, { - "codePostal": "37190", - "codeCommune": "37165", - "libelleAcheminement": "NEUIL", - "nomCommune": "NEUIL" + "codePostal": "57170", + "codeCommune": "57290", + "libelleAcheminement": "HAMPONT", + "nomCommune": "HAMPONT" }, { - "codePostal": "51400", - "codeCommune": "51203", - "libelleAcheminement": "CUPERLY", - "nomCommune": "CUPERLY" + "codePostal": "45520", + "codeCommune": "45093", + "libelleAcheminement": "CHEVILLY", + "nomCommune": "CHEVILLY" }, { - "codePostal": "27210", - "codeCommune": "27646", - "libelleAcheminement": "LE TORPT", - "nomCommune": "LE TORPT" + "codePostal": "48310", + "codeCommune": "48031", + "libelleAcheminement": "BRION", + "nomCommune": "BRION" }, { - "codePostal": "22590", - "codeCommune": "22251", - "libelleAcheminement": "PORDIC", - "nomCommune": "PORDIC" + "codePostal": "57480", + "codeCommune": "57576", + "libelleAcheminement": "RETTEL", + "nomCommune": "RETTEL" }, { - "codePostal": "37370", - "codeCommune": "37170", - "libelleAcheminement": "NEUVY LE ROI", - "nomCommune": "NEUVY LE ROI" + "codePostal": "57580", + "codeCommune": "57293", + "libelleAcheminement": "HAN SUR NIED", + "nomCommune": "HAN SUR NIED" }, { - "codePostal": "51240", - "codeCommune": "51208", - "libelleAcheminement": "DAMPIERRE SUR MOIVRE", - "nomCommune": "DAMPIERRE SUR MOIVRE" + "codePostal": "45290", + "codeCommune": "45096", + "libelleAcheminement": "LES CHOUX", + "nomCommune": "LES CHOUX" }, { - "codePostal": "27370", - "codeCommune": "27654", - "libelleAcheminement": "TOURVILLE LA CAMPAGNE", - "nomCommune": "TOURVILLE LA CAMPAGNE" + "codePostal": "48600", + "codeCommune": "48038", + "libelleAcheminement": "BEL AIR VAL D ANCE", + "nomCommune": "BEL AIR VAL D ANCE" }, { - "codePostal": "22590", - "codeCommune": "22251", - "libelleAcheminement": "PORDIC", - "nomCommune": "PORDIC" + "codePostal": "57830", + "codeCommune": "57583", + "libelleAcheminement": "RICHEVAL", + "nomCommune": "RICHEVAL" }, { - "codePostal": "37800", - "codeCommune": "37176", - "libelleAcheminement": "NOYANT DE TOURAINE", - "nomCommune": "NOYANT DE TOURAINE" + "codePostal": "57630", + "codeCommune": "57295", + "libelleAcheminement": "HARAUCOURT SUR SEILLE", + "nomCommune": "HARAUCOURT SUR SEILLE" }, { - "codePostal": "51320", - "codeCommune": "51212", - "libelleAcheminement": "DOMMARTIN LETTREE", - "nomCommune": "DOMMARTIN LETTREE" + "codePostal": "45220", + "codeCommune": "45097", + "libelleAcheminement": "CHUELLES", + "nomCommune": "CHUELLES" }, { - "codePostal": "27110", - "codeCommune": "27658", - "libelleAcheminement": "LE TREMBLAY OMONVILLE", - "nomCommune": "LE TREMBLAY OMONVILLE" + "codePostal": "48300", + "codeCommune": "48041", + "libelleAcheminement": "CHASTANIER", + "nomCommune": "CHASTANIER" }, { - "codePostal": "22120", - "codeCommune": "22258", - "libelleAcheminement": "QUESSOY", - "nomCommune": "QUESSOY" + "codePostal": "57840", + "codeCommune": "57586", + "libelleAcheminement": "ROCHONVILLERS", + "nomCommune": "ROCHONVILLERS" }, { - "codePostal": "37220", - "codeCommune": "37178", - "libelleAcheminement": "PANZOULT", - "nomCommune": "PANZOULT" + "codePostal": "57870", + "codeCommune": "57298", + "libelleAcheminement": "HARREBERG", + "nomCommune": "HARREBERG" }, { - "codePostal": "51800", - "codeCommune": "51213", - "libelleAcheminement": "DOMMARTIN SOUS HANS", - "nomCommune": "DOMMARTIN SOUS HANS" + "codePostal": "45530", + "codeCommune": "45101", + "libelleAcheminement": "COMBREUX", + "nomCommune": "COMBREUX" }, { - "codePostal": "27930", - "codeCommune": "27659", - "libelleAcheminement": "LA TRINITE", - "nomCommune": "LA TRINITE" + "codePostal": "48140", + "codeCommune": "48046", + "libelleAcheminement": "CHAULHAC", + "nomCommune": "CHAULHAC" }, { - "codePostal": "22400", - "codeCommune": "22261", - "libelleAcheminement": "QUINTENIC", - "nomCommune": "QUINTENIC" + "codePostal": "57340", + "codeCommune": "57587", + "libelleAcheminement": "RODALBE", + "nomCommune": "RODALBE" }, { - "codePostal": "37350", - "codeCommune": "37184", - "libelleAcheminement": "LE PETIT PRESSIGNY", - "nomCommune": "LE PETIT PRESSIGNY" + "codePostal": "57530", + "codeCommune": "57307", + "libelleAcheminement": "HAYES", + "nomCommune": "HAYES" }, { - "codePostal": "51500", - "codeCommune": "51225", - "libelleAcheminement": "ECUEIL", - "nomCommune": "ECUEIL" + "codePostal": "45120", + "codeCommune": "45104", + "libelleAcheminement": "CORQUILLEROY", + "nomCommune": "CORQUILLEROY" }, { - "codePostal": "27480", - "codeCommune": "27664", - "libelleAcheminement": "LE TRONQUAY", - "nomCommune": "LE TRONQUAY" + "codePostal": "48160", + "codeCommune": "48051", + "libelleAcheminement": "LE COLLET DE DEZE", + "nomCommune": "LE COLLET DE DEZE" }, { - "codePostal": "22800", - "codeCommune": "22262", - "libelleAcheminement": "QUINTIN", - "nomCommune": "QUINTIN" + "codePostal": "57930", + "codeCommune": "57592", + "libelleAcheminement": "ROMELFING", + "nomCommune": "ROMELFING" }, { - "codePostal": "37530", - "codeCommune": "37185", - "libelleAcheminement": "POCE SUR CISSE", - "nomCommune": "POCE SUR CISSE" + "codePostal": "57660", + "codeCommune": "57311", + "libelleAcheminement": "HELLIMER", + "nomCommune": "HELLIMER" }, { - "codePostal": "51460", - "codeCommune": "51231", - "libelleAcheminement": "L EPINE", - "nomCommune": "L EPINE" + "codePostal": "45720", + "codeCommune": "45108", + "libelleAcheminement": "COULLONS", + "nomCommune": "COULLONS" }, { - "codePostal": "27350", - "codeCommune": "27669", - "libelleAcheminement": "VALLETOT", - "nomCommune": "VALLETOT" + "codePostal": "48190", + "codeCommune": "48054", + "libelleAcheminement": "CUBIERETTES", + "nomCommune": "CUBIERETTES" }, { - "codePostal": "22450", - "codeCommune": "22264", - "libelleAcheminement": "LA ROCHE JAUDY", - "nomCommune": "LA ROCHE JAUDY" + "codePostal": "57230", + "codeCommune": "57594", + "libelleAcheminement": "ROPPEVILLER", + "nomCommune": "ROPPEVILLER" }, { - "codePostal": "37380", - "codeCommune": "37194", - "libelleAcheminement": "REUGNY", - "nomCommune": "REUGNY" + "codePostal": "57820", + "codeCommune": "57315", + "libelleAcheminement": "HENRIDORFF", + "nomCommune": "HENRIDORFF" }, { - "codePostal": "51310", - "codeCommune": "51237", - "libelleAcheminement": "ESTERNAY", - "nomCommune": "ESTERNAY" + "codePostal": "45300", + "codeCommune": "45110", + "libelleAcheminement": "COURCELLES LE ROI", + "nomCommune": "COURCELLES LE ROI" }, { - "codePostal": "27200", - "codeCommune": "27681", - "libelleAcheminement": "VERNON", - "nomCommune": "VERNON" + "codePostal": "48230", + "codeCommune": "48056", + "libelleAcheminement": "ESCLANEDES", + "nomCommune": "ESCLANEDES" }, { - "codePostal": "22100", - "codeCommune": "22280", - "libelleAcheminement": "ST CARNE", - "nomCommune": "ST CARNE" + "codePostal": "57310", + "codeCommune": "57602", + "libelleAcheminement": "RURANGE LES THIONVILLE", + "nomCommune": "RURANGE LES THIONVILLE" }, { - "codePostal": "37420", - "codeCommune": "37197", - "libelleAcheminement": "RIGNY USSE", - "nomCommune": "RIGNY USSE" + "codePostal": "57450", + "codeCommune": "57316", + "libelleAcheminement": "HENRIVILLE", + "nomCommune": "HENRIVILLE" }, { - "codePostal": "51320", - "codeCommune": "51244", - "libelleAcheminement": "FAUX VESIGNEUL", - "nomCommune": "FAUX VESIGNEUL" + "codePostal": "45320", + "codeCommune": "45115", + "libelleAcheminement": "COURTENAY", + "nomCommune": "COURTENAY" }, { - "codePostal": "27240", - "codeCommune": "27693", - "libelleAcheminement": "SYLVAINS LES MOULINS", - "nomCommune": "SYLVAINS LES MOULINS" + "codePostal": "48100", + "codeCommune": "48068", + "libelleAcheminement": "GABRIAS", + "nomCommune": "GABRIAS" }, { - "codePostal": "22150", - "codeCommune": "22281", - "libelleAcheminement": "ST CARREUC", - "nomCommune": "ST CARREUC" + "codePostal": "57390", + "codeCommune": "57603", + "libelleAcheminement": "RUSSANGE", + "nomCommune": "RUSSANGE" }, { - "codePostal": "37220", - "codeCommune": "37199", - "libelleAcheminement": "RILLY SUR VIENNE", - "nomCommune": "RILLY SUR VIENNE" + "codePostal": "57400", + "codeCommune": "57321", + "libelleAcheminement": "HESSE", + "nomCommune": "HESSE" }, { - "codePostal": "51300", - "codeCommune": "51246", - "libelleAcheminement": "FAVRESSE", - "nomCommune": "FAVRESSE" + "codePostal": "45150", + "codeCommune": "45123", + "libelleAcheminement": "DARVOY", + "nomCommune": "DARVOY" }, { - "codePostal": "28500", - "codeCommune": "28003", - "libelleAcheminement": "ALLAINVILLE", - "nomCommune": "ALLAINVILLE" + "codePostal": "48100", + "codeCommune": "48072", + "libelleAcheminement": "GREZES", + "nomCommune": "GREZES" }, { - "codePostal": "22260", - "codeCommune": "22283", - "libelleAcheminement": "ST CLET", - "nomCommune": "ST CLET" + "codePostal": "57420", + "codeCommune": "57605", + "libelleAcheminement": "SAILLY ACHATEL", + "nomCommune": "SAILLY ACHATEL" }, { - "codePostal": "37190", - "codeCommune": "37200", - "libelleAcheminement": "RIVARENNES", - "nomCommune": "RIVARENNES" + "codePostal": "57400", + "codeCommune": "57324", + "libelleAcheminement": "HILBESHEIM", + "nomCommune": "HILBESHEIM" }, { - "codePostal": "51270", - "codeCommune": "51247", - "libelleAcheminement": "FEREBRIANGES", - "nomCommune": "FEREBRIANGES" + "codePostal": "45220", + "codeCommune": "45129", + "libelleAcheminement": "DOUCHY MONTCORBON", + "nomCommune": "DOUCHY MONTCORBON" }, { - "codePostal": "28260", - "codeCommune": "28007", - "libelleAcheminement": "ANET", - "nomCommune": "ANET" + "codePostal": "48120", + "codeCommune": "48079", + "libelleAcheminement": "LAJO", + "nomCommune": "LAJO" }, { - "codePostal": "22800", - "codeCommune": "22287", - "libelleAcheminement": "ST DONAN", - "nomCommune": "ST DONAN" + "codePostal": "57580", + "codeCommune": "57609", + "libelleAcheminement": "ST EPVRE", + "nomCommune": "ST EPVRE" }, { - "codePostal": "37500", - "codeCommune": "37202", - "libelleAcheminement": "LA ROCHE CLERMAULT", - "nomCommune": "LA ROCHE CLERMAULT" + "codePostal": "57670", + "codeCommune": "57335", + "libelleAcheminement": "HONSKIRCH", + "nomCommune": "HONSKIRCH" }, { - "codePostal": "51240", - "codeCommune": "51259", - "libelleAcheminement": "FRANCHEVILLE", - "nomCommune": "FRANCHEVILLE" + "codePostal": "45480", + "codeCommune": "45135", + "libelleAcheminement": "ERCEVILLE", + "nomCommune": "ERCEVILLE" }, { - "codePostal": "28480", - "codeCommune": "28010", - "libelleAcheminement": "ARGENVILLIERS", - "nomCommune": "ARGENVILLIERS" + "codePostal": "48700", + "codeCommune": "48083", + "libelleAcheminement": "LES LAUBIES", + "nomCommune": "LES LAUBIES" }, { - "codePostal": "22350", - "codeCommune": "22312", - "libelleAcheminement": "ST MADEN", - "nomCommune": "ST MADEN" + "codePostal": "57830", + "codeCommune": "57611", + "libelleAcheminement": "ST GEORGES", + "nomCommune": "ST GEORGES" }, { - "codePostal": "37370", - "codeCommune": "37207", - "libelleAcheminement": "ST AUBIN LE DEPEINT", - "nomCommune": "ST AUBIN LE DEPEINT" + "codePostal": "57490", + "codeCommune": "57336", + "libelleAcheminement": "L HOPITAL", + "nomCommune": "L HOPITAL" }, { - "codePostal": "51130", - "codeCommune": "51273", - "libelleAcheminement": "GIVRY LES LOISY", - "nomCommune": "GIVRY LES LOISY" + "codePostal": "45300", + "codeCommune": "45137", + "libelleAcheminement": "ESCRENNES", + "nomCommune": "ESCRENNES" }, { - "codePostal": "28500", - "codeCommune": "28014", - "libelleAcheminement": "AUNAY SOUS CRECY", - "nomCommune": "AUNAY SOUS CRECY" + "codePostal": "48210", + "codeCommune": "48088", + "libelleAcheminement": "LA MALENE", + "nomCommune": "LA MALENE" }, { - "codePostal": "22980", - "codeCommune": "22315", - "libelleAcheminement": "ST MAUDEZ", - "nomCommune": "ST MAUDEZ" + "codePostal": "57820", + "codeCommune": "57618", + "libelleAcheminement": "ST LOUIS", + "nomCommune": "ST LOUIS" }, { - "codePostal": "37550", - "codeCommune": "37208", - "libelleAcheminement": "ST AVERTIN", - "nomCommune": "ST AVERTIN" + "codePostal": "57720", + "codeCommune": "57338", + "libelleAcheminement": "HOTTVILLER", + "nomCommune": "HOTTVILLER" }, { - "codePostal": "51190", - "codeCommune": "51281", - "libelleAcheminement": "GRAUVES", - "nomCommune": "GRAUVES" + "codePostal": "45520", + "codeCommune": "45154", + "libelleAcheminement": "GIDY", + "nomCommune": "GIDY" }, { - "codePostal": "28700", - "codeCommune": "28015", - "libelleAcheminement": "AUNEAU BLEURY ST SYMPHORIEN", - "nomCommune": "AUNEAU BLEURY ST SYMPHORIEN" + "codePostal": "48500", + "codeCommune": "48094", + "libelleAcheminement": "MASSEGROS CAUSSES GORGES", + "nomCommune": "MASSEGROS CAUSSES GORGES" }, { - "codePostal": "22320", - "codeCommune": "22316", - "libelleAcheminement": "ST MAYEUX", - "nomCommune": "ST MAYEUX" + "codePostal": "57255", + "codeCommune": "57620", + "libelleAcheminement": "STE MARIE AUX CHENES", + "nomCommune": "STE MARIE AUX CHENES" }, { - "codePostal": "37230", - "codeCommune": "37217", - "libelleAcheminement": "ST ETIENNE DE CHIGNY", - "nomCommune": "ST ETIENNE DE CHIGNY" + "codePostal": "57830", + "codeCommune": "57342", + "libelleAcheminement": "IBIGNY", + "nomCommune": "IBIGNY" }, { - "codePostal": "51290", - "codeCommune": "51286", - "libelleAcheminement": "HAUTEVILLE", - "nomCommune": "HAUTEVILLE" + "codePostal": "45490", + "codeCommune": "45158", + "libelleAcheminement": "GONDREVILLE", + "nomCommune": "GONDREVILLE" }, { - "codePostal": "28320", - "codeCommune": "28023", - "libelleAcheminement": "BAILLEAU ARMENONVILLE", - "nomCommune": "BAILLEAU ARMENONVILLE" + "codePostal": "48500", + "codeCommune": "48094", + "libelleAcheminement": "MASSEGROS CAUSSES GORGES", + "nomCommune": "MASSEGROS CAUSSES GORGES" }, { - "codePostal": "22300", - "codeCommune": "22319", - "libelleAcheminement": "ST MICHEL EN GREVE", - "nomCommune": "ST MICHEL EN GREVE" + "codePostal": "57260", + "codeCommune": "57621", + "libelleAcheminement": "ST MEDARD", + "nomCommune": "ST MEDARD" }, { - "codePostal": "37330", - "codeCommune": "37223", - "libelleAcheminement": "ST LAURENT DE LIN", - "nomCommune": "ST LAURENT DE LIN" + "codePostal": "57245", + "codeCommune": "57351", + "libelleAcheminement": "JURY", + "nomCommune": "JURY" }, { - "codePostal": "51160", - "codeCommune": "51287", - "libelleAcheminement": "HAUTVILLERS", - "nomCommune": "HAUTVILLERS" + "codePostal": "45210", + "codeCommune": "45161", + "libelleAcheminement": "GRISELLES", + "nomCommune": "GRISELLES" }, { - "codePostal": "28310", - "codeCommune": "28025", - "libelleAcheminement": "BARMAINVILLE", - "nomCommune": "BARMAINVILLE" + "codePostal": "48000", + "codeCommune": "48095", + "libelleAcheminement": "MENDE", + "nomCommune": "MENDE" }, { - "codePostal": "22480", - "codeCommune": "22321", - "libelleAcheminement": "ST NICOLAS DU PELEM", - "nomCommune": "ST NICOLAS DU PELEM" + "codePostal": "57430", + "codeCommune": "57628", + "libelleAcheminement": "SARRALBE", + "nomCommune": "SARRALBE" }, { - "codePostal": "37530", - "codeCommune": "37230", - "libelleAcheminement": "ST OUEN LES VIGNES", - "nomCommune": "ST OUEN LES VIGNES" + "codePostal": "57590", + "codeCommune": "57354", + "libelleAcheminement": "JUVILLE", + "nomCommune": "JUVILLE" }, { - "codePostal": "51300", - "codeCommune": "51288", - "libelleAcheminement": "HEILTZ LE HUTIER", - "nomCommune": "HEILTZ LE HUTIER" + "codePostal": "45520", + "codeCommune": "45166", + "libelleAcheminement": "HUETRE", + "nomCommune": "HUETRE" }, { - "codePostal": "28700", - "codeCommune": "28039", - "libelleAcheminement": "BEVILLE LE COMTE", - "nomCommune": "BEVILLE LE COMTE" + "codePostal": "48150", + "codeCommune": "48096", + "libelleAcheminement": "MEYRUEIS", + "nomCommune": "MEYRUEIS" }, { - "codePostal": "22100", - "codeCommune": "22327", - "libelleAcheminement": "ST SAMSON SUR RANCE", - "nomCommune": "ST SAMSON SUR RANCE" + "codePostal": "57200", + "codeCommune": "57631", + "libelleAcheminement": "SARREGUEMINES", + "nomCommune": "SARREGUEMINES" }, { - "codePostal": "37370", - "codeCommune": "37231", - "libelleAcheminement": "ST PATERNE RACAN", - "nomCommune": "ST PATERNE RACAN" + "codePostal": "57412", + "codeCommune": "57355", + "libelleAcheminement": "KALHAUSEN", + "nomCommune": "KALHAUSEN" }, { - "codePostal": "51460", - "codeCommune": "51292", - "libelleAcheminement": "HERPONT", - "nomCommune": "HERPONT" + "codePostal": "45740", + "codeCommune": "45179", + "libelleAcheminement": "LAILLY EN VAL", + "nomCommune": "LAILLY EN VAL" }, { - "codePostal": "28500", - "codeCommune": "28045", - "libelleAcheminement": "BOISSY EN DROUAIS", - "nomCommune": "BOISSY EN DROUAIS" + "codePostal": "48110", + "codeCommune": "48097", + "libelleAcheminement": "MOISSAC VALLEE FRANCAISE", + "nomCommune": "MOISSAC VALLEE FRANCAISE" }, { - "codePostal": "22460", - "codeCommune": "22330", - "libelleAcheminement": "ST THELO", - "nomCommune": "ST THELO" + "codePostal": "57200", + "codeCommune": "57631", + "libelleAcheminement": "SARREGUEMINES", + "nomCommune": "SARREGUEMINES" }, { - "codePostal": "37700", - "codeCommune": "37233", - "libelleAcheminement": "ST PIERRE DES CORPS", - "nomCommune": "ST PIERRE DES CORPS" + "codePostal": "57480", + "codeCommune": "57361", + "libelleAcheminement": "KERLING LES SIERCK", + "nomCommune": "KERLING LES SIERCK" }, { - "codePostal": "51110", - "codeCommune": "51293", - "libelleAcheminement": "HEUTREGIVILLE", - "nomCommune": "HEUTREGIVILLE" + "codePostal": "45240", + "codeCommune": "45182", + "libelleAcheminement": "LIGNY LE RIBAULT", + "nomCommune": "LIGNY LE RIBAULT" }, { - "codePostal": "28800", - "codeCommune": "28065", - "libelleAcheminement": "BULLAINVILLE", - "nomCommune": "BULLAINVILLE" + "codePostal": "48100", + "codeCommune": "48099", + "libelleAcheminement": "BOURGS SUR COLAGNE", + "nomCommune": "BOURGS SUR COLAGNE" }, { - "codePostal": "22480", - "codeCommune": "22331", - "libelleAcheminement": "STE TREPHINE", - "nomCommune": "STE TREPHINE" + "codePostal": "57905", + "codeCommune": "57633", + "libelleAcheminement": "SARREINSMING", + "nomCommune": "SARREINSMING" }, { - "codePostal": "37390", - "codeCommune": "37237", - "libelleAcheminement": "ST ROCH", - "nomCommune": "ST ROCH" + "codePostal": "57830", + "codeCommune": "57362", + "libelleAcheminement": "KERPRICH AUX BOIS", + "nomCommune": "KERPRICH AUX BOIS" }, { - "codePostal": "51320", - "codeCommune": "51296", - "libelleAcheminement": "HUMBAUVILLE", - "nomCommune": "HUMBAUVILLE" + "codePostal": "45600", + "codeCommune": "45184", + "libelleAcheminement": "LION EN SULLIAS", + "nomCommune": "LION EN SULLIAS" }, { - "codePostal": "28330", - "codeCommune": "28078", - "libelleAcheminement": "CHAPELLE GUILLAUME", - "nomCommune": "CHAPELLE GUILLAUME" + "codePostal": "48100", + "codeCommune": "48099", + "libelleAcheminement": "BOURGS SUR COLAGNE", + "nomCommune": "BOURGS SUR COLAGNE" }, { - "codePostal": "22250", - "codeCommune": "22337", - "libelleAcheminement": "SEVIGNAC", - "nomCommune": "SEVIGNAC" + "codePostal": "57720", + "codeCommune": "57641", + "libelleAcheminement": "SCHWEYEN", + "nomCommune": "SCHWEYEN" }, { - "codePostal": "37340", - "codeCommune": "37241", - "libelleAcheminement": "SAVIGNE SUR LATHAN", - "nomCommune": "SAVIGNE SUR LATHAN" + "codePostal": "57480", + "codeCommune": "57365", + "libelleAcheminement": "KIRSCHNAUMEN", + "nomCommune": "KIRSCHNAUMEN" }, { - "codePostal": "51150", - "codeCommune": "51301", - "libelleAcheminement": "ISSE", - "nomCommune": "ISSE" + "codePostal": "45330", + "codeCommune": "45191", + "libelleAcheminement": "LE MALESHERBOIS", + "nomCommune": "LE MALESHERBOIS" }, { - "codePostal": "28290", - "codeCommune": "28079", - "libelleAcheminement": "CHAPELLE ROYALE", - "nomCommune": "CHAPELLE ROYALE" + "codePostal": "48100", + "codeCommune": "48103", + "libelleAcheminement": "MONTRODAT", + "nomCommune": "MONTRODAT" }, { - "codePostal": "22200", - "codeCommune": "22338", - "libelleAcheminement": "SQUIFFIEC", - "nomCommune": "SQUIFFIEC" + "codePostal": "57290", + "codeCommune": "57647", + "libelleAcheminement": "SEREMANGE ERZANGE", + "nomCommune": "SEREMANGE ERZANGE" }, { - "codePostal": "37220", - "codeCommune": "37244", - "libelleAcheminement": "SAZILLY", - "nomCommune": "SAZILLY" + "codePostal": "57920", + "codeCommune": "57367", + "libelleAcheminement": "KLANG", + "nomCommune": "KLANG" }, { - "codePostal": "51190", - "codeCommune": "51302", - "libelleAcheminement": "LES ISTRES ET BURY", - "nomCommune": "LES ISTRES ET BURY" + "codePostal": "45130", + "codeCommune": "45203", + "libelleAcheminement": "MEUNG SUR LOIRE", + "nomCommune": "MEUNG SUR LOIRE" }, { - "codePostal": "28120", - "codeCommune": "28081", - "libelleAcheminement": "CHARONVILLE", - "nomCommune": "CHARONVILLE" + "codePostal": "48300", + "codeCommune": "48105", + "libelleAcheminement": "NAUSSAC FONTANES", + "nomCommune": "NAUSSAC FONTANES" }, { - "codePostal": "22340", - "codeCommune": "22344", - "libelleAcheminement": "TREBRIVAN", - "nomCommune": "TREBRIVAN" + "codePostal": "57410", + "codeCommune": "57651", + "libelleAcheminement": "SIERSTHAL", + "nomCommune": "SIERSTHAL" }, { - "codePostal": "37500", - "codeCommune": "37248", - "libelleAcheminement": "SEUILLY", - "nomCommune": "SEUILLY" + "codePostal": "57530", + "codeCommune": "57385", + "libelleAcheminement": "LAQUENEXY", + "nomCommune": "LAQUENEXY" }, { - "codePostal": "51210", - "codeCommune": "51304", - "libelleAcheminement": "JANVILLIERS", - "nomCommune": "JANVILLIERS" + "codePostal": "45340", + "codeCommune": "45220", + "libelleAcheminement": "NANCRAY SUR RIMARDE", + "nomCommune": "NANCRAY SUR RIMARDE" }, { - "codePostal": "28270", - "codeCommune": "28087", - "libelleAcheminement": "CHATAINCOURT", - "nomCommune": "CHATAINCOURT" + "codePostal": "48140", + "codeCommune": "48110", + "libelleAcheminement": "PAULHAC EN MARGERIDE", + "nomCommune": "PAULHAC EN MARGERIDE" }, { - "codePostal": "22730", - "codeCommune": "22353", - "libelleAcheminement": "TREGASTEL", - "nomCommune": "TREGASTEL" + "codePostal": "57420", + "codeCommune": "57653", + "libelleAcheminement": "SILLY EN SAULNOIS", + "nomCommune": "SILLY EN SAULNOIS" }, { - "codePostal": "37360", - "codeCommune": "37249", - "libelleAcheminement": "SONZAY", - "nomCommune": "SONZAY" + "codePostal": "57480", + "codeCommune": "57388", + "libelleAcheminement": "LAUNSTROFF", + "nomCommune": "LAUNSTROFF" }, { - "codePostal": "51390", - "codeCommune": "51305", - "libelleAcheminement": "JANVRY", - "nomCommune": "JANVRY" + "codePostal": "45390", + "codeCommune": "45225", + "libelleAcheminement": "LA NEUVILLE SUR ESSONNE", + "nomCommune": "LA NEUVILLE SUR ESSONNE" }, { - "codePostal": "28120", - "codeCommune": "28091", - "libelleAcheminement": "LES CHATELLIERS NOTRE DAME", - "nomCommune": "LES CHATELLIERS NOTRE DAME" + "codePostal": "48700", + "codeCommune": "48126", + "libelleAcheminement": "LACHAMP RIBENNES", + "nomCommune": "LACHAMP RIBENNES" }, { - "codePostal": "22100", - "codeCommune": "22364", - "libelleAcheminement": "TRELIVAN", - "nomCommune": "TRELIVAN" + "codePostal": "57420", + "codeCommune": "57655", + "libelleAcheminement": "SOLGNE", + "nomCommune": "SOLGNE" }, { - "codePostal": "37250", - "codeCommune": "37250", - "libelleAcheminement": "SORIGNY", - "nomCommune": "SORIGNY" + "codePostal": "57590", + "codeCommune": "57391", + "libelleAcheminement": "LEMONCOURT", + "nomCommune": "LEMONCOURT" }, { - "codePostal": "51600", - "codeCommune": "51307", - "libelleAcheminement": "JONCHERY SUR SUIPPE", - "nomCommune": "JONCHERY SUR SUIPPE" + "codePostal": "45290", + "codeCommune": "45229", + "libelleAcheminement": "NOGENT SUR VERNISSON", + "nomCommune": "NOGENT SUR VERNISSON" }, { - "codePostal": "28260", - "codeCommune": "28096", - "libelleAcheminement": "LA CHAUSSEE D IVRY", - "nomCommune": "LA CHAUSSEE D IVRY" + "codePostal": "48000", + "codeCommune": "48127", + "libelleAcheminement": "MONTS DE RANDON", + "nomCommune": "MONTS DE RANDON" }, { - "codePostal": "22110", - "codeCommune": "22365", - "libelleAcheminement": "TREMARGAT", - "nomCommune": "TREMARGAT" + "codePostal": "57350", + "codeCommune": "57660", + "libelleAcheminement": "STIRING WENDEL", + "nomCommune": "STIRING WENDEL" }, { - "codePostal": "37530", - "codeCommune": "37252", - "libelleAcheminement": "SOUVIGNY DE TOURAINE", - "nomCommune": "SOUVIGNY DE TOURAINE" + "codePostal": "57580", + "codeCommune": "57395", + "libelleAcheminement": "LESSE", + "nomCommune": "LESSE" }, { - "codePostal": "51140", - "codeCommune": "51308", - "libelleAcheminement": "JONCHERY SUR VESLE", - "nomCommune": "JONCHERY SUR VESLE" + "codePostal": "45100", + "codeCommune": "45234", + "libelleAcheminement": "ORLEANS", + "nomCommune": "ORLEANS" }, { - "codePostal": "28190", - "codeCommune": "28099", - "libelleAcheminement": "CHUISNES", - "nomCommune": "CHUISNES" + "codePostal": "48700", + "codeCommune": "48127", + "libelleAcheminement": "MONTS DE RANDON", + "nomCommune": "MONTS DE RANDON" }, { - "codePostal": "22310", - "codeCommune": "22366", - "libelleAcheminement": "TREMEL", - "nomCommune": "TREMEL" + "codePostal": "57220", + "codeCommune": "57667", + "libelleAcheminement": "TETERCHEN", + "nomCommune": "TETERCHEN" }, { - "codePostal": "37310", - "codeCommune": "37254", - "libelleAcheminement": "TAUXIGNY ST BAULD", - "nomCommune": "TAUXIGNY ST BAULD" + "codePostal": "57660", + "codeCommune": "57398", + "libelleAcheminement": "LEYVILLER", + "nomCommune": "LEYVILLER" }, { - "codePostal": "51110", - "codeCommune": "51318", - "libelleAcheminement": "LAVANNES", - "nomCommune": "LAVANNES" + "codePostal": "45140", + "codeCommune": "45235", + "libelleAcheminement": "ORMES", + "nomCommune": "ORMES" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "48700", + "codeCommune": "48127", + "libelleAcheminement": "MONTS DE RANDON", + "nomCommune": "MONTS DE RANDON" }, { - "codePostal": "22100", - "codeCommune": "22380", - "libelleAcheminement": "TREVRON", - "nomCommune": "TREVRON" + "codePostal": "57580", + "codeCommune": "57671", + "libelleAcheminement": "THIMONVILLE", + "nomCommune": "THIMONVILLE" }, { - "codePostal": "37220", - "codeCommune": "37256", - "libelleAcheminement": "THENEUIL", - "nomCommune": "THENEUIL" + "codePostal": "57590", + "codeCommune": "57406", + "libelleAcheminement": "LIOCOURT", + "nomCommune": "LIOCOURT" }, { - "codePostal": "51170", - "codeCommune": "51321", - "libelleAcheminement": "LHERY", - "nomCommune": "LHERY" + "codePostal": "45360", + "codeCommune": "45251", + "libelleAcheminement": "PIERREFITTE ES BOIS", + "nomCommune": "PIERREFITTE ES BOIS" }, { - "codePostal": "28300", - "codeCommune": "28104", - "libelleAcheminement": "COLTAINVILLE", - "nomCommune": "COLTAINVILLE" + "codePostal": "48150", + "codeCommune": "48131", + "libelleAcheminement": "LE ROZIER", + "nomCommune": "LE ROZIER" }, { - "codePostal": "22450", - "codeCommune": "22381", - "libelleAcheminement": "TREZENY", - "nomCommune": "TREZENY" + "codePostal": "57100", + "codeCommune": "57672", + "libelleAcheminement": "THIONVILLE", + "nomCommune": "THIONVILLE" }, { - "codePostal": "37500", - "codeCommune": "37258", - "libelleAcheminement": "THIZAY", - "nomCommune": "THIZAY" + "codePostal": "57670", + "codeCommune": "57418", + "libelleAcheminement": "LOUDREFING", + "nomCommune": "LOUDREFING" }, { - "codePostal": "51290", - "codeCommune": "51322", - "libelleAcheminement": "LIGNON", - "nomCommune": "LIGNON" + "codePostal": "45300", + "codeCommune": "45252", + "libelleAcheminement": "PITHIVIERS", + "nomCommune": "PITHIVIERS" }, { - "codePostal": "28240", - "codeCommune": "28109", - "libelleAcheminement": "LES CORVEES LES YYS", - "nomCommune": "LES CORVEES LES YYS" + "codePostal": "48240", + "codeCommune": "48136", + "libelleAcheminement": "ST ANDRE DE LANCIZE", + "nomCommune": "ST ANDRE DE LANCIZE" }, { - "codePostal": "22980", - "codeCommune": "22388", - "libelleAcheminement": "VILDE GUINGALAN", - "nomCommune": "VILDE GUINGALAN" + "codePostal": "57100", + "codeCommune": "57672", + "libelleAcheminement": "THIONVILLE", + "nomCommune": "THIONVILLE" }, { - "codePostal": "37290", - "codeCommune": "37259", - "libelleAcheminement": "TOURNON ST PIERRE", - "nomCommune": "TOURNON ST PIERRE" + "codePostal": "57590", + "codeCommune": "57424", + "libelleAcheminement": "LUCY", + "nomCommune": "LUCY" }, { - "codePostal": "51230", - "codeCommune": "51323", - "libelleAcheminement": "LINTHELLES", - "nomCommune": "LINTHELLES" + "codePostal": "45130", + "codeCommune": "45264", + "libelleAcheminement": "ROZIERES EN BEAUCE", + "nomCommune": "ROZIERES EN BEAUCE" }, { - "codePostal": "28480", - "codeCommune": "28119", - "libelleAcheminement": "LA CROIX DU PERCHE", - "nomCommune": "LA CROIX DU PERCHE" + "codePostal": "48600", + "codeCommune": "48139", + "libelleAcheminement": "ST BONNET LAVAL", + "nomCommune": "ST BONNET LAVAL" }, { - "codePostal": "22350", - "codeCommune": "22391", - "libelleAcheminement": "YVIGNAC LA TOUR", - "nomCommune": "YVIGNAC LA TOUR" + "codePostal": "57100", + "codeCommune": "57672", + "libelleAcheminement": "THIONVILLE", + "nomCommune": "THIONVILLE" }, { - "codePostal": "37200", - "codeCommune": "37261", - "libelleAcheminement": "TOURS", - "nomCommune": "TOURS" + "codePostal": "57935", + "codeCommune": "57426", + "libelleAcheminement": "LUTTANGE", + "nomCommune": "LUTTANGE" }, { - "codePostal": "51230", - "codeCommune": "51324", - "libelleAcheminement": "LINTHES", - "nomCommune": "LINTHES" + "codePostal": "45730", + "codeCommune": "45270", + "libelleAcheminement": "ST BENOIT SUR LOIRE", + "nomCommune": "ST BENOIT SUR LOIRE" }, { - "codePostal": "28360", - "codeCommune": "28122", - "libelleAcheminement": "DAMMARIE", - "nomCommune": "DAMMARIE" + "codePostal": "48210", + "codeCommune": "48141", + "libelleAcheminement": "MAS ST CHELY", + "nomCommune": "MAS ST CHELY" }, { - "codePostal": "23200", - "codeCommune": "23003", - "libelleAcheminement": "ALLEYRAT", - "nomCommune": "ALLEYRAT" + "codePostal": "57380", + "codeCommune": "57673", + "libelleAcheminement": "THONVILLE", + "nomCommune": "THONVILLE" }, { - "codePostal": "37190", - "codeCommune": "37264", - "libelleAcheminement": "VALLERES", - "nomCommune": "VALLERES" + "codePostal": "57480", + "codeCommune": "57437", + "libelleAcheminement": "MALLING", + "nomCommune": "MALLING" }, { - "codePostal": "51400", - "codeCommune": "51326", - "libelleAcheminement": "LIVRY LOUVERCY", - "nomCommune": "LIVRY LOUVERCY" + "codePostal": "45500", + "codeCommune": "45271", + "libelleAcheminement": "ST BRISSON SUR LOIRE", + "nomCommune": "ST BRISSON SUR LOIRE" }, { - "codePostal": "28160", - "codeCommune": "28127", - "libelleAcheminement": "DANGEAU", - "nomCommune": "DANGEAU" + "codePostal": "48700", + "codeCommune": "48145", + "libelleAcheminement": "ST DENIS EN MARGERIDE", + "nomCommune": "ST DENIS EN MARGERIDE" }, { - "codePostal": "23000", - "codeCommune": "23004", - "libelleAcheminement": "ANZEME", - "nomCommune": "ANZEME" + "codePostal": "57670", + "codeCommune": "57675", + "libelleAcheminement": "TORCHEVILLE", + "nomCommune": "TORCHEVILLE" }, { - "codePostal": "37250", - "codeCommune": "37266", - "libelleAcheminement": "VEIGNE", - "nomCommune": "VEIGNE" + "codePostal": "57640", + "codeCommune": "57438", + "libelleAcheminement": "MALROY", + "nomCommune": "MALROY" }, { - "codePostal": "51220", - "codeCommune": "51329", - "libelleAcheminement": "LOIVRE", - "nomCommune": "LOIVRE" + "codePostal": "45560", + "codeCommune": "45274", + "libelleAcheminement": "ST DENIS EN VAL", + "nomCommune": "ST DENIS EN VAL" }, { - "codePostal": "28700", - "codeCommune": "28129", - "libelleAcheminement": "DENONVILLE", - "nomCommune": "DENONVILLE" + "codePostal": "48330", + "codeCommune": "48148", + "libelleAcheminement": "ST ETIENNE VALLEE FRANCAISE", + "nomCommune": "ST ETIENNE VALLEE FRANCAISE" }, { - "codePostal": "23480", - "codeCommune": "23007", - "libelleAcheminement": "ARS", - "nomCommune": "ARS" + "codePostal": "57385", + "codeCommune": "57679", + "libelleAcheminement": "TRITTELING REDLACH", + "nomCommune": "TRITTELING REDLACH" }, { - "codePostal": "38114", - "codeCommune": "38005", - "libelleAcheminement": "ALLEMOND", - "nomCommune": "ALLEMOND" + "codePostal": "57380", + "codeCommune": "57442", + "libelleAcheminement": "MANY", + "nomCommune": "MANY" }, { - "codePostal": "51800", - "codeCommune": "51341", - "libelleAcheminement": "MALMY", - "nomCommune": "MALMY" + "codePostal": "45230", + "codeCommune": "45278", + "libelleAcheminement": "STE GENEVIEVE DES BOIS", + "nomCommune": "STE GENEVIEVE DES BOIS" }, { - "codePostal": "28120", - "codeCommune": "28139", - "libelleAcheminement": "EPEAUTROLLES", - "nomCommune": "EPEAUTROLLES" + "codePostal": "48170", + "codeCommune": "48151", + "libelleAcheminement": "ST FREZAL D ALBUGES", + "nomCommune": "ST FREZAL D ALBUGES" }, { - "codePostal": "23200", - "codeCommune": "23008", - "libelleAcheminement": "AUBUSSON", - "nomCommune": "AUBUSSON" + "codePostal": "57870", + "codeCommune": "57680", + "libelleAcheminement": "TROISFONTAINES", + "nomCommune": "TROISFONTAINES" }, { - "codePostal": "38280", - "codeCommune": "38011", - "libelleAcheminement": "ANTHON", - "nomCommune": "ANTHON" + "codePostal": "57630", + "codeCommune": "57448", + "libelleAcheminement": "MARSAL", + "nomCommune": "MARSAL" }, { - "codePostal": "51700", - "codeCommune": "51346", - "libelleAcheminement": "MAREUIL LE PORT", - "nomCommune": "MAREUIL LE PORT" + "codePostal": "45170", + "codeCommune": "45289", + "libelleAcheminement": "ST LYE LA FORET", + "nomCommune": "ST LYE LA FORET" }, { - "codePostal": "28120", - "codeCommune": "28142", - "libelleAcheminement": "ERMENONVILLE LA PETITE", - "nomCommune": "ERMENONVILLE LA PETITE" + "codePostal": "48700", + "codeCommune": "48153", + "libelleAcheminement": "ST GAL", + "nomCommune": "ST GAL" }, { - "codePostal": "23210", - "codeCommune": "23014", - "libelleAcheminement": "AZAT CHATENET", - "nomCommune": "AZAT CHATENET" + "codePostal": "57560", + "codeCommune": "57682", + "libelleAcheminement": "TURQUESTEIN BLANCRUPT", + "nomCommune": "TURQUESTEIN BLANCRUPT" }, { - "codePostal": "38680", - "codeCommune": "38018", - "libelleAcheminement": "AUBERIVES EN ROYANS", - "nomCommune": "AUBERIVES EN ROYANS" + "codePostal": "57340", + "codeCommune": "57451", + "libelleAcheminement": "MARTHILLE", + "nomCommune": "MARTHILLE" }, { - "codePostal": "51230", - "codeCommune": "51351", - "libelleAcheminement": "MARIGNY", - "nomCommune": "MARIGNY" + "codePostal": "45750", + "codeCommune": "45298", + "libelleAcheminement": "ST PRYVE ST MESMIN", + "nomCommune": "ST PRYVE ST MESMIN" }, { - "codePostal": "28170", - "codeCommune": "28147", - "libelleAcheminement": "FAVIERES", - "nomCommune": "FAVIERES" + "codePostal": "48340", + "codeCommune": "48156", + "libelleAcheminement": "ST GERMAIN DU TEIL", + "nomCommune": "ST GERMAIN DU TEIL" }, { - "codePostal": "23160", - "codeCommune": "23015", - "libelleAcheminement": "AZERABLES", - "nomCommune": "AZERABLES" + "codePostal": "57660", + "codeCommune": "57684", + "libelleAcheminement": "VAHL EBERSING", + "nomCommune": "VAHL EBERSING" }, { - "codePostal": "38970", - "codeCommune": "38031", - "libelleAcheminement": "BEAUFIN", - "nomCommune": "BEAUFIN" + "codePostal": "57660", + "codeCommune": "57453", + "libelleAcheminement": "MAXSTADT", + "nomCommune": "MAXSTADT" }, { - "codePostal": "51240", - "codeCommune": "51354", - "libelleAcheminement": "MARSON", - "nomCommune": "MARSON" + "codePostal": "45640", + "codeCommune": "45300", + "libelleAcheminement": "SANDILLON", + "nomCommune": "SANDILLON" }, { - "codePostal": "28270", - "codeCommune": "28151", - "libelleAcheminement": "FESSANVILLIERS MATTANVILLIERS", - "nomCommune": "FESSANVILLIERS MATTANVILLIERS" + "codePostal": "48160", + "codeCommune": "48158", + "libelleAcheminement": "ST HILAIRE DE LAVIT", + "nomCommune": "ST HILAIRE DE LAVIT" }, { - "codePostal": "23270", - "codeCommune": "23022", - "libelleAcheminement": "BETETE", - "nomCommune": "BETETE" + "codePostal": "57220", + "codeCommune": "57695", + "libelleAcheminement": "VARIZE VAUDONCOURT", + "nomCommune": "VARIZE VAUDONCOURT" }, { - "codePostal": "38270", - "codeCommune": "38032", - "libelleAcheminement": "BEAUFORT", - "nomCommune": "BEAUFORT" + "codePostal": "57000", + "codeCommune": "57463", + "libelleAcheminement": "METZ", + "nomCommune": "METZ" }, { - "codePostal": "51510", - "codeCommune": "51357", - "libelleAcheminement": "MATOUGUES", - "nomCommune": "MATOUGUES" + "codePostal": "45210", + "codeCommune": "45306", + "libelleAcheminement": "LA SELLE EN HERMOY", + "nomCommune": "LA SELLE EN HERMOY" }, { - "codePostal": "28170", - "codeCommune": "28155", - "libelleAcheminement": "FONTAINE LES RIBOUTS", - "nomCommune": "FONTAINE LES RIBOUTS" + "codePostal": "48170", + "codeCommune": "48160", + "libelleAcheminement": "ST JEAN LA FOUILLOUSE", + "nomCommune": "ST JEAN LA FOUILLOUSE" }, { - "codePostal": "23140", - "codeCommune": "23023", - "libelleAcheminement": "BLAUDEIX", - "nomCommune": "BLAUDEIX" + "codePostal": "57580", + "codeCommune": "57698", + "libelleAcheminement": "VATIMONT", + "nomCommune": "VATIMONT" }, { - "codePostal": "38440", - "codeCommune": "38035", - "libelleAcheminement": "BEAUVOIR DE MARC", - "nomCommune": "BEAUVOIR DE MARC" + "codePostal": "57920", + "codeCommune": "57464", + "libelleAcheminement": "METZERESCHE", + "nomCommune": "METZERESCHE" }, { - "codePostal": "51120", - "codeCommune": "51360", - "libelleAcheminement": "LE MEIX ST EPOING", - "nomCommune": "LE MEIX ST EPOING" + "codePostal": "45210", + "codeCommune": "45307", + "libelleAcheminement": "LA SELLE SUR LE BIED", + "nomCommune": "LA SELLE SUR LE BIED" }, { - "codePostal": "28360", - "codeCommune": "28162", - "libelleAcheminement": "FRESNAY LE COMTE", - "nomCommune": "FRESNAY LE COMTE" + "codePostal": "48400", + "codeCommune": "48166", + "libelleAcheminement": "CANS ET CEVENNES", + "nomCommune": "CANS ET CEVENNES" }, { - "codePostal": "23230", - "codeCommune": "23040", - "libelleAcheminement": "LA CELLE SOUS GOUZON", - "nomCommune": "LA CELLE SOUS GOUZON" + "codePostal": "57130", + "codeCommune": "57701", + "libelleAcheminement": "VAUX", + "nomCommune": "VAUX" }, { - "codePostal": "38270", - "codeCommune": "38037", - "libelleAcheminement": "BELLEGARDE POUSSIEU", - "nomCommune": "BELLEGARDE POUSSIEU" + "codePostal": "57070", + "codeCommune": "57467", + "libelleAcheminement": "MEY", + "nomCommune": "MEY" }, { - "codePostal": "51220", - "codeCommune": "51362", - "libelleAcheminement": "MERFY", - "nomCommune": "MERFY" + "codePostal": "45400", + "codeCommune": "45308", + "libelleAcheminement": "SEMOY", + "nomCommune": "SEMOY" }, { - "codePostal": "28310", - "codeCommune": "28164", - "libelleAcheminement": "FRESNAY L EVEQUE", - "nomCommune": "FRESNAY L EVEQUE" + "codePostal": "48310", + "codeCommune": "48167", + "libelleAcheminement": "ST LAURENT DE VEYRES", + "nomCommune": "ST LAURENT DE VEYRES" }, { - "codePostal": "23210", - "codeCommune": "23042", - "libelleAcheminement": "CEYROUX", - "nomCommune": "CEYROUX" + "codePostal": "57920", + "codeCommune": "57704", + "libelleAcheminement": "VECKRING", + "nomCommune": "VECKRING" }, { - "codePostal": "38690", - "codeCommune": "38044", - "libelleAcheminement": "BIOL", - "nomCommune": "BIOL" + "codePostal": "01100", + "codeCommune": "01011", + "libelleAcheminement": "APREMONT", + "nomCommune": "APREMONT" }, { - "codePostal": "51370", - "codeCommune": "51365", - "libelleAcheminement": "LES MESNEUX", - "nomCommune": "LES MESNEUX" + "codePostal": "57930", + "codeCommune": "57469", + "libelleAcheminement": "MITTERSHEIM", + "nomCommune": "MITTERSHEIM" }, { - "codePostal": "28240", - "codeCommune": "28166", - "libelleAcheminement": "FRIAIZE", - "nomCommune": "FRIAIZE" + "codePostal": "45300", + "codeCommune": "45310", + "libelleAcheminement": "SERMAISES", + "nomCommune": "SERMAISES" }, { - "codePostal": "23190", - "codeCommune": "23048", - "libelleAcheminement": "CHAMPAGNAT", - "nomCommune": "CHAMPAGNAT" + "codePostal": "48110", + "codeCommune": "48171", + "libelleAcheminement": "ST MARTIN DE LANSUSCLE", + "nomCommune": "ST MARTIN DE LANSUSCLE" }, { - "codePostal": "38330", - "codeCommune": "38045", - "libelleAcheminement": "BIVIERS", - "nomCommune": "BIVIERS" + "codePostal": "57670", + "codeCommune": "57711", + "libelleAcheminement": "VIBERSVILLER", + "nomCommune": "VIBERSVILLER" }, { - "codePostal": "51240", - "codeCommune": "51371", - "libelleAcheminement": "MOIVRE", - "nomCommune": "MOIVRE" + "codePostal": "01230", + "codeCommune": "01013", + "libelleAcheminement": "ARANDAS", + "nomCommune": "ARANDAS" }, { - "codePostal": "28320", - "codeCommune": "28168", - "libelleAcheminement": "GALLARDON", - "nomCommune": "GALLARDON" + "codePostal": "57300", + "codeCommune": "57474", + "libelleAcheminement": "MONDELANGE", + "nomCommune": "MONDELANGE" }, { - "codePostal": "23220", - "codeCommune": "23049", - "libelleAcheminement": "CHAMPSANGLARD", - "nomCommune": "CHAMPSANGLARD" + "codePostal": "45600", + "codeCommune": "45315", + "libelleAcheminement": "SULLY SUR LOIRE", + "nomCommune": "SULLY SUR LOIRE" }, { - "codePostal": "38150", - "codeCommune": "38051", - "libelleAcheminement": "BOUGE CHAMBALUD", - "nomCommune": "BOUGE CHAMBALUD" + "codePostal": "48200", + "codeCommune": "48177", + "libelleAcheminement": "ST PIERRE LE VIEUX", + "nomCommune": "ST PIERRE LE VIEUX" }, { - "codePostal": "51470", - "codeCommune": "51372", - "libelleAcheminement": "MONCETZ LONGEVAS", - "nomCommune": "MONCETZ LONGEVAS" + "codePostal": "57630", + "codeCommune": "57712", + "libelleAcheminement": "VIC SUR SEILLE", + "nomCommune": "VIC SUR SEILLE" }, { - "codePostal": "28320", - "codeCommune": "28172", - "libelleAcheminement": "GAS", - "nomCommune": "GAS" + "codePostal": "01480", + "codeCommune": "01021", + "libelleAcheminement": "ARS SUR FORMANS", + "nomCommune": "ARS SUR FORMANS" }, { - "codePostal": "23000", - "codeCommune": "23052", - "libelleAcheminement": "LA CHAPELLE TAILLEFERT", - "nomCommune": "LA CHAPELLE TAILLEFERT" + "codePostal": "57340", + "codeCommune": "57483", + "libelleAcheminement": "MORHANGE", + "nomCommune": "MORHANGE" }, { - "codePostal": "38520", - "codeCommune": "38052", - "libelleAcheminement": "LE BOURG D OISANS", - "nomCommune": "LE BOURG D OISANS" + "codePostal": "45530", + "codeCommune": "45316", + "libelleAcheminement": "SURY AUX BOIS", + "nomCommune": "SURY AUX BOIS" }, { - "codePostal": "51260", - "codeCommune": "51376", - "libelleAcheminement": "MONTGENOST", - "nomCommune": "MONTGENOST" + "codePostal": "48240", + "codeCommune": "48178", + "libelleAcheminement": "ST PRIVAT DE VALLONGUE", + "nomCommune": "ST PRIVAT DE VALLONGUE" }, { - "codePostal": "28300", - "codeCommune": "28173", - "libelleAcheminement": "GASVILLE OISEME", - "nomCommune": "GASVILLE OISEME" + "codePostal": "57185", + "codeCommune": "57724", + "libelleAcheminement": "VITRY SUR ORNE", + "nomCommune": "VITRY SUR ORNE" }, { - "codePostal": "23700", - "codeCommune": "23054", - "libelleAcheminement": "CHARRON", - "nomCommune": "CHARRON" + "codePostal": "01510", + "codeCommune": "01022", + "libelleAcheminement": "ARTEMARE", + "nomCommune": "ARTEMARE" }, { - "codePostal": "38300", - "codeCommune": "38053", - "libelleAcheminement": "BOURGOIN JALLIEU", - "nomCommune": "BOURGOIN JALLIEU" + "codePostal": "57600", + "codeCommune": "57484", + "libelleAcheminement": "MORSBACH", + "nomCommune": "MORSBACH" }, { - "codePostal": "51140", - "codeCommune": "51391", - "libelleAcheminement": "MUIZON", - "nomCommune": "MUIZON" + "codePostal": "45490", + "codeCommune": "45328", + "libelleAcheminement": "TREILLES EN GATINAIS", + "nomCommune": "TREILLES EN GATINAIS" }, { - "codePostal": "28400", - "codeCommune": "28175", - "libelleAcheminement": "LA GAUDAINE", - "nomCommune": "LA GAUDAINE" + "codePostal": "48310", + "codeCommune": "48190", + "libelleAcheminement": "TERMES", + "nomCommune": "TERMES" }, { - "codePostal": "23270", - "codeCommune": "23064", - "libelleAcheminement": "CLUGNAT", - "nomCommune": "CLUGNAT" + "codePostal": "57420", + "codeCommune": "57737", + "libelleAcheminement": "VULMONT", + "nomCommune": "VULMONT" }, { - "codePostal": "38390", - "codeCommune": "38054", - "libelleAcheminement": "BOUVESSE QUIRIEU", - "nomCommune": "BOUVESSE QUIRIEU" + "codePostal": "01360", + "codeCommune": "01027", + "libelleAcheminement": "BALAN", + "nomCommune": "BALAN" }, { - "codePostal": "51300", - "codeCommune": "51406", - "libelleAcheminement": "NORROIS", - "nomCommune": "NORROIS" + "codePostal": "57160", + "codeCommune": "57487", + "libelleAcheminement": "MOULINS LES METZ", + "nomCommune": "MOULINS LES METZ" }, { - "codePostal": "28260", - "codeCommune": "28180", - "libelleAcheminement": "GILLES", - "nomCommune": "GILLES" + "codePostal": "45510", + "codeCommune": "45331", + "libelleAcheminement": "VANNES SUR COSSON", + "nomCommune": "VANNES SUR COSSON" }, { - "codePostal": "23160", - "codeCommune": "23070", - "libelleAcheminement": "CROZANT", - "nomCommune": "CROZANT" + "codePostal": "48800", + "codeCommune": "48198", + "libelleAcheminement": "VILLEFORT", + "nomCommune": "VILLEFORT" }, { - "codePostal": "38320", - "codeCommune": "38057", - "libelleAcheminement": "BRESSON", - "nomCommune": "BRESSON" + "codePostal": "57480", + "codeCommune": "57740", + "libelleAcheminement": "WALDWISSE", + "nomCommune": "WALDWISSE" }, { - "codePostal": "51230", - "codeCommune": "51412", - "libelleAcheminement": "OGNES", - "nomCommune": "OGNES" + "codePostal": "01990", + "codeCommune": "01028", + "libelleAcheminement": "BANEINS", + "nomCommune": "BANEINS" }, { - "codePostal": "28160", - "codeCommune": "28182", - "libelleAcheminement": "GOHORY", - "nomCommune": "GOHORY" + "codePostal": "57160", + "codeCommune": "57487", + "libelleAcheminement": "MOULINS LES METZ", + "nomCommune": "MOULINS LES METZ" }, { - "codePostal": "23340", - "codeCommune": "23077", - "libelleAcheminement": "FAUX LA MONTAGNE", - "nomCommune": "FAUX LA MONTAGNE" + "codePostal": "45510", + "codeCommune": "45335", + "libelleAcheminement": "VIENNE EN VAL", + "nomCommune": "VIENNE EN VAL" }, { - "codePostal": "38590", - "codeCommune": "38060", - "libelleAcheminement": "BRION", - "nomCommune": "BRION" + "codePostal": "49650", + "codeCommune": "49002", + "libelleAcheminement": "ALLONNES", + "nomCommune": "ALLONNES" }, { - "codePostal": "51300", - "codeCommune": "51417", - "libelleAcheminement": "ORCONTE", - "nomCommune": "ORCONTE" + "codePostal": "57140", + "codeCommune": "57751", + "libelleAcheminement": "WOIPPY", + "nomCommune": "WOIPPY" }, { - "codePostal": "28310", - "codeCommune": "28183", - "libelleAcheminement": "GOMMERVILLE", - "nomCommune": "GOMMERVILLE" + "codePostal": "01480", + "codeCommune": "01030", + "libelleAcheminement": "BEAUREGARD", + "nomCommune": "BEAUREGARD" }, { - "codePostal": "23400", - "codeCommune": "23078", - "libelleAcheminement": "FAUX MAZURAS", - "nomCommune": "FAUX MAZURAS" + "codePostal": "57770", + "codeCommune": "57488", + "libelleAcheminement": "MOUSSEY", + "nomCommune": "MOUSSEY" }, { - "codePostal": "38690", - "codeCommune": "38063", - "libelleAcheminement": "BURCIN", - "nomCommune": "BURCIN" + "codePostal": "45310", + "codeCommune": "45337", + "libelleAcheminement": "VILLAMBLAIN", + "nomCommune": "VILLAMBLAIN" }, { - "codePostal": "51370", - "codeCommune": "51418", - "libelleAcheminement": "ORMES", - "nomCommune": "ORMES" + "codePostal": "49000", + "codeCommune": "49007", + "libelleAcheminement": "ANGERS", + "nomCommune": "ANGERS" }, { - "codePostal": "28260", - "codeCommune": "28187", - "libelleAcheminement": "GUAINVILLE", - "nomCommune": "GUAINVILLE" + "codePostal": "57630", + "codeCommune": "57754", + "libelleAcheminement": "XANREY", + "nomCommune": "XANREY" }, { - "codePostal": "23260", - "codeCommune": "23081", - "libelleAcheminement": "FLAYAT", - "nomCommune": "FLAYAT" + "codePostal": "01360", + "codeCommune": "01032", + "libelleAcheminement": "BELIGNEUX", + "nomCommune": "BELIGNEUX" }, { - "codePostal": "38800", - "codeCommune": "38068", - "libelleAcheminement": "CHAMPAGNIER", - "nomCommune": "CHAMPAGNIER" + "codePostal": "57250", + "codeCommune": "57491", + "libelleAcheminement": "MOYEUVRE GRANDE", + "nomCommune": "MOYEUVRE GRANDE" }, { - "codePostal": "51340", - "codeCommune": "51423", - "libelleAcheminement": "PARGNY SUR SAULX", - "nomCommune": "PARGNY SUR SAULX" + "codePostal": "45310", + "codeCommune": "45341", + "libelleAcheminement": "VILLENEUVE SUR CONIE", + "nomCommune": "VILLENEUVE SUR CONIE" }, { - "codePostal": "28410", - "codeCommune": "28193", - "libelleAcheminement": "HAVELU", - "nomCommune": "HAVELU" + "codePostal": "49540", + "codeCommune": "49012", + "libelleAcheminement": "AUBIGNE SUR LAYON", + "nomCommune": "AUBIGNE SUR LAYON" }, { - "codePostal": "23360", - "codeCommune": "23084", - "libelleAcheminement": "LA FORET DU TEMPLE", - "nomCommune": "LA FORET DU TEMPLE" + "codePostal": "57590", + "codeCommune": "57755", + "libelleAcheminement": "XOCOURT", + "nomCommune": "XOCOURT" }, { - "codePostal": "38260", - "codeCommune": "38069", - "libelleAcheminement": "CHAMPIER", - "nomCommune": "CHAMPIER" + "codePostal": "01200", + "codeCommune": "01033", + "libelleAcheminement": "VALSERHONE", + "nomCommune": "VALSERHONE" }, { - "codePostal": "51800", - "codeCommune": "51424", - "libelleAcheminement": "PASSAVANT EN ARGONNE", - "nomCommune": "PASSAVANT EN ARGONNE" + "codePostal": "57910", + "codeCommune": "57499", + "libelleAcheminement": "NEUFGRANGE", + "nomCommune": "NEUFGRANGE" }, { - "codePostal": "28700", - "codeCommune": "28194", - "libelleAcheminement": "HOUVILLE LA BRANCHE", - "nomCommune": "HOUVILLE LA BRANCHE" + "codePostal": "45700", + "codeCommune": "45343", + "libelleAcheminement": "VILLEVOQUES", + "nomCommune": "VILLEVOQUES" }, { - "codePostal": "23320", - "codeCommune": "23088", - "libelleAcheminement": "GARTEMPE", - "nomCommune": "GARTEMPE" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "38190", - "codeCommune": "38070", - "libelleAcheminement": "LE CHAMP PRES FROGES", - "nomCommune": "LE CHAMP PRES FROGES" + "codePostal": "57970", + "codeCommune": "57767", + "libelleAcheminement": "STUCKANGE", + "nomCommune": "STUCKANGE" }, { - "codePostal": "51240", - "codeCommune": "51436", - "libelleAcheminement": "POGNY", - "nomCommune": "POGNY" + "codePostal": "01300", + "codeCommune": "01034", + "libelleAcheminement": "BELLEY", + "nomCommune": "BELLEY" }, { - "codePostal": "28270", - "codeCommune": "28206", - "libelleAcheminement": "LAONS", - "nomCommune": "LAONS" + "codePostal": "57720", + "codeCommune": "57513", + "libelleAcheminement": "NOUSSEVILLER LES BITCHE", + "nomCommune": "NOUSSEVILLER LES BITCHE" }, { - "codePostal": "23500", - "codeCommune": "23091", - "libelleAcheminement": "GIOUX", - "nomCommune": "GIOUX" + "codePostal": "45190", + "codeCommune": "45344", + "libelleAcheminement": "VILLORCEAU", + "nomCommune": "VILLORCEAU" }, { - "codePostal": "38740", - "codeCommune": "38073", - "libelleAcheminement": "CHANTEPERIER", - "nomCommune": "CHANTEPERIER" + "codePostal": "49250", + "codeCommune": "49021", + "libelleAcheminement": "BEAUFORT EN ANJOU", + "nomCommune": "BEAUFORT EN ANJOU" }, { - "codePostal": "51460", - "codeCommune": "51438", - "libelleAcheminement": "POIX", - "nomCommune": "POIX" + "codePostal": "58270", + "codeCommune": "58006", + "libelleAcheminement": "ANLEZY", + "nomCommune": "ANLEZY" }, { - "codePostal": "28250", - "codeCommune": "28217", - "libelleAcheminement": "LOUVILLIERS LES PERCHE", - "nomCommune": "LOUVILLIERS LES PERCHE" + "codePostal": "01260", + "codeCommune": "01036", + "libelleAcheminement": "VALROMEY SUR SERAN", + "nomCommune": "VALROMEY SUR SERAN" }, { - "codePostal": "23380", - "codeCommune": "23092", - "libelleAcheminement": "GLENIC", - "nomCommune": "GLENIC" + "codePostal": "57420", + "codeCommune": "57532", + "libelleAcheminement": "PAGNY LES GOIN", + "nomCommune": "PAGNY LES GOIN" }, { - "codePostal": "38470", - "codeCommune": "38074", - "libelleAcheminement": "CHANTESSE", - "nomCommune": "CHANTESSE" + "codePostal": "46300", + "codeCommune": "46006", + "libelleAcheminement": "ANGLARS NOZAC", + "nomCommune": "ANGLARS NOZAC" }, { - "codePostal": "51110", - "codeCommune": "51439", - "libelleAcheminement": "POMACLE", - "nomCommune": "POMACLE" + "codePostal": "49510", + "codeCommune": "49023", + "libelleAcheminement": "BEAUPREAU EN MAUGES", + "nomCommune": "BEAUPREAU EN MAUGES" }, { - "codePostal": "28500", - "codeCommune": "28223", - "libelleAcheminement": "LURAY", - "nomCommune": "LURAY" + "codePostal": "58800", + "codeCommune": "58008", + "libelleAcheminement": "ANTHIEN", + "nomCommune": "ANTHIEN" }, { - "codePostal": "23270", - "codeCommune": "23098", - "libelleAcheminement": "JALESCHES", - "nomCommune": "JALESCHES" + "codePostal": "01190", + "codeCommune": "01050", + "libelleAcheminement": "BOISSEY", + "nomCommune": "BOISSEY" }, { - "codePostal": "38850", - "codeCommune": "38082", - "libelleAcheminement": "CHARAVINES", - "nomCommune": "CHARAVINES" + "codePostal": "57530", + "codeCommune": "57533", + "libelleAcheminement": "PANGE", + "nomCommune": "PANGE" }, { - "codePostal": "51300", - "codeCommune": "51441", - "libelleAcheminement": "PONTHION", - "nomCommune": "PONTHION" + "codePostal": "46320", + "codeCommune": "46009", + "libelleAcheminement": "ASSIER", + "nomCommune": "ASSIER" }, { - "codePostal": "28400", - "codeCommune": "28236", - "libelleAcheminement": "ARCISSES", - "nomCommune": "ARCISSES" + "codePostal": "49170", + "codeCommune": "49028", + "libelleAcheminement": "BEHUARD", + "nomCommune": "BEHUARD" }, { - "codePostal": "23800", - "codeCommune": "23103", - "libelleAcheminement": "LAFAT", - "nomCommune": "LAFAT" + "codePostal": "58430", + "codeCommune": "58010", + "libelleAcheminement": "ARLEUF", + "nomCommune": "ARLEUF" }, { - "codePostal": "38300", - "codeCommune": "38091", - "libelleAcheminement": "CHATEAUVILAIN", - "nomCommune": "CHATEAUVILAIN" + "codePostal": "01000", + "codeCommune": "01053", + "libelleAcheminement": "BOURG EN BRESSE", + "nomCommune": "BOURG EN BRESSE" }, { - "codePostal": "51120", - "codeCommune": "51451", - "libelleAcheminement": "QUEUDES", - "nomCommune": "QUEUDES" + "codePostal": "57245", + "codeCommune": "57534", + "libelleAcheminement": "PELTRE", + "nomCommune": "PELTRE" }, { - "codePostal": "28480", - "codeCommune": "28252", - "libelleAcheminement": "MIERMAIGNE", - "nomCommune": "MIERMAIGNE" + "codePostal": "46230", + "codeCommune": "46013", + "libelleAcheminement": "BACH", + "nomCommune": "BACH" }, { - "codePostal": "23170", - "codeCommune": "23106", - "libelleAcheminement": "LEPAUD", - "nomCommune": "LEPAUD" + "codePostal": "49320", + "codeCommune": "49029", + "libelleAcheminement": "BLAISON ST SULPICE", + "nomCommune": "BLAISON ST SULPICE" }, { - "codePostal": "38930", - "codeCommune": "38103", - "libelleAcheminement": "CHICHILIANNE", - "nomCommune": "CHICHILIANNE" + "codePostal": "58420", + "codeCommune": "58015", + "libelleAcheminement": "ASNAN", + "nomCommune": "ASNAN" }, { - "codePostal": "51480", - "codeCommune": "51465", - "libelleAcheminement": "ROMERY", - "nomCommune": "ROMERY" + "codePostal": "01190", + "codeCommune": "01057", + "libelleAcheminement": "BOZ", + "nomCommune": "BOZ" }, { - "codePostal": "28190", - "codeCommune": "28254", - "libelleAcheminement": "MITTAINVILLIERS VERIGNY", - "nomCommune": "MITTAINVILLIERS VERIGNY" + "codePostal": "57170", + "codeCommune": "57538", + "libelleAcheminement": "PETTONCOURT", + "nomCommune": "PETTONCOURT" }, { - "codePostal": "23400", - "codeCommune": "23122", - "libelleAcheminement": "MANSAT LA COURRIERE", - "nomCommune": "MANSAT LA COURRIERE" + "codePostal": "46400", + "codeCommune": "46017", + "libelleAcheminement": "BANNES", + "nomCommune": "BANNES" }, { - "codePostal": "38220", - "codeCommune": "38106", - "libelleAcheminement": "CHOLONGE", - "nomCommune": "CHOLONGE" + "codePostal": "49160", + "codeCommune": "49030", + "libelleAcheminement": "BLOU", + "nomCommune": "BLOU" }, { - "codePostal": "51290", - "codeCommune": "51475", - "libelleAcheminement": "ST CHERON", - "nomCommune": "ST CHERON" + "codePostal": "58110", + "codeCommune": "58017", + "libelleAcheminement": "AUNAY EN BAZOIS", + "nomCommune": "AUNAY EN BAZOIS" }, { - "codePostal": "28700", - "codeCommune": "28255", - "libelleAcheminement": "MOINVILLE LA JEULIN", - "nomCommune": "MOINVILLE LA JEULIN" + "codePostal": "01300", + "codeCommune": "01058", + "libelleAcheminement": "BREGNIER CORDON", + "nomCommune": "BREGNIER CORDON" }, { - "codePostal": "23190", - "codeCommune": "23127", - "libelleAcheminement": "MAUTES", - "nomCommune": "MAUTES" + "codePostal": "57220", + "codeCommune": "57542", + "libelleAcheminement": "PIBLANGE", + "nomCommune": "PIBLANGE" }, { - "codePostal": "38680", - "codeCommune": "38108", - "libelleAcheminement": "CHORANCHE", - "nomCommune": "CHORANCHE" + "codePostal": "46100", + "codeCommune": "46021", + "libelleAcheminement": "BEDUER", + "nomCommune": "BEDUER" }, { - "codePostal": "51460", - "codeCommune": "51476", - "libelleAcheminement": "ST ETIENNE AU TEMPLE", - "nomCommune": "ST ETIENNE AU TEMPLE" + "codePostal": "49650", + "codeCommune": "49041", + "libelleAcheminement": "BRAIN SUR ALLONNES", + "nomCommune": "BRAIN SUR ALLONNES" }, { - "codePostal": "28800", - "codeCommune": "28260", - "libelleAcheminement": "MONTHARVILLE", - "nomCommune": "MONTHARVILLE" + "codePostal": "58110", + "codeCommune": "58030", + "libelleAcheminement": "BICHES", + "nomCommune": "BICHES" }, { - "codePostal": "23150", - "codeCommune": "23128", - "libelleAcheminement": "MAZEIRAT", - "nomCommune": "MAZEIRAT" + "codePostal": "01110", + "codeCommune": "01060", + "libelleAcheminement": "BRENOD", + "nomCommune": "BRENOD" }, { - "codePostal": "38200", - "codeCommune": "38110", - "libelleAcheminement": "CHUZELLES", - "nomCommune": "CHUZELLES" + "codePostal": "57120", + "codeCommune": "57543", + "libelleAcheminement": "PIERREVILLERS", + "nomCommune": "PIERREVILLERS" }, { - "codePostal": "51700", - "codeCommune": "51480", - "libelleAcheminement": "STE GEMME", - "nomCommune": "STE GEMME" + "codePostal": "46330", + "codeCommune": "46031", + "libelleAcheminement": "BLARS", + "nomCommune": "BLARS" }, { - "codePostal": "28270", - "codeCommune": "28263", - "libelleAcheminement": "MONTIGNY SUR AVRE", - "nomCommune": "MONTIGNY SUR AVRE" + "codePostal": "49250", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "23210", - "codeCommune": "23137", - "libelleAcheminement": "MOURIOUX VIEILLEVILLE", - "nomCommune": "MOURIOUX VIEILLEVILLE" + "codePostal": "58270", + "codeCommune": "58031", + "libelleAcheminement": "BILLY CHEVANNES", + "nomCommune": "BILLY CHEVANNES" }, { - "codePostal": "38550", - "codeCommune": "38114", - "libelleAcheminement": "CLONAS SUR VAREZE", - "nomCommune": "CLONAS SUR VAREZE" + "codePostal": "01240", + "codeCommune": "01069", + "libelleAcheminement": "CERTINES", + "nomCommune": "CERTINES" }, { - "codePostal": "51330", - "codeCommune": "51489", - "libelleAcheminement": "ST JEAN DEVANT POSSESSE", - "nomCommune": "ST JEAN DEVANT POSSESSE" + "codePostal": "57140", + "codeCommune": "57546", + "libelleAcheminement": "PLESNOIS", + "nomCommune": "PLESNOIS" }, { - "codePostal": "28400", - "codeCommune": "28280", - "libelleAcheminement": "NOGENT LE ROTROU", - "nomCommune": "NOGENT LE ROTROU" + "codePostal": "46800", + "codeCommune": "46033", + "libelleAcheminement": "PORTE DU QUERCY", + "nomCommune": "PORTE DU QUERCY" }, { - "codePostal": "23170", - "codeCommune": "23145", - "libelleAcheminement": "NOUHANT", - "nomCommune": "NOUHANT" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "38250", - "codeCommune": "38129", - "libelleAcheminement": "CORRENCON EN VERCORS", - "nomCommune": "CORRENCON EN VERCORS" + "codePostal": "58120", + "codeCommune": "58034", + "libelleAcheminement": "BLISMES", + "nomCommune": "BLISMES" }, { - "codePostal": "51600", - "codeCommune": "51501", - "libelleAcheminement": "STE MARIE A PY", - "nomCommune": "STE MARIE A PY" + "codePostal": "01480", + "codeCommune": "01075", + "libelleAcheminement": "CHALEINS", + "nomCommune": "CHALEINS" }, { - "codePostal": "28700", - "codeCommune": "28285", - "libelleAcheminement": "OINVILLE SOUS AUNEAU", - "nomCommune": "OINVILLE SOUS AUNEAU" + "codePostal": "57570", + "codeCommune": "57557", + "libelleAcheminement": "PUTTELANGE LES THIONVILLE", + "nomCommune": "PUTTELANGE LES THIONVILLE" }, { - "codePostal": "23260", - "codeCommune": "23156", - "libelleAcheminement": "PONTCHARRAUD", - "nomCommune": "PONTCHARRAUD" + "codePostal": "46120", + "codeCommune": "46034", + "libelleAcheminement": "LE BOURG", + "nomCommune": "LE BOURG" }, { - "codePostal": "38970", - "codeCommune": "38132", - "libelleAcheminement": "LES COTES DE CORPS", - "nomCommune": "LES COTES DE CORPS" + "codePostal": "49440", + "codeCommune": "49054", + "libelleAcheminement": "CANDE", + "nomCommune": "CANDE" }, { - "codePostal": "51240", - "codeCommune": "51512", - "libelleAcheminement": "ST QUENTIN SUR COOLE", - "nomCommune": "ST QUENTIN SUR COOLE" + "codePostal": "58530", + "codeCommune": "58039", + "libelleAcheminement": "BREVES", + "nomCommune": "BREVES" }, { - "codePostal": "28190", - "codeCommune": "28290", - "libelleAcheminement": "ORROUER", - "nomCommune": "ORROUER" + "codePostal": "01420", + "codeCommune": "01082", + "libelleAcheminement": "CHANAY", + "nomCommune": "CHANAY" }, { - "codePostal": "23460", - "codeCommune": "23165", - "libelleAcheminement": "ROYERE DE VASSIVIERE", - "nomCommune": "ROYERE DE VASSIVIERE" + "codePostal": "57340", + "codeCommune": "57560", + "libelleAcheminement": "RACRANGE", + "nomCommune": "RACRANGE" }, { - "codePostal": "38510", - "codeCommune": "38135", - "libelleAcheminement": "COURTENAY", - "nomCommune": "COURTENAY" + "codePostal": "46130", + "codeCommune": "46038", + "libelleAcheminement": "BRETENOUX", + "nomCommune": "BRETENOUX" }, { - "codePostal": "52100", - "codeCommune": "51522", - "libelleAcheminement": "SAPIGNICOURT", - "nomCommune": "SAPIGNICOURT" + "codePostal": "49360", + "codeCommune": "49058", + "libelleAcheminement": "LES CERQUEUX", + "nomCommune": "LES CERQUEUX" }, { - "codePostal": "28700", - "codeCommune": "28294", - "libelleAcheminement": "OYSONVILLE", - "nomCommune": "OYSONVILLE" + "codePostal": "58000", + "codeCommune": "58051", + "libelleAcheminement": "CHALLUY", + "nomCommune": "CHALLUY" }, { - "codePostal": "23800", - "codeCommune": "23166", - "libelleAcheminement": "SAGNAT", - "nomCommune": "SAGNAT" + "codePostal": "01240", + "codeCommune": "01085", + "libelleAcheminement": "LA CHAPELLE DU CHATELARD", + "nomCommune": "LA CHAPELLE DU CHATELARD" }, { - "codePostal": "38210", - "codeCommune": "38137", - "libelleAcheminement": "CRAS", - "nomCommune": "CRAS" + "codePostal": "57390", + "codeCommune": "57565", + "libelleAcheminement": "REDANGE", + "nomCommune": "REDANGE" }, { - "codePostal": "51170", - "codeCommune": "51523", - "libelleAcheminement": "SARCY", - "nomCommune": "SARCY" + "codePostal": "46000", + "codeCommune": "46042", + "libelleAcheminement": "CAHORS", + "nomCommune": "CAHORS" }, { - "codePostal": "28140", - "codeCommune": "28296", - "libelleAcheminement": "PERONVILLE", - "nomCommune": "PERONVILLE" + "codePostal": "49260", + "codeCommune": "49060", + "libelleAcheminement": "BELLEVIGNE LES CHATEAUX", + "nomCommune": "BELLEVIGNE LES CHATEAUX" }, { - "codePostal": "23250", - "codeCommune": "23173", - "libelleAcheminement": "SOUBREBOST", - "nomCommune": "SOUBREBOST" + "codePostal": "58700", + "codeCommune": "58054", + "libelleAcheminement": "CHAMPLIN", + "nomCommune": "CHAMPLIN" }, { - "codePostal": "38460", - "codeCommune": "38138", - "libelleAcheminement": "CREMIEU", - "nomCommune": "CREMIEU" + "codePostal": "01130", + "codeCommune": "01087", + "libelleAcheminement": "CHARIX", + "nomCommune": "CHARIX" }, { - "codePostal": "51170", - "codeCommune": "51534", - "libelleAcheminement": "SERZY ET PRIN", - "nomCommune": "SERZY ET PRIN" + "codePostal": "57510", + "codeCommune": "57571", + "libelleAcheminement": "REMERING LES PUTTELANGE", + "nomCommune": "REMERING LES PUTTELANGE" }, { - "codePostal": "28190", - "codeCommune": "28302", - "libelleAcheminement": "PONTGOUIN", - "nomCommune": "PONTGOUIN" + "codePostal": "46150", + "codeCommune": "46046", + "libelleAcheminement": "CALAMANE", + "nomCommune": "CALAMANE" }, { - "codePostal": "23260", - "codeCommune": "23178", - "libelleAcheminement": "ST AGNANT PRES CROCQ", - "nomCommune": "ST AGNANT PRES CROCQ" + "codePostal": "49270", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "38510", - "codeCommune": "38139", - "libelleAcheminement": "CREYS MEPIEU", - "nomCommune": "CREYS MEPIEU" + "codePostal": "58300", + "codeCommune": "58055", + "libelleAcheminement": "CHAMPVERT", + "nomCommune": "CHAMPVERT" }, { - "codePostal": "51500", - "codeCommune": "51536", - "libelleAcheminement": "SILLERY", - "nomCommune": "SILLERY" + "codePostal": "01320", + "codeCommune": "01090", + "libelleAcheminement": "CHATENAY", + "nomCommune": "CHATENAY" }, { - "codePostal": "28800", - "codeCommune": "28305", - "libelleAcheminement": "PRE ST EVROULT", - "nomCommune": "PRE ST EVROULT" + "codePostal": "57810", + "codeCommune": "57579", + "libelleAcheminement": "RHODES", + "nomCommune": "RHODES" }, { - "codePostal": "23200", - "codeCommune": "23179", - "libelleAcheminement": "ST ALPINIEN", - "nomCommune": "ST ALPINIEN" + "codePostal": "46140", + "codeCommune": "46050", + "libelleAcheminement": "CAMBAYRAC", + "nomCommune": "CAMBAYRAC" }, { - "codePostal": "38920", - "codeCommune": "38140", - "libelleAcheminement": "CROLLES", - "nomCommune": "CROLLES" + "codePostal": "49270", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "51800", - "codeCommune": "51537", - "libelleAcheminement": "SIVRY ANTE", - "nomCommune": "SIVRY ANTE" + "codePostal": "58800", + "codeCommune": "58069", + "libelleAcheminement": "CHAUMOT", + "nomCommune": "CHAUMOT" }, { - "codePostal": "28200", - "codeCommune": "28330", - "libelleAcheminement": "VILLEMAURY", - "nomCommune": "VILLEMAURY" + "codePostal": "01430", + "codeCommune": "01112", + "libelleAcheminement": "CONDAMINE", + "nomCommune": "CONDAMINE" }, { - "codePostal": "23130", - "codeCommune": "23187", - "libelleAcheminement": "ST DIZIER LA TOUR", - "nomCommune": "ST DIZIER LA TOUR" + "codePostal": "57340", + "codeCommune": "57580", + "libelleAcheminement": "RICHE", + "nomCommune": "RICHE" }, { - "codePostal": "38130", - "codeCommune": "38151", - "libelleAcheminement": "ECHIROLLES", - "nomCommune": "ECHIROLLES" + "codePostal": "46100", + "codeCommune": "46051", + "libelleAcheminement": "CAMBES", + "nomCommune": "CAMBES" }, { - "codePostal": "51800", - "codeCommune": "51543", - "libelleAcheminement": "SOMME BIONNE", - "nomCommune": "SOMME BIONNE" + "codePostal": "49530", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "28200", - "codeCommune": "28330", - "libelleAcheminement": "VILLEMAURY", - "nomCommune": "VILLEMAURY" + "codePostal": "58350", + "codeCommune": "58081", + "libelleAcheminement": "COLMERY", + "nomCommune": "COLMERY" }, { - "codePostal": "23290", - "codeCommune": "23192", - "libelleAcheminement": "FURSAC", - "nomCommune": "FURSAC" + "codePostal": "01400", + "codeCommune": "01113", + "libelleAcheminement": "CONDEISSIAT", + "nomCommune": "CONDEISSIAT" }, { - "codePostal": "38780", - "codeCommune": "38157", - "libelleAcheminement": "ESTRABLIN", - "nomCommune": "ESTRABLIN" + "codePostal": "57720", + "codeCommune": "57584", + "libelleAcheminement": "RIMLING", + "nomCommune": "RIMLING" }, { - "codePostal": "51600", - "codeCommune": "51544", - "libelleAcheminement": "SOMMEPY TAHURE", - "nomCommune": "SOMMEPY TAHURE" + "codePostal": "46100", + "codeCommune": "46053", + "libelleAcheminement": "CAMBURAT", + "nomCommune": "CAMBURAT" }, { - "codePostal": "28200", - "codeCommune": "28330", - "libelleAcheminement": "VILLEMAURY", - "nomCommune": "VILLEMAURY" + "codePostal": "49530", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "23000", - "codeCommune": "23193", - "libelleAcheminement": "STE FEYRE", - "nomCommune": "STE FEYRE" + "codePostal": "58800", + "codeCommune": "58083", + "libelleAcheminement": "CORBIGNY", + "nomCommune": "CORBIGNY" }, { - "codePostal": "38690", - "codeCommune": "38159", - "libelleAcheminement": "EYDOCHE", - "nomCommune": "EYDOCHE" + "codePostal": "01300", + "codeCommune": "01116", + "libelleAcheminement": "CONTREVOZ", + "nomCommune": "CONTREVOZ" }, { - "codePostal": "51320", - "codeCommune": "51545", - "libelleAcheminement": "SOMMESOUS", - "nomCommune": "SOMMESOUS" + "codePostal": "57120", + "codeCommune": "57591", + "libelleAcheminement": "ROMBAS", + "nomCommune": "ROMBAS" }, { - "codePostal": "28480", - "codeCommune": "28331", - "libelleAcheminement": "SAINTIGNY", - "nomCommune": "SAINTIGNY" + "codePostal": "46100", + "codeCommune": "46055", + "libelleAcheminement": "CAPDENAC", + "nomCommune": "CAPDENAC" }, { - "codePostal": "23500", - "codeCommune": "23194", - "libelleAcheminement": "STE FEYRE LA MONTAGNE", - "nomCommune": "STE FEYRE LA MONTAGNE" + "codePostal": "49140", + "codeCommune": "49076", + "libelleAcheminement": "LA CHAPELLE ST LAUD", + "nomCommune": "LA CHAPELLE ST LAUD" }, { - "codePostal": "38580", - "codeCommune": "38163", - "libelleAcheminement": "LE HAUT BREDA", - "nomCommune": "LE HAUT BREDA" + "codePostal": "58300", + "codeCommune": "58087", + "libelleAcheminement": "COSSAYE", + "nomCommune": "COSSAYE" }, { - "codePostal": "51600", - "codeCommune": "51547", - "libelleAcheminement": "SOMME TOURBE", - "nomCommune": "SOMME TOURBE" + "codePostal": "01300", + "codeCommune": "01117", + "libelleAcheminement": "CONZIEU", + "nomCommune": "CONZIEU" }, { - "codePostal": "28480", - "codeCommune": "28331", - "libelleAcheminement": "SAINTIGNY", - "nomCommune": "SAINTIGNY" + "codePostal": "57780", + "codeCommune": "57597", + "libelleAcheminement": "ROSSELANGE", + "nomCommune": "ROSSELANGE" }, { - "codePostal": "23500", - "codeCommune": "23196", - "libelleAcheminement": "ST FRION", - "nomCommune": "ST FRION" + "codePostal": "46170", + "codeCommune": "46063", + "libelleAcheminement": "CASTELNAU MONTRATIER STE ALAUZIE", + "nomCommune": "CASTELNAU MONTRATIER STE ALAUZIE" }, { - "codePostal": "38600", - "codeCommune": "38169", - "libelleAcheminement": "FONTAINE", - "nomCommune": "FONTAINE" + "codePostal": "49330", + "codeCommune": "49080", + "libelleAcheminement": "LES HAUTS D ANJOU", + "nomCommune": "LES HAUTS D ANJOU" }, { - "codePostal": "51460", - "codeCommune": "51548", - "libelleAcheminement": "SOMME VESLE", - "nomCommune": "SOMME VESLE" + "codePostal": "58190", + "codeCommune": "58098", + "libelleAcheminement": "DIROL", + "nomCommune": "DIROL" }, { - "codePostal": "28200", - "codeCommune": "28334", - "libelleAcheminement": "ST DENIS LANNERAY", - "nomCommune": "ST DENIS LANNERAY" + "codePostal": "01340", + "codeCommune": "01130", + "libelleAcheminement": "BRESSE VALLONS", + "nomCommune": "BRESSE VALLONS" }, { - "codePostal": "23150", - "codeCommune": "23201", - "libelleAcheminement": "ST HILAIRE LA PLAINE", - "nomCommune": "ST HILAIRE LA PLAINE" + "codePostal": "57220", + "codeCommune": "57599", + "libelleAcheminement": "ROUPELDANGE", + "nomCommune": "ROUPELDANGE" }, { - "codePostal": "38290", - "codeCommune": "38176", - "libelleAcheminement": "FRONTONAS", - "nomCommune": "FRONTONAS" + "codePostal": "46250", + "codeCommune": "46066", + "libelleAcheminement": "CAZALS", + "nomCommune": "CAZALS" }, { - "codePostal": "51300", - "codeCommune": "51557", - "libelleAcheminement": "SOULANGES", - "nomCommune": "SOULANGES" + "codePostal": "49330", + "codeCommune": "49080", + "libelleAcheminement": "LES HAUTS D ANJOU", + "nomCommune": "LES HAUTS D ANJOU" }, { - "codePostal": "28120", - "codeCommune": "28336", - "libelleAcheminement": "ST EMAN", - "nomCommune": "ST EMAN" + "codePostal": "58120", + "codeCommune": "58099", + "libelleAcheminement": "DOMMARTIN", + "nomCommune": "DOMMARTIN" }, { - "codePostal": "23250", - "codeCommune": "23202", - "libelleAcheminement": "ST HILAIRE LE CHATEAU", - "nomCommune": "ST HILAIRE LE CHATEAU" + "codePostal": "01560", + "codeCommune": "01139", + "libelleAcheminement": "CURCIAT DONGALON", + "nomCommune": "CURCIAT DONGALON" }, { - "codePostal": "38260", - "codeCommune": "38180", - "libelleAcheminement": "GILLONNAY", - "nomCommune": "GILLONNAY" + "codePostal": "57160", + "codeCommune": "57601", + "libelleAcheminement": "ROZERIEULLES", + "nomCommune": "ROZERIEULLES" }, { - "codePostal": "51510", - "codeCommune": "51566", - "libelleAcheminement": "THIBIE", - "nomCommune": "THIBIE" + "codePostal": "46330", + "codeCommune": "46068", + "libelleAcheminement": "CENEVIERES", + "nomCommune": "CENEVIERES" }, { - "codePostal": "28190", - "codeCommune": "28337", - "libelleAcheminement": "ST GEORGES SUR EURE", - "nomCommune": "ST GEORGES SUR EURE" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "23000", - "codeCommune": "23208", - "libelleAcheminement": "ST LEGER LE GUERETOIS", - "nomCommune": "ST LEGER LE GUERETOIS" + "codePostal": "58140", + "codeCommune": "58108", + "libelleAcheminement": "EMPURY", + "nomCommune": "EMPURY" }, { - "codePostal": "38450", - "codeCommune": "38187", - "libelleAcheminement": "LE GUA", - "nomCommune": "LE GUA" + "codePostal": "01240", + "codeCommune": "01145", + "libelleAcheminement": "DOMPIERRE SUR VEYLE", + "nomCommune": "DOMPIERRE SUR VEYLE" }, { - "codePostal": "51210", - "codeCommune": "51570", - "libelleAcheminement": "LE THOULT TROSNAY", - "nomCommune": "LE THOULT TROSNAY" + "codePostal": "57480", + "codeCommune": "57604", + "libelleAcheminement": "RUSTROFF", + "nomCommune": "RUSTROFF" }, { - "codePostal": "28300", - "codeCommune": "28358", - "libelleAcheminement": "ST PREST", - "nomCommune": "ST PREST" + "codePostal": "46110", + "codeCommune": "46074", + "libelleAcheminement": "CONDAT", + "nomCommune": "CONDAT" }, { - "codePostal": "23130", - "codeCommune": "23209", - "libelleAcheminement": "ST LOUP", - "nomCommune": "ST LOUP" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "38570", - "codeCommune": "38192", - "libelleAcheminement": "HURTIERES", - "nomCommune": "HURTIERES" + "codePostal": "58800", + "codeCommune": "58110", + "libelleAcheminement": "EPIRY", + "nomCommune": "EPIRY" }, { - "codePostal": "51460", - "codeCommune": "51572", - "libelleAcheminement": "TILLOY ET BELLAY", - "nomCommune": "TILLOY ET BELLAY" + "codePostal": "01400", + "codeCommune": "01146", + "libelleAcheminement": "DOMPIERRE SUR CHALARONNE", + "nomCommune": "DOMPIERRE SUR CHALARONNE" }, { - "codePostal": "28800", - "codeCommune": "28364", - "libelleAcheminement": "SANCHEVILLE", - "nomCommune": "SANCHEVILLE" + "codePostal": "57640", + "codeCommune": "57607", + "libelleAcheminement": "STE BARBE", + "nomCommune": "STE BARBE" }, { - "codePostal": "23600", - "codeCommune": "23213", - "libelleAcheminement": "ST MARIEN", - "nomCommune": "ST MARIEN" + "codePostal": "46100", + "codeCommune": "46075", + "libelleAcheminement": "CORN", + "nomCommune": "CORN" }, { - "codePostal": "38710", - "codeCommune": "38208", - "libelleAcheminement": "LAVARS", - "nomCommune": "LAVARS" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "51430", - "codeCommune": "51573", - "libelleAcheminement": "TINQUEUX", - "nomCommune": "TINQUEUX" + "codePostal": "58600", + "codeCommune": "58121", + "libelleAcheminement": "GARCHIZY", + "nomCommune": "GARCHIZY" }, { - "codePostal": "28250", - "codeCommune": "28368", - "libelleAcheminement": "LA SAUCELLE", - "nomCommune": "LA SAUCELLE" + "codePostal": "01100", + "codeCommune": "01171", + "libelleAcheminement": "GEOVREISSET", + "nomCommune": "GEOVREISSET" }, { - "codePostal": "23300", - "codeCommune": "23219", - "libelleAcheminement": "ST MAURICE LA SOUTERRAINE", - "nomCommune": "ST MAURICE LA SOUTERRAINE" + "codePostal": "57855", + "codeCommune": "57622", + "libelleAcheminement": "ST PRIVAT LA MONTAGNE", + "nomCommune": "ST PRIVAT LA MONTAGNE" }, { - "codePostal": "38440", - "codeCommune": "38211", - "libelleAcheminement": "LIEUDIEU", - "nomCommune": "LIEUDIEU" + "codePostal": "46150", + "codeCommune": "46080", + "libelleAcheminement": "CRAYSSAC", + "nomCommune": "CRAYSSAC" }, { - "codePostal": "51140", - "codeCommune": "51581", - "libelleAcheminement": "TRESLON", - "nomCommune": "TRESLON" + "codePostal": "49310", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "28800", - "codeCommune": "28370", - "libelleAcheminement": "SAUMERAY", - "nomCommune": "SAUMERAY" + "codePostal": "58300", + "codeCommune": "58137", + "libelleAcheminement": "LAMENAY SUR LOIRE", + "nomCommune": "LAMENAY SUR LOIRE" }, { - "codePostal": "23300", - "codeCommune": "23219", - "libelleAcheminement": "ST MAURICE LA SOUTERRAINE", - "nomCommune": "ST MAURICE LA SOUTERRAINE" + "codePostal": "01260", + "codeCommune": "01187", + "libelleAcheminement": "HAUT VALROMEY", + "nomCommune": "HAUT VALROMEY" }, { - "codePostal": "38200", - "codeCommune": "38215", - "libelleAcheminement": "LUZINAY", - "nomCommune": "LUZINAY" + "codePostal": "57412", + "codeCommune": "57636", + "libelleAcheminement": "SCHMITTVILLER", + "nomCommune": "SCHMITTVILLER" }, { - "codePostal": "51500", - "codeCommune": "51584", - "libelleAcheminement": "TROIS PUITS", - "nomCommune": "TROIS PUITS" + "codePostal": "46600", + "codeCommune": "46083", + "libelleAcheminement": "CRESSENSAC SARRAZAC", + "nomCommune": "CRESSENSAC SARRAZAC" }, { - "codePostal": "28250", - "codeCommune": "28373", - "libelleAcheminement": "SENONCHES", - "nomCommune": "SENONCHES" + "codePostal": "49190", + "codeCommune": "49120", + "libelleAcheminement": "DENEE", + "nomCommune": "DENEE" }, { - "codePostal": "23200", - "codeCommune": "23220", - "libelleAcheminement": "ST MEDARD LA ROCHETTE", - "nomCommune": "ST MEDARD LA ROCHETTE" + "codePostal": "58140", + "codeCommune": "58145", + "libelleAcheminement": "LORMES", + "nomCommune": "LORMES" }, { - "codePostal": "38620", - "codeCommune": "38222", - "libelleAcheminement": "MASSIEU", - "nomCommune": "MASSIEU" + "codePostal": "01430", + "codeCommune": "01191", + "libelleAcheminement": "IZENAVE", + "nomCommune": "IZENAVE" }, { - "codePostal": "51140", - "codeCommune": "51591", - "libelleAcheminement": "VANDEUIL", - "nomCommune": "VANDEUIL" + "codePostal": "57230", + "codeCommune": "57639", + "libelleAcheminement": "SCHORBACH", + "nomCommune": "SCHORBACH" }, { - "codePostal": "28250", - "codeCommune": "28373", - "libelleAcheminement": "SENONCHES", - "nomCommune": "SENONCHES" + "codePostal": "46600", + "codeCommune": "46086", + "libelleAcheminement": "CUZANCE", + "nomCommune": "CUZANCE" }, { - "codePostal": "23200", - "codeCommune": "23220", - "libelleAcheminement": "ST MEDARD LA ROCHETTE", - "nomCommune": "ST MEDARD LA ROCHETTE" + "codePostal": "49700", + "codeCommune": "49121", + "libelleAcheminement": "DENEZE SOUS DOUE", + "nomCommune": "DENEZE SOUS DOUE" }, { - "codePostal": "38430", - "codeCommune": "38239", - "libelleAcheminement": "MOIRANS", - "nomCommune": "MOIRANS" + "codePostal": "58380", + "codeCommune": "58146", + "libelleAcheminement": "LUCENAY LES AIX", + "nomCommune": "LUCENAY LES AIX" }, { - "codePostal": "51700", - "codeCommune": "51592", - "libelleAcheminement": "VANDIERES", - "nomCommune": "VANDIERES" + "codePostal": "01580", + "codeCommune": "01192", + "libelleAcheminement": "IZERNORE", + "nomCommune": "IZERNORE" }, { - "codePostal": "28170", - "codeCommune": "28374", - "libelleAcheminement": "SERAZEREUX", - "nomCommune": "SERAZEREUX" + "codePostal": "57320", + "codeCommune": "57640", + "libelleAcheminement": "SCHWERDORFF", + "nomCommune": "SCHWERDORFF" }, { - "codePostal": "23400", - "codeCommune": "23223", - "libelleAcheminement": "ST MOREIL", - "nomCommune": "ST MOREIL" + "codePostal": "46270", + "codeCommune": "46101", + "libelleAcheminement": "FELZINS", + "nomCommune": "FELZINS" }, { - "codePostal": "38970", - "codeCommune": "38241", - "libelleAcheminement": "MONESTIER D AMBEL", - "nomCommune": "MONESTIER D AMBEL" + "codePostal": "49400", + "codeCommune": "49123", + "libelleAcheminement": "DISTRE", + "nomCommune": "DISTRE" }, { - "codePostal": "51210", - "codeCommune": "51596", - "libelleAcheminement": "VAUCHAMPS", - "nomCommune": "VAUCHAMPS" + "codePostal": "58260", + "codeCommune": "58151", + "libelleAcheminement": "LA MACHINE", + "nomCommune": "LA MACHINE" }, { - "codePostal": "28130", - "codeCommune": "28379", - "libelleAcheminement": "SOULAIRES", - "nomCommune": "SOULAIRES" + "codePostal": "01300", + "codeCommune": "01193", + "libelleAcheminement": "IZIEU", + "nomCommune": "IZIEU" }, { - "codePostal": "23400", - "codeCommune": "23227", - "libelleAcheminement": "ST PARDOUX MORTEROLLES", - "nomCommune": "ST PARDOUX MORTEROLLES" + "codePostal": "57455", + "codeCommune": "57644", + "libelleAcheminement": "SEINGBOUSE", + "nomCommune": "SEINGBOUSE" }, { - "codePostal": "38930", - "codeCommune": "38243", - "libelleAcheminement": "LE MONESTIER DU PERCY", - "nomCommune": "LE MONESTIER DU PERCY" + "codePostal": "46100", + "codeCommune": "46102", + "libelleAcheminement": "FIGEAC", + "nomCommune": "FIGEAC" }, { - "codePostal": "51700", - "codeCommune": "51609", - "libelleAcheminement": "VERNEUIL", - "nomCommune": "VERNEUIL" + "codePostal": "49000", + "codeCommune": "49129", + "libelleAcheminement": "ECOUFLANT", + "nomCommune": "ECOUFLANT" }, { - "codePostal": "28630", - "codeCommune": "28388", - "libelleAcheminement": "THIVARS", - "nomCommune": "THIVARS" + "codePostal": "58400", + "codeCommune": "58164", + "libelleAcheminement": "MESVES SUR LOIRE", + "nomCommune": "MESVES SUR LOIRE" }, { - "codePostal": "23200", - "codeCommune": "23228", - "libelleAcheminement": "ST PARDOUX LE NEUF", - "nomCommune": "ST PARDOUX LE NEUF" + "codePostal": "01480", + "codeCommune": "01194", + "libelleAcheminement": "JASSANS RIOTTIER", + "nomCommune": "JASSANS RIOTTIER" }, { - "codePostal": "38390", - "codeCommune": "38247", - "libelleAcheminement": "MONTALIEU VERCIEU", - "nomCommune": "MONTALIEU VERCIEU" + "codePostal": "57280", + "codeCommune": "57645", + "libelleAcheminement": "SEMECOURT", + "nomCommune": "SEMECOURT" }, { - "codePostal": "51130", - "codeCommune": "51611", - "libelleAcheminement": "VERT TOULON", - "nomCommune": "VERT TOULON" + "codePostal": "46170", + "codeCommune": "46103", + "libelleAcheminement": "ST PAUL FLAUGNAC", + "nomCommune": "ST PAUL FLAUGNAC" }, { - "codePostal": "28310", - "codeCommune": "28392", - "libelleAcheminement": "TRANCRAINVILLE", - "nomCommune": "TRANCRAINVILLE" + "codePostal": "49330", + "codeCommune": "49132", + "libelleAcheminement": "ETRICHE", + "nomCommune": "ETRICHE" }, { - "codePostal": "23300", - "codeCommune": "23235", - "libelleAcheminement": "ST PRIEST LA FEUILLE", - "nomCommune": "ST PRIEST LA FEUILLE" + "codePostal": "58190", + "codeCommune": "58165", + "libelleAcheminement": "METZ LE COMTE", + "nomCommune": "METZ LE COMTE" }, { - "codePostal": "38860", - "codeCommune": "38253", - "libelleAcheminement": "LES DEUX ALPES", - "nomCommune": "LES DEUX ALPES" + "codePostal": "01290", + "codeCommune": "01203", + "libelleAcheminement": "LAIZ", + "nomCommune": "LAIZ" }, { - "codePostal": "51380", - "codeCommune": "51614", - "libelleAcheminement": "VERZY", - "nomCommune": "VERZY" + "codePostal": "57640", + "codeCommune": "57649", + "libelleAcheminement": "SERVIGNY LES STE BARBE", + "nomCommune": "SERVIGNY LES STE BARBE" }, { - "codePostal": "28170", - "codeCommune": "28393", - "libelleAcheminement": "TREMBLAY LES VILLAGES", - "nomCommune": "TREMBLAY LES VILLAGES" + "codePostal": "46100", + "codeCommune": "46108", + "libelleAcheminement": "FONS", + "nomCommune": "FONS" }, { - "codePostal": "23160", - "codeCommune": "23239", - "libelleAcheminement": "ST SEBASTIEN", - "nomCommune": "ST SEBASTIEN" + "codePostal": "49140", + "codeCommune": "49163", + "libelleAcheminement": "JARZE VILLAGES", + "nomCommune": "JARZE VILLAGES" }, { - "codePostal": "38860", - "codeCommune": "38253", - "libelleAcheminement": "LES DEUX ALPES", - "nomCommune": "LES DEUX ALPES" + "codePostal": "58140", + "codeCommune": "58166", + "libelleAcheminement": "MHERE", + "nomCommune": "MHERE" }, { - "codePostal": "51520", - "codeCommune": "51617", - "libelleAcheminement": "LA VEUVE", - "nomCommune": "LA VEUVE" + "codePostal": "01130", + "codeCommune": "01204", + "libelleAcheminement": "LE POIZAT LALLEYRIAT", + "nomCommune": "LE POIZAT LALLEYRIAT" }, { - "codePostal": "28140", - "codeCommune": "28400", - "libelleAcheminement": "VARIZE", - "nomCommune": "VARIZE" + "codePostal": "57580", + "codeCommune": "57656", + "libelleAcheminement": "SORBEY", + "nomCommune": "SORBEY" }, { - "codePostal": "23150", - "codeCommune": "23250", - "libelleAcheminement": "ST YRIEIX LES BOIS", - "nomCommune": "ST YRIEIX LES BOIS" + "codePostal": "46090", + "codeCommune": "46112", + "libelleAcheminement": "FRANCOULES", + "nomCommune": "FRANCOULES" }, { - "codePostal": "38210", - "codeCommune": "38263", - "libelleAcheminement": "MORETTE", - "nomCommune": "MORETTE" + "codePostal": "49610", + "codeCommune": "49167", + "libelleAcheminement": "LES GARENNES SUR LOIRE", + "nomCommune": "LES GARENNES SUR LOIRE" }, { - "codePostal": "51500", - "codeCommune": "51629", - "libelleAcheminement": "VILLERS ALLERAND", - "nomCommune": "VILLERS ALLERAND" + "codePostal": "58190", + "codeCommune": "58169", + "libelleAcheminement": "MOISSY MOULINOT", + "nomCommune": "MOISSY MOULINOT" }, { - "codePostal": "28630", - "codeCommune": "28403", - "libelleAcheminement": "VER LES CHARTRES", - "nomCommune": "VER LES CHARTRES" + "codePostal": "01680", + "codeCommune": "01216", + "libelleAcheminement": "LHUIS", + "nomCommune": "LHUIS" }, { - "codePostal": "23350", - "codeCommune": "23252", - "libelleAcheminement": "TERCILLAT", - "nomCommune": "TERCILLAT" + "codePostal": "57960", + "codeCommune": "57658", + "libelleAcheminement": "SOUCHT", + "nomCommune": "SOUCHT" }, { - "codePostal": "38580", - "codeCommune": "38268", - "libelleAcheminement": "LE MOUTARET", - "nomCommune": "LE MOUTARET" + "codePostal": "46300", + "codeCommune": "46121", + "libelleAcheminement": "GINOUILLAC", + "nomCommune": "GINOUILLAC" }, { - "codePostal": "51510", - "codeCommune": "51634", - "libelleAcheminement": "VILLERS LE CHATEAU", - "nomCommune": "VILLERS LE CHATEAU" + "codePostal": "49150", + "codeCommune": "49171", + "libelleAcheminement": "LA LANDE CHASLES", + "nomCommune": "LA LANDE CHASLES" }, { - "codePostal": "28150", - "codeCommune": "28406", - "libelleAcheminement": "EOLE EN BEAUCE", - "nomCommune": "EOLE EN BEAUCE" + "codePostal": "58250", + "codeCommune": "58173", + "libelleAcheminement": "MONTARON", + "nomCommune": "MONTARON" }, { - "codePostal": "23600", - "codeCommune": "23254", - "libelleAcheminement": "TOULX STE CROIX", - "nomCommune": "TOULX STE CROIX" + "codePostal": "01090", + "codeCommune": "01225", + "libelleAcheminement": "LURCY", + "nomCommune": "LURCY" }, { - "codePostal": "38420", - "codeCommune": "38271", - "libelleAcheminement": "MURIANETTE", - "nomCommune": "MURIANETTE" + "codePostal": "57450", + "codeCommune": "57669", + "libelleAcheminement": "THEDING", + "nomCommune": "THEDING" }, { - "codePostal": "51380", - "codeCommune": "51636", - "libelleAcheminement": "VILLERS MARMERY", - "nomCommune": "VILLERS MARMERY" + "codePostal": "46130", + "codeCommune": "46123", + "libelleAcheminement": "GIRAC", + "nomCommune": "GIRAC" }, { - "codePostal": "28150", - "codeCommune": "28406", - "libelleAcheminement": "EOLE EN BEAUCE", - "nomCommune": "EOLE EN BEAUCE" + "codePostal": "49430", + "codeCommune": "49174", + "libelleAcheminement": "HUILLE LEZIGNE", + "nomCommune": "HUILLE LEZIGNE" }, { - "codePostal": "23250", - "codeCommune": "23260", - "libelleAcheminement": "VIDAILLAT", - "nomCommune": "VIDAILLAT" + "codePostal": "58130", + "codeCommune": "58176", + "libelleAcheminement": "MONTIGNY AUX AMOGNES", + "nomCommune": "MONTIGNY AUX AMOGNES" }, { - "codePostal": "38470", - "codeCommune": "38278", - "libelleAcheminement": "NOTRE DAME DE L OSIER", - "nomCommune": "NOTRE DAME DE L OSIER" + "codePostal": "01680", + "codeCommune": "01233", + "libelleAcheminement": "MARCHAMP", + "nomCommune": "MARCHAMP" }, { - "codePostal": "51700", - "codeCommune": "51637", - "libelleAcheminement": "VILLERS SOUS CHATILLON", - "nomCommune": "VILLERS SOUS CHATILLON" + "codePostal": "57100", + "codeCommune": "57672", + "libelleAcheminement": "THIONVILLE", + "nomCommune": "THIONVILLE" }, { - "codePostal": "28190", - "codeCommune": "28414", - "libelleAcheminement": "VILLEBON", - "nomCommune": "VILLEBON" + "codePostal": "46250", + "codeCommune": "46126", + "libelleAcheminement": "GOUJOUNAC", + "nomCommune": "GOUJOUNAC" }, { - "codePostal": "23340", - "codeCommune": "23264", - "libelleAcheminement": "LA VILLEDIEU", - "nomCommune": "LA VILLEDIEU" + "codePostal": "49220", + "codeCommune": "49176", + "libelleAcheminement": "LE LION D ANGERS", + "nomCommune": "LE LION D ANGERS" }, { - "codePostal": "38360", - "codeCommune": "38281", - "libelleAcheminement": "NOYAREY", - "nomCommune": "NOYAREY" + "codePostal": "58230", + "codeCommune": "58180", + "libelleAcheminement": "MONTSAUCHE LES SETTONS", + "nomCommune": "MONTSAUCHE LES SETTONS" }, { - "codePostal": "51530", - "codeCommune": "51643", - "libelleAcheminement": "VINAY", - "nomCommune": "VINAY" + "codePostal": "01340", + "codeCommune": "01236", + "libelleAcheminement": "MARSONNAS", + "nomCommune": "MARSONNAS" }, { - "codePostal": "28210", - "codeCommune": "28415", - "libelleAcheminement": "VILLEMEUX SUR EURE", - "nomCommune": "VILLEMEUX SUR EURE" + "codePostal": "57380", + "codeCommune": "57686", + "libelleAcheminement": "VAHL LES FAULQUEMONT", + "nomCommune": "VAHL LES FAULQUEMONT" }, { - "codePostal": "24590", - "codeCommune": "24012", - "libelleAcheminement": "ARCHIGNAC", - "nomCommune": "ARCHIGNAC" + "codePostal": "46500", + "codeCommune": "46128", + "libelleAcheminement": "GRAMAT", + "nomCommune": "GRAMAT" }, { - "codePostal": "38460", - "codeCommune": "38282", - "libelleAcheminement": "OPTEVOZ", - "nomCommune": "OPTEVOZ" + "codePostal": "49220", + "codeCommune": "49176", + "libelleAcheminement": "LE LION D ANGERS", + "nomCommune": "LE LION D ANGERS" }, { - "codePostal": "51700", - "codeCommune": "51644", - "libelleAcheminement": "VINCELLES", - "nomCommune": "VINCELLES" + "codePostal": "58700", + "codeCommune": "58184", + "libelleAcheminement": "MOUSSY", + "nomCommune": "MOUSSY" }, { - "codePostal": "28150", - "codeCommune": "28422", - "libelleAcheminement": "LES VILLAGES VOVEENS", - "nomCommune": "LES VILLAGES VOVEENS" + "codePostal": "01450", + "codeCommune": "01242", + "libelleAcheminement": "MERIGNAT", + "nomCommune": "MERIGNAT" }, { - "codePostal": "24150", - "codeCommune": "24022", - "libelleAcheminement": "BADEFOLS SUR DORDOGNE", - "nomCommune": "BADEFOLS SUR DORDOGNE" + "codePostal": "57340", + "codeCommune": "57687", + "libelleAcheminement": "VALLERANGE", + "nomCommune": "VALLERANGE" }, { - "codePostal": "38350", - "codeCommune": "38283", - "libelleAcheminement": "ORIS EN RATTIER", - "nomCommune": "ORIS EN RATTIER" + "codePostal": "46160", + "codeCommune": "46129", + "libelleAcheminement": "GREALOU", + "nomCommune": "GREALOU" }, { - "codePostal": "51120", - "codeCommune": "51645", - "libelleAcheminement": "VINDEY", - "nomCommune": "VINDEY" + "codePostal": "49630", + "codeCommune": "49194", + "libelleAcheminement": "MAZE MILON", + "nomCommune": "MAZE MILON" }, { - "codePostal": "29690", - "codeCommune": "29007", - "libelleAcheminement": "BERRIEN", - "nomCommune": "BERRIEN" + "codePostal": "58450", + "codeCommune": "58193", + "libelleAcheminement": "NEUVY SUR LOIRE", + "nomCommune": "NEUVY SUR LOIRE" }, { - "codePostal": "24150", - "codeCommune": "24023", - "libelleAcheminement": "BANEUIL", - "nomCommune": "BANEUIL" + "codePostal": "01250", + "codeCommune": "01254", + "libelleAcheminement": "MONTAGNAT", + "nomCommune": "MONTAGNAT" }, { - "codePostal": "38520", - "codeCommune": "38286", - "libelleAcheminement": "OULLES", - "nomCommune": "OULLES" + "codePostal": "57730", + "codeCommune": "57690", + "libelleAcheminement": "VALMONT", + "nomCommune": "VALMONT" }, { - "codePostal": "51300", - "codeCommune": "51649", - "libelleAcheminement": "VITRY LE FRANCOIS", - "nomCommune": "VITRY LE FRANCOIS" + "codePostal": "46500", + "codeCommune": "46132", + "libelleAcheminement": "ISSENDOLUS", + "nomCommune": "ISSENDOLUS" }, { - "codePostal": "29400", - "codeCommune": "29010", - "libelleAcheminement": "BODILIS", - "nomCommune": "BODILIS" + "codePostal": "49280", + "codeCommune": "49195", + "libelleAcheminement": "MAZIERES EN MAUGES", + "nomCommune": "MAZIERES EN MAUGES" }, { - "codePostal": "24330", - "codeCommune": "24026", - "libelleAcheminement": "BASSILLAC ET AUBEROCHE", - "nomCommune": "BASSILLAC ET AUBEROCHE" + "codePostal": "58320", + "codeCommune": "58207", + "libelleAcheminement": "PARIGNY LES VAUX", + "nomCommune": "PARIGNY LES VAUX" }, { - "codePostal": "38114", - "codeCommune": "38289", - "libelleAcheminement": "OZ", - "nomCommune": "OZ" + "codePostal": "01120", + "codeCommune": "01262", + "libelleAcheminement": "MONTLUEL", + "nomCommune": "MONTLUEL" }, { - "codePostal": "51150", - "codeCommune": "51656", - "libelleAcheminement": "VRAUX", - "nomCommune": "VRAUX" + "codePostal": "57070", + "codeCommune": "57694", + "libelleAcheminement": "VANY", + "nomCommune": "VANY" }, { - "codePostal": "29650", - "codeCommune": "29014", - "libelleAcheminement": "BOTSORHEL", - "nomCommune": "BOTSORHEL" + "codePostal": "46320", + "codeCommune": "46133", + "libelleAcheminement": "ISSEPTS", + "nomCommune": "ISSEPTS" }, { - "codePostal": "24330", - "codeCommune": "24026", - "libelleAcheminement": "BASSILLAC ET AUBEROCHE", - "nomCommune": "BASSILLAC ET AUBEROCHE" + "codePostal": "49770", + "codeCommune": "49200", + "libelleAcheminement": "LONGUENEE EN ANJOU", + "nomCommune": "LONGUENEE EN ANJOU" }, { - "codePostal": "38460", - "codeCommune": "38294", - "libelleAcheminement": "PANOSSAS", - "nomCommune": "PANOSSAS" + "codePostal": "58220", + "codeCommune": "58209", + "libelleAcheminement": "PERROY", + "nomCommune": "PERROY" }, { - "codePostal": "51110", - "codeCommune": "51660", - "libelleAcheminement": "WARMERIVILLE", - "nomCommune": "WARMERIVILLE" + "codePostal": "01340", + "codeCommune": "01266", + "libelleAcheminement": "MONTREVEL EN BRESSE", + "nomCommune": "MONTREVEL EN BRESSE" }, { - "codePostal": "29810", - "codeCommune": "29017", - "libelleAcheminement": "BRELES", - "nomCommune": "BRELES" + "codePostal": "57220", + "codeCommune": "57695", + "libelleAcheminement": "VARIZE VAUDONCOURT", + "nomCommune": "VARIZE VAUDONCOURT" }, { - "codePostal": "24440", - "codeCommune": "24028", - "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", - "nomCommune": "BEAUMONTOIS EN PERIGORD" + "codePostal": "46230", + "codeCommune": "46140", + "libelleAcheminement": "LABURGADE", + "nomCommune": "LABURGADE" }, { - "codePostal": "38510", - "codeCommune": "38297", - "libelleAcheminement": "ARANDON PASSINS", - "nomCommune": "ARANDON PASSINS" + "codePostal": "49430", + "codeCommune": "49209", + "libelleAcheminement": "MONTIGNE LES RAIRIES", + "nomCommune": "MONTIGNE LES RAIRIES" }, { - "codePostal": "52340", - "codeCommune": "52001", - "libelleAcheminement": "AGEVILLE", - "nomCommune": "AGEVILLE" + "codePostal": "58200", + "codeCommune": "58213", + "libelleAcheminement": "POUGNY", + "nomCommune": "POUGNY" }, { - "codePostal": "29150", - "codeCommune": "29025", - "libelleAcheminement": "CAST", - "nomCommune": "CAST" + "codePostal": "01460", + "codeCommune": "01267", + "libelleAcheminement": "NURIEUX VOLOGNAT", + "nomCommune": "NURIEUX VOLOGNAT" }, { - "codePostal": "24400", - "codeCommune": "24032", - "libelleAcheminement": "BEAURONNE", - "nomCommune": "BEAURONNE" + "codePostal": "57880", + "codeCommune": "57696", + "libelleAcheminement": "VARSBERG", + "nomCommune": "VARSBERG" }, { - "codePostal": "38930", - "codeCommune": "38301", - "libelleAcheminement": "LE PERCY", - "nomCommune": "PERCY" + "codePostal": "46220", + "codeCommune": "46147", + "libelleAcheminement": "LAGARDELLE", + "nomCommune": "LAGARDELLE" }, { - "codePostal": "52400", - "codeCommune": "52002", - "libelleAcheminement": "AIGREMONT", - "nomCommune": "AIGREMONT" + "codePostal": "49310", + "codeCommune": "49211", + "libelleAcheminement": "MONTILLIERS", + "nomCommune": "MONTILLIERS" }, { - "codePostal": "29270", - "codeCommune": "29029", - "libelleAcheminement": "CLEDEN POHER", - "nomCommune": "CLEDEN POHER" + "codePostal": "58400", + "codeCommune": "58220", + "libelleAcheminement": "RAVEAU", + "nomCommune": "RAVEAU" }, { - "codePostal": "24540", - "codeCommune": "24043", - "libelleAcheminement": "BIRON", - "nomCommune": "BIRON" + "codePostal": "01460", + "codeCommune": "01269", + "libelleAcheminement": "NANTUA", + "nomCommune": "NANTUA" }, { - "codePostal": "38570", - "codeCommune": "38303", - "libelleAcheminement": "LA PIERRE", - "nomCommune": "LA PIERRE" + "codePostal": "57220", + "codeCommune": "57705", + "libelleAcheminement": "VELVING", + "nomCommune": "VELVING" }, { - "codePostal": "52700", - "codeCommune": "52003", - "libelleAcheminement": "AILLIANVILLE", - "nomCommune": "AILLIANVILLE" + "codePostal": "46350", + "codeCommune": "46152", + "libelleAcheminement": "LAMOTHE FENELON", + "nomCommune": "LAMOTHE FENELON" }, { - "codePostal": "29233", - "codeCommune": "29030", - "libelleAcheminement": "CLEDER", - "nomCommune": "CLEDER" + "codePostal": "49140", + "codeCommune": "49216", + "libelleAcheminement": "MONTREUIL SUR LOIR", + "nomCommune": "MONTREUIL SUR LOIR" }, { - "codePostal": "24750", - "codeCommune": "24053", - "libelleAcheminement": "BOULAZAC ISLE MANOIRE", - "nomCommune": "BOULAZAC ISLE MANOIRE" + "codePostal": "58500", + "codeCommune": "58222", + "libelleAcheminement": "RIX", + "nomCommune": "RIX" }, { - "codePostal": "38680", - "codeCommune": "38319", - "libelleAcheminement": "PONT EN ROYANS", - "nomCommune": "PONT EN ROYANS" + "codePostal": "01130", + "codeCommune": "01274", + "libelleAcheminement": "LES NEYROLLES", + "nomCommune": "LES NEYROLLES" }, { - "codePostal": "52500", - "codeCommune": "52013", - "libelleAcheminement": "ANROSEY", - "nomCommune": "ANROSEY" + "codePostal": "57370", + "codeCommune": "57709", + "libelleAcheminement": "VESCHEIM", + "nomCommune": "VESCHEIM" }, { - "codePostal": "29870", - "codeCommune": "29035", - "libelleAcheminement": "COAT MEAL", - "nomCommune": "COAT MEAL" + "codePostal": "46090", + "codeCommune": "46156", + "libelleAcheminement": "BELLEFONT LA RAUZE", + "nomCommune": "BELLEFONT LA RAUZE" }, { - "codePostal": "24400", - "codeCommune": "24059", - "libelleAcheminement": "BOURGNAC", - "nomCommune": "BOURGNAC" + "codePostal": "49110", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "38270", - "codeCommune": "38324", - "libelleAcheminement": "PRIMARETTE", - "nomCommune": "PRIMARETTE" + "codePostal": "58110", + "codeCommune": "58223", + "libelleAcheminement": "ROUY", + "nomCommune": "ROUY" }, { - "codePostal": "52210", - "codeCommune": "52022", - "libelleAcheminement": "AUBEPIERRE SUR AUBE", - "nomCommune": "AUBEPIERRE SUR AUBE" + "codePostal": "01100", + "codeCommune": "01283", + "libelleAcheminement": "OYONNAX", + "nomCommune": "OYONNAX" }, { - "codePostal": "29530", - "codeCommune": "29036", - "libelleAcheminement": "COLLOREC", - "nomCommune": "COLLOREC" + "codePostal": "57690", + "codeCommune": "57714", + "libelleAcheminement": "HAUTE VIGNEULLES", + "nomCommune": "HAUTE VIGNEULLES" }, { - "codePostal": "24310", - "codeCommune": "24064", - "libelleAcheminement": "BRANTOME EN PERIGORD", - "nomCommune": "BRANTOME EN PERIGORD" + "codePostal": "46160", + "codeCommune": "46157", + "libelleAcheminement": "LARROQUE TOIRAC", + "nomCommune": "LARROQUE TOIRAC" }, { - "codePostal": "38120", - "codeCommune": "38325", - "libelleAcheminement": "PROVEYSIEUX", - "nomCommune": "PROVEYSIEUX" + "codePostal": "49270", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "52300", - "codeCommune": "52029", - "libelleAcheminement": "AUTIGNY LE GRAND", - "nomCommune": "AUTIGNY LE GRAND" + "codePostal": "58470", + "codeCommune": "58225", + "libelleAcheminement": "SAINCAIZE MEAUCE", + "nomCommune": "SAINCAIZE MEAUCE" }, { - "codePostal": "29160", - "codeCommune": "29042", - "libelleAcheminement": "CROZON", - "nomCommune": "CROZON" + "codePostal": "01600", + "codeCommune": "01285", + "libelleAcheminement": "PARCIEUX", + "nomCommune": "PARCIEUX" }, { - "codePostal": "24460", - "codeCommune": "24064", - "libelleAcheminement": "BRANTOME EN PERIGORD", - "nomCommune": "BRANTOME EN PERIGORD" + "codePostal": "57220", + "codeCommune": "57730", + "libelleAcheminement": "VOLMERANGE LES BOULAY", + "nomCommune": "VOLMERANGE LES BOULAY" }, { - "codePostal": "38970", - "codeCommune": "38329", - "libelleAcheminement": "QUET EN BEAUMONT", - "nomCommune": "QUET EN BEAUMONT" + "codePostal": "46210", + "codeCommune": "46160", + "libelleAcheminement": "LATRONQUIERE", + "nomCommune": "LATRONQUIERE" }, { - "codePostal": "52300", - "codeCommune": "52030", - "libelleAcheminement": "AUTIGNY LE PETIT", - "nomCommune": "AUTIGNY LE PETIT" + "codePostal": "49730", + "codeCommune": "49219", + "libelleAcheminement": "MONTSOREAU", + "nomCommune": "MONTSOREAU" }, { - "codePostal": "29460", - "codeCommune": "29043", - "libelleAcheminement": "DAOULAS", - "nomCommune": "DAOULAS" + "codePostal": "58310", + "codeCommune": "58227", + "libelleAcheminement": "ST AMAND EN PUISAYE", + "nomCommune": "ST AMAND EN PUISAYE" }, { - "codePostal": "24530", - "codeCommune": "24064", - "libelleAcheminement": "BRANTOME EN PERIGORD", - "nomCommune": "BRANTOME EN PERIGORD" + "codePostal": "01300", + "codeCommune": "01310", + "libelleAcheminement": "PREMEYZEL", + "nomCommune": "PREMEYZEL" }, { - "codePostal": "38140", - "codeCommune": "38331", - "libelleAcheminement": "REAUMONT", - "nomCommune": "REAUMONT" + "codePostal": "57720", + "codeCommune": "57732", + "libelleAcheminement": "VOLMUNSTER", + "nomCommune": "VOLMUNSTER" }, { - "codePostal": "52330", - "codeCommune": "52031", - "libelleAcheminement": "AUTREVILLE SUR LA RENNE", - "nomCommune": "AUTREVILLE SUR LA RENNE" + "codePostal": "46130", + "codeCommune": "46163", + "libelleAcheminement": "LAVAL DE CERE", + "nomCommune": "LAVAL DE CERE" }, { - "codePostal": "29150", - "codeCommune": "29044", - "libelleAcheminement": "DINEAULT", - "nomCommune": "DINEAULT" + "codePostal": "49640", + "codeCommune": "49220", + "libelleAcheminement": "MORANNES SUR SARTHE DAUMERAY", + "nomCommune": "MORANNES SUR SARTHE DAUMERAY" }, { - "codePostal": "24260", - "codeCommune": "24067", - "libelleAcheminement": "LE BUGUE", - "nomCommune": "LE BUGUE" + "codePostal": "58150", + "codeCommune": "58228", + "libelleAcheminement": "ST ANDELAIN", + "nomCommune": "ST ANDELAIN" }, { - "codePostal": "38680", - "codeCommune": "38333", - "libelleAcheminement": "RENCUREL", - "nomCommune": "RENCUREL" + "codePostal": "01250", + "codeCommune": "01317", + "libelleAcheminement": "RAMASSE", + "nomCommune": "RAMASSE" }, { - "codePostal": "52140", - "codeCommune": "52033", - "libelleAcheminement": "AVRECOURT", - "nomCommune": "AVRECOURT" + "codePostal": "57200", + "codeCommune": "57745", + "libelleAcheminement": "WIESVILLER", + "nomCommune": "WIESVILLER" }, { - "codePostal": "29170", - "codeCommune": "29058", - "libelleAcheminement": "FOUESNANT", - "nomCommune": "FOUESNANT" + "codePostal": "46330", + "codeCommune": "46167", + "libelleAcheminement": "LENTILLAC DU CAUSSE", + "nomCommune": "LENTILLAC DU CAUSSE" }, { - "codePostal": "24350", - "codeCommune": "24069", - "libelleAcheminement": "BUSSAC", - "nomCommune": "BUSSAC" + "codePostal": "49610", + "codeCommune": "49223", + "libelleAcheminement": "MURS ERIGNE", + "nomCommune": "MURS ERIGNE" }, { - "codePostal": "38090", - "codeCommune": "38339", - "libelleAcheminement": "ROCHE", - "nomCommune": "ROCHE" + "codePostal": "58130", + "codeCommune": "58231", + "libelleAcheminement": "ST AUBIN LES FORGES", + "nomCommune": "ST AUBIN LES FORGES" }, { - "codePostal": "52330", - "codeCommune": "52053", - "libelleAcheminement": "BLAISY", - "nomCommune": "BLAISY" + "codePostal": "01750", + "codeCommune": "01320", + "libelleAcheminement": "REPLONGES", + "nomCommune": "REPLONGES" }, { - "codePostal": "29190", - "codeCommune": "29062", - "libelleAcheminement": "GOUEZEC", - "nomCommune": "GOUEZEC" + "codePostal": "57915", + "codeCommune": "57752", + "libelleAcheminement": "WOUSTVILLER", + "nomCommune": "WOUSTVILLER" }, { - "codePostal": "24360", - "codeCommune": "24070", - "libelleAcheminement": "BUSSEROLLES", - "nomCommune": "BUSSEROLLES" + "codePostal": "46300", + "codeCommune": "46169", + "libelleAcheminement": "LEOBARD", + "nomCommune": "LEOBARD" }, { - "codePostal": "38470", - "codeCommune": "38345", - "libelleAcheminement": "ROVON", - "nomCommune": "ROVON" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "52700", - "codeCommune": "52061", - "libelleAcheminement": "BOURDONS SUR ROGNON", - "nomCommune": "BOURDONS SUR ROGNON" + "codePostal": "58270", + "codeCommune": "58232", + "libelleAcheminement": "ST BENIN D AZY", + "nomCommune": "ST BENIN D AZY" }, { - "codePostal": "29770", - "codeCommune": "29063", - "libelleAcheminement": "GOULIEN", - "nomCommune": "GOULIEN" + "codePostal": "01510", + "codeCommune": "01329", + "libelleAcheminement": "ROSSILLON", + "nomCommune": "ROSSILLON" }, { - "codePostal": "24150", - "codeCommune": "24073", - "libelleAcheminement": "CALES", - "nomCommune": "CALES" + "codePostal": "57340", + "codeCommune": "57759", + "libelleAcheminement": "ZARBELING", + "nomCommune": "ZARBELING" }, { - "codePostal": "38190", - "codeCommune": "38350", - "libelleAcheminement": "STE AGNES", - "nomCommune": "STE AGNES" + "codePostal": "46150", + "codeCommune": "46171", + "libelleAcheminement": "LHERM", + "nomCommune": "LHERM" }, { - "codePostal": "52150", - "codeCommune": "52064", - "libelleAcheminement": "BOURMONT ENTRE MEUSE ET MOUZON", - "nomCommune": "BOURMONT ENTRE MEUSE ET MOUZON" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "29710", - "codeCommune": "29070", - "libelleAcheminement": "GUILER SUR GOYEN", - "nomCommune": "GUILER SUR GOYEN" + "codePostal": "58230", + "codeCommune": "58235", + "libelleAcheminement": "ST BRISSON", + "nomCommune": "ST BRISSON" }, { - "codePostal": "24370", - "codeCommune": "24074", - "libelleAcheminement": "CALVIAC EN PERIGORD", - "nomCommune": "CALVIAC EN PERIGORD" + "codePostal": "01380", + "codeCommune": "01332", + "libelleAcheminement": "ST ANDRE DE BAGE", + "nomCommune": "ST ANDRE DE BAGE" }, { - "codePostal": "38300", - "codeCommune": "38351", - "libelleAcheminement": "ST AGNIN SUR BION", - "nomCommune": "ST AGNIN SUR BION" + "codePostal": "57905", + "codeCommune": "57760", + "libelleAcheminement": "ZETTING", + "nomCommune": "ZETTING" }, { - "codePostal": "52150", - "codeCommune": "52064", - "libelleAcheminement": "BOURMONT ENTRE MEUSE ET MOUZON", - "nomCommune": "BOURMONT ENTRE MEUSE ET MOUZON" + "codePostal": "46170", + "codeCommune": "46172", + "libelleAcheminement": "LHOSPITALET", + "nomCommune": "LHOSPITALET" }, { - "codePostal": "29300", - "codeCommune": "29071", - "libelleAcheminement": "GUILLIGOMARC H", - "nomCommune": "GUILLIGOMARC H" + "codePostal": "49490", + "codeCommune": "49228", + "libelleAcheminement": "NOYANT VILLAGES", + "nomCommune": "NOYANT VILLAGES" }, { - "codePostal": "24540", - "codeCommune": "24080", - "libelleAcheminement": "CAPDROT", - "nomCommune": "CAPDROT" + "codePostal": "58220", + "codeCommune": "58236", + "libelleAcheminement": "STE COLOMBE DES BOIS", + "nomCommune": "STE COLOMBE DES BOIS" }, { - "codePostal": "38270", - "codeCommune": "38363", - "libelleAcheminement": "ST BARTHELEMY DE BEAUREPAIRE", - "nomCommune": "ST BARTHELEMY" + "codePostal": "01390", + "codeCommune": "01333", + "libelleAcheminement": "ST ANDRE DE CORCY", + "nomCommune": "ST ANDRE DE CORCY" }, { - "codePostal": "52110", - "codeCommune": "52066", - "libelleAcheminement": "BRACHAY", - "nomCommune": "BRACHAY" + "codePostal": "57890", + "codeCommune": "57765", + "libelleAcheminement": "DIESEN", + "nomCommune": "DIESEN" }, { - "codePostal": "29253", - "codeCommune": "29082", - "libelleAcheminement": "ILE DE BATZ", - "nomCommune": "ILE DE BATZ" + "codePostal": "46260", + "codeCommune": "46173", + "libelleAcheminement": "LIMOGNE EN QUERCY", + "nomCommune": "LIMOGNE EN QUERCY" }, { - "codePostal": "24120", - "codeCommune": "24085", - "libelleAcheminement": "LA CASSAGNE", - "nomCommune": "LA CASSAGNE" + "codePostal": "49730", + "codeCommune": "49235", + "libelleAcheminement": "PARNAY", + "nomCommune": "PARNAY" }, { - "codePostal": "38220", - "codeCommune": "38364", - "libelleAcheminement": "ST BARTHELEMY DE SECHILIENNE", - "nomCommune": "ST BARTHELEMY DE SECHILIENNE" + "codePostal": "58190", + "codeCommune": "58237", + "libelleAcheminement": "ST DIDIER", + "nomCommune": "ST DIDIER" }, { - "codePostal": "52200", - "codeCommune": "52070", - "libelleAcheminement": "BRENNES", - "nomCommune": "BRENNES" + "codePostal": "01960", + "codeCommune": "01336", + "libelleAcheminement": "ST ANDRE SUR VIEUX JONC", + "nomCommune": "ST ANDRE SUR VIEUX JONC" }, { - "codePostal": "29100", - "codeCommune": "29087", - "libelleAcheminement": "LE JUCH", - "nomCommune": "LE JUCH" + "codePostal": "58200", + "codeCommune": "58002", + "libelleAcheminement": "ALLIGNY COSNE", + "nomCommune": "ALLIGNY COSNE" }, { - "codePostal": "24250", - "codeCommune": "24086", - "libelleAcheminement": "CASTELNAUD LA CHAPELLE", - "nomCommune": "CASTELNAUD LA CHAPELLE" + "codePostal": "46350", + "codeCommune": "46178", + "libelleAcheminement": "LOUPIAC", + "nomCommune": "LOUPIAC" }, { - "codePostal": "38840", - "codeCommune": "38370", - "libelleAcheminement": "ST BONNET DE CHAVAGNE", - "nomCommune": "ST BONNET DE CHAVAGNE" + "codePostal": "49560", + "codeCommune": "49236", + "libelleAcheminement": "PASSAVANT SUR LAYON", + "nomCommune": "PASSAVANT SUR LAYON" }, { - "codePostal": "52000", - "codeCommune": "52072", - "libelleAcheminement": "BRETHENAY", - "nomCommune": "BRETHENAY" + "codePostal": "58210", + "codeCommune": "58242", + "libelleAcheminement": "ST GERMAIN DES BOIS", + "nomCommune": "ST GERMAIN DES BOIS" }, { - "codePostal": "29270", - "codeCommune": "29089", - "libelleAcheminement": "KERGLOFF", - "nomCommune": "KERGLOFF" + "codePostal": "01300", + "codeCommune": "01338", + "libelleAcheminement": "GROSLEE ST BENOIT", + "nomCommune": "GROSLEE ST BENOIT" }, { - "codePostal": "24220", - "codeCommune": "24087", - "libelleAcheminement": "CASTELS ET BEZENAC", - "nomCommune": "CASTELS ET BEZENAC" + "codePostal": "58500", + "codeCommune": "58011", + "libelleAcheminement": "ARMES", + "nomCommune": "ARMES" }, { - "codePostal": "38890", - "codeCommune": "38374", - "libelleAcheminement": "ST CHEF", - "nomCommune": "ST CHEF" + "codePostal": "46150", + "codeCommune": "46190", + "libelleAcheminement": "MECHMONT", + "nomCommune": "MECHMONT" }, { - "codePostal": "52130", - "codeCommune": "52079", - "libelleAcheminement": "BROUSSEVAL", - "nomCommune": "BROUSSEVAL" + "codePostal": "49110", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "29810", - "codeCommune": "29098", - "libelleAcheminement": "LAMPAUL PLOUARZEL", - "nomCommune": "LAMPAUL PLOUARZEL" + "codePostal": "58120", + "codeCommune": "58244", + "libelleAcheminement": "ST HILAIRE EN MORVAN", + "nomCommune": "ST HILAIRE EN MORVAN" }, { - "codePostal": "24650", - "codeCommune": "24102", - "libelleAcheminement": "CHANCELADE", - "nomCommune": "CHANCELADE" + "codePostal": "01000", + "codeCommune": "01344", + "libelleAcheminement": "ST DENIS LES BOURG", + "nomCommune": "ST DENIS LES BOURG" }, { - "codePostal": "38960", - "codeCommune": "38383", - "libelleAcheminement": "ST ETIENNE DE CROSSEY", - "nomCommune": "ST ETIENNE DE CROSSEY" + "codePostal": "58420", + "codeCommune": "58026", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "52210", - "codeCommune": "52082", - "libelleAcheminement": "BUGNIERES", - "nomCommune": "BUGNIERES" + "codePostal": "46200", + "codeCommune": "46192", + "libelleAcheminement": "MEYRONNE", + "nomCommune": "MEYRONNE" }, { - "codePostal": "29830", - "codeCommune": "29099", - "libelleAcheminement": "LAMPAUL PLOUDALMEZEAU", - "nomCommune": "LAMPAUL PLOUDALMEZEAU" + "codePostal": "49290", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "24530", - "codeCommune": "24107", - "libelleAcheminement": "LA CHAPELLE FAUCHER", - "nomCommune": "LA CHAPELLE FAUCHER" + "codePostal": "58130", + "codeCommune": "58254", + "libelleAcheminement": "ST MARTIN D HEUILLE", + "nomCommune": "ST MARTIN D HEUILLE" }, { - "codePostal": "38790", - "codeCommune": "38389", - "libelleAcheminement": "ST GEORGES D ESPERANCHE", - "nomCommune": "ST GEORGES D ESPERANCHE" + "codePostal": "01500", + "codeCommune": "01345", + "libelleAcheminement": "ST DENIS EN BUGEY", + "nomCommune": "ST DENIS EN BUGEY" }, { - "codePostal": "52000", - "codeCommune": "52087", - "libelleAcheminement": "BUXIERES LES VILLIERS", - "nomCommune": "BUXIERES LES VILLIERS" + "codePostal": "58700", + "codeCommune": "58027", + "libelleAcheminement": "BEAUMONT LA FERRIERE", + "nomCommune": "BEAUMONT LA FERRIERE" }, { - "codePostal": "29840", - "codeCommune": "29112", - "libelleAcheminement": "LANILDUT", - "nomCommune": "LANILDUT" + "codePostal": "46090", + "codeCommune": "46197", + "libelleAcheminement": "LE MONTAT", + "nomCommune": "LE MONTAT" }, { - "codePostal": "24120", - "codeCommune": "24117", - "libelleAcheminement": "LES COTEAUX PERIGOURDINS", - "nomCommune": "LES COTEAUX PERIGOURDINS" + "codePostal": "49620", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "38470", - "codeCommune": "38390", - "libelleAcheminement": "ST GERVAIS", - "nomCommune": "ST GERVAIS" + "codePostal": "58490", + "codeCommune": "58260", + "libelleAcheminement": "ST PARIZE LE CHATEL", + "nomCommune": "ST PARIZE LE CHATEL" }, { - "codePostal": "52220", - "codeCommune": "52088", - "libelleAcheminement": "CEFFONDS", - "nomCommune": "CEFFONDS" + "codePostal": "01630", + "codeCommune": "01354", + "libelleAcheminement": "ST GENIS POUILLY", + "nomCommune": "ST GENIS POUILLY" }, { - "codePostal": "29620", - "codeCommune": "29113", - "libelleAcheminement": "LANMEUR", - "nomCommune": "LANMEUR" + "codePostal": "58210", + "codeCommune": "58029", + "libelleAcheminement": "BEUVRON", + "nomCommune": "BEUVRON" }, { - "codePostal": "24320", - "codeCommune": "24119", - "libelleAcheminement": "CHERVAL", - "nomCommune": "CHERVAL" + "codePostal": "46160", + "codeCommune": "46198", + "libelleAcheminement": "MONTBRUN", + "nomCommune": "MONTBRUN" }, { - "codePostal": "38134", - "codeCommune": "38407", - "libelleAcheminement": "LA SURE EN CHARTREUSE", - "nomCommune": "LA SURE EN CHARTREUSE" + "codePostal": "49420", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "52110", - "codeCommune": "52110", - "libelleAcheminement": "CHARMES LA GRANDE", - "nomCommune": "CHARMES LA GRANDE" + "codePostal": "58110", + "codeCommune": "58262", + "libelleAcheminement": "ST PEREUSE", + "nomCommune": "ST PEREUSE" }, { - "codePostal": "29400", - "codeCommune": "29128", - "libelleAcheminement": "LOC EGUINER", - "nomCommune": "LOC EGUINER" + "codePostal": "01130", + "codeCommune": "01357", + "libelleAcheminement": "ST GERMAIN DE JOUX", + "nomCommune": "ST GERMAIN DE JOUX" }, { - "codePostal": "24160", - "codeCommune": "24124", - "libelleAcheminement": "CLERMONT D EXCIDEUIL", - "nomCommune": "CLERMONT D EXCIDEUIL" + "codePostal": "58420", + "codeCommune": "58041", + "libelleAcheminement": "BRINON SUR BEUVRON", + "nomCommune": "BRINON SUR BEUVRON" }, { - "codePostal": "38340", - "codeCommune": "38407", - "libelleAcheminement": "LA SURE EN CHARTREUSE", - "nomCommune": "LA SURE EN CHARTREUSE" + "codePostal": "46700", + "codeCommune": "46199", + "libelleAcheminement": "MONTCABRIER", + "nomCommune": "MONTCABRIER" }, { - "codePostal": "52360", - "codeCommune": "52116", - "libelleAcheminement": "CHATENAY VAUDIN", - "nomCommune": "CHATENAY VAUDIN" + "codePostal": "49520", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "29400", - "codeCommune": "29131", - "libelleAcheminement": "LOCMELAR", - "nomCommune": "LOCMELAR" + "codePostal": "58210", + "codeCommune": "58263", + "libelleAcheminement": "ST PIERRE DU MONT", + "nomCommune": "ST PIERRE DU MONT" }, { - "codePostal": "24600", - "codeCommune": "24128", - "libelleAcheminement": "COMBERANCHE ET EPELUCHE", - "nomCommune": "COMBERANCHE ET EPELUCHE" + "codePostal": "01800", + "codeCommune": "01361", + "libelleAcheminement": "ST JEAN DE NIOST", + "nomCommune": "ST JEAN DE NIOST" }, { - "codePostal": "38680", - "codeCommune": "38409", - "libelleAcheminement": "ST JUST DE CLAIX", - "nomCommune": "ST JUST DE CLAIX" + "codePostal": "58340", + "codeCommune": "58046", + "libelleAcheminement": "CERCY LA TOUR", + "nomCommune": "CERCY LA TOUR" }, { - "codePostal": "52140", - "codeCommune": "52120", - "libelleAcheminement": "CHAUFFOURT", - "nomCommune": "CHAUFFOURT" + "codePostal": "46800", + "codeCommune": "46201", + "libelleAcheminement": "MONTCUQ EN QUERCY BLANC", + "nomCommune": "MONTCUQ EN QUERCY BLANC" }, { - "codePostal": "29241", - "codeCommune": "29133", - "libelleAcheminement": "LOCQUIREC", - "nomCommune": "LOCQUIREC" + "codePostal": "49520", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "24570", - "codeCommune": "24130", - "libelleAcheminement": "CONDAT SUR VEZERE", - "nomCommune": "CONDAT SUR VEZERE" + "codePostal": "58330", + "codeCommune": "58267", + "libelleAcheminement": "ST SAULGE", + "nomCommune": "ST SAULGE" }, { - "codePostal": "38930", - "codeCommune": "38419", - "libelleAcheminement": "ST MARTIN DE CLELLES", - "nomCommune": "ST MARTIN DE CLELLES" + "codePostal": "01640", + "codeCommune": "01363", + "libelleAcheminement": "ST JEAN LE VIEUX", + "nomCommune": "ST JEAN LE VIEUX" }, { - "codePostal": "52170", - "codeCommune": "52123", - "libelleAcheminement": "CHEVILLON", - "nomCommune": "CHEVILLON" + "codePostal": "58000", + "codeCommune": "58051", + "libelleAcheminement": "CHALLUY", + "nomCommune": "CHALLUY" }, { - "codePostal": "29310", - "codeCommune": "29136", - "libelleAcheminement": "LOCUNOLE", - "nomCommune": "LOCUNOLE" + "codePostal": "46360", + "codeCommune": "46210", + "libelleAcheminement": "NADILLAC", + "nomCommune": "NADILLAC" }, { - "codePostal": "24100", - "codeCommune": "24145", - "libelleAcheminement": "CREYSSE", - "nomCommune": "CREYSSE" + "codePostal": "49320", + "codeCommune": "49261", + "libelleAcheminement": "GENNES VAL DE LOIRE", + "nomCommune": "GENNES VAL DE LOIRE" }, { - "codePostal": "38480", - "codeCommune": "38420", - "libelleAcheminement": "ST MARTIN DE VAULSERRE", - "nomCommune": "ST MARTIN DE VAULSERRE" + "codePostal": "58190", + "codeCommune": "58271", + "libelleAcheminement": "SAIZY", + "nomCommune": "SAIZY" }, { - "codePostal": "52370", - "codeCommune": "52130", - "libelleAcheminement": "CIRFONTAINES EN AZOIS", - "nomCommune": "CIRFONTAINES EN AZOIS" + "codePostal": "01540", + "codeCommune": "01368", + "libelleAcheminement": "ST JULIEN SUR VEYLE", + "nomCommune": "ST JULIEN SUR VEYLE" }, { - "codePostal": "29530", - "codeCommune": "29141", - "libelleAcheminement": "LOQUEFFRET", - "nomCommune": "LOQUEFFRET" + "codePostal": "58240", + "codeCommune": "58057", + "libelleAcheminement": "CHANTENAY ST IMBERT", + "nomCommune": "CHANTENAY ST IMBERT" }, { - "codePostal": "24240", - "codeCommune": "24148", - "libelleAcheminement": "CUNEGES", - "nomCommune": "CUNEGES" + "codePostal": "46200", + "codeCommune": "46220", + "libelleAcheminement": "PINSAC", + "nomCommune": "PINSAC" }, { - "codePostal": "38950", - "codeCommune": "38423", - "libelleAcheminement": "ST MARTIN LE VINOUX", - "nomCommune": "ST MARTIN LE VINOUX" + "codePostal": "49350", + "codeCommune": "49261", + "libelleAcheminement": "GENNES VAL DE LOIRE", + "nomCommune": "GENNES VAL DE LOIRE" }, { - "codePostal": "52200", - "codeCommune": "52147", - "libelleAcheminement": "COURCELLES EN MONTAGNE", - "nomCommune": "COURCELLES EN MONTAGNE" + "codePostal": "58160", + "codeCommune": "58273", + "libelleAcheminement": "SAUVIGNY LES BOIS", + "nomCommune": "SAUVIGNY LES BOIS" }, { - "codePostal": "29800", - "codeCommune": "29144", - "libelleAcheminement": "LA MARTYRE", - "nomCommune": "LA MARTYRE" + "codePostal": "01700", + "codeCommune": "01376", + "libelleAcheminement": "ST MAURICE DE BEYNOST", + "nomCommune": "ST MAURICE DE BEYNOST" }, { - "codePostal": "24170", - "codeCommune": "24151", - "libelleAcheminement": "DOISSAT", - "nomCommune": "DOISSAT" + "codePostal": "58400", + "codeCommune": "58059", + "libelleAcheminement": "LA CHARITE SUR LOIRE", + "nomCommune": "LA CHARITE SUR LOIRE" }, { - "codePostal": "38930", - "codeCommune": "38424", - "libelleAcheminement": "ST MAURICE EN TRIEVES", - "nomCommune": "ST MAURICE EN TRIEVES" + "codePostal": "46090", + "codeCommune": "46224", + "libelleAcheminement": "PRADINES", + "nomCommune": "PRADINES" }, { - "codePostal": "52240", - "codeCommune": "52159", - "libelleAcheminement": "CUVES", - "nomCommune": "CUVES" + "codePostal": "49130", + "codeCommune": "49278", + "libelleAcheminement": "STE GEMMES SUR LOIRE", + "nomCommune": "STE GEMMES SUR LOIRE" }, { - "codePostal": "29350", - "codeCommune": "29150", - "libelleAcheminement": "MOELAN SUR MER", - "nomCommune": "MOELAN SUR MER" + "codePostal": "58170", + "codeCommune": "58274", + "libelleAcheminement": "SAVIGNY POIL FOL", + "nomCommune": "SAVIGNY POIL FOL" }, { - "codePostal": "24350", - "codeCommune": "24154", - "libelleAcheminement": "DOUCHAPT", - "nomCommune": "DOUCHAPT" + "codePostal": "01320", + "codeCommune": "01381", + "libelleAcheminement": "ST NIZIER LE DESERT", + "nomCommune": "ST NIZIER LE DESERT" }, { - "codePostal": "38190", - "codeCommune": "38430", - "libelleAcheminement": "ST MURY MONTEYMOND", - "nomCommune": "ST MURY MONTEYMOND" + "codePostal": "58300", + "codeCommune": "58060", + "libelleAcheminement": "CHARRIN", + "nomCommune": "CHARRIN" }, { - "codePostal": "52140", - "codeCommune": "52162", - "libelleAcheminement": "DAMMARTIN SUR MEUSE", - "nomCommune": "DAMMARTIN SUR MEUSE" + "codePostal": "46220", + "codeCommune": "46225", + "libelleAcheminement": "PRAYSSAC", + "nomCommune": "PRAYSSAC" }, { - "codePostal": "29600", - "codeCommune": "29151", - "libelleAcheminement": "MORLAIX", - "nomCommune": "MORLAIX" + "codePostal": "49190", + "codeCommune": "49292", + "libelleAcheminement": "VAL DU LAYON", + "nomCommune": "VAL DU LAYON" }, { - "codePostal": "24330", - "codeCommune": "24156", - "libelleAcheminement": "LA DOUZE", - "nomCommune": "LA DOUZE" + "codePostal": "58290", + "codeCommune": "58277", + "libelleAcheminement": "SERMAGES", + "nomCommune": "SERMAGES" }, { - "codePostal": "38760", - "codeCommune": "38436", - "libelleAcheminement": "ST PAUL DE VARCES", - "nomCommune": "ST PAUL DE VARCES" + "codePostal": "01150", + "codeCommune": "01390", + "libelleAcheminement": "ST VULBAS", + "nomCommune": "ST VULBAS" }, { - "codePostal": "52700", - "codeCommune": "52167", - "libelleAcheminement": "DARMANNES", - "nomCommune": "DARMANNES" + "codePostal": "58270", + "codeCommune": "58078", + "libelleAcheminement": "CIZELY", + "nomCommune": "CIZELY" }, { - "codePostal": "29242", - "codeCommune": "29155", - "libelleAcheminement": "ILE D OUESSANT", - "nomCommune": "OUESSANT" + "codePostal": "46320", + "codeCommune": "46237", + "libelleAcheminement": "REYREVIGNES", + "nomCommune": "REYREVIGNES" }, { - "codePostal": "24410", - "codeCommune": "24159", - "libelleAcheminement": "ECHOURGNAC", - "nomCommune": "ECHOURGNAC" + "codePostal": "49170", + "codeCommune": "49298", + "libelleAcheminement": "ST LEGER DE LINIERES", + "nomCommune": "ST LEGER DE LINIERES" }, { - "codePostal": "38380", - "codeCommune": "38446", - "libelleAcheminement": "ST PIERRE D ENTREMONT", - "nomCommune": "ST PIERRE D ENTREMONT" + "codePostal": "58300", + "codeCommune": "58280", + "libelleAcheminement": "SOUGY SUR LOIRE", + "nomCommune": "SOUGY SUR LOIRE" }, { - "codePostal": "52110", - "codeCommune": "52171", - "libelleAcheminement": "DOMMARTIN LE FRANC", - "nomCommune": "DOMMARTIN LE FRANC" + "codePostal": "01170", + "codeCommune": "01399", + "libelleAcheminement": "SEGNY", + "nomCommune": "SEGNY" }, { - "codePostal": "29760", - "codeCommune": "29158", - "libelleAcheminement": "PENMARCH", - "nomCommune": "PENMARCH" + "codePostal": "58800", + "codeCommune": "58080", + "libelleAcheminement": "LA COLLANCELLE", + "nomCommune": "LA COLLANCELLE" }, { - "codePostal": "24160", - "codeCommune": "24164", - "libelleAcheminement": "EXCIDEUIL", - "nomCommune": "EXCIDEUIL" + "codePostal": "46360", + "codeCommune": "46245", + "libelleAcheminement": "SABADEL LAUZES", + "nomCommune": "SABADEL LAUZES" }, { - "codePostal": "38710", - "codeCommune": "38456", - "libelleAcheminement": "CHATEL EN TRIEVES", - "nomCommune": "CHATEL EN TRIEVES" + "codePostal": "49450", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "52270", - "codeCommune": "52173", - "libelleAcheminement": "DOMREMY LANDEVILLE", - "nomCommune": "DOMREMY LANDEVILLE" + "codePostal": "58420", + "codeCommune": "58283", + "libelleAcheminement": "TACONNAY", + "nomCommune": "TACONNAY" }, { - "codePostal": "29860", - "codeCommune": "29160", - "libelleAcheminement": "PLABENNEC", - "nomCommune": "PLABENNEC" + "codePostal": "01450", + "codeCommune": "01404", + "libelleAcheminement": "SERRIERES SUR AIN", + "nomCommune": "SERRIERES SUR AIN" }, { - "codePostal": "24700", - "codeCommune": "24165", - "libelleAcheminement": "EYGURANDE ET GARDEDEUIL", - "nomCommune": "EYGURANDE ET GARDEDEUIL" + "codePostal": "58200", + "codeCommune": "58086", + "libelleAcheminement": "COSNE COURS SUR LOIRE", + "nomCommune": "COSNE COURS SUR LOIRE" }, { - "codePostal": "38870", - "codeCommune": "38457", - "libelleAcheminement": "ST SIMEON DE BRESSIEUX", - "nomCommune": "ST SIMEON DE BRESSIEUX" + "codePostal": "46310", + "codeCommune": "46253", + "libelleAcheminement": "ST CHAMARAND", + "nomCommune": "ST CHAMARAND" }, { - "codePostal": "52270", - "codeCommune": "52177", - "libelleAcheminement": "DOULAINCOURT SAUCOURT", - "nomCommune": "DOULAINCOURT SAUCOURT" + "codePostal": "49660", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "29190", - "codeCommune": "29162", - "libelleAcheminement": "PLEYBEN", - "nomCommune": "PLEYBEN" + "codePostal": "58110", + "codeCommune": "58285", + "libelleAcheminement": "TAMNAY EN BAZOIS", + "nomCommune": "TAMNAY EN BAZOIS" }, { - "codePostal": "24560", - "codeCommune": "24168", - "libelleAcheminement": "PLAISANCE", - "nomCommune": "PLAISANCE" + "codePostal": "01560", + "codeCommune": "01406", + "libelleAcheminement": "SERVIGNAT", + "nomCommune": "SERVIGNAT" }, { - "codePostal": "38660", - "codeCommune": "38466", - "libelleAcheminement": "ST VINCENT DE MERCUZE", - "nomCommune": "ST VINCENT DE MERCUZE" + "codePostal": "58330", + "codeCommune": "58092", + "libelleAcheminement": "CRUX LA VILLE", + "nomCommune": "CRUX LA VILLE" }, { - "codePostal": "52230", - "codeCommune": "52181", - "libelleAcheminement": "ECHENAY", - "nomCommune": "ECHENAY" + "codePostal": "46120", + "codeCommune": "46260", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "29180", - "codeCommune": "29169", - "libelleAcheminement": "PLOGONNEC", - "nomCommune": "PLOGONNEC" + "codePostal": "49630", + "codeCommune": "49307", + "libelleAcheminement": "LOIRE AUTHION", + "nomCommune": "LOIRE AUTHION" }, { - "codePostal": "24560", - "codeCommune": "24168", - "libelleAcheminement": "PLAISANCE", - "nomCommune": "PLAISANCE" + "codePostal": "58250", + "codeCommune": "58289", + "libelleAcheminement": "TERNANT", + "nomCommune": "TERNANT" }, { - "codePostal": "38890", - "codeCommune": "38467", - "libelleAcheminement": "SALAGNON", - "nomCommune": "SALAGNON" + "codePostal": "01120", + "codeCommune": "01418", + "libelleAcheminement": "THIL", + "nomCommune": "THIL" }, { - "codePostal": "52230", - "codeCommune": "52187", - "libelleAcheminement": "EPIZON", - "nomCommune": "EPIZON" + "codePostal": "58340", + "codeCommune": "58097", + "libelleAcheminement": "DIENNES AUBIGNY", + "nomCommune": "DIENNES AUBIGNY" }, { - "codePostal": "29120", - "codeCommune": "29171", - "libelleAcheminement": "PLOMEUR", - "nomCommune": "PLOMEUR" + "codePostal": "46800", + "codeCommune": "46262", + "libelleAcheminement": "LENDOU EN QUERCY", + "nomCommune": "LENDOU EN QUERCY" }, { - "codePostal": "24560", - "codeCommune": "24177", - "libelleAcheminement": "FAUX", - "nomCommune": "FAUX" + "codePostal": "49800", + "codeCommune": "49307", + "libelleAcheminement": "LOIRE AUTHION", + "nomCommune": "LOIRE AUTHION" }, { - "codePostal": "38290", - "codeCommune": "38475", - "libelleAcheminement": "SATOLAS ET BONCE", - "nomCommune": "SATOLAS ET BONCE" + "codePostal": "58110", + "codeCommune": "58292", + "libelleAcheminement": "TINTURY", + "nomCommune": "TINTURY" }, { - "codePostal": "52270", - "codeCommune": "52187", - "libelleAcheminement": "EPIZON", - "nomCommune": "EPIZON" + "codePostal": "01140", + "codeCommune": "01420", + "libelleAcheminement": "THOISSEY", + "nomCommune": "THOISSEY" }, { - "codePostal": "29830", - "codeCommune": "29178", - "libelleAcheminement": "PLOUDALMEZEAU", - "nomCommune": "PLOUDALMEZEAU" + "codePostal": "58530", + "codeCommune": "58103", + "libelleAcheminement": "DORNECY", + "nomCommune": "DORNECY" }, { - "codePostal": "24250", - "codeCommune": "24184", - "libelleAcheminement": "FLORIMONT GAUMIER", - "nomCommune": "FLORIMONT GAUMIER" + "codePostal": "46800", + "codeCommune": "46263", + "libelleAcheminement": "BARGUELONNE EN QUERCY", + "nomCommune": "BARGUELONNE EN QUERCY" }, { - "codePostal": "38290", - "codeCommune": "38475", - "libelleAcheminement": "SATOLAS ET BONCE", - "nomCommune": "SATOLAS ET BONCE" + "codePostal": "49123", + "codeCommune": "49321", + "libelleAcheminement": "ST SIGISMOND", + "nomCommune": "ST SIGISMOND" }, { - "codePostal": "52190", - "codeCommune": "52189", - "libelleAcheminement": "LE VAL D ESNOMS", - "nomCommune": "LE VAL D ESNOMS" + "codePostal": "58150", + "codeCommune": "58295", + "libelleAcheminement": "TRACY SUR LOIRE", + "nomCommune": "TRACY SUR LOIRE" }, { - "codePostal": "29800", - "codeCommune": "29181", - "libelleAcheminement": "PLOUEDERN", - "nomCommune": "PLOUEDERN" + "codePostal": "01230", + "codeCommune": "01421", + "libelleAcheminement": "TORCIEU", + "nomCommune": "TORCIEU" }, { - "codePostal": "24380", - "codeCommune": "24190", - "libelleAcheminement": "FOULEIX", - "nomCommune": "FOULEIX" + "codePostal": "58390", + "codeCommune": "58104", + "libelleAcheminement": "DORNES", + "nomCommune": "DORNES" }, { - "codePostal": "38290", - "codeCommune": "38475", - "libelleAcheminement": "SATOLAS ET BONCE", - "nomCommune": "SATOLAS ET BONCE" + "codePostal": "46400", + "codeCommune": "46273", + "libelleAcheminement": "ST LAURENT LES TOURS", + "nomCommune": "ST LAURENT LES TOURS" }, { - "codePostal": "52260", - "codeCommune": "52196", - "libelleAcheminement": "FAVEROLLES", - "nomCommune": "FAVEROLLES" + "codePostal": "49400", + "codeCommune": "49328", + "libelleAcheminement": "SAUMUR", + "nomCommune": "SAUMUR" }, { - "codePostal": "29620", - "codeCommune": "29182", - "libelleAcheminement": "PLOUEGAT GUERAND", - "nomCommune": "PLOUEGAT GUERAND" + "codePostal": "58260", + "codeCommune": "58297", + "libelleAcheminement": "TROIS VEVRES", + "nomCommune": "TROIS VEVRES" }, { - "codePostal": "24240", - "codeCommune": "24193", - "libelleAcheminement": "GAGEAC ET ROUILLAC", - "nomCommune": "GAGEAC ET ROUILLAC" + "codePostal": "01160", + "codeCommune": "01425", + "libelleAcheminement": "LA TRANCLIERE", + "nomCommune": "LA TRANCLIERE" }, { - "codePostal": "38460", - "codeCommune": "38494", - "libelleAcheminement": "SOLEYMIEU", - "nomCommune": "SOLEYMIEU" + "codePostal": "58160", + "codeCommune": "58105", + "libelleAcheminement": "DRUY PARIGNY", + "nomCommune": "DRUY PARIGNY" }, { - "codePostal": "52500", - "codeCommune": "52197", - "libelleAcheminement": "FAYL BILLOT", - "nomCommune": "FAYL BILLOT" + "codePostal": "46400", + "codeCommune": "46281", + "libelleAcheminement": "ST MEDARD DE PRESQUE", + "nomCommune": "ST MEDARD DE PRESQUE" }, { - "codePostal": "29400", - "codeCommune": "29193", - "libelleAcheminement": "PLOUGOURVEST", - "nomCommune": "PLOUGOURVEST" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "24130", - "codeCommune": "24197", - "libelleAcheminement": "GINESTET", - "nomCommune": "GINESTET" + "codePostal": "58640", + "codeCommune": "58303", + "libelleAcheminement": "VARENNES VAUZELLES", + "nomCommune": "VARENNES VAUZELLES" }, { - "codePostal": "38840", - "codeCommune": "38495", - "libelleAcheminement": "LA SONE", - "nomCommune": "LA SONE" + "codePostal": "01370", + "codeCommune": "01426", + "libelleAcheminement": "VAL REVERMONT", + "nomCommune": "VAL REVERMONT" }, { - "codePostal": "52110", - "codeCommune": "52201", - "libelleAcheminement": "FLAMMERECOURT", - "nomCommune": "FLAMMERECOURT" + "codePostal": "58110", + "codeCommune": "58107", + "libelleAcheminement": "DUN SUR GRANDRY", + "nomCommune": "DUN SUR GRANDRY" }, { - "codePostal": "29260", - "codeCommune": "29198", - "libelleAcheminement": "PLOUIDER", - "nomCommune": "PLOUIDER" + "codePostal": "46210", + "codeCommune": "46282", + "libelleAcheminement": "ST MEDARD NICOURBY", + "nomCommune": "ST MEDARD NICOURBY" }, { - "codePostal": "24560", - "codeCommune": "24212", - "libelleAcheminement": "ISSIGEAC", - "nomCommune": "ISSIGEAC" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "38350", - "codeCommune": "38499", - "libelleAcheminement": "SUSVILLE", - "nomCommune": "SUSVILLE" + "codePostal": "58140", + "codeCommune": "58305", + "libelleAcheminement": "VAUCLAIX", + "nomCommune": "VAUCLAIX" }, { - "codePostal": "52320", - "codeCommune": "52211", - "libelleAcheminement": "FRONCLES", - "nomCommune": "FRONCLES" + "codePostal": "01660", + "codeCommune": "01429", + "libelleAcheminement": "VANDEINS", + "nomCommune": "VANDEINS" }, { - "codePostal": "29650", - "codeCommune": "29199", - "libelleAcheminement": "PLOUIGNEAU", - "nomCommune": "PLOUIGNEAU" + "codePostal": "58270", + "codeCommune": "58113", + "libelleAcheminement": "FERTREVE", + "nomCommune": "FERTREVE" }, { - "codePostal": "24300", - "codeCommune": "24214", - "libelleAcheminement": "JAVERLHAC LA CHAPELLE ST ROBERT", - "nomCommune": "JAVERLHAC ET LA CHAPELLE ST ROBERT" + "codePostal": "46160", + "codeCommune": "46289", + "libelleAcheminement": "ST PIERRE TOIRAC", + "nomCommune": "ST PIERRE TOIRAC" }, { - "codePostal": "38460", - "codeCommune": "38515", - "libelleAcheminement": "TREPT", - "nomCommune": "TREPT" + "codePostal": "49520", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "52320", - "codeCommune": "52211", - "libelleAcheminement": "FRONCLES", - "nomCommune": "FRONCLES" + "codePostal": "58370", + "codeCommune": "58309", + "libelleAcheminement": "VILLAPOURCON", + "nomCommune": "VILLAPOURCON" }, { - "codePostal": "29410", - "codeCommune": "29202", - "libelleAcheminement": "PLOUNEOUR MENEZ", - "nomCommune": "PLOUNEOUR MENEZ" + "codePostal": "01270", + "codeCommune": "01432", + "libelleAcheminement": "VERJON", + "nomCommune": "VERJON" }, { - "codePostal": "24410", - "codeCommune": "24216", - "libelleAcheminement": "LA JEMAYE PONTEYRAUD", - "nomCommune": "LA JEMAYE PONTEYRAUD" + "codePostal": "58170", + "codeCommune": "58114", + "libelleAcheminement": "FLETY", + "nomCommune": "FLETY" }, { - "codePostal": "38350", - "codeCommune": "38521", - "libelleAcheminement": "LA VALETTE", - "nomCommune": "LA VALETTE" + "codePostal": "46700", + "codeCommune": "46307", + "libelleAcheminement": "SOTURAC", + "nomCommune": "SOTURAC" }, { - "codePostal": "52150", - "codeCommune": "52217", - "libelleAcheminement": "GERMAINVILLIERS", - "nomCommune": "GERMAINVILLIERS" + "codePostal": "49280", + "codeCommune": "49332", + "libelleAcheminement": "LA SEGUINIERE", + "nomCommune": "LA SEGUINIERE" }, { - "codePostal": "29720", - "codeCommune": "29214", - "libelleAcheminement": "PLOVAN", - "nomCommune": "PLOVAN" + "codePostal": "58210", + "codeCommune": "58310", + "libelleAcheminement": "VILLIERS LE SEC", + "nomCommune": "VILLIERS LE SEC" }, { - "codePostal": "24260", - "codeCommune": "24217", - "libelleAcheminement": "JOURNIAC", - "nomCommune": "JOURNIAC" + "codePostal": "01800", + "codeCommune": "01450", + "libelleAcheminement": "VILLIEU LOYES MOLLON", + "nomCommune": "VILLIEU LOYES MOLLON" }, { - "codePostal": "38740", - "codeCommune": "38522", - "libelleAcheminement": "VALJOUFFREY", - "nomCommune": "VALJOUFFREY" + "codePostal": "58190", + "codeCommune": "58116", + "libelleAcheminement": "FLEZ CUZY", + "nomCommune": "FLEZ CUZY" }, { - "codePostal": "52230", - "codeCommune": "52219", - "libelleAcheminement": "GERMISAY", - "nomCommune": "GERMISAY" + "codePostal": "46300", + "codeCommune": "46308", + "libelleAcheminement": "SOUCIRAC", + "nomCommune": "SOUCIRAC" }, { - "codePostal": "29790", - "codeCommune": "29218", - "libelleAcheminement": "PONT CROIX", - "nomCommune": "PONT CROIX" + "codePostal": "49280", + "codeCommune": "49343", + "libelleAcheminement": "LA TESSOUALLE", + "nomCommune": "LA TESSOUALLE" }, { - "codePostal": "24230", - "codeCommune": "24226", - "libelleAcheminement": "LAMOTHE MONTRAVEL", - "nomCommune": "LAMOTHE MONTRAVEL" + "codePostal": "59251", + "codeCommune": "59005", + "libelleAcheminement": "ALLENNES LES MARAIS", + "nomCommune": "ALLENNES LES MARAIS" }, { - "codePostal": "38390", - "codeCommune": "38539", - "libelleAcheminement": "VERTRIEU", - "nomCommune": "VERTRIEU" + "codePostal": "01350", + "codeCommune": "01456", + "libelleAcheminement": "VONGNES", + "nomCommune": "VONGNES" }, { - "codePostal": "52600", - "codeCommune": "52228", - "libelleAcheminement": "GRANDCHAMP", - "nomCommune": "GRANDCHAMP" + "codePostal": "58600", + "codeCommune": "58117", + "libelleAcheminement": "FOURCHAMBAULT", + "nomCommune": "FOURCHAMBAULT" }, { - "codePostal": "29310", - "codeCommune": "29230", - "libelleAcheminement": "QUERRIEN", - "nomCommune": "QUERRIEN" + "codePostal": "46200", + "codeCommune": "46309", + "libelleAcheminement": "SOUILLAC", + "nomCommune": "SOUILLAC" }, { - "codePostal": "24520", - "codeCommune": "24242", - "libelleAcheminement": "LIORAC SUR LOUYRE", - "nomCommune": "LIORAC SUR LOUYRE" + "codePostal": "49380", + "codeCommune": "49345", + "libelleAcheminement": "BELLEVIGNE EN LAYON", + "nomCommune": "BELLEVIGNE EN LAYON" }, { - "codePostal": "38190", - "codeCommune": "38547", - "libelleAcheminement": "VILLARD BONNOT", - "nomCommune": "VILLARD BONNOT" + "codePostal": "59493", + "codeCommune": "59009", + "libelleAcheminement": "VILLENEUVE D ASCQ", + "nomCommune": "VILLENEUVE D ASCQ" }, { - "codePostal": "52200", - "codeCommune": "52246", - "libelleAcheminement": "HUMES JORQUENAY", - "nomCommune": "HUMES JORQUENAY" + "codePostal": "02200", + "codeCommune": "02003", + "libelleAcheminement": "ACY", + "nomCommune": "ACY" }, { - "codePostal": "29000", - "codeCommune": "29232", - "libelleAcheminement": "QUIMPER", - "nomCommune": "QUIMPER" + "codePostal": "58140", + "codeCommune": "58120", + "libelleAcheminement": "GACOGNE", + "nomCommune": "GACOGNE" }, { - "codePostal": "24110", - "codeCommune": "24251", - "libelleAcheminement": "MANZAC SUR VERN", - "nomCommune": "MANZAC SUR VERN" + "codePostal": "46110", + "codeCommune": "46312", + "libelleAcheminement": "STRENQUELS", + "nomCommune": "STRENQUELS" }, { - "codePostal": "38250", - "codeCommune": "38548", - "libelleAcheminement": "VILLARD DE LANS", - "nomCommune": "VILLARD DE LANS" + "codePostal": "49380", + "codeCommune": "49345", + "libelleAcheminement": "BELLEVIGNE EN LAYON", + "nomCommune": "BELLEVIGNE EN LAYON" }, { - "codePostal": "52200", - "codeCommune": "52246", - "libelleAcheminement": "HUMES JORQUENAY", - "nomCommune": "HUMES JORQUENAY" + "codePostal": "59650", + "codeCommune": "59009", + "libelleAcheminement": "VILLENEUVE D ASCQ", + "nomCommune": "VILLENEUVE D ASCQ" }, { - "codePostal": "29300", - "codeCommune": "29233", - "libelleAcheminement": "QUIMPERLE", - "nomCommune": "QUIMPERLE" + "codePostal": "02820", + "codeCommune": "02007", + "libelleAcheminement": "AIZELLES", + "nomCommune": "AIZELLES" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "58320", + "codeCommune": "58124", + "libelleAcheminement": "GERMIGNY SUR LOIRE", + "nomCommune": "GERMIGNY SUR LOIRE" }, { - "codePostal": "38470", - "codeCommune": "38559", - "libelleAcheminement": "VINAY", - "nomCommune": "VINAY" + "codePostal": "46150", + "codeCommune": "46316", + "libelleAcheminement": "THEDIRAC", + "nomCommune": "THEDIRAC" }, { - "codePostal": "52140", - "codeCommune": "52248", - "libelleAcheminement": "IS EN BASSIGNY", - "nomCommune": "IS EN BASSIGNY" + "codePostal": "49360", + "codeCommune": "49352", + "libelleAcheminement": "TOUTLEMONDE", + "nomCommune": "TOUTLEMONDE" }, { - "codePostal": "29480", - "codeCommune": "29235", - "libelleAcheminement": "LE RELECQ KERHUON", - "nomCommune": "LE RELECQ KERHUON" + "codePostal": "59400", + "codeCommune": "59010", + "libelleAcheminement": "ANNEUX", + "nomCommune": "ANNEUX" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "02240", + "codeCommune": "02009", + "libelleAcheminement": "ALAINCOURT", + "nomCommune": "ALAINCOURT" }, { - "codePostal": "38980", - "codeCommune": "38561", - "libelleAcheminement": "VIRIVILLE", - "nomCommune": "VIRIVILLE" + "codePostal": "58370", + "codeCommune": "58128", + "libelleAcheminement": "GLUX EN GLENNE", + "nomCommune": "GLUX EN GLENNE" }, { - "codePostal": "52000", - "codeCommune": "52251", - "libelleAcheminement": "JONCHERY", - "nomCommune": "JONCHERY" + "codePostal": "46090", + "codeCommune": "46322", + "libelleAcheminement": "TRESPOUX RASSIELS", + "nomCommune": "TRESPOUX RASSIELS" }, { - "codePostal": "29440", - "codeCommune": "29244", - "libelleAcheminement": "ST DERRIEN", - "nomCommune": "ST DERRIEN" + "codePostal": "49220", + "codeCommune": "49367", + "libelleAcheminement": "ERDRE EN ANJOU", + "nomCommune": "ERDRE EN ANJOU" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "59112", + "codeCommune": "59011", + "libelleAcheminement": "ANNOEULLIN", + "nomCommune": "ANNOEULLIN" }, { - "codePostal": "38500", - "codeCommune": "38563", - "libelleAcheminement": "VOIRON", - "nomCommune": "VOIRON" + "codePostal": "02200", + "codeCommune": "02012", + "libelleAcheminement": "AMBRIEF", + "nomCommune": "AMBRIEF" }, { - "codePostal": "52100", - "codeCommune": "52267", - "libelleAcheminement": "LANEUVILLE AU PONT", - "nomCommune": "LANEUVILLE AU PONT" + "codePostal": "58420", + "codeCommune": "58132", + "libelleAcheminement": "GUIPY", + "nomCommune": "GUIPY" }, { - "codePostal": "29170", - "codeCommune": "29247", - "libelleAcheminement": "ST EVARZEC", - "nomCommune": "ST EVARZEC" + "codePostal": "46260", + "codeCommune": "46328", + "libelleAcheminement": "VARAIRE", + "nomCommune": "VARAIRE" }, { - "codePostal": "24220", - "codeCommune": "24254", - "libelleAcheminement": "MARNAC", - "nomCommune": "MARNAC" + "codePostal": "49560", + "codeCommune": "49373", + "libelleAcheminement": "LYS HAUT LAYON", + "nomCommune": "LYS HAUT LAYON" }, { - "codePostal": "39110", - "codeCommune": "39006", - "libelleAcheminement": "AIGLEPIERRE", - "nomCommune": "AIGLEPIERRE" + "codePostal": "59151", + "codeCommune": "59015", + "libelleAcheminement": "ARLEUX", + "nomCommune": "ARLEUX" }, { - "codePostal": "52400", - "codeCommune": "52273", - "libelleAcheminement": "LARIVIERE ARNONCOURT", - "nomCommune": "LARIVIERE ARNONCOURT" + "codePostal": "02700", + "codeCommune": "02014", + "libelleAcheminement": "AMIGNY ROUY", + "nomCommune": "AMIGNY ROUY" }, { - "codePostal": "29120", - "codeCommune": "29252", - "libelleAcheminement": "ST JEAN TROLIMON", - "nomCommune": "ST JEAN TROLIMON" + "codePostal": "58240", + "codeCommune": "58138", + "libelleAcheminement": "LANGERON", + "nomCommune": "LANGERON" }, { - "codePostal": "24130", - "codeCommune": "24259", - "libelleAcheminement": "EYRAUD CREMPSE MAURENS", - "nomCommune": "EYRAUD CREMPSE MAURENS" + "codePostal": "46100", + "codeCommune": "46332", + "libelleAcheminement": "VIAZAC", + "nomCommune": "VIAZAC" }, { - "codePostal": "39110", - "codeCommune": "39009", - "libelleAcheminement": "ANDELOT EN MONTAGNE", - "nomCommune": "ANDELOT EN MONTAGNE" + "codePostal": "49140", + "codeCommune": "49377", + "libelleAcheminement": "RIVES DU LOIR EN ANJOU", + "nomCommune": "RIVES DU LOIR EN ANJOU" }, { - "codePostal": "52140", - "codeCommune": "52275", - "libelleAcheminement": "LAVERNOY", - "nomCommune": "LAVERNOY" + "codePostal": "59249", + "codeCommune": "59025", + "libelleAcheminement": "AUBERS", + "nomCommune": "AUBERS" }, { - "codePostal": "29190", - "codeCommune": "29261", - "libelleAcheminement": "ST RIVOAL", - "nomCommune": "ST RIVOAL" + "codePostal": "02800", + "codeCommune": "02017", + "libelleAcheminement": "ANGUILCOURT LE SART", + "nomCommune": "ANGUILCOURT LE SART" }, { - "codePostal": "24260", - "codeCommune": "24261", - "libelleAcheminement": "MAUZENS ET MIREMONT", - "nomCommune": "MAUZENS ET MIREMONT" + "codePostal": "58370", + "codeCommune": "58140", + "libelleAcheminement": "LAROCHEMILLAY", + "nomCommune": "LAROCHEMILLAY" }, { - "codePostal": "39600", - "codeCommune": "39013", - "libelleAcheminement": "ARBOIS", - "nomCommune": "ARBOIS" + "codePostal": "46260", + "codeCommune": "46333", + "libelleAcheminement": "VIDAILLAC", + "nomCommune": "VIDAILLAC" }, { - "codePostal": "52360", - "codeCommune": "52280", - "libelleAcheminement": "LECEY", - "nomCommune": "LECEY" + "codePostal": "50680", + "codeCommune": "50004", + "libelleAcheminement": "AIREL", + "nomCommune": "AIREL" }, { - "codePostal": "29400", - "codeCommune": "29264", - "libelleAcheminement": "ST SERVAIS", - "nomCommune": "ST SERVAIS" + "codePostal": "59265", + "codeCommune": "59026", + "libelleAcheminement": "AUBIGNY AU BAC", + "nomCommune": "AUBIGNY AU BAC" }, { - "codePostal": "24700", - "codeCommune": "24264", - "libelleAcheminement": "MENESPLET", - "nomCommune": "MENESPLET" + "codePostal": "02860", + "codeCommune": "02024", + "libelleAcheminement": "ARRANCY", + "nomCommune": "ARRANCY" }, { - "codePostal": "39290", - "codeCommune": "39014", - "libelleAcheminement": "ARCHELANGE", - "nomCommune": "ARCHELANGE" + "codePostal": "58240", + "codeCommune": "58144", + "libelleAcheminement": "LIVRY", + "nomCommune": "LIVRY" }, { - "codePostal": "52700", - "codeCommune": "52289", - "libelleAcheminement": "LIFFOL LE PETIT", - "nomCommune": "LIFFOL LE PETIT" + "codePostal": "46210", + "codeCommune": "46338", + "libelleAcheminement": "BESSONIES", + "nomCommune": "BESSONIES" }, { - "codePostal": "29600", - "codeCommune": "29265", - "libelleAcheminement": "STE SEVE", - "nomCommune": "STE SEVE" + "codePostal": "50760", + "codeCommune": "50013", + "libelleAcheminement": "ANNEVILLE EN SAIRE", + "nomCommune": "ANNEVILLE EN SAIRE" }, { - "codePostal": "24610", - "codeCommune": "24272", - "libelleAcheminement": "MINZAC", - "nomCommune": "MINZAC" + "codePostal": "59440", + "codeCommune": "59035", + "libelleAcheminement": "AVESNELLES", + "nomCommune": "AVESNELLES" }, { - "codePostal": "39300", - "codeCommune": "39015", - "libelleAcheminement": "ARDON", - "nomCommune": "ARDON" + "codePostal": "02840", + "codeCommune": "02028", + "libelleAcheminement": "ATHIES SOUS LAON", + "nomCommune": "ATHIES SOUS LAON" }, { - "codePostal": "52130", - "codeCommune": "52294", - "libelleAcheminement": "LOUVEMONT", - "nomCommune": "LOUVEMONT" + "codePostal": "58140", + "codeCommune": "58157", + "libelleAcheminement": "MARIGNY L EGLISE", + "nomCommune": "MARIGNY L EGLISE" }, { - "codePostal": "29410", - "codeCommune": "29266", - "libelleAcheminement": "ST THEGONNEC LOC EGUINER", - "nomCommune": "ST THEGONNEC LOC EGUINER" + "codePostal": "46400", + "codeCommune": "46339", + "libelleAcheminement": "ST JEAN LAGINESTE", + "nomCommune": "ST JEAN LAGINESTE" }, { - "codePostal": "24130", - "codeCommune": "24277", - "libelleAcheminement": "MONFAUCON", - "nomCommune": "MONFAUCON" + "codePostal": "50500", + "codeCommune": "50023", + "libelleAcheminement": "AUVERS", + "nomCommune": "AUVERS" }, { - "codePostal": "39140", - "codeCommune": "39017", - "libelleAcheminement": "ARLAY", - "nomCommune": "ARLAY" + "codePostal": "59400", + "codeCommune": "59039", + "libelleAcheminement": "AWOINGT", + "nomCommune": "AWOINGT" }, { - "codePostal": "52800", - "codeCommune": "52295", - "libelleAcheminement": "LOUVIERES", - "nomCommune": "LOUVIERES" + "codePostal": "02420", + "codeCommune": "02030", + "libelleAcheminement": "AUBENCHEUL AUX BOIS", + "nomCommune": "AUBENCHEUL AUX BOIS" }, { - "codePostal": "29440", - "codeCommune": "29271", - "libelleAcheminement": "ST VOUGAY", - "nomCommune": "ST VOUGAY" + "codePostal": "58240", + "codeCommune": "58158", + "libelleAcheminement": "MARS SUR ALLIER", + "nomCommune": "MARS SUR ALLIER" }, { - "codePostal": "24560", - "codeCommune": "24282", - "libelleAcheminement": "MONSAGUEL", - "nomCommune": "MONSAGUEL" + "codePostal": "47350", + "codeCommune": "47002", + "libelleAcheminement": "AGME", + "nomCommune": "AGME" }, { - "codePostal": "39210", - "codeCommune": "39017", - "libelleAcheminement": "ARLAY", - "nomCommune": "ARLAY" + "codePostal": "50530", + "codeCommune": "50027", + "libelleAcheminement": "BACILLY", + "nomCommune": "BACILLY" }, { - "codePostal": "52500", - "codeCommune": "52298", - "libelleAcheminement": "MAATZ", - "nomCommune": "MAATZ" + "codePostal": "59270", + "codeCommune": "59043", + "libelleAcheminement": "BAILLEUL", + "nomCommune": "BAILLEUL" }, { - "codePostal": "29250", - "codeCommune": "29273", - "libelleAcheminement": "SANTEC", - "nomCommune": "SANTEC" + "codePostal": "02120", + "codeCommune": "02035", + "libelleAcheminement": "AUDIGNY", + "nomCommune": "AUDIGNY" }, { - "codePostal": "24230", - "codeCommune": "24288", - "libelleAcheminement": "MONTAZEAU", - "nomCommune": "MONTAZEAU" + "codePostal": "58800", + "codeCommune": "58159", + "libelleAcheminement": "MARIGNY SUR YONNE", + "nomCommune": "MARIGNY SUR YONNE" }, { - "codePostal": "39800", - "codeCommune": "39028", - "libelleAcheminement": "AUMONT", - "nomCommune": "AUMONT" + "codePostal": "47800", + "codeCommune": "47003", + "libelleAcheminement": "AGNAC", + "nomCommune": "AGNAC" }, { - "codePostal": "52130", - "codeCommune": "52300", - "libelleAcheminement": "MAGNEUX", - "nomCommune": "MAGNEUX" + "codePostal": "50450", + "codeCommune": "50028", + "libelleAcheminement": "LA BALEINE", + "nomCommune": "LA BALEINE" }, { - "codePostal": "29560", - "codeCommune": "29280", - "libelleAcheminement": "TELGRUC SUR MER", - "nomCommune": "TELGRUC SUR MER" + "codePostal": "59266", + "codeCommune": "59047", + "libelleAcheminement": "BANTEUX", + "nomCommune": "BANTEUX" }, { - "codePostal": "24230", - "codeCommune": "24289", - "libelleAcheminement": "MONTCARET", - "nomCommune": "MONTCARET" + "codePostal": "02220", + "codeCommune": "02036", + "libelleAcheminement": "AUGY", + "nomCommune": "AUGY" }, { - "codePostal": "39200", - "codeCommune": "39032", - "libelleAcheminement": "AVIGNON LES ST CLAUDE", - "nomCommune": "AVIGNON LES ST CLAUDE" + "codePostal": "58120", + "codeCommune": "58177", + "libelleAcheminement": "MONTIGNY EN MORVAN", + "nomCommune": "MONTIGNY EN MORVAN" }, { - "codePostal": "52150", - "codeCommune": "52304", - "libelleAcheminement": "MALAINCOURT SUR MEUSE", - "nomCommune": "MALAINCOURT SUR MEUSE" + "codePostal": "47110", + "codeCommune": "47006", + "libelleAcheminement": "ALLEZ ET CAZENEUVE", + "nomCommune": "ALLEZ ET CAZENEUVE" }, { - "codePostal": "29440", - "codeCommune": "29285", - "libelleAcheminement": "TREFLAOUENAN", - "nomCommune": "TREFLAOUENAN" + "codePostal": "50760", + "codeCommune": "50030", + "libelleAcheminement": "BARFLEUR", + "nomCommune": "BARFLEUR" }, { - "codePostal": "24170", - "codeCommune": "24293", - "libelleAcheminement": "MONPLAISANT", - "nomCommune": "MONPLAISANT" + "codePostal": "59554", + "codeCommune": "59048", + "libelleAcheminement": "BANTIGNY", + "nomCommune": "BANTIGNY" }, { - "codePostal": "39800", - "codeCommune": "39040", - "libelleAcheminement": "BARRETAINE", - "nomCommune": "BARRETAINE" + "codePostal": "02360", + "codeCommune": "02038", + "libelleAcheminement": "LES AUTELS", + "nomCommune": "LES AUTELS" }, { - "codePostal": "52260", - "codeCommune": "52307", - "libelleAcheminement": "MARAC", - "nomCommune": "MARAC" + "codePostal": "58340", + "codeCommune": "58178", + "libelleAcheminement": "MONTIGNY SUR CANNE", + "nomCommune": "MONTIGNY SUR CANNE" }, { - "codePostal": "29430", - "codeCommune": "29287", - "libelleAcheminement": "TREFLEZ", - "nomCommune": "TREFLEZ" + "codePostal": "47170", + "codeCommune": "47009", + "libelleAcheminement": "ANDIRAN", + "nomCommune": "ANDIRAN" }, { - "codePostal": "24110", - "codeCommune": "24295", - "libelleAcheminement": "MONTREM", - "nomCommune": "MONTREM" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "39380", - "codeCommune": "39048", - "libelleAcheminement": "BELMONT", - "nomCommune": "BELMONT" + "codePostal": "59670", + "codeCommune": "59054", + "libelleAcheminement": "BAVINCHOVE", + "nomCommune": "BAVINCHOVE" }, { - "codePostal": "52240", - "codeCommune": "52319", - "libelleAcheminement": "MENNOUVEAUX", - "nomCommune": "MENNOUVEAUX" + "codePostal": "02300", + "codeCommune": "02041", + "libelleAcheminement": "AUTREVILLE", + "nomCommune": "AUTREVILLE" }, { - "codePostal": "29120", - "codeCommune": "29296", - "libelleAcheminement": "TREMEOC", - "nomCommune": "TREMEOC" + "codePostal": "58290", + "codeCommune": "58182", + "libelleAcheminement": "MOULINS ENGILBERT", + "nomCommune": "MOULINS ENGILBERT" }, { - "codePostal": "24400", - "codeCommune": "24299", - "libelleAcheminement": "MUSSIDAN", - "nomCommune": "MUSSIDAN" + "codePostal": "47470", + "codeCommune": "47025", + "libelleAcheminement": "BEAUVILLE", + "nomCommune": "BEAUVILLE" }, { - "codePostal": "39150", - "codeCommune": "39052", - "libelleAcheminement": "BIEF DES MAISONS", - "nomCommune": "BIEF DES MAISONS" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "52240", - "codeCommune": "52320", - "libelleAcheminement": "MERREY", - "nomCommune": "MERREY" + "codePostal": "59360", + "codeCommune": "59055", + "libelleAcheminement": "BAZUEL", + "nomCommune": "BAZUEL" }, { - "codePostal": "29720", - "codeCommune": "29298", - "libelleAcheminement": "TREOGAT", - "nomCommune": "TREOGAT" + "codePostal": "02000", + "codeCommune": "02046", + "libelleAcheminement": "BARENTON BUGNY", + "nomCommune": "BARENTON BUGNY" }, { - "codePostal": "24190", - "codeCommune": "24309", - "libelleAcheminement": "NEUVIC", - "nomCommune": "NEUVIC" + "codePostal": "58350", + "codeCommune": "58188", + "libelleAcheminement": "NANNAY", + "nomCommune": "NANNAY" }, { - "codePostal": "39140", - "codeCommune": "39056", - "libelleAcheminement": "BLETTERANS", - "nomCommune": "BLETTERANS" + "codePostal": "47700", + "codeCommune": "47026", + "libelleAcheminement": "BEAUZIAC", + "nomCommune": "BEAUZIAC" }, { - "codePostal": "52240", - "codeCommune": "52325", - "libelleAcheminement": "MILLIERES", - "nomCommune": "MILLIERES" + "codePostal": "50460", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "29440", - "codeCommune": "29301", - "libelleAcheminement": "TREZILIDE", - "nomCommune": "TREZILIDE" + "codePostal": "59380", + "codeCommune": "59067", + "libelleAcheminement": "BERGUES", + "nomCommune": "BERGUES" }, { - "codePostal": "24000", - "codeCommune": "24322", - "libelleAcheminement": "PERIGUEUX", - "nomCommune": "PERIGUEUX" + "codePostal": "02380", + "codeCommune": "02052", + "libelleAcheminement": "BASSOLES AULERS", + "nomCommune": "BASSOLES AULERS" }, { - "codePostal": "39130", - "codeCommune": "39061", - "libelleAcheminement": "BOISSIA", - "nomCommune": "BOISSIA" + "codePostal": "58420", + "codeCommune": "58191", + "libelleAcheminement": "NEUILLY", + "nomCommune": "NEUILLY" }, { - "codePostal": "52220", - "codeCommune": "52331", - "libelleAcheminement": "LA PORTE DU DER", - "nomCommune": "LA PORTE DU DER" + "codePostal": "47300", + "codeCommune": "47027", + "libelleAcheminement": "BIAS", + "nomCommune": "BIAS" }, { - "codePostal": "20000", - "codeCommune": "2A004", - "libelleAcheminement": "AJACCIO", - "nomCommune": "AJACCIO" + "codePostal": "50390", + "codeCommune": "50049", + "libelleAcheminement": "BESNEVILLE", + "nomCommune": "BESNEVILLE" }, { - "codePostal": "24620", - "codeCommune": "24326", - "libelleAcheminement": "PEYZAC LE MOUSTIER", - "nomCommune": "PEYZAC LE MOUSTIER" + "codePostal": "59235", + "codeCommune": "59071", + "libelleAcheminement": "BERSEE", + "nomCommune": "BERSEE" }, { - "codePostal": "39240", - "codeCommune": "39062", - "libelleAcheminement": "LA BOISSIERE", - "nomCommune": "LA BOISSIERE" + "codePostal": "02330", + "codeCommune": "02053", + "libelleAcheminement": "VALLEES EN CHAMPAGNE", + "nomCommune": "VALLEES EN CHAMPAGNE" }, { - "codePostal": "52140", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "58700", + "codeCommune": "58196", + "libelleAcheminement": "NOLAY", + "nomCommune": "NOLAY" }, { - "codePostal": "20090", - "codeCommune": "2A004", - "libelleAcheminement": "AJACCIO", - "nomCommune": "AJACCIO" + "codePostal": "47200", + "codeCommune": "47028", + "libelleAcheminement": "BIRAC SUR TREC", + "nomCommune": "BIRAC SUR TREC" }, { - "codePostal": "24360", - "codeCommune": "24328", - "libelleAcheminement": "PIEGUT PLUVIERS", - "nomCommune": "PIEGUT PLUVIERS" + "codePostal": "50800", + "codeCommune": "50069", + "libelleAcheminement": "BOURGUENOLLES", + "nomCommune": "BOURGUENOLLES" }, { - "codePostal": "39130", - "codeCommune": "39063", - "libelleAcheminement": "BONLIEU", - "nomCommune": "BONLIEU" + "codePostal": "59270", + "codeCommune": "59073", + "libelleAcheminement": "BERTHEN", + "nomCommune": "BERTHEN" }, { - "codePostal": "52140", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "02110", + "codeCommune": "02057", + "libelleAcheminement": "BEAUREVOIR", + "nomCommune": "BEAUREVOIR" }, { - "codePostal": "20166", - "codeCommune": "2A008", - "libelleAcheminement": "ALBITRECCIA", - "nomCommune": "ALBITRECCIA" + "codePostal": "58500", + "codeCommune": "58198", + "libelleAcheminement": "OISY", + "nomCommune": "OISY" }, { - "codePostal": "24150", - "codeCommune": "24334", - "libelleAcheminement": "PONTOURS", - "nomCommune": "PONTOURS" + "codePostal": "47550", + "codeCommune": "47031", + "libelleAcheminement": "BOE", + "nomCommune": "BOE" }, { - "codePostal": "39370", - "codeCommune": "39068", - "libelleAcheminement": "LES BOUCHOUX", - "nomCommune": "LES BOUCHOUX" + "codePostal": "50260", + "codeCommune": "50082", + "libelleAcheminement": "BRICQUEBEC EN COTENTIN", + "nomCommune": "BRICQUEBEC EN COTENTIN" }, { - "codePostal": "52140", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "59540", + "codeCommune": "59075", + "libelleAcheminement": "BETHENCOURT", + "nomCommune": "BETHENCOURT" }, { - "codePostal": "20151", - "codeCommune": "2A014", - "libelleAcheminement": "AMBIEGNA", - "nomCommune": "AMBIEGNA" + "codePostal": "02110", + "codeCommune": "02061", + "libelleAcheminement": "BECQUIGNY", + "nomCommune": "BECQUIGNY" }, { - "codePostal": "24370", - "codeCommune": "24336", - "libelleAcheminement": "PRATS DE CARLUX", - "nomCommune": "PRATS DE CARLUX" + "codePostal": "58700", + "codeCommune": "58203", + "libelleAcheminement": "OULON", + "nomCommune": "OULON" }, { - "codePostal": "39300", - "codeCommune": "39070", - "libelleAcheminement": "BOURG DE SIROD", - "nomCommune": "BOURG DE SIROD" + "codePostal": "47320", + "codeCommune": "47038", + "libelleAcheminement": "BOURRAN", + "nomCommune": "BOURRAN" }, { - "codePostal": "52240", - "codeCommune": "52332", - "libelleAcheminement": "VAL DE MEUSE", - "nomCommune": "VAL DE MEUSE" + "codePostal": "50200", + "codeCommune": "50084", + "libelleAcheminement": "BRICQUEVILLE LA BLOUETTE", + "nomCommune": "BRICQUEVILLE LA BLOUETTE" }, { - "codePostal": "20151", - "codeCommune": "2A022", - "libelleAcheminement": "ARRO", - "nomCommune": "ARRO" + "codePostal": "59570", + "codeCommune": "59077", + "libelleAcheminement": "BETTRECHIES", + "nomCommune": "BETTRECHIES" }, { - "codePostal": "24600", - "codeCommune": "24352", - "libelleAcheminement": "RIBERAC", - "nomCommune": "RIBERAC" + "codePostal": "02340", + "codeCommune": "02069", + "libelleAcheminement": "BERLISE", + "nomCommune": "BERLISE" }, { - "codePostal": "39700", - "codeCommune": "39076", - "libelleAcheminement": "LA BRETENIERE", - "nomCommune": "LA BRETENIERE" + "codePostal": "58130", + "codeCommune": "58212", + "libelleAcheminement": "POISEUX", + "nomCommune": "POISEUX" }, { - "codePostal": "52230", - "codeCommune": "52337", - "libelleAcheminement": "MONTREUIL SUR THONNANCE", - "nomCommune": "MONTREUIL SUR THONNANCE" + "codePostal": "47130", + "codeCommune": "47041", + "libelleAcheminement": "BRUCH", + "nomCommune": "BRUCH" }, { - "codePostal": "20116", - "codeCommune": "2A024", - "libelleAcheminement": "AULLENE", - "nomCommune": "AULLENE" + "codePostal": "50480", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "24340", - "codeCommune": "24353", - "libelleAcheminement": "LA ROCHEBEAUCOURT ET ARGENTINE", - "nomCommune": "LA ROCHEBEAUCOURT ET ARGENTINE" + "codePostal": "59217", + "codeCommune": "59081", + "libelleAcheminement": "BEVILLERS", + "nomCommune": "BEVILLERS" }, { - "codePostal": "39320", - "codeCommune": "39080", - "libelleAcheminement": "BROISSIA", - "nomCommune": "BROISSIA" + "codePostal": "02190", + "codeCommune": "02076", + "libelleAcheminement": "BERTRICOURT", + "nomCommune": "BERTRICOURT" }, { - "codePostal": "52300", - "codeCommune": "52346", - "libelleAcheminement": "MUSSEY SUR MARNE", - "nomCommune": "MUSSEY SUR MARNE" + "codePostal": "58150", + "codeCommune": "58215", + "libelleAcheminement": "POUILLY SUR LOIRE", + "nomCommune": "POUILLY SUR LOIRE" }, { - "codePostal": "20160", - "codeCommune": "2A028", - "libelleAcheminement": "BALOGNA", - "nomCommune": "BALOGNA" + "codePostal": "47160", + "codeCommune": "47043", + "libelleAcheminement": "BUZET SUR BAISE", + "nomCommune": "BUZET SUR BAISE" }, { - "codePostal": "24490", - "codeCommune": "24354", - "libelleAcheminement": "LA ROCHE CHALAIS", - "nomCommune": "LA ROCHE CHALAIS" + "codePostal": "50500", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "39250", - "codeCommune": "39083", - "libelleAcheminement": "CENSEAU", - "nomCommune": "CENSEAU" + "codePostal": "59380", + "codeCommune": "59082", + "libelleAcheminement": "BIERNE", + "nomCommune": "BIERNE" }, { - "codePostal": "52800", - "codeCommune": "52353", - "libelleAcheminement": "NOGENT", - "nomCommune": "NOGENT" + "codePostal": "02200", + "codeCommune": "02077", + "libelleAcheminement": "BERZY LE SEC", + "nomCommune": "BERZY LE SEC" }, { - "codePostal": "20110", - "codeCommune": "2A035", - "libelleAcheminement": "BELVEDERE CAMPOMORO", - "nomCommune": "BELVEDERE CAMPOMORO" + "codePostal": "58500", + "codeCommune": "58217", + "libelleAcheminement": "POUSSEAUX", + "nomCommune": "POUSSEAUX" }, { - "codePostal": "24240", - "codeCommune": "24357", - "libelleAcheminement": "ROUFFIGNAC DE SIGOULES", - "nomCommune": "ROUFFIGNAC DE SIGOULES" + "codePostal": "47290", + "codeCommune": "47048", + "libelleAcheminement": "CANCON", + "nomCommune": "CANCON" }, { - "codePostal": "39250", - "codeCommune": "39085", - "libelleAcheminement": "CERNIEBAUD", - "nomCommune": "CERNIEBAUD" + "codePostal": "50500", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "52800", - "codeCommune": "52353", - "libelleAcheminement": "NOGENT", - "nomCommune": "NOGENT" + "codePostal": "59380", + "codeCommune": "59083", + "libelleAcheminement": "BISSEZEELE", + "nomCommune": "BISSEZEELE" }, { - "codePostal": "20136", - "codeCommune": "2A040", - "libelleAcheminement": "BOCOGNANO", - "nomCommune": "BOCOGNANO" + "codePostal": "02110", + "codeCommune": "02095", + "libelleAcheminement": "BOHAIN EN VERMANDOIS", + "nomCommune": "BOHAIN EN VERMANDOIS" }, { - "codePostal": "24510", - "codeCommune": "24362", - "libelleAcheminement": "VAL DE LOUYRE ET CAUDEAU", - "nomCommune": "VAL DE LOUYRE ET CAUDEAU" + "codePostal": "58700", + "codeCommune": "58218", + "libelleAcheminement": "PREMERY", + "nomCommune": "PREMERY" }, { - "codePostal": "39240", - "codeCommune": "39086", - "libelleAcheminement": "CERNON", - "nomCommune": "CERNON" + "codePostal": "47240", + "codeCommune": "47051", + "libelleAcheminement": "CASTELCULIER", + "nomCommune": "CASTELCULIER" }, { - "codePostal": "52190", - "codeCommune": "52360", - "libelleAcheminement": "OCCEY", - "nomCommune": "OCCEY" + "codePostal": "50500", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "20111", - "codeCommune": "2A048", - "libelleAcheminement": "CALCATOGGIO", - "nomCommune": "CALCATOGGIO" + "codePostal": "59268", + "codeCommune": "59085", + "libelleAcheminement": "BLECOURT", + "nomCommune": "BLECOURT" }, { - "codePostal": "24190", - "codeCommune": "24367", - "libelleAcheminement": "ST ANDRE DE DOUBLE", - "nomCommune": "ST ANDRE DE DOUBLE" + "codePostal": "02400", + "codeCommune": "02098", + "libelleAcheminement": "BONNEIL", + "nomCommune": "BONNEIL" }, { - "codePostal": "39570", - "codeCommune": "39088", - "libelleAcheminement": "CESANCEY", - "nomCommune": "CESANCEY" + "codePostal": "58360", + "codeCommune": "58219", + "libelleAcheminement": "PREPORCHE", + "nomCommune": "PREPORCHE" }, { - "codePostal": "52310", - "codeCommune": "52367", - "libelleAcheminement": "ORMOY LES SEXFONTAINES", - "nomCommune": "ORMOY LES SEXFONTAINES" + "codePostal": "47700", + "codeCommune": "47052", + "libelleAcheminement": "CASTELJALOUX", + "nomCommune": "CASTELJALOUX" }, { - "codePostal": "20190", - "codeCommune": "2A064", - "libelleAcheminement": "CARDO TORGIA", - "nomCommune": "CARDO TORGIA" + "codePostal": "50620", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "24410", - "codeCommune": "24376", - "libelleAcheminement": "ST AULAYE PUYMANGOU", - "nomCommune": "ST AULAYE PUYMANGOU" + "codePostal": "59830", + "codeCommune": "59096", + "libelleAcheminement": "BOURGHELLES", + "nomCommune": "BOURGHELLES" }, { - "codePostal": "39150", - "codeCommune": "39091", - "libelleAcheminement": "LES CHALESMES", - "nomCommune": "LES CHALESMES" + "codePostal": "02420", + "codeCommune": "02100", + "libelleAcheminement": "BONY", + "nomCommune": "BONY" }, { - "codePostal": "52400", - "codeCommune": "52377", - "libelleAcheminement": "PARNOY EN BASSIGNY", - "nomCommune": "PARNOY EN BASSIGNY" + "codePostal": "58330", + "codeCommune": "58233", + "libelleAcheminement": "ST BENIN DES BOIS", + "nomCommune": "ST BENIN DES BOIS" }, { - "codePostal": "20160", - "codeCommune": "2A090", - "libelleAcheminement": "COGGIA", - "nomCommune": "COGGIA" + "codePostal": "47220", + "codeCommune": "47060", + "libelleAcheminement": "CAUDECOSTE", + "nomCommune": "CAUDECOSTE" }, { - "codePostal": "24150", - "codeCommune": "24382", - "libelleAcheminement": "ST CAPRAISE DE LALINDE", - "nomCommune": "ST CAPRAISE DE LALINDE" + "codePostal": "50510", + "codeCommune": "50109", + "libelleAcheminement": "CERENCES", + "nomCommune": "CERENCES" }, { - "codePostal": "39100", - "codeCommune": "39101", - "libelleAcheminement": "CHAMPVANS", - "nomCommune": "CHAMPVANS" + "codePostal": "59222", + "codeCommune": "59099", + "libelleAcheminement": "BOUSIES", + "nomCommune": "BOUSIES" }, { - "codePostal": "52200", - "codeCommune": "52380", - "libelleAcheminement": "PEIGNEY", - "nomCommune": "PEIGNEY" + "codePostal": "02160", + "codeCommune": "02106", + "libelleAcheminement": "BOURG ET COMIN", + "nomCommune": "BOURG ET COMIN" }, { - "codePostal": "20123", - "codeCommune": "2A091", - "libelleAcheminement": "COGNOCOLI MONTICCHI", - "nomCommune": "COGNOCOLI MONTICCHI" + "codePostal": "58270", + "codeCommune": "58239", + "libelleAcheminement": "ST FIRMIN", + "nomCommune": "ST FIRMIN" }, { - "codePostal": "24500", - "codeCommune": "24383", - "libelleAcheminement": "ST CAPRAISE D EYMET", - "nomCommune": "ST CAPRAISE D EYMET" + "codePostal": "47430", + "codeCommune": "47061", + "libelleAcheminement": "CAUMONT SUR GARONNE", + "nomCommune": "CAUMONT SUR GARONNE" }, { - "codePostal": "39130", - "codeCommune": "39107", - "libelleAcheminement": "CHARCIER", - "nomCommune": "CHARCIER" + "codePostal": "50370", + "codeCommune": "50112", + "libelleAcheminement": "LA CHAISE BAUDOUIN", + "nomCommune": "LA CHAISE BAUDOUIN" }, { - "codePostal": "52240", - "codeCommune": "52385", - "libelleAcheminement": "PERRUSSE", - "nomCommune": "PERRUSSE" + "codePostal": "59860", + "codeCommune": "59112", + "libelleAcheminement": "BRUAY SUR L ESCAUT", + "nomCommune": "BRUAY SUR L ESCAUT" }, { - "codePostal": "20135", - "codeCommune": "2A092", - "libelleAcheminement": "CONCA", - "nomCommune": "CONCA" + "codePostal": "02000", + "codeCommune": "02108", + "libelleAcheminement": "BOURGUIGNON SOUS MONTBAVIN", + "nomCommune": "BOURGUIGNON SOUS MONTBAVIN" }, { - "codePostal": "24330", - "codeCommune": "24390", - "libelleAcheminement": "ST CREPIN D AUBEROCHE", - "nomCommune": "ST CREPIN D AUBEROCHE" + "codePostal": "58330", + "codeCommune": "58240", + "libelleAcheminement": "ST FRANCHY", + "nomCommune": "ST FRANCHY" }, { - "codePostal": "39210", - "codeCommune": "39114", - "libelleAcheminement": "CHATEAU CHALON", - "nomCommune": "CHATEAU CHALON" + "codePostal": "47320", + "codeCommune": "47065", + "libelleAcheminement": "CLAIRAC", + "nomCommune": "CLAIRAC" }, { - "codePostal": "52120", - "codeCommune": "52399", - "libelleAcheminement": "PONT LA VILLE", - "nomCommune": "PONT LA VILLE" + "codePostal": "50870", + "codeCommune": "50126", + "libelleAcheminement": "CHAVOY", + "nomCommune": "CHAVOY" }, { - "codePostal": "20126", - "codeCommune": "2A100", - "libelleAcheminement": "CRISTINACCE", - "nomCommune": "CRISTINACCE" + "codePostal": "59199", + "codeCommune": "59114", + "libelleAcheminement": "BRUILLE ST AMAND", + "nomCommune": "BRUILLE ST AMAND" }, { - "codePostal": "24400", - "codeCommune": "24399", - "libelleAcheminement": "ST ETIENNE DE PUYCORBIER", - "nomCommune": "ST ETIENNE DE PUYCORBIER" + "codePostal": "02400", + "codeCommune": "02114", + "libelleAcheminement": "BRASLES", + "nomCommune": "BRASLES" }, { - "codePostal": "39120", - "codeCommune": "39128", - "libelleAcheminement": "CHAUSSIN", - "nomCommune": "CHAUSSIN" + "codePostal": "58300", + "codeCommune": "58245", + "libelleAcheminement": "ST HILAIRE FONTAINE", + "nomCommune": "ST HILAIRE FONTAINE" }, { - "codePostal": "52800", - "codeCommune": "52401", - "libelleAcheminement": "POULANGY", - "nomCommune": "POULANGY" + "codePostal": "47450", + "codeCommune": "47069", + "libelleAcheminement": "COLAYRAC ST CIRQ", + "nomCommune": "COLAYRAC ST CIRQ" }, { - "codePostal": "20100", - "codeCommune": "2A129", - "libelleAcheminement": "GROSSA", - "nomCommune": "GROSSA" + "codePostal": "50110", + "codeCommune": "50129", + "libelleAcheminement": "CHERBOURG EN COTENTIN", + "nomCommune": "CHERBOURG EN COTENTIN" }, { - "codePostal": "24640", - "codeCommune": "24401", - "libelleAcheminement": "STE EULALIE D ANS", - "nomCommune": "STE EULALIE D ANS" + "codePostal": "59151", + "codeCommune": "59117", + "libelleAcheminement": "BUGNICOURT", + "nomCommune": "BUGNICOURT" }, { - "codePostal": "39150", - "codeCommune": "39130", - "libelleAcheminement": "NANCHEZ", - "nomCommune": "NANCHEZ" + "codePostal": "02480", + "codeCommune": "02117", + "libelleAcheminement": "BRAY ST CHRISTOPHE", + "nomCommune": "BRAY ST CHRISTOPHE" }, { - "codePostal": "52220", - "codeCommune": "52411", - "libelleAcheminement": "RIVES DERVOISES", - "nomCommune": "RIVES DERVOISES" + "codePostal": "58360", + "codeCommune": "58246", + "libelleAcheminement": "ST HONORE LES BAINS", + "nomCommune": "ST HONORE LES BAINS" }, { - "codePostal": "20128", - "codeCommune": "2A132", - "libelleAcheminement": "GUARGUALE", - "nomCommune": "GUARGUALE" + "codePostal": "47260", + "codeCommune": "47071", + "libelleAcheminement": "COULX", + "nomCommune": "COULX" }, { - "codePostal": "24510", - "codeCommune": "24405", - "libelleAcheminement": "ST FELIX DE VILLADEIX", - "nomCommune": "ST FELIX DE VILLADEIX" + "codePostal": "50120", + "codeCommune": "50129", + "libelleAcheminement": "CHERBOURG EN COTENTIN", + "nomCommune": "CHERBOURG EN COTENTIN" }, { - "codePostal": "39240", - "codeCommune": "39137", - "libelleAcheminement": "ST HYMETIERE SUR VALOUSE", - "nomCommune": "ST HYMETIERE SUR VALOUSE" + "codePostal": "59360", + "codeCommune": "59136", + "libelleAcheminement": "LE CATEAU CAMBRESIS", + "nomCommune": "LE CATEAU CAMBRESIS" }, { - "codePostal": "52600", - "codeCommune": "52424", - "libelleAcheminement": "RIVIERES LE BOIS", - "nomCommune": "RIVIERES LE BOIS" + "codePostal": "02210", + "codeCommune": "02119", + "libelleAcheminement": "BRECY", + "nomCommune": "BRECY" }, { - "codePostal": "20160", - "codeCommune": "2A141", - "libelleAcheminement": "LETIA", - "nomCommune": "LETIA" + "codePostal": "58150", + "codeCommune": "58248", + "libelleAcheminement": "ST LAURENT L ABBAYE", + "nomCommune": "ST LAURENT L ABBAYE" }, { - "codePostal": "24800", - "codeCommune": "24425", - "libelleAcheminement": "ST JEAN DE COLE", - "nomCommune": "ST JEAN DE COLE" + "codePostal": "47370", + "codeCommune": "47072", + "libelleAcheminement": "COURBIAC", + "nomCommune": "COURBIAC" }, { - "codePostal": "39130", - "codeCommune": "39143", - "libelleAcheminement": "CHEVROTAINE", - "nomCommune": "CHEVROTAINE" + "codePostal": "50700", + "codeCommune": "50138", + "libelleAcheminement": "COLOMBY", + "nomCommune": "COLOMBY" }, { - "codePostal": "52210", - "codeCommune": "52431", - "libelleAcheminement": "ROCHETAILLEE", - "nomCommune": "ROCHETAILLEE" + "codePostal": "59740", + "codeCommune": "59147", + "libelleAcheminement": "CHOISIES", + "nomCommune": "CHOISIES" }, { - "codePostal": "20139", - "codeCommune": "2A144", - "libelleAcheminement": "LOPIGNA", - "nomCommune": "LOPIGNA" + "codePostal": "02210", + "codeCommune": "02121", + "libelleAcheminement": "BRENY", + "nomCommune": "BRENY" }, { - "codePostal": "24160", - "codeCommune": "24429", - "libelleAcheminement": "ST JORY LAS BLOUX", - "nomCommune": "ST JORY LAS BLOUX" + "codePostal": "58350", + "codeCommune": "58252", + "libelleAcheminement": "ST MALO EN DONZIOIS", + "nomCommune": "ST MALO EN DONZIOIS" }, { - "codePostal": "39570", - "codeCommune": "39146", - "libelleAcheminement": "CHILLY LE VIGNOBLE", - "nomCommune": "CHILLY LE VIGNOBLE" + "codePostal": "47340", + "codeCommune": "47075", + "libelleAcheminement": "LA CROIX BLANCHE", + "nomCommune": "LA CROIX BLANCHE" }, { - "codePostal": "52500", - "codeCommune": "52438", - "libelleAcheminement": "ROUGEUX", - "nomCommune": "ROUGEUX" + "codePostal": "50420", + "codeCommune": "50139", + "libelleAcheminement": "CONDE SUR VIRE", + "nomCommune": "CONDE SUR VIRE" }, { - "codePostal": "20165", - "codeCommune": "2A146", - "libelleAcheminement": "LORETO DI TALLANO", - "nomCommune": "LORETO DI TALLANO" + "codePostal": "59830", + "codeCommune": "59150", + "libelleAcheminement": "COBRIEUX", + "nomCommune": "COBRIEUX" }, { - "codePostal": "24400", - "codeCommune": "24444", - "libelleAcheminement": "ST LOUIS EN L ISLE", - "nomCommune": "ST LOUIS EN L ISLE" + "codePostal": "02500", + "codeCommune": "02134", + "libelleAcheminement": "BUIRE", + "nomCommune": "BUIRE" }, { - "codePostal": "39110", - "codeCommune": "39147", - "libelleAcheminement": "CHILLY SUR SALINS", - "nomCommune": "CHILLY SUR SALINS" + "codePostal": "58310", + "codeCommune": "58270", + "libelleAcheminement": "ST VERAIN", + "nomCommune": "ST VERAIN" }, { - "codePostal": "52300", - "codeCommune": "52440", - "libelleAcheminement": "ROUVROY SUR MARNE", - "nomCommune": "ROUVROY SUR MARNE" + "codePostal": "47210", + "codeCommune": "47080", + "libelleAcheminement": "DEVILLAC", + "nomCommune": "DEVILLAC" }, { - "codePostal": "20117", - "codeCommune": "2A181", - "libelleAcheminement": "OCANA", - "nomCommune": "OCANA" + "codePostal": "50200", + "codeCommune": "50147", + "libelleAcheminement": "COUTANCES", + "nomCommune": "COUTANCES" }, { - "codePostal": "24800", - "codeCommune": "24453", - "libelleAcheminement": "ST MARTIN DE FRESSENGEAS", - "nomCommune": "ST MARTIN DE FRESSENGEAS" + "codePostal": "59154", + "codeCommune": "59160", + "libelleAcheminement": "CRESPIN", + "nomCommune": "CRESPIN" }, { - "codePostal": "39140", - "codeCommune": "39160", - "libelleAcheminement": "COMMENAILLES", - "nomCommune": "COMMENAILLES" + "codePostal": "02200", + "codeCommune": "02138", + "libelleAcheminement": "BUZANCY", + "nomCommune": "BUZANCY" }, { - "codePostal": "52300", - "codeCommune": "52442", - "libelleAcheminement": "RUPT", - "nomCommune": "RUPT" + "codePostal": "58800", + "codeCommune": "58272", + "libelleAcheminement": "SARDY LES EPIRY", + "nomCommune": "SARDY LES EPIRY" }, { - "codePostal": "20147", - "codeCommune": "2A197", - "libelleAcheminement": "OSANI", - "nomCommune": "OSANI" + "codePostal": "47110", + "codeCommune": "47081", + "libelleAcheminement": "DOLMAYRAC", + "nomCommune": "DOLMAYRAC" }, { - "codePostal": "24400", - "codeCommune": "24462", - "libelleAcheminement": "ST MEDARD DE MUSSIDAN", - "nomCommune": "ST MEDARD DE MUSSIDAN" + "codePostal": "50220", + "codeCommune": "50168", + "libelleAcheminement": "DUCEY LES CHERIS", + "nomCommune": "DUCEY LES CHERIS" }, { - "codePostal": "39570", - "codeCommune": "39164", - "libelleAcheminement": "CONLIEGE", - "nomCommune": "CONLIEGE" + "codePostal": "59258", + "codeCommune": "59161", + "libelleAcheminement": "CREVECOEUR SUR L ESCAUT", + "nomCommune": "CREVECOEUR SUR L ESCAUT" }, { - "codePostal": "52210", - "codeCommune": "52450", - "libelleAcheminement": "ST LOUP SUR AUJON", - "nomCommune": "ST LOUP SUR AUJON" + "codePostal": "02260", + "codeCommune": "02141", + "libelleAcheminement": "LA CAPELLE", + "nomCommune": "LA CAPELLE" }, { - "codePostal": "20150", - "codeCommune": "2A198", - "libelleAcheminement": "OTA", - "nomCommune": "OTA" + "codePostal": "58160", + "codeCommune": "58273", + "libelleAcheminement": "SAUVIGNY LES BOIS", + "nomCommune": "SAUVIGNY LES BOIS" }, { - "codePostal": "24160", - "codeCommune": "24476", - "libelleAcheminement": "ST PANTALY D EXCIDEUIL", - "nomCommune": "ST PANTALY D EXCIDEUIL" + "codePostal": "47120", + "codeCommune": "47089", + "libelleAcheminement": "ESCLOTTES", + "nomCommune": "ESCLOTTES" }, { - "codePostal": "39570", - "codeCommune": "39170", - "libelleAcheminement": "COURLANS", - "nomCommune": "COURLANS" + "codePostal": "50320", + "codeCommune": "50188", + "libelleAcheminement": "FOLLIGNY", + "nomCommune": "FOLLIGNY" }, { - "codePostal": "52210", - "codeCommune": "52450", - "libelleAcheminement": "ST LOUP SUR AUJON", - "nomCommune": "ST LOUP SUR AUJON" + "codePostal": "59380", + "codeCommune": "59162", + "libelleAcheminement": "CROCHTE", + "nomCommune": "CROCHTE" }, { - "codePostal": "20160", - "codeCommune": "2A240", - "libelleAcheminement": "POGGIOLO", - "nomCommune": "POGGIOLO" + "codePostal": "02490", + "codeCommune": "02144", + "libelleAcheminement": "CAULAINCOURT", + "nomCommune": "CAULAINCOURT" }, { - "codePostal": "24600", - "codeCommune": "24477", - "libelleAcheminement": "ST PARDOUX DE DRONE", - "nomCommune": "ST PARDOUX DE DRONE" + "codePostal": "58330", + "codeCommune": "58275", + "libelleAcheminement": "SAXI BOURDON", + "nomCommune": "SAXI BOURDON" }, { - "codePostal": "39570", - "codeCommune": "39170", - "libelleAcheminement": "COURLANS", - "nomCommune": "COURLANS" + "codePostal": "47400", + "codeCommune": "47094", + "libelleAcheminement": "FAUGUEROLLES", + "nomCommune": "FAUGUEROLLES" }, { - "codePostal": "52200", - "codeCommune": "52452", - "libelleAcheminement": "ST MARTIN LES LANGRES", - "nomCommune": "ST MARTIN LES LANGRES" + "codePostal": "50420", + "codeCommune": "50192", + "libelleAcheminement": "FOURNEAUX", + "nomCommune": "FOURNEAUX" }, { - "codePostal": "20134", - "codeCommune": "2A268", - "libelleAcheminement": "SAMPOLO", - "nomCommune": "SAMPOLO" + "codePostal": "59222", + "codeCommune": "59164", + "libelleAcheminement": "CROIX CALUYAU", + "nomCommune": "CROIX CALUYAU" }, { - "codePostal": "24800", - "codeCommune": "24481", - "libelleAcheminement": "ST PAUL LA ROCHE", - "nomCommune": "ST PAUL LA ROCHE" + "codePostal": "02320", + "codeCommune": "02153", + "libelleAcheminement": "CESSIERES SUZY", + "nomCommune": "CESSIERES SUZY" }, { - "codePostal": "39600", - "codeCommune": "39176", - "libelleAcheminement": "CRAMANS", - "nomCommune": "CRAMANS" + "codePostal": "58000", + "codeCommune": "58278", + "libelleAcheminement": "SERMOISE SUR LOIRE", + "nomCommune": "SERMOISE SUR LOIRE" }, { - "codePostal": "52300", - "codeCommune": "52456", - "libelleAcheminement": "ST URBAIN MACONCOURT", - "nomCommune": "ST URBAIN MACONCOURT" + "codePostal": "47330", + "codeCommune": "47096", + "libelleAcheminement": "FERRENSAC", + "nomCommune": "FERRENSAC" }, { - "codePostal": "20152", - "codeCommune": "2A285", - "libelleAcheminement": "SORBOLLANO", - "nomCommune": "SORBOLLANO" + "codePostal": "50850", + "codeCommune": "50193", + "libelleAcheminement": "LE FRESNE PORET", + "nomCommune": "LE FRESNE PORET" }, { - "codePostal": "24320", - "codeCommune": "24482", - "libelleAcheminement": "ST PAUL LIZONNE", - "nomCommune": "ST PAUL LIZONNE" + "codePostal": "59740", + "codeCommune": "59174", + "libelleAcheminement": "DIMECHAUX", + "nomCommune": "DIMECHAUX" }, { - "codePostal": "39210", - "codeCommune": "39177", - "libelleAcheminement": "HAUTEROCHE", - "nomCommune": "HAUTEROCHE" + "codePostal": "02880", + "codeCommune": "02175", + "libelleAcheminement": "CHAVIGNY", + "nomCommune": "CHAVIGNY" }, { - "codePostal": "52800", - "codeCommune": "52459", - "libelleAcheminement": "SARCEY", - "nomCommune": "SARCEY" + "codePostal": "58700", + "codeCommune": "58279", + "libelleAcheminement": "SICHAMPS", + "nomCommune": "SICHAMPS" }, { - "codePostal": "20117", - "codeCommune": "2A326", - "libelleAcheminement": "TOLLA", - "nomCommune": "TOLLA" + "codePostal": "47600", + "codeCommune": "47098", + "libelleAcheminement": "FIEUX", + "nomCommune": "FIEUX" }, { - "codePostal": "24450", - "codeCommune": "24486", - "libelleAcheminement": "ST PIERRE DE FRUGIE", - "nomCommune": "ST PIERRE DE FRUGIE" + "codePostal": "50310", + "codeCommune": "50194", + "libelleAcheminement": "FRESVILLE", + "nomCommune": "FRESVILLE" }, { - "codePostal": "39570", - "codeCommune": "39177", - "libelleAcheminement": "HAUTEROCHE", - "nomCommune": "HAUTEROCHE" + "codePostal": "59500", + "codeCommune": "59178", + "libelleAcheminement": "DOUAI", + "nomCommune": "DOUAI" }, { - "codePostal": "52000", - "codeCommune": "52469", - "libelleAcheminement": "SEMOUTIERS MONTSAON", - "nomCommune": "SEMOUTIERS MONTSAON" + "codePostal": "02860", + "codeCommune": "02178", + "libelleAcheminement": "CHERMIZY AILLES", + "nomCommune": "CHERMIZY AILLES" }, { - "codePostal": "20160", - "codeCommune": "2A348", - "libelleAcheminement": "VICO", - "nomCommune": "VICO" + "codePostal": "58500", + "codeCommune": "58282", + "libelleAcheminement": "SURGY", + "nomCommune": "SURGY" }, { - "codePostal": "24800", - "codeCommune": "24496", - "libelleAcheminement": "ST ROMAIN ET ST CLEMENT", - "nomCommune": "ST ROMAIN ET ST CLEMENT" + "codePostal": "47360", + "codeCommune": "47104", + "libelleAcheminement": "FREGIMONT", + "nomCommune": "FREGIMONT" }, { - "codePostal": "39100", - "codeCommune": "39182", - "libelleAcheminement": "CRISSEY", - "nomCommune": "CRISSEY" + "codePostal": "50450", + "codeCommune": "50197", + "libelleAcheminement": "GAVRAY SUR SIENNE", + "nomCommune": "GAVRAY SUR SIENNE" }, { - "codePostal": "52320", - "codeCommune": "52480", - "libelleAcheminement": "SONCOURT SUR MARNE", - "nomCommune": "SONCOURT SUR MARNE" + "codePostal": "59500", + "codeCommune": "59178", + "libelleAcheminement": "DOUAI", + "nomCommune": "DOUAI" }, { - "codePostal": "20110", - "codeCommune": "2A349", - "libelleAcheminement": "VIGGIANELLO", - "nomCommune": "VIGGIANELLO" + "codePostal": "02000", + "codeCommune": "02183", + "libelleAcheminement": "CHEVREGNY", + "nomCommune": "CHEVREGNY" }, { - "codePostal": "24170", - "codeCommune": "24517", - "libelleAcheminement": "SALLES DE BELVES", - "nomCommune": "SALLES DE BELVES" + "codePostal": "58190", + "codeCommune": "58286", + "libelleAcheminement": "TANNAY", + "nomCommune": "TANNAY" }, { - "codePostal": "39260", - "codeCommune": "39184", - "libelleAcheminement": "LES CROZETS", - "nomCommune": "LES CROZETS" + "codePostal": "47200", + "codeCommune": "47108", + "libelleAcheminement": "GAUJAC", + "nomCommune": "GAUJAC" }, { - "codePostal": "52800", - "codeCommune": "52488", - "libelleAcheminement": "THIVET", - "nomCommune": "THIVET" + "codePostal": "50450", + "codeCommune": "50197", + "libelleAcheminement": "GAVRAY SUR SIENNE", + "nomCommune": "GAVRAY SUR SIENNE" }, { - "codePostal": "20173", - "codeCommune": "2A358", - "libelleAcheminement": "ZEVACO", - "nomCommune": "ZEVACO" + "codePostal": "59440", + "codeCommune": "59181", + "libelleAcheminement": "DOURLERS", + "nomCommune": "DOURLERS" }, { - "codePostal": "24200", - "codeCommune": "24520", - "libelleAcheminement": "SARLAT LA CANEDA", - "nomCommune": "SARLAT LA CANEDA" + "codePostal": "02880", + "codeCommune": "02198", + "libelleAcheminement": "CLAMECY", + "nomCommune": "CLAMECY" }, { - "codePostal": "39350", - "codeCommune": "39190", - "libelleAcheminement": "DAMPIERRE", - "nomCommune": "DAMPIERRE" + "codePostal": "58260", + "codeCommune": "58291", + "libelleAcheminement": "THIANGES", + "nomCommune": "THIANGES" }, { - "codePostal": "52240", - "codeCommune": "52489", - "libelleAcheminement": "THOL LES MILLIERES", - "nomCommune": "THOL LES MILLIERES" + "codePostal": "47250", + "codeCommune": "47115", + "libelleAcheminement": "GUERIN", + "nomCommune": "GUERIN" }, { - "codePostal": "20144", - "codeCommune": "2A362", - "libelleAcheminement": "ZONZA", - "nomCommune": "ZONZA" + "codePostal": "50560", + "codeCommune": "50215", + "libelleAcheminement": "GOUVILLE SUR MER", + "nomCommune": "GOUVILLE SUR MER" }, { - "codePostal": "24800", - "codeCommune": "24522", - "libelleAcheminement": "SARRAZAC", - "nomCommune": "SARRAZAC" + "codePostal": "59330", + "codeCommune": "59187", + "libelleAcheminement": "ECLAIBES", + "nomCommune": "ECLAIBES" }, { - "codePostal": "39700", - "codeCommune": "39190", - "libelleAcheminement": "DAMPIERRE", - "nomCommune": "DAMPIERRE" + "codePostal": "02600", + "codeCommune": "02201", + "libelleAcheminement": "COEUVRES ET VALSERY", + "nomCommune": "COEUVRES ET VALSERY" }, { - "codePostal": "52300", - "codeCommune": "52490", - "libelleAcheminement": "THONNANCE LES JOINVILLE", - "nomCommune": "THONNANCE LES JOINVILLE" + "codePostal": "58300", + "codeCommune": "58293", + "libelleAcheminement": "TOURY LURCY", + "nomCommune": "TOURY LURCY" }, { - "codePostal": "20270", - "codeCommune": "2B016", - "libelleAcheminement": "ANTISANTI", - "nomCommune": "ANTISANTI" + "codePostal": "47420", + "codeCommune": "47119", + "libelleAcheminement": "HOUEILLES", + "nomCommune": "HOUEILLES" }, { - "codePostal": "24240", - "codeCommune": "24549", - "libelleAcheminement": "THENAC", - "nomCommune": "THENAC" + "codePostal": "50400", + "codeCommune": "50218", + "libelleAcheminement": "GRANVILLE", + "nomCommune": "GRANVILLE" }, { - "codePostal": "39230", - "codeCommune": "39191", - "libelleAcheminement": "DARBONNAY", - "nomCommune": "DARBONNAY" + "codePostal": "59620", + "codeCommune": "59188", + "libelleAcheminement": "ECUELIN", + "nomCommune": "ECUELIN" }, { - "codePostal": "52230", - "codeCommune": "52491", - "libelleAcheminement": "THONNANCE LES MOULINS", - "nomCommune": "THONNANCE LES MOULINS" + "codePostal": "02370", + "codeCommune": "02210", + "libelleAcheminement": "CONDE SUR AISNE", + "nomCommune": "CONDE SUR AISNE" }, { - "codePostal": "20226", - "codeCommune": "2B034", - "libelleAcheminement": "BELGODERE", - "nomCommune": "BELGODERE" + "codePostal": "58130", + "codeCommune": "58300", + "libelleAcheminement": "URZY", + "nomCommune": "URZY" }, { - "codePostal": "24320", - "codeCommune": "24554", - "libelleAcheminement": "LA TOUR BLANCHE CERCLES", - "nomCommune": "LA TOUR BLANCHE CERCLES" + "codePostal": "47240", + "codeCommune": "47128", + "libelleAcheminement": "LAFOX", + "nomCommune": "LAFOX" }, { - "codePostal": "39270", - "codeCommune": "39200", - "libelleAcheminement": "DOMPIERRE SUR MONT", - "nomCommune": "DOMPIERRE SUR MONT" + "codePostal": "50450", + "codeCommune": "50221", + "libelleAcheminement": "GRIMESNIL", + "nomCommune": "GRIMESNIL" }, { - "codePostal": "52130", - "codeCommune": "52497", - "libelleAcheminement": "TROISFONTAINES LA VILLE", - "nomCommune": "TROISFONTAINES LA VILLE" + "codePostal": "59114", + "codeCommune": "59189", + "libelleAcheminement": "EECKE", + "nomCommune": "EECKE" }, { - "codePostal": "20235", - "codeCommune": "2B039", - "libelleAcheminement": "BISINCHI", - "nomCommune": "BISINCHI" + "codePostal": "02330", + "codeCommune": "02213", + "libelleAcheminement": "CONNIGIS", + "nomCommune": "CONNIGIS" }, { - "codePostal": "24750", - "codeCommune": "24557", - "libelleAcheminement": "TRELISSAC", - "nomCommune": "TRELISSAC" + "codePostal": "58210", + "codeCommune": "58304", + "libelleAcheminement": "VARZY", + "nomCommune": "VARZY" }, { - "codePostal": "39130", - "codeCommune": "39201", - "libelleAcheminement": "DOUCIER", - "nomCommune": "DOUCIER" + "codePostal": "47190", + "codeCommune": "47129", + "libelleAcheminement": "LAGARRIGUE", + "nomCommune": "LAGARRIGUE" }, { - "codePostal": "52130", - "codeCommune": "52497", - "libelleAcheminement": "TROISFONTAINES LA VILLE", - "nomCommune": "TROISFONTAINES LA VILLE" + "codePostal": "50310", + "codeCommune": "50227", + "libelleAcheminement": "LE HAM", + "nomCommune": "LE HAM" }, { - "codePostal": "20214", - "codeCommune": "2B049", - "libelleAcheminement": "CALENZANA", - "nomCommune": "CALENZANA" + "codePostal": "59580", + "codeCommune": "59192", + "libelleAcheminement": "EMERCHICOURT", + "nomCommune": "EMERCHICOURT" }, { - "codePostal": "24290", - "codeCommune": "24563", - "libelleAcheminement": "VALOJOULX", - "nomCommune": "VALOJOULX" + "codePostal": "02680", + "codeCommune": "02214", + "libelleAcheminement": "CONTESCOURT", + "nomCommune": "CONTESCOURT" }, { - "codePostal": "39700", - "codeCommune": "39205", - "libelleAcheminement": "ECLANS NENON", - "nomCommune": "ECLANS NENON" + "codePostal": "58150", + "codeCommune": "58307", + "libelleAcheminement": "VIELMANAY", + "nomCommune": "VIELMANAY" }, { - "codePostal": "52100", - "codeCommune": "52500", - "libelleAcheminement": "VALCOURT", - "nomCommune": "VALCOURT" + "codePostal": "47310", + "codeCommune": "47133", + "libelleAcheminement": "LAMONTJOIE", + "nomCommune": "LAMONTJOIE" }, { - "codePostal": "20252", - "codeCommune": "2B055", - "libelleAcheminement": "CAMPITELLO", - "nomCommune": "CAMPITELLO" + "codePostal": "50390", + "codeCommune": "50233", + "libelleAcheminement": "HAUTTEVILLE BOCAGE", + "nomCommune": "HAUTTEVILLE BOCAGE" }, { - "codePostal": "24600", - "codeCommune": "24564", - "libelleAcheminement": "VANXAINS", - "nomCommune": "VANXAINS" + "codePostal": "59169", + "codeCommune": "59199", + "libelleAcheminement": "ERCHIN", + "nomCommune": "ERCHIN" }, { - "codePostal": "39600", - "codeCommune": "39206", - "libelleAcheminement": "ECLEUX", - "nomCommune": "ECLEUX" + "codePostal": "02330", + "codeCommune": "02223", + "libelleAcheminement": "COURBOIN", + "nomCommune": "COURBOIN" }, { - "codePostal": "52200", - "codeCommune": "52507", - "libelleAcheminement": "VAUXBONS", - "nomCommune": "VAUXBONS" + "codePostal": "59149", + "codeCommune": "59003", + "libelleAcheminement": "AIBES", + "nomCommune": "AIBES" }, { - "codePostal": "20229", - "codeCommune": "2B067", - "libelleAcheminement": "CARPINETO", - "nomCommune": "CARPINETO" + "codePostal": "47170", + "codeCommune": "47134", + "libelleAcheminement": "LANNES", + "nomCommune": "LANNES" }, { - "codePostal": "24320", - "codeCommune": "24569", - "libelleAcheminement": "VENDOIRE", - "nomCommune": "VENDOIRE" + "codePostal": "50580", + "codeCommune": "50236", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "39250", - "codeCommune": "39214", - "libelleAcheminement": "ESSERVAL TARTRE", - "nomCommune": "ESSERVAL TARTRE" + "codePostal": "59213", + "codeCommune": "59204", + "libelleAcheminement": "ESCARMAIN", + "nomCommune": "ESCARMAIN" }, { - "codePostal": "52310", - "codeCommune": "52522", - "libelleAcheminement": "VIEVILLE", - "nomCommune": "VIEVILLE" + "codePostal": "02130", + "codeCommune": "02227", + "libelleAcheminement": "COURMONT", + "nomCommune": "COURMONT" }, { - "codePostal": "20250", - "codeCommune": "2B074", - "libelleAcheminement": "CASANOVA", - "nomCommune": "CASANOVA" + "codePostal": "59310", + "codeCommune": "59004", + "libelleAcheminement": "AIX EN PEVELE", + "nomCommune": "AIX EN PEVELE" }, { - "codePostal": "24380", - "codeCommune": "24576", - "libelleAcheminement": "VEYRINES DE VERGT", - "nomCommune": "VEYRINES DE VERGT" + "codePostal": "47310", + "codeCommune": "47137", + "libelleAcheminement": "LAPLUME", + "nomCommune": "LAPLUME" }, { - "codePostal": "39130", - "codeCommune": "39216", - "libelleAcheminement": "ETIVAL", - "nomCommune": "ETIVAL" + "codePostal": "50570", + "codeCommune": "50239", + "libelleAcheminement": "THEREVAL", + "nomCommune": "THEREVAL" }, { - "codePostal": "52120", - "codeCommune": "52525", - "libelleAcheminement": "VILLARS EN AZOIS", - "nomCommune": "VILLARS EN AZOIS" + "codePostal": "59320", + "codeCommune": "59208", + "libelleAcheminement": "ESCOBECQUES", + "nomCommune": "ESCOBECQUES" }, { - "codePostal": "20225", - "codeCommune": "2B084", - "libelleAcheminement": "CATERI", - "nomCommune": "CATERI" + "codePostal": "02160", + "codeCommune": "02234", + "libelleAcheminement": "CRAONNE", + "nomCommune": "CRAONNE" }, { - "codePostal": "25530", - "codeCommune": "25007", - "libelleAcheminement": "ADAM LES VERCEL", - "nomCommune": "ADAM LES VERCEL" + "codePostal": "59144", + "codeCommune": "59006", + "libelleAcheminement": "AMFROIPRET", + "nomCommune": "AMFROIPRET" }, { - "codePostal": "39570", - "codeCommune": "39217", - "libelleAcheminement": "L ETOILE", - "nomCommune": "L ETOILE" + "codePostal": "47600", + "codeCommune": "47139", + "libelleAcheminement": "LASSERRE", + "nomCommune": "LASSERRE" }, { - "codePostal": "52130", - "codeCommune": "52528", - "libelleAcheminement": "VILLE EN BLAISOIS", - "nomCommune": "VILLE EN BLAISOIS" + "codePostal": "50340", + "codeCommune": "50240", + "libelleAcheminement": "HELLEVILLE", + "nomCommune": "HELLEVILLE" }, { - "codePostal": "20230", - "codeCommune": "2B088", - "libelleAcheminement": "CHIATRA DI VERDE", - "nomCommune": "CHIATRA" + "codePostal": "59400", + "codeCommune": "59213", + "libelleAcheminement": "ESTOURMEL", + "nomCommune": "ESTOURMEL" }, { - "codePostal": "25330", - "codeCommune": "25015", - "libelleAcheminement": "AMANCEY", - "nomCommune": "AMANCEY" + "codePostal": "02160", + "codeCommune": "02235", + "libelleAcheminement": "CRAONNELLE", + "nomCommune": "CRAONNELLE" }, { - "codePostal": "39700", - "codeCommune": "39218", - "libelleAcheminement": "ETREPIGNEY", - "nomCommune": "ETREPIGNEY" + "codePostal": "59491", + "codeCommune": "59009", + "libelleAcheminement": "VILLENEUVE D ASCQ", + "nomCommune": "VILLENEUVE D ASCQ" }, { - "codePostal": "52190", - "codeCommune": "52529", - "libelleAcheminement": "VILLEGUSIEN LE LAC", - "nomCommune": "VILLEGUSIEN LE LAC" + "codePostal": "47150", + "codeCommune": "47141", + "libelleAcheminement": "LAUSSOU", + "nomCommune": "LAUSSOU" }, { - "codePostal": "20226", - "codeCommune": "2B097", - "libelleAcheminement": "COSTA", - "nomCommune": "COSTA" + "codePostal": "50320", + "codeCommune": "50247", + "libelleAcheminement": "HOCQUIGNY", + "nomCommune": "HOCQUIGNY" }, { - "codePostal": "25250", - "codeCommune": "25019", - "libelleAcheminement": "APPENANS", - "nomCommune": "APPENANS" + "codePostal": "59990", + "codeCommune": "59215", + "libelleAcheminement": "ESTREUX", + "nomCommune": "ESTREUX" }, { - "codePostal": "39700", - "codeCommune": "39220", - "libelleAcheminement": "FALLETANS", - "nomCommune": "FALLETANS" + "codePostal": "02380", + "codeCommune": "02236", + "libelleAcheminement": "CRECY AU MONT", + "nomCommune": "CRECY AU MONT" }, { - "codePostal": "52190", - "codeCommune": "52529", - "libelleAcheminement": "VILLEGUSIEN LE LAC", - "nomCommune": "VILLEGUSIEN LE LAC" + "codePostal": "59186", + "codeCommune": "59012", + "libelleAcheminement": "ANOR", + "nomCommune": "ANOR" }, { - "codePostal": "20225", - "codeCommune": "2B112", - "libelleAcheminement": "FELICETO", - "nomCommune": "FELICETO" + "codePostal": "47430", + "codeCommune": "47159", + "libelleAcheminement": "LE MAS D AGENAIS", + "nomCommune": "LE MAS D AGENAIS" }, { - "codePostal": "25680", - "codeCommune": "25038", - "libelleAcheminement": "AVILLEY", - "nomCommune": "AVILLEY" + "codePostal": "50540", + "codeCommune": "50256", + "libelleAcheminement": "ISIGNY LE BUAT", + "nomCommune": "ISIGNY LE BUAT" }, { - "codePostal": "39800", - "codeCommune": "39225", - "libelleAcheminement": "LE FIED", - "nomCommune": "LE FIED" + "codePostal": "59161", + "codeCommune": "59216", + "libelleAcheminement": "ESWARS", + "nomCommune": "ESWARS" }, { - "codePostal": "52600", - "codeCommune": "52529", - "libelleAcheminement": "VILLEGUSIEN LE LAC", - "nomCommune": "VILLEGUSIEN LE LAC" + "codePostal": "02480", + "codeCommune": "02246", + "libelleAcheminement": "CUGNY", + "nomCommune": "CUGNY" }, { - "codePostal": "20240", - "codeCommune": "2B123", - "libelleAcheminement": "GHISONACCIA", - "nomCommune": "GHISONACCIA" + "codePostal": "59380", + "codeCommune": "59016", + "libelleAcheminement": "ARMBOUTS CAPPEL", + "nomCommune": "ARMBOUTS CAPPEL" }, { - "codePostal": "25420", - "codeCommune": "25043", - "libelleAcheminement": "BART", - "nomCommune": "BART" + "codePostal": "47370", + "codeCommune": "47160", + "libelleAcheminement": "MASQUIERES", + "nomCommune": "MASQUIERES" }, { - "codePostal": "39520", - "codeCommune": "39227", - "libelleAcheminement": "FONCINE LE BAS", - "nomCommune": "FONCINE LE BAS" + "codePostal": "50520", + "codeCommune": "50260", + "libelleAcheminement": "JUVIGNY LES VALLEES", + "nomCommune": "JUVIGNY LES VALLEES" }, { - "codePostal": "52190", - "codeCommune": "52536", - "libelleAcheminement": "VILLIERS LES APREY", - "nomCommune": "VILLIERS LES APREY" + "codePostal": "59247", + "codeCommune": "59224", + "libelleAcheminement": "FECHAIN", + "nomCommune": "FECHAIN" }, { - "codePostal": "20243", - "codeCommune": "2B135", - "libelleAcheminement": "ISOLACCIO DI FIUMORBO", - "nomCommune": "ISOLACCIO DI FIUMORBO" + "codePostal": "02350", + "codeCommune": "02248", + "libelleAcheminement": "CUIRIEUX", + "nomCommune": "CUIRIEUX" }, { - "codePostal": "25380", - "codeCommune": "25051", - "libelleAcheminement": "BELLEHERBE", - "nomCommune": "BELLEHERBE" + "codePostal": "59551", + "codeCommune": "59022", + "libelleAcheminement": "ATTICHES", + "nomCommune": "ATTICHES" }, { - "codePostal": "39150", - "codeCommune": "39232", - "libelleAcheminement": "FORT DU PLASNE", - "nomCommune": "FORT DU PLASNE" + "codePostal": "47340", + "codeCommune": "47171", + "libelleAcheminement": "MONBALEN", + "nomCommune": "MONBALEN" }, { - "codePostal": "52800", - "codeCommune": "52541", - "libelleAcheminement": "VITRY LES NOGENT", - "nomCommune": "VITRY LES NOGENT" + "codePostal": "50520", + "codeCommune": "50260", + "libelleAcheminement": "JUVIGNY LES VALLEES", + "nomCommune": "JUVIGNY LES VALLEES" }, { - "codePostal": "20244", - "codeCommune": "2B137", - "libelleAcheminement": "LANO", - "nomCommune": "LANO" + "codePostal": "59740", + "codeCommune": "59226", + "libelleAcheminement": "FELLERIES", + "nomCommune": "FELLERIES" }, { - "codePostal": "25000", - "codeCommune": "25056", - "libelleAcheminement": "BESANCON", - "nomCommune": "BESANCON" + "codePostal": "02160", + "codeCommune": "02250", + "libelleAcheminement": "CUIRY LES CHAUDARDES", + "nomCommune": "CUIRY LES CHAUDARDES" }, { - "codePostal": "39230", - "codeCommune": "39236", - "libelleAcheminement": "FRANCHEVILLE", - "nomCommune": "FRANCHEVILLE" + "codePostal": "59165", + "codeCommune": "59024", + "libelleAcheminement": "AUBERCHICOURT", + "nomCommune": "AUBERCHICOURT" }, { - "codePostal": "52320", - "codeCommune": "52547", - "libelleAcheminement": "VOUECOURT", - "nomCommune": "VOUECOURT" + "codePostal": "47380", + "codeCommune": "47173", + "libelleAcheminement": "MONCLAR", + "nomCommune": "MONCLAR" }, { - "codePostal": "20245", - "codeCommune": "2B153", - "libelleAcheminement": "MANSO", - "nomCommune": "MANSO" + "codePostal": "50600", + "codeCommune": "50263", + "libelleAcheminement": "LAPENTY", + "nomCommune": "LAPENTY" }, { - "codePostal": "25720", - "codeCommune": "25058", - "libelleAcheminement": "BEURE", - "nomCommune": "BEURE" + "codePostal": "59440", + "codeCommune": "59233", + "libelleAcheminement": "FLAUMONT WAUDRECHIES", + "nomCommune": "FLAUMONT WAUDRECHIES" }, { - "codePostal": "39570", - "codeCommune": "39241", - "libelleAcheminement": "FREBUANS", - "nomCommune": "FREBUANS" + "codePostal": "02160", + "codeCommune": "02252", + "libelleAcheminement": "CUISSY ET GENY", + "nomCommune": "CUISSY ET GENY" }, { - "codePostal": "52130", - "codeCommune": "52550", - "libelleAcheminement": "WASSY", - "nomCommune": "WASSY" + "codePostal": "59310", + "codeCommune": "59029", + "libelleAcheminement": "AUCHY LEZ ORCHIES", + "nomCommune": "AUCHY LEZ ORCHIES" }, { - "codePostal": "20270", - "codeCommune": "2B155", - "libelleAcheminement": "MATRA", - "nomCommune": "MATRA" + "codePostal": "47150", + "codeCommune": "47175", + "libelleAcheminement": "MONFLANQUIN", + "nomCommune": "MONFLANQUIN" }, { - "codePostal": "25250", - "codeCommune": "25059", - "libelleAcheminement": "BEUTAL", - "nomCommune": "BEUTAL" + "codePostal": "50250", + "codeCommune": "50273", + "libelleAcheminement": "MONTSENELLE", + "nomCommune": "MONTSENELLE" }, { - "codePostal": "39120", - "codeCommune": "39245", - "libelleAcheminement": "GATEY", - "nomCommune": "GATEY" + "codePostal": "59400", + "codeCommune": "59244", + "libelleAcheminement": "FONTAINE NOTRE DAME", + "nomCommune": "FONTAINE NOTRE DAME" }, { - "codePostal": "53210", - "codeCommune": "53007", - "libelleAcheminement": "ARGENTRE", - "nomCommune": "ARGENTRE" + "codePostal": "02200", + "codeCommune": "02253", + "libelleAcheminement": "CUISY EN ALMONT", + "nomCommune": "CUISY EN ALMONT" }, { - "codePostal": "20259", - "codeCommune": "2B156", - "libelleAcheminement": "MAUSOLEO", - "nomCommune": "MAUSOLEO" + "codePostal": "59570", + "codeCommune": "59031", + "libelleAcheminement": "AUDIGNIES", + "nomCommune": "AUDIGNIES" }, { - "codePostal": "25520", - "codeCommune": "25060", - "libelleAcheminement": "BIANS LES USIERS", - "nomCommune": "BIANS LES USIERS" + "codePostal": "47210", + "codeCommune": "47184", + "libelleAcheminement": "MONTAUT", + "nomCommune": "MONTAUT" }, { - "codePostal": "39570", - "codeCommune": "39250", - "libelleAcheminement": "GERUGE", - "nomCommune": "GERUGE" + "codePostal": "50530", + "codeCommune": "50276", + "libelleAcheminement": "LOLIF", + "nomCommune": "LOLIF" }, { - "codePostal": "53170", - "codeCommune": "53009", - "libelleAcheminement": "ARQUENAY", - "nomCommune": "ARQUENAY" + "codePostal": "59236", + "codeCommune": "59252", + "libelleAcheminement": "FRELINGHIEN", + "nomCommune": "FRELINGHIEN" }, { - "codePostal": "20218", - "codeCommune": "2B169", - "libelleAcheminement": "MOROSAGLIA", - "nomCommune": "MOROSAGLIA" + "codePostal": "02600", + "codeCommune": "02254", + "libelleAcheminement": "CUTRY", + "nomCommune": "CUTRY" }, { - "codePostal": "25250", - "codeCommune": "25066", - "libelleAcheminement": "BLUSSANGEAUX", - "nomCommune": "BLUSSANGEAUX" + "codePostal": "59440", + "codeCommune": "59036", + "libelleAcheminement": "AVESNES SUR HELPE", + "nomCommune": "AVESNES SUR HELPE" }, { - "codePostal": "39100", - "codeCommune": "39252", - "libelleAcheminement": "GEVRY", - "nomCommune": "GEVRY" + "codePostal": "47800", + "codeCommune": "47188", + "libelleAcheminement": "MONTIGNAC DE LAUZUN", + "nomCommune": "MONTIGNAC DE LAUZUN" }, { - "codePostal": "53340", - "codeCommune": "53017", - "libelleAcheminement": "VAL DU MAINE", - "nomCommune": "VAL DU MAINE" + "codePostal": "50870", + "codeCommune": "50282", + "libelleAcheminement": "LE LUOT", + "nomCommune": "LE LUOT" }, { - "codePostal": "20219", - "codeCommune": "2B171", - "libelleAcheminement": "MURACCIOLE", - "nomCommune": "MURACCIOLE" + "codePostal": "59268", + "codeCommune": "59255", + "libelleAcheminement": "FRESSIES", + "nomCommune": "FRESSIES" }, { - "codePostal": "25560", - "codeCommune": "25075", - "libelleAcheminement": "BONNEVAUX", - "nomCommune": "BONNEVAUX" + "codePostal": "02140", + "codeCommune": "02256", + "libelleAcheminement": "DAGNY LAMBERCY", + "nomCommune": "DAGNY LAMBERCY" }, { - "codePostal": "39320", - "codeCommune": "39253", - "libelleAcheminement": "GIGNY", - "nomCommune": "GIGNY" + "codePostal": "59138", + "codeCommune": "59041", + "libelleAcheminement": "BACHANT", + "nomCommune": "BACHANT" }, { - "codePostal": "53340", - "codeCommune": "53017", - "libelleAcheminement": "VAL DU MAINE", - "nomCommune": "VAL DU MAINE" + "codePostal": "47290", + "codeCommune": "47192", + "libelleAcheminement": "MONVIEL", + "nomCommune": "MONVIEL" }, { - "codePostal": "20239", - "codeCommune": "2B172", - "libelleAcheminement": "MURATO", - "nomCommune": "MURATO" + "codePostal": "50260", + "codeCommune": "50285", + "libelleAcheminement": "MAGNEVILLE", + "nomCommune": "MAGNEVILLE" }, { - "codePostal": "25360", - "codeCommune": "25078", - "libelleAcheminement": "BOUCLANS", - "nomCommune": "BOUCLANS" + "codePostal": "59270", + "codeCommune": "59262", + "libelleAcheminement": "GODEWAERSVELDE", + "nomCommune": "GODEWAERSVELDE" }, { - "codePostal": "39600", - "codeCommune": "39259", - "libelleAcheminement": "GRANGE DE VAIVRE", - "nomCommune": "GRANGE DE VAIVRE" + "codePostal": "02470", + "codeCommune": "02258", + "libelleAcheminement": "DAMMARD", + "nomCommune": "DAMMARD" }, { - "codePostal": "53290", - "codeCommune": "53029", - "libelleAcheminement": "BIERNE LES VILLAGES", - "nomCommune": "BIERNE LES VILLAGES" + "codePostal": "59270", + "codeCommune": "59043", + "libelleAcheminement": "BAILLEUL", + "nomCommune": "BAILLEUL" }, { - "codePostal": "20232", - "codeCommune": "2B185", - "libelleAcheminement": "OLETTA", - "nomCommune": "OLETTA" + "codePostal": "47290", + "codeCommune": "47193", + "libelleAcheminement": "MOULINET", + "nomCommune": "MOULINET" }, { - "codePostal": "25250", - "codeCommune": "25083", - "libelleAcheminement": "BOURNOIS", - "nomCommune": "BOURNOIS" + "codePostal": "50300", + "codeCommune": "50288", + "libelleAcheminement": "MARCEY LES GREVES", + "nomCommune": "MARCEY LES GREVES" }, { - "codePostal": "39320", - "codeCommune": "39261", - "libelleAcheminement": "GRAYE ET CHARNAY", - "nomCommune": "GRAYE ET CHARNAY" + "codePostal": "59253", + "codeCommune": "59268", + "libelleAcheminement": "LA GORGUE", + "nomCommune": "LA GORGUE" }, { - "codePostal": "53350", - "codeCommune": "53041", - "libelleAcheminement": "BRAINS SUR LES MARCHES", - "nomCommune": "BRAINS SUR LES MARCHES" + "codePostal": "02600", + "codeCommune": "02259", + "libelleAcheminement": "DAMPLEUX", + "nomCommune": "DAMPLEUX" }, { - "codePostal": "20217", - "codeCommune": "2B187", - "libelleAcheminement": "OLMETA DI CAPOCORSO", - "nomCommune": "OLMETA DI CAPOCORSO" + "codePostal": "59132", + "codeCommune": "59045", + "libelleAcheminement": "BAIVES", + "nomCommune": "BAIVES" }, { - "codePostal": "25340", - "codeCommune": "25087", - "libelleAcheminement": "BRANNE", - "nomCommune": "BRANNE" + "codePostal": "47420", + "codeCommune": "47208", + "libelleAcheminement": "POMPOGNE", + "nomCommune": "POMPOGNE" }, { - "codePostal": "39310", - "codeCommune": "39274", - "libelleAcheminement": "LAJOUX", - "nomCommune": "LAJOUX" + "codePostal": "50220", + "codeCommune": "50290", + "libelleAcheminement": "MARCILLY", + "nomCommune": "MARCILLY" }, { - "codePostal": "53640", - "codeCommune": "53051", - "libelleAcheminement": "CHAMPEON", - "nomCommune": "CHAMPEON" + "codePostal": "59152", + "codeCommune": "59275", + "libelleAcheminement": "GRUSON", + "nomCommune": "GRUSON" }, { - "codePostal": "20232", - "codeCommune": "2B188", - "libelleAcheminement": "OLMETA DI TUDA", - "nomCommune": "OLMETA DI TUDA" + "codePostal": "02220", + "codeCommune": "02263", + "libelleAcheminement": "DHUIZEL", + "nomCommune": "DHUIZEL" }, { - "codePostal": "25530", - "codeCommune": "25089", - "libelleAcheminement": "BREMONDANS", - "nomCommune": "BREMONDANS" + "codePostal": "59480", + "codeCommune": "59051", + "libelleAcheminement": "LA BASSEE", + "nomCommune": "LA BASSEE" }, { - "codePostal": "39310", - "codeCommune": "39275", - "libelleAcheminement": "LAMOURA", - "nomCommune": "LAMOURA" + "codePostal": "47300", + "codeCommune": "47215", + "libelleAcheminement": "PUJOLS", + "nomCommune": "PUJOLS" }, { - "codePostal": "53300", - "codeCommune": "53055", - "libelleAcheminement": "CHANTRIGNE", - "nomCommune": "CHANTRIGNE" + "codePostal": "50410", + "codeCommune": "50295", + "libelleAcheminement": "MAUPERTUIS", + "nomCommune": "MAUPERTUIS" }, { - "codePostal": "20290", - "codeCommune": "2B192", - "libelleAcheminement": "OLMO", - "nomCommune": "OLMO" + "codePostal": "59250", + "codeCommune": "59279", + "libelleAcheminement": "HALLUIN", + "nomCommune": "HALLUIN" }, { - "codePostal": "25120", - "codeCommune": "25091", - "libelleAcheminement": "LES BRESEUX", - "nomCommune": "LES BRESEUX" + "codePostal": "02340", + "codeCommune": "02264", + "libelleAcheminement": "DIZY LE GROS", + "nomCommune": "DIZY LE GROS" }, { - "codePostal": "39170", - "codeCommune": "39286", - "libelleAcheminement": "LAVANS LES ST CLAUDE", - "nomCommune": "LAVANS LES ST CLAUDE" + "codePostal": "59135", + "codeCommune": "59064", + "libelleAcheminement": "BELLAING", + "nomCommune": "BELLAING" }, { - "codePostal": "53230", - "codeCommune": "53058", - "libelleAcheminement": "LA CHAPELLE CRAONNAISE", - "nomCommune": "LA CHAPELLE CRAONNAISE" + "codePostal": "47150", + "codeCommune": "47230", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "20251", - "codeCommune": "2B201", - "libelleAcheminement": "PANCHERACCIA", - "nomCommune": "PANCHERACCIA" + "codePostal": "50520", + "codeCommune": "50300", + "libelleAcheminement": "LE MESNIL ADELEE", + "nomCommune": "LE MESNIL ADELEE" }, { - "codePostal": "25380", - "codeCommune": "25095", - "libelleAcheminement": "BRETONVILLERS", - "nomCommune": "BRETONVILLERS" + "codePostal": "59198", + "codeCommune": "59285", + "libelleAcheminement": "HASPRES", + "nomCommune": "HASPRES" }, { - "codePostal": "39240", - "codeCommune": "39290", - "libelleAcheminement": "VALZIN EN PETITE MONTAGNE", - "nomCommune": "VALZIN EN PETITE MONTAGNE" + "codePostal": "02360", + "codeCommune": "02266", + "libelleAcheminement": "DOLIGNON", + "nomCommune": "DOLIGNON" }, { - "codePostal": "53150", - "codeCommune": "53059", - "libelleAcheminement": "LA CHAPELLE RAINSOUIN", - "nomCommune": "LA CHAPELLE RAINSOUIN" + "codePostal": "59145", + "codeCommune": "59068", + "libelleAcheminement": "BERLAIMONT", + "nomCommune": "BERLAIMONT" }, { - "codePostal": "20229", - "codeCommune": "2B202", - "libelleAcheminement": "PARATA", - "nomCommune": "PARATA" + "codePostal": "47350", + "codeCommune": "47231", + "libelleAcheminement": "ST AVIT", + "nomCommune": "ST AVIT" }, { - "codePostal": "25240", - "codeCommune": "25096", - "libelleAcheminement": "BREY ET MAISON DU BOIS", - "nomCommune": "BREY ET MAISON DU BOIS" + "codePostal": "50110", + "codeCommune": "50305", + "libelleAcheminement": "LE MESNIL AU VAL", + "nomCommune": "LE MESNIL AU VAL" }, { - "codePostal": "39120", - "codeCommune": "39299", - "libelleAcheminement": "LONGWY SUR LE DOUBS", - "nomCommune": "LONGWY SUR LE DOUBS" + "codePostal": "59440", + "codeCommune": "59290", + "libelleAcheminement": "HAUT LIEU", + "nomCommune": "HAUT LIEU" }, { - "codePostal": "53200", - "codeCommune": "53062", - "libelleAcheminement": "CHATEAU GONTIER SUR MAYENNE", - "nomCommune": "CHATEAU GONTIER SUR MAYENNE" + "codePostal": "02540", + "codeCommune": "02281", + "libelleAcheminement": "L EPINE AUX BOIS", + "nomCommune": "L EPINE AUX BOIS" }, { - "codePostal": "20234", - "codeCommune": "2B208", - "libelleAcheminement": "PERELLI", - "nomCommune": "PERELLI" + "codePostal": "59600", + "codeCommune": "59072", + "libelleAcheminement": "BERSILLIES", + "nomCommune": "BERSILLIES" }, { - "codePostal": "25170", - "codeCommune": "25101", - "libelleAcheminement": "BURGILLE", - "nomCommune": "BURGILLE" + "codePostal": "47270", + "codeCommune": "47234", + "libelleAcheminement": "ST CAPRAIS DE LERM", + "nomCommune": "ST CAPRAIS DE LERM" }, { - "codePostal": "39260", - "codeCommune": "39307", - "libelleAcheminement": "MAISOD", - "nomCommune": "MAISOD" + "codePostal": "50670", + "codeCommune": "50312", + "libelleAcheminement": "LE MESNIL GILBERT", + "nomCommune": "LE MESNIL GILBERT" }, { - "codePostal": "53200", - "codeCommune": "53062", - "libelleAcheminement": "CHATEAU GONTIER SUR MAYENNE", - "nomCommune": "CHATEAU GONTIER SUR MAYENNE" + "codePostal": "59268", + "codeCommune": "59294", + "libelleAcheminement": "HAYNECOURT", + "nomCommune": "HAYNECOURT" }, { - "codePostal": "20234", - "codeCommune": "2B216", - "libelleAcheminement": "PIAZZALI", - "nomCommune": "PIAZZALI" + "codePostal": "02000", + "codeCommune": "02294", + "libelleAcheminement": "ETOUVELLES", + "nomCommune": "ETOUVELLES" }, { - "codePostal": "25170", - "codeCommune": "25101", - "libelleAcheminement": "BURGILLE", - "nomCommune": "BURGILLE" + "codePostal": "59270", + "codeCommune": "59073", + "libelleAcheminement": "BERTHEN", + "nomCommune": "BERTHEN" }, { - "codePostal": "39240", - "codeCommune": "39312", - "libelleAcheminement": "MARIGNA SUR VALOUSE", - "nomCommune": "MARIGNA SUR VALOUSE" + "codePostal": "47130", + "codeCommune": "47249", + "libelleAcheminement": "ST LAURENT", + "nomCommune": "ST LAURENT" }, { - "codePostal": "53250", - "codeCommune": "53080", - "libelleAcheminement": "COUPTRAIN", - "nomCommune": "COUPTRAIN" + "codePostal": "50510", + "codeCommune": "50327", + "libelleAcheminement": "LA MEURDRAQUIERE", + "nomCommune": "LA MEURDRAQUIERE" }, { - "codePostal": "20229", - "codeCommune": "2B217", - "libelleAcheminement": "PIAZZOLE", - "nomCommune": "PIAZZOLE" + "codePostal": "59190", + "codeCommune": "59295", + "libelleAcheminement": "HAZEBROUCK", + "nomCommune": "HAZEBROUCK" }, { - "codePostal": "25120", - "codeCommune": "25108", - "libelleAcheminement": "CERNAY L EGLISE", - "nomCommune": "CERNAY L EGLISE" + "codePostal": "02590", + "codeCommune": "02296", + "libelleAcheminement": "ETREILLERS", + "nomCommune": "ETREILLERS" }, { - "codePostal": "39250", - "codeCommune": "39331", - "libelleAcheminement": "MIGNOVILLARD", - "nomCommune": "MIGNOVILLARD" + "codePostal": "59166", + "codeCommune": "59098", + "libelleAcheminement": "BOUSBECQUE", + "nomCommune": "BOUSBECQUE" }, { - "codePostal": "53540", - "codeCommune": "53088", - "libelleAcheminement": "CUILLE", - "nomCommune": "CUILLE" + "codePostal": "47160", + "codeCommune": "47250", + "libelleAcheminement": "ST LEGER", + "nomCommune": "ST LEGER" }, { - "codePostal": "20218", - "codeCommune": "2B220", - "libelleAcheminement": "PIEDIGRIGGIO", - "nomCommune": "PIEDIGRIGGIO" + "codePostal": "50410", + "codeCommune": "50338", + "libelleAcheminement": "MONTBRAY", + "nomCommune": "MONTBRAY" }, { - "codePostal": "25300", - "codeCommune": "25110", - "libelleAcheminement": "CHAFFOIS", - "nomCommune": "CHAFFOIS" + "codePostal": "59134", + "codeCommune": "59303", + "libelleAcheminement": "HERLIES", + "nomCommune": "HERLIES" }, { - "codePostal": "39250", - "codeCommune": "39331", - "libelleAcheminement": "MIGNOVILLARD", - "nomCommune": "MIGNOVILLARD" + "codePostal": "02270", + "codeCommune": "02306", + "libelleAcheminement": "LA FERTE CHEVRESIS", + "nomCommune": "LA FERTE CHEVRESIS" }, { - "codePostal": "53400", - "codeCommune": "53090", - "libelleAcheminement": "DENAZE", - "nomCommune": "DENAZE" + "codePostal": "59870", + "codeCommune": "59105", + "libelleAcheminement": "BOUVIGNIES", + "nomCommune": "BOUVIGNIES" }, { - "codePostal": "20230", - "codeCommune": "2B225", - "libelleAcheminement": "PIETRA DI VERDE", - "nomCommune": "PIETRA DI VERDE" + "codePostal": "47700", + "codeCommune": "47254", + "libelleAcheminement": "ST MARTIN CURTON", + "nomCommune": "ST MARTIN CURTON" }, { - "codePostal": "25220", - "codeCommune": "25111", - "libelleAcheminement": "CHALEZE", - "nomCommune": "CHALEZE" + "codePostal": "50490", + "codeCommune": "50340", + "libelleAcheminement": "MONTCUIT", + "nomCommune": "MONTCUIT" }, { - "codePostal": "39230", - "codeCommune": "39342", - "libelleAcheminement": "MONAY", - "nomCommune": "MONAY" + "codePostal": "59740", + "codeCommune": "59306", + "libelleAcheminement": "HESTRUD", + "nomCommune": "HESTRUD" }, { - "codePostal": "53190", - "codeCommune": "53093", - "libelleAcheminement": "LA DOREE", - "nomCommune": "LA DOREE" + "codePostal": "02450", + "codeCommune": "02308", + "libelleAcheminement": "FESMY LE SART", + "nomCommune": "FESMY LE SART" }, { - "codePostal": "20234", - "codeCommune": "2B227", - "libelleAcheminement": "PIETRICAGGIO", - "nomCommune": "PIETRICAGGIO" + "codePostal": "59470", + "codeCommune": "59111", + "libelleAcheminement": "BROXEELE", + "nomCommune": "BROXEELE" }, { - "codePostal": "25170", - "codeCommune": "25119", - "libelleAcheminement": "CHAMPVANS LES MOULINS", - "nomCommune": "CHAMPVANS LES MOULINS" + "codePostal": "47270", + "codeCommune": "47260", + "libelleAcheminement": "ST MAURIN", + "nomCommune": "ST MAURIN" }, { - "codePostal": "39320", - "codeCommune": "39353", - "libelleAcheminement": "MONTFLEUR", - "nomCommune": "MONTFLEUR" + "codePostal": "50810", + "codeCommune": "50351", + "libelleAcheminement": "MONTRABOT", + "nomCommune": "MONTRABOT" }, { - "codePostal": "53150", - "codeCommune": "53097", - "libelleAcheminement": "EVRON", - "nomCommune": "EVRON" + "codePostal": "59980", + "codeCommune": "59311", + "libelleAcheminement": "HONNECHY", + "nomCommune": "HONNECHY" }, { - "codePostal": "20230", - "codeCommune": "2B242", - "libelleAcheminement": "POGGIO MEZZANA", - "nomCommune": "POGGIO MEZZANA" + "codePostal": "02840", + "codeCommune": "02309", + "libelleAcheminement": "FESTIEUX", + "nomCommune": "FESTIEUX" }, { - "codePostal": "25380", - "codeCommune": "25125", - "libelleAcheminement": "CHARMOILLE", - "nomCommune": "CHARMOILLE" + "codePostal": "59144", + "codeCommune": "59116", + "libelleAcheminement": "BRY", + "nomCommune": "BRY" }, { - "codePostal": "39570", - "codeCommune": "39362", - "libelleAcheminement": "MONTMOROT", - "nomCommune": "MONTMOROT" + "codePostal": "47330", + "codeCommune": "47272", + "libelleAcheminement": "ST QUENTIN DU DROPT", + "nomCommune": "ST QUENTIN DU DROPT" }, { - "codePostal": "53260", - "codeCommune": "53099", - "libelleAcheminement": "FORCE", - "nomCommune": "FORCE" + "codePostal": "50140", + "codeCommune": "50359", + "libelleAcheminement": "MORTAIN BOCAGE", + "nomCommune": "MORTAIN BOCAGE" }, { - "codePostal": "20218", - "codeCommune": "2B244", - "libelleAcheminement": "POPOLASCA", - "nomCommune": "POPOLASCA" + "codePostal": "59111", + "codeCommune": "59313", + "libelleAcheminement": "HORDAIN", + "nomCommune": "HORDAIN" }, { - "codePostal": "25440", - "codeCommune": "25126", - "libelleAcheminement": "CHARNAY", - "nomCommune": "CHARNAY" + "codePostal": "02260", + "codeCommune": "02312", + "libelleAcheminement": "LA FLAMENGRIE", + "nomCommune": "LA FLAMENGRIE" }, { - "codePostal": "39300", - "codeCommune": "39364", - "libelleAcheminement": "MONTROND", - "nomCommune": "MONTROND" + "codePostal": "59267", + "codeCommune": "59125", + "libelleAcheminement": "CANTAING SUR ESCAUT", + "nomCommune": "CANTAING SUR ESCAUT" }, { - "codePostal": "53150", - "codeCommune": "53105", - "libelleAcheminement": "GESNES", - "nomCommune": "GESNES" + "codePostal": "47360", + "codeCommune": "47276", + "libelleAcheminement": "ST SARDOS", + "nomCommune": "ST SARDOS" }, { - "codePostal": "20237", - "codeCommune": "2B246", - "libelleAcheminement": "LA PORTA", - "nomCommune": "LA PORTA" + "codePostal": "50140", + "codeCommune": "50359", + "libelleAcheminement": "MORTAIN BOCAGE", + "nomCommune": "MORTAIN BOCAGE" }, { - "codePostal": "25530", - "codeCommune": "25141", - "libelleAcheminement": "CHAUX LES PASSAVANT", - "nomCommune": "CHAUX LES PASSAVANT" + "codePostal": "59570", + "codeCommune": "59315", + "libelleAcheminement": "HOUDAIN LEZ BAVAY", + "nomCommune": "HOUDAIN LEZ BAVAY" }, { - "codePostal": "39300", - "codeCommune": "39366", - "libelleAcheminement": "MONT SUR MONNET", - "nomCommune": "MONT SUR MONNET" + "codePostal": "02120", + "codeCommune": "02313", + "libelleAcheminement": "FLAVIGNY LE GRAND ET BEAURAIN", + "nomCommune": "FLAVIGNY LE GRAND ET BEAURAIN" }, { - "codePostal": "53120", - "codeCommune": "53107", - "libelleAcheminement": "GORRON", - "nomCommune": "GORRON" + "codePostal": "59169", + "codeCommune": "59126", + "libelleAcheminement": "CANTIN", + "nomCommune": "CANTIN" }, { - "codePostal": "20290", - "codeCommune": "2B250", - "libelleAcheminement": "PRUNELLI DI CASACCONI", - "nomCommune": "PRUNELLI DI CASACCONI" + "codePostal": "47140", + "codeCommune": "47280", + "libelleAcheminement": "ST SYLVESTRE SUR LOT", + "nomCommune": "ST SYLVESTRE SUR LOT" }, { - "codePostal": "25320", - "codeCommune": "25147", - "libelleAcheminement": "CHEMAUDIN ET VAUX", - "nomCommune": "CHEMAUDIN ET VAUX" + "codePostal": "50700", + "codeCommune": "50360", + "libelleAcheminement": "MORVILLE", + "nomCommune": "MORVILLE" }, { - "codePostal": "39400", - "codeCommune": "39367", - "libelleAcheminement": "MORBIER", - "nomCommune": "MORBIER" + "codePostal": "59263", + "codeCommune": "59316", + "libelleAcheminement": "HOUPLIN ANCOISNE", + "nomCommune": "HOUPLIN ANCOISNE" }, { - "codePostal": "53160", - "codeCommune": "53113", - "libelleAcheminement": "HAMBERS", - "nomCommune": "HAMBERS" + "codePostal": "02170", + "codeCommune": "02324", + "libelleAcheminement": "FONTENELLE", + "nomCommune": "FONTENELLE" }, { - "codePostal": "20243", - "codeCommune": "2B251", - "libelleAcheminement": "PRUNELLI DI FIUMORBO", - "nomCommune": "PRUNELLI DI FIUMORBO" + "codePostal": "59213", + "codeCommune": "59127", + "libelleAcheminement": "CAPELLE", + "nomCommune": "CAPELLE" }, { - "codePostal": "25770", - "codeCommune": "25147", - "libelleAcheminement": "CHEMAUDIN ET VAUX", - "nomCommune": "CHEMAUDIN ET VAUX" + "codePostal": "47340", + "codeCommune": "47288", + "libelleAcheminement": "SAUVAGNAS", + "nomCommune": "SAUVAGNAS" }, { - "codePostal": "39400", - "codeCommune": "39368", - "libelleAcheminement": "HAUTS DE BIENNE", - "nomCommune": "HAUTS DE BIENNE" + "codePostal": "50260", + "codeCommune": "50369", + "libelleAcheminement": "NEGREVILLE", + "nomCommune": "NEGREVILLE" }, { - "codePostal": "53120", - "codeCommune": "53115", - "libelleAcheminement": "HERCE", - "nomCommune": "HERCE" + "codePostal": "59480", + "codeCommune": "59320", + "libelleAcheminement": "ILLIES", + "nomCommune": "ILLIES" }, { - "codePostal": "20229", - "codeCommune": "2B256", - "libelleAcheminement": "RAPAGGIO", - "nomCommune": "RAPAGGIO" + "codePostal": "02290", + "codeCommune": "02326", + "libelleAcheminement": "FONTENOY", + "nomCommune": "FONTENOY" }, { - "codePostal": "25440", - "codeCommune": "25149", - "libelleAcheminement": "CHENECEY BUILLON", - "nomCommune": "CHENECEY BUILLON" + "codePostal": "59160", + "codeCommune": "59128", + "libelleAcheminement": "CAPINGHEM", + "nomCommune": "CAPINGHEM" }, { - "codePostal": "39330", - "codeCommune": "39370", - "libelleAcheminement": "MOUCHARD", - "nomCommune": "MOUCHARD" + "codePostal": "47170", + "codeCommune": "47302", + "libelleAcheminement": "SOS", + "nomCommune": "SOS" }, { - "codePostal": "53110", - "codeCommune": "53118", - "libelleAcheminement": "LE HOUSSEAU BRETIGNOLLES", - "nomCommune": "LE HOUSSEAU BRETIGNOLLES" + "codePostal": "50250", + "codeCommune": "50372", + "libelleAcheminement": "NEUFMESNIL", + "nomCommune": "NEUFMESNIL" }, { - "codePostal": "20213", - "codeCommune": "2B273", - "libelleAcheminement": "SCATA", - "nomCommune": "SCATA" + "codePostal": "59460", + "codeCommune": "59324", + "libelleAcheminement": "JEUMONT", + "nomCommune": "JEUMONT" }, { - "codePostal": "25530", - "codeCommune": "25151", - "libelleAcheminement": "CHEVIGNEY LES VERCEL", - "nomCommune": "CHEVIGNEY LES VERCEL" + "codePostal": "02140", + "codeCommune": "02331", + "libelleAcheminement": "FRANQUEVILLE", + "nomCommune": "FRANQUEVILLE" }, { - "codePostal": "39270", - "codeCommune": "39394", - "libelleAcheminement": "ONOZ", - "nomCommune": "ONOZ" + "codePostal": "59180", + "codeCommune": "59131", + "libelleAcheminement": "CAPPELLE LA GRANDE", + "nomCommune": "CAPPELLE LA GRANDE" }, { - "codePostal": "53400", - "codeCommune": "53135", - "libelleAcheminement": "LIVRE LA TOUCHE", - "nomCommune": "LIVRE LA TOUCHE" + "codePostal": "47270", + "codeCommune": "47305", + "libelleAcheminement": "TAYRAC", + "nomCommune": "TAYRAC" }, { - "codePostal": "20243", - "codeCommune": "2B277", - "libelleAcheminement": "SERRA DI FIUMORBO", - "nomCommune": "SERRA DI FIUMORBO" + "codePostal": "50250", + "codeCommune": "50374", + "libelleAcheminement": "NEUVILLE EN BEAUMONT", + "nomCommune": "NEUVILLE EN BEAUMONT" }, { - "codePostal": "25870", - "codeCommune": "25153", - "libelleAcheminement": "CHEVROZ", - "nomCommune": "CHEVROZ" + "codePostal": "59530", + "codeCommune": "59325", + "libelleAcheminement": "JOLIMETZ", + "nomCommune": "JOLIMETZ" }, { - "codePostal": "39130", - "codeCommune": "39408", - "libelleAcheminement": "PATORNAY", - "nomCommune": "PATORNAY" + "codePostal": "02130", + "codeCommune": "02332", + "libelleAcheminement": "FRESNES EN TARDENOIS", + "nomCommune": "FRESNES EN TARDENOIS" }, { - "codePostal": "53600", - "codeCommune": "53153", - "libelleAcheminement": "MEZANGERS", - "nomCommune": "MEZANGERS" + "codePostal": "59670", + "codeCommune": "59135", + "libelleAcheminement": "CASSEL", + "nomCommune": "CASSEL" }, { - "codePostal": "20233", - "codeCommune": "2B281", - "libelleAcheminement": "SISCO", - "nomCommune": "SISCO" + "codePostal": "47160", + "codeCommune": "47320", + "libelleAcheminement": "VILLEFRANCHE DU QUEYRAN", + "nomCommune": "VILLEFRANCHE DU QUEYRAN" }, { - "codePostal": "25340", - "codeCommune": "25156", - "libelleAcheminement": "PAYS DE CLERVAL", - "nomCommune": "PAYS DE CLERVAL" + "codePostal": "50210", + "codeCommune": "50378", + "libelleAcheminement": "NOTRE DAME DE CENILLY", + "nomCommune": "NOTRE DAME DE CENILLY" }, { - "codePostal": "39570", - "codeCommune": "39411", - "libelleAcheminement": "PERRIGNY", - "nomCommune": "PERRIGNY" + "codePostal": "59122", + "codeCommune": "59326", + "libelleAcheminement": "KILLEM", + "nomCommune": "KILLEM" }, { - "codePostal": "53240", - "codeCommune": "53156", - "libelleAcheminement": "MONTFLOURS", - "nomCommune": "MONTFLOURS" + "codePostal": "02230", + "codeCommune": "02334", + "libelleAcheminement": "FRESNOY LE GRAND", + "nomCommune": "FRESNOY LE GRAND" }, { - "codePostal": "20240", - "codeCommune": "2B283", - "libelleAcheminement": "SOLARO", - "nomCommune": "SOLARO" + "codePostal": "59360", + "codeCommune": "59137", + "libelleAcheminement": "CATILLON SUR SAMBRE", + "nomCommune": "CATILLON SUR SAMBRE" }, { - "codePostal": "25500", - "codeCommune": "25160", - "libelleAcheminement": "LES COMBES", - "nomCommune": "LES COMBES" + "codePostal": "47200", + "codeCommune": "47326", + "libelleAcheminement": "VIRAZEIL", + "nomCommune": "VIRAZEIL" }, { - "codePostal": "39120", - "codeCommune": "39415", - "libelleAcheminement": "PETIT NOIR", - "nomCommune": "PETIT NOIR" + "codePostal": "50600", + "codeCommune": "50391", + "libelleAcheminement": "GRANDPARIGNY", + "nomCommune": "GRANDPARIGNY" }, { - "codePostal": "53970", - "codeCommune": "53157", - "libelleAcheminement": "MONTIGNE LE BRILLANT", - "nomCommune": "MONTIGNE LE BRILLANT" + "codePostal": "59167", + "codeCommune": "59327", + "libelleAcheminement": "LALLAING", + "nomCommune": "LALLAING" }, { - "codePostal": "20229", - "codeCommune": "2B291", - "libelleAcheminement": "STAZZONA", - "nomCommune": "STAZZONA" + "codePostal": "02400", + "codeCommune": "02347", + "libelleAcheminement": "GLAND", + "nomCommune": "GLAND" }, { - "codePostal": "25390", - "codeCommune": "25161", - "libelleAcheminement": "CONSOLATION MAISONNETTES", - "nomCommune": "CONSOLATION MAISONNETTES" + "codePostal": "59400", + "codeCommune": "59141", + "libelleAcheminement": "CAUROIR", + "nomCommune": "CAUROIR" }, { - "codePostal": "39600", - "codeCommune": "39425", - "libelleAcheminement": "LES PLANCHES PRES ARBOIS", - "nomCommune": "LES PLANCHES PRES ARBOIS" + "codePostal": "47230", + "codeCommune": "47327", + "libelleAcheminement": "XAINTRAILLES", + "nomCommune": "XAINTRAILLES" }, { - "codePostal": "53150", - "codeCommune": "53161", - "libelleAcheminement": "MONTSURS", - "nomCommune": "MONTSURS" + "codePostal": "50410", + "codeCommune": "50393", + "libelleAcheminement": "PERCY EN NORMANDIE", + "nomCommune": "PERCY EN NORMANDIE" }, { - "codePostal": "20213", - "codeCommune": "2B299", - "libelleAcheminement": "SAN GAVINO D AMPUGNANI", - "nomCommune": "SAN GAVINO D AMPUGNANI" + "codePostal": "59550", + "codeCommune": "59331", + "libelleAcheminement": "LANDRECIES", + "nomCommune": "LANDRECIES" }, { - "codePostal": "25420", - "codeCommune": "25170", - "libelleAcheminement": "COURCELLES LES MONTBELIARD", - "nomCommune": "COURCELLES LES MONTBELIARD" + "codePostal": "02140", + "codeCommune": "02357", + "libelleAcheminement": "GRONARD", + "nomCommune": "GRONARD" }, { - "codePostal": "39210", - "codeCommune": "39426", - "libelleAcheminement": "PLASNE", - "nomCommune": "PLASNE" + "codePostal": "59930", + "codeCommune": "59143", + "libelleAcheminement": "LA CHAPELLE D ARMENTIERES", + "nomCommune": "LA CHAPELLE D ARMENTIERES" }, { - "codePostal": "53150", - "codeCommune": "53161", - "libelleAcheminement": "MONTSURS", - "nomCommune": "MONTSURS" + "codePostal": "48310", + "codeCommune": "48001", + "libelleAcheminement": "ALBARET LE COMTAL", + "nomCommune": "ALBARET LE COMTAL" }, { - "codePostal": "20230", - "codeCommune": "2B303", - "libelleAcheminement": "SAN GIULIANO", - "nomCommune": "SAN GIULIANO" + "codePostal": "50630", + "codeCommune": "50395", + "libelleAcheminement": "LA PERNELLE", + "nomCommune": "LA PERNELLE" }, { - "codePostal": "25440", - "codeCommune": "25171", - "libelleAcheminement": "COURCELLES", - "nomCommune": "COURCELLES" + "codePostal": "59226", + "codeCommune": "59335", + "libelleAcheminement": "LECELLES", + "nomCommune": "LECELLES" }, { - "codePostal": "39290", - "codeCommune": "39432", - "libelleAcheminement": "POINTRE", - "nomCommune": "POINTRE" + "codePostal": "02480", + "codeCommune": "02367", + "libelleAcheminement": "HAPPENCOURT", + "nomCommune": "HAPPENCOURT" }, { - "codePostal": "53150", - "codeCommune": "53161", - "libelleAcheminement": "MONTSURS", - "nomCommune": "MONTSURS" + "codePostal": "59230", + "codeCommune": "59144", + "libelleAcheminement": "CHATEAU L ABBAYE", + "nomCommune": "CHATEAU L ABBAYE" }, { - "codePostal": "20244", - "codeCommune": "2B304", - "libelleAcheminement": "SAN LORENZO", - "nomCommune": "SAN LORENZO" + "codePostal": "48200", + "codeCommune": "48002", + "libelleAcheminement": "ALBARET STE MARIE", + "nomCommune": "ALBARET STE MARIE" }, { - "codePostal": "25470", - "codeCommune": "25174", - "libelleAcheminement": "COURTEFONTAINE", - "nomCommune": "COURTEFONTAINE" + "codePostal": "50250", + "codeCommune": "50400", + "libelleAcheminement": "PICAUVILLE", + "nomCommune": "PICAUVILLE" }, { - "codePostal": "39130", - "codeCommune": "39435", - "libelleAcheminement": "PONT DE POITTE", - "nomCommune": "PONT DE POITTE" + "codePostal": "59115", + "codeCommune": "59339", + "libelleAcheminement": "LEERS", + "nomCommune": "LEERS" }, { - "codePostal": "53300", - "codeCommune": "53176", - "libelleAcheminement": "LE PAS", - "nomCommune": "LE PAS" + "codePostal": "02140", + "codeCommune": "02369", + "libelleAcheminement": "HARCIGNY", + "nomCommune": "HARCIGNY" }, { - "codePostal": "20250", - "codeCommune": "2B306", - "libelleAcheminement": "SANTA LUCIA DI MERCURIO", - "nomCommune": "SANTA LUCIA DI MERCURIO" + "codePostal": "59152", + "codeCommune": "59146", + "libelleAcheminement": "CHERENG", + "nomCommune": "CHERENG" }, { - "codePostal": "25270", - "codeCommune": "25180", - "libelleAcheminement": "CROUZET MIGETTE", - "nomCommune": "CROUZET MIGETTE" + "codePostal": "48100", + "codeCommune": "48005", + "libelleAcheminement": "ANTRENAS", + "nomCommune": "ANTRENAS" }, { - "codePostal": "39600", - "codeCommune": "39446", - "libelleAcheminement": "PUPILLIN", - "nomCommune": "PUPILLIN" + "codePostal": "50360", + "codeCommune": "50400", + "libelleAcheminement": "PICAUVILLE", + "nomCommune": "PICAUVILLE" }, { - "codePostal": "53220", - "codeCommune": "53177", - "libelleAcheminement": "LA PELLERINE", - "nomCommune": "LA PELLERINE" + "codePostal": "59287", + "codeCommune": "59345", + "libelleAcheminement": "LEWARDE", + "nomCommune": "LEWARDE" }, { - "codePostal": "20230", - "codeCommune": "2B313", - "libelleAcheminement": "SAN NICOLAO", - "nomCommune": "SAN NICOLAO" + "codePostal": "02210", + "codeCommune": "02372", + "libelleAcheminement": "HARTENNES ET TAUX", + "nomCommune": "HARTENNES ET TAUX" }, { - "codePostal": "25680", - "codeCommune": "25182", - "libelleAcheminement": "CUBRY", - "nomCommune": "CUBRY" + "codePostal": "59740", + "codeCommune": "59148", + "libelleAcheminement": "CLAIRFAYTS", + "nomCommune": "CLAIRFAYTS" }, { - "codePostal": "39570", - "codeCommune": "39447", - "libelleAcheminement": "QUINTIGNY", - "nomCommune": "QUINTIGNY" + "codePostal": "48170", + "codeCommune": "48008", + "libelleAcheminement": "ARZENC DE RANDON", + "nomCommune": "ARZENC DE RANDON" }, { - "codePostal": "53360", - "codeCommune": "53178", - "libelleAcheminement": "PEUTON", - "nomCommune": "PEUTON" + "codePostal": "50480", + "codeCommune": "50400", + "libelleAcheminement": "PICAUVILLE", + "nomCommune": "PICAUVILLE" }, { - "codePostal": "20248", - "codeCommune": "2B327", - "libelleAcheminement": "TOMINO", - "nomCommune": "TOMINO" + "codePostal": "59260", + "codeCommune": "59346", + "libelleAcheminement": "LEZENNES", + "nomCommune": "LEZENNES" }, { - "codePostal": "25550", - "codeCommune": "25207", - "libelleAcheminement": "DUNG", - "nomCommune": "DUNG" + "codePostal": "02140", + "codeCommune": "02373", + "libelleAcheminement": "HARY", + "nomCommune": "HARY" }, { - "codePostal": "39270", - "codeCommune": "39455", - "libelleAcheminement": "REITHOUSE", - "nomCommune": "REITHOUSE" + "codePostal": "59310", + "codeCommune": "59158", + "libelleAcheminement": "COUTICHES", + "nomCommune": "COUTICHES" }, { - "codePostal": "53140", - "codeCommune": "53185", - "libelleAcheminement": "PRE EN PAIL ST SAMSON", - "nomCommune": "PRE EN PAIL ST SAMSON" + "codePostal": "48130", + "codeCommune": "48009", + "libelleAcheminement": "PEYRE EN AUBRAC", + "nomCommune": "PEYRE EN AUBRAC" }, { - "codePostal": "20231", - "codeCommune": "2B341", - "libelleAcheminement": "VENACO", - "nomCommune": "VENACO" + "codePostal": "50770", + "codeCommune": "50403", + "libelleAcheminement": "PIROU", + "nomCommune": "PIROU" }, { - "codePostal": "25580", - "codeCommune": "25211", - "libelleAcheminement": "ECHEVANNES", - "nomCommune": "ECHEVANNES" + "codePostal": "59740", + "codeCommune": "59347", + "libelleAcheminement": "LIESSIES", + "nomCommune": "LIESSIES" }, { - "codePostal": "39140", - "codeCommune": "39456", - "libelleAcheminement": "RELANS", - "nomCommune": "RELANS" + "codePostal": "02440", + "codeCommune": "02380", + "libelleAcheminement": "HINACOURT", + "nomCommune": "HINACOURT" }, { - "codePostal": "53360", - "codeCommune": "53186", - "libelleAcheminement": "QUELAINES ST GAULT", - "nomCommune": "QUELAINES ST GAULT" + "codePostal": "59127", + "codeCommune": "59171", + "libelleAcheminement": "DEHERIES", + "nomCommune": "DEHERIES" }, { - "codePostal": "20240", - "codeCommune": "2B342", - "libelleAcheminement": "VENTISERI", - "nomCommune": "VENTISERI" + "codePostal": "48600", + "codeCommune": "48010", + "libelleAcheminement": "AUROUX", + "nomCommune": "AUROUX" }, { - "codePostal": "25150", - "codeCommune": "25216", - "libelleAcheminement": "ECURCEY", - "nomCommune": "ECURCEY" + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { - "codePostal": "39250", - "codeCommune": "39461", - "libelleAcheminement": "RIX", - "nomCommune": "RIX" + "codePostal": "59156", + "codeCommune": "59361", + "libelleAcheminement": "LOURCHES", + "nomCommune": "LOURCHES" }, { - "codePostal": "53250", - "codeCommune": "53196", - "libelleAcheminement": "ST AIGNAN DE COUPTRAIN", - "nomCommune": "ST AIGNAN DE COUPTRAIN" + "codePostal": "02380", + "codeCommune": "02395", + "libelleAcheminement": "JUMENCOURT", + "nomCommune": "JUMENCOURT" }, { - "codePostal": "20215", - "codeCommune": "2B343", - "libelleAcheminement": "VENZOLASCA", - "nomCommune": "VENZOLASCA" + "codePostal": "59890", + "codeCommune": "59173", + "libelleAcheminement": "DEULEMONT", + "nomCommune": "DEULEMONT" }, { - "codePostal": "25410", - "codeCommune": "25235", - "libelleAcheminement": "FERRIERES LES BOIS", - "nomCommune": "FERRIERES LES BOIS" + "codePostal": "48200", + "codeCommune": "48012", + "libelleAcheminement": "LES MONTS VERTS", + "nomCommune": "LES MONTS VERTS" }, { - "codePostal": "39700", - "codeCommune": "39462", - "libelleAcheminement": "ROCHEFORT SUR NENON", - "nomCommune": "ROCHEFORT SUR NENON" + "codePostal": "50210", + "codeCommune": "50419", + "libelleAcheminement": "QUETTREVILLE SUR SIENNE", + "nomCommune": "QUETTREVILLE SUR SIENNE" }, { - "codePostal": "53100", - "codeCommune": "53219", - "libelleAcheminement": "ST GEORGES BUTTAVENT", - "nomCommune": "ST GEORGES BUTTAVENT" + "codePostal": "59530", + "codeCommune": "59363", + "libelleAcheminement": "LOUVIGNIES QUESNOY", + "nomCommune": "LOUVIGNIES QUESNOY" }, { - "codePostal": "20219", - "codeCommune": "2B354", - "libelleAcheminement": "VIVARIO", - "nomCommune": "VIVARIO" + "codePostal": "02140", + "codeCommune": "02405", + "libelleAcheminement": "LANDOUZY LA VILLE", + "nomCommune": "LANDOUZY LA VILLE" }, { - "codePostal": "25190", - "codeCommune": "25239", - "libelleAcheminement": "FEULE", - "nomCommune": "FEULE" + "codePostal": "59400", + "codeCommune": "59176", + "libelleAcheminement": "DOIGNIES", + "nomCommune": "DOIGNIES" }, { - "codePostal": "39700", - "codeCommune": "39465", - "libelleAcheminement": "ROMANGE", - "nomCommune": "ROMANGE" + "codePostal": "48200", + "codeCommune": "48026", + "libelleAcheminement": "BLAVIGNAC", + "nomCommune": "BLAVIGNAC" }, { - "codePostal": "53240", - "codeCommune": "53225", - "libelleAcheminement": "ST GERMAIN LE GUILLAUME", - "nomCommune": "ST GERMAIN LE GUILLAUME" + "codePostal": "50660", + "codeCommune": "50419", + "libelleAcheminement": "QUETTREVILLE SUR SIENNE", + "nomCommune": "QUETTREVILLE SUR SIENNE" }, { - "codePostal": "20272", - "codeCommune": "2B356", - "libelleAcheminement": "ZALANA", - "nomCommune": "ZALANA" + "codePostal": "59252", + "codeCommune": "59387", + "libelleAcheminement": "MARQUETTE EN OSTREVANT", + "nomCommune": "MARQUETTE EN OSTREVANT" }, { - "codePostal": "25390", - "codeCommune": "25243", - "libelleAcheminement": "FLANGEBOUCHE", - "nomCommune": "FLANGEBOUCHE" + "codePostal": "02380", + "codeCommune": "02406", + "libelleAcheminement": "LANDRICOURT", + "nomCommune": "LANDRICOURT" }, { - "codePostal": "39190", - "codeCommune": "39474", - "libelleAcheminement": "STE AGNES", - "nomCommune": "STE AGNES" + "codePostal": "59440", + "codeCommune": "59177", + "libelleAcheminement": "DOMPIERRE SUR HELPE", + "nomCommune": "DOMPIERRE SUR HELPE" }, { - "codePostal": "53110", - "codeCommune": "53230", - "libelleAcheminement": "ST JULIEN DU TERROUX", - "nomCommune": "ST JULIEN DU TERROUX" + "codePostal": "48170", + "codeCommune": "48027", + "libelleAcheminement": "MONT LOZERE ET GOULET", + "nomCommune": "MONT LOZERE ET GOULET" }, { - "codePostal": "20240", - "codeCommune": "2B366", - "libelleAcheminement": "CHISA", - "nomCommune": "CHISA" + "codePostal": "50750", + "codeCommune": "50420", + "libelleAcheminement": "QUIBOU", + "nomCommune": "QUIBOU" }, { - "codePostal": "25170", - "codeCommune": "25257", - "libelleAcheminement": "FRANEY", - "nomCommune": "FRANEY" + "codePostal": "59980", + "codeCommune": "59394", + "libelleAcheminement": "MAUROIS", + "nomCommune": "MAUROIS" }, { - "codePostal": "39160", - "codeCommune": "39475", - "libelleAcheminement": "ST AMOUR", - "nomCommune": "ST AMOUR" + "codePostal": "02000", + "codeCommune": "02407", + "libelleAcheminement": "LANISCOURT", + "nomCommune": "LANISCOURT" }, { - "codePostal": "53300", - "codeCommune": "53237", - "libelleAcheminement": "ST MARS SUR COLMONT", - "nomCommune": "ST MARS SUR COLMONT" + "codePostal": "59630", + "codeCommune": "59182", + "libelleAcheminement": "DRINCHAM", + "nomCommune": "DRINCHAM" }, { - "codePostal": "30220", - "codeCommune": "30003", - "libelleAcheminement": "AIGUES MORTES", - "nomCommune": "AIGUES MORTES" + "codePostal": "48250", + "codeCommune": "48027", + "libelleAcheminement": "MONT LOZERE ET GOULET", + "nomCommune": "MONT LOZERE ET GOULET" }, { - "codePostal": "25390", - "codeCommune": "25262", - "libelleAcheminement": "FUANS", - "nomCommune": "FUANS" + "codePostal": "50000", + "codeCommune": "50423", + "libelleAcheminement": "RAMPAN", + "nomCommune": "RAMPAN" }, { - "codePostal": "39410", - "codeCommune": "39476", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "59143", + "codeCommune": "59402", + "libelleAcheminement": "MILLAM", + "nomCommune": "MILLAM" }, { - "codePostal": "53800", - "codeCommune": "53240", - "libelleAcheminement": "ST MARTIN DU LIMET", - "nomCommune": "ST MARTIN DU LIMET" + "codePostal": "02210", + "codeCommune": "02412", + "libelleAcheminement": "LAUNOY", + "nomCommune": "LAUNOY" }, { - "codePostal": "30760", - "codeCommune": "30005", - "libelleAcheminement": "AIGUEZE", - "nomCommune": "AIGUEZE" + "codePostal": "59240", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "25470", - "codeCommune": "25280", - "libelleAcheminement": "GOUMOIS", - "nomCommune": "GOUMOIS" + "codePostal": "48400", + "codeCommune": "48028", + "libelleAcheminement": "LES BONDONS", + "nomCommune": "LES BONDONS" }, { - "codePostal": "39200", - "codeCommune": "39478", - "libelleAcheminement": "ST CLAUDE", - "nomCommune": "ST CLAUDE" + "codePostal": "50390", + "codeCommune": "50426", + "libelleAcheminement": "RAUVILLE LA PLACE", + "nomCommune": "RAUVILLE LA PLACE" }, { - "codePostal": "53370", - "codeCommune": "53246", - "libelleAcheminement": "ST PIERRE DES NIDS", - "nomCommune": "ST PIERRE DES NIDS" + "codePostal": "59225", + "codeCommune": "59413", + "libelleAcheminement": "MONTIGNY EN CAMBRESIS", + "nomCommune": "MONTIGNY EN CAMBRESIS" }, { - "codePostal": "30210", - "codeCommune": "30013", - "libelleAcheminement": "ARGILLIERS", - "nomCommune": "ARGILLIERS" + "codePostal": "02450", + "codeCommune": "02414", + "libelleAcheminement": "LAVAQUERESSE", + "nomCommune": "LAVAQUERESSE" }, { - "codePostal": "25520", - "codeCommune": "25282", - "libelleAcheminement": "GOUX LES USIERS", - "nomCommune": "GOUX LES USIERS" + "codePostal": "59240", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "39300", - "codeCommune": "39481", - "libelleAcheminement": "ST GERMAIN EN MONTAGNE", - "nomCommune": "ST GERMAIN EN MONTAGNE" + "codePostal": "48500", + "codeCommune": "48034", + "libelleAcheminement": "LA CANOURGUE", + "nomCommune": "LA CANOURGUE" }, { - "codePostal": "53160", - "codeCommune": "53266", - "libelleAcheminement": "TRANS", - "nomCommune": "TRANS" + "codePostal": "50520", + "codeCommune": "50428", + "libelleAcheminement": "REFFUVEILLE", + "nomCommune": "REFFUVEILLE" }, { - "codePostal": "30120", - "codeCommune": "30024", - "libelleAcheminement": "AULAS", - "nomCommune": "AULAS" + "codePostal": "59420", + "codeCommune": "59421", + "libelleAcheminement": "MOUVAUX", + "nomCommune": "MOUVAUX" }, { - "codePostal": "25440", - "codeCommune": "25283", - "libelleAcheminement": "GOUX SOUS LANDET", - "nomCommune": "GOUX SOUS LANDET" + "codePostal": "02380", + "codeCommune": "02423", + "libelleAcheminement": "LEUILLY SOUS COUCY", + "nomCommune": "LEUILLY SOUS COUCY" }, { - "codePostal": "39320", - "codeCommune": "39485", - "libelleAcheminement": "VAL SURAN", - "nomCommune": "VAL SURAN" + "codePostal": "59640", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "54770", - "codeCommune": "54012", - "libelleAcheminement": "AMANCE", - "nomCommune": "AMANCE" + "codePostal": "48500", + "codeCommune": "48034", + "libelleAcheminement": "LA CANOURGUE", + "nomCommune": "LA CANOURGUE" }, { - "codePostal": "30120", - "codeCommune": "30026", - "libelleAcheminement": "AVEZE", - "nomCommune": "AVEZE" + "codePostal": "50210", + "codeCommune": "50437", + "libelleAcheminement": "RONCEY", + "nomCommune": "RONCEY" }, { - "codePostal": "25390", - "codeCommune": "25288", - "libelleAcheminement": "FOURNETS LUISANS", - "nomCommune": "FOURNETS LUISANS" + "codePostal": "59940", + "codeCommune": "59423", + "libelleAcheminement": "NEUF BERQUIN", + "nomCommune": "NEUF BERQUIN" }, { - "codePostal": "39110", - "codeCommune": "39497", - "libelleAcheminement": "SAIZENAY", - "nomCommune": "SAIZENAY" + "codePostal": "02220", + "codeCommune": "02427", + "libelleAcheminement": "LHUYS", + "nomCommune": "LHUYS" }, { - "codePostal": "54560", - "codeCommune": "54015", - "libelleAcheminement": "ANDERNY", - "nomCommune": "ANDERNY" + "codePostal": "59173", + "codeCommune": "59184", + "libelleAcheminement": "EBBLINGHEM", + "nomCommune": "EBBLINGHEM" }, { - "codePostal": "30620", - "codeCommune": "30036", - "libelleAcheminement": "BERNIS", - "nomCommune": "BERNIS" + "codePostal": "48400", + "codeCommune": "48036", + "libelleAcheminement": "CASSAGNAS", + "nomCommune": "CASSAGNAS" }, { - "codePostal": "25300", - "codeCommune": "25293", - "libelleAcheminement": "GRANGES NARBOZ", - "nomCommune": "GRANGES NARBOZ" + "codePostal": "50680", + "codeCommune": "50446", + "libelleAcheminement": "ST ANDRE DE L EPINE", + "nomCommune": "ST ANDRE DE L EPINE" }, { - "codePostal": "39350", - "codeCommune": "39499", - "libelleAcheminement": "SALIGNEY", - "nomCommune": "SALIGNEY" + "codePostal": "59960", + "codeCommune": "59426", + "libelleAcheminement": "NEUVILLE EN FERRAIN", + "nomCommune": "NEUVILLE EN FERRAIN" }, { - "codePostal": "54540", - "codeCommune": "54017", - "libelleAcheminement": "ANGOMONT", - "nomCommune": "ANGOMONT" + "codePostal": "02350", + "codeCommune": "02430", + "libelleAcheminement": "LIESSE NOTRE DAME", + "nomCommune": "LIESSE NOTRE DAME" }, { - "codePostal": "30450", - "codeCommune": "30044", - "libelleAcheminement": "BONNEVAUX", - "nomCommune": "BONNEVAUX" + "codePostal": "59132", + "codeCommune": "59198", + "libelleAcheminement": "EPPE SAUVAGE", + "nomCommune": "EPPE SAUVAGE" }, { - "codePostal": "25580", - "codeCommune": "25300", - "libelleAcheminement": "GUYANS DURNES", - "nomCommune": "GUYANS DURNES" + "codePostal": "48190", + "codeCommune": "48037", + "libelleAcheminement": "CHADENET", + "nomCommune": "CHADENET" }, { - "codePostal": "39100", - "codeCommune": "39501", - "libelleAcheminement": "SAMPANS", - "nomCommune": "SAMPANS" + "codePostal": "50140", + "codeCommune": "50450", + "libelleAcheminement": "ST BARTHELEMY", + "nomCommune": "ST BARTHELEMY" }, { - "codePostal": "54150", - "codeCommune": "54018", - "libelleAcheminement": "ANOUX", - "nomCommune": "ANOUX" + "codePostal": "59400", + "codeCommune": "59432", + "libelleAcheminement": "NIERGNIES", + "nomCommune": "NIERGNIES" }, { - "codePostal": "30190", - "codeCommune": "30046", - "libelleAcheminement": "BOUCOIRAN ET NOZIERES", - "nomCommune": "BOUCOIRAN ET NOZIERES" + "codePostal": "02700", + "codeCommune": "02431", + "libelleAcheminement": "LIEZ", + "nomCommune": "LIEZ" }, { - "codePostal": "25310", - "codeCommune": "25304", - "libelleAcheminement": "HERIMONCOURT", - "nomCommune": "HERIMONCOURT" + "codePostal": "59470", + "codeCommune": "59200", + "libelleAcheminement": "ERINGHEM", + "nomCommune": "ERINGHEM" }, { - "codePostal": "39300", - "codeCommune": "39503", - "libelleAcheminement": "SAPOIS", - "nomCommune": "SAPOIS" + "codePostal": "48230", + "codeCommune": "48039", + "libelleAcheminement": "CHANAC", + "nomCommune": "CHANAC" }, { - "codePostal": "54510", - "codeCommune": "54025", - "libelleAcheminement": "ART SUR MEURTHE", - "nomCommune": "ART SUR MEURTHE" + "codePostal": "50300", + "codeCommune": "50451", + "libelleAcheminement": "ST BRICE", + "nomCommune": "ST BRICE" }, { - "codePostal": "30110", - "codeCommune": "30051", - "libelleAcheminement": "BRANOUX LES TAILLADES", - "nomCommune": "BRANOUX LES TAILLADES" + "codePostal": "59970", + "codeCommune": "59444", + "libelleAcheminement": "ODOMEZ", + "nomCommune": "ODOMEZ" }, { - "codePostal": "25300", - "codeCommune": "25309", - "libelleAcheminement": "HOUTAUD", - "nomCommune": "HOUTAUD" + "codePostal": "02340", + "codeCommune": "02433", + "libelleAcheminement": "LISLET", + "nomCommune": "LISLET" }, { - "codePostal": "39270", - "codeCommune": "39504", - "libelleAcheminement": "SARROGNA", - "nomCommune": "SARROGNA" + "codePostal": "59193", + "codeCommune": "59202", + "libelleAcheminement": "ERQUINGHEM LYS", + "nomCommune": "ERQUINGHEM LYS" }, { - "codePostal": "54700", - "codeCommune": "54027", - "libelleAcheminement": "ATTON", - "nomCommune": "ATTON" + "codePostal": "48310", + "codeCommune": "48044", + "libelleAcheminement": "CHAUCHAILLES", + "nomCommune": "CHAUCHAILLES" }, { - "codePostal": "30580", - "codeCommune": "30055", - "libelleAcheminement": "BROUZET LES ALES", - "nomCommune": "BROUZET LES ALES" + "codePostal": "50680", + "codeCommune": "50455", + "libelleAcheminement": "ST CLAIR SUR L ELLE", + "nomCommune": "ST CLAIR SUR L ELLE" }, { - "codePostal": "25250", - "codeCommune": "25311", - "libelleAcheminement": "HYEMONDANS", - "nomCommune": "HYEMONDANS" + "codePostal": "59195", + "codeCommune": "59446", + "libelleAcheminement": "OISY", + "nomCommune": "OISY" }, { - "codePostal": "39270", - "codeCommune": "39504", - "libelleAcheminement": "SARROGNA", - "nomCommune": "SARROGNA" + "codePostal": "02160", + "codeCommune": "02439", + "libelleAcheminement": "LES SEPTVALLONS", + "nomCommune": "LES SEPTVALLONS" }, { - "codePostal": "54580", - "codeCommune": "54028", - "libelleAcheminement": "AUBOUE", - "nomCommune": "AUBOUE" + "codePostal": "59161", + "codeCommune": "59206", + "libelleAcheminement": "ESCAUDOEUVRES", + "nomCommune": "ESCAUDOEUVRES" }, { - "codePostal": "30700", - "codeCommune": "30067", - "libelleAcheminement": "LA CAPELLE ET MASMOLENE", - "nomCommune": "LA CAPELLE ET MASMOLENE" + "codePostal": "48400", + "codeCommune": "48050", + "libelleAcheminement": "BEDOUES COCURES", + "nomCommune": "BEDOUES COCURES" }, { - "codePostal": "25470", - "codeCommune": "25314", - "libelleAcheminement": "INDEVILLERS", - "nomCommune": "INDEVILLERS" + "codePostal": "50720", + "codeCommune": "50462", + "libelleAcheminement": "ST CYR DU BAILLEUL", + "nomCommune": "ST CYR DU BAILLEUL" }, { - "codePostal": "39310", - "codeCommune": "39510", - "libelleAcheminement": "SEPTMONCEL LES MOLUNES", - "nomCommune": "SEPTMONCEL LES MOLUNES" + "codePostal": "59162", + "codeCommune": "59452", + "libelleAcheminement": "OSTRICOURT", + "nomCommune": "OSTRICOURT" }, { - "codePostal": "54380", - "codeCommune": "54031", - "libelleAcheminement": "AUTREVILLE SUR MOSELLE", - "nomCommune": "AUTREVILLE SUR MOSELLE" + "codePostal": "02470", + "codeCommune": "02449", + "libelleAcheminement": "MACOGNY", + "nomCommune": "MACOGNY" }, { - "codePostal": "30190", - "codeCommune": "30072", - "libelleAcheminement": "CASTELNAU VALENCE", - "nomCommune": "CASTELNAU VALENCE" + "codePostal": "59127", + "codeCommune": "59209", + "libelleAcheminement": "ESNES", + "nomCommune": "ESNES" }, { - "codePostal": "25160", - "codeCommune": "25320", - "libelleAcheminement": "LABERGEMENT STE MARIE", - "nomCommune": "LABERGEMENT STE MARIE" + "codePostal": "48200", + "codeCommune": "48059", + "libelleAcheminement": "LA FAGE ST JULIEN", + "nomCommune": "LA FAGE ST JULIEN" }, { - "codePostal": "39230", - "codeCommune": "39511", - "libelleAcheminement": "SERGENAUX", - "nomCommune": "SERGENAUX" + "codePostal": "50310", + "codeCommune": "50467", + "libelleAcheminement": "ST FLOXEL", + "nomCommune": "ST FLOXEL" }, { - "codePostal": "54540", - "codeCommune": "54040", - "libelleAcheminement": "BADONVILLER", - "nomCommune": "BADONVILLER" + "codePostal": "59670", + "codeCommune": "59454", + "libelleAcheminement": "OXELAERE", + "nomCommune": "OXELAERE" }, { - "codePostal": "30330", - "codeCommune": "30076", - "libelleAcheminement": "CAVILLARGUES", - "nomCommune": "CAVILLARGUES" + "codePostal": "02490", + "codeCommune": "02452", + "libelleAcheminement": "MAISSEMY", + "nomCommune": "MAISSEMY" }, { - "codePostal": "25160", - "codeCommune": "25320", - "libelleAcheminement": "LABERGEMENT STE MARIE", - "nomCommune": "LABERGEMENT STE MARIE" + "codePostal": "59470", + "codeCommune": "59210", + "libelleAcheminement": "ESQUELBECQ", + "nomCommune": "ESQUELBECQ" }, { - "codePostal": "39120", - "codeCommune": "39512", - "libelleAcheminement": "SERGENON", - "nomCommune": "SERGENON" + "codePostal": "48700", + "codeCommune": "48063", + "libelleAcheminement": "FONTANS", + "nomCommune": "FONTANS" }, { - "codePostal": "54170", - "codeCommune": "54046", - "libelleAcheminement": "BARISEY AU PLAIN", - "nomCommune": "BARISEY AU PLAIN" + "codePostal": "50370", + "codeCommune": "50472", + "libelleAcheminement": "ST GEORGES DE LIVOYE", + "nomCommune": "ST GEORGES DE LIVOYE" }, { - "codePostal": "30450", - "codeCommune": "30079", - "libelleAcheminement": "CHAMBON", - "nomCommune": "CHAMBON" + "codePostal": "59273", + "codeCommune": "59458", + "libelleAcheminement": "PERONNE EN MELANTOIS", + "nomCommune": "PERONNE EN MELANTOIS" }, { - "codePostal": "25130", - "codeCommune": "25321", - "libelleAcheminement": "VILLERS LE LAC", - "nomCommune": "VILLERS LE LAC" + "codePostal": "02540", + "codeCommune": "02458", + "libelleAcheminement": "DHUYS ET MORIN EN BRIE", + "nomCommune": "DHUYS ET MORIN EN BRIE" }, { - "codePostal": "39700", - "codeCommune": "39514", - "libelleAcheminement": "SERRE LES MOULIERES", - "nomCommune": "SERRE LES MOULIERES" + "codePostal": "59553", + "codeCommune": "59211", + "libelleAcheminement": "ESQUERCHIN", + "nomCommune": "ESQUERCHIN" }, { - "codePostal": "54115", - "codeCommune": "54052", - "libelleAcheminement": "BATTIGNY", - "nomCommune": "BATTIGNY" + "codePostal": "48340", + "codeCommune": "48073", + "libelleAcheminement": "LES HERMAUX", + "nomCommune": "LES HERMAUX" }, { - "codePostal": "30210", - "codeCommune": "30085", - "libelleAcheminement": "COLLIAS", - "nomCommune": "COLLIAS" + "codePostal": "50680", + "codeCommune": "50473", + "libelleAcheminement": "ST GEORGES D ELLE", + "nomCommune": "ST GEORGES D ELLE" }, { - "codePostal": "25550", - "codeCommune": "25322", - "libelleAcheminement": "LAIRE", - "nomCommune": "LAIRE" + "codePostal": "59494", + "codeCommune": "59459", + "libelleAcheminement": "PETITE FORET", + "nomCommune": "PETITE FORET" }, { - "codePostal": "39300", - "codeCommune": "39517", - "libelleAcheminement": "SIROD", - "nomCommune": "SIROD" + "codePostal": "02720", + "codeCommune": "02459", + "libelleAcheminement": "MARCY", + "nomCommune": "MARCY" }, { - "codePostal": "54370", - "codeCommune": "54053", - "libelleAcheminement": "BAUZEMONT", - "nomCommune": "BAUZEMONT" + "codePostal": "59940", + "codeCommune": "59212", + "libelleAcheminement": "ESTAIRES", + "nomCommune": "ESTAIRES" }, { - "codePostal": "30460", - "codeCommune": "30087", - "libelleAcheminement": "COLOGNAC", - "nomCommune": "COLOGNAC" + "codePostal": "48500", + "codeCommune": "48085", + "libelleAcheminement": "LAVAL DU TARN", + "nomCommune": "LAVAL DU TARN" }, { - "codePostal": "25440", - "codeCommune": "25336", - "libelleAcheminement": "LIESLE", - "nomCommune": "LIESLE" + "codePostal": "50480", + "codeCommune": "50479", + "libelleAcheminement": "ST GERMAIN DE VARREVILLE", + "nomCommune": "ST GERMAIN DE VARREVILLE" }, { - "codePostal": "39230", - "codeCommune": "39533", - "libelleAcheminement": "TOULOUSE LE CHATEAU", - "nomCommune": "TOULOUSE LE CHATEAU" + "codePostal": "59244", + "codeCommune": "59461", + "libelleAcheminement": "PETIT FAYT", + "nomCommune": "PETIT FAYT" }, { - "codePostal": "54290", - "codeCommune": "54054", - "libelleAcheminement": "BAYON", - "nomCommune": "BAYON" + "codePostal": "02470", + "codeCommune": "02466", + "libelleAcheminement": "MARIZY STE GENEVIEVE", + "nomCommune": "MARIZY STE GENEVIEVE" }, { - "codePostal": "30390", - "codeCommune": "30107", - "libelleAcheminement": "ESTEZARGUES", - "nomCommune": "ESTEZARGUES" + "codePostal": "59151", + "codeCommune": "59214", + "libelleAcheminement": "ESTREES", + "nomCommune": "ESTREES" }, { - "codePostal": "25110", - "codeCommune": "25341", - "libelleAcheminement": "LOMONT SUR CRETE", - "nomCommune": "LOMONT SUR CRETE" + "codePostal": "48140", + "codeCommune": "48090", + "libelleAcheminement": "LE MALZIEU VILLE", + "nomCommune": "LE MALZIEU VILLE" }, { - "codePostal": "39570", - "codeCommune": "39537", - "libelleAcheminement": "TRENAL", - "nomCommune": "TRENAL" + "codePostal": "50180", + "codeCommune": "50483", + "libelleAcheminement": "ST GILLES", + "nomCommune": "ST GILLES" }, { - "codePostal": "54480", - "codeCommune": "54064", - "libelleAcheminement": "BERTRAMBOIS", - "nomCommune": "BERTRAMBOIS" + "codePostal": "59284", + "codeCommune": "59463", + "libelleAcheminement": "PITGAM", + "nomCommune": "PITGAM" }, { - "codePostal": "30124", - "codeCommune": "30108", - "libelleAcheminement": "L ESTRECHURE", - "nomCommune": "L ESTRECHURE" + "codePostal": "02250", + "codeCommune": "02468", + "libelleAcheminement": "MARLE", + "nomCommune": "MARLE" }, { - "codePostal": "25210", - "codeCommune": "25351", - "libelleAcheminement": "LE LUHIER", - "nomCommune": "LE LUHIER" + "codePostal": "59295", + "codeCommune": "59219", + "libelleAcheminement": "ESTRUN", + "nomCommune": "ESTRUN" }, { - "codePostal": "39130", - "codeCommune": "39538", - "libelleAcheminement": "UXELLES", - "nomCommune": "UXELLES" + "codePostal": "48260", + "codeCommune": "48091", + "libelleAcheminement": "MARCHASTEL", + "nomCommune": "MARCHASTEL" }, { - "codePostal": "54640", - "codeCommune": "54066", - "libelleAcheminement": "BETTAINVILLERS", - "nomCommune": "BETTAINVILLERS" + "codePostal": "50600", + "codeCommune": "50484", + "libelleAcheminement": "ST HILAIRE DU HARCOUET", + "nomCommune": "ST HILAIRE DU HARCOUET" }, { - "codePostal": "30580", - "codeCommune": "30113", - "libelleAcheminement": "FONS SUR LUSSAN", - "nomCommune": "FONS SUR LUSSAN" + "codePostal": "59530", + "codeCommune": "59468", + "libelleAcheminement": "POTELLE", + "nomCommune": "POTELLE" }, { - "codePostal": "25210", - "codeCommune": "25373", - "libelleAcheminement": "LE MEMONT", - "nomCommune": "LE MEMONT" + "codePostal": "02630", + "codeCommune": "02476", + "libelleAcheminement": "MENNEVRET", + "nomCommune": "MENNEVRET" }, { - "codePostal": "39600", - "codeCommune": "39539", - "libelleAcheminement": "VADANS", - "nomCommune": "VADANS" + "codePostal": "59179", + "codeCommune": "59227", + "libelleAcheminement": "FENAIN", + "nomCommune": "FENAIN" }, { - "codePostal": "54450", - "codeCommune": "54077", - "libelleAcheminement": "BLAMONT", - "nomCommune": "BLAMONT" + "codePostal": "48260", + "codeCommune": "48104", + "libelleAcheminement": "NASBINALS", + "nomCommune": "NASBINALS" }, { - "codePostal": "30510", - "codeCommune": "30128", - "libelleAcheminement": "GENERAC", - "nomCommune": "GENERAC" + "codePostal": "50240", + "codeCommune": "50487", + "libelleAcheminement": "ST JAMES", + "nomCommune": "ST JAMES" }, { - "codePostal": "25870", - "codeCommune": "25376", - "libelleAcheminement": "MEREY VIEILLEY", - "nomCommune": "MEREY VIEILLEY" + "codePostal": "59190", + "codeCommune": "59469", + "libelleAcheminement": "PRADELLES", + "nomCommune": "PRADELLES" }, { - "codePostal": "39300", - "codeCommune": "39554", - "libelleAcheminement": "VERS EN MONTAGNE", - "nomCommune": "VERS EN MONTAGNE" + "codePostal": "02000", + "codeCommune": "02478", + "libelleAcheminement": "MERLIEUX ET FOUQUEROLLES", + "nomCommune": "MERLIEUX ET FOUQUEROLLES" }, { - "codePostal": "54290", - "codeCommune": "54085", - "libelleAcheminement": "BORVILLE", - "nomCommune": "BORVILLE" + "codePostal": "59610", + "codeCommune": "59229", + "libelleAcheminement": "FERON", + "nomCommune": "FERON" }, { - "codePostal": "30630", - "codeCommune": "30131", - "libelleAcheminement": "GOUDARGUES", - "nomCommune": "GOUDARGUES" + "codePostal": "48110", + "codeCommune": "48115", + "libelleAcheminement": "LE POMPIDOU", + "nomCommune": "LE POMPIDOU" }, { - "codePostal": "25210", - "codeCommune": "25391", - "libelleAcheminement": "MONT DE LAVAL", - "nomCommune": "MONT DE LAVAL" + "codePostal": "50810", + "codeCommune": "50492", + "libelleAcheminement": "ST JEAN D ELLE", + "nomCommune": "ST JEAN D ELLE" }, { - "codePostal": "39130", - "codeCommune": "39556", - "libelleAcheminement": "VERTAMBOZ", - "nomCommune": "VERTAMBOZ" + "codePostal": "59144", + "codeCommune": "59473", + "libelleAcheminement": "PREUX AU SART", + "nomCommune": "PREUX AU SART" }, { - "codePostal": "54770", - "codeCommune": "54089", - "libelleAcheminement": "BOUXIERES AUX CHENES", - "nomCommune": "BOUXIERES AUX CHENES" + "codePostal": "02000", + "codeCommune": "02489", + "libelleAcheminement": "MOLINCHART", + "nomCommune": "MOLINCHART" }, { - "codePostal": "30110", - "codeCommune": "30132", - "libelleAcheminement": "LA GRAND COMBE", - "nomCommune": "LA GRAND COMBE" + "codePostal": "59440", + "codeCommune": "59240", + "libelleAcheminement": "FLOURSIES", + "nomCommune": "FLOURSIES" }, { - "codePostal": "25110", - "codeCommune": "25401", - "libelleAcheminement": "MONTIVERNAGE", - "nomCommune": "MONTIVERNAGE" + "codePostal": "48220", + "codeCommune": "48116", + "libelleAcheminement": "PONT DE MONTVERT SUD MONT LOZERE", + "nomCommune": "PONT DE MONTVERT SUD MONT LOZERE" }, { - "codePostal": "39600", - "codeCommune": "39565", - "libelleAcheminement": "VILLENEUVE D AVAL", - "nomCommune": "VILLENEUVE D AVAL" + "codePostal": "50320", + "codeCommune": "50493", + "libelleAcheminement": "ST JEAN DES CHAMPS", + "nomCommune": "ST JEAN DES CHAMPS" }, { - "codePostal": "54700", - "codeCommune": "54091", - "libelleAcheminement": "BOUXIERES SOUS FROIDMONT", - "nomCommune": "BOUXIERES SOUS FROIDMONT" + "codePostal": "59550", + "codeCommune": "59474", + "libelleAcheminement": "PRISCHES", + "nomCommune": "PRISCHES" }, { - "codePostal": "30240", - "codeCommune": "30133", - "libelleAcheminement": "LE GRAU DU ROI", - "nomCommune": "LE GRAU DU ROI" + "codePostal": "02390", + "codeCommune": "02503", + "libelleAcheminement": "MONT D ORIGNY", + "nomCommune": "MONT D ORIGNY" }, { - "codePostal": "25190", - "codeCommune": "25402", - "libelleAcheminement": "MONTJOIE LE CHATEAU", - "nomCommune": "MONTJOIE LE CHATEAU" + "codePostal": "59234", + "codeCommune": "59254", + "libelleAcheminement": "FRESSAIN", + "nomCommune": "FRESSAIN" }, { - "codePostal": "39800", - "codeCommune": "39568", - "libelleAcheminement": "VILLERSERINE", - "nomCommune": "VILLERSERINE" + "codePostal": "48800", + "codeCommune": "48119", + "libelleAcheminement": "PREVENCHERES", + "nomCommune": "PREVENCHERES" }, { - "codePostal": "54790", - "codeCommune": "54099", - "libelleAcheminement": "VAL DE BRIEY", - "nomCommune": "VAL DE BRIEY" + "codePostal": "50370", + "codeCommune": "50495", + "libelleAcheminement": "ST JEAN DU CORAIL DES BOIS", + "nomCommune": "ST JEAN DU CORAIL DES BOIS" }, { - "codePostal": "30290", - "codeCommune": "30141", - "libelleAcheminement": "LAUDUN L ARDOISE", - "nomCommune": "LAUDUN L ARDOISE" + "codePostal": "59121", + "codeCommune": "59475", + "libelleAcheminement": "PROUVY", + "nomCommune": "PROUVY" }, { - "codePostal": "25270", - "codeCommune": "25404", - "libelleAcheminement": "MONTMAHOUX", - "nomCommune": "MONTMAHOUX" + "codePostal": "02540", + "codeCommune": "02505", + "libelleAcheminement": "MONTFAUCON", + "nomCommune": "MONTFAUCON" }, { - "codePostal": "39600", - "codeCommune": "39569", - "libelleAcheminement": "VILLERS FARLAY", - "nomCommune": "VILLERS FARLAY" + "codePostal": "59242", + "codeCommune": "59258", + "libelleAcheminement": "GENECH", + "nomCommune": "GENECH" }, { - "codePostal": "54890", - "codeCommune": "54112", - "libelleAcheminement": "CHAMBLEY BUSSIERES", - "nomCommune": "CHAMBLEY BUSSIERES" + "codePostal": "48260", + "codeCommune": "48123", + "libelleAcheminement": "RECOULES D AUBRAC", + "nomCommune": "RECOULES D AUBRAC" }, { - "codePostal": "30350", - "codeCommune": "30146", - "libelleAcheminement": "LEDIGNAN", - "nomCommune": "LEDIGNAN" + "codePostal": "50530", + "codeCommune": "50496", + "libelleAcheminement": "ST JEAN LE THOMAS", + "nomCommune": "ST JEAN LE THOMAS" }, { - "codePostal": "25680", - "codeCommune": "25408", - "libelleAcheminement": "MONTUSSAINT", - "nomCommune": "MONTUSSAINT" + "codePostal": "59267", + "codeCommune": "59476", + "libelleAcheminement": "PROVILLE", + "nomCommune": "PROVILLE" }, { - "codePostal": "39120", - "codeCommune": "39570", - "libelleAcheminement": "VILLERS LES BOIS", - "nomCommune": "VILLERS LES BOIS" + "codePostal": "02600", + "codeCommune": "02506", + "libelleAcheminement": "MONTGOBERT", + "nomCommune": "MONTGOBERT" }, { - "codePostal": "54250", - "codeCommune": "54115", - "libelleAcheminement": "CHAMPIGNEULLES", - "nomCommune": "CHAMPIGNEULLES" + "codePostal": "59254", + "codeCommune": "59260", + "libelleAcheminement": "GHYVELDE", + "nomCommune": "GHYVELDE" }, { - "codePostal": "30126", - "codeCommune": "30149", - "libelleAcheminement": "LIRAC", - "nomCommune": "LIRAC" + "codePostal": "48000", + "codeCommune": "48137", + "libelleAcheminement": "ST BAUZILE", + "nomCommune": "ST BAUZILE" }, { - "codePostal": "25660", - "codeCommune": "25410", - "libelleAcheminement": "MORRE", - "nomCommune": "MORRE" + "codePostal": "50700", + "codeCommune": "50498", + "libelleAcheminement": "ST JOSEPH", + "nomCommune": "ST JOSEPH" }, { - "codePostal": "39360", - "codeCommune": "39579", - "libelleAcheminement": "VIRY", - "nomCommune": "VIRY" + "codePostal": "59243", + "codeCommune": "59479", + "libelleAcheminement": "QUAROUBLE", + "nomCommune": "QUAROUBLE" }, { - "codePostal": "54300", - "codeCommune": "54116", - "libelleAcheminement": "CHANTEHEUX", - "nomCommune": "CHANTEHEUX" + "codePostal": "02210", + "codeCommune": "02507", + "libelleAcheminement": "MONTGRU ST HILAIRE", + "nomCommune": "MONTGRU ST HILAIRE" }, { - "codePostal": "30960", - "codeCommune": "30152", - "libelleAcheminement": "LES MAGES", - "nomCommune": "LES MAGES" + "codePostal": "59600", + "codeCommune": "59264", + "libelleAcheminement": "GOGNIES CHAUSSEE", + "nomCommune": "GOGNIES CHAUSSEE" }, { - "codePostal": "25360", - "codeCommune": "25417", - "libelleAcheminement": "NAISEY LES GRANGES", - "nomCommune": "NAISEY LES GRANGES" + "codePostal": "48100", + "codeCommune": "48138", + "libelleAcheminement": "ST BONNET DE CHIRAC", + "nomCommune": "ST BONNET DE CHIRAC" }, { - "codePostal": "39240", - "codeCommune": "39583", - "libelleAcheminement": "VOSBLES VALFIN", - "nomCommune": "VOSBLES VALFIN" + "codePostal": "50240", + "codeCommune": "50500", + "libelleAcheminement": "ST LAURENT DE TERREGATTE", + "nomCommune": "ST LAURENT DE TERREGATTE" }, { - "codePostal": "54360", - "codeCommune": "54121", - "libelleAcheminement": "CHARMOIS", - "nomCommune": "CHARMOIS" + "codePostal": "59890", + "codeCommune": "59482", + "libelleAcheminement": "QUESNOY SUR DEULE", + "nomCommune": "QUESNOY SUR DEULE" }, { - "codePostal": "30129", - "codeCommune": "30155", - "libelleAcheminement": "MANDUEL", - "nomCommune": "MANDUEL" + "codePostal": "02400", + "codeCommune": "02509", + "libelleAcheminement": "MONTHIERS", + "nomCommune": "MONTHIERS" }, { - "codePostal": "25330", - "codeCommune": "25420", - "libelleAcheminement": "NANS SOUS STE ANNE", - "nomCommune": "NANS SOUS STE ANNE" + "codePostal": "59360", + "codeCommune": "59274", + "libelleAcheminement": "LA GROISE", + "nomCommune": "LA GROISE" }, { - "codePostal": "40700", - "codeCommune": "40007", - "libelleAcheminement": "ARGELOS", - "nomCommune": "ARGELOS" + "codePostal": "48200", + "codeCommune": "48140", + "libelleAcheminement": "ST CHELY D APCHER", + "nomCommune": "ST CHELY D APCHER" }, { - "codePostal": "54122", - "codeCommune": "54125", - "libelleAcheminement": "CHENEVIERES", - "nomCommune": "CHENEVIERES" + "codePostal": "50310", + "codeCommune": "50511", + "libelleAcheminement": "ST MARTIN D AUDOUVILLE", + "nomCommune": "ST MARTIN D AUDOUVILLE" }, { - "codePostal": "30360", - "codeCommune": "30158", - "libelleAcheminement": "MARTIGNARGUES", - "nomCommune": "MARTIGNARGUES" + "codePostal": "59283", + "codeCommune": "59489", + "libelleAcheminement": "RAIMBEAUCOURT", + "nomCommune": "RAIMBEAUCOURT" }, { - "codePostal": "25150", - "codeCommune": "25422", - "libelleAcheminement": "NEUCHATEL URTIERE", - "nomCommune": "NEUCHATEL URTIERE" + "codePostal": "02250", + "codeCommune": "02513", + "libelleAcheminement": "MONTIGNY LE FRANC", + "nomCommune": "MONTIGNY LE FRANC" }, { - "codePostal": "40120", - "codeCommune": "40033", - "libelleAcheminement": "BELIS", - "nomCommune": "BELIS" + "codePostal": "59670", + "codeCommune": "59282", + "libelleAcheminement": "HARDIFORT", + "nomCommune": "HARDIFORT" }, { - "codePostal": "54610", - "codeCommune": "54131", - "libelleAcheminement": "CLEMERY", - "nomCommune": "CLEMERY" + "codePostal": "48210", + "codeCommune": "48146", + "libelleAcheminement": "GORGES DU TARN CAUSSES", + "nomCommune": "GORGES DU TARN CAUSSES" }, { - "codePostal": "30140", - "codeCommune": "30162", - "libelleAcheminement": "MASSILLARGUES ATTUECH", - "nomCommune": "MASSILLARGUES ATTUECH" + "codePostal": "50800", + "codeCommune": "50521", + "libelleAcheminement": "ST MAUR DES BOIS", + "nomCommune": "ST MAUR DES BOIS" }, { - "codePostal": "25580", - "codeCommune": "25424", - "libelleAcheminement": "LES PREMIERS SAPINS", - "nomCommune": "LES PREMIERS SAPINS" + "codePostal": "59550", + "codeCommune": "59503", + "libelleAcheminement": "ROBERSART", + "nomCommune": "ROBERSART" }, { - "codePostal": "40170", - "codeCommune": "40043", - "libelleAcheminement": "BIAS", - "nomCommune": "BIAS" + "codePostal": "02270", + "codeCommune": "02517", + "libelleAcheminement": "MONTIGNY SUR CRECY", + "nomCommune": "MONTIGNY SUR CRECY" }, { - "codePostal": "54400", - "codeCommune": "54138", - "libelleAcheminement": "COSNES ET ROMAIN", - "nomCommune": "COSNES ET ROMAIN" + "codePostal": "59121", + "codeCommune": "59288", + "libelleAcheminement": "HAULCHIN", + "nomCommune": "HAULCHIN" }, { - "codePostal": "30430", - "codeCommune": "30164", - "libelleAcheminement": "MEJANNES LE CLAP", - "nomCommune": "MEJANNES LE CLAP" + "codePostal": "48320", + "codeCommune": "48146", + "libelleAcheminement": "GORGES DU TARN CAUSSES", + "nomCommune": "GORGES DU TARN CAUSSES" }, { - "codePostal": "25250", - "codeCommune": "25431", - "libelleAcheminement": "ONANS", - "nomCommune": "ONANS" + "codePostal": "50480", + "codeCommune": "50523", + "libelleAcheminement": "STE MERE EGLISE", + "nomCommune": "STE MERE EGLISE" }, { - "codePostal": "40190", - "codeCommune": "40052", - "libelleAcheminement": "BOURDALAT", - "nomCommune": "BOURDALAT" + "codePostal": "59230", + "codeCommune": "59511", + "libelleAcheminement": "ROSULT", + "nomCommune": "ROSULT" }, { - "codePostal": "54210", - "codeCommune": "54141", - "libelleAcheminement": "COYVILLER", - "nomCommune": "COYVILLER" + "codePostal": "02220", + "codeCommune": "02523", + "libelleAcheminement": "MONT ST MARTIN", + "nomCommune": "MONT ST MARTIN" }, { - "codePostal": "30540", - "codeCommune": "30169", - "libelleAcheminement": "MILHAUD", - "nomCommune": "MILHAUD" + "codePostal": "59530", + "codeCommune": "59296", + "libelleAcheminement": "HECQ", + "nomCommune": "HECQ" }, { - "codePostal": "25120", - "codeCommune": "25433", - "libelleAcheminement": "ORGEANS BLANCHEFONTAINE", - "nomCommune": "ORGEANS BLANCHEFONTAINE" + "codePostal": "48000", + "codeCommune": "48147", + "libelleAcheminement": "ST ETIENNE DU VALDONNEZ", + "nomCommune": "ST ETIENNE DU VALDONNEZ" }, { - "codePostal": "40300", - "codeCommune": "40059", - "libelleAcheminement": "CAGNOTTE", - "nomCommune": "CAGNOTTE" + "codePostal": "50370", + "codeCommune": "50529", + "libelleAcheminement": "ST NICOLAS DES BOIS", + "nomCommune": "ST NICOLAS DES BOIS" }, { - "codePostal": "54740", - "codeCommune": "54142", - "libelleAcheminement": "CRANTENOY", - "nomCommune": "CRANTENOY" + "codePostal": "59100", + "codeCommune": "59512", + "libelleAcheminement": "ROUBAIX", + "nomCommune": "ROUBAIX" }, { - "codePostal": "30170", - "codeCommune": "30172", - "libelleAcheminement": "MONOBLET", - "nomCommune": "MONOBLET" + "codePostal": "02360", + "codeCommune": "02526", + "libelleAcheminement": "MORGNY EN THIERACHE", + "nomCommune": "MORGNY EN THIERACHE" }, { - "codePostal": "25530", - "codeCommune": "25435", - "libelleAcheminement": "ORSANS", - "nomCommune": "ORSANS" + "codePostal": "59510", + "codeCommune": "59299", + "libelleAcheminement": "HEM", + "nomCommune": "HEM" }, { - "codePostal": "40090", - "codeCommune": "40062", - "libelleAcheminement": "CAMPET ET LAMOLERE", - "nomCommune": "CAMPET ET LAMOLERE" + "codePostal": "48120", + "codeCommune": "48149", + "libelleAcheminement": "STE EULALIE", + "nomCommune": "STE EULALIE" }, { - "codePostal": "54110", - "codeCommune": "54145", - "libelleAcheminement": "CREVIC", - "nomCommune": "CREVIC" + "codePostal": "50330", + "codeCommune": "50539", + "libelleAcheminement": "ST PIERRE EGLISE", + "nomCommune": "ST PIERRE EGLISE" }, { - "codePostal": "30340", - "codeCommune": "30173", - "libelleAcheminement": "MONS", - "nomCommune": "MONS" + "codePostal": "59258", + "codeCommune": "59517", + "libelleAcheminement": "LES RUES DES VIGNES", + "nomCommune": "LES RUES DES VIGNES" }, { - "codePostal": "25360", - "codeCommune": "25437", - "libelleAcheminement": "OSSE", - "nomCommune": "OSSE" + "codePostal": "02270", + "codeCommune": "02529", + "libelleAcheminement": "MORTIERS", + "nomCommune": "MORTIERS" }, { - "codePostal": "40180", - "codeCommune": "40063", - "libelleAcheminement": "CANDRESSE", - "nomCommune": "CANDRESSE" + "codePostal": "59195", + "codeCommune": "59302", + "libelleAcheminement": "HERIN", + "nomCommune": "HERIN" }, { - "codePostal": "54720", - "codeCommune": "54151", - "libelleAcheminement": "CUTRY", - "nomCommune": "CUTRY" + "codePostal": "48240", + "codeCommune": "48152", + "libelleAcheminement": "VENTALON EN CEVENNES", + "nomCommune": "VENTALON EN CEVENNES" }, { - "codePostal": "30630", - "codeCommune": "30175", - "libelleAcheminement": "MONTCLUS", - "nomCommune": "MONTCLUS" + "codePostal": "50750", + "codeCommune": "50546", + "libelleAcheminement": "BOURGVALLEES", + "nomCommune": "BOURGVALLEES" }, { - "codePostal": "25440", - "codeCommune": "25445", - "libelleAcheminement": "PAROY", - "nomCommune": "PAROY" + "codePostal": "59281", + "codeCommune": "59520", + "libelleAcheminement": "RUMILLY EN CAMBRESIS", + "nomCommune": "RUMILLY EN CAMBRESIS" }, { - "codePostal": "40400", - "codeCommune": "40066", - "libelleAcheminement": "CARCARES STE CROIX", - "nomCommune": "CARCARES STE CROIX" + "codePostal": "02160", + "codeCommune": "02534", + "libelleAcheminement": "MUSCOURT", + "nomCommune": "MUSCOURT" }, { - "codePostal": "54110", - "codeCommune": "54159", - "libelleAcheminement": "DOMBASLE SUR MEURTHE", - "nomCommune": "DOMBASLE SUR MEURTHE" + "codePostal": "59470", + "codeCommune": "59305", + "libelleAcheminement": "HERZEELE", + "nomCommune": "HERZEELE" }, { - "codePostal": "30114", - "codeCommune": "30186", - "libelleAcheminement": "NAGES ET SOLORGUES", - "nomCommune": "NAGES ET SOLORGUES" + "codePostal": "48400", + "codeCommune": "48166", + "libelleAcheminement": "CANS ET CEVENNES", + "nomCommune": "CANS ET CEVENNES" }, { - "codePostal": "25360", - "codeCommune": "25446", - "libelleAcheminement": "PASSAVANT", - "nomCommune": "PASSAVANT" + "codePostal": "50750", + "codeCommune": "50546", + "libelleAcheminement": "BOURGVALLEES", + "nomCommune": "BOURGVALLEES" }, { - "codePostal": "40320", - "codeCommune": "40072", - "libelleAcheminement": "CASTELNAU TURSAN", - "nomCommune": "CASTELNAU TURSAN" + "codePostal": "59230", + "codeCommune": "59526", + "libelleAcheminement": "ST AMAND LES EAUX", + "nomCommune": "ST AMAND LES EAUX" }, { - "codePostal": "54130", - "codeCommune": "54165", - "libelleAcheminement": "DOMMARTEMONT", - "nomCommune": "DOMMARTEMONT" + "codePostal": "02210", + "codeCommune": "02538", + "libelleAcheminement": "NANTEUIL NOTRE DAME", + "nomCommune": "NANTEUIL NOTRE DAME" }, { - "codePostal": "30360", - "codeCommune": "30188", - "libelleAcheminement": "NERS", - "nomCommune": "NERS" + "codePostal": "59540", + "codeCommune": "59321", + "libelleAcheminement": "INCHY", + "nomCommune": "INCHY" }, { - "codePostal": "25170", - "codeCommune": "25448", - "libelleAcheminement": "PELOUSEY", - "nomCommune": "PELOUSEY" + "codePostal": "48140", + "codeCommune": "48169", + "libelleAcheminement": "ST LEGER DU MALZIEU", + "nomCommune": "ST LEGER DU MALZIEU" }, { - "codePostal": "40700", - "codeCommune": "40073", - "libelleAcheminement": "CASTELNER", - "nomCommune": "CASTELNER" + "codePostal": "50750", + "codeCommune": "50546", + "libelleAcheminement": "BOURGVALLEES", + "nomCommune": "BOURGVALLEES" }, { - "codePostal": "54200", - "codeCommune": "54174", - "libelleAcheminement": "ECROUVES", - "nomCommune": "ECROUVES" + "codePostal": "59440", + "codeCommune": "59529", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "30900", - "codeCommune": "30189", - "libelleAcheminement": "NIMES", - "nomCommune": "NIMES" + "codePostal": "02300", + "codeCommune": "02546", + "libelleAcheminement": "LA NEUVILLE EN BEINE", + "nomCommune": "LA NEUVILLE EN BEINE" }, { - "codePostal": "25170", - "codeCommune": "25455", - "libelleAcheminement": "PLACEY", - "nomCommune": "PLACEY" + "codePostal": "59495", + "codeCommune": "59340", + "libelleAcheminement": "LEFFRINCKOUCKE", + "nomCommune": "LEFFRINCKOUCKE" }, { - "codePostal": "40330", - "codeCommune": "40074", - "libelleAcheminement": "CASTEL SARRAZIN", - "nomCommune": "CASTEL SARRAZIN" + "codePostal": "48160", + "codeCommune": "48173", + "libelleAcheminement": "ST MICHEL DE DEZE", + "nomCommune": "ST MICHEL DE DEZE" }, { - "codePostal": "54370", - "codeCommune": "54177", - "libelleAcheminement": "EMBERMENIL", - "nomCommune": "EMBERMENIL" + "codePostal": "50200", + "codeCommune": "50550", + "libelleAcheminement": "ST SAUVEUR VILLAGES", + "nomCommune": "ST SAUVEUR VILLAGES" }, { - "codePostal": "30160", - "codeCommune": "30194", - "libelleAcheminement": "PEYREMALE", - "nomCommune": "PEYREMALE" + "codePostal": "59163", + "codeCommune": "59530", + "libelleAcheminement": "ST AYBERT", + "nomCommune": "ST AYBERT" }, { - "codePostal": "25150", - "codeCommune": "25463", - "libelleAcheminement": "PONT DE ROIDE VERMONDANS", - "nomCommune": "PONT DE ROIDE VERMONDANS" + "codePostal": "02100", + "codeCommune": "02549", + "libelleAcheminement": "NEUVILLE ST AMAND", + "nomCommune": "NEUVILLE ST AMAND" }, { - "codePostal": "40270", - "codeCommune": "40080", - "libelleAcheminement": "CAZERES SUR L ADOUR", - "nomCommune": "CAZERES SUR L ADOUR" + "codePostal": "59740", + "codeCommune": "59342", + "libelleAcheminement": "LEZ FONTAINE", + "nomCommune": "LEZ FONTAINE" }, { - "codePostal": "54690", - "codeCommune": "54186", - "libelleAcheminement": "EULMONT", - "nomCommune": "EULMONT" + "codePostal": "48500", + "codeCommune": "48181", + "libelleAcheminement": "ST SATURNIN", + "nomCommune": "ST SATURNIN" }, { - "codePostal": "30330", - "codeCommune": "30196", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "50390", + "codeCommune": "50551", + "libelleAcheminement": "ST SAUVEUR LE VICOMTE", + "nomCommune": "ST SAUVEUR LE VICOMTE" }, { - "codePostal": "25550", - "codeCommune": "25469", - "libelleAcheminement": "PRESENTEVILLERS", - "nomCommune": "PRESENTEVILLERS" + "codePostal": "59360", + "codeCommune": "59531", + "libelleAcheminement": "ST BENIN", + "nomCommune": "ST BENIN" }, { - "codePostal": "40320", - "codeCommune": "40083", - "libelleAcheminement": "CLEDES", - "nomCommune": "CLEDES" + "codePostal": "02860", + "codeCommune": "02550", + "libelleAcheminement": "NEUVILLE SUR AILETTE", + "nomCommune": "NEUVILLE SUR AILETTE" }, { - "codePostal": "54470", - "codeCommune": "54193", - "libelleAcheminement": "FEY EN HAYE", - "nomCommune": "FEY EN HAYE" + "codePostal": "59620", + "codeCommune": "59344", + "libelleAcheminement": "LEVAL", + "nomCommune": "LEVAL" }, { - "codePostal": "30122", - "codeCommune": "30198", - "libelleAcheminement": "LES PLANTIERS", - "nomCommune": "LES PLANTIERS" + "codePostal": "48700", + "codeCommune": "48188", + "libelleAcheminement": "SERVERETTE", + "nomCommune": "SERVERETTE" }, { - "codePostal": "25440", - "codeCommune": "25475", - "libelleAcheminement": "QUINGEY", - "nomCommune": "QUINGEY" + "codePostal": "50190", + "codeCommune": "50552", + "libelleAcheminement": "ST SEBASTIEN DE RAIDS", + "nomCommune": "ST SEBASTIEN DE RAIDS" }, { - "codePostal": "40800", - "codeCommune": "40091", - "libelleAcheminement": "DUHORT BACHEN", - "nomCommune": "DUHORT BACHEN" + "codePostal": "59292", + "codeCommune": "59533", + "libelleAcheminement": "ST HILAIRE LEZ CAMBRAI", + "nomCommune": "ST HILAIRE LEZ CAMBRAI" }, { - "codePostal": "54710", - "codeCommune": "54197", - "libelleAcheminement": "FLEVILLE DEVANT NANCY", - "nomCommune": "FLEVILLE DEVANT NANCY" + "codePostal": "02880", + "codeCommune": "02551", + "libelleAcheminement": "NEUVILLE SUR MARGIVAL", + "nomCommune": "NEUVILLE SUR MARGIVAL" }, { - "codePostal": "30610", - "codeCommune": "30208", - "libelleAcheminement": "PUECHREDON", - "nomCommune": "PUECHREDON" + "codePostal": "59777", + "codeCommune": "59350", + "libelleAcheminement": "LILLE", + "nomCommune": "LILLE" }, { - "codePostal": "25320", - "codeCommune": "25477", - "libelleAcheminement": "RANCENAY", - "nomCommune": "RANCENAY" + "codePostal": "48500", + "codeCommune": "48191", + "libelleAcheminement": "LA TIEULE", + "nomCommune": "LA TIEULE" }, { - "codePostal": "40240", - "codeCommune": "40096", - "libelleAcheminement": "ESTIGARDE", - "nomCommune": "ESTIGARDE" + "codePostal": "50750", + "codeCommune": "50556", + "libelleAcheminement": "STE SUZANNE SUR VIRE", + "nomCommune": "STE SUZANNE SUR VIRE" }, { - "codePostal": "54150", - "codeCommune": "54198", - "libelleAcheminement": "FLEVILLE LIXIERES", - "nomCommune": "FLEVILLE LIXIERES" + "codePostal": "59730", + "codeCommune": "59541", + "libelleAcheminement": "ST PYTHON", + "nomCommune": "ST PYTHON" }, { - "codePostal": "30200", - "codeCommune": "30222", - "libelleAcheminement": "LA ROQUE SUR CEZE", - "nomCommune": "LA ROQUE SUR CEZE" + "codePostal": "02390", + "codeCommune": "02552", + "libelleAcheminement": "NEUVILLETTE", + "nomCommune": "NEUVILLETTE" }, { - "codePostal": "25550", - "codeCommune": "25481", - "libelleAcheminement": "RAYNANS", - "nomCommune": "RAYNANS" + "codePostal": "59840", + "codeCommune": "59356", + "libelleAcheminement": "LOMPRET", + "nomCommune": "LOMPRET" }, { - "codePostal": "40180", - "codeCommune": "40106", - "libelleAcheminement": "GARREY", - "nomCommune": "GARREY" + "codePostal": "48800", + "codeCommune": "48198", + "libelleAcheminement": "VILLEFORT", + "nomCommune": "VILLEFORT" }, { - "codePostal": "54840", - "codeCommune": "54202", - "libelleAcheminement": "FONTENOY SUR MOSELLE", - "nomCommune": "FONTENOY SUR MOSELLE" + "codePostal": "50420", + "codeCommune": "50563", + "libelleAcheminement": "ST VIGOR DES MONTS", + "nomCommune": "ST VIGOR DES MONTS" }, { - "codePostal": "30500", - "codeCommune": "30227", - "libelleAcheminement": "ST AMBROIX", - "nomCommune": "ST AMBROIX" + "codePostal": "59330", + "codeCommune": "59543", + "libelleAcheminement": "ST REMY DU NORD", + "nomCommune": "ST REMY DU NORD" }, { - "codePostal": "25160", - "codeCommune": "25486", - "libelleAcheminement": "REMORAY BOUJEONS", - "nomCommune": "REMORAY BOUJEONS" + "codePostal": "02400", + "codeCommune": "02554", + "libelleAcheminement": "NOGENTEL", + "nomCommune": "NOGENTEL" }, { - "codePostal": "40320", - "codeCommune": "40110", - "libelleAcheminement": "GEAUNE", - "nomCommune": "GEAUNE" + "codePostal": "59830", + "codeCommune": "59364", + "libelleAcheminement": "LOUVIL", + "nomCommune": "LOUVIL" }, { - "codePostal": "54930", - "codeCommune": "54207", - "libelleAcheminement": "FRAISNES EN SAINTOIS", - "nomCommune": "FRAISNES EN SAINTOIS" + "codePostal": "49700", + "codeCommune": "49003", + "libelleAcheminement": "TUFFALUN", + "nomCommune": "TUFFALUN" }, { - "codePostal": "30110", - "codeCommune": "30239", - "libelleAcheminement": "STE CECILE D ANDORGE", - "nomCommune": "STE CECILE D ANDORGE" + "codePostal": "50530", + "codeCommune": "50565", + "libelleAcheminement": "SARTILLY BAIE BOCAGE", + "nomCommune": "SARTILLY BAIE BOCAGE" }, { - "codePostal": "25640", - "codeCommune": "25490", - "libelleAcheminement": "RIGNEY", - "nomCommune": "RIGNEY" + "codePostal": "59268", + "codeCommune": "59552", + "libelleAcheminement": "SANCOURT", + "nomCommune": "SANCOURT" }, { - "codePostal": "40700", - "codeCommune": "40128", - "libelleAcheminement": "HORSARRIEU", - "nomCommune": "HORSARRIEU" + "codePostal": "02340", + "codeCommune": "02556", + "libelleAcheminement": "NOIRCOURT", + "nomCommune": "NOIRCOURT" }, { - "codePostal": "54450", - "codeCommune": "54211", - "libelleAcheminement": "FREMONVILLE", - "nomCommune": "FREMONVILLE" + "codePostal": "59720", + "codeCommune": "59365", + "libelleAcheminement": "LOUVROIL", + "nomCommune": "LOUVROIL" }, { - "codePostal": "30360", - "codeCommune": "30240", - "libelleAcheminement": "ST CESAIRE DE GAUZIGNAN", - "nomCommune": "ST CESAIRE DE GAUZIGNAN" + "codePostal": "49700", + "codeCommune": "49003", + "libelleAcheminement": "TUFFALUN", + "nomCommune": "TUFFALUN" }, { - "codePostal": "25310", - "codeCommune": "25497", - "libelleAcheminement": "ROCHES LES BLAMONT", - "nomCommune": "ROCHES LES BLAMONT" + "codePostal": "50200", + "codeCommune": "50568", + "libelleAcheminement": "SAUSSEY", + "nomCommune": "SAUSSEY" }, { - "codePostal": "40800", - "codeCommune": "40146", - "libelleAcheminement": "LATRILLE", - "nomCommune": "LATRILLE" + "codePostal": "59211", + "codeCommune": "59553", + "libelleAcheminement": "SANTES", + "nomCommune": "SANTES" }, { - "codePostal": "54115", - "codeCommune": "54220", - "libelleAcheminement": "GEMONVILLE", - "nomCommune": "GEMONVILLE" + "codePostal": "02800", + "codeCommune": "02560", + "libelleAcheminement": "NOUVION LE COMTE", + "nomCommune": "NOUVION LE COMTE" }, { - "codePostal": "30190", - "codeCommune": "30241", - "libelleAcheminement": "ST CHAPTES", - "nomCommune": "ST CHAPTES" + "codePostal": "59173", + "codeCommune": "59366", + "libelleAcheminement": "LYNDE", + "nomCommune": "LYNDE" }, { - "codePostal": "25380", - "codeCommune": "25504", - "libelleAcheminement": "ROSUREUX", - "nomCommune": "ROSUREUX" + "codePostal": "49440", + "codeCommune": "49008", + "libelleAcheminement": "ANGRIE", + "nomCommune": "ANGRIE" }, { - "codePostal": "40250", - "codeCommune": "40147", - "libelleAcheminement": "LAUREDE", - "nomCommune": "LAUREDE" + "codePostal": "50170", + "codeCommune": "50574", + "libelleAcheminement": "SERVON", + "nomCommune": "SERVON" }, { - "codePostal": "54122", - "codeCommune": "54229", - "libelleAcheminement": "GLONVILLE", - "nomCommune": "GLONVILLE" + "codePostal": "59216", + "codeCommune": "59555", + "libelleAcheminement": "SARS POTERIES", + "nomCommune": "SARS POTERIES" }, { - "codePostal": "30360", - "codeCommune": "30250", - "libelleAcheminement": "ST ETIENNE DE L OLM", - "nomCommune": "ST ETIENNE DE L OLM" + "codePostal": "02860", + "codeCommune": "02561", + "libelleAcheminement": "NOUVION LE VINEUX", + "nomCommune": "NOUVION LE VINEUX" }, { - "codePostal": "25680", - "codeCommune": "25505", - "libelleAcheminement": "ROUGEMONT", - "nomCommune": "ROUGEMONT" + "codePostal": "59390", + "codeCommune": "59367", + "libelleAcheminement": "LYS LEZ LANNOY", + "nomCommune": "LYS LEZ LANNOY" }, { - "codePostal": "40320", - "codeCommune": "40148", - "libelleAcheminement": "LAURET", - "nomCommune": "LAURET" + "codePostal": "49260", + "codeCommune": "49011", + "libelleAcheminement": "ARTANNES SUR THOUET", + "nomCommune": "ARTANNES SUR THOUET" }, { - "codePostal": "54930", - "codeCommune": "54241", - "libelleAcheminement": "GUGNEY", - "nomCommune": "GUGNEY" + "codePostal": "50340", + "codeCommune": "50580", + "libelleAcheminement": "SOTTEVILLE", + "nomCommune": "SOTTEVILLE" }, { - "codePostal": "30200", - "codeCommune": "30251", - "libelleAcheminement": "ST ETIENNE DES SORTS", - "nomCommune": "ST ETIENNE DES SORTS" + "codePostal": "59227", + "codeCommune": "59558", + "libelleAcheminement": "SAULZOIR", + "nomCommune": "SAULZOIR" }, { - "codePostal": "25370", - "codeCommune": "25514", - "libelleAcheminement": "ST ANTOINE", - "nomCommune": "ST ANTOINE" + "codePostal": "02290", + "codeCommune": "02562", + "libelleAcheminement": "NOUVRON VINGRE", + "nomCommune": "NOUVRON VINGRE" }, { - "codePostal": "40400", - "codeCommune": "40151", - "libelleAcheminement": "LESGOR", - "nomCommune": "LESGOR" + "codePostal": "59233", + "codeCommune": "59369", + "libelleAcheminement": "MAING", + "nomCommune": "MAING" }, { - "codePostal": "54113", - "codeCommune": "54242", - "libelleAcheminement": "GYE", - "nomCommune": "GYE" + "codePostal": "49430", + "codeCommune": "49017", + "libelleAcheminement": "BARACE", + "nomCommune": "BARACE" }, { - "codePostal": "30560", - "codeCommune": "30259", - "libelleAcheminement": "ST HILAIRE DE BRETHMAS", - "nomCommune": "ST HILAIRE DE BRETHMAS" + "codePostal": "50150", + "codeCommune": "50582", + "libelleAcheminement": "SOURDEVAL", + "nomCommune": "SOURDEVAL" }, { - "codePostal": "25340", - "codeCommune": "25516", - "libelleAcheminement": "ST GEORGES ARMONT", - "nomCommune": "ST GEORGES ARMONT" + "codePostal": "59440", + "codeCommune": "59563", + "libelleAcheminement": "SEMOUSIES", + "nomCommune": "SEMOUSIES" }, { - "codePostal": "40090", - "codeCommune": "40162", - "libelleAcheminement": "LUCBARDEZ ET BARGUES", - "nomCommune": "LUCBARDEZ ET BARGUES" + "codePostal": "02550", + "codeCommune": "02574", + "libelleAcheminement": "ORIGNY EN THIERACHE", + "nomCommune": "ORIGNY EN THIERACHE" }, { - "codePostal": "54440", - "codeCommune": "54261", - "libelleAcheminement": "HERSERANGE", - "nomCommune": "HERSERANGE" + "codePostal": "59870", + "codeCommune": "59375", + "libelleAcheminement": "MARCHIENNES", + "nomCommune": "MARCHIENNES" }, { - "codePostal": "30360", - "codeCommune": "30261", - "libelleAcheminement": "ST HIPPOLYTE DE CATON", - "nomCommune": "ST HIPPOLYTE DE CATON" + "codePostal": "49150", + "codeCommune": "49018", + "libelleAcheminement": "BAUGE EN ANJOU", + "nomCommune": "BAUGE EN ANJOU" }, { - "codePostal": "25210", - "codeCommune": "25522", - "libelleAcheminement": "ST JULIEN LES RUSSEY", - "nomCommune": "ST JULIEN LES RUSSEY" + "codePostal": "50700", + "codeCommune": "50588", + "libelleAcheminement": "TAMERVILLE", + "nomCommune": "TAMERVILLE" }, { - "codePostal": "40430", - "codeCommune": "40167", - "libelleAcheminement": "LUXEY", - "nomCommune": "LUXEY" + "codePostal": "59740", + "codeCommune": "59572", + "libelleAcheminement": "SOLRE LE CHATEAU", + "nomCommune": "SOLRE LE CHATEAU" }, { - "codePostal": "54330", - "codeCommune": "54264", - "libelleAcheminement": "HOUDELMONT", - "nomCommune": "HOUDELMONT" + "codePostal": "02160", + "codeCommune": "02578", + "libelleAcheminement": "OULCHES LA VALLEE FOULON", + "nomCommune": "OULCHES LA VALLEE FOULON" }, { - "codePostal": "30330", - "codeCommune": "30282", - "libelleAcheminement": "ST MARCEL DE CAREIRET", - "nomCommune": "ST MARCEL DE CAREIRET" + "codePostal": "59700", + "codeCommune": "59378", + "libelleAcheminement": "MARCQ EN BAROEUL", + "nomCommune": "MARCQ EN BAROEUL" }, { - "codePostal": "25630", - "codeCommune": "25526", - "libelleAcheminement": "STE SUZANNE", - "nomCommune": "STE SUZANNE" + "codePostal": "49070", + "codeCommune": "49020", + "libelleAcheminement": "BEAUCOUZE", + "nomCommune": "BEAUCOUZE" }, { - "codePostal": "40120", - "codeCommune": "40170", - "libelleAcheminement": "MAILLERES", - "nomCommune": "MAILLERES" + "codePostal": "50320", + "codeCommune": "50590", + "libelleAcheminement": "LE TANU", + "nomCommune": "LE TANU" }, { - "codePostal": "54140", - "codeCommune": "54274", - "libelleAcheminement": "JARVILLE LA MALGRANGE", - "nomCommune": "JARVILLE LA MALGRANGE" + "codePostal": "59740", + "codeCommune": "59573", + "libelleAcheminement": "SOLRINNES", + "nomCommune": "SOLRINNES" }, { - "codePostal": "30360", - "codeCommune": "30285", - "libelleAcheminement": "ST MAURICE DE CAZEVIEILLE", - "nomCommune": "ST MAURICE DE CAZEVIEILLE" + "codePostal": "02210", + "codeCommune": "02579", + "libelleAcheminement": "OULCHY LA VILLE", + "nomCommune": "OULCHY LA VILLE" }, { - "codePostal": "25410", - "codeCommune": "25527", - "libelleAcheminement": "ST VIT", - "nomCommune": "ST VIT" + "codePostal": "59252", + "codeCommune": "59379", + "libelleAcheminement": "MARCQ EN OSTREVENT", + "nomCommune": "MARCQ EN OSTREVENT" }, { - "codePostal": "40330", - "codeCommune": "40173", - "libelleAcheminement": "MARPAPS", - "nomCommune": "MARPAPS" + "codePostal": "49122", + "codeCommune": "49027", + "libelleAcheminement": "BEGROLLES EN MAUGES", + "nomCommune": "BEGROLLES EN MAUGES" }, { - "codePostal": "54700", - "codeCommune": "54279", - "libelleAcheminement": "JEZAINVILLE", - "nomCommune": "JEZAINVILLE" + "codePostal": "50320", + "codeCommune": "50590", + "libelleAcheminement": "LE TANU", + "nomCommune": "LE TANU" }, { - "codePostal": "30700", - "codeCommune": "30286", - "libelleAcheminement": "ST MAXIMIN", - "nomCommune": "ST MAXIMIN" + "codePostal": "59490", + "codeCommune": "59574", + "libelleAcheminement": "SOMAIN", + "nomCommune": "SOMAIN" }, { - "codePostal": "25580", - "codeCommune": "25535", - "libelleAcheminement": "SAULES", - "nomCommune": "SAULES" + "codePostal": "02210", + "codeCommune": "02580", + "libelleAcheminement": "OULCHY LE CHATEAU", + "nomCommune": "OULCHY LE CHATEAU" }, { - "codePostal": "40200", - "codeCommune": "40184", - "libelleAcheminement": "MIMIZAN", - "nomCommune": "MIMIZAN" + "codePostal": "59550", + "codeCommune": "59384", + "libelleAcheminement": "MAROILLES", + "nomCommune": "MAROILLES" }, { - "codePostal": "54970", - "codeCommune": "54295", - "libelleAcheminement": "LANDRES", - "nomCommune": "LANDRES" + "codePostal": "49320", + "codeCommune": "49029", + "libelleAcheminement": "BLAISON ST SULPICE", + "nomCommune": "BLAISON ST SULPICE" }, { - "codePostal": "30200", - "codeCommune": "30287", - "libelleAcheminement": "ST MICHEL D EUZET", - "nomCommune": "ST MICHEL D EUZET" + "codePostal": "50640", + "codeCommune": "50591", + "libelleAcheminement": "LE TEILLEUL", + "nomCommune": "LE TEILLEUL" }, { - "codePostal": "25290", - "codeCommune": "25537", - "libelleAcheminement": "SCEY MAISIERES", - "nomCommune": "SCEY MAISIERES" + "codePostal": "59380", + "codeCommune": "59576", + "libelleAcheminement": "SPYCKER", + "nomCommune": "SPYCKER" }, { - "codePostal": "40320", - "codeCommune": "40185", - "libelleAcheminement": "MIRAMONT SENSACQ", - "nomCommune": "MIRAMONT SENSACQ" + "codePostal": "02210", + "codeCommune": "02580", + "libelleAcheminement": "OULCHY LE CHATEAU", + "nomCommune": "OULCHY LE CHATEAU" }, { - "codePostal": "54370", - "codeCommune": "54297", - "libelleAcheminement": "LANEUVEVILLE AUX BOIS", - "nomCommune": "LANEUVEVILLE AUX BOIS" + "codePostal": "59274", + "codeCommune": "59388", + "libelleAcheminement": "MARQUILLIES", + "nomCommune": "MARQUILLIES" }, { - "codePostal": "30330", - "codeCommune": "30292", - "libelleAcheminement": "ST PONS LA CALM", - "nomCommune": "ST PONS LA CALM" + "codePostal": "49125", + "codeCommune": "49048", + "libelleAcheminement": "BRIOLLAY", + "nomCommune": "BRIOLLAY" }, { - "codePostal": "25430", - "codeCommune": "25544", - "libelleAcheminement": "SERVIN", - "nomCommune": "SERVIN" + "codePostal": "50420", + "codeCommune": "50592", + "libelleAcheminement": "TESSY BOCAGE", + "nomCommune": "TESSY BOCAGE" }, { - "codePostal": "40290", - "codeCommune": "40186", - "libelleAcheminement": "MISSON", - "nomCommune": "MISSON" + "codePostal": "59181", + "codeCommune": "59581", + "libelleAcheminement": "STEENWERCK", + "nomCommune": "STEENWERCK" }, { - "codePostal": "54740", - "codeCommune": "54299", - "libelleAcheminement": "LANEUVEVILLE DEVANT BAYON", - "nomCommune": "LANEUVEVILLE DEVANT BAYON" + "codePostal": "02220", + "codeCommune": "02581", + "libelleAcheminement": "PAARS", + "nomCommune": "PAARS" }, { - "codePostal": "30700", - "codeCommune": "30295", - "libelleAcheminement": "ST QUENTIN LA POTERIE", - "nomCommune": "ST QUENTIN LA POTERIE" + "codePostal": "59241", + "codeCommune": "59389", + "libelleAcheminement": "MASNIERES", + "nomCommune": "MASNIERES" }, { - "codePostal": "25400", - "codeCommune": "25555", - "libelleAcheminement": "TAILLECOURT", - "nomCommune": "TAILLECOURT" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "40000", - "codeCommune": "40192", - "libelleAcheminement": "MONT DE MARSAN", - "nomCommune": "MONT DE MARSAN" + "codePostal": "50420", + "codeCommune": "50592", + "libelleAcheminement": "TESSY BOCAGE", + "nomCommune": "TESSY BOCAGE" }, { - "codePostal": "54520", - "codeCommune": "54304", - "libelleAcheminement": "LAXOU", - "nomCommune": "LAXOU" + "codePostal": "59175", + "codeCommune": "59585", + "libelleAcheminement": "TEMPLEMARS", + "nomCommune": "TEMPLEMARS" }, { - "codePostal": "30750", - "codeCommune": "30297", - "libelleAcheminement": "ST SAUVEUR CAMPRIEU", - "nomCommune": "ST SAUVEUR CAMPRIEU" + "codePostal": "02160", + "codeCommune": "02582", + "libelleAcheminement": "PAISSY", + "nomCommune": "PAISSY" }, { - "codePostal": "25870", - "codeCommune": "25557", - "libelleAcheminement": "TALLENAY", - "nomCommune": "TALLENAY" + "codePostal": "59600", + "codeCommune": "59392", + "libelleAcheminement": "MAUBEUGE", + "nomCommune": "MAUBEUGE" }, { - "codePostal": "40700", - "codeCommune": "40198", - "libelleAcheminement": "MORGANX", - "nomCommune": "MORGANX" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "54740", - "codeCommune": "54310", - "libelleAcheminement": "LEMENIL MITRY", - "nomCommune": "LEMENIL MITRY" + "codePostal": "50420", + "codeCommune": "50592", + "libelleAcheminement": "TESSY BOCAGE", + "nomCommune": "TESSY BOCAGE" }, { - "codePostal": "30140", - "codeCommune": "30298", - "libelleAcheminement": "ST SEBASTIEN D AIGREFEUILLE", - "nomCommune": "ST SEBASTIEN D AIGREFEUILLE" + "codePostal": "59229", + "codeCommune": "59588", + "libelleAcheminement": "TETEGHEM COUDEKERQUE VILLAGE", + "nomCommune": "TETEGHEM COUDEKERQUE VILLAGE" }, { - "codePostal": "25190", - "codeCommune": "25584", - "libelleAcheminement": "VALOREILLE", - "nomCommune": "VALOREILLE" + "codePostal": "02160", + "codeCommune": "02588", + "libelleAcheminement": "PARGNAN", + "nomCommune": "PARGNAN" }, { - "codePostal": "40380", - "codeCommune": "40205", - "libelleAcheminement": "NOUSSE", - "nomCommune": "NOUSSE" + "codePostal": "59360", + "codeCommune": "59395", + "libelleAcheminement": "MAZINGHIEN", + "nomCommune": "MAZINGHIEN" }, { - "codePostal": "54700", - "codeCommune": "54312", - "libelleAcheminement": "LESMENILS", - "nomCommune": "LESMENILS" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "30110", - "codeCommune": "30307", - "libelleAcheminement": "LES SALLES DU GARDON", - "nomCommune": "LES SALLES DU GARDON" + "codePostal": "50330", + "codeCommune": "50596", + "libelleAcheminement": "THEVILLE", + "nomCommune": "THEVILLE" }, { - "codePostal": "25380", - "codeCommune": "25588", - "libelleAcheminement": "VAUCLUSE", - "nomCommune": "VAUCLUSE" + "codePostal": "59380", + "codeCommune": "59588", + "libelleAcheminement": "TETEGHEM COUDEKERQUE VILLAGE", + "nomCommune": "TETEGHEM COUDEKERQUE VILLAGE" }, { - "codePostal": "40110", - "codeCommune": "40215", - "libelleAcheminement": "OUSSE SUZAN", - "nomCommune": "OUSSE SUZAN" + "codePostal": "02000", + "codeCommune": "02589", + "libelleAcheminement": "PARGNY FILAIN", + "nomCommune": "PARGNY FILAIN" }, { - "codePostal": "54260", - "codeCommune": "54322", - "libelleAcheminement": "LONGUYON", - "nomCommune": "LONGUYON" + "codePostal": "59224", + "codeCommune": "59407", + "libelleAcheminement": "MONCHAUX SUR ECAILLON", + "nomCommune": "MONCHAUX SUR ECAILLON" }, { - "codePostal": "30260", - "codeCommune": "30309", - "libelleAcheminement": "SARDAN", - "nomCommune": "SARDAN" + "codePostal": "49320", + "codeCommune": "49050", + "libelleAcheminement": "BRISSAC LOIRE AUBANCE", + "nomCommune": "BRISSAC LOIRE AUBANCE" }, { - "codePostal": "25870", - "codeCommune": "25598", - "libelleAcheminement": "VENISE", - "nomCommune": "VENISE" + "codePostal": "50870", + "codeCommune": "50597", + "libelleAcheminement": "TIREPIED SUR SEE", + "nomCommune": "TIREPIED SUR SEE" }, { - "codePostal": "40320", - "codeCommune": "40226", - "libelleAcheminement": "PIMBO", - "nomCommune": "PIMBO" + "codePostal": "59224", + "codeCommune": "59589", + "libelleAcheminement": "THIANT", + "nomCommune": "THIANT" }, { - "codePostal": "54400", - "codeCommune": "54323", - "libelleAcheminement": "LONGWY", - "nomCommune": "LONGWY" + "codePostal": "02470", + "codeCommune": "02594", + "libelleAcheminement": "PASSY EN VALOIS", + "nomCommune": "PASSY EN VALOIS" }, { - "codePostal": "30610", - "codeCommune": "30311", - "libelleAcheminement": "SAUVE", - "nomCommune": "SAUVE" + "codePostal": "59283", + "codeCommune": "59408", + "libelleAcheminement": "MONCHEAUX", + "nomCommune": "MONCHEAUX" }, { - "codePostal": "25750", - "codeCommune": "25608", - "libelleAcheminement": "LE VERNOY", - "nomCommune": "LE VERNOY" + "codePostal": "49700", + "codeCommune": "49053", + "libelleAcheminement": "BROSSAY", + "nomCommune": "BROSSAY" }, { - "codePostal": "40465", - "codeCommune": "40237", - "libelleAcheminement": "PRECHACQ LES BAINS", - "nomCommune": "PRECHACQ LES BAINS" + "codePostal": "50160", + "codeCommune": "50601", + "libelleAcheminement": "TORIGNY LES VILLES", + "nomCommune": "TORIGNY LES VILLES" }, { - "codePostal": "54150", - "codeCommune": "54326", - "libelleAcheminement": "LUBEY", - "nomCommune": "LUBEY" + "codePostal": "59554", + "codeCommune": "59597", + "libelleAcheminement": "TILLOY LEZ CAMBRAI", + "nomCommune": "TILLOY LEZ CAMBRAI" }, { - "codePostal": "30250", - "codeCommune": "30321", - "libelleAcheminement": "SOMMIERES", - "nomCommune": "SOMMIERES" + "codePostal": "02300", + "codeCommune": "02599", + "libelleAcheminement": "PIERREMANDE", + "nomCommune": "PIERREMANDE" }, { - "codePostal": "25110", - "codeCommune": "25626", - "libelleAcheminement": "VILLERS ST MARTIN", - "nomCommune": "VILLERS ST MARTIN" + "codePostal": "59190", + "codeCommune": "59416", + "libelleAcheminement": "MORBECQUE", + "nomCommune": "MORBECQUE" }, { - "codePostal": "40090", - "codeCommune": "40250", - "libelleAcheminement": "ST AVIT", - "nomCommune": "ST AVIT" + "codePostal": "49460", + "codeCommune": "49055", + "libelleAcheminement": "CANTENAY EPINARD", + "nomCommune": "CANTENAY EPINARD" }, { - "codePostal": "54300", - "codeCommune": "54350", - "libelleAcheminement": "MARAINVILLER", - "nomCommune": "MARAINVILLER" + "codePostal": "50160", + "codeCommune": "50601", + "libelleAcheminement": "TORIGNY LES VILLES", + "nomCommune": "TORIGNY LES VILLES" }, { - "codePostal": "30430", - "codeCommune": "30327", - "libelleAcheminement": "THARAUX", - "nomCommune": "THARAUX" + "codePostal": "59200", + "codeCommune": "59599", + "libelleAcheminement": "TOURCOING", + "nomCommune": "TOURCOING" }, { - "codePostal": "25110", - "codeCommune": "25629", - "libelleAcheminement": "VOILLANS", - "nomCommune": "VOILLANS" + "codePostal": "02240", + "codeCommune": "02605", + "libelleAcheminement": "PLEINE SELVE", + "nomCommune": "PLEINE SELVE" }, { - "codePostal": "40300", - "codeCommune": "40256", - "libelleAcheminement": "ST ETIENNE D ORTHE", - "nomCommune": "ST ETIENNE D ORTHE" + "codePostal": "59310", + "codeCommune": "59419", + "libelleAcheminement": "MOUCHIN", + "nomCommune": "MOUCHIN" }, { - "codePostal": "54280", - "codeCommune": "54358", - "libelleAcheminement": "MAZERULLES", - "nomCommune": "MAZERULLES" + "codePostal": "49420", + "codeCommune": "49056", + "libelleAcheminement": "CARBAY", + "nomCommune": "CARBAY" }, { - "codePostal": "30460", - "codeCommune": "30335", - "libelleAcheminement": "VABRES", - "nomCommune": "VABRES" + "codePostal": "50800", + "codeCommune": "50607", + "libelleAcheminement": "LA TRINITE", + "nomCommune": "LA TRINITE" }, { - "codePostal": "25580", - "codeCommune": "25630", - "libelleAcheminement": "VOIRES", - "nomCommune": "VOIRES" + "codePostal": "59237", + "codeCommune": "59611", + "libelleAcheminement": "VERLINGHEM", + "nomCommune": "VERLINGHEM" }, { - "codePostal": "40380", - "codeCommune": "40260", - "libelleAcheminement": "ST GEOURS D AURIBAT", - "nomCommune": "ST GEOURS D AURIBAT" + "codePostal": "02140", + "codeCommune": "02608", + "libelleAcheminement": "PLOMION", + "nomCommune": "PLOMION" }, { - "codePostal": "54960", - "codeCommune": "54362", - "libelleAcheminement": "MERCY LE BAS", - "nomCommune": "MERCY LE BAS" + "codePostal": "59218", + "codeCommune": "59425", + "libelleAcheminement": "NEUVILLE EN AVESNOIS", + "nomCommune": "NEUVILLE EN AVESNOIS" }, { - "codePostal": "30300", - "codeCommune": "30336", - "libelleAcheminement": "VALLABREGUES", - "nomCommune": "VALLABREGUES" + "codePostal": "49270", + "codeCommune": "49069", + "libelleAcheminement": "OREE D ANJOU", + "nomCommune": "OREE D ANJOU" }, { - "codePostal": "26200", - "codeCommune": "26008", - "libelleAcheminement": "ANCONE", - "nomCommune": "ANCONE" + "codePostal": "50480", + "codeCommune": "50609", + "libelleAcheminement": "TURQUEVILLE", + "nomCommune": "TURQUEVILLE" }, { - "codePostal": "40170", - "codeCommune": "40266", - "libelleAcheminement": "ST JULIEN EN BORN", - "nomCommune": "ST JULIEN EN BORN" + "codePostal": "59970", + "codeCommune": "59613", + "libelleAcheminement": "VICQ", + "nomCommune": "VICQ" }, { - "codePostal": "54120", - "codeCommune": "54365", - "libelleAcheminement": "MERVILLER", - "nomCommune": "MERVILLER" + "codePostal": "02200", + "codeCommune": "02610", + "libelleAcheminement": "POMMIERS", + "nomCommune": "POMMIERS" }, { - "codePostal": "30570", - "codeCommune": "30339", - "libelleAcheminement": "VAL D AIGOUAL", - "nomCommune": "VAL D AIGOUAL" + "codePostal": "59554", + "codeCommune": "59428", + "libelleAcheminement": "NEUVILLE ST REMY", + "nomCommune": "NEUVILLE ST REMY" }, { - "codePostal": "26140", - "codeCommune": "26009", - "libelleAcheminement": "ANDANCETTE", - "nomCommune": "ANDANCETTE" + "codePostal": "49500", + "codeCommune": "49089", + "libelleAcheminement": "CHAZE SUR ARGOS", + "nomCommune": "CHAZE SUR ARGOS" }, { - "codePostal": "40270", - "codeCommune": "40275", - "libelleAcheminement": "ST MAURICE SUR ADOUR", - "nomCommune": "ST MAURICE SUR ADOUR" + "codePostal": "50700", + "codeCommune": "50610", + "libelleAcheminement": "URVILLE", + "nomCommune": "URVILLE" }, { - "codePostal": "54760", - "codeCommune": "54372", - "libelleAcheminement": "MOIVRONS", - "nomCommune": "MOIVRONS" + "codePostal": "59138", + "codeCommune": "59617", + "libelleAcheminement": "VIEUX MESNIL", + "nomCommune": "VIEUX MESNIL" }, { - "codePostal": "30570", - "codeCommune": "30339", - "libelleAcheminement": "VAL D AIGOUAL", - "nomCommune": "VAL D AIGOUAL" + "codePostal": "02380", + "codeCommune": "02616", + "libelleAcheminement": "PONT ST MARD", + "nomCommune": "PONT ST MARD" }, { - "codePostal": "26400", - "codeCommune": "26011", - "libelleAcheminement": "AOUSTE SUR SYE", - "nomCommune": "AOUSTE SUR SYE" + "codePostal": "59143", + "codeCommune": "59433", + "libelleAcheminement": "NIEURLET", + "nomCommune": "NIEURLET" }, { - "codePostal": "40200", - "codeCommune": "40278", - "libelleAcheminement": "ST PAUL EN BORN", - "nomCommune": "ST PAUL EN BORN" + "codePostal": "49125", + "codeCommune": "49090", + "libelleAcheminement": "CHEFFES", + "nomCommune": "CHEFFES" }, { - "codePostal": "54700", - "codeCommune": "54375", - "libelleAcheminement": "MONTAUVILLE", - "nomCommune": "MONTAUVILLE" + "codePostal": "50700", + "codeCommune": "50615", + "libelleAcheminement": "VALOGNES", + "nomCommune": "VALOGNES" }, { - "codePostal": "30310", - "codeCommune": "30344", - "libelleAcheminement": "VERGEZE", - "nomCommune": "VERGEZE" + "codePostal": "59132", + "codeCommune": "59633", + "libelleAcheminement": "WALLERS EN FAGNE", + "nomCommune": "WALLERS EN FAGNE" }, { - "codePostal": "26340", - "codeCommune": "26015", - "libelleAcheminement": "AUBENASSON", - "nomCommune": "AUBENASSON" + "codePostal": "02270", + "codeCommune": "02617", + "libelleAcheminement": "POUILLY SUR SERRE", + "nomCommune": "POUILLY SUR SERRE" }, { - "codePostal": "40180", - "codeCommune": "40293", - "libelleAcheminement": "SAUBUSSE", - "nomCommune": "SAUBUSSE" + "codePostal": "59310", + "codeCommune": "59435", + "libelleAcheminement": "NOMAIN", + "nomCommune": "NOMAIN" }, { - "codePostal": "54540", - "codeCommune": "54377", - "libelleAcheminement": "MONTIGNY", - "nomCommune": "MONTIGNY" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "30770", - "codeCommune": "30353", - "libelleAcheminement": "VISSEC", - "nomCommune": "VISSEC" + "codePostal": "50300", + "codeCommune": "50616", + "libelleAcheminement": "LE VAL ST PERE", + "nomCommune": "LE VAL ST PERE" }, { - "codePostal": "26400", - "codeCommune": "26020", - "libelleAcheminement": "LA REPARA AURIPLES", - "nomCommune": "LA REPARA AURIPLES" + "codePostal": "59830", + "codeCommune": "59638", + "libelleAcheminement": "WANNEHAIN", + "nomCommune": "WANNEHAIN" }, { - "codePostal": "40700", - "codeCommune": "40299", - "libelleAcheminement": "SERRESLOUS ET ARRIBANS", - "nomCommune": "SERRESLOUS ET ARRIBANS" + "codePostal": "02370", + "codeCommune": "02620", + "libelleAcheminement": "PRESLES ET BOVES", + "nomCommune": "PRESLES ET BOVES" }, { - "codePostal": "54450", - "codeCommune": "54381", - "libelleAcheminement": "MONTREUX", - "nomCommune": "MONTREUX" + "codePostal": "59550", + "codeCommune": "59439", + "libelleAcheminement": "NOYELLES SUR SAMBRE", + "nomCommune": "NOYELLES SUR SAMBRE" }, { - "codePostal": "30350", - "codeCommune": "30354", - "libelleAcheminement": "MONTAGNAC", - "nomCommune": "MONTAGNAC" + "codePostal": "49120", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "26300", - "codeCommune": "26023", - "libelleAcheminement": "BARBIERES", - "nomCommune": "BARBIERES" + "codePostal": "50450", + "codeCommune": "50626", + "libelleAcheminement": "VER", + "nomCommune": "VER" }, { - "codePostal": "40180", - "codeCommune": "40300", - "libelleAcheminement": "SEYRESSE", - "nomCommune": "SEYRESSE" + "codePostal": "59150", + "codeCommune": "59650", + "libelleAcheminement": "WATTRELOS", + "nomCommune": "WATTRELOS" }, { - "codePostal": "54360", - "codeCommune": "54383", - "libelleAcheminement": "MONT SUR MEURTHE", - "nomCommune": "MONT SUR MEURTHE" + "codePostal": "02120", + "codeCommune": "02624", + "libelleAcheminement": "PROISY", + "nomCommune": "PROISY" }, { - "codePostal": "31460", - "codeCommune": "31006", - "libelleAcheminement": "ALBIAC", - "nomCommune": "ALBIAC" + "codePostal": "59282", + "codeCommune": "59440", + "libelleAcheminement": "NOYELLES SUR SELLE", + "nomCommune": "NOYELLES SUR SELLE" }, { - "codePostal": "26120", - "codeCommune": "26024", - "libelleAcheminement": "BARCELONNE", - "nomCommune": "BARCELONNE" + "codePostal": "49670", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "40180", - "codeCommune": "40301", - "libelleAcheminement": "SIEST", - "nomCommune": "SIEST" + "codePostal": "50760", + "codeCommune": "50633", + "libelleAcheminement": "LE VICEL", + "nomCommune": "LE VICEL" }, { - "codePostal": "54830", - "codeCommune": "54386", - "libelleAcheminement": "MORIVILLER", - "nomCommune": "MORIVILLER" + "codePostal": "59143", + "codeCommune": "59664", + "libelleAcheminement": "WULVERDINGHE", + "nomCommune": "WULVERDINGHE" }, { - "codePostal": "31160", - "codeCommune": "31011", - "libelleAcheminement": "ARBAS", - "nomCommune": "ARBAS" + "codePostal": "02190", + "codeCommune": "02627", + "libelleAcheminement": "PROVISEUX ET PLESNOY", + "nomCommune": "PROVISEUX ET PLESNOY" }, { - "codePostal": "26260", - "codeCommune": "26028", - "libelleAcheminement": "BATHERNAY", - "nomCommune": "BATHERNAY" + "codePostal": "59570", + "codeCommune": "59441", + "libelleAcheminement": "OBIES", + "nomCommune": "OBIES" }, { - "codePostal": "40320", - "codeCommune": "40305", - "libelleAcheminement": "SORBETS", - "nomCommune": "SORBETS" + "codePostal": "49670", + "codeCommune": "49092", + "libelleAcheminement": "CHEMILLE EN ANJOU", + "nomCommune": "CHEMILLE EN ANJOU" }, { - "codePostal": "54490", - "codeCommune": "54394", - "libelleAcheminement": "MURVILLE", - "nomCommune": "MURVILLE" + "codePostal": "50630", + "codeCommune": "50634", + "libelleAcheminement": "VIDECOSVILLE", + "nomCommune": "VIDECOSVILLE" }, { - "codePostal": "31160", - "codeCommune": "31020", - "libelleAcheminement": "ASPET", - "nomCommune": "ASPET" + "codePostal": "59380", + "codeCommune": "59665", + "libelleAcheminement": "WYLDER", + "nomCommune": "WYLDER" }, { - "codePostal": "26120", - "codeCommune": "26032", - "libelleAcheminement": "LA BAUME CORNILLANE", - "nomCommune": "LA BAUME CORNILLANE" + "codePostal": "02600", + "codeCommune": "02628", + "libelleAcheminement": "PUISEUX EN RETZ", + "nomCommune": "PUISEUX EN RETZ" }, { - "codePostal": "40300", - "codeCommune": "40306", - "libelleAcheminement": "SORDE L ABBAYE", - "nomCommune": "SORDE L ABBAYE" + "codePostal": "59680", + "codeCommune": "59442", + "libelleAcheminement": "OBRECHIES", + "nomCommune": "OBRECHIES" }, { - "codePostal": "54450", - "codeCommune": "54406", - "libelleAcheminement": "OGEVILLER", - "nomCommune": "OGEVILLER" + "codePostal": "49300", + "codeCommune": "49099", + "libelleAcheminement": "CHOLET", + "nomCommune": "CHOLET" }, { - "codePostal": "31190", - "codeCommune": "31033", - "libelleAcheminement": "AUTERIVE", - "nomCommune": "AUTERIVE" + "codePostal": "51120", + "codeCommune": "51005", + "libelleAcheminement": "ALLEMANT", + "nomCommune": "ALLEMANT" }, { - "codePostal": "26470", - "codeCommune": "26047", - "libelleAcheminement": "BELLEGARDE EN DIOIS", - "nomCommune": "BELLEGARDE EN DIOIS" + "codePostal": "59670", + "codeCommune": "59669", + "libelleAcheminement": "ZUYTPEENE", + "nomCommune": "ZUYTPEENE" }, { - "codePostal": "40180", - "codeCommune": "40314", - "libelleAcheminement": "TERCIS LES BAINS", - "nomCommune": "TERCIS LES BAINS" + "codePostal": "02360", + "codeCommune": "02634", + "libelleAcheminement": "RAILLIMONT", + "nomCommune": "RAILLIMONT" }, { - "codePostal": "54800", - "codeCommune": "54408", - "libelleAcheminement": "OLLEY", - "nomCommune": "OLLEY" + "codePostal": "59670", + "codeCommune": "59443", + "libelleAcheminement": "OCHTEZEELE", + "nomCommune": "OCHTEZEELE" }, { - "codePostal": "31650", - "codeCommune": "31036", - "libelleAcheminement": "AUZIELLE", - "nomCommune": "AUZIELLE" + "codePostal": "49140", + "codeCommune": "49107", + "libelleAcheminement": "CORNILLE LES CAVES", + "nomCommune": "CORNILLE LES CAVES" }, { - "codePostal": "26500", - "codeCommune": "26058", - "libelleAcheminement": "BOURG LES VALENCE", - "nomCommune": "BOURG LES VALENCE" + "codePostal": "51250", + "codeCommune": "51006", + "libelleAcheminement": "ALLIANCELLES", + "nomCommune": "ALLIANCELLES" }, { - "codePostal": "40320", - "codeCommune": "40321", - "libelleAcheminement": "URGONS", - "nomCommune": "URGONS" + "codePostal": "60690", + "codeCommune": "60004", + "libelleAcheminement": "ACHY", + "nomCommune": "ACHY" }, { - "codePostal": "54260", - "codeCommune": "54412", - "libelleAcheminement": "OTHE", - "nomCommune": "OTHE" + "codePostal": "02340", + "codeCommune": "02641", + "libelleAcheminement": "RENNEVAL", + "nomCommune": "RENNEVAL" }, { - "codePostal": "31380", - "codeCommune": "31038", - "libelleAcheminement": "AZAS", - "nomCommune": "AZAS" + "codePostal": "59310", + "codeCommune": "59449", + "libelleAcheminement": "ORCHIES", + "nomCommune": "ORCHIES" }, { - "codePostal": "26120", - "codeCommune": "26064", - "libelleAcheminement": "CHABEUIL", - "nomCommune": "CHABEUIL" + "codePostal": "49700", + "codeCommune": "49125", + "libelleAcheminement": "DOUE EN ANJOU", + "nomCommune": "DOUE EN ANJOU" }, { - "codePostal": "40110", - "codeCommune": "40330", - "libelleAcheminement": "VILLENAVE", - "nomCommune": "VILLENAVE" + "codePostal": "51700", + "codeCommune": "51012", + "libelleAcheminement": "ANTHENAY", + "nomCommune": "ANTHENAY" }, { - "codePostal": "54370", - "codeCommune": "54418", - "libelleAcheminement": "PARROY", - "nomCommune": "PARROY" + "codePostal": "60000", + "codeCommune": "60009", + "libelleAcheminement": "ALLONNE", + "nomCommune": "ALLONNE" }, { - "codePostal": "31420", - "codeCommune": "31039", - "libelleAcheminement": "BACHAS", - "nomCommune": "BACHAS" + "codePostal": "02110", + "codeCommune": "02647", + "libelleAcheminement": "RIBEAUVILLE", + "nomCommune": "RIBEAUVILLE" }, { - "codePostal": "26420", - "codeCommune": "26074", - "libelleAcheminement": "LA CHAPELLE EN VERCORS", - "nomCommune": "LA CHAPELLE EN VERCORS" + "codePostal": "59360", + "codeCommune": "59450", + "libelleAcheminement": "ORS", + "nomCommune": "ORS" }, { - "codePostal": "40190", - "codeCommune": "40331", - "libelleAcheminement": "VILLENEUVE DE MARSAN", - "nomCommune": "VILLENEUVE DE MARSAN" + "codePostal": "49430", + "codeCommune": "49127", + "libelleAcheminement": "DURTAL", + "nomCommune": "DURTAL" }, { - "codePostal": "54480", - "codeCommune": "54421", - "libelleAcheminement": "PETITMONT", - "nomCommune": "PETITMONT" + "codePostal": "51290", + "codeCommune": "51017", + "libelleAcheminement": "ARZILLIERES NEUVILLE", + "nomCommune": "ARZILLIERES NEUVILLE" }, { - "codePostal": "31130", - "codeCommune": "31044", - "libelleAcheminement": "BALMA", - "nomCommune": "BALMA" + "codePostal": "60390", + "codeCommune": "60030", + "libelleAcheminement": "AUTEUIL", + "nomCommune": "AUTEUIL" }, { - "codePostal": "26330", - "codeCommune": "26083", - "libelleAcheminement": "CHATEAUNEUF DE GALAURE", - "nomCommune": "CHATEAUNEUF DE GALAURE" + "codePostal": "02240", + "codeCommune": "02648", + "libelleAcheminement": "RIBEMONT", + "nomCommune": "RIBEMONT" }, { - "codePostal": "40110", - "codeCommune": "40333", - "libelleAcheminement": "YGOS ST SATURNIN", - "nomCommune": "YGOS ST SATURNIN" + "codePostal": "59295", + "codeCommune": "59455", + "libelleAcheminement": "PAILLENCOURT", + "nomCommune": "PAILLENCOURT" }, { - "codePostal": "54490", - "codeCommune": "54425", - "libelleAcheminement": "PIENNES", - "nomCommune": "PIENNES" + "codePostal": "49250", + "codeCommune": "49138", + "libelleAcheminement": "LES BOIS D ANJOU", + "nomCommune": "LES BOIS D ANJOU" }, { - "codePostal": "31380", - "codeCommune": "31049", - "libelleAcheminement": "BAZUS", - "nomCommune": "BAZUS" + "codePostal": "51600", + "codeCommune": "51019", + "libelleAcheminement": "AUBERIVE", + "nomCommune": "AUBERIVE" }, { - "codePostal": "26410", - "codeCommune": "26086", - "libelleAcheminement": "CHATILLON EN DIOIS", - "nomCommune": "CHATILLON EN DIOIS" + "codePostal": "60190", + "codeCommune": "60036", + "libelleAcheminement": "AVRIGNY", + "nomCommune": "AVRIGNY" }, { - "codePostal": "41100", - "codeCommune": "41003", - "libelleAcheminement": "AREINES", - "nomCommune": "AREINES" + "codePostal": "02120", + "codeCommune": "02654", + "libelleAcheminement": "ROMERY", + "nomCommune": "ROMERY" }, { - "codePostal": "54540", - "codeCommune": "54427", - "libelleAcheminement": "PIERRE PERCEE", - "nomCommune": "PIERRE PERCEE" + "codePostal": "59146", + "codeCommune": "59456", + "libelleAcheminement": "PECQUENCOURT", + "nomCommune": "PECQUENCOURT" }, { - "codePostal": "31530", - "codeCommune": "31061", - "libelleAcheminement": "BELLEGARDE STE MARIE", - "nomCommune": "BELLEGARDE STE MARIE" + "codePostal": "49590", + "codeCommune": "49140", + "libelleAcheminement": "FONTEVRAUD L ABBAYE", + "nomCommune": "FONTEVRAUD L ABBAYE" }, { - "codePostal": "26260", - "codeCommune": "26092", - "libelleAcheminement": "CHAVANNES", - "nomCommune": "CHAVANNES" + "codePostal": "51170", + "codeCommune": "51020", + "libelleAcheminement": "AUBILLY", + "nomCommune": "AUBILLY" }, { - "codePostal": "41310", - "codeCommune": "41007", - "libelleAcheminement": "AUTHON", - "nomCommune": "AUTHON" + "codePostal": "60120", + "codeCommune": "60039", + "libelleAcheminement": "BACOUEL", + "nomCommune": "BACOUEL" }, { - "codePostal": "54550", - "codeCommune": "54432", - "libelleAcheminement": "PONT ST VINCENT", - "nomCommune": "PONT ST VINCENT" + "codePostal": "02200", + "codeCommune": "02663", + "libelleAcheminement": "ROZIERES SUR CRISE", + "nomCommune": "ROZIERES SUR CRISE" }, { - "codePostal": "31350", - "codeCommune": "31070", - "libelleAcheminement": "BLAJAN", - "nomCommune": "BLAJAN" + "codePostal": "59133", + "codeCommune": "59462", + "libelleAcheminement": "PHALEMPIN", + "nomCommune": "PHALEMPIN" }, { - "codePostal": "26130", - "codeCommune": "26093", - "libelleAcheminement": "CLANSAYES", - "nomCommune": "CLANSAYES" + "codePostal": "49123", + "codeCommune": "49160", + "libelleAcheminement": "INGRANDES LE FRESNE SUR LOIRE", + "nomCommune": "INGRANDES LE FRESNE SUR LOIRE" }, { - "codePostal": "41170", - "codeCommune": "41014", - "libelleAcheminement": "BEAUCHENE", - "nomCommune": "BEAUCHENE" + "codePostal": "51150", + "codeCommune": "51023", + "libelleAcheminement": "AULNAY SUR MARNE", + "nomCommune": "AULNAY SUR MARNE" }, { - "codePostal": "54116", - "codeCommune": "54434", - "libelleAcheminement": "PRAYE", - "nomCommune": "PRAYE" + "codePostal": "60250", + "codeCommune": "60044", + "libelleAcheminement": "BALAGNY SUR THERAIN", + "nomCommune": "BALAGNY SUR THERAIN" }, { - "codePostal": "31420", - "codeCommune": "31083", - "libelleAcheminement": "BOUSSAN", - "nomCommune": "BOUSSAN" + "codePostal": "02540", + "codeCommune": "02664", + "libelleAcheminement": "ROZOY BELLEVALLE", + "nomCommune": "ROZOY BELLEVALLE" }, { - "codePostal": "26120", - "codeCommune": "26100", - "libelleAcheminement": "COMBOVIN", - "nomCommune": "COMBOVIN" + "codePostal": "59360", + "codeCommune": "59465", + "libelleAcheminement": "POMMEREUIL", + "nomCommune": "POMMEREUIL" }, { - "codePostal": "41130", - "codeCommune": "41016", - "libelleAcheminement": "BILLY", - "nomCommune": "BILLY" + "codePostal": "49320", + "codeCommune": "49167", + "libelleAcheminement": "LES GARENNES SUR LOIRE", + "nomCommune": "LES GARENNES SUR LOIRE" }, { - "codePostal": "54115", - "codeCommune": "54438", - "libelleAcheminement": "PULNEY", - "nomCommune": "PULNEY" + "codePostal": "51160", + "codeCommune": "51030", + "libelleAcheminement": "AY CHAMPAGNE", + "nomCommune": "AY CHAMPAGNE" }, { - "codePostal": "31160", - "codeCommune": "31085", - "libelleAcheminement": "BOUTX", - "nomCommune": "BOUTX" + "codePostal": "60700", + "codeCommune": "60050", + "libelleAcheminement": "BAZICOURT", + "nomCommune": "BAZICOURT" }, { - "codePostal": "26150", - "codeCommune": "26113", - "libelleAcheminement": "DIE", - "nomCommune": "DIE" + "codePostal": "02290", + "codeCommune": "02672", + "libelleAcheminement": "ST BANDRY", + "nomCommune": "ST BANDRY" }, { - "codePostal": "41240", - "codeCommune": "41017", - "libelleAcheminement": "BINAS", - "nomCommune": "BINAS" + "codePostal": "59840", + "codeCommune": "59470", + "libelleAcheminement": "PREMESQUES", + "nomCommune": "PREMESQUES" }, { - "codePostal": "54330", - "codeCommune": "54442", - "libelleAcheminement": "QUEVILLONCOURT", - "nomCommune": "QUEVILLONCOURT" + "codePostal": "49160", + "codeCommune": "49180", + "libelleAcheminement": "LONGUE JUMELLES", + "nomCommune": "LONGUE JUMELLES" }, { - "codePostal": "31480", - "codeCommune": "31090", - "libelleAcheminement": "BRIGNEMONT", - "nomCommune": "BRIGNEMONT" + "codePostal": "51260", + "codeCommune": "51032", + "libelleAcheminement": "BAGNEUX", + "nomCommune": "BAGNEUX" }, { - "codePostal": "26290", - "codeCommune": "26116", - "libelleAcheminement": "DONZERE", - "nomCommune": "DONZERE" + "codePostal": "60210", + "codeCommune": "60051", + "libelleAcheminement": "BEAUDEDUIT", + "nomCommune": "BEAUDEDUIT" }, { - "codePostal": "41800", - "codeCommune": "41020", - "libelleAcheminement": "BONNEVEAU", - "nomCommune": "BONNEVEAU" + "codePostal": "02220", + "codeCommune": "02682", + "libelleAcheminement": "ST MARD", + "nomCommune": "ST MARD" }, { - "codePostal": "54370", - "codeCommune": "54445", - "libelleAcheminement": "RAVILLE SUR SANON", - "nomCommune": "RAVILLE SUR SANON" + "codePostal": "59380", + "codeCommune": "59478", + "libelleAcheminement": "QUAEDYPRE", + "nomCommune": "QUAEDYPRE" }, { - "codePostal": "31440", - "codeCommune": "31092", - "libelleAcheminement": "BURGALAYS", - "nomCommune": "BURGALAYS" + "codePostal": "49160", + "codeCommune": "49180", + "libelleAcheminement": "LONGUE JUMELLES", + "nomCommune": "LONGUE JUMELLES" }, { - "codePostal": "26190", - "codeCommune": "26117", - "libelleAcheminement": "ECHEVIS", - "nomCommune": "ECHEVIS" + "codePostal": "51230", + "codeCommune": "51035", + "libelleAcheminement": "BANNES", + "nomCommune": "BANNES" }, { - "codePostal": "41250", - "codeCommune": "41025", - "libelleAcheminement": "BRACIEUX", - "nomCommune": "BRACIEUX" + "codePostal": "60640", + "codeCommune": "60052", + "libelleAcheminement": "BEAUGIES SOUS BOIS", + "nomCommune": "BEAUGIES SOUS BOIS" }, { - "codePostal": "54430", - "codeCommune": "54451", - "libelleAcheminement": "REHON", - "nomCommune": "REHON" + "codePostal": "02110", + "codeCommune": "02683", + "libelleAcheminement": "ST MARTIN RIVIERE", + "nomCommune": "ST MARTIN RIVIERE" }, { - "codePostal": "31330", - "codeCommune": "31093", - "libelleAcheminement": "LE BURGAUD", - "nomCommune": "LE BURGAUD" + "codePostal": "59194", + "codeCommune": "59486", + "libelleAcheminement": "RACHES", + "nomCommune": "RACHES" }, { - "codePostal": "26210", - "codeCommune": "26118", - "libelleAcheminement": "EPINOUZE", - "nomCommune": "EPINOUZE" + "codePostal": "49370", + "codeCommune": "49183", + "libelleAcheminement": "VAL D ERDRE AUXENCE", + "nomCommune": "VAL D ERDRE AUXENCE" }, { - "codePostal": "41120", - "codeCommune": "41031", - "libelleAcheminement": "CELLETTES", - "nomCommune": "CELLETTES" + "codePostal": "51170", + "codeCommune": "51037", + "libelleAcheminement": "BASLIEUX LES FISMES", + "nomCommune": "BASLIEUX LES FISMES" }, { - "codePostal": "54450", - "codeCommune": "54452", - "libelleAcheminement": "REILLON", - "nomCommune": "REILLON" + "codePostal": "60310", + "codeCommune": "60053", + "libelleAcheminement": "BEAULIEU LES FONTAINES", + "nomCommune": "BEAULIEU LES FONTAINES" }, { - "codePostal": "31660", - "codeCommune": "31094", - "libelleAcheminement": "BUZET SUR TARN", - "nomCommune": "BUZET SUR TARN" + "codePostal": "02140", + "codeCommune": "02688", + "libelleAcheminement": "ST PIERRE LES FRANQUEVILLE", + "nomCommune": "ST PIERRE LES FRANQUEVILLE" }, { - "codePostal": "26400", - "codeCommune": "26128", - "libelleAcheminement": "EYGLUY ESCOULIN", - "nomCommune": "EYGLUY ESCOULIN" + "codePostal": "59161", + "codeCommune": "59492", + "libelleAcheminement": "RAMILLIES", + "nomCommune": "RAMILLIES" }, { - "codePostal": "41600", - "codeCommune": "41046", - "libelleAcheminement": "CHAUMONT SUR THARONNE", - "nomCommune": "CHAUMONT SUR THARONNE" + "codePostal": "49140", + "codeCommune": "49194", + "libelleAcheminement": "MAZE MILON", + "nomCommune": "MAZE MILON" }, { - "codePostal": "54290", - "codeCommune": "54465", - "libelleAcheminement": "ROVILLE DEVANT BAYON", - "nomCommune": "ROVILLE DEVANT BAYON" + "codePostal": "51490", + "codeCommune": "51046", + "libelleAcheminement": "BEINE NAUROY", + "nomCommune": "BEINE NAUROY" }, { - "codePostal": "31560", - "codeCommune": "31099", - "libelleAcheminement": "CAIGNAC", - "nomCommune": "CAIGNAC" + "codePostal": "60390", + "codeCommune": "60054", + "libelleAcheminement": "LES HAUTS TALICAN", + "nomCommune": "LES HAUTS TALICAN" }, { - "codePostal": "26160", - "codeCommune": "26134", - "libelleAcheminement": "FELINES SUR RIMANDOULE", - "nomCommune": "FELINES SUR RIMANDOULE" + "codePostal": "02210", + "codeCommune": "02693", + "libelleAcheminement": "ST REMY BLANZY", + "nomCommune": "ST REMY BLANZY" }, { - "codePostal": "41700", - "codeCommune": "41049", - "libelleAcheminement": "CHEMERY", - "nomCommune": "CHEMERY" + "codePostal": "59530", + "codeCommune": "59494", + "libelleAcheminement": "RAUCOURT AU BOIS", + "nomCommune": "RAUCOURT AU BOIS" }, { - "codePostal": "54260", - "codeCommune": "54476", - "libelleAcheminement": "ST JEAN LES LONGUYON", - "nomCommune": "ST JEAN LES LONGUYON" + "codePostal": "49770", + "codeCommune": "49200", + "libelleAcheminement": "LONGUENEE EN ANJOU", + "nomCommune": "LONGUENEE EN ANJOU" }, { - "codePostal": "31460", - "codeCommune": "31102", - "libelleAcheminement": "CAMBIAC", - "nomCommune": "CAMBIAC" + "codePostal": "51330", + "codeCommune": "51047", + "libelleAcheminement": "BELVAL EN ARGONNE", + "nomCommune": "BELVAL EN ARGONNE" }, { - "codePostal": "26410", - "codeCommune": "26142", - "libelleAcheminement": "GLANDAGE", - "nomCommune": "GLANDAGE" + "codePostal": "60700", + "codeCommune": "60056", + "libelleAcheminement": "BEAUREPAIRE", + "nomCommune": "BEAUREPAIRE" }, { - "codePostal": "41170", - "codeCommune": "41053", - "libelleAcheminement": "CHOUE", - "nomCommune": "CHOUE" + "codePostal": "02110", + "codeCommune": "02709", + "libelleAcheminement": "SERAIN", + "nomCommune": "SERAIN" }, { - "codePostal": "54470", - "codeCommune": "54477", - "libelleAcheminement": "ST JULIEN LES GORZE", - "nomCommune": "ST JULIEN LES GORZE" + "codePostal": "59360", + "codeCommune": "59496", + "libelleAcheminement": "REJET DE BEAULIEU", + "nomCommune": "REJET DE BEAULIEU" }, { - "codePostal": "31410", - "codeCommune": "31104", - "libelleAcheminement": "CAPENS", - "nomCommune": "CAPENS" + "codePostal": "49460", + "codeCommune": "49214", + "libelleAcheminement": "MONTREUIL JUIGNE", + "nomCommune": "MONTREUIL JUIGNE" }, { - "codePostal": "26290", - "codeCommune": "26145", - "libelleAcheminement": "LES GRANGES GONTARDES", - "nomCommune": "LES GRANGES GONTARDES" + "codePostal": "51300", + "codeCommune": "51059", + "libelleAcheminement": "BIGNICOURT SUR MARNE", + "nomCommune": "BIGNICOURT SUR MARNE" }, { - "codePostal": "41700", - "codeCommune": "41054", - "libelleAcheminement": "CHOUSSY", - "nomCommune": "CHOUSSY" + "codePostal": "60129", + "codeCommune": "60066", + "libelleAcheminement": "BETHANCOURT EN VALOIS", + "nomCommune": "BETHANCOURT EN VALOIS" }, { - "codePostal": "54540", - "codeCommune": "54484", - "libelleAcheminement": "STE POLE", - "nomCommune": "STE POLE" + "codePostal": "02790", + "codeCommune": "02710", + "libelleAcheminement": "SERAUCOURT LE GRAND", + "nomCommune": "SERAUCOURT LE GRAND" }, { - "codePostal": "31310", - "codeCommune": "31111", - "libelleAcheminement": "CASTAGNAC", - "nomCommune": "CASTAGNAC" + "codePostal": "59285", + "codeCommune": "59516", + "libelleAcheminement": "RUBROUCK", + "nomCommune": "RUBROUCK" }, { - "codePostal": "26730", - "codeCommune": "26149", - "libelleAcheminement": "HOSTUN", - "nomCommune": "HOSTUN" + "codePostal": "49260", + "codeCommune": "49215", + "libelleAcheminement": "MONTREUIL BELLAY", + "nomCommune": "MONTREUIL BELLAY" }, { - "codePostal": "41220", - "codeCommune": "41071", - "libelleAcheminement": "CROUY SUR COSSON", - "nomCommune": "CROUY SUR COSSON" + "codePostal": "51390", + "codeCommune": "51072", + "libelleAcheminement": "BOUILLY", + "nomCommune": "BOUILLY" }, { - "codePostal": "54170", - "codeCommune": "54496", - "libelleAcheminement": "SAULXURES LES VANNES", - "nomCommune": "SAULXURES LES VANNES" + "codePostal": "60620", + "codeCommune": "60069", + "libelleAcheminement": "BETZ", + "nomCommune": "BETZ" }, { - "codePostal": "31620", - "codeCommune": "31118", - "libelleAcheminement": "CASTELNAU D ESTRETEFONDS", - "nomCommune": "CASTELNAU D ESTRETEFONDS" + "codePostal": "02700", + "codeCommune": "02716", + "libelleAcheminement": "SERVAIS", + "nomCommune": "SERVAIS" }, { - "codePostal": "26250", - "codeCommune": "26165", - "libelleAcheminement": "LIVRON SUR DROME", - "nomCommune": "LIVRON SUR DROME" + "codePostal": "59177", + "codeCommune": "59525", + "libelleAcheminement": "SAINS DU NORD", + "nomCommune": "SAINS DU NORD" }, { - "codePostal": "41800", - "codeCommune": "41079", - "libelleAcheminement": "LES ESSARTS", - "nomCommune": "LES ESSARTS" + "codePostal": "49260", + "codeCommune": "49215", + "libelleAcheminement": "MONTREUIL BELLAY", + "nomCommune": "MONTREUIL BELLAY" }, { - "codePostal": "54470", - "codeCommune": "54499", - "libelleAcheminement": "SEICHEPREY", - "nomCommune": "SEICHEPREY" + "codePostal": "51480", + "codeCommune": "51076", + "libelleAcheminement": "BOURSAULT", + "nomCommune": "BOURSAULT" }, { - "codePostal": "31530", - "codeCommune": "31120", - "libelleAcheminement": "LE CASTERA", - "nomCommune": "LE CASTERA" + "codePostal": "60280", + "codeCommune": "60070", + "libelleAcheminement": "BIENVILLE", + "nomCommune": "BIENVILLE" }, { - "codePostal": "26620", - "codeCommune": "26168", - "libelleAcheminement": "LUS LA CROIX HAUTE", - "nomCommune": "LUS LA CROIX HAUTE" + "codePostal": "02460", + "codeCommune": "02718", + "libelleAcheminement": "SILLY LA POTERIE", + "nomCommune": "SILLY LA POTERIE" }, { - "codePostal": "41300", - "codeCommune": "41084", - "libelleAcheminement": "LA FERTE IMBAULT", - "nomCommune": "LA FERTE IMBAULT" + "codePostal": "59350", + "codeCommune": "59527", + "libelleAcheminement": "ST ANDRE LEZ LILLE", + "nomCommune": "ST ANDRE LEZ LILLE" }, { - "codePostal": "54116", - "codeCommune": "54513", - "libelleAcheminement": "TANTONVILLE", - "nomCommune": "TANTONVILLE" + "codePostal": "49110", + "codeCommune": "49218", + "libelleAcheminement": "MONTREVAULT SUR EVRE", + "nomCommune": "MONTREVAULT SUR EVRE" }, { - "codePostal": "31430", - "codeCommune": "31122", - "libelleAcheminement": "CASTIES LABRANDE", - "nomCommune": "CASTIES LABRANDE" + "codePostal": "51530", + "codeCommune": "51093", + "libelleAcheminement": "BRUGNY VAUDANCOURT", + "nomCommune": "BRUGNY VAUDANCOURT" }, { - "codePostal": "26210", - "codeCommune": "26172", - "libelleAcheminement": "MANTHES", - "nomCommune": "MANTHES" + "codePostal": "60120", + "codeCommune": "60075", + "libelleAcheminement": "BLANCFOSSE", + "nomCommune": "BLANCFOSSE" }, { - "codePostal": "41250", - "codeCommune": "41086", - "libelleAcheminement": "FONTAINES EN SOLOGNE", - "nomCommune": "FONTAINES EN SOLOGNE" + "codePostal": "02240", + "codeCommune": "02721", + "libelleAcheminement": "SISSY", + "nomCommune": "SISSY" }, { - "codePostal": "54260", - "codeCommune": "54514", - "libelleAcheminement": "TELLANCOURT", - "nomCommune": "TELLANCOURT" + "codePostal": "59188", + "codeCommune": "59528", + "libelleAcheminement": "ST AUBERT", + "nomCommune": "ST AUBERT" }, { - "codePostal": "31360", - "codeCommune": "31124", - "libelleAcheminement": "CASTILLON DE ST MARTORY", - "nomCommune": "CASTILLON DE ST MARTORY" + "codePostal": "49390", + "codeCommune": "49221", + "libelleAcheminement": "MOULIHERNE", + "nomCommune": "MOULIHERNE" }, { - "codePostal": "26260", - "codeCommune": "26177", - "libelleAcheminement": "MARSAZ", - "nomCommune": "MARSAZ" + "codePostal": "51300", + "codeCommune": "51095", + "libelleAcheminement": "LE BUISSON", + "nomCommune": "LE BUISSON" }, { - "codePostal": "41360", - "codeCommune": "41090", - "libelleAcheminement": "FORTAN", - "nomCommune": "FORTAN" + "codePostal": "60190", + "codeCommune": "60078", + "libelleAcheminement": "BLINCOURT", + "nomCommune": "BLINCOURT" }, { - "codePostal": "54510", - "codeCommune": "54526", - "libelleAcheminement": "TOMBLAINE", - "nomCommune": "TOMBLAINE" + "codePostal": "02200", + "codeCommune": "02722", + "libelleAcheminement": "SOISSONS", + "nomCommune": "SOISSONS" }, { - "codePostal": "31480", - "codeCommune": "31126", - "libelleAcheminement": "CAUBIAC", - "nomCommune": "CAUBIAC" + "codePostal": "59670", + "codeCommune": "59536", + "libelleAcheminement": "STE MARIE CAPPEL", + "nomCommune": "STE MARIE CAPPEL" }, { - "codePostal": "26600", - "codeCommune": "26179", - "libelleAcheminement": "MERCUROL VEAUNES", - "nomCommune": "MERCUROL VEAUNES" + "codePostal": "49360", + "codeCommune": "49240", + "libelleAcheminement": "LA PLAINE", + "nomCommune": "LA PLAINE" }, { - "codePostal": "41700", - "codeCommune": "41094", - "libelleAcheminement": "FRESNES", - "nomCommune": "FRESNES" + "codePostal": "51330", + "codeCommune": "51098", + "libelleAcheminement": "BUSSY LE REPOS", + "nomCommune": "BUSSY LE REPOS" }, { - "codePostal": "54200", - "codeCommune": "54528", - "libelleAcheminement": "TOUL", - "nomCommune": "TOUL" + "codePostal": "60440", + "codeCommune": "60079", + "libelleAcheminement": "BOISSY FRESNOY", + "nomCommune": "BOISSY FRESNOY" }, { - "codePostal": "31580", - "codeCommune": "31130", - "libelleAcheminement": "CAZARIL TAMBOURES", - "nomCommune": "CAZARIL TAMBOURES" + "codePostal": "02140", + "codeCommune": "02731", + "libelleAcheminement": "LE SOURD", + "nomCommune": "LE SOURD" }, { - "codePostal": "26110", - "codeCommune": "26182", - "libelleAcheminement": "MIRABEL AUX BARONNIES", - "nomCommune": "MIRABEL AUX BARONNIES" + "codePostal": "59630", + "codeCommune": "59539", + "libelleAcheminement": "ST PIERRE BROUCK", + "nomCommune": "ST PIERRE BROUCK" }, { - "codePostal": "41270", - "codeCommune": "41096", - "libelleAcheminement": "LE GAULT DU PERCHE", - "nomCommune": "LE GAULT DU PERCHE" + "codePostal": "49410", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "54640", - "codeCommune": "54536", - "libelleAcheminement": "TUCQUEGNIEUX", - "nomCommune": "TUCQUEGNIEUX" + "codePostal": "51420", + "codeCommune": "51105", + "libelleAcheminement": "CERNAY LES REIMS", + "nomCommune": "CERNAY LES REIMS" }, { - "codePostal": "31350", - "codeCommune": "31138", - "libelleAcheminement": "CHARLAS", - "nomCommune": "CHARLAS" + "codePostal": "60510", + "codeCommune": "60081", + "libelleAcheminement": "BONLIER", + "nomCommune": "BONLIER" }, { - "codePostal": "26400", - "codeCommune": "26183", - "libelleAcheminement": "MIRABEL ET BLACONS", - "nomCommune": "MIRABEL ET BLACONS" + "codePostal": "02220", + "codeCommune": "02735", + "libelleAcheminement": "TANNIERES", + "nomCommune": "TANNIERES" }, { - "codePostal": "41130", - "codeCommune": "41097", - "libelleAcheminement": "GIEVRES", - "nomCommune": "GIEVRES" + "codePostal": "59620", + "codeCommune": "59542", + "libelleAcheminement": "ST REMY CHAUSSEE", + "nomCommune": "ST REMY CHAUSSEE" }, { - "codePostal": "54115", - "codeCommune": "54545", - "libelleAcheminement": "VANDELEVILLE", - "nomCommune": "VANDELEVILLE" + "codePostal": "49570", + "codeCommune": "49244", + "libelleAcheminement": "MAUGES SUR LOIRE", + "nomCommune": "MAUGES SUR LOIRE" }, { - "codePostal": "31440", - "codeCommune": "31139", - "libelleAcheminement": "CHAUM", - "nomCommune": "CHAUM" + "codePostal": "51130", + "codeCommune": "51107", + "libelleAcheminement": "CHAINTRIX BIERGES", + "nomCommune": "CHAINTRIX BIERGES" }, { - "codePostal": "26770", - "codeCommune": "26192", - "libelleAcheminement": "MONTBRISON SUR LEZ", - "nomCommune": "MONTBRISON SUR LEZ" + "codePostal": "60112", + "codeCommune": "60084", + "libelleAcheminement": "BONNIERES", + "nomCommune": "BONNIERES" }, { - "codePostal": "41190", - "codeCommune": "41108", - "libelleAcheminement": "LANCOME", - "nomCommune": "LANCOME" + "codePostal": "02250", + "codeCommune": "02737", + "libelleAcheminement": "TAVAUX ET PONTSERICOURT", + "nomCommune": "TAVAUX ET PONTSERICOURT" }, { - "codePostal": "54740", - "codeCommune": "54553", - "libelleAcheminement": "VAUDEVILLE", - "nomCommune": "VAUDEVILLE" + "codePostal": "59360", + "codeCommune": "59545", + "libelleAcheminement": "ST SOUPLET", + "nomCommune": "ST SOUPLET" }, { - "codePostal": "31350", - "codeCommune": "31141", - "libelleAcheminement": "CIADOUX", - "nomCommune": "CIADOUX" + "codePostal": "49130", + "codeCommune": "49246", + "libelleAcheminement": "LES PONTS DE CE", + "nomCommune": "LES PONTS DE CE" }, { - "codePostal": "26200", - "codeCommune": "26198", - "libelleAcheminement": "MONTELIMAR", - "nomCommune": "MONTELIMAR" + "codePostal": "51270", + "codeCommune": "51113", + "libelleAcheminement": "CHAMPAUBERT", + "nomCommune": "CHAMPAUBERT" }, { - "codePostal": "41190", - "codeCommune": "41109", - "libelleAcheminement": "LANDES LE GAULOIS", - "nomCommune": "LANDES LE GAULOIS" + "codePostal": "60240", + "codeCommune": "60095", + "libelleAcheminement": "BOURY EN VEXIN", + "nomCommune": "BOURY EN VEXIN" }, { - "codePostal": "54120", - "codeCommune": "54555", - "libelleAcheminement": "VAXAINVILLE", - "nomCommune": "VAXAINVILLE" + "codePostal": "02390", + "codeCommune": "02741", + "libelleAcheminement": "THENELLES", + "nomCommune": "THENELLES" }, { - "codePostal": "31110", - "codeCommune": "31142", - "libelleAcheminement": "CIER DE LUCHON", - "nomCommune": "CIER DE LUCHON" + "codePostal": "59188", + "codeCommune": "59547", + "libelleAcheminement": "ST VAAST EN CAMBRESIS", + "nomCommune": "ST VAAST EN CAMBRESIS" }, { - "codePostal": "26170", - "codeCommune": "26201", - "libelleAcheminement": "MONTGUERS", - "nomCommune": "MONTGUERS" + "codePostal": "49130", + "codeCommune": "49246", + "libelleAcheminement": "LES PONTS DE CE", + "nomCommune": "LES PONTS DE CE" }, { - "codePostal": "41100", - "codeCommune": "41116", - "libelleAcheminement": "LISLE", - "nomCommune": "LISLE" + "codePostal": "51700", + "codeCommune": "51121", + "libelleAcheminement": "CHAMPVOISY", + "nomCommune": "CHAMPVOISY" }, { - "codePostal": "54450", - "codeCommune": "54562", - "libelleAcheminement": "VERDENAL", - "nomCommune": "VERDENAL" + "codePostal": "60440", + "codeCommune": "60101", + "libelleAcheminement": "BREGY", + "nomCommune": "BREGY" }, { - "codePostal": "31550", - "codeCommune": "31145", - "libelleAcheminement": "CINTEGABELLE", - "nomCommune": "CINTEGABELLE" + "codePostal": "02460", + "codeCommune": "02749", + "libelleAcheminement": "TROESNES", + "nomCommune": "TROESNES" }, { - "codePostal": "26230", - "codeCommune": "26203", - "libelleAcheminement": "MONTJOYER", - "nomCommune": "MONTJOYER" + "codePostal": "59496", + "codeCommune": "59550", + "libelleAcheminement": "SALOME", + "nomCommune": "SALOME" }, { - "codePostal": "41320", - "codeCommune": "41122", - "libelleAcheminement": "MARAY", - "nomCommune": "MARAY" + "codePostal": "49420", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "54700", - "codeCommune": "54566", - "libelleAcheminement": "VILCEY SUR TREY", - "nomCommune": "VILCEY SUR TREY" + "codePostal": "51300", + "codeCommune": "51122", + "libelleAcheminement": "CHANGY", + "nomCommune": "CHANGY" }, { - "codePostal": "31810", - "codeCommune": "31148", - "libelleAcheminement": "CLERMONT LE FORT", - "nomCommune": "CLERMONT LE FORT" + "codePostal": "60600", + "codeCommune": "60107", + "libelleAcheminement": "BREUIL LE VERT", + "nomCommune": "BREUIL LE VERT" }, { - "codePostal": "26350", - "codeCommune": "26210", - "libelleAcheminement": "VALHERBASSE", - "nomCommune": "VALHERBASSE" + "codePostal": "02640", + "codeCommune": "02752", + "libelleAcheminement": "TUGNY ET PONT", + "nomCommune": "TUGNY ET PONT" }, { - "codePostal": "41210", - "codeCommune": "41127", - "libelleAcheminement": "LA MAROLLE EN SOLOGNE", - "nomCommune": "LA MAROLLE EN SOLOGNE" + "codePostal": "59990", + "codeCommune": "59557", + "libelleAcheminement": "SAULTAIN", + "nomCommune": "SAULTAIN" }, { - "codePostal": "54380", - "codeCommune": "54569", - "libelleAcheminement": "VILLE AU VAL", - "nomCommune": "VILLE AU VAL" + "codePostal": "49520", + "codeCommune": "49248", + "libelleAcheminement": "OMBREE D ANJOU", + "nomCommune": "OMBREE D ANJOU" }, { - "codePostal": "31770", - "codeCommune": "31149", - "libelleAcheminement": "COLOMIERS", - "nomCommune": "COLOMIERS" + "codePostal": "51170", + "codeCommune": "51140", + "libelleAcheminement": "CHAUMUZY", + "nomCommune": "CHAUMUZY" }, { - "codePostal": "26350", - "codeCommune": "26210", - "libelleAcheminement": "VALHERBASSE", - "nomCommune": "VALHERBASSE" + "codePostal": "60210", + "codeCommune": "60108", + "libelleAcheminement": "BRIOT", + "nomCommune": "BRIOT" }, { - "codePostal": "41150", - "codeCommune": "41137", - "libelleAcheminement": "MESLAND", - "nomCommune": "MESLAND" + "codePostal": "02110", + "codeCommune": "02760", + "libelleAcheminement": "LA VALLEE MULATRE", + "nomCommune": "LA VALLEE MULATRE" }, { - "codePostal": "54730", - "codeCommune": "54572", - "libelleAcheminement": "VILLE HOUDLEMONT", - "nomCommune": "VILLE HOUDLEMONT" + "codePostal": "59990", + "codeCommune": "59559", + "libelleAcheminement": "SEBOURG", + "nomCommune": "SEBOURG" }, { - "codePostal": "31220", - "codeCommune": "31153", - "libelleAcheminement": "COULADERE", - "nomCommune": "COULADERE" + "codePostal": "49350", + "codeCommune": "49261", + "libelleAcheminement": "GENNES VAL DE LOIRE", + "nomCommune": "GENNES VAL DE LOIRE" }, { - "codePostal": "26460", - "codeCommune": "26214", - "libelleAcheminement": "MORNANS", - "nomCommune": "MORNANS" + "codePostal": "51250", + "codeCommune": "51144", + "libelleAcheminement": "CHEMINON", + "nomCommune": "CHEMINON" }, { - "codePostal": "41130", - "codeCommune": "41139", - "libelleAcheminement": "MEUSNES", - "nomCommune": "MEUSNES" + "codePostal": "60310", + "codeCommune": "60126", + "libelleAcheminement": "CANNECTANCOURT", + "nomCommune": "CANNECTANCOURT" }, { - "codePostal": "54800", - "codeCommune": "54581", - "libelleAcheminement": "VILLE SUR YRON", - "nomCommune": "VILLE SUR YRON" + "codePostal": "02000", + "codeCommune": "02765", + "libelleAcheminement": "VAUCELLES ET BEFFECOURT", + "nomCommune": "VAUCELLES ET BEFFECOURT" }, { - "codePostal": "31160", - "codeCommune": "31155", - "libelleAcheminement": "COURET", - "nomCommune": "COURET" + "codePostal": "59450", + "codeCommune": "59569", + "libelleAcheminement": "SIN LE NOBLE", + "nomCommune": "SIN LE NOBLE" }, { - "codePostal": "26470", - "codeCommune": "26215", - "libelleAcheminement": "LA MOTTE CHALANCON", - "nomCommune": "LA MOTTE CHALANCON" + "codePostal": "49170", + "codeCommune": "49266", + "libelleAcheminement": "ST AUGUSTIN DES BOIS", + "nomCommune": "ST AUGUSTIN DES BOIS" }, { - "codePostal": "41190", - "codeCommune": "41142", - "libelleAcheminement": "VALENCISSE", - "nomCommune": "VALENCISSE" + "codePostal": "51240", + "codeCommune": "51148", + "libelleAcheminement": "CHEPPES LA PRAIRIE", + "nomCommune": "CHEPPES LA PRAIRIE" }, { - "codePostal": "54200", - "codeCommune": "54584", - "libelleAcheminement": "VILLEY ST ETIENNE", - "nomCommune": "VILLEY ST ETIENNE" + "codePostal": "60640", + "codeCommune": "60132", + "libelleAcheminement": "CATIGNY", + "nomCommune": "CATIGNY" }, { - "codePostal": "31270", - "codeCommune": "31157", - "libelleAcheminement": "CUGNAUX", - "nomCommune": "CUGNAUX" + "codePostal": "02320", + "codeCommune": "02766", + "libelleAcheminement": "VAUDESSON", + "nomCommune": "VAUDESSON" }, { - "codePostal": "26540", - "codeCommune": "26218", - "libelleAcheminement": "MOURS ST EUSEBE", - "nomCommune": "MOURS ST EUSEBE" + "codePostal": "59730", + "codeCommune": "59571", + "libelleAcheminement": "SOLESMES", + "nomCommune": "SOLESMES" }, { - "codePostal": "41190", - "codeCommune": "41142", - "libelleAcheminement": "VALENCISSE", - "nomCommune": "VALENCISSE" + "codePostal": "49370", + "codeCommune": "49271", + "libelleAcheminement": "ST CLEMENT DE LA PLACE", + "nomCommune": "ST CLEMENT DE LA PLACE" }, { - "codePostal": "54800", - "codeCommune": "54599", - "libelleAcheminement": "XONVILLE", - "nomCommune": "XONVILLE" + "codePostal": "51240", + "codeCommune": "51149", + "libelleAcheminement": "CHEPY", + "nomCommune": "CHEPY" }, { - "codePostal": "31450", - "codeCommune": "31161", - "libelleAcheminement": "DEYME", - "nomCommune": "DEYME" + "codePostal": "60130", + "codeCommune": "60133", + "libelleAcheminement": "CATILLON FUMECHON", + "nomCommune": "CATILLON FUMECHON" }, { - "codePostal": "26120", - "codeCommune": "26224", - "libelleAcheminement": "OURCHES", - "nomCommune": "OURCHES" + "codePostal": "02800", + "codeCommune": "02775", + "libelleAcheminement": "VENDEUIL", + "nomCommune": "VENDEUIL" }, { - "codePostal": "41170", - "codeCommune": "41143", - "libelleAcheminement": "MONDOUBLEAU", - "nomCommune": "MONDOUBLEAU" + "codePostal": "59213", + "codeCommune": "59575", + "libelleAcheminement": "SOMMAING", + "nomCommune": "SOMMAING" }, { - "codePostal": "55130", - "codeCommune": "55001", - "libelleAcheminement": "ABAINVILLE", - "nomCommune": "ABAINVILLE" + "codePostal": "49350", + "codeCommune": "49272", + "libelleAcheminement": "ST CLEMENT DES LEVEES", + "nomCommune": "ST CLEMENT DES LEVEES" }, { - "codePostal": "31600", - "codeCommune": "31165", - "libelleAcheminement": "EAUNES", - "nomCommune": "EAUNES" + "codePostal": "51130", + "codeCommune": "51158", + "libelleAcheminement": "VAL DES MARAIS", + "nomCommune": "VAL DES MARAIS" }, { - "codePostal": "26170", - "codeCommune": "26236", - "libelleAcheminement": "PIERRELONGUE", - "nomCommune": "PIERRELONGUE" + "codePostal": "60520", + "codeCommune": "60142", + "libelleAcheminement": "LA CHAPELLE EN SERVAL", + "nomCommune": "LA CHAPELLE EN SERVAL" }, { - "codePostal": "41500", - "codeCommune": "41156", - "libelleAcheminement": "MULSANS", - "nomCommune": "MULSANS" + "codePostal": "02420", + "codeCommune": "02776", + "libelleAcheminement": "VENDHUILE", + "nomCommune": "VENDHUILE" }, { - "codePostal": "55110", - "codeCommune": "55004", - "libelleAcheminement": "AINCREVILLE", - "nomCommune": "AINCREVILLE" + "codePostal": "59190", + "codeCommune": "59577", + "libelleAcheminement": "STAPLE", + "nomCommune": "STAPLE" }, { - "codePostal": "31420", - "codeCommune": "31172", - "libelleAcheminement": "ESPARRON", - "nomCommune": "ESPARRON" + "codePostal": "49260", + "codeCommune": "49291", + "libelleAcheminement": "ST JUST SUR DIVE", + "nomCommune": "ST JUST SUR DIVE" }, { - "codePostal": "26460", - "codeCommune": "26241", - "libelleAcheminement": "LE POET CELARD", - "nomCommune": "LE POET CELARD" + "codePostal": "51320", + "codeCommune": "51169", + "libelleAcheminement": "CORBEIL", + "nomCommune": "CORBEIL" }, { - "codePostal": "41210", - "codeCommune": "41159", - "libelleAcheminement": "NEUNG SUR BEUVRON", - "nomCommune": "NEUNG SUR BEUVRON" + "codePostal": "60120", + "codeCommune": "60146", + "libelleAcheminement": "CHEPOIX", + "nomCommune": "CHEPOIX" }, { - "codePostal": "55170", - "codeCommune": "55010", - "libelleAcheminement": "ANCERVILLE", - "nomCommune": "ANCERVILLE" + "codePostal": "02160", + "codeCommune": "02778", + "libelleAcheminement": "VENDRESSE BEAULNE", + "nomCommune": "VENDRESSE BEAULNE" }, { - "codePostal": "31440", - "codeCommune": "31177", - "libelleAcheminement": "EUP", - "nomCommune": "EUP" + "codePostal": "59189", + "codeCommune": "59578", + "libelleAcheminement": "STEENBECQUE", + "nomCommune": "STEENBECQUE" }, { - "codePostal": "26310", - "codeCommune": "26262", - "libelleAcheminement": "RECOUBEAU JANSAC", - "nomCommune": "RECOUBEAU JANSAC" + "codePostal": "49750", + "codeCommune": "49292", + "libelleAcheminement": "VAL DU LAYON", + "nomCommune": "VAL DU LAYON" }, { - "codePostal": "41110", - "codeCommune": "41181", - "libelleAcheminement": "POUILLE", - "nomCommune": "POUILLE" + "codePostal": "51220", + "codeCommune": "51183", + "libelleAcheminement": "COURCY", + "nomCommune": "COURCY" }, { - "codePostal": "55300", - "codeCommune": "55012", - "libelleAcheminement": "APREMONT LA FORET", - "nomCommune": "APREMONT LA FORET" + "codePostal": "60150", + "codeCommune": "60147", + "libelleAcheminement": "CHEVINCOURT", + "nomCommune": "CHEVINCOURT" }, { - "codePostal": "31460", - "codeCommune": "31179", - "libelleAcheminement": "LE FAGET", - "nomCommune": "LE FAGET" + "codePostal": "02200", + "codeCommune": "02780", + "libelleAcheminement": "VENIZEL", + "nomCommune": "VENIZEL" }, { - "codePostal": "26510", - "codeCommune": "26264", - "libelleAcheminement": "REMUZAT", - "nomCommune": "REMUZAT" + "codePostal": "59570", + "codeCommune": "59584", + "libelleAcheminement": "TAISNIERES SUR HON", + "nomCommune": "TAISNIERES SUR HON" }, { - "codePostal": "41200", - "codeCommune": "41185", - "libelleAcheminement": "PRUNIERS EN SOLOGNE", - "nomCommune": "PRUNIERS EN SOLOGNE" + "codePostal": "49230", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "55120", - "codeCommune": "55014", - "libelleAcheminement": "AUBREVILLE", - "nomCommune": "AUBREVILLE" + "codePostal": "51300", + "codeCommune": "51184", + "libelleAcheminement": "COURDEMANGES", + "nomCommune": "COURDEMANGES" }, { - "codePostal": "31210", - "codeCommune": "31197", - "libelleAcheminement": "FRANQUEVIELLE", - "nomCommune": "FRANQUEVIELLE" + "codePostal": "60138", + "codeCommune": "60150", + "libelleAcheminement": "CHIRY OURSCAMP", + "nomCommune": "CHIRY OURSCAMP" }, { - "codePostal": "26160", - "codeCommune": "26268", - "libelleAcheminement": "ROCHEBAUDIN", - "nomCommune": "ROCHEBAUDIN" + "codePostal": "02490", + "codeCommune": "02782", + "libelleAcheminement": "LE VERGUIER", + "nomCommune": "LE VERGUIER" }, { - "codePostal": "41100", - "codeCommune": "41190", - "libelleAcheminement": "ROCE", - "nomCommune": "ROCE" + "codePostal": "59152", + "codeCommune": "59602", + "libelleAcheminement": "TRESSIN", + "nomCommune": "TRESSIN" }, { - "codePostal": "55120", - "codeCommune": "55017", - "libelleAcheminement": "AUTRECOURT SUR AIRE", - "nomCommune": "AUTRECOURT SUR AIRE" + "codePostal": "49450", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "31510", - "codeCommune": "31207", - "libelleAcheminement": "GALIE", - "nomCommune": "GALIE" + "codePostal": "51800", + "codeCommune": "51191", + "libelleAcheminement": "COURTEMONT", + "nomCommune": "COURTEMONT" }, { - "codePostal": "26170", - "codeCommune": "26279", - "libelleAcheminement": "LA ROCHETTE DU BUIS", - "nomCommune": "LA ROCHETTE DU BUIS" + "codePostal": "60750", + "codeCommune": "60151", + "libelleAcheminement": "CHOISY AU BAC", + "nomCommune": "CHOISY AU BAC" }, { - "codePostal": "41270", - "codeCommune": "41193", - "libelleAcheminement": "ROMILLY", - "nomCommune": "ROMILLY" + "codePostal": "02490", + "codeCommune": "02785", + "libelleAcheminement": "VERMAND", + "nomCommune": "VERMAND" }, { - "codePostal": "55600", - "codeCommune": "55022", - "libelleAcheminement": "AVIOTH", - "nomCommune": "AVIOTH" + "codePostal": "59600", + "codeCommune": "59618", + "libelleAcheminement": "VIEUX RENG", + "nomCommune": "VIEUX RENG" }, { - "codePostal": "31380", - "codeCommune": "31212", - "libelleAcheminement": "GARIDECH", - "nomCommune": "GARIDECH" + "codePostal": "49450", + "codeCommune": "49301", + "libelleAcheminement": "SEVREMOINE", + "nomCommune": "SEVREMOINE" }, { - "codePostal": "26100", - "codeCommune": "26281", - "libelleAcheminement": "ROMANS SUR ISERE", - "nomCommune": "ROMANS SUR ISERE" + "codePostal": "51300", + "codeCommune": "51195", + "libelleAcheminement": "COUVROT", + "nomCommune": "COUVROT" }, { - "codePostal": "41310", - "codeCommune": "41199", - "libelleAcheminement": "ST AMAND LONGPRE", - "nomCommune": "ST AMAND LONGPRE" + "codePostal": "60600", + "codeCommune": "60157", + "libelleAcheminement": "CLERMONT", + "nomCommune": "CLERMONT" }, { - "codePostal": "55270", - "codeCommune": "55023", - "libelleAcheminement": "AVOCOURT", - "nomCommune": "AVOCOURT" + "codePostal": "02140", + "codeCommune": "02789", + "libelleAcheminement": "VERVINS", + "nomCommune": "VERVINS" }, { - "codePostal": "31110", - "codeCommune": "31213", - "libelleAcheminement": "GARIN", - "nomCommune": "GARIN" + "codePostal": "59297", + "codeCommune": "59623", + "libelleAcheminement": "VILLERS GUISLAIN", + "nomCommune": "VILLERS GUISLAIN" }, { - "codePostal": "26150", - "codeCommune": "26282", - "libelleAcheminement": "ROMEYER", - "nomCommune": "ROMEYER" + "codePostal": "49140", + "codeCommune": "49307", + "libelleAcheminement": "LOIRE AUTHION", + "nomCommune": "LOIRE AUTHION" }, { - "codePostal": "41100", - "codeCommune": "41209", - "libelleAcheminement": "ST FIRMIN DES PRES", - "nomCommune": "ST FIRMIN DES PRES" + "codePostal": "51700", + "codeCommune": "51201", + "libelleAcheminement": "CUISLES", + "nomCommune": "CUISLES" }, { - "codePostal": "55150", - "codeCommune": "55024", - "libelleAcheminement": "AZANNES ET SOUMAZANNES", - "nomCommune": "AZANNES ET SOUMAZANNES" + "codePostal": "60360", + "codeCommune": "60161", + "libelleAcheminement": "CONTEVILLE", + "nomCommune": "CONTEVILLE" }, { - "codePostal": "31380", - "codeCommune": "31216", - "libelleAcheminement": "GEMIL", - "nomCommune": "GEMIL" + "codePostal": "02350", + "codeCommune": "02790", + "libelleAcheminement": "VESLES ET CAUMONT", + "nomCommune": "VESLES ET CAUMONT" }, { - "codePostal": "26230", - "codeCommune": "26284", - "libelleAcheminement": "ROUSSAS", - "nomCommune": "ROUSSAS" + "codePostal": "59127", + "codeCommune": "59631", + "libelleAcheminement": "WALINCOURT SELVIGNY", + "nomCommune": "WALINCOURT SELVIGNY" }, { - "codePostal": "41400", - "codeCommune": "41217", - "libelleAcheminement": "ST JULIEN DE CHEDON", - "nomCommune": "ST JULIEN DE CHEDON" + "codePostal": "49160", + "codeCommune": "49311", + "libelleAcheminement": "ST PHILBERT DU PEUPLE", + "nomCommune": "ST PHILBERT DU PEUPLE" }, { - "codePostal": "55000", - "codeCommune": "55029", - "libelleAcheminement": "BAR LE DUC", - "nomCommune": "BAR LE DUC" + "codePostal": "51480", + "codeCommune": "51202", + "libelleAcheminement": "CUMIERES", + "nomCommune": "CUMIERES" }, { - "codePostal": "31510", - "codeCommune": "31217", - "libelleAcheminement": "GENOS", - "nomCommune": "GENOS" + "codePostal": "60660", + "codeCommune": "60173", + "libelleAcheminement": "CRAMOISY", + "nomCommune": "CRAMOISY" }, { - "codePostal": "26150", - "codeCommune": "26291", - "libelleAcheminement": "ST ANDEOL", - "nomCommune": "ST ANDEOL" + "codePostal": "02290", + "codeCommune": "02795", + "libelleAcheminement": "VIC SUR AISNE", + "nomCommune": "VIC SUR AISNE" }, { - "codePostal": "41000", - "codeCommune": "41230", - "libelleAcheminement": "ST SULPICE DE POMMERAY", - "nomCommune": "ST SULPICE DE POMMERAY" + "codePostal": "59135", + "codeCommune": "59632", + "libelleAcheminement": "WALLERS", + "nomCommune": "WALLERS" }, { - "codePostal": "55170", - "codeCommune": "55031", - "libelleAcheminement": "BAUDONVILLIERS", - "nomCommune": "BAUDONVILLIERS" + "codePostal": "49112", + "codeCommune": "49323", + "libelleAcheminement": "VERRIERES EN ANJOU", + "nomCommune": "VERRIERES EN ANJOU" }, { - "codePostal": "31310", - "codeCommune": "31219", - "libelleAcheminement": "GENSAC SUR GARONNE", - "nomCommune": "GENSAC SUR GARONNE" + "codePostal": "51330", + "codeCommune": "51206", + "libelleAcheminement": "DAMPIERRE LE CHATEAU", + "nomCommune": "DAMPIERRE LE CHATEAU" }, { - "codePostal": "26150", - "codeCommune": "26299", - "libelleAcheminement": "STE CROIX", - "nomCommune": "STE CROIX" + "codePostal": "60350", + "codeCommune": "60184", + "libelleAcheminement": "CROUTOY", + "nomCommune": "CROUTOY" }, { - "codePostal": "41100", - "codeCommune": "41243", - "libelleAcheminement": "SELOMMES", - "nomCommune": "SELOMMES" + "codePostal": "02210", + "codeCommune": "02796", + "libelleAcheminement": "VICHEL NANTEUIL", + "nomCommune": "VICHEL NANTEUIL" }, { - "codePostal": "55600", - "codeCommune": "55034", - "libelleAcheminement": "BAZEILLES SUR OTHAIN", - "nomCommune": "BAZEILLES SUR OTHAIN" + "codePostal": "59118", + "codeCommune": "59636", + "libelleAcheminement": "WAMBRECHIES", + "nomCommune": "WAMBRECHIES" }, { - "codePostal": "31310", - "codeCommune": "31225", - "libelleAcheminement": "GOUTEVERNISSE", - "nomCommune": "GOUTEVERNISSE" + "codePostal": "49480", + "codeCommune": "49323", + "libelleAcheminement": "VERRIERES EN ANJOU", + "nomCommune": "VERRIERES EN ANJOU" }, { - "codePostal": "26160", - "codeCommune": "26305", - "libelleAcheminement": "ST GERVAIS SUR ROUBION", - "nomCommune": "ST GERVAIS SUR ROUBION" + "codePostal": "51800", + "codeCommune": "51211", + "libelleAcheminement": "DOMMARTIN DAMPIERRE", + "nomCommune": "DOMMARTIN DAMPIERRE" }, { - "codePostal": "41170", - "codeCommune": "41254", - "libelleAcheminement": "LE TEMPLE", - "nomCommune": "LE TEMPLE" + "codePostal": "60530", + "codeCommune": "60185", + "libelleAcheminement": "CROUY EN THELLE", + "nomCommune": "CROUY EN THELLE" }, { - "codePostal": "55700", - "codeCommune": "55037", - "libelleAcheminement": "BEAUFORT EN ARGONNE", - "nomCommune": "BEAUFORT EN ARGONNE" + "codePostal": "02160", + "codeCommune": "02803", + "libelleAcheminement": "LA VILLE AUX BOIS LES PONTAVERT", + "nomCommune": "LA VILLE AUX BOIS LES PONTAVERT" }, { - "codePostal": "31120", - "codeCommune": "31227", - "libelleAcheminement": "GOYRANS", - "nomCommune": "GOYRANS" + "codePostal": "59380", + "codeCommune": "59641", + "libelleAcheminement": "WARHEM", + "nomCommune": "WARHEM" }, { - "codePostal": "26130", - "codeCommune": "26326", - "libelleAcheminement": "ST RESTITUT", - "nomCommune": "ST RESTITUT" + "codePostal": "49400", + "codeCommune": "49328", + "libelleAcheminement": "SAUMUR", + "nomCommune": "SAUMUR" }, { - "codePostal": "41100", - "codeCommune": "41259", - "libelleAcheminement": "THORE LA ROCHETTE", - "nomCommune": "THORE LA ROCHETTE" + "codePostal": "51330", + "codeCommune": "51214", + "libelleAcheminement": "DOMMARTIN VARIMONT", + "nomCommune": "DOMMARTIN VARIMONT" }, { - "codePostal": "55260", - "codeCommune": "55044", - "libelleAcheminement": "BELRAIN", - "nomCommune": "BELRAIN" + "codePostal": "60620", + "codeCommune": "60190", + "libelleAcheminement": "CUVERGNON", + "nomCommune": "CUVERGNON" }, { - "codePostal": "31190", - "codeCommune": "31233", - "libelleAcheminement": "GREPIAC", - "nomCommune": "GREPIAC" + "codePostal": "02300", + "codeCommune": "02807", + "libelleAcheminement": "VILLEQUIER AUMONT", + "nomCommune": "VILLEQUIER AUMONT" }, { - "codePostal": "26340", - "codeCommune": "26328", - "libelleAcheminement": "ST SAUVEUR EN DIOIS", - "nomCommune": "ST SAUVEUR EN DIOIS" + "codePostal": "59870", + "codeCommune": "59642", + "libelleAcheminement": "WARLAING", + "nomCommune": "WARLAING" }, { - "codePostal": "41190", - "codeCommune": "41261", - "libelleAcheminement": "TOURAILLES", - "nomCommune": "TOURAILLES" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "55000", - "codeCommune": "55049", - "libelleAcheminement": "BEUREY SUR SAULX", - "nomCommune": "BEUREY SUR SAULX" + "codePostal": "51120", + "codeCommune": "51235", + "libelleAcheminement": "LES ESSARTS LES SEZANNE", + "nomCommune": "LES ESSARTS LES SEZANNE" }, { - "codePostal": "31160", - "codeCommune": "31236", - "libelleAcheminement": "HERRAN", - "nomCommune": "HERRAN" + "codePostal": "60530", + "codeCommune": "60197", + "libelleAcheminement": "DIEUDONNE", + "nomCommune": "DIEUDONNE" }, { - "codePostal": "26240", - "codeCommune": "26332", - "libelleAcheminement": "ST UZE", - "nomCommune": "ST UZE" + "codePostal": "02600", + "codeCommune": "02810", + "libelleAcheminement": "VILLERS COTTERETS", + "nomCommune": "VILLERS COTTERETS" }, { - "codePostal": "41250", - "codeCommune": "41262", - "libelleAcheminement": "TOUR EN SOLOGNE", - "nomCommune": "TOUR EN SOLOGNE" + "codePostal": "59560", + "codeCommune": "59643", + "libelleAcheminement": "WARNETON", + "nomCommune": "WARNETON" }, { - "codePostal": "55300", - "codeCommune": "55054", - "libelleAcheminement": "BISLEE", - "nomCommune": "BISLEE" + "codePostal": "49500", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "31260", - "codeCommune": "31237", - "libelleAcheminement": "HIS", - "nomCommune": "HIS" + "codePostal": "51270", + "codeCommune": "51238", + "libelleAcheminement": "ETOGES", + "nomCommune": "ETOGES" }, { - "codePostal": "26160", - "codeCommune": "26334", - "libelleAcheminement": "SALETTES", - "nomCommune": "SALETTES" + "codePostal": "60310", + "codeCommune": "60198", + "libelleAcheminement": "DIVES", + "nomCommune": "DIVES" }, { - "codePostal": "41100", - "codeCommune": "41269", - "libelleAcheminement": "VENDOME", - "nomCommune": "VENDOME" + "codePostal": "02600", + "codeCommune": "02810", + "libelleAcheminement": "VILLERS COTTERETS", + "nomCommune": "VILLERS COTTERETS" }, { - "codePostal": "55130", - "codeCommune": "55059", - "libelleAcheminement": "BONNET", - "nomCommune": "BONNET" + "codePostal": "59111", + "codeCommune": "59652", + "libelleAcheminement": "WAVRECHAIN SOUS FAULX", + "nomCommune": "WAVRECHAIN SOUS FAULX" }, { - "codePostal": "31450", - "codeCommune": "31240", - "libelleAcheminement": "ISSUS", - "nomCommune": "ISSUS" + "codePostal": "49520", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "26130", - "codeCommune": "26342", - "libelleAcheminement": "SOLERIEUX", - "nomCommune": "SOLERIEUX" + "codePostal": "51230", + "codeCommune": "51248", + "libelleAcheminement": "FERE CHAMPENOISE", + "nomCommune": "FERE CHAMPENOISE" }, { - "codePostal": "41290", - "codeCommune": "41273", - "libelleAcheminement": "VIEVY LE RAYE", - "nomCommune": "VIEVY LE RAYE" + "codePostal": "60240", + "codeCommune": "60209", + "libelleAcheminement": "LA CORNE EN VEXIN", + "nomCommune": "LA CORNE EN VEXIN" }, { - "codePostal": "55160", - "codeCommune": "55060", - "libelleAcheminement": "BONZEE", - "nomCommune": "BONZEE" + "codePostal": "02880", + "codeCommune": "02828", + "libelleAcheminement": "VREGNY", + "nomCommune": "VREGNY" }, { - "codePostal": "31110", - "codeCommune": "31242", - "libelleAcheminement": "JURVIELLE", - "nomCommune": "JURVIELLE" + "codePostal": "59670", + "codeCommune": "59662", + "libelleAcheminement": "WINNEZEELE", + "nomCommune": "WINNEZEELE" }, { - "codePostal": "26400", - "codeCommune": "26344", - "libelleAcheminement": "SOYANS", - "nomCommune": "SOYANS" + "codePostal": "49520", + "codeCommune": "49331", + "libelleAcheminement": "SEGRE EN ANJOU BLEU", + "nomCommune": "SEGRE EN ANJOU BLEU" }, { - "codePostal": "41290", - "codeCommune": "41273", - "libelleAcheminement": "VIEVY LE RAYE", - "nomCommune": "VIEVY LE RAYE" + "codePostal": "51230", + "codeCommune": "51248", + "libelleAcheminement": "FERE CHAMPENOISE", + "nomCommune": "FERE CHAMPENOISE" }, { - "codePostal": "55500", - "codeCommune": "55061", - "libelleAcheminement": "LE BOUCHON SUR SAULX", - "nomCommune": "LE BOUCHON SUR SAULX" + "codePostal": "60530", + "codeCommune": "60212", + "libelleAcheminement": "ERCUIS", + "nomCommune": "ERCUIS" }, { - "codePostal": "31800", - "codeCommune": "31246", - "libelleAcheminement": "LABARTHE INARD", - "nomCommune": "LABARTHE INARD" + "codePostal": "02630", + "codeCommune": "02830", + "libelleAcheminement": "WASSIGNY", + "nomCommune": "WASSIGNY" }, { - "codePostal": "26460", - "codeCommune": "26351", - "libelleAcheminement": "LES TONILS", - "nomCommune": "LES TONILS" + "codePostal": "59670", + "codeCommune": "59667", + "libelleAcheminement": "ZERMEZEELE", + "nomCommune": "ZERMEZEELE" }, { - "codePostal": "41800", - "codeCommune": "41274", - "libelleAcheminement": "VILLAVARD", - "nomCommune": "VILLAVARD" + "codePostal": "49610", + "codeCommune": "49338", + "libelleAcheminement": "SOULAINES SUR AUBANCE", + "nomCommune": "SOULAINES SUR AUBANCE" }, { - "codePostal": "55100", - "codeCommune": "55070", - "libelleAcheminement": "BRABANT SUR MEUSE", - "nomCommune": "BRABANT SUR MEUSE" + "codePostal": "51210", + "codeCommune": "51264", + "libelleAcheminement": "LE GAULT SOIGNY", + "nomCommune": "LE GAULT SOIGNY" }, { - "codePostal": "31370", - "codeCommune": "31250", - "libelleAcheminement": "LABASTIDE CLERMONT", - "nomCommune": "LABASTIDE CLERMONT" + "codePostal": "60600", + "codeCommune": "60215", + "libelleAcheminement": "ERQUERY", + "nomCommune": "ERQUERY" }, { - "codePostal": "26120", - "codeCommune": "26358", - "libelleAcheminement": "UPIE", - "nomCommune": "UPIE" + "codePostal": "02830", + "codeCommune": "02831", + "libelleAcheminement": "WATIGNY", + "nomCommune": "WATIGNY" }, { - "codePostal": "41200", - "codeCommune": "41282", - "libelleAcheminement": "VILLEHERVIERS", - "nomCommune": "VILLEHERVIERS" + "codePostal": "59272", + "codeCommune": "59670", + "libelleAcheminement": "DON", + "nomCommune": "DON" }, { - "codePostal": "55600", - "codeCommune": "55077", - "libelleAcheminement": "BREUX", - "nomCommune": "BREUX" + "codePostal": "49220", + "codeCommune": "49367", + "libelleAcheminement": "ERDRE EN ANJOU", + "nomCommune": "ERDRE EN ANJOU" }, { - "codePostal": "31120", - "codeCommune": "31259", - "libelleAcheminement": "LACROIX FALGARDE", - "nomCommune": "LACROIX FALGARDE" + "codePostal": "51290", + "codeCommune": "51269", + "libelleAcheminement": "GIFFAUMONT CHAMPAUBERT", + "nomCommune": "GIFFAUMONT CHAMPAUBERT" }, { - "codePostal": "26110", - "codeCommune": "26363", - "libelleAcheminement": "VALOUSE", - "nomCommune": "VALOUSE" + "codePostal": "60130", + "codeCommune": "60216", + "libelleAcheminement": "ERQUINVILLERS", + "nomCommune": "ERQUINVILLERS" }, { - "codePostal": "41220", - "codeCommune": "41285", - "libelleAcheminement": "VILLENY", - "nomCommune": "VILLENY" + "codePostal": "02320", + "codeCommune": "02834", + "libelleAcheminement": "WISSIGNICOURT", + "nomCommune": "WISSIGNICOURT" }, { - "codePostal": "55190", - "codeCommune": "55084", - "libelleAcheminement": "BROUSSEY EN BLOIS", - "nomCommune": "BROUSSEY EN BLOIS" + "codePostal": "60570", + "codeCommune": "60012", + "libelleAcheminement": "ANDEVILLE", + "nomCommune": "ANDEVILLE" }, { - "codePostal": "31190", - "codeCommune": "31264", - "libelleAcheminement": "LAGRACE DIEU", - "nomCommune": "LAGRACE DIEU" + "codePostal": "49220", + "codeCommune": "49367", + "libelleAcheminement": "ERDRE EN ANJOU", + "nomCommune": "ERDRE EN ANJOU" }, { - "codePostal": "26400", - "codeCommune": "26365", - "libelleAcheminement": "VAUNAVEYS LA ROCHETTE", - "nomCommune": "VAUNAVEYS LA ROCHETTE" + "codePostal": "51290", + "codeCommune": "51270", + "libelleAcheminement": "GIGNY BUSSY", + "nomCommune": "GIGNY BUSSY" }, { - "codePostal": "41310", - "codeCommune": "41286", - "libelleAcheminement": "VILLEPORCHER", - "nomCommune": "VILLEPORCHER" + "codePostal": "60380", + "codeCommune": "60217", + "libelleAcheminement": "ESCAMES", + "nomCommune": "ESCAMES" }, { - "codePostal": "55200", - "codeCommune": "55085", - "libelleAcheminement": "BROUSSEY RAULECOURT", - "nomCommune": "BROUSSEY RAULECOURT" + "codePostal": "03360", + "codeCommune": "03003", + "libelleAcheminement": "AINAY LE CHATEAU", + "nomCommune": "AINAY LE CHATEAU" }, { - "codePostal": "31480", - "codeCommune": "31265", - "libelleAcheminement": "LAGRAULET ST NICOLAS", - "nomCommune": "LAGRAULET ST NICOLAS" + "codePostal": "60120", + "codeCommune": "60017", + "libelleAcheminement": "ANSAUVILLERS", + "nomCommune": "ANSAUVILLERS" }, { - "codePostal": "26510", - "codeCommune": "26369", - "libelleAcheminement": "VERCLAUSE", - "nomCommune": "VERCLAUSE" + "codePostal": "49390", + "codeCommune": "49369", + "libelleAcheminement": "VERNOIL LE FOURRIER", + "nomCommune": "VERNOIL LE FOURRIER" }, { - "codePostal": "41100", - "codeCommune": "41287", - "libelleAcheminement": "VILLERABLE", - "nomCommune": "VILLERABLE" + "codePostal": "51800", + "codeCommune": "51280", + "libelleAcheminement": "GRATREUIL", + "nomCommune": "GRATREUIL" }, { - "codePostal": "55300", - "codeCommune": "55093", - "libelleAcheminement": "BUXIERES SOUS LES COTES", - "nomCommune": "BUXIERES SOUS LES COTES" + "codePostal": "60120", + "codeCommune": "60221", + "libelleAcheminement": "ESQUENNOY", + "nomCommune": "ESQUENNOY" }, { - "codePostal": "31310", - "codeCommune": "31272", - "libelleAcheminement": "LAPEYRERE", - "nomCommune": "LAPEYRERE" + "codePostal": "03460", + "codeCommune": "03011", + "libelleAcheminement": "AUROUER", + "nomCommune": "AUROUER" }, { - "codePostal": "26170", - "codeCommune": "26370", - "libelleAcheminement": "VERCOIRAN", - "nomCommune": "VERCOIRAN" + "codePostal": "60620", + "codeCommune": "60020", + "libelleAcheminement": "ANTILLY", + "nomCommune": "ANTILLY" }, { - "codePostal": "41100", - "codeCommune": "41291", - "libelleAcheminement": "VILLETRUN", - "nomCommune": "VILLETRUN" + "codePostal": "49360", + "codeCommune": "49381", + "libelleAcheminement": "YZERNAY", + "nomCommune": "YZERNAY" }, { - "codePostal": "55300", - "codeCommune": "55093", - "libelleAcheminement": "BUXIERES SOUS LES COTES", - "nomCommune": "BUXIERES SOUS LES COTES" + "codePostal": "51160", + "codeCommune": "51287", + "libelleAcheminement": "HAUTVILLERS", + "nomCommune": "HAUTVILLERS" }, { - "codePostal": "31800", - "codeCommune": "31274", - "libelleAcheminement": "LARCAN", - "nomCommune": "LARCAN" + "codePostal": "60600", + "codeCommune": "60225", + "libelleAcheminement": "ETOUY", + "nomCommune": "ETOUY" }, { - "codePostal": "26340", - "codeCommune": "26371", - "libelleAcheminement": "VERONNE", - "nomCommune": "VERONNE" + "codePostal": "03120", + "codeCommune": "03017", + "libelleAcheminement": "BARRAIS BUSSOLLES", + "nomCommune": "BARRAIS BUSSOLLES" }, { - "codePostal": "42820", - "codeCommune": "42003", - "libelleAcheminement": "AMBIERLE", - "nomCommune": "AMBIERLE" + "codePostal": "60360", + "codeCommune": "60026", + "libelleAcheminement": "AUCHY LA MONTAGNE", + "nomCommune": "AUCHY LA MONTAGNE" }, { - "codePostal": "55400", - "codeCommune": "55094", - "libelleAcheminement": "BUZY DARMONT", - "nomCommune": "BUZY DARMONT" + "codePostal": "50620", + "codeCommune": "50006", + "libelleAcheminement": "AMIGNY", + "nomCommune": "AMIGNY" }, { - "codePostal": "31580", - "codeCommune": "31276", - "libelleAcheminement": "LARROQUE", - "nomCommune": "LARROQUE" + "codePostal": "51340", + "codeCommune": "51290", + "libelleAcheminement": "HEILTZ L EVEQUE", + "nomCommune": "HEILTZ L EVEQUE" }, { - "codePostal": "26110", - "codeCommune": "26377", - "libelleAcheminement": "VINSOBRES", - "nomCommune": "VINSOBRES" + "codePostal": "60680", + "codeCommune": "60229", + "libelleAcheminement": "LE FAYEL", + "nomCommune": "LE FAYEL" }, { - "codePostal": "42160", - "codeCommune": "42005", - "libelleAcheminement": "ANDREZIEUX BOUTHEON", - "nomCommune": "ANDREZIEUX BOUTHEON" + "codePostal": "03800", + "codeCommune": "03021", + "libelleAcheminement": "BEGUES", + "nomCommune": "BEGUES" }, { - "codePostal": "55210", - "codeCommune": "55096", - "libelleAcheminement": "CHAILLON", - "nomCommune": "CHAILLON" + "codePostal": "60350", + "codeCommune": "60032", + "libelleAcheminement": "AUTRECHES", + "nomCommune": "AUTRECHES" }, { - "codePostal": "31370", - "codeCommune": "31283", - "libelleAcheminement": "LAUTIGNAC", - "nomCommune": "LAUTIGNAC" + "codePostal": "50300", + "codeCommune": "50025", + "libelleAcheminement": "AVRANCHES", + "nomCommune": "AVRANCHES" }, { - "codePostal": "26600", - "codeCommune": "26380", - "libelleAcheminement": "GERVANS", - "nomCommune": "GERVANS" + "codePostal": "51140", + "codeCommune": "51294", + "libelleAcheminement": "HOURGES", + "nomCommune": "HOURGES" }, { - "codePostal": "42660", - "codeCommune": "42017", - "libelleAcheminement": "LE BESSAT", - "nomCommune": "LE BESSAT" + "codePostal": "60960", + "codeCommune": "60233", + "libelleAcheminement": "FEUQUIERES", + "nomCommune": "FEUQUIERES" }, { - "codePostal": "55100", - "codeCommune": "55102", - "libelleAcheminement": "CHARNY SUR MEUSE", - "nomCommune": "CHARNY SUR MEUSE" + "codePostal": "03330", + "codeCommune": "03022", + "libelleAcheminement": "BELLENAVES", + "nomCommune": "BELLENAVES" }, { - "codePostal": "31220", - "codeCommune": "31286", - "libelleAcheminement": "LAVELANET DE COMMINGES", - "nomCommune": "LAVELANET DE COMMINGES" + "codePostal": "60130", + "codeCommune": "60034", + "libelleAcheminement": "AVRECHY", + "nomCommune": "AVRECHY" }, { - "codePostal": "27400", - "codeCommune": "27003", - "libelleAcheminement": "ACQUIGNY", - "nomCommune": "ACQUIGNY" + "codePostal": "50500", + "codeCommune": "50036", + "libelleAcheminement": "BAUPTE", + "nomCommune": "BAUPTE" }, { - "codePostal": "42260", - "codeCommune": "42027", - "libelleAcheminement": "BULLY", - "nomCommune": "BULLY" + "codePostal": "51300", + "codeCommune": "51295", + "libelleAcheminement": "HUIRON", + "nomCommune": "HUIRON" }, { - "codePostal": "55100", - "codeCommune": "55106", - "libelleAcheminement": "CHATTANCOURT", - "nomCommune": "CHATTANCOURT" + "codePostal": "60640", + "codeCommune": "60236", + "libelleAcheminement": "FLAVY LE MELDEUX", + "nomCommune": "FLAVY LE MELDEUX" }, { - "codePostal": "31340", - "codeCommune": "31288", - "libelleAcheminement": "LAYRAC SUR TARN", - "nomCommune": "LAYRAC SUR TARN" + "codePostal": "03700", + "codeCommune": "03023", + "libelleAcheminement": "BELLERIVE SUR ALLIER", + "nomCommune": "BELLERIVE SUR ALLIER" }, { - "codePostal": "27380", - "codeCommune": "27012", - "libelleAcheminement": "AMFREVILLE LES CHAMPS", - "nomCommune": "AMFREVILLE LES CHAMPS" + "codePostal": "60400", + "codeCommune": "60037", + "libelleAcheminement": "BABOEUF", + "nomCommune": "BABOEUF" }, { - "codePostal": "42800", - "codeCommune": "42036", - "libelleAcheminement": "CHAGNON", - "nomCommune": "CHAGNON" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "55260", - "codeCommune": "55108", - "libelleAcheminement": "CHAUMONT SUR AIRE", - "nomCommune": "CHAUMONT SUR AIRE" + "codePostal": "51110", + "codeCommune": "51299", + "libelleAcheminement": "ISLES SUR SUIPPE", + "nomCommune": "ISLES SUR SUIPPE" }, { - "codePostal": "31150", - "codeCommune": "31293", - "libelleAcheminement": "LESPINASSE", - "nomCommune": "LESPINASSE" + "codePostal": "60240", + "codeCommune": "60239", + "libelleAcheminement": "FLEURY", + "nomCommune": "FLEURY" }, { - "codePostal": "27820", - "codeCommune": "27019", - "libelleAcheminement": "ARMENTIERES SUR AVRE", - "nomCommune": "ARMENTIERES SUR AVRE" + "codePostal": "03130", + "codeCommune": "03024", + "libelleAcheminement": "BERT", + "nomCommune": "BERT" }, { - "codePostal": "42920", - "codeCommune": "42039", - "libelleAcheminement": "CHALMAZEL JEANSAGNIERE", - "nomCommune": "CHALMAZEL JEANSAGNIERE" + "codePostal": "60620", + "codeCommune": "60046", + "libelleAcheminement": "BARGNY", + "nomCommune": "BARGNY" }, { - "codePostal": "55300", - "codeCommune": "55111", - "libelleAcheminement": "CHAUVONCOURT", - "nomCommune": "CHAUVONCOURT" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "31290", - "codeCommune": "31310", - "libelleAcheminement": "LUX", - "nomCommune": "LUX" + "codePostal": "51150", + "codeCommune": "51301", + "libelleAcheminement": "ISSE", + "nomCommune": "ISSE" }, { - "codePostal": "27180", - "codeCommune": "27020", - "libelleAcheminement": "ARNIERES SUR ITON", - "nomCommune": "ARNIERES SUR ITON" + "codePostal": "60190", + "codeCommune": "60247", + "libelleAcheminement": "FOUILLEUSE", + "nomCommune": "FOUILLEUSE" }, { - "codePostal": "42110", - "codeCommune": "42041", - "libelleAcheminement": "CHAMBEON", - "nomCommune": "CHAMBEON" + "codePostal": "03170", + "codeCommune": "03027", + "libelleAcheminement": "BEZENET", + "nomCommune": "BEZENET" }, { - "codePostal": "55270", - "codeCommune": "55115", - "libelleAcheminement": "CIERGES SOUS MONTFAUCON", - "nomCommune": "CIERGES SOUS MONTFAUCON" + "codePostal": "60300", + "codeCommune": "60047", + "libelleAcheminement": "BARON", + "nomCommune": "BARON" }, { - "codePostal": "31550", - "codeCommune": "31319", - "libelleAcheminement": "MARLIAC", - "nomCommune": "MARLIAC" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "27600", - "codeCommune": "27022", - "libelleAcheminement": "LE VAL D HAZEY", - "nomCommune": "LE VAL D HAZEY" + "codePostal": "51390", + "codeCommune": "51305", + "libelleAcheminement": "JANVRY", + "nomCommune": "JANVRY" }, { - "codePostal": "42310", - "codeCommune": "42049", - "libelleAcheminement": "CHANGY", - "nomCommune": "CHANGY" + "codePostal": "60510", + "codeCommune": "60251", + "libelleAcheminement": "FOUQUEROLLES", + "nomCommune": "FOUQUEROLLES" }, { - "codePostal": "55120", - "codeCommune": "55117", - "libelleAcheminement": "CLERMONT EN ARGONNE", - "nomCommune": "CLERMONT EN ARGONNE" + "codePostal": "03260", + "codeCommune": "03029", + "libelleAcheminement": "BILLY", + "nomCommune": "BILLY" }, { - "codePostal": "31230", - "codeCommune": "31333", - "libelleAcheminement": "MAUVEZIN", - "nomCommune": "MAUVEZIN" + "codePostal": "60390", + "codeCommune": "60054", + "libelleAcheminement": "LES HAUTS TALICAN", + "nomCommune": "LES HAUTS TALICAN" }, { - "codePostal": "27180", - "codeCommune": "27023", - "libelleAcheminement": "AULNAY SUR ITON", - "nomCommune": "AULNAY SUR ITON" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "42190", - "codeCommune": "42052", - "libelleAcheminement": "CHARLIEU", - "nomCommune": "CHARLIEU" + "codePostal": "51290", + "codeCommune": "51322", + "libelleAcheminement": "LIGNON", + "nomCommune": "LIGNON" }, { - "codePostal": "55000", - "codeCommune": "55123", - "libelleAcheminement": "LES HAUTS DE CHEE", - "nomCommune": "LES HAUTS DE CHEE" + "codePostal": "60480", + "codeCommune": "60253", + "libelleAcheminement": "FRANCASTEL", + "nomCommune": "FRANCASTEL" }, { - "codePostal": "31320", - "codeCommune": "31340", - "libelleAcheminement": "MERVILLA", - "nomCommune": "MERVILLA" + "codePostal": "03390", + "codeCommune": "03032", + "libelleAcheminement": "BLOMARD", + "nomCommune": "BLOMARD" }, { - "codePostal": "27420", - "codeCommune": "27026", - "libelleAcheminement": "AUTHEVERNES", - "nomCommune": "AUTHEVERNES" + "codePostal": "60540", + "codeCommune": "60060", + "libelleAcheminement": "BELLE EGLISE", + "nomCommune": "BELLE EGLISE" }, { - "codePostal": "42140", - "codeCommune": "42062", - "libelleAcheminement": "CHEVRIERES", - "nomCommune": "CHEVRIERES" + "codePostal": "50440", + "codeCommune": "50041", + "libelleAcheminement": "LA HAGUE", + "nomCommune": "LA HAGUE" }, { - "codePostal": "55260", - "codeCommune": "55129", - "libelleAcheminement": "COUROUVRE", - "nomCommune": "COUROUVRE" + "codePostal": "51300", + "codeCommune": "51334", + "libelleAcheminement": "LUXEMONT ET VILLOTTE", + "nomCommune": "LUXEMONT ET VILLOTTE" }, { - "codePostal": "31800", - "codeCommune": "31344", - "libelleAcheminement": "MIRAMONT DE COMMINGES", - "nomCommune": "MIRAMONT DE COMMINGES" + "codePostal": "60530", + "codeCommune": "60259", + "libelleAcheminement": "FRESNOY EN THELLE", + "nomCommune": "FRESNOY EN THELLE" }, { - "codePostal": "27220", - "codeCommune": "27027", - "libelleAcheminement": "LES AUTHIEUX", - "nomCommune": "LES AUTHIEUX" + "codePostal": "03150", + "codeCommune": "03034", + "libelleAcheminement": "BOUCE", + "nomCommune": "BOUCE" }, { - "codePostal": "42220", - "codeCommune": "42067", - "libelleAcheminement": "COLOMBIER", - "nomCommune": "COLOMBIER" + "codePostal": "60390", + "codeCommune": "60063", + "libelleAcheminement": "BERNEUIL EN BRAY", + "nomCommune": "BERNEUIL EN BRAY" }, { - "codePostal": "55000", - "codeCommune": "55138", - "libelleAcheminement": "CULEY", - "nomCommune": "CULEY" + "codePostal": "50340", + "codeCommune": "50045", + "libelleAcheminement": "BENOITVILLE", + "nomCommune": "BENOITVILLE" }, { - "codePostal": "31230", - "codeCommune": "31347", - "libelleAcheminement": "MOLAS", - "nomCommune": "MOLAS" + "codePostal": "51800", + "codeCommune": "51336", + "libelleAcheminement": "MAFFRECOURT", + "nomCommune": "MAFFRECOURT" }, { - "codePostal": "27240", - "codeCommune": "27032", - "libelleAcheminement": "CHAMBOIS", - "nomCommune": "CHAMBOIS" + "codePostal": "60127", + "codeCommune": "60260", + "libelleAcheminement": "FRESNOY LA RIVIERE", + "nomCommune": "FRESNOY LA RIVIERE" }, { - "codePostal": "42120", - "codeCommune": "42069", - "libelleAcheminement": "COMMELLE VERNAY", - "nomCommune": "COMMELLE VERNAY" + "codePostal": "03500", + "codeCommune": "03038", + "libelleAcheminement": "BRANSAT", + "nomCommune": "BRANSAT" }, { - "codePostal": "55400", - "codeCommune": "55143", - "libelleAcheminement": "DAMLOUP", - "nomCommune": "DAMLOUP" + "codePostal": "60370", + "codeCommune": "60065", + "libelleAcheminement": "BERTHECOURT", + "nomCommune": "BERTHECOURT" }, { - "codePostal": "31350", - "codeCommune": "31350", - "libelleAcheminement": "MONDILHAN", - "nomCommune": "MONDILHAN" + "codePostal": "50800", + "codeCommune": "50048", + "libelleAcheminement": "BESLON", + "nomCommune": "BESLON" }, { - "codePostal": "27240", - "codeCommune": "27032", - "libelleAcheminement": "CHAMBOIS", - "nomCommune": "CHAMBOIS" + "codePostal": "51170", + "codeCommune": "51337", + "libelleAcheminement": "MAGNEUX", + "nomCommune": "MAGNEUX" }, { - "codePostal": "42123", - "codeCommune": "42070", - "libelleAcheminement": "CORDELLE", - "nomCommune": "CORDELLE" + "codePostal": "60120", + "codeCommune": "60268", + "libelleAcheminement": "GANNES", + "nomCommune": "GANNES" }, { - "codePostal": "55150", - "codeCommune": "55145", - "libelleAcheminement": "DAMVILLERS", - "nomCommune": "DAMVILLERS" + "codePostal": "03210", + "codeCommune": "03039", + "libelleAcheminement": "BRESNAY", + "nomCommune": "BRESNAY" }, { - "codePostal": "31280", - "codeCommune": "31355", - "libelleAcheminement": "MONS", - "nomCommune": "MONS" + "codePostal": "60650", + "codeCommune": "60073", + "libelleAcheminement": "BLACOURT", + "nomCommune": "BLACOURT" }, { - "codePostal": "27310", - "codeCommune": "27039", - "libelleAcheminement": "BARNEVILLE SUR SEINE", - "nomCommune": "BARNEVILLE SUR SEINE" + "codePostal": "50560", + "codeCommune": "50058", + "libelleAcheminement": "BLAINVILLE SUR MER", + "nomCommune": "BLAINVILLE SUR MER" }, { - "codePostal": "42360", - "codeCommune": "42073", - "libelleAcheminement": "COTTANCE", - "nomCommune": "COTTANCE" + "codePostal": "51800", + "codeCommune": "51341", + "libelleAcheminement": "MALMY", + "nomCommune": "MALMY" }, { - "codePostal": "55110", - "codeCommune": "55146", - "libelleAcheminement": "DANNEVOUX", - "nomCommune": "DANNEVOUX" + "codePostal": "60210", + "codeCommune": "60269", + "libelleAcheminement": "GAUDECHART", + "nomCommune": "GAUDECHART" }, { - "codePostal": "31140", - "codeCommune": "31364", - "libelleAcheminement": "MONTBERON", - "nomCommune": "MONTBERON" + "codePostal": "03270", + "codeCommune": "03045", + "libelleAcheminement": "BUSSET", + "nomCommune": "BUSSET" }, { - "codePostal": "27330", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "60123", + "codeCommune": "60083", + "libelleAcheminement": "BONNEUIL EN VALOIS", + "nomCommune": "BONNEUIL EN VALOIS" }, { - "codePostal": "42700", - "codeCommune": "42095", - "libelleAcheminement": "FIRMINY", - "nomCommune": "FIRMINY" + "codePostal": "50480", + "codeCommune": "50059", + "libelleAcheminement": "BLOSVILLE", + "nomCommune": "BLOSVILLE" }, { - "codePostal": "55130", - "codeCommune": "55150", - "libelleAcheminement": "DEMANGE BAUDIGNECOURT", - "nomCommune": "DEMANGE BAUDIGNECOURT" + "codePostal": "51210", + "codeCommune": "51380", + "libelleAcheminement": "MONTMIRAIL", + "nomCommune": "MONTMIRAIL" }, { - "codePostal": "31450", - "codeCommune": "31366", - "libelleAcheminement": "MONTBRUN LAURAGAIS", - "nomCommune": "MONTBRUN LAURAGAIS" + "codePostal": "60117", + "codeCommune": "60279", + "libelleAcheminement": "GONDREVILLE", + "nomCommune": "GONDREVILLE" }, { - "codePostal": "27410", - "codeCommune": "27049", - "libelleAcheminement": "MESNIL EN OUCHE", - "nomCommune": "MESNIL EN OUCHE" + "codePostal": "03140", + "codeCommune": "03059", + "libelleAcheminement": "CHAREIL CINTRAT", + "nomCommune": "CHAREIL CINTRAT" }, { - "codePostal": "42140", - "codeCommune": "42100", - "libelleAcheminement": "LA GIMOND", - "nomCommune": "LA GIMOND" + "codePostal": "60300", + "codeCommune": "60087", + "libelleAcheminement": "BOREST", + "nomCommune": "BOREST" }, { - "codePostal": "55400", - "codeCommune": "55153", - "libelleAcheminement": "DIEPPE SOUS DOUAUMONT", - "nomCommune": "DIEPPE SOUS DOUAUMONT" + "codePostal": "50610", + "codeCommune": "50066", + "libelleAcheminement": "JULLOUVILLE", + "nomCommune": "JULLOUVILLE" }, { - "codePostal": "31260", - "codeCommune": "31376", - "libelleAcheminement": "MONTGAILLARD DE SALIES", - "nomCommune": "MONTGAILLARD DE SALIES" + "codePostal": "51270", + "codeCommune": "51381", + "libelleAcheminement": "MONTMORT LUCY", + "nomCommune": "MONTMORT LUCY" }, { - "codePostal": "27370", - "codeCommune": "27053", - "libelleAcheminement": "LE BEC THOMAS", - "nomCommune": "LE BEC THOMAS" + "codePostal": "60270", + "codeCommune": "60282", + "libelleAcheminement": "GOUVIEUX", + "nomCommune": "GOUVIEUX" }, { - "codePostal": "42260", - "codeCommune": "42106", - "libelleAcheminement": "GREZOLLES", - "nomCommune": "GREZOLLES" + "codePostal": "03510", + "codeCommune": "03063", + "libelleAcheminement": "CHASSENARD", + "nomCommune": "CHASSENARD" }, { - "codePostal": "55240", - "codeCommune": "55182", - "libelleAcheminement": "ETON", - "nomCommune": "ETON" + "codePostal": "60540", + "codeCommune": "60088", + "libelleAcheminement": "BORNEL", + "nomCommune": "BORNEL" }, { - "codePostal": "31450", - "codeCommune": "31381", - "libelleAcheminement": "MONTGISCARD", - "nomCommune": "MONTGISCARD" + "codePostal": "50290", + "codeCommune": "50076", + "libelleAcheminement": "BREHAL", + "nomCommune": "BREHAL" }, { - "codePostal": "27700", - "codeCommune": "27058", - "libelleAcheminement": "LES TROIS LACS", - "nomCommune": "LES TROIS LACS" + "codePostal": "51270", + "codeCommune": "51381", + "libelleAcheminement": "MONTMORT LUCY", + "nomCommune": "MONTMORT LUCY" }, { - "codePostal": "42660", - "codeCommune": "42115", - "libelleAcheminement": "JONZIEUX", - "nomCommune": "JONZIEUX" + "codePostal": "60210", + "codeCommune": "60286", + "libelleAcheminement": "GRANDVILLIERS", + "nomCommune": "GRANDVILLIERS" }, { - "codePostal": "55150", - "codeCommune": "55183", - "libelleAcheminement": "ETRAYE", - "nomCommune": "ETRAYE" + "codePostal": "03500", + "codeCommune": "03065", + "libelleAcheminement": "CHATEL DE NEUVRE", + "nomCommune": "CHATEL DE NEUVRE" }, { - "codePostal": "31460", - "codeCommune": "31392", - "libelleAcheminement": "MOURVILLES BASSES", - "nomCommune": "MOURVILLES BASSES" + "codePostal": "60400", + "codeCommune": "60105", + "libelleAcheminement": "BRETIGNY", + "nomCommune": "BRETIGNY" }, { - "codePostal": "27330", - "codeCommune": "27068", - "libelleAcheminement": "BOIS ANZERAY", - "nomCommune": "BOIS ANZERAY" + "codePostal": "50290", + "codeCommune": "50076", + "libelleAcheminement": "BREHAL", + "nomCommune": "BREHAL" }, { - "codePostal": "42600", - "codeCommune": "42121", - "libelleAcheminement": "LERIGNEUX", - "nomCommune": "LERIGNEUX" + "codePostal": "51530", + "codeCommune": "51387", + "libelleAcheminement": "MOSLINS", + "nomCommune": "MOSLINS" }, { - "codePostal": "55200", - "codeCommune": "55184", - "libelleAcheminement": "EUVILLE", - "nomCommune": "EUVILLE" + "codePostal": "60400", + "codeCommune": "60287", + "libelleAcheminement": "GRANDRU", + "nomCommune": "GRANDRU" }, { - "codePostal": "31110", - "codeCommune": "31394", - "libelleAcheminement": "MOUSTAJON", - "nomCommune": "MOUSTAJON" + "codePostal": "03370", + "codeCommune": "03072", + "libelleAcheminement": "CHAZEMAIS", + "nomCommune": "CHAZEMAIS" }, { - "codePostal": "27260", - "codeCommune": "27071", - "libelleAcheminement": "LE BOIS HELLAIN", - "nomCommune": "LE BOIS HELLAIN" + "codePostal": "60290", + "codeCommune": "60120", + "libelleAcheminement": "CAMBRONNE LES CLERMONT", + "nomCommune": "CAMBRONNE LES CLERMONT" }, { - "codePostal": "42260", - "codeCommune": "42125", - "libelleAcheminement": "LURE", - "nomCommune": "LURE" + "codePostal": "50430", + "codeCommune": "50078", + "libelleAcheminement": "BRETTEVILLE SUR AY", + "nomCommune": "BRETTEVILLE SUR AY" }, { - "codePostal": "55200", - "codeCommune": "55184", - "libelleAcheminement": "EUVILLE", - "nomCommune": "EUVILLE" + "codePostal": "51400", + "codeCommune": "51388", + "libelleAcheminement": "MOURMELON LE GRAND", + "nomCommune": "MOURMELON LE GRAND" }, { - "codePostal": "31110", - "codeCommune": "31404", - "libelleAcheminement": "OO", - "nomCommune": "OO" + "codePostal": "60210", + "codeCommune": "60289", + "libelleAcheminement": "GREZ", + "nomCommune": "GREZ" }, { - "codePostal": "27120", - "codeCommune": "27076", - "libelleAcheminement": "BOISSET LES PREVANCHES", - "nomCommune": "BOISSET LES PREVANCHES" + "codePostal": "03600", + "codeCommune": "03081", + "libelleAcheminement": "COLOMBIER", + "nomCommune": "COLOMBIER" }, { - "codePostal": "42300", - "codeCommune": "42127", - "libelleAcheminement": "MABLY", - "nomCommune": "MABLY" + "codePostal": "60640", + "codeCommune": "60121", + "libelleAcheminement": "CAMPAGNE", + "nomCommune": "CAMPAGNE" }, { - "codePostal": "55400", - "codeCommune": "55191", - "libelleAcheminement": "FOAMEIX ORNEL", - "nomCommune": "FOAMEIX ORNEL" + "codePostal": "50260", + "codeCommune": "50079", + "libelleAcheminement": "BREUVILLE", + "nomCommune": "BREUVILLE" }, { - "codePostal": "31320", - "codeCommune": "31411", - "libelleAcheminement": "PECHBUSQUE", - "nomCommune": "PECHBUSQUE" + "codePostal": "51400", + "codeCommune": "51389", + "libelleAcheminement": "MOURMELON LE PETIT", + "nomCommune": "MOURMELON LE PETIT" }, { - "codePostal": "27300", - "codeCommune": "27079", - "libelleAcheminement": "BOISSY LAMBERVILLE", - "nomCommune": "BOISSY LAMBERVILLE" + "codePostal": "60210", + "codeCommune": "60295", + "libelleAcheminement": "HALLOY", + "nomCommune": "HALLOY" }, { - "codePostal": "42600", - "codeCommune": "42130", - "libelleAcheminement": "MAGNEUX HAUTE RIVE", - "nomCommune": "MAGNEUX HAUTE RIVE" + "codePostal": "03370", + "codeCommune": "03088", + "libelleAcheminement": "COURCAIS", + "nomCommune": "COURCAIS" }, { - "codePostal": "55200", - "codeCommune": "55212", - "libelleAcheminement": "GIRAUVOISIN", - "nomCommune": "GIRAUVOISIN" + "codePostal": "60730", + "codeCommune": "60135", + "libelleAcheminement": "CAUVIGNY", + "nomCommune": "CAUVIGNY" }, { - "codePostal": "31220", - "codeCommune": "31425", - "libelleAcheminement": "LE PLAN", - "nomCommune": "LE PLAN" + "codePostal": "50330", + "codeCommune": "50086", + "libelleAcheminement": "BRILLEVAST", + "nomCommune": "BRILLEVAST" }, { - "codePostal": "27310", - "codeCommune": "27085", - "libelleAcheminement": "FLANCOURT CRESCY EN ROUMOIS", - "nomCommune": "FLANCOURT CRESCY EN ROUMOIS" + "codePostal": "51420", + "codeCommune": "51403", + "libelleAcheminement": "NOGENT L ABBESSE", + "nomCommune": "NOGENT L ABBESSE" }, { - "codePostal": "42750", - "codeCommune": "42131", - "libelleAcheminement": "MAIZILLY", - "nomCommune": "MAIZILLY" + "codePostal": "60190", + "codeCommune": "60308", + "libelleAcheminement": "HEMEVILLERS", + "nomCommune": "HEMEVILLERS" }, { - "codePostal": "55500", - "codeCommune": "55214", - "libelleAcheminement": "GIVRAUVAL", - "nomCommune": "GIVRAUVAL" + "codePostal": "03330", + "codeCommune": "03089", + "libelleAcheminement": "COUTANSOUZE", + "nomCommune": "COUTANSOUZE" }, { - "codePostal": "31450", - "codeCommune": "31429", - "libelleAcheminement": "POMPERTUZAT", - "nomCommune": "POMPERTUZAT" + "codePostal": "60240", + "codeCommune": "60143", + "libelleAcheminement": "CHAUMONT EN VEXIN", + "nomCommune": "CHAUMONT EN VEXIN" }, { - "codePostal": "27310", - "codeCommune": "27085", - "libelleAcheminement": "FLANCOURT CRESCY EN ROUMOIS", - "nomCommune": "FLANCOURT CRESCY EN ROUMOIS" + "codePostal": "50150", + "codeCommune": "50088", + "libelleAcheminement": "BROUAINS", + "nomCommune": "BROUAINS" }, { - "codePostal": "42210", - "codeCommune": "42135", - "libelleAcheminement": "MARCLOPT", - "nomCommune": "MARCLOPT" + "codePostal": "51300", + "codeCommune": "51406", + "libelleAcheminement": "NORROIS", + "nomCommune": "NORROIS" }, { - "codePostal": "55500", - "codeCommune": "55220", - "libelleAcheminement": "GRIMAUCOURT PRES SAMPIGNY", - "nomCommune": "GRIMAUCOURT PRES SAMPIGNY" + "codePostal": "60360", + "codeCommune": "60314", + "libelleAcheminement": "HETOMESNIL", + "nomCommune": "HETOMESNIL" }, { - "codePostal": "31160", - "codeCommune": "31431", - "libelleAcheminement": "PORTET D ASPET", - "nomCommune": "PORTET D ASPET" + "codePostal": "03160", + "codeCommune": "03090", + "libelleAcheminement": "COUZON", + "nomCommune": "COUZON" }, { - "codePostal": "27290", - "codeCommune": "27089", - "libelleAcheminement": "THENOUVILLE", - "nomCommune": "THENOUVILLE" + "codePostal": "60710", + "codeCommune": "60149", + "libelleAcheminement": "CHEVRIERES", + "nomCommune": "CHEVRIERES" }, { - "codePostal": "42560", - "codeCommune": "42140", - "libelleAcheminement": "MAROLS", - "nomCommune": "MAROLS" + "codePostal": "50200", + "codeCommune": "50092", + "libelleAcheminement": "CAMBERNON", + "nomCommune": "CAMBERNON" }, { - "codePostal": "55300", - "codeCommune": "55229", - "libelleAcheminement": "HAN SUR MEUSE", - "nomCommune": "HAN SUR MEUSE" + "codePostal": "51310", + "codeCommune": "51407", + "libelleAcheminement": "LA NOUE", + "nomCommune": "LA NOUE" }, { - "codePostal": "31460", - "codeCommune": "31441", - "libelleAcheminement": "PRUNET", - "nomCommune": "PRUNET" + "codePostal": "60350", + "codeCommune": "60324", + "libelleAcheminement": "JAULZY", + "nomCommune": "JAULZY" }, { - "codePostal": "27520", - "codeCommune": "27089", - "libelleAcheminement": "THENOUVILLE", - "nomCommune": "THENOUVILLE" + "codePostal": "03240", + "codeCommune": "03092", + "libelleAcheminement": "CRESSANGES", + "nomCommune": "CRESSANGES" }, { - "codePostal": "42380", - "codeCommune": "42142", - "libelleAcheminement": "MERLE LEIGNEC", - "nomCommune": "MERLE LEIGNEC" + "codePostal": "60940", + "codeCommune": "60154", + "libelleAcheminement": "CINQUEUX", + "nomCommune": "CINQUEUX" }, { - "codePostal": "55100", - "codeCommune": "55239", - "libelleAcheminement": "HAUMONT PRES SAMOGNEUX", - "nomCommune": "HAUMONT PRES SAMOGNEUX" + "codePostal": "50210", + "codeCommune": "50094", + "libelleAcheminement": "CAMPROND", + "nomCommune": "CAMPROND" }, { - "codePostal": "31190", - "codeCommune": "31442", - "libelleAcheminement": "PUYDANIEL", - "nomCommune": "PUYDANIEL" + "codePostal": "51480", + "codeCommune": "51410", + "libelleAcheminement": "OEUILLY", + "nomCommune": "OEUILLY" }, { - "codePostal": "27310", - "codeCommune": "27091", - "libelleAcheminement": "BOSGOUET", - "nomCommune": "BOSGOUET" + "codePostal": "60600", + "codeCommune": "60345", + "libelleAcheminement": "LAMECOURT", + "nomCommune": "LAMECOURT" }, { - "codePostal": "42840", - "codeCommune": "42145", - "libelleAcheminement": "MONTAGNY", - "nomCommune": "MONTAGNY" + "codePostal": "03300", + "codeCommune": "03093", + "libelleAcheminement": "CREUZIER LE NEUF", + "nomCommune": "CREUZIER LE NEUF" }, { - "codePostal": "55400", - "codeCommune": "55244", - "libelleAcheminement": "HERMEVILLE EN WOEVRE", - "nomCommune": "HERMEVILLE EN WOEVRE" + "codePostal": "60280", + "codeCommune": "60156", + "libelleAcheminement": "CLAIROIX", + "nomCommune": "CLAIROIX" }, { - "codePostal": "31370", - "codeCommune": "31454", - "libelleAcheminement": "RIEUMES", - "nomCommune": "RIEUMES" + "codePostal": "50580", + "codeCommune": "50097", + "libelleAcheminement": "CANVILLE LA ROCQUE", + "nomCommune": "CANVILLE LA ROCQUE" }, { - "codePostal": "27800", - "codeCommune": "27095", - "libelleAcheminement": "BOSROBERT", - "nomCommune": "BOSROBERT" + "codePostal": "51340", + "codeCommune": "51423", + "libelleAcheminement": "PARGNY SUR SAULX", + "nomCommune": "PARGNY SUR SAULX" }, { - "codePostal": "42600", - "codeCommune": "42147", - "libelleAcheminement": "MONTBRISON", - "nomCommune": "MONTBRISON" + "codePostal": "60400", + "codeCommune": "60348", + "libelleAcheminement": "LARBROYE", + "nomCommune": "LARBROYE" }, { - "codePostal": "55210", - "codeCommune": "55245", - "libelleAcheminement": "HEUDICOURT SOUS LES COTES", - "nomCommune": "HEUDICOURT SOUS LES COTES" + "codePostal": "03170", + "codeCommune": "03104", + "libelleAcheminement": "DOYET", + "nomCommune": "DOYET" }, { - "codePostal": "31120", - "codeCommune": "31458", - "libelleAcheminement": "ROQUES", - "nomCommune": "ROQUES" + "codePostal": "60420", + "codeCommune": "60158", + "libelleAcheminement": "COIVREL", + "nomCommune": "COIVREL" }, { - "codePostal": "27250", - "codeCommune": "27096", - "libelleAcheminement": "LES BOTTEREAUX", - "nomCommune": "LES BOTTEREAUX" + "codePostal": "50480", + "codeCommune": "50099", + "libelleAcheminement": "CARENTAN LES MARAIS", + "nomCommune": "CARENTAN LES MARAIS" }, { - "codePostal": "42210", - "codeCommune": "42149", - "libelleAcheminement": "MONTROND LES BAINS", - "nomCommune": "MONTROND LES BAINS" + "codePostal": "51140", + "codeCommune": "51429", + "libelleAcheminement": "PEVY", + "nomCommune": "PEVY" }, { - "codePostal": "55220", - "codeCommune": "55251", - "libelleAcheminement": "IPPECOURT", - "nomCommune": "IPPECOURT" + "codePostal": "60310", + "codeCommune": "60350", + "libelleAcheminement": "LASSIGNY", + "nomCommune": "LASSIGNY" }, { - "codePostal": "31180", - "codeCommune": "31462", - "libelleAcheminement": "ROUFFIAC TOLOSAN", - "nomCommune": "ROUFFIAC TOLOSAN" + "codePostal": "03110", + "codeCommune": "03110", + "libelleAcheminement": "ESPINASSE VOZELLE", + "nomCommune": "ESPINASSE VOZELLE" }, { - "codePostal": "27500", - "codeCommune": "27101", - "libelleAcheminement": "BOUQUELON", - "nomCommune": "BOUQUELON" + "codePostal": "60120", + "codeCommune": "60163", + "libelleAcheminement": "CORMEILLES", + "nomCommune": "CORMEILLES" }, { - "codePostal": "42600", - "codeCommune": "42151", - "libelleAcheminement": "MORNAND EN FOREZ", - "nomCommune": "MORNAND EN FOREZ" + "codePostal": "50740", + "codeCommune": "50102", + "libelleAcheminement": "CAROLLES", + "nomCommune": "CAROLLES" }, { - "codePostal": "55600", - "codeCommune": "55252", - "libelleAcheminement": "IRE LE SEC", - "nomCommune": "IRE LE SEC" + "codePostal": "51150", + "codeCommune": "51434", + "libelleAcheminement": "PLIVOT", + "nomCommune": "PLIVOT" }, { - "codePostal": "31600", - "codeCommune": "31475", - "libelleAcheminement": "ST CLAR DE RIVIERE", - "nomCommune": "ST CLAR DE RIVIERE" + "codePostal": "60240", + "codeCommune": "60352", + "libelleAcheminement": "LATTAINVILLE", + "nomCommune": "LATTAINVILLE" }, { - "codePostal": "27520", - "codeCommune": "27105", - "libelleAcheminement": "GRAND BOURGTHEROULDE", - "nomCommune": "GRAND BOURGTHEROULDE" + "codePostal": "03340", + "codeCommune": "03114", + "libelleAcheminement": "LA FERTE HAUTERIVE", + "nomCommune": "LA FERTE HAUTERIVE" }, { - "codePostal": "42260", - "codeCommune": "42160", - "libelleAcheminement": "NOLLIEUX", - "nomCommune": "NOLLIEUX" + "codePostal": "60350", + "codeCommune": "60171", + "libelleAcheminement": "COURTIEUX", + "nomCommune": "COURTIEUX" }, { - "codePostal": "55220", - "codeCommune": "55254", - "libelleAcheminement": "LES TROIS DOMAINES", - "nomCommune": "LES TROIS DOMAINES" + "codePostal": "50210", + "codeCommune": "50111", + "libelleAcheminement": "CERISY LA SALLE", + "nomCommune": "CERISY LA SALLE" }, { - "codePostal": "31570", - "codeCommune": "31480", - "libelleAcheminement": "STE FOY D AIGREFEUILLE", - "nomCommune": "STE FOY D AIGREFEUILLE" + "codePostal": "51490", + "codeCommune": "51440", + "libelleAcheminement": "PONTFAVERGER MORONVILLIERS", + "nomCommune": "PONTFAVERGER MORONVILLIERS" }, { - "codePostal": "27520", - "codeCommune": "27105", - "libelleAcheminement": "GRAND BOURGTHEROULDE", - "nomCommune": "GRAND BOURGTHEROULDE" + "codePostal": "60640", + "codeCommune": "60362", + "libelleAcheminement": "LIBERMONT", + "nomCommune": "LIBERMONT" }, { - "codePostal": "42120", - "codeCommune": "42170", - "libelleAcheminement": "PERREUX", - "nomCommune": "PERREUX" + "codePostal": "03140", + "codeCommune": "03116", + "libelleAcheminement": "FOURILLES", + "nomCommune": "FOURILLES" }, { - "codePostal": "55160", - "codeCommune": "55256", - "libelleAcheminement": "JONVILLE EN WOEVRE", - "nomCommune": "JONVILLE EN WOEVRE" + "codePostal": "60800", + "codeCommune": "60176", + "libelleAcheminement": "CREPY EN VALOIS", + "nomCommune": "CREPY EN VALOIS" }, { - "codePostal": "31230", - "codeCommune": "31482", - "libelleAcheminement": "ST FRAJOU", - "nomCommune": "ST FRAJOU" + "codePostal": "50530", + "codeCommune": "50117", + "libelleAcheminement": "CHAMPEAUX", + "nomCommune": "CHAMPEAUX" }, { - "codePostal": "27500", - "codeCommune": "27107", - "libelleAcheminement": "BOURNEVILLE STE CROIX", - "nomCommune": "BOURNEVILLE STE CROIX" + "codePostal": "51140", + "codeCommune": "51448", + "libelleAcheminement": "PROUILLY", + "nomCommune": "PROUILLY" }, { - "codePostal": "42660", - "codeCommune": "42172", - "libelleAcheminement": "PLANFOY", - "nomCommune": "PLANFOY" + "codePostal": "60510", + "codeCommune": "60366", + "libelleAcheminement": "LITZ", + "nomCommune": "LITZ" }, { - "codePostal": "55200", - "codeCommune": "55258", - "libelleAcheminement": "GEVILLE", - "nomCommune": "GEVILLE" + "codePostal": "03250", + "codeCommune": "03125", + "libelleAcheminement": "LA GUILLERMIE", + "nomCommune": "LA GUILLERMIE" }, { - "codePostal": "31790", - "codeCommune": "31490", - "libelleAcheminement": "ST JORY", - "nomCommune": "ST JORY" + "codePostal": "60360", + "codeCommune": "60178", + "libelleAcheminement": "CREVECOEUR LE GRAND", + "nomCommune": "CREVECOEUR LE GRAND" }, { - "codePostal": "27500", - "codeCommune": "27107", - "libelleAcheminement": "BOURNEVILLE STE CROIX", - "nomCommune": "BOURNEVILLE STE CROIX" + "codePostal": "50800", + "codeCommune": "50118", + "libelleAcheminement": "CHAMPREPUS", + "nomCommune": "CHAMPREPUS" }, { - "codePostal": "42630", - "codeCommune": "42178", - "libelleAcheminement": "PRADINES", - "nomCommune": "PRADINES" + "codePostal": "51390", + "codeCommune": "51468", + "libelleAcheminement": "ROSNAY", + "nomCommune": "ROSNAY" }, { - "codePostal": "55170", - "codeCommune": "55261", - "libelleAcheminement": "JUVIGNY EN PERTHOIS", - "nomCommune": "JUVIGNY EN PERTHOIS" + "codePostal": "60420", + "codeCommune": "60374", + "libelleAcheminement": "MAIGNELAY MONTIGNY", + "nomCommune": "MAIGNELAY MONTIGNY" }, { - "codePostal": "31230", - "codeCommune": "31494", - "libelleAcheminement": "ST LAURENT", - "nomCommune": "ST LAURENT" + "codePostal": "03130", + "codeCommune": "03142", + "libelleAcheminement": "LENAX", + "nomCommune": "LENAX" }, { - "codePostal": "27170", - "codeCommune": "27109", - "libelleAcheminement": "BRAY", - "nomCommune": "BRAY" + "codePostal": "60120", + "codeCommune": "60182", + "libelleAcheminement": "LE CROCQ", + "nomCommune": "LE CROCQ" }, { - "codePostal": "42600", - "codeCommune": "42179", - "libelleAcheminement": "PRALONG", - "nomCommune": "PRALONG" + "codePostal": "50130", + "codeCommune": "50129", + "libelleAcheminement": "CHERBOURG EN COTENTIN", + "nomCommune": "CHERBOURG EN COTENTIN" }, { - "codePostal": "55600", - "codeCommune": "55262", - "libelleAcheminement": "JUVIGNY SUR LOISON", - "nomCommune": "JUVIGNY SUR LOISON" + "codePostal": "51700", + "codeCommune": "51480", + "libelleAcheminement": "STE GEMME", + "nomCommune": "STE GEMME" }, { - "codePostal": "31360", - "codeCommune": "31504", - "libelleAcheminement": "ST MEDARD", - "nomCommune": "ST MEDARD" + "codePostal": "60112", + "codeCommune": "60376", + "libelleAcheminement": "MAISONCELLE ST PIERRE", + "nomCommune": "MAISONCELLE ST PIERRE" }, { - "codePostal": "27640", - "codeCommune": "27114", - "libelleAcheminement": "BREUILPONT", - "nomCommune": "BREUILPONT" + "codePostal": "03410", + "codeCommune": "03145", + "libelleAcheminement": "LIGNEROLLES", + "nomCommune": "LIGNEROLLES" }, { - "codePostal": "42150", - "codeCommune": "42183", - "libelleAcheminement": "LA RICAMARIE", - "nomCommune": "LA RICAMARIE" + "codePostal": "60120", + "codeCommune": "60183", + "libelleAcheminement": "CROISSY SUR CELLE", + "nomCommune": "CROISSY SUR CELLE" }, { - "codePostal": "55400", - "codeCommune": "55280", - "libelleAcheminement": "LANHERES", - "nomCommune": "LANHERES" + "codePostal": "50130", + "codeCommune": "50129", + "libelleAcheminement": "CHERBOURG EN COTENTIN", + "nomCommune": "CHERBOURG EN COTENTIN" }, { - "codePostal": "31650", - "codeCommune": "31506", - "libelleAcheminement": "ST ORENS DE GAMEVILLE", - "nomCommune": "ST ORENS DE GAMEVILLE" + "codePostal": "51170", + "codeCommune": "51484", + "libelleAcheminement": "ST GILLES", + "nomCommune": "ST GILLES" }, { - "codePostal": "27730", - "codeCommune": "27119", - "libelleAcheminement": "BUEIL", - "nomCommune": "BUEIL" + "codePostal": "60490", + "codeCommune": "60378", + "libelleAcheminement": "MAREST SUR MATZ", + "nomCommune": "MAREST SUR MATZ" }, { - "codePostal": "42300", - "codeCommune": "42187", - "libelleAcheminement": "ROANNE", - "nomCommune": "ROANNE" + "codePostal": "03500", + "codeCommune": "03148", + "libelleAcheminement": "LORIGES", + "nomCommune": "LORIGES" }, { - "codePostal": "55260", - "codeCommune": "55290", - "libelleAcheminement": "LIGNIERES SUR AIRE", - "nomCommune": "LIGNIERES SUR AIRE" + "codePostal": "60130", + "codeCommune": "60186", + "libelleAcheminement": "CUIGNIERES", + "nomCommune": "CUIGNIERES" }, { - "codePostal": "31530", - "codeCommune": "31507", - "libelleAcheminement": "ST PAUL SUR SAVE", - "nomCommune": "ST PAUL SUR SAVE" + "codePostal": "50890", + "codeCommune": "50139", + "libelleAcheminement": "CONDE SUR VIRE", + "nomCommune": "CONDE SUR VIRE" }, { - "codePostal": "27300", - "codeCommune": "27129", - "libelleAcheminement": "CAORCHES ST NICOLAS", - "nomCommune": "CAORCHES ST NICOLAS" + "codePostal": "51160", + "codeCommune": "51488", + "libelleAcheminement": "ST IMOGES", + "nomCommune": "ST IMOGES" }, { - "codePostal": "42300", - "codeCommune": "42187", - "libelleAcheminement": "ROANNE", - "nomCommune": "ROANNE" + "codePostal": "60690", + "codeCommune": "60387", + "libelleAcheminement": "MARSEILLE EN BEAUVAISIS", + "nomCommune": "MARSEILLE EN BEAUVAISIS" }, { - "codePostal": "55500", - "codeCommune": "55291", - "libelleAcheminement": "LIGNY EN BARROIS", - "nomCommune": "LIGNY EN BARROIS" + "codePostal": "03130", + "codeCommune": "03154", + "libelleAcheminement": "LUNEAU", + "nomCommune": "LUNEAU" }, { - "codePostal": "31580", - "codeCommune": "31513", - "libelleAcheminement": "ST PLANCARD", - "nomCommune": "ST PLANCARD" + "codePostal": "60850", + "codeCommune": "60187", + "libelleAcheminement": "CUIGY EN BRAY", + "nomCommune": "CUIGY EN BRAY" }, { - "codePostal": "27350", - "codeCommune": "27134", - "libelleAcheminement": "CAUVERVILLE EN ROUMOIS", - "nomCommune": "CAUVERVILLE EN ROUMOIS" + "codePostal": "50330", + "codeCommune": "50142", + "libelleAcheminement": "VICQ SUR MER", + "nomCommune": "VICQ SUR MER" }, { - "codePostal": "42310", - "codeCommune": "42194", - "libelleAcheminement": "SAIL LES BAINS", - "nomCommune": "SAIL LES BAINS" + "codePostal": "51240", + "codeCommune": "51490", + "libelleAcheminement": "ST JEAN SUR MOIVRE", + "nomCommune": "ST JEAN SUR MOIVRE" }, { - "codePostal": "55110", - "codeCommune": "55293", - "libelleAcheminement": "LION DEVANT DUN", - "nomCommune": "LION DEVANT DUN" + "codePostal": "60420", + "codeCommune": "60394", + "libelleAcheminement": "MENEVILLERS", + "nomCommune": "MENEVILLERS" }, { - "codePostal": "31620", - "codeCommune": "31515", - "libelleAcheminement": "ST RUSTICE", - "nomCommune": "ST RUSTICE" + "codePostal": "03320", + "codeCommune": "03155", + "libelleAcheminement": "LURCY LEVIS", + "nomCommune": "LURCY LEVIS" }, { - "codePostal": "27110", - "codeCommune": "27135", - "libelleAcheminement": "CESSEVILLE", - "nomCommune": "CESSEVILLE" + "codePostal": "60210", + "codeCommune": "60194", + "libelleAcheminement": "DARGIES", + "nomCommune": "DARGIES" }, { - "codePostal": "42890", - "codeCommune": "42195", - "libelleAcheminement": "SAIL SOUS COUZAN", - "nomCommune": "SAIL SOUS COUZAN" + "codePostal": "50330", + "codeCommune": "50142", + "libelleAcheminement": "VICQ SUR MER", + "nomCommune": "VICQ SUR MER" }, { - "codePostal": "55000", - "codeCommune": "55302", - "libelleAcheminement": "LONGEVILLE EN BARROIS", - "nomCommune": "LONGEVILLE EN BARROIS" + "codePostal": "51240", + "codeCommune": "51502", + "libelleAcheminement": "ST MARTIN AUX CHAMPS", + "nomCommune": "ST MARTIN AUX CHAMPS" }, { - "codePostal": "31290", - "codeCommune": "31519", - "libelleAcheminement": "ST VINCENT", - "nomCommune": "ST VINCENT" + "codePostal": "60120", + "codeCommune": "60399", + "libelleAcheminement": "LE MESNIL ST FIRMIN", + "nomCommune": "LE MESNIL ST FIRMIN" }, { - "codePostal": "27120", - "codeCommune": "27136", - "libelleAcheminement": "CHAIGNES", - "nomCommune": "CHAIGNES" + "codePostal": "03260", + "codeCommune": "03157", + "libelleAcheminement": "MAGNET", + "nomCommune": "MAGNET" }, { - "codePostal": "42310", - "codeCommune": "42203", - "libelleAcheminement": "ST BONNET DES QUARTS", - "nomCommune": "ST BONNET DES QUARTS" + "codePostal": "60420", + "codeCommune": "60200", + "libelleAcheminement": "DOMFRONT", + "nomCommune": "DOMFRONT" }, { - "codePostal": "55150", - "codeCommune": "55316", - "libelleAcheminement": "MANGIENNES", - "nomCommune": "MANGIENNES" + "codePostal": "50330", + "codeCommune": "50142", + "libelleAcheminement": "VICQ SUR MER", + "nomCommune": "VICQ SUR MER" }, { - "codePostal": "31880", - "codeCommune": "31526", - "libelleAcheminement": "LA SALVETAT ST GILLES", - "nomCommune": "LA SALVETAT ST GILLES" + "codePostal": "51470", + "codeCommune": "51506", + "libelleAcheminement": "ST MEMMIE", + "nomCommune": "ST MEMMIE" }, { - "codePostal": "27580", - "codeCommune": "27137", - "libelleAcheminement": "CHAISE DIEU DU THEIL", - "nomCommune": "CHAISE DIEU DU THEIL" + "codePostal": "60130", + "codeCommune": "60400", + "libelleAcheminement": "LE MESNIL SUR BULLES", + "nomCommune": "LE MESNIL SUR BULLES" }, { - "codePostal": "42400", - "codeCommune": "42207", - "libelleAcheminement": "ST CHAMOND", - "nomCommune": "ST CHAMOND" + "codePostal": "03190", + "codeCommune": "03158", + "libelleAcheminement": "HAUT BOCAGE", + "nomCommune": "HAUT BOCAGE" }, { - "codePostal": "55160", - "codeCommune": "55320", - "libelleAcheminement": "MARCHEVILLE EN WOEVRE", - "nomCommune": "MARCHEVILLE EN WOEVRE" + "codePostal": "60220", + "codeCommune": "60219", + "libelleAcheminement": "ESCLES ST PIERRE", + "nomCommune": "ESCLES ST PIERRE" }, { - "codePostal": "31460", - "codeCommune": "31527", - "libelleAcheminement": "LA SALVETAT LAURAGAIS", - "nomCommune": "LA SALVETAT LAURAGAIS" + "codePostal": "50330", + "codeCommune": "50142", + "libelleAcheminement": "VICQ SUR MER", + "nomCommune": "VICQ SUR MER" }, { - "codePostal": "27250", - "codeCommune": "27139", - "libelleAcheminement": "CHAMBORD", - "nomCommune": "CHAMBORD" + "codePostal": "51300", + "codeCommune": "51510", + "libelleAcheminement": "ST QUENTIN LES MARAIS", + "nomCommune": "ST QUENTIN LES MARAIS" }, { - "codePostal": "42800", - "codeCommune": "42210", - "libelleAcheminement": "STE CROIX EN JAREZ", - "nomCommune": "STE CROIX EN JAREZ" + "codePostal": "60240", + "codeCommune": "60401", + "libelleAcheminement": "LE MESNIL THERIBUS", + "nomCommune": "LE MESNIL THERIBUS" }, { - "codePostal": "55400", - "codeCommune": "55325", - "libelleAcheminement": "MAUCOURT SUR ORNE", - "nomCommune": "MAUCOURT SUR ORNE" + "codePostal": "03260", + "codeCommune": "03160", + "libelleAcheminement": "MARCENAT", + "nomCommune": "MARCENAT" }, { - "codePostal": "31350", - "codeCommune": "31528", - "libelleAcheminement": "SAMAN", - "nomCommune": "SAMAN" + "codePostal": "60220", + "codeCommune": "60245", + "libelleAcheminement": "FORMERIE", + "nomCommune": "FORMERIE" }, { - "codePostal": "27380", - "codeCommune": "27151", - "libelleAcheminement": "CHARLEVAL", - "nomCommune": "CHARLEVAL" + "codePostal": "50220", + "codeCommune": "50146", + "libelleAcheminement": "COURTILS", + "nomCommune": "COURTILS" }, { - "codePostal": "42114", - "codeCommune": "42213", - "libelleAcheminement": "ST CYR DE VALORGES", - "nomCommune": "ST CYR DE VALORGES" + "codePostal": "51120", + "codeCommune": "51514", + "libelleAcheminement": "ST REMY SOUS BROYES", + "nomCommune": "ST REMY SOUS BROYES" }, { - "codePostal": "55190", - "codeCommune": "55331", - "libelleAcheminement": "MELIGNY LE PETIT", - "nomCommune": "MELIGNY LE PETIT" + "codePostal": "60880", + "codeCommune": "60402", + "libelleAcheminement": "LE MEUX", + "nomCommune": "LE MEUX" }, { - "codePostal": "31420", - "codeCommune": "31529", - "libelleAcheminement": "SAMOUILLAN", - "nomCommune": "SAMOUILLAN" + "codePostal": "03140", + "codeCommune": "03175", + "libelleAcheminement": "MONESTIER", + "nomCommune": "MONESTIER" }, { - "codePostal": "27420", - "codeCommune": "27152", - "libelleAcheminement": "CHATEAU SUR EPTE", - "nomCommune": "CHATEAU SUR EPTE" + "codePostal": "60250", + "codeCommune": "60249", + "libelleAcheminement": "FOULANGUES", + "nomCommune": "FOULANGUES" }, { - "codePostal": "42140", - "codeCommune": "42216", - "libelleAcheminement": "ST DENIS SUR COISE", - "nomCommune": "ST DENIS SUR COISE" + "codePostal": "50710", + "codeCommune": "50151", + "libelleAcheminement": "CREANCES", + "nomCommune": "CREANCES" }, { - "codePostal": "55190", - "codeCommune": "55334", - "libelleAcheminement": "MENIL LA HORGNE", - "nomCommune": "MENIL LA HORGNE" + "codePostal": "51170", + "codeCommune": "51527", + "libelleAcheminement": "SAVIGNY SUR ARDRES", + "nomCommune": "SAVIGNY SUR ARDRES" }, { - "codePostal": "31350", - "codeCommune": "31531", - "libelleAcheminement": "SARRECAVE", - "nomCommune": "SARRECAVE" + "codePostal": "60950", + "codeCommune": "60413", + "libelleAcheminement": "MONTAGNY STE FELICITE", + "nomCommune": "MONTAGNY STE FELICITE" }, { - "codePostal": "27150", - "codeCommune": "27153", - "libelleAcheminement": "CHAUVINCOURT PROVEMONT", - "nomCommune": "CHAUVINCOURT PROVEMONT" + "codePostal": "03500", + "codeCommune": "03176", + "libelleAcheminement": "MONETAY SUR ALLIER", + "nomCommune": "MONETAY SUR ALLIER" }, { - "codePostal": "42100", - "codeCommune": "42218", - "libelleAcheminement": "ST ETIENNE", - "nomCommune": "ST ETIENNE" + "codePostal": "60130", + "codeCommune": "60252", + "libelleAcheminement": "FOURNIVAL", + "nomCommune": "FOURNIVAL" }, { - "codePostal": "55150", - "codeCommune": "55341", - "libelleAcheminement": "MOIREY FLABAS CREPION", - "nomCommune": "MOIREY FLABAS CREPION" + "codePostal": "50370", + "codeCommune": "50152", + "libelleAcheminement": "LES CRESNAYS", + "nomCommune": "LES CRESNAYS" }, { - "codePostal": "31160", - "codeCommune": "31544", - "libelleAcheminement": "SENGOUAGNET", - "nomCommune": "SENGOUAGNET" + "codePostal": "51490", + "codeCommune": "51529", + "libelleAcheminement": "SELLES", + "nomCommune": "SELLES" }, { - "codePostal": "27820", - "codeCommune": "27155", - "libelleAcheminement": "CHENNEBRUN", - "nomCommune": "CHENNEBRUN" + "codePostal": "60160", + "codeCommune": "60414", + "libelleAcheminement": "MONTATAIRE", + "nomCommune": "MONTATAIRE" }, { - "codePostal": "42100", - "codeCommune": "42218", - "libelleAcheminement": "ST ETIENNE", - "nomCommune": "ST ETIENNE" + "codePostal": "03000", + "codeCommune": "03190", + "libelleAcheminement": "MOULINS", + "nomCommune": "MOULINS" }, { - "codePostal": "55270", - "codeCommune": "55346", - "libelleAcheminement": "MONTFAUCON D ARGONNE", - "nomCommune": "MONTFAUCON D ARGONNE" + "codePostal": "60190", + "codeCommune": "60254", + "libelleAcheminement": "FRANCIERES", + "nomCommune": "FRANCIERES" }, { - "codePostal": "31110", - "codeCommune": "31549", - "libelleAcheminement": "SODE", - "nomCommune": "SODE" + "codePostal": "50110", + "codeCommune": "50162", + "libelleAcheminement": "DIGOSVILLE", + "nomCommune": "DIGOSVILLE" }, { - "codePostal": "27240", - "codeCommune": "27157", - "libelleAcheminement": "MARBOIS", - "nomCommune": "MARBOIS" + "codePostal": "51250", + "codeCommune": "51531", + "libelleAcheminement": "SERMAIZE LES BAINS", + "nomCommune": "SERMAIZE LES BAINS" }, { - "codePostal": "42530", - "codeCommune": "42223", - "libelleAcheminement": "ST GENEST LERPT", - "nomCommune": "ST GENEST LERPT" + "codePostal": "60420", + "codeCommune": "60416", + "libelleAcheminement": "MONTGERAIN", + "nomCommune": "MONTGERAIN" }, { - "codePostal": "55290", - "codeCommune": "55348", - "libelleAcheminement": "MONTIERS SUR SAULX", - "nomCommune": "MONTIERS SUR SAULX" + "codePostal": "03000", + "codeCommune": "03200", + "libelleAcheminement": "NEUVY", + "nomCommune": "NEUVY" }, { - "codePostal": "31480", - "codeCommune": "31577", - "libelleAcheminement": "VIGNAUX", - "nomCommune": "VIGNAUX" + "codePostal": "60240", + "codeCommune": "60256", + "libelleAcheminement": "MONTCHEVREUIL", + "nomCommune": "MONTCHEVREUIL" }, { - "codePostal": "27930", - "codeCommune": "27158", - "libelleAcheminement": "CIERREY", - "nomCommune": "CIERREY" + "codePostal": "50420", + "codeCommune": "50164", + "libelleAcheminement": "DOMJEAN", + "nomCommune": "DOMJEAN" }, { - "codePostal": "42610", - "codeCommune": "42228", - "libelleAcheminement": "ST GEORGES HAUTE VILLE", - "nomCommune": "ST GEORGES HAUTE VILLE" + "codePostal": "51170", + "codeCommune": "51534", + "libelleAcheminement": "SERZY ET PRIN", + "nomCommune": "SERZY ET PRIN" }, { - "codePostal": "55110", - "codeCommune": "55349", - "libelleAcheminement": "MONTIGNY DEVANT SASSEY", - "nomCommune": "MONTIGNY DEVANT SASSEY" + "codePostal": "60150", + "codeCommune": "60423", + "libelleAcheminement": "MONTMACQ", + "nomCommune": "MONTMACQ" }, { - "codePostal": "31340", - "codeCommune": "31583", - "libelleAcheminement": "VILLEMATIER", - "nomCommune": "VILLEMATIER" + "codePostal": "03230", + "codeCommune": "03203", + "libelleAcheminement": "PARAY LE FRESIL", + "nomCommune": "PARAY LE FRESIL" }, { - "codePostal": "27190", - "codeCommune": "27162", - "libelleAcheminement": "COLLANDRES QUINCARNON", - "nomCommune": "COLLANDRES QUINCARNON" + "codePostal": "60240", + "codeCommune": "60257", + "libelleAcheminement": "FRESNE LEGUILLON", + "nomCommune": "FRESNE LEGUILLON" }, { - "codePostal": "42370", - "codeCommune": "42232", - "libelleAcheminement": "ST HAON LE CHATEL", - "nomCommune": "ST HAON LE CHATEL" + "codePostal": "50220", + "codeCommune": "50168", + "libelleAcheminement": "DUCEY LES CHERIS", + "nomCommune": "DUCEY LES CHERIS" }, { - "codePostal": "55100", - "codeCommune": "55355", - "libelleAcheminement": "MONTZEVILLE", - "nomCommune": "MONTZEVILLE" + "codePostal": "51600", + "codeCommune": "51546", + "libelleAcheminement": "SOMME SUIPPE", + "nomCommune": "SOMME SUIPPE" }, { - "codePostal": "31340", - "codeCommune": "31584", - "libelleAcheminement": "VILLEMUR SUR TARN", - "nomCommune": "VILLEMUR SUR TARN" + "codePostal": "60400", + "codeCommune": "60431", + "libelleAcheminement": "MORLINCOURT", + "nomCommune": "MORLINCOURT" }, { - "codePostal": "27300", - "codeCommune": "27173", - "libelleAcheminement": "CORNEVILLE LA FOUQUETIERE", - "nomCommune": "CORNEVILLE LA FOUQUETIERE" + "codePostal": "03470", + "codeCommune": "03207", + "libelleAcheminement": "PIERREFITTE SUR LOIRE", + "nomCommune": "PIERREFITTE SUR LOIRE" }, { - "codePostal": "42650", - "codeCommune": "42237", - "libelleAcheminement": "ST JEAN BONNEFONDS", - "nomCommune": "ST JEAN BONNEFONDS" + "codePostal": "60310", + "codeCommune": "60258", + "libelleAcheminement": "FRESNIERES", + "nomCommune": "FRESNIERES" }, { - "codePostal": "55400", - "codeCommune": "55356", - "libelleAcheminement": "MORANVILLE", - "nomCommune": "MORANVILLE" + "codePostal": "50310", + "codeCommune": "50169", + "libelleAcheminement": "ECAUSSEVILLE", + "nomCommune": "ECAUSSEVILLE" }, { - "codePostal": "32290", - "codeCommune": "32001", - "libelleAcheminement": "AIGNAN", - "nomCommune": "AIGNAN" + "codePostal": "51290", + "codeCommune": "51551", + "libelleAcheminement": "SOMSOIS", + "nomCommune": "SOMSOIS" }, { - "codePostal": "27220", - "codeCommune": "27177", - "libelleAcheminement": "COUDRES", - "nomCommune": "COUDRES" + "codePostal": "60570", + "codeCommune": "60433", + "libelleAcheminement": "MORTEFONTAINE EN THELLE", + "nomCommune": "MORTEFONTAINE EN THELLE" }, { - "codePostal": "42155", - "codeCommune": "42239", - "libelleAcheminement": "ST JEAN ST MAURICE SUR LOIRE", - "nomCommune": "ST JEAN ST MAURICE SUR LOIRE" + "codePostal": "03130", + "codeCommune": "03208", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "55500", - "codeCommune": "55358", - "libelleAcheminement": "CHANTERAINE", - "nomCommune": "CHANTERAINE" + "codePostal": "60420", + "codeCommune": "60262", + "libelleAcheminement": "LE FRESTOY VAUX", + "nomCommune": "LE FRESTOY VAUX" }, { - "codePostal": "32140", - "codeCommune": "32010", - "libelleAcheminement": "ARROUEDE", - "nomCommune": "ARROUEDE" + "codePostal": "50310", + "codeCommune": "50172", + "libelleAcheminement": "EMONDEVILLE", + "nomCommune": "EMONDEVILLE" }, { - "codePostal": "27300", - "codeCommune": "27179", - "libelleAcheminement": "COURBEPINE", - "nomCommune": "COURBEPINE" + "codePostal": "51240", + "codeCommune": "51552", + "libelleAcheminement": "SONGY", + "nomCommune": "SONGY" }, { - "codePostal": "42800", - "codeCommune": "42242", - "libelleAcheminement": "ST JOSEPH", - "nomCommune": "ST JOSEPH" + "codePostal": "60490", + "codeCommune": "60434", + "libelleAcheminement": "MORTEMER", + "nomCommune": "MORTEMER" }, { - "codePostal": "55500", - "codeCommune": "55358", - "libelleAcheminement": "CHANTERAINE", - "nomCommune": "CHANTERAINE" + "codePostal": "03150", + "codeCommune": "03215", + "libelleAcheminement": "RONGERES", + "nomCommune": "RONGERES" }, { - "codePostal": "32000", - "codeCommune": "32013", - "libelleAcheminement": "AUCH", - "nomCommune": "AUCH" + "codePostal": "60000", + "codeCommune": "60264", + "libelleAcheminement": "FROCOURT", + "nomCommune": "FROCOURT" }, { - "codePostal": "27750", - "codeCommune": "27183", - "libelleAcheminement": "LA COUTURE BOUSSEY", - "nomCommune": "LA COUTURE BOUSSEY" + "codePostal": "50310", + "codeCommune": "50175", + "libelleAcheminement": "EROUDEVILLE", + "nomCommune": "EROUDEVILLE" }, { - "codePostal": "42130", - "codeCommune": "42252", - "libelleAcheminement": "ST LAURENT ROCHEFORT", - "nomCommune": "ST LAURENT ROCHEFORT" + "codePostal": "51320", + "codeCommune": "51556", + "libelleAcheminement": "SOUDRON", + "nomCommune": "SOUDRON" }, { - "codePostal": "55290", - "codeCommune": "55359", - "libelleAcheminement": "MORLEY", - "nomCommune": "MORLEY" + "codePostal": "60250", + "codeCommune": "60439", + "libelleAcheminement": "MOUY", + "nomCommune": "MOUY" }, { - "codePostal": "32450", - "codeCommune": "32018", - "libelleAcheminement": "AURIMONT", - "nomCommune": "AURIMONT" + "codePostal": "03800", + "codeCommune": "03220", + "libelleAcheminement": "ST BONNET DE ROCHEFORT", + "nomCommune": "ST BONNET DE ROCHEFORT" }, { - "codePostal": "27190", - "codeCommune": "27189", - "libelleAcheminement": "LA CROISILLE", - "nomCommune": "LA CROISILLE" + "codePostal": "60400", + "codeCommune": "60270", + "libelleAcheminement": "GENVRY", + "nomCommune": "GENVRY" }, { - "codePostal": "42590", - "codeCommune": "42277", - "libelleAcheminement": "ST PRIEST LA ROCHE", - "nomCommune": "ST PRIEST LA ROCHE" + "codePostal": "50190", + "codeCommune": "50181", + "libelleAcheminement": "FEUGERES", + "nomCommune": "FEUGERES" }, { - "codePostal": "55700", - "codeCommune": "55364", - "libelleAcheminement": "MOUZAY", - "nomCommune": "MOUZAY" + "codePostal": "51430", + "codeCommune": "51573", + "libelleAcheminement": "TINQUEUX", + "nomCommune": "TINQUEUX" }, { - "codePostal": "32190", - "codeCommune": "32031", - "libelleAcheminement": "BASCOUS", - "nomCommune": "BASCOUS" + "codePostal": "60320", + "codeCommune": "60447", + "libelleAcheminement": "NERY", + "nomCommune": "NERY" }, { - "codePostal": "27160", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "03360", + "codeCommune": "03221", + "libelleAcheminement": "ST BONNET TRONCAIS", + "nomCommune": "ST BONNET TRONCAIS" }, { - "codePostal": "42170", - "codeCommune": "42279", - "libelleAcheminement": "ST JUST ST RAMBERT", - "nomCommune": "ST JUST ST RAMBERT" + "codePostal": "60380", + "codeCommune": "60271", + "libelleAcheminement": "GERBEROY", + "nomCommune": "GERBEROY" }, { - "codePostal": "55500", - "codeCommune": "55374", - "libelleAcheminement": "NANT LE PETIT", - "nomCommune": "NANT LE PETIT" + "codePostal": "50340", + "codeCommune": "50184", + "libelleAcheminement": "FLAMANVILLE", + "nomCommune": "FLAMANVILLE" }, { - "codePostal": "32320", - "codeCommune": "32032", - "libelleAcheminement": "BASSOUES", - "nomCommune": "BASSOUES" + "codePostal": "51210", + "codeCommune": "51579", + "libelleAcheminement": "TREFOLS", + "nomCommune": "TREFOLS" }, { - "codePostal": "27240", - "codeCommune": "27198", - "libelleAcheminement": "MESNILS SUR ITON", - "nomCommune": "MESNILS SUR ITON" + "codePostal": "60530", + "codeCommune": "60450", + "libelleAcheminement": "NEUILLY EN THELLE", + "nomCommune": "NEUILLY EN THELLE" }, { - "codePostal": "42430", - "codeCommune": "42282", - "libelleAcheminement": "ST ROMAIN D URFE", - "nomCommune": "ST ROMAIN D URFE" + "codePostal": "03370", + "codeCommune": "03225", + "libelleAcheminement": "ST DESIRE", + "nomCommune": "ST DESIRE" }, { - "codePostal": "55210", - "codeCommune": "55386", - "libelleAcheminement": "NONSARD LAMARCHE", - "nomCommune": "NONSARD LAMARCHE" + "codePostal": "60640", + "codeCommune": "60278", + "libelleAcheminement": "GOLANCOURT", + "nomCommune": "GOLANCOURT" }, { - "codePostal": "32410", - "codeCommune": "32035", - "libelleAcheminement": "BEAUCAIRE", - "nomCommune": "BEAUCAIRE" + "codePostal": "50320", + "codeCommune": "50188", + "libelleAcheminement": "FOLLIGNY", + "nomCommune": "FOLLIGNY" }, { - "codePostal": "27720", - "codeCommune": "27199", - "libelleAcheminement": "DANGU", - "nomCommune": "DANGU" + "codePostal": "51380", + "codeCommune": "51580", + "libelleAcheminement": "TREPAIL", + "nomCommune": "TREPAIL" }, { - "codePostal": "42640", - "codeCommune": "42284", - "libelleAcheminement": "ST ROMAIN LA MOTTE", - "nomCommune": "ST ROMAIN LA MOTTE" + "codePostal": "60119", + "codeCommune": "60452", + "libelleAcheminement": "NEUVILLE BOSC", + "nomCommune": "NEUVILLE BOSC" }, { - "codePostal": "55250", - "codeCommune": "55389", - "libelleAcheminement": "NUBECOURT", - "nomCommune": "NUBECOURT" + "codePostal": "03380", + "codeCommune": "03246", + "libelleAcheminement": "ST MARTINIEN", + "nomCommune": "ST MARTINIEN" }, { - "codePostal": "32300", - "codeCommune": "32042", - "libelleAcheminement": "BELLOC ST CLAMENS", - "nomCommune": "BELLOC ST CLAMENS" + "codePostal": "60220", + "codeCommune": "60280", + "libelleAcheminement": "GOURCHELLES", + "nomCommune": "GOURCHELLES" }, { - "codePostal": "27150", - "codeCommune": "27204", - "libelleAcheminement": "DOUDEAUVILLE EN VEXIN", - "nomCommune": "DOUDEAUVILLE EN VEXIN" + "codePostal": "50150", + "codeCommune": "50195", + "libelleAcheminement": "GATHEMO", + "nomCommune": "GATHEMO" }, { - "codePostal": "42630", - "codeCommune": "42293", - "libelleAcheminement": "ST VICTOR SUR RHINS", - "nomCommune": "ST VICTOR SUR RHINS" + "codePostal": "51320", + "codeCommune": "51595", + "libelleAcheminement": "VATRY", + "nomCommune": "VATRY" }, { - "codePostal": "55700", - "codeCommune": "55391", - "libelleAcheminement": "OLIZY SUR CHIERS", - "nomCommune": "OLIZY SUR CHIERS" + "codePostal": "60480", + "codeCommune": "60465", + "libelleAcheminement": "NOIREMONT", + "nomCommune": "NOIREMONT" }, { - "codePostal": "32230", - "codeCommune": "32058", - "libelleAcheminement": "BLOUSSON SERIAN", - "nomCommune": "BLOUSSON SERIAN" + "codePostal": "03210", + "codeCommune": "03247", + "libelleAcheminement": "ST MENOUX", + "nomCommune": "ST MENOUX" }, { - "codePostal": "27320", - "codeCommune": "27206", - "libelleAcheminement": "DROISY", - "nomCommune": "DROISY" + "codePostal": "60190", + "codeCommune": "60281", + "libelleAcheminement": "GOURNAY SUR ARONDE", + "nomCommune": "GOURNAY SUR ARONDE" }, { - "codePostal": "42460", - "codeCommune": "42300", - "libelleAcheminement": "SEVELINGES", - "nomCommune": "SEVELINGES" + "codePostal": "50450", + "codeCommune": "50197", + "libelleAcheminement": "GAVRAY SUR SIENNE", + "nomCommune": "GAVRAY SUR SIENNE" }, { - "codePostal": "55220", - "codeCommune": "55395", - "libelleAcheminement": "OSCHES", - "nomCommune": "OSCHES" + "codePostal": "51130", + "codeCommune": "51603", + "libelleAcheminement": "VELYE", + "nomCommune": "VELYE" }, { - "codePostal": "32370", - "codeCommune": "32062", - "libelleAcheminement": "BOURROUILLAN", - "nomCommune": "BOURROUILLAN" + "codePostal": "60800", + "codeCommune": "60479", + "libelleAcheminement": "ORMOY VILLERS", + "nomCommune": "ORMOY VILLERS" }, { - "codePostal": "27230", - "codeCommune": "27207", - "libelleAcheminement": "DRUCOURT", - "nomCommune": "DRUCOURT" + "codePostal": "03110", + "codeCommune": "03252", + "libelleAcheminement": "ST PONT", + "nomCommune": "ST PONT" }, { - "codePostal": "42740", - "codeCommune": "42308", - "libelleAcheminement": "LA TERRASSE SUR DORLAY", - "nomCommune": "LA TERRASSE SUR DORLAY" + "codePostal": "60380", + "codeCommune": "60288", + "libelleAcheminement": "GREMEVILLERS", + "nomCommune": "GREMEVILLERS" }, { - "codePostal": "55300", - "codeCommune": "55401", - "libelleAcheminement": "LES PAROCHES", - "nomCommune": "LES PAROCHES" + "codePostal": "50450", + "codeCommune": "50197", + "libelleAcheminement": "GAVRAY SUR SIENNE", + "nomCommune": "GAVRAY SUR SIENNE" }, { - "codePostal": "32190", - "codeCommune": "32071", - "libelleAcheminement": "CAILLAVET", - "nomCommune": "CAILLAVET" + "codePostal": "51130", + "codeCommune": "51612", + "libelleAcheminement": "BLANCS COTEAUX", + "nomCommune": "BLANCS COTEAUX" }, { - "codePostal": "27510", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "60129", + "codeCommune": "60481", + "libelleAcheminement": "ORROUY", + "nomCommune": "ORROUY" }, { - "codePostal": "42220", - "codeCommune": "42310", - "libelleAcheminement": "THELIS LA COMBE", - "nomCommune": "THELIS LA COMBE" + "codePostal": "03260", + "codeCommune": "03273", + "libelleAcheminement": "SEUILLET", + "nomCommune": "SEUILLET" }, { - "codePostal": "55700", - "codeCommune": "55408", - "libelleAcheminement": "POUILLY SUR MEUSE", - "nomCommune": "POUILLY SUR MEUSE" + "codePostal": "60480", + "codeCommune": "60290", + "libelleAcheminement": "GUIGNECOURT", + "nomCommune": "GUIGNECOURT" }, { - "codePostal": "32100", - "codeCommune": "32075", - "libelleAcheminement": "CASSAIGNE", - "nomCommune": "CASSAIGNE" + "codePostal": "50530", + "codeCommune": "50199", + "libelleAcheminement": "GENETS", + "nomCommune": "GENETS" }, { - "codePostal": "27630", - "codeCommune": "27213", - "libelleAcheminement": "VEXIN SUR EPTE", - "nomCommune": "VEXIN SUR EPTE" + "codePostal": "51800", + "codeCommune": "51620", + "libelleAcheminement": "VIENNE LA VILLE", + "nomCommune": "VIENNE LA VILLE" }, { - "codePostal": "42580", - "codeCommune": "42311", - "libelleAcheminement": "LA TOUR EN JAREZ", - "nomCommune": "LA TOUR EN JAREZ" + "codePostal": "60310", + "codeCommune": "60499", + "libelleAcheminement": "PLESSIS DE ROYE", + "nomCommune": "PLESSIS DE ROYE" }, { - "codePostal": "55300", - "codeCommune": "55412", - "libelleAcheminement": "RAMBUCOURT", - "nomCommune": "RAMBUCOURT" + "codePostal": "03210", + "codeCommune": "03275", + "libelleAcheminement": "SOUVIGNY", + "nomCommune": "SOUVIGNY" }, { - "codePostal": "32320", - "codeCommune": "32077", - "libelleAcheminement": "CASTELNAU D ANGLES", - "nomCommune": "CASTELNAU D ANGLES" + "codePostal": "60210", + "codeCommune": "60297", + "libelleAcheminement": "LE HAMEL", + "nomCommune": "LE HAMEL" }, { - "codePostal": "27260", - "codeCommune": "27218", - "libelleAcheminement": "EPAIGNES", - "nomCommune": "EPAIGNES" + "codePostal": "50850", + "codeCommune": "50200", + "libelleAcheminement": "GER", + "nomCommune": "GER" }, { - "codePostal": "42830", - "codeCommune": "42314", - "libelleAcheminement": "LA TUILIERE", - "nomCommune": "LA TUILIERE" + "codePostal": "51500", + "codeCommune": "51623", + "libelleAcheminement": "VILLE EN SELVE", + "nomCommune": "VILLE EN SELVE" }, { - "codePostal": "55220", - "codeCommune": "55420", - "libelleAcheminement": "RECOURT LE CREUX", - "nomCommune": "RECOURT LE CREUX" + "codePostal": "60700", + "codeCommune": "60509", + "libelleAcheminement": "PONT STE MAXENCE", + "nomCommune": "PONT STE MAXENCE" }, { - "codePostal": "32290", - "codeCommune": "32081", - "libelleAcheminement": "CASTELNAVET", - "nomCommune": "CASTELNAVET" + "codePostal": "03350", + "codeCommune": "03282", + "libelleAcheminement": "THENEUILLE", + "nomCommune": "THENEUILLE" }, { - "codePostal": "27730", - "codeCommune": "27220", - "libelleAcheminement": "EPIEDS", - "nomCommune": "EPIEDS" + "codePostal": "60120", + "codeCommune": "60299", + "libelleAcheminement": "HARDIVILLERS", + "nomCommune": "HARDIVILLERS" }, { - "codePostal": "42210", - "codeCommune": "42315", - "libelleAcheminement": "UNIAS", - "nomCommune": "UNIAS" + "codePostal": "50300", + "codeCommune": "50205", + "libelleAcheminement": "LA GODEFROY", + "nomCommune": "LA GODEFROY" }, { - "codePostal": "55800", - "codeCommune": "55424", - "libelleAcheminement": "REMENNECOURT", - "nomCommune": "REMENNECOURT" + "codePostal": "51120", + "codeCommune": "51626", + "libelleAcheminement": "LA VILLENEUVE LES CHARLEVILLE", + "nomCommune": "LA VILLENEUVE LES CHARLEVILLE" }, { - "codePostal": "32400", - "codeCommune": "32093", - "libelleAcheminement": "CAUMONT", - "nomCommune": "CAUMONT" + "codePostal": "60850", + "codeCommune": "60516", + "libelleAcheminement": "PUISEUX EN BRAY", + "nomCommune": "PUISEUX EN BRAY" }, { - "codePostal": "27350", - "codeCommune": "27227", - "libelleAcheminement": "ETREVILLE", - "nomCommune": "ETREVILLE" + "codePostal": "03220", + "codeCommune": "03291", + "libelleAcheminement": "TREZELLES", + "nomCommune": "TREZELLES" }, { - "codePostal": "42320", - "codeCommune": "42320", - "libelleAcheminement": "VALFLEURY", - "nomCommune": "VALFLEURY" + "codePostal": "60210", + "codeCommune": "60303", + "libelleAcheminement": "HAUTBOS", + "nomCommune": "HAUTBOS" }, { - "codePostal": "55800", - "codeCommune": "55427", - "libelleAcheminement": "REVIGNY SUR ORNAIN", - "nomCommune": "REVIGNY SUR ORNAIN" + "codePostal": "50200", + "codeCommune": "50215", + "libelleAcheminement": "GOUVILLE SUR MER", + "nomCommune": "GOUVILLE SUR MER" }, { - "codePostal": "32110", - "codeCommune": "32094", - "libelleAcheminement": "CAUPENNE D ARMAGNAC", - "nomCommune": "CAUPENNE D ARMAGNAC" + "codePostal": "51120", + "codeCommune": "51628", + "libelleAcheminement": "VILLENEUVE ST VISTRE VILLEVOTTE", + "nomCommune": "VILLENEUVE ST VISTRE ET VILLEVOTTE" }, { - "codePostal": "27000", - "codeCommune": "27229", - "libelleAcheminement": "EVREUX", - "nomCommune": "EVREUX" + "codePostal": "60640", + "codeCommune": "60519", + "libelleAcheminement": "QUESMY", + "nomCommune": "QUESMY" }, { - "codePostal": "42410", - "codeCommune": "42327", - "libelleAcheminement": "VERIN", - "nomCommune": "VERIN" + "codePostal": "03240", + "codeCommune": "03292", + "libelleAcheminement": "TRONGET", + "nomCommune": "TRONGET" }, { - "codePostal": "55160", - "codeCommune": "55429", - "libelleAcheminement": "RIAVILLE", - "nomCommune": "RIAVILLE" + "codePostal": "60650", + "codeCommune": "60315", + "libelleAcheminement": "HODENC EN BRAY", + "nomCommune": "HODENC EN BRAY" }, { - "codePostal": "32150", - "codeCommune": "32096", - "libelleAcheminement": "CAZAUBON", - "nomCommune": "CAZAUBON" + "codePostal": "50560", + "codeCommune": "50215", + "libelleAcheminement": "GOUVILLE SUR MER", + "nomCommune": "GOUVILLE SUR MER" }, { - "codePostal": "27150", - "codeCommune": "27232", - "libelleAcheminement": "FARCEAUX", - "nomCommune": "FARCEAUX" + "codePostal": "51220", + "codeCommune": "51633", + "libelleAcheminement": "VILLERS FRANQUEUX", + "nomCommune": "VILLERS FRANQUEUX" }, { - "codePostal": "42780", - "codeCommune": "42334", - "libelleAcheminement": "VIOLAY", - "nomCommune": "VIOLAY" + "codePostal": "60620", + "codeCommune": "60527", + "libelleAcheminement": "REEZ FOSSE MARTIN", + "nomCommune": "REEZ FOSSE MARTIN" }, { - "codePostal": "55290", - "codeCommune": "55430", - "libelleAcheminement": "RIBEAUCOURT", - "nomCommune": "RIBEAUCOURT" + "codePostal": "03150", + "codeCommune": "03298", + "libelleAcheminement": "VARENNES SUR ALLIER", + "nomCommune": "VARENNES SUR ALLIER" }, { - "codePostal": "32500", - "codeCommune": "32101", - "libelleAcheminement": "CERAN", - "nomCommune": "CERAN" + "codePostal": "60710", + "codeCommune": "60318", + "libelleAcheminement": "HOUDANCOURT", + "nomCommune": "HOUDANCOURT" }, { - "codePostal": "27760", - "codeCommune": "27240", - "libelleAcheminement": "LA FERRIERE SUR RISLE", - "nomCommune": "LA FERRIERE SUR RISLE" + "codePostal": "50620", + "codeCommune": "50216", + "libelleAcheminement": "GRAIGNES MESNIL ANGOT", + "nomCommune": "GRAIGNES MESNIL ANGOT" }, { - "codePostal": "42310", - "codeCommune": "42337", - "libelleAcheminement": "VIVANS", - "nomCommune": "VIVANS" + "codePostal": "51120", + "codeCommune": "51645", + "libelleAcheminement": "VINDEY", + "nomCommune": "VINDEY" }, { - "codePostal": "55300", - "codeCommune": "55431", - "libelleAcheminement": "RICHECOURT", - "nomCommune": "RICHECOURT" + "codePostal": "60480", + "codeCommune": "60535", + "libelleAcheminement": "REUIL SUR BRECHE", + "nomCommune": "REUIL SUR BRECHE" }, { - "codePostal": "32430", - "codeCommune": "32106", - "libelleAcheminement": "COLOGNE", - "nomCommune": "COLOGNE" + "codePostal": "03190", + "codeCommune": "03305", + "libelleAcheminement": "VERNEIX", + "nomCommune": "VERNEIX" }, { - "codePostal": "27600", - "codeCommune": "27249", - "libelleAcheminement": "FONTAINE BELLENGER", - "nomCommune": "FONTAINE BELLENGER" + "codePostal": "60390", + "codeCommune": "60319", + "libelleAcheminement": "LA HOUSSOYE", + "nomCommune": "LA HOUSSOYE" }, { - "codePostal": "43000", - "codeCommune": "43002", - "libelleAcheminement": "AIGUILHE", - "nomCommune": "AIGUILHE" + "codePostal": "50690", + "codeCommune": "50230", + "libelleAcheminement": "HARDINVAST", + "nomCommune": "HARDINVAST" }, { - "codePostal": "55140", - "codeCommune": "55433", - "libelleAcheminement": "RIGNY LA SALLE", - "nomCommune": "RIGNY LA SALLE" + "codePostal": "51800", + "codeCommune": "51646", + "libelleAcheminement": "VIRGINY", + "nomCommune": "VIRGINY" }, { - "codePostal": "32160", - "codeCommune": "32109", - "libelleAcheminement": "COULOUME MONDEBAT", - "nomCommune": "COULOUME MONDEBAT" + "codePostal": "60410", + "codeCommune": "60536", + "libelleAcheminement": "RHUIS", + "nomCommune": "RHUIS" }, { - "codePostal": "27230", - "codeCommune": "27252", - "libelleAcheminement": "FONTAINE LA LOUVET", - "nomCommune": "FONTAINE LA LOUVET" + "codePostal": "03310", + "codeCommune": "03314", + "libelleAcheminement": "VILLEBRET", + "nomCommune": "VILLEBRET" }, { - "codePostal": "43380", - "codeCommune": "43009", - "libelleAcheminement": "ARLET", - "nomCommune": "ARLET" + "codePostal": "60240", + "codeCommune": "60327", + "libelleAcheminement": "JOUY SOUS THELLE", + "nomCommune": "JOUY SOUS THELLE" }, { - "codePostal": "55000", - "codeCommune": "55435", - "libelleAcheminement": "ROBERT ESPAGNE", - "nomCommune": "ROBERT ESPAGNE" + "codePostal": "50250", + "codeCommune": "50236", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "32330", - "codeCommune": "32110", - "libelleAcheminement": "COURRENSAN", - "nomCommune": "COURRENSAN" + "codePostal": "51300", + "codeCommune": "51647", + "libelleAcheminement": "VITRY EN PERTHOIS", + "nomCommune": "VITRY EN PERTHOIS" }, { - "codePostal": "27120", - "codeCommune": "27254", - "libelleAcheminement": "FONTAINE SOUS JOUY", - "nomCommune": "FONTAINE SOUS JOUY" + "codePostal": "60870", + "codeCommune": "60539", + "libelleAcheminement": "RIEUX", + "nomCommune": "RIEUX" }, { - "codePostal": "43210", - "codeCommune": "43020", - "libelleAcheminement": "BAS EN BASSET", - "nomCommune": "BAS EN BASSET" + "codePostal": "03370", + "codeCommune": "03317", + "libelleAcheminement": "VIPLAIX", + "nomCommune": "VIPLAIX" }, { - "codePostal": "55260", - "codeCommune": "55442", - "libelleAcheminement": "RAIVAL", - "nomCommune": "RAIVAL" + "codePostal": "60112", + "codeCommune": "60328", + "libelleAcheminement": "JUVIGNIES", + "nomCommune": "JUVIGNIES" }, { - "codePostal": "32230", - "codeCommune": "32111", - "libelleAcheminement": "COURTIES", - "nomCommune": "COURTIES" + "codePostal": "50250", + "codeCommune": "50236", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "27210", - "codeCommune": "27258", - "libelleAcheminement": "FORT MOVILLE", - "nomCommune": "FORT MOVILLE" + "codePostal": "51300", + "codeCommune": "51649", + "libelleAcheminement": "VITRY LE FRANCOIS", + "nomCommune": "VITRY LE FRANCOIS" }, { - "codePostal": "43160", - "codeCommune": "43027", - "libelleAcheminement": "BERBEZIT", - "nomCommune": "BERBEZIT" + "codePostal": "60140", + "codeCommune": "60547", + "libelleAcheminement": "ROSOY", + "nomCommune": "ROSOY" }, { - "codePostal": "55000", - "codeCommune": "55446", - "libelleAcheminement": "RUMONT", - "nomCommune": "RUMONT" + "codePostal": "03140", + "codeCommune": "03319", + "libelleAcheminement": "VOUSSAC", + "nomCommune": "VOUSSAC" }, { - "codePostal": "32810", - "codeCommune": "32117", - "libelleAcheminement": "DURAN", - "nomCommune": "DURAN" + "codePostal": "60480", + "codeCommune": "60336", + "libelleAcheminement": "LACHAUSSEE DU BOIS D ECU", + "nomCommune": "LACHAUSSEE DU BOIS D ECU" }, { - "codePostal": "27210", - "codeCommune": "27260", - "libelleAcheminement": "FOULBEC", - "nomCommune": "FOULBEC" + "codePostal": "50250", + "codeCommune": "50236", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "43700", - "codeCommune": "43041", - "libelleAcheminement": "BRIVES CHARENSAC", - "nomCommune": "BRIVES CHARENSAC" + "codePostal": "51340", + "codeCommune": "51654", + "libelleAcheminement": "VOUILLERS", + "nomCommune": "VOUILLERS" }, { - "codePostal": "55400", - "codeCommune": "55458", - "libelleAcheminement": "ST JEAN LES BUZY", - "nomCommune": "ST JEAN LES BUZY" + "codePostal": "60660", + "codeCommune": "60551", + "libelleAcheminement": "ROUSSELOY", + "nomCommune": "ROUSSELOY" }, { - "codePostal": "32430", - "codeCommune": "32120", - "libelleAcheminement": "ENCAUSSE", - "nomCommune": "ENCAUSSE" + "codePostal": "04170", + "codeCommune": "04007", + "libelleAcheminement": "ANGLES", + "nomCommune": "ANGLES" }, { - "codePostal": "27220", - "codeCommune": "27271", - "libelleAcheminement": "FRESNEY", - "nomCommune": "FRESNEY" + "codePostal": "60310", + "codeCommune": "60340", + "libelleAcheminement": "LAGNY", + "nomCommune": "LAGNY" }, { - "codePostal": "43150", - "codeCommune": "43047", - "libelleAcheminement": "CHADRON", - "nomCommune": "CHADRON" + "codePostal": "50340", + "codeCommune": "50238", + "libelleAcheminement": "HEAUVILLE", + "nomCommune": "HEAUVILLE" }, { - "codePostal": "55210", - "codeCommune": "55462", - "libelleAcheminement": "ST MAURICE SOUS LES COTES", - "nomCommune": "ST MAURICE SOUS LES COTES" + "codePostal": "51390", + "codeCommune": "51657", + "libelleAcheminement": "VRIGNY", + "nomCommune": "VRIGNY" }, { - "codePostal": "32250", - "codeCommune": "32133", - "libelleAcheminement": "FOURCES", - "nomCommune": "FOURCES" + "codePostal": "60190", + "codeCommune": "60563", + "libelleAcheminement": "SACY LE PETIT", + "nomCommune": "SACY LE PETIT" }, { - "codePostal": "27600", - "codeCommune": "27275", - "libelleAcheminement": "GAILLON", - "nomCommune": "GAILLON" + "codePostal": "04200", + "codeCommune": "04016", + "libelleAcheminement": "AUTHON", + "nomCommune": "AUTHON" }, { - "codePostal": "43430", - "codeCommune": "43053", - "libelleAcheminement": "CHAMPCLAUSE", - "nomCommune": "CHAMPCLAUSE" + "codePostal": "60220", + "codeCommune": "60347", + "libelleAcheminement": "LANNOY CUILLERE", + "nomCommune": "LANNOY CUILLERE" }, { - "codePostal": "55230", - "codeCommune": "55464", - "libelleAcheminement": "ST PIERREVILLERS", - "nomCommune": "ST PIERREVILLERS" + "codePostal": "50510", + "codeCommune": "50252", + "libelleAcheminement": "HUDIMESNIL", + "nomCommune": "HUDIMESNIL" }, { - "codePostal": "32220", - "codeCommune": "32138", - "libelleAcheminement": "GARRAVET", - "nomCommune": "GARRAVET" + "codePostal": "52230", + "codeCommune": "52004", + "libelleAcheminement": "AINGOULAINCOURT", + "nomCommune": "AINGOULAINCOURT" }, { - "codePostal": "27780", - "codeCommune": "27278", - "libelleAcheminement": "GARENNES SUR EURE", - "nomCommune": "GARENNES SUR EURE" + "codePostal": "60170", + "codeCommune": "60569", + "libelleAcheminement": "ST CREPIN AUX BOIS", + "nomCommune": "ST CREPIN AUX BOIS" }, { - "codePostal": "43170", - "codeCommune": "43054", - "libelleAcheminement": "CHANALEILLES", - "nomCommune": "CHANALEILLES" + "codePostal": "04250", + "codeCommune": "04023", + "libelleAcheminement": "BAYONS", + "nomCommune": "BAYONS" }, { - "codePostal": "55160", - "codeCommune": "55465", - "libelleAcheminement": "ST REMY LA CALONNE", - "nomCommune": "ST REMY LA CALONNE" + "codePostal": "60490", + "codeCommune": "60351", + "libelleAcheminement": "LATAULE", + "nomCommune": "LATAULE" }, { - "codePostal": "32230", - "codeCommune": "32144", - "libelleAcheminement": "GAZAX ET BACCARISSE", - "nomCommune": "GAZAX ET BACCARISSE" + "codePostal": "50540", + "codeCommune": "50256", + "libelleAcheminement": "ISIGNY LE BUAT", + "nomCommune": "ISIGNY LE BUAT" }, { - "codePostal": "27930", - "codeCommune": "27280", - "libelleAcheminement": "GAUCIEL", - "nomCommune": "GAUCIEL" + "codePostal": "52130", + "codeCommune": "52006", + "libelleAcheminement": "ALLICHAMPS", + "nomCommune": "ALLICHAMPS" }, { - "codePostal": "43230", - "codeCommune": "43063", - "libelleAcheminement": "CHASSAGNES", - "nomCommune": "CHASSAGNES" + "codePostal": "60130", + "codeCommune": "60581", + "libelleAcheminement": "ST JUST EN CHAUSSEE", + "nomCommune": "ST JUST EN CHAUSSEE" }, { - "codePostal": "55100", - "codeCommune": "55468", - "libelleAcheminement": "SAMOGNEUX", - "nomCommune": "SAMOGNEUX" + "codePostal": "04270", + "codeCommune": "04028", + "libelleAcheminement": "BEYNES", + "nomCommune": "BEYNES" }, { - "codePostal": "32720", - "codeCommune": "32145", - "libelleAcheminement": "GEE RIVIERE", - "nomCommune": "GEE RIVIERE" + "codePostal": "60130", + "codeCommune": "60364", + "libelleAcheminement": "LIEUVILLERS", + "nomCommune": "LIEUVILLERS" }, { - "codePostal": "27140", - "codeCommune": "27284", - "libelleAcheminement": "GISORS", - "nomCommune": "GISORS" + "codePostal": "50310", + "codeCommune": "50258", + "libelleAcheminement": "JOGANVILLE", + "nomCommune": "JOGANVILLE" }, { - "codePostal": "43300", - "codeCommune": "43068", - "libelleAcheminement": "CHAZELLES", - "nomCommune": "CHAZELLES" + "codePostal": "52110", + "codeCommune": "52007", + "libelleAcheminement": "AMBONVILLE", + "nomCommune": "AMBONVILLE" }, { - "codePostal": "55110", - "codeCommune": "55471", - "libelleAcheminement": "SAULMORY VILLEFRANCHE", - "nomCommune": "SAULMORY VILLEFRANCHE" + "codePostal": "60410", + "codeCommune": "60600", + "libelleAcheminement": "ST VAAST DE LONGMONT", + "nomCommune": "ST VAAST DE LONGMONT" }, { - "codePostal": "32340", - "codeCommune": "32146", - "libelleAcheminement": "GIMBREDE", - "nomCommune": "GIMBREDE" + "codePostal": "04700", + "codeCommune": "04034", + "libelleAcheminement": "LA BRILLANNE", + "nomCommune": "LA BRILLANNE" }, { - "codePostal": "27170", - "codeCommune": "27290", - "libelleAcheminement": "GOUPIL OTHON", - "nomCommune": "GOUPIL OTHON" + "codePostal": "60530", + "codeCommune": "60398", + "libelleAcheminement": "LE MESNIL EN THELLE", + "nomCommune": "LE MESNIL EN THELLE" }, { - "codePostal": "43380", - "codeCommune": "43070", - "libelleAcheminement": "CHILHAC", - "nomCommune": "CHILHAC" + "codePostal": "50800", + "codeCommune": "50262", + "libelleAcheminement": "LA LANDE D AIROU", + "nomCommune": "LA LANDE D AIROU" }, { - "codePostal": "55160", - "codeCommune": "55473", - "libelleAcheminement": "SAULX LES CHAMPLON", - "nomCommune": "SAULX LES CHAMPLON" + "codePostal": "52210", + "codeCommune": "52017", + "libelleAcheminement": "ARC EN BARROIS", + "nomCommune": "ARC EN BARROIS" }, { - "codePostal": "32200", - "codeCommune": "32147", - "libelleAcheminement": "GIMONT", - "nomCommune": "GIMONT" + "codePostal": "60400", + "codeCommune": "60603", + "libelleAcheminement": "SALENCY", + "nomCommune": "SALENCY" }, { - "codePostal": "27380", - "codeCommune": "27294", - "libelleAcheminement": "VAL D ORGER", - "nomCommune": "VAL D ORGER" + "codePostal": "04120", + "codeCommune": "04039", + "libelleAcheminement": "CASTELLANE", + "nomCommune": "CASTELLANE" }, { - "codePostal": "43230", - "codeCommune": "43075", - "libelleAcheminement": "COLLAT", - "nomCommune": "COLLAT" + "codePostal": "60220", + "codeCommune": "60407", + "libelleAcheminement": "MONCEAUX L ABBAYE", + "nomCommune": "MONCEAUX L ABBAYE" }, { - "codePostal": "55140", - "codeCommune": "55474", - "libelleAcheminement": "SAUVIGNY", - "nomCommune": "SAUVIGNY" + "codePostal": "50670", + "codeCommune": "50271", + "libelleAcheminement": "LINGEARD", + "nomCommune": "LINGEARD" }, { - "codePostal": "32380", - "codeCommune": "32158", - "libelleAcheminement": "L ISLE BOUZON", - "nomCommune": "L ISLE BOUZON" + "codePostal": "52300", + "codeCommune": "52029", + "libelleAcheminement": "AUTIGNY LE GRAND", + "nomCommune": "AUTIGNY LE GRAND" }, { - "codePostal": "27370", - "codeCommune": "27302", - "libelleAcheminement": "LE BOSC DU THEIL", - "nomCommune": "LE BOSC DU THEIL" + "codePostal": "60240", + "codeCommune": "60613", + "libelleAcheminement": "SENOTS", + "nomCommune": "SENOTS" }, { - "codePostal": "43490", - "codeCommune": "43077", - "libelleAcheminement": "COSTAROS", - "nomCommune": "COSTAROS" + "codePostal": "04320", + "codeCommune": "04043", + "libelleAcheminement": "VAL DE CHALVAGNE", + "nomCommune": "VAL DE CHALVAGNE" }, { - "codePostal": "55000", - "codeCommune": "55476", - "libelleAcheminement": "SAVONNIERES DEVANT BAR", - "nomCommune": "SAVONNIERES DEVANT BAR" + "codePostal": "60240", + "codeCommune": "60411", + "libelleAcheminement": "MONNEVILLE", + "nomCommune": "MONNEVILLE" }, { - "codePostal": "32230", - "codeCommune": "32175", - "libelleAcheminement": "LADEVEZE VILLE", - "nomCommune": "LADEVEZE VILLE" + "codePostal": "50660", + "codeCommune": "50272", + "libelleAcheminement": "LINGREVILLE", + "nomCommune": "LINGREVILLE" }, { - "codePostal": "27350", - "codeCommune": "27316", - "libelleAcheminement": "HAUVILLE", - "nomCommune": "HAUVILLE" + "codePostal": "52120", + "codeCommune": "52031", + "libelleAcheminement": "AUTREVILLE SUR LA RENNE", + "nomCommune": "AUTREVILLE SUR LA RENNE" }, { - "codePostal": "43170", - "codeCommune": "43083", - "libelleAcheminement": "CUBELLES", - "nomCommune": "CUBELLES" + "codePostal": "60210", + "codeCommune": "60622", + "libelleAcheminement": "SOMMEREUX", + "nomCommune": "SOMMEREUX" }, { - "codePostal": "55170", - "codeCommune": "55477", - "libelleAcheminement": "SAVONNIERES EN PERTHOIS", - "nomCommune": "SAVONNIERES EN PERTHOIS" + "codePostal": "04600", + "codeCommune": "04049", + "libelleAcheminement": "CHATEAU ARNOUX ST AUBAN", + "nomCommune": "CHATEAU ARNOUX ST AUBAN" }, { - "codePostal": "32700", - "codeCommune": "32176", - "libelleAcheminement": "LAGARDE FIMARCON", - "nomCommune": "LAGARDE" + "codePostal": "60240", + "codeCommune": "60412", + "libelleAcheminement": "MONTAGNY EN VEXIN", + "nomCommune": "MONTAGNY EN VEXIN" }, { - "codePostal": "27800", - "codeCommune": "27318", - "libelleAcheminement": "LA HAYE DE CALLEVILLE", - "nomCommune": "LA HAYE DE CALLEVILLE" + "codePostal": "50250", + "codeCommune": "50273", + "libelleAcheminement": "MONTSENELLE", + "nomCommune": "MONTSENELLE" }, { - "codePostal": "43450", - "codeCommune": "43088", - "libelleAcheminement": "ESPALEM", - "nomCommune": "ESPALEM" + "codePostal": "52330", + "codeCommune": "52031", + "libelleAcheminement": "AUTREVILLE SUR LA RENNE", + "nomCommune": "AUTREVILLE SUR LA RENNE" }, { - "codePostal": "55230", - "codeCommune": "55481", - "libelleAcheminement": "SENON", - "nomCommune": "SENON" + "codePostal": "60210", + "codeCommune": "60633", + "libelleAcheminement": "THIEULOY ST ANTOINE", + "nomCommune": "THIEULOY ST ANTOINE" }, { - "codePostal": "32500", - "codeCommune": "32188", - "libelleAcheminement": "LAMOTHE GOAS", - "nomCommune": "LAMOTHE GOAS" + "codePostal": "04200", + "codeCommune": "04067", + "libelleAcheminement": "CUREL", + "nomCommune": "CUREL" }, { - "codePostal": "27630", - "codeCommune": "27331", - "libelleAcheminement": "HEUBECOURT HARICOURT", - "nomCommune": "HEUBECOURT HARICOURT" + "codePostal": "60300", + "codeCommune": "60421", + "libelleAcheminement": "MONT L EVEQUE", + "nomCommune": "MONT L EVEQUE" }, { - "codePostal": "43100", - "codeCommune": "43105", - "libelleAcheminement": "JAVAUGUES", - "nomCommune": "JAVAUGUES" + "codePostal": "50250", + "codeCommune": "50273", + "libelleAcheminement": "MONTSENELLE", + "nomCommune": "MONTSENELLE" }, { - "codePostal": "55110", - "codeCommune": "55490", - "libelleAcheminement": "SIVRY SUR MEUSE", - "nomCommune": "SIVRY SUR MEUSE" + "codePostal": "52400", + "codeCommune": "52060", + "libelleAcheminement": "BOURBONNE LES BAINS", + "nomCommune": "BOURBONNE LES BAINS" }, { - "codePostal": "32480", - "codeCommune": "32195", - "libelleAcheminement": "LARROQUE ENGALIN", - "nomCommune": "LARROQUE ENGALIN" + "codePostal": "60510", + "codeCommune": "60663", + "libelleAcheminement": "VELENNES", + "nomCommune": "VELENNES" }, { - "codePostal": "27950", - "codeCommune": "27336", - "libelleAcheminement": "LA HEUNIERE", - "nomCommune": "LA HEUNIERE" + "codePostal": "04000", + "codeCommune": "04070", + "libelleAcheminement": "DIGNE LES BAINS", + "nomCommune": "DIGNE LES BAINS" }, { - "codePostal": "43500", - "codeCommune": "43108", - "libelleAcheminement": "JULLIANGES", - "nomCommune": "JULLIANGES" + "codePostal": "60190", + "codeCommune": "60424", + "libelleAcheminement": "MONTMARTIN", + "nomCommune": "MONTMARTIN" }, { - "codePostal": "55220", - "codeCommune": "55498", - "libelleAcheminement": "SOUILLY", - "nomCommune": "SOUILLY" + "codePostal": "50250", + "codeCommune": "50273", + "libelleAcheminement": "MONTSENELLE", + "nomCommune": "MONTSENELLE" }, { - "codePostal": "32550", - "codeCommune": "32200", - "libelleAcheminement": "LASSERAN", - "nomCommune": "LASSERAN" + "codePostal": "52150", + "codeCommune": "52064", + "libelleAcheminement": "BOURMONT ENTRE MEUSE ET MOUZON", + "nomCommune": "BOURMONT ENTRE MEUSE ET MOUZON" }, { - "codePostal": "27460", - "codeCommune": "27348", - "libelleAcheminement": "IGOVILLE", - "nomCommune": "IGOVILLE" + "codePostal": "60140", + "codeCommune": "60669", + "libelleAcheminement": "VERDERONNE", + "nomCommune": "VERDERONNE" }, { - "codePostal": "43340", - "codeCommune": "43111", - "libelleAcheminement": "LANDOS", - "nomCommune": "LANDOS" + "codePostal": "04400", + "codeCommune": "04073", + "libelleAcheminement": "ENCHASTRAYES", + "nomCommune": "ENCHASTRAYES" }, { - "codePostal": "55230", - "codeCommune": "55500", - "libelleAcheminement": "SPINCOURT", - "nomCommune": "SPINCOURT" + "codePostal": "60480", + "codeCommune": "60425", + "libelleAcheminement": "MONTREUIL SUR BRECHE", + "nomCommune": "MONTREUIL SUR BRECHE" }, { - "codePostal": "32360", - "codeCommune": "32204", - "libelleAcheminement": "LAVARDENS", - "nomCommune": "LAVARDENS" + "codePostal": "50600", + "codeCommune": "50274", + "libelleAcheminement": "LES LOGES MARCHIS", + "nomCommune": "LES LOGES MARCHIS" }, { - "codePostal": "27770", - "codeCommune": "27350", - "libelleAcheminement": "ILLIERS L EVEQUE", - "nomCommune": "ILLIERS L EVEQUE" + "codePostal": "52200", + "codeCommune": "52070", + "libelleAcheminement": "BRENNES", + "nomCommune": "BRENNES" }, { - "codePostal": "43340", - "codeCommune": "43111", - "libelleAcheminement": "LANDOS", - "nomCommune": "LANDOS" + "codePostal": "60360", + "codeCommune": "60673", + "libelleAcheminement": "VIEFVILLERS", + "nomCommune": "VIEFVILLERS" }, { - "codePostal": "55500", - "codeCommune": "55501", - "libelleAcheminement": "STAINVILLE", - "nomCommune": "STAINVILLE" + "codePostal": "04700", + "codeCommune": "04077", + "libelleAcheminement": "ENTREVENNES", + "nomCommune": "ENTREVENNES" }, { - "codePostal": "32700", - "codeCommune": "32208", - "libelleAcheminement": "LECTOURE", - "nomCommune": "LECTOURE" + "codePostal": "60127", + "codeCommune": "60430", + "libelleAcheminement": "MORIENVAL", + "nomCommune": "MORIENVAL" }, { - "codePostal": "27930", - "codeCommune": "27353", - "libelleAcheminement": "IRREVILLE", - "nomCommune": "IRREVILLE" + "codePostal": "50370", + "codeCommune": "50275", + "libelleAcheminement": "LES LOGES SUR BRECEY", + "nomCommune": "LES LOGES SUR BRECEY" }, { - "codePostal": "43260", - "codeCommune": "43113", - "libelleAcheminement": "LANTRIAC", - "nomCommune": "LANTRIAC" + "codePostal": "52700", + "codeCommune": "52084", + "libelleAcheminement": "BUSSON", + "nomCommune": "BUSSON" }, { - "codePostal": "55130", - "codeCommune": "55516", - "libelleAcheminement": "TREVERAY", - "nomCommune": "TREVERAY" + "codePostal": "60350", + "codeCommune": "60674", + "libelleAcheminement": "VIEUX MOULIN", + "nomCommune": "VIEUX MOULIN" }, { - "codePostal": "32400", - "codeCommune": "32209", - "libelleAcheminement": "LELIN LAPUJOLLE", - "nomCommune": "LELIN LAPUJOLLE" + "codePostal": "04800", + "codeCommune": "04081", + "libelleAcheminement": "ESPARRON DE VERDON", + "nomCommune": "ESPARRON DE VERDON" }, { - "codePostal": "27250", - "codeCommune": "27359", - "libelleAcheminement": "JUIGNETTES", - "nomCommune": "JUIGNETTES" + "codePostal": "60190", + "codeCommune": "60441", + "libelleAcheminement": "MOYVILLERS", + "nomCommune": "MOYVILLERS" }, { - "codePostal": "43410", - "codeCommune": "43120", - "libelleAcheminement": "LEMPDES SUR ALLAGNON", - "nomCommune": "LEMPDES SUR ALLAGNON" + "codePostal": "50680", + "codeCommune": "50283", + "libelleAcheminement": "LA LUZERNE", + "nomCommune": "LA LUZERNE" }, { - "codePostal": "55190", - "codeCommune": "55520", - "libelleAcheminement": "TROUSSEY", - "nomCommune": "TROUSSEY" + "codePostal": "52600", + "codeCommune": "52090", + "libelleAcheminement": "CELSOY", + "nomCommune": "CELSOY" }, { - "codePostal": "32480", - "codeCommune": "32212", - "libelleAcheminement": "LIGARDES", - "nomCommune": "LIGARDES" + "codePostal": "60650", + "codeCommune": "60681", + "libelleAcheminement": "VILLERS ST BARTHELEMY", + "nomCommune": "VILLERS ST BARTHELEMY" }, { - "codePostal": "27220", - "codeCommune": "27360", - "libelleAcheminement": "JUMELLES", - "nomCommune": "JUMELLES" + "codePostal": "04250", + "codeCommune": "04085", + "libelleAcheminement": "FAUCON DU CAIRE", + "nomCommune": "FAUCON DU CAIRE" }, { - "codePostal": "43410", - "codeCommune": "43121", - "libelleAcheminement": "LEOTOING", - "nomCommune": "LEOTOING" + "codePostal": "60440", + "codeCommune": "60446", + "libelleAcheminement": "NANTEUIL LE HAUDOUIN", + "nomCommune": "NANTEUIL LE HAUDOUIN" }, { - "codePostal": "55220", - "codeCommune": "55525", - "libelleAcheminement": "VADELAINCOURT", - "nomCommune": "VADELAINCOURT" + "codePostal": "50500", + "codeCommune": "50298", + "libelleAcheminement": "MEAUTIS", + "nomCommune": "MEAUTIS" }, { - "codePostal": "32380", - "codeCommune": "32223", - "libelleAcheminement": "MAGNAS", - "nomCommune": "MAGNAS" + "codePostal": "52120", + "codeCommune": "52114", + "libelleAcheminement": "CHATEAUVILLAIN", + "nomCommune": "CHATEAUVILLAIN" }, { - "codePostal": "27480", - "codeCommune": "27369", - "libelleAcheminement": "LILLY", - "nomCommune": "LILLY" + "codePostal": "60870", + "codeCommune": "60684", + "libelleAcheminement": "VILLERS ST PAUL", + "nomCommune": "VILLERS ST PAUL" }, { - "codePostal": "43350", - "codeCommune": "43122", - "libelleAcheminement": "LISSAC", - "nomCommune": "LISSAC" + "codePostal": "04400", + "codeCommune": "04086", + "libelleAcheminement": "FAUCON DE BARCELONNETTE", + "nomCommune": "FAUCON DE BARCELONNETTE" }, { - "codePostal": "55300", - "codeCommune": "55528", - "libelleAcheminement": "VARNEVILLE", - "nomCommune": "VARNEVILLE" + "codePostal": "60510", + "codeCommune": "60461", + "libelleAcheminement": "NIVILLERS", + "nomCommune": "NIVILLERS" }, { - "codePostal": "32170", - "codeCommune": "32226", - "libelleAcheminement": "MANAS BASTANOUS", - "nomCommune": "MANAS BASTANOUS" + "codePostal": "50580", + "codeCommune": "50299", + "libelleAcheminement": "LE MESNIL", + "nomCommune": "LE MESNIL" }, { - "codePostal": "27440", - "codeCommune": "27370", - "libelleAcheminement": "LISORS", - "nomCommune": "LISORS" + "codePostal": "52600", + "codeCommune": "52119", + "libelleAcheminement": "CHAUDENAY", + "nomCommune": "CHAUDENAY" }, { - "codePostal": "43160", - "codeCommune": "43128", - "libelleAcheminement": "MALVIERES", - "nomCommune": "MALVIERES" + "codePostal": "60640", + "codeCommune": "60693", + "libelleAcheminement": "VILLESELVE", + "nomCommune": "VILLESELVE" }, { - "codePostal": "55300", - "codeCommune": "55530", - "libelleAcheminement": "VALBOIS", - "nomCommune": "VALBOIS" + "codePostal": "04300", + "codeCommune": "04088", + "libelleAcheminement": "FORCALQUIER", + "nomCommune": "FORCALQUIER" }, { - "codePostal": "32190", - "codeCommune": "32231", - "libelleAcheminement": "MARAMBAT", - "nomCommune": "MARAMBAT" + "codePostal": "60180", + "codeCommune": "60463", + "libelleAcheminement": "NOGENT SUR OISE", + "nomCommune": "NOGENT SUR OISE" }, { - "codePostal": "27320", - "codeCommune": "27378", - "libelleAcheminement": "LA MADELEINE DE NONANCOURT", - "nomCommune": "LA MADELEINE DE NONANCOURT" + "codePostal": "50570", + "codeCommune": "50310", + "libelleAcheminement": "LE MESNIL EURY", + "nomCommune": "LE MESNIL EURY" }, { - "codePostal": "43190", - "codeCommune": "43129", - "libelleAcheminement": "LE MAS DE TENCE", - "nomCommune": "LE MAS DE TENCE" + "codePostal": "52140", + "codeCommune": "52120", + "libelleAcheminement": "CHAUFFOURT", + "nomCommune": "CHAUFFOURT" }, { - "codePostal": "55300", - "codeCommune": "55530", - "libelleAcheminement": "VALBOIS", - "nomCommune": "VALBOIS" + "codePostal": "61100", + "codeCommune": "61007", + "libelleAcheminement": "ATHIS VAL DE ROUVRE", + "nomCommune": "ATHIS VAL DE ROUVRE" }, { - "codePostal": "32270", - "codeCommune": "32237", - "libelleAcheminement": "MARSAN", - "nomCommune": "MARSAN" + "codePostal": "04240", + "codeCommune": "04090", + "libelleAcheminement": "LE FUGERET", + "nomCommune": "LE FUGERET" }, { - "codePostal": "27150", - "codeCommune": "27379", - "libelleAcheminement": "MAINNEVILLE", - "nomCommune": "MAINNEVILLE" + "codePostal": "60730", + "codeCommune": "60469", + "libelleAcheminement": "NOVILLERS", + "nomCommune": "NOVILLERS" }, { - "codePostal": "43520", - "codeCommune": "43130", - "libelleAcheminement": "MAZET ST VOY", - "nomCommune": "MAZET ST VOY" + "codePostal": "50450", + "codeCommune": "50311", + "libelleAcheminement": "LE MESNIL GARNIER", + "nomCommune": "LE MESNIL GARNIER" }, { - "codePostal": "55250", - "codeCommune": "55532", - "libelleAcheminement": "VAUBECOURT", - "nomCommune": "VAUBECOURT" + "codePostal": "52000", + "codeCommune": "52121", + "libelleAcheminement": "CHAUMONT", + "nomCommune": "CHAUMONT" }, { - "codePostal": "32170", - "codeCommune": "32238", - "libelleAcheminement": "MARSEILLAN", - "nomCommune": "MARSEILLAN" + "codePostal": "61100", + "codeCommune": "61011", + "libelleAcheminement": "AUBUSSON", + "nomCommune": "AUBUSSON" }, { - "codePostal": "27370", - "codeCommune": "27382", - "libelleAcheminement": "MANDEVILLE", - "nomCommune": "MANDEVILLE" + "codePostal": "04310", + "codeCommune": "04091", + "libelleAcheminement": "GANAGOBIE", + "nomCommune": "GANAGOBIE" }, { - "codePostal": "43100", - "codeCommune": "43133", - "libelleAcheminement": "MERCOEUR", - "nomCommune": "MERCOEUR" + "codePostal": "60310", + "codeCommune": "60474", + "libelleAcheminement": "OGNOLLES", + "nomCommune": "OGNOLLES" }, { - "codePostal": "55400", - "codeCommune": "55537", - "libelleAcheminement": "DOUAUMONT VAUX", - "nomCommune": "DOUAUMONT VAUX" + "codePostal": "50620", + "codeCommune": "50324", + "libelleAcheminement": "LE MESNIL VENERON", + "nomCommune": "LE MESNIL VENERON" }, { - "codePostal": "32240", - "codeCommune": "32246", - "libelleAcheminement": "MAUPAS", - "nomCommune": "MAUPAS" + "codePostal": "52150", + "codeCommune": "52122", + "libelleAcheminement": "CHAUMONT LA VILLE", + "nomCommune": "CHAUMONT LA VILLE" }, { - "codePostal": "27810", - "codeCommune": "27391", - "libelleAcheminement": "MARCILLY SUR EURE", - "nomCommune": "MARCILLY SUR EURE" + "codePostal": "61160", + "codeCommune": "61023", + "libelleAcheminement": "BAILLEUL", + "nomCommune": "BAILLEUL" }, { - "codePostal": "43270", - "codeCommune": "43138", - "libelleAcheminement": "MONLET", - "nomCommune": "MONLET" + "codePostal": "04250", + "codeCommune": "04093", + "libelleAcheminement": "GIGORS", + "nomCommune": "GIGORS" }, { - "codePostal": "55600", - "codeCommune": "55546", - "libelleAcheminement": "VERNEUIL GRAND", - "nomCommune": "VERNEUIL GRAND" + "codePostal": "60510", + "codeCommune": "60480", + "libelleAcheminement": "OROER", + "nomCommune": "OROER" }, { - "codePostal": "32390", - "codeCommune": "32255", - "libelleAcheminement": "MIRAMONT LATOUR", - "nomCommune": "MIRAMONT LATOUR" + "codePostal": "50270", + "codeCommune": "50332", + "libelleAcheminement": "LES MOITIERS D ALLONNE", + "nomCommune": "LES MOITIERS D ALLONNE" }, { - "codePostal": "27400", - "codeCommune": "27403", - "libelleAcheminement": "LE MESNIL JOURDAIN", - "nomCommune": "LE MESNIL JOURDAIN" + "codePostal": "52000", + "codeCommune": "52125", + "libelleAcheminement": "CHAMARANDES CHOIGNES", + "nomCommune": "CHAMARANDES CHOIGNES" }, { - "codePostal": "43300", - "codeCommune": "43149", - "libelleAcheminement": "PEBRAC", - "nomCommune": "PEBRAC" + "codePostal": "61170", + "codeCommune": "61026", + "libelleAcheminement": "BARVILLE", + "nomCommune": "BARVILLE" }, { - "codePostal": "55600", - "codeCommune": "55547", - "libelleAcheminement": "VERNEUIL PETIT", - "nomCommune": "VERNEUIL PETIT" + "codePostal": "04150", + "codeCommune": "04095", + "libelleAcheminement": "L HOSPITALET", + "nomCommune": "L HOSPITALET" }, { - "codePostal": "32300", - "codeCommune": "32263", - "libelleAcheminement": "MONCASSIN", - "nomCommune": "MONCASSIN" + "codePostal": "60480", + "codeCommune": "60485", + "libelleAcheminement": "OURSEL MAISON", + "nomCommune": "OURSEL MAISON" }, { - "codePostal": "27650", - "codeCommune": "27406", - "libelleAcheminement": "MESNIL SUR L ESTREE", - "nomCommune": "MESNIL SUR L ESTREE" + "codePostal": "50310", + "codeCommune": "50341", + "libelleAcheminement": "MONTEBOURG", + "nomCommune": "MONTEBOURG" }, { - "codePostal": "43420", - "codeCommune": "43154", - "libelleAcheminement": "PRADELLES", - "nomCommune": "PRADELLES" + "codePostal": "52190", + "codeCommune": "52126", + "libelleAcheminement": "CHOILLEY DARDENAY", + "nomCommune": "CHOILLEY DARDENAY" }, { - "codePostal": "55210", - "codeCommune": "55551", - "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", - "nomCommune": "VIGNEULLES LES HATTONCHATEL" + "codePostal": "61270", + "codeCommune": "61032", + "libelleAcheminement": "BEAUFAI", + "nomCommune": "BEAUFAI" }, { - "codePostal": "32240", - "codeCommune": "32271", - "libelleAcheminement": "MONGUILHEM", - "nomCommune": "MONGUILHEM" + "codePostal": "04420", + "codeCommune": "04097", + "libelleAcheminement": "LA JAVIE", + "nomCommune": "LA JAVIE" }, { - "codePostal": "27340", - "codeCommune": "27412", - "libelleAcheminement": "TERRES DE BORD", - "nomCommune": "TERRES DE BORD" + "codePostal": "60120", + "codeCommune": "60486", + "libelleAcheminement": "PAILLART", + "nomCommune": "PAILLART" }, { - "codePostal": "43300", - "codeCommune": "43155", - "libelleAcheminement": "PRADES", - "nomCommune": "PRADES" + "codePostal": "50210", + "codeCommune": "50350", + "libelleAcheminement": "MONTPINCHON", + "nomCommune": "MONTPINCHON" }, { - "codePostal": "55210", - "codeCommune": "55551", - "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", - "nomCommune": "VIGNEULLES LES HATTONCHATEL" + "codePostal": "52110", + "codeCommune": "52129", + "libelleAcheminement": "CIREY SUR BLAISE", + "nomCommune": "CIREY SUR BLAISE" }, { - "codePostal": "32230", - "codeCommune": "32273", - "libelleAcheminement": "MONLEZUN", - "nomCommune": "MONLEZUN" + "codePostal": "61130", + "codeCommune": "61038", + "libelleAcheminement": "BELLEME", + "nomCommune": "BELLEME" }, { - "codePostal": "27400", - "codeCommune": "27412", - "libelleAcheminement": "TERRES DE BORD", - "nomCommune": "TERRES DE BORD" + "codePostal": "04510", + "codeCommune": "04108", + "libelleAcheminement": "MALIJAI", + "nomCommune": "MALIJAI" }, { - "codePostal": "43150", - "codeCommune": "43156", - "libelleAcheminement": "PRESAILLES", - "nomCommune": "PRESAILLES" + "codePostal": "60170", + "codeCommune": "60492", + "libelleAcheminement": "PIMPREZ", + "nomCommune": "PIMPREZ" }, { - "codePostal": "55210", - "codeCommune": "55551", - "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", - "nomCommune": "VIGNEULLES LES HATTONCHATEL" + "codePostal": "50570", + "codeCommune": "50352", + "libelleAcheminement": "MONTREUIL SUR LOZON", + "nomCommune": "MONTREUIL SUR LOZON" }, { - "codePostal": "32240", - "codeCommune": "32274", - "libelleAcheminement": "MONLEZUN D ARMAGNAC", - "nomCommune": "MONLEZUN D ARMAGNAC" + "codePostal": "52370", + "codeCommune": "52130", + "libelleAcheminement": "CIRFONTAINES EN AZOIS", + "nomCommune": "CIRFONTAINES EN AZOIS" }, { - "codePostal": "27390", - "codeCommune": "27414", - "libelleAcheminement": "MONTREUIL L ARGILLE", - "nomCommune": "MONTREUIL L ARGILLE" + "codePostal": "61340", + "codeCommune": "61043", + "libelleAcheminement": "BERD HUIS", + "nomCommune": "BERD HUIS" }, { - "codePostal": "43220", - "codeCommune": "43163", - "libelleAcheminement": "RIOTORD", - "nomCommune": "RIOTORD" + "codePostal": "04110", + "codeCommune": "04128", + "libelleAcheminement": "MONTFURON", + "nomCommune": "MONTFURON" }, { - "codePostal": "55600", - "codeCommune": "55552", - "libelleAcheminement": "VIGNEUL SOUS MONTMEDY", - "nomCommune": "VIGNEUL SOUS MONTMEDY" + "codePostal": "60860", + "codeCommune": "60493", + "libelleAcheminement": "PISSELEU", + "nomCommune": "PISSELEU" }, { - "codePostal": "32390", - "codeCommune": "32286", - "libelleAcheminement": "MONTESTRUC SUR GERS", - "nomCommune": "MONTESTRUC SUR GERS" + "codePostal": "50410", + "codeCommune": "50357", + "libelleAcheminement": "MORIGNY", + "nomCommune": "MORIGNY" }, { - "codePostal": "27550", - "codeCommune": "27425", - "libelleAcheminement": "NASSANDRES SUR RISLE", - "nomCommune": "NASSANDRES SUR RISLE" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "43420", - "codeCommune": "43168", - "libelleAcheminement": "ST ARCONS DE BARGES", - "nomCommune": "ST ARCONS DE BARGES" + "codePostal": "61290", + "codeCommune": "61046", + "libelleAcheminement": "BIZOU", + "nomCommune": "BIZOU" }, { - "codePostal": "55110", - "codeCommune": "55561", - "libelleAcheminement": "VILLERS DEVANT DUN", - "nomCommune": "VILLERS DEVANT DUN" + "codePostal": "04200", + "codeCommune": "04145", + "libelleAcheminement": "PEIPIN", + "nomCommune": "PEIPIN" }, { - "codePostal": "32800", - "codeCommune": "32299", - "libelleAcheminement": "NOULENS", - "nomCommune": "NOULENS" + "codePostal": "60130", + "codeCommune": "60498", + "libelleAcheminement": "LE PLESSIER SUR ST JUST", + "nomCommune": "LE PLESSIER SUR ST JUST" }, { - "codePostal": "27250", - "codeCommune": "27427", - "libelleAcheminement": "NEAUFLES AUVERGNY", - "nomCommune": "NEAUFLES AUVERGNY" + "codePostal": "50140", + "codeCommune": "50359", + "libelleAcheminement": "MORTAIN BOCAGE", + "nomCommune": "MORTAIN BOCAGE" }, { - "codePostal": "43100", - "codeCommune": "43170", - "libelleAcheminement": "ST BEAUZIRE", - "nomCommune": "ST BEAUZIRE" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "55150", - "codeCommune": "55563", - "libelleAcheminement": "VILLERS LES MANGIENNES", - "nomCommune": "VILLERS LES MANGIENNES" + "codePostal": "61380", + "codeCommune": "61053", + "libelleAcheminement": "BONSMOULINS", + "nomCommune": "BONSMOULINS" }, { - "codePostal": "32260", - "codeCommune": "32302", - "libelleAcheminement": "ORNEZAN", - "nomCommune": "ORNEZAN" + "codePostal": "05160", + "codeCommune": "04154", + "libelleAcheminement": "PONTIS", + "nomCommune": "PONTIS" }, { - "codePostal": "27110", - "codeCommune": "27428", - "libelleAcheminement": "LE NEUBOURG", - "nomCommune": "LE NEUBOURG" + "codePostal": "60330", + "codeCommune": "60500", + "libelleAcheminement": "LE PLESSIS BELLEVILLE", + "nomCommune": "LE PLESSIS BELLEVILLE" }, { - "codePostal": "43290", - "codeCommune": "43172", - "libelleAcheminement": "ST BONNET LE FROID", - "nomCommune": "ST BONNET LE FROID" + "codePostal": "50140", + "codeCommune": "50359", + "libelleAcheminement": "MORTAIN BOCAGE", + "nomCommune": "MORTAIN BOCAGE" }, { - "codePostal": "55120", - "codeCommune": "55567", - "libelleAcheminement": "VILLE SUR COUSANCES", - "nomCommune": "VILLE SUR COUSANCES" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "32460", - "codeCommune": "32310", - "libelleAcheminement": "PERCHEDE", - "nomCommune": "PERCHEDE" + "codePostal": "61470", + "codeCommune": "61054", + "libelleAcheminement": "LE BOSC RENOULT", + "nomCommune": "LE BOSC RENOULT" }, { - "codePostal": "27330", - "codeCommune": "27431", - "libelleAcheminement": "LA NEUVE LYRE", - "nomCommune": "LA NEUVE LYRE" + "codePostal": "04420", + "codeCommune": "04155", + "libelleAcheminement": "PRADS HAUTE BLEONE", + "nomCommune": "PRADS HAUTE BLEONE" }, { - "codePostal": "43340", - "codeCommune": "43173", - "libelleAcheminement": "ST CHRISTOPHE D ALLIER", - "nomCommune": "ST CHRISTOPHE D ALLIER" + "codePostal": "60700", + "codeCommune": "60508", + "libelleAcheminement": "PONTPOINT", + "nomCommune": "PONTPOINT" }, { - "codePostal": "56640", - "codeCommune": "56005", - "libelleAcheminement": "ARZON", - "nomCommune": "ARZON" + "codePostal": "50690", + "codeCommune": "50382", + "libelleAcheminement": "NOUAINVILLE", + "nomCommune": "NOUAINVILLE" }, { - "codePostal": "32700", - "codeCommune": "32311", - "libelleAcheminement": "PERGAIN TAILLAC", - "nomCommune": "PERGAIN TAILLAC" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "27320", - "codeCommune": "27438", - "libelleAcheminement": "NONANCOURT", - "nomCommune": "NONANCOURT" + "codePostal": "61270", + "codeCommune": "61060", + "libelleAcheminement": "BRETHEL", + "nomCommune": "BRETHEL" }, { - "codePostal": "43140", - "codeCommune": "43177", - "libelleAcheminement": "ST DIDIER EN VELAY", - "nomCommune": "ST DIDIER EN VELAY" + "codePostal": "04420", + "codeCommune": "04155", + "libelleAcheminement": "PRADS HAUTE BLEONE", + "nomCommune": "PRADS HAUTE BLEONE" }, { - "codePostal": "56350", - "codeCommune": "56011", - "libelleAcheminement": "BEGANNE", - "nomCommune": "BEGANNE" + "codePostal": "60390", + "codeCommune": "60510", + "libelleAcheminement": "PORCHEUX", + "nomCommune": "PORCHEUX" }, { - "codePostal": "32300", - "codeCommune": "32323", - "libelleAcheminement": "PONSAMPERE", - "nomCommune": "PONSAMPERE" + "codePostal": "50630", + "codeCommune": "50384", + "libelleAcheminement": "OCTEVILLE L AVENEL", + "nomCommune": "OCTEVILLE L AVENEL" }, { - "codePostal": "27940", - "codeCommune": "27440", - "libelleAcheminement": "NOTRE DAME DE L ISLE", - "nomCommune": "NOTRE DAME DE L ISLE" + "codePostal": "52000", + "codeCommune": "52141", + "libelleAcheminement": "CONDES", + "nomCommune": "CONDES" }, { - "codePostal": "43330", - "codeCommune": "43184", - "libelleAcheminement": "ST FERREOL D AUROURE", - "nomCommune": "ST FERREOL D AUROURE" + "codePostal": "61240", + "codeCommune": "61081", + "libelleAcheminement": "CHAILLOUE", + "nomCommune": "CHAILLOUE" }, { - "codePostal": "56550", - "codeCommune": "56013", - "libelleAcheminement": "BELZ", - "nomCommune": "BELZ" + "codePostal": "04150", + "codeCommune": "04162", + "libelleAcheminement": "REVEST DES BROUSSES", + "nomCommune": "REVEST DES BROUSSES" }, { - "codePostal": "32260", - "codeCommune": "32327", - "libelleAcheminement": "POUY LOUBRIN", - "nomCommune": "POUY LOUBRIN" + "codePostal": "60400", + "codeCommune": "60511", + "libelleAcheminement": "PORQUERICOURT", + "nomCommune": "PORQUERICOURT" }, { - "codePostal": "27720", - "codeCommune": "27445", - "libelleAcheminement": "NOYERS", - "nomCommune": "NOYERS" + "codePostal": "50660", + "codeCommune": "50388", + "libelleAcheminement": "ORVAL SUR SIENNE", + "nomCommune": "ORVAL SUR SIENNE" }, { - "codePostal": "43350", - "codeCommune": "43187", - "libelleAcheminement": "ST GENEYS PRES ST PAULIEN", - "nomCommune": "ST GENEYS PRES ST PAULIEN" + "codePostal": "52210", + "codeCommune": "52146", + "libelleAcheminement": "COUPRAY", + "nomCommune": "COUPRAY" }, { - "codePostal": "56580", - "codeCommune": "56024", - "libelleAcheminement": "BREHAN", - "nomCommune": "BREHAN" + "codePostal": "61390", + "codeCommune": "61082", + "libelleAcheminement": "LE CHALANGE", + "nomCommune": "LE CHALANGE" }, { - "codePostal": "32480", - "codeCommune": "32328", - "libelleAcheminement": "POUY ROQUELAURE", - "nomCommune": "POUY ROQUELAURE" + "codePostal": "04150", + "codeCommune": "04169", + "libelleAcheminement": "LA ROCHEGIRON", + "nomCommune": "LA ROCHEGIRON" }, { - "codePostal": "27120", - "codeCommune": "27448", - "libelleAcheminement": "PACY SUR EURE", - "nomCommune": "PACY SUR EURE" + "codePostal": "60480", + "codeCommune": "60520", + "libelleAcheminement": "LE QUESNEL AUBRY", + "nomCommune": "LE QUESNEL AUBRY" }, { - "codePostal": "43500", - "codeCommune": "43189", - "libelleAcheminement": "ST GEORGES LAGRICOL", - "nomCommune": "ST GEORGES LAGRICOL" + "codePostal": "50310", + "codeCommune": "50390", + "libelleAcheminement": "OZEVILLE", + "nomCommune": "OZEVILLE" }, { - "codePostal": "56130", - "codeCommune": "56030", - "libelleAcheminement": "CAMOEL", - "nomCommune": "CAMOEL" + "codePostal": "52240", + "codeCommune": "52159", + "libelleAcheminement": "CUVES", + "nomCommune": "CUVES" }, { - "codePostal": "32810", - "codeCommune": "32331", - "libelleAcheminement": "PREIGNAN", - "nomCommune": "PREIGNAN" + "codePostal": "61210", + "codeCommune": "61084", + "libelleAcheminement": "CHAMPCERIE", + "nomCommune": "CHAMPCERIE" }, { - "codePostal": "27910", - "codeCommune": "27454", - "libelleAcheminement": "PERRUEL", - "nomCommune": "PERRUEL" + "codePostal": "04230", + "codeCommune": "04178", + "libelleAcheminement": "ST ETIENNE LES ORGUES", + "nomCommune": "ST ETIENNE LES ORGUES" }, { - "codePostal": "43500", - "codeCommune": "43201", - "libelleAcheminement": "ST JULIEN D ANCE", - "nomCommune": "ST JULIEN D ANCE" + "codePostal": "60220", + "codeCommune": "60521", + "libelleAcheminement": "QUINCAMPOIX FLEUZY", + "nomCommune": "QUINCAMPOIX FLEUZY" }, { - "codePostal": "56330", - "codeCommune": "56031", - "libelleAcheminement": "CAMORS", - "nomCommune": "CAMORS" + "codePostal": "50600", + "codeCommune": "50391", + "libelleAcheminement": "GRANDPARIGNY", + "nomCommune": "GRANDPARIGNY" }, { - "codePostal": "32400", - "codeCommune": "32333", - "libelleAcheminement": "PROJAN", - "nomCommune": "PROJAN" + "codePostal": "52130", + "codeCommune": "52169", + "libelleAcheminement": "DOMBLAIN", + "nomCommune": "DOMBLAIN" }, { - "codePostal": "27590", - "codeCommune": "27458", - "libelleAcheminement": "PITRES", - "nomCommune": "PITRES" + "codePostal": "61240", + "codeCommune": "61088", + "libelleAcheminement": "CHAMP HAUT", + "nomCommune": "CHAMP HAUT" }, { - "codePostal": "43200", - "codeCommune": "43203", - "libelleAcheminement": "ST JULIEN DU PINET", - "nomCommune": "ST JULIEN DU PINET" + "codePostal": "04330", + "codeCommune": "04180", + "libelleAcheminement": "ST JACQUES", + "nomCommune": "ST JACQUES" }, { - "codePostal": "56420", - "codeCommune": "56051", - "libelleAcheminement": "CRUGUEL", - "nomCommune": "CRUGUEL" + "codePostal": "60810", + "codeCommune": "60525", + "libelleAcheminement": "RARAY", + "nomCommune": "RARAY" }, { - "codePostal": "32220", - "codeCommune": "32336", - "libelleAcheminement": "PUYLAUSIC", - "nomCommune": "PUYLAUSIC" + "codePostal": "50190", + "codeCommune": "50394", + "libelleAcheminement": "PERIERS", + "nomCommune": "PERIERS" }, { - "codePostal": "27300", - "codeCommune": "27460", - "libelleAcheminement": "PLAINVILLE", - "nomCommune": "PLAINVILLE" + "codePostal": "52300", + "codeCommune": "52175", + "libelleAcheminement": "DONJEUX", + "nomCommune": "DONJEUX" }, { - "codePostal": "43350", - "codeCommune": "43216", - "libelleAcheminement": "ST PAULIEN", - "nomCommune": "ST PAULIEN" + "codePostal": "61140", + "codeCommune": "61096", + "libelleAcheminement": "RIVES D ANDAINE", + "nomCommune": "RIVES D ANDAINE" }, { - "codePostal": "56250", - "codeCommune": "56053", - "libelleAcheminement": "ELVEN", - "nomCommune": "ELVEN" + "codePostal": "04270", + "codeCommune": "04181", + "libelleAcheminement": "ST JEANNET", + "nomCommune": "ST JEANNET" }, { - "codePostal": "32320", - "codeCommune": "32343", - "libelleAcheminement": "RIGUEPEU", - "nomCommune": "RIGUEPEU" + "codePostal": "60130", + "codeCommune": "60526", + "libelleAcheminement": "RAVENEL", + "nomCommune": "RAVENEL" }, { - "codePostal": "27300", - "codeCommune": "27463", - "libelleAcheminement": "PLASNES", - "nomCommune": "PLASNES" + "codePostal": "50370", + "codeCommune": "50399", + "libelleAcheminement": "LE PETIT CELLAND", + "nomCommune": "LE PETIT CELLAND" }, { - "codePostal": "43380", - "codeCommune": "43222", - "libelleAcheminement": "ST PRIVAT DU DRAGON", - "nomCommune": "ST PRIVAT DU DRAGON" + "codePostal": "52290", + "codeCommune": "52182", + "libelleAcheminement": "ECLARON BRAUCOURT STE LIVIERE", + "nomCommune": "ECLARON BRAUCOURT STE LIVIERE" }, { - "codePostal": "56410", - "codeCommune": "56055", - "libelleAcheminement": "ETEL", - "nomCommune": "ETEL" + "codePostal": "61410", + "codeCommune": "61096", + "libelleAcheminement": "RIVES D ANDAINE", + "nomCommune": "RIVES D ANDAINE" }, { - "codePostal": "32400", - "codeCommune": "32344", - "libelleAcheminement": "RISCLE", - "nomCommune": "RISCLE" + "codePostal": "04270", + "codeCommune": "04182", + "libelleAcheminement": "ST JULIEN D ASSE", + "nomCommune": "ST JULIEN D ASSE" }, { - "codePostal": "27340", - "codeCommune": "27469", - "libelleAcheminement": "PONT DE L ARCHE", - "nomCommune": "PONT DE L ARCHE" + "codePostal": "60510", + "codeCommune": "60530", + "libelleAcheminement": "REMERANGLES", + "nomCommune": "REMERANGLES" }, { - "codePostal": "43580", - "codeCommune": "43225", - "libelleAcheminement": "ST VENERAND", - "nomCommune": "ST VENERAND" + "codePostal": "50250", + "codeCommune": "50400", + "libelleAcheminement": "PICAUVILLE", + "nomCommune": "PICAUVILLE" }, { - "codePostal": "56200", - "codeCommune": "56060", - "libelleAcheminement": "LES FOUGERETS", - "nomCommune": "LES FOUGERETS" + "codePostal": "52290", + "codeCommune": "52182", + "libelleAcheminement": "ECLARON BRAUCOURT STE LIVIERE", + "nomCommune": "ECLARON BRAUCOURT STE LIVIERE" }, { - "codePostal": "32190", - "codeCommune": "32346", - "libelleAcheminement": "ROQUEBRUNE", - "nomCommune": "ROQUEBRUNE" + "codePostal": "61400", + "codeCommune": "61097", + "libelleAcheminement": "LA CHAPELLE MONTLIGEON", + "nomCommune": "LA CHAPELLE MONTLIGEON" }, { - "codePostal": "27430", - "codeCommune": "27471", - "libelleAcheminement": "PORTE DE SEINE", - "nomCommune": "PORTE DE SEINE" + "codePostal": "04330", + "codeCommune": "04187", + "libelleAcheminement": "ST LIONS", + "nomCommune": "ST LIONS" }, { - "codePostal": "43500", - "codeCommune": "43228", - "libelleAcheminement": "ST VICTOR SUR ARLANC", - "nomCommune": "ST VICTOR SUR ARLANC" + "codePostal": "60153", + "codeCommune": "60534", + "libelleAcheminement": "RETHONDES", + "nomCommune": "RETHONDES" }, { - "codePostal": "56200", - "codeCommune": "56061", - "libelleAcheminement": "LA GACILLY", - "nomCommune": "LA GACILLY" + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { - "codePostal": "32810", - "codeCommune": "32348", - "libelleAcheminement": "ROQUELAURE", - "nomCommune": "ROQUELAURE" + "codePostal": "52270", + "codeCommune": "52187", + "libelleAcheminement": "EPIZON", + "nomCommune": "EPIZON" }, { - "codePostal": "27940", - "codeCommune": "27473", - "libelleAcheminement": "PORT MORT", - "nomCommune": "PORT MORT" + "codePostal": "61230", + "codeCommune": "61108", + "libelleAcheminement": "CISAI ST AUBIN", + "nomCommune": "CISAI ST AUBIN" }, { - "codePostal": "43160", - "codeCommune": "43237", - "libelleAcheminement": "SEMBADEL", - "nomCommune": "SEMBADEL" + "codePostal": "06260", + "codeCommune": "04194", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "56200", - "codeCommune": "56061", - "libelleAcheminement": "LA GACILLY", - "nomCommune": "LA GACILLY" + "codePostal": "60170", + "codeCommune": "60537", + "libelleAcheminement": "RIBECOURT DRESLINCOURT", + "nomCommune": "RIBECOURT DRESLINCOURT" }, { - "codePostal": "32170", - "codeCommune": "32355", - "libelleAcheminement": "SADEILLAN", - "nomCommune": "SADEILLAN" + "codePostal": "50170", + "codeCommune": "50410", + "libelleAcheminement": "PONTORSON", + "nomCommune": "PONTORSON" }, { - "codePostal": "27740", - "codeCommune": "27474", - "libelleAcheminement": "POSES", - "nomCommune": "POSES" + "codePostal": "52190", + "codeCommune": "52189", + "libelleAcheminement": "LE VAL D ESNOMS", + "nomCommune": "LE VAL D ESNOMS" }, { - "codePostal": "43370", - "codeCommune": "43241", - "libelleAcheminement": "SOLIGNAC SUR LOIRE", - "nomCommune": "SOLIGNAC SUR LOIRE" + "codePostal": "61200", + "codeCommune": "61114", + "libelleAcheminement": "COMMEAUX", + "nomCommune": "COMMEAUX" }, { - "codePostal": "56420", - "codeCommune": "56071", - "libelleAcheminement": "GUEHENNO", - "nomCommune": "GUEHENNO" + "codePostal": "04400", + "codeCommune": "04195", + "libelleAcheminement": "ST PONS", + "nomCommune": "ST PONS" }, { - "codePostal": "32430", - "codeCommune": "32357", - "libelleAcheminement": "STE ANNE", - "nomCommune": "STE ANNE" + "codePostal": "60490", + "codeCommune": "60538", + "libelleAcheminement": "RICQUEBOURG", + "nomCommune": "RICQUEBOURG" }, { - "codePostal": "27680", - "codeCommune": "27485", - "libelleAcheminement": "QUILLEBEUF SUR SEINE", - "nomCommune": "QUILLEBEUF SUR SEINE" + "codePostal": "50300", + "codeCommune": "50411", + "libelleAcheminement": "PONTS", + "nomCommune": "PONTS" }, { - "codePostal": "43450", - "codeCommune": "43247", - "libelleAcheminement": "TORSIAC", - "nomCommune": "TORSIAC" + "codePostal": "52410", + "codeCommune": "52194", + "libelleAcheminement": "EURVILLE BIENVILLE", + "nomCommune": "EURVILLE BIENVILLE" }, { - "codePostal": "56380", - "codeCommune": "56075", - "libelleAcheminement": "GUER", - "nomCommune": "GUER" + "codePostal": "61110", + "codeCommune": "61116", + "libelleAcheminement": "SABLONS SUR HUISNE", + "nomCommune": "SABLONS SUR HUISNE" }, { - "codePostal": "32300", - "codeCommune": "32361", - "libelleAcheminement": "ST ARROMAN", - "nomCommune": "ST ARROMAN" + "codePostal": "04220", + "codeCommune": "04197", + "libelleAcheminement": "STE TULLE", + "nomCommune": "STE TULLE" }, { - "codePostal": "27380", - "codeCommune": "27487", - "libelleAcheminement": "RADEPONT", - "nomCommune": "RADEPONT" + "codePostal": "60410", + "codeCommune": "60541", + "libelleAcheminement": "ROBERVAL", + "nomCommune": "ROBERVAL" }, { - "codePostal": "43210", - "codeCommune": "43249", - "libelleAcheminement": "VALPRIVAS", - "nomCommune": "VALPRIVAS" + "codePostal": "50580", + "codeCommune": "50412", + "libelleAcheminement": "PORT BAIL SUR MER", + "nomCommune": "PORT BAIL SUR MER" }, { - "codePostal": "56560", - "codeCommune": "56081", - "libelleAcheminement": "GUISCRIFF", - "nomCommune": "GUISCRIFF" + "codePostal": "52260", + "codeCommune": "52196", + "libelleAcheminement": "FAVEROLLES", + "nomCommune": "FAVEROLLES" }, { - "codePostal": "32370", - "codeCommune": "32369", - "libelleAcheminement": "STE CHRISTIE D ARMAGNAC", - "nomCommune": "STE CHRISTIE D ARMAGNAC" + "codePostal": "61400", + "codeCommune": "61118", + "libelleAcheminement": "CORBON", + "nomCommune": "CORBON" }, { - "codePostal": "27930", - "codeCommune": "27489", - "libelleAcheminement": "REUILLY", - "nomCommune": "REUILLY" + "codePostal": "04150", + "codeCommune": "04201", + "libelleAcheminement": "SAUMANE", + "nomCommune": "SAUMANE" }, { - "codePostal": "43230", - "codeCommune": "43250", - "libelleAcheminement": "VALS LE CHASTEL", - "nomCommune": "VALS LE CHASTEL" + "codePostal": "60620", + "codeCommune": "60548", + "libelleAcheminement": "ROSOY EN MULTIEN", + "nomCommune": "ROSOY EN MULTIEN" }, { - "codePostal": "56170", - "codeCommune": "56085", - "libelleAcheminement": "ILE DE HOEDIC", - "nomCommune": "HOEDIC" + "codePostal": "50580", + "codeCommune": "50412", + "libelleAcheminement": "PORT BAIL SUR MER", + "nomCommune": "PORT BAIL SUR MER" }, { - "codePostal": "32220", - "codeCommune": "32387", - "libelleAcheminement": "ST LOUBE", - "nomCommune": "ST LOUBE" + "codePostal": "52500", + "codeCommune": "52197", + "libelleAcheminement": "FAYL BILLOT", + "nomCommune": "FAYL BILLOT" }, { - "codePostal": "27350", - "codeCommune": "27497", - "libelleAcheminement": "ROUGEMONTIERS", - "nomCommune": "ROUGEMONTIERS" + "codePostal": "61230", + "codeCommune": "61138", + "libelleAcheminement": "CROISILLES", + "nomCommune": "CROISILLES" }, { - "codePostal": "43270", - "codeCommune": "43252", - "libelleAcheminement": "VARENNES ST HONORAT", - "nomCommune": "VARENNES ST HONORAT" + "codePostal": "04150", + "codeCommune": "04208", + "libelleAcheminement": "SIMIANE LA ROTONDE", + "nomCommune": "SIMIANE LA ROTONDE" }, { - "codePostal": "56650", - "codeCommune": "56090", - "libelleAcheminement": "INZINZAC LOCHRIST", - "nomCommune": "INZINZAC LOCHRIST" + "codePostal": "60117", + "codeCommune": "60561", + "libelleAcheminement": "RUSSY BEMONT", + "nomCommune": "RUSSY BEMONT" }, { - "codePostal": "32200", - "codeCommune": "32388", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "50220", + "codeCommune": "50413", + "libelleAcheminement": "PRECEY", + "nomCommune": "PRECEY" }, { - "codePostal": "27110", - "codeCommune": "27498", - "libelleAcheminement": "ROUGE PERRIERS", - "nomCommune": "ROUGE PERRIERS" + "codePostal": "52400", + "codeCommune": "52208", + "libelleAcheminement": "FRESNES SUR APANCE", + "nomCommune": "FRESNES SUR APANCE" }, { - "codePostal": "44170", - "codeCommune": "44001", - "libelleAcheminement": "ABBARETZ", - "nomCommune": "ABBARETZ" + "codePostal": "61250", + "codeCommune": "61141", + "libelleAcheminement": "CUISSAI", + "nomCommune": "CUISSAI" }, { - "codePostal": "56120", - "codeCommune": "56091", - "libelleAcheminement": "JOSSELIN", - "nomCommune": "JOSSELIN" + "codePostal": "04200", + "codeCommune": "04209", + "libelleAcheminement": "SISTERON", + "nomCommune": "SISTERON" }, { - "codePostal": "32110", - "codeCommune": "32390", - "libelleAcheminement": "ST MARTIN D ARMAGNAC", - "nomCommune": "ST MARTIN D ARMAGNAC" + "codePostal": "60700", + "codeCommune": "60562", + "libelleAcheminement": "SACY LE GRAND", + "nomCommune": "SACY LE GRAND" }, { - "codePostal": "27350", - "codeCommune": "27500", - "libelleAcheminement": "ROUTOT", - "nomCommune": "ROUTOT" + "codePostal": "50660", + "codeCommune": "50419", + "libelleAcheminement": "QUETTREVILLE SUR SIENNE", + "nomCommune": "QUETTREVILLE SUR SIENNE" }, { - "codePostal": "44130", - "codeCommune": "44015", - "libelleAcheminement": "BLAIN", - "nomCommune": "BLAIN" + "codePostal": "52500", + "codeCommune": "52223", + "libelleAcheminement": "GILLEY", + "nomCommune": "GILLEY" }, { - "codePostal": "56630", - "codeCommune": "56100", - "libelleAcheminement": "LANGONNET", - "nomCommune": "LANGONNET" + "codePostal": "61100", + "codeCommune": "61148", + "libelleAcheminement": "DURCET", + "nomCommune": "DURCET" }, { - "codePostal": "32450", - "codeCommune": "32392", - "libelleAcheminement": "ST MARTIN GIMOIS", - "nomCommune": "ST MARTIN GIMOIS" + "codePostal": "04120", + "codeCommune": "04210", + "libelleAcheminement": "SOLEILHAS", + "nomCommune": "SOLEILHAS" }, { - "codePostal": "27950", - "codeCommune": "27525", - "libelleAcheminement": "STE COLOMBE PRES VERNON", - "nomCommune": "STE COLOMBE PRES VERNON" + "codePostal": "60650", + "codeCommune": "60567", + "libelleAcheminement": "ST AUBIN EN BRAY", + "nomCommune": "ST AUBIN EN BRAY" }, { - "codePostal": "44130", - "codeCommune": "44015", - "libelleAcheminement": "BLAIN", - "nomCommune": "BLAIN" + "codePostal": "50500", + "codeCommune": "50422", + "libelleAcheminement": "RAIDS", + "nomCommune": "RAIDS" }, { - "codePostal": "56120", - "codeCommune": "56102", - "libelleAcheminement": "FORGES DE LANOUEE", - "nomCommune": "FORGES DE LANOUEE" + "codePostal": "52600", + "codeCommune": "52240", + "libelleAcheminement": "HEUILLEY LE GRAND", + "nomCommune": "HEUILLEY LE GRAND" }, { - "codePostal": "32300", - "codeCommune": "32401", - "libelleAcheminement": "ST OST", - "nomCommune": "ST OST" + "codePostal": "61440", + "codeCommune": "61149", + "libelleAcheminement": "ECHALOU", + "nomCommune": "ECHALOU" }, { - "codePostal": "27140", - "codeCommune": "27533", - "libelleAcheminement": "ST DENIS LE FERMENT", - "nomCommune": "ST DENIS LE FERMENT" + "codePostal": "04170", + "codeCommune": "04218", + "libelleAcheminement": "THORAME BASSE", + "nomCommune": "THORAME BASSE" }, { - "codePostal": "44260", - "codeCommune": "44019", - "libelleAcheminement": "BOUEE", - "nomCommune": "BOUEE" + "codePostal": "60149", + "codeCommune": "60570", + "libelleAcheminement": "ST CREPIN IBOUVILLERS", + "nomCommune": "ST CREPIN IBOUVILLERS" }, { - "codePostal": "56240", - "codeCommune": "56104", - "libelleAcheminement": "LANVAUDAN", - "nomCommune": "LANVAUDAN" + "codePostal": "50170", + "codeCommune": "50443", + "libelleAcheminement": "SACEY", + "nomCommune": "SACEY" }, { - "codePostal": "32270", - "codeCommune": "32406", - "libelleAcheminement": "ST SAUVY", - "nomCommune": "ST SAUVY" + "codePostal": "52290", + "codeCommune": "52244", + "libelleAcheminement": "HUMBECOURT", + "nomCommune": "HUMBECOURT" }, { - "codePostal": "27800", - "codeCommune": "27536", - "libelleAcheminement": "ST ELOI DE FOURQUES", - "nomCommune": "ST ELOI DE FOURQUES" + "codePostal": "61160", + "codeCommune": "61152", + "libelleAcheminement": "ECORCHES", + "nomCommune": "ECORCHES" }, { - "codePostal": "44830", - "codeCommune": "44024", - "libelleAcheminement": "BRAINS", - "nomCommune": "BRAINS" + "codePostal": "04250", + "codeCommune": "04222", + "libelleAcheminement": "TURRIERS", + "nomCommune": "TURRIERS" }, { - "codePostal": "56230", - "codeCommune": "56108", - "libelleAcheminement": "LARRE", - "nomCommune": "LARRE" + "codePostal": "60650", + "codeCommune": "60576", + "libelleAcheminement": "ST GERMAIN LA POTERIE", + "nomCommune": "ST GERMAIN LA POTERIE" }, { - "codePostal": "32220", - "codeCommune": "32407", - "libelleAcheminement": "ST SOULAN", - "nomCommune": "ST SOULAN" + "codePostal": "50160", + "codeCommune": "50444", + "libelleAcheminement": "ST AMAND VILLAGES", + "nomCommune": "ST AMAND VILLAGES" }, { - "codePostal": "27430", - "codeCommune": "27537", - "libelleAcheminement": "ST ETIENNE DU VAUVRAY", - "nomCommune": "ST ETIENNE DU VAUVRAY" + "codePostal": "52150", + "codeCommune": "52247", + "libelleAcheminement": "ILLOUD", + "nomCommune": "ILLOUD" }, { - "codePostal": "44470", - "codeCommune": "44026", - "libelleAcheminement": "CARQUEFOU", - "nomCommune": "CARQUEFOU" + "codePostal": "61150", + "codeCommune": "61153", + "libelleAcheminement": "ECOUCHE LES VALLEES", + "nomCommune": "ECOUCHE LES VALLEES" }, { - "codePostal": "56190", - "codeCommune": "56109", - "libelleAcheminement": "LAUZACH", - "nomCommune": "LAUZACH" + "codePostal": "04400", + "codeCommune": "04226", + "libelleAcheminement": "UVERNET FOURS", + "nomCommune": "UVERNET FOURS" }, { - "codePostal": "32370", - "codeCommune": "32408", - "libelleAcheminement": "SALLES D ARMAGNAC", - "nomCommune": "SALLES D ARMAGNAC" + "codePostal": "60850", + "codeCommune": "60577", + "libelleAcheminement": "ST GERMER DE FLY", + "nomCommune": "ST GERMER DE FLY" }, { - "codePostal": "27450", - "codeCommune": "27538", - "libelleAcheminement": "ST ETIENNE L ALLIER", - "nomCommune": "ST ETIENNE L ALLIER" + "codePostal": "50500", + "codeCommune": "50445", + "libelleAcheminement": "ST ANDRE DE BOHON", + "nomCommune": "ST ANDRE DE BOHON" }, { - "codePostal": "44390", - "codeCommune": "44027", - "libelleAcheminement": "CASSON", - "nomCommune": "CASSON" + "codePostal": "52400", + "codeCommune": "52264", + "libelleAcheminement": "LANEUVELLE", + "nomCommune": "LANEUVELLE" }, { - "codePostal": "56160", - "codeCommune": "56113", - "libelleAcheminement": "LOCMALO", - "nomCommune": "LOCMALO" + "codePostal": "61600", + "codeCommune": "61158", + "libelleAcheminement": "FAVEROLLES", + "nomCommune": "FAVEROLLES" }, { - "codePostal": "32450", - "codeCommune": "32412", - "libelleAcheminement": "SARAMON", - "nomCommune": "SARAMON" + "codePostal": "04200", + "codeCommune": "04229", + "libelleAcheminement": "VALBELLE", + "nomCommune": "VALBELLE" }, { - "codePostal": "27620", - "codeCommune": "27540", - "libelleAcheminement": "STE GENEVIEVE LES GASNY", - "nomCommune": "STE GENEVIEVE LES GASNY" + "codePostal": "60155", + "codeCommune": "60583", + "libelleAcheminement": "ST LEGER EN BRAY", + "nomCommune": "ST LEGER EN BRAY" }, { - "codePostal": "44260", - "codeCommune": "44033", - "libelleAcheminement": "LA CHAPELLE LAUNAY", - "nomCommune": "LA CHAPELLE LAUNAY" + "codePostal": "50730", + "codeCommune": "50452", + "libelleAcheminement": "ST BRICE DE LANDELLES", + "nomCommune": "ST BRICE DE LANDELLES" }, { - "codePostal": "56800", - "codeCommune": "56122", - "libelleAcheminement": "LOYAT", - "nomCommune": "LOYAT" + "codePostal": "52200", + "codeCommune": "52269", + "libelleAcheminement": "LANGRES", + "nomCommune": "LANGRES" }, { - "codePostal": "32420", - "codeCommune": "32433", - "libelleAcheminement": "SIMORRE", - "nomCommune": "SIMORRE" + "codePostal": "61450", + "codeCommune": "61163", + "libelleAcheminement": "LA FERRIERE AUX ETANGS", + "nomCommune": "LA FERRIERE AUX ETANGS" }, { - "codePostal": "27560", - "codeCommune": "27541", - "libelleAcheminement": "LE MESNIL ST JEAN", - "nomCommune": "LE MESNIL ST JEAN" + "codePostal": "05460", + "codeCommune": "05001", + "libelleAcheminement": "ABRIES RISTOLAS", + "nomCommune": "ABRIES RISTOLAS" }, { - "codePostal": "44240", - "codeCommune": "44035", - "libelleAcheminement": "LA CHAPELLE SUR ERDRE", - "nomCommune": "LA CHAPELLE SUR ERDRE" + "codePostal": "60860", + "codeCommune": "60590", + "libelleAcheminement": "ST OMER EN CHAUSSEE", + "nomCommune": "ST OMER EN CHAUSSEE" }, { - "codePostal": "56140", - "codeCommune": "56124", - "libelleAcheminement": "MALESTROIT", - "nomCommune": "MALESTROIT" + "codePostal": "50340", + "codeCommune": "50454", + "libelleAcheminement": "ST CHRISTOPHE DU FOC", + "nomCommune": "ST CHRISTOPHE DU FOC" }, { - "codePostal": "32120", - "codeCommune": "32436", - "libelleAcheminement": "SOLOMIAC", - "nomCommune": "SOLOMIAC" + "codePostal": "52800", + "codeCommune": "52271", + "libelleAcheminement": "LANQUES SUR ROGNON", + "nomCommune": "LANQUES SUR ROGNON" }, { - "codePostal": "27220", - "codeCommune": "27544", - "libelleAcheminement": "ST GERMAIN DE FRESNEY", - "nomCommune": "ST GERMAIN DE FRESNEY" + "codePostal": "61420", + "codeCommune": "61165", + "libelleAcheminement": "LA FERRIERE BOCHARD", + "nomCommune": "LA FERRIERE BOCHARD" }, { - "codePostal": "44690", - "codeCommune": "44037", - "libelleAcheminement": "CHATEAU THEBAUD", - "nomCommune": "CHATEAU THEBAUD" + "codePostal": "05470", + "codeCommune": "05003", + "libelleAcheminement": "AIGUILLES", + "nomCommune": "AIGUILLES" }, { - "codePostal": "56700", - "codeCommune": "56130", - "libelleAcheminement": "MERLEVENEZ", - "nomCommune": "MERLEVENEZ" + "codePostal": "60650", + "codeCommune": "60591", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "32400", - "codeCommune": "32439", - "libelleAcheminement": "TARSAC", - "nomCommune": "TARSAC" + "codePostal": "50140", + "codeCommune": "50456", + "libelleAcheminement": "ST CLEMENT RANCOUDRAY", + "nomCommune": "ST CLEMENT RANCOUDRAY" }, { - "codePostal": "27950", - "codeCommune": "27554", - "libelleAcheminement": "LA CHAPELLE LONGUEVILLE", - "nomCommune": "LA CHAPELLE LONGUEVILLE" + "codePostal": "52120", + "codeCommune": "52274", + "libelleAcheminement": "LATRECEY ORMOY SUR AUBE", + "nomCommune": "LATRECEY ORMOY SUR AUBE" }, { - "codePostal": "44640", - "codeCommune": "44039", - "libelleAcheminement": "CHEIX EN RETZ", - "nomCommune": "CHEIX EN RETZ" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "56690", - "codeCommune": "56148", - "libelleAcheminement": "NOSTANG", - "nomCommune": "NOSTANG" + "codePostal": "05800", + "codeCommune": "05009", + "libelleAcheminement": "ASPRES LES CORPS", + "nomCommune": "ASPRES LES CORPS" }, { - "codePostal": "32170", - "codeCommune": "32446", - "libelleAcheminement": "TILLAC", - "nomCommune": "TILLAC" + "codePostal": "60850", + "codeCommune": "60592", + "libelleAcheminement": "ST PIERRE ES CHAMPS", + "nomCommune": "ST PIERRE ES CHAMPS" }, { - "codePostal": "27390", - "codeCommune": "27556", - "libelleAcheminement": "ST LAURENT DU TENCEMENT", - "nomCommune": "ST LAURENT DU TENCEMENT" + "codePostal": "50390", + "codeCommune": "50457", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "44360", - "codeCommune": "44045", - "libelleAcheminement": "CORDEMAIS", - "nomCommune": "CORDEMAIS" + "codePostal": "52150", + "codeCommune": "52287", + "libelleAcheminement": "LEVECOURT", + "nomCommune": "LEVECOURT" }, { - "codePostal": "56190", - "codeCommune": "56149", - "libelleAcheminement": "NOYAL MUZILLAC", - "nomCommune": "NOYAL MUZILLAC" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "32450", - "codeCommune": "32447", - "libelleAcheminement": "TIRENT PONTEJAC", - "nomCommune": "TIRENT PONTEJAC" + "codePostal": "05230", + "codeCommune": "05011", + "libelleAcheminement": "AVANCON", + "nomCommune": "AVANCON" }, { - "codePostal": "27210", - "codeCommune": "27561", - "libelleAcheminement": "ST MACLOU", - "nomCommune": "ST MACLOU" + "codePostal": "60350", + "codeCommune": "60593", + "libelleAcheminement": "ST PIERRE LES BITRY", + "nomCommune": "ST PIERRE LES BITRY" }, { - "codePostal": "44560", - "codeCommune": "44046", - "libelleAcheminement": "CORSEPT", - "nomCommune": "CORSEPT" + "codePostal": "50000", + "codeCommune": "50475", + "libelleAcheminement": "ST GEORGES MONTCOCQ", + "nomCommune": "ST GEORGES MONTCOCQ" }, { - "codePostal": "56360", - "codeCommune": "56152", - "libelleAcheminement": "LE PALAIS", - "nomCommune": "LE PALAIS" + "codePostal": "52800", + "codeCommune": "52295", + "libelleAcheminement": "LOUVIERES", + "nomCommune": "LOUVIERES" }, { - "codePostal": "32240", - "codeCommune": "32449", - "libelleAcheminement": "TOUJOUSE", - "nomCommune": "TOUJOUSE" + "codePostal": "61410", + "codeCommune": "61168", + "libelleAcheminement": "LA FERTE MACE", + "nomCommune": "LA FERTE MACE" }, { - "codePostal": "27680", - "codeCommune": "27577", - "libelleAcheminement": "STE OPPORTUNE LA MARE", - "nomCommune": "STE OPPORTUNE LA MARE" + "codePostal": "05230", + "codeCommune": "05017", + "libelleAcheminement": "LA BATIE NEUVE", + "nomCommune": "LA BATIE NEUVE" }, { - "codePostal": "44521", - "codeCommune": "44048", - "libelleAcheminement": "COUFFE", - "nomCommune": "COUFFE" + "codePostal": "60380", + "codeCommune": "60594", + "libelleAcheminement": "ST QUENTIN DES PRES", + "nomCommune": "ST QUENTIN DES PRES" }, { - "codePostal": "56420", - "codeCommune": "56157", - "libelleAcheminement": "PLAUDREN", - "nomCommune": "PLAUDREN" + "codePostal": "50700", + "codeCommune": "50478", + "libelleAcheminement": "ST GERMAIN DE TOURNEBUT", + "nomCommune": "ST GERMAIN DE TOURNEBUT" }, { - "codePostal": "32420", - "codeCommune": "32451", - "libelleAcheminement": "TOURNAN", - "nomCommune": "TOURNAN" + "codePostal": "52700", + "codeCommune": "52313", + "libelleAcheminement": "MAREILLES", + "nomCommune": "MAREILLES" }, { - "codePostal": "27160", - "codeCommune": "27578", - "libelleAcheminement": "STE MARIE D ATTEZ", - "nomCommune": "STE MARIE D ATTEZ" + "codePostal": "61100", + "codeCommune": "61169", + "libelleAcheminement": "FLERS", + "nomCommune": "FLERS" }, { - "codePostal": "44480", - "codeCommune": "44052", - "libelleAcheminement": "DONGES", - "nomCommune": "DONGES" + "codePostal": "05150", + "codeCommune": "05024", + "libelleAcheminement": "VALDOULE", + "nomCommune": "VALDOULE" }, { - "codePostal": "56400", - "codeCommune": "56161", - "libelleAcheminement": "PLOEMEL", - "nomCommune": "PLOEMEL" + "codePostal": "60220", + "codeCommune": "60596", + "libelleAcheminement": "ST SAMSON LA POTERIE", + "nomCommune": "ST SAMSON LA POTERIE" }, { - "codePostal": "32450", - "codeCommune": "32454", - "libelleAcheminement": "TRAVERSERES", - "nomCommune": "TRAVERSERES" + "codePostal": "50240", + "codeCommune": "50487", + "libelleAcheminement": "ST JAMES", + "nomCommune": "ST JAMES" }, { - "codePostal": "27160", - "codeCommune": "27578", - "libelleAcheminement": "STE MARIE D ATTEZ", - "nomCommune": "STE MARIE D ATTEZ" + "codePostal": "52800", + "codeCommune": "52315", + "libelleAcheminement": "MARNAY SUR MARNE", + "nomCommune": "MARNAY SUR MARNE" }, { - "codePostal": "44500", - "codeCommune": "44055", - "libelleAcheminement": "LA BAULE", - "nomCommune": "LA BAULE ESCOUBLAC" + "codePostal": "61160", + "codeCommune": "61171", + "libelleAcheminement": "FONTAINE LES BASSETS", + "nomCommune": "FONTAINE LES BASSETS" }, { - "codePostal": "56240", - "codeCommune": "56166", - "libelleAcheminement": "PLOUAY", - "nomCommune": "PLOUAY" + "codePostal": "05500", + "codeCommune": "05025", + "libelleAcheminement": "BUISSARD", + "nomCommune": "BUISSARD" }, { - "codePostal": "32230", - "codeCommune": "32455", - "libelleAcheminement": "TRONCENS", - "nomCommune": "TRONCENS" + "codePostal": "60320", + "codeCommune": "60597", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "27670", - "codeCommune": "27582", - "libelleAcheminement": "ST OUEN DU TILLEUL", - "nomCommune": "ST OUEN DU TILLEUL" + "codePostal": "50240", + "codeCommune": "50487", + "libelleAcheminement": "ST JAMES", + "nomCommune": "ST JAMES" }, { - "codePostal": "44290", - "codeCommune": "44067", - "libelleAcheminement": "GUEMENE PENFAO", - "nomCommune": "GUEMENE PENFAO" + "codePostal": "52240", + "codeCommune": "52319", + "libelleAcheminement": "MENNOUVEAUX", + "nomCommune": "MENNOUVEAUX" }, { - "codePostal": "56930", - "codeCommune": "56173", - "libelleAcheminement": "PLUMELIAU BIEUZY", - "nomCommune": "PLUMELIAU BIEUZY" + "codePostal": "61390", + "codeCommune": "61183", + "libelleAcheminement": "GAPREE", + "nomCommune": "GAPREE" }, { - "codePostal": "32190", - "codeCommune": "32462", - "libelleAcheminement": "VIC FEZENSAC", - "nomCommune": "VIC FEZENSAC" + "codePostal": "05400", + "codeCommune": "05028", + "libelleAcheminement": "CHABESTAN", + "nomCommune": "CHABESTAN" }, { - "codePostal": "27920", - "codeCommune": "27589", - "libelleAcheminement": "ST PIERRE DE BAILLEUL", - "nomCommune": "ST PIERRE DE BAILLEUL" + "codePostal": "60400", + "codeCommune": "60610", + "libelleAcheminement": "SEMPIGNY", + "nomCommune": "SEMPIGNY" }, { - "codePostal": "44410", - "codeCommune": "44072", - "libelleAcheminement": "HERBIGNAC", - "nomCommune": "HERBIGNAC" + "codePostal": "50300", + "codeCommune": "50489", + "libelleAcheminement": "ST JEAN DE LA HAIZE", + "nomCommune": "ST JEAN DE LA HAIZE" }, { - "codePostal": "56500", - "codeCommune": "56174", - "libelleAcheminement": "PLUMELIN", - "nomCommune": "PLUMELIN" + "codePostal": "52310", + "codeCommune": "52322", + "libelleAcheminement": "MEURES", + "nomCommune": "MEURES" }, { - "codePostal": "32300", - "codeCommune": "32466", - "libelleAcheminement": "VIOZAN", - "nomCommune": "VIOZAN" + "codePostal": "61150", + "codeCommune": "61194", + "libelleAcheminement": "MONTS SUR ORNE", + "nomCommune": "MONTS SUR ORNE" }, { - "codePostal": "27390", - "codeCommune": "27590", - "libelleAcheminement": "ST PIERRE DE CERNIERES", - "nomCommune": "ST PIERRE DE CERNIERES" + "codePostal": "05310", + "codeCommune": "05031", + "libelleAcheminement": "CHAMPCELLA", + "nomCommune": "CHAMPCELLA" }, { - "codePostal": "44610", - "codeCommune": "44074", - "libelleAcheminement": "INDRE", - "nomCommune": "INDRE" + "codePostal": "60650", + "codeCommune": "60611", + "libelleAcheminement": "SENANTES", + "nomCommune": "SENANTES" }, { - "codePostal": "56400", - "codeCommune": "56176", - "libelleAcheminement": "PLUNERET", - "nomCommune": "PLUNERET" + "codePostal": "50810", + "codeCommune": "50492", + "libelleAcheminement": "ST JEAN D ELLE", + "nomCommune": "ST JEAN D ELLE" }, { - "codePostal": "33500", - "codeCommune": "33015", - "libelleAcheminement": "ARVEYRES", - "nomCommune": "ARVEYRES" + "codePostal": "52220", + "codeCommune": "52331", + "libelleAcheminement": "LA PORTE DU DER", + "nomCommune": "LA PORTE DU DER" }, { - "codePostal": "27260", - "codeCommune": "27591", - "libelleAcheminement": "ST PIERRE DE CORMEILLES", - "nomCommune": "ST PIERRE DE CORMEILLES" + "codePostal": "61210", + "codeCommune": "61199", + "libelleAcheminement": "HABLOVILLE", + "nomCommune": "HABLOVILLE" }, { - "codePostal": "44670", - "codeCommune": "44078", - "libelleAcheminement": "JUIGNE DES MOUTIERS", - "nomCommune": "JUIGNE DES MOUTIERS" + "codePostal": "05350", + "codeCommune": "05038", + "libelleAcheminement": "CHATEAU VILLE VIEILLE", + "nomCommune": "CHATEAU VILLE VIEILLE" }, { - "codePostal": "56230", - "codeCommune": "56184", - "libelleAcheminement": "QUESTEMBERT", - "nomCommune": "QUESTEMBERT" + "codePostal": "60590", + "codeCommune": "60616", + "libelleAcheminement": "SERIFONTAINE", + "nomCommune": "SERIFONTAINE" }, { - "codePostal": "33240", - "codeCommune": "33016", - "libelleAcheminement": "ASQUES", - "nomCommune": "ASQUES" + "codePostal": "50810", + "codeCommune": "50492", + "libelleAcheminement": "ST JEAN D ELLE", + "nomCommune": "ST JEAN D ELLE" }, { - "codePostal": "27800", - "codeCommune": "27592", - "libelleAcheminement": "ST PIERRE DE SALERNE", - "nomCommune": "ST PIERRE DE SALERNE" + "codePostal": "52140", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "44430", - "codeCommune": "44084", - "libelleAcheminement": "LE LOROUX BOTTEREAU", - "nomCommune": "LE LOROUX BOTTEREAU" + "codePostal": "61190", + "codeCommune": "61208", + "libelleAcheminement": "IRAI", + "nomCommune": "IRAI" }, { - "codePostal": "56460", - "codeCommune": "56197", - "libelleAcheminement": "VAL D OUST", - "nomCommune": "VAL D OUST" + "codePostal": "05300", + "codeCommune": "05047", + "libelleAcheminement": "EOURRES", + "nomCommune": "EOURRES" }, { - "codePostal": "33430", - "codeCommune": "33017", - "libelleAcheminement": "AUBIAC", - "nomCommune": "AUBIAC" + "codePostal": "60330", + "codeCommune": "60619", + "libelleAcheminement": "SILLY LE LONG", + "nomCommune": "SILLY LE LONG" }, { - "codePostal": "27180", - "codeCommune": "27602", - "libelleAcheminement": "ST SEBASTIEN DE MORSENT", - "nomCommune": "ST SEBASTIEN DE MORSENT" + "codePostal": "50420", + "codeCommune": "50504", + "libelleAcheminement": "ST LOUET SUR VIRE", + "nomCommune": "ST LOUET SUR VIRE" }, { - "codePostal": "44590", - "codeCommune": "44086", - "libelleAcheminement": "LUSANGER", - "nomCommune": "LUSANGER" + "codePostal": "52140", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "56580", - "codeCommune": "56198", - "libelleAcheminement": "ROHAN", - "nomCommune": "ROHAN" + "codePostal": "61330", + "codeCommune": "61211", + "libelleAcheminement": "JUVIGNY VAL D ANDAINE", + "nomCommune": "JUVIGNY VAL D ANDAINE" }, { - "codePostal": "33480", - "codeCommune": "33022", - "libelleAcheminement": "AVENSAN", - "nomCommune": "AVENSAN" + "codePostal": "05700", + "codeCommune": "05048", + "libelleAcheminement": "L EPINE", + "nomCommune": "L EPINE" }, { - "codePostal": "27130", - "codeCommune": "27610", - "libelleAcheminement": "ST VICTOR SUR AVRE", - "nomCommune": "ST VICTOR SUR AVRE" + "codePostal": "60380", + "codeCommune": "60623", + "libelleAcheminement": "SONGEONS", + "nomCommune": "SONGEONS" }, { - "codePostal": "44690", - "codeCommune": "44088", - "libelleAcheminement": "MAISDON SUR SEVRE", - "nomCommune": "MAISDON SUR SEVRE" + "codePostal": "50300", + "codeCommune": "50505", + "libelleAcheminement": "ST LOUP", + "nomCommune": "ST LOUP" }, { - "codePostal": "56140", - "codeCommune": "56200", - "libelleAcheminement": "RUFFIAC", - "nomCommune": "RUFFIAC" + "codePostal": "52240", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "33190", - "codeCommune": "33024", - "libelleAcheminement": "BAGAS", - "nomCommune": "BAGAS" + "codePostal": "61200", + "codeCommune": "61212", + "libelleAcheminement": "JUVIGNY SUR ORNE", + "nomCommune": "JUVIGNY SUR ORNE" }, { - "codePostal": "27150", - "codeCommune": "27617", - "libelleAcheminement": "SAUSSAY LA CAMPAGNE", - "nomCommune": "SAUSSAY LA CAMPAGNE" + "codePostal": "05110", + "codeCommune": "05049", + "libelleAcheminement": "ESPARRON", + "nomCommune": "ESPARRON" }, { - "codePostal": "44522", - "codeCommune": "44096", - "libelleAcheminement": "MESANGER", - "nomCommune": "MESANGER" + "codePostal": "60380", + "codeCommune": "60624", + "libelleAcheminement": "SULLY", + "nomCommune": "SULLY" }, { - "codePostal": "56480", - "codeCommune": "56203", - "libelleAcheminement": "ST AIGNAN", - "nomCommune": "ST AIGNAN" + "codePostal": "50310", + "codeCommune": "50507", + "libelleAcheminement": "ST MARCOUF", + "nomCommune": "ST MARCOUF" }, { - "codePostal": "33760", - "codeCommune": "33025", - "libelleAcheminement": "BAIGNEAUX", - "nomCommune": "BAIGNEAUX" + "codePostal": "52110", + "codeCommune": "52341", + "libelleAcheminement": "MORANCOURT", + "nomCommune": "MORANCOURT" }, { - "codePostal": "27220", - "codeCommune": "27621", - "libelleAcheminement": "SEREZ", - "nomCommune": "SEREZ" + "codePostal": "61320", + "codeCommune": "61213", + "libelleAcheminement": "LALACELLE", + "nomCommune": "LALACELLE" }, { - "codePostal": "44690", - "codeCommune": "44100", - "libelleAcheminement": "MONNIERES", - "nomCommune": "MONNIERES" + "codePostal": "05300", + "codeCommune": "05053", + "libelleAcheminement": "GARDE COLOMBE", + "nomCommune": "GARDE COLOMBE" }, { - "codePostal": "56500", - "codeCommune": "56204", - "libelleAcheminement": "ST ALLOUESTRE", - "nomCommune": "ST ALLOUESTRE" + "codePostal": "60590", + "codeCommune": "60626", + "libelleAcheminement": "TALMONTIERS", + "nomCommune": "TALMONTIERS" }, { - "codePostal": "33880", - "codeCommune": "33033", - "libelleAcheminement": "BAURECH", - "nomCommune": "BAURECH" + "codePostal": "50210", + "codeCommune": "50513", + "libelleAcheminement": "ST MARTIN DE CENILLY", + "nomCommune": "ST MARTIN DE CENILLY" }, { - "codePostal": "27370", - "codeCommune": "27638", - "libelleAcheminement": "LE THUIT DE L OISON", - "nomCommune": "LE THUIT DE L OISON" + "codePostal": "52300", + "codeCommune": "52346", + "libelleAcheminement": "MUSSEY SUR MARNE", + "nomCommune": "MUSSEY SUR MARNE" }, { - "codePostal": "44620", - "codeCommune": "44101", - "libelleAcheminement": "LA MONTAGNE", - "nomCommune": "LA MONTAGNE" + "codePostal": "61170", + "codeCommune": "61215", + "libelleAcheminement": "LALEU", + "nomCommune": "LALEU" }, { - "codePostal": "56380", - "codeCommune": "56226", - "libelleAcheminement": "ST MALO DE BEIGNON", - "nomCommune": "ST MALO DE BEIGNON" + "codePostal": "05500", + "codeCommune": "05054", + "libelleAcheminement": "LA FARE EN CHAMPSAUR", + "nomCommune": "LA FARE EN CHAMPSAUR" }, { - "codePostal": "33430", - "codeCommune": "33036", - "libelleAcheminement": "BAZAS", - "nomCommune": "BAZAS" + "codePostal": "60520", + "codeCommune": "60631", + "libelleAcheminement": "THIERS SUR THEVE", + "nomCommune": "THIERS SUR THEVE" }, { - "codePostal": "27370", - "codeCommune": "27638", - "libelleAcheminement": "LE THUIT DE L OISON", - "nomCommune": "LE THUIT DE L OISON" + "codePostal": "50480", + "codeCommune": "50523", + "libelleAcheminement": "STE MERE EGLISE", + "nomCommune": "STE MERE EGLISE" }, { - "codePostal": "44560", - "codeCommune": "44116", - "libelleAcheminement": "PAIMBOEUF", - "nomCommune": "PAIMBOEUF" + "codePostal": "52800", + "codeCommune": "52353", + "libelleAcheminement": "NOGENT", + "nomCommune": "NOGENT" }, { - "codePostal": "56490", - "codeCommune": "56227", - "libelleAcheminement": "ST MALO DES TROIS FONTAINES", - "nomCommune": "ST MALO DES TROIS FONTAINES" + "codePostal": "61100", + "codeCommune": "61218", + "libelleAcheminement": "LA LANDE PATRY", + "nomCommune": "LA LANDE PATRY" }, { - "codePostal": "33760", - "codeCommune": "33044", - "libelleAcheminement": "BELLEFOND", - "nomCommune": "BELLEFOND" + "codePostal": "05400", + "codeCommune": "05060", + "libelleAcheminement": "FURMEYER", + "nomCommune": "FURMEYER" }, { - "codePostal": "27110", - "codeCommune": "27641", - "libelleAcheminement": "LE TILLEUL LAMBERT", - "nomCommune": "LE TILLEUL LAMBERT" + "codePostal": "60310", + "codeCommune": "60632", + "libelleAcheminement": "THIESCOURT", + "nomCommune": "THIESCOURT" }, { - "codePostal": "44770", - "codeCommune": "44126", - "libelleAcheminement": "LA PLAINE SUR MER", - "nomCommune": "LA PLAINE SUR MER" + "codePostal": "50300", + "codeCommune": "50531", + "libelleAcheminement": "ST OVIN", + "nomCommune": "ST OVIN" }, { - "codePostal": "56470", - "codeCommune": "56233", - "libelleAcheminement": "ST PHILIBERT", - "nomCommune": "ST PHILIBERT" + "codePostal": "52190", + "codeCommune": "52360", + "libelleAcheminement": "OCCEY", + "nomCommune": "OCCEY" }, { - "codePostal": "33350", - "codeCommune": "33045", - "libelleAcheminement": "BELVES DE CASTILLON", - "nomCommune": "BELVES DE CASTILLON" + "codePostal": "61100", + "codeCommune": "61222", + "libelleAcheminement": "LANDISACQ", + "nomCommune": "LANDISACQ" }, { - "codePostal": "27440", - "codeCommune": "27649", - "libelleAcheminement": "TOUFFREVILLE", - "nomCommune": "TOUFFREVILLE" + "codePostal": "05000", + "codeCommune": "05061", + "libelleAcheminement": "GAP", + "nomCommune": "GAP" }, { - "codePostal": "44140", - "codeCommune": "44127", - "libelleAcheminement": "LA PLANCHE", - "nomCommune": "LA PLANCHE" + "codePostal": "60480", + "codeCommune": "60634", + "libelleAcheminement": "THIEUX", + "nomCommune": "THIEUX" }, { - "codePostal": "56120", - "codeCommune": "56236", - "libelleAcheminement": "ST SERVANT", - "nomCommune": "ST SERVANT" + "codePostal": "50400", + "codeCommune": "50541", + "libelleAcheminement": "ST PLANCHERS", + "nomCommune": "ST PLANCHERS" }, { - "codePostal": "33750", - "codeCommune": "33049", - "libelleAcheminement": "BEYCHAC ET CAILLAU", - "nomCommune": "BEYCHAC ET CAILLAU" + "codePostal": "52600", + "codeCommune": "52375", + "libelleAcheminement": "PALAISEUL", + "nomCommune": "PALAISEUL" }, { - "codePostal": "27930", - "codeCommune": "27684", - "libelleAcheminement": "LE VIEIL EVREUX", - "nomCommune": "LE VIEIL EVREUX" + "codePostal": "61290", + "codeCommune": "61230", + "libelleAcheminement": "LONGNY LES VILLAGES", + "nomCommune": "LONGNY LES VILLAGES" }, { - "codePostal": "44160", - "codeCommune": "44129", - "libelleAcheminement": "PONTCHATEAU", - "nomCommune": "PONTCHATEAU" + "codePostal": "05000", + "codeCommune": "05061", + "libelleAcheminement": "GAP", + "nomCommune": "GAP" }, { - "codePostal": "56300", - "codeCommune": "56237", - "libelleAcheminement": "ST THURIAU", - "nomCommune": "ST THURIAU" + "codePostal": "60160", + "codeCommune": "60635", + "libelleAcheminement": "THIVERNY", + "nomCommune": "THIVERNY" }, { - "codePostal": "33340", - "codeCommune": "33055", - "libelleAcheminement": "BLAIGNAN PRIGNAC", - "nomCommune": "BLAIGNAN PRIGNAC" + "codePostal": "50220", + "codeCommune": "50543", + "libelleAcheminement": "ST QUENTIN SUR LE HOMME", + "nomCommune": "ST QUENTIN SUR LE HOMME" }, { - "codePostal": "27680", - "codeCommune": "27686", - "libelleAcheminement": "VIEUX PORT", - "nomCommune": "VIEUX PORT" + "codePostal": "52200", + "codeCommune": "52383", + "libelleAcheminement": "PERRANCEY LES VIEUX MOULINS", + "nomCommune": "PERRANCEY LES VIEUX MOULINS" }, { - "codePostal": "44260", - "codeCommune": "44137", - "libelleAcheminement": "PRINQUIAU", - "nomCommune": "PRINQUIAU" + "codePostal": "61290", + "codeCommune": "61230", + "libelleAcheminement": "LONGNY LES VILLAGES", + "nomCommune": "LONGNY LES VILLAGES" }, { - "codePostal": "56540", - "codeCommune": "56238", - "libelleAcheminement": "ST TUGDUAL", - "nomCommune": "ST TUGDUAL" + "codePostal": "05800", + "codeCommune": "05064", + "libelleAcheminement": "LA CHAPELLE EN VALGAUDEMAR", + "nomCommune": "LA CHAPELLE EN VALGAUDEMAR" }, { - "codePostal": "33910", - "codeCommune": "33062", - "libelleAcheminement": "BONZAC", - "nomCommune": "BONZAC" + "codePostal": "60150", + "codeCommune": "60636", + "libelleAcheminement": "THOUROTTE", + "nomCommune": "THOUROTTE" }, { - "codePostal": "27240", - "codeCommune": "27693", - "libelleAcheminement": "SYLVAINS LES MOULINS", - "nomCommune": "SYLVAINS LES MOULINS" + "codePostal": "50750", + "codeCommune": "50546", + "libelleAcheminement": "BOURGVALLEES", + "nomCommune": "BOURGVALLEES" }, { - "codePostal": "44440", - "codeCommune": "44144", - "libelleAcheminement": "RIAILLE", - "nomCommune": "RIAILLE" + "codePostal": "52200", + "codeCommune": "52383", + "libelleAcheminement": "PERRANCEY LES VIEUX MOULINS", + "nomCommune": "PERRANCEY LES VIEUX MOULINS" }, { - "codePostal": "56350", - "codeCommune": "56239", - "libelleAcheminement": "ST VINCENT SUR OUST", - "nomCommune": "ST VINCENT SUR OUST" + "codePostal": "61600", + "codeCommune": "61233", + "libelleAcheminement": "LONLAY LE TESSON", + "nomCommune": "LONLAY LE TESSON" }, { - "codePostal": "33880", - "codeCommune": "33084", - "libelleAcheminement": "CAMBES", - "nomCommune": "CAMBES" + "codePostal": "05700", + "codeCommune": "05076", + "libelleAcheminement": "MEREUIL", + "nomCommune": "MEREUIL" }, { - "codePostal": "27950", - "codeCommune": "27694", - "libelleAcheminement": "VILLEZ SOUS BAILLEUL", - "nomCommune": "VILLEZ SOUS BAILLEUL" + "codePostal": "60250", + "codeCommune": "60638", + "libelleAcheminement": "THURY SOUS CLERMONT", + "nomCommune": "THURY SOUS CLERMONT" }, { - "codePostal": "44390", - "codeCommune": "44149", - "libelleAcheminement": "SAFFRE", - "nomCommune": "SAFFRE" + "codePostal": "50490", + "codeCommune": "50550", + "libelleAcheminement": "ST SAUVEUR VILLAGES", + "nomCommune": "ST SAUVEUR VILLAGES" }, { - "codePostal": "56360", - "codeCommune": "56241", - "libelleAcheminement": "SAUZON", - "nomCommune": "SAUZON" + "codePostal": "52160", + "codeCommune": "52384", + "libelleAcheminement": "PERROGNEY LES FONTAINES", + "nomCommune": "PERROGNEY LES FONTAINES" }, { - "codePostal": "33660", - "codeCommune": "33088", - "libelleAcheminement": "CAMPS SUR L ISLE", - "nomCommune": "CAMPS SUR L ISLE" + "codePostal": "61150", + "codeCommune": "61237", + "libelleAcheminement": "LOUGE SUR MAIRE", + "nomCommune": "LOUGE SUR MAIRE" }, { - "codePostal": "28410", - "codeCommune": "28001", - "libelleAcheminement": "ABONDANT", - "nomCommune": "ABONDANT" + "codePostal": "05350", + "codeCommune": "05077", + "libelleAcheminement": "MOLINES EN QUEYRAS", + "nomCommune": "MOLINES EN QUEYRAS" }, { - "codePostal": "44160", - "codeCommune": "44152", - "libelleAcheminement": "STE ANNE SUR BRIVET", - "nomCommune": "STE ANNE SUR BRIVET" + "codePostal": "60000", + "codeCommune": "60639", + "libelleAcheminement": "TILLE", + "nomCommune": "TILLE" }, { - "codePostal": "56860", - "codeCommune": "56243", - "libelleAcheminement": "SENE", - "nomCommune": "SENE" + "codePostal": "50490", + "codeCommune": "50550", + "libelleAcheminement": "ST SAUVEUR VILLAGES", + "nomCommune": "ST SAUVEUR VILLAGES" }, { - "codePostal": "33220", - "codeCommune": "33094", - "libelleAcheminement": "CAPLONG", - "nomCommune": "CAPLONG" + "codePostal": "52500", + "codeCommune": "52388", + "libelleAcheminement": "PIERREMONT SUR AMANCE", + "nomCommune": "PIERREMONT SUR AMANCE" }, { - "codePostal": "28150", - "codeCommune": "28004", - "libelleAcheminement": "ALLONNES", - "nomCommune": "ALLONNES" + "codePostal": "61160", + "codeCommune": "61238", + "libelleAcheminement": "LOUVIERES EN AUGE", + "nomCommune": "LOUVIERES EN AUGE" }, { - "codePostal": "44250", - "codeCommune": "44154", - "libelleAcheminement": "ST BREVIN LES PINS", - "nomCommune": "ST BREVIN LES PINS" + "codePostal": "05150", + "codeCommune": "05086", + "libelleAcheminement": "MONTJAY", + "nomCommune": "MONTJAY" }, { - "codePostal": "56300", - "codeCommune": "56246", - "libelleAcheminement": "LE SOURN", - "nomCommune": "LE SOURN" + "codePostal": "60240", + "codeCommune": "60640", + "libelleAcheminement": "TOURLY", + "nomCommune": "TOURLY" }, { - "codePostal": "33121", - "codeCommune": "33097", - "libelleAcheminement": "CARCANS", - "nomCommune": "CARCANS" + "codePostal": "50490", + "codeCommune": "50550", + "libelleAcheminement": "ST SAUVEUR VILLAGES", + "nomCommune": "ST SAUVEUR VILLAGES" }, { - "codePostal": "28220", - "codeCommune": "28012", - "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", - "nomCommune": "COMMUNE NOUVELLE D ARROU" + "codePostal": "52500", + "codeCommune": "52388", + "libelleAcheminement": "PIERREMONT SUR AMANCE", + "nomCommune": "PIERREMONT SUR AMANCE" }, { - "codePostal": "44310", - "codeCommune": "44155", - "libelleAcheminement": "ST COLOMBAN", - "nomCommune": "ST COLOMBAN" + "codePostal": "61380", + "codeCommune": "61244", + "libelleAcheminement": "MAHERU", + "nomCommune": "MAHERU" }, { - "codePostal": "56450", - "codeCommune": "56251", - "libelleAcheminement": "THEIX NOYALO", - "nomCommune": "THEIX NOYALO" + "codePostal": "05170", + "codeCommune": "05096", + "libelleAcheminement": "ORCIERES", + "nomCommune": "ORCIERES" }, { - "codePostal": "33410", - "codeCommune": "33098", - "libelleAcheminement": "CARDAN", - "nomCommune": "CARDAN" + "codePostal": "60350", + "codeCommune": "60647", + "libelleAcheminement": "TROSLY BREUIL", + "nomCommune": "TROSLY BREUIL" }, { - "codePostal": "28290", - "codeCommune": "28012", - "libelleAcheminement": "COMMUNE NOUVELLE D ARROU", - "nomCommune": "COMMUNE NOUVELLE D ARROU" + "codePostal": "50240", + "codeCommune": "50553", + "libelleAcheminement": "ST SENIER DE BEUVRON", + "nomCommune": "ST SENIER DE BEUVRON" }, { - "codePostal": "44310", - "codeCommune": "44155", - "libelleAcheminement": "ST COLOMBAN", - "nomCommune": "ST COLOMBAN" + "codePostal": "52500", + "codeCommune": "52390", + "libelleAcheminement": "PISSELOUP", + "nomCommune": "PISSELOUP" }, { - "codePostal": "56250", - "codeCommune": "56254", - "libelleAcheminement": "TREDION", - "nomCommune": "TREDION" + "codePostal": "61570", + "codeCommune": "61256", + "libelleAcheminement": "MEDAVY", + "nomCommune": "MEDAVY" }, { - "codePostal": "33390", - "codeCommune": "33100", - "libelleAcheminement": "CARS", - "nomCommune": "CARS" + "codePostal": "05700", + "codeCommune": "05097", + "libelleAcheminement": "ORPIERRE", + "nomCommune": "ORPIERRE" }, { - "codePostal": "28330", - "codeCommune": "28018", - "libelleAcheminement": "AUTHON DU PERCHE", - "nomCommune": "AUTHON DU PERCHE" + "codePostal": "60400", + "codeCommune": "60655", + "libelleAcheminement": "VARESNES", + "nomCommune": "VARESNES" }, { - "codePostal": "44800", - "codeCommune": "44162", - "libelleAcheminement": "ST HERBLAIN", - "nomCommune": "ST HERBLAIN" + "codePostal": "50550", + "codeCommune": "50562", + "libelleAcheminement": "ST VAAST LA HOUGUE", + "nomCommune": "ST VAAST LA HOUGUE" }, { - "codePostal": "56250", - "codeCommune": "56261", - "libelleAcheminement": "LA VRAIE CROIX", - "nomCommune": "LA VRAIE CROIX" + "codePostal": "52160", + "codeCommune": "52393", + "libelleAcheminement": "POINSENOT", + "nomCommune": "POINSENOT" }, { - "codePostal": "33690", - "codeCommune": "33113", - "libelleAcheminement": "CAUVIGNAC", - "nomCommune": "CAUVIGNAC" + "codePostal": "61250", + "codeCommune": "61263", + "libelleAcheminement": "MENIL ERREUX", + "nomCommune": "MENIL ERREUX" }, { - "codePostal": "28120", - "codeCommune": "28021", - "libelleAcheminement": "BAILLEAU LE PIN", - "nomCommune": "BAILLEAU LE PIN" + "codePostal": "05200", + "codeCommune": "05108", + "libelleAcheminement": "PUY ST EUSEBE", + "nomCommune": "PUY ST EUSEBE" }, { - "codePostal": "44150", - "codeCommune": "44163", - "libelleAcheminement": "VAIR SUR LOIRE", - "nomCommune": "VAIR SUR LOIRE" + "codePostal": "60400", + "codeCommune": "60657", + "libelleAcheminement": "VAUCHELLES", + "nomCommune": "VAUCHELLES" }, { - "codePostal": "57920", - "codeCommune": "57001", - "libelleAcheminement": "ABONCOURT", - "nomCommune": "ABONCOURT" + "codePostal": "50550", + "codeCommune": "50562", + "libelleAcheminement": "ST VAAST LA HOUGUE", + "nomCommune": "ST VAAST LA HOUGUE" }, { - "codePostal": "33113", - "codeCommune": "33115", - "libelleAcheminement": "CAZALIS", - "nomCommune": "CAZALIS" + "codePostal": "52230", + "codeCommune": "52398", + "libelleAcheminement": "POISSONS", + "nomCommune": "POISSONS" }, { - "codePostal": "28310", - "codeCommune": "28026", - "libelleAcheminement": "BAUDREVILLE", - "nomCommune": "BAUDREVILLE" + "codePostal": "61230", + "codeCommune": "61268", + "libelleAcheminement": "MENIL HUBERT EN EXMES", + "nomCommune": "MENIL HUBERT EN EXMES" }, { - "codePostal": "44680", - "codeCommune": "44164", - "libelleAcheminement": "ST HILAIRE DE CHALEONS", - "nomCommune": "ST HILAIRE DE CHALEONS" + "codePostal": "05400", + "codeCommune": "05112", + "libelleAcheminement": "RABOU", + "nomCommune": "RABOU" }, { - "codePostal": "57590", - "codeCommune": "57010", - "libelleAcheminement": "ALAINCOURT LA COTE", - "nomCommune": "ALAINCOURT LA COTE" + "codePostal": "60117", + "codeCommune": "60658", + "libelleAcheminement": "VAUCIENNES", + "nomCommune": "VAUCIENNES" }, { - "codePostal": "33250", - "codeCommune": "33125", - "libelleAcheminement": "CISSAC MEDOC", - "nomCommune": "CISSAC MEDOC" + "codePostal": "50500", + "codeCommune": "50564", + "libelleAcheminement": "TERRE ET MARAIS", + "nomCommune": "TERRE ET MARAIS" }, { - "codePostal": "28330", - "codeCommune": "28027", - "libelleAcheminement": "LA BAZOCHE GOUET", - "nomCommune": "LA BAZOCHE GOUET" + "codePostal": "52400", + "codeCommune": "52400", + "libelleAcheminement": "LE CHATELET SUR MEUSE", + "nomCommune": "LE CHATELET SUR MEUSE" }, { - "codePostal": "44640", - "codeCommune": "44166", - "libelleAcheminement": "ST JEAN DE BOISEAU", - "nomCommune": "ST JEAN DE BOISEAU" + "codePostal": "61240", + "codeCommune": "61272", + "libelleAcheminement": "LE MENIL VICOMTE", + "nomCommune": "LE MENIL VICOMTE" }, { - "codePostal": "57670", - "codeCommune": "57011", - "libelleAcheminement": "ALBESTROFF", - "nomCommune": "ALBESTROFF" + "codePostal": "05300", + "codeCommune": "05118", + "libelleAcheminement": "VAL BUECH MEOUGE", + "nomCommune": "VAL BUECH MEOUGE" }, { - "codePostal": "33690", - "codeCommune": "33137", - "libelleAcheminement": "COURS LES BAINS", - "nomCommune": "COURS LES BAINS" + "codePostal": "60120", + "codeCommune": "60664", + "libelleAcheminement": "VENDEUIL CAPLY", + "nomCommune": "VENDEUIL CAPLY" }, { - "codePostal": "28240", - "codeCommune": "28033", - "libelleAcheminement": "BELHOMERT GUEHOUVILLE", - "nomCommune": "BELHOMERT GUEHOUVILLE" + "codePostal": "50500", + "codeCommune": "50564", + "libelleAcheminement": "TERRE ET MARAIS", + "nomCommune": "TERRE ET MARAIS" }, { - "codePostal": "44310", - "codeCommune": "44174", - "libelleAcheminement": "ST LUMINE DE COUTAIS", - "nomCommune": "ST LUMINE DE COUTAIS" + "codePostal": "52160", + "codeCommune": "52403", + "libelleAcheminement": "PRASLAY", + "nomCommune": "PRASLAY" }, { - "codePostal": "57320", - "codeCommune": "57016", - "libelleAcheminement": "ALZING", - "nomCommune": "ALZING" + "codePostal": "61800", + "codeCommune": "61281", + "libelleAcheminement": "MONCY", + "nomCommune": "MONCY" }, { - "codePostal": "33230", - "codeCommune": "33138", - "libelleAcheminement": "COUTRAS", - "nomCommune": "COUTRAS" + "codePostal": "05200", + "codeCommune": "05128", + "libelleAcheminement": "ST ANDRE D EMBRUN", + "nomCommune": "ST ANDRE D EMBRUN" }, { - "codePostal": "28270", - "codeCommune": "28037", - "libelleAcheminement": "BEROU LA MULOTIERE", - "nomCommune": "BEROU LA MULOTIERE" + "codePostal": "60950", + "codeCommune": "60666", + "libelleAcheminement": "VER SUR LAUNETTE", + "nomCommune": "VER SUR LAUNETTE" }, { - "codePostal": "44410", - "codeCommune": "44175", - "libelleAcheminement": "ST LYPHARD", - "nomCommune": "ST LYPHARD" + "codePostal": "50530", + "codeCommune": "50565", + "libelleAcheminement": "SARTILLY BAIE BOCAGE", + "nomCommune": "SARTILLY BAIE BOCAGE" }, { - "codePostal": "57360", - "codeCommune": "57019", - "libelleAcheminement": "AMNEVILLE LES THERMES", - "nomCommune": "AMNEVILLE" + "codePostal": "52190", + "codeCommune": "52405", + "libelleAcheminement": "LE MONTSAUGEONNAIS", + "nomCommune": "LE MONTSAUGEONNAIS" }, { - "codePostal": "33620", - "codeCommune": "33142", - "libelleAcheminement": "CUBNEZAIS", - "nomCommune": "CUBNEZAIS" + "codePostal": "61170", + "codeCommune": "61284", + "libelleAcheminement": "MONTCHEVREL", + "nomCommune": "MONTCHEVREL" }, { - "codePostal": "28330", - "codeCommune": "28038", - "libelleAcheminement": "BETHONVILLIERS", - "nomCommune": "BETHONVILLIERS" + "codePostal": "05500", + "codeCommune": "05132", + "libelleAcheminement": "ST BONNET EN CHAMPSAUR", + "nomCommune": "ST BONNET EN CHAMPSAUR" }, { - "codePostal": "44540", - "codeCommune": "44180", - "libelleAcheminement": "VALLONS DE L ERDRE", - "nomCommune": "VALLONS DE L ERDRE" + "codePostal": "60410", + "codeCommune": "60667", + "libelleAcheminement": "VERBERIE", + "nomCommune": "VERBERIE" }, { - "codePostal": "57130", - "codeCommune": "57021", - "libelleAcheminement": "ANCY DORNOT", - "nomCommune": "ANCY DORNOT" + "codePostal": "50210", + "codeCommune": "50569", + "libelleAcheminement": "SAVIGNY", + "nomCommune": "SAVIGNY" }, { - "codePostal": "33540", - "codeCommune": "33149", - "libelleAcheminement": "DAUBEZE", - "nomCommune": "DAUBEZE" + "codePostal": "52220", + "codeCommune": "52411", + "libelleAcheminement": "RIVES DERVOISES", + "nomCommune": "RIVES DERVOISES" }, { - "codePostal": "28150", - "codeCommune": "28047", - "libelleAcheminement": "BOISVILLE LA ST PERE", - "nomCommune": "BOISVILLE LA ST PERE" + "codePostal": "61570", + "codeCommune": "61288", + "libelleAcheminement": "MONTMERREI", + "nomCommune": "MONTMERREI" }, { - "codePostal": "44540", - "codeCommune": "44180", - "libelleAcheminement": "VALLONS DE L ERDRE", - "nomCommune": "VALLONS DE L ERDRE" + "codePostal": "05700", + "codeCommune": "05135", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "57640", - "codeCommune": "57024", - "libelleAcheminement": "ANTILLY", - "nomCommune": "ANTILLY" + "codePostal": "60550", + "codeCommune": "60670", + "libelleAcheminement": "VERNEUIL EN HALATTE", + "nomCommune": "VERNEUIL EN HALATTE" }, { - "codePostal": "33420", - "codeCommune": "33157", - "libelleAcheminement": "ESPIET", - "nomCommune": "ESPIET" + "codePostal": "50690", + "codeCommune": "50575", + "libelleAcheminement": "SIDEVILLE", + "nomCommune": "SIDEVILLE" }, { - "codePostal": "28210", - "codeCommune": "28054", - "libelleAcheminement": "LE BOULLAY MIVOYE", - "nomCommune": "LE BOULLAY MIVOYE" + "codePostal": "52170", + "codeCommune": "52414", + "libelleAcheminement": "RACHECOURT SUR MARNE", + "nomCommune": "RACHECOURT SUR MARNE" }, { - "codePostal": "44540", - "codeCommune": "44180", - "libelleAcheminement": "VALLONS DE L ERDRE", - "nomCommune": "VALLONS DE L ERDRE" + "codePostal": "61500", + "codeCommune": "61294", + "libelleAcheminement": "MORTREE", + "nomCommune": "MORTREE" }, { - "codePostal": "57480", - "codeCommune": "57026", - "libelleAcheminement": "APACH", - "nomCommune": "APACH" + "codePostal": "05250", + "codeCommune": "05139", + "libelleAcheminement": "LE DEVOLUY", + "nomCommune": "LE DEVOLUY" }, { - "codePostal": "33190", - "codeCommune": "33158", - "libelleAcheminement": "LES ESSEINTES", - "nomCommune": "LES ESSEINTES" + "codePostal": "60400", + "codeCommune": "60676", + "libelleAcheminement": "VILLE", + "nomCommune": "VILLE" }, { - "codePostal": "28410", - "codeCommune": "28056", - "libelleAcheminement": "BOUTIGNY PROUAIS", - "nomCommune": "BOUTIGNY PROUAIS" + "codePostal": "50150", + "codeCommune": "50582", + "libelleAcheminement": "SOURDEVAL", + "nomCommune": "SOURDEVAL" }, { - "codePostal": "44540", - "codeCommune": "44180", - "libelleAcheminement": "VALLONS DE L ERDRE", - "nomCommune": "VALLONS DE L ERDRE" + "codePostal": "52700", + "codeCommune": "52420", + "libelleAcheminement": "REYNEL", + "nomCommune": "REYNEL" }, { - "codePostal": "57680", - "codeCommune": "57030", - "libelleAcheminement": "ARRY", - "nomCommune": "ARRY" + "codePostal": "61120", + "codeCommune": "61307", + "libelleAcheminement": "NEUVILLE SUR TOUQUES", + "nomCommune": "NEUVILLE SUR TOUQUES" }, { - "codePostal": "33820", - "codeCommune": "33159", - "libelleAcheminement": "ETAULIERS", - "nomCommune": "ETAULIERS" + "codePostal": "05250", + "codeCommune": "05139", + "libelleAcheminement": "LE DEVOLUY", + "nomCommune": "LE DEVOLUY" }, { - "codePostal": "28800", - "codeCommune": "28057", - "libelleAcheminement": "BOUVILLE", - "nomCommune": "BOUVILLE" + "codePostal": "60650", + "codeCommune": "60677", + "libelleAcheminement": "VILLEMBRAY", + "nomCommune": "VILLEMBRAY" }, { - "codePostal": "44260", - "codeCommune": "44195", - "libelleAcheminement": "SAVENAY", - "nomCommune": "SAVENAY" + "codePostal": "50270", + "codeCommune": "50585", + "libelleAcheminement": "SURTAINVILLE", + "nomCommune": "SURTAINVILLE" }, { - "codePostal": "57590", - "codeCommune": "57040", - "libelleAcheminement": "AULNOIS SUR SEILLE", - "nomCommune": "AULNOIS SUR SEILLE" + "codePostal": "52260", + "codeCommune": "52432", + "libelleAcheminement": "ROLAMPONT", + "nomCommune": "ROLAMPONT" }, { - "codePostal": "33220", - "codeCommune": "33160", - "libelleAcheminement": "EYNESSE", - "nomCommune": "EYNESSE" + "codePostal": "61340", + "codeCommune": "61309", + "libelleAcheminement": "PERCHE EN NOCE", + "nomCommune": "PERCHE EN NOCE" }, { - "codePostal": "28300", - "codeCommune": "28060", - "libelleAcheminement": "BRICONVILLE", - "nomCommune": "BRICONVILLE" + "codePostal": "05250", + "codeCommune": "05139", + "libelleAcheminement": "LE DEVOLUY", + "nomCommune": "LE DEVOLUY" }, { - "codePostal": "44110", - "codeCommune": "44199", - "libelleAcheminement": "SOUDAN", - "nomCommune": "SOUDAN" + "codePostal": "60420", + "codeCommune": "60698", + "libelleAcheminement": "WACQUEMOULIN", + "nomCommune": "WACQUEMOULIN" }, { - "codePostal": "57810", - "codeCommune": "57044", - "libelleAcheminement": "AZOUDANGE", - "nomCommune": "AZOUDANGE" + "codePostal": "50390", + "codeCommune": "50587", + "libelleAcheminement": "TAILLEPIED", + "nomCommune": "TAILLEPIED" }, { - "codePostal": "33390", - "codeCommune": "33161", - "libelleAcheminement": "EYRANS", - "nomCommune": "EYRANS" + "codePostal": "52320", + "codeCommune": "52436", + "libelleAcheminement": "ROUECOURT", + "nomCommune": "ROUECOURT" }, { - "codePostal": "28410", - "codeCommune": "28062", - "libelleAcheminement": "BROUE", - "nomCommune": "BROUE" + "codePostal": "61340", + "codeCommune": "61309", + "libelleAcheminement": "PERCHE EN NOCE", + "nomCommune": "PERCHE EN NOCE" }, { - "codePostal": "44370", - "codeCommune": "44213", - "libelleAcheminement": "LOIREAUXENCE", - "nomCommune": "LOIREAUXENCE" + "codePostal": "05120", + "codeCommune": "05151", + "libelleAcheminement": "ST MARTIN DE QUEYRIERES", + "nomCommune": "ST MARTIN DE QUEYRIERES" }, { - "codePostal": "57580", - "codeCommune": "57054", - "libelleAcheminement": "BAUDRECOURT", - "nomCommune": "BAUDRECOURT" + "codePostal": "61100", + "codeCommune": "61007", + "libelleAcheminement": "ATHIS VAL DE ROUVRE", + "nomCommune": "ATHIS VAL DE ROUVRE" }, { - "codePostal": "33230", - "codeCommune": "33166", - "libelleAcheminement": "LE FIEU", - "nomCommune": "LE FIEU" + "codePostal": "50170", + "codeCommune": "50589", + "libelleAcheminement": "TANIS", + "nomCommune": "TANIS" }, { - "codePostal": "28410", - "codeCommune": "28064", - "libelleAcheminement": "BU", - "nomCommune": "BU" + "codePostal": "52160", + "codeCommune": "52437", + "libelleAcheminement": "ROUELLES", + "nomCommune": "ROUELLES" }, { - "codePostal": "44170", - "codeCommune": "44214", - "libelleAcheminement": "VAY", - "nomCommune": "VAY" + "codePostal": "61210", + "codeCommune": "61339", + "libelleAcheminement": "PUTANGES LE LAC", + "nomCommune": "PUTANGES LE LAC" }, { - "codePostal": "57670", - "codeCommune": "57060", - "libelleAcheminement": "BENESTROFF", - "nomCommune": "BENESTROFF" + "codePostal": "05300", + "codeCommune": "05155", + "libelleAcheminement": "ST PIERRE AVEZ", + "nomCommune": "ST PIERRE AVEZ" }, { - "codePostal": "33190", - "codeCommune": "33170", - "libelleAcheminement": "FONTET", - "nomCommune": "FONTET" + "codePostal": "61270", + "codeCommune": "61012", + "libelleAcheminement": "AUGUAISE", + "nomCommune": "AUGUAISE" }, { - "codePostal": "28400", - "codeCommune": "28072", - "libelleAcheminement": "CHAMPROND EN PERCHET", - "nomCommune": "CHAMPROND EN PERCHET" + "codePostal": "50300", + "codeCommune": "50597", + "libelleAcheminement": "TIREPIED SUR SEE", + "nomCommune": "TIREPIED SUR SEE" }, { - "codePostal": "44120", - "codeCommune": "44215", - "libelleAcheminement": "VERTOU", - "nomCommune": "VERTOU" + "codePostal": "52500", + "codeCommune": "52438", + "libelleAcheminement": "ROUGEUX", + "nomCommune": "ROUGEUX" }, { - "codePostal": "57930", - "codeCommune": "57066", - "libelleAcheminement": "BERTHELMING", - "nomCommune": "BERTHELMING" + "codePostal": "61250", + "codeCommune": "61341", + "libelleAcheminement": "ECOUVES", + "nomCommune": "ECOUVES" }, { - "codePostal": "33570", - "codeCommune": "33173", - "libelleAcheminement": "FRANCS", - "nomCommune": "FRANCS" + "codePostal": "05300", + "codeCommune": "05159", + "libelleAcheminement": "SALEON", + "nomCommune": "SALEON" }, { - "codePostal": "28700", - "codeCommune": "28074", - "libelleAcheminement": "LA CHAPELLE D AUNAINVILLE", - "nomCommune": "LA CHAPELLE D AUNAINVILLE" + "codePostal": "61150", + "codeCommune": "61020", + "libelleAcheminement": "AVOINE", + "nomCommune": "AVOINE" }, { - "codePostal": "44360", - "codeCommune": "44217", - "libelleAcheminement": "VIGNEUX DE BRETAGNE", - "nomCommune": "VIGNEUX DE BRETAGNE" + "codePostal": "50870", + "codeCommune": "50597", + "libelleAcheminement": "TIREPIED SUR SEE", + "nomCommune": "TIREPIED SUR SEE" }, { - "codePostal": "57410", - "codeCommune": "57074", - "libelleAcheminement": "BETTVILLER", - "nomCommune": "BETTVILLER" + "codePostal": "52700", + "codeCommune": "52444", + "libelleAcheminement": "ST BLIN", + "nomCommune": "ST BLIN" }, { - "codePostal": "33430", - "codeCommune": "33178", - "libelleAcheminement": "GAJAC", - "nomCommune": "GAJAC" + "codePostal": "61250", + "codeCommune": "61341", + "libelleAcheminement": "ECOUVES", + "nomCommune": "ECOUVES" }, { - "codePostal": "28340", - "codeCommune": "28077", - "libelleAcheminement": "LA CHAPELLE FORTIN", - "nomCommune": "LA CHAPELLE FORTIN" + "codePostal": "05240", + "codeCommune": "05161", + "libelleAcheminement": "LA SALLE LES ALPES", + "nomCommune": "LA SALLE LES ALPES" }, { - "codePostal": "44360", - "codeCommune": "44217", - "libelleAcheminement": "VIGNEUX DE BRETAGNE", - "nomCommune": "VIGNEUX DE BRETAGNE" + "codePostal": "61450", + "codeCommune": "61024", + "libelleAcheminement": "BANVOU", + "nomCommune": "BANVOU" }, { - "codePostal": "57630", - "codeCommune": "57077", - "libelleAcheminement": "BEZANGE LA PETITE", - "nomCommune": "BEZANGE LA PETITE" + "codePostal": "50330", + "codeCommune": "50598", + "libelleAcheminement": "TOCQUEVILLE", + "nomCommune": "TOCQUEVILLE" }, { - "codePostal": "33840", - "codeCommune": "33190", - "libelleAcheminement": "GOUALADE", - "nomCommune": "GOUALADE" + "codePostal": "52100", + "codeCommune": "52448", + "libelleAcheminement": "ST DIZIER", + "nomCommune": "ST DIZIER" }, { - "codePostal": "28300", - "codeCommune": "28100", - "libelleAcheminement": "CINTRAY", - "nomCommune": "CINTRAY" + "codePostal": "61230", + "codeCommune": "61347", + "libelleAcheminement": "RESENLIEU", + "nomCommune": "RESENLIEU" }, { - "codePostal": "44522", - "codeCommune": "44222", - "libelleAcheminement": "LA ROCHE BLANCHE", - "nomCommune": "LA ROCHE BLANCHE" + "codePostal": "05700", + "codeCommune": "05167", + "libelleAcheminement": "SIGOTTIER", + "nomCommune": "SIGOTTIER" }, { - "codePostal": "57320", - "codeCommune": "57079", - "libelleAcheminement": "BIBICHE", - "nomCommune": "BIBICHE" + "codePostal": "61210", + "codeCommune": "61028", + "libelleAcheminement": "BAZOCHES AU HOULME", + "nomCommune": "BAZOCHES AU HOULME" }, { - "codePostal": "33690", - "codeCommune": "33195", - "libelleAcheminement": "GRIGNOLS", - "nomCommune": "GRIGNOLS" + "codePostal": "50200", + "codeCommune": "50603", + "libelleAcheminement": "TOURVILLE SUR SIENNE", + "nomCommune": "TOURVILLE SUR SIENNE" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "52200", + "codeCommune": "52449", + "libelleAcheminement": "SAINTS GEOSMES", + "nomCommune": "SAINTS GEOSMES" }, { - "codePostal": "45230", - "codeCommune": "45001", - "libelleAcheminement": "ADON", - "nomCommune": "ADON" + "codePostal": "61160", + "codeCommune": "61352", + "libelleAcheminement": "RONAI", + "nomCommune": "RONAI" }, { - "codePostal": "57260", - "codeCommune": "57081", - "libelleAcheminement": "BIDESTROFF", - "nomCommune": "BIDESTROFF" + "codePostal": "05130", + "codeCommune": "05168", + "libelleAcheminement": "SIGOYER", + "nomCommune": "SIGOYER" }, { - "codePostal": "33470", - "codeCommune": "33199", - "libelleAcheminement": "GUJAN MESTRAS", - "nomCommune": "GUJAN MESTRAS" + "codePostal": "61560", + "codeCommune": "61029", + "libelleAcheminement": "BAZOCHES SUR HOENE", + "nomCommune": "BAZOCHES SUR HOENE" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "50760", + "codeCommune": "50613", + "libelleAcheminement": "VALCANVILLE", + "nomCommune": "VALCANVILLE" }, { - "codePostal": "45170", - "codeCommune": "45011", - "libelleAcheminement": "ATTRAY", - "nomCommune": "ATTRAY" + "codePostal": "52150", + "codeCommune": "52455", + "libelleAcheminement": "ST THIEBAULT", + "nomCommune": "ST THIEBAULT" }, { - "codePostal": "57930", - "codeCommune": "57086", - "libelleAcheminement": "BELLES FORETS", - "nomCommune": "BELLES FORETS" + "codePostal": "61200", + "codeCommune": "61358", + "libelleAcheminement": "SAI", + "nomCommune": "SAI" }, { - "codePostal": "33550", - "codeCommune": "33201", - "libelleAcheminement": "HAUX", - "nomCommune": "HAUX" + "codePostal": "05800", + "codeCommune": "05182", + "libelleAcheminement": "VILLAR LOUBIERE", + "nomCommune": "VILLAR LOUBIERE" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "61100", + "codeCommune": "61030", + "libelleAcheminement": "LA BAZOQUE", + "nomCommune": "LA BAZOQUE" }, { - "codePostal": "45330", - "codeCommune": "45013", - "libelleAcheminement": "AUGERVILLE LA RIVIERE", - "nomCommune": "AUGERVILLE LA RIVIERE" + "codePostal": "50250", + "codeCommune": "50617", + "libelleAcheminement": "VARENGUEBEC", + "nomCommune": "VARENGUEBEC" }, { - "codePostal": "57200", - "codeCommune": "57092", - "libelleAcheminement": "BLIES EBERSING", - "nomCommune": "BLIES EBERSING" + "codePostal": "52200", + "codeCommune": "52457", + "libelleAcheminement": "ST VALLIER SUR MARNE", + "nomCommune": "ST VALLIER SUR MARNE" }, { - "codePostal": "33720", - "codeCommune": "33205", - "libelleAcheminement": "ILLATS", - "nomCommune": "ILLATS" + "codePostal": "61700", + "codeCommune": "61370", + "libelleAcheminement": "ST BRICE", + "nomCommune": "ST BRICE" }, { - "codePostal": "28220", - "codeCommune": "28103", - "libelleAcheminement": "CLOYES LES TROIS RIVIERES", - "nomCommune": "CLOYES LES TROIS RIVIERES" + "codePostal": "05100", + "codeCommune": "05183", + "libelleAcheminement": "VILLAR ST PANCRACE", + "nomCommune": "VILLAR ST PANCRACE" }, { - "codePostal": "45480", - "codeCommune": "45015", - "libelleAcheminement": "AUTRUY SUR JUINE", - "nomCommune": "AUTRUY SUR JUINE" + "codePostal": "61500", + "codeCommune": "61036", + "libelleAcheminement": "BELFONDS", + "nomCommune": "BELFONDS" }, { - "codePostal": "57220", - "codeCommune": "57097", - "libelleAcheminement": "BOULAY", - "nomCommune": "BOULAY MOSELLE" + "codePostal": "50310", + "codeCommune": "50621", + "libelleAcheminement": "VAUDREVILLE", + "nomCommune": "VAUDREVILLE" }, { - "codePostal": "33420", - "codeCommune": "33209", - "libelleAcheminement": "JUGAZAN", - "nomCommune": "JUGAZAN" + "codePostal": "52000", + "codeCommune": "52469", + "libelleAcheminement": "SEMOUTIERS MONTSAON", + "nomCommune": "SEMOUTIERS MONTSAON" }, { - "codePostal": "28330", - "codeCommune": "28111", - "libelleAcheminement": "COUDRAY AU PERCHE", - "nomCommune": "COUDRAY AU PERCHE" + "codePostal": "61150", + "codeCommune": "61371", + "libelleAcheminement": "ST BRICE SOUS RANES", + "nomCommune": "ST BRICE SOUS RANES" }, { - "codePostal": "45340", - "codeCommune": "45021", - "libelleAcheminement": "BARVILLE EN GATINAIS", - "nomCommune": "BARVILLE EN GATINAIS" + "codePostal": "05110", + "codeCommune": "05184", + "libelleAcheminement": "VITROLLES", + "nomCommune": "VITROLLES" }, { - "codePostal": "57460", - "codeCommune": "57101", - "libelleAcheminement": "BOUSBACH", - "nomCommune": "BOUSBACH" + "codePostal": "61360", + "codeCommune": "61037", + "libelleAcheminement": "BELLAVILLIERS", + "nomCommune": "BELLAVILLIERS" }, { - "codePostal": "33890", - "codeCommune": "33210", - "libelleAcheminement": "JUILLAC", - "nomCommune": "JUILLAC" + "codePostal": "50200", + "codeCommune": "50624", + "libelleAcheminement": "LA VENDELEE", + "nomCommune": "LA VENDELEE" }, { - "codePostal": "28210", - "codeCommune": "28118", - "libelleAcheminement": "CROISILLES", - "nomCommune": "CROISILLES" + "codePostal": "52130", + "codeCommune": "52475", + "libelleAcheminement": "SOMMANCOURT", + "nomCommune": "SOMMANCOURT" }, { - "codePostal": "45340", - "codeCommune": "45022", - "libelleAcheminement": "BATILLY EN GATINAIS", - "nomCommune": "BATILLY EN GATINAIS" + "codePostal": "61490", + "codeCommune": "61376", + "libelleAcheminement": "ST CLAIR DE HALOUZE", + "nomCommune": "ST CLAIR DE HALOUZE" }, { - "codePostal": "57340", - "codeCommune": "57107", - "libelleAcheminement": "BREHAIN", - "nomCommune": "BREHAIN" + "codePostal": "06910", + "codeCommune": "06001", + "libelleAcheminement": "AIGLUN", + "nomCommune": "AIGLUN" }, { - "codePostal": "33460", - "codeCommune": "33211", - "libelleAcheminement": "LABARDE", - "nomCommune": "LABARDE" + "codePostal": "61430", + "codeCommune": "61044", + "libelleAcheminement": "BERJOU", + "nomCommune": "BERJOU" }, { - "codePostal": "28270", - "codeCommune": "28120", - "libelleAcheminement": "CRUCEY VILLAGES", - "nomCommune": "CRUCEY VILLAGES" + "codePostal": "50430", + "codeCommune": "50629", + "libelleAcheminement": "VESLY", + "nomCommune": "VESLY" }, { - "codePostal": "45270", - "codeCommune": "45027", - "libelleAcheminement": "BEAUCHAMPS SUR HUILLARD", - "nomCommune": "BEAUCHAMPS SUR HUILLARD" + "codePostal": "52220", + "codeCommune": "52479", + "libelleAcheminement": "SOMMEVOIRE", + "nomCommune": "SOMMEVOIRE" }, { - "codePostal": "57320", - "codeCommune": "57110", - "libelleAcheminement": "BRETTNACH", - "nomCommune": "BRETTNACH" + "codePostal": "61130", + "codeCommune": "61394", + "libelleAcheminement": "ST GERMAIN DE LA COUDRE", + "nomCommune": "ST GERMAIN DE LA COUDRE" }, { - "codePostal": "33690", - "codeCommune": "33212", - "libelleAcheminement": "LABESCAU", - "nomCommune": "LABESCAU" + "codePostal": "06260", + "codeCommune": "06005", + "libelleAcheminement": "ASCROS", + "nomCommune": "ASCROS" }, { - "codePostal": "28250", - "codeCommune": "28130", - "libelleAcheminement": "DIGNY", - "nomCommune": "DIGNY" + "codePostal": "61570", + "codeCommune": "61049", + "libelleAcheminement": "BOISSEI LA LANDE", + "nomCommune": "BOISSEI LA LANDE" }, { - "codePostal": "45340", - "codeCommune": "45035", - "libelleAcheminement": "BOISCOMMUN", - "nomCommune": "BOISCOMMUN" + "codePostal": "50430", + "codeCommune": "50629", + "libelleAcheminement": "VESLY", + "nomCommune": "VESLY" }, { - "codePostal": "57340", - "codeCommune": "57115", - "libelleAcheminement": "BRULANGE", - "nomCommune": "BRULANGE" + "codePostal": "52300", + "codeCommune": "52484", + "libelleAcheminement": "SUZANNECOURT", + "nomCommune": "SUZANNECOURT" }, { - "codePostal": "33460", - "codeCommune": "33220", - "libelleAcheminement": "LAMARQUE", - "nomCommune": "LAMARQUE" + "codePostal": "61430", + "codeCommune": "61407", + "libelleAcheminement": "STE HONORINE LA CHARDONNE", + "nomCommune": "STE HONORINE LA CHARDONNE" }, { - "codePostal": "28330", - "codeCommune": "28144", - "libelleAcheminement": "LES ETILLEUX", - "nomCommune": "LES ETILLEUX" + "codePostal": "06810", + "codeCommune": "06007", + "libelleAcheminement": "AURIBEAU SUR SIAGNE", + "nomCommune": "AURIBEAU SUR SIAGNE" }, { - "codePostal": "45480", - "codeCommune": "45037", - "libelleAcheminement": "BOISSEAUX", - "nomCommune": "BOISSEAUX" + "codePostal": "61340", + "codeCommune": "61050", + "libelleAcheminement": "COUR MAUGIS SUR HUISNE", + "nomCommune": "COUR MAUGIS SUR HUISNE" }, { - "codePostal": "57970", - "codeCommune": "57118", - "libelleAcheminement": "BUDLING", - "nomCommune": "BUDLING" + "codePostal": "50800", + "codeCommune": "50639", + "libelleAcheminement": "VILLEDIEU LES POELES ROUFFIGNY", + "nomCommune": "VILLEDIEU LES POELES ROUFFIGNY" }, { - "codePostal": "33500", - "codeCommune": "33222", - "libelleAcheminement": "LALANDE DE POMEROL", - "nomCommune": "LALANDE DE POMEROL" + "codePostal": "52300", + "codeCommune": "52490", + "libelleAcheminement": "THONNANCE LES JOINVILLE", + "nomCommune": "THONNANCE LES JOINVILLE" }, { - "codePostal": "28160", - "codeCommune": "28161", - "libelleAcheminement": "FRAZE", - "nomCommune": "FRAZE" + "codePostal": "61360", + "codeCommune": "61411", + "libelleAcheminement": "ST JOUIN DE BLAVOU", + "nomCommune": "ST JOUIN DE BLAVOU" }, { - "codePostal": "45300", - "codeCommune": "45038", - "libelleAcheminement": "BONDAROY", - "nomCommune": "BONDAROY" + "codePostal": "06450", + "codeCommune": "06013", + "libelleAcheminement": "BELVEDERE", + "nomCommune": "BELVEDERE" }, { - "codePostal": "57490", - "codeCommune": "57123", - "libelleAcheminement": "CARLING", - "nomCommune": "CARLING" + "codePostal": "61570", + "codeCommune": "61055", + "libelleAcheminement": "BOUCE", + "nomCommune": "BOUCE" }, { - "codePostal": "33720", - "codeCommune": "33225", - "libelleAcheminement": "LANDIRAS", - "nomCommune": "LANDIRAS" + "codePostal": "50680", + "codeCommune": "50641", + "libelleAcheminement": "VILLIERS FOSSARD", + "nomCommune": "VILLIERS FOSSARD" }, { - "codePostal": "28500", - "codeCommune": "28171", - "libelleAcheminement": "GARNAY", - "nomCommune": "GARNAY" + "codePostal": "52230", + "codeCommune": "52491", + "libelleAcheminement": "THONNANCE LES MOULINS", + "nomCommune": "THONNANCE LES MOULINS" }, { - "codePostal": "45390", - "codeCommune": "45056", - "libelleAcheminement": "BROMEILLES", - "nomCommune": "BROMEILLES" + "codePostal": "61320", + "codeCommune": "61427", + "libelleAcheminement": "ST MARTIN L AIGUILLON", + "nomCommune": "ST MARTIN L AIGUILLON" }, { - "codePostal": "57570", - "codeCommune": "57124", - "libelleAcheminement": "CATTENOM", - "nomCommune": "CATTENOM" + "codePostal": "06450", + "codeCommune": "06020", + "libelleAcheminement": "LA BOLLENE VESUBIE", + "nomCommune": "LA BOLLENE VESUBIE" }, { - "codePostal": "33550", - "codeCommune": "33226", - "libelleAcheminement": "LANGOIRAN", - "nomCommune": "LANGOIRAN" + "codePostal": "61160", + "codeCommune": "61062", + "libelleAcheminement": "BRIEUX", + "nomCommune": "BRIEUX" }, { - "codePostal": "28410", - "codeCommune": "28185", - "libelleAcheminement": "GOUSSAINVILLE", - "nomCommune": "GOUSSAINVILLE" + "codePostal": "51150", + "codeCommune": "51003", + "libelleAcheminement": "AIGNY", + "nomCommune": "AIGNY" }, { - "codePostal": "45520", - "codeCommune": "45062", - "libelleAcheminement": "CERCOTTES", - "nomCommune": "CERCOTTES" + "codePostal": "52500", + "codeCommune": "52493", + "libelleAcheminement": "TORNAY", + "nomCommune": "TORNAY" }, { - "codePostal": "57170", - "codeCommune": "57126", - "libelleAcheminement": "CHAMBREY", - "nomCommune": "CHAMBREY" + "codePostal": "61560", + "codeCommune": "61438", + "libelleAcheminement": "ST OUEN DE SECHEROUVRE", + "nomCommune": "ST OUEN DE SECHEROUVRE" }, { - "codePostal": "33210", - "codeCommune": "33227", - "libelleAcheminement": "LANGON", - "nomCommune": "LANGON" + "codePostal": "06530", + "codeCommune": "06026", + "libelleAcheminement": "CABRIS", + "nomCommune": "CABRIS" }, { - "codePostal": "28410", - "codeCommune": "28185", - "libelleAcheminement": "GOUSSAINVILLE", - "nomCommune": "GOUSSAINVILLE" + "codePostal": "61120", + "codeCommune": "61071", + "libelleAcheminement": "CAMEMBERT", + "nomCommune": "CAMEMBERT" }, { - "codePostal": "45360", - "codeCommune": "45064", - "libelleAcheminement": "CERNOY EN BERRY", - "nomCommune": "CERNOY EN BERRY" + "codePostal": "51290", + "codeCommune": "51008", + "libelleAcheminement": "AMBRIERES", + "nomCommune": "AMBRIERES" }, { - "codePostal": "57580", - "codeCommune": "57127", - "libelleAcheminement": "CHANVILLE", - "nomCommune": "CHANVILLE" + "codePostal": "52130", + "codeCommune": "52497", + "libelleAcheminement": "TROISFONTAINES LA VILLE", + "nomCommune": "TROISFONTAINES LA VILLE" }, { - "codePostal": "33970", - "codeCommune": "33236", - "libelleAcheminement": "LEGE CAP FERRET", - "nomCommune": "LEGE CAP FERRET" + "codePostal": "61340", + "codeCommune": "61448", + "libelleAcheminement": "ST PIERRE LA BRUYERE", + "nomCommune": "ST PIERRE LA BRUYERE" }, { - "codePostal": "28310", - "codeCommune": "28189", - "libelleAcheminement": "GUILLEVILLE", - "nomCommune": "GUILLEVILLE" + "codePostal": "06750", + "codeCommune": "06028", + "libelleAcheminement": "CAILLE", + "nomCommune": "CAILLE" }, { - "codePostal": "45300", - "codeCommune": "45065", - "libelleAcheminement": "CESARVILLE DOSSAINVILLE", - "nomCommune": "CESARVILLE DOSSAINVILLE" + "codePostal": "61260", + "codeCommune": "61079", + "libelleAcheminement": "CETON", + "nomCommune": "CETON" }, { - "codePostal": "57220", - "codeCommune": "57128", - "libelleAcheminement": "CHARLEVILLE SOUS BOIS", - "nomCommune": "CHARLEVILLE SOUS BOIS" + "codePostal": "51260", + "codeCommune": "51009", + "libelleAcheminement": "ANGLURE", + "nomCommune": "ANGLURE" }, { - "codePostal": "33970", - "codeCommune": "33236", - "libelleAcheminement": "LEGE CAP FERRET", - "nomCommune": "LEGE CAP FERRET" + "codePostal": "52160", + "codeCommune": "52499", + "libelleAcheminement": "VAILLANT", + "nomCommune": "VAILLANT" }, { - "codePostal": "28310", - "codeCommune": "28199", - "libelleAcheminement": "JANVILLE EN BEAUCE", - "nomCommune": "JANVILLE EN BEAUCE" + "codePostal": "61360", + "codeCommune": "61450", + "libelleAcheminement": "ST QUENTIN DE BLAVOU", + "nomCommune": "ST QUENTIN DE BLAVOU" }, { - "codePostal": "45380", - "codeCommune": "45067", - "libelleAcheminement": "CHAINGY", - "nomCommune": "CHAINGY" + "codePostal": "06150", + "codeCommune": "06029", + "libelleAcheminement": "CANNES", + "nomCommune": "CANNES" }, { - "codePostal": "57420", - "codeCommune": "57139", - "libelleAcheminement": "CHERISEY", - "nomCommune": "CHERISEY" + "codePostal": "61700", + "codeCommune": "61091", + "libelleAcheminement": "CHAMPSECRET", + "nomCommune": "CHAMPSECRET" }, { - "codePostal": "33340", - "codeCommune": "33240", - "libelleAcheminement": "LESPARRE MEDOC", - "nomCommune": "LESPARRE MEDOC" + "codePostal": "51230", + "codeCommune": "51010", + "libelleAcheminement": "ANGLUZELLES ET COURCELLES", + "nomCommune": "ANGLUZELLES ET COURCELLES" }, { - "codePostal": "28190", - "codeCommune": "28203", - "libelleAcheminement": "LANDELLES", - "nomCommune": "LANDELLES" + "codePostal": "52130", + "codeCommune": "52502", + "libelleAcheminement": "VALLERET", + "nomCommune": "VALLERET" }, { - "codePostal": "45320", - "codeCommune": "45073", - "libelleAcheminement": "CHANTECOQ", - "nomCommune": "CHANTECOQ" + "codePostal": "61300", + "codeCommune": "61456", + "libelleAcheminement": "ST SULPICE SUR RISLE", + "nomCommune": "ST SULPICE SUR RISLE" }, { - "codePostal": "57530", - "codeCommune": "57148", - "libelleAcheminement": "COLLIGNY MAIZERY", - "nomCommune": "COLLIGNY MAIZERY" + "codePostal": "06110", + "codeCommune": "06030", + "libelleAcheminement": "LE CANNET", + "nomCommune": "LE CANNET" }, { - "codePostal": "33220", - "codeCommune": "33246", - "libelleAcheminement": "LIGUEUX", - "nomCommune": "LIGUEUX" + "codePostal": "61100", + "codeCommune": "61095", + "libelleAcheminement": "LA CHAPELLE BICHE", + "nomCommune": "LA CHAPELLE BICHE" }, { - "codePostal": "28700", - "codeCommune": "28207", - "libelleAcheminement": "LETHUIN", - "nomCommune": "LETHUIN" + "codePostal": "51800", + "codeCommune": "51015", + "libelleAcheminement": "ARGERS", + "nomCommune": "ARGERS" }, { - "codePostal": "45210", - "codeCommune": "45076", - "libelleAcheminement": "LA CHAPELLE ST SEPULCRE", - "nomCommune": "LA CHAPELLE ST SEPULCRE" + "codePostal": "52400", + "codeCommune": "52504", + "libelleAcheminement": "VARENNES SUR AMANCE", + "nomCommune": "VARENNES SUR AMANCE" }, { - "codePostal": "57220", - "codeCommune": "57150", - "libelleAcheminement": "CONDE NORTHEN", - "nomCommune": "CONDE NORTHEN" + "codePostal": "61300", + "codeCommune": "61457", + "libelleAcheminement": "ST SYMPHORIEN DES BRUYERES", + "nomCommune": "ST SYMPHORIEN DES BRUYERES" }, { - "codePostal": "33190", - "codeCommune": "33250", - "libelleAcheminement": "LOUBENS", - "nomCommune": "LOUBENS" + "codePostal": "06110", + "codeCommune": "06030", + "libelleAcheminement": "LE CANNET", + "nomCommune": "LE CANNET" }, { - "codePostal": "28200", - "codeCommune": "28211", - "libelleAcheminement": "LOGRON", - "nomCommune": "LOGRON" + "codePostal": "61270", + "codeCommune": "61100", + "libelleAcheminement": "LA CHAPELLE VIEL", + "nomCommune": "LA CHAPELLE VIEL" }, { - "codePostal": "45130", - "codeCommune": "45081", - "libelleAcheminement": "CHARSONVILLE", - "nomCommune": "CHARSONVILLE" + "codePostal": "51290", + "codeCommune": "51016", + "libelleAcheminement": "ARRIGNY", + "nomCommune": "ARRIGNY" }, { - "codePostal": "57340", - "codeCommune": "57151", - "libelleAcheminement": "CONTHIL", - "nomCommune": "CONTHIL" + "codePostal": "52330", + "codeCommune": "52506", + "libelleAcheminement": "VAUDREMONT", + "nomCommune": "VAUDREMONT" }, { - "codePostal": "33420", - "codeCommune": "33257", - "libelleAcheminement": "LUGAIGNAC", - "nomCommune": "LUGAIGNAC" + "codePostal": "61500", + "codeCommune": "61464", + "libelleAcheminement": "SEES", + "nomCommune": "SEES" }, { - "codePostal": "28140", - "codeCommune": "28212", - "libelleAcheminement": "LOIGNY LA BATAILLE", - "nomCommune": "LOIGNY LA BATAILLE" + "codePostal": "06340", + "codeCommune": "06031", + "libelleAcheminement": "CANTARON", + "nomCommune": "CANTARON" }, { - "codePostal": "45480", - "codeCommune": "45088", - "libelleAcheminement": "CHAUSSY", - "nomCommune": "CHAUSSY" + "codePostal": "61160", + "codeCommune": "61120", + "libelleAcheminement": "COUDEHARD", + "nomCommune": "COUDEHARD" }, { - "codePostal": "57480", - "codeCommune": "57152", - "libelleAcheminement": "CONTZ LES BAINS", - "nomCommune": "CONTZ LES BAINS" + "codePostal": "51270", + "codeCommune": "51034", + "libelleAcheminement": "BANNAY", + "nomCommune": "BANNAY" }, { - "codePostal": "33760", - "codeCommune": "33258", - "libelleAcheminement": "LUGASSON", - "nomCommune": "LUGASSON" + "codePostal": "52130", + "codeCommune": "52510", + "libelleAcheminement": "VAUX SUR BLAISE", + "nomCommune": "VAUX SUR BLAISE" }, { - "codePostal": "28110", - "codeCommune": "28218", - "libelleAcheminement": "LUCE", - "nomCommune": "LUCE" + "codePostal": "61160", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "45370", - "codeCommune": "45098", - "libelleAcheminement": "CLERY ST ANDRE", - "nomCommune": "CLERY ST ANDRE" + "codePostal": "06500", + "codeCommune": "06036", + "libelleAcheminement": "CASTILLON", + "nomCommune": "CASTILLON" }, { - "codePostal": "57680", - "codeCommune": "57153", - "libelleAcheminement": "CORNY SUR MOSELLE", - "nomCommune": "CORNY SUR MOSELLE" + "codePostal": "61160", + "codeCommune": "61123", + "libelleAcheminement": "COULONCES", + "nomCommune": "COULONCES" }, { - "codePostal": "33240", - "codeCommune": "33259", - "libelleAcheminement": "LUGON ET L ILE DU CARNAY", - "nomCommune": "LUGON ET L ILE DU CARNAY" + "codePostal": "51120", + "codeCommune": "51036", + "libelleAcheminement": "BARBONNE FAYEL", + "nomCommune": "BARBONNE FAYEL" }, { - "codePostal": "28140", - "codeCommune": "28221", - "libelleAcheminement": "LUMEAU", - "nomCommune": "LUMEAU" + "codePostal": "52500", + "codeCommune": "52513", + "libelleAcheminement": "VELLES", + "nomCommune": "VELLES" }, { - "codePostal": "45310", - "codeCommune": "45099", - "libelleAcheminement": "COINCES", - "nomCommune": "COINCES" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "57530", - "codeCommune": "57155", - "libelleAcheminement": "COURCELLES CHAUSSY", - "nomCommune": "COURCELLES CHAUSSY" + "codePostal": "06470", + "codeCommune": "06040", + "libelleAcheminement": "CHATEAUNEUF D ENTRAUNES", + "nomCommune": "CHATEAUNEUF D ENTRAUNES" }, { - "codePostal": "33830", - "codeCommune": "33260", - "libelleAcheminement": "LUGOS", - "nomCommune": "LUGOS" + "codePostal": "61170", + "codeCommune": "61126", + "libelleAcheminement": "COULONGES SUR SARTHE", + "nomCommune": "COULONGES SUR SARTHE" }, { - "codePostal": "28120", - "codeCommune": "28225", - "libelleAcheminement": "MAGNY", - "nomCommune": "MAGNY" + "codePostal": "51260", + "codeCommune": "51041", + "libelleAcheminement": "BAUDEMENT", + "nomCommune": "BAUDEMENT" }, { - "codePostal": "45800", - "codeCommune": "45100", - "libelleAcheminement": "COMBLEUX", - "nomCommune": "COMBLEUX" + "codePostal": "52000", + "codeCommune": "52514", + "libelleAcheminement": "VERBIESLES", + "nomCommune": "VERBIESLES" }, { - "codePostal": "57590", - "codeCommune": "57158", - "libelleAcheminement": "CRAINCOURT", - "nomCommune": "CRAINCOURT" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "33230", - "codeCommune": "33264", - "libelleAcheminement": "MARANSIN", - "nomCommune": "MARANSIN" + "codePostal": "06620", + "codeCommune": "06041", + "libelleAcheminement": "CIPIERES", + "nomCommune": "CIPIERES" }, { - "codePostal": "28300", - "codeCommune": "28229", - "libelleAcheminement": "MAINVILLIERS", - "nomCommune": "MAINVILLIERS" + "codePostal": "61300", + "codeCommune": "61140", + "libelleAcheminement": "CRULAI", + "nomCommune": "CRULAI" }, { - "codePostal": "45700", - "codeCommune": "45105", - "libelleAcheminement": "CORTRAT", - "nomCommune": "CORTRAT" + "codePostal": "51270", + "codeCommune": "51042", + "libelleAcheminement": "BAYE", + "nomCommune": "BAYE" }, { - "codePostal": "57550", - "codeCommune": "57165", - "libelleAcheminement": "DALEM", - "nomCommune": "DALEM" + "codePostal": "52320", + "codeCommune": "52524", + "libelleAcheminement": "VIGNORY", + "nomCommune": "VIGNORY" }, { - "codePostal": "33220", - "codeCommune": "33269", - "libelleAcheminement": "MARGUERON", - "nomCommune": "MARGUERON" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "28240", - "codeCommune": "28232", - "libelleAcheminement": "MANOU", - "nomCommune": "MANOU" + "codePostal": "06910", + "codeCommune": "06052", + "libelleAcheminement": "CUEBRIS", + "nomCommune": "CUEBRIS" }, { - "codePostal": "45490", - "codeCommune": "45114", - "libelleAcheminement": "COURTEMPIERRE", - "nomCommune": "COURTEMPIERRE" + "codePostal": "61250", + "codeCommune": "61143", + "libelleAcheminement": "DAMIGNY", + "nomCommune": "DAMIGNY" }, { - "codePostal": "57925", - "codeCommune": "57179", - "libelleAcheminement": "DISTROFF", - "nomCommune": "DISTROFF" + "codePostal": "51210", + "codeCommune": "51050", + "libelleAcheminement": "BERGERES SOUS MONTMIRAIL", + "nomCommune": "BERGERES SOUS MONTMIRAIL" }, { - "codePostal": "33690", - "codeCommune": "33271", - "libelleAcheminement": "MARIONS", - "nomCommune": "MARIONS" + "codePostal": "52120", + "codeCommune": "52525", + "libelleAcheminement": "VILLARS EN AZOIS", + "nomCommune": "VILLARS EN AZOIS" }, { - "codePostal": "28400", - "codeCommune": "28237", - "libelleAcheminement": "MAROLLES LES BUIS", - "nomCommune": "MAROLLES LES BUIS" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "45320", - "codeCommune": "45115", - "libelleAcheminement": "COURTENAY", - "nomCommune": "COURTENAY" + "codePostal": "06360", + "codeCommune": "06059", + "libelleAcheminement": "EZE", + "nomCommune": "EZE" }, { - "codePostal": "57260", - "codeCommune": "57181", - "libelleAcheminement": "DOMNOM LES DIEUZE", - "nomCommune": "DOMNOM LES DIEUZE" + "codePostal": "61600", + "codeCommune": "61168", + "libelleAcheminement": "LA FERTE MACE", + "nomCommune": "LA FERTE MACE" }, { - "codePostal": "33620", - "codeCommune": "33272", - "libelleAcheminement": "MARSAS", - "nomCommune": "MARSAS" + "codePostal": "51800", + "codeCommune": "51053", + "libelleAcheminement": "BERZIEUX", + "nomCommune": "BERZIEUX" }, { - "codePostal": "28310", - "codeCommune": "28243", - "libelleAcheminement": "MEROUVILLE", - "nomCommune": "MEROUVILLE" + "codePostal": "52160", + "codeCommune": "52526", + "libelleAcheminement": "VILLARS SANTENOGE", + "nomCommune": "VILLARS SANTENOGE" }, { - "codePostal": "45230", - "codeCommune": "45121", - "libelleAcheminement": "DAMMARIE SUR LOING", - "nomCommune": "DAMMARIE SUR LOING" + "codePostal": "61500", + "codeCommune": "61480", + "libelleAcheminement": "TANVILLE", + "nomCommune": "TANVILLE" }, { - "codePostal": "57590", - "codeCommune": "57182", - "libelleAcheminement": "DONJEUX", - "nomCommune": "DONJEUX" + "codePostal": "06950", + "codeCommune": "06060", + "libelleAcheminement": "FALICON", + "nomCommune": "FALICON" }, { - "codePostal": "33690", - "codeCommune": "33276", - "libelleAcheminement": "MASSEILLES", - "nomCommune": "MASSEILLES" + "codePostal": "61570", + "codeCommune": "61176", + "libelleAcheminement": "FRANCHEVILLE", + "nomCommune": "FRANCHEVILLE" }, { - "codePostal": "28120", - "codeCommune": "28245", - "libelleAcheminement": "MESLAY LE GRENET", - "nomCommune": "MESLAY LE GRENET" + "codePostal": "51430", + "codeCommune": "51058", + "libelleAcheminement": "BEZANNES", + "nomCommune": "BEZANNES" }, { - "codePostal": "45390", - "codeCommune": "45124", - "libelleAcheminement": "DESMONTS", - "nomCommune": "DESMONTS" + "codePostal": "52160", + "codeCommune": "52542", + "libelleAcheminement": "VIVEY", + "nomCommune": "VIVEY" }, { - "codePostal": "57230", - "codeCommune": "57188", - "libelleAcheminement": "EGUELSHARDT", - "nomCommune": "EGUELSHARDT" + "codePostal": "61410", + "codeCommune": "61482", + "libelleAcheminement": "TESSE FROULAY", + "nomCommune": "TESSE FROULAY" }, { - "codePostal": "33350", - "codeCommune": "33282", - "libelleAcheminement": "MERIGNAS", - "nomCommune": "MERIGNAS" + "codePostal": "06510", + "codeCommune": "06064", + "libelleAcheminement": "GATTIERES", + "nomCommune": "GATTIERES" }, { - "codePostal": "28260", - "codeCommune": "28247", - "libelleAcheminement": "LE MESNIL SIMON", - "nomCommune": "LE MESNIL SIMON" + "codePostal": "61120", + "codeCommune": "61180", + "libelleAcheminement": "FRESNAY LE SAMSON", + "nomCommune": "FRESNAY LE SAMSON" }, { - "codePostal": "45450", - "codeCommune": "45126", - "libelleAcheminement": "DONNERY", - "nomCommune": "DONNERY" + "codePostal": "51170", + "codeCommune": "51069", + "libelleAcheminement": "BLIGNY", + "nomCommune": "BLIGNY" }, { - "codePostal": "57340", - "codeCommune": "57189", - "libelleAcheminement": "EINCHEVILLE", - "nomCommune": "EINCHEVILLE" + "codePostal": "52400", + "codeCommune": "52544", + "libelleAcheminement": "VOISEY", + "nomCommune": "VOISEY" }, { - "codePostal": "33380", - "codeCommune": "33284", - "libelleAcheminement": "MIOS", - "nomCommune": "MIOS" + "codePostal": "61600", + "codeCommune": "61483", + "libelleAcheminement": "BAGNOLES DE L ORNE NORMANDIE", + "nomCommune": "BAGNOLES DE L ORNE NORMANDIE" }, { - "codePostal": "28130", - "codeCommune": "28249", - "libelleAcheminement": "MEVOISINS", - "nomCommune": "MEVOISINS" + "codePostal": "06610", + "codeCommune": "06065", + "libelleAcheminement": "LA GAUDE", + "nomCommune": "LA GAUDE" }, { - "codePostal": "45220", - "codeCommune": "45129", - "libelleAcheminement": "DOUCHY MONTCORBON", - "nomCommune": "DOUCHY MONTCORBON" + "codePostal": "61210", + "codeCommune": "61189", + "libelleAcheminement": "GIEL COURTEILLES", + "nomCommune": "GIEL COURTEILLES" }, { - "codePostal": "57690", - "codeCommune": "57190", - "libelleAcheminement": "ELVANGE", - "nomCommune": "ELVANGE" + "codePostal": "51400", + "codeCommune": "51078", + "libelleAcheminement": "BOUY", + "nomCommune": "BOUY" }, { - "codePostal": "33380", - "codeCommune": "33284", - "libelleAcheminement": "MIOS", - "nomCommune": "MIOS" + "codePostal": "53210", + "codeCommune": "53007", + "libelleAcheminement": "ARGENTRE", + "nomCommune": "ARGENTRE" }, { - "codePostal": "28190", - "codeCommune": "28254", - "libelleAcheminement": "MITTAINVILLIERS VERIGNY", - "nomCommune": "MITTAINVILLIERS VERIGNY" + "codePostal": "61130", + "codeCommune": "61484", + "libelleAcheminement": "VAL AU PERCHE", + "nomCommune": "VAL AU PERCHE" }, { - "codePostal": "45230", - "codeCommune": "45143", - "libelleAcheminement": "FEINS EN GATINAIS", - "nomCommune": "FEINS EN GATINAIS" + "codePostal": "06520", + "codeCommune": "06069", + "libelleAcheminement": "GRASSE", + "nomCommune": "GRASSE" }, { - "codePostal": "57970", - "codeCommune": "57191", - "libelleAcheminement": "ELZANGE", - "nomCommune": "ELZANGE" + "codePostal": "61240", + "codeCommune": "61192", + "libelleAcheminement": "GODISSON", + "nomCommune": "GODISSON" }, { - "codePostal": "33190", - "codeCommune": "33287", - "libelleAcheminement": "MONGAUZY", - "nomCommune": "MONGAUZY" + "codePostal": "51150", + "codeCommune": "51079", + "libelleAcheminement": "BOUZY", + "nomCommune": "BOUZY" }, { - "codePostal": "28240", - "codeCommune": "28264", - "libelleAcheminement": "MONTIREAU", - "nomCommune": "MONTIREAU" + "codePostal": "53170", + "codeCommune": "53009", + "libelleAcheminement": "ARQUENAY", + "nomCommune": "ARQUENAY" }, { - "codePostal": "45210", - "codeCommune": "45145", - "libelleAcheminement": "FERRIERES EN GATINAIS", - "nomCommune": "FERRIERES EN GATINAIS" + "codePostal": "61260", + "codeCommune": "61484", + "libelleAcheminement": "VAL AU PERCHE", + "nomCommune": "VAL AU PERCHE" }, { - "codePostal": "57330", - "codeCommune": "57194", - "libelleAcheminement": "ENTRANGE", - "nomCommune": "ENTRANGE" + "codePostal": "06420", + "codeCommune": "06072", + "libelleAcheminement": "ILONSE", + "nomCommune": "ILONSE" }, { - "codePostal": "33410", - "codeCommune": "33288", - "libelleAcheminement": "MONPRIMBLANC", - "nomCommune": "MONPRIMBLANC" + "codePostal": "61550", + "codeCommune": "61193", + "libelleAcheminement": "LA GONFRIERE", + "nomCommune": "LA GONFRIERE" }, { - "codePostal": "28500", - "codeCommune": "28267", - "libelleAcheminement": "MONTREUIL", - "nomCommune": "MONTREUIL" + "codePostal": "51230", + "codeCommune": "51091", + "libelleAcheminement": "BROUSSY LE PETIT", + "nomCommune": "BROUSSY LE PETIT" }, { - "codePostal": "45270", - "codeCommune": "45150", - "libelleAcheminement": "FREVILLE DU GATINAIS", - "nomCommune": "FREVILLE DU GATINAIS" + "codePostal": "53600", + "codeCommune": "53010", + "libelleAcheminement": "ASSE LE BERENGER", + "nomCommune": "ASSE LE BERENGER" }, { - "codePostal": "57290", - "codeCommune": "57206", - "libelleAcheminement": "FAMECK", - "nomCommune": "FAMECK" + "codePostal": "61260", + "codeCommune": "61484", + "libelleAcheminement": "VAL AU PERCHE", + "nomCommune": "VAL AU PERCHE" }, { - "codePostal": "33500", - "codeCommune": "33302", - "libelleAcheminement": "NEAC", - "nomCommune": "NEAC" + "codePostal": "06210", + "codeCommune": "06079", + "libelleAcheminement": "MANDELIEU LA NAPOULE", + "nomCommune": "MANDELIEU LA NAPOULE" }, { - "codePostal": "28160", - "codeCommune": "28273", - "libelleAcheminement": "MOULHARD", - "nomCommune": "MOULHARD" + "codePostal": "61130", + "codeCommune": "61196", + "libelleAcheminement": "BELFORET EN PERCHE", + "nomCommune": "BELFORET EN PERCHE" }, { - "codePostal": "45500", - "codeCommune": "45155", - "libelleAcheminement": "GIEN", - "nomCommune": "GIEN" + "codePostal": "51800", + "codeCommune": "51104", + "libelleAcheminement": "CERNAY EN DORMOIS", + "nomCommune": "CERNAY EN DORMOIS" }, { - "codePostal": "57320", - "codeCommune": "57215", - "libelleAcheminement": "FLASTROFF", - "nomCommune": "FLASTROFF" + "codePostal": "53230", + "codeCommune": "53011", + "libelleAcheminement": "ASTILLE", + "nomCommune": "ASTILLE" }, { - "codePostal": "33550", - "codeCommune": "33311", - "libelleAcheminement": "PAILLET", - "nomCommune": "PAILLET" + "codePostal": "61800", + "codeCommune": "61486", + "libelleAcheminement": "TINCHEBRAY BOCAGE", + "nomCommune": "TINCHEBRAY BOCAGE" }, { - "codePostal": "28310", - "codeCommune": "28276", - "libelleAcheminement": "NEUVY EN BEAUCE", - "nomCommune": "NEUVY EN BEAUCE" + "codePostal": "06370", + "codeCommune": "06084", + "libelleAcheminement": "MOUANS SARTOUX", + "nomCommune": "MOUANS SARTOUX" }, { - "codePostal": "45300", - "codeCommune": "45157", - "libelleAcheminement": "GIVRAINES", - "nomCommune": "GIVRAINES" + "codePostal": "61130", + "codeCommune": "61196", + "libelleAcheminement": "BELFORET EN PERCHE", + "nomCommune": "BELFORET EN PERCHE" }, { - "codePostal": "57690", - "codeCommune": "57217", - "libelleAcheminement": "FLETRANGE", - "nomCommune": "FLETRANGE" + "codePostal": "51240", + "codeCommune": "51106", + "libelleAcheminement": "CERNON", + "nomCommune": "CERNON" }, { - "codePostal": "33290", - "codeCommune": "33312", - "libelleAcheminement": "PAREMPUYRE", - "nomCommune": "PAREMPUYRE" + "codePostal": "53340", + "codeCommune": "53017", + "libelleAcheminement": "VAL DU MAINE", + "nomCommune": "VAL DU MAINE" }, { - "codePostal": "28630", - "codeCommune": "28278", - "libelleAcheminement": "NOGENT LE PHAYE", - "nomCommune": "NOGENT LE PHAYE" + "codePostal": "61800", + "codeCommune": "61486", + "libelleAcheminement": "TINCHEBRAY BOCAGE", + "nomCommune": "TINCHEBRAY BOCAGE" }, { - "codePostal": "45300", - "codeCommune": "45177", - "libelleAcheminement": "LAAS", - "nomCommune": "LAAS" + "codePostal": "06200", + "codeCommune": "06088", + "libelleAcheminement": "NICE", + "nomCommune": "NICE" }, { - "codePostal": "57580", - "codeCommune": "57220", - "libelleAcheminement": "FLOCOURT", - "nomCommune": "FLOCOURT" + "codePostal": "61250", + "codeCommune": "61203", + "libelleAcheminement": "HELOUP", + "nomCommune": "HELOUP" }, { - "codePostal": "33230", - "codeCommune": "33315", - "libelleAcheminement": "LES PEINTURES", - "nomCommune": "LES PEINTURES" + "codePostal": "51000", + "codeCommune": "51108", + "libelleAcheminement": "CHALONS EN CHAMPAGNE", + "nomCommune": "CHALONS EN CHAMPAGNE" }, { - "codePostal": "28140", - "codeCommune": "28287", - "libelleAcheminement": "ORGERES EN BEAUCE", - "nomCommune": "ORGERES EN BEAUCE" + "codePostal": "53170", + "codeCommune": "53025", + "libelleAcheminement": "BAZOUGERS", + "nomCommune": "BAZOUGERS" }, { - "codePostal": "45600", - "codeCommune": "45184", - "libelleAcheminement": "LION EN SULLIAS", - "nomCommune": "LION EN SULLIAS" + "codePostal": "61800", + "codeCommune": "61486", + "libelleAcheminement": "TINCHEBRAY BOCAGE", + "nomCommune": "TINCHEBRAY BOCAGE" }, { - "codePostal": "57600", - "codeCommune": "57227", - "libelleAcheminement": "FORBACH", - "nomCommune": "FORBACH" + "codePostal": "06300", + "codeCommune": "06088", + "libelleAcheminement": "NICE", + "nomCommune": "NICE" }, { - "codePostal": "33890", - "codeCommune": "33319", - "libelleAcheminement": "PESSAC SUR DORDOGNE", - "nomCommune": "PESSAC SUR DORDOGNE" + "codePostal": "61330", + "codeCommune": "61211", + "libelleAcheminement": "JUVIGNY VAL D ANDAINE", + "nomCommune": "JUVIGNY VAL D ANDAINE" }, { - "codePostal": "28210", - "codeCommune": "28289", - "libelleAcheminement": "ORMOY", - "nomCommune": "ORMOY" + "codePostal": "51500", + "codeCommune": "51112", + "libelleAcheminement": "CHAMERY", + "nomCommune": "CHAMERY" }, { - "codePostal": "45210", - "codeCommune": "45189", - "libelleAcheminement": "LOUZOUER", - "nomCommune": "LOUZOUER" + "codePostal": "53290", + "codeCommune": "53029", + "libelleAcheminement": "BIERNE LES VILLAGES", + "nomCommune": "BIERNE LES VILLAGES" }, { - "codePostal": "57830", - "codeCommune": "57229", - "libelleAcheminement": "FOULCREY", - "nomCommune": "FOULCREY" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "33290", - "codeCommune": "33322", - "libelleAcheminement": "LE PIAN MEDOC", - "nomCommune": "LE PIAN MEDOC" + "codePostal": "06910", + "codeCommune": "06097", + "libelleAcheminement": "PIERREFEU", + "nomCommune": "PIERREFEU" }, { - "codePostal": "28500", - "codeCommune": "28292", - "libelleAcheminement": "OUERRE", - "nomCommune": "OUERRE" + "codePostal": "61330", + "codeCommune": "61211", + "libelleAcheminement": "JUVIGNY VAL D ANDAINE", + "nomCommune": "JUVIGNY VAL D ANDAINE" }, { - "codePostal": "45300", - "codeCommune": "45191", - "libelleAcheminement": "LE MALESHERBOIS", - "nomCommune": "LE MALESHERBOIS" + "codePostal": "51260", + "codeCommune": "51127", + "libelleAcheminement": "LA CHAPELLE LASSON", + "nomCommune": "LA CHAPELLE LASSON" }, { - "codePostal": "57420", - "codeCommune": "57231", - "libelleAcheminement": "FOVILLE", - "nomCommune": "FOVILLE" + "codePostal": "53290", + "codeCommune": "53029", + "libelleAcheminement": "BIERNE LES VILLAGES", + "nomCommune": "BIERNE LES VILLAGES" }, { - "codePostal": "33730", - "codeCommune": "33329", - "libelleAcheminement": "POMPEJAC", - "nomCommune": "POMPEJAC" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "28210", - "codeCommune": "28299", - "libelleAcheminement": "LES PINTHIERES", - "nomCommune": "LES PINTHIERES" + "codePostal": "06260", + "codeCommune": "06098", + "libelleAcheminement": "PUGET ROSTANG", + "nomCommune": "PUGET ROSTANG" }, { - "codePostal": "45330", - "codeCommune": "45191", - "libelleAcheminement": "LE MALESHERBOIS", - "nomCommune": "LE MALESHERBOIS" + "codePostal": "61210", + "codeCommune": "61217", + "libelleAcheminement": "LA LANDE DE LOUGE", + "nomCommune": "LA LANDE DE LOUGE" }, { - "codePostal": "57670", - "codeCommune": "57248", - "libelleAcheminement": "GIVRYCOURT", - "nomCommune": "GIVRYCOURT" + "codePostal": "51310", + "codeCommune": "51137", + "libelleAcheminement": "CHATILLON SUR MORIN", + "nomCommune": "CHATILLON SUR MORIN" }, { - "codePostal": "33370", - "codeCommune": "33330", - "libelleAcheminement": "POMPIGNAC", - "nomCommune": "POMPIGNAC" + "codePostal": "53240", + "codeCommune": "53031", + "libelleAcheminement": "LA BIGOTTIERE", + "nomCommune": "LA BIGOTTIERE" }, { - "codePostal": "28800", - "codeCommune": "28306", - "libelleAcheminement": "PRE ST MARTIN", - "nomCommune": "PRE ST MARTIN" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "45270", - "codeCommune": "45205", - "libelleAcheminement": "MEZIERES EN GATINAIS", - "nomCommune": "MEZIERES EN GATINAIS" + "codePostal": "06420", + "codeCommune": "06102", + "libelleAcheminement": "RIMPLAS", + "nomCommune": "RIMPLAS" }, { - "codePostal": "57220", - "codeCommune": "57252", - "libelleAcheminement": "GOMELANGE", - "nomCommune": "GOMELANGE" + "codePostal": "61290", + "codeCommune": "61230", + "libelleAcheminement": "LONGNY LES VILLAGES", + "nomCommune": "LONGNY LES VILLAGES" }, { - "codePostal": "33660", - "codeCommune": "33332", - "libelleAcheminement": "PORCHERES", - "nomCommune": "PORCHERES" + "codePostal": "51800", + "codeCommune": "51138", + "libelleAcheminement": "CHATRICES", + "nomCommune": "CHATRICES" }, { - "codePostal": "28170", - "codeCommune": "28323", - "libelleAcheminement": "ST ANGE ET TORCAY", - "nomCommune": "ST ANGE ET TORCAY" + "codePostal": "53290", + "codeCommune": "53036", + "libelleAcheminement": "BOUERE", + "nomCommune": "BOUERE" }, { - "codePostal": "45200", - "codeCommune": "45208", - "libelleAcheminement": "MONTARGIS", - "nomCommune": "MONTARGIS" + "codePostal": "61250", + "codeCommune": "61497", + "libelleAcheminement": "VALFRAMBERT", + "nomCommune": "VALFRAMBERT" }, { - "codePostal": "57260", - "codeCommune": "57270", - "libelleAcheminement": "VAL DE BRIDE", - "nomCommune": "VAL DE BRIDE" + "codePostal": "06190", + "codeCommune": "06104", + "libelleAcheminement": "ROQUEBRUNE CAP MARTIN", + "nomCommune": "ROQUEBRUNE CAP MARTIN" }, { - "codePostal": "33680", - "codeCommune": "33333", - "libelleAcheminement": "LE PORGE", - "nomCommune": "LE PORGE" + "codePostal": "61290", + "codeCommune": "61230", + "libelleAcheminement": "LONGNY LES VILLAGES", + "nomCommune": "LONGNY LES VILLAGES" }, { - "codePostal": "28240", - "codeCommune": "28333", - "libelleAcheminement": "ST DENIS DES PUITS", - "nomCommune": "ST DENIS DES PUITS" + "codePostal": "51240", + "codeCommune": "51141", + "libelleAcheminement": "LA CHAUSSEE SUR MARNE", + "nomCommune": "LA CHAUSSEE SUR MARNE" }, { - "codePostal": "45290", - "codeCommune": "45218", - "libelleAcheminement": "LE MOULINET SUR SOLIN", - "nomCommune": "LE MOULINET SUR SOLIN" + "codePostal": "53410", + "codeCommune": "53045", + "libelleAcheminement": "LA BRULATTE", + "nomCommune": "LA BRULATTE" }, { - "codePostal": "57340", - "codeCommune": "57281", - "libelleAcheminement": "HABOUDANGE", - "nomCommune": "HABOUDANGE" + "codePostal": "61130", + "codeCommune": "61498", + "libelleAcheminement": "VAUNOISE", + "nomCommune": "VAUNOISE" }, { - "codePostal": "33350", - "codeCommune": "33344", - "libelleAcheminement": "PUJOLS", - "nomCommune": "PUJOLS" + "codePostal": "06190", + "codeCommune": "06104", + "libelleAcheminement": "ROQUEBRUNE CAP MARTIN", + "nomCommune": "ROQUEBRUNE CAP MARTIN" }, { - "codePostal": "28200", - "codeCommune": "28334", - "libelleAcheminement": "ST DENIS LANNERAY", - "nomCommune": "ST DENIS LANNERAY" + "codePostal": "61600", + "codeCommune": "61243", + "libelleAcheminement": "MAGNY LE DESERT", + "nomCommune": "MAGNY LE DESERT" }, { - "codePostal": "45170", - "codeCommune": "45231", - "libelleAcheminement": "OISON", - "nomCommune": "OISON" + "codePostal": "51530", + "codeCommune": "51142", + "libelleAcheminement": "CHAVOT COURCOURT", + "nomCommune": "CHAVOT COURCOURT" }, { - "codePostal": "57970", - "codeCommune": "57287", - "libelleAcheminement": "BASSE HAM", - "nomCommune": "BASSE HAM" + "codePostal": "53170", + "codeCommune": "53046", + "libelleAcheminement": "LE BURET", + "nomCommune": "LE BURET" }, { - "codePostal": "33190", - "codeCommune": "33346", - "libelleAcheminement": "PUYBARBAN", - "nomCommune": "PUYBARBAN" + "codePostal": "62161", + "codeCommune": "62011", + "libelleAcheminement": "AGNEZ LES DUISANS", + "nomCommune": "AGNEZ LES DUISANS" }, { - "codePostal": "28270", - "codeCommune": "28346", - "libelleAcheminement": "ST LUBIN DE CRAVANT", - "nomCommune": "ST LUBIN DE CRAVANT" + "codePostal": "06730", + "codeCommune": "06114", + "libelleAcheminement": "ST ANDRE DE LA ROCHE", + "nomCommune": "ST ANDRE DE LA ROCHE" }, { - "codePostal": "45140", - "codeCommune": "45235", - "libelleAcheminement": "ORMES", - "nomCommune": "ORMES" + "codePostal": "61170", + "codeCommune": "61251", + "libelleAcheminement": "MARCHEMAISONS", + "nomCommune": "MARCHEMAISONS" }, { - "codePostal": "57910", - "codeCommune": "57289", - "libelleAcheminement": "HAMBACH", - "nomCommune": "HAMBACH" + "codePostal": "51800", + "codeCommune": "51143", + "libelleAcheminement": "LE CHEMIN", + "nomCommune": "LE CHEMIN" }, { - "codePostal": "33360", - "codeCommune": "33349", - "libelleAcheminement": "QUINSAC", - "nomCommune": "QUINSAC" + "codePostal": "53200", + "codeCommune": "53062", + "libelleAcheminement": "CHATEAU GONTIER SUR MAYENNE", + "nomCommune": "CHATEAU GONTIER SUR MAYENNE" }, { - "codePostal": "28210", - "codeCommune": "28349", - "libelleAcheminement": "ST LUCIEN", - "nomCommune": "ST LUCIEN" + "codePostal": "62217", + "codeCommune": "62013", + "libelleAcheminement": "AGNY", + "nomCommune": "AGNY" }, { - "codePostal": "45290", - "codeCommune": "45239", - "libelleAcheminement": "OUSSOY EN GATINAIS", - "nomCommune": "OUSSOY EN GATINAIS" + "codePostal": "06260", + "codeCommune": "06124", + "libelleAcheminement": "ST LEGER", + "nomCommune": "ST LEGER" }, { - "codePostal": "57870", - "codeCommune": "57299", - "libelleAcheminement": "HARTZVILLER", - "nomCommune": "HARTZVILLER" + "codePostal": "61400", + "codeCommune": "61255", + "libelleAcheminement": "MAUVES SUR HUISNE", + "nomCommune": "MAUVES SUR HUISNE" }, { - "codePostal": "33580", - "codeCommune": "33353", - "libelleAcheminement": "RIMONS", - "nomCommune": "RIMONS" + "codePostal": "51510", + "codeCommune": "51146", + "libelleAcheminement": "CHENIERS", + "nomCommune": "CHENIERS" }, { - "codePostal": "28190", - "codeCommune": "28350", - "libelleAcheminement": "ST LUPERCE", - "nomCommune": "ST LUPERCE" + "codePostal": "53200", + "codeCommune": "53062", + "libelleAcheminement": "CHATEAU GONTIER SUR MAYENNE", + "nomCommune": "CHATEAU GONTIER SUR MAYENNE" }, { - "codePostal": "45480", - "codeCommune": "45240", - "libelleAcheminement": "OUTARVILLE", - "nomCommune": "OUTARVILLE" + "codePostal": "62170", + "codeCommune": "62018", + "libelleAcheminement": "AIX EN ISSART", + "nomCommune": "AIX EN ISSART" }, { - "codePostal": "57320", - "codeCommune": "57309", - "libelleAcheminement": "HEINING LES BOUZONVILLE", - "nomCommune": "HEINING LES BOUZONVILLE" + "codePostal": "06420", + "codeCommune": "06129", + "libelleAcheminement": "ST SAUVEUR SUR TINEE", + "nomCommune": "ST SAUVEUR SUR TINEE" }, { - "codePostal": "33220", - "codeCommune": "33360", - "libelleAcheminement": "LA ROQUILLE", - "nomCommune": "LA ROQUILLE" + "codePostal": "61410", + "codeCommune": "61257", + "libelleAcheminement": "MEHOUDIN", + "nomCommune": "MEHOUDIN" }, { - "codePostal": "28800", - "codeCommune": "28353", - "libelleAcheminement": "ST MAUR SUR LE LOIR", - "nomCommune": "ST MAUR SUR LE LOIR" + "codePostal": "51150", + "codeCommune": "51150", + "libelleAcheminement": "CHERVILLE", + "nomCommune": "CHERVILLE" }, { - "codePostal": "45250", - "codeCommune": "45245", - "libelleAcheminement": "OUZOUER SUR TREZEE", - "nomCommune": "OUZOUER SUR TREZEE" + "codePostal": "53200", + "codeCommune": "53066", + "libelleAcheminement": "CHEMAZE", + "nomCommune": "CHEMAZE" }, { - "codePostal": "57510", - "codeCommune": "57325", - "libelleAcheminement": "HILSPRICH", - "nomCommune": "HILSPRICH" + "codePostal": "62160", + "codeCommune": "62019", + "libelleAcheminement": "AIX NOULETTE", + "nomCommune": "AIX NOULETTE" }, { - "codePostal": "33820", - "codeCommune": "33374", - "libelleAcheminement": "ST AUBIN DE BLAYE", - "nomCommune": "ST AUBIN DE BLAYE" + "codePostal": "06910", + "codeCommune": "06131", + "libelleAcheminement": "SALLAGRIFFON", + "nomCommune": "SALLAGRIFFON" }, { - "codePostal": "28240", - "codeCommune": "28354", - "libelleAcheminement": "ST MAURICE ST GERMAIN", - "nomCommune": "ST MAURICE ST GERMAIN" + "codePostal": "61170", + "codeCommune": "61258", + "libelleAcheminement": "LE MELE SUR SARTHE", + "nomCommune": "LE MELE SUR SARTHE" }, { - "codePostal": "45700", - "codeCommune": "45247", - "libelleAcheminement": "PANNES", - "nomCommune": "PANNES" + "codePostal": "51120", + "codeCommune": "51151", + "libelleAcheminement": "CHICHEY", + "nomCommune": "CHICHEY" }, { - "codePostal": "57480", - "codeCommune": "57341", - "libelleAcheminement": "HUNTING", - "nomCommune": "HUNTING" + "codePostal": "53250", + "codeCommune": "53069", + "libelleAcheminement": "CHEVAIGNE DU MAINE", + "nomCommune": "CHEVAIGNE DU MAINE" }, { - "codePostal": "33420", - "codeCommune": "33375", - "libelleAcheminement": "ST AUBIN DE BRANNE", - "nomCommune": "ST AUBIN DE BRANNE" + "codePostal": "62310", + "codeCommune": "62026", + "libelleAcheminement": "AMBRICOURT", + "nomCommune": "AMBRICOURT" }, { - "codePostal": "28130", - "codeCommune": "28357", - "libelleAcheminement": "ST PIAT", - "nomCommune": "ST PIAT" + "codePostal": "06540", + "codeCommune": "06132", + "libelleAcheminement": "SAORGE", + "nomCommune": "SAORGE" }, { - "codePostal": "45200", - "codeCommune": "45249", - "libelleAcheminement": "PAUCOURT", - "nomCommune": "PAUCOURT" + "codePostal": "61160", + "codeCommune": "61276", + "libelleAcheminement": "MERRI", + "nomCommune": "MERRI" }, { - "codePostal": "57970", - "codeCommune": "57343", - "libelleAcheminement": "ILLANGE", - "nomCommune": "ILLANGE" + "codePostal": "51500", + "codeCommune": "51152", + "libelleAcheminement": "CHIGNY LES ROSES", + "nomCommune": "CHIGNY LES ROSES" }, { - "codePostal": "33540", - "codeCommune": "33379", - "libelleAcheminement": "ST BRICE", - "nomCommune": "ST BRICE" + "codePostal": "53100", + "codeCommune": "53074", + "libelleAcheminement": "CONTEST", + "nomCommune": "CONTEST" }, { - "codePostal": "28170", - "codeCommune": "28360", - "libelleAcheminement": "ST SAUVEUR MARVILLE", - "nomCommune": "ST SAUVEUR MARVILLE" + "codePostal": "62190", + "codeCommune": "62028", + "libelleAcheminement": "AMES", + "nomCommune": "AMES" }, { - "codePostal": "45210", - "codeCommune": "45250", - "libelleAcheminement": "PERS EN GATINAIS", - "nomCommune": "PERS EN GATINAIS" + "codePostal": "06750", + "codeCommune": "06134", + "libelleAcheminement": "SERANON", + "nomCommune": "SERANON" }, { - "codePostal": "57130", - "codeCommune": "57350", - "libelleAcheminement": "JOUY AUX ARCHES", - "nomCommune": "JOUY AUX ARCHES" + "codePostal": "61360", + "codeCommune": "61286", + "libelleAcheminement": "MONTGAUDRY", + "nomCommune": "MONTGAUDRY" }, { - "codePostal": "33860", - "codeCommune": "33380", - "libelleAcheminement": "VAL DE LIVENNE", - "nomCommune": "VAL DE LIVENNE" + "codePostal": "51260", + "codeCommune": "51155", + "libelleAcheminement": "CLESLES", + "nomCommune": "CLESLES" }, { - "codePostal": "28210", - "codeCommune": "28372", - "libelleAcheminement": "SENANTES", - "nomCommune": "SENANTES" + "codePostal": "53230", + "codeCommune": "53077", + "libelleAcheminement": "COSSE LE VIVIEN", + "nomCommune": "COSSE LE VIVIEN" }, { - "codePostal": "45390", - "codeCommune": "45258", - "libelleAcheminement": "PUISEAUX", - "nomCommune": "PUISEAUX" + "codePostal": "62340", + "codeCommune": "62031", + "libelleAcheminement": "ANDRES", + "nomCommune": "ANDRES" }, { - "codePostal": "57412", - "codeCommune": "57355", - "libelleAcheminement": "KALHAUSEN", - "nomCommune": "KALHAUSEN" + "codePostal": "06440", + "codeCommune": "06142", + "libelleAcheminement": "TOUET DE L ESCARENE", + "nomCommune": "TOUET DE L ESCARENE" }, { - "codePostal": "33880", - "codeCommune": "33381", - "libelleAcheminement": "ST CAPRAIS DE BORDEAUX", - "nomCommune": "ST CAPRAIS DE BORDEAUX" + "codePostal": "61100", + "codeCommune": "61287", + "libelleAcheminement": "MONTILLY SUR NOIREAU", + "nomCommune": "MONTILLY SUR NOIREAU" }, { - "codePostal": "28250", - "codeCommune": "28373", - "libelleAcheminement": "SENONCHES", - "nomCommune": "SENONCHES" + "codePostal": "51270", + "codeCommune": "51157", + "libelleAcheminement": "COIZARD JOCHES", + "nomCommune": "COIZARD JOCHES" }, { - "codePostal": "45210", - "codeCommune": "45265", - "libelleAcheminement": "ROZOY LE VIEIL", - "nomCommune": "ROZOY LE VIEIL" + "codePostal": "53500", + "codeCommune": "53096", + "libelleAcheminement": "ERNEE", + "nomCommune": "ERNEE" }, { - "codePostal": "57480", - "codeCommune": "57361", - "libelleAcheminement": "KERLING LES SIERCK", - "nomCommune": "KERLING LES SIERCK" + "codePostal": "62143", + "codeCommune": "62032", + "libelleAcheminement": "ANGRES", + "nomCommune": "ANGRES" }, { - "codePostal": "33340", - "codeCommune": "33383", - "libelleAcheminement": "ST CHRISTOLY MEDOC", - "nomCommune": "ST CHRISTOLY MEDOC" + "codePostal": "06710", + "codeCommune": "06143", + "libelleAcheminement": "TOUET SUR VAR", + "nomCommune": "TOUET SUR VAR" }, { - "codePostal": "28150", - "codeCommune": "28383", - "libelleAcheminement": "THEUVILLE", - "nomCommune": "THEUVILLE" + "codePostal": "61110", + "codeCommune": "61300", + "libelleAcheminement": "MOUTIERS AU PERCHE", + "nomCommune": "MOUTIERS AU PERCHE" }, { - "codePostal": "45730", - "codeCommune": "45270", - "libelleAcheminement": "ST BENOIT SUR LOIRE", - "nomCommune": "ST BENOIT SUR LOIRE" + "codePostal": "51230", + "codeCommune": "51165", + "libelleAcheminement": "CONNANTRE", + "nomCommune": "CONNANTRE" }, { - "codePostal": "57480", - "codeCommune": "57365", - "libelleAcheminement": "KIRSCHNAUMEN", - "nomCommune": "KIRSCHNAUMEN" + "codePostal": "53940", + "codeCommune": "53103", + "libelleAcheminement": "LE GENEST ST ISLE", + "nomCommune": "LE GENEST ST ISLE" }, { - "codePostal": "33570", - "codeCommune": "33386", - "libelleAcheminement": "ST CIBARD", - "nomCommune": "ST CIBARD" + "codePostal": "62880", + "codeCommune": "62033", + "libelleAcheminement": "ANNAY", + "nomCommune": "ANNAY" }, { - "codePostal": "28170", - "codeCommune": "28386", - "libelleAcheminement": "THIMERT GATELLES", - "nomCommune": "THIMERT GATELLES" + "codePostal": "06420", + "codeCommune": "06144", + "libelleAcheminement": "LA TOUR", + "nomCommune": "LA TOUR" }, { - "codePostal": "45220", - "codeCommune": "45275", - "libelleAcheminement": "ST FIRMIN DES BOIS", - "nomCommune": "ST FIRMIN DES BOIS" + "codePostal": "61160", + "codeCommune": "61302", + "libelleAcheminement": "NEAUPHE SUR DIVE", + "nomCommune": "NEAUPHE SUR DIVE" }, { - "codePostal": "57970", - "codeCommune": "57372", - "libelleAcheminement": "KUNTZIG", - "nomCommune": "KUNTZIG" + "codePostal": "51330", + "codeCommune": "51166", + "libelleAcheminement": "CONTAULT", + "nomCommune": "CONTAULT" }, { - "codePostal": "33410", - "codeCommune": "33392", - "libelleAcheminement": "STE CROIX DU MONT", - "nomCommune": "STE CROIX DU MONT" + "codePostal": "53440", + "codeCommune": "53109", + "libelleAcheminement": "GRAZAY", + "nomCommune": "GRAZAY" }, { - "codePostal": "28480", - "codeCommune": "28387", - "libelleAcheminement": "THIRON GARDAIS", - "nomCommune": "THIRON GARDAIS" + "codePostal": "62149", + "codeCommune": "62034", + "libelleAcheminement": "ANNEQUIN", + "nomCommune": "ANNEQUIN" }, { - "codePostal": "45700", - "codeCommune": "45283", - "libelleAcheminement": "ST HILAIRE SUR PUISEAUX", - "nomCommune": "ST HILAIRE SUR PUISEAUX" + "codePostal": "06420", + "codeCommune": "06146", + "libelleAcheminement": "TOURNEFORT", + "nomCommune": "TOURNEFORT" }, { - "codePostal": "57730", - "codeCommune": "57373", - "libelleAcheminement": "LACHAMBRE", - "nomCommune": "LACHAMBRE" + "codePostal": "61160", + "codeCommune": "61303", + "libelleAcheminement": "NECY", + "nomCommune": "NECY" }, { - "codePostal": "33560", - "codeCommune": "33397", - "libelleAcheminement": "STE EULALIE", - "nomCommune": "STE EULALIE" + "codePostal": "51510", + "codeCommune": "51168", + "libelleAcheminement": "COOLUS", + "nomCommune": "COOLUS" }, { - "codePostal": "28140", - "codeCommune": "28390", - "libelleAcheminement": "TILLAY LE PENEUX", - "nomCommune": "TILLAY LE PENEUX" + "codePostal": "53120", + "codeCommune": "53115", + "libelleAcheminement": "HERCE", + "nomCommune": "HERCE" }, { - "codePostal": "45650", - "codeCommune": "45286", - "libelleAcheminement": "ST JEAN LE BLANC", - "nomCommune": "ST JEAN LE BLANC" + "codePostal": "62510", + "codeCommune": "62040", + "libelleAcheminement": "ARQUES", + "nomCommune": "ARQUES" }, { - "codePostal": "57810", - "codeCommune": "57375", - "libelleAcheminement": "LAGARDE", - "nomCommune": "LAGARDE" + "codePostal": "06140", + "codeCommune": "06148", + "libelleAcheminement": "TOURRETTES SUR LOUP", + "nomCommune": "TOURRETTES SUR LOUP" }, { - "codePostal": "33220", - "codeCommune": "33402", - "libelleAcheminement": "STE FOY LA GRANDE", - "nomCommune": "STE FOY LA GRANDE" + "codePostal": "61240", + "codeCommune": "61310", + "libelleAcheminement": "NONANT LE PIN", + "nomCommune": "NONANT LE PIN" }, { - "codePostal": "28310", - "codeCommune": "28391", - "libelleAcheminement": "TOURY", - "nomCommune": "TOURY" + "codePostal": "51220", + "codeCommune": "51171", + "libelleAcheminement": "CORMICY", + "nomCommune": "CORMICY" }, { - "codePostal": "45110", - "codeCommune": "45290", - "libelleAcheminement": "ST MARTIN D ABBAT", - "nomCommune": "ST MARTIN D ABBAT" + "codePostal": "53970", + "codeCommune": "53119", + "libelleAcheminement": "L HUISSERIE", + "nomCommune": "L HUISSERIE" }, { - "codePostal": "57660", - "codeCommune": "57389", - "libelleAcheminement": "LELLING", - "nomCommune": "LELLING" + "codePostal": "62223", + "codeCommune": "62042", + "libelleAcheminement": "ATHIES", + "nomCommune": "ATHIES" }, { - "codePostal": "33580", - "codeCommune": "33404", - "libelleAcheminement": "STE GEMME", - "nomCommune": "STE GEMME" + "codePostal": "06420", + "codeCommune": "06153", + "libelleAcheminement": "VALDEBLORE", + "nomCommune": "VALDEBLORE" }, { - "codePostal": "28170", - "codeCommune": "28393", - "libelleAcheminement": "TREMBLAY LES VILLAGES", - "nomCommune": "TREMBLAY LES VILLAGES" + "codePostal": "61700", + "codeCommune": "61326", + "libelleAcheminement": "PERROU", + "nomCommune": "PERROU" }, { - "codePostal": "45310", - "codeCommune": "45299", - "libelleAcheminement": "ST SIGISMOND", - "nomCommune": "ST SIGISMOND" + "codePostal": "51220", + "codeCommune": "51171", + "libelleAcheminement": "CORMICY", + "nomCommune": "CORMICY" }, { - "codePostal": "57620", - "codeCommune": "57390", - "libelleAcheminement": "LEMBERG", - "nomCommune": "LEMBERG" + "codePostal": "53160", + "codeCommune": "53120", + "libelleAcheminement": "IZE", + "nomCommune": "IZE" }, { - "codePostal": "33240", - "codeCommune": "33407", - "libelleAcheminement": "ST GENES DE FRONSAC", - "nomCommune": "ST GENES DE FRONSAC" + "codePostal": "62250", + "codeCommune": "62052", + "libelleAcheminement": "AUDEMBERT", + "nomCommune": "AUDEMBERT" }, { - "codePostal": "28500", - "codeCommune": "28394", - "libelleAcheminement": "TREON", - "nomCommune": "TREON" + "codePostal": "06220", + "codeCommune": "06155", + "libelleAcheminement": "VALLAURIS", + "nomCommune": "VALLAURIS" }, { - "codePostal": "45640", - "codeCommune": "45300", - "libelleAcheminement": "SANDILLON", - "nomCommune": "SANDILLON" + "codePostal": "61370", + "codeCommune": "61330", + "libelleAcheminement": "PLANCHES", + "nomCommune": "PLANCHES" }, { - "codePostal": "57590", - "codeCommune": "57391", - "libelleAcheminement": "LEMONCOURT", - "nomCommune": "LEMONCOURT" + "codePostal": "51270", + "codeCommune": "51174", + "libelleAcheminement": "CORRIBERT", + "nomCommune": "CORRIBERT" }, { - "codePostal": "33240", - "codeCommune": "33414", - "libelleAcheminement": "ST GERMAIN DE LA RIVIERE", - "nomCommune": "ST GERMAIN DE LA RIVIERE" + "codePostal": "53380", + "codeCommune": "53123", + "libelleAcheminement": "JUVIGNE", + "nomCommune": "JUVIGNE" }, { - "codePostal": "28400", - "codeCommune": "28395", - "libelleAcheminement": "TRIZAY COUTRETOT ST SERGE", - "nomCommune": "TRIZAY COUTRETOT ST SERGE" + "codePostal": "62179", + "codeCommune": "62054", + "libelleAcheminement": "AUDINGHEN", + "nomCommune": "AUDINGHEN" }, { - "codePostal": "45170", - "codeCommune": "45301", - "libelleAcheminement": "SANTEAU", - "nomCommune": "SANTEAU" + "codePostal": "06430", + "codeCommune": "06163", + "libelleAcheminement": "TENDE", + "nomCommune": "TENDE" }, { - "codePostal": "57580", - "codeCommune": "57392", - "libelleAcheminement": "LEMUD", - "nomCommune": "LEMUD" + "codePostal": "61220", + "codeCommune": "61332", + "libelleAcheminement": "POINTEL", + "nomCommune": "POINTEL" }, { - "codePostal": "33240", - "codeCommune": "33415", - "libelleAcheminement": "ST GERVAIS", - "nomCommune": "ST GERVAIS" + "codePostal": "51230", + "codeCommune": "51176", + "libelleAcheminement": "CORROY", + "nomCommune": "CORROY" }, { - "codePostal": "28150", - "codeCommune": "28406", - "libelleAcheminement": "EOLE EN BEAUCE", - "nomCommune": "EOLE EN BEAUCE" + "codePostal": "53200", + "codeCommune": "53124", + "libelleAcheminement": "PREE D ANJOU", + "nomCommune": "PREE D ANJOU" }, { - "codePostal": "45490", - "codeCommune": "45303", - "libelleAcheminement": "SCEAUX DU GATINAIS", - "nomCommune": "SCEAUX DU GATINAIS" + "codePostal": "62610", + "codeCommune": "62059", + "libelleAcheminement": "AUTINGUES", + "nomCommune": "AUTINGUES" }, { - "codePostal": "57670", - "codeCommune": "57394", - "libelleAcheminement": "LENING", - "nomCommune": "LENING" + "codePostal": "07000", + "codeCommune": "07004", + "libelleAcheminement": "AJOUX", + "nomCommune": "AJOUX" }, { - "codePostal": "33330", - "codeCommune": "33420", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "61120", + "codeCommune": "61333", + "libelleAcheminement": "PONTCHARDON", + "nomCommune": "PONTCHARDON" }, { - "codePostal": "28150", - "codeCommune": "28406", - "libelleAcheminement": "EOLE EN BEAUCE", - "nomCommune": "EOLE EN BEAUCE" + "codePostal": "51390", + "codeCommune": "51177", + "libelleAcheminement": "COULOMMES LA MONTAGNE", + "nomCommune": "COULOMMES LA MONTAGNE" }, { - "codePostal": "45300", - "codeCommune": "45310", - "libelleAcheminement": "SERMAISES", - "nomCommune": "SERMAISES" + "codePostal": "53120", + "codeCommune": "53131", + "libelleAcheminement": "LESBOIS", + "nomCommune": "LESBOIS" }, { - "codePostal": "57230", - "codeCommune": "57402", - "libelleAcheminement": "LIEDERSCHIEDT", - "nomCommune": "LIEDERSCHIEDT" + "codePostal": "62116", + "codeCommune": "62068", + "libelleAcheminement": "AYETTE", + "nomCommune": "AYETTE" }, { - "codePostal": "33127", - "codeCommune": "33422", - "libelleAcheminement": "ST JEAN D ILLAC", - "nomCommune": "ST JEAN D ILLAC" + "codePostal": "07400", + "codeCommune": "07005", + "libelleAcheminement": "ALBA LA ROMAINE", + "nomCommune": "ALBA LA ROMAINE" }, { - "codePostal": "28480", - "codeCommune": "28407", - "libelleAcheminement": "VICHERES", - "nomCommune": "VICHERES" + "codePostal": "61210", + "codeCommune": "61339", + "libelleAcheminement": "PUTANGES LE LAC", + "nomCommune": "PUTANGES LE LAC" }, { - "codePostal": "45450", - "codeCommune": "45314", - "libelleAcheminement": "SULLY LA CHAPELLE", - "nomCommune": "SULLY LA CHAPELLE" + "codePostal": "51390", + "codeCommune": "51188", + "libelleAcheminement": "COURMAS", + "nomCommune": "COURMAS" }, { - "codePostal": "57260", - "codeCommune": "57404", - "libelleAcheminement": "LINDRE BASSE", - "nomCommune": "LINDRE BASSE" + "codePostal": "53140", + "codeCommune": "53133", + "libelleAcheminement": "LIGNIERES ORGERES", + "nomCommune": "LIGNIERES ORGERES" }, { - "codePostal": "33250", - "codeCommune": "33423", - "libelleAcheminement": "ST JULIEN BEYCHEVELLE", - "nomCommune": "ST JULIEN BEYCHEVELLE" + "codePostal": "62150", + "codeCommune": "62077", + "libelleAcheminement": "BAJUS", + "nomCommune": "BAJUS" }, { - "codePostal": "28800", - "codeCommune": "28418", - "libelleAcheminement": "VILLIERS ST ORIEN", - "nomCommune": "VILLIERS ST ORIEN" + "codePostal": "07120", + "codeCommune": "07023", + "libelleAcheminement": "BALAZUC", + "nomCommune": "BALAZUC" }, { - "codePostal": "45190", - "codeCommune": "45317", - "libelleAcheminement": "TAVERS", - "nomCommune": "TAVERS" + "codePostal": "61210", + "codeCommune": "61339", + "libelleAcheminement": "PUTANGES LE LAC", + "nomCommune": "PUTANGES LE LAC" }, { - "codePostal": "57670", - "codeCommune": "57410", - "libelleAcheminement": "LHOR", - "nomCommune": "LHOR" + "codePostal": "51480", + "codeCommune": "51190", + "libelleAcheminement": "COURTAGNON", + "nomCommune": "COURTAGNON" }, { - "codePostal": "33113", - "codeCommune": "33429", - "libelleAcheminement": "ST LEGER DE BALSON", - "nomCommune": "ST LEGER DE BALSON" + "codePostal": "53140", + "codeCommune": "53133", + "libelleAcheminement": "LIGNIERES ORGERES", + "nomCommune": "LIGNIERES ORGERES" }, { - "codePostal": "28700", - "codeCommune": "28421", - "libelleAcheminement": "VOISE", - "nomCommune": "VOISE" + "codePostal": "62380", + "codeCommune": "62088", + "libelleAcheminement": "BAYENGHEM LES SENINGHEM", + "nomCommune": "BAYENGHEM LES SENINGHEM" }, { - "codePostal": "45210", - "codeCommune": "45322", - "libelleAcheminement": "THORAILLES", - "nomCommune": "THORAILLES" + "codePostal": "07330", + "codeCommune": "07025", + "libelleAcheminement": "BARNAS", + "nomCommune": "BARNAS" }, { - "codePostal": "57670", - "codeCommune": "57418", - "libelleAcheminement": "LOUDREFING", - "nomCommune": "LOUDREFING" + "codePostal": "61210", + "codeCommune": "61349", + "libelleAcheminement": "RI", + "nomCommune": "RI" }, { - "codePostal": "33210", - "codeCommune": "33432", - "libelleAcheminement": "ST LOUBERT", - "nomCommune": "ST LOUBERT" + "codePostal": "51170", + "codeCommune": "51194", + "libelleAcheminement": "COURVILLE", + "nomCommune": "COURVILLE" }, { - "codePostal": "29770", - "codeCommune": "29003", - "libelleAcheminement": "AUDIERNE", - "nomCommune": "AUDIERNE" + "codePostal": "53360", + "codeCommune": "53136", + "libelleAcheminement": "LA ROCHE NEUVILLE", + "nomCommune": "LA ROCHE NEUVILLE" }, { - "codePostal": "45310", - "codeCommune": "45326", - "libelleAcheminement": "TOURNOISIS", - "nomCommune": "TOURNOISIS" + "codePostal": "62810", + "codeCommune": "62091", + "libelleAcheminement": "BEAUDRICOURT", + "nomCommune": "BEAUDRICOURT" }, { - "codePostal": "57720", - "codeCommune": "57421", - "libelleAcheminement": "LOUTZVILLER", - "nomCommune": "LOUTZVILLER" + "codePostal": "07700", + "codeCommune": "07034", + "libelleAcheminement": "BIDON", + "nomCommune": "BIDON" }, { - "codePostal": "33450", - "codeCommune": "33433", - "libelleAcheminement": "ST LOUBES", - "nomCommune": "ST LOUBES" + "codePostal": "61320", + "codeCommune": "61357", + "libelleAcheminement": "ROUPERROUX", + "nomCommune": "ROUPERROUX" }, { - "codePostal": "29770", - "codeCommune": "29003", - "libelleAcheminement": "AUDIERNE", - "nomCommune": "AUDIERNE" + "codePostal": "51600", + "codeCommune": "51197", + "libelleAcheminement": "LA CROIX EN CHAMPAGNE", + "nomCommune": "LA CROIX EN CHAMPAGNE" }, { - "codePostal": "45490", - "codeCommune": "45328", - "libelleAcheminement": "TREILLES EN GATINAIS", - "nomCommune": "TREILLES EN GATINAIS" + "codePostal": "53950", + "codeCommune": "53140", + "libelleAcheminement": "LOUVERNE", + "nomCommune": "LOUVERNE" }, { - "codePostal": "57820", - "codeCommune": "57427", - "libelleAcheminement": "LUTZELBOURG", - "nomCommune": "LUTZELBOURG" + "codePostal": "62810", + "codeCommune": "62092", + "libelleAcheminement": "BEAUFORT BLAVINCOURT", + "nomCommune": "BEAUFORT BLAVINCOURT" }, { - "codePostal": "33440", - "codeCommune": "33434", - "libelleAcheminement": "ST LOUIS DE MONTFERRAND", - "nomCommune": "ST LOUIS DE MONTFERRAND" + "codePostal": "07310", + "codeCommune": "07037", + "libelleAcheminement": "BOREE", + "nomCommune": "BOREE" }, { - "codePostal": "29690", - "codeCommune": "29013", - "libelleAcheminement": "BOTMEUR", - "nomCommune": "BOTMEUR" + "codePostal": "61700", + "codeCommune": "61369", + "libelleAcheminement": "ST BOMER LES FORGES", + "nomCommune": "ST BOMER LES FORGES" }, { - "codePostal": "45510", - "codeCommune": "45335", - "libelleAcheminement": "VIENNE EN VAL", - "nomCommune": "VIENNE EN VAL" + "codePostal": "51480", + "codeCommune": "51199", + "libelleAcheminement": "CUCHERY", + "nomCommune": "CUCHERY" }, { - "codePostal": "57280", - "codeCommune": "57433", - "libelleAcheminement": "MAIZIERES LES METZ", - "nomCommune": "MAIZIERES LES METZ" + "codePostal": "53440", + "codeCommune": "53144", + "libelleAcheminement": "MARCILLE LA VILLE", + "nomCommune": "MARCILLE LA VILLE" }, { - "codePostal": "33490", - "codeCommune": "33435", - "libelleAcheminement": "ST MACAIRE", - "nomCommune": "ST MACAIRE" + "codePostal": "62960", + "codeCommune": "62095", + "libelleAcheminement": "BEAUMETZ LES AIRE", + "nomCommune": "BEAUMETZ LES AIRE" }, { - "codePostal": "29860", - "codeCommune": "29015", - "libelleAcheminement": "BOURG BLANC", - "nomCommune": "BOURG BLANC" + "codePostal": "07590", + "codeCommune": "07038", + "libelleAcheminement": "BORNE", + "nomCommune": "BORNE" }, { - "codePostal": "45310", - "codeCommune": "45337", - "libelleAcheminement": "VILLAMBLAIN", - "nomCommune": "VILLAMBLAIN" + "codePostal": "61250", + "codeCommune": "61372", + "libelleAcheminement": "ST CENERI LE GEREI", + "nomCommune": "ST CENERI LE GEREI" }, { - "codePostal": "57640", - "codeCommune": "57438", - "libelleAcheminement": "MALROY", - "nomCommune": "MALROY" + "codePostal": "51320", + "codeCommune": "51212", + "libelleAcheminement": "DOMMARTIN LETTREE", + "nomCommune": "DOMMARTIN LETTREE" }, { - "codePostal": "33910", - "codeCommune": "33442", - "libelleAcheminement": "ST MARTIN DE LAYE", - "nomCommune": "ST MARTIN DE LAYE" + "codePostal": "53230", + "codeCommune": "53151", + "libelleAcheminement": "MERAL", + "nomCommune": "MERAL" }, { - "codePostal": "29890", - "codeCommune": "29021", - "libelleAcheminement": "PLOUNEOUR BRIGNOGAN PLAGES", - "nomCommune": "PLOUNEOUR BRIGNOGAN PLAGES" + "codePostal": "62142", + "codeCommune": "62105", + "libelleAcheminement": "BELLE ET HOULLEFORT", + "nomCommune": "BELLE ET HOULLEFORT" }, { - "codePostal": "45600", - "codeCommune": "45340", - "libelleAcheminement": "VILLEMURLIN", - "nomCommune": "VILLEMURLIN" + "codePostal": "07240", + "codeCommune": "07048", + "libelleAcheminement": "CHALENCON", + "nomCommune": "CHALENCON" }, { - "codePostal": "57480", - "codeCommune": "57439", - "libelleAcheminement": "MANDEREN RITZING", - "nomCommune": "MANDEREN RITZING" + "codePostal": "61570", + "codeCommune": "61375", + "libelleAcheminement": "BOISCHAMPRE", + "nomCommune": "BOISCHAMPRE" }, { - "codePostal": "33210", - "codeCommune": "33465", - "libelleAcheminement": "ST PIERRE DE MONS", - "nomCommune": "ST PIERRE DE MONS" + "codePostal": "51800", + "codeCommune": "51222", + "libelleAcheminement": "ECLAIRES", + "nomCommune": "ECLAIRES" }, { - "codePostal": "29270", - "codeCommune": "29024", - "libelleAcheminement": "CARHAIX PLOUGUER", - "nomCommune": "CARHAIX PLOUGUER" + "codePostal": "53170", + "codeCommune": "53152", + "libelleAcheminement": "MESLAY DU MAINE", + "nomCommune": "MESLAY DU MAINE" }, { - "codePostal": "45530", - "codeCommune": "45346", - "libelleAcheminement": "VITRY AUX LOGES", - "nomCommune": "VITRY AUX LOGES" + "codePostal": "62410", + "codeCommune": "62107", + "libelleAcheminement": "BENIFONTAINE", + "nomCommune": "BENIFONTAINE" }, { - "codePostal": "57100", - "codeCommune": "57441", - "libelleAcheminement": "MANOM", - "nomCommune": "MANOM" + "codePostal": "07120", + "codeCommune": "07061", + "libelleAcheminement": "CHAUZON", + "nomCommune": "CHAUZON" }, { - "codePostal": "33220", - "codeCommune": "33467", - "libelleAcheminement": "ST QUENTIN DE CAPLONG", - "nomCommune": "ST QUENTIN DE CAPLONG" + "codePostal": "61370", + "codeCommune": "61389", + "libelleAcheminement": "STE GAUBURGE STE COLOMBE", + "nomCommune": "STE GAUBURGE STE COLOMBE" }, { - "codePostal": "29770", - "codeCommune": "29028", - "libelleAcheminement": "CLEDEN CAP SIZUN", - "nomCommune": "CLEDEN CAP SIZUN" + "codePostal": "51500", + "codeCommune": "51225", + "libelleAcheminement": "ECUEIL", + "nomCommune": "ECUEIL" }, { - "codePostal": "45300", - "codeCommune": "45348", - "libelleAcheminement": "YEVRE LA VILLE", - "nomCommune": "YEVRE LA VILLE" + "codePostal": "53500", + "codeCommune": "53155", + "libelleAcheminement": "MONTENAY", + "nomCommune": "MONTENAY" }, { - "codePostal": "57535", - "codeCommune": "57443", - "libelleAcheminement": "MARANGE SILVANGE", - "nomCommune": "MARANGE SILVANGE" + "codePostal": "62690", + "codeCommune": "62113", + "libelleAcheminement": "BERLES MONCHEL", + "nomCommune": "BERLES MONCHEL" }, { - "codePostal": "33240", - "codeCommune": "33470", - "libelleAcheminement": "ST ROMAIN LA VIRVEE", - "nomCommune": "ST ROMAIN LA VIRVEE" + "codePostal": "07470", + "codeCommune": "07071", + "libelleAcheminement": "COUCOURON", + "nomCommune": "COUCOURON" }, { - "codePostal": "29160", - "codeCommune": "29042", - "libelleAcheminement": "CROZON", - "nomCommune": "CROZON" + "codePostal": "61600", + "codeCommune": "61390", + "libelleAcheminement": "ST GEORGES D ANNEBECQ", + "nomCommune": "ST GEORGES D ANNEBECQ" }, { - "codePostal": "46120", - "codeCommune": "46004", - "libelleAcheminement": "ANGLARS", - "nomCommune": "ANGLARS" + "codePostal": "51310", + "codeCommune": "51233", + "libelleAcheminement": "ESCARDES", + "nomCommune": "ESCARDES" }, { - "codePostal": "57420", - "codeCommune": "57445", - "libelleAcheminement": "MARIEULLES", - "nomCommune": "MARIEULLES" + "codePostal": "53970", + "codeCommune": "53168", + "libelleAcheminement": "NUILLE SUR VICOIN", + "nomCommune": "NUILLE SUR VICOIN" }, { - "codePostal": "33580", - "codeCommune": "33481", - "libelleAcheminement": "ST SULPICE DE GUILLERAGUES", - "nomCommune": "ST SULPICE DE GUILLERAGUES" + "codePostal": "62170", + "codeCommune": "62116", + "libelleAcheminement": "BERNIEULLES", + "nomCommune": "BERNIEULLES" }, { - "codePostal": "29460", - "codeCommune": "29045", - "libelleAcheminement": "DIRINON", - "nomCommune": "DIRINON" + "codePostal": "07000", + "codeCommune": "07074", + "libelleAcheminement": "CREYSSEILLES", + "nomCommune": "CREYSSEILLES" }, { - "codePostal": "46300", - "codeCommune": "46006", - "libelleAcheminement": "ANGLARS NOZAC", - "nomCommune": "ANGLARS NOZAC" + "codePostal": "61000", + "codeCommune": "61397", + "libelleAcheminement": "ST GERMAIN DU CORBEIS", + "nomCommune": "ST GERMAIN DU CORBEIS" }, { - "codePostal": "57670", - "codeCommune": "57446", - "libelleAcheminement": "MARIMONT LES BENESTROFF", - "nomCommune": "MARIMONT LES BENESTROFF" + "codePostal": "51260", + "codeCommune": "51234", + "libelleAcheminement": "ESCLAVOLLES LUREY", + "nomCommune": "ESCLAVOLLES LUREY" }, { - "codePostal": "33450", - "codeCommune": "33483", - "libelleAcheminement": "ST SULPICE ET CAMEYRAC", - "nomCommune": "ST SULPICE ET CAMEYRAC" + "codePostal": "53300", + "codeCommune": "53170", + "libelleAcheminement": "OISSEAU", + "nomCommune": "OISSEAU" }, { - "codePostal": "29510", - "codeCommune": "29048", - "libelleAcheminement": "EDERN", - "nomCommune": "EDERN" + "codePostal": "62170", + "codeCommune": "62124", + "libelleAcheminement": "BEUTIN", + "nomCommune": "BEUTIN" }, { - "codePostal": "46270", - "codeCommune": "46015", - "libelleAcheminement": "BAGNAC SUR CELE", - "nomCommune": "BAGNAC SUR CELE" + "codePostal": "07510", + "codeCommune": "07075", + "libelleAcheminement": "CROS DE GEORAND", + "nomCommune": "CROS DE GEORAND" }, { - "codePostal": "57050", - "codeCommune": "57463", - "libelleAcheminement": "METZ", - "nomCommune": "METZ" + "codePostal": "61390", + "codeCommune": "61398", + "libelleAcheminement": "ST GERMAIN LE VIEUX", + "nomCommune": "ST GERMAIN LE VIEUX" }, { - "codePostal": "33113", - "codeCommune": "33484", - "libelleAcheminement": "ST SYMPHORIEN", - "nomCommune": "ST SYMPHORIEN" + "codePostal": "51230", + "codeCommune": "51241", + "libelleAcheminement": "EUVY", + "nomCommune": "EUVY" }, { - "codePostal": "29370", - "codeCommune": "29049", - "libelleAcheminement": "ELLIANT", - "nomCommune": "ELLIANT" + "codePostal": "53100", + "codeCommune": "53174", + "libelleAcheminement": "PARIGNE SUR BRAYE", + "nomCommune": "PARIGNE SUR BRAYE" }, { - "codePostal": "46800", - "codeCommune": "46033", - "libelleAcheminement": "PORTE DU QUERCY", - "nomCommune": "PORTE DU QUERCY" + "codePostal": "62138", + "codeCommune": "62132", + "libelleAcheminement": "BILLY BERCLAU", + "nomCommune": "BILLY BERCLAU" }, { - "codePostal": "57670", - "codeCommune": "57470", - "libelleAcheminement": "MOLRING", - "nomCommune": "MOLRING" + "codePostal": "07630", + "codeCommune": "07075", + "libelleAcheminement": "CROS DE GEORAND", + "nomCommune": "CROS DE GEORAND" }, { - "codePostal": "33420", - "codeCommune": "33488", - "libelleAcheminement": "ST VINCENT DE PERTIGNAS", - "nomCommune": "ST VINCENT DE PERTIGNAS" + "codePostal": "61270", + "codeCommune": "61406", + "libelleAcheminement": "ST HILAIRE SUR RISLE", + "nomCommune": "ST HILAIRE SUR RISLE" }, { - "codePostal": "29260", - "codeCommune": "29055", - "libelleAcheminement": "LE FOLGOET", - "nomCommune": "LE FOLGOET" + "codePostal": "51320", + "codeCommune": "51244", + "libelleAcheminement": "FAUX VESIGNEUL", + "nomCommune": "FAUX VESIGNEUL" }, { - "codePostal": "46120", - "codeCommune": "46036", - "libelleAcheminement": "LE BOUYSSOU", - "nomCommune": "LE BOUYSSOU" + "codePostal": "53260", + "codeCommune": "53175", + "libelleAcheminement": "PARNE SUR ROC", + "nomCommune": "PARNE SUR ROC" }, { - "codePostal": "57570", - "codeCommune": "57475", - "libelleAcheminement": "MONDORFF", - "nomCommune": "MONDORFF" + "codePostal": "62650", + "codeCommune": "62134", + "libelleAcheminement": "BIMONT", + "nomCommune": "BIMONT" }, { - "codePostal": "33590", - "codeCommune": "33490", - "libelleAcheminement": "ST VIVIEN DE MEDOC", - "nomCommune": "ST VIVIEN DE MEDOC" + "codePostal": "07260", + "codeCommune": "07081", + "libelleAcheminement": "DOMPNAC", + "nomCommune": "DOMPNAC" }, { - "codePostal": "29850", - "codeCommune": "29061", - "libelleAcheminement": "GOUESNOU", - "nomCommune": "GOUESNOU" + "codePostal": "61270", + "codeCommune": "61422", + "libelleAcheminement": "LES ASPRES", + "nomCommune": "LES ASPRES" }, { - "codePostal": "46160", - "codeCommune": "46041", - "libelleAcheminement": "CADRIEU", - "nomCommune": "CADRIEU" + "codePostal": "51300", + "codeCommune": "51246", + "libelleAcheminement": "FAVRESSE", + "nomCommune": "FAVRESSE" }, { - "codePostal": "57920", - "codeCommune": "57476", - "libelleAcheminement": "MONNEREN", - "nomCommune": "MONNEREN" + "codePostal": "53240", + "codeCommune": "53179", + "libelleAcheminement": "PLACE", + "nomCommune": "PLACE" }, { - "codePostal": "33580", - "codeCommune": "33491", - "libelleAcheminement": "ST VIVIEN DE MONSEGUR", - "nomCommune": "ST VIVIEN DE MONSEGUR" + "codePostal": "62128", + "codeCommune": "62144", + "libelleAcheminement": "BOIRY BECQUERELLE", + "nomCommune": "BOIRY BECQUERELLE" }, { - "codePostal": "29650", - "codeCommune": "29067", - "libelleAcheminement": "GUERLESQUIN", - "nomCommune": "GUERLESQUIN" + "codePostal": "07360", + "codeCommune": "07083", + "libelleAcheminement": "DUNIERE SUR EYRIEUX", + "nomCommune": "DUNIERE SUR EYRIEUX" }, { - "codePostal": "46140", - "codeCommune": "46044", - "libelleAcheminement": "CAILLAC", - "nomCommune": "CAILLAC" + "codePostal": "61190", + "codeCommune": "61429", + "libelleAcheminement": "CHARENCEY", + "nomCommune": "CHARENCEY" }, { - "codePostal": "57530", - "codeCommune": "57482", - "libelleAcheminement": "OGY MONTOY FLANVILLE", - "nomCommune": "OGY MONTOY FLANVILLE" + "codePostal": "51480", + "codeCommune": "51252", + "libelleAcheminement": "FLEURY LA RIVIERE", + "nomCommune": "FLEURY LA RIVIERE" }, { - "codePostal": "33920", - "codeCommune": "33492", - "libelleAcheminement": "ST YZAN DE SOUDIAC", - "nomCommune": "ST YZAN DE SOUDIAC" + "codePostal": "53410", + "codeCommune": "53182", + "libelleAcheminement": "PORT BRILLET", + "nomCommune": "PORT BRILLET" }, { - "codePostal": "29730", - "codeCommune": "29072", - "libelleAcheminement": "GUILVINEC", - "nomCommune": "GUILVINEC" + "codePostal": "62320", + "codeCommune": "62148", + "libelleAcheminement": "BOIS BERNARD", + "nomCommune": "BOIS BERNARD" }, { - "codePostal": "46150", - "codeCommune": "46046", - "libelleAcheminement": "CALAMANE", - "nomCommune": "CALAMANE" + "codePostal": "07380", + "codeCommune": "07087", + "libelleAcheminement": "FABRAS", + "nomCommune": "FABRAS" }, { - "codePostal": "57250", - "codeCommune": "57491", - "libelleAcheminement": "MOYEUVRE GRANDE", - "nomCommune": "MOYEUVRE GRANDE" + "codePostal": "61100", + "codeCommune": "61443", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "33160", - "codeCommune": "33494", - "libelleAcheminement": "SALAUNES", - "nomCommune": "SALAUNES" + "codePostal": "51800", + "codeCommune": "51253", + "libelleAcheminement": "FLORENT EN ARGONNE", + "nomCommune": "FLORENT EN ARGONNE" }, { - "codePostal": "29290", - "codeCommune": "29076", - "libelleAcheminement": "MILIZAC GUIPRONVEL", - "nomCommune": "MILIZAC GUIPRONVEL" + "codePostal": "53340", + "codeCommune": "53184", + "libelleAcheminement": "PREAUX", + "nomCommune": "PREAUX" }, { - "codePostal": "46240", - "codeCommune": "46054", - "libelleAcheminement": "CANIAC DU CAUSSE", - "nomCommune": "CANIAC DU CAUSSE" + "codePostal": "62960", + "codeCommune": "62153", + "libelleAcheminement": "BOMY", + "nomCommune": "BOMY" }, { - "codePostal": "57260", - "codeCommune": "57493", - "libelleAcheminement": "MULCEY", - "nomCommune": "MULCEY" + "codePostal": "07200", + "codeCommune": "07091", + "libelleAcheminement": "FONS", + "nomCommune": "FONS" }, { - "codePostal": "33370", - "codeCommune": "33496", - "libelleAcheminement": "SALLEBOEUF", - "nomCommune": "SALLEBOEUF" + "codePostal": "61370", + "codeCommune": "61446", + "libelleAcheminement": "ST PIERRE DES LOGES", + "nomCommune": "ST PIERRE DES LOGES" }, { - "codePostal": "29880", - "codeCommune": "29077", - "libelleAcheminement": "GUISSENY", - "nomCommune": "GUISSENY" + "codePostal": "51160", + "codeCommune": "51256", + "libelleAcheminement": "FONTAINE SUR AY", + "nomCommune": "FONTAINE SUR AY" }, { - "codePostal": "46140", - "codeCommune": "46060", - "libelleAcheminement": "CARNAC ROUFFIAC", - "nomCommune": "CARNAC ROUFFIAC" + "codePostal": "53140", + "codeCommune": "53185", + "libelleAcheminement": "PRE EN PAIL ST SAMSON", + "nomCommune": "PRE EN PAIL ST SAMSON" }, { - "codePostal": "57220", - "codeCommune": "57495", - "libelleAcheminement": "NARBEFONTAINE", - "nomCommune": "NARBEFONTAINE" + "codePostal": "62340", + "codeCommune": "62161", + "libelleAcheminement": "BOUQUEHAULT", + "nomCommune": "BOUQUEHAULT" }, { - "codePostal": "33430", - "codeCommune": "33507", - "libelleAcheminement": "SAUVIAC", - "nomCommune": "SAUVIAC" + "codePostal": "07530", + "codeCommune": "07093", + "libelleAcheminement": "GENESTELLE", + "nomCommune": "GENESTELLE" }, { - "codePostal": "29690", - "codeCommune": "29081", - "libelleAcheminement": "HUELGOAT", - "nomCommune": "HUELGOAT" + "codePostal": "61320", + "codeCommune": "61453", + "libelleAcheminement": "ST SAUVEUR DE CARROUGES", + "nomCommune": "ST SAUVEUR DE CARROUGES" }, { - "codePostal": "46250", - "codeCommune": "46066", - "libelleAcheminement": "CAZALS", - "nomCommune": "CAZALS" + "codePostal": "51120", + "codeCommune": "51258", + "libelleAcheminement": "LA FORESTIERE", + "nomCommune": "LA FORESTIERE" }, { - "codePostal": "57700", - "codeCommune": "57498", - "libelleAcheminement": "NEUFCHEF", - "nomCommune": "NEUFCHEF" + "codePostal": "53350", + "codeCommune": "53191", + "libelleAcheminement": "LA ROE", + "nomCommune": "LA ROE" }, { - "codePostal": "33780", - "codeCommune": "33514", - "libelleAcheminement": "SOULAC SUR MER", - "nomCommune": "SOULAC SUR MER" + "codePostal": "62117", + "codeCommune": "62173", + "libelleAcheminement": "BREBIERES", + "nomCommune": "BREBIERES" }, { - "codePostal": "29460", - "codeCommune": "29086", - "libelleAcheminement": "IRVILLAC", - "nomCommune": "IRVILLAC" + "codePostal": "07270", + "codeCommune": "07095", + "libelleAcheminement": "GILHOC SUR ORMEZE", + "nomCommune": "GILHOC SUR ORMEZE" }, { - "codePostal": "46110", - "codeCommune": "46074", - "libelleAcheminement": "CONDAT", - "nomCommune": "CONDAT" + "codePostal": "61470", + "codeCommune": "61460", + "libelleAcheminement": "SAP EN AUGE", + "nomCommune": "SAP EN AUGE" }, { - "codePostal": "57560", - "codeCommune": "57504", - "libelleAcheminement": "NIDERHOFF", - "nomCommune": "NIDERHOFF" + "codePostal": "51130", + "codeCommune": "51268", + "libelleAcheminement": "GERMINON", + "nomCommune": "GERMINON" }, { - "codePostal": "33790", - "codeCommune": "33516", - "libelleAcheminement": "SOUSSAC", - "nomCommune": "SOUSSAC" + "codePostal": "53250", + "codeCommune": "53196", + "libelleAcheminement": "ST AIGNAN DE COUPTRAIN", + "nomCommune": "ST AIGNAN DE COUPTRAIN" }, { - "codePostal": "29100", - "codeCommune": "29090", - "libelleAcheminement": "KERLAZ", - "nomCommune": "KERLAZ" + "codePostal": "62700", + "codeCommune": "62178", + "libelleAcheminement": "BRUAY LA BUISSIERE", + "nomCommune": "BRUAY LA BUISSIERE" }, { - "codePostal": "46330", - "codeCommune": "46081", - "libelleAcheminement": "CREGOLS", - "nomCommune": "CREGOLS" + "codePostal": "07110", + "codeCommune": "07118", + "libelleAcheminement": "LABOULE", + "nomCommune": "LABOULE" }, { - "codePostal": "57565", - "codeCommune": "57505", - "libelleAcheminement": "NIDERVILLER", - "nomCommune": "NIDERVILLER" + "codePostal": "61230", + "codeCommune": "61461", + "libelleAcheminement": "LE SAP ANDRE", + "nomCommune": "LE SAP ANDRE" }, { - "codePostal": "33460", - "codeCommune": "33517", - "libelleAcheminement": "SOUSSANS", - "nomCommune": "SOUSSANS" + "codePostal": "51330", + "codeCommune": "51272", + "libelleAcheminement": "GIVRY EN ARGONNE", + "nomCommune": "GIVRY EN ARGONNE" }, { - "codePostal": "29260", - "codeCommune": "29100", - "libelleAcheminement": "LANARVILY", - "nomCommune": "LANARVILY" + "codePostal": "53390", + "codeCommune": "53197", + "libelleAcheminement": "ST AIGNAN SUR ROE", + "nomCommune": "ST AIGNAN SUR ROE" }, { - "codePostal": "46130", - "codeCommune": "46097", - "libelleAcheminement": "ESTAL", - "nomCommune": "ESTAL" + "codePostal": "62240", + "codeCommune": "62179", + "libelleAcheminement": "BRUNEMBERT", + "nomCommune": "BRUNEMBERT" }, { - "codePostal": "57645", - "codeCommune": "57510", - "libelleAcheminement": "NOISSEVILLE", - "nomCommune": "NOISSEVILLE" + "codePostal": "07520", + "codeCommune": "07124", + "libelleAcheminement": "LAFARRE", + "nomCommune": "LAFARRE" }, { - "codePostal": "33570", - "codeCommune": "33526", - "libelleAcheminement": "TAYAC", - "nomCommune": "TAYAC" + "codePostal": "61200", + "codeCommune": "61462", + "libelleAcheminement": "SARCEAUX", + "nomCommune": "SARCEAUX" }, { - "codePostal": "29400", - "codeCommune": "29105", - "libelleAcheminement": "LANDIVISIAU", - "nomCommune": "LANDIVISIAU" + "codePostal": "51130", + "codeCommune": "51273", + "libelleAcheminement": "GIVRY LES LOISY", + "nomCommune": "GIVRY LES LOISY" }, { - "codePostal": "46170", - "codeCommune": "46103", - "libelleAcheminement": "ST PAUL FLAUGNAC", - "nomCommune": "ST PAUL FLAUGNAC" + "codePostal": "53120", + "codeCommune": "53199", + "libelleAcheminement": "ST AUBIN FOSSE LOUVAIN", + "nomCommune": "ST AUBIN FOSSE LOUVAIN" }, { - "codePostal": "57930", - "codeCommune": "57518", - "libelleAcheminement": "OBERSTINZEL", - "nomCommune": "OBERSTINZEL" + "codePostal": "62116", + "codeCommune": "62181", + "libelleAcheminement": "BUCQUOY", + "nomCommune": "BUCQUOY" }, { - "codePostal": "33680", - "codeCommune": "33528", - "libelleAcheminement": "LE TEMPLE", - "nomCommune": "LE TEMPLE" + "codePostal": "07110", + "codeCommune": "07144", + "libelleAcheminement": "LOUBARESSE", + "nomCommune": "LOUBARESSE" }, { - "codePostal": "29640", - "codeCommune": "29114", - "libelleAcheminement": "LANNEANOU", - "nomCommune": "LANNEANOU" + "codePostal": "61200", + "codeCommune": "61472", + "libelleAcheminement": "SEVIGNY", + "nomCommune": "SEVIGNY" }, { - "codePostal": "46320", - "codeCommune": "46104", - "libelleAcheminement": "FLAUJAC GARE", - "nomCommune": "FLAUJAC GARE" + "codePostal": "51800", + "codeCommune": "51274", + "libelleAcheminement": "GIZAUCOURT", + "nomCommune": "GIZAUCOURT" }, { - "codePostal": "57170", - "codeCommune": "57520", - "libelleAcheminement": "OBRECK", - "nomCommune": "OBRECK" + "codePostal": "53100", + "codeCommune": "53200", + "libelleAcheminement": "ST BAUDELLE", + "nomCommune": "ST BAUDELLE" }, { - "codePostal": "33550", - "codeCommune": "33534", - "libelleAcheminement": "LE TOURNE", - "nomCommune": "LE TOURNE" + "codePostal": "62390", + "codeCommune": "62182", + "libelleAcheminement": "BUIRE AU BOIS", + "nomCommune": "BUIRE AU BOIS" }, { - "codePostal": "29290", - "codeCommune": "29119", - "libelleAcheminement": "LANRIVOARE", - "nomCommune": "LANRIVOARE" + "codePostal": "07000", + "codeCommune": "07146", + "libelleAcheminement": "LYAS", + "nomCommune": "LYAS" }, { - "codePostal": "46300", - "codeCommune": "46121", - "libelleAcheminement": "GINOUILLAC", - "nomCommune": "GINOUILLAC" + "codePostal": "61160", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "57600", - "codeCommune": "57521", - "libelleAcheminement": "OETING", - "nomCommune": "OETING" + "codePostal": "51230", + "codeCommune": "51276", + "libelleAcheminement": "GOURGANCON", + "nomCommune": "GOURGANCON" }, { - "codePostal": "33125", - "codeCommune": "33536", - "libelleAcheminement": "LE TUZAN", - "nomCommune": "LE TUZAN" + "codePostal": "53940", + "codeCommune": "53201", + "libelleAcheminement": "ST BERTHEVIN", + "nomCommune": "ST BERTHEVIN" }, { - "codePostal": "29520", - "codeCommune": "29122", - "libelleAcheminement": "LAZ", - "nomCommune": "LAZ" + "codePostal": "62860", + "codeCommune": "62184", + "libelleAcheminement": "BUISSY", + "nomCommune": "BUISSY" }, { - "codePostal": "46130", - "codeCommune": "46124", - "libelleAcheminement": "GLANES", - "nomCommune": "GLANES" + "codePostal": "07140", + "codeCommune": "07147", + "libelleAcheminement": "MALARCE SUR LA THINES", + "nomCommune": "MALARCE SUR LA THINES" }, { - "codePostal": "57220", - "codeCommune": "57530", - "libelleAcheminement": "OTTONVILLE", - "nomCommune": "OTTONVILLE" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "33590", - "codeCommune": "33541", - "libelleAcheminement": "VENSAC", - "nomCommune": "VENSAC" + "codePostal": "51260", + "codeCommune": "51279", + "libelleAcheminement": "GRANGES SUR AUBE", + "nomCommune": "GRANGES SUR AUBE" }, { - "codePostal": "29750", - "codeCommune": "29135", - "libelleAcheminement": "LOCTUDY", - "nomCommune": "LOCTUDY" + "codePostal": "53170", + "codeCommune": "53206", + "libelleAcheminement": "ST CHARLES LA FORET", + "nomCommune": "ST CHARLES LA FORET" }, { - "codePostal": "46300", - "codeCommune": "46127", - "libelleAcheminement": "GOURDON", - "nomCommune": "GOURDON" + "codePostal": "62350", + "codeCommune": "62190", + "libelleAcheminement": "BUSNES", + "nomCommune": "BUSNES" }, { - "codePostal": "57245", - "codeCommune": "57534", - "libelleAcheminement": "PELTRE", - "nomCommune": "PELTRE" + "codePostal": "07330", + "codeCommune": "07153", + "libelleAcheminement": "MAYRES", + "nomCommune": "MAYRES" }, { - "codePostal": "33123", - "codeCommune": "33544", - "libelleAcheminement": "LE VERDON SUR MER", - "nomCommune": "LE VERDON SUR MER" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "29590", - "codeCommune": "29139", - "libelleAcheminement": "LOPEREC", - "nomCommune": "LOPEREC" + "codePostal": "51460", + "codeCommune": "51292", + "libelleAcheminement": "HERPONT", + "nomCommune": "HERPONT" }, { - "codePostal": "46210", - "codeCommune": "46135", - "libelleAcheminement": "LABASTIDE DU HAUT MONT", - "nomCommune": "LABASTIDE DU HAUT MONT" + "codePostal": "53140", + "codeCommune": "53208", + "libelleAcheminement": "ST CYR EN PAIL", + "nomCommune": "ST CYR EN PAIL" }, { - "codePostal": "57220", - "codeCommune": "57542", - "libelleAcheminement": "PIBLANGE", - "nomCommune": "PIBLANGE" + "codePostal": "62270", + "codeCommune": "62208", + "libelleAcheminement": "CANETTEMONT", + "nomCommune": "CANETTEMONT" }, { - "codePostal": "33550", - "codeCommune": "33549", - "libelleAcheminement": "VILLENAVE DE RIONS", - "nomCommune": "VILLENAVE DE RIONS" + "codePostal": "07380", + "codeCommune": "07156", + "libelleAcheminement": "MEYRAS", + "nomCommune": "MEYRAS" }, { - "codePostal": "29920", - "codeCommune": "29153", - "libelleAcheminement": "NEVEZ", - "nomCommune": "NEVEZ" + "codePostal": "61360", + "codeCommune": "61476", + "libelleAcheminement": "SURE", + "nomCommune": "SURE" }, { - "codePostal": "46240", - "codeCommune": "46138", - "libelleAcheminement": "COEUR DE CAUSSE", - "nomCommune": "COEUR DE CAUSSE" + "codePostal": "51110", + "codeCommune": "51293", + "libelleAcheminement": "HEUTREGIVILLE", + "nomCommune": "HEUTREGIVILLE" }, { - "codePostal": "57120", - "codeCommune": "57543", - "libelleAcheminement": "PIERREVILLERS", - "nomCommune": "PIERREVILLERS" + "codePostal": "53320", + "codeCommune": "53209", + "libelleAcheminement": "ST CYR LE GRAVELAIS", + "nomCommune": "ST CYR LE GRAVELAIS" }, { - "codePostal": "33710", - "codeCommune": "33551", - "libelleAcheminement": "VILLENEUVE", - "nomCommune": "VILLENEUVE" + "codePostal": "62310", + "codeCommune": "62209", + "libelleAcheminement": "CANLERS", + "nomCommune": "CANLERS" }, { - "codePostal": "29760", - "codeCommune": "29158", - "libelleAcheminement": "PENMARCH", - "nomCommune": "PENMARCH" + "codePostal": "07560", + "codeCommune": "07161", + "libelleAcheminement": "MONTPEZAT SOUS BAUZON", + "nomCommune": "MONTPEZAT SOUS BAUZON" }, { - "codePostal": "46240", - "codeCommune": "46138", - "libelleAcheminement": "COEUR DE CAUSSE", - "nomCommune": "COEUR DE CAUSSE" + "codePostal": "61390", + "codeCommune": "61481", + "libelleAcheminement": "TELLIERES LE PLESSIS", + "nomCommune": "TELLIERES LE PLESSIS" }, { - "codePostal": "57870", - "codeCommune": "57544", - "libelleAcheminement": "PLAINE DE WALSCH", - "nomCommune": "PLAINE DE WALSCH" + "codePostal": "51700", + "codeCommune": "51298", + "libelleAcheminement": "IGNY COMBLIZY", + "nomCommune": "IGNY COMBLIZY" }, { - "codePostal": "34230", - "codeCommune": "34002", - "libelleAcheminement": "ADISSAN", - "nomCommune": "ADISSAN" + "codePostal": "53390", + "codeCommune": "53214", + "libelleAcheminement": "ST ERBLON", + "nomCommune": "ST ERBLON" }, { - "codePostal": "29740", - "codeCommune": "29165", - "libelleAcheminement": "PLOBANNALEC LESCONIL", - "nomCommune": "PLOBANNALEC LESCONIL" + "codePostal": "62180", + "codeCommune": "62233", + "libelleAcheminement": "CONCHIL LE TEMPLE", + "nomCommune": "CONCHIL LE TEMPLE" }, { - "codePostal": "46200", - "codeCommune": "46145", - "libelleAcheminement": "LACHAPELLE AUZAC", - "nomCommune": "LACHAPELLE AUZAC" + "codePostal": "07160", + "codeCommune": "07165", + "libelleAcheminement": "BELSENTES", + "nomCommune": "BELSENTES" }, { - "codePostal": "57140", - "codeCommune": "57546", - "libelleAcheminement": "PLESNOIS", - "nomCommune": "PLESNOIS" + "codePostal": "61260", + "codeCommune": "61484", + "libelleAcheminement": "VAL AU PERCHE", + "nomCommune": "VAL AU PERCHE" }, { - "codePostal": "34210", - "codeCommune": "34004", - "libelleAcheminement": "AGEL", - "nomCommune": "AGEL" + "codePostal": "51190", + "codeCommune": "51302", + "libelleAcheminement": "LES ISTRES ET BURY", + "nomCommune": "LES ISTRES ET BURY" }, { - "codePostal": "29830", - "codeCommune": "29178", - "libelleAcheminement": "PLOUDALMEZEAU", - "nomCommune": "PLOUDALMEZEAU" + "codePostal": "53300", + "codeCommune": "53216", + "libelleAcheminement": "ST FRAIMBAULT DE PRIERES", + "nomCommune": "ST FRAIMBAULT DE PRIERES" }, { - "codePostal": "46350", - "codeCommune": "46152", - "libelleAcheminement": "LAMOTHE FENELON", - "nomCommune": "LAMOTHE FENELON" + "codePostal": "62990", + "codeCommune": "62236", + "libelleAcheminement": "CONTES", + "nomCommune": "CONTES" }, { - "codePostal": "57420", - "codeCommune": "57547", - "libelleAcheminement": "POMMERIEUX", - "nomCommune": "POMMERIEUX" + "codePostal": "07150", + "codeCommune": "07168", + "libelleAcheminement": "ORGNAC L AVEN", + "nomCommune": "ORGNAC L AVEN" }, { - "codePostal": "34540", - "codeCommune": "34023", - "libelleAcheminement": "BALARUC LES BAINS", - "nomCommune": "BALARUC LES BAINS" + "codePostal": "61340", + "codeCommune": "61484", + "libelleAcheminement": "VAL AU PERCHE", + "nomCommune": "VAL AU PERCHE" }, { - "codePostal": "29430", - "codeCommune": "29185", - "libelleAcheminement": "PLOUESCAT", - "nomCommune": "PLOUESCAT" + "codePostal": "51600", + "codeCommune": "51307", + "libelleAcheminement": "JONCHERY SUR SUIPPE", + "nomCommune": "JONCHERY SUR SUIPPE" }, { - "codePostal": "46200", - "codeCommune": "46153", - "libelleAcheminement": "LANZAC", - "nomCommune": "LANZAC" + "codePostal": "53100", + "codeCommune": "53219", + "libelleAcheminement": "ST GEORGES BUTTAVENT", + "nomCommune": "ST GEORGES BUTTAVENT" }, { - "codePostal": "57380", - "codeCommune": "57549", - "libelleAcheminement": "PONTPIERRE", - "nomCommune": "PONTPIERRE" + "codePostal": "62130", + "codeCommune": "62238", + "libelleAcheminement": "CONTEVILLE EN TERNOIS", + "nomCommune": "CONTEVILLE EN TERNOIS" }, { - "codePostal": "34760", - "codeCommune": "34037", - "libelleAcheminement": "BOUJAN SUR LIBRON", - "nomCommune": "BOUJAN SUR LIBRON" + "codePostal": "07230", + "codeCommune": "07176", + "libelleAcheminement": "PLANZOLLES", + "nomCommune": "PLANZOLLES" }, { - "codePostal": "29470", - "codeCommune": "29189", - "libelleAcheminement": "PLOUGASTEL DAOULAS", - "nomCommune": "PLOUGASTEL DAOULAS" + "codePostal": "61390", + "codeCommune": "61492", + "libelleAcheminement": "TREMONT", + "nomCommune": "TREMONT" }, { - "codePostal": "46210", - "codeCommune": "46161", - "libelleAcheminement": "LAURESSES", - "nomCommune": "LAURESSES" + "codePostal": "51390", + "codeCommune": "51310", + "libelleAcheminement": "JOUY LES REIMS", + "nomCommune": "JOUY LES REIMS" }, { - "codePostal": "57420", - "codeCommune": "57552", - "libelleAcheminement": "POUILLY", - "nomCommune": "POUILLY" + "codePostal": "53270", + "codeCommune": "53228", + "libelleAcheminement": "BLANDOUET ST JEAN", + "nomCommune": "BLANDOUET ST JEAN" }, { - "codePostal": "34190", - "codeCommune": "34042", - "libelleAcheminement": "BRISSAC", - "nomCommune": "BRISSAC" + "codePostal": "62970", + "codeCommune": "62249", + "libelleAcheminement": "COURCELLES LES LENS", + "nomCommune": "COURCELLES LES LENS" }, { - "codePostal": "29217", - "codeCommune": "29190", - "libelleAcheminement": "PLOUGONVELIN", - "nomCommune": "PLOUGONVELIN" + "codePostal": "07290", + "codeCommune": "07185", + "libelleAcheminement": "PREAUX", + "nomCommune": "PREAUX" }, { - "codePostal": "46360", - "codeCommune": "46162", - "libelleAcheminement": "LAUZES", - "nomCommune": "LAUZES" + "codePostal": "61190", + "codeCommune": "61500", + "libelleAcheminement": "LA VENTROUZE", + "nomCommune": "LA VENTROUZE" }, { - "codePostal": "57570", - "codeCommune": "57557", - "libelleAcheminement": "PUTTELANGE LES THIONVILLE", - "nomCommune": "PUTTELANGE LES THIONVILLE" + "codePostal": "51340", + "codeCommune": "51311", + "libelleAcheminement": "JUSSECOURT MINECOURT", + "nomCommune": "JUSSECOURT MINECOURT" }, { - "codePostal": "34230", - "codeCommune": "34047", - "libelleAcheminement": "CAMPAGNAN", - "nomCommune": "CAMPAGNAN" + "codePostal": "53270", + "codeCommune": "53228", + "libelleAcheminement": "BLANDOUET ST JEAN", + "nomCommune": "BLANDOUET ST JEAN" }, { - "codePostal": "29640", - "codeCommune": "29191", - "libelleAcheminement": "PLOUGONVEN", - "nomCommune": "PLOUGONVEN" + "codePostal": "62128", + "codeCommune": "62259", + "libelleAcheminement": "CROISILLES", + "nomCommune": "CROISILLES" }, { - "codePostal": "46300", - "codeCommune": "46169", - "libelleAcheminement": "LEOBARD", - "nomCommune": "LEOBARD" + "codePostal": "07560", + "codeCommune": "07200", + "libelleAcheminement": "LE ROUX", + "nomCommune": "LE ROUX" }, { - "codePostal": "57700", - "codeCommune": "57562", - "libelleAcheminement": "RANGUEVAUX", - "nomCommune": "RANGUEVAUX" + "codePostal": "61360", + "codeCommune": "61502", + "libelleAcheminement": "VIDAI", + "nomCommune": "VIDAI" }, { - "codePostal": "34260", - "codeCommune": "34049", - "libelleAcheminement": "CAMPLONG", - "nomCommune": "CAMPLONG" + "codePostal": "51170", + "codeCommune": "51314", + "libelleAcheminement": "LAGERY", + "nomCommune": "LAGERY" }, { - "codePostal": "29250", - "codeCommune": "29192", - "libelleAcheminement": "PLOUGOULM", - "nomCommune": "PLOUGOULM" + "codePostal": "53480", + "codeCommune": "53232", + "libelleAcheminement": "ST LEGER", + "nomCommune": "ST LEGER" }, { - "codePostal": "46170", - "codeCommune": "46172", - "libelleAcheminement": "LHOSPITALET", - "nomCommune": "LHOSPITALET" + "codePostal": "62130", + "codeCommune": "62260", + "libelleAcheminement": "CROIX EN TERNOIS", + "nomCommune": "CROIX EN TERNOIS" }, { - "codePostal": "57530", - "codeCommune": "57563", - "libelleAcheminement": "RAVILLE", - "nomCommune": "RAVILLE" + "codePostal": "07120", + "codeCommune": "07201", + "libelleAcheminement": "RUOMS", + "nomCommune": "RUOMS" }, { - "codePostal": "34600", - "codeCommune": "34053", - "libelleAcheminement": "CARLENCAS ET LEVAS", - "nomCommune": "CARLENCAS ET LEVAS" + "codePostal": "62380", + "codeCommune": "62008", + "libelleAcheminement": "ACQUIN WESTBECOURT", + "nomCommune": "ACQUIN WESTBECOURT" }, { - "codePostal": "29830", - "codeCommune": "29196", - "libelleAcheminement": "PLOUGUIN", - "nomCommune": "PLOUGUIN" + "codePostal": "51290", + "codeCommune": "51315", + "libelleAcheminement": "LANDRICOURT", + "nomCommune": "LANDRICOURT" }, { - "codePostal": "46270", - "codeCommune": "46174", - "libelleAcheminement": "LINAC", - "nomCommune": "LINAC" + "codePostal": "53290", + "codeCommune": "53233", + "libelleAcheminement": "ST LOUP DU DORAT", + "nomCommune": "ST LOUP DU DORAT" }, { - "codePostal": "57810", - "codeCommune": "57564", - "libelleAcheminement": "RECHICOURT LE CHATEAU", - "nomCommune": "RECHICOURT LE CHATEAU" + "codePostal": "62149", + "codeCommune": "62262", + "libelleAcheminement": "CUINCHY", + "nomCommune": "CUINCHY" }, { - "codePostal": "34490", - "codeCommune": "34061", - "libelleAcheminement": "CAUSSES ET VEYRAN", - "nomCommune": "CAUSSES ET VEYRAN" + "codePostal": "07260", + "codeCommune": "07202", + "libelleAcheminement": "SABLIERES", + "nomCommune": "SABLIERES" }, { - "codePostal": "29860", - "codeCommune": "29209", - "libelleAcheminement": "PLOUVIEN", - "nomCommune": "PLOUVIEN" + "codePostal": "62116", + "codeCommune": "62009", + "libelleAcheminement": "ADINFER", + "nomCommune": "ADINFER" }, { - "codePostal": "46350", - "codeCommune": "46178", - "libelleAcheminement": "LOUPIAC", - "nomCommune": "LOUPIAC" + "codePostal": "51110", + "codeCommune": "51318", + "libelleAcheminement": "LAVANNES", + "nomCommune": "LAVANNES" }, { - "codePostal": "57320", - "codeCommune": "57567", - "libelleAcheminement": "REMELFANG", - "nomCommune": "REMELFANG" + "codePostal": "53300", + "codeCommune": "53234", + "libelleAcheminement": "ST LOUP DU GAST", + "nomCommune": "ST LOUP DU GAST" }, { - "codePostal": "34720", - "codeCommune": "34063", - "libelleAcheminement": "CAUX", - "nomCommune": "CAUX" + "codePostal": "62000", + "codeCommune": "62263", + "libelleAcheminement": "DAINVILLE", + "nomCommune": "DAINVILLE" }, { - "codePostal": "29420", - "codeCommune": "29210", - "libelleAcheminement": "PLOUVORN", - "nomCommune": "PLOUVORN" + "codePostal": "07590", + "codeCommune": "07206", + "libelleAcheminement": "ST ALBAN EN MONTAGNE", + "nomCommune": "ST ALBAN EN MONTAGNE" }, { - "codePostal": "46260", - "codeCommune": "46179", - "libelleAcheminement": "LUGAGNAC", - "nomCommune": "LUGAGNAC" + "codePostal": "62380", + "codeCommune": "62010", + "libelleAcheminement": "AFFRINGUES", + "nomCommune": "AFFRINGUES" }, { - "codePostal": "57645", - "codeCommune": "57575", - "libelleAcheminement": "RETONFEY", - "nomCommune": "RETONFEY" + "codePostal": "51300", + "codeCommune": "51325", + "libelleAcheminement": "LISSE EN CHAMPAGNE", + "nomCommune": "LISSE EN CHAMPAGNE" }, { - "codePostal": "34520", - "codeCommune": "34064", - "libelleAcheminement": "LE CAYLAR", - "nomCommune": "LE CAYLAR" + "codePostal": "53110", + "codeCommune": "53235", + "libelleAcheminement": "STE MARIE DU BOIS", + "nomCommune": "STE MARIE DU BOIS" }, { - "codePostal": "29150", - "codeCommune": "29222", - "libelleAcheminement": "PORT LAUNAY", - "nomCommune": "PORT LAUNAY" + "codePostal": "62560", + "codeCommune": "62267", + "libelleAcheminement": "DENNEBROEUCQ", + "nomCommune": "DENNEBROEUCQ" }, { - "codePostal": "46160", - "codeCommune": "46183", - "libelleAcheminement": "MARCILHAC SUR CELE", - "nomCommune": "MARCILHAC SUR CELE" + "codePostal": "07460", + "codeCommune": "07211", + "libelleAcheminement": "ST ANDRE DE CRUZIERES", + "nomCommune": "ST ANDRE DE CRUZIERES" }, { - "codePostal": "57130", - "codeCommune": "57578", - "libelleAcheminement": "REZONVILLE VIONVILLE", - "nomCommune": "REZONVILLE VIONVILLE" + "codePostal": "62127", + "codeCommune": "62027", + "libelleAcheminement": "AMBRINES", + "nomCommune": "AMBRINES" }, { - "codePostal": "34800", - "codeCommune": "34076", - "libelleAcheminement": "CEYRAS", - "nomCommune": "CEYRAS" + "codePostal": "51300", + "codeCommune": "51328", + "libelleAcheminement": "LOISY SUR MARNE", + "nomCommune": "LOISY SUR MARNE" }, { - "codePostal": "29770", - "codeCommune": "29228", - "libelleAcheminement": "PRIMELIN", - "nomCommune": "PRIMELIN" + "codePostal": "53410", + "codeCommune": "53243", + "libelleAcheminement": "ST OUEN DES TOITS", + "nomCommune": "ST OUEN DES TOITS" }, { - "codePostal": "46250", - "codeCommune": "46184", - "libelleAcheminement": "MARMINIAC", - "nomCommune": "MARMINIAC" + "codePostal": "62116", + "codeCommune": "62272", + "libelleAcheminement": "DOUCHY LES AYETTE", + "nomCommune": "DOUCHY LES AYETTE" }, { - "codePostal": "57340", - "codeCommune": "57580", - "libelleAcheminement": "RICHE", - "nomCommune": "RICHE" + "codePostal": "07160", + "codeCommune": "07215", + "libelleAcheminement": "ST BARTHELEMY LE MEIL", + "nomCommune": "ST BARTHELEMY LE MEIL" }, { - "codePostal": "34390", - "codeCommune": "34080", - "libelleAcheminement": "COLOMBIERES SUR ORB", - "nomCommune": "COLOMBIERES SUR ORB" + "codePostal": "62232", + "codeCommune": "62035", + "libelleAcheminement": "ANNEZIN", + "nomCommune": "ANNEZIN" }, { - "codePostal": "29300", - "codeCommune": "29234", - "libelleAcheminement": "REDENE", - "nomCommune": "REDENE" + "codePostal": "51500", + "codeCommune": "51333", + "libelleAcheminement": "LUDES", + "nomCommune": "LUDES" }, { - "codePostal": "46200", - "codeCommune": "46192", - "libelleAcheminement": "MEYRONNE", - "nomCommune": "MEYRONNE" + "codePostal": "53400", + "codeCommune": "53251", + "libelleAcheminement": "ST QUENTIN LES ANGES", + "nomCommune": "ST QUENTIN LES ANGES" }, { - "codePostal": "57840", - "codeCommune": "57586", - "libelleAcheminement": "ROCHONVILLERS", - "nomCommune": "ROCHONVILLERS" + "codePostal": "62131", + "codeCommune": "62278", + "libelleAcheminement": "DROUVIN LE MARAIS", + "nomCommune": "DROUVIN LE MARAIS" }, { - "codePostal": "34240", - "codeCommune": "34083", - "libelleAcheminement": "COMBES", - "nomCommune": "COMBES" + "codePostal": "07160", + "codeCommune": "07220", + "libelleAcheminement": "ST CHRISTOL", + "nomCommune": "ST CHRISTOL" }, { - "codePostal": "29680", - "codeCommune": "29239", - "libelleAcheminement": "ROSCOFF", - "nomCommune": "ROSCOFF" + "codePostal": "62134", + "codeCommune": "62036", + "libelleAcheminement": "ANVIN", + "nomCommune": "ANVIN" }, { - "codePostal": "46700", - "codeCommune": "46199", - "libelleAcheminement": "MONTCABRIER", - "nomCommune": "MONTCABRIER" + "codePostal": "51500", + "codeCommune": "51338", + "libelleAcheminement": "MAILLY CHAMPAGNE", + "nomCommune": "MAILLY CHAMPAGNE" }, { - "codePostal": "57120", - "codeCommune": "57591", - "libelleAcheminement": "ROMBAS", - "nomCommune": "ROMBAS" + "codePostal": "53390", + "codeCommune": "53259", + "libelleAcheminement": "SENONNES", + "nomCommune": "SENONNES" }, { - "codePostal": "34650", - "codeCommune": "34093", - "libelleAcheminement": "DIO ET VALQUIERES", - "nomCommune": "DIO ET VALQUIERES" + "codePostal": "62223", + "codeCommune": "62290", + "libelleAcheminement": "ECURIE", + "nomCommune": "ECURIE" }, { - "codePostal": "29150", - "codeCommune": "29243", - "libelleAcheminement": "ST COULITZ", - "nomCommune": "ST COULITZ" + "codePostal": "07380", + "codeCommune": "07223", + "libelleAcheminement": "ST CIRGUES DE PRADES", + "nomCommune": "ST CIRGUES DE PRADES" }, { - "codePostal": "46150", - "codeCommune": "46223", - "libelleAcheminement": "PONTCIRQ", - "nomCommune": "PONTCIRQ" + "codePostal": "62138", + "codeCommune": "62051", + "libelleAcheminement": "AUCHY LES MINES", + "nomCommune": "AUCHY LES MINES" }, { - "codePostal": "57860", - "codeCommune": "57593", - "libelleAcheminement": "RONCOURT", - "nomCommune": "RONCOURT" + "codePostal": "51530", + "codeCommune": "51342", + "libelleAcheminement": "MANCY", + "nomCommune": "MANCY" }, { - "codePostal": "34690", - "codeCommune": "34095", - "libelleAcheminement": "FABREGUES", - "nomCommune": "FABREGUES" + "codePostal": "53600", + "codeCommune": "53276", + "libelleAcheminement": "VOUTRE", + "nomCommune": "VOUTRE" }, { - "codePostal": "29830", - "codeCommune": "29257", - "libelleAcheminement": "ST PABU", - "nomCommune": "ST PABU" + "codePostal": "62300", + "codeCommune": "62291", + "libelleAcheminement": "ELEU DIT LEAUWETTE", + "nomCommune": "ELEU DIT LEAUWETTE" }, { - "codePostal": "46260", - "codeCommune": "46227", - "libelleAcheminement": "PROMILHANES", - "nomCommune": "PROMILHANES" + "codePostal": "07200", + "codeCommune": "07230", + "libelleAcheminement": "ST ETIENNE DE BOULOGNE", + "nomCommune": "ST ETIENNE DE BOULOGNE" }, { - "codePostal": "57230", - "codeCommune": "57594", - "libelleAcheminement": "ROPPEVILLER", - "nomCommune": "ROPPEVILLER" + "codePostal": "62650", + "codeCommune": "62062", + "libelleAcheminement": "AVESNES", + "nomCommune": "AVESNES" }, { - "codePostal": "34600", - "codeCommune": "34096", - "libelleAcheminement": "FAUGERES", - "nomCommune": "FAUGERES" + "codePostal": "51530", + "codeCommune": "51344", + "libelleAcheminement": "MARDEUIL", + "nomCommune": "MARDEUIL" }, { - "codePostal": "29250", - "codeCommune": "29259", - "libelleAcheminement": "ST POL DE LEON", - "nomCommune": "ST POL DE LEON" + "codePostal": "54800", + "codeCommune": "54002", + "libelleAcheminement": "ABBEVILLE LES CONFLANS", + "nomCommune": "ABBEVILLE LES CONFLANS" }, { - "codePostal": "46700", - "codeCommune": "46231", - "libelleAcheminement": "PUY L EVEQUE", - "nomCommune": "PUY L EVEQUE" + "codePostal": "62380", + "codeCommune": "62292", + "libelleAcheminement": "ELNES", + "nomCommune": "ELNES" }, { - "codePostal": "57780", - "codeCommune": "57597", - "libelleAcheminement": "ROSSELANGE", - "nomCommune": "ROSSELANGE" + "codePostal": "07340", + "codeCommune": "07234", + "libelleAcheminement": "ST ETIENNE DE VALOUX", + "nomCommune": "ST ETIENNE DE VALOUX" }, { - "codePostal": "34190", - "codeCommune": "34099", - "libelleAcheminement": "FERRIERES LES VERRERIES", - "nomCommune": "FERRIERES LES VERRERIES" + "codePostal": "62550", + "codeCommune": "62071", + "libelleAcheminement": "BAILLEUL LES PERNES", + "nomCommune": "BAILLEUL LES PERNES" }, { - "codePostal": "29590", - "codeCommune": "29263", - "libelleAcheminement": "ST SEGAL", - "nomCommune": "ST SEGAL" + "codePostal": "51210", + "codeCommune": "51350", + "libelleAcheminement": "MARGNY", + "nomCommune": "MARGNY" }, { - "codePostal": "46320", - "codeCommune": "46233", - "libelleAcheminement": "QUISSAC", - "nomCommune": "QUISSAC" + "codePostal": "54115", + "codeCommune": "54003", + "libelleAcheminement": "ABONCOURT", + "nomCommune": "ABONCOURT" }, { - "codePostal": "57330", - "codeCommune": "57600", - "libelleAcheminement": "ROUSSY LE VILLAGE", - "nomCommune": "ROUSSY LE VILLAGE" + "codePostal": "62990", + "codeCommune": "62293", + "libelleAcheminement": "EMBRY", + "nomCommune": "EMBRY" }, { - "codePostal": "34510", - "codeCommune": "34101", - "libelleAcheminement": "FLORENSAC", - "nomCommune": "FLORENSAC" + "codePostal": "07290", + "codeCommune": "07250", + "libelleAcheminement": "ST JEURE D AY", + "nomCommune": "ST JEURE D AY" }, { - "codePostal": "29140", - "codeCommune": "29272", - "libelleAcheminement": "ST YVI", - "nomCommune": "ST YVI" + "codePostal": "62580", + "codeCommune": "62073", + "libelleAcheminement": "BAILLEUL SIR BERTHOULT", + "nomCommune": "BAILLEUL SIR BERTHOULT" }, { - "codePostal": "46350", - "codeCommune": "46236", - "libelleAcheminement": "REILHAGUET", - "nomCommune": "REILHAGUET" + "codePostal": "51230", + "codeCommune": "51351", + "libelleAcheminement": "MARIGNY", + "nomCommune": "MARIGNY" }, { - "codePostal": "57930", - "codeCommune": "57613", - "libelleAcheminement": "ST JEAN DE BASSEL", - "nomCommune": "ST JEAN DE BASSEL" + "codePostal": "54740", + "codeCommune": "54005", + "libelleAcheminement": "AFFRACOURT", + "nomCommune": "AFFRACOURT" }, { - "codePostal": "34480", - "codeCommune": "34105", - "libelleAcheminement": "FOUZILHON", - "nomCommune": "FOUZILHON" + "codePostal": "62145", + "codeCommune": "62295", + "libelleAcheminement": "ENQUIN LEZ GUINEGATTE", + "nomCommune": "ENQUIN LEZ GUINEGATTE" }, { - "codePostal": "29670", - "codeCommune": "29279", - "libelleAcheminement": "TAULE", - "nomCommune": "TAULE" + "codePostal": "07190", + "codeCommune": "07253", + "libelleAcheminement": "ST JULIEN DU GUA", + "nomCommune": "ST JULIEN DU GUA" }, { - "codePostal": "46320", - "codeCommune": "46237", - "libelleAcheminement": "REYREVIGNES", - "nomCommune": "REYREVIGNES" + "codePostal": "62123", + "codeCommune": "62085", + "libelleAcheminement": "BASSEUX", + "nomCommune": "BASSEUX" }, { - "codePostal": "57370", - "codeCommune": "57614", - "libelleAcheminement": "ST JEAN KOURTZERODE", - "nomCommune": "ST JEAN KOURTZERODE" + "codePostal": "51800", + "codeCommune": "51355", + "libelleAcheminement": "MASSIGES", + "nomCommune": "MASSIGES" }, { - "codePostal": "34330", - "codeCommune": "34107", - "libelleAcheminement": "FRAISSE SUR AGOUT", - "nomCommune": "FRAISSE SUR AGOUT" + "codePostal": "54150", + "codeCommune": "54018", + "libelleAcheminement": "ANOUX", + "nomCommune": "ANOUX" }, { - "codePostal": "29730", - "codeCommune": "29284", - "libelleAcheminement": "TREFFIAGAT", - "nomCommune": "TREFFIAGAT" + "codePostal": "62134", + "codeCommune": "62299", + "libelleAcheminement": "EPS", + "nomCommune": "EPS" }, { - "codePostal": "46120", - "codeCommune": "46243", - "libelleAcheminement": "RUEYRES", - "nomCommune": "RUEYRES" + "codePostal": "07590", + "codeCommune": "07262", + "libelleAcheminement": "ST LAURENT BAINS LAVAL D AURELLE", + "nomCommune": "ST LAURENT BAINS LAVAL D AURELLE" }, { - "codePostal": "57620", - "codeCommune": "57619", - "libelleAcheminement": "ST LOUIS LES BITCHE", - "nomCommune": "ST LOUIS LES BITCHE" + "codePostal": "62158", + "codeCommune": "62086", + "libelleAcheminement": "BAVINCOURT", + "nomCommune": "BAVINCOURT" }, { - "codePostal": "34110", - "codeCommune": "34108", - "libelleAcheminement": "FRONTIGNAN", - "nomCommune": "FRONTIGNAN" + "codePostal": "51390", + "codeCommune": "51364", + "libelleAcheminement": "MERY PREMECY", + "nomCommune": "MERY PREMECY" }, { - "codePostal": "29720", - "codeCommune": "29292", - "libelleAcheminement": "TREGUENNEC", - "nomCommune": "TREGUENNEC" + "codePostal": "54370", + "codeCommune": "54023", + "libelleAcheminement": "ARRACOURT", + "nomCommune": "ARRACOURT" }, { - "codePostal": "46250", - "codeCommune": "46250", - "libelleAcheminement": "ST CAPRAIS", - "nomCommune": "ST CAPRAIS" + "codePostal": "62134", + "codeCommune": "62303", + "libelleAcheminement": "ERIN", + "nomCommune": "ERIN" }, { - "codePostal": "57255", - "codeCommune": "57620", - "libelleAcheminement": "STE MARIE AUX CHENES", - "nomCommune": "STE MARIE AUX CHENES" + "codePostal": "07310", + "codeCommune": "07267", + "libelleAcheminement": "ST MARTIAL", + "nomCommune": "ST MARTIAL" }, { - "codePostal": "34650", - "codeCommune": "34121", - "libelleAcheminement": "JONCELS", - "nomCommune": "JONCELS" + "codePostal": "62450", + "codeCommune": "62093", + "libelleAcheminement": "BEAULENCOURT", + "nomCommune": "BEAULENCOURT" }, { - "codePostal": "29910", - "codeCommune": "29293", - "libelleAcheminement": "TREGUNC", - "nomCommune": "TREGUNC" + "codePostal": "51190", + "codeCommune": "51367", + "libelleAcheminement": "LE MESNIL SUR OGER", + "nomCommune": "LE MESNIL SUR OGER" }, { - "codePostal": "46360", - "codeCommune": "46252", - "libelleAcheminement": "LES PECHS DU VERS", - "nomCommune": "LES PECHS DU VERS" + "codePostal": "54370", + "codeCommune": "54026", + "libelleAcheminement": "ATHIENVILLE", + "nomCommune": "ATHIENVILLE" }, { - "codePostal": "57130", - "codeCommune": "57624", - "libelleAcheminement": "STE RUFFINE", - "nomCommune": "STE RUFFINE" + "codePostal": "62380", + "codeCommune": "62309", + "libelleAcheminement": "ESQUERDES", + "nomCommune": "ESQUERDES" }, { - "codePostal": "34240", - "codeCommune": "34126", - "libelleAcheminement": "LAMALOU LES BAINS", - "nomCommune": "LAMALOU LES BAINS" + "codePostal": "07400", + "codeCommune": "07270", + "libelleAcheminement": "ST MARTIN SUR LAVEZON", + "nomCommune": "ST MARTIN SUR LAVEZON" }, { - "codePostal": "29290", - "codeCommune": "29299", - "libelleAcheminement": "TREOUERGAT", - "nomCommune": "TREOUERGAT" + "codePostal": "62170", + "codeCommune": "62094", + "libelleAcheminement": "BEAUMERIE ST MARTIN", + "nomCommune": "BEAUMERIE ST MARTIN" }, { - "codePostal": "46160", - "codeCommune": "46254", - "libelleAcheminement": "ST CHELS", - "nomCommune": "ST CHELS" + "codePostal": "51290", + "codeCommune": "51373", + "libelleAcheminement": "MONCETZ L ABBAYE", + "nomCommune": "MONCETZ L ABBAYE" }, { - "codePostal": "57530", - "codeCommune": "57627", - "libelleAcheminement": "SANRY SUR NIED", - "nomCommune": "SANRY SUR NIED" + "codePostal": "54580", + "codeCommune": "54028", + "libelleAcheminement": "AUBOUE", + "nomCommune": "AUBOUE" }, { - "codePostal": "34190", - "codeCommune": "34128", - "libelleAcheminement": "LAROQUE", - "nomCommune": "LAROQUE" + "codePostal": "62690", + "codeCommune": "62314", + "libelleAcheminement": "ESTREE CAUCHY", + "nomCommune": "ESTREE CAUCHY" }, { - "codePostal": "20167", - "codeCommune": "2A001", - "libelleAcheminement": "AFA", - "nomCommune": "AFA" + "codePostal": "07400", + "codeCommune": "07283", + "libelleAcheminement": "ST PIERRE LA ROCHE", + "nomCommune": "ST PIERRE LA ROCHE" }, { - "codePostal": "46300", - "codeCommune": "46259", - "libelleAcheminement": "ST CLAIR", - "nomCommune": "ST CLAIR" + "codePostal": "62124", + "codeCommune": "62096", + "libelleAcheminement": "BEAUMETZ LES CAMBRAI", + "nomCommune": "BEAUMETZ LES CAMBRAI" }, { - "codePostal": "57430", - "codeCommune": "57628", - "libelleAcheminement": "SARRALBE", - "nomCommune": "SARRALBE" + "codePostal": "51500", + "codeCommune": "51375", + "libelleAcheminement": "MONTBRE", + "nomCommune": "MONTBRE" }, { - "codePostal": "34700", - "codeCommune": "34133", - "libelleAcheminement": "LAVALETTE", - "nomCommune": "LAVALETTE" + "codePostal": "54120", + "codeCommune": "54039", + "libelleAcheminement": "BACCARAT", + "nomCommune": "BACCARAT" }, { - "codePostal": "20167", - "codeCommune": "2A017", - "libelleAcheminement": "APPIETTO", - "nomCommune": "APPIETTO" + "codePostal": "62810", + "codeCommune": "62316", + "libelleAcheminement": "ESTREE WAMIN", + "nomCommune": "ESTREE WAMIN" }, { - "codePostal": "46800", - "codeCommune": "46262", - "libelleAcheminement": "LENDOU EN QUERCY", - "nomCommune": "LENDOU EN QUERCY" + "codePostal": "07140", + "codeCommune": "07284", + "libelleAcheminement": "ST PIERRE ST JEAN", + "nomCommune": "ST PIERRE ST JEAN" }, { - "codePostal": "57230", - "codeCommune": "57639", - "libelleAcheminement": "SCHORBACH", - "nomCommune": "SCHORBACH" + "codePostal": "62123", + "codeCommune": "62097", + "libelleAcheminement": "BEAUMETZ LES LOGES", + "nomCommune": "BEAUMETZ LES LOGES" }, { - "codePostal": "34370", - "codeCommune": "34148", - "libelleAcheminement": "MARAUSSAN", - "nomCommune": "MARAUSSAN" + "codePostal": "51260", + "codeCommune": "51376", + "libelleAcheminement": "MONTGENOST", + "nomCommune": "MONTGENOST" }, { - "codePostal": "20160", - "codeCommune": "2A019", - "libelleAcheminement": "ARBORI", - "nomCommune": "ARBORI" + "codePostal": "54360", + "codeCommune": "54045", + "libelleAcheminement": "BARBONVILLE", + "nomCommune": "BARBONVILLE" }, { - "codePostal": "46400", - "codeCommune": "46273", - "libelleAcheminement": "ST LAURENT LES TOURS", - "nomCommune": "ST LAURENT LES TOURS" + "codePostal": "62580", + "codeCommune": "62324", + "libelleAcheminement": "FARBUS", + "nomCommune": "FARBUS" }, { - "codePostal": "57320", - "codeCommune": "57640", - "libelleAcheminement": "SCHWERDORFF", - "nomCommune": "SCHWERDORFF" + "codePostal": "07290", + "codeCommune": "07292", + "libelleAcheminement": "ST ROMAIN D AY", + "nomCommune": "ST ROMAIN D AY" }, { - "codePostal": "34320", - "codeCommune": "34149", - "libelleAcheminement": "MARGON", - "nomCommune": "MARGON" + "codePostal": "62217", + "codeCommune": "62099", + "libelleAcheminement": "BEAURAINS", + "nomCommune": "BEAURAINS" }, { - "codePostal": "20190", - "codeCommune": "2A026", - "libelleAcheminement": "AZILONE AMPAZA", - "nomCommune": "AZILONE AMPAZA" + "codePostal": "51230", + "codeCommune": "51412", + "libelleAcheminement": "OGNES", + "nomCommune": "OGNES" }, { - "codePostal": "46400", - "codeCommune": "46286", - "libelleAcheminement": "ST PAUL DE VERN", - "nomCommune": "ST PAUL DE VERN" + "codePostal": "54370", + "codeCommune": "54071", + "libelleAcheminement": "BEZANGE LA GRANDE", + "nomCommune": "BEZANGE LA GRANDE" }, { - "codePostal": "57160", - "codeCommune": "57642", - "libelleAcheminement": "SCY CHAZELLES", - "nomCommune": "SCY CHAZELLES" + "codePostal": "62560", + "codeCommune": "62325", + "libelleAcheminement": "FAUQUEMBERGUES", + "nomCommune": "FAUQUEMBERGUES" }, { - "codePostal": "34340", - "codeCommune": "34150", - "libelleAcheminement": "MARSEILLAN", - "nomCommune": "MARSEILLAN" + "codePostal": "07190", + "codeCommune": "07295", + "libelleAcheminement": "ST SAUVEUR DE MONTAGUT", + "nomCommune": "ST SAUVEUR DE MONTAGUT" }, { - "codePostal": "20119", - "codeCommune": "2A031", - "libelleAcheminement": "BASTELICA", - "nomCommune": "BASTELICA" + "codePostal": "62240", + "codeCommune": "62102", + "libelleAcheminement": "BECOURT", + "nomCommune": "BECOURT" }, { - "codePostal": "46330", - "codeCommune": "46299", - "libelleAcheminement": "SAULIAC SUR CELE", - "nomCommune": "SAULIAC SUR CELE" + "codePostal": "51240", + "codeCommune": "51415", + "libelleAcheminement": "OMEY", + "nomCommune": "OMEY" }, { - "codePostal": "57640", - "codeCommune": "57649", - "libelleAcheminement": "SERVIGNY LES STE BARBE", - "nomCommune": "SERVIGNY LES STE BARBE" + "codePostal": "54300", + "codeCommune": "54074", + "libelleAcheminement": "BIENVILLE LA PETITE", + "nomCommune": "BIENVILLE LA PETITE" }, { - "codePostal": "34310", - "codeCommune": "34161", - "libelleAcheminement": "MONTADY", - "nomCommune": "MONTADY" + "codePostal": "62270", + "codeCommune": "62337", + "libelleAcheminement": "FLERS", + "nomCommune": "FLERS" }, { - "codePostal": "20129", - "codeCommune": "2A032", - "libelleAcheminement": "BASTELICACCIA", - "nomCommune": "BASTELICACCIA" + "codePostal": "07360", + "codeCommune": "07303", + "libelleAcheminement": "ST VINCENT DE DURFORT", + "nomCommune": "ST VINCENT DE DURFORT" }, { - "codePostal": "46140", - "codeCommune": "46301", - "libelleAcheminement": "SAUZET", - "nomCommune": "SAUZET" + "codePostal": "62810", + "codeCommune": "62111", + "libelleAcheminement": "BERLENCOURT LE CAUROY", + "nomCommune": "BERLENCOURT LE CAUROY" }, { - "codePostal": "57420", - "codeCommune": "57652", - "libelleAcheminement": "SILLEGNY", - "nomCommune": "SILLEGNY" + "codePostal": "51300", + "codeCommune": "51417", + "libelleAcheminement": "ORCONTE", + "nomCommune": "ORCONTE" }, { - "codePostal": "34320", - "codeCommune": "34168", - "libelleAcheminement": "MONTESQUIEU", - "nomCommune": "MONTESQUIEU" + "codePostal": "54300", + "codeCommune": "54083", + "libelleAcheminement": "BONVILLER", + "nomCommune": "BONVILLER" }, { - "codePostal": "20169", - "codeCommune": "2A041", - "libelleAcheminement": "BONIFACIO", - "nomCommune": "BONIFACIO" + "codePostal": "62128", + "codeCommune": "62343", + "libelleAcheminement": "FONTAINE LES CROISILLES", + "nomCommune": "FONTAINE LES CROISILLES" }, { - "codePostal": "46300", - "codeCommune": "46308", - "libelleAcheminement": "SOUCIRAC", - "nomCommune": "SOUCIRAC" + "codePostal": "07290", + "codeCommune": "07309", + "libelleAcheminement": "SATILLIEU", + "nomCommune": "SATILLIEU" }, { - "codePostal": "57260", - "codeCommune": "57664", - "libelleAcheminement": "TARQUIMPOL", - "nomCommune": "TARQUIMPOL" + "codePostal": "62123", + "codeCommune": "62112", + "libelleAcheminement": "BERLES AU BOIS", + "nomCommune": "BERLES AU BOIS" }, { - "codePostal": "34090", - "codeCommune": "34172", - "libelleAcheminement": "MONTPELLIER", - "nomCommune": "MONTPELLIER" + "codePostal": "51300", + "codeCommune": "51420", + "libelleAcheminement": "OUTREPONT", + "nomCommune": "OUTREPONT" }, { - "codePostal": "20142", - "codeCommune": "2A056", - "libelleAcheminement": "CAMPO", - "nomCommune": "CAMPO" + "codePostal": "54470", + "codeCommune": "54087", + "libelleAcheminement": "BOUILLONVILLE", + "nomCommune": "BOUILLONVILLE" }, { - "codePostal": "46190", - "codeCommune": "46311", - "libelleAcheminement": "SOUSCEYRAC EN QUERCY", - "nomCommune": "SOUSCEYRAC EN QUERCY" + "codePostal": "62130", + "codeCommune": "62348", + "libelleAcheminement": "FOUFFLIN RICAMETZ", + "nomCommune": "FOUFFLIN RICAMETZ" }, { - "codePostal": "57220", - "codeCommune": "57667", - "libelleAcheminement": "TETERCHEN", - "nomCommune": "TETERCHEN" + "codePostal": "07430", + "codeCommune": "07310", + "libelleAcheminement": "SAVAS", + "nomCommune": "SAVAS" }, { - "codePostal": "34120", - "codeCommune": "34182", - "libelleAcheminement": "NEZIGNAN L EVEQUE", - "nomCommune": "NEZIGNAN L EVEQUE" + "codePostal": "62250", + "codeCommune": "62125", + "libelleAcheminement": "BEUVREQUEN", + "nomCommune": "BEUVREQUEN" }, { - "codePostal": "20170", - "codeCommune": "2A061", - "libelleAcheminement": "CARBINI", - "nomCommune": "CARBINI" + "codePostal": "51130", + "codeCommune": "51430", + "libelleAcheminement": "PIERRE MORAINS", + "nomCommune": "PIERRE MORAINS" }, { - "codePostal": "46130", - "codeCommune": "46313", - "libelleAcheminement": "TAURIAC", - "nomCommune": "TAURIAC" + "codePostal": "54800", + "codeCommune": "54093", + "libelleAcheminement": "BRAINVILLE", + "nomCommune": "BRAINVILLE" }, { - "codePostal": "57100", - "codeCommune": "57672", - "libelleAcheminement": "THIONVILLE", - "nomCommune": "THIONVILLE" + "codePostal": "62232", + "codeCommune": "62350", + "libelleAcheminement": "FOUQUIERES LES BETHUNE", + "nomCommune": "FOUQUIERES LES BETHUNE" }, { - "codePostal": "34380", - "codeCommune": "34185", - "libelleAcheminement": "NOTRE DAME DE LONDRES", - "nomCommune": "NOTRE DAME DE LONDRES" + "codePostal": "07340", + "codeCommune": "07313", + "libelleAcheminement": "SERRIERES", + "nomCommune": "SERRIERES" }, { - "codePostal": "20133", - "codeCommune": "2A062", - "libelleAcheminement": "CARBUCCIA", - "nomCommune": "CARBUCCIA" + "codePostal": "62450", + "codeCommune": "62129", + "libelleAcheminement": "BIEFVILLERS LES BAPAUME", + "nomCommune": "BIEFVILLERS LES BAPAUME" }, { - "codePostal": "46260", - "codeCommune": "46328", - "libelleAcheminement": "VARAIRE", - "nomCommune": "VARAIRE" + "codePostal": "51130", + "codeCommune": "51435", + "libelleAcheminement": "POCANCY", + "nomCommune": "POCANCY" }, { - "codePostal": "57670", - "codeCommune": "57685", - "libelleAcheminement": "VAHL LES BENESTROFF", - "nomCommune": "VAHL LES BENESTROFF" + "codePostal": "54190", + "codeCommune": "54096", + "libelleAcheminement": "BREHAIN LA VILLE", + "nomCommune": "BREHAIN LA VILLE" }, { - "codePostal": "34360", - "codeCommune": "34193", - "libelleAcheminement": "PARDAILHAN", - "nomCommune": "PARDAILHAN" + "codePostal": "62150", + "codeCommune": "62356", + "libelleAcheminement": "FRESNICOURT LE DOLMEN", + "nomCommune": "FRESNICOURT LE DOLMEN" }, { - "codePostal": "20130", - "codeCommune": "2A065", - "libelleAcheminement": "CARGESE", - "nomCommune": "CARGESE" + "codePostal": "07240", + "codeCommune": "07314", + "libelleAcheminement": "SILHAC", + "nomCommune": "SILHAC" }, { - "codePostal": "46230", - "codeCommune": "46329", - "libelleAcheminement": "VAYLATS", - "nomCommune": "VAYLATS" + "codePostal": "62111", + "codeCommune": "62130", + "libelleAcheminement": "BIENVILLERS AU BOIS", + "nomCommune": "BIENVILLERS AU BOIS" }, { - "codePostal": "57220", - "codeCommune": "57691", - "libelleAcheminement": "VALMUNSTER", - "nomCommune": "VALMUNSTER" + "codePostal": "51170", + "codeCommune": "51437", + "libelleAcheminement": "POILLY", + "nomCommune": "POILLY" }, { - "codePostal": "34800", - "codeCommune": "34197", - "libelleAcheminement": "PERET", - "nomCommune": "PERET" + "codePostal": "54150", + "codeCommune": "54099", + "libelleAcheminement": "VAL DE BRIEY", + "nomCommune": "VAL DE BRIEY" }, { - "codePostal": "20164", - "codeCommune": "2A066", - "libelleAcheminement": "CARGIACA", - "nomCommune": "CARGIACA" + "codePostal": "62770", + "codeCommune": "62357", + "libelleAcheminement": "FRESNOY", + "nomCommune": "FRESNOY" }, { - "codePostal": "46300", - "codeCommune": "46334", - "libelleAcheminement": "LE VIGAN", - "nomCommune": "LE VIGAN" + "codePostal": "07110", + "codeCommune": "07318", + "libelleAcheminement": "TAURIERS", + "nomCommune": "TAURIERS" }, { - "codePostal": "57320", - "codeCommune": "57700", - "libelleAcheminement": "VAUDRECHING", - "nomCommune": "VAUDRECHING" + "codePostal": "62575", + "codeCommune": "62139", + "libelleAcheminement": "BLENDECQUES", + "nomCommune": "BLENDECQUES" }, { - "codePostal": "34700", - "codeCommune": "34205", - "libelleAcheminement": "LES PLANS", - "nomCommune": "LES PLANS" + "codePostal": "51460", + "codeCommune": "51438", + "libelleAcheminement": "POIX", + "nomCommune": "POIX" }, { - "codePostal": "20168", - "codeCommune": "2A094", - "libelleAcheminement": "CORRANO", - "nomCommune": "CORRANO" + "codePostal": "54450", + "codeCommune": "54107", + "libelleAcheminement": "BURIVILLE", + "nomCommune": "BURIVILLE" }, { - "codePostal": "47800", - "codeCommune": "47003", - "libelleAcheminement": "AGNAC", - "nomCommune": "AGNAC" + "codePostal": "62580", + "codeCommune": "62358", + "libelleAcheminement": "FRESNOY EN GOHELLE", + "nomCommune": "FRESNOY EN GOHELLE" }, { - "codePostal": "57260", - "codeCommune": "57706", - "libelleAcheminement": "VERGAVILLE", - "nomCommune": "VERGAVILLE" + "codePostal": "07400", + "codeCommune": "07319", + "libelleAcheminement": "LE TEIL", + "nomCommune": "LE TEIL" }, { - "codePostal": "34420", - "codeCommune": "34209", - "libelleAcheminement": "PORTIRAGNES", - "nomCommune": "PORTIRAGNES" + "codePostal": "62380", + "codeCommune": "62140", + "libelleAcheminement": "BLEQUIN", + "nomCommune": "BLEQUIN" }, { - "codePostal": "20167", - "codeCommune": "2A103", - "libelleAcheminement": "CUTTOLI CORTICCHIATO", - "nomCommune": "CUTTOLI CORTICCHIATO" + "codePostal": "51110", + "codeCommune": "51439", + "libelleAcheminement": "POMACLE", + "nomCommune": "POMACLE" }, { - "codePostal": "47110", - "codeCommune": "47006", - "libelleAcheminement": "ALLEZ ET CAZENEUVE", - "nomCommune": "ALLEZ ET CAZENEUVE" + "codePostal": "54230", + "codeCommune": "54111", + "libelleAcheminement": "CHALIGNY", + "nomCommune": "CHALIGNY" }, { - "codePostal": "57340", - "codeCommune": "57723", - "libelleAcheminement": "VIRMING", - "nomCommune": "VIRMING" + "codePostal": "62127", + "codeCommune": "62362", + "libelleAcheminement": "FREVILLERS", + "nomCommune": "FREVILLERS" }, { - "codePostal": "34230", - "codeCommune": "34210", - "libelleAcheminement": "LE POUGET", - "nomCommune": "LE POUGET" + "codePostal": "07330", + "codeCommune": "07322", + "libelleAcheminement": "THUEYTS", + "nomCommune": "THUEYTS" }, { - "codePostal": "20190", - "codeCommune": "2A117", - "libelleAcheminement": "FORCIOLO", - "nomCommune": "FORCIOLO" + "codePostal": "62200", + "codeCommune": "62160", + "libelleAcheminement": "BOULOGNE SUR MER", + "nomCommune": "BOULOGNE SUR MER" }, { - "codePostal": "47480", - "codeCommune": "47019", - "libelleAcheminement": "BAJAMONT", - "nomCommune": "BAJAMONT" + "codePostal": "51330", + "codeCommune": "51442", + "libelleAcheminement": "POSSESSE", + "nomCommune": "POSSESSE" }, { - "codePostal": "57590", - "codeCommune": "57727", - "libelleAcheminement": "VIVIERS", - "nomCommune": "VIVIERS" + "codePostal": "54890", + "codeCommune": "54112", + "libelleAcheminement": "CHAMBLEY BUSSIERES", + "nomCommune": "CHAMBLEY BUSSIERES" }, { - "codePostal": "34600", - "codeCommune": "34211", - "libelleAcheminement": "LE POUJOL SUR ORB", - "nomCommune": "LE POUJOL SUR ORB" + "codePostal": "62310", + "codeCommune": "62364", + "libelleAcheminement": "FRUGES", + "nomCommune": "FRUGES" }, { - "codePostal": "20143", - "codeCommune": "2A118", - "libelleAcheminement": "FOZZANO", - "nomCommune": "FOZZANO" + "codePostal": "07130", + "codeCommune": "07323", + "libelleAcheminement": "TOULAUD", + "nomCommune": "TOULAUD" }, { - "codePostal": "47290", - "codeCommune": "47023", - "libelleAcheminement": "BEAUGAS", - "nomCommune": "BEAUGAS" + "codePostal": "62190", + "codeCommune": "62162", + "libelleAcheminement": "BOURECQ", + "nomCommune": "BOURECQ" }, { - "codePostal": "57220", - "codeCommune": "57730", - "libelleAcheminement": "VOLMERANGE LES BOULAY", - "nomCommune": "VOLMERANGE LES BOULAY" + "codePostal": "51260", + "codeCommune": "51443", + "libelleAcheminement": "POTANGIS", + "nomCommune": "POTANGIS" }, { - "codePostal": "34730", - "codeCommune": "34217", - "libelleAcheminement": "PRADES LE LEZ", - "nomCommune": "PRADES LE LEZ" + "codePostal": "54122", + "codeCommune": "54125", + "libelleAcheminement": "CHENEVIERES", + "nomCommune": "CHENEVIERES" }, { - "codePostal": "20100", - "codeCommune": "2A128", - "libelleAcheminement": "GRANACE", - "nomCommune": "GRANACE" + "codePostal": "62770", + "codeCommune": "62365", + "libelleAcheminement": "GALAMETZ", + "nomCommune": "GALAMETZ" }, { - "codePostal": "47700", - "codeCommune": "47026", - "libelleAcheminement": "BEAUZIAC", - "nomCommune": "BEAUZIAC" + "codePostal": "07110", + "codeCommune": "07327", + "libelleAcheminement": "UZER", + "nomCommune": "UZER" }, { - "codePostal": "57330", - "codeCommune": "57731", - "libelleAcheminement": "VOLMERANGE LES MINES", - "nomCommune": "VOLMERANGE LES MINES" + "codePostal": "62240", + "codeCommune": "62165", + "libelleAcheminement": "BOURNONVILLE", + "nomCommune": "BOURNONVILLE" }, { - "codePostal": "34390", - "codeCommune": "34219", - "libelleAcheminement": "PREMIAN", - "nomCommune": "PREMIAN" + "codePostal": "51480", + "codeCommune": "51445", + "libelleAcheminement": "POURCY", + "nomCommune": "POURCY" }, { - "codePostal": "20128", - "codeCommune": "2A130", - "libelleAcheminement": "GROSSETO PRUGNA", - "nomCommune": "GROSSETO PRUGNA" + "codePostal": "54200", + "codeCommune": "54128", + "libelleAcheminement": "CHOLOY MENILLOT", + "nomCommune": "CHOLOY MENILLOT" }, { - "codePostal": "47410", - "codeCommune": "47035", - "libelleAcheminement": "BOURGOUGNAGUE", - "nomCommune": "BOURGOUGNAGUE" + "codePostal": "62150", + "codeCommune": "62366", + "libelleAcheminement": "GAUCHIN LEGAL", + "nomCommune": "GAUCHIN LEGAL" }, { - "codePostal": "57720", - "codeCommune": "57732", - "libelleAcheminement": "VOLMUNSTER", - "nomCommune": "VOLMUNSTER" + "codePostal": "07140", + "codeCommune": "07334", + "libelleAcheminement": "LES VANS", + "nomCommune": "LES VANS" }, { - "codePostal": "34400", - "codeCommune": "34246", - "libelleAcheminement": "ENTRE VIGNES", - "nomCommune": "ENTRE VIGNES" + "codePostal": "62170", + "codeCommune": "62177", + "libelleAcheminement": "BRIMEUX", + "nomCommune": "BRIMEUX" }, { - "codePostal": "20166", - "codeCommune": "2A130", - "libelleAcheminement": "GROSSETO PRUGNA", - "nomCommune": "GROSSETO PRUGNA" + "codePostal": "51360", + "codeCommune": "51449", + "libelleAcheminement": "PRUNAY", + "nomCommune": "PRUNAY" }, { - "codePostal": "47160", - "codeCommune": "47043", - "libelleAcheminement": "BUZET SUR BAISE", - "nomCommune": "BUZET SUR BAISE" + "codePostal": "54370", + "codeCommune": "54133", + "libelleAcheminement": "COINCOURT", + "nomCommune": "COINCOURT" }, { - "codePostal": "57640", - "codeCommune": "57736", - "libelleAcheminement": "VRY", - "nomCommune": "VRY" + "codePostal": "62760", + "codeCommune": "62368", + "libelleAcheminement": "GAUDIEMPRE", + "nomCommune": "GAUDIEMPRE" }, { - "codePostal": "34400", - "codeCommune": "34246", - "libelleAcheminement": "ENTRE VIGNES", - "nomCommune": "ENTRE VIGNES" + "codePostal": "07140", + "codeCommune": "07334", + "libelleAcheminement": "LES VANS", + "nomCommune": "LES VANS" }, { - "codePostal": "20140", - "codeCommune": "2A186", - "libelleAcheminement": "OLIVESE", - "nomCommune": "OLIVESE" + "codePostal": "62700", + "codeCommune": "62178", + "libelleAcheminement": "BRUAY LA BUISSIERE", + "nomCommune": "BRUAY LA BUISSIERE" }, { - "codePostal": "47430", - "codeCommune": "47046", - "libelleAcheminement": "CALONGES", - "nomCommune": "CALONGES" + "codePostal": "51300", + "codeCommune": "51455", + "libelleAcheminement": "REIMS LA BRULEE", + "nomCommune": "REIMS LA BRULEE" }, { - "codePostal": "57915", - "codeCommune": "57752", - "libelleAcheminement": "WOUSTVILLER", - "nomCommune": "WOUSTVILLER" + "codePostal": "54260", + "codeCommune": "54134", + "libelleAcheminement": "COLMEY", + "nomCommune": "COLMEY" }, { - "codePostal": "34980", - "codeCommune": "34247", - "libelleAcheminement": "ST CLEMENT DE RIVIERE", - "nomCommune": "ST CLEMENT DE RIVIERE" + "codePostal": "62580", + "codeCommune": "62369", + "libelleAcheminement": "GAVRELLE", + "nomCommune": "GAVRELLE" }, { - "codePostal": "20112", - "codeCommune": "2A191", - "libelleAcheminement": "OLMICCIA", - "nomCommune": "OLMICCIA" + "codePostal": "07430", + "codeCommune": "07337", + "libelleAcheminement": "VERNOSC LES ANNONAY", + "nomCommune": "VERNOSC LES ANNONAY" }, { - "codePostal": "47700", - "codeCommune": "47052", - "libelleAcheminement": "CASTELJALOUX", - "nomCommune": "CASTELJALOUX" + "codePostal": "62130", + "codeCommune": "62180", + "libelleAcheminement": "BRIAS", + "nomCommune": "BRIAS" }, { - "codePostal": "57630", - "codeCommune": "57754", - "libelleAcheminement": "XANREY", - "nomCommune": "XANREY" + "codePostal": "51330", + "codeCommune": "51456", + "libelleAcheminement": "REMICOURT", + "nomCommune": "REMICOURT" }, { - "codePostal": "34480", - "codeCommune": "34258", - "libelleAcheminement": "ST GENIES DE FONTEDIT", - "nomCommune": "ST GENIES DE FONTEDIT" + "codePostal": "54870", + "codeCommune": "54137", + "libelleAcheminement": "CONS LA GRANDVILLE", + "nomCommune": "CONS LA GRANDVILLE" }, { - "codePostal": "20134", - "codeCommune": "2A200", - "libelleAcheminement": "PALNECA", - "nomCommune": "PALNECA" + "codePostal": "62580", + "codeCommune": "62371", + "libelleAcheminement": "GIVENCHY EN GOHELLE", + "nomCommune": "GIVENCHY EN GOHELLE" }, { - "codePostal": "47290", - "codeCommune": "47055", - "libelleAcheminement": "CASTELNAUD DE GRATECAMBE", - "nomCommune": "CASTELNAUD DE GRATECAMBE" + "codePostal": "07340", + "codeCommune": "07344", + "libelleAcheminement": "VINZIEUX", + "nomCommune": "VINZIEUX" }, { - "codePostal": "57370", - "codeCommune": "57761", - "libelleAcheminement": "ZILLING", - "nomCommune": "ZILLING" + "codePostal": "62132", + "codeCommune": "62191", + "libelleAcheminement": "CAFFIERS", + "nomCommune": "CAFFIERS" }, { - "codePostal": "34160", - "codeCommune": "34263", - "libelleAcheminement": "ST HILAIRE DE BEAUVOIR", - "nomCommune": "ST HILAIRE DE BEAUVOIR" + "codePostal": "51310", + "codeCommune": "51459", + "libelleAcheminement": "REVEILLON", + "nomCommune": "REVEILLON" }, { - "codePostal": "20147", - "codeCommune": "2A203", - "libelleAcheminement": "PARTINELLO", - "nomCommune": "PARTINELLO" + "codePostal": "54170", + "codeCommune": "54143", + "libelleAcheminement": "CREPEY", + "nomCommune": "CREPEY" }, { - "codePostal": "47430", - "codeCommune": "47061", - "libelleAcheminement": "CAUMONT SUR GARONNE", - "nomCommune": "CAUMONT SUR GARONNE" + "codePostal": "62123", + "codeCommune": "62378", + "libelleAcheminement": "GOUVES", + "nomCommune": "GOUVES" }, { - "codePostal": "57690", - "codeCommune": "57762", - "libelleAcheminement": "ZIMMING", - "nomCommune": "ZIMMING" + "codePostal": "07200", + "codeCommune": "07348", + "libelleAcheminement": "VOGUE", + "nomCommune": "VOGUE" }, { - "codePostal": "34160", - "codeCommune": "34265", - "libelleAcheminement": "ST JEAN DE CORNIES", - "nomCommune": "ST JEAN DE CORNIES" + "codePostal": "62182", + "codeCommune": "62192", + "libelleAcheminement": "CAGNICOURT", + "nomCommune": "CAGNICOURT" }, { - "codePostal": "20137", - "codeCommune": "2A247", - "libelleAcheminement": "PORTO VECCHIO", - "nomCommune": "PORTO VECCHIO" + "codePostal": "51210", + "codeCommune": "51460", + "libelleAcheminement": "RIEUX", + "nomCommune": "RIEUX" }, { - "codePostal": "47370", - "codeCommune": "47072", - "libelleAcheminement": "COURBIAC", - "nomCommune": "COURBIAC" + "codePostal": "54290", + "codeCommune": "54144", + "libelleAcheminement": "CREVECHAMPS", + "nomCommune": "CREVECHAMPS" }, { - "codePostal": "57890", - "codeCommune": "57765", - "libelleAcheminement": "DIESEN", - "nomCommune": "DIESEN" + "codePostal": "62123", + "codeCommune": "62379", + "libelleAcheminement": "GOUY EN ARTOIS", + "nomCommune": "GOUY EN ARTOIS" }, { - "codePostal": "34270", - "codeCommune": "34276", - "libelleAcheminement": "ST MATHIEU DE TREVIERS", - "nomCommune": "ST MATHIEU DE TREVIERS" + "codePostal": "08300", + "codeCommune": "08001", + "libelleAcheminement": "ACY ROMANCE", + "nomCommune": "ACY ROMANCE" }, { - "codePostal": "20110", - "codeCommune": "2A249", - "libelleAcheminement": "PROPRIANO", - "nomCommune": "PROPRIANO" + "codePostal": "62690", + "codeCommune": "62198", + "libelleAcheminement": "CAMBLIGNEUL", + "nomCommune": "CAMBLIGNEUL" }, { - "codePostal": "47500", - "codeCommune": "47077", - "libelleAcheminement": "CUZORN", - "nomCommune": "CUZORN" + "codePostal": "51370", + "codeCommune": "51474", + "libelleAcheminement": "ST BRICE COURCELLES", + "nomCommune": "ST BRICE COURCELLES" }, { - "codePostal": "58700", - "codeCommune": "58018", - "libelleAcheminement": "AUTHIOU", - "nomCommune": "AUTHIOU" + "codePostal": "54110", + "codeCommune": "54159", + "libelleAcheminement": "DOMBASLE SUR MEURTHE", + "nomCommune": "DOMBASLE SUR MEURTHE" }, { - "codePostal": "34520", - "codeCommune": "34277", - "libelleAcheminement": "ST MAURICE NAVACELLES", - "nomCommune": "ST MAURICE NAVACELLES" + "codePostal": "62810", + "codeCommune": "62385", + "libelleAcheminement": "GRAND RULLECOURT", + "nomCommune": "GRAND RULLECOURT" }, { - "codePostal": "20142", - "codeCommune": "2A253", - "libelleAcheminement": "QUASQUARA", - "nomCommune": "QUASQUARA" + "codePostal": "08190", + "codeCommune": "08004", + "libelleAcheminement": "AIRE", + "nomCommune": "AIRE" }, { - "codePostal": "47470", - "codeCommune": "47082", - "libelleAcheminement": "DONDAS", - "nomCommune": "DONDAS" + "codePostal": "62140", + "codeCommune": "62212", + "libelleAcheminement": "CAPELLE LES HESDIN", + "nomCommune": "CAPELLE LES HESDIN" }, { - "codePostal": "58170", - "codeCommune": "58019", - "libelleAcheminement": "AVREE", - "nomCommune": "AVREE" + "codePostal": "51390", + "codeCommune": "51479", + "libelleAcheminement": "ST EUPHRAISE ET CLAIRIZET", + "nomCommune": "ST EUPHRAISE ET CLAIRIZET" }, { - "codePostal": "34520", - "codeCommune": "34278", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "54385", + "codeCommune": "54160", + "libelleAcheminement": "DOMEVRE EN HAYE", + "nomCommune": "DOMEVRE EN HAYE" }, { - "codePostal": "20122", - "codeCommune": "2A254", - "libelleAcheminement": "QUENZA", - "nomCommune": "QUENZA" + "codePostal": "62160", + "codeCommune": "62386", + "libelleAcheminement": "GRENAY", + "nomCommune": "GRENAY" }, { - "codePostal": "47330", - "codeCommune": "47084", - "libelleAcheminement": "DOUZAINS", - "nomCommune": "DOUZAINS" + "codePostal": "08300", + "codeCommune": "08008", + "libelleAcheminement": "AMAGNE", + "nomCommune": "AMAGNE" }, { - "codePostal": "58110", - "codeCommune": "58030", - "libelleAcheminement": "BICHES", - "nomCommune": "BICHES" + "codePostal": "62144", + "codeCommune": "62213", + "libelleAcheminement": "CARENCY", + "nomCommune": "CARENCY" }, { - "codePostal": "34570", - "codeCommune": "34282", - "libelleAcheminement": "ST PAUL ET VALMALLE", - "nomCommune": "ST PAUL ET VALMALLE" + "codePostal": "51400", + "codeCommune": "51485", + "libelleAcheminement": "ST HILAIRE AU TEMPLE", + "nomCommune": "ST HILAIRE AU TEMPLE" }, { - "codePostal": "20160", - "codeCommune": "2A258", - "libelleAcheminement": "RENNO", - "nomCommune": "RENNO" + "codePostal": "54450", + "codeCommune": "54163", + "libelleAcheminement": "DOMJEVIN", + "nomCommune": "DOMJEVIN" }, { - "codePostal": "47600", - "codeCommune": "47090", - "libelleAcheminement": "ESPIENS", - "nomCommune": "ESPIENS" + "codePostal": "62128", + "codeCommune": "62392", + "libelleAcheminement": "GUEMAPPE", + "nomCommune": "GUEMAPPE" }, { - "codePostal": "58270", - "codeCommune": "58031", - "libelleAcheminement": "BILLY CHEVANNES", - "nomCommune": "BILLY CHEVANNES" + "codePostal": "08390", + "codeCommune": "08020", + "libelleAcheminement": "LES PETITES ARMOISES", + "nomCommune": "LES PETITES ARMOISES" }, { - "codePostal": "34520", - "codeCommune": "34283", - "libelleAcheminement": "ST PIERRE DE LA FAGE", - "nomCommune": "ST PIERRE DE LA FAGE" + "codePostal": "62830", + "codeCommune": "62214", + "libelleAcheminement": "CARLY", + "nomCommune": "CARLY" }, { - "codePostal": "20121", - "codeCommune": "2A262", - "libelleAcheminement": "ROSAZIA", - "nomCommune": "ROSAZIA" + "codePostal": "51600", + "codeCommune": "51486", + "libelleAcheminement": "ST HILAIRE LE GRAND", + "nomCommune": "ST HILAIRE LE GRAND" }, { - "codePostal": "47700", - "codeCommune": "47093", - "libelleAcheminement": "FARGUES SUR OURBISE", - "nomCommune": "FARGUES SUR OURBISE" + "codePostal": "54470", + "codeCommune": "54166", + "libelleAcheminement": "DOMMARTIN LA CHAUSSEE", + "nomCommune": "DOMMARTIN LA CHAUSSEE" }, { - "codePostal": "58500", - "codeCommune": "58032", - "libelleAcheminement": "BILLY SUR OISY", - "nomCommune": "BILLY SUR OISY" + "codePostal": "62123", + "codeCommune": "62399", + "libelleAcheminement": "HABARCQ", + "nomCommune": "HABARCQ" }, { - "codePostal": "34220", - "codeCommune": "34284", - "libelleAcheminement": "ST PONS DE THOMIERES", - "nomCommune": "ST PONS DE THOMIERES" + "codePostal": "08190", + "codeCommune": "08024", + "libelleAcheminement": "ASFELD", + "nomCommune": "ASFELD" }, { - "codePostal": "20145", - "codeCommune": "2A269", - "libelleAcheminement": "SARI SOLENZARA", - "nomCommune": "SARI SOLENZARA" + "codePostal": "62140", + "codeCommune": "62220", + "libelleAcheminement": "CAVRON ST MARTIN", + "nomCommune": "CAVRON ST MARTIN" }, { - "codePostal": "47360", - "codeCommune": "47104", - "libelleAcheminement": "FREGIMONT", - "nomCommune": "FREGIMONT" + "codePostal": "51330", + "codeCommune": "51489", + "libelleAcheminement": "ST JEAN DEVANT POSSESSE", + "nomCommune": "ST JEAN DEVANT POSSESSE" }, { - "codePostal": "58330", - "codeCommune": "58035", - "libelleAcheminement": "BONA", - "nomCommune": "BONA" + "codePostal": "54200", + "codeCommune": "54174", + "libelleAcheminement": "ECROUVES", + "nomCommune": "ECROUVES" }, { - "codePostal": "34630", - "codeCommune": "34289", - "libelleAcheminement": "ST THIBERY", - "nomCommune": "ST THIBERY" + "codePostal": "62138", + "codeCommune": "62401", + "libelleAcheminement": "HAISNES", + "nomCommune": "HAISNES" }, { - "codePostal": "20151", - "codeCommune": "2A270", - "libelleAcheminement": "SARI D ORCINO", - "nomCommune": "SARI D ORCINO" + "codePostal": "08150", + "codeCommune": "08026", + "libelleAcheminement": "AUBIGNY LES POTHEES", + "nomCommune": "AUBIGNY LES POTHEES" }, { - "codePostal": "47500", - "codeCommune": "47106", - "libelleAcheminement": "FUMEL", - "nomCommune": "FUMEL" + "codePostal": "62127", + "codeCommune": "62221", + "libelleAcheminement": "CHELERS", + "nomCommune": "CHELERS" }, { - "codePostal": "58530", - "codeCommune": "58039", - "libelleAcheminement": "BREVES", - "nomCommune": "BREVES" + "codePostal": "51130", + "codeCommune": "51499", + "libelleAcheminement": "ST MARD LES ROUFFY", + "nomCommune": "ST MARD LES ROUFFY" }, { - "codePostal": "34730", - "codeCommune": "34290", - "libelleAcheminement": "ST VINCENT DE BARBEYRARGUES", - "nomCommune": "ST VINCENT DE BARBEYRARGUES" + "codePostal": "54110", + "codeCommune": "54195", + "libelleAcheminement": "FLAINVAL", + "nomCommune": "FLAINVAL" }, { - "codePostal": "20100", - "codeCommune": "2A272", - "libelleAcheminement": "SARTENE", - "nomCommune": "SARTENE" + "codePostal": "62760", + "codeCommune": "62404", + "libelleAcheminement": "HALLOY", + "nomCommune": "HALLOY" }, { - "codePostal": "47150", - "codeCommune": "47109", - "libelleAcheminement": "GAVAUDUN", - "nomCommune": "GAVAUDUN" + "codePostal": "08370", + "codeCommune": "08029", + "libelleAcheminement": "AUFLANCE", + "nomCommune": "AUFLANCE" }, { - "codePostal": "58420", - "codeCommune": "58050", - "libelleAcheminement": "CHALLEMENT", - "nomCommune": "CHALLEMENT" + "codePostal": "62380", + "codeCommune": "62229", + "libelleAcheminement": "CLETY", + "nomCommune": "CLETY" }, { - "codePostal": "34410", - "codeCommune": "34299", - "libelleAcheminement": "SERIGNAN", - "nomCommune": "SERIGNAN" + "codePostal": "51600", + "codeCommune": "51501", + "libelleAcheminement": "STE MARIE A PY", + "nomCommune": "STE MARIE A PY" }, { - "codePostal": "20140", - "codeCommune": "2A276", - "libelleAcheminement": "SERRA DI FERRO", - "nomCommune": "SERRA DI FERRO" + "codePostal": "54630", + "codeCommune": "54196", + "libelleAcheminement": "FLAVIGNY SUR MOSELLE", + "nomCommune": "FLAVIGNY SUR MOSELLE" }, { - "codePostal": "47400", - "codeCommune": "47112", - "libelleAcheminement": "GRATELOUP ST GAYRAND", - "nomCommune": "GRATELOUP ST GAYRAND" + "codePostal": "62175", + "codeCommune": "62425", + "libelleAcheminement": "HENDECOURT LES RANSART", + "nomCommune": "HENDECOURT LES RANSART" }, { - "codePostal": "58000", - "codeCommune": "58051", - "libelleAcheminement": "CHALLUY", - "nomCommune": "CHALLUY" + "codePostal": "08240", + "codeCommune": "08035", + "libelleAcheminement": "AUTRUCHE", + "nomCommune": "AUTRUCHE" }, { - "codePostal": "34330", - "codeCommune": "34305", - "libelleAcheminement": "LE SOULIE", - "nomCommune": "LE SOULIE" + "codePostal": "62142", + "codeCommune": "62230", + "libelleAcheminement": "COLEMBERT", + "nomCommune": "COLEMBERT" }, { - "codePostal": "20140", - "codeCommune": "2A284", - "libelleAcheminement": "SOLLACARO", - "nomCommune": "SOLLACARO" + "codePostal": "51490", + "codeCommune": "51505", + "libelleAcheminement": "ST MASMES", + "nomCommune": "ST MASMES" }, { - "codePostal": "47250", - "codeCommune": "47115", - "libelleAcheminement": "GUERIN", - "nomCommune": "GUERIN" + "codePostal": "54710", + "codeCommune": "54197", + "libelleAcheminement": "FLEVILLE DEVANT NANCY", + "nomCommune": "FLEVILLE DEVANT NANCY" }, { - "codePostal": "58000", - "codeCommune": "58051", - "libelleAcheminement": "CHALLUY", - "nomCommune": "CHALLUY" + "codePostal": "62142", + "codeCommune": "62429", + "libelleAcheminement": "HENNEVEUX", + "nomCommune": "HENNEVEUX" }, { - "codePostal": "34230", - "codeCommune": "34313", - "libelleAcheminement": "TRESSAN", - "nomCommune": "TRESSAN" + "codePostal": "08250", + "codeCommune": "08036", + "libelleAcheminement": "AUTRY", + "nomCommune": "AUTRY" }, { - "codePostal": "20170", - "codeCommune": "2A300", - "libelleAcheminement": "SAN GAVINO DI CARBINI", - "nomCommune": "SAN GAVINO DI CARBINI" + "codePostal": "62270", + "codeCommune": "62234", + "libelleAcheminement": "CONCHY SUR CANCHE", + "nomCommune": "CONCHY SUR CANCHE" }, { - "codePostal": "47360", - "codeCommune": "47125", - "libelleAcheminement": "LACEPEDE", - "nomCommune": "LACEPEDE" + "codePostal": "51120", + "codeCommune": "51511", + "libelleAcheminement": "ST QUENTIN LE VERGER", + "nomCommune": "ST QUENTIN LE VERGER" }, { - "codePostal": "58400", - "codeCommune": "58056", - "libelleAcheminement": "CHAMPVOUX", - "nomCommune": "CHAMPVOUX" + "codePostal": "54330", + "codeCommune": "54203", + "libelleAcheminement": "FORCELLES ST GORGON", + "nomCommune": "FORCELLES ST GORGON" }, { - "codePostal": "34350", - "codeCommune": "34324", - "libelleAcheminement": "VALRAS PLAGE", - "nomCommune": "VALRAS PLAGE" + "codePostal": "62130", + "codeCommune": "62435", + "libelleAcheminement": "HERLINCOURT", + "nomCommune": "HERLINCOURT" }, { - "codePostal": "20143", - "codeCommune": "2A310", - "libelleAcheminement": "SANTA MARIA FIGANIELLA", - "nomCommune": "SANTA MARIA FIGANIELLA" + "codePostal": "08260", + "codeCommune": "08037", + "libelleAcheminement": "AUVILLERS LES FORGES", + "nomCommune": "AUVILLERS LES FORGES" }, { - "codePostal": "47190", - "codeCommune": "47129", - "libelleAcheminement": "LAGARRIGUE", - "nomCommune": "LAGARRIGUE" + "codePostal": "62360", + "codeCommune": "62235", + "libelleAcheminement": "CONDETTE", + "nomCommune": "CONDETTE" }, { - "codePostal": "58120", - "codeCommune": "58062", - "libelleAcheminement": "CHATEAU CHINON", - "nomCommune": "CHATEAU CHINON VILLE" + "codePostal": "51600", + "codeCommune": "51517", + "libelleAcheminement": "ST SOUPLET SUR PY", + "nomCommune": "ST SOUPLET SUR PY" }, { - "codePostal": "34220", - "codeCommune": "34326", - "libelleAcheminement": "VELIEUX", - "nomCommune": "VELIEUX" + "codePostal": "54450", + "codeCommune": "54210", + "libelleAcheminement": "FREMENIL", + "nomCommune": "FREMENIL" }, { - "codePostal": "20190", - "codeCommune": "2A312", - "libelleAcheminement": "SANTA MARIA SICHE", - "nomCommune": "SANTA MARIA SICHE" + "codePostal": "62550", + "codeCommune": "62450", + "libelleAcheminement": "HESTRUS", + "nomCommune": "HESTRUS" }, { - "codePostal": "47400", - "codeCommune": "47130", - "libelleAcheminement": "LAGRUERE", - "nomCommune": "LAGRUERE" + "codePostal": "08300", + "codeCommune": "08038", + "libelleAcheminement": "AVANCON", + "nomCommune": "AVANCON" }, { - "codePostal": "58350", - "codeCommune": "58064", - "libelleAcheminement": "CHATEAUNEUF VAL DE BARGIS", - "nomCommune": "CHATEAUNEUF VAL DE BARGIS" + "codePostal": "62137", + "codeCommune": "62244", + "libelleAcheminement": "COULOGNE", + "nomCommune": "COULOGNE" }, { - "codePostal": "34740", - "codeCommune": "34327", - "libelleAcheminement": "VENDARGUES", - "nomCommune": "VENDARGUES" + "codePostal": "51290", + "codeCommune": "51520", + "libelleAcheminement": "ST UTIN", + "nomCommune": "ST UTIN" }, { - "codePostal": "20167", - "codeCommune": "2A336", - "libelleAcheminement": "VALLE DI MEZZANA", - "nomCommune": "VALLE DI MEZZANA" + "codePostal": "54290", + "codeCommune": "54216", + "libelleAcheminement": "FROVILLE", + "nomCommune": "FROVILLE" }, { - "codePostal": "47310", - "codeCommune": "47133", - "libelleAcheminement": "LAMONTJOIE", - "nomCommune": "LAMONTJOIE" + "codePostal": "62575", + "codeCommune": "62452", + "libelleAcheminement": "HEURINGHEM", + "nomCommune": "HEURINGHEM" }, { - "codePostal": "58120", - "codeCommune": "58066", - "libelleAcheminement": "CHATIN", - "nomCommune": "CHATIN" + "codePostal": "08000", + "codeCommune": "08040", + "libelleAcheminement": "LES AYVELLES", + "nomCommune": "LES AYVELLES" }, { - "codePostal": "34230", - "codeCommune": "34328", - "libelleAcheminement": "VENDEMIAN", - "nomCommune": "VENDEMIAN" + "codePostal": "62121", + "codeCommune": "62248", + "libelleAcheminement": "COURCELLES LE COMTE", + "nomCommune": "COURCELLES LE COMTE" }, { - "codePostal": "20172", - "codeCommune": "2A345", - "libelleAcheminement": "VERO", - "nomCommune": "VERO" + "codePostal": "51170", + "codeCommune": "51523", + "libelleAcheminement": "SARCY", + "nomCommune": "SARCY" }, { - "codePostal": "47260", - "codeCommune": "47135", - "libelleAcheminement": "LAPARADE", - "nomCommune": "LAPARADE" + "codePostal": "54115", + "codeCommune": "54220", + "libelleAcheminement": "GEMONVILLE", + "nomCommune": "GEMONVILLE" }, { - "codePostal": "58400", - "codeCommune": "58067", - "libelleAcheminement": "CHAULGNES", - "nomCommune": "CHAULGNES" + "codePostal": "62310", + "codeCommune": "62453", + "libelleAcheminement": "HEZECQUES", + "nomCommune": "HEZECQUES" }, { - "codePostal": "34110", - "codeCommune": "34333", - "libelleAcheminement": "VIC LA GARDIOLE", - "nomCommune": "VIC LA GARDIOLE" + "codePostal": "08400", + "codeCommune": "08045", + "libelleAcheminement": "BALLAY", + "nomCommune": "BALLAY" }, { - "codePostal": "20212", - "codeCommune": "2B013", - "libelleAcheminement": "ALZI", - "nomCommune": "ALZI" + "codePostal": "62560", + "codeCommune": "62254", + "libelleAcheminement": "COYECQUES", + "nomCommune": "COYECQUES" }, { - "codePostal": "47600", - "codeCommune": "47139", - "libelleAcheminement": "LASSERRE", - "nomCommune": "LASSERRE" + "codePostal": "51520", + "codeCommune": "51525", + "libelleAcheminement": "SARRY", + "nomCommune": "SARRY" }, { - "codePostal": "58420", - "codeCommune": "58071", - "libelleAcheminement": "CHEVANNES CHANGY", - "nomCommune": "CHEVANNES CHANGY" + "codePostal": "54170", + "codeCommune": "54223", + "libelleAcheminement": "GERMINY", + "nomCommune": "GERMINY" }, { - "codePostal": "34600", - "codeCommune": "34335", - "libelleAcheminement": "VILLEMAGNE L ARGENTIERE", - "nomCommune": "VILLEMAGNE L ARGENTIERE" + "codePostal": "62620", + "codeCommune": "62456", + "libelleAcheminement": "HOUCHIN", + "nomCommune": "HOUCHIN" }, { - "codePostal": "20276", - "codeCommune": "2B023", - "libelleAcheminement": "ASCO", - "nomCommune": "ASCO" + "codePostal": "08140", + "codeCommune": "08053", + "libelleAcheminement": "BAZEILLES", + "nomCommune": "BAZEILLES" }, { - "codePostal": "47390", - "codeCommune": "47145", - "libelleAcheminement": "LAYRAC", - "nomCommune": "LAYRAC" + "codePostal": "62810", + "codeCommune": "62266", + "libelleAcheminement": "DENIER", + "nomCommune": "DENIER" }, { - "codePostal": "58500", - "codeCommune": "58079", - "libelleAcheminement": "CLAMECY", - "nomCommune": "CLAMECY" + "codePostal": "51500", + "codeCommune": "51532", + "libelleAcheminement": "SERMIERS", + "nomCommune": "SERMIERS" }, { - "codePostal": "35560", - "codeCommune": "35004", - "libelleAcheminement": "VAL COUESNON", - "nomCommune": "VAL COUESNON" + "codePostal": "54112", + "codeCommune": "54226", + "libelleAcheminement": "GIBEAUMEIX", + "nomCommune": "GIBEAUMEIX" }, { - "codePostal": "20620", - "codeCommune": "2B037", - "libelleAcheminement": "BIGUGLIA", - "nomCommune": "BIGUGLIA" + "codePostal": "62650", + "codeCommune": "62463", + "libelleAcheminement": "HUCQUELIERS", + "nomCommune": "HUCQUELIERS" }, { - "codePostal": "47120", - "codeCommune": "47147", - "libelleAcheminement": "LEVIGNAC DE GUYENNE", - "nomCommune": "LEVIGNAC DE GUYENNE" + "codePostal": "08140", + "codeCommune": "08053", + "libelleAcheminement": "BAZEILLES", + "nomCommune": "BAZEILLES" }, { - "codePostal": "58460", - "codeCommune": "58085", - "libelleAcheminement": "CORVOL L ORGUEILLEUX", - "nomCommune": "CORVOL L ORGUEILLEUX" + "codePostal": "62460", + "codeCommune": "62269", + "libelleAcheminement": "DIEVAL", + "nomCommune": "DIEVAL" }, { - "codePostal": "35560", - "codeCommune": "35004", - "libelleAcheminement": "VAL COUESNON", - "nomCommune": "VAL COUESNON" + "codePostal": "51800", + "codeCommune": "51533", + "libelleAcheminement": "SERVON MELZICOURT", + "nomCommune": "SERVON MELZICOURT" }, { - "codePostal": "20290", - "codeCommune": "2B042", - "libelleAcheminement": "BORGO", - "nomCommune": "BORGO" + "codePostal": "54780", + "codeCommune": "54227", + "libelleAcheminement": "GIRAUMONT", + "nomCommune": "GIRAUMONT" }, { - "codePostal": "47360", - "codeCommune": "47154", - "libelleAcheminement": "LUSIGNAN PETIT", - "nomCommune": "LUSIGNAN PETIT" + "codePostal": "62130", + "codeCommune": "62467", + "libelleAcheminement": "HUMEROEUILLE", + "nomCommune": "HUMEROEUILLE" }, { - "codePostal": "58660", - "codeCommune": "58088", - "libelleAcheminement": "COULANGES LES NEVERS", - "nomCommune": "COULANGES LES NEVERS" + "codePostal": "08250", + "codeCommune": "08056", + "libelleAcheminement": "BEFFU ET LE MORTHOMME", + "nomCommune": "BEFFU ET LE MORTHOMME" }, { - "codePostal": "35370", - "codeCommune": "35006", - "libelleAcheminement": "ARGENTRE DU PLESSIS", - "nomCommune": "ARGENTRE DU PLESSIS" + "codePostal": "62830", + "codeCommune": "62273", + "libelleAcheminement": "DOUDEAUVILLE", + "nomCommune": "DOUDEAUVILLE" }, { - "codePostal": "20235", - "codeCommune": "2B059", - "libelleAcheminement": "CANAVAGGIA", - "nomCommune": "CANAVAGGIA" + "codePostal": "51120", + "codeCommune": "51542", + "libelleAcheminement": "SOIZY AUX BOIS", + "nomCommune": "SOIZY AUX BOIS" }, { - "codePostal": "47200", - "codeCommune": "47157", - "libelleAcheminement": "MARMANDE", - "nomCommune": "MARMANDE" + "codePostal": "54450", + "codeCommune": "54230", + "libelleAcheminement": "GOGNEY", + "nomCommune": "GOGNEY" }, { - "codePostal": "58210", - "codeCommune": "58090", - "libelleAcheminement": "COURCELLES", - "nomCommune": "COURCELLES" + "codePostal": "62770", + "codeCommune": "62470", + "libelleAcheminement": "INCOURT", + "nomCommune": "INCOURT" }, { - "codePostal": "35120", - "codeCommune": "35009", - "libelleAcheminement": "BAGUER MORVAN", - "nomCommune": "BAGUER MORVAN" + "codePostal": "08450", + "codeCommune": "08063", + "libelleAcheminement": "LA BESACE", + "nomCommune": "LA BESACE" }, { - "codePostal": "20229", - "codeCommune": "2B063", - "libelleAcheminement": "CARCHETO BRUSTICO", - "nomCommune": "CARCHETO BRUSTICO" + "codePostal": "62870", + "codeCommune": "62275", + "libelleAcheminement": "DOURIEZ", + "nomCommune": "DOURIEZ" }, { - "codePostal": "47600", - "codeCommune": "47174", - "libelleAcheminement": "MONCRABEAU", - "nomCommune": "MONCRABEAU" + "codePostal": "51600", + "codeCommune": "51547", + "libelleAcheminement": "SOMME TOURBE", + "nomCommune": "SOMME TOURBE" }, { - "codePostal": "58230", - "codeCommune": "58106", - "libelleAcheminement": "DUN LES PLACES", - "nomCommune": "DUN LES PLACES" + "codePostal": "54330", + "codeCommune": "54235", + "libelleAcheminement": "GOVILLER", + "nomCommune": "GOVILLER" }, { - "codePostal": "35137", - "codeCommune": "35023", - "libelleAcheminement": "BEDEE", - "nomCommune": "BEDEE" + "codePostal": "62330", + "codeCommune": "62473", + "libelleAcheminement": "ISBERGUES", + "nomCommune": "ISBERGUES" }, { - "codePostal": "20221", - "codeCommune": "2B087", - "libelleAcheminement": "CERVIONE", - "nomCommune": "CERVIONE" + "codePostal": "08110", + "codeCommune": "08067", + "libelleAcheminement": "BLAGNY", + "nomCommune": "BLAGNY" }, { - "codePostal": "47150", - "codeCommune": "47175", - "libelleAcheminement": "MONFLANQUIN", - "nomCommune": "MONFLANQUIN" + "codePostal": "62138", + "codeCommune": "62276", + "libelleAcheminement": "DOUVRIN", + "nomCommune": "DOUVRIN" }, { - "codePostal": "58140", - "codeCommune": "58108", - "libelleAcheminement": "EMPURY", - "nomCommune": "EMPURY" + "codePostal": "51600", + "codeCommune": "51553", + "libelleAcheminement": "SOUAIN PERTHES LES HURLUS", + "nomCommune": "SOUAIN PERTHES LES HURLUS" }, { - "codePostal": "35340", - "codeCommune": "35031", - "libelleAcheminement": "LA BOUEXIERE", - "nomCommune": "LA BOUEXIERE" + "codePostal": "54115", + "codeCommune": "54237", + "libelleAcheminement": "GRIMONVILLER", + "nomCommune": "GRIMONVILLER" }, { - "codePostal": "20250", - "codeCommune": "2B096", - "libelleAcheminement": "CORTE", - "nomCommune": "CORTE" + "codePostal": "62690", + "codeCommune": "62477", + "libelleAcheminement": "IZEL LES HAMEAU", + "nomCommune": "IZEL LES HAMEAU" }, { - "codePostal": "47150", - "codeCommune": "47178", - "libelleAcheminement": "MONSEGUR", - "nomCommune": "MONSEGUR" + "codePostal": "08250", + "codeCommune": "08074", + "libelleAcheminement": "BOUCONVILLE", + "nomCommune": "BOUCONVILLE" }, { - "codePostal": "58410", - "codeCommune": "58109", - "libelleAcheminement": "ENTRAINS SUR NOHAIN", - "nomCommune": "ENTRAINS SUR NOHAIN" + "codePostal": "62270", + "codeCommune": "62283", + "libelleAcheminement": "ECOIVRES", + "nomCommune": "ECOIVRES" }, { - "codePostal": "35370", - "codeCommune": "35038", - "libelleAcheminement": "BREAL SOUS VITRE", - "nomCommune": "BREAL SOUS VITRE" + "codePostal": "51320", + "codeCommune": "51555", + "libelleAcheminement": "SOUDE", + "nomCommune": "SOUDE" }, { - "codePostal": "20237", - "codeCommune": "2B101", - "libelleAcheminement": "CROCE", - "nomCommune": "CROCE" + "codePostal": "54290", + "codeCommune": "54238", + "libelleAcheminement": "GRIPPORT", + "nomCommune": "GRIPPORT" }, { - "codePostal": "47380", - "codeCommune": "47182", - "libelleAcheminement": "MONTASTRUC", - "nomCommune": "MONTASTRUC" + "codePostal": "62630", + "codeCommune": "62496", + "libelleAcheminement": "LEFAUX", + "nomCommune": "LEFAUX" }, { - "codePostal": "58190", - "codeCommune": "58116", - "libelleAcheminement": "FLEZ CUZY", - "nomCommune": "FLEZ CUZY" + "codePostal": "08410", + "codeCommune": "08076", + "libelleAcheminement": "BOULZICOURT", + "nomCommune": "BOULZICOURT" }, { - "codePostal": "35370", - "codeCommune": "35042", - "libelleAcheminement": "BRIELLES", - "nomCommune": "BRIELLES" + "codePostal": "62190", + "codeCommune": "62286", + "libelleAcheminement": "ECQUEDECQUES", + "nomCommune": "ECQUEDECQUES" }, { - "codePostal": "20212", - "codeCommune": "2B105", - "libelleAcheminement": "ERBAJOLO", - "nomCommune": "ERBAJOLO" + "codePostal": "51300", + "codeCommune": "51557", + "libelleAcheminement": "SOULANGES", + "nomCommune": "SOULANGES" }, { - "codePostal": "47350", - "codeCommune": "47189", - "libelleAcheminement": "MONTIGNAC TOUPINERIE", - "nomCommune": "MONTIGNAC TOUPINERIE" + "codePostal": "54113", + "codeCommune": "54242", + "libelleAcheminement": "GYE", + "nomCommune": "GYE" }, { - "codePostal": "58600", - "codeCommune": "58121", - "libelleAcheminement": "GARCHIZY", - "nomCommune": "GARCHIZY" + "codePostal": "62300", + "codeCommune": "62498", + "libelleAcheminement": "LENS", + "nomCommune": "LENS" }, { - "codePostal": "35170", - "codeCommune": "35047", - "libelleAcheminement": "BRUZ", - "nomCommune": "BRUZ" + "codePostal": "08260", + "codeCommune": "08094", + "libelleAcheminement": "CERNION", + "nomCommune": "CERNION" }, { - "codePostal": "20234", - "codeCommune": "2B111", - "libelleAcheminement": "FELCE", - "nomCommune": "FELCE" + "codePostal": "62170", + "codeCommune": "62289", + "libelleAcheminement": "ECUIRES", + "nomCommune": "ECUIRES" }, { - "codePostal": "47360", - "codeCommune": "47190", - "libelleAcheminement": "MONTPEZAT", - "nomCommune": "MONTPEZAT" + "codePostal": "51270", + "codeCommune": "51560", + "libelleAcheminement": "SUIZY LE FRANC", + "nomCommune": "SUIZY LE FRANC" }, { - "codePostal": "58230", - "codeCommune": "58125", - "libelleAcheminement": "GIEN SUR CURE", - "nomCommune": "GIEN SUR CURE" + "codePostal": "54110", + "codeCommune": "54250", + "libelleAcheminement": "HARAUCOURT", + "nomCommune": "HARAUCOURT" }, { - "codePostal": "35510", - "codeCommune": "35051", - "libelleAcheminement": "CESSON SEVIGNE", - "nomCommune": "CESSON SEVIGNE" + "codePostal": "62136", + "codeCommune": "62502", + "libelleAcheminement": "LESTREM", + "nomCommune": "LESTREM" }, { - "codePostal": "20237", - "codeCommune": "2B113", - "libelleAcheminement": "FICAJA", - "nomCommune": "FICAJA" + "codePostal": "08160", + "codeCommune": "08096", + "libelleAcheminement": "CHALANDRY ELAIRE", + "nomCommune": "CHALANDRY ELAIRE" }, { - "codePostal": "47600", - "codeCommune": "47195", - "libelleAcheminement": "NERAC", - "nomCommune": "NERAC" + "codePostal": "62650", + "codeCommune": "62296", + "libelleAcheminement": "ENQUIN SUR BAILLONS", + "nomCommune": "ENQUIN SUR BAILLONS" }, { - "codePostal": "58470", - "codeCommune": "58126", - "libelleAcheminement": "GIMOUILLE", - "nomCommune": "GIMOUILLE" + "codePostal": "51130", + "codeCommune": "51578", + "libelleAcheminement": "TRECON", + "nomCommune": "TRECON" }, { - "codePostal": "35190", - "codeCommune": "35056", - "libelleAcheminement": "LA CHAPELLE AUX FILTZMEENS", - "nomCommune": "LA CHAPELLE AUX FILTZMEENS" + "codePostal": "54450", + "codeCommune": "54251", + "libelleAcheminement": "HARBOUEY", + "nomCommune": "HARBOUEY" }, { - "codePostal": "20600", - "codeCommune": "2B120", - "libelleAcheminement": "FURIANI", - "nomCommune": "FURIANI" + "codePostal": "62145", + "codeCommune": "62509", + "libelleAcheminement": "LIETTRES", + "nomCommune": "LIETTRES" }, { - "codePostal": "47440", - "codeCommune": "47198", - "libelleAcheminement": "PAILLOLES", - "nomCommune": "PAILLOLES" + "codePostal": "08250", + "codeCommune": "08098", + "libelleAcheminement": "CHAMPIGNEULLE", + "nomCommune": "CHAMPIGNEULLE" }, { - "codePostal": "58240", - "codeCommune": "58138", - "libelleAcheminement": "LANGERON", - "nomCommune": "LANGERON" + "codePostal": "62156", + "codeCommune": "62319", + "libelleAcheminement": "ETERPIGNY", + "nomCommune": "ETERPIGNY" }, { - "codePostal": "35330", - "codeCommune": "35057", - "libelleAcheminement": "LA CHAPELLE BOUEXIC", - "nomCommune": "LA CHAPELLE BOUEXIC" + "codePostal": "51700", + "codeCommune": "51592", + "libelleAcheminement": "VANDIERES", + "nomCommune": "VANDIERES" }, { - "codePostal": "20243", - "codeCommune": "2B135", - "libelleAcheminement": "ISOLACCIO DI FIUMORBO", - "nomCommune": "ISOLACCIO DI FIUMORBO" + "codePostal": "54310", + "codeCommune": "54263", + "libelleAcheminement": "HOMECOURT", + "nomCommune": "HOMECOURT" }, { - "codePostal": "47380", - "codeCommune": "47206", - "libelleAcheminement": "PINEL HAUTERIVE", - "nomCommune": "PINEL HAUTERIVE" + "codePostal": "62127", + "codeCommune": "62514", + "libelleAcheminement": "LIGNY ST FLOCHEL", + "nomCommune": "LIGNY ST FLOCHEL" }, { - "codePostal": "58370", - "codeCommune": "58140", - "libelleAcheminement": "LAROCHEMILLAY", - "nomCommune": "LAROCHEMILLAY" + "codePostal": "08000", + "codeCommune": "08105", + "libelleAcheminement": "CHARLEVILLE MEZIERES", + "nomCommune": "CHARLEVILLE MEZIERES" }, { - "codePostal": "35360", - "codeCommune": "35060", - "libelleAcheminement": "LA CHAPELLE DU LOU DU LAC", - "nomCommune": "LA CHAPELLE DU LOU DU LAC" + "codePostal": "62770", + "codeCommune": "62335", + "libelleAcheminement": "FILLIEVRES", + "nomCommune": "FILLIEVRES" }, { - "codePostal": "20224", - "codeCommune": "2B147", - "libelleAcheminement": "LOZZI", - "nomCommune": "LOZZI" + "codePostal": "51480", + "codeCommune": "51597", + "libelleAcheminement": "VAUCIENNES", + "nomCommune": "VAUCIENNES" }, { - "codePostal": "47380", - "codeCommune": "47206", - "libelleAcheminement": "PINEL HAUTERIVE", - "nomCommune": "PINEL HAUTERIVE" + "codePostal": "54800", + "codeCommune": "54273", + "libelleAcheminement": "JARNY", + "nomCommune": "JARNY" }, { - "codePostal": "58230", - "codeCommune": "58141", - "libelleAcheminement": "LAVAULT DE FRETOY", - "nomCommune": "LAVAULT DE FRETOY" + "codePostal": "62270", + "codeCommune": "62518", + "libelleAcheminement": "LINZEUX", + "nomCommune": "LINZEUX" }, { - "codePostal": "35360", - "codeCommune": "35060", - "libelleAcheminement": "LA CHAPELLE DU LOU DU LAC", - "nomCommune": "LA CHAPELLE DU LOU DU LAC" + "codePostal": "08360", + "codeCommune": "08107", + "libelleAcheminement": "CHATEAU PORCIEN", + "nomCommune": "CHATEAU PORCIEN" }, { - "codePostal": "20260", - "codeCommune": "2B150", - "libelleAcheminement": "LUMIO", - "nomCommune": "LUMIO" + "codePostal": "62134", + "codeCommune": "62342", + "libelleAcheminement": "FONTAINE LES BOULANS", + "nomCommune": "FONTAINE LES BOULANS" }, { - "codePostal": "47230", - "codeCommune": "47207", - "libelleAcheminement": "POMPIEY", - "nomCommune": "POMPIEY" + "codePostal": "51380", + "codeCommune": "51599", + "libelleAcheminement": "VAUDEMANGE", + "nomCommune": "VAUDEMANGE" }, { - "codePostal": "58700", - "codeCommune": "58147", - "libelleAcheminement": "LURCY LE BOURG", - "nomCommune": "LURCY LE BOURG" + "codePostal": "54140", + "codeCommune": "54274", + "libelleAcheminement": "JARVILLE LA MALGRANGE", + "nomCommune": "JARVILLE LA MALGRANGE" }, { - "codePostal": "35133", - "codeCommune": "35062", - "libelleAcheminement": "LA CHAPELLE JANSON", - "nomCommune": "LA CHAPELLE JANSON" + "codePostal": "62400", + "codeCommune": "62520", + "libelleAcheminement": "LOCON", + "nomCommune": "LOCON" }, { - "codePostal": "20228", - "codeCommune": "2B152", - "libelleAcheminement": "LURI", - "nomCommune": "LURI" + "codePostal": "08250", + "codeCommune": "08109", + "libelleAcheminement": "CHATEL CHEHERY", + "nomCommune": "CHATEL CHEHERY" }, { - "codePostal": "47130", - "codeCommune": "47210", - "libelleAcheminement": "PORT STE MARIE", - "nomCommune": "PORT STE MARIE" + "codePostal": "62390", + "codeCommune": "62345", + "libelleAcheminement": "FONTAINE L ETALON", + "nomCommune": "FONTAINE L ETALON" }, { - "codePostal": "58170", - "codeCommune": "58149", - "libelleAcheminement": "LUZY", - "nomCommune": "LUZY" + "codePostal": "51300", + "codeCommune": "51601", + "libelleAcheminement": "VAVRAY LE GRAND", + "nomCommune": "VAVRAY LE GRAND" }, { - "codePostal": "35590", - "codeCommune": "35065", - "libelleAcheminement": "LA CHAPELLE THOUARAULT", - "nomCommune": "LA CHAPELLE THOUARAULT" + "codePostal": "54470", + "codeCommune": "54275", + "libelleAcheminement": "JAULNY", + "nomCommune": "JAULNY" }, { - "codePostal": "20212", - "codeCommune": "2B157", - "libelleAcheminement": "MAZZOLA", - "nomCommune": "MAZZOLA" + "codePostal": "62990", + "codeCommune": "62522", + "libelleAcheminement": "LOISON SUR CREQUOISE", + "nomCommune": "LOISON SUR CREQUOISE" }, { - "codePostal": "47700", - "codeCommune": "47212", - "libelleAcheminement": "POUSSIGNAC", - "nomCommune": "POUSSIGNAC" + "codePostal": "08150", + "codeCommune": "08110", + "libelleAcheminement": "LE CHATELET SUR SORMONNE", + "nomCommune": "LE CHATELET SUR SORMONNE" }, { - "codePostal": "58140", - "codeCommune": "58157", - "libelleAcheminement": "MARIGNY L EGLISE", - "nomCommune": "MARIGNY L EGLISE" + "codePostal": "62450", + "codeCommune": "62353", + "libelleAcheminement": "FREMICOURT", + "nomCommune": "FREMICOURT" }, { - "codePostal": "35131", - "codeCommune": "35066", - "libelleAcheminement": "CHARTRES DE BRETAGNE", - "nomCommune": "CHARTRES DE BRETAGNE" + "codePostal": "51300", + "codeCommune": "51602", + "libelleAcheminement": "VAVRAY LE PETIT", + "nomCommune": "VAVRAY LE PETIT" }, { - "codePostal": "20287", - "codeCommune": "2B159", - "libelleAcheminement": "MERIA", - "nomCommune": "MERIA" + "codePostal": "54240", + "codeCommune": "54280", + "libelleAcheminement": "JOEUF", + "nomCommune": "JOEUF" }, { - "codePostal": "47170", - "codeCommune": "47221", - "libelleAcheminement": "REAUP LISSE", - "nomCommune": "REAUP LISSE" + "codePostal": "62610", + "codeCommune": "62531", + "libelleAcheminement": "LOUCHES", + "nomCommune": "LOUCHES" }, { - "codePostal": "58410", - "codeCommune": "58162", - "libelleAcheminement": "MENESTREAU", - "nomCommune": "MENESTREAU" + "codePostal": "08220", + "codeCommune": "08113", + "libelleAcheminement": "CHAUMONT PORCIEN", + "nomCommune": "CHAUMONT PORCIEN" }, { - "codePostal": "35250", - "codeCommune": "35067", - "libelleAcheminement": "CHASNE SUR ILLET", - "nomCommune": "CHASNE SUR ILLET" + "codePostal": "62140", + "codeCommune": "62359", + "libelleAcheminement": "FRESSIN", + "nomCommune": "FRESSIN" }, { - "codePostal": "20229", - "codeCommune": "2B164", - "libelleAcheminement": "MONACIA D OREZZA", - "nomCommune": "MONACIA D OREZZA" + "codePostal": "51140", + "codeCommune": "51604", + "libelleAcheminement": "VENTELAY", + "nomCommune": "VENTELAY" }, { - "codePostal": "47340", - "codeCommune": "47228", - "libelleAcheminement": "ST ANTOINE DE FICALBA", - "nomCommune": "ST ANTOINE DE FICALBA" + "codePostal": "54380", + "codeCommune": "54294", + "libelleAcheminement": "LANDREMONT", + "nomCommune": "LANDREMONT" }, { - "codePostal": "58120", - "codeCommune": "58177", - "libelleAcheminement": "MONTIGNY EN MORVAN", - "nomCommune": "MONTIGNY EN MORVAN" + "codePostal": "62170", + "codeCommune": "62535", + "libelleAcheminement": "LA MADELAINE SOUS MONTREUIL", + "nomCommune": "LA MADELAINE SOUS MONTREUIL" }, { - "codePostal": "35220", - "codeCommune": "35068", - "libelleAcheminement": "CHATEAUBOURG", - "nomCommune": "CHATEAUBOURG" + "codePostal": "08450", + "codeCommune": "08115", + "libelleAcheminement": "CHEMERY CHEHERY", + "nomCommune": "CHEMERY CHEHERY" }, { - "codePostal": "20214", - "codeCommune": "2B165", - "libelleAcheminement": "MONCALE", - "nomCommune": "MONCALE" + "codePostal": "62270", + "codeCommune": "62361", + "libelleAcheminement": "FREVENT", + "nomCommune": "FREVENT" }, { - "codePostal": "47120", - "codeCommune": "47236", - "libelleAcheminement": "STE COLOMBE DE DURAS", - "nomCommune": "STE COLOMBE DE DURAS" + "codePostal": "51190", + "codeCommune": "51612", + "libelleAcheminement": "BLANCS COTEAUX", + "nomCommune": "BLANCS COTEAUX" }, { - "codePostal": "58800", - "codeCommune": "58183", - "libelleAcheminement": "MOURON SUR YONNE", - "nomCommune": "MOURON SUR YONNE" + "codePostal": "54570", + "codeCommune": "54298", + "libelleAcheminement": "LANEUVEVILLE DERRIERE FOUG", + "nomCommune": "LANEUVEVILLE DERRIERE FOUG" }, { - "codePostal": "35220", - "codeCommune": "35068", - "libelleAcheminement": "CHATEAUBOURG", - "nomCommune": "CHATEAUBOURG" + "codePostal": "62130", + "codeCommune": "62539", + "libelleAcheminement": "MAISNIL", + "nomCommune": "MAISNIL" }, { - "codePostal": "20218", - "codeCommune": "2B169", - "libelleAcheminement": "MOROSAGLIA", - "nomCommune": "MOROSAGLIA" + "codePostal": "08350", + "codeCommune": "08119", + "libelleAcheminement": "CHEVEUGES", + "nomCommune": "CHEVEUGES" }, { - "codePostal": "47380", - "codeCommune": "47239", - "libelleAcheminement": "ST ETIENNE DE FOUGERES", - "nomCommune": "ST ETIENNE DE FOUGERES" + "codePostal": "62130", + "codeCommune": "62367", + "libelleAcheminement": "GAUCHIN VERLOINGT", + "nomCommune": "GAUCHIN VERLOINGT" }, { - "codePostal": "58700", - "codeCommune": "58186", - "libelleAcheminement": "MURLIN", - "nomCommune": "MURLIN" + "codePostal": "51700", + "codeCommune": "51637", + "libelleAcheminement": "VILLERS SOUS CHATILLON", + "nomCommune": "VILLERS SOUS CHATILLON" }, { - "codePostal": "35210", - "codeCommune": "35072", - "libelleAcheminement": "CHATILLON EN VENDELAIS", - "nomCommune": "CHATILLON EN VENDELAIS" + "codePostal": "54410", + "codeCommune": "54300", + "libelleAcheminement": "LANEUVEVILLE DEVANT NANCY", + "nomCommune": "LANEUVEVILLE DEVANT NANCY" }, { - "codePostal": "20238", - "codeCommune": "2B170", - "libelleAcheminement": "MORSIGLIA", - "nomCommune": "MORSIGLIA" + "codePostal": "62310", + "codeCommune": "62541", + "libelleAcheminement": "MAISONCELLE", + "nomCommune": "MAISONCELLE" }, { - "codePostal": "47500", - "codeCommune": "47242", - "libelleAcheminement": "ST FRONT SUR LEMANCE", - "nomCommune": "ST FRONT SUR LEMANCE" + "codePostal": "08600", + "codeCommune": "08122", + "libelleAcheminement": "CHOOZ", + "nomCommune": "CHOOZ" }, { - "codePostal": "58420", - "codeCommune": "58191", - "libelleAcheminement": "NEUILLY", - "nomCommune": "NEUILLY" + "codePostal": "62390", + "codeCommune": "62370", + "libelleAcheminement": "GENNES IVERGNY", + "nomCommune": "GENNES IVERGNY" }, { - "codePostal": "35590", - "codeCommune": "35081", - "libelleAcheminement": "CLAYES", - "nomCommune": "CLAYES" + "codePostal": "51800", + "codeCommune": "51640", + "libelleAcheminement": "VILLE SUR TOURBE", + "nomCommune": "VILLE SUR TOURBE" }, { - "codePostal": "20234", - "codeCommune": "2B179", - "libelleAcheminement": "NOVALE", - "nomCommune": "NOVALE" + "codePostal": "54150", + "codeCommune": "54302", + "libelleAcheminement": "LANTEFONTAINE", + "nomCommune": "LANTEFONTAINE" }, { - "codePostal": "47120", - "codeCommune": "47247", - "libelleAcheminement": "ST JEAN DE DURAS", - "nomCommune": "ST JEAN DE DURAS" + "codePostal": "62140", + "codeCommune": "62550", + "libelleAcheminement": "MARCONNELLE", + "nomCommune": "MARCONNELLE" }, { - "codePostal": "58500", - "codeCommune": "58198", - "libelleAcheminement": "OISY", - "nomCommune": "OISY" + "codePostal": "08160", + "codeCommune": "08140", + "libelleAcheminement": "DOM LE MESNIL", + "nomCommune": "DOM LE MESNIL" }, { - "codePostal": "35500", - "codeCommune": "35087", - "libelleAcheminement": "CORNILLE", - "nomCommune": "CORNILLE" + "codePostal": "62112", + "codeCommune": "62383", + "libelleAcheminement": "GOUY SOUS BELLONNE", + "nomCommune": "GOUY SOUS BELLONNE" }, { - "codePostal": "20217", - "codeCommune": "2B184", - "libelleAcheminement": "OLCANI", - "nomCommune": "OLCANI" + "codePostal": "51270", + "codeCommune": "51641", + "libelleAcheminement": "VILLEVENARD", + "nomCommune": "VILLEVENARD" }, { - "codePostal": "47130", - "codeCommune": "47249", - "libelleAcheminement": "ST LAURENT", - "nomCommune": "ST LAURENT" + "codePostal": "54520", + "codeCommune": "54304", + "libelleAcheminement": "LAXOU", + "nomCommune": "LAXOU" }, { - "codePostal": "58110", - "codeCommune": "58202", - "libelleAcheminement": "OUGNY", - "nomCommune": "OUGNY" + "codePostal": "62161", + "codeCommune": "62557", + "libelleAcheminement": "MAROEUIL", + "nomCommune": "MAROEUIL" }, { - "codePostal": "35440", - "codeCommune": "35094", - "libelleAcheminement": "DINGE", - "nomCommune": "DINGE" + "codePostal": "08310", + "codeCommune": "08147", + "libelleAcheminement": "DRICOURT", + "nomCommune": "DRICOURT" }, { - "codePostal": "20234", - "codeCommune": "2B194", - "libelleAcheminement": "ORTALE", - "nomCommune": "ORTALE" + "codePostal": "62450", + "codeCommune": "62387", + "libelleAcheminement": "GREVILLERS", + "nomCommune": "GREVILLERS" }, { - "codePostal": "47110", - "codeCommune": "47252", - "libelleAcheminement": "STE LIVRADE SUR LOT", - "nomCommune": "STE LIVRADE SUR LOT" + "codePostal": "51240", + "codeCommune": "51648", + "libelleAcheminement": "VITRY LA VILLE", + "nomCommune": "VITRY LA VILLE" }, { - "codePostal": "58130", - "codeCommune": "58212", - "libelleAcheminement": "POISEUX", - "nomCommune": "POISEUX" + "codePostal": "54450", + "codeCommune": "54308", + "libelleAcheminement": "LEINTREY", + "nomCommune": "LEINTREY" }, { - "codePostal": "35113", - "codeCommune": "35096", - "libelleAcheminement": "DOMAGNE", - "nomCommune": "DOMAGNE" + "codePostal": "62127", + "codeCommune": "62558", + "libelleAcheminement": "MARQUAY", + "nomCommune": "MARQUAY" }, { - "codePostal": "20253", - "codeCommune": "2B205", - "libelleAcheminement": "PATRIMONIO", - "nomCommune": "PATRIMONIO" + "codePostal": "08380", + "codeCommune": "08172", + "libelleAcheminement": "FLIGNY", + "nomCommune": "FLIGNY" }, { - "codePostal": "47270", - "codeCommune": "47255", - "libelleAcheminement": "ST MARTIN DE BEAUVILLE", - "nomCommune": "ST MARTIN DE BEAUVILLE" + "codePostal": "62760", + "codeCommune": "62389", + "libelleAcheminement": "GRINCOURT LES PAS", + "nomCommune": "GRINCOURT LES PAS" }, { - "codePostal": "58320", - "codeCommune": "58214", - "libelleAcheminement": "POUGUES LES EAUX", - "nomCommune": "POUGUES LES EAUX" + "codePostal": "51130", + "codeCommune": "51655", + "libelleAcheminement": "VOUZY", + "nomCommune": "VOUZY" }, { - "codePostal": "35390", - "codeCommune": "35098", - "libelleAcheminement": "LA DOMINELAIS", - "nomCommune": "LA DOMINELAIS" + "codePostal": "54700", + "codeCommune": "54312", + "libelleAcheminement": "LESMENILS", + "nomCommune": "LESMENILS" }, { - "codePostal": "20290", - "codeCommune": "2B206", - "libelleAcheminement": "PENTA ACQUATELLA", - "nomCommune": "PENTA ACQUATELLA" + "codePostal": "62450", + "codeCommune": "62561", + "libelleAcheminement": "MARTINPUICH", + "nomCommune": "MARTINPUICH" }, { - "codePostal": "47270", - "codeCommune": "47260", - "libelleAcheminement": "ST MAURIN", - "nomCommune": "ST MAURIN" + "codePostal": "08160", + "codeCommune": "08173", + "libelleAcheminement": "FLIZE", + "nomCommune": "FLIZE" }, { - "codePostal": "58140", - "codeCommune": "58216", - "libelleAcheminement": "POUQUES LORMES", - "nomCommune": "POUQUES LORMES" + "codePostal": "62600", + "codeCommune": "62390", + "libelleAcheminement": "GROFFLIERS", + "nomCommune": "GROFFLIERS" }, { - "codePostal": "35410", - "codeCommune": "35099", - "libelleAcheminement": "DOMLOUP", - "nomCommune": "DOMLOUP" + "codePostal": "52700", + "codeCommune": "52003", + "libelleAcheminement": "AILLIANVILLE", + "nomCommune": "AILLIANVILLE" }, { - "codePostal": "20230", - "codeCommune": "2B210", - "libelleAcheminement": "PERO CASEVECCHIE", - "nomCommune": "PERO CASEVECCHIE" + "codePostal": "54150", + "codeCommune": "54326", + "libelleAcheminement": "LUBEY", + "nomCommune": "LUBEY" }, { - "codePostal": "47290", - "codeCommune": "47265", - "libelleAcheminement": "ST PASTOUR", - "nomCommune": "ST PASTOUR" + "codePostal": "62680", + "codeCommune": "62570", + "libelleAcheminement": "MERICOURT", + "nomCommune": "MERICOURT" }, { - "codePostal": "58250", - "codeCommune": "58221", - "libelleAcheminement": "REMILLY", - "nomCommune": "REMILLY" + "codePostal": "08600", + "codeCommune": "08183", + "libelleAcheminement": "FROMELENNES", + "nomCommune": "FROMELENNES" }, { - "codePostal": "35340", - "codeCommune": "35107", - "libelleAcheminement": "ERCE PRES LIFFRE", - "nomCommune": "ERCE PRES LIFFRE" + "codePostal": "62140", + "codeCommune": "62395", + "libelleAcheminement": "GUIGNY", + "nomCommune": "GUIGNY" }, { - "codePostal": "20246", - "codeCommune": "2B230", - "libelleAcheminement": "PIEVE", - "nomCommune": "PIEVE" + "codePostal": "52120", + "codeCommune": "52005", + "libelleAcheminement": "AIZANVILLE", + "nomCommune": "AIZANVILLE" }, { - "codePostal": "47360", - "codeCommune": "47275", - "libelleAcheminement": "ST SALVY", - "nomCommune": "ST SALVY" + "codePostal": "54150", + "codeCommune": "54334", + "libelleAcheminement": "MAIRY MAINVILLE", + "nomCommune": "MAIRY MAINVILLE" }, { - "codePostal": "58110", - "codeCommune": "58223", - "libelleAcheminement": "ROUY", - "nomCommune": "ROUY" + "codePostal": "62170", + "codeCommune": "62585", + "libelleAcheminement": "MONTCAVREL", + "nomCommune": "MONTCAVREL" }, { - "codePostal": "35440", - "codeCommune": "35110", - "libelleAcheminement": "FEINS", - "nomCommune": "FEINS" + "codePostal": "08600", + "codeCommune": "08190", + "libelleAcheminement": "GIVET", + "nomCommune": "GIVET" }, { - "codePostal": "20218", - "codeCommune": "2B248", - "libelleAcheminement": "PRATO DI GIOVELLINA", - "nomCommune": "PRATO DI GIOVELLINA" + "codePostal": "62340", + "codeCommune": "62397", + "libelleAcheminement": "GUINES", + "nomCommune": "GUINES" }, { - "codePostal": "47420", - "codeCommune": "47286", - "libelleAcheminement": "SAUMEJAN", - "nomCommune": "SAUMEJAN" + "codePostal": "52210", + "codeCommune": "52022", + "libelleAcheminement": "AUBEPIERRE SUR AUBE", + "nomCommune": "AUBEPIERRE SUR AUBE" }, { - "codePostal": "58330", - "codeCommune": "58240", - "libelleAcheminement": "ST FRANCHY", - "nomCommune": "ST FRANCHY" + "codePostal": "54550", + "codeCommune": "54336", + "libelleAcheminement": "MAIZIERES", + "nomCommune": "MAIZIERES" }, { - "codePostal": "35640", - "codeCommune": "35114", - "libelleAcheminement": "FORGES LA FORET", - "nomCommune": "FORGES LA FORET" + "codePostal": "62140", + "codeCommune": "62596", + "libelleAcheminement": "MOURIEZ", + "nomCommune": "MOURIEZ" }, { - "codePostal": "20237", - "codeCommune": "2B255", - "libelleAcheminement": "QUERCITELLO", - "nomCommune": "QUERCITELLO" + "codePostal": "08700", + "codeCommune": "08199", + "libelleAcheminement": "LA GRANDVILLE", + "nomCommune": "LA GRANDVILLE" }, { - "codePostal": "47340", - "codeCommune": "47288", - "libelleAcheminement": "SAUVAGNAS", - "nomCommune": "SAUVAGNAS" + "codePostal": "62440", + "codeCommune": "62413", + "libelleAcheminement": "HARNES", + "nomCommune": "HARNES" }, { - "codePostal": "58210", - "codeCommune": "58242", - "libelleAcheminement": "ST GERMAIN DES BOIS", - "nomCommune": "ST GERMAIN DES BOIS" + "codePostal": "52190", + "codeCommune": "52027", + "libelleAcheminement": "AUJEURRES", + "nomCommune": "AUJEURRES" }, { - "codePostal": "35111", - "codeCommune": "35116", - "libelleAcheminement": "LA FRESNAIS", - "nomCommune": "LA FRESNAIS" + "codePostal": "54560", + "codeCommune": "54337", + "libelleAcheminement": "MALAVILLERS", + "nomCommune": "MALAVILLERS" }, { - "codePostal": "20248", - "codeCommune": "2B261", - "libelleAcheminement": "ROGLIANO", - "nomCommune": "ROGLIANO" + "codePostal": "62890", + "codeCommune": "62598", + "libelleAcheminement": "MUNCQ NIEURLET", + "nomCommune": "MUNCQ NIEURLET" }, { - "codePostal": "47150", - "codeCommune": "47295", - "libelleAcheminement": "SAVIGNAC SUR LEYZE", - "nomCommune": "SAVIGNAC SUR LEYZE" + "codePostal": "08430", + "codeCommune": "08203", + "libelleAcheminement": "GUIGNICOURT SUR VENCE", + "nomCommune": "GUIGNICOURT SUR VENCE" }, { - "codePostal": "58330", - "codeCommune": "58253", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "62156", + "codeCommune": "62414", + "libelleAcheminement": "HAUCOURT", + "nomCommune": "HAUCOURT" }, { - "codePostal": "35390", - "codeCommune": "35124", - "libelleAcheminement": "GRAND FOUGERAY", - "nomCommune": "GRAND FOUGERAY" + "codePostal": "52140", + "codeCommune": "52033", + "libelleAcheminement": "AVRECOURT", + "nomCommune": "AVRECOURT" }, { - "codePostal": "20239", - "codeCommune": "2B265", - "libelleAcheminement": "RUTALI", - "nomCommune": "RUTALI" + "codePostal": "54210", + "codeCommune": "54345", + "libelleAcheminement": "MANONCOURT EN VERMOIS", + "nomCommune": "MANONCOURT EN VERMOIS" }, { - "codePostal": "47410", - "codeCommune": "47296", - "libelleAcheminement": "SEGALAS", - "nomCommune": "SEGALAS" + "codePostal": "62290", + "codeCommune": "62617", + "libelleAcheminement": "NOEUX LES MINES", + "nomCommune": "NOEUX LES MINES" }, { - "codePostal": "58210", - "codeCommune": "58263", - "libelleAcheminement": "ST PIERRE DU MONT", - "nomCommune": "ST PIERRE DU MONT" + "codePostal": "08800", + "codeCommune": "08217", + "libelleAcheminement": "HAULME", + "nomCommune": "HAULME" }, { - "codePostal": "35590", - "codeCommune": "35131", - "libelleAcheminement": "L HERMITAGE", - "nomCommune": "L HERMITAGE" + "codePostal": "62850", + "codeCommune": "62419", + "libelleAcheminement": "HAUT LOQUIN", + "nomCommune": "HAUT LOQUIN" }, { - "codePostal": "20218", - "codeCommune": "2B267", - "libelleAcheminement": "SALICETO", - "nomCommune": "SALICETO" + "codePostal": "52110", + "codeCommune": "52039", + "libelleAcheminement": "BAUDRECOURT", + "nomCommune": "BAUDRECOURT" }, { - "codePostal": "47360", - "codeCommune": "47297", - "libelleAcheminement": "SEMBAS", - "nomCommune": "SEMBAS" + "codePostal": "54330", + "codeCommune": "54354", + "libelleAcheminement": "MARTHEMONT", + "nomCommune": "MARTHEMONT" }, { - "codePostal": "58330", - "codeCommune": "58267", - "libelleAcheminement": "ST SAULGE", - "nomCommune": "ST SAULGE" + "codePostal": "62580", + "codeCommune": "62639", + "libelleAcheminement": "OPPY", + "nomCommune": "OPPY" }, { - "codePostal": "35630", - "codeCommune": "35134", - "libelleAcheminement": "LES IFFS", - "nomCommune": "LES IFFS" + "codePostal": "08800", + "codeCommune": "08218", + "libelleAcheminement": "LES HAUTES RIVIERES", + "nomCommune": "LES HAUTES RIVIERES" }, { - "codePostal": "20212", - "codeCommune": "2B275", - "libelleAcheminement": "SERMANO", - "nomCommune": "SERMANO" + "codePostal": "62130", + "codeCommune": "62436", + "libelleAcheminement": "HERLIN LE SEC", + "nomCommune": "HERLIN LE SEC" }, { - "codePostal": "47170", - "codeCommune": "47302", - "libelleAcheminement": "SOS", - "nomCommune": "SOS" + "codePostal": "52500", + "codeCommune": "52043", + "libelleAcheminement": "BELMONT", + "nomCommune": "BELMONT" }, { - "codePostal": "58190", - "codeCommune": "58271", - "libelleAcheminement": "SAIZY", - "nomCommune": "SAIZY" + "codePostal": "54830", + "codeCommune": "54356", + "libelleAcheminement": "MATTEXEY", + "nomCommune": "MATTEXEY" }, { - "codePostal": "35133", - "codeCommune": "35138", - "libelleAcheminement": "LAIGNELET", - "nomCommune": "LAIGNELET" + "codePostal": "62130", + "codeCommune": "62641", + "libelleAcheminement": "OSTREVILLE", + "nomCommune": "OSTREVILLE" }, { - "codePostal": "20246", - "codeCommune": "2B287", - "libelleAcheminement": "SORIO", - "nomCommune": "SORIO" + "codePostal": "08170", + "codeCommune": "08222", + "libelleAcheminement": "HAYBES", + "nomCommune": "HAYBES" }, { - "codePostal": "47120", - "codeCommune": "47303", - "libelleAcheminement": "SOUMENSAC", - "nomCommune": "SOUMENSAC" + "codePostal": "62150", + "codeCommune": "62441", + "libelleAcheminement": "HERMIN", + "nomCommune": "HERMIN" }, { - "codePostal": "58000", - "codeCommune": "58278", - "libelleAcheminement": "SERMOISE SUR LOIRE", - "nomCommune": "SERMOISE SUR LOIRE" + "codePostal": "52110", + "codeCommune": "52047", + "libelleAcheminement": "BEURVILLE", + "nomCommune": "BEURVILLE" }, { - "codePostal": "35360", - "codeCommune": "35143", - "libelleAcheminement": "LANDUJAN", - "nomCommune": "LANDUJAN" + "codePostal": "54320", + "codeCommune": "54357", + "libelleAcheminement": "MAXEVILLE", + "nomCommune": "MAXEVILLE" }, { - "codePostal": "20250", - "codeCommune": "2B289", - "libelleAcheminement": "SOVERIA", - "nomCommune": "SOVERIA" + "codePostal": "62860", + "codeCommune": "62646", + "libelleAcheminement": "PALLUEL", + "nomCommune": "PALLUEL" }, { - "codePostal": "47230", - "codeCommune": "47308", - "libelleAcheminement": "THOUARS SUR GARONNE", - "nomCommune": "THOUARS SUR GARONNE" + "codePostal": "08320", + "codeCommune": "08226", + "libelleAcheminement": "HIERGES", + "nomCommune": "HIERGES" }, { - "codePostal": "58250", - "codeCommune": "58289", - "libelleAcheminement": "TERNANT", - "nomCommune": "TERNANT" + "codePostal": "62360", + "codeCommune": "62446", + "libelleAcheminement": "HESDIGNEUL LES BOULOGNE", + "nomCommune": "HESDIGNEUL LES BOULOGNE" }, { - "codePostal": "35550", - "codeCommune": "35155", - "libelleAcheminement": "LOHEAC", - "nomCommune": "LOHEAC" + "codePostal": "52340", + "codeCommune": "52050", + "libelleAcheminement": "BIESLES", + "nomCommune": "BIESLES" }, { - "codePostal": "20212", - "codeCommune": "2B292", - "libelleAcheminement": "SANT ANDREA DI BOZIO", - "nomCommune": "SANT ANDREA DI BOZIO" + "codePostal": "54280", + "codeCommune": "54358", + "libelleAcheminement": "MAZERULLES", + "nomCommune": "MAZERULLES" }, { - "codePostal": "47380", - "codeCommune": "47309", - "libelleAcheminement": "TOMBEBOEUF", - "nomCommune": "TOMBEBOEUF" + "codePostal": "62770", + "codeCommune": "62647", + "libelleAcheminement": "LE PARCQ", + "nomCommune": "LE PARCQ" }, { - "codePostal": "58250", - "codeCommune": "58290", - "libelleAcheminement": "THAIX", - "nomCommune": "THAIX" + "codePostal": "08190", + "codeCommune": "08229", + "libelleAcheminement": "HOUDILCOURT", + "nomCommune": "HOUDILCOURT" }, { - "codePostal": "35680", - "codeCommune": "35161", - "libelleAcheminement": "LOUVIGNE DE BAIS", - "nomCommune": "LOUVIGNE DE BAIS" + "codePostal": "62140", + "codeCommune": "62447", + "libelleAcheminement": "HESDIN", + "nomCommune": "HESDIN" }, { - "codePostal": "20220", - "codeCommune": "2B296", - "libelleAcheminement": "SANT ANTONINO", - "nomCommune": "SANT ANTONINO" + "codePostal": "52500", + "codeCommune": "52051", + "libelleAcheminement": "BIZE", + "nomCommune": "BIZE" }, { - "codePostal": "47140", - "codeCommune": "47315", - "libelleAcheminement": "TRENTELS", - "nomCommune": "TRENTELS" + "codePostal": "54360", + "codeCommune": "54359", + "libelleAcheminement": "MEHONCOURT", + "nomCommune": "MEHONCOURT" }, { - "codePostal": "58260", - "codeCommune": "58291", - "libelleAcheminement": "THIANGES", - "nomCommune": "THIANGES" + "codePostal": "62231", + "codeCommune": "62654", + "libelleAcheminement": "PEUPLINGUES", + "nomCommune": "PEUPLINGUES" }, { - "codePostal": "35420", - "codeCommune": "35162", - "libelleAcheminement": "LOUVIGNE DU DESERT", - "nomCommune": "LOUVIGNE DU DESERT" + "codePostal": "08430", + "codeCommune": "08236", + "libelleAcheminement": "JANDUN", + "nomCommune": "JANDUN" }, { - "codePostal": "20213", - "codeCommune": "2B297", - "libelleAcheminement": "SAN DAMIANO", - "nomCommune": "SAN DAMIANO" + "codePostal": "62130", + "codeCommune": "62468", + "libelleAcheminement": "HUMIERES", + "nomCommune": "HUMIERES" }, { - "codePostal": "47260", - "codeCommune": "47317", - "libelleAcheminement": "VERTEUIL D AGENAIS", - "nomCommune": "VERTEUIL D AGENAIS" + "codePostal": "52330", + "codeCommune": "52053", + "libelleAcheminement": "BLAISY", + "nomCommune": "BLAISY" }, { - "codePostal": "58150", - "codeCommune": "58295", - "libelleAcheminement": "TRACY SUR LOIRE", - "nomCommune": "TRACY SUR LOIRE" + "codePostal": "54560", + "codeCommune": "54363", + "libelleAcheminement": "MERCY LE HAUT", + "nomCommune": "MERCY LE HAUT" }, { - "codePostal": "35220", - "codeCommune": "35166", - "libelleAcheminement": "MARPIRE", - "nomCommune": "MARPIRE" + "codePostal": "62570", + "codeCommune": "62656", + "libelleAcheminement": "PIHEM", + "nomCommune": "PIHEM" }, { - "codePostal": "20230", - "codeCommune": "2B313", - "libelleAcheminement": "SAN NICOLAO", - "nomCommune": "SAN NICOLAO" + "codePostal": "08700", + "codeCommune": "08237", + "libelleAcheminement": "JOIGNY SUR MEUSE", + "nomCommune": "JOIGNY SUR MEUSE" }, { - "codePostal": "47380", - "codeCommune": "47319", - "libelleAcheminement": "VILLEBRAMAR", - "nomCommune": "VILLEBRAMAR" + "codePostal": "62129", + "codeCommune": "62471", + "libelleAcheminement": "BELLINGHEM", + "nomCommune": "BELLINGHEM" }, { - "codePostal": "58640", - "codeCommune": "58303", - "libelleAcheminement": "VARENNES VAUZELLES", - "nomCommune": "VARENNES VAUZELLES" + "codePostal": "52120", + "codeCommune": "52056", + "libelleAcheminement": "BLESSONVILLE", + "nomCommune": "BLESSONVILLE" }, { - "codePostal": "35380", - "codeCommune": "35169", - "libelleAcheminement": "MAXENT", - "nomCommune": "MAXENT" + "codePostal": "54540", + "codeCommune": "54368", + "libelleAcheminement": "MIGNEVILLE", + "nomCommune": "MIGNEVILLE" }, { - "codePostal": "20217", - "codeCommune": "2B314", - "libelleAcheminement": "SANTO PIETRO DI TENDA", - "nomCommune": "SANTO PIETRO DI TENDA" + "codePostal": "62126", + "codeCommune": "62658", + "libelleAcheminement": "PITTEFAUX", + "nomCommune": "PITTEFAUX" }, { - "codePostal": "48000", - "codeCommune": "48018", - "libelleAcheminement": "BARJAC", - "nomCommune": "BARJAC" + "codePostal": "08130", + "codeCommune": "08238", + "libelleAcheminement": "JONVAL", + "nomCommune": "JONVAL" }, { - "codePostal": "58210", - "codeCommune": "58304", - "libelleAcheminement": "VARZY", - "nomCommune": "VARZY" + "codePostal": "62170", + "codeCommune": "62472", + "libelleAcheminement": "INXENT", + "nomCommune": "INXENT" }, { - "codePostal": "35270", - "codeCommune": "35172", - "libelleAcheminement": "MEILLAC", - "nomCommune": "MEILLAC" + "codePostal": "52110", + "codeCommune": "52057", + "libelleAcheminement": "BLUMERAY", + "nomCommune": "BLUMERAY" }, { - "codePostal": "20250", - "codeCommune": "2B315", - "libelleAcheminement": "SANTO PIETRO DI VENACO", - "nomCommune": "SANTO PIETRO DI VENACO" + "codePostal": "54580", + "codeCommune": "54371", + "libelleAcheminement": "MOINEVILLE", + "nomCommune": "MOINEVILLE" }, { - "codePostal": "48400", - "codeCommune": "48019", - "libelleAcheminement": "BARRE DES CEVENNES", - "nomCommune": "BARRE DES CEVENNES" + "codePostal": "62140", + "codeCommune": "62661", + "libelleAcheminement": "BOUIN PLUMOISON", + "nomCommune": "BOUIN PLUMOISON" }, { - "codePostal": "58270", - "codeCommune": "58311", - "libelleAcheminement": "VILLE LANGY", - "nomCommune": "VILLE LANGY" + "codePostal": "08270", + "codeCommune": "08240", + "libelleAcheminement": "JUSTINE HERBIGNY", + "nomCommune": "JUSTINE HERBIGNY" }, { - "codePostal": "35520", - "codeCommune": "35173", - "libelleAcheminement": "MELESSE", - "nomCommune": "MELESSE" + "codePostal": "62330", + "codeCommune": "62473", + "libelleAcheminement": "ISBERGUES", + "nomCommune": "ISBERGUES" }, { - "codePostal": "20220", - "codeCommune": "2B316", - "libelleAcheminement": "SANTA REPARATA DI BALAGNA", - "nomCommune": "SANTA REPARATA DI BALAGNA" + "codePostal": "52400", + "codeCommune": "52060", + "libelleAcheminement": "BOURBONNE LES BAINS", + "nomCommune": "BOURBONNE LES BAINS" }, { - "codePostal": "48400", - "codeCommune": "48020", - "libelleAcheminement": "BASSURELS", - "nomCommune": "BASSURELS" + "codePostal": "54280", + "codeCommune": "54374", + "libelleAcheminement": "MONCEL SUR SEILLE", + "nomCommune": "MONCEL SUR SEILLE" }, { - "codePostal": "59491", - "codeCommune": "59009", - "libelleAcheminement": "VILLENEUVE D ASCQ", - "nomCommune": "VILLENEUVE D ASCQ" + "codePostal": "62390", + "codeCommune": "62665", + "libelleAcheminement": "LE PONCHEL", + "nomCommune": "LE PONCHEL" }, { - "codePostal": "35330", - "codeCommune": "35175", - "libelleAcheminement": "MERNEL", - "nomCommune": "MERNEL" + "codePostal": "08150", + "codeCommune": "08251", + "libelleAcheminement": "LEPRON LES VALLEES", + "nomCommune": "LEPRON LES VALLEES" }, { - "codePostal": "20230", - "codeCommune": "2B318", - "libelleAcheminement": "TAGLIO ISOLACCIO", - "nomCommune": "TAGLIO ISOLACCIO" + "codePostal": "62810", + "codeCommune": "62475", + "libelleAcheminement": "IVERGNY", + "nomCommune": "IVERGNY" }, { - "codePostal": "48400", - "codeCommune": "48028", - "libelleAcheminement": "LES BONDONS", - "nomCommune": "LES BONDONS" + "codePostal": "52150", + "codeCommune": "52063", + "libelleAcheminement": "BOURG STE MARIE", + "nomCommune": "BOURG STE MARIE" }, { - "codePostal": "59493", - "codeCommune": "59009", - "libelleAcheminement": "VILLENEUVE D ASCQ", - "nomCommune": "VILLENEUVE D ASCQ" + "codePostal": "54540", + "codeCommune": "54377", + "libelleAcheminement": "MONTIGNY", + "nomCommune": "MONTIGNY" }, { - "codePostal": "35480", - "codeCommune": "35176", - "libelleAcheminement": "GUIPRY MESSAC", - "nomCommune": "GUIPRY MESSAC" + "codePostal": "62880", + "codeCommune": "62666", + "libelleAcheminement": "PONT A VENDIN", + "nomCommune": "PONT A VENDIN" }, { - "codePostal": "20270", - "codeCommune": "2B320", - "libelleAcheminement": "TALLONE", - "nomCommune": "TALLONE" + "codePostal": "08290", + "codeCommune": "08254", + "libelleAcheminement": "LIART", + "nomCommune": "LIART" }, { - "codePostal": "48000", - "codeCommune": "48030", - "libelleAcheminement": "BRENOUX", - "nomCommune": "BRENOUX" + "codePostal": "62850", + "codeCommune": "62478", + "libelleAcheminement": "JOURNY", + "nomCommune": "JOURNY" }, { - "codePostal": "59186", - "codeCommune": "59012", - "libelleAcheminement": "ANOR", - "nomCommune": "ANOR" + "codePostal": "52150", + "codeCommune": "52064", + "libelleAcheminement": "BOURMONT ENTRE MEUSE ET MOUZON", + "nomCommune": "BOURMONT ENTRE MEUSE ET MOUZON" }, { - "codePostal": "35480", - "codeCommune": "35176", - "libelleAcheminement": "GUIPRY MESSAC", - "nomCommune": "GUIPRY MESSAC" + "codePostal": "54870", + "codeCommune": "54378", + "libelleAcheminement": "MONTIGNY SUR CHIERS", + "nomCommune": "MONTIGNY SUR CHIERS" }, { - "codePostal": "20232", - "codeCommune": "2B333", - "libelleAcheminement": "VALLECALLE", - "nomCommune": "VALLECALLE" + "codePostal": "62116", + "codeCommune": "62672", + "libelleAcheminement": "PUISIEUX", + "nomCommune": "PUISIEUX" }, { - "codePostal": "48310", - "codeCommune": "48031", - "libelleAcheminement": "BRION", - "nomCommune": "BRION" + "codePostal": "08110", + "codeCommune": "08255", + "libelleAcheminement": "LINAY", + "nomCommune": "LINAY" }, { - "codePostal": "59380", - "codeCommune": "59016", - "libelleAcheminement": "ARMBOUTS CAPPEL", - "nomCommune": "ARMBOUTS CAPPEL" + "codePostal": "62122", + "codeCommune": "62479", + "libelleAcheminement": "LABEUVRIERE", + "nomCommune": "LABEUVRIERE" }, { - "codePostal": "35370", - "codeCommune": "35183", - "libelleAcheminement": "MONDEVERT", - "nomCommune": "MONDEVERT" + "codePostal": "52240", + "codeCommune": "52074", + "libelleAcheminement": "BREUVANNES EN BASSIGNY", + "nomCommune": "BREUVANNES EN BASSIGNY" }, { - "codePostal": "20230", - "codeCommune": "2B340", - "libelleAcheminement": "VELONE ORNETO", - "nomCommune": "VELONE ORNETO" + "codePostal": "54113", + "codeCommune": "54380", + "libelleAcheminement": "MONT LE VIGNOBLE", + "nomCommune": "MONT LE VIGNOBLE" }, { - "codePostal": "48400", - "codeCommune": "48036", - "libelleAcheminement": "CASSAGNAS", - "nomCommune": "CASSAGNAS" + "codePostal": "62500", + "codeCommune": "62674", + "libelleAcheminement": "QUELMES", + "nomCommune": "QUELMES" }, { - "codePostal": "59600", - "codeCommune": "59021", - "libelleAcheminement": "ASSEVENT", - "nomCommune": "ASSEVENT" + "codePostal": "08400", + "codeCommune": "08259", + "libelleAcheminement": "LONGWE", + "nomCommune": "LONGWE" }, { - "codePostal": "35210", - "codeCommune": "35185", - "libelleAcheminement": "MONTAUTOUR", - "nomCommune": "MONTAUTOUR" + "codePostal": "62140", + "codeCommune": "62481", + "libelleAcheminement": "LABROYE", + "nomCommune": "LABROYE" }, { - "codePostal": "20240", - "codeCommune": "2B342", - "libelleAcheminement": "VENTISERI", - "nomCommune": "VENTISERI" + "codePostal": "52240", + "codeCommune": "52074", + "libelleAcheminement": "BREUVANNES EN BASSIGNY", + "nomCommune": "BREUVANNES EN BASSIGNY" }, { - "codePostal": "48230", - "codeCommune": "48039", - "libelleAcheminement": "CHANAC", - "nomCommune": "CHANAC" + "codePostal": "54920", + "codeCommune": "54385", + "libelleAcheminement": "MORFONTAINE", + "nomCommune": "MORFONTAINE" }, { - "codePostal": "59950", - "codeCommune": "59028", - "libelleAcheminement": "AUBY", - "nomCommune": "AUBY" + "codePostal": "62380", + "codeCommune": "62675", + "libelleAcheminement": "QUERCAMPS", + "nomCommune": "QUERCAMPS" }, { - "codePostal": "35160", - "codeCommune": "35188", - "libelleAcheminement": "MONTFORT SUR MEU", - "nomCommune": "MONTFORT SUR MEU" + "codePostal": "08370", + "codeCommune": "08269", + "libelleAcheminement": "MALANDRY", + "nomCommune": "MALANDRY" }, { - "codePostal": "20242", - "codeCommune": "2B347", - "libelleAcheminement": "VEZZANI", - "nomCommune": "VEZZANI" + "codePostal": "62810", + "codeCommune": "62490", + "libelleAcheminement": "LATTRE ST QUENTIN", + "nomCommune": "LATTRE ST QUENTIN" }, { - "codePostal": "48170", - "codeCommune": "48043", - "libelleAcheminement": "CHATEAUNEUF DE RANDON", - "nomCommune": "CHATEAUNEUF DE RANDON" + "codePostal": "52700", + "codeCommune": "52075", + "libelleAcheminement": "BRIAUCOURT", + "nomCommune": "BRIAUCOURT" }, { - "codePostal": "59710", - "codeCommune": "59034", - "libelleAcheminement": "AVELIN", - "nomCommune": "AVELIN" + "codePostal": "54700", + "codeCommune": "54387", + "libelleAcheminement": "MORVILLE SUR SEILLE", + "nomCommune": "MORVILLE SUR SEILLE" }, { - "codePostal": "35210", - "codeCommune": "35192", - "libelleAcheminement": "MONTREUIL DES LANDES", - "nomCommune": "MONTREUIL DES LANDES" + "codePostal": "62120", + "codeCommune": "62676", + "libelleAcheminement": "QUERNES", + "nomCommune": "QUERNES" }, { - "codePostal": "20290", - "codeCommune": "2B355", - "libelleAcheminement": "VOLPAJOLA", - "nomCommune": "VOLPAJOLA" + "codePostal": "08460", + "codeCommune": "08272", + "libelleAcheminement": "MARANWEZ", + "nomCommune": "MARANWEZ" }, { - "codePostal": "48170", - "codeCommune": "48045", - "libelleAcheminement": "CHAUDEYRAC", - "nomCommune": "CHAUDEYRAC" + "codePostal": "62124", + "codeCommune": "62493", + "libelleAcheminement": "LEBUCQUIERE", + "nomCommune": "LEBUCQUIERE" }, { - "codePostal": "59440", - "codeCommune": "59035", - "libelleAcheminement": "AVESNELLES", - "nomCommune": "AVESNELLES" + "codePostal": "52120", + "codeCommune": "52076", + "libelleAcheminement": "BRICON", + "nomCommune": "BRICON" }, { - "codePostal": "35470", - "codeCommune": "35202", - "libelleAcheminement": "LA NOE BLANCHE", - "nomCommune": "LA NOE BLANCHE" + "codePostal": "54800", + "codeCommune": "54389", + "libelleAcheminement": "MOUAVILLE", + "nomCommune": "MOUAVILLE" }, { - "codePostal": "20243", - "codeCommune": "2B365", - "libelleAcheminement": "SAN GAVINO DI FIUMORBO", - "nomCommune": "SAN GAVINO DI FIUMORBO" + "codePostal": "62173", + "codeCommune": "62689", + "libelleAcheminement": "RANSART", + "nomCommune": "RANSART" }, { - "codePostal": "48400", - "codeCommune": "48050", - "libelleAcheminement": "BEDOUES COCURES", - "nomCommune": "BEDOUES COCURES" + "codePostal": "08110", + "codeCommune": "08281", + "libelleAcheminement": "MATTON ET CLEMENCY", + "nomCommune": "MATTON ET CLEMENCY" }, { - "codePostal": "59270", - "codeCommune": "59043", - "libelleAcheminement": "BAILLEUL", - "nomCommune": "BAILLEUL" + "codePostal": "62124", + "codeCommune": "62494", + "libelleAcheminement": "LECHELLE", + "nomCommune": "LECHELLE" }, { - "codePostal": "35137", - "codeCommune": "35203", - "libelleAcheminement": "LA NOUAYE", - "nomCommune": "LA NOUAYE" + "codePostal": "52130", + "codeCommune": "52079", + "libelleAcheminement": "BROUSSEVAL", + "nomCommune": "BROUSSEVAL" }, { - "codePostal": "30350", - "codeCommune": "30002", - "libelleAcheminement": "AIGREMONT", - "nomCommune": "AIGREMONT" + "codePostal": "54700", + "codeCommune": "54390", + "libelleAcheminement": "MOUSSON", + "nomCommune": "MOUSSON" }, { - "codePostal": "48400", - "codeCommune": "48050", - "libelleAcheminement": "BEDOUES COCURES", - "nomCommune": "BEDOUES COCURES" + "codePostal": "62150", + "codeCommune": "62693", + "libelleAcheminement": "REBREUVE RANCHICOURT", + "nomCommune": "REBREUVE RANCHICOURT" }, { - "codePostal": "59266", - "codeCommune": "59047", - "libelleAcheminement": "BANTEUX", - "nomCommune": "BANTEUX" + "codePostal": "08370", + "codeCommune": "08293", + "libelleAcheminement": "MOIRY", + "nomCommune": "MOIRY" }, { - "codePostal": "35560", - "codeCommune": "35205", - "libelleAcheminement": "NOYAL SOUS BAZOUGES", - "nomCommune": "NOYAL SOUS BAZOUGES" + "codePostal": "62790", + "codeCommune": "62497", + "libelleAcheminement": "LEFOREST", + "nomCommune": "LEFOREST" }, { - "codePostal": "30770", - "codeCommune": "30017", - "libelleAcheminement": "ARRIGAS", - "nomCommune": "ARRIGAS" + "codePostal": "52240", + "codeCommune": "52085", + "libelleAcheminement": "BUXIERES LES CLEFMONT", + "nomCommune": "BUXIERES LES CLEFMONT" }, { - "codePostal": "48400", - "codeCommune": "48061", - "libelleAcheminement": "FLORAC TROIS RIVIERES", - "nomCommune": "FLORAC TROIS RIVIERES" + "codePostal": "54660", + "codeCommune": "54391", + "libelleAcheminement": "MOUTIERS", + "nomCommune": "MOUTIERS" }, { - "codePostal": "59221", - "codeCommune": "59052", - "libelleAcheminement": "BAUVIN", - "nomCommune": "BAUVIN" + "codePostal": "62150", + "codeCommune": "62693", + "libelleAcheminement": "REBREUVE RANCHICOURT", + "nomCommune": "REBREUVE RANCHICOURT" }, { - "codePostal": "35230", - "codeCommune": "35206", - "libelleAcheminement": "NOYAL CHATILLON SUR SEICHE", - "nomCommune": "NOYAL CHATILLON SUR SEICHE" + "codePostal": "08430", + "codeCommune": "08295", + "libelleAcheminement": "MONDIGNY", + "nomCommune": "MONDIGNY" }, { - "codePostal": "30450", - "codeCommune": "30022", - "libelleAcheminement": "AUJAC", - "nomCommune": "AUJAC" + "codePostal": "62250", + "codeCommune": "62505", + "libelleAcheminement": "LEULINGHEN BERNES", + "nomCommune": "LEULINGHEN BERNES" }, { - "codePostal": "48150", - "codeCommune": "48074", - "libelleAcheminement": "HURES LA PARADE", - "nomCommune": "HURES LA PARADE" + "codePostal": "52160", + "codeCommune": "52094", + "libelleAcheminement": "VALS DES TILLES", + "nomCommune": "VALS DES TILLES" }, { - "codePostal": "59670", - "codeCommune": "59054", - "libelleAcheminement": "BAVINCHOVE", - "nomCommune": "BAVINCHOVE" + "codePostal": "54540", + "codeCommune": "54398", + "libelleAcheminement": "NEUVILLER LES BADONVILLER", + "nomCommune": "NEUVILLER LES BADONVILLER" }, { - "codePostal": "35230", - "codeCommune": "35208", - "libelleAcheminement": "ORGERES", - "nomCommune": "ORGERES" + "codePostal": "62380", + "codeCommune": "62702", + "libelleAcheminement": "REMILLY WIRQUIN", + "nomCommune": "REMILLY WIRQUIN" }, { - "codePostal": "30770", - "codeCommune": "30025", - "libelleAcheminement": "AUMESSAS", - "nomCommune": "AUMESSAS" + "codePostal": "08250", + "codeCommune": "08296", + "libelleAcheminement": "MONTCHEUTIN", + "nomCommune": "MONTCHEUTIN" }, { - "codePostal": "48300", - "codeCommune": "48080", - "libelleAcheminement": "LANGOGNE", - "nomCommune": "LANGOGNE" + "codePostal": "62850", + "codeCommune": "62506", + "libelleAcheminement": "LICQUES", + "nomCommune": "LICQUES" }, { - "codePostal": "59330", - "codeCommune": "59058", - "libelleAcheminement": "BEAUFORT", - "nomCommune": "BEAUFORT" + "codePostal": "52700", + "codeCommune": "52097", + "libelleAcheminement": "CHAMBRONCOURT", + "nomCommune": "CHAMBRONCOURT" }, { - "codePostal": "35320", - "codeCommune": "35212", - "libelleAcheminement": "PANCE", - "nomCommune": "PANCE" + "codePostal": "54150", + "codeCommune": "54402", + "libelleAcheminement": "NORROY LE SEC", + "nomCommune": "NORROY LE SEC" }, { - "codePostal": "30200", - "codeCommune": "30028", - "libelleAcheminement": "BAGNOLS SUR CEZE", - "nomCommune": "BAGNOLS SUR CEZE" + "codePostal": "62560", + "codeCommune": "62704", + "libelleAcheminement": "RENTY", + "nomCommune": "RENTY" }, { - "codePostal": "48000", - "codeCommune": "48081", - "libelleAcheminement": "LANUEJOLS", - "nomCommune": "LANUEJOLS" + "codePostal": "08800", + "codeCommune": "08302", + "libelleAcheminement": "MONTHERME", + "nomCommune": "MONTHERME" }, { - "codePostal": "59570", - "codeCommune": "59070", - "libelleAcheminement": "BERMERIES", - "nomCommune": "BERMERIES" + "codePostal": "62810", + "codeCommune": "62507", + "libelleAcheminement": "LIENCOURT", + "nomCommune": "LIENCOURT" }, { - "codePostal": "35150", - "codeCommune": "35220", - "libelleAcheminement": "PIRE CHANCE", - "nomCommune": "PIRE CHANCE" + "codePostal": "52150", + "codeCommune": "52101", + "libelleAcheminement": "CHAMPIGNEULLES EN BASSIGNY", + "nomCommune": "CHAMPIGNEULLES EN BASSIGNY" }, { - "codePostal": "30700", - "codeCommune": "30030", - "libelleAcheminement": "BARON", - "nomCommune": "BARON" + "codePostal": "54890", + "codeCommune": "54410", + "libelleAcheminement": "ONVILLE", + "nomCommune": "ONVILLE" }, { - "codePostal": "48100", - "codeCommune": "48087", - "libelleAcheminement": "PRINSUEJOLS MALBOUZON", - "nomCommune": "PRINSUEJOLS MALBOUZON" + "codePostal": "62450", + "codeCommune": "62708", + "libelleAcheminement": "RIENCOURT LES BAPAUME", + "nomCommune": "RIENCOURT LES BAPAUME" }, { - "codePostal": "59380", - "codeCommune": "59083", - "libelleAcheminement": "BISSEZEELE", - "nomCommune": "BISSEZEELE" + "codePostal": "08170", + "codeCommune": "08304", + "libelleAcheminement": "MONTIGNY SUR MEUSE", + "nomCommune": "MONTIGNY SUR MEUSE" }, { - "codePostal": "35610", - "codeCommune": "35222", - "libelleAcheminement": "PLEINE FOUGERES", - "nomCommune": "PLEINE FOUGERES" + "codePostal": "62219", + "codeCommune": "62525", + "libelleAcheminement": "LONGUENESSE", + "nomCommune": "LONGUENESSE" }, { - "codePostal": "30330", - "codeCommune": "30031", - "libelleAcheminement": "LA BASTIDE D ENGRAS", - "nomCommune": "LA BASTIDE D ENGRAS" + "codePostal": "52400", + "codeCommune": "52103", + "libelleAcheminement": "CHAMPIGNY SOUS VARENNES", + "nomCommune": "CHAMPIGNY SOUS VARENNES" }, { - "codePostal": "48500", - "codeCommune": "48094", - "libelleAcheminement": "MASSEGROS CAUSSES GORGES", - "nomCommune": "MASSEGROS CAUSSES GORGES" + "codePostal": "54530", + "codeCommune": "54415", + "libelleAcheminement": "PAGNY SUR MOSELLE", + "nomCommune": "PAGNY SUR MOSELLE" }, { - "codePostal": "59268", - "codeCommune": "59085", - "libelleAcheminement": "BLECOURT", - "nomCommune": "BLECOURT" + "codePostal": "62610", + "codeCommune": "62716", + "libelleAcheminement": "RODELINGHEM", + "nomCommune": "RODELINGHEM" }, { - "codePostal": "35320", - "codeCommune": "35231", - "libelleAcheminement": "POLIGNE", - "nomCommune": "POLIGNE" + "codePostal": "08310", + "codeCommune": "08309", + "libelleAcheminement": "MONT ST REMY", + "nomCommune": "MONT ST REMY" }, { - "codePostal": "30120", - "codeCommune": "30038", - "libelleAcheminement": "BEZ ET ESPARON", - "nomCommune": "BEZ ET ESPARON" + "codePostal": "62810", + "codeCommune": "62544", + "libelleAcheminement": "MANIN", + "nomCommune": "MANIN" }, { - "codePostal": "48500", - "codeCommune": "48094", - "libelleAcheminement": "MASSEGROS CAUSSES GORGES", - "nomCommune": "MASSEGROS CAUSSES GORGES" + "codePostal": "52360", + "codeCommune": "52105", + "libelleAcheminement": "CHANGEY", + "nomCommune": "CHANGEY" }, { - "codePostal": "59330", - "codeCommune": "59103", - "libelleAcheminement": "BOUSSIERES SUR SAMBRE", - "nomCommune": "BOUSSIERES SUR SAMBRE" + "codePostal": "54330", + "codeCommune": "54417", + "libelleAcheminement": "PAREY ST CESAIRE", + "nomCommune": "PAREY ST CESAIRE" }, { - "codePostal": "35290", - "codeCommune": "35234", - "libelleAcheminement": "QUEDILLAC", - "nomCommune": "QUEDILLAC" + "codePostal": "62310", + "codeCommune": "62726", + "libelleAcheminement": "RUISSEAUVILLE", + "nomCommune": "RUISSEAUVILLE" }, { - "codePostal": "30770", - "codeCommune": "30040", - "libelleAcheminement": "BLANDAS", - "nomCommune": "BLANDAS" + "codePostal": "08210", + "codeCommune": "08311", + "libelleAcheminement": "MOUZON", + "nomCommune": "MOUZON" }, { - "codePostal": "48500", - "codeCommune": "48094", - "libelleAcheminement": "MASSEGROS CAUSSES GORGES", - "nomCommune": "MASSEGROS CAUSSES GORGES" + "codePostal": "62120", + "codeCommune": "62564", + "libelleAcheminement": "MAZINGHEM", + "nomCommune": "MAZINGHEM" }, { - "codePostal": "59830", - "codeCommune": "59106", - "libelleAcheminement": "BOUVINES", - "nomCommune": "BOUVINES" + "codePostal": "52260", + "codeCommune": "52106", + "libelleAcheminement": "CHANOY", + "nomCommune": "CHANOY" }, { - "codePostal": "35780", - "codeCommune": "35241", - "libelleAcheminement": "LA RICHARDAIS", - "nomCommune": "LA RICHARDAIS" + "codePostal": "54370", + "codeCommune": "54418", + "libelleAcheminement": "PARROY", + "nomCommune": "PARROY" }, { - "codePostal": "30260", - "codeCommune": "30050", - "libelleAcheminement": "BRAGASSARGUES", - "nomCommune": "BRAGASSARGUES" + "codePostal": "62114", + "codeCommune": "62737", + "libelleAcheminement": "SAINS EN GOHELLE", + "nomCommune": "SAINS EN GOHELLE" }, { - "codePostal": "48100", - "codeCommune": "48099", - "libelleAcheminement": "BOURGS SUR COLAGNE", - "nomCommune": "BOURGS SUR COLAGNE" + "codePostal": "08150", + "codeCommune": "08312", + "libelleAcheminement": "MURTIN ET BOGNY", + "nomCommune": "MURTIN ET BOGNY" }, { - "codePostal": "59470", - "codeCommune": "59111", - "libelleAcheminement": "BROXEELE", - "nomCommune": "BROXEELE" + "codePostal": "62240", + "codeCommune": "62566", + "libelleAcheminement": "MENNEVILLE", + "nomCommune": "MENNEVILLE" }, { - "codePostal": "35490", - "codeCommune": "35244", - "libelleAcheminement": "ROMAZY", - "nomCommune": "ROMAZY" + "codePostal": "52700", + "codeCommune": "52107", + "libelleAcheminement": "CHANTRAINES", + "nomCommune": "CHANTRAINES" }, { - "codePostal": "30260", - "codeCommune": "30054", - "libelleAcheminement": "BROUZET LES QUISSAC", - "nomCommune": "BROUZET LES QUISSAC" + "codePostal": "54490", + "codeCommune": "54425", + "libelleAcheminement": "PIENNES", + "nomCommune": "PIENNES" }, { - "codePostal": "48100", - "codeCommune": "48107", - "libelleAcheminement": "PALHERS", - "nomCommune": "PALHERS" + "codePostal": "62990", + "codeCommune": "62745", + "libelleAcheminement": "ST DENOEUX", + "nomCommune": "ST DENOEUX" }, { - "codePostal": "59137", - "codeCommune": "59118", - "libelleAcheminement": "BUSIGNY", - "nomCommune": "BUSIGNY" + "codePostal": "08300", + "codeCommune": "08314", + "libelleAcheminement": "NEUFLIZE", + "nomCommune": "NEUFLIZE" }, { - "codePostal": "35610", - "codeCommune": "35247", - "libelleAcheminement": "ROZ SUR COUESNON", - "nomCommune": "ROZ SUR COUESNON" + "codePostal": "62124", + "codeCommune": "62572", + "libelleAcheminement": "METZ EN COUTURE", + "nomCommune": "METZ EN COUTURE" }, { - "codePostal": "30260", - "codeCommune": "30069", - "libelleAcheminement": "CARNAS", - "nomCommune": "CARNAS" + "codePostal": "52110", + "codeCommune": "52109", + "libelleAcheminement": "CHARMES EN L ANGLE", + "nomCommune": "CHARMES EN L ANGLE" }, { - "codePostal": "48600", - "codeCommune": "48108", - "libelleAcheminement": "LA PANOUSE", - "nomCommune": "LA PANOUSE" + "codePostal": "54116", + "codeCommune": "54434", + "libelleAcheminement": "PRAYE", + "nomCommune": "PRAYE" }, { - "codePostal": "59190", - "codeCommune": "59120", - "libelleAcheminement": "CAESTRE", - "nomCommune": "CAESTRE" + "codePostal": "62360", + "codeCommune": "62746", + "libelleAcheminement": "PONT DE BRIQUES ST ETIENNE", + "nomCommune": "ST ETIENNE AU MONT" }, { - "codePostal": "35610", - "codeCommune": "35248", - "libelleAcheminement": "SAINS", - "nomCommune": "SAINS" + "codePostal": "08700", + "codeCommune": "08316", + "libelleAcheminement": "NEUFMANIL", + "nomCommune": "NEUFMANIL" }, { - "codePostal": "30750", - "codeCommune": "30074", - "libelleAcheminement": "CAUSSE BEGON", - "nomCommune": "CAUSSE BEGON" + "codePostal": "62410", + "codeCommune": "62573", + "libelleAcheminement": "MEURCHIN", + "nomCommune": "MEURCHIN" }, { - "codePostal": "48220", - "codeCommune": "48116", - "libelleAcheminement": "PONT DE MONTVERT SUD MONT LOZERE", - "nomCommune": "PONT DE MONTVERT SUD MONT LOZERE" + "codePostal": "52120", + "codeCommune": "52114", + "libelleAcheminement": "CHATEAUVILLAIN", + "nomCommune": "CHATEAUVILLAIN" }, { - "codePostal": "59161", - "codeCommune": "59121", - "libelleAcheminement": "CAGNONCLES", - "nomCommune": "CAGNONCLES" + "codePostal": "54530", + "codeCommune": "54435", + "libelleAcheminement": "PRENY", + "nomCommune": "PRENY" }, { - "codePostal": "35230", - "codeCommune": "35250", - "libelleAcheminement": "ST ARMEL", - "nomCommune": "ST ARMEL" + "codePostal": "62650", + "codeCommune": "62762", + "libelleAcheminement": "ST MICHEL SOUS BOIS", + "nomCommune": "ST MICHEL SOUS BOIS" }, { - "codePostal": "30190", - "codeCommune": "30086", - "libelleAcheminement": "COLLORGUES", - "nomCommune": "COLLORGUES" + "codePostal": "08450", + "codeCommune": "08317", + "libelleAcheminement": "LA NEUVILLE A MAIRE", + "nomCommune": "LA NEUVILLE A MAIRE" }, { - "codePostal": "48220", - "codeCommune": "48116", - "libelleAcheminement": "PONT DE MONTVERT SUD MONT LOZERE", - "nomCommune": "PONT DE MONTVERT SUD MONT LOZERE" + "codePostal": "62690", + "codeCommune": "62574", + "libelleAcheminement": "MINGOVAL", + "nomCommune": "MINGOVAL" }, { - "codePostal": "59400", - "codeCommune": "59122", - "libelleAcheminement": "CAMBRAI", - "nomCommune": "CAMBRAI" + "codePostal": "52360", + "codeCommune": "52116", + "libelleAcheminement": "CHATENAY VAUDIN", + "nomCommune": "CHATENAY VAUDIN" }, { - "codePostal": "35460", - "codeCommune": "35257", - "libelleAcheminement": "MAEN ROCH", - "nomCommune": "MAEN ROCH" + "codePostal": "54800", + "codeCommune": "54440", + "libelleAcheminement": "PUXE", + "nomCommune": "PUXE" }, { - "codePostal": "30630", - "codeCommune": "30096", - "libelleAcheminement": "CORNILLON", - "nomCommune": "CORNILLON" + "codePostal": "62130", + "codeCommune": "62763", + "libelleAcheminement": "ST MICHEL SUR TERNOISE", + "nomCommune": "ST MICHEL SUR TERNOISE" }, { - "codePostal": "48000", - "codeCommune": "48127", - "libelleAcheminement": "MONTS DE RANDON", - "nomCommune": "MONTS DE RANDON" + "codePostal": "08380", + "codeCommune": "08318", + "libelleAcheminement": "LA NEUVILLE AUX JOUTES", + "nomCommune": "LA NEUVILLE AUX JOUTES" }, { - "codePostal": "59169", - "codeCommune": "59126", - "libelleAcheminement": "CANTIN", - "nomCommune": "CANTIN" + "codePostal": "62134", + "codeCommune": "62581", + "libelleAcheminement": "MONCHY CAYEUX", + "nomCommune": "MONCHY CAYEUX" }, { - "codePostal": "35140", - "codeCommune": "35261", - "libelleAcheminement": "ST CHRISTOPHE DE VALAINS", - "nomCommune": "ST CHRISTOPHE DE VALAINS" + "codePostal": "52300", + "codeCommune": "52118", + "libelleAcheminement": "CHATONRUPT SOMMERMONT", + "nomCommune": "CHATONRUPT SOMMERMONT" }, { - "codePostal": "30260", - "codeCommune": "30098", - "libelleAcheminement": "CRESPIAN", - "nomCommune": "CRESPIAN" + "codePostal": "54610", + "codeCommune": "54444", + "libelleAcheminement": "RAUCOURT", + "nomCommune": "RAUCOURT" }, { - "codePostal": "48210", - "codeCommune": "48141", - "libelleAcheminement": "MAS ST CHELY", - "nomCommune": "MAS ST CHELY" + "codePostal": "62223", + "codeCommune": "62764", + "libelleAcheminement": "ST NICOLAS", + "nomCommune": "ST NICOLAS" }, { - "codePostal": "59160", - "codeCommune": "59128", - "libelleAcheminement": "CAPINGHEM", - "nomCommune": "CAPINGHEM" + "codePostal": "08240", + "codeCommune": "08326", + "libelleAcheminement": "NOUART", + "nomCommune": "NOUART" }, { - "codePostal": "35134", - "codeCommune": "35262", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "62124", + "codeCommune": "62591", + "libelleAcheminement": "MORCHIES", + "nomCommune": "MORCHIES" }, { - "codePostal": "30360", - "codeCommune": "30100", - "libelleAcheminement": "CRUVIERS LASCOURS", - "nomCommune": "CRUVIERS LASCOURS" + "codePostal": "52300", + "codeCommune": "52118", + "libelleAcheminement": "CHATONRUPT SOMMERMONT", + "nomCommune": "CHATONRUPT SOMMERMONT" }, { - "codePostal": "48330", - "codeCommune": "48148", - "libelleAcheminement": "ST ETIENNE VALLEE FRANCAISE", - "nomCommune": "ST ETIENNE VALLEE FRANCAISE" + "codePostal": "54370", + "codeCommune": "54446", + "libelleAcheminement": "RECHICOURT LA PETITE", + "nomCommune": "RECHICOURT LA PETITE" }, { - "codePostal": "59244", - "codeCommune": "59134", - "libelleAcheminement": "CARTIGNIES", - "nomCommune": "CARTIGNIES" + "codePostal": "62231", + "codeCommune": "62774", + "libelleAcheminement": "SANGATTE", + "nomCommune": "SANGATTE" }, { - "codePostal": "35190", - "codeCommune": "35265", - "libelleAcheminement": "ST DOMINEUC", - "nomCommune": "ST DOMINEUC" + "codePostal": "08700", + "codeCommune": "08328", + "libelleAcheminement": "NOUZONVILLE", + "nomCommune": "NOUZONVILLE" }, { - "codePostal": "30390", - "codeCommune": "30103", - "libelleAcheminement": "DOMAZAN", - "nomCommune": "DOMAZAN" + "codePostal": "62910", + "codeCommune": "62595", + "libelleAcheminement": "MOULLE", + "nomCommune": "MOULLE" }, { - "codePostal": "48400", - "codeCommune": "48166", - "libelleAcheminement": "CANS ET CEVENNES", - "nomCommune": "CANS ET CEVENNES" + "codePostal": "52000", + "codeCommune": "52125", + "libelleAcheminement": "CHAMARANDES CHOIGNES", + "nomCommune": "CHAMARANDES CHOIGNES" }, { - "codePostal": "59930", - "codeCommune": "59143", - "libelleAcheminement": "LA CHAPELLE D ARMENTIERES", - "nomCommune": "LA CHAPELLE D ARMENTIERES" + "codePostal": "54430", + "codeCommune": "54451", + "libelleAcheminement": "REHON", + "nomCommune": "REHON" }, { - "codePostal": "35140", - "codeCommune": "35282", - "libelleAcheminement": "RIVES DU COUESNON", - "nomCommune": "RIVES DU COUESNON" + "codePostal": "62450", + "codeCommune": "62777", + "libelleAcheminement": "LE SARS", + "nomCommune": "LE SARS" }, { - "codePostal": "30250", - "codeCommune": "30114", - "libelleAcheminement": "FONTANES", - "nomCommune": "FONTANES" + "codePostal": "08270", + "codeCommune": "08329", + "libelleAcheminement": "NOVION PORCIEN", + "nomCommune": "NOVION PORCIEN" }, { - "codePostal": "48310", - "codeCommune": "48167", - "libelleAcheminement": "ST LAURENT DE VEYRES", - "nomCommune": "ST LAURENT DE VEYRES" + "codePostal": "62142", + "codeCommune": "62599", + "libelleAcheminement": "NABRINGHEN", + "nomCommune": "NABRINGHEN" }, { - "codePostal": "59680", - "codeCommune": "59151", - "libelleAcheminement": "COLLERET", - "nomCommune": "COLLERET" + "codePostal": "52700", + "codeCommune": "52133", + "libelleAcheminement": "CLINCHAMP", + "nomCommune": "CLINCHAMP" }, { - "codePostal": "35140", - "codeCommune": "35282", - "libelleAcheminement": "RIVES DU COUESNON", - "nomCommune": "RIVES DU COUESNON" + "codePostal": "54830", + "codeCommune": "54455", + "libelleAcheminement": "REMENOVILLE", + "nomCommune": "REMENOVILLE" }, { - "codePostal": "30580", - "codeCommune": "30115", - "libelleAcheminement": "FONTARECHES", - "nomCommune": "FONTARECHES" + "codePostal": "62860", + "codeCommune": "62781", + "libelleAcheminement": "SAUCHY LESTREE", + "nomCommune": "SAUCHY LESTREE" }, { - "codePostal": "48100", - "codeCommune": "48168", - "libelleAcheminement": "ST LEGER DE PEYRE", - "nomCommune": "ST LEGER DE PEYRE" + "codePostal": "08240", + "codeCommune": "08332", + "libelleAcheminement": "OCHES", + "nomCommune": "OCHES" }, { - "codePostal": "59163", - "codeCommune": "59153", - "libelleAcheminement": "CONDE SUR L ESCAUT", - "nomCommune": "CONDE SUR L ESCAUT" + "codePostal": "62550", + "codeCommune": "62600", + "libelleAcheminement": "NEDON", + "nomCommune": "NEDON" }, { - "codePostal": "35400", - "codeCommune": "35288", - "libelleAcheminement": "ST MALO", - "nomCommune": "ST MALO" + "codePostal": "52400", + "codeCommune": "52135", + "libelleAcheminement": "COIFFY LE BAS", + "nomCommune": "COIFFY LE BAS" }, { - "codePostal": "30210", - "codeCommune": "30116", - "libelleAcheminement": "FOURNES", - "nomCommune": "FOURNES" + "codePostal": "54380", + "codeCommune": "54460", + "libelleAcheminement": "ROGEVILLE", + "nomCommune": "ROGEVILLE" }, { - "codePostal": "48310", - "codeCommune": "48190", - "libelleAcheminement": "TERMES", - "nomCommune": "TERMES" + "codePostal": "62158", + "codeCommune": "62784", + "libelleAcheminement": "SAULTY", + "nomCommune": "SAULTY" }, { - "codePostal": "59258", - "codeCommune": "59161", - "libelleAcheminement": "CREVECOEUR SUR L ESCAUT", - "nomCommune": "CREVECOEUR SUR L ESCAUT" + "codePostal": "08110", + "codeCommune": "08336", + "libelleAcheminement": "OSNES", + "nomCommune": "OSNES" }, { - "codePostal": "35460", - "codeCommune": "35292", - "libelleAcheminement": "ST MARC LE BLANC", - "nomCommune": "ST MARC LE BLANC" + "codePostal": "62128", + "codeCommune": "62619", + "libelleAcheminement": "NOREUIL", + "nomCommune": "NOREUIL" }, { - "codePostal": "30160", - "codeCommune": "30120", - "libelleAcheminement": "GAGNIERES", - "nomCommune": "GAGNIERES" + "codePostal": "52400", + "codeCommune": "52136", + "libelleAcheminement": "COIFFY LE HAUT", + "nomCommune": "COIFFY LE HAUT" }, { - "codePostal": "48500", - "codeCommune": "48191", - "libelleAcheminement": "LA TIEULE", - "nomCommune": "LA TIEULE" + "codePostal": "54290", + "codeCommune": "54467", + "libelleAcheminement": "ROZELIEURES", + "nomCommune": "ROZELIEURES" }, { - "codePostal": "59187", - "codeCommune": "59170", - "libelleAcheminement": "DECHY", - "nomCommune": "DECHY" + "codePostal": "62550", + "codeCommune": "62805", + "libelleAcheminement": "TANGRY", + "nomCommune": "TANGRY" }, { - "codePostal": "35250", - "codeCommune": "35296", - "libelleAcheminement": "ST MEDARD SUR ILLE", - "nomCommune": "ST MEDARD SUR ILLE" + "codePostal": "08140", + "codeCommune": "08342", + "libelleAcheminement": "POURU AUX BOIS", + "nomCommune": "POURU AUX BOIS" }, { - "codePostal": "30760", - "codeCommune": "30124", - "libelleAcheminement": "LE GARN", - "nomCommune": "LE GARN" + "codePostal": "62370", + "codeCommune": "62621", + "libelleAcheminement": "NORTKERQUE", + "nomCommune": "NORTKERQUE" }, { - "codePostal": "48340", - "codeCommune": "48192", - "libelleAcheminement": "TRELANS", - "nomCommune": "TRELANS" + "codePostal": "52160", + "codeCommune": "52138", + "libelleAcheminement": "COLMIER LE HAUT", + "nomCommune": "COLMIER LE HAUT" }, { - "codePostal": "59890", - "codeCommune": "59173", - "libelleAcheminement": "DEULEMONT", - "nomCommune": "DEULEMONT" + "codePostal": "54930", + "codeCommune": "54473", + "libelleAcheminement": "ST FIRMIN", + "nomCommune": "ST FIRMIN" }, { - "codePostal": "35290", - "codeCommune": "35302", - "libelleAcheminement": "ST ONEN LA CHAPELLE", - "nomCommune": "ST ONEN LA CHAPELLE" + "codePostal": "62217", + "codeCommune": "62817", + "libelleAcheminement": "TILLOY LES MOFFLAINES", + "nomCommune": "TILLOY LES MOFFLAINES" }, { - "codePostal": "30128", - "codeCommune": "30125", - "libelleAcheminement": "GARONS", - "nomCommune": "GARONS" + "codePostal": "08290", + "codeCommune": "08344", + "libelleAcheminement": "PREZ", + "nomCommune": "PREZ" }, { - "codePostal": "48400", - "codeCommune": "48193", - "libelleAcheminement": "VEBRON", - "nomCommune": "VEBRON" + "codePostal": "62980", + "codeCommune": "62626", + "libelleAcheminement": "NOYELLES LES VERMELLES", + "nomCommune": "NOYELLES LES VERMELLES" }, { - "codePostal": "59240", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "35140", - "codeCommune": "35304", - "libelleAcheminement": "ST OUEN DES ALLEUX", - "nomCommune": "ST OUEN DES ALLEUX" + "codePostal": "54700", + "codeCommune": "54474", + "libelleAcheminement": "STE GENEVIEVE", + "nomCommune": "STE GENEVIEVE" }, { - "codePostal": "30190", - "codeCommune": "30126", - "libelleAcheminement": "GARRIGUES STE EULALIE", - "nomCommune": "GARRIGUES STE EULALIE" + "codePostal": "62500", + "codeCommune": "62819", + "libelleAcheminement": "TILQUES", + "nomCommune": "TILQUES" }, { - "codePostal": "48800", - "codeCommune": "48198", - "libelleAcheminement": "VILLEFORT", - "nomCommune": "VILLEFORT" + "codePostal": "08270", + "codeCommune": "08348", + "libelleAcheminement": "PUISEUX", + "nomCommune": "PUISEUX" }, { - "codePostal": "59279", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "62221", + "codeCommune": "62628", + "libelleAcheminement": "NOYELLES SOUS LENS", + "nomCommune": "NOYELLES SOUS LENS" }, { - "codePostal": "35430", - "codeCommune": "35306", - "libelleAcheminement": "ST PERE MARC EN POULET", - "nomCommune": "ST PERE MARC EN POULET" + "codePostal": "52330", + "codeCommune": "52140", + "libelleAcheminement": "COLOMBEY LES DEUX EGLISES", + "nomCommune": "COLOMBEY LES DEUX EGLISES" }, { - "codePostal": "30450", - "codeCommune": "30130", - "libelleAcheminement": "GENOLHAC", - "nomCommune": "GENOLHAC" + "codePostal": "54260", + "codeCommune": "54476", + "libelleAcheminement": "ST JEAN LES LONGUYON", + "nomCommune": "ST JEAN LES LONGUYON" }, { - "codePostal": "49260", - "codeCommune": "49009", - "libelleAcheminement": "ANTOIGNE", - "nomCommune": "ANTOIGNE" + "codePostal": "62520", + "codeCommune": "62826", + "libelleAcheminement": "LE TOUQUET PARIS PLAGE", + "nomCommune": "LE TOUQUET PARIS PLAGE" }, { - "codePostal": "59430", - "codeCommune": "59183", - "libelleAcheminement": "DUNKERQUE", - "nomCommune": "DUNKERQUE" + "codePostal": "08110", + "codeCommune": "08349", + "libelleAcheminement": "PURE", + "nomCommune": "PURE" }, { - "codePostal": "35190", - "codeCommune": "35307", - "libelleAcheminement": "ST PERN", - "nomCommune": "ST PERN" + "codePostal": "62123", + "codeCommune": "62629", + "libelleAcheminement": "NOYELLETTE", + "nomCommune": "NOYELLETTE" }, { - "codePostal": "30450", - "codeCommune": "30130", - "libelleAcheminement": "GENOLHAC", - "nomCommune": "GENOLHAC" + "codePostal": "52700", + "codeCommune": "52142", + "libelleAcheminement": "CONSIGNY", + "nomCommune": "CONSIGNY" }, { - "codePostal": "49540", - "codeCommune": "49012", - "libelleAcheminement": "AUBIGNE SUR LAYON", - "nomCommune": "AUBIGNE SUR LAYON" + "codePostal": "54290", + "codeCommune": "54479", + "libelleAcheminement": "ST MARD", + "nomCommune": "ST MARD" }, { - "codePostal": "59320", - "codeCommune": "59195", - "libelleAcheminement": "ENGLOS", - "nomCommune": "ENGLOS" + "codePostal": "62270", + "codeCommune": "62833", + "libelleAcheminement": "VACQUERIE LE BOUCQ", + "nomCommune": "VACQUERIE LE BOUCQ" }, { - "codePostal": "35720", - "codeCommune": "35308", - "libelleAcheminement": "MESNIL ROC H", - "nomCommune": "MESNIL ROC H" + "codePostal": "08400", + "codeCommune": "08351", + "libelleAcheminement": "QUILLY", + "nomCommune": "QUILLY" }, { - "codePostal": "30240", - "codeCommune": "30133", - "libelleAcheminement": "LE GRAU DU ROI", - "nomCommune": "LE GRAU DU ROI" + "codePostal": "62920", + "codeCommune": "62632", + "libelleAcheminement": "OBLINGHEM", + "nomCommune": "OBLINGHEM" }, { - "codePostal": "49430", - "codeCommune": "49017", - "libelleAcheminement": "BARACE", - "nomCommune": "BARACE" + "codePostal": "52500", + "codeCommune": "52145", + "libelleAcheminement": "COUBLANC", + "nomCommune": "COUBLANC" }, { - "codePostal": "59213", - "codeCommune": "59204", - "libelleAcheminement": "ESCARMAIN", - "nomCommune": "ESCARMAIN" + "codePostal": "54540", + "codeCommune": "54484", + "libelleAcheminement": "STE POLE", + "nomCommune": "STE POLE" }, { - "codePostal": "35133", - "codeCommune": "35324", - "libelleAcheminement": "LA SELLE EN LUITRE", - "nomCommune": "LA SELLE EN LUITRE" + "codePostal": "62550", + "codeCommune": "62835", + "libelleAcheminement": "VALHUON", + "nomCommune": "VALHUON" }, { - "codePostal": "30110", - "codeCommune": "30137", - "libelleAcheminement": "LAMELOUZE", - "nomCommune": "LAMELOUZE" + "codePostal": "08600", + "codeCommune": "08353", + "libelleAcheminement": "RANCENNES", + "nomCommune": "RANCENNES" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "62130", + "codeCommune": "62633", + "libelleAcheminement": "OEUF EN TERNOIS", + "nomCommune": "OEUF EN TERNOIS" }, { - "codePostal": "59278", - "codeCommune": "59207", - "libelleAcheminement": "ESCAUTPONT", - "nomCommune": "ESCAUTPONT" + "codePostal": "52110", + "codeCommune": "52149", + "libelleAcheminement": "COURCELLES SUR BLAISE", + "nomCommune": "COURCELLES SUR BLAISE" }, { - "codePostal": "35240", - "codeCommune": "35333", - "libelleAcheminement": "LE THEIL DE BRETAGNE", - "nomCommune": "LE THEIL DE BRETAGNE" + "codePostal": "54620", + "codeCommune": "54489", + "libelleAcheminement": "ST SUPPLET", + "nomCommune": "ST SUPPLET" }, { - "codePostal": "30460", - "codeCommune": "30140", - "libelleAcheminement": "LASALLE", - "nomCommune": "LASALLE" + "codePostal": "62131", + "codeCommune": "62836", + "libelleAcheminement": "VAUDRICOURT", + "nomCommune": "VAUDRICOURT" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "08220", + "codeCommune": "08356", + "libelleAcheminement": "REMAUCOURT", + "nomCommune": "REMAUCOURT" }, { - "codePostal": "59127", - "codeCommune": "59209", - "libelleAcheminement": "ESNES", - "nomCommune": "ESNES" + "codePostal": "62370", + "codeCommune": "62634", + "libelleAcheminement": "OFFEKERQUE", + "nomCommune": "OFFEKERQUE" }, { - "codePostal": "35134", - "codeCommune": "35335", - "libelleAcheminement": "THOURIE", - "nomCommune": "THOURIE" + "codePostal": "52600", + "codeCommune": "52155", + "libelleAcheminement": "CULMONT", + "nomCommune": "CULMONT" }, { - "codePostal": "30290", - "codeCommune": "30141", - "libelleAcheminement": "LAUDUN L ARDOISE", - "nomCommune": "LAUDUN L ARDOISE" + "codePostal": "54560", + "codeCommune": "54491", + "libelleAcheminement": "SANCY", + "nomCommune": "SANCY" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "62159", + "codeCommune": "62839", + "libelleAcheminement": "VAULX VRAUCOURT", + "nomCommune": "VAULX VRAUCOURT" }, { - "codePostal": "59144", - "codeCommune": "59217", - "libelleAcheminement": "ETH", - "nomCommune": "ETH" + "codePostal": "08300", + "codeCommune": "08362", + "libelleAcheminement": "RETHEL", + "nomCommune": "RETHEL" }, { - "codePostal": "35190", - "codeCommune": "35337", - "libelleAcheminement": "TINTENIAC", - "nomCommune": "TINTENIAC" + "codePostal": "62760", + "codeCommune": "62640", + "libelleAcheminement": "ORVILLE", + "nomCommune": "ORVILLE" }, { - "codePostal": "30250", - "codeCommune": "30144", - "libelleAcheminement": "LECQUES", - "nomCommune": "LECQUES" + "codePostal": "52330", + "codeCommune": "52157", + "libelleAcheminement": "CURMONT", + "nomCommune": "CURMONT" }, { - "codePostal": "49250", - "codeCommune": "49021", - "libelleAcheminement": "BEAUFORT EN ANJOU", - "nomCommune": "BEAUFORT EN ANJOU" + "codePostal": "54200", + "codeCommune": "54492", + "libelleAcheminement": "SANZEY", + "nomCommune": "SANZEY" }, { - "codePostal": "59179", - "codeCommune": "59227", - "libelleAcheminement": "FENAIN", - "nomCommune": "FENAIN" + "codePostal": "62124", + "codeCommune": "62840", + "libelleAcheminement": "VELU", + "nomCommune": "VELU" }, { - "codePostal": "35450", - "codeCommune": "35347", - "libelleAcheminement": "VAL D IZE", - "nomCommune": "VAL D IZE" + "codePostal": "08150", + "codeCommune": "08365", + "libelleAcheminement": "RIMOGNE", + "nomCommune": "RIMOGNE" }, { - "codePostal": "30260", - "codeCommune": "30148", - "libelleAcheminement": "LIOUC", - "nomCommune": "LIOUC" + "codePostal": "62230", + "codeCommune": "62643", + "libelleAcheminement": "OUTREAU", + "nomCommune": "OUTREAU" }, { - "codePostal": "49600", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "52190", + "codeCommune": "52158", + "libelleAcheminement": "CUSEY", + "nomCommune": "CUSEY" }, { - "codePostal": "59169", - "codeCommune": "59228", - "libelleAcheminement": "FERIN", - "nomCommune": "FERIN" + "codePostal": "54330", + "codeCommune": "54497", + "libelleAcheminement": "SAXON SION", + "nomCommune": "SAXON SION" }, { - "codePostal": "35500", - "codeCommune": "35360", - "libelleAcheminement": "VITRE", - "nomCommune": "VITRE" + "codePostal": "62232", + "codeCommune": "62841", + "libelleAcheminement": "VENDIN LES BETHUNE", + "nomCommune": "VENDIN LES BETHUNE" }, { - "codePostal": "30450", - "codeCommune": "30153", - "libelleAcheminement": "MALONS ET ELZE", - "nomCommune": "MALONS ET ELZE" + "codePostal": "08220", + "codeCommune": "08366", + "libelleAcheminement": "ROCQUIGNY", + "nomCommune": "ROCQUIGNY" }, { - "codePostal": "49600", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "62650", + "codeCommune": "62648", + "libelleAcheminement": "PARENTY", + "nomCommune": "PARENTY" }, { - "codePostal": "59680", - "codeCommune": "59230", - "libelleAcheminement": "FERRIERE LA GRANDE", - "nomCommune": "FERRIERE LA GRANDE" + "codePostal": "52190", + "codeCommune": "52170", + "libelleAcheminement": "DOMMARIEN", + "nomCommune": "DOMMARIEN" }, { - "codePostal": "35960", - "codeCommune": "35361", - "libelleAcheminement": "LE VIVIER SUR MER", - "nomCommune": "LE VIVIER SUR MER" + "codePostal": "54280", + "codeCommune": "54498", + "libelleAcheminement": "SEICHAMPS", + "nomCommune": "SEICHAMPS" }, { - "codePostal": "30120", - "codeCommune": "30154", - "libelleAcheminement": "MANDAGOUT", - "nomCommune": "MANDAGOUT" + "codePostal": "62830", + "codeCommune": "62845", + "libelleAcheminement": "VERLINCTHUN", + "nomCommune": "VERLINCTHUN" }, { - "codePostal": "49600", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "08220", + "codeCommune": "08366", + "libelleAcheminement": "ROCQUIGNY", + "nomCommune": "ROCQUIGNY" }, { - "codePostal": "59158", - "codeCommune": "59238", - "libelleAcheminement": "FLINES LES MORTAGNE", - "nomCommune": "FLINES LES MORTAGNE" + "codePostal": "62310", + "codeCommune": "62659", + "libelleAcheminement": "PLANQUES", + "nomCommune": "PLANQUES" }, { - "codePostal": "36210", - "codeCommune": "36004", - "libelleAcheminement": "ANJOUIN", - "nomCommune": "ANJOUIN" + "codePostal": "52150", + "codeCommune": "52174", + "libelleAcheminement": "DONCOURT SUR MEUSE", + "nomCommune": "DONCOURT SUR MEUSE" }, { - "codePostal": "30350", - "codeCommune": "30161", - "libelleAcheminement": "MASSANES", - "nomCommune": "MASSANES" + "codePostal": "54470", + "codeCommune": "54499", + "libelleAcheminement": "SEICHEPREY", + "nomCommune": "SEICHEPREY" }, { - "codePostal": "49520", - "codeCommune": "49036", - "libelleAcheminement": "BOUILLE MENARD", - "nomCommune": "BOUILLE MENARD" + "codePostal": "62770", + "codeCommune": "62850", + "libelleAcheminement": "VIEIL HESDIN", + "nomCommune": "VIEIL HESDIN" }, { - "codePostal": "59400", - "codeCommune": "59244", - "libelleAcheminement": "FONTAINE NOTRE DAME", - "nomCommune": "FONTAINE NOTRE DAME" + "codePostal": "08230", + "codeCommune": "08367", + "libelleAcheminement": "ROCROI", + "nomCommune": "ROCROI" }, { - "codePostal": "36120", - "codeCommune": "36005", - "libelleAcheminement": "ARDENTES", - "nomCommune": "ARDENTES" + "codePostal": "62118", + "codeCommune": "62660", + "libelleAcheminement": "PLOUVAIN", + "nomCommune": "PLOUVAIN" }, { - "codePostal": "30840", - "codeCommune": "30166", - "libelleAcheminement": "MEYNES", - "nomCommune": "MEYNES" + "codePostal": "52270", + "codeCommune": "52177", + "libelleAcheminement": "DOULAINCOURT SAUCOURT", + "nomCommune": "DOULAINCOURT SAUCOURT" }, { - "codePostal": "49125", - "codeCommune": "49048", - "libelleAcheminement": "BRIOLLAY", - "nomCommune": "BRIOLLAY" + "codePostal": "54560", + "codeCommune": "54504", + "libelleAcheminement": "SERROUVILLE", + "nomCommune": "SERROUVILLE" }, { - "codePostal": "59530", - "codeCommune": "59251", - "libelleAcheminement": "FRASNOY", - "nomCommune": "FRASNOY" + "codePostal": "62182", + "codeCommune": "62858", + "libelleAcheminement": "VILLERS LES CAGNICOURT", + "nomCommune": "VILLERS LES CAGNICOURT" }, { - "codePostal": "36270", - "codeCommune": "36014", - "libelleAcheminement": "BAZAIGES", - "nomCommune": "BAZAIGES" + "codePostal": "08220", + "codeCommune": "08372", + "libelleAcheminement": "RUBIGNY", + "nomCommune": "RUBIGNY" }, { - "codePostal": "30360", - "codeCommune": "30177", - "libelleAcheminement": "MONTEILS", - "nomCommune": "MONTEILS" + "codePostal": "62370", + "codeCommune": "62662", + "libelleAcheminement": "POLINCOVE", + "nomCommune": "POLINCOVE" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "52130", + "codeCommune": "52179", + "libelleAcheminement": "DOULEVANT LE PETIT", + "nomCommune": "DOULEVANT LE PETIT" }, { - "codePostal": "59254", - "codeCommune": "59260", - "libelleAcheminement": "GHYVELDE", - "nomCommune": "GHYVELDE" + "codePostal": "54120", + "codeCommune": "54519", + "libelleAcheminement": "THIAVILLE SUR MEURTHE", + "nomCommune": "THIAVILLE SUR MEURTHE" }, { - "codePostal": "36110", - "codeCommune": "36023", - "libelleAcheminement": "BOUGES LE CHATEAU", - "nomCommune": "BOUGES LE CHATEAU" + "codePostal": "62390", + "codeCommune": "62859", + "libelleAcheminement": "VILLERS L HOPITAL", + "nomCommune": "VILLERS L HOPITAL" }, { - "codePostal": "30260", - "codeCommune": "30192", - "libelleAcheminement": "ORTHOUX SERIGNAC QUILHAN", - "nomCommune": "ORTHOUX SERIGNAC QUILHAN" + "codePostal": "08130", + "codeCommune": "08384", + "libelleAcheminement": "ST LAMBERT ET MONT DE JEUX", + "nomCommune": "ST LAMBERT ET MONT DE JEUX" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "62550", + "codeCommune": "62669", + "libelleAcheminement": "PRESSY", + "nomCommune": "PRESSY" }, { - "codePostal": "59132", - "codeCommune": "59261", - "libelleAcheminement": "GLAGEON", - "nomCommune": "GLAGEON" + "codePostal": "52000", + "codeCommune": "52193", + "libelleAcheminement": "EUFFIGNEIX", + "nomCommune": "EUFFIGNEIX" }, { - "codePostal": "36500", - "codeCommune": "36031", - "libelleAcheminement": "BUZANCAIS", - "nomCommune": "BUZANCAIS" + "codePostal": "54115", + "codeCommune": "54530", + "libelleAcheminement": "TRAMONT LASSUS", + "nomCommune": "TRAMONT LASSUS" }, { - "codePostal": "30124", - "codeCommune": "30195", - "libelleAcheminement": "PEYROLLES", - "nomCommune": "PEYROLLES" + "codePostal": "62310", + "codeCommune": "62862", + "libelleAcheminement": "VINCLY", + "nomCommune": "VINCLY" }, { - "codePostal": "49360", - "codeCommune": "49058", - "libelleAcheminement": "LES CERQUEUX", - "nomCommune": "LES CERQUEUX" + "codePostal": "08200", + "codeCommune": "08391", + "libelleAcheminement": "ST MENGES", + "nomCommune": "ST MENGES" }, { - "codePostal": "59253", - "codeCommune": "59268", - "libelleAcheminement": "LA GORGUE", - "nomCommune": "LA GORGUE" + "codePostal": "62650", + "codeCommune": "62670", + "libelleAcheminement": "PREURES", + "nomCommune": "PREURES" }, { - "codePostal": "36200", - "codeCommune": "36033", - "libelleAcheminement": "CELON", - "nomCommune": "CELON" + "codePostal": "52500", + "codeCommune": "52195", + "libelleAcheminement": "FARINCOURT", + "nomCommune": "FARINCOURT" }, { - "codePostal": "30170", - "codeCommune": "30200", - "libelleAcheminement": "POMPIGNAN", - "nomCommune": "POMPIGNAN" + "codePostal": "54385", + "codeCommune": "54532", + "libelleAcheminement": "TREMBLECOURT", + "nomCommune": "TREMBLECOURT" }, { - "codePostal": "49220", - "codeCommune": "49067", - "libelleAcheminement": "CHENILLE CHAMPTEUSSE", - "nomCommune": "CHENILLE CHAMPTEUSSE" + "codePostal": "62156", + "codeCommune": "62864", + "libelleAcheminement": "VIS EN ARTOIS", + "nomCommune": "VIS EN ARTOIS" }, { - "codePostal": "59244", - "codeCommune": "59270", - "libelleAcheminement": "GRAND FAYT", - "nomCommune": "GRAND FAYT" + "codePostal": "08310", + "codeCommune": "08393", + "libelleAcheminement": "ST PIERRE A ARNES", + "nomCommune": "ST PIERRE A ARNES" }, { - "codePostal": "36370", - "codeCommune": "36036", - "libelleAcheminement": "CHALAIS", - "nomCommune": "CHALAIS" + "codePostal": "62490", + "codeCommune": "62680", + "libelleAcheminement": "QUIERY LA MOTTE", + "nomCommune": "QUIERY LA MOTTE" }, { - "codePostal": "30330", - "codeCommune": "30205", - "libelleAcheminement": "POUGNADORESSE", - "nomCommune": "POUGNADORESSE" + "codePostal": "52250", + "codeCommune": "52200", + "libelleAcheminement": "FLAGEY", + "nomCommune": "FLAGEY" }, { - "codePostal": "49123", - "codeCommune": "49068", - "libelleAcheminement": "CHAMPTOCE SUR LOIRE", - "nomCommune": "CHAMPTOCE SUR LOIRE" + "codePostal": "54122", + "codeCommune": "54550", + "libelleAcheminement": "VATHIMENIL", + "nomCommune": "VATHIMENIL" }, { - "codePostal": "59570", - "codeCommune": "59277", - "libelleAcheminement": "GUSSIGNIES", - "nomCommune": "GUSSIGNIES" + "codePostal": "62770", + "codeCommune": "62868", + "libelleAcheminement": "WAIL", + "nomCommune": "WAIL" }, { - "codePostal": "36150", - "codeCommune": "36041", - "libelleAcheminement": "LA CHAPELLE ST LAURIAN", - "nomCommune": "LA CHAPELLE ST LAURIAN" + "codePostal": "08430", + "codeCommune": "08395", + "libelleAcheminement": "ST PIERRE SUR VENCE", + "nomCommune": "ST PIERRE SUR VENCE" }, { - "codePostal": "30131", - "codeCommune": "30209", - "libelleAcheminement": "PUJAUT", - "nomCommune": "PUJAUT" + "codePostal": "62180", + "codeCommune": "62688", + "libelleAcheminement": "RANG DU FLIERS", + "nomCommune": "RANG DU FLIERS" }, { - "codePostal": "49270", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "52170", + "codeCommune": "52203", + "libelleAcheminement": "FONTAINES SUR MARNE", + "nomCommune": "FONTAINES SUR MARNE" }, { - "codePostal": "59250", - "codeCommune": "59279", - "libelleAcheminement": "HALLUIN", - "nomCommune": "HALLUIN" + "codePostal": "54370", + "codeCommune": "54551", + "libelleAcheminement": "VAUCOURT", + "nomCommune": "VAUCOURT" }, { - "codePostal": "36800", - "codeCommune": "36042", - "libelleAcheminement": "CHASSENEUIL", - "nomCommune": "CHASSENEUIL" + "codePostal": "62170", + "codeCommune": "62870", + "libelleAcheminement": "WAILLY BEAUCAMP", + "nomCommune": "WAILLY BEAUCAMP" }, { - "codePostal": "30260", - "codeCommune": "30210", - "libelleAcheminement": "QUISSAC", - "nomCommune": "QUISSAC" + "codePostal": "08220", + "codeCommune": "08396", + "libelleAcheminement": "ST QUENTIN LE PETIT", + "nomCommune": "ST QUENTIN LE PETIT" }, { - "codePostal": "49270", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "62120", + "codeCommune": "62691", + "libelleAcheminement": "ST AUGUSTIN", + "nomCommune": "ST AUGUSTIN" }, { - "codePostal": "59496", - "codeCommune": "59281", - "libelleAcheminement": "HANTAY", - "nomCommune": "HANTAY" + "codePostal": "52700", + "codeCommune": "52204", + "libelleAcheminement": "FORCEY", + "nomCommune": "FORCEY" }, { - "codePostal": "36270", - "codeCommune": "36070", - "libelleAcheminement": "EGUZON CHANTOME", - "nomCommune": "EGUZON CHANTOME" + "codePostal": "54840", + "codeCommune": "54557", + "libelleAcheminement": "BOIS DE HAYE", + "nomCommune": "BOIS DE HAYE" }, { - "codePostal": "30430", - "codeCommune": "30215", - "libelleAcheminement": "RIVIERES", - "nomCommune": "RIVIERES" + "codePostal": "62123", + "codeCommune": "62874", + "libelleAcheminement": "WANQUETIN", + "nomCommune": "WANQUETIN" }, { - "codePostal": "49270", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "08230", + "codeCommune": "08417", + "libelleAcheminement": "SEVIGNY LA FORET", + "nomCommune": "SEVIGNY LA FORET" }, { - "codePostal": "59670", - "codeCommune": "59282", - "libelleAcheminement": "HARDIFORT", - "nomCommune": "HARDIFORT" + "codePostal": "62129", + "codeCommune": "62691", + "libelleAcheminement": "ST AUGUSTIN", + "nomCommune": "ST AUGUSTIN" }, { - "codePostal": "36120", - "codeCommune": "36071", - "libelleAcheminement": "ETRECHET", - "nomCommune": "ETRECHET" + "codePostal": "52360", + "codeCommune": "52207", + "libelleAcheminement": "FRECOURT", + "nomCommune": "FRECOURT" }, { - "codePostal": "30940", - "codeCommune": "30231", - "libelleAcheminement": "ST ANDRE DE VALBORGNE", - "nomCommune": "ST ANDRE DE VALBORGNE" + "codePostal": "54290", + "codeCommune": "54559", + "libelleAcheminement": "VELLE SUR MOSELLE", + "nomCommune": "VELLE SUR MOSELLE" }, { - "codePostal": "49530", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "62123", + "codeCommune": "62878", + "libelleAcheminement": "WARLUS", + "nomCommune": "WARLUS" }, { - "codePostal": "59121", - "codeCommune": "59288", - "libelleAcheminement": "HAULCHIN", - "nomCommune": "HAULCHIN" + "codePostal": "08380", + "codeCommune": "08420", + "libelleAcheminement": "SIGNY LE PETIT", + "nomCommune": "SIGNY LE PETIT" }, { - "codePostal": "36110", - "codeCommune": "36079", - "libelleAcheminement": "FRANCILLON", - "nomCommune": "FRANCILLON" + "codePostal": "62140", + "codeCommune": "62700", + "libelleAcheminement": "REGNAUVILLE", + "nomCommune": "REGNAUVILLE" }, { - "codePostal": "30460", - "codeCommune": "30236", - "libelleAcheminement": "ST BONNET DE SALENDRINQUE", - "nomCommune": "ST BONNET DE SALENDRINQUE" + "codePostal": "52300", + "codeCommune": "52212", + "libelleAcheminement": "FRONVILLE", + "nomCommune": "FRONVILLE" }, { - "codePostal": "49330", - "codeCommune": "49080", - "libelleAcheminement": "LES HAUTS D ANJOU", - "nomCommune": "LES HAUTS D ANJOU" + "codePostal": "54330", + "codeCommune": "54563", + "libelleAcheminement": "VEZELISE", + "nomCommune": "VEZELISE" }, { - "codePostal": "59294", - "codeCommune": "59289", - "libelleAcheminement": "HAUSSY", - "nomCommune": "HAUSSY" + "codePostal": "62130", + "codeCommune": "62883", + "libelleAcheminement": "WAVRANS SUR TERNOISE", + "nomCommune": "WAVRANS SUR TERNOISE" }, { - "codePostal": "36240", - "codeCommune": "36082", - "libelleAcheminement": "GEHEE", - "nomCommune": "GEHEE" + "codePostal": "08250", + "codeCommune": "08425", + "libelleAcheminement": "SOMMERANCE", + "nomCommune": "SOMMERANCE" }, { - "codePostal": "30380", - "codeCommune": "30243", - "libelleAcheminement": "ST CHRISTOL LEZ ALES", - "nomCommune": "ST CHRISTOL LEZ ALES" + "codePostal": "62720", + "codeCommune": "62705", + "libelleAcheminement": "RETY", + "nomCommune": "RETY" }, { - "codePostal": "49330", - "codeCommune": "49080", - "libelleAcheminement": "LES HAUTS D ANJOU", - "nomCommune": "LES HAUTS D ANJOU" + "codePostal": "52500", + "codeCommune": "52213", + "libelleAcheminement": "GENEVRIERES", + "nomCommune": "GENEVRIERES" }, { - "codePostal": "59660", - "codeCommune": "59293", - "libelleAcheminement": "HAVERSKERQUE", - "nomCommune": "HAVERSKERQUE" + "codePostal": "54620", + "codeCommune": "54568", + "libelleAcheminement": "VILLE AU MONTOIS", + "nomCommune": "VILLE AU MONTOIS" }, { - "codePostal": "36230", - "codeCommune": "36084", - "libelleAcheminement": "GOURNAY", - "nomCommune": "GOURNAY" + "codePostal": "62630", + "codeCommune": "62887", + "libelleAcheminement": "WIDEHEM", + "nomCommune": "WIDEHEM" }, { - "codePostal": "30460", - "codeCommune": "30246", - "libelleAcheminement": "STE CROIX DE CADERLE", - "nomCommune": "STE CROIX DE CADERLE" + "codePostal": "08400", + "codeCommune": "08431", + "libelleAcheminement": "SUGNY", + "nomCommune": "SUGNY" }, { - "codePostal": "49125", - "codeCommune": "49090", - "libelleAcheminement": "CHEFFES", - "nomCommune": "CHEFFES" + "codePostal": "62173", + "codeCommune": "62712", + "libelleAcheminement": "RIVIERE", + "nomCommune": "RIVIERE" }, { - "codePostal": "59190", - "codeCommune": "59295", - "libelleAcheminement": "HAZEBROUCK", - "nomCommune": "HAZEBROUCK" + "codePostal": "52160", + "codeCommune": "52216", + "libelleAcheminement": "GERMAINES", + "nomCommune": "GERMAINES" }, { - "codePostal": "36180", - "codeCommune": "36086", - "libelleAcheminement": "HEUGNES", - "nomCommune": "HEUGNES" + "codePostal": "54890", + "codeCommune": "54570", + "libelleAcheminement": "VILLECEY SUR MAD", + "nomCommune": "VILLECEY SUR MAD" }, { - "codePostal": "30320", - "codeCommune": "30257", - "libelleAcheminement": "ST GERVASY", - "nomCommune": "ST GERVASY" + "codePostal": "62720", + "codeCommune": "62889", + "libelleAcheminement": "WIERRE EFFROY", + "nomCommune": "WIERRE EFFROY" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "08090", + "codeCommune": "08432", + "libelleAcheminement": "SURY", + "nomCommune": "SURY" }, { - "codePostal": "59530", - "codeCommune": "59296", - "libelleAcheminement": "HECQ", - "nomCommune": "HECQ" + "codePostal": "62223", + "codeCommune": "62714", + "libelleAcheminement": "ROCLINCOURT", + "nomCommune": "ROCLINCOURT" }, { - "codePostal": "36240", - "codeCommune": "36090", - "libelleAcheminement": "JEU MALOCHES", - "nomCommune": "JEU MALOCHES" + "codePostal": "52230", + "codeCommune": "52222", + "libelleAcheminement": "GILLAUME", + "nomCommune": "GILLAUME" }, { - "codePostal": "30210", - "codeCommune": "30260", - "libelleAcheminement": "ST HILAIRE D OZILHAN", - "nomCommune": "ST HILAIRE D OZILHAN" + "codePostal": "54380", + "codeCommune": "54573", + "libelleAcheminement": "VILLERS EN HAYE", + "nomCommune": "VILLERS EN HAYE" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "62770", + "codeCommune": "62890", + "libelleAcheminement": "WILLEMAN", + "nomCommune": "WILLEMAN" }, { - "codePostal": "59510", - "codeCommune": "59299", - "libelleAcheminement": "HEM", - "nomCommune": "HEM" + "codePostal": "08390", + "codeCommune": "08434", + "libelleAcheminement": "SY", + "nomCommune": "SY" }, { - "codePostal": "36400", - "codeCommune": "36091", - "libelleAcheminement": "LACS", - "nomCommune": "LACS" + "codePostal": "62130", + "codeCommune": "62717", + "libelleAcheminement": "ROELLECOURT", + "nomCommune": "ROELLECOURT" }, { - "codePostal": "30360", - "codeCommune": "30264", - "libelleAcheminement": "ST JEAN DE CEYRARGUES", - "nomCommune": "ST JEAN DE CEYRARGUES" + "codePostal": "52500", + "codeCommune": "52229", + "libelleAcheminement": "GRENANT", + "nomCommune": "GRENANT" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "54600", + "codeCommune": "54578", + "libelleAcheminement": "VILLERS LES NANCY", + "nomCommune": "VILLERS LES NANCY" }, { - "codePostal": "59195", - "codeCommune": "59302", - "libelleAcheminement": "HERIN", - "nomCommune": "HERIN" + "codePostal": "62390", + "codeCommune": "62891", + "libelleAcheminement": "WILLENCOURT", + "nomCommune": "WILLENCOURT" }, { - "codePostal": "36600", - "codeCommune": "36107", - "libelleAcheminement": "LYE", - "nomCommune": "LYE" + "codePostal": "08240", + "codeCommune": "08437", + "libelleAcheminement": "TAILLY", + "nomCommune": "TAILLY" }, { - "codePostal": "30430", - "codeCommune": "30266", - "libelleAcheminement": "ST JEAN DE MARUEJOLS ET AVEJAN", - "nomCommune": "ST JEAN DE MARUEJOLS ET AVEJAN" + "codePostal": "62120", + "codeCommune": "62720", + "libelleAcheminement": "ROMBLY", + "nomCommune": "ROMBLY" }, { - "codePostal": "49560", - "codeCommune": "49102", - "libelleAcheminement": "CLERE SUR LAYON", - "nomCommune": "CLERE SUR LAYON" + "codePostal": "52600", + "codeCommune": "52242", + "libelleAcheminement": "HAUTE AMANCE", + "nomCommune": "HAUTE AMANCE" }, { - "codePostal": "59134", - "codeCommune": "59303", - "libelleAcheminement": "HERLIES", - "nomCommune": "HERLIES" + "codePostal": "54190", + "codeCommune": "54580", + "libelleAcheminement": "VILLERUPT", + "nomCommune": "VILLERUPT" }, { - "codePostal": "36120", - "codeCommune": "36112", - "libelleAcheminement": "MARON", - "nomCommune": "MARON" + "codePostal": "62930", + "codeCommune": "62893", + "libelleAcheminement": "WIMEREUX", + "nomCommune": "WIMEREUX" }, { - "codePostal": "30440", - "codeCommune": "30272", - "libelleAcheminement": "ST JULIEN DE LA NEF", - "nomCommune": "ST JULIEN DE LA NEF" + "codePostal": "08240", + "codeCommune": "08437", + "libelleAcheminement": "TAILLY", + "nomCommune": "TAILLY" }, { - "codePostal": "49700", - "codeCommune": "49121", - "libelleAcheminement": "DENEZE SOUS DOUE", - "nomCommune": "DENEZE SOUS DOUE" + "codePostal": "62120", + "codeCommune": "62721", + "libelleAcheminement": "ROQUETOIRE", + "nomCommune": "ROQUETOIRE" }, { - "codePostal": "59740", - "codeCommune": "59306", - "libelleAcheminement": "HESTRUD", - "nomCommune": "HESTRUD" + "codePostal": "52600", + "codeCommune": "52242", + "libelleAcheminement": "HAUTE AMANCE", + "nomCommune": "HAUTE AMANCE" }, { - "codePostal": "36200", - "codeCommune": "36117", - "libelleAcheminement": "LE MENOUX", - "nomCommune": "LE MENOUX" + "codePostal": "54330", + "codeCommune": "54587", + "libelleAcheminement": "VITREY", + "nomCommune": "VITREY" }, { - "codePostal": "30340", - "codeCommune": "30274", - "libelleAcheminement": "ST JULIEN LES ROSIERS", - "nomCommune": "ST JULIEN LES ROSIERS" + "codePostal": "62650", + "codeCommune": "62903", + "libelleAcheminement": "ZOTEUX", + "nomCommune": "ZOTEUX" }, { - "codePostal": "49700", - "codeCommune": "49125", - "libelleAcheminement": "DOUE EN ANJOU", - "nomCommune": "DOUE EN ANJOU" + "codePostal": "08240", + "codeCommune": "08437", + "libelleAcheminement": "TAILLY", + "nomCommune": "TAILLY" }, { - "codePostal": "59980", - "codeCommune": "59311", - "libelleAcheminement": "HONNECHY", - "nomCommune": "HONNECHY" + "codePostal": "62870", + "codeCommune": "62723", + "libelleAcheminement": "ROUSSENT", + "nomCommune": "ROUSSENT" }, { - "codePostal": "36130", - "codeCommune": "36128", - "libelleAcheminement": "MONTIERCHAUME", - "nomCommune": "MONTIERCHAUME" + "codePostal": "52600", + "codeCommune": "52242", + "libelleAcheminement": "HAUTE AMANCE", + "nomCommune": "HAUTE AMANCE" }, { - "codePostal": "30126", - "codeCommune": "30278", - "libelleAcheminement": "ST LAURENT DES ARBRES", - "nomCommune": "ST LAURENT DES ARBRES" + "codePostal": "54990", + "codeCommune": "54596", + "libelleAcheminement": "XEUILLEY", + "nomCommune": "XEUILLEY" }, { - "codePostal": "49700", - "codeCommune": "49125", - "libelleAcheminement": "DOUE EN ANJOU", - "nomCommune": "DOUE EN ANJOU" + "codePostal": "63260", + "codeCommune": "63001", + "libelleAcheminement": "AIGUEPERSE", + "nomCommune": "AIGUEPERSE" }, { - "codePostal": "59116", - "codeCommune": "59317", - "libelleAcheminement": "HOUPLINES", - "nomCommune": "HOUPLINES" + "codePostal": "08390", + "codeCommune": "08439", + "libelleAcheminement": "TANNAY", + "nomCommune": "TANNAY" }, { - "codePostal": "36200", - "codeCommune": "36131", - "libelleAcheminement": "MOSNAY", - "nomCommune": "MOSNAY" + "codePostal": "62990", + "codeCommune": "62725", + "libelleAcheminement": "ROYON", + "nomCommune": "ROYON" }, { - "codePostal": "30440", - "codeCommune": "30283", - "libelleAcheminement": "ST MARTIAL", - "nomCommune": "ST MARTIAL" + "codePostal": "52700", + "codeCommune": "52245", + "libelleAcheminement": "HUMBERVILLE", + "nomCommune": "HUMBERVILLE" }, { - "codePostal": "49700", - "codeCommune": "49125", - "libelleAcheminement": "DOUE EN ANJOU", - "nomCommune": "DOUE EN ANJOU" + "codePostal": "54370", + "codeCommune": "54600", + "libelleAcheminement": "XOUSSE", + "nomCommune": "XOUSSE" }, { - "codePostal": "59540", - "codeCommune": "59321", - "libelleAcheminement": "INCHY", - "nomCommune": "INCHY" + "codePostal": "63420", + "codeCommune": "63007", + "libelleAcheminement": "APCHAT", + "nomCommune": "APCHAT" }, { - "codePostal": "36400", - "codeCommune": "36138", - "libelleAcheminement": "NERET", - "nomCommune": "NERET" + "codePostal": "08460", + "codeCommune": "08449", + "libelleAcheminement": "THIN LE MOUTIER", + "nomCommune": "THIN LE MOUTIER" }, { - "codePostal": "30200", - "codeCommune": "30288", - "libelleAcheminement": "ST NAZAIRE", - "nomCommune": "ST NAZAIRE" + "codePostal": "62550", + "codeCommune": "62732", + "libelleAcheminement": "SACHIN", + "nomCommune": "SACHIN" }, { - "codePostal": "49260", - "codeCommune": "49131", - "libelleAcheminement": "EPIEDS", - "nomCommune": "EPIEDS" + "codePostal": "52200", + "codeCommune": "52246", + "libelleAcheminement": "HUMES JORQUENAY", + "nomCommune": "HUMES JORQUENAY" }, { - "codePostal": "59141", - "codeCommune": "59322", - "libelleAcheminement": "IWUY", - "nomCommune": "IWUY" + "codePostal": "54370", + "codeCommune": "54601", + "libelleAcheminement": "XURES", + "nomCommune": "XURES" }, { - "codePostal": "36210", - "codeCommune": "36147", - "libelleAcheminement": "ORVILLE", - "nomCommune": "ORVILLE" + "codePostal": "63700", + "codeCommune": "63011", + "libelleAcheminement": "ARS LES FAVETS", + "nomCommune": "ARS LES FAVETS" }, { - "codePostal": "30190", - "codeCommune": "30313", - "libelleAcheminement": "SAUZET", - "nomCommune": "SAUZET" + "codePostal": "08430", + "codeCommune": "08454", + "libelleAcheminement": "TOULIGNY", + "nomCommune": "TOULIGNY" }, { - "codePostal": "49330", - "codeCommune": "49132", - "libelleAcheminement": "ETRICHE", - "nomCommune": "ETRICHE" + "codePostal": "62111", + "codeCommune": "62733", + "libelleAcheminement": "SAILLY AU BOIS", + "nomCommune": "SAILLY AU BOIS" }, { - "codePostal": "59144", - "codeCommune": "59323", - "libelleAcheminement": "JENLAIN", - "nomCommune": "JENLAIN" + "codePostal": "52140", + "codeCommune": "52248", + "libelleAcheminement": "IS EN BASSIGNY", + "nomCommune": "IS EN BASSIGNY" }, { - "codePostal": "36170", - "codeCommune": "36150", - "libelleAcheminement": "PARNAC", - "nomCommune": "PARNAC" + "codePostal": "55130", + "codeCommune": "55001", + "libelleAcheminement": "ABAINVILLE", + "nomCommune": "ABAINVILLE" }, { - "codePostal": "30350", - "codeCommune": "30314", - "libelleAcheminement": "SAVIGNARGUES", - "nomCommune": "SAVIGNARGUES" + "codePostal": "63340", + "codeCommune": "63017", + "libelleAcheminement": "AUGNAT", + "nomCommune": "AUGNAT" }, { - "codePostal": "49220", - "codeCommune": "49155", - "libelleAcheminement": "GREZ NEUVILLE", - "nomCommune": "GREZ NEUVILLE" + "codePostal": "08240", + "codeCommune": "08463", + "libelleAcheminement": "VAUX EN DIEULET", + "nomCommune": "VAUX EN DIEULET" }, { - "codePostal": "59310", - "codeCommune": "59330", - "libelleAcheminement": "LANDAS", - "nomCommune": "LANDAS" + "codePostal": "62490", + "codeCommune": "62734", + "libelleAcheminement": "SAILLY EN OSTREVENT", + "nomCommune": "SAILLY EN OSTREVENT" }, { - "codePostal": "36260", - "codeCommune": "36152", - "libelleAcheminement": "PAUDY", - "nomCommune": "PAUDY" + "codePostal": "52300", + "codeCommune": "52250", + "libelleAcheminement": "JOINVILLE", + "nomCommune": "JOINVILLE" }, { - "codePostal": "30700", - "codeCommune": "30319", - "libelleAcheminement": "SERVIERS ET LABAUME", - "nomCommune": "SERVIERS ET LABAUME" + "codePostal": "55400", + "codeCommune": "55002", + "libelleAcheminement": "ABAUCOURT HAUTECOURT", + "nomCommune": "ABAUCOURT HAUTECOURT" }, { - "codePostal": "49220", - "codeCommune": "49161", - "libelleAcheminement": "LA JAILLE YVON", - "nomCommune": "LA JAILLE YVON" + "codePostal": "63570", + "codeCommune": "63022", + "libelleAcheminement": "AUZAT LA COMBELLE", + "nomCommune": "AUZAT LA COMBELLE" }, { - "codePostal": "59550", - "codeCommune": "59331", - "libelleAcheminement": "LANDRECIES", - "nomCommune": "LANDRECIES" + "codePostal": "08160", + "codeCommune": "08469", + "libelleAcheminement": "VENDRESSE", + "nomCommune": "VENDRESSE" }, { - "codePostal": "36160", - "codeCommune": "36164", - "libelleAcheminement": "POULIGNY ST MARTIN", - "nomCommune": "POULIGNY ST MARTIN" + "codePostal": "62310", + "codeCommune": "62738", + "libelleAcheminement": "SAINS LES FRESSIN", + "nomCommune": "SAINS LES FRESSIN" }, { - "codePostal": "30580", - "codeCommune": "30320", - "libelleAcheminement": "SEYNES", - "nomCommune": "SEYNES" + "codePostal": "52330", + "codeCommune": "52253", + "libelleAcheminement": "JUZENNECOURT", + "nomCommune": "JUZENNECOURT" }, { - "codePostal": "49140", - "codeCommune": "49163", - "libelleAcheminement": "JARZE VILLAGES", - "nomCommune": "JARZE VILLAGES" + "codePostal": "55300", + "codeCommune": "55007", + "libelleAcheminement": "AMBLY SUR MEUSE", + "nomCommune": "AMBLY SUR MEUSE" }, { - "codePostal": "59620", - "codeCommune": "59344", - "libelleAcheminement": "LEVAL", - "nomCommune": "LEVAL" + "codePostal": "63810", + "codeCommune": "63028", + "libelleAcheminement": "BAGNOLS", + "nomCommune": "BAGNOLS" }, { - "codePostal": "36370", - "codeCommune": "36168", - "libelleAcheminement": "PRISSAC", - "nomCommune": "PRISSAC" + "codePostal": "08270", + "codeCommune": "08472", + "libelleAcheminement": "VIEL ST REMY", + "nomCommune": "VIEL ST REMY" }, { - "codePostal": "30250", - "codeCommune": "30324", - "libelleAcheminement": "SOUVIGNARGUES", - "nomCommune": "SOUVIGNARGUES" + "codePostal": "62860", + "codeCommune": "62739", + "libelleAcheminement": "SAINS LES MARQUION", + "nomCommune": "SAINS LES MARQUION" }, { - "codePostal": "49140", - "codeCommune": "49163", - "libelleAcheminement": "JARZE VILLAGES", - "nomCommune": "JARZE VILLAGES" + "codePostal": "52120", + "codeCommune": "52258", + "libelleAcheminement": "LAFERTE SUR AUBE", + "nomCommune": "LAFERTE SUR AUBE" }, { - "codePostal": "59160", - "codeCommune": "59350", - "libelleAcheminement": "LILLE", - "nomCommune": "LILLE" + "codePostal": "55300", + "codeCommune": "55012", + "libelleAcheminement": "APREMONT LA FORET", + "nomCommune": "APREMONT LA FORET" }, { - "codePostal": "36400", - "codeCommune": "36186", - "libelleAcheminement": "ST CHRISTOPHE EN BOUCHERIE", - "nomCommune": "ST CHRISTOPHE EN BOUCHERIE" + "codePostal": "63570", + "codeCommune": "63031", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "30440", - "codeCommune": "30325", - "libelleAcheminement": "SUMENE", - "nomCommune": "SUMENE" + "codePostal": "08350", + "codeCommune": "08481", + "libelleAcheminement": "VILLERS SUR BAR", + "nomCommune": "VILLERS SUR BAR" }, { - "codePostal": "49140", - "codeCommune": "49163", - "libelleAcheminement": "JARZE VILLAGES", - "nomCommune": "JARZE VILLAGES" + "codePostal": "62350", + "codeCommune": "62747", + "libelleAcheminement": "ST FLORIS", + "nomCommune": "ST FLORIS" }, { - "codePostal": "59330", - "codeCommune": "59351", - "libelleAcheminement": "LIMONT FONTAINE", - "nomCommune": "LIMONT FONTAINE" + "codePostal": "52170", + "codeCommune": "52265", + "libelleAcheminement": "BAYARD SUR MARNE", + "nomCommune": "BAYARD SUR MARNE" }, { - "codePostal": "36700", - "codeCommune": "36188", - "libelleAcheminement": "ST CYRAN DU JAMBOT", - "nomCommune": "ST CYRAN DU JAMBOT" + "codePostal": "55600", + "codeCommune": "55022", + "libelleAcheminement": "AVIOTH", + "nomCommune": "AVIOTH" }, { - "codePostal": "30140", - "codeCommune": "30330", - "libelleAcheminement": "TORNAC", - "nomCommune": "TORNAC" + "codePostal": "63460", + "codeCommune": "63035", + "libelleAcheminement": "BEAUREGARD VENDON", + "nomCommune": "BEAUREGARD VENDON" }, { - "codePostal": "49220", - "codeCommune": "49176", - "libelleAcheminement": "LE LION D ANGERS", - "nomCommune": "LE LION D ANGERS" + "codePostal": "08320", + "codeCommune": "08486", + "libelleAcheminement": "VIREUX MOLHAIN", + "nomCommune": "VIREUX MOLHAIN" }, { - "codePostal": "59530", - "codeCommune": "59353", - "libelleAcheminement": "LOCQUIGNOL", - "nomCommune": "LOCQUIGNOL" + "codePostal": "62250", + "codeCommune": "62751", + "libelleAcheminement": "ST INGLEVERT", + "nomCommune": "ST INGLEVERT" }, { - "codePostal": "36500", - "codeCommune": "36194", - "libelleAcheminement": "ST GENOU", - "nomCommune": "ST GENOU" + "codePostal": "52170", + "codeCommune": "52265", + "libelleAcheminement": "BAYARD SUR MARNE", + "nomCommune": "BAYARD SUR MARNE" }, { - "codePostal": "30620", - "codeCommune": "30333", - "libelleAcheminement": "UCHAUD", - "nomCommune": "UCHAUD" + "codePostal": "55260", + "codeCommune": "55032", + "libelleAcheminement": "BAUDREMONT", + "nomCommune": "BAUDREMONT" }, { - "codePostal": "49160", - "codeCommune": "49180", - "libelleAcheminement": "LONGUE JUMELLES", - "nomCommune": "LONGUE JUMELLES" + "codePostal": "63610", + "codeCommune": "63038", + "libelleAcheminement": "BESSE ET ST ANASTAISE", + "nomCommune": "BESSE ET ST ANASTAISE" }, { - "codePostal": "59182", - "codeCommune": "59354", - "libelleAcheminement": "LOFFRE", - "nomCommune": "LOFFRE" + "codePostal": "08400", + "codeCommune": "08490", + "libelleAcheminement": "VOUZIERS", + "nomCommune": "VOUZIERS" }, { - "codePostal": "36100", - "codeCommune": "36209", - "libelleAcheminement": "ST VALENTIN", - "nomCommune": "ST VALENTIN" + "codePostal": "62170", + "codeCommune": "62752", + "libelleAcheminement": "ST JOSSE", + "nomCommune": "ST JOSSE" }, { - "codePostal": "30580", - "codeCommune": "30338", - "libelleAcheminement": "VALLERARGUES", - "nomCommune": "VALLERARGUES" + "codePostal": "52170", + "codeCommune": "52265", + "libelleAcheminement": "BAYARD SUR MARNE", + "nomCommune": "BAYARD SUR MARNE" }, { - "codePostal": "49280", - "codeCommune": "49195", - "libelleAcheminement": "MAZIERES EN MAUGES", - "nomCommune": "MAZIERES EN MAUGES" + "codePostal": "55270", + "codeCommune": "55033", + "libelleAcheminement": "BAULNY", + "nomCommune": "BAULNY" }, { - "codePostal": "59279", - "codeCommune": "59359", - "libelleAcheminement": "LOON PLAGE", - "nomCommune": "LOON PLAGE" + "codePostal": "63112", + "codeCommune": "63042", + "libelleAcheminement": "BLANZAT", + "nomCommune": "BLANZAT" }, { - "codePostal": "36230", - "codeCommune": "36226", - "libelleAcheminement": "TRANZAULT", - "nomCommune": "TRANZAULT" + "codePostal": "08350", + "codeCommune": "08491", + "libelleAcheminement": "VRIGNE AUX BOIS", + "nomCommune": "VRIGNE AUX BOIS" }, { - "codePostal": "30600", - "codeCommune": "30341", - "libelleAcheminement": "VAUVERT", - "nomCommune": "VAUVERT" + "codePostal": "62360", + "codeCommune": "62755", + "libelleAcheminement": "ST LEONARD", + "nomCommune": "ST LEONARD" }, { - "codePostal": "49260", - "codeCommune": "49215", - "libelleAcheminement": "MONTREUIL BELLAY", - "nomCommune": "MONTREUIL BELLAY" + "codePostal": "52400", + "codeCommune": "52273", + "libelleAcheminement": "LARIVIERE ARNONCOURT", + "nomCommune": "LARIVIERE ARNONCOURT" }, { - "codePostal": "59156", - "codeCommune": "59361", - "libelleAcheminement": "LOURCHES", - "nomCommune": "LOURCHES" + "codePostal": "55700", + "codeCommune": "55036", + "libelleAcheminement": "BEAUCLAIR", + "nomCommune": "BEAUCLAIR" }, { - "codePostal": "36210", - "codeCommune": "36229", - "libelleAcheminement": "VAL FOUZON", - "nomCommune": "VAL FOUZON" + "codePostal": "63250", + "codeCommune": "63066", + "libelleAcheminement": "CELLES SUR DUROLLE", + "nomCommune": "CELLES SUR DUROLLE" }, { - "codePostal": "30630", - "codeCommune": "30343", - "libelleAcheminement": "VERFEUIL", - "nomCommune": "VERFEUIL" + "codePostal": "09240", + "codeCommune": "09001", + "libelleAcheminement": "AIGUES JUNTES", + "nomCommune": "AIGUES JUNTES" }, { - "codePostal": "49110", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "62130", + "codeCommune": "62767", + "libelleAcheminement": "ST POL SUR TERNOISE", + "nomCommune": "ST POL SUR TERNOISE" }, { - "codePostal": "59530", - "codeCommune": "59363", - "libelleAcheminement": "LOUVIGNIES QUESNOY", - "nomCommune": "LOUVIGNIES QUESNOY" + "codePostal": "52360", + "codeCommune": "52280", + "libelleAcheminement": "LECEY", + "nomCommune": "LECEY" }, { - "codePostal": "36170", - "codeCommune": "36239", - "libelleAcheminement": "VIGOUX", - "nomCommune": "VIGOUX" + "codePostal": "55250", + "codeCommune": "55038", + "libelleAcheminement": "BEAULIEU EN ARGONNE", + "nomCommune": "BEAULIEU EN ARGONNE" }, { - "codePostal": "30260", - "codeCommune": "30349", - "libelleAcheminement": "VIC LE FESQ", - "nomCommune": "VIC LE FESQ" + "codePostal": "63122", + "codeCommune": "63070", + "libelleAcheminement": "CEYRAT", + "nomCommune": "CEYRAT" }, { - "codePostal": "49110", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "09800", + "codeCommune": "09014", + "libelleAcheminement": "ARGEIN", + "nomCommune": "ARGEIN" }, { - "codePostal": "59390", - "codeCommune": "59367", - "libelleAcheminement": "LYS LEZ LANNOY", - "nomCommune": "LYS LEZ LANNOY" + "codePostal": "62870", + "codeCommune": "62768", + "libelleAcheminement": "ST REMY AU BOIS", + "nomCommune": "ST REMY AU BOIS" }, { - "codePostal": "36110", - "codeCommune": "36242", - "libelleAcheminement": "VILLEGONGIS", - "nomCommune": "VILLEGONGIS" + "codePostal": "52230", + "codeCommune": "52288", + "libelleAcheminement": "LEZEVILLE", + "nomCommune": "LEZEVILLE" }, { - "codePostal": "30400", - "codeCommune": "30351", - "libelleAcheminement": "VILLENEUVE LES AVIGNON", - "nomCommune": "VILLENEUVE LES AVIGNON" + "codePostal": "55100", + "codeCommune": "55042", + "libelleAcheminement": "BELLERAY", + "nomCommune": "BELLERAY" }, { - "codePostal": "49270", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "63210", + "codeCommune": "63071", + "libelleAcheminement": "CEYSSAT", + "nomCommune": "CEYSSAT" }, { - "codePostal": "59110", - "codeCommune": "59368", - "libelleAcheminement": "LA MADELEINE", - "nomCommune": "LA MADELEINE" + "codePostal": "09120", + "codeCommune": "09021", + "libelleAcheminement": "ARTIX", + "nomCommune": "ARTIX" }, { - "codePostal": "36100", - "codeCommune": "36248", - "libelleAcheminement": "VOUILLON", - "nomCommune": "VOUILLON" + "codePostal": "62430", + "codeCommune": "62771", + "libelleAcheminement": "SALLAUMINES", + "nomCommune": "SALLAUMINES" }, { - "codePostal": "30250", - "codeCommune": "30352", - "libelleAcheminement": "VILLEVIEILLE", - "nomCommune": "VILLEVIEILLE" + "codePostal": "52000", + "codeCommune": "52297", + "libelleAcheminement": "LUZY SUR MARNE", + "nomCommune": "LUZY SUR MARNE" }, { - "codePostal": "49600", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "55100", + "codeCommune": "55045", + "libelleAcheminement": "BELRUPT EN VERDUNOIS", + "nomCommune": "BELRUPT EN VERDUNOIS" }, { - "codePostal": "59600", - "codeCommune": "59370", - "libelleAcheminement": "MAIRIEUX", - "nomCommune": "MAIRIEUX" + "codePostal": "63600", + "codeCommune": "63081", + "libelleAcheminement": "CHAMPETIERES", + "nomCommune": "CHAMPETIERES" }, { - "codePostal": "37400", - "codeCommune": "37003", - "libelleAcheminement": "AMBOISE", - "nomCommune": "AMBOISE" + "codePostal": "09100", + "codeCommune": "09022", + "libelleAcheminement": "ARVIGNA", + "nomCommune": "ARVIGNA" }, { - "codePostal": "31550", - "codeCommune": "31002", - "libelleAcheminement": "AIGNES", - "nomCommune": "AIGNES" + "codePostal": "62830", + "codeCommune": "62773", + "libelleAcheminement": "SAMER", + "nomCommune": "SAMER" }, { - "codePostal": "49640", - "codeCommune": "49220", - "libelleAcheminement": "MORANNES SUR SARTHE DAUMERAY", - "nomCommune": "MORANNES SUR SARTHE DAUMERAY" + "codePostal": "52240", + "codeCommune": "52301", + "libelleAcheminement": "MAISONCELLES", + "nomCommune": "MAISONCELLES" }, { - "codePostal": "59870", - "codeCommune": "59375", - "libelleAcheminement": "MARCHIENNES", - "nomCommune": "MARCHIENNES" + "codePostal": "55300", + "codeCommune": "55054", + "libelleAcheminement": "BISLEE", + "nomCommune": "BISLEE" }, { - "codePostal": "37110", - "codeCommune": "37010", - "libelleAcheminement": "AUZOUER EN TOURAINE", - "nomCommune": "AUZOUER EN TOURAINE" + "codePostal": "63340", + "codeCommune": "63091", + "libelleAcheminement": "CHARBONNIER LES MINES", + "nomCommune": "CHARBONNIER LES MINES" }, { - "codePostal": "31440", - "codeCommune": "31015", - "libelleAcheminement": "ARGUT DESSOUS", - "nomCommune": "ARGUT DESSOUS" + "codePostal": "09110", + "codeCommune": "09023", + "libelleAcheminement": "ASCOU", + "nomCommune": "ASCOU" }, { - "codePostal": "49390", - "codeCommune": "49221", - "libelleAcheminement": "MOULIHERNE", - "nomCommune": "MOULIHERNE" + "codePostal": "62231", + "codeCommune": "62774", + "libelleAcheminement": "SANGATTE", + "nomCommune": "SANGATTE" }, { - "codePostal": "59159", - "codeCommune": "59377", - "libelleAcheminement": "MARCOING", - "nomCommune": "MARCOING" + "codePostal": "52320", + "codeCommune": "52310", + "libelleAcheminement": "MARBEVILLE", + "nomCommune": "MARBEVILLE" }, { - "codePostal": "37220", - "codeCommune": "37012", - "libelleAcheminement": "AVON LES ROCHES", - "nomCommune": "AVON LES ROCHES" + "codePostal": "55400", + "codeCommune": "55055", + "libelleAcheminement": "BLANZEE", + "nomCommune": "BLANZEE" }, { - "codePostal": "31570", - "codeCommune": "31029", - "libelleAcheminement": "AURIN", - "nomCommune": "AURIN" + "codePostal": "63410", + "codeCommune": "63092", + "libelleAcheminement": "CHARBONNIERES LES VARENNES", + "nomCommune": "CHARBONNIERES LES VARENNES" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "09800", + "codeCommune": "09025", + "libelleAcheminement": "AUCAZEIN", + "nomCommune": "AUCAZEIN" }, { - "codePostal": "59770", - "codeCommune": "59383", - "libelleAcheminement": "MARLY", - "nomCommune": "MARLY" + "codePostal": "62870", + "codeCommune": "62783", + "libelleAcheminement": "SAULCHOY", + "nomCommune": "SAULCHOY" }, { - "codePostal": "37600", - "codeCommune": "37020", - "libelleAcheminement": "BEAULIEU LES LOCHES", - "nomCommune": "BEAULIEU LES LOCHES" + "codePostal": "52360", + "codeCommune": "52311", + "libelleAcheminement": "MARCILLY EN BASSIGNY", + "nomCommune": "MARCILLY EN BASSIGNY" }, { - "codePostal": "31440", - "codeCommune": "31040", - "libelleAcheminement": "BACHOS", - "nomCommune": "BACHOS" + "codePostal": "55160", + "codeCommune": "55060", + "libelleAcheminement": "BONZEE", + "nomCommune": "BONZEE" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "63410", + "codeCommune": "63093", + "libelleAcheminement": "CHARBONNIERES LES VIEILLES", + "nomCommune": "CHARBONNIERES LES VIEILLES" }, { - "codePostal": "59241", - "codeCommune": "59389", - "libelleAcheminement": "MASNIERES", - "nomCommune": "MASNIERES" + "codePostal": "09800", + "codeCommune": "09027", + "libelleAcheminement": "AUGIREIN", + "nomCommune": "AUGIREIN" }, { - "codePostal": "37420", - "codeCommune": "37022", - "libelleAcheminement": "BEAUMONT EN VERON", - "nomCommune": "BEAUMONT EN VERON" + "codePostal": "62170", + "codeCommune": "62787", + "libelleAcheminement": "SEMPY", + "nomCommune": "SEMPY" }, { - "codePostal": "31110", - "codeCommune": "31042", - "libelleAcheminement": "BAGNERES DE LUCHON", - "nomCommune": "BAGNERES DE LUCHON" + "codePostal": "52200", + "codeCommune": "52312", + "libelleAcheminement": "MARDOR", + "nomCommune": "MARDOR" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "55300", + "codeCommune": "55064", + "libelleAcheminement": "BOUQUEMONT", + "nomCommune": "BOUQUEMONT" }, { - "codePostal": "59172", - "codeCommune": "59391", - "libelleAcheminement": "MASTAING", - "nomCommune": "MASTAING" + "codePostal": "63290", + "codeCommune": "63095", + "libelleAcheminement": "CHARNAT", + "nomCommune": "CHARNAT" }, { - "codePostal": "37140", - "codeCommune": "37024", - "libelleAcheminement": "BENAIS", - "nomCommune": "BENAIS" + "codePostal": "09220", + "codeCommune": "09030", + "libelleAcheminement": "AUZAT", + "nomCommune": "AUZAT" }, { - "codePostal": "31440", - "codeCommune": "31046", - "libelleAcheminement": "BAREN", - "nomCommune": "BAREN" + "codePostal": "62310", + "codeCommune": "62790", + "libelleAcheminement": "SENLIS", + "nomCommune": "SENLIS" }, { - "codePostal": "49340", - "codeCommune": "49231", - "libelleAcheminement": "NUAILLE", - "nomCommune": "NUAILLE" + "codePostal": "52140", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "59600", - "codeCommune": "59392", - "libelleAcheminement": "MAUBEUGE", - "nomCommune": "MAUBEUGE" + "codePostal": "55120", + "codeCommune": "55068", + "libelleAcheminement": "BRABANT EN ARGONNE", + "nomCommune": "BRABANT EN ARGONNE" }, { - "codePostal": "37330", - "codeCommune": "37037", - "libelleAcheminement": "BRECHES", - "nomCommune": "BRECHES" + "codePostal": "63390", + "codeCommune": "63100", + "libelleAcheminement": "CHATEAUNEUF LES BAINS", + "nomCommune": "CHATEAUNEUF LES BAINS" }, { - "codePostal": "31360", - "codeCommune": "31050", - "libelleAcheminement": "BEAUCHALOT", - "nomCommune": "BEAUCHALOT" + "codePostal": "09250", + "codeCommune": "09031", + "libelleAcheminement": "AXIAT", + "nomCommune": "AXIAT" }, { - "codePostal": "49360", - "codeCommune": "49240", - "libelleAcheminement": "LA PLAINE", - "nomCommune": "LA PLAINE" + "codePostal": "62380", + "codeCommune": "62794", + "libelleAcheminement": "SETQUES", + "nomCommune": "SETQUES" }, { - "codePostal": "59158", - "codeCommune": "59393", - "libelleAcheminement": "MAULDE", - "nomCommune": "MAULDE" + "codePostal": "52140", + "codeCommune": "52332", + "libelleAcheminement": "VAL DE MEUSE", + "nomCommune": "VAL DE MEUSE" }, { - "codePostal": "37350", - "codeCommune": "37044", - "libelleAcheminement": "LA CELLE GUENAND", - "nomCommune": "LA CELLE GUENAND" + "codePostal": "55150", + "codeCommune": "55071", + "libelleAcheminement": "BRANDEVILLE", + "nomCommune": "BRANDEVILLE" }, { - "codePostal": "31370", - "codeCommune": "31051", - "libelleAcheminement": "BEAUFORT", - "nomCommune": "BEAUFORT" + "codePostal": "63320", + "codeCommune": "63111", + "libelleAcheminement": "CLEMENSAT", + "nomCommune": "CLEMENSAT" }, { - "codePostal": "49290", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "09110", + "codeCommune": "09032", + "libelleAcheminement": "AX LES THERMES", + "nomCommune": "AX LES THERMES" }, { - "codePostal": "59246", - "codeCommune": "59411", - "libelleAcheminement": "MONS EN PEVELE", - "nomCommune": "MONS EN PEVELE" + "codePostal": "62123", + "codeCommune": "62796", + "libelleAcheminement": "SIMENCOURT", + "nomCommune": "SIMENCOURT" }, { - "codePostal": "37460", - "codeCommune": "37046", - "libelleAcheminement": "CERE LA RONDE", - "nomCommune": "CERE LA RONDE" + "codePostal": "52700", + "codeCommune": "52342", + "libelleAcheminement": "MORIONVILLIERS", + "nomCommune": "MORIONVILLIERS" }, { - "codePostal": "31870", - "codeCommune": "31052", - "libelleAcheminement": "BEAUMONT SUR LEZE", - "nomCommune": "BEAUMONT SUR LEZE" + "codePostal": "55150", + "codeCommune": "55076", + "libelleAcheminement": "BREHEVILLE", + "nomCommune": "BREHEVILLE" }, { - "codePostal": "49290", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "63100", + "codeCommune": "63113", + "libelleAcheminement": "CLERMONT FERRAND", + "nomCommune": "CLERMONT FERRAND" }, { - "codePostal": "59158", - "codeCommune": "59418", - "libelleAcheminement": "MORTAGNE DU NORD", - "nomCommune": "MORTAGNE DU NORD" + "codePostal": "09230", + "codeCommune": "09033", + "libelleAcheminement": "BAGERT", + "nomCommune": "BAGERT" }, { - "codePostal": "37210", - "codeCommune": "37052", - "libelleAcheminement": "CHANCAY", - "nomCommune": "CHANCAY" + "codePostal": "62810", + "codeCommune": "62798", + "libelleAcheminement": "SOMBRIN", + "nomCommune": "SOMBRIN" }, { - "codePostal": "31290", - "codeCommune": "31054", - "libelleAcheminement": "BEAUTEVILLE", - "nomCommune": "BEAUTEVILLE" + "codePostal": "52160", + "codeCommune": "52344", + "libelleAcheminement": "MOUILLERON", + "nomCommune": "MOUILLERON" }, { - "codePostal": "49410", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "55600", + "codeCommune": "55077", + "libelleAcheminement": "BREUX", + "nomCommune": "BREUX" }, { - "codePostal": "59310", - "codeCommune": "59419", - "libelleAcheminement": "MOUCHIN", - "nomCommune": "MOUCHIN" + "codePostal": "63490", + "codeCommune": "63119", + "libelleAcheminement": "CONDAT LES MONTBOISSIER", + "nomCommune": "CONDAT LES MONTBOISSIER" }, { - "codePostal": "37390", - "codeCommune": "37054", - "libelleAcheminement": "CHANCEAUX SUR CHOISILLE", - "nomCommune": "CHANCEAUX SUR CHOISILLE" + "codePostal": "09800", + "codeCommune": "09035", + "libelleAcheminement": "BALAGUERES", + "nomCommune": "BALAGUERES" }, { - "codePostal": "31700", - "codeCommune": "31056", - "libelleAcheminement": "BEAUZELLE", - "nomCommune": "BEAUZELLE" + "codePostal": "62850", + "codeCommune": "62803", + "libelleAcheminement": "SURQUES", + "nomCommune": "SURQUES" }, { - "codePostal": "49410", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "52000", + "codeCommune": "52349", + "libelleAcheminement": "NEUILLY SUR SUIZE", + "nomCommune": "NEUILLY SUR SUIZE" }, { - "codePostal": "59161", - "codeCommune": "59422", - "libelleAcheminement": "NAVES", - "nomCommune": "NAVES" + "codePostal": "55120", + "codeCommune": "55082", + "libelleAcheminement": "BROCOURT EN ARGONNE", + "nomCommune": "BROCOURT EN ARGONNE" }, { - "codePostal": "37530", - "codeCommune": "37060", - "libelleAcheminement": "CHARGE", - "nomCommune": "CHARGE" + "codePostal": "63730", + "codeCommune": "63120", + "libelleAcheminement": "CORENT", + "nomCommune": "CORENT" }, { - "codePostal": "31540", - "codeCommune": "31060", - "libelleAcheminement": "BELESTA EN LAURAGAIS", - "nomCommune": "BELESTA EN LAURAGAIS" + "codePostal": "09700", + "codeCommune": "09040", + "libelleAcheminement": "LA BASTIDE DE LORDAT", + "nomCommune": "LA BASTIDE DE LORDAT" }, { - "codePostal": "49130", - "codeCommune": "49246", - "libelleAcheminement": "LES PONTS DE CE", - "nomCommune": "LES PONTS DE CE" + "codePostal": "62810", + "codeCommune": "62804", + "libelleAcheminement": "SUS ST LEGER", + "nomCommune": "SUS ST LEGER" }, { - "codePostal": "59554", - "codeCommune": "59428", - "libelleAcheminement": "NEUVILLE ST REMY", - "nomCommune": "NEUVILLE ST REMY" + "codePostal": "52230", + "codeCommune": "52357", + "libelleAcheminement": "NONCOURT SUR LE RONGEANT", + "nomCommune": "NONCOURT SUR LE RONGEANT" }, { - "codePostal": "37330", - "codeCommune": "37062", - "libelleAcheminement": "CHATEAU LA VALLIERE", - "nomCommune": "CHATEAU LA VALLIERE" + "codePostal": "55190", + "codeCommune": "55084", + "libelleAcheminement": "BROUSSEY EN BLOIS", + "nomCommune": "BROUSSEY EN BLOIS" }, { - "codePostal": "31440", - "codeCommune": "31067", - "libelleAcheminement": "BEZINS GARRAUX", - "nomCommune": "BEZINS GARRAUX" + "codePostal": "63220", + "codeCommune": "63139", + "libelleAcheminement": "DORE L EGLISE", + "nomCommune": "DORE L EGLISE" }, { - "codePostal": "49420", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "09000", + "codeCommune": "09044", + "libelleAcheminement": "BAULOU", + "nomCommune": "BAULOU" }, { - "codePostal": "59230", - "codeCommune": "59434", - "libelleAcheminement": "NIVELLE", - "nomCommune": "NIVELLE" + "codePostal": "62134", + "codeCommune": "62808", + "libelleAcheminement": "TENEUR", + "nomCommune": "TENEUR" }, { - "codePostal": "37350", - "codeCommune": "37064", - "libelleAcheminement": "CHAUMUSSAY", - "nomCommune": "CHAUMUSSAY" + "codePostal": "52110", + "codeCommune": "52359", + "libelleAcheminement": "NULLY", + "nomCommune": "NULLY" }, { - "codePostal": "31620", - "codeCommune": "31079", - "libelleAcheminement": "BOULOC", - "nomCommune": "BOULOC" + "codePostal": "55300", + "codeCommune": "55093", + "libelleAcheminement": "BUXIERES SOUS LES COTES", + "nomCommune": "BUXIERES SOUS LES COTES" }, { - "codePostal": "49520", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "63850", + "codeCommune": "63144", + "libelleAcheminement": "EGLISENEUVE D ENTRAIGUES", + "nomCommune": "EGLISENEUVE D ENTRAIGUES" }, { - "codePostal": "59670", - "codeCommune": "59436", - "libelleAcheminement": "NOORDPEENE", - "nomCommune": "NOORDPEENE" + "codePostal": "09800", + "codeCommune": "09069", + "libelleAcheminement": "BUZAN", + "nomCommune": "BUZAN" }, { - "codePostal": "37370", - "codeCommune": "37068", - "libelleAcheminement": "CHEMILLE SUR DEME", - "nomCommune": "CHEMILLE SUR DEME" + "codePostal": "62127", + "codeCommune": "62809", + "libelleAcheminement": "TERNAS", + "nomCommune": "TERNAS" }, { - "codePostal": "31570", - "codeCommune": "31082", - "libelleAcheminement": "BOURG ST BERNARD", - "nomCommune": "BOURG ST BERNARD" + "codePostal": "52360", + "codeCommune": "52363", + "libelleAcheminement": "ORBIGNY AU VAL", + "nomCommune": "ORBIGNY AU VAL" }, { - "codePostal": "49430", - "codeCommune": "49257", - "libelleAcheminement": "LES RAIRIES", - "nomCommune": "LES RAIRIES" + "codePostal": "55400", + "codeCommune": "55094", + "libelleAcheminement": "BUZY DARMONT", + "nomCommune": "BUZY DARMONT" }, { - "codePostal": "59670", - "codeCommune": "59443", - "libelleAcheminement": "OCHTEZEELE", - "nomCommune": "OCHTEZEELE" + "codePostal": "63720", + "codeCommune": "63149", + "libelleAcheminement": "ENTRAIGUES", + "nomCommune": "ENTRAIGUES" }, { - "codePostal": "37140", - "codeCommune": "37074", - "libelleAcheminement": "CHOUZE SUR LOIRE", - "nomCommune": "CHOUZE SUR LOIRE" + "codePostal": "09350", + "codeCommune": "09075", + "libelleAcheminement": "CAMPAGNE SUR ARIZE", + "nomCommune": "CAMPAGNE SUR ARIZE" }, { - "codePostal": "31480", - "codeCommune": "31096", - "libelleAcheminement": "CABANAC SEGUENVILLE", - "nomCommune": "CABANAC SEGUENVILLE" + "codePostal": "62130", + "codeCommune": "62813", + "libelleAcheminement": "LA THIEULOYE", + "nomCommune": "LA THIEULOYE" }, { - "codePostal": "49170", - "codeCommune": "49266", - "libelleAcheminement": "ST AUGUSTIN DES BOIS", - "nomCommune": "ST AUGUSTIN DES BOIS" + "codePostal": "52200", + "codeCommune": "52366", + "libelleAcheminement": "ORMANCEY", + "nomCommune": "ORMANCEY" }, { - "codePostal": "59530", - "codeCommune": "59468", - "libelleAcheminement": "POTELLE", - "nomCommune": "POTELLE" + "codePostal": "55210", + "codeCommune": "55096", + "libelleAcheminement": "CHAILLON", + "nomCommune": "CHAILLON" }, { - "codePostal": "37500", - "codeCommune": "37076", - "libelleAcheminement": "CINAIS", - "nomCommune": "CINAIS" + "codePostal": "63390", + "codeCommune": "63152", + "libelleAcheminement": "ESPINASSE", + "nomCommune": "ESPINASSE" }, { - "codePostal": "31460", - "codeCommune": "31097", - "libelleAcheminement": "LE CABANIAL", - "nomCommune": "LE CABANIAL" + "codePostal": "09130", + "codeCommune": "09079", + "libelleAcheminement": "CARLA BAYLE", + "nomCommune": "CARLA BAYLE" }, { - "codePostal": "49260", - "codeCommune": "49291", - "libelleAcheminement": "ST JUST SUR DIVE", - "nomCommune": "ST JUST SUR DIVE" + "codePostal": "62127", + "codeCommune": "62820", + "libelleAcheminement": "TINCQUES", + "nomCommune": "TINCQUES" }, { - "codePostal": "59840", - "codeCommune": "59470", - "libelleAcheminement": "PREMESQUES", - "nomCommune": "PREMESQUES" + "codePostal": "52150", + "codeCommune": "52372", + "libelleAcheminement": "OUTREMECOURT", + "nomCommune": "OUTREMECOURT" }, { - "codePostal": "37130", - "codeCommune": "37077", - "libelleAcheminement": "CINQ MARS LA PILE", - "nomCommune": "CINQ MARS LA PILE" + "codePostal": "55100", + "codeCommune": "55099", + "libelleAcheminement": "CHAMPNEUVILLE", + "nomCommune": "CHAMPNEUVILLE" }, { - "codePostal": "31480", - "codeCommune": "31098", - "libelleAcheminement": "CADOURS", - "nomCommune": "CADOURS" + "codePostal": "63570", + "codeCommune": "63156", + "libelleAcheminement": "ESTEIL", + "nomCommune": "ESTEIL" }, { - "codePostal": "49190", - "codeCommune": "49292", - "libelleAcheminement": "VAL DU LAYON", - "nomCommune": "VAL DU LAYON" + "codePostal": "09100", + "codeCommune": "09081", + "libelleAcheminement": "LE CARLARET", + "nomCommune": "LE CARLARET" }, { - "codePostal": "59288", - "codeCommune": "59472", - "libelleAcheminement": "PREUX AU BOIS", - "nomCommune": "PREUX AU BOIS" + "codePostal": "62830", + "codeCommune": "62821", + "libelleAcheminement": "TINGRY", + "nomCommune": "TINGRY" }, { - "codePostal": "37800", - "codeCommune": "37098", - "libelleAcheminement": "DRACHE", - "nomCommune": "DRACHE" + "codePostal": "52400", + "codeCommune": "52377", + "libelleAcheminement": "PARNOY EN BASSIGNY", + "nomCommune": "PARNOY EN BASSIGNY" }, { - "codePostal": "31470", - "codeCommune": "31101", - "libelleAcheminement": "CAMBERNARD", - "nomCommune": "CAMBERNARD" + "codePostal": "55270", + "codeCommune": "55103", + "libelleAcheminement": "CHARPENTRY", + "nomCommune": "CHARPENTRY" }, { - "codePostal": "49070", - "codeCommune": "49298", - "libelleAcheminement": "ST LEGER DE LINIERES", - "nomCommune": "ST LEGER DE LINIERES" + "codePostal": "63360", + "codeCommune": "63164", + "libelleAcheminement": "GERZAT", + "nomCommune": "GERZAT" }, { - "codePostal": "59185", - "codeCommune": "59477", - "libelleAcheminement": "PROVIN", - "nomCommune": "PROVIN" + "codePostal": "09800", + "codeCommune": "09085", + "libelleAcheminement": "CASTILLON EN COUSERANS", + "nomCommune": "CASTILLON EN COUSERANS" }, { - "codePostal": "37190", - "codeCommune": "37099", - "libelleAcheminement": "DRUYE", - "nomCommune": "DRUYE" + "codePostal": "62630", + "codeCommune": "62832", + "libelleAcheminement": "TUBERSENT", + "nomCommune": "TUBERSENT" }, { - "codePostal": "31310", - "codeCommune": "31103", - "libelleAcheminement": "CANENS", - "nomCommune": "CANENS" + "codePostal": "52300", + "codeCommune": "52378", + "libelleAcheminement": "PAROY SUR SAULX", + "nomCommune": "PAROY SUR SAULX" }, { - "codePostal": "49170", - "codeCommune": "49298", - "libelleAcheminement": "ST LEGER DE LINIERES", - "nomCommune": "ST LEGER DE LINIERES" + "codePostal": "55300", + "codeCommune": "55111", + "libelleAcheminement": "CHAUVONCOURT", + "nomCommune": "CHAUVONCOURT" }, { - "codePostal": "59680", - "codeCommune": "59483", - "libelleAcheminement": "QUIEVELON", - "nomCommune": "QUIEVELON" + "codePostal": "63470", + "codeCommune": "63175", + "libelleAcheminement": "HERMENT", + "nomCommune": "HERMENT" }, { - "codePostal": "37150", - "codeCommune": "37110", - "libelleAcheminement": "FRANCUEIL", - "nomCommune": "FRANCUEIL" + "codePostal": "09160", + "codeCommune": "09086", + "libelleAcheminement": "CAUMONT", + "nomCommune": "CAUMONT" }, { - "codePostal": "31260", - "codeCommune": "31110", - "libelleAcheminement": "CASSAGNE", - "nomCommune": "CASSAGNE" + "codePostal": "62880", + "codeCommune": "62842", + "libelleAcheminement": "VENDIN LE VIEIL", + "nomCommune": "VENDIN LE VIEIL" }, { - "codePostal": "49450", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "52500", + "codeCommune": "52388", + "libelleAcheminement": "PIERREMONT SUR AMANCE", + "nomCommune": "PIERREMONT SUR AMANCE" }, { - "codePostal": "59320", - "codeCommune": "59487", - "libelleAcheminement": "RADINGHEM EN WEPPES", - "nomCommune": "RADINGHEM EN WEPPES" + "codePostal": "55270", + "codeCommune": "55113", + "libelleAcheminement": "CHEPPY", + "nomCommune": "CHEPPY" }, { - "codePostal": "37220", - "codeCommune": "37119", - "libelleAcheminement": "L ILE BOUCHARD", - "nomCommune": "L ILE BOUCHARD" + "codePostal": "63290", + "codeCommune": "63184", + "libelleAcheminement": "LACHAUX", + "nomCommune": "LACHAUX" }, { - "codePostal": "31230", - "codeCommune": "31115", - "libelleAcheminement": "CASTELGAILLARD", - "nomCommune": "CASTELGAILLARD" + "codePostal": "09250", + "codeCommune": "09087", + "libelleAcheminement": "CAUSSOU", + "nomCommune": "CAUSSOU" }, { - "codePostal": "49450", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "62310", + "codeCommune": "62843", + "libelleAcheminement": "VERCHIN", + "nomCommune": "VERCHIN" }, { - "codePostal": "59177", - "codeCommune": "59490", - "libelleAcheminement": "RAINSARS", - "nomCommune": "RAINSARS" + "codePostal": "52360", + "codeCommune": "52392", + "libelleAcheminement": "PLESNOY", + "nomCommune": "PLESNOY" }, { - "codePostal": "37270", - "codeCommune": "37124", - "libelleAcheminement": "LARCAY", - "nomCommune": "LARCAY" + "codePostal": "55200", + "codeCommune": "55114", + "libelleAcheminement": "CHONVILLE MALAUMONT", + "nomCommune": "CHONVILLE MALAUMONT" }, { - "codePostal": "31780", - "codeCommune": "31116", - "libelleAcheminement": "CASTELGINEST", - "nomCommune": "CASTELGINEST" + "codePostal": "63380", + "codeCommune": "63186", + "libelleAcheminement": "LANDOGNE", + "nomCommune": "LANDOGNE" }, { - "codePostal": "49260", - "codeCommune": "49302", - "libelleAcheminement": "ST MACAIRE DU BOIS", - "nomCommune": "ST MACAIRE DU BOIS" + "codePostal": "09250", + "codeCommune": "09088", + "libelleAcheminement": "CAYCHAX", + "nomCommune": "CAYCHAX" }, { - "codePostal": "59590", - "codeCommune": "59491", - "libelleAcheminement": "RAISMES", - "nomCommune": "RAISMES" + "codePostal": "62980", + "codeCommune": "62846", + "libelleAcheminement": "VERMELLES", + "nomCommune": "VERMELLES" }, { - "codePostal": "37500", - "codeCommune": "37126", - "libelleAcheminement": "LERNE", - "nomCommune": "LERNE" + "codePostal": "52500", + "codeCommune": "52394", + "libelleAcheminement": "POINSON LES FAYL", + "nomCommune": "POINSON LES FAYL" }, { - "codePostal": "31110", - "codeCommune": "31125", - "libelleAcheminement": "CATHERVIELLE", - "nomCommune": "CATHERVIELLE" + "codePostal": "55120", + "codeCommune": "55117", + "libelleAcheminement": "CLERMONT EN ARGONNE", + "nomCommune": "CLERMONT EN ARGONNE" }, { - "codePostal": "49170", - "codeCommune": "49306", - "libelleAcheminement": "ST MARTIN DU FOUILLOUX", - "nomCommune": "ST MARTIN DU FOUILLOUX" + "codePostal": "63700", + "codeCommune": "63187", + "libelleAcheminement": "LAPEYROUSE", + "nomCommune": "LAPEYROUSE" }, { - "codePostal": "59173", - "codeCommune": "59497", - "libelleAcheminement": "RENESCURE", - "nomCommune": "RENESCURE" + "codePostal": "09230", + "codeCommune": "09098", + "libelleAcheminement": "CONTRAZY", + "nomCommune": "CONTRAZY" }, { - "codePostal": "37130", - "codeCommune": "37128", - "libelleAcheminement": "LIGNIERES DE TOURAINE", - "nomCommune": "LIGNIERES DE TOURAINE" + "codePostal": "62144", + "codeCommune": "62854", + "libelleAcheminement": "VILLERS AU BOIS", + "nomCommune": "VILLERS AU BOIS" }, { - "codePostal": "31110", - "codeCommune": "31127", - "libelleAcheminement": "CAUBOUS", - "nomCommune": "CAUBOUS" + "codePostal": "52400", + "codeCommune": "52400", + "libelleAcheminement": "LE CHATELET SUR MEUSE", + "nomCommune": "LE CHATELET SUR MEUSE" }, { - "codePostal": "49630", - "codeCommune": "49307", - "libelleAcheminement": "LOIRE AUTHION", - "nomCommune": "LOIRE AUTHION" + "codePostal": "55000", + "codeCommune": "55120", + "libelleAcheminement": "COMBLES EN BARROIS", + "nomCommune": "COMBLES EN BARROIS" }, { - "codePostal": "59277", - "codeCommune": "59502", - "libelleAcheminement": "RIEUX EN CAMBRESIS", - "nomCommune": "RIEUX EN CAMBRESIS" + "codePostal": "63690", + "codeCommune": "63190", + "libelleAcheminement": "LARODDE", + "nomCommune": "LARODDE" }, { - "codePostal": "37500", - "codeCommune": "37129", - "libelleAcheminement": "LIGRE", - "nomCommune": "LIGRE" + "codePostal": "09000", + "codeCommune": "09099", + "libelleAcheminement": "COS", + "nomCommune": "COS" }, { - "codePostal": "31440", - "codeCommune": "31132", - "libelleAcheminement": "CAZAUX LAYRISSE", - "nomCommune": "CAZAUX LAYRISSE" + "codePostal": "62138", + "codeCommune": "62863", + "libelleAcheminement": "VIOLAINES", + "nomCommune": "VIOLAINES" }, { - "codePostal": "49400", - "codeCommune": "49328", - "libelleAcheminement": "SAUMUR", - "nomCommune": "SAUMUR" + "codePostal": "52190", + "codeCommune": "52405", + "libelleAcheminement": "LE MONTSAUGEONNAIS", + "nomCommune": "LE MONTSAUGEONNAIS" }, { - "codePostal": "59990", - "codeCommune": "59505", - "libelleAcheminement": "ROMBIES ET MARCHIPONT", - "nomCommune": "ROMBIES ET MARCHIPONT" + "codePostal": "55000", + "codeCommune": "55123", + "libelleAcheminement": "LES HAUTS DE CHEE", + "nomCommune": "LES HAUTS DE CHEE" }, { - "codePostal": "37400", - "codeCommune": "37138", - "libelleAcheminement": "LUSSAULT SUR LOIRE", - "nomCommune": "LUSSAULT SUR LOIRE" + "codePostal": "63320", + "codeCommune": "63199", + "libelleAcheminement": "LUDESSE", + "nomCommune": "LUDESSE" }, { - "codePostal": "31110", - "codeCommune": "31133", - "libelleAcheminement": "CAZEAUX DE LARBOUST", - "nomCommune": "CAZEAUX DE LARBOUST" + "codePostal": "09120", + "codeCommune": "09101", + "libelleAcheminement": "COUSSA", + "nomCommune": "COUSSA" }, { - "codePostal": "49170", - "codeCommune": "49329", - "libelleAcheminement": "SAVENNIERES", - "nomCommune": "SAVENNIERES" + "codePostal": "62450", + "codeCommune": "62876", + "libelleAcheminement": "WARLENCOURT EAUCOURT", + "nomCommune": "WARLENCOURT EAUCOURT" }, { - "codePostal": "59223", - "codeCommune": "59508", - "libelleAcheminement": "RONCQ", - "nomCommune": "RONCQ" + "codePostal": "52130", + "codeCommune": "52413", + "libelleAcheminement": "RACHECOURT SUZEMONT", + "nomCommune": "RACHECOURT SUZEMONT" }, { - "codePostal": "37330", - "codeCommune": "37146", - "libelleAcheminement": "MARCILLY SUR MAULNE", - "nomCommune": "MARCILLY SUR MAULNE" + "codePostal": "55800", + "codeCommune": "55134", + "libelleAcheminement": "COUVONGES", + "nomCommune": "COUVONGES" }, { - "codePostal": "31620", - "codeCommune": "31136", - "libelleAcheminement": "CEPET", - "nomCommune": "CEPET" + "codePostal": "63510", + "codeCommune": "63204", + "libelleAcheminement": "MALINTRAT", + "nomCommune": "MALINTRAT" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "09500", + "codeCommune": "09102", + "libelleAcheminement": "COUTENS", + "nomCommune": "COUTENS" }, { - "codePostal": "59100", - "codeCommune": "59512", - "libelleAcheminement": "ROUBAIX", - "nomCommune": "ROUBAIX" + "codePostal": "62810", + "codeCommune": "62879", + "libelleAcheminement": "WARLUZEL", + "nomCommune": "WARLUZEL" }, { - "codePostal": "37800", - "codeCommune": "37147", - "libelleAcheminement": "MARCILLY SUR VIENNE", - "nomCommune": "MARCILLY SUR VIENNE" + "codePostal": "52140", + "codeCommune": "52416", + "libelleAcheminement": "RANGECOURT", + "nomCommune": "RANGECOURT" }, { - "codePostal": "31290", - "codeCommune": "31137", - "libelleAcheminement": "CESSALES", - "nomCommune": "CESSALES" + "codePostal": "55000", + "codeCommune": "55138", + "libelleAcheminement": "CULEY", + "nomCommune": "CULEY" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "63480", + "codeCommune": "63207", + "libelleAcheminement": "MARAT", + "nomCommune": "MARAT" }, { - "codePostal": "59530", - "codeCommune": "59518", - "libelleAcheminement": "RUESNES", - "nomCommune": "RUESNES" + "codePostal": "09800", + "codeCommune": "09111", + "libelleAcheminement": "ENGOMER", + "nomCommune": "ENGOMER" }, { - "codePostal": "37380", - "codeCommune": "37153", - "libelleAcheminement": "MONNAIE", - "nomCommune": "MONNAIE" + "codePostal": "62142", + "codeCommune": "62880", + "libelleAcheminement": "LE WAST", + "nomCommune": "LE WAST" }, { - "codePostal": "31110", - "codeCommune": "31146", - "libelleAcheminement": "CIRES", - "nomCommune": "CIRES" + "codePostal": "52120", + "codeCommune": "52422", + "libelleAcheminement": "RICHEBOURG", + "nomCommune": "RICHEBOURG" }, { - "codePostal": "49520", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "55110", + "codeCommune": "55140", + "libelleAcheminement": "CUNEL", + "nomCommune": "CUNEL" }, { - "codePostal": "59226", - "codeCommune": "59519", - "libelleAcheminement": "RUMEGIES", - "nomCommune": "RUMEGIES" + "codePostal": "63230", + "codeCommune": "63219", + "libelleAcheminement": "MAZAYE", + "nomCommune": "MAZAYE" }, { - "codePostal": "37270", - "codeCommune": "37156", - "libelleAcheminement": "MONTLOUIS SUR LOIRE", - "nomCommune": "MONTLOUIS SUR LOIRE" + "codePostal": "09200", + "codeCommune": "09114", + "libelleAcheminement": "ERP", + "nomCommune": "ERP" }, { - "codePostal": "31210", - "codeCommune": "31147", - "libelleAcheminement": "CLARAC", - "nomCommune": "CLARAC" + "codePostal": "62380", + "codeCommune": "62882", + "libelleAcheminement": "WAVRANS SUR L AA", + "nomCommune": "WAVRANS SUR L AA" }, { - "codePostal": "49400", - "codeCommune": "49341", - "libelleAcheminement": "SOUZAY CHAMPIGNY", - "nomCommune": "SOUZAY CHAMPIGNY" + "codePostal": "52700", + "codeCommune": "52423", + "libelleAcheminement": "RIMAUCOURT", + "nomCommune": "RIMAUCOURT" }, { - "codePostal": "59213", - "codeCommune": "59537", - "libelleAcheminement": "ST MARTIN SUR ECAILLON", - "nomCommune": "ST MARTIN SUR ECAILLON" + "codePostal": "55130", + "codeCommune": "55150", + "libelleAcheminement": "DEMANGE BAUDIGNECOURT", + "nomCommune": "DEMANGE BAUDIGNECOURT" }, { - "codePostal": "37800", - "codeCommune": "37174", - "libelleAcheminement": "NOUATRE", - "nomCommune": "NOUATRE" + "codePostal": "63750", + "codeCommune": "63225", + "libelleAcheminement": "MESSEIX", + "nomCommune": "MESSEIX" }, { - "codePostal": "31230", - "codeCommune": "31152", - "libelleAcheminement": "COUEILLES", - "nomCommune": "COUEILLES" + "codePostal": "09200", + "codeCommune": "09119", + "libelleAcheminement": "EYCHEIL", + "nomCommune": "EYCHEIL" }, { - "codePostal": "49280", - "codeCommune": "49343", - "libelleAcheminement": "LA TESSOUALLE", - "nomCommune": "LA TESSOUALLE" + "codePostal": "62126", + "codeCommune": "62894", + "libelleAcheminement": "WIMILLE", + "nomCommune": "WIMILLE" }, { - "codePostal": "59143", - "codeCommune": "59538", - "libelleAcheminement": "ST MOMELIN", - "nomCommune": "ST MOMELIN" + "codePostal": "52600", + "codeCommune": "52424", + "libelleAcheminement": "RIVIERES LE BOIS", + "nomCommune": "RIVIERES LE BOIS" }, { - "codePostal": "37380", - "codeCommune": "37175", - "libelleAcheminement": "NOUZILLY", - "nomCommune": "NOUZILLY" + "codePostal": "55240", + "codeCommune": "55158", + "libelleAcheminement": "DOMMARY BARONCOURT", + "nomCommune": "DOMMARY BARONCOURT" }, { - "codePostal": "31210", - "codeCommune": "31158", - "libelleAcheminement": "CUGURON", - "nomCommune": "CUGURON" + "codePostal": "63111", + "codeCommune": "63226", + "libelleAcheminement": "MUR SUR ALLIER", + "nomCommune": "MUR SUR ALLIER" }, { - "codePostal": "49220", - "codeCommune": "49344", - "libelleAcheminement": "THORIGNE D ANJOU", - "nomCommune": "THORIGNE D ANJOU" + "codePostal": "09130", + "codeCommune": "09124", + "libelleAcheminement": "LE FOSSAT", + "nomCommune": "LE FOSSAT" }, { - "codePostal": "59730", - "codeCommune": "59541", - "libelleAcheminement": "ST PYTHON", - "nomCommune": "ST PYTHON" + "codePostal": "62410", + "codeCommune": "62895", + "libelleAcheminement": "WINGLES", + "nomCommune": "WINGLES" }, { - "codePostal": "37210", - "codeCommune": "37179", - "libelleAcheminement": "PARCAY MESLAY", - "nomCommune": "PARCAY MESLAY" + "codePostal": "52330", + "codeCommune": "52426", + "libelleAcheminement": "RIZAUCOURT BUCHEY", + "nomCommune": "RIZAUCOURT BUCHEY" }, { - "codePostal": "31210", - "codeCommune": "31159", - "libelleAcheminement": "LE CUING", - "nomCommune": "LE CUING" + "codePostal": "55300", + "codeCommune": "55159", + "libelleAcheminement": "DOMPCEVRIN", + "nomCommune": "DOMPCEVRIN" }, { - "codePostal": "49125", - "codeCommune": "49347", - "libelleAcheminement": "TIERCE", - "nomCommune": "TIERCE" + "codePostal": "63310", + "codeCommune": "63232", + "libelleAcheminement": "MONS", + "nomCommune": "MONS" }, { - "codePostal": "59360", - "codeCommune": "59545", - "libelleAcheminement": "ST SOUPLET", - "nomCommune": "ST SOUPLET" + "codePostal": "09290", + "codeCommune": "09127", + "libelleAcheminement": "GABRE", + "nomCommune": "GABRE" }, { - "codePostal": "37220", - "codeCommune": "37180", - "libelleAcheminement": "PARCAY SUR VIENNE", - "nomCommune": "PARCAY SUR VIENNE" + "codePostal": "62890", + "codeCommune": "62904", + "libelleAcheminement": "ZOUAFQUES", + "nomCommune": "ZOUAFQUES" }, { - "codePostal": "31700", - "codeCommune": "31160", - "libelleAcheminement": "DAUX", - "nomCommune": "DAUX" + "codePostal": "52210", + "codeCommune": "52431", + "libelleAcheminement": "ROCHETAILLEE", + "nomCommune": "ROCHETAILLEE" }, { - "codePostal": "49360", - "codeCommune": "49352", - "libelleAcheminement": "TOUTLEMONDE", - "nomCommune": "TOUTLEMONDE" + "codePostal": "55160", + "codeCommune": "55163", + "libelleAcheminement": "DONCOURT AUX TEMPLIERS", + "nomCommune": "DONCOURT AUX TEMPLIERS" }, { - "codePostal": "59216", - "codeCommune": "59555", - "libelleAcheminement": "SARS POTERIES", - "nomCommune": "SARS POTERIES" + "codePostal": "63160", + "codeCommune": "63239", + "libelleAcheminement": "MONTMORIN", + "nomCommune": "MONTMORIN" }, { - "codePostal": "37350", - "codeCommune": "37181", - "libelleAcheminement": "PAULMY", - "nomCommune": "PAULMY" + "codePostal": "09190", + "codeCommune": "09128", + "libelleAcheminement": "GAJAN", + "nomCommune": "GAJAN" }, { - "codePostal": "31420", - "codeCommune": "31168", - "libelleAcheminement": "EOUX", - "nomCommune": "EOUX" + "codePostal": "62820", + "codeCommune": "62907", + "libelleAcheminement": "LIBERCOURT", + "nomCommune": "LIBERCOURT" }, { - "codePostal": "49800", - "codeCommune": "49353", - "libelleAcheminement": "TRELAZE", - "nomCommune": "TRELAZE" + "codePostal": "52260", + "codeCommune": "52432", + "libelleAcheminement": "ROLAMPONT", + "nomCommune": "ROLAMPONT" }, { - "codePostal": "59990", - "codeCommune": "59557", - "libelleAcheminement": "SAULTAIN", - "nomCommune": "SAULTAIN" + "codePostal": "55600", + "codeCommune": "55169", + "libelleAcheminement": "ECOUVIEZ", + "nomCommune": "ECOUVIEZ" }, { - "codePostal": "37600", - "codeCommune": "37183", - "libelleAcheminement": "PERRUSSON", - "nomCommune": "PERRUSSON" + "codePostal": "63200", + "codeCommune": "63244", + "libelleAcheminement": "CHAMBARON SUR MORGE", + "nomCommune": "CHAMBARON SUR MORGE" }, { - "codePostal": "31350", - "codeCommune": "31170", - "libelleAcheminement": "ESCANECRABE", - "nomCommune": "ESCANECRABE" + "codePostal": "09400", + "codeCommune": "09152", + "libelleAcheminement": "LAPEGE", + "nomCommune": "LAPEGE" }, { - "codePostal": "49400", - "codeCommune": "49362", - "libelleAcheminement": "VARRAINS", - "nomCommune": "VARRAINS" + "codePostal": "63260", + "codeCommune": "63013", + "libelleAcheminement": "AUBIAT", + "nomCommune": "AUBIAT" }, { - "codePostal": "59227", - "codeCommune": "59558", - "libelleAcheminement": "SAULZOIR", - "nomCommune": "SAULZOIR" + "codePostal": "52160", + "codeCommune": "52439", + "libelleAcheminement": "ROUVRES SUR AUBE", + "nomCommune": "ROUVRES SUR AUBE" }, { - "codePostal": "37120", - "codeCommune": "37191", - "libelleAcheminement": "RAZINES", - "nomCommune": "RAZINES" + "codePostal": "55260", + "codeCommune": "55175", + "libelleAcheminement": "ERIZE LA BRULEE", + "nomCommune": "ERIZE LA BRULEE" }, { - "codePostal": "31230", - "codeCommune": "31178", - "libelleAcheminement": "FABAS", - "nomCommune": "FABAS" + "codePostal": "63200", + "codeCommune": "63245", + "libelleAcheminement": "MOZAC", + "nomCommune": "MOZAC" }, { - "codePostal": "49390", - "codeCommune": "49368", - "libelleAcheminement": "VERNANTES", - "nomCommune": "VERNANTES" + "codePostal": "09310", + "codeCommune": "09159", + "libelleAcheminement": "LASSUR", + "nomCommune": "LASSUR" }, { - "codePostal": "59730", - "codeCommune": "59571", - "libelleAcheminement": "SOLESMES", - "nomCommune": "SOLESMES" + "codePostal": "63510", + "codeCommune": "63019", + "libelleAcheminement": "AULNAT", + "nomCommune": "AULNAT" }, { - "codePostal": "37340", - "codeCommune": "37198", - "libelleAcheminement": "RILLE", - "nomCommune": "RILLE" + "codePostal": "52230", + "codeCommune": "52443", + "libelleAcheminement": "SAILLY", + "nomCommune": "SAILLY" }, { - "codePostal": "31150", - "codeCommune": "31182", - "libelleAcheminement": "FENOUILLET", - "nomCommune": "FENOUILLET" + "codePostal": "55200", + "codeCommune": "55184", + "libelleAcheminement": "EUVILLE", + "nomCommune": "EUVILLE" }, { - "codePostal": "50180", - "codeCommune": "50002", - "libelleAcheminement": "AGNEAUX", - "nomCommune": "AGNEAUX" + "codePostal": "63790", + "codeCommune": "63247", + "libelleAcheminement": "MUROL", + "nomCommune": "MUROL" }, { - "codePostal": "59740", - "codeCommune": "59573", - "libelleAcheminement": "SOLRINNES", - "nomCommune": "SOLRINNES" + "codePostal": "09100", + "codeCommune": "09163", + "libelleAcheminement": "LESCOUSSE", + "nomCommune": "LESCOUSSE" }, { - "codePostal": "37500", - "codeCommune": "37201", - "libelleAcheminement": "RIVIERE", - "nomCommune": "RIVIERE" + "codePostal": "63590", + "codeCommune": "63023", + "libelleAcheminement": "AUZELLES", + "nomCommune": "AUZELLES" }, { - "codePostal": "31130", - "codeCommune": "31184", - "libelleAcheminement": "FLOURENS", - "nomCommune": "FLOURENS" + "codePostal": "52190", + "codeCommune": "52445", + "libelleAcheminement": "ST BROINGT LE BOIS", + "nomCommune": "ST BROINGT LE BOIS" }, { - "codePostal": "50170", - "codeCommune": "50019", - "libelleAcheminement": "AUCEY LA PLAINE", - "nomCommune": "AUCEY LA PLAINE" + "codePostal": "55250", + "codeCommune": "55185", + "libelleAcheminement": "EVRES", + "nomCommune": "EVRES" }, { - "codePostal": "59380", - "codeCommune": "59576", - "libelleAcheminement": "SPYCKER", - "nomCommune": "SPYCKER" + "codePostal": "63290", + "codeCommune": "63253", + "libelleAcheminement": "NOALHAT", + "nomCommune": "NOALHAT" }, { - "codePostal": "37190", - "codeCommune": "37205", - "libelleAcheminement": "SACHE", - "nomCommune": "SACHE" + "codePostal": "09300", + "codeCommune": "09166", + "libelleAcheminement": "LEYCHERT", + "nomCommune": "LEYCHERT" }, { - "codePostal": "31140", - "codeCommune": "31186", - "libelleAcheminement": "FONBEAUZARD", - "nomCommune": "FONBEAUZARD" + "codePostal": "63500", + "codeCommune": "63036", + "libelleAcheminement": "BERGONNE", + "nomCommune": "BERGONNE" }, { - "codePostal": "50630", - "codeCommune": "50022", - "libelleAcheminement": "AUMEVILLE LESTRE", - "nomCommune": "AUMEVILLE LESTRE" + "codePostal": "52190", + "codeCommune": "52446", + "libelleAcheminement": "ST BROINGT LES FOSSES", + "nomCommune": "ST BROINGT LES FOSSES" }, { - "codePostal": "59229", - "codeCommune": "59588", - "libelleAcheminement": "TETEGHEM COUDEKERQUE VILLAGE", - "nomCommune": "TETEGHEM COUDEKERQUE VILLAGE" + "codePostal": "55600", + "codeCommune": "55188", + "libelleAcheminement": "FLASSIGNY", + "nomCommune": "FLASSIGNY" }, { - "codePostal": "37600", - "codeCommune": "37222", - "libelleAcheminement": "ST JEAN ST GERMAIN", - "nomCommune": "ST JEAN ST GERMAIN" + "codePostal": "63870", + "codeCommune": "63263", + "libelleAcheminement": "ORCINES", + "nomCommune": "ORCINES" }, { - "codePostal": "31470", - "codeCommune": "31188", - "libelleAcheminement": "FONTENILLES", - "nomCommune": "FONTENILLES" + "codePostal": "09210", + "codeCommune": "09167", + "libelleAcheminement": "LEZAT SUR LEZE", + "nomCommune": "LEZAT SUR LEZE" }, { - "codePostal": "50500", - "codeCommune": "50024", - "libelleAcheminement": "AUXAIS", - "nomCommune": "AUXAIS" + "codePostal": "63610", + "codeCommune": "63038", + "libelleAcheminement": "BESSE ET ST ANASTAISE", + "nomCommune": "BESSE ET ST ANASTAISE" }, { - "codePostal": "59390", - "codeCommune": "59598", - "libelleAcheminement": "TOUFFLERS", - "nomCommune": "TOUFFLERS" + "codePostal": "52210", + "codeCommune": "52450", + "libelleAcheminement": "ST LOUP SUR AUJON", + "nomCommune": "ST LOUP SUR AUJON" }, { - "codePostal": "37130", - "codeCommune": "37232", - "libelleAcheminement": "COTEAUX SUR LOIRE", - "nomCommune": "COTEAUX SUR LOIRE" + "codePostal": "55260", + "codeCommune": "55197", + "libelleAcheminement": "FRESNES AU MONT", + "nomCommune": "FRESNES AU MONT" }, { - "codePostal": "31440", - "codeCommune": "31190", - "libelleAcheminement": "FOS", - "nomCommune": "FOS" + "codePostal": "63500", + "codeCommune": "63268", + "libelleAcheminement": "PARDINES", + "nomCommune": "PARDINES" }, { - "codePostal": "50270", - "codeCommune": "50031", - "libelleAcheminement": "BARNEVILLE CARTERET", - "nomCommune": "BARNEVILLE CARTERET" + "codePostal": "09300", + "codeCommune": "09168", + "libelleAcheminement": "LIEURAC", + "nomCommune": "LIEURAC" }, { - "codePostal": "59980", - "codeCommune": "59604", - "libelleAcheminement": "TROISVILLES", - "nomCommune": "TROISVILLES" + "codePostal": "63160", + "codeCommune": "63040", + "libelleAcheminement": "BILLOM", + "nomCommune": "BILLOM" }, { - "codePostal": "37110", - "codeCommune": "37240", - "libelleAcheminement": "SAUNAY", - "nomCommune": "SAUNAY" + "codePostal": "52500", + "codeCommune": "52464", + "libelleAcheminement": "SAULLES", + "nomCommune": "SAULLES" }, { - "codePostal": "31160", - "codeCommune": "31191", - "libelleAcheminement": "FOUGARON", - "nomCommune": "FOUGARON" + "codePostal": "55400", + "codeCommune": "55201", + "libelleAcheminement": "FROMEZEY", + "nomCommune": "FROMEZEY" }, { - "codePostal": "50150", - "codeCommune": "50040", - "libelleAcheminement": "BEAUFICEL", - "nomCommune": "BEAUFICEL" + "codePostal": "63500", + "codeCommune": "63270", + "libelleAcheminement": "PARENTIGNAT", + "nomCommune": "PARENTIGNAT" }, { - "codePostal": "59530", - "codeCommune": "59619", - "libelleAcheminement": "VILLEREAU", - "nomCommune": "VILLEREAU" + "codePostal": "09700", + "codeCommune": "09170", + "libelleAcheminement": "LISSAC", + "nomCommune": "LISSAC" }, { - "codePostal": "37420", - "codeCommune": "37242", - "libelleAcheminement": "SAVIGNY EN VERON", - "nomCommune": "SAVIGNY EN VERON" + "codePostal": "63640", + "codeCommune": "63041", + "libelleAcheminement": "BIOLLET", + "nomCommune": "BIOLLET" }, { - "codePostal": "31450", - "codeCommune": "31192", - "libelleAcheminement": "FOURQUEVAUX", - "nomCommune": "FOURQUEVAUX" + "codePostal": "52330", + "codeCommune": "52472", + "libelleAcheminement": "SEXFONTAINES", + "nomCommune": "SEXFONTAINES" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "55260", + "codeCommune": "55210", + "libelleAcheminement": "GIMECOURT", + "nomCommune": "GIMECOURT" }, { - "codePostal": "59297", - "codeCommune": "59623", - "libelleAcheminement": "VILLERS GUISLAIN", - "nomCommune": "VILLERS GUISLAIN" + "codePostal": "63170", + "codeCommune": "63272", + "libelleAcheminement": "PERIGNAT LES SARLIEVE", + "nomCommune": "PERIGNAT LES SARLIEVE" }, { - "codePostal": "37510", - "codeCommune": "37243", - "libelleAcheminement": "SAVONNIERES", - "nomCommune": "SAVONNIERES" + "codePostal": "09250", + "codeCommune": "09176", + "libelleAcheminement": "LUZENAC", + "nomCommune": "LUZENAC" }, { - "codePostal": "31460", - "codeCommune": "31194", - "libelleAcheminement": "FRANCARVILLE", - "nomCommune": "FRANCARVILLE" + "codePostal": "63440", + "codeCommune": "63043", + "libelleAcheminement": "BLOT L EGLISE", + "nomCommune": "BLOT L EGLISE" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "52220", + "codeCommune": "52479", + "libelleAcheminement": "SOMMEVOIRE", + "nomCommune": "SOMMEVOIRE" }, { - "codePostal": "59261", - "codeCommune": "59630", - "libelleAcheminement": "WAHAGNIES", - "nomCommune": "WAHAGNIES" + "codePostal": "55200", + "codeCommune": "55212", + "libelleAcheminement": "GIRAUVOISIN", + "nomCommune": "GIRAUVOISIN" }, { - "codePostal": "37800", - "codeCommune": "37247", - "libelleAcheminement": "SEPMES", - "nomCommune": "SEPMES" + "codePostal": "63920", + "codeCommune": "63276", + "libelleAcheminement": "PESCHADOIRES", + "nomCommune": "PESCHADOIRES" }, { - "codePostal": "31420", - "codeCommune": "31196", - "libelleAcheminement": "FRANCON", - "nomCommune": "FRANCON" + "codePostal": "09500", + "codeCommune": "09180", + "libelleAcheminement": "MANSES", + "nomCommune": "MANSES" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "63910", + "codeCommune": "63049", + "libelleAcheminement": "BOUZEL", + "nomCommune": "BOUZEL" }, { - "codePostal": "59127", - "codeCommune": "59631", - "libelleAcheminement": "WALINCOURT SELVIGNY", - "nomCommune": "WALINCOURT SELVIGNY" + "codePostal": "52320", + "codeCommune": "52480", + "libelleAcheminement": "SONCOURT SUR MARNE", + "nomCommune": "SONCOURT SUR MARNE" }, { - "codePostal": "37330", - "codeCommune": "37251", - "libelleAcheminement": "SOUVIGNE", - "nomCommune": "SOUVIGNE" + "codePostal": "55130", + "codeCommune": "55215", + "libelleAcheminement": "GONDRECOURT LE CHATEAU", + "nomCommune": "GONDRECOURT LE CHATEAU" }, { - "codePostal": "31440", - "codeCommune": "31199", - "libelleAcheminement": "FRONSAC", - "nomCommune": "FRONSAC" + "codePostal": "63580", + "codeCommune": "63277", + "libelleAcheminement": "PESLIERES", + "nomCommune": "PESLIERES" }, { - "codePostal": "50690", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "09350", + "codeCommune": "09186", + "libelleAcheminement": "MERAS", + "nomCommune": "MERAS" }, { - "codePostal": "59400", - "codeCommune": "59635", - "libelleAcheminement": "WAMBAIX", - "nomCommune": "WAMBAIX" + "codePostal": "63500", + "codeCommune": "63051", + "libelleAcheminement": "BRENAT", + "nomCommune": "BRENAT" }, { - "codePostal": "37310", - "codeCommune": "37253", - "libelleAcheminement": "SUBLAINES", - "nomCommune": "SUBLAINES" + "codePostal": "52150", + "codeCommune": "52482", + "libelleAcheminement": "SOULAUCOURT SUR MOUZON", + "nomCommune": "SOULAUCOURT SUR MOUZON" }, { - "codePostal": "31270", - "codeCommune": "31203", - "libelleAcheminement": "FROUZINS", - "nomCommune": "FROUZINS" + "codePostal": "55130", + "codeCommune": "55215", + "libelleAcheminement": "GONDRECOURT LE CHATEAU", + "nomCommune": "GONDRECOURT LE CHATEAU" }, { - "codePostal": "50340", - "codeCommune": "50045", - "libelleAcheminement": "BENOITVILLE", - "nomCommune": "BENOITVILLE" + "codePostal": "63200", + "codeCommune": "63278", + "libelleAcheminement": "PESSAT VILLENEUVE", + "nomCommune": "PESSAT VILLENEUVE" }, { - "codePostal": "59870", - "codeCommune": "59637", - "libelleAcheminement": "WANDIGNIES HAMAGE", - "nomCommune": "WANDIGNIES HAMAGE" + "codePostal": "09400", + "codeCommune": "09188", + "libelleAcheminement": "MERCUS GARRABET", + "nomCommune": "MERCUS GARRABET" }, { - "codePostal": "37220", - "codeCommune": "37255", - "libelleAcheminement": "TAVANT", - "nomCommune": "TAVANT" + "codePostal": "63330", + "codeCommune": "63060", + "libelleAcheminement": "BUSSIERES", + "nomCommune": "BUSSIERES" }, { - "codePostal": "31480", - "codeCommune": "31209", - "libelleAcheminement": "GARAC", - "nomCommune": "GARAC" + "codePostal": "52220", + "codeCommune": "52487", + "libelleAcheminement": "THILLEUX", + "nomCommune": "THILLEUX" }, { - "codePostal": "50390", - "codeCommune": "50055", - "libelleAcheminement": "BINIVILLE", - "nomCommune": "BINIVILLE" + "codePostal": "55140", + "codeCommune": "55217", + "libelleAcheminement": "GOUSSAINCOURT", + "nomCommune": "GOUSSAINCOURT" }, { - "codePostal": "59252", - "codeCommune": "59645", - "libelleAcheminement": "WASNES AU BAC", - "nomCommune": "WASNES AU BAC" + "codePostal": "63730", + "codeCommune": "63282", + "libelleAcheminement": "PLAUZAT", + "nomCommune": "PLAUZAT" }, { - "codePostal": "37000", - "codeCommune": "37261", - "libelleAcheminement": "TOURS", - "nomCommune": "TOURS" + "codePostal": "09400", + "codeCommune": "09192", + "libelleAcheminement": "MIGLOS", + "nomCommune": "MIGLOS" }, { - "codePostal": "31590", - "codeCommune": "31215", - "libelleAcheminement": "GAURE", - "nomCommune": "GAURE" + "codePostal": "63250", + "codeCommune": "63066", + "libelleAcheminement": "CELLES SUR DUROLLE", + "nomCommune": "CELLES SUR DUROLLE" }, { - "codePostal": "50560", - "codeCommune": "50058", - "libelleAcheminement": "BLAINVILLE SUR MER", - "nomCommune": "BLAINVILLE SUR MER" + "codePostal": "52240", + "codeCommune": "52489", + "libelleAcheminement": "THOL LES MILLIERES", + "nomCommune": "THOL LES MILLIERES" }, { - "codePostal": "59150", - "codeCommune": "59650", - "libelleAcheminement": "WATTRELOS", - "nomCommune": "WATTRELOS" + "codePostal": "55500", + "codeCommune": "55220", + "libelleAcheminement": "GRIMAUCOURT PRES SAMPIGNY", + "nomCommune": "GRIMAUCOURT PRES SAMPIGNY" }, { - "codePostal": "37320", - "codeCommune": "37263", - "libelleAcheminement": "TRUYES", - "nomCommune": "TRUYES" + "codePostal": "63440", + "codeCommune": "63286", + "libelleAcheminement": "POUZOL", + "nomCommune": "POUZOL" }, { - "codePostal": "31110", - "codeCommune": "31222", - "libelleAcheminement": "GOUAUX DE LUCHON", - "nomCommune": "GOUAUX DE LUCHON" + "codePostal": "09000", + "codeCommune": "09210", + "libelleAcheminement": "MONTOULIEU", + "nomCommune": "MONTOULIEU" }, { - "codePostal": "50480", - "codeCommune": "50059", - "libelleAcheminement": "BLOSVILLE", - "nomCommune": "BLOSVILLE" + "codePostal": "63670", + "codeCommune": "63069", + "libelleAcheminement": "LE CENDRE", + "nomCommune": "LE CENDRE" }, { - "codePostal": "59220", - "codeCommune": "59651", - "libelleAcheminement": "WAVRECHAIN SOUS DENAIN", - "nomCommune": "WAVRECHAIN SOUS DENAIN" + "codePostal": "52230", + "codeCommune": "52491", + "libelleAcheminement": "THONNANCE LES MOULINS", + "nomCommune": "THONNANCE LES MOULINS" }, { - "codePostal": "37190", - "codeCommune": "37271", - "libelleAcheminement": "VILLAINES LES ROCHERS", - "nomCommune": "VILLAINES LES ROCHERS" + "codePostal": "55300", + "codeCommune": "55229", + "libelleAcheminement": "HAN SUR MEUSE", + "nomCommune": "HAN SUR MEUSE" }, { - "codePostal": "31430", - "codeCommune": "31229", - "libelleAcheminement": "GRATENS", - "nomCommune": "GRATENS" + "codePostal": "63230", + "codeCommune": "63290", + "libelleAcheminement": "PULVERIERES", + "nomCommune": "PULVERIERES" }, { - "codePostal": "50360", - "codeCommune": "50064", - "libelleAcheminement": "LA BONNEVILLE", - "nomCommune": "LA BONNEVILLE" + "codePostal": "09240", + "codeCommune": "09212", + "libelleAcheminement": "MONTSERON", + "nomCommune": "MONTSERON" }, { - "codePostal": "59111", - "codeCommune": "59652", - "libelleAcheminement": "WAVRECHAIN SOUS FAULX", - "nomCommune": "WAVRECHAIN SOUS FAULX" + "codePostal": "63122", + "codeCommune": "63070", + "libelleAcheminement": "CEYRAT", + "nomCommune": "CEYRAT" }, { - "codePostal": "37370", - "codeCommune": "37274", - "libelleAcheminement": "VILLEBOURG", - "nomCommune": "VILLEBOURG" + "codePostal": "52230", + "codeCommune": "52491", + "libelleAcheminement": "THONNANCE LES MOULINS", + "nomCommune": "THONNANCE LES MOULINS" }, { - "codePostal": "31190", - "codeCommune": "31231", - "libelleAcheminement": "GRAZAC", - "nomCommune": "GRAZAC" + "codePostal": "55300", + "codeCommune": "55229", + "libelleAcheminement": "HAN SUR MEUSE", + "nomCommune": "HAN SUR MEUSE" }, { - "codePostal": "50610", - "codeCommune": "50066", - "libelleAcheminement": "JULLOUVILLE", - "nomCommune": "JULLOUVILLE" + "codePostal": "63470", + "codeCommune": "63292", + "libelleAcheminement": "PUY ST GULMIER", + "nomCommune": "PUY ST GULMIER" }, { - "codePostal": "59780", - "codeCommune": "59660", - "libelleAcheminement": "WILLEMS", - "nomCommune": "WILLEMS" + "codePostal": "09110", + "codeCommune": "09218", + "libelleAcheminement": "ORGEIX", + "nomCommune": "ORGEIX" }, { - "codePostal": "37110", - "codeCommune": "37276", - "libelleAcheminement": "VILLEDOMER", - "nomCommune": "VILLEDOMER" + "codePostal": "63340", + "codeCommune": "63074", + "libelleAcheminement": "CHALUS", + "nomCommune": "CHALUS" }, { - "codePostal": "31330", - "codeCommune": "31232", - "libelleAcheminement": "GRENADE", - "nomCommune": "GRENADE" + "codePostal": "52130", + "codeCommune": "52497", + "libelleAcheminement": "TROISFONTAINES LA VILLE", + "nomCommune": "TROISFONTAINES LA VILLE" }, { - "codePostal": "50260", - "codeCommune": "50079", - "libelleAcheminement": "BREUVILLE", - "nomCommune": "BREUVILLE" + "codePostal": "55160", + "codeCommune": "55242", + "libelleAcheminement": "HENNEMONT", + "nomCommune": "HENNEMONT" }, { - "codePostal": "59740", - "codeCommune": "59661", - "libelleAcheminement": "WILLIES", - "nomCommune": "WILLIES" + "codePostal": "63290", + "codeCommune": "63301", + "libelleAcheminement": "RIS", + "nomCommune": "RIS" }, { - "codePostal": "38490", - "codeCommune": "38001", - "libelleAcheminement": "LES ABRETS EN DAUPHINE", - "nomCommune": "LES ABRETS EN DAUPHINE" + "codePostal": "09000", + "codeCommune": "09234", + "libelleAcheminement": "PRADIERES", + "nomCommune": "PRADIERES" }, { - "codePostal": "31440", - "codeCommune": "31235", - "libelleAcheminement": "GURAN", - "nomCommune": "GURAN" + "codePostal": "63320", + "codeCommune": "63080", + "libelleAcheminement": "CHAMPEIX", + "nomCommune": "CHAMPEIX" }, { - "codePostal": "50290", - "codeCommune": "50081", - "libelleAcheminement": "BREVILLE SUR MER", - "nomCommune": "BREVILLE SUR MER" + "codePostal": "52300", + "codeCommune": "52511", + "libelleAcheminement": "VAUX SUR ST URBAIN", + "nomCommune": "VAUX SUR ST URBAIN" }, { - "codePostal": "59670", - "codeCommune": "59662", - "libelleAcheminement": "WINNEZEELE", - "nomCommune": "WINNEZEELE" + "codePostal": "55220", + "codeCommune": "55254", + "libelleAcheminement": "LES TROIS DOMAINES", + "nomCommune": "LES TROIS DOMAINES" }, { - "codePostal": "38150", - "codeCommune": "38003", - "libelleAcheminement": "AGNIN", - "nomCommune": "AGNIN" + "codePostal": "63210", + "codeCommune": "63305", + "libelleAcheminement": "ROCHEFORT MONTAGNE", + "nomCommune": "ROCHEFORT MONTAGNE" }, { - "codePostal": "31210", - "codeCommune": "31238", - "libelleAcheminement": "HUOS", - "nomCommune": "HUOS" + "codePostal": "09420", + "codeCommune": "09246", + "libelleAcheminement": "RIMONT", + "nomCommune": "RIMONT" }, { - "codePostal": "50260", - "codeCommune": "50082", - "libelleAcheminement": "BRICQUEBEC EN COTENTIN", - "nomCommune": "BRICQUEBEC EN COTENTIN" + "codePostal": "63530", + "codeCommune": "63083", + "libelleAcheminement": "CHANAT LA MOUTEYRE", + "nomCommune": "CHANAT LA MOUTEYRE" }, { - "codePostal": "59123", - "codeCommune": "59668", - "libelleAcheminement": "ZUYDCOOTE", - "nomCommune": "ZUYDCOOTE" + "codePostal": "52250", + "codeCommune": "52515", + "libelleAcheminement": "VERSEILLES LE BAS", + "nomCommune": "VERSEILLES LE BAS" }, { - "codePostal": "38440", - "codeCommune": "38015", - "libelleAcheminement": "ARTAS", - "nomCommune": "ARTAS" + "codePostal": "55600", + "codeCommune": "55255", + "libelleAcheminement": "JAMETZ", + "nomCommune": "JAMETZ" }, { - "codePostal": "31860", - "codeCommune": "31248", - "libelleAcheminement": "LABARTHE SUR LEZE", - "nomCommune": "LABARTHE SUR LEZE" + "codePostal": "63540", + "codeCommune": "63307", + "libelleAcheminement": "ROMAGNAT", + "nomCommune": "ROMAGNAT" }, { - "codePostal": "50260", - "codeCommune": "50082", - "libelleAcheminement": "BRICQUEBEC EN COTENTIN", - "nomCommune": "BRICQUEBEC EN COTENTIN" + "codePostal": "09300", + "codeCommune": "09249", + "libelleAcheminement": "ROQUEFIXADE", + "nomCommune": "ROQUEFIXADE" }, { - "codePostal": "60430", - "codeCommune": "60002", - "libelleAcheminement": "ABBECOURT", - "nomCommune": "ABBECOURT" + "codePostal": "63590", + "codeCommune": "63086", + "libelleAcheminement": "LA CHAPELLE AGNON", + "nomCommune": "LA CHAPELLE AGNON" }, { - "codePostal": "38550", - "codeCommune": "38019", - "libelleAcheminement": "AUBERIVES SUR VAREZE", - "nomCommune": "AUBERIVES SUR VAREZE" + "codePostal": "52700", + "codeCommune": "52517", + "libelleAcheminement": "VESAIGNES SOUS LAFAUCHE", + "nomCommune": "VESAIGNES SOUS LAFAUCHE" }, { - "codePostal": "31230", - "codeCommune": "31251", - "libelleAcheminement": "LABASTIDE PAUMES", - "nomCommune": "LABASTIDE PAUMES" + "codePostal": "55160", + "codeCommune": "55256", + "libelleAcheminement": "JONVILLE EN WOEVRE", + "nomCommune": "JONVILLE EN WOEVRE" }, { - "codePostal": "50260", - "codeCommune": "50082", - "libelleAcheminement": "BRICQUEBEC EN COTENTIN", - "nomCommune": "BRICQUEBEC EN COTENTIN" + "codePostal": "63130", + "codeCommune": "63308", + "libelleAcheminement": "ROYAT", + "nomCommune": "ROYAT" }, { - "codePostal": "60620", - "codeCommune": "60005", - "libelleAcheminement": "ACY EN MULTIEN", - "nomCommune": "ACY EN MULTIEN" + "codePostal": "09500", + "codeCommune": "09251", + "libelleAcheminement": "ROUMENGOUX", + "nomCommune": "ROUMENGOUX" }, { - "codePostal": "38630", - "codeCommune": "38022", - "libelleAcheminement": "LES AVENIERES VEYRINS THUELLIN", - "nomCommune": "LES AVENIERES VEYRINS THUELLIN" + "codePostal": "63580", + "codeCommune": "63088", + "libelleAcheminement": "LA CHAPELLE SUR USSON", + "nomCommune": "LA CHAPELLE SUR USSON" }, { - "codePostal": "31190", - "codeCommune": "31256", - "libelleAcheminement": "LABRUYERE DORSA", - "nomCommune": "LABRUYERE DORSA" + "codePostal": "52160", + "codeCommune": "52526", + "libelleAcheminement": "VILLARS SANTENOGE", + "nomCommune": "VILLARS SANTENOGE" }, { - "codePostal": "50260", - "codeCommune": "50082", - "libelleAcheminement": "BRICQUEBEC EN COTENTIN", - "nomCommune": "BRICQUEBEC EN COTENTIN" + "codePostal": "55200", + "codeCommune": "55258", + "libelleAcheminement": "GEVILLE", + "nomCommune": "GEVILLE" }, { - "codePostal": "60940", - "codeCommune": "60013", - "libelleAcheminement": "ANGICOURT", - "nomCommune": "ANGICOURT" + "codePostal": "63580", + "codeCommune": "63328", + "libelleAcheminement": "STE CATHERINE", + "nomCommune": "STE CATHERINE" }, { - "codePostal": "38390", - "codeCommune": "38026", - "libelleAcheminement": "LA BALME LES GROTTES", - "nomCommune": "LA BALME LES GROTTES" + "codePostal": "09120", + "codeCommune": "09258", + "libelleAcheminement": "ST FELIX DE RIEUTORD", + "nomCommune": "ST FELIX DE RIEUTORD" }, { - "codePostal": "31360", - "codeCommune": "31260", - "libelleAcheminement": "LAFFITE TOUPIERE", - "nomCommune": "LAFFITE TOUPIERE" + "codePostal": "63220", + "codeCommune": "63105", + "libelleAcheminement": "CHAUMONT LE BOURG", + "nomCommune": "CHAUMONT LE BOURG" }, { - "codePostal": "50570", - "codeCommune": "50093", - "libelleAcheminement": "CAMETOURS", - "nomCommune": "CAMETOURS" + "codePostal": "52190", + "codeCommune": "52529", + "libelleAcheminement": "VILLEGUSIEN LE LAC", + "nomCommune": "VILLEGUSIEN LE LAC" }, { - "codePostal": "60620", - "codeCommune": "60020", - "libelleAcheminement": "ANTILLY", - "nomCommune": "ANTILLY" + "codePostal": "55170", + "codeCommune": "55261", + "libelleAcheminement": "JUVIGNY EN PERTHOIS", + "nomCommune": "JUVIGNY EN PERTHOIS" }, { - "codePostal": "38470", - "codeCommune": "38033", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "63320", + "codeCommune": "63330", + "libelleAcheminement": "ST CIRGUES SUR COUZE", + "nomCommune": "ST CIRGUES SUR COUZE" }, { - "codePostal": "31390", - "codeCommune": "31261", - "libelleAcheminement": "LAFITTE VIGORDANE", - "nomCommune": "LAFITTE VIGORDANE" + "codePostal": "09500", + "codeCommune": "09260", + "libelleAcheminement": "STE FOI", + "nomCommune": "STE FOI" }, { - "codePostal": "50480", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "63200", + "codeCommune": "63108", + "libelleAcheminement": "LE CHEIX", + "nomCommune": "LE CHEIX" }, { - "codePostal": "60360", - "codeCommune": "60026", - "libelleAcheminement": "AUCHY LA MONTAGNE", - "nomCommune": "AUCHY LA MONTAGNE" + "codePostal": "52100", + "codeCommune": "52534", + "libelleAcheminement": "VILLIERS EN LIEU", + "nomCommune": "VILLIERS EN LIEU" }, { - "codePostal": "38190", - "codeCommune": "38039", - "libelleAcheminement": "BERNIN", - "nomCommune": "BERNIN" + "codePostal": "55600", + "codeCommune": "55262", + "libelleAcheminement": "JUVIGNY SUR LOISON", + "nomCommune": "JUVIGNY SUR LOISON" }, { - "codePostal": "31310", - "codeCommune": "31267", - "libelleAcheminement": "LAHITERE", - "nomCommune": "LAHITERE" + "codePostal": "63310", + "codeCommune": "63333", + "libelleAcheminement": "ST DENIS COMBARNAZAT", + "nomCommune": "ST DENIS COMBARNAZAT" }, { - "codePostal": "50480", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "09200", + "codeCommune": "09261", + "libelleAcheminement": "ST GIRONS", + "nomCommune": "ST GIRONS" }, { - "codePostal": "60300", - "codeCommune": "60028", - "libelleAcheminement": "AUMONT EN HALATTE", - "nomCommune": "AUMONT EN HALATTE" + "codePostal": "63740", + "codeCommune": "63110", + "libelleAcheminement": "CISTERNES LA FORET", + "nomCommune": "CISTERNES LA FORET" }, { - "codePostal": "38850", - "codeCommune": "38043", - "libelleAcheminement": "BILIEU", - "nomCommune": "BILIEU" + "codePostal": "52600", + "codeCommune": "52539", + "libelleAcheminement": "VIOLOT", + "nomCommune": "VIOLOT" }, { - "codePostal": "31800", - "codeCommune": "31270", - "libelleAcheminement": "LANDORTHE", - "nomCommune": "LANDORTHE" + "codePostal": "55160", + "codeCommune": "55265", + "libelleAcheminement": "LABEUVILLE", + "nomCommune": "LABEUVILLE" }, { - "codePostal": "50500", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "63520", + "codeCommune": "63334", + "libelleAcheminement": "ST DIER D AUVERGNE", + "nomCommune": "ST DIER D AUVERGNE" }, { - "codePostal": "60350", - "codeCommune": "60032", - "libelleAcheminement": "AUTRECHES", - "nomCommune": "AUTRECHES" + "codePostal": "09000", + "codeCommune": "09264", + "libelleAcheminement": "ST JEAN DE VERGES", + "nomCommune": "ST JEAN DE VERGES" }, { - "codePostal": "38090", - "codeCommune": "38048", - "libelleAcheminement": "BONNEFAMILLE", - "nomCommune": "BONNEFAMILLE" + "codePostal": "63800", + "codeCommune": "63124", + "libelleAcheminement": "COURNON D AUVERGNE", + "nomCommune": "COURNON D AUVERGNE" }, { - "codePostal": "31800", - "codeCommune": "31278", - "libelleAcheminement": "LATOUE", - "nomCommune": "LATOUE" + "codePostal": "52130", + "codeCommune": "52543", + "libelleAcheminement": "VOILLECOMTE", + "nomCommune": "VOILLECOMTE" }, { - "codePostal": "50620", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "55120", + "codeCommune": "55266", + "libelleAcheminement": "LACHALADE", + "nomCommune": "LACHALADE" }, { - "codePostal": "60300", - "codeCommune": "60033", - "libelleAcheminement": "AVILLY ST LEONARD", - "nomCommune": "AVILLY ST LEONARD" + "codePostal": "63680", + "codeCommune": "63336", + "libelleAcheminement": "ST DONAT", + "nomCommune": "ST DONAT" }, { - "codePostal": "38260", - "codeCommune": "38049", - "libelleAcheminement": "BOSSIEU", - "nomCommune": "BOSSIEU" + "codePostal": "09000", + "codeCommune": "09264", + "libelleAcheminement": "ST JEAN DE VERGES", + "nomCommune": "ST JEAN DE VERGES" }, { - "codePostal": "31310", - "codeCommune": "31279", - "libelleAcheminement": "LATOUR", - "nomCommune": "LATOUR" + "codePostal": "63120", + "codeCommune": "63125", + "libelleAcheminement": "COURPIERE", + "nomCommune": "COURPIERE" }, { - "codePostal": "50330", - "codeCommune": "50101", - "libelleAcheminement": "CARNEVILLE", - "nomCommune": "CARNEVILLE" + "codePostal": "52130", + "codeCommune": "52550", + "libelleAcheminement": "WASSY", + "nomCommune": "WASSY" }, { - "codePostal": "60310", - "codeCommune": "60035", - "libelleAcheminement": "AVRICOURT", - "nomCommune": "AVRICOURT" + "codePostal": "55210", + "codeCommune": "55267", + "libelleAcheminement": "LACHAUSSEE", + "nomCommune": "LACHAUSSEE" }, { - "codePostal": "38510", - "codeCommune": "38050", - "libelleAcheminement": "LE BOUCHAGE", - "nomCommune": "LE BOUCHAGE" + "codePostal": "63380", + "codeCommune": "63339", + "libelleAcheminement": "ST ETIENNE DES CHAMPS", + "nomCommune": "ST ETIENNE DES CHAMPS" }, { - "codePostal": "31310", - "codeCommune": "31280", - "libelleAcheminement": "LATRAPE", - "nomCommune": "LATRAPE" + "codePostal": "09100", + "codeCommune": "09271", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "50390", - "codeCommune": "50105", - "libelleAcheminement": "CATTEVILLE", - "nomCommune": "CATTEVILLE" + "codePostal": "63350", + "codeCommune": "63128", + "libelleAcheminement": "CREVANT LAVEINE", + "nomCommune": "CREVANT LAVEINE" }, { - "codePostal": "60620", - "codeCommune": "60046", - "libelleAcheminement": "BARGNY", - "nomCommune": "BARGNY" + "codePostal": "53240", + "codeCommune": "53002", + "libelleAcheminement": "ALEXAIN", + "nomCommune": "ALEXAIN" }, { - "codePostal": "38300", - "codeCommune": "38053", - "libelleAcheminement": "BOURGOIN JALLIEU", - "nomCommune": "BOURGOIN JALLIEU" + "codePostal": "55260", + "codeCommune": "55269", + "libelleAcheminement": "LAHAYMEIX", + "nomCommune": "LAHAYMEIX" }, { - "codePostal": "31410", - "codeCommune": "31287", - "libelleAcheminement": "LAVERNOSE LACASSE", - "nomCommune": "LAVERNOSE LACASSE" + "codePostal": "63580", + "codeCommune": "63348", + "libelleAcheminement": "ST GENES LA TOURETTE", + "nomCommune": "ST GENES LA TOURETTE" }, { - "codePostal": "50100", - "codeCommune": "50129", - "libelleAcheminement": "CHERBOURG EN COTENTIN", - "nomCommune": "CHERBOURG EN COTENTIN" + "codePostal": "09400", + "codeCommune": "09280", + "libelleAcheminement": "SAURAT", + "nomCommune": "SAURAT" }, { - "codePostal": "60190", - "codeCommune": "60048", - "libelleAcheminement": "BAUGY", - "nomCommune": "BAUGY" + "codePostal": "63350", + "codeCommune": "63131", + "libelleAcheminement": "CULHAT", + "nomCommune": "CULHAT" }, { - "codePostal": "38690", - "codeCommune": "38065", - "libelleAcheminement": "CHABONS", - "nomCommune": "CHABONS" + "codePostal": "53300", + "codeCommune": "53003", + "libelleAcheminement": "AMBRIERES LES VALLEES", + "nomCommune": "AMBRIERES LES VALLEES" }, { - "codePostal": "31580", - "codeCommune": "31289", - "libelleAcheminement": "LECUSSAN", - "nomCommune": "LECUSSAN" + "codePostal": "55700", + "codeCommune": "55275", + "libelleAcheminement": "LAMOUILLY", + "nomCommune": "LAMOUILLY" }, { - "codePostal": "50460", - "codeCommune": "50129", - "libelleAcheminement": "CHERBOURG EN COTENTIN", - "nomCommune": "CHERBOURG EN COTENTIN" + "codePostal": "63470", + "codeCommune": "63351", + "libelleAcheminement": "ST GERMAIN PRES HERMENT", + "nomCommune": "ST GERMAIN PRES HERMENT" }, { - "codePostal": "60380", - "codeCommune": "60049", - "libelleAcheminement": "BAZANCOURT", - "nomCommune": "BAZANCOURT" + "codePostal": "09400", + "codeCommune": "09280", + "libelleAcheminement": "SAURAT", + "nomCommune": "SAURAT" }, { - "codePostal": "38740", - "codeCommune": "38073", - "libelleAcheminement": "CHANTEPERIER", - "nomCommune": "CHANTEPERIER" + "codePostal": "63200", + "codeCommune": "63135", + "libelleAcheminement": "DAVAYAT", + "nomCommune": "DAVAYAT" }, { - "codePostal": "31490", - "codeCommune": "31291", - "libelleAcheminement": "LEGUEVIN", - "nomCommune": "LEGUEVIN" + "codePostal": "53170", + "codeCommune": "53022", + "libelleAcheminement": "LA BAZOUGE DE CHEMERE", + "nomCommune": "LA BAZOUGE DE CHEMERE" }, { - "codePostal": "50330", - "codeCommune": "50142", - "libelleAcheminement": "VICQ SUR MER", - "nomCommune": "VICQ SUR MER" + "codePostal": "55100", + "codeCommune": "55276", + "libelleAcheminement": "LANDRECOURT LEMPIRE", + "nomCommune": "LANDRECOURT LEMPIRE" }, { - "codePostal": "60390", - "codeCommune": "60054", - "libelleAcheminement": "LES HAUTS TALICAN", - "nomCommune": "LES HAUTS TALICAN" + "codePostal": "63880", + "codeCommune": "63355", + "libelleAcheminement": "ST GERVAIS SOUS MEYMONT", + "nomCommune": "ST GERVAIS SOUS MEYMONT" }, { - "codePostal": "38230", - "codeCommune": "38085", - "libelleAcheminement": "CHARVIEU CHAVAGNEUX", - "nomCommune": "CHARVIEU CHAVAGNEUX" + "codePostal": "09700", + "codeCommune": "09282", + "libelleAcheminement": "SAVERDUN", + "nomCommune": "SAVERDUN" }, { - "codePostal": "31220", - "codeCommune": "31292", - "libelleAcheminement": "LESCUNS", - "nomCommune": "LESCUNS" + "codePostal": "63220", + "codeCommune": "63137", + "libelleAcheminement": "DORANGES", + "nomCommune": "DORANGES" }, { - "codePostal": "50710", - "codeCommune": "50151", - "libelleAcheminement": "CREANCES", - "nomCommune": "CREANCES" + "codePostal": "53290", + "codeCommune": "53027", + "libelleAcheminement": "BEAUMONT PIED DE BOEUF", + "nomCommune": "BEAUMONT PIED DE BOEUF" }, { - "codePostal": "60700", - "codeCommune": "60056", - "libelleAcheminement": "BEAUREPAIRE", - "nomCommune": "BEAUREPAIRE" + "codePostal": "55160", + "codeCommune": "55281", + "libelleAcheminement": "LATOUR EN WOEVRE", + "nomCommune": "LATOUR EN WOEVRE" }, { - "codePostal": "38230", - "codeCommune": "38085", - "libelleAcheminement": "CHARVIEU CHAVAGNEUX", - "nomCommune": "CHARVIEU CHAVAGNEUX" + "codePostal": "63340", + "codeCommune": "63356", + "libelleAcheminement": "ST GERVAZY", + "nomCommune": "ST GERVAZY" }, { - "codePostal": "31360", - "codeCommune": "31296", - "libelleAcheminement": "LESTELLE DE ST MARTORY", - "nomCommune": "LESTELLE DE ST MARTORY" + "codePostal": "09310", + "codeCommune": "09296", + "libelleAcheminement": "AULOS SINSAT", + "nomCommune": "AULOS SINSAT" }, { - "codePostal": "50670", - "codeCommune": "50158", - "libelleAcheminement": "CUVES", - "nomCommune": "CUVES" + "codePostal": "63300", + "codeCommune": "63138", + "libelleAcheminement": "DORAT", + "nomCommune": "DORAT" }, { - "codePostal": "60000", - "codeCommune": "60057", - "libelleAcheminement": "BEAUVAIS", - "nomCommune": "BEAUVAIS" + "codePostal": "53800", + "codeCommune": "53033", + "libelleAcheminement": "LA BOISSIERE", + "nomCommune": "LA BOISSIERE" }, { - "codePostal": "38680", - "codeCommune": "38092", - "libelleAcheminement": "CHATELUS", - "nomCommune": "CHATELUS" + "codePostal": "55170", + "codeCommune": "55284", + "libelleAcheminement": "LAVINCOURT", + "nomCommune": "LAVINCOURT" }, { - "codePostal": "31800", - "codeCommune": "31300", - "libelleAcheminement": "LIEOUX", - "nomCommune": "LIEOUX" + "codePostal": "63340", + "codeCommune": "63357", + "libelleAcheminement": "ST HERENT", + "nomCommune": "ST HERENT" }, { - "codePostal": "50530", - "codeCommune": "50167", - "libelleAcheminement": "DRAGEY RONTHON", - "nomCommune": "DRAGEY RONTHON" + "codePostal": "09000", + "codeCommune": "09300", + "libelleAcheminement": "SOULA", + "nomCommune": "SOULA" }, { - "codePostal": "60350", - "codeCommune": "60064", - "libelleAcheminement": "BERNEUIL SUR AISNE", - "nomCommune": "BERNEUIL SUR AISNE" + "codePostal": "63830", + "codeCommune": "63141", + "libelleAcheminement": "DURTOL", + "nomCommune": "DURTOL" }, { - "codePostal": "38980", - "codeCommune": "38093", - "libelleAcheminement": "CHATENAY", - "nomCommune": "CHATENAY" + "codePostal": "53410", + "codeCommune": "53039", + "libelleAcheminement": "LE BOURGNEUF LA FORET", + "nomCommune": "LE BOURGNEUF LA FORET" }, { - "codePostal": "31230", - "codeCommune": "31301", - "libelleAcheminement": "LILHAC", - "nomCommune": "LILHAC" + "codePostal": "55500", + "codeCommune": "55300", + "libelleAcheminement": "LONGEAUX", + "nomCommune": "LONGEAUX" }, { - "codePostal": "50220", - "codeCommune": "50168", - "libelleAcheminement": "DUCEY LES CHERIS", - "nomCommune": "DUCEY LES CHERIS" + "codePostal": "63330", + "codeCommune": "63360", + "libelleAcheminement": "ST HILAIRE PRES PIONSAT", + "nomCommune": "ST HILAIRE" }, { - "codePostal": "60320", - "codeCommune": "60068", - "libelleAcheminement": "BETHISY ST PIERRE", - "nomCommune": "BETHISY ST PIERRE" + "codePostal": "09160", + "codeCommune": "09307", + "libelleAcheminement": "TAURIGNAN CASTET", + "nomCommune": "TAURIGNAN CASTET" }, { - "codePostal": "38160", - "codeCommune": "38095", - "libelleAcheminement": "CHATTE", - "nomCommune": "CHATTE" + "codePostal": "63980", + "codeCommune": "63162", + "libelleAcheminement": "FOURNOLS", + "nomCommune": "FOURNOLS" }, { - "codePostal": "31580", - "codeCommune": "31305", - "libelleAcheminement": "LOUDET", - "nomCommune": "LOUDET" + "codePostal": "53410", + "codeCommune": "53040", + "libelleAcheminement": "BOURGON", + "nomCommune": "BOURGON" }, { - "codePostal": "50310", - "codeCommune": "50175", - "libelleAcheminement": "EROUDEVILLE", - "nomCommune": "EROUDEVILLE" + "codePostal": "55000", + "codeCommune": "55302", + "libelleAcheminement": "LONGEVILLE EN BARROIS", + "nomCommune": "LONGEVILLE EN BARROIS" }, { - "codePostal": "60120", - "codeCommune": "60075", - "libelleAcheminement": "BLANCFOSSE", - "nomCommune": "BLANCFOSSE" + "codePostal": "63190", + "codeCommune": "63364", + "libelleAcheminement": "ST JEAN D HEURS", + "nomCommune": "ST JEAN D HEURS" }, { - "codePostal": "38570", - "codeCommune": "38100", - "libelleAcheminement": "LE CHEYLAS", - "nomCommune": "LE CHEYLAS" + "codePostal": "09350", + "codeCommune": "09310", + "libelleAcheminement": "THOUARS SUR ARIZE", + "nomCommune": "THOUARS SUR ARIZE" }, { - "codePostal": "31340", - "codeCommune": "31311", - "libelleAcheminement": "LA MAGDELAINE SUR TARN", - "nomCommune": "LA MAGDELAINE SUR TARN" + "codePostal": "63850", + "codeCommune": "63169", + "libelleAcheminement": "LA GODIVELLE", + "nomCommune": "LA GODIVELLE" }, { - "codePostal": "50260", - "codeCommune": "50176", - "libelleAcheminement": "L ETANG BERTRAND", - "nomCommune": "L ETANG BERTRAND" + "codePostal": "53370", + "codeCommune": "53052", + "libelleAcheminement": "CHAMPFREMONT", + "nomCommune": "CHAMPFREMONT" }, { - "codePostal": "60440", - "codeCommune": "60079", - "libelleAcheminement": "BOISSY FRESNOY", - "nomCommune": "BOISSY FRESNOY" + "codePostal": "55800", + "codeCommune": "55304", + "libelleAcheminement": "LOUPPY LE CHATEAU", + "nomCommune": "LOUPPY LE CHATEAU" }, { - "codePostal": "38490", - "codeCommune": "38104", - "libelleAcheminement": "CHIMILIN", - "nomCommune": "CHIMILIN" + "codePostal": "63580", + "codeCommune": "63376", + "libelleAcheminement": "ST MARTIN D OLLIERES", + "nomCommune": "ST MARTIN D OLLIERES" }, { - "codePostal": "31310", - "codeCommune": "31312", - "libelleAcheminement": "MAILHOLAS", - "nomCommune": "MAILHOLAS" + "codePostal": "09500", + "codeCommune": "09314", + "libelleAcheminement": "TOURTROL", + "nomCommune": "TOURTROL" }, { - "codePostal": "50360", - "codeCommune": "50177", - "libelleAcheminement": "ETIENVILLE", - "nomCommune": "ETIENVILLE" + "codePostal": "63390", + "codeCommune": "63171", + "libelleAcheminement": "GOUTTIERES", + "nomCommune": "GOUTTIERES" }, { - "codePostal": "60300", - "codeCommune": "60087", - "libelleAcheminement": "BOREST", - "nomCommune": "BOREST" + "codePostal": "53160", + "codeCommune": "53053", + "libelleAcheminement": "CHAMPGENETEUX", + "nomCommune": "CHAMPGENETEUX" }, { - "codePostal": "38640", - "codeCommune": "38111", - "libelleAcheminement": "CLAIX", - "nomCommune": "CLAIX" + "codePostal": "55290", + "codeCommune": "55315", + "libelleAcheminement": "MANDRES EN BARROIS", + "nomCommune": "MANDRES EN BARROIS" }, { - "codePostal": "31430", - "codeCommune": "31317", - "libelleAcheminement": "MARIGNAC LASCLARES", - "nomCommune": "MARIGNAC LASCLARES" + "codePostal": "63330", + "codeCommune": "63377", + "libelleAcheminement": "ST MAURICE PRES PIONSAT", + "nomCommune": "ST MAURICE PRES PIONSAT" }, { - "codePostal": "50190", - "codeCommune": "50181", - "libelleAcheminement": "FEUGERES", - "nomCommune": "FEUGERES" + "codePostal": "09700", + "codeCommune": "09315", + "libelleAcheminement": "TREMOULET", + "nomCommune": "TREMOULET" }, { - "codePostal": "60540", - "codeCommune": "60088", - "libelleAcheminement": "BORNEL", - "nomCommune": "BORNEL" + "codePostal": "63890", + "codeCommune": "63174", + "libelleAcheminement": "GRANDVAL", + "nomCommune": "GRANDVAL" }, { - "codePostal": "38350", - "codeCommune": "38116", - "libelleAcheminement": "COGNET", - "nomCommune": "COGNET" + "codePostal": "53810", + "codeCommune": "53054", + "libelleAcheminement": "CHANGE", + "nomCommune": "CHANGE" }, { - "codePostal": "31540", - "codeCommune": "31329", - "libelleAcheminement": "MAURENS", - "nomCommune": "MAURENS" + "codePostal": "55160", + "codeCommune": "55317", + "libelleAcheminement": "MANHEULLES", + "nomCommune": "MANHEULLES" }, { - "codePostal": "50700", - "codeCommune": "50186", - "libelleAcheminement": "FLOTTEMANVILLE", - "nomCommune": "FLOTTEMANVILLE" + "codePostal": "63460", + "codeCommune": "63379", + "libelleAcheminement": "ST MYON", + "nomCommune": "ST MYON" }, { - "codePostal": "60620", - "codeCommune": "60092", - "libelleAcheminement": "BOULLARRE", - "nomCommune": "BOULLARRE" + "codePostal": "09140", + "codeCommune": "09322", + "libelleAcheminement": "USTOU", + "nomCommune": "USTOU" }, { - "codePostal": "38970", - "codeCommune": "38128", - "libelleAcheminement": "CORPS", - "nomCommune": "CORPS" + "codePostal": "63990", + "codeCommune": "63179", + "libelleAcheminement": "JOB", + "nomCommune": "JOB" }, { - "codePostal": "31460", - "codeCommune": "31331", - "libelleAcheminement": "MAUREVILLE", - "nomCommune": "MAUREVILLE" + "codePostal": "53950", + "codeCommune": "53056", + "libelleAcheminement": "LA CHAPELLE ANTHENAISE", + "nomCommune": "LA CHAPELLE ANTHENAISE" }, { - "codePostal": "50320", - "codeCommune": "50188", - "libelleAcheminement": "FOLLIGNY", - "nomCommune": "FOLLIGNY" + "codePostal": "55160", + "codeCommune": "55320", + "libelleAcheminement": "MARCHEVILLE EN WOEVRE", + "nomCommune": "MARCHEVILLE EN WOEVRE" }, { - "codePostal": "60141", - "codeCommune": "60094", - "libelleAcheminement": "BOURSONNE", - "nomCommune": "BOURSONNE" + "codePostal": "63490", + "codeCommune": "63389", + "libelleAcheminement": "ST QUENTIN SUR SAUXILLANGES", + "nomCommune": "ST QUENTIN SUR SAUXILLANGES" }, { - "codePostal": "38260", - "codeCommune": "38130", - "libelleAcheminement": "LA COTE ST ANDRE", - "nomCommune": "LA COTE ST ANDRE" + "codePostal": "09220", + "codeCommune": "09334", + "libelleAcheminement": "VAL DE SOS", + "nomCommune": "VAL DE SOS" }, { - "codePostal": "31110", - "codeCommune": "31335", - "libelleAcheminement": "MAYREGNE", - "nomCommune": "MAYREGNE" + "codePostal": "63350", + "codeCommune": "63180", + "libelleAcheminement": "JOZE", + "nomCommune": "JOZE" }, { - "codePostal": "50450", - "codeCommune": "50197", - "libelleAcheminement": "GAVRAY SUR SIENNE", - "nomCommune": "GAVRAY SUR SIENNE" + "codePostal": "53440", + "codeCommune": "53057", + "libelleAcheminement": "LA CHAPELLE AU RIBOUL", + "nomCommune": "LA CHAPELLE AU RIBOUL" }, { - "codePostal": "60220", - "codeCommune": "60098", - "libelleAcheminement": "BOUVRESSE", - "nomCommune": "BOUVRESSE" + "codePostal": "55500", + "codeCommune": "55335", + "libelleAcheminement": "MENIL SUR SAULX", + "nomCommune": "MENIL SUR SAULX" }, { - "codePostal": "38510", - "codeCommune": "38139", - "libelleAcheminement": "CREYS MEPIEU", - "nomCommune": "CREYS MEPIEU" + "codePostal": "63550", + "codeCommune": "63393", + "libelleAcheminement": "ST REMY SUR DUROLLE", + "nomCommune": "ST REMY SUR DUROLLE" }, { - "codePostal": "31530", - "codeCommune": "31338", - "libelleAcheminement": "MENVILLE", - "nomCommune": "MENVILLE" + "codePostal": "09130", + "codeCommune": "09342", + "libelleAcheminement": "STE SUZANNE", + "nomCommune": "STE SUZANNE" }, { - "codePostal": "50450", - "codeCommune": "50197", - "libelleAcheminement": "GAVRAY SUR SIENNE", - "nomCommune": "GAVRAY SUR SIENNE" + "codePostal": "63690", + "codeCommune": "63183", + "libelleAcheminement": "LABESSETTE", + "nomCommune": "LABESSETTE" }, { - "codePostal": "60870", - "codeCommune": "60102", - "libelleAcheminement": "BRENOUILLE", - "nomCommune": "BRENOUILLE" + "codePostal": "53200", + "codeCommune": "53062", + "libelleAcheminement": "CHATEAU GONTIER SUR MAYENNE", + "nomCommune": "CHATEAU GONTIER SUR MAYENNE" }, { - "codePostal": "38460", - "codeCommune": "38146", - "libelleAcheminement": "DIZIMIEU", - "nomCommune": "DIZIMIEU" + "codePostal": "55150", + "codeCommune": "55341", + "libelleAcheminement": "MOIREY FLABAS CREPION", + "nomCommune": "MOIREY FLABAS CREPION" }, { - "codePostal": "31530", - "codeCommune": "31339", - "libelleAcheminement": "MERENVIELLE", - "nomCommune": "MERENVIELLE" + "codePostal": "63660", + "codeCommune": "63394", + "libelleAcheminement": "ST ROMAIN", + "nomCommune": "ST ROMAIN" }, { - "codePostal": "50450", - "codeCommune": "50197", - "libelleAcheminement": "GAVRAY SUR SIENNE", - "nomCommune": "GAVRAY SUR SIENNE" + "codePostal": "10340", + "codeCommune": "10025", + "libelleAcheminement": "BAGNEUX LA FOSSE", + "nomCommune": "BAGNEUX LA FOSSE" }, { - "codePostal": "60400", - "codeCommune": "60105", - "libelleAcheminement": "BRETIGNY", - "nomCommune": "BRETIGNY" + "codePostal": "63570", + "codeCommune": "63185", + "libelleAcheminement": "LAMONTGIE", + "nomCommune": "LAMONTGIE" }, { - "codePostal": "38300", - "codeCommune": "38152", - "libelleAcheminement": "ECLOSE BADINIERES", - "nomCommune": "ECLOSE BADINIERES" + "codePostal": "53400", + "codeCommune": "53068", + "libelleAcheminement": "CHERANCE", + "nomCommune": "CHERANCE" }, { - "codePostal": "31330", - "codeCommune": "31341", - "libelleAcheminement": "MERVILLE", - "nomCommune": "MERVILLE" + "codePostal": "55270", + "codeCommune": "55343", + "libelleAcheminement": "MONTBLAINVILLE", + "nomCommune": "MONTBLAINVILLE" }, { - "codePostal": "50530", - "codeCommune": "50199", - "libelleAcheminement": "GENETS", - "nomCommune": "GENETS" + "codePostal": "63950", + "codeCommune": "63397", + "libelleAcheminement": "ST SAUVES D AUVERGNE", + "nomCommune": "ST SAUVES D AUVERGNE" }, { - "codePostal": "60210", - "codeCommune": "60108", - "libelleAcheminement": "BRIOT", - "nomCommune": "BRIOT" + "codePostal": "10110", + "codeCommune": "10029", + "libelleAcheminement": "BALNOT SUR LAIGNES", + "nomCommune": "BALNOT SUR LAIGNES" }, { - "codePostal": "38300", - "codeCommune": "38152", - "libelleAcheminement": "ECLOSE BADINIERES", - "nomCommune": "ECLOSE BADINIERES" + "codePostal": "63270", + "codeCommune": "63188", + "libelleAcheminement": "LAPS", + "nomCommune": "LAPS" }, { - "codePostal": "31190", - "codeCommune": "31345", - "libelleAcheminement": "MIREMONT", - "nomCommune": "MIREMONT" + "codePostal": "53470", + "codeCommune": "53072", + "libelleAcheminement": "COMMER", + "nomCommune": "COMMER" }, { - "codePostal": "50390", - "codeCommune": "50207", - "libelleAcheminement": "GOLLEVILLE", - "nomCommune": "GOLLEVILLE" + "codePostal": "55140", + "codeCommune": "55344", + "libelleAcheminement": "MONTBRAS", + "nomCommune": "MONTBRAS" }, { - "codePostal": "60220", - "codeCommune": "60110", - "libelleAcheminement": "BROQUIERS", - "nomCommune": "BROQUIERS" + "codePostal": "63760", + "codeCommune": "63399", + "libelleAcheminement": "ST SULPICE", + "nomCommune": "ST SULPICE" }, { - "codePostal": "38360", - "codeCommune": "38153", - "libelleAcheminement": "ENGINS", - "nomCommune": "ENGINS" + "codePostal": "10200", + "codeCommune": "10032", + "libelleAcheminement": "BAROVILLE", + "nomCommune": "BAROVILLE" }, { - "codePostal": "31370", - "codeCommune": "31353", - "libelleAcheminement": "MONES", - "nomCommune": "MONES" + "codePostal": "63440", + "codeCommune": "63197", + "libelleAcheminement": "LISSEUIL", + "nomCommune": "LISSEUIL" }, { - "codePostal": "50190", - "codeCommune": "50208", - "libelleAcheminement": "GONFREVILLE", - "nomCommune": "GONFREVILLE" + "codePostal": "53300", + "codeCommune": "53079", + "libelleAcheminement": "COUESMES VAUCE", + "nomCommune": "COUESMES VAUCE" }, { - "codePostal": "60640", - "codeCommune": "60132", - "libelleAcheminement": "CATIGNY", - "nomCommune": "CATIGNY" + "codePostal": "55300", + "codeCommune": "55353", + "libelleAcheminement": "MONTSEC", + "nomCommune": "MONTSEC" }, { - "codePostal": "38740", - "codeCommune": "38154", - "libelleAcheminement": "ENTRAIGUES", - "nomCommune": "ENTRAIGUES" + "codePostal": "63320", + "codeCommune": "63403", + "libelleAcheminement": "ST VINCENT", + "nomCommune": "ST VINCENT" }, { - "codePostal": "31160", - "codeCommune": "31357", - "libelleAcheminement": "MONTASTRUC DE SALIES", - "nomCommune": "MONTASTRUC DE SALIES" + "codePostal": "10290", + "codeCommune": "10038", + "libelleAcheminement": "BERCENAY LE HAYER", + "nomCommune": "BERCENAY LE HAYER" }, { - "codePostal": "50410", - "codeCommune": "50225", - "libelleAcheminement": "LE GUISLAIN", - "nomCommune": "LE GUISLAIN" + "codePostal": "63410", + "codeCommune": "63206", + "libelleAcheminement": "MANZAT", + "nomCommune": "MANZAT" }, { - "codePostal": "60290", - "codeCommune": "60134", - "libelleAcheminement": "CAUFFRY", - "nomCommune": "CAUFFRY" + "codePostal": "53300", + "codeCommune": "53079", + "libelleAcheminement": "COUESMES VAUCE", + "nomCommune": "COUESMES VAUCE" }, { - "codePostal": "38520", - "codeCommune": "38177", - "libelleAcheminement": "LA GARDE", - "nomCommune": "LA GARDE" + "codePostal": "55400", + "codeCommune": "55356", + "libelleAcheminement": "MORANVILLE", + "nomCommune": "MORANVILLE" }, { - "codePostal": "31290", - "codeCommune": "31377", - "libelleAcheminement": "MONTGAILLARD LAURAGAIS", - "nomCommune": "MONTGAILLARD LAURAGAIS" + "codePostal": "63270", + "codeCommune": "63405", + "libelleAcheminement": "SALLEDES", + "nomCommune": "SALLEDES" }, { - "codePostal": "01400", - "codeCommune": "01001", - "libelleAcheminement": "L ABERGEMENT CLEMENCIAT", - "nomCommune": "L ABERGEMENT CLEMENCIAT" + "codePostal": "10450", + "codeCommune": "10060", + "libelleAcheminement": "BREVIANDES", + "nomCommune": "BREVIANDES" }, { - "codePostal": "60230", - "codeCommune": "60139", - "libelleAcheminement": "CHAMBLY", - "nomCommune": "CHAMBLY" + "codePostal": "63200", + "codeCommune": "63212", + "libelleAcheminement": "MARSAT", + "nomCommune": "MARSAT" }, { - "codePostal": "38570", - "codeCommune": "38181", - "libelleAcheminement": "GONCELIN", - "nomCommune": "GONCELIN" + "codePostal": "53250", + "codeCommune": "53080", + "libelleAcheminement": "COUPTRAIN", + "nomCommune": "COUPTRAIN" }, { - "codePostal": "31370", - "codeCommune": "31382", - "libelleAcheminement": "MONTGRAS", - "nomCommune": "MONTGRAS" + "codePostal": "55290", + "codeCommune": "55359", + "libelleAcheminement": "MORLEY", + "nomCommune": "MORLEY" }, { - "codePostal": "01640", - "codeCommune": "01002", - "libelleAcheminement": "L ABERGEMENT DE VAREY", - "nomCommune": "L ABERGEMENT DE VAREY" + "codePostal": "63970", + "codeCommune": "63407", + "libelleAcheminement": "SAULZET LE FROID", + "nomCommune": "SAULZET LE FROID" }, { - "codePostal": "60240", - "codeCommune": "60144", - "libelleAcheminement": "CHAVENCON", - "nomCommune": "CHAVENCON" + "codePostal": "10450", + "codeCommune": "10060", + "libelleAcheminement": "BREVIANDES", + "nomCommune": "BREVIANDES" }, { - "codePostal": "38690", - "codeCommune": "38182", - "libelleAcheminement": "LE GRAND LEMPS", - "nomCommune": "LE GRAND LEMPS" + "codePostal": "63160", + "codeCommune": "63216", + "libelleAcheminement": "MAUZUN", + "nomCommune": "MAUZUN" }, { - "codePostal": "31350", - "codeCommune": "31385", - "libelleAcheminement": "MONTMAURIN", - "nomCommune": "MONTMAURIN" + "codePostal": "53230", + "codeCommune": "53082", + "libelleAcheminement": "COURBEVEILLE", + "nomCommune": "COURBEVEILLE" }, { - "codePostal": "01330", - "codeCommune": "01005", - "libelleAcheminement": "AMBERIEUX EN DOMBES", - "nomCommune": "AMBERIEUX EN DOMBES" + "codePostal": "55230", + "codeCommune": "55367", + "libelleAcheminement": "MUZERAY", + "nomCommune": "MUZERAY" }, { - "codePostal": "60350", - "codeCommune": "60145", - "libelleAcheminement": "CHELLES", - "nomCommune": "CHELLES" + "codePostal": "63840", + "codeCommune": "63412", + "libelleAcheminement": "SAUVESSANGES", + "nomCommune": "SAUVESSANGES" }, { - "codePostal": "38540", - "codeCommune": "38189", - "libelleAcheminement": "HEYRIEUX", - "nomCommune": "HEYRIEUX" + "codePostal": "10110", + "codeCommune": "10070", + "libelleAcheminement": "CELLES SUR OURCE", + "nomCommune": "CELLES SUR OURCE" }, { - "codePostal": "31420", - "codeCommune": "31386", - "libelleAcheminement": "MONTOULIEU ST BERNARD", - "nomCommune": "MONTOULIEU ST BERNARD" + "codePostal": "63220", + "codeCommune": "63218", + "libelleAcheminement": "MAYRES", + "nomCommune": "MAYRES" }, { - "codePostal": "01350", - "codeCommune": "01010", - "libelleAcheminement": "ANGLEFORT", - "nomCommune": "ANGLEFORT" + "codePostal": "53400", + "codeCommune": "53084", + "libelleAcheminement": "CRAON", + "nomCommune": "CRAON" }, { - "codePostal": "60120", - "codeCommune": "60146", - "libelleAcheminement": "CHEPOIX", - "nomCommune": "CHEPOIX" + "codePostal": "55000", + "codeCommune": "55369", + "libelleAcheminement": "NAIVES ROSIERES", + "nomCommune": "NAIVES ROSIERES" }, { - "codePostal": "38220", - "codeCommune": "38203", - "libelleAcheminement": "LAFFREY", - "nomCommune": "LAFFREY" + "codePostal": "63500", + "codeCommune": "63422", + "libelleAcheminement": "SOLIGNAT", + "nomCommune": "SOLIGNAT" }, { - "codePostal": "31430", - "codeCommune": "31387", - "libelleAcheminement": "MONTOUSSIN", - "nomCommune": "MONTOUSSIN" + "codePostal": "10110", + "codeCommune": "10071", + "libelleAcheminement": "CHACENAY", + "nomCommune": "CHACENAY" }, { - "codePostal": "01230", - "codeCommune": "01013", - "libelleAcheminement": "ARANDAS", - "nomCommune": "ARANDAS" + "codePostal": "63320", + "codeCommune": "63222", + "libelleAcheminement": "MEILHAUD", + "nomCommune": "MEILHAUD" }, { - "codePostal": "60440", - "codeCommune": "60148", - "libelleAcheminement": "CHEVREVILLE", - "nomCommune": "CHEVREVILLE" + "codePostal": "53170", + "codeCommune": "53087", + "libelleAcheminement": "LA CROPTE", + "nomCommune": "LA CROPTE" }, { - "codePostal": "38270", - "codeCommune": "38209", - "libelleAcheminement": "LENTIOL", - "nomCommune": "LENTIOL" + "codePostal": "55260", + "codeCommune": "55380", + "libelleAcheminement": "NEUVILLE EN VERDUNOIS", + "nomCommune": "NEUVILLE EN VERDUNOIS" }, { - "codePostal": "31850", - "codeCommune": "31389", - "libelleAcheminement": "MONTRABE", - "nomCommune": "MONTRABE" + "codePostal": "63490", + "codeCommune": "63423", + "libelleAcheminement": "SUGERES", + "nomCommune": "SUGERES" }, { - "codePostal": "01340", - "codeCommune": "01024", - "libelleAcheminement": "ATTIGNAT", - "nomCommune": "ATTIGNAT" + "codePostal": "10130", + "codeCommune": "10074", + "libelleAcheminement": "CHAMOY", + "nomCommune": "CHAMOY" }, { - "codePostal": "60190", - "codeCommune": "60152", - "libelleAcheminement": "CHOISY LA VICTOIRE", - "nomCommune": "CHOISY LA VICTOIRE" + "codePostal": "63115", + "codeCommune": "63226", + "libelleAcheminement": "MUR SUR ALLIER", + "nomCommune": "MUR SUR ALLIER" }, { - "codePostal": "38220", - "codeCommune": "38212", - "libelleAcheminement": "LIVET ET GAVET", - "nomCommune": "LIVET ET GAVET" + "codePostal": "53540", + "codeCommune": "53088", + "libelleAcheminement": "CUILLE", + "nomCommune": "CUILLE" }, { - "codePostal": "31210", - "codeCommune": "31390", - "libelleAcheminement": "MONTREJEAU", - "nomCommune": "MONTREJEAU" + "codePostal": "55250", + "codeCommune": "55389", + "libelleAcheminement": "NUBECOURT", + "nomCommune": "NUBECOURT" }, { - "codePostal": "01380", - "codeCommune": "01025", - "libelleAcheminement": "BAGE DOMMARTIN", - "nomCommune": "BAGE DOMMARTIN" + "codePostal": "63720", + "codeCommune": "63424", + "libelleAcheminement": "SURAT", + "nomCommune": "SURAT" }, { - "codePostal": "60110", - "codeCommune": "60162", - "libelleAcheminement": "CORBEIL CERF", - "nomCommune": "CORBEIL CERF" + "codePostal": "10700", + "codeCommune": "10075", + "libelleAcheminement": "CHAMPFLEURY", + "nomCommune": "CHAMPFLEURY" }, { - "codePostal": "38690", - "codeCommune": "38213", - "libelleAcheminement": "LONGECHENAL", - "nomCommune": "LONGECHENAL" + "codePostal": "63650", + "codeCommune": "63231", + "libelleAcheminement": "LA MONNERIE LE MONTEL", + "nomCommune": "LA MONNERIE LE MONTEL" }, { - "codePostal": "31600", - "codeCommune": "31395", - "libelleAcheminement": "MURET", - "nomCommune": "MURET" + "codePostal": "53190", + "codeCommune": "53091", + "libelleAcheminement": "DESERTINES", + "nomCommune": "DESERTINES" }, { - "codePostal": "01380", - "codeCommune": "01025", - "libelleAcheminement": "BAGE DOMMARTIN", - "nomCommune": "BAGE DOMMARTIN" + "codePostal": "55150", + "codeCommune": "55394", + "libelleAcheminement": "ORNES", + "nomCommune": "ORNES" }, { - "codePostal": "60350", - "codeCommune": "60167", - "libelleAcheminement": "COULOISY", - "nomCommune": "COULOISY" + "codePostal": "63810", + "codeCommune": "63437", + "libelleAcheminement": "TREMOUILLE ST LOUP", + "nomCommune": "TREMOUILLE ST LOUP" }, { - "codePostal": "38112", - "codeCommune": "38225", - "libelleAcheminement": "AUTRANS MEAUDRE EN VERCORS", - "nomCommune": "AUTRANS MEAUDRE EN VERCORS" + "codePostal": "10210", + "codeCommune": "10080", + "libelleAcheminement": "CHAOURCE", + "nomCommune": "CHAOURCE" }, { - "codePostal": "31330", - "codeCommune": "31403", - "libelleAcheminement": "ONDES", - "nomCommune": "ONDES" + "codePostal": "63460", + "codeCommune": "63235", + "libelleAcheminement": "MONTCEL", + "nomCommune": "MONTCEL" }, { - "codePostal": "01480", - "codeCommune": "01030", - "libelleAcheminement": "BEAUREGARD", - "nomCommune": "BEAUREGARD" + "codePostal": "53190", + "codeCommune": "53093", + "libelleAcheminement": "LA DOREE", + "nomCommune": "LA DOREE" }, { - "codePostal": "60660", - "codeCommune": "60173", - "libelleAcheminement": "CRAMOISY", - "nomCommune": "CRAMOISY" + "codePostal": "55400", + "codeCommune": "55400", + "libelleAcheminement": "PARFONDRUPT", + "nomCommune": "PARFONDRUPT" }, { - "codePostal": "38620", - "codeCommune": "38228", - "libelleAcheminement": "MERLAS", - "nomCommune": "MERLAS" + "codePostal": "63520", + "codeCommune": "63438", + "libelleAcheminement": "TREZIOUX", + "nomCommune": "TREZIOUX" }, { - "codePostal": "31220", - "codeCommune": "31406", - "libelleAcheminement": "PALAMINY", - "nomCommune": "PALAMINY" + "codePostal": "10150", + "codeCommune": "10084", + "libelleAcheminement": "CHARMONT SOUS BARBUISE", + "nomCommune": "CHARMONT SOUS BARBUISE" }, { - "codePostal": "01360", - "codeCommune": "01032", - "libelleAcheminement": "BELIGNEUX", - "nomCommune": "BELIGNEUX" + "codePostal": "63340", + "codeCommune": "63242", + "libelleAcheminement": "MORIAT", + "nomCommune": "MORIAT" }, { - "codePostal": "60360", - "codeCommune": "60178", - "libelleAcheminement": "CREVECOEUR LE GRAND", - "nomCommune": "CREVECOEUR LE GRAND" + "codePostal": "53190", + "codeCommune": "53100", + "libelleAcheminement": "FOUGEROLLES DU PLESSIS", + "nomCommune": "FOUGEROLLES DU PLESSIS" }, { - "codePostal": "38300", - "codeCommune": "38230", - "libelleAcheminement": "MEYRIE", - "nomCommune": "MEYRIE" + "codePostal": "55230", + "codeCommune": "55405", + "libelleAcheminement": "PILLON", + "nomCommune": "PILLON" }, { - "codePostal": "31320", - "codeCommune": "31409", - "libelleAcheminement": "PECHABOU", - "nomCommune": "PECHABOU" + "codePostal": "63910", + "codeCommune": "63445", + "libelleAcheminement": "VASSEL", + "nomCommune": "VASSEL" }, { - "codePostal": "01360", - "codeCommune": "01032", - "libelleAcheminement": "BELIGNEUX", - "nomCommune": "BELIGNEUX" + "codePostal": "10290", + "codeCommune": "10085", + "libelleAcheminement": "CHARMOY", + "nomCommune": "CHARMOY" }, { - "codePostal": "60112", - "codeCommune": "60180", - "libelleAcheminement": "CRILLON", - "nomCommune": "CRILLON" + "codePostal": "63700", + "codeCommune": "63243", + "libelleAcheminement": "MOUREUILLE", + "nomCommune": "MOUREUILLE" }, { - "codePostal": "38270", - "codeCommune": "38240", - "libelleAcheminement": "MOISSIEU SUR DOLON", - "nomCommune": "MOISSIEU SUR DOLON" + "codePostal": "53410", + "codeCommune": "53108", + "libelleAcheminement": "LA GRAVELLE", + "nomCommune": "LA GRAVELLE" }, { - "codePostal": "31350", - "codeCommune": "31412", - "libelleAcheminement": "PEGUILHAN", - "nomCommune": "PEGUILHAN" + "codePostal": "55600", + "codeCommune": "55410", + "libelleAcheminement": "QUINCY LANDZECOURT", + "nomCommune": "QUINCY LANDZECOURT" }, { - "codePostal": "01360", - "codeCommune": "01032", - "libelleAcheminement": "BELIGNEUX", - "nomCommune": "BELIGNEUX" + "codePostal": "63260", + "codeCommune": "63446", + "libelleAcheminement": "VENSAT", + "nomCommune": "VENSAT" }, { - "codePostal": "60400", - "codeCommune": "60189", - "libelleAcheminement": "CUTS", - "nomCommune": "CUTS" + "codePostal": "10700", + "codeCommune": "10095", + "libelleAcheminement": "LE CHENE", + "nomCommune": "LE CHENE" }, { - "codePostal": "38160", - "codeCommune": "38245", - "libelleAcheminement": "MONTAGNE", - "nomCommune": "MONTAGNE" + "codePostal": "63560", + "codeCommune": "63251", + "libelleAcheminement": "NEUF EGLISE", + "nomCommune": "NEUF EGLISE" }, { - "codePostal": "31480", - "codeCommune": "31413", - "libelleAcheminement": "PELLEPORT", - "nomCommune": "PELLEPORT" + "codePostal": "53160", + "codeCommune": "53122", + "libelleAcheminement": "JUBLAINS", + "nomCommune": "JUBLAINS" }, { - "codePostal": "01200", - "codeCommune": "01033", - "libelleAcheminement": "VALSERHONE", - "nomCommune": "VALSERHONE" + "codePostal": "55120", + "codeCommune": "55416", + "libelleAcheminement": "RARECOURT", + "nomCommune": "RARECOURT" }, { - "codePostal": "60210", - "codeCommune": "60194", - "libelleAcheminement": "DARGIES", - "nomCommune": "DARGIES" + "codePostal": "63210", + "codeCommune": "63451", + "libelleAcheminement": "VERNINES", + "nomCommune": "VERNINES" }, { - "codePostal": "38510", - "codeCommune": "38261", - "libelleAcheminement": "MORESTEL", - "nomCommune": "MORESTEL" + "codePostal": "10250", + "codeCommune": "10111", + "libelleAcheminement": "COURTERON", + "nomCommune": "COURTERON" }, { - "codePostal": "31860", - "codeCommune": "31421", - "libelleAcheminement": "PINS JUSTARET", - "nomCommune": "PINS JUSTARET" + "codePostal": "63340", + "codeCommune": "63255", + "libelleAcheminement": "NONETTE ORSONNETTE", + "nomCommune": "NONETTE ORSONNETTE" }, { - "codePostal": "01370", - "codeCommune": "01038", - "libelleAcheminement": "BENY", - "nomCommune": "BENY" + "codePostal": "53200", + "codeCommune": "53124", + "libelleAcheminement": "PREE D ANJOU", + "nomCommune": "PREE D ANJOU" }, { - "codePostal": "60420", - "codeCommune": "60200", - "libelleAcheminement": "DOMFRONT", - "nomCommune": "DOMFRONT" + "codePostal": "55120", + "codeCommune": "55419", + "libelleAcheminement": "RECICOURT", + "nomCommune": "RECICOURT" }, { - "codePostal": "38770", - "codeCommune": "38266", - "libelleAcheminement": "LA MOTTE ST MARTIN", - "nomCommune": "LA MOTTE ST MARTIN" + "codePostal": "63330", + "codeCommune": "63462", + "libelleAcheminement": "VIRLET", + "nomCommune": "VIRLET" }, { - "codePostal": "31430", - "codeCommune": "31436", - "libelleAcheminement": "POUY DE TOUGES", - "nomCommune": "POUY DE TOUGES" + "codePostal": "10210", + "codeCommune": "10120", + "libelleAcheminement": "CUSSANGY", + "nomCommune": "CUSSANGY" }, { - "codePostal": "01340", - "codeCommune": "01040", - "libelleAcheminement": "BEREZIAT", - "nomCommune": "BEREZIAT" + "codePostal": "63880", + "codeCommune": "63260", + "libelleAcheminement": "OLMET", + "nomCommune": "OLMET" }, { - "codePostal": "60800", - "codeCommune": "60203", - "libelleAcheminement": "DUVY", - "nomCommune": "DUVY" + "codePostal": "53110", + "codeCommune": "53127", + "libelleAcheminement": "LASSAY LES CHATEAUX", + "nomCommune": "LASSAY LES CHATEAUX" }, { - "codePostal": "38260", - "codeCommune": "38267", - "libelleAcheminement": "LE MOTTIER", - "nomCommune": "MOTTIER" + "codePostal": "55190", + "codeCommune": "55421", + "libelleAcheminement": "REFFROY", + "nomCommune": "REFFROY" }, { - "codePostal": "31570", - "codeCommune": "31439", - "libelleAcheminement": "PRESERVILLE", - "nomCommune": "PRESERVILLE" + "codePostal": "63620", + "codeCommune": "63467", + "libelleAcheminement": "VOINGT", + "nomCommune": "VOINGT" }, { - "codePostal": "01500", - "codeCommune": "01041", - "libelleAcheminement": "BETTANT", - "nomCommune": "BETTANT" + "codePostal": "10130", + "codeCommune": "10122", + "libelleAcheminement": "DAVREY", + "nomCommune": "DAVREY" }, { - "codePostal": "60210", - "codeCommune": "60205", - "libelleAcheminement": "ELENCOURT", - "nomCommune": "ELENCOURT" + "codePostal": "63210", + "codeCommune": "63264", + "libelleAcheminement": "ORCIVAL", + "nomCommune": "ORCIVAL" }, { - "codePostal": "38350", - "codeCommune": "38273", - "libelleAcheminement": "NANTES EN RATIER", - "nomCommune": "NANTES EN RATIER" + "codePostal": "53540", + "codeCommune": "53128", + "libelleAcheminement": "LAUBRIERES", + "nomCommune": "LAUBRIERES" }, { - "codePostal": "31360", - "codeCommune": "31440", - "libelleAcheminement": "PROUPIARY", - "nomCommune": "PROUPIARY" + "codePostal": "55800", + "codeCommune": "55427", + "libelleAcheminement": "REVIGNY SUR ORNAIN", + "nomCommune": "REVIGNY SUR ORNAIN" }, { - "codePostal": "01290", - "codeCommune": "01042", - "libelleAcheminement": "BEY", - "nomCommune": "BEY" + "codePostal": "63120", + "codeCommune": "63468", + "libelleAcheminement": "VOLLORE MONTAGNE", + "nomCommune": "VOLLORE MONTAGNE" }, { - "codePostal": "60157", - "codeCommune": "60206", - "libelleAcheminement": "ELINCOURT STE MARGUERITE", - "nomCommune": "ELINCOURT STE MARGUERITE" + "codePostal": "10700", + "codeCommune": "10130", + "libelleAcheminement": "DOSNON", + "nomCommune": "DOSNON" }, { - "codePostal": "38470", - "codeCommune": "38275", - "libelleAcheminement": "SERRE NERPOL", - "nomCommune": "SERRE NERPOL" + "codePostal": "63550", + "codeCommune": "63267", + "libelleAcheminement": "PALLADUC", + "nomCommune": "PALLADUC" }, { - "codePostal": "31520", - "codeCommune": "31446", - "libelleAcheminement": "RAMONVILLE ST AGNE", - "nomCommune": "RAMONVILLE ST AGNE" + "codePostal": "53210", + "codeCommune": "53141", + "libelleAcheminement": "LOUVIGNE", + "nomCommune": "LOUVIGNE" }, { - "codePostal": "01640", - "codeCommune": "01056", - "libelleAcheminement": "BOYEUX ST JEROME", - "nomCommune": "BOYEUX ST JEROME" + "codePostal": "55150", + "codeCommune": "55428", + "libelleAcheminement": "REVILLE AUX BOIS", + "nomCommune": "REVILLE AUX BOIS" }, { - "codePostal": "60123", - "codeCommune": "60207", - "libelleAcheminement": "EMEVILLE", - "nomCommune": "EMEVILLE" + "codePostal": "63120", + "codeCommune": "63469", + "libelleAcheminement": "VOLLORE VILLE", + "nomCommune": "VOLLORE VILLE" }, { - "codePostal": "38300", - "codeCommune": "38276", - "libelleAcheminement": "NIVOLAS VERMELLE", - "nomCommune": "NIVOLAS VERMELLE" + "codePostal": "10170", + "codeCommune": "10131", + "libelleAcheminement": "DROUPT ST BASLE", + "nomCommune": "DROUPT ST BASLE" }, { - "codePostal": "31250", - "codeCommune": "31451", - "libelleAcheminement": "REVEL", - "nomCommune": "REVEL" + "codePostal": "63270", + "codeCommune": "63269", + "libelleAcheminement": "PARENT", + "nomCommune": "PARENT" }, { - "codePostal": "01110", - "codeCommune": "01060", - "libelleAcheminement": "BRENOD", - "nomCommune": "BRENOD" + "codePostal": "53250", + "codeCommune": "53142", + "libelleAcheminement": "MADRE", + "nomCommune": "MADRE" }, { - "codePostal": "60240", - "codeCommune": "60209", - "libelleAcheminement": "LA CORNE EN VEXIN", - "nomCommune": "LA CORNE EN VEXIN" + "codePostal": "55300", + "codeCommune": "55431", + "libelleAcheminement": "RICHECOURT", + "nomCommune": "RICHECOURT" }, { - "codePostal": "38450", - "codeCommune": "38277", - "libelleAcheminement": "NOTRE DAME DE COMMIERS", - "nomCommune": "NOTRE DAME DE COMMIERS" + "codePostal": "63700", + "codeCommune": "63471", + "libelleAcheminement": "YOUX", + "nomCommune": "YOUX" }, { - "codePostal": "31290", - "codeCommune": "31453", - "libelleAcheminement": "RIEUMAJOU", - "nomCommune": "RIEUMAJOU" + "codePostal": "10350", + "codeCommune": "10134", + "libelleAcheminement": "ECHEMINES", + "nomCommune": "ECHEMINES" }, { - "codePostal": "01300", - "codeCommune": "01061", - "libelleAcheminement": "BRENS", - "nomCommune": "BRENS" + "codePostal": "63800", + "codeCommune": "63273", + "libelleAcheminement": "PERIGNAT SUR ALLIER", + "nomCommune": "PERIGNAT SUR ALLIER" }, { - "codePostal": "60190", - "codeCommune": "60210", - "libelleAcheminement": "EPINEUSE", - "nomCommune": "EPINEUSE" + "codePostal": "53100", + "codeCommune": "53147", + "libelleAcheminement": "MAYENNE", + "nomCommune": "MAYENNE" }, { - "codePostal": "38780", - "codeCommune": "38288", - "libelleAcheminement": "OYTIER ST OBLAS", - "nomCommune": "OYTIER ST OBLAS" + "codePostal": "55150", + "codeCommune": "55437", + "libelleAcheminement": "ROMAGNE SOUS LES COTES", + "nomCommune": "ROMAGNE SOUS LES COTES" }, { - "codePostal": "31140", - "codeCommune": "31467", - "libelleAcheminement": "ST ALBAN", - "nomCommune": "ST ALBAN" + "codePostal": "63270", + "codeCommune": "63472", + "libelleAcheminement": "YRONDE ET BURON", + "nomCommune": "YRONDE ET BURON" }, { - "codePostal": "01480", - "codeCommune": "01075", - "libelleAcheminement": "CHALEINS", - "nomCommune": "CHALEINS" + "codePostal": "10110", + "codeCommune": "10136", + "libelleAcheminement": "EGUILLY SOUS BOIS", + "nomCommune": "EGUILLY SOUS BOIS" }, { - "codePostal": "60110", - "codeCommune": "60218", - "libelleAcheminement": "ESCHES", - "nomCommune": "ESCHES" + "codePostal": "63270", + "codeCommune": "63280", + "libelleAcheminement": "PIGNOLS", + "nomCommune": "PIGNOLS" }, { - "codePostal": "38270", - "codeCommune": "38290", - "libelleAcheminement": "PACT", - "nomCommune": "PACT" + "codePostal": "53200", + "codeCommune": "53150", + "libelleAcheminement": "MENIL", + "nomCommune": "MENIL" }, { - "codePostal": "31440", - "codeCommune": "31471", - "libelleAcheminement": "ST BEAT LEZ", - "nomCommune": "ST BEAT LEZ" + "codePostal": "55260", + "codeCommune": "55442", + "libelleAcheminement": "RAIVAL", + "nomCommune": "RAIVAL" }, { - "codePostal": "01410", - "codeCommune": "01081", - "libelleAcheminement": "CHAMPFROMIER", - "nomCommune": "CHAMPFROMIER" + "codePostal": "64460", + "codeCommune": "64001", + "libelleAcheminement": "AAST", + "nomCommune": "AAST" }, { - "codePostal": "60220", - "codeCommune": "60219", - "libelleAcheminement": "ESCLES ST PIERRE", - "nomCommune": "ESCLES ST PIERRE" + "codePostal": "10190", + "codeCommune": "10142", + "libelleAcheminement": "ESTISSAC", + "nomCommune": "ESTISSAC" }, { - "codePostal": "38850", - "codeCommune": "38292", - "libelleAcheminement": "VILLAGES DU LAC DE PALADRU", - "nomCommune": "VILLAGES DU LAC DE PALADRU" + "codePostal": "63430", + "codeCommune": "63284", + "libelleAcheminement": "PONT DU CHATEAU", + "nomCommune": "PONT DU CHATEAU" }, { - "codePostal": "31440", - "codeCommune": "31471", - "libelleAcheminement": "ST BEAT LEZ", - "nomCommune": "ST BEAT LEZ" + "codePostal": "53970", + "codeCommune": "53157", + "libelleAcheminement": "MONTIGNE LE BRILLANT", + "nomCommune": "MONTIGNE LE BRILLANT" }, { - "codePostal": "01320", - "codeCommune": "01092", - "libelleAcheminement": "CHATILLON LA PALUD", - "nomCommune": "CHATILLON LA PALUD" + "codePostal": "55400", + "codeCommune": "55443", + "libelleAcheminement": "ROUVRES EN WOEVRE", + "nomCommune": "ROUVRES EN WOEVRE" }, { - "codePostal": "60620", - "codeCommune": "60224", - "libelleAcheminement": "ETAVIGNY", - "nomCommune": "ETAVIGNY" + "codePostal": "64150", + "codeCommune": "64003", + "libelleAcheminement": "ABIDOS", + "nomCommune": "ABIDOS" }, { - "codePostal": "38550", - "codeCommune": "38298", - "libelleAcheminement": "LE PEAGE DE ROUSSILLON", - "nomCommune": "LE PEAGE DE ROUSSILLON" + "codePostal": "10190", + "codeCommune": "10142", + "libelleAcheminement": "ESTISSAC", + "nomCommune": "ESTISSAC" }, { - "codePostal": "31430", - "codeCommune": "31476", - "libelleAcheminement": "ST ELIX LE CHATEAU", - "nomCommune": "ST ELIX LE CHATEAU" + "codePostal": "63330", + "codeCommune": "63293", + "libelleAcheminement": "LE QUARTIER", + "nomCommune": "LE QUARTIER" }, { - "codePostal": "01660", - "codeCommune": "01096", - "libelleAcheminement": "CHAVEYRIAT", - "nomCommune": "CHAVEYRIAT" + "codePostal": "53320", + "codeCommune": "53158", + "libelleAcheminement": "MONTJEAN", + "nomCommune": "MONTJEAN" }, { - "codePostal": "60960", - "codeCommune": "60233", - "libelleAcheminement": "FEUQUIERES", - "nomCommune": "FEUQUIERES" + "codePostal": "55170", + "codeCommune": "55447", + "libelleAcheminement": "RUPT AUX NONAINS", + "nomCommune": "RUPT AUX NONAINS" }, { - "codePostal": "38260", - "codeCommune": "38311", - "libelleAcheminement": "POMMIER DE BEAUREPAIRE", - "nomCommune": "POMMIER DE BEAUREPAIRE" + "codePostal": "64490", + "codeCommune": "64006", + "libelleAcheminement": "ACCOUS", + "nomCommune": "ACCOUS" }, { - "codePostal": "31350", - "codeCommune": "31479", - "libelleAcheminement": "ST FERREOL DE COMMINGES", - "nomCommune": "ST FERREOL DE COMMINGES" + "codePostal": "10290", + "codeCommune": "10146", + "libelleAcheminement": "FAY LES MARCILLY", + "nomCommune": "FAY LES MARCILLY" }, { - "codePostal": "01170", - "codeCommune": "01103", - "libelleAcheminement": "CHEVRY", - "nomCommune": "CHEVRY" + "codePostal": "63310", + "codeCommune": "63295", + "libelleAcheminement": "RANDAN", + "nomCommune": "RANDAN" }, { - "codePostal": "60120", - "codeCommune": "60237", - "libelleAcheminement": "FLECHY", - "nomCommune": "FLECHY" + "codePostal": "53640", + "codeCommune": "53160", + "libelleAcheminement": "MONTREUIL POULAY", + "nomCommune": "MONTREUIL POULAY" }, { - "codePostal": "38780", - "codeCommune": "38318", - "libelleAcheminement": "PONT EVEQUE", - "nomCommune": "PONT EVEQUE" + "codePostal": "55150", + "codeCommune": "55450", + "libelleAcheminement": "RUPT SUR OTHAIN", + "nomCommune": "RUPT SUR OTHAIN" }, { - "codePostal": "31800", - "codeCommune": "31483", - "libelleAcheminement": "ST GAUDENS", - "nomCommune": "ST GAUDENS" + "codePostal": "64400", + "codeCommune": "64007", + "libelleAcheminement": "AGNOS", + "nomCommune": "AGNOS" }, { - "codePostal": "01300", - "codeCommune": "01116", - "libelleAcheminement": "CONTREVOZ", - "nomCommune": "CONTREVOZ" + "codePostal": "10400", + "codeCommune": "10148", + "libelleAcheminement": "FERREUX QUINCEY", + "nomCommune": "FERREUX QUINCEY" }, { - "codePostal": "60380", - "codeCommune": "60244", - "libelleAcheminement": "FONTENAY TORCY", - "nomCommune": "FONTENAY TORCY" + "codePostal": "63190", + "codeCommune": "63296", + "libelleAcheminement": "RAVEL", + "nomCommune": "RAVEL" }, { - "codePostal": "38680", - "codeCommune": "38322", - "libelleAcheminement": "PRESLES", - "nomCommune": "PRESLES" + "codePostal": "53150", + "codeCommune": "53161", + "libelleAcheminement": "MONTSURS", + "nomCommune": "MONTSURS" }, { - "codePostal": "31180", - "codeCommune": "31484", - "libelleAcheminement": "ST GENIES BELLEVUE", - "nomCommune": "ST GENIES BELLEVUE" + "codePostal": "55160", + "codeCommune": "55465", + "libelleAcheminement": "ST REMY LA CALONNE", + "nomCommune": "ST REMY LA CALONNE" }, { - "codePostal": "01290", - "codeCommune": "01123", - "libelleAcheminement": "CORMORANCHE SUR SAONE", - "nomCommune": "CORMORANCHE SUR SAONE" + "codePostal": "64120", + "codeCommune": "64010", + "libelleAcheminement": "AICIRITS CAMOU SUHAST", + "nomCommune": "AICIRITS CAMOU SUHAST" }, { - "codePostal": "60220", - "codeCommune": "60245", - "libelleAcheminement": "FORMERIE", - "nomCommune": "FORMERIE" + "codePostal": "10360", + "codeCommune": "10155", + "libelleAcheminement": "FONTETTE", + "nomCommune": "FONTETTE" }, { - "codePostal": "38350", - "codeCommune": "38326", - "libelleAcheminement": "PRUNIERES", - "nomCommune": "PRUNIERES" + "codePostal": "63930", + "codeCommune": "63298", + "libelleAcheminement": "LA RENAUDIE", + "nomCommune": "LA RENAUDIE" }, { - "codePostal": "31350", - "codeCommune": "31498", - "libelleAcheminement": "ST LOUP EN COMMINGES", - "nomCommune": "ST LOUP EN COMMINGES" + "codePostal": "53250", + "codeCommune": "53164", + "libelleAcheminement": "NEUILLY LE VENDIN", + "nomCommune": "NEUILLY LE VENDIN" }, { - "codePostal": "01340", - "codeCommune": "01130", - "libelleAcheminement": "BRESSE VALLONS", - "nomCommune": "BRESSE VALLONS" + "codePostal": "55000", + "codeCommune": "55466", + "libelleAcheminement": "SALMAGNE", + "nomCommune": "SALMAGNE" }, { - "codePostal": "60130", - "codeCommune": "60252", - "libelleAcheminement": "FOURNIVAL", - "nomCommune": "FOURNIVAL" + "codePostal": "64120", + "codeCommune": "64010", + "libelleAcheminement": "AICIRITS CAMOU SUHAST", + "nomCommune": "AICIRITS CAMOU SUHAST" }, { - "codePostal": "38950", - "codeCommune": "38328", - "libelleAcheminement": "QUAIX EN CHARTREUSE", - "nomCommune": "QUAIX EN CHARTREUSE" + "codePostal": "10190", + "codeCommune": "10156", + "libelleAcheminement": "FONTVANNES", + "nomCommune": "FONTVANNES" }, { - "codePostal": "31370", - "codeCommune": "31520", - "libelleAcheminement": "SAJAS", - "nomCommune": "SAJAS" + "codePostal": "63200", + "codeCommune": "63300", + "libelleAcheminement": "RIOM", + "nomCommune": "RIOM" }, { - "codePostal": "01750", - "codeCommune": "01134", - "libelleAcheminement": "CROTTET", - "nomCommune": "CROTTET" + "codePostal": "53410", + "codeCommune": "53169", + "libelleAcheminement": "OLIVET", + "nomCommune": "OLIVET" }, { - "codePostal": "60190", - "codeCommune": "60254", - "libelleAcheminement": "FRANCIERES", - "nomCommune": "FRANCIERES" + "codePostal": "55300", + "codeCommune": "55467", + "libelleAcheminement": "SAMPIGNY", + "nomCommune": "SAMPIGNY" }, { - "codePostal": "38270", - "codeCommune": "38335", - "libelleAcheminement": "REVEL TOURDAN", - "nomCommune": "REVEL TOURDAN" + "codePostal": "64130", + "codeCommune": "64012", + "libelleAcheminement": "AINHARP", + "nomCommune": "AINHARP" }, { - "codePostal": "31110", - "codeCommune": "31524", - "libelleAcheminement": "SALLES ET PRATVIEL", - "nomCommune": "SALLES ET PRATVIEL" + "codePostal": "10200", + "codeCommune": "10161", + "libelleAcheminement": "FRESNAY", + "nomCommune": "FRESNAY" }, { - "codePostal": "01170", - "codeCommune": "01135", - "libelleAcheminement": "CROZET", - "nomCommune": "CROZET" + "codePostal": "63670", + "codeCommune": "63302", + "libelleAcheminement": "LA ROCHE BLANCHE", + "nomCommune": "LA ROCHE BLANCHE" }, { - "codePostal": "60240", - "codeCommune": "60256", - "libelleAcheminement": "MONTCHEVREUIL", - "nomCommune": "MONTCHEVREUIL" + "codePostal": "53220", + "codeCommune": "53181", + "libelleAcheminement": "PONTMAIN", + "nomCommune": "PONTMAIN" }, { - "codePostal": "38140", - "codeCommune": "38337", - "libelleAcheminement": "RIVES SUR FURE", - "nomCommune": "RIVES" + "codePostal": "55110", + "codeCommune": "55469", + "libelleAcheminement": "SASSEY SUR MEUSE", + "nomCommune": "SASSEY SUR MEUSE" }, { - "codePostal": "31600", - "codeCommune": "31533", - "libelleAcheminement": "SAUBENS", - "nomCommune": "SAUBENS" + "codePostal": "64160", + "codeCommune": "64027", + "libelleAcheminement": "ANOS", + "nomCommune": "ANOS" }, { - "codePostal": "01560", - "codeCommune": "01139", - "libelleAcheminement": "CURCIAT DONGALON", - "nomCommune": "CURCIAT DONGALON" + "codePostal": "10200", + "codeCommune": "10163", + "libelleAcheminement": "FULIGNY", + "nomCommune": "FULIGNY" }, { - "codePostal": "60530", - "codeCommune": "60259", - "libelleAcheminement": "FRESNOY EN THELLE", - "nomCommune": "FRESNOY EN THELLE" + "codePostal": "63420", + "codeCommune": "63303", + "libelleAcheminement": "ROCHE CHARLES LA MAYRAND", + "nomCommune": "ROCHE CHARLES LA MAYRAND" }, { - "codePostal": "38210", - "codeCommune": "38338", - "libelleAcheminement": "LA RIVIERE", - "nomCommune": "LA RIVIERE" + "codePostal": "53140", + "codeCommune": "53185", + "libelleAcheminement": "PRE EN PAIL ST SAMSON", + "nomCommune": "PRE EN PAIL ST SAMSON" }, { - "codePostal": "31510", - "codeCommune": "31535", - "libelleAcheminement": "SAUVETERRE DE COMMINGES", - "nomCommune": "SAUVETERRE DE COMMINGES" + "codePostal": "55500", + "codeCommune": "55472", + "libelleAcheminement": "SAULVAUX", + "nomCommune": "SAULVAUX" }, { - "codePostal": "01590", - "codeCommune": "01148", - "libelleAcheminement": "DORTAN", - "nomCommune": "DORTAN" + "codePostal": "64320", + "codeCommune": "64041", + "libelleAcheminement": "ARESSY", + "nomCommune": "ARESSY" }, { - "codePostal": "60127", - "codeCommune": "60260", - "libelleAcheminement": "FRESNOY LA RIVIERE", - "nomCommune": "FRESNOY LA RIVIERE" + "codePostal": "10210", + "codeCommune": "10168", + "libelleAcheminement": "LES GRANGES", + "nomCommune": "LES GRANGES" }, { - "codePostal": "38090", - "codeCommune": "38339", - "libelleAcheminement": "ROCHE", - "nomCommune": "ROCHE" + "codePostal": "63420", + "codeCommune": "63303", + "libelleAcheminement": "ROCHE CHARLES LA MAYRAND", + "nomCommune": "ROCHE CHARLES LA MAYRAND" }, { - "codePostal": "31800", - "codeCommune": "31536", - "libelleAcheminement": "SAUX ET POMAREDE", - "nomCommune": "SAUX ET POMAREDE" + "codePostal": "53360", + "codeCommune": "53186", + "libelleAcheminement": "QUELAINES ST GAULT", + "nomCommune": "QUELAINES ST GAULT" }, { - "codePostal": "01250", - "codeCommune": "01150", - "libelleAcheminement": "DROM", - "nomCommune": "DROM" + "codePostal": "55500", + "codeCommune": "55472", + "libelleAcheminement": "SAULVAUX", + "nomCommune": "SAULVAUX" }, { - "codePostal": "60480", - "codeCommune": "60265", - "libelleAcheminement": "FROISSY", - "nomCommune": "FROISSY" + "codePostal": "64410", + "codeCommune": "64044", + "libelleAcheminement": "ARGET", + "nomCommune": "ARGET" }, { - "codePostal": "38480", - "codeCommune": "38343", - "libelleAcheminement": "ROMAGNIEU", - "nomCommune": "ROMAGNIEU" + "codePostal": "10700", + "codeCommune": "10172", + "libelleAcheminement": "HERBISSE", + "nomCommune": "HERBISSE" }, { - "codePostal": "31460", - "codeCommune": "31540", - "libelleAcheminement": "SEGREVILLE", - "nomCommune": "SEGREVILLE" + "codePostal": "63220", + "codeCommune": "63312", + "libelleAcheminement": "ST ALYRE D ARLANC", + "nomCommune": "ST ALYRE D ARLANC" }, { - "codePostal": "01550", - "codeCommune": "01158", - "libelleAcheminement": "FARGES", - "nomCommune": "FARGES" + "codePostal": "53700", + "codeCommune": "53198", + "libelleAcheminement": "ST AUBIN DU DESERT", + "nomCommune": "ST AUBIN DU DESERT" }, { - "codePostal": "60400", - "codeCommune": "60270", - "libelleAcheminement": "GENVRY", - "nomCommune": "GENVRY" + "codePostal": "55160", + "codeCommune": "55473", + "libelleAcheminement": "SAULX LES CHAMPLON", + "nomCommune": "SAULX LES CHAMPLON" }, { - "codePostal": "38300", - "codeCommune": "38348", - "libelleAcheminement": "RUY MONTCEAU", - "nomCommune": "RUY MONTCEAU" + "codePostal": "64130", + "codeCommune": "64050", + "libelleAcheminement": "ARRAST LARREBIEU", + "nomCommune": "ARRAST LARREBIEU" }, { - "codePostal": "31430", - "codeCommune": "31543", - "libelleAcheminement": "SENARENS", - "nomCommune": "SENARENS" + "codePostal": "10800", + "codeCommune": "10173", + "libelleAcheminement": "ISLE AUMONT", + "nomCommune": "ISLE AUMONT" }, { - "codePostal": "01090", - "codeCommune": "01165", - "libelleAcheminement": "FRANCHELEINS", - "nomCommune": "FRANCHELEINS" + "codePostal": "63310", + "codeCommune": "63317", + "libelleAcheminement": "ST ANDRE LE COQ", + "nomCommune": "ST ANDRE LE COQ" }, { - "codePostal": "60380", - "codeCommune": "60271", - "libelleAcheminement": "GERBEROY", - "nomCommune": "GERBEROY" + "codePostal": "53140", + "codeCommune": "53204", + "libelleAcheminement": "ST CALAIS DU DESERT", + "nomCommune": "ST CALAIS DU DESERT" }, { - "codePostal": "38650", - "codeCommune": "38355", - "libelleAcheminement": "ST ANDEOL", - "nomCommune": "ST ANDEOL" + "codePostal": "55190", + "codeCommune": "55475", + "libelleAcheminement": "SAUVOY", + "nomCommune": "SAUVOY" }, { - "codePostal": "31560", - "codeCommune": "31546", - "libelleAcheminement": "SEYRE", - "nomCommune": "SEYRE" + "codePostal": "64370", + "codeCommune": "64057", + "libelleAcheminement": "ARTHEZ DE BEARN", + "nomCommune": "ARTHEZ DE BEARN" }, { - "codePostal": "01190", - "codeCommune": "01175", - "libelleAcheminement": "GORREVOD", - "nomCommune": "GORREVOD" + "codePostal": "10500", + "codeCommune": "10184", + "libelleAcheminement": "JUZANVIGNY", + "nomCommune": "JUZANVIGNY" }, { - "codePostal": "60129", - "codeCommune": "60272", - "libelleAcheminement": "GILOCOURT", - "nomCommune": "GILOCOURT" + "codePostal": "63660", + "codeCommune": "63319", + "libelleAcheminement": "ST ANTHEME", + "nomCommune": "ST ANTHEME" }, { - "codePostal": "38160", - "codeCommune": "38360", - "libelleAcheminement": "ST APPOLINARD", - "nomCommune": "ST APPOLINARD" + "codePostal": "53500", + "codeCommune": "53211", + "libelleAcheminement": "ST DENIS DE GASTINES", + "nomCommune": "ST DENIS DE GASTINES" }, { - "codePostal": "31570", - "codeCommune": "31551", - "libelleAcheminement": "TARABEL", - "nomCommune": "TARABEL" + "codePostal": "55170", + "codeCommune": "55477", + "libelleAcheminement": "SAVONNIERES EN PERTHOIS", + "nomCommune": "SAVONNIERES EN PERTHOIS" }, { - "codePostal": "01250", - "codeCommune": "01177", - "libelleAcheminement": "GRAND CORENT", - "nomCommune": "GRAND CORENT" + "codePostal": "64260", + "codeCommune": "64069", + "libelleAcheminement": "ASTE BEON", + "nomCommune": "ASTE BEON" }, { - "codePostal": "60650", - "codeCommune": "60275", - "libelleAcheminement": "GLATIGNY", - "nomCommune": "GLATIGNY" + "codePostal": "10210", + "codeCommune": "10185", + "libelleAcheminement": "LAGESSE", + "nomCommune": "LAGESSE" }, { - "codePostal": "38960", - "codeCommune": "38362", - "libelleAcheminement": "ST AUPRE", - "nomCommune": "ST AUPRE" + "codePostal": "63500", + "codeCommune": "63321", + "libelleAcheminement": "ST BABEL", + "nomCommune": "ST BABEL" }, { - "codePostal": "31260", - "codeCommune": "31554", - "libelleAcheminement": "TOUILLE", - "nomCommune": "TOUILLE" + "codePostal": "53220", + "codeCommune": "53213", + "libelleAcheminement": "ST ELLIER DU MAINE", + "nomCommune": "ST ELLIER DU MAINE" }, { - "codePostal": "01220", - "codeCommune": "01180", - "libelleAcheminement": "GRILLY", - "nomCommune": "GRILLY" + "codePostal": "55230", + "codeCommune": "55481", + "libelleAcheminement": "SENON", + "nomCommune": "SENON" }, { - "codePostal": "60640", - "codeCommune": "60278", - "libelleAcheminement": "GOLANCOURT", - "nomCommune": "GOLANCOURT" + "codePostal": "64390", + "codeCommune": "64071", + "libelleAcheminement": "ATHOS ASPIS", + "nomCommune": "ATHOS ASPIS" }, { - "codePostal": "38620", - "codeCommune": "38372", - "libelleAcheminement": "ST BUEIL", - "nomCommune": "ST BUEIL" + "codePostal": "10700", + "codeCommune": "10195", + "libelleAcheminement": "LHUITRE", + "nomCommune": "LHUITRE" }, { - "codePostal": "31100", - "codeCommune": "31555", - "libelleAcheminement": "TOULOUSE", - "nomCommune": "TOULOUSE" + "codePostal": "63630", + "codeCommune": "63324", + "libelleAcheminement": "ST BONNET LE CHASTEL", + "nomCommune": "ST BONNET LE CHASTEL" }, { - "codePostal": "01110", - "codeCommune": "01185", - "libelleAcheminement": "PLATEAU D HAUTEVILLE", - "nomCommune": "PLATEAU D HAUTEVILLE" + "codePostal": "53600", + "codeCommune": "53218", + "libelleAcheminement": "STE GEMMES LE ROBERT", + "nomCommune": "STE GEMMES LE ROBERT" }, { - "codePostal": "60210", - "codeCommune": "60286", - "libelleAcheminement": "GRANDVILLIERS", - "nomCommune": "GRANDVILLIERS" + "codePostal": "55220", + "codeCommune": "55482", + "libelleAcheminement": "SENONCOURT LES MAUJOUY", + "nomCommune": "SENONCOURT LES MAUJOUY" }, { - "codePostal": "38500", - "codeCommune": "38373", - "libelleAcheminement": "ST CASSIEN", - "nomCommune": "ST CASSIEN" + "codePostal": "64290", + "codeCommune": "64072", + "libelleAcheminement": "AUBERTIN", + "nomCommune": "AUBERTIN" }, { - "codePostal": "31200", - "codeCommune": "31555", - "libelleAcheminement": "TOULOUSE", - "nomCommune": "TOULOUSE" + "codePostal": "10130", + "codeCommune": "10196", + "libelleAcheminement": "LIGNIERES", + "nomCommune": "LIGNIERES" }, { - "codePostal": "01110", - "codeCommune": "01185", - "libelleAcheminement": "PLATEAU D HAUTEVILLE", - "nomCommune": "PLATEAU D HAUTEVILLE" + "codePostal": "63210", + "codeCommune": "63326", + "libelleAcheminement": "ST BONNET PRES ORCIVAL", + "nomCommune": "ST BONNET PRES ORCIVAL" }, { - "codePostal": "60210", - "codeCommune": "60289", - "libelleAcheminement": "GREZ", - "nomCommune": "GREZ" + "codePostal": "53480", + "codeCommune": "53220", + "libelleAcheminement": "ST GEORGES LE FLECHARD", + "nomCommune": "ST GEORGES LE FLECHARD" }, { - "codePostal": "38110", - "codeCommune": "38377", - "libelleAcheminement": "ST CLAIR DE LA TOUR", - "nomCommune": "ST CLAIR DE LA TOUR" + "codePostal": "55140", + "codeCommune": "55485", + "libelleAcheminement": "SEPVIGNY", + "nomCommune": "SEPVIGNY" }, { - "codePostal": "31400", - "codeCommune": "31555", - "libelleAcheminement": "TOULOUSE", - "nomCommune": "TOULOUSE" + "codePostal": "64190", + "codeCommune": "64075", + "libelleAcheminement": "AUDAUX", + "nomCommune": "AUDAUX" }, { - "codePostal": "01680", - "codeCommune": "01190", - "libelleAcheminement": "INNIMOND", - "nomCommune": "INNIMOND" + "codePostal": "10200", + "codeCommune": "10197", + "libelleAcheminement": "LIGNOL LE CHATEAU", + "nomCommune": "LIGNOL LE CHATEAU" }, { - "codePostal": "60690", - "codeCommune": "60304", - "libelleAcheminement": "HAUTE EPINE", - "nomCommune": "HAUTE EPINE" + "codePostal": "63320", + "codeCommune": "63335", + "libelleAcheminement": "ST DIERY", + "nomCommune": "ST DIERY" }, { - "codePostal": "38110", - "codeCommune": "38381", - "libelleAcheminement": "ST DIDIER DE LA TOUR", - "nomCommune": "ST DIDIER DE LA TOUR" + "codePostal": "53240", + "codeCommune": "53229", + "libelleAcheminement": "ST JEAN SUR MAYENNE", + "nomCommune": "ST JEAN SUR MAYENNE" }, { - "codePostal": "31460", - "codeCommune": "31558", - "libelleAcheminement": "TOUTENS", - "nomCommune": "TOUTENS" + "codePostal": "55170", + "codeCommune": "55494", + "libelleAcheminement": "SOMMELONNE", + "nomCommune": "SOMMELONNE" }, { - "codePostal": "01300", - "codeCommune": "01193", - "libelleAcheminement": "IZIEU", - "nomCommune": "IZIEU" + "codePostal": "64230", + "codeCommune": "64080", + "libelleAcheminement": "AUSSEVIELLE", + "nomCommune": "AUSSEVIELLE" }, { - "codePostal": "60112", - "codeCommune": "60310", - "libelleAcheminement": "HERCHIES", - "nomCommune": "HERCHIES" + "codePostal": "10110", + "codeCommune": "10199", + "libelleAcheminement": "LOCHES SUR OURCE", + "nomCommune": "LOCHES SUR OURCE" }, { - "codePostal": "38120", - "codeCommune": "38382", - "libelleAcheminement": "ST EGREVE", - "nomCommune": "ST EGREVE" + "codePostal": "63320", + "codeCommune": "63335", + "libelleAcheminement": "ST DIERY", + "nomCommune": "ST DIERY" }, { - "codePostal": "31340", - "codeCommune": "31563", - "libelleAcheminement": "VACQUIERS", - "nomCommune": "VACQUIERS" + "codePostal": "53110", + "codeCommune": "53230", + "libelleAcheminement": "ST JULIEN DU TERROUX", + "nomCommune": "ST JULIEN DU TERROUX" }, { - "codePostal": "01340", - "codeCommune": "01196", - "libelleAcheminement": "JAYAT", - "nomCommune": "JAYAT" + "codePostal": "55230", + "codeCommune": "55495", + "libelleAcheminement": "SORBEY", + "nomCommune": "SORBEY" }, { - "codePostal": "60880", - "codeCommune": "60325", - "libelleAcheminement": "JAUX", - "nomCommune": "JAUX" + "codePostal": "64270", + "codeCommune": "64082", + "libelleAcheminement": "AUTERRIVE", + "nomCommune": "AUTERRIVE" }, { - "codePostal": "38590", - "codeCommune": "38384", - "libelleAcheminement": "ST ETIENNE DE ST GEOIRS", - "nomCommune": "ST ETIENNE DE ST GEOIRS" + "codePostal": "10400", + "codeCommune": "10208", + "libelleAcheminement": "LA LOUPTIERE THENARD", + "nomCommune": "LA LOUPTIERE THENARD" }, { - "codePostal": "31800", - "codeCommune": "31565", - "libelleAcheminement": "VALENTINE", - "nomCommune": "VALENTINE" + "codePostal": "63700", + "codeCommune": "63338", + "libelleAcheminement": "ST ELOY LES MINES", + "nomCommune": "ST ELOY LES MINES" }, { - "codePostal": "01800", - "codeCommune": "01198", - "libelleAcheminement": "JOYEUX", - "nomCommune": "JOYEUX" + "codePostal": "53350", + "codeCommune": "53242", + "libelleAcheminement": "ST MICHEL DE LA ROE", + "nomCommune": "ST MICHEL DE LA ROE" }, { - "codePostal": "60680", - "codeCommune": "60326", - "libelleAcheminement": "JONQUIERES", - "nomCommune": "JONQUIERES" + "codePostal": "55220", + "codeCommune": "55498", + "libelleAcheminement": "SOUILLY", + "nomCommune": "SOUILLY" }, { - "codePostal": "38450", - "codeCommune": "38388", - "libelleAcheminement": "ST GEORGES DE COMMIERS", - "nomCommune": "ST GEORGES DE COMMIERS" + "codePostal": "64510", + "codeCommune": "64091", + "libelleAcheminement": "BALIROS", + "nomCommune": "BALIROS" }, { - "codePostal": "31540", - "codeCommune": "31570", - "libelleAcheminement": "VAUX", - "nomCommune": "VAUX" + "codePostal": "10300", + "codeCommune": "10211", + "libelleAcheminement": "MACEY", + "nomCommune": "MACEY" }, { - "codePostal": "01450", - "codeCommune": "01200", - "libelleAcheminement": "LABALME", - "nomCommune": "LABALME" + "codePostal": "63580", + "codeCommune": "63340", + "libelleAcheminement": "ST ETIENNE SUR USSON", + "nomCommune": "ST ETIENNE SUR USSON" }, { - "codePostal": "60112", - "codeCommune": "60328", - "libelleAcheminement": "JUVIGNIES", - "nomCommune": "JUVIGNIES" + "codePostal": "53270", + "codeCommune": "53248", + "libelleAcheminement": "ST PIERRE SUR ERVE", + "nomCommune": "ST PIERRE SUR ERVE" }, { - "codePostal": "38260", - "codeCommune": "38393", - "libelleAcheminement": "ST HILAIRE DE LA COTE", - "nomCommune": "ST HILAIRE DE LA COTE" + "codePostal": "55210", + "codeCommune": "55507", + "libelleAcheminement": "THILLOT", + "nomCommune": "THILLOT" }, { - "codePostal": "31320", - "codeCommune": "31578", - "libelleAcheminement": "VIGOULET AUZIL", - "nomCommune": "VIGOULET AUZIL" + "codePostal": "64160", + "codeCommune": "64095", + "libelleAcheminement": "BARINQUE", + "nomCommune": "BARINQUE" }, { - "codePostal": "01290", - "codeCommune": "01203", - "libelleAcheminement": "LAIZ", - "nomCommune": "LAIZ" + "codePostal": "10140", + "codeCommune": "10215", + "libelleAcheminement": "MAGNY FOUCHARD", + "nomCommune": "MAGNY FOUCHARD" }, { - "codePostal": "60730", - "codeCommune": "60334", - "libelleAcheminement": "LACHAPELLE ST PIERRE", - "nomCommune": "LACHAPELLE ST PIERRE" + "codePostal": "63520", + "codeCommune": "63343", + "libelleAcheminement": "ST FLOUR L ETANG", + "nomCommune": "ST FLOUR L ETANG" }, { - "codePostal": "38660", - "codeCommune": "38395", - "libelleAcheminement": "PLATEAU DES PETITES ROCHES", - "nomCommune": "PLATEAU DES PETITES ROCHES" + "codePostal": "53800", + "codeCommune": "53253", + "libelleAcheminement": "ST SATURNIN DU LIMET", + "nomCommune": "ST SATURNIN DU LIMET" }, { - "codePostal": "31270", - "codeCommune": "31588", - "libelleAcheminement": "VILLENEUVE TOLOSANE", - "nomCommune": "VILLENEUVE TOLOSANE" + "codePostal": "55130", + "codeCommune": "55516", + "libelleAcheminement": "TREVERAY", + "nomCommune": "TREVERAY" }, { - "codePostal": "01410", - "codeCommune": "01210", - "libelleAcheminement": "LELEX", - "nomCommune": "LELEX" + "codePostal": "64200", + "codeCommune": "64100", + "libelleAcheminement": "BASSUSSARRY", + "nomCommune": "BASSUSSARRY" }, { - "codePostal": "60190", - "codeCommune": "60337", - "libelleAcheminement": "LACHELLE", - "nomCommune": "LACHELLE" + "codePostal": "10290", + "codeCommune": "10223", + "libelleAcheminement": "MARCILLY LE HAYER", + "nomCommune": "MARCILLY LE HAYER" }, { - "codePostal": "38660", - "codeCommune": "38395", - "libelleAcheminement": "PLATEAU DES PETITES ROCHES", - "nomCommune": "PLATEAU DES PETITES ROCHES" + "codePostal": "63440", + "codeCommune": "63344", + "libelleAcheminement": "ST GAL SUR SIOULE", + "nomCommune": "ST GAL SUR SIOULE" }, { - "codePostal": "31440", - "codeCommune": "31590", - "libelleAcheminement": "BINOS", - "nomCommune": "BINOS" + "codePostal": "53270", + "codeCommune": "53255", + "libelleAcheminement": "STE SUZANNE ET CHAMMES", + "nomCommune": "STE SUZANNE ET CHAMMES" }, { - "codePostal": "01420", - "codeCommune": "01215", - "libelleAcheminement": "SURJOUX LHOPITAL", - "nomCommune": "SURJOUX LHOPITAL" + "codePostal": "55200", + "codeCommune": "55526", + "libelleAcheminement": "VADONVILLE", + "nomCommune": "VADONVILLE" }, { - "codePostal": "60610", - "codeCommune": "60338", - "libelleAcheminement": "LACROIX ST OUEN", - "nomCommune": "LACROIX ST OUEN" + "codePostal": "64270", + "codeCommune": "64113", + "libelleAcheminement": "BERGOUEY VIELLENAVE", + "nomCommune": "BERGOUEY VIELLENAVE" }, { - "codePostal": "38480", - "codeCommune": "38398", - "libelleAcheminement": "ST JEAN D AVELANNE", - "nomCommune": "ST JEAN D AVELANNE" + "codePostal": "10350", + "codeCommune": "10224", + "libelleAcheminement": "MARIGNY LE CHATEL", + "nomCommune": "MARIGNY LE CHATEL" }, { - "codePostal": "31260", - "codeCommune": "31591", - "libelleAcheminement": "ESCOULIS", - "nomCommune": "ESCOULIS" + "codePostal": "63122", + "codeCommune": "63345", + "libelleAcheminement": "ST GENES CHAMPANELLE", + "nomCommune": "ST GENES CHAMPANELLE" }, { - "codePostal": "01420", - "codeCommune": "01215", - "libelleAcheminement": "SURJOUX LHOPITAL", - "nomCommune": "SURJOUX LHOPITAL" + "codePostal": "53360", + "codeCommune": "53260", + "libelleAcheminement": "SIMPLE", + "nomCommune": "SIMPLE" }, { - "codePostal": "60310", - "codeCommune": "60340", - "libelleAcheminement": "LAGNY", - "nomCommune": "LAGNY" + "codePostal": "55300", + "codeCommune": "55530", + "libelleAcheminement": "VALBOIS", + "nomCommune": "VALBOIS" }, { - "codePostal": "38430", - "codeCommune": "38400", - "libelleAcheminement": "ST JEAN DE MOIRANS", - "nomCommune": "ST JEAN DE MOIRANS" + "codePostal": "64260", + "codeCommune": "64116", + "libelleAcheminement": "BESCAT", + "nomCommune": "BESCAT" }, { - "codePostal": "31230", - "codeCommune": "31593", - "libelleAcheminement": "CAZAC", - "nomCommune": "CAZAC" + "codePostal": "10130", + "codeCommune": "10227", + "libelleAcheminement": "MAROLLES SOUS LIGNIERES", + "nomCommune": "MAROLLES SOUS LIGNIERES" }, { - "codePostal": "01300", - "codeCommune": "01227", - "libelleAcheminement": "MAGNIEU", - "nomCommune": "MAGNIEU" + "codePostal": "63122", + "codeCommune": "63345", + "libelleAcheminement": "ST GENES CHAMPANELLE", + "nomCommune": "ST GENES CHAMPANELLE" }, { - "codePostal": "60330", - "codeCommune": "60341", - "libelleAcheminement": "LAGNY LE SEC", - "nomCommune": "LAGNY LE SEC" + "codePostal": "53110", + "codeCommune": "53263", + "libelleAcheminement": "THUBOEUF", + "nomCommune": "THUBOEUF" }, { - "codePostal": "38420", - "codeCommune": "38404", - "libelleAcheminement": "ST JEAN LE VIEUX", - "nomCommune": "ST JEAN LE VIEUX" + "codePostal": "55130", + "codeCommune": "55534", + "libelleAcheminement": "VAUDEVILLE LE HAUT", + "nomCommune": "VAUDEVILLE LE HAUT" }, { - "codePostal": "32110", - "codeCommune": "32005", - "libelleAcheminement": "ARBLADE LE HAUT", - "nomCommune": "ARBLADE LE HAUT" + "codePostal": "64260", + "codeCommune": "64127", + "libelleAcheminement": "BIELLE", + "nomCommune": "BIELLE" }, { - "codePostal": "01851", - "codeCommune": "01232", - "libelleAcheminement": "MARBOZ", - "nomCommune": "MARBOZ" + "codePostal": "10170", + "codeCommune": "10234", + "libelleAcheminement": "MESGRIGNY", + "nomCommune": "MESGRIGNY" }, { - "codePostal": "60290", - "codeCommune": "60342", - "libelleAcheminement": "LAIGNEVILLE", - "nomCommune": "LAIGNEVILLE" + "codePostal": "63780", + "codeCommune": "63349", + "libelleAcheminement": "ST GEORGES DE MONS", + "nomCommune": "ST GEORGES DE MONS" }, { - "codePostal": "38410", - "codeCommune": "38422", - "libelleAcheminement": "ST MARTIN D URIAGE", - "nomCommune": "ST MARTIN D URIAGE" + "codePostal": "53270", + "codeCommune": "53265", + "libelleAcheminement": "TORCE VIVIERS EN CHARNIE", + "nomCommune": "TORCE VIVIERS EN CHARNIE" }, { - "codePostal": "32270", - "codeCommune": "32012", - "libelleAcheminement": "AUBIET", - "nomCommune": "AUBIET" + "codePostal": "55230", + "codeCommune": "55535", + "libelleAcheminement": "VAUDONCOURT", + "nomCommune": "VAUDONCOURT" }, { - "codePostal": "01300", - "codeCommune": "01239", - "libelleAcheminement": "MASSIGNIEU DE RIVES", - "nomCommune": "MASSIGNIEU DE RIVES" + "codePostal": "64290", + "codeCommune": "64139", + "libelleAcheminement": "BOSDARROS", + "nomCommune": "BOSDARROS" }, { - "codePostal": "60590", - "codeCommune": "60343", - "libelleAcheminement": "LALANDE EN SON", - "nomCommune": "LALANDE EN SON" + "codePostal": "10220", + "codeCommune": "10239", + "libelleAcheminement": "MESNIL SELLIERES", + "nomCommune": "MESNIL SELLIERES" }, { - "codePostal": "38530", - "codeCommune": "38426", - "libelleAcheminement": "ST MAXIMIN", - "nomCommune": "ST MAXIMIN" + "codePostal": "63390", + "codeCommune": "63354", + "libelleAcheminement": "ST GERVAIS D AUVERGNE", + "nomCommune": "ST GERVAIS D AUVERGNE" }, { - "codePostal": "32600", - "codeCommune": "32016", - "libelleAcheminement": "AURADE", - "nomCommune": "AURADE" + "codePostal": "53480", + "codeCommune": "53267", + "libelleAcheminement": "VAIGES", + "nomCommune": "VAIGES" }, { - "codePostal": "01410", - "codeCommune": "01247", - "libelleAcheminement": "MIJOUX", - "nomCommune": "MIJOUX" + "codePostal": "55300", + "codeCommune": "55540", + "libelleAcheminement": "VAUX LES PALAMEIX", + "nomCommune": "VAUX LES PALAMEIX" }, { - "codePostal": "60490", - "codeCommune": "60351", - "libelleAcheminement": "LATAULE", - "nomCommune": "LATAULE" + "codePostal": "64800", + "codeCommune": "64145", + "libelleAcheminement": "BOURDETTES", + "nomCommune": "BOURDETTES" }, { - "codePostal": "38490", - "codeCommune": "38434", - "libelleAcheminement": "ST ONDRAS", - "nomCommune": "ST ONDRAS" + "codePostal": "10130", + "codeCommune": "10247", + "libelleAcheminement": "MONTFEY", + "nomCommune": "MONTFEY" }, { - "codePostal": "32400", - "codeCommune": "32017", - "libelleAcheminement": "AURENSAN", - "nomCommune": "AURENSAN" + "codePostal": "63520", + "codeCommune": "63365", + "libelleAcheminement": "ST JEAN DES OLLIERES", + "nomCommune": "ST JEAN DES OLLIERES" }, { - "codePostal": "01310", - "codeCommune": "01259", - "libelleAcheminement": "MONTCET", - "nomCommune": "MONTCET" + "codePostal": "53500", + "codeCommune": "53269", + "libelleAcheminement": "VAUTORTE", + "nomCommune": "VAUTORTE" }, { - "codePostal": "60360", - "codeCommune": "60365", - "libelleAcheminement": "LIHUS", - "nomCommune": "LIHUS" + "codePostal": "55600", + "codeCommune": "55544", + "libelleAcheminement": "VELOSNES", + "nomCommune": "VELOSNES" }, { - "codePostal": "38830", - "codeCommune": "38439", - "libelleAcheminement": "CRETS EN BELLEDONNE", - "nomCommune": "CRETS EN BELLEDONNE" + "codePostal": "64120", + "codeCommune": "64150", + "libelleAcheminement": "BUNUS", + "nomCommune": "BUNUS" }, { - "codePostal": "32550", - "codeCommune": "32019", - "libelleAcheminement": "AUTERIVE", - "nomCommune": "AUTERIVE" + "codePostal": "10300", + "codeCommune": "10248", + "libelleAcheminement": "MONTGUEUX", + "nomCommune": "MONTGUEUX" }, { - "codePostal": "01120", - "codeCommune": "01262", - "libelleAcheminement": "MONTLUEL", - "nomCommune": "MONTLUEL" + "codePostal": "63570", + "codeCommune": "63367", + "libelleAcheminement": "ST JEAN ST GERVAIS", + "nomCommune": "ST JEAN ST GERVAIS" }, { - "codePostal": "60490", - "codeCommune": "60379", - "libelleAcheminement": "MAREUIL LA MOTTE", - "nomCommune": "MAREUIL LA MOTTE" + "codePostal": "53700", + "codeCommune": "53271", + "libelleAcheminement": "VILLAINES LA JUHEL", + "nomCommune": "VILLAINES LA JUHEL" }, { - "codePostal": "38870", - "codeCommune": "38440", - "libelleAcheminement": "ST PIERRE DE BRESSIEUX", - "nomCommune": "ST PIERRE DE BRESSIEUX" + "codePostal": "55100", + "codeCommune": "55545", + "libelleAcheminement": "VERDUN", + "nomCommune": "VERDUN" }, { - "codePostal": "32380", - "codeCommune": "32023", - "libelleAcheminement": "AVEZAN", - "nomCommune": "AVEZAN" + "codePostal": "64160", + "codeCommune": "64152", + "libelleAcheminement": "BUROS", + "nomCommune": "BUROS" }, { - "codePostal": "01120", - "codeCommune": "01262", - "libelleAcheminement": "MONTLUEL", - "nomCommune": "MONTLUEL" + "codePostal": "10330", + "codeCommune": "10253", + "libelleAcheminement": "MONTMORENCY BEAUFORT", + "nomCommune": "MONTMORENCY BEAUFORT" }, { - "codePostal": "60890", - "codeCommune": "60380", - "libelleAcheminement": "MAREUIL SUR OURCQ", - "nomCommune": "MAREUIL SUR OURCQ" + "codePostal": "63600", + "codeCommune": "63371", + "libelleAcheminement": "ST JUST", + "nomCommune": "ST JUST" }, { - "codePostal": "38160", - "codeCommune": "38453", - "libelleAcheminement": "ST ROMANS", - "nomCommune": "ST ROMANS" + "codePostal": "54112", + "codeCommune": "54010", + "libelleAcheminement": "ALLAMPS", + "nomCommune": "ALLAMPS" }, { - "codePostal": "32410", - "codeCommune": "32024", - "libelleAcheminement": "AYGUETINTE", - "nomCommune": "AYGUETINTE" + "codePostal": "55210", + "codeCommune": "55551", + "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", + "nomCommune": "VIGNEULLES LES HATTONCHATEL" }, { - "codePostal": "01460", - "codeCommune": "01265", - "libelleAcheminement": "MONTREAL LA CLUSE", - "nomCommune": "MONTREAL LA CLUSE" + "codePostal": "64330", + "codeCommune": "64159", + "libelleAcheminement": "CADILLON", + "nomCommune": "CADILLON" }, { - "codePostal": "60280", - "codeCommune": "60382", - "libelleAcheminement": "MARGNY LES COMPIEGNE", - "nomCommune": "MARGNY LES COMPIEGNE" + "codePostal": "10270", + "codeCommune": "10255", + "libelleAcheminement": "MONTREUIL SUR BARSE", + "nomCommune": "MONTREUIL SUR BARSE" }, { - "codePostal": "38510", - "codeCommune": "38458", - "libelleAcheminement": "ST SORLIN DE MORESTEL", - "nomCommune": "ST SORLIN DE MORESTEL" + "codePostal": "63350", + "codeCommune": "63372", + "libelleAcheminement": "ST LAURE", + "nomCommune": "ST LAURE" }, { - "codePostal": "32720", - "codeCommune": "32027", - "libelleAcheminement": "BARCELONNE DU GERS", - "nomCommune": "BARCELONNE DU GERS" + "codePostal": "54770", + "codeCommune": "54012", + "libelleAcheminement": "AMANCE", + "nomCommune": "AMANCE" }, { - "codePostal": "01460", - "codeCommune": "01267", - "libelleAcheminement": "NURIEUX VOLOGNAT", - "nomCommune": "NURIEUX VOLOGNAT" + "codePostal": "55210", + "codeCommune": "55551", + "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", + "nomCommune": "VIGNEULLES LES HATTONCHATEL" }, { - "codePostal": "60490", - "codeCommune": "60383", - "libelleAcheminement": "MARGNY SUR MATZ", - "nomCommune": "MARGNY SUR MATZ" + "codePostal": "64130", + "codeCommune": "64188", + "libelleAcheminement": "CHERAUTE", + "nomCommune": "CHERAUTE" }, { - "codePostal": "38110", - "codeCommune": "38464", - "libelleAcheminement": "ST VICTOR DE CESSIEU", - "nomCommune": "ST VICTOR DE CESSIEU" + "codePostal": "10240", + "codeCommune": "10257", + "libelleAcheminement": "MOREMBERT", + "nomCommune": "MOREMBERT" }, { - "codePostal": "32170", - "codeCommune": "32028", - "libelleAcheminement": "BARCUGNAN", - "nomCommune": "BARCUGNAN" + "codePostal": "63270", + "codeCommune": "63378", + "libelleAcheminement": "ST MAURICE", + "nomCommune": "ST MAURICE" }, { - "codePostal": "01120", - "codeCommune": "01276", - "libelleAcheminement": "NIEVROZ", - "nomCommune": "NIEVROZ" + "codePostal": "54450", + "codeCommune": "54014", + "libelleAcheminement": "ANCERVILLER", + "nomCommune": "ANCERVILLER" }, { - "codePostal": "60480", - "codeCommune": "60390", - "libelleAcheminement": "MAULERS", - "nomCommune": "MAULERS" + "codePostal": "55210", + "codeCommune": "55551", + "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", + "nomCommune": "VIGNEULLES LES HATTONCHATEL" }, { - "codePostal": "38260", - "codeCommune": "38473", - "libelleAcheminement": "SARDIEU", - "nomCommune": "SARDIEU" + "codePostal": "64500", + "codeCommune": "64189", + "libelleAcheminement": "CIBOURE", + "nomCommune": "CIBOURE" }, { - "codePostal": "32300", - "codeCommune": "32030", - "libelleAcheminement": "BARS", - "nomCommune": "BARS" + "codePostal": "10700", + "codeCommune": "10269", + "libelleAcheminement": "NOZAY", + "nomCommune": "NOZAY" }, { - "codePostal": "01230", - "codeCommune": "01279", - "libelleAcheminement": "ONCIEU", - "nomCommune": "ONCIEU" + "codePostal": "63440", + "codeCommune": "63382", + "libelleAcheminement": "ST PARDOUX", + "nomCommune": "ST PARDOUX" }, { - "codePostal": "60660", - "codeCommune": "60391", - "libelleAcheminement": "MAYSEL", - "nomCommune": "MAYSEL" + "codePostal": "54470", + "codeCommune": "54019", + "libelleAcheminement": "ANSAUVILLE", + "nomCommune": "ANSAUVILLE" }, { - "codePostal": "38290", - "codeCommune": "38475", - "libelleAcheminement": "SATOLAS ET BONCE", - "nomCommune": "SATOLAS ET BONCE" + "codePostal": "55600", + "codeCommune": "55552", + "libelleAcheminement": "VIGNEUL SOUS MONTMEDY", + "nomCommune": "VIGNEUL SOUS MONTMEDY" }, { - "codePostal": "32600", - "codeCommune": "32038", - "libelleAcheminement": "BEAUPUY", - "nomCommune": "BEAUPUY" + "codePostal": "64350", + "codeCommune": "64193", + "libelleAcheminement": "CORBERE ABERES", + "nomCommune": "CORBERE ABERES" }, { - "codePostal": "01540", - "codeCommune": "01291", - "libelleAcheminement": "PERREX", - "nomCommune": "PERREX" + "codePostal": "10100", + "codeCommune": "10280", + "libelleAcheminement": "PARS LES ROMILLY", + "nomCommune": "PARS LES ROMILLY" }, { - "codePostal": "60940", - "codeCommune": "60406", - "libelleAcheminement": "MONCEAUX", - "nomCommune": "MONCEAUX" + "codePostal": "63640", + "codeCommune": "63388", + "libelleAcheminement": "ST PRIEST DES CHAMPS", + "nomCommune": "ST PRIEST DES CHAMPS" }, { - "codePostal": "38220", - "codeCommune": "38478", - "libelleAcheminement": "SECHILIENNE", - "nomCommune": "SECHILIENNE" + "codePostal": "54110", + "codeCommune": "54020", + "libelleAcheminement": "ANTHELUPT", + "nomCommune": "ANTHELUPT" }, { - "codePostal": "32730", - "codeCommune": "32050", - "libelleAcheminement": "BETPLAN", - "nomCommune": "BETPLAN" + "codePostal": "55110", + "codeCommune": "55561", + "libelleAcheminement": "VILLERS DEVANT DUN", + "nomCommune": "VILLERS DEVANT DUN" }, { - "codePostal": "01300", - "codeCommune": "01294", - "libelleAcheminement": "PEYRIEU", - "nomCommune": "PEYRIEU" + "codePostal": "64160", + "codeCommune": "64194", + "libelleAcheminement": "COSLEDAA LUBE BOAST", + "nomCommune": "COSLEDAA LUBE BOAST" }, { - "codePostal": "60240", - "codeCommune": "60420", - "libelleAcheminement": "MONTJAVOULT", - "nomCommune": "MONTJAVOULT" + "codePostal": "10500", + "codeCommune": "10283", + "libelleAcheminement": "PEL ET DER", + "nomCommune": "PEL ET DER" }, { - "codePostal": "38510", - "codeCommune": "38483", - "libelleAcheminement": "SERMERIEU", - "nomCommune": "SERMERIEU" + "codePostal": "63500", + "codeCommune": "63392", + "libelleAcheminement": "ST REMY DE CHARGNAT", + "nomCommune": "ST REMY DE CHARGNAT" }, { - "codePostal": "32270", - "codeCommune": "32056", - "libelleAcheminement": "BLANQUEFORT", - "nomCommune": "BLANQUEFORT" + "codePostal": "54510", + "codeCommune": "54025", + "libelleAcheminement": "ART SUR MEURTHE", + "nomCommune": "ART SUR MEURTHE" }, { - "codePostal": "01140", - "codeCommune": "01295", - "libelleAcheminement": "PEYZIEUX SUR SAONE", - "nomCommune": "PEYZIEUX SUR SAONE" + "codePostal": "55110", + "codeCommune": "55571", + "libelleAcheminement": "VILOSNES HARAUMONT", + "nomCommune": "VILOSNES HARAUMONT" }, { - "codePostal": "60400", - "codeCommune": "60431", - "libelleAcheminement": "MORLINCOURT", - "nomCommune": "MORLINCOURT" + "codePostal": "64370", + "codeCommune": "64200", + "libelleAcheminement": "DOAZON", + "nomCommune": "DOAZON" }, { - "codePostal": "38460", - "codeCommune": "38488", - "libelleAcheminement": "SICCIEU ST JULIEN ET CARISIEU", - "nomCommune": "SICCIEU ST JULIEN ET CARISIEU" + "codePostal": "10380", + "codeCommune": "10289", + "libelleAcheminement": "PLANCY L ABBAYE", + "nomCommune": "PLANCY L ABBAYE" }, { - "codePostal": "32100", - "codeCommune": "32057", - "libelleAcheminement": "BLAZIERT", - "nomCommune": "BLAZIERT" + "codePostal": "63450", + "codeCommune": "63396", + "libelleAcheminement": "ST SATURNIN", + "nomCommune": "ST SATURNIN" }, { - "codePostal": "01310", - "codeCommune": "01301", - "libelleAcheminement": "POLLIAT", - "nomCommune": "POLLIAT" + "codePostal": "54700", + "codeCommune": "54027", + "libelleAcheminement": "ATTON", + "nomCommune": "ATTON" }, { - "codePostal": "60120", - "codeCommune": "60436", - "libelleAcheminement": "MORY MONTCRUX", - "nomCommune": "MORY MONTCRUX" + "codePostal": "55130", + "codeCommune": "55575", + "libelleAcheminement": "VOUTHON HAUT", + "nomCommune": "VOUTHON HAUT" }, { - "codePostal": "38590", - "codeCommune": "38490", - "libelleAcheminement": "SILLANS", - "nomCommune": "SILLANS" + "codePostal": "64870", + "codeCommune": "64207", + "libelleAcheminement": "ESCOU", + "nomCommune": "ESCOU" }, { - "codePostal": "32800", - "codeCommune": "32064", - "libelleAcheminement": "BRETAGNE D ARMAGNAC", - "nomCommune": "BRETAGNE D ARMAGNAC" + "codePostal": "10160", + "codeCommune": "10290", + "libelleAcheminement": "PLANTY", + "nomCommune": "PLANTY" }, { - "codePostal": "01350", - "codeCommune": "01302", - "libelleAcheminement": "POLLIEU", - "nomCommune": "POLLIEU" + "codePostal": "63220", + "codeCommune": "63398", + "libelleAcheminement": "ST SAUVEUR LA SAGNE", + "nomCommune": "ST SAUVEUR LA SAGNE" }, { - "codePostal": "60350", - "codeCommune": "60438", - "libelleAcheminement": "MOULIN SOUS TOUVENT", - "nomCommune": "MOULIN SOUS TOUVENT" + "codePostal": "54380", + "codeCommune": "54031", + "libelleAcheminement": "AUTREVILLE SUR MOSELLE", + "nomCommune": "AUTREVILLE SUR MOSELLE" }, { - "codePostal": "38470", - "codeCommune": "38500", - "libelleAcheminement": "TECHE", - "nomCommune": "TECHE" + "codePostal": "55160", + "codeCommune": "55579", + "libelleAcheminement": "WATRONVILLE", + "nomCommune": "WATRONVILLE" }, { - "codePostal": "32350", - "codeCommune": "32065", - "libelleAcheminement": "LE BROUILH MONBERT", - "nomCommune": "LE BROUILH MONBERT" + "codePostal": "64160", + "codeCommune": "64208", + "libelleAcheminement": "ESCOUBES", + "nomCommune": "ESCOUBES" }, { - "codePostal": "01250", - "codeCommune": "01309", - "libelleAcheminement": "POUILLAT", - "nomCommune": "POUILLAT" + "codePostal": "10400", + "codeCommune": "10291", + "libelleAcheminement": "PLESSIS BARBUISE", + "nomCommune": "PLESSIS BARBUISE" }, { - "codePostal": "60250", - "codeCommune": "60439", - "libelleAcheminement": "MOUY", - "nomCommune": "MOUY" + "codePostal": "63500", + "codeCommune": "63404", + "libelleAcheminement": "ST YVOINE", + "nomCommune": "ST YVOINE" }, { - "codePostal": "38570", - "codeCommune": "38501", - "libelleAcheminement": "TENCIN", - "nomCommune": "TENCIN" + "codePostal": "54160", + "codeCommune": "54032", + "libelleAcheminement": "AUTREY", + "nomCommune": "AUTREY" }, { - "codePostal": "32350", - "codeCommune": "32065", - "libelleAcheminement": "LE BROUILH MONBERT", - "nomCommune": "LE BROUILH MONBERT" + "codePostal": "55500", + "codeCommune": "55581", + "libelleAcheminement": "WILLERONCOURT", + "nomCommune": "WILLERONCOURT" }, { - "codePostal": "01990", - "codeCommune": "01319", - "libelleAcheminement": "RELEVANT", - "nomCommune": "RELEVANT" + "codePostal": "64870", + "codeCommune": "64209", + "libelleAcheminement": "ESCOUT", + "nomCommune": "ESCOUT" }, { - "codePostal": "60430", - "codeCommune": "60462", - "libelleAcheminement": "NOAILLES", - "nomCommune": "NOAILLES" + "codePostal": "10700", + "codeCommune": "10293", + "libelleAcheminement": "POIVRES", + "nomCommune": "POIVRES" }, { - "codePostal": "38230", - "codeCommune": "38507", - "libelleAcheminement": "TIGNIEU JAMEYZIEU", - "nomCommune": "TIGNIEU JAMEYZIEU" + "codePostal": "63470", + "codeCommune": "63410", + "libelleAcheminement": "SAUVAGNAT", + "nomCommune": "SAUVAGNAT" }, { - "codePostal": "32450", - "codeCommune": "32076", - "libelleAcheminement": "CASTELNAU BARBARENS", - "nomCommune": "CASTELNAU BARBARENS" + "codePostal": "54550", + "codeCommune": "54043", + "libelleAcheminement": "BAINVILLE SUR MADON", + "nomCommune": "BAINVILLE SUR MADON" }, { - "codePostal": "01600", - "codeCommune": "01322", - "libelleAcheminement": "REYRIEUX", - "nomCommune": "REYRIEUX" + "codePostal": "55300", + "codeCommune": "55584", + "libelleAcheminement": "WOIMBEY", + "nomCommune": "WOIMBEY" }, { - "codePostal": "60480", - "codeCommune": "60470", - "libelleAcheminement": "NOYERS ST MARTIN", - "nomCommune": "NOYERS ST MARTIN" + "codePostal": "64490", + "codeCommune": "64223", + "libelleAcheminement": "ETSAUT", + "nomCommune": "ETSAUT" }, { - "codePostal": "38410", - "codeCommune": "38529", - "libelleAcheminement": "VAULNAVEYS LE HAUT", - "nomCommune": "VAULNAVEYS LE HAUT" + "codePostal": "10400", + "codeCommune": "10298", + "libelleAcheminement": "PONT SUR SEINE", + "nomCommune": "PONT SUR SEINE" }, { - "codePostal": "32810", - "codeCommune": "32091", - "libelleAcheminement": "CASTIN", - "nomCommune": "CASTIN" + "codePostal": "63500", + "codeCommune": "63411", + "libelleAcheminement": "SAUVAGNAT STE MARTHE", + "nomCommune": "SAUVAGNAT STE MARTHE" }, { - "codePostal": "01190", - "codeCommune": "01323", - "libelleAcheminement": "REYSSOUZE", - "nomCommune": "REYSSOUZE" + "codePostal": "54890", + "codeCommune": "54055", + "libelleAcheminement": "BAYONVILLE SUR MAD", + "nomCommune": "BAYONVILLE SUR MAD" }, { - "codePostal": "60440", - "codeCommune": "60473", - "libelleAcheminement": "OGNES", - "nomCommune": "OGNES" + "codePostal": "56640", + "codeCommune": "56005", + "libelleAcheminement": "ARZON", + "nomCommune": "ARZON" }, { - "codePostal": "38610", - "codeCommune": "38533", - "libelleAcheminement": "VENON", - "nomCommune": "VENON" + "codePostal": "64410", + "codeCommune": "64234", + "libelleAcheminement": "GAROS", + "nomCommune": "GAROS" }, { - "codePostal": "32150", - "codeCommune": "32096", - "libelleAcheminement": "CAZAUBON", - "nomCommune": "CAZAUBON" + "codePostal": "10500", + "codeCommune": "10304", + "libelleAcheminement": "PRECY ST MARTIN", + "nomCommune": "PRECY ST MARTIN" }, { - "codePostal": "01510", - "codeCommune": "01329", - "libelleAcheminement": "ROSSILLON", - "nomCommune": "ROSSILLON" + "codePostal": "63120", + "codeCommune": "63418", + "libelleAcheminement": "SERMENTIZON", + "nomCommune": "SERMENTIZON" }, { - "codePostal": "60800", - "codeCommune": "60479", - "libelleAcheminement": "ORMOY VILLERS", - "nomCommune": "ORMOY VILLERS" + "codePostal": "54620", + "codeCommune": "54056", + "libelleAcheminement": "BAZAILLES", + "nomCommune": "BAZAILLES" }, { - "codePostal": "38420", - "codeCommune": "38538", - "libelleAcheminement": "LE VERSOUD", - "nomCommune": "LE VERSOUD" + "codePostal": "56350", + "codeCommune": "56011", + "libelleAcheminement": "BEGANNE", + "nomCommune": "BEGANNE" }, { - "codePostal": "32300", - "codeCommune": "32104", - "libelleAcheminement": "CLERMONT POUYGUILLES", - "nomCommune": "CLERMONT POUYGUILLES" + "codePostal": "64260", + "codeCommune": "64240", + "libelleAcheminement": "GERE BELESTEN", + "nomCommune": "GERE BELESTEN" }, { - "codePostal": "01260", - "codeCommune": "01330", - "libelleAcheminement": "RUFFIEU", - "nomCommune": "RUFFIEU" + "codePostal": "10190", + "codeCommune": "10307", + "libelleAcheminement": "PRUGNY", + "nomCommune": "PRUGNY" }, { - "codePostal": "60129", - "codeCommune": "60481", - "libelleAcheminement": "ORROUY", - "nomCommune": "ORROUY" + "codePostal": "63560", + "codeCommune": "63419", + "libelleAcheminement": "SERVANT", + "nomCommune": "SERVANT" }, { - "codePostal": "38460", - "codeCommune": "38542", - "libelleAcheminement": "VEYSSILIEU", - "nomCommune": "VEYSSILIEU" + "codePostal": "54610", + "codeCommune": "54059", + "libelleAcheminement": "BELLEAU", + "nomCommune": "BELLEAU" }, { - "codePostal": "32100", - "codeCommune": "32107", - "libelleAcheminement": "CONDOM", - "nomCommune": "CONDOM" + "codePostal": "56240", + "codeCommune": "56014", + "libelleAcheminement": "BERNE", + "nomCommune": "BERNE" }, { - "codePostal": "01190", - "codeCommune": "01337", - "libelleAcheminement": "ST BENIGNE", - "nomCommune": "ST BENIGNE" + "codePostal": "64190", + "codeCommune": "64242", + "libelleAcheminement": "GESTAS", + "nomCommune": "GESTAS" }, { - "codePostal": "60330", - "codeCommune": "60500", - "libelleAcheminement": "LE PLESSIS BELLEVILLE", - "nomCommune": "LE PLESSIS BELLEVILLE" + "codePostal": "10210", + "codeCommune": "10309", + "libelleAcheminement": "PRUSY", + "nomCommune": "PRUSY" }, { - "codePostal": "38890", - "codeCommune": "38546", - "libelleAcheminement": "VIGNIEU", - "nomCommune": "VIGNIEU" + "codePostal": "63690", + "codeCommune": "63421", + "libelleAcheminement": "SINGLES", + "nomCommune": "SINGLES" }, { - "codePostal": "32270", - "codeCommune": "32112", - "libelleAcheminement": "CRASTES", - "nomCommune": "CRASTES" + "codePostal": "54610", + "codeCommune": "54059", + "libelleAcheminement": "BELLEAU", + "nomCommune": "BELLEAU" }, { - "codePostal": "01300", - "codeCommune": "01338", - "libelleAcheminement": "GROSLEE ST BENOIT", - "nomCommune": "GROSLEE ST BENOIT" + "codePostal": "56140", + "codeCommune": "56020", + "libelleAcheminement": "BOHAL", + "nomCommune": "BOHAL" }, { - "codePostal": "60400", - "codeCommune": "60511", - "libelleAcheminement": "PORQUERICOURT", - "nomCommune": "PORQUERICOURT" + "codePostal": "64370", + "codeCommune": "64243", + "libelleAcheminement": "GEUS D ARZACQ", + "nomCommune": "GEUS D ARZACQ" }, { - "codePostal": "38190", - "codeCommune": "38547", - "libelleAcheminement": "VILLARD BONNOT", - "nomCommune": "VILLARD BONNOT" + "codePostal": "10130", + "codeCommune": "10312", + "libelleAcheminement": "RACINES", + "nomCommune": "RACINES" }, { - "codePostal": "32170", - "codeCommune": "32116", - "libelleAcheminement": "DUFFORT", - "nomCommune": "DUFFORT" + "codePostal": "63450", + "codeCommune": "63425", + "libelleAcheminement": "TALLENDE", + "nomCommune": "TALLENDE" }, { - "codePostal": "01500", - "codeCommune": "01345", - "libelleAcheminement": "ST DENIS EN BUGEY", - "nomCommune": "ST DENIS EN BUGEY" + "codePostal": "54610", + "codeCommune": "54059", + "libelleAcheminement": "BELLEAU", + "nomCommune": "BELLEAU" }, { - "codePostal": "60790", - "codeCommune": "60512", - "libelleAcheminement": "POUILLY", - "nomCommune": "POUILLY" + "codePostal": "56400", + "codeCommune": "56023", + "libelleAcheminement": "BRECH", + "nomCommune": "BRECH" }, { - "codePostal": "38520", - "codeCommune": "38549", - "libelleAcheminement": "VILLARD NOTRE DAME", - "nomCommune": "VILLARD NOTRE DAME" + "codePostal": "64400", + "codeCommune": "64244", + "libelleAcheminement": "GEUS D OLORON", + "nomCommune": "GEUS D OLORON" }, { - "codePostal": "32260", - "codeCommune": "32118", - "libelleAcheminement": "DURBAN", - "nomCommune": "DURBAN" + "codePostal": "10500", + "codeCommune": "10313", + "libelleAcheminement": "RADONVILLIERS", + "nomCommune": "RADONVILLIERS" }, { - "codePostal": "01340", - "codeCommune": "01346", - "libelleAcheminement": "ST DIDIER D AUSSIAT", - "nomCommune": "ST DIDIER D AUSSIAT" + "codePostal": "63470", + "codeCommune": "63433", + "libelleAcheminement": "TORTEBESSE", + "nomCommune": "TORTEBESSE" }, { - "codePostal": "60360", - "codeCommune": "60514", - "libelleAcheminement": "PREVILLERS", - "nomCommune": "PREVILLERS" + "codePostal": "54940", + "codeCommune": "54060", + "libelleAcheminement": "BELLEVILLE", + "nomCommune": "BELLEVILLE" }, { - "codePostal": "38280", - "codeCommune": "38557", - "libelleAcheminement": "VILLETTE D ANTHON", - "nomCommune": "VILLETTE D ANTHON" + "codePostal": "56430", + "codeCommune": "56025", + "libelleAcheminement": "BRIGNAC", + "nomCommune": "BRIGNAC" }, { - "codePostal": "32220", - "codeCommune": "32124", - "libelleAcheminement": "ESPAON", - "nomCommune": "ESPAON" + "codePostal": "64370", + "codeCommune": "64254", + "libelleAcheminement": "HAGETAUBIN", + "nomCommune": "HAGETAUBIN" }, { - "codePostal": "01600", - "codeCommune": "01347", - "libelleAcheminement": "ST DIDIER DE FORMANS", - "nomCommune": "ST DIDIER DE FORMANS" + "codePostal": "10500", + "codeCommune": "10315", + "libelleAcheminement": "RANCES", + "nomCommune": "RANCES" }, { - "codePostal": "60190", - "codeCommune": "60515", - "libelleAcheminement": "PRONLEROY", - "nomCommune": "PRONLEROY" + "codePostal": "63720", + "codeCommune": "63443", + "libelleAcheminement": "VARENNES SUR MORGE", + "nomCommune": "VARENNES SUR MORGE" }, { - "codePostal": "38280", - "codeCommune": "38557", - "libelleAcheminement": "VILLETTE D ANTHON", - "nomCommune": "VILLETTE D ANTHON" + "codePostal": "54450", + "codeCommune": "54061", + "libelleAcheminement": "BENAMENIL", + "nomCommune": "BENAMENIL" }, { - "codePostal": "32170", - "codeCommune": "32126", - "libelleAcheminement": "ESTAMPES", - "nomCommune": "ESTAMPES" + "codePostal": "56130", + "codeCommune": "56030", + "libelleAcheminement": "CAMOEL", + "nomCommune": "CAMOEL" }, { - "codePostal": "01300", - "codeCommune": "01358", - "libelleAcheminement": "ST GERMAIN LES PAROISSES", - "nomCommune": "ST GERMAIN LES PAROISSES" + "codePostal": "64480", + "codeCommune": "64255", + "libelleAcheminement": "HALSOU", + "nomCommune": "HALSOU" }, { - "codePostal": "60170", - "codeCommune": "60537", - "libelleAcheminement": "RIBECOURT DRESLINCOURT", - "nomCommune": "RIBECOURT DRESLINCOURT" + "codePostal": "10430", + "codeCommune": "10325", + "libelleAcheminement": "ROSIERES PRES TROYES", + "nomCommune": "ROSIERES PRES TROYES" }, { - "codePostal": "38730", - "codeCommune": "38560", - "libelleAcheminement": "VAL DE VIRIEU", - "nomCommune": "VAL DE VIRIEU" + "codePostal": "63330", + "codeCommune": "63447", + "libelleAcheminement": "VERGHEAS", + "nomCommune": "VERGHEAS" }, { - "codePostal": "32220", - "codeCommune": "32140", - "libelleAcheminement": "GAUJAC", - "nomCommune": "GAUJAC" + "codePostal": "54360", + "codeCommune": "54076", + "libelleAcheminement": "BLAINVILLE SUR L EAU", + "nomCommune": "BLAINVILLE SUR L EAU" }, { - "codePostal": "01640", - "codeCommune": "01363", - "libelleAcheminement": "ST JEAN LE VIEUX", - "nomCommune": "ST JEAN LE VIEUX" + "codePostal": "56390", + "codeCommune": "56042", + "libelleAcheminement": "COLPO", + "nomCommune": "COLPO" }, { - "codePostal": "60410", - "codeCommune": "60541", - "libelleAcheminement": "ROBERVAL", - "nomCommune": "ROBERVAL" + "codePostal": "64160", + "codeCommune": "64262", + "libelleAcheminement": "HIGUERES SOUYE", + "nomCommune": "HIGUERES SOUYE" }, { - "codePostal": "39800", - "codeCommune": "39003", - "libelleAcheminement": "ABERGEMENT LE PETIT", - "nomCommune": "ABERGEMENT LE PETIT" + "codePostal": "10120", + "codeCommune": "10333", + "libelleAcheminement": "ST ANDRE LES VERGERS", + "nomCommune": "ST ANDRE LES VERGERS" }, { - "codePostal": "32200", - "codeCommune": "32148", - "libelleAcheminement": "GISCARO", - "nomCommune": "GISCARO" + "codePostal": "63580", + "codeCommune": "63448", + "libelleAcheminement": "LE VERNET CHAMEANE", + "nomCommune": "LE VERNET CHAMEANE" }, { - "codePostal": "01560", - "codeCommune": "01364", - "libelleAcheminement": "ST JEAN SUR REYSSOUZE", - "nomCommune": "ST JEAN SUR REYSSOUZE" + "codePostal": "54800", + "codeCommune": "54082", + "libelleAcheminement": "BONCOURT", + "nomCommune": "BONCOURT" }, { - "codePostal": "60510", - "codeCommune": "60542", - "libelleAcheminement": "ROCHY CONDE", - "nomCommune": "ROCHY CONDE" + "codePostal": "56200", + "codeCommune": "56060", + "libelleAcheminement": "LES FOUGERETS", + "nomCommune": "LES FOUGERETS" }, { - "codePostal": "39320", - "codeCommune": "39010", - "libelleAcheminement": "ANDELOT MORVAL", - "nomCommune": "ANDELOT MORVAL" + "codePostal": "64420", + "codeCommune": "64266", + "libelleAcheminement": "HOURS", + "nomCommune": "HOURS" }, { - "codePostal": "32600", - "codeCommune": "32160", - "libelleAcheminement": "L ISLE JOURDAIN", - "nomCommune": "L ISLE JOURDAIN" + "codePostal": "10160", + "codeCommune": "10335", + "libelleAcheminement": "ST BENOIST SUR VANNE", + "nomCommune": "ST BENOIST SUR VANNE" }, { - "codePostal": "01250", - "codeCommune": "01369", - "libelleAcheminement": "ST JUST", - "nomCommune": "ST JUST" + "codePostal": "64160", + "codeCommune": "64002", + "libelleAcheminement": "ABERE", + "nomCommune": "ABERE" }, { - "codePostal": "60420", - "codeCommune": "60556", - "libelleAcheminement": "ROYAUCOURT", - "nomCommune": "ROYAUCOURT" + "codePostal": "54200", + "codeCommune": "54086", + "libelleAcheminement": "BOUCQ", + "nomCommune": "BOUCQ" }, { - "codePostal": "39320", - "codeCommune": "39010", - "libelleAcheminement": "ANDELOT MORVAL", - "nomCommune": "ANDELOT MORVAL" + "codePostal": "56120", + "codeCommune": "56068", + "libelleAcheminement": "LA GREE ST LAURENT", + "nomCommune": "LA GREE ST LAURENT" }, { - "codePostal": "32170", - "codeCommune": "32167", - "libelleAcheminement": "LAAS", - "nomCommune": "LAAS" + "codePostal": "64640", + "codeCommune": "64271", + "libelleAcheminement": "IHOLDY", + "nomCommune": "IHOLDY" }, { - "codePostal": "01800", - "codeCommune": "01378", - "libelleAcheminement": "ST MAURICE DE GOURDANS", - "nomCommune": "ST MAURICE DE GOURDANS" + "codePostal": "10180", + "codeCommune": "10336", + "libelleAcheminement": "ST BENOIT SUR SEINE", + "nomCommune": "ST BENOIT SUR SEINE" }, { - "codePostal": "60480", - "codeCommune": "60565", - "libelleAcheminement": "ST ANDRE FARIVILLERS", - "nomCommune": "ST ANDRE FARIVILLERS" + "codePostal": "64470", + "codeCommune": "64015", + "libelleAcheminement": "ALCAY ALCABEHETY SUNHARETTE", + "nomCommune": "ALCAY ALCABEHETY SUNHARETTE" }, { - "codePostal": "39120", - "codeCommune": "39011", - "libelleAcheminement": "ANNOIRE", - "nomCommune": "ANNOIRE" + "codePostal": "54770", + "codeCommune": "54089", + "libelleAcheminement": "BOUXIERES AUX CHENES", + "nomCommune": "BOUXIERES AUX CHENES" }, { - "codePostal": "32300", - "codeCommune": "32172", - "libelleAcheminement": "LABEJAN", - "nomCommune": "LABEJAN" + "codePostal": "56420", + "codeCommune": "56071", + "libelleAcheminement": "GUEHENNO", + "nomCommune": "GUEHENNO" }, { - "codePostal": "01330", - "codeCommune": "01382", - "libelleAcheminement": "STE OLIVE", - "nomCommune": "STE OLIVE" + "codePostal": "64120", + "codeCommune": "64294", + "libelleAcheminement": "LABETS BISCAY", + "nomCommune": "LABETS BISCAY" }, { - "codePostal": "60650", - "codeCommune": "60567", - "libelleAcheminement": "ST AUBIN EN BRAY", - "nomCommune": "ST AUBIN EN BRAY" + "codePostal": "10700", + "codeCommune": "10338", + "libelleAcheminement": "ST ETIENNE SOUS BARBUISE", + "nomCommune": "ST ETIENNE SOUS BARBUISE" }, { - "codePostal": "39240", - "codeCommune": "39018", - "libelleAcheminement": "AROMAS", - "nomCommune": "AROMAS" + "codePostal": "64430", + "codeCommune": "64016", + "libelleAcheminement": "ALDUDES", + "nomCommune": "ALDUDES" }, { - "codePostal": "32230", - "codeCommune": "32174", - "libelleAcheminement": "LADEVEZE RIVIERE", - "nomCommune": "LADEVEZE RIVIERE" + "codePostal": "54290", + "codeCommune": "54098", + "libelleAcheminement": "BREMONCOURT", + "nomCommune": "BREMONCOURT" }, { - "codePostal": "01240", - "codeCommune": "01383", - "libelleAcheminement": "ST PAUL DE VARAX", - "nomCommune": "ST PAUL DE VARAX" + "codePostal": "56160", + "codeCommune": "56073", + "libelleAcheminement": "GUEMENE SUR SCORFF", + "nomCommune": "GUEMENE SUR SCORFF" }, { - "codePostal": "60600", - "codeCommune": "60568", - "libelleAcheminement": "ST AUBIN SOUS ERQUERY", - "nomCommune": "ST AUBIN SOUS ERQUERY" + "codePostal": "64300", + "codeCommune": "64295", + "libelleAcheminement": "LABEYRIE", + "nomCommune": "LABEYRIE" }, { - "codePostal": "39240", - "codeCommune": "39018", - "libelleAcheminement": "AROMAS", - "nomCommune": "AROMAS" + "codePostal": "10100", + "codeCommune": "10341", + "libelleAcheminement": "ST HILAIRE SOUS ROMILLY", + "nomCommune": "ST HILAIRE SOUS ROMILLY" }, { - "codePostal": "32330", - "codeCommune": "32180", - "libelleAcheminement": "LAGRAULET DU GERS", - "nomCommune": "LAGRAULET DU GERS" + "codePostal": "64190", + "codeCommune": "64025", + "libelleAcheminement": "ANGOUS", + "nomCommune": "ANGOUS" }, { - "codePostal": "01340", - "codeCommune": "01387", - "libelleAcheminement": "ST SULPICE", - "nomCommune": "ST SULPICE" + "codePostal": "54200", + "codeCommune": "54102", + "libelleAcheminement": "BRULEY", + "nomCommune": "BRULEY" }, { - "codePostal": "60730", - "codeCommune": "60575", - "libelleAcheminement": "STE GENEVIEVE", - "nomCommune": "STE GENEVIEVE" + "codePostal": "56380", + "codeCommune": "56075", + "libelleAcheminement": "GUER", + "nomCommune": "GUER" }, { - "codePostal": "39250", - "codeCommune": "39020", - "libelleAcheminement": "ARSURE ARSURETTE", - "nomCommune": "ARSURE ARSURETTE" + "codePostal": "64170", + "codeCommune": "64300", + "libelleAcheminement": "LACQ", + "nomCommune": "LACQ" }, { - "codePostal": "32810", - "codeCommune": "32183", - "libelleAcheminement": "LAHITTE", - "nomCommune": "LAHITTE" + "codePostal": "10350", + "codeCommune": "10348", + "libelleAcheminement": "ST LUPIEN", + "nomCommune": "ST LUPIEN" }, { - "codePostal": "01270", - "codeCommune": "01391", - "libelleAcheminement": "SALAVRE", - "nomCommune": "SALAVRE" + "codePostal": "64220", + "codeCommune": "64026", + "libelleAcheminement": "ANHAUX", + "nomCommune": "ANHAUX" }, { - "codePostal": "60410", - "codeCommune": "60578", - "libelleAcheminement": "SAINTINES", - "nomCommune": "SAINTINES" + "codePostal": "54800", + "codeCommune": "54103", + "libelleAcheminement": "BRUVILLE", + "nomCommune": "BRUVILLE" }, { - "codePostal": "39270", - "codeCommune": "39021", - "libelleAcheminement": "LA CHAILLEUSE", - "nomCommune": "LA CHAILLEUSE" + "codePostal": "56560", + "codeCommune": "56081", + "libelleAcheminement": "GUISCRIFF", + "nomCommune": "GUISCRIFF" }, { - "codePostal": "32140", - "codeCommune": "32185", - "libelleAcheminement": "LALANNE ARQUE", - "nomCommune": "LALANNE ARQUE" + "codePostal": "64150", + "codeCommune": "64301", + "libelleAcheminement": "LAGOR", + "nomCommune": "LAGOR" }, { - "codePostal": "01400", - "codeCommune": "01393", - "libelleAcheminement": "SANDRANS", - "nomCommune": "SANDRANS" + "codePostal": "10200", + "codeCommune": "10366", + "libelleAcheminement": "SAULCY", + "nomCommune": "SAULCY" }, { - "codePostal": "60000", - "codeCommune": "60586", - "libelleAcheminement": "ST MARTIN LE NOEUD", - "nomCommune": "ST MARTIN LE NOEUD" + "codePostal": "64270", + "codeCommune": "64031", + "libelleAcheminement": "ARANCOU", + "nomCommune": "ARANCOU" }, { - "codePostal": "39380", - "codeCommune": "39026", - "libelleAcheminement": "AUGERANS", - "nomCommune": "AUGERANS" + "codePostal": "54370", + "codeCommune": "54106", + "libelleAcheminement": "BURES", + "nomCommune": "BURES" }, { - "codePostal": "32400", - "codeCommune": "32192", - "libelleAcheminement": "LANNUX", - "nomCommune": "LANNUX" + "codePostal": "56700", + "codeCommune": "56083", + "libelleAcheminement": "HENNEBONT", + "nomCommune": "HENNEBONT" }, { - "codePostal": "01470", - "codeCommune": "01400", - "libelleAcheminement": "SEILLONNAZ", - "nomCommune": "SEILLONNAZ" + "codePostal": "64470", + "codeCommune": "64303", + "libelleAcheminement": "LAGUINGE RESTOUE", + "nomCommune": "LAGUINGE RESTOUE" }, { - "codePostal": "60210", - "codeCommune": "60588", - "libelleAcheminement": "ST MAUR", - "nomCommune": "ST MAUR" + "codePostal": "10400", + "codeCommune": "10370", + "libelleAcheminement": "SOLIGNY LES ETANGS", + "nomCommune": "SOLIGNY LES ETANGS" }, { - "codePostal": "39130", - "codeCommune": "39038", - "libelleAcheminement": "BARESIA SUR L AIN", - "nomCommune": "BARESIA SUR L AIN" + "codePostal": "64120", + "codeCommune": "64049", + "libelleAcheminement": "AROUE ITHOROTS OLHAIBY", + "nomCommune": "AROUE ITHOROTS OLHAIBY" }, { - "codePostal": "32100", - "codeCommune": "32197", - "libelleAcheminement": "LARROQUE SUR L OSSE", - "nomCommune": "LARROQUE SUR L OSSE" + "codePostal": "54210", + "codeCommune": "54108", + "libelleAcheminement": "BURTHECOURT AUX CHENES", + "nomCommune": "BURTHECOURT AUX CHENES" }, { - "codePostal": "01190", - "codeCommune": "01402", - "libelleAcheminement": "SERMOYER", - "nomCommune": "SERMOYER" + "codePostal": "56170", + "codeCommune": "56086", + "libelleAcheminement": "ILE D HOUAT", + "nomCommune": "ILE D HOUAT" }, { - "codePostal": "60350", - "codeCommune": "60593", - "libelleAcheminement": "ST PIERRE LES BITRY", - "nomCommune": "ST PIERRE LES BITRY" + "codePostal": "64460", + "codeCommune": "64309", + "libelleAcheminement": "LAMAYOU", + "nomCommune": "LAMAYOU" }, { - "codePostal": "39700", - "codeCommune": "39039", - "libelleAcheminement": "LA BARRE", - "nomCommune": "LA BARRE" + "codePostal": "10320", + "codeCommune": "10371", + "libelleAcheminement": "SOMMEVAL", + "nomCommune": "SOMMEVAL" }, { - "codePostal": "32160", - "codeCommune": "32199", - "libelleAcheminement": "LASSERRADE", - "nomCommune": "LASSERRADE" + "codePostal": "64420", + "codeCommune": "64053", + "libelleAcheminement": "ARRIEN", + "nomCommune": "ARRIEN" }, { - "codePostal": "01560", - "codeCommune": "01406", - "libelleAcheminement": "SERVIGNAT", - "nomCommune": "SERVIGNAT" + "codePostal": "54330", + "codeCommune": "54117", + "libelleAcheminement": "CHAOUILLEY", + "nomCommune": "CHAOUILLEY" }, { - "codePostal": "60360", - "codeCommune": "60608", - "libelleAcheminement": "LE SAULCHOY", - "nomCommune": "LE SAULCHOY" + "codePostal": "56120", + "codeCommune": "56091", + "libelleAcheminement": "JOSSELIN", + "nomCommune": "JOSSELIN" }, { - "codePostal": "39800", - "codeCommune": "39049", - "libelleAcheminement": "BERSAILLIN", - "nomCommune": "BERSAILLIN" + "codePostal": "64120", + "codeCommune": "64314", + "libelleAcheminement": "LARCEVEAU ARROS CIBITS", + "nomCommune": "LARCEVEAU ARROS CIBITS" }, { - "codePostal": "32110", - "codeCommune": "32202", - "libelleAcheminement": "LAUJUZAN", - "nomCommune": "LAUJUZAN" + "codePostal": "10400", + "codeCommune": "10382", + "libelleAcheminement": "TRAINEL", + "nomCommune": "TRAINEL" }, { - "codePostal": "01400", - "codeCommune": "01412", - "libelleAcheminement": "SULIGNAT", - "nomCommune": "SULIGNAT" + "codePostal": "64350", + "codeCommune": "64056", + "libelleAcheminement": "ARROSES", + "nomCommune": "ARROSES" }, { - "codePostal": "60400", - "codeCommune": "60610", - "libelleAcheminement": "SEMPIGNY", - "nomCommune": "SEMPIGNY" + "codePostal": "54113", + "codeCommune": "54120", + "libelleAcheminement": "CHARMES LA COTE", + "nomCommune": "CHARMES LA COTE" }, { - "codePostal": "39800", - "codeCommune": "39049", - "libelleAcheminement": "BERSAILLIN", - "nomCommune": "BERSAILLIN" + "codePostal": "56920", + "codeCommune": "56092", + "libelleAcheminement": "KERFOURN", + "nomCommune": "KERFOURN" }, { - "codePostal": "32330", - "codeCommune": "32203", - "libelleAcheminement": "LAURAET", - "nomCommune": "LAURAET" + "codePostal": "64560", + "codeCommune": "64316", + "libelleAcheminement": "LARRAU", + "nomCommune": "LARRAU" }, { - "codePostal": "01230", - "codeCommune": "01416", - "libelleAcheminement": "TENAY", - "nomCommune": "TENAY" + "codePostal": "10170", + "codeCommune": "10392", + "libelleAcheminement": "VALLANT ST GEORGES", + "nomCommune": "VALLANT ST GEORGES" }, { - "codePostal": "60240", - "codeCommune": "60613", - "libelleAcheminement": "SENOTS", - "nomCommune": "SENOTS" + "codePostal": "64420", + "codeCommune": "64059", + "libelleAcheminement": "ARTIGUELOUTAN", + "nomCommune": "ARTIGUELOUTAN" }, { - "codePostal": "39800", - "codeCommune": "39049", - "libelleAcheminement": "BERSAILLIN", - "nomCommune": "BERSAILLIN" + "codePostal": "54360", + "codeCommune": "54121", + "libelleAcheminement": "CHARMOIS", + "nomCommune": "CHARMOIS" }, { - "codePostal": "32810", - "codeCommune": "32207", - "libelleAcheminement": "LEBOULIN", - "nomCommune": "LEBOULIN" + "codePostal": "56120", + "codeCommune": "56103", + "libelleAcheminement": "LANTILLAC", + "nomCommune": "LANTILLAC" }, { - "codePostal": "01120", - "codeCommune": "01418", - "libelleAcheminement": "THIL", - "nomCommune": "THIL" + "codePostal": "64120", + "codeCommune": "64319", + "libelleAcheminement": "LARRIBAR SORHAPURU", + "nomCommune": "LARRIBAR SORHAPURU" }, { - "codePostal": "60400", - "codeCommune": "60617", - "libelleAcheminement": "SERMAIZE", - "nomCommune": "SERMAIZE" + "codePostal": "10240", + "codeCommune": "10398", + "libelleAcheminement": "VAUCOGNE", + "nomCommune": "VAUCOGNE" }, { - "codePostal": "39250", - "codeCommune": "39055", - "libelleAcheminement": "BILLECUL", - "nomCommune": "BILLECUL" + "codePostal": "64170", + "codeCommune": "64061", + "libelleAcheminement": "ARTIX", + "nomCommune": "ARTIX" }, { - "codePostal": "32600", - "codeCommune": "32210", - "libelleAcheminement": "LIAS", - "nomCommune": "LIAS" + "codePostal": "54200", + "codeCommune": "54122", + "libelleAcheminement": "CHAUDENEY SUR MOSELLE", + "nomCommune": "CHAUDENEY SUR MOSELLE" }, { - "codePostal": "01710", - "codeCommune": "01419", - "libelleAcheminement": "THOIRY", - "nomCommune": "THOIRY" + "codePostal": "56320", + "codeCommune": "56105", + "libelleAcheminement": "LANVENEGEN", + "nomCommune": "LANVENEGEN" }, { - "codePostal": "60330", - "codeCommune": "60619", - "libelleAcheminement": "SILLY LE LONG", - "nomCommune": "SILLY LE LONG" + "codePostal": "64440", + "codeCommune": "64320", + "libelleAcheminement": "LARUNS", + "nomCommune": "LARUNS" }, { - "codePostal": "39220", - "codeCommune": "39059", - "libelleAcheminement": "BOIS D AMONT", - "nomCommune": "BOIS D AMONT" + "codePostal": "10700", + "codeCommune": "10400", + "libelleAcheminement": "VAUPOISSON", + "nomCommune": "VAUPOISSON" }, { - "codePostal": "32220", - "codeCommune": "32213", - "libelleAcheminement": "LOMBEZ", - "nomCommune": "LOMBEZ" + "codePostal": "64310", + "codeCommune": "64065", + "libelleAcheminement": "ASCAIN", + "nomCommune": "ASCAIN" }, { - "codePostal": "01250", - "codeCommune": "01422", - "libelleAcheminement": "TOSSIAT", - "nomCommune": "TOSSIAT" + "codePostal": "54610", + "codeCommune": "54126", + "libelleAcheminement": "CHENICOURT", + "nomCommune": "CHENICOURT" }, { - "codePostal": "60380", - "codeCommune": "60623", - "libelleAcheminement": "SONGEONS", - "nomCommune": "SONGEONS" + "codePostal": "56260", + "codeCommune": "56107", + "libelleAcheminement": "LARMOR PLAGE", + "nomCommune": "LARMOR PLAGE" }, { - "codePostal": "39800", - "codeCommune": "39065", - "libelleAcheminement": "BONNEFONTAINE", - "nomCommune": "BONNEFONTAINE" + "codePostal": "64190", + "codeCommune": "64326", + "libelleAcheminement": "LAY LAMIDOU", + "nomCommune": "LAY LAMIDOU" }, { - "codePostal": "32140", - "codeCommune": "32216", - "libelleAcheminement": "LOURTIES MONBRUN", - "nomCommune": "LOURTIES MONBRUN" + "codePostal": "10390", + "codeCommune": "10406", + "libelleAcheminement": "VERRIERES", + "nomCommune": "VERRIERES" }, { - "codePostal": "01390", - "codeCommune": "01424", - "libelleAcheminement": "TRAMOYES", - "nomCommune": "TRAMOYES" + "codePostal": "64800", + "codeCommune": "64068", + "libelleAcheminement": "ASSON", + "nomCommune": "ASSON" }, { - "codePostal": "60380", - "codeCommune": "60629", - "libelleAcheminement": "THERINES", - "nomCommune": "THERINES" + "codePostal": "54330", + "codeCommune": "54132", + "libelleAcheminement": "CLEREY SUR BRENON", + "nomCommune": "CLEREY SUR BRENON" }, { - "codePostal": "39100", - "codeCommune": "39078", - "libelleAcheminement": "BREVANS", - "nomCommune": "BREVANS" + "codePostal": "56460", + "codeCommune": "56112", + "libelleAcheminement": "LIZIO", + "nomCommune": "LIZIO" }, { - "codePostal": "32110", - "codeCommune": "32220", - "libelleAcheminement": "LUPPE VIOLLES", - "nomCommune": "LUPPE VIOLLES" + "codePostal": "64220", + "codeCommune": "64327", + "libelleAcheminement": "LECUMBERRY", + "nomCommune": "LECUMBERRY" }, { - "codePostal": "01160", - "codeCommune": "01425", - "libelleAcheminement": "LA TRANCLIERE", - "nomCommune": "LA TRANCLIERE" + "codePostal": "10800", + "codeCommune": "10416", + "libelleAcheminement": "VILLEMEREUIL", + "nomCommune": "VILLEMEREUIL" }, { - "codePostal": "60170", - "codeCommune": "60641", - "libelleAcheminement": "TRACY LE MONT", - "nomCommune": "TRACY LE MONT" + "codePostal": "64450", + "codeCommune": "64070", + "libelleAcheminement": "ASTIS", + "nomCommune": "ASTIS" }, { - "codePostal": "39800", - "codeCommune": "39081", - "libelleAcheminement": "BUVILLY", - "nomCommune": "BUVILLY" + "codePostal": "54800", + "codeCommune": "54136", + "libelleAcheminement": "CONFLANS EN JARNISY", + "nomCommune": "CONFLANS EN JARNISY" }, { - "codePostal": "32270", - "codeCommune": "32221", - "libelleAcheminement": "LUSSAN", - "nomCommune": "LUSSAN" + "codePostal": "56500", + "codeCommune": "56117", + "libelleAcheminement": "LOCMINE", + "nomCommune": "LOCMINE" }, { - "codePostal": "01660", - "codeCommune": "01429", - "libelleAcheminement": "VANDEINS", - "nomCommune": "VANDEINS" + "codePostal": "64400", + "codeCommune": "64328", + "libelleAcheminement": "LEDEUIX", + "nomCommune": "LEDEUIX" }, { - "codePostal": "60490", - "codeCommune": "60654", - "libelleAcheminement": "VANDELICOURT", - "nomCommune": "VANDELICOURT" + "codePostal": "10160", + "codeCommune": "10417", + "libelleAcheminement": "VILLEMOIRON EN OTHE", + "nomCommune": "VILLEMOIRON EN OTHE" }, { - "codePostal": "39230", - "codeCommune": "39100", - "libelleAcheminement": "CHAMPROUGIER", - "nomCommune": "CHAMPROUGIER" + "codePostal": "64330", + "codeCommune": "64074", + "libelleAcheminement": "AUBOUS", + "nomCommune": "AUBOUS" }, { - "codePostal": "32110", - "codeCommune": "32222", - "libelleAcheminement": "MAGNAN", - "nomCommune": "MAGNAN" + "codePostal": "54110", + "codeCommune": "54139", + "libelleAcheminement": "COURBESSEAUX", + "nomCommune": "COURBESSEAUX" }, { - "codePostal": "01160", - "codeCommune": "01430", - "libelleAcheminement": "VARAMBON", - "nomCommune": "VARAMBON" + "codePostal": "56550", + "codeCommune": "56119", + "libelleAcheminement": "LOCOAL MENDON", + "nomCommune": "LOCOAL MENDON" }, { - "codePostal": "60890", - "codeCommune": "60656", - "libelleAcheminement": "VARINFROY", - "nomCommune": "VARINFROY" + "codePostal": "64160", + "codeCommune": "64338", + "libelleAcheminement": "LESPOURCY", + "nomCommune": "LESPOURCY" }, { - "codePostal": "39300", - "codeCommune": "39105", - "libelleAcheminement": "CHAPOIS", - "nomCommune": "CHAPOIS" + "codePostal": "10110", + "codeCommune": "10418", + "libelleAcheminement": "VILLEMORIEN", + "nomCommune": "VILLEMORIEN" }, { - "codePostal": "32730", - "codeCommune": "32225", - "libelleAcheminement": "MALABAT", - "nomCommune": "MALABAT" + "codePostal": "64130", + "codeCommune": "64081", + "libelleAcheminement": "AUSSURUCQ", + "nomCommune": "AUSSURUCQ" }, { - "codePostal": "01170", - "codeCommune": "01436", - "libelleAcheminement": "VESANCY", - "nomCommune": "VESANCY" + "codePostal": "54300", + "codeCommune": "54148", + "libelleAcheminement": "CROISMARE", + "nomCommune": "CROISMARE" }, { - "codePostal": "60390", - "codeCommune": "60662", - "libelleAcheminement": "LE VAUROUX", - "nomCommune": "LE VAUROUX" + "codePostal": "56140", + "codeCommune": "56124", + "libelleAcheminement": "MALESTROIT", + "nomCommune": "MALESTROIT" }, { - "codePostal": "39130", - "codeCommune": "39109", - "libelleAcheminement": "CHAREZIER", - "nomCommune": "CHAREZIER" + "codePostal": "64800", + "codeCommune": "64339", + "libelleAcheminement": "LESTELLE BETHARRAM", + "nomCommune": "LESTELLE BETHARRAM" }, { - "codePostal": "32490", - "codeCommune": "32234", - "libelleAcheminement": "MARESTAING", - "nomCommune": "MARESTAING" + "codePostal": "10140", + "codeCommune": "10423", + "libelleAcheminement": "LA VILLENEUVE AU CHENE", + "nomCommune": "LA VILLENEUVE AU CHENE" }, { - "codePostal": "01200", - "codeCommune": "01448", - "libelleAcheminement": "VILLES", - "nomCommune": "VILLES" + "codePostal": "64490", + "codeCommune": "64085", + "libelleAcheminement": "AYDIUS", + "nomCommune": "AYDIUS" }, { - "codePostal": "60360", - "codeCommune": "60673", - "libelleAcheminement": "VIEFVILLERS", - "nomCommune": "VIEFVILLERS" + "codePostal": "54360", + "codeCommune": "54152", + "libelleAcheminement": "DAMELEVIERES", + "nomCommune": "DAMELEVIERES" }, { - "codePostal": "39230", - "codeCommune": "39112", - "libelleAcheminement": "LA CHASSAGNE", - "nomCommune": "LA CHASSAGNE" + "codePostal": "56500", + "codeCommune": "56141", + "libelleAcheminement": "MOUSTOIR AC", + "nomCommune": "MOUSTOIR AC" }, { - "codePostal": "32150", - "codeCommune": "32236", - "libelleAcheminement": "MARGUESTAU", - "nomCommune": "MARGUESTAU" + "codePostal": "64470", + "codeCommune": "64340", + "libelleAcheminement": "LICHANS SUNHAR", + "nomCommune": "LICHANS SUNHAR" }, { - "codePostal": "01510", - "codeCommune": "01452", - "libelleAcheminement": "VIRIEU LE GRAND", - "nomCommune": "VIRIEU LE GRAND" + "codePostal": "10310", + "codeCommune": "10426", + "libelleAcheminement": "VILLE SOUS LA FERTE", + "nomCommune": "VILLE SOUS LA FERTE" }, { - "codePostal": "60350", - "codeCommune": "60674", - "libelleAcheminement": "VIEUX MOULIN", - "nomCommune": "VIEUX MOULIN" + "codePostal": "64240", + "codeCommune": "64086", + "libelleAcheminement": "AYHERRE", + "nomCommune": "AYHERRE" }, { - "codePostal": "39230", - "codeCommune": "39119", - "libelleAcheminement": "LE CHATELEY", - "nomCommune": "LE CHATELEY" + "codePostal": "54370", + "codeCommune": "54155", + "libelleAcheminement": "DEUXVILLE", + "nomCommune": "DEUXVILLE" }, { - "codePostal": "32700", - "codeCommune": "32239", - "libelleAcheminement": "MARSOLAN", - "nomCommune": "MARSOLAN" + "codePostal": "56130", + "codeCommune": "56147", + "libelleAcheminement": "NIVILLAC", + "nomCommune": "NIVILLAC" }, { - "codePostal": "01260", - "codeCommune": "01453", - "libelleAcheminement": "ARVIERE EN VALROMEY", - "nomCommune": "ARVIERE EN VALROMEY" + "codePostal": "64250", + "codeCommune": "64350", + "libelleAcheminement": "LOUHOSSOA", + "nomCommune": "LOUHOSSOA" }, { - "codePostal": "60650", - "codeCommune": "60677", - "libelleAcheminement": "VILLEMBRAY", - "nomCommune": "VILLEMBRAY" + "codePostal": "10210", + "codeCommune": "10431", + "libelleAcheminement": "VILLIERS LE BOIS", + "nomCommune": "VILLIERS LE BOIS" }, { - "codePostal": "39150", - "codeCommune": "39129", - "libelleAcheminement": "CHAUX DES CROTENAY", - "nomCommune": "CHAUX DES CROTENAY" + "codePostal": "64520", + "codeCommune": "64094", + "libelleAcheminement": "BARDOS", + "nomCommune": "BARDOS" }, { - "codePostal": "32700", - "codeCommune": "32241", - "libelleAcheminement": "MAS D AUVIGNON", - "nomCommune": "MAS D AUVIGNON" + "codePostal": "54170", + "codeCommune": "54158", + "libelleAcheminement": "DOLCOURT", + "nomCommune": "DOLCOURT" }, { - "codePostal": "02320", - "codeCommune": "02010", - "libelleAcheminement": "ALLEMANT", - "nomCommune": "ALLEMANT" + "codePostal": "56690", + "codeCommune": "56148", + "libelleAcheminement": "NOSTANG", + "nomCommune": "NOSTANG" }, { - "codePostal": "60650", - "codeCommune": "60681", - "libelleAcheminement": "VILLERS ST BARTHELEMY", - "nomCommune": "VILLERS ST BARTHELEMY" + "codePostal": "64570", + "codeCommune": "64351", + "libelleAcheminement": "LOURDIOS ICHERE", + "nomCommune": "LOURDIOS ICHERE" }, { - "codePostal": "39200", - "codeCommune": "39130", - "libelleAcheminement": "NANCHEZ", - "nomCommune": "NANCHEZ" + "codePostal": "10210", + "codeCommune": "10432", + "libelleAcheminement": "VILLIERS SOUS PRASLIN", + "nomCommune": "VILLIERS SOUS PRASLIN" }, { - "codePostal": "32400", - "codeCommune": "32244", - "libelleAcheminement": "MAULICHERES", - "nomCommune": "MAULICHERES" + "codePostal": "64100", + "codeCommune": "64102", + "libelleAcheminement": "BAYONNE", + "nomCommune": "BAYONNE" }, { - "codePostal": "02290", - "codeCommune": "02011", - "libelleAcheminement": "AMBLENY", - "nomCommune": "AMBLENY" + "codePostal": "54115", + "codeCommune": "54164", + "libelleAcheminement": "DOMMARIE EULMONT", + "nomCommune": "DOMMARIE EULMONT" }, { - "codePostal": "60810", - "codeCommune": "60682", - "libelleAcheminement": "VILLERS ST FRAMBOURG OGNON", - "nomCommune": "VILLERS ST FRAMBOURG OGNON" + "codePostal": "56360", + "codeCommune": "56152", + "libelleAcheminement": "LE PALAIS", + "nomCommune": "LE PALAIS" }, { - "codePostal": "39240", - "codeCommune": "39137", - "libelleAcheminement": "ST HYMETIERE SUR VALOUSE", - "nomCommune": "ST HYMETIERE SUR VALOUSE" + "codePostal": "64420", + "codeCommune": "64358", + "libelleAcheminement": "LUCGARIER", + "nomCommune": "LUCGARIER" }, { - "codePostal": "32300", - "codeCommune": "32256", - "libelleAcheminement": "MIRANDE", - "nomCommune": "MIRANDE" + "codePostal": "10800", + "codeCommune": "10434", + "libelleAcheminement": "VILLY LE BOIS", + "nomCommune": "VILLY LE BOIS" }, { - "codePostal": "02200", - "codeCommune": "02012", - "libelleAcheminement": "AMBRIEF", - "nomCommune": "AMBRIEF" + "codePostal": "64120", + "codeCommune": "64106", + "libelleAcheminement": "BEHASQUE LAPISTE", + "nomCommune": "BEHASQUE LAPISTE" }, { - "codePostal": "60134", - "codeCommune": "60685", - "libelleAcheminement": "VILLERS ST SEPULCRE", - "nomCommune": "VILLERS ST SEPULCRE" + "codePostal": "54620", + "codeCommune": "54172", + "libelleAcheminement": "DONCOURT LES LONGUYON", + "nomCommune": "DONCOURT LES LONGUYON" }, { - "codePostal": "39120", - "codeCommune": "39138", - "libelleAcheminement": "CHEMIN", - "nomCommune": "CHEMIN" + "codePostal": "56760", + "codeCommune": "56155", + "libelleAcheminement": "PENESTIN", + "nomCommune": "PENESTIN" }, { - "codePostal": "32420", - "codeCommune": "32260", - "libelleAcheminement": "MONBARDON", - "nomCommune": "MONBARDON" + "codePostal": "64660", + "codeCommune": "64360", + "libelleAcheminement": "LURBE ST CHRISTAU", + "nomCommune": "LURBE ST CHRISTAU" }, { - "codePostal": "02190", - "codeCommune": "02013", - "libelleAcheminement": "AMIFONTAINE", - "nomCommune": "AMIFONTAINE" + "codePostal": "10700", + "codeCommune": "10436", + "libelleAcheminement": "VINETS", + "nomCommune": "VINETS" }, { - "codePostal": "60650", - "codeCommune": "60687", - "libelleAcheminement": "VILLERS SUR AUCHY", - "nomCommune": "VILLERS SUR AUCHY" + "codePostal": "64300", + "codeCommune": "64112", + "libelleAcheminement": "BERENX", + "nomCommune": "BERENX" }, { - "codePostal": "39570", - "codeCommune": "39162", - "libelleAcheminement": "CONDAMINE", - "nomCommune": "CONDAMINE" + "codePostal": "54270", + "codeCommune": "54184", + "libelleAcheminement": "ESSEY LES NANCY", + "nomCommune": "ESSEY LES NANCY" }, { - "codePostal": "32120", - "codeCommune": "32269", - "libelleAcheminement": "MONFORT", - "nomCommune": "MONFORT" + "codePostal": "56890", + "codeCommune": "56158", + "libelleAcheminement": "PLESCOP", + "nomCommune": "PLESCOP" }, { - "codePostal": "02320", - "codeCommune": "02018", - "libelleAcheminement": "ANIZY LE GRAND", - "nomCommune": "ANIZY LE GRAND" + "codePostal": "64240", + "codeCommune": "64364", + "libelleAcheminement": "MACAYE", + "nomCommune": "MACAYE" }, { - "codePostal": "60860", - "codeCommune": "60688", - "libelleAcheminement": "VILLERS SUR BONNIERES", - "nomCommune": "VILLERS SUR BONNIERES" + "codePostal": "10500", + "codeCommune": "10445", + "libelleAcheminement": "YEVRES LE PETIT", + "nomCommune": "YEVRES LE PETIT" }, { - "codePostal": "39140", - "codeCommune": "39167", - "libelleAcheminement": "COSGES", - "nomCommune": "COSGES" + "codePostal": "64200", + "codeCommune": "64122", + "libelleAcheminement": "BIARRITZ", + "nomCommune": "BIARRITZ" }, { - "codePostal": "32170", - "codeCommune": "32275", - "libelleAcheminement": "MONPARDIAC", - "nomCommune": "MONPARDIAC" + "codePostal": "54330", + "codeCommune": "54185", + "libelleAcheminement": "ETREVAL", + "nomCommune": "ETREVAL" }, { - "codePostal": "02130", - "codeCommune": "02022", - "libelleAcheminement": "ARCY STE RESTITUE", - "nomCommune": "ARCY STE RESTITUE" + "codePostal": "56120", + "codeCommune": "56160", + "libelleAcheminement": "PLEUGRIFFET", + "nomCommune": "PLEUGRIFFET" }, { - "codePostal": "60150", - "codeCommune": "60689", - "libelleAcheminement": "VILLERS SUR COUDUN", - "nomCommune": "VILLERS SUR COUDUN" + "codePostal": "64350", + "codeCommune": "64369", + "libelleAcheminement": "MASPIE LALONQUERE JUILLACQ", + "nomCommune": "MASPIE LALONQUERE JUILLACQ" }, { - "codePostal": "39300", - "codeCommune": "39178", - "libelleAcheminement": "CRANS", - "nomCommune": "CRANS" + "codePostal": "11800", + "codeCommune": "11001", + "libelleAcheminement": "AIGUES VIVES", + "nomCommune": "AIGUES VIVES" }, { - "codePostal": "32730", - "codeCommune": "32283", - "libelleAcheminement": "MONTEGUT ARROS", - "nomCommune": "MONTEGUT ARROS" + "codePostal": "64520", + "codeCommune": "64123", + "libelleAcheminement": "BIDACHE", + "nomCommune": "BIDACHE" }, { - "codePostal": "02840", - "codeCommune": "02028", - "libelleAcheminement": "ATHIES SOUS LAON", - "nomCommune": "ATHIES SOUS LAON" + "codePostal": "54115", + "codeCommune": "54189", + "libelleAcheminement": "FAVIERES", + "nomCommune": "FAVIERES" }, { - "codePostal": "60130", - "codeCommune": "60701", - "libelleAcheminement": "WAVIGNIES", - "nomCommune": "WAVIGNIES" + "codePostal": "56880", + "codeCommune": "56164", + "libelleAcheminement": "PLOEREN", + "nomCommune": "PLOEREN" }, { - "codePostal": "39190", - "codeCommune": "39197", - "libelleAcheminement": "DIGNA", - "nomCommune": "DIGNA" + "codePostal": "64110", + "codeCommune": "64373", + "libelleAcheminement": "MAZERES LEZONS", + "nomCommune": "MAZERES LEZONS" }, { - "codePostal": "32330", - "codeCommune": "32292", - "libelleAcheminement": "MOUCHAN", - "nomCommune": "MOUCHAN" + "codePostal": "11320", + "codeCommune": "11002", + "libelleAcheminement": "AIROUX", + "nomCommune": "AIROUX" }, { - "codePostal": "02490", - "codeCommune": "02029", - "libelleAcheminement": "ATTILLY", - "nomCommune": "ATTILLY" + "codePostal": "64510", + "codeCommune": "64133", + "libelleAcheminement": "BOEIL BEZING", + "nomCommune": "BOEIL BEZING" }, { - "codePostal": "61000", - "codeCommune": "61001", - "libelleAcheminement": "ALENCON", - "nomCommune": "ALENCON" + "codePostal": "54540", + "codeCommune": "54191", + "libelleAcheminement": "FENNEVILLER", + "nomCommune": "FENNEVILLER" }, { - "codePostal": "39100", - "codeCommune": "39198", - "libelleAcheminement": "DOLE", - "nomCommune": "DOLE" + "codePostal": "56340", + "codeCommune": "56168", + "libelleAcheminement": "PLOUHARNEL", + "nomCommune": "PLOUHARNEL" }, { - "codePostal": "32130", - "codeCommune": "32295", - "libelleAcheminement": "NIZAS", - "nomCommune": "NIZAS" + "codePostal": "64410", + "codeCommune": "64383", + "libelleAcheminement": "MIALOS", + "nomCommune": "MIALOS" }, { - "codePostal": "02120", - "codeCommune": "02035", - "libelleAcheminement": "AUDIGNY", - "nomCommune": "AUDIGNY" + "codePostal": "11240", + "codeCommune": "11004", + "libelleAcheminement": "ALAIGNE", + "nomCommune": "ALAIGNE" }, { - "codePostal": "61100", - "codeCommune": "61007", - "libelleAcheminement": "ATHIS VAL DE ROUVRE", - "nomCommune": "ATHIS VAL DE ROUVRE" + "codePostal": "64340", + "codeCommune": "64140", + "libelleAcheminement": "BOUCAU", + "nomCommune": "BOUCAU" }, { - "codePostal": "39230", - "codeCommune": "39199", - "libelleAcheminement": "DOMBLANS", - "nomCommune": "DOMBLANS" + "codePostal": "54470", + "codeCommune": "54200", + "libelleAcheminement": "FLIREY", + "nomCommune": "FLIREY" }, { - "codePostal": "32260", - "codeCommune": "32300", - "libelleAcheminement": "ORBESSAN", - "nomCommune": "ORBESSAN" + "codePostal": "56500", + "codeCommune": "56174", + "libelleAcheminement": "PLUMELIN", + "nomCommune": "PLUMELIN" }, { - "codePostal": "02220", - "codeCommune": "02036", - "libelleAcheminement": "AUGY", - "nomCommune": "AUGY" + "codePostal": "64350", + "codeCommune": "64390", + "libelleAcheminement": "MONCAUP", + "nomCommune": "MONCAUP" }, { - "codePostal": "61100", - "codeCommune": "61007", - "libelleAcheminement": "ATHIS VAL DE ROUVRE", - "nomCommune": "ATHIS VAL DE ROUVRE" + "codePostal": "11330", + "codeCommune": "11007", + "libelleAcheminement": "ALBIERES", + "nomCommune": "ALBIERES" }, { - "codePostal": "39110", - "codeCommune": "39202", - "libelleAcheminement": "DOURNON", - "nomCommune": "DOURNON" + "codePostal": "64230", + "codeCommune": "64142", + "libelleAcheminement": "BOUGARBER", + "nomCommune": "BOUGARBER" }, { - "codePostal": "32230", - "codeCommune": "32303", - "libelleAcheminement": "PALLANNE", - "nomCommune": "PALLANNE" + "codePostal": "54930", + "codeCommune": "54207", + "libelleAcheminement": "FRAISNES EN SAINTOIS", + "nomCommune": "FRAISNES EN SAINTOIS" }, { - "codePostal": "02000", - "codeCommune": "02037", - "libelleAcheminement": "AULNOIS SOUS LAON", - "nomCommune": "AULNOIS SOUS LAON" + "codePostal": "56400", + "codeCommune": "56176", + "libelleAcheminement": "PLUNERET", + "nomCommune": "PLUNERET" }, { - "codePostal": "61100", - "codeCommune": "61011", - "libelleAcheminement": "AUBUSSON", - "nomCommune": "AUBUSSON" + "codePostal": "64460", + "codeCommune": "64395", + "libelleAcheminement": "MONSEGUR", + "nomCommune": "MONSEGUR" }, { - "codePostal": "39240", - "codeCommune": "39204", - "libelleAcheminement": "DRAMELAY", - "nomCommune": "DRAMELAY" + "codePostal": "11190", + "codeCommune": "11015", + "libelleAcheminement": "ARQUES", + "nomCommune": "ARQUES" }, { - "codePostal": "32140", - "codeCommune": "32304", - "libelleAcheminement": "PANASSAC", - "nomCommune": "PANASSAC" + "codePostal": "64800", + "codeCommune": "64148", + "libelleAcheminement": "BRUGES CAPBIS MIFAGET", + "nomCommune": "BRUGES CAPBIS MIFAGET" }, { - "codePostal": "02140", - "codeCommune": "02044", - "libelleAcheminement": "BANCIGNY", - "nomCommune": "BANCIGNY" + "codePostal": "54830", + "codeCommune": "54209", + "libelleAcheminement": "FRANCONVILLE", + "nomCommune": "FRANCONVILLE" }, { - "codePostal": "61240", - "codeCommune": "61017", - "libelleAcheminement": "LES AUTHIEUX DU PUITS", - "nomCommune": "LES AUTHIEUX DU PUITS" + "codePostal": "56310", + "codeCommune": "56188", + "libelleAcheminement": "QUISTINIC", + "nomCommune": "QUISTINIC" }, { - "codePostal": "39700", - "codeCommune": "39205", - "libelleAcheminement": "ECLANS NENON", - "nomCommune": "ECLANS NENON" + "codePostal": "64370", + "codeCommune": "64406", + "libelleAcheminement": "MORLANNE", + "nomCommune": "MORLANNE" }, { - "codePostal": "32320", - "codeCommune": "32315", - "libelleAcheminement": "PEYRUSSE GRANDE", - "nomCommune": "PEYRUSSE GRANDE" + "codePostal": "11800", + "codeCommune": "11027", + "libelleAcheminement": "BARBAIRA", + "nomCommune": "BARBAIRA" }, { - "codePostal": "02000", - "codeCommune": "02046", - "libelleAcheminement": "BARENTON BUGNY", - "nomCommune": "BARENTON BUGNY" + "codePostal": "64800", + "codeCommune": "64148", + "libelleAcheminement": "BRUGES CAPBIS MIFAGET", + "nomCommune": "BRUGES CAPBIS MIFAGET" }, { - "codePostal": "61470", - "codeCommune": "61018", - "libelleAcheminement": "AVERNES ST GOURGON", - "nomCommune": "AVERNES ST GOURGON" + "codePostal": "54740", + "codeCommune": "54221", + "libelleAcheminement": "GERBECOURT ET HAPLEMONT", + "nomCommune": "GERBECOURT ET HAPLEMONT" }, { - "codePostal": "39270", - "codeCommune": "39207", - "libelleAcheminement": "ECRILLE", - "nomCommune": "ECRILLE" + "codePostal": "56580", + "codeCommune": "56198", + "libelleAcheminement": "ROHAN", + "nomCommune": "ROHAN" }, { - "codePostal": "32290", - "codeCommune": "32325", - "libelleAcheminement": "POUYDRAGUIN", - "nomCommune": "POUYDRAGUIN" + "codePostal": "64190", + "codeCommune": "64412", + "libelleAcheminement": "NABAS", + "nomCommune": "NABAS" }, { - "codePostal": "02380", - "codeCommune": "02052", - "libelleAcheminement": "BASSOLES AULERS", - "nomCommune": "BASSOLES AULERS" + "codePostal": "11340", + "codeCommune": "11028", + "libelleAcheminement": "BELCAIRE", + "nomCommune": "BELCAIRE" }, { - "codePostal": "61150", - "codeCommune": "61020", - "libelleAcheminement": "AVOINE", - "nomCommune": "AVOINE" + "codePostal": "64800", + "codeCommune": "64148", + "libelleAcheminement": "BRUGES CAPBIS MIFAGET", + "nomCommune": "BRUGES CAPBIS MIFAGET" }, { - "codePostal": "39150", - "codeCommune": "39208", - "libelleAcheminement": "ENTRE DEUX MONTS", - "nomCommune": "ENTRE DEUX MONTS" + "codePostal": "54830", + "codeCommune": "54228", + "libelleAcheminement": "GIRIVILLER", + "nomCommune": "GIRIVILLER" }, { - "codePostal": "32390", - "codeCommune": "32337", - "libelleAcheminement": "PUYSEGUR", - "nomCommune": "PUYSEGUR" + "codePostal": "56580", + "codeCommune": "56198", + "libelleAcheminement": "ROHAN", + "nomCommune": "ROHAN" }, { - "codePostal": "02500", - "codeCommune": "02055", - "libelleAcheminement": "BEAUME", - "nomCommune": "BEAUME" + "codePostal": "64800", + "codeCommune": "64417", + "libelleAcheminement": "NAY", + "nomCommune": "NAY" }, { - "codePostal": "61560", - "codeCommune": "61029", - "libelleAcheminement": "BAZOCHES SUR HOENE", - "nomCommune": "BAZOCHES SUR HOENE" + "codePostal": "11410", + "codeCommune": "11030", + "libelleAcheminement": "BELFLOU", + "nomCommune": "BELFLOU" }, { - "codePostal": "39160", - "codeCommune": "39209", - "libelleAcheminement": "VAL D EPY", - "nomCommune": "VAL D EPY" + "codePostal": "64220", + "codeCommune": "64155", + "libelleAcheminement": "BUSTINCE IRIBERRY", + "nomCommune": "BUSTINCE IRIBERRY" }, { - "codePostal": "32430", - "codeCommune": "32349", - "libelleAcheminement": "ROQUELAURE ST AUBIN", - "nomCommune": "ROQUELAURE ST AUBIN" + "codePostal": "54122", + "codeCommune": "54229", + "libelleAcheminement": "GLONVILLE", + "nomCommune": "GLONVILLE" }, { - "codePostal": "02300", - "codeCommune": "02056", - "libelleAcheminement": "BEAUMONT EN BEINE", - "nomCommune": "BEAUMONT EN BEINE" + "codePostal": "56110", + "codeCommune": "56199", + "libelleAcheminement": "ROUDOUALLEC", + "nomCommune": "ROUDOUALLEC" }, { - "codePostal": "61270", - "codeCommune": "61032", - "libelleAcheminement": "BEAUFAI", - "nomCommune": "BEAUFAI" + "codePostal": "64150", + "codeCommune": "64418", + "libelleAcheminement": "NOGUERES", + "nomCommune": "NOGUERES" }, { - "codePostal": "39300", - "codeCommune": "39210", - "libelleAcheminement": "EQUEVILLON", - "nomCommune": "EQUEVILLON" + "codePostal": "11500", + "codeCommune": "11035", + "libelleAcheminement": "BELVIANES ET CAVIRAC", + "nomCommune": "BELVIANES ET CAVIRAC" }, { - "codePostal": "32190", - "codeCommune": "32352", - "libelleAcheminement": "ROZES", - "nomCommune": "ROZES" + "codePostal": "64470", + "codeCommune": "64162", + "libelleAcheminement": "CAMOU CIHIGUE", + "nomCommune": "CAMOU CIHIGUE" }, { - "codePostal": "02590", - "codeCommune": "02060", - "libelleAcheminement": "BEAUVOIS EN VERMANDOIS", - "nomCommune": "BEAUVOIS EN VERMANDOIS" + "codePostal": "54840", + "codeCommune": "54232", + "libelleAcheminement": "GONDREVILLE", + "nomCommune": "GONDREVILLE" }, { - "codePostal": "61130", - "codeCommune": "61038", - "libelleAcheminement": "BELLEME", - "nomCommune": "BELLEME" + "codePostal": "56500", + "codeCommune": "56204", + "libelleAcheminement": "ST ALLOUESTRE", + "nomCommune": "ST ALLOUESTRE" }, { - "codePostal": "39800", - "codeCommune": "39222", - "libelleAcheminement": "FAY EN MONTAGNE", - "nomCommune": "FAY EN MONTAGNE" + "codePostal": "64390", + "codeCommune": "64428", + "libelleAcheminement": "ORRIULE", + "nomCommune": "ORRIULE" }, { - "codePostal": "32420", - "codeCommune": "32353", - "libelleAcheminement": "SABAILLAN", - "nomCommune": "SABAILLAN" + "codePostal": "11700", + "codeCommune": "11042", + "libelleAcheminement": "BLOMAC", + "nomCommune": "BLOMAC" }, { - "codePostal": "02420", - "codeCommune": "02065", - "libelleAcheminement": "BELLICOURT", - "nomCommune": "BELLICOURT" + "codePostal": "64170", + "codeCommune": "64171", + "libelleAcheminement": "CASTEIDE CAMI", + "nomCommune": "CASTEIDE CAMI" }, { - "codePostal": "61500", - "codeCommune": "61051", - "libelleAcheminement": "BOITRON", - "nomCommune": "BOITRON" + "codePostal": "54260", + "codeCommune": "54236", + "libelleAcheminement": "GRAND FAILLY", + "nomCommune": "GRAND FAILLY" }, { - "codePostal": "39140", - "codeCommune": "39229", - "libelleAcheminement": "FONTAINEBRUX", - "nomCommune": "FONTAINEBRUX" + "codePostal": "56480", + "codeCommune": "56209", + "libelleAcheminement": "STE BRIGITTE", + "nomCommune": "STE BRIGITTE" }, { - "codePostal": "32700", - "codeCommune": "32364", - "libelleAcheminement": "ST AVIT FRANDAT", - "nomCommune": "ST AVIT FRANDAT" + "codePostal": "64300", + "codeCommune": "64430", + "libelleAcheminement": "ORTHEZ", + "nomCommune": "ORTHEZ" }, { - "codePostal": "02820", - "codeCommune": "02072", - "libelleAcheminement": "BERRIEUX", - "nomCommune": "BERRIEUX" + "codePostal": "11200", + "codeCommune": "11048", + "libelleAcheminement": "BOUTENAC", + "nomCommune": "BOUTENAC" }, { - "codePostal": "61220", - "codeCommune": "61063", - "libelleAcheminement": "BRIOUZE", - "nomCommune": "BRIOUZE" + "codePostal": "64460", + "codeCommune": "64173", + "libelleAcheminement": "CASTEIDE DOAT", + "nomCommune": "CASTEIDE DOAT" }, { - "codePostal": "39100", - "codeCommune": "39233", - "libelleAcheminement": "FOUCHERANS", - "nomCommune": "FOUCHERANS" + "codePostal": "54120", + "codeCommune": "54243", + "libelleAcheminement": "HABLAINVILLE", + "nomCommune": "HABLAINVILLE" }, { - "codePostal": "32380", - "codeCommune": "32370", - "libelleAcheminement": "ST CLAR", - "nomCommune": "ST CLAR" + "codePostal": "56220", + "codeCommune": "56218", + "libelleAcheminement": "ST GRAVE", + "nomCommune": "ST GRAVE" }, { - "codePostal": "02210", - "codeCommune": "02082", - "libelleAcheminement": "BEUGNEUX", - "nomCommune": "BEUGNEUX" + "codePostal": "64300", + "codeCommune": "64430", + "libelleAcheminement": "ORTHEZ", + "nomCommune": "ORTHEZ" }, { - "codePostal": "61100", - "codeCommune": "61078", - "libelleAcheminement": "CERISY BELLE ETOILE", - "nomCommune": "CERISY BELLE ETOILE" + "codePostal": "11300", + "codeCommune": "11053", + "libelleAcheminement": "BRUGAIROLLES", + "nomCommune": "BRUGAIROLLES" }, { - "codePostal": "39230", - "codeCommune": "39234", - "libelleAcheminement": "FOULENAY", - "nomCommune": "FOULENAY" + "codePostal": "64460", + "codeCommune": "64174", + "libelleAcheminement": "CASTERA LOUBIX", + "nomCommune": "CASTERA LOUBIX" }, { - "codePostal": "32450", - "codeCommune": "32374", - "libelleAcheminement": "ST ELIX D ASTARAC", - "nomCommune": "ST ELIX D ASTARAC" + "codePostal": "54450", + "codeCommune": "54246", + "libelleAcheminement": "HALLOVILLE", + "nomCommune": "HALLOVILLE" }, { - "codePostal": "02290", - "codeCommune": "02087", - "libelleAcheminement": "BIEUXY", - "nomCommune": "BIEUXY" + "codePostal": "56700", + "codeCommune": "56220", + "libelleAcheminement": "STE HELENE", + "nomCommune": "STE HELENE" }, { - "codePostal": "61500", - "codeCommune": "61081", - "libelleAcheminement": "CHAILLOUE", - "nomCommune": "CHAILLOUE" + "codePostal": "64120", + "codeCommune": "64441", + "libelleAcheminement": "PAGOLLE", + "nomCommune": "PAGOLLE" }, { - "codePostal": "39380", - "codeCommune": "39249", - "libelleAcheminement": "GERMIGNEY", - "nomCommune": "GERMIGNEY" + "codePostal": "11140", + "codeCommune": "11060", + "libelleAcheminement": "CAILLA", + "nomCommune": "CAILLA" }, { - "codePostal": "32120", - "codeCommune": "32376", - "libelleAcheminement": "STE GEMME", - "nomCommune": "STE GEMME" + "codePostal": "64300", + "codeCommune": "64179", + "libelleAcheminement": "CASTETNER", + "nomCommune": "CASTETNER" }, { - "codePostal": "02200", - "codeCommune": "02089", - "libelleAcheminement": "BILLY SUR AISNE", - "nomCommune": "BILLY SUR AISNE" + "codePostal": "54330", + "codeCommune": "54247", + "libelleAcheminement": "HAMMEVILLE", + "nomCommune": "HAMMEVILLE" }, { - "codePostal": "61560", - "codeCommune": "61087", - "libelleAcheminement": "CHAMPEAUX SUR SARTHE", - "nomCommune": "CHAMPEAUX SUR SARTHE" + "codePostal": "56470", + "codeCommune": "56233", + "libelleAcheminement": "ST PHILIBERT", + "nomCommune": "ST PHILIBERT" }, { - "codePostal": "39250", - "codeCommune": "39254", - "libelleAcheminement": "GILLOIS", - "nomCommune": "GILLOIS" + "codePostal": "64800", + "codeCommune": "64444", + "libelleAcheminement": "PARDIES PIETAT", + "nomCommune": "PARDIES PIETAT" }, { - "codePostal": "32430", - "codeCommune": "32377", - "libelleAcheminement": "ST GEORGES", - "nomCommune": "ST GEORGES" + "codePostal": "11000", + "codeCommune": "11069", + "libelleAcheminement": "CARCASSONNE", + "nomCommune": "CARCASSONNE" }, { - "codePostal": "02210", - "codeCommune": "02090", - "libelleAcheminement": "BILLY SUR OURCQ", - "nomCommune": "BILLY SUR OURCQ" + "codePostal": "64370", + "codeCommune": "64181", + "libelleAcheminement": "CASTILLON D ARTHEZ", + "nomCommune": "CASTILLON D ARTHEZ" }, { - "codePostal": "61300", - "codeCommune": "61092", - "libelleAcheminement": "CHANDAI", - "nomCommune": "CHANDAI" + "codePostal": "54470", + "codeCommune": "54248", + "libelleAcheminement": "HAMONVILLE", + "nomCommune": "HAMONVILLE" }, { - "codePostal": "39290", - "codeCommune": "39262", - "libelleAcheminement": "GREDISANS", - "nomCommune": "GREDISANS" + "codePostal": "56350", + "codeCommune": "56239", + "libelleAcheminement": "ST VINCENT SUR OUST", + "nomCommune": "ST VINCENT SUR OUST" }, { - "codePostal": "32400", - "codeCommune": "32378", - "libelleAcheminement": "ST GERME", - "nomCommune": "ST GERME" + "codePostal": "64410", + "codeCommune": "64447", + "libelleAcheminement": "PIETS PLASENCE MOUSTROU", + "nomCommune": "PIETS PLASENCE MOUSTROU" }, { - "codePostal": "02270", - "codeCommune": "02096", - "libelleAcheminement": "BOIS LES PARGNY", - "nomCommune": "BOIS LES PARGNY" + "codePostal": "11000", + "codeCommune": "11069", + "libelleAcheminement": "CARCASSONNE", + "nomCommune": "CARCASSONNE" }, { - "codePostal": "61800", - "codeCommune": "61093", - "libelleAcheminement": "CHANU", - "nomCommune": "CHANU" + "codePostal": "64230", + "codeCommune": "64183", + "libelleAcheminement": "CAUBIOS LOOS", + "nomCommune": "CAUBIOS LOOS" }, { - "codePostal": "39800", - "codeCommune": "39263", - "libelleAcheminement": "GROZON", - "nomCommune": "GROZON" + "codePostal": "54800", + "codeCommune": "54249", + "libelleAcheminement": "HANNONVILLE SUZEMONT", + "nomCommune": "HANNONVILLE SUZEMONT" }, { - "codePostal": "32380", - "codeCommune": "32385", - "libelleAcheminement": "ST LEONARD", - "nomCommune": "ST LEONARD" + "codePostal": "56460", + "codeCommune": "56244", + "libelleAcheminement": "SERENT", + "nomCommune": "SERENT" }, { - "codePostal": "02400", - "codeCommune": "02099", - "libelleAcheminement": "BONNESVALYN", - "nomCommune": "BONNESVALYN" + "codePostal": "64190", + "codeCommune": "64459", + "libelleAcheminement": "PRECHACQ NAVARRENX", + "nomCommune": "PRECHACQ NAVARRENX" }, { - "codePostal": "61100", - "codeCommune": "61095", - "libelleAcheminement": "LA CHAPELLE BICHE", - "nomCommune": "LA CHAPELLE BICHE" + "codePostal": "11170", + "codeCommune": "11070", + "libelleAcheminement": "CARLIPA", + "nomCommune": "CARLIPA" }, { - "codePostal": "39100", - "codeCommune": "39270", - "libelleAcheminement": "JOUHE", - "nomCommune": "JOUHE" + "codePostal": "64190", + "codeCommune": "64186", + "libelleAcheminement": "CHARRE", + "nomCommune": "CHARRE" }, { - "codePostal": "32300", - "codeCommune": "32394", - "libelleAcheminement": "ST MEDARD", - "nomCommune": "ST MEDARD" + "codePostal": "54860", + "codeCommune": "54254", + "libelleAcheminement": "HAUCOURT MOULAINE", + "nomCommune": "HAUCOURT MOULAINE" }, { - "codePostal": "02420", - "codeCommune": "02100", - "libelleAcheminement": "BONY", - "nomCommune": "BONY" + "codePostal": "56450", + "codeCommune": "56251", + "libelleAcheminement": "THEIX NOYALO", + "nomCommune": "THEIX NOYALO" }, { - "codePostal": "61410", - "codeCommune": "61096", - "libelleAcheminement": "RIVES D ANDAINE", - "nomCommune": "RIVES D ANDAINE" + "codePostal": "64400", + "codeCommune": "64460", + "libelleAcheminement": "PRECILHON", + "nomCommune": "PRECILHON" }, { - "codePostal": "39300", - "codeCommune": "39277", - "libelleAcheminement": "LE LARDERET", - "nomCommune": "LE LARDERET" + "codePostal": "11160", + "codeCommune": "11081", + "libelleAcheminement": "CAUNES MINERVOIS", + "nomCommune": "CAUNES MINERVOIS" }, { - "codePostal": "32700", - "codeCommune": "32395", - "libelleAcheminement": "STE MERE", - "nomCommune": "STE MERE" + "codePostal": "64330", + "codeCommune": "64190", + "libelleAcheminement": "CLARACQ", + "nomCommune": "CLARACQ" }, { - "codePostal": "02250", - "codeCommune": "02101", - "libelleAcheminement": "BOSMONT SUR SERRE", - "nomCommune": "BOSMONT SUR SERRE" + "codePostal": "54830", + "codeCommune": "54255", + "libelleAcheminement": "HAUDONVILLE", + "nomCommune": "HAUDONVILLE" }, { - "codePostal": "61130", - "codeCommune": "61099", - "libelleAcheminement": "LA CHAPELLE SOUEF", - "nomCommune": "LA CHAPELLE SOUEF" + "codePostal": "56250", + "codeCommune": "56255", + "libelleAcheminement": "TREFFLEAN", + "nomCommune": "TREFFLEAN" }, { - "codePostal": "39360", - "codeCommune": "39280", - "libelleAcheminement": "LARRIVOIRE", - "nomCommune": "LARRIVOIRE" + "codePostal": "64270", + "codeCommune": "64462", + "libelleAcheminement": "RAMOUS", + "nomCommune": "RAMOUS" }, { - "codePostal": "32130", - "codeCommune": "32410", - "libelleAcheminement": "SAMATAN", - "nomCommune": "SAMATAN" + "codePostal": "11300", + "codeCommune": "11090", + "libelleAcheminement": "CEPIE", + "nomCommune": "CEPIE" }, { - "codePostal": "02160", - "codeCommune": "02106", - "libelleAcheminement": "BOURG ET COMIN", - "nomCommune": "BOURG ET COMIN" + "codePostal": "64330", + "codeCommune": "64192", + "libelleAcheminement": "CONCHEZ DE BEARN", + "nomCommune": "CONCHEZ DE BEARN" }, { - "codePostal": "61360", - "codeCommune": "61105", - "libelleAcheminement": "CHEMILLI", - "nomCommune": "CHEMILLI" + "codePostal": "54370", + "codeCommune": "54258", + "libelleAcheminement": "HENAMENIL", + "nomCommune": "HENAMENIL" }, { - "codePostal": "39300", - "codeCommune": "39281", - "libelleAcheminement": "LE LATET", - "nomCommune": "LE LATET" + "codePostal": "56490", + "codeCommune": "56257", + "libelleAcheminement": "LA TRINITE PORHOET", + "nomCommune": "LA TRINITE PORHOET" }, { - "codePostal": "32170", - "codeCommune": "32415", - "libelleAcheminement": "SARRAGUZAN", - "nomCommune": "SARRAGUZAN" + "codePostal": "64300", + "codeCommune": "64479", + "libelleAcheminement": "ST GIRONS EN BEARN", + "nomCommune": "ST GIRONS EN BEARN" }, { - "codePostal": "02300", - "codeCommune": "02107", - "libelleAcheminement": "BOURGUIGNON SOUS COUCY", - "nomCommune": "BOURGUIGNON SOUS COUCY" + "codePostal": "11230", + "codeCommune": "11091", + "libelleAcheminement": "CHALABRE", + "nomCommune": "CHALABRE" }, { - "codePostal": "61400", - "codeCommune": "61113", - "libelleAcheminement": "COMBLOT", - "nomCommune": "COMBLOT" + "codePostal": "64440", + "codeCommune": "64204", + "libelleAcheminement": "EAUX BONNES", + "nomCommune": "EAUX BONNES" }, { - "codePostal": "39250", - "codeCommune": "39282", - "libelleAcheminement": "LA LATETTE", - "nomCommune": "LA LATETTE" + "codePostal": "54450", + "codeCommune": "54259", + "libelleAcheminement": "HERBEVILLER", + "nomCommune": "HERBEVILLER" }, { - "codePostal": "32500", - "codeCommune": "32417", - "libelleAcheminement": "LA SAUVETAT", - "nomCommune": "LA SAUVETAT" + "codePostal": "56400", + "codeCommune": "56262", + "libelleAcheminement": "LE BONO", + "nomCommune": "BONO" }, { - "codePostal": "02110", - "codeCommune": "02112", - "libelleAcheminement": "BRANCOURT LE GRAND", - "nomCommune": "BRANCOURT LE GRAND" + "codePostal": "64330", + "codeCommune": "64486", + "libelleAcheminement": "ST JEAN POUDGE", + "nomCommune": "ST JEAN POUDGE" }, { - "codePostal": "61200", - "codeCommune": "61114", - "libelleAcheminement": "COMMEAUX", - "nomCommune": "COMMEAUX" + "codePostal": "11250", + "codeCommune": "11094", + "libelleAcheminement": "CLERMONT SUR LAUQUET", + "nomCommune": "CLERMONT SUR LAUQUET" }, { - "codePostal": "39210", - "codeCommune": "39288", - "libelleAcheminement": "LAVIGNY", - "nomCommune": "LAVIGNY" + "codePostal": "64270", + "codeCommune": "64205", + "libelleAcheminement": "ESCOS", + "nomCommune": "ESCOS" }, { - "codePostal": "32220", - "codeCommune": "32420", - "libelleAcheminement": "SAUVIMONT", - "nomCommune": "SAUVIMONT" + "codePostal": "54930", + "codeCommune": "54268", + "libelleAcheminement": "HOUSSEVILLE", + "nomCommune": "HOUSSEVILLE" }, { - "codePostal": "02400", - "codeCommune": "02114", - "libelleAcheminement": "BRASLES", - "nomCommune": "BRASLES" + "codePostal": "57440", + "codeCommune": "57012", + "libelleAcheminement": "ALGRANGE", + "nomCommune": "ALGRANGE" }, { - "codePostal": "61400", - "codeCommune": "61118", - "libelleAcheminement": "CORBON", - "nomCommune": "CORBON" + "codePostal": "64220", + "codeCommune": "64492", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "39260", - "codeCommune": "39289", - "libelleAcheminement": "LECT", - "nomCommune": "LECT" + "codePostal": "11700", + "codeCommune": "11095", + "libelleAcheminement": "COMIGNE", + "nomCommune": "COMIGNE" }, { - "codePostal": "32230", - "codeCommune": "32422", - "libelleAcheminement": "SCIEURAC ET FLOURES", - "nomCommune": "SCIEURAC ET FLOURES" + "codePostal": "64160", + "codeCommune": "64212", + "libelleAcheminement": "ESPECHEDE", + "nomCommune": "ESPECHEDE" }, { - "codePostal": "02480", - "codeCommune": "02117", - "libelleAcheminement": "BRAY ST CHRISTOPHE", - "nomCommune": "BRAY ST CHRISTOPHE" + "codePostal": "54114", + "codeCommune": "54276", + "libelleAcheminement": "JEANDELAINCOURT", + "nomCommune": "JEANDELAINCOURT" }, { - "codePostal": "61390", - "codeCommune": "61133", - "libelleAcheminement": "COURTOMER", - "nomCommune": "COURTOMER" + "codePostal": "57730", + "codeCommune": "57015", + "libelleAcheminement": "ALTVILLER", + "nomCommune": "ALTVILLER" }, { - "codePostal": "39240", - "codeCommune": "39290", - "libelleAcheminement": "VALZIN EN PETITE MONTAGNE", - "nomCommune": "VALZIN EN PETITE MONTAGNE" + "codePostal": "64800", + "codeCommune": "64498", + "libelleAcheminement": "ST VINCENT", + "nomCommune": "ST VINCENT" }, { - "codePostal": "32190", - "codeCommune": "32423", - "libelleAcheminement": "SEAILLES", - "nomCommune": "SEAILLES" + "codePostal": "11600", + "codeCommune": "11099", + "libelleAcheminement": "CONQUES SUR ORBIEL", + "nomCommune": "CONQUES SUR ORBIEL" }, { - "codePostal": "02240", - "codeCommune": "02123", - "libelleAcheminement": "BRISSAY CHOIGNY", - "nomCommune": "BRISSAY CHOIGNY" + "codePostal": "64400", + "codeCommune": "64217", + "libelleAcheminement": "ESQUIULE", + "nomCommune": "ESQUIULE" }, { - "codePostal": "61230", - "codeCommune": "61138", - "libelleAcheminement": "CROISILLES", - "nomCommune": "CROISILLES" + "codePostal": "54700", + "codeCommune": "54279", + "libelleAcheminement": "JEZAINVILLE", + "nomCommune": "JEZAINVILLE" }, { - "codePostal": "39300", - "codeCommune": "39292", - "libelleAcheminement": "LENT", - "nomCommune": "LENT" + "codePostal": "57360", + "codeCommune": "57019", + "libelleAcheminement": "AMNEVILLE LES THERMES", + "nomCommune": "AMNEVILLE" }, { - "codePostal": "32400", - "codeCommune": "32424", - "libelleAcheminement": "SEGOS", - "nomCommune": "SEGOS" + "codePostal": "64270", + "codeCommune": "64499", + "libelleAcheminement": "SALIES DE BEARN", + "nomCommune": "SALIES DE BEARN" }, { - "codePostal": "02360", - "codeCommune": "02126", - "libelleAcheminement": "BRUNEHAMEL", - "nomCommune": "BRUNEHAMEL" + "codePostal": "11230", + "codeCommune": "11100", + "libelleAcheminement": "CORBIERES", + "nomCommune": "CORBIERES" }, { - "codePostal": "61250", - "codeCommune": "61143", - "libelleAcheminement": "DAMIGNY", - "nomCommune": "DAMIGNY" + "codePostal": "64470", + "codeCommune": "64222", + "libelleAcheminement": "ETCHEBAR", + "nomCommune": "ETCHEBAR" }, { - "codePostal": "39570", - "codeCommune": "39306", - "libelleAcheminement": "MACORNAY", - "nomCommune": "MACORNAY" + "codePostal": "54620", + "codeCommune": "54282", + "libelleAcheminement": "JOPPECOURT", + "nomCommune": "JOPPECOURT" }, { - "codePostal": "32260", - "codeCommune": "32426", - "libelleAcheminement": "SEISSAN", - "nomCommune": "SEISSAN" + "codePostal": "57480", + "codeCommune": "57026", + "libelleAcheminement": "APACH", + "nomCommune": "APACH" }, { - "codePostal": "02860", - "codeCommune": "02128", - "libelleAcheminement": "BRUYERES ET MONTBERAULT", - "nomCommune": "BRUYERES ET MONTBERAULT" + "codePostal": "64300", + "codeCommune": "64500", + "libelleAcheminement": "SALLES MONGISCARD", + "nomCommune": "SALLES MONGISCARD" }, { - "codePostal": "61700", - "codeCommune": "61145", - "libelleAcheminement": "DOMFRONT EN POIRAIE", - "nomCommune": "DOMFRONT EN POIRAIE" + "codePostal": "11250", + "codeCommune": "11102", + "libelleAcheminement": "COUFFOULENS", + "nomCommune": "COUFFOULENS" }, { - "codePostal": "39270", - "codeCommune": "39314", - "libelleAcheminement": "MARNEZIA", - "nomCommune": "MARNEZIA" + "codePostal": "64110", + "codeCommune": "64237", + "libelleAcheminement": "GELOS", + "nomCommune": "GELOS" }, { - "codePostal": "32160", - "codeCommune": "32440", - "libelleAcheminement": "TASQUE", - "nomCommune": "TASQUE" + "codePostal": "54800", + "codeCommune": "54283", + "libelleAcheminement": "JOUAVILLE", + "nomCommune": "JOUAVILLE" }, { - "codePostal": "02220", - "codeCommune": "02129", - "libelleAcheminement": "BRUYS", - "nomCommune": "BRUYS" + "codePostal": "57130", + "codeCommune": "57032", + "libelleAcheminement": "ARS SUR MOSELLE", + "nomCommune": "ARS SUR MOSELLE" }, { - "codePostal": "61370", - "codeCommune": "61150", - "libelleAcheminement": "ECHAUFFOUR", - "nomCommune": "ECHAUFFOUR" + "codePostal": "64310", + "codeCommune": "64504", + "libelleAcheminement": "SARE", + "nomCommune": "SARE" }, { - "codePostal": "39130", - "codeCommune": "39322", - "libelleAcheminement": "MENETRUX EN JOUX", - "nomCommune": "MENETRUX EN JOUX" + "codePostal": "11110", + "codeCommune": "11106", + "libelleAcheminement": "COURSAN", + "nomCommune": "COURSAN" }, { - "codePostal": "32700", - "codeCommune": "32442", - "libelleAcheminement": "TERRAUBE", - "nomCommune": "TERRAUBE" + "codePostal": "64240", + "codeCommune": "64256", + "libelleAcheminement": "HASPARREN", + "nomCommune": "HASPARREN" }, { - "codePostal": "02880", - "codeCommune": "02131", - "libelleAcheminement": "BUCY LE LONG", - "nomCommune": "BUCY LE LONG" + "codePostal": "54490", + "codeCommune": "54284", + "libelleAcheminement": "JOUDREVILLE", + "nomCommune": "JOUDREVILLE" }, { - "codePostal": "61150", - "codeCommune": "61153", - "libelleAcheminement": "ECOUCHE LES VALLEES", - "nomCommune": "ECOUCHE LES VALLEES" + "codePostal": "57170", + "codeCommune": "57036", + "libelleAcheminement": "ATTILLONCOURT", + "nomCommune": "ATTILLONCOURT" }, { - "codePostal": "39270", - "codeCommune": "39324", - "libelleAcheminement": "MERONA", - "nomCommune": "MERONA" + "codePostal": "64400", + "codeCommune": "64508", + "libelleAcheminement": "SAUCEDE", + "nomCommune": "SAUCEDE" }, { - "codePostal": "32160", - "codeCommune": "32445", - "libelleAcheminement": "TIESTE URAGNOUX", - "nomCommune": "TIESTE URAGNOUX" + "codePostal": "11230", + "codeCommune": "11107", + "libelleAcheminement": "COURTAULY", + "nomCommune": "COURTAULY" }, { - "codePostal": "02350", - "codeCommune": "02133", - "libelleAcheminement": "BUCY LES PIERREPONT", - "nomCommune": "BUCY LES PIERREPONT" + "codePostal": "64800", + "codeCommune": "64257", + "libelleAcheminement": "HAUT DE BOSDARROS", + "nomCommune": "HAUT DE BOSDARROS" }, { - "codePostal": "61200", - "codeCommune": "61153", - "libelleAcheminement": "ECOUCHE LES VALLEES", - "nomCommune": "ECOUCHE LES VALLEES" + "codePostal": "54800", + "codeCommune": "54286", + "libelleAcheminement": "LABRY", + "nomCommune": "LABRY" }, { - "codePostal": "39250", - "codeCommune": "39329", - "libelleAcheminement": "MIEGES", - "nomCommune": "MIEGES" + "codePostal": "57590", + "codeCommune": "57040", + "libelleAcheminement": "AULNOIS SUR SEILLE", + "nomCommune": "AULNOIS SUR SEILLE" }, { - "codePostal": "32430", - "codeCommune": "32448", - "libelleAcheminement": "TOUGET", - "nomCommune": "TOUGET" + "codePostal": "64470", + "codeCommune": "64509", + "libelleAcheminement": "SAUGUIS ST ETIENNE", + "nomCommune": "SAUGUIS ST ETIENNE" }, { - "codePostal": "02300", - "codeCommune": "02140", - "libelleAcheminement": "CAMELIN", - "nomCommune": "CAMELIN" + "codePostal": "11220", + "codeCommune": "11110", + "libelleAcheminement": "COUSTOUGE", + "nomCommune": "COUSTOUGE" }, { - "codePostal": "61600", - "codeCommune": "61158", - "libelleAcheminement": "FAVEROLLES", - "nomCommune": "FAVEROLLES" + "codePostal": "64680", + "codeCommune": "64261", + "libelleAcheminement": "HERRERE", + "nomCommune": "HERRERE" }, { - "codePostal": "39250", - "codeCommune": "39329", - "libelleAcheminement": "MIEGES", - "nomCommune": "MIEGES" + "codePostal": "54120", + "codeCommune": "54287", + "libelleAcheminement": "LACHAPELLE", + "nomCommune": "LACHAPELLE" }, { - "codePostal": "32400", - "codeCommune": "32463", - "libelleAcheminement": "VIELLA", - "nomCommune": "VIELLA" + "codePostal": "57300", + "codeCommune": "57043", + "libelleAcheminement": "AY SUR MOSELLE", + "nomCommune": "AY SUR MOSELLE" }, { - "codePostal": "02420", - "codeCommune": "02143", - "libelleAcheminement": "LE CATELET", - "nomCommune": "LE CATELET" + "codePostal": "64160", + "codeCommune": "64515", + "libelleAcheminement": "SEDZE MAUBECQ", + "nomCommune": "SEDZE MAUBECQ" }, { - "codePostal": "61380", - "codeCommune": "61162", - "libelleAcheminement": "LA FERRIERE AU DOYEN", - "nomCommune": "LA FERRIERE AU DOYEN" + "codePostal": "11200", + "codeCommune": "11111", + "libelleAcheminement": "CRUSCADES", + "nomCommune": "CRUSCADES" }, { - "codePostal": "39250", - "codeCommune": "39331", - "libelleAcheminement": "MIGNOVILLARD", - "nomCommune": "MIGNOVILLARD" + "codePostal": "64130", + "codeCommune": "64268", + "libelleAcheminement": "IDAUX MENDY", + "nomCommune": "IDAUX MENDY" }, { - "codePostal": "32730", - "codeCommune": "32464", - "libelleAcheminement": "VILLECOMTAL SUR ARROS", - "nomCommune": "VILLECOMTAL SUR ARROS" + "codePostal": "54115", + "codeCommune": "54291", + "libelleAcheminement": "LALOEUF", + "nomCommune": "LALOEUF" }, { - "codePostal": "02370", - "codeCommune": "02148", - "libelleAcheminement": "CELLES SUR AISNE", - "nomCommune": "CELLES SUR AISNE" + "codePostal": "57590", + "codeCommune": "57045", + "libelleAcheminement": "BACOURT", + "nomCommune": "BACOURT" }, { - "codePostal": "61450", - "codeCommune": "61163", - "libelleAcheminement": "LA FERRIERE AUX ETANGS", - "nomCommune": "LA FERRIERE AUX ETANGS" + "codePostal": "64170", + "codeCommune": "64521", + "libelleAcheminement": "SERRES STE MARIE", + "nomCommune": "SERRES STE MARIE" }, { - "codePostal": "39290", - "codeCommune": "39335", - "libelleAcheminement": "MOISSEY", - "nomCommune": "MOISSEY" + "codePostal": "11190", + "codeCommune": "11112", + "libelleAcheminement": "CUBIERES SUR CINOBLE", + "nomCommune": "CUBIERES SUR CINOBLE" }, { - "codePostal": "32200", - "codeCommune": "32467", - "libelleAcheminement": "ST CAPRAIS", - "nomCommune": "ST CAPRAIS" + "codePostal": "64250", + "codeCommune": "64279", + "libelleAcheminement": "ITXASSOU", + "nomCommune": "ITXASSOU" }, { - "codePostal": "02320", - "codeCommune": "02153", - "libelleAcheminement": "CESSIERES SUZY", - "nomCommune": "CESSIERES SUZY" + "codePostal": "54610", + "codeCommune": "54313", + "libelleAcheminement": "LETRICOURT", + "nomCommune": "LETRICOURT" }, { - "codePostal": "61550", - "codeCommune": "61167", - "libelleAcheminement": "LA FERTE EN OUCHE", - "nomCommune": "LA FERTE EN OUCHE" + "codePostal": "57050", + "codeCommune": "57049", + "libelleAcheminement": "LE BAN ST MARTIN", + "nomCommune": "LE BAN ST MARTIN" }, { - "codePostal": "39600", - "codeCommune": "39337", - "libelleAcheminement": "MOLAMBOZ", - "nomCommune": "MOLAMBOZ" + "codePostal": "64190", + "codeCommune": "64530", + "libelleAcheminement": "SUSMIOU", + "nomCommune": "SUSMIOU" }, { - "codePostal": "32140", - "codeCommune": "32468", - "libelleAcheminement": "AUSSOS", - "nomCommune": "AUSSOS" + "codePostal": "11350", + "codeCommune": "11113", + "libelleAcheminement": "CUCUGNAN", + "nomCommune": "CUCUGNAN" }, { - "codePostal": "02270", - "codeCommune": "02156", - "libelleAcheminement": "CHALANDRY", - "nomCommune": "CHALANDRY" + "codePostal": "64190", + "codeCommune": "64281", + "libelleAcheminement": "JASSES", + "nomCommune": "JASSES" }, { - "codePostal": "61100", - "codeCommune": "61169", - "libelleAcheminement": "FLERS", - "nomCommune": "FLERS" + "codePostal": "54470", + "codeCommune": "54317", + "libelleAcheminement": "LIRONVILLE", + "nomCommune": "LIRONVILLE" }, { - "codePostal": "39380", - "codeCommune": "39350", - "libelleAcheminement": "MONTBARREY", - "nomCommune": "MONTBARREY" + "codePostal": "57830", + "codeCommune": "57050", + "libelleAcheminement": "BARCHAIN", + "nomCommune": "BARCHAIN" }, { - "codePostal": "33810", - "codeCommune": "33004", - "libelleAcheminement": "AMBES", - "nomCommune": "AMBES" + "codePostal": "64190", + "codeCommune": "64531", + "libelleAcheminement": "TABAILLE USQUAIN", + "nomCommune": "TABAILLE USQUAIN" }, { - "codePostal": "02240", - "codeCommune": "02170", - "libelleAcheminement": "CHATILLON SUR OISE", - "nomCommune": "CHATILLON SUR OISE" + "codePostal": "11330", + "codeCommune": "11118", + "libelleAcheminement": "DERNACUEILLETTE", + "nomCommune": "DERNACUEILLETTE" }, { - "codePostal": "61200", - "codeCommune": "61170", - "libelleAcheminement": "FLEURE", - "nomCommune": "FLEURE" + "codePostal": "64120", + "codeCommune": "64285", + "libelleAcheminement": "JUXUE", + "nomCommune": "JUXUE" }, { - "codePostal": "39260", - "codeCommune": "39351", - "libelleAcheminement": "MONTCUSEL", - "nomCommune": "MONTCUSEL" + "codePostal": "54300", + "codeCommune": "54329", + "libelleAcheminement": "LUNEVILLE", + "nomCommune": "LUNEVILLE" }, { - "codePostal": "33640", - "codeCommune": "33007", - "libelleAcheminement": "ARBANATS", - "nomCommune": "ARBANATS" + "codePostal": "57450", + "codeCommune": "57052", + "libelleAcheminement": "BARST", + "nomCommune": "BARST" }, { - "codePostal": "02300", - "codeCommune": "02173", - "libelleAcheminement": "CHAUNY", - "nomCommune": "CHAUNY" + "codePostal": "64240", + "codeCommune": "64546", + "libelleAcheminement": "URT", + "nomCommune": "URT" }, { - "codePostal": "61120", - "codeCommune": "61180", - "libelleAcheminement": "FRESNAY LE SAMSON", - "nomCommune": "FRESNAY LE SAMSON" + "codePostal": "11200", + "codeCommune": "11126", + "libelleAcheminement": "ESCALES", + "nomCommune": "ESCALES" }, { - "codePostal": "39800", - "codeCommune": "39354", - "libelleAcheminement": "MONTHOLIER", - "nomCommune": "MONTHOLIER" + "codePostal": "64300", + "codeCommune": "64286", + "libelleAcheminement": "LAA MONDRANS", + "nomCommune": "LAA MONDRANS" }, { - "codePostal": "33760", - "codeCommune": "33008", - "libelleAcheminement": "PORTE DE BENAUGE", - "nomCommune": "PORTE DE BENAUGE" + "codePostal": "54210", + "codeCommune": "54330", + "libelleAcheminement": "LUPCOURT", + "nomCommune": "LUPCOURT" }, { - "codePostal": "02220", - "codeCommune": "02179", - "libelleAcheminement": "CHERY CHARTREUVE", - "nomCommune": "CHERY CHARTREUVE" + "codePostal": "57530", + "codeCommune": "57055", + "libelleAcheminement": "BAZONCOURT", + "nomCommune": "BAZONCOURT" }, { - "codePostal": "61230", - "codeCommune": "61181", - "libelleAcheminement": "GACE", - "nomCommune": "GACE" + "codePostal": "64400", + "codeCommune": "64551", + "libelleAcheminement": "VERDETS", + "nomCommune": "VERDETS" }, { - "codePostal": "39600", - "codeCommune": "39355", - "libelleAcheminement": "MONTIGNY LES ARSURES", - "nomCommune": "MONTIGNY LES ARSURES" + "codePostal": "11240", + "codeCommune": "11128", + "libelleAcheminement": "ESCUEILLENS ET ST JUST", + "nomCommune": "ESCUEILLENS ET ST JUST DE BELENGARD" }, { - "codePostal": "33760", - "codeCommune": "33008", - "libelleAcheminement": "PORTE DE BENAUGE", - "nomCommune": "PORTE DE BENAUGE" + "codePostal": "64270", + "codeCommune": "64291", + "libelleAcheminement": "LABASTIDE VILLEFRANCHE", + "nomCommune": "LABASTIDE VILLEFRANCHE" }, { - "codePostal": "02130", - "codeCommune": "02193", - "libelleAcheminement": "CIERGES", - "nomCommune": "CIERGES" + "codePostal": "54290", + "codeCommune": "54344", + "libelleAcheminement": "MANGONVILLE", + "nomCommune": "MANGONVILLE" }, { - "codePostal": "61270", - "codeCommune": "61187", - "libelleAcheminement": "LES GENETTES", - "nomCommune": "LES GENETTES" + "codePostal": "57830", + "codeCommune": "57056", + "libelleAcheminement": "BEBING", + "nomCommune": "BEBING" }, { - "codePostal": "39160", - "codeCommune": "39378", - "libelleAcheminement": "LES TROIS CHATEAUX", - "nomCommune": "LES TROIS CHATEAUX" + "codePostal": "64150", + "codeCommune": "64556", + "libelleAcheminement": "VIELLESEGURE", + "nomCommune": "VIELLESEGURE" }, { - "codePostal": "33740", - "codeCommune": "33011", - "libelleAcheminement": "ARES", - "nomCommune": "ARES" + "codePostal": "11260", + "codeCommune": "11129", + "libelleAcheminement": "ESPERAZA", + "nomCommune": "ESPERAZA" }, { - "codePostal": "02880", - "codeCommune": "02198", - "libelleAcheminement": "CLAMECY", - "nomCommune": "CLAMECY" + "codePostal": "64300", + "codeCommune": "64296", + "libelleAcheminement": "LACADEE", + "nomCommune": "LACADEE" }, { - "codePostal": "61600", - "codeCommune": "61195", - "libelleAcheminement": "LE GRAIS", - "nomCommune": "LE GRAIS" + "codePostal": "54385", + "codeCommune": "54346", + "libelleAcheminement": "MANONCOURT EN WOEVRE", + "nomCommune": "MANONCOURT EN WOEVRE" }, { - "codePostal": "39160", - "codeCommune": "39378", - "libelleAcheminement": "LES TROIS CHATEAUX", - "nomCommune": "LES TROIS CHATEAUX" + "codePostal": "57800", + "codeCommune": "57061", + "libelleAcheminement": "BENING LES ST AVOLD", + "nomCommune": "BENING LES ST AVOLD" }, { - "codePostal": "33570", - "codeCommune": "33014", - "libelleAcheminement": "LES ARTIGUES DE LUSSAC", - "nomCommune": "LES ARTIGUES DE LUSSAC" + "codePostal": "65690", + "codeCommune": "65010", + "libelleAcheminement": "ANGOS", + "nomCommune": "ANGOS" }, { - "codePostal": "02330", - "codeCommune": "02209", - "libelleAcheminement": "CONDE EN BRIE", - "nomCommune": "CONDE EN BRIE" + "codePostal": "11260", + "codeCommune": "11131", + "libelleAcheminement": "VAL DU FABY", + "nomCommune": "VAL DU FABY" }, { - "codePostal": "61360", - "codeCommune": "61196", - "libelleAcheminement": "BELFORET EN PERCHE", - "nomCommune": "BELFORET EN PERCHE" + "codePostal": "64360", + "codeCommune": "64299", + "libelleAcheminement": "LACOMMANDE", + "nomCommune": "LACOMMANDE" }, { - "codePostal": "39120", - "codeCommune": "39385", - "libelleAcheminement": "NEUBLANS ABERGEMENT", - "nomCommune": "NEUBLANS ABERGEMENT" + "codePostal": "54385", + "codeCommune": "54348", + "libelleAcheminement": "MANONVILLE", + "nomCommune": "MANONVILLE" }, { - "codePostal": "33240", - "codeCommune": "33018", - "libelleAcheminement": "VAL DE VIRVEE", - "nomCommune": "VAL DE VIRVEE" + "codePostal": "57550", + "codeCommune": "57069", + "libelleAcheminement": "BERVILLER EN MOSELLE", + "nomCommune": "BERVILLER EN MOSELLE" }, { - "codePostal": "02680", - "codeCommune": "02214", - "libelleAcheminement": "CONTESCOURT", - "nomCommune": "CONTESCOURT" + "codePostal": "65560", + "codeCommune": "65018", + "libelleAcheminement": "ARBEOST", + "nomCommune": "ARBEOST" }, { - "codePostal": "61250", - "codeCommune": "61202", - "libelleAcheminement": "HAUTERIVE", - "nomCommune": "HAUTERIVE" + "codePostal": "11200", + "codeCommune": "11132", + "libelleAcheminement": "FABREZAN", + "nomCommune": "FABREZAN" }, { - "codePostal": "39800", - "codeCommune": "39386", - "libelleAcheminement": "NEUVILLEY", - "nomCommune": "NEUVILLEY" + "codePostal": "64270", + "codeCommune": "64305", + "libelleAcheminement": "LAHONTAN", + "nomCommune": "LAHONTAN" }, { - "codePostal": "33790", - "codeCommune": "33020", - "libelleAcheminement": "AURIOLLES", - "nomCommune": "AURIOLLES" + "codePostal": "54300", + "codeCommune": "54349", + "libelleAcheminement": "MANONVILLER", + "nomCommune": "MANONVILLER" }, { - "codePostal": "02810", - "codeCommune": "02225", - "libelleAcheminement": "COURCHAMPS", - "nomCommune": "COURCHAMPS" + "codePostal": "57220", + "codeCommune": "57070", + "libelleAcheminement": "BETTANGE", + "nomCommune": "BETTANGE" }, { - "codePostal": "61250", - "codeCommune": "61203", - "libelleAcheminement": "HELOUP", - "nomCommune": "HELOUP" + "codePostal": "65400", + "codeCommune": "65021", + "libelleAcheminement": "ARCIZANS AVANT", + "nomCommune": "ARCIZANS AVANT" }, { - "codePostal": "39300", - "codeCommune": "39389", - "libelleAcheminement": "NEY", - "nomCommune": "NEY" + "codePostal": "11410", + "codeCommune": "11134", + "libelleAcheminement": "FAJAC LA RELENQUE", + "nomCommune": "FAJAC LA RELENQUE" }, { - "codePostal": "33640", - "codeCommune": "33023", - "libelleAcheminement": "AYGUEMORTE LES GRAVES", - "nomCommune": "AYGUEMORTE LES GRAVES" + "codePostal": "64150", + "codeCommune": "64306", + "libelleAcheminement": "LAHOURCADE", + "nomCommune": "LAHOURCADE" }, { - "codePostal": "02200", - "codeCommune": "02226", - "libelleAcheminement": "COURMELLES", - "nomCommune": "COURMELLES" + "codePostal": "54230", + "codeCommune": "54352", + "libelleAcheminement": "MARON", + "nomCommune": "MARON" }, { - "codePostal": "61330", - "codeCommune": "61211", - "libelleAcheminement": "JUVIGNY VAL D ANDAINE", - "nomCommune": "JUVIGNY VAL D ANDAINE" + "codePostal": "57410", + "codeCommune": "57074", + "libelleAcheminement": "BETTVILLER", + "nomCommune": "BETTVILLER" }, { - "codePostal": "39250", - "codeCommune": "39391", - "libelleAcheminement": "NOZEROY", - "nomCommune": "NOZEROY" + "codePostal": "65400", + "codeCommune": "65022", + "libelleAcheminement": "ARCIZANS DESSUS", + "nomCommune": "ARCIZANS DESSUS" }, { - "codePostal": "33190", - "codeCommune": "33027", - "libelleAcheminement": "BARIE", - "nomCommune": "BARIE" + "codePostal": "11330", + "codeCommune": "11137", + "libelleAcheminement": "FELINES TERMENES", + "nomCommune": "FELINES TERMENES" }, { - "codePostal": "02850", - "codeCommune": "02228", - "libelleAcheminement": "COURTEMONT VARENNES", - "nomCommune": "COURTEMONT VARENNES" + "codePostal": "64570", + "codeCommune": "64310", + "libelleAcheminement": "LANNE EN BARETOUS", + "nomCommune": "LANNE EN BARETOUS" }, { - "codePostal": "61330", - "codeCommune": "61211", - "libelleAcheminement": "JUVIGNY VAL D ANDAINE", - "nomCommune": "JUVIGNY VAL D ANDAINE" + "codePostal": "54800", + "codeCommune": "54353", + "libelleAcheminement": "MARS LA TOUR", + "nomCommune": "MARS LA TOUR" }, { - "codePostal": "39700", - "codeCommune": "39396", - "libelleAcheminement": "ORCHAMPS", - "nomCommune": "ORCHAMPS" + "codePostal": "57580", + "codeCommune": "57075", + "libelleAcheminement": "BEUX", + "nomCommune": "BEUX" }, { - "codePostal": "33750", - "codeCommune": "33028", - "libelleAcheminement": "BARON", - "nomCommune": "BARON" + "codePostal": "65230", + "codeCommune": "65026", + "libelleAcheminement": "ARIES ESPENAN", + "nomCommune": "ARIES ESPENAN" }, { - "codePostal": "02130", - "codeCommune": "02233", - "libelleAcheminement": "CRAMAILLE", - "nomCommune": "CRAMAILLE" + "codePostal": "11510", + "codeCommune": "11144", + "libelleAcheminement": "FITOU", + "nomCommune": "FITOU" }, { - "codePostal": "61300", - "codeCommune": "61214", - "libelleAcheminement": "L AIGLE", - "nomCommune": "L AIGLE" + "codePostal": "64450", + "codeCommune": "64321", + "libelleAcheminement": "LASCLAVERIES", + "nomCommune": "LASCLAVERIES" }, { - "codePostal": "39270", - "codeCommune": "39397", - "libelleAcheminement": "ORGELET", - "nomCommune": "ORGELET" + "codePostal": "54300", + "codeCommune": "54373", + "libelleAcheminement": "MONCEL LES LUNEVILLE", + "nomCommune": "MONCEL LES LUNEVILLE" }, { - "codePostal": "33190", - "codeCommune": "33031", - "libelleAcheminement": "BASSANNE", - "nomCommune": "BASSANNE" + "codePostal": "57630", + "codeCommune": "57077", + "libelleAcheminement": "BEZANGE LA PETITE", + "nomCommune": "BEZANGE LA PETITE" }, { - "codePostal": "02270", - "codeCommune": "02237", - "libelleAcheminement": "CRECY SUR SERRE", - "nomCommune": "CRECY SUR SERRE" + "codePostal": "65130", + "codeCommune": "65037", + "libelleAcheminement": "ARTIGUEMY", + "nomCommune": "ARTIGUEMY" }, { - "codePostal": "61240", - "codeCommune": "61225", - "libelleAcheminement": "LIGNERES", - "nomCommune": "LIGNERES" + "codePostal": "11700", + "codeCommune": "11148", + "libelleAcheminement": "FONTCOUVERTE", + "nomCommune": "FONTCOUVERTE" }, { - "codePostal": "39270", - "codeCommune": "39397", - "libelleAcheminement": "ORGELET", - "nomCommune": "ORGELET" + "codePostal": "64220", + "codeCommune": "64322", + "libelleAcheminement": "LASSE", + "nomCommune": "LASSE" }, { - "codePostal": "33530", - "codeCommune": "33032", - "libelleAcheminement": "BASSENS", - "nomCommune": "BASSENS" + "codePostal": "54450", + "codeCommune": "54381", + "libelleAcheminement": "MONTREUX", + "nomCommune": "MONTREUX" }, { - "codePostal": "02870", - "codeCommune": "02238", - "libelleAcheminement": "CREPY", - "nomCommune": "CREPY" + "codePostal": "57170", + "codeCommune": "57084", + "libelleAcheminement": "BIONCOURT", + "nomCommune": "BIONCOURT" }, { - "codePostal": "61220", - "codeCommune": "61227", - "libelleAcheminement": "LIGNOU", - "nomCommune": "LIGNOU" + "codePostal": "65100", + "codeCommune": "65040", + "libelleAcheminement": "ASPIN EN LAVEDAN", + "nomCommune": "ASPIN EN LAVEDAN" }, { - "codePostal": "39350", - "codeCommune": "39398", - "libelleAcheminement": "OUGNEY", - "nomCommune": "OUGNEY" + "codePostal": "11800", + "codeCommune": "11151", + "libelleAcheminement": "FONTIES D AUDE", + "nomCommune": "FONTIES D AUDE" }, { - "codePostal": "33230", - "codeCommune": "33034", - "libelleAcheminement": "BAYAS", - "nomCommune": "BAYAS" + "codePostal": "64320", + "codeCommune": "64329", + "libelleAcheminement": "LEE", + "nomCommune": "LEE" }, { - "codePostal": "02650", - "codeCommune": "02239", - "libelleAcheminement": "CREZANCY", - "nomCommune": "CREZANCY" + "codePostal": "54360", + "codeCommune": "54383", + "libelleAcheminement": "MONT SUR MEURTHE", + "nomCommune": "MONT SUR MEURTHE" }, { - "codePostal": "61290", - "codeCommune": "61230", - "libelleAcheminement": "LONGNY LES VILLAGES", - "nomCommune": "LONGNY LES VILLAGES" + "codePostal": "57220", + "codeCommune": "57087", + "libelleAcheminement": "BISTEN EN LORRAINE", + "nomCommune": "BISTEN EN LORRAINE" }, { - "codePostal": "39350", - "codeCommune": "39402", - "libelleAcheminement": "PAGNEY", - "nomCommune": "PAGNEY" + "codePostal": "65130", + "codeCommune": "65041", + "libelleAcheminement": "ASQUE", + "nomCommune": "ASQUE" }, { - "codePostal": "33710", - "codeCommune": "33035", - "libelleAcheminement": "BAYON SUR GIRONDE", - "nomCommune": "BAYON SUR GIRONDE" + "codePostal": "11360", + "codeCommune": "11152", + "libelleAcheminement": "FONTJONCOUSE", + "nomCommune": "FONTJONCOUSE" }, { - "codePostal": "02800", - "codeCommune": "02260", - "libelleAcheminement": "DANIZY", - "nomCommune": "DANIZY" + "codePostal": "64350", + "codeCommune": "64337", + "libelleAcheminement": "LESPIELLE", + "nomCommune": "LESPIELLE" }, { - "codePostal": "61110", - "codeCommune": "61241", - "libelleAcheminement": "LA MADELEINE BOUVET", - "nomCommune": "LA MADELEINE BOUVET" + "codePostal": "54370", + "codeCommune": "54388", + "libelleAcheminement": "MOUACOURT", + "nomCommune": "MOUACOURT" }, { - "codePostal": "39120", - "codeCommune": "39412", - "libelleAcheminement": "PESEUX", - "nomCommune": "PESEUX" + "codePostal": "57200", + "codeCommune": "57091", + "libelleAcheminement": "BLIESBRUCK", + "nomCommune": "BLIESBRUCK" }, { - "codePostal": "33640", - "codeCommune": "33037", - "libelleAcheminement": "BEAUTIRAN", - "nomCommune": "BEAUTIRAN" + "codePostal": "65400", + "codeCommune": "65045", + "libelleAcheminement": "AUCUN", + "nomCommune": "AUCUN" }, { - "codePostal": "02350", - "codeCommune": "02274", - "libelleAcheminement": "EBOULEAU", - "nomCommune": "EBOULEAU" + "codePostal": "11270", + "codeCommune": "11153", + "libelleAcheminement": "LA FORCE", + "nomCommune": "LA FORCE" }, { - "codePostal": "61350", - "codeCommune": "61248", - "libelleAcheminement": "MANTILLY", - "nomCommune": "MANTILLY" + "codePostal": "64530", + "codeCommune": "64344", + "libelleAcheminement": "LIVRON", + "nomCommune": "LIVRON" }, { - "codePostal": "39370", - "codeCommune": "39413", - "libelleAcheminement": "LA PESSE", - "nomCommune": "LA PESSE" + "codePostal": "54113", + "codeCommune": "54392", + "libelleAcheminement": "MOUTROT", + "nomCommune": "MOUTROT" }, { - "codePostal": "33410", - "codeCommune": "33040", - "libelleAcheminement": "BEGUEY", - "nomCommune": "BEGUEY" + "codePostal": "57460", + "codeCommune": "57101", + "libelleAcheminement": "BOUSBACH", + "nomCommune": "BOUSBACH" }, { - "codePostal": "02260", - "codeCommune": "02276", - "libelleAcheminement": "ENGLANCOURT", - "nomCommune": "ENGLANCOURT" + "codePostal": "65400", + "codeCommune": "65056", + "libelleAcheminement": "AYZAC OST", + "nomCommune": "AYZAC OST" }, { - "codePostal": "61400", - "codeCommune": "61255", - "libelleAcheminement": "MAUVES SUR HUISNE", - "nomCommune": "MAUVES SUR HUISNE" + "codePostal": "11190", + "codeCommune": "11155", + "libelleAcheminement": "FOURTOU", + "nomCommune": "FOURTOU" }, { - "codePostal": "39300", - "codeCommune": "39419", - "libelleAcheminement": "PILLEMOINE", - "nomCommune": "PILLEMOINE" + "codePostal": "64120", + "codeCommune": "64345", + "libelleAcheminement": "LOHITZUN OYHERCQ", + "nomCommune": "LOHITZUN OYHERCQ" }, { - "codePostal": "33760", - "codeCommune": "33043", - "libelleAcheminement": "BELLEBAT", - "nomCommune": "BELLEBAT" + "codePostal": "54290", + "codeCommune": "54399", + "libelleAcheminement": "NEUVILLER SUR MOSELLE", + "nomCommune": "NEUVILLER SUR MOSELLE" }, { - "codePostal": "02290", - "codeCommune": "02277", - "libelleAcheminement": "EPAGNY", - "nomCommune": "EPAGNY" + "codePostal": "57720", + "codeCommune": "57108", + "libelleAcheminement": "BREIDENBACH", + "nomCommune": "BREIDENBACH" }, { - "codePostal": "61170", - "codeCommune": "61266", - "libelleAcheminement": "LE MENIL GUYON", - "nomCommune": "LE MENIL GUYON" + "codePostal": "65200", + "codeCommune": "65059", + "libelleAcheminement": "BAGNERES DE BIGORRE", + "nomCommune": "BAGNERES DE BIGORRE" }, { - "codePostal": "39210", - "codeCommune": "39421", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "11240", + "codeCommune": "11167", + "libelleAcheminement": "GRAMAZIE", + "nomCommune": "GRAMAZIE" }, { - "codePostal": "33390", - "codeCommune": "33047", - "libelleAcheminement": "BERSON", - "nomCommune": "BERSON" + "codePostal": "64160", + "codeCommune": "64346", + "libelleAcheminement": "LOMBIA", + "nomCommune": "LOMBIA" }, { - "codePostal": "02500", - "codeCommune": "02278", - "libelleAcheminement": "EPARCY", - "nomCommune": "EPARCY" + "codePostal": "54610", + "codeCommune": "54400", + "libelleAcheminement": "NOMENY", + "nomCommune": "NOMENY" }, { - "codePostal": "61430", - "codeCommune": "61269", - "libelleAcheminement": "MENIL HUBERT SUR ORNE", - "nomCommune": "MENIL HUBERT SUR ORNE" + "codePostal": "57565", + "codeCommune": "57113", + "libelleAcheminement": "BROUDERDORFF", + "nomCommune": "BROUDERDORFF" }, { - "codePostal": "39400", - "codeCommune": "39441", - "libelleAcheminement": "PREMANON", - "nomCommune": "PREMANON" + "codePostal": "65230", + "codeCommune": "65088", + "libelleAcheminement": "BETBEZE", + "nomCommune": "BETBEZE" }, { - "codePostal": "33430", - "codeCommune": "33053", - "libelleAcheminement": "BIRAC", - "nomCommune": "BIRAC" + "codePostal": "11500", + "codeCommune": "11168", + "libelleAcheminement": "GRANES", + "nomCommune": "GRANES" }, { - "codePostal": "02690", - "codeCommune": "02287", - "libelleAcheminement": "ESSIGNY LE GRAND", - "nomCommune": "ESSIGNY LE GRAND" + "codePostal": "64410", + "codeCommune": "64347", + "libelleAcheminement": "LONCON", + "nomCommune": "LONCON" }, { - "codePostal": "61240", - "codeCommune": "61275", - "libelleAcheminement": "LE MERLERAULT", - "nomCommune": "LE MERLERAULT" + "codePostal": "54740", + "codeCommune": "54411", + "libelleAcheminement": "ORMES ET VILLE", + "nomCommune": "ORMES ET VILLE" }, { - "codePostal": "39570", - "codeCommune": "39445", - "libelleAcheminement": "PUBLY", - "nomCommune": "PUBLY" + "codePostal": "57420", + "codeCommune": "57116", + "libelleAcheminement": "BUCHY", + "nomCommune": "BUCHY" }, { - "codePostal": "33300", - "codeCommune": "33063", - "libelleAcheminement": "BORDEAUX", - "nomCommune": "BORDEAUX" + "codePostal": "65150", + "codeCommune": "65094", + "libelleAcheminement": "BIZOUS", + "nomCommune": "BIZOUS" }, { - "codePostal": "02400", - "codeCommune": "02292", - "libelleAcheminement": "ETAMPES SUR MARNE", - "nomCommune": "ETAMPES SUR MARNE" + "codePostal": "11430", + "codeCommune": "11170", + "libelleAcheminement": "GRUISSAN", + "nomCommune": "GRUISSAN" }, { - "codePostal": "61800", - "codeCommune": "61281", - "libelleAcheminement": "MONCY", - "nomCommune": "MONCY" + "codePostal": "64120", + "codeCommune": "64362", + "libelleAcheminement": "LUXE SUMBERRAUTE", + "nomCommune": "LUXE SUMBERRAUTE" }, { - "codePostal": "39700", - "codeCommune": "39451", - "libelleAcheminement": "RANCHOT", - "nomCommune": "RANCHOT" + "codePostal": "54200", + "codeCommune": "54414", + "libelleAcheminement": "PAGNEY DERRIERE BARINE", + "nomCommune": "PAGNEY DERRIERE BARINE" }, { - "codePostal": "33800", - "codeCommune": "33063", - "libelleAcheminement": "BORDEAUX", - "nomCommune": "BORDEAUX" + "codePostal": "57170", + "codeCommune": "57120", + "libelleAcheminement": "BURLIONCOURT", + "nomCommune": "BURLIONCOURT" }, { - "codePostal": "02400", - "codeCommune": "02297", - "libelleAcheminement": "ETREPILLY", - "nomCommune": "ETREPILLY" + "codePostal": "65130", + "codeCommune": "65096", + "libelleAcheminement": "BONNEMAZON", + "nomCommune": "BONNEMAZON" }, { - "codePostal": "61360", - "codeCommune": "61286", - "libelleAcheminement": "MONTGAUDRY", - "nomCommune": "MONTGAUDRY" + "codePostal": "11220", + "codeCommune": "11179", + "libelleAcheminement": "LABASTIDE EN VAL", + "nomCommune": "LABASTIDE EN VAL" }, { - "codePostal": "39700", - "codeCommune": "39452", - "libelleAcheminement": "RANS", - "nomCommune": "RANS" + "codePostal": "64260", + "codeCommune": "64363", + "libelleAcheminement": "LYS", + "nomCommune": "LYS" }, { - "codePostal": "33350", - "codeCommune": "33064", - "libelleAcheminement": "BOSSUGAN", - "nomCommune": "BOSSUGAN" + "codePostal": "54480", + "codeCommune": "54421", + "libelleAcheminement": "PETITMONT", + "nomCommune": "PETITMONT" }, { - "codePostal": "02600", - "codeCommune": "02302", - "libelleAcheminement": "FAVEROLLES", - "nomCommune": "FAVEROLLES" + "codePostal": "57170", + "codeCommune": "57126", + "libelleAcheminement": "CHAMBREY", + "nomCommune": "CHAMBREY" }, { - "codePostal": "61500", - "codeCommune": "61294", - "libelleAcheminement": "MORTREE", - "nomCommune": "MORTREE" + "codePostal": "65140", + "codeCommune": "65102", + "libelleAcheminement": "BOUILH DEVANT", + "nomCommune": "BOUILH DEVANT" }, { - "codePostal": "39170", - "codeCommune": "39453", - "libelleAcheminement": "RAVILLOLES", - "nomCommune": "RAVILLOLES" + "codePostal": "11250", + "codeCommune": "11183", + "libelleAcheminement": "LADERN SUR LAUQUET", + "nomCommune": "LADERN SUR LAUQUET" }, { - "codePostal": "33480", - "codeCommune": "33070", - "libelleAcheminement": "BRACH", - "nomCommune": "BRACH" + "codePostal": "64330", + "codeCommune": "64366", + "libelleAcheminement": "MASCARAAS HARON", + "nomCommune": "MASCARAAS HARON" }, { - "codePostal": "02460", - "codeCommune": "02307", - "libelleAcheminement": "LA FERTE MILON", - "nomCommune": "LA FERTE MILON" + "codePostal": "54120", + "codeCommune": "54422", + "libelleAcheminement": "PETTONVILLE", + "nomCommune": "PETTONVILLE" }, { - "codePostal": "61110", - "codeCommune": "61300", - "libelleAcheminement": "MOUTIERS AU PERCHE", - "nomCommune": "MOUTIERS AU PERCHE" + "codePostal": "57580", + "codeCommune": "57127", + "libelleAcheminement": "CHANVILLE", + "nomCommune": "CHANVILLE" }, { - "codePostal": "39200", - "codeCommune": "39460", - "libelleAcheminement": "LA RIXOUSE", - "nomCommune": "LA RIXOUSE" + "codePostal": "65220", + "codeCommune": "65110", + "libelleAcheminement": "BUGARD", + "nomCommune": "BUGARD" }, { - "codePostal": "33650", - "codeCommune": "33077", - "libelleAcheminement": "CABANAC ET VILLAGRAINS", - "nomCommune": "CABANAC ET VILLAGRAINS" + "codePostal": "11330", + "codeCommune": "11186", + "libelleAcheminement": "LAIRIERE", + "nomCommune": "LAIRIERE" }, { - "codePostal": "02450", - "codeCommune": "02308", - "libelleAcheminement": "FESMY LE SART", - "nomCommune": "FESMY LE SART" + "codePostal": "64300", + "codeCommune": "64367", + "libelleAcheminement": "MASLACQ", + "nomCommune": "MASLACQ" }, { - "codePostal": "61340", - "codeCommune": "61309", - "libelleAcheminement": "PERCHE EN NOCE", - "nomCommune": "PERCHE EN NOCE" + "codePostal": "54610", + "codeCommune": "54424", + "libelleAcheminement": "PHLIN", + "nomCommune": "PHLIN" }, { - "codePostal": "39190", - "codeCommune": "39466", - "libelleAcheminement": "ROSAY", - "nomCommune": "ROSAY" + "codePostal": "57170", + "codeCommune": "57132", + "libelleAcheminement": "CHATEAU SALINS", + "nomCommune": "CHATEAU SALINS" }, { - "codePostal": "33420", - "codeCommune": "33078", - "libelleAcheminement": "CABARA", - "nomCommune": "CABARA" + "codePostal": "65400", + "codeCommune": "65112", + "libelleAcheminement": "BUN", + "nomCommune": "BUN" }, { - "codePostal": "02110", - "codeCommune": "02310", - "libelleAcheminement": "FIEULAINE", - "nomCommune": "FIEULAINE" + "codePostal": "11800", + "codeCommune": "11198", + "libelleAcheminement": "LAURE MINERVOIS", + "nomCommune": "LAURE MINERVOIS" }, { - "codePostal": "61230", - "codeCommune": "61317", - "libelleAcheminement": "ORGERES", - "nomCommune": "ORGERES" + "codePostal": "64160", + "codeCommune": "64370", + "libelleAcheminement": "MAUCOR", + "nomCommune": "MAUCOR" }, { - "codePostal": "39190", - "codeCommune": "39467", - "libelleAcheminement": "ROTALIER", - "nomCommune": "ROTALIER" + "codePostal": "54340", + "codeCommune": "54430", + "libelleAcheminement": "POMPEY", + "nomCommune": "POMPEY" }, { - "codePostal": "33140", - "codeCommune": "33080", - "libelleAcheminement": "CADAUJAC", - "nomCommune": "CADAUJAC" + "codePostal": "57245", + "codeCommune": "57140", + "libelleAcheminement": "CHESNY", + "nomCommune": "CHESNY" }, { - "codePostal": "02260", - "codeCommune": "02312", - "libelleAcheminement": "LA FLAMENGRIE", - "nomCommune": "LA FLAMENGRIE" + "codePostal": "65350", + "codeCommune": "65115", + "libelleAcheminement": "CABANAC", + "nomCommune": "CABANAC" }, { - "codePostal": "61400", - "codeCommune": "61322", - "libelleAcheminement": "PARFONDEVAL", - "nomCommune": "PARFONDEVAL" + "codePostal": "11160", + "codeCommune": "11200", + "libelleAcheminement": "LESPINASSIERE", + "nomCommune": "LESPINASSIERE" }, { - "codePostal": "39350", - "codeCommune": "39469", - "libelleAcheminement": "ROUFFANGE", - "nomCommune": "ROUFFANGE" + "codePostal": "64130", + "codeCommune": "64371", + "libelleAcheminement": "MAULEON SOULE", + "nomCommune": "MAULEON LICHARRE" }, { - "codePostal": "33610", - "codeCommune": "33090", - "libelleAcheminement": "CANEJAN", - "nomCommune": "CANEJAN" + "codePostal": "54425", + "codeCommune": "54439", + "libelleAcheminement": "PULNOY", + "nomCommune": "PULNOY" }, { - "codePostal": "02170", - "codeCommune": "02324", - "libelleAcheminement": "FONTENELLE", - "nomCommune": "FONTENELLE" + "codePostal": "57590", + "codeCommune": "57141", + "libelleAcheminement": "CHICOURT", + "nomCommune": "CHICOURT" }, { - "codePostal": "61290", - "codeCommune": "61323", - "libelleAcheminement": "LE PAS ST L HOMER", - "nomCommune": "LE PAS ST L HOMER" + "codePostal": "65240", + "codeCommune": "65116", + "libelleAcheminement": "CADEAC", + "nomCommune": "CADEAC" }, { - "codePostal": "39570", - "codeCommune": "39480", - "libelleAcheminement": "ST DIDIER", - "nomCommune": "ST DIDIER" + "codePostal": "11370", + "codeCommune": "11202", + "libelleAcheminement": "LEUCATE", + "nomCommune": "LEUCATE" }, { - "codePostal": "33390", - "codeCommune": "33101", - "libelleAcheminement": "CARTELEGUE", - "nomCommune": "CARTELEGUE" + "codePostal": "64120", + "codeCommune": "64375", + "libelleAcheminement": "MEHARIN", + "nomCommune": "MEHARIN" }, { - "codePostal": "02870", - "codeCommune": "02329", - "libelleAcheminement": "FOURDRAIN", - "nomCommune": "FOURDRAIN" + "codePostal": "54450", + "codeCommune": "54447", + "libelleAcheminement": "RECLONVILLE", + "nomCommune": "RECLONVILLE" }, { - "codePostal": "61210", - "codeCommune": "61339", - "libelleAcheminement": "PUTANGES LE LAC", - "nomCommune": "PUTANGES LE LAC" + "codePostal": "57530", + "codeCommune": "57145", + "libelleAcheminement": "COINCY", + "nomCommune": "COINCY" }, { - "codePostal": "39230", - "codeCommune": "39486", - "libelleAcheminement": "ST LAMAIN", - "nomCommune": "ST LAMAIN" + "codePostal": "65710", + "codeCommune": "65123", + "libelleAcheminement": "CAMPAN", + "nomCommune": "CAMPAN" }, { - "codePostal": "33190", - "codeCommune": "33102", - "libelleAcheminement": "CASSEUIL", - "nomCommune": "CASSEUIL" + "codePostal": "11190", + "codeCommune": "11209", + "libelleAcheminement": "LUC SUR AUDE", + "nomCommune": "LUC SUR AUDE" }, { - "codePostal": "02130", - "codeCommune": "02332", - "libelleAcheminement": "FRESNES EN TARDENOIS", - "nomCommune": "FRESNES EN TARDENOIS" + "codePostal": "64510", + "codeCommune": "64376", + "libelleAcheminement": "MEILLON", + "nomCommune": "MEILLON" }, { - "codePostal": "61210", - "codeCommune": "61339", - "libelleAcheminement": "PUTANGES LE LAC", - "nomCommune": "PUTANGES LE LAC" + "codePostal": "54300", + "codeCommune": "54449", + "libelleAcheminement": "REHAINVILLER", + "nomCommune": "REHAINVILLER" }, { - "codePostal": "39170", - "codeCommune": "39491", - "libelleAcheminement": "COTEAUX DU LIZON", - "nomCommune": "COTEAUX DU LIZON" + "codePostal": "57220", + "codeCommune": "57150", + "libelleAcheminement": "CONDE NORTHEN", + "nomCommune": "CONDE NORTHEN" }, { - "codePostal": "33640", - "codeCommune": "33109", - "libelleAcheminement": "CASTRES GIRONDE", - "nomCommune": "CASTRES GIRONDE" + "codePostal": "65710", + "codeCommune": "65123", + "libelleAcheminement": "CAMPAN", + "nomCommune": "CAMPAN" }, { - "codePostal": "02380", - "codeCommune": "02333", - "libelleAcheminement": "FRESNES SOUS COUCY", - "nomCommune": "FRESNES SOUS COUCY" + "codePostal": "11330", + "codeCommune": "11213", + "libelleAcheminement": "MAISONS", + "nomCommune": "MAISONS" }, { - "codePostal": "61210", - "codeCommune": "61339", - "libelleAcheminement": "PUTANGES LE LAC", - "nomCommune": "PUTANGES LE LAC" + "codePostal": "64240", + "codeCommune": "64377", + "libelleAcheminement": "MENDIONDE", + "nomCommune": "MENDIONDE" }, { - "codePostal": "39570", - "codeCommune": "39492", - "libelleAcheminement": "ST MAUR", - "nomCommune": "ST MAUR" + "codePostal": "54385", + "codeCommune": "54463", + "libelleAcheminement": "ROSIERES EN HAYE", + "nomCommune": "ROSIERES EN HAYE" }, { - "codePostal": "33490", - "codeCommune": "33111", - "libelleAcheminement": "CAUDROT", - "nomCommune": "CAUDROT" + "codePostal": "57340", + "codeCommune": "57151", + "libelleAcheminement": "CONTHIL", + "nomCommune": "CONTHIL" }, { - "codePostal": "02800", - "codeCommune": "02335", - "libelleAcheminement": "FRESSANCOURT", - "nomCommune": "FRESSANCOURT" + "codePostal": "65170", + "codeCommune": "65124", + "libelleAcheminement": "CAMPARAN", + "nomCommune": "CAMPARAN" }, { - "codePostal": "61110", - "codeCommune": "61345", - "libelleAcheminement": "REMALARD EN PERCHE", - "nomCommune": "REMALARD EN PERCHE" + "codePostal": "11410", + "codeCommune": "11218", + "libelleAcheminement": "MARQUEIN", + "nomCommune": "MARQUEIN" }, { - "codePostal": "39150", - "codeCommune": "39494", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "64220", + "codeCommune": "64379", + "libelleAcheminement": "MENDIVE", + "nomCommune": "MENDIVE" }, { - "codePostal": "33790", - "codeCommune": "33117", - "libelleAcheminement": "CAZAUGITAT", - "nomCommune": "CAZAUGITAT" + "codePostal": "54290", + "codeCommune": "54465", + "libelleAcheminement": "ROVILLE DEVANT BAYON", + "nomCommune": "ROVILLE DEVANT BAYON" }, { - "codePostal": "02700", - "codeCommune": "02336", - "libelleAcheminement": "FRIERES FAILLOUEL", - "nomCommune": "FRIERES FAILLOUEL" + "codePostal": "57260", + "codeCommune": "57161", + "libelleAcheminement": "CUTTING", + "nomCommune": "CUTTING" }, { - "codePostal": "61110", - "codeCommune": "61345", - "libelleAcheminement": "REMALARD EN PERCHE", - "nomCommune": "REMALARD EN PERCHE" + "codePostal": "65350", + "codeCommune": "65131", + "libelleAcheminement": "CASTELVIEILH", + "nomCommune": "CASTELVIEILH" }, { - "codePostal": "39110", - "codeCommune": "39500", - "libelleAcheminement": "SALINS LES BAINS", - "nomCommune": "SALINS LES BAINS" + "codePostal": "11800", + "codeCommune": "11220", + "libelleAcheminement": "MARSEILLETTE", + "nomCommune": "MARSEILLETTE" }, { - "codePostal": "33720", - "codeCommune": "33120", - "libelleAcheminement": "CERONS", - "nomCommune": "CERONS" + "codePostal": "64370", + "codeCommune": "64382", + "libelleAcheminement": "MESPLEDE", + "nomCommune": "MESPLEDE" }, { - "codePostal": "02440", - "codeCommune": "02345", - "libelleAcheminement": "GIBERCOURT", - "nomCommune": "GIBERCOURT" + "codePostal": "54950", + "codeCommune": "54472", + "libelleAcheminement": "ST CLEMENT", + "nomCommune": "ST CLEMENT" }, { - "codePostal": "61230", - "codeCommune": "61347", - "libelleAcheminement": "RESENLIEU", - "nomCommune": "RESENLIEU" + "codePostal": "57320", + "codeCommune": "57167", + "libelleAcheminement": "DALSTEIN", + "nomCommune": "DALSTEIN" }, { - "codePostal": "39130", - "codeCommune": "39505", - "libelleAcheminement": "SAUGEOT", - "nomCommune": "SAUGEOT" + "codePostal": "65590", + "codeCommune": "65140", + "libelleAcheminement": "CAZAUX DEBAT", + "nomCommune": "CAZAUX DEBAT" }, { - "codePostal": "33760", - "codeCommune": "33121", - "libelleAcheminement": "CESSAC", - "nomCommune": "CESSAC" + "codePostal": "11390", + "codeCommune": "11221", + "libelleAcheminement": "LES MARTYS", + "nomCommune": "LES MARTYS" }, { - "codePostal": "02100", - "codeCommune": "02355", - "libelleAcheminement": "GRICOURT", - "nomCommune": "GRICOURT" + "codePostal": "64350", + "codeCommune": "64388", + "libelleAcheminement": "MOMY", + "nomCommune": "MOMY" }, { - "codePostal": "61380", - "codeCommune": "61363", - "libelleAcheminement": "ST AQUILIN DE CORBION", - "nomCommune": "ST AQUILIN DE CORBION" + "codePostal": "54650", + "codeCommune": "54493", + "libelleAcheminement": "SAULNES", + "nomCommune": "SAULNES" }, { - "codePostal": "39120", - "codeCommune": "39507", - "libelleAcheminement": "SELIGNEY", - "nomCommune": "SELIGNEY" + "codePostal": "57340", + "codeCommune": "57174", + "libelleAcheminement": "DESTRY", + "nomCommune": "DESTRY" }, { - "codePostal": "33610", - "codeCommune": "33122", - "libelleAcheminement": "CESTAS", - "nomCommune": "CESTAS" + "codePostal": "65200", + "codeCommune": "65147", + "libelleAcheminement": "CIEUTAT", + "nomCommune": "CIEUTAT" }, { - "codePostal": "02190", - "codeCommune": "02360", - "libelleAcheminement": "VILLENEUVE SUR AISNE", - "nomCommune": "VILLENEUVE SUR AISNE" + "codePostal": "11420", + "codeCommune": "11226", + "libelleAcheminement": "MAYREVILLE", + "nomCommune": "MAYREVILLE" }, { - "codePostal": "61470", - "codeCommune": "61366", - "libelleAcheminement": "ST AUBIN DE BONNEVAL", - "nomCommune": "ST AUBIN DE BONNEVAL" + "codePostal": "64160", + "codeCommune": "64389", + "libelleAcheminement": "MONASSUT AUDIRACQ", + "nomCommune": "MONASSUT AUDIRACQ" }, { - "codePostal": "39700", - "codeCommune": "39513", - "libelleAcheminement": "SERMANGE", - "nomCommune": "SERMANGE" + "codePostal": "54170", + "codeCommune": "54500", + "libelleAcheminement": "SELAINCOURT", + "nomCommune": "SELAINCOURT" }, { - "codePostal": "33540", - "codeCommune": "33129", - "libelleAcheminement": "CLEYRAC", - "nomCommune": "CLEYRAC" + "codePostal": "57980", + "codeCommune": "57176", + "libelleAcheminement": "DIEBLING", + "nomCommune": "DIEBLING" }, { - "codePostal": "02300", - "codeCommune": "02362", - "libelleAcheminement": "GUIVRY", - "nomCommune": "GUIVRY" + "codePostal": "65190", + "codeCommune": "65149", + "libelleAcheminement": "CLARAC", + "nomCommune": "CLARAC" }, { - "codePostal": "61560", - "codeCommune": "61367", - "libelleAcheminement": "ST AUBIN DE COURTERAIE", - "nomCommune": "ST AUBIN DE COURTERAIE" + "codePostal": "11410", + "codeCommune": "11231", + "libelleAcheminement": "MEZERVILLE", + "nomCommune": "MEZERVILLE" }, { - "codePostal": "39380", - "codeCommune": "39520", - "libelleAcheminement": "SOUVANS", - "nomCommune": "SOUVANS" + "codePostal": "64990", + "codeCommune": "64407", + "libelleAcheminement": "MOUGUERRE", + "nomCommune": "MOUGUERRE" }, { - "codePostal": "33340", - "codeCommune": "33134", - "libelleAcheminement": "COUQUEQUES", - "nomCommune": "COUQUEQUES" + "codePostal": "54370", + "codeCommune": "54502", + "libelleAcheminement": "SERRES", + "nomCommune": "SERRES" }, { - "codePostal": "02420", - "codeCommune": "02374", - "libelleAcheminement": "LEHAUCOURT", - "nomCommune": "LEHAUCOURT" + "codePostal": "57400", + "codeCommune": "57180", + "libelleAcheminement": "DOLVING", + "nomCommune": "DOLVING" }, { - "codePostal": "61250", - "codeCommune": "61372", - "libelleAcheminement": "ST CENERI LE GEREI", - "nomCommune": "ST CENERI LE GEREI" + "codePostal": "65370", + "codeCommune": "65158", + "libelleAcheminement": "ESBAREICH", + "nomCommune": "ESBAREICH" }, { - "codePostal": "39300", - "codeCommune": "39540", - "libelleAcheminement": "VALEMPOULIERES", - "nomCommune": "VALEMPOULIERES" + "codePostal": "11250", + "codeCommune": "11242", + "libelleAcheminement": "MONTCLAR", + "nomCommune": "MONTCLAR" }, { - "codePostal": "33750", - "codeCommune": "33141", - "libelleAcheminement": "CROIGNON", - "nomCommune": "CROIGNON" + "codePostal": "64400", + "codeCommune": "64409", + "libelleAcheminement": "MOUMOUR", + "nomCommune": "MOUMOUR" }, { - "codePostal": "02140", - "codeCommune": "02377", - "libelleAcheminement": "HAUTION", - "nomCommune": "HAUTION" + "codePostal": "54300", + "codeCommune": "54507", + "libelleAcheminement": "SIONVILLER", + "nomCommune": "SIONVILLER" }, { - "codePostal": "61380", - "codeCommune": "61373", - "libelleAcheminement": "STE CERONNE LES MORTAGNE", - "nomCommune": "STE CERONNE LES MORTAGNE" + "codePostal": "57260", + "codeCommune": "57181", + "libelleAcheminement": "DOMNOM LES DIEUZE", + "nomCommune": "DOMNOM LES DIEUZE" }, { - "codePostal": "39360", - "codeCommune": "39547", - "libelleAcheminement": "VAUX LES ST CLAUDE", - "nomCommune": "VAUX LES ST CLAUDE" + "codePostal": "65700", + "codeCommune": "65174", + "libelleAcheminement": "ESTIRAC", + "nomCommune": "ESTIRAC" }, { - "codePostal": "33240", - "codeCommune": "33143", - "libelleAcheminement": "CUBZAC LES PONTS", - "nomCommune": "CUBZAC LES PONTS" + "codePostal": "11240", + "codeCommune": "11247", + "libelleAcheminement": "MONTHAUT", + "nomCommune": "MONTHAUT" }, { - "codePostal": "02120", - "codeCommune": "02379", - "libelleAcheminement": "LE HERIE LA VIEVILLE", - "nomCommune": "LE HERIE LA VIEVILLE" + "codePostal": "64420", + "codeCommune": "64419", + "libelleAcheminement": "NOUSTY", + "nomCommune": "NOUSTY" }, { - "codePostal": "61570", - "codeCommune": "61375", - "libelleAcheminement": "BOISCHAMPRE", - "nomCommune": "BOISCHAMPRE" + "codePostal": "54610", + "codeCommune": "54508", + "libelleAcheminement": "SIVRY", + "nomCommune": "SIVRY" }, { - "codePostal": "39160", - "codeCommune": "39551", - "libelleAcheminement": "VERIA", - "nomCommune": "VERIA" + "codePostal": "57340", + "codeCommune": "57189", + "libelleAcheminement": "EINCHEVILLE", + "nomCommune": "EINCHEVILLE" }, { - "codePostal": "33230", - "codeCommune": "33154", - "libelleAcheminement": "LES EGLISOTTES ET CHALAURES", - "nomCommune": "LES EGLISOTTES ET CHALAURES" + "codePostal": "65370", + "codeCommune": "65175", + "libelleAcheminement": "FERRERE", + "nomCommune": "FERRERE" }, { - "codePostal": "02140", - "codeCommune": "02391", - "libelleAcheminement": "JEANTES", - "nomCommune": "JEANTES" + "codePostal": "11220", + "codeCommune": "11251", + "libelleAcheminement": "VAL DE DAGNE", + "nomCommune": "VAL DE DAGNE" }, { - "codePostal": "61570", - "codeCommune": "61375", - "libelleAcheminement": "BOISCHAMPRE", - "nomCommune": "BOISCHAMPRE" + "codePostal": "64190", + "codeCommune": "64420", + "libelleAcheminement": "OGENNE CAMPTORT", + "nomCommune": "OGENNE CAMPTORT" }, { - "codePostal": "39210", - "codeCommune": "39553", - "libelleAcheminement": "LE VERNOIS", - "nomCommune": "LE VERNOIS" + "codePostal": "54116", + "codeCommune": "54513", + "libelleAcheminement": "TANTONVILLE", + "nomCommune": "TANTONVILLE" }, { - "codePostal": "33210", - "codeCommune": "33164", - "libelleAcheminement": "FARGUES", - "nomCommune": "FARGUES" + "codePostal": "57365", + "codeCommune": "57193", + "libelleAcheminement": "ENNERY", + "nomCommune": "ENNERY" }, { - "codePostal": "02220", - "codeCommune": "02393", - "libelleAcheminement": "JOUAIGNES", - "nomCommune": "JOUAIGNES" + "codePostal": "65320", + "codeCommune": "65189", + "libelleAcheminement": "GAYAN", + "nomCommune": "GAYAN" }, { - "codePostal": "61230", - "codeCommune": "61385", - "libelleAcheminement": "ST EVROULT DE MONTFORT", - "nomCommune": "ST EVROULT DE MONTFORT" + "codePostal": "11170", + "codeCommune": "11253", + "libelleAcheminement": "MONTOLIEU", + "nomCommune": "MONTOLIEU" }, { - "codePostal": "39230", - "codeCommune": "39555", - "libelleAcheminement": "VERS SOUS SELLIERES", - "nomCommune": "VERS SOUS SELLIERES" + "codePostal": "64680", + "codeCommune": "64421", + "libelleAcheminement": "OGEU LES BAINS", + "nomCommune": "OGEU LES BAINS" }, { - "codePostal": "33190", - "codeCommune": "33171", - "libelleAcheminement": "FOSSES ET BALEYSSAC", - "nomCommune": "FOSSES ET BALEYSSAC" + "codePostal": "54880", + "codeCommune": "54521", + "libelleAcheminement": "THIL", + "nomCommune": "THIL" }, { - "codePostal": "02160", - "codeCommune": "02396", - "libelleAcheminement": "JUMIGNY", - "nomCommune": "JUMIGNY" + "codePostal": "57510", + "codeCommune": "57197", + "libelleAcheminement": "ERNESTVILLER", + "nomCommune": "ERNESTVILLER" }, { - "codePostal": "61130", - "codeCommune": "61388", - "libelleAcheminement": "ST FULGENT DES ORMES", - "nomCommune": "ST FULGENT DES ORMES" + "codePostal": "65370", + "codeCommune": "65193", + "libelleAcheminement": "GEMBRIE", + "nomCommune": "GEMBRIE" }, { - "codePostal": "39570", - "codeCommune": "39558", - "libelleAcheminement": "VEVY", - "nomCommune": "VEVY" + "codePostal": "11700", + "codeCommune": "11261", + "libelleAcheminement": "MOUX", + "nomCommune": "MOUX" }, { - "codePostal": "33390", - "codeCommune": "33172", - "libelleAcheminement": "FOURS", - "nomCommune": "FOURS" + "codePostal": "64390", + "codeCommune": "64427", + "libelleAcheminement": "ORION", + "nomCommune": "ORION" }, { - "codePostal": "02480", - "codeCommune": "02397", - "libelleAcheminement": "JUSSY", - "nomCommune": "JUSSY" + "codePostal": "54210", + "codeCommune": "54527", + "libelleAcheminement": "TONNOY", + "nomCommune": "TONNOY" }, { - "codePostal": "61560", - "codeCommune": "61396", - "libelleAcheminement": "ST GERMAIN DE MARTIGNY", - "nomCommune": "ST GERMAIN DE MARTIGNY" + "codePostal": "57530", + "codeCommune": "57200", + "libelleAcheminement": "LES ETANGS", + "nomCommune": "LES ETANGS" }, { - "codePostal": "39120", - "codeCommune": "39571", - "libelleAcheminement": "VILLERS ROBERT", - "nomCommune": "VILLERS ROBERT" + "codePostal": "65700", + "codeCommune": "65215", + "libelleAcheminement": "HAGEDET", + "nomCommune": "HAGEDET" }, { - "codePostal": "33760", - "codeCommune": "33175", - "libelleAcheminement": "FRONTENAC", - "nomCommune": "FRONTENAC" + "codePostal": "11350", + "codeCommune": "11270", + "libelleAcheminement": "PADERN", + "nomCommune": "PADERN" }, { - "codePostal": "02590", - "codeCommune": "02402", - "libelleAcheminement": "LANCHY", - "nomCommune": "LANCHY" + "codePostal": "64780", + "codeCommune": "64436", + "libelleAcheminement": "OSSES", + "nomCommune": "OSSES" }, { - "codePostal": "61220", - "codeCommune": "61402", - "libelleAcheminement": "ST HILAIRE DE BRIOUZE", - "nomCommune": "ST HILAIRE DE BRIOUZE" + "codePostal": "54200", + "codeCommune": "54528", + "libelleAcheminement": "TOUL", + "nomCommune": "TOUL" }, { - "codePostal": "39140", - "codeCommune": "39574", - "libelleAcheminement": "VILLEVIEUX", - "nomCommune": "VILLEVIEUX" + "codePostal": "57290", + "codeCommune": "57206", + "libelleAcheminement": "FAMECK", + "nomCommune": "FAMECK" }, { - "codePostal": "33410", - "codeCommune": "33176", - "libelleAcheminement": "GABARNAC", - "nomCommune": "GABARNAC" + "codePostal": "65250", + "codeCommune": "65218", + "libelleAcheminement": "HECHES", + "nomCommune": "HECHES" }, { - "codePostal": "02140", - "codeCommune": "02404", - "libelleAcheminement": "LANDOUZY LA COUR", - "nomCommune": "LANDOUZY LA COUR" + "codePostal": "11440", + "codeCommune": "11285", + "libelleAcheminement": "PEYRIAC DE MER", + "nomCommune": "PEYRIAC DE MER" }, { - "codePostal": "61170", - "codeCommune": "61412", - "libelleAcheminement": "ST JULIEN SUR SARTHE", - "nomCommune": "ST JULIEN SUR SARTHE" + "codePostal": "64300", + "codeCommune": "64440", + "libelleAcheminement": "OZENX MONTESTRUCQ", + "nomCommune": "OZENX MONTESTRUCQ" }, { - "codePostal": "39230", - "codeCommune": "39575", - "libelleAcheminement": "LE VILLEY", - "nomCommune": "LE VILLEY" + "codePostal": "54115", + "codeCommune": "54545", + "libelleAcheminement": "VANDELEVILLE", + "nomCommune": "VANDELEVILLE" }, { - "codePostal": "33340", - "codeCommune": "33177", - "libelleAcheminement": "GAILLAN EN MEDOC", - "nomCommune": "GAILLAN EN MEDOC" + "codePostal": "57600", + "codeCommune": "57222", + "libelleAcheminement": "FOLKLING", + "nomCommune": "FOLKLING" }, { - "codePostal": "02150", - "codeCommune": "02409", - "libelleAcheminement": "LAPPION", - "nomCommune": "LAPPION" + "codePostal": "65380", + "codeCommune": "65220", + "libelleAcheminement": "HIBARETTE", + "nomCommune": "HIBARETTE" }, { - "codePostal": "61160", - "codeCommune": "61413", - "libelleAcheminement": "ST LAMBERT SUR DIVE", - "nomCommune": "ST LAMBERT SUR DIVE" + "codePostal": "11300", + "codeCommune": "11294", + "libelleAcheminement": "POMY", + "nomCommune": "POMY" }, { - "codePostal": "39230", - "codeCommune": "39577", - "libelleAcheminement": "VINCENT FROIDEVILLE", - "nomCommune": "VINCENT FROIDEVILLE" + "codePostal": "64150", + "codeCommune": "64443", + "libelleAcheminement": "PARDIES", + "nomCommune": "PARDIES" }, { - "codePostal": "33350", - "codeCommune": "33181", - "libelleAcheminement": "GARDEGAN ET TOURTIRAC", - "nomCommune": "GARDEGAN ET TOURTIRAC" + "codePostal": "54740", + "codeCommune": "54554", + "libelleAcheminement": "VAUDIGNY", + "nomCommune": "VAUDIGNY" }, { - "codePostal": "02450", - "codeCommune": "02414", - "libelleAcheminement": "LAVAQUERESSE", - "nomCommune": "LAVAQUERESSE" + "codePostal": "57730", + "codeCommune": "57224", + "libelleAcheminement": "FOLSCHVILLER", + "nomCommune": "FOLSCHVILLER" }, { - "codePostal": "61400", - "codeCommune": "61414", - "libelleAcheminement": "ST LANGIS LES MORTAGNE", - "nomCommune": "ST LANGIS LES MORTAGNE" + "codePostal": "65190", + "codeCommune": "65222", + "libelleAcheminement": "HITTE", + "nomCommune": "HITTE" }, { - "codePostal": "39230", - "codeCommune": "39577", - "libelleAcheminement": "VINCENT FROIDEVILLE", - "nomCommune": "VINCENT FROIDEVILLE" + "codePostal": "11360", + "codeCommune": "11305", + "libelleAcheminement": "QUINTILLAN", + "nomCommune": "QUINTILLAN" }, { - "codePostal": "33420", - "codeCommune": "33196", - "libelleAcheminement": "GUILLAC", - "nomCommune": "GUILLAC" + "codePostal": "64460", + "codeCommune": "64454", + "libelleAcheminement": "PONTIACQ VIELLEPINTE", + "nomCommune": "PONTIACQ VIELLEPINTE" }, { - "codePostal": "02140", - "codeCommune": "02416", - "libelleAcheminement": "LEME", - "nomCommune": "LEME" + "codePostal": "54120", + "codeCommune": "54555", + "libelleAcheminement": "VAXAINVILLE", + "nomCommune": "VAXAINVILLE" }, { - "codePostal": "61170", - "codeCommune": "61415", - "libelleAcheminement": "ST LEGER SUR SARTHE", - "nomCommune": "ST LEGER SUR SARTHE" + "codePostal": "57660", + "codeCommune": "57239", + "libelleAcheminement": "FREYBOUSE", + "nomCommune": "FREYBOUSE" }, { - "codePostal": "39360", - "codeCommune": "39585", - "libelleAcheminement": "VULVOZ", - "nomCommune": "VULVOZ" + "codePostal": "65310", + "codeCommune": "65223", + "libelleAcheminement": "HORGUES", + "nomCommune": "HORGUES" }, { - "codePostal": "33185", - "codeCommune": "33200", - "libelleAcheminement": "LE HAILLAN", - "nomCommune": "LE HAILLAN" + "codePostal": "11190", + "codeCommune": "11309", + "libelleAcheminement": "RENNES LE CHATEAU", + "nomCommune": "RENNES LE CHATEAU" }, { - "codePostal": "02120", - "codeCommune": "02422", - "libelleAcheminement": "LESQUIELLES ST GERMAIN", - "nomCommune": "LESQUIELLES ST GERMAIN" + "codePostal": "64190", + "codeCommune": "64458", + "libelleAcheminement": "PRECHACQ JOSBAIG", + "nomCommune": "PRECHACQ JOSBAIG" }, { - "codePostal": "61320", - "codeCommune": "61420", - "libelleAcheminement": "STE MARIE LA ROBERT", - "nomCommune": "STE MARIE LA ROBERT" + "codePostal": "54840", + "codeCommune": "54557", + "libelleAcheminement": "BOIS DE HAYE", + "nomCommune": "BOIS DE HAYE" }, { - "codePostal": "40320", - "codeCommune": "40005", - "libelleAcheminement": "ARBOUCAVE", - "nomCommune": "ARBOUCAVE" + "codePostal": "57800", + "codeCommune": "57240", + "libelleAcheminement": "FREYMING MERLEBACH", + "nomCommune": "FREYMING MERLEBACH" }, { - "codePostal": "33590", - "codeCommune": "33208", - "libelleAcheminement": "JAU DIGNAC ET LOIRAC", - "nomCommune": "JAU DIGNAC ET LOIRAC" + "codePostal": "65330", + "codeCommune": "65224", + "libelleAcheminement": "HOUEYDETS", + "nomCommune": "HOUEYDETS" }, { - "codePostal": "02380", - "codeCommune": "02423", - "libelleAcheminement": "LEUILLY SOUS COUCY", - "nomCommune": "LEUILLY SOUS COUCY" + "codePostal": "11220", + "codeCommune": "11311", + "libelleAcheminement": "RIBAUTE", + "nomCommune": "RIBAUTE" }, { - "codePostal": "61320", - "codeCommune": "61424", - "libelleAcheminement": "ST MARTIN DES LANDES", - "nomCommune": "ST MARTIN DES LANDES" + "codePostal": "64160", + "codeCommune": "64465", + "libelleAcheminement": "RIUPEYROUS", + "nomCommune": "RIUPEYROUS" }, { - "codePostal": "40110", - "codeCommune": "40006", - "libelleAcheminement": "ARENGOSSE", - "nomCommune": "ARENGOSSE" + "codePostal": "54260", + "codeCommune": "54582", + "libelleAcheminement": "VILLETTE", + "nomCommune": "VILLETTE" }, { - "codePostal": "33650", - "codeCommune": "33213", - "libelleAcheminement": "LA BREDE", - "nomCommune": "LA BREDE" + "codePostal": "57815", + "codeCommune": "57253", + "libelleAcheminement": "GONDREXANGE", + "nomCommune": "GONDREXANGE" }, { - "codePostal": "02160", - "codeCommune": "02439", - "libelleAcheminement": "LES SEPTVALLONS", - "nomCommune": "LES SEPTVALLONS" + "codePostal": "65410", + "codeCommune": "65228", + "libelleAcheminement": "ILHET", + "nomCommune": "ILHET" }, { - "codePostal": "61300", - "codeCommune": "61432", - "libelleAcheminement": "ST MICHEL TUBOEUF", - "nomCommune": "ST MICHEL TUBOEUF" + "codePostal": "11220", + "codeCommune": "11314", + "libelleAcheminement": "RIEUX EN VAL", + "nomCommune": "RIEUX EN VAL" }, { - "codePostal": "40430", - "codeCommune": "40008", - "libelleAcheminement": "ARGELOUSE", - "nomCommune": "ARGELOUSE" + "codePostal": "64110", + "codeCommune": "64467", + "libelleAcheminement": "RONTIGNON", + "nomCommune": "RONTIGNON" }, { - "codePostal": "33680", - "codeCommune": "33214", - "libelleAcheminement": "LACANAU", - "nomCommune": "LACANAU" + "codePostal": "54200", + "codeCommune": "54584", + "libelleAcheminement": "VILLEY ST ETIENNE", + "nomCommune": "VILLEY ST ETIENNE" }, { - "codePostal": "02160", - "codeCommune": "02439", - "libelleAcheminement": "LES SEPTVALLONS", - "nomCommune": "LES SEPTVALLONS" + "codePostal": "57660", + "codeCommune": "57258", + "libelleAcheminement": "GRENING", + "nomCommune": "GRENING" }, { - "codePostal": "61560", - "codeCommune": "61438", - "libelleAcheminement": "ST OUEN DE SECHEROUVRE", - "nomCommune": "ST OUEN DE SECHEROUVRE" + "codePostal": "65350", + "codeCommune": "65232", + "libelleAcheminement": "JACQUE", + "nomCommune": "JACQUE" }, { - "codePostal": "40330", - "codeCommune": "40011", - "libelleAcheminement": "ARSAGUE", - "nomCommune": "ARSAGUE" + "codePostal": "11140", + "codeCommune": "11321", + "libelleAcheminement": "ROQUEFORT DE SAULT", + "nomCommune": "ROQUEFORT DE SAULT" }, { - "codePostal": "33680", - "codeCommune": "33214", - "libelleAcheminement": "LACANAU", - "nomCommune": "LACANAU" + "codePostal": "64800", + "codeCommune": "64469", + "libelleAcheminement": "ST ABIT", + "nomCommune": "ST ABIT" }, { - "codePostal": "02160", - "codeCommune": "02439", - "libelleAcheminement": "LES SEPTVALLONS", - "nomCommune": "LES SEPTVALLONS" + "codePostal": "54300", + "codeCommune": "54588", + "libelleAcheminement": "VITRIMONT", + "nomCommune": "VITRIMONT" }, { - "codePostal": "61360", - "codeCommune": "61450", - "libelleAcheminement": "ST QUENTIN DE BLAVOU", - "nomCommune": "ST QUENTIN DE BLAVOU" + "codePostal": "57660", + "codeCommune": "57262", + "libelleAcheminement": "GROSTENQUIN", + "nomCommune": "GROSTENQUIN" }, { - "codePostal": "40190", - "codeCommune": "40013", - "libelleAcheminement": "ARTHEZ D ARMAGNAC", - "nomCommune": "ARTHEZ D ARMAGNAC" + "codePostal": "65130", + "codeCommune": "65241", + "libelleAcheminement": "LABORDE", + "nomCommune": "LABORDE" }, { - "codePostal": "33138", - "codeCommune": "33229", - "libelleAcheminement": "LANTON", - "nomCommune": "LANTON" + "codePostal": "11300", + "codeCommune": "11323", + "libelleAcheminement": "ROQUETAILLADE ET CONILHAC", + "nomCommune": "ROQUETAILLADE ET CONILHAC" }, { - "codePostal": "02140", - "codeCommune": "02444", - "libelleAcheminement": "LUGNY", - "nomCommune": "LUGNY" + "codePostal": "64270", + "codeCommune": "64474", + "libelleAcheminement": "ST DOS", + "nomCommune": "ST DOS" }, { - "codePostal": "61320", - "codeCommune": "61453", - "libelleAcheminement": "ST SAUVEUR DE CARROUGES", - "nomCommune": "ST SAUVEUR DE CARROUGES" + "codePostal": "54260", + "codeCommune": "54590", + "libelleAcheminement": "VIVIERS SUR CHIERS", + "nomCommune": "VIVIERS SUR CHIERS" }, { - "codePostal": "40310", - "codeCommune": "40030", - "libelleAcheminement": "BAUDIGNAN", - "nomCommune": "BAUDIGNAN" + "codePostal": "57260", + "codeCommune": "57268", + "libelleAcheminement": "GUEBLING", + "nomCommune": "GUEBLING" }, { - "codePostal": "33620", - "codeCommune": "33230", - "libelleAcheminement": "LAPOUYADE", - "nomCommune": "LAPOUYADE" + "codePostal": "65380", + "codeCommune": "65257", + "libelleAcheminement": "LANNE", + "nomCommune": "LANNE" }, { - "codePostal": "02220", - "codeCommune": "02447", - "libelleAcheminement": "MAAST ET VIOLAINE", - "nomCommune": "MAAST ET VIOLAINE" + "codePostal": "11800", + "codeCommune": "11330", + "libelleAcheminement": "RUSTIQUES", + "nomCommune": "RUSTIQUES" }, { - "codePostal": "61300", - "codeCommune": "61457", - "libelleAcheminement": "ST SYMPHORIEN DES BRUYERES", - "nomCommune": "ST SYMPHORIEN DES BRUYERES" + "codePostal": "64560", + "codeCommune": "64475", + "libelleAcheminement": "STE ENGRACE", + "nomCommune": "STE ENGRACE" }, { - "codePostal": "40230", - "codeCommune": "40036", - "libelleAcheminement": "BENESSE MAREMNE", - "nomCommune": "BENESSE MAREMNE" + "codePostal": "54134", + "codeCommune": "54591", + "libelleAcheminement": "VOINEMONT", + "nomCommune": "VOINEMONT" }, { - "codePostal": "33360", - "codeCommune": "33234", - "libelleAcheminement": "LATRESNE", - "nomCommune": "LATRESNE" + "codePostal": "57260", + "codeCommune": "57270", + "libelleAcheminement": "VAL DE BRIDE", + "nomCommune": "VAL DE BRIDE" }, { - "codePostal": "02160", - "codeCommune": "02453", - "libelleAcheminement": "MAIZY", - "nomCommune": "MAIZY" + "codePostal": "65700", + "codeCommune": "65262", + "libelleAcheminement": "LARREULE", + "nomCommune": "LARREULE" }, { - "codePostal": "61600", - "codeCommune": "61463", - "libelleAcheminement": "LES MONTS D ANDAINE", - "nomCommune": "LES MONTS D ANDAINE" + "codePostal": "11170", + "codeCommune": "11340", + "libelleAcheminement": "STE EULALIE", + "nomCommune": "STE EULALIE" }, { - "codePostal": "40250", - "codeCommune": "40038", - "libelleAcheminement": "BERGOUEY", - "nomCommune": "BERGOUEY" + "codePostal": "64400", + "codeCommune": "64481", + "libelleAcheminement": "ST GOIN", + "nomCommune": "ST GOIN" }, { - "codePostal": "33480", - "codeCommune": "33248", - "libelleAcheminement": "LISTRAC MEDOC", - "nomCommune": "LISTRAC MEDOC" + "codePostal": "54740", + "codeCommune": "54597", + "libelleAcheminement": "XIROCOURT", + "nomCommune": "XIROCOURT" }, { - "codePostal": "02720", - "codeCommune": "02459", - "libelleAcheminement": "MARCY", - "nomCommune": "MARCY" + "codePostal": "57320", + "codeCommune": "57273", + "libelleAcheminement": "GUERSTLING", + "nomCommune": "GUERSTLING" }, { - "codePostal": "61150", - "codeCommune": "61473", - "libelleAcheminement": "SEVRAI", - "nomCommune": "SEVRAI" + "codePostal": "65350", + "codeCommune": "65265", + "libelleAcheminement": "LASLADES", + "nomCommune": "LASLADES" }, { - "codePostal": "40270", - "codeCommune": "40049", - "libelleAcheminement": "BORDERES ET LAMENSANS", - "nomCommune": "BORDERES ET LAMENSANS" + "codePostal": "11250", + "codeCommune": "11344", + "libelleAcheminement": "ST HILAIRE", + "nomCommune": "ST HILAIRE" }, { - "codePostal": "33570", - "codeCommune": "33261", - "libelleAcheminement": "LUSSAC", - "nomCommune": "LUSSAC" + "codePostal": "64160", + "codeCommune": "64482", + "libelleAcheminement": "ST JAMMES", + "nomCommune": "ST JAMMES" }, { - "codePostal": "02120", - "codeCommune": "02469", - "libelleAcheminement": "MARLY GOMONT", - "nomCommune": "MARLY GOMONT" + "codePostal": "55400", + "codeCommune": "55002", + "libelleAcheminement": "ABAUCOURT HAUTECOURT", + "nomCommune": "ABAUCOURT HAUTECOURT" }, { - "codePostal": "61200", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "57380", + "codeCommune": "57275", + "libelleAcheminement": "GUESSLING HEMERING", + "nomCommune": "GUESSLING HEMERING" }, { - "codePostal": "40090", - "codeCommune": "40051", - "libelleAcheminement": "BOUGUE", - "nomCommune": "BOUGUE" + "codePostal": "65190", + "codeCommune": "65270", + "libelleAcheminement": "LESPOUEY", + "nomCommune": "LESPOUEY" }, { - "codePostal": "33460", - "codeCommune": "33262", - "libelleAcheminement": "MACAU", - "nomCommune": "MACAU" + "codePostal": "11260", + "codeCommune": "11346", + "libelleAcheminement": "ST JEAN DE PARACOL", + "nomCommune": "ST JEAN DE PARACOL" }, { - "codePostal": "02500", - "codeCommune": "02470", - "libelleAcheminement": "MARTIGNY", - "nomCommune": "MARTIGNY" + "codePostal": "64220", + "codeCommune": "64484", + "libelleAcheminement": "ST JEAN LE VIEUX", + "nomCommune": "ST JEAN LE VIEUX" }, { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "55110", + "codeCommune": "55004", + "libelleAcheminement": "AINCREVILLE", + "nomCommune": "AINCREVILLE" }, { - "codePostal": "40330", - "codeCommune": "40054", - "libelleAcheminement": "BRASSEMPOUY", - "nomCommune": "BRASSEMPOUY" + "codePostal": "57570", + "codeCommune": "57282", + "libelleAcheminement": "HAGEN", + "nomCommune": "HAGEN" }, { - "codePostal": "33430", - "codeCommune": "33270", - "libelleAcheminement": "MARIMBAULT", - "nomCommune": "MARIMBAULT" + "codePostal": "65350", + "codeCommune": "65276", + "libelleAcheminement": "LIZOS", + "nomCommune": "LIZOS" }, { - "codePostal": "02860", - "codeCommune": "02471", - "libelleAcheminement": "MARTIGNY COURPIERRE", - "nomCommune": "MARTIGNY COURPIERRE" + "codePostal": "11300", + "codeCommune": "11355", + "libelleAcheminement": "ST MARTIN DE VILLEREGLAN", + "nomCommune": "ST MARTIN DE VILLEREGLAN" }, { - "codePostal": "61310", - "codeCommune": "61474", - "libelleAcheminement": "GOUFFERN EN AUGE", - "nomCommune": "GOUFFERN EN AUGE" + "codePostal": "64780", + "codeCommune": "64490", + "libelleAcheminement": "ST MARTIN D ARROSSA", + "nomCommune": "ST MARTIN D ARROSSA" }, { - "codePostal": "40320", - "codeCommune": "40057", - "libelleAcheminement": "BUANES", - "nomCommune": "BUANES" + "codePostal": "55300", + "codeCommune": "55012", + "libelleAcheminement": "APREMONT LA FORET", + "nomCommune": "APREMONT LA FORET" }, { - "codePostal": "33790", - "codeCommune": "33277", - "libelleAcheminement": "MASSUGAS", - "nomCommune": "MASSUGAS" + "codePostal": "57690", + "codeCommune": "57284", + "libelleAcheminement": "HALLERING", + "nomCommune": "HALLERING" }, { - "codePostal": "02700", - "codeCommune": "02474", - "libelleAcheminement": "MENNESSIS", - "nomCommune": "MENNESSIS" + "codePostal": "65250", + "codeCommune": "65279", + "libelleAcheminement": "LORTET", + "nomCommune": "LORTET" }, { - "codePostal": "61360", - "codeCommune": "61476", - "libelleAcheminement": "SURE", - "nomCommune": "SURE" + "codePostal": "11320", + "codeCommune": "11362", + "libelleAcheminement": "ST PAULET", + "nomCommune": "ST PAULET" }, { - "codePostal": "40120", - "codeCommune": "40058", - "libelleAcheminement": "CACHEN", - "nomCommune": "CACHEN" + "codePostal": "64310", + "codeCommune": "64495", + "libelleAcheminement": "ST PEE SUR NIVELLE", + "nomCommune": "ST PEE SUR NIVELLE" }, { - "codePostal": "33570", - "codeCommune": "33290", - "libelleAcheminement": "MONTAGNE", - "nomCommune": "MONTAGNE" + "codePostal": "55300", + "codeCommune": "55012", + "libelleAcheminement": "APREMONT LA FORET", + "nomCommune": "APREMONT LA FORET" }, { - "codePostal": "02630", - "codeCommune": "02476", - "libelleAcheminement": "MENNEVRET", - "nomCommune": "MENNEVRET" + "codePostal": "57480", + "codeCommune": "57286", + "libelleAcheminement": "HALSTROFF", + "nomCommune": "HALSTROFF" }, { - "codePostal": "61600", - "codeCommune": "61483", - "libelleAcheminement": "BAGNOLES DE L ORNE NORMANDIE", - "nomCommune": "BAGNOLES DE L ORNE NORMANDIE" + "codePostal": "65240", + "codeCommune": "65282", + "libelleAcheminement": "LOUDENVIELLE", + "nomCommune": "LOUDENVIELLE" }, { - "codePostal": "40380", - "codeCommune": "40068", - "libelleAcheminement": "CASSEN", - "nomCommune": "CASSEN" + "codePostal": "11300", + "codeCommune": "11364", + "libelleAcheminement": "ST POLYCARPE", + "nomCommune": "ST POLYCARPE" }, { - "codePostal": "33570", - "codeCommune": "33290", - "libelleAcheminement": "MONTAGNE", - "nomCommune": "MONTAGNE" + "codePostal": "64300", + "codeCommune": "64501", + "libelleAcheminement": "SALLESPISSE", + "nomCommune": "SALLESPISSE" }, { - "codePostal": "02200", - "codeCommune": "02477", - "libelleAcheminement": "MERCIN ET VAUX", - "nomCommune": "MERCIN ET VAUX" + "codePostal": "55700", + "codeCommune": "55025", + "libelleAcheminement": "BAALON", + "nomCommune": "BAALON" }, { - "codePostal": "61260", - "codeCommune": "61484", - "libelleAcheminement": "VAL AU PERCHE", - "nomCommune": "VAL AU PERCHE" + "codePostal": "57880", + "codeCommune": "57288", + "libelleAcheminement": "HAM SOUS VARSBERG", + "nomCommune": "HAM SOUS VARSBERG" }, { - "codePostal": "40260", - "codeCommune": "40075", - "libelleAcheminement": "CASTETS", - "nomCommune": "CASTETS" + "codePostal": "65190", + "codeCommune": "65290", + "libelleAcheminement": "LUC", + "nomCommune": "LUC" }, { - "codePostal": "33190", - "codeCommune": "33294", - "libelleAcheminement": "MORIZES", - "nomCommune": "MORIZES" + "codePostal": "11330", + "codeCommune": "11374", + "libelleAcheminement": "SALZA", + "nomCommune": "SALZA" }, { - "codePostal": "02720", - "codeCommune": "02481", - "libelleAcheminement": "MESNIL ST LAURENT", - "nomCommune": "MESNIL ST LAURENT" + "codePostal": "64420", + "codeCommune": "64507", + "libelleAcheminement": "SAUBOLE", + "nomCommune": "SAUBOLE" }, { - "codePostal": "61800", - "codeCommune": "61486", - "libelleAcheminement": "TINCHEBRAY BOCAGE", - "nomCommune": "TINCHEBRAY BOCAGE" + "codePostal": "55130", + "codeCommune": "55026", + "libelleAcheminement": "BADONVILLIERS GERAUVILLIERS", + "nomCommune": "BADONVILLIERS GERAUVILLIERS" }, { - "codePostal": "40300", - "codeCommune": "40077", - "libelleAcheminement": "CAUNEILLE", - "nomCommune": "CAUNEILLE" + "codePostal": "57590", + "codeCommune": "57292", + "libelleAcheminement": "HANNOCOURT", + "nomCommune": "HANNOCOURT" }, { - "codePostal": "33350", - "codeCommune": "33296", - "libelleAcheminement": "MOULIETS ET VILLEMARTIN", - "nomCommune": "MOULIETS ET VILLEMARTIN" + "codePostal": "65320", + "codeCommune": "65292", + "libelleAcheminement": "LUQUET", + "nomCommune": "LUQUET" }, { - "codePostal": "02200", - "codeCommune": "02485", - "libelleAcheminement": "MISSY AUX BOIS", - "nomCommune": "MISSY AUX BOIS" + "codePostal": "11130", + "codeCommune": "11379", + "libelleAcheminement": "SIGEAN", + "nomCommune": "SIGEAN" }, { - "codePostal": "61550", - "codeCommune": "61488", - "libelleAcheminement": "TOUQUETTES", - "nomCommune": "TOUQUETTES" + "codePostal": "64390", + "codeCommune": "64513", + "libelleAcheminement": "SAUVETERRE DE BEARN", + "nomCommune": "SAUVETERRE DE BEARN" }, { - "codePostal": "40250", - "codeCommune": "40078", - "libelleAcheminement": "CAUPENNE", - "nomCommune": "CAUPENNE" + "codePostal": "55110", + "codeCommune": "55028", + "libelleAcheminement": "BANTHEVILLE", + "nomCommune": "BANTHEVILLE" }, { - "codePostal": "33410", - "codeCommune": "33299", - "libelleAcheminement": "MOURENS", - "nomCommune": "MOURENS" + "codePostal": "57870", + "codeCommune": "57299", + "libelleAcheminement": "HARTZVILLER", + "nomCommune": "HARTZVILLER" }, { - "codePostal": "02350", - "codeCommune": "02486", - "libelleAcheminement": "MISSY LES PIERREPONT", - "nomCommune": "MISSY LES PIERREPONT" + "codePostal": "65220", + "codeCommune": "65293", + "libelleAcheminement": "LUSTAR", + "nomCommune": "LUSTAR" }, { - "codePostal": "61160", - "codeCommune": "61490", - "libelleAcheminement": "TOURNAI SUR DIVE", - "nomCommune": "TOURNAI SUR DIVE" + "codePostal": "11330", + "codeCommune": "11384", + "libelleAcheminement": "SOULATGE", + "nomCommune": "SOULATGE" }, { - "codePostal": "40090", - "codeCommune": "40081", - "libelleAcheminement": "CERE", - "nomCommune": "CERE" + "codePostal": "64350", + "codeCommune": "64517", + "libelleAcheminement": "SEMEACQ BLACHON", + "nomCommune": "SEMEACQ BLACHON" }, { - "codePostal": "33750", - "codeCommune": "33303", - "libelleAcheminement": "NERIGEAN", - "nomCommune": "NERIGEAN" + "codePostal": "55600", + "codeCommune": "55034", + "libelleAcheminement": "BAZEILLES SUR OTHAIN", + "nomCommune": "BAZEILLES SUR OTHAIN" }, { - "codePostal": "02880", - "codeCommune": "02487", - "libelleAcheminement": "MISSY SUR AISNE", - "nomCommune": "MISSY SUR AISNE" + "codePostal": "57280", + "codeCommune": "57303", + "libelleAcheminement": "HAUCONCOURT", + "nomCommune": "HAUCONCOURT" }, { - "codePostal": "61190", - "codeCommune": "61491", - "libelleAcheminement": "TOUROUVRE AU PERCHE", - "nomCommune": "TOUROUVRE AU PERCHE" + "codePostal": "65300", + "codeCommune": "65294", + "libelleAcheminement": "LUTILHOUS", + "nomCommune": "LUTILHOUS" }, { - "codePostal": "40210", - "codeCommune": "40085", - "libelleAcheminement": "COMMENSACQ", - "nomCommune": "COMMENSACQ" + "codePostal": "11320", + "codeCommune": "11385", + "libelleAcheminement": "SOUPEX", + "nomCommune": "SOUPEX" }, { - "codePostal": "33580", - "codeCommune": "33304", - "libelleAcheminement": "NEUFFONS", - "nomCommune": "NEUFFONS" + "codePostal": "64121", + "codeCommune": "64519", + "libelleAcheminement": "SERRES CASTET", + "nomCommune": "SERRES CASTET" }, { - "codePostal": "02270", - "codeCommune": "02492", - "libelleAcheminement": "MONCEAU LES LEUPS", - "nomCommune": "MONCEAU LES LEUPS" + "codePostal": "55170", + "codeCommune": "55035", + "libelleAcheminement": "BAZINCOURT SUR SAULX", + "nomCommune": "BAZINCOURT SUR SAULX" }, { - "codePostal": "61230", - "codeCommune": "61493", - "libelleAcheminement": "LA TRINITE DES LAITIERS", - "nomCommune": "LA TRINITE DES LAITIERS" + "codePostal": "57400", + "codeCommune": "57304", + "libelleAcheminement": "HAUT CLOCHER", + "nomCommune": "HAUT CLOCHER" }, { - "codePostal": "40240", - "codeCommune": "40087", - "libelleAcheminement": "CREON D ARMAGNAC", - "nomCommune": "CREON D ARMAGNAC" + "codePostal": "65220", + "codeCommune": "65308", + "libelleAcheminement": "MAZEROLLES", + "nomCommune": "MAZEROLLES" }, { - "codePostal": "33190", - "codeCommune": "33306", - "libelleAcheminement": "NOAILLAC", - "nomCommune": "NOAILLAC" + "codePostal": "11220", + "codeCommune": "11386", + "libelleAcheminement": "TALAIRAN", + "nomCommune": "TALAIRAN" }, { - "codePostal": "02840", - "codeCommune": "02493", - "libelleAcheminement": "MONCEAU LE WAAST", - "nomCommune": "MONCEAU LE WAAST" + "codePostal": "64260", + "codeCommune": "64522", + "libelleAcheminement": "SEVIGNACQ MEYRACQ", + "nomCommune": "SEVIGNACQ MEYRACQ" }, { - "codePostal": "61170", - "codeCommune": "61499", - "libelleAcheminement": "LES VENTES DE BOURSE", - "nomCommune": "LES VENTES DE BOURSE" + "codePostal": "55700", + "codeCommune": "55037", + "libelleAcheminement": "BEAUFORT EN ARGONNE", + "nomCommune": "BEAUFORT EN ARGONNE" }, { - "codePostal": "40100", - "codeCommune": "40088", - "libelleAcheminement": "DAX", - "nomCommune": "DAX" + "codePostal": "57320", + "codeCommune": "57309", + "libelleAcheminement": "HEINING LES BOUZONVILLE", + "nomCommune": "HEINING LES BOUZONVILLE" }, { - "codePostal": "33790", - "codeCommune": "33316", - "libelleAcheminement": "PELLEGRUE", - "nomCommune": "PELLEGRUE" + "codePostal": "65200", + "codeCommune": "65310", + "libelleAcheminement": "MERILHEU", + "nomCommune": "MERILHEU" }, { - "codePostal": "02500", - "codeCommune": "02495", - "libelleAcheminement": "MONDREPUIS", - "nomCommune": "MONDREPUIS" + "codePostal": "11580", + "codeCommune": "11389", + "libelleAcheminement": "TERROLES", + "nomCommune": "TERROLES" }, { - "codePostal": "61360", - "codeCommune": "61502", - "libelleAcheminement": "VIDAI", - "nomCommune": "VIDAI" + "codePostal": "64780", + "codeCommune": "64528", + "libelleAcheminement": "SUHESCUN", + "nomCommune": "SUHESCUN" }, { - "codePostal": "40180", - "codeCommune": "40113", - "libelleAcheminement": "GOOS", - "nomCommune": "GOOS" + "codePostal": "55100", + "codeCommune": "55039", + "libelleAcheminement": "BEAUMONT EN VERDUNOIS", + "nomCommune": "BEAUMONT EN VERDUNOIS" }, { - "codePostal": "33570", - "codeCommune": "33320", - "libelleAcheminement": "PETIT PALAIS ET CORNEMPS", - "nomCommune": "PETIT PALAIS ET CORNEMPS" + "codePostal": "57580", + "codeCommune": "57319", + "libelleAcheminement": "HERNY", + "nomCommune": "HERNY" }, { - "codePostal": "02210", - "codeCommune": "02507", - "libelleAcheminement": "MONTGRU ST HILAIRE", - "nomCommune": "MONTGRU ST HILAIRE" + "codePostal": "65330", + "codeCommune": "65318", + "libelleAcheminement": "MONTASTRUC", + "nomCommune": "MONTASTRUC" }, { - "codePostal": "61300", - "codeCommune": "61510", - "libelleAcheminement": "VITRAI SOUS LAIGLE", - "nomCommune": "VITRAI SOUS LAIGLE" + "codePostal": "11200", + "codeCommune": "11390", + "libelleAcheminement": "THEZAN DES CORBIERES", + "nomCommune": "THEZAN DES CORBIERES" }, { - "codePostal": "40465", - "codeCommune": "40115", - "libelleAcheminement": "GOUSSE", - "nomCommune": "GOUSSE" + "codePostal": "64120", + "codeCommune": "64539", + "libelleAcheminement": "UHART MIXE", + "nomCommune": "UHART MIXE" }, { - "codePostal": "33500", - "codeCommune": "33328", - "libelleAcheminement": "POMEROL", - "nomCommune": "POMEROL" + "codePostal": "55250", + "codeCommune": "55040", + "libelleAcheminement": "BEAUSITE", + "nomCommune": "BEAUSITE" }, { - "codePostal": "02290", - "codeCommune": "02514", - "libelleAcheminement": "MONTIGNY LENGRAIN", - "nomCommune": "MONTIGNY LENGRAIN" + "codePostal": "57220", + "codeCommune": "57326", + "libelleAcheminement": "HINCKANGE", + "nomCommune": "HINCKANGE" }, { - "codePostal": "61210", - "codeCommune": "61512", - "libelleAcheminement": "LES YVETEAUX", - "nomCommune": "LES YVETEAUX" + "codePostal": "65150", + "codeCommune": "65323", + "libelleAcheminement": "MONTSERIE", + "nomCommune": "MONTSERIE" }, { - "codePostal": "40400", - "codeCommune": "40116", - "libelleAcheminement": "GOUTS", - "nomCommune": "GOUTS" + "codePostal": "11200", + "codeCommune": "11393", + "libelleAcheminement": "TOUROUZELLE", + "nomCommune": "TOUROUZELLE" }, { - "codePostal": "33860", - "codeCommune": "33351", - "libelleAcheminement": "REIGNAC", - "nomCommune": "REIGNAC" + "codePostal": "64430", + "codeCommune": "64543", + "libelleAcheminement": "UREPEL", + "nomCommune": "UREPEL" }, { - "codePostal": "02330", - "codeCommune": "02518", - "libelleAcheminement": "MONTLEVON", - "nomCommune": "MONTLEVON" + "codePostal": "55250", + "codeCommune": "55040", + "libelleAcheminement": "BEAUSITE", + "nomCommune": "BEAUSITE" }, { - "codePostal": "62116", - "codeCommune": "62002", - "libelleAcheminement": "ABLAINZEVELLE", - "nomCommune": "ABLAINZEVELLE" + "codePostal": "57405", + "codeCommune": "57333", + "libelleAcheminement": "HOMMARTING", + "nomCommune": "HOMMARTING" }, { - "codePostal": "40290", - "codeCommune": "40118", - "libelleAcheminement": "HABAS", - "nomCommune": "HABAS" + "codePostal": "65350", + "codeCommune": "65332", + "libelleAcheminement": "OLEAC DEBAT", + "nomCommune": "OLEAC DEBAT" }, { - "codePostal": "33410", - "codeCommune": "33355", - "libelleAcheminement": "RIONS", - "nomCommune": "RIONS" + "codePostal": "11350", + "codeCommune": "11401", + "libelleAcheminement": "TUCHAN", + "nomCommune": "TUCHAN" }, { - "codePostal": "02340", - "codeCommune": "02519", - "libelleAcheminement": "MONTLOUE", - "nomCommune": "MONTLOUE" + "codePostal": "64160", + "codeCommune": "64544", + "libelleAcheminement": "UROST", + "nomCommune": "UROST" }, { - "codePostal": "62217", - "codeCommune": "62004", - "libelleAcheminement": "ACHICOURT", - "nomCommune": "ACHICOURT" + "codePostal": "55230", + "codeCommune": "55053", + "libelleAcheminement": "BILLY SOUS MANGIENNES", + "nomCommune": "BILLY SOUS MANGIENNES" }, { - "codePostal": "40700", - "codeCommune": "40119", - "libelleAcheminement": "HAGETMAU", - "nomCommune": "HAGETMAU" + "codePostal": "57870", + "codeCommune": "57334", + "libelleAcheminement": "HOMMERT", + "nomCommune": "HOMMERT" }, { - "codePostal": "33126", - "codeCommune": "33356", - "libelleAcheminement": "LA RIVIERE", - "nomCommune": "LA RIVIERE" + "codePostal": "65100", + "codeCommune": "65343", + "libelleAcheminement": "OSSEN", + "nomCommune": "OSSEN" }, { - "codePostal": "02310", - "codeCommune": "02521", - "libelleAcheminement": "MONTREUIL AUX LIONS", - "nomCommune": "MONTREUIL AUX LIONS" + "codePostal": "11250", + "codeCommune": "11408", + "libelleAcheminement": "VERZEILLE", + "nomCommune": "VERZEILLE" }, { - "codePostal": "62850", - "codeCommune": "62024", - "libelleAcheminement": "ALQUINES", - "nomCommune": "ALQUINES" + "codePostal": "64122", + "codeCommune": "64545", + "libelleAcheminement": "URRUGNE", + "nomCommune": "URRUGNE" }, { - "codePostal": "40190", - "codeCommune": "40127", - "libelleAcheminement": "HONTANX", - "nomCommune": "HONTANX" + "codePostal": "55400", + "codeCommune": "55057", + "libelleAcheminement": "BOINVILLE EN WOEVRE", + "nomCommune": "BOINVILLE EN WOEVRE" }, { - "codePostal": "33240", - "codeCommune": "33366", - "libelleAcheminement": "ST ANDRE DE CUBZAC", - "nomCommune": "ST ANDRE DE CUBZAC" + "codePostal": "57820", + "codeCommune": "57339", + "libelleAcheminement": "HULTEHOUSE", + "nomCommune": "HULTEHOUSE" }, { - "codePostal": "02100", - "codeCommune": "02525", - "libelleAcheminement": "MORCOURT", - "nomCommune": "MORCOURT" + "codePostal": "65100", + "codeCommune": "65348", + "libelleAcheminement": "OURDIS COTDOUSSAN", + "nomCommune": "OURDIS COTDOUSSAN" }, { - "codePostal": "62310", - "codeCommune": "62026", - "libelleAcheminement": "AMBRICOURT", - "nomCommune": "AMBRICOURT" + "codePostal": "11600", + "codeCommune": "11410", + "libelleAcheminement": "VILLALIER", + "nomCommune": "VILLALIER" }, { - "codePostal": "40230", - "codeCommune": "40129", - "libelleAcheminement": "JOSSE", - "nomCommune": "JOSSE" + "codePostal": "64230", + "codeCommune": "64549", + "libelleAcheminement": "UZEIN", + "nomCommune": "UZEIN" }, { - "codePostal": "33660", - "codeCommune": "33373", - "libelleAcheminement": "ST ANTOINE SUR L ISLE", - "nomCommune": "ST ANTOINE SUR L ISLE" + "codePostal": "55300", + "codeCommune": "55062", + "libelleAcheminement": "BOUCONVILLE SUR MADT", + "nomCommune": "BOUCONVILLE SUR MADT" }, { - "codePostal": "02290", - "codeCommune": "02527", - "libelleAcheminement": "MORSAIN", - "nomCommune": "MORSAIN" + "codePostal": "57970", + "codeCommune": "57345", + "libelleAcheminement": "INGLANGE", + "nomCommune": "INGLANGE" }, { - "codePostal": "62340", - "codeCommune": "62031", - "libelleAcheminement": "ANDRES", - "nomCommune": "ANDRES" + "codePostal": "65100", + "codeCommune": "65349", + "libelleAcheminement": "OURDON", + "nomCommune": "OURDON" }, { - "codePostal": "40700", - "codeCommune": "40130", - "libelleAcheminement": "LABASTIDE CHALOSSE", - "nomCommune": "LABASTIDE CHALOSSE" + "codePostal": "11580", + "codeCommune": "11412", + "libelleAcheminement": "VILLARDEBELLE", + "nomCommune": "VILLARDEBELLE" }, { - "codePostal": "33160", - "codeCommune": "33376", - "libelleAcheminement": "ST AUBIN DE MEDOC", - "nomCommune": "ST AUBIN DE MEDOC" + "codePostal": "65260", + "codeCommune": "65001", + "libelleAcheminement": "ADAST", + "nomCommune": "ADAST" }, { - "codePostal": "02600", - "codeCommune": "02528", - "libelleAcheminement": "MORTEFONTAINE", - "nomCommune": "MORTEFONTAINE" + "codePostal": "55240", + "codeCommune": "55063", + "libelleAcheminement": "BOULIGNY", + "nomCommune": "BOULIGNY" }, { - "codePostal": "62580", - "codeCommune": "62039", - "libelleAcheminement": "ARLEUX EN GOHELLE", - "nomCommune": "ARLEUX EN GOHELLE" + "codePostal": "57480", + "codeCommune": "57364", + "libelleAcheminement": "KIRSCH LES SIERCK", + "nomCommune": "KIRSCH LES SIERCK" }, { - "codePostal": "40240", - "codeCommune": "40131", - "libelleAcheminement": "LABASTIDE D ARMAGNAC", - "nomCommune": "LABASTIDE D ARMAGNAC" + "codePostal": "65100", + "codeCommune": "65355", + "libelleAcheminement": "PAREAC", + "nomCommune": "PAREAC" }, { - "codePostal": "33330", - "codeCommune": "33384", - "libelleAcheminement": "ST CHRISTOPHE DES BARDES", - "nomCommune": "ST CHRISTOPHE DES BARDES" + "codePostal": "11220", + "codeCommune": "11414", + "libelleAcheminement": "VILLAR EN VAL", + "nomCommune": "VILLAR EN VAL" }, { - "codePostal": "02160", - "codeCommune": "02531", - "libelleAcheminement": "MOUSSY VERNEUIL", - "nomCommune": "MOUSSY VERNEUIL" + "codePostal": "65240", + "codeCommune": "65003", + "libelleAcheminement": "ADERVIELLE POUCHERGUES", + "nomCommune": "ADERVIELLE POUCHERGUES" }, { - "codePostal": "62260", - "codeCommune": "62048", - "libelleAcheminement": "AUCHEL", - "nomCommune": "AUCHEL" + "codePostal": "55270", + "codeCommune": "55065", + "libelleAcheminement": "BOUREUILLES", + "nomCommune": "BOUREUILLES" }, { - "codePostal": "40210", - "codeCommune": "40134", - "libelleAcheminement": "LABOUHEYRE", - "nomCommune": "LABOUHEYRE" + "codePostal": "57430", + "codeCommune": "57366", + "libelleAcheminement": "KIRVILLER", + "nomCommune": "KIRVILLER" }, { - "codePostal": "33230", - "codeCommune": "33385", - "libelleAcheminement": "ST CHRISTOPHE DE DOUBLE", - "nomCommune": "ST CHRISTOPHE DE DOUBLE" + "codePostal": "65400", + "codeCommune": "65371", + "libelleAcheminement": "PRECHAC", + "nomCommune": "PRECHAC" }, { - "codePostal": "02210", - "codeCommune": "02533", - "libelleAcheminement": "MURET ET CROUTTES", - "nomCommune": "MURET ET CROUTTES" + "codePostal": "11250", + "codeCommune": "11415", + "libelleAcheminement": "VILLAR ST ANSELME", + "nomCommune": "VILLAR ST ANSELME" }, { - "codePostal": "62138", - "codeCommune": "62051", - "libelleAcheminement": "AUCHY LES MINES", - "nomCommune": "AUCHY LES MINES" + "codePostal": "65400", + "codeCommune": "65004", + "libelleAcheminement": "AGOS VIDALOS", + "nomCommune": "AGOS VIDALOS" }, { - "codePostal": "40270", - "codeCommune": "40145", - "libelleAcheminement": "LARRIVIERE ST SAVIN", - "nomCommune": "LARRIVIERE ST SAVIN" + "codePostal": "55500", + "codeCommune": "55067", + "libelleAcheminement": "BOVIOLLES", + "nomCommune": "BOVIOLLES" }, { - "codePostal": "33710", - "codeCommune": "33388", - "libelleAcheminement": "ST CIERS DE CANESSE", - "nomCommune": "ST CIERS DE CANESSE" + "codePostal": "57970", + "codeCommune": "57370", + "libelleAcheminement": "KOENIGSMACKER", + "nomCommune": "KOENIGSMACKER" }, { - "codePostal": "02200", - "codeCommune": "02536", - "libelleAcheminement": "NAMPTEUIL SOUS MURET", - "nomCommune": "NAMPTEUIL SOUS MURET" + "codePostal": "65220", + "codeCommune": "65374", + "libelleAcheminement": "PUYDARRIEUX", + "nomCommune": "PUYDARRIEUX" }, { - "codePostal": "62116", - "codeCommune": "62068", - "libelleAcheminement": "AYETTE", - "nomCommune": "AYETTE" + "codePostal": "11300", + "codeCommune": "11417", + "libelleAcheminement": "VILLARZEL DU RAZES", + "nomCommune": "VILLARZEL DU RAZES" }, { - "codePostal": "40250", - "codeCommune": "40153", - "libelleAcheminement": "LE LEUY", - "nomCommune": "LE LEUY" + "codePostal": "65140", + "codeCommune": "65013", + "libelleAcheminement": "ANSOST", + "nomCommune": "ANSOST" }, { - "codePostal": "33910", - "codeCommune": "33393", - "libelleAcheminement": "ST DENIS DE PILE", - "nomCommune": "ST DENIS DE PILE" + "codePostal": "55100", + "codeCommune": "55070", + "libelleAcheminement": "BRABANT SUR MEUSE", + "nomCommune": "BRABANT SUR MEUSE" }, { - "codePostal": "02210", - "codeCommune": "02538", - "libelleAcheminement": "NANTEUIL NOTRE DAME", - "nomCommune": "NANTEUIL NOTRE DAME" + "codePostal": "57970", + "codeCommune": "57372", + "libelleAcheminement": "KUNTZIG", + "nomCommune": "KUNTZIG" }, { - "codePostal": "62810", - "codeCommune": "62084", - "libelleAcheminement": "BARLY", - "nomCommune": "BARLY" + "codePostal": "65140", + "codeCommune": "65375", + "libelleAcheminement": "RABASTENS DE BIGORRE", + "nomCommune": "RABASTENS DE BIGORRE" }, { - "codePostal": "40260", - "codeCommune": "40155", - "libelleAcheminement": "LINXE", - "nomCommune": "LINXE" + "codePostal": "11150", + "codeCommune": "11418", + "libelleAcheminement": "VILLASAVARY", + "nomCommune": "VILLASAVARY" }, { - "codePostal": "33330", - "codeCommune": "33396", - "libelleAcheminement": "ST ETIENNE DE LISSE", - "nomCommune": "ST ETIENNE DE LISSE" + "codePostal": "65170", + "codeCommune": "65017", + "libelleAcheminement": "ARAGNOUET", + "nomCommune": "ARAGNOUET" }, { - "codePostal": "02450", - "codeCommune": "02548", - "libelleAcheminement": "LA NEUVILLE LES DORENGT", - "nomCommune": "LA NEUVILLE LES DORENGT" + "codePostal": "55200", + "codeCommune": "55085", + "libelleAcheminement": "BROUSSEY RAULECOURT", + "nomCommune": "BROUSSEY RAULECOURT" }, { - "codePostal": "62910", - "codeCommune": "62087", - "libelleAcheminement": "BAYENGHEM LES EPERLECQUES", - "nomCommune": "BAYENGHEM LES EPERLECQUES" + "codePostal": "57810", + "codeCommune": "57375", + "libelleAcheminement": "LAGARDE", + "nomCommune": "LAGARDE" }, { - "codePostal": "40410", - "codeCommune": "40156", - "libelleAcheminement": "LIPOSTHEY", - "nomCommune": "LIPOSTHEY" + "codePostal": "65300", + "codeCommune": "65377", + "libelleAcheminement": "REJAUMONT", + "nomCommune": "REJAUMONT" }, { - "codePostal": "33350", - "codeCommune": "33401", - "libelleAcheminement": "STE FLORENCE", - "nomCommune": "STE FLORENCE" + "codePostal": "11570", + "codeCommune": "11423", + "libelleAcheminement": "VILLEFLOURE", + "nomCommune": "VILLEFLOURE" }, { - "codePostal": "02860", - "codeCommune": "02550", - "libelleAcheminement": "NEUVILLE SUR AILETTE", - "nomCommune": "NEUVILLE SUR AILETTE" + "codePostal": "65670", + "codeCommune": "65028", + "libelleAcheminement": "ARNE", + "nomCommune": "ARNE" }, { - "codePostal": "62990", - "codeCommune": "62100", - "libelleAcheminement": "BEAURAINVILLE", - "nomCommune": "BEAURAINVILLE" + "codePostal": "55200", + "codeCommune": "55085", + "libelleAcheminement": "BROUSSEY RAULECOURT", + "nomCommune": "BROUSSEY RAULECOURT" }, { - "codePostal": "40240", - "codeCommune": "40158", - "libelleAcheminement": "LOSSE", - "nomCommune": "LOSSE" + "codePostal": "57660", + "codeCommune": "57384", + "libelleAcheminement": "LANING", + "nomCommune": "LANING" }, { - "codePostal": "33670", - "codeCommune": "33408", - "libelleAcheminement": "ST GENES DE LOMBAUD", - "nomCommune": "ST GENES DE LOMBAUD" + "codePostal": "65590", + "codeCommune": "65379", + "libelleAcheminement": "RIS", + "nomCommune": "RIS" }, { - "codePostal": "02310", - "codeCommune": "02555", - "libelleAcheminement": "NOGENT L ARTAUD", - "nomCommune": "NOGENT L ARTAUD" + "codePostal": "11310", + "codeCommune": "11428", + "libelleAcheminement": "VILLEMAGNE", + "nomCommune": "VILLEMAGNE" }, { - "codePostal": "62130", - "codeCommune": "62101", - "libelleAcheminement": "BEAUVOIS", - "nomCommune": "BEAUVOIS" + "codePostal": "65400", + "codeCommune": "65032", + "libelleAcheminement": "ARRENS MARSOUS", + "nomCommune": "ARRENS MARSOUS" }, { - "codePostal": "40630", - "codeCommune": "40165", - "libelleAcheminement": "LUGLON", - "nomCommune": "LUGLON" + "codePostal": "55290", + "codeCommune": "55087", + "libelleAcheminement": "BURE", + "nomCommune": "BURE" }, { - "codePostal": "33620", - "codeCommune": "33439", - "libelleAcheminement": "ST MARIENS", - "nomCommune": "ST MARIENS" + "codePostal": "57620", + "codeCommune": "57390", + "libelleAcheminement": "LEMBERG", + "nomCommune": "LEMBERG" }, { - "codePostal": "02340", - "codeCommune": "02556", - "libelleAcheminement": "NOIRCOURT", - "nomCommune": "NOIRCOURT" + "codePostal": "65350", + "codeCommune": "65380", + "libelleAcheminement": "SABALOS", + "nomCommune": "SABALOS" }, { - "codePostal": "62240", - "codeCommune": "62102", - "libelleAcheminement": "BECOURT", - "nomCommune": "BECOURT" + "codePostal": "11360", + "codeCommune": "11431", + "libelleAcheminement": "VILLENEUVE LES CORBIERES", + "nomCommune": "VILLENEUVE LES CORBIERES" }, { - "codePostal": "40270", - "codeCommune": "40166", - "libelleAcheminement": "LUSSAGNET", - "nomCommune": "LUSSAGNET" + "codePostal": "65200", + "codeCommune": "65043", + "libelleAcheminement": "ASTUGUE", + "nomCommune": "ASTUGUE" }, { - "codePostal": "33540", - "codeCommune": "33443", - "libelleAcheminement": "ST MARTIN DE LERM", - "nomCommune": "ST MARTIN DE LERM" + "codePostal": "55300", + "codeCommune": "55093", + "libelleAcheminement": "BUXIERES SOUS LES COTES", + "nomCommune": "BUXIERES SOUS LES COTES" }, { - "codePostal": "02860", - "codeCommune": "02561", - "libelleAcheminement": "NOUVION LE VINEUX", - "nomCommune": "NOUVION LE VINEUX" + "codePostal": "57630", + "codeCommune": "57399", + "libelleAcheminement": "LEZEY", + "nomCommune": "LEZEY" }, { - "codePostal": "62134", - "codeCommune": "62109", - "libelleAcheminement": "BERGUENEUSE", - "nomCommune": "BERGUENEUSE" + "codePostal": "65220", + "codeCommune": "65383", + "libelleAcheminement": "SADOURNIN", + "nomCommune": "SADOURNIN" }, { - "codePostal": "40250", - "codeCommune": "40177", - "libelleAcheminement": "MAYLIS", - "nomCommune": "MAYLIS" + "codePostal": "11150", + "codeCommune": "11434", + "libelleAcheminement": "VILLEPINTE", + "nomCommune": "VILLEPINTE" }, { - "codePostal": "33910", - "codeCommune": "33445", - "libelleAcheminement": "ST MARTIN DU BOIS", - "nomCommune": "ST MARTIN DU BOIS" + "codePostal": "65380", + "codeCommune": "65052", + "libelleAcheminement": "AVERAN", + "nomCommune": "AVERAN" }, { - "codePostal": "02100", - "codeCommune": "02571", - "libelleAcheminement": "OMISSY", - "nomCommune": "OMISSY" + "codePostal": "55300", + "codeCommune": "55093", + "libelleAcheminement": "BUXIERES SOUS LES COTES", + "nomCommune": "BUXIERES SOUS LES COTES" }, { - "codePostal": "62810", - "codeCommune": "62111", - "libelleAcheminement": "BERLENCOURT LE CAUROY", - "nomCommune": "BERLENCOURT LE CAUROY" + "codePostal": "57660", + "codeCommune": "57409", + "libelleAcheminement": "LIXING LES ST AVOLD", + "nomCommune": "LIXING LES ST AVOLD" }, { - "codePostal": "40190", - "codeCommune": "40193", - "libelleAcheminement": "MONTEGUT", - "nomCommune": "MONTEGUT" + "codePostal": "65100", + "codeCommune": "65386", + "libelleAcheminement": "ST CREAC", + "nomCommune": "ST CREAC" }, { - "codePostal": "33230", - "codeCommune": "33447", - "libelleAcheminement": "ST MEDARD DE GUIZIERES", - "nomCommune": "ST MEDARD DE GUIZIERES" + "codePostal": "11150", + "codeCommune": "11438", + "libelleAcheminement": "VILLESISCLE", + "nomCommune": "VILLESISCLE" }, { - "codePostal": "02370", - "codeCommune": "02577", - "libelleAcheminement": "OSTEL", - "nomCommune": "OSTEL" + "codePostal": "65130", + "codeCommune": "65054", + "libelleAcheminement": "AVEZAC PRAT LAHITTE", + "nomCommune": "AVEZAC PRAT LAHITTE" }, { - "codePostal": "62450", - "codeCommune": "62121", - "libelleAcheminement": "BEUGNATRE", - "nomCommune": "BEUGNATRE" + "codePostal": "55140", + "codeCommune": "55097", + "libelleAcheminement": "CHALAINES", + "nomCommune": "CHALAINES" }, { - "codePostal": "40410", - "codeCommune": "40200", - "libelleAcheminement": "MOUSTEY", - "nomCommune": "MOUSTEY" + "codePostal": "57740", + "codeCommune": "57413", + "libelleAcheminement": "LONGEVILLE LES ST AVOLD", + "nomCommune": "LONGEVILLE LES ST AVOLD" }, { - "codePostal": "33650", - "codeCommune": "33454", - "libelleAcheminement": "ST MORILLON", - "nomCommune": "ST MORILLON" + "codePostal": "65500", + "codeCommune": "65390", + "libelleAcheminement": "ST LEZER", + "nomCommune": "ST LEZER" }, { - "codePostal": "02210", - "codeCommune": "02579", - "libelleAcheminement": "OULCHY LA VILLE", - "nomCommune": "OULCHY LA VILLE" + "codePostal": "11170", + "codeCommune": "11439", + "libelleAcheminement": "VILLESPY", + "nomCommune": "VILLESPY" }, { - "codePostal": "62170", - "codeCommune": "62124", - "libelleAcheminement": "BEUTIN", - "nomCommune": "BEUTIN" + "codePostal": "65200", + "codeCommune": "65059", + "libelleAcheminement": "BAGNERES DE BIGORRE", + "nomCommune": "BAGNERES DE BIGORRE" }, { - "codePostal": "40320", - "codeCommune": "40219", - "libelleAcheminement": "PAYROS CAZAUTETS", - "nomCommune": "PAYROS CAZAUTETS" + "codePostal": "55140", + "codeCommune": "55100", + "libelleAcheminement": "CHAMPOUGNY", + "nomCommune": "CHAMPOUGNY" }, { - "codePostal": "33210", - "codeCommune": "33457", - "libelleAcheminement": "ST PARDON DE CONQUES", - "nomCommune": "ST PARDON DE CONQUES" + "codePostal": "57420", + "codeCommune": "57416", + "libelleAcheminement": "LORRY MARDIGNY", + "nomCommune": "LORRY MARDIGNY" }, { - "codePostal": "02000", - "codeCommune": "02589", - "libelleAcheminement": "PARGNY FILAIN", - "nomCommune": "PARGNY FILAIN" + "codePostal": "65370", + "codeCommune": "65391", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "62138", - "codeCommune": "62132", - "libelleAcheminement": "BILLY BERCLAU", - "nomCommune": "BILLY BERCLAU" + "codePostal": "12300", + "codeCommune": "12004", + "libelleAcheminement": "ALMONT LES JUNIES", + "nomCommune": "ALMONT LES JUNIES" }, { - "codePostal": "40380", - "codeCommune": "40235", - "libelleAcheminement": "POYANNE", - "nomCommune": "POYANNE" + "codePostal": "65710", + "codeCommune": "65059", + "libelleAcheminement": "BAGNERES DE BIGORRE", + "nomCommune": "BAGNERES DE BIGORRE" }, { - "codePostal": "33350", - "codeCommune": "33460", - "libelleAcheminement": "ST PEY DE CASTETS", - "nomCommune": "ST PEY DE CASTETS" + "codePostal": "55120", + "codeCommune": "55117", + "libelleAcheminement": "CLERMONT EN ARGONNE", + "nomCommune": "CLERMONT EN ARGONNE" }, { - "codePostal": "02240", - "codeCommune": "02592", - "libelleAcheminement": "PARPEVILLE", - "nomCommune": "PARPEVILLE" + "codePostal": "57510", + "codeCommune": "57419", + "libelleAcheminement": "LOUPERSHOUSE", + "nomCommune": "LOUPERSHOUSE" }, { - "codePostal": "62420", - "codeCommune": "62133", - "libelleAcheminement": "BILLY MONTIGNY", - "nomCommune": "BILLY MONTIGNY" + "codePostal": "65370", + "codeCommune": "65398", + "libelleAcheminement": "SALECHAN", + "nomCommune": "SALECHAN" }, { - "codePostal": "40310", - "codeCommune": "40242", - "libelleAcheminement": "RIMBEZ ET BAUDIETS", - "nomCommune": "RIMBEZ ET BAUDIETS" + "codePostal": "12260", + "codeCommune": "12007", + "libelleAcheminement": "AMBEYRAC", + "nomCommune": "AMBEYRAC" }, { - "codePostal": "33660", - "codeCommune": "33472", - "libelleAcheminement": "ST SAUVEUR DE PUYNORMAND", - "nomCommune": "ST SAUVEUR DE PUYNORMAND" + "codePostal": "65240", + "codeCommune": "65066", + "libelleAcheminement": "BARRANCOUEU", + "nomCommune": "BARRANCOUEU" }, { - "codePostal": "02320", - "codeCommune": "02602", - "libelleAcheminement": "PINON", - "nomCommune": "PINON" + "codePostal": "55120", + "codeCommune": "55117", + "libelleAcheminement": "CLERMONT EN ARGONNE", + "nomCommune": "CLERMONT EN ARGONNE" }, { - "codePostal": "62770", - "codeCommune": "62142", - "libelleAcheminement": "BLINGEL", - "nomCommune": "BLINGEL" + "codePostal": "57730", + "codeCommune": "57428", + "libelleAcheminement": "MACHEREN", + "nomCommune": "MACHEREN" }, { - "codePostal": "40370", - "codeCommune": "40243", - "libelleAcheminement": "RION DES LANDES", - "nomCommune": "RION DES LANDES" + "codePostal": "65120", + "codeCommune": "65399", + "libelleAcheminement": "SALIGOS", + "nomCommune": "SALIGOS" }, { - "codePostal": "33660", - "codeCommune": "33478", - "libelleAcheminement": "ST SEURIN SUR L ISLE", - "nomCommune": "ST SEURIN SUR L ISLE" + "codePostal": "12120", + "codeCommune": "12011", + "libelleAcheminement": "ARVIEU", + "nomCommune": "ARVIEU" }, { - "codePostal": "02160", - "codeCommune": "02612", - "libelleAcheminement": "PONT ARCY", - "nomCommune": "PONT ARCY" + "codePostal": "65130", + "codeCommune": "65071", + "libelleAcheminement": "BATSERE", + "nomCommune": "BATSERE" }, { - "codePostal": "62960", - "codeCommune": "62153", - "libelleAcheminement": "BOMY", - "nomCommune": "BOMY" + "codePostal": "55000", + "codeCommune": "55123", + "libelleAcheminement": "LES HAUTS DE CHEE", + "nomCommune": "LES HAUTS DE CHEE" }, { - "codePostal": "40800", - "codeCommune": "40247", - "libelleAcheminement": "ST AGNET", - "nomCommune": "ST AGNET" + "codePostal": "57480", + "codeCommune": "57439", + "libelleAcheminement": "MANDEREN RITZING", + "nomCommune": "MANDEREN RITZING" }, { - "codePostal": "33350", - "codeCommune": "33499", - "libelleAcheminement": "LES SALLES DE CASTILLON", - "nomCommune": "LES SALLES DE CASTILLON" + "codePostal": "65120", + "codeCommune": "65399", + "libelleAcheminement": "SALIGOS", + "nomCommune": "SALIGOS" }, { - "codePostal": "02490", - "codeCommune": "02615", - "libelleAcheminement": "PONTRUET", - "nomCommune": "PONTRUET" + "codePostal": "12700", + "codeCommune": "12012", + "libelleAcheminement": "ASPRIERES", + "nomCommune": "ASPRIERES" }, { - "codePostal": "62270", - "codeCommune": "62163", - "libelleAcheminement": "BOURET SUR CANCHE", - "nomCommune": "BOURET SUR CANCHE" + "codePostal": "65250", + "codeCommune": "65076", + "libelleAcheminement": "BAZUS NESTE", + "nomCommune": "BAZUS NESTE" }, { - "codePostal": "40390", - "codeCommune": "40248", - "libelleAcheminement": "ST ANDRE DE SEIGNANX", - "nomCommune": "ST ANDRE DE SEIGNANX" + "codePostal": "55260", + "codeCommune": "55129", + "libelleAcheminement": "COUROUVRE", + "nomCommune": "COUROUVRE" }, { - "codePostal": "33210", - "codeCommune": "33504", - "libelleAcheminement": "SAUTERNES", - "nomCommune": "SAUTERNES" + "codePostal": "57590", + "codeCommune": "57440", + "libelleAcheminement": "MANHOUE", + "nomCommune": "MANHOUE" }, { - "codePostal": "02270", - "codeCommune": "02617", - "libelleAcheminement": "POUILLY SUR SERRE", - "nomCommune": "POUILLY SUR SERRE" + "codePostal": "65150", + "codeCommune": "65416", + "libelleAcheminement": "SEICH", + "nomCommune": "SEICH" }, { - "codePostal": "62134", - "codeCommune": "62171", - "libelleAcheminement": "BOYAVAL", - "nomCommune": "BOYAVAL" + "codePostal": "12260", + "codeCommune": "12018", + "libelleAcheminement": "BALAGUIER D OLT", + "nomCommune": "BALAGUIER D OLT" }, { - "codePostal": "40700", - "codeCommune": "40253", - "libelleAcheminement": "ST CRICQ CHALOSSE", - "nomCommune": "ST CRICQ CHALOSSE" + "codePostal": "65400", + "codeCommune": "65077", + "libelleAcheminement": "BEAUCENS", + "nomCommune": "BEAUCENS" }, { - "codePostal": "33490", - "codeCommune": "33510", - "libelleAcheminement": "SEMENS", - "nomCommune": "SEMENS" + "codePostal": "55500", + "codeCommune": "55141", + "libelleAcheminement": "DAGONVILLE", + "nomCommune": "DAGONVILLE" }, { - "codePostal": "02190", - "codeCommune": "02627", - "libelleAcheminement": "PROVISEUX ET PLESNOY", - "nomCommune": "PROVISEUX ET PLESNOY" + "codePostal": "57535", + "codeCommune": "57443", + "libelleAcheminement": "MARANGE SILVANGE", + "nomCommune": "MARANGE SILVANGE" }, { - "codePostal": "62140", - "codeCommune": "62175", - "libelleAcheminement": "BREVILLERS", - "nomCommune": "BREVILLERS" + "codePostal": "65330", + "codeCommune": "65419", + "libelleAcheminement": "SENTOUS", + "nomCommune": "SENTOUS" }, { - "codePostal": "40190", - "codeCommune": "40255", - "libelleAcheminement": "ST CRICQ VILLENEUVE", - "nomCommune": "ST CRICQ VILLENEUVE" + "codePostal": "12490", + "codeCommune": "12022", + "libelleAcheminement": "LA BASTIDE PRADINES", + "nomCommune": "LA BASTIDE PRADINES" }, { - "codePostal": "33760", - "codeCommune": "33515", - "libelleAcheminement": "SOULIGNAC", - "nomCommune": "SOULIGNAC" + "codePostal": "65710", + "codeCommune": "65078", + "libelleAcheminement": "BEAUDEAN", + "nomCommune": "BEAUDEAN" }, { - "codePostal": "02120", - "codeCommune": "02629", - "libelleAcheminement": "PUISIEUX ET CLANLIEU", - "nomCommune": "PUISIEUX ET CLANLIEU" + "codePostal": "55400", + "codeCommune": "55143", + "libelleAcheminement": "DAMLOUP", + "nomCommune": "DAMLOUP" }, { - "codePostal": "62700", - "codeCommune": "62178", - "libelleAcheminement": "BRUAY LA BUISSIERE", - "nomCommune": "BRUAY LA BUISSIERE" + "codePostal": "57155", + "codeCommune": "57447", + "libelleAcheminement": "MARLY", + "nomCommune": "MARLY" }, { - "codePostal": "40120", - "codeCommune": "40262", - "libelleAcheminement": "ST GOR", - "nomCommune": "ST GOR" + "codePostal": "65320", + "codeCommune": "65439", + "libelleAcheminement": "TARASTEIX", + "nomCommune": "TARASTEIX" }, { - "codePostal": "33550", - "codeCommune": "33518", - "libelleAcheminement": "TABANAC", - "nomCommune": "TABANAC" + "codePostal": "12500", + "codeCommune": "12027", + "libelleAcheminement": "BESSUEJOULS", + "nomCommune": "BESSUEJOULS" }, { - "codePostal": "02380", - "codeCommune": "02632", - "libelleAcheminement": "QUINCY BASSE", - "nomCommune": "QUINCY BASSE" + "codePostal": "65130", + "codeCommune": "65081", + "libelleAcheminement": "BENQUE MOLERE", + "nomCommune": "BENQUE MOLERE" }, { - "codePostal": "62128", - "codeCommune": "62185", - "libelleAcheminement": "BULLECOURT", - "nomCommune": "BULLECOURT" + "codePostal": "55500", + "codeCommune": "55144", + "libelleAcheminement": "DAMMARIE SUR SAULX", + "nomCommune": "DAMMARIE SUR SAULX" }, { - "codePostal": "40230", - "codeCommune": "40264", - "libelleAcheminement": "ST JEAN DE MARSACQ", - "nomCommune": "ST JEAN DE MARSACQ" + "codePostal": "57530", + "codeCommune": "57449", + "libelleAcheminement": "MARSILLY", + "nomCommune": "MARSILLY" }, { - "codePostal": "33590", - "codeCommune": "33521", - "libelleAcheminement": "TALAIS", - "nomCommune": "TALAIS" + "codePostal": "65350", + "codeCommune": "65443", + "libelleAcheminement": "THUY", + "nomCommune": "THUY" }, { - "codePostal": "02240", - "codeCommune": "02636", - "libelleAcheminement": "REGNY", - "nomCommune": "REGNY" + "codePostal": "12160", + "codeCommune": "12032", + "libelleAcheminement": "BOUSSAC", + "nomCommune": "BOUSSAC" }, { - "codePostal": "62132", - "codeCommune": "62191", - "libelleAcheminement": "CAFFIERS", - "nomCommune": "CAFFIERS" + "codePostal": "65410", + "codeCommune": "65092", + "libelleAcheminement": "BEYREDE JUMET CAMOUS", + "nomCommune": "BEYREDE JUMET CAMOUS" }, { - "codePostal": "40390", - "codeCommune": "40268", - "libelleAcheminement": "ST LAURENT DE GOSSE", - "nomCommune": "ST LAURENT DE GOSSE" + "codePostal": "55130", + "codeCommune": "55148", + "libelleAcheminement": "DELOUZE ROSIERES", + "nomCommune": "DELOUZE ROSIERES" }, { - "codePostal": "33760", - "codeCommune": "33523", - "libelleAcheminement": "TARGON", - "nomCommune": "TARGON" + "codePostal": "57140", + "codeCommune": "57452", + "libelleAcheminement": "LA MAXE", + "nomCommune": "LA MAXE" }, { - "codePostal": "02270", - "codeCommune": "02638", - "libelleAcheminement": "REMIES", - "nomCommune": "REMIES" + "codePostal": "65150", + "codeCommune": "65444", + "libelleAcheminement": "TIBIRAN JAUNAC", + "nomCommune": "TIBIRAN JAUNAC" }, { - "codePostal": "62182", - "codeCommune": "62192", - "libelleAcheminement": "CAGNICOURT", - "nomCommune": "CAGNICOURT" + "codePostal": "12240", + "codeCommune": "12054", + "libelleAcheminement": "LA CAPELLE BLEYS", + "nomCommune": "LA CAPELLE BLEYS" }, { - "codePostal": "40300", - "codeCommune": "40269", - "libelleAcheminement": "ST LON LES MINES", - "nomCommune": "ST LON LES MINES" + "codePostal": "65330", + "codeCommune": "65097", + "libelleAcheminement": "BONREPOS", + "nomCommune": "BONREPOS" }, { - "codePostal": "33930", - "codeCommune": "33540", - "libelleAcheminement": "VENDAYS MONTALIVET", - "nomCommune": "VENDAYS MONTALIVET" + "codePostal": "55130", + "codeCommune": "55148", + "libelleAcheminement": "DELOUZE ROSIERES", + "nomCommune": "DELOUZE ROSIERES" }, { - "codePostal": "02110", - "codeCommune": "02647", - "libelleAcheminement": "RIBEAUVILLE", - "nomCommune": "RIBEAUVILLE" + "codePostal": "57320", + "codeCommune": "57457", + "libelleAcheminement": "MENSKIRCH", + "nomCommune": "MENSKIRCH" }, { - "codePostal": "62690", - "codeCommune": "62198", - "libelleAcheminement": "CAMBLIGNEUL", - "nomCommune": "CAMBLIGNEUL" + "codePostal": "65130", + "codeCommune": "65445", + "libelleAcheminement": "TILHOUSE", + "nomCommune": "TILHOUSE" }, { - "codePostal": "40500", - "codeCommune": "40282", - "libelleAcheminement": "ST SEVER", - "nomCommune": "ST SEVER" + "codePostal": "12160", + "codeCommune": "12056", + "libelleAcheminement": "BARAQUEVILLE", + "nomCommune": "BARAQUEVILLE" }, { - "codePostal": "33140", - "codeCommune": "33550", - "libelleAcheminement": "VILLENAVE D ORNON", - "nomCommune": "VILLENAVE D ORNON" + "codePostal": "65400", + "codeCommune": "65098", + "libelleAcheminement": "BOO SILHEN", + "nomCommune": "BOO SILHEN" }, { - "codePostal": "02140", - "codeCommune": "02652", - "libelleAcheminement": "ROGNY", - "nomCommune": "ROGNY" + "codePostal": "55120", + "codeCommune": "55155", + "libelleAcheminement": "DOMBASLE EN ARGONNE", + "nomCommune": "DOMBASLE EN ARGONNE" }, { - "codePostal": "62176", - "codeCommune": "62201", - "libelleAcheminement": "CAMIERS", - "nomCommune": "CAMIERS" + "codePostal": "57980", + "codeCommune": "57466", + "libelleAcheminement": "METZING", + "nomCommune": "METZING" }, { - "codePostal": "40990", - "codeCommune": "40283", - "libelleAcheminement": "ST VINCENT DE PAUL", - "nomCommune": "ST VINCENT DE PAUL" + "codePostal": "65170", + "codeCommune": "65450", + "libelleAcheminement": "TRAMEZAIGUES", + "nomCommune": "TRAMEZAIGUES" }, { - "codePostal": "33720", - "codeCommune": "33552", - "libelleAcheminement": "VIRELADE", - "nomCommune": "VIRELADE" + "codePostal": "12120", + "codeCommune": "12057", + "libelleAcheminement": "CASSAGNES BEGONHES", + "nomCommune": "CASSAGNES BEGONHES" }, { - "codePostal": "02310", - "codeCommune": "02653", - "libelleAcheminement": "ROMENY SUR MARNE", - "nomCommune": "ROMENY SUR MARNE" + "codePostal": "65590", + "codeCommune": "65099", + "libelleAcheminement": "BORDERES LOURON", + "nomCommune": "BORDERES LOURON" }, { - "codePostal": "62340", - "codeCommune": "62203", - "libelleAcheminement": "CAMPAGNE LES GUINES", - "nomCommune": "CAMPAGNE LES GUINES" + "codePostal": "55110", + "codeCommune": "55167", + "libelleAcheminement": "DUN SUR MEUSE", + "nomCommune": "DUN SUR MEUSE" }, { - "codePostal": "40320", - "codeCommune": "40286", - "libelleAcheminement": "SAMADET", - "nomCommune": "SAMADET" + "codePostal": "57530", + "codeCommune": "57482", + "libelleAcheminement": "OGY MONTOY FLANVILLE", + "nomCommune": "OGY MONTOY FLANVILLE" }, { - "codePostal": "33370", - "codeCommune": "33554", - "libelleAcheminement": "YVRAC", - "nomCommune": "YVRAC" + "codePostal": "65200", + "codeCommune": "65451", + "libelleAcheminement": "TREBONS", + "nomCommune": "TREBONS" }, { - "codePostal": "02120", - "codeCommune": "02654", - "libelleAcheminement": "ROMERY", - "nomCommune": "ROMERY" + "codePostal": "12210", + "codeCommune": "12058", + "libelleAcheminement": "CASSUEJOULS", + "nomCommune": "CASSUEJOULS" }, { - "codePostal": "62690", - "codeCommune": "62211", - "libelleAcheminement": "CAPELLE FERMONT", - "nomCommune": "CAPELLE FERMONT" + "codePostal": "65130", + "codeCommune": "65105", + "libelleAcheminement": "BOURG DE BIGORRE", + "nomCommune": "BOURG DE BIGORRE" }, { - "codePostal": "40120", - "codeCommune": "40288", - "libelleAcheminement": "SARBAZAN", - "nomCommune": "SARBAZAN" + "codePostal": "55160", + "codeCommune": "55172", + "libelleAcheminement": "LES EPARGES", + "nomCommune": "LES EPARGES" }, { - "codePostal": "34290", - "codeCommune": "34001", - "libelleAcheminement": "ABEILHAN", - "nomCommune": "ABEILHAN" + "codePostal": "57645", + "codeCommune": "57482", + "libelleAcheminement": "OGY MONTOY FLANVILLE", + "nomCommune": "OGY MONTOY FLANVILLE" }, { - "codePostal": "02590", - "codeCommune": "02658", - "libelleAcheminement": "ROUPY", - "nomCommune": "ROUPY" + "codePostal": "65220", + "codeCommune": "65452", + "libelleAcheminement": "TRIE SUR BAISE", + "nomCommune": "TRIE SUR BAISE" }, { - "codePostal": "62830", - "codeCommune": "62214", - "libelleAcheminement": "CARLY", - "nomCommune": "CARLY" + "codePostal": "12350", + "codeCommune": "12071", + "libelleAcheminement": "COMPOLIBAT", + "nomCommune": "COMPOLIBAT" }, { - "codePostal": "40700", - "codeCommune": "40298", - "libelleAcheminement": "SERRES GASTON", - "nomCommune": "SERRES GASTON" + "codePostal": "65170", + "codeCommune": "65106", + "libelleAcheminement": "BOURISP", + "nomCommune": "BOURISP" }, { - "codePostal": "34300", - "codeCommune": "34003", - "libelleAcheminement": "AGDE", - "nomCommune": "AGDE" + "codePostal": "55240", + "codeCommune": "55182", + "libelleAcheminement": "ETON", + "nomCommune": "ETON" }, { - "codePostal": "02000", - "codeCommune": "02661", - "libelleAcheminement": "ROYAUCOURT ET CHAILVET", - "nomCommune": "ROYAUCOURT ET CHAILVET" + "codePostal": "57170", + "codeCommune": "57485", + "libelleAcheminement": "MORVILLE LES VIC", + "nomCommune": "MORVILLE LES VIC" }, { - "codePostal": "62270", - "codeCommune": "62234", - "libelleAcheminement": "CONCHY SUR CANCHE", - "nomCommune": "CONCHY SUR CANCHE" + "codePostal": "65700", + "codeCommune": "65462", + "libelleAcheminement": "VIDOUZE", + "nomCommune": "VIDOUZE" }, { - "codePostal": "40230", - "codeCommune": "40317", - "libelleAcheminement": "TOSSE", - "nomCommune": "TOSSE" + "codePostal": "12100", + "codeCommune": "12072", + "libelleAcheminement": "COMPREGNAC", + "nomCommune": "COMPREGNAC" }, { - "codePostal": "34190", - "codeCommune": "34005", - "libelleAcheminement": "AGONES", - "nomCommune": "AGONES" + "codePostal": "65100", + "codeCommune": "65107", + "libelleAcheminement": "BOURREAC", + "nomCommune": "BOURREAC" }, { - "codePostal": "02210", - "codeCommune": "02665", - "libelleAcheminement": "GRAND ROZOY", - "nomCommune": "GRAND ROZOY" + "codePostal": "55200", + "codeCommune": "55184", + "libelleAcheminement": "EUVILLE", + "nomCommune": "EUVILLE" }, { - "codePostal": "62360", - "codeCommune": "62235", - "libelleAcheminement": "CONDETTE", - "nomCommune": "CONDETTE" + "codePostal": "57590", + "codeCommune": "57486", + "libelleAcheminement": "MORVILLE SUR NIED", + "nomCommune": "MORVILLE SUR NIED" }, { - "codePostal": "40380", - "codeCommune": "40324", - "libelleAcheminement": "VICQ D AURIBAT", - "nomCommune": "VICQ D AURIBAT" + "codePostal": "65360", + "codeCommune": "65464", + "libelleAcheminement": "VIELLE ADOUR", + "nomCommune": "VIELLE ADOUR" }, { - "codePostal": "34380", - "codeCommune": "34012", - "libelleAcheminement": "ARGELLIERS", - "nomCommune": "ARGELLIERS" + "codePostal": "12120", + "codeCommune": "12073", + "libelleAcheminement": "COMPS LA GRAND VILLE", + "nomCommune": "COMPS LA GRAND VILLE" }, { - "codePostal": "02200", - "codeCommune": "02667", - "libelleAcheminement": "SACONIN ET BREUIL", - "nomCommune": "SACONIN ET BREUIL" + "codePostal": "65460", + "codeCommune": "65108", + "libelleAcheminement": "BOURS", + "nomCommune": "BOURS" }, { - "codePostal": "62130", - "codeCommune": "62238", - "libelleAcheminement": "CONTEVILLE EN TERNOIS", - "nomCommune": "CONTEVILLE EN TERNOIS" + "codePostal": "55000", + "codeCommune": "55186", + "libelleAcheminement": "FAINS VEEL", + "nomCommune": "FAINS VEEL" }, { - "codePostal": "40320", - "codeCommune": "40325", - "libelleAcheminement": "VIELLE TURSAN", - "nomCommune": "VIELLE TURSAN" + "codePostal": "57670", + "codeCommune": "57494", + "libelleAcheminement": "MUNSTER", + "nomCommune": "MUNSTER" }, { - "codePostal": "34480", - "codeCommune": "34018", - "libelleAcheminement": "AUTIGNAC", - "nomCommune": "AUTIGNAC" + "codePostal": "66480", + "codeCommune": "66001", + "libelleAcheminement": "L ALBERE", + "nomCommune": "L ALBERE" }, { - "codePostal": "02290", - "codeCommune": "02673", - "libelleAcheminement": "ST CHRISTOPHE A BERRY", - "nomCommune": "ST CHRISTOPHE A BERRY" + "codePostal": "12320", + "codeCommune": "12076", + "libelleAcheminement": "CONQUES EN ROUERGUE", + "nomCommune": "CONQUES EN ROUERGUE" }, { - "codePostal": "62231", - "codeCommune": "62239", - "libelleAcheminement": "COQUELLES", - "nomCommune": "COQUELLES" + "codePostal": "65130", + "codeCommune": "65111", + "libelleAcheminement": "BULAN", + "nomCommune": "BULAN" }, { - "codePostal": "40560", - "codeCommune": "40326", - "libelleAcheminement": "VIELLE ST GIRONS", - "nomCommune": "VIELLE ST GIRONS" + "codePostal": "55100", + "codeCommune": "55189", + "libelleAcheminement": "FLEURY DEVANT DOUAUMONT", + "nomCommune": "FLEURY DEVANT DOUAUMONT" }, { - "codePostal": "34260", - "codeCommune": "34019", - "libelleAcheminement": "AVENE", - "nomCommune": "AVENE" + "codePostal": "57670", + "codeCommune": "57497", + "libelleAcheminement": "NELLING", + "nomCommune": "NELLING" }, { - "codePostal": "02220", - "codeCommune": "02682", - "libelleAcheminement": "ST MARD", - "nomCommune": "ST MARD" + "codePostal": "66540", + "codeCommune": "66012", + "libelleAcheminement": "BAHO", + "nomCommune": "BAHO" }, { - "codePostal": "62760", - "codeCommune": "62242", - "libelleAcheminement": "COUIN", - "nomCommune": "COUIN" + "codePostal": "12550", + "codeCommune": "12080", + "libelleAcheminement": "COUPIAC", + "nomCommune": "COUPIAC" }, { - "codePostal": "40560", - "codeCommune": "40326", - "libelleAcheminement": "VIELLE ST GIRONS", - "nomCommune": "VIELLE ST GIRONS" + "codePostal": "65190", + "codeCommune": "65118", + "libelleAcheminement": "CAHARET", + "nomCommune": "CAHARET" }, { - "codePostal": "34290", - "codeCommune": "34025", - "libelleAcheminement": "BASSAN", - "nomCommune": "BASSAN" + "codePostal": "55400", + "codeCommune": "55191", + "libelleAcheminement": "FOAMEIX ORNEL", + "nomCommune": "FOAMEIX ORNEL" }, { - "codePostal": "02110", - "codeCommune": "02683", - "libelleAcheminement": "ST MARTIN RIVIERE", - "nomCommune": "ST MARTIN RIVIERE" + "codePostal": "57700", + "codeCommune": "57498", + "libelleAcheminement": "NEUFCHEF", + "nomCommune": "NEUFCHEF" }, { - "codePostal": "62310", - "codeCommune": "62257", - "libelleAcheminement": "CREQUY", - "nomCommune": "CREQUY" + "codePostal": "66390", + "codeCommune": "66014", + "libelleAcheminement": "BAIXAS", + "nomCommune": "BAIXAS" }, { - "codePostal": "41400", - "codeCommune": "41002", - "libelleAcheminement": "ANGE", - "nomCommune": "ANGE" + "codePostal": "12800", + "codeCommune": "12085", + "libelleAcheminement": "CRESPIN", + "nomCommune": "CRESPIN" }, { - "codePostal": "34160", - "codeCommune": "34027", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "65500", + "codeCommune": "65119", + "libelleAcheminement": "CAIXON", + "nomCommune": "CAIXON" }, { - "codePostal": "02300", - "codeCommune": "02686", - "libelleAcheminement": "ST PAUL AUX BOIS", - "nomCommune": "ST PAUL AUX BOIS" + "codePostal": "55110", + "codeCommune": "55192", + "libelleAcheminement": "FONTAINES ST CLAIR", + "nomCommune": "FONTAINES ST CLAIR" }, { - "codePostal": "62560", - "codeCommune": "62267", - "libelleAcheminement": "DENNEBROEUCQ", - "nomCommune": "DENNEBROEUCQ" + "codePostal": "57670", + "codeCommune": "57501", + "libelleAcheminement": "NEUFVILLAGE", + "nomCommune": "NEUFVILLAGE" }, { - "codePostal": "41330", - "codeCommune": "41009", - "libelleAcheminement": "AVERDON", - "nomCommune": "AVERDON" + "codePostal": "66420", + "codeCommune": "66017", + "libelleAcheminement": "LE BARCARES", + "nomCommune": "LE BARCARES" }, { - "codePostal": "34550", - "codeCommune": "34031", - "libelleAcheminement": "BESSAN", - "nomCommune": "BESSAN" + "codePostal": "12210", + "codeCommune": "12088", + "libelleAcheminement": "CURIERES", + "nomCommune": "CURIERES" }, { - "codePostal": "02350", - "codeCommune": "02690", - "libelleAcheminement": "STE PREUVE", - "nomCommune": "STE PREUVE" + "codePostal": "65710", + "codeCommune": "65123", + "libelleAcheminement": "CAMPAN", + "nomCommune": "CAMPAN" }, { - "codePostal": "62240", - "codeCommune": "62268", - "libelleAcheminement": "DESVRES", - "nomCommune": "DESVRES" + "codePostal": "55250", + "codeCommune": "55194", + "libelleAcheminement": "FOUCAUCOURT SUR THABAS", + "nomCommune": "FOUCAUCOURT SUR THABAS" }, { - "codePostal": "41100", - "codeCommune": "41010", - "libelleAcheminement": "AZE", - "nomCommune": "AZE" + "codePostal": "57560", + "codeCommune": "57504", + "libelleAcheminement": "NIDERHOFF", + "nomCommune": "NIDERHOFF" }, { - "codePostal": "34500", - "codeCommune": "34032", - "libelleAcheminement": "BEZIERS", - "nomCommune": "BEZIERS" + "codePostal": "66160", + "codeCommune": "66024", + "libelleAcheminement": "LE BOULOU", + "nomCommune": "LE BOULOU" }, { - "codePostal": "02640", - "codeCommune": "02694", - "libelleAcheminement": "ST SIMON", - "nomCommune": "ST SIMON" + "codePostal": "12170", + "codeCommune": "12092", + "libelleAcheminement": "DURENQUE", + "nomCommune": "DURENQUE" }, { - "codePostal": "62460", - "codeCommune": "62270", - "libelleAcheminement": "DIVION", - "nomCommune": "DIVION" + "codePostal": "65230", + "codeCommune": "65126", + "libelleAcheminement": "CAMPUZAN", + "nomCommune": "CAMPUZAN" }, { - "codePostal": "41000", - "codeCommune": "41018", - "libelleAcheminement": "BLOIS", - "nomCommune": "BLOIS" + "codePostal": "55110", + "codeCommune": "55206", + "libelleAcheminement": "GERCOURT ET DRILLANCOURT", + "nomCommune": "GERCOURT ET DRILLANCOURT" }, { - "codePostal": "34700", - "codeCommune": "34036", - "libelleAcheminement": "LE BOSC", - "nomCommune": "LE BOSC" + "codePostal": "57220", + "codeCommune": "57507", + "libelleAcheminement": "NIEDERVISSE", + "nomCommune": "NIEDERVISSE" }, { - "codePostal": "02110", - "codeCommune": "02709", - "libelleAcheminement": "SERAIN", - "nomCommune": "SERAIN" + "codePostal": "66760", + "codeCommune": "66025", + "libelleAcheminement": "BOURG MADAME", + "nomCommune": "BOURG MADAME" }, { - "codePostal": "62320", - "codeCommune": "62277", - "libelleAcheminement": "DROCOURT", - "nomCommune": "DROCOURT" + "codePostal": "12190", + "codeCommune": "12098", + "libelleAcheminement": "ESTAING", + "nomCommune": "ESTAING" }, { - "codePostal": "41270", - "codeCommune": "41024", - "libelleAcheminement": "BOURSAY", - "nomCommune": "BOURSAY" + "codePostal": "65110", + "codeCommune": "65138", + "libelleAcheminement": "CAUTERETS", + "nomCommune": "CAUTERETS" }, { - "codePostal": "34260", - "codeCommune": "34038", - "libelleAcheminement": "LE BOUSQUET D ORB", - "nomCommune": "LE BOUSQUET D ORB" + "codePostal": "55000", + "codeCommune": "55207", + "libelleAcheminement": "GERY", + "nomCommune": "GERY" }, { - "codePostal": "02220", - "codeCommune": "02711", - "libelleAcheminement": "SERCHES", - "nomCommune": "SERCHES" + "codePostal": "57320", + "codeCommune": "57516", + "libelleAcheminement": "OBERDORFF", + "nomCommune": "OBERDORFF" }, { - "codePostal": "62156", - "codeCommune": "62280", - "libelleAcheminement": "DURY", - "nomCommune": "DURY" + "codePostal": "66400", + "codeCommune": "66032", + "libelleAcheminement": "CALMEILLES", + "nomCommune": "CALMEILLES" }, { - "codePostal": "41160", - "codeCommune": "41026", - "libelleAcheminement": "BREVAINVILLE", - "nomCommune": "BREVAINVILLE" + "codePostal": "12300", + "codeCommune": "12100", + "libelleAcheminement": "FIRMI", + "nomCommune": "FIRMI" }, { - "codePostal": "34140", - "codeCommune": "34039", - "libelleAcheminement": "BOUZIGUES", - "nomCommune": "BOUZIGUES" + "codePostal": "65230", + "codeCommune": "65148", + "libelleAcheminement": "CIZOS", + "nomCommune": "CIZOS" }, { - "codePostal": "02160", - "codeCommune": "02715", - "libelleAcheminement": "SERVAL", - "nomCommune": "SERVAL" + "codePostal": "55400", + "codeCommune": "55222", + "libelleAcheminement": "GUSSAINVILLE", + "nomCommune": "GUSSAINVILLE" }, { - "codePostal": "62128", - "codeCommune": "62285", - "libelleAcheminement": "ECOUST ST MEIN", - "nomCommune": "ECOUST ST MEIN" + "codePostal": "57720", + "codeCommune": "57526", + "libelleAcheminement": "ORMERSVILLER", + "nomCommune": "ORMERSVILLER" }, { - "codePostal": "41360", - "codeCommune": "41030", - "libelleAcheminement": "CELLE", - "nomCommune": "CELLE" + "codePostal": "66140", + "codeCommune": "66037", + "libelleAcheminement": "CANET EN ROUSSILLON", + "nomCommune": "CANET EN ROUSSILLON" }, { - "codePostal": "34800", - "codeCommune": "34051", - "libelleAcheminement": "CANET", - "nomCommune": "CANET" + "codePostal": "12300", + "codeCommune": "12101", + "libelleAcheminement": "FLAGNAC", + "nomCommune": "FLAGNAC" }, { - "codePostal": "02300", - "codeCommune": "02719", - "libelleAcheminement": "SINCENY", - "nomCommune": "SINCENY" + "codePostal": "65250", + "codeCommune": "65159", + "libelleAcheminement": "ESCALA", + "nomCommune": "ESCALA" }, { - "codePostal": "62860", - "codeCommune": "62298", - "libelleAcheminement": "EPINOY", - "nomCommune": "EPINOY" + "codePostal": "55160", + "codeCommune": "55232", + "libelleAcheminement": "HARVILLE", + "nomCommune": "HARVILLE" }, { - "codePostal": "41600", - "codeCommune": "41036", - "libelleAcheminement": "CHAON", - "nomCommune": "CHAON" + "codePostal": "57410", + "codeCommune": "57535", + "libelleAcheminement": "PETIT REDERCHING", + "nomCommune": "PETIT REDERCHING" }, { - "codePostal": "34120", - "codeCommune": "34056", - "libelleAcheminement": "CASTELNAU DE GUERS", - "nomCommune": "CASTELNAU DE GUERS" + "codePostal": "66720", + "codeCommune": "66039", + "libelleAcheminement": "CARAMANY", + "nomCommune": "CARAMANY" }, { - "codePostal": "02260", - "codeCommune": "02725", - "libelleAcheminement": "SOMMERON", - "nomCommune": "SOMMERON" + "codePostal": "12260", + "codeCommune": "12104", + "libelleAcheminement": "FOISSAC", + "nomCommune": "FOISSAC" }, { - "codePostal": "62134", - "codeCommune": "62299", - "libelleAcheminement": "EPS", - "nomCommune": "EPS" + "codePostal": "65500", + "codeCommune": "65160", + "libelleAcheminement": "ESCAUNETS", + "nomCommune": "ESCAUNETS" }, { - "codePostal": "41290", - "codeCommune": "41037", - "libelleAcheminement": "LA CHAPELLE ENCHERIE", - "nomCommune": "LA CHAPELLE ENCHERIE" + "codePostal": "55160", + "codeCommune": "55237", + "libelleAcheminement": "HAUDIOMONT", + "nomCommune": "HAUDIOMONT" }, { - "codePostal": "34190", - "codeCommune": "34067", - "libelleAcheminement": "CAZILHAC", - "nomCommune": "CAZILHAC" + "codePostal": "57540", + "codeCommune": "57537", + "libelleAcheminement": "PETITE ROSSELLE", + "nomCommune": "PETITE ROSSELLE" }, { - "codePostal": "02250", - "codeCommune": "02737", - "libelleAcheminement": "TAVAUX ET PONTSERICOURT", - "nomCommune": "TAVAUX ET PONTSERICOURT" + "codePostal": "66130", + "codeCommune": "66040", + "libelleAcheminement": "CASEFABRE", + "nomCommune": "CASEFABRE" }, { - "codePostal": "62224", - "codeCommune": "62300", - "libelleAcheminement": "EQUIHEN PLAGE", - "nomCommune": "EQUIHEN PLAGE" + "codePostal": "12460", + "codeCommune": "12116", + "libelleAcheminement": "HUPARLAC", + "nomCommune": "HUPARLAC" }, { - "codePostal": "41320", - "codeCommune": "41038", - "libelleAcheminement": "LA CHAPELLE MONTMARTIN", - "nomCommune": "LA CHAPELLE MONTMARTIN" + "codePostal": "65100", + "codeCommune": "65164", + "libelleAcheminement": "ESCOUBES POUTS", + "nomCommune": "ESCOUBES POUTS" }, { - "codePostal": "34120", - "codeCommune": "34068", - "libelleAcheminement": "CAZOULS D HERAULT", - "nomCommune": "CAZOULS D HERAULT" + "codePostal": "55210", + "codeCommune": "55243", + "libelleAcheminement": "HERBEUVILLE", + "nomCommune": "HERBEUVILLE" }, { - "codePostal": "02880", - "codeCommune": "02739", - "libelleAcheminement": "TERNY SORNY", - "nomCommune": "TERNY SORNY" + "codePostal": "57340", + "codeCommune": "57539", + "libelleAcheminement": "PEVANGE", + "nomCommune": "PEVANGE" }, { - "codePostal": "62650", - "codeCommune": "62302", - "libelleAcheminement": "ERGNY", - "nomCommune": "ERGNY" + "codePostal": "66130", + "codeCommune": "66056", + "libelleAcheminement": "CORBERE LES CABANES", + "nomCommune": "CORBERE LES CABANES" }, { - "codePostal": "41500", - "codeCommune": "41039", - "libelleAcheminement": "LA CHAPELLE ST MARTIN EN PLAINE", - "nomCommune": "LA CHAPELLE ST MARTIN EN PLAINE" + "codePostal": "12350", + "codeCommune": "12121", + "libelleAcheminement": "LANUEJOULS", + "nomCommune": "LANUEJOULS" }, { - "codePostal": "34370", - "codeCommune": "34089", - "libelleAcheminement": "CREISSAN", - "nomCommune": "CREISSAN" + "codePostal": "65130", + "codeCommune": "65165", + "libelleAcheminement": "ESPARROS", + "nomCommune": "ESPARROS" }, { - "codePostal": "02340", - "codeCommune": "02743", - "libelleAcheminement": "LE THUEL", - "nomCommune": "LE THUEL" + "codePostal": "55290", + "codeCommune": "55246", + "libelleAcheminement": "HEVILLIERS", + "nomCommune": "HEVILLIERS" }, { - "codePostal": "62260", - "codeCommune": "62328", - "libelleAcheminement": "FERFAY", - "nomCommune": "FERFAY" + "codePostal": "57420", + "codeCommune": "57554", + "libelleAcheminement": "POURNOY LA GRASSE", + "nomCommune": "POURNOY LA GRASSE" }, { - "codePostal": "41130", - "codeCommune": "41043", - "libelleAcheminement": "CHATILLON SUR CHER", - "nomCommune": "CHATILLON SUR CHER" + "codePostal": "66200", + "codeCommune": "66059", + "libelleAcheminement": "CORNEILLA DEL VERCOL", + "nomCommune": "CORNEILLA DEL VERCOL" }, { - "codePostal": "34520", - "codeCommune": "34091", - "libelleAcheminement": "LE CROS", - "nomCommune": "LE CROS" + "codePostal": "12360", + "codeCommune": "12143", + "libelleAcheminement": "MELAGUES", + "nomCommune": "MELAGUES" }, { - "codePostal": "02850", - "codeCommune": "02748", - "libelleAcheminement": "TRELOU SUR MARNE", - "nomCommune": "TRELOU SUR MARNE" + "codePostal": "65130", + "codeCommune": "65166", + "libelleAcheminement": "ESPECHE", + "nomCommune": "ESPECHE" }, { - "codePostal": "62128", - "codeCommune": "62343", - "libelleAcheminement": "FONTAINE LES CROISILLES", - "nomCommune": "FONTAINE LES CROISILLES" + "codePostal": "55130", + "codeCommune": "55247", + "libelleAcheminement": "HORVILLE EN ORNOIS", + "nomCommune": "HORVILLE EN ORNOIS" }, { - "codePostal": "41120", - "codeCommune": "41052", - "libelleAcheminement": "CHITENAY", - "nomCommune": "CHITENAY" + "codePostal": "57590", + "codeCommune": "57555", + "libelleAcheminement": "PREVOCOURT", + "nomCommune": "PREVOCOURT" }, { - "codePostal": "34210", - "codeCommune": "34098", - "libelleAcheminement": "FERRALS LES MONTAGNES", - "nomCommune": "FERRALS LES MONTAGNES" + "codePostal": "66360", + "codeCommune": "66068", + "libelleAcheminement": "ESCARO", + "nomCommune": "ESCARO" }, { - "codePostal": "02640", - "codeCommune": "02752", - "libelleAcheminement": "TUGNY ET PONT", - "nomCommune": "TUGNY ET PONT" + "codePostal": "12000", + "codeCommune": "12146", + "libelleAcheminement": "LE MONASTERE", + "nomCommune": "LE MONASTERE" }, { - "codePostal": "62232", - "codeCommune": "62350", - "libelleAcheminement": "FOUQUIERES LES BETHUNE", - "nomCommune": "FOUQUIERES LES BETHUNE" + "codePostal": "65130", + "codeCommune": "65167", + "libelleAcheminement": "ESPIEILH", + "nomCommune": "ESPIEILH" }, { - "codePostal": "41150", - "codeCommune": "41055", - "libelleAcheminement": "VALLOIRE SUR CISSE", - "nomCommune": "VALLOIRE SUR CISSE" + "codePostal": "55130", + "codeCommune": "55248", + "libelleAcheminement": "HOUDELAINCOURT", + "nomCommune": "HOUDELAINCOURT" }, { - "codePostal": "34360", - "codeCommune": "34100", - "libelleAcheminement": "FERRIERES POUSSAROU", - "nomCommune": "FERRIERES POUSSAROU" + "codePostal": "57510", + "codeCommune": "57556", + "libelleAcheminement": "PUTTELANGE AUX LACS", + "nomCommune": "PUTTELANGE AUX LACS" }, { - "codePostal": "02290", - "codeCommune": "02762", - "libelleAcheminement": "VASSENS", - "nomCommune": "VASSENS" + "codePostal": "66210", + "codeCommune": "66082", + "libelleAcheminement": "FORMIGUERES", + "nomCommune": "FORMIGUERES" }, { - "codePostal": "62130", - "codeCommune": "62352", - "libelleAcheminement": "FRAMECOURT", - "nomCommune": "FRAMECOURT" + "codePostal": "12360", + "codeCommune": "12147", + "libelleAcheminement": "MONTAGNOL", + "nomCommune": "MONTAGNOL" }, { - "codePostal": "41150", - "codeCommune": "41055", - "libelleAcheminement": "VALLOIRE SUR CISSE", - "nomCommune": "VALLOIRE SUR CISSE" + "codePostal": "65240", + "codeCommune": "65180", + "libelleAcheminement": "FRECHET AURE", + "nomCommune": "FRECHET AURE" }, { - "codePostal": "34110", - "codeCommune": "34108", - "libelleAcheminement": "FRONTIGNAN", - "nomCommune": "FRONTIGNAN" + "codePostal": "55700", + "codeCommune": "55250", + "libelleAcheminement": "INOR", + "nomCommune": "INOR" }, { - "codePostal": "02490", - "codeCommune": "02782", - "libelleAcheminement": "LE VERGUIER", - "nomCommune": "LE VERGUIER" + "codePostal": "57590", + "codeCommune": "57559", + "libelleAcheminement": "PUZIEUX", + "nomCommune": "PUZIEUX" }, { - "codePostal": "62770", - "codeCommune": "62357", - "libelleAcheminement": "FRESNOY", - "nomCommune": "FRESNOY" + "codePostal": "66360", + "codeCommune": "66090", + "libelleAcheminement": "JUJOLS", + "nomCommune": "JUJOLS" }, { - "codePostal": "41370", - "codeCommune": "41058", - "libelleAcheminement": "CONCRIERS", - "nomCommune": "CONCRIERS" + "codePostal": "12550", + "codeCommune": "12149", + "libelleAcheminement": "MONTCLAR", + "nomCommune": "MONTCLAR" }, { - "codePostal": "34190", - "codeCommune": "34111", - "libelleAcheminement": "GANGES", - "nomCommune": "GANGES" + "codePostal": "65190", + "codeCommune": "65181", + "libelleAcheminement": "FRECHOU FRECHET", + "nomCommune": "FRECHOU FRECHET" }, { - "codePostal": "02630", - "codeCommune": "02784", - "libelleAcheminement": "PETIT VERLY", - "nomCommune": "PETIT VERLY" + "codePostal": "55220", + "codeCommune": "55251", + "libelleAcheminement": "IPPECOURT", + "nomCommune": "IPPECOURT" }, { - "codePostal": "62121", - "codeCommune": "62374", - "libelleAcheminement": "GOMIECOURT", - "nomCommune": "GOMIECOURT" + "codePostal": "57700", + "codeCommune": "57562", + "libelleAcheminement": "RANGUEVAUX", + "nomCommune": "RANGUEVAUX" }, { - "codePostal": "41400", - "codeCommune": "41059", - "libelleAcheminement": "LE CONTROIS EN SOLOGNE", - "nomCommune": "LE CONTROIS EN SOLOGNE" + "codePostal": "66200", + "codeCommune": "66094", + "libelleAcheminement": "LATOUR BAS ELNE", + "nomCommune": "LATOUR BAS ELNE" }, { - "codePostal": "34190", - "codeCommune": "34115", - "libelleAcheminement": "GORNIES", - "nomCommune": "GORNIES" + "codePostal": "12400", + "codeCommune": "12154", + "libelleAcheminement": "MONTLAUR", + "nomCommune": "MONTLAUR" }, { - "codePostal": "02380", - "codeCommune": "02786", - "libelleAcheminement": "VERNEUIL SOUS COUCY", - "nomCommune": "VERNEUIL SOUS COUCY" + "codePostal": "65330", + "codeCommune": "65184", + "libelleAcheminement": "GALEZ", + "nomCommune": "GALEZ" }, { - "codePostal": "62123", - "codeCommune": "62379", - "libelleAcheminement": "GOUY EN ARTOIS", - "nomCommune": "GOUY EN ARTOIS" + "codePostal": "55210", + "codeCommune": "55267", + "libelleAcheminement": "LACHAUSSEE", + "nomCommune": "LACHAUSSEE" }, { - "codePostal": "41800", - "codeCommune": "41070", - "libelleAcheminement": "VALLEE DE RONSARD", - "nomCommune": "VALLEE DE RONSARD" + "codePostal": "57530", + "codeCommune": "57563", + "libelleAcheminement": "RAVILLE", + "nomCommune": "RAVILLE" }, { - "codePostal": "34260", - "codeCommune": "34117", - "libelleAcheminement": "GRAISSESSAC", - "nomCommune": "GRAISSESSAC" + "codePostal": "66360", + "codeCommune": "66102", + "libelleAcheminement": "MANTET", + "nomCommune": "MANTET" }, { - "codePostal": "02000", - "codeCommune": "02787", - "libelleAcheminement": "VERNEUIL SUR SERRE", - "nomCommune": "VERNEUIL SUR SERRE" + "codePostal": "12630", + "codeCommune": "12157", + "libelleAcheminement": "MONTROZIER", + "nomCommune": "MONTROZIER" }, { - "codePostal": "62112", - "codeCommune": "62383", - "libelleAcheminement": "GOUY SOUS BELLONNE", - "nomCommune": "GOUY SOUS BELLONNE" + "codePostal": "65100", + "codeCommune": "65191", + "libelleAcheminement": "GAZOST", + "nomCommune": "GAZOST" }, { - "codePostal": "41160", - "codeCommune": "41073", - "libelleAcheminement": "DANZE", - "nomCommune": "DANZE" + "codePostal": "55300", + "codeCommune": "55274", + "libelleAcheminement": "LAMORVILLE", + "nomCommune": "LAMORVILLE" }, { - "codePostal": "34600", - "codeCommune": "34119", - "libelleAcheminement": "HEREPIAN", - "nomCommune": "HEREPIAN" + "codePostal": "57200", + "codeCommune": "57568", + "libelleAcheminement": "REMELFING", + "nomCommune": "REMELFING" }, { - "codePostal": "02800", - "codeCommune": "02788", - "libelleAcheminement": "VERSIGNY", - "nomCommune": "VERSIGNY" + "codePostal": "66480", + "codeCommune": "66106", + "libelleAcheminement": "MAUREILLAS LAS ILLAS", + "nomCommune": "MAUREILLAS LAS ILLAS" }, { - "codePostal": "62140", - "codeCommune": "62388", - "libelleAcheminement": "GRIGNY", - "nomCommune": "GRIGNY" + "codePostal": "12200", + "codeCommune": "12159", + "libelleAcheminement": "MORLHON LE HAUT", + "nomCommune": "MORLHON LE HAUT" }, { - "codePostal": "41290", - "codeCommune": "41077", - "libelleAcheminement": "EPIAIS", - "nomCommune": "EPIAIS" + "codePostal": "65240", + "codeCommune": "65195", + "libelleAcheminement": "GENOS", + "nomCommune": "GENOS" }, { - "codePostal": "34830", - "codeCommune": "34120", - "libelleAcheminement": "JACOU", - "nomCommune": "JACOU" + "codePostal": "55300", + "codeCommune": "55274", + "libelleAcheminement": "LAMORVILLE", + "nomCommune": "LAMORVILLE" }, { - "codePostal": "02810", - "codeCommune": "02792", - "libelleAcheminement": "VEUILLY LA POTERIE", - "nomCommune": "VEUILLY LA POTERIE" + "codePostal": "57480", + "codeCommune": "57569", + "libelleAcheminement": "REMELING", + "nomCommune": "REMELING" }, { - "codePostal": "62140", - "codeCommune": "62395", - "libelleAcheminement": "GUIGNY", - "nomCommune": "GUIGNY" + "codePostal": "66460", + "codeCommune": "66107", + "libelleAcheminement": "MAURY", + "nomCommune": "MAURY" }, { - "codePostal": "41270", - "codeCommune": "41088", - "libelleAcheminement": "FONTAINE RAOUL", - "nomCommune": "FONTAINE RAOUL" + "codePostal": "12330", + "codeCommune": "12161", + "libelleAcheminement": "MOURET", + "nomCommune": "MOURET" }, { - "codePostal": "34725", - "codeCommune": "34122", - "libelleAcheminement": "JONQUIERES", - "nomCommune": "JONQUIERES" + "codePostal": "65140", + "codeCommune": "65196", + "libelleAcheminement": "GENSAC", + "nomCommune": "GENSAC" }, { - "codePostal": "02210", - "codeCommune": "02796", - "libelleAcheminement": "VICHEL NANTEUIL", - "nomCommune": "VICHEL NANTEUIL" + "codePostal": "55220", + "codeCommune": "55286", + "libelleAcheminement": "LEMMES", + "nomCommune": "LEMMES" }, { - "codePostal": "62123", - "codeCommune": "62399", - "libelleAcheminement": "HABARCQ", - "nomCommune": "HABARCQ" + "codePostal": "57580", + "codeCommune": "57572", + "libelleAcheminement": "REMILLY", + "nomCommune": "REMILLY" }, { - "codePostal": "41190", - "codeCommune": "41093", - "libelleAcheminement": "FRANCAY", - "nomCommune": "FRANCAY" + "codePostal": "66170", + "codeCommune": "66108", + "libelleAcheminement": "MILLAS", + "nomCommune": "MILLAS" }, { - "codePostal": "34990", - "codeCommune": "34123", - "libelleAcheminement": "JUVIGNAC", - "nomCommune": "JUVIGNAC" + "codePostal": "12600", + "codeCommune": "12164", + "libelleAcheminement": "MUR DE BARREZ", + "nomCommune": "MUR DE BARREZ" }, { - "codePostal": "02600", - "codeCommune": "02810", - "libelleAcheminement": "VILLERS COTTERETS", - "nomCommune": "VILLERS COTTERETS" + "codePostal": "65100", + "codeCommune": "65201", + "libelleAcheminement": "GEU", + "nomCommune": "GEU" }, { - "codePostal": "62760", - "codeCommune": "62404", - "libelleAcheminement": "HALLOY", - "nomCommune": "HALLOY" + "codePostal": "55200", + "codeCommune": "55288", + "libelleAcheminement": "LEROUVILLE", + "nomCommune": "LEROUVILLE" }, { - "codePostal": "41230", - "codeCommune": "41099", - "libelleAcheminement": "GY EN SOLOGNE", - "nomCommune": "GY EN SOLOGNE" + "codePostal": "57230", + "codeCommune": "57577", + "libelleAcheminement": "REYERSVILLER", + "nomCommune": "REYERSVILLER" }, { - "codePostal": "34800", - "codeCommune": "34138", - "libelleAcheminement": "LIEURAN CABRIERES", - "nomCommune": "LIEURAN CABRIERES" + "codePostal": "66110", + "codeCommune": "66113", + "libelleAcheminement": "MONTBOLO", + "nomCommune": "MONTBOLO" }, { - "codePostal": "02590", - "codeCommune": "02815", - "libelleAcheminement": "VILLERS ST CHRISTOPHE", - "nomCommune": "VILLERS ST CHRISTOPHE" + "codePostal": "12230", + "codeCommune": "12168", + "libelleAcheminement": "NANT", + "nomCommune": "NANT" }, { - "codePostal": "62390", - "codeCommune": "62411", - "libelleAcheminement": "HARAVESNES", - "nomCommune": "HARAVESNES" + "codePostal": "65100", + "codeCommune": "65203", + "libelleAcheminement": "GEZ EZ ANGLES", + "nomCommune": "GEZ EZ ANGLES" }, { - "codePostal": "41350", - "codeCommune": "41104", - "libelleAcheminement": "HUISSEAU SUR COSSON", - "nomCommune": "HUISSEAU SUR COSSON" + "codePostal": "55260", + "codeCommune": "55301", + "libelleAcheminement": "LONGCHAMPS SUR AIRE", + "nomCommune": "LONGCHAMPS SUR AIRE" }, { - "codePostal": "34210", - "codeCommune": "34141", - "libelleAcheminement": "LA LIVINIERE", - "nomCommune": "LA LIVINIERE" + "codePostal": "57720", + "codeCommune": "57590", + "libelleAcheminement": "ROLBING", + "nomCommune": "ROLBING" }, { - "codePostal": "02310", - "codeCommune": "02818", - "libelleAcheminement": "VILLIERS ST DENIS", - "nomCommune": "VILLIERS ST DENIS" + "codePostal": "66360", + "codeCommune": "66123", + "libelleAcheminement": "NYER", + "nomCommune": "NYER" }, { - "codePostal": "62440", - "codeCommune": "62413", - "libelleAcheminement": "HARNES", - "nomCommune": "HARNES" + "codePostal": "12330", + "codeCommune": "12171", + "libelleAcheminement": "NAUVIALE", + "nomCommune": "NAUVIALE" }, { - "codePostal": "41370", - "codeCommune": "41105", - "libelleAcheminement": "JOSNES", - "nomCommune": "JOSNES" + "codePostal": "65350", + "codeCommune": "65204", + "libelleAcheminement": "GONEZ", + "nomCommune": "GONEZ" }, { - "codePostal": "34400", - "codeCommune": "34146", - "libelleAcheminement": "LUNEL VIEL", - "nomCommune": "LUNEL VIEL" + "codePostal": "55100", + "codeCommune": "55307", + "libelleAcheminement": "LOUVEMONT COTE DU POIVRE", + "nomCommune": "LOUVEMONT COTE DU POIVRE" }, { - "codePostal": "02140", - "codeCommune": "02823", - "libelleAcheminement": "VOHARIES", - "nomCommune": "VOHARIES" + "codePostal": "57520", + "codeCommune": "57598", + "libelleAcheminement": "ROUHLING", + "nomCommune": "ROUHLING" }, { - "codePostal": "62147", - "codeCommune": "62421", - "libelleAcheminement": "HAVRINCOURT", - "nomCommune": "HAVRINCOURT" + "codePostal": "66340", + "codeCommune": "66132", + "libelleAcheminement": "PALAU DE CERDAGNE", + "nomCommune": "PALAU DE CERDAGNE" }, { - "codePostal": "41320", - "codeCommune": "41110", - "libelleAcheminement": "LANGON SUR CHER", - "nomCommune": "LANGON SUR CHER" + "codePostal": "12510", + "codeCommune": "12174", + "libelleAcheminement": "OLEMPS", + "nomCommune": "OLEMPS" }, { - "codePostal": "34130", - "codeCommune": "34154", - "libelleAcheminement": "MAUGUIO", - "nomCommune": "MAUGUIO" + "codePostal": "65200", + "codeCommune": "65216", + "libelleAcheminement": "HAUBAN", + "nomCommune": "HAUBAN" }, { - "codePostal": "03380", - "codeCommune": "03005", - "libelleAcheminement": "ARCHIGNAT", - "nomCommune": "ARCHIGNAT" + "codePostal": "55700", + "codeCommune": "55323", + "libelleAcheminement": "MARTINCOURT SUR MEUSE", + "nomCommune": "MARTINCOURT SUR MEUSE" }, { - "codePostal": "62570", - "codeCommune": "62423", - "libelleAcheminement": "HELFAUT", - "nomCommune": "HELFAUT" + "codePostal": "57330", + "codeCommune": "57600", + "libelleAcheminement": "ROUSSY LE VILLAGE", + "nomCommune": "ROUSSY LE VILLAGE" }, { - "codePostal": "41370", - "codeCommune": "41119", - "libelleAcheminement": "LORGES", - "nomCommune": "LORGES" + "codePostal": "66690", + "codeCommune": "66133", + "libelleAcheminement": "PALAU DEL VIDRE", + "nomCommune": "PALAU DEL VIDRE" }, { - "codePostal": "34290", - "codeCommune": "34166", - "libelleAcheminement": "MONTBLANC", - "nomCommune": "MONTBLANC" + "codePostal": "12310", + "codeCommune": "12177", + "libelleAcheminement": "PALMAS D AVEYRON", + "nomCommune": "PALMAS D AVEYRON" }, { - "codePostal": "03190", - "codeCommune": "03010", - "libelleAcheminement": "AUDES", - "nomCommune": "AUDES" + "codePostal": "65250", + "codeCommune": "65218", + "libelleAcheminement": "HECHES", + "nomCommune": "HECHES" }, { - "codePostal": "62128", - "codeCommune": "62426", - "libelleAcheminement": "HENINEL", - "nomCommune": "HENINEL" + "codePostal": "55400", + "codeCommune": "55325", + "libelleAcheminement": "MAUCOURT SUR ORNE", + "nomCommune": "MAUCOURT SUR ORNE" }, { - "codePostal": "41250", - "codeCommune": "41129", - "libelleAcheminement": "MASLIVES", - "nomCommune": "MASLIVES" + "codePostal": "57500", + "codeCommune": "57606", + "libelleAcheminement": "ST AVOLD", + "nomCommune": "ST AVOLD" }, { - "codePostal": "34080", - "codeCommune": "34172", - "libelleAcheminement": "MONTPELLIER", - "nomCommune": "MONTPELLIER" + "codePostal": "66730", + "codeCommune": "66139", + "libelleAcheminement": "PEZILLA DE CONFLENT", + "nomCommune": "PEZILLA DE CONFLENT" }, { - "codePostal": "03460", - "codeCommune": "03015", - "libelleAcheminement": "BAGNEUX", - "nomCommune": "BAGNEUX" + "codePostal": "12340", + "codeCommune": "12177", + "libelleAcheminement": "PALMAS D AVEYRON", + "nomCommune": "PALMAS D AVEYRON" }, { - "codePostal": "62850", - "codeCommune": "62432", - "libelleAcheminement": "HERBINGHEN", - "nomCommune": "HERBINGHEN" + "codePostal": "65700", + "codeCommune": "65219", + "libelleAcheminement": "HERES", + "nomCommune": "HERES" }, { - "codePostal": "41190", - "codeCommune": "41142", - "libelleAcheminement": "VALENCISSE", - "nomCommune": "VALENCISSE" + "codePostal": "55190", + "codeCommune": "55327", + "libelleAcheminement": "MAUVAGES", + "nomCommune": "MAUVAGES" }, { - "codePostal": "34150", - "codeCommune": "34173", - "libelleAcheminement": "MONTPEYROUX", - "nomCommune": "MONTPEYROUX" + "codePostal": "57640", + "codeCommune": "57612", + "libelleAcheminement": "ST HUBERT", + "nomCommune": "ST HUBERT" }, { - "codePostal": "03390", - "codeCommune": "03020", - "libelleAcheminement": "BEAUNE D ALLIER", - "nomCommune": "BEAUNE D ALLIER" + "codePostal": "66370", + "codeCommune": "66140", + "libelleAcheminement": "PEZILLA LA RIVIERE", + "nomCommune": "PEZILLA LA RIVIERE" }, { - "codePostal": "62650", - "codeCommune": "62437", - "libelleAcheminement": "HERLY", - "nomCommune": "HERLY" + "codePostal": "12720", + "codeCommune": "12180", + "libelleAcheminement": "PEYRELEAU", + "nomCommune": "PEYRELEAU" }, { - "codePostal": "41350", - "codeCommune": "41148", - "libelleAcheminement": "MONTLIVAULT", - "nomCommune": "MONTLIVAULT" + "codePostal": "65250", + "codeCommune": "65231", + "libelleAcheminement": "IZAUX", + "nomCommune": "IZAUX" }, { - "codePostal": "34980", - "codeCommune": "34177", - "libelleAcheminement": "MURLES", - "nomCommune": "MURLES" + "codePostal": "55140", + "codeCommune": "55350", + "libelleAcheminement": "MONTIGNY LES VAUCOULEURS", + "nomCommune": "MONTIGNY LES VAUCOULEURS" }, { - "codePostal": "03800", - "codeCommune": "03030", - "libelleAcheminement": "BIOZAT", - "nomCommune": "BIOZAT" + "codePostal": "57930", + "codeCommune": "57613", + "libelleAcheminement": "ST JEAN DE BASSEL", + "nomCommune": "ST JEAN DE BASSEL" }, { - "codePostal": "62132", - "codeCommune": "62439", - "libelleAcheminement": "HERMELINGHEN", - "nomCommune": "HERMELINGHEN" + "codePostal": "66300", + "codeCommune": "66145", + "libelleAcheminement": "PONTEILLA", + "nomCommune": "PONTEILLA" }, { - "codePostal": "41700", - "codeCommune": "41166", - "libelleAcheminement": "OISLY", - "nomCommune": "OISLY" + "codePostal": "12290", + "codeCommune": "12185", + "libelleAcheminement": "PONT DE SALARS", + "nomCommune": "PONT DE SALARS" }, { - "codePostal": "34800", - "codeCommune": "34180", - "libelleAcheminement": "NEBIAN", - "nomCommune": "NEBIAN" + "codePostal": "65290", + "codeCommune": "65235", + "libelleAcheminement": "JUILLAN", + "nomCommune": "JUILLAN" }, { - "codePostal": "03300", - "codeCommune": "03033", - "libelleAcheminement": "BOST", - "nomCommune": "BOST" + "codePostal": "55000", + "codeCommune": "55352", + "libelleAcheminement": "MONTPLONNE", + "nomCommune": "MONTPLONNE" }, { - "codePostal": "62147", - "codeCommune": "62440", - "libelleAcheminement": "HERMIES", - "nomCommune": "HERMIES" + "codePostal": "57560", + "codeCommune": "57623", + "libelleAcheminement": "ST QUIRIN", + "nomCommune": "ST QUIRIN" }, { - "codePostal": "41150", - "codeCommune": "41167", - "libelleAcheminement": "VEUZAIN SUR LOIRE", - "nomCommune": "VEUZAIN SUR LOIRE" + "codePostal": "66500", + "codeCommune": "66149", + "libelleAcheminement": "PRADES", + "nomCommune": "PRADES" }, { - "codePostal": "34320", - "codeCommune": "34184", - "libelleAcheminement": "NIZAS", - "nomCommune": "NIZAS" + "codePostal": "12240", + "codeCommune": "12189", + "libelleAcheminement": "PRADINAS", + "nomCommune": "PRADINAS" }, { - "codePostal": "03150", - "codeCommune": "03034", - "libelleAcheminement": "BOUCE", - "nomCommune": "BOUCE" + "codePostal": "65100", + "codeCommune": "65247", + "libelleAcheminement": "ARRAYOU LAHITTE", + "nomCommune": "ARRAYOU LAHITTE" }, { - "codePostal": "62575", - "codeCommune": "62452", - "libelleAcheminement": "HEURINGHEM", - "nomCommune": "HEURINGHEM" + "codePostal": "55100", + "codeCommune": "55355", + "libelleAcheminement": "MONTZEVILLE", + "nomCommune": "MONTZEVILLE" }, { - "codePostal": "41300", - "codeCommune": "41168", - "libelleAcheminement": "ORCAY", - "nomCommune": "ORCAY" + "codePostal": "57170", + "codeCommune": "57625", + "libelleAcheminement": "SALONNES", + "nomCommune": "SALONNES" }, { - "codePostal": "34390", - "codeCommune": "34187", - "libelleAcheminement": "OLARGUES", - "nomCommune": "OLARGUES" + "codePostal": "66360", + "codeCommune": "66155", + "libelleAcheminement": "PY", + "nomCommune": "PY" }, { - "codePostal": "03000", - "codeCommune": "03040", - "libelleAcheminement": "BRESSOLLES", - "nomCommune": "BRESSOLLES" + "codePostal": "12640", + "codeCommune": "12200", + "libelleAcheminement": "RIVIERE SUR TARN", + "nomCommune": "RIVIERE SUR TARN" }, { - "codePostal": "62850", - "codeCommune": "62455", - "libelleAcheminement": "HOCQUINGHEN", - "nomCommune": "HOCQUINGHEN" + "codePostal": "65700", + "codeCommune": "65264", + "libelleAcheminement": "LASCAZERES", + "nomCommune": "LASCAZERES" }, { - "codePostal": "41290", - "codeCommune": "41171", - "libelleAcheminement": "OUCQUES LA NOUVELLE", - "nomCommune": "OUCQUES LA NOUVELLE" + "codePostal": "55500", + "codeCommune": "55358", + "libelleAcheminement": "CHANTERAINE", + "nomCommune": "CHANTERAINE" }, { - "codePostal": "34700", - "codeCommune": "34188", - "libelleAcheminement": "OLMET ET VILLECUN", - "nomCommune": "OLMET ET VILLECUN" + "codePostal": "57640", + "codeCommune": "57626", + "libelleAcheminement": "SANRY LES VIGY", + "nomCommune": "SANRY LES VIGY" }, { - "codePostal": "03350", - "codeCommune": "03041", - "libelleAcheminement": "LE BRETHON", - "nomCommune": "LE BRETHON" + "codePostal": "66730", + "codeCommune": "66156", + "libelleAcheminement": "RABOUILLET", + "nomCommune": "RABOUILLET" }, { - "codePostal": "62130", - "codeCommune": "62462", - "libelleAcheminement": "HUCLIER", - "nomCommune": "HUCLIER" + "codePostal": "12340", + "codeCommune": "12201", + "libelleAcheminement": "RODELLE", + "nomCommune": "RODELLE" }, { - "codePostal": "41100", - "codeCommune": "41174", - "libelleAcheminement": "PERIGNY", - "nomCommune": "PERIGNY" + "codePostal": "65380", + "codeCommune": "65268", + "libelleAcheminement": "LAYRISSE", + "nomCommune": "LAYRISSE" }, { - "codePostal": "34210", - "codeCommune": "34189", - "libelleAcheminement": "OLONZAC", - "nomCommune": "OLONZAC" + "codePostal": "55320", + "codeCommune": "55360", + "libelleAcheminement": "MOUILLY", + "nomCommune": "MOUILLY" }, { - "codePostal": "03120", - "codeCommune": "03042", - "libelleAcheminement": "LE BREUIL", - "nomCommune": "LE BREUIL" + "codePostal": "57370", + "codeCommune": "57635", + "libelleAcheminement": "SCHALBACH", + "nomCommune": "SCHALBACH" }, { - "codePostal": "62129", - "codeCommune": "62471", - "libelleAcheminement": "BELLINGHEM", - "nomCommune": "BELLINGHEM" + "codePostal": "66400", + "codeCommune": "66160", + "libelleAcheminement": "REYNES", + "nomCommune": "REYNES" }, { - "codePostal": "41170", - "codeCommune": "41177", - "libelleAcheminement": "LE PLESSIS DORIN", - "nomCommune": "LE PLESSIS DORIN" + "codePostal": "12120", + "codeCommune": "12207", + "libelleAcheminement": "RULLAC ST CIRQ", + "nomCommune": "RULLAC ST CIRQ" }, { - "codePostal": "34700", - "codeCommune": "34196", - "libelleAcheminement": "PEGAIROLLES DE L ESCALETTE", - "nomCommune": "PEGAIROLLES DE L ESCALETTE" + "codePostal": "65150", + "codeCommune": "65277", + "libelleAcheminement": "LOMBRES", + "nomCommune": "LOMBRES" }, { - "codePostal": "03700", - "codeCommune": "03044", - "libelleAcheminement": "BRUGHEAS", - "nomCommune": "BRUGHEAS" + "codePostal": "55110", + "codeCommune": "55365", + "libelleAcheminement": "MURVAUX", + "nomCommune": "MURVAUX" }, { - "codePostal": "62122", - "codeCommune": "62479", - "libelleAcheminement": "LABEUVRIERE", - "nomCommune": "LABEUVRIERE" + "codePostal": "57350", + "codeCommune": "57638", + "libelleAcheminement": "SCHOENECK", + "nomCommune": "SCHOENECK" }, { - "codePostal": "41370", - "codeCommune": "41178", - "libelleAcheminement": "LE PLESSIS L ECHELLE", - "nomCommune": "LE PLESSIS L ECHELLE" + "codePostal": "66690", + "codeCommune": "66168", + "libelleAcheminement": "ST ANDRE", + "nomCommune": "ST ANDRE" }, { - "codePostal": "34570", - "codeCommune": "34202", - "libelleAcheminement": "PIGNAN", - "nomCommune": "PIGNAN" + "codePostal": "12720", + "codeCommune": "12211", + "libelleAcheminement": "ST ANDRE DE VEZINES", + "nomCommune": "ST ANDRE DE VEZINES" }, { - "codePostal": "03350", - "codeCommune": "03048", - "libelleAcheminement": "CERILLY", - "nomCommune": "CERILLY" + "codePostal": "65130", + "codeCommune": "65278", + "libelleAcheminement": "LOMNE", + "nomCommune": "LOMNE" }, { - "codePostal": "62140", - "codeCommune": "62481", - "libelleAcheminement": "LABROYE", - "nomCommune": "LABROYE" + "codePostal": "55000", + "codeCommune": "55366", + "libelleAcheminement": "VAL D ORNAIN", + "nomCommune": "VAL D ORNAIN" }, { - "codePostal": "41100", - "codeCommune": "41187", - "libelleAcheminement": "RENAY", - "nomCommune": "RENAY" + "codePostal": "57480", + "codeCommune": "57650", + "libelleAcheminement": "SIERCK LES BAINS", + "nomCommune": "SIERCK LES BAINS" }, { - "codePostal": "34810", - "codeCommune": "34207", - "libelleAcheminement": "POMEROLS", - "nomCommune": "POMEROLS" + "codePostal": "66750", + "codeCommune": "66171", + "libelleAcheminement": "ST CYPRIEN", + "nomCommune": "ST CYPRIEN" }, { - "codePostal": "03320", - "codeCommune": "03064", - "libelleAcheminement": "CHATEAU SUR ALLIER", - "nomCommune": "CHATEAU SUR ALLIER" + "codePostal": "12130", + "codeCommune": "12219", + "libelleAcheminement": "STE EULALIE D OLT", + "nomCommune": "STE EULALIE D OLT" }, { - "codePostal": "62830", - "codeCommune": "62483", - "libelleAcheminement": "LACRES", - "nomCommune": "LACRES" + "codePostal": "65220", + "codeCommune": "65288", + "libelleAcheminement": "LUBRET ST LUC", + "nomCommune": "LUBRET ST LUC" }, { - "codePostal": "41290", - "codeCommune": "41188", - "libelleAcheminement": "RHODON", - "nomCommune": "RHODON" + "codePostal": "55000", + "codeCommune": "55369", + "libelleAcheminement": "NAIVES ROSIERES", + "nomCommune": "NAIVES ROSIERES" }, { - "codePostal": "34480", - "codeCommune": "34214", - "libelleAcheminement": "POUZOLLES", - "nomCommune": "POUZOLLES" + "codePostal": "57530", + "codeCommune": "57654", + "libelleAcheminement": "SILLY SUR NIED", + "nomCommune": "SILLY SUR NIED" }, { - "codePostal": "03440", - "codeCommune": "03070", - "libelleAcheminement": "CHAVENON", - "nomCommune": "CHAVENON" + "codePostal": "66240", + "codeCommune": "66172", + "libelleAcheminement": "ST ESTEVE", + "nomCommune": "ST ESTEVE" }, { - "codePostal": "62960", - "codeCommune": "62485", - "libelleAcheminement": "LAIRES", - "nomCommune": "LAIRES" + "codePostal": "12210", + "codeCommune": "12223", + "libelleAcheminement": "ARGENCES EN AUBRAC", + "nomCommune": "ARGENCES EN AUBRAC" }, { - "codePostal": "41370", - "codeCommune": "41191", - "libelleAcheminement": "ROCHES", - "nomCommune": "ROCHES" + "codePostal": "65120", + "codeCommune": "65295", + "libelleAcheminement": "LUZ ST SAUVEUR", + "nomCommune": "LUZ ST SAUVEUR" }, { - "codePostal": "34150", - "codeCommune": "34221", - "libelleAcheminement": "PUECHABON", - "nomCommune": "PUECHABON" + "codePostal": "55230", + "codeCommune": "55387", + "libelleAcheminement": "NOUILLONPONT", + "nomCommune": "NOUILLONPONT" }, { - "codePostal": "03600", - "codeCommune": "03081", - "libelleAcheminement": "COLOMBIER", - "nomCommune": "COLOMBIER" + "codePostal": "57170", + "codeCommune": "57657", + "libelleAcheminement": "SOTZELING", + "nomCommune": "SOTZELING" }, { - "codePostal": "62124", - "codeCommune": "62493", - "libelleAcheminement": "LEBUCQUIERE", - "nomCommune": "LEBUCQUIERE" + "codePostal": "66170", + "codeCommune": "66174", + "libelleAcheminement": "ST FELIU D AVALL", + "nomCommune": "ST FELIU D AVALL" }, { - "codePostal": "41100", - "codeCommune": "41200", - "libelleAcheminement": "STE ANNE", - "nomCommune": "STE ANNE" + "codePostal": "12130", + "codeCommune": "12224", + "libelleAcheminement": "ST GENIEZ D OLT ET D AUBRAC", + "nomCommune": "ST GENIEZ D OLT ET D AUBRAC" }, { - "codePostal": "34650", - "codeCommune": "34231", - "libelleAcheminement": "ROMIGUIERES", - "nomCommune": "ROMIGUIERES" + "codePostal": "65120", + "codeCommune": "65295", + "libelleAcheminement": "LUZ ST SAUVEUR", + "nomCommune": "LUZ ST SAUVEUR" }, { - "codePostal": "03300", - "codeCommune": "03094", - "libelleAcheminement": "CREUZIER LE VIEUX", - "nomCommune": "CREUZIER LE VIEUX" + "codePostal": "55800", + "codeCommune": "55388", + "libelleAcheminement": "NOYERS AUZECOURT", + "nomCommune": "NOYERS AUZECOURT" }, { - "codePostal": "62190", - "codeCommune": "62500", - "libelleAcheminement": "LESPESSES", - "nomCommune": "LESPESSES" + "codePostal": "57350", + "codeCommune": "57660", + "libelleAcheminement": "STIRING WENDEL", + "nomCommune": "STIRING WENDEL" }, { - "codePostal": "41800", - "codeCommune": "41201", - "libelleAcheminement": "ST ARNOULT", - "nomCommune": "ST ARNOULT" + "codePostal": "66490", + "codeCommune": "66178", + "libelleAcheminement": "ST JEAN PLA DE CORTS", + "nomCommune": "ST JEAN PLA DE CORTS" }, { - "codePostal": "34380", - "codeCommune": "34236", - "libelleAcheminement": "LE ROUET", - "nomCommune": "ROUET" + "codePostal": "12230", + "codeCommune": "12231", + "libelleAcheminement": "ST JEAN DU BRUEL", + "nomCommune": "ST JEAN DU BRUEL" }, { - "codePostal": "03170", - "codeCommune": "03097", - "libelleAcheminement": "DENEUILLE LES MINES", - "nomCommune": "DENEUILLE LES MINES" + "codePostal": "65700", + "codeCommune": "65296", + "libelleAcheminement": "MADIRAN", + "nomCommune": "MADIRAN" }, { - "codePostal": "62810", - "codeCommune": "62507", - "libelleAcheminement": "LIENCOURT", - "nomCommune": "LIENCOURT" + "codePostal": "55160", + "codeCommune": "55399", + "libelleAcheminement": "PAREID", + "nomCommune": "PAREID" }, { - "codePostal": "41000", - "codeCommune": "41206", - "libelleAcheminement": "ST DENIS SUR LOIRE", - "nomCommune": "ST DENIS SUR LOIRE" + "codePostal": "57340", + "codeCommune": "57662", + "libelleAcheminement": "SUISSE", + "nomCommune": "SUISSE" }, { - "codePostal": "34190", - "codeCommune": "34238", - "libelleAcheminement": "ST ANDRE DE BUEGES", - "nomCommune": "ST ANDRE DE BUEGES" + "codePostal": "66110", + "codeCommune": "66183", + "libelleAcheminement": "ST MARSAL", + "nomCommune": "ST MARSAL" }, { - "codePostal": "03110", - "codeCommune": "03109", - "libelleAcheminement": "ESCUROLLES", - "nomCommune": "ESCUROLLES" + "codePostal": "12250", + "codeCommune": "12232", + "libelleAcheminement": "ST JEAN ET ST PAUL", + "nomCommune": "ST JEAN ET ST PAUL" }, { - "codePostal": "62120", - "codeCommune": "62517", - "libelleAcheminement": "LINGHEM", - "nomCommune": "LINGHEM" + "codePostal": "65140", + "codeCommune": "65297", + "libelleAcheminement": "MANSAN", + "nomCommune": "MANSAN" }, { - "codePostal": "41350", - "codeCommune": "41212", - "libelleAcheminement": "ST GERVAIS LA FORET", - "nomCommune": "ST GERVAIS LA FORET" + "codePostal": "55260", + "codeCommune": "55404", + "libelleAcheminement": "PIERREFITTE SUR AIRE", + "nomCommune": "PIERREFITTE SUR AIRE" }, { - "codePostal": "34160", - "codeCommune": "34242", - "libelleAcheminement": "ST BAUZILLE DE MONTMEL", - "nomCommune": "ST BAUZILLE DE MONTMEL" + "codePostal": "57525", + "codeCommune": "57663", + "libelleAcheminement": "TALANGE", + "nomCommune": "TALANGE" }, { - "codePostal": "03110", - "codeCommune": "03110", - "libelleAcheminement": "ESPINASSE VOZELLE", - "nomCommune": "ESPINASSE VOZELLE" + "codePostal": "66210", + "codeCommune": "66188", + "libelleAcheminement": "ST PIERRE DELS FORCATS", + "nomCommune": "ST PIERRE DELS FORCATS" }, { - "codePostal": "62134", - "codeCommune": "62519", - "libelleAcheminement": "LISBOURG", - "nomCommune": "LISBOURG" + "codePostal": "12130", + "codeCommune": "12239", + "libelleAcheminement": "ST MARTIN DE LENNE", + "nomCommune": "ST MARTIN DE LENNE" }, { - "codePostal": "41160", - "codeCommune": "41214", - "libelleAcheminement": "ST HILAIRE LA GRAVELLE", - "nomCommune": "ST HILAIRE LA GRAVELLE" + "codePostal": "65200", + "codeCommune": "65300", + "libelleAcheminement": "MARSAS", + "nomCommune": "MARSAS" }, { - "codePostal": "34270", - "codeCommune": "34248", - "libelleAcheminement": "STE CROIX DE QUINTILLARGUES", - "nomCommune": "STE CROIX DE QUINTILLARGUES" + "codePostal": "55200", + "codeCommune": "55407", + "libelleAcheminement": "PONT SUR MEUSE", + "nomCommune": "PONT SUR MEUSE" }, { - "codePostal": "03190", - "codeCommune": "03111", - "libelleAcheminement": "ESTIVAREILLES", - "nomCommune": "ESTIVAREILLES" + "codePostal": "57260", + "codeCommune": "57664", + "libelleAcheminement": "TARQUIMPOL", + "nomCommune": "TARQUIMPOL" }, { - "codePostal": "62400", - "codeCommune": "62520", - "libelleAcheminement": "LOCON", - "nomCommune": "LOCON" + "codePostal": "66360", + "codeCommune": "66197", + "libelleAcheminement": "SOUANYAS", + "nomCommune": "SOUANYAS" }, { - "codePostal": "41800", - "codeCommune": "41215", - "libelleAcheminement": "ST JACQUES DES GUERETS", - "nomCommune": "ST JACQUES DES GUERETS" + "codePostal": "12260", + "codeCommune": "12252", + "libelleAcheminement": "SALLES COURBATIES", + "nomCommune": "SALLES COURBATIES" }, { - "codePostal": "34980", - "codeCommune": "34255", - "libelleAcheminement": "ST GELY DU FESC", - "nomCommune": "ST GELY DU FESC" + "codePostal": "65240", + "codeCommune": "65317", + "libelleAcheminement": "MONT", + "nomCommune": "MONT" }, { - "codePostal": "03230", - "codeCommune": "03119", - "libelleAcheminement": "GANNAY SUR LOIRE", - "nomCommune": "GANNAY SUR LOIRE" + "codePostal": "55220", + "codeCommune": "55411", + "libelleAcheminement": "RAMBLUZIN ET BENOITE VAUX", + "nomCommune": "RAMBLUZIN ET BENOITE VAUX" }, { - "codePostal": "62990", - "codeCommune": "62522", - "libelleAcheminement": "LOISON SUR CREQUOISE", - "nomCommune": "LOISON SUR CREQUOISE" + "codePostal": "57580", + "codeCommune": "57676", + "libelleAcheminement": "TRAGNY", + "nomCommune": "TRAGNY" }, { - "codePostal": "41160", - "codeCommune": "41216", - "libelleAcheminement": "ST JEAN FROIDMENTEL", - "nomCommune": "ST JEAN FROIDMENTEL" + "codePostal": "66720", + "codeCommune": "66205", + "libelleAcheminement": "TAUTAVEL", + "nomCommune": "TAUTAVEL" }, { - "codePostal": "34160", - "codeCommune": "34256", - "libelleAcheminement": "ST GENIES DES MOURGUES", - "nomCommune": "ST GENIES DES MOURGUES" + "codePostal": "12440", + "codeCommune": "12258", + "libelleAcheminement": "LA SALVETAT PEYRALES", + "nomCommune": "LA SALVETAT PEYRALES" }, { - "codePostal": "03210", - "codeCommune": "03122", - "libelleAcheminement": "GIPCY", - "nomCommune": "GIPCY" + "codePostal": "65150", + "codeCommune": "65319", + "libelleAcheminement": "MONTEGUT", + "nomCommune": "MONTEGUT" }, { - "codePostal": "62218", - "codeCommune": "62523", - "libelleAcheminement": "LOISON SOUS LENS", - "nomCommune": "LOISON SOUS LENS" + "codePostal": "55220", + "codeCommune": "55420", + "libelleAcheminement": "RECOURT LE CREUX", + "nomCommune": "RECOURT LE CREUX" }, { - "codePostal": "41320", - "codeCommune": "41218", - "libelleAcheminement": "ST JULIEN SUR CHER", - "nomCommune": "ST JULIEN SUR CHER" + "codePostal": "57300", + "codeCommune": "57677", + "libelleAcheminement": "TREMERY", + "nomCommune": "TREMERY" }, { - "codePostal": "34400", - "codeCommune": "34272", - "libelleAcheminement": "ST JUST", - "nomCommune": "ST JUST" + "codePostal": "66200", + "codeCommune": "66208", + "libelleAcheminement": "THEZA", + "nomCommune": "THEZA" }, { - "codePostal": "03340", - "codeCommune": "03124", - "libelleAcheminement": "GOUISE", - "nomCommune": "GOUISE" + "codePostal": "12440", + "codeCommune": "12278", + "libelleAcheminement": "TAYRAC", + "nomCommune": "TAYRAC" }, { - "codePostal": "62630", - "codeCommune": "62527", - "libelleAcheminement": "LONGVILLIERS", - "nomCommune": "LONGVILLIERS" + "codePostal": "65200", + "codeCommune": "65320", + "libelleAcheminement": "MONTGAILLARD", + "nomCommune": "MONTGAILLARD" }, { - "codePostal": "41240", - "codeCommune": "41219", - "libelleAcheminement": "ST LAURENT DES BOIS", - "nomCommune": "ST LAURENT DES BOIS" + "codePostal": "55000", + "codeCommune": "55426", + "libelleAcheminement": "RESSON", + "nomCommune": "RESSON" }, { - "codePostal": "34390", - "codeCommune": "34273", - "libelleAcheminement": "ST MARTIN DE L ARCON", - "nomCommune": "ST MARTIN DE L ARCON" + "codePostal": "57710", + "codeCommune": "57678", + "libelleAcheminement": "TRESSANGE", + "nomCommune": "TRESSANGE" }, { - "codePostal": "03250", - "codeCommune": "03125", - "libelleAcheminement": "LA GUILLERMIE", - "nomCommune": "LA GUILLERMIE" + "codePostal": "66360", + "codeCommune": "66209", + "libelleAcheminement": "THUES ENTRE VALLS", + "nomCommune": "THUES ENTRE VALLS" }, { - "codePostal": "62750", - "codeCommune": "62528", - "libelleAcheminement": "LOOS EN GOHELLE", - "nomCommune": "LOOS EN GOHELLE" + "codePostal": "12250", + "codeCommune": "12282", + "libelleAcheminement": "TOURNEMIRE", + "nomCommune": "TOURNEMIRE" }, { - "codePostal": "41370", - "codeCommune": "41221", - "libelleAcheminement": "ST LEONARD EN BEAUCE", - "nomCommune": "ST LEONARD EN BEAUCE" + "codePostal": "65190", + "codeCommune": "65324", + "libelleAcheminement": "MOULEDOUS", + "nomCommune": "MOULEDOUS" }, { - "codePostal": "34230", - "codeCommune": "34285", - "libelleAcheminement": "ST PONS DE MAUCHIENS", - "nomCommune": "ST PONS DE MAUCHIENS" + "codePostal": "55000", + "codeCommune": "55435", + "libelleAcheminement": "ROBERT ESPAGNE", + "nomCommune": "ROBERT ESPAGNE" }, { - "codePostal": "03800", - "codeCommune": "03133", - "libelleAcheminement": "JENZAT", - "nomCommune": "JENZAT" + "codePostal": "57270", + "codeCommune": "57683", + "libelleAcheminement": "UCKANGE", + "nomCommune": "UCKANGE" }, { - "codePostal": "62840", - "codeCommune": "62529", - "libelleAcheminement": "LORGIES", - "nomCommune": "LORGIES" + "codePostal": "66300", + "codeCommune": "66210", + "libelleAcheminement": "THUIR", + "nomCommune": "THUIR" }, { - "codePostal": "41190", - "codeCommune": "41223", - "libelleAcheminement": "ST LUBIN EN VERGONNOIS", - "nomCommune": "ST LUBIN EN VERGONNOIS" + "codePostal": "12400", + "codeCommune": "12286", + "libelleAcheminement": "VABRES L ABBAYE", + "nomCommune": "VABRES L ABBAYE" }, { - "codePostal": "34400", - "codeCommune": "34288", - "libelleAcheminement": "ST SERIES", - "nomCommune": "ST SERIES" + "codePostal": "65200", + "codeCommune": "65328", + "libelleAcheminement": "NEUILH", + "nomCommune": "NEUILH" }, { - "codePostal": "03410", - "codeCommune": "03145", - "libelleAcheminement": "LIGNEROLLES", - "nomCommune": "LIGNEROLLES" + "codePostal": "55140", + "codeCommune": "55456", + "libelleAcheminement": "ST GERMAIN SUR MEUSE", + "nomCommune": "ST GERMAIN SUR MEUSE" }, { - "codePostal": "62310", - "codeCommune": "62533", - "libelleAcheminement": "LUGY", - "nomCommune": "LUGY" + "codePostal": "57340", + "codeCommune": "57692", + "libelleAcheminement": "VANNECOURT", + "nomCommune": "VANNECOURT" }, { - "codePostal": "41120", - "codeCommune": "41233", - "libelleAcheminement": "SAMBIN", - "nomCommune": "SAMBIN" + "codePostal": "66300", + "codeCommune": "66214", + "libelleAcheminement": "TRESSERRE", + "nomCommune": "TRESSERRE" }, { - "codePostal": "34210", - "codeCommune": "34302", - "libelleAcheminement": "SIRAN", - "nomCommune": "SIRAN" + "codePostal": "12200", + "codeCommune": "12287", + "libelleAcheminement": "VAILHOURLES", + "nomCommune": "VAILHOURLES" }, { - "codePostal": "03500", - "codeCommune": "03148", - "libelleAcheminement": "LORIGES", - "nomCommune": "LORIGES" + "codePostal": "65500", + "codeCommune": "65330", + "libelleAcheminement": "NOUILHAN", + "nomCommune": "NOUILHAN" }, { - "codePostal": "62620", - "codeCommune": "62540", - "libelleAcheminement": "MAISNIL LES RUITZ", - "nomCommune": "MAISNIL LES RUITZ" + "codePostal": "55160", + "codeCommune": "55457", + "libelleAcheminement": "ST HILAIRE EN WOEVRE", + "nomCommune": "ST HILAIRE EN WOEVRE" }, { - "codePostal": "41310", - "codeCommune": "41236", - "libelleAcheminement": "SASNIERES", - "nomCommune": "SASNIERES" + "codePostal": "57560", + "codeCommune": "57697", + "libelleAcheminement": "VASPERVILLER", + "nomCommune": "VASPERVILLER" }, { - "codePostal": "34700", - "codeCommune": "34304", - "libelleAcheminement": "SOUBES", - "nomCommune": "SOUBES" + "codePostal": "66730", + "codeCommune": "66234", + "libelleAcheminement": "LE VIVIER", + "nomCommune": "LE VIVIER" }, { - "codePostal": "03330", - "codeCommune": "03152", - "libelleAcheminement": "LOUROUX DE BOUBLE", - "nomCommune": "LOUROUX DE BOUBLE" + "codePostal": "12400", + "codeCommune": "12292", + "libelleAcheminement": "VERSOLS ET LAPEYRE", + "nomCommune": "VERSOLS ET LAPEYRE" }, { - "codePostal": "62127", - "codeCommune": "62542", - "libelleAcheminement": "MAIZIERES", - "nomCommune": "MAIZIERES" + "codePostal": "65190", + "codeCommune": "65337", + "libelleAcheminement": "ORIEUX", + "nomCommune": "ORIEUX" }, { - "codePostal": "41110", - "codeCommune": "41239", - "libelleAcheminement": "SEIGY", - "nomCommune": "SEIGY" + "codePostal": "55130", + "codeCommune": "55459", + "libelleAcheminement": "ST JOIRE", + "nomCommune": "ST JOIRE" }, { - "codePostal": "34820", - "codeCommune": "34309", - "libelleAcheminement": "TEYRAN", - "nomCommune": "TEYRAN" + "codePostal": "57640", + "codeCommune": "57716", + "libelleAcheminement": "VIGY", + "nomCommune": "VIGY" }, { - "codePostal": "03130", - "codeCommune": "03154", - "libelleAcheminement": "LUNEAU", - "nomCommune": "LUNEAU" + "codePostal": "67320", + "codeCommune": "67002", + "libelleAcheminement": "ADAMSWILLER", + "nomCommune": "ADAMSWILLER" }, { - "codePostal": "62250", - "codeCommune": "62546", - "libelleAcheminement": "MANINGHEN HENNE", - "nomCommune": "MANINGHEN HENNE" + "codePostal": "12780", + "codeCommune": "12294", + "libelleAcheminement": "VEZINS DE LEVEZOU", + "nomCommune": "VEZINS DE LEVEZOU" }, { - "codePostal": "41130", - "codeCommune": "41242", - "libelleAcheminement": "SELLES SUR CHER", - "nomCommune": "SELLES SUR CHER" + "codePostal": "65800", + "codeCommune": "65340", + "libelleAcheminement": "ORLEIX", + "nomCommune": "ORLEIX" }, { - "codePostal": "34320", - "codeCommune": "34319", - "libelleAcheminement": "VAILHAN", - "nomCommune": "VAILHAN" + "codePostal": "55300", + "codeCommune": "55463", + "libelleAcheminement": "ST MIHIEL", + "nomCommune": "ST MIHIEL" }, { - "codePostal": "03190", - "codeCommune": "03158", - "libelleAcheminement": "HAUT BOCAGE", - "nomCommune": "HAUT BOCAGE" + "codePostal": "57550", + "codeCommune": "57720", + "libelleAcheminement": "VILLING", + "nomCommune": "VILLING" }, { - "codePostal": "62730", - "codeCommune": "62548", - "libelleAcheminement": "MARCK", - "nomCommune": "MARCK" + "codePostal": "67310", + "codeCommune": "67004", + "libelleAcheminement": "SOMMERAU", + "nomCommune": "SOMMERAU" }, { - "codePostal": "41170", - "codeCommune": "41248", - "libelleAcheminement": "COUETRON AU PERCHE", - "nomCommune": "COUETRON AU PERCHE" + "codePostal": "12310", + "codeCommune": "12303", + "libelleAcheminement": "VIMENET", + "nomCommune": "VIMENET" }, { - "codePostal": "34800", - "codeCommune": "34323", - "libelleAcheminement": "VALMASCLE", - "nomCommune": "VALMASCLE" + "codePostal": "65320", + "codeCommune": "65341", + "libelleAcheminement": "OROIX", + "nomCommune": "OROIX" }, { - "codePostal": "03420", - "codeCommune": "03161", - "libelleAcheminement": "MARCILLAT EN COMBRAILLE", - "nomCommune": "MARCILLAT EN COMBRAILLE" + "codePostal": "55160", + "codeCommune": "55473", + "libelleAcheminement": "SAULX LES CHAMPLON", + "nomCommune": "SAULX LES CHAMPLON" }, { - "codePostal": "62540", - "codeCommune": "62555", - "libelleAcheminement": "MARLES LES MINES", - "nomCommune": "MARLES LES MINES" + "codePostal": "57580", + "codeCommune": "57726", + "libelleAcheminement": "VITTONCOURT", + "nomCommune": "VITTONCOURT" }, { - "codePostal": "41600", - "codeCommune": "41251", - "libelleAcheminement": "SOUVIGNY EN SOLOGNE", - "nomCommune": "SOUVIGNY EN SOLOGNE" + "codePostal": "67440", + "codeCommune": "67004", + "libelleAcheminement": "SOMMERAU", + "nomCommune": "SOMMERAU" }, { - "codePostal": "34500", - "codeCommune": "34336", - "libelleAcheminement": "VILLENEUVE LES BEZIERS", - "nomCommune": "VILLENEUVE LES BEZIERS" + "codePostal": "13090", + "codeCommune": "13001", + "libelleAcheminement": "AIX EN PROVENCE", + "nomCommune": "AIX EN PROVENCE" }, { - "codePostal": "03800", - "codeCommune": "03166", - "libelleAcheminement": "MAZERIER", - "nomCommune": "MAZERIER" + "codePostal": "65380", + "codeCommune": "65344", + "libelleAcheminement": "OSSUN", + "nomCommune": "OSSUN" }, { - "codePostal": "62161", - "codeCommune": "62557", - "libelleAcheminement": "MAROEUIL", - "nomCommune": "MAROEUIL" + "codePostal": "55000", + "codeCommune": "55479", + "libelleAcheminement": "SEIGNEULLES", + "nomCommune": "SEIGNEULLES" }, { - "codePostal": "41800", - "codeCommune": "41265", - "libelleAcheminement": "TROO", - "nomCommune": "TROO" + "codePostal": "57590", + "codeCommune": "57727", + "libelleAcheminement": "VIVIERS", + "nomCommune": "VIVIERS" }, { - "codePostal": "34360", - "codeCommune": "34339", - "libelleAcheminement": "VILLESPASSANS", - "nomCommune": "VILLESPASSANS" + "codePostal": "67440", + "codeCommune": "67004", + "libelleAcheminement": "SOMMERAU", + "nomCommune": "SOMMERAU" }, { - "codePostal": "03150", - "codeCommune": "03179", - "libelleAcheminement": "MONTAIGU LE BLIN", - "nomCommune": "MONTAIGU LE BLIN" + "codePostal": "13100", + "codeCommune": "13001", + "libelleAcheminement": "AIX EN PROVENCE", + "nomCommune": "AIX EN PROVENCE" }, { - "codePostal": "62860", - "codeCommune": "62559", - "libelleAcheminement": "MARQUION", - "nomCommune": "MARQUION" + "codePostal": "65370", + "codeCommune": "65347", + "libelleAcheminement": "OURDE", + "nomCommune": "OURDE" }, { - "codePostal": "41800", - "codeCommune": "41279", - "libelleAcheminement": "VILLEDIEU LE CHATEAU", - "nomCommune": "VILLEDIEU LE CHATEAU" + "codePostal": "55320", + "codeCommune": "55492", + "libelleAcheminement": "SOMMEDIEUE", + "nomCommune": "SOMMEDIEUE" }, { - "codePostal": "35120", - "codeCommune": "35010", - "libelleAcheminement": "BAGUER PICAN", - "nomCommune": "BAGUER PICAN" + "codePostal": "57580", + "codeCommune": "57728", + "libelleAcheminement": "VOIMHAUT", + "nomCommune": "VOIMHAUT" }, { - "codePostal": "03390", - "codeCommune": "03186", - "libelleAcheminement": "MONTMARAULT", - "nomCommune": "MONTMARAULT" + "codePostal": "67140", + "codeCommune": "67010", + "libelleAcheminement": "ANDLAU", + "nomCommune": "ANDLAU" }, { - "codePostal": "62450", - "codeCommune": "62561", - "libelleAcheminement": "MARTINPUICH", - "nomCommune": "MARTINPUICH" + "codePostal": "13290", + "codeCommune": "13001", + "libelleAcheminement": "AIX EN PROVENCE", + "nomCommune": "AIX EN PROVENCE" }, { - "codePostal": "41240", - "codeCommune": "41289", - "libelleAcheminement": "VILLERMAIN", - "nomCommune": "VILLERMAIN" + "codePostal": "65490", + "codeCommune": "65350", + "libelleAcheminement": "OURSBELILLE", + "nomCommune": "OURSBELILLE" }, { - "codePostal": "35680", - "codeCommune": "35014", - "libelleAcheminement": "BAIS", - "nomCommune": "BAIS" + "codePostal": "55220", + "codeCommune": "55497", + "libelleAcheminement": "LES SOUHESMES RAMPONT", + "nomCommune": "LES SOUHESMES RAMPONT" }, { - "codePostal": "03500", - "codeCommune": "03188", - "libelleAcheminement": "MONTORD", - "nomCommune": "MONTORD" + "codePostal": "57560", + "codeCommune": "57734", + "libelleAcheminement": "VOYER", + "nomCommune": "VOYER" }, { - "codePostal": "62410", - "codeCommune": "62573", - "libelleAcheminement": "MEURCHIN", - "nomCommune": "MEURCHIN" + "codePostal": "67390", + "codeCommune": "67011", + "libelleAcheminement": "ARTOLSHEIM", + "nomCommune": "ARTOLSHEIM" }, { - "codePostal": "41100", - "codeCommune": "41293", - "libelleAcheminement": "VILLIERSFAUX", - "nomCommune": "VILLIERSFAUX" + "codePostal": "13540", + "codeCommune": "13001", + "libelleAcheminement": "AIX EN PROVENCE", + "nomCommune": "AIX EN PROVENCE" }, { - "codePostal": "35133", - "codeCommune": "35025", - "libelleAcheminement": "BILLE", - "nomCommune": "BILLE" + "codePostal": "65100", + "codeCommune": "65351", + "libelleAcheminement": "OUSTE", + "nomCommune": "OUSTE" }, { - "codePostal": "03190", - "codeCommune": "03193", - "libelleAcheminement": "NASSIGNY", - "nomCommune": "NASSIGNY" + "codePostal": "55230", + "codeCommune": "55500", + "libelleAcheminement": "SPINCOURT", + "nomCommune": "SPINCOURT" }, { - "codePostal": "62690", - "codeCommune": "62574", - "libelleAcheminement": "MINGOVAL", - "nomCommune": "MINGOVAL" + "codePostal": "57720", + "codeCommune": "57741", + "libelleAcheminement": "WALSCHBRONN", + "nomCommune": "WALSCHBRONN" }, { - "codePostal": "41100", - "codeCommune": "41294", - "libelleAcheminement": "VILLIERS SUR LOIR", - "nomCommune": "VILLIERS SUR LOIR" + "codePostal": "67250", + "codeCommune": "67012", + "libelleAcheminement": "ASCHBACH", + "nomCommune": "ASCHBACH" }, { - "codePostal": "35270", - "codeCommune": "35029", - "libelleAcheminement": "BONNEMAIN", - "nomCommune": "BONNEMAIN" + "codePostal": "13123", + "codeCommune": "13004", + "libelleAcheminement": "ARLES", + "nomCommune": "ARLES" }, { - "codePostal": "03130", - "codeCommune": "03196", - "libelleAcheminement": "NEUILLY EN DONJON", - "nomCommune": "NEUILLY EN DONJON" + "codePostal": "65400", + "codeCommune": "65352", + "libelleAcheminement": "OUZOUS", + "nomCommune": "OUZOUS" }, { - "codePostal": "62123", - "codeCommune": "62586", - "libelleAcheminement": "MONTENESCOURT", - "nomCommune": "MONTENESCOURT" + "codePostal": "55700", + "codeCommune": "55502", + "libelleAcheminement": "STENAY", + "nomCommune": "STENAY" }, { - "codePostal": "41600", - "codeCommune": "41296", - "libelleAcheminement": "VOUZON", - "nomCommune": "VOUZON" + "codePostal": "57870", + "codeCommune": "57742", + "libelleAcheminement": "WALSCHEID", + "nomCommune": "WALSCHEID" }, { - "codePostal": "35230", - "codeCommune": "35032", - "libelleAcheminement": "BOURGBARRE", - "nomCommune": "BOURGBARRE" + "codePostal": "67130", + "codeCommune": "67020", + "libelleAcheminement": "BAREMBACH", + "nomCommune": "BAREMBACH" }, { - "codePostal": "03340", - "codeCommune": "03197", - "libelleAcheminement": "NEUILLY LE REAL", - "nomCommune": "NEUILLY LE REAL" + "codePostal": "13200", + "codeCommune": "13004", + "libelleAcheminement": "ARLES", + "nomCommune": "ARLES" }, { - "codePostal": "62640", - "codeCommune": "62587", - "libelleAcheminement": "MONTIGNY EN GOHELLE", - "nomCommune": "MONTIGNY EN GOHELLE" + "codePostal": "65130", + "codeCommune": "65356", + "libelleAcheminement": "PERE", + "nomCommune": "PERE" }, { - "codePostal": "42550", - "codeCommune": "42006", - "libelleAcheminement": "APINAC", - "nomCommune": "APINAC" + "codePostal": "55140", + "codeCommune": "55503", + "libelleAcheminement": "TAILLANCOURT", + "nomCommune": "TAILLANCOURT" }, { - "codePostal": "35120", - "codeCommune": "35034", - "libelleAcheminement": "LA BOUSSAC", - "nomCommune": "LA BOUSSAC" + "codePostal": "57635", + "codeCommune": "57747", + "libelleAcheminement": "WINTERSBOURG", + "nomCommune": "WINTERSBOURG" }, { - "codePostal": "03320", - "codeCommune": "03198", - "libelleAcheminement": "NEURE", - "nomCommune": "NEURE" + "codePostal": "67230", + "codeCommune": "67028", + "libelleAcheminement": "BENFELD", + "nomCommune": "BENFELD" }, { - "codePostal": "62170", - "codeCommune": "62588", - "libelleAcheminement": "MONTREUIL", - "nomCommune": "MONTREUIL" + "codePostal": "13200", + "codeCommune": "13004", + "libelleAcheminement": "ARLES", + "nomCommune": "ARLES" }, { - "codePostal": "42370", - "codeCommune": "42008", - "libelleAcheminement": "ARCON", - "nomCommune": "ARCON" + "codePostal": "65140", + "codeCommune": "65361", + "libelleAcheminement": "PEYRUN", + "nomCommune": "PEYRUN" }, { - "codePostal": "35310", - "codeCommune": "35037", - "libelleAcheminement": "BREAL SOUS MONTFORT", - "nomCommune": "BREAL SOUS MONTFORT" + "codePostal": "55840", + "codeCommune": "55505", + "libelleAcheminement": "THIERVILLE SUR MEUSE", + "nomCommune": "THIERVILLE SUR MEUSE" }, { - "codePostal": "03420", - "codeCommune": "03206", - "libelleAcheminement": "LA PETITE MARCHE", - "nomCommune": "LA PETITE MARCHE" + "codePostal": "57170", + "codeCommune": "57753", + "libelleAcheminement": "WUISSE", + "nomCommune": "WUISSE" }, { - "codePostal": "62890", - "codeCommune": "62598", - "libelleAcheminement": "MUNCQ NIEURLET", - "nomCommune": "MUNCQ NIEURLET" + "codePostal": "67310", + "codeCommune": "67030", + "libelleAcheminement": "BERGBIETEN", + "nomCommune": "BERGBIETEN" }, { - "codePostal": "42210", - "codeCommune": "42013", - "libelleAcheminement": "BELLEGARDE EN FOREZ", - "nomCommune": "BELLEGARDE EN FOREZ" + "codePostal": "13280", + "codeCommune": "13004", + "libelleAcheminement": "ARLES", + "nomCommune": "ARLES" }, { - "codePostal": "35530", - "codeCommune": "35039", - "libelleAcheminement": "BRECE", - "nomCommune": "BRECE" + "codePostal": "65190", + "codeCommune": "65367", + "libelleAcheminement": "POUMAROUS", + "nomCommune": "POUMAROUS" }, { - "codePostal": "03320", - "codeCommune": "03210", - "libelleAcheminement": "POUZY MESANGY", - "nomCommune": "POUZY MESANGY" + "codePostal": "55260", + "codeCommune": "55506", + "libelleAcheminement": "THILLOMBOIS", + "nomCommune": "THILLOMBOIS" }, { - "codePostal": "62180", - "codeCommune": "62602", - "libelleAcheminement": "NEMPONT ST FIRMIN", - "nomCommune": "NEMPONT ST FIRMIN" + "codePostal": "57970", + "codeCommune": "57757", + "libelleAcheminement": "YUTZ", + "nomCommune": "YUTZ" }, { - "codePostal": "42670", - "codeCommune": "42015", - "libelleAcheminement": "BELMONT DE LA LOIRE", - "nomCommune": "BELMONT DE LA LOIRE" + "codePostal": "67170", + "codeCommune": "67033", + "libelleAcheminement": "BERNOLSHEIM", + "nomCommune": "BERNOLSHEIM" }, { - "codePostal": "35120", - "codeCommune": "35044", - "libelleAcheminement": "BROUALAN", - "nomCommune": "BROUALAN" + "codePostal": "13400", + "codeCommune": "13005", + "libelleAcheminement": "AUBAGNE", + "nomCommune": "AUBAGNE" }, { - "codePostal": "03190", - "codeCommune": "03222", - "libelleAcheminement": "ST CAPRAIS", - "nomCommune": "ST CAPRAIS" + "codePostal": "65350", + "codeCommune": "65369", + "libelleAcheminement": "POUYASTRUC", + "nomCommune": "POUYASTRUC" }, { - "codePostal": "62152", - "codeCommune": "62603", - "libelleAcheminement": "NESLES", - "nomCommune": "NESLES" + "codePostal": "55600", + "codeCommune": "55508", + "libelleAcheminement": "THONNE LA LONG", + "nomCommune": "THONNE LA LONG" }, { - "codePostal": "42720", - "codeCommune": "42016", - "libelleAcheminement": "LA BENISSON DIEU", - "nomCommune": "LA BENISSON DIEU" + "codePostal": "57370", + "codeCommune": "57761", + "libelleAcheminement": "ZILLING", + "nomCommune": "ZILLING" }, { - "codePostal": "35330", - "codeCommune": "35046", - "libelleAcheminement": "LES BRULAIS", - "nomCommune": "LES BRULAIS" + "codePostal": "67370", + "codeCommune": "67034", + "libelleAcheminement": "BERSTETT", + "nomCommune": "BERSTETT" }, { - "codePostal": "03130", - "codeCommune": "03226", - "libelleAcheminement": "ST DIDIER EN DONJON", - "nomCommune": "ST DIDIER EN DONJON" + "codePostal": "13720", + "codeCommune": "13013", + "libelleAcheminement": "BELCODENE", + "nomCommune": "BELCODENE" }, { - "codePostal": "62152", - "codeCommune": "62604", - "libelleAcheminement": "NEUFCHATEL HARDELOT", - "nomCommune": "NEUFCHATEL HARDELOT" + "codePostal": "65230", + "codeCommune": "65373", + "libelleAcheminement": "PUNTOUS", + "nomCommune": "PUNTOUS" }, { - "codePostal": "42210", - "codeCommune": "42020", - "libelleAcheminement": "BOISSET LES MONTROND", - "nomCommune": "BOISSET LES MONTROND" + "codePostal": "55600", + "codeCommune": "55510", + "libelleAcheminement": "THONNE LES PRES", + "nomCommune": "THONNE LES PRES" }, { - "codePostal": "35500", - "codeCommune": "35052", - "libelleAcheminement": "CHAMPEAUX", - "nomCommune": "CHAMPEAUX" + "codePostal": "58700", + "codeCommune": "58014", + "libelleAcheminement": "ARZEMBOUY", + "nomCommune": "ARZEMBOUY" }, { - "codePostal": "03380", - "codeCommune": "03246", - "libelleAcheminement": "ST MARTINIEN", - "nomCommune": "ST MARTINIEN" + "codePostal": "67360", + "codeCommune": "67037", + "libelleAcheminement": "BIBLISHEIM", + "nomCommune": "BIBLISHEIM" }, { - "codePostal": "62770", - "codeCommune": "62605", - "libelleAcheminement": "NEULETTE", - "nomCommune": "NEULETTE" + "codePostal": "13720", + "codeCommune": "13016", + "libelleAcheminement": "LA BOUILLADISSE", + "nomCommune": "LA BOUILLADISSE" }, { - "codePostal": "42160", - "codeCommune": "42022", - "libelleAcheminement": "BONSON", - "nomCommune": "BONSON" + "codePostal": "65330", + "codeCommune": "65376", + "libelleAcheminement": "RECURT", + "nomCommune": "RECURT" }, { - "codePostal": "35140", - "codeCommune": "35063", - "libelleAcheminement": "LA CHAPELLE ST AUBERT", - "nomCommune": "LA CHAPELLE ST AUBERT" + "codePostal": "55100", + "codeCommune": "55523", + "libelleAcheminement": "VACHERAUVILLE", + "nomCommune": "VACHERAUVILLE" }, { - "codePostal": "03210", - "codeCommune": "03247", - "libelleAcheminement": "ST MENOUX", - "nomCommune": "ST MENOUX" + "codePostal": "58170", + "codeCommune": "58019", + "libelleAcheminement": "AVREE", + "nomCommune": "AVREE" }, { - "codePostal": "62185", - "codeCommune": "62615", - "libelleAcheminement": "NIELLES LES CALAIS", - "nomCommune": "NIELLES LES CALAIS" + "codePostal": "67720", + "codeCommune": "67038", + "libelleAcheminement": "BIETLENHEIM", + "nomCommune": "BIETLENHEIM" }, { - "codePostal": "42220", - "codeCommune": "42028", - "libelleAcheminement": "BURDIGNES", - "nomCommune": "BURDIGNES" + "codePostal": "13620", + "codeCommune": "13021", + "libelleAcheminement": "CARRY LE ROUET", + "nomCommune": "CARRY LE ROUET" }, { - "codePostal": "35660", - "codeCommune": "35064", - "libelleAcheminement": "LA CHAPELLE DE BRAIN", - "nomCommune": "LA CHAPELLE DE BRAIN" + "codePostal": "65700", + "codeCommune": "65387", + "libelleAcheminement": "ST LANNE", + "nomCommune": "ST LANNE" }, { - "codePostal": "03110", - "codeCommune": "03252", - "libelleAcheminement": "ST PONT", - "nomCommune": "ST PONT" + "codePostal": "55270", + "codeCommune": "55527", + "libelleAcheminement": "VARENNES EN ARGONNE", + "nomCommune": "VARENNES EN ARGONNE" }, { - "codePostal": "62290", - "codeCommune": "62617", - "libelleAcheminement": "NOEUX LES MINES", - "nomCommune": "NOEUX LES MINES" + "codePostal": "58300", + "codeCommune": "58020", + "libelleAcheminement": "AVRIL SUR LOIRE", + "nomCommune": "AVRIL SUR LOIRE" }, { - "codePostal": "42260", - "codeCommune": "42030", - "libelleAcheminement": "BUSSY ALBIEUX", - "nomCommune": "BUSSY ALBIEUX" + "codePostal": "67113", + "codeCommune": "67049", + "libelleAcheminement": "BLAESHEIM", + "nomCommune": "BLAESHEIM" }, { - "codePostal": "35410", - "codeCommune": "35069", - "libelleAcheminement": "CHATEAUGIRON", - "nomCommune": "CHATEAUGIRON" + "codePostal": "13250", + "codeCommune": "13029", + "libelleAcheminement": "CORNILLON CONFOUX", + "nomCommune": "CORNILLON CONFOUX" }, { - "codePostal": "03370", - "codeCommune": "03259", - "libelleAcheminement": "ST SAUVIER", - "nomCommune": "ST SAUVIER" + "codePostal": "65150", + "codeCommune": "65389", + "libelleAcheminement": "ST LAURENT DE NESTE", + "nomCommune": "ST LAURENT DE NESTE" }, { - "codePostal": "62370", - "codeCommune": "62621", - "libelleAcheminement": "NORTKERQUE", - "nomCommune": "NORTKERQUE" + "codePostal": "55250", + "codeCommune": "55532", + "libelleAcheminement": "VAUBECOURT", + "nomCommune": "VAUBECOURT" }, { - "codePostal": "42170", - "codeCommune": "42042", - "libelleAcheminement": "CHAMBLES", - "nomCommune": "CHAMBLES" + "codePostal": "58190", + "codeCommune": "58023", + "libelleAcheminement": "BAZOCHES", + "nomCommune": "BAZOCHES" }, { - "codePostal": "35490", - "codeCommune": "35075", - "libelleAcheminement": "CHAUVIGNE", - "nomCommune": "CHAUVIGNE" + "codePostal": "67860", + "codeCommune": "67055", + "libelleAcheminement": "BOOFZHEIM", + "nomCommune": "BOOFZHEIM" }, { - "codePostal": "03140", - "codeCommune": "03278", - "libelleAcheminement": "TAXAT SENAT", - "nomCommune": "TAXAT SENAT" + "codePostal": "13112", + "codeCommune": "13031", + "libelleAcheminement": "LA DESTROUSSE", + "nomCommune": "LA DESTROUSSE" }, { - "codePostal": "62980", - "codeCommune": "62626", - "libelleAcheminement": "NOYELLES LES VERMELLES", - "nomCommune": "NOYELLES LES VERMELLES" + "codePostal": "65400", + "codeCommune": "65393", + "libelleAcheminement": "ST PASTOUS", + "nomCommune": "ST PASTOUS" }, { - "codePostal": "42430", - "codeCommune": "42061", - "libelleAcheminement": "CHERIER", - "nomCommune": "CHERIER" + "codePostal": "55400", + "codeCommune": "55537", + "libelleAcheminement": "DOUAUMONT VAUX", + "nomCommune": "DOUAUMONT VAUX" }, { - "codePostal": "35120", - "codeCommune": "35078", - "libelleAcheminement": "CHERRUEIX", - "nomCommune": "CHERRUEIX" + "codePostal": "58110", + "codeCommune": "58024", + "libelleAcheminement": "BAZOLLES", + "nomCommune": "BAZOLLES" }, { - "codePostal": "03420", - "codeCommune": "03280", - "libelleAcheminement": "TERJAT", - "nomCommune": "TERJAT" + "codePostal": "67420", + "codeCommune": "67059", + "libelleAcheminement": "BOURG BRUCHE", + "nomCommune": "BOURG BRUCHE" }, { - "codePostal": "62490", - "codeCommune": "62627", - "libelleAcheminement": "NOYELLES SOUS BELLONNE", - "nomCommune": "NOYELLES SOUS BELLONNE" + "codePostal": "13820", + "codeCommune": "13033", + "libelleAcheminement": "ENSUES LA REDONNE", + "nomCommune": "ENSUES LA REDONNE" }, { - "codePostal": "42114", - "codeCommune": "42063", - "libelleAcheminement": "CHIRASSIMONT", - "nomCommune": "CHIRASSIMONT" + "codePostal": "65140", + "codeCommune": "65409", + "libelleAcheminement": "SARRIAC BIGORRE", + "nomCommune": "SARRIAC BIGORRE" }, { - "codePostal": "35250", - "codeCommune": "35079", - "libelleAcheminement": "CHEVAIGNE", - "nomCommune": "CHEVAIGNE" + "codePostal": "55500", + "codeCommune": "55543", + "libelleAcheminement": "VELAINES", + "nomCommune": "VELAINES" }, { - "codePostal": "03400", - "codeCommune": "03286", - "libelleAcheminement": "TOULON SUR ALLIER", - "nomCommune": "TOULON SUR ALLIER" + "codePostal": "58500", + "codeCommune": "58032", + "libelleAcheminement": "BILLY SUR OISY", + "nomCommune": "BILLY SUR OISY" }, { - "codePostal": "62215", - "codeCommune": "62645", - "libelleAcheminement": "OYE PLAGE", - "nomCommune": "OYE PLAGE" + "codePostal": "67220", + "codeCommune": "67062", + "libelleAcheminement": "BREITENAU", + "nomCommune": "BREITENAU" }, { - "codePostal": "42540", - "codeCommune": "42077", - "libelleAcheminement": "CROIZET SUR GAND", - "nomCommune": "CROIZET SUR GAND" + "codePostal": "13800", + "codeCommune": "13047", + "libelleAcheminement": "ISTRES", + "nomCommune": "ISTRES" }, { - "codePostal": "35270", - "codeCommune": "35092", - "libelleAcheminement": "CUGUEN", - "nomCommune": "CUGUEN" + "codePostal": "65600", + "codeCommune": "65410", + "libelleAcheminement": "SARROUILLES", + "nomCommune": "SARROUILLES" }, { - "codePostal": "03460", - "codeCommune": "03290", - "libelleAcheminement": "TREVOL", - "nomCommune": "TREVOL" + "codePostal": "55270", + "codeCommune": "55549", + "libelleAcheminement": "VERY", + "nomCommune": "VERY" }, { - "codePostal": "62760", - "codeCommune": "62649", - "libelleAcheminement": "PAS EN ARTOIS", - "nomCommune": "PAS EN ARTOIS" + "codePostal": "58460", + "codeCommune": "58038", + "libelleAcheminement": "BREUGNON", + "nomCommune": "BREUGNON" }, { - "codePostal": "42800", - "codeCommune": "42083", - "libelleAcheminement": "DARGOIRE", - "nomCommune": "DARGOIRE" + "codePostal": "67260", + "codeCommune": "67070", + "libelleAcheminement": "BURBACH", + "nomCommune": "BURBACH" }, { - "codePostal": "35640", - "codeCommune": "35103", - "libelleAcheminement": "EANCE", - "nomCommune": "EANCE" + "codePostal": "13490", + "codeCommune": "13048", + "libelleAcheminement": "JOUQUES", + "nomCommune": "JOUQUES" }, { - "codePostal": "03220", - "codeCommune": "03299", - "libelleAcheminement": "VARENNES SUR TECHE", - "nomCommune": "VARENNES SUR TECHE" + "codePostal": "65120", + "codeCommune": "65411", + "libelleAcheminement": "SASSIS", + "nomCommune": "SASSIS" }, { - "codePostal": "62127", - "codeCommune": "62651", - "libelleAcheminement": "PENIN", - "nomCommune": "PENIN" + "codePostal": "55210", + "codeCommune": "55551", + "libelleAcheminement": "VIGNEULLES LES HATTONCHATEL", + "nomCommune": "VIGNEULLES LES HATTONCHATEL" }, { - "codePostal": "42220", - "codeCommune": "42101", - "libelleAcheminement": "GRAIX", - "nomCommune": "GRAIX" + "codePostal": "58800", + "codeCommune": "58047", + "libelleAcheminement": "CERVON", + "nomCommune": "CERVON" }, { - "codePostal": "35490", - "codeCommune": "35118", - "libelleAcheminement": "GAHARD", - "nomCommune": "GAHARD" + "codePostal": "67420", + "codeCommune": "67076", + "libelleAcheminement": "COLROY LA ROCHE", + "nomCommune": "COLROY LA ROCHE" }, { - "codePostal": "03430", - "codeCommune": "03315", - "libelleAcheminement": "VILLEFRANCHE D ALLIER", - "nomCommune": "VILLEFRANCHE D ALLIER" + "codePostal": "13370", + "codeCommune": "13053", + "libelleAcheminement": "MALLEMORT", + "nomCommune": "MALLEMORT" }, { - "codePostal": "62550", - "codeCommune": "62652", - "libelleAcheminement": "PERNES", - "nomCommune": "PERNES" + "codePostal": "65700", + "codeCommune": "65412", + "libelleAcheminement": "SAUVETERRE", + "nomCommune": "SAUVETERRE" }, { - "codePostal": "42140", - "codeCommune": "42102", - "libelleAcheminement": "GRAMMOND", - "nomCommune": "GRAMMOND" + "codePostal": "55200", + "codeCommune": "55553", + "libelleAcheminement": "VIGNOT", + "nomCommune": "VIGNOT" }, { - "codePostal": "35370", - "codeCommune": "35119", - "libelleAcheminement": "GENNES SUR SEICHE", - "nomCommune": "GENNES SUR SEICHE" + "codePostal": "58220", + "codeCommune": "58048", + "libelleAcheminement": "CESSY LES BOIS", + "nomCommune": "CESSY LES BOIS" }, { - "codePostal": "04260", - "codeCommune": "04006", - "libelleAcheminement": "ALLOS", - "nomCommune": "ALLOS" + "codePostal": "67310", + "codeCommune": "67081", + "libelleAcheminement": "DAHLENHEIM", + "nomCommune": "DAHLENHEIM" }, { - "codePostal": "62126", - "codeCommune": "62653", - "libelleAcheminement": "PERNES LES BOULOGNE", - "nomCommune": "PERNES LES BOULOGNE" + "codePostal": "13500", + "codeCommune": "13056", + "libelleAcheminement": "MARTIGUES", + "nomCommune": "MARTIGUES" }, { - "codePostal": "42460", - "codeCommune": "42104", - "libelleAcheminement": "LA GRESLE", - "nomCommune": "LA GRESLE" + "codePostal": "65320", + "codeCommune": "65422", + "libelleAcheminement": "SERON", + "nomCommune": "SERON" }, { - "codePostal": "35130", - "codeCommune": "35125", - "libelleAcheminement": "LA GUERCHE DE BRETAGNE", - "nomCommune": "LA GUERCHE DE BRETAGNE" + "codePostal": "55150", + "codeCommune": "55556", + "libelleAcheminement": "VILLE DEVANT CHAUMONT", + "nomCommune": "VILLE DEVANT CHAUMONT" }, { - "codePostal": "04240", - "codeCommune": "04008", - "libelleAcheminement": "ANNOT", - "nomCommune": "ANNOT" + "codePostal": "58140", + "codeCommune": "58049", + "libelleAcheminement": "CHALAUX", + "nomCommune": "CHALAUX" }, { - "codePostal": "62118", - "codeCommune": "62660", - "libelleAcheminement": "PLOUVAIN", - "nomCommune": "PLOUVAIN" + "codePostal": "67770", + "codeCommune": "67082", + "libelleAcheminement": "DALHUNDEN", + "nomCommune": "DALHUNDEN" }, { - "codePostal": "42210", - "codeCommune": "42108", - "libelleAcheminement": "L HOPITAL LE GRAND", - "nomCommune": "L HOPITAL LE GRAND" + "codePostal": "13550", + "codeCommune": "13066", + "libelleAcheminement": "NOVES", + "nomCommune": "NOVES" }, { - "codePostal": "35630", - "codeCommune": "35130", - "libelleAcheminement": "HEDE BAZOUGES", - "nomCommune": "HEDE BAZOUGES" + "codePostal": "65500", + "codeCommune": "65425", + "libelleAcheminement": "SIARROUY", + "nomCommune": "SIARROUY" }, { - "codePostal": "04200", - "codeCommune": "04016", - "libelleAcheminement": "AUTHON", - "nomCommune": "AUTHON" + "codePostal": "55800", + "codeCommune": "55560", + "libelleAcheminement": "VILLERS AUX VENTS", + "nomCommune": "VILLERS AUX VENTS" }, { - "codePostal": "62140", - "codeCommune": "62661", - "libelleAcheminement": "BOUIN PLUMOISON", - "nomCommune": "BOUIN PLUMOISON" + "codePostal": "58420", + "codeCommune": "58050", + "libelleAcheminement": "CHALLEMENT", + "nomCommune": "CHALLEMENT" }, { - "codePostal": "42420", - "codeCommune": "42123", - "libelleAcheminement": "LORETTE", - "nomCommune": "LORETTE" + "codePostal": "67650", + "codeCommune": "67084", + "libelleAcheminement": "DAMBACH LA VILLE", + "nomCommune": "DAMBACH LA VILLE" }, { - "codePostal": "35750", - "codeCommune": "35133", - "libelleAcheminement": "IFFENDIC", - "nomCommune": "IFFENDIC" + "codePostal": "13550", + "codeCommune": "13066", + "libelleAcheminement": "NOVES", + "nomCommune": "NOVES" }, { - "codePostal": "04250", - "codeCommune": "04023", - "libelleAcheminement": "BAYONS", - "nomCommune": "BAYONS" + "codePostal": "65190", + "codeCommune": "65426", + "libelleAcheminement": "SINZOS", + "nomCommune": "SINZOS" }, { - "codePostal": "62140", - "codeCommune": "62661", - "libelleAcheminement": "BOUIN PLUMOISON", - "nomCommune": "BOUIN PLUMOISON" + "codePostal": "55000", + "codeCommune": "55568", + "libelleAcheminement": "VILLE SUR SAULX", + "nomCommune": "VILLE SUR SAULX" }, { - "codePostal": "42300", - "codeCommune": "42127", - "libelleAcheminement": "MABLY", - "nomCommune": "MABLY" + "codePostal": "58350", + "codeCommune": "58061", + "libelleAcheminement": "CHASNAY", + "nomCommune": "CHASNAY" }, { - "codePostal": "35850", - "codeCommune": "35135", - "libelleAcheminement": "IRODOUER", - "nomCommune": "IRODOUER" + "codePostal": "67490", + "codeCommune": "67089", + "libelleAcheminement": "DETTWILLER", + "nomCommune": "DETTWILLER" }, { - "codePostal": "04200", - "codeCommune": "04027", - "libelleAcheminement": "BEVONS", - "nomCommune": "BEVONS" + "codePostal": "13860", + "codeCommune": "13074", + "libelleAcheminement": "PEYROLLES EN PROVENCE", + "nomCommune": "PEYROLLES EN PROVENCE" }, { - "codePostal": "62111", - "codeCommune": "62664", - "libelleAcheminement": "POMMIER", - "nomCommune": "POMMIER" + "codePostal": "65400", + "codeCommune": "65428", + "libelleAcheminement": "SIREIX", + "nomCommune": "SIREIX" }, { - "codePostal": "42114", - "codeCommune": "42128", - "libelleAcheminement": "MACHEZAL", - "nomCommune": "MACHEZAL" + "codePostal": "55250", + "codeCommune": "55569", + "libelleAcheminement": "VILLOTTE DEVANT LOUPPY", + "nomCommune": "VILLOTTE DEVANT LOUPPY" }, { - "codePostal": "35133", - "codeCommune": "35137", - "libelleAcheminement": "JAVENE", - "nomCommune": "JAVENE" + "codePostal": "58120", + "codeCommune": "58062", + "libelleAcheminement": "CHATEAU CHINON", + "nomCommune": "CHATEAU CHINON VILLE" }, { - "codePostal": "04120", - "codeCommune": "04039", - "libelleAcheminement": "CASTELLANE", - "nomCommune": "CASTELLANE" + "codePostal": "67440", + "codeCommune": "67096", + "libelleAcheminement": "DIMBSTHAL", + "nomCommune": "DIMBSTHAL" }, { - "codePostal": "62134", - "codeCommune": "62668", - "libelleAcheminement": "PREDEFIN", - "nomCommune": "PREDEFIN" + "codePostal": "13380", + "codeCommune": "13075", + "libelleAcheminement": "PLAN DE CUQUES", + "nomCommune": "PLAN DE CUQUES" }, { - "codePostal": "42130", - "codeCommune": "42134", - "libelleAcheminement": "MARCILLY LE CHATEL", - "nomCommune": "MARCILLY LE CHATEL" + "codePostal": "65430", + "codeCommune": "65433", + "libelleAcheminement": "SOUES", + "nomCommune": "SOUES" }, { - "codePostal": "35660", - "codeCommune": "35145", - "libelleAcheminement": "LANGON", - "nomCommune": "LANGON" + "codePostal": "55150", + "codeCommune": "55572", + "libelleAcheminement": "VITTARVILLE", + "nomCommune": "VITTARVILLE" }, { - "codePostal": "04380", - "codeCommune": "04040", - "libelleAcheminement": "LE CASTELLARD MELAN", - "nomCommune": "LE CASTELLARD MELAN" + "codePostal": "58120", + "codeCommune": "58063", + "libelleAcheminement": "CHATEAU CHINON CAMPAGNE", + "nomCommune": "CHATEAU CHINON CAMPAGNE" }, { - "codePostal": "62650", - "codeCommune": "62670", - "libelleAcheminement": "PREURES", - "nomCommune": "PREURES" + "codePostal": "67430", + "codeCommune": "67099", + "libelleAcheminement": "DOMFESSEL", + "nomCommune": "DOMFESSEL" }, { - "codePostal": "42130", - "codeCommune": "42150", - "libelleAcheminement": "MONTVERDUN", - "nomCommune": "MONTVERDUN" + "codePostal": "13340", + "codeCommune": "13081", + "libelleAcheminement": "ROGNAC", + "nomCommune": "ROGNAC" }, { - "codePostal": "35520", - "codeCommune": "35177", - "libelleAcheminement": "LA MEZIERE", - "nomCommune": "LA MEZIERE" + "codePostal": "65370", + "codeCommune": "65441", + "libelleAcheminement": "THEBE", + "nomCommune": "THEBE" }, { - "codePostal": "04320", - "codeCommune": "04043", - "libelleAcheminement": "VAL DE CHALVAGNE", - "nomCommune": "VAL DE CHALVAGNE" + "codePostal": "55130", + "codeCommune": "55574", + "libelleAcheminement": "VOUTHON BAS", + "nomCommune": "VOUTHON BAS" }, { - "codePostal": "62390", - "codeCommune": "62683", - "libelleAcheminement": "QUOEUX HAUT MAINIL", - "nomCommune": "QUOEUX HAUT MAINIL" + "codePostal": "58120", + "codeCommune": "58066", + "libelleAcheminement": "CHATIN", + "nomCommune": "CHATIN" }, { - "codePostal": "42470", - "codeCommune": "42153", - "libelleAcheminement": "NEAUX", - "nomCommune": "NEAUX" + "codePostal": "67170", + "codeCommune": "67100", + "libelleAcheminement": "DONNENHEIM", + "nomCommune": "DONNENHEIM" }, { - "codePostal": "35160", - "codeCommune": "35187", - "libelleAcheminement": "MONTERFIL", - "nomCommune": "MONTERFIL" + "codePostal": "13360", + "codeCommune": "13086", + "libelleAcheminement": "ROQUEVAIRE", + "nomCommune": "ROQUEVAIRE" }, { - "codePostal": "04160", - "codeCommune": "04049", - "libelleAcheminement": "CHATEAU ARNOUX ST AUBAN", - "nomCommune": "CHATEAU ARNOUX ST AUBAN" + "codePostal": "65230", + "codeCommune": "65442", + "libelleAcheminement": "THERMES MAGNOAC", + "nomCommune": "THERMES MAGNOAC" }, { - "codePostal": "62120", - "codeCommune": "62691", - "libelleAcheminement": "ST AUGUSTIN", - "nomCommune": "ST AUGUSTIN" + "codePostal": "56360", + "codeCommune": "56009", + "libelleAcheminement": "BANGOR", + "nomCommune": "BANGOR" }, { - "codePostal": "42510", - "codeCommune": "42155", - "libelleAcheminement": "NERVIEUX", - "nomCommune": "NERVIEUX" + "codePostal": "58400", + "codeCommune": "58067", + "libelleAcheminement": "CHAULGNES", + "nomCommune": "CHAULGNES" }, { - "codePostal": "35460", - "codeCommune": "35191", - "libelleAcheminement": "LES PORTES DU COGLAIS", - "nomCommune": "LES PORTES DU COGLAIS" + "codePostal": "67330", + "codeCommune": "67103", + "libelleAcheminement": "DOSSENHEIM SUR ZINSEL", + "nomCommune": "DOSSENHEIM SUR ZINSEL" }, { - "codePostal": "04270", - "codeCommune": "04054", - "libelleAcheminement": "CHATEAUREDON", - "nomCommune": "CHATEAUREDON" + "codePostal": "13360", + "codeCommune": "13086", + "libelleAcheminement": "ROQUEVAIRE", + "nomCommune": "ROQUEVAIRE" }, { - "codePostal": "62150", - "codeCommune": "62693", - "libelleAcheminement": "REBREUVE RANCHICOURT", - "nomCommune": "REBREUVE RANCHICOURT" + "codePostal": "65190", + "codeCommune": "65447", + "libelleAcheminement": "TOURNAY", + "nomCommune": "TOURNAY" }, { - "codePostal": "42590", - "codeCommune": "42156", - "libelleAcheminement": "NEULISE", - "nomCommune": "NEULISE" + "codePostal": "56190", + "codeCommune": "56018", + "libelleAcheminement": "BILLIERS", + "nomCommune": "BILLIERS" }, { - "codePostal": "35500", - "codeCommune": "35194", - "libelleAcheminement": "MONTREUIL SOUS PEROUSE", - "nomCommune": "MONTREUIL SOUS PEROUSE" + "codePostal": "58420", + "codeCommune": "58071", + "libelleAcheminement": "CHEVANNES CHANGY", + "nomCommune": "CHEVANNES CHANGY" }, { - "codePostal": "04530", - "codeCommune": "04062", - "libelleAcheminement": "LA CONDAMINE CHATELARD", - "nomCommune": "LA CONDAMINE CHATELARD" + "codePostal": "67160", + "codeCommune": "67104", + "libelleAcheminement": "DRACHENBRONN BIRLENBACH", + "nomCommune": "DRACHENBRONN BIRLENBACH" }, { - "codePostal": "62156", - "codeCommune": "62703", - "libelleAcheminement": "REMY", - "nomCommune": "REMY" + "codePostal": "13740", + "codeCommune": "13088", + "libelleAcheminement": "LE ROVE", + "nomCommune": "LE ROVE" }, { - "codePostal": "42640", - "codeCommune": "42157", - "libelleAcheminement": "NOAILLY", - "nomCommune": "NOAILLY" + "codePostal": "65140", + "codeCommune": "65457", + "libelleAcheminement": "UGNOUAS", + "nomCommune": "UGNOUAS" }, { - "codePostal": "35440", - "codeCommune": "35195", - "libelleAcheminement": "MONTREUIL SUR ILLE", - "nomCommune": "MONTREUIL SUR ILLE" + "codePostal": "56420", + "codeCommune": "56019", + "libelleAcheminement": "BILLIO", + "nomCommune": "BILLIO" }, { - "codePostal": "04230", - "codeCommune": "04065", - "libelleAcheminement": "CRUIS", - "nomCommune": "CRUIS" + "codePostal": "58110", + "codeCommune": "58076", + "libelleAcheminement": "CHOUGNY", + "nomCommune": "CHOUGNY" }, { - "codePostal": "62720", - "codeCommune": "62705", - "libelleAcheminement": "RETY", - "nomCommune": "RETY" + "codePostal": "67410", + "codeCommune": "67106", + "libelleAcheminement": "DRUSENHEIM", + "nomCommune": "DRUSENHEIM" }, { - "codePostal": "42440", - "codeCommune": "42159", - "libelleAcheminement": "NOIRETABLE", - "nomCommune": "NOIRETABLE" + "codePostal": "13100", + "codeCommune": "13095", + "libelleAcheminement": "ST MARC JAUMEGARDE", + "nomCommune": "ST MARC JAUMEGARDE" }, { - "codePostal": "35740", - "codeCommune": "35210", - "libelleAcheminement": "PACE", - "nomCommune": "PACE" + "codePostal": "65700", + "codeCommune": "65472", + "libelleAcheminement": "VILLEFRANQUE", + "nomCommune": "VILLEFRANQUE" }, { - "codePostal": "04000", - "codeCommune": "04070", - "libelleAcheminement": "DIGNE LES BAINS", - "nomCommune": "DIGNE LES BAINS" + "codePostal": "56420", + "codeCommune": "56027", + "libelleAcheminement": "BULEON", + "nomCommune": "BULEON" }, { - "codePostal": "62223", - "codeCommune": "62714", - "libelleAcheminement": "ROCLINCOURT", - "nomCommune": "ROCLINCOURT" + "codePostal": "58500", + "codeCommune": "58079", + "libelleAcheminement": "CLAMECY", + "nomCommune": "CLAMECY" }, { - "codePostal": "42310", - "codeCommune": "42163", - "libelleAcheminement": "LA PACAUDIERE", - "nomCommune": "LA PACAUDIERE" + "codePostal": "67360", + "codeCommune": "67110", + "libelleAcheminement": "DURRENBACH", + "nomCommune": "DURRENBACH" }, { - "codePostal": "35850", - "codeCommune": "35216", - "libelleAcheminement": "PARTHENAY DE BRETAGNE", - "nomCommune": "PARTHENAY DE BRETAGNE" + "codePostal": "13920", + "codeCommune": "13098", + "libelleAcheminement": "ST MITRE LES REMPARTS", + "nomCommune": "ST MITRE LES REMPARTS" }, { - "codePostal": "04270", - "codeCommune": "04074", - "libelleAcheminement": "ENTRAGES", - "nomCommune": "ENTRAGES" + "codePostal": "65260", + "codeCommune": "65473", + "libelleAcheminement": "VILLELONGUE", + "nomCommune": "VILLELONGUE" }, { - "codePostal": "62390", - "codeCommune": "62722", - "libelleAcheminement": "ROUGEFAY", - "nomCommune": "ROUGEFAY" + "codePostal": "56910", + "codeCommune": "56033", + "libelleAcheminement": "CARENTOIR", + "nomCommune": "CARENTOIR" }, { - "codePostal": "42410", - "codeCommune": "42167", - "libelleAcheminement": "PAVEZIN", - "nomCommune": "PAVEZIN" + "codePostal": "58500", + "codeCommune": "58079", + "libelleAcheminement": "CLAMECY", + "nomCommune": "CLAMECY" }, { - "codePostal": "35550", - "codeCommune": "35219", - "libelleAcheminement": "PIPRIAC", - "nomCommune": "PIPRIAC" + "codePostal": "67320", + "codeCommune": "67111", + "libelleAcheminement": "DURSTEL", + "nomCommune": "DURSTEL" }, { - "codePostal": "04320", - "codeCommune": "04076", - "libelleAcheminement": "ENTREVAUX", - "nomCommune": "ENTREVAUX" + "codePostal": "13730", + "codeCommune": "13102", + "libelleAcheminement": "ST VICTORET", + "nomCommune": "ST VICTORET" }, { - "codePostal": "62990", - "codeCommune": "62725", - "libelleAcheminement": "ROYON", - "nomCommune": "ROYON" + "codePostal": "65500", + "codeCommune": "65476", + "libelleAcheminement": "VILLENAVE PRES BEARN", + "nomCommune": "VILLENAVE PRES BEARN" }, { - "codePostal": "42410", - "codeCommune": "42168", - "libelleAcheminement": "PELUSSIN", - "nomCommune": "PELUSSIN" + "codePostal": "56910", + "codeCommune": "56033", + "libelleAcheminement": "CARENTOIR", + "nomCommune": "CARENTOIR" }, { - "codePostal": "35470", - "codeCommune": "35221", - "libelleAcheminement": "PLECHATEL", - "nomCommune": "PLECHATEL" + "codePostal": "58210", + "codeCommune": "58084", + "libelleAcheminement": "CORVOL D EMBERNARD", + "nomCommune": "CORVOL D EMBERNARD" }, { - "codePostal": "04160", - "codeCommune": "04079", - "libelleAcheminement": "L ESCALE", - "nomCommune": "L ESCALE" + "codePostal": "67470", + "codeCommune": "67113", + "libelleAcheminement": "EBERBACH SELTZ", + "nomCommune": "EBERBACH SELTZ" }, { - "codePostal": "62310", - "codeCommune": "62726", - "libelleAcheminement": "RUISSEAUVILLE", - "nomCommune": "RUISSEAUVILLE" + "codePostal": "13960", + "codeCommune": "13104", + "libelleAcheminement": "SAUSSET LES PINS", + "nomCommune": "SAUSSET LES PINS" }, { - "codePostal": "42380", - "codeCommune": "42169", - "libelleAcheminement": "PERIGNEUX", - "nomCommune": "PERIGNEUX" + "codePostal": "66700", + "codeCommune": "66008", + "libelleAcheminement": "ARGELES SUR MER", + "nomCommune": "ARGELES SUR MER" }, { - "codePostal": "35420", - "codeCommune": "35230", - "libelleAcheminement": "POILLEY", - "nomCommune": "POILLEY" + "codePostal": "56850", + "codeCommune": "56036", + "libelleAcheminement": "CAUDAN", + "nomCommune": "CAUDAN" }, { - "codePostal": "04270", - "codeCommune": "04084", - "libelleAcheminement": "ESTOUBLON", - "nomCommune": "ESTOUBLON" + "codePostal": "58200", + "codeCommune": "58086", + "libelleAcheminement": "COSNE COURS SUR LOIRE", + "nomCommune": "COSNE COURS SUR LOIRE" }, { - "codePostal": "62370", - "codeCommune": "62730", - "libelleAcheminement": "RUMINGHEM", - "nomCommune": "RUMINGHEM" + "codePostal": "67700", + "codeCommune": "67117", + "libelleAcheminement": "ECKARTSWILLER", + "nomCommune": "ECKARTSWILLER" }, { - "codePostal": "42110", - "codeCommune": "42174", - "libelleAcheminement": "PONCINS", - "nomCommune": "PONCINS" + "codePostal": "13150", + "codeCommune": "13108", + "libelleAcheminement": "TARASCON", + "nomCommune": "TARASCON" }, { - "codePostal": "35660", - "codeCommune": "35237", - "libelleAcheminement": "RENAC", - "nomCommune": "RENAC" + "codePostal": "66670", + "codeCommune": "66011", + "libelleAcheminement": "BAGES", + "nomCommune": "BAGES" }, { - "codePostal": "04250", - "codeCommune": "04093", - "libelleAcheminement": "GIGORS", - "nomCommune": "GIGORS" + "codePostal": "56620", + "codeCommune": "56040", + "libelleAcheminement": "CLEGUER", + "nomCommune": "CLEGUER" }, { - "codePostal": "62550", - "codeCommune": "62732", - "libelleAcheminement": "SACHIN", - "nomCommune": "SACHIN" + "codePostal": "58660", + "codeCommune": "58088", + "libelleAcheminement": "COULANGES LES NEVERS", + "nomCommune": "COULANGES LES NEVERS" }, { - "codePostal": "42155", - "codeCommune": "42176", - "libelleAcheminement": "POUILLY LES NONAINS", - "nomCommune": "POUILLY LES NONAINS" + "codePostal": "67350", + "codeCommune": "67123", + "libelleAcheminement": "ENGWILLER", + "nomCommune": "ENGWILLER" }, { - "codePostal": "35700", - "codeCommune": "35238", - "libelleAcheminement": "RENNES", - "nomCommune": "RENNES" + "codePostal": "13670", + "codeCommune": "13116", + "libelleAcheminement": "VERQUIERES", + "nomCommune": "VERQUIERES" }, { - "codePostal": "04800", - "codeCommune": "04094", - "libelleAcheminement": "GREOUX LES BAINS", - "nomCommune": "GREOUX LES BAINS" + "codePostal": "66320", + "codeCommune": "66013", + "libelleAcheminement": "BAILLESTAVY", + "nomCommune": "BAILLESTAVY" }, { - "codePostal": "62360", - "codeCommune": "62746", - "libelleAcheminement": "PONT DE BRIQUES ST ETIENNE", - "nomCommune": "ST ETIENNE AU MONT" + "codePostal": "56230", + "codeCommune": "56045", + "libelleAcheminement": "LE COURS", + "nomCommune": "LE COURS" }, { - "codePostal": "42720", - "codeCommune": "42177", - "libelleAcheminement": "POUILLY SOUS CHARLIEU", - "nomCommune": "POUILLY SOUS CHARLIEU" + "codePostal": "58410", + "codeCommune": "58109", + "libelleAcheminement": "ENTRAINS SUR NOHAIN", + "nomCommune": "ENTRAINS SUR NOHAIN" }, { - "codePostal": "35133", - "codeCommune": "35243", - "libelleAcheminement": "ROMAGNE", - "nomCommune": "ROMAGNE" + "codePostal": "67120", + "codeCommune": "67127", + "libelleAcheminement": "ERGERSHEIM", + "nomCommune": "ERGERSHEIM" }, { - "codePostal": "04850", - "codeCommune": "04096", - "libelleAcheminement": "JAUSIERS", - "nomCommune": "JAUSIERS" + "codePostal": "13007", + "codeCommune": "13207", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 07" }, { - "codePostal": "62370", - "codeCommune": "62756", - "libelleAcheminement": "STE MARIE KERQUE", - "nomCommune": "STE MARIE KERQUE" + "codePostal": "66130", + "codeCommune": "66023", + "libelleAcheminement": "BOULETERNERE", + "nomCommune": "BOULETERNERE" }, { - "codePostal": "42340", - "codeCommune": "42185", - "libelleAcheminement": "RIVAS", - "nomCommune": "RIVAS" + "codePostal": "56200", + "codeCommune": "56061", + "libelleAcheminement": "LA GACILLY", + "nomCommune": "LA GACILLY" }, { - "codePostal": "35850", - "codeCommune": "35245", - "libelleAcheminement": "ROMILLE", - "nomCommune": "ROMILLE" + "codePostal": "58250", + "codeCommune": "58118", + "libelleAcheminement": "FOURS", + "nomCommune": "FOURS" }, { - "codePostal": "04420", - "codeCommune": "04097", - "libelleAcheminement": "LA JAVIE", - "nomCommune": "LA JAVIE" + "codePostal": "67120", + "codeCommune": "67128", + "libelleAcheminement": "ERNOLSHEIM BRUCHE", + "nomCommune": "ERNOLSHEIM BRUCHE" }, { - "codePostal": "62500", - "codeCommune": "62757", - "libelleAcheminement": "ST MARTIN LEZ TATINGHEM", - "nomCommune": "ST MARTIN LEZ TATINGHEM" + "codePostal": "13008", + "codeCommune": "13208", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 08" }, { - "codePostal": "42600", - "codeCommune": "42188", - "libelleAcheminement": "ROCHE", - "nomCommune": "ROCHE" + "codePostal": "66360", + "codeCommune": "66047", + "libelleAcheminement": "CAUDIES DE CONFLENT", + "nomCommune": "CAUDIES DE CONFLENT" }, { - "codePostal": "35500", - "codeCommune": "35252", - "libelleAcheminement": "ST AUBIN DES LANDES", - "nomCommune": "ST AUBIN DES LANDES" + "codePostal": "56380", + "codeCommune": "56075", + "libelleAcheminement": "GUER", + "nomCommune": "GUER" }, { - "codePostal": "04230", - "codeCommune": "04109", - "libelleAcheminement": "MALLEFOUGASSE AUGES", - "nomCommune": "MALLEFOUGASSE AUGES" + "codePostal": "58150", + "codeCommune": "58122", + "libelleAcheminement": "GARCHY", + "nomCommune": "GARCHY" }, { - "codePostal": "62240", - "codeCommune": "62759", - "libelleAcheminement": "ST MARTIN CHOQUEL", - "nomCommune": "ST MARTIN CHOQUEL" + "codePostal": "67150", + "codeCommune": "67130", + "libelleAcheminement": "ERSTEIN", + "nomCommune": "ERSTEIN" }, { - "codePostal": "42380", - "codeCommune": "42192", - "libelleAcheminement": "ROZIER COTES D AUREC", - "nomCommune": "ROZIER COTES D AUREC" + "codePostal": "13011", + "codeCommune": "13211", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 11" }, { - "codePostal": "35140", - "codeCommune": "35253", - "libelleAcheminement": "ST AUBIN DU CORMIER", - "nomCommune": "ST AUBIN DU CORMIER" + "codePostal": "66500", + "codeCommune": "66054", + "libelleAcheminement": "CONAT", + "nomCommune": "CONAT" }, { - "codePostal": "04250", - "codeCommune": "04118", - "libelleAcheminement": "MELVE", - "nomCommune": "MELVE" + "codePostal": "56310", + "codeCommune": "56076", + "libelleAcheminement": "GUERN", + "nomCommune": "GUERN" }, { - "codePostal": "62128", - "codeCommune": "62761", - "libelleAcheminement": "ST MARTIN SUR COJEUL", - "nomCommune": "ST MARTIN SUR COJEUL" + "codePostal": "58150", + "codeCommune": "58122", + "libelleAcheminement": "GARCHY", + "nomCommune": "GARCHY" }, { - "codePostal": "42810", - "codeCommune": "42193", - "libelleAcheminement": "ROZIER EN DONZY", - "nomCommune": "ROZIER EN DONZY" + "codePostal": "67310", + "codeCommune": "67139", + "libelleAcheminement": "FLEXBOURG", + "nomCommune": "FLEXBOURG" }, { - "codePostal": "35630", - "codeCommune": "35258", - "libelleAcheminement": "ST BRIEUC DES IFFS", - "nomCommune": "ST BRIEUC DES IFFS" + "codePostal": "13012", + "codeCommune": "13212", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 12" }, { - "codePostal": "04530", - "codeCommune": "04120", - "libelleAcheminement": "VAL D ORONAYE", - "nomCommune": "VAL D ORONAYE" + "codePostal": "66200", + "codeCommune": "66065", + "libelleAcheminement": "ELNE", + "nomCommune": "ELNE" }, { - "codePostal": "62223", - "codeCommune": "62764", - "libelleAcheminement": "ST NICOLAS", - "nomCommune": "ST NICOLAS" + "codePostal": "56780", + "codeCommune": "56087", + "libelleAcheminement": "ILE AUX MOINES", + "nomCommune": "ILE AUX MOINES" }, { - "codePostal": "42510", - "codeCommune": "42196", - "libelleAcheminement": "STE AGATHE EN DONZY", - "nomCommune": "STE AGATHE EN DONZY" + "codePostal": "58470", + "codeCommune": "58126", + "libelleAcheminement": "GIMOUILLE", + "nomCommune": "GIMOUILLE" }, { - "codePostal": "35120", - "codeCommune": "35259", - "libelleAcheminement": "ST BROLADRE", - "nomCommune": "ST BROLADRE" + "codePostal": "67580", + "codeCommune": "67141", + "libelleAcheminement": "FORSTHEIM", + "nomCommune": "FORSTHEIM" }, { - "codePostal": "04270", - "codeCommune": "04121", - "libelleAcheminement": "MEZEL", - "nomCommune": "MEZEL" + "codePostal": "13013", + "codeCommune": "13213", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 13" }, { - "codePostal": "62350", - "codeCommune": "62770", - "libelleAcheminement": "ST VENANT", - "nomCommune": "ST VENANT" + "codePostal": "66760", + "codeCommune": "66066", + "libelleAcheminement": "ENVEITG", + "nomCommune": "ENVEITG" }, { - "codePostal": "42130", - "codeCommune": "42197", - "libelleAcheminement": "STE AGATHE LA BOUTERESSE", - "nomCommune": "STE AGATHE LA BOUTERESSE" + "codePostal": "56700", + "codeCommune": "56094", + "libelleAcheminement": "KERVIGNAC", + "nomCommune": "KERVIGNAC" }, { - "codePostal": "35210", - "codeCommune": "35260", - "libelleAcheminement": "ST CHRISTOPHE DES BOIS", - "nomCommune": "ST CHRISTOPHE DES BOIS" + "codePostal": "58230", + "codeCommune": "58129", + "libelleAcheminement": "GOULOUX", + "nomCommune": "GOULOUX" }, { - "codePostal": "04200", - "codeCommune": "04123", - "libelleAcheminement": "MISON", - "nomCommune": "MISON" + "codePostal": "67130", + "codeCommune": "67144", + "libelleAcheminement": "FOUDAY", + "nomCommune": "FOUDAY" }, { - "codePostal": "62830", - "codeCommune": "62773", - "libelleAcheminement": "SAMER", - "nomCommune": "SAMER" + "codePostal": "13013", + "codeCommune": "13213", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 13" }, { - "codePostal": "42380", - "codeCommune": "42204", - "libelleAcheminement": "ST BONNET LE CHATEAU", - "nomCommune": "ST BONNET LE CHATEAU" + "codePostal": "66800", + "codeCommune": "66072", + "libelleAcheminement": "ESTAVAR", + "nomCommune": "ESTAVAR" }, { - "codePostal": "35220", - "codeCommune": "35264", - "libelleAcheminement": "ST DIDIER", - "nomCommune": "ST DIDIER" + "codePostal": "56600", + "codeCommune": "56098", + "libelleAcheminement": "LANESTER", + "nomCommune": "LANESTER" }, { - "codePostal": "04170", - "codeCommune": "04133", - "libelleAcheminement": "MORIEZ", - "nomCommune": "MORIEZ" + "codePostal": "58420", + "codeCommune": "58130", + "libelleAcheminement": "GRENOIS", + "nomCommune": "GRENOIS" }, { - "codePostal": "62231", - "codeCommune": "62774", - "libelleAcheminement": "SANGATTE", - "nomCommune": "SANGATTE" + "codePostal": "67860", + "codeCommune": "67146", + "libelleAcheminement": "FRIESENHEIM", + "nomCommune": "FRIESENHEIM" }, { - "codePostal": "42330", - "codeCommune": "42206", - "libelleAcheminement": "ST BONNET LES OULES", - "nomCommune": "ST BONNET LES OULES" + "codePostal": "13014", + "codeCommune": "13214", + "libelleAcheminement": "MARSEILLE", + "nomCommune": "MARSEILLE 14" }, { - "codePostal": "35550", - "codeCommune": "35268", - "libelleAcheminement": "ST GANTON", - "nomCommune": "ST GANTON" + "codePostal": "66320", + "codeCommune": "66073", + "libelleAcheminement": "ESTOHER", + "nomCommune": "ESTOHER" }, { - "codePostal": "04360", - "codeCommune": "04135", - "libelleAcheminement": "MOUSTIERS STE MARIE", - "nomCommune": "MOUSTIERS STE MARIE" + "codePostal": "56630", + "codeCommune": "56100", + "libelleAcheminement": "LANGONNET", + "nomCommune": "LANGONNET" }, { - "codePostal": "62810", - "codeCommune": "62778", - "libelleAcheminement": "SARS LE BOIS", - "nomCommune": "SARS LE BOIS" + "codePostal": "58290", + "codeCommune": "58142", + "libelleAcheminement": "LIMANTON", + "nomCommune": "LIMANTON" }, { - "codePostal": "42540", - "codeCommune": "42209", - "libelleAcheminement": "STE COLOMBE SUR GAND", - "nomCommune": "STE COLOMBE SUR GAND" + "codePostal": "67290", + "codeCommune": "67148", + "libelleAcheminement": "FROHMUHL", + "nomCommune": "FROHMUHL" }, { - "codePostal": "35420", - "codeCommune": "35271", - "libelleAcheminement": "ST GEORGES DE REINTEMBAULT", - "nomCommune": "ST GEORGES DE REINTEMBAULT" + "codePostal": "14540", + "codeCommune": "14005", + "libelleAcheminement": "VALAMBRAY", + "nomCommune": "VALAMBRAY" }, { - "codePostal": "04700", - "codeCommune": "04143", - "libelleAcheminement": "ORAISON", - "nomCommune": "ORAISON" + "codePostal": "66220", + "codeCommune": "66077", + "libelleAcheminement": "FENOUILLET", + "nomCommune": "FENOUILLET" }, { - "codePostal": "62860", - "codeCommune": "62780", - "libelleAcheminement": "SAUCHY CAUCHY", - "nomCommune": "SAUCHY CAUCHY" + "codePostal": "56440", + "codeCommune": "56101", + "libelleAcheminement": "LANGUIDIC", + "nomCommune": "LANGUIDIC" }, { - "codePostal": "42210", - "codeCommune": "42214", - "libelleAcheminement": "ST CYR LES VIGNES", - "nomCommune": "ST CYR LES VIGNES" + "codePostal": "58270", + "codeCommune": "58143", + "libelleAcheminement": "LIMON", + "nomCommune": "LIMON" }, { - "codePostal": "35250", - "codeCommune": "35274", - "libelleAcheminement": "ST GERMAIN SUR ILLE", - "nomCommune": "ST GERMAIN SUR ILLE" + "codePostal": "67360", + "codeCommune": "67160", + "libelleAcheminement": "GOERSDORF", + "nomCommune": "GOERSDORF" }, { - "codePostal": "04200", - "codeCommune": "04145", - "libelleAcheminement": "PEIPIN", - "nomCommune": "PEIPIN" + "codePostal": "14240", + "codeCommune": "14011", + "libelleAcheminement": "AURSEULLES", + "nomCommune": "AURSEULLES" }, { - "codePostal": "62860", - "codeCommune": "62782", - "libelleAcheminement": "SAUDEMONT", - "nomCommune": "SAUDEMONT" + "codePostal": "66320", + "codeCommune": "66079", + "libelleAcheminement": "FINESTRET", + "nomCommune": "FINESTRET" }, { - "codePostal": "42640", - "codeCommune": "42220", - "libelleAcheminement": "ST FORGEUX LESPINASSE", - "nomCommune": "ST FORGEUX LESPINASSE" + "codePostal": "56360", + "codeCommune": "56114", + "libelleAcheminement": "LOCMARIA", + "nomCommune": "LOCMARIA" }, { - "codePostal": "35760", - "codeCommune": "35278", - "libelleAcheminement": "ST GREGOIRE", - "nomCommune": "ST GREGOIRE" + "codePostal": "58470", + "codeCommune": "58152", + "libelleAcheminement": "MAGNY COURS", + "nomCommune": "MAGNY COURS" }, { - "codePostal": "05130", - "codeCommune": "04150", - "libelleAcheminement": "PIEGUT", - "nomCommune": "PIEGUT" + "codePostal": "67700", + "codeCommune": "67161", + "libelleAcheminement": "GOTTENHOUSE", + "nomCommune": "GOTTENHOUSE" }, { - "codePostal": "62310", - "codeCommune": "62790", - "libelleAcheminement": "SENLIS", - "nomCommune": "SENLIS" + "codePostal": "14240", + "codeCommune": "14011", + "libelleAcheminement": "AURSEULLES", + "nomCommune": "AURSEULLES" }, { - "codePostal": "42110", - "codeCommune": "42221", - "libelleAcheminement": "STE FOY ST SULPICE", - "nomCommune": "STE FOY ST SULPICE" + "codePostal": "66300", + "codeCommune": "66084", + "libelleAcheminement": "FOURQUES", + "nomCommune": "FOURQUES" }, { - "codePostal": "35140", - "codeCommune": "35282", - "libelleAcheminement": "RIVES DU COUESNON", - "nomCommune": "RIVES DU COUESNON" + "codePostal": "56300", + "codeCommune": "56125", + "libelleAcheminement": "MALGUENAC", + "nomCommune": "MALGUENAC" }, { - "codePostal": "04860", - "codeCommune": "04152", - "libelleAcheminement": "PIERREVERT", - "nomCommune": "PIERREVERT" + "codePostal": "58800", + "codeCommune": "58153", + "libelleAcheminement": "MAGNY LORMES", + "nomCommune": "MAGNY LORMES" }, { - "codePostal": "62560", - "codeCommune": "62812", - "libelleAcheminement": "THIEMBRONNE", - "nomCommune": "THIEMBRONNE" + "codePostal": "67490", + "codeCommune": "67162", + "libelleAcheminement": "GOTTESHEIM", + "nomCommune": "GOTTESHEIM" }, { - "codePostal": "42800", - "codeCommune": "42225", - "libelleAcheminement": "GENILAC", - "nomCommune": "GENILAC" + "codePostal": "14610", + "codeCommune": "14014", + "libelleAcheminement": "COLOMBY ANGUERNY", + "nomCommune": "COLOMBY ANGUERNY" }, { - "codePostal": "35430", - "codeCommune": "35284", - "libelleAcheminement": "ST JOUAN DES GUERETS", - "nomCommune": "ST JOUAN DES GUERETS" + "codePostal": "66320", + "codeCommune": "66089", + "libelleAcheminement": "JOCH", + "nomCommune": "JOCH" }, { - "codePostal": "04420", - "codeCommune": "04155", - "libelleAcheminement": "PRADS HAUTE BLEONE", - "nomCommune": "PRADS HAUTE BLEONE" + "codePostal": "56500", + "codeCommune": "56140", + "libelleAcheminement": "MOREAC", + "nomCommune": "MOREAC" }, { - "codePostal": "62500", - "codeCommune": "62819", - "libelleAcheminement": "TILQUES", - "nomCommune": "TILQUES" + "codePostal": "58400", + "codeCommune": "58155", + "libelleAcheminement": "LA MARCHE", + "nomCommune": "LA MARCHE" }, { - "codePostal": "42370", - "codeCommune": "42233", - "libelleAcheminement": "ST HAON LE VIEUX", - "nomCommune": "ST HAON LE VIEUX" + "codePostal": "67350", + "codeCommune": "67166", + "libelleAcheminement": "GRASSENDORF", + "nomCommune": "GRASSENDORF" }, { - "codePostal": "35800", - "codeCommune": "35287", - "libelleAcheminement": "ST LUNAIRE", - "nomCommune": "ST LUNAIRE" + "codePostal": "14640", + "codeCommune": "14024", + "libelleAcheminement": "AUBERVILLE", + "nomCommune": "AUBERVILLE" }, { - "codePostal": "04150", - "codeCommune": "04159", - "libelleAcheminement": "REDORTIERS", - "nomCommune": "REDORTIERS" + "codePostal": "66230", + "codeCommune": "66091", + "libelleAcheminement": "LAMANERE", + "nomCommune": "LAMANERE" }, { - "codePostal": "62310", - "codeCommune": "62823", - "libelleAcheminement": "TORCY", - "nomCommune": "TORCY" + "codePostal": "56500", + "codeCommune": "56144", + "libelleAcheminement": "EVELLYS", + "nomCommune": "EVELLYS" }, { - "codePostal": "42190", - "codeCommune": "42236", - "libelleAcheminement": "ST HILAIRE SOUS CHARLIEU", - "nomCommune": "ST HILAIRE SOUS CHARLIEU" + "codePostal": "58180", + "codeCommune": "58160", + "libelleAcheminement": "MARZY", + "nomCommune": "MARZY" }, { - "codePostal": "35400", - "codeCommune": "35288", - "libelleAcheminement": "ST MALO", - "nomCommune": "ST MALO" + "codePostal": "67110", + "codeCommune": "67174", + "libelleAcheminement": "GUMBRECHTSHOFFEN", + "nomCommune": "GUMBRECHTSHOFFEN" }, { - "codePostal": "04340", - "codeCommune": "04161", - "libelleAcheminement": "MEOLANS REVEL", - "nomCommune": "MEOLANS REVEL" + "codePostal": "14260", + "codeCommune": "14027", + "libelleAcheminement": "LES MONTS D AUNAY", + "nomCommune": "LES MONTS D AUNAY" }, { - "codePostal": "62140", - "codeCommune": "62834", - "libelleAcheminement": "VACQUERIETTE ERQUIERES", - "nomCommune": "VACQUERIETTE ERQUIERES" + "codePostal": "66760", + "codeCommune": "66095", + "libelleAcheminement": "LATOUR DE CAROL", + "nomCommune": "LATOUR DE CAROL" }, { - "codePostal": "42155", - "codeCommune": "42239", - "libelleAcheminement": "ST JEAN ST MAURICE SUR LOIRE", - "nomCommune": "ST JEAN ST MAURICE SUR LOIRE" + "codePostal": "56190", + "codeCommune": "56149", + "libelleAcheminement": "NOYAL MUZILLAC", + "nomCommune": "NOYAL MUZILLAC" }, { - "codePostal": "35460", - "codeCommune": "35292", - "libelleAcheminement": "ST MARC LE BLANC", - "nomCommune": "ST MARC LE BLANC" + "codePostal": "58210", + "codeCommune": "58163", + "libelleAcheminement": "MENOU", + "nomCommune": "MENOU" }, { - "codePostal": "04240", - "codeCommune": "04174", - "libelleAcheminement": "ST BENOIT", - "nomCommune": "ST BENOIT" + "codePostal": "67700", + "codeCommune": "67179", + "libelleAcheminement": "HAEGEN", + "nomCommune": "HAEGEN" }, { - "codePostal": "62380", - "codeCommune": "62837", - "libelleAcheminement": "VAUDRINGHEM", - "nomCommune": "VAUDRINGHEM" + "codePostal": "14490", + "codeCommune": "14035", + "libelleAcheminement": "BALLEROY SUR DROME", + "nomCommune": "BALLEROY SUR DROME" }, { - "codePostal": "42430", - "codeCommune": "42248", - "libelleAcheminement": "ST JUST EN CHEVALET", - "nomCommune": "ST JUST EN CHEVALET" + "codePostal": "66720", + "codeCommune": "66096", + "libelleAcheminement": "LATOUR DE FRANCE", + "nomCommune": "LATOUR DE FRANCE" }, { - "codePostal": "35720", - "codeCommune": "35308", - "libelleAcheminement": "MESNIL ROC H", - "nomCommune": "MESNIL ROC H" + "codePostal": "56140", + "codeCommune": "56159", + "libelleAcheminement": "PLEUCADEUC", + "nomCommune": "PLEUCADEUC" }, { - "codePostal": "04380", - "codeCommune": "04177", - "libelleAcheminement": "HAUTES DUYES", - "nomCommune": "HAUTES DUYES" + "codePostal": "58170", + "codeCommune": "58168", + "libelleAcheminement": "MILLAY", + "nomCommune": "MILLAY" }, { - "codePostal": "62232", - "codeCommune": "62841", - "libelleAcheminement": "VENDIN LES BETHUNE", - "nomCommune": "VENDIN LES BETHUNE" + "codePostal": "67690", + "codeCommune": "67184", + "libelleAcheminement": "HATTEN", + "nomCommune": "HATTEN" }, { - "codePostal": "42330", - "codeCommune": "42264", - "libelleAcheminement": "ST MEDARD EN FOREZ", - "nomCommune": "ST MEDARD EN FOREZ" + "codePostal": "14940", + "codeCommune": "14036", + "libelleAcheminement": "BANNEVILLE LA CAMPAGNE", + "nomCommune": "BANNEVILLE LA CAMPAGNE" }, { - "codePostal": "35133", - "codeCommune": "35310", - "libelleAcheminement": "ST SAUVEUR DES LANDES", - "nomCommune": "ST SAUVEUR DES LANDES" + "codePostal": "66220", + "codeCommune": "66097", + "libelleAcheminement": "LESQUERDE", + "nomCommune": "LESQUERDE" }, { - "codePostal": "04200", - "codeCommune": "04179", - "libelleAcheminement": "ST GENIEZ", - "nomCommune": "ST GENIEZ" + "codePostal": "56770", + "codeCommune": "56170", + "libelleAcheminement": "PLOURAY", + "nomCommune": "PLOURAY" }, { - "codePostal": "62560", - "codeCommune": "62844", - "libelleAcheminement": "VERCHOCQ", - "nomCommune": "VERCHOCQ" + "codePostal": "58250", + "codeCommune": "58172", + "libelleAcheminement": "MONTAMBERT", + "nomCommune": "MONTAMBERT" }, { - "codePostal": "42410", - "codeCommune": "42265", - "libelleAcheminement": "ST MICHEL SUR RHONE", - "nomCommune": "ST MICHEL SUR RHONE" + "codePostal": "67330", + "codeCommune": "67185", + "libelleAcheminement": "HATTMATT", + "nomCommune": "HATTMATT" }, { - "codePostal": "35580", - "codeCommune": "35312", - "libelleAcheminement": "ST SENOUX", - "nomCommune": "ST SENOUX" + "codePostal": "14670", + "codeCommune": "14045", + "libelleAcheminement": "BASSENEVILLE", + "nomCommune": "BASSENEVILLE" }, { - "codePostal": "04330", - "codeCommune": "04180", - "libelleAcheminement": "ST JACQUES", - "nomCommune": "ST JACQUES" + "codePostal": "66300", + "codeCommune": "66099", + "libelleAcheminement": "LLAURO", + "nomCommune": "LLAURO" }, { - "codePostal": "62113", - "codeCommune": "62847", - "libelleAcheminement": "VERQUIGNEUL", - "nomCommune": "VERQUIGNEUL" + "codePostal": "56930", + "codeCommune": "56173", + "libelleAcheminement": "PLUMELIAU BIEUZY", + "nomCommune": "PLUMELIAU BIEUZY" }, { - "codePostal": "42590", - "codeCommune": "42268", - "libelleAcheminement": "VEZELIN SUR LOIRE", - "nomCommune": "VEZELIN SUR LOIRE" + "codePostal": "58700", + "codeCommune": "58174", + "libelleAcheminement": "MONTENOISON", + "nomCommune": "MONTENOISON" }, { - "codePostal": "35430", - "codeCommune": "35314", - "libelleAcheminement": "ST SULIAC", - "nomCommune": "ST SULIAC" + "codePostal": "67260", + "codeCommune": "67191", + "libelleAcheminement": "HERBITZHEIM", + "nomCommune": "HERBITZHEIM" }, { - "codePostal": "04500", - "codeCommune": "04186", - "libelleAcheminement": "ST LAURENT DU VERDON", - "nomCommune": "ST LAURENT DU VERDON" + "codePostal": "14400", + "codeCommune": "14047", + "libelleAcheminement": "BAYEUX", + "nomCommune": "BAYEUX" }, { - "codePostal": "62770", - "codeCommune": "62850", - "libelleAcheminement": "VIEIL HESDIN", - "nomCommune": "VIEIL HESDIN" + "codePostal": "66200", + "codeCommune": "66114", + "libelleAcheminement": "MONTESCOT", + "nomCommune": "MONTESCOT" }, { - "codePostal": "42600", - "codeCommune": "42269", - "libelleAcheminement": "ST PAUL D UZORE", - "nomCommune": "ST PAUL D UZORE" + "codePostal": "56290", + "codeCommune": "56181", + "libelleAcheminement": "PORT LOUIS", + "nomCommune": "PORT LOUIS" }, { - "codePostal": "35190", - "codeCommune": "35318", - "libelleAcheminement": "ST THUAL", - "nomCommune": "ST THUAL" + "codePostal": "58420", + "codeCommune": "58181", + "libelleAcheminement": "MORACHES", + "nomCommune": "MORACHES" }, { - "codePostal": "04530", - "codeCommune": "04193", - "libelleAcheminement": "ST PAUL SUR UBAYE", - "nomCommune": "ST PAUL SUR UBAYE" + "codePostal": "67390", + "codeCommune": "67195", + "libelleAcheminement": "HESSENHEIM", + "nomCommune": "HESSENHEIM" }, { - "codePostal": "62136", - "codeCommune": "62851", - "libelleAcheminement": "VIEILLE CHAPELLE", - "nomCommune": "VIEILLE CHAPELLE" + "codePostal": "14620", + "codeCommune": "14053", + "libelleAcheminement": "BEAUMAIS", + "nomCommune": "BEAUMAIS" }, { - "codePostal": "42240", - "codeCommune": "42270", - "libelleAcheminement": "ST PAUL EN CORNILLON", - "nomCommune": "ST PAUL EN CORNILLON" + "codePostal": "66500", + "codeCommune": "66119", + "libelleAcheminement": "MOSSET", + "nomCommune": "MOSSET" }, { - "codePostal": "35320", - "codeCommune": "35322", - "libelleAcheminement": "LE SEL DE BRETAGNE", - "nomCommune": "LE SEL DE BRETAGNE" + "codePostal": "56500", + "codeCommune": "56189", + "libelleAcheminement": "RADENAC", + "nomCommune": "RADENAC" }, { - "codePostal": "04150", - "codeCommune": "04208", - "libelleAcheminement": "SIMIANE LA ROTONDE", - "nomCommune": "SIMIANE LA ROTONDE" + "codePostal": "58700", + "codeCommune": "58186", + "libelleAcheminement": "MURLIN", + "nomCommune": "MURLIN" }, { - "codePostal": "62162", - "codeCommune": "62852", - "libelleAcheminement": "VIEILLE EGLISE", - "nomCommune": "VIEILLE EGLISE" + "codePostal": "67150", + "codeCommune": "67200", + "libelleAcheminement": "HIPSHEIM", + "nomCommune": "HIPSHEIM" }, { - "codePostal": "42260", - "codeCommune": "42274", - "libelleAcheminement": "ST POLGUES", - "nomCommune": "ST POLGUES" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "35550", - "codeCommune": "35328", - "libelleAcheminement": "SIXT SUR AFF", - "nomCommune": "SIXT SUR AFF" + "codePostal": "66400", + "codeCommune": "66126", + "libelleAcheminement": "OMS", + "nomCommune": "OMS" }, { - "codePostal": "04150", - "codeCommune": "04208", - "libelleAcheminement": "SIMIANE LA ROTONDE", - "nomCommune": "SIMIANE LA ROTONDE" + "codePostal": "56350", + "codeCommune": "56194", + "libelleAcheminement": "RIEUX", + "nomCommune": "RIEUX" }, { - "codePostal": "62770", - "codeCommune": "62868", - "libelleAcheminement": "WAIL", - "nomCommune": "WAIL" + "codePostal": "58300", + "codeCommune": "58192", + "libelleAcheminement": "NEUVILLE LES DECIZE", + "nomCommune": "NEUVILLE LES DECIZE" }, { - "codePostal": "42830", - "codeCommune": "42276", - "libelleAcheminement": "ST PRIEST LA PRUGNE", - "nomCommune": "ST PRIEST LA PRUGNE" + "codePostal": "67270", + "codeCommune": "67209", + "libelleAcheminement": "HOHFRANKENHEIM", + "nomCommune": "HOHFRANKENHEIM" }, { - "codePostal": "35500", - "codeCommune": "35330", - "libelleAcheminement": "TAILLIS", - "nomCommune": "TAILLIS" + "codePostal": "14350", + "codeCommune": "14061", + "libelleAcheminement": "SOULEUVRE EN BOCAGE", + "nomCommune": "SOULEUVRE EN BOCAGE" }, { - "codePostal": "04120", - "codeCommune": "04210", - "libelleAcheminement": "SOLEILHAS", - "nomCommune": "SOLEILHAS" + "codePostal": "66000", + "codeCommune": "66136", + "libelleAcheminement": "PERPIGNAN", + "nomCommune": "PERPIGNAN" }, { - "codePostal": "62217", - "codeCommune": "62869", - "libelleAcheminement": "WAILLY", - "nomCommune": "WAILLY" + "codePostal": "56460", + "codeCommune": "56197", + "libelleAcheminement": "VAL D OUST", + "nomCommune": "VAL D OUST" }, { - "codePostal": "42370", - "codeCommune": "42281", - "libelleAcheminement": "ST RIRAND", - "nomCommune": "ST RIRAND" + "codePostal": "58000", + "codeCommune": "58194", + "libelleAcheminement": "NEVERS", + "nomCommune": "NEVERS" }, { - "codePostal": "35460", - "codeCommune": "35336", - "libelleAcheminement": "LE TIERCENT", - "nomCommune": "LE TIERCENT" + "codePostal": "67270", + "codeCommune": "67215", + "libelleAcheminement": "HUTTENDORF", + "nomCommune": "HUTTENDORF" }, { - "codePostal": "04250", - "codeCommune": "04222", - "libelleAcheminement": "TURRIERS", - "nomCommune": "TURRIERS" + "codePostal": "14340", + "codeCommune": "14082", + "libelleAcheminement": "LA BOISSIERE", + "nomCommune": "LA BOISSIERE" }, { - "codePostal": "62170", - "codeCommune": "62870", - "libelleAcheminement": "WAILLY BEAUCAMP", - "nomCommune": "WAILLY BEAUCAMP" + "codePostal": "66480", + "codeCommune": "66137", + "libelleAcheminement": "LE PERTHUS", + "nomCommune": "LE PERTHUS" }, { - "codePostal": "42130", - "codeCommune": "42288", - "libelleAcheminement": "ST SIXTE", - "nomCommune": "ST SIXTE" + "codePostal": "56580", + "codeCommune": "56198", + "libelleAcheminement": "ROHAN", + "nomCommune": "ROHAN" }, { - "codePostal": "35270", - "codeCommune": "35342", - "libelleAcheminement": "TREMEHEUC", - "nomCommune": "TREMEHEUC" + "codePostal": "58500", + "codeCommune": "58200", + "libelleAcheminement": "OUAGNE", + "nomCommune": "OUAGNE" }, { - "codePostal": "04400", - "codeCommune": "04226", - "libelleAcheminement": "UVERNET FOURS", - "nomCommune": "UVERNET FOURS" + "codePostal": "67270", + "codeCommune": "67220", + "libelleAcheminement": "INGENHEIM", + "nomCommune": "INGENHEIM" }, { - "codePostal": "62380", - "codeCommune": "62882", - "libelleAcheminement": "WAVRANS SUR L AA", - "nomCommune": "WAVRANS SUR L AA" + "codePostal": "14340", + "codeCommune": "14083", + "libelleAcheminement": "BONNEBOSQ", + "nomCommune": "BONNEBOSQ" }, { - "codePostal": "42990", - "codeCommune": "42298", - "libelleAcheminement": "SAUVAIN", - "nomCommune": "SAUVAIN" + "codePostal": "66720", + "codeCommune": "66143", + "libelleAcheminement": "PLANEZES", + "nomCommune": "PLANEZES" }, { - "codePostal": "35320", - "codeCommune": "35343", - "libelleAcheminement": "TRESBOEUF", - "nomCommune": "TRESBOEUF" + "codePostal": "56110", + "codeCommune": "56201", + "libelleAcheminement": "LE SAINT", + "nomCommune": "LE SAINT" }, { - "codePostal": "04210", - "codeCommune": "04230", - "libelleAcheminement": "VALENSOLE", - "nomCommune": "VALENSOLE" + "codePostal": "58130", + "codeCommune": "58204", + "libelleAcheminement": "VAUX D AMOGNES", + "nomCommune": "VAUX D AMOGNES" }, { - "codePostal": "62130", - "codeCommune": "62883", - "libelleAcheminement": "WAVRANS SUR TERNOISE", - "nomCommune": "WAVRANS SUR TERNOISE" + "codePostal": "67140", + "codeCommune": "67227", + "libelleAcheminement": "ITTERSWILLER", + "nomCommune": "ITTERSWILLER" }, { - "codePostal": "42560", - "codeCommune": "42301", - "libelleAcheminement": "SOLEYMIEUX", - "nomCommune": "SOLEYMIEUX" + "codePostal": "14210", + "codeCommune": "14089", + "libelleAcheminement": "BOUGY", + "nomCommune": "BOUGY" }, { - "codePostal": "35190", - "codeCommune": "35346", - "libelleAcheminement": "TRIMER", - "nomCommune": "TRIMER" + "codePostal": "66760", + "codeCommune": "66147", + "libelleAcheminement": "PORTE PUYMORENS", + "nomCommune": "PORTE PUYMORENS" }, { - "codePostal": "04140", - "codeCommune": "04235", - "libelleAcheminement": "VERDACHES", - "nomCommune": "VERDACHES" + "codePostal": "56450", + "codeCommune": "56205", + "libelleAcheminement": "ST ARMEL", + "nomCommune": "ST ARMEL" }, { - "codePostal": "62770", - "codeCommune": "62890", - "libelleAcheminement": "WILLEMAN", - "nomCommune": "WILLEMAN" + "codePostal": "58210", + "codeCommune": "58206", + "libelleAcheminement": "PARIGNY LA ROSE", + "nomCommune": "PARIGNY LA ROSE" }, { - "codePostal": "42450", - "codeCommune": "42304", - "libelleAcheminement": "SURY LE COMTAL", - "nomCommune": "SURY LE COMTAL" + "codePostal": "67230", + "codeCommune": "67233", + "libelleAcheminement": "KERTZFELD", + "nomCommune": "KERTZFELD" }, { - "codePostal": "35680", - "codeCommune": "35350", - "libelleAcheminement": "VERGEAL", - "nomCommune": "VERGEAL" + "codePostal": "14220", + "codeCommune": "14090", + "libelleAcheminement": "BOULON", + "nomCommune": "BOULON" }, { - "codePostal": "04290", - "codeCommune": "04244", - "libelleAcheminement": "VOLONNE", - "nomCommune": "VOLONNE" + "codePostal": "66230", + "codeCommune": "66150", + "libelleAcheminement": "PRATS DE MOLLO LA PRESTE", + "nomCommune": "PRATS DE MOLLO LA PRESTE" }, { - "codePostal": "62380", - "codeCommune": "62897", - "libelleAcheminement": "WISMES", - "nomCommune": "WISMES" + "codePostal": "56430", + "codeCommune": "56208", + "libelleAcheminement": "ST BRIEUC DE MAURON", + "nomCommune": "ST BRIEUC DE MAURON" }, { - "codePostal": "42350", - "codeCommune": "42305", - "libelleAcheminement": "LA TALAUDIERE", - "nomCommune": "LA TALAUDIERE" + "codePostal": "58320", + "codeCommune": "58214", + "libelleAcheminement": "POUGUES LES EAUX", + "nomCommune": "POUGUES LES EAUX" }, { - "codePostal": "35160", - "codeCommune": "35351", - "libelleAcheminement": "LE VERGER", - "nomCommune": "LE VERGER" + "codePostal": "67600", + "codeCommune": "67239", + "libelleAcheminement": "KINTZHEIM", + "nomCommune": "KINTZHEIM" }, { - "codePostal": "05460", - "codeCommune": "05001", - "libelleAcheminement": "ABRIES RISTOLAS", - "nomCommune": "ABRIES RISTOLAS" + "codePostal": "14430", + "codeCommune": "14093", + "libelleAcheminement": "BRANVILLE", + "nomCommune": "BRANVILLE" }, { - "codePostal": "62570", - "codeCommune": "62902", - "libelleAcheminement": "WIZERNES", - "nomCommune": "WIZERNES" + "codePostal": "66130", + "codeCommune": "66153", + "libelleAcheminement": "PRUNET ET BELPUIG", + "nomCommune": "PRUNET ET BELPUIG" }, { - "codePostal": "42130", - "codeCommune": "42313", - "libelleAcheminement": "TRELINS", - "nomCommune": "TRELINS" + "codePostal": "56130", + "codeCommune": "56212", + "libelleAcheminement": "ST DOLAY", + "nomCommune": "ST DOLAY" }, { - "codePostal": "35610", - "codeCommune": "35354", - "libelleAcheminement": "VIEUX VIEL", - "nomCommune": "VIEUX VIEL" + "codePostal": "58190", + "codeCommune": "58224", + "libelleAcheminement": "RUAGES", + "nomCommune": "RUAGES" }, { - "codePostal": "05470", - "codeCommune": "05003", - "libelleAcheminement": "AIGUILLES", - "nomCommune": "AIGUILLES" + "codePostal": "67880", + "codeCommune": "67248", + "libelleAcheminement": "KRAUTERGERSHEIM", + "nomCommune": "KRAUTERGERSHEIM" }, { - "codePostal": "62890", - "codeCommune": "62904", - "libelleAcheminement": "ZOUAFQUES", - "nomCommune": "ZOUAFQUES" + "codePostal": "14190", + "codeCommune": "14097", + "libelleAcheminement": "BRETTEVILLE LE RABET", + "nomCommune": "BRETTEVILLE LE RABET" }, { - "codePostal": "42240", - "codeCommune": "42316", - "libelleAcheminement": "UNIEUX", - "nomCommune": "UNIEUX" + "codePostal": "66750", + "codeCommune": "66171", + "libelleAcheminement": "ST CYPRIEN", + "nomCommune": "ST CYPRIEN" }, { - "codePostal": "35490", - "codeCommune": "35355", - "libelleAcheminement": "VIEUX VY SUR COUESNON", - "nomCommune": "VIEUX VY SUR COUESNON" + "codePostal": "56920", + "codeCommune": "56215", + "libelleAcheminement": "ST GONNERY", + "nomCommune": "ST GONNERY" }, { - "codePostal": "05300", - "codeCommune": "05014", - "libelleAcheminement": "BARRET SUR MEOUGE", - "nomCommune": "BARRET SUR MEOUGE" + "codePostal": "58140", + "codeCommune": "58229", + "libelleAcheminement": "ST ANDRE EN MORVAN", + "nomCommune": "ST ANDRE EN MORVAN" }, { - "codePostal": "62370", - "codeCommune": "62906", - "libelleAcheminement": "ZUTKERQUE", - "nomCommune": "ZUTKERQUE" + "codePostal": "67250", + "codeCommune": "67254", + "libelleAcheminement": "KUTZENHAUSEN", + "nomCommune": "KUTZENHAUSEN" }, { - "codePostal": "42110", - "codeCommune": "42319", - "libelleAcheminement": "VALEILLE", - "nomCommune": "VALEILLE" + "codePostal": "14740", + "codeCommune": "14098", + "libelleAcheminement": "THUE ET MUE", + "nomCommune": "THUE ET MUE" }, { - "codePostal": "35420", - "codeCommune": "35357", - "libelleAcheminement": "VILLAMEE", - "nomCommune": "VILLAMEE" + "codePostal": "66740", + "codeCommune": "66175", + "libelleAcheminement": "ST GENIS DES FONTAINES", + "nomCommune": "ST GENIS DES FONTAINES" }, { - "codePostal": "05140", - "codeCommune": "05019", - "libelleAcheminement": "LA BEAUME", - "nomCommune": "LA BEAUME" + "codePostal": "56430", + "codeCommune": "56225", + "libelleAcheminement": "ST LERY", + "nomCommune": "ST LERY" }, { - "codePostal": "62820", - "codeCommune": "62907", - "libelleAcheminement": "LIBERCOURT", - "nomCommune": "LIBERCOURT" + "codePostal": "58000", + "codeCommune": "58238", + "libelleAcheminement": "ST ELOI", + "nomCommune": "ST ELOI" }, { - "codePostal": "42111", - "codeCommune": "42321", - "libelleAcheminement": "LA VALLA SUR ROCHEFORT", - "nomCommune": "LA VALLA SUR ROCHEFORT" + "codePostal": "67630", + "codeCommune": "67261", + "libelleAcheminement": "LAUTERBOURG", + "nomCommune": "LAUTERBOURG" }, { - "codePostal": "35131", - "codeCommune": "35363", - "libelleAcheminement": "PONT PEAN", - "nomCommune": "PONT PEAN" + "codePostal": "14740", + "codeCommune": "14098", + "libelleAcheminement": "THUE ET MUE", + "nomCommune": "THUE ET MUE" }, { - "codePostal": "05150", - "codeCommune": "05024", - "libelleAcheminement": "VALDOULE", - "nomCommune": "VALDOULE" + "codePostal": "66300", + "codeCommune": "66177", + "libelleAcheminement": "ST JEAN LASSEILLE", + "nomCommune": "ST JEAN LASSEILLE" }, { - "codePostal": "62124", - "codeCommune": "62909", - "libelleAcheminement": "YTRES", - "nomCommune": "YTRES" + "codePostal": "56490", + "codeCommune": "56227", + "libelleAcheminement": "ST MALO DES TROIS FONTAINES", + "nomCommune": "ST MALO DES TROIS FONTAINES" }, { - "codePostal": "42131", - "codeCommune": "42322", - "libelleAcheminement": "LA VALLA EN GIER", - "nomCommune": "LA VALLA EN GIER" + "codePostal": "58300", + "codeCommune": "58241", + "libelleAcheminement": "ST GERMAIN CHASSENAY", + "nomCommune": "ST GERMAIN CHASSENAY" }, { - "codePostal": "36270", - "codeCommune": "36012", - "libelleAcheminement": "BARAIZE", - "nomCommune": "BARAIZE" + "codePostal": "67480", + "codeCommune": "67264", + "libelleAcheminement": "LEUTENHEIM", + "nomCommune": "LEUTENHEIM" }, { - "codePostal": "05310", - "codeCommune": "05031", - "libelleAcheminement": "CHAMPCELLA", - "nomCommune": "CHAMPCELLA" + "codePostal": "14680", + "codeCommune": "14100", + "libelleAcheminement": "BRETTEVILLE SUR LAIZE", + "nomCommune": "BRETTEVILLE SUR LAIZE" }, { - "codePostal": "63250", - "codeCommune": "63008", - "libelleAcheminement": "ARCONSAT", - "nomCommune": "ARCONSAT" + "codePostal": "66260", + "codeCommune": "66179", + "libelleAcheminement": "ST LAURENT DE CERDANS", + "nomCommune": "ST LAURENT DE CERDANS" }, { - "codePostal": "42390", - "codeCommune": "42330", - "libelleAcheminement": "VILLARS", - "nomCommune": "VILLARS" + "codePostal": "56910", + "codeCommune": "56230", + "libelleAcheminement": "ST NICOLAS DU TERTRE", + "nomCommune": "ST NICOLAS DU TERTRE" }, { - "codePostal": "36110", - "codeCommune": "36013", - "libelleAcheminement": "BAUDRES", - "nomCommune": "BAUDRES" + "codePostal": "58340", + "codeCommune": "58243", + "libelleAcheminement": "ST GRATIEN SAVIGNY", + "nomCommune": "ST GRATIEN SAVIGNY" }, { - "codePostal": "05400", - "codeCommune": "05035", - "libelleAcheminement": "CHATEAUNEUF D OZE", - "nomCommune": "CHATEAUNEUF D OZE" + "codePostal": "67640", + "codeCommune": "67268", + "libelleAcheminement": "LIPSHEIM", + "nomCommune": "LIPSHEIM" }, { - "codePostal": "63420", - "codeCommune": "63009", - "libelleAcheminement": "ARDES", - "nomCommune": "ARDES" + "codePostal": "14130", + "codeCommune": "14104", + "libelleAcheminement": "LE BREVEDENT", + "nomCommune": "LE BREVEDENT" }, { - "codePostal": "42140", - "codeCommune": "42335", - "libelleAcheminement": "VIRICELLES", - "nomCommune": "VIRICELLES" + "codePostal": "66220", + "codeCommune": "66187", + "libelleAcheminement": "ST PAUL DE FENOUILLET", + "nomCommune": "ST PAUL DE FENOUILLET" }, { - "codePostal": "36310", - "codeCommune": "36015", - "libelleAcheminement": "BEAULIEU", - "nomCommune": "BEAULIEU" + "codePostal": "56250", + "codeCommune": "56231", + "libelleAcheminement": "ST NOLFF", + "nomCommune": "ST NOLFF" }, { - "codePostal": "05350", - "codeCommune": "05038", - "libelleAcheminement": "CHATEAU VILLE VIEILLE", - "nomCommune": "CHATEAU VILLE VIEILLE" + "codePostal": "58120", + "codeCommune": "58249", + "libelleAcheminement": "ST LEGER DE FOUGERET", + "nomCommune": "ST LEGER DE FOUGERET" }, { - "codePostal": "63220", - "codeCommune": "63010", - "libelleAcheminement": "ARLANC", - "nomCommune": "ARLANC" + "codePostal": "67270", + "codeCommune": "67270", + "libelleAcheminement": "LIXHAUSEN", + "nomCommune": "LIXHAUSEN" }, { - "codePostal": "42720", - "codeCommune": "42338", - "libelleAcheminement": "VOUGY", - "nomCommune": "VOUGY" + "codePostal": "14710", + "codeCommune": "14107", + "libelleAcheminement": "BRICQUEVILLE", + "nomCommune": "BRICQUEVILLE" }, { - "codePostal": "36370", - "codeCommune": "36016", - "libelleAcheminement": "BELABRE", - "nomCommune": "BELABRE" + "codePostal": "66210", + "codeCommune": "66192", + "libelleAcheminement": "SAUTO", + "nomCommune": "SAUTO" }, { - "codePostal": "05700", - "codeCommune": "05051", - "libelleAcheminement": "ETOILE ST CYRICE", - "nomCommune": "ETOILE ST CYRICE" + "codePostal": "56510", + "codeCommune": "56234", + "libelleAcheminement": "ST PIERRE QUIBERON", + "nomCommune": "ST PIERRE QUIBERON" }, { - "codePostal": "63260", - "codeCommune": "63013", - "libelleAcheminement": "AUBIAT", - "nomCommune": "AUBIAT" + "codePostal": "58200", + "codeCommune": "58261", + "libelleAcheminement": "ST PERE", + "nomCommune": "ST PERE" }, { - "codePostal": "42430", - "codeCommune": "42339", - "libelleAcheminement": "CHAUSSETERRE", - "nomCommune": "CHAUSSETERRE" + "codePostal": "67440", + "codeCommune": "67272", + "libelleAcheminement": "LOCHWILLER", + "nomCommune": "LOCHWILLER" }, { - "codePostal": "36400", - "codeCommune": "36017", - "libelleAcheminement": "LA BERTHENOUX", - "nomCommune": "LA BERTHENOUX" + "codePostal": "14490", + "codeCommune": "14121", + "libelleAcheminement": "CAHAGNOLLES", + "nomCommune": "CAHAGNOLLES" }, { - "codePostal": "05600", - "codeCommune": "05052", - "libelleAcheminement": "EYGLIERS", - "nomCommune": "EYGLIERS" + "codePostal": "66730", + "codeCommune": "66198", + "libelleAcheminement": "SOURNIA", + "nomCommune": "SOURNIA" }, { - "codePostal": "63114", - "codeCommune": "63021", - "libelleAcheminement": "AUTHEZAT", - "nomCommune": "AUTHEZAT" + "codePostal": "56540", + "codeCommune": "56238", + "libelleAcheminement": "ST TUGDUAL", + "nomCommune": "ST TUGDUAL" }, { - "codePostal": "43100", - "codeCommune": "43001", - "libelleAcheminement": "AGNAT", - "nomCommune": "AGNAT" + "codePostal": "58190", + "codeCommune": "58284", + "libelleAcheminement": "TALON", + "nomCommune": "TALON" }, { - "codePostal": "36300", - "codeCommune": "36018", - "libelleAcheminement": "LE BLANC", - "nomCommune": "LE BLANC" + "codePostal": "67430", + "codeCommune": "67274", + "libelleAcheminement": "LORENTZEN", + "nomCommune": "LORENTZEN" }, { - "codePostal": "05300", - "codeCommune": "05053", - "libelleAcheminement": "GARDE COLOMBE", - "nomCommune": "GARDE COLOMBE" + "codePostal": "14610", + "codeCommune": "14123", + "libelleAcheminement": "CAIRON", + "nomCommune": "CAIRON" }, { - "codePostal": "63310", - "codeCommune": "63030", - "libelleAcheminement": "BAS ET LEZAT", - "nomCommune": "BAS ET LEZAT" + "codePostal": "66300", + "codeCommune": "66207", + "libelleAcheminement": "TERRATS", + "nomCommune": "TERRATS" }, { - "codePostal": "43270", - "codeCommune": "43003", - "libelleAcheminement": "ALLEGRE", - "nomCommune": "ALLEGRE" + "codePostal": "56480", + "codeCommune": "56245", + "libelleAcheminement": "SILFIAC", + "nomCommune": "SILFIAC" }, { - "codePostal": "36120", - "codeCommune": "36019", - "libelleAcheminement": "BOMMIERS", - "nomCommune": "BOMMIERS" + "codePostal": "58170", + "codeCommune": "58287", + "libelleAcheminement": "TAZILLY", + "nomCommune": "TAZILLY" }, { - "codePostal": "05140", - "codeCommune": "05055", - "libelleAcheminement": "LA FAURIE", - "nomCommune": "LA FAURIE" + "codePostal": "67220", + "codeCommune": "67280", + "libelleAcheminement": "MAISONSGOUTTE", + "nomCommune": "MAISONSGOUTTE" }, { - "codePostal": "63500", - "codeCommune": "63036", - "libelleAcheminement": "BERGONNE", - "nomCommune": "BERGONNE" + "codePostal": "14340", + "codeCommune": "14126", + "libelleAcheminement": "CAMBREMER", + "nomCommune": "CAMBREMER" }, { - "codePostal": "43700", - "codeCommune": "43010", - "libelleAcheminement": "ARSAC EN VELAY", - "nomCommune": "ARSAC EN VELAY" + "codePostal": "66350", + "codeCommune": "66213", + "libelleAcheminement": "TOULOUGES", + "nomCommune": "TOULOUGES" }, { - "codePostal": "36400", - "codeCommune": "36025", - "libelleAcheminement": "BRIANTES", - "nomCommune": "BRIANTES" + "codePostal": "56130", + "codeCommune": "56250", + "libelleAcheminement": "THEHILLAC", + "nomCommune": "THEHILLAC" }, { - "codePostal": "05000", - "codeCommune": "05061", - "libelleAcheminement": "GAP", - "nomCommune": "GAP" + "codePostal": "58250", + "codeCommune": "58290", + "libelleAcheminement": "THAIX", + "nomCommune": "THAIX" }, { - "codePostal": "63440", - "codeCommune": "63043", - "libelleAcheminement": "BLOT L EGLISE", - "nomCommune": "BLOT L EGLISE" + "codePostal": "67250", + "codeCommune": "67288", + "libelleAcheminement": "MEMMELSHOFFEN", + "nomCommune": "MEMMELSHOFFEN" }, { - "codePostal": "43110", - "codeCommune": "43012", - "libelleAcheminement": "AUREC SUR LOIRE", - "nomCommune": "AUREC SUR LOIRE" + "codePostal": "14500", + "codeCommune": "14127", + "libelleAcheminement": "CAMPAGNOLLES", + "nomCommune": "CAMPAGNOLLES" }, { - "codePostal": "36400", - "codeCommune": "36043", - "libelleAcheminement": "CHASSIGNOLLES", - "nomCommune": "CHASSIGNOLLES" + "codePostal": "66320", + "codeCommune": "66221", + "libelleAcheminement": "VALMANYA", + "nomCommune": "VALMANYA" }, { - "codePostal": "05800", - "codeCommune": "05064", - "libelleAcheminement": "LA CHAPELLE EN VALGAUDEMAR", - "nomCommune": "LA CHAPELLE EN VALGAUDEMAR" + "codePostal": "56250", + "codeCommune": "56254", + "libelleAcheminement": "TREDION", + "nomCommune": "TREDION" }, { - "codePostal": "63270", - "codeCommune": "63059", - "libelleAcheminement": "BUSSEOL", - "nomCommune": "BUSSEOL" + "codePostal": "58400", + "codeCommune": "58302", + "libelleAcheminement": "VARENNES LES NARCY", + "nomCommune": "VARENNES LES NARCY" }, { - "codePostal": "43300", - "codeCommune": "43013", - "libelleAcheminement": "VISSAC AUTEYRAC", - "nomCommune": "VISSAC AUTEYRAC" + "codePostal": "67250", + "codeCommune": "67290", + "libelleAcheminement": "MERKWILLER PECHELBRONN", + "nomCommune": "MERKWILLER PECHELBRONN" }, { - "codePostal": "36800", - "codeCommune": "36051", - "libelleAcheminement": "CHITRAY", - "nomCommune": "CHITRAY" + "codePostal": "14800", + "codeCommune": "14131", + "libelleAcheminement": "CANAPVILLE", + "nomCommune": "CANAPVILLE" }, { - "codePostal": "05600", - "codeCommune": "05065", - "libelleAcheminement": "GUILLESTRE", - "nomCommune": "GUILLESTRE" + "codePostal": "66500", + "codeCommune": "66223", + "libelleAcheminement": "VILLEFRANCHE DE CONFLENT", + "nomCommune": "VILLEFRANCHE DE CONFLENT" }, { - "codePostal": "63330", - "codeCommune": "63060", - "libelleAcheminement": "BUSSIERES", - "nomCommune": "BUSSIERES" + "codePostal": "56000", + "codeCommune": "56260", + "libelleAcheminement": "VANNES", + "nomCommune": "VANNES" }, { - "codePostal": "43390", - "codeCommune": "43017", - "libelleAcheminement": "AZERAT", - "nomCommune": "AZERAT" + "codePostal": "58300", + "codeCommune": "58306", + "libelleAcheminement": "VERNEUIL", + "nomCommune": "VERNEUIL" }, { - "codePostal": "36100", - "codeCommune": "36052", - "libelleAcheminement": "CHOUDAY", - "nomCommune": "CHOUDAY" + "codePostal": "67580", + "codeCommune": "67292", + "libelleAcheminement": "MIETESHEIM", + "nomCommune": "MIETESHEIM" }, { - "codePostal": "05300", - "codeCommune": "05073", - "libelleAcheminement": "LAZER", - "nomCommune": "LAZER" + "codePostal": "14230", + "codeCommune": "14132", + "libelleAcheminement": "CANCHY", + "nomCommune": "CANCHY" }, { - "codePostal": "63118", - "codeCommune": "63063", - "libelleAcheminement": "CEBAZAT", - "nomCommune": "CEBAZAT" + "codePostal": "66320", + "codeCommune": "66230", + "libelleAcheminement": "VINCA", + "nomCommune": "VINCA" }, { - "codePostal": "43370", - "codeCommune": "43018", - "libelleAcheminement": "BAINS", - "nomCommune": "BAINS" + "codePostal": "56250", + "codeCommune": "56261", + "libelleAcheminement": "LA VRAIE CROIX", + "nomCommune": "LA VRAIE CROIX" }, { - "codePostal": "36700", - "codeCommune": "36054", - "libelleAcheminement": "CLERE DU BOIS", - "nomCommune": "CLERE DU BOIS" + "codePostal": "58190", + "codeCommune": "58308", + "libelleAcheminement": "VIGNOL", + "nomCommune": "VIGNOL" }, { - "codePostal": "05350", - "codeCommune": "05077", - "libelleAcheminement": "MOLINES EN QUEYRAS", - "nomCommune": "MOLINES EN QUEYRAS" + "codePostal": "67270", + "codeCommune": "67293", + "libelleAcheminement": "MINVERSHEIM", + "nomCommune": "MINVERSHEIM" }, { - "codePostal": "63250", - "codeCommune": "63066", - "libelleAcheminement": "CELLES SUR DUROLLE", - "nomCommune": "CELLES SUR DUROLLE" + "codePostal": "14140", + "codeCommune": "14141", + "libelleAcheminement": "CASTILLON EN AUGE", + "nomCommune": "CASTILLON EN AUGE" }, { - "codePostal": "43200", - "codeCommune": "43024", - "libelleAcheminement": "BEAUX", - "nomCommune": "BEAUX" + "codePostal": "66600", + "codeCommune": "66231", + "libelleAcheminement": "VINGRAU", + "nomCommune": "VINGRAU" }, { - "codePostal": "36700", - "codeCommune": "36055", - "libelleAcheminement": "CLION", - "nomCommune": "CLION" + "codePostal": "57515", + "codeCommune": "57013", + "libelleAcheminement": "ALSTING", + "nomCommune": "ALSTING" }, { - "codePostal": "05700", - "codeCommune": "05081", - "libelleAcheminement": "MONTCLUS", - "nomCommune": "MONTCLUS" + "codePostal": "58500", + "codeCommune": "58312", + "libelleAcheminement": "VILLIERS SUR YONNE", + "nomCommune": "VILLIERS SUR YONNE" }, { - "codePostal": "63122", - "codeCommune": "63070", - "libelleAcheminement": "CEYRAT", - "nomCommune": "CEYRAT" + "codePostal": "67170", + "codeCommune": "67298", + "libelleAcheminement": "MITTELSCHAEFFOLSHEIM", + "nomCommune": "MITTELSCHAEFFOLSHEIM" }, { - "codePostal": "43350", - "codeCommune": "43026", - "libelleAcheminement": "BELLEVUE LA MONTAGNE", - "nomCommune": "BELLEVUE LA MONTAGNE" + "codePostal": "14190", + "codeCommune": "14145", + "libelleAcheminement": "CAUVICOURT", + "nomCommune": "CAUVICOURT" }, { - "codePostal": "36130", - "codeCommune": "36057", - "libelleAcheminement": "COINGS", - "nomCommune": "COINGS" + "codePostal": "67220", + "codeCommune": "67003", + "libelleAcheminement": "ALBE", + "nomCommune": "ALBE" }, { - "codePostal": "05230", - "codeCommune": "05084", - "libelleAcheminement": "MONTGARDIN", - "nomCommune": "MONTGARDIN" + "codePostal": "57320", + "codeCommune": "57016", + "libelleAcheminement": "ALZING", + "nomCommune": "ALZING" }, { - "codePostal": "63600", - "codeCommune": "63081", - "libelleAcheminement": "CHAMPETIERES", - "nomCommune": "CHAMPETIERES" + "codePostal": "58420", + "codeCommune": "58313", + "libelleAcheminement": "VITRY LACHE", + "nomCommune": "VITRY LACHE" }, { - "codePostal": "43170", - "codeCommune": "43029", - "libelleAcheminement": "LA BESSEYRE ST MARY", - "nomCommune": "LA BESSEYRE ST MARY" + "codePostal": "67670", + "codeCommune": "67301", + "libelleAcheminement": "MOMMENHEIM", + "nomCommune": "MOMMENHEIM" }, { - "codePostal": "36140", - "codeCommune": "36061", - "libelleAcheminement": "CROZON SUR VAUVRE", - "nomCommune": "CROZON SUR VAUVRE" + "codePostal": "14290", + "codeCommune": "14147", + "libelleAcheminement": "CERNAY", + "nomCommune": "CERNAY" }, { - "codePostal": "05100", - "codeCommune": "05085", - "libelleAcheminement": "MONTGENEVRE", - "nomCommune": "MONTGENEVRE" + "codePostal": "67490", + "codeCommune": "67006", + "libelleAcheminement": "ALTENHEIM", + "nomCommune": "ALTENHEIM" }, { - "codePostal": "63440", - "codeCommune": "63082", - "libelleAcheminement": "CHAMPS", - "nomCommune": "CHAMPS" + "codePostal": "57865", + "codeCommune": "57017", + "libelleAcheminement": "AMANVILLERS", + "nomCommune": "AMANVILLERS" }, { - "codePostal": "43500", - "codeCommune": "43034", - "libelleAcheminement": "BOISSET", - "nomCommune": "BOISSET" + "codePostal": "59268", + "codeCommune": "59001", + "libelleAcheminement": "ABANCOURT", + "nomCommune": "ABANCOURT" }, { - "codePostal": "36130", - "codeCommune": "36063", - "libelleAcheminement": "DEOLS", - "nomCommune": "DEOLS" + "codePostal": "67350", + "codeCommune": "67304", + "libelleAcheminement": "MORSCHWILLER", + "nomCommune": "MORSCHWILLER" }, { - "codePostal": "05170", - "codeCommune": "05096", - "libelleAcheminement": "ORCIERES", - "nomCommune": "ORCIERES" + "codePostal": "14220", + "codeCommune": "14150", + "libelleAcheminement": "CESNY LES SOURCES", + "nomCommune": "CESNY LES SOURCES" }, { - "codePostal": "63230", - "codeCommune": "63085", - "libelleAcheminement": "CHAPDES BEAUFORT", - "nomCommune": "CHAPDES BEAUFORT" + "codePostal": "67260", + "codeCommune": "67009", + "libelleAcheminement": "ALTWILLER", + "nomCommune": "ALTWILLER" }, { - "codePostal": "43360", - "codeCommune": "43038", - "libelleAcheminement": "BOURNONCLE ST PIERRE", - "nomCommune": "BOURNONCLE ST PIERRE" + "codePostal": "57130", + "codeCommune": "57021", + "libelleAcheminement": "ANCY DORNOT", + "nomCommune": "ANCY DORNOT" }, { - "codePostal": "36160", - "codeCommune": "36073", - "libelleAcheminement": "FEUSINES", - "nomCommune": "FEUSINES" + "codePostal": "59410", + "codeCommune": "59014", + "libelleAcheminement": "ANZIN", + "nomCommune": "ANZIN" }, { - "codePostal": "05290", - "codeCommune": "05101", - "libelleAcheminement": "VALLOUISE PELVOUX", - "nomCommune": "VALLOUISE PELVOUX" + "codePostal": "67470", + "codeCommune": "67308", + "libelleAcheminement": "MUNCHHAUSEN", + "nomCommune": "MUNCHHAUSEN" }, { - "codePostal": "63590", - "codeCommune": "63086", - "libelleAcheminement": "LA CHAPELLE AGNON", - "nomCommune": "LA CHAPELLE AGNON" + "codePostal": "14520", + "codeCommune": "14172", + "libelleAcheminement": "COMMES", + "nomCommune": "COMMES" }, { - "codePostal": "43510", - "codeCommune": "43042", - "libelleAcheminement": "CAYRES", - "nomCommune": "CAYRES" + "codePostal": "67120", + "codeCommune": "67016", + "libelleAcheminement": "AVOLSHEIM", + "nomCommune": "AVOLSHEIM" }, { - "codePostal": "36220", - "codeCommune": "36076", - "libelleAcheminement": "FONTGOMBAULT", - "nomCommune": "FONTGOMBAULT" + "codePostal": "57380", + "codeCommune": "57027", + "libelleAcheminement": "ARRAINCOURT", + "nomCommune": "ARRAINCOURT" }, { - "codePostal": "05000", - "codeCommune": "05113", - "libelleAcheminement": "RAMBAUD", - "nomCommune": "RAMBAUD" + "codePostal": "59280", + "codeCommune": "59017", + "libelleAcheminement": "ARMENTIERES", + "nomCommune": "ARMENTIERES" }, { - "codePostal": "63390", - "codeCommune": "63100", - "libelleAcheminement": "CHATEAUNEUF LES BAINS", - "nomCommune": "CHATEAUNEUF LES BAINS" + "codePostal": "67630", + "codeCommune": "67315", + "libelleAcheminement": "NEEWILLER PRES LAUTERBOURG", + "nomCommune": "NEEWILLER PRES LAUTERBOURG" }, { - "codePostal": "43700", - "codeCommune": "43061", - "libelleAcheminement": "CHASPINHAC", - "nomCommune": "CHASPINHAC" + "codePostal": "14770", + "codeCommune": "14174", + "libelleAcheminement": "CONDE EN NORMANDIE", + "nomCommune": "CONDE EN NORMANDIE" }, { - "codePostal": "36110", - "codeCommune": "36093", - "libelleAcheminement": "LEVROUX", - "nomCommune": "LEVROUX" + "codePostal": "67210", + "codeCommune": "67031", + "libelleAcheminement": "BERNARDSWILLER", + "nomCommune": "BERNARDSWILLER" }, { - "codePostal": "05160", - "codeCommune": "05114", - "libelleAcheminement": "REALLON", - "nomCommune": "REALLON" + "codePostal": "57790", + "codeCommune": "57034", + "libelleAcheminement": "ASPACH", + "nomCommune": "ASPACH" }, { - "codePostal": "63000", - "codeCommune": "63113", - "libelleAcheminement": "CLERMONT FERRAND", - "nomCommune": "CLERMONT FERRAND" + "codePostal": "59600", + "codeCommune": "59021", + "libelleAcheminement": "ASSEVENT", + "nomCommune": "ASSEVENT" }, { - "codePostal": "43230", - "codeCommune": "43067", - "libelleAcheminement": "CHAVANIAC LAFAYETTE", - "nomCommune": "CHAVANIAC LAFAYETTE" + "codePostal": "67280", + "codeCommune": "67325", + "libelleAcheminement": "NIEDERHASLACH", + "nomCommune": "NIEDERHASLACH" }, { - "codePostal": "36220", - "codeCommune": "36096", - "libelleAcheminement": "LINGE", - "nomCommune": "LINGE" + "codePostal": "14400", + "codeCommune": "14175", + "libelleAcheminement": "CONDE SUR SEULLES", + "nomCommune": "CONDE SUR SEULLES" }, { - "codePostal": "05190", - "codeCommune": "05115", - "libelleAcheminement": "REMOLLON", - "nomCommune": "REMOLLON" + "codePostal": "67320", + "codeCommune": "67036", + "libelleAcheminement": "BETTWILLER", + "nomCommune": "BETTWILLER" }, { - "codePostal": "63460", - "codeCommune": "63116", - "libelleAcheminement": "COMBRONDE", - "nomCommune": "COMBRONDE" + "codePostal": "57260", + "codeCommune": "57035", + "libelleAcheminement": "ASSENONCOURT", + "nomCommune": "ASSENONCOURT" }, { - "codePostal": "43160", - "codeCommune": "43073", - "libelleAcheminement": "CISTRIERES", - "nomCommune": "CISTRIERES" + "codePostal": "59710", + "codeCommune": "59034", + "libelleAcheminement": "AVELIN", + "nomCommune": "AVELIN" }, { - "codePostal": "36140", - "codeCommune": "36099", - "libelleAcheminement": "LOURDOUEIX ST MICHEL", - "nomCommune": "LOURDOUEIX ST MICHEL" + "codePostal": "67207", + "codeCommune": "67326", + "libelleAcheminement": "NIEDERHAUSBERGEN", + "nomCommune": "NIEDERHAUSBERGEN" }, { - "codePostal": "05310", - "codeCommune": "05122", - "libelleAcheminement": "LA ROCHE DE RAME", - "nomCommune": "LA ROCHE DE RAME" + "codePostal": "14130", + "codeCommune": "14177", + "libelleAcheminement": "COQUAINVILLIERS", + "nomCommune": "COQUAINVILLIERS" }, { - "codePostal": "63490", - "codeCommune": "63119", - "libelleAcheminement": "CONDAT LES MONTBOISSIER", - "nomCommune": "CONDAT LES MONTBOISSIER" + "codePostal": "67600", + "codeCommune": "67040", + "libelleAcheminement": "BINDERNHEIM", + "nomCommune": "BINDERNHEIM" }, { - "codePostal": "43700", - "codeCommune": "43078", - "libelleAcheminement": "COUBON", - "nomCommune": "COUBON" + "codePostal": "57710", + "codeCommune": "57041", + "libelleAcheminement": "AUMETZ", + "nomCommune": "AUMETZ" }, { - "codePostal": "36350", - "codeCommune": "36101", - "libelleAcheminement": "LUANT", - "nomCommune": "LUANT" + "codePostal": "59266", + "codeCommune": "59049", + "libelleAcheminement": "BANTOUZELLE", + "nomCommune": "BANTOUZELLE" }, { - "codePostal": "05000", - "codeCommune": "05124", - "libelleAcheminement": "LA ROCHETTE", - "nomCommune": "LA ROCHETTE" + "codePostal": "67350", + "codeCommune": "67328", + "libelleAcheminement": "NIEDERMODERN", + "nomCommune": "NIEDERMODERN" }, { - "codePostal": "63120", - "codeCommune": "63125", - "libelleAcheminement": "COURPIERE", - "nomCommune": "COURPIERE" + "codePostal": "14690", + "codeCommune": "14183", + "libelleAcheminement": "COSSESSEVILLE", + "nomCommune": "COSSESSEVILLE" }, { - "codePostal": "43500", - "codeCommune": "43080", - "libelleAcheminement": "CRAPONNE SUR ARZON", - "nomCommune": "CRAPONNE SUR ARZON" + "codePostal": "67130", + "codeCommune": "67050", + "libelleAcheminement": "BLANCHERUPT", + "nomCommune": "BLANCHERUPT" }, { - "codePostal": "36360", - "codeCommune": "36103", - "libelleAcheminement": "LUCAY LE MALE", - "nomCommune": "LUCAY LE MALE" + "codePostal": "57340", + "codeCommune": "57051", + "libelleAcheminement": "BARONVILLE", + "nomCommune": "BARONVILLE" }, { - "codePostal": "05200", - "codeCommune": "05128", - "libelleAcheminement": "ST ANDRE D EMBRUN", - "nomCommune": "ST ANDRE D EMBRUN" + "codePostal": "59440", + "codeCommune": "59050", + "libelleAcheminement": "BAS LIEU", + "nomCommune": "BAS LIEU" }, { - "codePostal": "63810", - "codeCommune": "63129", - "libelleAcheminement": "CROS", - "nomCommune": "CROS" + "codePostal": "67330", + "codeCommune": "67333", + "libelleAcheminement": "NIEDERSOULTZBACH", + "nomCommune": "NIEDERSOULTZBACH" }, { - "codePostal": "43000", - "codeCommune": "43089", - "libelleAcheminement": "ESPALY ST MARCEL", - "nomCommune": "ESPALY ST MARCEL" + "codePostal": "14260", + "codeCommune": "14195", + "libelleAcheminement": "COURVAUDON", + "nomCommune": "COURVAUDON" }, { - "codePostal": "36220", - "codeCommune": "36113", - "libelleAcheminement": "MARTIZAY", - "nomCommune": "MARTIZAY" + "codePostal": "67530", + "codeCommune": "67052", + "libelleAcheminement": "BOERSCH", + "nomCommune": "BOERSCH" }, { - "codePostal": "05150", - "codeCommune": "05129", - "libelleAcheminement": "ST ANDRE DE ROSANS", - "nomCommune": "ST ANDRE DE ROSANS" + "codePostal": "57580", + "codeCommune": "57054", + "libelleAcheminement": "BAUDRECOURT", + "nomCommune": "BAUDRECOURT" }, { - "codePostal": "63200", - "codeCommune": "63135", - "libelleAcheminement": "DAVAYAT", - "nomCommune": "DAVAYAT" + "codePostal": "59134", + "codeCommune": "59056", + "libelleAcheminement": "BEAUCAMPS LIGNY", + "nomCommune": "BEAUCAMPS LIGNY" }, { - "codePostal": "43150", - "codeCommune": "43091", - "libelleAcheminement": "LES ESTABLES", - "nomCommune": "LES ESTABLES" + "codePostal": "67510", + "codeCommune": "67334", + "libelleAcheminement": "NIEDERSTEINBACH", + "nomCommune": "NIEDERSTEINBACH" }, { - "codePostal": "36210", - "codeCommune": "36115", - "libelleAcheminement": "MENETOU SUR NAHON", - "nomCommune": "MENETOU SUR NAHON" + "codePostal": "14480", + "codeCommune": "14196", + "libelleAcheminement": "CREPON", + "nomCommune": "CREPON" }, { - "codePostal": "05600", - "codeCommune": "05136", - "libelleAcheminement": "ST CREPIN", - "nomCommune": "ST CREPIN" + "codePostal": "67330", + "codeCommune": "67057", + "libelleAcheminement": "BOSSELSHAUSEN", + "nomCommune": "BOSSELSHAUSEN" }, { - "codePostal": "63520", - "codeCommune": "63136", - "libelleAcheminement": "DOMAIZE", - "nomCommune": "DOMAIZE" + "codePostal": "57660", + "codeCommune": "57082", + "libelleAcheminement": "BIDING", + "nomCommune": "BIDING" }, { - "codePostal": "43150", - "codeCommune": "43097", - "libelleAcheminement": "FREYCENET LA CUCHE", - "nomCommune": "FREYCENET LA CUCHE" + "codePostal": "59330", + "codeCommune": "59058", + "libelleAcheminement": "BEAUFORT", + "nomCommune": "BEAUFORT" }, { - "codePostal": "36150", - "codeCommune": "36116", - "libelleAcheminement": "MENETREOLS SOUS VATAN", - "nomCommune": "MENETREOLS SOUS VATAN" + "codePostal": "67520", + "codeCommune": "67335", + "libelleAcheminement": "NORDHEIM", + "nomCommune": "NORDHEIM" }, { - "codePostal": "05250", - "codeCommune": "05139", - "libelleAcheminement": "LE DEVOLUY", - "nomCommune": "LE DEVOLUY" + "codePostal": "14430", + "codeCommune": "14198", + "libelleAcheminement": "CRESSEVEUILLE", + "nomCommune": "CRESSEVEUILLE" }, { - "codePostal": "63300", - "codeCommune": "63138", - "libelleAcheminement": "DORAT", - "nomCommune": "DORAT" + "codePostal": "67330", + "codeCommune": "67061", + "libelleAcheminement": "BOUXWILLER", + "nomCommune": "BOUXWILLER" }, { - "codePostal": "43250", - "codeCommune": "43099", - "libelleAcheminement": "FRUGERES LES MINES", - "nomCommune": "FRUGERES LES MINES" + "codePostal": "57220", + "codeCommune": "57085", + "libelleAcheminement": "BIONVILLE SUR NIED", + "nomCommune": "BIONVILLE SUR NIED" }, { - "codePostal": "36800", - "codeCommune": "36124", - "libelleAcheminement": "MIGNE", - "nomCommune": "MIGNE" + "codePostal": "59570", + "codeCommune": "59065", + "libelleAcheminement": "BELLIGNIES", + "nomCommune": "BELLIGNIES" }, { - "codePostal": "05250", - "codeCommune": "05139", - "libelleAcheminement": "LE DEVOLUY", - "nomCommune": "LE DEVOLUY" + "codePostal": "67230", + "codeCommune": "67338", + "libelleAcheminement": "OBENHEIM", + "nomCommune": "OBENHEIM" }, { - "codePostal": "63220", - "codeCommune": "63139", - "libelleAcheminement": "DORE L EGLISE", - "nomCommune": "DORE L EGLISE" + "codePostal": "14480", + "codeCommune": "14200", + "libelleAcheminement": "CREULLY SUR SEULLES", + "nomCommune": "CREULLY SUR SEULLES" }, { - "codePostal": "43200", - "codeCommune": "43102", - "libelleAcheminement": "GRAZAC", - "nomCommune": "GRAZAC" + "codePostal": "67330", + "codeCommune": "67061", + "libelleAcheminement": "BOUXWILLER", + "nomCommune": "BOUXWILLER" }, { - "codePostal": "36400", - "codeCommune": "36130", - "libelleAcheminement": "MONTLEVICQ", - "nomCommune": "MONTLEVICQ" + "codePostal": "57930", + "codeCommune": "57086", + "libelleAcheminement": "BELLES FORETS", + "nomCommune": "BELLES FORETS" }, { - "codePostal": "05130", - "codeCommune": "05140", - "libelleAcheminement": "ST ETIENNE LE LAUS", - "nomCommune": "ST ETIENNE LE LAUS" + "codePostal": "59980", + "codeCommune": "59074", + "libelleAcheminement": "BERTRY", + "nomCommune": "BERTRY" }, { - "codePostal": "63700", - "codeCommune": "63140", - "libelleAcheminement": "DURMIGNAT", - "nomCommune": "DURMIGNAT" + "codePostal": "67660", + "codeCommune": "67339", + "libelleAcheminement": "BETSCHDORF", + "nomCommune": "BETSCHDORF" }, { - "codePostal": "43450", - "codeCommune": "43103", - "libelleAcheminement": "GRENIER MONTGON", - "nomCommune": "GRENIER MONTGON" + "codePostal": "14430", + "codeCommune": "14203", + "libelleAcheminement": "CRICQUEVILLE EN AUGE", + "nomCommune": "CRICQUEVILLE EN AUGE" }, { - "codePostal": "36800", - "codeCommune": "36144", - "libelleAcheminement": "NURET LE FERRON", - "nomCommune": "NURET LE FERRON" + "codePostal": "67112", + "codeCommune": "67065", + "libelleAcheminement": "BREUSCHWICKERSHEIM", + "nomCommune": "BREUSCHWICKERSHEIM" }, { - "codePostal": "05800", - "codeCommune": "05144", - "libelleAcheminement": "ST JACQUES EN VALGODEMARD", - "nomCommune": "ST JACQUES EN VALGODEMARD" + "codePostal": "57655", + "codeCommune": "57096", + "libelleAcheminement": "BOULANGE", + "nomCommune": "BOULANGE" }, { - "codePostal": "63490", - "codeCommune": "63145", - "libelleAcheminement": "EGLISENEUVE DES LIARDS", - "nomCommune": "EGLISENEUVE DES LIARDS" + "codePostal": "59600", + "codeCommune": "59076", + "libelleAcheminement": "BETTIGNIES", + "nomCommune": "BETTIGNIES" }, { - "codePostal": "43170", - "codeCommune": "43104", - "libelleAcheminement": "GREZES", - "nomCommune": "GREZES" + "codePostal": "67240", + "codeCommune": "67345", + "libelleAcheminement": "OBERHOFFEN SUR MODER", + "nomCommune": "OBERHOFFEN SUR MODER" }, { - "codePostal": "36330", - "codeCommune": "36159", - "libelleAcheminement": "LE POINCONNET", - "nomCommune": "LE POINCONNET" + "codePostal": "14430", + "codeCommune": "14218", + "libelleAcheminement": "DANESTAL", + "nomCommune": "DANESTAL" }, { - "codePostal": "05500", - "codeCommune": "05148", - "libelleAcheminement": "ST LAURENT DU CROS", - "nomCommune": "ST LAURENT DU CROS" + "codePostal": "67320", + "codeCommune": "67071", + "libelleAcheminement": "BUST", + "nomCommune": "BUST" }, { - "codePostal": "63160", - "codeCommune": "63146", - "libelleAcheminement": "EGLISENEUVE PRES BILLOM", - "nomCommune": "EGLISENEUVE PRES BILLOM" + "codePostal": "57810", + "codeCommune": "57099", + "libelleAcheminement": "BOURDONNAY", + "nomCommune": "BOURDONNAY" }, { - "codePostal": "43230", - "codeCommune": "43106", - "libelleAcheminement": "JAX", - "nomCommune": "JAX" + "codePostal": "59173", + "codeCommune": "59084", + "libelleAcheminement": "BLARINGHEM", + "nomCommune": "BLARINGHEM" }, { - "codePostal": "36800", - "codeCommune": "36161", - "libelleAcheminement": "LE PONT CHRETIEN CHABENET", - "nomCommune": "LE PONT CHRETIEN CHABENET" + "codePostal": "67330", + "codeCommune": "67347", + "libelleAcheminement": "OBERMODERN ZUTZENDORF", + "nomCommune": "OBERMODERN ZUTZENDORF" }, { - "codePostal": "05800", - "codeCommune": "05152", - "libelleAcheminement": "ST MAURICE EN VALGODEMARD", - "nomCommune": "ST MAURICE EN VALGODEMARD" + "codePostal": "14160", + "codeCommune": "14225", + "libelleAcheminement": "DIVES SUR MER", + "nomCommune": "DIVES SUR MER" }, { - "codePostal": "63720", - "codeCommune": "63149", - "libelleAcheminement": "ENTRAIGUES", - "nomCommune": "ENTRAIGUES" + "codePostal": "67730", + "codeCommune": "67073", + "libelleAcheminement": "CHATENOIS", + "nomCommune": "CHATENOIS" }, { - "codePostal": "43230", - "codeCommune": "43107", - "libelleAcheminement": "JOSAT", - "nomCommune": "JOSAT" + "codePostal": "57310", + "codeCommune": "57102", + "libelleAcheminement": "BOUSSE", + "nomCommune": "BOUSSE" }, { - "codePostal": "36210", - "codeCommune": "36162", - "libelleAcheminement": "POULAINES", - "nomCommune": "POULAINES" + "codePostal": "59178", + "codeCommune": "59100", + "libelleAcheminement": "BOUSIGNIES", + "nomCommune": "BOUSIGNIES" }, { - "codePostal": "05300", - "codeCommune": "05155", - "libelleAcheminement": "ST PIERRE AVEZ", - "nomCommune": "ST PIERRE AVEZ" + "codePostal": "67330", + "codeCommune": "67347", + "libelleAcheminement": "OBERMODERN ZUTZENDORF", + "nomCommune": "OBERMODERN ZUTZENDORF" }, { - "codePostal": "63530", - "codeCommune": "63150", - "libelleAcheminement": "ENVAL", - "nomCommune": "ENVAL" + "codePostal": "14340", + "codeCommune": "14231", + "libelleAcheminement": "BEAUFOUR DRUVAL", + "nomCommune": "BEAUFOUR DRUVAL" }, { - "codePostal": "43490", - "codeCommune": "43109", - "libelleAcheminement": "LAFARRE", - "nomCommune": "LAFARRE" + "codePostal": "67160", + "codeCommune": "67074", + "libelleAcheminement": "CLEEBOURG", + "nomCommune": "CLEEBOURG" }, { - "codePostal": "36120", - "codeCommune": "36169", - "libelleAcheminement": "PRUNIERS", - "nomCommune": "PRUNIERS" + "codePostal": "57570", + "codeCommune": "57104", + "libelleAcheminement": "BOUST", + "nomCommune": "BOUST" }, { - "codePostal": "05110", - "codeCommune": "05162", - "libelleAcheminement": "LA SAULCE", - "nomCommune": "LA SAULCE" + "codePostal": "59490", + "codeCommune": "59113", + "libelleAcheminement": "BRUILLE LEZ MARCHIENNES", + "nomCommune": "BRUILLE LEZ MARCHIENNES" }, { - "codePostal": "63390", - "codeCommune": "63152", - "libelleAcheminement": "ESPINASSE", - "nomCommune": "ESPINASSE" + "codePostal": "67330", + "codeCommune": "67352", + "libelleAcheminement": "OBERSOULTZBACH", + "nomCommune": "OBERSOULTZBACH" }, { - "codePostal": "43100", - "codeCommune": "43110", - "libelleAcheminement": "LAMOTHE", - "nomCommune": "LAMOTHE" + "codePostal": "14340", + "codeCommune": "14231", + "libelleAcheminement": "BEAUFOUR DRUVAL", + "nomCommune": "BEAUFOUR DRUVAL" }, { - "codePostal": "36150", - "codeCommune": "36170", - "libelleAcheminement": "REBOURSIN", - "nomCommune": "REBOURSIN" + "codePostal": "67470", + "codeCommune": "67079", + "libelleAcheminement": "CROETTWILLER", + "nomCommune": "CROETTWILLER" }, { - "codePostal": "05100", - "codeCommune": "05174", - "libelleAcheminement": "VAL DES PRES", - "nomCommune": "VAL DES PRES" + "codePostal": "57380", + "codeCommune": "57105", + "libelleAcheminement": "BOUSTROFF", + "nomCommune": "BOUSTROFF" }, { - "codePostal": "63980", - "codeCommune": "63162", - "libelleAcheminement": "FOURNOLS", - "nomCommune": "FOURNOLS" + "codePostal": "59400", + "codeCommune": "59122", + "libelleAcheminement": "CAMBRAI", + "nomCommune": "CAMBRAI" }, { - "codePostal": "43150", - "codeCommune": "43115", - "libelleAcheminement": "LAUSSONNE", - "nomCommune": "LAUSSONNE" + "codePostal": "67340", + "codeCommune": "67358", + "libelleAcheminement": "OFFWILLER", + "nomCommune": "OFFWILLER" }, { - "codePostal": "36260", - "codeCommune": "36171", - "libelleAcheminement": "REUILLY", - "nomCommune": "REUILLY" + "codePostal": "14630", + "codeCommune": "14237", + "libelleAcheminement": "EMIEVILLE", + "nomCommune": "EMIEVILLE" }, { - "codePostal": "05560", - "codeCommune": "05177", - "libelleAcheminement": "VARS", - "nomCommune": "VARS" + "codePostal": "67150", + "codeCommune": "67086", + "libelleAcheminement": "DAUBENSAND", + "nomCommune": "DAUBENSAND" }, { - "codePostal": "63200", - "codeCommune": "63167", - "libelleAcheminement": "GIMEAUX", - "nomCommune": "GIMEAUX" + "codePostal": "57320", + "codeCommune": "57110", + "libelleAcheminement": "BRETTNACH", + "nomCommune": "BRETTNACH" }, { - "codePostal": "43100", - "codeCommune": "43125", - "libelleAcheminement": "LUBILHAC", - "nomCommune": "LUBILHAC" + "codePostal": "59112", + "codeCommune": "59133", + "libelleAcheminement": "CARNIN", + "nomCommune": "CARNIN" }, { - "codePostal": "36170", - "codeCommune": "36174", - "libelleAcheminement": "ROUSSINES", - "nomCommune": "ROUSSINES" + "codePostal": "67170", + "codeCommune": "67359", + "libelleAcheminement": "OHLUNGEN", + "nomCommune": "OHLUNGEN" }, { - "codePostal": "05480", - "codeCommune": "05181", - "libelleAcheminement": "VILLAR D ARENE", - "nomCommune": "VILLAR D ARENE" + "codePostal": "14310", + "codeCommune": "14241", + "libelleAcheminement": "EPINAY SUR ODON", + "nomCommune": "EPINAY SUR ODON" }, { - "codePostal": "63470", - "codeCommune": "63175", - "libelleAcheminement": "HERMENT", - "nomCommune": "HERMENT" + "codePostal": "67430", + "codeCommune": "67088", + "libelleAcheminement": "DEHLINGEN", + "nomCommune": "DEHLINGEN" }, { - "codePostal": "43800", - "codeCommune": "43126", - "libelleAcheminement": "MALREVERS", - "nomCommune": "MALREVERS" + "codePostal": "57535", + "codeCommune": "57111", + "libelleAcheminement": "BRONVAUX", + "nomCommune": "BRONVAUX" }, { - "codePostal": "36110", - "codeCommune": "36175", - "libelleAcheminement": "ROUVRES LES BOIS", - "nomCommune": "ROUVRES LES BOIS" + "codePostal": "59244", + "codeCommune": "59134", + "libelleAcheminement": "CARTIGNIES", + "nomCommune": "CARTIGNIES" }, { - "codePostal": "05800", - "codeCommune": "05182", - "libelleAcheminement": "VILLAR LOUBIERE", - "nomCommune": "VILLAR LOUBIERE" + "codePostal": "67590", + "codeCommune": "67359", + "libelleAcheminement": "OHLUNGEN", + "nomCommune": "OHLUNGEN" }, { - "codePostal": "63270", - "codeCommune": "63177", - "libelleAcheminement": "ISSERTEAUX", - "nomCommune": "ISSERTEAUX" + "codePostal": "14220", + "codeCommune": "14251", + "libelleAcheminement": "ESSON", + "nomCommune": "ESSON" }, { - "codePostal": "43230", - "codeCommune": "43131", - "libelleAcheminement": "MAZERAT AUROUZE", - "nomCommune": "MAZERAT AUROUZE" + "codePostal": "67360", + "codeCommune": "67093", + "libelleAcheminement": "DIEFFENBACH LES WOERTH", + "nomCommune": "DIEFFENBACH LES WOERTH" }, { - "codePostal": "36120", - "codeCommune": "36180", - "libelleAcheminement": "ST AOUT", - "nomCommune": "ST AOUT" + "codePostal": "57450", + "codeCommune": "57122", + "libelleAcheminement": "CAPPEL", + "nomCommune": "CAPPEL" }, { - "codePostal": "06910", - "codeCommune": "06002", - "libelleAcheminement": "AMIRAT", - "nomCommune": "AMIRAT" + "codePostal": "59540", + "codeCommune": "59139", + "libelleAcheminement": "CAUDRY", + "nomCommune": "CAUDRY" }, { - "codePostal": "63690", - "codeCommune": "63183", - "libelleAcheminement": "LABESSETTE", - "nomCommune": "LABESSETTE" + "codePostal": "67540", + "codeCommune": "67365", + "libelleAcheminement": "OSTWALD", + "nomCommune": "OSTWALD" }, { - "codePostal": "43800", - "codeCommune": "43134", - "libelleAcheminement": "MEZERES", - "nomCommune": "MEZERES" + "codePostal": "14100", + "codeCommune": "14260", + "libelleAcheminement": "FAUGUERNON", + "nomCommune": "FAUGUERNON" }, { - "codePostal": "36100", - "codeCommune": "36181", - "libelleAcheminement": "ST AUBIN", - "nomCommune": "ST AUBIN" + "codePostal": "67120", + "codeCommune": "67101", + "libelleAcheminement": "DORLISHEIM", + "nomCommune": "DORLISHEIM" }, { - "codePostal": "06790", - "codeCommune": "06006", - "libelleAcheminement": "ASPREMONT", - "nomCommune": "ASPREMONT" + "codePostal": "57170", + "codeCommune": "57132", + "libelleAcheminement": "CHATEAU SALINS", + "nomCommune": "CHATEAU SALINS" }, { - "codePostal": "63270", - "codeCommune": "63188", - "libelleAcheminement": "LAPS", - "nomCommune": "LAPS" + "codePostal": "59191", + "codeCommune": "59140", + "libelleAcheminement": "CAULLERY", + "nomCommune": "CAULLERY" }, { - "codePostal": "43100", - "codeCommune": "43147", - "libelleAcheminement": "PAULHAC", - "nomCommune": "PAULHAC" + "codePostal": "67290", + "codeCommune": "67371", + "libelleAcheminement": "LA PETITE PIERRE", + "nomCommune": "LA PETITE PIERRE" }, { - "codePostal": "36400", - "codeCommune": "36184", - "libelleAcheminement": "ST CHARTIER", - "nomCommune": "ST CHARTIER" + "codePostal": "14320", + "codeCommune": "14266", + "libelleAcheminement": "FEUGUEROLLES BULLY", + "nomCommune": "FEUGUEROLLES BULLY" }, { - "codePostal": "06810", - "codeCommune": "06007", - "libelleAcheminement": "AURIBEAU SUR SIAGNE", - "nomCommune": "AURIBEAU SUR SIAGNE" + "codePostal": "67117", + "codeCommune": "67102", + "libelleAcheminement": "DOSSENHEIM KOCHERSBERG", + "nomCommune": "DOSSENHEIM KOCHERSBERG" }, { - "codePostal": "63690", - "codeCommune": "63190", - "libelleAcheminement": "LARODDE", - "nomCommune": "LARODDE" + "codePostal": "57160", + "codeCommune": "57134", + "libelleAcheminement": "CHATEL ST GERMAIN", + "nomCommune": "CHATEL ST GERMAIN" }, { - "codePostal": "43230", - "codeCommune": "43148", - "libelleAcheminement": "PAULHAGUET", - "nomCommune": "PAULHAGUET" + "codePostal": "59225", + "codeCommune": "59149", + "libelleAcheminement": "CLARY", + "nomCommune": "CLARY" }, { - "codePostal": "36170", - "codeCommune": "36187", - "libelleAcheminement": "ST CIVRAN", - "nomCommune": "ST CIVRAN" + "codePostal": "67115", + "codeCommune": "67378", + "libelleAcheminement": "PLOBSHEIM", + "nomCommune": "PLOBSHEIM" }, { - "codePostal": "06310", - "codeCommune": "06011", - "libelleAcheminement": "BEAULIEU SUR MER", - "nomCommune": "BEAULIEU SUR MER" + "codePostal": "14320", + "codeCommune": "14266", + "libelleAcheminement": "FEUGUEROLLES BULLY", + "nomCommune": "FEUGUEROLLES BULLY" }, { - "codePostal": "63680", - "codeCommune": "63192", - "libelleAcheminement": "LA TOUR D AUVERGNE", - "nomCommune": "LA TOUR D AUVERGNE" + "codePostal": "67390", + "codeCommune": "67121", + "libelleAcheminement": "ELSENHEIM", + "nomCommune": "ELSENHEIM" }, { - "codePostal": "43200", - "codeCommune": "43150", - "libelleAcheminement": "LE PERTUIS", - "nomCommune": "LE PERTUIS" + "codePostal": "57070", + "codeCommune": "57142", + "libelleAcheminement": "CHIEULLES", + "nomCommune": "CHIEULLES" }, { - "codePostal": "36150", - "codeCommune": "36191", - "libelleAcheminement": "ST FLORENTIN", - "nomCommune": "ST FLORENTIN" + "codePostal": "59552", + "codeCommune": "59156", + "libelleAcheminement": "COURCHELETTES", + "nomCommune": "COURCHELETTES" }, { - "codePostal": "06240", - "codeCommune": "06012", - "libelleAcheminement": "BEAUSOLEIL", - "nomCommune": "BEAUSOLEIL" + "codePostal": "67430", + "codeCommune": "67385", + "libelleAcheminement": "RATZWILLER", + "nomCommune": "RATZWILLER" }, { - "codePostal": "63290", - "codeCommune": "63196", - "libelleAcheminement": "LIMONS", - "nomCommune": "LIMONS" + "codePostal": "14100", + "codeCommune": "14270", + "libelleAcheminement": "FIRFOL", + "nomCommune": "FIRFOL" }, { - "codePostal": "43330", - "codeCommune": "43153", - "libelleAcheminement": "PONT SALOMON", - "nomCommune": "PONT SALOMON" + "codePostal": "67710", + "codeCommune": "67122", + "libelleAcheminement": "WANGENBOURG ENGENTHAL", + "nomCommune": "WANGENBOURG ENGENTHAL" }, { - "codePostal": "36100", - "codeCommune": "36195", - "libelleAcheminement": "ST GEORGES SUR ARNON", - "nomCommune": "ST GEORGES SUR ARNON" + "codePostal": "57420", + "codeCommune": "57147", + "libelleAcheminement": "COIN SUR SEILLE", + "nomCommune": "COIN SUR SEILLE" }, { - "codePostal": "06510", - "codeCommune": "06017", - "libelleAcheminement": "BEZAUDUN LES ALPES", - "nomCommune": "BEZAUDUN LES ALPES" + "codePostal": "59170", + "codeCommune": "59163", + "libelleAcheminement": "CROIX", + "nomCommune": "CROIX" }, { - "codePostal": "63410", - "codeCommune": "63198", - "libelleAcheminement": "LOUBEYRAT", - "nomCommune": "LOUBEYRAT" + "codePostal": "67140", + "codeCommune": "67387", + "libelleAcheminement": "REICHSFELD", + "nomCommune": "REICHSFELD" }, { - "codePostal": "43000", - "codeCommune": "43157", - "libelleAcheminement": "LE PUY EN VELAY", - "nomCommune": "LE PUY EN VELAY" + "codePostal": "14123", + "codeCommune": "14271", + "libelleAcheminement": "FLEURY SUR ORNE", + "nomCommune": "FLEURY SUR ORNE" }, { - "codePostal": "36370", - "codeCommune": "36197", - "libelleAcheminement": "ST HILAIRE SUR BENAIZE", - "nomCommune": "ST HILAIRE SUR BENAIZE" + "codePostal": "67710", + "codeCommune": "67122", + "libelleAcheminement": "WANGENBOURG ENGENTHAL", + "nomCommune": "WANGENBOURG ENGENTHAL" }, { - "codePostal": "06450", - "codeCommune": "06020", - "libelleAcheminement": "LA BOLLENE VESUBIE", - "nomCommune": "LA BOLLENE VESUBIE" + "codePostal": "57220", + "codeCommune": "57150", + "libelleAcheminement": "CONDE NORTHEN", + "nomCommune": "CONDE NORTHEN" }, { - "codePostal": "63320", - "codeCommune": "63199", - "libelleAcheminement": "LUDESSE", - "nomCommune": "LUDESSE" + "codePostal": "59990", + "codeCommune": "59166", + "libelleAcheminement": "CURGIES", + "nomCommune": "CURGIES" }, { - "codePostal": "43130", - "codeCommune": "43162", - "libelleAcheminement": "RETOURNAC", - "nomCommune": "RETOURNAC" + "codePostal": "67440", + "codeCommune": "67391", + "libelleAcheminement": "REINHARDSMUNSTER", + "nomCommune": "REINHARDSMUNSTER" }, { - "codePostal": "36260", - "codeCommune": "36199", - "libelleAcheminement": "STE LIZAIGNE", - "nomCommune": "STE LIZAIGNE" + "codePostal": "14610", + "codeCommune": "14275", + "libelleAcheminement": "FONTAINE HENRY", + "nomCommune": "FONTAINE HENRY" }, { - "codePostal": "06540", - "codeCommune": "06023", - "libelleAcheminement": "BREIL SUR ROYA", - "nomCommune": "BREIL SUR ROYA" + "codePostal": "67710", + "codeCommune": "67122", + "libelleAcheminement": "WANGENBOURG ENGENTHAL", + "nomCommune": "WANGENBOURG ENGENTHAL" }, { - "codePostal": "63220", - "codeCommune": "63218", - "libelleAcheminement": "MAYRES", - "nomCommune": "MAYRES" + "codePostal": "57530", + "codeCommune": "57156", + "libelleAcheminement": "COURCELLES SUR NIED", + "nomCommune": "COURCELLES SUR NIED" }, { - "codePostal": "43440", - "codeCommune": "43178", - "libelleAcheminement": "ST DIDIER SUR DOULON", - "nomCommune": "ST DIDIER SUR DOULON" + "codePostal": "59268", + "codeCommune": "59167", + "libelleAcheminement": "CUVILLERS", + "nomCommune": "CUVILLERS" }, { - "codePostal": "36250", - "codeCommune": "36202", - "libelleAcheminement": "ST MAUR", - "nomCommune": "ST MAUR" + "codePostal": "67350", + "codeCommune": "67403", + "libelleAcheminement": "RINGENDORF", + "nomCommune": "RINGENDORF" }, { - "codePostal": "06850", - "codeCommune": "06024", - "libelleAcheminement": "BRIANCONNET", - "nomCommune": "BRIANCONNET" + "codePostal": "14250", + "codeCommune": "14278", + "libelleAcheminement": "FONTENAY LE PESNEL", + "nomCommune": "FONTENAY LE PESNEL" }, { - "codePostal": "63420", - "codeCommune": "63220", - "libelleAcheminement": "MAZOIRES", - "nomCommune": "MAZOIRES" + "codePostal": "67680", + "codeCommune": "67125", + "libelleAcheminement": "EPFIG", + "nomCommune": "EPFIG" }, { - "codePostal": "43260", - "codeCommune": "43181", - "libelleAcheminement": "ST ETIENNE LARDEYROL", - "nomCommune": "ST ETIENNE LARDEYROL" + "codePostal": "57850", + "codeCommune": "57163", + "libelleAcheminement": "DABO", + "nomCommune": "DABO" }, { - "codePostal": "36120", - "codeCommune": "36211", - "libelleAcheminement": "SASSIERGES ST GERMAIN", - "nomCommune": "SASSIERGES ST GERMAIN" + "codePostal": "59220", + "codeCommune": "59172", + "libelleAcheminement": "DENAIN", + "nomCommune": "DENAIN" }, { - "codePostal": "06750", - "codeCommune": "06028", - "libelleAcheminement": "CAILLE", - "nomCommune": "CAILLE" + "codePostal": "67560", + "codeCommune": "67410", + "libelleAcheminement": "ROSENWILLER", + "nomCommune": "ROSENWILLER" }, { - "codePostal": "63320", - "codeCommune": "63222", - "libelleAcheminement": "MEILHAUD", - "nomCommune": "MEILHAUD" + "codePostal": "14340", + "codeCommune": "14280", + "libelleAcheminement": "FORMENTIN", + "nomCommune": "FORMENTIN" }, { - "codePostal": "43250", - "codeCommune": "43185", - "libelleAcheminement": "STE FLORINE", - "nomCommune": "STE FLORINE" + "codePostal": "67330", + "codeCommune": "67129", + "libelleAcheminement": "ERNOLSHEIM LES SAVERNE", + "nomCommune": "ERNOLSHEIM LES SAVERNE" }, { - "codePostal": "36220", - "codeCommune": "36213", - "libelleAcheminement": "SAUZELLES", - "nomCommune": "SAUZELLES" + "codePostal": "57260", + "codeCommune": "57173", + "libelleAcheminement": "DESSELING", + "nomCommune": "DESSELING" }, { - "codePostal": "06740", - "codeCommune": "06038", - "libelleAcheminement": "CHATEAUNEUF GRASSE", - "nomCommune": "CHATEAUNEUF GRASSE" + "codePostal": "59216", + "codeCommune": "59175", + "libelleAcheminement": "DIMONT", + "nomCommune": "DIMONT" }, { - "codePostal": "63750", - "codeCommune": "63225", - "libelleAcheminement": "MESSEIX", - "nomCommune": "MESSEIX" + "codePostal": "67290", + "codeCommune": "67413", + "libelleAcheminement": "ROSTEIG", + "nomCommune": "ROSTEIG" }, { - "codePostal": "43230", - "codeCommune": "43188", - "libelleAcheminement": "ST GEORGES D AURAC", - "nomCommune": "ST GEORGES D AURAC" + "codePostal": "14710", + "codeCommune": "14281", + "libelleAcheminement": "FORMIGNY LA BATAILLE", + "nomCommune": "FORMIGNY LA BATAILLE" }, { - "codePostal": "36100", - "codeCommune": "36215", - "libelleAcheminement": "SEGRY", - "nomCommune": "SEGRY" + "codePostal": "67640", + "codeCommune": "67137", + "libelleAcheminement": "FEGERSHEIM", + "nomCommune": "FEGERSHEIM" }, { - "codePostal": "06140", - "codeCommune": "06050", - "libelleAcheminement": "COURSEGOULES", - "nomCommune": "COURSEGOULES" + "codePostal": "57830", + "codeCommune": "57175", + "libelleAcheminement": "DIANE CAPELLE", + "nomCommune": "DIANE CAPELLE" }, { - "codePostal": "63320", - "codeCommune": "63234", - "libelleAcheminement": "MONTAIGUT LE BLANC", - "nomCommune": "MONTAIGUT LE BLANC" + "codePostal": "59940", + "codeCommune": "59180", + "libelleAcheminement": "LE DOULIEU", + "nomCommune": "LE DOULIEU" }, { - "codePostal": "43700", - "codeCommune": "43190", - "libelleAcheminement": "ST GERMAIN LAPRADE", - "nomCommune": "ST GERMAIN LAPRADE" + "codePostal": "67570", + "codeCommune": "67414", + "libelleAcheminement": "ROTHAU", + "nomCommune": "ROTHAU" }, { - "codePostal": "36210", - "codeCommune": "36217", - "libelleAcheminement": "SEMBLECAY", - "nomCommune": "SEMBLECAY" + "codePostal": "14240", + "codeCommune": "14282", + "libelleAcheminement": "FOULOGNES", + "nomCommune": "FOULOGNES" }, { - "codePostal": "06260", - "codeCommune": "06051", - "libelleAcheminement": "LA CROIX SUR ROUDOULE", - "nomCommune": "LA CROIX SUR ROUDOULE" + "codePostal": "67490", + "codeCommune": "67145", + "libelleAcheminement": "FRIEDOLSHEIM", + "nomCommune": "FRIEDOLSHEIM" }, { - "codePostal": "63240", - "codeCommune": "63236", - "libelleAcheminement": "LE MONT DORE", - "nomCommune": "MONT DORE" + "codePostal": "57660", + "codeCommune": "57178", + "libelleAcheminement": "DIFFEMBACH LES HELLIMER", + "nomCommune": "DIFFEMBACH LES HELLIMER" }, { - "codePostal": "43320", - "codeCommune": "43197", - "libelleAcheminement": "ST JEAN DE NAY", - "nomCommune": "ST JEAN DE NAY" + "codePostal": "59176", + "codeCommune": "59185", + "libelleAcheminement": "ECAILLON", + "nomCommune": "ECAILLON" }, { - "codePostal": "36100", - "codeCommune": "36222", - "libelleAcheminement": "THIZAY", - "nomCommune": "THIZAY" + "codePostal": "67340", + "codeCommune": "67415", + "libelleAcheminement": "ROTHBACH", + "nomCommune": "ROTHBACH" }, { - "codePostal": "06510", - "codeCommune": "06061", - "libelleAcheminement": "LES FERRES", - "nomCommune": "LES FERRES" + "codePostal": "14590", + "codeCommune": "14293", + "libelleAcheminement": "FUMICHON", + "nomCommune": "FUMICHON" }, { - "codePostal": "63380", - "codeCommune": "63237", - "libelleAcheminement": "MONTEL DE GELAT", - "nomCommune": "MONTEL DE GELAT" + "codePostal": "67117", + "codeCommune": "67150", + "libelleAcheminement": "FURDENHEIM", + "nomCommune": "FURDENHEIM" }, { - "codePostal": "43200", - "codeCommune": "43199", - "libelleAcheminement": "ST JEURES", - "nomCommune": "ST JEURES" + "codePostal": "57320", + "codeCommune": "57186", + "libelleAcheminement": "EBERSVILLER", + "nomCommune": "EBERSVILLER" }, { - "codePostal": "36600", - "codeCommune": "36228", - "libelleAcheminement": "VALENCAY", - "nomCommune": "VALENCAY" + "codePostal": "59740", + "codeCommune": "59186", + "libelleAcheminement": "ECCLES", + "nomCommune": "ECCLES" }, { - "codePostal": "06540", - "codeCommune": "06062", - "libelleAcheminement": "FONTAN", - "nomCommune": "FONTAN" + "codePostal": "67270", + "codeCommune": "67423", + "libelleAcheminement": "SAESSOLSHEIM", + "nomCommune": "SAESSOLSHEIM" }, { - "codePostal": "63700", - "codeCommune": "63243", - "libelleAcheminement": "MOUREUILLE", - "nomCommune": "MOUREUILLE" + "codePostal": "14450", + "codeCommune": "14312", + "libelleAcheminement": "GRANDCAMP MAISY", + "nomCommune": "GRANDCAMP MAISY" }, { - "codePostal": "43220", - "codeCommune": "43204", - "libelleAcheminement": "ST JULIEN MOLHESABATE", - "nomCommune": "ST JULIEN MOLHESABATE" + "codePostal": "67270", + "codeCommune": "67153", + "libelleAcheminement": "GEISWILLER ZOEBERSDORF", + "nomCommune": "GEISWILLER ZOEBERSDORF" }, { - "codePostal": "36150", - "codeCommune": "36230", - "libelleAcheminement": "VATAN", - "nomCommune": "VATAN" + "codePostal": "57230", + "codeCommune": "57188", + "libelleAcheminement": "EGUELSHARDT", + "nomCommune": "EGUELSHARDT" }, { - "codePostal": "06510", - "codeCommune": "06064", - "libelleAcheminement": "GATTIERES", - "nomCommune": "GATTIERES" + "codePostal": "59320", + "codeCommune": "59196", + "libelleAcheminement": "ENNETIERES EN WEPPES", + "nomCommune": "ENNETIERES EN WEPPES" }, { - "codePostal": "63790", - "codeCommune": "63247", - "libelleAcheminement": "MUROL", - "nomCommune": "MUROL" + "codePostal": "67700", + "codeCommune": "67425", + "libelleAcheminement": "ST JEAN SAVERNE", + "nomCommune": "ST JEAN SAVERNE" }, { - "codePostal": "43100", - "codeCommune": "43206", - "libelleAcheminement": "ST JUST PRES BRIOUDE", - "nomCommune": "ST JUST PRES BRIOUDE" + "codePostal": "14160", + "codeCommune": "14316", + "libelleAcheminement": "GRANGUES", + "nomCommune": "GRANGUES" }, { - "codePostal": "36400", - "codeCommune": "36236", - "libelleAcheminement": "VICQ EXEMPLET", - "nomCommune": "VICQ EXEMPLET" + "codePostal": "67270", + "codeCommune": "67153", + "libelleAcheminement": "GEISWILLER ZOEBERSDORF", + "nomCommune": "GEISWILLER ZOEBERSDORF" }, { - "codePostal": "06130", - "codeCommune": "06069", - "libelleAcheminement": "GRASSE", - "nomCommune": "GRASSE" + "codePostal": "57330", + "codeCommune": "57194", + "libelleAcheminement": "ENTRANGE", + "nomCommune": "ENTRANGE" }, { - "codePostal": "63320", - "codeCommune": "63250", - "libelleAcheminement": "NESCHERS", - "nomCommune": "NESCHERS" + "codePostal": "59278", + "codeCommune": "59207", + "libelleAcheminement": "ESCAUTPONT", + "nomCommune": "ESCAUTPONT" }, { - "codePostal": "43230", - "codeCommune": "43208", - "libelleAcheminement": "STE MARGUERITE", - "nomCommune": "STE MARGUERITE" + "codePostal": "67260", + "codeCommune": "67434", + "libelleAcheminement": "SARRE UNION", + "nomCommune": "SARRE UNION" }, { - "codePostal": "36600", - "codeCommune": "36237", - "libelleAcheminement": "VICQ SUR NAHON", - "nomCommune": "VICQ SUR NAHON" + "codePostal": "14540", + "codeCommune": "14319", + "libelleAcheminement": "GRENTHEVILLE", + "nomCommune": "GRENTHEVILLE" }, { - "codePostal": "06670", - "codeCommune": "06075", - "libelleAcheminement": "LEVENS", - "nomCommune": "LEVENS" + "codePostal": "67370", + "codeCommune": "67173", + "libelleAcheminement": "GRIESHEIM SUR SOUFFEL", + "nomCommune": "GRIESHEIM SUR SOUFFEL" }, { - "codePostal": "63340", - "codeCommune": "63255", - "libelleAcheminement": "NONETTE ORSONNETTE", - "nomCommune": "NONETTE ORSONNETTE" + "codePostal": "57412", + "codeCommune": "57201", + "libelleAcheminement": "ETTING", + "nomCommune": "ETTING" }, { - "codePostal": "43420", - "codeCommune": "43215", - "libelleAcheminement": "ST PAUL DE TARTAS", - "nomCommune": "ST PAUL DE TARTAS" + "codePostal": "59310", + "codeCommune": "59222", + "libelleAcheminement": "FAUMONT", + "nomCommune": "FAUMONT" }, { - "codePostal": "36320", - "codeCommune": "36241", - "libelleAcheminement": "VILLEDIEU SUR INDRE", - "nomCommune": "VILLEDIEU SUR INDRE" + "codePostal": "67260", + "codeCommune": "67435", + "libelleAcheminement": "SARREWERDEN", + "nomCommune": "SARREWERDEN" }, { - "codePostal": "06380", - "codeCommune": "06086", - "libelleAcheminement": "MOULINET", - "nomCommune": "MOULINET" + "codePostal": "14220", + "codeCommune": "14320", + "libelleAcheminement": "GRIMBOSQ", + "nomCommune": "GRIMBOSQ" }, { - "codePostal": "63670", - "codeCommune": "63262", - "libelleAcheminement": "ORCET", - "nomCommune": "ORCET" + "codePostal": "67110", + "codeCommune": "67176", + "libelleAcheminement": "GUNDERSHOFFEN", + "nomCommune": "GUNDERSHOFFEN" }, { - "codePostal": "43600", - "codeCommune": "43224", - "libelleAcheminement": "STE SIGOLENE", - "nomCommune": "STE SIGOLENE" + "codePostal": "57460", + "codeCommune": "57202", + "libelleAcheminement": "ETZLING", + "nomCommune": "ETZLING" }, { - "codePostal": "36600", - "codeCommune": "36244", - "libelleAcheminement": "VILLENTROIS FAVEROLLES EN BERRY", - "nomCommune": "VILLENTROIS FAVEROLLES EN BERRY" + "codePostal": "59680", + "codeCommune": "59230", + "libelleAcheminement": "FERRIERE LA GRANDE", + "nomCommune": "FERRIERE LA GRANDE" }, { - "codePostal": "06910", - "codeCommune": "06087", - "libelleAcheminement": "LES MUJOULS", - "nomCommune": "LES MUJOULS" + "codePostal": "67310", + "codeCommune": "67442", + "libelleAcheminement": "SCHARRACHBERGHEIM IRMSTETT", + "nomCommune": "SCHARRACHBERGHEIM IRMSTETT" }, { - "codePostal": "63870", - "codeCommune": "63263", - "libelleAcheminement": "ORCINES", - "nomCommune": "ORCINES" + "codePostal": "14100", + "codeCommune": "14326", + "libelleAcheminement": "HERMIVAL LES VAUX", + "nomCommune": "HERMIVAL LES VAUX" }, { - "codePostal": "43140", - "codeCommune": "43227", - "libelleAcheminement": "ST VICTOR MALESCOURS", - "nomCommune": "ST VICTOR MALESCOURS" + "codePostal": "67320", + "codeCommune": "67178", + "libelleAcheminement": "GUNGWILLER", + "nomCommune": "GUNGWILLER" }, { - "codePostal": "37800", - "codeCommune": "37005", - "libelleAcheminement": "ANTOGNY LE TILLAC", - "nomCommune": "ANTOGNY LE TILLAC" + "codePostal": "57290", + "codeCommune": "57206", + "libelleAcheminement": "FAMECK", + "nomCommune": "FAMECK" }, { - "codePostal": "06910", - "codeCommune": "06097", - "libelleAcheminement": "PIERREFEU", - "nomCommune": "PIERREFEU" + "codePostal": "59128", + "codeCommune": "59234", + "libelleAcheminement": "FLERS EN ESCREBIEUX", + "nomCommune": "FLERS EN ESCREBIEUX" }, { - "codePostal": "63920", - "codeCommune": "63276", - "libelleAcheminement": "PESCHADOIRES", - "nomCommune": "PESCHADOIRES" + "codePostal": "67750", + "codeCommune": "67445", + "libelleAcheminement": "SCHERWILLER", + "nomCommune": "SCHERWILLER" }, { - "codePostal": "43320", - "codeCommune": "43229", - "libelleAcheminement": "ST VIDAL", - "nomCommune": "ST VIDAL" + "codePostal": "14850", + "codeCommune": "14328", + "libelleAcheminement": "HEROUVILLETTE", + "nomCommune": "HEROUVILLETTE" }, { - "codePostal": "37120", - "codeCommune": "37007", - "libelleAcheminement": "ASSAY", - "nomCommune": "ASSAY" + "codePostal": "67117", + "codeCommune": "67181", + "libelleAcheminement": "HANDSCHUHEIM", + "nomCommune": "HANDSCHUHEIM" }, { - "codePostal": "06260", - "codeCommune": "06099", - "libelleAcheminement": "PUGET THENIERS", - "nomCommune": "PUGET THENIERS" + "codePostal": "57635", + "codeCommune": "57216", + "libelleAcheminement": "FLEISHEIM", + "nomCommune": "FLEISHEIM" }, { - "codePostal": "63113", - "codeCommune": "63279", - "libelleAcheminement": "PICHERANDE", - "nomCommune": "PICHERANDE" + "codePostal": "59270", + "codeCommune": "59237", + "libelleAcheminement": "FLETRE", + "nomCommune": "FLETRE" }, { - "codePostal": "43150", - "codeCommune": "43231", - "libelleAcheminement": "SALETTES", - "nomCommune": "SALETTES" + "codePostal": "67130", + "codeCommune": "67448", + "libelleAcheminement": "SCHIRMECK", + "nomCommune": "SCHIRMECK" }, { - "codePostal": "37270", - "codeCommune": "37008", - "libelleAcheminement": "ATHEE SUR CHER", - "nomCommune": "ATHEE SUR CHER" + "codePostal": "14430", + "codeCommune": "14335", + "libelleAcheminement": "HOTOT EN AUGE", + "nomCommune": "HOTOT EN AUGE" }, { - "codePostal": "06830", - "codeCommune": "06100", - "libelleAcheminement": "REVEST LES ROCHES", - "nomCommune": "REVEST LES ROCHES" + "codePostal": "67390", + "codeCommune": "67187", + "libelleAcheminement": "HEIDOLSHEIM", + "nomCommune": "HEIDOLSHEIM" }, { - "codePostal": "63270", - "codeCommune": "63280", - "libelleAcheminement": "PIGNOLS", - "nomCommune": "PIGNOLS" + "codePostal": "57365", + "codeCommune": "57219", + "libelleAcheminement": "FLEVY", + "nomCommune": "FLEVY" }, { - "codePostal": "43170", - "codeCommune": "43234", - "libelleAcheminement": "SAUGUES", - "nomCommune": "SAUGUES" + "codePostal": "59550", + "codeCommune": "59242", + "libelleAcheminement": "FONTAINE AU BOIS", + "nomCommune": "FONTAINE AU BOIS" }, { - "codePostal": "37420", - "codeCommune": "37011", - "libelleAcheminement": "AVOINE", - "nomCommune": "AVOINE" + "codePostal": "67160", + "codeCommune": "67451", + "libelleAcheminement": "SCHLEITHAL", + "nomCommune": "SCHLEITHAL" }, { - "codePostal": "06420", - "codeCommune": "06102", - "libelleAcheminement": "RIMPLAS", - "nomCommune": "RIMPLAS" + "codePostal": "14340", + "codeCommune": "14337", + "libelleAcheminement": "LA HOUBLONNIERE", + "nomCommune": "LA HOUBLONNIERE" }, { - "codePostal": "63500", - "codeCommune": "63287", - "libelleAcheminement": "LES PRADEAUX", - "nomCommune": "LES PRADEAUX" + "codePostal": "67150", + "codeCommune": "67197", + "libelleAcheminement": "HINDISHEIM", + "nomCommune": "HINDISHEIM" }, { - "codePostal": "43140", - "codeCommune": "43236", - "libelleAcheminement": "LA SEAUVE SUR SEMENE", - "nomCommune": "LA SEAUVE SUR SEMENE" + "codePostal": "57580", + "codeCommune": "57220", + "libelleAcheminement": "FLOCOURT", + "nomCommune": "FLOCOURT" }, { - "codePostal": "37190", - "codeCommune": "37014", - "libelleAcheminement": "AZAY LE RIDEAU", - "nomCommune": "AZAY LE RIDEAU" + "codePostal": "59157", + "codeCommune": "59243", + "libelleAcheminement": "FONTAINE AU PIRE", + "nomCommune": "FONTAINE AU PIRE" }, { - "codePostal": "06660", - "codeCommune": "06119", - "libelleAcheminement": "ST DALMAS LE SELVAGE", - "nomCommune": "ST DALMAS LE SELVAGE" + "codePostal": "67320", + "codeCommune": "67454", + "libelleAcheminement": "SCHOENBOURG", + "nomCommune": "SCHOENBOURG" }, { - "codePostal": "63200", - "codeCommune": "63288", - "libelleAcheminement": "PROMPSAT", - "nomCommune": "PROMPSAT" + "codePostal": "14123", + "codeCommune": "14341", + "libelleAcheminement": "IFS", + "nomCommune": "IFS" }, { - "codePostal": "43510", - "codeCommune": "43238", - "libelleAcheminement": "SENEUJOLS", - "nomCommune": "SENEUJOLS" + "codePostal": "67270", + "codeCommune": "67202", + "libelleAcheminement": "HOCHFELDEN", + "nomCommune": "HOCHFELDEN" }, { - "codePostal": "37350", - "codeCommune": "37019", - "libelleAcheminement": "BARROU", - "nomCommune": "BARROU" + "codePostal": "57600", + "codeCommune": "57227", + "libelleAcheminement": "FORBACH", + "nomCommune": "FORBACH" }, { - "codePostal": "06700", - "codeCommune": "06123", - "libelleAcheminement": "ST LAURENT DU VAR", - "nomCommune": "ST LAURENT DU VAR" + "codePostal": "59510", + "codeCommune": "59247", + "libelleAcheminement": "FOREST SUR MARQUE", + "nomCommune": "FOREST SUR MARQUE" }, { - "codePostal": "63290", - "codeCommune": "63291", - "libelleAcheminement": "PUY GUILLAUME", - "nomCommune": "PUY GUILLAUME" + "codePostal": "67270", + "codeCommune": "67460", + "libelleAcheminement": "SCHWINDRATZHEIM", + "nomCommune": "SCHWINDRATZHEIM" }, { - "codePostal": "43170", - "codeCommune": "43245", - "libelleAcheminement": "THORAS", - "nomCommune": "THORAS" + "codePostal": "14230", + "codeCommune": "14342", + "libelleAcheminement": "ISIGNY SUR MER", + "nomCommune": "ISIGNY SUR MER" }, { - "codePostal": "37370", - "codeCommune": "37021", - "libelleAcheminement": "BEAUMONT LOUESTAULT", - "nomCommune": "BEAUMONT LOUESTAULT" + "codePostal": "67800", + "codeCommune": "67204", + "libelleAcheminement": "HOENHEIM", + "nomCommune": "HOENHEIM" }, { - "codePostal": "06470", - "codeCommune": "06125", - "libelleAcheminement": "ST MARTIN D ENTRAUNES", - "nomCommune": "ST MARTIN D ENTRAUNES" + "codePostal": "57830", + "codeCommune": "57229", + "libelleAcheminement": "FOULCREY", + "nomCommune": "FOULCREY" }, { - "codePostal": "63330", - "codeCommune": "63293", - "libelleAcheminement": "LE QUARTIER", - "nomCommune": "LE QUARTIER" + "codePostal": "59134", + "codeCommune": "59250", + "libelleAcheminement": "FOURNES EN WEPPES", + "nomCommune": "FOURNES EN WEPPES" }, { - "codePostal": "43750", - "codeCommune": "43251", - "libelleAcheminement": "VALS PRES LE PUY", - "nomCommune": "VALS PRES LE PUY" + "codePostal": "67120", + "codeCommune": "67473", + "libelleAcheminement": "SOULTZ LES BAINS", + "nomCommune": "SOULTZ LES BAINS" }, { - "codePostal": "37150", - "codeCommune": "37027", - "libelleAcheminement": "BLERE", - "nomCommune": "BLERE" + "codePostal": "14230", + "codeCommune": "14342", + "libelleAcheminement": "ISIGNY SUR MER", + "nomCommune": "ISIGNY SUR MER" }, { - "codePostal": "06570", - "codeCommune": "06128", - "libelleAcheminement": "ST PAUL DE VENCE", - "nomCommune": "ST PAUL DE VENCE" + "codePostal": "67640", + "codeCommune": "67217", + "libelleAcheminement": "ICHTRATZHEIM", + "nomCommune": "ICHTRATZHEIM" }, { - "codePostal": "63780", - "codeCommune": "63294", - "libelleAcheminement": "QUEUILLE", - "nomCommune": "QUEUILLE" + "codePostal": "57200", + "codeCommune": "57234", + "libelleAcheminement": "FRAUENBERG", + "nomCommune": "FRAUENBERG" }, { - "codePostal": "43170", - "codeCommune": "43256", - "libelleAcheminement": "VENTEUGES", - "nomCommune": "VENTEUGES" + "codePostal": "59244", + "codeCommune": "59270", + "libelleAcheminement": "GRAND FAYT", + "nomCommune": "GRAND FAYT" }, { - "codePostal": "37290", - "codeCommune": "37033", - "libelleAcheminement": "BOUSSAY", - "nomCommune": "BOUSSAY" + "codePostal": "67790", + "codeCommune": "67478", + "libelleAcheminement": "STEINBOURG", + "nomCommune": "STEINBOURG" }, { - "codePostal": "06540", - "codeCommune": "06132", - "libelleAcheminement": "SAORGE", - "nomCommune": "SAORGE" + "codePostal": "14670", + "codeCommune": "14344", + "libelleAcheminement": "JANVILLE", + "nomCommune": "JANVILLE" }, { - "codePostal": "63310", - "codeCommune": "63295", - "libelleAcheminement": "RANDAN", - "nomCommune": "RANDAN" + "codePostal": "67370", + "codeCommune": "67228", + "libelleAcheminement": "NEUGARTHEIM ITTLENHEIM", + "nomCommune": "NEUGARTHEIM ITTLENHEIM" }, { - "codePostal": "43100", - "codeCommune": "43262", - "libelleAcheminement": "VIEILLE BRIOUDE", - "nomCommune": "VIEILLE BRIOUDE" + "codePostal": "57660", + "codeCommune": "57237", + "libelleAcheminement": "FREMESTROFF", + "nomCommune": "FREMESTROFF" }, { - "codePostal": "37370", - "codeCommune": "37041", - "libelleAcheminement": "BUEIL EN TOURAINE", - "nomCommune": "BUEIL EN TOURAINE" + "codePostal": "59153", + "codeCommune": "59272", + "libelleAcheminement": "GRAND FORT PHILIPPE", + "nomCommune": "GRAND FORT PHILIPPE" }, { - "codePostal": "06750", - "codeCommune": "06134", - "libelleAcheminement": "SERANON", - "nomCommune": "SERANON" + "codePostal": "67100", + "codeCommune": "67482", + "libelleAcheminement": "STRASBOURG", + "nomCommune": "STRASBOURG" }, { - "codePostal": "63930", - "codeCommune": "63298", - "libelleAcheminement": "LA RENAUDIE", - "nomCommune": "LA RENAUDIE" + "codePostal": "14830", + "codeCommune": "14354", + "libelleAcheminement": "LANGRUNE SUR MER", + "nomCommune": "LANGRUNE SUR MER" }, { - "codePostal": "43490", - "codeCommune": "43263", - "libelleAcheminement": "VIELPRAT", - "nomCommune": "VIELPRAT" + "codePostal": "67260", + "codeCommune": "67234", + "libelleAcheminement": "KESKASTEL", + "nomCommune": "KESKASTEL" }, { - "codePostal": "37530", - "codeCommune": "37043", - "libelleAcheminement": "CANGEY", - "nomCommune": "CANGEY" + "codePostal": "57670", + "codeCommune": "57248", + "libelleAcheminement": "GIVRYCOURT", + "nomCommune": "GIVRYCOURT" }, { - "codePostal": "06710", - "codeCommune": "06139", - "libelleAcheminement": "THIERY", - "nomCommune": "THIERY" + "codePostal": "59820", + "codeCommune": "59273", + "libelleAcheminement": "GRAVELINES", + "nomCommune": "GRAVELINES" }, { - "codePostal": "63420", - "codeCommune": "63299", - "libelleAcheminement": "RENTIERES", - "nomCommune": "RENTIERES" + "codePostal": "67250", + "codeCommune": "67484", + "libelleAcheminement": "STUNDWILLER", + "nomCommune": "STUNDWILLER" }, { - "codePostal": "44740", - "codeCommune": "44010", - "libelleAcheminement": "BATZ SUR MER", - "nomCommune": "BATZ SUR MER" + "codePostal": "14480", + "codeCommune": "14355", + "libelleAcheminement": "PONTS SUR SEULLES", + "nomCommune": "PONTS SUR SEULLES" }, { - "codePostal": "37120", - "codeCommune": "37051", - "libelleAcheminement": "CHAMPIGNY SUR VEUDE", - "nomCommune": "CHAMPIGNY SUR VEUDE" + "codePostal": "67840", + "codeCommune": "67237", + "libelleAcheminement": "KILSTETT", + "nomCommune": "KILSTETT" }, { - "codePostal": "06530", - "codeCommune": "06140", - "libelleAcheminement": "LE TIGNET", - "nomCommune": "LE TIGNET" + "codePostal": "57130", + "codeCommune": "57256", + "libelleAcheminement": "GRAVELOTTE", + "nomCommune": "GRAVELOTTE" }, { - "codePostal": "63420", - "codeCommune": "63303", - "libelleAcheminement": "ROCHE CHARLES LA MAYRAND", - "nomCommune": "ROCHE CHARLES LA MAYRAND" + "codePostal": "59570", + "codeCommune": "59277", + "libelleAcheminement": "GUSSIGNIES", + "nomCommune": "GUSSIGNIES" }, { - "codePostal": "44450", - "codeCommune": "44029", - "libelleAcheminement": "DIVATTE SUR LOIRE", - "nomCommune": "DIVATTE SUR LOIRE" + "codePostal": "67370", + "codeCommune": "67485", + "libelleAcheminement": "STUTZHEIM OFFENHEIM", + "nomCommune": "STUTZHEIM OFFENHEIM" }, { - "codePostal": "37290", - "codeCommune": "37061", - "libelleAcheminement": "CHARNIZAY", - "nomCommune": "CHARNIZAY" + "codePostal": "14770", + "codeCommune": "14357", + "libelleAcheminement": "TERRES DE DRUANCE", + "nomCommune": "TERRES DE DRUANCE" }, { - "codePostal": "06830", - "codeCommune": "06141", - "libelleAcheminement": "TOUDON", - "nomCommune": "TOUDON" + "codePostal": "67170", + "codeCommune": "67249", + "libelleAcheminement": "KRAUTWILLER", + "nomCommune": "KRAUTWILLER" }, { - "codePostal": "63800", - "codeCommune": "63306", - "libelleAcheminement": "LA ROCHE NOIRE", - "nomCommune": "LA ROCHE NOIRE" + "codePostal": "57520", + "codeCommune": "57260", + "libelleAcheminement": "GROSBLIEDERSTROFF", + "nomCommune": "GROSBLIEDERSTROFF" }, { - "codePostal": "44410", - "codeCommune": "44030", - "libelleAcheminement": "LA CHAPELLE DES MARAIS", - "nomCommune": "LA CHAPELLE DES MARAIS" + "codePostal": "59178", + "codeCommune": "59284", + "libelleAcheminement": "HASNON", + "nomCommune": "HASNON" }, { - "codePostal": "37460", - "codeCommune": "37069", - "libelleAcheminement": "CHEMILLE SUR INDROIS", - "nomCommune": "CHEMILLE SUR INDROIS" + "codePostal": "67920", + "codeCommune": "67486", + "libelleAcheminement": "SUNDHOUSE", + "nomCommune": "SUNDHOUSE" }, { - "codePostal": "06340", - "codeCommune": "06149", - "libelleAcheminement": "LA TRINITE", - "nomCommune": "LA TRINITE" + "codePostal": "14340", + "codeCommune": "14358", + "libelleAcheminement": "LEAUPARTIE", + "nomCommune": "LEAUPARTIE" }, { - "codePostal": "63540", - "codeCommune": "63307", - "libelleAcheminement": "ROMAGNAT", - "nomCommune": "ROMAGNAT" + "codePostal": "67170", + "codeCommune": "67250", + "libelleAcheminement": "KRIEGSHEIM", + "nomCommune": "KRIEGSHEIM" }, { - "codePostal": "44590", - "codeCommune": "44051", - "libelleAcheminement": "DERVAL", - "nomCommune": "DERVAL" + "codePostal": "57410", + "codeCommune": "57261", + "libelleAcheminement": "GROS REDERCHING", + "nomCommune": "GROS REDERCHING" }, { - "codePostal": "37310", - "codeCommune": "37075", - "libelleAcheminement": "CIGOGNE", - "nomCommune": "CIGOGNE" + "codePostal": "59660", + "codeCommune": "59293", + "libelleAcheminement": "HAVERSKERQUE", + "nomCommune": "HAVERSKERQUE" }, { - "codePostal": "06450", - "codeCommune": "06151", - "libelleAcheminement": "UTELLE", - "nomCommune": "UTELLE" + "codePostal": "67220", + "codeCommune": "67490", + "libelleAcheminement": "THANVILLE", + "nomCommune": "THANVILLE" }, { - "codePostal": "63500", - "codeCommune": "63321", - "libelleAcheminement": "ST BABEL", - "nomCommune": "ST BABEL" + "codePostal": "14780", + "codeCommune": "14365", + "libelleAcheminement": "LION SUR MER", + "nomCommune": "LION SUR MER" }, { - "codePostal": "44530", - "codeCommune": "44053", - "libelleAcheminement": "DREFFEAC", - "nomCommune": "DREFFEAC" + "codePostal": "67240", + "codeCommune": "67252", + "libelleAcheminement": "KURTZENHOUSE", + "nomCommune": "KURTZENHOUSE" }, { - "codePostal": "37310", - "codeCommune": "37085", - "libelleAcheminement": "COURCAY", - "nomCommune": "COURCAY" + "codePostal": "57260", + "codeCommune": "57272", + "libelleAcheminement": "GUERMANGE", + "nomCommune": "GUERMANGE" }, { - "codePostal": "06560", - "codeCommune": "06152", - "libelleAcheminement": "VALBONNE", - "nomCommune": "VALBONNE" + "codePostal": "59171", + "codeCommune": "59297", + "libelleAcheminement": "HELESMES", + "nomCommune": "HELESMES" }, { - "codePostal": "63360", - "codeCommune": "63322", - "libelleAcheminement": "ST BEAUZIRE", - "nomCommune": "ST BEAUZIRE" + "codePostal": "67370", + "codeCommune": "67495", + "libelleAcheminement": "TRUCHTERSHEIM", + "nomCommune": "TRUCHTERSHEIM" }, { - "codePostal": "44460", - "codeCommune": "44057", - "libelleAcheminement": "FEGREAC", - "nomCommune": "FEGREAC" + "codePostal": "14140", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "37150", - "codeCommune": "37091", - "libelleAcheminement": "LA CROIX EN TOURAINE", - "nomCommune": "LA CROIX EN TOURAINE" + "codePostal": "67520", + "codeCommune": "67253", + "libelleAcheminement": "KUTTOLSHEIM", + "nomCommune": "KUTTOLSHEIM" }, { - "codePostal": "06560", - "codeCommune": "06152", - "libelleAcheminement": "VALBONNE", - "nomCommune": "VALBONNE" + "codePostal": "57690", + "codeCommune": "57276", + "libelleAcheminement": "GUINGLANGE", + "nomCommune": "GUINGLANGE" }, { - "codePostal": "63200", - "codeCommune": "63327", - "libelleAcheminement": "ST BONNET PRES RIOM", - "nomCommune": "ST BONNET PRES RIOM" + "codePostal": "59247", + "codeCommune": "59300", + "libelleAcheminement": "HEM LENGLET", + "nomCommune": "HEM LENGLET" }, { - "codePostal": "44520", - "codeCommune": "44065", - "libelleAcheminement": "GRAND AUVERNE", - "nomCommune": "GRAND AUVERNE" + "codePostal": "67370", + "codeCommune": "67495", + "libelleAcheminement": "TRUCHTERSHEIM", + "nomCommune": "TRUCHTERSHEIM" }, { - "codePostal": "37150", - "codeCommune": "37096", - "libelleAcheminement": "DIERRE", - "nomCommune": "DIERRE" + "codePostal": "14290", + "codeCommune": "14371", + "libelleAcheminement": "LIVAROT PAYS D AUGE", + "nomCommune": "LIVAROT PAYS D AUGE" }, { - "codePostal": "06220", - "codeCommune": "06155", - "libelleAcheminement": "VALLAURIS", - "nomCommune": "VALLAURIS" + "codePostal": "67510", + "codeCommune": "67263", + "libelleAcheminement": "LEMBACH", + "nomCommune": "LEMBACH" }, { - "codePostal": "63320", - "codeCommune": "63335", - "libelleAcheminement": "ST DIERY", - "nomCommune": "ST DIERY" + "codePostal": "57670", + "codeCommune": "57278", + "libelleAcheminement": "GUINZELING", + "nomCommune": "GUINZELING" }, { - "codePostal": "44119", - "codeCommune": "44066", - "libelleAcheminement": "GRANDCHAMPS DES FONTAINES", - "nomCommune": "GRANDCHAMPS DES FONTAINES" + "codePostal": "59190", + "codeCommune": "59308", + "libelleAcheminement": "HONDEGHEM", + "nomCommune": "HONDEGHEM" }, { - "codePostal": "37310", - "codeCommune": "37097", - "libelleAcheminement": "DOLUS LE SEC", - "nomCommune": "DOLUS LE SEC" + "codePostal": "67350", + "codeCommune": "67497", + "libelleAcheminement": "UHLWILLER", + "nomCommune": "UHLWILLER" }, { - "codePostal": "06450", - "codeCommune": "06156", - "libelleAcheminement": "VENANSON", - "nomCommune": "VENANSON" + "codePostal": "14240", + "codeCommune": "14374", + "libelleAcheminement": "LES LOGES", + "nomCommune": "LES LOGES" }, { - "codePostal": "63580", - "codeCommune": "63340", - "libelleAcheminement": "ST ETIENNE SUR USSON", - "nomCommune": "ST ETIENNE SUR USSON" + "codePostal": "67490", + "codeCommune": "67269", + "libelleAcheminement": "LITTENHEIM", + "nomCommune": "LITTENHEIM" }, { - "codePostal": "44290", - "codeCommune": "44067", - "libelleAcheminement": "GUEMENE PENFAO", - "nomCommune": "GUEMENE PENFAO" + "codePostal": "57550", + "codeCommune": "57296", + "libelleAcheminement": "HARGARTEN AUX MINES", + "nomCommune": "HARGARTEN AUX MINES" }, { - "codePostal": "37150", - "codeCommune": "37100", - "libelleAcheminement": "EPEIGNE LES BOIS", - "nomCommune": "EPEIGNE LES BOIS" + "codePostal": "59122", + "codeCommune": "59309", + "libelleAcheminement": "HONDSCHOOTE", + "nomCommune": "HONDSCHOOTE" }, { - "codePostal": "06230", - "codeCommune": "06159", - "libelleAcheminement": "VILLEFRANCHE SUR MER", - "nomCommune": "VILLEFRANCHE SUR MER" + "codePostal": "67350", + "codeCommune": "67498", + "libelleAcheminement": "UHRWILLER", + "nomCommune": "UHRWILLER" }, { - "codePostal": "63520", - "codeCommune": "63343", - "libelleAcheminement": "ST FLOUR L ETANG", - "nomCommune": "ST FLOUR L ETANG" + "codePostal": "14210", + "codeCommune": "14390", + "libelleAcheminement": "MAISONCELLES SUR AJON", + "nomCommune": "MAISONCELLES SUR AJON" }, { - "codePostal": "44290", - "codeCommune": "44067", - "libelleAcheminement": "GUEMENE PENFAO", - "nomCommune": "GUEMENE PENFAO" + "codePostal": "67290", + "codeCommune": "67273", + "libelleAcheminement": "LOHR", + "nomCommune": "LOHR" }, { - "codePostal": "37370", - "codeCommune": "37101", - "libelleAcheminement": "EPEIGNE SUR DEME", - "nomCommune": "EPEIGNE SUR DEME" + "codePostal": "57230", + "codeCommune": "57301", + "libelleAcheminement": "HASPELSCHIEDT", + "nomCommune": "HASPELSCHIEDT" }, { - "codePostal": "07400", - "codeCommune": "07005", - "libelleAcheminement": "ALBA LA ROMAINE", - "nomCommune": "ALBA LA ROMAINE" + "codePostal": "59570", + "codeCommune": "59310", + "libelleAcheminement": "HON HERGIES", + "nomCommune": "HON HERGIES" }, { - "codePostal": "63122", - "codeCommune": "63345", - "libelleAcheminement": "ST GENES CHAMPANELLE", - "nomCommune": "ST GENES CHAMPANELLE" + "codePostal": "67280", + "codeCommune": "67500", + "libelleAcheminement": "URMATT", + "nomCommune": "URMATT" }, { - "codePostal": "44350", - "codeCommune": "44069", - "libelleAcheminement": "GUERANDE", - "nomCommune": "GUERANDE" + "codePostal": "14400", + "codeCommune": "14391", + "libelleAcheminement": "MAISONS", + "nomCommune": "MAISONS" }, { - "codePostal": "37110", - "codeCommune": "37106", - "libelleAcheminement": "LA FERRIERE", - "nomCommune": "LA FERRIERE" + "codePostal": "67390", + "codeCommune": "67277", + "libelleAcheminement": "MACKENHEIM", + "nomCommune": "MACKENHEIM" }, { - "codePostal": "07340", - "codeCommune": "07009", - "libelleAcheminement": "ANDANCE", - "nomCommune": "ANDANCE" + "codePostal": "57790", + "codeCommune": "57302", + "libelleAcheminement": "HATTIGNY", + "nomCommune": "HATTIGNY" }, { - "codePostal": "63122", - "codeCommune": "63345", - "libelleAcheminement": "ST GENES CHAMPANELLE", - "nomCommune": "ST GENES CHAMPANELLE" + "codePostal": "59266", + "codeCommune": "59312", + "libelleAcheminement": "HONNECOURT SUR ESCAUT", + "nomCommune": "HONNECOURT SUR ESCAUT" }, { - "codePostal": "44690", - "codeCommune": "44070", - "libelleAcheminement": "LA HAIE FOUASSIERE", - "nomCommune": "LA HAIE FOUASSIERE" + "codePostal": "67110", + "codeCommune": "67502", + "libelleAcheminement": "UTTENHOFFEN", + "nomCommune": "UTTENHOFFEN" }, { - "codePostal": "37350", - "codeCommune": "37107", - "libelleAcheminement": "FERRIERE LARCON", - "nomCommune": "FERRIERE LARCON" + "codePostal": "14210", + "codeCommune": "14393", + "libelleAcheminement": "MAIZET", + "nomCommune": "MAIZET" }, { - "codePostal": "07310", - "codeCommune": "07012", - "libelleAcheminement": "ARCENS", - "nomCommune": "ARCENS" + "codePostal": "67700", + "codeCommune": "67279", + "libelleAcheminement": "MAENNOLSHEIM", + "nomCommune": "MAENNOLSHEIM" }, { - "codePostal": "63800", - "codeCommune": "63350", - "libelleAcheminement": "ST GEORGES SUR ALLIER", - "nomCommune": "ST GEORGES SUR ALLIER" + "codePostal": "57700", + "codeCommune": "57306", + "libelleAcheminement": "HAYANGE", + "nomCommune": "HAYANGE" }, { - "codePostal": "44410", - "codeCommune": "44072", - "libelleAcheminement": "HERBIGNAC", - "nomCommune": "HERBIGNAC" + "codePostal": "59470", + "codeCommune": "59318", + "libelleAcheminement": "HOUTKERQUE", + "nomCommune": "HOUTKERQUE" }, { - "codePostal": "37340", - "codeCommune": "37112", - "libelleAcheminement": "GIZEUX", - "nomCommune": "GIZEUX" + "codePostal": "67210", + "codeCommune": "67504", + "libelleAcheminement": "VALFF", + "nomCommune": "VALFF" }, { - "codePostal": "07400", - "codeCommune": "07020", - "libelleAcheminement": "AUBIGNAS", - "nomCommune": "AUBIGNAS" + "codePostal": "14930", + "codeCommune": "14396", + "libelleAcheminement": "MALTOT", + "nomCommune": "MALTOT" }, { - "codePostal": "63630", - "codeCommune": "63353", - "libelleAcheminement": "ST GERMAIN L HERM", - "nomCommune": "ST GERMAIN L HERM" + "codePostal": "67270", + "codeCommune": "67287", + "libelleAcheminement": "MELSHEIM", + "nomCommune": "MELSHEIM" }, { - "codePostal": "44810", - "codeCommune": "44073", - "libelleAcheminement": "HERIC", - "nomCommune": "HERIC" + "codePostal": "57690", + "codeCommune": "57313", + "libelleAcheminement": "HEMILLY", + "nomCommune": "HEMILLY" }, { - "codePostal": "37160", - "codeCommune": "37115", - "libelleAcheminement": "DESCARTES", - "nomCommune": "DESCARTES" + "codePostal": "59553", + "codeCommune": "59334", + "libelleAcheminement": "LAUWIN PLANQUE", + "nomCommune": "LAUWIN PLANQUE" }, { - "codePostal": "07120", - "codeCommune": "07023", - "libelleAcheminement": "BALAZUC", - "nomCommune": "BALAZUC" + "codePostal": "67730", + "codeCommune": "67505", + "libelleAcheminement": "LA VANCELLE", + "nomCommune": "LA VANCELLE" }, { - "codePostal": "63340", - "codeCommune": "63356", - "libelleAcheminement": "ST GERVAZY", - "nomCommune": "ST GERVAZY" + "codePostal": "14340", + "codeCommune": "14398", + "libelleAcheminement": "MANERBE", + "nomCommune": "MANERBE" }, { - "codePostal": "44610", - "codeCommune": "44074", - "libelleAcheminement": "INDRE", - "nomCommune": "INDRE" + "codePostal": "67190", + "codeCommune": "67299", + "libelleAcheminement": "MOLLKIRCH", + "nomCommune": "MOLLKIRCH" }, { - "codePostal": "37340", - "codeCommune": "37117", - "libelleAcheminement": "HOMMES", - "nomCommune": "HOMMES" + "codePostal": "57510", + "codeCommune": "57330", + "libelleAcheminement": "HOLVING", + "nomCommune": "HOLVING" }, { - "codePostal": "07310", - "codeCommune": "07037", - "libelleAcheminement": "BOREE", - "nomCommune": "BOREE" + "codePostal": "59259", + "codeCommune": "59336", + "libelleAcheminement": "LECLUSE", + "nomCommune": "LECLUSE" }, { - "codePostal": "63190", - "codeCommune": "63364", - "libelleAcheminement": "ST JEAN D HEURS", - "nomCommune": "ST JEAN D HEURS" + "codePostal": "67360", + "codeCommune": "67511", + "libelleAcheminement": "WALBOURG", + "nomCommune": "WALBOURG" }, { - "codePostal": "44610", - "codeCommune": "44074", - "libelleAcheminement": "INDRE", - "nomCommune": "INDRE" + "codePostal": "14740", + "codeCommune": "14406", + "libelleAcheminement": "MOULINS EN BESSIN", + "nomCommune": "MOULINS EN BESSIN" }, { - "codePostal": "37120", - "codeCommune": "37125", - "libelleAcheminement": "LEMERE", - "nomCommune": "LEMERE" + "codePostal": "67120", + "codeCommune": "67300", + "libelleAcheminement": "MOLSHEIM", + "nomCommune": "MOLSHEIM" }, { - "codePostal": "07450", - "codeCommune": "07045", - "libelleAcheminement": "BURZET", - "nomCommune": "BURZET" + "codePostal": "57470", + "codeCommune": "57332", + "libelleAcheminement": "HOMBOURG HAUT", + "nomCommune": "HOMBOURG HAUT" }, { - "codePostal": "63520", - "codeCommune": "63365", - "libelleAcheminement": "ST JEAN DES OLLIERES", - "nomCommune": "ST JEAN DES OLLIERES" + "codePostal": "59143", + "codeCommune": "59337", + "libelleAcheminement": "LEDERZEELE", + "nomCommune": "LEDERZEELE" }, { - "codePostal": "44440", - "codeCommune": "44077", - "libelleAcheminement": "JOUE SUR ERDRE", - "nomCommune": "JOUE SUR ERDRE" + "codePostal": "67500", + "codeCommune": "67523", + "libelleAcheminement": "WEITBRUCH", + "nomCommune": "WEITBRUCH" }, { - "codePostal": "37600", - "codeCommune": "37132", - "libelleAcheminement": "LOCHES", - "nomCommune": "LOCHES" + "codePostal": "14380", + "codeCommune": "14424", + "libelleAcheminement": "LE MESNIL ROBERT", + "nomCommune": "LE MESNIL ROBERT" }, { - "codePostal": "07440", - "codeCommune": "07052", - "libelleAcheminement": "CHAMPIS", - "nomCommune": "CHAMPIS" + "codePostal": "67360", + "codeCommune": "67303", + "libelleAcheminement": "MORSBRONN LES BAINS", + "nomCommune": "MORSBRONN LES BAINS" }, { - "codePostal": "63490", - "codeCommune": "63366", - "libelleAcheminement": "ST JEAN EN VAL", - "nomCommune": "ST JEAN EN VAL" + "codePostal": "57510", + "codeCommune": "57337", + "libelleAcheminement": "HOSTE", + "nomCommune": "HOSTE" }, { - "codePostal": "44110", - "codeCommune": "44085", - "libelleAcheminement": "LOUISFERT", - "nomCommune": "LOUISFERT" + "codePostal": "59191", + "codeCommune": "59349", + "libelleAcheminement": "LIGNY EN CAMBRESIS", + "nomCommune": "LIGNY EN CAMBRESIS" }, { - "codePostal": "37460", - "codeCommune": "37133", - "libelleAcheminement": "LOCHE SUR INDROIS", - "nomCommune": "LOCHE SUR INDROIS" + "codePostal": "67310", + "codeCommune": "67525", + "libelleAcheminement": "WESTHOFFEN", + "nomCommune": "WESTHOFFEN" }, { - "codePostal": "07430", - "codeCommune": "07067", - "libelleAcheminement": "COLOMBIER LE CARDINAL", - "nomCommune": "COLOMBIER LE CARDINAL" + "codePostal": "14140", + "codeCommune": "14425", + "libelleAcheminement": "LE MESNIL SIMON", + "nomCommune": "LE MESNIL SIMON" }, { - "codePostal": "63600", - "codeCommune": "63371", - "libelleAcheminement": "ST JUST", - "nomCommune": "ST JUST" + "codePostal": "67130", + "codeCommune": "67321", + "libelleAcheminement": "NEUVILLER LA ROCHE", + "nomCommune": "NEUVILLER LA ROCHE" }, { - "codePostal": "44170", - "codeCommune": "44091", - "libelleAcheminement": "MARSAC SUR DON", - "nomCommune": "MARSAC SUR DON" + "codePostal": "57400", + "codeCommune": "57344", + "libelleAcheminement": "IMLING", + "nomCommune": "IMLING" }, { - "codePostal": "37800", - "codeCommune": "37142", - "libelleAcheminement": "MAILLE", - "nomCommune": "MAILLE" + "codePostal": "59530", + "codeCommune": "59353", + "libelleAcheminement": "LOCQUIGNOL", + "nomCommune": "LOCQUIGNOL" }, { - "codePostal": "07630", - "codeCommune": "07075", - "libelleAcheminement": "CROS DE GEORAND", - "nomCommune": "CROS DE GEORAND" + "codePostal": "67720", + "codeCommune": "67529", + "libelleAcheminement": "WEYERSHEIM", + "nomCommune": "WEYERSHEIM" }, { - "codePostal": "63600", - "codeCommune": "63374", - "libelleAcheminement": "ST MARTIN DES OLMES", - "nomCommune": "ST MARTIN DES OLMES" + "codePostal": "14690", + "codeCommune": "14427", + "libelleAcheminement": "LE MESNIL VILLEMENT", + "nomCommune": "LE MESNIL VILLEMENT" }, { - "codePostal": "44470", - "codeCommune": "44094", - "libelleAcheminement": "MAUVES SUR LOIRE", - "nomCommune": "MAUVES SUR LOIRE" + "codePostal": "67110", + "codeCommune": "67324", + "libelleAcheminement": "NIEDERBRONN LES BAINS", + "nomCommune": "NIEDERBRONN LES BAINS" }, { - "codePostal": "37160", - "codeCommune": "37145", - "libelleAcheminement": "MARCE SUR ESVES", - "nomCommune": "MARCE SUR ESVES" + "codePostal": "57130", + "codeCommune": "57352", + "libelleAcheminement": "JUSSY", + "nomCommune": "JUSSY" }, { - "codePostal": "07430", - "codeCommune": "07078", - "libelleAcheminement": "DAVEZIEUX", - "nomCommune": "DAVEZIEUX" + "codePostal": "59110", + "codeCommune": "59368", + "libelleAcheminement": "LA MADELEINE", + "nomCommune": "LA MADELEINE" }, { - "codePostal": "63570", - "codeCommune": "63375", - "libelleAcheminement": "ST MARTIN DES PLAINS", - "nomCommune": "ST MARTIN DES PLAINS" + "codePostal": "67130", + "codeCommune": "67531", + "libelleAcheminement": "WILDERSBACH", + "nomCommune": "WILDERSBACH" }, { - "codePostal": "44520", - "codeCommune": "44095", - "libelleAcheminement": "LA MEILLERAYE DE BRETAGNE", - "nomCommune": "LA MEILLERAYE DE BRETAGNE" + "codePostal": "14960", + "codeCommune": "14430", + "libelleAcheminement": "MEUVAINES", + "nomCommune": "MEUVAINES" }, { - "codePostal": "37370", - "codeCommune": "37149", - "libelleAcheminement": "MARRAY", - "nomCommune": "MARRAY" + "codePostal": "67630", + "codeCommune": "67327", + "libelleAcheminement": "NIEDERLAUTERBACH", + "nomCommune": "NIEDERLAUTERBACH" }, { - "codePostal": "07570", - "codeCommune": "07079", - "libelleAcheminement": "DESAIGNES", - "nomCommune": "DESAIGNES" + "codePostal": "57630", + "codeCommune": "57353", + "libelleAcheminement": "JUVELIZE", + "nomCommune": "JUVELIZE" }, { - "codePostal": "63480", - "codeCommune": "63384", - "libelleAcheminement": "ST PIERRE LA BOURLHONNE", - "nomCommune": "ST PIERRE LA BOURLHONNE" + "codePostal": "59600", + "codeCommune": "59370", + "libelleAcheminement": "MAIRIEUX", + "nomCommune": "MAIRIEUX" }, { - "codePostal": "44780", - "codeCommune": "44098", - "libelleAcheminement": "MISSILLAC", - "nomCommune": "MISSILLAC" + "codePostal": "67370", + "codeCommune": "67532", + "libelleAcheminement": "WILLGOTTHEIM", + "nomCommune": "WILLGOTTHEIM" }, { - "codePostal": "37530", - "codeCommune": "37158", - "libelleAcheminement": "MONTREUIL EN TOURAINE", - "nomCommune": "MONTREUIL EN TOURAINE" + "codePostal": "14140", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "07380", - "codeCommune": "07087", - "libelleAcheminement": "FABRAS", - "nomCommune": "FABRAS" + "codePostal": "67160", + "codeCommune": "67351", + "libelleAcheminement": "SEEBACH", + "nomCommune": "SEEBACH" }, { - "codePostal": "63490", - "codeCommune": "63389", - "libelleAcheminement": "ST QUENTIN SUR SAUXILLANGES", - "nomCommune": "ST QUENTIN SUR SAUXILLANGES" + "codePostal": "57330", + "codeCommune": "57356", + "libelleAcheminement": "KANFEN", + "nomCommune": "KANFEN" }, { - "codePostal": "44520", - "codeCommune": "44099", - "libelleAcheminement": "MOISDON LA RIVIERE", - "nomCommune": "MOISDON LA RIVIERE" + "codePostal": "59134", + "codeCommune": "59371", + "libelleAcheminement": "LE MAISNIL", + "nomCommune": "LE MAISNIL" }, { - "codePostal": "37210", - "codeCommune": "37171", - "libelleAcheminement": "NOIZAY", - "nomCommune": "NOIZAY" + "codePostal": "67270", + "codeCommune": "67534", + "libelleAcheminement": "WILWISHEIM", + "nomCommune": "WILWISHEIM" }, { - "codePostal": "07230", - "codeCommune": "07088", - "libelleAcheminement": "FAUGERES", - "nomCommune": "FAUGERES" + "codePostal": "14140", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "63440", - "codeCommune": "63390", - "libelleAcheminement": "ST QUINTIN SUR SIOULE", - "nomCommune": "ST QUINTIN SUR SIOULE" + "codePostal": "67160", + "codeCommune": "67351", + "libelleAcheminement": "SEEBACH", + "nomCommune": "SEEBACH" }, { - "codePostal": "44370", - "codeCommune": "44104", - "libelleAcheminement": "MONTRELAIS", - "nomCommune": "MONTRELAIS" + "codePostal": "57920", + "codeCommune": "57358", + "libelleAcheminement": "KEDANGE SUR CANNER", + "nomCommune": "KEDANGE SUR CANNER" }, { - "codePostal": "37390", - "codeCommune": "37172", - "libelleAcheminement": "NOTRE DAME D OE", - "nomCommune": "NOTRE DAME D OE" + "codePostal": "59127", + "codeCommune": "59372", + "libelleAcheminement": "MALINCOURT", + "nomCommune": "MALINCOURT" }, { - "codePostal": "07800", - "codeCommune": "07094", - "libelleAcheminement": "GILHAC ET BRUZAC", - "nomCommune": "GILHAC ET BRUZAC" + "codePostal": "67510", + "codeCommune": "67537", + "libelleAcheminement": "WINGEN", + "nomCommune": "WINGEN" }, { - "codePostal": "63500", - "codeCommune": "63392", - "libelleAcheminement": "ST REMY DE CHARGNAT", - "nomCommune": "ST REMY DE CHARGNAT" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "44590", - "codeCommune": "44105", - "libelleAcheminement": "MOUAIS", - "nomCommune": "MOUAIS" + "codePostal": "67510", + "codeCommune": "67353", + "libelleAcheminement": "OBERSTEINBACH", + "nomCommune": "OBERSTEINBACH" }, { - "codePostal": "37800", - "codeCommune": "37187", - "libelleAcheminement": "PORTS SUR VIENNE", - "nomCommune": "PORTS SUR VIENNE" + "codePostal": "57240", + "codeCommune": "57368", + "libelleAcheminement": "KNUTANGE", + "nomCommune": "KNUTANGE" }, { - "codePostal": "07700", - "codeCommune": "07099", - "libelleAcheminement": "GRAS", - "nomCommune": "GRAS" + "codePostal": "59440", + "codeCommune": "59374", + "libelleAcheminement": "MARBAIX", + "nomCommune": "MARBAIX" }, { - "codePostal": "63320", - "codeCommune": "63403", - "libelleAcheminement": "ST VINCENT", - "nomCommune": "ST VINCENT" + "codePostal": "67170", + "codeCommune": "67539", + "libelleAcheminement": "WINGERSHEIM LES QUATRE BANS", + "nomCommune": "WINGERSHEIM LES QUATRE BANS" }, { - "codePostal": "44850", - "codeCommune": "44107", - "libelleAcheminement": "MOUZEIL", - "nomCommune": "MOUZEIL" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "37290", - "codeCommune": "37189", - "libelleAcheminement": "PREUILLY SUR CLAISE", - "nomCommune": "PREUILLY SUR CLAISE" + "codePostal": "67150", + "codeCommune": "67364", + "libelleAcheminement": "OSTHOUSE", + "nomCommune": "OSTHOUSE" }, { - "codePostal": "07160", - "codeCommune": "07108", - "libelleAcheminement": "JAUNAC", - "nomCommune": "JAUNAC" + "codePostal": "57480", + "codeCommune": "57371", + "libelleAcheminement": "HAUTE KONTZ", + "nomCommune": "HAUTE KONTZ" }, { - "codePostal": "63270", - "codeCommune": "63405", - "libelleAcheminement": "SALLEDES", - "nomCommune": "SALLEDES" + "codePostal": "59159", + "codeCommune": "59377", + "libelleAcheminement": "MARCOING", + "nomCommune": "MARCOING" }, { - "codePostal": "44300", - "codeCommune": "44109", - "libelleAcheminement": "NANTES", - "nomCommune": "NANTES" + "codePostal": "67360", + "codeCommune": "67550", + "libelleAcheminement": "WOERTH", + "nomCommune": "WOERTH" }, { - "codePostal": "37310", - "codeCommune": "37192", - "libelleAcheminement": "REIGNAC SUR INDRE", - "nomCommune": "REIGNAC SUR INDRE" + "codePostal": "14270", + "codeCommune": "14431", + "libelleAcheminement": "MEZIDON VALLEE D AUGE", + "nomCommune": "MEZIDON VALLEE D AUGE" }, { - "codePostal": "07600", - "codeCommune": "07112", - "libelleAcheminement": "LABASTIDE SUR BESORGUES", - "nomCommune": "LABASTIDE SUR BESORGUES" + "codePostal": "67700", + "codeCommune": "67366", + "libelleAcheminement": "OTTERSTHAL", + "nomCommune": "OTTERSTHAL" }, { - "codePostal": "63320", - "codeCommune": "63409", - "libelleAcheminement": "SAURIER", - "nomCommune": "SAURIER" + "codePostal": "57790", + "codeCommune": "57380", + "libelleAcheminement": "LANEUVEVILLE LES LORQUIN", + "nomCommune": "LANEUVEVILLE LES LORQUIN" }, { - "codePostal": "44700", - "codeCommune": "44114", - "libelleAcheminement": "ORVAULT", - "nomCommune": "ORVAULT" + "codePostal": "59164", + "codeCommune": "59385", + "libelleAcheminement": "MARPENT", + "nomCommune": "MARPENT" }, { - "codePostal": "37520", - "codeCommune": "37195", - "libelleAcheminement": "LA RICHE", - "nomCommune": "LA RICHE" + "codePostal": "67700", + "codeCommune": "67553", + "libelleAcheminement": "WOLSCHHEIM", + "nomCommune": "WOLSCHHEIM" }, { - "codePostal": "07230", - "codeCommune": "07117", - "libelleAcheminement": "LABLACHERE", - "nomCommune": "LABLACHERE" + "codePostal": "14490", + "codeCommune": "14445", + "libelleAcheminement": "MONTFIQUET", + "nomCommune": "MONTFIQUET" }, { - "codePostal": "63750", - "codeCommune": "63416", - "libelleAcheminement": "SAVENNES", - "nomCommune": "SAVENNES" + "codePostal": "67700", + "codeCommune": "67367", + "libelleAcheminement": "OTTERSWILLER", + "nomCommune": "OTTERSWILLER" }, { - "codePostal": "44670", - "codeCommune": "44121", - "libelleAcheminement": "PETIT AUVERNE", - "nomCommune": "PETIT AUVERNE" + "codePostal": "57590", + "codeCommune": "57381", + "libelleAcheminement": "LANEUVEVILLE EN SAULNOIS", + "nomCommune": "LANEUVEVILLE EN SAULNOIS" }, { - "codePostal": "37360", - "codeCommune": "37204", - "libelleAcheminement": "ROUZIERS DE TOURAINE", - "nomCommune": "ROUZIERS DE TOURAINE" + "codePostal": "59158", + "codeCommune": "59393", + "libelleAcheminement": "MAULDE", + "nomCommune": "MAULDE" }, { - "codePostal": "07470", - "codeCommune": "07119", - "libelleAcheminement": "LE LAC D ISSARLES", - "nomCommune": "LE LAC D ISSARLES" + "codePostal": "67310", + "codeCommune": "67555", + "libelleAcheminement": "ZEHNACKER", + "nomCommune": "ZEHNACKER" }, { - "codePostal": "63120", - "codeCommune": "63418", - "libelleAcheminement": "SERMENTIZON", - "nomCommune": "SERMENTIZON" + "codePostal": "14340", + "codeCommune": "14448", + "libelleAcheminement": "MONTREUIL EN AUGE", + "nomCommune": "MONTREUIL EN AUGE" }, { - "codePostal": "44540", - "codeCommune": "44124", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "67320", + "codeCommune": "67369", + "libelleAcheminement": "OTTWILLER", + "nomCommune": "OTTWILLER" }, { - "codePostal": "37500", - "codeCommune": "37210", - "libelleAcheminement": "ST BENOIT LA FORET", - "nomCommune": "ST BENOIT LA FORET" + "codePostal": "57810", + "codeCommune": "57383", + "libelleAcheminement": "LANGUIMBERG", + "nomCommune": "LANGUIMBERG" }, { - "codePostal": "07470", - "codeCommune": "07121", - "libelleAcheminement": "LACHAPELLE GRAILLOUSE", - "nomCommune": "LACHAPELLE GRAILLOUSE" + "codePostal": "59570", + "codeCommune": "59396", + "libelleAcheminement": "MECQUIGNIES", + "nomCommune": "MECQUIGNIES" }, { - "codePostal": "63190", - "codeCommune": "63420", - "libelleAcheminement": "SEYCHALLES", - "nomCommune": "SEYCHALLES" + "codePostal": "67310", + "codeCommune": "67556", + "libelleAcheminement": "ZEINHEIM", + "nomCommune": "ZEINHEIM" }, { - "codePostal": "44630", - "codeCommune": "44128", - "libelleAcheminement": "PLESSE", - "nomCommune": "PLESSE" + "codePostal": "14400", + "codeCommune": "14465", + "libelleAcheminement": "NONANT", + "nomCommune": "NONANT" }, { - "codePostal": "37370", - "codeCommune": "37213", - "libelleAcheminement": "ST CHRISTOPHE SUR LE NAIS", - "nomCommune": "ST CHRISTOPHE SUR LE NAIS" + "codePostal": "67350", + "codeCommune": "67372", + "libelleAcheminement": "VAL DE MODER", + "nomCommune": "VAL DE MODER" }, { - "codePostal": "07200", - "codeCommune": "07122", - "libelleAcheminement": "LACHAPELLE SOUS AUBENAS", - "nomCommune": "LACHAPELLE SOUS AUBENAS" + "codePostal": "57480", + "codeCommune": "57387", + "libelleAcheminement": "LAUMESFELD", + "nomCommune": "LAUMESFELD" }, { - "codePostal": "63690", - "codeCommune": "63421", - "libelleAcheminement": "SINGLES", - "nomCommune": "SINGLES" + "codePostal": "59470", + "codeCommune": "59397", + "libelleAcheminement": "MERCKEGHEM", + "nomCommune": "MERCKEGHEM" }, { - "codePostal": "44160", - "codeCommune": "44129", - "libelleAcheminement": "PONTCHATEAU", - "nomCommune": "PONTCHATEAU" + "codePostal": "68770", + "codeCommune": "68005", + "libelleAcheminement": "AMMERSCHWIHR", + "nomCommune": "AMMERSCHWIHR" }, { - "codePostal": "37310", - "codeCommune": "37234", - "libelleAcheminement": "ST QUENTIN SUR INDROIS", - "nomCommune": "ST QUENTIN SUR INDROIS" + "codePostal": "14340", + "codeCommune": "14474", + "libelleAcheminement": "NOTRE DAME D ESTREES CORBON", + "nomCommune": "NOTRE DAME D ESTREES CORBON" }, { - "codePostal": "07310", - "codeCommune": "07123", - "libelleAcheminement": "LACHAPELLE SOUS CHANEAC", - "nomCommune": "LACHAPELLE SOUS CHANEAC" + "codePostal": "67320", + "codeCommune": "67373", + "libelleAcheminement": "PFALZWEYER", + "nomCommune": "PFALZWEYER" }, { - "codePostal": "63500", - "codeCommune": "63422", - "libelleAcheminement": "SOLIGNAT", - "nomCommune": "SOLIGNAT" + "codePostal": "57580", + "codeCommune": "57392", + "libelleAcheminement": "LEMUD", + "nomCommune": "LEMUD" }, { - "codePostal": "44860", - "codeCommune": "44130", - "libelleAcheminement": "PONT ST MARTIN", - "nomCommune": "PONT ST MARTIN" + "codePostal": "59234", + "codeCommune": "59409", + "libelleAcheminement": "MONCHECOURT", + "nomCommune": "MONCHECOURT" }, { - "codePostal": "37100", - "codeCommune": "37261", - "libelleAcheminement": "TOURS", - "nomCommune": "TOURS" + "codePostal": "68320", + "codeCommune": "68009", + "libelleAcheminement": "ARTZENHEIM", + "nomCommune": "ARTZENHEIM" }, { - "codePostal": "07520", - "codeCommune": "07124", - "libelleAcheminement": "LAFARRE", - "nomCommune": "LAFARRE" + "codePostal": "14220", + "codeCommune": "14483", + "libelleAcheminement": "OUFFIERES", + "nomCommune": "OUFFIERES" }, { - "codePostal": "63450", - "codeCommune": "63425", - "libelleAcheminement": "TALLENDE", - "nomCommune": "TALLENDE" + "codePostal": "67110", + "codeCommune": "67388", + "libelleAcheminement": "REICHSHOFFEN", + "nomCommune": "REICHSHOFFEN" }, { - "codePostal": "44390", - "codeCommune": "44138", - "libelleAcheminement": "PUCEUL", - "nomCommune": "PUCEUL" + "codePostal": "57720", + "codeCommune": "57393", + "libelleAcheminement": "LENGELSHEIM", + "nomCommune": "LENGELSHEIM" }, { - "codePostal": "37220", - "codeCommune": "37262", - "libelleAcheminement": "TROGUES", - "nomCommune": "TROGUES" + "codePostal": "59370", + "codeCommune": "59410", + "libelleAcheminement": "MONS EN BAROEUL", + "nomCommune": "MONS EN BAROEUL" }, { - "codePostal": "07200", - "codeCommune": "07131", - "libelleAcheminement": "LANAS", - "nomCommune": "LANAS" + "codePostal": "68700", + "codeCommune": "68012", + "libelleAcheminement": "ASPACH MICHELBACH", + "nomCommune": "ASPACH MICHELBACH" }, { - "codePostal": "63260", - "codeCommune": "63432", - "libelleAcheminement": "THURET", - "nomCommune": "THURET" + "codePostal": "14100", + "codeCommune": "14487", + "libelleAcheminement": "OUILLY LE VICOMTE", + "nomCommune": "OUILLY LE VICOMTE" }, { - "codePostal": "44330", - "codeCommune": "44140", - "libelleAcheminement": "LA REGRIPPIERE", - "nomCommune": "LA REGRIPPIERE" + "codePostal": "67110", + "codeCommune": "67388", + "libelleAcheminement": "REICHSHOFFEN", + "nomCommune": "REICHSHOFFEN" }, { - "codePostal": "37270", - "codeCommune": "37267", - "libelleAcheminement": "VERETZ", - "nomCommune": "VERETZ" + "codePostal": "57670", + "codeCommune": "57394", + "libelleAcheminement": "LENING", + "nomCommune": "LENING" }, { - "codePostal": "07110", - "codeCommune": "07134", - "libelleAcheminement": "LAURAC EN VIVARAIS", - "nomCommune": "LAURAC EN VIVARAIS" + "codePostal": "59360", + "codeCommune": "59412", + "libelleAcheminement": "MONTAY", + "nomCommune": "MONTAY" }, { - "codePostal": "63590", - "codeCommune": "63434", - "libelleAcheminement": "TOURS SUR MEYMONT", - "nomCommune": "TOURS SUR MEYMONT" + "codePostal": "68210", + "codeCommune": "68017", + "libelleAcheminement": "BALLERSDORF", + "nomCommune": "BALLERSDORF" }, { - "codePostal": "44140", - "codeCommune": "44142", - "libelleAcheminement": "REMOUILLE", - "nomCommune": "REMOUILLE" + "codePostal": "14310", + "codeCommune": "14491", + "libelleAcheminement": "PARFOURU SUR ODON", + "nomCommune": "PARFOURU SUR ODON" }, { - "codePostal": "37210", - "codeCommune": "37270", - "libelleAcheminement": "VERNOU SUR BRENNE", - "nomCommune": "VERNOU SUR BRENNE" + "codePostal": "67250", + "codeCommune": "67394", + "libelleAcheminement": "RETSCHWILLER", + "nomCommune": "RETSCHWILLER" }, { - "codePostal": "07530", - "codeCommune": "07139", - "libelleAcheminement": "LAVIOLLE", - "nomCommune": "LAVIOLLE" + "codePostal": "57160", + "codeCommune": "57396", + "libelleAcheminement": "LESSY", + "nomCommune": "LESSY" }, { - "codePostal": "63910", - "codeCommune": "63445", - "libelleAcheminement": "VASSEL", - "nomCommune": "VASSEL" + "codePostal": "59161", + "codeCommune": "59422", + "libelleAcheminement": "NAVES", + "nomCommune": "NAVES" }, { - "codePostal": "44660", - "codeCommune": "44148", - "libelleAcheminement": "RUFFIGNE", - "nomCommune": "RUFFIGNE" + "codePostal": "68490", + "codeCommune": "68020", + "libelleAcheminement": "BANTZENHEIM", + "nomCommune": "BANTZENHEIM" }, { - "codePostal": "37460", - "codeCommune": "37277", - "libelleAcheminement": "VILLELOIN COULANGE", - "nomCommune": "VILLELOIN COULANGE" + "codePostal": "14112", + "codeCommune": "14495", + "libelleAcheminement": "PERIERS SUR LE DAN", + "nomCommune": "PERIERS SUR LE DAN" }, { - "codePostal": "07610", - "codeCommune": "07140", - "libelleAcheminement": "LEMPS", - "nomCommune": "LEMPS" + "codePostal": "67440", + "codeCommune": "67395", + "libelleAcheminement": "REUTENBOURG", + "nomCommune": "REUTENBOURG" }, { - "codePostal": "63330", - "codeCommune": "63447", - "libelleAcheminement": "VERGHEAS", - "nomCommune": "VERGHEAS" + "codePostal": "57260", + "codeCommune": "57405", + "libelleAcheminement": "LINDRE HAUTE", + "nomCommune": "LINDRE HAUTE" }, { - "codePostal": "44650", - "codeCommune": "44156", - "libelleAcheminement": "CORCOUE SUR LOGNE", - "nomCommune": "CORCOUE SUR LOGNE" + "codePostal": "59293", + "codeCommune": "59429", + "libelleAcheminement": "NEUVILLE SUR ESCAUT", + "nomCommune": "NEUVILLE SUR ESCAUT" }, { - "codePostal": "37290", - "codeCommune": "37282", - "libelleAcheminement": "YZEURES SUR CREUSE", - "nomCommune": "YZEURES SUR CREUSE" + "codePostal": "68210", + "codeCommune": "68024", + "libelleAcheminement": "BELLEMAGNY", + "nomCommune": "BELLEMAGNY" }, { - "codePostal": "07140", - "codeCommune": "07147", - "libelleAcheminement": "MALARCE SUR LA THINES", - "nomCommune": "MALARCE SUR LA THINES" + "codePostal": "14380", + "codeCommune": "14511", + "libelleAcheminement": "PONT BELLANGER", + "nomCommune": "PONT BELLANGER" }, { - "codePostal": "63470", - "codeCommune": "63450", - "libelleAcheminement": "VERNEUGHEOL", - "nomCommune": "VERNEUGHEOL" + "codePostal": "67320", + "codeCommune": "67396", + "libelleAcheminement": "REXINGEN", + "nomCommune": "REXINGEN" }, { - "codePostal": "44650", - "codeCommune": "44156", - "libelleAcheminement": "CORCOUE SUR LOGNE", - "nomCommune": "CORCOUE SUR LOGNE" + "codePostal": "57635", + "codeCommune": "57407", + "libelleAcheminement": "LIXHEIM", + "nomCommune": "LIXHEIM" }, { - "codePostal": "38630", - "codeCommune": "38022", - "libelleAcheminement": "LES AVENIERES VEYRINS THUELLIN", - "nomCommune": "LES AVENIERES VEYRINS THUELLIN" + "codePostal": "59230", + "codeCommune": "59434", + "libelleAcheminement": "NIVELLE", + "nomCommune": "NIVELLE" }, { - "codePostal": "07320", - "codeCommune": "07151", - "libelleAcheminement": "MARS", - "nomCommune": "MARS" + "codePostal": "68480", + "codeCommune": "68025", + "libelleAcheminement": "BENDORF", + "nomCommune": "BENDORF" }, { - "codePostal": "63210", - "codeCommune": "63451", - "libelleAcheminement": "VERNINES", - "nomCommune": "VERNINES" + "codePostal": "14340", + "codeCommune": "14520", + "libelleAcheminement": "LE PRE D AUGE", + "nomCommune": "LE PRE D AUGE" }, { - "codePostal": "44190", - "codeCommune": "44165", - "libelleAcheminement": "ST HILAIRE DE CLISSON", - "nomCommune": "ST HILAIRE DE CLISSON" + "codePostal": "67390", + "codeCommune": "67398", + "libelleAcheminement": "RICHTOLSHEIM", + "nomCommune": "RICHTOLSHEIM" }, { - "codePostal": "38270", - "codeCommune": "38034", - "libelleAcheminement": "BEAUREPAIRE", - "nomCommune": "BEAUREPAIRE" + "codePostal": "57050", + "codeCommune": "57412", + "libelleAcheminement": "LONGEVILLE LES METZ", + "nomCommune": "LONGEVILLE LES METZ" }, { - "codePostal": "07510", - "codeCommune": "07154", - "libelleAcheminement": "MAZAN L ABBAYE", - "nomCommune": "MAZAN L ABBAYE" + "codePostal": "59530", + "codeCommune": "59451", + "libelleAcheminement": "ORSINVAL", + "nomCommune": "ORSINVAL" }, { - "codePostal": "63270", - "codeCommune": "63457", - "libelleAcheminement": "VIC LE COMTE", - "nomCommune": "VIC LE COMTE" + "codePostal": "68130", + "codeCommune": "68027", + "libelleAcheminement": "BERENTZWILLER", + "nomCommune": "BERENTZWILLER" }, { - "codePostal": "44450", - "codeCommune": "44169", - "libelleAcheminement": "ST JULIEN DE CONCELLES", - "nomCommune": "ST JULIEN DE CONCELLES" + "codePostal": "14140", + "codeCommune": "14522", + "libelleAcheminement": "PRETREVILLE", + "nomCommune": "PRETREVILLE" }, { - "codePostal": "38160", - "codeCommune": "38041", - "libelleAcheminement": "BESSINS", - "nomCommune": "BESSINS" + "codePostal": "67690", + "codeCommune": "67404", + "libelleAcheminement": "RITTERSHOFFEN", + "nomCommune": "RITTERSHOFFEN" }, { - "codePostal": "07170", - "codeCommune": "07159", - "libelleAcheminement": "MIRABEL", - "nomCommune": "MIRABEL" + "codePostal": "57790", + "codeCommune": "57414", + "libelleAcheminement": "LORQUIN", + "nomCommune": "LORQUIN" }, { - "codePostal": "63410", - "codeCommune": "63464", - "libelleAcheminement": "VITRAC", - "nomCommune": "VITRAC" + "codePostal": "59670", + "codeCommune": "59453", + "libelleAcheminement": "OUDEZEELE", + "nomCommune": "OUDEZEELE" }, { - "codePostal": "44670", - "codeCommune": "44170", - "libelleAcheminement": "ST JULIEN DE VOUVANTES", - "nomCommune": "ST JULIEN DE VOUVANTES" + "codePostal": "68500", + "codeCommune": "68030", + "libelleAcheminement": "BERGHOLTZZELL", + "nomCommune": "BERGHOLTZZELL" }, { - "codePostal": "38730", - "codeCommune": "38047", - "libelleAcheminement": "BLANDIN", - "nomCommune": "BLANDIN" + "codePostal": "14400", + "codeCommune": "14529", + "libelleAcheminement": "RANCHY", + "nomCommune": "RANCHY" }, { - "codePostal": "07560", - "codeCommune": "07161", - "libelleAcheminement": "MONTPEZAT SOUS BAUZON", - "nomCommune": "MONTPEZAT SOUS BAUZON" + "codePostal": "67230", + "codeCommune": "67433", + "libelleAcheminement": "SAND", + "nomCommune": "SAND" }, { - "codePostal": "63840", - "codeCommune": "63465", - "libelleAcheminement": "VIVEROLS", - "nomCommune": "VIVEROLS" + "codePostal": "57670", + "codeCommune": "57417", + "libelleAcheminement": "LOSTROFF", + "nomCommune": "LOSTROFF" }, { - "codePostal": "44680", - "codeCommune": "44178", - "libelleAcheminement": "ST MARS DE COUTAIS", - "nomCommune": "ST MARS DE COUTAIS" + "codePostal": "59840", + "codeCommune": "59457", + "libelleAcheminement": "PERENCHIES", + "nomCommune": "PERENCHIES" }, { - "codePostal": "38510", - "codeCommune": "38055", - "libelleAcheminement": "BRANGUES", - "nomCommune": "BRANGUES" + "codePostal": "68480", + "codeCommune": "68035", + "libelleAcheminement": "BIEDERTHAL", + "nomCommune": "BIEDERTHAL" }, { - "codePostal": "07160", - "codeCommune": "07165", - "libelleAcheminement": "BELSENTES", - "nomCommune": "BELSENTES" + "codePostal": "14100", + "codeCommune": "14540", + "libelleAcheminement": "ROCQUES", + "nomCommune": "ROCQUES" }, { - "codePostal": "63500", - "codeCommune": "63466", - "libelleAcheminement": "VODABLE", - "nomCommune": "VODABLE" + "codePostal": "67700", + "codeCommune": "67437", + "libelleAcheminement": "SAVERNE", + "nomCommune": "SAVERNE" }, { - "codePostal": "44350", - "codeCommune": "44183", - "libelleAcheminement": "ST MOLF", - "nomCommune": "ST MOLF" + "codePostal": "57730", + "codeCommune": "57428", + "libelleAcheminement": "MACHEREN", + "nomCommune": "MACHEREN" }, { - "codePostal": "38320", - "codeCommune": "38059", - "libelleAcheminement": "BRIE ET ANGONNES", - "nomCommune": "BRIE ET ANGONNES" + "codePostal": "59840", + "codeCommune": "59470", + "libelleAcheminement": "PREMESQUES", + "nomCommune": "PREMESQUES" }, { - "codePostal": "07270", - "codeCommune": "07166", - "libelleAcheminement": "NOZIERES", - "nomCommune": "NOZIERES" + "codePostal": "68600", + "codeCommune": "68036", + "libelleAcheminement": "BIESHEIM", + "nomCommune": "BIESHEIM" }, { - "codePostal": "63620", - "codeCommune": "63467", - "libelleAcheminement": "VOINGT", - "nomCommune": "VOINGT" + "codePostal": "14400", + "codeCommune": "14552", + "libelleAcheminement": "RYES", + "nomCommune": "RYES" }, { - "codePostal": "44600", - "codeCommune": "44184", - "libelleAcheminement": "ST NAZAIRE", - "nomCommune": "ST NAZAIRE" + "codePostal": "67470", + "codeCommune": "67440", + "libelleAcheminement": "SCHAFFHOUSE PRES SELTZ", + "nomCommune": "SCHAFFHOUSE PRES SELTZ" }, { - "codePostal": "38110", - "codeCommune": "38064", - "libelleAcheminement": "CESSIEU", - "nomCommune": "CESSIEU" + "codePostal": "57530", + "codeCommune": "57431", + "libelleAcheminement": "MAIZEROY", + "nomCommune": "MAIZEROY" }, { - "codePostal": "07340", - "codeCommune": "07174", - "libelleAcheminement": "PEYRAUD", - "nomCommune": "PEYRAUD" + "codePostal": "59288", + "codeCommune": "59472", + "libelleAcheminement": "PREUX AU BOIS", + "nomCommune": "PREUX AU BOIS" }, { - "codePostal": "63530", - "codeCommune": "63470", - "libelleAcheminement": "VOLVIC", - "nomCommune": "VOLVIC" + "codePostal": "68740", + "codeCommune": "68041", + "libelleAcheminement": "BLODELSHEIM", + "nomCommune": "BLODELSHEIM" }, { - "codePostal": "44460", - "codeCommune": "44185", - "libelleAcheminement": "ST NICOLAS DE REDON", - "nomCommune": "ST NICOLAS DE REDON" + "codePostal": "14970", + "codeCommune": "14558", + "libelleAcheminement": "ST AUBIN D ARQUENAY", + "nomCommune": "ST AUBIN D ARQUENAY" }, { - "codePostal": "38560", - "codeCommune": "38071", - "libelleAcheminement": "CHAMP SUR DRAC", - "nomCommune": "CHAMP SUR DRAC" + "codePostal": "67310", + "codeCommune": "67442", + "libelleAcheminement": "SCHARRACHBERGHEIM IRMSTETT", + "nomCommune": "SCHARRACHBERGHEIM IRMSTETT" }, { - "codePostal": "07590", - "codeCommune": "07175", - "libelleAcheminement": "LE PLAGNAL", - "nomCommune": "LE PLAGNAL" + "codePostal": "57480", + "codeCommune": "57439", + "libelleAcheminement": "MANDEREN RITZING", + "nomCommune": "MANDEREN RITZING" }, { - "codePostal": "64460", - "codeCommune": "64001", - "libelleAcheminement": "AAST", - "nomCommune": "AAST" + "codePostal": "59269", + "codeCommune": "59480", + "libelleAcheminement": "QUERENAING", + "nomCommune": "QUERENAING" }, { - "codePostal": "44320", - "codeCommune": "44187", - "libelleAcheminement": "ST PERE EN RETZ", - "nomCommune": "ST PERE EN RETZ" + "codePostal": "68540", + "codeCommune": "68043", + "libelleAcheminement": "BOLLWILLER", + "nomCommune": "BOLLWILLER" }, { - "codePostal": "38150", - "codeCommune": "38072", - "libelleAcheminement": "CHANAS", - "nomCommune": "CHANAS" + "codePostal": "14380", + "codeCommune": "14559", + "libelleAcheminement": "ST AUBIN DES BOIS", + "nomCommune": "ST AUBIN DES BOIS" }, { - "codePostal": "07380", - "codeCommune": "07182", - "libelleAcheminement": "PRADES", - "nomCommune": "PRADES" + "codePostal": "67240", + "codeCommune": "67450", + "libelleAcheminement": "SCHIRRHOFFEN", + "nomCommune": "SCHIRRHOFFEN" }, { - "codePostal": "64490", - "codeCommune": "64006", - "libelleAcheminement": "ACCOUS", - "nomCommune": "ACCOUS" + "codePostal": "57100", + "codeCommune": "57441", + "libelleAcheminement": "MANOM", + "nomCommune": "MANOM" }, { - "codePostal": "44530", - "codeCommune": "44196", - "libelleAcheminement": "SEVERAC", - "nomCommune": "SEVERAC" + "codePostal": "59530", + "codeCommune": "59481", + "libelleAcheminement": "LE QUESNOY", + "nomCommune": "LE QUESNOY" }, { - "codePostal": "38150", - "codeCommune": "38077", - "libelleAcheminement": "LA CHAPELLE DE SURIEU", - "nomCommune": "LA CHAPELLE DE SURIEU" + "codePostal": "68380", + "codeCommune": "68051", + "libelleAcheminement": "BREITENBACH", + "nomCommune": "BREITENBACH HAUT RHIN" }, { - "codePostal": "07000", - "codeCommune": "07184", - "libelleAcheminement": "PRANLES", - "nomCommune": "PRANLES" + "codePostal": "14290", + "codeCommune": "14570", + "libelleAcheminement": "VALORBIQUET", + "nomCommune": "VALORBIQUET" }, { - "codePostal": "64400", - "codeCommune": "64007", - "libelleAcheminement": "AGNOS", - "nomCommune": "AGNOS" + "codePostal": "67390", + "codeCommune": "67453", + "libelleAcheminement": "SCHOENAU", + "nomCommune": "SCHOENAU" }, { - "codePostal": "44240", - "codeCommune": "44201", - "libelleAcheminement": "SUCE SUR ERDRE", - "nomCommune": "SUCE SUR ERDRE" + "codePostal": "57420", + "codeCommune": "57445", + "libelleAcheminement": "MARIEULLES", + "nomCommune": "MARIEULLES" }, { - "codePostal": "38140", - "codeCommune": "38084", - "libelleAcheminement": "CHARNECLES", - "nomCommune": "CHARNECLES" + "codePostal": "59214", + "codeCommune": "59485", + "libelleAcheminement": "QUIEVY", + "nomCommune": "QUIEVY" }, { - "codePostal": "07290", - "codeCommune": "07185", - "libelleAcheminement": "PREAUX", - "nomCommune": "PREAUX" + "codePostal": "68520", + "codeCommune": "68060", + "libelleAcheminement": "BURNHAUPT LE HAUT", + "nomCommune": "BURNHAUPT LE HAUT" }, { - "codePostal": "64390", - "codeCommune": "64022", - "libelleAcheminement": "ANDREIN", - "nomCommune": "ANDREIN" + "codePostal": "14290", + "codeCommune": "14570", + "libelleAcheminement": "VALORBIQUET", + "nomCommune": "VALORBIQUET" }, { - "codePostal": "44650", - "codeCommune": "44206", - "libelleAcheminement": "TOUVOIS", - "nomCommune": "TOUVOIS" + "codePostal": "67600", + "codeCommune": "67462", + "libelleAcheminement": "SELESTAT", + "nomCommune": "SELESTAT" }, { - "codePostal": "38730", - "codeCommune": "38089", - "libelleAcheminement": "CHASSIGNIEU", - "nomCommune": "CHASSIGNIEU" + "codePostal": "57220", + "codeCommune": "57455", + "libelleAcheminement": "MEGANGE", + "nomCommune": "MEGANGE" }, { - "codePostal": "07260", - "codeCommune": "07189", - "libelleAcheminement": "RIBES", - "nomCommune": "RIBES" + "codePostal": "59554", + "codeCommune": "59488", + "libelleAcheminement": "RAILLENCOURT STE OLLE", + "nomCommune": "RAILLENCOURT STE OLLE" }, { - "codePostal": "64570", - "codeCommune": "64040", - "libelleAcheminement": "ARETTE", - "nomCommune": "ARETTE" + "codePostal": "68130", + "codeCommune": "68062", + "libelleAcheminement": "CARSPACH", + "nomCommune": "CARSPACH" }, { - "codePostal": "44440", - "codeCommune": "44207", - "libelleAcheminement": "TRANS SUR ERDRE", - "nomCommune": "TRANS SUR ERDRE" + "codePostal": "14140", + "codeCommune": "14576", + "libelleAcheminement": "VAL DE VIE", + "nomCommune": "VAL DE VIE" }, { - "codePostal": "38440", - "codeCommune": "38094", - "libelleAcheminement": "CHATONNAY", - "nomCommune": "CHATONNAY" + "codePostal": "67160", + "codeCommune": "67466", + "libelleAcheminement": "SIEGEN", + "nomCommune": "SIEGEN" }, { - "codePostal": "07200", - "codeCommune": "07190", - "libelleAcheminement": "ROCHECOLOMBE", - "nomCommune": "ROCHECOLOMBE" + "codePostal": "57960", + "codeCommune": "57456", + "libelleAcheminement": "MEISENTHAL", + "nomCommune": "MEISENTHAL" }, { - "codePostal": "64120", - "codeCommune": "64051", - "libelleAcheminement": "ARRAUTE CHARRITTE", - "nomCommune": "ARRAUTE CHARRITTE" + "codePostal": "59177", + "codeCommune": "59493", + "libelleAcheminement": "RAMOUSIES", + "nomCommune": "RAMOUSIES" }, { - "codePostal": "44420", - "codeCommune": "44211", - "libelleAcheminement": "LA TURBALLE", - "nomCommune": "LA TURBALLE" + "codePostal": "68210", + "codeCommune": "68068", + "libelleAcheminement": "DANNEMARIE", + "nomCommune": "DANNEMARIE" }, { - "codePostal": "38230", - "codeCommune": "38097", - "libelleAcheminement": "CHAVANOZ", - "nomCommune": "CHAVANOZ" + "codePostal": "14260", + "codeCommune": "14579", + "libelleAcheminement": "SEULLINE", + "nomCommune": "SEULLINE" }, { - "codePostal": "07320", - "codeCommune": "07192", - "libelleAcheminement": "ROCHEPAULE", - "nomCommune": "ROCHEPAULE" + "codePostal": "67320", + "codeCommune": "67467", + "libelleAcheminement": "SIEWILLER", + "nomCommune": "SIEWILLER" }, { - "codePostal": "64800", - "codeCommune": "64054", - "libelleAcheminement": "ARROS DE NAY", - "nomCommune": "ARROS DE NAY" + "codePostal": "57480", + "codeCommune": "57459", + "libelleAcheminement": "MERSCHWEILLER", + "nomCommune": "MERSCHWEILLER" }, { - "codePostal": "44370", - "codeCommune": "44213", - "libelleAcheminement": "LOIREAUXENCE", - "nomCommune": "LOIREAUXENCE" + "codePostal": "59245", + "codeCommune": "59495", + "libelleAcheminement": "RECQUIGNIES", + "nomCommune": "RECQUIGNIES" }, { - "codePostal": "38730", - "codeCommune": "38098", - "libelleAcheminement": "CHELIEU", - "nomCommune": "CHELIEU" + "codePostal": "68600", + "codeCommune": "68069", + "libelleAcheminement": "DESSENHEIM", + "nomCommune": "DESSENHEIM" }, { - "codePostal": "07210", - "codeCommune": "07194", - "libelleAcheminement": "ROCHESSAUVE", - "nomCommune": "ROCHESSAUVE" + "codePostal": "14100", + "codeCommune": "14582", + "libelleAcheminement": "ST GERMAIN DE LIVET", + "nomCommune": "ST GERMAIN DE LIVET" }, { - "codePostal": "64230", - "codeCommune": "64060", - "libelleAcheminement": "ARTIGUELOUVE", - "nomCommune": "ARTIGUELOUVE" + "codePostal": "67620", + "codeCommune": "67472", + "libelleAcheminement": "SOUFFLENHEIM", + "nomCommune": "SOUFFLENHEIM" }, { - "codePostal": "44120", - "codeCommune": "44215", - "libelleAcheminement": "VERTOU", - "nomCommune": "VERTOU" + "codePostal": "57940", + "codeCommune": "57465", + "libelleAcheminement": "METZERVISSE", + "nomCommune": "METZERVISSE" }, { - "codePostal": "38121", - "codeCommune": "38107", - "libelleAcheminement": "CHONAS L AMBALLAN", - "nomCommune": "CHONAS L AMBALLAN" + "codePostal": "59122", + "codeCommune": "59499", + "libelleAcheminement": "REXPOEDE", + "nomCommune": "REXPOEDE" }, { - "codePostal": "07600", - "codeCommune": "07210", - "libelleAcheminement": "ST ANDEOL DE VALS", - "nomCommune": "ST ANDEOL DE VALS" + "codePostal": "68140", + "codeCommune": "68083", + "libelleAcheminement": "ESCHBACH AU VAL", + "nomCommune": "ESCHBACH AU VAL" }, { - "codePostal": "64410", - "codeCommune": "64063", - "libelleAcheminement": "ARZACQ ARRAZIGUET", - "nomCommune": "ARZACQ ARRAZIGUET" + "codePostal": "14230", + "codeCommune": "14586", + "libelleAcheminement": "ST GERMAIN DU PERT", + "nomCommune": "ST GERMAIN DU PERT" }, { - "codePostal": "44110", - "codeCommune": "44218", - "libelleAcheminement": "VILLEPOT", - "nomCommune": "VILLEPOT" + "codePostal": "67250", + "codeCommune": "67474", + "libelleAcheminement": "SOULTZ SOUS FORETS", + "nomCommune": "SOULTZ SOUS FORETS" }, { - "codePostal": "38142", - "codeCommune": "38112", - "libelleAcheminement": "CLAVANS EN HAUT OISANS", - "nomCommune": "CLAVANS EN HAUT OISANS" + "codePostal": "57810", + "codeCommune": "57473", + "libelleAcheminement": "MONCOURT", + "nomCommune": "MONCOURT" }, { - "codePostal": "07300", - "codeCommune": "07217", - "libelleAcheminement": "ST BARTHELEMY LE PLAIN", - "nomCommune": "ST BARTHELEMY LE PLAIN" + "codePostal": "59172", + "codeCommune": "59504", + "libelleAcheminement": "ROEULX", + "nomCommune": "ROEULX" }, { - "codePostal": "64220", - "codeCommune": "64066", - "libelleAcheminement": "ASCARAT", - "nomCommune": "ASCARAT" + "codePostal": "68210", + "codeCommune": "68086", + "libelleAcheminement": "FALKWILLER", + "nomCommune": "FALKWILLER" }, { - "codePostal": "45200", - "codeCommune": "45004", - "libelleAcheminement": "AMILLY", - "nomCommune": "AMILLY" + "codePostal": "14190", + "codeCommune": "14589", + "libelleAcheminement": "ST GERMAIN LE VASSON", + "nomCommune": "ST GERMAIN LE VASSON" }, { - "codePostal": "38690", - "codeCommune": "38118", - "libelleAcheminement": "COLOMBE", - "nomCommune": "COLOMBE" + "codePostal": "67310", + "codeCommune": "67492", + "libelleAcheminement": "TRAENHEIM", + "nomCommune": "TRAENHEIM" }, { - "codePostal": "07380", - "codeCommune": "07223", - "libelleAcheminement": "ST CIRGUES DE PRADES", - "nomCommune": "ST CIRGUES DE PRADES" + "codePostal": "57920", + "codeCommune": "57476", + "libelleAcheminement": "MONNEREN", + "nomCommune": "MONNEREN" }, { - "codePostal": "64450", - "codeCommune": "64078", - "libelleAcheminement": "AURIAC", - "nomCommune": "AURIAC" + "codePostal": "59223", + "codeCommune": "59508", + "libelleAcheminement": "RONCQ", + "nomCommune": "RONCQ" }, { - "codePostal": "45340", - "codeCommune": "45018", - "libelleAcheminement": "AUXY", - "nomCommune": "AUXY" + "codePostal": "68480", + "codeCommune": "68090", + "libelleAcheminement": "FERRETTE", + "nomCommune": "FERRETTE" }, { - "codePostal": "38190", - "codeCommune": "38120", - "libelleAcheminement": "LA COMBE DE LANCEY", - "nomCommune": "LA COMBE DE LANCEY" + "codePostal": "14240", + "codeCommune": "14590", + "libelleAcheminement": "STE HONORINE DE DUCY", + "nomCommune": "STE HONORINE DE DUCY" }, { - "codePostal": "07430", - "codeCommune": "07225", - "libelleAcheminement": "ST CLAIR", - "nomCommune": "ST CLAIR" + "codePostal": "67220", + "codeCommune": "67493", + "libelleAcheminement": "TRIEMBACH AU VAL", + "nomCommune": "TRIEMBACH AU VAL" }, { - "codePostal": "64350", - "codeCommune": "64079", - "libelleAcheminement": "AURIONS IDERNES", - "nomCommune": "AURIONS IDERNES" + "codePostal": "57415", + "codeCommune": "57477", + "libelleAcheminement": "MONTBRONN", + "nomCommune": "MONTBRONN" }, { - "codePostal": "45130", - "codeCommune": "45019", - "libelleAcheminement": "BACCON", - "nomCommune": "BACCON" + "codePostal": "59530", + "codeCommune": "59518", + "libelleAcheminement": "RUESNES", + "nomCommune": "RUESNES" }, { - "codePostal": "38630", - "codeCommune": "38124", - "libelleAcheminement": "CORBELIN", - "nomCommune": "CORBELIN" + "codePostal": "68720", + "codeCommune": "68099", + "libelleAcheminement": "FROENINGEN", + "nomCommune": "FROENINGEN" }, { - "codePostal": "07340", - "codeCommune": "07228", - "libelleAcheminement": "ST DESIRAT", - "nomCommune": "ST DESIRAT" + "codePostal": "14210", + "codeCommune": "14592", + "libelleAcheminement": "STE HONORINE DU FAY", + "nomCommune": "STE HONORINE DU FAY" }, { - "codePostal": "64230", - "codeCommune": "64080", - "libelleAcheminement": "AUSSEVIELLE", - "nomCommune": "AUSSEVIELLE" + "codePostal": "67470", + "codeCommune": "67494", + "libelleAcheminement": "TRIMBACH", + "nomCommune": "TRIMBACH" }, { - "codePostal": "45190", - "codeCommune": "45028", - "libelleAcheminement": "BEAUGENCY", - "nomCommune": "BEAUGENCY" + "codePostal": "57480", + "codeCommune": "57479", + "libelleAcheminement": "MONTENACH", + "nomCommune": "MONTENACH" }, { - "codePostal": "38700", - "codeCommune": "38126", - "libelleAcheminement": "CORENC", - "nomCommune": "CORENC" + "codePostal": "59390", + "codeCommune": "59522", + "libelleAcheminement": "SAILLY LEZ LANNOY", + "nomCommune": "SAILLY LEZ LANNOY" }, { - "codePostal": "07340", - "codeCommune": "07234", - "libelleAcheminement": "ST ETIENNE DE VALOUX", - "nomCommune": "ST ETIENNE DE VALOUX" + "codePostal": "68210", + "codeCommune": "68100", + "libelleAcheminement": "FULLEREN", + "nomCommune": "FULLEREN" }, { - "codePostal": "64130", - "codeCommune": "64081", - "libelleAcheminement": "AUSSURUCQ", - "nomCommune": "AUSSURUCQ" + "codePostal": "14740", + "codeCommune": "14610", + "libelleAcheminement": "ST MANVIEU NORREY", + "nomCommune": "ST MANVIEU NORREY" }, { - "codePostal": "45340", - "codeCommune": "45030", - "libelleAcheminement": "BEAUNE LA ROLANDE", - "nomCommune": "BEAUNE LA ROLANDE" + "codePostal": "67550", + "codeCommune": "67506", + "libelleAcheminement": "VENDENHEIM", + "nomCommune": "VENDENHEIM" }, { - "codePostal": "38300", - "codeCommune": "38136", - "libelleAcheminement": "CRACHIER", - "nomCommune": "CRACHIER" + "codePostal": "57860", + "codeCommune": "57481", + "libelleAcheminement": "MONTOIS LA MONTAGNE", + "nomCommune": "MONTOIS LA MONTAGNE" }, { - "codePostal": "07170", - "codeCommune": "07241", - "libelleAcheminement": "ST GERMAIN", - "nomCommune": "ST GERMAIN" + "codePostal": "59440", + "codeCommune": "59534", + "libelleAcheminement": "ST HILAIRE SUR HELPE", + "nomCommune": "ST HILAIRE SUR HELPE" }, { - "codePostal": "64510", - "codeCommune": "64091", - "libelleAcheminement": "BALIROS", - "nomCommune": "BALIROS" + "codePostal": "68600", + "codeCommune": "68104", + "libelleAcheminement": "GEISWASSER", + "nomCommune": "GEISWASSER" }, { - "codePostal": "45270", - "codeCommune": "45031", - "libelleAcheminement": "BELLEGARDE", - "nomCommune": "BELLEGARDE" + "codePostal": "14380", + "codeCommune": "14619", + "libelleAcheminement": "STE MARIE OUTRE L EAU", + "nomCommune": "STE MARIE OUTRE L EAU" }, { - "codePostal": "38300", - "codeCommune": "38141", - "libelleAcheminement": "CULIN", - "nomCommune": "CULIN" + "codePostal": "67170", + "codeCommune": "67510", + "libelleAcheminement": "WAHLENHEIM", + "nomCommune": "WAHLENHEIM" }, { - "codePostal": "07160", - "codeCommune": "07248", - "libelleAcheminement": "ST JEAN ROURE", - "nomCommune": "ST JEAN ROURE" + "codePostal": "57260", + "codeCommune": "57493", + "libelleAcheminement": "MULCEY", + "nomCommune": "MULCEY" }, { - "codePostal": "64430", - "codeCommune": "64092", - "libelleAcheminement": "BANCA", - "nomCommune": "BANCA" + "codePostal": "59218", + "codeCommune": "59549", + "libelleAcheminement": "SALESCHES", + "nomCommune": "SALESCHES" }, { - "codePostal": "45340", - "codeCommune": "45041", - "libelleAcheminement": "BORDEAUX EN GATINAIS", - "nomCommune": "BORDEAUX EN GATINAIS" + "codePostal": "68760", + "codeCommune": "68106", + "libelleAcheminement": "GOLDBACH ALTENBACH", + "nomCommune": "GOLDBACH ALTENBACH" }, { - "codePostal": "38790", - "codeCommune": "38144", - "libelleAcheminement": "DIEMOZ", - "nomCommune": "DIEMOZ" + "codePostal": "14130", + "codeCommune": "14620", + "libelleAcheminement": "ST MARTIN AUX CHARTRAINS", + "nomCommune": "ST MARTIN AUX CHARTRAINS" }, { - "codePostal": "07000", - "codeCommune": "07255", - "libelleAcheminement": "ST JULIEN EN ST ALBAN", - "nomCommune": "ST JULIEN EN ST ALBAN" + "codePostal": "67670", + "codeCommune": "67516", + "libelleAcheminement": "WALTENHEIM SUR ZORN", + "nomCommune": "WALTENHEIM SUR ZORN" }, { - "codePostal": "64130", - "codeCommune": "64093", - "libelleAcheminement": "BARCUS", - "nomCommune": "BARCUS" + "codePostal": "57670", + "codeCommune": "57496", + "libelleAcheminement": "NEBING", + "nomCommune": "NEBING" }, { - "codePostal": "45170", - "codeCommune": "45044", - "libelleAcheminement": "BOUGY LEZ NEUVILLE", - "nomCommune": "BOUGY LEZ NEUVILLE" + "codePostal": "59440", + "codeCommune": "59562", + "libelleAcheminement": "SEMERIES", + "nomCommune": "SEMERIES" }, { - "codePostal": "38300", - "codeCommune": "38149", - "libelleAcheminement": "DOMARIN", - "nomCommune": "DOMARIN" + "codePostal": "68210", + "codeCommune": "68119", + "libelleAcheminement": "HAGENBACH", + "nomCommune": "HAGENBACH" }, { - "codePostal": "07700", - "codeCommune": "07259", - "libelleAcheminement": "ST JUST D ARDECHE", - "nomCommune": "ST JUST D ARDECHE" + "codePostal": "14100", + "codeCommune": "14625", + "libelleAcheminement": "ST MARTIN DE LA LIEUE", + "nomCommune": "ST MARTIN DE LA LIEUE" }, { - "codePostal": "64190", - "codeCommune": "64099", - "libelleAcheminement": "BASTANES", - "nomCommune": "BASTANES" + "codePostal": "67520", + "codeCommune": "67517", + "libelleAcheminement": "WANGEN", + "nomCommune": "WANGEN" }, { - "codePostal": "45460", - "codeCommune": "45049", - "libelleAcheminement": "BOUZY LA FORET", - "nomCommune": "BOUZY LA FORET" + "codePostal": "57830", + "codeCommune": "57500", + "libelleAcheminement": "NEUFMOULINS", + "nomCommune": "NEUFMOULINS" }, { - "codePostal": "38580", - "codeCommune": "38163", - "libelleAcheminement": "LE HAUT BREDA", - "nomCommune": "LE HAUT BREDA" + "codePostal": "59173", + "codeCommune": "59568", + "libelleAcheminement": "SERCUS", + "nomCommune": "SERCUS" }, { - "codePostal": "07700", - "codeCommune": "07268", - "libelleAcheminement": "ST MARTIN D ARDECHE", - "nomCommune": "ST MARTIN D ARDECHE" + "codePostal": "68220", + "codeCommune": "68121", + "libelleAcheminement": "HAGENTHAL LE HAUT", + "nomCommune": "HAGENTHAL LE HAUT" }, { - "codePostal": "64800", - "codeCommune": "64101", - "libelleAcheminement": "BAUDREIX", - "nomCommune": "BAUDREIX" + "codePostal": "14700", + "codeCommune": "14627", + "libelleAcheminement": "ST MARTIN DE MIEUX", + "nomCommune": "ST MARTIN DE MIEUX" }, { - "codePostal": "45460", - "codeCommune": "45051", - "libelleAcheminement": "BRAY ST AIGNAN", - "nomCommune": "BRAY ST AIGNAN" + "codePostal": "67440", + "codeCommune": "67527", + "libelleAcheminement": "WESTHOUSE MARMOUTIER", + "nomCommune": "WESTHOUSE MARMOUTIER" }, { - "codePostal": "38580", - "codeCommune": "38163", - "libelleAcheminement": "LE HAUT BREDA", - "nomCommune": "LE HAUT BREDA" + "codePostal": "57720", + "codeCommune": "57517", + "libelleAcheminement": "OBERGAILBACH", + "nomCommune": "OBERGAILBACH" }, { - "codePostal": "07520", - "codeCommune": "07285", - "libelleAcheminement": "ST PIERRE SUR DOUX", - "nomCommune": "ST PIERRE SUR DOUX" + "codePostal": "59380", + "codeCommune": "59579", + "libelleAcheminement": "STEENE", + "nomCommune": "STEENE" }, { - "codePostal": "64490", - "codeCommune": "64104", - "libelleAcheminement": "BEDOUS", - "nomCommune": "BEDOUS" + "codePostal": "68500", + "codeCommune": "68122", + "libelleAcheminement": "HARTMANNSWILLER", + "nomCommune": "HARTMANNSWILLER" }, { - "codePostal": "45390", - "codeCommune": "45054", - "libelleAcheminement": "BRIARRES SUR ESSONNE", - "nomCommune": "BRIARRES SUR ESSONNE" + "codePostal": "14340", + "codeCommune": "14639", + "libelleAcheminement": "ST OUEN LE PIN", + "nomCommune": "ST OUEN LE PIN" }, { - "codePostal": "38142", - "codeCommune": "38173", - "libelleAcheminement": "LE FRENEY D OISANS", - "nomCommune": "LE FRENEY D OISANS" + "codePostal": "67290", + "codeCommune": "67538", + "libelleAcheminement": "WINGEN SUR MODER", + "nomCommune": "WINGEN SUR MODER" }, { - "codePostal": "07190", - "codeCommune": "07286", - "libelleAcheminement": "ST PIERREVILLE", - "nomCommune": "ST PIERREVILLE" + "codePostal": "57220", + "codeCommune": "57519", + "libelleAcheminement": "OBERVISSE", + "nomCommune": "OBERVISSE" }, { - "codePostal": "64120", - "codeCommune": "64105", - "libelleAcheminement": "BEGUIOS", - "nomCommune": "BEGUIOS" + "codePostal": "59181", + "codeCommune": "59581", + "libelleAcheminement": "STEENWERCK", + "nomCommune": "STEENWERCK" }, { - "codePostal": "45120", - "codeCommune": "45061", - "libelleAcheminement": "CEPOY", - "nomCommune": "CEPOY" + "codePostal": "68420", + "codeCommune": "68123", + "libelleAcheminement": "HATTSTATT", + "nomCommune": "HATTSTATT" }, { - "codePostal": "38190", - "codeCommune": "38175", - "libelleAcheminement": "FROGES", - "nomCommune": "FROGES" + "codePostal": "14670", + "codeCommune": "14640", + "libelleAcheminement": "ST PAIR", + "nomCommune": "ST PAIR" }, { - "codePostal": "07130", - "codeCommune": "07293", - "libelleAcheminement": "ST ROMAIN DE LERPS", - "nomCommune": "ST ROMAIN DE LERPS" + "codePostal": "67170", + "codeCommune": "67539", + "libelleAcheminement": "WINGERSHEIM LES QUATRE BANS", + "nomCommune": "WINGERSHEIM LES QUATRE BANS" }, { - "codePostal": "64270", - "codeCommune": "64108", - "libelleAcheminement": "BELLOCQ", - "nomCommune": "BELLOCQ" + "codePostal": "57590", + "codeCommune": "57525", + "libelleAcheminement": "ORIOCOURT", + "nomCommune": "ORIOCOURT" }, { - "codePostal": "45300", - "codeCommune": "45065", - "libelleAcheminement": "CESARVILLE DOSSAINVILLE", - "nomCommune": "CESARVILLE DOSSAINVILLE" + "codePostal": "59189", + "codeCommune": "59590", + "libelleAcheminement": "THIENNES", + "nomCommune": "THIENNES" }, { - "codePostal": "38290", - "codeCommune": "38176", - "libelleAcheminement": "FRONTONAS", - "nomCommune": "FRONTONAS" + "codePostal": "68600", + "codeCommune": "68130", + "libelleAcheminement": "HEITEREN", + "nomCommune": "HEITEREN" }, { - "codePostal": "07190", - "codeCommune": "07295", - "libelleAcheminement": "ST SAUVEUR DE MONTAGUT", - "nomCommune": "ST SAUVEUR DE MONTAGUT" + "codePostal": "14130", + "codeCommune": "14644", + "libelleAcheminement": "ST PHILBERT DES CHAMPS", + "nomCommune": "ST PHILBERT DES CHAMPS" }, { - "codePostal": "64270", - "codeCommune": "64113", - "libelleAcheminement": "BERGOUEY VIELLENAVE", - "nomCommune": "BERGOUEY VIELLENAVE" + "codePostal": "67370", + "codeCommune": "67542", + "libelleAcheminement": "WINTZENHEIM KOCHERSBERG", + "nomCommune": "WINTZENHEIM KOCHERSBERG" }, { - "codePostal": "45400", - "codeCommune": "45072", - "libelleAcheminement": "CHANTEAU", - "nomCommune": "CHANTEAU" + "codePostal": "57970", + "codeCommune": "57531", + "libelleAcheminement": "OUDRENNE", + "nomCommune": "OUDRENNE" }, { - "codePostal": "38140", - "codeCommune": "38194", - "libelleAcheminement": "IZEAUX", - "nomCommune": "IZEAUX" + "codePostal": "59239", + "codeCommune": "59592", + "libelleAcheminement": "THUMERIES", + "nomCommune": "THUMERIES" }, { - "codePostal": "07440", - "codeCommune": "07297", - "libelleAcheminement": "ST SYLVESTRE", - "nomCommune": "ST SYLVESTRE" + "codePostal": "68180", + "codeCommune": "68145", + "libelleAcheminement": "HORBOURG WIHR", + "nomCommune": "HORBOURG WIHR" }, { - "codePostal": "64150", - "codeCommune": "64117", - "libelleAcheminement": "BESINGRAND", - "nomCommune": "BESINGRAND" + "codePostal": "14700", + "codeCommune": "14646", + "libelleAcheminement": "ST PIERRE CANIVET", + "nomCommune": "ST PIERRE CANIVET" }, { - "codePostal": "45310", - "codeCommune": "45074", - "libelleAcheminement": "LA CHAPELLE ONZERAIN", - "nomCommune": "LA CHAPELLE ONZERAIN" + "codePostal": "67670", + "codeCommune": "67546", + "libelleAcheminement": "WITTERSHEIM", + "nomCommune": "WITTERSHEIM" }, { - "codePostal": "38930", - "codeCommune": "38204", - "libelleAcheminement": "LALLEY", - "nomCommune": "LALLEY" + "codePostal": "57230", + "codeCommune": "57541", + "libelleAcheminement": "PHILIPPSBOURG", + "nomCommune": "PHILIPPSBOURG" }, { - "codePostal": "07410", - "codeCommune": "07301", - "libelleAcheminement": "ST VICTOR", - "nomCommune": "ST VICTOR" + "codePostal": "59141", + "codeCommune": "59595", + "libelleAcheminement": "THUN ST MARTIN", + "nomCommune": "THUN ST MARTIN" }, { - "codePostal": "64120", - "codeCommune": "64120", - "libelleAcheminement": "BEYRIE SUR JOYEUSE", - "nomCommune": "BEYRIE SUR JOYEUSE" + "codePostal": "68150", + "codeCommune": "68147", + "libelleAcheminement": "HUNAWIHR", + "nomCommune": "HUNAWIHR" }, { - "codePostal": "45270", - "codeCommune": "45078", - "libelleAcheminement": "CHAPELON", - "nomCommune": "CHAPELON" + "codePostal": "14700", + "codeCommune": "14649", + "libelleAcheminement": "ST PIERRE DU BU", + "nomCommune": "ST PIERRE DU BU" }, { - "codePostal": "38350", - "codeCommune": "38207", - "libelleAcheminement": "LAVALDENS", - "nomCommune": "LAVALDENS" + "codePostal": "67370", + "codeCommune": "67548", + "libelleAcheminement": "WIWERSHEIM", + "nomCommune": "WIWERSHEIM" }, { - "codePostal": "07110", - "codeCommune": "07307", - "libelleAcheminement": "SANILHAC", - "nomCommune": "SANILHAC" + "codePostal": "57220", + "codeCommune": "57542", + "libelleAcheminement": "PIBLANGE", + "nomCommune": "PIBLANGE" }, { - "codePostal": "64340", - "codeCommune": "64140", - "libelleAcheminement": "BOUCAU", - "nomCommune": "BOUCAU" + "codePostal": "59390", + "codeCommune": "59598", + "libelleAcheminement": "TOUFFLERS", + "nomCommune": "TOUFFLERS" }, { - "codePostal": "45260", - "codeCommune": "45084", - "libelleAcheminement": "CHATENOY", - "nomCommune": "CHATENOY" + "codePostal": "68720", + "codeCommune": "68152", + "libelleAcheminement": "ILLFURTH", + "nomCommune": "ILLFURTH" }, { - "codePostal": "38220", - "codeCommune": "38212", - "libelleAcheminement": "LIVET ET GAVET", - "nomCommune": "LIVET ET GAVET" + "codePostal": "14170", + "codeCommune": "14654", + "libelleAcheminement": "ST PIERRE EN AUGE", + "nomCommune": "ST PIERRE EN AUGE" }, { - "codePostal": "07290", - "codeCommune": "07309", - "libelleAcheminement": "SATILLIEU", - "nomCommune": "SATILLIEU" + "codePostal": "67202", + "codeCommune": "67551", + "libelleAcheminement": "WOLFISHEIM", + "nomCommune": "WOLFISHEIM" }, { - "codePostal": "64230", - "codeCommune": "64142", - "libelleAcheminement": "BOUGARBER", - "nomCommune": "BOUGARBER" + "codePostal": "57870", + "codeCommune": "57544", + "libelleAcheminement": "PLAINE DE WALSCH", + "nomCommune": "PLAINE DE WALSCH" }, { - "codePostal": "45430", - "codeCommune": "45089", - "libelleAcheminement": "CHECY", - "nomCommune": "CHECY" + "codePostal": "59229", + "codeCommune": "59605", + "libelleAcheminement": "UXEM", + "nomCommune": "UXEM" }, { - "codePostal": "38220", - "codeCommune": "38212", - "libelleAcheminement": "LIVET ET GAVET", - "nomCommune": "LIVET ET GAVET" + "codePostal": "68500", + "codeCommune": "68156", + "libelleAcheminement": "ISSENHEIM", + "nomCommune": "ISSENHEIM" }, { - "codePostal": "07240", - "codeCommune": "07314", - "libelleAcheminement": "SILHAC", - "nomCommune": "SILHAC" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "64800", - "codeCommune": "64145", - "libelleAcheminement": "BOURDETTES", - "nomCommune": "BOURDETTES" + "codePostal": "68600", + "codeCommune": "68001", + "libelleAcheminement": "ALGOLSHEIM", + "nomCommune": "ALGOLSHEIM" }, { - "codePostal": "45530", - "codeCommune": "45101", - "libelleAcheminement": "COMBREUX", - "nomCommune": "COMBREUX" + "codePostal": "57380", + "codeCommune": "57549", + "libelleAcheminement": "PONTPIERRE", + "nomCommune": "PONTPIERRE" }, { - "codePostal": "38260", - "codeCommune": "38218", - "libelleAcheminement": "MARCILLOLES", - "nomCommune": "MARCILLOLES" + "codePostal": "59213", + "codeCommune": "59608", + "libelleAcheminement": "VENDEGIES SUR ECAILLON", + "nomCommune": "VENDEGIES SUR ECAILLON" }, { - "codePostal": "07340", - "codeCommune": "07317", - "libelleAcheminement": "TALENCIEUX", - "nomCommune": "TALENCIEUX" + "codePostal": "68500", + "codeCommune": "68159", + "libelleAcheminement": "JUNGHOLTZ", + "nomCommune": "JUNGHOLTZ" }, { - "codePostal": "64240", - "codeCommune": "64147", - "libelleAcheminement": "BRISCOUS", - "nomCommune": "BRISCOUS" + "codePostal": "14380", + "codeCommune": "14658", + "libelleAcheminement": "NOUES DE SIENNE", + "nomCommune": "NOUES DE SIENNE" }, { - "codePostal": "45300", - "codeCommune": "45111", - "libelleAcheminement": "COURCY AUX LOGES", - "nomCommune": "COURCY AUX LOGES" + "codePostal": "68280", + "codeCommune": "68007", + "libelleAcheminement": "ANDOLSHEIM", + "nomCommune": "ANDOLSHEIM" }, { - "codePostal": "38350", - "codeCommune": "38224", - "libelleAcheminement": "MAYRES SAVEL", - "nomCommune": "MAYRES SAVEL" + "codePostal": "57170", + "codeCommune": "57558", + "libelleAcheminement": "PUTTIGNY", + "nomCommune": "PUTTIGNY" }, { - "codePostal": "07510", - "codeCommune": "07326", - "libelleAcheminement": "USCLADES ET RIEUTORD", - "nomCommune": "USCLADES ET RIEUTORD" + "codePostal": "59690", + "codeCommune": "59616", + "libelleAcheminement": "VIEUX CONDE", + "nomCommune": "VIEUX CONDE" }, { - "codePostal": "64800", - "codeCommune": "64148", - "libelleAcheminement": "BRUGES CAPBIS MIFAGET", - "nomCommune": "BRUGES CAPBIS MIFAGET" + "codePostal": "68240", + "codeCommune": "68162", + "libelleAcheminement": "KAYSERSBERG VIGNOBLE", + "nomCommune": "KAYSERSBERG VIGNOBLE" }, { - "codePostal": "45320", - "codeCommune": "45113", - "libelleAcheminement": "COURTEMAUX", - "nomCommune": "COURTEMAUX" + "codePostal": "14250", + "codeCommune": "14661", + "libelleAcheminement": "ST VAAST SUR SEULLES", + "nomCommune": "ST VAAST SUR SEULLES" }, { - "codePostal": "38240", - "codeCommune": "38229", - "libelleAcheminement": "MEYLAN", - "nomCommune": "MEYLAN" + "codePostal": "68280", + "codeCommune": "68008", + "libelleAcheminement": "APPENWIHR", + "nomCommune": "APPENWIHR" }, { - "codePostal": "07150", - "codeCommune": "07330", - "libelleAcheminement": "VALLON PONT D ARC", - "nomCommune": "VALLON PONT D ARC" + "codePostal": "57550", + "codeCommune": "57570", + "libelleAcheminement": "REMERING", + "nomCommune": "REMERING" }, { - "codePostal": "64800", - "codeCommune": "64148", - "libelleAcheminement": "BRUGES CAPBIS MIFAGET", - "nomCommune": "BRUGES CAPBIS MIFAGET" + "codePostal": "59530", + "codeCommune": "59619", + "libelleAcheminement": "VILLEREAU", + "nomCommune": "VILLEREAU" }, { - "codePostal": "45420", - "codeCommune": "45120", - "libelleAcheminement": "DAMMARIE EN PUISAYE", - "nomCommune": "DAMMARIE EN PUISAYE" + "codePostal": "68680", + "codeCommune": "68163", + "libelleAcheminement": "KEMBS", + "nomCommune": "KEMBS" }, { - "codePostal": "38440", - "codeCommune": "38231", - "libelleAcheminement": "MEYRIEU LES ETANGS", - "nomCommune": "MEYRIEU LES ETANGS" + "codePostal": "14170", + "codeCommune": "14669", + "libelleAcheminement": "SASSY", + "nomCommune": "SASSY" }, { - "codePostal": "07240", - "codeCommune": "07338", - "libelleAcheminement": "VERNOUX EN VIVARAIS", - "nomCommune": "VERNOUX EN VIVARAIS" + "codePostal": "68700", + "codeCommune": "68011", + "libelleAcheminement": "ASPACH LE BAS", + "nomCommune": "ASPACH LE BAS" }, { - "codePostal": "64410", - "codeCommune": "64158", - "libelleAcheminement": "CABIDOS", - "nomCommune": "CABIDOS" + "codePostal": "57570", + "codeCommune": "57574", + "libelleAcheminement": "BASSE RENTGEN", + "nomCommune": "BASSE RENTGEN" }, { - "codePostal": "45370", - "codeCommune": "45130", - "libelleAcheminement": "DRY", - "nomCommune": "DRY" + "codePostal": "59231", + "codeCommune": "59625", + "libelleAcheminement": "VILLERS PLOUICH", + "nomCommune": "VILLERS PLOUICH" }, { - "codePostal": "38440", - "codeCommune": "38232", - "libelleAcheminement": "MEYSSIEZ", - "nomCommune": "MEYSSIEZ" + "codePostal": "68480", + "codeCommune": "68165", + "libelleAcheminement": "KIFFIS", + "nomCommune": "KIFFIS" }, { - "codePostal": "07690", - "codeCommune": "07342", - "libelleAcheminement": "VILLEVOCANCE", - "nomCommune": "VILLEVOCANCE" + "codePostal": "14350", + "codeCommune": "14672", + "libelleAcheminement": "VAL DE DROME", + "nomCommune": "VAL DE DROME" }, { - "codePostal": "64470", - "codeCommune": "64162", - "libelleAcheminement": "CAMOU CIHIGUE", - "nomCommune": "CAMOU CIHIGUE" + "codePostal": "68210", + "codeCommune": "68018", + "libelleAcheminement": "BALSCHWILLER", + "nomCommune": "BALSCHWILLER" }, { - "codePostal": "45340", - "codeCommune": "45132", - "libelleAcheminement": "EGRY", - "nomCommune": "EGRY" + "codePostal": "57645", + "codeCommune": "57575", + "libelleAcheminement": "RETONFEY", + "nomCommune": "RETONFEY" }, { - "codePostal": "38450", - "codeCommune": "38235", - "libelleAcheminement": "MIRIBEL LANCHATRE", - "nomCommune": "MIRIBEL LANCHATRE" + "codePostal": "59530", + "codeCommune": "59626", + "libelleAcheminement": "VILLERS POL", + "nomCommune": "VILLERS POL" }, { - "codePostal": "07340", - "codeCommune": "07344", - "libelleAcheminement": "VINZIEUX", - "nomCommune": "VINZIEUX" + "codePostal": "68220", + "codeCommune": "68168", + "libelleAcheminement": "KNOERINGUE", + "nomCommune": "KNOERINGUE" }, { - "codePostal": "64190", - "codeCommune": "64176", - "libelleAcheminement": "CASTETBON", - "nomCommune": "CASTETBON" + "codePostal": "14220", + "codeCommune": "14689", + "libelleAcheminement": "THURY HARCOURT LE HOM", + "nomCommune": "THURY HARCOURT LE HOM" }, { - "codePostal": "45300", - "codeCommune": "45133", - "libelleAcheminement": "ENGENVILLE", - "nomCommune": "ENGENVILLE" + "codePostal": "68870", + "codeCommune": "68021", + "libelleAcheminement": "BARTENHEIM", + "nomCommune": "BARTENHEIM" }, { - "codePostal": "38380", - "codeCommune": "38236", - "libelleAcheminement": "MIRIBEL LES ECHELLES", - "nomCommune": "MIRIBEL LES ECHELLES" + "codePostal": "57130", + "codeCommune": "57578", + "libelleAcheminement": "REZONVILLE VIONVILLE", + "nomCommune": "REZONVILLE VIONVILLE" }, { - "codePostal": "07220", - "codeCommune": "07346", - "libelleAcheminement": "VIVIERS", - "nomCommune": "VIVIERS" + "codePostal": "59261", + "codeCommune": "59630", + "libelleAcheminement": "WAHAGNIES", + "nomCommune": "WAHAGNIES" }, { - "codePostal": "64190", - "codeCommune": "64178", - "libelleAcheminement": "CASTETNAU CAMBLONG", - "nomCommune": "CASTETNAU CAMBLONG" + "codePostal": "68910", + "codeCommune": "68173", + "libelleAcheminement": "LABAROCHE", + "nomCommune": "LABAROCHE" }, { - "codePostal": "45480", - "codeCommune": "45135", - "libelleAcheminement": "ERCEVILLE", - "nomCommune": "ERCEVILLE" + "codePostal": "14220", + "codeCommune": "14689", + "libelleAcheminement": "THURY HARCOURT LE HOM", + "nomCommune": "THURY HARCOURT LE HOM" }, { - "codePostal": "38110", - "codeCommune": "38246", - "libelleAcheminement": "MONTAGNIEU", - "nomCommune": "MONTAGNIEU" + "codePostal": "68126", + "codeCommune": "68026", + "libelleAcheminement": "BENNWIHR MITTELWIHR", + "nomCommune": "BENNWIHR" }, { - "codePostal": "07800", - "codeCommune": "07349", - "libelleAcheminement": "LA VOULTE SUR RHONE", - "nomCommune": "LA VOULTE SUR RHONE" + "codePostal": "57130", + "codeCommune": "57578", + "libelleAcheminement": "REZONVILLE VIONVILLE", + "nomCommune": "REZONVILLE VIONVILLE" }, { - "codePostal": "64490", - "codeCommune": "64185", - "libelleAcheminement": "CETTE EYGUN", - "nomCommune": "CETTE EYGUN" + "codePostal": "59190", + "codeCommune": "59634", + "libelleAcheminement": "WALLON CAPPEL", + "nomCommune": "WALLON CAPPEL" }, { - "codePostal": "45150", - "codeCommune": "45144", - "libelleAcheminement": "FEROLLES", - "nomCommune": "FEROLLES" + "codePostal": "68610", + "codeCommune": "68177", + "libelleAcheminement": "LAUTENBACH", + "nomCommune": "LAUTENBACH" }, { - "codePostal": "38330", - "codeCommune": "38249", - "libelleAcheminement": "MONTBONNOT ST MARTIN", - "nomCommune": "MONTBONNOT ST MARTIN" + "codePostal": "14250", + "codeCommune": "14692", + "libelleAcheminement": "TILLY SUR SEULLES", + "nomCommune": "TILLY SUR SEULLES" }, { - "codePostal": "08300", - "codeCommune": "08001", - "libelleAcheminement": "ACY ROMANCE", - "nomCommune": "ACY ROMANCE" + "codePostal": "68630", + "codeCommune": "68026", + "libelleAcheminement": "BENNWIHR MITTELWIHR", + "nomCommune": "BENNWIHR" }, { - "codePostal": "64500", - "codeCommune": "64189", - "libelleAcheminement": "CIBOURE", - "nomCommune": "CIBOURE" + "codePostal": "57510", + "codeCommune": "57581", + "libelleAcheminement": "RICHELING", + "nomCommune": "RICHELING" }, { - "codePostal": "45310", - "codeCommune": "45152", - "libelleAcheminement": "GEMIGNY", - "nomCommune": "GEMIGNY" + "codePostal": "59870", + "codeCommune": "59637", + "libelleAcheminement": "WANDIGNIES HAMAGE", + "nomCommune": "WANDIGNIES HAMAGE" }, { - "codePostal": "38220", - "codeCommune": "38252", - "libelleAcheminement": "MONTCHABOUD", - "nomCommune": "MONTCHABOUD" + "codePostal": "68610", + "codeCommune": "68178", + "libelleAcheminement": "LAUTENBACHZELL", + "nomCommune": "LAUTENBACHZELL" + }, + { + "codePostal": "14800", + "codeCommune": "14699", + "libelleAcheminement": "TOUQUES", + "nomCommune": "TOUQUES" }, { - "codePostal": "08090", - "codeCommune": "08003", - "libelleAcheminement": "AIGLEMONT", - "nomCommune": "AIGLEMONT" + "codePostal": "68730", + "codeCommune": "68042", + "libelleAcheminement": "BLOTZHEIM", + "nomCommune": "BLOTZHEIM" }, { - "codePostal": "64330", - "codeCommune": "64192", - "libelleAcheminement": "CONCHEZ DE BEARN", - "nomCommune": "CONCHEZ DE BEARN" + "codePostal": "57270", + "codeCommune": "57582", + "libelleAcheminement": "RICHEMONT", + "nomCommune": "RICHEMONT" }, { - "codePostal": "45390", - "codeCommune": "45159", - "libelleAcheminement": "GRANGERMONT", - "nomCommune": "GRANGERMONT" + "codePostal": "59144", + "codeCommune": "59639", + "libelleAcheminement": "WARGNIES LE GRAND", + "nomCommune": "WARGNIES LE GRAND" }, { - "codePostal": "38860", - "codeCommune": "38253", - "libelleAcheminement": "LES DEUX ALPES", - "nomCommune": "LES DEUX ALPES" + "codePostal": "68290", + "codeCommune": "68179", + "libelleAcheminement": "LAUW", + "nomCommune": "LAUW" }, { - "codePostal": "08300", - "codeCommune": "08008", - "libelleAcheminement": "AMAGNE", - "nomCommune": "AMAGNE" + "codePostal": "14800", + "codeCommune": "14701", + "libelleAcheminement": "TOURGEVILLE", + "nomCommune": "TOURGEVILLE" }, { - "codePostal": "64160", - "codeCommune": "64194", - "libelleAcheminement": "COSLEDAA LUBE BOAST", - "nomCommune": "COSLEDAA LUBE BOAST" + "codePostal": "68650", + "codeCommune": "68044", + "libelleAcheminement": "LE BONHOMME", + "nomCommune": "LE BONHOMME" }, { - "codePostal": "45140", - "codeCommune": "45169", - "libelleAcheminement": "INGRE", - "nomCommune": "INGRE" + "codePostal": "57570", + "codeCommune": "57588", + "libelleAcheminement": "RODEMACK", + "nomCommune": "RODEMACK" }, { - "codePostal": "38120", - "codeCommune": "38258", - "libelleAcheminement": "MONT ST MARTIN", - "nomCommune": "MONT ST MARTIN" + "codePostal": "59670", + "codeCommune": "59655", + "libelleAcheminement": "WEMAERS CAPPEL", + "nomCommune": "WEMAERS CAPPEL" }, { - "codePostal": "08130", - "codeCommune": "08010", - "libelleAcheminement": "AMBLY FLEURY", - "nomCommune": "AMBLY FLEURY" + "codePostal": "68480", + "codeCommune": "68186", + "libelleAcheminement": "LIGSDORF", + "nomCommune": "LIGSDORF" }, { - "codePostal": "64120", - "codeCommune": "64202", - "libelleAcheminement": "DOMEZAIN BERRAUTE", - "nomCommune": "DOMEZAIN BERRAUTE" + "codePostal": "14330", + "codeCommune": "14705", + "libelleAcheminement": "TOURNIERES", + "nomCommune": "TOURNIERES" }, { - "codePostal": "45150", - "codeCommune": "45173", - "libelleAcheminement": "JARGEAU", - "nomCommune": "JARGEAU" + "codePostal": "68870", + "codeCommune": "68054", + "libelleAcheminement": "BRINCKHEIM", + "nomCommune": "BRINCKHEIM" }, { - "codePostal": "38122", - "codeCommune": "38259", - "libelleAcheminement": "MONTSEVEROUX", - "nomCommune": "MONTSEVEROUX" + "codePostal": "57860", + "codeCommune": "57593", + "libelleAcheminement": "RONCOURT", + "nomCommune": "RONCOURT" }, { - "codePostal": "08310", - "codeCommune": "08014", - "libelleAcheminement": "ANNELLES", - "nomCommune": "ANNELLES" + "codePostal": "59380", + "codeCommune": "59657", + "libelleAcheminement": "WEST CAPPEL", + "nomCommune": "WEST CAPPEL" }, { - "codePostal": "64440", - "codeCommune": "64204", - "libelleAcheminement": "EAUX BONNES", - "nomCommune": "EAUX BONNES" + "codePostal": "68460", + "codeCommune": "68195", + "libelleAcheminement": "LUTTERBACH", + "nomCommune": "LUTTERBACH" }, { - "codePostal": "45330", - "codeCommune": "45191", - "libelleAcheminement": "LE MALESHERBOIS", - "nomCommune": "LE MALESHERBOIS" + "codePostal": "14360", + "codeCommune": "14715", + "libelleAcheminement": "TROUVILLE SUR MER", + "nomCommune": "TROUVILLE SUR MER" }, { - "codePostal": "38460", - "codeCommune": "38260", - "libelleAcheminement": "MORAS", - "nomCommune": "MORAS" + "codePostal": "68440", + "codeCommune": "68055", + "libelleAcheminement": "BRUEBACH", + "nomCommune": "BRUEBACH" }, { - "codePostal": "08290", - "codeCommune": "08016", - "libelleAcheminement": "AOUSTE", - "nomCommune": "AOUSTE" + "codePostal": "57320", + "codeCommune": "57610", + "libelleAcheminement": "ST FRANCOIS LACROIX", + "nomCommune": "ST FRANCOIS LACROIX" }, { - "codePostal": "64490", - "codeCommune": "64206", - "libelleAcheminement": "ESCOT", - "nomCommune": "ESCOT" + "codePostal": "59470", + "codeCommune": "59663", + "libelleAcheminement": "WORMHOUT", + "nomCommune": "WORMHOUT" }, { - "codePostal": "45430", - "codeCommune": "45194", - "libelleAcheminement": "MARDIE", - "nomCommune": "MARDIE" + "codePostal": "68510", + "codeCommune": "68197", + "libelleAcheminement": "MAGSTATT LE BAS", + "nomCommune": "MAGSTATT LE BAS" }, { - "codePostal": "38260", - "codeCommune": "38284", - "libelleAcheminement": "ORNACIEUX BALBINS", - "nomCommune": "ORNACIEUX BALBINS" + "codePostal": "14340", + "codeCommune": "14723", + "libelleAcheminement": "VALSEME", + "nomCommune": "VALSEME" }, { - "codePostal": "08380", - "codeCommune": "08030", - "libelleAcheminement": "AUGE", - "nomCommune": "AUGE" + "codePostal": "68520", + "codeCommune": "68059", + "libelleAcheminement": "BURNHAUPT LE BAS", + "nomCommune": "BURNHAUPT LE BAS" }, { - "codePostal": "64160", - "codeCommune": "64208", - "libelleAcheminement": "ESCOUBES", - "nomCommune": "ESCOUBES" + "codePostal": "57130", + "codeCommune": "57624", + "libelleAcheminement": "STE RUFFINE", + "nomCommune": "STE RUFFINE" }, { - "codePostal": "45430", - "codeCommune": "45194", - "libelleAcheminement": "MARDIE", - "nomCommune": "MARDIE" + "codePostal": "60480", + "codeCommune": "60003", + "libelleAcheminement": "ABBEVILLE ST LUCIEN", + "nomCommune": "ABBEVILLE ST LUCIEN" }, { - "codePostal": "38690", - "codeCommune": "38287", - "libelleAcheminement": "OYEU", - "nomCommune": "OYEU" + "codePostal": "68380", + "codeCommune": "68204", + "libelleAcheminement": "METZERAL", + "nomCommune": "METZERAL" }, { - "codePostal": "08240", - "codeCommune": "08033", - "libelleAcheminement": "AUTHE", - "nomCommune": "AUTHE" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "64420", - "codeCommune": "64211", - "libelleAcheminement": "ESLOURENTIES DABAN", - "nomCommune": "ESLOURENTIES DABAN" + "codePostal": "68700", + "codeCommune": "68063", + "libelleAcheminement": "CERNAY", + "nomCommune": "CERNAY" }, { - "codePostal": "45370", - "codeCommune": "45196", - "libelleAcheminement": "MAREAU AUX PRES", - "nomCommune": "MAREAU AUX PRES" + "codePostal": "57530", + "codeCommune": "57627", + "libelleAcheminement": "SANRY SUR NIED", + "nomCommune": "SANRY SUR NIED" }, { - "codePostal": "38390", - "codeCommune": "38295", - "libelleAcheminement": "PARMILIEU", - "nomCommune": "PARMILIEU" + "codePostal": "60600", + "codeCommune": "60007", + "libelleAcheminement": "AGNETZ", + "nomCommune": "AGNETZ" }, { - "codePostal": "08190", - "codeCommune": "08044", - "libelleAcheminement": "BALHAM", - "nomCommune": "BALHAM" + "codePostal": "68210", + "codeCommune": "68214", + "libelleAcheminement": "MONTREUX JEUNE", + "nomCommune": "MONTREUX JEUNE" }, { - "codePostal": "64220", - "codeCommune": "64218", - "libelleAcheminement": "ESTERENCUBY", - "nomCommune": "ESTERENCUBY" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "45220", - "codeCommune": "45199", - "libelleAcheminement": "MELLEROY", - "nomCommune": "MELLEROY" + "codePostal": "68480", + "codeCommune": "68075", + "libelleAcheminement": "DURMENACH", + "nomCommune": "DURMENACH" }, { - "codePostal": "38710", - "codeCommune": "38321", - "libelleAcheminement": "PREBOIS", - "nomCommune": "PREBOIS" + "codePostal": "57400", + "codeCommune": "57637", + "libelleAcheminement": "SCHNECKENBUSCH", + "nomCommune": "SCHNECKENBUSCH" }, { - "codePostal": "08240", - "codeCommune": "08052", - "libelleAcheminement": "BAYONVILLE", - "nomCommune": "BAYONVILLE" + "codePostal": "60600", + "codeCommune": "60008", + "libelleAcheminement": "AIRION", + "nomCommune": "AIRION" }, { - "codePostal": "64290", - "codeCommune": "64219", - "libelleAcheminement": "ESTIALESCQ", - "nomCommune": "ESTIALESCQ" + "codePostal": "68640", + "codeCommune": "68221", + "libelleAcheminement": "MUESPACH", + "nomCommune": "MUESPACH" }, { - "codePostal": "45240", - "codeCommune": "45200", - "libelleAcheminement": "MENESTREAU EN VILLETTE", - "nomCommune": "MENESTREAU EN VILLETTE" + "codePostal": "14410", + "codeCommune": "14726", + "libelleAcheminement": "VALDALLIERE", + "nomCommune": "VALDALLIERE" }, { - "codePostal": "38420", - "codeCommune": "38334", - "libelleAcheminement": "REVEL", - "nomCommune": "REVEL" + "codePostal": "68420", + "codeCommune": "68078", + "libelleAcheminement": "EGUISHEIM", + "nomCommune": "EGUISHEIM" }, { - "codePostal": "08140", - "codeCommune": "08053", - "libelleAcheminement": "BAZEILLES", - "nomCommune": "BAZEILLES" + "codePostal": "57160", + "codeCommune": "57642", + "libelleAcheminement": "SCY CHAZELLES", + "nomCommune": "SCY CHAZELLES" }, { - "codePostal": "64400", - "codeCommune": "64224", - "libelleAcheminement": "EYSUS", - "nomCommune": "EYSUS" + "codePostal": "60300", + "codeCommune": "60022", + "libelleAcheminement": "APREMONT", + "nomCommune": "APREMONT" }, { - "codePostal": "45210", - "codeCommune": "45201", - "libelleAcheminement": "MERINVILLE", - "nomCommune": "MERINVILLE" + "codePostal": "68380", + "codeCommune": "68223", + "libelleAcheminement": "MUHLBACH SUR MUNSTER", + "nomCommune": "MUHLBACH SUR MUNSTER" }, { - "codePostal": "38370", - "codeCommune": "38340", - "libelleAcheminement": "LES ROCHES DE CONDRIEU", - "nomCommune": "LES ROCHES DE CONDRIEU" + "codePostal": "14800", + "codeCommune": "14731", + "libelleAcheminement": "VAUVILLE", + "nomCommune": "VAUVILLE" }, { - "codePostal": "08240", - "codeCommune": "08057", - "libelleAcheminement": "BELLEVILLE ET CHATILLON SUR BAR", - "nomCommune": "BELLEVILLE ET CHATILLON SUR BAR" + "codePostal": "68130", + "codeCommune": "68080", + "libelleAcheminement": "EMLINGEN", + "nomCommune": "EMLINGEN" }, { - "codePostal": "64160", - "codeCommune": "64227", - "libelleAcheminement": "GABASTON", - "nomCommune": "GABASTON" + "codePostal": "57180", + "codeCommune": "57666", + "libelleAcheminement": "TERVILLE", + "nomCommune": "TERVILLE" }, { - "codePostal": "45230", - "codeCommune": "45210", - "libelleAcheminement": "MONTBOUY", - "nomCommune": "MONTBOUY" + "codePostal": "60190", + "codeCommune": "60040", + "libelleAcheminement": "BAILLEUL LE SOC", + "nomCommune": "BAILLEUL LE SOC" }, { - "codePostal": "38650", - "codeCommune": "38342", - "libelleAcheminement": "ROISSARD", - "nomCommune": "ROISSARD" + "codePostal": "68140", + "codeCommune": "68226", + "libelleAcheminement": "MUNSTER", + "nomCommune": "MUNSTER" }, { - "codePostal": "08300", - "codeCommune": "08064", - "libelleAcheminement": "BIERMES", - "nomCommune": "BIERMES" + "codePostal": "14400", + "codeCommune": "14732", + "libelleAcheminement": "VAUX SUR AURE", + "nomCommune": "VAUX SUR AURE" }, { - "codePostal": "64220", - "codeCommune": "64229", - "libelleAcheminement": "GAMARTHE", - "nomCommune": "GAMARTHE" + "codePostal": "68720", + "codeCommune": "68081", + "libelleAcheminement": "ST BERNARD", + "nomCommune": "ST BERNARD" }, { - "codePostal": "45170", - "codeCommune": "45214", - "libelleAcheminement": "MONTIGNY", - "nomCommune": "MONTIGNY" + "codePostal": "57385", + "codeCommune": "57668", + "libelleAcheminement": "TETING SUR NIED", + "nomCommune": "TETING SUR NIED" }, { - "codePostal": "38080", - "codeCommune": "38352", - "libelleAcheminement": "ST ALBAN DE ROCHE", - "nomCommune": "ST ALBAN DE ROCHE" + "codePostal": "60930", + "codeCommune": "60041", + "libelleAcheminement": "BAILLEUL SUR THERAIN", + "nomCommune": "BAILLEUL SUR THERAIN" }, { - "codePostal": "08370", - "codeCommune": "08065", - "libelleAcheminement": "BIEVRES", - "nomCommune": "BIEVRES" + "codePostal": "68250", + "codeCommune": "68228", + "libelleAcheminement": "MUNWILLER", + "nomCommune": "MUNWILLER" }, { - "codePostal": "64330", - "codeCommune": "64233", - "libelleAcheminement": "GARLIN", - "nomCommune": "GARLIN" + "codePostal": "14400", + "codeCommune": "14733", + "libelleAcheminement": "VAUX SUR SEULLES", + "nomCommune": "VAUX SUR SEULLES" }, { - "codePostal": "45340", - "codeCommune": "45215", - "libelleAcheminement": "MONTLIARD", - "nomCommune": "MONTLIARD" + "codePostal": "68720", + "codeCommune": "68081", + "libelleAcheminement": "ST BERNARD", + "nomCommune": "ST BERNARD" }, { - "codePostal": "38370", - "codeCommune": "38353", - "libelleAcheminement": "ST ALBAN DU RHONE", - "nomCommune": "ST ALBAN DU RHONE" + "codePostal": "57870", + "codeCommune": "57680", + "libelleAcheminement": "TROISFONTAINES", + "nomCommune": "TROISFONTAINES" }, { - "codePostal": "08310", - "codeCommune": "08066", - "libelleAcheminement": "BIGNICOURT", - "nomCommune": "BIGNICOURT" + "codePostal": "60390", + "codeCommune": "60054", + "libelleAcheminement": "LES HAUTS TALICAN", + "nomCommune": "LES HAUTS TALICAN" }, { - "codePostal": "64160", - "codeCommune": "64239", - "libelleAcheminement": "GERDEREST", - "nomCommune": "GERDEREST" + "codePostal": "68127", + "codeCommune": "68235", + "libelleAcheminement": "NIEDERHERGHEIM", + "nomCommune": "NIEDERHERGHEIM" }, { - "codePostal": "45700", - "codeCommune": "45216", - "libelleAcheminement": "MORMANT SUR VERNISSON", - "nomCommune": "MORMANT SUR VERNISSON" + "codePostal": "14250", + "codeCommune": "14734", + "libelleAcheminement": "VENDES", + "nomCommune": "VENDES" }, { - "codePostal": "38440", - "codeCommune": "38358", - "libelleAcheminement": "STE ANNE SUR GERVONDE", - "nomCommune": "STE ANNE SUR GERVONDE" + "codePostal": "68440", + "codeCommune": "68084", + "libelleAcheminement": "ESCHENTZWILLER", + "nomCommune": "ESCHENTZWILLER" }, { - "codePostal": "08290", - "codeCommune": "08069", - "libelleAcheminement": "BLANCHEFOSSE ET BAY", - "nomCommune": "BLANCHEFOSSE ET BAY" + "codePostal": "57320", + "codeCommune": "57681", + "libelleAcheminement": "TROMBORN", + "nomCommune": "TROMBORN" }, { - "codePostal": "64260", - "codeCommune": "64240", - "libelleAcheminement": "GERE BELESTEN", - "nomCommune": "GERE BELESTEN" + "codePostal": "60400", + "codeCommune": "60055", + "libelleAcheminement": "BEAURAINS LES NOYON", + "nomCommune": "BEAURAINS LES NOYON" }, { - "codePostal": "45210", - "codeCommune": "45222", - "libelleAcheminement": "NARGIS", - "nomCommune": "NARGIS" + "codePostal": "68680", + "codeCommune": "68238", + "libelleAcheminement": "NIFFER", + "nomCommune": "NIFFER" }, { - "codePostal": "38160", - "codeCommune": "38359", - "libelleAcheminement": "ST ANTOINE L ABBAYE", - "nomCommune": "ST ANTOINE L ABBAYE" + "codePostal": "14700", + "codeCommune": "14737", + "libelleAcheminement": "VERSAINVILLE", + "nomCommune": "VERSAINVILLE" }, { - "codePostal": "08260", - "codeCommune": "08071", - "libelleAcheminement": "BLOMBAY", - "nomCommune": "BLOMBAY" + "codePostal": "68640", + "codeCommune": "68087", + "libelleAcheminement": "FELDBACH", + "nomCommune": "FELDBACH" }, { - "codePostal": "64210", - "codeCommune": "64249", - "libelleAcheminement": "GUETHARY", - "nomCommune": "GUETHARY" + "codePostal": "57070", + "codeCommune": "57693", + "libelleAcheminement": "VANTOUX", + "nomCommune": "VANTOUX" }, { - "codePostal": "45390", - "codeCommune": "45225", - "libelleAcheminement": "LA NEUVILLE SUR ESSONNE", - "nomCommune": "LA NEUVILLE SUR ESSONNE" + "codePostal": "60490", + "codeCommune": "60061", + "libelleAcheminement": "BELLOY", + "nomCommune": "BELLOY" }, { - "codePostal": "38690", - "codeCommune": "38380", - "libelleAcheminement": "ST DIDIER DE BIZONNES", - "nomCommune": "ST DIDIER DE BIZONNES" + "codePostal": "68290", + "codeCommune": "68239", + "libelleAcheminement": "OBERBRUCK", + "nomCommune": "OBERBRUCK" }, { - "codePostal": "08120", - "codeCommune": "08081", - "libelleAcheminement": "BOGNY SUR MEUSE", - "nomCommune": "BOGNY SUR MEUSE" + "codePostal": "14610", + "codeCommune": "14758", + "libelleAcheminement": "VILLONS LES BUISSONS", + "nomCommune": "VILLONS LES BUISSONS" }, { - "codePostal": "64130", - "codeCommune": "64268", - "libelleAcheminement": "IDAUX MENDY", - "nomCommune": "IDAUX MENDY" + "codePostal": "68470", + "codeCommune": "68089", + "libelleAcheminement": "FELLERING", + "nomCommune": "FELLERING" }, { - "codePostal": "45510", - "codeCommune": "45226", - "libelleAcheminement": "NEUVY EN SULLIAS", - "nomCommune": "NEUVY EN SULLIAS" + "codePostal": "57170", + "codeCommune": "57702", + "libelleAcheminement": "VAXY", + "nomCommune": "VAXY" }, { - "codePostal": "38330", - "codeCommune": "38397", - "libelleAcheminement": "ST ISMIER", - "nomCommune": "ST ISMIER" + "codePostal": "60350", + "codeCommune": "60064", + "libelleAcheminement": "BERNEUIL SUR AISNE", + "nomCommune": "BERNEUIL SUR AISNE" }, { - "codePostal": "08240", - "codeCommune": "08085", - "libelleAcheminement": "BRIEULLES SUR BAR", - "nomCommune": "BRIEULLES SUR BAR" + "codePostal": "68127", + "codeCommune": "68242", + "libelleAcheminement": "OBERHERGHEIM", + "nomCommune": "OBERHERGHEIM" }, { - "codePostal": "64800", - "codeCommune": "64270", - "libelleAcheminement": "IGON", - "nomCommune": "IGON" + "codePostal": "15380", + "codeCommune": "15006", + "libelleAcheminement": "ANGLARDS DE SALERS", + "nomCommune": "ANGLARDS DE SALERS" }, { - "codePostal": "45340", - "codeCommune": "45228", - "libelleAcheminement": "NIBELLE", - "nomCommune": "NIBELLE" + "codePostal": "68220", + "codeCommune": "68094", + "libelleAcheminement": "FOLGENSBOURG", + "nomCommune": "FOLGENSBOURG" }, { - "codePostal": "38440", - "codeCommune": "38399", - "libelleAcheminement": "ST JEAN DE BOURNAY", - "nomCommune": "ST JEAN DE BOURNAY" + "codePostal": "57370", + "codeCommune": "57703", + "libelleAcheminement": "VECKERSVILLER", + "nomCommune": "VECKERSVILLER" }, { - "codePostal": "08380", - "codeCommune": "08087", - "libelleAcheminement": "BROGNON", - "nomCommune": "BROGNON" + "codePostal": "60490", + "codeCommune": "60071", + "libelleAcheminement": "BIERMONT", + "nomCommune": "BIERMONT" }, { - "codePostal": "64640", - "codeCommune": "64271", - "libelleAcheminement": "IHOLDY", - "nomCommune": "IHOLDY" + "codePostal": "68130", + "codeCommune": "68245", + "libelleAcheminement": "OBERMORSCHWILLER", + "nomCommune": "OBERMORSCHWILLER" }, { - "codePostal": "45100", - "codeCommune": "45234", - "libelleAcheminement": "ORLEANS", - "nomCommune": "ORLEANS" + "codePostal": "15240", + "codeCommune": "15019", + "libelleAcheminement": "BASSIGNAC", + "nomCommune": "BASSIGNAC" }, { - "codePostal": "38110", - "codeCommune": "38401", - "libelleAcheminement": "ST JEAN DE SOUDAIN", - "nomCommune": "ST JEAN DE SOUDAIN" + "codePostal": "68580", + "codeCommune": "68098", + "libelleAcheminement": "FRIESEN", + "nomCommune": "FRIESEN" }, { - "codePostal": "08110", - "codeCommune": "08090", - "libelleAcheminement": "CARIGNAN", - "nomCommune": "CARIGNAN" + "codePostal": "57260", + "codeCommune": "57706", + "libelleAcheminement": "VERGAVILLE", + "nomCommune": "VERGAVILLE" }, { - "codePostal": "64120", - "codeCommune": "64272", - "libelleAcheminement": "ILHARRE", - "nomCommune": "ILHARRE" + "codePostal": "60120", + "codeCommune": "60082", + "libelleAcheminement": "BONNEUIL LES EAUX", + "nomCommune": "BONNEUIL LES EAUX" }, { - "codePostal": "45480", - "codeCommune": "45240", - "libelleAcheminement": "OUTARVILLE", - "nomCommune": "OUTARVILLE" + "codePostal": "68480", + "codeCommune": "68248", + "libelleAcheminement": "OLTINGUE", + "nomCommune": "OLTINGUE" }, { - "codePostal": "38220", - "codeCommune": "38402", - "libelleAcheminement": "ST JEAN DE VAULX", - "nomCommune": "ST JEAN DE VAULX" + "codePostal": "15270", + "codeCommune": "15020", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "08400", - "codeCommune": "08097", - "libelleAcheminement": "CHALLERANGE", - "nomCommune": "CHALLERANGE" + "codePostal": "68510", + "codeCommune": "68103", + "libelleAcheminement": "GEISPITZEN", + "nomCommune": "GEISPITZEN" }, { - "codePostal": "64570", - "codeCommune": "64276", - "libelleAcheminement": "ISSOR", - "nomCommune": "ISSOR" + "codePostal": "57635", + "codeCommune": "57713", + "libelleAcheminement": "VIEUX LIXHEIM", + "nomCommune": "VIEUX LIXHEIM" }, { - "codePostal": "45150", - "codeCommune": "45241", - "libelleAcheminement": "OUVROUER LES CHAMPS", - "nomCommune": "OUVROUER LES CHAMPS" + "codePostal": "60820", + "codeCommune": "60086", + "libelleAcheminement": "BORAN SUR OISE", + "nomCommune": "BORAN SUR OISE" }, { - "codePostal": "38134", - "codeCommune": "38405", - "libelleAcheminement": "ST JOSEPH DE RIVIERE", - "nomCommune": "ST JOSEPH DE RIVIERE" + "codePostal": "68490", + "codeCommune": "68253", + "libelleAcheminement": "OTTMARSHEIM", + "nomCommune": "OTTMARSHEIM" }, { - "codePostal": "08250", - "codeCommune": "08098", - "libelleAcheminement": "CHAMPIGNEULLE", - "nomCommune": "CHAMPIGNEULLE" + "codePostal": "15700", + "codeCommune": "15024", + "libelleAcheminement": "BRAGEAC", + "nomCommune": "BRAGEAC" }, { - "codePostal": "64530", - "codeCommune": "64292", - "libelleAcheminement": "LABATMALE", - "nomCommune": "LABATMALE" + "codePostal": "68500", + "codeCommune": "68112", + "libelleAcheminement": "GUEBWILLER", + "nomCommune": "GUEBWILLER" }, { - "codePostal": "45300", - "codeCommune": "45246", - "libelleAcheminement": "PANNECIERES", - "nomCommune": "PANNECIERES" + "codePostal": "57340", + "codeCommune": "57723", + "libelleAcheminement": "VIRMING", + "nomCommune": "VIRMING" }, { - "codePostal": "38540", - "codeCommune": "38408", - "libelleAcheminement": "ST JUST CHALEYSSIN", - "nomCommune": "ST JUST CHALEYSSIN" + "codePostal": "60540", + "codeCommune": "60088", + "libelleAcheminement": "BORNEL", + "nomCommune": "BORNEL" }, { - "codePostal": "08300", - "codeCommune": "08111", - "libelleAcheminement": "LE CHATELET SUR RETOURNE", - "nomCommune": "LE CHATELET SUR RETOURNE" + "codePostal": "68490", + "codeCommune": "68254", + "libelleAcheminement": "PETIT LANDAU", + "nomCommune": "PETIT LANDAU" }, { - "codePostal": "64110", - "codeCommune": "64315", - "libelleAcheminement": "LAROIN", - "nomCommune": "LAROIN" + "codePostal": "15230", + "codeCommune": "15026", + "libelleAcheminement": "BREZONS", + "nomCommune": "BREZONS" }, { - "codePostal": "45360", - "codeCommune": "45251", - "libelleAcheminement": "PIERREFITTE ES BOIS", - "nomCommune": "PIERREFITTE ES BOIS" + "codePostal": "68130", + "codeCommune": "68124", + "libelleAcheminement": "HAUSGAUEN", + "nomCommune": "HAUSGAUEN" }, { - "codePostal": "38380", - "codeCommune": "38412", - "libelleAcheminement": "ST LAURENT DU PONT", - "nomCommune": "ST LAURENT DU PONT" + "codePostal": "57670", + "codeCommune": "57725", + "libelleAcheminement": "VITTERSBOURG", + "nomCommune": "VITTERSBOURG" }, { - "codePostal": "08220", - "codeCommune": "08113", - "libelleAcheminement": "CHAUMONT PORCIEN", - "nomCommune": "CHAUMONT PORCIEN" + "codePostal": "60240", + "codeCommune": "60090", + "libelleAcheminement": "BOUCONVILLERS", + "nomCommune": "BOUCONVILLERS" }, { - "codePostal": "64120", - "codeCommune": "64319", - "libelleAcheminement": "LARRIBAR SORHAPURU", - "nomCommune": "LARRIBAR SORHAPURU" + "codePostal": "68120", + "codeCommune": "68256", + "libelleAcheminement": "PFASTATT", + "nomCommune": "PFASTATT" }, { - "codePostal": "45290", - "codeCommune": "45257", - "libelleAcheminement": "PRESSIGNY LES PINS", - "nomCommune": "PRESSIGNY LES PINS" + "codePostal": "15130", + "codeCommune": "15028", + "libelleAcheminement": "CARLAT", + "nomCommune": "CARLAT" }, { - "codePostal": "38660", - "codeCommune": "38418", - "libelleAcheminement": "STE MARIE DU MONT", - "nomCommune": "STE MARIE DU MONT" + "codePostal": "68600", + "codeCommune": "68136", + "libelleAcheminement": "HETTENSCHLAG", + "nomCommune": "HETTENSCHLAG" }, { - "codePostal": "08350", - "codeCommune": "08115", - "libelleAcheminement": "CHEMERY CHEHERY", - "nomCommune": "CHEMERY CHEHERY" + "codePostal": "57330", + "codeCommune": "57731", + "libelleAcheminement": "VOLMERANGE LES MINES", + "nomCommune": "VOLMERANGE LES MINES" }, { - "codePostal": "64440", - "codeCommune": "64320", - "libelleAcheminement": "LARUNS", - "nomCommune": "LARUNS" + "codePostal": "60141", + "codeCommune": "60094", + "libelleAcheminement": "BOURSONNE", + "nomCommune": "BOURSONNE" }, { - "codePostal": "45300", - "codeCommune": "45260", - "libelleAcheminement": "RAMOULU", - "nomCommune": "RAMOULU" + "codePostal": "68510", + "codeCommune": "68265", + "libelleAcheminement": "RANTZWILLER", + "nomCommune": "RANTZWILLER" }, { - "codePostal": "38400", - "codeCommune": "38421", - "libelleAcheminement": "ST MARTIN D HERES", - "nomCommune": "ST MARTIN D HERES" + "codePostal": "15290", + "codeCommune": "15030", + "libelleAcheminement": "CAYROLS", + "nomCommune": "CAYROLS" }, { - "codePostal": "08450", - "codeCommune": "08115", - "libelleAcheminement": "CHEMERY CHEHERY", - "nomCommune": "CHEMERY CHEHERY" + "codePostal": "68720", + "codeCommune": "68141", + "libelleAcheminement": "HOCHSTATT", + "nomCommune": "HOCHSTATT" }, { - "codePostal": "64450", - "codeCommune": "64321", - "libelleAcheminement": "LASCLAVERIES", - "nomCommune": "LASCLAVERIES" + "codePostal": "57940", + "codeCommune": "57733", + "libelleAcheminement": "VOLSTROFF", + "nomCommune": "VOLSTROFF" }, { - "codePostal": "45600", - "codeCommune": "45268", - "libelleAcheminement": "ST AIGNAN LE JAILLARD", - "nomCommune": "ST AIGNAN LE JAILLARD" + "codePostal": "60220", + "codeCommune": "60098", + "libelleAcheminement": "BOUVRESSE", + "nomCommune": "BOUVRESSE" }, { - "codePostal": "38650", - "codeCommune": "38429", - "libelleAcheminement": "ST MICHEL LES PORTES", - "nomCommune": "ST MICHEL LES PORTES" + "codePostal": "68950", + "codeCommune": "68267", + "libelleAcheminement": "REININGUE", + "nomCommune": "REININGUE" }, { - "codePostal": "08350", - "codeCommune": "08119", - "libelleAcheminement": "CHEVEUGES", - "nomCommune": "CHEVEUGES" + "codePostal": "15500", + "codeCommune": "15032", + "libelleAcheminement": "CELOUX", + "nomCommune": "CELOUX" }, { - "codePostal": "64270", - "codeCommune": "64334", - "libelleAcheminement": "LEREN", - "nomCommune": "LEREN" + "codePostal": "68320", + "codeCommune": "68143", + "libelleAcheminement": "PORTE DU RIED", + "nomCommune": "PORTE DU RIED" }, { - "codePostal": "45590", - "codeCommune": "45272", - "libelleAcheminement": "ST CYR EN VAL", - "nomCommune": "ST CYR EN VAL" + "codePostal": "57640", + "codeCommune": "57736", + "libelleAcheminement": "VRY", + "nomCommune": "VRY" }, { - "codePostal": "38140", - "codeCommune": "38437", - "libelleAcheminement": "ST PAUL D IZEAUX", - "nomCommune": "ST PAUL D IZEAUX" + "codePostal": "60870", + "codeCommune": "60102", + "libelleAcheminement": "BRENOUILLE", + "nomCommune": "BRENOUILLE" }, { - "codePostal": "08130", - "codeCommune": "08123", - "libelleAcheminement": "CHUFFILLY ROCHE", - "nomCommune": "CHUFFILLY ROCHE" + "codePostal": "68740", + "codeCommune": "68291", + "libelleAcheminement": "RUMERSHEIM LE HAUT", + "nomCommune": "RUMERSHEIM LE HAUT" }, { - "codePostal": "64800", - "codeCommune": "64339", - "libelleAcheminement": "LESTELLE BETHARRAM", - "nomCommune": "LESTELLE BETHARRAM" + "codePostal": "15500", + "codeCommune": "15042", + "libelleAcheminement": "LA CHAPELLE LAURENT", + "nomCommune": "LA CHAPELLE LAURENT" }, { - "codePostal": "45560", - "codeCommune": "45274", - "libelleAcheminement": "ST DENIS EN VAL", - "nomCommune": "ST DENIS EN VAL" + "codePostal": "68970", + "codeCommune": "68153", + "libelleAcheminement": "ILLHAEUSERN", + "nomCommune": "ILLHAEUSERN" }, { - "codePostal": "38160", - "codeCommune": "38443", - "libelleAcheminement": "ST PIERRE DE CHERENNES", - "nomCommune": "ST PIERRE DE CHERENNES" + "codePostal": "57320", + "codeCommune": "57739", + "libelleAcheminement": "WALDWEISTROFF", + "nomCommune": "WALDWEISTROFF" }, { - "codePostal": "08090", - "codeCommune": "08125", - "libelleAcheminement": "CLIRON", - "nomCommune": "CLIRON" + "codePostal": "60510", + "codeCommune": "60103", + "libelleAcheminement": "BRESLES", + "nomCommune": "BRESLES" }, { - "codePostal": "64470", - "codeCommune": "64340", - "libelleAcheminement": "LICHANS SUNHAR", - "nomCommune": "LICHANS SUNHAR" + "codePostal": "68210", + "codeCommune": "68293", + "libelleAcheminement": "ST COSME", + "nomCommune": "ST COSME" }, { - "codePostal": "45500", - "codeCommune": "45291", - "libelleAcheminement": "ST MARTIN SUR OCRE", - "nomCommune": "ST MARTIN SUR OCRE" + "codePostal": "15500", + "codeCommune": "15048", + "libelleAcheminement": "CHAZELLES", + "nomCommune": "CHAZELLES" }, { - "codePostal": "38350", - "codeCommune": "38444", - "libelleAcheminement": "ST PIERRE DE MEAROZ", - "nomCommune": "ST PIERRE DE MEAROZ" + "codePostal": "68320", + "codeCommune": "68157", + "libelleAcheminement": "JEBSHEIM", + "nomCommune": "JEBSHEIM" }, { - "codePostal": "08270", - "codeCommune": "08132", - "libelleAcheminement": "CORNY MACHEROMENIL", - "nomCommune": "CORNY MACHEROMENIL" + "codePostal": "57320", + "codeCommune": "57749", + "libelleAcheminement": "VOELFLING LES BOUZONVILLE", + "nomCommune": "VOELFLING LES BOUZONVILLE" }, { - "codePostal": "64560", - "codeCommune": "64342", - "libelleAcheminement": "LICQ ATHEREY", - "nomCommune": "LICQ ATHEREY" + "codePostal": "60480", + "codeCommune": "60113", + "libelleAcheminement": "BUCAMPS", + "nomCommune": "BUCAMPS" }, { - "codePostal": "45600", - "codeCommune": "45297", - "libelleAcheminement": "ST PERE SUR LOIRE", - "nomCommune": "ST PERE SUR LOIRE" + "codePostal": "68300", + "codeCommune": "68297", + "libelleAcheminement": "ST LOUIS", + "nomCommune": "ST LOUIS" }, { - "codePostal": "38160", - "codeCommune": "38454", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "15110", + "codeCommune": "15060", + "libelleAcheminement": "DEUX VERGES", + "nomCommune": "DEUX VERGES" }, { - "codePostal": "08130", - "codeCommune": "08134", - "libelleAcheminement": "COULOMMES ET MARQUENY", - "nomCommune": "COULOMMES ET MARQUENY" + "codePostal": "68240", + "codeCommune": "68162", + "libelleAcheminement": "KAYSERSBERG VIGNOBLE", + "nomCommune": "KAYSERSBERG VIGNOBLE" }, { - "codePostal": "64410", - "codeCommune": "64347", - "libelleAcheminement": "LONCON", - "nomCommune": "LONCON" + "codePostal": "57200", + "codeCommune": "57750", + "libelleAcheminement": "WOELFLING LES SARREGUEMINES", + "nomCommune": "WOELFLING LES SARREGUEMINES" }, { - "codePostal": "45750", - "codeCommune": "45298", - "libelleAcheminement": "ST PRYVE ST MESMIN", - "nomCommune": "ST PRYVE ST MESMIN" + "codePostal": "60380", + "codeCommune": "60114", + "libelleAcheminement": "BUICOURT", + "nomCommune": "BUICOURT" }, { - "codePostal": "38300", - "codeCommune": "38455", - "libelleAcheminement": "ST SAVIN", - "nomCommune": "ST SAVIN" + "codePostal": "68210", + "codeCommune": "68299", + "libelleAcheminement": "ST ULRICH", + "nomCommune": "ST ULRICH" }, { - "codePostal": "08400", - "codeCommune": "08135", - "libelleAcheminement": "LA CROIX AUX BOIS", - "nomCommune": "LA CROIX AUX BOIS" + "codePostal": "15140", + "codeCommune": "15063", + "libelleAcheminement": "DRUGEAC", + "nomCommune": "DRUGEAC" }, { - "codePostal": "64350", - "codeCommune": "64357", - "libelleAcheminement": "LUCARRE", - "nomCommune": "LUCARRE" + "codePostal": "68480", + "codeCommune": "68169", + "libelleAcheminement": "KOESTLACH", + "nomCommune": "KOESTLACH" }, { - "codePostal": "45760", - "codeCommune": "45333", - "libelleAcheminement": "VENNECY", - "nomCommune": "VENNECY" + "codePostal": "57690", + "codeCommune": "57762", + "libelleAcheminement": "ZIMMING", + "nomCommune": "ZIMMING" }, { - "codePostal": "38710", - "codeCommune": "38456", - "libelleAcheminement": "CHATEL EN TRIEVES", - "nomCommune": "CHATEL EN TRIEVES" + "codePostal": "60130", + "codeCommune": "60115", + "libelleAcheminement": "BULLES", + "nomCommune": "BULLES" }, { - "codePostal": "08160", - "codeCommune": "08140", - "libelleAcheminement": "DOM LE MESNIL", - "nomCommune": "DOM LE MESNIL" + "codePostal": "68440", + "codeCommune": "68301", + "libelleAcheminement": "SCHLIERBACH", + "nomCommune": "SCHLIERBACH" }, { - "codePostal": "64160", - "codeCommune": "64361", - "libelleAcheminement": "LUSSAGNET LUSSON", - "nomCommune": "LUSSAGNET LUSSON" + "codePostal": "15110", + "codeCommune": "15065", + "libelleAcheminement": "ESPINASSE", + "nomCommune": "ESPINASSE" }, { - "codePostal": "45260", - "codeCommune": "45334", - "libelleAcheminement": "VIEILLES MAISONS SUR JOUDRY", - "nomCommune": "VIEILLES MAISONS SUR JOUDRY" + "codePostal": "68320", + "codeCommune": "68172", + "libelleAcheminement": "KUNHEIM", + "nomCommune": "KUNHEIM" }, { - "codePostal": "38700", - "codeCommune": "38471", - "libelleAcheminement": "LE SAPPEY EN CHARTREUSE", - "nomCommune": "LE SAPPEY EN CHARTREUSE" + "codePostal": "57330", + "codeCommune": "57764", + "libelleAcheminement": "ZOUFFTGEN", + "nomCommune": "ZOUFFTGEN" }, { - "codePostal": "08460", - "codeCommune": "08141", - "libelleAcheminement": "DOMMERY", - "nomCommune": "DOMMERY" + "codePostal": "60170", + "codeCommune": "60119", + "libelleAcheminement": "CAMBRONNE LES RIBECOURT", + "nomCommune": "CAMBRONNE LES RIBECOURT" }, { - "codePostal": "64300", - "codeCommune": "64367", - "libelleAcheminement": "MASLACQ", - "nomCommune": "MASLACQ" + "codePostal": "68290", + "codeCommune": "68307", + "libelleAcheminement": "SEWEN", + "nomCommune": "SEWEN" }, { - "codePostal": "45170", - "codeCommune": "45342", - "libelleAcheminement": "VILLEREAU", - "nomCommune": "VILLEREAU" + "codePostal": "15310", + "codeCommune": "15075", + "libelleAcheminement": "GIRGOLS", + "nomCommune": "GIRGOLS" }, { - "codePostal": "38700", - "codeCommune": "38472", - "libelleAcheminement": "SARCENAS", - "nomCommune": "SARCENAS" + "codePostal": "68220", + "codeCommune": "68182", + "libelleAcheminement": "LEYMEN", + "nomCommune": "LEYMEN" }, { - "codePostal": "08310", - "codeCommune": "08147", - "libelleAcheminement": "DRICOURT", - "nomCommune": "DRICOURT" + "codePostal": "58230", + "codeCommune": "58003", + "libelleAcheminement": "ALLIGNY EN MORVAN", + "nomCommune": "ALLIGNY EN MORVAN" }, { - "codePostal": "64110", - "codeCommune": "64373", - "libelleAcheminement": "MAZERES LEZONS", - "nomCommune": "MAZERES LEZONS" + "codePostal": "60220", + "codeCommune": "60122", + "libelleAcheminement": "CAMPEAUX", + "nomCommune": "CAMPEAUX" }, { - "codePostal": "46140", - "codeCommune": "46005", - "libelleAcheminement": "ANGLARS JUILLAC", - "nomCommune": "ANGLARS JUILLAC" + "codePostal": "68290", + "codeCommune": "68308", + "libelleAcheminement": "SICKERT", + "nomCommune": "SICKERT" }, { - "codePostal": "38440", - "codeCommune": "38476", - "libelleAcheminement": "SAVAS MEPIN", - "nomCommune": "SAVAS MEPIN" + "codePostal": "15150", + "codeCommune": "15088", + "libelleAcheminement": "LACAPELLE VIESCAMP", + "nomCommune": "LACAPELLE VIESCAMP" }, { - "codePostal": "08110", - "codeCommune": "08153", - "libelleAcheminement": "ESCOMBRES ET LE CHESNOIS", - "nomCommune": "ESCOMBRES ET LE CHESNOIS" + "codePostal": "68480", + "codeCommune": "68190", + "libelleAcheminement": "LUCELLE", + "nomCommune": "LUCELLE" }, { - "codePostal": "64230", - "codeCommune": "64374", - "libelleAcheminement": "MAZEROLLES", - "nomCommune": "MAZEROLLES" + "codePostal": "58190", + "codeCommune": "58005", + "libelleAcheminement": "AMAZY", + "nomCommune": "AMAZY" }, { - "codePostal": "46320", - "codeCommune": "46009", - "libelleAcheminement": "ASSIER", - "nomCommune": "ASSIER" + "codePostal": "60310", + "codeCommune": "60124", + "libelleAcheminement": "CANDOR", + "nomCommune": "CANDOR" }, { - "codePostal": "38260", - "codeCommune": "38479", - "libelleAcheminement": "PORTE DES BONNEVAUX", - "nomCommune": "PORTE DES BONNEVAUX" + "codePostal": "68480", + "codeCommune": "68312", + "libelleAcheminement": "SONDERSDORF", + "nomCommune": "SONDERSDORF" }, { - "codePostal": "08270", - "codeCommune": "08165", - "libelleAcheminement": "FAUX", - "nomCommune": "FAUX" + "codePostal": "15300", + "codeCommune": "15101", + "libelleAcheminement": "LAVEISSIERE", + "nomCommune": "LAVEISSIERE" }, { - "codePostal": "64120", - "codeCommune": "64375", - "libelleAcheminement": "MEHARIN", - "nomCommune": "MEHARIN" + "codePostal": "68210", + "codeCommune": "68200", + "libelleAcheminement": "MANSPACH", + "nomCommune": "MANSPACH" }, { - "codePostal": "46230", - "codeCommune": "46023", - "libelleAcheminement": "BELFORT DU QUERCY", - "nomCommune": "BELFORT DU QUERCY" + "codePostal": "58350", + "codeCommune": "58009", + "libelleAcheminement": "ARBOURSE", + "nomCommune": "ARBOURSE" }, { - "codePostal": "38780", - "codeCommune": "38480", - "libelleAcheminement": "SEPTEME", - "nomCommune": "SEPTEME" + "codePostal": "60680", + "codeCommune": "60125", + "libelleAcheminement": "CANLY", + "nomCommune": "CANLY" }, { - "codePostal": "08250", - "codeCommune": "08171", - "libelleAcheminement": "FLEVILLE", - "nomCommune": "FLEVILLE" + "codePostal": "68360", + "codeCommune": "68315", + "libelleAcheminement": "SOULTZ HAUT RHIN", + "nomCommune": "SOULTZ HAUT RHIN" }, { - "codePostal": "64510", - "codeCommune": "64376", - "libelleAcheminement": "MEILLON", - "nomCommune": "MEILLON" + "codePostal": "15190", + "codeCommune": "15110", + "libelleAcheminement": "LUGARDE", + "nomCommune": "LUGARDE" }, { - "codePostal": "46090", - "codeCommune": "46027", - "libelleAcheminement": "BERGANTY", - "nomCommune": "BERGANTY" + "codePostal": "68290", + "codeCommune": "68201", + "libelleAcheminement": "MASEVAUX NIEDERBRUCK", + "nomCommune": "MASEVAUX NIEDERBRUCK" }, { - "codePostal": "38780", - "codeCommune": "38480", - "libelleAcheminement": "SEPTEME", - "nomCommune": "SEPTEME" + "codePostal": "58700", + "codeCommune": "58013", + "libelleAcheminement": "ARTHEL", + "nomCommune": "ARTHEL" }, { - "codePostal": "08000", - "codeCommune": "08180", - "libelleAcheminement": "LA FRANCHEVILLE", - "nomCommune": "LA FRANCHEVILLE" + "codePostal": "60310", + "codeCommune": "60127", + "libelleAcheminement": "CANNY SUR MATZ", + "nomCommune": "CANNY SUR MATZ" }, { - "codePostal": "64130", - "codeCommune": "64378", - "libelleAcheminement": "MENDITTE", - "nomCommune": "MENDITTE" + "codePostal": "68720", + "codeCommune": "68320", + "libelleAcheminement": "SPECHBACH", + "nomCommune": "SPECHBACH" }, { - "codePostal": "46150", - "codeCommune": "46032", - "libelleAcheminement": "BOISSIERES", - "nomCommune": "BOISSIERES" + "codePostal": "15210", + "codeCommune": "15111", + "libelleAcheminement": "MADIC", + "nomCommune": "MADIC" }, { - "codePostal": "38200", - "codeCommune": "38484", - "libelleAcheminement": "SERPAIZE", - "nomCommune": "SERPAIZE" + "codePostal": "68290", + "codeCommune": "68201", + "libelleAcheminement": "MASEVAUX NIEDERBRUCK", + "nomCommune": "MASEVAUX NIEDERBRUCK" }, { - "codePostal": "08240", - "codeCommune": "08186", - "libelleAcheminement": "GERMONT", - "nomCommune": "GERMONT" + "codePostal": "58190", + "codeCommune": "58016", + "libelleAcheminement": "ASNOIS", + "nomCommune": "ASNOIS" }, { - "codePostal": "64230", - "codeCommune": "64387", - "libelleAcheminement": "MOMAS", - "nomCommune": "MOMAS" + "codePostal": "60170", + "codeCommune": "60129", + "libelleAcheminement": "CARLEPONT", + "nomCommune": "CARLEPONT" }, { - "codePostal": "46100", - "codeCommune": "46035", - "libelleAcheminement": "BOUSSAC", - "nomCommune": "BOUSSAC" + "codePostal": "68440", + "codeCommune": "68324", + "libelleAcheminement": "STEINBRUNN LE HAUT", + "nomCommune": "STEINBRUNN LE HAUT" }, { - "codePostal": "38350", - "codeCommune": "38489", - "libelleAcheminement": "SIEVOZ", - "nomCommune": "SIEVOZ" + "codePostal": "15500", + "codeCommune": "15119", + "libelleAcheminement": "MASSIAC", + "nomCommune": "MASSIAC" }, { - "codePostal": "08700", - "codeCommune": "08188", - "libelleAcheminement": "GESPUNSART", - "nomCommune": "GESPUNSART" + "codePostal": "68480", + "codeCommune": "68212", + "libelleAcheminement": "MOERNACH", + "nomCommune": "MOERNACH" }, { - "codePostal": "64160", - "codeCommune": "64389", - "libelleAcheminement": "MONASSUT AUDIRACQ", - "nomCommune": "MONASSUT AUDIRACQ" + "codePostal": "58420", + "codeCommune": "58026", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "46130", - "codeCommune": "46043", - "libelleAcheminement": "CAHUS", - "nomCommune": "CAHUS" + "codePostal": "60290", + "codeCommune": "60134", + "libelleAcheminement": "CAUFFRY", + "nomCommune": "CAUFFRY" }, { - "codePostal": "38650", - "codeCommune": "38492", - "libelleAcheminement": "SINARD", - "nomCommune": "SINARD" + "codePostal": "68640", + "codeCommune": "68325", + "libelleAcheminement": "STEINSOULTZ", + "nomCommune": "STEINSOULTZ" }, { - "codePostal": "08200", - "codeCommune": "08194", - "libelleAcheminement": "GLAIRE", - "nomCommune": "GLAIRE" + "codePostal": "15600", + "codeCommune": "15133", + "libelleAcheminement": "MONTMURAT", + "nomCommune": "MONTMURAT" }, { - "codePostal": "64300", - "codeCommune": "64396", - "libelleAcheminement": "MONT", - "nomCommune": "MONT" + "codePostal": "68640", + "codeCommune": "68222", + "libelleAcheminement": "MUESPACH LE HAUT", + "nomCommune": "MUESPACH LE HAUT" }, { - "codePostal": "46100", - "codeCommune": "46051", - "libelleAcheminement": "CAMBES", - "nomCommune": "CAMBES" + "codePostal": "58420", + "codeCommune": "58026", + "libelleAcheminement": "BEAULIEU", + "nomCommune": "BEAULIEU" }, { - "codePostal": "38150", - "codeCommune": "38496", - "libelleAcheminement": "SONNAY", - "nomCommune": "SONNAY" + "codePostal": "60210", + "codeCommune": "60136", + "libelleAcheminement": "CEMPUIS", + "nomCommune": "CEMPUIS" }, { - "codePostal": "08430", - "codeCommune": "08201", - "libelleAcheminement": "GRUYERES", - "nomCommune": "GRUYERES" + "codePostal": "68780", + "codeCommune": "68326", + "libelleAcheminement": "STERNENBERG", + "nomCommune": "STERNENBERG" }, { - "codePostal": "64121", - "codeCommune": "64399", - "libelleAcheminement": "MONTARDON", - "nomCommune": "MONTARDON" + "codePostal": "15150", + "codeCommune": "15135", + "libelleAcheminement": "MONTVERT", + "nomCommune": "MONTVERT" }, { - "codePostal": "46100", - "codeCommune": "46052", - "libelleAcheminement": "CAMBOULIT", - "nomCommune": "CAMBOULIT" + "codePostal": "68200", + "codeCommune": "68224", + "libelleAcheminement": "MULHOUSE", + "nomCommune": "MULHOUSE" }, { - "codePostal": "38350", - "codeCommune": "38497", - "libelleAcheminement": "SOUSVILLE", - "nomCommune": "SOUSVILLE" + "codePostal": "58310", + "codeCommune": "58033", + "libelleAcheminement": "BITRY", + "nomCommune": "BITRY" }, { - "codePostal": "08230", - "codeCommune": "08202", - "libelleAcheminement": "GUE D HOSSUS", - "nomCommune": "GUE D HOSSUS" + "codePostal": "60230", + "codeCommune": "60139", + "libelleAcheminement": "CHAMBLY", + "nomCommune": "CHAMBLY" }, { - "codePostal": "64510", - "codeCommune": "64413", - "libelleAcheminement": "NARCASTET", - "nomCommune": "NARCASTET" + "codePostal": "68470", + "codeCommune": "68328", + "libelleAcheminement": "STORCKENSOHN", + "nomCommune": "STORCKENSOHN" }, { - "codePostal": "46100", - "codeCommune": "46057", - "libelleAcheminement": "CARDAILLAC", - "nomCommune": "CARDAILLAC" + "codePostal": "15300", + "codeCommune": "15138", + "libelleAcheminement": "MURAT", + "nomCommune": "MURAT" }, { - "codePostal": "38660", - "codeCommune": "38511", - "libelleAcheminement": "LE TOUVET", - "nomCommune": "LE TOUVET" + "codePostal": "68530", + "codeCommune": "68229", + "libelleAcheminement": "MURBACH", + "nomCommune": "MURBACH" }, { - "codePostal": "08290", - "codeCommune": "08208", - "libelleAcheminement": "HANNAPPES", - "nomCommune": "HANNAPPES" + "codePostal": "58310", + "codeCommune": "58036", + "libelleAcheminement": "BOUHY", + "nomCommune": "BOUHY" }, { - "codePostal": "64190", - "codeCommune": "64420", - "libelleAcheminement": "OGENNE CAMPTORT", - "nomCommune": "OGENNE CAMPTORT" + "codePostal": "60240", + "codeCommune": "60140", + "libelleAcheminement": "CHAMBORS", + "nomCommune": "CHAMBORS" }, { - "codePostal": "46100", - "codeCommune": "46075", - "libelleAcheminement": "CORN", - "nomCommune": "CORN" + "codePostal": "68130", + "codeCommune": "68333", + "libelleAcheminement": "TAGSDORF", + "nomCommune": "TAGSDORF" }, { - "codePostal": "38300", - "codeCommune": "38512", - "libelleAcheminement": "TRAMOLE", - "nomCommune": "TRAMOLE" + "codePostal": "15260", + "codeCommune": "15142", + "libelleAcheminement": "NEUVEGLISE SUR TRUYERE", + "nomCommune": "NEUVEGLISE SUR TRUYERE" }, { - "codePostal": "08170", - "codeCommune": "08222", - "libelleAcheminement": "HAYBES", - "nomCommune": "HAYBES" + "codePostal": "68960", + "codeCommune": "68240", + "libelleAcheminement": "ILLTAL", + "nomCommune": "ILLTAL" }, { - "codePostal": "64680", - "codeCommune": "64421", - "libelleAcheminement": "OGEU LES BAINS", - "nomCommune": "OGEU LES BAINS" + "codePostal": "58140", + "codeCommune": "58037", + "libelleAcheminement": "BRASSY", + "nomCommune": "BRASSY" }, { - "codePostal": "46270", - "codeCommune": "46085", - "libelleAcheminement": "CUZAC", - "nomCommune": "CUZAC" + "codePostal": "60500", + "codeCommune": "60141", + "libelleAcheminement": "CHANTILLY", + "nomCommune": "CHANTILLY" }, { - "codePostal": "38710", - "codeCommune": "38514", - "libelleAcheminement": "TREMINIS", - "nomCommune": "TREMINIS" + "codePostal": "68210", + "codeCommune": "68336", + "libelleAcheminement": "TRAUBACH LE BAS", + "nomCommune": "TRAUBACH LE BAS" }, { - "codePostal": "08320", - "codeCommune": "08226", - "libelleAcheminement": "HIERGES", - "nomCommune": "HIERGES" + "codePostal": "15700", + "codeCommune": "15153", + "libelleAcheminement": "PLEAUX", + "nomCommune": "PLEAUX" }, { - "codePostal": "64390", - "codeCommune": "64423", - "libelleAcheminement": "ORAAS", - "nomCommune": "ORAAS" + "codePostal": "68600", + "codeCommune": "68246", + "libelleAcheminement": "OBERSAASHEIM", + "nomCommune": "OBERSAASHEIM" }, { - "codePostal": "46600", - "codeCommune": "46086", - "libelleAcheminement": "CUZANCE", - "nomCommune": "CUZANCE" + "codePostal": "58400", + "codeCommune": "58042", + "libelleAcheminement": "BULCY", + "nomCommune": "BULCY" }, { - "codePostal": "38700", - "codeCommune": "38516", - "libelleAcheminement": "LA TRONCHE", - "nomCommune": "LA TRONCHE" + "codePostal": "60240", + "codeCommune": "60144", + "libelleAcheminement": "CHAVENCON", + "nomCommune": "CHAVENCON" }, { - "codePostal": "08270", - "codeCommune": "08240", - "libelleAcheminement": "JUSTINE HERBIGNY", - "nomCommune": "JUSTINE HERBIGNY" + "codePostal": "68121", + "codeCommune": "68344", + "libelleAcheminement": "URBES", + "nomCommune": "URBES" }, { - "codePostal": "64400", - "codeCommune": "64426", - "libelleAcheminement": "ORIN", - "nomCommune": "ORIN" + "codePostal": "15400", + "codeCommune": "15162", + "libelleAcheminement": "RIOM ES MONTAGNES", + "nomCommune": "RIOM ES MONTAGNES" }, { - "codePostal": "46100", - "codeCommune": "46102", - "libelleAcheminement": "FIGEAC", - "nomCommune": "FIGEAC" + "codePostal": "68250", + "codeCommune": "68255", + "libelleAcheminement": "PFAFFENHEIM", + "nomCommune": "PFAFFENHEIM" }, { - "codePostal": "38740", - "codeCommune": "38518", - "libelleAcheminement": "VALBONNAIS", - "nomCommune": "VALBONNAIS" + "codePostal": "58420", + "codeCommune": "58043", + "libelleAcheminement": "BUSSY LA PESLE", + "nomCommune": "BUSSY LA PESLE" }, { - "codePostal": "08130", - "codeCommune": "08244", - "libelleAcheminement": "LAMETZ", - "nomCommune": "LAMETZ" + "codePostal": "60190", + "codeCommune": "60152", + "libelleAcheminement": "CHOISY LA VICTOIRE", + "nomCommune": "CHOISY LA VICTOIRE" }, { - "codePostal": "64390", - "codeCommune": "64427", - "libelleAcheminement": "ORION", - "nomCommune": "ORION" + "codePostal": "68480", + "codeCommune": "68363", + "libelleAcheminement": "WERENTZHOUSE", + "nomCommune": "WERENTZHOUSE" }, { - "codePostal": "46700", - "codeCommune": "46107", - "libelleAcheminement": "FLORESSAS", - "nomCommune": "FLORESSAS" + "codePostal": "15220", + "codeCommune": "15163", + "libelleAcheminement": "ROANNES ST MARY", + "nomCommune": "ROANNES ST MARY" }, { - "codePostal": "38540", - "codeCommune": "38519", - "libelleAcheminement": "VALENCIN", - "nomCommune": "VALENCIN" + "codePostal": "68840", + "codeCommune": "68258", + "libelleAcheminement": "PULVERSHEIM", + "nomCommune": "PULVERSHEIM" }, { - "codePostal": "08240", - "codeCommune": "08246", - "libelleAcheminement": "LANDRES ET ST GEORGES", - "nomCommune": "LANDRES ET ST GEORGES" + "codePostal": "58440", + "codeCommune": "58044", + "libelleAcheminement": "LA CELLE SUR LOIRE", + "nomCommune": "LA CELLE SUR LOIRE" }, { - "codePostal": "64300", - "codeCommune": "64430", - "libelleAcheminement": "ORTHEZ", - "nomCommune": "ORTHEZ" + "codePostal": "60110", + "codeCommune": "60162", + "libelleAcheminement": "CORBEIL CERF", + "nomCommune": "CORBEIL CERF" }, { - "codePostal": "46100", - "codeCommune": "46108", - "libelleAcheminement": "FONS", - "nomCommune": "FONS" + "codePostal": "68960", + "codeCommune": "68371", + "libelleAcheminement": "WILLER", + "nomCommune": "WILLER" }, { - "codePostal": "38760", - "codeCommune": "38524", - "libelleAcheminement": "VARCES ALLIERES ET RISSET", - "nomCommune": "VARCES ALLIERES ET RISSET" + "codePostal": "15600", + "codeCommune": "15167", + "libelleAcheminement": "ROUZIERS", + "nomCommune": "ROUZIERS" }, { - "codePostal": "08250", - "codeCommune": "08274", - "libelleAcheminement": "MARCQ", - "nomCommune": "MARCQ" + "codePostal": "68220", + "codeCommune": "68264", + "libelleAcheminement": "RANSPACH LE HAUT", + "nomCommune": "RANSPACH LE HAUT" }, { - "codePostal": "64150", - "codeCommune": "64431", - "libelleAcheminement": "OS MARSILLON", - "nomCommune": "OS MARSILLON" + "codePostal": "58700", + "codeCommune": "58045", + "libelleAcheminement": "LA CELLE SUR NIEVRE", + "nomCommune": "LA CELLE SUR NIEVRE" }, { - "codePostal": "46230", - "codeCommune": "46109", - "libelleAcheminement": "FONTANES", - "nomCommune": "FONTANES" + "codePostal": "60150", + "codeCommune": "60166", + "libelleAcheminement": "COUDUN", + "nomCommune": "COUDUN" }, { - "codePostal": "38470", - "codeCommune": "38526", - "libelleAcheminement": "VATILIEU", - "nomCommune": "VATILIEU" + "codePostal": "68480", + "codeCommune": "68373", + "libelleAcheminement": "WINKEL", + "nomCommune": "WINKEL" }, { - "codePostal": "08370", - "codeCommune": "08275", - "libelleAcheminement": "MARGNY", - "nomCommune": "MARGNY" + "codePostal": "15590", + "codeCommune": "15178", + "libelleAcheminement": "ST CIRGUES DE JORDANNE", + "nomCommune": "ST CIRGUES DE JORDANNE" }, { - "codePostal": "64300", - "codeCommune": "64440", - "libelleAcheminement": "OZENX MONTESTRUCQ", - "nomCommune": "OZENX MONTESTRUCQ" + "codePostal": "68120", + "codeCommune": "68270", + "libelleAcheminement": "RICHWILLER", + "nomCommune": "RICHWILLER" }, { - "codePostal": "46090", - "codeCommune": "46112", - "libelleAcheminement": "FRANCOULES", - "nomCommune": "FRANCOULES" + "codePostal": "58210", + "codeCommune": "58058", + "libelleAcheminement": "LA CHAPELLE ST ANDRE", + "nomCommune": "LA CHAPELLE ST ANDRE" }, { - "codePostal": "38114", - "codeCommune": "38527", - "libelleAcheminement": "VAUJANY", - "nomCommune": "VAUJANY" + "codePostal": "60350", + "codeCommune": "60167", + "libelleAcheminement": "COULOISY", + "nomCommune": "COULOISY" }, { - "codePostal": "08390", - "codeCommune": "08278", - "libelleAcheminement": "MARQUIGNY", - "nomCommune": "MARQUIGNY" + "codePostal": "68310", + "codeCommune": "68375", + "libelleAcheminement": "WITTELSHEIM", + "nomCommune": "WITTELSHEIM" }, { - "codePostal": "64230", - "codeCommune": "64448", - "libelleAcheminement": "POEY DE LESCAR", - "nomCommune": "POEY DE LESCAR" + "codePostal": "15140", + "codeCommune": "15179", + "libelleAcheminement": "ST CIRGUES DE MALBERT", + "nomCommune": "ST CIRGUES DE MALBERT" }, { - "codePostal": "46250", - "codeCommune": "46114", - "libelleAcheminement": "FRAYSSINET LE GELAT", - "nomCommune": "FRAYSSINET LE GELAT" + "codePostal": "68640", + "codeCommune": "68273", + "libelleAcheminement": "RIESPACH", + "nomCommune": "RIESPACH" }, { - "codePostal": "38410", - "codeCommune": "38528", - "libelleAcheminement": "VAULNAVEYS LE BAS", - "nomCommune": "VAULNAVEYS LE BAS" + "codePostal": "58350", + "codeCommune": "58064", + "libelleAcheminement": "CHATEAUNEUF VAL DE BARGIS", + "nomCommune": "CHATEAUNEUF VAL DE BARGIS" }, { - "codePostal": "08400", - "codeCommune": "08280", - "libelleAcheminement": "MARVAUX VIEUX", - "nomCommune": "MARVAUX VIEUX" + "codePostal": "60420", + "codeCommune": "60168", + "libelleAcheminement": "COURCELLES EPAYELLES", + "nomCommune": "COURCELLES EPAYELLES" }, { - "codePostal": "64400", - "codeCommune": "64449", - "libelleAcheminement": "POEY D OLORON", - "nomCommune": "POEY D OLORON" + "codePostal": "68130", + "codeCommune": "68382", + "libelleAcheminement": "ZAESSINGUE", + "nomCommune": "ZAESSINGUE" }, { - "codePostal": "46130", - "codeCommune": "46117", - "libelleAcheminement": "GAGNAC SUR CERE", - "nomCommune": "GAGNAC SUR CERE" + "codePostal": "15400", + "codeCommune": "15185", + "libelleAcheminement": "ST ETIENNE DE CHOMEIL", + "nomCommune": "ST ETIENNE DE CHOMEIL" }, { - "codePostal": "38410", - "codeCommune": "38529", - "libelleAcheminement": "VAULNAVEYS LE HAUT", - "nomCommune": "VAULNAVEYS LE HAUT" + "codePostal": "68800", + "codeCommune": "68279", + "libelleAcheminement": "RODEREN", + "nomCommune": "RODEREN" }, { - "codePostal": "08260", - "codeCommune": "08282", - "libelleAcheminement": "MAUBERT FONTAINE", - "nomCommune": "MAUBERT FONTAINE" + "codePostal": "58110", + "codeCommune": "58065", + "libelleAcheminement": "CHATILLON EN BAZOIS", + "nomCommune": "CHATILLON EN BAZOIS" }, { - "codePostal": "64460", - "codeCommune": "64452", - "libelleAcheminement": "PONSON DESSUS", - "nomCommune": "PONSON DESSUS" + "codePostal": "60580", + "codeCommune": "60172", + "libelleAcheminement": "COYE LA FORET", + "nomCommune": "COYE LA FORET" }, { - "codePostal": "46150", - "codeCommune": "46119", - "libelleAcheminement": "GIGOUZAC", - "nomCommune": "GIGOUZAC" + "codePostal": "68720", + "codeCommune": "68384", + "libelleAcheminement": "ZILLISHEIM", + "nomCommune": "ZILLISHEIM" }, { - "codePostal": "38150", - "codeCommune": "38536", - "libelleAcheminement": "VERNIOZ", - "nomCommune": "VERNIOZ" + "codePostal": "15230", + "codeCommune": "15201", + "libelleAcheminement": "ST MARTIN SOUS VIGOUROUX", + "nomCommune": "ST MARTIN SOUS VIGOUROUX" }, { - "codePostal": "08430", - "codeCommune": "08295", - "libelleAcheminement": "MONDIGNY", - "nomCommune": "MONDIGNY" + "codePostal": "68740", + "codeCommune": "68281", + "libelleAcheminement": "ROGGENHOUSE", + "nomCommune": "ROGGENHOUSE" }, { - "codePostal": "64460", - "codeCommune": "64454", - "libelleAcheminement": "PONTIACQ VIELLEPINTE", - "nomCommune": "PONTIACQ VIELLEPINTE" + "codePostal": "58700", + "codeCommune": "58070", + "libelleAcheminement": "CHAZEUIL", + "nomCommune": "CHAZEUIL" }, { - "codePostal": "46130", - "codeCommune": "46123", - "libelleAcheminement": "GIRAC", - "nomCommune": "GIRAC" + "codePostal": "60420", + "codeCommune": "60179", + "libelleAcheminement": "CREVECOEUR LE PETIT", + "nomCommune": "CREVECOEUR LE PETIT" }, { - "codePostal": "38119", - "codeCommune": "38552", - "libelleAcheminement": "VILLARD ST CHRISTOPHE", - "nomCommune": "VILLARD ST CHRISTOPHE" + "codePostal": "68230", + "codeCommune": "68385", + "libelleAcheminement": "ZIMMERBACH", + "nomCommune": "ZIMMERBACH" }, { - "codePostal": "08390", - "codeCommune": "08301", - "libelleAcheminement": "MONTGON", - "nomCommune": "MONTGON" + "codePostal": "15140", + "codeCommune": "15205", + "libelleAcheminement": "ST PAUL DE SALERS", + "nomCommune": "ST PAUL DE SALERS" }, { - "codePostal": "64330", - "codeCommune": "64455", - "libelleAcheminement": "PORTET", - "nomCommune": "PORTET" + "codePostal": "68480", + "codeCommune": "68284", + "libelleAcheminement": "ROPPENTZWILLER", + "nomCommune": "ROPPENTZWILLER" }, { - "codePostal": "46320", - "codeCommune": "46131", - "libelleAcheminement": "GREZES", - "nomCommune": "GREZES" + "codePostal": "58500", + "codeCommune": "58073", + "libelleAcheminement": "CHEVROCHES", + "nomCommune": "CHEVROCHES" }, { - "codePostal": "38440", - "codeCommune": "38555", - "libelleAcheminement": "VILLENEUVE DE MARC", - "nomCommune": "VILLENEUVE DE MARC" + "codePostal": "60240", + "codeCommune": "60195", + "libelleAcheminement": "DELINCOURT", + "nomCommune": "DELINCOURT" }, { - "codePostal": "08400", - "codeCommune": "08303", - "libelleAcheminement": "MONTHOIS", - "nomCommune": "MONTHOIS" + "codePostal": "69490", + "codeCommune": "69008", + "libelleAcheminement": "ANCY", + "nomCommune": "ANCY" }, { - "codePostal": "64270", - "codeCommune": "64461", - "libelleAcheminement": "PUYOO", - "nomCommune": "PUYOO" + "codePostal": "15290", + "codeCommune": "15214", + "libelleAcheminement": "ST SAURY", + "nomCommune": "ST SAURY" }, { - "codePostal": "46320", - "codeCommune": "46133", - "libelleAcheminement": "ISSEPTS", - "nomCommune": "ISSEPTS" + "codePostal": "68560", + "codeCommune": "68288", + "libelleAcheminement": "RUEDERBACH", + "nomCommune": "RUEDERBACH" }, { - "codePostal": "38200", - "codeCommune": "38558", - "libelleAcheminement": "VILLETTE DE VIENNE", - "nomCommune": "VILLETTE DE VIENNE" + "codePostal": "58170", + "codeCommune": "58074", + "libelleAcheminement": "CHIDDES", + "nomCommune": "CHIDDES" }, { - "codePostal": "08210", - "codeCommune": "08311", - "libelleAcheminement": "MOUZON", - "nomCommune": "MOUZON" + "codePostal": "60790", + "codeCommune": "60196", + "libelleAcheminement": "LA DRENNE", + "nomCommune": "LA DRENNE" }, { - "codePostal": "64160", - "codeCommune": "64470", - "libelleAcheminement": "ST ARMOU", - "nomCommune": "ST ARMOU" + "codePostal": "69400", + "codeCommune": "69013", + "libelleAcheminement": "ARNAS", + "nomCommune": "ARNAS" }, { - "codePostal": "46150", - "codeCommune": "46134", - "libelleAcheminement": "LES JUNIES", - "nomCommune": "LES JUNIES" + "codePostal": "15100", + "codeCommune": "15229", + "libelleAcheminement": "SOULAGES", + "nomCommune": "SOULAGES" }, { - "codePostal": "38220", - "codeCommune": "38562", - "libelleAcheminement": "VIZILLE", - "nomCommune": "VIZILLE" + "codePostal": "68520", + "codeCommune": "68302", + "libelleAcheminement": "SCHWEIGHOUSE THANN", + "nomCommune": "SCHWEIGHOUSE THANN" }, { - "codePostal": "08150", - "codeCommune": "08312", - "libelleAcheminement": "MURTIN ET BOGNY", - "nomCommune": "MURTIN ET BOGNY" + "codePostal": "58220", + "codeCommune": "58077", + "libelleAcheminement": "CIEZ", + "nomCommune": "CIEZ" }, { - "codePostal": "64560", - "codeCommune": "64475", - "libelleAcheminement": "STE ENGRACE", - "nomCommune": "STE ENGRACE" + "codePostal": "60790", + "codeCommune": "60196", + "libelleAcheminement": "LA DRENNE", + "nomCommune": "LA DRENNE" }, { - "codePostal": "46090", - "codeCommune": "46137", - "libelleAcheminement": "LABASTIDE MARNHAC", - "nomCommune": "LABASTIDE MARNHAC" + "codePostal": "69430", + "codeCommune": "69018", + "libelleAcheminement": "BEAUJEU", + "nomCommune": "BEAUJEU" }, { - "codePostal": "38210", - "codeCommune": "38566", - "libelleAcheminement": "VOUREY", - "nomCommune": "VOUREY" + "codePostal": "15130", + "codeCommune": "15234", + "libelleAcheminement": "TEISSIERES LES BOULIES", + "nomCommune": "TEISSIERES LES BOULIES" }, { - "codePostal": "08300", - "codeCommune": "08313", - "libelleAcheminement": "NANTEUIL SUR AISNE", - "nomCommune": "NANTEUIL SUR AISNE" + "codePostal": "68780", + "codeCommune": "68304", + "libelleAcheminement": "SENTHEIM", + "nomCommune": "SENTHEIM" }, { - "codePostal": "64300", - "codeCommune": "64479", - "libelleAcheminement": "ST GIRONS EN BEARN", - "nomCommune": "ST GIRONS EN BEARN" + "codePostal": "58460", + "codeCommune": "58085", + "libelleAcheminement": "CORVOL L ORGUEILLEUX", + "nomCommune": "CORVOL L ORGUEILLEUX" }, { - "codePostal": "46240", - "codeCommune": "46138", - "libelleAcheminement": "COEUR DE CAUSSE", - "nomCommune": "COEUR DE CAUSSE" + "codePostal": "60420", + "codeCommune": "60201", + "libelleAcheminement": "DOMPIERRE", + "nomCommune": "DOMPIERRE" }, { - "codePostal": "39110", - "codeCommune": "39004", - "libelleAcheminement": "ABERGEMENT LES THESY", - "nomCommune": "ABERGEMENT LES THESY" + "codePostal": "69690", + "codeCommune": "69021", + "libelleAcheminement": "BESSENAY", + "nomCommune": "BESSENAY" }, { - "codePostal": "08300", - "codeCommune": "08314", - "libelleAcheminement": "NEUFLIZE", - "nomCommune": "NEUFLIZE" + "codePostal": "15270", + "codeCommune": "15240", + "libelleAcheminement": "TREMOUILLE", + "nomCommune": "TREMOUILLE" }, { - "codePostal": "64400", - "codeCommune": "64481", - "libelleAcheminement": "ST GOIN", - "nomCommune": "ST GOIN" + "codePostal": "68800", + "codeCommune": "68334", + "libelleAcheminement": "THANN", + "nomCommune": "THANN" }, { - "codePostal": "46200", - "codeCommune": "46144", - "libelleAcheminement": "LACAVE", - "nomCommune": "LACAVE" + "codePostal": "58220", + "codeCommune": "58089", + "libelleAcheminement": "COULOUTRE", + "nomCommune": "COULOUTRE" }, { - "codePostal": "39240", - "codeCommune": "39016", - "libelleAcheminement": "ARINTHOD", - "nomCommune": "ARINTHOD" + "codePostal": "60800", + "codeCommune": "60203", + "libelleAcheminement": "DUVY", + "nomCommune": "DUVY" }, { - "codePostal": "08430", - "codeCommune": "08324", - "libelleAcheminement": "NEUVIZY", - "nomCommune": "NEUVIZY" + "codePostal": "69690", + "codeCommune": "69021", + "libelleAcheminement": "BESSENAY", + "nomCommune": "BESSENAY" }, { - "codePostal": "64220", - "codeCommune": "64484", - "libelleAcheminement": "ST JEAN LE VIEUX", - "nomCommune": "ST JEAN LE VIEUX" + "codePostal": "15100", + "codeCommune": "15262", + "libelleAcheminement": "VILLEDIEU", + "nomCommune": "VILLEDIEU" }, { - "codePostal": "46240", - "codeCommune": "46151", - "libelleAcheminement": "LAMOTHE CASSEL", - "nomCommune": "LAMOTHE CASSEL" + "codePostal": "68210", + "codeCommune": "68337", + "libelleAcheminement": "TRAUBACH LE HAUT", + "nomCommune": "TRAUBACH LE HAUT" }, { - "codePostal": "39190", - "codeCommune": "39025", - "libelleAcheminement": "AUGEA", - "nomCommune": "AUGEA" + "codePostal": "58210", + "codeCommune": "58090", + "libelleAcheminement": "COURCELLES", + "nomCommune": "COURCELLES" }, { - "codePostal": "08700", - "codeCommune": "08328", - "libelleAcheminement": "NOUZONVILLE", - "nomCommune": "NOUZONVILLE" + "codePostal": "60210", + "codeCommune": "60205", + "libelleAcheminement": "ELENCOURT", + "nomCommune": "ELENCOURT" }, { - "codePostal": "64270", - "codeCommune": "64499", - "libelleAcheminement": "SALIES DE BEARN", - "nomCommune": "SALIES DE BEARN" + "codePostal": "69220", + "codeCommune": "69045", + "libelleAcheminement": "CHARENTAY", + "nomCommune": "CHARENTAY" }, { - "codePostal": "46090", - "codeCommune": "46156", - "libelleAcheminement": "BELLEFONT LA RAUZE", - "nomCommune": "BELLEFONT LA RAUZE" + "codePostal": "15290", + "codeCommune": "15268", + "libelleAcheminement": "LE ROUGET PERS", + "nomCommune": "LE ROUGET PERS" }, { - "codePostal": "39410", - "codeCommune": "39029", - "libelleAcheminement": "AUMUR", - "nomCommune": "AUMUR" + "codePostal": "68230", + "codeCommune": "68354", + "libelleAcheminement": "WALBACH", + "nomCommune": "WALBACH" }, { - "codePostal": "08430", - "codeCommune": "08341", - "libelleAcheminement": "POIX TERRON", - "nomCommune": "POIX TERRON" + "codePostal": "58210", + "codeCommune": "58093", + "libelleAcheminement": "CUNCY LES VARZY", + "nomCommune": "CUNCY LES VARZY" }, { - "codePostal": "64470", - "codeCommune": "64509", - "libelleAcheminement": "SAUGUIS ST ETIENNE", - "nomCommune": "SAUGUIS ST ETIENNE" + "codePostal": "60157", + "codeCommune": "60206", + "libelleAcheminement": "ELINCOURT STE MARGUERITE", + "nomCommune": "ELINCOURT STE MARGUERITE" }, { - "codePostal": "46160", - "codeCommune": "46157", - "libelleAcheminement": "LARROQUE TOIRAC", - "nomCommune": "LARROQUE TOIRAC" + "codePostal": "69380", + "codeCommune": "69050", + "libelleAcheminement": "CHATILLON", + "nomCommune": "CHATILLON" }, { - "codePostal": "39100", - "codeCommune": "39030", - "libelleAcheminement": "AUTHUME", - "nomCommune": "AUTHUME" + "codePostal": "16500", + "codeCommune": "16001", + "libelleAcheminement": "ABZAC", + "nomCommune": "ABZAC" }, { - "codePostal": "08290", - "codeCommune": "08344", - "libelleAcheminement": "PREZ", - "nomCommune": "PREZ" + "codePostal": "68290", + "codeCommune": "68361", + "libelleAcheminement": "WEGSCHEID", + "nomCommune": "WEGSCHEID" }, { - "codePostal": "64160", - "codeCommune": "64515", - "libelleAcheminement": "SEDZE MAUBECQ", - "nomCommune": "SEDZE MAUBECQ" + "codePostal": "58310", + "codeCommune": "58094", + "libelleAcheminement": "DAMPIERRE SOUS BOUHY", + "nomCommune": "DAMPIERRE SOUS BOUHY" }, { - "codePostal": "46210", - "codeCommune": "46160", - "libelleAcheminement": "LATRONQUIERE", - "nomCommune": "LATRONQUIERE" + "codePostal": "60123", + "codeCommune": "60207", + "libelleAcheminement": "EMEVILLE", + "nomCommune": "EMEVILLE" }, { - "codePostal": "39700", - "codeCommune": "39031", - "libelleAcheminement": "AUXANGE", - "nomCommune": "AUXANGE" + "codePostal": "69440", + "codeCommune": "69051", + "libelleAcheminement": "CHAUSSAN", + "nomCommune": "CHAUSSAN" }, { - "codePostal": "08270", - "codeCommune": "08348", - "libelleAcheminement": "PUISEUX", - "nomCommune": "PUISEUX" + "codePostal": "16110", + "codeCommune": "16003", + "libelleAcheminement": "AGRIS", + "nomCommune": "AGRIS" }, { - "codePostal": "64160", - "codeCommune": "64516", - "libelleAcheminement": "SEDZERE", - "nomCommune": "SEDZERE" + "codePostal": "68920", + "codeCommune": "68365", + "libelleAcheminement": "WETTOLSHEIM", + "nomCommune": "WETTOLSHEIM" }, { - "codePostal": "46500", - "codeCommune": "46165", - "libelleAcheminement": "LAVERGNE", - "nomCommune": "LAVERGNE" + "codePostal": "58300", + "codeCommune": "58095", + "libelleAcheminement": "DECIZE", + "nomCommune": "DECIZE" }, { - "codePostal": "39210", - "codeCommune": "39041", - "libelleAcheminement": "BAUME LES MESSIEURS", - "nomCommune": "BAUME LES MESSIEURS" + "codePostal": "60190", + "codeCommune": "60210", + "libelleAcheminement": "EPINEUSE", + "nomCommune": "EPINEUSE" }, { - "codePostal": "08400", - "codeCommune": "08350", - "libelleAcheminement": "QUATRE CHAMPS", - "nomCommune": "QUATRE CHAMPS" + "codePostal": "69440", + "codeCommune": "69051", + "libelleAcheminement": "CHAUSSAN", + "nomCommune": "CHAUSSAN" }, { - "codePostal": "64170", - "codeCommune": "64521", - "libelleAcheminement": "SERRES STE MARIE", - "nomCommune": "SERRES STE MARIE" + "codePostal": "16140", + "codeCommune": "16008", + "libelleAcheminement": "AMBERAC", + "nomCommune": "AMBERAC" }, { - "codePostal": "46100", - "codeCommune": "46168", - "libelleAcheminement": "LENTILLAC ST BLAISE", - "nomCommune": "LENTILLAC ST BLAISE" + "codePostal": "68760", + "codeCommune": "68372", + "libelleAcheminement": "WILLER SUR THUR", + "nomCommune": "WILLER SUR THUR" }, { - "codePostal": "39100", - "codeCommune": "39042", - "libelleAcheminement": "BAVERANS", - "nomCommune": "BAVERANS" + "codePostal": "58300", + "codeCommune": "58096", + "libelleAcheminement": "DEVAY", + "nomCommune": "DEVAY" }, { - "codePostal": "08400", - "codeCommune": "08351", - "libelleAcheminement": "QUILLY", - "nomCommune": "QUILLY" + "codePostal": "60110", + "codeCommune": "60218", + "libelleAcheminement": "ESCHES", + "nomCommune": "ESCHES" }, { - "codePostal": "64160", - "codeCommune": "64523", - "libelleAcheminement": "SEVIGNACQ", - "nomCommune": "SEVIGNACQ" + "codePostal": "69380", + "codeCommune": "69055", + "libelleAcheminement": "LES CHERES", + "nomCommune": "LES CHERES" }, { - "codePostal": "46700", - "codeCommune": "46187", - "libelleAcheminement": "MAUROUX", - "nomCommune": "MAUROUX" + "codePostal": "16560", + "codeCommune": "16011", + "libelleAcheminement": "ANAIS", + "nomCommune": "ANAIS" }, { - "codePostal": "39310", - "codeCommune": "39046", - "libelleAcheminement": "BELLECOMBE", - "nomCommune": "BELLECOMBE" + "codePostal": "68270", + "codeCommune": "68376", + "libelleAcheminement": "WITTENHEIM", + "nomCommune": "WITTENHEIM" }, { - "codePostal": "08230", - "codeCommune": "08355", - "libelleAcheminement": "REGNIOWEZ", - "nomCommune": "REGNIOWEZ" + "codePostal": "58220", + "codeCommune": "58102", + "libelleAcheminement": "DONZY", + "nomCommune": "DONZY" }, { - "codePostal": "64350", - "codeCommune": "64524", - "libelleAcheminement": "SIMACOURBE", - "nomCommune": "SIMACOURBE" + "codePostal": "60330", + "codeCommune": "60226", + "libelleAcheminement": "EVE", + "nomCommune": "EVE" }, { - "codePostal": "46150", - "codeCommune": "46190", - "libelleAcheminement": "MECHMONT", - "nomCommune": "MECHMONT" + "codePostal": "69380", + "codeCommune": "69056", + "libelleAcheminement": "CHESSY", + "nomCommune": "CHESSY" }, { - "codePostal": "39290", - "codeCommune": "39051", - "libelleAcheminement": "BIARNE", - "nomCommune": "BIARNE" + "codePostal": "16460", + "codeCommune": "16023", + "libelleAcheminement": "AUNAC SUR CHARENTE", + "nomCommune": "AUNAC SUR CHARENTE" }, { - "codePostal": "08450", - "codeCommune": "08357", - "libelleAcheminement": "REMILLY AILLICOURT", - "nomCommune": "REMILLY AILLICOURT" + "codePostal": "68340", + "codeCommune": "68383", + "libelleAcheminement": "ZELLENBERG", + "nomCommune": "ZELLENBERG" }, { - "codePostal": "64370", - "codeCommune": "64541", - "libelleAcheminement": "URDES", - "nomCommune": "URDES" + "codePostal": "58160", + "codeCommune": "58112", + "libelleAcheminement": "LA FERMETE", + "nomCommune": "LA FERMETE" }, { - "codePostal": "46090", - "codeCommune": "46197", - "libelleAcheminement": "LE MONTAT", - "nomCommune": "LE MONTAT" + "codePostal": "60510", + "codeCommune": "60230", + "libelleAcheminement": "LE FAY ST QUENTIN", + "nomCommune": "LE FAY ST QUENTIN" }, { - "codePostal": "39250", - "codeCommune": "39053", - "libelleAcheminement": "BIEF DU FOURG", - "nomCommune": "BIEF DU FOURG" + "codePostal": "69115", + "codeCommune": "69058", + "libelleAcheminement": "CHIROUBLES", + "nomCommune": "CHIROUBLES" }, { - "codePostal": "08220", - "codeCommune": "08360", - "libelleAcheminement": "RENNEVILLE", - "nomCommune": "RENNEVILLE" + "codePostal": "16300", + "codeCommune": "16028", + "libelleAcheminement": "BARBEZIEUX ST HILAIRE", + "nomCommune": "BARBEZIEUX ST HILAIRE" }, { - "codePostal": "64490", - "codeCommune": "64542", - "libelleAcheminement": "URDOS", - "nomCommune": "URDOS" + "codePostal": "69790", + "codeCommune": "69002", + "libelleAcheminement": "AIGUEPERSE", + "nomCommune": "AIGUEPERSE" }, { - "codePostal": "46160", - "codeCommune": "46198", - "libelleAcheminement": "MONTBRUN", - "nomCommune": "MONTBRUN" + "codePostal": "58240", + "codeCommune": "58115", + "libelleAcheminement": "FLEURY SUR LOIRE", + "nomCommune": "FLEURY SUR LOIRE" }, { - "codePostal": "39230", - "codeCommune": "39060", - "libelleAcheminement": "BOIS DE GAND", - "nomCommune": "BOIS DE GAND" + "codePostal": "60700", + "codeCommune": "60238", + "libelleAcheminement": "FLEURINES", + "nomCommune": "FLEURINES" }, { - "codePostal": "08300", - "codeCommune": "08362", - "libelleAcheminement": "RETHEL", - "nomCommune": "RETHEL" + "codePostal": "69380", + "codeCommune": "69059", + "libelleAcheminement": "CIVRIEUX D AZERGUES", + "nomCommune": "CIVRIEUX D AZERGUES" }, { - "codePostal": "64430", - "codeCommune": "64543", - "libelleAcheminement": "UREPEL", - "nomCommune": "UREPEL" + "codePostal": "16300", + "codeCommune": "16030", + "libelleAcheminement": "BARRET", + "nomCommune": "BARRET" }, { - "codePostal": "46350", - "codeCommune": "46215", - "libelleAcheminement": "PAYRAC", - "nomCommune": "PAYRAC" + "codePostal": "69250", + "codeCommune": "69003", + "libelleAcheminement": "ALBIGNY SUR SAONE", + "nomCommune": "ALBIGNY SUR SAONE" }, { - "codePostal": "39290", - "codeCommune": "39074", - "libelleAcheminement": "BRANS", - "nomCommune": "BRANS" + "codePostal": "58270", + "codeCommune": "58119", + "libelleAcheminement": "FRASNAY REUGNY", + "nomCommune": "FRASNAY REUGNY" }, { - "codePostal": "08220", - "codeCommune": "08369", - "libelleAcheminement": "LA ROMAGNE", - "nomCommune": "LA ROMAGNE" + "codePostal": "60690", + "codeCommune": "60242", + "libelleAcheminement": "FONTAINE LAVAGANNE", + "nomCommune": "FONTAINE LAVAGANNE" }, { - "codePostal": "64330", - "codeCommune": "64552", - "libelleAcheminement": "VIALER", - "nomCommune": "VIALER" + "codePostal": "69870", + "codeCommune": "69060", + "libelleAcheminement": "CLAVEISOLLES", + "nomCommune": "CLAVEISOLLES" }, { - "codePostal": "46300", - "codeCommune": "46216", - "libelleAcheminement": "PAYRIGNAC", - "nomCommune": "PAYRIGNAC" + "codePostal": "16210", + "codeCommune": "16034", + "libelleAcheminement": "BAZAC", + "nomCommune": "BAZAC" }, { - "codePostal": "39570", - "codeCommune": "39079", - "libelleAcheminement": "BRIOD", - "nomCommune": "BRIOD" + "codePostal": "69480", + "codeCommune": "69005", + "libelleAcheminement": "AMBERIEUX D AZERGUES", + "nomCommune": "AMBERIEUX" }, { - "codePostal": "08150", - "codeCommune": "08370", - "libelleAcheminement": "ROUVROY SUR AUDRY", - "nomCommune": "ROUVROY SUR AUDRY" + "codePostal": "58230", + "codeCommune": "58125", + "libelleAcheminement": "GIEN SUR CURE", + "nomCommune": "GIEN SUR CURE" }, { - "codePostal": "64190", - "codeCommune": "64555", - "libelleAcheminement": "VIELLENAVE DE NAVARRENX", - "nomCommune": "VIELLENAVE DE NAVARRENX" + "codePostal": "60220", + "codeCommune": "60245", + "libelleAcheminement": "FORMERIE", + "nomCommune": "FORMERIE" }, { - "codePostal": "46250", - "codeCommune": "46222", - "libelleAcheminement": "POMAREDE", - "nomCommune": "POMAREDE" + "codePostal": "69220", + "codeCommune": "69065", + "libelleAcheminement": "CORCELLES EN BEAUJOLAIS", + "nomCommune": "CORCELLES EN BEAUJOLAIS" }, { - "codePostal": "39110", - "codeCommune": "39084", - "libelleAcheminement": "CERNANS", - "nomCommune": "CERNANS" + "codePostal": "16250", + "codeCommune": "16046", + "libelleAcheminement": "COTEAUX DU BLANZACAIS", + "nomCommune": "COTEAUX DU BLANZACAIS" }, { - "codePostal": "08130", - "codeCommune": "08374", - "libelleAcheminement": "LA SABOTTERIE", - "nomCommune": "LA SABOTTERIE" + "codePostal": "69550", + "codeCommune": "69006", + "libelleAcheminement": "AMPLEPUIS", + "nomCommune": "AMPLEPUIS" }, { - "codePostal": "64150", - "codeCommune": "64556", - "libelleAcheminement": "VIELLESEGURE", - "nomCommune": "VIELLESEGURE" + "codePostal": "58700", + "codeCommune": "58127", + "libelleAcheminement": "GIRY", + "nomCommune": "GIRY" }, { - "codePostal": "46220", - "codeCommune": "46225", - "libelleAcheminement": "PRAYSSAC", - "nomCommune": "PRAYSSAC" + "codePostal": "60220", + "codeCommune": "60248", + "libelleAcheminement": "FOUILLOY", + "nomCommune": "FOUILLOY" }, { - "codePostal": "39240", - "codeCommune": "39086", - "libelleAcheminement": "CERNON", - "nomCommune": "CERNON" + "codePostal": "69470", + "codeCommune": "69066", + "libelleAcheminement": "COURS", + "nomCommune": "COURS" }, { - "codePostal": "08360", - "codeCommune": "08380", - "libelleAcheminement": "ST FERGEUX", - "nomCommune": "ST FERGEUX" + "codePostal": "16190", + "codeCommune": "16052", + "libelleAcheminement": "BORS DE MONTMOREAU", + "nomCommune": "BORS DE MONTMOREAU" }, { - "codePostal": "64410", - "codeCommune": "64557", - "libelleAcheminement": "VIGNES", - "nomCommune": "VIGNES" + "codePostal": "69380", + "codeCommune": "69020", + "libelleAcheminement": "BELMONT D AZERGUES", + "nomCommune": "BELMONT D AZERGUES" }, { - "codePostal": "46270", - "codeCommune": "46226", - "libelleAcheminement": "PRENDEIGNES", - "nomCommune": "PRENDEIGNES" + "codePostal": "58130", + "codeCommune": "58131", + "libelleAcheminement": "GUERIGNY", + "nomCommune": "GUERIGNY" }, { - "codePostal": "39800", - "codeCommune": "39094", - "libelleAcheminement": "CHAMOLE", - "nomCommune": "CHAMOLE" + "codePostal": "60800", + "codeCommune": "60261", + "libelleAcheminement": "FRESNOY LE LUAT", + "nomCommune": "FRESNOY LE LUAT" }, { - "codePostal": "08400", - "codeCommune": "08390", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "69250", + "codeCommune": "69071", + "libelleAcheminement": "CURIS AU MONT D OR", + "nomCommune": "CURIS AU MONT D OR" }, { - "codePostal": "65240", - "codeCommune": "65003", - "libelleAcheminement": "ADERVIELLE POUCHERGUES", - "nomCommune": "ADERVIELLE POUCHERGUES" + "codePostal": "16360", + "codeCommune": "16053", + "libelleAcheminement": "BORS DE BAIGNES", + "nomCommune": "BORS DE BAIGNES" }, { - "codePostal": "46130", - "codeCommune": "46228", - "libelleAcheminement": "PRUDHOMAT", - "nomCommune": "PRUDHOMAT" + "codePostal": "69690", + "codeCommune": "69021", + "libelleAcheminement": "BESSENAY", + "nomCommune": "BESSENAY" }, { - "codePostal": "39600", - "codeCommune": "39095", - "libelleAcheminement": "CHAMPAGNE SUR LOUE", - "nomCommune": "CHAMPAGNE SUR LOUE" + "codePostal": "58290", + "codeCommune": "58135", + "libelleAcheminement": "ISENAY", + "nomCommune": "ISENAY" }, { - "codePostal": "08310", - "codeCommune": "08393", - "libelleAcheminement": "ST PIERRE A ARNES", - "nomCommune": "ST PIERRE A ARNES" + "codePostal": "60480", + "codeCommune": "60265", + "libelleAcheminement": "FROISSY", + "nomCommune": "FROISSY" }, { - "codePostal": "65440", - "codeCommune": "65006", - "libelleAcheminement": "ANCIZAN", - "nomCommune": "ANCIZAN" + "codePostal": "69570", + "codeCommune": "69072", + "libelleAcheminement": "DARDILLY", + "nomCommune": "DARDILLY" }, { - "codePostal": "46130", - "codeCommune": "46229", - "libelleAcheminement": "PUYBRUN", - "nomCommune": "PUYBRUN" + "codePostal": "16200", + "codeCommune": "16056", + "libelleAcheminement": "BOURG CHARENTE", + "nomCommune": "BOURG CHARENTE" }, { - "codePostal": "39290", - "codeCommune": "39096", - "libelleAcheminement": "CHAMPAGNEY", - "nomCommune": "CHAMPAGNEY" + "codePostal": "69690", + "codeCommune": "69021", + "libelleAcheminement": "BESSENAY", + "nomCommune": "BESSENAY" }, { - "codePostal": "08300", - "codeCommune": "08397", - "libelleAcheminement": "ST REMY LE PETIT", - "nomCommune": "ST REMY LE PETIT" + "codePostal": "58250", + "codeCommune": "58139", + "libelleAcheminement": "LANTY", + "nomCommune": "LANTY" }, { - "codePostal": "65370", - "codeCommune": "65012", - "libelleAcheminement": "ANLA", - "nomCommune": "ANLA" + "codePostal": "60360", + "codeCommune": "60267", + "libelleAcheminement": "LE GALLET", + "nomCommune": "LE GALLET" }, { - "codePostal": "46500", - "codeCommune": "46238", - "libelleAcheminement": "RIGNAC", - "nomCommune": "RIGNAC" + "codePostal": "69130", + "codeCommune": "69081", + "libelleAcheminement": "ECULLY", + "nomCommune": "ECULLY" }, { - "codePostal": "39500", - "codeCommune": "39099", - "libelleAcheminement": "CHAMPDIVERS", - "nomCommune": "CHAMPDIVERS" + "codePostal": "16210", + "codeCommune": "16063", + "libelleAcheminement": "BRIE SOUS CHALAIS", + "nomCommune": "BRIE SOUS CHALAIS" }, { - "codePostal": "08130", - "codeCommune": "08401", - "libelleAcheminement": "SAULCES CHAMPENOISES", - "nomCommune": "SAULCES CHAMPENOISES" + "codePostal": "69620", + "codeCommune": "69024", + "libelleAcheminement": "VAL D OINGT", + "nomCommune": "VAL D OINGT" }, { - "codePostal": "65400", - "codeCommune": "65022", - "libelleAcheminement": "ARCIZANS DESSUS", - "nomCommune": "ARCIZANS DESSUS" + "codePostal": "58230", + "codeCommune": "58141", + "libelleAcheminement": "LAVAULT DE FRETOY", + "nomCommune": "LAVAULT DE FRETOY" }, { - "codePostal": "46200", - "codeCommune": "46239", - "libelleAcheminement": "LE ROC", - "nomCommune": "LE ROC" + "codePostal": "60129", + "codeCommune": "60274", + "libelleAcheminement": "GLAIGNES", + "nomCommune": "GLAIGNES" }, { - "codePostal": "39260", - "codeCommune": "39106", - "libelleAcheminement": "CHARCHILLA", - "nomCommune": "CHARCHILLA" + "codePostal": "69270", + "codeCommune": "69088", + "libelleAcheminement": "FONTAINES SUR SAONE", + "nomCommune": "FONTAINES SUR SAONE" }, { - "codePostal": "08270", - "codeCommune": "08402", - "libelleAcheminement": "SAULCES MONCLIN", - "nomCommune": "SAULCES MONCLIN" + "codePostal": "16500", + "codeCommune": "16065", + "libelleAcheminement": "BRILLAC", + "nomCommune": "BRILLAC" }, { - "codePostal": "65200", - "codeCommune": "65024", - "libelleAcheminement": "ARGELES BAGNERES", - "nomCommune": "ARGELES BAGNERES" + "codePostal": "69620", + "codeCommune": "69026", + "libelleAcheminement": "LE BREUIL", + "nomCommune": "LE BREUIL" }, { - "codePostal": "46500", - "codeCommune": "46240", - "libelleAcheminement": "ROCAMADOUR", - "nomCommune": "ROCAMADOUR" + "codePostal": "58700", + "codeCommune": "58147", + "libelleAcheminement": "LURCY LE BOURG", + "nomCommune": "LURCY LE BOURG" }, { - "codePostal": "39240", - "codeCommune": "39111", - "libelleAcheminement": "CHARNOD", - "nomCommune": "CHARNOD" + "codePostal": "60650", + "codeCommune": "60275", + "libelleAcheminement": "GLATIGNY", + "nomCommune": "GLATIGNY" }, { - "codePostal": "08220", - "codeCommune": "08413", - "libelleAcheminement": "SERAINCOURT", - "nomCommune": "SERAINCOURT" + "codePostal": "69170", + "codeCommune": "69102", + "libelleAcheminement": "JOUX", + "nomCommune": "JOUX" }, { - "codePostal": "65400", - "codeCommune": "65032", - "libelleAcheminement": "ARRENS MARSOUS", - "nomCommune": "ARRENS MARSOUS" + "codePostal": "16150", + "codeCommune": "16071", + "libelleAcheminement": "CHABRAC", + "nomCommune": "CHABRAC" }, { - "codePostal": "46500", - "codeCommune": "46246", - "libelleAcheminement": "SAIGNES", - "nomCommune": "SAIGNES" + "codePostal": "69126", + "codeCommune": "69028", + "libelleAcheminement": "BRINDAS", + "nomCommune": "BRINDAS" }, { - "codePostal": "39130", - "codeCommune": "39122", - "libelleAcheminement": "CHATILLON", - "nomCommune": "CHATILLON" + "codePostal": "58190", + "codeCommune": "58154", + "libelleAcheminement": "LA MAISON DIEU", + "nomCommune": "LA MAISON DIEU" }, { - "codePostal": "08370", - "codeCommune": "08421", - "libelleAcheminement": "SIGNY MONTLIBERT", - "nomCommune": "SIGNY MONTLIBERT" + "codePostal": "60000", + "codeCommune": "60277", + "libelleAcheminement": "GOINCOURT", + "nomCommune": "GOINCOURT" }, { - "codePostal": "65400", - "codeCommune": "65032", - "libelleAcheminement": "ARRENS MARSOUS", - "nomCommune": "ARRENS MARSOUS" + "codePostal": "69640", + "codeCommune": "69105", + "libelleAcheminement": "LACENAS", + "nomCommune": "LACENAS" }, { - "codePostal": "46260", - "codeCommune": "46247", - "libelleAcheminement": "SAILLAC", - "nomCommune": "SAILLAC" + "codePostal": "16350", + "codeCommune": "16076", + "libelleAcheminement": "CHAMPAGNE MOUTON", + "nomCommune": "CHAMPAGNE MOUTON" }, { - "codePostal": "39150", - "codeCommune": "39130", - "libelleAcheminement": "NANCHEZ", - "nomCommune": "NANCHEZ" + "codePostal": "69210", + "codeCommune": "69032", + "libelleAcheminement": "BULLY", + "nomCommune": "BULLY" }, { - "codePostal": "08130", - "codeCommune": "08433", - "libelleAcheminement": "SUZANNE", - "nomCommune": "SUZANNE" + "codePostal": "58290", + "codeCommune": "58161", + "libelleAcheminement": "MAUX", + "nomCommune": "MAUX" }, { - "codePostal": "65240", - "codeCommune": "65039", - "libelleAcheminement": "ASPIN AURE", - "nomCommune": "ASPIN AURE" + "codePostal": "60120", + "codeCommune": "60283", + "libelleAcheminement": "GOUY LES GROSEILLERS", + "nomCommune": "GOUY LES GROSEILLERS" }, { - "codePostal": "46120", - "codeCommune": "46249", - "libelleAcheminement": "ST BRESSOU", - "nomCommune": "ST BRESSOU" + "codePostal": "69870", + "codeCommune": "69107", + "libelleAcheminement": "LAMURE SUR AZERGUES", + "nomCommune": "LAMURE SUR AZERGUES" }, { - "codePostal": "39150", - "codeCommune": "39130", - "libelleAcheminement": "NANCHEZ", - "nomCommune": "NANCHEZ" + "codePostal": "16430", + "codeCommune": "16078", + "libelleAcheminement": "CHAMPNIERS", + "nomCommune": "CHAMPNIERS" }, { - "codePostal": "08240", - "codeCommune": "08437", - "libelleAcheminement": "TAILLY", - "nomCommune": "TAILLY" + "codePostal": "69270", + "codeCommune": "69033", + "libelleAcheminement": "CAILLOUX SUR FONTAINES", + "nomCommune": "CAILLOUX SUR FONTAINES" }, { - "codePostal": "65400", - "codeCommune": "65045", - "libelleAcheminement": "AUCUN", - "nomCommune": "AUCUN" + "codePostal": "58410", + "codeCommune": "58162", + "libelleAcheminement": "MENESTREAU", + "nomCommune": "MENESTREAU" }, { - "codePostal": "46400", - "codeCommune": "46251", - "libelleAcheminement": "ST CERE", - "nomCommune": "ST CERE" + "codePostal": "60650", + "codeCommune": "60298", + "libelleAcheminement": "HANVOILE", + "nomCommune": "HANVOILE" }, { - "codePostal": "39110", - "codeCommune": "39133", - "libelleAcheminement": "CHAUX CHAMPAGNY", - "nomCommune": "CHAUX CHAMPAGNY" + "codePostal": "69700", + "codeCommune": "69118", + "libelleAcheminement": "LOIRE SUR RHONE", + "nomCommune": "LOIRE SUR RHONE" }, { - "codePostal": "08110", - "codeCommune": "08444", - "libelleAcheminement": "TETAIGNE", - "nomCommune": "TETAIGNE" + "codePostal": "16140", + "codeCommune": "16083", + "libelleAcheminement": "CHARME", + "nomCommune": "CHARME" }, { - "codePostal": "65130", - "codeCommune": "65054", - "libelleAcheminement": "AVEZAC PRAT LAHITTE", - "nomCommune": "AVEZAC PRAT LAHITTE" + "codePostal": "69300", + "codeCommune": "69034", + "libelleAcheminement": "CALUIRE ET CUIRE", + "nomCommune": "CALUIRE ET CUIRE" }, { - "codePostal": "46600", - "codeCommune": "46265", - "libelleAcheminement": "ST DENIS LES MARTEL", - "nomCommune": "ST DENIS LES MARTEL" + "codePostal": "58440", + "codeCommune": "58187", + "libelleAcheminement": "MYENNES", + "nomCommune": "MYENNES" }, { - "codePostal": "39110", - "codeCommune": "39133", - "libelleAcheminement": "CHAUX CHAMPAGNY", - "nomCommune": "CHAUX CHAMPAGNY" + "codePostal": "60510", + "codeCommune": "60302", + "libelleAcheminement": "HAUDIVILLERS", + "nomCommune": "HAUDIVILLERS" }, { - "codePostal": "08090", - "codeCommune": "08450", - "libelleAcheminement": "THIS", - "nomCommune": "THIS" + "codePostal": "69430", + "codeCommune": "69124", + "libelleAcheminement": "MARCHAMPT", + "nomCommune": "MARCHAMPT" }, { - "codePostal": "65400", - "codeCommune": "65055", - "libelleAcheminement": "AYROS ARBOUIX", - "nomCommune": "AYROS ARBOUIX" + "codePostal": "16310", + "codeCommune": "16096", + "libelleAcheminement": "CHERVES CHATELARS", + "nomCommune": "CHERVES CHATELARS" }, { - "codePostal": "46100", - "codeCommune": "46266", - "libelleAcheminement": "ST FELIX", - "nomCommune": "ST FELIX" + "codePostal": "69410", + "codeCommune": "69040", + "libelleAcheminement": "CHAMPAGNE AU MONT D OR", + "nomCommune": "CHAMPAGNE AU MONT D OR" }, { - "codePostal": "39120", - "codeCommune": "39139", - "libelleAcheminement": "CHENE BERNARD", - "nomCommune": "CHENE BERNARD" + "codePostal": "58190", + "codeCommune": "58190", + "libelleAcheminement": "NEUFFONTAINES", + "nomCommune": "NEUFFONTAINES" }, { - "codePostal": "08270", - "codeCommune": "08467", - "libelleAcheminement": "VAUX MONTREUIL", - "nomCommune": "VAUX MONTREUIL" + "codePostal": "60350", + "codeCommune": "60305", + "libelleAcheminement": "HAUTEFONTAINE", + "nomCommune": "HAUTEFONTAINE" }, { - "codePostal": "65400", - "codeCommune": "65056", - "libelleAcheminement": "AYZAC OST", - "nomCommune": "AYZAC OST" + "codePostal": "69380", + "codeCommune": "69125", + "libelleAcheminement": "MARCILLY D AZERGUES", + "nomCommune": "MARCILLY D AZERGUES" }, { - "codePostal": "46310", - "codeCommune": "46267", - "libelleAcheminement": "ST GERMAIN DU BEL AIR", - "nomCommune": "ST GERMAIN DU BEL AIR" + "codePostal": "16370", + "codeCommune": "16097", + "libelleAcheminement": "CHERVES RICHEMONT", + "nomCommune": "CHERVES RICHEMONT" }, { - "codePostal": "39290", - "codeCommune": "39141", - "libelleAcheminement": "CHEVIGNY", - "nomCommune": "CHEVIGNY" + "codePostal": "69630", + "codeCommune": "69043", + "libelleAcheminement": "CHAPONOST", + "nomCommune": "CHAPONOST" }, { - "codePostal": "08430", - "codeCommune": "08478", - "libelleAcheminement": "VILLERS LE TILLEUL", - "nomCommune": "VILLERS LE TILLEUL" + "codePostal": "58250", + "codeCommune": "58195", + "libelleAcheminement": "LA NOCLE MAULAIX", + "nomCommune": "LA NOCLE MAULAIX" }, { - "codePostal": "65360", - "codeCommune": "65063", - "libelleAcheminement": "BARBAZAN DESSUS", - "nomCommune": "BARBAZAN DESSUS" + "codePostal": "60119", + "codeCommune": "60309", + "libelleAcheminement": "HENONVILLE", + "nomCommune": "HENONVILLE" }, { - "codePostal": "46270", - "codeCommune": "46272", - "libelleAcheminement": "ST JEAN MIRABEL", - "nomCommune": "ST JEAN MIRABEL" + "codePostal": "69620", + "codeCommune": "69134", + "libelleAcheminement": "MOIRE", + "nomCommune": "MOIRE" }, { - "codePostal": "39570", - "codeCommune": "39168", - "libelleAcheminement": "COURBETTE", - "nomCommune": "COURBETTE" + "codePostal": "16480", + "codeCommune": "16099", + "libelleAcheminement": "CHILLAC", + "nomCommune": "CHILLAC" }, { - "codePostal": "08310", - "codeCommune": "08484", - "libelleAcheminement": "VILLE SUR RETOURNE", - "nomCommune": "VILLE SUR RETOURNE" + "codePostal": "69380", + "codeCommune": "69052", + "libelleAcheminement": "CHAZAY D AZERGUES", + "nomCommune": "CHAZAY D AZERGUES" }, { - "codePostal": "65380", - "codeCommune": "65067", - "libelleAcheminement": "BARRY", - "nomCommune": "BARRY" + "codePostal": "58190", + "codeCommune": "58197", + "libelleAcheminement": "NUARS", + "nomCommune": "NUARS" }, { - "codePostal": "46330", - "codeCommune": "46276", - "libelleAcheminement": "ST MARTIN LABOUVAL", - "nomCommune": "ST MARTIN LABOUVAL" + "codePostal": "60112", + "codeCommune": "60310", + "libelleAcheminement": "HERCHIES", + "nomCommune": "HERCHIES" }, { - "codePostal": "39570", - "codeCommune": "39169", - "libelleAcheminement": "COURBOUZON", - "nomCommune": "COURBOUZON" + "codePostal": "69430", + "codeCommune": "69135", + "libelleAcheminement": "DEUX GROSNES", + "nomCommune": "DEUX GROSNES" }, { - "codePostal": "08440", - "codeCommune": "08488", - "libelleAcheminement": "VIVIER AU COURT", - "nomCommune": "VIVIER AU COURT" + "codePostal": "16700", + "codeCommune": "16104", + "libelleAcheminement": "CONDAC", + "nomCommune": "CONDAC" }, { - "codePostal": "65100", - "codeCommune": "65070", - "libelleAcheminement": "BARTRES", - "nomCommune": "BARTRES" + "codePostal": "69640", + "codeCommune": "69061", + "libelleAcheminement": "COGNY", + "nomCommune": "COGNY" }, { - "codePostal": "46120", - "codeCommune": "46279", - "libelleAcheminement": "ST MAURICE EN QUERCY", - "nomCommune": "ST MAURICE EN QUERCY" + "codePostal": "58110", + "codeCommune": "58202", + "libelleAcheminement": "OUGNY", + "nomCommune": "OUGNY" }, { - "codePostal": "39260", - "codeCommune": "39175", - "libelleAcheminement": "COYRON", - "nomCommune": "COYRON" + "codePostal": "60120", + "codeCommune": "60311", + "libelleAcheminement": "LA HERELLE", + "nomCommune": "LA HERELLE" }, { - "codePostal": "08270", - "codeCommune": "08496", - "libelleAcheminement": "WAGNON", - "nomCommune": "WAGNON" + "codePostal": "69860", + "codeCommune": "69135", + "libelleAcheminement": "DEUX GROSNES", + "nomCommune": "DEUX GROSNES" }, { - "codePostal": "65250", - "codeCommune": "65076", - "libelleAcheminement": "BAZUS NESTE", - "nomCommune": "BAZUS NESTE" + "codePostal": "16200", + "codeCommune": "16109", + "libelleAcheminement": "COURBILLAC", + "nomCommune": "COURBILLAC" }, { - "codePostal": "46400", - "codeCommune": "46281", - "libelleAcheminement": "ST MEDARD DE PRESQUE", - "nomCommune": "ST MEDARD DE PRESQUE" + "codePostal": "69590", + "codeCommune": "69062", + "libelleAcheminement": "COISE", + "nomCommune": "COISE" }, { - "codePostal": "39260", - "codeCommune": "39179", - "libelleAcheminement": "CRENANS", - "nomCommune": "CRENANS" + "codePostal": "58130", + "codeCommune": "58204", + "libelleAcheminement": "VAUX D AMOGNES", + "nomCommune": "VAUX D AMOGNES" }, { - "codePostal": "08090", - "codeCommune": "08498", - "libelleAcheminement": "WARNECOURT", - "nomCommune": "WARNECOURT" + "codePostal": "60250", + "codeCommune": "60317", + "libelleAcheminement": "HONDAINVILLE", + "nomCommune": "HONDAINVILLE" }, { - "codePostal": "65400", - "codeCommune": "65077", - "libelleAcheminement": "BEAUCENS", - "nomCommune": "BEAUCENS" + "codePostal": "69460", + "codeCommune": "69145", + "libelleAcheminement": "ODENAS", + "nomCommune": "ODENAS" }, { - "codePostal": "46130", - "codeCommune": "46284", - "libelleAcheminement": "ST MICHEL LOUBEJOU", - "nomCommune": "ST MICHEL LOUBEJOU" + "codePostal": "16700", + "codeCommune": "16110", + "libelleAcheminement": "COURCOME", + "nomCommune": "COURCOME" }, { - "codePostal": "39290", - "codeCommune": "39188", - "libelleAcheminement": "DAMMARTIN MARPAIN", - "nomCommune": "DAMMARTIN MARPAIN" + "codePostal": "69420", + "codeCommune": "69064", + "libelleAcheminement": "CONDRIEU", + "nomCommune": "CONDRIEU" }, { - "codePostal": "08270", - "codeCommune": "08500", - "libelleAcheminement": "WIGNICOURT", - "nomCommune": "WIGNICOURT" + "codePostal": "58230", + "codeCommune": "58210", + "libelleAcheminement": "PLANCHEZ", + "nomCommune": "PLANCHEZ" }, { - "codePostal": "65710", - "codeCommune": "65078", - "libelleAcheminement": "BEAUDEAN", - "nomCommune": "BEAUDEAN" + "codePostal": "60173", + "codeCommune": "60321", + "libelleAcheminement": "IVRY LE TEMPLE", + "nomCommune": "IVRY LE TEMPLE" }, { - "codePostal": "46100", - "codeCommune": "46288", - "libelleAcheminement": "ST PERDOUX", - "nomCommune": "ST PERDOUX" + "codePostal": "69530", + "codeCommune": "69148", + "libelleAcheminement": "ORLIENAS", + "nomCommune": "ORLIENAS" }, { - "codePostal": "39290", - "codeCommune": "39188", - "libelleAcheminement": "DAMMARTIN MARPAIN", - "nomCommune": "DAMMARTIN MARPAIN" + "codePostal": "16300", + "codeCommune": "16116", + "libelleAcheminement": "CRITEUIL LA MAGDELEINE", + "nomCommune": "CRITEUIL LA MAGDELEINE" }, { - "codePostal": "08110", - "codeCommune": "08501", - "libelleAcheminement": "WILLIERS", - "nomCommune": "WILLIERS" + "codePostal": "69220", + "codeCommune": "69077", + "libelleAcheminement": "DRACE", + "nomCommune": "DRACE" }, { - "codePostal": "65380", - "codeCommune": "65080", - "libelleAcheminement": "BENAC", - "nomCommune": "BENAC" + "codePostal": "58170", + "codeCommune": "58211", + "libelleAcheminement": "POIL", + "nomCommune": "POIL" }, { - "codePostal": "46320", - "codeCommune": "46292", - "libelleAcheminement": "ST SIMON", - "nomCommune": "ST SIMON" + "codePostal": "60240", + "codeCommune": "60322", + "libelleAcheminement": "JAMERICOURT", + "nomCommune": "JAMERICOURT" }, { - "codePostal": "39500", - "codeCommune": "39189", - "libelleAcheminement": "DAMPARIS", - "nomCommune": "DAMPARIS" + "codePostal": "69310", + "codeCommune": "69152", + "libelleAcheminement": "PIERRE BENITE", + "nomCommune": "PIERRE BENITE" }, { - "codePostal": "09310", - "codeCommune": "09004", - "libelleAcheminement": "ALBIES", - "nomCommune": "ALBIES" + "codePostal": "16190", + "codeCommune": "16118", + "libelleAcheminement": "DEVIAT", + "nomCommune": "DEVIAT" }, { - "codePostal": "65360", - "codeCommune": "65084", - "libelleAcheminement": "BERNAC DESSUS", - "nomCommune": "BERNAC DESSUS" + "codePostal": "69250", + "codeCommune": "69085", + "libelleAcheminement": "FLEURIEU SUR SAONE", + "nomCommune": "FLEURIEU SUR SAONE" }, { - "codePostal": "46160", - "codeCommune": "46294", - "libelleAcheminement": "ST SULPICE", - "nomCommune": "ST SULPICE" + "codePostal": "58140", + "codeCommune": "58216", + "libelleAcheminement": "POUQUES LORMES", + "nomCommune": "POUQUES LORMES" }, { - "codePostal": "39700", - "codeCommune": "39190", - "libelleAcheminement": "DAMPIERRE", - "nomCommune": "DAMPIERRE" + "codePostal": "60150", + "codeCommune": "60323", + "libelleAcheminement": "JANVILLE", + "nomCommune": "JANVILLE" }, { - "codePostal": "09240", - "codeCommune": "09007", - "libelleAcheminement": "ALLIERES", - "nomCommune": "ALLIERES" + "codePostal": "69400", + "codeCommune": "69159", + "libelleAcheminement": "PORTE DES PIERRES DOREES", + "nomCommune": "PORTE DES PIERRES DOREES" }, { - "codePostal": "65220", - "codeCommune": "65085", - "libelleAcheminement": "BERNADETS DEBAT", - "nomCommune": "BERNADETS DEBAT" + "codePostal": "16290", + "codeCommune": "16121", + "libelleAcheminement": "DOUZAT", + "nomCommune": "DOUZAT" }, { - "codePostal": "46700", - "codeCommune": "46305", - "libelleAcheminement": "SERIGNAC", - "nomCommune": "SERIGNAC" + "codePostal": "69270", + "codeCommune": "69087", + "libelleAcheminement": "FONTAINES ST MARTIN", + "nomCommune": "FONTAINES ST MARTIN" }, { - "codePostal": "39210", - "codeCommune": "39199", - "libelleAcheminement": "DOMBLANS", - "nomCommune": "DOMBLANS" + "codePostal": "58250", + "codeCommune": "58221", + "libelleAcheminement": "REMILLY", + "nomCommune": "REMILLY" }, { - "codePostal": "09240", - "codeCommune": "09009", - "libelleAcheminement": "ALZEN", - "nomCommune": "ALZEN" + "codePostal": "60880", + "codeCommune": "60325", + "libelleAcheminement": "JAUX", + "nomCommune": "JAUX" }, { - "codePostal": "65590", - "codeCommune": "65099", - "libelleAcheminement": "BORDERES LOURON", - "nomCommune": "BORDERES LOURON" + "codePostal": "69870", + "codeCommune": "69160", + "libelleAcheminement": "POULE LES ECHARMEAUX", + "nomCommune": "POULE LES ECHARMEAUX" }, { - "codePostal": "46190", - "codeCommune": "46311", - "libelleAcheminement": "SOUSCEYRAC EN QUERCY", - "nomCommune": "SOUSCEYRAC EN QUERCY" + "codePostal": "16210", + "codeCommune": "16130", + "libelleAcheminement": "LES ESSARDS", + "nomCommune": "LES ESSARDS" }, { - "codePostal": "39160", - "codeCommune": "39209", - "libelleAcheminement": "VAL D EPY", - "nomCommune": "VAL D EPY" + "codePostal": "69870", + "codeCommune": "69093", + "libelleAcheminement": "GRANDRIS", + "nomCommune": "GRANDRIS" }, { - "codePostal": "09250", - "codeCommune": "09012", - "libelleAcheminement": "APPY", - "nomCommune": "APPY" + "codePostal": "58230", + "codeCommune": "58226", + "libelleAcheminement": "ST AGNAN", + "nomCommune": "ST AGNAN" }, { - "codePostal": "65590", - "codeCommune": "65099", - "libelleAcheminement": "BORDERES LOURON", - "nomCommune": "BORDERES LOURON" + "codePostal": "60680", + "codeCommune": "60326", + "libelleAcheminement": "JONQUIERES", + "nomCommune": "JONQUIERES" }, { - "codePostal": "46150", - "codeCommune": "46316", - "libelleAcheminement": "THEDIRAC", - "nomCommune": "THEDIRAC" + "codePostal": "69650", + "codeCommune": "69163", + "libelleAcheminement": "QUINCIEUX", + "nomCommune": "QUINCIEUX" }, { - "codePostal": "39160", - "codeCommune": "39209", - "libelleAcheminement": "VAL D EPY", - "nomCommune": "VAL D EPY" + "codePostal": "16500", + "codeCommune": "16131", + "libelleAcheminement": "ESSE", + "nomCommune": "ESSE" }, { - "codePostal": "09800", - "codeCommune": "09017", - "libelleAcheminement": "ARRIEN EN BETHMALE", - "nomCommune": "ARRIEN EN BETHMALE" + "codePostal": "69290", + "codeCommune": "69094", + "libelleAcheminement": "GREZIEU LA VARENNE", + "nomCommune": "GREZIEU LA VARENNE" }, { - "codePostal": "65350", - "codeCommune": "65104", - "libelleAcheminement": "BOULIN", - "nomCommune": "BOULIN" + "codePostal": "58190", + "codeCommune": "58230", + "libelleAcheminement": "ST AUBIN DES CHAUMES", + "nomCommune": "ST AUBIN DES CHAUMES" }, { - "codePostal": "46260", - "codeCommune": "46333", - "libelleAcheminement": "VIDAILLAC", - "nomCommune": "VIDAILLAC" + "codePostal": "60590", + "codeCommune": "60331", + "libelleAcheminement": "LABOSSE", + "nomCommune": "LABOSSE" }, { - "codePostal": "39320", - "codeCommune": "39209", - "libelleAcheminement": "VAL D EPY", - "nomCommune": "VAL D EPY" + "codePostal": "69440", + "codeCommune": "69166", + "libelleAcheminement": "RIVERIE", + "nomCommune": "RIVERIE" }, { - "codePostal": "09110", - "codeCommune": "09023", - "libelleAcheminement": "ASCOU", - "nomCommune": "ASCOU" + "codePostal": "16220", + "codeCommune": "16135", + "libelleAcheminement": "EYMOUTHIERS", + "nomCommune": "EYMOUTHIERS" }, { - "codePostal": "65220", - "codeCommune": "65110", - "libelleAcheminement": "BUGARD", - "nomCommune": "BUGARD" + "codePostal": "69610", + "codeCommune": "69095", + "libelleAcheminement": "GREZIEU LE MARCHE", + "nomCommune": "GREZIEU LE MARCHE" }, { - "codePostal": "46210", - "codeCommune": "46338", - "libelleAcheminement": "BESSONIES", - "nomCommune": "BESSONIES" + "codePostal": "58200", + "codeCommune": "58251", + "libelleAcheminement": "ST LOUP DES BOIS", + "nomCommune": "ST LOUP DES BOIS" }, { - "codePostal": "39700", - "codeCommune": "39219", - "libelleAcheminement": "EVANS", - "nomCommune": "EVANS" + "codePostal": "60330", + "codeCommune": "60341", + "libelleAcheminement": "LAGNY LE SEC", + "nomCommune": "LAGNY LE SEC" }, { - "codePostal": "09230", - "codeCommune": "09033", - "libelleAcheminement": "BAGERT", - "nomCommune": "BAGERT" + "codePostal": "69640", + "codeCommune": "69167", + "libelleAcheminement": "RIVOLET", + "nomCommune": "RIVOLET" }, { - "codePostal": "65400", - "codeCommune": "65112", - "libelleAcheminement": "BUN", - "nomCommune": "BUN" + "codePostal": "16380", + "codeCommune": "16137", + "libelleAcheminement": "FEUILLADE", + "nomCommune": "FEUILLADE" }, { - "codePostal": "47000", - "codeCommune": "47001", - "libelleAcheminement": "AGEN", - "nomCommune": "AGEN" + "codePostal": "69430", + "codeCommune": "69109", + "libelleAcheminement": "LANTIGNIE", + "nomCommune": "LANTIGNIE" }, { - "codePostal": "39700", - "codeCommune": "39235", - "libelleAcheminement": "FRAISANS", - "nomCommune": "FRAISANS" + "codePostal": "58140", + "codeCommune": "58255", + "libelleAcheminement": "ST MARTIN DU PUY", + "nomCommune": "ST MARTIN DU PUY" }, { - "codePostal": "09800", - "codeCommune": "09035", - "libelleAcheminement": "BALAGUERES", - "nomCommune": "BALAGUERES" + "codePostal": "60850", + "codeCommune": "60344", + "libelleAcheminement": "LALANDELLE", + "nomCommune": "LALANDELLE" }, { - "codePostal": "65500", - "codeCommune": "65119", - "libelleAcheminement": "CAIXON", - "nomCommune": "CAIXON" + "codePostal": "69510", + "codeCommune": "69170", + "libelleAcheminement": "RONTALON", + "nomCommune": "RONTALON" }, { - "codePostal": "47800", - "codeCommune": "47014", - "libelleAcheminement": "ARMILLAC", - "nomCommune": "ARMILLAC" + "codePostal": "16410", + "codeCommune": "16143", + "libelleAcheminement": "FOUQUEBRUNE", + "nomCommune": "FOUQUEBRUNE" }, { - "codePostal": "39290", - "codeCommune": "39238", - "libelleAcheminement": "FRASNE LES MEULIERES", - "nomCommune": "FRASNE LES MEULIERES" + "codePostal": "69590", + "codeCommune": "69110", + "libelleAcheminement": "LARAJASSE", + "nomCommune": "LARAJASSE" }, { - "codePostal": "09230", - "codeCommune": "09037", - "libelleAcheminement": "BARJAC", - "nomCommune": "BARJAC" + "codePostal": "58150", + "codeCommune": "58256", + "libelleAcheminement": "ST MARTIN SUR NOHAIN", + "nomCommune": "ST MARTIN SUR NOHAIN" }, { - "codePostal": "65300", - "codeCommune": "65125", - "libelleAcheminement": "CAMPISTROUS", - "nomCommune": "CAMPISTROUS" + "codePostal": "60260", + "codeCommune": "60346", + "libelleAcheminement": "LAMORLAYE", + "nomCommune": "LAMORLAYE" }, { - "codePostal": "47120", - "codeCommune": "47020", - "libelleAcheminement": "BALEYSSAGUES", - "nomCommune": "BALEYSSAGUES" + "codePostal": "69210", + "codeCommune": "69171", + "libelleAcheminement": "SAIN BEL", + "nomCommune": "SAIN BEL" }, { - "codePostal": "39130", - "codeCommune": "39240", - "libelleAcheminement": "LE FRASNOIS", - "nomCommune": "LE FRASNOIS" + "codePostal": "16200", + "codeCommune": "16145", + "libelleAcheminement": "FOUSSIGNAC", + "nomCommune": "FOUSSIGNAC" }, { - "codePostal": "09350", - "codeCommune": "09038", - "libelleAcheminement": "LA BASTIDE DE BESPLAS", - "nomCommune": "LA BASTIDE DE BESPLAS" + "codePostal": "69620", + "codeCommune": "69111", + "libelleAcheminement": "LEGNY", + "nomCommune": "LEGNY" }, { - "codePostal": "65330", - "codeCommune": "65128", - "libelleAcheminement": "CASTELBAJAC", - "nomCommune": "CASTELBAJAC" + "codePostal": "58300", + "codeCommune": "58259", + "libelleAcheminement": "ST PARIZE EN VIRY", + "nomCommune": "ST PARIZE EN VIRY" }, { - "codePostal": "47230", - "codeCommune": "47021", - "libelleAcheminement": "BARBASTE", - "nomCommune": "BARBASTE" + "codePostal": "60420", + "codeCommune": "60357", + "libelleAcheminement": "LEGLANTIERS", + "nomCommune": "LEGLANTIERS" }, { - "codePostal": "39210", - "codeCommune": "39244", - "libelleAcheminement": "FRONTENAY", - "nomCommune": "FRONTENAY" + "codePostal": "69460", + "codeCommune": "69172", + "libelleAcheminement": "SALLES ARBUISSONNAS BEAUJOLAIS", + "nomCommune": "SALLES ARBUISSONNAS EN BEAUJOLAIS" }, { - "codePostal": "09240", - "codeCommune": "09042", - "libelleAcheminement": "LA BASTIDE DE SEROU", - "nomCommune": "LA BASTIDE DE SEROU" + "codePostal": "16170", + "codeCommune": "16148", + "libelleAcheminement": "GENAC BIGNAC", + "nomCommune": "GENAC BIGNAC" }, { - "codePostal": "65240", - "codeCommune": "65141", - "libelleAcheminement": "CAZAUX FRECHET ANERAN CAMORS", - "nomCommune": "CAZAUX FRECHET ANERAN CAMORS" + "codePostal": "69210", + "codeCommune": "69112", + "libelleAcheminement": "LENTILLY", + "nomCommune": "LENTILLY" }, { - "codePostal": "47130", - "codeCommune": "47022", - "libelleAcheminement": "BAZENS", - "nomCommune": "BAZENS" + "codePostal": "58490", + "codeCommune": "58260", + "libelleAcheminement": "ST PARIZE LE CHATEL", + "nomCommune": "ST PARIZE LE CHATEL" }, { - "codePostal": "39350", - "codeCommune": "39246", - "libelleAcheminement": "GENDREY", - "nomCommune": "GENDREY" + "codePostal": "60650", + "codeCommune": "60359", + "libelleAcheminement": "LHERAULE", + "nomCommune": "LHERAULE" }, { - "codePostal": "09600", - "codeCommune": "09043", - "libelleAcheminement": "LA BASTIDE SUR L HERS", - "nomCommune": "LA BASTIDE SUR L HERS" + "codePostal": "69490", + "codeCommune": "69173", + "libelleAcheminement": "SARCEY", + "nomCommune": "SARCEY" }, { - "codePostal": "65350", - "codeCommune": "65142", - "libelleAcheminement": "CHELLE DEBAT", - "nomCommune": "CHELLE DEBAT" + "codePostal": "16200", + "codeCommune": "16153", + "libelleAcheminement": "MAINXE GONDEVILLE", + "nomCommune": "MAINXE GONDEVILLE" }, { - "codePostal": "47550", - "codeCommune": "47031", - "libelleAcheminement": "BOE", - "nomCommune": "BOE" + "codePostal": "69760", + "codeCommune": "69116", + "libelleAcheminement": "LIMONEST", + "nomCommune": "LIMONEST" }, { - "codePostal": "39150", - "codeCommune": "39258", - "libelleAcheminement": "GRANDE RIVIERE CHATEAU", - "nomCommune": "GRANDE RIVIERE CHATEAU" + "codePostal": "58240", + "codeCommune": "58264", + "libelleAcheminement": "ST PIERRE LE MOUTIER", + "nomCommune": "ST PIERRE LE MOUTIER" }, { - "codePostal": "09300", - "codeCommune": "09047", - "libelleAcheminement": "BELESTA", - "nomCommune": "BELESTA" + "codePostal": "60240", + "codeCommune": "60363", + "libelleAcheminement": "LIERVILLE", + "nomCommune": "LIERVILLE" }, { - "codePostal": "65100", - "codeCommune": "65144", - "libelleAcheminement": "CHEUST", - "nomCommune": "CHEUST" + "codePostal": "69610", + "codeCommune": "69178", + "libelleAcheminement": "SOUZY", + "nomCommune": "SOUZY" }, { - "codePostal": "47240", - "codeCommune": "47032", - "libelleAcheminement": "BON ENCONTRE", - "nomCommune": "BON ENCONTRE" + "codePostal": "16160", + "codeCommune": "16154", + "libelleAcheminement": "GOND PONTOUVRE", + "nomCommune": "GOND PONTOUVRE" }, { - "codePostal": "39130", - "codeCommune": "39265", - "libelleAcheminement": "HAUTECOUR", - "nomCommune": "HAUTECOUR" + "codePostal": "69380", + "codeCommune": "69117", + "libelleAcheminement": "LISSIEU", + "nomCommune": "LISSIEU" }, { - "codePostal": "09000", - "codeCommune": "09049", - "libelleAcheminement": "BENAC", - "nomCommune": "BENAC" + "codePostal": "58150", + "codeCommune": "58265", + "libelleAcheminement": "ST QUENTIN SUR NOHAIN", + "nomCommune": "ST QUENTIN SUR NOHAIN" }, { - "codePostal": "65300", - "codeCommune": "65150", - "libelleAcheminement": "CLARENS", - "nomCommune": "CLARENS" + "codePostal": "60360", + "codeCommune": "60365", + "libelleAcheminement": "LIHUS", + "nomCommune": "LIHUS" }, { - "codePostal": "47250", - "codeCommune": "47034", - "libelleAcheminement": "BOUGLON", - "nomCommune": "BOUGLON" + "codePostal": "69700", + "codeCommune": "69179", + "libelleAcheminement": "BEAUVALLON", + "nomCommune": "BEAUVALLON" }, { - "codePostal": "39110", - "codeCommune": "39268", - "libelleAcheminement": "IVREY", - "nomCommune": "IVREY" + "codePostal": "16300", + "codeCommune": "16160", + "libelleAcheminement": "GUIMPS", + "nomCommune": "GUIMPS" }, { - "codePostal": "09100", - "codeCommune": "09050", - "libelleAcheminement": "BENAGUES", - "nomCommune": "BENAGUES" + "codePostal": "69770", + "codeCommune": "69120", + "libelleAcheminement": "LONGESSAIGNE", + "nomCommune": "LONGESSAIGNE" }, { - "codePostal": "65370", - "codeCommune": "65154", - "libelleAcheminement": "CRECHETS", - "nomCommune": "CRECHETS" + "codePostal": "58420", + "codeCommune": "58266", + "libelleAcheminement": "ST REVERIEN", + "nomCommune": "ST REVERIEN" }, { - "codePostal": "47320", - "codeCommune": "47038", - "libelleAcheminement": "BOURRAN", - "nomCommune": "BOURRAN" + "codePostal": "60150", + "codeCommune": "60368", + "libelleAcheminement": "LONGUEIL ANNEL", + "nomCommune": "LONGUEIL ANNEL" }, { - "codePostal": "39320", - "codeCommune": "39273", - "libelleAcheminement": "MONTLAINSIA", - "nomCommune": "MONTLAINSIA" + "codePostal": "69440", + "codeCommune": "69180", + "libelleAcheminement": "ST ANDRE LA COTE", + "nomCommune": "ST ANDRE LA COTE" }, { - "codePostal": "09300", - "codeCommune": "09051", - "libelleAcheminement": "BENAIX", - "nomCommune": "BENAIX" + "codePostal": "16290", + "codeCommune": "16163", + "libelleAcheminement": "HIERSAC", + "nomCommune": "HIERSAC" }, { - "codePostal": "65500", - "codeCommune": "65160", - "libelleAcheminement": "ESCAUNETS", - "nomCommune": "ESCAUNETS" + "codePostal": "69860", + "codeCommune": "69135", + "libelleAcheminement": "DEUX GROSNES", + "nomCommune": "DEUX GROSNES" }, { - "codePostal": "47310", - "codeCommune": "47040", - "libelleAcheminement": "BRAX", - "nomCommune": "BRAX" + "codePostal": "58270", + "codeCommune": "58269", + "libelleAcheminement": "ST SULPICE", + "nomCommune": "ST SULPICE" }, { - "codePostal": "39320", - "codeCommune": "39273", - "libelleAcheminement": "MONTLAINSIA", - "nomCommune": "MONTLAINSIA" + "codePostal": "60126", + "codeCommune": "60369", + "libelleAcheminement": "LONGUEIL STE MARIE", + "nomCommune": "LONGUEIL STE MARIE" }, { - "codePostal": "09250", - "codeCommune": "09053", - "libelleAcheminement": "BESTIAC", - "nomCommune": "BESTIAC" + "codePostal": "69790", + "codeCommune": "69182", + "libelleAcheminement": "ST BONNET DES BRUYERES", + "nomCommune": "ST BONNET DES BRUYERES" }, { - "codePostal": "65130", - "codeCommune": "65162", - "libelleAcheminement": "ESCONNETS", - "nomCommune": "ESCONNETS" + "codePostal": "16200", + "codeCommune": "16165", + "libelleAcheminement": "HOULETTE", + "nomCommune": "HOULETTE" }, { - "codePostal": "47260", - "codeCommune": "47042", - "libelleAcheminement": "BRUGNAC", - "nomCommune": "BRUGNAC" + "codePostal": "69640", + "codeCommune": "69137", + "libelleAcheminement": "MONTMELAS ST SORLIN", + "nomCommune": "MONTMELAS ST SORLIN" }, { - "codePostal": "39210", - "codeCommune": "39288", - "libelleAcheminement": "LAVIGNY", - "nomCommune": "LAVIGNY" + "codePostal": "58240", + "codeCommune": "58294", + "libelleAcheminement": "TOURY SUR JOUR", + "nomCommune": "TOURY SUR JOUR" }, { - "codePostal": "09160", - "codeCommune": "09054", - "libelleAcheminement": "BETCHAT", - "nomCommune": "BETCHAT" + "codePostal": "60380", + "codeCommune": "60371", + "libelleAcheminement": "LOUEUSE", + "nomCommune": "LOUEUSE" }, { - "codePostal": "65220", - "codeCommune": "65170", - "libelleAcheminement": "ESTAMPURES", - "nomCommune": "ESTAMPURES" + "codePostal": "69930", + "codeCommune": "69187", + "libelleAcheminement": "ST CLEMENT LES PLACES", + "nomCommune": "ST CLEMENT LES PLACES" }, { - "codePostal": "47180", - "codeCommune": "47056", - "libelleAcheminement": "CASTELNAU SUR GUPIE", - "nomCommune": "CASTELNAU SUR GUPIE" + "codePostal": "16130", + "codeCommune": "16171", + "libelleAcheminement": "JUILLAC LE COQ", + "nomCommune": "JUILLAC LE COQ" }, { - "codePostal": "39350", - "codeCommune": "39302", - "libelleAcheminement": "LOUVATANGE", - "nomCommune": "LOUVATANGE" + "codePostal": "69610", + "codeCommune": "69138", + "libelleAcheminement": "MONTROMANT", + "nomCommune": "MONTROMANT" }, { - "codePostal": "09800", - "codeCommune": "09055", - "libelleAcheminement": "BETHMALE", - "nomCommune": "BETHMALE" + "codePostal": "58400", + "codeCommune": "58298", + "libelleAcheminement": "TRONSANGES", + "nomCommune": "TRONSANGES" }, { - "codePostal": "65240", - "codeCommune": "65171", - "libelleAcheminement": "ESTARVIELLE", - "nomCommune": "ESTARVIELLE" + "codePostal": "60480", + "codeCommune": "60377", + "libelleAcheminement": "MAISONCELLE TUILERIE", + "nomCommune": "MAISONCELLE TUILERIE" }, { - "codePostal": "47220", - "codeCommune": "47060", - "libelleAcheminement": "CAUDECOSTE", - "nomCommune": "CAUDECOSTE" + "codePostal": "69870", + "codeCommune": "69192", + "libelleAcheminement": "ST CYR LE CHATOUX", + "nomCommune": "ST CYR LE CHATOUX" }, { - "codePostal": "39230", - "codeCommune": "39310", - "libelleAcheminement": "MANTRY", - "nomCommune": "MANTRY" + "codePostal": "16250", + "codeCommune": "16175", + "libelleAcheminement": "VAL DES VIGNES", + "nomCommune": "VAL DES VIGNES" }, { - "codePostal": "09320", - "codeCommune": "09057", - "libelleAcheminement": "BIERT", - "nomCommune": "BIERT" + "codePostal": "69770", + "codeCommune": "69139", + "libelleAcheminement": "MONTROTTIER", + "nomCommune": "MONTROTTIER" }, { - "codePostal": "65170", - "codeCommune": "65172", - "libelleAcheminement": "ESTENSAN", - "nomCommune": "ESTENSAN" + "codePostal": "58290", + "codeCommune": "58301", + "libelleAcheminement": "VANDENESSE", + "nomCommune": "VANDENESSE" }, { - "codePostal": "47470", - "codeCommune": "47062", - "libelleAcheminement": "CAUZAC", - "nomCommune": "CAUZAC" + "codePostal": "60280", + "codeCommune": "60382", + "libelleAcheminement": "MARGNY LES COMPIEGNE", + "nomCommune": "MARGNY LES COMPIEGNE" }, { - "codePostal": "39130", - "codeCommune": "39313", - "libelleAcheminement": "MARIGNY", - "nomCommune": "MARIGNY" + "codePostal": "69560", + "codeCommune": "69193", + "libelleAcheminement": "ST CYR SUR LE RHONE", + "nomCommune": "ST CYR SUR LE RHONE" }, { - "codePostal": "09400", - "codeCommune": "09058", - "libelleAcheminement": "BOMPAS", - "nomCommune": "BOMPAS" + "codePostal": "16120", + "codeCommune": "16177", + "libelleAcheminement": "LADIVILLE", + "nomCommune": "LADIVILLE" }, { - "codePostal": "65700", - "codeCommune": "65174", - "libelleAcheminement": "ESTIRAC", - "nomCommune": "ESTIRAC" + "codePostal": "69590", + "codeCommune": "69155", + "libelleAcheminement": "POMEYS", + "nomCommune": "POMEYS" }, { - "codePostal": "47180", - "codeCommune": "47074", - "libelleAcheminement": "COUTHURES SUR GARONNE", - "nomCommune": "COUTHURES SUR GARONNE" + "codePostal": "59280", + "codeCommune": "59017", + "libelleAcheminement": "ARMENTIERES", + "nomCommune": "ARMENTIERES" }, { - "codePostal": "39110", - "codeCommune": "39315", - "libelleAcheminement": "MARNOZ", - "nomCommune": "MARNOZ" + "codePostal": "60490", + "codeCommune": "60386", + "libelleAcheminement": "MARQUEGLISE", + "nomCommune": "MARQUEGLISE" }, { - "codePostal": "09800", - "codeCommune": "09069", - "libelleAcheminement": "BUZAN", - "nomCommune": "BUZAN" + "codePostal": "69460", + "codeCommune": "69197", + "libelleAcheminement": "ST ETIENNE DES OULLIERES", + "nomCommune": "ST ETIENNE DES OULLIERES" }, { - "codePostal": "65130", - "codeCommune": "65179", - "libelleAcheminement": "FRECHENDETS", - "nomCommune": "FRECHENDETS" + "codePostal": "16460", + "codeCommune": "16184", + "libelleAcheminement": "LICHERES", + "nomCommune": "LICHERES" }, { - "codePostal": "47600", - "codeCommune": "47098", - "libelleAcheminement": "FIEUX", - "nomCommune": "FIEUX" + "codePostal": "69480", + "codeCommune": "69156", + "libelleAcheminement": "POMMIERS", + "nomCommune": "POMMIERS" }, { - "codePostal": "39260", - "codeCommune": "39318", - "libelleAcheminement": "MARTIGNA", - "nomCommune": "MARTIGNA" + "codePostal": "59285", + "codeCommune": "59018", + "libelleAcheminement": "ARNEKE", + "nomCommune": "ARNEKE" }, { - "codePostal": "09300", - "codeCommune": "09080", - "libelleAcheminement": "CARLA DE ROQUEFORT", - "nomCommune": "CARLA DE ROQUEFORT" + "codePostal": "60640", + "codeCommune": "60389", + "libelleAcheminement": "MAUCOURT", + "nomCommune": "MAUCOURT" }, { - "codePostal": "65100", - "codeCommune": "65191", - "libelleAcheminement": "GAZOST", - "nomCommune": "GAZOST" + "codePostal": "69190", + "codeCommune": "69199", + "libelleAcheminement": "ST FONS", + "nomCommune": "ST FONS" }, { - "codePostal": "47200", - "codeCommune": "47101", - "libelleAcheminement": "FOURQUES SUR GARONNE", - "nomCommune": "FOURQUES SUR GARONNE" + "codePostal": "16140", + "codeCommune": "16185", + "libelleAcheminement": "LIGNE", + "nomCommune": "LIGNE" }, { - "codePostal": "39600", - "codeCommune": "39319", - "libelleAcheminement": "MATHENAY", - "nomCommune": "MATHENAY" + "codePostal": "69490", + "codeCommune": "69157", + "libelleAcheminement": "VINDRY SUR TURDINE", + "nomCommune": "VINDRY SUR TURDINE" }, { - "codePostal": "09160", - "codeCommune": "09091", - "libelleAcheminement": "CAZAVET", - "nomCommune": "CAZAVET" + "codePostal": "59494", + "codeCommune": "59027", + "libelleAcheminement": "AUBRY DU HAINAUT", + "nomCommune": "AUBRY DU HAINAUT" }, { - "codePostal": "65150", - "codeCommune": "65194", - "libelleAcheminement": "GENEREST", - "nomCommune": "GENEREST" + "codePostal": "60480", + "codeCommune": "60390", + "libelleAcheminement": "MAULERS", + "nomCommune": "MAULERS" }, { - "codePostal": "47190", - "codeCommune": "47107", - "libelleAcheminement": "GALAPIAN", - "nomCommune": "GALAPIAN" + "codePostal": "69110", + "codeCommune": "69202", + "libelleAcheminement": "STE FOY LES LYON", + "nomCommune": "STE FOY LES LYON" }, { - "codePostal": "39130", - "codeCommune": "39326", - "libelleAcheminement": "MESNOIS", - "nomCommune": "MESNOIS" + "codePostal": "16130", + "codeCommune": "16186", + "libelleAcheminement": "LIGNIERES AMBLEVILLE", + "nomCommune": "LIGNIERES AMBLEVILLE" }, { - "codePostal": "09800", - "codeCommune": "09095", - "libelleAcheminement": "CESCAU", - "nomCommune": "CESCAU" + "codePostal": "69650", + "codeCommune": "69163", + "libelleAcheminement": "QUINCIEUX", + "nomCommune": "QUINCIEUX" }, { - "codePostal": "65240", - "codeCommune": "65205", - "libelleAcheminement": "GOUAUX", - "nomCommune": "GOUAUX" + "codePostal": "59950", + "codeCommune": "59028", + "libelleAcheminement": "AUBY", + "nomCommune": "AUBY" }, { - "codePostal": "47260", - "codeCommune": "47111", - "libelleAcheminement": "GRANGES SUR LOT", - "nomCommune": "GRANGES SUR LOT" + "codePostal": "60660", + "codeCommune": "60391", + "libelleAcheminement": "MAYSEL", + "nomCommune": "MAYSEL" }, { - "codePostal": "39250", - "codeCommune": "39329", - "libelleAcheminement": "MIEGES", - "nomCommune": "MIEGES" + "codePostal": "69650", + "codeCommune": "69207", + "libelleAcheminement": "ST GERMAIN AU MONT D OR", + "nomCommune": "ST GERMAIN AU MONT D OR" }, { - "codePostal": "09500", - "codeCommune": "09102", - "libelleAcheminement": "COUTENS", - "nomCommune": "COUTENS" + "codePostal": "16730", + "codeCommune": "16187", + "libelleAcheminement": "LINARS", + "nomCommune": "LINARS" }, { - "codePostal": "65250", - "codeCommune": "65218", - "libelleAcheminement": "HECHES", - "nomCommune": "HECHES" + "codePostal": "69470", + "codeCommune": "69164", + "libelleAcheminement": "RANCHAL", + "nomCommune": "RANCHAL" }, { - "codePostal": "47250", - "codeCommune": "47114", - "libelleAcheminement": "GREZET CAVAGNAN", - "nomCommune": "GREZET CAVAGNAN" + "codePostal": "59296", + "codeCommune": "59038", + "libelleAcheminement": "AVESNES LE SEC", + "nomCommune": "AVESNES LE SEC" }, { - "codePostal": "39260", - "codeCommune": "39333", - "libelleAcheminement": "MOIRANS EN MONTAGNE", - "nomCommune": "MOIRANS EN MONTAGNE" + "codePostal": "60660", + "codeCommune": "60393", + "libelleAcheminement": "MELLO", + "nomCommune": "MELLO" }, { - "codePostal": "09120", - "codeCommune": "09103", - "libelleAcheminement": "CRAMPAGNA", - "nomCommune": "CRAMPAGNA" + "codePostal": "69640", + "codeCommune": "69215", + "libelleAcheminement": "ST JULIEN", + "nomCommune": "ST JULIEN" }, { - "codePostal": "65310", - "codeCommune": "65223", - "libelleAcheminement": "HORGUES", - "nomCommune": "HORGUES" + "codePostal": "16240", + "codeCommune": "16190", + "libelleAcheminement": "LONGRE", + "nomCommune": "LONGRE" }, { - "codePostal": "47150", - "codeCommune": "47123", - "libelleAcheminement": "LACAPELLE BIRON", - "nomCommune": "LACAPELLE BIRON" + "codePostal": "69430", + "codeCommune": "69165", + "libelleAcheminement": "REGNIE DURETTE", + "nomCommune": "REGNIE DURETTE" }, { - "codePostal": "39500", - "codeCommune": "39338", - "libelleAcheminement": "MOLAY", - "nomCommune": "MOLAY" + "codePostal": "59780", + "codeCommune": "59044", + "libelleAcheminement": "BAISIEUX", + "nomCommune": "BAISIEUX" }, { - "codePostal": "09350", - "codeCommune": "09105", - "libelleAcheminement": "DAUMAZAN SUR ARIZE", - "nomCommune": "DAUMAZAN SUR ARIZE" + "codePostal": "60110", + "codeCommune": "60395", + "libelleAcheminement": "MERU", + "nomCommune": "MERU" }, { - "codePostal": "65330", - "codeCommune": "65224", - "libelleAcheminement": "HOUEYDETS", - "nomCommune": "HOUEYDETS" + "codePostal": "69640", + "codeCommune": "69215", + "libelleAcheminement": "ST JULIEN", + "nomCommune": "ST JULIEN" }, { - "codePostal": "47350", - "codeCommune": "47126", - "libelleAcheminement": "LACHAPELLE", - "nomCommune": "LACHAPELLE" + "codePostal": "16230", + "codeCommune": "16191", + "libelleAcheminement": "LONNES", + "nomCommune": "LONNES" }, { - "codePostal": "39360", - "codeCommune": "39339", - "libelleAcheminement": "CHASSAL MOLINGES", - "nomCommune": "CHASSAL MOLINGES" + "codePostal": "69550", + "codeCommune": "69169", + "libelleAcheminement": "RONNO", + "nomCommune": "RONNO" }, { - "codePostal": "09300", - "codeCommune": "09106", - "libelleAcheminement": "DREUILHE", - "nomCommune": "DREUILHE" + "codePostal": "59221", + "codeCommune": "59052", + "libelleAcheminement": "BAUVIN", + "nomCommune": "BAUVIN" }, { - "codePostal": "65370", - "codeCommune": "65230", - "libelleAcheminement": "IZAOURT", - "nomCommune": "IZAOURT" + "codePostal": "60420", + "codeCommune": "60396", + "libelleAcheminement": "MERY LA BATAILLE", + "nomCommune": "MERY LA BATAILLE" }, { - "codePostal": "47320", - "codeCommune": "47127", - "libelleAcheminement": "LAFITTE SUR LOT", - "nomCommune": "LAFITTE SUR LOT" + "codePostal": "69220", + "codeCommune": "69218", + "libelleAcheminement": "ST LAGER", + "nomCommune": "ST LAGER" }, { - "codePostal": "39300", - "codeCommune": "39344", - "libelleAcheminement": "MONNET LA VILLE", - "nomCommune": "MONNET LA VILLE" + "codePostal": "16270", + "codeCommune": "16192", + "libelleAcheminement": "TERRES DE HAUTE CHARENTE", + "nomCommune": "TERRES DE HAUTE CHARENTE" }, { - "codePostal": "09600", - "codeCommune": "09107", - "libelleAcheminement": "DUN", - "nomCommune": "DUN" + "codePostal": "69210", + "codeCommune": "69175", + "libelleAcheminement": "SAVIGNY", + "nomCommune": "SAVIGNY" }, { - "codePostal": "65250", - "codeCommune": "65231", - "libelleAcheminement": "IZAUX", - "nomCommune": "IZAUX" + "codePostal": "59570", + "codeCommune": "59053", + "libelleAcheminement": "BAVAY", + "nomCommune": "BAVAY" }, { - "codePostal": "47330", - "codeCommune": "47132", - "libelleAcheminement": "LALANDUSSE", - "nomCommune": "LALANDUSSE" + "codePostal": "60210", + "codeCommune": "60397", + "libelleAcheminement": "LE MESNIL CONTEVILLE", + "nomCommune": "LE MESNIL CONTEVILLE" }, { - "codePostal": "39100", - "codeCommune": "39345", - "libelleAcheminement": "MONNIERES", - "nomCommune": "MONNIERES" + "codePostal": "69440", + "codeCommune": "69228", + "libelleAcheminement": "CHABANIERE", + "nomCommune": "CHABANIERE" }, { - "codePostal": "09130", - "codeCommune": "09109", - "libelleAcheminement": "DURFORT", - "nomCommune": "DURFORT" + "codePostal": "16270", + "codeCommune": "16192", + "libelleAcheminement": "TERRES DE HAUTE CHARENTE", + "nomCommune": "TERRES DE HAUTE CHARENTE" }, { - "codePostal": "65100", - "codeCommune": "65233", - "libelleAcheminement": "JARRET", - "nomCommune": "JARRET" + "codePostal": "69510", + "codeCommune": "69176", + "libelleAcheminement": "SOUCIEU EN JARREST", + "nomCommune": "SOUCIEU EN JARREST" }, { - "codePostal": "47700", - "codeCommune": "47148", - "libelleAcheminement": "LEYRITZ MONCASSIN", - "nomCommune": "LEYRITZ MONCASSIN" + "codePostal": "59540", + "codeCommune": "59059", + "libelleAcheminement": "BEAUMONT EN CAMBRESIS", + "nomCommune": "BEAUMONT EN CAMBRESIS" }, { - "codePostal": "39210", - "codeCommune": "39349", - "libelleAcheminement": "MONTAIN", - "nomCommune": "MONTAIN" + "codePostal": "60940", + "codeCommune": "60406", + "libelleAcheminement": "MONCEAUX", + "nomCommune": "MONCEAUX" }, { - "codePostal": "09200", - "codeCommune": "09114", - "libelleAcheminement": "ERP", - "nomCommune": "ERP" + "codePostal": "69870", + "codeCommune": "69229", + "libelleAcheminement": "ST NIZIER D AZERGUES", + "nomCommune": "ST NIZIER D AZERGUES" }, { - "codePostal": "65140", - "codeCommune": "65242", - "libelleAcheminement": "LACASSAGNE", - "nomCommune": "LACASSAGNE" + "codePostal": "16100", + "codeCommune": "16193", + "libelleAcheminement": "LOUZAC ST ANDRE", + "nomCommune": "LOUZAC ST ANDRE" }, { - "codePostal": "47200", - "codeCommune": "47150", - "libelleAcheminement": "LONGUEVILLE", - "nomCommune": "LONGUEVILLE" + "codePostal": "69700", + "codeCommune": "69179", + "libelleAcheminement": "BEAUVALLON", + "nomCommune": "BEAUVALLON" }, { - "codePostal": "39300", - "codeCommune": "39356", - "libelleAcheminement": "MONTIGNY SUR L AIN", - "nomCommune": "MONTIGNY SUR L AIN" + "codePostal": "59730", + "codeCommune": "59060", + "libelleAcheminement": "BEAURAIN", + "nomCommune": "BEAURAIN" }, { - "codePostal": "09700", - "codeCommune": "09117", - "libelleAcheminement": "ESPLAS", - "nomCommune": "ESPLAS" + "codePostal": "60400", + "codeCommune": "60410", + "libelleAcheminement": "MONDESCOURT", + "nomCommune": "MONDESCOURT" }, { - "codePostal": "65300", - "codeCommune": "65245", - "libelleAcheminement": "LAGRANGE", - "nomCommune": "LAGRANGE" + "codePostal": "69210", + "codeCommune": "69231", + "libelleAcheminement": "ST PIERRE LA PALUD", + "nomCommune": "ST PIERRE LA PALUD" }, { - "codePostal": "47120", - "codeCommune": "47151", - "libelleAcheminement": "LOUBES BERNAC", - "nomCommune": "LOUBES BERNAC" + "codePostal": "16230", + "codeCommune": "16196", + "libelleAcheminement": "LUXE", + "nomCommune": "LUXE" }, { - "codePostal": "39290", - "codeCommune": "39360", - "libelleAcheminement": "MONTMIREY LA VILLE", - "nomCommune": "MONTMIREY LA VILLE" + "codePostal": "69290", + "codeCommune": "69205", + "libelleAcheminement": "ST GENIS LES OLLIERES", + "nomCommune": "ST GENIS LES OLLIERES" }, { - "codePostal": "09350", - "codeCommune": "09123", - "libelleAcheminement": "FORNEX", - "nomCommune": "FORNEX" + "codePostal": "59740", + "codeCommune": "59062", + "libelleAcheminement": "BEAURIEUX", + "nomCommune": "BEAURIEUX" }, { - "codePostal": "65100", - "codeCommune": "65247", - "libelleAcheminement": "ARRAYOU LAHITTE", - "nomCommune": "ARRAYOU LAHITTE" + "codePostal": "60530", + "codeCommune": "60429", + "libelleAcheminement": "MORANGLES", + "nomCommune": "MORANGLES" }, { - "codePostal": "47290", - "codeCommune": "47152", - "libelleAcheminement": "LOUGRATTE", - "nomCommune": "LOUGRATTE" + "codePostal": "69270", + "codeCommune": "69233", + "libelleAcheminement": "ST ROMAIN AU MONT D OR", + "nomCommune": "ST ROMAIN AU MONT D OR" }, { - "codePostal": "39380", - "codeCommune": "39365", - "libelleAcheminement": "MONT SOUS VAUDREY", - "nomCommune": "MONT SOUS VAUDREY" + "codePostal": "16170", + "codeCommune": "16208", + "libelleAcheminement": "MAREUIL", + "nomCommune": "MAREUIL" }, { - "codePostal": "09250", - "codeCommune": "09131", - "libelleAcheminement": "GARANOU", - "nomCommune": "GARANOU" + "codePostal": "69550", + "codeCommune": "69214", + "libelleAcheminement": "ST JEAN LA BUSSIERE", + "nomCommune": "ST JEAN LA BUSSIERE" }, { - "codePostal": "65140", - "codeCommune": "65254", - "libelleAcheminement": "LAMEAC", - "nomCommune": "LAMEAC" + "codePostal": "59157", + "codeCommune": "59063", + "libelleAcheminement": "BEAUVOIS EN CAMBRESIS", + "nomCommune": "BEAUVOIS EN CAMBRESIS" }, { - "codePostal": "47360", - "codeCommune": "47155", - "libelleAcheminement": "MADAILLAN", - "nomCommune": "MADAILLAN" + "codePostal": "60220", + "codeCommune": "60444", + "libelleAcheminement": "MUREAUMONT", + "nomCommune": "MUREAUMONT" }, { - "codePostal": "39400", - "codeCommune": "39368", - "libelleAcheminement": "HAUTS DE BIENNE", - "nomCommune": "HAUTS DE BIENNE" + "codePostal": "69590", + "codeCommune": "69238", + "libelleAcheminement": "ST SYMPHORIEN SUR COISE", + "nomCommune": "ST SYMPHORIEN SUR COISE" }, { - "codePostal": "09400", - "codeCommune": "09136", - "libelleAcheminement": "GOURBIT", - "nomCommune": "GOURBIT" + "codePostal": "16110", + "codeCommune": "16209", + "libelleAcheminement": "MARILLAC LE FRANC", + "nomCommune": "MARILLAC LE FRANC" }, { - "codePostal": "65190", - "codeCommune": "65256", - "libelleAcheminement": "LANESPEDE", - "nomCommune": "LANESPEDE" + "codePostal": "69870", + "codeCommune": "69217", + "libelleAcheminement": "ST JUST D AVRAY", + "nomCommune": "ST JUST D AVRAY" }, { - "codePostal": "47430", - "codeCommune": "47159", - "libelleAcheminement": "LE MAS D AGENAIS", - "nomCommune": "LE MAS D AGENAIS" + "codePostal": "59740", + "codeCommune": "59066", + "libelleAcheminement": "BERELLES", + "nomCommune": "BERELLES" }, { - "codePostal": "39250", - "codeCommune": "39372", - "libelleAcheminement": "MOURNANS CHARBONNY", - "nomCommune": "MOURNANS CHARBONNY" + "codePostal": "60510", + "codeCommune": "60454", + "libelleAcheminement": "LA NEUVILLE EN HEZ", + "nomCommune": "LA NEUVILLE EN HEZ" }, { - "codePostal": "09800", - "codeCommune": "09141", - "libelleAcheminement": "ILLARTEIN", - "nomCommune": "ILLARTEIN" + "codePostal": "69240", + "codeCommune": "69248", + "libelleAcheminement": "THIZY LES BOURGS", + "nomCommune": "THIZY LES BOURGS" }, { - "codePostal": "65380", - "codeCommune": "65257", - "libelleAcheminement": "LANNE", - "nomCommune": "LANNE" + "codePostal": "16570", + "codeCommune": "16210", + "libelleAcheminement": "MARSAC", + "nomCommune": "MARSAC" }, { - "codePostal": "47210", - "codeCommune": "47164", - "libelleAcheminement": "MAZIERES NARESSE", - "nomCommune": "MAZIERES NARESSE" + "codePostal": "69440", + "codeCommune": "69219", + "libelleAcheminement": "ST LAURENT D AGNY", + "nomCommune": "ST LAURENT D AGNY" }, { - "codePostal": "39290", - "codeCommune": "39377", - "libelleAcheminement": "MUTIGNEY", - "nomCommune": "MUTIGNEY" + "codePostal": "59213", + "codeCommune": "59069", + "libelleAcheminement": "BERMERAIN", + "nomCommune": "BERMERAIN" }, { - "codePostal": "09220", - "codeCommune": "09162", - "libelleAcheminement": "LERCOUL", - "nomCommune": "LERCOUL" + "codePostal": "60430", + "codeCommune": "60462", + "libelleAcheminement": "NOAILLES", + "nomCommune": "NOAILLES" }, { - "codePostal": "65220", - "codeCommune": "65260", - "libelleAcheminement": "LAPEYRE", - "nomCommune": "LAPEYRE" + "codePostal": "69770", + "codeCommune": "69263", + "libelleAcheminement": "VILLECHENEVE", + "nomCommune": "VILLECHENEVE" }, { - "codePostal": "47170", - "codeCommune": "47167", - "libelleAcheminement": "MEZIN", - "nomCommune": "MEZIN" + "codePostal": "16310", + "codeCommune": "16212", + "libelleAcheminement": "MASSIGNAC", + "nomCommune": "MASSIGNAC" }, { - "codePostal": "39300", - "codeCommune": "39381", - "libelleAcheminement": "LES NANS", - "nomCommune": "LES NANS" + "codePostal": "69170", + "codeCommune": "69225", + "libelleAcheminement": "ST MARCEL L ECLAIRE", + "nomCommune": "ST MARCEL L ECLAIRE" }, { - "codePostal": "09300", - "codeCommune": "09166", - "libelleAcheminement": "LEYCHERT", - "nomCommune": "LEYCHERT" + "codePostal": "59570", + "codeCommune": "59070", + "libelleAcheminement": "BERMERIES", + "nomCommune": "BERMERIES" }, { - "codePostal": "65230", - "codeCommune": "65263", - "libelleAcheminement": "LARROQUE", - "nomCommune": "LARROQUE" + "codePostal": "60840", + "codeCommune": "60464", + "libelleAcheminement": "NOINTEL", + "nomCommune": "NOINTEL" }, { - "codePostal": "47800", - "codeCommune": "47168", - "libelleAcheminement": "MIRAMONT DE GUYENNE", - "nomCommune": "MIRAMONT DE GUYENNE" + "codePostal": "69640", + "codeCommune": "69265", + "libelleAcheminement": "VILLE SUR JARNIOUX", + "nomCommune": "VILLE SUR JARNIOUX" }, { - "codePostal": "39120", - "codeCommune": "39385", - "libelleAcheminement": "NEUBLANS ABERGEMENT", - "nomCommune": "NEUBLANS ABERGEMENT" + "codePostal": "16210", + "codeCommune": "16215", + "libelleAcheminement": "MEDILLAC", + "nomCommune": "MEDILLAC" }, { - "codePostal": "09210", - "codeCommune": "09167", - "libelleAcheminement": "LEZAT SUR LEZE", - "nomCommune": "LEZAT SUR LEZE" + "codePostal": "69440", + "codeCommune": "69228", + "libelleAcheminement": "CHABANIERE", + "nomCommune": "CHABANIERE" }, { - "codePostal": "65190", - "codeCommune": "65272", - "libelleAcheminement": "LHEZ", - "nomCommune": "LHEZ" + "codePostal": "59310", + "codeCommune": "59080", + "libelleAcheminement": "BEUVRY LA FORET", + "nomCommune": "BEUVRY LA FORET" }, { - "codePostal": "47600", - "codeCommune": "47180", - "libelleAcheminement": "MONTAGNAC SUR AUVIGNON", - "nomCommune": "MONTAGNAC SUR AUVIGNON" + "codePostal": "60480", + "codeCommune": "60470", + "libelleAcheminement": "NOYERS ST MARTIN", + "nomCommune": "NOYERS ST MARTIN" }, { - "codePostal": "39250", - "codeCommune": "39393", - "libelleAcheminement": "ONGLIERES", - "nomCommune": "ONGLIERES" + "codePostal": "69390", + "codeCommune": "69268", + "libelleAcheminement": "VOURLES", + "nomCommune": "VOURLES" }, { - "codePostal": "09300", - "codeCommune": "09168", - "libelleAcheminement": "LIEURAC", - "nomCommune": "LIEURAC" + "codePostal": "16200", + "codeCommune": "16220", + "libelleAcheminement": "LES METAIRIES", + "nomCommune": "LES METAIRIES" }, { - "codePostal": "65140", - "codeCommune": "65273", - "libelleAcheminement": "LIAC", - "nomCommune": "LIAC" + "codePostal": "69560", + "codeCommune": "69235", + "libelleAcheminement": "ST ROMAIN EN GAL", + "nomCommune": "ST ROMAIN EN GAL" }, { - "codePostal": "47800", - "codeCommune": "47194", - "libelleAcheminement": "MOUSTIER", - "nomCommune": "MOUSTIER" + "codePostal": "59189", + "codeCommune": "59087", + "libelleAcheminement": "BOESEGHEM", + "nomCommune": "BOESEGHEM" }, { - "codePostal": "39700", - "codeCommune": "39400", - "libelleAcheminement": "OUR", - "nomCommune": "OUR" + "codePostal": "60210", + "codeCommune": "60472", + "libelleAcheminement": "OFFOY", + "nomCommune": "OFFOY" }, { - "codePostal": "09120", - "codeCommune": "09179", - "libelleAcheminement": "MALLEON", - "nomCommune": "MALLEON" + "codePostal": "69970", + "codeCommune": "69270", + "libelleAcheminement": "CHAPONNAY", + "nomCommune": "CHAPONNAY" }, { - "codePostal": "65330", - "codeCommune": "65274", - "libelleAcheminement": "LIBAROS", - "nomCommune": "LIBAROS" + "codePostal": "16390", + "codeCommune": "16227", + "libelleAcheminement": "MONTIGNAC LE COQ", + "nomCommune": "MONTIGNAC LE COQ" }, { - "codePostal": "47150", - "codeCommune": "47202", - "libelleAcheminement": "PAULHIAC", - "nomCommune": "PAULHIAC" + "codePostal": "69170", + "codeCommune": "69243", + "libelleAcheminement": "TARARE", + "nomCommune": "TARARE" }, { - "codePostal": "39330", - "codeCommune": "39403", - "libelleAcheminement": "PAGNOZ", - "nomCommune": "PAGNOZ" + "codePostal": "59190", + "codeCommune": "59091", + "libelleAcheminement": "BORRE", + "nomCommune": "BORRE" }, { - "codePostal": "09290", - "codeCommune": "09181", - "libelleAcheminement": "LE MAS D AZIL", - "nomCommune": "LE MAS D AZIL" + "codePostal": "60440", + "codeCommune": "60473", + "libelleAcheminement": "OGNES", + "nomCommune": "OGNES" }, { - "codePostal": "65200", - "codeCommune": "65275", - "libelleAcheminement": "LIES", - "nomCommune": "LIES" + "codePostal": "69320", + "codeCommune": "69276", + "libelleAcheminement": "FEYZIN", + "nomCommune": "FEYZIN" }, { - "codePostal": "47420", - "codeCommune": "47208", - "libelleAcheminement": "POMPOGNE", - "nomCommune": "POMPOGNE" + "codePostal": "16240", + "codeCommune": "16229", + "libelleAcheminement": "MONTJEAN", + "nomCommune": "MONTJEAN" }, { - "codePostal": "39100", - "codeCommune": "39405", - "libelleAcheminement": "PARCEY", - "nomCommune": "PARCEY" + "codePostal": "69620", + "codeCommune": "69246", + "libelleAcheminement": "THEIZE", + "nomCommune": "THEIZE" }, { - "codePostal": "09320", - "codeCommune": "09182", - "libelleAcheminement": "MASSAT", - "nomCommune": "MASSAT" + "codePostal": "59111", + "codeCommune": "59092", + "libelleAcheminement": "BOUCHAIN", + "nomCommune": "BOUCHAIN" }, { - "codePostal": "65130", - "codeCommune": "65278", - "libelleAcheminement": "LOMNE", - "nomCommune": "LOMNE" + "codePostal": "60860", + "codeCommune": "60484", + "libelleAcheminement": "OUDEUIL", + "nomCommune": "OUDEUIL" }, { - "codePostal": "47310", - "codeCommune": "47225", - "libelleAcheminement": "ROQUEFORT", - "nomCommune": "ROQUEFORT" + "codePostal": "69720", + "codeCommune": "69288", + "libelleAcheminement": "ST LAURENT DE MURE", + "nomCommune": "ST LAURENT DE MURE" }, { - "codePostal": "39270", - "codeCommune": "39420", - "libelleAcheminement": "PIMORIN", - "nomCommune": "PIMORIN" + "codePostal": "16190", + "codeCommune": "16230", + "libelleAcheminement": "MONTMOREAU", + "nomCommune": "MONTMOREAU" }, { - "codePostal": "09230", - "codeCommune": "09190", - "libelleAcheminement": "MERIGON", - "nomCommune": "MERIGON" + "codePostal": "69240", + "codeCommune": "69248", + "libelleAcheminement": "THIZY LES BOURGS", + "nomCommune": "THIZY LES BOURGS" }, { - "codePostal": "65100", - "codeCommune": "65280", - "libelleAcheminement": "LOUBAJAC", - "nomCommune": "LOUBAJAC" + "codePostal": "59111", + "codeCommune": "59092", + "libelleAcheminement": "BOUCHAIN", + "nomCommune": "BOUCHAIN" }, { - "codePostal": "47350", - "codeCommune": "47232", - "libelleAcheminement": "ST BARTHELEMY D AGENAIS", - "nomCommune": "ST BARTHELEMY D AGENAIS" + "codePostal": "60400", + "codeCommune": "60488", + "libelleAcheminement": "PASSEL", + "nomCommune": "PASSEL" }, { - "codePostal": "39270", - "codeCommune": "39423", - "libelleAcheminement": "PLAISIA", - "nomCommune": "PLAISIA" + "codePostal": "69360", + "codeCommune": "69291", + "libelleAcheminement": "ST SYMPHORIEN D OZON", + "nomCommune": "ST SYMPHORIEN D OZON" }, { - "codePostal": "09500", - "codeCommune": "09194", - "libelleAcheminement": "MIREPOIX", - "nomCommune": "MIREPOIX" + "codePostal": "16190", + "codeCommune": "16230", + "libelleAcheminement": "MONTMOREAU", + "nomCommune": "MONTMOREAU" }, { - "codePostal": "65240", - "codeCommune": "65283", - "libelleAcheminement": "LOUDERVIELLE", - "nomCommune": "LOUDERVIELLE" + "codePostal": "69240", + "codeCommune": "69248", + "libelleAcheminement": "THIZY LES BOURGS", + "nomCommune": "THIZY LES BOURGS" }, { - "codePostal": "47210", - "codeCommune": "47240", - "libelleAcheminement": "ST ETIENNE DE VILLEREAL", - "nomCommune": "ST ETIENNE DE VILLEREAL" + "codePostal": "59440", + "codeCommune": "59093", + "libelleAcheminement": "BOULOGNE SUR HELPE", + "nomCommune": "BOULOGNE SUR HELPE" }, { - "codePostal": "39150", - "codeCommune": "39424", - "libelleAcheminement": "LES PLANCHES EN MONTAGNE", - "nomCommune": "LES PLANCHES EN MONTAGNE" + "codePostal": "60112", + "codeCommune": "60490", + "libelleAcheminement": "PIERREFITTE EN BEAUVAISIS", + "nomCommune": "PIERREFITTE EN BEAUVAISIS" }, { - "codePostal": "09700", - "codeCommune": "09199", - "libelleAcheminement": "MONTAUT", - "nomCommune": "MONTAUT" + "codePostal": "69580", + "codeCommune": "69293", + "libelleAcheminement": "SATHONAY VILLAGE", + "nomCommune": "SATHONAY VILLAGE" }, { - "codePostal": "65350", - "codeCommune": "65285", - "libelleAcheminement": "LOUIT", - "nomCommune": "LOUIT" + "codePostal": "16420", + "codeCommune": "16231", + "libelleAcheminement": "MONTROLLET", + "nomCommune": "MONTROLLET" }, { - "codePostal": "47210", - "codeCommune": "47241", - "libelleAcheminement": "ST EUTROPE DE BORN", - "nomCommune": "ST EUTROPE DE BORN" + "codePostal": "69890", + "codeCommune": "69250", + "libelleAcheminement": "LA TOUR DE SALVAGNY", + "nomCommune": "LA TOUR DE SALVAGNY" }, { - "codePostal": "39800", - "codeCommune": "39426", - "libelleAcheminement": "PLASNE", - "nomCommune": "PLASNE" + "codePostal": "59630", + "codeCommune": "59094", + "libelleAcheminement": "BOURBOURG", + "nomCommune": "BOURBOURG" }, { - "codePostal": "09600", - "codeCommune": "09200", - "libelleAcheminement": "MONTBEL", - "nomCommune": "MONTBEL" + "codePostal": "60150", + "codeCommune": "60501", + "libelleAcheminement": "LE PLESSIS BRION", + "nomCommune": "LE PLESSIS BRION" }, { - "codePostal": "65700", - "codeCommune": "65296", - "libelleAcheminement": "MADIRAN", - "nomCommune": "MADIRAN" + "codePostal": "69360", + "codeCommune": "69294", + "libelleAcheminement": "SEREZIN DU RHONE", + "nomCommune": "SEREZIN DU RHONE" }, { - "codePostal": "47160", - "codeCommune": "47250", - "libelleAcheminement": "ST LEGER", - "nomCommune": "ST LEGER" + "codePostal": "16600", + "codeCommune": "16232", + "libelleAcheminement": "MORNAC", + "nomCommune": "MORNAC" }, { - "codePostal": "39250", - "codeCommune": "39428", - "libelleAcheminement": "PLENISETTE", - "nomCommune": "PLENISETTE" + "codePostal": "69420", + "codeCommune": "69252", + "libelleAcheminement": "TREVES", + "nomCommune": "TREVES" }, { - "codePostal": "09120", - "codeCommune": "09202", - "libelleAcheminement": "MONTEGUT PLANTAUREL", - "nomCommune": "MONTEGUT PLANTAUREL" + "codePostal": "59217", + "codeCommune": "59102", + "libelleAcheminement": "BOUSSIERES EN CAMBRESIS", + "nomCommune": "BOUSSIERES EN CAMBRESIS" }, { - "codePostal": "65190", - "codeCommune": "65303", - "libelleAcheminement": "MASCARAS", - "nomCommune": "MASCARAS" + "codePostal": "60400", + "codeCommune": "60506", + "libelleAcheminement": "PONT L EVEQUE", + "nomCommune": "PONT L EVEQUE" }, { - "codePostal": "47430", - "codeCommune": "47253", - "libelleAcheminement": "STE MARTHE", - "nomCommune": "STE MARTHE" + "codePostal": "69360", + "codeCommune": "69295", + "libelleAcheminement": "SIMANDRES", + "nomCommune": "SIMANDRES" }, { - "codePostal": "39120", - "codeCommune": "39429", - "libelleAcheminement": "PLEURE", - "nomCommune": "PLEURE" + "codePostal": "16310", + "codeCommune": "16239", + "libelleAcheminement": "MOUZON", + "nomCommune": "MOUZON" }, { - "codePostal": "09200", - "codeCommune": "09204", - "libelleAcheminement": "MONTESQUIEU AVANTES", - "nomCommune": "MONTESQUIEU AVANTES" + "codePostal": "69670", + "codeCommune": "69255", + "libelleAcheminement": "VAUGNERAY", + "nomCommune": "VAUGNERAY" }, { - "codePostal": "65220", - "codeCommune": "65308", - "libelleAcheminement": "MAZEROLLES", - "nomCommune": "MAZEROLLES" + "codePostal": "59830", + "codeCommune": "59106", + "libelleAcheminement": "BOUVINES", + "nomCommune": "BOUVINES" }, { - "codePostal": "47700", - "codeCommune": "47254", - "libelleAcheminement": "ST MARTIN CURTON", - "nomCommune": "ST MARTIN CURTON" + "codePostal": "60400", + "codeCommune": "60507", + "libelleAcheminement": "PONTOISE LES NOYON", + "nomCommune": "PONTOISE LES NOYON" }, { - "codePostal": "39700", - "codeCommune": "39430", - "libelleAcheminement": "PLUMONT", - "nomCommune": "PLUMONT" + "codePostal": "69125", + "codeCommune": "69299", + "libelleAcheminement": "COLOMBIER SAUGNIEU", + "nomCommune": "COLOMBIER SAUGNIEU" }, { - "codePostal": "09300", - "codeCommune": "09206", - "libelleAcheminement": "MONTFERRIER", - "nomCommune": "MONTFERRIER" + "codePostal": "16700", + "codeCommune": "16242", + "libelleAcheminement": "NANTEUIL EN VALLEE", + "nomCommune": "NANTEUIL EN VALLEE" }, { - "codePostal": "65670", - "codeCommune": "65315", - "libelleAcheminement": "MONLEON MAGNOAC", - "nomCommune": "MONLEON MAGNOAC" + "codePostal": "69460", + "codeCommune": "69257", + "libelleAcheminement": "VAUX EN BEAUJOLAIS", + "nomCommune": "VAUX EN BEAUJOLAIS" }, { - "codePostal": "47180", - "codeCommune": "47257", - "libelleAcheminement": "ST MARTIN PETIT", - "nomCommune": "ST MARTIN PETIT" + "codePostal": "59123", + "codeCommune": "59107", + "libelleAcheminement": "BRAY DUNES", + "nomCommune": "BRAY DUNES" }, { - "codePostal": "39570", - "codeCommune": "39431", - "libelleAcheminement": "POIDS DE FIOLE", - "nomCommune": "POIDS DE FIOLE" + "codePostal": "60790", + "codeCommune": "60512", + "libelleAcheminement": "POUILLY", + "nomCommune": "POUILLY" }, { - "codePostal": "09240", - "codeCommune": "09216", - "libelleAcheminement": "NESCUS", - "nomCommune": "NESCUS" + "codePostal": "69001", + "codeCommune": "69381", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 01" }, { - "codePostal": "65670", - "codeCommune": "65316", - "libelleAcheminement": "MONLONG", - "nomCommune": "MONLONG" + "codePostal": "16190", + "codeCommune": "16246", + "libelleAcheminement": "NONAC", + "nomCommune": "NONAC" }, { - "codePostal": "47170", - "codeCommune": "47258", - "libelleAcheminement": "STE MAURE DE PEYRIAC", - "nomCommune": "STE MAURE DE PEYRIAC" + "codePostal": "69390", + "codeCommune": "69260", + "libelleAcheminement": "VERNAISON", + "nomCommune": "VERNAISON" }, { - "codePostal": "39300", - "codeCommune": "39437", - "libelleAcheminement": "PONT DU NAVOY", - "nomCommune": "PONT DU NAVOY" + "codePostal": "59730", + "codeCommune": "59108", + "libelleAcheminement": "BRIASTRE", + "nomCommune": "BRIASTRE" }, { - "codePostal": "09110", - "codeCommune": "09218", - "libelleAcheminement": "ORGEIX", - "nomCommune": "ORGEIX" + "codePostal": "60460", + "codeCommune": "60513", + "libelleAcheminement": "PRECY SUR OISE", + "nomCommune": "PRECY SUR OISE" }, { - "codePostal": "65200", - "codeCommune": "65320", - "libelleAcheminement": "MONTGAILLARD", - "nomCommune": "MONTGAILLARD" + "codePostal": "69004", + "codeCommune": "69384", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 04" }, { - "codePostal": "47220", - "codeCommune": "47262", - "libelleAcheminement": "ST NICOLAS DE LA BALERME", - "nomCommune": "ST NICOLAS DE LA BALERME" + "codePostal": "16220", + "codeCommune": "16250", + "libelleAcheminement": "ORGEDEUIL", + "nomCommune": "ORGEDEUIL" }, { - "codePostal": "39600", - "codeCommune": "39439", - "libelleAcheminement": "PORT LESNEY", - "nomCommune": "PORT LESNEY" + "codePostal": "69390", + "codeCommune": "69268", + "libelleAcheminement": "VOURLES", + "nomCommune": "VOURLES" }, { - "codePostal": "09800", - "codeCommune": "09219", - "libelleAcheminement": "ORGIBET", - "nomCommune": "ORGIBET" + "codePostal": "59151", + "codeCommune": "59115", + "libelleAcheminement": "BRUNEMONT", + "nomCommune": "BRUNEMONT" }, { - "codePostal": "65250", - "codeCommune": "65322", - "libelleAcheminement": "MONTOUSSE", - "nomCommune": "MONTOUSSE" + "codePostal": "60480", + "codeCommune": "60518", + "libelleAcheminement": "PUITS LA VALLEE", + "nomCommune": "PUITS LA VALLEE" }, { - "codePostal": "47160", - "codeCommune": "47267", - "libelleAcheminement": "ST PIERRE DE BUZET", - "nomCommune": "ST PIERRE DE BUZET" + "codePostal": "69005", + "codeCommune": "69385", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 05" }, { - "codePostal": "39290", - "codeCommune": "39449", - "libelleAcheminement": "RAINANS", - "nomCommune": "RAINANS" + "codePostal": "16450", + "codeCommune": "16255", + "libelleAcheminement": "PARZAC", + "nomCommune": "PARZAC" }, { - "codePostal": "09110", - "codeCommune": "09220", - "libelleAcheminement": "ORLU", - "nomCommune": "ORLU" + "codePostal": "69360", + "codeCommune": "69272", + "libelleAcheminement": "COMMUNAY", + "nomCommune": "COMMUNAY" }, { - "codePostal": "65150", - "codeCommune": "65327", - "libelleAcheminement": "NESTIER", - "nomCommune": "NESTIER" + "codePostal": "59161", + "codeCommune": "59121", + "libelleAcheminement": "CAGNONCLES", + "nomCommune": "CAGNONCLES" }, { - "codePostal": "47270", - "codeCommune": "47274", - "libelleAcheminement": "ST ROMAIN LE NOBLE", - "nomCommune": "ST ROMAIN LE NOBLE" + "codePostal": "60290", + "codeCommune": "60524", + "libelleAcheminement": "RANTIGNY", + "nomCommune": "RANTIGNY" }, { - "codePostal": "39570", - "codeCommune": "39458", - "libelleAcheminement": "REVIGNY", - "nomCommune": "REVIGNY" + "codePostal": "69006", + "codeCommune": "69386", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 06" }, { - "codePostal": "09140", - "codeCommune": "09223", - "libelleAcheminement": "OUST", - "nomCommune": "OUST" + "codePostal": "16480", + "codeCommune": "16256", + "libelleAcheminement": "PASSIRAC", + "nomCommune": "PASSIRAC" }, { - "codePostal": "65500", - "codeCommune": "65330", - "libelleAcheminement": "NOUILHAN", - "nomCommune": "NOUILHAN" + "codePostal": "69150", + "codeCommune": "69275", + "libelleAcheminement": "DECINES CHARPIEU", + "nomCommune": "DECINES CHARPIEU" }, { - "codePostal": "47270", - "codeCommune": "47281", - "libelleAcheminement": "ST URCISSE", - "nomCommune": "ST URCISSE" + "codePostal": "59400", + "codeCommune": "59122", + "libelleAcheminement": "CAMBRAI", + "nomCommune": "CAMBRAI" }, { - "codePostal": "39350", - "codeCommune": "39464", - "libelleAcheminement": "ROMAIN", - "nomCommune": "ROMAIN" + "codePostal": "60190", + "codeCommune": "60531", + "libelleAcheminement": "REMY", + "nomCommune": "REMY" }, { - "codePostal": "09110", - "codeCommune": "09228", - "libelleAcheminement": "PERLES ET CASTELET", - "nomCommune": "PERLES ET CASTELET" + "codePostal": "70200", + "codeCommune": "70004", + "libelleAcheminement": "ADELANS ET LE VAL DE BITHAINE", + "nomCommune": "ADELANS ET LE VAL DE BITHAINE" }, { - "codePostal": "65310", - "codeCommune": "65331", - "libelleAcheminement": "ODOS", - "nomCommune": "ODOS" + "codePostal": "16390", + "codeCommune": "16260", + "libelleAcheminement": "PILLAC", + "nomCommune": "PILLAC" }, { - "codePostal": "47310", - "codeCommune": "47282", - "libelleAcheminement": "ST VINCENT DE LAMONTJOIE", - "nomCommune": "ST VINCENT DE LAMONTJOIE" + "codePostal": "69250", + "codeCommune": "69284", + "libelleAcheminement": "MONTANAY", + "nomCommune": "MONTANAY" }, { - "codePostal": "39220", - "codeCommune": "39470", - "libelleAcheminement": "LES ROUSSES", - "nomCommune": "LES ROUSSES" + "codePostal": "59133", + "codeCommune": "59123", + "libelleAcheminement": "CAMPHIN EN CAREMBAULT", + "nomCommune": "CAMPHIN EN CAREMBAULT" }, { - "codePostal": "09600", - "codeCommune": "09229", - "libelleAcheminement": "LE PEYRAT", - "nomCommune": "LE PEYRAT" + "codePostal": "60490", + "codeCommune": "60533", + "libelleAcheminement": "RESSONS SUR MATZ", + "nomCommune": "RESSONS SUR MATZ" }, { - "codePostal": "65200", - "codeCommune": "65335", - "libelleAcheminement": "ORDIZAN", - "nomCommune": "ORDIZAN" + "codePostal": "70210", + "codeCommune": "70013", + "libelleAcheminement": "AMBIEVILLERS", + "nomCommune": "AMBIEVILLERS" }, { - "codePostal": "47150", - "codeCommune": "47284", - "libelleAcheminement": "SALLES", - "nomCommune": "SALLES" + "codePostal": "16140", + "codeCommune": "16275", + "libelleAcheminement": "RANVILLE BREUILLAUD", + "nomCommune": "RANVILLE BREUILLAUD" }, { - "codePostal": "39400", - "codeCommune": "39470", - "libelleAcheminement": "LES ROUSSES", - "nomCommune": "LES ROUSSES" + "codePostal": "69330", + "codeCommune": "69285", + "libelleAcheminement": "PUSIGNAN", + "nomCommune": "PUSIGNAN" }, { - "codePostal": "09160", - "codeCommune": "09235", - "libelleAcheminement": "PRAT BONREPAUX", - "nomCommune": "PRAT BONREPAUX" + "codePostal": "59780", + "codeCommune": "59124", + "libelleAcheminement": "CAMPHIN EN PEVELE", + "nomCommune": "CAMPHIN EN PEVELE" }, { - "codePostal": "65190", - "codeCommune": "65346", - "libelleAcheminement": "OUEILLOUX", - "nomCommune": "OUEILLOUX" + "codePostal": "60510", + "codeCommune": "60542", + "libelleAcheminement": "ROCHY CONDE", + "nomCommune": "ROCHY CONDE" }, { - "codePostal": "47270", - "codeCommune": "47289", - "libelleAcheminement": "LA SAUVETAT DE SAVERES", - "nomCommune": "LA SAUVETAT DE SAVERES" + "codePostal": "70100", + "codeCommune": "70024", + "libelleAcheminement": "APREMONT", + "nomCommune": "APREMONT" }, { - "codePostal": "39140", - "codeCommune": "39471", - "libelleAcheminement": "RUFFEY SUR SEILLE", - "nomCommune": "RUFFEY SUR SEILLE" + "codePostal": "16210", + "codeCommune": "16279", + "libelleAcheminement": "RIOUX MARTIN", + "nomCommune": "RIOUX MARTIN" }, { - "codePostal": "09400", - "codeCommune": "09240", - "libelleAcheminement": "QUIE", - "nomCommune": "QUIE" + "codePostal": "69720", + "codeCommune": "69287", + "libelleAcheminement": "ST BONNET DE MURE", + "nomCommune": "ST BONNET DE MURE" }, { - "codePostal": "65100", - "codeCommune": "65348", - "libelleAcheminement": "OURDIS COTDOUSSAN", - "nomCommune": "OURDIS COTDOUSSAN" + "codePostal": "59680", + "codeCommune": "59151", + "libelleAcheminement": "COLLERET", + "nomCommune": "COLLERET" }, { - "codePostal": "47430", - "codeCommune": "47298", - "libelleAcheminement": "SENESTIS", - "nomCommune": "SENESTIS" + "codePostal": "60440", + "codeCommune": "60546", + "libelleAcheminement": "ROSIERES", + "nomCommune": "ROSIERES" }, { - "codePostal": "39230", - "codeCommune": "39472", - "libelleAcheminement": "RYE", - "nomCommune": "RYE" + "codePostal": "70120", + "codeCommune": "70025", + "libelleAcheminement": "ARBECEY", + "nomCommune": "ARBECEY" }, { - "codePostal": "09600", - "codeCommune": "09243", - "libelleAcheminement": "REGAT", - "nomCommune": "REGAT" + "codePostal": "16110", + "codeCommune": "16280", + "libelleAcheminement": "RIVIERES", + "nomCommune": "RIVIERES" }, { - "codePostal": "65230", - "codeCommune": "65358", - "libelleAcheminement": "PEYRET ST ANDRE", - "nomCommune": "PEYRET ST ANDRE" + "codePostal": "69360", + "codeCommune": "69297", + "libelleAcheminement": "TERNAY", + "nomCommune": "TERNAY" }, { - "codePostal": "47310", - "codeCommune": "47300", - "libelleAcheminement": "SERIGNAC SUR GARONNE", - "nomCommune": "SERIGNAC SUR GARONNE" + "codePostal": "59560", + "codeCommune": "59152", + "libelleAcheminement": "COMINES", + "nomCommune": "COMINES" }, { - "codePostal": "39130", - "codeCommune": "39473", - "libelleAcheminement": "SAFFLOZ", - "nomCommune": "SAFFLOZ" + "codePostal": "60800", + "codeCommune": "60552", + "libelleAcheminement": "ROUVILLE", + "nomCommune": "ROUVILLE" }, { - "codePostal": "09300", - "codeCommune": "09249", - "libelleAcheminement": "ROQUEFIXADE", - "nomCommune": "ROQUEFIXADE" + "codePostal": "70600", + "codeCommune": "70027", + "libelleAcheminement": "ARGILLIERES", + "nomCommune": "ARGILLIERES" }, { - "codePostal": "65190", - "codeCommune": "65367", - "libelleAcheminement": "POUMAROUS", - "nomCommune": "POUMAROUS" + "codePostal": "16110", + "codeCommune": "16281", + "libelleAcheminement": "LA ROCHEFOUCAULD EN ANGOUMOIS", + "nomCommune": "LA ROCHEFOUCAULD EN ANGOUMOIS" }, { - "codePostal": "47350", - "codeCommune": "47301", - "libelleAcheminement": "SEYCHES", - "nomCommune": "SEYCHES" + "codePostal": "69124", + "codeCommune": "69299", + "libelleAcheminement": "COLOMBIER SAUGNIEU", + "nomCommune": "COLOMBIER SAUGNIEU" }, { - "codePostal": "39120", - "codeCommune": "39477", - "libelleAcheminement": "ST BARAING", - "nomCommune": "ST BARAING" + "codePostal": "59163", + "codeCommune": "59153", + "libelleAcheminement": "CONDE SUR L ESCAUT", + "nomCommune": "CONDE SUR L ESCAUT" }, { - "codePostal": "09500", - "codeCommune": "09274", - "libelleAcheminement": "ST QUENTIN LA TOUR", - "nomCommune": "ST QUENTIN LA TOUR" + "codePostal": "60190", + "codeCommune": "60553", + "libelleAcheminement": "ROUVILLERS", + "nomCommune": "ROUVILLERS" }, { - "codePostal": "65350", - "codeCommune": "65369", - "libelleAcheminement": "POUYASTRUC", - "nomCommune": "POUYASTRUC" + "codePostal": "70200", + "codeCommune": "70029", + "libelleAcheminement": "ARPENANS", + "nomCommune": "ARPENANS" }, { - "codePostal": "47380", - "codeCommune": "47313", - "libelleAcheminement": "TOURTRES", - "nomCommune": "TOURTRES" + "codePostal": "16330", + "codeCommune": "16295", + "libelleAcheminement": "ST AMANT DE BOIXE", + "nomCommune": "ST AMANT DE BOIXE" }, { - "codePostal": "39200", - "codeCommune": "39478", - "libelleAcheminement": "ST CLAUDE", - "nomCommune": "ST CLAUDE" + "codePostal": "70180", + "codeCommune": "70003", + "libelleAcheminement": "ACHEY", + "nomCommune": "ACHEY" }, { - "codePostal": "09210", - "codeCommune": "09277", - "libelleAcheminement": "ST YBARS", - "nomCommune": "ST YBARS" + "codePostal": "59210", + "codeCommune": "59155", + "libelleAcheminement": "COUDEKERQUE BRANCHE", + "nomCommune": "COUDEKERQUE BRANCHE" }, { - "codePostal": "65230", - "codeCommune": "65373", - "libelleAcheminement": "PUNTOUS", - "nomCommune": "PUNTOUS" + "codePostal": "60620", + "codeCommune": "60554", + "libelleAcheminement": "ROUVRES EN MULTIEN", + "nomCommune": "ROUVRES EN MULTIEN" }, { - "codePostal": "47140", - "codeCommune": "47314", - "libelleAcheminement": "TREMONS", - "nomCommune": "TREMONS" + "codePostal": "70100", + "codeCommune": "70030", + "libelleAcheminement": "ARSANS", + "nomCommune": "ARSANS" }, { - "codePostal": "39200", - "codeCommune": "39478", - "libelleAcheminement": "ST CLAUDE", - "nomCommune": "ST CLAUDE" + "codePostal": "16300", + "codeCommune": "16303", + "libelleAcheminement": "ST BONNET", + "nomCommune": "ST BONNET" }, { - "codePostal": "09400", - "codeCommune": "09280", - "libelleAcheminement": "SAURAT", - "nomCommune": "SAURAT" + "codePostal": "70300", + "codeCommune": "70007", + "libelleAcheminement": "AILLONCOURT", + "nomCommune": "AILLONCOURT" }, { - "codePostal": "65330", - "codeCommune": "65381", - "libelleAcheminement": "SABARROS", - "nomCommune": "SABARROS" + "codePostal": "59149", + "codeCommune": "59157", + "libelleAcheminement": "COUSOLRE", + "nomCommune": "COUSOLRE" }, { - "codePostal": "47400", - "codeCommune": "47316", - "libelleAcheminement": "VARES", - "nomCommune": "VARES" + "codePostal": "60310", + "codeCommune": "60558", + "libelleAcheminement": "ROYE SUR MATZ", + "nomCommune": "ROYE SUR MATZ" }, { - "codePostal": "39320", - "codeCommune": "39485", - "libelleAcheminement": "VAL SURAN", - "nomCommune": "VAL SURAN" + "codePostal": "70500", + "codeCommune": "70035", + "libelleAcheminement": "AUGICOURT", + "nomCommune": "AUGICOURT" }, { - "codePostal": "09310", - "codeCommune": "09296", - "libelleAcheminement": "AULOS SINSAT", - "nomCommune": "AULOS SINSAT" + "codePostal": "16480", + "codeCommune": "16331", + "libelleAcheminement": "ST LAURENT DES COMBES", + "nomCommune": "ST LAURENT DES COMBES" }, { - "codePostal": "65100", - "codeCommune": "65386", - "libelleAcheminement": "ST CREAC", - "nomCommune": "ST CREAC" + "codePostal": "70170", + "codeCommune": "70015", + "libelleAcheminement": "AMONCOURT", + "nomCommune": "AMONCOURT" }, { - "codePostal": "47120", - "codeCommune": "47321", - "libelleAcheminement": "VILLENEUVE DE DURAS", - "nomCommune": "VILLENEUVE DE DURAS" + "codePostal": "59279", + "codeCommune": "59159", + "libelleAcheminement": "CRAYWICK", + "nomCommune": "CRAYWICK" }, { - "codePostal": "39320", - "codeCommune": "39485", - "libelleAcheminement": "VAL SURAN", - "nomCommune": "VAL SURAN" + "codePostal": "60220", + "codeCommune": "60566", + "libelleAcheminement": "ST ARNOULT", + "nomCommune": "ST ARNOULT" }, { - "codePostal": "09320", - "codeCommune": "09301", - "libelleAcheminement": "SOULAN", - "nomCommune": "SOULAN" + "codePostal": "70700", + "codeCommune": "70039", + "libelleAcheminement": "AUTOREILLE", + "nomCommune": "AUTOREILLE" }, { - "codePostal": "65370", - "codeCommune": "65398", - "libelleAcheminement": "SALECHAN", - "nomCommune": "SALECHAN" + "codePostal": "16300", + "codeCommune": "16338", + "libelleAcheminement": "ST MEDARD DE BARBEZIEUX", + "nomCommune": "ST MEDARD" }, { - "codePostal": "47210", - "codeCommune": "47324", - "libelleAcheminement": "VILLEREAL", - "nomCommune": "VILLEREAL" + "codePostal": "70310", + "codeCommune": "70016", + "libelleAcheminement": "AMONT ET EFFRENEY", + "nomCommune": "AMONT ET EFFRENEY" }, { - "codePostal": "39150", - "codeCommune": "39487", - "libelleAcheminement": "ST LAURENT EN GRANDVAUX", - "nomCommune": "ST LAURENT EN GRANDVAUX" + "codePostal": "59154", + "codeCommune": "59160", + "libelleAcheminement": "CRESPIN", + "nomCommune": "CRESPIN" }, { - "codePostal": "09400", - "codeCommune": "09306", - "libelleAcheminement": "TARASCON SUR ARIEGE", - "nomCommune": "TARASCON SUR ARIEGE" + "codePostal": "60600", + "codeCommune": "60568", + "libelleAcheminement": "ST AUBIN SOUS ERQUERY", + "nomCommune": "ST AUBIN SOUS ERQUERY" }, { - "codePostal": "65120", - "codeCommune": "65399", - "libelleAcheminement": "SALIGOS", - "nomCommune": "SALIGOS" + "codePostal": "70200", + "codeCommune": "70046", + "libelleAcheminement": "LES AYNANS", + "nomCommune": "LES AYNANS" }, { - "codePostal": "47200", - "codeCommune": "47326", - "libelleAcheminement": "VIRAZEIL", - "nomCommune": "VIRAZEIL" + "codePostal": "16170", + "codeCommune": "16339", + "libelleAcheminement": "VAL D AUGE", + "nomCommune": "VAL D AUGE" }, { - "codePostal": "39230", - "codeCommune": "39489", - "libelleAcheminement": "ST LOTHAIN", - "nomCommune": "ST LOTHAIN" + "codePostal": "70000", + "codeCommune": "70020", + "libelleAcheminement": "ANDELARROT", + "nomCommune": "ANDELARROT" }, { - "codePostal": "09140", - "codeCommune": "09322", - "libelleAcheminement": "USTOU", - "nomCommune": "USTOU" + "codePostal": "59553", + "codeCommune": "59165", + "libelleAcheminement": "CUINCY", + "nomCommune": "CUINCY" }, { - "codePostal": "65130", - "codeCommune": "65405", - "libelleAcheminement": "SARLABOUS", - "nomCommune": "SARLABOUS" + "codePostal": "60350", + "codeCommune": "60572", + "libelleAcheminement": "ST ETIENNE ROILAYE", + "nomCommune": "ST ETIENNE ROILAYE" }, { - "codePostal": "48200", - "codeCommune": "48002", - "libelleAcheminement": "ALBARET STE MARIE", - "nomCommune": "ALBARET STE MARIE" + "codePostal": "70800", + "codeCommune": "70052", + "libelleAcheminement": "BASSIGNEY", + "nomCommune": "BASSIGNEY" }, { - "codePostal": "39700", - "codeCommune": "39498", - "libelleAcheminement": "SALANS", - "nomCommune": "SALANS" + "codePostal": "16170", + "codeCommune": "16339", + "libelleAcheminement": "VAL D AUGE", + "nomCommune": "VAL D AUGE" }, { - "codePostal": "09120", - "codeCommune": "09327", - "libelleAcheminement": "VENTENAC", - "nomCommune": "VENTENAC" + "codePostal": "70200", + "codeCommune": "70021", + "libelleAcheminement": "ANDORNAY", + "nomCommune": "ANDORNAY" }, { - "codePostal": "65390", - "codeCommune": "65406", - "libelleAcheminement": "SARNIGUET", - "nomCommune": "SARNIGUET" + "codePostal": "59830", + "codeCommune": "59168", + "libelleAcheminement": "CYSOING", + "nomCommune": "CYSOING" }, { - "codePostal": "48800", - "codeCommune": "48004", - "libelleAcheminement": "ALTIER", - "nomCommune": "ALTIER" + "codePostal": "60480", + "codeCommune": "60573", + "libelleAcheminement": "STE EUSOYE", + "nomCommune": "STE EUSOYE" }, { - "codePostal": "39270", - "codeCommune": "39504", - "libelleAcheminement": "SARROGNA", - "nomCommune": "SARROGNA" + "codePostal": "70100", + "codeCommune": "70058", + "libelleAcheminement": "BEAUJEU ET QUITTEUR", + "nomCommune": "BEAUJEU ST VALLIER PIERREJUX QUITTEUR" }, { - "codePostal": "09310", - "codeCommune": "09328", - "libelleAcheminement": "VERDUN", - "nomCommune": "VERDUN" + "codePostal": "16170", + "codeCommune": "16339", + "libelleAcheminement": "VAL D AUGE", + "nomCommune": "VAL D AUGE" }, { - "codePostal": "65120", - "codeCommune": "65411", - "libelleAcheminement": "SASSIS", - "nomCommune": "SASSIS" + "codePostal": "70110", + "codeCommune": "70031", + "libelleAcheminement": "ATHESANS ETROITEFONTAINE", + "nomCommune": "ATHESANS ETROITEFONTAINE" }, { - "codePostal": "48100", - "codeCommune": "48005", - "libelleAcheminement": "ANTRENAS", - "nomCommune": "ANTRENAS" + "codePostal": "59680", + "codeCommune": "59169", + "libelleAcheminement": "DAMOUSIES", + "nomCommune": "DAMOUSIES" }, { - "codePostal": "39300", - "codeCommune": "39517", - "libelleAcheminement": "SIROD", - "nomCommune": "SIROD" + "codePostal": "60170", + "codeCommune": "60582", + "libelleAcheminement": "ST LEGER AUX BOIS", + "nomCommune": "ST LEGER AUX BOIS" }, { - "codePostal": "09340", - "codeCommune": "09332", - "libelleAcheminement": "VERNIOLLE", - "nomCommune": "VERNIOLLE" + "codePostal": "70300", + "codeCommune": "70067", + "libelleAcheminement": "BETONCOURT LES BROTTE", + "nomCommune": "BETONCOURT LES BROTTE" }, { - "codePostal": "65120", - "codeCommune": "65413", - "libelleAcheminement": "SAZOS", - "nomCommune": "SAZOS" + "codePostal": "16150", + "codeCommune": "16345", + "libelleAcheminement": "ST QUENTIN SUR CHARENTE", + "nomCommune": "ST QUENTIN SUR CHARENTE" }, { - "codePostal": "48170", - "codeCommune": "48008", - "libelleAcheminement": "ARZENC DE RANDON", - "nomCommune": "ARZENC DE RANDON" + "codePostal": "70190", + "codeCommune": "70038", + "libelleAcheminement": "AUTHOISON", + "nomCommune": "AUTHOISON" }, { - "codePostal": "39130", - "codeCommune": "39518", - "libelleAcheminement": "SONGESON", - "nomCommune": "SONGESON" + "codePostal": "59187", + "codeCommune": "59170", + "libelleAcheminement": "DECHY", + "nomCommune": "DECHY" }, { - "codePostal": "09220", - "codeCommune": "09334", - "libelleAcheminement": "VAL DE SOS", - "nomCommune": "VAL DE SOS" + "codePostal": "60420", + "codeCommune": "60585", + "libelleAcheminement": "ST MARTIN AUX BOIS", + "nomCommune": "ST MARTIN AUX BOIS" }, { - "codePostal": "65140", - "codeCommune": "65414", - "libelleAcheminement": "SEGALAS", - "nomCommune": "SEGALAS" + "codePostal": "70700", + "codeCommune": "70076", + "libelleAcheminement": "BONNEVENT VELLOREILLE", + "nomCommune": "BONNEVENT VELLOREILLE" }, { - "codePostal": "48130", - "codeCommune": "48009", - "libelleAcheminement": "PEYRE EN AUBRAC", - "nomCommune": "PEYRE EN AUBRAC" + "codePostal": "16200", + "codeCommune": "16349", + "libelleAcheminement": "STE SEVERE", + "nomCommune": "STE SEVERE" }, { - "codePostal": "39130", - "codeCommune": "39519", - "libelleAcheminement": "SOUCIA", - "nomCommune": "SOUCIA" + "codePostal": "70100", + "codeCommune": "70041", + "libelleAcheminement": "AUTREY LES GRAY", + "nomCommune": "AUTREY LES GRAY" }, { - "codePostal": "09220", - "codeCommune": "09334", - "libelleAcheminement": "VAL DE SOS", - "nomCommune": "VAL DE SOS" + "codePostal": "59282", + "codeCommune": "59179", + "libelleAcheminement": "DOUCHY LES MINES", + "nomCommune": "DOUCHY LES MINES" }, { - "codePostal": "65400", - "codeCommune": "65428", - "libelleAcheminement": "SIREIX", - "nomCommune": "SIREIX" + "codePostal": "60430", + "codeCommune": "60598", + "libelleAcheminement": "ST SULPICE", + "nomCommune": "ST SULPICE" }, { - "codePostal": "48130", - "codeCommune": "48009", - "libelleAcheminement": "PEYRE EN AUBRAC", - "nomCommune": "PEYRE EN AUBRAC" + "codePostal": "70110", + "codeCommune": "70077", + "libelleAcheminement": "BOREY", + "nomCommune": "BOREY" }, { - "codePostal": "39160", - "codeCommune": "39532", - "libelleAcheminement": "THOISSIA", - "nomCommune": "THOISSIA" + "codePostal": "16130", + "codeCommune": "16359", + "libelleAcheminement": "SALLES D ANGLES", + "nomCommune": "SALLES D ANGLES" }, { - "codePostal": "09130", - "codeCommune": "09342", - "libelleAcheminement": "STE SUZANNE", - "nomCommune": "STE SUZANNE" + "codePostal": "70110", + "codeCommune": "70042", + "libelleAcheminement": "AUTREY LE VAY", + "nomCommune": "AUTREY LE VAY" }, { - "codePostal": "65190", - "codeCommune": "65447", - "libelleAcheminement": "TOURNAY", - "nomCommune": "TOURNAY" + "codePostal": "59240", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "48250", - "codeCommune": "48021", - "libelleAcheminement": "LA BASTIDE PUYLAURENT", - "nomCommune": "LA BASTIDE PUYLAURENT" + "codePostal": "60210", + "codeCommune": "60599", + "libelleAcheminement": "ST THIBAULT", + "nomCommune": "ST THIBAULT" }, { - "codePostal": "39800", - "codeCommune": "39535", - "libelleAcheminement": "TOURMONT", - "nomCommune": "TOURMONT" + "codePostal": "70500", + "codeCommune": "70078", + "libelleAcheminement": "BOUGEY", + "nomCommune": "BOUGEY" }, { - "codePostal": "10190", - "codeCommune": "10003", - "libelleAcheminement": "AIX VILLEMAUR PALIS", - "nomCommune": "AIX VILLEMAUR PALIS" + "codePostal": "16380", + "codeCommune": "16372", + "libelleAcheminement": "SOUFFRIGNAC", + "nomCommune": "SOUFFRIGNAC" }, { - "codePostal": "65400", - "codeCommune": "65458", - "libelleAcheminement": "UZ", - "nomCommune": "UZ" + "codePostal": "70000", + "codeCommune": "70047", + "libelleAcheminement": "BAIGNES", + "nomCommune": "BAIGNES" }, { - "codePostal": "48200", - "codeCommune": "48026", - "libelleAcheminement": "BLAVIGNAC", - "nomCommune": "BLAVIGNAC" + "codePostal": "59279", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "39190", - "codeCommune": "39537", - "libelleAcheminement": "TRENAL", - "nomCommune": "TRENAL" + "codePostal": "60240", + "codeCommune": "60614", + "libelleAcheminement": "SERANS", + "nomCommune": "SERANS" }, { - "codePostal": "10700", - "codeCommune": "10004", - "libelleAcheminement": "ALLIBAUDIERES", - "nomCommune": "ALLIBAUDIERES" + "codePostal": "70230", + "codeCommune": "70082", + "libelleAcheminement": "BOUHANS LES MONTBOZON", + "nomCommune": "BOUHANS LES MONTBOZON" }, { - "codePostal": "65500", - "codeCommune": "65460", - "libelleAcheminement": "VIC EN BIGORRE", - "nomCommune": "VIC EN BIGORRE" + "codePostal": "16260", + "codeCommune": "16377", + "libelleAcheminement": "LA TACHE", + "nomCommune": "LA TACHE" }, { - "codePostal": "48190", - "codeCommune": "48027", - "libelleAcheminement": "MONT LOZERE ET GOULET", - "nomCommune": "MONT LOZERE ET GOULET" + "codePostal": "70500", + "codeCommune": "70049", + "libelleAcheminement": "BARGES", + "nomCommune": "BARGES" }, { - "codePostal": "39300", - "codeCommune": "39545", - "libelleAcheminement": "LE VAUDIOUX", - "nomCommune": "LE VAUDIOUX" + "codePostal": "59430", + "codeCommune": "59183", + "libelleAcheminement": "DUNKERQUE", + "nomCommune": "DUNKERQUE" }, { - "codePostal": "10140", - "codeCommune": "10008", - "libelleAcheminement": "ARGANCON", - "nomCommune": "ARGANCON" + "codePostal": "60800", + "codeCommune": "60618", + "libelleAcheminement": "SERY MAGNEVAL", + "nomCommune": "SERY MAGNEVAL" }, { - "codePostal": "65120", - "codeCommune": "65463", - "libelleAcheminement": "VIELLA", - "nomCommune": "VIELLA" + "codePostal": "70800", + "codeCommune": "70083", + "libelleAcheminement": "BOULIGNEY", + "nomCommune": "BOULIGNEY" }, { - "codePostal": "48250", - "codeCommune": "48027", - "libelleAcheminement": "MONT LOZERE ET GOULET", - "nomCommune": "MONT LOZERE ET GOULET" + "codePostal": "16700", + "codeCommune": "16378", + "libelleAcheminement": "TAIZE AIZIE", + "nomCommune": "TAIZE AIZIE" }, { - "codePostal": "39570", - "codeCommune": "39552", - "libelleAcheminement": "VERNANTOIS", - "nomCommune": "VERNANTOIS" + "codePostal": "70210", + "codeCommune": "70051", + "libelleAcheminement": "LA BASSE VAIVRE", + "nomCommune": "LA BASSE VAIVRE" }, { - "codePostal": "10340", - "codeCommune": "10009", - "libelleAcheminement": "ARRELLES", - "nomCommune": "ARRELLES" + "codePostal": "59320", + "codeCommune": "59195", + "libelleAcheminement": "ENGLOS", + "nomCommune": "ENGLOS" }, { - "codePostal": "65360", - "codeCommune": "65464", - "libelleAcheminement": "VIELLE ADOUR", - "nomCommune": "VIELLE ADOUR" + "codePostal": "60400", + "codeCommune": "60625", + "libelleAcheminement": "SUZOY", + "nomCommune": "SUZOY" }, { - "codePostal": "48500", - "codeCommune": "48034", - "libelleAcheminement": "LA CANOURGUE", - "nomCommune": "LA CANOURGUE" + "codePostal": "70800", + "codeCommune": "70087", + "libelleAcheminement": "BOURGUIGNON LES CONFLANS", + "nomCommune": "BOURGUIGNON LES CONFLANS" }, { - "codePostal": "39200", - "codeCommune": "39560", - "libelleAcheminement": "VILLARD ST SAUVEUR", - "nomCommune": "VILLARD ST SAUVEUR" + "codePostal": "16560", + "codeCommune": "16383", + "libelleAcheminement": "TOURRIERS", + "nomCommune": "TOURRIERS" }, { - "codePostal": "10220", - "codeCommune": "10014", - "libelleAcheminement": "ASSENCIERES", - "nomCommune": "ASSENCIERES" + "codePostal": "70160", + "codeCommune": "70056", + "libelleAcheminement": "BAULAY", + "nomCommune": "BAULAY" }, { - "codePostal": "65170", - "codeCommune": "65465", - "libelleAcheminement": "VIELLE AURE", - "nomCommune": "VIELLE AURE" + "codePostal": "59710", + "codeCommune": "59197", + "libelleAcheminement": "ENNEVELIN", + "nomCommune": "ENNEVELIN" }, { - "codePostal": "48500", - "codeCommune": "48034", - "libelleAcheminement": "LA CANOURGUE", - "nomCommune": "LA CANOURGUE" + "codePostal": "60510", + "codeCommune": "60628", + "libelleAcheminement": "THERDONNE", + "nomCommune": "THERDONNE" }, { - "codePostal": "39260", - "codeCommune": "39561", - "libelleAcheminement": "VILLARDS D HERIA", - "nomCommune": "VILLARDS D HERIA" + "codePostal": "70300", + "codeCommune": "70098", + "libelleAcheminement": "BROTTE LES LUXEUIL", + "nomCommune": "BROTTE LES LUXEUIL" }, { - "codePostal": "10220", - "codeCommune": "10019", - "libelleAcheminement": "VAL D AUZON", - "nomCommune": "VAL D AUZON" + "codePostal": "16200", + "codeCommune": "16387", + "libelleAcheminement": "TRIAC LAUTRAIT", + "nomCommune": "TRIAC LAUTRAIT" }, { - "codePostal": "66480", - "codeCommune": "66001", - "libelleAcheminement": "L ALBERE", - "nomCommune": "L ALBERE" + "codePostal": "70150", + "codeCommune": "70057", + "libelleAcheminement": "BAY", + "nomCommune": "BAY" }, { - "codePostal": "48600", - "codeCommune": "48038", - "libelleAcheminement": "BEL AIR VAL D ANCE", - "nomCommune": "BEL AIR VAL D ANCE" + "codePostal": "59320", + "codeCommune": "59201", + "libelleAcheminement": "ERQUINGHEM LE SEC", + "nomCommune": "ERQUINGHEM LE SEC" }, { - "codePostal": "39800", - "codeCommune": "39570", - "libelleAcheminement": "VILLERS LES BOIS", - "nomCommune": "VILLERS LES BOIS" + "codePostal": "60380", + "codeCommune": "60629", + "libelleAcheminement": "THERINES", + "nomCommune": "THERINES" }, { - "codePostal": "10130", - "codeCommune": "10024", - "libelleAcheminement": "AVREUIL", - "nomCommune": "AVREUIL" + "codePostal": "70280", + "codeCommune": "70103", + "libelleAcheminement": "LA BRUYERE", + "nomCommune": "LA BRUYERE" }, { - "codePostal": "66220", - "codeCommune": "66006", - "libelleAcheminement": "ANSIGNAN", - "nomCommune": "ANSIGNAN" + "codePostal": "16730", + "codeCommune": "16388", + "libelleAcheminement": "TROIS PALIS", + "nomCommune": "TROIS PALIS" }, { - "codePostal": "48310", - "codeCommune": "48044", - "libelleAcheminement": "CHAUCHAILLES", - "nomCommune": "CHAUCHAILLES" + "codePostal": "70230", + "codeCommune": "70065", + "libelleAcheminement": "BESNANS", + "nomCommune": "BESNANS" }, { - "codePostal": "39210", - "codeCommune": "39582", - "libelleAcheminement": "VOITEUR", - "nomCommune": "VOITEUR" + "codePostal": "59124", + "codeCommune": "59205", + "libelleAcheminement": "ESCAUDAIN", + "nomCommune": "ESCAUDAIN" }, { - "codePostal": "10600", - "codeCommune": "10030", - "libelleAcheminement": "BARBEREY ST SULPICE", - "nomCommune": "BARBEREY ST SULPICE" + "codePostal": "60170", + "codeCommune": "60642", + "libelleAcheminement": "TRACY LE VAL", + "nomCommune": "TRACY LE VAL" }, { - "codePostal": "66150", - "codeCommune": "66009", - "libelleAcheminement": "ARLES SUR TECH", - "nomCommune": "ARLES SUR TECH" + "codePostal": "70500", + "codeCommune": "70114", + "libelleAcheminement": "CENDRECOURT", + "nomCommune": "CENDRECOURT" }, { - "codePostal": "48140", - "codeCommune": "48046", - "libelleAcheminement": "CHAULHAC", - "nomCommune": "CHAULHAC" + "codePostal": "16350", + "codeCommune": "16389", + "libelleAcheminement": "TURGON", + "nomCommune": "TURGON" }, { - "codePostal": "40800", - "codeCommune": "40001", - "libelleAcheminement": "AIRE SUR L ADOUR", - "nomCommune": "AIRE SUR L ADOUR" + "codePostal": "70310", + "codeCommune": "70071", + "libelleAcheminement": "BEULOTTE ST LAURENT", + "nomCommune": "BEULOTTE ST LAURENT" }, { - "codePostal": "10400", - "codeCommune": "10031", - "libelleAcheminement": "BARBUISE", - "nomCommune": "BARBUISE" + "codePostal": "59219", + "codeCommune": "59218", + "libelleAcheminement": "ETROEUNGT", + "nomCommune": "ETROEUNGT" }, { - "codePostal": "66360", - "codeCommune": "66010", - "libelleAcheminement": "AYGUATEBIA TALAU", - "nomCommune": "AYGUATEBIA TALAU" + "codePostal": "60590", + "codeCommune": "60644", + "libelleAcheminement": "TRIE CHATEAU", + "nomCommune": "TRIE CHATEAU" }, { - "codePostal": "48190", - "codeCommune": "48053", - "libelleAcheminement": "CUBIERES", - "nomCommune": "CUBIERES" + "codePostal": "70300", + "codeCommune": "70128", + "libelleAcheminement": "LA CHAPELLE LES LUXEUIL", + "nomCommune": "LA CHAPELLE LES LUXEUIL" }, { - "codePostal": "40090", - "codeCommune": "40012", - "libelleAcheminement": "ARTASSENX", - "nomCommune": "ARTASSENX" + "codePostal": "16320", + "codeCommune": "16394", + "libelleAcheminement": "VAUX LAVALETTE", + "nomCommune": "VAUX LAVALETTE" }, { - "codePostal": "10200", - "codeCommune": "10032", - "libelleAcheminement": "BAROVILLE", - "nomCommune": "BAROVILLE" + "codePostal": "70500", + "codeCommune": "70074", + "libelleAcheminement": "BLONDEFONTAINE", + "nomCommune": "BLONDEFONTAINE" }, { - "codePostal": "66540", - "codeCommune": "66012", - "libelleAcheminement": "BAHO", - "nomCommune": "BAHO" + "codePostal": "59155", + "codeCommune": "59220", + "libelleAcheminement": "FACHES THUMESNIL", + "nomCommune": "FACHES THUMESNIL" }, { - "codePostal": "48400", - "codeCommune": "48061", - "libelleAcheminement": "FLORAC TROIS RIVIERES", - "nomCommune": "FLORAC TROIS RIVIERES" + "codePostal": "60112", + "codeCommune": "60646", + "libelleAcheminement": "TROISSEREUX", + "nomCommune": "TROISSEREUX" }, { - "codePostal": "40120", - "codeCommune": "40014", - "libelleAcheminement": "ARUE", - "nomCommune": "ARUE" + "codePostal": "70100", + "codeCommune": "70132", + "libelleAcheminement": "CHARGEY LES GRAY", + "nomCommune": "CHARGEY LES GRAY" }, { - "codePostal": "10800", - "codeCommune": "10049", - "libelleAcheminement": "LES BORDES AUMONT", - "nomCommune": "LES BORDES AUMONT" + "codePostal": "16170", + "codeCommune": "16395", + "libelleAcheminement": "VAUX ROUILLAC", + "nomCommune": "VAUX ROUILLAC" }, { - "codePostal": "66210", - "codeCommune": "66020", - "libelleAcheminement": "BOLQUERE", - "nomCommune": "BOLQUERE" + "codePostal": "70500", + "codeCommune": "70086", + "libelleAcheminement": "BOURBEVELLE", + "nomCommune": "BOURBEVELLE" }, { - "codePostal": "48100", - "codeCommune": "48068", - "libelleAcheminement": "GABRIAS", - "nomCommune": "GABRIAS" + "codePostal": "59750", + "codeCommune": "59225", + "libelleAcheminement": "FEIGNIES", + "nomCommune": "FEIGNIES" }, { - "codePostal": "40310", - "codeCommune": "40015", - "libelleAcheminement": "ARX", - "nomCommune": "ARX" + "codePostal": "60120", + "codeCommune": "60648", + "libelleAcheminement": "TROUSSENCOURT", + "nomCommune": "TROUSSENCOURT" }, { - "codePostal": "10140", - "codeCommune": "10050", - "libelleAcheminement": "BOSSANCOURT", - "nomCommune": "BOSSANCOURT" + "codePostal": "70170", + "codeCommune": "70133", + "libelleAcheminement": "CHARGEY LES PORT", + "nomCommune": "CHARGEY LES PORT" }, { - "codePostal": "66210", - "codeCommune": "66027", - "libelleAcheminement": "LA CABANASSE", - "nomCommune": "LA CABANASSE" + "codePostal": "16110", + "codeCommune": "16406", + "libelleAcheminement": "MOULINS SUR TARDOIRE", + "nomCommune": "MOULINS SUR TARDOIRE" }, { - "codePostal": "48100", - "codeCommune": "48072", - "libelleAcheminement": "GREZES", - "nomCommune": "GREZES" + "codePostal": "70140", + "codeCommune": "70092", + "libelleAcheminement": "BRESILLEY", + "nomCommune": "BRESILLEY" }, { - "codePostal": "40400", - "codeCommune": "40018", - "libelleAcheminement": "AUDON", - "nomCommune": "AUDON" + "codePostal": "59169", + "codeCommune": "59228", + "libelleAcheminement": "FERIN", + "nomCommune": "FERIN" }, { - "codePostal": "10450", - "codeCommune": "10060", - "libelleAcheminement": "BREVIANDES", - "nomCommune": "BREVIANDES" + "codePostal": "60730", + "codeCommune": "60651", + "libelleAcheminement": "ULLY ST GEORGES", + "nomCommune": "ULLY ST GEORGES" }, { - "codePostal": "66400", - "codeCommune": "66032", - "libelleAcheminement": "CALMEILLES", - "nomCommune": "CALMEILLES" + "codePostal": "70120", + "codeCommune": "70135", + "libelleAcheminement": "CHARMES ST VALBERT", + "nomCommune": "CHARMES ST VALBERT" }, { - "codePostal": "48120", - "codeCommune": "48079", - "libelleAcheminement": "LAJO", - "nomCommune": "LAJO" + "codePostal": "16210", + "codeCommune": "16424", + "libelleAcheminement": "YVIERS", + "nomCommune": "YVIERS" }, { - "codePostal": "40500", - "codeCommune": "40020", - "libelleAcheminement": "AURICE", - "nomCommune": "AURICE" + "codePostal": "70500", + "codeCommune": "70106", + "libelleAcheminement": "BUFFIGNECOURT", + "nomCommune": "BUFFIGNECOURT" }, { - "codePostal": "10240", - "codeCommune": "10065", - "libelleAcheminement": "BRILLECOURT", - "nomCommune": "BRILLECOURT" + "codePostal": "59158", + "codeCommune": "59238", + "libelleAcheminement": "FLINES LES MORTAGNE", + "nomCommune": "FLINES LES MORTAGNE" }, { - "codePostal": "66730", - "codeCommune": "66035", - "libelleAcheminement": "CAMPOUSSY", - "nomCommune": "CAMPOUSSY" + "codePostal": "60130", + "codeCommune": "60653", + "libelleAcheminement": "VALESCOURT", + "nomCommune": "VALESCOURT" }, { - "codePostal": "48270", - "codeCommune": "48087", - "libelleAcheminement": "PRINSUEJOLS MALBOUZON", - "nomCommune": "PRINSUEJOLS MALBOUZON" + "codePostal": "70360", + "codeCommune": "70138", + "libelleAcheminement": "CHASSEY LES SCEY", + "nomCommune": "CHASSEY LES SCEY" }, { - "codePostal": "40500", - "codeCommune": "40024", - "libelleAcheminement": "BANOS", - "nomCommune": "BANOS" + "codePostal": "17500", + "codeCommune": "17002", + "libelleAcheminement": "AGUDELLE", + "nomCommune": "AGUDELLE" }, { - "codePostal": "10110", - "codeCommune": "10069", - "libelleAcheminement": "BUXIERES SUR ARCE", - "nomCommune": "BUXIERES SUR ARCE" + "codePostal": "70190", + "codeCommune": "70109", + "libelleAcheminement": "BUTHIERS", + "nomCommune": "BUTHIERS" }, { - "codePostal": "66360", - "codeCommune": "66036", - "libelleAcheminement": "CANAVEILLES", - "nomCommune": "CANAVEILLES" + "codePostal": "59148", + "codeCommune": "59239", + "libelleAcheminement": "FLINES LEZ RACHES", + "nomCommune": "FLINES LEZ RACHES" }, { - "codePostal": "48210", - "codeCommune": "48094", - "libelleAcheminement": "MASSEGROS CAUSSES GORGES", - "nomCommune": "MASSEGROS CAUSSES GORGES" + "codePostal": "60117", + "codeCommune": "60661", + "libelleAcheminement": "VAUMOISE", + "nomCommune": "VAUMOISE" }, { - "codePostal": "40360", - "codeCommune": "40028", - "libelleAcheminement": "BASTENNES", - "nomCommune": "BASTENNES" + "codePostal": "70190", + "codeCommune": "70145", + "libelleAcheminement": "CHAUX LA LOTIERE", + "nomCommune": "CHAUX LA LOTIERE" }, { - "codePostal": "10500", - "codeCommune": "10072", - "libelleAcheminement": "LA CHAISE", - "nomCommune": "LA CHAISE" + "codePostal": "17290", + "codeCommune": "17003", + "libelleAcheminement": "AIGREFEUILLE D AUNIS", + "nomCommune": "AIGREFEUILLE D AUNIS" }, { - "codePostal": "66530", - "codeCommune": "66050", - "libelleAcheminement": "CLAIRA", - "nomCommune": "CLAIRA" + "codePostal": "70240", + "codeCommune": "70111", + "libelleAcheminement": "CALMOUTIER", + "nomCommune": "CALMOUTIER" }, { - "codePostal": "48150", - "codeCommune": "48096", - "libelleAcheminement": "MEYRUEIS", - "nomCommune": "MEYRUEIS" + "codePostal": "59219", + "codeCommune": "59241", + "libelleAcheminement": "FLOYON", + "nomCommune": "FLOYON" }, { - "codePostal": "40400", - "codeCommune": "40031", - "libelleAcheminement": "BEGAAR", - "nomCommune": "BEGAAR" + "codePostal": "60440", + "codeCommune": "60671", + "libelleAcheminement": "VERSIGNY", + "nomCommune": "VERSIGNY" }, { - "codePostal": "10200", - "codeCommune": "10076", - "libelleAcheminement": "CHAMPIGNOL LEZ MONDEVILLE", - "nomCommune": "CHAMPIGNOL LEZ MONDEVILLE" + "codePostal": "70400", + "codeCommune": "70147", + "libelleAcheminement": "CHAVANNE", + "nomCommune": "CHAVANNE" }, { - "codePostal": "66500", - "codeCommune": "66054", - "libelleAcheminement": "CONAT", - "nomCommune": "CONAT" + "codePostal": "17150", + "codeCommune": "17005", + "libelleAcheminement": "ALLAS BOCAGE", + "nomCommune": "ALLAS BOCAGE" }, { - "codePostal": "48100", - "codeCommune": "48099", - "libelleAcheminement": "BOURGS SUR COLAGNE", - "nomCommune": "BOURGS SUR COLAGNE" + "codePostal": "70000", + "codeCommune": "70115", + "libelleAcheminement": "CERRE LES NOROY", + "nomCommune": "CERRE LES NOROY" }, { - "codePostal": "40410", - "codeCommune": "40032", - "libelleAcheminement": "BELHADE", - "nomCommune": "BELHADE" + "codePostal": "59249", + "codeCommune": "59257", + "libelleAcheminement": "FROMELLES", + "nomCommune": "FROMELLES" }, { - "codePostal": "10600", - "codeCommune": "10081", - "libelleAcheminement": "LA CHAPELLE ST LUC", - "nomCommune": "LA CHAPELLE ST LUC" + "codePostal": "60117", + "codeCommune": "60672", + "libelleAcheminement": "VEZ", + "nomCommune": "VEZ" }, { - "codePostal": "66130", - "codeCommune": "66056", - "libelleAcheminement": "CORBERE LES CABANES", - "nomCommune": "CORBERE LES CABANES" + "codePostal": "70150", + "codeCommune": "70150", + "libelleAcheminement": "CHENEVREY ET MOROGNE", + "nomCommune": "CHENEVREY ET MOROGNE" }, { - "codePostal": "48100", - "codeCommune": "48099", - "libelleAcheminement": "BOURGS SUR COLAGNE", - "nomCommune": "BOURGS SUR COLAGNE" + "codePostal": "17500", + "codeCommune": "17006", + "libelleAcheminement": "ALLAS CHAMPAGNE", + "nomCommune": "ALLAS CHAMPAGNE" }, { - "codePostal": "40300", - "codeCommune": "40034", - "libelleAcheminement": "BELUS", - "nomCommune": "BELUS" + "codePostal": "70400", + "codeCommune": "70116", + "libelleAcheminement": "CHAGEY", + "nomCommune": "CHAGEY" }, { - "codePostal": "10150", - "codeCommune": "10084", - "libelleAcheminement": "CHARMONT SOUS BARBUISE", - "nomCommune": "CHARMONT SOUS BARBUISE" + "codePostal": "59144", + "codeCommune": "59265", + "libelleAcheminement": "GOMMEGNIES", + "nomCommune": "GOMMEGNIES" }, { - "codePostal": "66760", - "codeCommune": "66062", - "libelleAcheminement": "DORRES", - "nomCommune": "DORRES" + "codePostal": "60175", + "codeCommune": "60678", + "libelleAcheminement": "VILLENEUVE LES SABLONS", + "nomCommune": "VILLENEUVE LES SABLONS" }, { - "codePostal": "48300", - "codeCommune": "48112", - "libelleAcheminement": "PIERREFICHE", - "nomCommune": "PIERREFICHE" + "codePostal": "70800", + "codeCommune": "70168", + "libelleAcheminement": "CONFLANS SUR LANTERNE", + "nomCommune": "CONFLANS SUR LANTERNE" }, { - "codePostal": "40390", - "codeCommune": "40044", - "libelleAcheminement": "BIAUDOS", - "nomCommune": "BIAUDOS" + "codePostal": "17380", + "codeCommune": "17012", + "libelleAcheminement": "ANNEZAY", + "nomCommune": "ANNEZAY" }, { - "codePostal": "10150", - "codeCommune": "10084", - "libelleAcheminement": "CHARMONT SOUS BARBUISE", - "nomCommune": "CHARMONT SOUS BARBUISE" + "codePostal": "70190", + "codeCommune": "70118", + "libelleAcheminement": "CHAMBORNAY LES BELLEVAUX", + "nomCommune": "CHAMBORNAY LES BELLEVAUX" }, { - "codePostal": "66760", - "codeCommune": "66066", - "libelleAcheminement": "ENVEITG", - "nomCommune": "ENVEITG" + "codePostal": "59231", + "codeCommune": "59267", + "libelleAcheminement": "GONNELIEU", + "nomCommune": "GONNELIEU" }, { - "codePostal": "48260", - "codeCommune": "48123", - "libelleAcheminement": "RECOULES D AUBRAC", - "nomCommune": "RECOULES D AUBRAC" + "codePostal": "60810", + "codeCommune": "60682", + "libelleAcheminement": "VILLERS ST FRAMBOURG OGNON", + "nomCommune": "VILLERS ST FRAMBOURG OGNON" }, { - "codePostal": "40600", - "codeCommune": "40046", - "libelleAcheminement": "BISCARROSSE", - "nomCommune": "BISCARROSSE" + "codePostal": "70300", + "codeCommune": "70172", + "libelleAcheminement": "LA CORBIERE", + "nomCommune": "LA CORBIERE" }, { - "codePostal": "10210", - "codeCommune": "10087", - "libelleAcheminement": "CHASEREY", - "nomCommune": "CHASEREY" + "codePostal": "17590", + "codeCommune": "17019", + "libelleAcheminement": "ARS EN RE", + "nomCommune": "ARS EN RE" }, { - "codePostal": "66720", - "codeCommune": "66092", - "libelleAcheminement": "LANSAC", - "nomCommune": "LANSAC" + "codePostal": "70600", + "codeCommune": "70122", + "libelleAcheminement": "CHAMPLITTE", + "nomCommune": "CHAMPLITTE" }, { - "codePostal": "48700", - "codeCommune": "48126", - "libelleAcheminement": "LACHAMP RIBENNES", - "nomCommune": "LACHAMP RIBENNES" + "codePostal": "59231", + "codeCommune": "59269", + "libelleAcheminement": "GOUZEAUCOURT", + "nomCommune": "GOUZEAUCOURT" }, { - "codePostal": "40420", - "codeCommune": "40056", - "libelleAcheminement": "BROCAS", - "nomCommune": "BROCAS" + "codePostal": "60620", + "codeCommune": "60683", + "libelleAcheminement": "VILLERS ST GENEST", + "nomCommune": "VILLERS ST GENEST" }, { - "codePostal": "10110", - "codeCommune": "10092", - "libelleAcheminement": "CHAUFFOUR LES BAILLY", - "nomCommune": "CHAUFFOUR LES BAILLY" + "codePostal": "70200", + "codeCommune": "70178", + "libelleAcheminement": "LA COTE", + "nomCommune": "LA COTE" }, { - "codePostal": "66740", - "codeCommune": "66093", - "libelleAcheminement": "LAROQUE DES ALBERES", - "nomCommune": "LAROQUE DES ALBERES" + "codePostal": "17470", + "codeCommune": "17024", + "libelleAcheminement": "AULNAY", + "nomCommune": "AULNAY" }, { - "codePostal": "48700", - "codeCommune": "48127", - "libelleAcheminement": "MONTS DE RANDON", - "nomCommune": "MONTS DE RANDON" + "codePostal": "70360", + "codeCommune": "70127", + "libelleAcheminement": "CHANTES", + "nomCommune": "CHANTES" }, { - "codePostal": "40430", - "codeCommune": "40060", - "libelleAcheminement": "CALLEN", - "nomCommune": "CALLEN" + "codePostal": "59151", + "codeCommune": "59280", + "libelleAcheminement": "HAMEL", + "nomCommune": "HAMEL" }, { - "codePostal": "10330", - "codeCommune": "10094", - "libelleAcheminement": "CHAVANGES", - "nomCommune": "CHAVANGES" + "codePostal": "60340", + "codeCommune": "60686", + "libelleAcheminement": "VILLERS SOUS ST LEU", + "nomCommune": "VILLERS SOUS ST LEU" }, { - "codePostal": "66720", - "codeCommune": "66096", - "libelleAcheminement": "LATOUR DE FRANCE", - "nomCommune": "LATOUR DE FRANCE" + "codePostal": "70700", + "codeCommune": "70192", + "libelleAcheminement": "CUGNEY", + "nomCommune": "CUGNEY" }, { - "codePostal": "48400", - "codeCommune": "48130", - "libelleAcheminement": "ROUSSES", - "nomCommune": "ROUSSES" + "codePostal": "17770", + "codeCommune": "17025", + "libelleAcheminement": "AUMAGNE", + "nomCommune": "AUMAGNE" }, { - "codePostal": "40400", - "codeCommune": "40067", - "libelleAcheminement": "CARCEN PONSON", - "nomCommune": "CARCEN PONSON" + "codePostal": "70170", + "codeCommune": "70146", + "libelleAcheminement": "CHAUX LES PORT", + "nomCommune": "CHAUX LES PORT" }, { - "codePostal": "10190", - "codeCommune": "10096", - "libelleAcheminement": "CHENNEGY", - "nomCommune": "CHENNEGY" + "codePostal": "59330", + "codeCommune": "59291", + "libelleAcheminement": "HAUTMONT", + "nomCommune": "HAUTMONT" }, { - "codePostal": "66170", - "codeCommune": "66108", - "libelleAcheminement": "MILLAS", - "nomCommune": "MILLAS" + "codePostal": "60650", + "codeCommune": "60687", + "libelleAcheminement": "VILLERS SUR AUCHY", + "nomCommune": "VILLERS SUR AUCHY" }, { - "codePostal": "48120", - "codeCommune": "48132", - "libelleAcheminement": "ST ALBAN SUR LIMAGNOLE", - "nomCommune": "ST ALBAN SUR LIMAGNOLE" + "codePostal": "70200", + "codeCommune": "70195", + "libelleAcheminement": "DAMBENOIT LES COLOMBE", + "nomCommune": "DAMBENOIT LES COLOMBE" }, { - "codePostal": "40700", - "codeCommune": "40079", - "libelleAcheminement": "CAZALIS", - "nomCommune": "CAZALIS" + "codePostal": "17600", + "codeCommune": "17030", + "libelleAcheminement": "BALANZAC", + "nomCommune": "BALANZAC" }, { - "codePostal": "10130", - "codeCommune": "10107", - "libelleAcheminement": "COURSAN EN OTHE", - "nomCommune": "COURSAN EN OTHE" + "codePostal": "70360", + "codeCommune": "70148", + "libelleAcheminement": "CHEMILLY", + "nomCommune": "CHEMILLY" }, { - "codePostal": "66300", - "codeCommune": "66112", - "libelleAcheminement": "MONTAURIOL", - "nomCommune": "MONTAURIOL" + "codePostal": "59147", + "codeCommune": "59304", + "libelleAcheminement": "HERRIN", + "nomCommune": "HERRIN" }, { - "codePostal": "48240", - "codeCommune": "48136", - "libelleAcheminement": "ST ANDRE DE LANCIZE", - "nomCommune": "ST ANDRE DE LANCIZE" + "codePostal": "60860", + "codeCommune": "60688", + "libelleAcheminement": "VILLERS SUR BONNIERES", + "nomCommune": "VILLERS SUR BONNIERES" }, { - "codePostal": "40320", - "codeCommune": "40082", - "libelleAcheminement": "CLASSUN", - "nomCommune": "CLASSUN" + "codePostal": "70230", + "codeCommune": "70197", + "libelleAcheminement": "DAMPIERRE SUR LINOTTE", + "nomCommune": "DAMPIERRE SUR LINOTTE" }, { - "codePostal": "10130", - "codeCommune": "10108", - "libelleAcheminement": "COURTAOULT", - "nomCommune": "COURTAOULT" + "codePostal": "17800", + "codeCommune": "17047", + "libelleAcheminement": "BIRON", + "nomCommune": "BIRON" }, { - "codePostal": "66740", - "codeCommune": "66115", - "libelleAcheminement": "MONTESQUIEU DES ALBERES", - "nomCommune": "MONTESQUIEU DES ALBERES" + "codePostal": "70300", + "codeCommune": "70155", + "libelleAcheminement": "CITERS", + "nomCommune": "CITERS" }, { - "codePostal": "48000", - "codeCommune": "48137", - "libelleAcheminement": "ST BAUZILE", - "nomCommune": "ST BAUZILE" + "codePostal": "59143", + "codeCommune": "59307", + "libelleAcheminement": "HOLQUE", + "nomCommune": "HOLQUE" }, { - "codePostal": "40500", - "codeCommune": "40086", - "libelleAcheminement": "COUDURES", - "nomCommune": "COUDURES" + "codePostal": "60150", + "codeCommune": "60689", + "libelleAcheminement": "VILLERS SUR COUDUN", + "nomCommune": "VILLERS SUR COUDUN" }, { - "codePostal": "10200", - "codeCommune": "10113", - "libelleAcheminement": "COUVIGNON", - "nomCommune": "COUVIGNON" + "codePostal": "70180", + "codeCommune": "70198", + "libelleAcheminement": "DAMPIERRE SUR SALON", + "nomCommune": "DAMPIERRE SUR SALON" }, { - "codePostal": "66360", - "codeCommune": "66123", - "libelleAcheminement": "NYER", - "nomCommune": "NYER" + "codePostal": "17160", + "codeCommune": "17048", + "libelleAcheminement": "BLANZAC LES MATHA", + "nomCommune": "BLANZAC LES MATHA" }, { - "codePostal": "48100", - "codeCommune": "48138", - "libelleAcheminement": "ST BONNET DE CHIRAC", - "nomCommune": "ST BONNET DE CHIRAC" + "codePostal": "70200", + "codeCommune": "70157", + "libelleAcheminement": "CLAIREGOUTTE", + "nomCommune": "CLAIREGOUTTE" }, { - "codePostal": "40500", - "codeCommune": "40092", - "libelleAcheminement": "DUMES", - "nomCommune": "DUMES" + "codePostal": "59171", + "codeCommune": "59314", + "libelleAcheminement": "HORNAING", + "nomCommune": "HORNAING" }, { - "codePostal": "10200", - "codeCommune": "10113", - "libelleAcheminement": "COUVIGNON", - "nomCommune": "COUVIGNON" + "codePostal": "60120", + "codeCommune": "60692", + "libelleAcheminement": "VILLERS VICOMTE", + "nomCommune": "VILLERS VICOMTE" }, { - "codePostal": "66120", - "codeCommune": "66124", - "libelleAcheminement": "FONT ROMEU ODEILLO VIA", - "nomCommune": "FONT ROMEU ODEILLO VIA" + "codePostal": "70180", + "codeCommune": "70201", + "libelleAcheminement": "DELAIN", + "nomCommune": "DELAIN" }, { - "codePostal": "48700", - "codeCommune": "48145", - "libelleAcheminement": "ST DENIS EN MARGERIDE", - "nomCommune": "ST DENIS EN MARGERIDE" + "codePostal": "17240", + "codeCommune": "17050", + "libelleAcheminement": "BOIS", + "nomCommune": "BOIS" }, { - "codePostal": "40290", - "codeCommune": "40095", - "libelleAcheminement": "ESTIBEAUX", - "nomCommune": "ESTIBEAUX" + "codePostal": "70400", + "codeCommune": "70160", + "libelleAcheminement": "COISEVAUX", + "nomCommune": "COISEVAUX" }, { - "codePostal": "10150", - "codeCommune": "10115", - "libelleAcheminement": "CRENEY PRES TROYES", - "nomCommune": "CRENEY PRES TROYES" + "codePostal": "59116", + "codeCommune": "59317", + "libelleAcheminement": "HOUPLINES", + "nomCommune": "HOUPLINES" }, { - "codePostal": "66600", - "codeCommune": "66127", - "libelleAcheminement": "OPOUL PERILLOS", - "nomCommune": "OPOUL PERILLOS" + "codePostal": "60112", + "codeCommune": "60697", + "libelleAcheminement": "VROCOURT", + "nomCommune": "VROCOURT" }, { - "codePostal": "48320", - "codeCommune": "48146", - "libelleAcheminement": "GORGES DU TARN CAUSSES", - "nomCommune": "GORGES DU TARN CAUSSES" + "codePostal": "70000", + "codeCommune": "70208", + "libelleAcheminement": "ECHENOZ LE SEC", + "nomCommune": "ECHENOZ LE SEC" }, { - "codePostal": "40420", - "codeCommune": "40105", - "libelleAcheminement": "GAREIN", - "nomCommune": "GAREIN" + "codePostal": "17360", + "codeCommune": "17055", + "libelleAcheminement": "BOSCAMNANT", + "nomCommune": "BOSCAMNANT" }, { - "codePostal": "10500", - "codeCommune": "10117", - "libelleAcheminement": "CRESPY LE NEUF", - "nomCommune": "CRESPY LE NEUF" + "codePostal": "70000", + "codeCommune": "70166", + "libelleAcheminement": "COMBERJON", + "nomCommune": "COMBERJON" }, { - "codePostal": "66340", - "codeCommune": "66130", - "libelleAcheminement": "OSSEJA", - "nomCommune": "OSSEJA" + "codePostal": "59144", + "codeCommune": "59323", + "libelleAcheminement": "JENLAIN", + "nomCommune": "JENLAIN" }, { - "codePostal": "48170", - "codeCommune": "48151", - "libelleAcheminement": "ST FREZAL D ALBUGES", - "nomCommune": "ST FREZAL D ALBUGES" + "codePostal": "60380", + "codeCommune": "60699", + "libelleAcheminement": "WAMBEZ", + "nomCommune": "WAMBEZ" }, { - "codePostal": "40380", - "codeCommune": "40112", - "libelleAcheminement": "GIBRET", - "nomCommune": "GIBRET" + "codePostal": "70160", + "codeCommune": "70214", + "libelleAcheminement": "EQUEVILLEY", + "nomCommune": "EQUEVILLEY" }, { - "codePostal": "10500", - "codeCommune": "10123", - "libelleAcheminement": "DIENVILLE", - "nomCommune": "DIENVILLE" + "codePostal": "17540", + "codeCommune": "17057", + "libelleAcheminement": "BOUHET", + "nomCommune": "BOUHET" }, { - "codePostal": "66100", - "codeCommune": "66136", - "libelleAcheminement": "PERPIGNAN", - "nomCommune": "PERPIGNAN" + "codePostal": "70170", + "codeCommune": "70167", + "libelleAcheminement": "CONFLANDEY", + "nomCommune": "CONFLANDEY" }, { - "codePostal": "48240", - "codeCommune": "48152", - "libelleAcheminement": "VENTALON EN CEVENNES", - "nomCommune": "VENTALON EN CEVENNES" + "codePostal": "59130", + "codeCommune": "59328", + "libelleAcheminement": "LAMBERSART", + "nomCommune": "LAMBERSART" }, { - "codePostal": "40990", - "codeCommune": "40114", - "libelleAcheminement": "GOURBERA", - "nomCommune": "GOURBERA" + "codePostal": "60420", + "codeCommune": "60702", + "libelleAcheminement": "WELLES PERENNES", + "nomCommune": "WELLES PERENNES" }, { - "codePostal": "10700", - "codeCommune": "10130", - "libelleAcheminement": "DOSNON", - "nomCommune": "DOSNON" + "codePostal": "70150", + "codeCommune": "70224", + "libelleAcheminement": "ETUZ", + "nomCommune": "ETUZ" }, { - "codePostal": "66600", - "codeCommune": "66138", - "libelleAcheminement": "PEYRESTORTES", - "nomCommune": "PEYRESTORTES" + "codePostal": "17490", + "codeCommune": "17062", + "libelleAcheminement": "BRESDON", + "nomCommune": "BRESDON" }, { - "codePostal": "48370", - "codeCommune": "48155", - "libelleAcheminement": "ST GERMAIN DE CALBERTE", - "nomCommune": "ST GERMAIN DE CALBERTE" + "codePostal": "70120", + "codeCommune": "70169", + "libelleAcheminement": "CONFRACOURT", + "nomCommune": "CONFRACOURT" }, { - "codePostal": "40250", - "codeCommune": "40121", - "libelleAcheminement": "HAURIET", - "nomCommune": "HAURIET" + "codePostal": "59310", + "codeCommune": "59330", + "libelleAcheminement": "LANDAS", + "nomCommune": "LANDAS" }, { - "codePostal": "10170", - "codeCommune": "10132", - "libelleAcheminement": "DROUPT STE MARIE", - "nomCommune": "DROUPT STE MARIE" + "codePostal": "60000", + "codeCommune": "60703", + "libelleAcheminement": "AUX MARAIS", + "nomCommune": "AUX MARAIS" }, { - "codePostal": "66210", - "codeCommune": "66142", - "libelleAcheminement": "PLANES", - "nomCommune": "PLANES" + "codePostal": "70120", + "codeCommune": "70230", + "libelleAcheminement": "FEDRY", + "nomCommune": "FEDRY" }, { - "codePostal": "48160", - "codeCommune": "48158", - "libelleAcheminement": "ST HILAIRE DE LAVIT", - "nomCommune": "ST HILAIRE DE LAVIT" + "codePostal": "17120", + "codeCommune": "17068", + "libelleAcheminement": "BRIE SOUS MORTAGNE", + "nomCommune": "BRIE SOUS MORTAGNE" }, { - "codePostal": "40180", - "codeCommune": "40126", - "libelleAcheminement": "HINX", - "nomCommune": "HINX" + "codePostal": "70120", + "codeCommune": "70175", + "libelleAcheminement": "CORNOT", + "nomCommune": "CORNOT" }, { - "codePostal": "10200", - "codeCommune": "10137", - "libelleAcheminement": "ENGENTE", - "nomCommune": "ENGENTE" + "codePostal": "59219", + "codeCommune": "59333", + "libelleAcheminement": "LAROUILLIES", + "nomCommune": "LAROUILLIES" }, { - "codePostal": "66760", - "codeCommune": "66147", - "libelleAcheminement": "PORTE PUYMORENS", - "nomCommune": "PORTE PUYMORENS" + "codePostal": "61570", + "codeCommune": "61002", + "libelleAcheminement": "ALMENECHES", + "nomCommune": "ALMENECHES" }, { - "codePostal": "48310", - "codeCommune": "48161", - "libelleAcheminement": "ST JUERY", - "nomCommune": "ST JUERY" + "codePostal": "70160", + "codeCommune": "70236", + "libelleAcheminement": "FLEUREY LES FAVERNEY", + "nomCommune": "FLEUREY LES FAVERNEY" }, { - "codePostal": "40550", - "codeCommune": "40150", - "libelleAcheminement": "LEON", - "nomCommune": "LEON" + "codePostal": "17800", + "codeCommune": "17069", + "libelleAcheminement": "BRIVES SUR CHARENTE", + "nomCommune": "BRIVES SUR CHARENTE" }, { - "codePostal": "10130", - "codeCommune": "10140", - "libelleAcheminement": "ERVY LE CHATEL", - "nomCommune": "ERVY LE CHATEL" + "codePostal": "70230", + "codeCommune": "70197", + "libelleAcheminement": "DAMPIERRE SUR LINOTTE", + "nomCommune": "DAMPIERRE SUR LINOTTE" }, { - "codePostal": "66660", - "codeCommune": "66148", - "libelleAcheminement": "PORT VENDRES", - "nomCommune": "PORT VENDRES" + "codePostal": "59810", + "codeCommune": "59343", + "libelleAcheminement": "LESQUIN", + "nomCommune": "LESQUIN" }, { - "codePostal": "48600", - "codeCommune": "48174", - "libelleAcheminement": "ST PAUL LE FROID", - "nomCommune": "ST PAUL LE FROID" + "codePostal": "61270", + "codeCommune": "61008", + "libelleAcheminement": "AUBE", + "nomCommune": "AUBE" }, { - "codePostal": "40380", - "codeCommune": "40159", - "libelleAcheminement": "LOUER", - "nomCommune": "LOUER" + "codePostal": "70800", + "codeCommune": "70238", + "libelleAcheminement": "FLEUREY LES ST LOUP", + "nomCommune": "FLEUREY LES ST LOUP" }, { - "codePostal": "10190", - "codeCommune": "10142", - "libelleAcheminement": "ESTISSAC", - "nomCommune": "ESTISSAC" + "codePostal": "17100", + "codeCommune": "17073", + "libelleAcheminement": "BUSSAC SUR CHARENTE", + "nomCommune": "BUSSAC SUR CHARENTE" }, { - "codePostal": "66230", - "codeCommune": "66150", - "libelleAcheminement": "PRATS DE MOLLO LA PRESTE", - "nomCommune": "PRATS DE MOLLO LA PRESTE" + "codePostal": "70000", + "codeCommune": "70199", + "libelleAcheminement": "DAMPVALLEY LES COLOMBE", + "nomCommune": "DAMPVALLEY LES COLOMBE" }, { - "codePostal": "48240", - "codeCommune": "48178", - "libelleAcheminement": "ST PRIVAT DE VALLONGUE", - "nomCommune": "ST PRIVAT DE VALLONGUE" + "codePostal": "59000", + "codeCommune": "59350", + "libelleAcheminement": "LILLE", + "nomCommune": "LILLE" }, { - "codePostal": "40120", - "codeCommune": "40169", - "libelleAcheminement": "MAILLAS", - "nomCommune": "MAILLAS" + "codePostal": "61120", + "codeCommune": "61010", + "libelleAcheminement": "AUBRY LE PANTHOU", + "nomCommune": "AUBRY LE PANTHOU" }, { - "codePostal": "10170", - "codeCommune": "10144", - "libelleAcheminement": "ETRELLES SUR AUBE", - "nomCommune": "ETRELLES SUR AUBE" + "codePostal": "70130", + "codeCommune": "70257", + "libelleAcheminement": "FRETIGNEY ET VELLOREILLE", + "nomCommune": "FRETIGNEY ET VELLOREILLE" }, { - "codePostal": "66500", - "codeCommune": "66161", - "libelleAcheminement": "RIA SIRACH", - "nomCommune": "RIA SIRACH" + "codePostal": "17620", + "codeCommune": "17083", + "libelleAcheminement": "CHAMPAGNE", + "nomCommune": "CHAMPAGNE" }, { - "codePostal": "48500", - "codeCommune": "48181", - "libelleAcheminement": "ST SATURNIN", - "nomCommune": "ST SATURNIN" + "codePostal": "70270", + "codeCommune": "70210", + "libelleAcheminement": "ECROMAGNY", + "nomCommune": "ECROMAGNY" }, { - "codePostal": "40700", - "codeCommune": "40172", - "libelleAcheminement": "MANT", - "nomCommune": "MANT" + "codePostal": "59260", + "codeCommune": "59350", + "libelleAcheminement": "LILLE", + "nomCommune": "LILLE" }, { - "codePostal": "10290", - "codeCommune": "10145", - "libelleAcheminement": "FAUX VILLECERF", - "nomCommune": "FAUX VILLECERF" + "codePostal": "61240", + "codeCommune": "61017", + "libelleAcheminement": "LES AUTHIEUX DU PUITS", + "nomCommune": "LES AUTHIEUX DU PUITS" }, { - "codePostal": "66600", - "codeCommune": "66164", - "libelleAcheminement": "RIVESALTES", - "nomCommune": "RIVESALTES" + "codePostal": "70200", + "codeCommune": "70259", + "libelleAcheminement": "FROIDETERRE", + "nomCommune": "FROIDETERRE" }, { - "codePostal": "48400", - "codeCommune": "48193", - "libelleAcheminement": "VEBRON", - "nomCommune": "VEBRON" + "codePostal": "17380", + "codeCommune": "17087", + "libelleAcheminement": "CHANTEMERLE SUR LA SOIE", + "nomCommune": "CHANTEMERLE SUR LA SOIE" }, { - "codePostal": "40320", - "codeCommune": "40174", - "libelleAcheminement": "MAURIES", - "nomCommune": "MAURIES" + "codePostal": "70600", + "codeCommune": "70211", + "libelleAcheminement": "ECUELLE", + "nomCommune": "ECUELLE" }, { - "codePostal": "10190", - "codeCommune": "10156", - "libelleAcheminement": "FONTVANNES", - "nomCommune": "FONTVANNES" + "codePostal": "59330", + "codeCommune": "59351", + "libelleAcheminement": "LIMONT FONTAINE", + "nomCommune": "LIMONT FONTAINE" }, { - "codePostal": "66320", - "codeCommune": "66165", - "libelleAcheminement": "RODES", - "nomCommune": "RODES" + "codePostal": "61470", + "codeCommune": "61018", + "libelleAcheminement": "AVERNES ST GOURGON", + "nomCommune": "AVERNES ST GOURGON" }, { - "codePostal": "49650", - "codeCommune": "49002", - "libelleAcheminement": "ALLONNES", - "nomCommune": "ALLONNES" + "codePostal": "70000", + "codeCommune": "70261", + "libelleAcheminement": "FROTEY LES VESOUL", + "nomCommune": "FROTEY LES VESOUL" }, { - "codePostal": "40660", - "codeCommune": "40181", - "libelleAcheminement": "MESSANGES", - "nomCommune": "MESSANGES" + "codePostal": "17480", + "codeCommune": "17093", + "libelleAcheminement": "LE CHATEAU D OLERON", + "nomCommune": "LE CHATEAU D OLERON" }, { - "codePostal": "10100", - "codeCommune": "10164", - "libelleAcheminement": "GELANNES", - "nomCommune": "GELANNES" + "codePostal": "70400", + "codeCommune": "70215", + "libelleAcheminement": "ERREVET", + "nomCommune": "ERREVET" }, { - "codePostal": "66800", - "codeCommune": "66167", - "libelleAcheminement": "SAILLAGOUSE", - "nomCommune": "SAILLAGOUSE" + "codePostal": "59570", + "codeCommune": "59357", + "libelleAcheminement": "LA LONGUEVILLE", + "nomCommune": "LA LONGUEVILLE" }, { - "codePostal": "49000", - "codeCommune": "49007", - "libelleAcheminement": "ANGERS", - "nomCommune": "ANGERS" + "codePostal": "61700", + "codeCommune": "61021", + "libelleAcheminement": "AVRILLY", + "nomCommune": "AVRILLY" }, { - "codePostal": "40700", - "codeCommune": "40189", - "libelleAcheminement": "MONGET", - "nomCommune": "MONGET" + "codePostal": "70500", + "codeCommune": "70267", + "libelleAcheminement": "GEVIGNEY ET MERCEY", + "nomCommune": "GEVIGNEY ET MERCEY" }, { - "codePostal": "10170", - "codeCommune": "10166", - "libelleAcheminement": "LES GRANDES CHAPELLES", - "nomCommune": "LES GRANDES CHAPELLES" + "codePostal": "17210", + "codeCommune": "17095", + "libelleAcheminement": "CHATENET", + "nomCommune": "CHATENET" }, { - "codePostal": "66220", - "codeCommune": "66169", - "libelleAcheminement": "ST ARNAC", - "nomCommune": "ST ARNAC" + "codePostal": "70300", + "codeCommune": "70216", + "libelleAcheminement": "ESBOZ BREST", + "nomCommune": "ESBOZ BREST" }, { - "codePostal": "49440", - "codeCommune": "49008", - "libelleAcheminement": "ANGRIE", - "nomCommune": "ANGRIE" + "codePostal": "59279", + "codeCommune": "59359", + "libelleAcheminement": "LOON PLAGE", + "nomCommune": "LOON PLAGE" }, { - "codePostal": "40500", - "codeCommune": "40191", - "libelleAcheminement": "MONTAUT", - "nomCommune": "MONTAUT" + "codePostal": "61600", + "codeCommune": "61035", + "libelleAcheminement": "BEAUVAIN", + "nomCommune": "BEAUVAIN" }, { - "codePostal": "10700", - "codeCommune": "10172", - "libelleAcheminement": "HERBISSE", - "nomCommune": "HERBISSE" + "codePostal": "70700", + "codeCommune": "70268", + "libelleAcheminement": "GEZIER ET FONTENELAY", + "nomCommune": "GEZIER ET FONTENELAY" }, { - "codePostal": "66300", - "codeCommune": "66170", - "libelleAcheminement": "STE COLOMBE DE LA COMMANDERIE", - "nomCommune": "STE COLOMBE DE LA COMMANDERIE" + "codePostal": "17130", + "codeCommune": "17096", + "libelleAcheminement": "CHAUNAC", + "nomCommune": "CHAUNAC" }, { - "codePostal": "49240", - "codeCommune": "49015", - "libelleAcheminement": "AVRILLE", - "nomCommune": "AVRILLE" + "codePostal": "70100", + "codeCommune": "70218", + "libelleAcheminement": "ESMOULINS", + "nomCommune": "ESMOULINS" }, { - "codePostal": "40500", - "codeCommune": "40195", - "libelleAcheminement": "MONTGAILLARD", - "nomCommune": "MONTGAILLARD" + "codePostal": "59120", + "codeCommune": "59360", + "libelleAcheminement": "LOOS", + "nomCommune": "LOOS" }, { - "codePostal": "10800", - "codeCommune": "10173", - "libelleAcheminement": "ISLE AUMONT", - "nomCommune": "ISLE AUMONT" + "codePostal": "61110", + "codeCommune": "61050", + "libelleAcheminement": "COUR MAUGIS SUR HUISNE", + "nomCommune": "COUR MAUGIS SUR HUISNE" }, { - "codePostal": "66300", - "codeCommune": "66177", - "libelleAcheminement": "ST JEAN LASSEILLE", - "nomCommune": "ST JEAN LASSEILLE" + "codePostal": "70110", + "codeCommune": "70271", + "libelleAcheminement": "GOUHENANS", + "nomCommune": "GOUHENANS" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "17610", + "codeCommune": "17100", + "libelleAcheminement": "CHERAC", + "nomCommune": "CHERAC" }, { - "codePostal": "40110", - "codeCommune": "40197", - "libelleAcheminement": "MORCENX LA NOUVELLE", - "nomCommune": "MORCENX LA NOUVELLE" + "codePostal": "70400", + "codeCommune": "70221", + "libelleAcheminement": "ETOBON", + "nomCommune": "ETOBON" }, { - "codePostal": "10240", - "codeCommune": "10174", - "libelleAcheminement": "ISLE AUBIGNY", - "nomCommune": "ISLE AUBIGNY" + "codePostal": "59990", + "codeCommune": "59381", + "libelleAcheminement": "MARESCHES", + "nomCommune": "MARESCHES" }, { - "codePostal": "66110", - "codeCommune": "66183", - "libelleAcheminement": "ST MARSAL", - "nomCommune": "ST MARSAL" + "codePostal": "61500", + "codeCommune": "61051", + "libelleAcheminement": "BOITRON", + "nomCommune": "BOITRON" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "70190", + "codeCommune": "70275", + "libelleAcheminement": "GRANDVELLE ET LE PERRENOT", + "nomCommune": "GRANDVELLE ET LE PERRENOT" }, { - "codePostal": "40110", - "codeCommune": "40197", - "libelleAcheminement": "MORCENX LA NOUVELLE", - "nomCommune": "MORCENX LA NOUVELLE" + "codePostal": "17460", + "codeCommune": "17102", + "libelleAcheminement": "CHERMIGNAC", + "nomCommune": "CHERMIGNAC" }, { - "codePostal": "10330", - "codeCommune": "10175", - "libelleAcheminement": "JASSEINES", - "nomCommune": "JASSEINES" + "codePostal": "70700", + "codeCommune": "70222", + "libelleAcheminement": "ETRELLES ET LA MONTBLEUSE", + "nomCommune": "ETRELLES ET LA MONTBLEUSE" }, { - "codePostal": "66210", - "codeCommune": "66192", - "libelleAcheminement": "SAUTO", - "nomCommune": "SAUTO" + "codePostal": "59770", + "codeCommune": "59383", + "libelleAcheminement": "MARLY", + "nomCommune": "MARLY" }, { - "codePostal": "49750", - "codeCommune": "49022", - "libelleAcheminement": "BEAULIEU SUR LAYON", - "nomCommune": "BEAULIEU SUR LAYON" + "codePostal": "61110", + "codeCommune": "61061", + "libelleAcheminement": "BRETONCELLES", + "nomCommune": "BRETONCELLES" }, { - "codePostal": "40290", - "codeCommune": "40199", - "libelleAcheminement": "MOUSCARDES", - "nomCommune": "MOUSCARDES" + "codePostal": "70100", + "codeCommune": "70280", + "libelleAcheminement": "GRAY LA VILLE", + "nomCommune": "GRAY LA VILLE" }, { - "codePostal": "10320", - "codeCommune": "10179", - "libelleAcheminement": "JEUGNY", - "nomCommune": "JEUGNY" + "codePostal": "17210", + "codeCommune": "17104", + "libelleAcheminement": "CHEVANCEAUX", + "nomCommune": "CHEVANCEAUX" }, { - "codePostal": "66360", - "codeCommune": "66197", - "libelleAcheminement": "SOUANYAS", - "nomCommune": "SOUANYAS" + "codePostal": "70100", + "codeCommune": "70225", + "libelleAcheminement": "FAHY LES AUTREY", + "nomCommune": "FAHY LES AUTREY" }, { - "codePostal": "49450", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "59176", + "codeCommune": "59390", + "libelleAcheminement": "MASNY", + "nomCommune": "MASNY" }, { - "codePostal": "40250", - "codeCommune": "40204", - "libelleAcheminement": "NERBIS", - "nomCommune": "NERBIS" + "codePostal": "61120", + "codeCommune": "61072", + "libelleAcheminement": "CANAPVILLE", + "nomCommune": "CANAPVILLE" }, { - "codePostal": "10310", - "codeCommune": "10182", - "libelleAcheminement": "JUVANCOURT", - "nomCommune": "JUVANCOURT" + "codePostal": "70440", + "codeCommune": "70283", + "libelleAcheminement": "HAUT DU THEM CHATEAU LAMBERT", + "nomCommune": "HAUT DU THEM CHATEAU LAMBERT" }, { - "codePostal": "66360", - "codeCommune": "66209", - "libelleAcheminement": "THUES ENTRE VALLS", - "nomCommune": "THUES ENTRE VALLS" + "codePostal": "17470", + "codeCommune": "17117", + "libelleAcheminement": "CONTRE", + "nomCommune": "CONTRE" }, { - "codePostal": "49510", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "70000", + "codeCommune": "70235", + "libelleAcheminement": "FLAGY", + "nomCommune": "FLAGY" }, { - "codePostal": "40180", - "codeCommune": "40207", - "libelleAcheminement": "OEYRELUY", - "nomCommune": "OEYRELUY" + "codePostal": "59172", + "codeCommune": "59391", + "libelleAcheminement": "MASTAING", + "nomCommune": "MASTAING" }, { - "codePostal": "10150", - "codeCommune": "10191", - "libelleAcheminement": "LAVAU", - "nomCommune": "LAVAU" + "codePostal": "61000", + "codeCommune": "61077", + "libelleAcheminement": "CERISE", + "nomCommune": "CERISE" }, { - "codePostal": "66130", - "codeCommune": "66215", - "libelleAcheminement": "TREVILLACH", - "nomCommune": "TREVILLACH" + "codePostal": "70210", + "codeCommune": "70287", + "libelleAcheminement": "HURECOURT", + "nomCommune": "HURECOURT" }, { - "codePostal": "49600", - "codeCommune": "49023", - "libelleAcheminement": "BEAUPREAU EN MAUGES", - "nomCommune": "BEAUPREAU EN MAUGES" + "codePostal": "17330", + "codeCommune": "17124", + "libelleAcheminement": "COURANT", + "nomCommune": "COURANT" }, { - "codePostal": "40110", - "codeCommune": "40210", - "libelleAcheminement": "ONESSE LAHARIE", - "nomCommune": "ONESSE LAHARIE" + "codePostal": "70190", + "codeCommune": "70239", + "libelleAcheminement": "FONDREMAND", + "nomCommune": "FONDREMAND" }, { - "codePostal": "10200", - "codeCommune": "10194", - "libelleAcheminement": "LEVIGNY", - "nomCommune": "LEVIGNY" + "codePostal": "59600", + "codeCommune": "59392", + "libelleAcheminement": "MAUBEUGE", + "nomCommune": "MAUBEUGE" }, { - "codePostal": "66300", - "codeCommune": "66217", - "libelleAcheminement": "TROUILLAS", - "nomCommune": "TROUILLAS" + "codePostal": "61320", + "codeCommune": "61080", + "libelleAcheminement": "CHAHAINS", + "nomCommune": "CHAHAINS" }, { - "codePostal": "49122", - "codeCommune": "49027", - "libelleAcheminement": "BEGROLLES EN MAUGES", - "nomCommune": "BEGROLLES EN MAUGES" + "codePostal": "70000", + "codeCommune": "70316", + "libelleAcheminement": "LE MAGNORAY", + "nomCommune": "LE MAGNORAY" }, { - "codePostal": "40300", - "codeCommune": "40212", - "libelleAcheminement": "ORTHEVIELLE", - "nomCommune": "ORTHEVIELLE" + "codePostal": "17400", + "codeCommune": "17125", + "libelleAcheminement": "COURCELLES", + "nomCommune": "COURCELLES" }, { - "codePostal": "10130", - "codeCommune": "10196", - "libelleAcheminement": "LIGNIERES", - "nomCommune": "LIGNIERES" + "codePostal": "70160", + "codeCommune": "70244", + "libelleAcheminement": "FOUCHECOURT", + "nomCommune": "FOUCHECOURT" }, { - "codePostal": "67320", - "codeCommune": "67002", - "libelleAcheminement": "ADAMSWILLER", - "nomCommune": "ADAMSWILLER" + "codePostal": "59660", + "codeCommune": "59400", + "libelleAcheminement": "MERVILLE", + "nomCommune": "MERVILLE" }, { - "codePostal": "49320", - "codeCommune": "49029", - "libelleAcheminement": "BLAISON ST SULPICE", - "nomCommune": "BLAISON ST SULPICE" + "codePostal": "61120", + "codeCommune": "61086", + "libelleAcheminement": "LES CHAMPEAUX", + "nomCommune": "LES CHAMPEAUX" }, { - "codePostal": "40290", - "codeCommune": "40214", - "libelleAcheminement": "OSSAGES", - "nomCommune": "OSSAGES" + "codePostal": "70200", + "codeCommune": "70318", + "libelleAcheminement": "MAGNY DANIGON", + "nomCommune": "MAGNY DANIGON" }, { - "codePostal": "10200", - "codeCommune": "10197", - "libelleAcheminement": "LIGNOL LE CHATEAU", - "nomCommune": "LIGNOL LE CHATEAU" + "codePostal": "17130", + "codeCommune": "17130", + "libelleAcheminement": "COUX", + "nomCommune": "COUX" }, { - "codePostal": "67440", - "codeCommune": "67004", - "libelleAcheminement": "SOMMERAU", - "nomCommune": "SOMMERAU" + "codePostal": "70300", + "codeCommune": "70245", + "libelleAcheminement": "FOUGEROLLES ST VALBERT", + "nomCommune": "FOUGEROLLES ST VALBERT" }, { - "codePostal": "49160", - "codeCommune": "49030", - "libelleAcheminement": "BLOU", - "nomCommune": "BLOU" + "codePostal": "59400", + "codeCommune": "59405", + "libelleAcheminement": "MOEUVRES", + "nomCommune": "MOEUVRES" }, { - "codePostal": "40380", - "codeCommune": "40216", - "libelleAcheminement": "OZOURT", - "nomCommune": "OZOURT" + "codePostal": "61560", + "codeCommune": "61087", + "libelleAcheminement": "CHAMPEAUX SUR SARTHE", + "nomCommune": "CHAMPEAUX SUR SARTHE" }, { - "codePostal": "10210", - "codeCommune": "10202", - "libelleAcheminement": "LES LOGES MARGUERON", - "nomCommune": "LES LOGES MARGUERON" + "codePostal": "70140", + "codeCommune": "70327", + "libelleAcheminement": "MALANS", + "nomCommune": "MALANS" }, { - "codePostal": "67120", - "codeCommune": "67008", - "libelleAcheminement": "ALTORF", - "nomCommune": "ALTORF" + "codePostal": "17160", + "codeCommune": "17135", + "libelleAcheminement": "CRESSE", + "nomCommune": "CRESSE" }, { - "codePostal": "49520", - "codeCommune": "49038", - "libelleAcheminement": "BOURG L EVEQUE", - "nomCommune": "BOURG L EVEQUE" + "codePostal": "70600", + "codeCommune": "70247", + "libelleAcheminement": "FOUVENT ST ANDOCHE", + "nomCommune": "FOUVENT ST ANDOCHE" }, { - "codePostal": "40320", - "codeCommune": "40220", - "libelleAcheminement": "PECORADE", - "nomCommune": "PECORADE" + "codePostal": "59620", + "codeCommune": "59406", + "libelleAcheminement": "MONCEAU ST WAAST", + "nomCommune": "MONCEAU ST WAAST" }, { - "codePostal": "10140", - "codeCommune": "10205", - "libelleAcheminement": "LONGPRE LE SEC", - "nomCommune": "LONGPRE LE SEC" + "codePostal": "61100", + "codeCommune": "61094", + "libelleAcheminement": "LA CHAPELLE AU MOINE", + "nomCommune": "LA CHAPELLE AU MOINE" }, { - "codePostal": "67390", - "codeCommune": "67011", - "libelleAcheminement": "ARTOLSHEIM", - "nomCommune": "ARTOLSHEIM" + "codePostal": "70200", + "codeCommune": "70328", + "libelleAcheminement": "MALBOUHANS", + "nomCommune": "MALBOUHANS" }, { - "codePostal": "49650", - "codeCommune": "49041", - "libelleAcheminement": "BRAIN SUR ALLONNES", - "nomCommune": "BRAIN SUR ALLONNES" + "codePostal": "17220", + "codeCommune": "17136", + "libelleAcheminement": "CROIX CHAPEAU", + "nomCommune": "CROIX CHAPEAU" }, { - "codePostal": "40410", - "codeCommune": "40227", - "libelleAcheminement": "PISSOS", - "nomCommune": "PISSOS" + "codePostal": "70400", + "codeCommune": "70248", + "libelleAcheminement": "FRAHIER ET CHATEBIER", + "nomCommune": "FRAHIER ET CHATEBIER" }, { - "codePostal": "10400", - "codeCommune": "10208", - "libelleAcheminement": "LA LOUPTIERE THENARD", - "nomCommune": "LA LOUPTIERE THENARD" + "codePostal": "59182", + "codeCommune": "59414", + "libelleAcheminement": "MONTIGNY EN OSTREVENT", + "nomCommune": "MONTIGNY EN OSTREVENT" }, { - "codePostal": "67250", - "codeCommune": "67012", - "libelleAcheminement": "ASCHBACH", - "nomCommune": "ASCHBACH" + "codePostal": "61410", + "codeCommune": "61096", + "libelleAcheminement": "RIVES D ANDAINE", + "nomCommune": "RIVES D ANDAINE" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "70100", + "codeCommune": "70331", + "libelleAcheminement": "MANTOCHE", + "nomCommune": "MANTOCHE" }, { - "codePostal": "40300", - "codeCommune": "40231", - "libelleAcheminement": "PORT DE LANNE", - "nomCommune": "PORT DE LANNE" + "codePostal": "17610", + "codeCommune": "17141", + "libelleAcheminement": "DOMPIERRE SUR CHARENTE", + "nomCommune": "DOMPIERRE SUR CHARENTE" }, { - "codePostal": "10320", - "codeCommune": "10212", - "libelleAcheminement": "MACHY", - "nomCommune": "MACHY" + "codePostal": "70600", + "codeCommune": "70252", + "libelleAcheminement": "FRAMONT", + "nomCommune": "FRAMONT" }, { - "codePostal": "67140", - "codeCommune": "67021", - "libelleAcheminement": "BARR", - "nomCommune": "BARR" + "codePostal": "59239", + "codeCommune": "59427", + "libelleAcheminement": "LA NEUVILLE", + "nomCommune": "LA NEUVILLE" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "61130", + "codeCommune": "61099", + "libelleAcheminement": "LA CHAPELLE SOUEF", + "nomCommune": "LA CHAPELLE SOUEF" }, { - "codePostal": "40270", - "codeCommune": "40240", - "libelleAcheminement": "RENUNG", - "nomCommune": "RENUNG" + "codePostal": "70110", + "codeCommune": "70336", + "libelleAcheminement": "MELECEY", + "nomCommune": "MELECEY" }, { - "codePostal": "10350", - "codeCommune": "10224", - "libelleAcheminement": "MARIGNY LE CHATEL", - "nomCommune": "MARIGNY LE CHATEL" + "codePostal": "17620", + "codeCommune": "17146", + "libelleAcheminement": "ECHILLAIS", + "nomCommune": "ECHILLAIS" }, { - "codePostal": "67500", - "codeCommune": "67023", - "libelleAcheminement": "BATZENDORF", - "nomCommune": "BATZENDORF" + "codePostal": "70200", + "codeCommune": "70254", + "libelleAcheminement": "FREDERIC FONTAINE", + "nomCommune": "FREDERIC FONTAINE" }, { - "codePostal": "49400", - "codeCommune": "49060", - "libelleAcheminement": "BELLEVIGNE LES CHATEAUX", - "nomCommune": "BELLEVIGNE LES CHATEAUX" + "codePostal": "59360", + "codeCommune": "59430", + "libelleAcheminement": "NEUVILLY", + "nomCommune": "NEUVILLY" }, { - "codePostal": "40390", - "codeCommune": "40251", - "libelleAcheminement": "ST BARTHELEMY", - "nomCommune": "ST BARTHELEMY" + "codePostal": "61570", + "codeCommune": "61101", + "libelleAcheminement": "LE CHATEAU D ALMENECHES", + "nomCommune": "LE CHATEAU D ALMENECHES" }, { - "codePostal": "10130", - "codeCommune": "10227", - "libelleAcheminement": "MAROLLES SOUS LIGNIERES", - "nomCommune": "MAROLLES SOUS LIGNIERES" + "codePostal": "70110", + "codeCommune": "70349", + "libelleAcheminement": "MOIMAY", + "nomCommune": "MOIMAY" }, { - "codePostal": "67930", - "codeCommune": "67025", - "libelleAcheminement": "BEINHEIM", - "nomCommune": "BEINHEIM" + "codePostal": "17770", + "codeCommune": "17147", + "libelleAcheminement": "ECOYEUX", + "nomCommune": "ECOYEUX" }, { - "codePostal": "49220", - "codeCommune": "49064", - "libelleAcheminement": "CHAMBELLAY", - "nomCommune": "CHAMBELLAY" + "codePostal": "70130", + "codeCommune": "70255", + "libelleAcheminement": "FRESNE ST MAMES", + "nomCommune": "FRESNE ST MAMES" }, { - "codePostal": "40700", - "codeCommune": "40252", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "59850", + "codeCommune": "59431", + "libelleAcheminement": "NIEPPE", + "nomCommune": "NIEPPE" }, { - "codePostal": "10400", - "codeCommune": "10231", - "libelleAcheminement": "LE MERIOT", - "nomCommune": "LE MERIOT" + "codePostal": "61360", + "codeCommune": "61105", + "libelleAcheminement": "CHEMILLI", + "nomCommune": "CHEMILLI" }, { - "codePostal": "67130", - "codeCommune": "67026", - "libelleAcheminement": "BELLEFOSSE", - "nomCommune": "BELLEFOSSE" + "codePostal": "70120", + "codeCommune": "70350", + "libelleAcheminement": "MOLAY", + "nomCommune": "MOLAY" }, { - "codePostal": "49340", - "codeCommune": "49070", - "libelleAcheminement": "CHANTELOUP LES BOIS", - "nomCommune": "CHANTELOUP LES BOIS" + "codePostal": "17400", + "codeCommune": "17150", + "libelleAcheminement": "LES EGLISES D ARGENTEUIL", + "nomCommune": "LES EGLISES D ARGENTEUIL" }, { - "codePostal": "40300", - "codeCommune": "40254", - "libelleAcheminement": "ST CRICQ DU GAVE", - "nomCommune": "ST CRICQ DU GAVE" + "codePostal": "70300", + "codeCommune": "70258", + "libelleAcheminement": "FROIDECONCHE", + "nomCommune": "FROIDECONCHE" }, { - "codePostal": "10170", - "codeCommune": "10234", - "libelleAcheminement": "MESGRIGNY", - "nomCommune": "MESGRIGNY" + "codePostal": "59139", + "codeCommune": "59437", + "libelleAcheminement": "NOYELLES LES SECLIN", + "nomCommune": "NOYELLES LES SECLIN" }, { - "codePostal": "67240", - "codeCommune": "67046", - "libelleAcheminement": "BISCHWILLER", - "nomCommune": "BISCHWILLER" + "codePostal": "61400", + "codeCommune": "61113", + "libelleAcheminement": "COMBLOT", + "nomCommune": "COMBLOT" }, { - "codePostal": "49330", - "codeCommune": "49080", - "libelleAcheminement": "LES HAUTS D ANJOU", - "nomCommune": "LES HAUTS D ANJOU" + "codePostal": "70210", + "codeCommune": "70360", + "libelleAcheminement": "MONTDORE", + "nomCommune": "MONTDORE" }, { - "codePostal": "40200", - "codeCommune": "40257", - "libelleAcheminement": "STE EULALIE EN BORN", - "nomCommune": "STE EULALIE EN BORN" + "codePostal": "17350", + "codeCommune": "17157", + "libelleAcheminement": "FENIOUX", + "nomCommune": "FENIOUX" }, { - "codePostal": "10140", - "codeCommune": "10238", - "libelleAcheminement": "MESNIL ST PERE", - "nomCommune": "MESNIL ST PERE" + "codePostal": "70200", + "codeCommune": "70260", + "libelleAcheminement": "FROTEY LES LURE", + "nomCommune": "FROTEY LES LURE" }, { - "codePostal": "67260", - "codeCommune": "67047", - "libelleAcheminement": "BISSERT", - "nomCommune": "BISSERT" + "codePostal": "59122", + "codeCommune": "59448", + "libelleAcheminement": "OOST CAPPEL", + "nomCommune": "OOST CAPPEL" }, { - "codePostal": "49330", - "codeCommune": "49080", - "libelleAcheminement": "LES HAUTS D ANJOU", - "nomCommune": "LES HAUTS D ANJOU" + "codePostal": "61110", + "codeCommune": "61116", + "libelleAcheminement": "SABLONS SUR HUISNE", + "nomCommune": "SABLONS SUR HUISNE" }, { - "codePostal": "40190", - "codeCommune": "40259", - "libelleAcheminement": "ST GEIN", - "nomCommune": "ST GEIN" + "codePostal": "70180", + "codeCommune": "70368", + "libelleAcheminement": "MONTOT", + "nomCommune": "MONTOT" }, { - "codePostal": "10500", - "codeCommune": "10243", - "libelleAcheminement": "MOLINS SUR AUBE", - "nomCommune": "MOLINS SUR AUBE" + "codePostal": "17100", + "codeCommune": "17164", + "libelleAcheminement": "FONTCOUVERTE", + "nomCommune": "FONTCOUVERTE" }, { - "codePostal": "67130", - "codeCommune": "67050", - "libelleAcheminement": "BLANCHERUPT", - "nomCommune": "BLANCHERUPT" + "codePostal": "70400", + "codeCommune": "70277", + "libelleAcheminement": "GRANGES LE BOURG", + "nomCommune": "GRANGES LE BOURG" }, { - "codePostal": "49330", - "codeCommune": "49080", - "libelleAcheminement": "LES HAUTS D ANJOU", - "nomCommune": "LES HAUTS D ANJOU" + "codePostal": "59218", + "codeCommune": "59464", + "libelleAcheminement": "POIX DU NORD", + "nomCommune": "POIX DU NORD" }, { - "codePostal": "40230", - "codeCommune": "40261", - "libelleAcheminement": "ST GEOURS DE MAREMNE", - "nomCommune": "ST GEOURS DE MAREMNE" + "codePostal": "61110", + "codeCommune": "61116", + "libelleAcheminement": "SABLONS SUR HUISNE", + "nomCommune": "SABLONS SUR HUISNE" }, { - "codePostal": "10270", - "codeCommune": "10245", - "libelleAcheminement": "MONTAULIN", - "nomCommune": "MONTAULIN" + "codePostal": "70500", + "codeCommune": "70372", + "libelleAcheminement": "MONTUREUX LES BAULAY", + "nomCommune": "MONTUREUX LES BAULAY" }, { - "codePostal": "67530", - "codeCommune": "67052", - "libelleAcheminement": "BOERSCH", - "nomCommune": "BOERSCH" + "codePostal": "17450", + "codeCommune": "17168", + "libelleAcheminement": "FOURAS", + "nomCommune": "FOURAS" }, { - "codePostal": "49380", - "codeCommune": "49086", - "libelleAcheminement": "TERRANJOU", - "nomCommune": "TERRANJOU" + "codePostal": "70200", + "codeCommune": "70294", + "libelleAcheminement": "LANTENOT", + "nomCommune": "LANTENOT" }, { - "codePostal": "40240", - "codeCommune": "40265", - "libelleAcheminement": "ST JULIEN D ARMAGNAC", - "nomCommune": "ST JULIEN D ARMAGNAC" + "codePostal": "59138", + "codeCommune": "59467", + "libelleAcheminement": "PONT SUR SAMBRE", + "nomCommune": "PONT SUR SAMBRE" }, { - "codePostal": "10200", - "codeCommune": "10250", - "libelleAcheminement": "MONTIER EN L ISLE", - "nomCommune": "MONTIER EN L ISLE" + "codePostal": "61230", + "codeCommune": "61122", + "libelleAcheminement": "COULMER", + "nomCommune": "COULMER" }, { - "codePostal": "67150", - "codeCommune": "67054", - "libelleAcheminement": "BOLSENHEIM", - "nomCommune": "BOLSENHEIM" + "codePostal": "70140", + "codeCommune": "70374", + "libelleAcheminement": "MOTEY BESUCHE", + "nomCommune": "MOTEY BESUCHE" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "17360", + "codeCommune": "17173", + "libelleAcheminement": "LA GENETOUZE", + "nomCommune": "LA GENETOUZE" }, { - "codePostal": "40390", - "codeCommune": "40272", - "libelleAcheminement": "ST MARTIN DE HINX", - "nomCommune": "ST MARTIN DE HINX" + "codePostal": "70270", + "codeCommune": "70295", + "libelleAcheminement": "LA LANTERNE ET LES ARMONTS", + "nomCommune": "LA LANTERNE ET LES ARMONTS" }, { - "codePostal": "10270", - "codeCommune": "10255", - "libelleAcheminement": "MONTREUIL SUR BARSE", - "nomCommune": "MONTREUIL SUR BARSE" + "codePostal": "59920", + "codeCommune": "59484", + "libelleAcheminement": "QUIEVRECHAIN", + "nomCommune": "QUIEVRECHAIN" }, { - "codePostal": "67390", - "codeCommune": "67056", - "libelleAcheminement": "BOOTZHEIM", - "nomCommune": "BOOTZHEIM" + "codePostal": "61400", + "codeCommune": "61129", + "libelleAcheminement": "COURGEON", + "nomCommune": "COURGEON" }, { - "codePostal": "49310", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "70700", + "codeCommune": "70393", + "libelleAcheminement": "OISELAY ET GRACHAUX", + "nomCommune": "OISELAY ET GRACHAUX" }, { - "codePostal": "40390", - "codeCommune": "40273", - "libelleAcheminement": "ST MARTIN DE SEIGNANX", - "nomCommune": "ST MARTIN DE SEIGNANX" + "codePostal": "17350", + "codeCommune": "17181", + "libelleAcheminement": "GRANDJEAN", + "nomCommune": "GRANDJEAN" }, { - "codePostal": "10360", - "codeCommune": "10264", - "libelleAcheminement": "NOE LES MALLETS", - "nomCommune": "NOE LES MALLETS" + "codePostal": "70120", + "codeCommune": "70298", + "libelleAcheminement": "LAVIGNEY", + "nomCommune": "LAVIGNEY" }, { - "codePostal": "67420", - "codeCommune": "67059", - "libelleAcheminement": "BOURG BRUCHE", - "nomCommune": "BOURG BRUCHE" + "codePostal": "59177", + "codeCommune": "59490", + "libelleAcheminement": "RAINSARS", + "nomCommune": "RAINSARS" }, { - "codePostal": "49670", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "61220", + "codeCommune": "61137", + "libelleAcheminement": "CRAMENIL", + "nomCommune": "CRAMENIL" }, { - "codePostal": "40800", - "codeCommune": "40290", - "libelleAcheminement": "SARRON", - "nomCommune": "SARRON" + "codePostal": "70300", + "codeCommune": "70398", + "libelleAcheminement": "ORMOICHE", + "nomCommune": "ORMOICHE" }, { - "codePostal": "10220", - "codeCommune": "10270", - "libelleAcheminement": "ONJON", - "nomCommune": "ONJON" + "codePostal": "17620", + "codeCommune": "17184", + "libelleAcheminement": "LA GRIPPERIE ST SYMPHORIEN", + "nomCommune": "LA GRIPPERIE ST SYMPHORIEN" }, { - "codePostal": "67330", - "codeCommune": "67061", - "libelleAcheminement": "BOUXWILLER", - "nomCommune": "BOUXWILLER" + "codePostal": "70120", + "codeCommune": "70299", + "libelleAcheminement": "LAVONCOURT", + "nomCommune": "LAVONCOURT" }, { - "codePostal": "49670", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "59277", + "codeCommune": "59502", + "libelleAcheminement": "RIEUX EN CAMBRESIS", + "nomCommune": "RIEUX EN CAMBRESIS" }, { - "codePostal": "40510", - "codeCommune": "40296", - "libelleAcheminement": "SEIGNOSSE", - "nomCommune": "SEIGNOSSE" + "codePostal": "61120", + "codeCommune": "61139", + "libelleAcheminement": "CROUTTES", + "nomCommune": "CROUTTES" }, { - "codePostal": "10510", - "codeCommune": "10271", - "libelleAcheminement": "ORIGNY LE SEC", - "nomCommune": "ORIGNY LE SEC" + "codePostal": "70600", + "codeCommune": "70409", + "libelleAcheminement": "PIERRECOURT", + "nomCommune": "PIERRECOURT" }, { - "codePostal": "67130", - "codeCommune": "67066", - "libelleAcheminement": "LA BROQUE", - "nomCommune": "LA BROQUE" + "codePostal": "17160", + "codeCommune": "17188", + "libelleAcheminement": "HAIMPS", + "nomCommune": "HAIMPS" }, { - "codePostal": "49140", - "codeCommune": "49110", - "libelleAcheminement": "CORZE", - "nomCommune": "CORZE" + "codePostal": "70140", + "codeCommune": "70302", + "libelleAcheminement": "LIEUCOURT", + "nomCommune": "LIEUCOURT" }, { - "codePostal": "40990", - "codeCommune": "40315", - "libelleAcheminement": "TETHIEU", - "nomCommune": "TETHIEU" + "codePostal": "59990", + "codeCommune": "59505", + "libelleAcheminement": "ROMBIES ET MARCHIPONT", + "nomCommune": "ROMBIES ET MARCHIPONT" }, { - "codePostal": "10210", - "codeCommune": "10278", - "libelleAcheminement": "PARGUES", - "nomCommune": "PARGUES" + "codePostal": "61700", + "codeCommune": "61145", + "libelleAcheminement": "DOMFRONT EN POIRAIE", + "nomCommune": "DOMFRONT EN POIRAIE" }, { - "codePostal": "67170", - "codeCommune": "67067", - "libelleAcheminement": "BRUMATH", - "nomCommune": "BRUMATH" + "codePostal": "70150", + "codeCommune": "70410", + "libelleAcheminement": "PIN", + "nomCommune": "PIN" }, { - "codePostal": "49700", - "codeCommune": "49125", - "libelleAcheminement": "DOUE EN ANJOU", - "nomCommune": "DOUE EN ANJOU" + "codePostal": "17137", + "codeCommune": "17190", + "libelleAcheminement": "L HOUMEAU", + "nomCommune": "L HOUMEAU" }, { - "codePostal": "40250", - "codeCommune": "40318", - "libelleAcheminement": "TOULOUZETTE", - "nomCommune": "TOULOUZETTE" + "codePostal": "70110", + "codeCommune": "70307", + "libelleAcheminement": "LONGEVELLE", + "nomCommune": "LONGEVELLE" }, { - "codePostal": "10330", - "codeCommune": "10279", - "libelleAcheminement": "PARS LES CHAVANGES", - "nomCommune": "PARS LES CHAVANGES" + "codePostal": "59790", + "codeCommune": "59507", + "libelleAcheminement": "RONCHIN", + "nomCommune": "RONCHIN" }, { - "codePostal": "67350", - "codeCommune": "67068", - "libelleAcheminement": "BUSWILLER", - "nomCommune": "BUSWILLER" + "codePostal": "61150", + "codeCommune": "61153", + "libelleAcheminement": "ECOUCHE LES VALLEES", + "nomCommune": "ECOUCHE LES VALLEES" }, { - "codePostal": "49700", - "codeCommune": "49125", - "libelleAcheminement": "DOUE EN ANJOU", - "nomCommune": "DOUE EN ANJOU" + "codePostal": "70800", + "codeCommune": "70411", + "libelleAcheminement": "LA PISSEURE", + "nomCommune": "LA PISSEURE" }, { - "codePostal": "40560", - "codeCommune": "40326", - "libelleAcheminement": "VIELLE ST GIRONS", - "nomCommune": "VIELLE ST GIRONS" + "codePostal": "17460", + "codeCommune": "17191", + "libelleAcheminement": "LA JARD", + "nomCommune": "LA JARD" }, { - "codePostal": "10100", - "codeCommune": "10280", - "libelleAcheminement": "PARS LES ROMILLY", - "nomCommune": "PARS LES ROMILLY" + "codePostal": "70300", + "codeCommune": "70311", + "libelleAcheminement": "LUXEUIL LES BAINS", + "nomCommune": "LUXEUIL LES BAINS" }, { - "codePostal": "67420", - "codeCommune": "67076", - "libelleAcheminement": "COLROY LA ROCHE", - "nomCommune": "COLROY LA ROCHE" + "codePostal": "59286", + "codeCommune": "59509", + "libelleAcheminement": "ROOST WARENDIN", + "nomCommune": "ROOST WARENDIN" }, { - "codePostal": "49250", - "codeCommune": "49138", - "libelleAcheminement": "LES BOIS D ANJOU", - "nomCommune": "LES BOIS D ANJOU" + "codePostal": "61150", + "codeCommune": "61153", + "libelleAcheminement": "ECOUCHE LES VALLEES", + "nomCommune": "ECOUCHE LES VALLEES" }, { - "codePostal": "40240", - "codeCommune": "40327", - "libelleAcheminement": "VIELLE SOUBIRAN", - "nomCommune": "VIELLE SOUBIRAN" + "codePostal": "70210", + "codeCommune": "70419", + "libelleAcheminement": "PONT DU BOIS", + "nomCommune": "PONT DU BOIS" }, { - "codePostal": "10250", - "codeCommune": "10288", - "libelleAcheminement": "PLAINES ST LANGE", - "nomCommune": "PLAINES ST LANGE" + "codePostal": "17220", + "codeCommune": "17194", + "libelleAcheminement": "LA JARRIE", + "nomCommune": "LA JARRIE" }, { - "codePostal": "67310", - "codeCommune": "67077", - "libelleAcheminement": "COSSWILLER", - "nomCommune": "COSSWILLER" + "codePostal": "70200", + "codeCommune": "70313", + "libelleAcheminement": "LYOFFANS", + "nomCommune": "LYOFFANS" }, { - "codePostal": "49370", - "codeCommune": "49183", - "libelleAcheminement": "VAL D ERDRE AUXENCE", - "nomCommune": "VAL D ERDRE AUXENCE" + "codePostal": "59131", + "codeCommune": "59514", + "libelleAcheminement": "ROUSIES", + "nomCommune": "ROUSIES" }, { - "codePostal": "40270", - "codeCommune": "40329", - "libelleAcheminement": "LE VIGNAU", - "nomCommune": "LE VIGNAU" + "codePostal": "61500", + "codeCommune": "61156", + "libelleAcheminement": "ESSAY", + "nomCommune": "ESSAY" }, { - "codePostal": "10380", - "codeCommune": "10289", - "libelleAcheminement": "PLANCY L ABBAYE", - "nomCommune": "PLANCY L ABBAYE" + "codePostal": "70190", + "codeCommune": "70431", + "libelleAcheminement": "QUENOCHE", + "nomCommune": "QUENOCHE" }, { - "codePostal": "67470", - "codeCommune": "67079", - "libelleAcheminement": "CROETTWILLER", - "nomCommune": "CROETTWILLER" + "codePostal": "17330", + "codeCommune": "17195", + "libelleAcheminement": "LA JARRIE AUDOUIN", + "nomCommune": "LA JARRIE AUDOUIN" }, { - "codePostal": "49440", - "codeCommune": "49183", - "libelleAcheminement": "VAL D ERDRE AUXENCE", - "nomCommune": "VAL D ERDRE AUXENCE" + "codePostal": "70300", + "codeCommune": "70314", + "libelleAcheminement": "MAGNIVRAY", + "nomCommune": "MAGNIVRAY" }, { - "codePostal": "40180", - "codeCommune": "40334", - "libelleAcheminement": "YZOSSE", - "nomCommune": "YZOSSE" + "codePostal": "59220", + "codeCommune": "59515", + "libelleAcheminement": "ROUVIGNIES", + "nomCommune": "ROUVIGNIES" }, { - "codePostal": "10110", - "codeCommune": "10295", - "libelleAcheminement": "POLISOT", - "nomCommune": "POLISOT" + "codePostal": "61390", + "codeCommune": "61166", + "libelleAcheminement": "FERRIERES LA VERRERIE", + "nomCommune": "FERRIERES LA VERRERIE" }, { - "codePostal": "67220", - "codeCommune": "67092", - "libelleAcheminement": "DIEFFENBACH AU VAL", - "nomCommune": "DIEFFENBACH AU VAL" + "codePostal": "70500", + "codeCommune": "70436", + "libelleAcheminement": "RAINCOURT", + "nomCommune": "RAINCOURT" }, { - "codePostal": "49140", - "codeCommune": "49188", - "libelleAcheminement": "MARCE", - "nomCommune": "MARCE" + "codePostal": "17260", + "codeCommune": "17196", + "libelleAcheminement": "JAZENNES", + "nomCommune": "JAZENNES" }, { - "codePostal": "41310", - "codeCommune": "41001", - "libelleAcheminement": "AMBLOY", - "nomCommune": "AMBLOY" + "codePostal": "70240", + "codeCommune": "70322", + "libelleAcheminement": "MAILLERONCOURT CHARETTE", + "nomCommune": "MAILLERONCOURT CHARETTE" }, { - "codePostal": "10400", - "codeCommune": "10298", - "libelleAcheminement": "PONT SUR SEINE", - "nomCommune": "PONT SUR SEINE" + "codePostal": "59554", + "codeCommune": "59521", + "libelleAcheminement": "SAILLY LEZ CAMBRAI", + "nomCommune": "SAILLY LEZ CAMBRAI" }, { - "codePostal": "67440", - "codeCommune": "67096", - "libelleAcheminement": "DIMBSTHAL", - "nomCommune": "DIMBSTHAL" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "49360", - "codeCommune": "49192", - "libelleAcheminement": "MAULEVRIER", - "nomCommune": "MAULEVRIER" + "codePostal": "70500", + "codeCommune": "70437", + "libelleAcheminement": "RANZEVELLE", + "nomCommune": "RANZEVELLE" }, { - "codePostal": "41800", - "codeCommune": "41004", - "libelleAcheminement": "ARTINS", - "nomCommune": "ARTINS" + "codePostal": "17770", + "codeCommune": "17198", + "libelleAcheminement": "JUICQ", + "nomCommune": "JUICQ" }, { - "codePostal": "10210", - "codeCommune": "10302", - "libelleAcheminement": "PRASLIN", - "nomCommune": "PRASLIN" + "codePostal": "70000", + "codeCommune": "70324", + "libelleAcheminement": "MAILLEY ET CHAZELOT", + "nomCommune": "MAILLEY ET CHAZELOT" }, { - "codePostal": "67270", - "codeCommune": "67107", - "libelleAcheminement": "DUNTZENHEIM", - "nomCommune": "DUNTZENHEIM" + "codePostal": "59262", + "codeCommune": "59523", + "libelleAcheminement": "SAINGHIN EN MELANTOIS", + "nomCommune": "SAINGHIN EN MELANTOIS" }, { - "codePostal": "49220", - "codeCommune": "49200", - "libelleAcheminement": "LONGUENEE EN ANJOU", - "nomCommune": "LONGUENEE EN ANJOU" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "41250", - "codeCommune": "41013", - "libelleAcheminement": "BAUZY", - "nomCommune": "BAUZY" + "codePostal": "70130", + "codeCommune": "70438", + "libelleAcheminement": "RAY SUR SAONE", + "nomCommune": "RAY SUR SAONE" }, { - "codePostal": "10500", - "codeCommune": "10303", - "libelleAcheminement": "PRECY NOTRE DAME", - "nomCommune": "PRECY NOTRE DAME" + "codePostal": "17230", + "codeCommune": "17208", + "libelleAcheminement": "LONGEVES", + "nomCommune": "LONGEVES" }, { - "codePostal": "67710", - "codeCommune": "67122", - "libelleAcheminement": "WANGENBOURG ENGENTHAL", - "nomCommune": "WANGENBOURG ENGENTHAL" + "codePostal": "70190", + "codeCommune": "70325", + "libelleAcheminement": "MAIZIERES", + "nomCommune": "MAIZIERES" }, { - "codePostal": "49770", - "codeCommune": "49200", - "libelleAcheminement": "LONGUENEE EN ANJOU", - "nomCommune": "LONGUENEE EN ANJOU" + "codePostal": "59184", + "codeCommune": "59524", + "libelleAcheminement": "SAINGHIN EN WEPPES", + "nomCommune": "SAINGHIN EN WEPPES" }, { - "codePostal": "41290", - "codeCommune": "41019", - "libelleAcheminement": "BOISSEAU", - "nomCommune": "BOISSEAU" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "10500", - "codeCommune": "10304", - "libelleAcheminement": "PRECY ST MARTIN", - "nomCommune": "PRECY ST MARTIN" + "codePostal": "70200", + "codeCommune": "70445", + "libelleAcheminement": "RIGNOVELLE", + "nomCommune": "RIGNOVELLE" }, { - "codePostal": "67320", - "codeCommune": "67133", - "libelleAcheminement": "ESCHBOURG", - "nomCommune": "ESCHBOURG" + "codePostal": "17700", + "codeCommune": "17221", + "libelleAcheminement": "MARSAIS", + "nomCommune": "MARSAIS" }, { - "codePostal": "49770", - "codeCommune": "49200", - "libelleAcheminement": "LONGUENEE EN ANJOU", - "nomCommune": "LONGUENEE EN ANJOU" + "codePostal": "70120", + "codeCommune": "70329", + "libelleAcheminement": "MALVILLERS", + "nomCommune": "MALVILLERS" }, { - "codePostal": "41330", - "codeCommune": "41040", - "libelleAcheminement": "LA CHAPELLE VENDOMOISE", - "nomCommune": "LA CHAPELLE VENDOMOISE" + "codePostal": "59213", + "codeCommune": "59537", + "libelleAcheminement": "ST MARTIN SUR ECAILLON", + "nomCommune": "ST MARTIN SUR ECAILLON" }, { - "codePostal": "10210", - "codeCommune": "10309", - "libelleAcheminement": "PRUSY", - "nomCommune": "PRUSY" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "67480", - "codeCommune": "67140", - "libelleAcheminement": "FORSTFELD", - "nomCommune": "FORSTFELD" + "codePostal": "70190", + "codeCommune": "70447", + "libelleAcheminement": "RIOZ", + "nomCommune": "RIOZ" }, { - "codePostal": "49250", - "codeCommune": "49201", - "libelleAcheminement": "LA MENITRE", - "nomCommune": "LA MENITRE" + "codePostal": "17570", + "codeCommune": "17225", + "libelleAcheminement": "LES MATHES", + "nomCommune": "LES MATHES" }, { - "codePostal": "41150", - "codeCommune": "41045", - "libelleAcheminement": "CHAUMONT SUR LOIRE", - "nomCommune": "CHAUMONT SUR LOIRE" + "codePostal": "70110", + "codeCommune": "70332", + "libelleAcheminement": "MARAST", + "nomCommune": "MARAST" }, { - "codePostal": "10500", - "codeCommune": "10313", - "libelleAcheminement": "RADONVILLIERS", - "nomCommune": "RADONVILLIERS" + "codePostal": "59143", + "codeCommune": "59538", + "libelleAcheminement": "ST MOMELIN", + "nomCommune": "ST MOMELIN" }, { - "codePostal": "67220", - "codeCommune": "67143", - "libelleAcheminement": "FOUCHY", - "nomCommune": "FOUCHY" + "codePostal": "61200", + "codeCommune": "61170", + "libelleAcheminement": "FLEURE", + "nomCommune": "FLEURE" }, { - "codePostal": "49330", - "codeCommune": "49205", - "libelleAcheminement": "MIRE", - "nomCommune": "MIRE" + "codePostal": "70230", + "codeCommune": "70449", + "libelleAcheminement": "ROCHE LINOTTE ET SORANS CORDIERS", + "nomCommune": "ROCHE LINOTTE ET SORANS CORDIERS" }, { - "codePostal": "41260", - "codeCommune": "41047", - "libelleAcheminement": "LA CHAUSSEE ST VICTOR", - "nomCommune": "LA CHAUSSEE ST VICTOR" + "codePostal": "17400", + "codeCommune": "17226", + "libelleAcheminement": "MAZERAY", + "nomCommune": "MAZERAY" }, { - "codePostal": "10170", - "codeCommune": "10316", - "libelleAcheminement": "RHEGES", - "nomCommune": "RHEGES" + "codePostal": "70150", + "codeCommune": "70334", + "libelleAcheminement": "MARNAY", + "nomCommune": "MARNAY" }, { - "codePostal": "67490", - "codeCommune": "67145", - "libelleAcheminement": "FRIEDOLSHEIM", - "nomCommune": "FRIEDOLSHEIM" + "codePostal": "59880", + "codeCommune": "59544", + "libelleAcheminement": "ST SAULVE", + "nomCommune": "ST SAULVE" }, { - "codePostal": "49460", - "codeCommune": "49214", - "libelleAcheminement": "MONTREUIL JUIGNE", - "nomCommune": "MONTREUIL JUIGNE" + "codePostal": "61230", + "codeCommune": "61178", + "libelleAcheminement": "LA FRESNAIE FAYEL", + "nomCommune": "LA FRESNAIE FAYEL" }, { - "codePostal": "41270", - "codeCommune": "41048", - "libelleAcheminement": "CHAUVIGNY DU PERCHE", - "nomCommune": "CHAUVIGNY DU PERCHE" + "codePostal": "70200", + "codeCommune": "70455", + "libelleAcheminement": "ROYE", + "nomCommune": "ROYE" }, { - "codePostal": "10340", - "codeCommune": "10317", - "libelleAcheminement": "LES RICEYS", - "nomCommune": "LES RICEYS" + "codePostal": "17800", + "codeCommune": "17227", + "libelleAcheminement": "MAZEROLLES", + "nomCommune": "MAZEROLLES" }, { - "codePostal": "67118", - "codeCommune": "67152", - "libelleAcheminement": "GEISPOLSHEIM", - "nomCommune": "GEISPOLSHEIM" + "codePostal": "70270", + "codeCommune": "70339", + "libelleAcheminement": "MELISEY", + "nomCommune": "MELISEY" }, { - "codePostal": "49110", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "59360", + "codeCommune": "59545", + "libelleAcheminement": "ST SOUPLET", + "nomCommune": "ST SOUPLET" }, { - "codePostal": "41700", - "codeCommune": "41050", - "libelleAcheminement": "CHEVERNY", - "nomCommune": "CHEVERNY" + "codePostal": "61230", + "codeCommune": "61181", + "libelleAcheminement": "GACE", + "nomCommune": "GACE" }, { - "codePostal": "10320", - "codeCommune": "10324", - "libelleAcheminement": "RONCENAY", - "nomCommune": "RONCENAY" + "codePostal": "70360", + "codeCommune": "70457", + "libelleAcheminement": "RUPT SUR SAONE", + "nomCommune": "RUPT SUR SAONE" }, { - "codePostal": "67270", - "codeCommune": "67153", - "libelleAcheminement": "GEISWILLER ZOEBERSDORF", - "nomCommune": "GEISWILLER ZOEBERSDORF" + "codePostal": "17120", + "codeCommune": "17232", + "libelleAcheminement": "MEURSAC", + "nomCommune": "MEURSAC" }, { - "codePostal": "49110", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "70160", + "codeCommune": "70341", + "libelleAcheminement": "MENOUX", + "nomCommune": "MENOUX" }, { - "codePostal": "41290", - "codeCommune": "41057", - "libelleAcheminement": "CONAN", - "nomCommune": "CONAN" + "codePostal": "59230", + "codeCommune": "59554", + "libelleAcheminement": "SARS ET ROSIERES", + "nomCommune": "SARS ET ROSIERES" }, { - "codePostal": "10260", - "codeCommune": "10331", - "libelleAcheminement": "RUMILLY LES VAUDES", - "nomCommune": "RUMILLY LES VAUDES" + "codePostal": "61150", + "codeCommune": "61194", + "libelleAcheminement": "MONTS SUR ORNE", + "nomCommune": "MONTS SUR ORNE" }, { - "codePostal": "67150", - "codeCommune": "67154", - "libelleAcheminement": "GERSTHEIM", - "nomCommune": "GERSTHEIM" + "codePostal": "70270", + "codeCommune": "70459", + "libelleAcheminement": "ST BARTHELEMY", + "nomCommune": "ST BARTHELEMY" }, { - "codePostal": "49600", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "17780", + "codeCommune": "17237", + "libelleAcheminement": "MOEZE", + "nomCommune": "MOEZE" }, { - "codePostal": "41120", - "codeCommune": "41059", - "libelleAcheminement": "LE CONTROIS EN SOLOGNE", - "nomCommune": "LE CONTROIS EN SOLOGNE" + "codePostal": "70300", + "codeCommune": "70344", + "libelleAcheminement": "MEURCOURT", + "nomCommune": "MEURCOURT" }, { - "codePostal": "10120", - "codeCommune": "10333", - "libelleAcheminement": "ST ANDRE LES VERGERS", - "nomCommune": "ST ANDRE LES VERGERS" + "codePostal": "59145", + "codeCommune": "59556", + "libelleAcheminement": "SASSEGNIES", + "nomCommune": "SASSEGNIES" }, { - "codePostal": "67350", - "codeCommune": "67166", - "libelleAcheminement": "GRASSENDORF", - "nomCommune": "GRASSENDORF" + "codePostal": "61130", + "codeCommune": "61196", + "libelleAcheminement": "BELFORET EN PERCHE", + "nomCommune": "BELFORET EN PERCHE" }, { - "codePostal": "49730", - "codeCommune": "49219", - "libelleAcheminement": "MONTSOREAU", - "nomCommune": "MONTSOREAU" + "codePostal": "70130", + "codeCommune": "70463", + "libelleAcheminement": "ST GAND", + "nomCommune": "ST GAND" }, { - "codePostal": "41120", - "codeCommune": "41059", - "libelleAcheminement": "LE CONTROIS EN SOLOGNE", - "nomCommune": "LE CONTROIS EN SOLOGNE" + "codePostal": "17130", + "codeCommune": "17240", + "libelleAcheminement": "MONTENDRE", + "nomCommune": "MONTENDRE" }, { - "codePostal": "10800", - "codeCommune": "10344", - "libelleAcheminement": "ST LEGER PRES TROYES", - "nomCommune": "ST LEGER PRES TROYES" + "codePostal": "70270", + "codeCommune": "70361", + "libelleAcheminement": "MONTESSAUX", + "nomCommune": "MONTESSAUX" }, { - "codePostal": "67980", - "codeCommune": "67182", - "libelleAcheminement": "HANGENBIETEN", - "nomCommune": "HANGENBIETEN" + "codePostal": "59269", + "codeCommune": "59565", + "libelleAcheminement": "SEPMERIES", + "nomCommune": "SEPMERIES" }, { - "codePostal": "49640", - "codeCommune": "49220", - "libelleAcheminement": "MORANNES SUR SARTHE DAUMERAY", - "nomCommune": "MORANNES SUR SARTHE DAUMERAY" + "codePostal": "61320", + "codeCommune": "61209", + "libelleAcheminement": "JOUE DU BOIS", + "nomCommune": "JOUE DU BOIS" }, { - "codePostal": "41170", - "codeCommune": "41060", - "libelleAcheminement": "CORMENON", - "nomCommune": "CORMENON" + "codePostal": "70200", + "codeCommune": "70464", + "libelleAcheminement": "ST GERMAIN", + "nomCommune": "ST GERMAIN" }, { - "codePostal": "10500", - "codeCommune": "10345", - "libelleAcheminement": "ST LEGER SOUS BRIENNE", - "nomCommune": "ST LEGER SOUS BRIENNE" + "codePostal": "17500", + "codeCommune": "17249", + "libelleAcheminement": "MORTIERS", + "nomCommune": "MORTIERS" }, { - "codePostal": "67690", - "codeCommune": "67184", - "libelleAcheminement": "HATTEN", - "nomCommune": "HATTEN" + "codePostal": "70000", + "codeCommune": "70363", + "libelleAcheminement": "MONTIGNY LES VESOUL", + "nomCommune": "MONTIGNY LES VESOUL" }, { - "codePostal": "49610", - "codeCommune": "49223", - "libelleAcheminement": "MURS ERIGNE", - "nomCommune": "MURS ERIGNE" + "codePostal": "59320", + "codeCommune": "59566", + "libelleAcheminement": "SEQUEDIN", + "nomCommune": "SEQUEDIN" }, { - "codePostal": "41500", - "codeCommune": "41066", - "libelleAcheminement": "COURBOUZON", - "nomCommune": "COURBOUZON" + "codePostal": "61150", + "codeCommune": "61210", + "libelleAcheminement": "JOUE DU PLAIN", + "nomCommune": "JOUE DU PLAIN" }, { - "codePostal": "10160", - "codeCommune": "10350", - "libelleAcheminement": "ST MARDS EN OTHE", - "nomCommune": "ST MARDS EN OTHE" + "codePostal": "70100", + "codeCommune": "70466", + "libelleAcheminement": "ST LOUP NANTOUARD", + "nomCommune": "ST LOUP NANTOUARD" }, { - "codePostal": "67390", - "codeCommune": "67187", - "libelleAcheminement": "HEIDOLSHEIM", - "nomCommune": "HEIDOLSHEIM" + "codePostal": "17350", + "codeCommune": "17252", + "libelleAcheminement": "LE MUNG", + "nomCommune": "LE MUNG" }, { - "codePostal": "49390", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "70000", + "codeCommune": "70367", + "libelleAcheminement": "MONT LE VERNOIS", + "nomCommune": "MONT LE VERNOIS" }, { - "codePostal": "41700", - "codeCommune": "41067", - "libelleAcheminement": "COUR CHEVERNY", - "nomCommune": "COUR CHEVERNY" + "codePostal": "59400", + "codeCommune": "59567", + "libelleAcheminement": "SERANVILLERS FORENVILLE", + "nomCommune": "SERANVILLERS FORENVILLE" }, { - "codePostal": "10200", - "codeCommune": "10366", - "libelleAcheminement": "SAULCY", - "nomCommune": "SAULCY" + "codePostal": "61330", + "codeCommune": "61211", + "libelleAcheminement": "JUVIGNY VAL D ANDAINE", + "nomCommune": "JUVIGNY VAL D ANDAINE" }, { - "codePostal": "67190", - "codeCommune": "67188", - "libelleAcheminement": "HEILIGENBERG", - "nomCommune": "HEILIGENBERG" + "codePostal": "70400", + "codeCommune": "70477", + "libelleAcheminement": "SAULNOT", + "nomCommune": "SAULNOT" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "17510", + "codeCommune": "17257", + "libelleAcheminement": "NERE", + "nomCommune": "NERE" }, { - "codePostal": "41100", - "codeCommune": "41072", - "libelleAcheminement": "CRUCHERAY", - "nomCommune": "CRUCHERAY" + "codePostal": "70120", + "codeCommune": "70373", + "libelleAcheminement": "LA ROCHE MOREY", + "nomCommune": "LA ROCHE MOREY" }, { - "codePostal": "10320", - "codeCommune": "10373", - "libelleAcheminement": "SOULIGNY", - "nomCommune": "SOULIGNY" + "codePostal": "59380", + "codeCommune": "59570", + "libelleAcheminement": "SOCX", + "nomCommune": "SOCX" }, { - "codePostal": "67140", - "codeCommune": "67189", - "libelleAcheminement": "HEILIGENSTEIN", - "nomCommune": "HEILIGENSTEIN" + "codePostal": "61320", + "codeCommune": "61216", + "libelleAcheminement": "LA LANDE DE GOULT", + "nomCommune": "LA LANDE DE GOULT" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "70400", + "codeCommune": "70477", + "libelleAcheminement": "SAULNOT", + "nomCommune": "SAULNOT" }, { - "codePostal": "41210", - "codeCommune": "41083", - "libelleAcheminement": "LA FERTE BEAUHARNAIS", - "nomCommune": "LA FERTE BEAUHARNAIS" + "codePostal": "17490", + "codeCommune": "17261", + "libelleAcheminement": "NEUVICQ LE CHATEAU", + "nomCommune": "NEUVICQ LE CHATEAU" }, { - "codePostal": "10700", - "codeCommune": "10380", - "libelleAcheminement": "TORCY LE PETIT", - "nomCommune": "TORCY LE PETIT" + "codePostal": "70000", + "codeCommune": "70381", + "libelleAcheminement": "NEUREY LES LA DEMIE", + "nomCommune": "NEUREY LES LA DEMIE" }, { - "codePostal": "67440", - "codeCommune": "67190", - "libelleAcheminement": "HENGWILLER", - "nomCommune": "HENGWILLER" + "codePostal": "59114", + "codeCommune": "59587", + "libelleAcheminement": "TERDEGHEM", + "nomCommune": "TERDEGHEM" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "61250", + "codeCommune": "61224", + "libelleAcheminement": "LARRE", + "nomCommune": "LARRE" }, { - "codePostal": "41220", - "codeCommune": "41085", - "libelleAcheminement": "LA FERTE ST CYR", - "nomCommune": "LA FERTE ST CYR" + "codePostal": "70360", + "codeCommune": "70482", + "libelleAcheminement": "SCEY SUR SAONE ET ST ALBIN", + "nomCommune": "SCEY SUR SAONE ET ST ALBIN" }, { - "codePostal": "10440", - "codeCommune": "10381", - "libelleAcheminement": "TORVILLIERS", - "nomCommune": "TORVILLIERS" + "codePostal": "17810", + "codeCommune": "17262", + "libelleAcheminement": "NIEUL LES SAINTES", + "nomCommune": "NIEUL LES SAINTES" }, { - "codePostal": "67260", - "codeCommune": "67199", - "libelleAcheminement": "HINSINGEN", - "nomCommune": "HINSINGEN" + "codePostal": "70190", + "codeCommune": "70383", + "libelleAcheminement": "NEUVELLE LES CROMARY", + "nomCommune": "NEUVELLE LES CROMARY" }, { - "codePostal": "49560", - "codeCommune": "49236", - "libelleAcheminement": "PASSAVANT SUR LAYON", - "nomCommune": "PASSAVANT SUR LAYON" + "codePostal": "59158", + "codeCommune": "59594", + "libelleAcheminement": "THUN ST AMAND", + "nomCommune": "THUN ST AMAND" }, { - "codePostal": "41800", - "codeCommune": "41100", - "libelleAcheminement": "LES HAYES", - "nomCommune": "LES HAYES" + "codePostal": "61290", + "codeCommune": "61230", + "libelleAcheminement": "LONGNY LES VILLAGES", + "nomCommune": "LONGNY LES VILLAGES" }, { - "codePostal": "10140", - "codeCommune": "10384", - "libelleAcheminement": "TRANNES", - "nomCommune": "TRANNES" + "codePostal": "70110", + "codeCommune": "70487", + "libelleAcheminement": "SENARGENT MIGNAFANS", + "nomCommune": "SENARGENT MIGNAFANS" }, { - "codePostal": "67250", - "codeCommune": "67206", - "libelleAcheminement": "HOFFEN", - "nomCommune": "HOFFEN" + "codePostal": "17137", + "codeCommune": "17264", + "libelleAcheminement": "NIEUL SUR MER", + "nomCommune": "NIEUL SUR MER" }, { - "codePostal": "49130", - "codeCommune": "49246", - "libelleAcheminement": "LES PONTS DE CE", - "nomCommune": "LES PONTS DE CE" + "codePostal": "70200", + "codeCommune": "70385", + "libelleAcheminement": "LA NEUVELLE LES LURE", + "nomCommune": "LA NEUVELLE LES LURE" }, { - "codePostal": "41190", - "codeCommune": "41101", - "libelleAcheminement": "HERBAULT", - "nomCommune": "HERBAULT" + "codePostal": "59870", + "codeCommune": "59596", + "libelleAcheminement": "TILLOY LEZ MARCHIENNES", + "nomCommune": "TILLOY LEZ MARCHIENNES" }, { - "codePostal": "10140", - "codeCommune": "10389", - "libelleAcheminement": "UNIENVILLE", - "nomCommune": "UNIENVILLE" + "codePostal": "61290", + "codeCommune": "61230", + "libelleAcheminement": "LONGNY LES VILLAGES", + "nomCommune": "LONGNY LES VILLAGES" }, { - "codePostal": "67140", - "codeCommune": "67210", - "libelleAcheminement": "LE HOHWALD", - "nomCommune": "LE HOHWALD" + "codePostal": "70440", + "codeCommune": "70489", + "libelleAcheminement": "SERVANCE MIELLIN", + "nomCommune": "SERVANCE MIELLIN" }, { - "codePostal": "49190", - "codeCommune": "49259", - "libelleAcheminement": "ROCHEFORT SUR LOIRE", - "nomCommune": "ROCHEFORT SUR LOIRE" + "codePostal": "17540", + "codeCommune": "17267", + "libelleAcheminement": "NUAILLE D AUNIS", + "nomCommune": "NUAILLE D AUNIS" }, { - "codePostal": "41800", - "codeCommune": "41102", - "libelleAcheminement": "HOUSSAY", - "nomCommune": "HOUSSAY" + "codePostal": "70130", + "codeCommune": "70387", + "libelleAcheminement": "NOIDANS LE FERROUX", + "nomCommune": "NOIDANS LE FERROUX" }, { - "codePostal": "10200", - "codeCommune": "10390", - "libelleAcheminement": "URVILLE", - "nomCommune": "URVILLE" + "codePostal": "59551", + "codeCommune": "59600", + "libelleAcheminement": "TOURMIGNIES", + "nomCommune": "TOURMIGNIES" }, { - "codePostal": "67810", - "codeCommune": "67212", - "libelleAcheminement": "HOLTZHEIM", - "nomCommune": "HOLTZHEIM" + "codePostal": "61290", + "codeCommune": "61230", + "libelleAcheminement": "LONGNY LES VILLAGES", + "nomCommune": "LONGNY LES VILLAGES" }, { - "codePostal": "49740", - "codeCommune": "49260", - "libelleAcheminement": "LA ROMAGNE", - "nomCommune": "LA ROMAGNE" + "codePostal": "70130", + "codeCommune": "70492", + "libelleAcheminement": "SOING CUBRY CHARENTENAY", + "nomCommune": "SOING CUBRY CHARENTENAY" }, { - "codePostal": "41600", - "codeCommune": "41106", - "libelleAcheminement": "LAMOTTE BEUVRON", - "nomCommune": "LAMOTTE BEUVRON" + "codePostal": "17400", + "codeCommune": "17277", + "libelleAcheminement": "ESSOUVERT", + "nomCommune": "ESSOUVERT" }, { - "codePostal": "10500", - "codeCommune": "10393", - "libelleAcheminement": "VALLENTIGNY", - "nomCommune": "VALLENTIGNY" + "codePostal": "70100", + "codeCommune": "70389", + "libelleAcheminement": "NOIRON", + "nomCommune": "NOIRON" }, { - "codePostal": "67640", - "codeCommune": "67217", - "libelleAcheminement": "ICHTRATZHEIM", - "nomCommune": "ICHTRATZHEIM" + "codePostal": "59980", + "codeCommune": "59604", + "libelleAcheminement": "TROISVILLES", + "nomCommune": "TROISVILLES" }, { - "codePostal": "49160", - "codeCommune": "49261", - "libelleAcheminement": "GENNES VAL DE LOIRE", - "nomCommune": "GENNES VAL DE LOIRE" + "codePostal": "61500", + "codeCommune": "61240", + "libelleAcheminement": "MACE", + "nomCommune": "MACE" }, { - "codePostal": "41310", - "codeCommune": "41107", - "libelleAcheminement": "LANCE", - "nomCommune": "LANCE" + "codePostal": "70500", + "codeCommune": "70496", + "libelleAcheminement": "TARTECOURT", + "nomCommune": "TARTECOURT" }, { - "codePostal": "10210", - "codeCommune": "10394", - "libelleAcheminement": "VALLIERES", - "nomCommune": "VALLIERES" + "codePostal": "17600", + "codeCommune": "17278", + "libelleAcheminement": "PISANY", + "nomCommune": "PISANY" }, { - "codePostal": "67400", - "codeCommune": "67218", - "libelleAcheminement": "ILLKIRCH GRAFFENSTADEN", - "nomCommune": "ILLKIRCH GRAFFENSTADEN" + "codePostal": "70100", + "codeCommune": "70394", + "libelleAcheminement": "ONAY", + "nomCommune": "ONAY" }, { - "codePostal": "49350", - "codeCommune": "49261", - "libelleAcheminement": "GENNES VAL DE LOIRE", - "nomCommune": "GENNES VAL DE LOIRE" + "codePostal": "59218", + "codeCommune": "59607", + "libelleAcheminement": "VENDEGIES AU BOIS", + "nomCommune": "VENDEGIES AU BOIS" }, { - "codePostal": "41230", - "codeCommune": "41112", - "libelleAcheminement": "LASSAY SUR CROISNE", - "nomCommune": "LASSAY SUR CROISNE" + "codePostal": "61110", + "codeCommune": "61241", + "libelleAcheminement": "LA MADELEINE BOUVET", + "nomCommune": "LA MADELEINE BOUVET" }, { - "codePostal": "10410", - "codeCommune": "10412", - "libelleAcheminement": "VILLECHETIF", - "nomCommune": "VILLECHETIF" + "codePostal": "70120", + "codeCommune": "70502", + "libelleAcheminement": "TINCEY ET PONTREBEAU", + "nomCommune": "TINCEY ET PONTREBEAU" }, { - "codePostal": "67250", - "codeCommune": "67221", - "libelleAcheminement": "INGOLSHEIM", - "nomCommune": "INGOLSHEIM" + "codePostal": "17240", + "codeCommune": "17279", + "libelleAcheminement": "PLASSAC", + "nomCommune": "PLASSAC" }, { - "codePostal": "49350", - "codeCommune": "49261", - "libelleAcheminement": "GENNES VAL DE LOIRE", - "nomCommune": "GENNES VAL DE LOIRE" + "codePostal": "70110", + "codeCommune": "70395", + "libelleAcheminement": "OPPENANS", + "nomCommune": "OPPENANS" }, { - "codePostal": "41500", - "codeCommune": "41114", - "libelleAcheminement": "LESTIOU", - "nomCommune": "LESTIOU" + "codePostal": "59175", + "codeCommune": "59609", + "libelleAcheminement": "VENDEVILLE", + "nomCommune": "VENDEVILLE" }, { - "codePostal": "10800", - "codeCommune": "10416", - "libelleAcheminement": "VILLEMEREUIL", - "nomCommune": "VILLEMEREUIL" + "codePostal": "61800", + "codeCommune": "61262", + "libelleAcheminement": "LE MENIL CIBOULT", + "nomCommune": "LE MENIL CIBOULT" }, { - "codePostal": "67330", - "codeCommune": "67225", - "libelleAcheminement": "ISSENHAUSEN", - "nomCommune": "ISSENHAUSEN" + "codePostal": "70190", + "codeCommune": "70503", + "libelleAcheminement": "TRAITIEFONTAINE", + "nomCommune": "TRAITIEFONTAINE" }, { - "codePostal": "49400", - "codeCommune": "49262", - "libelleAcheminement": "ROU MARSON", - "nomCommune": "ROU MARSON" + "codePostal": "17130", + "codeCommune": "17282", + "libelleAcheminement": "POMMIERS MOULONS", + "nomCommune": "POMMIERS MOULONS" }, { - "codePostal": "41360", - "codeCommune": "41120", - "libelleAcheminement": "LUNAY", - "nomCommune": "LUNAY" + "codePostal": "70110", + "codeCommune": "70396", + "libelleAcheminement": "ORICOURT", + "nomCommune": "ORICOURT" }, { - "codePostal": "10400", - "codeCommune": "10421", - "libelleAcheminement": "LA VILLENEUVE AU CHATELOT", - "nomCommune": "LA VILLENEUVE AU CHATELOT" + "codePostal": "59227", + "codeCommune": "59610", + "libelleAcheminement": "VERCHAIN MAUGRE", + "nomCommune": "VERCHAIN MAUGRE" }, { - "codePostal": "67370", - "codeCommune": "67228", - "libelleAcheminement": "NEUGARTHEIM ITTLENHEIM", - "nomCommune": "NEUGARTHEIM ITTLENHEIM" + "codePostal": "61320", + "codeCommune": "61271", + "libelleAcheminement": "LE MENIL SCELLEUR", + "nomCommune": "LE MENIL SCELLEUR" }, { - "codePostal": "49280", - "codeCommune": "49269", - "libelleAcheminement": "ST CHRISTOPHE DU BOIS", - "nomCommune": "ST CHRISTOPHE DU BOIS" + "codePostal": "70100", + "codeCommune": "70505", + "libelleAcheminement": "LE TREMBLOIS", + "nomCommune": "LE TREMBLOIS" }, { - "codePostal": "41370", - "codeCommune": "41121", - "libelleAcheminement": "LA MADELEINE VILLEFROUIN", - "nomCommune": "LA MADELEINE VILLEFROUIN" + "codePostal": "17800", + "codeCommune": "17283", + "libelleAcheminement": "PONS", + "nomCommune": "PONS" }, { - "codePostal": "10140", - "codeCommune": "10423", - "libelleAcheminement": "LA VILLENEUVE AU CHENE", - "nomCommune": "LA VILLENEUVE AU CHENE" + "codePostal": "70500", + "codeCommune": "70399", + "libelleAcheminement": "ORMOY", + "nomCommune": "ORMOY" }, { - "codePostal": "67270", - "codeCommune": "67236", - "libelleAcheminement": "KIENHEIM", - "nomCommune": "KIENHEIM" + "codePostal": "59232", + "codeCommune": "59615", + "libelleAcheminement": "VIEUX BERQUIN", + "nomCommune": "VIEUX BERQUIN" }, { - "codePostal": "49130", - "codeCommune": "49278", - "libelleAcheminement": "STE GEMMES SUR LOIRE", - "nomCommune": "STE GEMMES SUR LOIRE" + "codePostal": "61440", + "codeCommune": "61278", + "libelleAcheminement": "MESSEI", + "nomCommune": "MESSEI" }, { - "codePostal": "41210", - "codeCommune": "41125", - "libelleAcheminement": "MARCILLY EN GAULT", - "nomCommune": "MARCILLY EN GAULT" + "codePostal": "70190", + "codeCommune": "70507", + "libelleAcheminement": "TRESILLEY", + "nomCommune": "TRESILLEY" }, { - "codePostal": "10330", - "codeCommune": "10424", - "libelleAcheminement": "VILLERET", - "nomCommune": "VILLERET" + "codePostal": "17250", + "codeCommune": "17284", + "libelleAcheminement": "PONT L ABBE D ARNOULT", + "nomCommune": "PONT L ABBE D ARNOULT" }, { - "codePostal": "67350", - "codeCommune": "67238", - "libelleAcheminement": "KINDWILLER", - "nomCommune": "KINDWILLER" + "codePostal": "70210", + "codeCommune": "70404", + "libelleAcheminement": "PASSAVANT LA ROCHERE", + "nomCommune": "PASSAVANT LA ROCHERE" }, { - "codePostal": "49230", - "codeCommune": "49301", - "libelleAcheminement": "SEVREMOINE", - "nomCommune": "SEVREMOINE" + "codePostal": "59530", + "codeCommune": "59619", + "libelleAcheminement": "VILLEREAU", + "nomCommune": "VILLEREAU" }, { - "codePostal": "41330", - "codeCommune": "41128", - "libelleAcheminement": "MAROLLES", - "nomCommune": "MAROLLES" + "codePostal": "61160", + "codeCommune": "61289", + "libelleAcheminement": "MONT ORMEL", + "nomCommune": "MONT ORMEL" }, { - "codePostal": "10320", - "codeCommune": "10425", - "libelleAcheminement": "VILLERY", - "nomCommune": "VILLERY" + "codePostal": "70140", + "codeCommune": "70514", + "libelleAcheminement": "VALAY", + "nomCommune": "VALAY" }, { - "codePostal": "67440", - "codeCommune": "67244", - "libelleAcheminement": "KLEINGOEFT", - "nomCommune": "KLEINGOEFT" + "codePostal": "17380", + "codeCommune": "17292", + "libelleAcheminement": "PUY DU LAC", + "nomCommune": "PUY DU LAC" }, { - "codePostal": "49610", - "codeCommune": "49308", - "libelleAcheminement": "ST MELAINE SUR AUBANCE", - "nomCommune": "ST MELAINE SUR AUBANCE" + "codePostal": "70190", + "codeCommune": "70405", + "libelleAcheminement": "PENNESIERES", + "nomCommune": "PENNESIERES" }, { - "codePostal": "41140", - "codeCommune": "41132", - "libelleAcheminement": "MEHERS", - "nomCommune": "MEHERS" + "codePostal": "59234", + "codeCommune": "59620", + "libelleAcheminement": "VILLERS AU TERTRE", + "nomCommune": "VILLERS AU TERTRE" }, { - "codePostal": "10310", - "codeCommune": "10426", - "libelleAcheminement": "VILLE SOUS LA FERTE", - "nomCommune": "VILLE SOUS LA FERTE" + "codePostal": "61160", + "codeCommune": "61291", + "libelleAcheminement": "MONTREUIL LA CAMBE", + "nomCommune": "MONTREUIL LA CAMBE" }, { - "codePostal": "67310", - "codeCommune": "67245", - "libelleAcheminement": "KNOERSHEIM", - "nomCommune": "KNOERSHEIM" + "codePostal": "70160", + "codeCommune": "70518", + "libelleAcheminement": "LE VAL ST ELOI", + "nomCommune": "LE VAL ST ELOI" }, { - "codePostal": "49123", - "codeCommune": "49321", - "libelleAcheminement": "ST SIGISMOND", - "nomCommune": "ST SIGISMOND" + "codePostal": "17940", + "codeCommune": "17297", + "libelleAcheminement": "RIVEDOUX PLAGE", + "nomCommune": "RIVEDOUX PLAGE" }, { - "codePostal": "41100", - "codeCommune": "41138", - "libelleAcheminement": "MESLAY", - "nomCommune": "MESLAY" + "codePostal": "70600", + "codeCommune": "70406", + "libelleAcheminement": "PERCEY LE GRAND", + "nomCommune": "PERCEY LE GRAND" }, { - "codePostal": "10140", - "codeCommune": "10433", - "libelleAcheminement": "VILLY EN TRODES", - "nomCommune": "VILLY EN TRODES" + "codePostal": "59188", + "codeCommune": "59622", + "libelleAcheminement": "VILLERS EN CAUCHIES", + "nomCommune": "VILLERS EN CAUCHIES" }, { - "codePostal": "67250", - "codeCommune": "67254", - "libelleAcheminement": "KUTZENHAUSEN", - "nomCommune": "KUTZENHAUSEN" + "codePostal": "61800", + "codeCommune": "61292", + "libelleAcheminement": "MONTSECRET CLAIREFOUGERE", + "nomCommune": "MONTSECRET CLAIREFOUGERE" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "70190", + "codeCommune": "70519", + "libelleAcheminement": "VANDELANS", + "nomCommune": "VANDELANS" }, { - "codePostal": "41200", - "codeCommune": "41140", - "libelleAcheminement": "MILLANCAY", - "nomCommune": "MILLANCAY" + "codePostal": "17460", + "codeCommune": "17298", + "libelleAcheminement": "RIOUX", + "nomCommune": "RIOUX" }, { - "codePostal": "10110", - "codeCommune": "10439", - "libelleAcheminement": "VIVIERS SUR ARTAUT", - "nomCommune": "VIVIERS SUR ARTAUT" + "codePostal": "70290", + "codeCommune": "70413", + "libelleAcheminement": "PLANCHER BAS", + "nomCommune": "PLANCHER BAS" }, { - "codePostal": "67250", - "codeCommune": "67257", - "libelleAcheminement": "LAMPERTSLOCH", - "nomCommune": "LAMPERTSLOCH" + "codePostal": "59600", + "codeCommune": "59627", + "libelleAcheminement": "VILLERS SIRE NICOLE", + "nomCommune": "VILLERS SIRE NICOLE" }, { - "codePostal": "49140", - "codeCommune": "49333", - "libelleAcheminement": "SEICHES SUR LE LOIR", - "nomCommune": "SEICHES SUR LE LOIR" + "codePostal": "61380", + "codeCommune": "61297", + "libelleAcheminement": "MOULINS LA MARCHE", + "nomCommune": "MOULINS LA MARCHE" }, { - "codePostal": "41160", - "codeCommune": "41141", - "libelleAcheminement": "MOISY", - "nomCommune": "MOISY" + "codePostal": "70100", + "codeCommune": "70528", + "libelleAcheminement": "VELESMES ECHEVANNE", + "nomCommune": "VELESMES ECHEVANNE" }, { - "codePostal": "11800", - "codeCommune": "11001", - "libelleAcheminement": "AIGUES VIVES", - "nomCommune": "AIGUES VIVES" + "codePostal": "17300", + "codeCommune": "17299", + "libelleAcheminement": "ROCHEFORT", + "nomCommune": "ROCHEFORT" }, { - "codePostal": "67360", - "codeCommune": "67259", - "libelleAcheminement": "LANGENSOULTZBACH", - "nomCommune": "LANGENSOULTZBACH" + "codePostal": "70360", + "codeCommune": "70417", + "libelleAcheminement": "PONTCEY", + "nomCommune": "PONTCEY" }, { - "codePostal": "49140", - "codeCommune": "49333", - "libelleAcheminement": "SEICHES SUR LE LOIR", - "nomCommune": "SEICHES SUR LE LOIR" + "codePostal": "59470", + "codeCommune": "59628", + "libelleAcheminement": "VOLCKERINCKHOVE", + "nomCommune": "VOLCKERINCKHOVE" }, { - "codePostal": "41150", - "codeCommune": "41144", - "libelleAcheminement": "MONTEAUX", - "nomCommune": "MONTEAUX" + "codePostal": "61200", + "codeCommune": "61314", + "libelleAcheminement": "OCCAGNES", + "nomCommune": "OCCAGNES" }, { - "codePostal": "11200", - "codeCommune": "11013", - "libelleAcheminement": "ARGENS MINERVOIS", - "nomCommune": "ARGENS MINERVOIS" + "codePostal": "70130", + "codeCommune": "70549", + "libelleAcheminement": "LA VERNOTTE", + "nomCommune": "LA VERNOTTE" }, { - "codePostal": "67580", - "codeCommune": "67260", - "libelleAcheminement": "LAUBACH", - "nomCommune": "LAUBACH" + "codePostal": "17130", + "codeCommune": "17305", + "libelleAcheminement": "ROUFFIGNAC", + "nomCommune": "ROUFFIGNAC" }, { - "codePostal": "49730", - "codeCommune": "49358", - "libelleAcheminement": "TURQUANT", - "nomCommune": "TURQUANT" + "codePostal": "70130", + "codeCommune": "70418", + "libelleAcheminement": "LA ROMAINE", + "nomCommune": "LA ROMAINE" }, { - "codePostal": "41210", - "codeCommune": "41152", - "libelleAcheminement": "MONTRIEUX EN SOLOGNE", - "nomCommune": "MONTRIEUX EN SOLOGNE" + "codePostal": "59127", + "codeCommune": "59631", + "libelleAcheminement": "WALINCOURT SELVIGNY", + "nomCommune": "WALINCOURT SELVIGNY" }, { - "codePostal": "11110", - "codeCommune": "11014", - "libelleAcheminement": "ARMISSAN", - "nomCommune": "ARMISSAN" + "codePostal": "61160", + "codeCommune": "61316", + "libelleAcheminement": "OMMOY", + "nomCommune": "OMMOY" }, { - "codePostal": "67630", - "codeCommune": "67261", - "libelleAcheminement": "LAUTERBOURG", - "nomCommune": "LAUTERBOURG" + "codePostal": "70000", + "codeCommune": "70550", + "libelleAcheminement": "VESOUL", + "nomCommune": "VESOUL" }, { - "codePostal": "49730", - "codeCommune": "49361", - "libelleAcheminement": "VARENNES SUR LOIRE", - "nomCommune": "VARENNES SUR LOIRE" + "codePostal": "17620", + "codeCommune": "17308", + "libelleAcheminement": "ST AGNANT", + "nomCommune": "ST AGNANT" }, { - "codePostal": "41230", - "codeCommune": "41157", - "libelleAcheminement": "MUR DE SOLOGNE", - "nomCommune": "MUR DE SOLOGNE" + "codePostal": "70110", + "codeCommune": "70420", + "libelleAcheminement": "PONT SUR L OGNON", + "nomCommune": "PONT SUR L OGNON" }, { - "codePostal": "11290", - "codeCommune": "11018", - "libelleAcheminement": "ARZENS", - "nomCommune": "ARZENS" + "codePostal": "59400", + "codeCommune": "59635", + "libelleAcheminement": "WAMBAIX", + "nomCommune": "WAMBAIX" }, { - "codePostal": "67510", - "codeCommune": "67263", - "libelleAcheminement": "LEMBACH", - "nomCommune": "LEMBACH" + "codePostal": "61230", + "codeCommune": "61317", + "libelleAcheminement": "ORGERES", + "nomCommune": "ORGERES" }, { - "codePostal": "49260", - "codeCommune": "49364", - "libelleAcheminement": "VAUDELNAY", - "nomCommune": "VAUDELNAY" + "codePostal": "70000", + "codeCommune": "70559", + "libelleAcheminement": "VILLEPAROIS", + "nomCommune": "VILLEPAROIS" }, { - "codePostal": "41100", - "codeCommune": "41158", - "libelleAcheminement": "NAVEIL", - "nomCommune": "NAVEIL" + "codePostal": "17360", + "codeCommune": "17309", + "libelleAcheminement": "ST AIGULIN", + "nomCommune": "ST AIGULIN" }, { - "codePostal": "11600", - "codeCommune": "11025", - "libelleAcheminement": "BAGNOLES", - "nomCommune": "BAGNOLES" + "codePostal": "70120", + "codeCommune": "70423", + "libelleAcheminement": "PREIGNEY", + "nomCommune": "PREIGNEY" }, { - "codePostal": "67480", - "codeCommune": "67264", - "libelleAcheminement": "LEUTENHEIM", - "nomCommune": "LEUTENHEIM" + "codePostal": "59252", + "codeCommune": "59645", + "libelleAcheminement": "WASNES AU BAC", + "nomCommune": "WASNES AU BAC" }, { - "codePostal": "49220", - "codeCommune": "49367", - "libelleAcheminement": "ERDRE EN ANJOU", - "nomCommune": "ERDRE EN ANJOU" + "codePostal": "61130", + "codeCommune": "61319", + "libelleAcheminement": "ORIGNY LE ROUX", + "nomCommune": "ORIGNY LE ROUX" }, { - "codePostal": "41310", - "codeCommune": "41163", - "libelleAcheminement": "NOURRAY", - "nomCommune": "NOURRAY" + "codePostal": "70110", + "codeCommune": "70561", + "libelleAcheminement": "VILLERSEXEL", + "nomCommune": "VILLERSEXEL" }, { - "codePostal": "11800", - "codeCommune": "11027", - "libelleAcheminement": "BARBAIRA", - "nomCommune": "BARBAIRA" + "codePostal": "17240", + "codeCommune": "17317", + "libelleAcheminement": "ST CIERS DU TAILLON", + "nomCommune": "ST CIERS DU TAILLON" }, { - "codePostal": "67340", - "codeCommune": "67265", - "libelleAcheminement": "LICHTENBERG", - "nomCommune": "LICHTENBERG" + "codePostal": "70000", + "codeCommune": "70429", + "libelleAcheminement": "PUSY ET EPENOUX", + "nomCommune": "PUSY ET EPENOUX" }, { - "codePostal": "49340", - "codeCommune": "49371", - "libelleAcheminement": "VEZINS", - "nomCommune": "VEZINS" + "codePostal": "59290", + "codeCommune": "59646", + "libelleAcheminement": "WASQUEHAL", + "nomCommune": "WASQUEHAL" }, { - "codePostal": "41290", - "codeCommune": "41171", - "libelleAcheminement": "OUCQUES LA NOUVELLE", - "nomCommune": "OUCQUES LA NOUVELLE" + "codePostal": "61250", + "codeCommune": "61321", + "libelleAcheminement": "PACE", + "nomCommune": "PACE" }, { - "codePostal": "11580", - "codeCommune": "11029", - "libelleAcheminement": "BELCASTEL ET BUC", - "nomCommune": "BELCASTEL ET BUC" + "codePostal": "70170", + "codeCommune": "70566", + "libelleAcheminement": "VILLERS SUR PORT", + "nomCommune": "VILLERS SUR PORT" }, { - "codePostal": "67150", - "codeCommune": "67266", - "libelleAcheminement": "LIMERSHEIM", - "nomCommune": "LIMERSHEIM" + "codePostal": "17590", + "codeCommune": "17318", + "libelleAcheminement": "ST CLEMENT DES BALEINES", + "nomCommune": "ST CLEMENT DES BALEINES" }, { - "codePostal": "49310", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "70120", + "codeCommune": "70430", + "libelleAcheminement": "LA QUARTE", + "nomCommune": "LA QUARTE" }, { - "codePostal": "41290", - "codeCommune": "41171", - "libelleAcheminement": "OUCQUES LA NOUVELLE", - "nomCommune": "OUCQUES LA NOUVELLE" + "codePostal": "59143", + "codeCommune": "59647", + "libelleAcheminement": "WATTEN", + "nomCommune": "WATTEN" }, { - "codePostal": "11420", - "codeCommune": "11033", - "libelleAcheminement": "BELPECH", - "nomCommune": "BELPECH" + "codePostal": "61400", + "codeCommune": "61322", + "libelleAcheminement": "PARFONDEVAL", + "nomCommune": "PARFONDEVAL" }, { - "codePostal": "67250", - "codeCommune": "67271", - "libelleAcheminement": "LOBSANN", - "nomCommune": "LOBSANN" + "codePostal": "70120", + "codeCommune": "70568", + "libelleAcheminement": "VILLERS VAUDEY", + "nomCommune": "VILLERS VAUDEY" }, { - "codePostal": "49310", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "17810", + "codeCommune": "17336", + "libelleAcheminement": "ST GEORGES DES COTEAUX", + "nomCommune": "ST GEORGES DES COTEAUX" }, { - "codePostal": "41240", - "codeCommune": "41173", - "libelleAcheminement": "BEAUCE LA ROMAINE", - "nomCommune": "BEAUCE LA ROMAINE" + "codePostal": "70130", + "codeCommune": "70440", + "libelleAcheminement": "RECOLOGNE LES RAY", + "nomCommune": "RECOLOGNE" }, { - "codePostal": "11500", - "codeCommune": "11035", - "libelleAcheminement": "BELVIANES ET CAVIRAC", - "nomCommune": "BELVIANES ET CAVIRAC" + "codePostal": "59139", + "codeCommune": "59648", + "libelleAcheminement": "WATTIGNIES", + "nomCommune": "WATTIGNIES" }, { - "codePostal": "67390", - "codeCommune": "67277", - "libelleAcheminement": "MACKENHEIM", - "nomCommune": "MACKENHEIM" + "codePostal": "61290", + "codeCommune": "61323", + "libelleAcheminement": "LE PAS ST L HOMER", + "nomCommune": "LE PAS ST L HOMER" }, { - "codePostal": "49310", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "70500", + "codeCommune": "70572", + "libelleAcheminement": "VITREY SUR MANCE", + "nomCommune": "VITREY SUR MANCE" }, { - "codePostal": "41240", - "codeCommune": "41173", - "libelleAcheminement": "BEAUCE LA ROMAINE", - "nomCommune": "BEAUCE LA ROMAINE" + "codePostal": "17240", + "codeCommune": "17342", + "libelleAcheminement": "ST GERMAIN DU SEUDRE", + "nomCommune": "ST GERMAIN DU SEUDRE" }, { - "codePostal": "11700", - "codeCommune": "11042", - "libelleAcheminement": "BLOMAC", - "nomCommune": "BLOMAC" + "codePostal": "70300", + "codeCommune": "70470", + "libelleAcheminement": "STE MARIE EN CHAUX", + "nomCommune": "STE MARIE EN CHAUX" }, { - "codePostal": "67700", - "codeCommune": "67279", - "libelleAcheminement": "MAENNOLSHEIM", - "nomCommune": "MAENNOLSHEIM" + "codePostal": "59220", + "codeCommune": "59651", + "libelleAcheminement": "WAVRECHAIN SOUS DENAIN", + "nomCommune": "WAVRECHAIN SOUS DENAIN" }, { - "codePostal": "49540", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "61350", + "codeCommune": "61324", + "libelleAcheminement": "PASSAIS VILLAGES", + "nomCommune": "PASSAIS VILLAGES" }, { - "codePostal": "41100", - "codeCommune": "41175", - "libelleAcheminement": "PEZOU", - "nomCommune": "PEZOU" + "codePostal": "70200", + "codeCommune": "70581", + "libelleAcheminement": "VY LES LURE", + "nomCommune": "VY LES LURE" }, { - "codePostal": "11300", - "codeCommune": "11045", - "libelleAcheminement": "BOURIEGE", - "nomCommune": "BOURIEGE" + "codePostal": "17320", + "codeCommune": "17351", + "libelleAcheminement": "ST JUST LUZAC", + "nomCommune": "ST JUST LUZAC" }, { - "codePostal": "67220", - "codeCommune": "67280", - "libelleAcheminement": "MAISONSGOUTTE", - "nomCommune": "MAISONSGOUTTE" + "codePostal": "70160", + "codeCommune": "70472", + "libelleAcheminement": "ST REMY EN COMTE", + "nomCommune": "ST REMY EN COMTE" }, { - "codePostal": "49360", - "codeCommune": "49381", - "libelleAcheminement": "YZERNAY", - "nomCommune": "YZERNAY" + "codePostal": "59136", + "codeCommune": "59653", + "libelleAcheminement": "WAVRIN", + "nomCommune": "WAVRIN" }, { - "codePostal": "41310", - "codeCommune": "41184", - "libelleAcheminement": "PRUNAY CASSEREAU", - "nomCommune": "PRUNAY CASSEREAU" + "codePostal": "61350", + "codeCommune": "61324", + "libelleAcheminement": "PASSAIS VILLAGES", + "nomCommune": "PASSAIS VILLAGES" }, { - "codePostal": "11400", - "codeCommune": "11054", - "libelleAcheminement": "LES BRUNELS", - "nomCommune": "LES BRUNELS" + "codePostal": "71380", + "codeCommune": "71004", + "libelleAcheminement": "ALLERIOT", + "nomCommune": "ALLERIOT" }, { - "codePostal": "67150", - "codeCommune": "67285", - "libelleAcheminement": "MATZENHEIM", - "nomCommune": "MATZENHEIM" + "codePostal": "17270", + "codeCommune": "17365", + "libelleAcheminement": "ST MARTIN D ARY", + "nomCommune": "ST MARTIN D ARY" }, { - "codePostal": "50680", - "codeCommune": "50004", - "libelleAcheminement": "AIREL", - "nomCommune": "AIREL" + "codePostal": "70100", + "codeCommune": "70479", + "libelleAcheminement": "SAUVIGNEY LES GRAY", + "nomCommune": "SAUVIGNEY LES GRAY" }, { - "codePostal": "41160", - "codeCommune": "41186", - "libelleAcheminement": "RAHART", - "nomCommune": "RAHART" + "codePostal": "59119", + "codeCommune": "59654", + "libelleAcheminement": "WAZIERS", + "nomCommune": "WAZIERS" }, { - "codePostal": "11240", - "codeCommune": "11058", - "libelleAcheminement": "CAILHAU", - "nomCommune": "CAILHAU" + "codePostal": "61360", + "codeCommune": "61327", + "libelleAcheminement": "PERVENCHERES", + "nomCommune": "PERVENCHERES" }, { - "codePostal": "67150", - "codeCommune": "67285", - "libelleAcheminement": "MATZENHEIM", - "nomCommune": "MATZENHEIM" + "codePostal": "71400", + "codeCommune": "71010", + "libelleAcheminement": "ANTULLY", + "nomCommune": "ANTULLY" }, { - "codePostal": "50400", - "codeCommune": "50008", - "libelleAcheminement": "ANCTOVILLE SUR BOSCQ", - "nomCommune": "ANCTOVILLE SUR BOSCQ" + "codePostal": "17310", + "codeCommune": "17385", + "libelleAcheminement": "ST PIERRE D OLERON", + "nomCommune": "ST PIERRE D OLERON" }, { - "codePostal": "41800", - "codeCommune": "41192", - "libelleAcheminement": "LES ROCHES L EVEQUE", - "nomCommune": "LES ROCHES L EVEQUE" + "codePostal": "70170", + "codeCommune": "70483", + "libelleAcheminement": "SCYE", + "nomCommune": "SCYE" }, { - "codePostal": "11140", - "codeCommune": "11060", - "libelleAcheminement": "CAILLA", - "nomCommune": "CAILLA" + "codePostal": "59134", + "codeCommune": "59658", + "libelleAcheminement": "WICRES", + "nomCommune": "WICRES" }, { - "codePostal": "67270", - "codeCommune": "67287", - "libelleAcheminement": "MELSHEIM", - "nomCommune": "MELSHEIM" + "codePostal": "61210", + "codeCommune": "61339", + "libelleAcheminement": "PUTANGES LE LAC", + "nomCommune": "PUTANGES LE LAC" }, { - "codePostal": "50500", - "codeCommune": "50023", - "libelleAcheminement": "AUVERS", - "nomCommune": "AUVERS" + "codePostal": "71110", + "codeCommune": "71011", + "libelleAcheminement": "ANZY LE DUC", + "nomCommune": "ANZY LE DUC" }, { - "codePostal": "41200", - "codeCommune": "41194", - "libelleAcheminement": "ROMORANTIN LANTHENAY", - "nomCommune": "ROMORANTIN LANTHENAY" + "codePostal": "17220", + "codeCommune": "17391", + "libelleAcheminement": "ST ROGATIEN", + "nomCommune": "ST ROGATIEN" }, { - "codePostal": "11340", - "codeCommune": "11066", - "libelleAcheminement": "CAMURAC", - "nomCommune": "CAMURAC" + "codePostal": "70210", + "codeCommune": "70485", + "libelleAcheminement": "SELLES", + "nomCommune": "SELLES" }, { - "codePostal": "67250", - "codeCommune": "67290", - "libelleAcheminement": "MERKWILLER PECHELBRONN", - "nomCommune": "MERKWILLER PECHELBRONN" + "codePostal": "59470", + "codeCommune": "59666", + "libelleAcheminement": "ZEGERSCAPPEL", + "nomCommune": "ZEGERSCAPPEL" }, { - "codePostal": "50300", - "codeCommune": "50025", - "libelleAcheminement": "AVRANCHES", - "nomCommune": "AVRANCHES" + "codePostal": "61150", + "codeCommune": "61344", + "libelleAcheminement": "RANES", + "nomCommune": "RANES" }, { - "codePostal": "41270", - "codeCommune": "41196", - "libelleAcheminement": "RUAN SUR EGVONNE", - "nomCommune": "RUAN SUR EGVONNE" + "codePostal": "71400", + "codeCommune": "71014", + "libelleAcheminement": "AUTUN", + "nomCommune": "AUTUN" }, { - "codePostal": "11200", - "codeCommune": "11067", - "libelleAcheminement": "CANET", - "nomCommune": "CANET" + "codePostal": "17220", + "codeCommune": "17407", + "libelleAcheminement": "STE SOULLE", + "nomCommune": "STE SOULLE" }, { - "codePostal": "67250", - "codeCommune": "67290", - "libelleAcheminement": "MERKWILLER PECHELBRONN", - "nomCommune": "MERKWILLER PECHELBRONN" + "codePostal": "70160", + "codeCommune": "70488", + "libelleAcheminement": "SENONCOURT", + "nomCommune": "SENONCOURT" }, { - "codePostal": "50810", - "codeCommune": "50032", - "libelleAcheminement": "LA BARRE DE SEMILLY", - "nomCommune": "LA BARRE DE SEMILLY" + "codePostal": "60220", + "codeCommune": "60001", + "libelleAcheminement": "ABANCOURT", + "nomCommune": "ABANCOURT" }, { - "codePostal": "41500", - "codeCommune": "41207", - "libelleAcheminement": "ST DYE SUR LOIRE", - "nomCommune": "ST DYE SUR LOIRE" + "codePostal": "61110", + "codeCommune": "61345", + "libelleAcheminement": "REMALARD EN PERCHE", + "nomCommune": "REMALARD EN PERCHE" }, { - "codePostal": "11000", - "codeCommune": "11069", - "libelleAcheminement": "CARCASSONNE", - "nomCommune": "CARCASSONNE" + "codePostal": "71400", + "codeCommune": "71014", + "libelleAcheminement": "AUTUN", + "nomCommune": "AUTUN" }, { - "codePostal": "67206", - "codeCommune": "67296", - "libelleAcheminement": "MITTELHAUSBERGEN", - "nomCommune": "MITTELHAUSBERGEN" + "codePostal": "17100", + "codeCommune": "17412", + "libelleAcheminement": "ST VAIZE", + "nomCommune": "ST VAIZE" }, { - "codePostal": "50000", - "codeCommune": "50034", - "libelleAcheminement": "BAUDRE", - "nomCommune": "BAUDRE" + "codePostal": "70130", + "codeCommune": "70492", + "libelleAcheminement": "SOING CUBRY CHARENTENAY", + "nomCommune": "SOING CUBRY CHARENTENAY" }, { - "codePostal": "41310", - "codeCommune": "41213", - "libelleAcheminement": "ST GOURGON", - "nomCommune": "ST GOURGON" + "codePostal": "60310", + "codeCommune": "60011", + "libelleAcheminement": "AMY", + "nomCommune": "AMY" }, { - "codePostal": "11000", - "codeCommune": "11069", - "libelleAcheminement": "CARCASSONNE", - "nomCommune": "CARCASSONNE" + "codePostal": "61120", + "codeCommune": "61346", + "libelleAcheminement": "LE RENOUARD", + "nomCommune": "LE RENOUARD" }, { - "codePostal": "67120", - "codeCommune": "67300", - "libelleAcheminement": "MOLSHEIM", - "nomCommune": "MOLSHEIM" + "codePostal": "71500", + "codeCommune": "71018", + "libelleAcheminement": "BANTANGES", + "nomCommune": "BANTANGES" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "17800", + "codeCommune": "17418", + "libelleAcheminement": "SALIGNAC SUR CHARENTE", + "nomCommune": "SALIGNAC SUR CHARENTE" }, { - "codePostal": "41220", - "codeCommune": "41220", - "libelleAcheminement": "ST LAURENT NOUAN", - "nomCommune": "ST LAURENT NOUAN" + "codePostal": "70270", + "codeCommune": "70498", + "libelleAcheminement": "TERNUAY MELAY ET ST HILAIRE", + "nomCommune": "TERNUAY MELAY ET ST HILAIRE" }, { - "codePostal": "11400", - "codeCommune": "11076", - "libelleAcheminement": "CASTELNAUDARY", - "nomCommune": "CASTELNAUDARY" + "codePostal": "60162", + "codeCommune": "60019", + "libelleAcheminement": "ANTHEUIL PORTES", + "nomCommune": "ANTHEUIL PORTES" }, { - "codePostal": "67700", - "codeCommune": "67302", - "libelleAcheminement": "MONSWILLER", - "nomCommune": "MONSWILLER" + "codePostal": "61420", + "codeCommune": "61350", + "libelleAcheminement": "LA ROCHE MABILE", + "nomCommune": "LA ROCHE MABILE" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "71960", + "codeCommune": "71031", + "libelleAcheminement": "BERZE LE CHATEL", + "nomCommune": "BERZE LE CHATEL" }, { - "codePostal": "41220", - "codeCommune": "41220", - "libelleAcheminement": "ST LAURENT NOUAN", - "nomCommune": "ST LAURENT NOUAN" + "codePostal": "17600", + "codeCommune": "17421", + "libelleAcheminement": "SAUJON", + "nomCommune": "SAUJON" }, { - "codePostal": "11170", - "codeCommune": "11084", - "libelleAcheminement": "CAUX ET SAUZENS", - "nomCommune": "CAUX ET SAUZENS" + "codePostal": "70230", + "codeCommune": "70501", + "libelleAcheminement": "THIENANS", + "nomCommune": "THIENANS" }, { - "codePostal": "67360", - "codeCommune": "67303", - "libelleAcheminement": "MORSBRONN LES BAINS", - "nomCommune": "MORSBRONN LES BAINS" + "codePostal": "60350", + "codeCommune": "60025", + "libelleAcheminement": "ATTICHY", + "nomCommune": "ATTICHY" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "61220", + "codeCommune": "61361", + "libelleAcheminement": "ST ANDRE DE BRIOUZE", + "nomCommune": "ST ANDRE DE BRIOUZE" }, { - "codePostal": "41170", - "codeCommune": "41224", - "libelleAcheminement": "ST MARC DU COR", - "nomCommune": "ST MARC DU COR" + "codePostal": "71960", + "codeCommune": "71032", + "libelleAcheminement": "BERZE LA VILLE", + "nomCommune": "BERZE LA VILLE" }, { - "codePostal": "11570", - "codeCommune": "11088", - "libelleAcheminement": "CAZILHAC", - "nomCommune": "CAZILHAC" + "codePostal": "17490", + "codeCommune": "17427", + "libelleAcheminement": "SIECQ", + "nomCommune": "SIECQ" }, { - "codePostal": "67470", - "codeCommune": "67308", - "libelleAcheminement": "MUNCHHAUSEN", - "nomCommune": "MUNCHHAUSEN" + "codePostal": "70400", + "codeCommune": "70506", + "libelleAcheminement": "TREMOINS", + "nomCommune": "TREMOINS" }, { - "codePostal": "50170", - "codeCommune": "50042", - "libelleAcheminement": "BEAUVOIR", - "nomCommune": "BEAUVOIR" + "codePostal": "60800", + "codeCommune": "60027", + "libelleAcheminement": "AUGER ST VINCENT", + "nomCommune": "AUGER ST VINCENT" }, { - "codePostal": "41800", - "codeCommune": "41225", - "libelleAcheminement": "ST MARTIN DES BOIS", - "nomCommune": "ST MARTIN DES BOIS" + "codePostal": "61440", + "codeCommune": "61362", + "libelleAcheminement": "ST ANDRE DE MESSEI", + "nomCommune": "ST ANDRE DE MESSEI" }, { - "codePostal": "11170", - "codeCommune": "11089", - "libelleAcheminement": "CENNE MONESTIES", - "nomCommune": "CENNE MONESTIES" + "codePostal": "71260", + "codeCommune": "71035", + "libelleAcheminement": "BISSY LA MACONNAISE", + "nomCommune": "BISSY LA MACONNAISE" }, { - "codePostal": "67450", - "codeCommune": "67309", - "libelleAcheminement": "MUNDOLSHEIM", - "nomCommune": "MUNDOLSHEIM" + "codePostal": "17260", + "codeCommune": "17438", + "libelleAcheminement": "TANZAC", + "nomCommune": "TANZAC" }, { - "codePostal": "50390", - "codeCommune": "50049", - "libelleAcheminement": "BESNEVILLE", - "nomCommune": "BESNEVILLE" + "codePostal": "70180", + "codeCommune": "70511", + "libelleAcheminement": "VAITE", + "nomCommune": "VAITE" }, { - "codePostal": "41800", - "codeCommune": "41228", - "libelleAcheminement": "ST RIMAY", - "nomCommune": "ST RIMAY" + "codePostal": "60300", + "codeCommune": "60028", + "libelleAcheminement": "AUMONT EN HALATTE", + "nomCommune": "AUMONT EN HALATTE" }, { - "codePostal": "11160", - "codeCommune": "11092", - "libelleAcheminement": "CITOU", - "nomCommune": "CITOU" + "codePostal": "61470", + "codeCommune": "61366", + "libelleAcheminement": "ST AUBIN DE BONNEVAL", + "nomCommune": "ST AUBIN DE BONNEVAL" }, { - "codePostal": "67220", - "codeCommune": "67320", - "libelleAcheminement": "NEUVE EGLISE", - "nomCommune": "NEUVE EGLISE" + "codePostal": "71350", + "codeCommune": "71043", + "libelleAcheminement": "LES BORDES", + "nomCommune": "LES BORDES" }, { - "codePostal": "50360", - "codeCommune": "50052", - "libelleAcheminement": "BEUZEVILLE LA BASTILLE", - "nomCommune": "BEUZEVILLE LA BASTILLE" + "codePostal": "17290", + "codeCommune": "17443", + "libelleAcheminement": "THAIRE", + "nomCommune": "THAIRE" }, { - "codePostal": "41190", - "codeCommune": "41234", - "libelleAcheminement": "SANTENAY", - "nomCommune": "SANTENAY" + "codePostal": "70000", + "codeCommune": "70513", + "libelleAcheminement": "VAIVRE ET MONTOILLE", + "nomCommune": "VAIVRE ET MONTOILLE" }, { - "codePostal": "11110", - "codeCommune": "11106", - "libelleAcheminement": "COURSAN", - "nomCommune": "COURSAN" + "codePostal": "60390", + "codeCommune": "60029", + "libelleAcheminement": "AUNEUIL", + "nomCommune": "AUNEUIL" }, { - "codePostal": "67280", - "codeCommune": "67325", - "libelleAcheminement": "NIEDERHASLACH", - "nomCommune": "NIEDERHASLACH" + "codePostal": "61380", + "codeCommune": "61373", + "libelleAcheminement": "STE CERONNE LES MORTAGNE", + "nomCommune": "STE CERONNE LES MORTAGNE" }, { - "codePostal": "50160", - "codeCommune": "50054", - "libelleAcheminement": "BIEVILLE", - "nomCommune": "BIEVILLE" + "codePostal": "71520", + "codeCommune": "71050", + "libelleAcheminement": "BOURGVILAIN", + "nomCommune": "BOURGVILAIN" }, { - "codePostal": "41170", - "codeCommune": "41248", - "libelleAcheminement": "COUETRON AU PERCHE", - "nomCommune": "COUETRON AU PERCHE" + "codePostal": "17460", + "codeCommune": "17444", + "libelleAcheminement": "THENAC", + "nomCommune": "THENAC" }, { - "codePostal": "11300", - "codeCommune": "11120", - "libelleAcheminement": "LA DIGNE D AVAL", - "nomCommune": "LA DIGNE D AVAL" + "codePostal": "70000", + "codeCommune": "70516", + "libelleAcheminement": "VALLEROIS LE BOIS", + "nomCommune": "VALLEROIS LE BOIS" }, { - "codePostal": "67510", - "codeCommune": "67334", - "libelleAcheminement": "NIEDERSTEINBACH", - "nomCommune": "NIEDERSTEINBACH" + "codePostal": "60890", + "codeCommune": "60031", + "libelleAcheminement": "AUTHEUIL EN VALOIS", + "nomCommune": "AUTHEUIL EN VALOIS" }, { - "codePostal": "50800", - "codeCommune": "50062", - "libelleAcheminement": "BOISYVON", - "nomCommune": "BOISYVON" + "codePostal": "61570", + "codeCommune": "61375", + "libelleAcheminement": "BOISCHAMPRE", + "nomCommune": "BOISCHAMPRE" }, { - "codePostal": "41170", - "codeCommune": "41248", - "libelleAcheminement": "COUETRON AU PERCHE", - "nomCommune": "COUETRON AU PERCHE" + "codePostal": "71150", + "codeCommune": "71051", + "libelleAcheminement": "BOUZERON", + "nomCommune": "BOUZERON" }, { - "codePostal": "11350", - "codeCommune": "11123", - "libelleAcheminement": "DUILHAC SOUS PEYREPERTUSE", - "nomCommune": "DUILHAC SOUS PEYREPERTUSE" + "codePostal": "17390", + "codeCommune": "17452", + "libelleAcheminement": "LA TREMBLADE", + "nomCommune": "LA TREMBLADE" }, { - "codePostal": "67520", - "codeCommune": "67335", - "libelleAcheminement": "NORDHEIM", - "nomCommune": "NORDHEIM" + "codePostal": "70240", + "codeCommune": "70522", + "libelleAcheminement": "VAROGNE", + "nomCommune": "VAROGNE" }, { - "codePostal": "50370", - "codeCommune": "50074", - "libelleAcheminement": "BRECEY", - "nomCommune": "BRECEY" + "codePostal": "60310", + "codeCommune": "60035", + "libelleAcheminement": "AVRICOURT", + "nomCommune": "AVRICOURT" }, { - "codePostal": "41170", - "codeCommune": "41248", - "libelleAcheminement": "COUETRON AU PERCHE", - "nomCommune": "COUETRON AU PERCHE" + "codePostal": "61130", + "codeCommune": "61379", + "libelleAcheminement": "ST CYR LA ROSIERE", + "nomCommune": "ST CYR LA ROSIERE" }, { - "codePostal": "11240", - "codeCommune": "11128", - "libelleAcheminement": "ESCUEILLENS ET ST JUST", - "nomCommune": "ESCUEILLENS ET ST JUST DE BELENGARD" + "codePostal": "71190", + "codeCommune": "71062", + "libelleAcheminement": "BRION", + "nomCommune": "BRION" }, { - "codePostal": "67230", - "codeCommune": "67338", - "libelleAcheminement": "OBENHEIM", - "nomCommune": "OBENHEIM" + "codePostal": "17700", + "codeCommune": "17457", + "libelleAcheminement": "LA DEVISE", + "nomCommune": "LA DEVISE" }, { - "codePostal": "50150", - "codeCommune": "50088", - "libelleAcheminement": "BROUAINS", - "nomCommune": "BROUAINS" + "codePostal": "70120", + "codeCommune": "70525", + "libelleAcheminement": "VAUCONCOURT NERVEZAIN", + "nomCommune": "VAUCONCOURT NERVEZAIN" }, { - "codePostal": "41500", - "codeCommune": "41252", - "libelleAcheminement": "SUEVRES", - "nomCommune": "SUEVRES" + "codePostal": "60140", + "codeCommune": "60042", + "libelleAcheminement": "BAILLEVAL", + "nomCommune": "BAILLEVAL" }, { - "codePostal": "11260", - "codeCommune": "11131", - "libelleAcheminement": "VAL DU FABY", - "nomCommune": "VAL DU FABY" + "codePostal": "61420", + "codeCommune": "61382", + "libelleAcheminement": "ST DENIS SUR SARTHON", + "nomCommune": "ST DENIS SUR SARTHON" }, { - "codePostal": "67360", - "codeCommune": "67341", - "libelleAcheminement": "OBERDORF SPACHBACH", - "nomCommune": "OBERDORF SPACHBACH" + "codePostal": "71390", + "codeCommune": "71072", + "libelleAcheminement": "CERSOT", + "nomCommune": "CERSOT" }, { - "codePostal": "50200", - "codeCommune": "50092", - "libelleAcheminement": "CAMBERNON", - "nomCommune": "CAMBERNON" + "codePostal": "17640", + "codeCommune": "17461", + "libelleAcheminement": "VAUX SUR MER", + "nomCommune": "VAUX SUR MER" }, { - "codePostal": "41370", - "codeCommune": "41253", - "libelleAcheminement": "TALCY", - "nomCommune": "TALCY" + "codePostal": "70700", + "codeCommune": "70531", + "libelleAcheminement": "VELLECLAIRE", + "nomCommune": "VELLECLAIRE" }, { - "codePostal": "11800", - "codeCommune": "11146", - "libelleAcheminement": "FLOURE", - "nomCommune": "FLOURE" + "codePostal": "60810", + "codeCommune": "60045", + "libelleAcheminement": "BARBERY", + "nomCommune": "BARBERY" }, { - "codePostal": "67205", - "codeCommune": "67343", - "libelleAcheminement": "OBERHAUSBERGEN", - "nomCommune": "OBERHAUSBERGEN" + "codePostal": "61230", + "codeCommune": "61385", + "libelleAcheminement": "ST EVROULT DE MONTFORT", + "nomCommune": "ST EVROULT DE MONTFORT" }, { - "codePostal": "50480", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "71140", + "codeCommune": "71075", + "libelleAcheminement": "CHALMOUX", + "nomCommune": "CHALMOUX" }, { - "codePostal": "41800", - "codeCommune": "41255", - "libelleAcheminement": "TERNAY", - "nomCommune": "TERNAY" + "codePostal": "17100", + "codeCommune": "17462", + "libelleAcheminement": "VENERAND", + "nomCommune": "VENERAND" }, { - "codePostal": "11300", - "codeCommune": "11158", - "libelleAcheminement": "GAJA ET VILLEDIEU", - "nomCommune": "GAJA ET VILLEDIEU" + "codePostal": "70000", + "codeCommune": "70532", + "libelleAcheminement": "VELLEFAUX", + "nomCommune": "VELLEFAUX" }, { - "codePostal": "67330", - "codeCommune": "67347", - "libelleAcheminement": "OBERMODERN ZUTZENDORF", - "nomCommune": "OBERMODERN ZUTZENDORF" + "codePostal": "60190", + "codeCommune": "60048", + "libelleAcheminement": "BAUGY", + "nomCommune": "BAUGY" }, { - "codePostal": "50500", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "61550", + "codeCommune": "61386", + "libelleAcheminement": "ST EVROULT NOTRE DAME DU BOIS", + "nomCommune": "ST EVROULT NOTRE DAME DU BOIS" }, { - "codePostal": "41140", - "codeCommune": "41258", - "libelleAcheminement": "THESEE", - "nomCommune": "THESEE" + "codePostal": "71100", + "codeCommune": "71076", + "libelleAcheminement": "CHALON SUR SAONE", + "nomCommune": "CHALON SUR SAONE" }, { - "codePostal": "11500", - "codeCommune": "11168", - "libelleAcheminement": "GRANES", - "nomCommune": "GRANES" + "codePostal": "17130", + "codeCommune": "17468", + "libelleAcheminement": "VIBRAC", + "nomCommune": "VIBRAC" }, { - "codePostal": "67970", - "codeCommune": "67355", - "libelleAcheminement": "OERMINGEN", - "nomCommune": "OERMINGEN" + "codePostal": "70000", + "codeCommune": "70535", + "libelleAcheminement": "VELLEGUINDRY ET LEVRECEY", + "nomCommune": "VELLEGUINDRY ET LEVRECEY" }, { - "codePostal": "50500", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "60380", + "codeCommune": "60049", + "libelleAcheminement": "BAZANCOURT", + "nomCommune": "BAZANCOURT" }, { - "codePostal": "41120", - "codeCommune": "41266", - "libelleAcheminement": "VALAIRE", - "nomCommune": "VALAIRE" + "codePostal": "61500", + "codeCommune": "61400", + "libelleAcheminement": "ST GERVAIS DU PERRON", + "nomCommune": "ST GERVAIS DU PERRON" }, { - "codePostal": "11250", - "codeCommune": "11169", - "libelleAcheminement": "GREFFEIL", - "nomCommune": "GREFFEIL" + "codePostal": "71460", + "codeCommune": "71080", + "libelleAcheminement": "CHAMPAGNY SOUS UXELLES", + "nomCommune": "CHAMPAGNY SOUS UXELLES" }, { - "codePostal": "67390", - "codeCommune": "67360", - "libelleAcheminement": "OHNENHEIM", - "nomCommune": "OHNENHEIM" + "codePostal": "17260", + "codeCommune": "17469", + "libelleAcheminement": "VILLARS EN PONS", + "nomCommune": "VILLARS EN PONS" }, { - "codePostal": "50740", - "codeCommune": "50102", - "libelleAcheminement": "CAROLLES", - "nomCommune": "CAROLLES" + "codePostal": "70240", + "codeCommune": "70537", + "libelleAcheminement": "VELLEMINFROY", + "nomCommune": "VELLEMINFROY" }, { - "codePostal": "41230", - "codeCommune": "41268", - "libelleAcheminement": "VEILLEINS", - "nomCommune": "VEILLEINS" + "codePostal": "60120", + "codeCommune": "60058", + "libelleAcheminement": "BEAUVOIR", + "nomCommune": "BEAUVOIR" }, { - "codePostal": "11380", - "codeCommune": "11180", - "libelleAcheminement": "LABASTIDE ESPARBAIRENQUE", - "nomCommune": "LABASTIDE ESPARBAIRENQUE" + "codePostal": "61220", + "codeCommune": "61402", + "libelleAcheminement": "ST HILAIRE DE BRIOUZE", + "nomCommune": "ST HILAIRE DE BRIOUZE" }, { - "codePostal": "67150", - "codeCommune": "67364", - "libelleAcheminement": "OSTHOUSE", - "nomCommune": "OSTHOUSE" + "codePostal": "71120", + "codeCommune": "71082", + "libelleAcheminement": "CHAMPLECY", + "nomCommune": "CHAMPLECY" }, { - "codePostal": "50620", - "codeCommune": "50106", - "libelleAcheminement": "CAVIGNY", - "nomCommune": "CAVIGNY" + "codePostal": "17330", + "codeCommune": "17474", + "libelleAcheminement": "VILLENEUVE LA COMTESSE", + "nomCommune": "VILLENEUVE LA COMTESSE" }, { - "codePostal": "41000", - "codeCommune": "41276", - "libelleAcheminement": "VILLEBAROU", - "nomCommune": "VILLEBAROU" + "codePostal": "70110", + "codeCommune": "70553", + "libelleAcheminement": "VILLARGENT", + "nomCommune": "VILLARGENT" }, { - "codePostal": "11420", - "codeCommune": "11184", - "libelleAcheminement": "LAFAGE", - "nomCommune": "LAFAGE" + "codePostal": "60320", + "codeCommune": "60068", + "libelleAcheminement": "BETHISY ST PIERRE", + "nomCommune": "BETHISY ST PIERRE" }, { - "codePostal": "67700", - "codeCommune": "67366", - "libelleAcheminement": "OTTERSTHAL", - "nomCommune": "OTTERSTHAL" + "codePostal": "61400", + "codeCommune": "61418", + "libelleAcheminement": "ST MARD DE RENO", + "nomCommune": "ST MARD DE RENO" }, { - "codePostal": "50510", - "codeCommune": "50109", - "libelleAcheminement": "CERENCES", - "nomCommune": "CERENCES" + "codePostal": "71500", + "codeCommune": "71092", + "libelleAcheminement": "LA CHAPELLE NAUDE", + "nomCommune": "LA CHAPELLE NAUDE" }, { - "codePostal": "41330", - "codeCommune": "41281", - "libelleAcheminement": "VILLEFRANCOEUR", - "nomCommune": "VILLEFRANCOEUR" + "codePostal": "17330", + "codeCommune": "17474", + "libelleAcheminement": "VILLENEUVE LA COMTESSE", + "nomCommune": "VILLENEUVE LA COMTESSE" }, { - "codePostal": "11400", - "codeCommune": "11192", - "libelleAcheminement": "LASBORDES", - "nomCommune": "LASBORDES" + "codePostal": "70700", + "codeCommune": "70557", + "libelleAcheminement": "VILLEFRANCON", + "nomCommune": "VILLEFRANCON" }, { - "codePostal": "67290", - "codeCommune": "67371", - "libelleAcheminement": "LA PETITE PIERRE", - "nomCommune": "LA PETITE PIERRE" + "codePostal": "60460", + "codeCommune": "60074", + "libelleAcheminement": "BLAINCOURT LES PRECY", + "nomCommune": "BLAINCOURT LES PRECY" }, { - "codePostal": "50210", - "codeCommune": "50111", - "libelleAcheminement": "CERISY LA SALLE", - "nomCommune": "CERISY LA SALLE" + "codePostal": "61320", + "codeCommune": "61419", + "libelleAcheminement": "STE MARGUERITE DE CARROUGES", + "nomCommune": "STE MARGUERITE DE CARROUGES" }, { - "codePostal": "41350", - "codeCommune": "41295", - "libelleAcheminement": "VINEUIL", - "nomCommune": "VINEUIL" + "codePostal": "71570", + "codeCommune": "71108", + "libelleAcheminement": "CHASSELAS", + "nomCommune": "CHASSELAS" }, { - "codePostal": "11300", - "codeCommune": "11197", - "libelleAcheminement": "LAURAGUEL", - "nomCommune": "LAURAGUEL" + "codePostal": "17500", + "codeCommune": "17476", + "libelleAcheminement": "VILLEXAVIER", + "nomCommune": "VILLEXAVIER" }, { - "codePostal": "67350", - "codeCommune": "67372", - "libelleAcheminement": "VAL DE MODER", - "nomCommune": "VAL DE MODER" + "codePostal": "70240", + "codeCommune": "70569", + "libelleAcheminement": "VILORY", + "nomCommune": "VILORY" }, { - "codePostal": "50370", - "codeCommune": "50112", - "libelleAcheminement": "LA CHAISE BAUDOUIN", - "nomCommune": "LA CHAISE BAUDOUIN" + "codePostal": "60120", + "codeCommune": "60085", + "libelleAcheminement": "BONVILLERS", + "nomCommune": "BONVILLERS" }, { - "codePostal": "42380", - "codeCommune": "42001", - "libelleAcheminement": "ABOEN", - "nomCommune": "ABOEN" + "codePostal": "61250", + "codeCommune": "61433", + "libelleAcheminement": "ST NICOLAS DES BOIS", + "nomCommune": "ST NICOLAS DES BOIS" }, { - "codePostal": "11200", - "codeCommune": "11203", - "libelleAcheminement": "LEZIGNAN CORBIERES", - "nomCommune": "LEZIGNAN CORBIERES" + "codePostal": "71150", + "codeCommune": "71109", + "libelleAcheminement": "CHASSEY LE CAMP", + "nomCommune": "CHASSEY LE CAMP" }, { - "codePostal": "67420", - "codeCommune": "67377", - "libelleAcheminement": "PLAINE", - "nomCommune": "PLAINE" + "codePostal": "17510", + "codeCommune": "17478", + "libelleAcheminement": "VINAX", + "nomCommune": "VINAX" }, { - "codePostal": "50320", - "codeCommune": "50115", - "libelleAcheminement": "LE GRIPPON", - "nomCommune": "LE GRIPPON" + "codePostal": "70500", + "codeCommune": "70576", + "libelleAcheminement": "VOUGECOURT", + "nomCommune": "VOUGECOURT" }, { - "codePostal": "42130", - "codeCommune": "42002", - "libelleAcheminement": "AILLEUX", - "nomCommune": "AILLEUX" + "codePostal": "60620", + "codeCommune": "60092", + "libelleAcheminement": "BOULLARRE", + "nomCommune": "BOULLARRE" }, { - "codePostal": "11300", - "codeCommune": "11214", - "libelleAcheminement": "MALRAS", - "nomCommune": "MALRAS" + "codePostal": "61550", + "codeCommune": "61435", + "libelleAcheminement": "ST NICOLAS DE SOMMAIRE", + "nomCommune": "ST NICOLAS DE SOMMAIRE" }, { - "codePostal": "67420", - "codeCommune": "67377", - "libelleAcheminement": "PLAINE", - "nomCommune": "PLAINE" + "codePostal": "71800", + "codeCommune": "71116", + "libelleAcheminement": "CHATENAY", + "nomCommune": "CHATENAY" }, { - "codePostal": "50530", - "codeCommune": "50117", - "libelleAcheminement": "CHAMPEAUX", - "nomCommune": "CHAMPEAUX" + "codePostal": "17700", + "codeCommune": "17482", + "libelleAcheminement": "VOUHE", + "nomCommune": "VOUHE" }, { - "codePostal": "42600", - "codeCommune": "42012", - "libelleAcheminement": "BARD", - "nomCommune": "BARD" + "codePostal": "71290", + "codeCommune": "71001", + "libelleAcheminement": "L ABERGEMENT DE CUISERY", + "nomCommune": "L ABERGEMENT DE CUISERY" }, { - "codePostal": "11410", - "codeCommune": "11218", - "libelleAcheminement": "MARQUEIN", - "nomCommune": "MARQUEIN" + "codePostal": "60120", + "codeCommune": "60104", + "libelleAcheminement": "BRETEUIL", + "nomCommune": "BRETEUIL" }, { - "codePostal": "67490", - "codeCommune": "67380", - "libelleAcheminement": "PRINTZHEIM", - "nomCommune": "PRINTZHEIM" + "codePostal": "61800", + "codeCommune": "61451", + "libelleAcheminement": "ST QUENTIN LES CHARDONNETS", + "nomCommune": "ST QUENTIN LES CHARDONNETS" }, { - "codePostal": "50800", - "codeCommune": "50121", - "libelleAcheminement": "LA CHAPELLE CECELIN", - "nomCommune": "LA CHAPELLE CECELIN" + "codePostal": "71260", + "codeCommune": "71135", + "libelleAcheminement": "CLESSE", + "nomCommune": "CLESSE" }, { - "codePostal": "42520", - "codeCommune": "42018", - "libelleAcheminement": "BESSEY", - "nomCommune": "BESSEY" + "codePostal": "17840", + "codeCommune": "17486", + "libelleAcheminement": "LA BREE LES BAINS", + "nomCommune": "LA BREE LES BAINS" }, { - "codePostal": "11800", - "codeCommune": "11220", - "libelleAcheminement": "MARSEILLETTE", - "nomCommune": "MARSEILLETTE" + "codePostal": "71350", + "codeCommune": "71003", + "libelleAcheminement": "ALLEREY SUR SAONE", + "nomCommune": "ALLEREY SUR SAONE" }, { - "codePostal": "67290", - "codeCommune": "67381", - "libelleAcheminement": "PUBERG", - "nomCommune": "PUBERG" + "codePostal": "60840", + "codeCommune": "60106", + "libelleAcheminement": "BREUIL LE SEC", + "nomCommune": "BREUIL LE SEC" }, { - "codePostal": "50370", - "codeCommune": "50124", - "libelleAcheminement": "LA CHAPELLE UREE", - "nomCommune": "LA CHAPELLE UREE" + "codePostal": "61350", + "codeCommune": "61452", + "libelleAcheminement": "ST ROCH SUR EGRENNE", + "nomCommune": "ST ROCH SUR EGRENNE" }, { - "codePostal": "42560", - "codeCommune": "42021", - "libelleAcheminement": "BOISSET ST PRIEST", - "nomCommune": "BOISSET ST PRIEST" + "codePostal": "71250", + "codeCommune": "71137", + "libelleAcheminement": "CLUNY", + "nomCommune": "CLUNY" }, { - "codePostal": "11420", - "codeCommune": "11226", - "libelleAcheminement": "MAYREVILLE", - "nomCommune": "MAYREVILLE" + "codePostal": "18410", + "codeCommune": "18011", + "libelleAcheminement": "ARGENT SUR SAULDRE", + "nomCommune": "ARGENT SUR SAULDRE" }, { - "codePostal": "67430", - "codeCommune": "67385", - "libelleAcheminement": "RATZWILLER", - "nomCommune": "RATZWILLER" + "codePostal": "71510", + "codeCommune": "71005", + "libelleAcheminement": "ALUZE", + "nomCommune": "ALUZE" }, { - "codePostal": "50870", - "codeCommune": "50126", - "libelleAcheminement": "CHAVOY", - "nomCommune": "CHAVOY" + "codePostal": "60220", + "codeCommune": "60110", + "libelleAcheminement": "BROQUIERS", + "nomCommune": "BROQUIERS" }, { - "codePostal": "42460", - "codeCommune": "42025", - "libelleAcheminement": "BOYER", - "nomCommune": "BOYER" + "codePostal": "61170", + "codeCommune": "61454", + "libelleAcheminement": "STE SCOLASSE SUR SARTHE", + "nomCommune": "STE SCOLASSE SUR SARTHE" }, { - "codePostal": "11220", - "codeCommune": "11227", - "libelleAcheminement": "MAYRONNES", - "nomCommune": "MAYRONNES" + "codePostal": "71460", + "codeCommune": "71139", + "libelleAcheminement": "COLLONGE EN CHAROLLAIS", + "nomCommune": "COLLONGE EN CHAROLLAIS" }, { - "codePostal": "67140", - "codeCommune": "67387", - "libelleAcheminement": "REICHSFELD", - "nomCommune": "REICHSFELD" + "codePostal": "18600", + "codeCommune": "18017", + "libelleAcheminement": "AUGY SUR AUBOIS", + "nomCommune": "AUGY SUR AUBOIS" }, { - "codePostal": "50120", - "codeCommune": "50129", - "libelleAcheminement": "CHERBOURG EN COTENTIN", - "nomCommune": "CHERBOURG EN COTENTIN" + "codePostal": "71260", + "codeCommune": "71016", + "libelleAcheminement": "AZE", + "nomCommune": "AZE" }, { - "codePostal": "42440", - "codeCommune": "42034", - "libelleAcheminement": "CERVIERES", - "nomCommune": "CERVIERES" + "codePostal": "60120", + "codeCommune": "60111", + "libelleAcheminement": "BROYES", + "nomCommune": "BROYES" }, { - "codePostal": "11140", - "codeCommune": "11229", - "libelleAcheminement": "MAZUBY", - "nomCommune": "MAZUBY" + "codePostal": "61120", + "codeCommune": "61460", + "libelleAcheminement": "SAP EN AUGE", + "nomCommune": "SAP EN AUGE" }, { - "codePostal": "67110", - "codeCommune": "67388", - "libelleAcheminement": "REICHSHOFFEN", - "nomCommune": "REICHSHOFFEN" + "codePostal": "71540", + "codeCommune": "71144", + "libelleAcheminement": "CORDESSE", + "nomCommune": "CORDESSE" }, { - "codePostal": "50470", - "codeCommune": "50129", - "libelleAcheminement": "CHERBOURG EN COTENTIN", - "nomCommune": "CHERBOURG EN COTENTIN" + "codePostal": "18220", + "codeCommune": "18019", + "libelleAcheminement": "AZY", + "nomCommune": "AZY" }, { - "codePostal": "42600", - "codeCommune": "42037", - "libelleAcheminement": "CHALAIN D UZORE", - "nomCommune": "CHALAIN D UZORE" + "codePostal": "71220", + "codeCommune": "71017", + "libelleAcheminement": "BALLORE", + "nomCommune": "BALLORE" }, { - "codePostal": "11330", - "codeCommune": "11250", - "libelleAcheminement": "MONTJOI", - "nomCommune": "MONTJOI" + "codePostal": "60400", + "codeCommune": "60117", + "libelleAcheminement": "BUSSY", + "nomCommune": "BUSSY" }, { - "codePostal": "67110", - "codeCommune": "67388", - "libelleAcheminement": "REICHSHOFFEN", - "nomCommune": "REICHSHOFFEN" + "codePostal": "61600", + "codeCommune": "61463", + "libelleAcheminement": "LES MONTS D ANDAINE", + "nomCommune": "LES MONTS D ANDAINE" }, { - "codePostal": "50330", - "codeCommune": "50135", - "libelleAcheminement": "CLITOURPS", - "nomCommune": "CLITOURPS" + "codePostal": "71490", + "codeCommune": "71151", + "libelleAcheminement": "CREOT", + "nomCommune": "CREOT" }, { - "codePostal": "42330", - "codeCommune": "42043", - "libelleAcheminement": "CHAMBOEUF", - "nomCommune": "CHAMBOEUF" + "codePostal": "18800", + "codeCommune": "18023", + "libelleAcheminement": "BAUGY", + "nomCommune": "BAUGY" }, { - "codePostal": "11220", - "codeCommune": "11251", - "libelleAcheminement": "VAL DE DAGNE", - "nomCommune": "VAL DE DAGNE" + "codePostal": "71800", + "codeCommune": "71022", + "libelleAcheminement": "BAUDEMONT", + "nomCommune": "BAUDEMONT" }, { - "codePostal": "67390", - "codeCommune": "67398", - "libelleAcheminement": "RICHTOLSHEIM", - "nomCommune": "RICHTOLSHEIM" + "codePostal": "60400", + "codeCommune": "60118", + "libelleAcheminement": "CAISNES", + "nomCommune": "CAISNES" }, { - "codePostal": "50420", - "codeCommune": "50139", - "libelleAcheminement": "CONDE SUR VIRE", - "nomCommune": "CONDE SUR VIRE" + "codePostal": "61250", + "codeCommune": "61467", + "libelleAcheminement": "SEMALLE", + "nomCommune": "SEMALLE" }, { - "codePostal": "42440", - "codeCommune": "42045", - "libelleAcheminement": "LA CHAMBONIE", - "nomCommune": "LA CHAMBONIE" + "codePostal": "71290", + "codeCommune": "71158", + "libelleAcheminement": "CUISERY", + "nomCommune": "CUISERY" }, { - "codePostal": "11290", - "codeCommune": "11254", - "libelleAcheminement": "MONTREAL", - "nomCommune": "MONTREAL" + "codePostal": "18000", + "codeCommune": "18033", + "libelleAcheminement": "BOURGES", + "nomCommune": "BOURGES" }, { - "codePostal": "67260", - "codeCommune": "67401", - "libelleAcheminement": "RIMSDORF", - "nomCommune": "RIMSDORF" + "codePostal": "71110", + "codeCommune": "71024", + "libelleAcheminement": "BAUGY", + "nomCommune": "BAUGY" }, { - "codePostal": "50330", - "codeCommune": "50142", - "libelleAcheminement": "VICQ SUR MER", - "nomCommune": "VICQ SUR MER" + "codePostal": "60480", + "codeCommune": "60123", + "libelleAcheminement": "CAMPREMY", + "nomCommune": "CAMPREMY" }, { - "codePostal": "42190", - "codeCommune": "42048", - "libelleAcheminement": "CHANDON", - "nomCommune": "CHANDON" + "codePostal": "61160", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "11100", - "codeCommune": "11255", - "libelleAcheminement": "MONTREDON DES CORBIERES", - "nomCommune": "MONTREDON DES CORBIERES" + "codePostal": "71460", + "codeCommune": "71159", + "libelleAcheminement": "CULLES LES ROCHES", + "nomCommune": "CULLES LES ROCHES" }, { - "codePostal": "67310", - "codeCommune": "67408", - "libelleAcheminement": "ROMANSWILLER", - "nomCommune": "ROMANSWILLER" + "codePostal": "18200", + "codeCommune": "18034", + "libelleAcheminement": "BOUZAIS", + "nomCommune": "BOUZAIS" }, { - "codePostal": "50680", - "codeCommune": "50148", - "libelleAcheminement": "COUVAINS", - "nomCommune": "COUVAINS" + "codePostal": "71240", + "codeCommune": "71026", + "libelleAcheminement": "BEAUMONT SUR GROSNE", + "nomCommune": "BEAUMONT SUR GROSNE" }, { - "codePostal": "42380", - "codeCommune": "42050", - "libelleAcheminement": "LA CHAPELLE EN LAFAYE", - "nomCommune": "LA CHAPELLE EN LAFAYE" + "codePostal": "60840", + "codeCommune": "60130", + "libelleAcheminement": "CATENOY", + "nomCommune": "CATENOY" }, { - "codePostal": "11330", - "codeCommune": "11260", - "libelleAcheminement": "MOUTHOUMET", - "nomCommune": "MOUTHOUMET" + "codePostal": "61200", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "67700", - "codeCommune": "67437", - "libelleAcheminement": "SAVERNE", - "nomCommune": "SAVERNE" + "codePostal": "71150", + "codeCommune": "71174", + "libelleAcheminement": "DEZIZE LES MARANGES", + "nomCommune": "DEZIZE LES MARANGES" }, { - "codePostal": "50620", - "codeCommune": "50161", - "libelleAcheminement": "LE DEZERT", - "nomCommune": "LE DEZERT" + "codePostal": "18120", + "codeCommune": "18044", + "libelleAcheminement": "CERBOIS", + "nomCommune": "CERBOIS" }, { - "codePostal": "42410", - "codeCommune": "42051", - "libelleAcheminement": "LA CHAPELLE VILLARS", - "nomCommune": "LA CHAPELLE VILLARS" + "codePostal": "71250", + "codeCommune": "71030", + "libelleAcheminement": "BERGESSERIN", + "nomCommune": "BERGESSERIN" }, { - "codePostal": "11100", - "codeCommune": "11262", - "libelleAcheminement": "NARBONNE", - "nomCommune": "NARBONNE" + "codePostal": "60360", + "codeCommune": "60131", + "libelleAcheminement": "CATHEUX", + "nomCommune": "CATHEUX" }, { - "codePostal": "67350", - "codeCommune": "67441", - "libelleAcheminement": "SCHALKENDORF", - "nomCommune": "SCHALKENDORF" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "50110", - "codeCommune": "50162", - "libelleAcheminement": "DIGOSVILLE", - "nomCommune": "DIGOSVILLE" + "codePostal": "71480", + "codeCommune": "71177", + "libelleAcheminement": "DOMMARTIN LES CUISEAUX", + "nomCommune": "DOMMARTIN LES CUISEAUX" }, { - "codePostal": "42140", - "codeCommune": "42059", - "libelleAcheminement": "CHAZELLES SUR LYON", - "nomCommune": "CHAZELLES SUR LYON" + "codePostal": "18210", + "codeCommune": "18052", + "libelleAcheminement": "CHARENTON DU CHER", + "nomCommune": "CHARENTON DU CHER" }, { - "codePostal": "11200", - "codeCommune": "11267", - "libelleAcheminement": "ORNAISONS", - "nomCommune": "ORNAISONS" + "codePostal": "71390", + "codeCommune": "71034", + "libelleAcheminement": "BISSEY SOUS CRUCHAUD", + "nomCommune": "BISSEY SOUS CRUCHAUD" }, { - "codePostal": "67130", - "codeCommune": "67448", - "libelleAcheminement": "SCHIRMECK", - "nomCommune": "SCHIRMECK" + "codePostal": "60350", + "codeCommune": "60145", + "libelleAcheminement": "CHELLES", + "nomCommune": "CHELLES" }, { - "codePostal": "50530", - "codeCommune": "50167", - "libelleAcheminement": "DRAGEY RONTHON", - "nomCommune": "DRAGEY RONTHON" + "codePostal": "61800", + "codeCommune": "61486", + "libelleAcheminement": "TINCHEBRAY BOCAGE", + "nomCommune": "TINCHEBRAY BOCAGE" }, { - "codePostal": "42110", - "codeCommune": "42066", - "libelleAcheminement": "CLEPPE", - "nomCommune": "CLEPPE" + "codePostal": "71520", + "codeCommune": "71178", + "libelleAcheminement": "DOMPIERRE LES ORMES", + "nomCommune": "DOMPIERRE LES ORMES" }, { - "codePostal": "11410", - "codeCommune": "11275", - "libelleAcheminement": "PAYRA SUR L HERS", - "nomCommune": "PAYRA SUR L HERS" + "codePostal": "18800", + "codeCommune": "18056", + "libelleAcheminement": "CHASSY", + "nomCommune": "CHASSY" }, { - "codePostal": "67160", - "codeCommune": "67451", - "libelleAcheminement": "SCHLEITHAL", - "nomCommune": "SCHLEITHAL" + "codePostal": "71450", + "codeCommune": "71040", + "libelleAcheminement": "BLANZY", + "nomCommune": "BLANZY" }, { - "codePostal": "50310", - "codeCommune": "50172", - "libelleAcheminement": "EMONDEVILLE", - "nomCommune": "EMONDEVILLE" + "codePostal": "60440", + "codeCommune": "60148", + "libelleAcheminement": "CHEVREVILLE", + "nomCommune": "CHEVREVILLE" }, { - "codePostal": "42120", - "codeCommune": "42071", - "libelleAcheminement": "LE COTEAU", - "nomCommune": "LE COTEAU" + "codePostal": "61800", + "codeCommune": "61486", + "libelleAcheminement": "TINCHEBRAY BOCAGE", + "nomCommune": "TINCHEBRAY BOCAGE" }, { - "codePostal": "11420", - "codeCommune": "11278", - "libelleAcheminement": "PECH LUNA", - "nomCommune": "PECH LUNA" + "codePostal": "71420", + "codeCommune": "71179", + "libelleAcheminement": "DOMPIERRE SOUS SANVIGNES", + "nomCommune": "DOMPIERRE SOUS SANVIGNES" }, { - "codePostal": "67370", - "codeCommune": "67452", - "libelleAcheminement": "SCHNERSHEIM", - "nomCommune": "SCHNERSHEIM" + "codePostal": "18200", + "codeCommune": "18069", + "libelleAcheminement": "COLOMBIERS", + "nomCommune": "COLOMBIERS" }, { - "codePostal": "50320", - "codeCommune": "50188", - "libelleAcheminement": "FOLLIGNY", - "nomCommune": "FOLLIGNY" + "codePostal": "71330", + "codeCommune": "71044", + "libelleAcheminement": "BOSJEAN", + "nomCommune": "BOSJEAN" }, { - "codePostal": "42310", - "codeCommune": "42078", - "libelleAcheminement": "LE CROZET", - "nomCommune": "LE CROZET" + "codePostal": "60350", + "codeCommune": "60188", + "libelleAcheminement": "CUISE LA MOTTE", + "nomCommune": "CUISE LA MOTTE" }, { - "codePostal": "11150", - "codeCommune": "11281", - "libelleAcheminement": "PEXIORA", - "nomCommune": "PEXIORA" + "codePostal": "61550", + "codeCommune": "61488", + "libelleAcheminement": "TOUQUETTES", + "nomCommune": "TOUQUETTES" }, { - "codePostal": "67250", - "codeCommune": "67474", - "libelleAcheminement": "SOULTZ SOUS FORETS", - "nomCommune": "SOULTZ SOUS FORETS" + "codePostal": "71490", + "codeCommune": "71183", + "libelleAcheminement": "DRACY LES COUCHES", + "nomCommune": "DRACY LES COUCHES" }, { - "codePostal": "50320", - "codeCommune": "50188", - "libelleAcheminement": "FOLLIGNY", - "nomCommune": "FOLLIGNY" + "codePostal": "18190", + "codeCommune": "18073", + "libelleAcheminement": "CORQUOY", + "nomCommune": "CORQUOY" }, { - "codePostal": "42330", - "codeCommune": "42081", - "libelleAcheminement": "CUZIEU", - "nomCommune": "CUZIEU" + "codePostal": "71500", + "codeCommune": "71056", + "libelleAcheminement": "BRANGES", + "nomCommune": "BRANGES" }, { - "codePostal": "11400", - "codeCommune": "11284", - "libelleAcheminement": "PEYRENS", - "nomCommune": "PEYRENS" + "codePostal": "60400", + "codeCommune": "60189", + "libelleAcheminement": "CUTS", + "nomCommune": "CUTS" }, { - "codePostal": "67340", - "codeCommune": "67475", - "libelleAcheminement": "SPARSBACH", - "nomCommune": "SPARSBACH" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "50450", - "codeCommune": "50197", - "libelleAcheminement": "GAVRAY SUR SIENNE", - "nomCommune": "GAVRAY SUR SIENNE" + "codePostal": "71380", + "codeCommune": "71189", + "libelleAcheminement": "EPERVANS", + "nomCommune": "EPERVANS" }, { - "codePostal": "42130", - "codeCommune": "42084", - "libelleAcheminement": "DEBATS RIVIERE D ORPRA", - "nomCommune": "DEBATS RIVIERE D ORPRA" + "codePostal": "18210", + "codeCommune": "18076", + "libelleAcheminement": "COUST", + "nomCommune": "COUST" }, { - "codePostal": "11170", - "codeCommune": "11288", - "libelleAcheminement": "PEZENS", - "nomCommune": "PEZENS" + "codePostal": "71500", + "codeCommune": "71064", + "libelleAcheminement": "BRUAILLES", + "nomCommune": "BRUAILLES" }, { - "codePostal": "67770", - "codeCommune": "67476", - "libelleAcheminement": "STATTMATTEN", - "nomCommune": "STATTMATTEN" + "codePostal": "60310", + "codeCommune": "60192", + "libelleAcheminement": "CUY", + "nomCommune": "CUY" }, { - "codePostal": "50620", - "codeCommune": "50216", - "libelleAcheminement": "GRAIGNES MESNIL ANGOT", - "nomCommune": "GRAIGNES MESNIL ANGOT" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "42740", - "codeCommune": "42085", - "libelleAcheminement": "DOIZIEUX", - "nomCommune": "DOIZIEUX" + "codePostal": "71510", + "codeCommune": "71191", + "libelleAcheminement": "ESSERTENNE", + "nomCommune": "ESSERTENNE" }, { - "codePostal": "11490", - "codeCommune": "11295", - "libelleAcheminement": "PORTEL DES CORBIERES", - "nomCommune": "PORTEL DES CORBIERES" + "codePostal": "18140", + "codeCommune": "18077", + "libelleAcheminement": "COUY", + "nomCommune": "COUY" }, { - "codePostal": "67220", - "codeCommune": "67477", - "libelleAcheminement": "STEIGE", - "nomCommune": "STEIGE" + "codePostal": "71260", + "codeCommune": "71066", + "libelleAcheminement": "BURGY", + "nomCommune": "BURGY" }, { - "codePostal": "50620", - "codeCommune": "50216", - "libelleAcheminement": "GRAIGNES MESNIL ANGOT", - "nomCommune": "GRAIGNES MESNIL ANGOT" + "codePostal": "60210", + "codeCommune": "60193", + "libelleAcheminement": "DAMERAUCOURT", + "nomCommune": "DAMERAUCOURT" }, { - "codePostal": "42600", - "codeCommune": "42087", - "libelleAcheminement": "ECOTAY L OLME", - "nomCommune": "ECOTAY L OLME" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "11380", - "codeCommune": "11297", - "libelleAcheminement": "PRADELLES CABARDES", - "nomCommune": "PRADELLES CABARDES" + "codePostal": "71240", + "codeCommune": "71193", + "libelleAcheminement": "ETRIGNY", + "nomCommune": "ETRIGNY" }, { - "codePostal": "67290", - "codeCommune": "67483", - "libelleAcheminement": "STRUTH", - "nomCommune": "STRUTH" + "codePostal": "18190", + "codeCommune": "18078", + "libelleAcheminement": "CREZANCAY SUR CHER", + "nomCommune": "CREZANCAY SUR CHER" }, { - "codePostal": "68800", - "codeCommune": "68334", - "libelleAcheminement": "THANN", - "nomCommune": "THANN" + "codePostal": "71460", + "codeCommune": "71067", + "libelleAcheminement": "BURNAND", + "nomCommune": "BURNAND" }, { - "codePostal": "42600", - "codeCommune": "42089", - "libelleAcheminement": "ESSERTINES EN CHATELNEUF", - "nomCommune": "ESSERTINES EN CHATELNEUF" + "codePostal": "60310", + "codeCommune": "60204", + "libelleAcheminement": "ECUVILLY", + "nomCommune": "ECUVILLY" }, { - "codePostal": "11140", - "codeCommune": "11302", - "libelleAcheminement": "PUILAURENS", - "nomCommune": "PUILAURENS" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "67370", - "codeCommune": "67485", - "libelleAcheminement": "STUTZHEIM OFFENHEIM", - "nomCommune": "STUTZHEIM OFFENHEIM" + "codePostal": "71580", + "codeCommune": "71198", + "libelleAcheminement": "FLACEY EN BRESSE", + "nomCommune": "FLACEY EN BRESSE" }, { - "codePostal": "68590", - "codeCommune": "68335", - "libelleAcheminement": "THANNENKIRCH", - "nomCommune": "THANNENKIRCH" + "codePostal": "18200", + "codeCommune": "18086", + "libelleAcheminement": "DREVANT", + "nomCommune": "DREVANT" }, { - "codePostal": "42380", - "codeCommune": "42091", - "libelleAcheminement": "ESTIVAREILLES", - "nomCommune": "ESTIVAREILLES" + "codePostal": "71110", + "codeCommune": "71071", + "libelleAcheminement": "CERON", + "nomCommune": "CERON" }, { - "codePostal": "11500", - "codeCommune": "11304", - "libelleAcheminement": "QUILLAN", - "nomCommune": "QUILLAN" + "codePostal": "60590", + "codeCommune": "60208", + "libelleAcheminement": "ENENCOURT LEAGE", + "nomCommune": "ENENCOURT LEAGE" }, { - "codePostal": "67250", - "codeCommune": "67487", - "libelleAcheminement": "SURBOURG", - "nomCommune": "SURBOURG" + "codePostal": "61160", + "codeCommune": "61494", + "libelleAcheminement": "TRUN", + "nomCommune": "TRUN" }, { - "codePostal": "68210", - "codeCommune": "68337", - "libelleAcheminement": "TRAUBACH LE HAUT", - "nomCommune": "TRAUBACH LE HAUT" + "codePostal": "71390", + "codeCommune": "71201", + "libelleAcheminement": "FLEY", + "nomCommune": "FLEY" }, { - "codePostal": "42470", - "codeCommune": "42098", - "libelleAcheminement": "FOURNEAUX", - "nomCommune": "FOURNEAUX" + "codePostal": "18150", + "codeCommune": "18101", + "libelleAcheminement": "GERMIGNY L EXEMPT", + "nomCommune": "GERMIGNY L EXEMPT" }, { - "codePostal": "11500", - "codeCommune": "11306", - "libelleAcheminement": "QUIRBAJOU", - "nomCommune": "QUIRBAJOU" + "codePostal": "71570", + "codeCommune": "71074", + "libelleAcheminement": "CHAINTRE", + "nomCommune": "CHAINTRE" }, { - "codePostal": "67440", - "codeCommune": "67489", - "libelleAcheminement": "THAL MARMOUTIER", - "nomCommune": "THAL MARMOUTIER" + "codePostal": "60240", + "codeCommune": "60209", + "libelleAcheminement": "LA CORNE EN VEXIN", + "nomCommune": "LA CORNE EN VEXIN" }, { - "codePostal": "68700", - "codeCommune": "68342", - "libelleAcheminement": "UFFHOLTZ", - "nomCommune": "UFFHOLTZ" + "codePostal": "61170", + "codeCommune": "61499", + "libelleAcheminement": "LES VENTES DE BOURSE", + "nomCommune": "LES VENTES DE BOURSE" }, { - "codePostal": "42560", - "codeCommune": "42107", - "libelleAcheminement": "GUMIERES", - "nomCommune": "GUMIERES" + "codePostal": "71580", + "codeCommune": "71209", + "libelleAcheminement": "FRONTENAUD", + "nomCommune": "FRONTENAUD" }, { - "codePostal": "11200", - "codeCommune": "11307", - "libelleAcheminement": "RAISSAC D AUDE", - "nomCommune": "RAISSAC D AUDE" + "codePostal": "18800", + "codeCommune": "18105", + "libelleAcheminement": "GRON", + "nomCommune": "GRON" }, { - "codePostal": "67220", - "codeCommune": "67493", - "libelleAcheminement": "TRIEMBACH AU VAL", - "nomCommune": "TRIEMBACH AU VAL" + "codePostal": "71570", + "codeCommune": "71090", + "libelleAcheminement": "LA CHAPELLE DE GUINCHAY", + "nomCommune": "LA CHAPELLE DE GUINCHAY" }, { - "codePostal": "68600", - "codeCommune": "68351", - "libelleAcheminement": "VOGELGRUN", - "nomCommune": "VOGELGRUN" + "codePostal": "60380", + "codeCommune": "60214", + "libelleAcheminement": "ERNEMONT BOUTAVENT", + "nomCommune": "ERNEMONT BOUTAVENT" }, { - "codePostal": "42130", - "codeCommune": "42109", - "libelleAcheminement": "L HOPITAL SOUS ROCHEFORT", - "nomCommune": "L HOPITAL SOUS ROCHEFORT" + "codePostal": "61160", + "codeCommune": "61505", + "libelleAcheminement": "VILLEDIEU LES BAILLEUL", + "nomCommune": "VILLEDIEU LES BAILLEUL" }, { - "codePostal": "11220", - "codeCommune": "11311", - "libelleAcheminement": "RIBAUTE", - "nomCommune": "RIBAUTE" + "codePostal": "71290", + "codeCommune": "71213", + "libelleAcheminement": "LA GENETE", + "nomCommune": "LA GENETE" }, { - "codePostal": "67350", - "codeCommune": "67497", - "libelleAcheminement": "UHLWILLER", - "nomCommune": "UHLWILLER" + "codePostal": "18140", + "codeCommune": "18110", + "libelleAcheminement": "HERRY", + "nomCommune": "HERRY" }, { - "codePostal": "68130", - "codeCommune": "68356", - "libelleAcheminement": "WALHEIM", - "nomCommune": "WALHEIM" + "codePostal": "71470", + "codeCommune": "71097", + "libelleAcheminement": "LA CHAPELLE THECLE", + "nomCommune": "LA CHAPELLE THECLE" }, { - "codePostal": "42152", - "codeCommune": "42110", - "libelleAcheminement": "L HORME", - "nomCommune": "L HORME" + "codePostal": "60310", + "codeCommune": "60227", + "libelleAcheminement": "EVRICOURT", + "nomCommune": "EVRICOURT" }, { - "codePostal": "11140", - "codeCommune": "11317", - "libelleAcheminement": "RODOME", - "nomCommune": "RODOME" + "codePostal": "61300", + "codeCommune": "61510", + "libelleAcheminement": "VITRAI SOUS LAIGLE", + "nomCommune": "VITRAI SOUS LAIGLE" }, { - "codePostal": "67280", - "codeCommune": "67500", - "libelleAcheminement": "URMATT", - "nomCommune": "URMATT" + "codePostal": "71460", + "codeCommune": "71216", + "libelleAcheminement": "GERMAGNY", + "nomCommune": "GERMAGNY" }, { - "codePostal": "68600", - "codeCommune": "68360", - "libelleAcheminement": "WECKOLSHEIM", - "nomCommune": "WECKOLSHEIM" + "codePostal": "18350", + "codeCommune": "18131", + "libelleAcheminement": "LUGNY BOURBONNAIS", + "nomCommune": "LUGNY BOURBONNAIS" }, { - "codePostal": "42460", - "codeCommune": "42112", - "libelleAcheminement": "JARNOSSE", - "nomCommune": "JARNOSSE" + "codePostal": "71270", + "codeCommune": "71101", + "libelleAcheminement": "CHARETTE VARENNES", + "nomCommune": "CHARETTE VARENNES" }, { - "codePostal": "11190", - "codeCommune": "11323", - "libelleAcheminement": "ROQUETAILLADE ET CONILHAC", - "nomCommune": "ROQUETAILLADE ET CONILHAC" + "codePostal": "60420", + "codeCommune": "60232", + "libelleAcheminement": "FERRIERES", + "nomCommune": "FERRIERES" }, { - "codePostal": "67330", - "codeCommune": "67503", - "libelleAcheminement": "UTTWILLER", - "nomCommune": "UTTWILLER" + "codePostal": "62320", + "codeCommune": "62003", + "libelleAcheminement": "ACHEVILLE", + "nomCommune": "ACHEVILLE" }, { - "codePostal": "68220", - "codeCommune": "68362", - "libelleAcheminement": "WENTZWILLER", - "nomCommune": "WENTZWILLER" + "codePostal": "71800", + "codeCommune": "71218", + "libelleAcheminement": "GIBLES", + "nomCommune": "GIBLES" }, { - "codePostal": "42130", - "codeCommune": "42119", - "libelleAcheminement": "LEIGNEUX", - "nomCommune": "LEIGNEUX" + "codePostal": "18400", + "codeCommune": "18133", + "libelleAcheminement": "LUNERY", + "nomCommune": "LUNERY" }, { - "codePostal": "11270", - "codeCommune": "11331", - "libelleAcheminement": "ST AMANS", - "nomCommune": "ST AMANS" + "codePostal": "71100", + "codeCommune": "71102", + "libelleAcheminement": "LA CHARMEE", + "nomCommune": "LA CHARMEE" }, { - "codePostal": "67210", - "codeCommune": "67504", - "libelleAcheminement": "VALFF", - "nomCommune": "VALFF" + "codePostal": "60590", + "codeCommune": "60235", + "libelleAcheminement": "FLAVACOURT", + "nomCommune": "FLAVACOURT" }, { - "codePostal": "68250", - "codeCommune": "68364", - "libelleAcheminement": "WESTHALTEN", - "nomCommune": "WESTHALTEN" + "codePostal": "62144", + "codeCommune": "62007", + "libelleAcheminement": "ACQ", + "nomCommune": "ACQ" }, { - "codePostal": "42520", - "codeCommune": "42124", - "libelleAcheminement": "LUPE", - "nomCommune": "LUPE" + "codePostal": "71160", + "codeCommune": "71220", + "libelleAcheminement": "GILLY SUR LOIRE", + "nomCommune": "GILLY SUR LOIRE" }, { - "codePostal": "11230", - "codeCommune": "11333", - "libelleAcheminement": "ST BENOIT", - "nomCommune": "ST BENOIT" + "codePostal": "18170", + "codeCommune": "18136", + "libelleAcheminement": "MARCAIS", + "nomCommune": "MARCAIS" }, { - "codePostal": "67670", - "codeCommune": "67516", - "libelleAcheminement": "WALTENHEIM SUR ZORN", - "nomCommune": "WALTENHEIM SUR ZORN" + "codePostal": "71350", + "codeCommune": "71104", + "libelleAcheminement": "CHARNAY LES CHALON", + "nomCommune": "CHARNAY LES CHALON" }, { - "codePostal": "68320", - "codeCommune": "68366", - "libelleAcheminement": "WICKERSCHWIHR", - "nomCommune": "WICKERSCHWIHR" + "codePostal": "60120", + "codeCommune": "60237", + "libelleAcheminement": "FLECHY", + "nomCommune": "FLECHY" }, { - "codePostal": "42520", - "codeCommune": "42129", - "libelleAcheminement": "MACLAS", - "nomCommune": "MACLAS" + "codePostal": "62120", + "codeCommune": "62014", + "libelleAcheminement": "AIRE SUR LA LYS", + "nomCommune": "AIRE SUR LA LYS" }, { - "codePostal": "11410", - "codeCommune": "11334", - "libelleAcheminement": "STE CAMELLE", - "nomCommune": "STE CAMELLE" + "codePostal": "71300", + "codeCommune": "71222", + "libelleAcheminement": "GOURDON", + "nomCommune": "GOURDON" }, { - "codePostal": "67340", - "codeCommune": "67524", - "libelleAcheminement": "WEITERSWILLER", - "nomCommune": "WEITERSWILLER" + "codePostal": "18120", + "codeCommune": "18140", + "libelleAcheminement": "MASSAY", + "nomCommune": "MASSAY" }, { - "codePostal": "68480", - "codeCommune": "68373", - "libelleAcheminement": "WINKEL", - "nomCommune": "WINKEL" + "codePostal": "71850", + "codeCommune": "71105", + "libelleAcheminement": "CHARNAY LES MACON", + "nomCommune": "CHARNAY LES MACON" }, { - "codePostal": "42520", - "codeCommune": "42132", - "libelleAcheminement": "MALLEVAL", - "nomCommune": "MALLEVAL" + "codePostal": "60300", + "codeCommune": "60241", + "libelleAcheminement": "FONTAINE CHAALIS", + "nomCommune": "FONTAINE CHAALIS" }, { - "codePostal": "11270", - "codeCommune": "11343", - "libelleAcheminement": "ST GAUDERIC", - "nomCommune": "ST GAUDERIC" + "codePostal": "62650", + "codeCommune": "62021", + "libelleAcheminement": "ALETTE", + "nomCommune": "ALETTE" }, { - "codePostal": "67310", - "codeCommune": "67525", - "libelleAcheminement": "WESTHOFFEN", - "nomCommune": "WESTHOFFEN" + "codePostal": "71600", + "codeCommune": "71233", + "libelleAcheminement": "L HOPITAL LE MERCIER", + "nomCommune": "L HOPITAL LE MERCIER" }, { - "codePostal": "68130", - "codeCommune": "68377", - "libelleAcheminement": "WITTERSDORF", - "nomCommune": "WITTERSDORF" + "codePostal": "18570", + "codeCommune": "18157", + "libelleAcheminement": "MORTHOMIERS", + "nomCommune": "MORTHOMIERS" }, { - "codePostal": "42140", - "codeCommune": "42138", - "libelleAcheminement": "MARINGES", - "nomCommune": "MARINGES" + "codePostal": "71510", + "codeCommune": "71107", + "libelleAcheminement": "CHARRECEY", + "nomCommune": "CHARRECEY" }, { - "codePostal": "11170", - "codeCommune": "11357", - "libelleAcheminement": "ST MARTIN LE VIEIL", - "nomCommune": "ST MARTIN LE VIEIL" + "codePostal": "60240", + "codeCommune": "60256", + "libelleAcheminement": "MONTCHEVREUIL", + "nomCommune": "MONTCHEVREUIL" }, { - "codePostal": "67440", - "codeCommune": "67527", - "libelleAcheminement": "WESTHOUSE MARMOUTIER", - "nomCommune": "WESTHOUSE MARMOUTIER" + "codePostal": "62850", + "codeCommune": "62024", + "libelleAcheminement": "ALQUINES", + "nomCommune": "ALQUINES" }, { - "codePostal": "69480", - "codeCommune": "69009", - "libelleAcheminement": "ANSE", - "nomCommune": "ANSE" + "codePostal": "71960", + "codeCommune": "71236", + "libelleAcheminement": "IGE", + "nomCommune": "IGE" }, { - "codePostal": "42110", - "codeCommune": "42143", - "libelleAcheminement": "MIZERIEUX", - "nomCommune": "MIZERIEUX" + "codePostal": "18250", + "codeCommune": "18162", + "libelleAcheminement": "NEUILLY EN SANCERRE", + "nomCommune": "NEUILLY EN SANCERRE" }, { - "codePostal": "11410", - "codeCommune": "11359", - "libelleAcheminement": "ST MICHEL DE LANES", - "nomCommune": "ST MICHEL DE LANES" + "codePostal": "71880", + "codeCommune": "71118", + "libelleAcheminement": "CHATENOY LE ROYAL", + "nomCommune": "CHATENOY LE ROYAL" }, { - "codePostal": "67290", - "codeCommune": "67538", - "libelleAcheminement": "WINGEN SUR MODER", - "nomCommune": "WINGEN SUR MODER" + "codePostal": "60640", + "codeCommune": "60263", + "libelleAcheminement": "FRETOY LE CHATEAU", + "nomCommune": "FRETOY LE CHATEAU" }, { - "codePostal": "69430", - "codeCommune": "69012", - "libelleAcheminement": "LES ARDILLATS", - "nomCommune": "LES ARDILLATS" + "codePostal": "62610", + "codeCommune": "62038", + "libelleAcheminement": "ARDRES", + "nomCommune": "ARDRES" }, { - "codePostal": "42370", - "codeCommune": "42158", - "libelleAcheminement": "LES NOES", - "nomCommune": "LES NOES" + "codePostal": "71480", + "codeCommune": "71243", + "libelleAcheminement": "JOUDES", + "nomCommune": "JOUDES" }, { - "codePostal": "11120", - "codeCommune": "11360", - "libelleAcheminement": "ST NAZAIRE D AUDE", - "nomCommune": "ST NAZAIRE D AUDE" + "codePostal": "18600", + "codeCommune": "18164", + "libelleAcheminement": "NEUVY LE BARROIS", + "nomCommune": "NEUVY LE BARROIS" }, { - "codePostal": "67202", - "codeCommune": "67551", - "libelleAcheminement": "WOLFISHEIM", - "nomCommune": "WOLFISHEIM" + "codePostal": "71150", + "codeCommune": "71122", + "libelleAcheminement": "CHEILLY LES MARANGES", + "nomCommune": "CHEILLY LES MARANGES" }, { - "codePostal": "69790", - "codeCommune": "69016", - "libelleAcheminement": "AZOLETTE", - "nomCommune": "AZOLETTE" + "codePostal": "60190", + "codeCommune": "60285", + "libelleAcheminement": "GRANDVILLERS AUX BOIS", + "nomCommune": "GRANDVILLERS AUX BOIS" }, { - "codePostal": "42990", - "codeCommune": "42164", - "libelleAcheminement": "PALOGNEUX", - "nomCommune": "PALOGNEUX" + "codePostal": "62890", + "codeCommune": "62055", + "libelleAcheminement": "AUDREHEM", + "nomCommune": "AUDREHEM" }, { - "codePostal": "11600", - "codeCommune": "11368", - "libelleAcheminement": "SALLELES CABARDES", - "nomCommune": "SALLELES CABARDES" + "codePostal": "71440", + "codeCommune": "71246", + "libelleAcheminement": "JUIF", + "nomCommune": "JUIF" }, { - "codePostal": "67260", - "codeCommune": "67552", - "libelleAcheminement": "WOLFSKIRCHEN", - "nomCommune": "WOLFSKIRCHEN" + "codePostal": "18310", + "codeCommune": "18167", + "libelleAcheminement": "NOHANT EN GRACAY", + "nomCommune": "NOHANT EN GRACAY" }, { - "codePostal": "69690", - "codeCommune": "69021", - "libelleAcheminement": "BESSENAY", - "nomCommune": "BESSENAY" + "codePostal": "71250", + "codeCommune": "71125", + "libelleAcheminement": "CHERIZET", + "nomCommune": "CHERIZET" }, { - "codePostal": "42360", - "codeCommune": "42165", - "libelleAcheminement": "PANISSIERES", - "nomCommune": "PANISSIERES" + "codePostal": "60490", + "codeCommune": "60294", + "libelleAcheminement": "HAINVILLERS", + "nomCommune": "HAINVILLERS" }, { - "codePostal": "11110", - "codeCommune": "11370", - "libelleAcheminement": "SALLES D AUDE", - "nomCommune": "SALLES D AUDE" + "codePostal": "62164", + "codeCommune": "62056", + "libelleAcheminement": "AUDRESSELLES", + "nomCommune": "AUDRESSELLES" }, { - "codePostal": "67120", - "codeCommune": "67554", - "libelleAcheminement": "WOLXHEIM", - "nomCommune": "WOLXHEIM" + "codePostal": "71390", + "codeCommune": "71247", + "libelleAcheminement": "JULLY LES BUXY", + "nomCommune": "JULLY LES BUXY" }, { - "codePostal": "69690", - "codeCommune": "69021", - "libelleAcheminement": "BESSENAY", - "nomCommune": "BESSENAY" + "codePostal": "18110", + "codeCommune": "18189", + "libelleAcheminement": "QUANTILLY", + "nomCommune": "QUANTILLY" }, { - "codePostal": "42590", - "codeCommune": "42171", - "libelleAcheminement": "PINAY", - "nomCommune": "PINAY" + "codePostal": "71540", + "codeCommune": "71129", + "libelleAcheminement": "CHISSEY EN MORVAN", + "nomCommune": "CHISSEY EN MORVAN" }, { - "codePostal": "11140", - "codeCommune": "11373", - "libelleAcheminement": "SALVEZINES", - "nomCommune": "SALVEZINES" + "codePostal": "60112", + "codeCommune": "60301", + "libelleAcheminement": "HAUCOURT", + "nomCommune": "HAUCOURT" }, { - "codePostal": "67310", - "codeCommune": "67555", - "libelleAcheminement": "ZEHNACKER", - "nomCommune": "ZEHNACKER" + "codePostal": "62390", + "codeCommune": "62060", + "libelleAcheminement": "AUXI LE CHATEAU", + "nomCommune": "AUXI LE CHATEAU" }, { - "codePostal": "69460", - "codeCommune": "69023", - "libelleAcheminement": "BLACE", - "nomCommune": "BLACE" + "codePostal": "71700", + "codeCommune": "71248", + "libelleAcheminement": "LACROST", + "nomCommune": "LACROST" }, { - "codePostal": "42260", - "codeCommune": "42173", - "libelleAcheminement": "POMMIERS EN FOREZ", - "nomCommune": "POMMIERS EN FOREZ" + "codePostal": "18290", + "codeCommune": "18198", + "libelleAcheminement": "ST AMBROIX", + "nomCommune": "ST AMBROIX" }, { - "codePostal": "11190", - "codeCommune": "11377", - "libelleAcheminement": "SERRES", - "nomCommune": "SERRES" + "codePostal": "71350", + "codeCommune": "71131", + "libelleAcheminement": "CIEL", + "nomCommune": "CIEL" }, { - "codePostal": "68600", - "codeCommune": "68001", - "libelleAcheminement": "ALGOLSHEIM", - "nomCommune": "ALGOLSHEIM" + "codePostal": "60250", + "codeCommune": "60307", + "libelleAcheminement": "HEILLES", + "nomCommune": "HEILLES" }, { - "codePostal": "69620", - "codeCommune": "69039", - "libelleAcheminement": "CHAMELET", - "nomCommune": "CHAMELET" + "codePostal": "62127", + "codeCommune": "62061", + "libelleAcheminement": "AVERDOINGT", + "nomCommune": "AVERDOINGT" }, { - "codePostal": "42110", - "codeCommune": "42175", - "libelleAcheminement": "POUILLY LES FEURS", - "nomCommune": "POUILLY LES FEURS" + "codePostal": "71240", + "codeCommune": "71249", + "libelleAcheminement": "LAIVES", + "nomCommune": "LAIVES" }, { - "codePostal": "11130", - "codeCommune": "11379", - "libelleAcheminement": "SIGEAN", - "nomCommune": "SIGEAN" + "codePostal": "18270", + "codeCommune": "18203", + "libelleAcheminement": "ST CHRISTOPHE LE CHAUDRY", + "nomCommune": "ST CHRISTOPHE LE CHAUDRY" }, { - "codePostal": "68130", - "codeCommune": "68004", - "libelleAcheminement": "ALTKIRCH", - "nomCommune": "ALTKIRCH" + "codePostal": "71130", + "codeCommune": "71136", + "libelleAcheminement": "CLESSY", + "nomCommune": "CLESSY" }, { - "codePostal": "69260", - "codeCommune": "69044", - "libelleAcheminement": "CHARBONNIERES LES BAINS", - "nomCommune": "CHARBONNIERES LES BAINS" + "codePostal": "60370", + "codeCommune": "60313", + "libelleAcheminement": "HERMES", + "nomCommune": "HERMES" }, { - "codePostal": "42153", - "codeCommune": "42184", - "libelleAcheminement": "RIORGES", - "nomCommune": "RIORGES" + "codePostal": "62810", + "codeCommune": "62063", + "libelleAcheminement": "AVESNES LE COMTE", + "nomCommune": "AVESNES LE COMTE" }, { - "codePostal": "11220", - "codeCommune": "11387", - "libelleAcheminement": "TAURIZE", - "nomCommune": "TAURIZE" + "codePostal": "71240", + "codeCommune": "71252", + "libelleAcheminement": "LALHEUE", + "nomCommune": "LALHEUE" }, { - "codePostal": "68280", - "codeCommune": "68008", - "libelleAcheminement": "APPENWIHR", - "nomCommune": "APPENWIHR" + "codePostal": "18230", + "codeCommune": "18205", + "libelleAcheminement": "ST DOULCHARD", + "nomCommune": "ST DOULCHARD" }, { - "codePostal": "69220", - "codeCommune": "69045", - "libelleAcheminement": "CHARENTAY", - "nomCommune": "CHARENTAY" + "codePostal": "71990", + "codeCommune": "71142", + "libelleAcheminement": "LA COMELLE", + "nomCommune": "LA COMELLE" }, { - "codePostal": "42230", - "codeCommune": "42189", - "libelleAcheminement": "ROCHE LA MOLIERE", - "nomCommune": "ROCHE LA MOLIERE" + "codePostal": "60430", + "codeCommune": "60316", + "libelleAcheminement": "HODENC L EVEQUE", + "nomCommune": "HODENC L EVEQUE" }, { - "codePostal": "11330", - "codeCommune": "11388", - "libelleAcheminement": "TERMES", - "nomCommune": "TERMES" + "codePostal": "62210", + "codeCommune": "62065", + "libelleAcheminement": "AVION", + "nomCommune": "AVION" }, { - "codePostal": "68700", - "codeCommune": "68011", - "libelleAcheminement": "ASPACH LE BAS", - "nomCommune": "ASPACH LE BAS" + "codePostal": "71380", + "codeCommune": "71253", + "libelleAcheminement": "LANS", + "nomCommune": "LANS" }, { - "codePostal": "69440", - "codeCommune": "69051", - "libelleAcheminement": "CHAUSSAN", - "nomCommune": "CHAUSSAN" + "codePostal": "18200", + "codeCommune": "18209", + "libelleAcheminement": "ST GEORGES DE POISIEUX", + "nomCommune": "ST GEORGES DE POISIEUX" }, { - "codePostal": "42370", - "codeCommune": "42199", - "libelleAcheminement": "ST ANDRE D APCHON", - "nomCommune": "ST ANDRE D APCHON" + "codePostal": "71480", + "codeCommune": "71143", + "libelleAcheminement": "CONDAL", + "nomCommune": "CONDAL" }, { - "codePostal": "11400", - "codeCommune": "11399", - "libelleAcheminement": "TREVILLE", - "nomCommune": "TREVILLE" + "codePostal": "60570", + "codeCommune": "60330", + "libelleAcheminement": "LABOISSIERE EN THELLE", + "nomCommune": "LABOISSIERE EN THELLE" }, { - "codePostal": "68150", - "codeCommune": "68014", - "libelleAcheminement": "AUBURE", - "nomCommune": "AUBURE" + "codePostal": "62560", + "codeCommune": "62067", + "libelleAcheminement": "AVROULT", + "nomCommune": "AVROULT" }, { - "codePostal": "69440", - "codeCommune": "69051", - "libelleAcheminement": "CHAUSSAN", - "nomCommune": "CHAUSSAN" + "codePostal": "71530", + "codeCommune": "71257", + "libelleAcheminement": "LESSARD LE NATIONAL", + "nomCommune": "LESSARD LE NATIONAL" }, { - "codePostal": "42520", - "codeCommune": "42201", - "libelleAcheminement": "ST APPOLINARD", - "nomCommune": "ST APPOLINARD" + "codePostal": "18390", + "codeCommune": "18213", + "libelleAcheminement": "ST GERMAIN DU PUY", + "nomCommune": "ST GERMAIN DU PUY" }, { - "codePostal": "11330", - "codeCommune": "11409", - "libelleAcheminement": "VIGNEVIEILLE", - "nomCommune": "VIGNEVIEILLE" + "codePostal": "71200", + "codeCommune": "71153", + "libelleAcheminement": "LE CREUSOT", + "nomCommune": "LE CREUSOT" }, { - "codePostal": "68740", - "codeCommune": "68016", - "libelleAcheminement": "BALGAU", - "nomCommune": "BALGAU" + "codePostal": "60140", + "codeCommune": "60332", + "libelleAcheminement": "LABRUYERE", + "nomCommune": "LABRUYERE" }, { - "codePostal": "69380", - "codeCommune": "69052", - "libelleAcheminement": "CHAZAY D AZERGUES", - "nomCommune": "CHAZAY D AZERGUES" + "codePostal": "62310", + "codeCommune": "62069", + "libelleAcheminement": "AZINCOURT", + "nomCommune": "AZINCOURT" }, { - "codePostal": "42400", - "codeCommune": "42207", - "libelleAcheminement": "ST CHAMOND", - "nomCommune": "ST CHAMOND" + "codePostal": "71500", + "codeCommune": "71263", + "libelleAcheminement": "LOUHANS", + "nomCommune": "LOUHANS" }, { - "codePostal": "11600", - "codeCommune": "11416", - "libelleAcheminement": "VILLARZEL CABARDES", - "nomCommune": "VILLARZEL CABARDES" + "codePostal": "18100", + "codeCommune": "18214", + "libelleAcheminement": "ST HILAIRE DE COURT", + "nomCommune": "ST HILAIRE DE COURT" }, { - "codePostal": "68126", - "codeCommune": "68026", - "libelleAcheminement": "BENNWIHR MITTELWIHR", - "nomCommune": "BENNWIHR" + "codePostal": "71260", + "codeCommune": "71156", + "libelleAcheminement": "CRUZILLE", + "nomCommune": "CRUZILLE" }, { - "codePostal": "69840", - "codeCommune": "69053", - "libelleAcheminement": "CHENAS", - "nomCommune": "CHENAS" + "codePostal": "60650", + "codeCommune": "60333", + "libelleAcheminement": "LACHAPELLE AUX POTS", + "nomCommune": "LACHAPELLE AUX POTS" }, { - "codePostal": "42160", - "codeCommune": "42211", - "libelleAcheminement": "ST CYPRIEN", - "nomCommune": "ST CYPRIEN" + "codePostal": "62127", + "codeCommune": "62070", + "libelleAcheminement": "BAILLEUL AUX CORNAILLES", + "nomCommune": "BAILLEUL AUX CORNAILLES" }, { - "codePostal": "11300", - "codeCommune": "11417", - "libelleAcheminement": "VILLARZEL DU RAZES", - "nomCommune": "VILLARZEL DU RAZES" + "codePostal": "71260", + "codeCommune": "71267", + "libelleAcheminement": "LUGNY", + "nomCommune": "LUGNY" }, { - "codePostal": "68500", - "codeCommune": "68030", - "libelleAcheminement": "BERGHOLTZZELL", - "nomCommune": "BERGHOLTZZELL" + "codePostal": "18330", + "codeCommune": "18219", + "libelleAcheminement": "ST LAURENT", + "nomCommune": "ST LAURENT" }, { - "codePostal": "69430", - "codeCommune": "69054", - "libelleAcheminement": "CHENELETTE", - "nomCommune": "CHENELETTE" + "codePostal": "71520", + "codeCommune": "71163", + "libelleAcheminement": "CURTIL SOUS BUFFIERES", + "nomCommune": "CURTIL SOUS BUFFIERES" }, { - "codePostal": "42123", - "codeCommune": "42212", - "libelleAcheminement": "ST CYR DE FAVIERES", - "nomCommune": "ST CYR DE FAVIERES" + "codePostal": "60380", + "codeCommune": "60335", + "libelleAcheminement": "LACHAPELLE SOUS GERBEROY", + "nomCommune": "LACHAPELLE SOUS GERBEROY" }, { - "codePostal": "11800", - "codeCommune": "11422", - "libelleAcheminement": "VILLEDUBERT", - "nomCommune": "VILLEDUBERT" + "codePostal": "62360", + "codeCommune": "62075", + "libelleAcheminement": "BAINCTHUN", + "nomCommune": "BAINCTHUN" }, { - "codePostal": "68560", - "codeCommune": "68033", - "libelleAcheminement": "BETTENDORF", - "nomCommune": "BETTENDORF" + "codePostal": "71120", + "codeCommune": "71268", + "libelleAcheminement": "LUGNY LES CHAROLLES", + "nomCommune": "LUGNY LES CHAROLLES" }, { - "codePostal": "69380", - "codeCommune": "69056", - "libelleAcheminement": "CHESSY", - "nomCommune": "CHESSY" + "codePostal": "18270", + "codeCommune": "18225", + "libelleAcheminement": "ST MAUR", + "nomCommune": "ST MAUR" }, { - "codePostal": "42750", - "codeCommune": "42215", - "libelleAcheminement": "ST DENIS DE CABANNE", - "nomCommune": "ST DENIS DE CABANNE" + "codePostal": "71150", + "codeCommune": "71170", + "libelleAcheminement": "DEMIGNY", + "nomCommune": "DEMIGNY" }, { - "codePostal": "11570", - "codeCommune": "11423", - "libelleAcheminement": "VILLEFLOURE", - "nomCommune": "VILLEFLOURE" + "codePostal": "60190", + "codeCommune": "60337", + "libelleAcheminement": "LACHELLE", + "nomCommune": "LACHELLE" }, { - "codePostal": "68480", - "codeCommune": "68035", - "libelleAcheminement": "BIEDERTHAL", - "nomCommune": "BIEDERTHAL" + "codePostal": "62860", + "codeCommune": "62081", + "libelleAcheminement": "BARALLE", + "nomCommune": "BARALLE" }, { - "codePostal": "69115", - "codeCommune": "69058", - "libelleAcheminement": "CHIROUBLES", - "nomCommune": "CHIROUBLES" + "codePostal": "71390", + "codeCommune": "71277", + "libelleAcheminement": "MARCILLY LES BUXY", + "nomCommune": "MARCILLY LES BUXY" }, { - "codePostal": "42330", - "codeCommune": "42222", - "libelleAcheminement": "ST GALMIER", - "nomCommune": "ST GALMIER" + "codePostal": "18300", + "codeCommune": "18233", + "libelleAcheminement": "ST SATUR", + "nomCommune": "ST SATUR" }, { - "codePostal": "11600", - "codeCommune": "11425", - "libelleAcheminement": "VILLEGAILHENC", - "nomCommune": "VILLEGAILHENC" + "codePostal": "71190", + "codeCommune": "71172", + "libelleAcheminement": "DETTEY", + "nomCommune": "DETTEY" }, { - "codePostal": "68540", - "codeCommune": "68043", - "libelleAcheminement": "BOLLWILLER", - "nomCommune": "BOLLWILLER" + "codePostal": "60510", + "codeCommune": "60339", + "libelleAcheminement": "LAFRAYE", + "nomCommune": "LAFRAYE" }, { - "codePostal": "69660", - "codeCommune": "69063", - "libelleAcheminement": "COLLONGES AU MONT D OR", - "nomCommune": "COLLONGES AU MONT D OR" + "codePostal": "62810", + "codeCommune": "62084", + "libelleAcheminement": "BARLY", + "nomCommune": "BARLY" }, { - "codePostal": "42510", - "codeCommune": "42226", - "libelleAcheminement": "ST GEORGES DE BAROILLE", - "nomCommune": "ST GEORGES DE BAROILLE" + "codePostal": "71220", + "codeCommune": "71279", + "libelleAcheminement": "LE ROUSSET MARIZY", + "nomCommune": "LE ROUSSET MARIZY" }, { - "codePostal": "11600", - "codeCommune": "11426", - "libelleAcheminement": "VILLEGLY", - "nomCommune": "VILLEGLY" + "codePostal": "18360", + "codeCommune": "18238", + "libelleAcheminement": "ST VITTE", + "nomCommune": "ST VITTE" }, { - "codePostal": "68480", - "codeCommune": "68049", - "libelleAcheminement": "BOUXWILLER", - "nomCommune": "BOUXWILLER" + "codePostal": "71330", + "codeCommune": "71173", + "libelleAcheminement": "DEVROUZE", + "nomCommune": "DEVROUZE" }, { - "codePostal": "69270", - "codeCommune": "69068", - "libelleAcheminement": "COUZON AU MONT D OR", - "nomCommune": "COUZON AU MONT D OR" + "codePostal": "60590", + "codeCommune": "60343", + "libelleAcheminement": "LALANDE EN SON", + "nomCommune": "LALANDE EN SON" }, { - "codePostal": "42990", - "codeCommune": "42227", - "libelleAcheminement": "ST GEORGES EN COUZAN", - "nomCommune": "ST GEORGES EN COUZAN" + "codePostal": "62121", + "codeCommune": "62103", + "libelleAcheminement": "BEHAGNIES", + "nomCommune": "BEHAGNIES" }, { - "codePostal": "11620", - "codeCommune": "11429", - "libelleAcheminement": "VILLEMOUSTAUSSOU", - "nomCommune": "VILLEMOUSTAUSSOU" + "codePostal": "71220", + "codeCommune": "71279", + "libelleAcheminement": "LE ROUSSET MARIZY", + "nomCommune": "LE ROUSSET MARIZY" }, { - "codePostal": "68780", - "codeCommune": "68052", - "libelleAcheminement": "BRETTEN", - "nomCommune": "BRETTEN" + "codePostal": "18360", + "codeCommune": "18245", + "libelleAcheminement": "SAULZAIS LE POTIER", + "nomCommune": "SAULZAIS LE POTIER" }, { - "codePostal": "69290", - "codeCommune": "69069", - "libelleAcheminement": "CRAPONNE", - "nomCommune": "CRAPONNE" + "codePostal": "71800", + "codeCommune": "71185", + "libelleAcheminement": "DYO", + "nomCommune": "DYO" }, { - "codePostal": "42640", - "codeCommune": "42231", - "libelleAcheminement": "ST GERMAIN LESPINASSE", - "nomCommune": "ST GERMAIN LESPINASSE" + "codePostal": "60140", + "codeCommune": "60360", + "libelleAcheminement": "LIANCOURT", + "nomCommune": "LIANCOURT" }, { - "codePostal": "11400", - "codeCommune": "11430", - "libelleAcheminement": "VILLENEUVE LA COMPTAL", - "nomCommune": "VILLENEUVE LA COMPTAL" + "codePostal": "62150", + "codeCommune": "62120", + "libelleAcheminement": "BEUGIN", + "nomCommune": "BEUGIN" }, { - "codePostal": "68350", - "codeCommune": "68056", - "libelleAcheminement": "BRUNSTATT DIDENHEIM", - "nomCommune": "BRUNSTATT DIDENHEIM" + "codePostal": "71250", + "codeCommune": "71287", + "libelleAcheminement": "MASSILLY", + "nomCommune": "MASSILLY" }, { - "codePostal": "69570", - "codeCommune": "69072", - "libelleAcheminement": "DARDILLY", - "nomCommune": "DARDILLY" + "codePostal": "18570", + "codeCommune": "18255", + "libelleAcheminement": "LE SUBDRAY", + "nomCommune": "LE SUBDRAY" }, { - "codePostal": "42570", - "codeCommune": "42234", - "libelleAcheminement": "ST HEAND", - "nomCommune": "ST HEAND" + "codePostal": "71350", + "codeCommune": "71186", + "libelleAcheminement": "ECUELLES", + "nomCommune": "ECUELLES" }, { - "codePostal": "11150", - "codeCommune": "11438", - "libelleAcheminement": "VILLESISCLE", - "nomCommune": "VILLESISCLE" + "codePostal": "60150", + "codeCommune": "60373", + "libelleAcheminement": "MACHEMONT", + "nomCommune": "MACHEMONT" }, { - "codePostal": "68520", - "codeCommune": "68059", - "libelleAcheminement": "BURNHAUPT LE BAS", - "nomCommune": "BURNHAUPT LE BAS" + "codePostal": "62450", + "codeCommune": "62121", + "libelleAcheminement": "BEUGNATRE", + "nomCommune": "BEUGNATRE" }, { - "codePostal": "69640", - "codeCommune": "69074", - "libelleAcheminement": "DENICE", - "nomCommune": "DENICE" + "codePostal": "71250", + "codeCommune": "71290", + "libelleAcheminement": "MAZILLE", + "nomCommune": "MAZILLE" }, { - "codePostal": "42440", - "codeCommune": "42238", - "libelleAcheminement": "ST JEAN LA VETRE", - "nomCommune": "ST JEAN LA VETRE" + "codePostal": "18260", + "codeCommune": "18259", + "libelleAcheminement": "SURY ES BOIS", + "nomCommune": "SURY ES BOIS" }, { - "codePostal": "12630", - "codeCommune": "12001", - "libelleAcheminement": "AGEN D AVEYRON", - "nomCommune": "AGEN D AVEYRON" + "codePostal": "71360", + "codeCommune": "71188", + "libelleAcheminement": "EPERTULLY", + "nomCommune": "EPERTULLY" }, { - "codePostal": "68220", - "codeCommune": "68061", - "libelleAcheminement": "BUSCHWILLER", - "nomCommune": "BUSCHWILLER" + "codePostal": "60600", + "codeCommune": "60375", + "libelleAcheminement": "MAIMBEVILLE", + "nomCommune": "MAIMBEVILLE" }, { - "codePostal": "69170", - "codeCommune": "69075", - "libelleAcheminement": "DIEME", - "nomCommune": "DIEME" + "codePostal": "62124", + "codeCommune": "62122", + "libelleAcheminement": "BEUGNY", + "nomCommune": "BEUGNY" }, { - "codePostal": "42260", - "codeCommune": "42243", - "libelleAcheminement": "ST JULIEN D ODDES", - "nomCommune": "ST JULIEN D ODDES" + "codePostal": "71480", + "codeCommune": "71300", + "libelleAcheminement": "LE MIROIR", + "nomCommune": "LE MIROIR" }, { - "codePostal": "12430", - "codeCommune": "12006", - "libelleAcheminement": "ALRANCE", - "nomCommune": "ALRANCE" + "codePostal": "18210", + "codeCommune": "18261", + "libelleAcheminement": "THAUMIERS", + "nomCommune": "THAUMIERS" }, { - "codePostal": "68130", - "codeCommune": "68062", - "libelleAcheminement": "CARSPACH", - "nomCommune": "CARSPACH" + "codePostal": "71360", + "codeCommune": "71190", + "libelleAcheminement": "EPINAC", + "nomCommune": "EPINAC" }, { - "codePostal": "69870", - "codeCommune": "69093", - "libelleAcheminement": "GRANDRIS", - "nomCommune": "GRANDRIS" + "codePostal": "60310", + "codeCommune": "60381", + "libelleAcheminement": "MARGNY AUX CERISES", + "nomCommune": "MARGNY AUX CERISES" }, { - "codePostal": "42111", - "codeCommune": "42245", - "libelleAcheminement": "VETRE SUR ANZON", - "nomCommune": "VETRE SUR ANZON" + "codePostal": "62170", + "codeCommune": "62123", + "libelleAcheminement": "BEUSSENT", + "nomCommune": "BEUSSENT" }, { - "codePostal": "12110", - "codeCommune": "12013", - "libelleAcheminement": "AUBIN", - "nomCommune": "AUBIN" + "codePostal": "71500", + "codeCommune": "71303", + "libelleAcheminement": "MONTAGNY PRES LOUHANS", + "nomCommune": "MONTAGNY PRES LOUHANS" }, { - "codePostal": "68210", - "codeCommune": "68065", - "libelleAcheminement": "CHAVANNES SUR L ETANG", - "nomCommune": "CHAVANNES SUR L ETANG" + "codePostal": "18100", + "codeCommune": "18263", + "libelleAcheminement": "THENIOUX", + "nomCommune": "THENIOUX" }, { - "codePostal": "69640", - "codeCommune": "69105", - "libelleAcheminement": "LACENAS", - "nomCommune": "LACENAS" + "codePostal": "71240", + "codeCommune": "71193", + "libelleAcheminement": "ETRIGNY", + "nomCommune": "ETRIGNY" }, { - "codePostal": "42440", - "codeCommune": "42245", - "libelleAcheminement": "VETRE SUR ANZON", - "nomCommune": "VETRE SUR ANZON" + "codePostal": "60890", + "codeCommune": "60385", + "libelleAcheminement": "MAROLLES", + "nomCommune": "MAROLLES" }, { - "codePostal": "12430", - "codeCommune": "12017", - "libelleAcheminement": "AYSSENES", - "nomCommune": "AYSSENES" + "codePostal": "62650", + "codeCommune": "62127", + "libelleAcheminement": "BEZINGHEM", + "nomCommune": "BEZINGHEM" }, { - "codePostal": "68480", - "codeCommune": "68067", - "libelleAcheminement": "COURTAVON", - "nomCommune": "COURTAVON" + "codePostal": "71110", + "codeCommune": "71307", + "libelleAcheminement": "MONTCEAUX L ETOILE", + "nomCommune": "MONTCEAUX L ETOILE" }, { - "codePostal": "69220", - "codeCommune": "69108", - "libelleAcheminement": "LANCIE", - "nomCommune": "LANCIE" + "codePostal": "18300", + "codeCommune": "18272", + "libelleAcheminement": "VEAUGUES", + "nomCommune": "VEAUGUES" }, { - "codePostal": "42990", - "codeCommune": "42247", - "libelleAcheminement": "ST JUST EN BAS", - "nomCommune": "ST JUST EN BAS" + "codePostal": "71270", + "codeCommune": "71207", + "libelleAcheminement": "FRETTERANS", + "nomCommune": "FRETTERANS" }, { - "codePostal": "12240", - "codeCommune": "12021", - "libelleAcheminement": "LE BAS SEGALA", - "nomCommune": "LE BAS SEGALA" + "codePostal": "60140", + "codeCommune": "60404", + "libelleAcheminement": "MOGNEVILLE", + "nomCommune": "MOGNEVILLE" }, { - "codePostal": "68420", - "codeCommune": "68078", - "libelleAcheminement": "EGUISHEIM", - "nomCommune": "EGUISHEIM" + "codePostal": "62270", + "codeCommune": "62137", + "libelleAcheminement": "BLANGERVAL BLANGERMONT", + "nomCommune": "BLANGERVAL BLANGERMONT" }, { - "codePostal": "69400", - "codeCommune": "69115", - "libelleAcheminement": "LIMAS", - "nomCommune": "LIMAS" + "codePostal": "71500", + "codeCommune": "71311", + "libelleAcheminement": "MONTCONY", + "nomCommune": "MONTCONY" }, { - "codePostal": "42210", - "codeCommune": "42251", - "libelleAcheminement": "ST LAURENT LA CONCHE", - "nomCommune": "ST LAURENT LA CONCHE" + "codePostal": "18100", + "codeCommune": "18279", + "libelleAcheminement": "VIERZON", + "nomCommune": "VIERZON" }, { - "codePostal": "12370", - "codeCommune": "12025", - "libelleAcheminement": "BELMONT SUR RANCE", - "nomCommune": "BELMONT SUR RANCE" + "codePostal": "71520", + "codeCommune": "71217", + "libelleAcheminement": "GERMOLLES SUR GROSNE", + "nomCommune": "GERMOLLES SUR GROSNE" }, { - "codePostal": "68720", - "codeCommune": "68081", - "libelleAcheminement": "ST BERNARD", - "nomCommune": "ST BERNARD" + "codePostal": "60113", + "codeCommune": "60408", + "libelleAcheminement": "MONCHY HUMIERES", + "nomCommune": "MONCHY HUMIERES" }, { - "codePostal": "69700", - "codeCommune": "69118", - "libelleAcheminement": "LOIRE SUR RHONE", - "nomCommune": "LOIRE SUR RHONE" + "codePostal": "62120", + "codeCommune": "62141", + "libelleAcheminement": "BLESSY", + "nomCommune": "BLESSY" }, { - "codePostal": "42430", - "codeCommune": "42255", - "libelleAcheminement": "ST MARCEL D URFE", - "nomCommune": "ST MARCEL D URFE" + "codePostal": "71520", + "codeCommune": "71316", + "libelleAcheminement": "MONTMELARD", + "nomCommune": "MONTMELARD" }, { - "codePostal": "12310", - "codeCommune": "12026", - "libelleAcheminement": "BERTHOLENE", - "nomCommune": "BERTHOLENE" + "codePostal": "18130", + "codeCommune": "18289", + "libelleAcheminement": "VORNAY", + "nomCommune": "VORNAY" }, { - "codePostal": "68140", - "codeCommune": "68083", - "libelleAcheminement": "ESCHBACH AU VAL", - "nomCommune": "ESCHBACH AU VAL" + "codePostal": "71390", + "codeCommune": "71225", + "libelleAcheminement": "GRANGES", + "nomCommune": "GRANGES" }, { - "codePostal": "69380", - "codeCommune": "69125", - "libelleAcheminement": "MARCILLY D AZERGUES", - "nomCommune": "MARCILLY D AZERGUES" + "codePostal": "60290", + "codeCommune": "60409", + "libelleAcheminement": "MONCHY ST ELOI", + "nomCommune": "MONCHY ST ELOI" }, { - "codePostal": "42680", - "codeCommune": "42256", - "libelleAcheminement": "ST MARCELLIN EN FOREZ", - "nomCommune": "ST MARCELLIN EN FOREZ" + "codePostal": "62390", + "codeCommune": "62143", + "libelleAcheminement": "BOFFLES", + "nomCommune": "BOFFLES" }, { - "codePostal": "12340", - "codeCommune": "12033", - "libelleAcheminement": "BOZOULS", - "nomCommune": "BOZOULS" + "codePostal": "71510", + "codeCommune": "71321", + "libelleAcheminement": "MOREY", + "nomCommune": "MOREY" }, { - "codePostal": "68210", - "codeCommune": "68085", - "libelleAcheminement": "ETEIMBES", - "nomCommune": "ETEIMBES" + "codePostal": "18330", + "codeCommune": "18290", + "libelleAcheminement": "VOUZERON", + "nomCommune": "VOUZERON" }, { - "codePostal": "69860", - "codeCommune": "69135", - "libelleAcheminement": "DEUX GROSNES", - "nomCommune": "DEUX GROSNES" + "codePostal": "71870", + "codeCommune": "71235", + "libelleAcheminement": "HURIGNY", + "nomCommune": "HURIGNY" }, { - "codePostal": "42240", - "codeCommune": "42262", - "libelleAcheminement": "ST MAURICE EN GOURGOIS", - "nomCommune": "ST MAURICE EN GOURGOIS" + "codePostal": "60810", + "codeCommune": "60415", + "libelleAcheminement": "MONTEPILLOY", + "nomCommune": "MONTEPILLOY" }, { - "codePostal": "12480", - "codeCommune": "12037", - "libelleAcheminement": "BROQUIES", - "nomCommune": "BROQUIES" + "codePostal": "62175", + "codeCommune": "62147", + "libelleAcheminement": "BOIRY STE RICTRUDE", + "nomCommune": "BOIRY STE RICTRUDE" }, { - "codePostal": "68470", - "codeCommune": "68089", - "libelleAcheminement": "FELLERING", - "nomCommune": "FELLERING" + "codePostal": "71130", + "codeCommune": "71330", + "libelleAcheminement": "NEUVY GRANDCHAMP", + "nomCommune": "NEUVY GRANDCHAMP" }, { - "codePostal": "69860", - "codeCommune": "69135", - "libelleAcheminement": "DEUX GROSNES", - "nomCommune": "DEUX GROSNES" + "codePostal": "19200", + "codeCommune": "19002", + "libelleAcheminement": "AIX", + "nomCommune": "AIX" }, { - "codePostal": "42260", - "codeCommune": "42268", - "libelleAcheminement": "VEZELIN SUR LOIRE", - "nomCommune": "VEZELIN SUR LOIRE" + "codePostal": "71340", + "codeCommune": "71238", + "libelleAcheminement": "IGUERANDE", + "nomCommune": "IGUERANDE" }, { - "codePostal": "12450", - "codeCommune": "12043", - "libelleAcheminement": "CALMONT", - "nomCommune": "CALMONT" + "codePostal": "60190", + "codeCommune": "60418", + "libelleAcheminement": "MONTIERS", + "nomCommune": "MONTIERS" }, { - "codePostal": "68480", - "codeCommune": "68090", - "libelleAcheminement": "FERRETTE", - "nomCommune": "FERRETTE" + "codePostal": "62170", + "codeCommune": "62150", + "libelleAcheminement": "BOISJEAN", + "nomCommune": "BOISJEAN" }, { - "codePostal": "69480", - "codeCommune": "69140", - "libelleAcheminement": "MORANCE", - "nomCommune": "MORANCE" + "codePostal": "71290", + "codeCommune": "71332", + "libelleAcheminement": "ORMES", + "nomCommune": "ORMES" }, { - "codePostal": "42740", - "codeCommune": "42271", - "libelleAcheminement": "ST PAUL EN JAREZ", - "nomCommune": "ST PAUL EN JAREZ" + "codePostal": "19120", + "codeCommune": "19007", + "libelleAcheminement": "ALTILLAC", + "nomCommune": "ALTILLAC" }, { - "codePostal": "12560", - "codeCommune": "12047", - "libelleAcheminement": "CAMPAGNAC", - "nomCommune": "CAMPAGNAC" + "codePostal": "71440", + "codeCommune": "71256", + "libelleAcheminement": "LESSARD EN BRESSE", + "nomCommune": "LESSARD EN BRESSE" }, { - "codePostal": "68480", - "codeCommune": "68092", - "libelleAcheminement": "FISLIS", - "nomCommune": "FISLIS" + "codePostal": "60300", + "codeCommune": "60422", + "libelleAcheminement": "MONTLOGNON", + "nomCommune": "MONTLOGNON" }, { - "codePostal": "69440", - "codeCommune": "69141", - "libelleAcheminement": "MORNANT", - "nomCommune": "MORNANT" + "codePostal": "62128", + "codeCommune": "62172", + "libelleAcheminement": "BOYELLES", + "nomCommune": "BOYELLES" }, { - "codePostal": "42520", - "codeCommune": "42272", - "libelleAcheminement": "ST PIERRE DE BOEUF", - "nomCommune": "ST PIERRE DE BOEUF" + "codePostal": "71800", + "codeCommune": "71337", + "libelleAcheminement": "OYE", + "nomCommune": "OYE" }, { - "codePostal": "12140", - "codeCommune": "12048", - "libelleAcheminement": "CAMPOURIEZ", - "nomCommune": "CAMPOURIEZ" + "codePostal": "19310", + "codeCommune": "19015", + "libelleAcheminement": "AYEN", + "nomCommune": "AYEN" }, { - "codePostal": "68510", - "codeCommune": "68103", - "libelleAcheminement": "GEISPITZEN", - "nomCommune": "GEISPITZEN" + "codePostal": "71270", + "codeCommune": "71262", + "libelleAcheminement": "LONGEPIERRE", + "nomCommune": "LONGEPIERRE" }, { - "codePostal": "69530", - "codeCommune": "69148", - "libelleAcheminement": "ORLIENAS", - "nomCommune": "ORLIENAS" + "codePostal": "60134", + "codeCommune": "60426", + "libelleAcheminement": "MONTREUIL SUR THERAIN", + "nomCommune": "MONTREUIL SUR THERAIN" }, { - "codePostal": "42440", - "codeCommune": "42278", - "libelleAcheminement": "ST PRIEST LA VETRE", - "nomCommune": "ST PRIEST LA VETRE" + "codePostal": "62140", + "codeCommune": "62175", + "libelleAcheminement": "BREVILLERS", + "nomCommune": "BREVILLERS" }, { - "codePostal": "12460", - "codeCommune": "12048", - "libelleAcheminement": "CAMPOURIEZ", - "nomCommune": "CAMPOURIEZ" + "codePostal": "71150", + "codeCommune": "71343", + "libelleAcheminement": "PARIS L HOPITAL", + "nomCommune": "PARIS L HOPITAL" }, { - "codePostal": "68210", - "codeCommune": "68105", - "libelleAcheminement": "GILDWILLER", - "nomCommune": "GILDWILLER" + "codePostal": "19290", + "codeCommune": "19021", + "libelleAcheminement": "BELLECHASSAGNE", + "nomCommune": "BELLECHASSAGNE" }, { - "codePostal": "69250", - "codeCommune": "69153", - "libelleAcheminement": "POLEYMIEUX AU MONT D OR", - "nomCommune": "POLEYMIEUX AU MONT D OR" + "codePostal": "71500", + "codeCommune": "71263", + "libelleAcheminement": "LOUHANS", + "nomCommune": "LOUHANS" }, { - "codePostal": "42660", - "codeCommune": "42280", - "libelleAcheminement": "ST REGIS DU COIN", - "nomCommune": "ST REGIS DU COIN" + "codePostal": "60119", + "codeCommune": "60427", + "libelleAcheminement": "MONTS", + "nomCommune": "MONTS" }, { - "codePostal": "12290", - "codeCommune": "12050", - "libelleAcheminement": "CANET DE SALARS", - "nomCommune": "CANET DE SALARS" + "codePostal": "62870", + "codeCommune": "62183", + "libelleAcheminement": "BUIRE LE SEC", + "nomCommune": "BUIRE LE SEC" }, { - "codePostal": "68320", - "codeCommune": "68110", - "libelleAcheminement": "GRUSSENHEIM", - "nomCommune": "GRUSSENHEIM" + "codePostal": "71260", + "codeCommune": "71345", + "libelleAcheminement": "PERONNE", + "nomCommune": "PERONNE" }, { - "codePostal": "69490", - "codeCommune": "69157", - "libelleAcheminement": "VINDRY SUR TURDINE", - "nomCommune": "VINDRY SUR TURDINE" + "codePostal": "19230", + "codeCommune": "19025", + "libelleAcheminement": "BEYSSENAC", + "nomCommune": "BEYSSENAC" }, { - "codePostal": "42440", - "codeCommune": "42295", - "libelleAcheminement": "LES SALLES", - "nomCommune": "LES SALLES" + "codePostal": "71000", + "codeCommune": "71270", + "libelleAcheminement": "MACON", + "nomCommune": "MACON" }, { - "codePostal": "12260", - "codeCommune": "12053", - "libelleAcheminement": "LA CAPELLE BALAGUIER", - "nomCommune": "LA CAPELLE BALAGUIER" + "codePostal": "60128", + "codeCommune": "60432", + "libelleAcheminement": "MORTEFONTAINE", + "nomCommune": "MORTEFONTAINE" }, { - "codePostal": "68500", - "codeCommune": "68112", - "libelleAcheminement": "GUEBWILLER", - "nomCommune": "GUEBWILLER" + "codePostal": "62470", + "codeCommune": "62197", + "libelleAcheminement": "CAMBLAIN CHATELAIN", + "nomCommune": "CAMBLAIN CHATELAIN" }, { - "codePostal": "69400", - "codeCommune": "69159", - "libelleAcheminement": "PORTE DES PIERRES DOREES", - "nomCommune": "PORTE DES PIERRES DOREES" + "codePostal": "71700", + "codeCommune": "71353", + "libelleAcheminement": "PLOTTES", + "nomCommune": "PLOTTES" }, { - "codePostal": "42290", - "codeCommune": "42302", - "libelleAcheminement": "SORBIERS", - "nomCommune": "SORBIERS" + "codePostal": "19430", + "codeCommune": "19034", + "libelleAcheminement": "CAMPS ST MATHURIN LEOBAZEL", + "nomCommune": "CAMPS ST MATHURIN LEOBAZEL" }, { - "codePostal": "12240", - "codeCommune": "12068", - "libelleAcheminement": "COLOMBIES", - "nomCommune": "COLOMBIES" + "codePostal": "71000", + "codeCommune": "71270", + "libelleAcheminement": "MACON", + "nomCommune": "MACON" }, { - "codePostal": "68560", - "codeCommune": "68128", - "libelleAcheminement": "HEIMERSDORF", - "nomCommune": "HEIMERSDORF" + "codePostal": "60380", + "codeCommune": "60435", + "libelleAcheminement": "MORVILLERS", + "nomCommune": "MORVILLERS" }, { - "codePostal": "69440", - "codeCommune": "69180", - "libelleAcheminement": "ST ANDRE LA COTE", - "nomCommune": "ST ANDRE LA COTE" + "codePostal": "62176", + "codeCommune": "62201", + "libelleAcheminement": "CAMIERS", + "nomCommune": "CAMIERS" }, { - "codePostal": "42660", - "codeCommune": "42306", - "libelleAcheminement": "TARENTAISE", - "nomCommune": "TARENTAISE" + "codePostal": "71230", + "codeCommune": "71356", + "libelleAcheminement": "POUILLOUX", + "nomCommune": "POUILLOUX" }, { - "codePostal": "12170", - "codeCommune": "12075", - "libelleAcheminement": "CONNAC", - "nomCommune": "CONNAC" + "codePostal": "19450", + "codeCommune": "19037", + "libelleAcheminement": "CHAMBOULIVE", + "nomCommune": "CHAMBOULIVE" }, { - "codePostal": "68990", - "codeCommune": "68129", - "libelleAcheminement": "HEIMSBRUNN", - "nomCommune": "HEIMSBRUNN" + "codePostal": "71000", + "codeCommune": "71270", + "libelleAcheminement": "MACON", + "nomCommune": "MACON" }, { - "codePostal": "69790", - "codeCommune": "69182", - "libelleAcheminement": "ST BONNET DES BRUYERES", - "nomCommune": "ST BONNET DES BRUYERES" + "codePostal": "60250", + "codeCommune": "60437", + "libelleAcheminement": "MOUCHY LE CHATEL", + "nomCommune": "MOUCHY LE CHATEL" }, { - "codePostal": "42800", - "codeCommune": "42307", - "libelleAcheminement": "TARTARAS", - "nomCommune": "TARTARAS" + "codePostal": "62340", + "codeCommune": "62203", + "libelleAcheminement": "CAMPAGNE LES GUINES", + "nomCommune": "CAMPAGNE LES GUINES" }, { - "codePostal": "12540", - "codeCommune": "12077", - "libelleAcheminement": "CORNUS", - "nomCommune": "CORNUS" + "codePostal": "71570", + "codeCommune": "71362", + "libelleAcheminement": "PRUZILLY", + "nomCommune": "PRUZILLY" }, { - "codePostal": "68330", - "codeCommune": "68149", - "libelleAcheminement": "HUNINGUE", - "nomCommune": "HUNINGUE" + "codePostal": "19120", + "codeCommune": "19054", + "libelleAcheminement": "CHENAILLER MASCHEIX", + "nomCommune": "CHENAILLER MASCHEIX" }, { - "codePostal": "69790", - "codeCommune": "69186", - "libelleAcheminement": "ST CLEMENT DE VERS", - "nomCommune": "ST CLEMENT DE VERS" + "codePostal": "71000", + "codeCommune": "71270", + "libelleAcheminement": "MACON", + "nomCommune": "MACON" }, { - "codePostal": "42380", - "codeCommune": "42312", - "libelleAcheminement": "LA TOURETTE", - "nomCommune": "LA TOURETTE" + "codePostal": "60350", + "codeCommune": "60438", + "libelleAcheminement": "MOULIN SOUS TOUVENT", + "nomCommune": "MOULIN SOUS TOUVENT" }, { - "codePostal": "12400", - "codeCommune": "12078", - "libelleAcheminement": "LES COSTES GOZON", - "nomCommune": "LES COSTES GOZON" + "codePostal": "62158", + "codeCommune": "62216", + "libelleAcheminement": "LA CAUCHIE", + "nomCommune": "LA CAUCHIE" }, { - "codePostal": "68500", - "codeCommune": "68156", - "libelleAcheminement": "ISSENHEIM", - "nomCommune": "ISSENHEIM" + "codePostal": "71460", + "codeCommune": "71363", + "libelleAcheminement": "LE PULEY", + "nomCommune": "LE PULEY" }, { - "codePostal": "69190", - "codeCommune": "69199", - "libelleAcheminement": "ST FONS", - "nomCommune": "ST FONS" + "codePostal": "19320", + "codeCommune": "19056", + "libelleAcheminement": "CLERGOUX", + "nomCommune": "CLERGOUX" }, { - "codePostal": "42590", - "codeCommune": "42325", - "libelleAcheminement": "VENDRANGES", - "nomCommune": "VENDRANGES" + "codePostal": "71140", + "codeCommune": "71273", + "libelleAcheminement": "MALTAT", + "nomCommune": "MALTAT" }, { - "codePostal": "12230", - "codeCommune": "12082", - "libelleAcheminement": "LA COUVERTOIRADE", - "nomCommune": "LA COUVERTOIRADE" + "codePostal": "60480", + "codeCommune": "60442", + "libelleAcheminement": "MUIDORGE", + "nomCommune": "MUIDORGE" }, { - "codePostal": "68320", - "codeCommune": "68157", - "libelleAcheminement": "JEBSHEIM", - "nomCommune": "JEBSHEIM" + "codePostal": "62260", + "codeCommune": "62217", + "libelleAcheminement": "CAUCHY A LA TOUR", + "nomCommune": "CAUCHY A LA TOUR" }, { - "codePostal": "69490", - "codeCommune": "69200", - "libelleAcheminement": "ST FORGEUX", - "nomCommune": "ST FORGEUX" + "codePostal": "71310", + "codeCommune": "71364", + "libelleAcheminement": "LA RACINEUSE", + "nomCommune": "LA RACINEUSE" }, { - "codePostal": "42600", - "codeCommune": "42328", - "libelleAcheminement": "VERRIERES EN FOREZ", - "nomCommune": "VERRIERES EN FOREZ" + "codePostal": "19800", + "codeCommune": "19062", + "libelleAcheminement": "CORREZE", + "nomCommune": "CORREZE" }, { - "codePostal": "12110", - "codeCommune": "12083", - "libelleAcheminement": "CRANSAC", - "nomCommune": "CRANSAC" + "codePostal": "71240", + "codeCommune": "71274", + "libelleAcheminement": "MANCEY", + "nomCommune": "MANCEY" }, { - "codePostal": "68500", - "codeCommune": "68159", - "libelleAcheminement": "JUNGHOLTZ", - "nomCommune": "JUNGHOLTZ" + "codePostal": "60400", + "codeCommune": "60445", + "libelleAcheminement": "NAMPCEL", + "nomCommune": "NAMPCEL" }, { - "codePostal": "69610", - "codeCommune": "69201", - "libelleAcheminement": "STE FOY L ARGENTIERE", - "nomCommune": "STE FOY L ARGENTIERE" + "codePostal": "62140", + "codeCommune": "62222", + "libelleAcheminement": "CHERIENNES", + "nomCommune": "CHERIENNES" }, { - "codePostal": "42220", - "codeCommune": "42329", - "libelleAcheminement": "LA VERSANNE", - "nomCommune": "LA VERSANNE" + "codePostal": "71470", + "codeCommune": "71373", + "libelleAcheminement": "ROMENAY", + "nomCommune": "ROMENAY" }, { - "codePostal": "12000", - "codeCommune": "12090", - "libelleAcheminement": "DRUELLE BALSAC", - "nomCommune": "DRUELLE BALSAC" + "codePostal": "19340", + "codeCommune": "19065", + "libelleAcheminement": "COURTEIX", + "nomCommune": "COURTEIX" }, { - "codePostal": "68480", - "codeCommune": "68169", - "libelleAcheminement": "KOESTLACH", - "nomCommune": "KOESTLACH" + "codePostal": "71760", + "codeCommune": "71280", + "libelleAcheminement": "MARLY SOUS ISSY", + "nomCommune": "MARLY SOUS ISSY" }, { - "codePostal": "69830", - "codeCommune": "69206", - "libelleAcheminement": "ST GEORGES DE RENEINS", - "nomCommune": "ST GEORGES DE RENEINS" + "codePostal": "60190", + "codeCommune": "60449", + "libelleAcheminement": "NEUFVY SUR ARONDE", + "nomCommune": "NEUFVY SUR ARONDE" }, { - "codePostal": "42155", - "codeCommune": "42331", - "libelleAcheminement": "VILLEMONTAIS", - "nomCommune": "VILLEMONTAIS" + "codePostal": "62890", + "codeCommune": "62228", + "libelleAcheminement": "CLERQUES", + "nomCommune": "CLERQUES" }, { - "codePostal": "12510", - "codeCommune": "12090", - "libelleAcheminement": "DRUELLE BALSAC", - "nomCommune": "DRUELLE BALSAC" + "codePostal": "71390", + "codeCommune": "71374", + "libelleAcheminement": "ROSEY", + "nomCommune": "ROSEY" }, { - "codePostal": "68510", - "codeCommune": "68170", - "libelleAcheminement": "KOETZINGUE", - "nomCommune": "KOETZINGUE" + "codePostal": "19270", + "codeCommune": "19072", + "libelleAcheminement": "DONZENAC", + "nomCommune": "DONZENAC" }, { - "codePostal": "69640", - "codeCommune": "69215", - "libelleAcheminement": "ST JULIEN", - "nomCommune": "ST JULIEN" + "codePostal": "71420", + "codeCommune": "71281", + "libelleAcheminement": "MARLY SUR ARROUX", + "nomCommune": "MARLY SUR ARROUX" }, { - "codePostal": "42300", - "codeCommune": "42332", - "libelleAcheminement": "VILLEREST", - "nomCommune": "VILLEREST" + "codePostal": "60620", + "codeCommune": "60478", + "libelleAcheminement": "ORMOY LE DAVIEN", + "nomCommune": "ORMOY LE DAVIEN" }, { - "codePostal": "12350", - "codeCommune": "12091", - "libelleAcheminement": "DRULHE", - "nomCommune": "DRULHE" + "codePostal": "62180", + "codeCommune": "62231", + "libelleAcheminement": "COLLINE BEAUMONT", + "nomCommune": "COLLINE BEAUMONT" }, { - "codePostal": "68320", - "codeCommune": "68172", - "libelleAcheminement": "KUNHEIM", - "nomCommune": "KUNHEIM" + "codePostal": "71700", + "codeCommune": "71377", + "libelleAcheminement": "ROYER", + "nomCommune": "ROYER" }, { - "codePostal": "69690", - "codeCommune": "69216", - "libelleAcheminement": "ST JULIEN SUR BIBOST", - "nomCommune": "ST JULIEN SUR BIBOST" + "codePostal": "19300", + "codeCommune": "19073", + "libelleAcheminement": "EGLETONS", + "nomCommune": "EGLETONS" }, { - "codePostal": "43450", - "codeCommune": "43014", - "libelleAcheminement": "AUTRAC", - "nomCommune": "AUTRAC" + "codePostal": "71240", + "codeCommune": "71283", + "libelleAcheminement": "MARNAY", + "nomCommune": "MARNAY" }, { - "codePostal": "12140", - "codeCommune": "12097", - "libelleAcheminement": "ESPEYRAC", - "nomCommune": "ESPEYRAC" + "codePostal": "60490", + "codeCommune": "60483", + "libelleAcheminement": "ORVILLERS SOREL", + "nomCommune": "ORVILLERS SOREL" }, { - "codePostal": "68650", - "codeCommune": "68175", - "libelleAcheminement": "LAPOUTROIE", - "nomCommune": "LAPOUTROIE" + "codePostal": "62150", + "codeCommune": "62232", + "libelleAcheminement": "LA COMTE", + "nomCommune": "LA COMTE" }, { - "codePostal": "69870", - "codeCommune": "69217", - "libelleAcheminement": "ST JUST D AVRAY", - "nomCommune": "ST JUST D AVRAY" + "codePostal": "71580", + "codeCommune": "71380", + "libelleAcheminement": "SAILLENARD", + "nomCommune": "SAILLENARD" }, { - "codePostal": "43300", - "codeCommune": "43015", - "libelleAcheminement": "AUVERS", - "nomCommune": "AUVERS" + "codePostal": "19150", + "codeCommune": "19075", + "libelleAcheminement": "ESPAGNAC", + "nomCommune": "ESPAGNAC" }, { - "codePostal": "12190", - "codeCommune": "12098", - "libelleAcheminement": "ESTAING", - "nomCommune": "ESTAING" + "codePostal": "71300", + "codeCommune": "71286", + "libelleAcheminement": "MARY", + "nomCommune": "MARY" }, { - "codePostal": "68480", - "codeCommune": "68184", - "libelleAcheminement": "LIEBSDORF", - "nomCommune": "LIEBSDORF" + "codePostal": "60130", + "codeCommune": "60495", + "libelleAcheminement": "PLAINVAL", + "nomCommune": "PLAINVAL" }, { - "codePostal": "69930", - "codeCommune": "69220", - "libelleAcheminement": "ST LAURENT DE CHAMOUSSET", - "nomCommune": "ST LAURENT DE CHAMOUSSET" + "codePostal": "62240", + "codeCommune": "62255", + "libelleAcheminement": "CREMAREST", + "nomCommune": "CREMAREST" }, { - "codePostal": "43100", - "codeCommune": "43022", - "libelleAcheminement": "BEAUMONT", - "nomCommune": "BEAUMONT" + "codePostal": "71570", + "codeCommune": "71385", + "libelleAcheminement": "ST AMOUR BELLEVUE", + "nomCommune": "ST AMOUR BELLEVUE" }, { - "codePostal": "12450", - "codeCommune": "12102", - "libelleAcheminement": "FLAVIN", - "nomCommune": "FLAVIN" + "codePostal": "19340", + "codeCommune": "19080", + "libelleAcheminement": "EYGURANDE", + "nomCommune": "EYGURANDE" }, { - "codePostal": "68210", - "codeCommune": "68192", - "libelleAcheminement": "VALDIEU LUTRAN", - "nomCommune": "VALDIEU LUTRAN" + "codePostal": "71520", + "codeCommune": "71289", + "libelleAcheminement": "MATOUR", + "nomCommune": "MATOUR" }, { - "codePostal": "69850", - "codeCommune": "69227", - "libelleAcheminement": "ST MARTIN EN HAUT", - "nomCommune": "ST MARTIN EN HAUT" + "codePostal": "60120", + "codeCommune": "60496", + "libelleAcheminement": "PLAINVILLE", + "nomCommune": "PLAINVILLE" }, { - "codePostal": "43700", - "codeCommune": "43032", - "libelleAcheminement": "BLAVOZY", - "nomCommune": "BLAVOZY" + "codePostal": "62780", + "codeCommune": "62261", + "libelleAcheminement": "CUCQ", + "nomCommune": "CUCQ" }, { - "codePostal": "12140", - "codeCommune": "12110", - "libelleAcheminement": "GOLINHAC", - "nomCommune": "GOLINHAC" + "codePostal": "71430", + "codeCommune": "71388", + "libelleAcheminement": "ST AUBIN EN CHAROLLAIS", + "nomCommune": "ST AUBIN EN CHAROLLAIS" }, { - "codePostal": "68140", - "codeCommune": "68193", - "libelleAcheminement": "LUTTENBACH", - "nomCommune": "LUTTENBACH PRES MUNSTER" + "codePostal": "19350", + "codeCommune": "19094", + "libelleAcheminement": "JUILLAC", + "nomCommune": "JUILLAC" }, { - "codePostal": "69270", - "codeCommune": "69233", - "libelleAcheminement": "ST ROMAIN AU MONT D OR", - "nomCommune": "ST ROMAIN AU MONT D OR" + "codePostal": "71640", + "codeCommune": "71292", + "libelleAcheminement": "MELLECEY", + "nomCommune": "MELLECEY" }, { - "codePostal": "43450", - "codeCommune": "43033", - "libelleAcheminement": "BLESLE", - "nomCommune": "BLESLE" + "codePostal": "60640", + "codeCommune": "60502", + "libelleAcheminement": "LE PLESSIS PATTE D OIE", + "nomCommune": "LE PLESSIS PATTE D OIE" }, { - "codePostal": "12230", - "codeCommune": "12115", - "libelleAcheminement": "L HOSPITALET DU LARZAC", - "nomCommune": "L HOSPITALET DU LARZAC" + "codePostal": "62187", + "codeCommune": "62264", + "libelleAcheminement": "DANNES", + "nomCommune": "DANNES" }, { - "codePostal": "68460", - "codeCommune": "68195", - "libelleAcheminement": "LUTTERBACH", - "nomCommune": "LUTTERBACH" + "codePostal": "71300", + "codeCommune": "71390", + "libelleAcheminement": "ST BERAIN SOUS SANVIGNES", + "nomCommune": "ST BERAIN SOUS SANVIGNES" }, { - "codePostal": "69240", - "codeCommune": "69240", - "libelleAcheminement": "ST VINCENT DE REINS", - "nomCommune": "ST VINCENT DE REINS" + "codePostal": "19150", + "codeCommune": "19096", + "libelleAcheminement": "LADIGNAC SUR RONDELLES", + "nomCommune": "LADIGNAC SUR RONDELLES" }, { - "codePostal": "43360", - "codeCommune": "43038", - "libelleAcheminement": "BOURNONCLE ST PIERRE", - "nomCommune": "BOURNONCLE ST PIERRE" + "codePostal": "71390", + "codeCommune": "71296", + "libelleAcheminement": "MESSEY SUR GROSNE", + "nomCommune": "MESSEY SUR GROSNE" }, { - "codePostal": "12310", - "codeCommune": "12120", - "libelleAcheminement": "LAISSAC SEVERAC L EGLISE", - "nomCommune": "LAISSAC SEVERAC L EGLISE" + "codePostal": "60420", + "codeCommune": "60503", + "libelleAcheminement": "LE PLOYRON", + "nomCommune": "LE PLOYRON" }, { - "codePostal": "68510", - "codeCommune": "68197", - "libelleAcheminement": "MAGSTATT LE BAS", - "nomCommune": "MAGSTATT LE BAS" + "codePostal": "62161", + "codeCommune": "62279", + "libelleAcheminement": "DUISANS", + "nomCommune": "DUISANS" }, { - "codePostal": "69440", - "codeCommune": "69241", - "libelleAcheminement": "TALUYERS", - "nomCommune": "TALUYERS" + "codePostal": "71390", + "codeCommune": "71392", + "libelleAcheminement": "ST BOIL", + "nomCommune": "ST BOIL" }, { - "codePostal": "43160", - "codeCommune": "43048", - "libelleAcheminement": "LA CHAISE DIEU", - "nomCommune": "LA CHAISE DIEU" + "codePostal": "19700", + "codeCommune": "19100", + "libelleAcheminement": "LAGRAULIERE", + "nomCommune": "LAGRAULIERE" }, { - "codePostal": "12740", - "codeCommune": "12131", - "libelleAcheminement": "LA LOUBIERE", - "nomCommune": "LA LOUBIERE" + "codePostal": "71190", + "codeCommune": "71297", + "libelleAcheminement": "MESVRES", + "nomCommune": "MESVRES" }, { - "codePostal": "68210", - "codeCommune": "68202", - "libelleAcheminement": "MERTZEN", - "nomCommune": "MERTZEN" + "codePostal": "60430", + "codeCommune": "60504", + "libelleAcheminement": "PONCHON", + "nomCommune": "PONCHON" }, { - "codePostal": "69160", - "codeCommune": "69244", - "libelleAcheminement": "TASSIN LA DEMI LUNE", - "nomCommune": "TASSIN LA DEMI LUNE" + "codePostal": "62156", + "codeCommune": "62280", + "libelleAcheminement": "DURY", + "nomCommune": "DURY" }, { - "codePostal": "43260", - "codeCommune": "43053", - "libelleAcheminement": "CHAMPCLAUSE", - "nomCommune": "CHAMPCLAUSE" + "codePostal": "71340", + "codeCommune": "71393", + "libelleAcheminement": "ST BONNET DE CRAY", + "nomCommune": "ST BONNET DE CRAY" }, { - "codePostal": "12390", - "codeCommune": "12142", - "libelleAcheminement": "MAYRAN", - "nomCommune": "MAYRAN" + "codePostal": "19150", + "codeCommune": "19101", + "libelleAcheminement": "LAGUENNE SUR AVALOUZE", + "nomCommune": "LAGUENNE SUR AVALOUZE" }, { - "codePostal": "68380", - "codeCommune": "68204", - "libelleAcheminement": "METZERAL", - "nomCommune": "METZERAL" + "codePostal": "71260", + "codeCommune": "71305", + "libelleAcheminement": "MONTBELLET", + "nomCommune": "MONTBELLET" }, { - "codePostal": "69240", - "codeCommune": "69248", - "libelleAcheminement": "THIZY LES BOURGS", - "nomCommune": "THIZY LES BOURGS" + "codePostal": "60540", + "codeCommune": "60517", + "libelleAcheminement": "PUISEUX LE HAUBERGER", + "nomCommune": "PUISEUX LE HAUBERGER" }, { - "codePostal": "43100", - "codeCommune": "43055", - "libelleAcheminement": "CHANIAT", - "nomCommune": "CHANIAT" + "codePostal": "62860", + "codeCommune": "62284", + "libelleAcheminement": "ECOURT ST QUENTIN", + "nomCommune": "ECOURT ST QUENTIN" }, { - "codePostal": "12120", - "codeCommune": "12144", - "libelleAcheminement": "MELJAC", - "nomCommune": "MELJAC" + "codePostal": "71470", + "codeCommune": "71401", + "libelleAcheminement": "STE CROIX EN BRESSE", + "nomCommune": "STE CROIX EN BRESSE" }, { - "codePostal": "68890", - "codeCommune": "68205", - "libelleAcheminement": "MEYENHEIM", - "nomCommune": "MEYENHEIM" + "codePostal": "19210", + "codeCommune": "19121", + "libelleAcheminement": "LUBERSAC", + "nomCommune": "LUBERSAC" }, { - "codePostal": "69890", - "codeCommune": "69250", - "libelleAcheminement": "LA TOUR DE SALVAGNY", - "nomCommune": "LA TOUR DE SALVAGNY" + "codePostal": "71620", + "codeCommune": "71312", + "libelleAcheminement": "MONTCOY", + "nomCommune": "MONTCOY" }, { - "codePostal": "43300", - "codeCommune": "43056", - "libelleAcheminement": "CHANTEUGES", - "nomCommune": "CHANTEUGES" + "codePostal": "60130", + "codeCommune": "60522", + "libelleAcheminement": "QUINQUEMPOIX", + "nomCommune": "QUINQUEMPOIX" }, { - "codePostal": "12360", - "codeCommune": "12147", - "libelleAcheminement": "MONTAGNOL", - "nomCommune": "MONTAGNOL" + "codePostal": "62128", + "codeCommune": "62285", + "libelleAcheminement": "ECOUST ST MEIN", + "nomCommune": "ECOUST ST MEIN" }, { - "codePostal": "68480", - "codeCommune": "68212", - "libelleAcheminement": "MOERNACH", - "nomCommune": "MOERNACH" + "codePostal": "71210", + "codeCommune": "71412", + "libelleAcheminement": "ST EUSEBE", + "nomCommune": "ST EUSEBE" }, { - "codePostal": "69100", - "codeCommune": "69266", - "libelleAcheminement": "VILLEURBANNE", - "nomCommune": "VILLEURBANNE" + "codePostal": "19360", + "codeCommune": "19123", + "libelleAcheminement": "MALEMORT", + "nomCommune": "MALEMORT" }, { - "codePostal": "43300", - "codeCommune": "43065", - "libelleAcheminement": "CHASTEL", - "nomCommune": "CHASTEL" + "codePostal": "71400", + "codeCommune": "71313", + "libelleAcheminement": "MONTHELON", + "nomCommune": "MONTHELON" }, { - "codePostal": "12220", - "codeCommune": "12148", - "libelleAcheminement": "MONTBAZENS", - "nomCommune": "MONTBAZENS" + "codePostal": "60155", + "codeCommune": "60523", + "libelleAcheminement": "RAINVILLERS", + "nomCommune": "RAINVILLERS" }, { - "codePostal": "68470", - "codeCommune": "68213", - "libelleAcheminement": "MOLLAU", - "nomCommune": "MOLLAU" + "codePostal": "62145", + "codeCommune": "62295", + "libelleAcheminement": "ENQUIN LEZ GUINEGATTE", + "nomCommune": "ENQUIN LEZ GUINEGATTE" }, { - "codePostal": "69390", - "codeCommune": "69268", - "libelleAcheminement": "VOURLES", - "nomCommune": "VOURLES" + "codePostal": "71350", + "codeCommune": "71423", + "libelleAcheminement": "ST GERVAIS EN VALLIERE", + "nomCommune": "ST GERVAIS EN VALLIERE" }, { - "codePostal": "43190", - "codeCommune": "43069", - "libelleAcheminement": "CHENEREILLES", - "nomCommune": "CHENEREILLES" + "codePostal": "19510", + "codeCommune": "19129", + "libelleAcheminement": "MASSERET", + "nomCommune": "MASSERET" }, { - "codePostal": "12200", - "codeCommune": "12150", - "libelleAcheminement": "MONTEILS", - "nomCommune": "MONTEILS" + "codePostal": "71310", + "codeCommune": "71314", + "libelleAcheminement": "MONTJAY", + "nomCommune": "MONTJAY" }, { - "codePostal": "68210", - "codeCommune": "68215", - "libelleAcheminement": "MONTREUX VIEUX", - "nomCommune": "MONTREUX VIEUX" + "codePostal": "60170", + "codeCommune": "60537", + "libelleAcheminement": "RIBECOURT DRESLINCOURT", + "nomCommune": "RIBECOURT DRESLINCOURT" }, { - "codePostal": "69510", - "codeCommune": "69269", - "libelleAcheminement": "YZERON", - "nomCommune": "YZERON" + "codePostal": "62134", + "codeCommune": "62301", + "libelleAcheminement": "EQUIRRE", + "nomCommune": "EQUIRRE" }, { - "codePostal": "43160", - "codeCommune": "43076", - "libelleAcheminement": "CONNANGLES", - "nomCommune": "CONNANGLES" + "codePostal": "71510", + "codeCommune": "71425", + "libelleAcheminement": "ST GILLES", + "nomCommune": "ST GILLES" }, { - "codePostal": "12380", - "codeCommune": "12152", - "libelleAcheminement": "MONTFRANC", - "nomCommune": "MONTFRANC" + "codePostal": "19250", + "codeCommune": "19130", + "libelleAcheminement": "MAUSSAC", + "nomCommune": "MAUSSAC" }, { - "codePostal": "68780", - "codeCommune": "68219", - "libelleAcheminement": "LE HAUT SOULTZBACH", - "nomCommune": "LE HAUT SOULTZBACH" + "codePostal": "71600", + "codeCommune": "71331", + "libelleAcheminement": "NOCHIZE", + "nomCommune": "NOCHIZE" }, { - "codePostal": "69150", - "codeCommune": "69275", - "libelleAcheminement": "DECINES CHARPIEU", - "nomCommune": "DECINES CHARPIEU" + "codePostal": "60800", + "codeCommune": "60543", + "libelleAcheminement": "ROCQUEMONT", + "nomCommune": "ROCQUEMONT" }, { - "codePostal": "43230", - "codeCommune": "43086", - "libelleAcheminement": "DOMEYRAT", - "nomCommune": "DOMEYRAT" + "codePostal": "62179", + "codeCommune": "62307", + "libelleAcheminement": "ESCALLES", + "nomCommune": "ESCALLES" }, { - "codePostal": "12200", - "codeCommune": "12159", - "libelleAcheminement": "MORLHON LE HAUT", - "nomCommune": "MORLHON LE HAUT" + "codePostal": "71640", + "codeCommune": "71430", + "libelleAcheminement": "ST JEAN DE VAUX", + "nomCommune": "ST JEAN DE VAUX" }, { - "codePostal": "68100", - "codeCommune": "68224", - "libelleAcheminement": "MULHOUSE", - "nomCommune": "MULHOUSE" + "codePostal": "19800", + "codeCommune": "19137", + "libelleAcheminement": "MEYRIGNAC L EGLISE", + "nomCommune": "MEYRIGNAC L EGLISE" }, { - "codePostal": "69360", - "codeCommune": "69291", - "libelleAcheminement": "ST SYMPHORIEN D OZON", - "nomCommune": "ST SYMPHORIEN D OZON" + "codePostal": "71220", + "codeCommune": "71344", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "43220", - "codeCommune": "43087", - "libelleAcheminement": "DUNIERES", - "nomCommune": "DUNIERES" + "codePostal": "60120", + "codeCommune": "60544", + "libelleAcheminement": "ROCQUENCOURT", + "nomCommune": "ROCQUENCOURT" }, { - "codePostal": "12160", - "codeCommune": "12162", - "libelleAcheminement": "MOYRAZES", - "nomCommune": "MOYRAZES" + "codePostal": "62145", + "codeCommune": "62313", + "libelleAcheminement": "ESTREE BLANCHE", + "nomCommune": "ESTREE BLANCHE" }, { - "codePostal": "68740", - "codeCommune": "68230", - "libelleAcheminement": "NAMBSHEIM", - "nomCommune": "NAMBSHEIM" + "codePostal": "71800", + "codeCommune": "71437", + "libelleAcheminement": "ST LAURENT EN BRIONNAIS", + "nomCommune": "ST LAURENT EN BRIONNAIS" }, { - "codePostal": "69125", - "codeCommune": "69299", - "libelleAcheminement": "COLOMBIER SAUGNIEU", - "nomCommune": "COLOMBIER SAUGNIEU" + "codePostal": "19400", + "codeCommune": "19140", + "libelleAcheminement": "MONCEAUX SUR DORDOGNE", + "nomCommune": "MONCEAUX SUR DORDOGNE" }, { - "codePostal": "43100", - "codeCommune": "43096", - "libelleAcheminement": "FONTANNES", - "nomCommune": "FONTANNES" + "codePostal": "71290", + "codeCommune": "71366", + "libelleAcheminement": "RATENELLE", + "nomCommune": "RATENELLE" }, { - "codePostal": "12370", - "codeCommune": "12163", - "libelleAcheminement": "MURASSON", - "nomCommune": "MURASSON" + "codePostal": "60360", + "codeCommune": "60549", + "libelleAcheminement": "ROTANGY", + "nomCommune": "ROTANGY" }, { - "codePostal": "68230", - "codeCommune": "68237", - "libelleAcheminement": "NIEDERMORSCHWIHR", - "nomCommune": "NIEDERMORSCHWIHR" + "codePostal": "62170", + "codeCommune": "62315", + "libelleAcheminement": "ESTREELLES", + "nomCommune": "ESTREELLES" }, { - "codePostal": "69001", - "codeCommune": "69381", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 01" + "codePostal": "71360", + "codeCommune": "71438", + "libelleAcheminement": "ST LEGER DU BOIS", + "nomCommune": "ST LEGER DU BOIS" }, { - "codePostal": "43300", - "codeCommune": "43112", - "libelleAcheminement": "LANGEAC", - "nomCommune": "LANGEAC" + "codePostal": "19600", + "codeCommune": "19147", + "libelleAcheminement": "NESPOULS", + "nomCommune": "NESPOULS" }, { - "codePostal": "12700", - "codeCommune": "12170", - "libelleAcheminement": "NAUSSAC", - "nomCommune": "NAUSSAC" + "codePostal": "71960", + "codeCommune": "71371", + "libelleAcheminement": "LA ROCHE VINEUSE", + "nomCommune": "LA ROCHE VINEUSE" }, { - "codePostal": "68680", - "codeCommune": "68238", - "libelleAcheminement": "NIFFER", - "nomCommune": "NIFFER" + "codePostal": "60690", + "codeCommune": "60550", + "libelleAcheminement": "ROTHOIS", + "nomCommune": "ROTHOIS" }, { - "codePostal": "69008", - "codeCommune": "69388", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 08" + "codePostal": "62161", + "codeCommune": "62320", + "libelleAcheminement": "ETRUN", + "nomCommune": "ETRUN" }, { - "codePostal": "43100", - "codeCommune": "43117", - "libelleAcheminement": "LAVAUDIEU", - "nomCommune": "LAVAUDIEU" + "codePostal": "71520", + "codeCommune": "71441", + "libelleAcheminement": "ST LEGER SOUS LA BUSSIERE", + "nomCommune": "ST LEGER SOUS LA BUSSIERE" }, { - "codePostal": "12850", - "codeCommune": "12176", - "libelleAcheminement": "ONET LE CHATEAU", - "nomCommune": "ONET LE CHATEAU" + "codePostal": "19410", + "codeCommune": "19162", + "libelleAcheminement": "PERPEZAC LE NOIR", + "nomCommune": "PERPEZAC LE NOIR" }, { - "codePostal": "68127", - "codeCommune": "68242", - "libelleAcheminement": "OBERHERGHEIM", - "nomCommune": "OBERHERGHEIM" + "codePostal": "71550", + "codeCommune": "71376", + "libelleAcheminement": "ROUSSILLON EN MORVAN", + "nomCommune": "ROUSSILLON EN MORVAN" }, { - "codePostal": "70210", - "codeCommune": "70010", - "libelleAcheminement": "ALAINCOURT", - "nomCommune": "ALAINCOURT" + "codePostal": "60420", + "codeCommune": "60556", + "libelleAcheminement": "ROYAUCOURT", + "nomCommune": "ROYAUCOURT" }, { - "codePostal": "43380", - "codeCommune": "43118", - "libelleAcheminement": "LAVOUTE CHILHAC", - "nomCommune": "LAVOUTE CHILHAC" + "codePostal": "62260", + "codeCommune": "62328", + "libelleAcheminement": "FERFAY", + "nomCommune": "FERFAY" }, { - "codePostal": "12350", - "codeCommune": "12190", - "libelleAcheminement": "PREVINQUIERES", - "nomCommune": "PREVINQUIERES" + "codePostal": "71620", + "codeCommune": "71462", + "libelleAcheminement": "ST MAURICE EN RIVIERE", + "nomCommune": "ST MAURICE EN RIVIERE" }, { - "codePostal": "68480", - "codeCommune": "68243", - "libelleAcheminement": "OBERLARG", - "nomCommune": "OBERLARG" + "codePostal": "19290", + "codeCommune": "19164", + "libelleAcheminement": "PEYRELEVADE", + "nomCommune": "PEYRELEVADE" }, { - "codePostal": "70160", - "codeCommune": "70012", - "libelleAcheminement": "AMANCE", - "nomCommune": "AMANCE" + "codePostal": "71260", + "codeCommune": "71383", + "libelleAcheminement": "ST ALBAIN", + "nomCommune": "ST ALBAIN" }, { - "codePostal": "43360", - "codeCommune": "43123", - "libelleAcheminement": "LORLANGES", - "nomCommune": "LORLANGES" + "codePostal": "60690", + "codeCommune": "60557", + "libelleAcheminement": "ROY BOISSY", + "nomCommune": "ROY BOISSY" }, { - "codePostal": "12370", - "codeCommune": "12192", - "libelleAcheminement": "MOUNES PROHENCOUX", - "nomCommune": "MOUNES PROHENCOUX" + "codePostal": "62223", + "codeCommune": "62331", + "libelleAcheminement": "FEUCHY", + "nomCommune": "FEUCHY" }, { - "codePostal": "68150", - "codeCommune": "68252", - "libelleAcheminement": "OSTHEIM", - "nomCommune": "OSTHEIM" + "codePostal": "71740", + "codeCommune": "71463", + "libelleAcheminement": "ST MAURICE LES CHATEAUNEUF", + "nomCommune": "ST MAURICE LES CHATEAUNEUF" }, { - "codePostal": "70000", - "codeCommune": "70020", - "libelleAcheminement": "ANDELARROT", - "nomCommune": "ANDELARROT" + "codePostal": "19260", + "codeCommune": "19165", + "libelleAcheminement": "PEYRISSAC", + "nomCommune": "PEYRISSAC" }, { - "codePostal": "43210", - "codeCommune": "43127", - "libelleAcheminement": "MALVALETTE", - "nomCommune": "MALVALETTE" + "codePostal": "71440", + "codeCommune": "71386", + "libelleAcheminement": "ST ANDRE EN BRESSE", + "nomCommune": "ST ANDRE EN BRESSE" }, { - "codePostal": "12390", - "codeCommune": "12199", - "libelleAcheminement": "RIGNAC", - "nomCommune": "RIGNAC" + "codePostal": "60510", + "codeCommune": "60559", + "libelleAcheminement": "LA RUE ST PIERRE", + "nomCommune": "LA RUE ST PIERRE" }, { - "codePostal": "68510", - "codeCommune": "68265", - "libelleAcheminement": "RANTZWILLER", - "nomCommune": "RANTZWILLER" + "codePostal": "62173", + "codeCommune": "62332", + "libelleAcheminement": "FICHEUX", + "nomCommune": "FICHEUX" }, { - "codePostal": "70800", - "codeCommune": "70023", - "libelleAcheminement": "ANJEUX", - "nomCommune": "ANJEUX" + "codePostal": "71490", + "codeCommune": "71464", + "libelleAcheminement": "ST MAURICE LES COUCHES", + "nomCommune": "ST MAURICE LES COUCHES" }, { - "codePostal": "43300", - "codeCommune": "43132", - "libelleAcheminement": "MAZEYRAT D ALLIER", - "nomCommune": "MAZEYRAT D ALLIER" + "codePostal": "19200", + "codeCommune": "19167", + "libelleAcheminement": "CONFOLENT PORT DIEU", + "nomCommune": "CONFOLENT PORT DIEU" }, { - "codePostal": "12540", - "codeCommune": "12212", - "libelleAcheminement": "ST BEAULIZE", - "nomCommune": "ST BEAULIZE" + "codePostal": "71140", + "codeCommune": "71389", + "libelleAcheminement": "ST AUBIN SUR LOIRE", + "nomCommune": "ST AUBIN SUR LOIRE" }, { - "codePostal": "68120", - "codeCommune": "68270", - "libelleAcheminement": "RICHWILLER", - "nomCommune": "RICHWILLER" + "codePostal": "60810", + "codeCommune": "60560", + "libelleAcheminement": "RULLY", + "nomCommune": "RULLY" }, { - "codePostal": "70100", - "codeCommune": "70024", - "libelleAcheminement": "APREMONT", - "nomCommune": "APREMONT" + "codePostal": "62134", + "codeCommune": "62333", + "libelleAcheminement": "FIEFS", + "nomCommune": "FIEFS" }, { - "codePostal": "43300", - "codeCommune": "43132", - "libelleAcheminement": "MAZEYRAT D ALLIER", - "nomCommune": "MAZEYRAT D ALLIER" + "codePostal": "71520", + "codeCommune": "71469", + "libelleAcheminement": "ST PIERRE LE VIEUX", + "nomCommune": "ST PIERRE LE VIEUX" }, { - "codePostal": "12470", - "codeCommune": "12214", - "libelleAcheminement": "ST CHELY D AUBRAC", - "nomCommune": "ST CHELY D AUBRAC" + "codePostal": "19120", + "codeCommune": "19170", + "libelleAcheminement": "QUEYSSAC LES VIGNES", + "nomCommune": "QUEYSSAC LES VIGNES" }, { - "codePostal": "68590", - "codeCommune": "68280", - "libelleAcheminement": "RODERN", - "nomCommune": "RODERN" + "codePostal": "71510", + "codeCommune": "71391", + "libelleAcheminement": "ST BERAIN SUR DHEUNE", + "nomCommune": "ST BERAIN SUR DHEUNE" }, { - "codePostal": "70110", - "codeCommune": "70031", - "libelleAcheminement": "ATHESANS ETROITEFONTAINE", - "nomCommune": "ATHESANS ETROITEFONTAINE" + "codePostal": "60420", + "codeCommune": "60564", + "libelleAcheminement": "SAINS MORAINVILLERS", + "nomCommune": "SAINS MORAINVILLERS" }, { - "codePostal": "43290", - "codeCommune": "43142", - "libelleAcheminement": "MONTREGARD", - "nomCommune": "MONTREGARD" + "codePostal": "62840", + "codeCommune": "62338", + "libelleAcheminement": "FLEURBAIX", + "nomCommune": "FLEURBAIX" }, { - "codePostal": "12210", - "codeCommune": "12223", - "libelleAcheminement": "ARGENCES EN AUBRAC", - "nomCommune": "ARGENCES EN AUBRAC" + "codePostal": "71520", + "codeCommune": "71470", + "libelleAcheminement": "ST POINT", + "nomCommune": "ST POINT" }, { - "codePostal": "68250", - "codeCommune": "68287", - "libelleAcheminement": "ROUFFACH", - "nomCommune": "ROUFFACH" + "codePostal": "19260", + "codeCommune": "19172", + "libelleAcheminement": "RILHAC TREIGNAC", + "nomCommune": "RILHAC TREIGNAC" }, { - "codePostal": "70500", - "codeCommune": "70035", - "libelleAcheminement": "AUGICOURT", - "nomCommune": "AUGICOURT" + "codePostal": "71250", + "codeCommune": "71397", + "libelleAcheminement": "STE CECILE", + "nomCommune": "STE CECILE" }, { - "codePostal": "43260", - "codeCommune": "43143", - "libelleAcheminement": "MONTUSCLAT", - "nomCommune": "MONTUSCLAT" + "codePostal": "60650", + "codeCommune": "60567", + "libelleAcheminement": "ST AUBIN EN BRAY", + "nomCommune": "ST AUBIN EN BRAY" }, { - "codePostal": "12140", - "codeCommune": "12226", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "62134", + "codeCommune": "62339", + "libelleAcheminement": "FLEURY", + "nomCommune": "FLEURY" }, { - "codePostal": "68550", - "codeCommune": "68292", - "libelleAcheminement": "ST AMARIN", - "nomCommune": "ST AMARIN" + "codePostal": "71990", + "codeCommune": "71472", + "libelleAcheminement": "ST PRIX", + "nomCommune": "ST PRIX" }, { - "codePostal": "70150", - "codeCommune": "70045", - "libelleAcheminement": "AVRIGNEY VIREY", - "nomCommune": "AVRIGNEY VIREY" + "codePostal": "19390", + "codeCommune": "19181", + "libelleAcheminement": "ST AUGUSTIN", + "nomCommune": "ST AUGUSTIN" }, { - "codePostal": "43510", - "codeCommune": "43145", - "libelleAcheminement": "OUIDES", - "nomCommune": "OUIDES" + "codePostal": "71370", + "codeCommune": "71398", + "libelleAcheminement": "ST CHRISTOPHE EN BRESSE", + "nomCommune": "ST CHRISTOPHE EN BRESSE" }, { - "codePostal": "12170", - "codeCommune": "12230", - "libelleAcheminement": "ST JEAN DELNOUS", - "nomCommune": "ST JEAN DELNOUS" + "codePostal": "60790", + "codeCommune": "60570", + "libelleAcheminement": "ST CREPIN IBOUVILLERS", + "nomCommune": "ST CREPIN IBOUVILLERS" }, { - "codePostal": "68160", - "codeCommune": "68294", - "libelleAcheminement": "STE CROIX AUX MINES", - "nomCommune": "STE CROIX AUX MINES" + "codePostal": "62810", + "codeCommune": "62347", + "libelleAcheminement": "FOSSEUX", + "nomCommune": "FOSSEUX" }, { - "codePostal": "70270", - "codeCommune": "70062", - "libelleAcheminement": "BELMONT", - "nomCommune": "BELMONT" + "codePostal": "71230", + "codeCommune": "71477", + "libelleAcheminement": "ST ROMAIN SOUS GOURDON", + "nomCommune": "ST ROMAIN SOUS GOURDON" }, { - "codePostal": "43290", - "codeCommune": "43159", - "libelleAcheminement": "RAUCOULES", - "nomCommune": "RAUCOULES" + "codePostal": "19700", + "codeCommune": "19194", + "libelleAcheminement": "ST CLEMENT", + "nomCommune": "ST CLEMENT" }, { - "codePostal": "12120", - "codeCommune": "12234", - "libelleAcheminement": "STE JULIETTE SUR VIAUR", - "nomCommune": "STE JULIETTE SUR VIAUR" + "codePostal": "71800", + "codeCommune": "71399", + "libelleAcheminement": "ST CHRISTOPHE EN BRIONNAIS", + "nomCommune": "ST CHRISTOPHE EN BRIONNAIS" }, { - "codePostal": "68360", - "codeCommune": "68315", - "libelleAcheminement": "SOULTZ HAUT RHIN", - "nomCommune": "SOULTZ HAUT RHIN" + "codePostal": "60380", + "codeCommune": "60571", + "libelleAcheminement": "ST DENISCOURT", + "nomCommune": "ST DENISCOURT" }, { - "codePostal": "70230", - "codeCommune": "70065", - "libelleAcheminement": "BESNANS", - "nomCommune": "BESNANS" + "codePostal": "62740", + "codeCommune": "62351", + "libelleAcheminement": "FOUQUIERES LES LENS", + "nomCommune": "FOUQUIERES LES LENS" }, { - "codePostal": "43800", - "codeCommune": "43165", - "libelleAcheminement": "ROSIERES", - "nomCommune": "ROSIERES" + "codePostal": "71200", + "codeCommune": "71479", + "libelleAcheminement": "ST SERNIN DU BOIS", + "nomCommune": "ST SERNIN DU BOIS" }, { - "codePostal": "12170", - "codeCommune": "12235", - "libelleAcheminement": "ST JUST SUR VIAUR", - "nomCommune": "ST JUST SUR VIAUR" + "codePostal": "19130", + "codeCommune": "19195", + "libelleAcheminement": "ST CYPRIEN", + "nomCommune": "ST CYPRIEN" }, { - "codePostal": "68140", - "codeCommune": "68317", - "libelleAcheminement": "SOULTZEREN", - "nomCommune": "SOULTZEREN" + "codePostal": "71240", + "codeCommune": "71402", + "libelleAcheminement": "ST CYR", + "nomCommune": "ST CYR" }, { - "codePostal": "70500", - "codeCommune": "70066", - "libelleAcheminement": "BETAUCOURT", - "nomCommune": "BETAUCOURT" + "codePostal": "60730", + "codeCommune": "60575", + "libelleAcheminement": "STE GENEVIEVE", + "nomCommune": "STE GENEVIEVE" }, { - "codePostal": "43300", - "codeCommune": "43167", - "libelleAcheminement": "ST ARCONS D ALLIER", - "nomCommune": "ST ARCONS D ALLIER" + "codePostal": "62185", + "codeCommune": "62360", + "libelleAcheminement": "FRETHUN", + "nomCommune": "FRETHUN" }, { - "codePostal": "12300", - "codeCommune": "12240", - "libelleAcheminement": "ST PARTHEM", - "nomCommune": "ST PARTHEM" + "codePostal": "71510", + "codeCommune": "71480", + "libelleAcheminement": "ST SERNIN DU PLAIN", + "nomCommune": "ST SERNIN DU PLAIN" }, { - "codePostal": "68700", - "codeCommune": "68322", - "libelleAcheminement": "STEINBACH", - "nomCommune": "STEINBACH" + "codePostal": "19200", + "codeCommune": "19199", + "libelleAcheminement": "ST ETIENNE AUX CLOS", + "nomCommune": "ST ETIENNE AUX CLOS" }, { - "codePostal": "70300", - "codeCommune": "70067", - "libelleAcheminement": "BETONCOURT LES BROTTE", - "nomCommune": "BETONCOURT LES BROTTE" + "codePostal": "71390", + "codeCommune": "71426", + "libelleAcheminement": "STE HELENE", + "nomCommune": "STE HELENE" }, { - "codePostal": "43420", - "codeCommune": "43180", - "libelleAcheminement": "ST ETIENNE DU VIGAN", - "nomCommune": "ST ETIENNE DU VIGAN" + "codePostal": "60410", + "codeCommune": "60578", + "libelleAcheminement": "SAINTINES", + "nomCommune": "SAINTINES" }, { - "codePostal": "12410", - "codeCommune": "12253", - "libelleAcheminement": "SALLES CURAN", - "nomCommune": "SALLES CURAN" + "codePostal": "62690", + "codeCommune": "62363", + "libelleAcheminement": "FREVIN CAPELLE", + "nomCommune": "FREVIN CAPELLE" }, { - "codePostal": "68780", - "codeCommune": "68326", - "libelleAcheminement": "STERNENBERG", - "nomCommune": "STERNENBERG" + "codePostal": "71230", + "codeCommune": "71486", + "libelleAcheminement": "ST VALLIER", + "nomCommune": "ST VALLIER" }, { - "codePostal": "70190", - "codeCommune": "70084", - "libelleAcheminement": "BOULOT", - "nomCommune": "BOULOT" + "codePostal": "19330", + "codeCommune": "19207", + "libelleAcheminement": "ST GERMAIN LES VERGNES", + "nomCommune": "ST GERMAIN LES VERGNES" }, { - "codePostal": "43550", - "codeCommune": "43186", - "libelleAcheminement": "ST FRONT", - "nomCommune": "ST FRONT" + "codePostal": "71800", + "codeCommune": "71433", + "libelleAcheminement": "ST JULIEN DE CIVRY", + "nomCommune": "ST JULIEN DE CIVRY" }, { - "codePostal": "12330", - "codeCommune": "12254", - "libelleAcheminement": "SALLES LA SOURCE", - "nomCommune": "SALLES LA SOURCE" + "codePostal": "60700", + "codeCommune": "60587", + "libelleAcheminement": "ST MARTIN LONGUEAU", + "nomCommune": "ST MARTIN LONGUEAU" }, { - "codePostal": "68510", - "codeCommune": "68327", - "libelleAcheminement": "STETTEN", - "nomCommune": "STETTEN" + "codePostal": "62121", + "codeCommune": "62374", + "libelleAcheminement": "GOMIECOURT", + "nomCommune": "GOMIECOURT" }, { - "codePostal": "70190", - "codeCommune": "70088", - "libelleAcheminement": "BOURGUIGNON LES LA CHARITE", - "nomCommune": "BOURGUIGNON LES LA CHARITE" + "codePostal": "71600", + "codeCommune": "71491", + "libelleAcheminement": "ST YAN", + "nomCommune": "ST YAN" }, { - "codePostal": "43340", - "codeCommune": "43192", - "libelleAcheminement": "ST HAON", - "nomCommune": "ST HAON" + "codePostal": "19170", + "codeCommune": "19209", + "libelleAcheminement": "ST HILAIRE LES COURBES", + "nomCommune": "ST HILAIRE LES COURBES" }, { - "codePostal": "12120", - "codeCommune": "12255", - "libelleAcheminement": "SALMIECH", - "nomCommune": "SALMIECH" + "codePostal": "71110", + "codeCommune": "71434", + "libelleAcheminement": "ST JULIEN DE JONZY", + "nomCommune": "ST JULIEN DE JONZY" }, { - "codePostal": "68140", - "codeCommune": "68329", - "libelleAcheminement": "STOSSWIHR", - "nomCommune": "STOSSWIHR" + "codePostal": "60660", + "codeCommune": "60601", + "libelleAcheminement": "ST VAAST LES MELLO", + "nomCommune": "ST VAAST LES MELLO" }, { - "codePostal": "70140", - "codeCommune": "70092", - "libelleAcheminement": "BRESILLEY", - "nomCommune": "BRESILLEY" + "codePostal": "62530", + "codeCommune": "62380", + "libelleAcheminement": "GOUY SERVINS", + "nomCommune": "GOUY SERVINS" }, { - "codePostal": "43390", - "codeCommune": "43193", - "libelleAcheminement": "ST HILAIRE", - "nomCommune": "ST HILAIRE" + "codePostal": "71360", + "codeCommune": "71493", + "libelleAcheminement": "SAISY", + "nomCommune": "SAISY" }, { - "codePostal": "12440", - "codeCommune": "12258", - "libelleAcheminement": "LA SALVETAT PEYRALES", - "nomCommune": "LA SALVETAT PEYRALES" + "codePostal": "19210", + "codeCommune": "19216", + "libelleAcheminement": "ST JULIEN LE VENDOMOIS", + "nomCommune": "ST JULIEN LE VENDOMOIS" }, { - "codePostal": "68130", - "codeCommune": "68333", - "libelleAcheminement": "TAGSDORF", - "nomCommune": "TAGSDORF" + "codePostal": "71210", + "codeCommune": "71436", + "libelleAcheminement": "ST LAURENT D ANDENAY", + "nomCommune": "ST LAURENT D ANDENAY" }, { - "codePostal": "70300", - "codeCommune": "70093", - "libelleAcheminement": "BREUCHES", - "nomCommune": "BREUCHES" + "codePostal": "60220", + "codeCommune": "60602", + "libelleAcheminement": "ST VALERY", + "nomCommune": "ST VALERY" }, { - "codePostal": "43260", - "codeCommune": "43194", - "libelleAcheminement": "ST HOSTIEN", - "nomCommune": "ST HOSTIEN" + "codePostal": "62140", + "codeCommune": "62398", + "libelleAcheminement": "GUISY", + "nomCommune": "GUISY" }, { - "codePostal": "12740", - "codeCommune": "12264", - "libelleAcheminement": "SEBAZAC CONCOURES", - "nomCommune": "SEBAZAC CONCOURES" + "codePostal": "71460", + "codeCommune": "71498", + "libelleAcheminement": "SANTILLY", + "nomCommune": "SANTILLY" }, { - "codePostal": "68121", - "codeCommune": "68344", - "libelleAcheminement": "URBES", - "nomCommune": "URBES" + "codePostal": "19210", + "codeCommune": "19230", + "libelleAcheminement": "ST PARDOUX CORBIER", + "nomCommune": "ST PARDOUX CORBIER" }, { - "codePostal": "70280", - "codeCommune": "70094", - "libelleAcheminement": "BREUCHOTTE", - "nomCommune": "BREUCHOTTE" + "codePostal": "71460", + "codeCommune": "71446", + "libelleAcheminement": "ST MARCELIN DE CRAY", + "nomCommune": "ST MARCELIN DE CRAY" }, { - "codePostal": "43380", - "codeCommune": "43195", - "libelleAcheminement": "ST ILPIZE", - "nomCommune": "ST ILPIZE" + "codePostal": "60210", + "codeCommune": "60605", + "libelleAcheminement": "SARNOIS", + "nomCommune": "SARNOIS" }, { - "codePostal": "12190", - "codeCommune": "12265", - "libelleAcheminement": "SEBRAZAC", - "nomCommune": "SEBRAZAC" + "codePostal": "62570", + "codeCommune": "62403", + "libelleAcheminement": "HALLINES", + "nomCommune": "HALLINES" }, { - "codePostal": "68600", - "codeCommune": "68352", - "libelleAcheminement": "VOLGELSHEIM", - "nomCommune": "VOLGELSHEIM" + "codePostal": "71410", + "codeCommune": "71499", + "libelleAcheminement": "SANVIGNES LES MINES", + "nomCommune": "SANVIGNES LES MINES" }, { - "codePostal": "70300", - "codeCommune": "70098", - "libelleAcheminement": "BROTTE LES LUXEUIL", - "nomCommune": "BROTTE LES LUXEUIL" + "codePostal": "19250", + "codeCommune": "19244", + "libelleAcheminement": "ST SULPICE LES BOIS", + "nomCommune": "ST SULPICE LES BOIS" }, { - "codePostal": "43500", - "codeCommune": "43196", - "libelleAcheminement": "ST JEAN D AUBRIGOUX", - "nomCommune": "ST JEAN D AUBRIGOUX" + "codePostal": "71640", + "codeCommune": "71447", + "libelleAcheminement": "ST MARD DE VAUX", + "nomCommune": "ST MARD DE VAUX" }, { - "codePostal": "12170", - "codeCommune": "12267", - "libelleAcheminement": "LA SELVE", - "nomCommune": "LA SELVE" + "codePostal": "60650", + "codeCommune": "60609", + "libelleAcheminement": "SAVIGNIES", + "nomCommune": "SAVIGNIES" }, { - "codePostal": "68130", - "codeCommune": "68353", - "libelleAcheminement": "WAHLBACH", - "nomCommune": "WAHLBACH" + "codePostal": "62118", + "codeCommune": "62405", + "libelleAcheminement": "HAMBLAIN LES PRES", + "nomCommune": "HAMBLAIN LES PRES" }, { - "codePostal": "70180", - "codeCommune": "70099", - "libelleAcheminement": "BROTTE LES RAY", - "nomCommune": "BROTTE LES RAY" + "codePostal": "71460", + "codeCommune": "71507", + "libelleAcheminement": "SAVIGNY SUR GROSNE", + "nomCommune": "SAVIGNY SUR GROSNE" }, { - "codePostal": "43230", - "codeCommune": "43219", - "libelleAcheminement": "ST PREJET ARMANDON", - "nomCommune": "ST PREJET ARMANDON" + "codePostal": "19800", + "codeCommune": "19251", + "libelleAcheminement": "SARRAN", + "nomCommune": "SARRAN" }, { - "codePostal": "12150", - "codeCommune": "12270", - "libelleAcheminement": "SEVERAC D AVEYRON", - "nomCommune": "SEVERAC D AVEYRON" + "codePostal": "71460", + "codeCommune": "71458", + "libelleAcheminement": "ST MARTIN LA PATROUILLE", + "nomCommune": "ST MARTIN LA PATROUILLE" }, { - "codePostal": "68510", - "codeCommune": "68357", - "libelleAcheminement": "WALTENHEIM", - "nomCommune": "WALTENHEIM" + "codePostal": "60300", + "codeCommune": "60612", + "libelleAcheminement": "SENLIS", + "nomCommune": "SENLIS" }, { - "codePostal": "70140", - "codeCommune": "70101", - "libelleAcheminement": "BROYE AUBIGNEY MONTSEUGNY", - "nomCommune": "BROYE AUBIGNEY MONTSEUGNY" + "codePostal": "62190", + "codeCommune": "62407", + "libelleAcheminement": "HAM EN ARTOIS", + "nomCommune": "HAM EN ARTOIS" }, { - "codePostal": "43580", - "codeCommune": "43221", - "libelleAcheminement": "ST PRIVAT D ALLIER", - "nomCommune": "ST PRIVAT D ALLIER" + "codePostal": "71110", + "codeCommune": "71510", + "libelleAcheminement": "SEMUR EN BRIONNAIS", + "nomCommune": "SEMUR EN BRIONNAIS" }, { - "codePostal": "12150", - "codeCommune": "12270", - "libelleAcheminement": "SEVERAC D AVEYRON", - "nomCommune": "SEVERAC D AVEYRON" + "codePostal": "19160", + "codeCommune": "19256", + "libelleAcheminement": "SERANDON", + "nomCommune": "SERANDON" }, { - "codePostal": "68960", - "codeCommune": "68371", - "libelleAcheminement": "WILLER", - "nomCommune": "WILLER" + "codePostal": "71460", + "codeCommune": "71465", + "libelleAcheminement": "ST MICAUD", + "nomCommune": "ST MICAUD" }, { - "codePostal": "70280", - "codeCommune": "70103", - "libelleAcheminement": "LA BRUYERE", - "nomCommune": "LA BRUYERE" + "codePostal": "60120", + "codeCommune": "60615", + "libelleAcheminement": "SEREVILLERS", + "nomCommune": "SEREVILLERS" }, { - "codePostal": "43800", - "codeCommune": "43230", - "libelleAcheminement": "ST VINCENT", - "nomCommune": "ST VINCENT" + "codePostal": "62124", + "codeCommune": "62410", + "libelleAcheminement": "HAPLINCOURT", + "nomCommune": "HAPLINCOURT" }, { - "codePostal": "12700", - "codeCommune": "12272", - "libelleAcheminement": "SONNAC", - "nomCommune": "SONNAC" + "codePostal": "71260", + "codeCommune": "71513", + "libelleAcheminement": "SENOZAN", + "nomCommune": "SENOZAN" }, { - "codePostal": "68500", - "codeCommune": "68381", - "libelleAcheminement": "WUENHEIM", - "nomCommune": "WUENHEIM" + "codePostal": "19300", + "codeCommune": "19263", + "libelleAcheminement": "SOUDEILLES", + "nomCommune": "SOUDEILLES" }, { - "codePostal": "70500", - "codeCommune": "70106", - "libelleAcheminement": "BUFFIGNECOURT", - "nomCommune": "BUFFIGNECOURT" + "codePostal": "71420", + "codeCommune": "71478", + "libelleAcheminement": "ST ROMAIN SOUS VERSIGNY", + "nomCommune": "ST ROMAIN SOUS VERSIGNY" }, { - "codePostal": "43320", - "codeCommune": "43233", - "libelleAcheminement": "SANSSAC L EGLISE", - "nomCommune": "SANSSAC L EGLISE" + "codePostal": "60400", + "codeCommune": "60617", + "libelleAcheminement": "SERMAIZE", + "nomCommune": "SERMAIZE" }, { - "codePostal": "12210", - "codeCommune": "12273", - "libelleAcheminement": "SOULAGES BONNEVAL", - "nomCommune": "SOULAGES BONNEVAL" + "codePostal": "62130", + "codeCommune": "62433", + "libelleAcheminement": "HERICOURT", + "nomCommune": "HERICOURT" }, { - "codePostal": "69170", - "codeCommune": "69001", - "libelleAcheminement": "AFFOUX", - "nomCommune": "AFFOUX" + "codePostal": "71960", + "codeCommune": "71525", + "libelleAcheminement": "SOLOGNY", + "nomCommune": "SOLOGNY" }, { - "codePostal": "70190", - "codeCommune": "70109", - "libelleAcheminement": "BUTHIERS", - "nomCommune": "BUTHIERS" + "codePostal": "19170", + "codeCommune": "19268", + "libelleAcheminement": "TOY VIAM", + "nomCommune": "TOY VIAM" }, { - "codePostal": "43190", - "codeCommune": "43244", - "libelleAcheminement": "TENCE", - "nomCommune": "TENCE" + "codePostal": "71710", + "codeCommune": "71482", + "libelleAcheminement": "ST SYMPHORIEN DE MARMAGNE", + "nomCommune": "ST SYMPHORIEN DE MARMAGNE" }, { - "codePostal": "12250", - "codeCommune": "12282", - "libelleAcheminement": "TOURNEMIRE", - "nomCommune": "TOURNEMIRE" + "codePostal": "60310", + "codeCommune": "60621", + "libelleAcheminement": "SOLENTE", + "nomCommune": "SOLENTE" }, { - "codePostal": "69380", - "codeCommune": "69004", - "libelleAcheminement": "ALIX", - "nomCommune": "ALIX" + "codePostal": "62158", + "codeCommune": "62434", + "libelleAcheminement": "LA HERLIERE", + "nomCommune": "LA HERLIERE" }, { - "codePostal": "70240", - "codeCommune": "70111", - "libelleAcheminement": "CALMOUTIER", - "nomCommune": "CALMOUTIER" + "codePostal": "71220", + "codeCommune": "71529", + "libelleAcheminement": "SUIN", + "nomCommune": "SUIN" }, { - "codePostal": "43320", - "codeCommune": "43254", - "libelleAcheminement": "VAZEILLES LIMANDRE", - "nomCommune": "VAZEILLES LIMANDRE" + "codePostal": "19120", + "codeCommune": "19271", + "libelleAcheminement": "TUDEILS", + "nomCommune": "TUDEILS" }, { - "codePostal": "12200", - "codeCommune": "12287", - "libelleAcheminement": "VAILHOURLES", - "nomCommune": "VAILHOURLES" + "codePostal": "71230", + "codeCommune": "71486", + "libelleAcheminement": "ST VALLIER", + "nomCommune": "ST VALLIER" }, { - "codePostal": "69480", - "codeCommune": "69005", - "libelleAcheminement": "AMBERIEUX D AZERGUES", - "nomCommune": "AMBERIEUX" + "codePostal": "60120", + "codeCommune": "60627", + "libelleAcheminement": "TARTIGNY", + "nomCommune": "TARTIGNY" }, { - "codePostal": "70190", - "codeCommune": "70118", - "libelleAcheminement": "CHAMBORNAY LES BELLEVAUX", - "nomCommune": "CHAMBORNAY LES BELLEVAUX" + "codePostal": "62147", + "codeCommune": "62440", + "libelleAcheminement": "HERMIES", + "nomCommune": "HERMIES" }, { - "codePostal": "43360", - "codeCommune": "43258", - "libelleAcheminement": "VERGONGHEON", - "nomCommune": "VERGONGHEON" + "codePostal": "71360", + "codeCommune": "71530", + "libelleAcheminement": "SULLY", + "nomCommune": "SULLY" }, { - "codePostal": "12330", - "codeCommune": "12288", - "libelleAcheminement": "VALADY", - "nomCommune": "VALADY" + "codePostal": "19000", + "codeCommune": "19272", + "libelleAcheminement": "TULLE", + "nomCommune": "TULLE" }, { - "codePostal": "69550", - "codeCommune": "69006", - "libelleAcheminement": "AMPLEPUIS", - "nomCommune": "AMPLEPUIS" + "codePostal": "71150", + "codeCommune": "71496", + "libelleAcheminement": "SAMPIGNY LES MARANGES", + "nomCommune": "SAMPIGNY LES MARANGES" }, { - "codePostal": "70400", - "codeCommune": "70121", - "libelleAcheminement": "CHAMPEY", - "nomCommune": "CHAMPEY" + "codePostal": "60890", + "codeCommune": "60637", + "libelleAcheminement": "THURY EN VALOIS", + "nomCommune": "THURY EN VALOIS" }, { - "codePostal": "43390", - "codeCommune": "43261", - "libelleAcheminement": "VEZEZOUX", - "nomCommune": "VEZEZOUX" + "codePostal": "62130", + "codeCommune": "62442", + "libelleAcheminement": "HERNICOURT", + "nomCommune": "HERNICOURT" }, { - "codePostal": "12400", - "codeCommune": "12292", - "libelleAcheminement": "VERSOLS ET LAPEYRE", - "nomCommune": "VERSOLS ET LAPEYRE" + "codePostal": "71250", + "codeCommune": "71532", + "libelleAcheminement": "TAIZE", + "nomCommune": "TAIZE" }, { - "codePostal": "69220", - "codeCommune": "69019", - "libelleAcheminement": "BELLEVILLE EN BEAUJOLAIS", - "nomCommune": "BELLEVILLE EN BEAUJOLAIS" + "codePostal": "19200", + "codeCommune": "19275", + "libelleAcheminement": "USSEL", + "nomCommune": "USSEL" }, { - "codePostal": "70100", - "codeCommune": "70124", - "libelleAcheminement": "CHAMPTONNAY", - "nomCommune": "CHAMPTONNAY" + "codePostal": "71110", + "codeCommune": "71500", + "libelleAcheminement": "SARRY", + "nomCommune": "SARRY" }, { - "codePostal": "43380", - "codeCommune": "43264", - "libelleAcheminement": "VILLENEUVE D ALLIER", - "nomCommune": "VILLENEUVE D ALLIER" + "codePostal": "60170", + "codeCommune": "60641", + "libelleAcheminement": "TRACY LE MONT", + "nomCommune": "TRACY LE MONT" }, { - "codePostal": "12290", - "codeCommune": "12297", - "libelleAcheminement": "LE VIBAL", - "nomCommune": "LE VIBAL" + "codePostal": "62179", + "codeCommune": "62444", + "libelleAcheminement": "HERVELINGHEN", + "nomCommune": "HERVELINGHEN" }, { - "codePostal": "69690", - "codeCommune": "69021", - "libelleAcheminement": "BESSENAY", - "nomCommune": "BESSENAY" + "codePostal": "71270", + "codeCommune": "71541", + "libelleAcheminement": "TORPES", + "nomCommune": "TORPES" }, { - "codePostal": "70120", - "codeCommune": "70135", - "libelleAcheminement": "CHARMES ST VALBERT", - "nomCommune": "CHARMES ST VALBERT" + "codePostal": "19140", + "codeCommune": "19276", + "libelleAcheminement": "UZERCHE", + "nomCommune": "UZERCHE" }, { - "codePostal": "44150", - "codeCommune": "44003", - "libelleAcheminement": "ANCENIS ST GEREON", - "nomCommune": "ANCENIS ST GEREON" + "codePostal": "71530", + "codeCommune": "71502", + "libelleAcheminement": "SASSENAY", + "nomCommune": "SASSENAY" }, { - "codePostal": "12430", - "codeCommune": "12299", - "libelleAcheminement": "VILLEFRANCHE DE PANAT", - "nomCommune": "VILLEFRANCHE DE PANAT" + "codePostal": "60420", + "codeCommune": "60643", + "libelleAcheminement": "TRICOT", + "nomCommune": "TRICOT" }, { - "codePostal": "69620", - "codeCommune": "69024", - "libelleAcheminement": "VAL D OINGT", - "nomCommune": "VAL D OINGT" + "codePostal": "62134", + "codeCommune": "62451", + "libelleAcheminement": "HEUCHIN", + "nomCommune": "HEUCHIN" }, { - "codePostal": "70240", - "codeCommune": "70140", - "libelleAcheminement": "CHATENEY", - "nomCommune": "CHATENEY" + "codePostal": "71520", + "codeCommune": "71546", + "libelleAcheminement": "TRAMBLY", + "nomCommune": "TRAMBLY" }, { - "codePostal": "44410", - "codeCommune": "44006", - "libelleAcheminement": "ASSERAC", - "nomCommune": "ASSERAC" + "codePostal": "19240", + "codeCommune": "19278", + "libelleAcheminement": "VARETZ", + "nomCommune": "VARETZ" }, { - "codePostal": "13080", - "codeCommune": "13001", - "libelleAcheminement": "AIX EN PROVENCE", - "nomCommune": "AIX EN PROVENCE" + "codePostal": "71240", + "codeCommune": "71512", + "libelleAcheminement": "SENNECEY LE GRAND", + "nomCommune": "SENNECEY LE GRAND" }, { - "codePostal": "69690", - "codeCommune": "69031", - "libelleAcheminement": "BRUSSIEU", - "nomCommune": "BRUSSIEU" + "codePostal": "60590", + "codeCommune": "60644", + "libelleAcheminement": "TRIE CHATEAU", + "nomCommune": "TRIE CHATEAU" }, { - "codePostal": "70240", - "codeCommune": "70141", - "libelleAcheminement": "CHATENOIS", - "nomCommune": "CHATENOIS" + "codePostal": "62150", + "codeCommune": "62457", + "libelleAcheminement": "HOUDAIN", + "nomCommune": "HOUDAIN" }, { - "codePostal": "44830", - "codeCommune": "44018", - "libelleAcheminement": "BOUAYE", - "nomCommune": "BOUAYE" + "codePostal": "71700", + "codeCommune": "71550", + "libelleAcheminement": "UCHIZY", + "nomCommune": "UCHIZY" }, { - "codePostal": "13540", - "codeCommune": "13001", - "libelleAcheminement": "AIX EN PROVENCE", - "nomCommune": "AIX EN PROVENCE" + "codePostal": "19130", + "codeCommune": "19279", + "libelleAcheminement": "VARS SUR ROSEIX", + "nomCommune": "VARS SUR ROSEIX" }, { - "codePostal": "69300", - "codeCommune": "69034", - "libelleAcheminement": "CALUIRE ET CUIRE", - "nomCommune": "CALUIRE ET CUIRE" + "codePostal": "71350", + "codeCommune": "71517", + "libelleAcheminement": "SERMESSE", + "nomCommune": "SERMESSE" }, { - "codePostal": "70140", - "codeCommune": "70151", - "libelleAcheminement": "CHEVIGNEY", - "nomCommune": "CHEVIGNEY" + "codePostal": "60590", + "codeCommune": "60645", + "libelleAcheminement": "TRIE LA VILLE", + "nomCommune": "TRIE LA VILLE" }, { - "codePostal": "44580", - "codeCommune": "44021", - "libelleAcheminement": "VILLENEUVE EN RETZ", - "nomCommune": "VILLENEUVE EN RETZ" + "codePostal": "62158", + "codeCommune": "62465", + "libelleAcheminement": "HUMBERCAMPS", + "nomCommune": "HUMBERCAMPS" }, { - "codePostal": "13190", - "codeCommune": "13002", - "libelleAcheminement": "ALLAUCH", - "nomCommune": "ALLAUCH" + "codePostal": "71130", + "codeCommune": "71552", + "libelleAcheminement": "UXEAU", + "nomCommune": "UXEAU" }, { - "codePostal": "69220", - "codeCommune": "69036", - "libelleAcheminement": "CERCIE", - "nomCommune": "CERCIE" + "codePostal": "19120", + "codeCommune": "19280", + "libelleAcheminement": "VEGENNES", + "nomCommune": "VEGENNES" }, { - "codePostal": "70700", - "codeCommune": "70156", - "libelleAcheminement": "CITEY", - "nomCommune": "CITEY" + "codePostal": "71220", + "codeCommune": "71524", + "libelleAcheminement": "SIVIGNON", + "nomCommune": "SIVIGNON" }, { - "codePostal": "44750", - "codeCommune": "44025", - "libelleAcheminement": "CAMPBON", - "nomCommune": "CAMPBON" + "codePostal": "60590", + "codeCommune": "60660", + "libelleAcheminement": "LE VAUMAIN", + "nomCommune": "LE VAUMAIN" }, { - "codePostal": "13980", - "codeCommune": "13003", - "libelleAcheminement": "ALLEINS", - "nomCommune": "ALLEINS" + "codePostal": "62860", + "codeCommune": "62469", + "libelleAcheminement": "INCHY EN ARTOIS", + "nomCommune": "INCHY EN ARTOIS" }, { - "codePostal": "69210", - "codeCommune": "69057", - "libelleAcheminement": "CHEVINAY", - "nomCommune": "CHEVINAY" + "codePostal": "71800", + "codeCommune": "71553", + "libelleAcheminement": "VAREILLES", + "nomCommune": "VAREILLES" }, { - "codePostal": "70400", - "codeCommune": "70160", - "libelleAcheminement": "COISEVAUX", - "nomCommune": "COISEVAUX" + "codePostal": "19170", + "codeCommune": "19284", + "libelleAcheminement": "VIAM", + "nomCommune": "VIAM" }, { - "codePostal": "44190", - "codeCommune": "44043", - "libelleAcheminement": "CLISSON", - "nomCommune": "CLISSON" + "codePostal": "71960", + "codeCommune": "71526", + "libelleAcheminement": "SOLUTRE POUILLY", + "nomCommune": "SOLUTRE POUILLY" }, { - "codePostal": "13330", - "codeCommune": "13009", - "libelleAcheminement": "LA BARBEN", - "nomCommune": "LA BARBEN" + "codePostal": "60390", + "codeCommune": "60662", + "libelleAcheminement": "LE VAUROUX", + "nomCommune": "LE VAUROUX" }, { - "codePostal": "69870", - "codeCommune": "69060", - "libelleAcheminement": "CLAVEISOLLES", - "nomCommune": "CLAVEISOLLES" + "codePostal": "62129", + "codeCommune": "62471", + "libelleAcheminement": "BELLINGHEM", + "nomCommune": "BELLINGHEM" }, { - "codePostal": "70000", - "codeCommune": "70162", - "libelleAcheminement": "COLOMBE LES VESOUL", - "nomCommune": "COLOMBE LES VESOUL" + "codePostal": "71110", + "codeCommune": "71554", + "libelleAcheminement": "VARENNE L ARCONCE", + "nomCommune": "VARENNE L ARCONCE" }, { - "codePostal": "44290", - "codeCommune": "44044", - "libelleAcheminement": "CONQUEREUIL", - "nomCommune": "CONQUEREUIL" + "codePostal": "19130", + "codeCommune": "19286", + "libelleAcheminement": "VIGNOLS", + "nomCommune": "VIGNOLS" }, { - "codePostal": "13720", - "codeCommune": "13013", - "libelleAcheminement": "BELCODENE", - "nomCommune": "BELCODENE" + "codePostal": "71190", + "codeCommune": "71531", + "libelleAcheminement": "LA TAGNIERE", + "nomCommune": "LA TAGNIERE" }, { - "codePostal": "69220", - "codeCommune": "69065", - "libelleAcheminement": "CORCELLES EN BEAUJOLAIS", - "nomCommune": "CORCELLES EN BEAUJOLAIS" + "codePostal": "60280", + "codeCommune": "60665", + "libelleAcheminement": "VENETTE", + "nomCommune": "VENETTE" }, { - "codePostal": "70160", - "codeCommune": "70170", - "libelleAcheminement": "CONTREGLISE", - "nomCommune": "CONTREGLISE" + "codePostal": "62330", + "codeCommune": "62473", + "libelleAcheminement": "ISBERGUES", + "nomCommune": "ISBERGUES" }, { - "codePostal": "44220", - "codeCommune": "44047", - "libelleAcheminement": "COUERON", - "nomCommune": "COUERON" + "codePostal": "71600", + "codeCommune": "71557", + "libelleAcheminement": "VARENNE ST GERMAIN", + "nomCommune": "VARENNE ST GERMAIN" }, { - "codePostal": "13720", - "codeCommune": "13016", - "libelleAcheminement": "LA BOUILLADISSE", - "nomCommune": "LA BOUILLADISSE" + "codePostal": "21700", + "codeCommune": "21001", + "libelleAcheminement": "AGENCOURT", + "nomCommune": "AGENCOURT" }, { - "codePostal": "69380", - "codeCommune": "69076", - "libelleAcheminement": "DOMMARTIN", - "nomCommune": "DOMMARTIN" + "codePostal": "71190", + "codeCommune": "71551", + "libelleAcheminement": "UCHON", + "nomCommune": "UCHON" }, { - "codePostal": "70310", - "codeCommune": "70176", - "libelleAcheminement": "CORRAVILLERS", - "nomCommune": "CORRAVILLERS" + "codePostal": "60162", + "codeCommune": "60675", + "libelleAcheminement": "VIGNEMONT", + "nomCommune": "VIGNEMONT" }, { - "codePostal": "44490", - "codeCommune": "44049", - "libelleAcheminement": "LE CROISIC", - "nomCommune": "LE CROISIC" + "codePostal": "62960", + "codeCommune": "62485", + "libelleAcheminement": "LAIRES", + "nomCommune": "LAIRES" }, { - "codePostal": "13720", - "codeCommune": "13016", - "libelleAcheminement": "LA BOUILLADISSE", - "nomCommune": "LA BOUILLADISSE" + "codePostal": "71600", + "codeCommune": "71557", + "libelleAcheminement": "VARENNE ST GERMAIN", + "nomCommune": "VARENNE ST GERMAIN" }, { - "codePostal": "69850", - "codeCommune": "69078", - "libelleAcheminement": "DUERNE", - "nomCommune": "DUERNE" + "codePostal": "21360", + "codeCommune": "21014", + "libelleAcheminement": "ANTHEUIL", + "nomCommune": "ANTHEUIL" }, { - "codePostal": "70500", - "codeCommune": "70177", - "libelleAcheminement": "CORRE", - "nomCommune": "CORRE" + "codePostal": "71000", + "codeCommune": "71556", + "libelleAcheminement": "VARENNES LES MACON", + "nomCommune": "VARENNES LES MACON" }, { - "codePostal": "44110", - "codeCommune": "44054", - "libelleAcheminement": "ERBRAY", - "nomCommune": "ERBRAY" + "codePostal": "60890", + "codeCommune": "60679", + "libelleAcheminement": "LA VILLENEUVE SOUS THURY", + "nomCommune": "LA VILLENEUVE SOUS THURY" }, { - "codePostal": "13112", - "codeCommune": "13031", - "libelleAcheminement": "LA DESTROUSSE", - "nomCommune": "LA DESTROUSSE" + "codePostal": "62380", + "codeCommune": "62495", + "libelleAcheminement": "LEDINGHEM", + "nomCommune": "LEDINGHEM" }, { - "codePostal": "69700", - "codeCommune": "69080", - "libelleAcheminement": "ECHALAS", - "nomCommune": "ECHALAS" + "codePostal": "71800", + "codeCommune": "71561", + "libelleAcheminement": "VAUBAN", + "nomCommune": "VAUBAN" }, { - "codePostal": "70200", - "codeCommune": "70195", - "libelleAcheminement": "DAMBENOIT LES COLOMBE", - "nomCommune": "DAMBENOIT LES COLOMBE" + "codePostal": "21230", + "codeCommune": "21023", + "libelleAcheminement": "ARNAY LE DUC", + "nomCommune": "ARNAY LE DUC" }, { - "codePostal": "44190", - "codeCommune": "44064", - "libelleAcheminement": "GORGES", - "nomCommune": "GORGES" + "codePostal": "71460", + "codeCommune": "71563", + "libelleAcheminement": "VAUX EN PRE", + "nomCommune": "VAUX EN PRE" }, { - "codePostal": "13820", - "codeCommune": "13033", - "libelleAcheminement": "ENSUES LA REDONNE", - "nomCommune": "ENSUES LA REDONNE" + "codePostal": "60810", + "codeCommune": "60682", + "libelleAcheminement": "VILLERS ST FRAMBOURG OGNON", + "nomCommune": "VILLERS ST FRAMBOURG OGNON" }, { - "codePostal": "69400", - "codeCommune": "69092", - "libelleAcheminement": "GLEIZE", - "nomCommune": "GLEIZE" + "codePostal": "62270", + "codeCommune": "62513", + "libelleAcheminement": "LIGNY SUR CANCHE", + "nomCommune": "LIGNY SUR CANCHE" }, { - "codePostal": "70230", - "codeCommune": "70197", - "libelleAcheminement": "DAMPIERRE SUR LINOTTE", - "nomCommune": "DAMPIERRE SUR LINOTTE" + "codePostal": "71120", + "codeCommune": "71562", + "libelleAcheminement": "VAUDEBARRIER", + "nomCommune": "VAUDEBARRIER" }, { - "codePostal": "44530", - "codeCommune": "44068", - "libelleAcheminement": "GUENROUET", - "nomCommune": "GUENROUET" + "codePostal": "21500", + "codeCommune": "21025", + "libelleAcheminement": "ARRANS", + "nomCommune": "ARRANS" }, { - "codePostal": "13990", - "codeCommune": "13038", - "libelleAcheminement": "FONTVIEILLE", - "nomCommune": "FONTVIEILLE" + "codePostal": "71350", + "codeCommune": "71566", + "libelleAcheminement": "VERDUN SUR LE DOUBS", + "nomCommune": "VERDUN SUR LE DOUBS" }, { - "codePostal": "69290", - "codeCommune": "69094", - "libelleAcheminement": "GREZIEU LA VARENNE", - "nomCommune": "GREZIEU LA VARENNE" + "codePostal": "60134", + "codeCommune": "60685", + "libelleAcheminement": "VILLERS ST SEPULCRE", + "nomCommune": "VILLERS ST SEPULCRE" }, { - "codePostal": "70400", - "codeCommune": "70205", - "libelleAcheminement": "ECHAVANNE", - "nomCommune": "ECHAVANNE" + "codePostal": "62450", + "codeCommune": "62515", + "libelleAcheminement": "LIGNY THILLOY", + "nomCommune": "LIGNY THILLOY" }, { - "codePostal": "44350", - "codeCommune": "44069", - "libelleAcheminement": "GUERANDE", - "nomCommune": "GUERANDE" + "codePostal": "71590", + "codeCommune": "71570", + "libelleAcheminement": "VERJUX", + "nomCommune": "VERJUX" }, { - "codePostal": "13710", - "codeCommune": "13040", - "libelleAcheminement": "FUVEAU", - "nomCommune": "FUVEAU" + "codePostal": "21500", + "codeCommune": "21026", + "libelleAcheminement": "ASNIERES EN MONTAGNE", + "nomCommune": "ASNIERES EN MONTAGNE" }, { - "codePostal": "69520", - "codeCommune": "69096", - "libelleAcheminement": "GRIGNY", - "nomCommune": "GRIGNY" + "codePostal": "71220", + "codeCommune": "71571", + "libelleAcheminement": "VEROSVRES", + "nomCommune": "VEROSVRES" }, { - "codePostal": "70000", - "codeCommune": "70207", - "libelleAcheminement": "ECHENOZ LA MELINE", - "nomCommune": "ECHENOZ LA MELINE" + "codePostal": "60130", + "codeCommune": "60701", + "libelleAcheminement": "WAVIGNIES", + "nomCommune": "WAVIGNIES" }, { - "codePostal": "44430", - "codeCommune": "44079", - "libelleAcheminement": "LE LANDREAU", - "nomCommune": "LE LANDREAU" + "codePostal": "62134", + "codeCommune": "62519", + "libelleAcheminement": "LISBOURG", + "nomCommune": "LISBOURG" }, { - "codePostal": "13120", - "codeCommune": "13041", - "libelleAcheminement": "GARDANNE", - "nomCommune": "GARDANNE" + "codePostal": "71960", + "codeCommune": "71574", + "libelleAcheminement": "VERZE", + "nomCommune": "VERZE" }, { - "codePostal": "69170", - "codeCommune": "69102", - "libelleAcheminement": "JOUX", - "nomCommune": "JOUX" + "codePostal": "21380", + "codeCommune": "21027", + "libelleAcheminement": "ASNIERES LES DIJON", + "nomCommune": "ASNIERES LES DIJON" }, { - "codePostal": "70600", - "codeCommune": "70211", - "libelleAcheminement": "ECUELLE", - "nomCommune": "ECUELLE" + "codePostal": "71110", + "codeCommune": "71573", + "libelleAcheminement": "VERSAUGUES", + "nomCommune": "VERSAUGUES" }, { - "codePostal": "44260", - "codeCommune": "44080", - "libelleAcheminement": "LAVAU SUR LOIRE", - "nomCommune": "LAVAU SUR LOIRE" + "codePostal": "61200", + "codeCommune": "61006", + "libelleAcheminement": "ARGENTAN", + "nomCommune": "ARGENTAN" }, { - "codePostal": "13450", - "codeCommune": "13044", - "libelleAcheminement": "GRANS", - "nomCommune": "GRANS" + "codePostal": "62218", + "codeCommune": "62523", + "libelleAcheminement": "LOISON SOUS LENS", + "nomCommune": "LOISON SOUS LENS" }, { - "codePostal": "69840", - "codeCommune": "69103", - "libelleAcheminement": "JULIENAS", - "nomCommune": "JULIENAS" + "codePostal": "71620", + "codeCommune": "71577", + "libelleAcheminement": "VILLEGAUDIN", + "nomCommune": "VILLEGAUDIN" }, { - "codePostal": "70300", - "codeCommune": "70213", - "libelleAcheminement": "EHUNS", - "nomCommune": "EHUNS" + "codePostal": "21500", + "codeCommune": "21029", + "libelleAcheminement": "ATHIE", + "nomCommune": "ATHIE" }, { - "codePostal": "44650", - "codeCommune": "44081", - "libelleAcheminement": "LEGE", - "nomCommune": "LEGE" + "codePostal": "71270", + "codeCommune": "71578", + "libelleAcheminement": "CLUX VILLENEUVE", + "nomCommune": "CLUX VILLENEUVE" }, { - "codePostal": "13680", - "codeCommune": "13051", - "libelleAcheminement": "LANCON PROVENCE", - "nomCommune": "LANCON PROVENCE" + "codePostal": "61100", + "codeCommune": "61007", + "libelleAcheminement": "ATHIS VAL DE ROUVRE", + "nomCommune": "ATHIS VAL DE ROUVRE" }, { - "codePostal": "69870", - "codeCommune": "69107", - "libelleAcheminement": "LAMURE SUR AZERGUES", - "nomCommune": "LAMURE SUR AZERGUES" + "codePostal": "62240", + "codeCommune": "62524", + "libelleAcheminement": "LONGFOSSE", + "nomCommune": "LONGFOSSE" }, { - "codePostal": "70100", - "codeCommune": "70218", - "libelleAcheminement": "ESMOULINS", - "nomCommune": "ESMOULINS" + "codePostal": "71270", + "codeCommune": "71578", + "libelleAcheminement": "CLUX VILLENEUVE", + "nomCommune": "CLUX VILLENEUVE" }, { - "codePostal": "44270", - "codeCommune": "44087", - "libelleAcheminement": "MACHECOUL ST MEME", - "nomCommune": "MACHECOUL ST MEME" + "codePostal": "21360", + "codeCommune": "21036", + "libelleAcheminement": "AUXANT", + "nomCommune": "AUXANT" }, { - "codePostal": "13910", - "codeCommune": "13052", - "libelleAcheminement": "MAILLANE", - "nomCommune": "MAILLANE" + "codePostal": "71500", + "codeCommune": "71580", + "libelleAcheminement": "VINCELLES", + "nomCommune": "VINCELLES" }, { - "codePostal": "69430", - "codeCommune": "69109", - "libelleAcheminement": "LANTIGNIE", - "nomCommune": "LANTIGNIE" + "codePostal": "61100", + "codeCommune": "61007", + "libelleAcheminement": "ATHIS VAL DE ROUVRE", + "nomCommune": "ATHIS VAL DE ROUVRE" }, { - "codePostal": "70400", - "codeCommune": "70221", - "libelleAcheminement": "ETOBON", - "nomCommune": "ETOBON" + "codePostal": "62240", + "codeCommune": "62530", + "libelleAcheminement": "LOTTINGHEN", + "nomCommune": "LOTTINGHEN" }, { - "codePostal": "44270", - "codeCommune": "44090", - "libelleAcheminement": "LA MARNE", - "nomCommune": "LA MARNE" + "codePostal": "71250", + "codeCommune": "71582", + "libelleAcheminement": "LA VINEUSE SUR FREGANDE", + "nomCommune": "LA VINEUSE SUR FREGANDE" }, { - "codePostal": "13370", - "codeCommune": "13053", - "libelleAcheminement": "MALLEMORT", - "nomCommune": "MALLEMORT" + "codePostal": "21120", + "codeCommune": "21039", + "libelleAcheminement": "AVELANGES", + "nomCommune": "AVELANGES" }, { - "codePostal": "69590", - "codeCommune": "69110", - "libelleAcheminement": "LARAJASSE", - "nomCommune": "LARAJASSE" + "codePostal": "72650", + "codeCommune": "72001", + "libelleAcheminement": "AIGNE", + "nomCommune": "AIGNE" }, { - "codePostal": "70160", - "codeCommune": "70228", - "libelleAcheminement": "FAVERNEY", - "nomCommune": "FAVERNEY" + "codePostal": "61100", + "codeCommune": "61007", + "libelleAcheminement": "ATHIS VAL DE ROUVRE", + "nomCommune": "ATHIS VAL DE ROUVRE" }, { - "codePostal": "44420", - "codeCommune": "44097", - "libelleAcheminement": "MESQUER", - "nomCommune": "MESQUER" + "codePostal": "62127", + "codeCommune": "62536", + "libelleAcheminement": "MAGNICOURT EN COMTE", + "nomCommune": "MAGNICOURT EN COMTE" }, { - "codePostal": "13520", - "codeCommune": "13058", - "libelleAcheminement": "MAUSSANE LES ALPILLES", - "nomCommune": "MAUSSANE LES ALPILLES" + "codePostal": "71680", + "codeCommune": "71583", + "libelleAcheminement": "VINZELLES", + "nomCommune": "VINZELLES" }, { - "codePostal": "69620", - "codeCommune": "69111", - "libelleAcheminement": "LEGNY", - "nomCommune": "LEGNY" + "codePostal": "21580", + "codeCommune": "21041", + "libelleAcheminement": "AVOT", + "nomCommune": "AVOT" }, { - "codePostal": "70130", - "codeCommune": "70231", - "libelleAcheminement": "FERRIERES LES RAY", - "nomCommune": "FERRIERES LES RAY" + "codePostal": "72540", + "codeCommune": "72004", + "libelleAcheminement": "AMNE", + "nomCommune": "AMNE" }, { - "codePostal": "44140", - "codeCommune": "44102", - "libelleAcheminement": "MONTBERT", - "nomCommune": "MONTBERT" + "codePostal": "61100", + "codeCommune": "61007", + "libelleAcheminement": "ATHIS VAL DE ROUVRE", + "nomCommune": "ATHIS VAL DE ROUVRE" }, { - "codePostal": "13550", - "codeCommune": "13066", - "libelleAcheminement": "NOVES", - "nomCommune": "NOVES" + "codePostal": "62270", + "codeCommune": "62537", + "libelleAcheminement": "MAGNICOURT SUR CANCHE", + "nomCommune": "MAGNICOURT SUR CANCHE" }, { - "codePostal": "69620", - "codeCommune": "69113", - "libelleAcheminement": "LETRA", - "nomCommune": "LETRA" + "codePostal": "71530", + "codeCommune": "71585", + "libelleAcheminement": "VIREY LE GRAND", + "nomCommune": "VIREY LE GRAND" }, { - "codePostal": "70360", - "codeCommune": "70232", - "libelleAcheminement": "FERRIERES LES SCEY", - "nomCommune": "FERRIERES LES SCEY" + "codePostal": "21450", + "codeCommune": "21043", + "libelleAcheminement": "BAIGNEUX LES JUIFS", + "nomCommune": "BAIGNEUX LES JUIFS" }, { - "codePostal": "44330", - "codeCommune": "44108", - "libelleAcheminement": "MOUZILLON", - "nomCommune": "MOUZILLON" + "codePostal": "72430", + "codeCommune": "72010", + "libelleAcheminement": "ASNIERES SUR VEGRE", + "nomCommune": "ASNIERES SUR VEGRE" }, { - "codePostal": "13550", - "codeCommune": "13066", - "libelleAcheminement": "NOVES", - "nomCommune": "NOVES" + "codePostal": "61500", + "codeCommune": "61013", + "libelleAcheminement": "AUNAY LES BOIS", + "nomCommune": "AUNAY LES BOIS" }, { - "codePostal": "69380", - "codeCommune": "69121", - "libelleAcheminement": "LOZANNE", - "nomCommune": "LOZANNE" + "codePostal": "62250", + "codeCommune": "62546", + "libelleAcheminement": "MANINGHEN HENNE", + "nomCommune": "MANINGHEN HENNE" }, { - "codePostal": "70600", - "codeCommune": "70247", - "libelleAcheminement": "FOUVENT ST ANDOCHE", - "nomCommune": "FOUVENT ST ANDOCHE" + "codePostal": "71260", + "codeCommune": "71591", + "libelleAcheminement": "FLEURVILLE", + "nomCommune": "FLEURVILLE" }, { - "codePostal": "44200", - "codeCommune": "44109", - "libelleAcheminement": "NANTES", - "nomCommune": "NANTES" + "codePostal": "21330", + "codeCommune": "21044", + "libelleAcheminement": "BALOT", + "nomCommune": "BALOT" }, { - "codePostal": "13170", - "codeCommune": "13071", - "libelleAcheminement": "LES PENNES MIRABEAU", - "nomCommune": "LES PENNES MIRABEAU" + "codePostal": "72300", + "codeCommune": "72016", + "libelleAcheminement": "AUVERS LE HAMON", + "nomCommune": "AUVERS LE HAMON" }, { - "codePostal": "69510", - "codeCommune": "69131", - "libelleAcheminement": "MESSIMY", - "nomCommune": "MESSIMY" + "codePostal": "61200", + "codeCommune": "61014", + "libelleAcheminement": "AUNOU LE FAUCON", + "nomCommune": "AUNOU LE FAUCON" }, { - "codePostal": "70180", - "codeCommune": "70251", - "libelleAcheminement": "FRANCOURT", - "nomCommune": "FRANCOURT" + "codePostal": "62140", + "codeCommune": "62549", + "libelleAcheminement": "MARCONNE", + "nomCommune": "MARCONNE" }, { - "codePostal": "44130", - "codeCommune": "44111", - "libelleAcheminement": "NOTRE DAME DES LANDES", - "nomCommune": "NOTRE DAME DES LANDES" + "codePostal": "72700", + "codeCommune": "72003", + "libelleAcheminement": "ALLONNES", + "nomCommune": "ALLONNES" }, { - "codePostal": "13124", - "codeCommune": "13073", - "libelleAcheminement": "PEYPIN", - "nomCommune": "PEYPIN" + "codePostal": "21410", + "codeCommune": "21045", + "libelleAcheminement": "BARBIREY SUR OUCHE", + "nomCommune": "BARBIREY SUR OUCHE" }, { - "codePostal": "69610", - "codeCommune": "69132", - "libelleAcheminement": "MEYS", - "nomCommune": "MEYS" + "codePostal": "72260", + "codeCommune": "72018", + "libelleAcheminement": "AVESNES EN SAOSNOIS", + "nomCommune": "AVESNES EN SAOSNOIS" }, { - "codePostal": "70130", - "codeCommune": "70255", - "libelleAcheminement": "FRESNE ST MAMES", - "nomCommune": "FRESNE ST MAMES" + "codePostal": "61570", + "codeCommune": "61039", + "libelleAcheminement": "LA BELLIERE", + "nomCommune": "LA BELLIERE" }, { - "codePostal": "44330", - "codeCommune": "44117", - "libelleAcheminement": "LE PALLET", - "nomCommune": "LE PALLET" + "codePostal": "62860", + "codeCommune": "62559", + "libelleAcheminement": "MARQUION", + "nomCommune": "MARQUION" }, { - "codePostal": "13230", - "codeCommune": "13078", - "libelleAcheminement": "PORT ST LOUIS DU RHONE", - "nomCommune": "PORT ST LOUIS DU RHONE" + "codePostal": "72370", + "codeCommune": "72007", + "libelleAcheminement": "ARDENAY SUR MERIZE", + "nomCommune": "ARDENAY SUR MERIZE" }, { - "codePostal": "69860", - "codeCommune": "69135", - "libelleAcheminement": "DEUX GROSNES", - "nomCommune": "DEUX GROSNES" + "codePostal": "21570", + "codeCommune": "21058", + "libelleAcheminement": "BELAN SUR OURCE", + "nomCommune": "BELAN SUR OURCE" }, { - "codePostal": "70270", - "codeCommune": "70256", - "libelleAcheminement": "FRESSE", - "nomCommune": "FRESSE" + "codePostal": "72350", + "codeCommune": "72019", + "libelleAcheminement": "AVESSE", + "nomCommune": "AVESSE" }, { - "codePostal": "44160", - "codeCommune": "44129", - "libelleAcheminement": "PONTCHATEAU", - "nomCommune": "PONTCHATEAU" + "codePostal": "61130", + "codeCommune": "61041", + "libelleAcheminement": "BELLOU LE TRICHARD", + "nomCommune": "BELLOU LE TRICHARD" }, { - "codePostal": "13830", - "codeCommune": "13085", - "libelleAcheminement": "ROQUEFORT LA BEDOULE", - "nomCommune": "ROQUEFORT LA BEDOULE" + "codePostal": "62670", + "codeCommune": "62563", + "libelleAcheminement": "MAZINGARBE", + "nomCommune": "MAZINGARBE" }, { - "codePostal": "69610", - "codeCommune": "69138", - "libelleAcheminement": "MONTROMANT", - "nomCommune": "MONTROMANT" + "codePostal": "72540", + "codeCommune": "72017", + "libelleAcheminement": "AUVERS SOUS MONTFAUCON", + "nomCommune": "AUVERS SOUS MONTFAUCON" }, { - "codePostal": "70000", - "codeCommune": "70261", - "libelleAcheminement": "FROTEY LES VESOUL", - "nomCommune": "FROTEY LES VESOUL" + "codePostal": "21360", + "codeCommune": "21066", + "libelleAcheminement": "BESSEY LA COUR", + "nomCommune": "BESSEY LA COUR" }, { - "codePostal": "44860", - "codeCommune": "44130", - "libelleAcheminement": "PONT ST MARTIN", - "nomCommune": "PONT ST MARTIN" + "codePostal": "72200", + "codeCommune": "72022", + "libelleAcheminement": "LE BAILLEUL", + "nomCommune": "LE BAILLEUL" }, { - "codePostal": "13740", - "codeCommune": "13088", - "libelleAcheminement": "LE ROVE", - "nomCommune": "LE ROVE" + "codePostal": "61560", + "codeCommune": "61048", + "libelleAcheminement": "BOECE", + "nomCommune": "BOECE" }, { - "codePostal": "69530", - "codeCommune": "69148", - "libelleAcheminement": "ORLIENAS", - "nomCommune": "ORLIENAS" + "codePostal": "62217", + "codeCommune": "62568", + "libelleAcheminement": "MERCATEL", + "nomCommune": "MERCATEL" }, { - "codePostal": "70110", - "codeCommune": "70264", - "libelleAcheminement": "GEORFANS", - "nomCommune": "GEORFANS" + "codePostal": "72290", + "codeCommune": "72023", + "libelleAcheminement": "BALLON ST MARS", + "nomCommune": "BALLON ST MARS" }, { - "codePostal": "44210", - "codeCommune": "44131", - "libelleAcheminement": "PORNIC", - "nomCommune": "PORNIC" + "codePostal": "21610", + "codeCommune": "21094", + "libelleAcheminement": "BOURBERAIN", + "nomCommune": "BOURBERAIN" }, { - "codePostal": "13760", - "codeCommune": "13091", - "libelleAcheminement": "ST CANNAT", - "nomCommune": "ST CANNAT" + "codePostal": "72290", + "codeCommune": "72023", + "libelleAcheminement": "BALLON ST MARS", + "nomCommune": "BALLON ST MARS" }, { - "codePostal": "69490", - "codeCommune": "69157", - "libelleAcheminement": "VINDRY SUR TURDINE", - "nomCommune": "VINDRY SUR TURDINE" + "codePostal": "61110", + "codeCommune": "61050", + "libelleAcheminement": "COUR MAUGIS SUR HUISNE", + "nomCommune": "COUR MAUGIS SUR HUISNE" }, { - "codePostal": "70120", - "codeCommune": "70274", - "libelleAcheminement": "GRANDECOURT", - "nomCommune": "GRANDECOURT" + "codePostal": "62560", + "codeCommune": "62569", + "libelleAcheminement": "MERCK ST LIEVIN", + "nomCommune": "MERCK ST LIEVIN" }, { - "codePostal": "44510", - "codeCommune": "44135", - "libelleAcheminement": "LE POULIGUEN", - "nomCommune": "LE POULIGUEN" + "codePostal": "72200", + "codeCommune": "72025", + "libelleAcheminement": "BAZOUGES CRE SUR LOIR", + "nomCommune": "BAZOUGES CRE SUR LOIR" }, { - "codePostal": "13610", - "codeCommune": "13093", - "libelleAcheminement": "ST ESTEVE JANSON", - "nomCommune": "ST ESTEVE JANSON" + "codePostal": "21690", + "codeCommune": "21098", + "libelleAcheminement": "BOUX SOUS SALMAISE", + "nomCommune": "BOUX SOUS SALMAISE" }, { - "codePostal": "69400", - "codeCommune": "69159", - "libelleAcheminement": "PORTE DES PIERRES DOREES", - "nomCommune": "PORTE DES PIERRES DOREES" + "codePostal": "72650", + "codeCommune": "72024", + "libelleAcheminement": "LA BAZOGE", + "nomCommune": "LA BAZOGE" }, { - "codePostal": "70170", - "codeCommune": "70278", - "libelleAcheminement": "GRATTERY", - "nomCommune": "GRATTERY" + "codePostal": "61110", + "codeCommune": "61050", + "libelleAcheminement": "COUR MAUGIS SUR HUISNE", + "nomCommune": "COUR MAUGIS SUR HUISNE" }, { - "codePostal": "44750", - "codeCommune": "44139", - "libelleAcheminement": "QUILLY", - "nomCommune": "QUILLY" + "codePostal": "62155", + "codeCommune": "62571", + "libelleAcheminement": "MERLIMONT", + "nomCommune": "MERLIMONT" }, { - "codePostal": "13920", - "codeCommune": "13098", - "libelleAcheminement": "ST MITRE LES REMPARTS", - "nomCommune": "ST MITRE LES REMPARTS" + "codePostal": "72200", + "codeCommune": "72025", + "libelleAcheminement": "BAZOUGES CRE SUR LOIR", + "nomCommune": "BAZOUGES CRE SUR LOIR" }, { - "codePostal": "69650", - "codeCommune": "69163", - "libelleAcheminement": "QUINCIEUX", - "nomCommune": "QUINCIEUX" + "codePostal": "21200", + "codeCommune": "21099", + "libelleAcheminement": "BOUZE LES BEAUNE", + "nomCommune": "BOUZE LES BEAUNE" }, { - "codePostal": "70700", - "codeCommune": "70282", - "libelleAcheminement": "GY", - "nomCommune": "GY" + "codePostal": "72390", + "codeCommune": "72041", + "libelleAcheminement": "BOUER", + "nomCommune": "BOUER" }, { - "codePostal": "44430", - "codeCommune": "44141", - "libelleAcheminement": "LA REMAUDIERE", - "nomCommune": "LA REMAUDIERE" + "codePostal": "61270", + "codeCommune": "61052", + "libelleAcheminement": "BONNEFOI", + "nomCommune": "BONNEFOI" }, { - "codePostal": "13730", - "codeCommune": "13102", - "libelleAcheminement": "ST VICTORET", - "nomCommune": "ST VICTORET" + "codePostal": "62270", + "codeCommune": "62577", + "libelleAcheminement": "MONCHEL SUR CANCHE", + "nomCommune": "MONCHEL SUR CANCHE" }, { - "codePostal": "69470", - "codeCommune": "69164", - "libelleAcheminement": "RANCHAL", - "nomCommune": "RANCHAL" + "codePostal": "72340", + "codeCommune": "72027", + "libelleAcheminement": "BEAUMONT SUR DEME", + "nomCommune": "BEAUMONT SUR DEME" }, { - "codePostal": "70440", - "codeCommune": "70283", - "libelleAcheminement": "HAUT DU THEM CHATEAU LAMBERT", - "nomCommune": "HAUT DU THEM CHATEAU LAMBERT" + "codePostal": "21430", + "codeCommune": "21102", + "libelleAcheminement": "BRAZEY EN MORVAN", + "nomCommune": "BRAZEY EN MORVAN" }, { - "codePostal": "44660", - "codeCommune": "44146", - "libelleAcheminement": "ROUGE", - "nomCommune": "ROUGE" + "codePostal": "72250", + "codeCommune": "72047", + "libelleAcheminement": "BRETTE LES PINS", + "nomCommune": "BRETTE LES PINS" }, { - "codePostal": "13300", - "codeCommune": "13103", - "libelleAcheminement": "SALON DE PROVENCE", - "nomCommune": "SALON DE PROVENCE" + "codePostal": "61220", + "codeCommune": "61063", + "libelleAcheminement": "BRIOUZE", + "nomCommune": "BRIOUZE" }, { - "codePostal": "69440", - "codeCommune": "69166", - "libelleAcheminement": "RIVERIE", - "nomCommune": "RIVERIE" + "codePostal": "62111", + "codeCommune": "62579", + "libelleAcheminement": "MONCHY AU BOIS", + "nomCommune": "MONCHY AU BOIS" }, { - "codePostal": "70800", - "codeCommune": "70284", - "libelleAcheminement": "HAUTEVELLE", - "nomCommune": "HAUTEVELLE" + "codePostal": "72610", + "codeCommune": "72036", + "libelleAcheminement": "BETHON", + "nomCommune": "BETHON" }, { - "codePostal": "44117", - "codeCommune": "44151", - "libelleAcheminement": "ST ANDRE DES EAUX", - "nomCommune": "ST ANDRE DES EAUX" + "codePostal": "21490", + "codeCommune": "21107", + "libelleAcheminement": "BRETIGNY", + "nomCommune": "BRETIGNY" }, { - "codePostal": "13880", - "codeCommune": "13112", - "libelleAcheminement": "VELAUX", - "nomCommune": "VELAUX" + "codePostal": "72350", + "codeCommune": "72050", + "libelleAcheminement": "BRULON", + "nomCommune": "BRULON" }, { - "codePostal": "69640", - "codeCommune": "69167", - "libelleAcheminement": "RIVOLET", - "nomCommune": "RIVOLET" + "codePostal": "61390", + "codeCommune": "61064", + "libelleAcheminement": "BRULLEMAIL", + "nomCommune": "BRULLEMAIL" }, { - "codePostal": "70400", - "codeCommune": "70285", - "libelleAcheminement": "HERICOURT", - "nomCommune": "HERICOURT" + "codePostal": "62127", + "codeCommune": "62580", + "libelleAcheminement": "MONCHY BRETON", + "nomCommune": "MONCHY BRETON" }, { - "codePostal": "44110", - "codeCommune": "44153", - "libelleAcheminement": "ST AUBIN DES CHATEAUX", - "nomCommune": "ST AUBIN DES CHATEAUX" + "codePostal": "72440", + "codeCommune": "72042", + "libelleAcheminement": "BOULOIRE", + "nomCommune": "BOULOIRE" }, { - "codePostal": "13122", - "codeCommune": "13114", - "libelleAcheminement": "VENTABREN", - "nomCommune": "VENTABREN" + "codePostal": "21220", + "codeCommune": "21110", + "libelleAcheminement": "BROCHON", + "nomCommune": "BROCHON" }, { - "codePostal": "69460", - "codeCommune": "69172", - "libelleAcheminement": "SALLES ARBUISSONNAS BEAUJOLAIS", - "nomCommune": "SALLES ARBUISSONNAS EN BEAUJOLAIS" + "codePostal": "72320", + "codeCommune": "72057", + "libelleAcheminement": "CHAMPROND", + "nomCommune": "CHAMPROND" }, { - "codePostal": "70210", - "codeCommune": "70287", - "libelleAcheminement": "HURECOURT", - "nomCommune": "HURECOURT" + "codePostal": "61170", + "codeCommune": "61066", + "libelleAcheminement": "BURE", + "nomCommune": "BURE" }, { - "codePostal": "44250", - "codeCommune": "44154", - "libelleAcheminement": "ST BREVIN LES PINS", - "nomCommune": "ST BREVIN LES PINS" + "codePostal": "62118", + "codeCommune": "62582", + "libelleAcheminement": "MONCHY LE PREUX", + "nomCommune": "MONCHY LE PREUX" }, { - "codePostal": "13116", - "codeCommune": "13115", - "libelleAcheminement": "VERNEGUES", - "nomCommune": "VERNEGUES" + "codePostal": "72270", + "codeCommune": "72044", + "libelleAcheminement": "BOUSSE", + "nomCommune": "BOUSSE" }, { - "codePostal": "69210", - "codeCommune": "69175", - "libelleAcheminement": "SAVIGNY", - "nomCommune": "SAVIGNY" + "codePostal": "21250", + "codeCommune": "21112", + "libelleAcheminement": "BROIN", + "nomCommune": "BROIN" }, { - "codePostal": "70200", - "codeCommune": "70304", - "libelleAcheminement": "LINEXERT", - "nomCommune": "LINEXERT" + "codePostal": "72310", + "codeCommune": "72064", + "libelleAcheminement": "LA CHAPELLE HUON", + "nomCommune": "LA CHAPELLE HUON" }, { - "codePostal": "44530", - "codeCommune": "44161", - "libelleAcheminement": "ST GILDAS DES BOIS", - "nomCommune": "ST GILDAS DES BOIS" + "codePostal": "61170", + "codeCommune": "61067", + "libelleAcheminement": "BURES", + "nomCommune": "BURES" }, { - "codePostal": "13001", - "codeCommune": "13201", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 01" + "codePostal": "62550", + "codeCommune": "62601", + "libelleAcheminement": "NEDONCHEL", + "nomCommune": "NEDONCHEL" }, { - "codePostal": "69610", - "codeCommune": "69178", - "libelleAcheminement": "SOUZY", - "nomCommune": "SOUZY" + "codePostal": "72500", + "codeCommune": "72049", + "libelleAcheminement": "LA BRUERE SUR LOIR", + "nomCommune": "LA BRUERE SUR LOIR" }, { - "codePostal": "70200", - "codeCommune": "70318", - "libelleAcheminement": "MAGNY DANIGON", - "nomCommune": "MAGNY DANIGON" + "codePostal": "21220", + "codeCommune": "21113", + "libelleAcheminement": "BROINDON", + "nomCommune": "BROINDON" }, { - "codePostal": "44720", - "codeCommune": "44168", - "libelleAcheminement": "ST JOACHIM", - "nomCommune": "ST JOACHIM" + "codePostal": "72510", + "codeCommune": "72072", + "libelleAcheminement": "CHATEAU L HERMITAGE", + "nomCommune": "CHATEAU L HERMITAGE" }, { - "codePostal": "13002", - "codeCommune": "13202", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 02" + "codePostal": "61430", + "codeCommune": "61069", + "libelleAcheminement": "CAHAN", + "nomCommune": "CAHAN" }, { - "codePostal": "69700", - "codeCommune": "69179", - "libelleAcheminement": "BEAUVALLON", - "nomCommune": "BEAUVALLON" + "codePostal": "62152", + "codeCommune": "62604", + "libelleAcheminement": "NEUFCHATEL HARDELOT", + "nomCommune": "NEUFCHATEL HARDELOT" }, { - "codePostal": "70190", - "codeCommune": "70325", - "libelleAcheminement": "MAIZIERES", - "nomCommune": "MAIZIERES" + "codePostal": "72330", + "codeCommune": "72051", + "libelleAcheminement": "CERANS FOULLETOURTE", + "nomCommune": "CERANS FOULLETOURTE" }, { - "codePostal": "44980", - "codeCommune": "44172", - "libelleAcheminement": "STE LUCE SUR LOIRE", - "nomCommune": "STE LUCE SUR LOIRE" + "codePostal": "21330", + "codeCommune": "21125", + "libelleAcheminement": "CERILLY", + "nomCommune": "CERILLY" }, { - "codePostal": "13008", - "codeCommune": "13208", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 08" + "codePostal": "72400", + "codeCommune": "72080", + "libelleAcheminement": "CHERRE AU", + "nomCommune": "CHERRE AU" }, { - "codePostal": "69440", - "codeCommune": "69184", - "libelleAcheminement": "STE CATHERINE", - "nomCommune": "STE CATHERINE" + "codePostal": "61100", + "codeCommune": "61070", + "libelleAcheminement": "CALIGNY", + "nomCommune": "CALIGNY" }, { - "codePostal": "70230", - "codeCommune": "70335", - "libelleAcheminement": "MAUSSANS", - "nomCommune": "MAUSSANS" + "codePostal": "62840", + "codeCommune": "62606", + "libelleAcheminement": "NEUVE CHAPELLE", + "nomCommune": "NEUVE CHAPELLE" }, { - "codePostal": "44850", - "codeCommune": "44179", - "libelleAcheminement": "ST MARS DU DESERT", - "nomCommune": "ST MARS DU DESERT" + "codePostal": "72340", + "codeCommune": "72052", + "libelleAcheminement": "CHAHAIGNES", + "nomCommune": "CHAHAIGNES" }, { - "codePostal": "13009", - "codeCommune": "13209", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 09" + "codePostal": "21110", + "codeCommune": "21130", + "libelleAcheminement": "CHAMBEIRE", + "nomCommune": "CHAMBEIRE" }, { - "codePostal": "69280", - "codeCommune": "69190", - "libelleAcheminement": "STE CONSORCE", - "nomCommune": "STE CONSORCE" + "codePostal": "72120", + "codeCommune": "72087", + "libelleAcheminement": "CONFLANS SUR ANILLE", + "nomCommune": "CONFLANS SUR ANILLE" }, { - "codePostal": "70180", - "codeCommune": "70340", - "libelleAcheminement": "MEMBREY", - "nomCommune": "MEMBREY" + "codePostal": "61320", + "codeCommune": "61074", + "libelleAcheminement": "CARROUGES", + "nomCommune": "CARROUGES" }, { - "codePostal": "44540", - "codeCommune": "44180", - "libelleAcheminement": "VALLONS DE L ERDRE", - "nomCommune": "VALLONS DE L ERDRE" + "codePostal": "62130", + "codeCommune": "62607", + "libelleAcheminement": "NEUVILLE AU CORNET", + "nomCommune": "NEUVILLE AU CORNET" }, { - "codePostal": "13013", - "codeCommune": "13213", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 13" + "codePostal": "72250", + "codeCommune": "72053", + "libelleAcheminement": "CHALLES", + "nomCommune": "CHALLES" }, { - "codePostal": "69450", - "codeCommune": "69191", - "libelleAcheminement": "ST CYR AU MONT D OR", - "nomCommune": "ST CYR AU MONT D OR" + "codePostal": "21230", + "codeCommune": "21140", + "libelleAcheminement": "CHAMPIGNOLLES", + "nomCommune": "CHAMPIGNOLLES" }, { - "codePostal": "70160", - "codeCommune": "70341", - "libelleAcheminement": "MENOUX", - "nomCommune": "MENOUX" + "codePostal": "72550", + "codeCommune": "72096", + "libelleAcheminement": "COULANS SUR GEE", + "nomCommune": "COULANS SUR GEE" }, { - "codePostal": "44680", - "codeCommune": "44186", - "libelleAcheminement": "STE PAZANNE", - "nomCommune": "STE PAZANNE" + "codePostal": "61330", + "codeCommune": "61075", + "libelleAcheminement": "CEAUCE", + "nomCommune": "CEAUCE" }, { - "codePostal": "13013", - "codeCommune": "13213", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 13" + "codePostal": "62380", + "codeCommune": "62613", + "libelleAcheminement": "NIELLES LES BLEQUIN", + "nomCommune": "NIELLES LES BLEQUIN" }, { - "codePostal": "69460", - "codeCommune": "69198", - "libelleAcheminement": "ST ETIENNE LA VARENNE", - "nomCommune": "ST ETIENNE LA VARENNE" + "codePostal": "72400", + "codeCommune": "72062", + "libelleAcheminement": "LA CHAPELLE DU BOIS", + "nomCommune": "LA CHAPELLE DU BOIS" }, { - "codePostal": "70130", - "codeCommune": "70342", - "libelleAcheminement": "MERCEY SUR SAONE", - "nomCommune": "MERCEY SUR SAONE" + "codePostal": "21330", + "codeCommune": "21143", + "libelleAcheminement": "CHANNAY", + "nomCommune": "CHANNAY" }, { - "codePostal": "44230", - "codeCommune": "44190", - "libelleAcheminement": "ST SEBASTIEN SUR LOIRE", - "nomCommune": "ST SEBASTIEN SUR LOIRE" + "codePostal": "72270", + "codeCommune": "72100", + "libelleAcheminement": "COURCELLES LA FORET", + "nomCommune": "COURCELLES LA FORET" }, { - "codePostal": "13013", - "codeCommune": "13213", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 13" + "codePostal": "61100", + "codeCommune": "61078", + "libelleAcheminement": "CERISY BELLE ETOILE", + "nomCommune": "CERISY BELLE ETOILE" }, { - "codePostal": "69110", - "codeCommune": "69202", - "libelleAcheminement": "STE FOY LES LYON", - "nomCommune": "STE FOY LES LYON" + "codePostal": "62890", + "codeCommune": "62618", + "libelleAcheminement": "NORDAUSQUES", + "nomCommune": "NORDAUSQUES" }, { - "codePostal": "70200", - "codeCommune": "70348", - "libelleAcheminement": "MOFFANS ET VACHERESSE", - "nomCommune": "MOFFANS ET VACHERESSE" + "codePostal": "72540", + "codeCommune": "72070", + "libelleAcheminement": "CHASSILLE", + "nomCommune": "CHASSILLE" }, { - "codePostal": "44320", - "codeCommune": "44192", - "libelleAcheminement": "ST VIAUD", - "nomCommune": "ST VIAUD" + "codePostal": "21150", + "codeCommune": "21151", + "libelleAcheminement": "CHASSEY", + "nomCommune": "CHASSEY" }, { - "codePostal": "13013", - "codeCommune": "13213", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 13" + "codePostal": "72110", + "codeCommune": "72102", + "libelleAcheminement": "COURCIVAL", + "nomCommune": "COURCIVAL" }, { - "codePostal": "69290", - "codeCommune": "69205", - "libelleAcheminement": "ST GENIS LES OLLIERES", - "nomCommune": "ST GENIS LES OLLIERES" + "codePostal": "61500", + "codeCommune": "61081", + "libelleAcheminement": "CHAILLOUE", + "nomCommune": "CHAILLOUE" }, { - "codePostal": "70190", - "codeCommune": "70355", - "libelleAcheminement": "MONTARLOT LES RIOZ", - "nomCommune": "MONTARLOT LES RIOZ" + "codePostal": "62890", + "codeCommune": "62622", + "libelleAcheminement": "NORT LEULINGHEM", + "nomCommune": "NORT LEULINGHEM" }, { - "codePostal": "44590", - "codeCommune": "44193", - "libelleAcheminement": "ST VINCENT DES LANDES", - "nomCommune": "ST VINCENT DES LANDES" + "codePostal": "72500", + "codeCommune": "72071", + "libelleAcheminement": "MONTVAL SUR LOIR", + "nomCommune": "MONTVAL SUR LOIR" }, { - "codePostal": "13014", - "codeCommune": "13214", - "libelleAcheminement": "MARSEILLE", - "nomCommune": "MARSEILLE 14" + "codePostal": "21320", + "codeCommune": "21153", + "libelleAcheminement": "CHATELLENOT", + "nomCommune": "CHATELLENOT" }, { - "codePostal": "69210", - "codeCommune": "69208", - "libelleAcheminement": "ST GERMAIN NUELLES", - "nomCommune": "ST GERMAIN NUELLES" + "codePostal": "72150", + "codeCommune": "72103", + "libelleAcheminement": "COURDEMANCHE", + "nomCommune": "COURDEMANCHE" }, { - "codePostal": "70000", - "codeCommune": "70358", - "libelleAcheminement": "MONTCEY", - "nomCommune": "MONTCEY" + "codePostal": "61120", + "codeCommune": "61089", + "libelleAcheminement": "CHAMPOSOULT", + "nomCommune": "CHAMPOSOULT" }, { - "codePostal": "44660", - "codeCommune": "44200", - "libelleAcheminement": "SOULVACHE", - "nomCommune": "SOULVACHE" + "codePostal": "62950", + "codeCommune": "62624", + "libelleAcheminement": "NOYELLES GODAULT", + "nomCommune": "NOYELLES GODAULT" }, { - "codePostal": "14540", - "codeCommune": "14005", - "libelleAcheminement": "VALAMBRAY", - "nomCommune": "VALAMBRAY" + "codePostal": "72500", + "codeCommune": "72071", + "libelleAcheminement": "MONTVAL SUR LOIR", + "nomCommune": "MONTVAL SUR LOIR" }, { - "codePostal": "69790", - "codeCommune": "69209", - "libelleAcheminement": "ST IGNY DE VERS", - "nomCommune": "ST IGNY DE VERS" + "codePostal": "21520", + "codeCommune": "21159", + "libelleAcheminement": "LA CHAUME", + "nomCommune": "LA CHAUME" }, { - "codePostal": "70270", - "codeCommune": "70361", - "libelleAcheminement": "MONTESSAUX", - "nomCommune": "MONTESSAUX" + "codePostal": "72260", + "codeCommune": "72112", + "libelleAcheminement": "DANGEUL", + "nomCommune": "DANGEUL" }, { - "codePostal": "44370", - "codeCommune": "44213", - "libelleAcheminement": "LOIREAUXENCE", - "nomCommune": "LOIREAUXENCE" + "codePostal": "61800", + "codeCommune": "61093", + "libelleAcheminement": "CHANU", + "nomCommune": "CHANU" }, { - "codePostal": "14860", - "codeCommune": "14009", - "libelleAcheminement": "AMFREVILLE", - "nomCommune": "AMFREVILLE" + "codePostal": "62810", + "codeCommune": "62630", + "libelleAcheminement": "NOYELLE VION", + "nomCommune": "NOYELLE VION" }, { - "codePostal": "69550", - "codeCommune": "69214", - "libelleAcheminement": "ST JEAN LA BUSSIERE", - "nomCommune": "ST JEAN LA BUSSIERE" + "codePostal": "72500", + "codeCommune": "72077", + "libelleAcheminement": "CHENU", + "nomCommune": "CHENU" }, { - "codePostal": "70190", - "codeCommune": "70383", - "libelleAcheminement": "NEUVELLE LES CROMARY", - "nomCommune": "NEUVELLE LES CROMARY" + "codePostal": "21400", + "codeCommune": "21165", + "libelleAcheminement": "CHEMIN D AISEY", + "nomCommune": "CHEMIN D AISEY" }, { - "codePostal": "44370", - "codeCommune": "44213", - "libelleAcheminement": "LOIREAUXENCE", - "nomCommune": "LOIREAUXENCE" + "codePostal": "72390", + "codeCommune": "72118", + "libelleAcheminement": "DOLLON", + "nomCommune": "DOLLON" }, { - "codePostal": "14240", - "codeCommune": "14011", - "libelleAcheminement": "AURSEULLES", - "nomCommune": "AURSEULLES" + "codePostal": "61230", + "codeCommune": "61103", + "libelleAcheminement": "CHAUMONT", + "nomCommune": "CHAUMONT" }, { - "codePostal": "69220", - "codeCommune": "69218", - "libelleAcheminement": "ST LAGER", - "nomCommune": "ST LAGER" + "codePostal": "62270", + "codeCommune": "62631", + "libelleAcheminement": "NUNCQ HAUTECOTE", + "nomCommune": "NUNCQ HAUTECOTE" }, { - "codePostal": "70360", - "codeCommune": "70386", - "libelleAcheminement": "LA NEUVELLE LES SCEY", - "nomCommune": "LA NEUVELLE LES SCEY" + "codePostal": "72610", + "codeCommune": "72079", + "libelleAcheminement": "CHERISAY", + "nomCommune": "CHERISAY" }, { - "codePostal": "45230", - "codeCommune": "45002", - "libelleAcheminement": "AILLANT SUR MILLERON", - "nomCommune": "AILLANT SUR MILLERON" + "codePostal": "21310", + "codeCommune": "21167", + "libelleAcheminement": "CHEUGE", + "nomCommune": "CHEUGE" }, { - "codePostal": "14240", - "codeCommune": "14011", - "libelleAcheminement": "AURSEULLES", - "nomCommune": "AURSEULLES" + "codePostal": "72400", + "codeCommune": "72132", + "libelleAcheminement": "LA FERTE BERNARD", + "nomCommune": "LA FERTE BERNARD" }, { - "codePostal": "69440", - "codeCommune": "69219", - "libelleAcheminement": "ST LAURENT D AGNY", - "nomCommune": "ST LAURENT D AGNY" + "codePostal": "61360", + "codeCommune": "61121", + "libelleAcheminement": "COULIMER", + "nomCommune": "COULIMER" }, { - "codePostal": "70130", - "codeCommune": "70387", - "libelleAcheminement": "NOIDANS LE FERROUX", - "nomCommune": "NOIDANS LE FERROUX" + "codePostal": "62250", + "codeCommune": "62636", + "libelleAcheminement": "OFFRETHUN", + "nomCommune": "OFFRETHUN" }, { - "codePostal": "45300", - "codeCommune": "45010", - "libelleAcheminement": "ASCOUX", - "nomCommune": "ASCOUX" + "codePostal": "72400", + "codeCommune": "72080", + "libelleAcheminement": "CHERRE AU", + "nomCommune": "CHERRE AU" }, { - "codePostal": "14610", - "codeCommune": "14014", - "libelleAcheminement": "COLOMBY ANGUERNY", - "nomCommune": "COLOMBY ANGUERNY" + "codePostal": "21220", + "codeCommune": "21169", + "libelleAcheminement": "CHEVANNES", + "nomCommune": "CHEVANNES" }, { - "codePostal": "69620", - "codeCommune": "69230", - "libelleAcheminement": "STE PAULE", - "nomCommune": "STE PAULE" + "codePostal": "72130", + "codeCommune": "72138", + "libelleAcheminement": "FRESNAY SUR SARTHE", + "nomCommune": "FRESNAY SUR SARTHE" }, { - "codePostal": "70300", - "codeCommune": "70398", - "libelleAcheminement": "ORMOICHE", - "nomCommune": "ORMOICHE" + "codePostal": "61560", + "codeCommune": "61130", + "libelleAcheminement": "COURGEOUT", + "nomCommune": "COURGEOUT" }, { - "codePostal": "45300", - "codeCommune": "45012", - "libelleAcheminement": "AUDEVILLE", - "nomCommune": "AUDEVILLE" + "codePostal": "62590", + "codeCommune": "62637", + "libelleAcheminement": "OIGNIES", + "nomCommune": "OIGNIES" }, { - "codePostal": "14610", - "codeCommune": "14015", - "libelleAcheminement": "ANISY", - "nomCommune": "ANISY" + "codePostal": "72310", + "codeCommune": "72085", + "libelleAcheminement": "COGNERS", + "nomCommune": "COGNERS" }, { - "codePostal": "69560", - "codeCommune": "69235", - "libelleAcheminement": "ST ROMAIN EN GAL", - "nomCommune": "ST ROMAIN EN GAL" + "codePostal": "21820", + "codeCommune": "21172", + "libelleAcheminement": "CHIVRES", + "nomCommune": "CHIVRES" }, { - "codePostal": "70600", - "codeCommune": "70402", - "libelleAcheminement": "OYRIERES", - "nomCommune": "OYRIERES" + "codePostal": "72320", + "codeCommune": "72144", + "libelleAcheminement": "GREEZ SUR ROC", + "nomCommune": "GREEZ SUR ROC" }, { - "codePostal": "45420", - "codeCommune": "45023", - "libelleAcheminement": "BATILLY EN PUISAYE", - "nomCommune": "BATILLY EN PUISAYE" + "codePostal": "61700", + "codeCommune": "61145", + "libelleAcheminement": "DOMFRONT EN POIRAIE", + "nomCommune": "DOMFRONT EN POIRAIE" }, { - "codePostal": "14117", - "codeCommune": "14021", - "libelleAcheminement": "ARROMANCHES LES BAINS", - "nomCommune": "ARROMANCHES LES BAINS" + "codePostal": "62118", + "codeCommune": "62650", + "libelleAcheminement": "PELVES", + "nomCommune": "PELVES" }, { - "codePostal": "69590", - "codeCommune": "69238", - "libelleAcheminement": "ST SYMPHORIEN SUR COISE", - "nomCommune": "ST SYMPHORIEN SUR COISE" + "codePostal": "72600", + "codeCommune": "72086", + "libelleAcheminement": "COMMERVEIL", + "nomCommune": "COMMERVEIL" }, { - "codePostal": "70210", - "codeCommune": "70404", - "libelleAcheminement": "PASSAVANT LA ROCHERE", - "nomCommune": "PASSAVANT LA ROCHERE" + "codePostal": "21390", + "codeCommune": "21177", + "libelleAcheminement": "CLAMEREY", + "nomCommune": "CLAMEREY" }, { - "codePostal": "45390", - "codeCommune": "45033", - "libelleAcheminement": "BOESSES", - "nomCommune": "BOESSES" + "codePostal": "72230", + "codeCommune": "72146", + "libelleAcheminement": "GUECELARD", + "nomCommune": "GUECELARD" }, { - "codePostal": "14710", - "codeCommune": "14023", - "libelleAcheminement": "ASNIERES EN BESSIN", - "nomCommune": "ASNIERES EN BESSIN" + "codePostal": "61370", + "codeCommune": "61150", + "libelleAcheminement": "ECHAUFFOUR", + "nomCommune": "ECHAUFFOUR" }, { - "codePostal": "69170", - "codeCommune": "69243", - "libelleAcheminement": "TARARE", - "nomCommune": "TARARE" + "codePostal": "62130", + "codeCommune": "62655", + "libelleAcheminement": "PIERREMONT", + "nomCommune": "PIERREMONT" }, { - "codePostal": "70150", - "codeCommune": "70410", - "libelleAcheminement": "PIN", - "nomCommune": "PIN" + "codePostal": "72260", + "codeCommune": "72104", + "libelleAcheminement": "COURGAINS", + "nomCommune": "COURGAINS" }, { - "codePostal": "45760", - "codeCommune": "45034", - "libelleAcheminement": "BOIGNY SUR BIONNE", - "nomCommune": "BOIGNY SUR BIONNE" + "codePostal": "21230", + "codeCommune": "21181", + "libelleAcheminement": "CLOMOT", + "nomCommune": "CLOMOT" }, { - "codePostal": "14700", - "codeCommune": "14025", - "libelleAcheminement": "AUBIGNY", - "nomCommune": "AUBIGNY" + "codePostal": "72380", + "codeCommune": "72147", + "libelleAcheminement": "LA GUIERCHE", + "nomCommune": "LA GUIERCHE" }, { - "codePostal": "69620", - "codeCommune": "69245", - "libelleAcheminement": "TERNAND", - "nomCommune": "TERNAND" + "codePostal": "61150", + "codeCommune": "61153", + "libelleAcheminement": "ECOUCHE LES VALLEES", + "nomCommune": "ECOUCHE LES VALLEES" }, { - "codePostal": "70290", - "codeCommune": "70413", - "libelleAcheminement": "PLANCHER BAS", - "nomCommune": "PLANCHER BAS" + "codePostal": "62760", + "codeCommune": "62663", + "libelleAcheminement": "POMMERA", + "nomCommune": "POMMERA" }, { - "codePostal": "45340", - "codeCommune": "45035", - "libelleAcheminement": "BOISCOMMUN", - "nomCommune": "BOISCOMMUN" + "codePostal": "72320", + "codeCommune": "72105", + "libelleAcheminement": "COURGENARD", + "nomCommune": "COURGENARD" }, { - "codePostal": "14260", - "codeCommune": "14027", - "libelleAcheminement": "LES MONTS D AUNAY", - "nomCommune": "LES MONTS D AUNAY" + "codePostal": "21160", + "codeCommune": "21192", + "libelleAcheminement": "CORCELLES LES MONTS", + "nomCommune": "CORCELLES LES MONTS" }, { - "codePostal": "69460", - "codeCommune": "69257", - "libelleAcheminement": "VAUX EN BEAUJOLAIS", - "nomCommune": "VAUX EN BEAUJOLAIS" + "codePostal": "72380", + "codeCommune": "72150", + "libelleAcheminement": "JOUE L ABBE", + "nomCommune": "JOUE L ABBE" }, { - "codePostal": "70110", - "codeCommune": "70420", - "libelleAcheminement": "PONT SUR L OGNON", - "nomCommune": "PONT SUR L OGNON" + "codePostal": "61150", + "codeCommune": "61153", + "libelleAcheminement": "ECOUCHE LES VALLEES", + "nomCommune": "ECOUCHE LES VALLEES" }, { - "codePostal": "45420", - "codeCommune": "45040", - "libelleAcheminement": "BONNY SUR LOIRE", - "nomCommune": "BONNY SUR LOIRE" + "codePostal": "62111", + "codeCommune": "62664", + "libelleAcheminement": "POMMIER", + "nomCommune": "POMMIER" }, { - "codePostal": "14770", - "codeCommune": "14027", - "libelleAcheminement": "LES MONTS D AUNAY", - "nomCommune": "LES MONTS D AUNAY" + "codePostal": "72240", + "codeCommune": "72119", + "libelleAcheminement": "DOMFRONT EN CHAMPAGNE", + "nomCommune": "DOMFRONT EN CHAMPAGNE" }, { - "codePostal": "69770", - "codeCommune": "69263", - "libelleAcheminement": "VILLECHENEVE", - "nomCommune": "VILLECHENEVE" + "codePostal": "21250", + "codeCommune": "21193", + "libelleAcheminement": "CORGENGOUX", + "nomCommune": "CORGENGOUX" }, { - "codePostal": "70100", - "codeCommune": "70422", - "libelleAcheminement": "POYANS", - "nomCommune": "POYANS" + "codePostal": "72170", + "codeCommune": "72152", + "libelleAcheminement": "JUILLE", + "nomCommune": "JUILLE" }, { - "codePostal": "45300", - "codeCommune": "45050", - "libelleAcheminement": "BOYNES", - "nomCommune": "BOYNES" + "codePostal": "61200", + "codeCommune": "61153", + "libelleAcheminement": "ECOUCHE LES VALLEES", + "nomCommune": "ECOUCHE LES VALLEES" }, { - "codePostal": "14280", - "codeCommune": "14030", - "libelleAcheminement": "AUTHIE", - "nomCommune": "AUTHIE" + "codePostal": "62480", + "codeCommune": "62667", + "libelleAcheminement": "LE PORTEL", + "nomCommune": "LE PORTEL" }, { - "codePostal": "69400", - "codeCommune": "69264", - "libelleAcheminement": "VILLEFRANCHE SUR SAONE", - "nomCommune": "VILLEFRANCHE SUR SAONE" + "codePostal": "72160", + "codeCommune": "72122", + "libelleAcheminement": "DUNEAU", + "nomCommune": "DUNEAU" }, { - "codePostal": "70000", - "codeCommune": "70428", - "libelleAcheminement": "PUSEY", - "nomCommune": "PUSEY" + "codePostal": "21700", + "codeCommune": "21194", + "libelleAcheminement": "CORGOLOIN", + "nomCommune": "CORGOLOIN" }, { - "codePostal": "45460", - "codeCommune": "45051", - "libelleAcheminement": "BRAY ST AIGNAN", - "nomCommune": "BRAY ST AIGNAN" + "codePostal": "72540", + "codeCommune": "72166", + "libelleAcheminement": "LONGNES", + "nomCommune": "LONGNES" }, { - "codePostal": "14490", - "codeCommune": "14035", - "libelleAcheminement": "BALLEROY SUR DROME", - "nomCommune": "BALLEROY SUR DROME" + "codePostal": "61500", + "codeCommune": "61164", + "libelleAcheminement": "LA FERRIERE BECHET", + "nomCommune": "LA FERRIERE BECHET" }, { - "codePostal": "69640", - "codeCommune": "69265", - "libelleAcheminement": "VILLE SUR JARNIOUX", - "nomCommune": "VILLE SUR JARNIOUX" + "codePostal": "62860", + "codeCommune": "62673", + "libelleAcheminement": "QUEANT", + "nomCommune": "QUEANT" }, { - "codePostal": "70190", - "codeCommune": "70447", - "libelleAcheminement": "RIOZ", - "nomCommune": "RIOZ" + "codePostal": "72120", + "codeCommune": "72125", + "libelleAcheminement": "ECORPAIN", + "nomCommune": "ECORPAIN" }, { - "codePostal": "45310", - "codeCommune": "45055", - "libelleAcheminement": "BRICY", - "nomCommune": "BRICY" + "codePostal": "21340", + "codeCommune": "21195", + "libelleAcheminement": "CORMOT VAUCHIGNON", + "nomCommune": "CORMOT VAUCHIGNON" }, { - "codePostal": "14220", - "codeCommune": "14039", - "libelleAcheminement": "BARBERY", - "nomCommune": "BARBERY" + "codePostal": "72210", + "codeCommune": "72169", + "libelleAcheminement": "LOUPLANDE", + "nomCommune": "LOUPLANDE" }, { - "codePostal": "69910", - "codeCommune": "69267", - "libelleAcheminement": "VILLIE MORGON", - "nomCommune": "VILLIE MORGON" + "codePostal": "61470", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "70000", - "codeCommune": "70452", - "libelleAcheminement": "ROSEY", - "nomCommune": "ROSEY" + "codePostal": "62120", + "codeCommune": "62681", + "libelleAcheminement": "QUIESTEDE", + "nomCommune": "QUIESTEDE" }, { - "codePostal": "45230", - "codeCommune": "45060", - "libelleAcheminement": "LA BUSSIERE", - "nomCommune": "LA BUSSIERE" + "codePostal": "72550", + "codeCommune": "72130", + "libelleAcheminement": "FAY", + "nomCommune": "FAY" }, { - "codePostal": "14210", - "codeCommune": "14042", - "libelleAcheminement": "BARON SUR ODON", - "nomCommune": "BARON SUR ODON" + "codePostal": "21340", + "codeCommune": "21195", + "libelleAcheminement": "CORMOT VAUCHIGNON", + "nomCommune": "CORMOT VAUCHIGNON" }, { - "codePostal": "69680", - "codeCommune": "69271", - "libelleAcheminement": "CHASSIEU", - "nomCommune": "CHASSIEU" + "codePostal": "72800", + "codeCommune": "72176", + "libelleAcheminement": "LE LUDE", + "nomCommune": "LE LUDE" }, { - "codePostal": "70130", - "codeCommune": "70463", - "libelleAcheminement": "ST GAND", - "nomCommune": "ST GAND" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "45120", - "codeCommune": "45068", - "libelleAcheminement": "CHALETTE SUR LOING", - "nomCommune": "CHALETTE SUR LOING" + "codePostal": "62650", + "codeCommune": "62682", + "libelleAcheminement": "QUILEN", + "nomCommune": "QUILEN" }, { - "codePostal": "14860", - "codeCommune": "14046", - "libelleAcheminement": "BAVENT", - "nomCommune": "BAVENT" + "codePostal": "72430", + "codeCommune": "72131", + "libelleAcheminement": "FERCE SUR SARTHE", + "nomCommune": "FERCE SUR SARTHE" }, { - "codePostal": "69960", - "codeCommune": "69273", - "libelleAcheminement": "CORBAS", - "nomCommune": "CORBAS" + "codePostal": "21460", + "codeCommune": "21199", + "libelleAcheminement": "CORSAINT", + "nomCommune": "CORSAINT" }, { - "codePostal": "70100", - "codeCommune": "70466", - "libelleAcheminement": "ST LOUP NANTOUARD", - "nomCommune": "ST LOUP NANTOUARD" + "codePostal": "72120", + "codeCommune": "72190", + "libelleAcheminement": "MAROLLES LES ST CALAIS", + "nomCommune": "MAROLLES LES ST CALAIS" }, { - "codePostal": "45420", - "codeCommune": "45070", - "libelleAcheminement": "CHAMPOULET", - "nomCommune": "CHAMPOULET" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "14620", - "codeCommune": "14053", - "libelleAcheminement": "BEAUMAIS", - "nomCommune": "BEAUMAIS" + "codePostal": "62390", + "codeCommune": "62683", + "libelleAcheminement": "QUOEUX HAUT MAINIL", + "nomCommune": "QUOEUX HAUT MAINIL" }, { - "codePostal": "69740", - "codeCommune": "69277", - "libelleAcheminement": "GENAS", - "nomCommune": "GENAS" + "codePostal": "72500", + "codeCommune": "72134", + "libelleAcheminement": "FLEE", + "nomCommune": "FLEE" }, { - "codePostal": "70400", - "codeCommune": "70477", - "libelleAcheminement": "SAULNOT", - "nomCommune": "SAULNOT" + "codePostal": "21520", + "codeCommune": "21202", + "libelleAcheminement": "COURBAN", + "nomCommune": "COURBAN" }, { - "codePostal": "45230", - "codeCommune": "45079", - "libelleAcheminement": "LE CHARME", - "nomCommune": "LE CHARME" + "codePostal": "72320", + "codeCommune": "72193", + "libelleAcheminement": "MELLERAY", + "nomCommune": "MELLERAY" }, { - "codePostal": "14910", - "codeCommune": "14059", - "libelleAcheminement": "BENERVILLE SUR MER", - "nomCommune": "BENERVILLE SUR MER" + "codePostal": "61550", + "codeCommune": "61167", + "libelleAcheminement": "LA FERTE EN OUCHE", + "nomCommune": "LA FERTE EN OUCHE" }, { - "codePostal": "69730", - "codeCommune": "69278", - "libelleAcheminement": "GENAY", - "nomCommune": "GENAY" + "codePostal": "62310", + "codeCommune": "62685", + "libelleAcheminement": "RADINGHEM", + "nomCommune": "RADINGHEM" }, { - "codePostal": "70130", - "codeCommune": "70481", - "libelleAcheminement": "SAVOYEUX", - "nomCommune": "SAVOYEUX" + "codePostal": "72350", + "codeCommune": "72136", + "libelleAcheminement": "FONTENAY SUR VEGRE", + "nomCommune": "FONTENAY SUR VEGRE" }, { - "codePostal": "45360", - "codeCommune": "45087", - "libelleAcheminement": "CHATILLON SUR LOIRE", - "nomCommune": "CHATILLON SUR LOIRE" + "codePostal": "21500", + "codeCommune": "21204", + "libelleAcheminement": "COURCELLES LES MONTBARD", + "nomCommune": "COURCELLES LES MONTBARD" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "72240", + "codeCommune": "72197", + "libelleAcheminement": "MEZIERES SOUS LAVARDIN", + "nomCommune": "MEZIERES SOUS LAVARDIN" }, { - "codePostal": "69330", - "codeCommune": "69279", - "libelleAcheminement": "JONAGE", - "nomCommune": "JONAGE" + "codePostal": "61310", + "codeCommune": "61190", + "libelleAcheminement": "GINAI", + "nomCommune": "GINAI" }, { - "codePostal": "70360", - "codeCommune": "70482", - "libelleAcheminement": "SCEY SUR SAONE ET ST ALBIN", - "nomCommune": "SCEY SUR SAONE ET ST ALBIN" + "codePostal": "62560", + "codeCommune": "62696", + "libelleAcheminement": "RECLINGHEM", + "nomCommune": "RECLINGHEM" }, { - "codePostal": "45210", - "codeCommune": "45094", - "libelleAcheminement": "CHEVRY SOUS LE BIGNON", - "nomCommune": "CHEVRY SOUS LE BIGNON" + "codePostal": "72600", + "codeCommune": "72137", + "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", + "nomCommune": "VILLENEUVE EN PERSEIGNE" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "21560", + "codeCommune": "21209", + "libelleAcheminement": "COUTERNON", + "nomCommune": "COUTERNON" }, { - "codePostal": "69330", - "codeCommune": "69282", - "libelleAcheminement": "MEYZIEU", - "nomCommune": "MEYZIEU" + "codePostal": "72650", + "codeCommune": "72198", + "libelleAcheminement": "LA MILESSE", + "nomCommune": "LA MILESSE" }, { - "codePostal": "70400", - "codeCommune": "70484", - "libelleAcheminement": "SECENANS", - "nomCommune": "SECENANS" + "codePostal": "61150", + "codeCommune": "61194", + "libelleAcheminement": "MONTS SUR ORNE", + "nomCommune": "MONTS SUR ORNE" }, { - "codePostal": "45290", - "codeCommune": "45096", - "libelleAcheminement": "LES CHOUX", - "nomCommune": "LES CHOUX" + "codePostal": "62170", + "codeCommune": "62698", + "libelleAcheminement": "RECQUES SUR COURSE", + "nomCommune": "RECQUES SUR COURSE" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "72390", + "codeCommune": "72158", + "libelleAcheminement": "LAVARE", + "nomCommune": "LAVARE" }, { - "codePostal": "69360", - "codeCommune": "69295", - "libelleAcheminement": "SIMANDRES", - "nomCommune": "SIMANDRES" + "codePostal": "21230", + "codeCommune": "21216", + "libelleAcheminement": "CULETRE", + "nomCommune": "CULETRE" }, { - "codePostal": "70210", - "codeCommune": "70485", - "libelleAcheminement": "SELLES", - "nomCommune": "SELLES" + "codePostal": "72380", + "codeCommune": "72205", + "libelleAcheminement": "MONTBIZOT", + "nomCommune": "MONTBIZOT" }, { - "codePostal": "45220", - "codeCommune": "45097", - "libelleAcheminement": "CHUELLES", - "nomCommune": "CHUELLES" + "codePostal": "61130", + "codeCommune": "61196", + "libelleAcheminement": "BELFORET EN PERCHE", + "nomCommune": "BELFORET EN PERCHE" }, { - "codePostal": "14350", - "codeCommune": "14061", - "libelleAcheminement": "SOULEUVRE EN BOCAGE", - "nomCommune": "SOULEUVRE EN BOCAGE" + "codePostal": "62120", + "codeCommune": "62701", + "libelleAcheminement": "RELY", + "nomCommune": "RELY" }, { - "codePostal": "69124", - "codeCommune": "69299", - "libelleAcheminement": "COLOMBIER SAUGNIEU", - "nomCommune": "COLOMBIER SAUGNIEU" + "codePostal": "72540", + "codeCommune": "72168", + "libelleAcheminement": "LOUE", + "nomCommune": "LOUE" }, { - "codePostal": "70500", - "codeCommune": "70496", - "libelleAcheminement": "TARTECOURT", - "nomCommune": "TARTECOURT" + "codePostal": "21220", + "codeCommune": "21219", + "libelleAcheminement": "CURTIL VERGY", + "nomCommune": "CURTIL VERGY" }, { - "codePostal": "45700", - "codeCommune": "45102", - "libelleAcheminement": "CONFLANS SUR LOING", - "nomCommune": "CONFLANS SUR LOING" + "codePostal": "72140", + "codeCommune": "72211", + "libelleAcheminement": "MONT ST JEAN", + "nomCommune": "MONT ST JEAN" }, { - "codePostal": "14440", - "codeCommune": "14062", - "libelleAcheminement": "BENY SUR MER", - "nomCommune": "BENY SUR MER" + "codePostal": "61360", + "codeCommune": "61196", + "libelleAcheminement": "BELFORET EN PERCHE", + "nomCommune": "BELFORET EN PERCHE" }, { - "codePostal": "69124", - "codeCommune": "69299", - "libelleAcheminement": "COLOMBIER SAUGNIEU", - "nomCommune": "COLOMBIER SAUGNIEU" + "codePostal": "62136", + "codeCommune": "62706", + "libelleAcheminement": "RICHEBOURG", + "nomCommune": "RICHEBOURG" }, { - "codePostal": "70190", - "codeCommune": "70507", - "libelleAcheminement": "TRESILLEY", - "nomCommune": "TRESILLEY" + "codePostal": "72600", + "codeCommune": "72170", + "libelleAcheminement": "LOUVIGNY", + "nomCommune": "LOUVIGNY" }, { - "codePostal": "45490", - "codeCommune": "45103", - "libelleAcheminement": "CORBEILLES", - "nomCommune": "CORBEILLES" + "codePostal": "21360", + "codeCommune": "21221", + "libelleAcheminement": "CUSSY LA COLONNE", + "nomCommune": "CUSSY LA COLONNE" }, { - "codePostal": "14990", - "codeCommune": "14066", - "libelleAcheminement": "BERNIERES SUR MER", - "nomCommune": "BERNIERES SUR MER" + "codePostal": "72600", + "codeCommune": "72215", + "libelleAcheminement": "NEUFCHATEL EN SAOSNOIS", + "nomCommune": "NEUFCHATEL EN SAOSNOIS" }, { - "codePostal": "69125", - "codeCommune": "69299", - "libelleAcheminement": "COLOMBIER SAUGNIEU", - "nomCommune": "COLOMBIER SAUGNIEU" + "codePostal": "61400", + "codeCommune": "61196", + "libelleAcheminement": "BELFORET EN PERCHE", + "nomCommune": "BELFORET EN PERCHE" }, { - "codePostal": "70000", - "codeCommune": "70516", - "libelleAcheminement": "VALLEROIS LE BOIS", - "nomCommune": "VALLEROIS LE BOIS" + "codePostal": "62182", + "codeCommune": "62709", + "libelleAcheminement": "RIENCOURT LES CAGNICOURT", + "nomCommune": "RIENCOURT LES CAGNICOURT" }, { - "codePostal": "45720", - "codeCommune": "45108", - "libelleAcheminement": "COULLONS", - "nomCommune": "COULLONS" + "codePostal": "72210", + "codeCommune": "72177", + "libelleAcheminement": "MAIGNE", + "nomCommune": "MAIGNE" }, { - "codePostal": "14112", - "codeCommune": "14068", - "libelleAcheminement": "BIEVILLE BEUVILLE", - "nomCommune": "BIEVILLE BEUVILLE" + "codePostal": "21190", + "codeCommune": "21236", + "libelleAcheminement": "EBATY", + "nomCommune": "EBATY" }, { - "codePostal": "69002", - "codeCommune": "69382", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 02" + "codePostal": "72190", + "codeCommune": "72217", + "libelleAcheminement": "NEUVILLE SUR SARTHE", + "nomCommune": "NEUVILLE SUR SARTHE" }, { - "codePostal": "70160", - "codeCommune": "70518", - "libelleAcheminement": "LE VAL ST ELOI", - "nomCommune": "LE VAL ST ELOI" + "codePostal": "61250", + "codeCommune": "61202", + "libelleAcheminement": "HAUTERIVE", + "nomCommune": "HAUTERIVE" }, { - "codePostal": "45130", - "codeCommune": "45109", - "libelleAcheminement": "COULMIERS", - "nomCommune": "COULMIERS" + "codePostal": "62118", + "codeCommune": "62718", + "libelleAcheminement": "ROEUX", + "nomCommune": "ROEUX" }, { - "codePostal": "14130", - "codeCommune": "14085", - "libelleAcheminement": "BONNEVILLE LA LOUVET", - "nomCommune": "BONNEVILLE LA LOUVET" + "codePostal": "72440", + "codeCommune": "72178", + "libelleAcheminement": "MAISONCELLES", + "nomCommune": "MAISONCELLES" }, { - "codePostal": "69003", - "codeCommune": "69383", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 03" + "codePostal": "21540", + "codeCommune": "21238", + "libelleAcheminement": "ECHANNAY", + "nomCommune": "ECHANNAY" }, { - "codePostal": "70120", - "codeCommune": "70525", - "libelleAcheminement": "VAUCONCOURT NERVEZAIN", - "nomCommune": "VAUCONCOURT NERVEZAIN" + "codePostal": "72170", + "codeCommune": "72235", + "libelleAcheminement": "PIACE", + "nomCommune": "PIACE" }, { - "codePostal": "45190", - "codeCommune": "45116", - "libelleAcheminement": "CRAVANT", - "nomCommune": "CRAVANT" + "codePostal": "61290", + "codeCommune": "61206", + "libelleAcheminement": "L HOME CHAMONDOT", + "nomCommune": "L HOME CHAMONDOT" }, { - "codePostal": "14800", - "codeCommune": "14086", - "libelleAcheminement": "BONNEVILLE SUR TOUQUES", - "nomCommune": "BONNEVILLE SUR TOUQUES" + "codePostal": "62770", + "codeCommune": "62719", + "libelleAcheminement": "ROLLANCOURT", + "nomCommune": "ROLLANCOURT" }, { - "codePostal": "70000", - "codeCommune": "70019", - "libelleAcheminement": "ANDELARRE", - "nomCommune": "ANDELARRE" + "codePostal": "72600", + "codeCommune": "72180", + "libelleAcheminement": "MAMERS", + "nomCommune": "MAMERS" }, { - "codePostal": "70100", - "codeCommune": "70528", - "libelleAcheminement": "VELESMES ECHEVANNE", - "nomCommune": "VELESMES ECHEVANNE" + "codePostal": "21170", + "codeCommune": "21249", + "libelleAcheminement": "ESBARRES", + "nomCommune": "ESBARRES" }, { - "codePostal": "45170", - "codeCommune": "45118", - "libelleAcheminement": "CROTTES EN PITHIVERAIS", - "nomCommune": "CROTTES EN PITHIVERAIS" + "codePostal": "72510", + "codeCommune": "72243", + "libelleAcheminement": "PONTVALLAIN", + "nomCommune": "PONTVALLAIN" }, { - "codePostal": "14430", - "codeCommune": "14091", - "libelleAcheminement": "BOURGEAUVILLE", - "nomCommune": "BOURGEAUVILLE" + "codePostal": "61130", + "codeCommune": "61207", + "libelleAcheminement": "IGE", + "nomCommune": "IGE" }, { - "codePostal": "70120", - "codeCommune": "70025", - "libelleAcheminement": "ARBECEY", - "nomCommune": "ARBECEY" + "codePostal": "62320", + "codeCommune": "62724", + "libelleAcheminement": "ROUVROY", + "nomCommune": "ROUVROY" }, { - "codePostal": "70100", - "codeCommune": "70529", - "libelleAcheminement": "VELET", - "nomCommune": "VELET" + "codePostal": "72000", + "codeCommune": "72181", + "libelleAcheminement": "LE MANS", + "nomCommune": "LE MANS" }, { - "codePostal": "45570", - "codeCommune": "45122", - "libelleAcheminement": "DAMPIERRE EN BURLY", - "nomCommune": "DAMPIERRE EN BURLY" + "codePostal": "21121", + "codeCommune": "21255", + "libelleAcheminement": "ETAULES", + "nomCommune": "ETAULES" }, { - "codePostal": "14210", - "codeCommune": "14098", - "libelleAcheminement": "THUE ET MUE", - "nomCommune": "THUE ET MUE" + "codePostal": "72120", + "codeCommune": "72250", + "libelleAcheminement": "RAHAY", + "nomCommune": "RAHAY" }, { - "codePostal": "70600", - "codeCommune": "70027", - "libelleAcheminement": "ARGILLIERES", - "nomCommune": "ARGILLIERES" + "codePostal": "61140", + "codeCommune": "61211", + "libelleAcheminement": "JUVIGNY VAL D ANDAINE", + "nomCommune": "JUVIGNY VAL D ANDAINE" }, { - "codePostal": "70110", - "codeCommune": "70530", - "libelleAcheminement": "VELLECHEVREUX ET COURBENANS", - "nomCommune": "VELLECHEVREUX ET COURBENANS" + "codePostal": "62860", + "codeCommune": "62728", + "libelleAcheminement": "RUMAUCOURT", + "nomCommune": "RUMAUCOURT" }, { - "codePostal": "45390", - "codeCommune": "45125", - "libelleAcheminement": "DIMANCHEVILLE", - "nomCommune": "DIMANCHEVILLE" + "codePostal": "72170", + "codeCommune": "72186", + "libelleAcheminement": "MARESCHE", + "nomCommune": "MARESCHE" }, { - "codePostal": "14740", - "codeCommune": "14098", - "libelleAcheminement": "THUE ET MUE", - "nomCommune": "THUE ET MUE" + "codePostal": "21450", + "codeCommune": "21257", + "libelleAcheminement": "ETORMAY", + "nomCommune": "ETORMAY" }, { - "codePostal": "70200", - "codeCommune": "70029", - "libelleAcheminement": "ARPENANS", - "nomCommune": "ARPENANS" + "codePostal": "72230", + "codeCommune": "72260", + "libelleAcheminement": "RUAUDIN", + "nomCommune": "RUAUDIN" }, { - "codePostal": "70700", - "codeCommune": "70533", - "libelleAcheminement": "VELLEFREY ET VELLEFRANGE", - "nomCommune": "VELLEFREY ET VELLEFRANGE" + "codePostal": "61140", + "codeCommune": "61211", + "libelleAcheminement": "JUVIGNY VAL D ANDAINE", + "nomCommune": "JUVIGNY VAL D ANDAINE" }, { - "codePostal": "45320", - "codeCommune": "45136", - "libelleAcheminement": "ERVAUVILLE", - "nomCommune": "ERVAUVILLE" + "codePostal": "62370", + "codeCommune": "62730", + "libelleAcheminement": "RUMINGHEM", + "nomCommune": "RUMINGHEM" }, { - "codePostal": "14680", - "codeCommune": "14100", - "libelleAcheminement": "BRETTEVILLE SUR LAIZE", - "nomCommune": "BRETTEVILLE SUR LAIZE" + "codePostal": "72600", + "codeCommune": "72188", + "libelleAcheminement": "MAROLLETTE", + "nomCommune": "MAROLLETTE" }, { - "codePostal": "70190", - "codeCommune": "70036", - "libelleAcheminement": "AULX LES CROMARY", - "nomCommune": "AULX LES CROMARY" + "codePostal": "21110", + "codeCommune": "21261", + "libelleAcheminement": "FAUVERNEY", + "nomCommune": "FAUVERNEY" }, { - "codePostal": "70000", - "codeCommune": "70536", - "libelleAcheminement": "VELLE LE CHATEL", - "nomCommune": "VELLE LE CHATEL" + "codePostal": "72300", + "codeCommune": "72264", + "libelleAcheminement": "SABLE SUR SARTHE", + "nomCommune": "SABLE SUR SARTHE" }, { - "codePostal": "45250", - "codeCommune": "45138", - "libelleAcheminement": "ESCRIGNELLES", - "nomCommune": "ESCRIGNELLES" + "codePostal": "61330", + "codeCommune": "61211", + "libelleAcheminement": "JUVIGNY VAL D ANDAINE", + "nomCommune": "JUVIGNY VAL D ANDAINE" }, { - "codePostal": "14490", - "codeCommune": "14140", - "libelleAcheminement": "CASTILLON", - "nomCommune": "CASTILLON" + "codePostal": "62113", + "codeCommune": "62735", + "libelleAcheminement": "SAILLY LABOURSE", + "nomCommune": "SAILLY LABOURSE" }, { - "codePostal": "70180", - "codeCommune": "70037", - "libelleAcheminement": "AUTET", - "nomCommune": "AUTET" + "codePostal": "72170", + "codeCommune": "72199", + "libelleAcheminement": "MOITRON SUR SARTHE", + "nomCommune": "MOITRON SUR SARTHE" }, { - "codePostal": "70700", - "codeCommune": "70540", - "libelleAcheminement": "VELLOREILLE LES CHOYE", - "nomCommune": "VELLOREILLE LES CHOYE" + "codePostal": "21220", + "codeCommune": "21265", + "libelleAcheminement": "FIXIN", + "nomCommune": "FIXIN" }, { - "codePostal": "45300", - "codeCommune": "45139", - "libelleAcheminement": "ESTOUY", - "nomCommune": "ESTOUY" + "codePostal": "72220", + "codeCommune": "72268", + "libelleAcheminement": "ST BIEZ EN BELIN", + "nomCommune": "ST BIEZ EN BELIN" }, { - "codePostal": "14220", - "codeCommune": "14150", - "libelleAcheminement": "CESNY LES SOURCES", - "nomCommune": "CESNY LES SOURCES" + "codePostal": "61240", + "codeCommune": "61225", + "libelleAcheminement": "LIGNERES", + "nomCommune": "LIGNERES" }, { - "codePostal": "70190", - "codeCommune": "70038", - "libelleAcheminement": "AUTHOISON", - "nomCommune": "AUTHOISON" + "codePostal": "62760", + "codeCommune": "62741", + "libelleAcheminement": "ST AMAND", + "nomCommune": "ST AMAND" }, { - "codePostal": "70110", - "codeCommune": "70552", - "libelleAcheminement": "VILLAFANS", - "nomCommune": "VILLAFANS" + "codePostal": "72260", + "codeCommune": "72202", + "libelleAcheminement": "MONHOUDOU", + "nomCommune": "MONHOUDOU" }, { - "codePostal": "45450", - "codeCommune": "45142", - "libelleAcheminement": "FAY AUX LOGES", - "nomCommune": "FAY AUX LOGES" + "codePostal": "21160", + "codeCommune": "21270", + "libelleAcheminement": "FLAVIGNEROT", + "nomCommune": "FLAVIGNEROT" }, { - "codePostal": "14220", - "codeCommune": "14150", - "libelleAcheminement": "CESNY LES SOURCES", - "nomCommune": "CESNY LES SOURCES" + "codePostal": "72350", + "codeCommune": "72278", + "libelleAcheminement": "ST DENIS D ORQUES", + "nomCommune": "ST DENIS D ORQUES" }, { - "codePostal": "70110", - "codeCommune": "70040", - "libelleAcheminement": "AUTREY LES CERRE", - "nomCommune": "AUTREY LES CERRE" + "codePostal": "61220", + "codeCommune": "61227", + "libelleAcheminement": "LIGNOU", + "nomCommune": "LIGNOU" }, { - "codePostal": "70110", - "codeCommune": "70553", - "libelleAcheminement": "VILLARGENT", - "nomCommune": "VILLARGENT" + "codePostal": "62223", + "codeCommune": "62744", + "libelleAcheminement": "STE CATHERINE", + "nomCommune": "STE CATHERINE" }, { - "codePostal": "45340", - "codeCommune": "45151", - "libelleAcheminement": "GAUBERTIN", - "nomCommune": "GAUBERTIN" + "codePostal": "72260", + "codeCommune": "72214", + "libelleAcheminement": "NAUVAY", + "nomCommune": "NAUVAY" }, { - "codePostal": "14370", - "codeCommune": "14163", - "libelleAcheminement": "CLEVILLE", - "nomCommune": "CLEVILLE" + "codePostal": "21330", + "codeCommune": "21279", + "libelleAcheminement": "FONTAINES LES SECHES", + "nomCommune": "FONTAINES LES SECHES" }, { - "codePostal": "70110", - "codeCommune": "70042", - "libelleAcheminement": "AUTREY LE VAY", - "nomCommune": "AUTREY LE VAY" + "codePostal": "72110", + "codeCommune": "72281", + "libelleAcheminement": "ST GEORGES DU ROSAY", + "nomCommune": "ST GEORGES DU ROSAY" }, { - "codePostal": "70240", - "codeCommune": "70558", - "libelleAcheminement": "LA VILLENEUVE BELLENOYE LA MAIZE", - "nomCommune": "LA VILLENEUVE BELLENOYE LA MAIZE" + "codePostal": "61320", + "codeCommune": "61228", + "libelleAcheminement": "L OREE D ECOUVES", + "nomCommune": "L OREE D ECOUVES" }, { - "codePostal": "45110", - "codeCommune": "45153", - "libelleAcheminement": "GERMIGNY DES PRES", - "nomCommune": "GERMIGNY DES PRES" + "codePostal": "62360", + "codeCommune": "62746", + "libelleAcheminement": "PONT DE BRIQUES ST ETIENNE", + "nomCommune": "ST ETIENNE AU MONT" }, { - "codePostal": "14710", - "codeCommune": "14168", - "libelleAcheminement": "COLOMBIERES", - "nomCommune": "COLOMBIERES" + "codePostal": "72240", + "codeCommune": "72219", + "libelleAcheminement": "BERNAY NEUVY EN CHAMPAGNE", + "nomCommune": "BERNAY NEUVY EN CHAMPAGNE" }, { - "codePostal": "70000", - "codeCommune": "70044", - "libelleAcheminement": "AUXON", - "nomCommune": "AUXON" + "codePostal": "21460", + "codeCommune": "21282", + "libelleAcheminement": "FORLEANS", + "nomCommune": "FORLEANS" }, { - "codePostal": "70190", - "codeCommune": "70560", - "libelleAcheminement": "VILLERS BOUTON", - "nomCommune": "VILLERS BOUTON" + "codePostal": "72220", + "codeCommune": "72287", + "libelleAcheminement": "ST GERVAIS EN BELIN", + "nomCommune": "ST GERVAIS EN BELIN" }, { - "codePostal": "45300", - "codeCommune": "45162", - "libelleAcheminement": "GUIGNEVILLE", - "nomCommune": "GUIGNEVILLE" + "codePostal": "61320", + "codeCommune": "61228", + "libelleAcheminement": "L OREE D ECOUVES", + "nomCommune": "L OREE D ECOUVES" }, { - "codePostal": "14480", - "codeCommune": "14169", - "libelleAcheminement": "COLOMBIERS SUR SEULLES", - "nomCommune": "COLOMBIERS SUR SEULLES" + "codePostal": "62370", + "codeCommune": "62748", + "libelleAcheminement": "ST FOLQUIN", + "nomCommune": "ST FOLQUIN" }, { - "codePostal": "70000", - "codeCommune": "70047", - "libelleAcheminement": "BAIGNES", - "nomCommune": "BAIGNES" + "codePostal": "72370", + "codeCommune": "72224", + "libelleAcheminement": "NUILLE LE JALAIS", + "nomCommune": "NUILLE LE JALAIS" }, { - "codePostal": "70110", - "codeCommune": "70562", - "libelleAcheminement": "VILLERS LA VILLE", - "nomCommune": "VILLERS LA VILLE" + "codePostal": "21500", + "codeCommune": "21287", + "libelleAcheminement": "FRESNES", + "nomCommune": "FRESNES" }, { - "codePostal": "45600", - "codeCommune": "45164", - "libelleAcheminement": "GUILLY", - "nomCommune": "GUILLY" + "codePostal": "72510", + "codeCommune": "72291", + "libelleAcheminement": "ST JEAN DE LA MOTTE", + "nomCommune": "ST JEAN DE LA MOTTE" }, { - "codePostal": "14220", - "codeCommune": "14171", - "libelleAcheminement": "COMBRAY", - "nomCommune": "COMBRAY" + "codePostal": "61420", + "codeCommune": "61228", + "libelleAcheminement": "L OREE D ECOUVES", + "nomCommune": "L OREE D ECOUVES" }, { - "codePostal": "70800", - "codeCommune": "70052", - "libelleAcheminement": "BASSIGNEY", - "nomCommune": "BASSIGNEY" + "codePostal": "62370", + "codeCommune": "62756", + "libelleAcheminement": "STE MARIE KERQUE", + "nomCommune": "STE MARIE KERQUE" }, { - "codePostal": "70000", - "codeCommune": "70563", - "libelleAcheminement": "VILLERS LE SEC", - "nomCommune": "VILLERS LE SEC" + "codePostal": "72300", + "codeCommune": "72232", + "libelleAcheminement": "NOTRE DAME DU PE", + "nomCommune": "NOTRE DAME DU PE" }, { - "codePostal": "45300", - "codeCommune": "45170", - "libelleAcheminement": "INTVILLE LA GUETARD", - "nomCommune": "INTVILLE LA GUETARD" + "codePostal": "21700", + "codeCommune": "21294", + "libelleAcheminement": "GERLAND", + "nomCommune": "GERLAND" }, { - "codePostal": "14270", - "codeCommune": "14173", - "libelleAcheminement": "CONDE SUR IFS", - "nomCommune": "CONDE SUR IFS" + "codePostal": "72430", + "codeCommune": "72293", + "libelleAcheminement": "ST JEAN DU BOIS", + "nomCommune": "ST JEAN DU BOIS" }, { - "codePostal": "70300", - "codeCommune": "70055", - "libelleAcheminement": "BAUDONCOURT", - "nomCommune": "BAUDONCOURT" + "codePostal": "61420", + "codeCommune": "61228", + "libelleAcheminement": "L OREE D ECOUVES", + "nomCommune": "L OREE D ECOUVES" }, { - "codePostal": "70170", - "codeCommune": "70566", - "libelleAcheminement": "VILLERS SUR PORT", - "nomCommune": "VILLERS SUR PORT" + "codePostal": "62500", + "codeCommune": "62757", + "libelleAcheminement": "ST MARTIN LEZ TATINGHEM", + "nomCommune": "ST MARTIN LEZ TATINGHEM" }, { - "codePostal": "45740", - "codeCommune": "45179", - "libelleAcheminement": "LAILLY EN VAL", - "nomCommune": "LAILLY EN VAL" + "codePostal": "72430", + "codeCommune": "72237", + "libelleAcheminement": "PIRMIL", + "nomCommune": "PIRMIL" }, { - "codePostal": "14400", - "codeCommune": "14175", - "libelleAcheminement": "CONDE SUR SEULLES", - "nomCommune": "CONDE SUR SEULLES" + "codePostal": "21520", + "codeCommune": "21303", + "libelleAcheminement": "LES GOULLES", + "nomCommune": "LES GOULLES" }, { - "codePostal": "70100", - "codeCommune": "70058", - "libelleAcheminement": "BEAUJEU ET QUITTEUR", - "nomCommune": "BEAUJEU ST VALLIER PIERREJUX QUITTEUR" + "codePostal": "72130", + "codeCommune": "72294", + "libelleAcheminement": "ST LEONARD DES BOIS", + "nomCommune": "ST LEONARD DES BOIS" }, { - "codePostal": "70500", - "codeCommune": "70572", - "libelleAcheminement": "VITREY SUR MANCE", - "nomCommune": "VITREY SUR MANCE" + "codePostal": "61290", + "codeCommune": "61230", + "libelleAcheminement": "LONGNY LES VILLAGES", + "nomCommune": "LONGNY LES VILLAGES" }, { - "codePostal": "45490", - "codeCommune": "45186", - "libelleAcheminement": "LORCY", - "nomCommune": "LORCY" + "codePostal": "62500", + "codeCommune": "62757", + "libelleAcheminement": "ST MARTIN LEZ TATINGHEM", + "nomCommune": "ST MARTIN LEZ TATINGHEM" }, { - "codePostal": "14170", - "codeCommune": "14190", - "libelleAcheminement": "COURCY", - "nomCommune": "COURCY" + "codePostal": "72300", + "codeCommune": "72244", + "libelleAcheminement": "PRECIGNE", + "nomCommune": "PRECIGNE" }, { - "codePostal": "70310", - "codeCommune": "70071", - "libelleAcheminement": "BEULOTTE ST LAURENT", - "nomCommune": "BEULOTTE ST LAURENT" + "codePostal": "21290", + "codeCommune": "21312", + "libelleAcheminement": "GURGY LA VILLE", + "nomCommune": "GURGY LA VILLE" }, { - "codePostal": "70150", - "codeCommune": "70578", - "libelleAcheminement": "VREGILLE", - "nomCommune": "VREGILLE" + "codePostal": "72320", + "codeCommune": "72296", + "libelleAcheminement": "ST MAIXENT", + "nomCommune": "ST MAIXENT" }, { - "codePostal": "45260", - "codeCommune": "45187", - "libelleAcheminement": "LORRIS", - "nomCommune": "LORRIS" + "codePostal": "61700", + "codeCommune": "61232", + "libelleAcheminement": "LONLAY L ABBAYE", + "nomCommune": "LONLAY L ABBAYE" }, { - "codePostal": "14100", - "codeCommune": "14193", - "libelleAcheminement": "COURTONNE LA MEURDRAC", - "nomCommune": "COURTONNE LA MEURDRAC" + "codePostal": "62500", + "codeCommune": "62772", + "libelleAcheminement": "SALPERWICK", + "nomCommune": "SALPERWICK" }, { - "codePostal": "70110", - "codeCommune": "70072", - "libelleAcheminement": "BEVEUGE", - "nomCommune": "BEVEUGE" + "codePostal": "72700", + "codeCommune": "72247", + "libelleAcheminement": "PRUILLE LE CHETIF", + "nomCommune": "PRUILLE LE CHETIF" }, { - "codePostal": "70400", - "codeCommune": "70579", - "libelleAcheminement": "VYANS LE VAL", - "nomCommune": "VYANS LE VAL" + "codePostal": "21150", + "codeCommune": "21314", + "libelleAcheminement": "HAUTEROCHE", + "nomCommune": "HAUTEROCHE" }, { - "codePostal": "45470", - "codeCommune": "45188", - "libelleAcheminement": "LOURY", - "nomCommune": "LOURY" + "codePostal": "72440", + "codeCommune": "72303", + "libelleAcheminement": "ST MICHEL DE CHAVAIGNES", + "nomCommune": "ST MICHEL DE CHAVAIGNES" }, { - "codePostal": "14290", - "codeCommune": "14194", - "libelleAcheminement": "COURTONNE LES DEUX EGLISES", - "nomCommune": "COURTONNE LES DEUX EGLISES" + "codePostal": "61230", + "codeCommune": "61252", + "libelleAcheminement": "MARDILLY", + "nomCommune": "MARDILLY" }, { - "codePostal": "70110", - "codeCommune": "70077", - "libelleAcheminement": "BOREY", - "nomCommune": "BOREY" + "codePostal": "62850", + "codeCommune": "62775", + "libelleAcheminement": "SANGHEN", + "nomCommune": "SANGHEN" }, { - "codePostal": "71370", - "codeCommune": "71002", - "libelleAcheminement": "L ABERGEMENT STE COLOMBE", - "nomCommune": "L ABERGEMENT STE COLOMBE" + "codePostal": "72610", + "codeCommune": "72254", + "libelleAcheminement": "ROUESSE FONTAINE", + "nomCommune": "ROUESSE FONTAINE" }, { - "codePostal": "45330", - "codeCommune": "45191", - "libelleAcheminement": "LE MALESHERBOIS", - "nomCommune": "LE MALESHERBOIS" + "codePostal": "21120", + "codeCommune": "21317", + "libelleAcheminement": "IS SUR TILLE", + "nomCommune": "IS SUR TILLE" }, { - "codePostal": "14480", - "codeCommune": "14196", - "libelleAcheminement": "CREPON", - "nomCommune": "CREPON" + "codePostal": "72190", + "codeCommune": "72310", + "libelleAcheminement": "ST PAVACE", + "nomCommune": "ST PAVACE" }, { - "codePostal": "70500", - "codeCommune": "70078", - "libelleAcheminement": "BOUGEY", - "nomCommune": "BOUGEY" + "codePostal": "61270", + "codeCommune": "61259", + "libelleAcheminement": "LE MENIL BERARD", + "nomCommune": "LE MENIL BERARD" }, { - "codePostal": "71400", - "codeCommune": "71014", - "libelleAcheminement": "AUTUN", - "nomCommune": "AUTUN" + "codePostal": "62121", + "codeCommune": "62776", + "libelleAcheminement": "SAPIGNIES", + "nomCommune": "SAPIGNIES" }, { - "codePostal": "45760", - "codeCommune": "45197", - "libelleAcheminement": "MARIGNY LES USAGES", - "nomCommune": "MARIGNY LES USAGES" + "codePostal": "72140", + "codeCommune": "72256", + "libelleAcheminement": "ROUEZ", + "nomCommune": "ROUEZ" }, { - "codePostal": "14480", - "codeCommune": "14200", - "libelleAcheminement": "CREULLY SUR SEULLES", - "nomCommune": "CREULLY SUR SEULLES" + "codePostal": "21110", + "codeCommune": "21320", + "libelleAcheminement": "IZIER", + "nomCommune": "IZIER" }, { - "codePostal": "70170", - "codeCommune": "70079", - "libelleAcheminement": "BOUGNON", - "nomCommune": "BOUGNON" + "codePostal": "72430", + "codeCommune": "72312", + "libelleAcheminement": "ST PIERRE DES BOIS", + "nomCommune": "ST PIERRE DES BOIS" }, { - "codePostal": "71400", - "codeCommune": "71015", - "libelleAcheminement": "AUXY", - "nomCommune": "AUXY" + "codePostal": "61240", + "codeCommune": "61264", + "libelleAcheminement": "MENIL FROGER", + "nomCommune": "MENIL FROGER" }, { - "codePostal": "45300", - "codeCommune": "45198", - "libelleAcheminement": "MARSAINVILLIERS", - "nomCommune": "MARSAINVILLIERS" + "codePostal": "62810", + "codeCommune": "62778", + "libelleAcheminement": "SARS LE BOIS", + "nomCommune": "SARS LE BOIS" }, { - "codePostal": "14840", - "codeCommune": "14221", - "libelleAcheminement": "DEMOUVILLE", - "nomCommune": "DEMOUVILLE" + "codePostal": "72310", + "codeCommune": "72262", + "libelleAcheminement": "LOIR EN VALLEE", + "nomCommune": "LOIR EN VALLEE" }, { - "codePostal": "70200", - "codeCommune": "70081", - "libelleAcheminement": "BOUHANS LES LURE", - "nomCommune": "BOUHANS LES LURE" + "codePostal": "21340", + "codeCommune": "21327", + "libelleAcheminement": "VAL MONT", + "nomCommune": "VAL MONT" }, { - "codePostal": "71540", - "codeCommune": "71020", - "libelleAcheminement": "BARNAY", - "nomCommune": "BARNAY" + "codePostal": "72380", + "codeCommune": "72319", + "libelleAcheminement": "STE SABINE SUR LONGEVE", + "nomCommune": "STE SABINE SUR LONGEVE" }, { - "codePostal": "45490", - "codeCommune": "45206", - "libelleAcheminement": "MIGNERES", - "nomCommune": "MIGNERES" + "codePostal": "61170", + "codeCommune": "61266", + "libelleAcheminement": "LE MENIL GUYON", + "nomCommune": "LE MENIL GUYON" }, { - "codePostal": "14230", - "codeCommune": "14224", - "libelleAcheminement": "DEUX JUMEAUX", - "nomCommune": "DEUX JUMEAUX" + "codePostal": "62240", + "codeCommune": "62786", + "libelleAcheminement": "SELLES", + "nomCommune": "SELLES" }, { - "codePostal": "70800", - "codeCommune": "70083", - "libelleAcheminement": "BOULIGNEY", - "nomCommune": "BOULIGNEY" + "codePostal": "72110", + "codeCommune": "72265", + "libelleAcheminement": "ST AIGNAN", + "nomCommune": "ST AIGNAN" }, { - "codePostal": "71800", - "codeCommune": "71022", - "libelleAcheminement": "BAUDEMONT", - "nomCommune": "BAUDEMONT" + "codePostal": "21140", + "codeCommune": "21329", + "libelleAcheminement": "JUILLY", + "nomCommune": "JUILLY" }, { - "codePostal": "45490", - "codeCommune": "45207", - "libelleAcheminement": "MIGNERETTE", - "nomCommune": "MIGNERETTE" + "codePostal": "72130", + "codeCommune": "72323", + "libelleAcheminement": "ST VICTEUR", + "nomCommune": "ST VICTEUR" }, { - "codePostal": "14430", - "codeCommune": "14227", - "libelleAcheminement": "DOUVILLE EN AUGE", - "nomCommune": "DOUVILLE EN AUGE" + "codePostal": "61210", + "codeCommune": "61267", + "libelleAcheminement": "MENIL HERMEI", + "nomCommune": "MENIL HERMEI" }, { - "codePostal": "70500", - "codeCommune": "70086", - "libelleAcheminement": "BOURBEVELLE", - "nomCommune": "BOURBEVELLE" + "codePostal": "62270", + "codeCommune": "62795", + "libelleAcheminement": "SIBIVILLE", + "nomCommune": "SIBIVILLE" }, { - "codePostal": "71250", - "codeCommune": "71030", - "libelleAcheminement": "BERGESSERIN", - "nomCommune": "BERGESSERIN" + "codePostal": "72400", + "codeCommune": "72267", + "libelleAcheminement": "ST AUBIN DES COUDRAIS", + "nomCommune": "ST AUBIN DES COUDRAIS" }, { - "codePostal": "45270", - "codeCommune": "45223", - "libelleAcheminement": "NESPLOY", - "nomCommune": "NESPLOY" + "codePostal": "21230", + "codeCommune": "21334", + "libelleAcheminement": "LACANCHE", + "nomCommune": "LACANCHE" }, { - "codePostal": "14630", - "codeCommune": "14237", - "libelleAcheminement": "EMIEVILLE", - "nomCommune": "EMIEVILLE" + "codePostal": "72170", + "codeCommune": "72332", + "libelleAcheminement": "SEGRIE", + "nomCommune": "SEGRIE" }, { - "codePostal": "70800", - "codeCommune": "70087", - "libelleAcheminement": "BOURGUIGNON LES CONFLANS", - "nomCommune": "BOURGUIGNON LES CONFLANS" + "codePostal": "61430", + "codeCommune": "61269", + "libelleAcheminement": "MENIL HUBERT SUR ORNE", + "nomCommune": "MENIL HUBERT SUR ORNE" }, { - "codePostal": "71250", - "codeCommune": "71030", - "libelleAcheminement": "BERGESSERIN", - "nomCommune": "BERGESSERIN" + "codePostal": "62130", + "codeCommune": "62797", + "libelleAcheminement": "SIRACOURT", + "nomCommune": "SIRACOURT" }, { - "codePostal": "45170", - "codeCommune": "45224", - "libelleAcheminement": "NEUVILLE AUX BOIS", - "nomCommune": "NEUVILLE AUX BOIS" + "codePostal": "72120", + "codeCommune": "72269", + "libelleAcheminement": "ST CALAIS", + "nomCommune": "ST CALAIS" }, { - "codePostal": "14800", - "codeCommune": "14238", - "libelleAcheminement": "ENGLESQUEVILLE EN AUGE", - "nomCommune": "ENGLESQUEVILLE EN AUGE" + "codePostal": "21110", + "codeCommune": "21351", + "libelleAcheminement": "LONGCHAMP", + "nomCommune": "LONGCHAMP" }, { - "codePostal": "70120", - "codeCommune": "70089", - "libelleAcheminement": "BOURGUIGNON LES MOREY", - "nomCommune": "BOURGUIGNON LES MOREY" + "codePostal": "72390", + "codeCommune": "72333", + "libelleAcheminement": "SEMUR EN VALLON", + "nomCommune": "SEMUR EN VALLON" }, { - "codePostal": "71960", - "codeCommune": "71031", - "libelleAcheminement": "BERZE LE CHATEL", - "nomCommune": "BERZE LE CHATEL" + "codePostal": "61240", + "codeCommune": "61275", + "libelleAcheminement": "LE MERLERAULT", + "nomCommune": "LE MERLERAULT" }, { - "codePostal": "45290", - "codeCommune": "45229", - "libelleAcheminement": "NOGENT SUR VERNISSON", - "nomCommune": "NOGENT SUR VERNISSON" + "codePostal": "62111", + "codeCommune": "62800", + "libelleAcheminement": "SOUASTRE", + "nomCommune": "SOUASTRE" }, { - "codePostal": "14310", - "codeCommune": "14241", - "libelleAcheminement": "EPINAY SUR ODON", - "nomCommune": "EPINAY SUR ODON" + "codePostal": "72600", + "codeCommune": "72270", + "libelleAcheminement": "ST CALEZ EN SAOSNOIS", + "nomCommune": "ST CALEZ EN SAOSNOIS" }, { - "codePostal": "70500", - "codeCommune": "70091", - "libelleAcheminement": "BOUSSERAUCOURT", - "nomCommune": "BOUSSERAUCOURT" + "codePostal": "21170", + "codeCommune": "21356", + "libelleAcheminement": "LOSNE", + "nomCommune": "LOSNE" }, { - "codePostal": "71620", - "codeCommune": "71033", - "libelleAcheminement": "BEY", - "nomCommune": "BEY" + "codePostal": "72700", + "codeCommune": "72344", + "libelleAcheminement": "SPAY", + "nomCommune": "SPAY" }, { - "codePostal": "45160", - "codeCommune": "45232", - "libelleAcheminement": "OLIVET", - "nomCommune": "OLIVET" + "codePostal": "61560", + "codeCommune": "61277", + "libelleAcheminement": "LA MESNIERE", + "nomCommune": "LA MESNIERE" }, { - "codePostal": "14700", - "codeCommune": "14244", - "libelleAcheminement": "ERAINES", - "nomCommune": "ERAINES" + "codePostal": "62153", + "codeCommune": "62801", + "libelleAcheminement": "SOUCHEZ", + "nomCommune": "SOUCHEZ" }, { - "codePostal": "70800", - "codeCommune": "70097", - "libelleAcheminement": "BRIAUCOURT", - "nomCommune": "BRIAUCOURT" + "codePostal": "72110", + "codeCommune": "72271", + "libelleAcheminement": "ST CELERIN", + "nomCommune": "ST CELERIN" }, { - "codePostal": "71710", - "codeCommune": "71038", - "libelleAcheminement": "LES BIZOTS", - "nomCommune": "LES BIZOTS" + "codePostal": "21700", + "codeCommune": "21368", + "libelleAcheminement": "MAGNY LES VILLERS", + "nomCommune": "MAGNY LES VILLERS" }, { - "codePostal": "45000", - "codeCommune": "45234", - "libelleAcheminement": "ORLEANS", - "nomCommune": "ORLEANS" + "codePostal": "72370", + "codeCommune": "72345", + "libelleAcheminement": "SURFONDS", + "nomCommune": "SURFONDS" }, { - "codePostal": "14220", - "codeCommune": "14251", - "libelleAcheminement": "ESSON", - "nomCommune": "ESSON" + "codePostal": "61250", + "codeCommune": "61279", + "libelleAcheminement": "MIEUXCE", + "nomCommune": "MIEUXCE" }, { - "codePostal": "70140", - "codeCommune": "70101", - "libelleAcheminement": "BROYE AUBIGNEY MONTSEUGNY", - "nomCommune": "BROYE AUBIGNEY MONTSEUGNY" + "codePostal": "62810", + "codeCommune": "62802", + "libelleAcheminement": "LE SOUICH", + "nomCommune": "LE SOUICH" }, { - "codePostal": "71800", - "codeCommune": "71041", - "libelleAcheminement": "BOIS STE MARIE", - "nomCommune": "BOIS STE MARIE" + "codePostal": "72120", + "codeCommune": "72272", + "libelleAcheminement": "STE CEROTTE", + "nomCommune": "STE CEROTTE" }, { - "codePostal": "45100", - "codeCommune": "45234", - "libelleAcheminement": "ORLEANS", - "nomCommune": "ORLEANS" + "codePostal": "21130", + "codeCommune": "21371", + "libelleAcheminement": "LES MAILLYS", + "nomCommune": "LES MAILLYS" }, { - "codePostal": "14700", - "codeCommune": "14258", - "libelleAcheminement": "FALAISE", - "nomCommune": "FALAISE" + "codePostal": "72430", + "codeCommune": "72347", + "libelleAcheminement": "TASSE", + "nomCommune": "TASSE" }, { - "codePostal": "70500", - "codeCommune": "70114", - "libelleAcheminement": "CENDRECOURT", - "nomCommune": "CENDRECOURT" + "codePostal": "61160", + "codeCommune": "61283", + "libelleAcheminement": "MONTABARD", + "nomCommune": "MONTABARD" }, { - "codePostal": "71520", - "codeCommune": "71050", - "libelleAcheminement": "BOURGVILAIN", - "nomCommune": "BOURGVILAIN" + "codePostal": "62179", + "codeCommune": "62806", + "libelleAcheminement": "TARDINGHEN", + "nomCommune": "TARDINGHEN" }, { - "codePostal": "45250", - "codeCommune": "45238", - "libelleAcheminement": "OUSSON SUR LOIRE", - "nomCommune": "OUSSON SUR LOIRE" + "codePostal": "72170", + "codeCommune": "72273", + "libelleAcheminement": "ST CHRISTOPHE DU JAMBET", + "nomCommune": "ST CHRISTOPHE DU JAMBET" }, { - "codePostal": "14100", - "codeCommune": "14260", - "libelleAcheminement": "FAUGUERNON", - "nomCommune": "FAUGUERNON" + "codePostal": "21430", + "codeCommune": "21375", + "libelleAcheminement": "MANLAY", + "nomCommune": "MANLAY" }, { - "codePostal": "70400", - "codeCommune": "70116", - "libelleAcheminement": "CHAGEY", - "nomCommune": "CHAGEY" + "codePostal": "72220", + "codeCommune": "72350", + "libelleAcheminement": "TELOCHE", + "nomCommune": "TELOCHE" }, { - "codePostal": "71150", - "codeCommune": "71051", - "libelleAcheminement": "BOUZERON", - "nomCommune": "BOUZERON" + "codePostal": "61210", + "codeCommune": "61308", + "libelleAcheminement": "NEUVY AU HOULME", + "nomCommune": "NEUVY AU HOULME" }, { - "codePostal": "45480", - "codeCommune": "45240", - "libelleAcheminement": "OUTARVILLE", - "nomCommune": "OUTARVILLE" + "codePostal": "62580", + "codeCommune": "62810", + "libelleAcheminement": "THELUS", + "nomCommune": "THELUS" }, { - "codePostal": "14123", - "codeCommune": "14271", - "libelleAcheminement": "FLEURY SUR ORNE", - "nomCommune": "FLEURY SUR ORNE" + "codePostal": "72110", + "codeCommune": "72277", + "libelleAcheminement": "ST DENIS DES COUDRAIS", + "nomCommune": "ST DENIS DES COUDRAIS" }, { - "codePostal": "70400", - "codeCommune": "70117", - "libelleAcheminement": "CHALONVILLARS", - "nomCommune": "CHALONVILLARS" + "codePostal": "21270", + "codeCommune": "21376", + "libelleAcheminement": "MARANDEUIL", + "nomCommune": "MARANDEUIL" }, { - "codePostal": "71700", - "codeCommune": "71052", - "libelleAcheminement": "BOYER", - "nomCommune": "BOYER" + "codePostal": "72110", + "codeCommune": "72352", + "libelleAcheminement": "TERREHAULT", + "nomCommune": "TERREHAULT" }, { - "codePostal": "45480", - "codeCommune": "45240", - "libelleAcheminement": "OUTARVILLE", - "nomCommune": "OUTARVILLE" + "codePostal": "61340", + "codeCommune": "61309", + "libelleAcheminement": "PERCHE EN NOCE", + "nomCommune": "PERCHE EN NOCE" }, { - "codePostal": "14790", - "codeCommune": "14274", - "libelleAcheminement": "FONTAINE ETOUPEFOUR", - "nomCommune": "FONTAINE ETOUPEFOUR" + "codePostal": "62760", + "codeCommune": "62814", + "libelleAcheminement": "THIEVRES", + "nomCommune": "THIEVRES" }, { - "codePostal": "70290", - "codeCommune": "70120", - "libelleAcheminement": "CHAMPAGNEY", - "nomCommune": "CHAMPAGNEY" + "codePostal": "72150", + "codeCommune": "72279", + "libelleAcheminement": "ST GEORGES DE LA COUEE", + "nomCommune": "ST GEORGES DE LA COUEE" }, { - "codePostal": "71290", - "codeCommune": "71061", - "libelleAcheminement": "BRIENNE", - "nomCommune": "BRIENNE" + "codePostal": "21350", + "codeCommune": "21381", + "libelleAcheminement": "MARCILLY ET DRACY", + "nomCommune": "MARCILLY ET DRACY" }, { - "codePostal": "45300", - "codeCommune": "45253", - "libelleAcheminement": "PITHIVIERS LE VIEIL", - "nomCommune": "PITHIVIERS LE VIEIL" + "codePostal": "72610", + "codeCommune": "72355", + "libelleAcheminement": "THOIRE SOUS CONTENSOR", + "nomCommune": "THOIRE SOUS CONTENSOR" }, { - "codePostal": "14610", - "codeCommune": "14275", - "libelleAcheminement": "FONTAINE HENRY", - "nomCommune": "FONTAINE HENRY" + "codePostal": "61340", + "codeCommune": "61309", + "libelleAcheminement": "PERCHE EN NOCE", + "nomCommune": "PERCHE EN NOCE" }, { - "codePostal": "70600", - "codeCommune": "70122", - "libelleAcheminement": "CHAMPLITTE", - "nomCommune": "CHAMPLITTE" + "codePostal": "62390", + "codeCommune": "62822", + "libelleAcheminement": "TOLLENT", + "nomCommune": "TOLLENT" }, { - "codePostal": "71480", - "codeCommune": "71079", - "libelleAcheminement": "CHAMPAGNAT", - "nomCommune": "CHAMPAGNAT" + "codePostal": "72380", + "codeCommune": "72289", + "libelleAcheminement": "STE JAMME SUR SARTHE", + "nomCommune": "STE JAMME SUR SARTHE" }, { - "codePostal": "45270", - "codeCommune": "45259", - "libelleAcheminement": "QUIERS SUR BEZONDE", - "nomCommune": "QUIERS SUR BEZONDE" + "codePostal": "21320", + "codeCommune": "21382", + "libelleAcheminement": "MARCILLY OGNY", + "nomCommune": "MARCILLY OGNY" }, { - "codePostal": "14710", - "codeCommune": "14281", - "libelleAcheminement": "FORMIGNY LA BATAILLE", - "nomCommune": "FORMIGNY LA BATAILLE" + "codePostal": "72500", + "codeCommune": "72356", + "libelleAcheminement": "THOIRE SUR DINAN", + "nomCommune": "THOIRE SUR DINAN" }, { - "codePostal": "70170", - "codeCommune": "70133", - "libelleAcheminement": "CHARGEY LES PORT", - "nomCommune": "CHARGEY LES PORT" + "codePostal": "61340", + "codeCommune": "61309", + "libelleAcheminement": "PERCHE EN NOCE", + "nomCommune": "PERCHE EN NOCE" }, { - "codePostal": "71530", - "codeCommune": "71081", - "libelleAcheminement": "CHAMPFORGEUIL", - "nomCommune": "CHAMPFORGEUIL" + "codePostal": "62140", + "codeCommune": "62824", + "libelleAcheminement": "TORTEFONTAINE", + "nomCommune": "TORTEFONTAINE" }, { - "codePostal": "45310", - "codeCommune": "45262", - "libelleAcheminement": "ROUVRAY STE CROIX", - "nomCommune": "ROUVRAY STE CROIX" + "codePostal": "72600", + "codeCommune": "72295", + "libelleAcheminement": "ST LONGIS", + "nomCommune": "ST LONGIS" }, { - "codePostal": "14950", - "codeCommune": "14302", - "libelleAcheminement": "GLANVILLE", - "nomCommune": "GLANVILLE" + "codePostal": "21120", + "codeCommune": "21383", + "libelleAcheminement": "MARCILLY SUR TILLE", + "nomCommune": "MARCILLY SUR TILLE" }, { - "codePostal": "70000", - "codeCommune": "70134", - "libelleAcheminement": "CHARIEZ", - "nomCommune": "CHARIEZ" + "codePostal": "72160", + "codeCommune": "72363", + "libelleAcheminement": "TUFFE VAL DE LA CHERONNE", + "nomCommune": "TUFFE VAL DE LA CHERONNE" }, { - "codePostal": "71460", - "codeCommune": "71087", - "libelleAcheminement": "CHAPAIZE", - "nomCommune": "CHAPAIZE" + "codePostal": "61350", + "codeCommune": "61324", + "libelleAcheminement": "PASSAIS VILLAGES", + "nomCommune": "PASSAIS VILLAGES" }, { - "codePostal": "45130", - "codeCommune": "45264", - "libelleAcheminement": "ROZIERES EN BEAUCE", - "nomCommune": "ROZIERES EN BEAUCE" + "codePostal": "62450", + "codeCommune": "62829", + "libelleAcheminement": "LE TRANSLOY", + "nomCommune": "LE TRANSLOY" }, { - "codePostal": "14160", - "codeCommune": "14316", - "libelleAcheminement": "GRANGUES", - "nomCommune": "GRANGUES" + "codePostal": "72600", + "codeCommune": "72317", + "libelleAcheminement": "ST REMY DU VAL", + "nomCommune": "ST REMY DU VAL" }, { - "codePostal": "70230", - "codeCommune": "70137", - "libelleAcheminement": "CHASSEY LES MONTBOZON", - "nomCommune": "CHASSEY LES MONTBOZON" + "codePostal": "21500", + "codeCommune": "21389", + "libelleAcheminement": "MARMAGNE", + "nomCommune": "MARMAGNE" }, { - "codePostal": "71130", - "codeCommune": "71088", - "libelleAcheminement": "LA CHAPELLE AU MANS", - "nomCommune": "LA CHAPELLE AU MANS" + "codePostal": "72360", + "codeCommune": "72369", + "libelleAcheminement": "VERNEIL LE CHETIF", + "nomCommune": "VERNEIL LE CHETIF" }, { - "codePostal": "45500", - "codeCommune": "45271", - "libelleAcheminement": "ST BRISSON SUR LOIRE", - "nomCommune": "ST BRISSON SUR LOIRE" + "codePostal": "61170", + "codeCommune": "61331", + "libelleAcheminement": "LE PLANTIS", + "nomCommune": "LE PLANTIS" }, { - "codePostal": "14220", - "codeCommune": "14320", - "libelleAcheminement": "GRIMBOSQ", - "nomCommune": "GRIMBOSQ" + "codePostal": "62130", + "codeCommune": "62831", + "libelleAcheminement": "TROISVAUX", + "nomCommune": "TROISVAUX" }, { - "codePostal": "70360", - "codeCommune": "70138", - "libelleAcheminement": "CHASSEY LES SCEY", - "nomCommune": "CHASSEY LES SCEY" + "codePostal": "72320", + "codeCommune": "72322", + "libelleAcheminement": "ST ULPHACE", + "nomCommune": "ST ULPHACE" }, { - "codePostal": "71190", - "codeCommune": "71096", - "libelleAcheminement": "LA CHAPELLE SOUS UCHON", - "nomCommune": "LA CHAPELLE SOUS UCHON" + "codePostal": "21350", + "codeCommune": "21395", + "libelleAcheminement": "MASSINGY LES VITTEAUX", + "nomCommune": "MASSINGY LES VITTEAUX" }, { - "codePostal": "45550", - "codeCommune": "45273", - "libelleAcheminement": "ST DENIS DE L HOTEL", - "nomCommune": "ST DENIS DE L HOTEL" + "codePostal": "72170", + "codeCommune": "72370", + "libelleAcheminement": "VERNIE", + "nomCommune": "VERNIE" }, { - "codePostal": "14200", - "codeCommune": "14327", - "libelleAcheminement": "HEROUVILLE ST CLAIR", - "nomCommune": "HEROUVILLE ST CLAIR" + "codePostal": "61210", + "codeCommune": "61339", + "libelleAcheminement": "PUTANGES LE LAC", + "nomCommune": "PUTANGES LE LAC" }, { - "codePostal": "70140", - "codeCommune": "70142", - "libelleAcheminement": "CHAUMERCENNE", - "nomCommune": "CHAUMERCENNE" + "codePostal": "62140", + "codeCommune": "62834", + "libelleAcheminement": "VACQUERIETTE ERQUIERES", + "nomCommune": "VACQUERIETTE ERQUIERES" }, { - "codePostal": "71510", - "codeCommune": "71107", - "libelleAcheminement": "CHARRECEY", - "nomCommune": "CHARRECEY" + "codePostal": "72600", + "codeCommune": "72326", + "libelleAcheminement": "SAOSNES", + "nomCommune": "SAOSNES" }, { - "codePostal": "45360", - "codeCommune": "45276", - "libelleAcheminement": "ST FIRMIN SUR LOIRE", - "nomCommune": "ST FIRMIN SUR LOIRE" + "codePostal": "21290", + "codeCommune": "21402", + "libelleAcheminement": "MENESBLE", + "nomCommune": "MENESBLE" }, { - "codePostal": "14700", - "codeCommune": "14332", - "libelleAcheminement": "LA HOGUETTE", - "nomCommune": "LA HOGUETTE" + "codePostal": "72320", + "codeCommune": "72373", + "libelleAcheminement": "VIBRAYE", + "nomCommune": "VIBRAYE" }, { - "codePostal": "70500", - "codeCommune": "70144", - "libelleAcheminement": "CHAUVIREY LE VIEIL", - "nomCommune": "CHAUVIREY LE VIEIL" + "codePostal": "61210", + "codeCommune": "61339", + "libelleAcheminement": "PUTANGES LE LAC", + "nomCommune": "PUTANGES LE LAC" }, { - "codePostal": "71150", - "codeCommune": "71109", - "libelleAcheminement": "CHASSEY LE CAMP", - "nomCommune": "CHASSEY LE CAMP" + "codePostal": "62140", + "codeCommune": "62834", + "libelleAcheminement": "VACQUERIETTE ERQUIERES", + "nomCommune": "VACQUERIETTE ERQUIERES" }, { - "codePostal": "45230", - "codeCommune": "45292", - "libelleAcheminement": "ST MAURICE SUR AVEYRON", - "nomCommune": "ST MAURICE SUR AVEYRON" + "codePostal": "72460", + "codeCommune": "72335", + "libelleAcheminement": "SILLE LE PHILIPPE", + "nomCommune": "SILLE LE PHILIPPE" }, { - "codePostal": "14430", - "codeCommune": "14335", - "libelleAcheminement": "HOTOT EN AUGE", - "nomCommune": "HOTOT EN AUGE" + "codePostal": "21540", + "codeCommune": "21406", + "libelleAcheminement": "MESMONT", + "nomCommune": "MESMONT" }, { - "codePostal": "70190", - "codeCommune": "70145", - "libelleAcheminement": "CHAUX LA LOTIERE", - "nomCommune": "CHAUX LA LOTIERE" + "codePostal": "72600", + "codeCommune": "72374", + "libelleAcheminement": "VILLAINES LA CARELLE", + "nomCommune": "VILLAINES LA CARELLE" }, { - "codePostal": "71170", - "codeCommune": "71110", - "libelleAcheminement": "CHASSIGNY SOUS DUN", - "nomCommune": "CHASSIGNY SOUS DUN" + "codePostal": "61210", + "codeCommune": "61339", + "libelleAcheminement": "PUTANGES LE LAC", + "nomCommune": "PUTANGES LE LAC" }, { - "codePostal": "45700", - "codeCommune": "45293", - "libelleAcheminement": "ST MAURICE SUR FESSARD", - "nomCommune": "ST MAURICE SUR FESSARD" + "codePostal": "62380", + "codeCommune": "62837", + "libelleAcheminement": "VAUDRINGHEM", + "nomCommune": "VAUDRINGHEM" }, { - "codePostal": "14230", - "codeCommune": "14342", - "libelleAcheminement": "ISIGNY SUR MER", - "nomCommune": "ISIGNY SUR MER" + "codePostal": "72290", + "codeCommune": "72340", + "libelleAcheminement": "SOULIGNE SOUS BALLON", + "nomCommune": "SOULIGNE SOUS BALLON" }, { - "codePostal": "70700", - "codeCommune": "70152", - "libelleAcheminement": "CHOYE", - "nomCommune": "CHOYE" + "codePostal": "21700", + "codeCommune": "21409", + "libelleAcheminement": "MEUILLEY", + "nomCommune": "MEUILLEY" }, { - "codePostal": "71130", - "codeCommune": "71111", - "libelleAcheminement": "CHASSY", - "nomCommune": "CHASSY" + "codePostal": "72270", + "codeCommune": "72377", + "libelleAcheminement": "VILLAINES SOUS MALICORNE", + "nomCommune": "VILLAINES SOUS MALICORNE" }, { - "codePostal": "45210", - "codeCommune": "45307", - "libelleAcheminement": "LA SELLE SUR LE BIED", - "nomCommune": "LA SELLE SUR LE BIED" + "codePostal": "61210", + "codeCommune": "61339", + "libelleAcheminement": "PUTANGES LE LAC", + "nomCommune": "PUTANGES LE LAC" }, { - "codePostal": "14250", - "codeCommune": "14348", - "libelleAcheminement": "JUVIGNY SUR SEULLES", - "nomCommune": "JUVIGNY SUR SEULLES" + "codePostal": "62131", + "codeCommune": "62848", + "libelleAcheminement": "VERQUIN", + "nomCommune": "VERQUIN" }, { - "codePostal": "70190", - "codeCommune": "70154", - "libelleAcheminement": "CIREY", - "nomCommune": "CIREY" + "codePostal": "72300", + "codeCommune": "72343", + "libelleAcheminement": "SOUVIGNE SUR SARTHE", + "nomCommune": "SOUVIGNE SUR SARTHE" }, { - "codePostal": "71510", - "codeCommune": "71115", - "libelleAcheminement": "CHATEL MORON", - "nomCommune": "CHATEL MORON" + "codePostal": "21190", + "codeCommune": "21412", + "libelleAcheminement": "MEURSAULT", + "nomCommune": "MEURSAULT" }, { - "codePostal": "45400", - "codeCommune": "45308", - "libelleAcheminement": "SEMOY", - "nomCommune": "SEMOY" + "codePostal": "73110", + "codeCommune": "73021", + "libelleAcheminement": "ARVILLARD", + "nomCommune": "ARVILLARD" }, { - "codePostal": "14320", - "codeCommune": "14349", - "libelleAcheminement": "LAIZE CLINCHAMPS", - "nomCommune": "LAIZE CLINCHAMPS" + "codePostal": "61110", + "codeCommune": "61345", + "libelleAcheminement": "REMALARD EN PERCHE", + "nomCommune": "REMALARD EN PERCHE" }, { - "codePostal": "70000", - "codeCommune": "70166", - "libelleAcheminement": "COMBERJON", - "nomCommune": "COMBERJON" + "codePostal": "62180", + "codeCommune": "62849", + "libelleAcheminement": "VERTON", + "nomCommune": "VERTON" }, { - "codePostal": "71380", - "codeCommune": "71117", - "libelleAcheminement": "CHATENOY EN BRESSE", - "nomCommune": "CHATENOY EN BRESSE" + "codePostal": "72540", + "codeCommune": "72348", + "libelleAcheminement": "TASSILLE", + "nomCommune": "TASSILLE" }, { - "codePostal": "45240", - "codeCommune": "45309", - "libelleAcheminement": "SENNELY", - "nomCommune": "SENNELY" + "codePostal": "21510", + "codeCommune": "21415", + "libelleAcheminement": "MINOT", + "nomCommune": "MINOT" }, { - "codePostal": "14770", - "codeCommune": "14357", - "libelleAcheminement": "TERRES DE DRUANCE", - "nomCommune": "TERRES DE DRUANCE" + "codePostal": "73240", + "codeCommune": "73025", + "libelleAcheminement": "AVRESSIEUX", + "nomCommune": "AVRESSIEUX" }, { - "codePostal": "70800", - "codeCommune": "70168", - "libelleAcheminement": "CONFLANS SUR LANTERNE", - "nomCommune": "CONFLANS SUR LANTERNE" + "codePostal": "61110", + "codeCommune": "61345", + "libelleAcheminement": "REMALARD EN PERCHE", + "nomCommune": "REMALARD EN PERCHE" }, { - "codePostal": "71880", - "codeCommune": "71118", - "libelleAcheminement": "CHATENOY LE ROYAL", - "nomCommune": "CHATENOY LE ROYAL" + "codePostal": "62240", + "codeCommune": "62853", + "libelleAcheminement": "VIEIL MOUTIER", + "nomCommune": "VIEIL MOUTIER" }, { - "codePostal": "45410", - "codeCommune": "45313", - "libelleAcheminement": "SOUGY", - "nomCommune": "SOUGY" + "codePostal": "72320", + "codeCommune": "72353", + "libelleAcheminement": "THELIGNY", + "nomCommune": "THELIGNY" }, { - "codePostal": "14330", - "codeCommune": "14367", - "libelleAcheminement": "LISON", - "nomCommune": "LISON" + "codePostal": "21330", + "codeCommune": "21419", + "libelleAcheminement": "MOLESME", + "nomCommune": "MOLESME" }, { - "codePostal": "70190", - "codeCommune": "70174", - "libelleAcheminement": "CORDONNET", - "nomCommune": "CORDONNET" + "codePostal": "73330", + "codeCommune": "73039", + "libelleAcheminement": "BELMONT TRAMONET", + "nomCommune": "BELMONT TRAMONET" }, { - "codePostal": "71150", - "codeCommune": "71122", - "libelleAcheminement": "CHEILLY LES MARANGES", - "nomCommune": "CHEILLY LES MARANGES" + "codePostal": "61120", + "codeCommune": "61351", + "libelleAcheminement": "ROIVILLE", + "nomCommune": "ROIVILLE" }, { - "codePostal": "45420", - "codeCommune": "45323", - "libelleAcheminement": "THOU", - "nomCommune": "THOU" + "codePostal": "62770", + "codeCommune": "62872", + "libelleAcheminement": "WAMIN", + "nomCommune": "WAMIN" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "72260", + "codeCommune": "72354", + "libelleAcheminement": "THOIGNE", + "nomCommune": "THOIGNE" }, { - "codePostal": "70150", - "codeCommune": "70181", - "libelleAcheminement": "COURCUIRE", - "nomCommune": "COURCUIRE" + "codePostal": "21120", + "codeCommune": "21421", + "libelleAcheminement": "MOLOY", + "nomCommune": "MOLOY" }, { - "codePostal": "71220", - "codeCommune": "71127", - "libelleAcheminement": "CHEVAGNY SUR GUYE", - "nomCommune": "CHEVAGNY SUR GUYE" + "codePostal": "73700", + "codeCommune": "73054", + "libelleAcheminement": "BOURG ST MAURICE", + "nomCommune": "BOURG ST MAURICE" }, { - "codePostal": "45510", - "codeCommune": "45324", - "libelleAcheminement": "TIGY", - "nomCommune": "TIGY" + "codePostal": "61170", + "codeCommune": "61360", + "libelleAcheminement": "ST AGNAN SUR SARTHE", + "nomCommune": "ST AGNAN SUR SARTHE" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "62760", + "codeCommune": "62877", + "libelleAcheminement": "WARLINCOURT LES PAS", + "nomCommune": "WARLINCOURT LES PAS" }, { - "codePostal": "70100", - "codeCommune": "70185", - "libelleAcheminement": "CRESANCEY", - "nomCommune": "CRESANCEY" + "codePostal": "72160", + "codeCommune": "72358", + "libelleAcheminement": "THORIGNE SUR DUE", + "nomCommune": "THORIGNE SUR DUE" }, { - "codePostal": "71520", - "codeCommune": "71134", - "libelleAcheminement": "NAVOUR SUR GROSNE", - "nomCommune": "NAVOUR SUR GROSNE" + "codePostal": "21210", + "codeCommune": "21422", + "libelleAcheminement": "MOLPHEY", + "nomCommune": "MOLPHEY" }, { - "codePostal": "45170", - "codeCommune": "45325", - "libelleAcheminement": "TIVERNON", - "nomCommune": "TIVERNON" + "codePostal": "73390", + "codeCommune": "73068", + "libelleAcheminement": "CHAMOUSSET", + "nomCommune": "CHAMOUSSET" }, { - "codePostal": "14140", - "codeCommune": "14371", - "libelleAcheminement": "LIVAROT PAYS D AUGE", - "nomCommune": "LIVAROT PAYS D AUGE" + "codePostal": "61380", + "codeCommune": "61363", + "libelleAcheminement": "ST AQUILIN DE CORBION", + "nomCommune": "ST AQUILIN DE CORBION" }, { - "codePostal": "70400", - "codeCommune": "70187", - "libelleAcheminement": "CREVANS LA CHAPELLE LES GRANGES", - "nomCommune": "CREVANS ET LA CHAPELLE LES GRANGES" + "codePostal": "62960", + "codeCommune": "62885", + "libelleAcheminement": "WESTREHEM", + "nomCommune": "WESTREHEM" }, { - "codePostal": "71130", - "codeCommune": "71136", - "libelleAcheminement": "CLESSY", - "nomCommune": "CLESSY" + "codePostal": "72150", + "codeCommune": "72376", + "libelleAcheminement": "VILLAINES SOUS LUCE", + "nomCommune": "VILLAINES SOUS LUCE" }, { - "codePostal": "45290", - "codeCommune": "45332", - "libelleAcheminement": "VARENNES CHANGY", - "nomCommune": "VARENNES CHANGY" + "codePostal": "21190", + "codeCommune": "21428", + "libelleAcheminement": "MONTHELIE", + "nomCommune": "MONTHELIE" }, { - "codePostal": "14240", - "codeCommune": "14374", - "libelleAcheminement": "LES LOGES", - "nomCommune": "LES LOGES" + "codePostal": "73660", + "codeCommune": "73083", + "libelleAcheminement": "LES CHAVANNES EN MAURIENNE", + "nomCommune": "LES CHAVANNES EN MAURIENNE" }, { - "codePostal": "70700", - "codeCommune": "70192", - "libelleAcheminement": "CUGNEY", - "nomCommune": "CUGNEY" + "codePostal": "61560", + "codeCommune": "61367", + "libelleAcheminement": "ST AUBIN DE COURTERAIE", + "nomCommune": "ST AUBIN DE COURTERAIE" }, { - "codePostal": "71990", - "codeCommune": "71142", - "libelleAcheminement": "LA COMELLE", - "nomCommune": "LA COMELLE" + "codePostal": "62179", + "codeCommune": "62899", + "libelleAcheminement": "WISSANT", + "nomCommune": "WISSANT" }, { - "codePostal": "45310", - "codeCommune": "45341", - "libelleAcheminement": "VILLENEUVE SUR CONIE", - "nomCommune": "VILLENEUVE SUR CONIE" + "codePostal": "72210", + "codeCommune": "72381", + "libelleAcheminement": "VOIVRES LES LE MANS", + "nomCommune": "VOIVRES LES LE MANS" }, { - "codePostal": "14190", - "codeCommune": "14394", - "libelleAcheminement": "MAIZIERES", - "nomCommune": "MAIZIERES" + "codePostal": "21390", + "codeCommune": "21430", + "libelleAcheminement": "MONTIGNY ST BARTHELEMY", + "nomCommune": "MONTIGNY ST BARTHELEMY" }, { - "codePostal": "70200", - "codeCommune": "70195", - "libelleAcheminement": "DAMBENOIT LES COLOMBE", - "nomCommune": "DAMBENOIT LES COLOMBE" + "codePostal": "73310", + "codeCommune": "73085", + "libelleAcheminement": "CHINDRIEUX", + "nomCommune": "CHINDRIEUX" }, { - "codePostal": "71130", - "codeCommune": "71161", - "libelleAcheminement": "CURDIN", - "nomCommune": "CURDIN" + "codePostal": "61570", + "codeCommune": "61375", + "libelleAcheminement": "BOISCHAMPRE", + "nomCommune": "BOISCHAMPRE" }, { - "codePostal": "45700", - "codeCommune": "45343", - "libelleAcheminement": "VILLEVOQUES", - "nomCommune": "VILLEVOQUES" + "codePostal": "62120", + "codeCommune": "62900", + "libelleAcheminement": "WITTERNESSE", + "nomCommune": "WITTERNESSE" }, { - "codePostal": "14220", - "codeCommune": "14404", - "libelleAcheminement": "MARTAINVILLE", - "nomCommune": "MARTAINVILLE" + "codePostal": "72440", + "codeCommune": "72382", + "libelleAcheminement": "VOLNAY", + "nomCommune": "VOLNAY" }, { - "codePostal": "70230", - "codeCommune": "70197", - "libelleAcheminement": "DAMPIERRE SUR LINOTTE", - "nomCommune": "DAMPIERRE SUR LINOTTE" + "codePostal": "21170", + "codeCommune": "21440", + "libelleAcheminement": "MONTOT", + "nomCommune": "MONTOT" }, { - "codePostal": "71520", - "codeCommune": "71163", - "libelleAcheminement": "CURTIL SOUS BUFFIERES", - "nomCommune": "CURTIL SOUS BUFFIERES" + "codePostal": "73460", + "codeCommune": "73086", + "libelleAcheminement": "CLERY", + "nomCommune": "CLERY" }, { - "codePostal": "45700", - "codeCommune": "45345", - "libelleAcheminement": "VIMORY", - "nomCommune": "VIMORY" + "codePostal": "61400", + "codeCommune": "61381", + "libelleAcheminement": "ST DENIS SUR HUISNE", + "nomCommune": "ST DENIS SUR HUISNE" }, { - "codePostal": "14920", - "codeCommune": "14407", - "libelleAcheminement": "MATHIEU", - "nomCommune": "MATHIEU" + "codePostal": "62570", + "codeCommune": "62902", + "libelleAcheminement": "WIZERNES", + "nomCommune": "WIZERNES" }, { - "codePostal": "70210", - "codeCommune": "70202", - "libelleAcheminement": "DEMANGEVELLE", - "nomCommune": "DEMANGEVELLE" + "codePostal": "73210", + "codeCommune": "73006", + "libelleAcheminement": "AIME LA PLAGNE", + "nomCommune": "AIME LA PLAGNE" }, { - "codePostal": "71960", - "codeCommune": "71169", - "libelleAcheminement": "DAVAYE", - "nomCommune": "DAVAYE" + "codePostal": "21210", + "codeCommune": "21445", + "libelleAcheminement": "LA MOTTE TERNANT", + "nomCommune": "LA MOTTE TERNANT" }, { - "codePostal": "46090", - "codeCommune": "46010", - "libelleAcheminement": "AUJOLS", - "nomCommune": "AUJOLS" + "codePostal": "73310", + "codeCommune": "73091", + "libelleAcheminement": "CONJUX", + "nomCommune": "CONJUX" }, { - "codePostal": "14370", - "codeCommune": "14410", - "libelleAcheminement": "MERY BISSIERES EN AUGE", - "nomCommune": "MERY BISSIERES EN AUGE" + "codePostal": "61320", + "codeCommune": "61384", + "libelleAcheminement": "ST ELLIER LES BOIS", + "nomCommune": "ST ELLIER LES BOIS" }, { - "codePostal": "70270", - "codeCommune": "70210", - "libelleAcheminement": "ECROMAGNY", - "nomCommune": "ECROMAGNY" + "codePostal": "62500", + "codeCommune": "62905", + "libelleAcheminement": "ZUDAUSQUES", + "nomCommune": "ZUDAUSQUES" }, { - "codePostal": "71510", - "codeCommune": "71171", - "libelleAcheminement": "DENNEVY", - "nomCommune": "DENNEVY" + "codePostal": "73210", + "codeCommune": "73006", + "libelleAcheminement": "AIME LA PLAGNE", + "nomCommune": "AIME LA PLAGNE" }, { - "codePostal": "46600", - "codeCommune": "46016", - "libelleAcheminement": "BALADOU", - "nomCommune": "BALADOU" + "codePostal": "21330", + "codeCommune": "21451", + "libelleAcheminement": "NESLE ET MASSOULT", + "nomCommune": "NESLE ET MASSOULT" }, { - "codePostal": "14370", - "codeCommune": "14410", - "libelleAcheminement": "MERY BISSIERES EN AUGE", - "nomCommune": "MERY BISSIERES EN AUGE" + "codePostal": "73800", + "codeCommune": "73096", + "libelleAcheminement": "CRUET", + "nomCommune": "CRUET" }, { - "codePostal": "70110", - "codeCommune": "70226", - "libelleAcheminement": "FALLON", - "nomCommune": "FALLON" + "codePostal": "61350", + "codeCommune": "61387", + "libelleAcheminement": "ST FRAIMBAULT", + "nomCommune": "ST FRAIMBAULT" }, { - "codePostal": "71380", - "codeCommune": "71189", - "libelleAcheminement": "EPERVANS", - "nomCommune": "EPERVANS" + "codePostal": "62360", + "codeCommune": "62908", + "libelleAcheminement": "LA CAPELLE LES BOULOGNE", + "nomCommune": "LA CAPELLE LES BOULOGNE" }, { - "codePostal": "46260", - "codeCommune": "46020", - "libelleAcheminement": "BEAUREGARD", - "nomCommune": "BEAUREGARD" + "codePostal": "73410", + "codeCommune": "73010", + "libelleAcheminement": "ENTRELACS", + "nomCommune": "ENTRELACS" }, { - "codePostal": "14260", - "codeCommune": "14412", - "libelleAcheminement": "LE MESNIL AU GRAIN", - "nomCommune": "LE MESNIL AU GRAIN" + "codePostal": "21800", + "codeCommune": "21452", + "libelleAcheminement": "NEUILLY CRIMOLOIS", + "nomCommune": "NEUILLY CRIMOLOIS" }, { - "codePostal": "70310", - "codeCommune": "70227", - "libelleAcheminement": "FAUCOGNEY ET LA MER", - "nomCommune": "FAUCOGNEY ET LA MER" + "codePostal": "73230", + "codeCommune": "73098", + "libelleAcheminement": "LES DESERTS", + "nomCommune": "LES DESERTS" }, { - "codePostal": "71360", - "codeCommune": "71190", - "libelleAcheminement": "EPINAC", - "nomCommune": "EPINAC" + "codePostal": "61470", + "codeCommune": "61392", + "libelleAcheminement": "ST GERMAIN D AUNAY", + "nomCommune": "ST GERMAIN D AUNAY" }, { - "codePostal": "46140", - "codeCommune": "46022", - "libelleAcheminement": "BELAYE", - "nomCommune": "BELAYE" + "codePostal": "63420", + "codeCommune": "63006", + "libelleAcheminement": "ANZAT LE LUGUET", + "nomCommune": "ANZAT LE LUGUET" }, { - "codePostal": "14130", - "codeCommune": "14426", - "libelleAcheminement": "LE MESNIL SUR BLANGY", - "nomCommune": "LE MESNIL SUR BLANGY" + "codePostal": "73410", + "codeCommune": "73010", + "libelleAcheminement": "ENTRELACS", + "nomCommune": "ENTRELACS" }, { - "codePostal": "70160", - "codeCommune": "70228", - "libelleAcheminement": "FAVERNEY", - "nomCommune": "FAVERNEY" + "codePostal": "21400", + "codeCommune": "21460", + "libelleAcheminement": "NOIRON SUR SEINE", + "nomCommune": "NOIRON SUR SEINE" }, { - "codePostal": "71700", - "codeCommune": "71195", - "libelleAcheminement": "FARGES LES MACON", - "nomCommune": "FARGES LES MACON" + "codePostal": "73110", + "codeCommune": "73099", + "libelleAcheminement": "DETRIER", + "nomCommune": "DETRIER" }, { - "codePostal": "46130", - "codeCommune": "46024", - "libelleAcheminement": "BELMONT BRETENOUX", - "nomCommune": "BELMONT BRETENOUX" + "codePostal": "61110", + "codeCommune": "61395", + "libelleAcheminement": "ST GERMAIN DES GROIS", + "nomCommune": "ST GERMAIN DES GROIS" }, { - "codePostal": "14140", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "63420", + "codeCommune": "63009", + "libelleAcheminement": "ARDES", + "nomCommune": "ARDES" }, { - "codePostal": "70310", - "codeCommune": "70233", - "libelleAcheminement": "LES FESSEY", - "nomCommune": "LES FESSEY" + "codePostal": "73410", + "codeCommune": "73010", + "libelleAcheminement": "ENTRELACS", + "nomCommune": "ENTRELACS" }, { - "codePostal": "71330", - "codeCommune": "71205", - "libelleAcheminement": "FRANGY EN BRESSE", - "nomCommune": "FRANGY EN BRESSE" + "codePostal": "21510", + "codeCommune": "21470", + "libelleAcheminement": "ORIGNY", + "nomCommune": "ORIGNY" }, { - "codePostal": "46330", - "codeCommune": "46031", - "libelleAcheminement": "BLARS", - "nomCommune": "BLARS" + "codePostal": "73330", + "codeCommune": "73100", + "libelleAcheminement": "DOMESSIN", + "nomCommune": "DOMESSIN" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "61560", + "codeCommune": "61396", + "libelleAcheminement": "ST GERMAIN DE MARTIGNY", + "nomCommune": "ST GERMAIN DE MARTIGNY" }, { - "codePostal": "70230", - "codeCommune": "70234", - "libelleAcheminement": "FILAIN", - "nomCommune": "FILAIN" + "codePostal": "63460", + "codeCommune": "63012", + "libelleAcheminement": "ARTONNE", + "nomCommune": "ARTONNE" }, { - "codePostal": "71440", - "codeCommune": "71206", - "libelleAcheminement": "LA FRETTE", - "nomCommune": "LA FRETTE" + "codePostal": "73200", + "codeCommune": "73014", + "libelleAcheminement": "ALLONDAZ", + "nomCommune": "ALLONDAZ" }, { - "codePostal": "46800", - "codeCommune": "46033", - "libelleAcheminement": "PORTE DU QUERCY", - "nomCommune": "PORTE DU QUERCY" + "codePostal": "21700", + "codeCommune": "21506", + "libelleAcheminement": "PREMEAUX PRISSEY", + "nomCommune": "PREMEAUX PRISSEY" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "73360", + "codeCommune": "73105", + "libelleAcheminement": "LES ECHELLES", + "nomCommune": "LES ECHELLES" }, { - "codePostal": "70600", - "codeCommune": "70252", - "libelleAcheminement": "FRAMONT", - "nomCommune": "FRAMONT" + "codePostal": "61400", + "codeCommune": "61404", + "libelleAcheminement": "ST HILAIRE LE CHATEL", + "nomCommune": "ST HILAIRE LE CHATEL" }, { - "codePostal": "71270", - "codeCommune": "71208", - "libelleAcheminement": "FRONTENARD", - "nomCommune": "FRONTENARD" + "codePostal": "63210", + "codeCommune": "63020", + "libelleAcheminement": "AURIERES", + "nomCommune": "AURIERES" }, { - "codePostal": "46800", - "codeCommune": "46033", - "libelleAcheminement": "PORTE DU QUERCY", - "nomCommune": "PORTE DU QUERCY" + "codePostal": "73800", + "codeCommune": "73018", + "libelleAcheminement": "ARBIN", + "nomCommune": "ARBIN" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "21370", + "codeCommune": "21508", + "libelleAcheminement": "PRENOIS", + "nomCommune": "PRENOIS" }, { - "codePostal": "70700", - "codeCommune": "70253", - "libelleAcheminement": "FRASNE LE CHATEAU", - "nomCommune": "FRASNE LE CHATEAU" + "codePostal": "73670", + "codeCommune": "73107", + "libelleAcheminement": "ENTREMONT LE VIEUX", + "nomCommune": "ENTREMONT LE VIEUX" }, { - "codePostal": "71580", - "codeCommune": "71209", - "libelleAcheminement": "FRONTENAUD", - "nomCommune": "FRONTENAUD" + "codePostal": "61340", + "codeCommune": "61405", + "libelleAcheminement": "ST HILAIRE SUR ERRE", + "nomCommune": "ST HILAIRE SUR ERRE" }, { - "codePostal": "46320", - "codeCommune": "46039", - "libelleAcheminement": "BRENGUES", - "nomCommune": "BRENGUES" + "codePostal": "63114", + "codeCommune": "63021", + "libelleAcheminement": "AUTHEZAT", + "nomCommune": "AUTHEZAT" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "73220", + "codeCommune": "73019", + "libelleAcheminement": "ARGENTINE", + "nomCommune": "ARGENTINE" }, { - "codePostal": "70200", - "codeCommune": "70254", - "libelleAcheminement": "FREDERIC FONTAINE", - "nomCommune": "FREDERIC FONTAINE" + "codePostal": "21560", + "codeCommune": "21521", + "libelleAcheminement": "REMILLY SUR TILLE", + "nomCommune": "REMILLY SUR TILLE" }, { - "codePostal": "71960", - "codeCommune": "71210", - "libelleAcheminement": "FUISSE", - "nomCommune": "FUISSE" + "codePostal": "73500", + "codeCommune": "73117", + "libelleAcheminement": "FOURNEAUX", + "nomCommune": "FOURNEAUX" }, { - "codePostal": "46330", - "codeCommune": "46040", - "libelleAcheminement": "CABRERETS", - "nomCommune": "CABRERETS" + "codePostal": "61210", + "codeCommune": "61408", + "libelleAcheminement": "STE HONORINE LA GUILLAUME", + "nomCommune": "STE HONORINE LA GUILLAUME" }, { - "codePostal": "14270", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "63390", + "codeCommune": "63025", + "libelleAcheminement": "AYAT SUR SIOULE", + "nomCommune": "AYAT SUR SIOULE" }, { - "codePostal": "70130", - "codeCommune": "70257", - "libelleAcheminement": "FRETIGNEY ET VELLOREILLE", - "nomCommune": "FRETIGNEY ET VELLOREILLE" + "codePostal": "73000", + "codeCommune": "73029", + "libelleAcheminement": "BARBERAZ", + "nomCommune": "BARBERAZ" }, { - "codePostal": "71700", - "codeCommune": "71226", - "libelleAcheminement": "GREVILLY", - "nomCommune": "GREVILLY" + "codePostal": "21320", + "codeCommune": "21533", + "libelleAcheminement": "ROUVRES SOUS MEILLY", + "nomCommune": "ROUVRES SOUS MEILLY" }, { - "codePostal": "46160", - "codeCommune": "46049", - "libelleAcheminement": "CALVIGNAC", - "nomCommune": "CALVIGNAC" + "codePostal": "73590", + "codeCommune": "73123", + "libelleAcheminement": "LA GIETTAZ", + "nomCommune": "LA GIETTAZ" }, { - "codePostal": "14340", - "codeCommune": "14431", - "libelleAcheminement": "MEZIDON VALLEE D AUGE", - "nomCommune": "MEZIDON VALLEE D AUGE" + "codePostal": "61400", + "codeCommune": "61414", + "libelleAcheminement": "ST LANGIS LES MORTAGNE", + "nomCommune": "ST LANGIS LES MORTAGNE" }, { - "codePostal": "70300", - "codeCommune": "70258", - "libelleAcheminement": "FROIDECONCHE", - "nomCommune": "FROIDECONCHE" + "codePostal": "63600", + "codeCommune": "63027", + "libelleAcheminement": "BAFFIE", + "nomCommune": "BAFFIE" }, { - "codePostal": "71620", - "codeCommune": "71228", - "libelleAcheminement": "GUERFAND", - "nomCommune": "GUERFAND" + "codePostal": "73230", + "codeCommune": "73030", + "libelleAcheminement": "BARBY", + "nomCommune": "BARBY" }, { - "codePostal": "46100", - "codeCommune": "46055", - "libelleAcheminement": "CAPDENAC", - "nomCommune": "CAPDENAC" + "codePostal": "21410", + "codeCommune": "21553", + "libelleAcheminement": "ST JEAN DE BOEUF", + "nomCommune": "ST JEAN DE BOEUF" }, { - "codePostal": "14210", - "codeCommune": "14438", - "libelleAcheminement": "MONDRAINVILLE", - "nomCommune": "MONDRAINVILLE" + "codePostal": "73200", + "codeCommune": "73124", + "libelleAcheminement": "GILLY SUR ISERE", + "nomCommune": "GILLY SUR ISERE" }, { - "codePostal": "70200", - "codeCommune": "70259", - "libelleAcheminement": "FROIDETERRE", - "nomCommune": "FROIDETERRE" + "codePostal": "61170", + "codeCommune": "61415", + "libelleAcheminement": "ST LEGER SUR SARTHE", + "nomCommune": "ST LEGER SUR SARTHE" }, { - "codePostal": "71160", - "codeCommune": "71229", - "libelleAcheminement": "LES GUERREAUX", - "nomCommune": "LES GUERREAUX" + "codePostal": "63570", + "codeCommune": "63029", + "libelleAcheminement": "BANSAT", + "nomCommune": "BANSAT" }, { - "codePostal": "46160", - "codeCommune": "46056", - "libelleAcheminement": "CARAYAC", - "nomCommune": "CARAYAC" + "codePostal": "73360", + "codeCommune": "73033", + "libelleAcheminement": "LA BAUCHE", + "nomCommune": "LA BAUCHE" }, { - "codePostal": "14220", - "codeCommune": "14455", - "libelleAcheminement": "MOULINES", - "nomCommune": "MOULINES" + "codePostal": "21450", + "codeCommune": "21557", + "libelleAcheminement": "ST MARC SUR SEINE", + "nomCommune": "ST MARC SUR SEINE" }, { - "codePostal": "70240", - "codeCommune": "70262", - "libelleAcheminement": "GENEVREUILLE", - "nomCommune": "GENEVREUILLE" + "codePostal": "73460", + "codeCommune": "73129", + "libelleAcheminement": "GRESY SUR ISERE", + "nomCommune": "GRESY SUR ISERE" }, { - "codePostal": "71130", - "codeCommune": "71230", - "libelleAcheminement": "GUEUGNON", - "nomCommune": "GUEUGNON" + "codePostal": "61320", + "codeCommune": "61424", + "libelleAcheminement": "ST MARTIN DES LANDES", + "nomCommune": "ST MARTIN DES LANDES" }, { - "codePostal": "46140", - "codeCommune": "46062", - "libelleAcheminement": "CASTELFRANC", - "nomCommune": "CASTELFRANC" + "codePostal": "63310", + "codeCommune": "63030", + "libelleAcheminement": "BAS ET LEZAT", + "nomCommune": "BAS ET LEZAT" }, { - "codePostal": "14370", - "codeCommune": "14456", - "libelleAcheminement": "MOULT CHICHEBOVILLE", - "nomCommune": "MOULT CHICHEBOVILLE" + "codePostal": "73390", + "codeCommune": "73041", + "libelleAcheminement": "BETTON BETTONET", + "nomCommune": "BETTON BETTONET" }, { - "codePostal": "70700", - "codeCommune": "70268", - "libelleAcheminement": "GEZIER ET FONTENELAY", - "nomCommune": "GEZIER ET FONTENELAY" + "codePostal": "21440", + "codeCommune": "21561", + "libelleAcheminement": "ST MARTIN DU MONT", + "nomCommune": "ST MARTIN DU MONT" }, { - "codePostal": "71220", - "codeCommune": "71231", - "libelleAcheminement": "LA GUICHE", - "nomCommune": "LA GUICHE" + "codePostal": "73600", + "codeCommune": "73131", + "libelleAcheminement": "HAUTECOUR", + "nomCommune": "HAUTECOUR" }, { - "codePostal": "46170", - "codeCommune": "46063", - "libelleAcheminement": "CASTELNAU MONTRATIER STE ALAUZIE", - "nomCommune": "CASTELNAU MONTRATIER STE ALAUZIE" + "codePostal": "61190", + "codeCommune": "61429", + "libelleAcheminement": "CHARENCEY", + "nomCommune": "CHARENCEY" }, { - "codePostal": "14220", - "codeCommune": "14458", - "libelleAcheminement": "LES MOUTIERS EN CINGLAIS", - "nomCommune": "LES MOUTIERS EN CINGLAIS" + "codePostal": "63150", + "codeCommune": "63047", + "libelleAcheminement": "LA BOURBOULE", + "nomCommune": "LA BOURBOULE" }, { - "codePostal": "70110", - "codeCommune": "70271", - "libelleAcheminement": "GOUHENANS", - "nomCommune": "GOUHENANS" + "codePostal": "73480", + "codeCommune": "73047", + "libelleAcheminement": "BONNEVAL SUR ARC", + "nomCommune": "BONNEVAL SUR ARC" }, { - "codePostal": "71870", - "codeCommune": "71235", - "libelleAcheminement": "HURIGNY", - "nomCommune": "HURIGNY" + "codePostal": "21190", + "codeCommune": "21569", + "libelleAcheminement": "ST ROMAIN", + "nomCommune": "ST ROMAIN" }, { - "codePostal": "46150", - "codeCommune": "46064", - "libelleAcheminement": "CATUS", - "nomCommune": "CATUS" + "codePostal": "73300", + "codeCommune": "73135", + "libelleAcheminement": "LA TOUR EN MAURIENNE", + "nomCommune": "LA TOUR EN MAURIENNE" }, { - "codePostal": "14400", - "codeCommune": "14465", - "libelleAcheminement": "NONANT", - "nomCommune": "NONANT" + "codePostal": "61190", + "codeCommune": "61429", + "libelleAcheminement": "CHARENCEY", + "nomCommune": "CHARENCEY" }, { - "codePostal": "70120", - "codeCommune": "70272", - "libelleAcheminement": "GOURGEON", - "nomCommune": "GOURGEON" + "codePostal": "63760", + "codeCommune": "63048", + "libelleAcheminement": "BOURG LASTIC", + "nomCommune": "BOURG LASTIC" }, { - "codePostal": "71540", - "codeCommune": "71237", - "libelleAcheminement": "IGORNAY", - "nomCommune": "IGORNAY" + "codePostal": "73110", + "codeCommune": "73052", + "libelleAcheminement": "BOURGET EN HUILE", + "nomCommune": "BOURGET EN HUILE" }, { - "codePostal": "46110", - "codeCommune": "46065", - "libelleAcheminement": "CAVAGNAC", - "nomCommune": "CAVAGNAC" + "codePostal": "21170", + "codeCommune": "21575", + "libelleAcheminement": "ST SYMPHORIEN SUR SAONE", + "nomCommune": "ST SYMPHORIEN SUR SAONE" }, { - "codePostal": "14700", - "codeCommune": "14467", - "libelleAcheminement": "NORON L ABBAYE", - "nomCommune": "NORON L ABBAYE" + "codePostal": "73300", + "codeCommune": "73135", + "libelleAcheminement": "LA TOUR EN MAURIENNE", + "nomCommune": "LA TOUR EN MAURIENNE" }, { - "codePostal": "70190", - "codeCommune": "70275", - "libelleAcheminement": "GRANDVELLE ET LE PERRENOT", - "nomCommune": "GRANDVELLE ET LE PERRENOT" + "codePostal": "61300", + "codeCommune": "61432", + "libelleAcheminement": "ST MICHEL TUBOEUF", + "nomCommune": "ST MICHEL TUBOEUF" }, { - "codePostal": "71250", - "codeCommune": "71240", - "libelleAcheminement": "JALOGNY", - "nomCommune": "JALOGNY" + "codePostal": "63500", + "codeCommune": "63054", + "libelleAcheminement": "LE BROC", + "nomCommune": "LE BROC" }, { - "codePostal": "46170", - "codeCommune": "46069", - "libelleAcheminement": "CEZAC", - "nomCommune": "CEZAC" + "codePostal": "73390", + "codeCommune": "73053", + "libelleAcheminement": "BOURGNEUF", + "nomCommune": "BOURGNEUF" }, { - "codePostal": "14340", - "codeCommune": "14474", - "libelleAcheminement": "NOTRE DAME D ESTREES CORBON", - "nomCommune": "NOTRE DAME D ESTREES CORBON" + "codePostal": "21580", + "codeCommune": "21579", + "libelleAcheminement": "SALIVES", + "nomCommune": "SALIVES" }, { - "codePostal": "70400", - "codeCommune": "70277", - "libelleAcheminement": "GRANGES LE BOURG", - "nomCommune": "GRANGES LE BOURG" + "codePostal": "73000", + "codeCommune": "73137", + "libelleAcheminement": "JACOB BELLECOMBETTE", + "nomCommune": "JACOB BELLECOMBETTE" }, { - "codePostal": "71190", - "codeCommune": "71251", - "libelleAcheminement": "LAIZY", - "nomCommune": "LAIZY" + "codePostal": "61430", + "codeCommune": "61444", + "libelleAcheminement": "ST PHILBERT SUR ORNE", + "nomCommune": "ST PHILBERT SUR ORNE" }, { - "codePostal": "46360", - "codeCommune": "46079", - "libelleAcheminement": "CRAS", - "nomCommune": "CRAS" + "codePostal": "63230", + "codeCommune": "63055", + "libelleAcheminement": "BROMONT LAMOTHE", + "nomCommune": "BROMONT LAMOTHE" }, { - "codePostal": "14100", - "codeCommune": "14487", - "libelleAcheminement": "OUILLY LE VICOMTE", - "nomCommune": "OUILLY LE VICOMTE" + "codePostal": "73700", + "codeCommune": "73054", + "libelleAcheminement": "BOURG ST MAURICE", + "nomCommune": "BOURG ST MAURICE" }, { - "codePostal": "70400", - "codeCommune": "70285", - "libelleAcheminement": "HERICOURT", - "nomCommune": "HERICOURT" + "codePostal": "21690", + "codeCommune": "21580", + "libelleAcheminement": "SALMAISE", + "nomCommune": "SALMAISE" }, { - "codePostal": "71140", - "codeCommune": "71255", - "libelleAcheminement": "LESME", - "nomCommune": "LESME" + "codePostal": "73170", + "codeCommune": "73140", + "libelleAcheminement": "JONGIEUX", + "nomCommune": "JONGIEUX" }, { - "codePostal": "46600", - "codeCommune": "46083", - "libelleAcheminement": "CRESSENSAC SARRAZAC", - "nomCommune": "CRESSENSAC SARRAZAC" + "codePostal": "61790", + "codeCommune": "61447", + "libelleAcheminement": "ST PIERRE DU REGARD", + "nomCommune": "ST PIERRE DU REGARD" }, { - "codePostal": "14110", - "codeCommune": "14512", - "libelleAcheminement": "PONTECOULANT", - "nomCommune": "PONTECOULANT" + "codePostal": "63490", + "codeCommune": "63056", + "libelleAcheminement": "BROUSSE", + "nomCommune": "BROUSSE" }, { - "codePostal": "70400", - "codeCommune": "70285", - "libelleAcheminement": "HERICOURT", - "nomCommune": "HERICOURT" + "codePostal": "73350", + "codeCommune": "73055", + "libelleAcheminement": "BOZEL", + "nomCommune": "BOZEL" }, { - "codePostal": "71570", - "codeCommune": "71258", - "libelleAcheminement": "LEYNES", - "nomCommune": "LEYNES" + "codePostal": "21380", + "codeCommune": "21589", + "libelleAcheminement": "SAUSSY", + "nomCommune": "SAUSSY" }, { - "codePostal": "46600", - "codeCommune": "46083", - "libelleAcheminement": "CRESSENSAC SARRAZAC", - "nomCommune": "CRESSENSAC SARRAZAC" + "codePostal": "73800", + "codeCommune": "73141", + "libelleAcheminement": "LAISSAUD", + "nomCommune": "LAISSAUD" }, { - "codePostal": "14520", - "codeCommune": "14515", - "libelleAcheminement": "PORT EN BESSIN HUPPAIN", - "nomCommune": "PORT EN BESSIN HUPPAIN" + "codePostal": "61220", + "codeCommune": "61459", + "libelleAcheminement": "SAIRES LA VERRERIE", + "nomCommune": "SAIRES LA VERRERIE" }, { - "codePostal": "70150", - "codeCommune": "70286", - "libelleAcheminement": "HUGIER", - "nomCommune": "HUGIER" + "codePostal": "63880", + "codeCommune": "63057", + "libelleAcheminement": "LE BRUGERON", + "nomCommune": "LE BRUGERON" }, { - "codePostal": "71290", - "codeCommune": "71261", - "libelleAcheminement": "LOISY", - "nomCommune": "LOISY" + "codePostal": "73730", + "codeCommune": "73063", + "libelleAcheminement": "CEVINS", + "nomCommune": "CEVINS" }, { - "codePostal": "46600", - "codeCommune": "46084", - "libelleAcheminement": "CREYSSE", - "nomCommune": "CREYSSE" + "codePostal": "21420", + "codeCommune": "21590", + "libelleAcheminement": "SAVIGNY LES BEAUNE", + "nomCommune": "SAVIGNY LES BEAUNE" }, { - "codePostal": "14270", - "codeCommune": "14527", - "libelleAcheminement": "BELLE VIE EN AUGE", - "nomCommune": "BELLE VIE EN AUGE" + "codePostal": "73170", + "codeCommune": "73149", + "libelleAcheminement": "LUCEY", + "nomCommune": "LUCEY" }, { - "codePostal": "70200", - "codeCommune": "70306", - "libelleAcheminement": "LOMONT", - "nomCommune": "LOMONT" + "codePostal": "61150", + "codeCommune": "61473", + "libelleAcheminement": "SEVRAI", + "nomCommune": "SEVRAI" }, { - "codePostal": "71270", - "codeCommune": "71262", - "libelleAcheminement": "LONGEPIERRE", - "nomCommune": "LONGEPIERRE" + "codePostal": "63350", + "codeCommune": "63058", + "libelleAcheminement": "BULHON", + "nomCommune": "BULHON" }, { - "codePostal": "46700", - "codeCommune": "46089", - "libelleAcheminement": "DURAVEL", - "nomCommune": "DURAVEL" + "codePostal": "73000", + "codeCommune": "73065", + "libelleAcheminement": "CHAMBERY", + "nomCommune": "CHAMBERY" }, { - "codePostal": "14130", - "codeCommune": "14528", - "libelleAcheminement": "QUETTEVILLE", - "nomCommune": "QUETTEVILLE" + "codePostal": "21800", + "codeCommune": "21605", + "libelleAcheminement": "SENNECEY LES DIJON", + "nomCommune": "SENNECEY LES DIJON" }, { - "codePostal": "70400", - "codeCommune": "70312", - "libelleAcheminement": "LUZE", - "nomCommune": "LUZE" + "codePostal": "73470", + "codeCommune": "73152", + "libelleAcheminement": "MARCIEUX", + "nomCommune": "MARCIEUX" }, { - "codePostal": "71120", - "codeCommune": "71268", - "libelleAcheminement": "LUGNY LES CHAROLLES", - "nomCommune": "LUGNY LES CHAROLLES" + "codePostal": "61160", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "46230", - "codeCommune": "46091", - "libelleAcheminement": "ESCAMPS", - "nomCommune": "ESCAMPS" + "codePostal": "63260", + "codeCommune": "63061", + "libelleAcheminement": "BUSSIERES ET PRUNS", + "nomCommune": "BUSSIERES ET PRUNS" }, { - "codePostal": "14470", - "codeCommune": "14535", - "libelleAcheminement": "REVIERS", - "nomCommune": "REVIERS" + "codePostal": "73390", + "codeCommune": "73072", + "libelleAcheminement": "CHAMP LAURENT", + "nomCommune": "CHAMP LAURENT" }, { - "codePostal": "70000", - "codeCommune": "70316", - "libelleAcheminement": "LE MAGNORAY", - "nomCommune": "LE MAGNORAY" + "codePostal": "21550", + "codeCommune": "21606", + "libelleAcheminement": "LADOIX SERRIGNY", + "nomCommune": "LADOIX SERRIGNY" }, { - "codePostal": "71000", - "codeCommune": "71270", - "libelleAcheminement": "MACON", - "nomCommune": "MACON" + "codePostal": "73400", + "codeCommune": "73153", + "libelleAcheminement": "MARTHOD", + "nomCommune": "MARTHOD" }, { - "codePostal": "46320", - "codeCommune": "46093", - "libelleAcheminement": "ESPAGNAC STE EULALIE", - "nomCommune": "ESPAGNAC STE EULALIE" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "14740", - "codeCommune": "14543", - "libelleAcheminement": "ROTS", - "nomCommune": "ROTS" + "codePostal": "63700", + "codeCommune": "63062", + "libelleAcheminement": "BUXIERES SOUS MONTAIGUT", + "nomCommune": "BUXIERES SOUS MONTAIGUT" }, { - "codePostal": "70500", - "codeCommune": "70320", - "libelleAcheminement": "MAGNY LES JUSSEY", - "nomCommune": "MAGNY LES JUSSEY" + "codePostal": "73310", + "codeCommune": "73073", + "libelleAcheminement": "CHANAZ", + "nomCommune": "CHANAZ" }, { - "codePostal": "71000", - "codeCommune": "71270", - "libelleAcheminement": "MACON", - "nomCommune": "MACON" + "codePostal": "21530", + "codeCommune": "21608", + "libelleAcheminement": "SINCEY LES ROUVRAY", + "nomCommune": "SINCEY LES ROUVRAY" }, { - "codePostal": "46090", - "codeCommune": "46095", - "libelleAcheminement": "ESPERE", - "nomCommune": "ESPERE" + "codePostal": "73170", + "codeCommune": "73156", + "libelleAcheminement": "MEYRIEUX TROUET", + "nomCommune": "MEYRIEUX TROUET" }, { - "codePostal": "14320", - "codeCommune": "14556", - "libelleAcheminement": "ST ANDRE SUR ORNE", - "nomCommune": "ST ANDRE SUR ORNE" + "codePostal": "61310", + "codeCommune": "61474", + "libelleAcheminement": "GOUFFERN EN AUGE", + "nomCommune": "GOUFFERN EN AUGE" }, { - "codePostal": "70240", - "codeCommune": "70322", - "libelleAcheminement": "MAILLERONCOURT CHARETTE", - "nomCommune": "MAILLERONCOURT CHARETTE" + "codePostal": "63250", + "codeCommune": "63072", + "libelleAcheminement": "CHABRELOCHE", + "nomCommune": "CHABRELOCHE" }, { - "codePostal": "71000", - "codeCommune": "71270", - "libelleAcheminement": "MACON", - "nomCommune": "MACON" + "codePostal": "73110", + "codeCommune": "73075", + "libelleAcheminement": "LA CHAPELLE BLANCHE", + "nomCommune": "LA CHAPELLE BLANCHE" }, { - "codePostal": "46300", - "codeCommune": "46098", - "libelleAcheminement": "FAJOLES", - "nomCommune": "FAJOLES" + "codePostal": "21270", + "codeCommune": "21610", + "libelleAcheminement": "SOISSONS SUR NACEY", + "nomCommune": "SOISSONS SUR NACEY" }, { - "codePostal": "14960", - "codeCommune": "14565", - "libelleAcheminement": "ST COME DE FRESNE", - "nomCommune": "ST COME DE FRESNE" + "codePostal": "73350", + "codeCommune": "73161", + "libelleAcheminement": "MONTAGNY", + "nomCommune": "MONTAGNY" }, { - "codePostal": "70140", - "codeCommune": "70327", - "libelleAcheminement": "MALANS", - "nomCommune": "MALANS" + "codePostal": "61150", + "codeCommune": "61479", + "libelleAcheminement": "TANQUES", + "nomCommune": "TANQUES" }, { - "codePostal": "71640", - "codeCommune": "71294", - "libelleAcheminement": "MERCUREY", - "nomCommune": "MERCUREY" + "codePostal": "63580", + "codeCommune": "63079", + "libelleAcheminement": "CHAMPAGNAT LE JEUNE", + "nomCommune": "CHAMPAGNAT LE JEUNE" }, { - "codePostal": "46090", - "codeCommune": "46105", - "libelleAcheminement": "FLAUJAC POUJOLS", - "nomCommune": "FLAUJAC POUJOLS" + "codePostal": "73800", + "codeCommune": "73082", + "libelleAcheminement": "LA CHAVANNE", + "nomCommune": "LA CHAVANNE" }, { - "codePostal": "14290", - "codeCommune": "14570", - "libelleAcheminement": "VALORBIQUET", - "nomCommune": "VALORBIQUET" + "codePostal": "21540", + "codeCommune": "21611", + "libelleAcheminement": "SOMBERNON", + "nomCommune": "SOMBERNON" }, { - "codePostal": "70110", - "codeCommune": "70332", - "libelleAcheminement": "MARAST", - "nomCommune": "MARAST" + "codePostal": "73600", + "codeCommune": "73181", + "libelleAcheminement": "MOUTIERS TARENTAISE", + "nomCommune": "MOUTIERS" }, { - "codePostal": "71390", - "codeCommune": "71302", - "libelleAcheminement": "MONTAGNY LES BUXY", - "nomCommune": "MONTAGNY LES BUXY" + "codePostal": "61330", + "codeCommune": "61487", + "libelleAcheminement": "TORCHAMP", + "nomCommune": "TORCHAMP" }, { - "codePostal": "46600", - "codeCommune": "46106", - "libelleAcheminement": "FLOIRAC", - "nomCommune": "FLOIRAC" + "codePostal": "63440", + "codeCommune": "63082", + "libelleAcheminement": "CHAMPS", + "nomCommune": "CHAMPS" }, { - "codePostal": "14110", - "codeCommune": "14572", - "libelleAcheminement": "ST DENIS DE MERE", - "nomCommune": "ST DENIS DE MERE" + "codePostal": "73800", + "codeCommune": "73084", + "libelleAcheminement": "CHIGNIN", + "nomCommune": "CHIGNIN" }, { - "codePostal": "70210", - "codeCommune": "70338", - "libelleAcheminement": "MELINCOURT", - "nomCommune": "MELINCOURT" + "codePostal": "21430", + "codeCommune": "21615", + "libelleAcheminement": "SUSSEY", + "nomCommune": "SUSSEY" }, { - "codePostal": "71260", - "codeCommune": "71305", - "libelleAcheminement": "MONTBELLET", - "nomCommune": "MONTBELLET" + "codePostal": "73260", + "codeCommune": "73187", + "libelleAcheminement": "LA LECHERE", + "nomCommune": "LA LECHERE" }, { - "codePostal": "46310", - "codeCommune": "46113", - "libelleAcheminement": "FRAYSSINET", - "nomCommune": "FRAYSSINET" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "14140", - "codeCommune": "14576", - "libelleAcheminement": "VAL DE VIE", - "nomCommune": "VAL DE VIE" + "codePostal": "63450", + "codeCommune": "63084", + "libelleAcheminement": "CHANONAT", + "nomCommune": "CHANONAT" }, { - "codePostal": "70270", - "codeCommune": "70339", - "libelleAcheminement": "MELISEY", - "nomCommune": "MELISEY" + "codePostal": "73160", + "codeCommune": "73087", + "libelleAcheminement": "COGNIN", + "nomCommune": "COGNIN" }, { - "codePostal": "71110", - "codeCommune": "71307", - "libelleAcheminement": "MONTCEAUX L ETOILE", - "nomCommune": "MONTCEAUX L ETOILE" + "codePostal": "21310", + "codeCommune": "21619", + "libelleAcheminement": "TANAY", + "nomCommune": "TANAY" }, { - "codePostal": "46600", - "codeCommune": "46118", - "libelleAcheminement": "GIGNAC", - "nomCommune": "GIGNAC" + "codePostal": "73260", + "codeCommune": "73187", + "libelleAcheminement": "LA LECHERE", + "nomCommune": "LA LECHERE" }, { - "codePostal": "14520", - "codeCommune": "14591", - "libelleAcheminement": "AURE SUR MER", - "nomCommune": "AURE SUR MER" + "codePostal": "61190", + "codeCommune": "61491", + "libelleAcheminement": "TOUROUVRE AU PERCHE", + "nomCommune": "TOUROUVRE AU PERCHE" }, { - "codePostal": "70700", - "codeCommune": "70356", - "libelleAcheminement": "MONTBOILLON", - "nomCommune": "MONTBOILLON" + "codePostal": "63230", + "codeCommune": "63085", + "libelleAcheminement": "CHAPDES BEAUFORT", + "nomCommune": "CHAPDES BEAUFORT" }, { - "codePostal": "71210", - "codeCommune": "71310", - "libelleAcheminement": "MONTCHANIN", - "nomCommune": "MONTCHANIN" + "codePostal": "73160", + "codeCommune": "73092", + "libelleAcheminement": "CORBEL", + "nomCommune": "CORBEL" }, { - "codePostal": "46500", - "codeCommune": "46128", - "libelleAcheminement": "GRAMAT", - "nomCommune": "GRAMAT" + "codePostal": "21210", + "codeCommune": "21629", + "libelleAcheminement": "THOISY LA BERCHERE", + "nomCommune": "THOISY LA BERCHERE" }, { - "codePostal": "14210", - "codeCommune": "14592", - "libelleAcheminement": "STE HONORINE DU FAY", - "nomCommune": "STE HONORINE DU FAY" + "codePostal": "73460", + "codeCommune": "73188", + "libelleAcheminement": "NOTRE DAME DES MILLIERES", + "nomCommune": "NOTRE DAME DES MILLIERES" }, { - "codePostal": "70180", - "codeCommune": "70368", - "libelleAcheminement": "MONTOT", - "nomCommune": "MONTOT" + "codePostal": "61400", + "codeCommune": "61507", + "libelleAcheminement": "VILLIERS SOUS MORTAGNE", + "nomCommune": "VILLIERS SOUS MORTAGNE" }, { - "codePostal": "71620", - "codeCommune": "71312", - "libelleAcheminement": "MONTCOY", - "nomCommune": "MONTCOY" + "codePostal": "63160", + "codeCommune": "63096", + "libelleAcheminement": "CHAS", + "nomCommune": "CHAS" }, { - "codePostal": "46120", - "codeCommune": "46139", - "libelleAcheminement": "LABATHUDE", - "nomCommune": "LABATHUDE" + "codePostal": "73190", + "codeCommune": "73097", + "libelleAcheminement": "CURIENNE", + "nomCommune": "CURIENNE" }, { - "codePostal": "14220", - "codeCommune": "14603", - "libelleAcheminement": "ST LAURENT DE CONDEL", - "nomCommune": "ST LAURENT DE CONDEL" + "codePostal": "21360", + "codeCommune": "21631", + "libelleAcheminement": "THOMIREY", + "nomCommune": "THOMIREY" }, { - "codePostal": "70120", - "codeCommune": "70369", - "libelleAcheminement": "MONT ST LEGER", - "nomCommune": "MONT ST LEGER" + "codePostal": "73600", + "codeCommune": "73190", + "libelleAcheminement": "NOTRE DAME DU PRE", + "nomCommune": "NOTRE DAME DU PRE" }, { - "codePostal": "71400", - "codeCommune": "71313", - "libelleAcheminement": "MONTHELON", - "nomCommune": "MONTHELON" + "codePostal": "61210", + "codeCommune": "61512", + "libelleAcheminement": "LES YVETEAUX", + "nomCommune": "LES YVETEAUX" }, { - "codePostal": "46700", - "codeCommune": "46142", - "libelleAcheminement": "LACAPELLE CABANAC", - "nomCommune": "LACAPELLE CABANAC" + "codePostal": "63320", + "codeCommune": "63097", + "libelleAcheminement": "CHASSAGNE", + "nomCommune": "CHASSAGNE" }, { - "codePostal": "14710", - "codeCommune": "14605", - "libelleAcheminement": "ST LAURENT SUR MER", - "nomCommune": "ST LAURENT SUR MER" + "codePostal": "73630", + "codeCommune": "73106", + "libelleAcheminement": "ECOLE", + "nomCommune": "ECOLE" }, { - "codePostal": "70140", - "codeCommune": "70374", - "libelleAcheminement": "MOTEY BESUCHE", - "nomCommune": "MOTEY BESUCHE" + "codePostal": "21110", + "codeCommune": "21632", + "libelleAcheminement": "THOREY EN PLAINE", + "nomCommune": "THOREY EN PLAINE" }, { - "codePostal": "71300", - "codeCommune": "71320", - "libelleAcheminement": "MONT ST VINCENT", - "nomCommune": "MONT ST VINCENT" + "codePostal": "73340", + "codeCommune": "73192", + "libelleAcheminement": "LE NOYER", + "nomCommune": "LE NOYER" }, { - "codePostal": "46400", - "codeCommune": "46146", - "libelleAcheminement": "LADIRAT", - "nomCommune": "LADIRAT" + "codePostal": "62217", + "codeCommune": "62004", + "libelleAcheminement": "ACHICOURT", + "nomCommune": "ACHICOURT" }, { - "codePostal": "14400", - "codeCommune": "14609", - "libelleAcheminement": "ST LOUP HORS", - "nomCommune": "ST LOUP HORS" + "codePostal": "63680", + "codeCommune": "63098", + "libelleAcheminement": "CHASTREIX", + "nomCommune": "CHASTREIX" }, { - "codePostal": "70130", - "codeCommune": "70384", - "libelleAcheminement": "NEUVELLE LES LA CHARITE", - "nomCommune": "NEUVELLE LES LA CHARITE" + "codePostal": "73620", + "codeCommune": "73132", + "libelleAcheminement": "HAUTELUCE", + "nomCommune": "HAUTELUCE" }, { - "codePostal": "71160", - "codeCommune": "71325", - "libelleAcheminement": "LA MOTTE ST JEAN", - "nomCommune": "LA MOTTE ST JEAN" + "codePostal": "21120", + "codeCommune": "21638", + "libelleAcheminement": "TIL CHATEL", + "nomCommune": "TIL CHATEL" }, { - "codePostal": "46230", - "codeCommune": "46148", - "libelleAcheminement": "LALBENQUE", - "nomCommune": "LALBENQUE" + "codePostal": "73140", + "codeCommune": "73194", + "libelleAcheminement": "ORELLE", + "nomCommune": "ORELLE" }, { - "codePostal": "14320", - "codeCommune": "14623", - "libelleAcheminement": "ST MARTIN DE FONTENAY", - "nomCommune": "ST MARTIN DE FONTENAY" + "codePostal": "62121", + "codeCommune": "62006", + "libelleAcheminement": "ACHIET LE PETIT", + "nomCommune": "ACHIET LE PETIT" }, { - "codePostal": "70000", - "codeCommune": "70388", - "libelleAcheminement": "NOIDANS LES VESOUL", - "nomCommune": "NOIDANS LES VESOUL" + "codePostal": "63119", + "codeCommune": "63099", + "libelleAcheminement": "CHATEAUGAY", + "nomCommune": "CHATEAUGAY" }, { - "codePostal": "71170", - "codeCommune": "71327", - "libelleAcheminement": "MUSSY SOUS DUN", - "nomCommune": "MUSSY SOUS DUN" + "codePostal": "73390", + "codeCommune": "73133", + "libelleAcheminement": "HAUTEVILLE", + "nomCommune": "HAUTEVILLE" }, { - "codePostal": "46260", - "codeCommune": "46154", - "libelleAcheminement": "LARAMIERE", - "nomCommune": "LARAMIERE" + "codePostal": "21310", + "codeCommune": "21644", + "libelleAcheminement": "TROCHERES", + "nomCommune": "TROCHERES" }, { - "codePostal": "14950", - "codeCommune": "14645", - "libelleAcheminement": "ST PIERRE AZIF", - "nomCommune": "ST PIERRE AZIF" + "codePostal": "73200", + "codeCommune": "73202", + "libelleAcheminement": "PLANCHERINE", + "nomCommune": "PLANCHERINE" }, { - "codePostal": "70200", - "codeCommune": "70403", - "libelleAcheminement": "PALANTE", - "nomCommune": "PALANTE" + "codePostal": "62380", + "codeCommune": "62008", + "libelleAcheminement": "ACQUIN WESTBECOURT", + "nomCommune": "ACQUIN WESTBECOURT" }, { - "codePostal": "71130", - "codeCommune": "71330", - "libelleAcheminement": "NEUVY GRANDCHAMP", - "nomCommune": "NEUVY GRANDCHAMP" + "codePostal": "63330", + "codeCommune": "63101", + "libelleAcheminement": "CHATEAU SUR CHER", + "nomCommune": "CHATEAU SUR CHER" }, { - "codePostal": "46130", - "codeCommune": "46163", - "libelleAcheminement": "LAVAL DE CERE", - "nomCommune": "LAVAL DE CERE" + "codePostal": "73300", + "codeCommune": "73135", + "libelleAcheminement": "LA TOUR EN MAURIENNE", + "nomCommune": "LA TOUR EN MAURIENNE" }, { - "codePostal": "14700", - "codeCommune": "14649", - "libelleAcheminement": "ST PIERRE DU BU", - "nomCommune": "ST PIERRE DU BU" + "codePostal": "21540", + "codeCommune": "21648", + "libelleAcheminement": "TURCEY", + "nomCommune": "TURCEY" }, { - "codePostal": "70600", - "codeCommune": "70406", - "libelleAcheminement": "PERCEY LE GRAND", - "nomCommune": "PERCEY LE GRAND" + "codePostal": "73110", + "codeCommune": "73207", + "libelleAcheminement": "PRESLE", + "nomCommune": "PRESLE" }, { - "codePostal": "71430", - "codeCommune": "71340", - "libelleAcheminement": "PALINGES", - "nomCommune": "PALINGES" + "codePostal": "62180", + "codeCommune": "62016", + "libelleAcheminement": "AIRON ST VAAST", + "nomCommune": "AIRON ST VAAST" }, { - "codePostal": "46340", - "codeCommune": "46164", - "libelleAcheminement": "LAVERCANTIERE", - "nomCommune": "LAVERCANTIERE" + "codePostal": "63140", + "codeCommune": "63103", + "libelleAcheminement": "CHATEL GUYON", + "nomCommune": "CHATEL GUYON" }, { - "codePostal": "14670", - "codeCommune": "14651", - "libelleAcheminement": "ST PIERRE DU JONQUET", - "nomCommune": "ST PIERRE DU JONQUET" + "codePostal": "73210", + "codeCommune": "73150", + "libelleAcheminement": "LA PLAGNE TARENTAISE", + "nomCommune": "LA PLAGNE TARENTAISE" }, { - "codePostal": "70190", - "codeCommune": "70407", - "libelleAcheminement": "PERROUSE", - "nomCommune": "PERROUSE" + "codePostal": "21121", + "codeCommune": "21651", + "libelleAcheminement": "VAL SUZON", + "nomCommune": "VAL SUZON" }, { - "codePostal": "71350", - "codeCommune": "71341", - "libelleAcheminement": "PALLEAU", - "nomCommune": "PALLEAU" + "codePostal": "73110", + "codeCommune": "73215", + "libelleAcheminement": "VALGELON LA ROCHETTE", + "nomCommune": "VALGELON LA ROCHETTE" }, { - "codePostal": "46120", - "codeCommune": "46170", - "libelleAcheminement": "LEYME", - "nomCommune": "LEYME" + "codePostal": "62650", + "codeCommune": "62017", + "libelleAcheminement": "AIX EN ERGNY", + "nomCommune": "AIX EN ERGNY" }, { - "codePostal": "14140", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "63720", + "codeCommune": "63112", + "libelleAcheminement": "CLERLANDE", + "nomCommune": "CLERLANDE" }, { - "codePostal": "70800", - "codeCommune": "70412", - "libelleAcheminement": "PLAINEMONT", - "nomCommune": "PLAINEMONT" + "codePostal": "73420", + "codeCommune": "73155", + "libelleAcheminement": "MERY", + "nomCommune": "MERY" }, { - "codePostal": "71150", - "codeCommune": "71343", - "libelleAcheminement": "PARIS L HOPITAL", - "nomCommune": "PARIS L HOPITAL" + "codePostal": "21490", + "codeCommune": "21657", + "libelleAcheminement": "VAROIS ET CHAIGNOT", + "nomCommune": "VAROIS ET CHAIGNOT" }, { - "codePostal": "46140", - "codeCommune": "46182", - "libelleAcheminement": "LUZECH", - "nomCommune": "LUZECH" + "codePostal": "73730", + "codeCommune": "73216", + "libelleAcheminement": "ROGNAIX", + "nomCommune": "ROGNAIX" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "62157", + "codeCommune": "62023", + "libelleAcheminement": "ALLOUAGNE", + "nomCommune": "ALLOUAGNE" }, { - "codePostal": "70290", - "codeCommune": "70414", - "libelleAcheminement": "PLANCHER LES MINES", - "nomCommune": "PLANCHER LES MINES" + "codePostal": "63380", + "codeCommune": "63115", + "libelleAcheminement": "COMBRAILLES", + "nomCommune": "COMBRAILLES" }, { - "codePostal": "71420", - "codeCommune": "71346", - "libelleAcheminement": "PERRECY LES FORGES", - "nomCommune": "PERRECY LES FORGES" + "codePostal": "73800", + "codeCommune": "73159", + "libelleAcheminement": "LES MOLLETTES", + "nomCommune": "LES MOLLETTES" }, { - "codePostal": "46600", - "codeCommune": "46185", - "libelleAcheminement": "MARTEL", - "nomCommune": "MARTEL" + "codePostal": "21360", + "codeCommune": "21660", + "libelleAcheminement": "VEILLY", + "nomCommune": "VEILLY" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "73130", + "codeCommune": "73221", + "libelleAcheminement": "ST ALBAN DES VILLARDS", + "nomCommune": "ST ALBAN DES VILLARDS" }, { - "codePostal": "70130", - "codeCommune": "70418", - "libelleAcheminement": "LA ROMAINE", - "nomCommune": "LA ROMAINE" + "codePostal": "62164", + "codeCommune": "62025", + "libelleAcheminement": "AMBLETEUSE", + "nomCommune": "AMBLETEUSE" }, { - "codePostal": "71510", - "codeCommune": "71347", - "libelleAcheminement": "PERREUIL", - "nomCommune": "PERREUIL" + "codePostal": "63610", + "codeCommune": "63117", + "libelleAcheminement": "COMPAINS", + "nomCommune": "COMPAINS" }, { - "codePostal": "46350", - "codeCommune": "46186", - "libelleAcheminement": "MASCLAT", - "nomCommune": "MASCLAT" + "codePostal": "73460", + "codeCommune": "73162", + "libelleAcheminement": "MONTAILLEUR", + "nomCommune": "MONTAILLEUR" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "21540", + "codeCommune": "21669", + "libelleAcheminement": "VERREY SOUS DREE", + "nomCommune": "VERREY SOUS DREE" }, { - "codePostal": "70170", - "codeCommune": "70421", - "libelleAcheminement": "PORT SUR SAONE", - "nomCommune": "PORT SUR SAONE" + "codePostal": "73230", + "codeCommune": "73222", + "libelleAcheminement": "ST ALBAN LEYSSE", + "nomCommune": "ST ALBAN LEYSSE" }, { - "codePostal": "71960", - "codeCommune": "71350", - "libelleAcheminement": "PIERRECLOS", - "nomCommune": "PIERRECLOS" + "codePostal": "62223", + "codeCommune": "62037", + "libelleAcheminement": "ANZIN ST AUBIN", + "nomCommune": "ANZIN ST AUBIN" }, { - "codePostal": "46500", - "codeCommune": "46189", - "libelleAcheminement": "MAYRINHAC LENTOUR", - "nomCommune": "MAYRINHAC LENTOUR" + "codePostal": "63380", + "codeCommune": "63118", + "libelleAcheminement": "CONDAT EN COMBRAILLE", + "nomCommune": "CONDAT EN COMBRAILLE" }, { - "codePostal": "14170", - "codeCommune": "14654", - "libelleAcheminement": "ST PIERRE EN AUGE", - "nomCommune": "ST PIERRE EN AUGE" + "codePostal": "73800", + "codeCommune": "73171", + "libelleAcheminement": "MONTMELIAN", + "nomCommune": "MONTMELIAN" }, { - "codePostal": "70120", - "codeCommune": "70423", - "libelleAcheminement": "PREIGNEY", - "nomCommune": "PREIGNEY" + "codePostal": "21350", + "codeCommune": "21672", + "libelleAcheminement": "VESVRES", + "nomCommune": "VESVRES" }, { - "codePostal": "71330", - "codeCommune": "71352", - "libelleAcheminement": "LE PLANOIS", - "nomCommune": "LE PLANOIS" + "codePostal": "73500", + "codeCommune": "73223", + "libelleAcheminement": "ST ANDRE", + "nomCommune": "ST ANDRE" }, { - "codePostal": "46500", - "codeCommune": "46193", - "libelleAcheminement": "MIERS", - "nomCommune": "MIERS" + "codePostal": "62580", + "codeCommune": "62039", + "libelleAcheminement": "ARLEUX EN GOHELLE", + "nomCommune": "ARLEUX EN GOHELLE" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "63450", + "codeCommune": "63123", + "libelleAcheminement": "COURNOLS", + "nomCommune": "COURNOLS" }, { - "codePostal": "70000", - "codeCommune": "70429", - "libelleAcheminement": "PUSY ET EPENOUX", - "nomCommune": "PUSY ET EPENOUX" + "codePostal": "73870", + "codeCommune": "73173", + "libelleAcheminement": "MONTRICHER ALBANNE", + "nomCommune": "MONTRICHER ALBANNE" }, { - "codePostal": "71220", - "codeCommune": "71358", - "libelleAcheminement": "PRESSY SOUS DONDIN", - "nomCommune": "PRESSY SOUS DONDIN" + "codePostal": "21360", + "codeCommune": "21677", + "libelleAcheminement": "VIC DES PRES", + "nomCommune": "VIC DES PRES" }, { - "codePostal": "46300", - "codeCommune": "46194", - "libelleAcheminement": "MILHAC", - "nomCommune": "MILHAC" + "codePostal": "73130", + "codeCommune": "73224", + "libelleAcheminement": "ST AVRE", + "nomCommune": "ST AVRE" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "62170", + "codeCommune": "62044", + "libelleAcheminement": "ATTIN", + "nomCommune": "ATTIN" }, { - "codePostal": "70120", - "codeCommune": "70430", - "libelleAcheminement": "LA QUARTE", - "nomCommune": "LA QUARTE" + "codePostal": "63450", + "codeCommune": "63126", + "libelleAcheminement": "LE CREST", + "nomCommune": "LE CREST" }, { - "codePostal": "71290", - "codeCommune": "71365", - "libelleAcheminement": "RANCY", - "nomCommune": "RANCY" + "codePostal": "73300", + "codeCommune": "73177", + "libelleAcheminement": "MONTVERNIER", + "nomCommune": "MONTVERNIER" }, { - "codePostal": "46210", - "codeCommune": "46203", - "libelleAcheminement": "MONTET ET BOUXAL", - "nomCommune": "MONTET ET BOUXAL" + "codePostal": "21460", + "codeCommune": "21681", + "libelleAcheminement": "VIEUX CHATEAU", + "nomCommune": "VIEUX CHATEAU" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "73120", + "codeCommune": "73227", + "libelleAcheminement": "COURCHEVEL", + "nomCommune": "COURCHEVEL" }, { - "codePostal": "70000", - "codeCommune": "70433", - "libelleAcheminement": "QUINCEY", - "nomCommune": "QUINCEY" + "codePostal": "62690", + "codeCommune": "62045", + "libelleAcheminement": "AUBIGNY EN ARTOIS", + "nomCommune": "AUBIGNY EN ARTOIS" }, { - "codePostal": "71290", - "codeCommune": "71366", - "libelleAcheminement": "RATENELLE", - "nomCommune": "RATENELLE" + "codePostal": "63700", + "codeCommune": "63130", + "libelleAcheminement": "LA CROUZILLE", + "nomCommune": "LA CROUZILLE" }, { - "codePostal": "46350", - "codeCommune": "46209", - "libelleAcheminement": "NADAILLAC DE ROUGE", - "nomCommune": "NADAILLAC DE ROUGE" + "codePostal": "73260", + "codeCommune": "73187", + "libelleAcheminement": "LA LECHERE", + "nomCommune": "LA LECHERE" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "21310", + "codeCommune": "21682", + "libelleAcheminement": "VIEVIGNE", + "nomCommune": "VIEVIGNE" }, { - "codePostal": "70140", - "codeCommune": "70443", - "libelleAcheminement": "LA GRANDE RESIE", - "nomCommune": "LA GRANDE RESIE" + "codePostal": "73120", + "codeCommune": "73227", + "libelleAcheminement": "COURCHEVEL", + "nomCommune": "COURCHEVEL" }, { - "codePostal": "71500", - "codeCommune": "71367", - "libelleAcheminement": "RATTE", - "nomCommune": "RATTE" + "codePostal": "62260", + "codeCommune": "62048", + "libelleAcheminement": "AUCHEL", + "nomCommune": "AUCHEL" }, { - "codePostal": "46500", - "codeCommune": "46213", - "libelleAcheminement": "PADIRAC", - "nomCommune": "PADIRAC" + "codePostal": "63590", + "codeCommune": "63132", + "libelleAcheminement": "CUNLHAT", + "nomCommune": "CUNLHAT" }, { - "codePostal": "14380", - "codeCommune": "14658", - "libelleAcheminement": "NOUES DE SIENNE", - "nomCommune": "NOUES DE SIENNE" + "codePostal": "73260", + "codeCommune": "73187", + "libelleAcheminement": "LA LECHERE", + "nomCommune": "LA LECHERE" }, { - "codePostal": "70200", - "codeCommune": "70445", - "libelleAcheminement": "RIGNOVELLE", - "nomCommune": "RIGNOVELLE" + "codePostal": "21230", + "codeCommune": "21683", + "libelleAcheminement": "VIEVY", + "nomCommune": "VIEVY" }, { - "codePostal": "71540", - "codeCommune": "71368", - "libelleAcheminement": "RECLESNE", - "nomCommune": "RECLESNE" + "codePostal": "73360", + "codeCommune": "73233", + "libelleAcheminement": "ST FRANC", + "nomCommune": "ST FRANC" }, { - "codePostal": "46260", - "codeCommune": "46230", - "libelleAcheminement": "PUYJOURDES", - "nomCommune": "PUYJOURDES" + "codePostal": "62190", + "codeCommune": "62049", + "libelleAcheminement": "AUCHY AU BOIS", + "nomCommune": "AUCHY AU BOIS" }, { - "codePostal": "14190", - "codeCommune": "14659", - "libelleAcheminement": "ST SYLVAIN", - "nomCommune": "ST SYLVAIN" + "codePostal": "63700", + "codeCommune": "63140", + "libelleAcheminement": "DURMIGNAT", + "nomCommune": "DURMIGNAT" }, { - "codePostal": "70250", - "codeCommune": "70451", - "libelleAcheminement": "RONCHAMP", - "nomCommune": "RONCHAMP" + "codePostal": "73260", + "codeCommune": "73187", + "libelleAcheminement": "LA LECHERE", + "nomCommune": "LA LECHERE" }, { - "codePostal": "71260", - "codeCommune": "71383", - "libelleAcheminement": "ST ALBAIN", - "nomCommune": "ST ALBAIN" + "codePostal": "21400", + "codeCommune": "21700", + "libelleAcheminement": "VILLERS PATRAS", + "nomCommune": "VILLERS PATRAS" }, { - "codePostal": "46500", - "codeCommune": "46235", - "libelleAcheminement": "REILHAC", - "nomCommune": "REILHAC" + "codePostal": "73340", + "codeCommune": "73234", + "libelleAcheminement": "ST FRANCOIS DE SALES", + "nomCommune": "ST FRANCOIS DE SALES" }, { - "codePostal": "14400", - "codeCommune": "14663", - "libelleAcheminement": "ST VIGOR LE GRAND", - "nomCommune": "ST VIGOR LE GRAND" + "codePostal": "62560", + "codeCommune": "62053", + "libelleAcheminement": "AUDINCTHUN", + "nomCommune": "AUDINCTHUN" }, { - "codePostal": "70190", - "codeCommune": "70456", - "libelleAcheminement": "RUHANS", - "nomCommune": "RUHANS" + "codePostal": "63980", + "codeCommune": "63142", + "libelleAcheminement": "ECHANDELYS", + "nomCommune": "ECHANDELYS" }, { - "codePostal": "71140", - "codeCommune": "71389", - "libelleAcheminement": "ST AUBIN SUR LOIRE", - "nomCommune": "ST AUBIN SUR LOIRE" + "codePostal": "73310", + "codeCommune": "73193", + "libelleAcheminement": "ONTEX", + "nomCommune": "ONTEX" }, { - "codePostal": "46300", - "codeCommune": "46241", - "libelleAcheminement": "ROUFFILHAC", - "nomCommune": "ROUFFILHAC" + "codePostal": "21130", + "codeCommune": "21701", + "libelleAcheminement": "VILLERS ROTIN", + "nomCommune": "VILLERS ROTIN" }, { - "codePostal": "14190", - "codeCommune": "14674", - "libelleAcheminement": "SOIGNOLLES", - "nomCommune": "SOIGNOLLES" + "codePostal": "73130", + "codeCommune": "73235", + "libelleAcheminement": "ST FRANCOIS LONGCHAMP", + "nomCommune": "ST FRANCOIS LONGCHAMP" }, { - "codePostal": "70360", - "codeCommune": "70457", - "libelleAcheminement": "RUPT SUR SAONE", - "nomCommune": "RUPT SUR SAONE" + "codePostal": "62370", + "codeCommune": "62057", + "libelleAcheminement": "AUDRUICQ", + "nomCommune": "AUDRUICQ" }, { - "codePostal": "71310", - "codeCommune": "71396", - "libelleAcheminement": "ST BONNET EN BRESSE", - "nomCommune": "ST BONNET EN BRESSE" + "codePostal": "63840", + "codeCommune": "63147", + "libelleAcheminement": "EGLISOLLES", + "nomCommune": "EGLISOLLES" }, { - "codePostal": "46210", - "codeCommune": "46244", - "libelleAcheminement": "SABADEL LATRONQUIERE", - "nomCommune": "SABADEL LATRONQUIERE" + "codePostal": "73100", + "codeCommune": "73208", + "libelleAcheminement": "PUGNY CHATENOD", + "nomCommune": "PUGNY CHATENOD" }, { - "codePostal": "14540", - "codeCommune": "14675", - "libelleAcheminement": "SOLIERS", - "nomCommune": "SOLIERS" + "codePostal": "21430", + "codeCommune": "21703", + "libelleAcheminement": "VILLIERS EN MORVAN", + "nomCommune": "VILLIERS EN MORVAN" }, { - "codePostal": "70100", - "codeCommune": "70461", - "libelleAcheminement": "ST BROING", - "nomCommune": "ST BROING" + "codePostal": "73130", + "codeCommune": "73235", + "libelleAcheminement": "ST FRANCOIS LONGCHAMP", + "nomCommune": "ST FRANCOIS LONGCHAMP" }, { - "codePostal": "71240", - "codeCommune": "71402", - "libelleAcheminement": "ST CYR", - "nomCommune": "ST CYR" + "codePostal": "62550", + "codeCommune": "62058", + "libelleAcheminement": "AUMERVAL", + "nomCommune": "AUMERVAL" }, { - "codePostal": "46330", - "codeCommune": "46256", - "libelleAcheminement": "ST CIRQ LAPOPIE", - "nomCommune": "ST CIRQ LAPOPIE" + "codePostal": "63720", + "codeCommune": "63148", + "libelleAcheminement": "ENNEZAT", + "nomCommune": "ENNEZAT" }, { - "codePostal": "14130", - "codeCommune": "14682", - "libelleAcheminement": "SURVILLE", - "nomCommune": "SURVILLE" + "codePostal": "73110", + "codeCommune": "73215", + "libelleAcheminement": "VALGELON LA ROCHETTE", + "nomCommune": "VALGELON LA ROCHETTE" }, { - "codePostal": "70100", - "codeCommune": "70466", - "libelleAcheminement": "ST LOUP NANTOUARD", - "nomCommune": "ST LOUP NANTOUARD" + "codePostal": "22810", + "codeCommune": "22005", + "libelleAcheminement": "BELLE ISLE EN TERRE", + "nomCommune": "BELLE ISLE EN TERRE" }, { - "codePostal": "71390", - "codeCommune": "71404", - "libelleAcheminement": "ST DESERT", - "nomCommune": "ST DESERT" + "codePostal": "73800", + "codeCommune": "73240", + "libelleAcheminement": "STE HELENE DU LAC", + "nomCommune": "STE HELENE DU LAC" }, { - "codePostal": "46300", - "codeCommune": "46257", - "libelleAcheminement": "ST CIRQ MADELON", - "nomCommune": "ST CIRQ MADELON" + "codePostal": "62450", + "codeCommune": "62064", + "libelleAcheminement": "AVESNES LES BAPAUME", + "nomCommune": "AVESNES LES BAPAUME" }, { - "codePostal": "14220", - "codeCommune": "14689", - "libelleAcheminement": "LE HOM", - "nomCommune": "LE HOM" + "codePostal": "63850", + "codeCommune": "63153", + "libelleAcheminement": "ESPINCHAL", + "nomCommune": "ESPINCHAL" }, { - "codePostal": "70800", - "codeCommune": "70467", - "libelleAcheminement": "ST LOUP SUR SEMOUSE", - "nomCommune": "ST LOUP SUR SEMOUSE" + "codePostal": "73110", + "codeCommune": "73217", + "libelleAcheminement": "ROTHERENS", + "nomCommune": "ROTHERENS" }, { - "codePostal": "71110", - "codeCommune": "71406", - "libelleAcheminement": "ST DIDIER EN BRIONNAIS", - "nomCommune": "ST DIDIER EN BRIONNAIS" + "codePostal": "22100", + "codeCommune": "22008", + "libelleAcheminement": "BOBITAL", + "nomCommune": "BOBITAL" }, { - "codePostal": "46300", - "codeCommune": "46258", - "libelleAcheminement": "ST CIRQ SOUILLAGUET", - "nomCommune": "ST CIRQ SOUILLAGUET" + "codePostal": "73300", + "codeCommune": "73248", + "libelleAcheminement": "ST JEAN DE MAURIENNE", + "nomCommune": "ST JEAN DE MAURIENNE" }, { - "codePostal": "14220", - "codeCommune": "14689", - "libelleAcheminement": "LE HOM", - "nomCommune": "LE HOM" + "codePostal": "62123", + "codeCommune": "62074", + "libelleAcheminement": "BAILLEULVAL", + "nomCommune": "BAILLEULVAL" }, { - "codePostal": "70500", - "codeCommune": "70468", - "libelleAcheminement": "ST MARCEL", - "nomCommune": "ST MARCEL" + "codePostal": "63500", + "codeCommune": "63160", + "libelleAcheminement": "AULHAT FLAT", + "nomCommune": "AULHAT FLAT" }, { - "codePostal": "71320", - "codeCommune": "71411", - "libelleAcheminement": "ST EUGENE", - "nomCommune": "ST EUGENE" + "codePostal": "73310", + "codeCommune": "73218", + "libelleAcheminement": "RUFFIEUX", + "nomCommune": "RUFFIEUX" }, { - "codePostal": "46800", - "codeCommune": "46262", - "libelleAcheminement": "LENDOU EN QUERCY", - "nomCommune": "LENDOU EN QUERCY" + "codePostal": "22320", + "codeCommune": "22009", + "libelleAcheminement": "LE BODEO", + "nomCommune": "LE BODEO" }, { - "codePostal": "14220", - "codeCommune": "14689", - "libelleAcheminement": "LE HOM", - "nomCommune": "LE HOM" + "codePostal": "73130", + "codeCommune": "73255", + "libelleAcheminement": "STE MARIE DE CUINES", + "nomCommune": "STE MARIE DE CUINES" }, { - "codePostal": "70240", - "codeCommune": "70478", - "libelleAcheminement": "SAULX", - "nomCommune": "SAULX" + "codePostal": "62610", + "codeCommune": "62078", + "libelleAcheminement": "BALINGHEM", + "nomCommune": "BALINGHEM" }, { - "codePostal": "71390", - "codeCommune": "71422", - "libelleAcheminement": "ST GERMAIN LES BUXY", - "nomCommune": "ST GERMAIN LES BUXY" + "codePostal": "63500", + "codeCommune": "63160", + "libelleAcheminement": "AULHAT FLAT", + "nomCommune": "AULHAT FLAT" }, { - "codePostal": "46800", - "codeCommune": "46263", - "libelleAcheminement": "BARGUELONNE EN QUERCY", - "nomCommune": "BARGUELONNE EN QUERCY" + "codePostal": "73160", + "codeCommune": "73228", + "libelleAcheminement": "ST CASSIN", + "nomCommune": "ST CASSIN" }, { - "codePostal": "14250", - "codeCommune": "14692", - "libelleAcheminement": "TILLY SUR SEULLES", - "nomCommune": "TILLY SUR SEULLES" + "codePostal": "22390", + "codeCommune": "22013", + "libelleAcheminement": "BOURBRIAC", + "nomCommune": "BOURBRIAC" }, { - "codePostal": "70100", - "codeCommune": "70479", - "libelleAcheminement": "SAUVIGNEY LES GRAY", - "nomCommune": "SAUVIGNEY LES GRAY" + "codePostal": "73140", + "codeCommune": "73256", + "libelleAcheminement": "ST MARTIN D ARC", + "nomCommune": "ST MARTIN D ARC" }, { - "codePostal": "71350", - "codeCommune": "71423", - "libelleAcheminement": "ST GERVAIS EN VALLIERE", - "nomCommune": "ST GERVAIS EN VALLIERE" + "codePostal": "62450", + "codeCommune": "62079", + "libelleAcheminement": "BANCOURT", + "nomCommune": "BANCOURT" }, { - "codePostal": "46090", - "codeCommune": "46268", - "libelleAcheminement": "ST GERY VERS", - "nomCommune": "ST GERY VERS" + "codePostal": "63600", + "codeCommune": "63161", + "libelleAcheminement": "LA FORIE", + "nomCommune": "LA FORIE" }, { - "codePostal": "14800", - "codeCommune": "14699", - "libelleAcheminement": "TOUQUES", - "nomCommune": "TOUQUES" + "codePostal": "73130", + "codeCommune": "73231", + "libelleAcheminement": "ST ETIENNE DE CUINES", + "nomCommune": "ST ETIENNE DE CUINES" }, { - "codePostal": "70120", - "codeCommune": "70486", - "libelleAcheminement": "SEMMADON", - "nomCommune": "SEMMADON" + "codePostal": "22140", + "codeCommune": "22018", + "libelleAcheminement": "BRELIDY", + "nomCommune": "BRELIDY" }, { - "codePostal": "71600", - "codeCommune": "71439", - "libelleAcheminement": "ST LEGER LES PARAY", - "nomCommune": "ST LEGER LES PARAY" + "codePostal": "73140", + "codeCommune": "73258", + "libelleAcheminement": "ST MARTIN DE LA PORTE", + "nomCommune": "ST MARTIN DE LA PORTE" }, { - "codePostal": "46330", - "codeCommune": "46268", - "libelleAcheminement": "ST GERY VERS", - "nomCommune": "ST GERY VERS" + "codePostal": "62620", + "codeCommune": "62083", + "libelleAcheminement": "BARLIN", + "nomCommune": "BARLIN" }, { - "codePostal": "14800", - "codeCommune": "14701", - "libelleAcheminement": "TOURGEVILLE", - "nomCommune": "TOURGEVILLE" + "codePostal": "63270", + "codeCommune": "63177", + "libelleAcheminement": "ISSERTEAUX", + "nomCommune": "ISSERTEAUX" }, { - "codePostal": "70110", - "codeCommune": "70487", - "libelleAcheminement": "SENARGENT MIGNAFANS", - "nomCommune": "SENARGENT MIGNAFANS" + "codePostal": "73240", + "codeCommune": "73236", + "libelleAcheminement": "ST GENIX LES VILLAGES", + "nomCommune": "ST GENIX LES VILLAGES" }, { - "codePostal": "71640", - "codeCommune": "71459", - "libelleAcheminement": "ST MARTIN SOUS MONTAIGU", - "nomCommune": "ST MARTIN SOUS MONTAIGU" + "codePostal": "22170", + "codeCommune": "22019", + "libelleAcheminement": "BRINGOLO", + "nomCommune": "BRINGOLO" }, { - "codePostal": "46210", - "codeCommune": "46282", - "libelleAcheminement": "ST MEDARD NICOURBY", - "nomCommune": "ST MEDARD NICOURBY" + "codePostal": "73140", + "codeCommune": "73261", + "libelleAcheminement": "ST MICHEL DE MAURIENNE", + "nomCommune": "ST MICHEL DE MAURIENNE" }, { - "codePostal": "14130", - "codeCommune": "14706", - "libelleAcheminement": "TOURVILLE EN AUGE", - "nomCommune": "TOURVILLE EN AUGE" + "codePostal": "62158", + "codeCommune": "62086", + "libelleAcheminement": "BAVINCOURT", + "nomCommune": "BAVINCOURT" }, { - "codePostal": "70130", - "codeCommune": "70491", - "libelleAcheminement": "SEVEUX MOTEY", - "nomCommune": "SEVEUX MOTEY" + "codePostal": "63570", + "codeCommune": "63182", + "libelleAcheminement": "JUMEAUX", + "nomCommune": "JUMEAUX" }, { - "codePostal": "71460", - "codeCommune": "71461", - "libelleAcheminement": "ST MAURICE DES CHAMPS", - "nomCommune": "ST MAURICE DES CHAMPS" + "codePostal": "73240", + "codeCommune": "73236", + "libelleAcheminement": "ST GENIX LES VILLAGES", + "nomCommune": "ST GENIX LES VILLAGES" }, { - "codePostal": "46400", - "codeCommune": "46295", - "libelleAcheminement": "ST VINCENT DU PENDIT", - "nomCommune": "ST VINCENT DU PENDIT" + "codePostal": "22300", + "codeCommune": "22030", + "libelleAcheminement": "CAOUENNEC LANVEZEAC", + "nomCommune": "CAOUENNEC LANVEZEAC" }, { - "codePostal": "14210", - "codeCommune": "14707", - "libelleAcheminement": "TOURVILLE SUR ODON", - "nomCommune": "TOURVILLE SUR ODON" + "codePostal": "73140", + "codeCommune": "73261", + "libelleAcheminement": "ST MICHEL DE MAURIENNE", + "nomCommune": "ST MICHEL DE MAURIENNE" }, { - "codePostal": "70130", - "codeCommune": "70492", - "libelleAcheminement": "SOING CUBRY CHARENTENAY", - "nomCommune": "SOING CUBRY CHARENTENAY" + "codePostal": "62770", + "codeCommune": "62090", + "libelleAcheminement": "BEALENCOURT", + "nomCommune": "BEALENCOURT" }, { - "codePostal": "71190", - "codeCommune": "71466", - "libelleAcheminement": "ST NIZIER SUR ARROUX", - "nomCommune": "ST NIZIER SUR ARROUX" + "codePostal": "63820", + "codeCommune": "63189", + "libelleAcheminement": "LAQUEUILLE", + "nomCommune": "LAQUEUILLE" }, { - "codePostal": "46240", - "codeCommune": "46304", - "libelleAcheminement": "SENIERGUES", - "nomCommune": "SENIERGUES" + "codePostal": "73230", + "codeCommune": "73243", + "libelleAcheminement": "ST JEAN D ARVEY", + "nomCommune": "ST JEAN D ARVEY" }, { - "codePostal": "14210", - "codeCommune": "14713", - "libelleAcheminement": "MONTILLIERES SUR ORNE", - "nomCommune": "MONTILLIERES SUR ORNE" + "codePostal": "22300", + "codeCommune": "22030", + "libelleAcheminement": "CAOUENNEC LANVEZEAC", + "nomCommune": "CAOUENNEC LANVEZEAC" }, { - "codePostal": "70120", - "codeCommune": "70502", - "libelleAcheminement": "TINCEY ET PONTREBEAU", - "nomCommune": "TINCEY ET PONTREBEAU" + "codePostal": "73170", + "codeCommune": "73271", + "libelleAcheminement": "ST PIERRE D ALVEY", + "nomCommune": "ST PIERRE D ALVEY" }, { - "codePostal": "71230", - "codeCommune": "71486", - "libelleAcheminement": "ST VALLIER", - "nomCommune": "ST VALLIER" + "codePostal": "62990", + "codeCommune": "62100", + "libelleAcheminement": "BEAURAINVILLE", + "nomCommune": "BEAURAINVILLE" }, { - "codePostal": "46200", - "codeCommune": "46309", - "libelleAcheminement": "SOUILLAC", - "nomCommune": "SOUILLAC" + "codePostal": "63760", + "codeCommune": "63191", + "libelleAcheminement": "LASTIC", + "nomCommune": "LASTIC" }, { - "codePostal": "14490", - "codeCommune": "14716", - "libelleAcheminement": "TRUNGY", - "nomCommune": "TRUNGY" + "codePostal": "73170", + "codeCommune": "73245", + "libelleAcheminement": "ST JEAN DE CHEVELU", + "nomCommune": "ST JEAN DE CHEVELU" }, { - "codePostal": "70190", - "codeCommune": "70503", - "libelleAcheminement": "TRAITIEFONTAINE", - "nomCommune": "TRAITIEFONTAINE" + "codePostal": "22630", + "codeCommune": "22035", + "libelleAcheminement": "LES CHAMPS GERAUX", + "nomCommune": "LES CHAMPS GERAUX" }, { - "codePostal": "71570", - "codeCommune": "71487", - "libelleAcheminement": "ST VERAND", - "nomCommune": "ST VERAND" + "codePostal": "73630", + "codeCommune": "73277", + "libelleAcheminement": "STE REINE", + "nomCommune": "STE REINE" }, { - "codePostal": "46240", - "codeCommune": "46310", - "libelleAcheminement": "SOULOMES", - "nomCommune": "SOULOMES" + "codePostal": "62600", + "codeCommune": "62108", + "libelleAcheminement": "BERCK", + "nomCommune": "BERCK" }, { - "codePostal": "14190", - "codeCommune": "14719", - "libelleAcheminement": "URVILLE", - "nomCommune": "URVILLE" + "codePostal": "63370", + "codeCommune": "63193", + "libelleAcheminement": "LEMPDES", + "nomCommune": "LEMPDES" }, { - "codePostal": "70360", - "codeCommune": "70504", - "libelleAcheminement": "TRAVES", - "nomCommune": "TRAVES" + "codePostal": "73160", + "codeCommune": "73246", + "libelleAcheminement": "ST JEAN DE COUZ", + "nomCommune": "ST JEAN DE COUZ" }, { - "codePostal": "71460", - "codeCommune": "71492", - "libelleAcheminement": "ST YTHAIRE", - "nomCommune": "ST YTHAIRE" + "codePostal": "22350", + "codeCommune": "22036", + "libelleAcheminement": "LA CHAPELLE BLANCHE", + "nomCommune": "LA CHAPELLE BLANCHE" }, { - "codePostal": "46190", - "codeCommune": "46311", - "libelleAcheminement": "SOUSCEYRAC EN QUERCY", - "nomCommune": "SOUSCEYRAC EN QUERCY" + "codePostal": "73460", + "codeCommune": "73283", + "libelleAcheminement": "ST VITAL", + "nomCommune": "ST VITAL" }, { - "codePostal": "14420", - "codeCommune": "14720", - "libelleAcheminement": "USSY", - "nomCommune": "USSY" + "codePostal": "62134", + "codeCommune": "62109", + "libelleAcheminement": "BERGUENEUSE", + "nomCommune": "BERGUENEUSE" }, { - "codePostal": "70140", - "codeCommune": "70514", - "libelleAcheminement": "VALAY", - "nomCommune": "VALAY" + "codePostal": "63190", + "codeCommune": "63195", + "libelleAcheminement": "LEZOUX", + "nomCommune": "LEZOUX" }, { - "codePostal": "71460", - "codeCommune": "71498", - "libelleAcheminement": "SANTILLY", - "nomCommune": "SANTILLY" + "codePostal": "73440", + "codeCommune": "73257", + "libelleAcheminement": "LES BELLEVILLE", + "nomCommune": "LES BELLEVILLE" }, { - "codePostal": "46190", - "codeCommune": "46315", - "libelleAcheminement": "TEYSSIEU", - "nomCommune": "TEYSSIEU" + "codePostal": "22330", + "codeCommune": "22046", + "libelleAcheminement": "LE MENE", + "nomCommune": "LE MENE" }, { - "codePostal": "14210", - "codeCommune": "14721", - "libelleAcheminement": "VACOGNES NEUILLY", - "nomCommune": "VACOGNES NEUILLY" + "codePostal": "73500", + "codeCommune": "73290", + "libelleAcheminement": "VAL CENIS", + "nomCommune": "VAL CENIS" }, { - "codePostal": "70700", - "codeCommune": "70521", - "libelleAcheminement": "VANTOUX ET LONGEVELLE", - "nomCommune": "VANTOUX ET LONGEVELLE" + "codePostal": "62690", + "codeCommune": "62118", + "libelleAcheminement": "BETHONSART", + "nomCommune": "BETHONSART" }, { - "codePostal": "71220", - "codeCommune": "71524", - "libelleAcheminement": "SIVIGNON", - "nomCommune": "SIVIGNON" + "codePostal": "63340", + "codeCommune": "63209", + "libelleAcheminement": "MAREUGHEOL", + "nomCommune": "MAREUGHEOL" }, { - "codePostal": "46120", - "codeCommune": "46319", - "libelleAcheminement": "THEMINETTES", - "nomCommune": "THEMINETTES" + "codePostal": "73440", + "codeCommune": "73257", + "libelleAcheminement": "LES BELLEVILLE", + "nomCommune": "LES BELLEVILLE" }, { - "codePostal": "14350", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "22250", + "codeCommune": "22053", + "libelleAcheminement": "EREAC", + "nomCommune": "EREAC" }, { - "codePostal": "70700", - "codeCommune": "70527", - "libelleAcheminement": "VAUX LE MONCELOT", - "nomCommune": "VAUX LE MONCELOT" + "codePostal": "73230", + "codeCommune": "73310", + "libelleAcheminement": "VEREL PRAGONDRAN", + "nomCommune": "VEREL PRAGONDRAN" }, { - "codePostal": "71960", - "codeCommune": "71525", - "libelleAcheminement": "SOLOGNY", - "nomCommune": "SOLOGNY" + "codePostal": "62118", + "codeCommune": "62128", + "libelleAcheminement": "BIACHE ST VAAST", + "nomCommune": "BIACHE ST VAAST" }, { - "codePostal": "46090", - "codeCommune": "46322", - "libelleAcheminement": "TRESPOUX RASSIELS", - "nomCommune": "TRESPOUX RASSIELS" + "codePostal": "63350", + "codeCommune": "63210", + "libelleAcheminement": "MARINGUES", + "nomCommune": "MARINGUES" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "73140", + "codeCommune": "73261", + "libelleAcheminement": "ST MICHEL DE MAURIENNE", + "nomCommune": "ST MICHEL DE MAURIENNE" }, { - "codePostal": "70100", - "codeCommune": "70528", - "libelleAcheminement": "VELESMES ECHEVANNE", - "nomCommune": "VELESMES ECHEVANNE" + "codePostal": "22430", + "codeCommune": "22054", + "libelleAcheminement": "ERQUY", + "nomCommune": "ERQUY" }, { - "codePostal": "71500", - "codeCommune": "71528", - "libelleAcheminement": "SORNAY", - "nomCommune": "SORNAY" + "codePostal": "73460", + "codeCommune": "73312", + "libelleAcheminement": "VERRENS ARVEY", + "nomCommune": "VERRENS ARVEY" }, { - "codePostal": "46100", - "codeCommune": "46332", - "libelleAcheminement": "VIAZAC", - "nomCommune": "VIAZAC" + "codePostal": "62121", + "codeCommune": "62131", + "libelleAcheminement": "BIHUCOURT", + "nomCommune": "BIHUCOURT" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "63560", + "codeCommune": "63223", + "libelleAcheminement": "MENAT", + "nomCommune": "MENAT" }, { - "codePostal": "70200", - "codeCommune": "70544", - "libelleAcheminement": "LA VERGENNE", - "nomCommune": "LA VERGENNE" + "codePostal": "73590", + "codeCommune": "73262", + "libelleAcheminement": "ST NICOLAS LA CHAPELLE", + "nomCommune": "ST NICOLAS LA CHAPELLE" }, { - "codePostal": "71250", - "codeCommune": "71532", - "libelleAcheminement": "TAIZE", - "nomCommune": "TAIZE" + "codePostal": "22680", + "codeCommune": "22055", + "libelleAcheminement": "BINIC ETABLES SUR MER", + "nomCommune": "BINIC ETABLES SUR MER" }, { - "codePostal": "46400", - "codeCommune": "46339", - "libelleAcheminement": "ST JEAN LAGINESTE", - "nomCommune": "ST JEAN LAGINESTE" + "codePostal": "73800", + "codeCommune": "73314", + "libelleAcheminement": "VILLARD D HERY", + "nomCommune": "VILLARD D HERY" }, { - "codePostal": "14410", - "codeCommune": "14726", - "libelleAcheminement": "VALDALLIERE", - "nomCommune": "VALDALLIERE" + "codePostal": "62173", + "codeCommune": "62135", + "libelleAcheminement": "BLAIRVILLE", + "nomCommune": "BLAIRVILLE" }, { - "codePostal": "70500", - "codeCommune": "70548", - "libelleAcheminement": "VERNOIS SUR MANCE", - "nomCommune": "VERNOIS SUR MANCE" + "codePostal": "63750", + "codeCommune": "63225", + "libelleAcheminement": "MESSEIX", + "nomCommune": "MESSEIX" }, { - "codePostal": "71250", - "codeCommune": "71532", - "libelleAcheminement": "TAIZE", - "nomCommune": "TAIZE" + "codePostal": "73100", + "codeCommune": "73263", + "libelleAcheminement": "ST OFFENGE", + "nomCommune": "ST OFFENGE" }, { - "codePostal": "47800", - "codeCommune": "47005", - "libelleAcheminement": "ALLEMANS DU DROPT", - "nomCommune": "ALLEMANS DU DROPT" + "codePostal": "22320", + "codeCommune": "22074", + "libelleAcheminement": "LE HAUT CORLAY", + "nomCommune": "LE HAUT CORLAY" }, { - "codePostal": "14790", - "codeCommune": "14738", - "libelleAcheminement": "VERSON", - "nomCommune": "VERSON" + "codePostal": "73390", + "codeCommune": "73315", + "libelleAcheminement": "VILLARD LEGER", + "nomCommune": "VILLARD LEGER" }, { - "codePostal": "70000", - "codeCommune": "70550", - "libelleAcheminement": "VESOUL", - "nomCommune": "VESOUL" + "codePostal": "62770", + "codeCommune": "62142", + "libelleAcheminement": "BLINGEL", + "nomCommune": "BLINGEL" }, { - "codePostal": "71440", - "codeCommune": "71548", - "libelleAcheminement": "TRONCHY", - "nomCommune": "TRONCHY" + "codePostal": "63380", + "codeCommune": "63228", + "libelleAcheminement": "MIREMONT", + "nomCommune": "MIREMONT" }, { - "codePostal": "47420", - "codeCommune": "47007", - "libelleAcheminement": "ALLONS", - "nomCommune": "ALLONS" + "codePostal": "73100", + "codeCommune": "73263", + "libelleAcheminement": "ST OFFENGE", + "nomCommune": "ST OFFENGE" }, { - "codePostal": "14400", - "codeCommune": "14744", - "libelleAcheminement": "VIENNE EN BESSIN", - "nomCommune": "VIENNE EN BESSIN" + "codePostal": "22150", + "codeCommune": "22079", + "libelleAcheminement": "HENON", + "nomCommune": "HENON" }, { - "codePostal": "70000", - "codeCommune": "70559", - "libelleAcheminement": "VILLEPAROIS", - "nomCommune": "VILLEPAROIS" + "codePostal": "73160", + "codeCommune": "73326", + "libelleAcheminement": "VIMINES", + "nomCommune": "VIMINES" }, { - "codePostal": "71700", - "codeCommune": "71550", - "libelleAcheminement": "UCHIZY", - "nomCommune": "UCHIZY" + "codePostal": "62175", + "codeCommune": "62146", + "libelleAcheminement": "BOIRY ST MARTIN", + "nomCommune": "BOIRY ST MARTIN" }, { - "codePostal": "47700", - "codeCommune": "47012", - "libelleAcheminement": "ANZEX", - "nomCommune": "ANZEX" + "codePostal": "63190", + "codeCommune": "63229", + "libelleAcheminement": "MOISSAT", + "nomCommune": "MOISSAT" }, { - "codePostal": "14310", - "codeCommune": "14752", - "libelleAcheminement": "VILLERS BOCAGE", - "nomCommune": "VILLERS BOCAGE" + "codePostal": "73730", + "codeCommune": "73268", + "libelleAcheminement": "ST PAUL SUR ISERE", + "nomCommune": "ST PAUL SUR ISERE" }, { - "codePostal": "70190", - "codeCommune": "70565", - "libelleAcheminement": "VILLERS PATER", - "nomCommune": "VILLERS PATER" + "codePostal": "22120", + "codeCommune": "22081", + "libelleAcheminement": "HILLION", + "nomCommune": "HILLION" }, { - "codePostal": "71000", - "codeCommune": "71556", - "libelleAcheminement": "VARENNES LES MACON", - "nomCommune": "VARENNES LES MACON" + "codePostal": "74350", + "codeCommune": "74006", + "libelleAcheminement": "ALLONZIER LA CAILLE", + "nomCommune": "ALLONZIER LA CAILLE" }, { - "codePostal": "47250", - "codeCommune": "47013", - "libelleAcheminement": "ARGENTON", - "nomCommune": "ARGENTON" + "codePostal": "62175", + "codeCommune": "62151", + "libelleAcheminement": "BOISLEUX AU MONT", + "nomCommune": "BOISLEUX AU MONT" }, { - "codePostal": "14420", - "codeCommune": "14753", - "libelleAcheminement": "VILLERS CANIVET", - "nomCommune": "VILLERS CANIVET" + "codePostal": "63320", + "codeCommune": "63234", + "libelleAcheminement": "MONTAIGUT LE BLANC", + "nomCommune": "MONTAIGUT LE BLANC" }, { - "codePostal": "70120", - "codeCommune": "70568", - "libelleAcheminement": "VILLERS VAUDEY", - "nomCommune": "VILLERS VAUDEY" + "codePostal": "73220", + "codeCommune": "73272", + "libelleAcheminement": "ST PIERRE DE BELLEVILLE", + "nomCommune": "ST PIERRE DE BELLEVILLE" }, { - "codePostal": "71600", - "codeCommune": "71557", - "libelleAcheminement": "VARENNE ST GERMAIN", - "nomCommune": "VARENNE ST GERMAIN" + "codePostal": "22100", + "codeCommune": "22082", + "libelleAcheminement": "LE HINGLE", + "nomCommune": "LE HINGLE" }, { - "codePostal": "47120", - "codeCommune": "47018", - "libelleAcheminement": "AURIAC SUR DROPT", - "nomCommune": "AURIAC SUR DROPT" + "codePostal": "74370", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "14610", - "codeCommune": "14758", - "libelleAcheminement": "VILLONS LES BUISSONS", - "nomCommune": "VILLONS LES BUISSONS" + "codePostal": "62175", + "codeCommune": "62152", + "libelleAcheminement": "BOISLEUX ST MARC", + "nomCommune": "BOISLEUX ST MARC" }, { - "codePostal": "70300", - "codeCommune": "70571", - "libelleAcheminement": "VISONCOURT", - "nomCommune": "VISONCOURT" + "codePostal": "63114", + "codeCommune": "63241", + "libelleAcheminement": "MONTPEYROUX", + "nomCommune": "MONTPEYROUX" }, { - "codePostal": "71480", - "codeCommune": "71558", - "libelleAcheminement": "VARENNES ST SAUVEUR", - "nomCommune": "VARENNES ST SAUVEUR" + "codePostal": "73530", + "codeCommune": "73280", + "libelleAcheminement": "ST SORLIN D ARVES", + "nomCommune": "ST SORLIN D ARVES" }, { - "codePostal": "47200", - "codeCommune": "47028", - "libelleAcheminement": "BIRAC SUR TREC", - "nomCommune": "BIRAC SUR TREC" + "codePostal": "22270", + "codeCommune": "22084", + "libelleAcheminement": "JUGON LES LACS COMMUNE NOUVELLE", + "nomCommune": "JUGON LES LACS COMMUNE NOUVELLE" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "74100", + "codeCommune": "74012", + "libelleAcheminement": "ANNEMASSE", + "nomCommune": "ANNEMASSE" }, { - "codePostal": "71380", - "codeCommune": "71004", - "libelleAcheminement": "ALLERIOT", - "nomCommune": "ALLERIOT" + "codePostal": "62890", + "codeCommune": "62155", + "libelleAcheminement": "BONNINGUES LES ARDRES", + "nomCommune": "BONNINGUES LES ARDRES" }, { - "codePostal": "71120", - "codeCommune": "71562", - "libelleAcheminement": "VAUDEBARRIER", - "nomCommune": "VAUDEBARRIER" + "codePostal": "63210", + "codeCommune": "63248", + "libelleAcheminement": "NEBOUZAT", + "nomCommune": "NEBOUZAT" }, { - "codePostal": "47290", - "codeCommune": "47033", - "libelleAcheminement": "BOUDY DE BEAUREGARD", - "nomCommune": "BOUDY DE BEAUREGARD" + "codePostal": "73600", + "codeCommune": "73284", + "libelleAcheminement": "SALINS FONTAINE", + "nomCommune": "SALINS FONTAINE" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "22610", + "codeCommune": "22085", + "libelleAcheminement": "KERBORS", + "nomCommune": "KERBORS" }, { - "codePostal": "71460", - "codeCommune": "71007", - "libelleAcheminement": "AMEUGNY", - "nomCommune": "AMEUGNY" + "codePostal": "74300", + "codeCommune": "74014", + "libelleAcheminement": "ARACHES LA FRASSE", + "nomCommune": "ARACHES LA FRASSE" }, { - "codePostal": "71350", - "codeCommune": "71566", - "libelleAcheminement": "VERDUN SUR LE DOUBS", - "nomCommune": "VERDUN SUR LE DOUBS" + "codePostal": "62270", + "codeCommune": "62163", + "libelleAcheminement": "BOURET SUR CANCHE", + "nomCommune": "BOURET SUR CANCHE" }, { - "codePostal": "47370", - "codeCommune": "47036", - "libelleAcheminement": "BOURLENS", - "nomCommune": "BOURLENS" + "codePostal": "63120", + "codeCommune": "63249", + "libelleAcheminement": "NERONDE SUR DORE", + "nomCommune": "NERONDE SUR DORE" }, { - "codePostal": "14500", - "codeCommune": "14762", - "libelleAcheminement": "VIRE NORMANDIE", - "nomCommune": "VIRE NORMANDIE" + "codePostal": "73000", + "codeCommune": "73288", + "libelleAcheminement": "SONNAZ", + "nomCommune": "SONNAZ" }, { - "codePostal": "71170", - "codeCommune": "71008", - "libelleAcheminement": "ANGLURE SOUS DUN", - "nomCommune": "ANGLURE SOUS DUN" + "codePostal": "22450", + "codeCommune": "22101", + "libelleAcheminement": "LANGOAT", + "nomCommune": "LANGOAT" }, { - "codePostal": "71250", - "codeCommune": "71582", - "libelleAcheminement": "LA VINEUSE SUR FREGANDE", - "nomCommune": "LA VINEUSE SUR FREGANDE" + "codePostal": "74370", + "codeCommune": "74019", + "libelleAcheminement": "ARGONAY", + "nomCommune": "ARGONAY" }, { - "codePostal": "47330", - "codeCommune": "47044", - "libelleAcheminement": "CAHUZAC", - "nomCommune": "CAHUZAC" + "codePostal": "62860", + "codeCommune": "62164", + "libelleAcheminement": "BOURLON", + "nomCommune": "BOURLON" }, { - "codePostal": "15100", - "codeCommune": "15005", - "libelleAcheminement": "ANGLARDS DE ST FLOUR", - "nomCommune": "ANGLARDS DE ST FLOUR" + "codePostal": "63830", + "codeCommune": "63254", + "libelleAcheminement": "NOHANENT", + "nomCommune": "NOHANENT" }, { - "codePostal": "71550", - "codeCommune": "71009", - "libelleAcheminement": "ANOST", - "nomCommune": "ANOST" + "codePostal": "73320", + "codeCommune": "73296", + "libelleAcheminement": "TIGNES", + "nomCommune": "TIGNES" }, { - "codePostal": "71140", - "codeCommune": "71589", - "libelleAcheminement": "VITRY SUR LOIRE", - "nomCommune": "VITRY SUR LOIRE" + "codePostal": "22360", + "codeCommune": "22106", + "libelleAcheminement": "LANGUEUX", + "nomCommune": "LANGUEUX" }, { - "codePostal": "47600", - "codeCommune": "47045", - "libelleAcheminement": "CALIGNAC", - "nomCommune": "CALIGNAC" + "codePostal": "74160", + "codeCommune": "74031", + "libelleAcheminement": "BEAUMONT", + "nomCommune": "BEAUMONT" }, { - "codePostal": "15240", - "codeCommune": "15008", - "libelleAcheminement": "ANTIGNAC", - "nomCommune": "ANTIGNAC" + "codePostal": "62650", + "codeCommune": "62168", + "libelleAcheminement": "BOURTHES", + "nomCommune": "BOURTHES" }, { - "codePostal": "71270", - "codeCommune": "71013", - "libelleAcheminement": "AUTHUMES", - "nomCommune": "AUTHUMES" + "codePostal": "63670", + "codeCommune": "63262", + "libelleAcheminement": "ORCET", + "nomCommune": "ORCET" }, { - "codePostal": "72540", - "codeCommune": "72004", - "libelleAcheminement": "AMNE", - "nomCommune": "AMNE" + "codePostal": "73100", + "codeCommune": "73301", + "libelleAcheminement": "TREVIGNIN", + "nomCommune": "TREVIGNIN" }, { - "codePostal": "47240", - "codeCommune": "47051", - "libelleAcheminement": "CASTELCULIER", - "nomCommune": "CASTELCULIER" + "codePostal": "22250", + "codeCommune": "22114", + "libelleAcheminement": "LANRELAS", + "nomCommune": "LANRELAS" }, { - "codePostal": "15250", - "codeCommune": "15016", - "libelleAcheminement": "AYRENS", - "nomCommune": "AYRENS" + "codePostal": "74130", + "codeCommune": "74042", + "libelleAcheminement": "BONNEVILLE", + "nomCommune": "BONNEVILLE" }, { - "codePostal": "71260", - "codeCommune": "71016", - "libelleAcheminement": "AZE", - "nomCommune": "AZE" + "codePostal": "62610", + "codeCommune": "62174", + "libelleAcheminement": "BREMES", + "nomCommune": "BREMES" }, { - "codePostal": "72610", - "codeCommune": "72005", - "libelleAcheminement": "ANCINNES", - "nomCommune": "ANCINNES" + "codePostal": "63380", + "codeCommune": "63283", + "libelleAcheminement": "PONTAUMUR", + "nomCommune": "PONTAUMUR" }, { - "codePostal": "47330", - "codeCommune": "47057", - "libelleAcheminement": "CASTILLONNES", - "nomCommune": "CASTILLONNES" + "codePostal": "73450", + "codeCommune": "73306", + "libelleAcheminement": "VALLOIRE", + "nomCommune": "VALLOIRE" }, { - "codePostal": "15800", - "codeCommune": "15017", - "libelleAcheminement": "BADAILHAC", - "nomCommune": "BADAILHAC" + "codePostal": "22100", + "codeCommune": "22118", + "libelleAcheminement": "LANVALLAY", + "nomCommune": "LANVALLAY" }, { - "codePostal": "71220", - "codeCommune": "71017", - "libelleAcheminement": "BALLORE", - "nomCommune": "BALLORE" + "codePostal": "74230", + "codeCommune": "74045", + "libelleAcheminement": "LE BOUCHET MONT CHARVIN", + "nomCommune": "LE BOUCHET" }, { - "codePostal": "72370", - "codeCommune": "72007", - "libelleAcheminement": "ARDENAY SUR MERIZE", - "nomCommune": "ARDENAY SUR MERIZE" + "codePostal": "62128", + "codeCommune": "62185", + "libelleAcheminement": "BULLECOURT", + "nomCommune": "BULLECOURT" }, { - "codePostal": "47330", - "codeCommune": "47063", - "libelleAcheminement": "CAVARC", - "nomCommune": "CAVARC" + "codePostal": "63230", + "codeCommune": "63285", + "libelleAcheminement": "PONTGIBAUD", + "nomCommune": "PONTGIBAUD" }, { - "codePostal": "15340", - "codeCommune": "15027", - "libelleAcheminement": "PUYCAPEL", - "nomCommune": "PUYCAPEL" + "codePostal": "73110", + "codeCommune": "73316", + "libelleAcheminement": "VILLARD SALLET", + "nomCommune": "VILLARD SALLET" }, { - "codePostal": "71500", - "codeCommune": "71018", - "libelleAcheminement": "BANTANGES", - "nomCommune": "BANTANGES" + "codePostal": "22570", + "codeCommune": "22124", + "libelleAcheminement": "LESCOUET GOUAREC", + "nomCommune": "LESCOUET GOUAREC" }, { - "codePostal": "72270", - "codeCommune": "72009", - "libelleAcheminement": "ARTHEZE", - "nomCommune": "ARTHEZE" + "codePostal": "74150", + "codeCommune": "74046", + "libelleAcheminement": "BOUSSY", + "nomCommune": "BOUSSY" }, { - "codePostal": "47130", - "codeCommune": "47066", - "libelleAcheminement": "CLERMONT DESSOUS", - "nomCommune": "CLERMONT DESSOUS" + "codePostal": "62100", + "codeCommune": "62193", + "libelleAcheminement": "CALAIS", + "nomCommune": "CALAIS" }, { - "codePostal": "15130", - "codeCommune": "15028", - "libelleAcheminement": "CARLAT", - "nomCommune": "CARLAT" + "codePostal": "63500", + "codeCommune": "63287", + "libelleAcheminement": "LES PRADEAUX", + "nomCommune": "LES PRADEAUX" }, { - "codePostal": "71390", - "codeCommune": "71034", - "libelleAcheminement": "BISSEY SOUS CRUCHAUD", - "nomCommune": "BISSEY SOUS CRUCHAUD" + "codePostal": "73300", + "codeCommune": "73318", + "libelleAcheminement": "VILLAREMBERT", + "nomCommune": "VILLAREMBERT" }, { - "codePostal": "72170", - "codeCommune": "72012", - "libelleAcheminement": "ASSE LE RIBOUL", - "nomCommune": "ASSE LE RIBOUL" + "codePostal": "22740", + "codeCommune": "22127", + "libelleAcheminement": "LEZARDRIEUX", + "nomCommune": "LEZARDRIEUX" }, { - "codePostal": "47360", - "codeCommune": "47073", - "libelleAcheminement": "COURS", - "nomCommune": "COURS" + "codePostal": "74910", + "codeCommune": "74055", + "libelleAcheminement": "CHALLONGES", + "nomCommune": "CHALLONGES" }, { - "codePostal": "15110", - "codeCommune": "15045", - "libelleAcheminement": "CHAUDES AIGUES", - "nomCommune": "CHAUDES AIGUES" + "codePostal": "62149", + "codeCommune": "62200", + "libelleAcheminement": "CAMBRIN", + "nomCommune": "CAMBRIN" }, { - "codePostal": "71250", - "codeCommune": "71039", - "libelleAcheminement": "BLANOT", - "nomCommune": "BLANOT" + "codePostal": "63420", + "codeCommune": "63299", + "libelleAcheminement": "RENTIERES", + "nomCommune": "RENTIERES" }, { - "codePostal": "72600", - "codeCommune": "72015", - "libelleAcheminement": "LES AULNEAUX", - "nomCommune": "LES AULNEAUX" + "codePostal": "73110", + "codeCommune": "73324", + "libelleAcheminement": "VILLAROUX", + "nomCommune": "VILLAROUX" }, { - "codePostal": "47220", - "codeCommune": "47076", - "libelleAcheminement": "CUQ", - "nomCommune": "CUQ" + "codePostal": "22740", + "codeCommune": "22127", + "libelleAcheminement": "LEZARDRIEUX", + "nomCommune": "LEZARDRIEUX" + }, + { + "codePostal": "74410", + "codeCommune": "74060", + "libelleAcheminement": "LA CHAPELLE ST MAURICE", + "nomCommune": "LA CHAPELLE ST MAURICE" }, { - "codePostal": "15400", - "codeCommune": "15049", - "libelleAcheminement": "CHEYLADE", - "nomCommune": "CHEYLADE" + "codePostal": "62870", + "codeCommune": "62204", + "libelleAcheminement": "CAMPAGNE LES HESDIN", + "nomCommune": "CAMPAGNE LES HESDIN" }, { - "codePostal": "71460", - "codeCommune": "71042", - "libelleAcheminement": "BONNAY", - "nomCommune": "BONNAY" + "codePostal": "63330", + "codeCommune": "63304", + "libelleAcheminement": "ROCHE D AGOUX", + "nomCommune": "ROCHE D AGOUX" }, { - "codePostal": "72430", - "codeCommune": "72021", - "libelleAcheminement": "AVOISE", - "nomCommune": "AVOISE" + "codePostal": "74800", + "codeCommune": "74007", + "libelleAcheminement": "AMANCY", + "nomCommune": "AMANCY" }, { - "codePostal": "47160", - "codeCommune": "47078", - "libelleAcheminement": "DAMAZAN", - "nomCommune": "DAMAZAN" + "codePostal": "22340", + "codeCommune": "22128", + "libelleAcheminement": "LOCARN", + "nomCommune": "LOCARN" }, { - "codePostal": "15320", - "codeCommune": "15051", - "libelleAcheminement": "CLAVIERES", - "nomCommune": "CLAVIERES" + "codePostal": "74500", + "codeCommune": "74073", + "libelleAcheminement": "CHEVENOZ", + "nomCommune": "CHEVENOZ" }, { - "codePostal": "71250", - "codeCommune": "71057", - "libelleAcheminement": "BRAY", - "nomCommune": "BRAY" + "codePostal": "62120", + "codeCommune": "62205", + "libelleAcheminement": "CAMPAGNE LES WARDRECQUES", + "nomCommune": "CAMPAGNE LES WARDRECQUES" }, { - "codePostal": "72310", - "codeCommune": "72035", - "libelleAcheminement": "BESSE SUR BRAYE", - "nomCommune": "BESSE SUR BRAYE" + "codePostal": "63540", + "codeCommune": "63307", + "libelleAcheminement": "ROMAGNAT", + "nomCommune": "ROMAGNAT" }, { - "codePostal": "47140", - "codeCommune": "47079", - "libelleAcheminement": "DAUSSE", - "nomCommune": "DAUSSE" + "codePostal": "74000", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "15190", - "codeCommune": "15054", - "libelleAcheminement": "CONDAT", - "nomCommune": "CONDAT" + "codePostal": "22780", + "codeCommune": "22131", + "libelleAcheminement": "LOGUIVY PLOUGRAS", + "nomCommune": "LOGUIVY PLOUGRAS" }, { - "codePostal": "71110", - "codeCommune": "71060", - "libelleAcheminement": "BRIANT", - "nomCommune": "BRIANT" + "codePostal": "74520", + "codeCommune": "74074", + "libelleAcheminement": "CHEVRIER", + "nomCommune": "CHEVRIER" }, { - "codePostal": "72610", - "codeCommune": "72036", - "libelleAcheminement": "BETHON", - "nomCommune": "BETHON" + "codePostal": "62170", + "codeCommune": "62207", + "libelleAcheminement": "CAMPIGNEULLES LES PETITES", + "nomCommune": "CAMPIGNEULLES LES PETITES" }, { - "codePostal": "47210", - "codeCommune": "47083", - "libelleAcheminement": "DOUDRAC", - "nomCommune": "DOUDRAC" + "codePostal": "63840", + "codeCommune": "63309", + "libelleAcheminement": "SAILLANT", + "nomCommune": "SAILLANT" }, { - "codePostal": "15250", - "codeCommune": "15056", - "libelleAcheminement": "CRANDELLES", - "nomCommune": "CRANDELLES" + "codePostal": "74600", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "71190", - "codeCommune": "71062", - "libelleAcheminement": "BRION", - "nomCommune": "BRION" + "codePostal": "22160", + "codeCommune": "22132", + "libelleAcheminement": "LOHUEC", + "nomCommune": "LOHUEC" }, { - "codePostal": "72400", - "codeCommune": "72038", - "libelleAcheminement": "BOESSE LE SEC", - "nomCommune": "BOESSE LE SEC" + "codePostal": "74230", + "codeCommune": "74079", + "libelleAcheminement": "LES CLEFS", + "nomCommune": "LES CLEFS" }, { - "codePostal": "47420", - "codeCommune": "47085", - "libelleAcheminement": "DURANCE", - "nomCommune": "DURANCE" + "codePostal": "62220", + "codeCommune": "62215", + "libelleAcheminement": "CARVIN", + "nomCommune": "CARVIN" }, { - "codePostal": "15140", - "codeCommune": "15070", - "libelleAcheminement": "FONTANGES", - "nomCommune": "FONTANGES" + "codePostal": "63120", + "codeCommune": "63310", + "libelleAcheminement": "STE AGATHE", + "nomCommune": "STE AGATHE" }, { - "codePostal": "71460", - "codeCommune": "71080", - "libelleAcheminement": "CHAMPAGNY SOUS UXELLES", - "nomCommune": "CHAMPAGNY SOUS UXELLES" + "codePostal": "74940", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "72110", - "codeCommune": "72048", - "libelleAcheminement": "BRIOSNE LES SABLES", - "nomCommune": "BRIOSNE LES SABLES" + "codePostal": "22160", + "codeCommune": "22138", + "libelleAcheminement": "MAEL PESTIVIEN", + "nomCommune": "MAEL PESTIVIEN" }, { - "codePostal": "47470", - "codeCommune": "47087", - "libelleAcheminement": "ENGAYRAC", - "nomCommune": "ENGAYRAC" + "codePostal": "74160", + "codeCommune": "74082", + "libelleAcheminement": "COLLONGES SOUS SALEVE", + "nomCommune": "COLLONGES SOUS SALEVE" }, { - "codePostal": "15130", - "codeCommune": "15074", - "libelleAcheminement": "GIOU DE MAMOU", - "nomCommune": "GIOU DE MAMOU" + "codePostal": "62140", + "codeCommune": "62219", + "libelleAcheminement": "CAUMONT", + "nomCommune": "CAUMONT" }, { - "codePostal": "71570", - "codeCommune": "71084", - "libelleAcheminement": "CHANES", - "nomCommune": "CHANES" + "codePostal": "63380", + "codeCommune": "63320", + "libelleAcheminement": "ST AVIT", + "nomCommune": "ST AVIT" }, { - "codePostal": "72500", - "codeCommune": "72049", - "libelleAcheminement": "LA BRUERE SUR LOIR", - "nomCommune": "LA BRUERE SUR LOIR" + "codePostal": "74300", + "codeCommune": "74014", + "libelleAcheminement": "ARACHES LA FRASSE", + "nomCommune": "ARACHES LA FRASSE" }, { - "codePostal": "47350", - "codeCommune": "47088", - "libelleAcheminement": "ESCASSEFORT", - "nomCommune": "ESCASSEFORT" + "codePostal": "22110", + "codeCommune": "22146", + "libelleAcheminement": "MELLIONNEC", + "nomCommune": "MELLIONNEC" }, { - "codePostal": "15110", - "codeCommune": "15078", - "libelleAcheminement": "JABRUN", - "nomCommune": "JABRUN" + "codePostal": "74920", + "codeCommune": "74083", + "libelleAcheminement": "COMBLOUX", + "nomCommune": "COMBLOUX" }, { - "codePostal": "71570", - "codeCommune": "71090", - "libelleAcheminement": "LA CHAPELLE DE GUINCHAY", - "nomCommune": "LA CHAPELLE DE GUINCHAY" + "codePostal": "62128", + "codeCommune": "62223", + "libelleAcheminement": "CHERISY", + "nomCommune": "CHERISY" }, { - "codePostal": "72610", - "codeCommune": "72056", - "libelleAcheminement": "CHAMPFLEUR", - "nomCommune": "CHAMPFLEUR" + "codePostal": "63630", + "codeCommune": "63323", + "libelleAcheminement": "ST BONNET LE BOURG", + "nomCommune": "ST BONNET LE BOURG" }, { - "codePostal": "47120", - "codeCommune": "47089", - "libelleAcheminement": "ESCLOTTES", - "nomCommune": "ESCLOTTES" + "codePostal": "74930", + "codeCommune": "74015", + "libelleAcheminement": "ARBUSIGNY", + "nomCommune": "ARBUSIGNY" }, { - "codePostal": "15200", - "codeCommune": "15079", - "libelleAcheminement": "JALEYRAC", - "nomCommune": "JALEYRAC" + "codePostal": "22460", + "codeCommune": "22149", + "libelleAcheminement": "MERLEAC", + "nomCommune": "MERLEAC" }, { - "codePostal": "71500", - "codeCommune": "71092", - "libelleAcheminement": "LA CHAPELLE NAUDE", - "nomCommune": "LA CHAPELLE NAUDE" + "codePostal": "74170", + "codeCommune": "74085", + "libelleAcheminement": "LES CONTAMINES MONTJOIE", + "nomCommune": "LES CONTAMINES MONTJOIE" }, { - "codePostal": "72560", - "codeCommune": "72058", - "libelleAcheminement": "CHANGE", - "nomCommune": "CHANGE" + "codePostal": "62920", + "codeCommune": "62224", + "libelleAcheminement": "CHOCQUES", + "nomCommune": "CHOCQUES" }, { - "codePostal": "47400", - "codeCommune": "47094", - "libelleAcheminement": "FAUGUEROLLES", - "nomCommune": "FAUGUEROLLES" + "codePostal": "63800", + "codeCommune": "63325", + "libelleAcheminement": "ST BONNET LES ALLIER", + "nomCommune": "ST BONNET LES ALLIER" }, { - "codePostal": "15170", - "codeCommune": "15080", - "libelleAcheminement": "JOURSAC", - "nomCommune": "JOURSAC" + "codePostal": "74230", + "codeCommune": "74027", + "libelleAcheminement": "LA BALME DE THUY", + "nomCommune": "LA BALME DE THUY" }, { - "codePostal": "71470", - "codeCommune": "71097", - "libelleAcheminement": "LA CHAPELLE THECLE", - "nomCommune": "LA CHAPELLE THECLE" + "codePostal": "22530", + "codeCommune": "22158", + "libelleAcheminement": "GUERLEDAN", + "nomCommune": "GUERLEDAN" }, { - "codePostal": "72300", - "codeCommune": "72061", - "libelleAcheminement": "LA CHAPELLE D ALIGNE", - "nomCommune": "LA CHAPELLE D ALIGNE" + "codePostal": "74270", + "codeCommune": "74086", + "libelleAcheminement": "CONTAMINE SARZIN", + "nomCommune": "CONTAMINE SARZIN" }, { - "codePostal": "47330", - "codeCommune": "47096", - "libelleAcheminement": "FERRENSAC", - "nomCommune": "FERRENSAC" + "codePostal": "62650", + "codeCommune": "62227", + "libelleAcheminement": "CLENLEU", + "nomCommune": "CLENLEU" }, { - "codePostal": "15120", - "codeCommune": "15082", - "libelleAcheminement": "JUNHAC", - "nomCommune": "JUNHAC" + "codePostal": "63890", + "codeCommune": "63337", + "libelleAcheminement": "ST ELOY LA GLACIERE", + "nomCommune": "ST ELOY LA GLACIERE" }, { - "codePostal": "71320", - "codeCommune": "71098", - "libelleAcheminement": "CHARBONNAT", - "nomCommune": "CHARBONNAT" + "codePostal": "74380", + "codeCommune": "74040", + "libelleAcheminement": "BONNE", + "nomCommune": "BONNE" }, { - "codePostal": "72500", - "codeCommune": "72071", - "libelleAcheminement": "MONTVAL SUR LOIR", - "nomCommune": "MONTVAL SUR LOIR" + "codePostal": "22540", + "codeCommune": "22164", + "libelleAcheminement": "PEDERNEC", + "nomCommune": "PEDERNEC" }, { - "codePostal": "47510", - "codeCommune": "47100", - "libelleAcheminement": "FOULAYRONNES", - "nomCommune": "FOULAYRONNES" + "codePostal": "74110", + "codeCommune": "74091", + "libelleAcheminement": "LA COTE D ARBROZ", + "nomCommune": "LA COTE D ARBROZ" }, { - "codePostal": "15120", - "codeCommune": "15087", - "libelleAcheminement": "LACAPELLE DEL FRAISSE", - "nomCommune": "LACAPELLE DEL FRAISSE" + "codePostal": "62126", + "codeCommune": "62237", + "libelleAcheminement": "CONTEVILLE LES BOULOGNE", + "nomCommune": "CONTEVILLE LES BOULOGNE" }, { - "codePostal": "71700", - "codeCommune": "71100", - "libelleAcheminement": "CHARDONNAY", - "nomCommune": "CHARDONNAY" + "codePostal": "63320", + "codeCommune": "63342", + "libelleAcheminement": "ST FLORET", + "nomCommune": "ST FLORET" }, { - "codePostal": "72550", - "codeCommune": "72073", - "libelleAcheminement": "CHAUFOUR NOTRE DAME", - "nomCommune": "CHAUFOUR NOTRE DAME" + "codePostal": "74890", + "codeCommune": "74048", + "libelleAcheminement": "BRENTHONNE", + "nomCommune": "BRENTHONNE" }, { - "codePostal": "47140", - "codeCommune": "47105", - "libelleAcheminement": "FRESPECH", - "nomCommune": "FRESPECH" + "codePostal": "22700", + "codeCommune": "22168", + "libelleAcheminement": "PERROS GUIREC", + "nomCommune": "PERROS GUIREC" }, { - "codePostal": "15150", - "codeCommune": "15088", - "libelleAcheminement": "LACAPELLE VIESCAMP", - "nomCommune": "LACAPELLE VIESCAMP" + "codePostal": "74350", + "codeCommune": "74096", + "libelleAcheminement": "CRUSEILLES", + "nomCommune": "CRUSEILLES" }, { - "codePostal": "71100", - "codeCommune": "71102", - "libelleAcheminement": "LA CHARMEE", - "nomCommune": "LA CHARMEE" + "codePostal": "62760", + "codeCommune": "62242", + "libelleAcheminement": "COUIN", + "nomCommune": "COUIN" }, { - "codePostal": "72610", - "codeCommune": "72079", - "libelleAcheminement": "CHERISAY", - "nomCommune": "CHERISAY" + "codePostal": "63122", + "codeCommune": "63345", + "libelleAcheminement": "ST GENES CHAMPANELLE", + "nomCommune": "ST GENES CHAMPANELLE" }, { - "codePostal": "47270", - "codeCommune": "47113", - "libelleAcheminement": "GRAYSSAS", - "nomCommune": "GRAYSSAS" + "codePostal": "74550", + "codeCommune": "74053", + "libelleAcheminement": "CERVENS", + "nomCommune": "CERVENS" }, { - "codePostal": "15160", - "codeCommune": "15091", - "libelleAcheminement": "LANDEYRAT", - "nomCommune": "LANDEYRAT" + "codePostal": "22940", + "codeCommune": "22171", + "libelleAcheminement": "PLAINTEL", + "nomCommune": "PLAINTEL" }, { - "codePostal": "71710", - "codeCommune": "71103", - "libelleAcheminement": "CHARMOY", - "nomCommune": "CHARMOY" + "codePostal": "74230", + "codeCommune": "74102", + "libelleAcheminement": "DINGY ST CLAIR", + "nomCommune": "DINGY ST CLAIR" }, { - "codePostal": "72400", - "codeCommune": "72080", - "libelleAcheminement": "CHERRE AU", - "nomCommune": "CHERRE AU" + "codePostal": "62158", + "codeCommune": "62243", + "libelleAcheminement": "COULLEMONT", + "nomCommune": "COULLEMONT" }, { - "codePostal": "47420", - "codeCommune": "47119", - "libelleAcheminement": "HOUEILLES", - "nomCommune": "HOUEILLES" + "codePostal": "63122", + "codeCommune": "63345", + "libelleAcheminement": "ST GENES CHAMPANELLE", + "nomCommune": "ST GENES CHAMPANELLE" }, { - "codePostal": "15500", - "codeCommune": "15097", - "libelleAcheminement": "LASTIC", - "nomCommune": "LASTIC" + "codePostal": "74500", + "codeCommune": "74057", + "libelleAcheminement": "CHAMPANGES", + "nomCommune": "CHAMPANGES" }, { - "codePostal": "71800", - "codeCommune": "71116", - "libelleAcheminement": "CHATENAY", - "nomCommune": "CHATENAY" + "codePostal": "22960", + "codeCommune": "22176", + "libelleAcheminement": "PLEDRAN", + "nomCommune": "PLEDRAN" }, { - "codePostal": "72600", - "codeCommune": "72091", - "libelleAcheminement": "CONTILLY", - "nomCommune": "CONTILLY" + "codePostal": "74550", + "codeCommune": "74106", + "libelleAcheminement": "DRAILLANT", + "nomCommune": "DRAILLANT" }, { - "codePostal": "47250", - "codeCommune": "47121", - "libelleAcheminement": "LABASTIDE CASTEL AMOUROUX", - "nomCommune": "LABASTIDE CASTEL AMOUROUX" + "codePostal": "62136", + "codeCommune": "62252", + "libelleAcheminement": "LA COUTURE", + "nomCommune": "LA COUTURE" }, { - "codePostal": "15300", - "codeCommune": "15101", - "libelleAcheminement": "LAVEISSIERE", - "nomCommune": "LAVEISSIERE" + "codePostal": "63122", + "codeCommune": "63345", + "libelleAcheminement": "ST GENES CHAMPANELLE", + "nomCommune": "ST GENES CHAMPANELLE" }, { - "codePostal": "71250", - "codeCommune": "71125", - "libelleAcheminement": "CHERIZET", - "nomCommune": "CHERIZET" + "codePostal": "74540", + "codeCommune": "74061", + "libelleAcheminement": "CHAPEIRY", + "nomCommune": "CHAPEIRY" }, { - "codePostal": "72290", - "codeCommune": "72099", - "libelleAcheminement": "COURCEBOEUFS", - "nomCommune": "COURCEBOEUFS" + "codePostal": "22170", + "codeCommune": "22182", + "libelleAcheminement": "PLELO", + "nomCommune": "PLELO" }, { - "codePostal": "47150", - "codeCommune": "47124", - "libelleAcheminement": "LACAUSSADE", - "nomCommune": "LACAUSSADE" + "codePostal": "74270", + "codeCommune": "74107", + "libelleAcheminement": "DROISY", + "nomCommune": "DROISY" }, { - "codePostal": "15320", - "codeCommune": "15108", - "libelleAcheminement": "VAL D ARCOMIE", - "nomCommune": "VAL D ARCOMIE" + "codePostal": "62158", + "codeCommune": "62253", + "libelleAcheminement": "COUTURELLE", + "nomCommune": "COUTURELLE" }, { - "codePostal": "71220", - "codeCommune": "71128", - "libelleAcheminement": "CHIDDES", - "nomCommune": "CHIDDES" + "codePostal": "63630", + "codeCommune": "63353", + "libelleAcheminement": "ST GERMAIN L HERM", + "nomCommune": "ST GERMAIN L HERM" }, { - "codePostal": "72270", - "codeCommune": "72100", - "libelleAcheminement": "COURCELLES LA FORET", - "nomCommune": "COURCELLES LA FORET" + "codePostal": "74390", + "codeCommune": "74063", + "libelleAcheminement": "CHATEL", + "nomCommune": "CHATEL" }, { - "codePostal": "47180", - "codeCommune": "47131", - "libelleAcheminement": "LAGUPIE", - "nomCommune": "LAGUPIE" + "codePostal": "22490", + "codeCommune": "22190", + "libelleAcheminement": "PLESLIN TRIGAVOU", + "nomCommune": "PLESLIN TRIGAVOU" }, { - "codePostal": "15220", - "codeCommune": "15117", - "libelleAcheminement": "MARCOLES", - "nomCommune": "MARCOLES" + "codePostal": "74410", + "codeCommune": "74111", + "libelleAcheminement": "ENTREVERNES", + "nomCommune": "ENTREVERNES" }, { - "codePostal": "71540", - "codeCommune": "71129", - "libelleAcheminement": "CHISSEY EN MORVAN", - "nomCommune": "CHISSEY EN MORVAN" + "codePostal": "62310", + "codeCommune": "62256", + "libelleAcheminement": "CREPY", + "nomCommune": "CREPY" }, { - "codePostal": "72110", - "codeCommune": "72101", - "libelleAcheminement": "COURCEMONT", - "nomCommune": "COURCEMONT" + "codePostal": "63440", + "codeCommune": "63358", + "libelleAcheminement": "ST HILAIRE LA CROIX", + "nomCommune": "ST HILAIRE LA CROIX" }, { - "codePostal": "47170", - "codeCommune": "47134", - "libelleAcheminement": "LANNES", - "nomCommune": "LANNES" + "codePostal": "74270", + "codeCommune": "74065", + "libelleAcheminement": "CHAUMONT", + "nomCommune": "CHAUMONT" }, { - "codePostal": "15200", - "codeCommune": "15123", - "libelleAcheminement": "MEALLET", - "nomCommune": "MEALLET" + "codePostal": "22490", + "codeCommune": "22190", + "libelleAcheminement": "PLESLIN TRIGAVOU", + "nomCommune": "PLESLIN TRIGAVOU" }, { - "codePostal": "71460", - "codeCommune": "71130", - "libelleAcheminement": "CHISSEY LES MACON", - "nomCommune": "CHISSEY LES MACON" + "codePostal": "74330", + "codeCommune": "74112", + "libelleAcheminement": "EPAGNY METZ TESSY", + "nomCommune": "EPAGNY METZ TESSY" }, { - "codePostal": "72300", - "codeCommune": "72106", - "libelleAcheminement": "COURTILLERS", - "nomCommune": "COURTILLERS" + "codePostal": "62780", + "codeCommune": "62261", + "libelleAcheminement": "CUCQ", + "nomCommune": "CUCQ" }, { - "codePostal": "47800", - "codeCommune": "47136", - "libelleAcheminement": "LAPERCHE", - "nomCommune": "LAPERCHE" + "codePostal": "63610", + "codeCommune": "63383", + "libelleAcheminement": "ST PIERRE COLAMINE", + "nomCommune": "ST PIERRE COLAMINE" }, { - "codePostal": "15400", - "codeCommune": "15124", - "libelleAcheminement": "MENET", - "nomCommune": "MENET" + "codePostal": "74140", + "codeCommune": "74070", + "libelleAcheminement": "CHENS SUR LEMAN", + "nomCommune": "CHENS SUR LEMAN" }, { - "codePostal": "71350", - "codeCommune": "71131", - "libelleAcheminement": "CIEL", - "nomCommune": "CIEL" + "codePostal": "22740", + "codeCommune": "22196", + "libelleAcheminement": "PLEUDANIEL", + "nomCommune": "PLEUDANIEL" }, { - "codePostal": "72540", - "codeCommune": "72107", - "libelleAcheminement": "CRANNES EN CHAMPAGNE", - "nomCommune": "CRANNES EN CHAMPAGNE" + "codePostal": "74210", + "codeCommune": "74123", + "libelleAcheminement": "FAVERGES SEYTHENEX", + "nomCommune": "FAVERGES SEYTHENEX" }, { - "codePostal": "47800", - "codeCommune": "47144", - "libelleAcheminement": "LAVERGNE", - "nomCommune": "LAVERGNE" + "codePostal": "62780", + "codeCommune": "62261", + "libelleAcheminement": "CUCQ", + "nomCommune": "CUCQ" }, { - "codePostal": "15240", - "codeCommune": "15128", - "libelleAcheminement": "LA MONSELIE", - "nomCommune": "LA MONSELIE" + "codePostal": "63480", + "codeCommune": "63384", + "libelleAcheminement": "ST PIERRE LA BOURLHONNE", + "nomCommune": "ST PIERRE LA BOURLHONNE" }, { - "codePostal": "71260", - "codeCommune": "71135", - "libelleAcheminement": "CLESSE", - "nomCommune": "CLESSE" + "codePostal": "74270", + "codeCommune": "74071", + "libelleAcheminement": "CHESSENAZ", + "nomCommune": "CHESSENAZ" }, { - "codePostal": "72200", - "codeCommune": "72110", - "libelleAcheminement": "CROSMIERES", - "nomCommune": "CROSMIERES" + "codePostal": "22150", + "codeCommune": "22203", + "libelleAcheminement": "PLOEUC L HERMITAGE", + "nomCommune": "PLOEUC L HERMITAGE" }, { - "codePostal": "47300", - "codeCommune": "47146", - "libelleAcheminement": "LEDAT", - "nomCommune": "LEDAT" + "codePostal": "74240", + "codeCommune": "74133", + "libelleAcheminement": "GAILLARD", + "nomCommune": "GAILLARD" }, { - "codePostal": "15190", - "codeCommune": "15129", - "libelleAcheminement": "MONTBOUDIF", - "nomCommune": "MONTBOUDIF" + "codePostal": "62129", + "codeCommune": "62265", + "libelleAcheminement": "DELETTES", + "nomCommune": "DELETTES" }, { - "codePostal": "71460", - "codeCommune": "71139", - "libelleAcheminement": "COLLONGE EN CHAROLLAIS", - "nomCommune": "COLLONGE EN CHAROLLAIS" + "codePostal": "63230", + "codeCommune": "63385", + "libelleAcheminement": "ST PIERRE LE CHASTEL", + "nomCommune": "ST PIERRE LE CHASTEL" }, { - "codePostal": "72240", - "codeCommune": "72119", - "libelleAcheminement": "DOMFRONT EN CHAMPAGNE", - "nomCommune": "DOMFRONT EN CHAMPAGNE" + "codePostal": "74270", + "codeCommune": "74078", + "libelleAcheminement": "CLERMONT", + "nomCommune": "CLERMONT" }, { - "codePostal": "47370", - "codeCommune": "47160", - "libelleAcheminement": "MASQUIERES", - "nomCommune": "MASQUIERES" + "codePostal": "22260", + "codeCommune": "22204", + "libelleAcheminement": "PLOEZAL", + "nomCommune": "PLOEZAL" }, { - "codePostal": "15190", - "codeCommune": "15132", - "libelleAcheminement": "MONTGRELEIX", - "nomCommune": "MONTGRELEIX" + "codePostal": "74420", + "codeCommune": "74140", + "libelleAcheminement": "HABERE POCHE", + "nomCommune": "HABERE POCHE" }, { - "codePostal": "71360", - "codeCommune": "71140", - "libelleAcheminement": "COLLONGE LA MADELEINE", - "nomCommune": "COLLONGE LA MADELEINE" + "codePostal": "62460", + "codeCommune": "62270", + "libelleAcheminement": "DIVION", + "nomCommune": "DIVION" }, { - "codePostal": "72120", - "codeCommune": "72125", - "libelleAcheminement": "ECORPAIN", - "nomCommune": "ECORPAIN" + "codePostal": "63210", + "codeCommune": "63386", + "libelleAcheminement": "ST PIERRE ROCHE", + "nomCommune": "ST PIERRE ROCHE" }, { - "codePostal": "47290", - "codeCommune": "47170", - "libelleAcheminement": "MONBAHUS", - "nomCommune": "MONBAHUS" + "codePostal": "74130", + "codeCommune": "74087", + "libelleAcheminement": "CONTAMINE SUR ARVE", + "nomCommune": "CONTAMINE SUR ARVE" }, { - "codePostal": "15150", - "codeCommune": "15135", - "libelleAcheminement": "MONTVERT", - "nomCommune": "MONTVERT" + "codePostal": "22830", + "codeCommune": "22208", + "libelleAcheminement": "PLOUASNE", + "nomCommune": "PLOUASNE" }, { - "codePostal": "71800", - "codeCommune": "71141", - "libelleAcheminement": "COLOMBIER EN BRIONNAIS", - "nomCommune": "COLOMBIER EN BRIONNAIS" + "codePostal": "74520", + "codeCommune": "74144", + "libelleAcheminement": "JONZIER EPAGNY", + "nomCommune": "JONZIER EPAGNY" }, { - "codePostal": "72120", - "codeCommune": "72128", - "libelleAcheminement": "VAL D ETANGSON", - "nomCommune": "VAL D ETANGSON" + "codePostal": "62380", + "codeCommune": "62271", + "libelleAcheminement": "DOHEM", + "nomCommune": "DOHEM" }, { - "codePostal": "47340", - "codeCommune": "47171", - "libelleAcheminement": "MONBALEN", - "nomCommune": "MONBALEN" + "codePostal": "63440", + "codeCommune": "63391", + "libelleAcheminement": "ST REMY DE BLOT", + "nomCommune": "ST REMY DE BLOT" }, { - "codePostal": "15250", - "codeCommune": "15140", - "libelleAcheminement": "NAUCELLES", - "nomCommune": "NAUCELLES" + "codePostal": "74150", + "codeCommune": "74095", + "libelleAcheminement": "CREMPIGNY BONNEGUETE", + "nomCommune": "CREMPIGNY BONNEGUETE" }, { - "codePostal": "71140", - "codeCommune": "71155", - "libelleAcheminement": "CRONAT", - "nomCommune": "CRONAT" + "codePostal": "22650", + "codeCommune": "22209", + "libelleAcheminement": "BEAUSSAIS SUR MER", + "nomCommune": "BEAUSSAIS SUR MER" }, { - "codePostal": "72120", - "codeCommune": "72128", - "libelleAcheminement": "VAL D ETANGSON", - "nomCommune": "VAL D ETANGSON" + "codePostal": "74140", + "codeCommune": "74150", + "libelleAcheminement": "LOISIN", + "nomCommune": "LOISIN" }, { - "codePostal": "47160", - "codeCommune": "47177", - "libelleAcheminement": "MONHEURT", - "nomCommune": "MONHEURT" + "codePostal": "62119", + "codeCommune": "62274", + "libelleAcheminement": "DOURGES", + "nomCommune": "DOURGES" }, { - "codePostal": "15290", - "codeCommune": "15144", - "libelleAcheminement": "OMPS", - "nomCommune": "OMPS" + "codePostal": "63310", + "codeCommune": "63400", + "libelleAcheminement": "ST SYLVESTRE PRAGOULIN", + "nomCommune": "ST SYLVESTRE PRAGOULIN" }, { - "codePostal": "71480", - "codeCommune": "71157", - "libelleAcheminement": "CUISEAUX", - "nomCommune": "CUISEAUX" + "codePostal": "74350", + "codeCommune": "74098", + "libelleAcheminement": "CUVAT", + "nomCommune": "CUVAT" }, { - "codePostal": "72600", - "codeCommune": "72137", - "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", - "nomCommune": "VILLENEUVE EN PERSEIGNE" + "codePostal": "22620", + "codeCommune": "22210", + "libelleAcheminement": "PLOUBAZLANEC", + "nomCommune": "PLOUBAZLANEC" }, { - "codePostal": "47330", - "codeCommune": "47183", - "libelleAcheminement": "MONTAURIOL", - "nomCommune": "MONTAURIOL" + "codePostal": "74890", + "codeCommune": "74156", + "libelleAcheminement": "LULLY", + "nomCommune": "LULLY" }, { - "codePostal": "15230", - "codeCommune": "15149", - "libelleAcheminement": "PAULHENC", - "nomCommune": "PAULHENC" + "codePostal": "62320", + "codeCommune": "62277", + "libelleAcheminement": "DROCOURT", + "nomCommune": "DROCOURT" }, { - "codePostal": "71150", - "codeCommune": "71174", - "libelleAcheminement": "DEZIZE LES MARANGES", - "nomCommune": "DEZIZE LES MARANGES" + "codePostal": "63730", + "codeCommune": "63413", + "libelleAcheminement": "LA SAUVETAT", + "nomCommune": "LA SAUVETAT" }, { - "codePostal": "72610", - "codeCommune": "72137", - "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", - "nomCommune": "VILLENEUVE EN PERSEIGNE" + "codePostal": "74700", + "codeCommune": "74103", + "libelleAcheminement": "DOMANCY", + "nomCommune": "DOMANCY" }, { - "codePostal": "47210", - "codeCommune": "47184", - "libelleAcheminement": "MONTAUT", - "nomCommune": "MONTAUT" + "codePostal": "22620", + "codeCommune": "22210", + "libelleAcheminement": "PLOUBAZLANEC", + "nomCommune": "PLOUBAZLANEC" }, { - "codePostal": "15230", - "codeCommune": "15152", - "libelleAcheminement": "PIERREFORT", - "nomCommune": "PIERREFORT" + "codePostal": "74200", + "codeCommune": "74157", + "libelleAcheminement": "LYAUD", + "nomCommune": "LYAUD" }, { - "codePostal": "71160", - "codeCommune": "71176", - "libelleAcheminement": "DIGOIN", - "nomCommune": "DIGOIN" + "codePostal": "62360", + "codeCommune": "62281", + "libelleAcheminement": "ECHINGHEN", + "nomCommune": "ECHINGHEN" }, { - "codePostal": "72130", - "codeCommune": "72138", - "libelleAcheminement": "FRESNAY SUR SARTHE", - "nomCommune": "FRESNAY SUR SARTHE" + "codePostal": "63190", + "codeCommune": "63420", + "libelleAcheminement": "SEYCHALLES", + "nomCommune": "SEYCHALLES" }, { - "codePostal": "47500", - "codeCommune": "47185", - "libelleAcheminement": "MONTAYRAL", - "nomCommune": "MONTAYRAL" + "codePostal": "74410", + "codeCommune": "74108", + "libelleAcheminement": "DUINGT", + "nomCommune": "DUINGT" }, { - "codePostal": "15800", - "codeCommune": "15154", - "libelleAcheminement": "POLMINHAC", - "nomCommune": "POLMINHAC" + "codePostal": "22150", + "codeCommune": "22219", + "libelleAcheminement": "PLOUGUENAST LANGAST", + "nomCommune": "PLOUGUENAST LANGAST" }, { - "codePostal": "71250", - "codeCommune": "71181", - "libelleAcheminement": "DONZY LE PERTUIS", - "nomCommune": "DONZY LE PERTUIS" + "codePostal": "74150", + "codeCommune": "74161", + "libelleAcheminement": "MARCELLAZ ALBANAIS", + "nomCommune": "MARCELLAZ ALBANAIS" }, { - "codePostal": "72110", - "codeCommune": "72148", - "libelleAcheminement": "JAUZE", - "nomCommune": "JAUZE" + "codePostal": "62770", + "codeCommune": "62282", + "libelleAcheminement": "ECLIMEUX", + "nomCommune": "ECLIMEUX" }, { - "codePostal": "47120", - "codeCommune": "47187", - "libelleAcheminement": "MONTETON", - "nomCommune": "MONTETON" + "codePostal": "63560", + "codeCommune": "63428", + "libelleAcheminement": "TEILHET", + "nomCommune": "TEILHET" }, { - "codePostal": "15600", - "codeCommune": "15157", - "libelleAcheminement": "QUEZAC", - "nomCommune": "QUEZAC" + "codePostal": "74110", + "codeCommune": "74114", + "libelleAcheminement": "ESSERT ROMAND", + "nomCommune": "ESSERT ROMAND" }, { - "codePostal": "71400", - "codeCommune": "71184", - "libelleAcheminement": "DRACY ST LOUP", - "nomCommune": "DRACY ST LOUP" + "codePostal": "22110", + "codeCommune": "22220", + "libelleAcheminement": "PLOUGUERNEVEL", + "nomCommune": "PLOUGUERNEVEL" }, { - "codePostal": "72540", - "codeCommune": "72149", - "libelleAcheminement": "JOUE EN CHARNIE", - "nomCommune": "JOUE EN CHARNIE" + "codePostal": "74490", + "codeCommune": "74174", + "libelleAcheminement": "MEGEVETTE", + "nomCommune": "MEGEVETTE" }, { - "codePostal": "47200", - "codeCommune": "47191", - "libelleAcheminement": "MONTPOUILLAN", - "nomCommune": "MONTPOUILLAN" + "codePostal": "62860", + "codeCommune": "62298", + "libelleAcheminement": "EPINOY", + "nomCommune": "EPINOY" }, { - "codePostal": "15400", - "codeCommune": "15162", - "libelleAcheminement": "RIOM ES MONTAGNES", - "nomCommune": "RIOM ES MONTAGNES" + "codePostal": "63340", + "codeCommune": "63429", + "libelleAcheminement": "TERNANT LES EAUX", + "nomCommune": "TERNANT LES EAUX" }, { - "codePostal": "71360", - "codeCommune": "71188", - "libelleAcheminement": "EPERTULLY", - "nomCommune": "EPERTULLY" + "codePostal": "74800", + "codeCommune": "74116", + "libelleAcheminement": "ETAUX", + "nomCommune": "ETAUX" }, { - "codePostal": "72500", - "codeCommune": "72153", - "libelleAcheminement": "JUPILLES", - "nomCommune": "JUPILLES" + "codePostal": "22580", + "codeCommune": "22222", + "libelleAcheminement": "PLOUHA", + "nomCommune": "PLOUHA" }, { - "codePostal": "47290", - "codeCommune": "47192", - "libelleAcheminement": "MONVIEL", - "nomCommune": "MONVIEL" + "codePostal": "74500", + "codeCommune": "74175", + "libelleAcheminement": "MEILLERIE", + "nomCommune": "MEILLERIE" }, { - "codePostal": "15220", - "codeCommune": "15172", - "libelleAcheminement": "ST ANTOINE", - "nomCommune": "ST ANTOINE" + "codePostal": "62224", + "codeCommune": "62300", + "libelleAcheminement": "EQUIHEN PLAGE", + "nomCommune": "EQUIHEN PLAGE" }, { - "codePostal": "71580", - "codeCommune": "71198", - "libelleAcheminement": "FLACEY EN BRESSE", - "nomCommune": "FLACEY EN BRESSE" + "codePostal": "63380", + "codeCommune": "63436", + "libelleAcheminement": "TRALAIGUES", + "nomCommune": "TRALAIGUES" }, { - "codePostal": "72390", - "codeCommune": "72158", - "libelleAcheminement": "LAVARE", - "nomCommune": "LAVARE" + "codePostal": "74150", + "codeCommune": "74117", + "libelleAcheminement": "ETERCY", + "nomCommune": "ETERCY" }, { - "codePostal": "47290", - "codeCommune": "47193", - "libelleAcheminement": "MOULINET", - "nomCommune": "MOULINET" + "codePostal": "22200", + "codeCommune": "22223", + "libelleAcheminement": "PLOUISY", + "nomCommune": "PLOUISY" }, { - "codePostal": "15140", - "codeCommune": "15176", - "libelleAcheminement": "ST CHAMANT", - "nomCommune": "ST CHAMANT" + "codePostal": "74350", + "codeCommune": "74177", + "libelleAcheminement": "MENTHONNEX EN BORNES", + "nomCommune": "MENTHONNEX EN BORNES" }, { - "codePostal": "71250", - "codeCommune": "71199", - "libelleAcheminement": "FLAGY", - "nomCommune": "FLAGY" + "codePostal": "62650", + "codeCommune": "62302", + "libelleAcheminement": "ERGNY", + "nomCommune": "ERGNY" }, { - "codePostal": "72500", - "codeCommune": "72173", - "libelleAcheminement": "LUCEAU", - "nomCommune": "LUCEAU" + "codePostal": "63610", + "codeCommune": "63440", + "libelleAcheminement": "VALBELEIX", + "nomCommune": "VALBELEIX" }, { - "codePostal": "47190", - "codeCommune": "47196", - "libelleAcheminement": "NICOLE", - "nomCommune": "NICOLE" + "codePostal": "74100", + "codeCommune": "74118", + "libelleAcheminement": "ETREMBIERES", + "nomCommune": "ETREMBIERES" }, { - "codePostal": "15140", - "codeCommune": "15186", - "libelleAcheminement": "STE EULALIE", - "nomCommune": "STE EULALIE" + "codePostal": "22300", + "codeCommune": "22224", + "libelleAcheminement": "PLOULEC H", + "nomCommune": "PLOULEC H" }, { - "codePostal": "71120", - "codeCommune": "71203", - "libelleAcheminement": "FONTENAY", - "nomCommune": "FONTENAY" + "codePostal": "74440", + "codeCommune": "74183", + "libelleAcheminement": "MIEUSSY", + "nomCommune": "MIEUSSY" }, { - "codePostal": "72290", - "codeCommune": "72174", - "libelleAcheminement": "LUCE SOUS BALLON", - "nomCommune": "LUCE SOUS BALLON" + "codePostal": "62400", + "codeCommune": "62310", + "libelleAcheminement": "ESSARS", + "nomCommune": "ESSARS" }, { - "codePostal": "47210", - "codeCommune": "47200", - "libelleAcheminement": "PARRANQUET", - "nomCommune": "PARRANQUET" + "codePostal": "63500", + "codeCommune": "63444", + "libelleAcheminement": "VARENNES SUR USSON", + "nomCommune": "VARENNES SUR USSON" }, { - "codePostal": "15400", - "codeCommune": "15190", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "74130", + "codeCommune": "74122", + "libelleAcheminement": "FAUCIGNY", + "nomCommune": "FAUCIGNY" }, { - "codePostal": "71460", - "codeCommune": "71214", - "libelleAcheminement": "GENOUILLY", - "nomCommune": "GENOUILLY" + "codePostal": "22860", + "codeCommune": "22233", + "libelleAcheminement": "PLOURIVO", + "nomCommune": "PLOURIVO" }, { - "codePostal": "72800", - "codeCommune": "72175", - "libelleAcheminement": "LUCHE PRINGE", - "nomCommune": "LUCHE PRINGE" + "codePostal": "74130", + "codeCommune": "74189", + "libelleAcheminement": "MONT SAXONNEX", + "nomCommune": "MONT SAXONNEX" }, { - "codePostal": "47700", - "codeCommune": "47205", - "libelleAcheminement": "PINDERES", - "nomCommune": "PINDERES" + "codePostal": "62760", + "codeCommune": "62322", + "libelleAcheminement": "FAMECHON", + "nomCommune": "FAMECHON" }, { - "codePostal": "15800", - "codeCommune": "15192", - "libelleAcheminement": "ST JACQUES DES BLATS", - "nomCommune": "ST JACQUES DES BLATS" + "codePostal": "63320", + "codeCommune": "63452", + "libelleAcheminement": "VERRIERES", + "nomCommune": "VERRIERES" }, { - "codePostal": "71990", - "codeCommune": "71223", - "libelleAcheminement": "LA GRANDE VERRIERE", - "nomCommune": "LA GRANDE VERRIERE" + "codePostal": "74890", + "codeCommune": "74126", + "libelleAcheminement": "FESSY", + "nomCommune": "FESSY" }, { - "codePostal": "72800", - "codeCommune": "72176", - "libelleAcheminement": "LE LUDE", - "nomCommune": "LE LUDE" + "codePostal": "22170", + "codeCommune": "22234", + "libelleAcheminement": "PLOUVARA", + "nomCommune": "PLOUVARA" }, { - "codePostal": "47480", - "codeCommune": "47209", - "libelleAcheminement": "PONT DU CASSE", - "nomCommune": "PONT DU CASSE" + "codePostal": "74110", + "codeCommune": "74191", + "libelleAcheminement": "MORZINE", + "nomCommune": "MORZINE" }, { - "codePostal": "15220", - "codeCommune": "15196", - "libelleAcheminement": "ST MAMET LA SALVETAT", - "nomCommune": "ST MAMET LA SALVETAT" + "codePostal": "62118", + "codeCommune": "62323", + "libelleAcheminement": "FAMPOUX", + "nomCommune": "FAMPOUX" }, { - "codePostal": "71600", - "codeCommune": "71233", - "libelleAcheminement": "L HOPITAL LE MERCIER", - "nomCommune": "L HOPITAL LE MERCIER" + "codePostal": "63380", + "codeCommune": "63460", + "libelleAcheminement": "VILLOSSANGES", + "nomCommune": "VILLOSSANGES" }, { - "codePostal": "72100", - "codeCommune": "72181", - "libelleAcheminement": "LE MANS", - "nomCommune": "LE MANS" + "codePostal": "74150", + "codeCommune": "74141", + "libelleAcheminement": "HAUTEVILLE SUR FIER", + "nomCommune": "HAUTEVILLE SUR FIER" }, { - "codePostal": "47170", - "codeCommune": "47211", - "libelleAcheminement": "POUDENAS", - "nomCommune": "POUDENAS" + "codePostal": "22310", + "codeCommune": "22238", + "libelleAcheminement": "PLUFUR", + "nomCommune": "PLUFUR" }, { - "codePostal": "15110", - "codeCommune": "15199", - "libelleAcheminement": "ST MARTIAL", - "nomCommune": "ST MARTIAL" + "codePostal": "74110", + "codeCommune": "74191", + "libelleAcheminement": "MORZINE", + "nomCommune": "MORZINE" }, { - "codePostal": "71760", - "codeCommune": "71239", - "libelleAcheminement": "ISSY L EVEQUE", - "nomCommune": "ISSY L EVEQUE" + "codePostal": "62960", + "codeCommune": "62327", + "libelleAcheminement": "FEBVIN PALFART", + "nomCommune": "FEBVIN PALFART" }, { - "codePostal": "72260", - "codeCommune": "72189", - "libelleAcheminement": "MAROLLES LES BRAULTS", - "nomCommune": "MAROLLES LES BRAULTS" + "codePostal": "63530", + "codeCommune": "63470", + "libelleAcheminement": "VOLVIC", + "nomCommune": "VOLVIC" }, { - "codePostal": "47360", - "codeCommune": "47213", - "libelleAcheminement": "PRAYSSAS", - "nomCommune": "PRAYSSAS" + "codePostal": "74380", + "codeCommune": "74153", + "libelleAcheminement": "LUCINGES", + "nomCommune": "LUCINGES" }, { - "codePostal": "15230", - "codeCommune": "15201", - "libelleAcheminement": "ST MARTIN SOUS VIGOUROUX", - "nomCommune": "ST MARTIN SOUS VIGOUROUX" + "codePostal": "22320", + "codeCommune": "22244", + "libelleAcheminement": "PLUSSULIEN", + "nomCommune": "PLUSSULIEN" }, { - "codePostal": "71290", - "codeCommune": "71244", - "libelleAcheminement": "JOUVENCON", - "nomCommune": "JOUVENCON" + "codePostal": "74150", + "codeCommune": "74192", + "libelleAcheminement": "MOYE", + "nomCommune": "MOYE" }, { - "codePostal": "72270", - "codeCommune": "72195", - "libelleAcheminement": "MEZERAY", - "nomCommune": "MEZERAY" + "codePostal": "62250", + "codeCommune": "62329", + "libelleAcheminement": "FERQUES", + "nomCommune": "FERQUES" }, { - "codePostal": "47700", - "codeCommune": "47222", - "libelleAcheminement": "LA REUNION", - "nomCommune": "LA REUNION" + "codePostal": "64360", + "codeCommune": "64005", + "libelleAcheminement": "ABOS", + "nomCommune": "ABOS" }, { - "codePostal": "15500", - "codeCommune": "15203", - "libelleAcheminement": "ST MARY LE PLAIN", - "nomCommune": "ST MARY LE PLAIN" + "codePostal": "74300", + "codeCommune": "74159", + "libelleAcheminement": "MAGLAND", + "nomCommune": "MAGLAND" }, { - "codePostal": "71700", - "codeCommune": "71248", - "libelleAcheminement": "LACROST", - "nomCommune": "LACROST" + "codePostal": "22590", + "codeCommune": "22251", + "libelleAcheminement": "PORDIC", + "nomCommune": "PORDIC" }, { - "codePostal": "72130", - "codeCommune": "72209", - "libelleAcheminement": "MONTREUIL LE CHETIF", - "nomCommune": "MONTREUIL LE CHETIF" + "codePostal": "74540", + "codeCommune": "74194", + "libelleAcheminement": "MURES", + "nomCommune": "MURES" }, { - "codePostal": "47300", - "codeCommune": "47237", - "libelleAcheminement": "STE COLOMBE DE VILLENEUVE", - "nomCommune": "STE COLOMBE DE VILLENEUVE" + "codePostal": "62149", + "codeCommune": "62330", + "libelleAcheminement": "FESTUBERT", + "nomCommune": "FESTUBERT" }, { - "codePostal": "15190", - "codeCommune": "15213", - "libelleAcheminement": "ST SATURNIN", - "nomCommune": "ST SATURNIN" + "codePostal": "64220", + "codeCommune": "64008", + "libelleAcheminement": "AHAXE ALCIETTE BASCASSAN", + "nomCommune": "AHAXE ALCIETTE BASCASSAN" }, { - "codePostal": "71240", - "codeCommune": "71252", - "libelleAcheminement": "LALHEUE", - "nomCommune": "LALHEUE" + "codePostal": "74230", + "codeCommune": "74160", + "libelleAcheminement": "MANIGOD", + "nomCommune": "MANIGOD" }, { - "codePostal": "72230", - "codeCommune": "72213", - "libelleAcheminement": "MULSANNE", - "nomCommune": "MULSANNE" + "codePostal": "22140", + "codeCommune": "22254", + "libelleAcheminement": "PRAT", + "nomCommune": "PRAT" }, { - "codePostal": "47450", - "codeCommune": "47246", - "libelleAcheminement": "ST HILAIRE DE LUSIGNAN", - "nomCommune": "ST HILAIRE DE LUSIGNAN" + "codePostal": "74300", + "codeCommune": "74196", + "libelleAcheminement": "NANCY SUR CLUSES", + "nomCommune": "NANCY SUR CLUSES" }, { - "codePostal": "15130", - "codeCommune": "15215", - "libelleAcheminement": "ST SIMON", - "nomCommune": "ST SIMON" + "codePostal": "62550", + "codeCommune": "62340", + "libelleAcheminement": "FLORINGHEM", + "nomCommune": "FLORINGHEM" }, { - "codePostal": "71100", - "codeCommune": "71269", - "libelleAcheminement": "LUX", - "nomCommune": "LUX" + "codePostal": "64250", + "codeCommune": "64014", + "libelleAcheminement": "AINHOA", + "nomCommune": "AINHOA" }, { - "codePostal": "72240", - "codeCommune": "72219", - "libelleAcheminement": "BERNAY NEUVY EN CHAMPAGNE", - "nomCommune": "BERNAY NEUVY EN CHAMPAGNE" + "codePostal": "74270", + "codeCommune": "74168", + "libelleAcheminement": "MARLIOZ", + "nomCommune": "MARLIOZ" }, { - "codePostal": "47170", - "codeCommune": "47266", - "libelleAcheminement": "ST PE ST SIMON", - "nomCommune": "ST PE ST SIMON" + "codePostal": "22120", + "codeCommune": "22258", + "libelleAcheminement": "QUESSOY", + "nomCommune": "QUESSOY" }, { - "codePostal": "15200", - "codeCommune": "15230", - "libelleAcheminement": "SOURNIAC", - "nomCommune": "SOURNIAC" + "codePostal": "74140", + "codeCommune": "74199", + "libelleAcheminement": "NERNIER", + "nomCommune": "NERNIER" }, { - "codePostal": "71460", - "codeCommune": "71272", - "libelleAcheminement": "MALAY", - "nomCommune": "MALAY" + "codePostal": "62270", + "codeCommune": "62346", + "libelleAcheminement": "FORTEL EN ARTOIS", + "nomCommune": "FORTEL EN ARTOIS" }, { - "codePostal": "72430", - "codeCommune": "72237", - "libelleAcheminement": "PIRMIL", - "nomCommune": "PIRMIL" + "codePostal": "64420", + "codeCommune": "64021", + "libelleAcheminement": "ANDOINS", + "nomCommune": "ANDOINS" }, { - "codePostal": "47270", - "codeCommune": "47269", - "libelleAcheminement": "ST PIERRE DE CLAIRAC", - "nomCommune": "ST PIERRE DE CLAIRAC" + "codePostal": "74150", + "codeCommune": "74170", + "libelleAcheminement": "MASSINGY", + "nomCommune": "MASSINGY" }, { - "codePostal": "15100", - "codeCommune": "15232", - "libelleAcheminement": "TANAVELLE", - "nomCommune": "TANAVELLE" + "codePostal": "22100", + "codeCommune": "22259", + "libelleAcheminement": "QUEVERT", + "nomCommune": "QUEVERT" }, { - "codePostal": "71120", - "codeCommune": "71276", - "libelleAcheminement": "MARCILLY LA GUEURCE", - "nomCommune": "MARCILLY LA GUEURCE" + "codePostal": "74190", + "codeCommune": "74208", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "72600", - "codeCommune": "72238", - "libelleAcheminement": "PIZIEUX", - "nomCommune": "PIZIEUX" + "codePostal": "62130", + "codeCommune": "62352", + "libelleAcheminement": "FRAMECOURT", + "nomCommune": "FRAMECOURT" }, { - "codePostal": "47180", - "codeCommune": "47277", - "libelleAcheminement": "ST SAUVEUR DE MEILHAN", - "nomCommune": "ST SAUVEUR DE MEILHAN" + "codePostal": "64510", + "codeCommune": "64023", + "libelleAcheminement": "ANGAIS", + "nomCommune": "ANGAIS" }, { - "codePostal": "15110", - "codeCommune": "15241", - "libelleAcheminement": "LA TRINITAT", - "nomCommune": "LA TRINITAT" + "codePostal": "74290", + "codeCommune": "74176", + "libelleAcheminement": "MENTHON ST BERNARD", + "nomCommune": "MENTHON ST BERNARD" }, { - "codePostal": "71390", - "codeCommune": "71277", - "libelleAcheminement": "MARCILLY LES BUXY", - "nomCommune": "MARCILLY LES BUXY" + "codePostal": "22400", + "codeCommune": "22261", + "libelleAcheminement": "QUINTENIC", + "nomCommune": "QUINTENIC" }, { - "codePostal": "72510", - "codeCommune": "72243", - "libelleAcheminement": "PONTVALLAIN", - "nomCommune": "PONTVALLAIN" + "codePostal": "74190", + "codeCommune": "74208", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "47140", - "codeCommune": "47280", - "libelleAcheminement": "ST SYLVESTRE SUR LOT", - "nomCommune": "ST SYLVESTRE SUR LOT" + "codePostal": "62127", + "codeCommune": "62381", + "libelleAcheminement": "GOUY EN TERNOIS", + "nomCommune": "GOUY EN TERNOIS" }, { - "codePostal": "15100", - "codeCommune": "15245", - "libelleAcheminement": "VABRES", - "nomCommune": "VABRES" + "codePostal": "64570", + "codeCommune": "64029", + "libelleAcheminement": "ARAMITS", + "nomCommune": "ARAMITS" }, { - "codePostal": "71220", - "codeCommune": "71279", - "libelleAcheminement": "LE ROUSSET MARIZY", - "nomCommune": "LE ROUSSET MARIZY" + "codePostal": "74270", + "codeCommune": "74178", + "libelleAcheminement": "MENTHONNEX SOUS CLERMONT", + "nomCommune": "MENTHONNEX SOUS CLERMONT" }, { - "codePostal": "72150", - "codeCommune": "72248", - "libelleAcheminement": "PRUILLE L EGUILLE", - "nomCommune": "PRUILLE L EGUILLE" + "codePostal": "22630", + "codeCommune": "22263", + "libelleAcheminement": "LE QUIOU", + "nomCommune": "LE QUIOU" }, { - "codePostal": "47600", - "codeCommune": "47287", - "libelleAcheminement": "SAUMONT", - "nomCommune": "SAUMONT" + "codePostal": "74190", + "codeCommune": "74208", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "15590", - "codeCommune": "15252", - "libelleAcheminement": "VELZIC", - "nomCommune": "VELZIC" + "codePostal": "62147", + "codeCommune": "62384", + "libelleAcheminement": "GRAINCOURT LES HAVRINCOURT", + "nomCommune": "GRAINCOURT LES HAVRINCOURT" }, { - "codePostal": "71220", - "codeCommune": "71285", - "libelleAcheminement": "MARTIGNY LE COMTE", - "nomCommune": "MARTIGNY LE COMTE" + "codePostal": "64120", + "codeCommune": "64034", + "libelleAcheminement": "ARBERATS SILLEGUE", + "nomCommune": "ARBERATS SILLEGUE" }, { - "codePostal": "72120", - "codeCommune": "72250", - "libelleAcheminement": "RAHAY", - "nomCommune": "RAHAY" + "codePostal": "74560", + "codeCommune": "74185", + "libelleAcheminement": "MONNETIER MORNEX", + "nomCommune": "MONNETIER MORNEX" }, { - "codePostal": "47800", - "codeCommune": "47290", - "libelleAcheminement": "LA SAUVETAT DU DROPT", - "nomCommune": "LA SAUVETAT DU DROPT" + "codePostal": "22110", + "codeCommune": "22266", + "libelleAcheminement": "ROSTRENEN", + "nomCommune": "ROSTRENEN" }, { - "codePostal": "15130", - "codeCommune": "15255", - "libelleAcheminement": "VEZAC", - "nomCommune": "VEZAC" + "codePostal": "74120", + "codeCommune": "74215", + "libelleAcheminement": "PRAZ SUR ARLY", + "nomCommune": "PRAZ SUR ARLY" }, { - "codePostal": "71250", - "codeCommune": "71287", - "libelleAcheminement": "MASSILLY", - "nomCommune": "MASSILLY" + "codePostal": "62330", + "codeCommune": "62391", + "libelleAcheminement": "GUARBECQUE", + "nomCommune": "GUARBECQUE" }, { - "codePostal": "72210", - "codeCommune": "72253", - "libelleAcheminement": "ROEZE SUR SARTHE", - "nomCommune": "ROEZE SUR SARTHE" + "codePostal": "64120", + "codeCommune": "64036", + "libelleAcheminement": "ARBOUET SUSSAUTE", + "nomCommune": "ARBOUET SUSSAUTE" }, { - "codePostal": "47160", - "codeCommune": "47320", - "libelleAcheminement": "VILLEFRANCHE DU QUEYRAN", - "nomCommune": "VILLEFRANCHE DU QUEYRAN" + "codePostal": "74440", + "codeCommune": "74190", + "libelleAcheminement": "MORILLON", + "nomCommune": "MORILLON" }, { - "codePostal": "15160", - "codeCommune": "15256", - "libelleAcheminement": "VEZE", - "nomCommune": "VEZE" + "codePostal": "22250", + "codeCommune": "22267", + "libelleAcheminement": "ROUILLAC", + "nomCommune": "ROUILLAC" }, { - "codePostal": "71340", - "codeCommune": "71291", - "libelleAcheminement": "MELAY", - "nomCommune": "MELAY" + "codePostal": "74600", + "codeCommune": "74219", + "libelleAcheminement": "QUINTAL", + "nomCommune": "QUINTAL" }, { - "codePostal": "72700", - "codeCommune": "72257", - "libelleAcheminement": "ROUILLON", - "nomCommune": "ROUILLON" + "codePostal": "62830", + "codeCommune": "62402", + "libelleAcheminement": "HALINGHEN", + "nomCommune": "HALINGHEN" }, { - "codePostal": "47300", - "codeCommune": "47323", - "libelleAcheminement": "VILLENEUVE SUR LOT", - "nomCommune": "VILLENEUVE SUR LOT" + "codePostal": "64400", + "codeCommune": "64039", + "libelleAcheminement": "AREN", + "nomCommune": "AREN" }, { - "codePostal": "15000", - "codeCommune": "15267", - "libelleAcheminement": "YTRAC", - "nomCommune": "YTRAC" + "codePostal": "74270", + "codeCommune": "74195", + "libelleAcheminement": "MUSIEGES", + "nomCommune": "MUSIEGES" }, { - "codePostal": "71470", - "codeCommune": "71293", - "libelleAcheminement": "MENETREUIL", - "nomCommune": "MENETREUIL" + "codePostal": "22260", + "codeCommune": "22269", + "libelleAcheminement": "RUNAN", + "nomCommune": "RUNAN" }, { - "codePostal": "72310", - "codeCommune": "72262", - "libelleAcheminement": "LOIR EN VALLEE", - "nomCommune": "LOIR EN VALLEE" + "codePostal": "74170", + "codeCommune": "74236", + "libelleAcheminement": "ST GERVAIS LES BAINS", + "nomCommune": "ST GERVAIS LES BAINS" }, { - "codePostal": "47400", - "codeCommune": "47325", - "libelleAcheminement": "VILLETON", - "nomCommune": "VILLETON" + "codePostal": "62121", + "codeCommune": "62406", + "libelleAcheminement": "HAMELINCOURT", + "nomCommune": "HAMELINCOURT" }, { - "codePostal": "16140", - "codeCommune": "16042", - "libelleAcheminement": "BESSE", - "nomCommune": "BESSE" + "codePostal": "64450", + "codeCommune": "64043", + "libelleAcheminement": "ARGELOS", + "nomCommune": "ARGELOS" }, { - "codePostal": "71640", - "codeCommune": "71294", - "libelleAcheminement": "MERCUREY", - "nomCommune": "MERCUREY" + "codePostal": "74380", + "codeCommune": "74197", + "libelleAcheminement": "NANGY", + "nomCommune": "NANGY" }, { - "codePostal": "72220", - "codeCommune": "72268", - "libelleAcheminement": "ST BIEZ EN BELIN", - "nomCommune": "ST BIEZ EN BELIN" + "codePostal": "22000", + "codeCommune": "22278", + "libelleAcheminement": "ST BRIEUC", + "nomCommune": "ST BRIEUC" }, { - "codePostal": "48310", - "codeCommune": "48001", - "libelleAcheminement": "ALBARET LE COMTAL", - "nomCommune": "ALBARET LE COMTAL" + "codePostal": "74250", + "codeCommune": "74240", + "libelleAcheminement": "ST JEAN DE THOLOME", + "nomCommune": "ST JEAN DE THOLOME" }, { - "codePostal": "16250", - "codeCommune": "16046", - "libelleAcheminement": "COTEAUX DU BLANZACAIS", - "nomCommune": "COTEAUX DU BLANZACAIS" + "codePostal": "62111", + "codeCommune": "62409", + "libelleAcheminement": "HANNESCAMPS", + "nomCommune": "HANNESCAMPS" }, { - "codePostal": "71190", - "codeCommune": "71297", - "libelleAcheminement": "MESVRES", - "nomCommune": "MESVRES" + "codePostal": "64220", + "codeCommune": "64047", + "libelleAcheminement": "ARNEGUY", + "nomCommune": "ARNEGUY" }, { - "codePostal": "72120", - "codeCommune": "72272", - "libelleAcheminement": "STE CEROTTE", - "nomCommune": "STE CEROTTE" + "codePostal": "74500", + "codeCommune": "74200", + "libelleAcheminement": "NEUVECELLE", + "nomCommune": "NEUVECELLE" }, { - "codePostal": "48190", - "codeCommune": "48003", - "libelleAcheminement": "ALLENC", - "nomCommune": "ALLENC" + "codePostal": "22530", + "codeCommune": "22285", + "libelleAcheminement": "ST CONNEC", + "nomCommune": "ST CONNEC" }, { - "codePostal": "16320", - "codeCommune": "16047", - "libelleAcheminement": "BLANZAGUET ST CYBARD", - "nomCommune": "BLANZAGUET ST CYBARD" + "codePostal": "74800", + "codeCommune": "74250", + "libelleAcheminement": "ST PIERRE EN FAUCIGNY", + "nomCommune": "ST PIERRE EN FAUCIGNY" }, { - "codePostal": "71140", - "codeCommune": "71301", - "libelleAcheminement": "MONT", - "nomCommune": "MONT" + "codePostal": "62144", + "codeCommune": "62415", + "libelleAcheminement": "HAUTE AVESNES", + "nomCommune": "HAUTE AVESNES" }, { - "codePostal": "72170", - "codeCommune": "72273", - "libelleAcheminement": "ST CHRISTOPHE DU JAMBET", - "nomCommune": "ST CHRISTOPHE DU JAMBET" + "codePostal": "64350", + "codeCommune": "64052", + "libelleAcheminement": "ARRICAU BORDES", + "nomCommune": "ARRICAU BORDES" }, { - "codePostal": "48200", - "codeCommune": "48012", - "libelleAcheminement": "LES MONTS VERTS", - "nomCommune": "LES MONTS VERTS" + "codePostal": "74330", + "codeCommune": "74202", + "libelleAcheminement": "NONGLARD", + "nomCommune": "NONGLARD" }, { - "codePostal": "16390", - "codeCommune": "16049", - "libelleAcheminement": "BONNES", - "nomCommune": "BONNES" + "codePostal": "22460", + "codeCommune": "22300", + "libelleAcheminement": "ST HERVE", + "nomCommune": "ST HERVE" }, { - "codePostal": "71500", - "codeCommune": "71303", - "libelleAcheminement": "MONTAGNY PRES LOUHANS", - "nomCommune": "MONTAGNY PRES LOUHANS" + "codePostal": "74540", + "codeCommune": "74254", + "libelleAcheminement": "ST SYLVESTRE", + "nomCommune": "ST SYLVESTRE" }, { - "codePostal": "72460", - "codeCommune": "72275", - "libelleAcheminement": "ST CORNEILLE", - "nomCommune": "ST CORNEILLE" + "codePostal": "62130", + "codeCommune": "62416", + "libelleAcheminement": "HAUTECLOQUE", + "nomCommune": "HAUTECLOQUE" }, { - "codePostal": "48000", - "codeCommune": "48013", - "libelleAcheminement": "BADAROUX", - "nomCommune": "BADAROUX" + "codePostal": "64660", + "codeCommune": "64064", + "libelleAcheminement": "ASASP ARROS", + "nomCommune": "ASASP ARROS" }, { - "codePostal": "16350", - "codeCommune": "16054", - "libelleAcheminement": "LE BOUCHAGE", - "nomCommune": "LE BOUCHAGE" + "codePostal": "74190", + "codeCommune": "74208", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "71310", - "codeCommune": "71314", - "libelleAcheminement": "MONTJAY", - "nomCommune": "MONTJAY" + "codePostal": "22140", + "codeCommune": "22310", + "libelleAcheminement": "ST LAURENT", + "nomCommune": "ST LAURENT" }, { - "codePostal": "72110", - "codeCommune": "72276", - "libelleAcheminement": "ST COSME EN VAIRAIS", - "nomCommune": "ST COSME EN VAIRAIS" + "codePostal": "74150", + "codeCommune": "74255", + "libelleAcheminement": "SALES", + "nomCommune": "SALES" }, { - "codePostal": "48800", - "codeCommune": "48015", - "libelleAcheminement": "PIED DE BORNE", - "nomCommune": "PIED DE BORNE" + "codePostal": "62810", + "codeCommune": "62418", + "libelleAcheminement": "HAUTEVILLE", + "nomCommune": "HAUTEVILLE" }, { - "codePostal": "16200", - "codeCommune": "16056", - "libelleAcheminement": "BOURG CHARENTE", - "nomCommune": "BOURG CHARENTE" + "codePostal": "64220", + "codeCommune": "64066", + "libelleAcheminement": "ASCARAT", + "nomCommune": "ASCARAT" }, { - "codePostal": "71440", - "codeCommune": "71319", - "libelleAcheminement": "MONTRET", - "nomCommune": "MONTRET" + "codePostal": "74190", + "codeCommune": "74208", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "72700", - "codeCommune": "72280", - "libelleAcheminement": "ST GEORGES DU BOIS", - "nomCommune": "ST GEORGES DU BOIS" + "codePostal": "22350", + "codeCommune": "22312", + "libelleAcheminement": "ST MADEN", + "nomCommune": "ST MADEN" }, { - "codePostal": "48190", - "codeCommune": "48027", - "libelleAcheminement": "MONT LOZERE ET GOULET", - "nomCommune": "MONT LOZERE ET GOULET" + "codePostal": "74700", + "codeCommune": "74256", + "libelleAcheminement": "SALLANCHES", + "nomCommune": "SALLANCHES" }, { - "codePostal": "16260", - "codeCommune": "16068", - "libelleAcheminement": "CELLEFROUIN", - "nomCommune": "CELLEFROUIN" + "codePostal": "62111", + "codeCommune": "62422", + "libelleAcheminement": "HEBUTERNE", + "nomCommune": "HEBUTERNE" }, { - "codePostal": "71360", - "codeCommune": "71322", - "libelleAcheminement": "MORLET", - "nomCommune": "MORLET" + "codePostal": "64230", + "codeCommune": "64073", + "libelleAcheminement": "AUBIN", + "nomCommune": "AUBIN" }, { - "codePostal": "72110", - "codeCommune": "72281", - "libelleAcheminement": "ST GEORGES DU ROSAY", - "nomCommune": "ST GEORGES DU ROSAY" + "codePostal": "74930", + "codeCommune": "74220", + "libelleAcheminement": "REIGNIER ESERY", + "nomCommune": "REIGNIER ESERY" }, { - "codePostal": "48500", - "codeCommune": "48034", - "libelleAcheminement": "LA CANOURGUE", - "nomCommune": "LA CANOURGUE" + "codePostal": "22980", + "codeCommune": "22315", + "libelleAcheminement": "ST MAUDEZ", + "nomCommune": "ST MAUDEZ" }, { - "codePostal": "16230", - "codeCommune": "16069", - "libelleAcheminement": "CELLETTES", - "nomCommune": "CELLETTES" + "codePostal": "74340", + "codeCommune": "74258", + "libelleAcheminement": "SAMOENS", + "nomCommune": "SAMOENS" }, { - "codePostal": "71220", - "codeCommune": "71323", - "libelleAcheminement": "MORNAY", - "nomCommune": "MORNAY" + "codePostal": "62182", + "codeCommune": "62424", + "libelleAcheminement": "HENDECOURT LES CAGNICOURT", + "nomCommune": "HENDECOURT LES CAGNICOURT" }, { - "codePostal": "72120", - "codeCommune": "72286", - "libelleAcheminement": "ST GERVAIS DE VIC", - "nomCommune": "ST GERVAIS DE VIC" + "codePostal": "64300", + "codeCommune": "64087", + "libelleAcheminement": "BAIGTS DE BEARN", + "nomCommune": "BAIGTS DE BEARN" }, { - "codePostal": "48190", - "codeCommune": "48037", - "libelleAcheminement": "CHADENET", - "nomCommune": "CHADENET" + "codePostal": "74200", + "codeCommune": "74222", + "libelleAcheminement": "REYVROZ", + "nomCommune": "REYVROZ" }, { - "codePostal": "16150", - "codeCommune": "16071", - "libelleAcheminement": "CHABRAC", - "nomCommune": "CHABRAC" + "codePostal": "22160", + "codeCommune": "22320", + "libelleAcheminement": "ST NICODEME", + "nomCommune": "ST NICODEME" }, { - "codePostal": "71390", - "codeCommune": "71324", - "libelleAcheminement": "MOROGES", - "nomCommune": "MOROGES" + "codePostal": "74350", + "codeCommune": "74259", + "libelleAcheminement": "LE SAPPEY", + "nomCommune": "LE SAPPEY" }, { - "codePostal": "72380", - "codeCommune": "72289", - "libelleAcheminement": "STE JAMME SUR SARTHE", - "nomCommune": "STE JAMME SUR SARTHE" + "codePostal": "62128", + "codeCommune": "62426", + "libelleAcheminement": "HENINEL", + "nomCommune": "HENINEL" }, { - "codePostal": "48600", - "codeCommune": "48038", - "libelleAcheminement": "BEL AIR VAL D ANCE", - "nomCommune": "BEL AIR VAL D ANCE" + "codePostal": "64460", + "codeCommune": "64089", + "libelleAcheminement": "BALEIX", + "nomCommune": "BALEIX" }, { - "codePostal": "16210", - "codeCommune": "16073", - "libelleAcheminement": "CHALAIS", - "nomCommune": "CHALAIS" + "codePostal": "74440", + "codeCommune": "74223", + "libelleAcheminement": "LA RIVIERE ENVERSE", + "nomCommune": "LA RIVIERE ENVERSE" }, { - "codePostal": "71270", - "codeCommune": "71326", - "libelleAcheminement": "MOUTHIER EN BRESSE", - "nomCommune": "MOUTHIER EN BRESSE" + "codePostal": "22720", + "codeCommune": "22322", + "libelleAcheminement": "ST PEVER", + "nomCommune": "ST PEVER" }, { - "codePostal": "72320", - "codeCommune": "72296", - "libelleAcheminement": "ST MAIXENT", - "nomCommune": "ST MAIXENT" + "codePostal": "74140", + "codeCommune": "74263", + "libelleAcheminement": "SCIEZ", + "nomCommune": "SCIEZ" }, { - "codePostal": "48230", - "codeCommune": "48039", - "libelleAcheminement": "CHANAC", - "nomCommune": "CHANAC" + "codePostal": "62110", + "codeCommune": "62427", + "libelleAcheminement": "HENIN BEAUMONT", + "nomCommune": "HENIN BEAUMONT" }, { - "codePostal": "16250", - "codeCommune": "16075", - "libelleAcheminement": "CHAMPAGNE VIGNY", - "nomCommune": "CHAMPAGNE VIGNY" + "codePostal": "64530", + "codeCommune": "64097", + "libelleAcheminement": "BARZUN", + "nomCommune": "BARZUN" }, { - "codePostal": "71420", - "codeCommune": "71334", - "libelleAcheminement": "OUDRY", - "nomCommune": "OUDRY" + "codePostal": "74350", + "codeCommune": "74228", + "libelleAcheminement": "ST BLAISE", + "nomCommune": "ST BLAISE" }, { - "codePostal": "72170", - "codeCommune": "72297", - "libelleAcheminement": "ST MARCEAU", - "nomCommune": "ST MARCEAU" + "codePostal": "22550", + "codeCommune": "22323", + "libelleAcheminement": "ST POTAN", + "nomCommune": "ST POTAN" }, { - "codePostal": "48300", - "codeCommune": "48041", - "libelleAcheminement": "CHASTANIER", - "nomCommune": "CHASTANIER" + "codePostal": "74230", + "codeCommune": "74265", + "libelleAcheminement": "SERRAVAL", + "nomCommune": "SERRAVAL" }, { - "codePostal": "16290", - "codeCommune": "16077", - "libelleAcheminement": "CHAMPMILLON", - "nomCommune": "CHAMPMILLON" + "codePostal": "62128", + "codeCommune": "62428", + "libelleAcheminement": "HENIN SUR COJEUL", + "nomCommune": "HENIN SUR COJEUL" }, { - "codePostal": "71800", - "codeCommune": "71335", - "libelleAcheminement": "OUROUX SOUS LE BOIS STE MARIE", - "nomCommune": "OUROUX SOUS LE BOIS STE MARIE" + "codePostal": "64460", + "codeCommune": "64103", + "libelleAcheminement": "BEDEILLE", + "nomCommune": "BEDEILLE" }, { - "codePostal": "72130", - "codeCommune": "72305", - "libelleAcheminement": "ST OUEN DE MIMBRE", - "nomCommune": "ST OUEN DE MIMBRE" + "codePostal": "74410", + "codeCommune": "74232", + "libelleAcheminement": "ST EUSTACHE", + "nomCommune": "ST EUSTACHE" }, { - "codePostal": "48190", - "codeCommune": "48054", - "libelleAcheminement": "CUBIERETTES", - "nomCommune": "CUBIERETTES" + "codePostal": "22410", + "codeCommune": "22325", + "libelleAcheminement": "ST QUAY PORTRIEUX", + "nomCommune": "ST QUAY PORTRIEUX" }, { - "codePostal": "16430", - "codeCommune": "16078", - "libelleAcheminement": "CHAMPNIERS", - "nomCommune": "CHAMPNIERS" + "codePostal": "74330", + "codeCommune": "74272", + "libelleAcheminement": "SILLINGY", + "nomCommune": "SILLINGY" }, { - "codePostal": "71800", - "codeCommune": "71337", - "libelleAcheminement": "OYE", - "nomCommune": "OYE" + "codePostal": "62760", + "codeCommune": "62430", + "libelleAcheminement": "HENU", + "nomCommune": "HENU" }, { - "codePostal": "72220", - "codeCommune": "72306", - "libelleAcheminement": "ST OUEN EN BELIN", - "nomCommune": "ST OUEN EN BELIN" + "codePostal": "64220", + "codeCommune": "64107", + "libelleAcheminement": "BEHORLEGUY", + "nomCommune": "BEHORLEGUY" }, { - "codePostal": "48310", - "codeCommune": "48058", - "libelleAcheminement": "LA FAGE MONTIVERNOUX", - "nomCommune": "LA FAGE MONTIVERNOUX" + "codePostal": "74170", + "codeCommune": "74236", + "libelleAcheminement": "ST GERVAIS LES BAINS", + "nomCommune": "ST GERVAIS LES BAINS" }, { - "codePostal": "16140", - "codeCommune": "16081", - "libelleAcheminement": "LA CHAPELLE", - "nomCommune": "LA CHAPELLE" + "codePostal": "22460", + "codeCommune": "22330", + "libelleAcheminement": "ST THELO", + "nomCommune": "ST THELO" }, { - "codePostal": "71260", - "codeCommune": "71345", - "libelleAcheminement": "PERONNE", - "nomCommune": "PERONNE" + "codePostal": "74290", + "codeCommune": "74275", + "libelleAcheminement": "TALLOIRES MONTMIN", + "nomCommune": "TALLOIRES MONTMIN" }, { - "codePostal": "72610", - "codeCommune": "72308", - "libelleAcheminement": "ST PATERNE LE CHEVAIN", - "nomCommune": "ST PATERNE LE CHEVAIN" + "codePostal": "62850", + "codeCommune": "62432", + "libelleAcheminement": "HERBINGHEN", + "nomCommune": "HERBINGHEN" }, { - "codePostal": "48150", - "codeCommune": "48069", - "libelleAcheminement": "GATUZIERES", - "nomCommune": "GATUZIERES" + "codePostal": "64800", + "codeCommune": "64109", + "libelleAcheminement": "BENEJACQ", + "nomCommune": "BENEJACQ" }, { - "codePostal": "16320", - "codeCommune": "16082", - "libelleAcheminement": "BOISNE LA TUDE", - "nomCommune": "BOISNE LA TUDE" + "codePostal": "74430", + "codeCommune": "74238", + "libelleAcheminement": "ST JEAN D AULPS", + "nomCommune": "ST JEAN D AULPS" }, { - "codePostal": "71270", - "codeCommune": "71351", - "libelleAcheminement": "PIERRE DE BRESSE", - "nomCommune": "PIERRE DE BRESSE" + "codePostal": "22720", + "codeCommune": "22335", + "libelleAcheminement": "SENVEN LEHART", + "nomCommune": "SENVEN LEHART" }, { - "codePostal": "72500", - "codeCommune": "72311", - "libelleAcheminement": "ST PIERRE DE CHEVILLE", - "nomCommune": "ST PIERRE DE CHEVILLE" + "codePostal": "74440", + "codeCommune": "74276", + "libelleAcheminement": "TANINGES", + "nomCommune": "TANINGES" }, { - "codePostal": "48140", - "codeCommune": "48077", - "libelleAcheminement": "JULIANGES", - "nomCommune": "JULIANGES" + "codePostal": "62690", + "codeCommune": "62438", + "libelleAcheminement": "HERMAVILLE", + "nomCommune": "HERMAVILLE" }, { - "codePostal": "16140", - "codeCommune": "16083", - "libelleAcheminement": "CHARME", - "nomCommune": "CHARME" + "codePostal": "64460", + "codeCommune": "64111", + "libelleAcheminement": "BENTAYOU SEREE", + "nomCommune": "BENTAYOU SEREE" }, { - "codePostal": "71270", - "codeCommune": "71355", - "libelleAcheminement": "PONTOUX", - "nomCommune": "PONTOUX" + "codePostal": "74490", + "codeCommune": "74241", + "libelleAcheminement": "ST JEOIRE EN FAUCIGNY", + "nomCommune": "ST JEOIRE" }, { - "codePostal": "72430", - "codeCommune": "72312", - "libelleAcheminement": "ST PIERRE DES BOIS", - "nomCommune": "ST PIERRE DES BOIS" + "codePostal": "22640", + "codeCommune": "22341", + "libelleAcheminement": "TRAMAIN", + "nomCommune": "TRAMAIN" }, { - "codePostal": "48250", - "codeCommune": "48086", - "libelleAcheminement": "LUC", - "nomCommune": "LUC" + "codePostal": "74150", + "codeCommune": "74289", + "libelleAcheminement": "VALLIERES SUR FIER", + "nomCommune": "VALLIERES SUR FIER" }, { - "codePostal": "16480", - "codeCommune": "16091", - "libelleAcheminement": "CHATIGNAC", - "nomCommune": "CHATIGNAC" + "codePostal": "62530", + "codeCommune": "62443", + "libelleAcheminement": "HERSIN COUPIGNY", + "nomCommune": "HERSIN COUPIGNY" }, { - "codePostal": "71230", - "codeCommune": "71356", - "libelleAcheminement": "POUILLOUX", - "nomCommune": "POUILLOUX" + "codePostal": "64230", + "codeCommune": "64121", + "libelleAcheminement": "BEYRIE EN BEARN", + "nomCommune": "BEYRIE EN BEARN" }, { - "codePostal": "72240", - "codeCommune": "72321", - "libelleAcheminement": "ST SYMPHORIEN", - "nomCommune": "ST SYMPHORIEN" + "codePostal": "74160", + "codeCommune": "74243", + "libelleAcheminement": "ST JULIEN EN GENEVOIS", + "nomCommune": "ST JULIEN EN GENEVOIS" }, { - "codePostal": "48500", - "codeCommune": "48094", - "libelleAcheminement": "MASSEGROS CAUSSES GORGES", - "nomCommune": "MASSEGROS CAUSSES GORGES" + "codePostal": "22250", + "codeCommune": "22348", + "libelleAcheminement": "TREDIAS", + "nomCommune": "TREDIAS" }, { - "codePostal": "16310", - "codeCommune": "16096", - "libelleAcheminement": "CHERVES CHATELARS", - "nomCommune": "CHERVES CHATELARS" + "codePostal": "74150", + "codeCommune": "74289", + "libelleAcheminement": "VALLIERES SUR FIER", + "nomCommune": "VALLIERES SUR FIER" }, { - "codePostal": "71570", - "codeCommune": "71362", - "libelleAcheminement": "PRUZILLY", - "nomCommune": "PRUZILLY" + "codePostal": "62360", + "codeCommune": "62448", + "libelleAcheminement": "HESDIN L ABBE", + "nomCommune": "HESDIN L ABBE" }, { - "codePostal": "72160", - "codeCommune": "72331", - "libelleAcheminement": "SCEAUX SUR HUISNE", - "nomCommune": "SCEAUX SUR HUISNE" + "codePostal": "64780", + "codeCommune": "64124", + "libelleAcheminement": "BIDARRAY", + "nomCommune": "BIDARRAY" }, { - "codePostal": "48000", - "codeCommune": "48095", - "libelleAcheminement": "MENDE", - "nomCommune": "MENDE" + "codePostal": "74800", + "codeCommune": "74244", + "libelleAcheminement": "ST LAURENT", + "nomCommune": "ST LAURENT" }, { - "codePostal": "16240", - "codeCommune": "16098", - "libelleAcheminement": "LA CHEVRERIE", - "nomCommune": "LA CHEVRERIE" + "codePostal": "22220", + "codeCommune": "22362", + "libelleAcheminement": "TREGUIER", + "nomCommune": "TREGUIER" }, { - "codePostal": "71310", - "codeCommune": "71364", - "libelleAcheminement": "LA RACINEUSE", - "nomCommune": "LA RACINEUSE" + "codePostal": "74660", + "codeCommune": "74290", + "libelleAcheminement": "VALLORCINE", + "nomCommune": "VALLORCINE" }, { - "codePostal": "72290", - "codeCommune": "72340", - "libelleAcheminement": "SOULIGNE SOUS BALLON", - "nomCommune": "SOULIGNE SOUS BALLON" + "codePostal": "62990", + "codeCommune": "62449", + "libelleAcheminement": "HESMOND", + "nomCommune": "HESMOND" }, { - "codePostal": "48300", - "codeCommune": "48105", - "libelleAcheminement": "NAUSSAC FONTANES", - "nomCommune": "NAUSSAC FONTANES" + "codePostal": "64400", + "codeCommune": "64126", + "libelleAcheminement": "BIDOS", + "nomCommune": "BIDOS" }, { - "codePostal": "16150", - "codeCommune": "16100", - "libelleAcheminement": "CHIRAC", - "nomCommune": "CHIRAC" + "codePostal": "74700", + "codeCommune": "74256", + "libelleAcheminement": "SALLANCHES", + "nomCommune": "SALLANCHES" }, { - "codePostal": "71570", - "codeCommune": "71372", - "libelleAcheminement": "ROMANECHE THORINS", - "nomCommune": "ROMANECHE THORINS" + "codePostal": "22100", + "codeCommune": "22364", + "libelleAcheminement": "TRELIVAN", + "nomCommune": "TRELIVAN" }, { - "codePostal": "72370", - "codeCommune": "72341", - "libelleAcheminement": "SOULITRE", - "nomCommune": "SOULITRE" + "codePostal": "74160", + "codeCommune": "74296", + "libelleAcheminement": "VERS", + "nomCommune": "VERS" }, { - "codePostal": "48310", - "codeCommune": "48106", - "libelleAcheminement": "NOALHAC", - "nomCommune": "NOALHAC" + "codePostal": "62232", + "codeCommune": "62454", + "libelleAcheminement": "HINGES", + "nomCommune": "HINGES" }, { - "codePostal": "16700", - "codeCommune": "16110", - "libelleAcheminement": "COURCOME", - "nomCommune": "COURCOME" + "codePostal": "64260", + "codeCommune": "64128", + "libelleAcheminement": "BILHERES", + "nomCommune": "BILHERES" }, { - "codePostal": "71390", - "codeCommune": "71374", - "libelleAcheminement": "ROSEY", - "nomCommune": "ROSEY" + "codePostal": "74700", + "codeCommune": "74256", + "libelleAcheminement": "SALLANCHES", + "nomCommune": "SALLANCHES" }, { - "codePostal": "72540", - "codeCommune": "72348", - "libelleAcheminement": "TASSILLE", - "nomCommune": "TASSILLE" + "codePostal": "22490", + "codeCommune": "22368", + "libelleAcheminement": "TREMEREUC", + "nomCommune": "TREMEREUC" }, { - "codePostal": "48140", - "codeCommune": "48110", - "libelleAcheminement": "PAULHAC EN MARGERIDE", - "nomCommune": "PAULHAC EN MARGERIDE" + "codePostal": "74290", + "codeCommune": "74299", + "libelleAcheminement": "VEYRIER DU LAC", + "nomCommune": "VEYRIER DU LAC" }, { - "codePostal": "16400", - "codeCommune": "16113", - "libelleAcheminement": "LA COURONNE", - "nomCommune": "LA COURONNE" + "codePostal": "62910", + "codeCommune": "62458", + "libelleAcheminement": "HOULLE", + "nomCommune": "HOULLE" }, { - "codePostal": "71160", - "codeCommune": "71382", - "libelleAcheminement": "ST AGNAN", - "nomCommune": "ST AGNAN" + "codePostal": "64300", + "codeCommune": "64135", + "libelleAcheminement": "BONNUT", + "nomCommune": "BONNUT" }, { - "codePostal": "72600", - "codeCommune": "72374", - "libelleAcheminement": "VILLAINES LA CARELLE", - "nomCommune": "VILLAINES LA CARELLE" + "codePostal": "74420", + "codeCommune": "74261", + "libelleAcheminement": "SAXEL", + "nomCommune": "SAXEL" }, { - "codePostal": "48000", - "codeCommune": "48111", - "libelleAcheminement": "PELOUSE", - "nomCommune": "PELOUSE" + "codePostal": "22340", + "codeCommune": "22373", + "libelleAcheminement": "TREOGAN", + "nomCommune": "TREOGAN" }, { - "codePostal": "16460", - "codeCommune": "16114", - "libelleAcheminement": "COUTURE", - "nomCommune": "COUTURE" + "codePostal": "74250", + "codeCommune": "74304", + "libelleAcheminement": "VILLE EN SALLAZ", + "nomCommune": "VILLE EN SALLAZ" }, { - "codePostal": "71240", - "codeCommune": "71384", - "libelleAcheminement": "ST AMBREUIL", - "nomCommune": "ST AMBREUIL" + "codePostal": "62630", + "codeCommune": "62460", + "libelleAcheminement": "HUBERSENT", + "nomCommune": "HUBERSENT" }, { - "codePostal": "72150", - "codeCommune": "72376", - "libelleAcheminement": "VILLAINES SOUS LUCE", - "nomCommune": "VILLAINES SOUS LUCE" + "codePostal": "64490", + "codeCommune": "64136", + "libelleAcheminement": "BORCE", + "nomCommune": "BORCE" }, { - "codePostal": "48200", - "codeCommune": "48121", - "libelleAcheminement": "PRUNIERES", - "nomCommune": "PRUNIERES" + "codePostal": "74930", + "codeCommune": "74262", + "libelleAcheminement": "SCIENTRIER", + "nomCommune": "SCIENTRIER" }, { - "codePostal": "16210", - "codeCommune": "16117", - "libelleAcheminement": "CURAC", - "nomCommune": "CURAC" + "codePostal": "22800", + "codeCommune": "22386", + "libelleAcheminement": "LE VIEUX BOURG", + "nomCommune": "LE VIEUX BOURG" }, { - "codePostal": "71300", - "codeCommune": "71390", - "libelleAcheminement": "ST BERAIN SOUS SANVIGNES", - "nomCommune": "ST BERAIN SOUS SANVIGNES" + "codePostal": "74350", + "codeCommune": "74306", + "libelleAcheminement": "VILLY LE BOUVERET", + "nomCommune": "VILLY LE BOUVERET" }, { - "codePostal": "72270", - "codeCommune": "72377", - "libelleAcheminement": "VILLAINES SOUS MALICORNE", - "nomCommune": "VILLAINES SOUS MALICORNE" + "codePostal": "62410", + "codeCommune": "62464", + "libelleAcheminement": "HULLUCH", + "nomCommune": "HULLUCH" }, { - "codePostal": "48100", - "codeCommune": "48124", - "libelleAcheminement": "RECOULES DE FUMAS", - "nomCommune": "RECOULES DE FUMAS" + "codePostal": "64800", + "codeCommune": "64137", + "libelleAcheminement": "BORDERES", + "nomCommune": "BORDERES" }, { - "codePostal": "16410", - "codeCommune": "16119", - "libelleAcheminement": "DIGNAC", - "nomCommune": "DIGNAC" + "codePostal": "74320", + "codeCommune": "74267", + "libelleAcheminement": "SEVRIER", + "nomCommune": "SEVRIER" }, { - "codePostal": "71510", - "codeCommune": "71391", - "libelleAcheminement": "ST BERAIN SUR DHEUNE", - "nomCommune": "ST BERAIN SUR DHEUNE" + "codePostal": "23150", + "codeCommune": "23001", + "libelleAcheminement": "AHUN", + "nomCommune": "AHUN" }, { - "codePostal": "72170", - "codeCommune": "72380", - "libelleAcheminement": "VIVOIN", - "nomCommune": "VIVOIN" + "codePostal": "74580", + "codeCommune": "74309", + "libelleAcheminement": "VIRY", + "nomCommune": "VIRY" }, { - "codePostal": "48600", - "codeCommune": "48139", - "libelleAcheminement": "ST BONNET LAVAL", - "nomCommune": "ST BONNET LAVAL" + "codePostal": "62360", + "codeCommune": "62474", + "libelleAcheminement": "ISQUES", + "nomCommune": "ISQUES" }, { - "codePostal": "16170", - "codeCommune": "16123", - "libelleAcheminement": "ECHALLAT", - "nomCommune": "ECHALLAT" + "codePostal": "64410", + "codeCommune": "64143", + "libelleAcheminement": "BOUILLON", + "nomCommune": "BOUILLON" }, { - "codePostal": "71460", - "codeCommune": "71400", - "libelleAcheminement": "ST CLEMENT SUR GUYE", - "nomCommune": "ST CLEMENT SUR GUYE" + "codePostal": "74430", + "codeCommune": "74271", + "libelleAcheminement": "SEYTROUX", + "nomCommune": "SEYTROUX" }, { - "codePostal": "72160", - "codeCommune": "72383", - "libelleAcheminement": "VOUVRAY SUR HUISNE", - "nomCommune": "VOUVRAY SUR HUISNE" + "codePostal": "23200", + "codeCommune": "23003", + "libelleAcheminement": "ALLEYRAT", + "nomCommune": "ALLEYRAT" }, { - "codePostal": "48600", - "codeCommune": "48139", - "libelleAcheminement": "ST BONNET LAVAL", - "nomCommune": "ST BONNET LAVAL" + "codePostal": "74250", + "codeCommune": "74311", + "libelleAcheminement": "VIUZ EN SALLAZ", + "nomCommune": "VIUZ EN SALLAZ" }, { - "codePostal": "16210", - "codeCommune": "16130", - "libelleAcheminement": "LES ESSARDS", - "nomCommune": "LES ESSARDS" + "codePostal": "62830", + "codeCommune": "62483", + "libelleAcheminement": "LACRES", + "nomCommune": "LACRES" }, { - "codePostal": "71740", - "codeCommune": "71408", - "libelleAcheminement": "ST EDMOND", - "nomCommune": "ST EDMOND" + "codePostal": "64370", + "codeCommune": "64144", + "libelleAcheminement": "BOUMOURT", + "nomCommune": "BOUMOURT" }, { - "codePostal": "73210", - "codeCommune": "73006", - "libelleAcheminement": "AIME LA PLAGNE", - "nomCommune": "AIME LA PLAGNE" + "codePostal": "74740", + "codeCommune": "74273", + "libelleAcheminement": "SIXT FER A CHEVAL", + "nomCommune": "SIXT FER A CHEVAL" }, { - "codePostal": "48600", - "codeCommune": "48139", - "libelleAcheminement": "ST BONNET LAVAL", - "nomCommune": "ST BONNET LAVAL" + "codePostal": "23480", + "codeCommune": "23007", + "libelleAcheminement": "ARS", + "nomCommune": "ARS" }, { - "codePostal": "16250", - "codeCommune": "16133", - "libelleAcheminement": "ETRIAC", - "nomCommune": "ETRIAC" + "codePostal": "74350", + "codeCommune": "74313", + "libelleAcheminement": "VOVRAY EN BORNES", + "nomCommune": "VOVRAY EN BORNES" }, { - "codePostal": "71490", - "codeCommune": "71409", - "libelleAcheminement": "ST EMILAND", - "nomCommune": "ST EMILAND" + "codePostal": "62610", + "codeCommune": "62488", + "libelleAcheminement": "LANDRETHUN LES ARDRES", + "nomCommune": "LANDRETHUN LES ARDRES" }, { - "codePostal": "73410", - "codeCommune": "73010", - "libelleAcheminement": "ENTRELACS", - "nomCommune": "ENTRELACS" + "codePostal": "64330", + "codeCommune": "64153", + "libelleAcheminement": "BUROSSE MENDOUSSE", + "nomCommune": "BUROSSE MENDOUSSE" }, { - "codePostal": "48110", - "codeCommune": "48144", - "libelleAcheminement": "STE CROIX VALLEE FRANCAISE", - "nomCommune": "STE CROIX VALLEE FRANCAISE" + "codePostal": "74210", + "codeCommune": "74275", + "libelleAcheminement": "TALLOIRES MONTMIN", + "nomCommune": "TALLOIRES MONTMIN" }, { - "codePostal": "16200", - "codeCommune": "16139", - "libelleAcheminement": "FLEURAC", - "nomCommune": "FLEURAC" + "codePostal": "23170", + "codeCommune": "23009", + "libelleAcheminement": "AUGE", + "nomCommune": "AUGE" }, { - "codePostal": "71670", - "codeCommune": "71413", - "libelleAcheminement": "ST FIRMIN", - "nomCommune": "ST FIRMIN" + "codePostal": "75001", + "codeCommune": "75101", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 01" }, { - "codePostal": "73220", - "codeCommune": "73019", - "libelleAcheminement": "ARGENTINE", - "nomCommune": "ARGENTINE" + "codePostal": "62840", + "codeCommune": "62491", + "libelleAcheminement": "LAVENTIE", + "nomCommune": "LAVENTIE" }, { - "codePostal": "48000", - "codeCommune": "48147", - "libelleAcheminement": "ST ETIENNE DU VALDONNEZ", - "nomCommune": "ST ETIENNE DU VALDONNEZ" + "codePostal": "64250", + "codeCommune": "64160", + "libelleAcheminement": "CAMBO LES BAINS", + "nomCommune": "CAMBO LES BAINS" }, { - "codePostal": "16140", - "codeCommune": "16144", - "libelleAcheminement": "FOUQUEURE", - "nomCommune": "FOUQUEURE" + "codePostal": "74370", + "codeCommune": "74282", + "libelleAcheminement": "FILLIERE", + "nomCommune": "FILLIERE" }, { - "codePostal": "71370", - "codeCommune": "71420", - "libelleAcheminement": "ST GERMAIN DU PLAIN", - "nomCommune": "ST GERMAIN DU PLAIN" + "codePostal": "23260", + "codeCommune": "23017", + "libelleAcheminement": "BASVILLE", + "nomCommune": "BASVILLE" }, { - "codePostal": "73000", - "codeCommune": "73029", - "libelleAcheminement": "BARBERAZ", - "nomCommune": "BARBERAZ" + "codePostal": "75004", + "codeCommune": "75104", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 04" }, { - "codePostal": "48120", - "codeCommune": "48149", - "libelleAcheminement": "STE EULALIE", - "nomCommune": "STE EULALIE" + "codePostal": "62990", + "codeCommune": "62492", + "libelleAcheminement": "LEBIEZ", + "nomCommune": "LEBIEZ" }, { - "codePostal": "16130", - "codeCommune": "16150", - "libelleAcheminement": "GENSAC LA PALLUE", - "nomCommune": "GENSAC LA PALLUE" + "codePostal": "64520", + "codeCommune": "64161", + "libelleAcheminement": "CAME", + "nomCommune": "CAME" }, { - "codePostal": "71460", - "codeCommune": "71427", - "libelleAcheminement": "ST HURUGE", - "nomCommune": "ST HURUGE" + "codePostal": "74570", + "codeCommune": "74282", + "libelleAcheminement": "FILLIERE", + "nomCommune": "FILLIERE" }, { - "codePostal": "73000", - "codeCommune": "73031", - "libelleAcheminement": "BASSENS", - "nomCommune": "BASSENS" + "codePostal": "23140", + "codeCommune": "23023", + "libelleAcheminement": "BLAUDEIX", + "nomCommune": "BLAUDEIX" }, { - "codePostal": "48160", - "codeCommune": "48152", - "libelleAcheminement": "VENTALON EN CEVENNES", - "nomCommune": "VENTALON EN CEVENNES" + "codePostal": "75006", + "codeCommune": "75106", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 06" }, { - "codePostal": "16130", - "codeCommune": "16151", - "libelleAcheminement": "GENTE", - "nomCommune": "GENTE" + "codePostal": "62170", + "codeCommune": "62499", + "libelleAcheminement": "LEPINE", + "nomCommune": "LEPINE" }, { - "codePostal": "71170", - "codeCommune": "71428", - "libelleAcheminement": "ST IGNY DE ROCHE", - "nomCommune": "ST IGNY DE ROCHE" + "codePostal": "64360", + "codeCommune": "64165", + "libelleAcheminement": "CARDESSE", + "nomCommune": "CARDESSE" }, { - "codePostal": "73460", - "codeCommune": "73048", - "libelleAcheminement": "BONVILLARD", - "nomCommune": "BONVILLARD" + "codePostal": "74150", + "codeCommune": "74283", + "libelleAcheminement": "THUSY", + "nomCommune": "THUSY" }, { - "codePostal": "48700", - "codeCommune": "48153", - "libelleAcheminement": "ST GAL", - "nomCommune": "ST GAL" + "codePostal": "23400", + "codeCommune": "23030", + "libelleAcheminement": "BOURGANEUF", + "nomCommune": "BOURGANEUF" }, { - "codePostal": "16130", - "codeCommune": "16152", - "libelleAcheminement": "GIMEUX", - "nomCommune": "GIMEUX" + "codePostal": "75007", + "codeCommune": "75107", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 07" }, { - "codePostal": "71490", - "codeCommune": "71431", - "libelleAcheminement": "ST JEAN DE TREZY", - "nomCommune": "ST JEAN DE TREZY" + "codePostal": "62990", + "codeCommune": "62501", + "libelleAcheminement": "LESPINOY", + "nomCommune": "LESPINOY" }, { - "codePostal": "73370", - "codeCommune": "73050", - "libelleAcheminement": "BOURDEAU", - "nomCommune": "BOURDEAU" + "codePostal": "64220", + "codeCommune": "64166", + "libelleAcheminement": "CARO", + "nomCommune": "CARO" }, { - "codePostal": "48190", - "codeCommune": "48157", - "libelleAcheminement": "STE HELENE", - "nomCommune": "STE HELENE" + "codePostal": "74520", + "codeCommune": "74288", + "libelleAcheminement": "VALLEIRY", + "nomCommune": "VALLEIRY" }, { - "codePostal": "16160", - "codeCommune": "16154", - "libelleAcheminement": "GOND PONTOUVRE", - "nomCommune": "GOND PONTOUVRE" + "codePostal": "23600", + "codeCommune": "23031", + "libelleAcheminement": "BOUSSAC", + "nomCommune": "BOUSSAC" }, { - "codePostal": "71800", - "codeCommune": "71433", - "libelleAcheminement": "ST JULIEN DE CIVRY", - "nomCommune": "ST JULIEN DE CIVRY" + "codePostal": "75014", + "codeCommune": "75114", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 14" }, { - "codePostal": "73700", - "codeCommune": "73054", - "libelleAcheminement": "BOURG ST MAURICE", - "nomCommune": "BOURG ST MAURICE" + "codePostal": "62250", + "codeCommune": "62503", + "libelleAcheminement": "LEUBRINGHEN", + "nomCommune": "LEUBRINGHEN" }, { - "codePostal": "48170", - "codeCommune": "48160", - "libelleAcheminement": "ST JEAN LA FOUILLOUSE", - "nomCommune": "ST JEAN LA FOUILLOUSE" + "codePostal": "64260", + "codeCommune": "64175", + "libelleAcheminement": "CASTET", + "nomCommune": "CASTET" }, { - "codePostal": "16200", - "codeCommune": "16165", - "libelleAcheminement": "HOULETTE", - "nomCommune": "HOULETTE" + "codePostal": "74150", + "codeCommune": "74289", + "libelleAcheminement": "VALLIERES SUR FIER", + "nomCommune": "VALLIERES SUR FIER" }, { - "codePostal": "71110", - "codeCommune": "71434", - "libelleAcheminement": "ST JULIEN DE JONZY", - "nomCommune": "ST JULIEN DE JONZY" + "codePostal": "23600", + "codeCommune": "23032", + "libelleAcheminement": "BOUSSAC BOURG", + "nomCommune": "BOUSSAC BOURG" }, { - "codePostal": "73200", - "codeCommune": "73061", - "libelleAcheminement": "CESARCHES", - "nomCommune": "CESARCHES" + "codePostal": "75017", + "codeCommune": "75117", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 17" }, { - "codePostal": "48160", - "codeCommune": "48163", - "libelleAcheminement": "ST JULIEN DES POINTS", - "nomCommune": "ST JULIEN DES POINTS" + "codePostal": "62500", + "codeCommune": "62504", + "libelleAcheminement": "LEULINGHEM", + "nomCommune": "LEULINGHEM" }, { - "codePostal": "16560", - "codeCommune": "16168", - "libelleAcheminement": "JAULDES", - "nomCommune": "JAULDES" + "codePostal": "64300", + "codeCommune": "64177", + "libelleAcheminement": "CASTETIS", + "nomCommune": "CASTETIS" }, { - "codePostal": "71350", - "codeCommune": "71443", - "libelleAcheminement": "ST LOUP GEANGES", - "nomCommune": "ST LOUP GEANGES" + "codePostal": "74270", + "codeCommune": "74291", + "libelleAcheminement": "VANZY", + "nomCommune": "VANZY" }, { - "codePostal": "73390", - "codeCommune": "73068", - "libelleAcheminement": "CHAMOUSSET", - "nomCommune": "CHAMOUSSET" + "codePostal": "23480", + "codeCommune": "23043", + "libelleAcheminement": "CHAMBERAUD", + "nomCommune": "CHAMBERAUD" }, { - "codePostal": "48160", - "codeCommune": "48170", - "libelleAcheminement": "ST MARTIN DE BOUBAUX", - "nomCommune": "ST MARTIN DE BOUBAUX" + "codePostal": "76640", + "codeCommune": "76002", + "libelleAcheminement": "ALVIMARE", + "nomCommune": "ALVIMARE" }, { - "codePostal": "16300", - "codeCommune": "16176", - "libelleAcheminement": "LACHAISE", - "nomCommune": "LACHAISE" + "codePostal": "62800", + "codeCommune": "62510", + "libelleAcheminement": "LIEVIN", + "nomCommune": "LIEVIN" }, { - "codePostal": "71460", - "codeCommune": "71446", - "libelleAcheminement": "ST MARCELIN DE CRAY", - "nomCommune": "ST MARCELIN DE CRAY" + "codePostal": "64350", + "codeCommune": "64182", + "libelleAcheminement": "CASTILLON DE LEMBEYE", + "nomCommune": "CASTILLON DE LEMBEYE" }, { - "codePostal": "73240", - "codeCommune": "73070", - "libelleAcheminement": "CHAMPAGNEUX", - "nomCommune": "CHAMPAGNEUX" + "codePostal": "74420", + "codeCommune": "74301", + "libelleAcheminement": "VILLARD", + "nomCommune": "VILLARD" }, { - "codePostal": "48340", - "codeCommune": "48175", - "libelleAcheminement": "ST PIERRE DE NOGARET", - "nomCommune": "ST PIERRE DE NOGARET" + "codePostal": "23250", + "codeCommune": "23051", + "libelleAcheminement": "LA CHAPELLE ST MARTIAL", + "nomCommune": "LA CHAPELLE ST MARTIAL" }, { - "codePostal": "16310", - "codeCommune": "16183", - "libelleAcheminement": "LESIGNAC DURAND", - "nomCommune": "LESIGNAC DURAND" + "codePostal": "76370", + "codeCommune": "76008", + "libelleAcheminement": "ANCOURT", + "nomCommune": "ANCOURT" }, { - "codePostal": "71490", - "codeCommune": "71450", - "libelleAcheminement": "ST MARTIN DE COMMUNE", - "nomCommune": "ST MARTIN DE COMMUNE" + "codePostal": "62960", + "codeCommune": "62512", + "libelleAcheminement": "LIGNY LES AIRE", + "nomCommune": "LIGNY LES AIRE" }, { - "codePostal": "73370", - "codeCommune": "73076", - "libelleAcheminement": "LA CHAPELLE DU MONT DU CHAT", - "nomCommune": "LA CHAPELLE DU MONT DU CHAT" + "codePostal": "64170", + "codeCommune": "64184", + "libelleAcheminement": "CESCAU", + "nomCommune": "CESCAU" }, { - "codePostal": "48170", - "codeCommune": "48182", - "libelleAcheminement": "ST SAUVEUR DE GINESTOUX", - "nomCommune": "ST SAUVEUR DE GINESTOUX" + "codePostal": "74230", + "codeCommune": "74302", + "libelleAcheminement": "LES VILLARDS SUR THONES", + "nomCommune": "LES VILLARDS SUR THONES" }, { - "codePostal": "16730", - "codeCommune": "16187", - "libelleAcheminement": "LINARS", - "nomCommune": "LINARS" + "codePostal": "23000", + "codeCommune": "23052", + "libelleAcheminement": "LA CHAPELLE TAILLEFERT", + "nomCommune": "LA CHAPELLE TAILLEFERT" }, { - "codePostal": "71510", - "codeCommune": "71480", - "libelleAcheminement": "ST SERNIN DU PLAIN", - "nomCommune": "ST SERNIN DU PLAIN" + "codePostal": "76540", + "codeCommune": "76011", + "libelleAcheminement": "ANCRETTEVILLE SUR MER", + "nomCommune": "ANCRETTEVILLE SUR MER" }, { - "codePostal": "73700", - "codeCommune": "73077", - "libelleAcheminement": "LES CHAPELLES", - "nomCommune": "LES CHAPELLES" + "codePostal": "62190", + "codeCommune": "62516", + "libelleAcheminement": "LILLERS", + "nomCommune": "LILLERS" }, { - "codePostal": "48700", - "codeCommune": "48188", - "libelleAcheminement": "SERVERETTE", - "nomCommune": "SERVERETTE" + "codePostal": "64130", + "codeCommune": "64187", + "libelleAcheminement": "CHARRITTE DE BAS", + "nomCommune": "CHARRITTE DE BAS" }, { - "codePostal": "16700", - "codeCommune": "16189", - "libelleAcheminement": "LONDIGNY", - "nomCommune": "LONDIGNY" + "codePostal": "74500", + "codeCommune": "74308", + "libelleAcheminement": "VINZIER", + "nomCommune": "VINZIER" }, { - "codePostal": "71150", - "codeCommune": "71496", - "libelleAcheminement": "SAMPIGNY LES MARANGES", - "nomCommune": "SAMPIGNY LES MARANGES" + "codePostal": "23700", + "codeCommune": "23053", + "libelleAcheminement": "CHARD", + "nomCommune": "CHARD" }, { - "codePostal": "73660", - "codeCommune": "73083", - "libelleAcheminement": "LES CHAVANNES EN MAURIENNE", - "nomCommune": "LES CHAVANNES EN MAURIENNE" + "codePostal": "76110", + "codeCommune": "76012", + "libelleAcheminement": "ANGERVILLE BAILLEUL", + "nomCommune": "ANGERVILLE BAILLEUL" }, { - "codePostal": "48800", - "codeCommune": "48198", - "libelleAcheminement": "VILLEFORT", - "nomCommune": "VILLEFORT" + "codePostal": "62120", + "codeCommune": "62517", + "libelleAcheminement": "LINGHEM", + "nomCommune": "LINGHEM" }, { - "codePostal": "16240", - "codeCommune": "16190", - "libelleAcheminement": "LONGRE", - "nomCommune": "LONGRE" + "codePostal": "64800", + "codeCommune": "64191", + "libelleAcheminement": "COARRAZE", + "nomCommune": "COARRAZE" }, { - "codePostal": "71390", - "codeCommune": "71501", - "libelleAcheminement": "SASSANGY", - "nomCommune": "SASSANGY" + "codePostal": "75005", + "codeCommune": "75105", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 05" }, { - "codePostal": "73160", - "codeCommune": "73087", - "libelleAcheminement": "COGNIN", - "nomCommune": "COGNIN" + "codePostal": "23200", + "codeCommune": "23059", + "libelleAcheminement": "LA CHAUSSADE", + "nomCommune": "LA CHAUSSADE" }, { - "codePostal": "49700", - "codeCommune": "49003", - "libelleAcheminement": "TUFFALUN", - "nomCommune": "TUFFALUN" + "codePostal": "76880", + "codeCommune": "76026", + "libelleAcheminement": "ARQUES LA BATAILLE", + "nomCommune": "ARQUES LA BATAILLE" }, { - "codePostal": "16270", - "codeCommune": "16192", - "libelleAcheminement": "TERRES DE HAUTE CHARENTE", - "nomCommune": "TERRES DE HAUTE CHARENTE" + "codePostal": "62540", + "codeCommune": "62532", + "libelleAcheminement": "LOZINGHEM", + "nomCommune": "LOZINGHEM" }, { - "codePostal": "71530", - "codeCommune": "71502", - "libelleAcheminement": "SASSENAY", - "nomCommune": "SASSENAY" + "codePostal": "64360", + "codeCommune": "64197", + "libelleAcheminement": "CUQUERON", + "nomCommune": "CUQUERON" }, { - "codePostal": "73310", - "codeCommune": "73091", - "libelleAcheminement": "CONJUX", - "nomCommune": "CONJUX" + "codePostal": "75008", + "codeCommune": "75108", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 08" }, { - "codePostal": "49700", - "codeCommune": "49003", - "libelleAcheminement": "TUFFALUN", - "nomCommune": "TUFFALUN" + "codePostal": "23220", + "codeCommune": "23062", + "libelleAcheminement": "CHENIERS", + "nomCommune": "CHENIERS" }, { - "codePostal": "16270", - "codeCommune": "16192", - "libelleAcheminement": "TERRES DE HAUTE CHARENTE", - "nomCommune": "TERRES DE HAUTE CHARENTE" + "codePostal": "76550", + "codeCommune": "76030", + "libelleAcheminement": "AUBERMESNIL BEAUMAIS", + "nomCommune": "AUBERMESNIL BEAUMAIS" }, { - "codePostal": "71350", - "codeCommune": "71504", - "libelleAcheminement": "SAUNIERES", - "nomCommune": "SAUNIERES" + "codePostal": "62310", + "codeCommune": "62533", + "libelleAcheminement": "LUGY", + "nomCommune": "LUGY" }, { - "codePostal": "73110", - "codeCommune": "73099", - "libelleAcheminement": "DETRIER", - "nomCommune": "DETRIER" + "codePostal": "64230", + "codeCommune": "64198", + "libelleAcheminement": "DENGUIN", + "nomCommune": "DENGUIN" }, { - "codePostal": "49260", - "codeCommune": "49011", - "libelleAcheminement": "ARTANNES SUR THOUET", - "nomCommune": "ARTANNES SUR THOUET" + "codePostal": "75011", + "codeCommune": "75111", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 11" }, { - "codePostal": "16240", - "codeCommune": "16197", - "libelleAcheminement": "LA MAGDELEINE", - "nomCommune": "LA MAGDELEINE" + "codePostal": "23140", + "codeCommune": "23068", + "libelleAcheminement": "CRESSAT", + "nomCommune": "CRESSAT" }, { - "codePostal": "71460", - "codeCommune": "71505", - "libelleAcheminement": "SAVIANGES", - "nomCommune": "SAVIANGES" + "codePostal": "76450", + "codeCommune": "76032", + "libelleAcheminement": "AUBERVILLE LA MANUEL", + "nomCommune": "AUBERVILLE LA MANUEL" }, { - "codePostal": "73250", - "codeCommune": "73120", - "libelleAcheminement": "FRETERIVE", - "nomCommune": "FRETERIVE" + "codePostal": "62870", + "codeCommune": "62538", + "libelleAcheminement": "MAINTENAY", + "nomCommune": "MAINTENAY" }, { - "codePostal": "49150", - "codeCommune": "49018", - "libelleAcheminement": "BAUGE EN ANJOU", - "nomCommune": "BAUGE EN ANJOU" + "codePostal": "64450", + "codeCommune": "64203", + "libelleAcheminement": "DOUMY", + "nomCommune": "DOUMY" }, { - "codePostal": "16140", - "codeCommune": "16221", - "libelleAcheminement": "MONS", - "nomCommune": "MONS" + "codePostal": "75016", + "codeCommune": "75116", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 16" }, { - "codePostal": "71460", - "codeCommune": "71507", - "libelleAcheminement": "SAVIGNY SUR GROSNE", - "nomCommune": "SAVIGNY SUR GROSNE" + "codePostal": "23320", + "codeCommune": "23088", + "libelleAcheminement": "GARTEMPE", + "nomCommune": "GARTEMPE" }, { - "codePostal": "73200", - "codeCommune": "73130", - "libelleAcheminement": "GRIGNON", - "nomCommune": "GRIGNON" + "codePostal": "76850", + "codeCommune": "76034", + "libelleAcheminement": "VAL DE SCIE", + "nomCommune": "VAL DE SCIE" }, { - "codePostal": "49320", - "codeCommune": "49050", - "libelleAcheminement": "BRISSAC LOIRE AUBANCE", - "nomCommune": "BRISSAC LOIRE AUBANCE" + "codePostal": "62620", + "codeCommune": "62540", + "libelleAcheminement": "MAISNIL LES RUITZ", + "nomCommune": "MAISNIL LES RUITZ" }, { - "codePostal": "16620", - "codeCommune": "16222", - "libelleAcheminement": "MONTBOYER", - "nomCommune": "MONTBOYER" + "codePostal": "64420", + "codeCommune": "64211", + "libelleAcheminement": "ESLOURENTIES DABAN", + "nomCommune": "ESLOURENTIES DABAN" }, { - "codePostal": "71330", - "codeCommune": "71514", - "libelleAcheminement": "SENS SUR SEILLE", - "nomCommune": "SENS SUR SEILLE" + "codePostal": "75020", + "codeCommune": "75120", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 20" }, { - "codePostal": "73300", - "codeCommune": "73135", - "libelleAcheminement": "LA TOUR EN MAURIENNE", - "nomCommune": "LA TOUR EN MAURIENNE" + "codePostal": "23230", + "codeCommune": "23093", + "libelleAcheminement": "GOUZON", + "nomCommune": "GOUZON" }, { - "codePostal": "49700", - "codeCommune": "49053", - "libelleAcheminement": "BROSSAY", - "nomCommune": "BROSSAY" + "codePostal": "76730", + "codeCommune": "76036", + "libelleAcheminement": "AUPPEGARD", + "nomCommune": "AUPPEGARD" }, { - "codePostal": "16220", - "codeCommune": "16223", - "libelleAcheminement": "MONTBRON", - "nomCommune": "MONTBRON" + "codePostal": "62127", + "codeCommune": "62542", + "libelleAcheminement": "MAIZIERES", + "nomCommune": "MAIZIERES" }, { - "codePostal": "71460", - "codeCommune": "71515", - "libelleAcheminement": "SERCY", - "nomCommune": "SERCY" + "codePostal": "64390", + "codeCommune": "64215", + "libelleAcheminement": "ESPIUTE", + "nomCommune": "ESPIUTE" }, { - "codePostal": "73800", - "codeCommune": "73141", - "libelleAcheminement": "LAISSAUD", - "nomCommune": "LAISSAUD" + "codePostal": "76116", + "codeCommune": "76046", + "libelleAcheminement": "AUZOUVILLE SUR RY", + "nomCommune": "AUZOUVILLE SUR RY" }, { - "codePostal": "49310", - "codeCommune": "49057", - "libelleAcheminement": "CERNUSSON", - "nomCommune": "CERNUSSON" + "codePostal": "23170", + "codeCommune": "23106", + "libelleAcheminement": "LEPAUD", + "nomCommune": "LEPAUD" }, { - "codePostal": "16310", - "codeCommune": "16225", - "libelleAcheminement": "MONTEMBOEUF", - "nomCommune": "MONTEMBOEUF" + "codePostal": "76520", + "codeCommune": "76039", + "libelleAcheminement": "LES AUTHIEUX SUR LE PORT ST OUEN", + "nomCommune": "LES AUTHIEUX SUR LE PORT ST OUEN" }, { - "codePostal": "71290", - "codeCommune": "71522", - "libelleAcheminement": "SIMANDRE", - "nomCommune": "SIMANDRE" + "codePostal": "62120", + "codeCommune": "62543", + "libelleAcheminement": "MAMETZ", + "nomCommune": "MAMETZ" }, { - "codePostal": "73200", - "codeCommune": "73154", - "libelleAcheminement": "MERCURY", - "nomCommune": "MERCURY" + "codePostal": "64220", + "codeCommune": "64218", + "libelleAcheminement": "ESTERENCUBY", + "nomCommune": "ESTERENCUBY" }, { - "codePostal": "49270", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "76630", + "codeCommune": "76049", + "libelleAcheminement": "AVESNES EN VAL", + "nomCommune": "AVESNES EN VAL" }, { - "codePostal": "16330", - "codeCommune": "16226", - "libelleAcheminement": "MONTIGNAC CHARENTE", - "nomCommune": "MONTIGNAC CHARENTE" + "codePostal": "23170", + "codeCommune": "23114", + "libelleAcheminement": "LUSSAT", + "nomCommune": "LUSSAT" }, { - "codePostal": "71960", - "codeCommune": "71526", - "libelleAcheminement": "SOLUTRE POUILLY", - "nomCommune": "SOLUTRE POUILLY" + "codePostal": "76270", + "codeCommune": "76042", + "libelleAcheminement": "AUVILLIERS", + "nomCommune": "AUVILLIERS" }, { - "codePostal": "73460", - "codeCommune": "73162", - "libelleAcheminement": "MONTAILLEUR", - "nomCommune": "MONTAILLEUR" + "codePostal": "62650", + "codeCommune": "62545", + "libelleAcheminement": "MANINGHEM", + "nomCommune": "MANINGHEM" }, { - "codePostal": "49530", - "codeCommune": "49069", - "libelleAcheminement": "OREE D ANJOU", - "nomCommune": "OREE D ANJOU" + "codePostal": "64450", + "codeCommune": "64232", + "libelleAcheminement": "GARLEDE MONDEBAT", + "nomCommune": "GARLEDE MONDEBAT" }, { - "codePostal": "16190", - "codeCommune": "16230", - "libelleAcheminement": "MONTMOREAU", - "nomCommune": "MONTMOREAU" + "codePostal": "76190", + "codeCommune": "76055", + "libelleAcheminement": "BAONS LE COMTE", + "nomCommune": "BAONS LE COMTE" }, { - "codePostal": "71220", - "codeCommune": "71529", - "libelleAcheminement": "SUIN", - "nomCommune": "SUIN" + "codePostal": "23700", + "codeCommune": "23116", + "libelleAcheminement": "MAINSAT", + "nomCommune": "MAINSAT" }, { - "codePostal": "73200", - "codeCommune": "73170", - "libelleAcheminement": "MONTHION", - "nomCommune": "MONTHION" + "codePostal": "76220", + "codeCommune": "76048", + "libelleAcheminement": "AVESNES EN BRAY", + "nomCommune": "AVESNES EN BRAY" }, { - "codePostal": "49140", - "codeCommune": "49076", - "libelleAcheminement": "LA CHAPELLE ST LAUD", - "nomCommune": "LA CHAPELLE ST LAUD" + "codePostal": "62170", + "codeCommune": "62547", + "libelleAcheminement": "MARANT", + "nomCommune": "MARANT" }, { - "codePostal": "16190", - "codeCommune": "16230", - "libelleAcheminement": "MONTMOREAU", - "nomCommune": "MONTMOREAU" + "codePostal": "64530", + "codeCommune": "64238", + "libelleAcheminement": "GER", + "nomCommune": "GER" }, { - "codePostal": "71190", - "codeCommune": "71531", - "libelleAcheminement": "LA TAGNIERE", - "nomCommune": "LA TAGNIERE" + "codePostal": "76260", + "codeCommune": "76058", + "libelleAcheminement": "BAROMESNIL", + "nomCommune": "BAROMESNIL" }, { - "codePostal": "73870", - "codeCommune": "73173", - "libelleAcheminement": "MONTRICHER ALBANNE", - "nomCommune": "MONTRICHER ALBANNE" + "codePostal": "23360", + "codeCommune": "23130", + "libelleAcheminement": "MEASNES", + "nomCommune": "MEASNES" }, { - "codePostal": "49330", - "codeCommune": "49080", - "libelleAcheminement": "LES HAUTS D ANJOU", - "nomCommune": "LES HAUTS D ANJOU" + "codePostal": "76730", + "codeCommune": "76050", + "libelleAcheminement": "AVREMESNIL", + "nomCommune": "AVREMESNIL" }, { - "codePostal": "16190", - "codeCommune": "16230", - "libelleAcheminement": "MONTMOREAU", - "nomCommune": "MONTMOREAU" + "codePostal": "62990", + "codeCommune": "62551", + "libelleAcheminement": "MARENLA", + "nomCommune": "MARENLA" }, { - "codePostal": "71270", - "codeCommune": "71541", - "libelleAcheminement": "TORPES", - "nomCommune": "TORPES" + "codePostal": "64400", + "codeCommune": "64245", + "libelleAcheminement": "GOES", + "nomCommune": "GOES" }, { - "codePostal": "73340", - "codeCommune": "73178", - "libelleAcheminement": "LA MOTTE EN BAUGES", - "nomCommune": "LA MOTTE EN BAUGES" + "codePostal": "76630", + "codeCommune": "76071", + "libelleAcheminement": "BELLENGREVILLE", + "nomCommune": "BELLENGREVILLE" }, { - "codePostal": "49380", - "codeCommune": "49086", - "libelleAcheminement": "TERRANJOU", - "nomCommune": "TERRANJOU" + "codePostal": "23800", + "codeCommune": "23141", + "libelleAcheminement": "NAILLAT", + "nomCommune": "NAILLAT" }, { - "codePostal": "16290", - "codeCommune": "16234", - "libelleAcheminement": "MOULIDARS", - "nomCommune": "MOULIDARS" + "codePostal": "76730", + "codeCommune": "76051", + "libelleAcheminement": "BACQUEVILLE EN CAUX", + "nomCommune": "BACQUEVILLE EN CAUX" }, { - "codePostal": "71700", - "codeCommune": "71543", - "libelleAcheminement": "TOURNUS", - "nomCommune": "TOURNUS" + "codePostal": "62170", + "codeCommune": "62556", + "libelleAcheminement": "MARLES SUR CANCHE", + "nomCommune": "MARLES SUR CANCHE" }, { - "codePostal": "73310", - "codeCommune": "73180", - "libelleAcheminement": "MOTZ", - "nomCommune": "MOTZ" + "codePostal": "64390", + "codeCommune": "64251", + "libelleAcheminement": "GUINARTHE PARENTIES", + "nomCommune": "GUINARTHE PARENTIES" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "76440", + "codeCommune": "76074", + "libelleAcheminement": "LA BELLIERE", + "nomCommune": "LA BELLIERE" }, { - "codePostal": "16460", - "codeCommune": "16237", - "libelleAcheminement": "MOUTON", - "nomCommune": "MOUTON" + "codePostal": "23200", + "codeCommune": "23142", + "libelleAcheminement": "NEOUX", + "nomCommune": "NEOUX" }, { - "codePostal": "71520", - "codeCommune": "71545", - "libelleAcheminement": "TRAMAYES", - "nomCommune": "TRAMAYES" + "codePostal": "76340", + "codeCommune": "76059", + "libelleAcheminement": "BAZINVAL", + "nomCommune": "BAZINVAL" }, { - "codePostal": "73260", - "codeCommune": "73187", - "libelleAcheminement": "LA LECHERE", - "nomCommune": "LA LECHERE" + "codePostal": "62310", + "codeCommune": "62565", + "libelleAcheminement": "MENCAS", + "nomCommune": "MENCAS" }, { - "codePostal": "49120", - "codeCommune": "49092", - "libelleAcheminement": "CHEMILLE EN ANJOU", - "nomCommune": "CHEMILLE EN ANJOU" + "codePostal": "64400", + "codeCommune": "64252", + "libelleAcheminement": "GURMENCON", + "nomCommune": "GURMENCON" }, { - "codePostal": "16440", - "codeCommune": "16244", - "libelleAcheminement": "NERSAC", - "nomCommune": "NERSAC" + "codePostal": "76210", + "codeCommune": "76082", + "libelleAcheminement": "BERNIERES", + "nomCommune": "BERNIERES" }, { - "codePostal": "71520", - "codeCommune": "71547", - "libelleAcheminement": "TRIVY", - "nomCommune": "TRIVY" + "codePostal": "23600", + "codeCommune": "23146", + "libelleAcheminement": "NOUZERINES", + "nomCommune": "NOUZERINES" }, { - "codePostal": "73260", - "codeCommune": "73187", - "libelleAcheminement": "LA LECHERE", - "nomCommune": "LA LECHERE" + "codePostal": "76890", + "codeCommune": "76066", + "libelleAcheminement": "BEAUTOT", + "nomCommune": "BEAUTOT" }, { - "codePostal": "49300", - "codeCommune": "49099", - "libelleAcheminement": "CHOLET", - "nomCommune": "CHOLET" + "codePostal": "62890", + "codeCommune": "62567", + "libelleAcheminement": "MENTQUE NORTBECOURT", + "nomCommune": "MENTQUE NORTBECOURT" }, { - "codePostal": "16480", - "codeCommune": "16256", - "libelleAcheminement": "PASSIRAC", - "nomCommune": "PASSIRAC" + "codePostal": "64640", + "codeCommune": "64259", + "libelleAcheminement": "HELETTE", + "nomCommune": "HELETTE" }, { - "codePostal": "71440", - "codeCommune": "71568", - "libelleAcheminement": "VERISSEY", - "nomCommune": "VERISSEY" + "codePostal": "76590", + "codeCommune": "76085", + "libelleAcheminement": "BERTREVILLE ST OUEN", + "nomCommune": "BERTREVILLE ST OUEN" }, { - "codePostal": "73130", - "codeCommune": "73189", - "libelleAcheminement": "NOTRE DAME DU CRUET", - "nomCommune": "NOTRE DAME DU CRUET" + "codePostal": "23000", + "codeCommune": "23150", + "libelleAcheminement": "PEYRABOUT", + "nomCommune": "PEYRABOUT" }, { - "codePostal": "49260", - "codeCommune": "49112", - "libelleAcheminement": "LE COUDRAY MACOUARD", - "nomCommune": "LE COUDRAY MACOUARD" + "codePostal": "76110", + "codeCommune": "76068", + "libelleAcheminement": "BEC DE MORTAGNE", + "nomCommune": "BEC DE MORTAGNE" }, { - "codePostal": "16150", - "codeCommune": "16270", - "libelleAcheminement": "PRESSIGNAC", - "nomCommune": "PRESSIGNAC" + "codePostal": "62270", + "codeCommune": "62576", + "libelleAcheminement": "MONCHEAUX LES FREVENT", + "nomCommune": "MONCHEAUX LES FREVENT" }, { - "codePostal": "71620", - "codeCommune": "71577", - "libelleAcheminement": "VILLEGAUDIN", - "nomCommune": "VILLEGAUDIN" + "codePostal": "64270", + "codeCommune": "64263", + "libelleAcheminement": "L HOPITAL D ORION", + "nomCommune": "L HOPITAL D ORION" }, { - "codePostal": "73710", - "codeCommune": "73206", - "libelleAcheminement": "PRALOGNAN LA VANOISE", - "nomCommune": "PRALOGNAN LA VANOISE" + "codePostal": "76560", + "codeCommune": "76087", + "libelleAcheminement": "BERVILLE EN CAUX", + "nomCommune": "BERVILLE EN CAUX" }, { - "codePostal": "49260", - "codeCommune": "49113", - "libelleAcheminement": "COURCHAMPS", - "nomCommune": "COURCHAMPS" + "codePostal": "23140", + "codeCommune": "23154", + "libelleAcheminement": "PIONNAT", + "nomCommune": "PIONNAT" }, { - "codePostal": "16240", - "codeCommune": "16273", - "libelleAcheminement": "RAIX", - "nomCommune": "RAIX" + "codePostal": "76890", + "codeCommune": "76072", + "libelleAcheminement": "BELLEVILLE EN CAUX", + "nomCommune": "BELLEVILLE EN CAUX" }, { - "codePostal": "71110", - "codeCommune": "71581", - "libelleAcheminement": "VINDECY", - "nomCommune": "VINDECY" + "codePostal": "62123", + "codeCommune": "62586", + "libelleAcheminement": "MONTENESCOURT", + "nomCommune": "MONTENESCOURT" }, { - "codePostal": "73220", - "codeCommune": "73212", - "libelleAcheminement": "VAL D ARC", - "nomCommune": "VAL D ARC" + "codePostal": "64800", + "codeCommune": "64270", + "libelleAcheminement": "IGON", + "nomCommune": "IGON" }, { - "codePostal": "49400", - "codeCommune": "49123", - "libelleAcheminement": "DISTRE", - "nomCommune": "DISTRE" + "codePostal": "76210", + "codeCommune": "76092", + "libelleAcheminement": "BEUZEVILLETTE", + "nomCommune": "BEUZEVILLETTE" }, { - "codePostal": "16170", - "codeCommune": "16286", - "libelleAcheminement": "ROUILLAC", - "nomCommune": "ROUILLAC" + "codePostal": "23260", + "codeCommune": "23156", + "libelleAcheminement": "PONTCHARRAUD", + "nomCommune": "PONTCHARRAUD" }, { - "codePostal": "71260", - "codeCommune": "71591", - "libelleAcheminement": "FLEURVILLE", - "nomCommune": "FLEURVILLE" + "codePostal": "76590", + "codeCommune": "76075", + "libelleAcheminement": "BELMESNIL", + "nomCommune": "BELMESNIL" }, { - "codePostal": "73220", - "codeCommune": "73212", - "libelleAcheminement": "VAL D ARC", - "nomCommune": "VAL D ARC" + "codePostal": "62640", + "codeCommune": "62587", + "libelleAcheminement": "MONTIGNY EN GOHELLE", + "nomCommune": "MONTIGNY EN GOHELLE" }, { - "codePostal": "49700", - "codeCommune": "49125", - "libelleAcheminement": "DOUE EN ANJOU", - "nomCommune": "DOUE EN ANJOU" + "codePostal": "64240", + "codeCommune": "64277", + "libelleAcheminement": "ISTURITS", + "nomCommune": "ISTURITS" }, { - "codePostal": "16220", - "codeCommune": "16290", - "libelleAcheminement": "ROUZEDE", - "nomCommune": "ROUZEDE" + "codePostal": "76420", + "codeCommune": "76095", + "libelleAcheminement": "BIHOREL", + "nomCommune": "BIHOREL" }, { - "codePostal": "72700", - "codeCommune": "72003", - "libelleAcheminement": "ALLONNES", - "nomCommune": "ALLONNES" + "codePostal": "23110", + "codeCommune": "23160", + "libelleAcheminement": "RETERRE", + "nomCommune": "RETERRE" }, { - "codePostal": "73730", - "codeCommune": "73216", - "libelleAcheminement": "ROGNAIX", - "nomCommune": "ROGNAIX" + "codePostal": "76480", + "codeCommune": "76088", + "libelleAcheminement": "BERVILLE SUR SEINE", + "nomCommune": "BERVILLE SUR SEINE" }, { - "codePostal": "49430", - "codeCommune": "49127", - "libelleAcheminement": "DURTAL", - "nomCommune": "DURTAL" + "codePostal": "62170", + "codeCommune": "62588", + "libelleAcheminement": "MONTREUIL", + "nomCommune": "MONTREUIL" }, { - "codePostal": "16700", - "codeCommune": "16292", - "libelleAcheminement": "RUFFEC", - "nomCommune": "RUFFEC" + "codePostal": "64260", + "codeCommune": "64280", + "libelleAcheminement": "IZESTE", + "nomCommune": "IZESTE" }, { - "codePostal": "72200", - "codeCommune": "72022", - "libelleAcheminement": "LE BAILLEUL", - "nomCommune": "LE BAILLEUL" + "codePostal": "76116", + "codeCommune": "76100", + "libelleAcheminement": "BLAINVILLE CREVON", + "nomCommune": "BLAINVILLE CREVON" }, { - "codePostal": "73230", - "codeCommune": "73222", - "libelleAcheminement": "ST ALBAN LEYSSE", - "nomCommune": "ST ALBAN LEYSSE" + "codePostal": "23270", + "codeCommune": "23162", + "libelleAcheminement": "ROCHES", + "nomCommune": "ROCHES" }, { - "codePostal": "49460", - "codeCommune": "49135", - "libelleAcheminement": "FENEU", - "nomCommune": "FENEU" + "codePostal": "76220", + "codeCommune": "76093", + "libelleAcheminement": "BEZANCOURT", + "nomCommune": "BEZANCOURT" }, { - "codePostal": "16230", - "codeCommune": "16300", - "libelleAcheminement": "VAL DE BONNIEURE", - "nomCommune": "VAL DE BONNIEURE" + "codePostal": "62144", + "codeCommune": "62589", + "libelleAcheminement": "MONT ST ELOI", + "nomCommune": "MONT ST ELOI" }, { - "codePostal": "72290", - "codeCommune": "72023", - "libelleAcheminement": "BALLON ST MARS", - "nomCommune": "BALLON ST MARS" + "codePostal": "64220", + "codeCommune": "64283", + "libelleAcheminement": "JAXU", + "nomCommune": "JAXU" }, { - "codePostal": "73500", - "codeCommune": "73223", - "libelleAcheminement": "ST ANDRE", - "nomCommune": "ST ANDRE" + "codePostal": "76240", + "codeCommune": "76103", + "libelleAcheminement": "BONSECOURS", + "nomCommune": "BONSECOURS" }, { - "codePostal": "49250", - "codeCommune": "49138", - "libelleAcheminement": "LES BOIS D ANJOU", - "nomCommune": "LES BOIS D ANJOU" + "codePostal": "23250", + "codeCommune": "23168", + "libelleAcheminement": "SARDENT", + "nomCommune": "SARDENT" }, { - "codePostal": "16230", - "codeCommune": "16300", - "libelleAcheminement": "VAL DE BONNIEURE", - "nomCommune": "VAL DE BONNIEURE" + "codePostal": "76750", + "codeCommune": "76094", + "libelleAcheminement": "BIERVILLE", + "nomCommune": "BIERVILLE" }, { - "codePostal": "72610", - "codeCommune": "72034", - "libelleAcheminement": "BERUS", - "nomCommune": "BERUS" + "codePostal": "62130", + "codeCommune": "62590", + "libelleAcheminement": "MONTS EN TERNOIS", + "nomCommune": "MONTS EN TERNOIS" }, { - "codePostal": "73130", - "codeCommune": "73224", - "libelleAcheminement": "ST AVRE", - "nomCommune": "ST AVRE" + "codePostal": "64110", + "codeCommune": "64284", + "libelleAcheminement": "JURANCON", + "nomCommune": "JURANCON" }, { - "codePostal": "49590", - "codeCommune": "49140", - "libelleAcheminement": "FONTEVRAUD L ABBAYE", - "nomCommune": "FONTEVRAUD L ABBAYE" + "codePostal": "76160", + "codeCommune": "76111", + "libelleAcheminement": "BOIS L EVEQUE", + "nomCommune": "BOIS L EVEQUE" }, { - "codePostal": "16480", - "codeCommune": "16315", - "libelleAcheminement": "ST FELIX", - "nomCommune": "ST FELIX" + "codePostal": "23000", + "codeCommune": "23169", + "libelleAcheminement": "LA SAUNIERE", + "nomCommune": "LA SAUNIERE" }, { - "codePostal": "72350", - "codeCommune": "72050", - "libelleAcheminement": "BRULON", - "nomCommune": "BRULON" + "codePostal": "76340", + "codeCommune": "76101", + "libelleAcheminement": "BLANGY SUR BRESLE", + "nomCommune": "BLANGY SUR BRESLE" }, { - "codePostal": "73120", - "codeCommune": "73227", - "libelleAcheminement": "COURCHEVEL", - "nomCommune": "COURCHEVEL" + "codePostal": "62910", + "codeCommune": "62592", + "libelleAcheminement": "MORINGHEM", + "nomCommune": "MORINGHEM" }, { - "codePostal": "49123", - "codeCommune": "49160", - "libelleAcheminement": "INGRANDES LE FRESNE SUR LOIRE", - "nomCommune": "INGRANDES LE FRESNE SUR LOIRE" + "codePostal": "64170", + "codeCommune": "64288", + "libelleAcheminement": "LABASTIDE CEZERACQ", + "nomCommune": "LABASTIDE CEZERACQ" }, { - "codePostal": "16700", - "codeCommune": "16325", - "libelleAcheminement": "ST GOURSON", - "nomCommune": "ST GOURSON" + "codePostal": "76210", + "codeCommune": "76115", + "libelleAcheminement": "BOLLEVILLE", + "nomCommune": "BOLLEVILLE" }, { - "codePostal": "72210", - "codeCommune": "72075", - "libelleAcheminement": "CHEMIRE LE GAUDIN", - "nomCommune": "CHEMIRE LE GAUDIN" + "codePostal": "23300", + "codeCommune": "23176", + "libelleAcheminement": "LA SOUTERRAINE", + "nomCommune": "LA SOUTERRAINE" }, { - "codePostal": "73130", - "codeCommune": "73230", - "libelleAcheminement": "ST COLOMBAN DES VILLARDS", - "nomCommune": "ST COLOMBAN DES VILLARDS" + "codePostal": "76750", + "codeCommune": "76109", + "libelleAcheminement": "BOIS HEROULT", + "nomCommune": "BOIS HEROULT" }, { - "codePostal": "49123", - "codeCommune": "49160", - "libelleAcheminement": "INGRANDES LE FRESNE SUR LOIRE", - "nomCommune": "INGRANDES LE FRESNE SUR LOIRE" + "codePostal": "62159", + "codeCommune": "62594", + "libelleAcheminement": "MORY", + "nomCommune": "MORY" }, { - "codePostal": "16170", - "codeCommune": "16339", - "libelleAcheminement": "VAL D AUGE", - "nomCommune": "VAL D AUGE" + "codePostal": "64240", + "codeCommune": "64289", + "libelleAcheminement": "LA BASTIDE CLAIRENCE", + "nomCommune": "LA BASTIDE CLAIRENCE" }, { - "codePostal": "72600", - "codeCommune": "72086", - "libelleAcheminement": "COMMERVEIL", - "nomCommune": "COMMERVEIL" + "codePostal": "76750", + "codeCommune": "76120", + "libelleAcheminement": "BOSC BORDEL", + "nomCommune": "BOSC BORDEL" }, { - "codePostal": "73130", - "codeCommune": "73235", - "libelleAcheminement": "ST FRANCOIS LONGCHAMP", - "nomCommune": "ST FRANCOIS LONGCHAMP" + "codePostal": "23300", + "codeCommune": "23177", + "libelleAcheminement": "ST AGNANT DE VERSILLAT", + "nomCommune": "ST AGNANT DE VERSILLAT" }, { - "codePostal": "49320", - "codeCommune": "49167", - "libelleAcheminement": "LES GARENNES SUR LOIRE", - "nomCommune": "LES GARENNES SUR LOIRE" + "codePostal": "76270", + "codeCommune": "76122", + "libelleAcheminement": "CALLENGEVILLE", + "nomCommune": "CALLENGEVILLE" }, { - "codePostal": "16170", - "codeCommune": "16339", - "libelleAcheminement": "VAL D AUGE", - "nomCommune": "VAL D AUGE" + "codePostal": "62180", + "codeCommune": "62602", + "libelleAcheminement": "NEMPONT ST FIRMIN", + "nomCommune": "NEMPONT ST FIRMIN" }, { - "codePostal": "72240", - "codeCommune": "72089", - "libelleAcheminement": "CONLIE", - "nomCommune": "CONLIE" + "codePostal": "64530", + "codeCommune": "64292", + "libelleAcheminement": "LABATMALE", + "nomCommune": "LABATMALE" }, { - "codePostal": "73240", - "codeCommune": "73236", - "libelleAcheminement": "ST GENIX LES VILLAGES", - "nomCommune": "ST GENIX LES VILLAGES" + "codePostal": "76750", + "codeCommune": "76121", + "libelleAcheminement": "BOSC EDELINE", + "nomCommune": "BOSC EDELINE" }, { - "codePostal": "49330", - "codeCommune": "49170", - "libelleAcheminement": "JUVARDEIL", - "nomCommune": "JUVARDEIL" + "codePostal": "23000", + "codeCommune": "23186", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "16300", - "codeCommune": "16342", - "libelleAcheminement": "ST PALAIS DU NE", - "nomCommune": "ST PALAIS DU NE" + "codePostal": "76850", + "codeCommune": "76125", + "libelleAcheminement": "BOSC LE HARD", + "nomCommune": "BOSC LE HARD" }, { - "codePostal": "72140", - "codeCommune": "72109", - "libelleAcheminement": "CRISSE", - "nomCommune": "CRISSE" + "codePostal": "62770", + "codeCommune": "62605", + "libelleAcheminement": "NEULETTE", + "nomCommune": "NEULETTE" }, { - "codePostal": "73220", - "codeCommune": "73237", - "libelleAcheminement": "ST GEORGES D HURTIERES", - "nomCommune": "ST GEORGES D HURTIERES" + "codePostal": "64470", + "codeCommune": "64298", + "libelleAcheminement": "LACARRY ARHAN CHARRITTE DE HAUT", + "nomCommune": "LACARRY ARHAN CHARRITTE DE HAUT" }, { - "codePostal": "49440", - "codeCommune": "49178", - "libelleAcheminement": "LOIRE", - "nomCommune": "LOIRE" + "codePostal": "76680", + "codeCommune": "76126", + "libelleAcheminement": "BOSC MESNIL", + "nomCommune": "BOSC MESNIL" }, { - "codePostal": "16210", - "codeCommune": "16346", - "libelleAcheminement": "ST QUENTIN DE CHALAIS", - "nomCommune": "ST QUENTIN DE CHALAIS" + "codePostal": "23160", + "codeCommune": "23199", + "libelleAcheminement": "ST GERMAIN BEAUPRE", + "nomCommune": "ST GERMAIN BEAUPRE" }, { - "codePostal": "72130", - "codeCommune": "72121", - "libelleAcheminement": "DOUILLET LE JOLY", - "nomCommune": "DOUILLET" + "codePostal": "76560", + "codeCommune": "76129", + "libelleAcheminement": "BOUDEVILLE", + "nomCommune": "BOUDEVILLE" }, { - "codePostal": "73230", - "codeCommune": "73243", - "libelleAcheminement": "ST JEAN D ARVEY", - "nomCommune": "ST JEAN D ARVEY" + "codePostal": "62124", + "codeCommune": "62608", + "libelleAcheminement": "NEUVILLE BOURJONVAL", + "nomCommune": "NEUVILLE BOURJONVAL" }, { - "codePostal": "49160", - "codeCommune": "49180", - "libelleAcheminement": "LONGUE JUMELLES", - "nomCommune": "LONGUE JUMELLES" + "codePostal": "64170", + "codeCommune": "64300", + "libelleAcheminement": "LACQ", + "nomCommune": "LACQ" }, { - "codePostal": "16390", - "codeCommune": "16350", - "libelleAcheminement": "ST SEVERIN", - "nomCommune": "ST SEVERIN" + "codePostal": "76890", + "codeCommune": "76153", + "libelleAcheminement": "CALLEVILLE LES DEUX EGLISES", + "nomCommune": "CALLEVILLE LES DEUX EGLISES" }, { - "codePostal": "72160", - "codeCommune": "72122", - "libelleAcheminement": "DUNEAU", - "nomCommune": "DUNEAU" + "codePostal": "23250", + "codeCommune": "23202", + "libelleAcheminement": "ST HILAIRE LE CHATEAU", + "nomCommune": "ST HILAIRE LE CHATEAU" }, { - "codePostal": "73250", - "codeCommune": "73247", - "libelleAcheminement": "ST JEAN DE LA PORTE", - "nomCommune": "ST JEAN DE LA PORTE" + "codePostal": "76740", + "codeCommune": "76133", + "libelleAcheminement": "LE BOURG DUN", + "nomCommune": "LE BOURG DUN" }, { - "codePostal": "49140", - "codeCommune": "49194", - "libelleAcheminement": "MAZE MILON", - "nomCommune": "MAZE MILON" + "codePostal": "62580", + "codeCommune": "62609", + "libelleAcheminement": "NEUVILLE ST VAAST", + "nomCommune": "NEUVILLE ST VAAST" }, { - "codePostal": "16220", - "codeCommune": "16353", - "libelleAcheminement": "ST SORNIN", - "nomCommune": "ST SORNIN" + "codePostal": "64990", + "codeCommune": "64304", + "libelleAcheminement": "LAHONCE", + "nomCommune": "LAHONCE" }, { - "codePostal": "72330", - "codeCommune": "72135", - "libelleAcheminement": "LA FONTAINE ST MARTIN", - "nomCommune": "LA FONTAINE ST MARTIN" + "codePostal": "76380", + "codeCommune": "76157", + "libelleAcheminement": "CANTELEU", + "nomCommune": "CANTELEU" }, { - "codePostal": "73870", - "codeCommune": "73250", - "libelleAcheminement": "ST JULIEN MONT DENIS", - "nomCommune": "ST JULIEN MONT DENIS" + "codePostal": "23150", + "codeCommune": "23214", + "libelleAcheminement": "ST MARTIAL LE MONT", + "nomCommune": "ST MARTIAL LE MONT" }, { - "codePostal": "49770", - "codeCommune": "49200", - "libelleAcheminement": "LONGUENEE EN ANJOU", - "nomCommune": "LONGUENEE EN ANJOU" + "codePostal": "76680", + "codeCommune": "76139", + "libelleAcheminement": "BRADIANCOURT", + "nomCommune": "BRADIANCOURT" }, { - "codePostal": "16480", - "codeCommune": "16354", - "libelleAcheminement": "STE SOULINE", - "nomCommune": "STE SOULINE" + "codePostal": "62185", + "codeCommune": "62615", + "libelleAcheminement": "NIELLES LES CALAIS", + "nomCommune": "NIELLES LES CALAIS" }, { - "codePostal": "72610", - "codeCommune": "72137", - "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", - "nomCommune": "VILLENEUVE EN PERSEIGNE" + "codePostal": "64450", + "codeCommune": "64308", + "libelleAcheminement": "LALONQUETTE", + "nomCommune": "LALONQUETTE" }, { - "codePostal": "73600", - "codeCommune": "73257", - "libelleAcheminement": "LES BELLEVILLE", - "nomCommune": "LES BELLEVILLE" + "codePostal": "76190", + "codeCommune": "76160", + "libelleAcheminement": "CARVILLE LA FOLLETIERE", + "nomCommune": "CARVILLE LA FOLLETIERE" }, { - "codePostal": "49460", - "codeCommune": "49214", - "libelleAcheminement": "MONTREUIL JUIGNE", - "nomCommune": "MONTREUIL JUIGNE" + "codePostal": "23300", + "codeCommune": "23219", + "libelleAcheminement": "ST MAURICE LA SOUTERRAINE", + "nomCommune": "ST MAURICE LA SOUTERRAINE" }, { - "codePostal": "16190", - "codeCommune": "16362", - "libelleAcheminement": "SALLES LAVALETTE", - "nomCommune": "SALLES LAVALETTE" + "codePostal": "76220", + "codeCommune": "76142", + "libelleAcheminement": "BREMONTIER MERVAL", + "nomCommune": "BREMONTIER MERVAL" }, { - "codePostal": "72610", - "codeCommune": "72139", - "libelleAcheminement": "FYE", - "nomCommune": "FYE" + "codePostal": "62390", + "codeCommune": "62616", + "libelleAcheminement": "NOEUX LES AUXI", + "nomCommune": "NOEUX LES AUXI" }, { - "codePostal": "73130", - "codeCommune": "73259", - "libelleAcheminement": "ST MARTIN SUR LA CHAMBRE", - "nomCommune": "ST MARTIN SUR LA CHAMBRE" + "codePostal": "64300", + "codeCommune": "64312", + "libelleAcheminement": "LANNEPLAA", + "nomCommune": "LANNEPLAA" }, { - "codePostal": "49140", - "codeCommune": "49216", - "libelleAcheminement": "MONTREUIL SUR LOIR", - "nomCommune": "MONTREUIL SUR LOIR" + "codePostal": "76490", + "codeCommune": "76164", + "libelleAcheminement": "RIVES EN SEINE", + "nomCommune": "RIVES EN SEINE" }, { - "codePostal": "16310", - "codeCommune": "16364", - "libelleAcheminement": "SAUVAGNAC", - "nomCommune": "SAUVAGNAC" + "codePostal": "23200", + "codeCommune": "23220", + "libelleAcheminement": "ST MEDARD LA ROCHETTE", + "nomCommune": "ST MEDARD LA ROCHETTE" }, { - "codePostal": "72380", - "codeCommune": "72150", - "libelleAcheminement": "JOUE L ABBE", - "nomCommune": "JOUE L ABBE" + "codePostal": "76560", + "codeCommune": "76144", + "libelleAcheminement": "BRETTEVILLE ST LAURENT", + "nomCommune": "BRETTEVILLE ST LAURENT" }, { - "codePostal": "73410", - "codeCommune": "73265", - "libelleAcheminement": "ST OURS", - "nomCommune": "ST OURS" + "codePostal": "62490", + "codeCommune": "62627", + "libelleAcheminement": "NOYELLES SOUS BELLONNE", + "nomCommune": "NOYELLES SOUS BELLONNE" }, { - "codePostal": "49110", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "64110", + "codeCommune": "64315", + "libelleAcheminement": "LAROIN", + "nomCommune": "LAROIN" }, { - "codePostal": "16200", - "codeCommune": "16369", - "libelleAcheminement": "SIGOGNE", - "nomCommune": "SIGOGNE" + "codePostal": "76490", + "codeCommune": "76164", + "libelleAcheminement": "RIVES EN SEINE", + "nomCommune": "RIVES EN SEINE" }, { - "codePostal": "72200", - "codeCommune": "72154", - "libelleAcheminement": "LA FLECHE", - "nomCommune": "LA FLECHE" + "codePostal": "23430", + "codeCommune": "23230", + "libelleAcheminement": "ST PIERRE CHERIGNAT", + "nomCommune": "ST PIERRE CHERIGNAT" }, { - "codePostal": "73660", - "codeCommune": "73278", - "libelleAcheminement": "ST REMY DE MAURIENNE", - "nomCommune": "ST REMY DE MAURIENNE" + "codePostal": "76340", + "codeCommune": "76154", + "libelleAcheminement": "CAMPNEUSEVILLE", + "nomCommune": "CAMPNEUSEVILLE" }, { - "codePostal": "49110", - "codeCommune": "49218", - "libelleAcheminement": "MONTREVAULT SUR EVRE", - "nomCommune": "MONTREVAULT SUR EVRE" + "codePostal": "62270", + "codeCommune": "62631", + "libelleAcheminement": "NUNCQ HAUTECOTE", + "nomCommune": "NUNCQ HAUTECOTE" }, { - "codePostal": "16440", - "codeCommune": "16370", - "libelleAcheminement": "SIREUIL", - "nomCommune": "SIREUIL" + "codePostal": "64440", + "codeCommune": "64320", + "libelleAcheminement": "LARUNS", + "nomCommune": "LARUNS" }, { - "codePostal": "72320", - "codeCommune": "72156", - "libelleAcheminement": "LAMNAY", - "nomCommune": "LAMNAY" + "codePostal": "76690", + "codeCommune": "76179", + "libelleAcheminement": "CLERES", + "nomCommune": "CLERES" }, { - "codePostal": "73460", - "codeCommune": "73283", - "libelleAcheminement": "ST VITAL", - "nomCommune": "ST VITAL" + "codePostal": "23300", + "codeCommune": "23235", + "libelleAcheminement": "ST PRIEST LA FEUILLE", + "nomCommune": "ST PRIEST LA FEUILLE" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "76260", + "codeCommune": "76155", + "libelleAcheminement": "CANEHAN", + "nomCommune": "CANEHAN" }, { - "codePostal": "16240", - "codeCommune": "16373", - "libelleAcheminement": "SOUVIGNE", - "nomCommune": "SOUVIGNE" + "codePostal": "62860", + "codeCommune": "62638", + "libelleAcheminement": "OISY LE VERGER", + "nomCommune": "OISY LE VERGER" }, { - "codePostal": "72500", - "codeCommune": "72160", - "libelleAcheminement": "LAVERNAT", - "nomCommune": "LAVERNAT" + "codePostal": "64290", + "codeCommune": "64325", + "libelleAcheminement": "LASSEUBETAT", + "nomCommune": "LASSEUBETAT" }, { - "codePostal": "73600", - "codeCommune": "73284", - "libelleAcheminement": "SALINS FONTAINE", - "nomCommune": "SALINS FONTAINE" + "codePostal": "76640", + "codeCommune": "76181", + "libelleAcheminement": "CLEVILLE", + "nomCommune": "CLEVILLE" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "23400", + "codeCommune": "23237", + "libelleAcheminement": "ST PRIEST PALUS", + "nomCommune": "ST PRIEST PALUS" }, { - "codePostal": "16800", - "codeCommune": "16374", - "libelleAcheminement": "SOYAUX", - "nomCommune": "SOYAUX" + "codePostal": "76590", + "codeCommune": "76162", + "libelleAcheminement": "LE CATELIER", + "nomCommune": "LE CATELIER" }, { - "codePostal": "72610", - "codeCommune": "72164", - "libelleAcheminement": "LIVET EN SAOSNOIS", - "nomCommune": "LIVET EN SAOSNOIS" + "codePostal": "62380", + "codeCommune": "62644", + "libelleAcheminement": "OUVE WIRQUIN", + "nomCommune": "OUVE WIRQUIN" }, { - "codePostal": "73000", - "codeCommune": "73288", - "libelleAcheminement": "SONNAZ", - "nomCommune": "SONNAZ" + "codePostal": "64490", + "codeCommune": "64330", + "libelleAcheminement": "LEES ATHAS", + "nomCommune": "LEES ATHAS" }, { - "codePostal": "49490", - "codeCommune": "49228", - "libelleAcheminement": "NOYANT VILLAGES", - "nomCommune": "NOYANT VILLAGES" + "codePostal": "76440", + "codeCommune": "76185", + "libelleAcheminement": "COMPAINVILLE", + "nomCommune": "COMPAINVILLE" }, { - "codePostal": "16260", - "codeCommune": "16375", - "libelleAcheminement": "SUAUX", - "nomCommune": "SUAUX" + "codePostal": "23160", + "codeCommune": "23239", + "libelleAcheminement": "ST SEBASTIEN", + "nomCommune": "ST SEBASTIEN" }, { - "codePostal": "72600", - "codeCommune": "72171", - "libelleAcheminement": "LOUZES", - "nomCommune": "LOUZES" + "codePostal": "76390", + "codeCommune": "76166", + "libelleAcheminement": "LE CAULE STE BEUVE", + "nomCommune": "LE CAULE STE BEUVE" }, { - "codePostal": "73110", - "codeCommune": "73289", - "libelleAcheminement": "LA TABLE", - "nomCommune": "LA TABLE" + "codePostal": "62760", + "codeCommune": "62649", + "libelleAcheminement": "PAS EN ARTOIS", + "nomCommune": "PAS EN ARTOIS" }, { - "codePostal": "49410", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "64350", + "codeCommune": "64331", + "libelleAcheminement": "LEMBEYE", + "nomCommune": "LEMBEYE" }, { - "codePostal": "16360", - "codeCommune": "16380", - "libelleAcheminement": "LE TATRE", - "nomCommune": "LE TATRE" + "codePostal": "76740", + "codeCommune": "76190", + "libelleAcheminement": "CRASVILLE LA ROCQUEFORT", + "nomCommune": "CRASVILLE LA ROCQUEFORT" }, { - "codePostal": "72000", - "codeCommune": "72181", - "libelleAcheminement": "LE MANS", - "nomCommune": "LE MANS" + "codePostal": "23190", + "codeCommune": "23241", + "libelleAcheminement": "ST SILVAIN BELLEGARDE", + "nomCommune": "ST SILVAIN BELLEGARDE" }, { - "codePostal": "73480", - "codeCommune": "73290", - "libelleAcheminement": "VAL CENIS", - "nomCommune": "VAL CENIS" + "codePostal": "76590", + "codeCommune": "76168", + "libelleAcheminement": "LES CENT ACRES", + "nomCommune": "LES CENT ACRES" }, { - "codePostal": "49410", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "62127", + "codeCommune": "62651", + "libelleAcheminement": "PENIN", + "nomCommune": "PENIN" }, { - "codePostal": "16410", - "codeCommune": "16382", - "libelleAcheminement": "TORSAC", - "nomCommune": "TORSAC" + "codePostal": "64450", + "codeCommune": "64332", + "libelleAcheminement": "LEME", + "nomCommune": "LEME" }, { - "codePostal": "72540", - "codeCommune": "72184", - "libelleAcheminement": "MAREIL EN CHAMPAGNE", - "nomCommune": "MAREIL EN CHAMPAGNE" + "codePostal": "76111", + "codeCommune": "76194", + "libelleAcheminement": "CRIQUEBEUF EN CAUX", + "nomCommune": "CRIQUEBEUF EN CAUX" }, { - "codePostal": "73500", - "codeCommune": "73290", - "libelleAcheminement": "VAL CENIS", - "nomCommune": "VAL CENIS" + "codePostal": "23300", + "codeCommune": "23258", + "libelleAcheminement": "VAREILLES", + "nomCommune": "VAREILLES" }, { - "codePostal": "49570", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "76660", + "codeCommune": "76175", + "libelleAcheminement": "CLAIS", + "nomCommune": "CLAIS" }, { - "codePostal": "16730", - "codeCommune": "16388", - "libelleAcheminement": "TROIS PALIS", - "nomCommune": "TROIS PALIS" + "codePostal": "62550", + "codeCommune": "62652", + "libelleAcheminement": "PERNES", + "nomCommune": "PERNES" }, { - "codePostal": "72170", - "codeCommune": "72186", - "libelleAcheminement": "MARESCHE", - "nomCommune": "MARESCHE" + "codePostal": "64230", + "codeCommune": "64335", + "libelleAcheminement": "LESCAR", + "nomCommune": "LESCAR" }, { - "codePostal": "73500", - "codeCommune": "73290", - "libelleAcheminement": "VAL CENIS", - "nomCommune": "VAL CENIS" + "codePostal": "76720", + "codeCommune": "76204", + "libelleAcheminement": "CROPUS", + "nomCommune": "CROPUS" }, { - "codePostal": "49620", - "codeCommune": "49244", - "libelleAcheminement": "MAUGES SUR LOIRE", - "nomCommune": "MAUGES SUR LOIRE" + "codePostal": "23140", + "codeCommune": "23262", + "libelleAcheminement": "VIGEVILLE", + "nomCommune": "VIGEVILLE" }, { - "codePostal": "16330", - "codeCommune": "16401", - "libelleAcheminement": "VERVANT", - "nomCommune": "VERVANT" + "codePostal": "76400", + "codeCommune": "76183", + "libelleAcheminement": "COLLEVILLE", + "nomCommune": "COLLEVILLE" }, { - "codePostal": "72220", - "codeCommune": "72187", - "libelleAcheminement": "MARIGNE LAILLE", - "nomCommune": "MARIGNE LAILLE" + "codePostal": "62126", + "codeCommune": "62653", + "libelleAcheminement": "PERNES LES BOULOGNE", + "nomCommune": "PERNES LES BOULOGNE" }, { - "codePostal": "73460", - "codeCommune": "73297", - "libelleAcheminement": "TOURNON", - "nomCommune": "TOURNON" + "codePostal": "64140", + "codeCommune": "64348", + "libelleAcheminement": "LONS", + "nomCommune": "LONS" }, { - "codePostal": "49420", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "76220", + "codeCommune": "76208", + "libelleAcheminement": "CUY ST FIACRE", + "nomCommune": "CUY ST FIACRE" }, { - "codePostal": "16240", - "codeCommune": "16409", - "libelleAcheminement": "VILLEFAGNAN", - "nomCommune": "VILLEFAGNAN" + "codePostal": "23260", + "codeCommune": "23265", + "libelleAcheminement": "LA VILLENEUVE", + "nomCommune": "LA VILLENEUVE" }, { - "codePostal": "72120", - "codeCommune": "72190", - "libelleAcheminement": "MAROLLES LES ST CALAIS", - "nomCommune": "MAROLLES LES ST CALAIS" + "codePostal": "76400", + "codeCommune": "76187", + "libelleAcheminement": "CONTREMOULINS", + "nomCommune": "CONTREMOULINS" }, { - "codePostal": "73170", - "codeCommune": "73299", - "libelleAcheminement": "TRAIZE", - "nomCommune": "TRAIZE" + "codePostal": "62340", + "codeCommune": "62657", + "libelleAcheminement": "PIHEN LES GUINES", + "nomCommune": "PIHEN LES GUINES" }, { - "codePostal": "49420", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "64420", + "codeCommune": "64352", + "libelleAcheminement": "LOURENTIES", + "nomCommune": "LOURENTIES" }, { - "codePostal": "16240", - "codeCommune": "16413", - "libelleAcheminement": "VILLIERS LE ROUX", - "nomCommune": "VILLIERS LE ROUX" + "codePostal": "76340", + "codeCommune": "76211", + "libelleAcheminement": "DANCOURT", + "nomCommune": "DANCOURT" }, { - "codePostal": "72260", - "codeCommune": "72192", - "libelleAcheminement": "LES MEES", - "nomCommune": "LES MEES" + "codePostal": "24480", + "codeCommune": "24005", + "libelleAcheminement": "ALLES SUR DORDOGNE", + "nomCommune": "ALLES SUR DORDOGNE" }, { - "codePostal": "73200", - "codeCommune": "73308", - "libelleAcheminement": "VENTHON", - "nomCommune": "VENTHON" + "codePostal": "76850", + "codeCommune": "76188", + "libelleAcheminement": "COTTEVRARD", + "nomCommune": "COTTEVRARD" }, { - "codePostal": "49520", - "codeCommune": "49248", - "libelleAcheminement": "OMBREE D ANJOU", - "nomCommune": "OMBREE D ANJOU" + "codePostal": "62140", + "codeCommune": "62661", + "libelleAcheminement": "BOUIN PLUMOISON", + "nomCommune": "BOUIN PLUMOISON" }, { - "codePostal": "16230", - "codeCommune": "16414", - "libelleAcheminement": "VILLOGNON", - "nomCommune": "VILLOGNON" + "codePostal": "64260", + "codeCommune": "64353", + "libelleAcheminement": "LOUVIE JUZON", + "nomCommune": "LOUVIE JUZON" }, { - "codePostal": "72260", - "codeCommune": "72201", - "libelleAcheminement": "MONCE EN SAOSNOIS", - "nomCommune": "MONCE EN SAOSNOIS" + "codePostal": "76250", + "codeCommune": "76216", + "libelleAcheminement": "DEVILLE LES ROUEN", + "nomCommune": "DEVILLE LES ROUEN" }, { - "codePostal": "73330", - "codeCommune": "73309", - "libelleAcheminement": "VEREL DE MONTBEL", - "nomCommune": "VEREL DE MONTBEL" + "codePostal": "24220", + "codeCommune": "24006", + "libelleAcheminement": "ALLAS LES MINES", + "nomCommune": "ALLAS LES MINES" }, { - "codePostal": "49350", - "codeCommune": "49261", - "libelleAcheminement": "GENNES VAL DE LOIRE", - "nomCommune": "GENNES VAL DE LOIRE" + "codePostal": "76910", + "codeCommune": "76192", + "libelleAcheminement": "CRIEL SUR MER", + "nomCommune": "CRIEL SUR MER" }, { - "codePostal": "16250", - "codeCommune": "16420", - "libelleAcheminement": "VOULGEZAC", - "nomCommune": "VOULGEZAC" + "codePostal": "62140", + "codeCommune": "62677", + "libelleAcheminement": "LE QUESNOY EN ARTOIS", + "nomCommune": "LE QUESNOY EN ARTOIS" }, { - "codePostal": "72150", - "codeCommune": "72210", - "libelleAcheminement": "MONTREUIL LE HENRI", - "nomCommune": "MONTREUIL LE HENRI" + "codePostal": "64410", + "codeCommune": "64355", + "libelleAcheminement": "LOUVIGNY", + "nomCommune": "LOUVIGNY" }, { - "codePostal": "73110", - "codeCommune": "73311", - "libelleAcheminement": "LE VERNEIL", - "nomCommune": "LE VERNEIL" + "codePostal": "76220", + "codeCommune": "76218", + "libelleAcheminement": "DOUDEAUVILLE", + "nomCommune": "DOUDEAUVILLE" }, { - "codePostal": "49124", - "codeCommune": "49267", - "libelleAcheminement": "ST BARTHELEMY D ANJOU", - "nomCommune": "ST BARTHELEMY D ANJOU" + "codePostal": "24270", + "codeCommune": "24008", + "libelleAcheminement": "ANGOISSE", + "nomCommune": "ANGOISSE" }, { - "codePostal": "17400", - "codeCommune": "17013", - "libelleAcheminement": "ANTEZANT LA CHAPELLE", - "nomCommune": "ANTEZANT LA CHAPELLE" + "codePostal": "76910", + "codeCommune": "76192", + "libelleAcheminement": "CRIEL SUR MER", + "nomCommune": "CRIEL SUR MER" }, { - "codePostal": "72140", - "codeCommune": "72211", - "libelleAcheminement": "MONT ST JEAN", - "nomCommune": "MONT ST JEAN" + "codePostal": "62830", + "codeCommune": "62679", + "libelleAcheminement": "QUESTRECQUES", + "nomCommune": "QUESTRECQUES" }, { - "codePostal": "73300", - "codeCommune": "73318", - "libelleAcheminement": "VILLAREMBERT", - "nomCommune": "VILLAREMBERT" + "codePostal": "64350", + "codeCommune": "64357", + "libelleAcheminement": "LUCARRE", + "nomCommune": "LUCARRE" }, { - "codePostal": "49370", - "codeCommune": "49271", - "libelleAcheminement": "ST CLEMENT DE LA PLACE", - "nomCommune": "ST CLEMENT DE LA PLACE" + "codePostal": "76460", + "codeCommune": "76221", + "libelleAcheminement": "DROSAY", + "nomCommune": "DROSAY" }, { - "codePostal": "17520", - "codeCommune": "17016", - "libelleAcheminement": "ARCHIAC", - "nomCommune": "ARCHIAC" + "codePostal": "24150", + "codeCommune": "24023", + "libelleAcheminement": "BANEUIL", + "nomCommune": "BANEUIL" }, { - "codePostal": "72300", - "codeCommune": "72228", - "libelleAcheminement": "PARCE SUR SARTHE", - "nomCommune": "PARCE SUR SARTHE" + "codePostal": "76660", + "codeCommune": "76202", + "libelleAcheminement": "CROIXDALLE", + "nomCommune": "CROIXDALLE" }, { - "codePostal": "73310", - "codeCommune": "73327", - "libelleAcheminement": "VIONS", - "nomCommune": "VIONS" + "codePostal": "62390", + "codeCommune": "62683", + "libelleAcheminement": "QUOEUX HAUT MAINIL", + "nomCommune": "QUOEUX HAUT MAINIL" }, { - "codePostal": "49350", - "codeCommune": "49272", - "libelleAcheminement": "ST CLEMENT DES LEVEES", - "nomCommune": "ST CLEMENT DES LEVEES" + "codePostal": "64410", + "codeCommune": "64365", + "libelleAcheminement": "MALAUSSANNE", + "nomCommune": "MALAUSSANNE" }, { - "codePostal": "17520", - "codeCommune": "17020", - "libelleAcheminement": "ARTHENAC", - "nomCommune": "ARTHENAC" + "codePostal": "76760", + "codeCommune": "76227", + "libelleAcheminement": "ECTOT L AUBER", + "nomCommune": "ECTOT L AUBER" }, { - "codePostal": "72140", - "codeCommune": "72229", - "libelleAcheminement": "PARENNES", - "nomCommune": "PARENNES" + "codePostal": "24330", + "codeCommune": "24026", + "libelleAcheminement": "BASSILLAC ET AUBEROCHE", + "nomCommune": "BASSILLAC ET AUBEROCHE" }, { - "codePostal": "74290", - "codeCommune": "74003", - "libelleAcheminement": "ALEX", - "nomCommune": "ALEX" + "codePostal": "76540", + "codeCommune": "76232", + "libelleAcheminement": "ELETOT", + "nomCommune": "ELETOT" }, { - "codePostal": "49170", - "codeCommune": "49284", - "libelleAcheminement": "ST GERMAIN DES PRES", - "nomCommune": "ST GERMAIN DES PRES" + "codePostal": "62120", + "codeCommune": "62684", + "libelleAcheminement": "RACQUINGHEM", + "nomCommune": "RACQUINGHEM" }, { - "codePostal": "17530", - "codeCommune": "17021", - "libelleAcheminement": "ARVERT", - "nomCommune": "ARVERT" + "codePostal": "64120", + "codeCommune": "64368", + "libelleAcheminement": "MASPARRAUTE", + "nomCommune": "MASPARRAUTE" }, { - "codePostal": "72250", - "codeCommune": "72231", - "libelleAcheminement": "PARIGNE L EVEQUE", - "nomCommune": "PARIGNE L EVEQUE" + "codePostal": "76500", + "codeCommune": "76231", + "libelleAcheminement": "ELBEUF", + "nomCommune": "ELBEUF" }, { - "codePostal": "74140", - "codeCommune": "74025", - "libelleAcheminement": "BALLAISON", - "nomCommune": "BALLAISON" + "codePostal": "24330", + "codeCommune": "24026", + "libelleAcheminement": "BASSILLAC ET AUBEROCHE", + "nomCommune": "BASSILLAC ET AUBEROCHE" }, { - "codePostal": "49750", - "codeCommune": "49292", - "libelleAcheminement": "VAL DU LAYON", - "nomCommune": "VAL DU LAYON" + "codePostal": "76630", + "codeCommune": "76235", + "libelleAcheminement": "ENVERMEU", + "nomCommune": "ENVERMEU" }, { - "codePostal": "17770", - "codeCommune": "17026", - "libelleAcheminement": "AUTHON EBEON", - "nomCommune": "AUTHON EBEON" + "codePostal": "62140", + "codeCommune": "62690", + "libelleAcheminement": "RAYE SUR AUTHIE", + "nomCommune": "RAYE SUR AUTHIE" }, { - "codePostal": "72300", - "codeCommune": "72232", - "libelleAcheminement": "NOTRE DAME DU PE", - "nomCommune": "NOTRE DAME DU PE" + "codePostal": "64460", + "codeCommune": "64372", + "libelleAcheminement": "MAURE", + "nomCommune": "MAURE" }, { - "codePostal": "74330", - "codeCommune": "74026", - "libelleAcheminement": "LA BALME DE SILLINGY", - "nomCommune": "LA BALME DE SILLINGY" + "codePostal": "76133", + "codeCommune": "76238", + "libelleAcheminement": "EPOUVILLE", + "nomCommune": "EPOUVILLE" }, { - "codePostal": "49280", - "codeCommune": "49299", - "libelleAcheminement": "ST LEGER SOUS CHOLET", - "nomCommune": "ST LEGER SOUS CHOLET" + "codePostal": "24440", + "codeCommune": "24028", + "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", + "nomCommune": "BEAUMONTOIS EN PERIGORD" }, { - "codePostal": "17160", - "codeCommune": "17029", - "libelleAcheminement": "BAGNIZEAU", - "nomCommune": "BAGNIZEAU" + "codePostal": "76710", + "codeCommune": "76245", + "libelleAcheminement": "ESLETTES", + "nomCommune": "ESLETTES" }, { - "codePostal": "72300", - "codeCommune": "72236", - "libelleAcheminement": "PINCE", - "nomCommune": "PINCE" + "codePostal": "62270", + "codeCommune": "62695", + "libelleAcheminement": "REBREUVIETTE", + "nomCommune": "REBREUVIETTE" }, { - "codePostal": "74420", - "codeCommune": "74037", - "libelleAcheminement": "BOEGE", - "nomCommune": "BOEGE" + "codePostal": "64230", + "codeCommune": "64374", + "libelleAcheminement": "MAZEROLLES", + "nomCommune": "MAZEROLLES" }, { - "codePostal": "49250", - "codeCommune": "49307", - "libelleAcheminement": "LOIRE AUTHION", - "nomCommune": "LOIRE AUTHION" + "codePostal": "76750", + "codeCommune": "76243", + "libelleAcheminement": "ERNEMONT SUR BUCHY", + "nomCommune": "ERNEMONT SUR BUCHY" }, { - "codePostal": "17600", - "codeCommune": "17030", - "libelleAcheminement": "BALANZAC", - "nomCommune": "BALANZAC" + "codePostal": "24400", + "codeCommune": "24032", + "libelleAcheminement": "BEAURONNE", + "nomCommune": "BEAURONNE" }, { - "codePostal": "72300", - "codeCommune": "72244", - "libelleAcheminement": "PRECIGNE", - "nomCommune": "PRECIGNE" + "codePostal": "76690", + "codeCommune": "76247", + "libelleAcheminement": "ESTEVILLE", + "nomCommune": "ESTEVILLE" }, { - "codePostal": "74380", - "codeCommune": "74040", - "libelleAcheminement": "BONNE", - "nomCommune": "BONNE" + "codePostal": "62860", + "codeCommune": "62697", + "libelleAcheminement": "RECOURT", + "nomCommune": "RECOURT" }, { - "codePostal": "49800", - "codeCommune": "49307", - "libelleAcheminement": "LOIRE AUTHION", - "nomCommune": "LOIRE AUTHION" + "codePostal": "64130", + "codeCommune": "64378", + "libelleAcheminement": "MENDITTE", + "nomCommune": "MENDITTE" }, { - "codePostal": "17290", - "codeCommune": "17032", - "libelleAcheminement": "BALLON", - "nomCommune": "BALLON" + "codePostal": "76640", + "codeCommune": "76258", + "libelleAcheminement": "TERRES DE CAUX", + "nomCommune": "TERRES DE CAUX" }, { - "codePostal": "72550", - "codeCommune": "72249", - "libelleAcheminement": "LA QUINTE", - "nomCommune": "LA QUINTE" + "codePostal": "24130", + "codeCommune": "24051", + "libelleAcheminement": "BOSSET", + "nomCommune": "BOSSET" }, { - "codePostal": "74130", - "codeCommune": "74049", - "libelleAcheminement": "BRIZON", - "nomCommune": "BRIZON" + "codePostal": "76430", + "codeCommune": "76250", + "libelleAcheminement": "ETAINHUS", + "nomCommune": "ETAINHUS" }, { - "codePostal": "49480", - "codeCommune": "49323", - "libelleAcheminement": "VERRIERES EN ANJOU", - "nomCommune": "VERRIERES EN ANJOU" + "codePostal": "62156", + "codeCommune": "62703", + "libelleAcheminement": "REMY", + "nomCommune": "REMY" }, { - "codePostal": "17210", - "codeCommune": "17038", - "libelleAcheminement": "BEDENAC", - "nomCommune": "BEDENAC" + "codePostal": "64410", + "codeCommune": "64380", + "libelleAcheminement": "MERACQ", + "nomCommune": "MERACQ" }, { - "codePostal": "72230", - "codeCommune": "72260", - "libelleAcheminement": "RUAUDIN", - "nomCommune": "RUAUDIN" + "codePostal": "76400", + "codeCommune": "76259", + "libelleAcheminement": "FECAMP", + "nomCommune": "FECAMP" }, { - "codePostal": "74410", - "codeCommune": "74060", - "libelleAcheminement": "LA CHAPELLE ST MAURICE", - "nomCommune": "LA CHAPELLE ST MAURICE" + "codePostal": "24750", + "codeCommune": "24053", + "libelleAcheminement": "BOULAZAC ISLE MANOIRE", + "nomCommune": "BOULAZAC ISLE MANOIRE" }, { - "codePostal": "49800", - "codeCommune": "49326", - "libelleAcheminement": "SARRIGNE", - "nomCommune": "SARRIGNE" + "codePostal": "76260", + "codeCommune": "76252", + "libelleAcheminement": "ETALONDES", + "nomCommune": "ETALONDES" }, { - "codePostal": "17250", - "codeCommune": "17045", - "libelleAcheminement": "BEURLAY", - "nomCommune": "BEURLAY" + "codePostal": "62990", + "codeCommune": "62710", + "libelleAcheminement": "RIMBOVAL", + "nomCommune": "RIMBOVAL" }, { - "codePostal": "72110", - "codeCommune": "72265", - "libelleAcheminement": "ST AIGNAN", - "nomCommune": "ST AIGNAN" + "codePostal": "64130", + "codeCommune": "64391", + "libelleAcheminement": "MONCAYOLLE LARRORY MENDIBIEU", + "nomCommune": "MONCAYOLLE LARRORY MENDIBIEU" }, { - "codePostal": "74370", - "codeCommune": "74062", - "libelleAcheminement": "CHARVONNEX", - "nomCommune": "CHARVONNEX" + "codePostal": "76220", + "codeCommune": "76260", + "libelleAcheminement": "FERRIERES EN BRAY", + "nomCommune": "FERRIERES EN BRAY" }, { - "codePostal": "49400", - "codeCommune": "49328", - "libelleAcheminement": "SAUMUR", - "nomCommune": "SAUMUR" + "codePostal": "24110", + "codeCommune": "24061", + "libelleAcheminement": "BOURROU", + "nomCommune": "BOURROU" }, { - "codePostal": "17240", - "codeCommune": "17050", - "libelleAcheminement": "BOIS", - "nomCommune": "BOIS" + "codePostal": "76640", + "codeCommune": "76258", + "libelleAcheminement": "TERRES DE CAUX", + "nomCommune": "TERRES DE CAUX" }, { - "codePostal": "72130", - "codeCommune": "72266", - "libelleAcheminement": "ST AUBIN DE LOCQUENAY", - "nomCommune": "ST AUBIN DE LOCQUENAY" + "codePostal": "62720", + "codeCommune": "62711", + "libelleAcheminement": "RINXENT", + "nomCommune": "RINXENT" }, { - "codePostal": "74300", - "codeCommune": "74081", - "libelleAcheminement": "CLUSES", - "nomCommune": "CLUSES" + "codePostal": "64330", + "codeCommune": "64392", + "libelleAcheminement": "MONCLA", + "nomCommune": "MONCLA" }, { - "codePostal": "49400", - "codeCommune": "49328", - "libelleAcheminement": "SAUMUR", - "nomCommune": "SAUMUR" + "codePostal": "76440", + "codeCommune": "76261", + "libelleAcheminement": "LA FERTE ST SAMSON", + "nomCommune": "LA FERTE ST SAMSON" }, { - "codePostal": "17800", - "codeCommune": "17056", - "libelleAcheminement": "BOUGNEAU", - "nomCommune": "BOUGNEAU" + "codePostal": "24320", + "codeCommune": "24062", + "libelleAcheminement": "BOUTEILLES ST SEBASTIEN", + "nomCommune": "BOUTEILLES ST SEBASTIEN" }, { - "codePostal": "72120", - "codeCommune": "72269", - "libelleAcheminement": "ST CALAIS", - "nomCommune": "ST CALAIS" + "codePostal": "76220", + "codeCommune": "76263", + "libelleAcheminement": "LA FEUILLIE", + "nomCommune": "LA FEUILLIE" }, { - "codePostal": "74920", - "codeCommune": "74083", - "libelleAcheminement": "COMBLOUX", - "nomCommune": "COMBLOUX" + "codePostal": "62390", + "codeCommune": "62722", + "libelleAcheminement": "ROUGEFAY", + "nomCommune": "ROUGEFAY" }, { - "codePostal": "49170", - "codeCommune": "49329", - "libelleAcheminement": "SAVENNIERES", - "nomCommune": "SAVENNIERES" + "codePostal": "64300", + "codeCommune": "64396", + "libelleAcheminement": "MONT", + "nomCommune": "MONT" }, { - "codePostal": "17920", - "codeCommune": "17064", - "libelleAcheminement": "BREUILLET", - "nomCommune": "BREUILLET" + "codePostal": "76970", + "codeCommune": "76264", + "libelleAcheminement": "FLAMANVILLE", + "nomCommune": "FLAMANVILLE" }, { - "codePostal": "72600", - "codeCommune": "72270", - "libelleAcheminement": "ST CALEZ EN SAOSNOIS", - "nomCommune": "ST CALEZ EN SAOSNOIS" + "codePostal": "24310", + "codeCommune": "24064", + "libelleAcheminement": "BRANTOME EN PERIGORD", + "nomCommune": "BRANTOME EN PERIGORD" }, { - "codePostal": "74110", - "codeCommune": "74091", - "libelleAcheminement": "LA COTE D ARBROZ", - "nomCommune": "LA COTE D ARBROZ" + "codePostal": "76190", + "codeCommune": "76289", + "libelleAcheminement": "ST MARTIN DE L IF", + "nomCommune": "ST MARTIN DE L IF" }, { - "codePostal": "49330", - "codeCommune": "49330", - "libelleAcheminement": "SCEAUX D ANJOU", - "nomCommune": "SCEAUX D ANJOU" + "codePostal": "62620", + "codeCommune": "62727", + "libelleAcheminement": "RUITZ", + "nomCommune": "RUITZ" }, { - "codePostal": "17520", - "codeCommune": "17066", - "libelleAcheminement": "BRIE SOUS ARCHIAC", - "nomCommune": "BRIE SOUS ARCHIAC" + "codePostal": "64410", + "codeCommune": "64397", + "libelleAcheminement": "MONTAGUT", + "nomCommune": "MONTAGUT" }, { - "codePostal": "72540", - "codeCommune": "72274", - "libelleAcheminement": "ST CHRISTOPHE EN CHAMPAGNE", - "nomCommune": "ST CHRISTOPHE EN CHAMPAGNE" + "codePostal": "76890", + "codeCommune": "76274", + "libelleAcheminement": "LA FONTELAYE", + "nomCommune": "LA FONTELAYE" }, { - "codePostal": "74380", - "codeCommune": "74094", - "libelleAcheminement": "CRANVES SALES", - "nomCommune": "CRANVES SALES" + "codePostal": "24530", + "codeCommune": "24064", + "libelleAcheminement": "BRANTOME EN PERIGORD", + "nomCommune": "BRANTOME EN PERIGORD" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "76690", + "codeCommune": "76290", + "libelleAcheminement": "FRICHEMESNIL", + "nomCommune": "FRICHEMESNIL" }, { - "codePostal": "17800", - "codeCommune": "17069", - "libelleAcheminement": "BRIVES SUR CHARENTE", - "nomCommune": "BRIVES SUR CHARENTE" + "codePostal": "62170", + "codeCommune": "62742", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "72150", - "codeCommune": "72279", - "libelleAcheminement": "ST GEORGES DE LA COUEE", - "nomCommune": "ST GEORGES DE LA COUEE" + "codePostal": "64190", + "codeCommune": "64403", + "libelleAcheminement": "MONTFORT", + "nomCommune": "MONTFORT" }, { - "codePostal": "74120", - "codeCommune": "74099", - "libelleAcheminement": "DEMI QUARTIER", - "nomCommune": "DEMI QUARTIER" + "codePostal": "76290", + "codeCommune": "76275", + "libelleAcheminement": "FONTENAY", + "nomCommune": "FONTENAY" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "24370", + "codeCommune": "24074", + "libelleAcheminement": "CALVIAC EN PERIGORD", + "nomCommune": "CALVIAC EN PERIGORD" }, { - "codePostal": "17100", - "codeCommune": "17073", - "libelleAcheminement": "BUSSAC SUR CHARENTE", - "nomCommune": "BUSSAC SUR CHARENTE" + "codePostal": "76870", + "codeCommune": "76295", + "libelleAcheminement": "GAILLEFONTAINE", + "nomCommune": "GAILLEFONTAINE" }, { - "codePostal": "72800", - "codeCommune": "72283", - "libelleAcheminement": "ST GERMAIN D ARCE", - "nomCommune": "ST GERMAIN D ARCE" + "codePostal": "62223", + "codeCommune": "62753", + "libelleAcheminement": "ST LAURENT BLANGY", + "nomCommune": "ST LAURENT BLANGY" }, { - "codePostal": "74270", - "codeCommune": "74100", - "libelleAcheminement": "DESINGY", - "nomCommune": "DESINGY" + "codePostal": "64330", + "codeCommune": "64408", + "libelleAcheminement": "MOUHOUS", + "nomCommune": "MOUHOUS" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "76440", + "codeCommune": "76276", + "libelleAcheminement": "FORGES LES EAUX", + "nomCommune": "FORGES LES EAUX" }, { - "codePostal": "17430", - "codeCommune": "17075", - "libelleAcheminement": "CABARIOT", - "nomCommune": "CABARIOT" + "codePostal": "24250", + "codeCommune": "24091", + "libelleAcheminement": "CENAC ET ST JULIEN", + "nomCommune": "CENAC ET ST JULIEN" }, { - "codePostal": "72220", - "codeCommune": "72287", - "libelleAcheminement": "ST GERVAIS EN BELIN", - "nomCommune": "ST GERVAIS EN BELIN" + "codePostal": "76540", + "codeCommune": "76299", + "libelleAcheminement": "GERPONVILLE", + "nomCommune": "GERPONVILLE" }, { - "codePostal": "74700", - "codeCommune": "74103", - "libelleAcheminement": "DOMANCY", - "nomCommune": "DOMANCY" + "codePostal": "62128", + "codeCommune": "62754", + "libelleAcheminement": "ST LEGER", + "nomCommune": "ST LEGER" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "64150", + "codeCommune": "64410", + "libelleAcheminement": "MOURENX", + "nomCommune": "MOURENX" }, { - "codePostal": "17270", - "codeCommune": "17077", - "libelleAcheminement": "CERCOUX", - "nomCommune": "CERCOUX" + "codePostal": "76660", + "codeCommune": "76286", + "libelleAcheminement": "FRESNOY FOLNY", + "nomCommune": "FRESNOY FOLNY" }, { - "codePostal": "72510", - "codeCommune": "72291", - "libelleAcheminement": "ST JEAN DE LA MOTTE", - "nomCommune": "ST JEAN DE LA MOTTE" + "codePostal": "24380", + "codeCommune": "24094", + "libelleAcheminement": "CHALAGNAC", + "nomCommune": "CHALAGNAC" }, { - "codePostal": "74210", - "codeCommune": "74123", - "libelleAcheminement": "FAVERGES SEYTHENEX", - "nomCommune": "FAVERGES SEYTHENEX" + "codePostal": "76590", + "codeCommune": "76308", + "libelleAcheminement": "GONNEVILLE SUR SCIE", + "nomCommune": "GONNEVILLE SUR SCIE" }, { - "codePostal": "49500", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "62280", + "codeCommune": "62758", + "libelleAcheminement": "ST MARTIN BOULOGNE", + "nomCommune": "ST MARTIN BOULOGNE" }, { - "codePostal": "17430", - "codeCommune": "17085", - "libelleAcheminement": "CHAMPDOLENT", - "nomCommune": "CHAMPDOLENT" + "codePostal": "64510", + "codeCommune": "64413", + "libelleAcheminement": "NARCASTET", + "nomCommune": "NARCASTET" }, { - "codePostal": "72430", - "codeCommune": "72293", - "libelleAcheminement": "ST JEAN DU BOIS", - "nomCommune": "ST JEAN DU BOIS" + "codePostal": "76190", + "codeCommune": "76289", + "libelleAcheminement": "ST MARTIN DE L IF", + "nomCommune": "ST MARTIN DE L IF" }, { - "codePostal": "74260", - "codeCommune": "74134", - "libelleAcheminement": "LES GETS", - "nomCommune": "LES GETS" + "codePostal": "24750", + "codeCommune": "24098", + "libelleAcheminement": "CHAMPCEVINEL", + "nomCommune": "CHAMPCEVINEL" }, { - "codePostal": "49520", - "codeCommune": "49331", - "libelleAcheminement": "SEGRE EN ANJOU BLEU", - "nomCommune": "SEGRE EN ANJOU BLEU" + "codePostal": "76220", + "codeCommune": "76312", + "libelleAcheminement": "GOURNAY EN BRAY", + "nomCommune": "GOURNAY EN BRAY" }, { - "codePostal": "17610", - "codeCommune": "17086", - "libelleAcheminement": "CHANIERS", - "nomCommune": "CHANIERS" + "codePostal": "62240", + "codeCommune": "62759", + "libelleAcheminement": "ST MARTIN CHOQUEL", + "nomCommune": "ST MARTIN CHOQUEL" }, { - "codePostal": "72220", - "codeCommune": "72299", - "libelleAcheminement": "ST MARS D OUTILLE", - "nomCommune": "ST MARS D OUTILLE" + "codePostal": "64190", + "codeCommune": "64414", + "libelleAcheminement": "NARP", + "nomCommune": "NARP" }, { - "codePostal": "74210", - "codeCommune": "74135", - "libelleAcheminement": "GIEZ", - "nomCommune": "GIEZ" + "codePostal": "76780", + "codeCommune": "76292", + "libelleAcheminement": "FRY", + "nomCommune": "FRY" }, { - "codePostal": "49610", - "codeCommune": "49338", - "libelleAcheminement": "SOULAINES SUR AUBANCE", - "nomCommune": "SOULAINES SUR AUBANCE" + "codePostal": "24530", + "codeCommune": "24107", + "libelleAcheminement": "LA CHAPELLE FAUCHER", + "nomCommune": "LA CHAPELLE FAUCHER" }, { - "codePostal": "17380", - "codeCommune": "17087", - "libelleAcheminement": "CHANTEMERLE SUR LA SOIE", - "nomCommune": "CHANTEMERLE SUR LA SOIE" + "codePostal": "76450", + "codeCommune": "76315", + "libelleAcheminement": "GRAINVILLE LA TEINTURIERE", + "nomCommune": "GRAINVILLE LA TEINTURIERE" }, { - "codePostal": "72130", - "codeCommune": "72309", - "libelleAcheminement": "ST PAUL LE GAULTIER", - "nomCommune": "ST PAUL LE GAULTIER" + "codePostal": "62560", + "codeCommune": "62760", + "libelleAcheminement": "ST MARTIN D HARDINGHEM", + "nomCommune": "ST MARTIN D HARDINGHEM" }, { - "codePostal": "74570", - "codeCommune": "74137", - "libelleAcheminement": "GROISY", - "nomCommune": "GROISY" + "codePostal": "64450", + "codeCommune": "64415", + "libelleAcheminement": "NAVAILLES ANGOS", + "nomCommune": "NAVAILLES ANGOS" }, { - "codePostal": "49380", - "codeCommune": "49345", - "libelleAcheminement": "BELLEVIGNE EN LAYON", - "nomCommune": "BELLEVIGNE EN LAYON" + "codePostal": "76790", + "codeCommune": "76300", + "libelleAcheminement": "GERVILLE", + "nomCommune": "GERVILLE" }, { - "codePostal": "17230", - "codeCommune": "17091", - "libelleAcheminement": "CHARRON", - "nomCommune": "CHARRON" + "codePostal": "24390", + "codeCommune": "24113", + "libelleAcheminement": "LA CHAPELLE ST JEAN", + "nomCommune": "LA CHAPELLE ST JEAN" }, { - "codePostal": "72150", - "codeCommune": "72314", - "libelleAcheminement": "ST PIERRE DU LOROUER", - "nomCommune": "ST PIERRE DU LOROUER" + "codePostal": "76170", + "codeCommune": "76318", + "libelleAcheminement": "GRAND CAMP", + "nomCommune": "GRAND CAMP" }, { - "codePostal": "74520", - "codeCommune": "74144", - "libelleAcheminement": "JONZIER EPAGNY", - "nomCommune": "JONZIER EPAGNY" + "codePostal": "62128", + "codeCommune": "62761", + "libelleAcheminement": "ST MARTIN SUR COJEUL", + "nomCommune": "ST MARTIN SUR COJEUL" }, { - "codePostal": "49310", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "64400", + "codeCommune": "64422", + "libelleAcheminement": "OLORON STE MARIE", + "nomCommune": "OLORON STE MARIE" }, { - "codePostal": "17130", - "codeCommune": "17096", - "libelleAcheminement": "CHAUNAC", - "nomCommune": "CHAUNAC" + "codePostal": "76110", + "codeCommune": "76302", + "libelleAcheminement": "GODERVILLE", + "nomCommune": "GODERVILLE" }, { - "codePostal": "72600", - "codeCommune": "72317", - "libelleAcheminement": "ST REMY DU VAL", - "nomCommune": "ST REMY DU VAL" + "codePostal": "24600", + "codeCommune": "24114", + "libelleAcheminement": "CHASSAIGNES", + "nomCommune": "CHASSAIGNES" }, { - "codePostal": "74210", - "codeCommune": "74167", - "libelleAcheminement": "VAL DE CHAISE", - "nomCommune": "VAL DE CHAISE" + "codePostal": "76810", + "codeCommune": "76327", + "libelleAcheminement": "GREUVILLE", + "nomCommune": "GREUVILLE" }, { - "codePostal": "49310", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "62500", + "codeCommune": "62765", + "libelleAcheminement": "ST OMER", + "nomCommune": "ST OMER" }, { - "codePostal": "17120", - "codeCommune": "17098", - "libelleAcheminement": "CHENAC ST SEURIN D UZET", - "nomCommune": "CHENAC ST SEURIN D UZET" + "codePostal": "64120", + "codeCommune": "64429", + "libelleAcheminement": "ORSANCO", + "nomCommune": "ORSANCO" }, { - "codePostal": "72150", - "codeCommune": "72325", - "libelleAcheminement": "ST VINCENT DU LOROUER", - "nomCommune": "ST VINCENT DU LOROUER" + "codePostal": "76110", + "codeCommune": "76317", + "libelleAcheminement": "GRAINVILLE YMAUVILLE", + "nomCommune": "GRAINVILLE YMAUVILLE" }, { - "codePostal": "74210", - "codeCommune": "74167", - "libelleAcheminement": "VAL DE CHAISE", - "nomCommune": "VAL DE CHAISE" + "codePostal": "24120", + "codeCommune": "24117", + "libelleAcheminement": "LES COTEAUX PERIGOURDINS", + "nomCommune": "LES COTEAUX PERIGOURDINS" }, { - "codePostal": "49310", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "76440", + "codeCommune": "76332", + "libelleAcheminement": "GRUMESNIL", + "nomCommune": "GRUMESNIL" }, { - "codePostal": "17210", - "codeCommune": "17099", - "libelleAcheminement": "CHEPNIERS", - "nomCommune": "CHEPNIERS" + "codePostal": "62162", + "codeCommune": "62766", + "libelleAcheminement": "ST OMER CAPELLE", + "nomCommune": "ST OMER CAPELLE" }, { - "codePostal": "72460", - "codeCommune": "72335", - "libelleAcheminement": "SILLE LE PHILIPPE", - "nomCommune": "SILLE LE PHILIPPE" + "codePostal": "64190", + "codeCommune": "64434", + "libelleAcheminement": "OSSENX", + "nomCommune": "OSSENX" }, { - "codePostal": "74270", - "codeCommune": "74184", - "libelleAcheminement": "MINZIER", - "nomCommune": "MINZIER" + "codePostal": "76970", + "codeCommune": "76325", + "libelleAcheminement": "GREMONVILLE", + "nomCommune": "GREMONVILLE" }, { - "codePostal": "49540", - "codeCommune": "49373", - "libelleAcheminement": "LYS HAUT LAYON", - "nomCommune": "LYS HAUT LAYON" + "codePostal": "24390", + "codeCommune": "24120", + "libelleAcheminement": "CHERVEIX CUBAS", + "nomCommune": "CHERVEIX CUBAS" }, { - "codePostal": "17210", - "codeCommune": "17104", - "libelleAcheminement": "CHEVANCEAUX", - "nomCommune": "CHEVANCEAUX" + "codePostal": "76780", + "codeCommune": "76338", + "libelleAcheminement": "LA HALLOTIERE", + "nomCommune": "LA HALLOTIERE" }, { - "codePostal": "72370", - "codeCommune": "72345", - "libelleAcheminement": "SURFONDS", - "nomCommune": "SURFONDS" + "codePostal": "62760", + "codeCommune": "62779", + "libelleAcheminement": "SARTON", + "nomCommune": "SARTON" }, { - "codePostal": "74560", - "codeCommune": "74185", - "libelleAcheminement": "MONNETIER MORNEX", - "nomCommune": "MONNETIER MORNEX" + "codePostal": "64300", + "codeCommune": "64440", + "libelleAcheminement": "OZENX MONTESTRUCQ", + "nomCommune": "OZENX MONTESTRUCQ" }, { - "codePostal": "49140", - "codeCommune": "49377", - "libelleAcheminement": "RIVES DU LOIR EN ANJOU", - "nomCommune": "RIVES DU LOIR EN ANJOU" + "codePostal": "76340", + "codeCommune": "76333", + "libelleAcheminement": "GUERVILLE", + "nomCommune": "GUERVILLE" }, { - "codePostal": "17510", - "codeCommune": "17105", - "libelleAcheminement": "CHIVES", - "nomCommune": "CHIVES" + "codePostal": "24170", + "codeCommune": "24122", + "libelleAcheminement": "CLADECH", + "nomCommune": "CLADECH" }, { - "codePostal": "72210", - "codeCommune": "72346", - "libelleAcheminement": "LA SUZE SUR SARTHE", - "nomCommune": "LA SUZE SUR SARTHE" + "codePostal": "76700", + "codeCommune": "76341", + "libelleAcheminement": "HARFLEUR", + "nomCommune": "HARFLEUR" }, { - "codePostal": "74600", - "codeCommune": "74186", - "libelleAcheminement": "MONTAGNY LES LANCHES", - "nomCommune": "MONTAGNY LES LANCHES" + "codePostal": "62690", + "codeCommune": "62785", + "libelleAcheminement": "SAVY BERLETTE", + "nomCommune": "SAVY BERLETTE" }, { - "codePostal": "50230", - "codeCommune": "50003", - "libelleAcheminement": "AGON COUTAINVILLE", - "nomCommune": "AGON COUTAINVILLE" + "codePostal": "64000", + "codeCommune": "64445", + "libelleAcheminement": "PAU", + "nomCommune": "PAU" }, { - "codePostal": "17290", - "codeCommune": "17107", - "libelleAcheminement": "CIRE D AUNIS", - "nomCommune": "CIRE D AUNIS" + "codePostal": "76450", + "codeCommune": "76339", + "libelleAcheminement": "LE HANOUARD", + "nomCommune": "LE HANOUARD" }, { - "codePostal": "72430", - "codeCommune": "72347", - "libelleAcheminement": "TASSE", - "nomCommune": "TASSE" + "codePostal": "24300", + "codeCommune": "24131", + "libelleAcheminement": "CONNEZAC", + "nomCommune": "CONNEZAC" }, { - "codePostal": "74110", - "codeCommune": "74191", - "libelleAcheminement": "MORZINE", - "nomCommune": "MORZINE" + "codePostal": "76113", + "codeCommune": "76350", + "libelleAcheminement": "HAUTOT SUR SEINE", + "nomCommune": "HAUTOT SUR SEINE" }, { - "codePostal": "50620", - "codeCommune": "50006", - "libelleAcheminement": "AMIGNY", - "nomCommune": "AMIGNY" + "codePostal": "62270", + "codeCommune": "62791", + "libelleAcheminement": "SERICOURT", + "nomCommune": "SERICOURT" }, { - "codePostal": "17240", - "codeCommune": "17111", - "libelleAcheminement": "CLION", - "nomCommune": "CLION" + "codePostal": "64400", + "codeCommune": "64449", + "libelleAcheminement": "POEY D OLORON", + "nomCommune": "POEY D OLORON" }, { - "codePostal": "72220", - "codeCommune": "72350", - "libelleAcheminement": "TELOCHE", - "nomCommune": "TELOCHE" + "codePostal": "76390", + "codeCommune": "76344", + "libelleAcheminement": "HAUDRICOURT", + "nomCommune": "HAUDRICOURT" }, { - "codePostal": "74540", - "codeCommune": "74194", - "libelleAcheminement": "MURES", - "nomCommune": "MURES" + "codePostal": "24350", + "codeCommune": "24144", + "libelleAcheminement": "CREYSSAC", + "nomCommune": "CREYSSAC" }, { - "codePostal": "50660", - "codeCommune": "50015", - "libelleAcheminement": "ANNOVILLE", - "nomCommune": "ANNOVILLE" + "codePostal": "76730", + "codeCommune": "76356", + "libelleAcheminement": "HERMANVILLE", + "nomCommune": "HERMANVILLE" }, { - "codePostal": "17600", - "codeCommune": "17112", - "libelleAcheminement": "LA CLISSE", - "nomCommune": "LA CLISSE" + "codePostal": "62170", + "codeCommune": "62799", + "libelleAcheminement": "SORRUS", + "nomCommune": "SORRUS" }, { - "codePostal": "72110", - "codeCommune": "72359", - "libelleAcheminement": "TORCE EN VALLEE", - "nomCommune": "TORCE EN VALLEE" + "codePostal": "64460", + "codeCommune": "64451", + "libelleAcheminement": "PONSON DEBAT POUTS", + "nomCommune": "PONSON DEBAT POUTS" }, { - "codePostal": "74270", - "codeCommune": "74195", - "libelleAcheminement": "MUSIEGES", - "nomCommune": "MUSIEGES" + "codePostal": "76450", + "codeCommune": "76346", + "libelleAcheminement": "HAUTOT L AUVRAY", + "nomCommune": "HAUTOT L AUVRAY" }, { - "codePostal": "50530", - "codeCommune": "50027", - "libelleAcheminement": "BACILLY", - "nomCommune": "BACILLY" + "codePostal": "24640", + "codeCommune": "24147", + "libelleAcheminement": "CUBJAC AUVEZERE VAL D ANS", + "nomCommune": "CUBJAC AUVEZERE VAL D ANS" }, { - "codePostal": "17150", - "codeCommune": "17116", - "libelleAcheminement": "CONSAC", - "nomCommune": "CONSAC" + "codePostal": "76280", + "codeCommune": "76357", + "libelleAcheminement": "HERMEVILLE", + "nomCommune": "HERMEVILLE" }, { - "codePostal": "72440", - "codeCommune": "72361", - "libelleAcheminement": "TRESSON", - "nomCommune": "TRESSON" + "codePostal": "62560", + "codeCommune": "62812", + "libelleAcheminement": "THIEMBRONNE", + "nomCommune": "THIEMBRONNE" }, { - "codePostal": "74500", - "codeCommune": "74203", - "libelleAcheminement": "NOVEL", - "nomCommune": "NOVEL" + "codePostal": "64330", + "codeCommune": "64455", + "libelleAcheminement": "PORTET", + "nomCommune": "PORTET" }, { - "codePostal": "50450", - "codeCommune": "50028", - "libelleAcheminement": "LA BALEINE", - "nomCommune": "LA BALEINE" + "codePostal": "76190", + "codeCommune": "76347", + "libelleAcheminement": "HAUTOT LE VATOIS", + "nomCommune": "HAUTOT LE VATOIS" }, { - "codePostal": "17470", - "codeCommune": "17117", - "libelleAcheminement": "CONTRE", - "nomCommune": "CONTRE" + "codePostal": "24240", + "codeCommune": "24148", + "libelleAcheminement": "CUNEGES", + "nomCommune": "CUNEGES" }, { - "codePostal": "72160", - "codeCommune": "72363", - "libelleAcheminement": "TUFFE VAL DE LA CHERONNE", - "nomCommune": "TUFFE VAL DE LA CHERONNE" + "codePostal": "76720", + "codeCommune": "76360", + "libelleAcheminement": "HEUGLEVILLE SUR SCIE", + "nomCommune": "HEUGLEVILLE SUR SCIE" }, { - "codePostal": "74250", - "codeCommune": "74209", - "libelleAcheminement": "PEILLONNEX", - "nomCommune": "PEILLONNEX" + "codePostal": "62180", + "codeCommune": "62815", + "libelleAcheminement": "TIGNY NOYELLE", + "nomCommune": "TIGNY NOYELLE" }, { - "codePostal": "50320", - "codeCommune": "50038", - "libelleAcheminement": "BEAUCHAMPS", - "nomCommune": "BEAUCHAMPS" + "codePostal": "64270", + "codeCommune": "64461", + "libelleAcheminement": "PUYOO", + "nomCommune": "PUYOO" }, { - "codePostal": "17130", - "codeCommune": "17118", - "libelleAcheminement": "CORIGNAC", - "nomCommune": "CORIGNAC" + "codePostal": "76610", + "codeCommune": "76351", + "libelleAcheminement": "LE HAVRE", + "nomCommune": "LE HAVRE" }, { - "codePostal": "72600", - "codeCommune": "72372", - "libelleAcheminement": "VEZOT", - "nomCommune": "VEZOT" + "codePostal": "24120", + "codeCommune": "24153", + "libelleAcheminement": "LA DORNAC", + "nomCommune": "LA DORNAC" }, { - "codePostal": "74130", - "codeCommune": "74212", - "libelleAcheminement": "GLIERES VAL DE BORNE", - "nomCommune": "GLIERES VAL DE BORNE" + "codePostal": "76780", + "codeCommune": "76364", + "libelleAcheminement": "HODENG HODENGER", + "nomCommune": "HODENG HODENGER" }, { - "codePostal": "50420", - "codeCommune": "50039", - "libelleAcheminement": "BEAUCOUDRAY", - "nomCommune": "BEAUCOUDRAY" + "codePostal": "62490", + "codeCommune": "62825", + "libelleAcheminement": "TORTEQUESNE", + "nomCommune": "TORTEQUESNE" }, { - "codePostal": "17600", - "codeCommune": "17119", - "libelleAcheminement": "CORME ECLUSE", - "nomCommune": "CORME ECLUSE" + "codePostal": "64190", + "codeCommune": "64466", + "libelleAcheminement": "RIVEHAUTE", + "nomCommune": "RIVEHAUTE" }, { - "codePostal": "72350", - "codeCommune": "72379", - "libelleAcheminement": "VIRE EN CHAMPAGNE", - "nomCommune": "VIRE EN CHAMPAGNE" + "codePostal": "76620", + "codeCommune": "76351", + "libelleAcheminement": "LE HAVRE", + "nomCommune": "LE HAVRE" }, { - "codePostal": "74130", - "codeCommune": "74212", - "libelleAcheminement": "GLIERES VAL DE BORNE", - "nomCommune": "GLIERES VAL DE BORNE" + "codePostal": "24190", + "codeCommune": "24157", + "libelleAcheminement": "DOUZILLAC", + "nomCommune": "DOUZILLAC" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "76890", + "codeCommune": "76373", + "libelleAcheminement": "IMBLEVILLE", + "nomCommune": "IMBLEVILLE" }, { - "codePostal": "17800", - "codeCommune": "17122", - "libelleAcheminement": "COULONGES", - "nomCommune": "COULONGES" + "codePostal": "62147", + "codeCommune": "62830", + "libelleAcheminement": "TRESCAULT", + "nomCommune": "TRESCAULT" }, { - "codePostal": "73260", - "codeCommune": "73003", - "libelleAcheminement": "GRAND AIGUEBLANCHE", - "nomCommune": "GRAND AIGUEBLANCHE" + "codePostal": "64160", + "codeCommune": "64470", + "libelleAcheminement": "ST ARMOU", + "nomCommune": "ST ARMOU" }, { - "codePostal": "74330", - "codeCommune": "74213", - "libelleAcheminement": "POISY", - "nomCommune": "POISY" + "codePostal": "76940", + "codeCommune": "76362", + "libelleAcheminement": "HEURTEAUVILLE", + "nomCommune": "HEURTEAUVILLE" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "24360", + "codeCommune": "24163", + "libelleAcheminement": "ETOUARS", + "nomCommune": "ETOUARS" }, { - "codePostal": "17100", - "codeCommune": "17128", - "libelleAcheminement": "COURCOURY", - "nomCommune": "COURCOURY" + "codePostal": "76570", + "codeCommune": "76385", + "libelleAcheminement": "LIMESY", + "nomCommune": "LIMESY" }, { - "codePostal": "73210", - "codeCommune": "73006", - "libelleAcheminement": "AIME LA PLAGNE", - "nomCommune": "AIME LA PLAGNE" + "codePostal": "62113", + "codeCommune": "62847", + "libelleAcheminement": "VERQUIGNEUL", + "nomCommune": "VERQUIGNEUL" }, { - "codePostal": "74540", - "codeCommune": "74233", - "libelleAcheminement": "ST FELIX", - "nomCommune": "ST FELIX" + "codePostal": "64110", + "codeCommune": "64478", + "libelleAcheminement": "ST FAUST", + "nomCommune": "ST FAUST" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "76730", + "codeCommune": "76380", + "libelleAcheminement": "LAMMERVILLE", + "nomCommune": "LAMMERVILLE" }, { - "codePostal": "17130", - "codeCommune": "17130", - "libelleAcheminement": "COUX", - "nomCommune": "COUX" + "codePostal": "24290", + "codeCommune": "24175", + "libelleAcheminement": "LES FARGES", + "nomCommune": "LES FARGES" }, { - "codePostal": "73210", - "codeCommune": "73006", - "libelleAcheminement": "AIME LA PLAGNE", - "nomCommune": "AIME LA PLAGNE" + "codePostal": "76590", + "codeCommune": "76389", + "libelleAcheminement": "LINTOT LES BOIS", + "nomCommune": "LINTOT LES BOIS" }, { - "codePostal": "74430", - "codeCommune": "74238", - "libelleAcheminement": "ST JEAN D AULPS", - "nomCommune": "ST JEAN D AULPS" + "codePostal": "62136", + "codeCommune": "62851", + "libelleAcheminement": "VIEILLE CHAPELLE", + "nomCommune": "VIEILLE CHAPELLE" }, { - "codePostal": "50440", - "codeCommune": "50041", - "libelleAcheminement": "LA HAGUE", - "nomCommune": "LA HAGUE" + "codePostal": "64120", + "codeCommune": "64487", + "libelleAcheminement": "ST JUST IBARRE", + "nomCommune": "ST JUST IBARRE" }, { - "codePostal": "17120", - "codeCommune": "17131", - "libelleAcheminement": "COZES", - "nomCommune": "COZES" + "codePostal": "76590", + "codeCommune": "76397", + "libelleAcheminement": "LONGUEVILLE SUR SCIE", + "nomCommune": "LONGUEVILLE SUR SCIE" }, { - "codePostal": "73210", - "codeCommune": "73006", - "libelleAcheminement": "AIME LA PLAGNE", - "nomCommune": "AIME LA PLAGNE" + "codePostal": "24560", + "codeCommune": "24176", + "libelleAcheminement": "FAURILLES", + "nomCommune": "FAURILLES" }, { - "codePostal": "74250", - "codeCommune": "74240", - "libelleAcheminement": "ST JEAN DE THOLOME", - "nomCommune": "ST JEAN DE THOLOME" + "codePostal": "76440", + "codeCommune": "76393", + "libelleAcheminement": "LONGMESNIL", + "nomCommune": "LONGMESNIL" }, { - "codePostal": "50210", - "codeCommune": "50044", - "libelleAcheminement": "BELVAL", - "nomCommune": "BELVAL" + "codePostal": "62690", + "codeCommune": "62856", + "libelleAcheminement": "VILLERS BRULIN", + "nomCommune": "VILLERS BRULIN" }, { - "codePostal": "17470", - "codeCommune": "17138", - "libelleAcheminement": "DAMPIERRE SUR BOUTONNE", - "nomCommune": "DAMPIERRE SUR BOUTONNE" + "codePostal": "64160", + "codeCommune": "64488", + "libelleAcheminement": "ST LAURENT BRETAGNE", + "nomCommune": "ST LAURENT BRETAGNE" }, { - "codePostal": "73410", - "codeCommune": "73010", - "libelleAcheminement": "ENTRELACS", - "nomCommune": "ENTRELACS" + "codePostal": "76490", + "codeCommune": "76398", + "libelleAcheminement": "LOUVETOT", + "nomCommune": "LOUVETOT" }, { - "codePostal": "74300", - "codeCommune": "74252", - "libelleAcheminement": "ST SIGISMOND", - "nomCommune": "ST SIGISMOND" + "codePostal": "24450", + "codeCommune": "24180", + "libelleAcheminement": "FIRBEIX", + "nomCommune": "FIRBEIX" }, { - "codePostal": "50420", - "codeCommune": "50050", - "libelleAcheminement": "BEUVRIGNY", - "nomCommune": "BEUVRIGNY" + "codePostal": "76440", + "codeCommune": "76420", + "libelleAcheminement": "MAUQUENCHY", + "nomCommune": "MAUQUENCHY" }, { - "codePostal": "17100", - "codeCommune": "17143", - "libelleAcheminement": "LE DOUHET", - "nomCommune": "LE DOUHET" + "codePostal": "62580", + "codeCommune": "62861", + "libelleAcheminement": "VIMY", + "nomCommune": "VIMY" }, { - "codePostal": "73410", - "codeCommune": "73010", - "libelleAcheminement": "ENTRELACS", - "nomCommune": "ENTRELACS" + "codePostal": "64990", + "codeCommune": "64496", + "libelleAcheminement": "ST PIERRE D IRUBE", + "nomCommune": "ST PIERRE D IRUBE" }, { - "codePostal": "74700", - "codeCommune": "74256", - "libelleAcheminement": "SALLANCHES", - "nomCommune": "SALLANCHES" + "codePostal": "76270", + "codeCommune": "76399", + "libelleAcheminement": "LUCY", + "nomCommune": "LUCY" }, { - "codePostal": "50800", - "codeCommune": "50069", - "libelleAcheminement": "BOURGUENOLLES", - "nomCommune": "BOURGUENOLLES" + "codePostal": "24210", + "codeCommune": "24188", + "libelleAcheminement": "FOSSEMAGNE", + "nomCommune": "FOSSEMAGNE" }, { - "codePostal": "17800", - "codeCommune": "17145", - "libelleAcheminement": "ECHEBRUNE", - "nomCommune": "ECHEBRUNE" + "codePostal": "76220", + "codeCommune": "76423", + "libelleAcheminement": "MENERVAL", + "nomCommune": "MENERVAL" }, { - "codePostal": "73410", - "codeCommune": "73010", - "libelleAcheminement": "ENTRELACS", - "nomCommune": "ENTRELACS" + "codePostal": "62490", + "codeCommune": "62865", + "libelleAcheminement": "VITRY EN ARTOIS", + "nomCommune": "VITRY EN ARTOIS" }, { - "codePostal": "74950", - "codeCommune": "74264", - "libelleAcheminement": "SCIONZIER", - "nomCommune": "SCIONZIER" + "codePostal": "64300", + "codeCommune": "64505", + "libelleAcheminement": "SARPOURENX", + "nomCommune": "SARPOURENX" }, { - "codePostal": "50480", - "codeCommune": "50070", - "libelleAcheminement": "BOUTTEVILLE", - "nomCommune": "BOUTTEVILLE" + "codePostal": "76810", + "codeCommune": "76400", + "libelleAcheminement": "LUNERAY", + "nomCommune": "LUNERAY" }, { - "codePostal": "17137", - "codeCommune": "17153", - "libelleAcheminement": "ESNANDES", - "nomCommune": "ESNANDES" + "codePostal": "24130", + "codeCommune": "24191", + "libelleAcheminement": "FRAISSE", + "nomCommune": "FRAISSE" }, { - "codePostal": "73550", - "codeCommune": "73015", - "libelleAcheminement": "LES ALLUES", - "nomCommune": "LES ALLUES" + "codePostal": "76110", + "codeCommune": "76425", + "libelleAcheminement": "MENTHEVILLE", + "nomCommune": "MENTHEVILLE" }, { - "codePostal": "74740", - "codeCommune": "74273", - "libelleAcheminement": "SIXT FER A CHEVAL", - "nomCommune": "SIXT FER A CHEVAL" + "codePostal": "62180", + "codeCommune": "62866", + "libelleAcheminement": "WABEN", + "nomCommune": "WABEN" }, { - "codePostal": "50290", - "codeCommune": "50085", - "libelleAcheminement": "BRICQUEVILLE SUR MER", - "nomCommune": "BRICQUEVILLE SUR MER" + "codePostal": "64300", + "codeCommune": "64510", + "libelleAcheminement": "SAULT DE NAVAILLES", + "nomCommune": "SAULT DE NAVAILLES" }, { - "codePostal": "17510", - "codeCommune": "17162", - "libelleAcheminement": "FONTAINE CHALENDRAY", - "nomCommune": "FONTAINE CHALENDRAY" + "codePostal": "76940", + "codeCommune": "76401", + "libelleAcheminement": "ARELAUNE EN SEINE", + "nomCommune": "ARELAUNE EN SEINE" }, { - "codePostal": "73190", - "codeCommune": "73017", - "libelleAcheminement": "APREMONT", - "nomCommune": "APREMONT" + "codePostal": "24540", + "codeCommune": "24195", + "libelleAcheminement": "GAUGEAC", + "nomCommune": "GAUGEAC" }, { - "codePostal": "74440", - "codeCommune": "74276", - "libelleAcheminement": "TANINGES", - "nomCommune": "TANINGES" + "codePostal": "76780", + "codeCommune": "76455", + "libelleAcheminement": "MORVILLE SUR ANDELLE", + "nomCommune": "MORVILLE SUR ANDELLE" }, { - "codePostal": "50700", - "codeCommune": "50087", - "libelleAcheminement": "BRIX", - "nomCommune": "BRIX" + "codePostal": "62140", + "codeCommune": "62871", + "libelleAcheminement": "WAMBERCOURT", + "nomCommune": "WAMBERCOURT" }, { - "codePostal": "17260", - "codeCommune": "17172", - "libelleAcheminement": "GEMOZAC", - "nomCommune": "GEMOZAC" + "codePostal": "64320", + "codeCommune": "64518", + "libelleAcheminement": "SENDETS", + "nomCommune": "SENDETS" }, { - "codePostal": "73800", - "codeCommune": "73018", - "libelleAcheminement": "ARBIN", - "nomCommune": "ARBIN" + "codePostal": "76770", + "codeCommune": "76402", + "libelleAcheminement": "MALAUNAY", + "nomCommune": "MALAUNAY" }, { - "codePostal": "74150", - "codeCommune": "74283", - "libelleAcheminement": "THUSY", - "nomCommune": "THUSY" + "codePostal": "24130", + "codeCommune": "24197", + "libelleAcheminement": "GINESTET", + "nomCommune": "GINESTET" }, { - "codePostal": "50640", - "codeCommune": "50090", - "libelleAcheminement": "BUAIS LES MONTS", - "nomCommune": "BUAIS LES MONTS" + "codePostal": "76340", + "codeCommune": "76460", + "libelleAcheminement": "NESLE NORMANDEUSE", + "nomCommune": "NESLE NORMANDEUSE" }, { - "codePostal": "17120", - "codeCommune": "17183", - "libelleAcheminement": "GREZAC", - "nomCommune": "GREZAC" + "codePostal": "62128", + "codeCommune": "62873", + "libelleAcheminement": "WANCOURT", + "nomCommune": "WANCOURT" }, { - "codePostal": "73500", - "codeCommune": "73023", - "libelleAcheminement": "AUSSOIS", - "nomCommune": "AUSSOIS" + "codePostal": "64160", + "codeCommune": "64520", + "libelleAcheminement": "SERRES MORLAAS", + "nomCommune": "SERRES MORLAAS" }, { - "codePostal": "74250", - "codeCommune": "74284", - "libelleAcheminement": "LA TOUR", - "nomCommune": "LA TOUR" + "codePostal": "76450", + "codeCommune": "76403", + "libelleAcheminement": "MALLEVILLE LES GRES", + "nomCommune": "MALLEVILLE LES GRES" }, { - "codePostal": "50210", - "codeCommune": "50094", - "libelleAcheminement": "CAMPROND", - "nomCommune": "CAMPROND" + "codePostal": "24390", + "codeCommune": "24202", + "libelleAcheminement": "GRANGES D ANS", + "nomCommune": "GRANGES D ANS" }, { - "codePostal": "17600", - "codeCommune": "17185", - "libelleAcheminement": "LE GUA", - "nomCommune": "LE GUA" + "codePostal": "76780", + "codeCommune": "76469", + "libelleAcheminement": "NOLLEVAL", + "nomCommune": "NOLLEVAL" }, { - "codePostal": "73540", - "codeCommune": "73032", - "libelleAcheminement": "LA BATHIE", - "nomCommune": "LA BATHIE" + "codePostal": "62120", + "codeCommune": "62875", + "libelleAcheminement": "WARDRECQUES", + "nomCommune": "WARDRECQUES" }, { - "codePostal": "74150", - "codeCommune": "74289", - "libelleAcheminement": "VALLIERES SUR FIER", - "nomCommune": "VALLIERES SUR FIER" + "codePostal": "64350", + "codeCommune": "64524", + "libelleAcheminement": "SIMACOURBE", + "nomCommune": "SIMACOURBE" }, { - "codePostal": "50750", - "codeCommune": "50095", - "libelleAcheminement": "CANISY", - "nomCommune": "CANISY" + "codePostal": "76270", + "codeCommune": "76415", + "libelleAcheminement": "MASSY", + "nomCommune": "MASSY" }, { - "codePostal": "17220", - "codeCommune": "17193", - "libelleAcheminement": "LA JARNE", - "nomCommune": "LA JARNE" + "codePostal": "24400", + "codeCommune": "24211", + "libelleAcheminement": "ISSAC", + "nomCommune": "ISSAC" }, { - "codePostal": "73270", - "codeCommune": "73034", - "libelleAcheminement": "BEAUFORT SUR DORON", - "nomCommune": "BEAUFORT" + "codePostal": "76960", + "codeCommune": "76474", + "libelleAcheminement": "NOTRE DAME DE BONDEVILLE", + "nomCommune": "NOTRE DAME DE BONDEVILLE" }, { - "codePostal": "74150", - "codeCommune": "74289", - "libelleAcheminement": "VALLIERES SUR FIER", - "nomCommune": "VALLIERES SUR FIER" + "codePostal": "62390", + "codeCommune": "62881", + "libelleAcheminement": "BEAUVOIR WAVANS", + "nomCommune": "BEAUVOIR WAVANS" }, { - "codePostal": "50500", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "64330", + "codeCommune": "64534", + "libelleAcheminement": "TARON SADIRAC VIELLENAVE", + "nomCommune": "TARON SADIRAC VIELLENAVE" }, { - "codePostal": "17500", - "codeCommune": "17197", - "libelleAcheminement": "JONZAC", - "nomCommune": "JONZAC" + "codePostal": "76680", + "codeCommune": "76416", + "libelleAcheminement": "MATHONVILLE", + "nomCommune": "MATHONVILLE" }, { - "codePostal": "73730", - "codeCommune": "73063", - "libelleAcheminement": "CEVINS", - "nomCommune": "CEVINS" + "codePostal": "24380", + "codeCommune": "24220", + "libelleAcheminement": "LACROPTE", + "nomCommune": "LACROPTE" }, { - "codePostal": "74440", - "codeCommune": "74294", - "libelleAcheminement": "VERCHAIX", - "nomCommune": "VERCHAIX" + "codePostal": "76390", + "codeCommune": "76479", + "libelleAcheminement": "NULLEMONT", + "nomCommune": "NULLEMONT" }, { - "codePostal": "50500", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "62650", + "codeCommune": "62886", + "libelleAcheminement": "WICQUINGHEM", + "nomCommune": "WICQUINGHEM" }, { - "codePostal": "17170", - "codeCommune": "17201", - "libelleAcheminement": "LA LAIGNE", - "nomCommune": "LA LAIGNE" + "codePostal": "64470", + "codeCommune": "64537", + "libelleAcheminement": "TROIS VILLES", + "nomCommune": "TROIS VILLES" }, { - "codePostal": "73660", - "codeCommune": "73074", - "libelleAcheminement": "LA CHAPELLE", - "nomCommune": "LA CHAPELLE" + "codePostal": "76240", + "codeCommune": "76429", + "libelleAcheminement": "LE MESNIL ESNARD", + "nomCommune": "LE MESNIL ESNARD" }, { - "codePostal": "74420", - "codeCommune": "74301", - "libelleAcheminement": "VILLARD", - "nomCommune": "VILLARD" + "codePostal": "24130", + "codeCommune": "24222", + "libelleAcheminement": "LA FORCE", + "nomCommune": "LA FORCE" }, { - "codePostal": "50500", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "76450", + "codeCommune": "76480", + "libelleAcheminement": "OCQUEVILLE", + "nomCommune": "OCQUEVILLE" }, { - "codePostal": "17600", - "codeCommune": "17214", - "libelleAcheminement": "LUCHAT", - "nomCommune": "LUCHAT" + "codePostal": "62830", + "codeCommune": "62888", + "libelleAcheminement": "WIERRE AU BOIS", + "nomCommune": "WIERRE AU BOIS" }, { - "codePostal": "73110", - "codeCommune": "73075", - "libelleAcheminement": "LA CHAPELLE BLANCHE", - "nomCommune": "LA CHAPELLE BLANCHE" + "codePostal": "64700", + "codeCommune": "64545", + "libelleAcheminement": "URRUGNE", + "nomCommune": "URRUGNE" }, { - "codePostal": "74370", - "codeCommune": "74303", - "libelleAcheminement": "VILLAZ", - "nomCommune": "VILLAZ" + "codePostal": "76210", + "codeCommune": "76439", + "libelleAcheminement": "MIRVILLE", + "nomCommune": "MIRVILLE" }, { - "codePostal": "50500", - "codeCommune": "50099", - "libelleAcheminement": "CARENTAN LES MARAIS", - "nomCommune": "CARENTAN LES MARAIS" + "codePostal": "24150", + "codeCommune": "24223", + "libelleAcheminement": "LALINDE", + "nomCommune": "LALINDE" }, { - "codePostal": "17500", - "codeCommune": "17215", - "libelleAcheminement": "LUSSAC", - "nomCommune": "LUSSAC" + "codePostal": "76450", + "codeCommune": "76488", + "libelleAcheminement": "OUAINVILLE", + "nomCommune": "OUAINVILLE" }, { - "codePostal": "73170", - "codeCommune": "73078", - "libelleAcheminement": "LA CHAPELLE ST MARTIN", - "nomCommune": "LA CHAPELLE ST MARTIN" + "codePostal": "62240", + "codeCommune": "62896", + "libelleAcheminement": "WIRWIGNES", + "nomCommune": "WIRWIGNES" }, { - "codePostal": "74350", - "codeCommune": "74306", - "libelleAcheminement": "VILLY LE BOUVERET", - "nomCommune": "VILLY LE BOUVERET" + "codePostal": "64480", + "codeCommune": "64547", + "libelleAcheminement": "USTARITZ", + "nomCommune": "USTARITZ" }, { - "codePostal": "50320", - "codeCommune": "50115", - "libelleAcheminement": "LE GRIPPON", - "nomCommune": "LE GRIPPON" + "codePostal": "76340", + "codeCommune": "76441", + "libelleAcheminement": "MONCHAUX SORENG", + "nomCommune": "MONCHAUX SORENG" }, { - "codePostal": "17132", - "codeCommune": "17230", - "libelleAcheminement": "MESCHERS SUR GIRONDE", - "nomCommune": "MESCHERS SUR GIRONDE" + "codePostal": "24230", + "codeCommune": "24226", + "libelleAcheminement": "LAMOTHE MONTRAVEL", + "nomCommune": "LAMOTHE MONTRAVEL" }, { - "codePostal": "73400", - "codeCommune": "73088", - "libelleAcheminement": "COHENNOZ", - "nomCommune": "COHENNOZ" + "codePostal": "76860", + "codeCommune": "76492", + "libelleAcheminement": "OUVILLE LA RIVIERE", + "nomCommune": "OUVILLE LA RIVIERE" }, { - "codePostal": "75004", - "codeCommune": "75104", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 04" + "codePostal": "62380", + "codeCommune": "62897", + "libelleAcheminement": "WISMES", + "nomCommune": "WISMES" }, { - "codePostal": "50800", - "codeCommune": "50118", - "libelleAcheminement": "CHAMPREPUS", - "nomCommune": "CHAMPREPUS" + "codePostal": "64370", + "codeCommune": "64548", + "libelleAcheminement": "UZAN", + "nomCommune": "UZAN" }, { - "codePostal": "17150", - "codeCommune": "17236", - "libelleAcheminement": "MIRAMBEAU", - "nomCommune": "MIRAMBEAU" + "codePostal": "76690", + "codeCommune": "76443", + "libelleAcheminement": "MONT CAUVAIRE", + "nomCommune": "MONT CAUVAIRE" }, { - "codePostal": "73190", - "codeCommune": "73097", - "libelleAcheminement": "CURIENNE", - "nomCommune": "CURIENNE" + "codePostal": "24570", + "codeCommune": "24229", + "libelleAcheminement": "LE LARDIN ST LAZARE", + "nomCommune": "LE LARDIN ST LAZARE" }, { - "codePostal": "75007", - "codeCommune": "75107", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 07" + "codePostal": "76650", + "codeCommune": "76497", + "libelleAcheminement": "PETIT COURONNE", + "nomCommune": "PETIT COURONNE" }, { - "codePostal": "50510", - "codeCommune": "50120", - "libelleAcheminement": "CHANTELOUP", - "nomCommune": "CHANTELOUP" + "codePostal": "62890", + "codeCommune": "62904", + "libelleAcheminement": "ZOUAFQUES", + "nomCommune": "ZOUAFQUES" }, { - "codePostal": "17130", - "codeCommune": "17240", - "libelleAcheminement": "MONTENDRE", - "nomCommune": "MONTENDRE" + "codePostal": "64110", + "codeCommune": "64550", + "libelleAcheminement": "UZOS", + "nomCommune": "UZOS" }, { - "codePostal": "73230", - "codeCommune": "73098", - "libelleAcheminement": "LES DESERTS", - "nomCommune": "LES DESERTS" + "codePostal": "76680", + "codeCommune": "76445", + "libelleAcheminement": "MONTEROLIER", + "nomCommune": "MONTEROLIER" }, { - "codePostal": "75011", - "codeCommune": "75111", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 11" + "codePostal": "24520", + "codeCommune": "24242", + "libelleAcheminement": "LIORAC SUR LOUYRE", + "nomCommune": "LIORAC SUR LOUYRE" }, { - "codePostal": "50110", - "codeCommune": "50129", - "libelleAcheminement": "CHERBOURG EN COTENTIN", - "nomCommune": "CHERBOURG EN COTENTIN" + "codePostal": "76460", + "codeCommune": "76504", + "libelleAcheminement": "PLEINE SEVE", + "nomCommune": "PLEINE SEVE" }, { - "codePostal": "17130", - "codeCommune": "17240", - "libelleAcheminement": "MONTENDRE", - "nomCommune": "MONTENDRE" + "codePostal": "63600", + "codeCommune": "63003", + "libelleAcheminement": "AMBERT", + "nomCommune": "AMBERT" }, { - "codePostal": "73330", - "codeCommune": "73100", - "libelleAcheminement": "DOMESSIN", - "nomCommune": "DOMESSIN" + "codePostal": "64330", + "codeCommune": "64552", + "libelleAcheminement": "VIALER", + "nomCommune": "VIALER" }, { - "codePostal": "75015", - "codeCommune": "75115", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 15" + "codePostal": "76520", + "codeCommune": "76448", + "libelleAcheminement": "MONTMAIN", + "nomCommune": "MONTMAIN" }, { - "codePostal": "50800", - "codeCommune": "50130", - "libelleAcheminement": "CHERENCE LE HERON", - "nomCommune": "CHERENCE LE HERON" + "codePostal": "24350", + "codeCommune": "24243", + "libelleAcheminement": "LISLE", + "nomCommune": "LISLE" }, { - "codePostal": "17800", - "codeCommune": "17242", - "libelleAcheminement": "MONTILS", - "nomCommune": "MONTILS" + "codePostal": "76660", + "codeCommune": "76512", + "libelleAcheminement": "PUISENVAL", + "nomCommune": "PUISENVAL" }, { - "codePostal": "73360", - "codeCommune": "73105", - "libelleAcheminement": "LES ECHELLES", - "nomCommune": "LES ECHELLES" + "codePostal": "63340", + "codeCommune": "63005", + "libelleAcheminement": "ANTOINGT", + "nomCommune": "ANTOINGT" }, { - "codePostal": "75116", - "codeCommune": "75116", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 16" + "codePostal": "64410", + "codeCommune": "64557", + "libelleAcheminement": "VIGNES", + "nomCommune": "VIGNES" }, { - "codePostal": "50700", - "codeCommune": "50138", - "libelleAcheminement": "COLOMBY", - "nomCommune": "COLOMBY" + "codePostal": "76850", + "codeCommune": "76449", + "libelleAcheminement": "MONTREUIL EN CAUX", + "nomCommune": "MONTREUIL EN CAUX" }, { - "codePostal": "17210", - "codeCommune": "17243", - "libelleAcheminement": "MONTLIEU LA GARDE", - "nomCommune": "MONTLIEU LA GARDE" + "codePostal": "24300", + "codeCommune": "24248", + "libelleAcheminement": "LUSSAS ET NONTRONNEAU", + "nomCommune": "LUSSAS ET NONTRONNEAU" }, { - "codePostal": "73540", - "codeCommune": "73110", - "libelleAcheminement": "ESSERTS BLAY", - "nomCommune": "ESSERTS BLAY" + "codePostal": "76270", + "codeCommune": "76516", + "libelleAcheminement": "QUIEVRECOURT", + "nomCommune": "QUIEVRECOURT" }, { - "codePostal": "75020", - "codeCommune": "75120", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 20" + "codePostal": "63250", + "codeCommune": "63008", + "libelleAcheminement": "ARCONSAT", + "nomCommune": "ARCONSAT" }, { - "codePostal": "50220", - "codeCommune": "50146", - "libelleAcheminement": "COURTILS", - "nomCommune": "COURTILS" + "codePostal": "65240", + "codeCommune": "65003", + "libelleAcheminement": "ADERVIELLE POUCHERGUES", + "nomCommune": "ADERVIELLE POUCHERGUES" }, { - "codePostal": "17260", - "codeCommune": "17244", - "libelleAcheminement": "MONTPELLIER DE MEDILLAN", - "nomCommune": "MONTPELLIER DE MEDILLAN" + "codePostal": "76130", + "codeCommune": "76451", + "libelleAcheminement": "MONT ST AIGNAN", + "nomCommune": "MONT ST AIGNAN" }, { - "codePostal": "73350", - "codeCommune": "73113", - "libelleAcheminement": "FEISSONS SUR SALINS", - "nomCommune": "FEISSONS SUR SALINS" + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { - "codePostal": "76190", - "codeCommune": "76001", - "libelleAcheminement": "ALLOUVILLE BELLEFOSSE", - "nomCommune": "ALLOUVILLE BELLEFOSSE" + "codePostal": "76340", + "codeCommune": "76520", + "libelleAcheminement": "REALCAMP", + "nomCommune": "REALCAMP" }, { - "codePostal": "50200", - "codeCommune": "50147", - "libelleAcheminement": "COUTANCES", - "nomCommune": "COUTANCES" + "codePostal": "63220", + "codeCommune": "63010", + "libelleAcheminement": "ARLANC", + "nomCommune": "ARLANC" }, { - "codePostal": "17430", - "codeCommune": "17246", - "libelleAcheminement": "MORAGNE", - "nomCommune": "MORAGNE" + "codePostal": "65360", + "codeCommune": "65005", + "libelleAcheminement": "ALLIER", + "nomCommune": "ALLIER" }, { - "codePostal": "73590", - "codeCommune": "73123", - "libelleAcheminement": "LA GIETTAZ", - "nomCommune": "LA GIETTAZ" + "codePostal": "76330", + "codeCommune": "76476", + "libelleAcheminement": "PORT JEROME SUR SEINE", + "nomCommune": "PORT JEROME SUR SEINE" + }, + { + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { "codePostal": "76560", - "codeCommune": "76006", - "libelleAcheminement": "AMFREVILLE LES CHAMPS", - "nomCommune": "AMFREVILLE LES CHAMPS" + "codeCommune": "76530", + "libelleAcheminement": "ROBERTOT", + "nomCommune": "ROBERTOT" }, { - "codePostal": "50360", - "codeCommune": "50156", - "libelleAcheminement": "CROSVILLE SUR DOUVE", - "nomCommune": "CROSVILLE SUR DOUVE" + "codePostal": "63260", + "codeCommune": "63013", + "libelleAcheminement": "AUBIAT", + "nomCommune": "AUBIAT" }, { - "codePostal": "17113", - "codeCommune": "17247", - "libelleAcheminement": "MORNAC SUR SEUDRE", - "nomCommune": "MORNAC SUR SEUDRE" + "codePostal": "65440", + "codeCommune": "65006", + "libelleAcheminement": "ANCIZAN", + "nomCommune": "ANCIZAN" }, { - "codePostal": "73100", - "codeCommune": "73128", - "libelleAcheminement": "GRESY SUR AIX", - "nomCommune": "GRESY SUR AIX" + "codePostal": "76133", + "codeCommune": "76477", + "libelleAcheminement": "NOTRE DAME DU BEC", + "nomCommune": "NOTRE DAME DU BEC" }, { - "codePostal": "76590", - "codeCommune": "76019", - "libelleAcheminement": "ANNEVILLE SUR SCIE", - "nomCommune": "ANNEVILLE SUR SCIE" + "codePostal": "24340", + "codeCommune": "24253", + "libelleAcheminement": "MAREUIL EN PERIGORD", + "nomCommune": "MAREUIL EN PERIGORD" }, { - "codePostal": "50750", - "codeCommune": "50159", - "libelleAcheminement": "DANGY", - "nomCommune": "DANGY" + "codePostal": "76640", + "codeCommune": "76531", + "libelleAcheminement": "ROCQUEFORT", + "nomCommune": "ROCQUEFORT" }, { - "codePostal": "17500", - "codeCommune": "17259", - "libelleAcheminement": "NEULLES", - "nomCommune": "NEULLES" + "codePostal": "63170", + "codeCommune": "63014", + "libelleAcheminement": "AUBIERE", + "nomCommune": "AUBIERE" }, { - "codePostal": "73390", - "codeCommune": "73133", - "libelleAcheminement": "HAUTEVILLE", - "nomCommune": "HAUTEVILLE" + "codePostal": "65200", + "codeCommune": "65016", + "libelleAcheminement": "ANTIST", + "nomCommune": "ANTIST" }, { - "codePostal": "76340", - "codeCommune": "76029", - "libelleAcheminement": "AUBERMESNIL AUX ERABLES", - "nomCommune": "AUBERMESNIL AUX ERABLES" + "codePostal": "76590", + "codeCommune": "76478", + "libelleAcheminement": "NOTRE DAME DU PARC", + "nomCommune": "NOTRE DAME DU PARC" }, { - "codePostal": "50420", - "codeCommune": "50164", - "libelleAcheminement": "DOMJEAN", - "nomCommune": "DOMJEAN" + "codePostal": "24130", + "codeCommune": "24259", + "libelleAcheminement": "EYRAUD CREMPSE MAURENS", + "nomCommune": "EYRAUD CREMPSE MAURENS" }, { - "codePostal": "17810", - "codeCommune": "17262", - "libelleAcheminement": "NIEUL LES SAINTES", - "nomCommune": "NIEUL LES SAINTES" + "codePostal": "76690", + "codeCommune": "76547", + "libelleAcheminement": "LA RUE ST PIERRE", + "nomCommune": "LA RUE ST PIERRE" }, { - "codePostal": "73300", - "codeCommune": "73135", - "libelleAcheminement": "LA TOUR EN MAURIENNE", - "nomCommune": "LA TOUR EN MAURIENNE" + "codePostal": "63930", + "codeCommune": "63016", + "libelleAcheminement": "AUGEROLLES", + "nomCommune": "AUGEROLLES" }, { - "codePostal": "76520", - "codeCommune": "76039", - "libelleAcheminement": "LES AUTHIEUX SUR LE PORT ST OUEN", - "nomCommune": "LES AUTHIEUX SUR LE PORT ST OUEN" + "codePostal": "65100", + "codeCommune": "65020", + "libelleAcheminement": "ARCIZAC EZ ANGLES", + "nomCommune": "ARCIZAC EZ ANGLES" }, { - "codePostal": "50350", - "codeCommune": "50165", - "libelleAcheminement": "DONVILLE LES BAINS", - "nomCommune": "DONVILLE LES BAINS" + "codePostal": "76930", + "codeCommune": "76481", + "libelleAcheminement": "OCTEVILLE SUR MER", + "nomCommune": "OCTEVILLE SUR MER" }, { - "codePostal": "17137", - "codeCommune": "17264", - "libelleAcheminement": "NIEUL SUR MER", - "nomCommune": "NIEUL SUR MER" + "codePostal": "24140", + "codeCommune": "24259", + "libelleAcheminement": "EYRAUD CREMPSE MAURENS", + "nomCommune": "EYRAUD CREMPSE MAURENS" }, { - "codePostal": "73300", - "codeCommune": "73138", - "libelleAcheminement": "JARRIER", - "nomCommune": "JARRIER" + "codePostal": "76116", + "codeCommune": "76548", + "libelleAcheminement": "RY", + "nomCommune": "RY" }, { - "codePostal": "76190", - "codeCommune": "76041", - "libelleAcheminement": "LES HAUTS DE CAUX", - "nomCommune": "LES HAUTS DE CAUX" + "codePostal": "63110", + "codeCommune": "63032", + "libelleAcheminement": "BEAUMONT", + "nomCommune": "BEAUMONT" }, { - "codePostal": "50250", - "codeCommune": "50166", - "libelleAcheminement": "DOVILLE", - "nomCommune": "DOVILLE" + "codePostal": "65240", + "codeCommune": "65023", + "libelleAcheminement": "ARDENGOST", + "nomCommune": "ARDENGOST" }, { - "codePostal": "17137", - "codeCommune": "17264", - "libelleAcheminement": "NIEUL SUR MER", - "nomCommune": "NIEUL SUR MER" + "codePostal": "76760", + "codeCommune": "76491", + "libelleAcheminement": "OUVILLE L ABBAYE", + "nomCommune": "OUVILLE L ABBAYE" }, { - "codePostal": "73210", - "codeCommune": "73142", - "libelleAcheminement": "LANDRY", - "nomCommune": "LANDRY" + "codePostal": "24240", + "codeCommune": "24267", + "libelleAcheminement": "MESCOULES", + "nomCommune": "MESCOULES" }, { - "codePostal": "76630", - "codeCommune": "76049", - "libelleAcheminement": "AVESNES EN VAL", - "nomCommune": "AVESNES EN VAL" + "codePostal": "76690", + "codeCommune": "76555", + "libelleAcheminement": "ST ANDRE SUR CAILLY", + "nomCommune": "ST ANDRE SUR CAILLY" }, { - "codePostal": "50220", - "codeCommune": "50168", - "libelleAcheminement": "DUCEY LES CHERIS", - "nomCommune": "DUCEY LES CHERIS" + "codePostal": "63310", + "codeCommune": "63033", + "libelleAcheminement": "BEAUMONT LES RANDAN", + "nomCommune": "BEAUMONT LES RANDAN" }, { - "codePostal": "17130", - "codeCommune": "17282", - "libelleAcheminement": "POMMIERS MOULONS", - "nomCommune": "POMMIERS MOULONS" + "codePostal": "65400", + "codeCommune": "65025", + "libelleAcheminement": "ARGELES GAZOST", + "nomCommune": "ARGELES GAZOST" }, { - "codePostal": "73610", - "codeCommune": "73145", - "libelleAcheminement": "LEPIN LE LAC", - "nomCommune": "LEPIN LE LAC" + "codePostal": "76570", + "codeCommune": "76495", + "libelleAcheminement": "PAVILLY", + "nomCommune": "PAVILLY" }, { - "codePostal": "76870", - "codeCommune": "76065", - "libelleAcheminement": "BEAUSSAULT", - "nomCommune": "BEAUSSAULT" + "codePostal": "24480", + "codeCommune": "24273", + "libelleAcheminement": "MOLIERES", + "nomCommune": "MOLIERES" }, { - "codePostal": "50310", - "codeCommune": "50169", - "libelleAcheminement": "ECAUSSEVILLE", - "nomCommune": "ECAUSSEVILLE" + "codePostal": "76570", + "codeCommune": "76566", + "libelleAcheminement": "STE AUSTREBERTHE", + "nomCommune": "STE AUSTREBERTHE" }, { - "codePostal": "17800", - "codeCommune": "17283", - "libelleAcheminement": "PONS", - "nomCommune": "PONS" + "codePostal": "63116", + "codeCommune": "63034", + "libelleAcheminement": "BEAUREGARD L EVEQUE", + "nomCommune": "BEAUREGARD L EVEQUE" }, { - "codePostal": "73210", - "codeCommune": "73150", - "libelleAcheminement": "LA PLAGNE TARENTAISE", - "nomCommune": "LA PLAGNE TARENTAISE" + "codePostal": "65400", + "codeCommune": "65029", + "libelleAcheminement": "ARRAS EN LAVEDAN", + "nomCommune": "ARRAS EN LAVEDAN" }, { - "codePostal": "76220", - "codeCommune": "76067", - "libelleAcheminement": "BEAUVOIR EN LYONS", - "nomCommune": "BEAUVOIR EN LYONS" + "codePostal": "76680", + "codeCommune": "76506", + "libelleAcheminement": "POMMEREVAL", + "nomCommune": "POMMEREVAL" }, { - "codePostal": "50320", - "codeCommune": "50174", - "libelleAcheminement": "EQUILLY", - "nomCommune": "EQUILLY" + "codePostal": "24240", + "codeCommune": "24274", + "libelleAcheminement": "MONBAZILLAC", + "nomCommune": "MONBAZILLAC" }, { - "codePostal": "17460", - "codeCommune": "17289", - "libelleAcheminement": "PREGUILLAC", - "nomCommune": "PREGUILLAC" + "codePostal": "76750", + "codeCommune": "76571", + "libelleAcheminement": "STE CROIX SUR BUCHY", + "nomCommune": "STE CROIX SUR BUCHY" }, { - "codePostal": "73800", - "codeCommune": "73151", - "libelleAcheminement": "PORTE DE SAVOIE", - "nomCommune": "PORTE DE SAVOIE" + "codePostal": "63480", + "codeCommune": "63037", + "libelleAcheminement": "BERTIGNAT", + "nomCommune": "BERTIGNAT" }, { - "codePostal": "76110", - "codeCommune": "76068", - "libelleAcheminement": "BEC DE MORTAGNE", - "nomCommune": "BEC DE MORTAGNE" + "codePostal": "65240", + "codeCommune": "65046", + "libelleAcheminement": "AULON", + "nomCommune": "AULON" }, { - "codePostal": "50800", - "codeCommune": "50185", - "libelleAcheminement": "FLEURY", - "nomCommune": "FLEURY" + "codePostal": "76280", + "codeCommune": "76508", + "libelleAcheminement": "LA POTERIE CAP D ANTIFER", + "nomCommune": "LA POTERIE CAP D ANTIFER" }, { - "codePostal": "17380", - "codeCommune": "17294", - "libelleAcheminement": "PUYROLLAND", - "nomCommune": "PUYROLLAND" + "codePostal": "24130", + "codeCommune": "24277", + "libelleAcheminement": "MONFAUCON", + "nomCommune": "MONFAUCON" }, { - "codePostal": "73470", - "codeCommune": "73152", - "libelleAcheminement": "MARCIEUX", - "nomCommune": "MARCIEUX" + "codePostal": "76590", + "codeCommune": "76577", + "libelleAcheminement": "STE FOY", + "nomCommune": "STE FOY" }, { - "codePostal": "76680", - "codeCommune": "76070", - "libelleAcheminement": "BELLENCOMBRE", - "nomCommune": "BELLENCOMBRE" + "codePostal": "63610", + "codeCommune": "63038", + "libelleAcheminement": "BESSE ET ST ANASTAISE", + "nomCommune": "BESSE ET ST ANASTAISE" }, { - "codePostal": "50310", - "codeCommune": "50194", - "libelleAcheminement": "FRESVILLE", - "nomCommune": "FRESVILLE" + "codePostal": "65390", + "codeCommune": "65048", + "libelleAcheminement": "AURENSAN", + "nomCommune": "AURENSAN" }, { - "codePostal": "17460", - "codeCommune": "17298", - "libelleAcheminement": "RIOUX", - "nomCommune": "RIOUX" + "codePostal": "76660", + "codeCommune": "76511", + "libelleAcheminement": "PREUSEVILLE", + "nomCommune": "PREUSEVILLE" }, { - "codePostal": "73000", - "codeCommune": "73160", - "libelleAcheminement": "MONTAGNOLE", - "nomCommune": "MONTAGNOLE" + "codePostal": "24380", + "codeCommune": "24312", + "libelleAcheminement": "SANILHAC", + "nomCommune": "SANILHAC" }, { "codePostal": "76440", - "codeCommune": "76074", - "libelleAcheminement": "LA BELLIERE", - "nomCommune": "LA BELLIERE" + "codeCommune": "76578", + "libelleAcheminement": "STE GENEVIEVE", + "nomCommune": "STE GENEVIEVE" }, { - "codePostal": "50150", - "codeCommune": "50195", - "libelleAcheminement": "GATHEMO", - "nomCommune": "GATHEMO" + "codePostal": "63220", + "codeCommune": "63039", + "libelleAcheminement": "BEURIERES", + "nomCommune": "BEURIERES" }, { - "codePostal": "17000", - "codeCommune": "17300", - "libelleAcheminement": "LA ROCHELLE", - "nomCommune": "LA ROCHELLE" + "codePostal": "65660", + "codeCommune": "65051", + "libelleAcheminement": "AVENTIGNAN", + "nomCommune": "AVENTIGNAN" }, { - "codePostal": "73800", - "codeCommune": "73171", - "libelleAcheminement": "MONTMELIAN", - "nomCommune": "MONTMELIAN" + "codePostal": "76520", + "codeCommune": "76514", + "libelleAcheminement": "QUEVREVILLE LA POTERIE", + "nomCommune": "QUEVREVILLE LA POTERIE" }, { - "codePostal": "76590", - "codeCommune": "76075", - "libelleAcheminement": "BELMESNIL", - "nomCommune": "BELMESNIL" + "codePostal": "24750", + "codeCommune": "24312", + "libelleAcheminement": "SANILHAC", + "nomCommune": "SANILHAC" }, { - "codePostal": "50190", - "codeCommune": "50210", - "libelleAcheminement": "GORGES", - "nomCommune": "GORGES" + "codePostal": "76690", + "codeCommune": "76580", + "libelleAcheminement": "ST GEORGES SUR FONTAINE", + "nomCommune": "ST GEORGES SUR FONTAINE" }, { - "codePostal": "17170", - "codeCommune": "17303", - "libelleAcheminement": "LA RONDE", - "nomCommune": "LA RONDE" + "codePostal": "63160", + "codeCommune": "63044", + "libelleAcheminement": "BONGHEAT", + "nomCommune": "BONGHEAT" }, { - "codePostal": "73470", - "codeCommune": "73184", - "libelleAcheminement": "NANCES", - "nomCommune": "NANCES" + "codePostal": "65400", + "codeCommune": "65055", + "libelleAcheminement": "AYROS ARBOUIX", + "nomCommune": "AYROS ARBOUIX" }, { - "codePostal": "76890", - "codeCommune": "76086", - "libelleAcheminement": "BERTRIMONT", - "nomCommune": "BERTRIMONT" + "codePostal": "76750", + "codeCommune": "76521", + "libelleAcheminement": "REBETS", + "nomCommune": "REBETS" }, { - "codePostal": "50560", - "codeCommune": "50215", - "libelleAcheminement": "GOUVILLE SUR MER", - "nomCommune": "GOUVILLE SUR MER" + "codePostal": "24170", + "codeCommune": "24313", + "libelleAcheminement": "ORLIAC", + "nomCommune": "ORLIAC" }, { - "codePostal": "17360", - "codeCommune": "17309", - "libelleAcheminement": "ST AIGULIN", - "nomCommune": "ST AIGULIN" + "codePostal": "76700", + "codeCommune": "76596", + "libelleAcheminement": "ST LAURENT DE BREVEDENT", + "nomCommune": "ST LAURENT DE BREVEDENT" }, { - "codePostal": "73260", - "codeCommune": "73187", - "libelleAcheminement": "LA LECHERE", - "nomCommune": "LA LECHERE" + "codePostal": "63190", + "codeCommune": "63045", + "libelleAcheminement": "BORT L ETANG", + "nomCommune": "BORT L ETANG" }, { - "codePostal": "76690", - "codeCommune": "76105", - "libelleAcheminement": "LE BOCASSE", - "nomCommune": "LE BOCASSE" + "codePostal": "65360", + "codeCommune": "65063", + "libelleAcheminement": "BARBAZAN DESSUS", + "nomCommune": "BARBAZAN DESSUS" }, { - "codePostal": "50400", - "codeCommune": "50218", - "libelleAcheminement": "GRANVILLE", - "nomCommune": "GRANVILLE" + "codePostal": "76430", + "codeCommune": "76522", + "libelleAcheminement": "LA REMUEE", + "nomCommune": "LA REMUEE" }, { - "codePostal": "17260", - "codeCommune": "17310", - "libelleAcheminement": "ST ANDRE DE LIDON", - "nomCommune": "ST ANDRE DE LIDON" + "codePostal": "24410", + "codeCommune": "24316", + "libelleAcheminement": "PARCOUL CHENAUD", + "nomCommune": "PARCOUL CHENAUD" }, { - "codePostal": "73260", - "codeCommune": "73187", - "libelleAcheminement": "LA LECHERE", - "nomCommune": "LA LECHERE" + "codePostal": "76280", + "codeCommune": "76609", + "libelleAcheminement": "STE MARIE AU BOSC", + "nomCommune": "STE MARIE AU BOSC" }, { - "codePostal": "76160", - "codeCommune": "76106", - "libelleAcheminement": "BOIS D ENNEBOURG", - "nomCommune": "BOIS D ENNEBOURG" + "codePostal": "63340", + "codeCommune": "63046", + "libelleAcheminement": "BOUDES", + "nomCommune": "BOUDES" }, { - "codePostal": "68580", - "codeCommune": "68340", - "libelleAcheminement": "UEBERSTRASS", - "nomCommune": "UEBERSTRASS" + "codePostal": "65380", + "codeCommune": "65067", + "libelleAcheminement": "BARRY", + "nomCommune": "BARRY" }, { - "codePostal": "17240", - "codeCommune": "17317", - "libelleAcheminement": "ST CIERS DU TAILLON", - "nomCommune": "ST CIERS DU TAILLON" + "codePostal": "76510", + "codeCommune": "76526", + "libelleAcheminement": "RICARVILLE DU VAL", + "nomCommune": "RICARVILLE DU VAL" }, { - "codePostal": "73350", - "codeCommune": "73201", - "libelleAcheminement": "PLANAY", - "nomCommune": "PLANAY" + "codePostal": "24590", + "codeCommune": "24317", + "libelleAcheminement": "PAULIN", + "nomCommune": "PAULIN" }, { - "codePostal": "76520", - "codeCommune": "76116", - "libelleAcheminement": "BOOS", - "nomCommune": "BOOS" + "codePostal": "76760", + "codeCommune": "76611", + "libelleAcheminement": "ST MARTIN AUX ARBRES", + "nomCommune": "ST MARTIN AUX ARBRES" }, { - "codePostal": "68320", - "codeCommune": "68345", - "libelleAcheminement": "URSCHENHEIM", - "nomCommune": "URSCHENHEIM" + "codePostal": "63340", + "codeCommune": "63052", + "libelleAcheminement": "LE BREUIL SUR COUZE", + "nomCommune": "LE BREUIL SUR COUZE" }, { - "codePostal": "17590", - "codeCommune": "17318", - "libelleAcheminement": "ST CLEMENT DES BALEINES", - "nomCommune": "ST CLEMENT DES BALEINES" + "codePostal": "65250", + "codeCommune": "65069", + "libelleAcheminement": "LA BARTHE DE NESTE", + "nomCommune": "LA BARTHE DE NESTE" }, { - "codePostal": "73110", - "codeCommune": "73215", - "libelleAcheminement": "VALGELON LA ROCHETTE", - "nomCommune": "VALGELON LA ROCHETTE" + "codePostal": "76390", + "codeCommune": "76527", + "libelleAcheminement": "RICHEMONT", + "nomCommune": "RICHEMONT" }, { - "codePostal": "76270", - "codeCommune": "76122", - "libelleAcheminement": "CALLENGEVILLE", - "nomCommune": "CALLENGEVILLE" + "codePostal": "24120", + "codeCommune": "24321", + "libelleAcheminement": "PAZAYAC", + "nomCommune": "PAZAYAC" }, { - "codePostal": "68800", - "codeCommune": "68348", - "libelleAcheminement": "VIEUX THANN", - "nomCommune": "VIEUX THANN" + "codePostal": "76450", + "codeCommune": "76613", + "libelleAcheminement": "ST MARTIN AUX BUNEAUX", + "nomCommune": "ST MARTIN AUX BUNEAUX" }, { - "codePostal": "17590", - "codeCommune": "17318", - "libelleAcheminement": "ST CLEMENT DES BALEINES", - "nomCommune": "ST CLEMENT DES BALEINES" + "codePostal": "63270", + "codeCommune": "63059", + "libelleAcheminement": "BUSSEOL", + "nomCommune": "BUSSEOL" }, { - "codePostal": "73110", - "codeCommune": "73217", - "libelleAcheminement": "ROTHERENS", - "nomCommune": "ROTHERENS" + "codePostal": "65100", + "codeCommune": "65070", + "libelleAcheminement": "BARTRES", + "nomCommune": "BARTRES" }, { - "codePostal": "76680", - "codeCommune": "76126", - "libelleAcheminement": "BOSC MESNIL", - "nomCommune": "BOSC MESNIL" + "codePostal": "76160", + "codeCommune": "76536", + "libelleAcheminement": "RONCHEROLLES SUR LE VIVIER", + "nomCommune": "RONCHEROLLES SUR LE VIVIER" }, { - "codePostal": "68128", - "codeCommune": "68349", - "libelleAcheminement": "VILLAGE NEUF", - "nomCommune": "VILLAGE NEUF" + "codePostal": "24000", + "codeCommune": "24322", + "libelleAcheminement": "PERIGUEUX", + "nomCommune": "PERIGUEUX" }, { - "codePostal": "17210", - "codeCommune": "17319", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "76133", + "codeCommune": "76615", + "libelleAcheminement": "ST MARTIN DU BEC", + "nomCommune": "ST MARTIN DU BEC" }, { - "codePostal": "73120", - "codeCommune": "73227", - "libelleAcheminement": "COURCHEVEL", - "nomCommune": "COURCHEVEL" + "codePostal": "63520", + "codeCommune": "63065", + "libelleAcheminement": "CEILLOUX", + "nomCommune": "CEILLOUX" }, { - "codePostal": "76450", - "codeCommune": "76128", - "libelleAcheminement": "BOSVILLE", - "nomCommune": "BOSVILLE" + "codePostal": "65140", + "codeCommune": "65073", + "libelleAcheminement": "BAZILLAC", + "nomCommune": "BAZILLAC" }, { - "codePostal": "68290", - "codeCommune": "68361", - "libelleAcheminement": "WEGSCHEID", - "nomCommune": "WEGSCHEID" + "codePostal": "76390", + "codeCommune": "76537", + "libelleAcheminement": "RONCHOIS", + "nomCommune": "RONCHOIS" }, { - "codePostal": "17430", - "codeCommune": "17320", - "libelleAcheminement": "ST COUTANT LE GRAND", - "nomCommune": "ST COUTANT LE GRAND" + "codePostal": "24210", + "codeCommune": "24324", + "libelleAcheminement": "PEYRIGNAC", + "nomCommune": "PEYRIGNAC" }, { - "codePostal": "73130", - "codeCommune": "73231", - "libelleAcheminement": "ST ETIENNE DE CUINES", - "nomCommune": "ST ETIENNE DE CUINES" + "codePostal": "76370", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "76760", - "codeCommune": "76132", - "libelleAcheminement": "BOURDAINVILLE", - "nomCommune": "BOURDAINVILLE" + "codePostal": "63790", + "codeCommune": "63077", + "libelleAcheminement": "CHAMBON SUR LAC", + "nomCommune": "CHAMBON SUR LAC" }, { - "codePostal": "68760", - "codeCommune": "68372", - "libelleAcheminement": "WILLER SUR THUR", - "nomCommune": "WILLER SUR THUR" + "codePostal": "65130", + "codeCommune": "65081", + "libelleAcheminement": "BENQUE MOLERE", + "nomCommune": "BENQUE MOLERE" }, { - "codePostal": "17170", - "codeCommune": "17322", - "libelleAcheminement": "ST CYR DU DORET", - "nomCommune": "ST CYR DU DORET" + "codePostal": "76000", + "codeCommune": "76540", + "libelleAcheminement": "ROUEN", + "nomCommune": "ROUEN" }, { - "codePostal": "73360", - "codeCommune": "73233", - "libelleAcheminement": "ST FRANC", - "nomCommune": "ST FRANC" + "codePostal": "24370", + "codeCommune": "24325", + "libelleAcheminement": "PECHS DE L ESPERANCE", + "nomCommune": "PECHS DE L ESPERANCE" }, { - "codePostal": "76740", - "codeCommune": "76134", - "libelleAcheminement": "BOURVILLE", - "nomCommune": "BOURVILLE" + "codePostal": "76370", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "68920", - "codeCommune": "68374", - "libelleAcheminement": "WINTZENHEIM", - "nomCommune": "WINTZENHEIM" + "codePostal": "63420", + "codeCommune": "63087", + "libelleAcheminement": "LA CHAPELLE MARCOUSSE", + "nomCommune": "LA CHAPELLE MARCOUSSE" }, { - "codePostal": "17650", - "codeCommune": "17323", - "libelleAcheminement": "ST DENIS D OLERON", - "nomCommune": "ST DENIS D OLERON" + "codePostal": "65360", + "codeCommune": "65083", + "libelleAcheminement": "BERNAC DEBAT", + "nomCommune": "BERNAC DEBAT" }, { - "codePostal": "73530", - "codeCommune": "73242", - "libelleAcheminement": "ST JEAN D ARVES", - "nomCommune": "ST JEAN D ARVES" + "codePostal": "76210", + "codeCommune": "76543", + "libelleAcheminement": "ROUVILLE", + "nomCommune": "ROUVILLE" }, { - "codePostal": "76750", - "codeCommune": "76146", - "libelleAcheminement": "BUCHY", - "nomCommune": "BUCHY" + "codePostal": "24700", + "codeCommune": "24329", + "libelleAcheminement": "LE PIZOU", + "nomCommune": "LE PIZOU" }, { - "codePostal": "69250", - "codeCommune": "69003", - "libelleAcheminement": "ALBIGNY SUR SAONE", - "nomCommune": "ALBIGNY SUR SAONE" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "17780", - "codeCommune": "17329", - "libelleAcheminement": "ST FROULT", - "nomCommune": "ST FROULT" + "codePostal": "63720", + "codeCommune": "63089", + "libelleAcheminement": "CHAPPES", + "nomCommune": "CHAPPES" }, { - "codePostal": "73160", - "codeCommune": "73246", - "libelleAcheminement": "ST JEAN DE COUZ", - "nomCommune": "ST JEAN DE COUZ" + "codePostal": "65590", + "codeCommune": "65099", + "libelleAcheminement": "BORDERES LOURON", + "nomCommune": "BORDERES LOURON" }, { - "codePostal": "76750", - "codeCommune": "76146", - "libelleAcheminement": "BUCHY", - "nomCommune": "BUCHY" + "codePostal": "76440", + "codeCommune": "76544", + "libelleAcheminement": "ROUVRAY CATILLON", + "nomCommune": "ROUVRAY CATILLON" }, { - "codePostal": "69550", - "codeCommune": "69006", - "libelleAcheminement": "AMPLEPUIS", - "nomCommune": "AMPLEPUIS" + "codePostal": "24550", + "codeCommune": "24337", + "libelleAcheminement": "PRATS DU PERIGORD", + "nomCommune": "PRATS DU PERIGORD" }, { - "codePostal": "17110", - "codeCommune": "17333", - "libelleAcheminement": "ST GEORGES DE DIDONNE", - "nomCommune": "ST GEORGES DE DIDONNE" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "73190", - "codeCommune": "73249", - "libelleAcheminement": "ST JEOIRE PRIEURE", - "nomCommune": "ST JEOIRE PRIEURE" + "codePostal": "63410", + "codeCommune": "63092", + "libelleAcheminement": "CHARBONNIERES LES VARENNES", + "nomCommune": "CHARBONNIERES LES VARENNES" }, { - "codePostal": "76380", - "codeCommune": "76157", - "libelleAcheminement": "CANTELEU", - "nomCommune": "CANTELEU" + "codePostal": "65350", + "codeCommune": "65103", + "libelleAcheminement": "BOUILH PEREUILH", + "nomCommune": "BOUILH PEREUILH" }, { - "codePostal": "69420", - "codeCommune": "69007", - "libelleAcheminement": "AMPUIS", - "nomCommune": "AMPUIS" + "codePostal": "76370", + "codeCommune": "76545", + "libelleAcheminement": "ROUXMESNIL BOUTEILLES", + "nomCommune": "ROUXMESNIL BOUTEILLES" }, { - "codePostal": "17700", - "codeCommune": "17340", - "libelleAcheminement": "ST PIERRE LA NOUE", - "nomCommune": "ST PIERRE LA NOUE" + "codePostal": "24530", + "codeCommune": "24346", + "libelleAcheminement": "QUINSAC", + "nomCommune": "QUINSAC" }, { - "codePostal": "73220", - "codeCommune": "73252", - "libelleAcheminement": "ST LEGER", - "nomCommune": "ST LEGER" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "76450", - "codeCommune": "76159", - "libelleAcheminement": "CANY BARVILLE", - "nomCommune": "CANY BARVILLE" + "codePostal": "63140", + "codeCommune": "63103", + "libelleAcheminement": "CHATEL GUYON", + "nomCommune": "CHATEL GUYON" }, { - "codePostal": "69210", - "codeCommune": "69010", - "libelleAcheminement": "L ARBRESLE", - "nomCommune": "L ARBRESLE" + "codePostal": "65350", + "codeCommune": "65104", + "libelleAcheminement": "BOULIN", + "nomCommune": "BOULIN" }, { - "codePostal": "17620", - "codeCommune": "17348", - "libelleAcheminement": "ST JEAN D ANGLE", - "nomCommune": "ST JEAN D ANGLE" + "codePostal": "76730", + "codeCommune": "76546", + "libelleAcheminement": "ROYVILLE", + "nomCommune": "ROYVILLE" }, { - "codePostal": "73240", - "codeCommune": "73254", - "libelleAcheminement": "STE MARIE D ALVEY", - "nomCommune": "STE MARIE D ALVEY" + "codePostal": "24490", + "codeCommune": "24354", + "libelleAcheminement": "LA ROCHE CHALAIS", + "nomCommune": "LA ROCHE CHALAIS" }, { - "codePostal": "76116", - "codeCommune": "76163", - "libelleAcheminement": "CATENAY", - "nomCommune": "CATENAY" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "69400", - "codeCommune": "69013", - "libelleAcheminement": "ARNAS", - "nomCommune": "ARNAS" + "codePostal": "63320", + "codeCommune": "63109", + "libelleAcheminement": "CHIDRAC", + "nomCommune": "CHIDRAC" }, { - "codePostal": "17170", - "codeCommune": "17349", - "libelleAcheminement": "ST JEAN DE LIVERSAY", - "nomCommune": "ST JEAN DE LIVERSAY" + "codePostal": "65170", + "codeCommune": "65117", + "libelleAcheminement": "CADEILHAN TRACHERE", + "nomCommune": "CADEILHAN TRACHERE" }, { - "codePostal": "73440", - "codeCommune": "73257", - "libelleAcheminement": "LES BELLEVILLE", - "nomCommune": "LES BELLEVILLE" + "codePostal": "76660", + "codeCommune": "76553", + "libelleAcheminement": "STE AGATHE D ALIERMONT", + "nomCommune": "STE AGATHE D ALIERMONT" }, { - "codePostal": "76490", - "codeCommune": "76164", - "libelleAcheminement": "RIVES EN SEINE", - "nomCommune": "RIVES EN SEINE" + "codePostal": "24490", + "codeCommune": "24354", + "libelleAcheminement": "LA ROCHE CHALAIS", + "nomCommune": "LA ROCHE CHALAIS" }, { - "codePostal": "69620", - "codeCommune": "69017", - "libelleAcheminement": "BAGNOLS", - "nomCommune": "BAGNOLS" + "codePostal": "76910", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "17470", - "codeCommune": "17358", - "libelleAcheminement": "ST MANDE SUR BREDOIRE", - "nomCommune": "ST MANDE SUR BREDOIRE" + "codePostal": "63114", + "codeCommune": "63121", + "libelleAcheminement": "COUDES", + "nomCommune": "COUDES" }, { - "codePostal": "73440", - "codeCommune": "73257", - "libelleAcheminement": "LES BELLEVILLE", - "nomCommune": "LES BELLEVILLE" + "codePostal": "65500", + "codeCommune": "65121", + "libelleAcheminement": "CAMALES", + "nomCommune": "CAMALES" }, { "codePostal": "76490", - "codeCommune": "76164", - "libelleAcheminement": "RIVES EN SEINE", - "nomCommune": "RIVES EN SEINE" - }, - { - "codePostal": "69430", - "codeCommune": "69018", - "libelleAcheminement": "BEAUJEU", - "nomCommune": "BEAUJEU" - }, - { - "codePostal": "17500", - "codeCommune": "17372", - "libelleAcheminement": "ST MEDARD", - "nomCommune": "ST MEDARD" + "codeCommune": "76557", + "libelleAcheminement": "ST ARNOULT", + "nomCommune": "ST ARNOULT" }, { - "codePostal": "73100", - "codeCommune": "73263", - "libelleAcheminement": "ST OFFENGE", - "nomCommune": "ST OFFENGE" + "codePostal": "24250", + "codeCommune": "24355", + "libelleAcheminement": "LA ROQUE GAGEAC", + "nomCommune": "LA ROQUE GAGEAC" }, { - "codePostal": "76450", - "codeCommune": "76180", - "libelleAcheminement": "CLEUVILLE", - "nomCommune": "CLEUVILLE" + "codePostal": "76440", + "codeCommune": "76623", + "libelleAcheminement": "ST MICHEL D HALESCOURT", + "nomCommune": "ST MICHEL D HALESCOURT" }, { - "codePostal": "69430", - "codeCommune": "69018", - "libelleAcheminement": "BEAUJEU", - "nomCommune": "BEAUJEU" + "codePostal": "63320", + "codeCommune": "63122", + "libelleAcheminement": "COURGOUL", + "nomCommune": "COURGOUL" }, { - "codePostal": "17770", - "codeCommune": "17374", - "libelleAcheminement": "STE MEME", - "nomCommune": "STE MEME" + "codePostal": "65710", + "codeCommune": "65123", + "libelleAcheminement": "CAMPAN", + "nomCommune": "CAMPAN" }, { - "codePostal": "73170", - "codeCommune": "73269", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "76190", + "codeCommune": "76559", + "libelleAcheminement": "ST AUBIN DE CRETOT", + "nomCommune": "ST AUBIN DE CRETOT" }, { - "codePostal": "76910", - "codeCommune": "76192", - "libelleAcheminement": "CRIEL SUR MER", - "nomCommune": "CRIEL SUR MER" + "codePostal": "24580", + "codeCommune": "24356", + "libelleAcheminement": "ROUFFIGNAC ST CERNIN DE REILHAC", + "nomCommune": "ROUFFIGNAC ST CERNIN DE REILHAC" }, { - "codePostal": "69690", - "codeCommune": "69021", - "libelleAcheminement": "BESSENAY", - "nomCommune": "BESSENAY" + "codePostal": "76890", + "codeCommune": "76632", + "libelleAcheminement": "ST PIERRE BENOUVILLE", + "nomCommune": "ST PIERRE BENOUVILLE" }, { - "codePostal": "17230", - "codeCommune": "17376", - "libelleAcheminement": "ST OUEN D AUNIS", - "nomCommune": "ST OUEN D AUNIS" + "codePostal": "63490", + "codeCommune": "63145", + "libelleAcheminement": "EGLISENEUVE DES LIARDS", + "nomCommune": "EGLISENEUVE DES LIARDS" }, { - "codePostal": "73250", - "codeCommune": "73270", - "libelleAcheminement": "ST PIERRE D ALBIGNY", - "nomCommune": "ST PIERRE D ALBIGNY" + "codePostal": "65710", + "codeCommune": "65123", + "libelleAcheminement": "CAMPAN", + "nomCommune": "CAMPAN" }, { - "codePostal": "76660", - "codeCommune": "76202", - "libelleAcheminement": "CROIXDALLE", - "nomCommune": "CROIXDALLE" + "codePostal": "76410", + "codeCommune": "76561", + "libelleAcheminement": "ST AUBIN LES ELBEUF", + "nomCommune": "ST AUBIN LES ELBEUF" }, { - "codePostal": "69690", - "codeCommune": "69021", - "libelleAcheminement": "BESSENAY", - "nomCommune": "BESSENAY" + "codePostal": "24240", + "codeCommune": "24357", + "libelleAcheminement": "ROUFFIGNAC DE SIGOULES", + "nomCommune": "ROUFFIGNAC DE SIGOULES" }, { - "codePostal": "17490", - "codeCommune": "17377", - "libelleAcheminement": "ST OUEN LA THENE", - "nomCommune": "ST OUEN LA THENE" + "codePostal": "76480", + "codeCommune": "76636", + "libelleAcheminement": "ST PIERRE DE VARENGEVILLE", + "nomCommune": "ST PIERRE DE VARENGEVILLE" }, { - "codePostal": "73360", - "codeCommune": "73275", - "libelleAcheminement": "ST PIERRE DE GENEBROZ", - "nomCommune": "ST PIERRE DE GENEBROZ" + "codePostal": "63160", + "codeCommune": "63146", + "libelleAcheminement": "EGLISENEUVE PRES BILLOM", + "nomCommune": "EGLISENEUVE PRES BILLOM" }, { - "codePostal": "76720", - "codeCommune": "76204", - "libelleAcheminement": "CROPUS", - "nomCommune": "CROPUS" + "codePostal": "65300", + "codeCommune": "65125", + "libelleAcheminement": "CAMPISTROUS", + "nomCommune": "CAMPISTROUS" }, { - "codePostal": "69690", - "codeCommune": "69022", - "libelleAcheminement": "BIBOST", - "nomCommune": "BIBOST" + "codePostal": "76430", + "codeCommune": "76563", + "libelleAcheminement": "ST AUBIN ROUTOT", + "nomCommune": "ST AUBIN ROUTOT" }, { - "codePostal": "17420", - "codeCommune": "17380", - "libelleAcheminement": "ST PALAIS SUR MER", - "nomCommune": "ST PALAIS SUR MER" + "codePostal": "24380", + "codeCommune": "24362", + "libelleAcheminement": "VAL DE LOUYRE ET CAUDEAU", + "nomCommune": "VAL DE LOUYRE ET CAUDEAU" }, { - "codePostal": "73160", - "codeCommune": "73281", - "libelleAcheminement": "ST SULPICE", - "nomCommune": "ST SULPICE" + "codePostal": "76740", + "codeCommune": "76641", + "libelleAcheminement": "ST PIERRE LE VIEUX", + "nomCommune": "ST PIERRE LE VIEUX" }, { - "codePostal": "76590", - "codeCommune": "76205", - "libelleAcheminement": "CROSVILLE SUR SCIE", - "nomCommune": "CROSVILLE SUR SCIE" + "codePostal": "63520", + "codeCommune": "63155", + "libelleAcheminement": "ESTANDEUIL", + "nomCommune": "ESTANDEUIL" }, { - "codePostal": "69620", - "codeCommune": "69024", - "libelleAcheminement": "VAL D OINGT", - "nomCommune": "VAL D OINGT" + "codePostal": "65230", + "codeCommune": "65134", + "libelleAcheminement": "CASTERETS", + "nomCommune": "CASTERETS" }, { - "codePostal": "17400", - "codeCommune": "17383", - "libelleAcheminement": "ST PIERRE DE JUILLERS", - "nomCommune": "ST PIERRE DE JUILLERS" + "codePostal": "76550", + "codeCommune": "76565", + "libelleAcheminement": "ST AUBIN SUR SCIE", + "nomCommune": "ST AUBIN SUR SCIE" }, { - "codePostal": "73310", - "codeCommune": "73286", - "libelleAcheminement": "SERRIERES EN CHAUTAGNE", - "nomCommune": "SERRIERES EN CHAUTAGNE" + "codePostal": "24190", + "codeCommune": "24367", + "libelleAcheminement": "ST ANDRE DE DOUBLE", + "nomCommune": "ST ANDRE DE DOUBLE" }, { - "codePostal": "76280", - "codeCommune": "76206", - "libelleAcheminement": "CUVERVILLE", - "nomCommune": "CUVERVILLE" + "codePostal": "76740", + "codeCommune": "76642", + "libelleAcheminement": "ST PIERRE LE VIGER", + "nomCommune": "ST PIERRE LE VIGER" }, { - "codePostal": "69126", - "codeCommune": "69028", - "libelleAcheminement": "BRINDAS", - "nomCommune": "BRINDAS" + "codePostal": "63620", + "codeCommune": "63159", + "libelleAcheminement": "FERNOEL", + "nomCommune": "FERNOEL" }, { - "codePostal": "17310", - "codeCommune": "17385", - "libelleAcheminement": "ST PIERRE D OLERON", - "nomCommune": "ST PIERRE D OLERON" + "codePostal": "65130", + "codeCommune": "65135", + "libelleAcheminement": "CASTILLON", + "nomCommune": "CASTILLON" }, { - "codePostal": "73110", - "codeCommune": "73316", - "libelleAcheminement": "VILLARD SALLET", - "nomCommune": "VILLARD SALLET" + "codePostal": "76460", + "codeCommune": "76569", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "76630", - "codeCommune": "76220", - "libelleAcheminement": "DOUVREND", - "nomCommune": "DOUVREND" + "codePostal": "24110", + "codeCommune": "24372", + "libelleAcheminement": "ST ASTIER", + "nomCommune": "ST ASTIER" }, { - "codePostal": "69210", - "codeCommune": "69032", - "libelleAcheminement": "BULLY", - "nomCommune": "BULLY" + "codePostal": "76340", + "codeCommune": "76645", + "libelleAcheminement": "ST RIQUIER EN RIVIERE", + "nomCommune": "ST RIQUIER EN RIVIERE" }, { - "codePostal": "17500", - "codeCommune": "17403", - "libelleAcheminement": "ST SIMON DE BORDES", - "nomCommune": "ST SIMON DE BORDES" + "codePostal": "63340", + "codeCommune": "63166", + "libelleAcheminement": "GIGNAT", + "nomCommune": "GIGNAT" }, { - "codePostal": "73500", - "codeCommune": "73322", - "libelleAcheminement": "VILLARODIN BOURGET", - "nomCommune": "VILLARODIN BOURGET" + "codePostal": "65230", + "codeCommune": "65136", + "libelleAcheminement": "CAUBOUS", + "nomCommune": "CAUBOUS" }, { - "codePostal": "76190", - "codeCommune": "76225", - "libelleAcheminement": "ECRETTEVILLE LES BAONS", - "nomCommune": "ECRETTEVILLE LES BAONS" + "codePostal": "76800", + "codeCommune": "76575", + "libelleAcheminement": "ST ETIENNE DU ROUVRAY", + "nomCommune": "ST ETIENNE DU ROUVRAY" }, { - "codePostal": "69590", - "codeCommune": "69042", - "libelleAcheminement": "LA CHAPELLE SUR COISE", - "nomCommune": "LA CHAPELLE SUR COISE" + "codePostal": "24410", + "codeCommune": "24376", + "libelleAcheminement": "ST AULAYE PUYMANGOU", + "nomCommune": "ST AULAYE PUYMANGOU" }, { - "codePostal": "17100", - "codeCommune": "17412", - "libelleAcheminement": "ST VAIZE", - "nomCommune": "ST VAIZE" + "codePostal": "76680", + "codeCommune": "76648", + "libelleAcheminement": "ST SAENS", + "nomCommune": "ST SAENS" }, { - "codePostal": "74360", - "codeCommune": "74001", - "libelleAcheminement": "ABONDANCE", - "nomCommune": "ABONDANCE" + "codePostal": "63160", + "codeCommune": "63168", + "libelleAcheminement": "GLAINE MONTAIGUT", + "nomCommune": "GLAINE MONTAIGUT" }, { - "codePostal": "76780", - "codeCommune": "76230", - "libelleAcheminement": "ELBEUF SUR ANDELLE", - "nomCommune": "ELBEUF SUR ANDELLE" + "codePostal": "65240", + "codeCommune": "65141", + "libelleAcheminement": "CAZAUX FRECHET ANERAN CAMORS", + "nomCommune": "CAZAUX FRECHET ANERAN CAMORS" }, { - "codePostal": "69630", - "codeCommune": "69043", - "libelleAcheminement": "CHAPONOST", - "nomCommune": "CHAPONOST" + "codePostal": "76210", + "codeCommune": "76576", + "libelleAcheminement": "ST EUSTACHE LA FORET", + "nomCommune": "ST EUSTACHE LA FORET" }, { - "codePostal": "17490", - "codeCommune": "17427", - "libelleAcheminement": "SIECQ", - "nomCommune": "SIECQ" + "codePostal": "24540", + "codeCommune": "24384", + "libelleAcheminement": "ST CASSIEN", + "nomCommune": "ST CASSIEN" }, { - "codePostal": "74350", - "codeCommune": "74006", - "libelleAcheminement": "ALLONZIER LA CAILLE", - "nomCommune": "ALLONZIER LA CAILLE" + "codePostal": "76510", + "codeCommune": "76652", + "libelleAcheminement": "ST VAAST D EQUIQUEVILLE", + "nomCommune": "ST VAAST D EQUIQUEVILLE" }, { - "codePostal": "76740", - "codeCommune": "76241", - "libelleAcheminement": "ERMENOUVILLE", - "nomCommune": "ERMENOUVILLE" + "codePostal": "63320", + "codeCommune": "63172", + "libelleAcheminement": "GRANDEYROLLES", + "nomCommune": "GRANDEYROLLES" }, { - "codePostal": "69380", - "codeCommune": "69050", - "libelleAcheminement": "CHATILLON", - "nomCommune": "CHATILLON" + "codePostal": "65240", + "codeCommune": "65141", + "libelleAcheminement": "CAZAUX FRECHET ANERAN CAMORS", + "nomCommune": "CAZAUX FRECHET ANERAN CAMORS" }, { - "codePostal": "17250", - "codeCommune": "17431", - "libelleAcheminement": "SOULIGNONNE", - "nomCommune": "SOULIGNONNE" + "codePostal": "76750", + "codeCommune": "76581", + "libelleAcheminement": "ST GERMAIN DES ESSOURTS", + "nomCommune": "ST GERMAIN DES ESSOURTS" }, { - "codePostal": "74350", - "codeCommune": "74006", - "libelleAcheminement": "ALLONZIER LA CAILLE", - "nomCommune": "ALLONZIER LA CAILLE" + "codePostal": "24260", + "codeCommune": "24388", + "libelleAcheminement": "ST CHAMASSY", + "nomCommune": "ST CHAMASSY" }, { - "codePostal": "76560", - "codeCommune": "76251", - "libelleAcheminement": "ETALLEVILLE", - "nomCommune": "ETALLEVILLE" + "codePostal": "76460", + "codeCommune": "76655", + "libelleAcheminement": "ST VALERY EN CAUX", + "nomCommune": "ST VALERY EN CAUX" }, { - "codePostal": "69380", - "codeCommune": "69059", - "libelleAcheminement": "CIVRIEUX D AZERGUES", - "nomCommune": "CIVRIEUX D AZERGUES" + "codePostal": "63210", + "codeCommune": "63176", + "libelleAcheminement": "HEUME L EGLISE", + "nomCommune": "HEUME L EGLISE" }, { - "codePostal": "17130", - "codeCommune": "17432", - "libelleAcheminement": "SOUMERAS", - "nomCommune": "SOUMERAS" + "codePostal": "65130", + "codeCommune": "65143", + "libelleAcheminement": "CHELLE SPOU", + "nomCommune": "CHELLE SPOU" }, { - "codePostal": "74800", - "codeCommune": "74007", - "libelleAcheminement": "AMANCY", - "nomCommune": "AMANCY" + "codePostal": "76270", + "codeCommune": "76584", + "libelleAcheminement": "ST GERMAIN SUR EAULNE", + "nomCommune": "ST GERMAIN SUR EAULNE" }, { - "codePostal": "76640", - "codeCommune": "76258", - "libelleAcheminement": "TERRES DE CAUX", - "nomCommune": "TERRES DE CAUX" + "codePostal": "24330", + "codeCommune": "24390", + "libelleAcheminement": "ST CREPIN D AUBEROCHE", + "nomCommune": "ST CREPIN D AUBEROCHE" }, { - "codePostal": "69470", - "codeCommune": "69066", - "libelleAcheminement": "COURS", - "nomCommune": "COURS" + "codePostal": "76540", + "codeCommune": "76663", + "libelleAcheminement": "SASSETOT LE MAUCONDUIT", + "nomCommune": "SASSETOT LE MAUCONDUIT" }, { - "codePostal": "17350", - "codeCommune": "17435", - "libelleAcheminement": "TAILLANT", - "nomCommune": "TAILLANT" + "codePostal": "63500", + "codeCommune": "63178", + "libelleAcheminement": "ISSOIRE", + "nomCommune": "ISSOIRE" }, { - "codePostal": "74370", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "65350", + "codeCommune": "65151", + "libelleAcheminement": "COLLONGUES", + "nomCommune": "COLLONGUES" }, { - "codePostal": "76640", - "codeCommune": "76258", - "libelleAcheminement": "TERRES DE CAUX", - "nomCommune": "TERRES DE CAUX" + "codePostal": "76560", + "codeCommune": "76597", + "libelleAcheminement": "ST LAURENT EN CAUX", + "nomCommune": "ST LAURENT EN CAUX" }, { - "codePostal": "69470", - "codeCommune": "69066", - "libelleAcheminement": "COURS", - "nomCommune": "COURS" + "codePostal": "24340", + "codeCommune": "24394", + "libelleAcheminement": "STE CROIX DE MAREUIL", + "nomCommune": "STE CROIX DE MAREUIL" }, { - "codePostal": "17460", - "codeCommune": "17441", - "libelleAcheminement": "TESSON", - "nomCommune": "TESSON" + "codePostal": "76540", + "codeCommune": "76663", + "libelleAcheminement": "SASSETOT LE MAUCONDUIT", + "nomCommune": "SASSETOT LE MAUCONDUIT" }, { - "codePostal": "74960", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "63190", + "codeCommune": "63194", + "libelleAcheminement": "LEMPTY", + "nomCommune": "LEMPTY" }, { - "codePostal": "76640", - "codeCommune": "76258", - "libelleAcheminement": "TERRES DE CAUX", - "nomCommune": "TERRES DE CAUX" + "codePostal": "65370", + "codeCommune": "65154", + "libelleAcheminement": "CRECHETS", + "nomCommune": "CRECHETS" }, { - "codePostal": "69470", - "codeCommune": "69066", - "libelleAcheminement": "COURS", - "nomCommune": "COURS" + "codePostal": "76119", + "codeCommune": "76605", + "libelleAcheminement": "STE MARGUERITE SUR MER", + "nomCommune": "STE MARGUERITE SUR MER" }, { - "codePostal": "17460", - "codeCommune": "17444", - "libelleAcheminement": "THENAC", - "nomCommune": "THENAC" + "codePostal": "24220", + "codeCommune": "24396", + "libelleAcheminement": "ST CYPRIEN", + "nomCommune": "ST CYPRIEN" }, { - "codePostal": "74100", - "codeCommune": "74012", - "libelleAcheminement": "ANNEMASSE", - "nomCommune": "ANNEMASSE" + "codePostal": "76550", + "codeCommune": "76667", + "libelleAcheminement": "SAUQUEVILLE", + "nomCommune": "SAUQUEVILLE" }, { - "codePostal": "76970", - "codeCommune": "76264", - "libelleAcheminement": "FLAMANVILLE", - "nomCommune": "FLAMANVILLE" + "codePostal": "63360", + "codeCommune": "63200", + "libelleAcheminement": "LUSSAT", + "nomCommune": "LUSSAT" }, { - "codePostal": "69700", - "codeCommune": "69080", - "libelleAcheminement": "ECHALAS", - "nomCommune": "ECHALAS" + "codePostal": "65350", + "codeCommune": "65156", + "libelleAcheminement": "DOURS", + "nomCommune": "DOURS" }, { - "codePostal": "17430", - "codeCommune": "17449", - "libelleAcheminement": "TONNAY CHARENTE", - "nomCommune": "TONNAY CHARENTE" + "codePostal": "76390", + "codeCommune": "76606", + "libelleAcheminement": "MORIENNE", + "nomCommune": "MORIENNE" }, { - "codePostal": "74300", - "codeCommune": "74014", - "libelleAcheminement": "ARACHES LA FRASSE", - "nomCommune": "ARACHES LA FRASSE" + "codePostal": "24400", + "codeCommune": "24399", + "libelleAcheminement": "ST ETIENNE DE PUYCORBIER", + "nomCommune": "ST ETIENNE DE PUYCORBIER" }, { "codePostal": "76260", - "codeCommune": "76266", - "libelleAcheminement": "FLOCQUES", - "nomCommune": "FLOCQUES" + "codeCommune": "76671", + "libelleAcheminement": "SEPT MEULES", + "nomCommune": "SEPT MEULES" }, { - "codePostal": "69210", - "codeCommune": "69083", - "libelleAcheminement": "EVEUX", - "nomCommune": "EVEUX" + "codePostal": "63340", + "codeCommune": "63202", + "libelleAcheminement": "MADRIAT", + "nomCommune": "MADRIAT" }, { - "codePostal": "17380", - "codeCommune": "17450", - "libelleAcheminement": "TORXE", - "nomCommune": "TORXE" + "codePostal": "65400", + "codeCommune": "65169", + "libelleAcheminement": "ESTAING", + "nomCommune": "ESTAING" }, { - "codePostal": "74430", - "codeCommune": "74034", - "libelleAcheminement": "LE BIOT", - "nomCommune": "LE BIOT" + "codePostal": "76190", + "codeCommune": "76610", + "libelleAcheminement": "STE MARIE DES CHAMPS", + "nomCommune": "STE MARIE DES CHAMPS" }, { - "codePostal": "76440", - "codeCommune": "76269", - "libelleAcheminement": "FONTAINE EN BRAY", - "nomCommune": "FONTAINE EN BRAY" + "codePostal": "24260", + "codeCommune": "24404", + "libelleAcheminement": "ST FELIX DE REILLAC ET MORTEMART", + "nomCommune": "ST FELIX DE REILLAC ET MORTEMART" }, { - "codePostal": "69820", - "codeCommune": "69084", - "libelleAcheminement": "FLEURIE", - "nomCommune": "FLEURIE" + "codePostal": "76440", + "codeCommune": "76678", + "libelleAcheminement": "SOMMERY", + "nomCommune": "SOMMERY" }, { - "codePostal": "17390", - "codeCommune": "17452", - "libelleAcheminement": "LA TREMBLADE", - "nomCommune": "LA TREMBLADE" + "codePostal": "63270", + "codeCommune": "63205", + "libelleAcheminement": "MANGLIEU", + "nomCommune": "MANGLIEU" }, { - "codePostal": "74130", - "codeCommune": "74042", - "libelleAcheminement": "BONNEVILLE", - "nomCommune": "BONNEVILLE" + "codePostal": "65220", + "codeCommune": "65170", + "libelleAcheminement": "ESTAMPURES", + "nomCommune": "ESTAMPURES" }, { - "codePostal": "76160", - "codeCommune": "76273", - "libelleAcheminement": "FONTAINE SOUS PREAUX", - "nomCommune": "FONTAINE SOUS PREAUX" + "codePostal": "76340", + "codeCommune": "76612", + "libelleAcheminement": "ST MARTIN AU BOSC", + "nomCommune": "ST MARTIN AU BOSC" }, { - "codePostal": "69250", - "codeCommune": "69085", - "libelleAcheminement": "FLEURIEU SUR SAONE", - "nomCommune": "FLEURIEU SUR SAONE" + "codePostal": "24510", + "codeCommune": "24405", + "libelleAcheminement": "ST FELIX DE VILLADEIX", + "nomCommune": "ST FELIX DE VILLADEIX" }, { - "codePostal": "17540", - "codeCommune": "17466", - "libelleAcheminement": "VERINES", - "nomCommune": "VERINES" + "codePostal": "76410", + "codeCommune": "76682", + "libelleAcheminement": "SOTTEVILLE SOUS LE VAL", + "nomCommune": "SOTTEVILLE SOUS LE VAL" }, { - "codePostal": "74890", - "codeCommune": "74043", - "libelleAcheminement": "BONS EN CHABLAIS", - "nomCommune": "BONS EN CHABLAIS" + "codePostal": "63430", + "codeCommune": "63213", + "libelleAcheminement": "LES MARTRES D ARTIERE", + "nomCommune": "LES MARTRES D ARTIERE" }, { - "codePostal": "76410", - "codeCommune": "76282", - "libelleAcheminement": "FRENEUSE", - "nomCommune": "FRENEUSE" + "codePostal": "65560", + "codeCommune": "65176", + "libelleAcheminement": "FERRIERES", + "nomCommune": "FERRIERES" }, { - "codePostal": "69700", - "codeCommune": "69091", - "libelleAcheminement": "GIVORS", - "nomCommune": "GIVORS" + "codePostal": "76160", + "codeCommune": "76617", + "libelleAcheminement": "ST MARTIN DU VIVIER", + "nomCommune": "ST MARTIN DU VIVIER" }, { - "codePostal": "17770", - "codeCommune": "17470", - "libelleAcheminement": "VILLARS LES BOIS", - "nomCommune": "VILLARS LES BOIS" + "codePostal": "24520", + "codeCommune": "24419", + "libelleAcheminement": "ST GERMAIN ET MONS", + "nomCommune": "ST GERMAIN ET MONS" }, { - "codePostal": "74150", - "codeCommune": "74046", - "libelleAcheminement": "BOUSSY", - "nomCommune": "BOUSSY" + "codePostal": "76730", + "codeCommune": "76690", + "libelleAcheminement": "THIL MANNEVILLE", + "nomCommune": "THIL MANNEVILLE" }, { - "codePostal": "76690", - "codeCommune": "76290", - "libelleAcheminement": "FRICHEMESNIL", - "nomCommune": "FRICHEMESNIL" + "codePostal": "63730", + "codeCommune": "63214", + "libelleAcheminement": "LES MARTRES DE VEYRE", + "nomCommune": "LES MARTRES DE VEYRE" }, { - "codePostal": "69420", - "codeCommune": "69097", - "libelleAcheminement": "LES HAIES", - "nomCommune": "LES HAIES" + "codePostal": "65400", + "codeCommune": "65182", + "libelleAcheminement": "GAILLAGOS", + "nomCommune": "GAILLAGOS" }, { - "codePostal": "17470", - "codeCommune": "17471", - "libelleAcheminement": "LA VILLEDIEU", - "nomCommune": "LA VILLEDIEU" + "codePostal": "76370", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "74910", - "codeCommune": "74055", - "libelleAcheminement": "CHALLONGES", - "nomCommune": "CHALLONGES" + "codePostal": "24500", + "codeCommune": "24423", + "libelleAcheminement": "ST JULIEN INNOCENCE EULALIE", + "nomCommune": "ST JULIEN INNOCENCE EULALIE" }, { - "codePostal": "76400", - "codeCommune": "76298", - "libelleAcheminement": "GANZEVILLE", - "nomCommune": "GANZEVILLE" + "codePostal": "76730", + "codeCommune": "76694", + "libelleAcheminement": "TOCQUEVILLE EN CAUX", + "nomCommune": "TOCQUEVILLE EN CAUX" }, { - "codePostal": "69540", - "codeCommune": "69100", - "libelleAcheminement": "IRIGNY", - "nomCommune": "IRIGNY" + "codePostal": "63720", + "codeCommune": "63215", + "libelleAcheminement": "MARTRES SUR MORGE", + "nomCommune": "MARTRES SUR MORGE" }, { - "codePostal": "17330", - "codeCommune": "17474", - "libelleAcheminement": "VILLENEUVE LA COMTESSE", - "nomCommune": "VILLENEUVE LA COMTESSE" + "codePostal": "65150", + "codeCommune": "65194", + "libelleAcheminement": "GENEREST", + "nomCommune": "GENEREST" }, { - "codePostal": "74360", - "codeCommune": "74058", - "libelleAcheminement": "LA CHAPELLE D ABONDANCE", - "nomCommune": "LA CHAPELLE D ABONDANCE" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "76430", - "codeCommune": "76303", - "libelleAcheminement": "GOMMERVILLE", - "nomCommune": "GOMMERVILLE" + "codePostal": "24500", + "codeCommune": "24423", + "libelleAcheminement": "ST JULIEN INNOCENCE EULALIE", + "nomCommune": "ST JULIEN INNOCENCE EULALIE" }, { - "codePostal": "69840", - "codeCommune": "69104", - "libelleAcheminement": "JULLIE", - "nomCommune": "JULLIE" + "codePostal": "76590", + "codeCommune": "76697", + "libelleAcheminement": "TORCY LE GRAND", + "nomCommune": "TORCY LE GRAND" }, { - "codePostal": "17330", - "codeCommune": "17474", - "libelleAcheminement": "VILLENEUVE LA COMTESSE", - "nomCommune": "VILLENEUVE LA COMTESSE" + "codePostal": "63220", + "codeCommune": "63221", + "libelleAcheminement": "MEDEYROLLES", + "nomCommune": "MEDEYROLLES" }, { - "codePostal": "74650", - "codeCommune": "74067", - "libelleAcheminement": "CHAVANOD", - "nomCommune": "CHAVANOD" + "codePostal": "65100", + "codeCommune": "65197", + "libelleAcheminement": "GER", + "nomCommune": "GER" }, { - "codePostal": "76110", - "codeCommune": "76304", - "libelleAcheminement": "GONFREVILLE CAILLOT", - "nomCommune": "GONFREVILLE CAILLOT" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "69210", - "codeCommune": "69112", - "libelleAcheminement": "LENTILLY", - "nomCommune": "LENTILLY" + "codePostal": "24140", + "codeCommune": "24426", + "libelleAcheminement": "ST JEAN D ESTISSAC", + "nomCommune": "ST JEAN D ESTISSAC" }, { - "codePostal": "18200", - "codeCommune": "18002", - "libelleAcheminement": "AINAY LE VIEIL", - "nomCommune": "AINAY LE VIEIL" + "codePostal": "76590", + "codeCommune": "76698", + "libelleAcheminement": "TORCY LE PETIT", + "nomCommune": "TORCY LE PETIT" }, { - "codePostal": "74520", - "codeCommune": "74069", - "libelleAcheminement": "CHENEX", - "nomCommune": "CHENEX" + "codePostal": "63200", + "codeCommune": "63224", + "libelleAcheminement": "MENETROL", + "nomCommune": "MENETROL" }, { - "codePostal": "76810", - "codeCommune": "76327", - "libelleAcheminement": "GREUVILLE", - "nomCommune": "GREUVILLE" + "codePostal": "65400", + "codeCommune": "65202", + "libelleAcheminement": "GEZ", + "nomCommune": "GEZ" }, { - "codePostal": "69760", - "codeCommune": "69116", - "libelleAcheminement": "LIMONEST", - "nomCommune": "LIMONEST" + "codePostal": "76510", + "codeCommune": "76624", + "libelleAcheminement": "ST NICOLAS D ALIERMONT", + "nomCommune": "ST NICOLAS D ALIERMONT" }, { - "codePostal": "18340", - "codeCommune": "18008", - "libelleAcheminement": "ARCAY", - "nomCommune": "ARCAY" + "codePostal": "24160", + "codeCommune": "24429", + "libelleAcheminement": "ST JORY LAS BLOUX", + "nomCommune": "ST JORY LAS BLOUX" }, { - "codePostal": "74140", - "codeCommune": "74070", - "libelleAcheminement": "CHENS SUR LEMAN", - "nomCommune": "CHENS SUR LEMAN" + "codePostal": "76910", + "codeCommune": "76703", + "libelleAcheminement": "TOUFFREVILLE SUR EU", + "nomCommune": "TOUFFREVILLE SUR EU" }, { - "codePostal": "76850", - "codeCommune": "76328", - "libelleAcheminement": "GRIGNEUSEVILLE", - "nomCommune": "GRIGNEUSEVILLE" + "codePostal": "63750", + "codeCommune": "63225", + "libelleAcheminement": "MESSEIX", + "nomCommune": "MESSEIX" }, { - "codePostal": "69420", - "codeCommune": "69119", - "libelleAcheminement": "LONGES", - "nomCommune": "LONGES" + "codePostal": "65240", + "codeCommune": "65205", + "libelleAcheminement": "GOUAUX", + "nomCommune": "GOUAUX" }, { - "codePostal": "18260", - "codeCommune": "18014", - "libelleAcheminement": "ASSIGNY", - "nomCommune": "ASSIGNY" + "codePostal": "76170", + "codeCommune": "76627", + "libelleAcheminement": "ST NICOLAS DE LA TAILLE", + "nomCommune": "ST NICOLAS DE LA TAILLE" }, { - "codePostal": "74210", - "codeCommune": "74072", - "libelleAcheminement": "CHEVALINE", - "nomCommune": "CHEVALINE" + "codePostal": "24320", + "codeCommune": "24434", + "libelleAcheminement": "ST JUST", + "nomCommune": "ST JUST" }, { - "codePostal": "76810", - "codeCommune": "76330", - "libelleAcheminement": "GRUCHET ST SIMEON", - "nomCommune": "GRUCHET ST SIMEON" + "codePostal": "76550", + "codeCommune": "76707", + "libelleAcheminement": "TOURVILLE SUR ARQUES", + "nomCommune": "TOURVILLE SUR ARQUES" }, { - "codePostal": "69770", - "codeCommune": "69120", - "libelleAcheminement": "LONGESSAIGNE", - "nomCommune": "LONGESSAIGNE" + "codePostal": "63730", + "codeCommune": "63227", + "libelleAcheminement": "MIREFLEURS", + "nomCommune": "MIREFLEURS" }, { - "codePostal": "18520", - "codeCommune": "18018", - "libelleAcheminement": "AVORD", - "nomCommune": "AVORD" + "codePostal": "65130", + "codeCommune": "65207", + "libelleAcheminement": "GOURGUE", + "nomCommune": "GOURGUE" }, { - "codePostal": "74330", - "codeCommune": "74076", - "libelleAcheminement": "CHOISY", - "nomCommune": "CHOISY" + "codePostal": "76890", + "codeCommune": "76628", + "libelleAcheminement": "ST OUEN DU BREUIL", + "nomCommune": "ST OUEN DU BREUIL" }, { - "codePostal": "76690", - "codeCommune": "76331", - "libelleAcheminement": "GRUGNY", - "nomCommune": "GRUGNY" + "codePostal": "24560", + "codeCommune": "24441", + "libelleAcheminement": "ST LEON D ISSIGEAC", + "nomCommune": "ST LEON D ISSIGEAC" }, { - "codePostal": "69430", - "codeCommune": "69124", - "libelleAcheminement": "MARCHAMPT", - "nomCommune": "MARCHAMPT" + "codePostal": "76640", + "codeCommune": "76710", + "libelleAcheminement": "TREMAUVILLE", + "nomCommune": "TREMAUVILLE" }, { - "codePostal": "18240", - "codeCommune": "18026", - "libelleAcheminement": "BELLEVILLE SUR LOIRE", - "nomCommune": "BELLEVILLE SUR LOIRE" + "codePostal": "63890", + "codeCommune": "63230", + "libelleAcheminement": "LE MONESTIER", + "nomCommune": "LE MONESTIER" }, { - "codePostal": "74160", - "codeCommune": "74082", - "libelleAcheminement": "COLLONGES SOUS SALEVE", - "nomCommune": "COLLONGES SOUS SALEVE" + "codePostal": "65120", + "codeCommune": "65210", + "libelleAcheminement": "GRUST", + "nomCommune": "GRUST" }, { - "codePostal": "76780", - "codeCommune": "76338", - "libelleAcheminement": "LA HALLOTIERE", - "nomCommune": "LA HALLOTIERE" + "codePostal": "76260", + "codeCommune": "76638", + "libelleAcheminement": "ST PIERRE EN VAL", + "nomCommune": "ST PIERRE EN VAL" }, { - "codePostal": "69280", - "codeCommune": "69127", - "libelleAcheminement": "MARCY L ETOILE", - "nomCommune": "MARCY L ETOILE" + "codePostal": "24400", + "codeCommune": "24444", + "libelleAcheminement": "ST LOUIS EN L ISLE", + "nomCommune": "ST LOUIS EN L ISLE" }, { - "codePostal": "18240", - "codeCommune": "18032", - "libelleAcheminement": "BOULLERET", - "nomCommune": "BOULLERET" + "codePostal": "76470", + "codeCommune": "76711", + "libelleAcheminement": "LE TREPORT", + "nomCommune": "LE TREPORT" }, { - "codePostal": "74270", - "codeCommune": "74086", - "libelleAcheminement": "CONTAMINE SARZIN", - "nomCommune": "CONTAMINE SARZIN" + "codePostal": "63700", + "codeCommune": "63233", + "libelleAcheminement": "MONTAIGUT EN COMBRAILLE", + "nomCommune": "MONTAIGUT" }, { - "codePostal": "76440", - "codeCommune": "76345", - "libelleAcheminement": "HAUSSEZ", - "nomCommune": "HAUSSEZ" + "codePostal": "65170", + "codeCommune": "65211", + "libelleAcheminement": "GUCHAN", + "nomCommune": "GUCHAN" }, { - "codePostal": "69430", - "codeCommune": "69135", - "libelleAcheminement": "DEUX GROSNES", - "nomCommune": "DEUX GROSNES" + "codePostal": "76320", + "codeCommune": "76640", + "libelleAcheminement": "ST PIERRE LES ELBEUF", + "nomCommune": "ST PIERRE LES ELBEUF" }, { - "codePostal": "18300", - "codeCommune": "18039", - "libelleAcheminement": "BUE", - "nomCommune": "BUE" + "codePostal": "24510", + "codeCommune": "24445", + "libelleAcheminement": "ST MARCEL DU PERIGORD", + "nomCommune": "ST MARCEL DU PERIGORD" }, { - "codePostal": "74800", - "codeCommune": "74090", - "libelleAcheminement": "CORNIER", - "nomCommune": "CORNIER" + "codePostal": "76210", + "codeCommune": "76715", + "libelleAcheminement": "TROUVILLE", + "nomCommune": "TROUVILLE" }, { - "codePostal": "76190", - "codeCommune": "76347", - "libelleAcheminement": "HAUTOT LE VATOIS", - "nomCommune": "HAUTOT LE VATOIS" + "codePostal": "63380", + "codeCommune": "63237", + "libelleAcheminement": "MONTEL DE GELAT", + "nomCommune": "MONTEL DE GELAT" }, { - "codePostal": "69700", - "codeCommune": "69136", - "libelleAcheminement": "MONTAGNY", - "nomCommune": "MONTAGNY" + "codePostal": "65240", + "codeCommune": "65212", + "libelleAcheminement": "GUCHEN", + "nomCommune": "GUCHEN" }, { - "codePostal": "18360", - "codeCommune": "18041", - "libelleAcheminement": "LA CELETTE", - "nomCommune": "LA CELETTE" + "codePostal": "76460", + "codeCommune": "76646", + "libelleAcheminement": "ST RIQUIER ES PLAINS", + "nomCommune": "ST RIQUIER ES PLAINS" }, { - "codePostal": "74520", - "codeCommune": "74101", - "libelleAcheminement": "DINGY EN VUACHE", - "nomCommune": "DINGY EN VUACHE" + "codePostal": "24320", + "codeCommune": "24452", + "libelleAcheminement": "ST MARTIAL VIVEYROL", + "nomCommune": "ST MARTIAL VIVEYROL" }, { "codePostal": "76190", - "codeCommune": "76348", - "libelleAcheminement": "HAUTOT ST SULPICE", - "nomCommune": "HAUTOT ST SULPICE" + "codeCommune": "76718", + "libelleAcheminement": "VALLIQUERVILLE", + "nomCommune": "VALLIQUERVILLE" }, { - "codePostal": "69350", - "codeCommune": "69142", - "libelleAcheminement": "LA MULATIERE", - "nomCommune": "LA MULATIERE" + "codePostal": "63340", + "codeCommune": "63255", + "libelleAcheminement": "NONETTE ORSONNETTE", + "nomCommune": "NONETTE ORSONNETTE" }, { - "codePostal": "18130", - "codeCommune": "18045", - "libelleAcheminement": "CHALIVOY MILON", - "nomCommune": "CHALIVOY MILON" + "codePostal": "65230", + "codeCommune": "65213", + "libelleAcheminement": "GUIZERIX", + "nomCommune": "GUIZERIX" }, { - "codePostal": "74230", - "codeCommune": "74102", - "libelleAcheminement": "DINGY ST CLAIR", - "nomCommune": "DINGY ST CLAIR" + "codePostal": "76890", + "codeCommune": "76654", + "libelleAcheminement": "ST VAAST DU VAL", + "nomCommune": "ST VAAST DU VAL" }, { - "codePostal": "76600", - "codeCommune": "76351", - "libelleAcheminement": "LE HAVRE", - "nomCommune": "LE HAVRE" + "codePostal": "24600", + "codeCommune": "24455", + "libelleAcheminement": "ST MARTIN DE RIBERAC", + "nomCommune": "ST MARTIN DE RIBERAC" }, { - "codePostal": "69310", - "codeCommune": "69152", - "libelleAcheminement": "PIERRE BENITE", - "nomCommune": "PIERRE BENITE" + "codePostal": "76540", + "codeCommune": "76719", + "libelleAcheminement": "VALMONT", + "nomCommune": "VALMONT" }, { - "codePostal": "18150", - "codeCommune": "18062", - "libelleAcheminement": "LE CHAUTAY", - "nomCommune": "LE CHAUTAY" + "codePostal": "63210", + "codeCommune": "63257", + "libelleAcheminement": "OLBY", + "nomCommune": "OLBY" }, { - "codePostal": "74550", - "codeCommune": "74106", - "libelleAcheminement": "DRAILLANT", - "nomCommune": "DRAILLANT" + "codePostal": "65230", + "codeCommune": "65214", + "libelleAcheminement": "HACHAN", + "nomCommune": "HACHAN" }, { - "codePostal": "76840", - "codeCommune": "76354", - "libelleAcheminement": "HENOUVILLE", - "nomCommune": "HENOUVILLE" + "codePostal": "76430", + "codeCommune": "76658", + "libelleAcheminement": "ST VINCENT CRAMESNIL", + "nomCommune": "ST VINCENT CRAMESNIL" }, { - "codePostal": "69290", - "codeCommune": "69154", - "libelleAcheminement": "POLLIONNAY", - "nomCommune": "POLLIONNAY" + "codePostal": "24400", + "codeCommune": "24457", + "libelleAcheminement": "ST MARTIN L ASTIER", + "nomCommune": "ST MARTIN L ASTIER" }, { - "codePostal": "18350", - "codeCommune": "18072", - "libelleAcheminement": "CORNUSSE", - "nomCommune": "CORNUSSE" + "codePostal": "76270", + "codeCommune": "76724", + "libelleAcheminement": "VATIERVILLE", + "nomCommune": "VATIERVILLE" }, { - "codePostal": "74410", - "codeCommune": "74111", - "libelleAcheminement": "ENTREVERNES", - "nomCommune": "ENTREVERNES" + "codePostal": "63880", + "codeCommune": "63258", + "libelleAcheminement": "OLLIERGUES", + "nomCommune": "OLLIERGUES" }, { - "codePostal": "76280", - "codeCommune": "76361", - "libelleAcheminement": "HEUQUEVILLE", - "nomCommune": "HEUQUEVILLE" + "codePostal": "65350", + "codeCommune": "65225", + "libelleAcheminement": "HOURC", + "nomCommune": "HOURC" }, { - "codePostal": "69490", - "codeCommune": "69157", - "libelleAcheminement": "VINDRY SUR TURDINE", - "nomCommune": "VINDRY SUR TURDINE" + "codePostal": "76430", + "codeCommune": "76660", + "libelleAcheminement": "SANDOUVILLE", + "nomCommune": "SANDOUVILLE" }, { - "codePostal": "18340", - "codeCommune": "18073", - "libelleAcheminement": "CORQUOY", - "nomCommune": "CORQUOY" + "codePostal": "24380", + "codeCommune": "24459", + "libelleAcheminement": "ST MAYME DE PEREYROL", + "nomCommune": "ST MAYME DE PEREYROL" }, { - "codePostal": "74370", - "codeCommune": "74112", - "libelleAcheminement": "EPAGNY METZ TESSY", - "nomCommune": "EPAGNY METZ TESSY" + "codePostal": "76110", + "codeCommune": "76725", + "libelleAcheminement": "VATTETOT SOUS BEAUMONT", + "nomCommune": "VATTETOT SOUS BEAUMONT" }, { - "codePostal": "76630", - "codeCommune": "76371", - "libelleAcheminement": "LES IFS", - "nomCommune": "LES IFS" + "codePostal": "63450", + "codeCommune": "63259", + "libelleAcheminement": "OLLOIX", + "nomCommune": "OLLOIX" }, { - "codePostal": "69640", - "codeCommune": "69159", - "libelleAcheminement": "PORTE DES PIERRES DOREES", - "nomCommune": "PORTE DES PIERRES DOREES" + "codePostal": "65420", + "codeCommune": "65226", + "libelleAcheminement": "IBOS", + "nomCommune": "IBOS" }, { - "codePostal": "18300", - "codeCommune": "18074", - "libelleAcheminement": "COUARGUES", - "nomCommune": "COUARGUES" + "codePostal": "76730", + "codeCommune": "76662", + "libelleAcheminement": "SASSETOT LE MALGARDE", + "nomCommune": "SASSETOT LE MALGARDE" }, { - "codePostal": "74910", - "codeCommune": "74130", - "libelleAcheminement": "FRANCLENS", - "nomCommune": "FRANCLENS" + "codePostal": "24270", + "codeCommune": "24464", + "libelleAcheminement": "ST MESMIN", + "nomCommune": "ST MESMIN" }, { - "codePostal": "76390", - "codeCommune": "76372", - "libelleAcheminement": "ILLOIS", - "nomCommune": "ILLOIS" + "codePostal": "76111", + "codeCommune": "76726", + "libelleAcheminement": "VATTETOT SUR MER", + "nomCommune": "VATTETOT SUR MER" }, { - "codePostal": "69650", - "codeCommune": "69163", - "libelleAcheminement": "QUINCIEUX", - "nomCommune": "QUINCIEUX" + "codePostal": "63190", + "codeCommune": "63265", + "libelleAcheminement": "ORLEAT", + "nomCommune": "ORLEAT" }, { - "codePostal": "18190", - "codeCommune": "18078", - "libelleAcheminement": "CREZANCAY SUR CHER", - "nomCommune": "CREZANCAY SUR CHER" + "codePostal": "65240", + "codeCommune": "65234", + "libelleAcheminement": "JEZEAU", + "nomCommune": "JEZEAU" }, { - "codePostal": "74450", - "codeCommune": "74136", - "libelleAcheminement": "LE GRAND BORNAND", - "nomCommune": "LE GRAND BORNAND" + "codePostal": "76630", + "codeCommune": "76665", + "libelleAcheminement": "SAUCHAY", + "nomCommune": "SAUCHAY" }, { - "codePostal": "76210", - "codeCommune": "76382", - "libelleAcheminement": "LANQUETOT", - "nomCommune": "LANQUETOT" + "codePostal": "24400", + "codeCommune": "24465", + "libelleAcheminement": "ST MICHEL DE DOUBLE", + "nomCommune": "ST MICHEL DE DOUBLE" }, { - "codePostal": "69430", - "codeCommune": "69165", - "libelleAcheminement": "REGNIE DURETTE", - "nomCommune": "REGNIE DURETTE" + "codePostal": "76560", + "codeCommune": "76730", + "libelleAcheminement": "VEAUVILLE LES QUELLES", + "nomCommune": "VEAUVILLE LES QUELLES" }, { - "codePostal": "18270", - "codeCommune": "18083", - "libelleAcheminement": "CULAN", - "nomCommune": "CULAN" + "codePostal": "63330", + "codeCommune": "63281", + "libelleAcheminement": "PIONSAT", + "nomCommune": "PIONSAT" }, { - "codePostal": "74540", - "codeCommune": "74142", - "libelleAcheminement": "HERY SUR ALBY", - "nomCommune": "HERY SUR ALBY" + "codePostal": "65200", + "codeCommune": "65238", + "libelleAcheminement": "LABASSERE", + "nomCommune": "LABASSERE" }, { - "codePostal": "76570", - "codeCommune": "76385", - "libelleAcheminement": "LIMESY", - "nomCommune": "LIMESY" + "codePostal": "76440", + "codeCommune": "76666", + "libelleAcheminement": "SAUMONT LA POTERIE", + "nomCommune": "SAUMONT LA POTERIE" }, { - "codePostal": "69640", - "codeCommune": "69167", - "libelleAcheminement": "RIVOLET", - "nomCommune": "RIVOLET" + "codePostal": "24230", + "codeCommune": "24466", + "libelleAcheminement": "ST MICHEL DE MONTAIGNE", + "nomCommune": "ST MICHEL DE MONTAIGNE" }, { - "codePostal": "18800", - "codeCommune": "18090", - "libelleAcheminement": "ETRECHY", - "nomCommune": "ETRECHY" + "codePostal": "76450", + "codeCommune": "76732", + "libelleAcheminement": "BUTOT VENESVILLE", + "nomCommune": "BUTOT VENESVILLE" }, { - "codePostal": "74100", - "codeCommune": "74145", - "libelleAcheminement": "JUVIGNY", - "nomCommune": "JUVIGNY" + "codePostal": "63780", + "codeCommune": "63294", + "libelleAcheminement": "QUEUILLE", + "nomCommune": "QUEUILLE" }, { - "codePostal": "76790", - "codeCommune": "76390", - "libelleAcheminement": "LES LOGES", - "nomCommune": "LES LOGES" + "codePostal": "65700", + "codeCommune": "65243", + "libelleAcheminement": "LAFITOLE", + "nomCommune": "LAFITOLE" }, { - "codePostal": "69550", - "codeCommune": "69169", - "libelleAcheminement": "RONNO", - "nomCommune": "RONNO" + "codePostal": "76760", + "codeCommune": "76668", + "libelleAcheminement": "SAUSSAY", + "nomCommune": "SAUSSAY" }, { - "codePostal": "18800", - "codeCommune": "18092", - "libelleAcheminement": "FARGES EN SEPTAINE", - "nomCommune": "FARGES EN SEPTAINE" + "codePostal": "24170", + "codeCommune": "24478", + "libelleAcheminement": "ST PARDOUX ET VIELVIC", + "nomCommune": "ST PARDOUX ET VIELVIC" }, { - "codePostal": "74500", - "codeCommune": "74154", - "libelleAcheminement": "LUGRIN", - "nomCommune": "LUGRIN" + "codePostal": "76280", + "codeCommune": "76741", + "libelleAcheminement": "VILLAINVILLE", + "nomCommune": "VILLAINVILLE" }, { - "codePostal": "76500", - "codeCommune": "76391", - "libelleAcheminement": "LA LONDE", - "nomCommune": "LA LONDE" + "codePostal": "63260", + "codeCommune": "63311", + "libelleAcheminement": "ST AGOULIN", + "nomCommune": "ST AGOULIN" }, { - "codePostal": "69460", - "codeCommune": "69172", - "libelleAcheminement": "SALLES ARBUISSONNAS BEAUJOLAIS", - "nomCommune": "SALLES ARBUISSONNAS EN BEAUJOLAIS" + "codePostal": "65320", + "codeCommune": "65244", + "libelleAcheminement": "LAGARDE", + "nomCommune": "LAGARDE" }, { - "codePostal": "18350", - "codeCommune": "18095", - "libelleAcheminement": "FLAVIGNY", - "nomCommune": "FLAVIGNY" + "codePostal": "76440", + "codeCommune": "76672", + "libelleAcheminement": "SERQUEUX", + "nomCommune": "SERQUEUX" }, { - "codePostal": "74140", - "codeCommune": "74158", - "libelleAcheminement": "MACHILLY", - "nomCommune": "MACHILLY" + "codePostal": "24800", + "codeCommune": "24485", + "libelleAcheminement": "ST PIERRE DE COLE", + "nomCommune": "ST PIERRE DE COLE" }, { - "codePostal": "76490", - "codeCommune": "76398", - "libelleAcheminement": "LOUVETOT", - "nomCommune": "LOUVETOT" + "codePostal": "76360", + "codeCommune": "76743", + "libelleAcheminement": "VILLERS ECALLES", + "nomCommune": "VILLERS ECALLES" }, { - "codePostal": "69170", - "codeCommune": "69174", - "libelleAcheminement": "LES SAUVAGES", - "nomCommune": "LES SAUVAGES" + "codePostal": "63420", + "codeCommune": "63313", + "libelleAcheminement": "ST ALYRE ES MONTAGNE", + "nomCommune": "ST ALYRE ES MONTAGNE" }, { - "codePostal": "18500", - "codeCommune": "18096", - "libelleAcheminement": "FOECY", - "nomCommune": "FOECY" + "codePostal": "65300", + "codeCommune": "65245", + "libelleAcheminement": "LAGRANGE", + "nomCommune": "LAGRANGE" }, { - "codePostal": "74300", - "codeCommune": "74159", - "libelleAcheminement": "MAGLAND", - "nomCommune": "MAGLAND" + "codePostal": "76780", + "codeCommune": "76676", + "libelleAcheminement": "SIGY EN BRAY", + "nomCommune": "SIGY EN BRAY" }, { - "codePostal": "76133", - "codeCommune": "76404", - "libelleAcheminement": "MANEGLISE", - "nomCommune": "MANEGLISE" + "codePostal": "24410", + "codeCommune": "24490", + "libelleAcheminement": "ST PRIVAT EN PERIGORD", + "nomCommune": "ST PRIVAT EN PERIGORD" }, { - "codePostal": "69700", - "codeCommune": "69179", - "libelleAcheminement": "BEAUVALLON", - "nomCommune": "BEAUVALLON" + "codePostal": "76340", + "codeCommune": "76744", + "libelleAcheminement": "VILLERS SOUS FOUCARMONT", + "nomCommune": "VILLERS SOUS FOUCARMONT" }, { - "codePostal": "18140", - "codeCommune": "18104", - "libelleAcheminement": "GROISES", - "nomCommune": "GROISES" + "codePostal": "63890", + "codeCommune": "63314", + "libelleAcheminement": "ST AMANT ROCHE SAVINE", + "nomCommune": "ST AMANT ROCHE SAVINE" }, { - "codePostal": "74230", - "codeCommune": "74160", - "libelleAcheminement": "MANIGOD", - "nomCommune": "MANIGOD" + "codePostal": "65700", + "codeCommune": "65248", + "libelleAcheminement": "LAHITTE TOUPIERE", + "nomCommune": "LAHITTE TOUPIERE" }, { - "codePostal": "76110", - "codeCommune": "76408", - "libelleAcheminement": "MANNEVILLE LA GOUPIL", - "nomCommune": "MANNEVILLE LA GOUPIL" + "codePostal": "76300", + "codeCommune": "76681", + "libelleAcheminement": "SOTTEVILLE LES ROUEN", + "nomCommune": "SOTTEVILLE LES ROUEN" }, { - "codePostal": "69440", - "codeCommune": "69184", - "libelleAcheminement": "STE CATHERINE", - "nomCommune": "STE CATHERINE" + "codePostal": "24410", + "codeCommune": "24490", + "libelleAcheminement": "ST PRIVAT EN PERIGORD", + "nomCommune": "ST PRIVAT EN PERIGORD" }, { - "codePostal": "18150", - "codeCommune": "18108", - "libelleAcheminement": "LA GUERCHE SUR L AUBOIS", - "nomCommune": "LA GUERCHE SUR L AUBOIS" + "codePostal": "76660", + "codeCommune": "76749", + "libelleAcheminement": "WANCHY CAPVAL", + "nomCommune": "WANCHY CAPVAL" }, { - "codePostal": "74970", - "codeCommune": "74164", - "libelleAcheminement": "MARIGNIER", - "nomCommune": "MARIGNIER" + "codePostal": "63200", + "codeCommune": "63327", + "libelleAcheminement": "ST BONNET PRES RIOM", + "nomCommune": "ST BONNET PRES RIOM" }, { - "codePostal": "76290", - "codeCommune": "76409", - "libelleAcheminement": "MANNEVILLETTE", - "nomCommune": "MANNEVILLETTE" + "codePostal": "65220", + "codeCommune": "65250", + "libelleAcheminement": "LALANNE TRIE", + "nomCommune": "LALANNE TRIE" }, { - "codePostal": "69370", - "codeCommune": "69194", - "libelleAcheminement": "ST DIDIER AU MONT D OR", - "nomCommune": "ST DIDIER AU MONT D OR" + "codePostal": "76740", + "codeCommune": "76683", + "libelleAcheminement": "SOTTEVILLE SUR MER", + "nomCommune": "SOTTEVILLE SUR MER" }, { - "codePostal": "18250", - "codeCommune": "18111", - "libelleAcheminement": "HUMBLIGNY", - "nomCommune": "HUMBLIGNY" + "codePostal": "24540", + "codeCommune": "24495", + "libelleAcheminement": "ST ROMAIN DE MONPAZIER", + "nomCommune": "ST ROMAIN DE MONPAZIER" }, { - "codePostal": "74150", - "codeCommune": "74165", - "libelleAcheminement": "MARIGNY ST MARCEL", - "nomCommune": "MARIGNY ST MARCEL" + "codePostal": "76640", + "codeCommune": "76751", + "libelleAcheminement": "YEBLERON", + "nomCommune": "YEBLERON" }, { - "codePostal": "76680", - "codeCommune": "76416", - "libelleAcheminement": "MATHONVILLE", - "nomCommune": "MATHONVILLE" + "codePostal": "63600", + "codeCommune": "63341", + "libelleAcheminement": "ST FERREOL DES COTES", + "nomCommune": "ST FERREOL DES COTES" }, { - "codePostal": "69430", - "codeCommune": "69196", - "libelleAcheminement": "ST DIDIER SUR BEAUJEU", - "nomCommune": "ST DIDIER SUR BEAUJEU" + "codePostal": "65140", + "codeCommune": "65254", + "libelleAcheminement": "LAMEAC", + "nomCommune": "LAMEAC" }, { - "codePostal": "18130", - "codeCommune": "18119", - "libelleAcheminement": "JUSSY CHAMPAGNE", - "nomCommune": "JUSSY CHAMPAGNE" + "codePostal": "76540", + "codeCommune": "76685", + "libelleAcheminement": "THEROULDEVILLE", + "nomCommune": "THEROULDEVILLE" }, { - "codePostal": "74140", - "codeCommune": "74171", - "libelleAcheminement": "MASSONGY", - "nomCommune": "MASSONGY" + "codePostal": "24800", + "codeCommune": "24505", + "libelleAcheminement": "ST SULPICE D EXCIDEUIL", + "nomCommune": "ST SULPICE D EXCIDEUIL" }, { - "codePostal": "76260", - "codeCommune": "76422", - "libelleAcheminement": "MELLEVILLE", - "nomCommune": "MELLEVILLE" + "codePostal": "77410", + "codeCommune": "77005", + "libelleAcheminement": "ANNET SUR MARNE", + "nomCommune": "ANNET SUR MARNE" }, { - "codePostal": "69610", - "codeCommune": "69203", - "libelleAcheminement": "ST GENIS L ARGENTIERE", - "nomCommune": "ST GENIS L ARGENTIERE" + "codePostal": "63260", + "codeCommune": "63347", + "libelleAcheminement": "ST GENES DU RETZ", + "nomCommune": "ST GENES DU RETZ" }, { - "codePostal": "18140", - "codeCommune": "18120", - "libelleAcheminement": "JUSSY LE CHAUDRIER", - "nomCommune": "JUSSY LE CHAUDRIER" + "codePostal": "65350", + "codeCommune": "65259", + "libelleAcheminement": "LANSAC", + "nomCommune": "LANSAC" }, { - "codePostal": "74500", - "codeCommune": "74172", - "libelleAcheminement": "MAXILLY SUR LEMAN", - "nomCommune": "MAXILLY SUR LEMAN" + "codePostal": "76560", + "codeCommune": "76699", + "libelleAcheminement": "LE TORP MESNIL", + "nomCommune": "LE TORP MESNIL" }, { - "codePostal": "76780", - "codeCommune": "76426", - "libelleAcheminement": "MESANGUEVILLE", - "nomCommune": "MESANGUEVILLE" + "codePostal": "24200", + "codeCommune": "24512", + "libelleAcheminement": "ST VINCENT LE PALUEL", + "nomCommune": "ST VINCENT LE PALUEL" }, { - "codePostal": "69230", - "codeCommune": "69204", - "libelleAcheminement": "ST GENIS LAVAL", - "nomCommune": "ST GENIS LAVAL" + "codePostal": "77390", + "codeCommune": "77007", + "libelleAcheminement": "ARGENTIERES", + "nomCommune": "ARGENTIERES" }, { - "codePostal": "18120", - "codeCommune": "18124", - "libelleAcheminement": "LAZENAY", - "nomCommune": "LAZENAY" + "codePostal": "63340", + "codeCommune": "63352", + "libelleAcheminement": "ST GERMAIN LEMBRON", + "nomCommune": "ST GERMAIN LEMBRON" }, { - "codePostal": "74120", - "codeCommune": "74173", - "libelleAcheminement": "MEGEVE", - "nomCommune": "MEGEVE" + "codePostal": "65220", + "codeCommune": "65260", + "libelleAcheminement": "LAPEYRE", + "nomCommune": "LAPEYRE" }, { - "codePostal": "76240", - "codeCommune": "76429", - "libelleAcheminement": "LE MESNIL ESNARD", - "nomCommune": "LE MESNIL ESNARD" + "codePostal": "76580", + "codeCommune": "76709", + "libelleAcheminement": "LE TRAIT", + "nomCommune": "LE TRAIT" }, { - "codePostal": "69380", - "codeCommune": "69212", - "libelleAcheminement": "ST JEAN DES VIGNES", - "nomCommune": "ST JEAN DES VIGNES" + "codePostal": "24590", + "codeCommune": "24516", + "libelleAcheminement": "SALIGNAC EYVIGUES", + "nomCommune": "SALIGNAC EYVIGUES" }, { - "codePostal": "18340", - "codeCommune": "18126", - "libelleAcheminement": "LEVET", - "nomCommune": "LEVET" + "codePostal": "77440", + "codeCommune": "77008", + "libelleAcheminement": "ARMENTIERES EN BRIE", + "nomCommune": "ARMENTIERES EN BRIE" }, { - "codePostal": "74350", - "codeCommune": "74177", - "libelleAcheminement": "MENTHONNEX EN BORNES", - "nomCommune": "MENTHONNEX EN BORNES" + "codePostal": "63380", + "codeCommune": "63359", + "libelleAcheminement": "ST HILAIRE LES MONGES", + "nomCommune": "ST HILAIRE LES MONGES" }, { - "codePostal": "76260", - "codeCommune": "76438", - "libelleAcheminement": "MILLEBOSC", - "nomCommune": "MILLEBOSC" + "codePostal": "65330", + "codeCommune": "65274", + "libelleAcheminement": "LIBAROS", + "nomCommune": "LIBAROS" }, { - "codePostal": "69440", - "codeCommune": "69219", - "libelleAcheminement": "ST LAURENT D AGNY", - "nomCommune": "ST LAURENT D AGNY" + "codePostal": "76890", + "codeCommune": "76723", + "libelleAcheminement": "VASSONVILLE", + "nomCommune": "VASSONVILLE" }, { - "codePostal": "18170", - "codeCommune": "18130", - "libelleAcheminement": "LOYE SUR ARNON", - "nomCommune": "LOYE SUR ARNON" + "codePostal": "24200", + "codeCommune": "24520", + "libelleAcheminement": "SARLAT LA CANEDA", + "nomCommune": "SARLAT LA CANEDA" }, { - "codePostal": "74270", - "codeCommune": "74178", - "libelleAcheminement": "MENTHONNEX SOUS CLERMONT", - "nomCommune": "MENTHONNEX SOUS CLERMONT" + "codePostal": "77720", + "codeCommune": "77010", + "libelleAcheminement": "AUBEPIERRE OZOUER LE REPOS", + "nomCommune": "AUBEPIERRE OZOUER LE REPOS" }, { - "codePostal": "76260", - "codeCommune": "76442", - "libelleAcheminement": "MONCHY SUR EU", - "nomCommune": "MONCHY SUR EU" + "codePostal": "63720", + "codeCommune": "63362", + "libelleAcheminement": "ST IGNAT", + "nomCommune": "ST IGNAT" }, { - "codePostal": "69850", - "codeCommune": "69227", - "libelleAcheminement": "ST MARTIN EN HAUT", - "nomCommune": "ST MARTIN EN HAUT" + "codePostal": "65100", + "codeCommune": "65280", + "libelleAcheminement": "LOUBAJAC", + "nomCommune": "LOUBAJAC" }, { - "codePostal": "18290", - "codeCommune": "18137", - "libelleAcheminement": "MAREUIL SUR ARNON", - "nomCommune": "MAREUIL SUR ARNON" + "codePostal": "76150", + "codeCommune": "76728", + "libelleAcheminement": "LA VAUPALIERE", + "nomCommune": "LA VAUPALIERE" }, { - "codePostal": "74110", - "codeCommune": "74188", - "libelleAcheminement": "MONTRIOND", - "nomCommune": "MONTRIOND" + "codePostal": "24600", + "codeCommune": "24529", + "libelleAcheminement": "SEGONZAC", + "nomCommune": "SEGONZAC" }, { - "codePostal": "76680", - "codeCommune": "76461", - "libelleAcheminement": "NEUFBOSC", - "nomCommune": "NEUFBOSC" + "codePostal": "77167", + "codeCommune": "77016", + "libelleAcheminement": "BAGNEAUX SUR LOING", + "nomCommune": "BAGNEAUX SUR LOING" }, { - "codePostal": "69440", - "codeCommune": "69228", - "libelleAcheminement": "CHABANIERE", - "nomCommune": "CHABANIERE" + "codePostal": "63160", + "codeCommune": "63368", + "libelleAcheminement": "ST JULIEN DE COPPEL", + "nomCommune": "ST JULIEN DE COPPEL" }, { - "codePostal": "18570", - "codeCommune": "18157", - "libelleAcheminement": "MORTHOMIERS", - "nomCommune": "MORTHOMIERS" + "codePostal": "65100", + "codeCommune": "65291", + "libelleAcheminement": "LUGAGNAN", + "nomCommune": "LUGAGNAN" }, { - "codePostal": "74110", - "codeCommune": "74191", - "libelleAcheminement": "MORZINE", - "nomCommune": "MORZINE" + "codePostal": "76450", + "codeCommune": "76736", + "libelleAcheminement": "VEULETTES SUR MER", + "nomCommune": "VEULETTES SUR MER" }, { - "codePostal": "76220", - "codeCommune": "76463", - "libelleAcheminement": "NEUF MARCHE", - "nomCommune": "NEUF MARCHE" + "codePostal": "24540", + "codeCommune": "24542", + "libelleAcheminement": "SOULAURES", + "nomCommune": "SOULAURES" }, { - "codePostal": "69440", - "codeCommune": "69228", - "libelleAcheminement": "CHABANIERE", - "nomCommune": "CHABANIERE" + "codePostal": "77700", + "codeCommune": "77018", + "libelleAcheminement": "BAILLY ROMAINVILLIERS", + "nomCommune": "BAILLY ROMAINVILLIERS" }, { - "codePostal": "18390", - "codeCommune": "18158", - "libelleAcheminement": "MOULINS SUR YEVRE", - "nomCommune": "MOULINS SUR YEVRE" + "codePostal": "63390", + "codeCommune": "63369", + "libelleAcheminement": "ST JULIEN LA GENESTE", + "nomCommune": "ST JULIEN LA GENESTE" }, { - "codePostal": "74160", - "codeCommune": "74201", - "libelleAcheminement": "NEYDENS", - "nomCommune": "NEYDENS" + "codePostal": "65500", + "codeCommune": "65299", + "libelleAcheminement": "MARSAC", + "nomCommune": "MARSAC" }, { - "codePostal": "76460", - "codeCommune": "76467", - "libelleAcheminement": "NEVILLE", - "nomCommune": "NEVILLE" + "codePostal": "76750", + "codeCommune": "76738", + "libelleAcheminement": "VIEUX MANOIR", + "nomCommune": "VIEUX MANOIR" }, { - "codePostal": "69440", - "codeCommune": "69241", - "libelleAcheminement": "TALUYERS", - "nomCommune": "TALUYERS" + "codePostal": "24390", + "codeCommune": "24546", + "libelleAcheminement": "TEMPLE LAGUYON", + "nomCommune": "TEMPLE LAGUYON" }, { - "codePostal": "18350", - "codeCommune": "18160", - "libelleAcheminement": "NERONDES", - "nomCommune": "NERONDES" + "codePostal": "77130", + "codeCommune": "77021", + "libelleAcheminement": "BARBEY", + "nomCommune": "BARBEY" }, { - "codePostal": "74490", - "codeCommune": "74205", - "libelleAcheminement": "ONNION", - "nomCommune": "ONNION" + "codePostal": "63820", + "codeCommune": "63370", + "libelleAcheminement": "ST JULIEN PUY LAVEZE", + "nomCommune": "ST JULIEN PUY LAVEZE" }, { - "codePostal": "76520", - "codeCommune": "76475", - "libelleAcheminement": "FRANQUEVILLE ST PIERRE", - "nomCommune": "FRANQUEVILLE ST PIERRE" + "codePostal": "65700", + "codeCommune": "65304", + "libelleAcheminement": "MAUBOURGUET", + "nomCommune": "MAUBOURGUET" }, { - "codePostal": "69240", - "codeCommune": "69248", - "libelleAcheminement": "THIZY LES BOURGS", - "nomCommune": "THIZY LES BOURGS" + "codePostal": "76260", + "codeCommune": "76745", + "libelleAcheminement": "VILLY SUR YERES", + "nomCommune": "VILLY SUR YERES" }, { - "codePostal": "18310", - "codeCommune": "18167", - "libelleAcheminement": "NOHANT EN GRACAY", - "nomCommune": "NOHANT EN GRACAY" + "codePostal": "24120", + "codeCommune": "24547", + "libelleAcheminement": "TERRASSON LAVILLEDIEU", + "nomCommune": "TERRASSON LAVILLEDIEU" }, { - "codePostal": "74190", - "codeCommune": "74208", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "77118", + "codeCommune": "77025", + "libelleAcheminement": "BAZOCHES LES BRAY", + "nomCommune": "BAZOCHES LES BRAY" }, { - "codePostal": "76590", - "codeCommune": "76478", - "libelleAcheminement": "NOTRE DAME DU PARC", - "nomCommune": "NOTRE DAME DU PARC" + "codePostal": "63330", + "codeCommune": "63373", + "libelleAcheminement": "ST MAIGNER", + "nomCommune": "ST MAIGNER" }, { - "codePostal": "69510", - "codeCommune": "69249", - "libelleAcheminement": "THURINS", - "nomCommune": "THURINS" + "codePostal": "65130", + "codeCommune": "65306", + "libelleAcheminement": "MAUVEZIN", + "nomCommune": "MAUVEZIN" }, { - "codePostal": "18350", - "codeCommune": "18175", - "libelleAcheminement": "OUROUER LES BOURDELINS", - "nomCommune": "OUROUER LES BOURDELINS" + "codePostal": "76540", + "codeCommune": "76746", + "libelleAcheminement": "VINNEMERVILLE", + "nomCommune": "VINNEMERVILLE" }, { - "codePostal": "74190", - "codeCommune": "74208", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "24300", + "codeCommune": "24548", + "libelleAcheminement": "TEYJAT", + "nomCommune": "TEYJAT" }, { - "codePostal": "76450", - "codeCommune": "76480", - "libelleAcheminement": "OCQUEVILLE", - "nomCommune": "OCQUEVILLE" + "codePostal": "77890", + "codeCommune": "77027", + "libelleAcheminement": "BEAUMONT DU GATINAIS", + "nomCommune": "BEAUMONT DU GATINAIS" }, { - "codePostal": "69820", - "codeCommune": "69258", - "libelleAcheminement": "VAUXRENARD", - "nomCommune": "VAUXRENARD" + "codePostal": "63600", + "codeCommune": "63374", + "libelleAcheminement": "ST MARTIN DES OLMES", + "nomCommune": "ST MARTIN DES OLMES" }, { - "codePostal": "18110", - "codeCommune": "18179", - "libelleAcheminement": "PIGNY", - "nomCommune": "PIGNY" + "codePostal": "65150", + "codeCommune": "65307", + "libelleAcheminement": "MAZERES DE NESTE", + "nomCommune": "MAZERES DE NESTE" }, { - "codePostal": "74190", - "codeCommune": "74208", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "76520", + "codeCommune": "76753", + "libelleAcheminement": "YMARE", + "nomCommune": "YMARE" }, { - "codePostal": "76450", - "codeCommune": "76490", - "libelleAcheminement": "OURVILLE EN CAUX", - "nomCommune": "OURVILLE EN CAUX" + "codePostal": "24800", + "codeCommune": "24551", + "libelleAcheminement": "THIVIERS", + "nomCommune": "THIVIERS" }, { - "codePostal": "69390", - "codeCommune": "69260", - "libelleAcheminement": "VERNAISON", - "nomCommune": "VERNAISON" + "codePostal": "77540", + "codeCommune": "77031", + "libelleAcheminement": "BERNAY VILBERT", + "nomCommune": "BERNAY VILBERT" }, { - "codePostal": "18300", - "codeCommune": "18200", - "libelleAcheminement": "ST BOUIZE", - "nomCommune": "ST BOUIZE" + "codePostal": "63570", + "codeCommune": "63375", + "libelleAcheminement": "ST MARTIN DES PLAINS", + "nomCommune": "ST MARTIN DES PLAINS" }, { - "codePostal": "74550", - "codeCommune": "74210", - "libelleAcheminement": "PERRIGNIER", - "nomCommune": "PERRIGNIER" + "codePostal": "65250", + "codeCommune": "65309", + "libelleAcheminement": "MAZOUAU", + "nomCommune": "MAZOUAU" }, { - "codePostal": "76450", - "codeCommune": "76493", - "libelleAcheminement": "PALUEL", - "nomCommune": "PALUEL" + "codePostal": "76540", + "codeCommune": "76755", + "libelleAcheminement": "YPREVILLE BIVILLE", + "nomCommune": "YPREVILLE BIVILLE" }, { - "codePostal": "69320", - "codeCommune": "69276", - "libelleAcheminement": "FEYZIN", - "nomCommune": "FEYZIN" + "codePostal": "24350", + "codeCommune": "24553", + "libelleAcheminement": "TOCANE ST APRE", + "nomCommune": "TOCANE ST APRE" }, { - "codePostal": "18400", - "codeCommune": "18201", - "libelleAcheminement": "ST CAPRAIS", - "nomCommune": "ST CAPRAIS" + "codePostal": "77970", + "codeCommune": "77036", + "libelleAcheminement": "BOISDON", + "nomCommune": "BOISDON" }, { - "codePostal": "74120", - "codeCommune": "74215", - "libelleAcheminement": "PRAZ SUR ARLY", - "nomCommune": "PRAZ SUR ARLY" + "codePostal": "63710", + "codeCommune": "63380", + "libelleAcheminement": "ST NECTAIRE", + "nomCommune": "ST NECTAIRE" }, { - "codePostal": "76650", - "codeCommune": "76497", - "libelleAcheminement": "PETIT COURONNE", - "nomCommune": "PETIT COURONNE" + "codePostal": "65360", + "codeCommune": "65313", + "libelleAcheminement": "MOMERES", + "nomCommune": "MOMERES" }, { - "codePostal": "69780", - "codeCommune": "69283", - "libelleAcheminement": "MIONS", - "nomCommune": "MIONS" + "codePostal": "77630", + "codeCommune": "77006", + "libelleAcheminement": "ARBONNE LA FORET", + "nomCommune": "ARBONNE LA FORET" }, { - "codePostal": "18220", - "codeCommune": "18202", - "libelleAcheminement": "ST CEOLS", - "nomCommune": "ST CEOLS" + "codePostal": "24320", + "codeCommune": "24554", + "libelleAcheminement": "LA TOUR BLANCHE CERCLES", + "nomCommune": "LA TOUR BLANCHE CERCLES" }, { - "codePostal": "74930", - "codeCommune": "74220", - "libelleAcheminement": "REIGNIER ESERY", - "nomCommune": "REIGNIER ESERY" + "codePostal": "77350", + "codeCommune": "77038", + "libelleAcheminement": "BOISSETTES", + "nomCommune": "BOISSETTES" }, { - "codePostal": "76280", - "codeCommune": "76501", - "libelleAcheminement": "PIERREFIQUES", - "nomCommune": "PIERREFIQUES" + "codePostal": "63230", + "codeCommune": "63381", + "libelleAcheminement": "ST OURS", + "nomCommune": "ST OURS" }, { - "codePostal": "69140", - "codeCommune": "69286", - "libelleAcheminement": "RILLIEUX LA PAPE", - "nomCommune": "RILLIEUX LA PAPE" + "codePostal": "65350", + "codeCommune": "65326", + "libelleAcheminement": "MUN", + "nomCommune": "MUN" }, { - "codePostal": "18340", - "codeCommune": "18212", - "libelleAcheminement": "ST GERMAIN DES BOIS", - "nomCommune": "ST GERMAIN DES BOIS" + "codePostal": "77570", + "codeCommune": "77011", + "libelleAcheminement": "AUFFERVILLE", + "nomCommune": "AUFFERVILLE" }, { - "codePostal": "74200", - "codeCommune": "74222", - "libelleAcheminement": "REYVROZ", - "nomCommune": "REYVROZ" + "codePostal": "24620", + "codeCommune": "24559", + "libelleAcheminement": "TURSAC", + "nomCommune": "TURSAC" }, { - "codePostal": "76360", - "codeCommune": "76503", - "libelleAcheminement": "PISSY POVILLE", - "nomCommune": "PISSY POVILLE" + "codePostal": "77580", + "codeCommune": "77047", + "libelleAcheminement": "BOULEURS", + "nomCommune": "BOULEURS" }, { - "codePostal": "69720", - "codeCommune": "69288", - "libelleAcheminement": "ST LAURENT DE MURE", - "nomCommune": "ST LAURENT DE MURE" + "codePostal": "63790", + "codeCommune": "63401", + "libelleAcheminement": "ST VICTOR LA RIVIERE", + "nomCommune": "ST VICTOR LA RIVIERE" }, { - "codePostal": "18320", - "codeCommune": "18215", - "libelleAcheminement": "ST HILAIRE DE GONDILLY", - "nomCommune": "ST HILAIRE DE GONDILLY" + "codePostal": "65150", + "codeCommune": "65327", + "libelleAcheminement": "NESTIER", + "nomCommune": "NESTIER" }, { - "codePostal": "74150", - "codeCommune": "74225", - "libelleAcheminement": "RUMILLY", - "nomCommune": "RUMILLY" + "codePostal": "77560", + "codeCommune": "77012", + "libelleAcheminement": "AUGERS EN BRIE", + "nomCommune": "AUGERS EN BRIE" }, { - "codePostal": "76840", - "codeCommune": "76513", - "libelleAcheminement": "QUEVILLON", - "nomCommune": "QUEVILLON" + "codePostal": "24290", + "codeCommune": "24563", + "libelleAcheminement": "VALOJOULX", + "nomCommune": "VALOJOULX" }, { - "codePostal": "69360", - "codeCommune": "69294", - "libelleAcheminement": "SEREZIN DU RHONE", - "nomCommune": "SEREZIN DU RHONE" + "codePostal": "77780", + "codeCommune": "77048", + "libelleAcheminement": "BOURRON MARLOTTE", + "nomCommune": "BOURRON MARLOTTE" }, { - "codePostal": "18140", - "codeCommune": "18220", - "libelleAcheminement": "ST LEGER LE PETIT", - "nomCommune": "ST LEGER LE PETIT" + "codePostal": "63750", + "codeCommune": "63416", + "libelleAcheminement": "SAVENNES", + "nomCommune": "SAVENNES" }, { - "codePostal": "74210", - "codeCommune": "74234", - "libelleAcheminement": "ST FERREOL", - "nomCommune": "ST FERREOL" + "codePostal": "65100", + "codeCommune": "65334", + "libelleAcheminement": "OMEX", + "nomCommune": "OMEX" }, { - "codePostal": "76230", - "codeCommune": "76517", - "libelleAcheminement": "QUINCAMPOIX", - "nomCommune": "QUINCAMPOIX" + "codePostal": "77120", + "codeCommune": "77013", + "libelleAcheminement": "AULNOY", + "nomCommune": "AULNOY" }, { - "codePostal": "69004", - "codeCommune": "69384", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 04" + "codePostal": "24150", + "codeCommune": "24566", + "libelleAcheminement": "VARENNES", + "nomCommune": "VARENNES" }, { - "codePostal": "18170", - "codeCommune": "18230", - "libelleAcheminement": "ST PIERRE LES BOIS", - "nomCommune": "ST PIERRE LES BOIS" + "codePostal": "77177", + "codeCommune": "77055", + "libelleAcheminement": "BROU SUR CHANTEREINE", + "nomCommune": "BROU SUR CHANTEREINE" }, { - "codePostal": "74170", - "codeCommune": "74236", - "libelleAcheminement": "ST GERVAIS LES BAINS", - "nomCommune": "ST GERVAIS LES BAINS" + "codePostal": "63260", + "codeCommune": "63432", + "libelleAcheminement": "THURET", + "nomCommune": "THURET" }, { - "codePostal": "76390", - "codeCommune": "76537", - "libelleAcheminement": "RONCHOIS", - "nomCommune": "RONCHOIS" + "codePostal": "65200", + "codeCommune": "65338", + "libelleAcheminement": "ORIGNAC", + "nomCommune": "ORIGNAC" }, { - "codePostal": "69005", - "codeCommune": "69385", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 05" + "codePostal": "77118", + "codeCommune": "77019", + "libelleAcheminement": "BALLOY", + "nomCommune": "BALLOY" }, { - "codePostal": "18210", - "codeCommune": "18231", - "libelleAcheminement": "ST PIERRE LES ETIEUX", - "nomCommune": "ST PIERRE LES ETIEUX" + "codePostal": "24230", + "codeCommune": "24568", + "libelleAcheminement": "VELINES", + "nomCommune": "VELINES" }, { - "codePostal": "74170", - "codeCommune": "74236", - "libelleAcheminement": "ST GERVAIS LES BAINS", - "nomCommune": "ST GERVAIS LES BAINS" + "codePostal": "77760", + "codeCommune": "77056", + "libelleAcheminement": "BURCY", + "nomCommune": "BURCY" }, { - "codePostal": "76680", - "codeCommune": "76538", - "libelleAcheminement": "ROSAY", - "nomCommune": "ROSAY" + "codePostal": "63600", + "codeCommune": "63441", + "libelleAcheminement": "VALCIVIERES", + "nomCommune": "VALCIVIERES" }, { - "codePostal": "70110", - "codeCommune": "70005", - "libelleAcheminement": "AILLEVANS", - "nomCommune": "AILLEVANS" + "codePostal": "65380", + "codeCommune": "65339", + "libelleAcheminement": "ORINCLES", + "nomCommune": "ORINCLES" }, { - "codePostal": "18340", - "codeCommune": "18248", - "libelleAcheminement": "SENNECAY", - "nomCommune": "SENNECAY" + "codePostal": "77630", + "codeCommune": "77022", + "libelleAcheminement": "BARBIZON", + "nomCommune": "BARBIZON" }, { - "codePostal": "74170", - "codeCommune": "74236", - "libelleAcheminement": "ST GERVAIS LES BAINS", - "nomCommune": "ST GERVAIS LES BAINS" + "codePostal": "24120", + "codeCommune": "24580", + "libelleAcheminement": "VILLAC", + "nomCommune": "VILLAC" }, { - "codePostal": "76210", - "codeCommune": "76543", - "libelleAcheminement": "ROUVILLE", - "nomCommune": "ROUVILLE" + "codePostal": "77600", + "codeCommune": "77059", + "libelleAcheminement": "BUSSY ST MARTIN", + "nomCommune": "BUSSY ST MARTIN" }, { - "codePostal": "70320", - "codeCommune": "70006", - "libelleAcheminement": "AILLEVILLERS ET LYAUMONT", - "nomCommune": "AILLEVILLERS ET LYAUMONT" + "codePostal": "63580", + "codeCommune": "63442", + "libelleAcheminement": "VALZ SOUS CHATEAUNEUF", + "nomCommune": "VALZ SOUS CHATEAUNEUF" }, { - "codePostal": "18190", - "codeCommune": "18268", - "libelleAcheminement": "UZAY LE VENON", - "nomCommune": "UZAY LE VENON" + "codePostal": "65350", + "codeCommune": "65342", + "libelleAcheminement": "OSMETS", + "nomCommune": "OSMETS" }, { - "codePostal": "74270", - "codeCommune": "74257", - "libelleAcheminement": "SALLENOVES", - "nomCommune": "SALLENOVES" + "codePostal": "77510", + "codeCommune": "77030", + "libelleAcheminement": "BELLOT", + "nomCommune": "BELLOT" }, { - "codePostal": "76370", - "codeCommune": "76545", - "libelleAcheminement": "ROUXMESNIL BOUTEILLES", - "nomCommune": "ROUXMESNIL BOUTEILLES" + "codePostal": "25750", + "codeCommune": "25008", + "libelleAcheminement": "AIBRE", + "nomCommune": "AIBRE" }, { - "codePostal": "70500", - "codeCommune": "70009", - "libelleAcheminement": "AISEY ET RICHECOURT", - "nomCommune": "AISEY ET RICHECOURT" + "codePostal": "77320", + "codeCommune": "77066", + "libelleAcheminement": "CERNEUX", + "nomCommune": "CERNEUX" }, { - "codePostal": "18300", - "codeCommune": "18274", - "libelleAcheminement": "VERDIGNY", - "nomCommune": "VERDIGNY" + "codePostal": "63580", + "codeCommune": "63448", + "libelleAcheminement": "LE VERNET CHAMEANE", + "nomCommune": "LE VERNET CHAMEANE" }, { - "codePostal": "74930", - "codeCommune": "74262", - "libelleAcheminement": "SCIENTRIER", - "nomCommune": "SCIENTRIER" + "codePostal": "65190", + "codeCommune": "65346", + "libelleAcheminement": "OUEILLOUX", + "nomCommune": "OUEILLOUX" }, { - "codePostal": "76730", - "codeCommune": "76546", - "libelleAcheminement": "ROYVILLE", - "nomCommune": "ROYVILLE" + "codePostal": "77540", + "codeCommune": "77031", + "libelleAcheminement": "BERNAY VILBERT", + "nomCommune": "BERNAY VILBERT" }, { - "codePostal": "70200", - "codeCommune": "70014", - "libelleAcheminement": "AMBLANS ET VELOTTE", - "nomCommune": "AMBLANS ET VELOTTE" + "codePostal": "25360", + "codeCommune": "25009", + "libelleAcheminement": "AISSEY", + "nomCommune": "AISSEY" }, { - "codePostal": "18360", - "codeCommune": "18278", - "libelleAcheminement": "VESDUN", - "nomCommune": "VESDUN" + "codePostal": "77260", + "codeCommune": "77078", + "libelleAcheminement": "CHAMIGNY", + "nomCommune": "CHAMIGNY" }, { - "codePostal": "74910", - "codeCommune": "74269", - "libelleAcheminement": "SEYSSEL", - "nomCommune": "SEYSSEL" + "codePostal": "63480", + "codeCommune": "63454", + "libelleAcheminement": "VERTOLAYE", + "nomCommune": "VERTOLAYE" }, { - "codePostal": "76690", - "codeCommune": "76547", - "libelleAcheminement": "LA RUE ST PIERRE", - "nomCommune": "LA RUE ST PIERRE" + "codePostal": "65190", + "codeCommune": "65353", + "libelleAcheminement": "OZON", + "nomCommune": "OZON" }, { - "codePostal": "70310", - "codeCommune": "70016", - "libelleAcheminement": "AMONT ET EFFRENEY", - "nomCommune": "AMONT ET EFFRENEY" + "codePostal": "77590", + "codeCommune": "77037", + "libelleAcheminement": "BOIS LE ROI", + "nomCommune": "BOIS LE ROI" }, { - "codePostal": "18500", - "codeCommune": "18281", - "libelleAcheminement": "VIGNOUX SUR BARANGEON", - "nomCommune": "VIGNOUX SUR BARANGEON" + "codePostal": "25490", + "codeCommune": "25011", + "libelleAcheminement": "ALLENJOIE", + "nomCommune": "ALLENJOIE" }, { - "codePostal": "74330", - "codeCommune": "74272", - "libelleAcheminement": "SILLINGY", - "nomCommune": "SILLINGY" + "codePostal": "77540", + "codeCommune": "77087", + "libelleAcheminement": "LA CHAPELLE IGER", + "nomCommune": "LA CHAPELLE IGER" }, { - "codePostal": "76730", - "codeCommune": "76549", - "libelleAcheminement": "SAANE ST JUST", - "nomCommune": "SAANE ST JUST" + "codePostal": "63270", + "codeCommune": "63457", + "libelleAcheminement": "VIC LE COMTE", + "nomCommune": "VIC LE COMTE" }, { - "codePostal": "70100", - "codeCommune": "70026", - "libelleAcheminement": "ARC LES GRAY", - "nomCommune": "ARC LES GRAY" + "codePostal": "65270", + "codeCommune": "65360", + "libelleAcheminement": "PEYROUSE", + "nomCommune": "PEYROUSE" }, { - "codePostal": "18330", - "codeCommune": "18290", - "libelleAcheminement": "VOUZERON", - "nomCommune": "VOUZERON" + "codePostal": "77169", + "codeCommune": "77042", + "libelleAcheminement": "BOISSY LE CHATEL", + "nomCommune": "BOISSY LE CHATEL" }, { - "codePostal": "74500", - "codeCommune": "74279", - "libelleAcheminement": "THOLLON LES MEMISES", - "nomCommune": "THOLLON LES MEMISES" + "codePostal": "25550", + "codeCommune": "25013", + "libelleAcheminement": "ALLONDANS", + "nomCommune": "ALLONDANS" }, { - "codePostal": "76430", - "codeCommune": "76551", - "libelleAcheminement": "SAINNEVILLE", - "nomCommune": "SAINNEVILLE" + "codePostal": "77320", + "codeCommune": "77097", + "libelleAcheminement": "CHARTRONGES", + "nomCommune": "CHARTRONGES" }, { - "codePostal": "70100", - "codeCommune": "70032", - "libelleAcheminement": "ATTRICOURT", - "nomCommune": "ATTRICOURT" + "codePostal": "63270", + "codeCommune": "63457", + "libelleAcheminement": "VIC LE COMTE", + "nomCommune": "VIC LE COMTE" }, { - "codePostal": "19200", - "codeCommune": "19002", - "libelleAcheminement": "AIX", - "nomCommune": "AIX" + "codePostal": "65100", + "codeCommune": "65366", + "libelleAcheminement": "POUEYFERRE", + "nomCommune": "POUEYFERRE" }, { - "codePostal": "74370", - "codeCommune": "74282", - "libelleAcheminement": "FILLIERE", - "nomCommune": "FILLIERE" + "codePostal": "77600", + "codeCommune": "77059", + "libelleAcheminement": "BUSSY ST MARTIN", + "nomCommune": "BUSSY ST MARTIN" }, { - "codePostal": "76490", - "codeCommune": "76557", - "libelleAcheminement": "ST ARNOULT", - "nomCommune": "ST ARNOULT" + "codePostal": "25330", + "codeCommune": "25016", + "libelleAcheminement": "AMATHAY VESIGNEUX", + "nomCommune": "AMATHAY VESIGNEUX" }, { - "codePostal": "70200", - "codeCommune": "70046", - "libelleAcheminement": "LES AYNANS", - "nomCommune": "LES AYNANS" + "codePostal": "77570", + "codeCommune": "77099", + "libelleAcheminement": "CHATEAU LANDON", + "nomCommune": "CHATEAU LANDON" }, { - "codePostal": "19190", - "codeCommune": "19003", - "libelleAcheminement": "ALBIGNAC", - "nomCommune": "ALBIGNAC" + "codePostal": "63340", + "codeCommune": "63458", + "libelleAcheminement": "VILLENEUVE", + "nomCommune": "VILLENEUVE" }, { - "codePostal": "74360", - "codeCommune": "74286", - "libelleAcheminement": "VACHERESSE", - "nomCommune": "VACHERESSE" + "codePostal": "65230", + "codeCommune": "65368", + "libelleAcheminement": "POUY", + "nomCommune": "POUY" }, { - "codePostal": "76520", - "codeCommune": "76558", - "libelleAcheminement": "ST AUBIN CELLOVILLE", - "nomCommune": "ST AUBIN CELLOVILLE" + "codePostal": "77760", + "codeCommune": "77060", + "libelleAcheminement": "BUTHIERS", + "nomCommune": "BUTHIERS" }, { - "codePostal": "70500", - "codeCommune": "70049", - "libelleAcheminement": "BARGES", - "nomCommune": "BARGES" + "codePostal": "25330", + "codeCommune": "25017", + "libelleAcheminement": "AMONDANS", + "nomCommune": "AMONDANS" }, { - "codePostal": "19380", - "codeCommune": "19004", - "libelleAcheminement": "ALBUSSAC", - "nomCommune": "ALBUSSAC" + "codePostal": "77126", + "codeCommune": "77101", + "libelleAcheminement": "CHATENAY SUR SEINE", + "nomCommune": "CHATENAY SUR SEINE" }, { - "codePostal": "74150", - "codeCommune": "74289", - "libelleAcheminement": "VALLIERES SUR FIER", - "nomCommune": "VALLIERES SUR FIER" + "codePostal": "63310", + "codeCommune": "63459", + "libelleAcheminement": "VILLENEUVE LES CERFS", + "nomCommune": "VILLENEUVE LES CERFS" }, { - "codePostal": "76190", - "codeCommune": "76559", - "libelleAcheminement": "ST AUBIN DE CRETOT", - "nomCommune": "ST AUBIN DE CRETOT" + "codePostal": "65200", + "codeCommune": "65370", + "libelleAcheminement": "POUZAC", + "nomCommune": "POUZAC" }, { - "codePostal": "70130", - "codeCommune": "70053", - "libelleAcheminement": "LES BATIES", - "nomCommune": "LES BATIES" + "codePostal": "77240", + "codeCommune": "77067", + "libelleAcheminement": "CESSON", + "nomCommune": "CESSON" }, { - "codePostal": "19120", - "codeCommune": "19019", - "libelleAcheminement": "BEAULIEU SUR DORDOGNE", - "nomCommune": "BEAULIEU SUR DORDOGNE" + "codePostal": "25340", + "codeCommune": "25018", + "libelleAcheminement": "ANTEUIL", + "nomCommune": "ANTEUIL" }, { - "codePostal": "74140", - "codeCommune": "74293", - "libelleAcheminement": "VEIGY FONCENEX", - "nomCommune": "VEIGY FONCENEX" + "codePostal": "77500", + "codeCommune": "77108", + "libelleAcheminement": "CHELLES", + "nomCommune": "CHELLES" }, { - "codePostal": "76510", - "codeCommune": "76562", - "libelleAcheminement": "ST AUBIN LE CAUF", - "nomCommune": "ST AUBIN LE CAUF" + "codePostal": "63250", + "codeCommune": "63463", + "libelleAcheminement": "VISCOMTAT", + "nomCommune": "VISCOMTAT" }, { - "codePostal": "70160", - "codeCommune": "70056", - "libelleAcheminement": "BAULAY", - "nomCommune": "BAULAY" + "codePostal": "65330", + "codeCommune": "65381", + "libelleAcheminement": "SABARROS", + "nomCommune": "SABARROS" }, { - "codePostal": "19120", - "codeCommune": "19019", - "libelleAcheminement": "BEAULIEU SUR DORDOGNE", - "nomCommune": "BEAULIEU SUR DORDOGNE" + "codePostal": "77520", + "codeCommune": "77068", + "libelleAcheminement": "CESSOY EN MONTOIS", + "nomCommune": "CESSOY EN MONTOIS" }, { - "codePostal": "74200", - "codeCommune": "74295", - "libelleAcheminement": "LA VERNAZ", - "nomCommune": "LA VERNAZ" + "codePostal": "25250", + "codeCommune": "25019", + "libelleAcheminement": "APPENANS", + "nomCommune": "APPENANS" }, { - "codePostal": "76430", - "codeCommune": "76563", - "libelleAcheminement": "ST AUBIN ROUTOT", - "nomCommune": "ST AUBIN ROUTOT" + "codePostal": "77370", + "codeCommune": "77119", + "libelleAcheminement": "CLOS FONTAINE", + "nomCommune": "CLOS FONTAINE" }, { - "codePostal": "70190", - "codeCommune": "70059", - "libelleAcheminement": "BEAUMOTTE AUBERTANS", - "nomCommune": "BEAUMOTTE AUBERTANS" + "codePostal": "63500", + "codeCommune": "63466", + "libelleAcheminement": "VODABLE", + "nomCommune": "VODABLE" }, { - "codePostal": "19510", - "codeCommune": "19022", - "libelleAcheminement": "BENAYES", - "nomCommune": "BENAYES" + "codePostal": "65370", + "codeCommune": "65382", + "libelleAcheminement": "SACOUE", + "nomCommune": "SACOUE" }, { - "codePostal": "74160", - "codeCommune": "74296", - "libelleAcheminement": "VERS", - "nomCommune": "VERS" + "codePostal": "77930", + "codeCommune": "77069", + "libelleAcheminement": "CHAILLY EN BIERE", + "nomCommune": "CHAILLY EN BIERE" }, { - "codePostal": "76740", - "codeCommune": "76564", - "libelleAcheminement": "ST AUBIN SUR MER", - "nomCommune": "ST AUBIN SUR MER" + "codePostal": "25750", + "codeCommune": "25022", + "libelleAcheminement": "ARCEY", + "nomCommune": "ARCEY" }, { - "codePostal": "70290", - "codeCommune": "70061", - "libelleAcheminement": "BELFAHY", - "nomCommune": "BELFAHY" + "codePostal": "77450", + "codeCommune": "77125", + "libelleAcheminement": "CONDE STE LIBIAIRE", + "nomCommune": "CONDE STE LIBIAIRE" }, { - "codePostal": "19190", - "codeCommune": "19023", - "libelleAcheminement": "BEYNAT", - "nomCommune": "BEYNAT" + "codePostal": "63700", + "codeCommune": "63471", + "libelleAcheminement": "YOUX", + "nomCommune": "YOUX" }, { - "codePostal": "74100", - "codeCommune": "74298", - "libelleAcheminement": "VETRAZ MONTHOUX", - "nomCommune": "VETRAZ MONTHOUX" + "codePostal": "65170", + "codeCommune": "65384", + "libelleAcheminement": "SAILHAN", + "nomCommune": "SAILHAN" }, { - "codePostal": "76270", - "codeCommune": "76567", - "libelleAcheminement": "STE BEUVE EN RIVIERE", - "nomCommune": "STE BEUVE EN RIVIERE" + "codePostal": "77420", + "codeCommune": "77083", + "libelleAcheminement": "CHAMPS SUR MARNE", + "nomCommune": "CHAMPS SUR MARNE" }, { - "codePostal": "70700", - "codeCommune": "70076", - "libelleAcheminement": "BONNEVENT VELLOREILLE", - "nomCommune": "BONNEVENT VELLOREILLE" + "codePostal": "25170", + "codeCommune": "25030", + "libelleAcheminement": "AUDEUX", + "nomCommune": "AUDEUX" }, { - "codePostal": "19230", - "codeCommune": "19024", - "libelleAcheminement": "BEYSSAC", - "nomCommune": "BEYSSAC" + "codePostal": "77840", + "codeCommune": "77129", + "libelleAcheminement": "COULOMBS EN VALOIS", + "nomCommune": "COULOMBS EN VALOIS" }, { - "codePostal": "74230", - "codeCommune": "74302", - "libelleAcheminement": "LES VILLARDS SUR THONES", - "nomCommune": "LES VILLARDS SUR THONES" + "codePostal": "64390", + "codeCommune": "64004", + "libelleAcheminement": "ABITAIN", + "nomCommune": "ABITAIN" }, { - "codePostal": "76190", - "codeCommune": "76568", - "libelleAcheminement": "ST CLAIR SUR LES MONTS", - "nomCommune": "ST CLAIR SUR LES MONTS" + "codePostal": "65140", + "codeCommune": "65397", + "libelleAcheminement": "ST SEVER DE RUSTAN", + "nomCommune": "ST SEVER DE RUSTAN" }, { - "codePostal": "70100", - "codeCommune": "70080", - "libelleAcheminement": "BOUHANS ET FEURG", - "nomCommune": "BOUHANS ET FEURG" + "codePostal": "77720", + "codeCommune": "77086", + "libelleAcheminement": "LA CHAPELLE GAUTHIER", + "nomCommune": "LA CHAPELLE GAUTHIER" }, { - "codePostal": "19110", - "codeCommune": "19028", - "libelleAcheminement": "BORT LES ORGUES", - "nomCommune": "BORT LES ORGUES" + "codePostal": "25560", + "codeCommune": "25041", + "libelleAcheminement": "BANNANS", + "nomCommune": "BANNANS" }, { - "codePostal": "74250", - "codeCommune": "74304", - "libelleAcheminement": "VILLE EN SALLAZ", - "nomCommune": "VILLE EN SALLAZ" + "codePostal": "77126", + "codeCommune": "77133", + "libelleAcheminement": "COURCELLES EN BASSEE", + "nomCommune": "COURCELLES EN BASSEE" }, { - "codePostal": "76210", - "codeCommune": "76576", - "libelleAcheminement": "ST EUSTACHE LA FORET", - "nomCommune": "ST EUSTACHE LA FORET" + "codePostal": "64220", + "codeCommune": "64011", + "libelleAcheminement": "AINCILLE", + "nomCommune": "AINCILLE" }, { - "codePostal": "70400", - "codeCommune": "70096", - "libelleAcheminement": "BREVILLIERS", - "nomCommune": "BREVILLIERS" + "codePostal": "65370", + "codeCommune": "65402", + "libelleAcheminement": "SAMURAN", + "nomCommune": "SAMURAN" }, { - "codePostal": "19100", - "codeCommune": "19031", - "libelleAcheminement": "BRIVE LA GAILLARDE", - "nomCommune": "BRIVE LA GAILLARDE" + "codePostal": "77610", + "codeCommune": "77091", + "libelleAcheminement": "LES CHAPELLES BOURBON", + "nomCommune": "LES CHAPELLES BOURBON" }, { - "codePostal": "76540", - "codeCommune": "76013", - "libelleAcheminement": "ANGERVILLE LA MARTEL", - "nomCommune": "ANGERVILLE LA MARTEL" + "codePostal": "25210", + "codeCommune": "25042", + "libelleAcheminement": "LE BARBOUX", + "nomCommune": "LE BARBOUX" }, { - "codePostal": "76590", - "codeCommune": "76577", - "libelleAcheminement": "STE FOY", - "nomCommune": "STE FOY" + "codePostal": "77580", + "codeCommune": "77141", + "libelleAcheminement": "COUTEVROULT", + "nomCommune": "COUTEVROULT" }, { - "codePostal": "70140", - "codeCommune": "70101", - "libelleAcheminement": "BROYE AUBIGNEY MONTSEUGNY", - "nomCommune": "BROYE AUBIGNEY MONTSEUGNY" + "codePostal": "64220", + "codeCommune": "64013", + "libelleAcheminement": "AINHICE MONGELOS", + "nomCommune": "AINHICE MONGELOS" }, { - "codePostal": "19330", - "codeCommune": "19042", - "libelleAcheminement": "CHANTEIX", - "nomCommune": "CHANTEIX" + "codePostal": "65130", + "codeCommune": "65405", + "libelleAcheminement": "SARLABOUS", + "nomCommune": "SARLABOUS" }, { - "codePostal": "76110", - "codeCommune": "76021", - "libelleAcheminement": "ANNOUVILLE VILMESNIL", - "nomCommune": "ANNOUVILLE VILMESNIL" + "codePostal": "77820", + "codeCommune": "77103", + "libelleAcheminement": "CHATILLON LA BORDE", + "nomCommune": "CHATILLON LA BORDE" }, { - "codePostal": "76690", - "codeCommune": "76583", - "libelleAcheminement": "ST GERMAIN SOUS CAILLY", - "nomCommune": "ST GERMAIN SOUS CAILLY" + "codePostal": "25640", + "codeCommune": "25045", + "libelleAcheminement": "BATTENANS LES MINES", + "nomCommune": "BATTENANS LES MINES" }, { - "codePostal": "70150", - "codeCommune": "70102", - "libelleAcheminement": "BRUSSEY", - "nomCommune": "BRUSSEY" + "codePostal": "77190", + "codeCommune": "77152", + "libelleAcheminement": "DAMMARIE LES LYS", + "nomCommune": "DAMMARIE LES LYS" }, { - "codePostal": "19600", - "codeCommune": "19047", - "libelleAcheminement": "CHARTRIER FERRIERE", - "nomCommune": "CHARTRIER FERRIERE" + "codePostal": "64120", + "codeCommune": "64018", + "libelleAcheminement": "AMENDEUIX ONEIX", + "nomCommune": "AMENDEUIX ONEIX" }, { - "codePostal": "76680", - "codeCommune": "76024", - "libelleAcheminement": "ARDOUVAL", - "nomCommune": "ARDOUVAL" + "codePostal": "65140", + "codeCommune": "65414", + "libelleAcheminement": "SEGALAS", + "nomCommune": "SEGALAS" }, { - "codePostal": "76430", - "codeCommune": "76586", - "libelleAcheminement": "ST GILLES DE LA NEUVILLE", - "nomCommune": "ST GILLES DE LA NEUVILLE" + "codePostal": "77169", + "codeCommune": "77106", + "libelleAcheminement": "CHAUFFRY", + "nomCommune": "CHAUFFRY" }, { - "codePostal": "70190", - "codeCommune": "70107", - "libelleAcheminement": "BUSSIERES", - "nomCommune": "BUSSIERES" + "codePostal": "25110", + "codeCommune": "25047", + "libelleAcheminement": "BAUME LES DAMES", + "nomCommune": "BAUME LES DAMES" }, { - "codePostal": "19500", - "codeCommune": "19050", - "libelleAcheminement": "CHAUFFOUR SUR VELL", - "nomCommune": "CHAUFFOUR SUR VELL" + "codePostal": "77940", + "codeCommune": "77158", + "libelleAcheminement": "DIANT", + "nomCommune": "DIANT" }, { - "codePostal": "76780", - "codeCommune": "76025", - "libelleAcheminement": "ARGUEIL", - "nomCommune": "ARGUEIL" + "codePostal": "64390", + "codeCommune": "64022", + "libelleAcheminement": "ANDREIN", + "nomCommune": "ANDREIN" }, { - "codePostal": "76680", - "codeCommune": "76588", - "libelleAcheminement": "ST HELLIER", - "nomCommune": "ST HELLIER" + "codePostal": "65100", + "codeCommune": "65421", + "libelleAcheminement": "SERE LANSO", + "nomCommune": "SERE LANSO" }, { - "codePostal": "70230", - "codeCommune": "70113", - "libelleAcheminement": "CENANS", - "nomCommune": "CENANS" + "codePostal": "77500", + "codeCommune": "77108", + "libelleAcheminement": "CHELLES", + "nomCommune": "CHELLES" }, { - "codePostal": "19500", - "codeCommune": "19057", - "libelleAcheminement": "COLLONGES LA ROUGE", - "nomCommune": "COLLONGES LA ROUGE" + "codePostal": "25470", + "codeCommune": "25049", + "libelleAcheminement": "BELFAYS", + "nomCommune": "BELFAYS" }, { - "codePostal": "76190", - "codeCommune": "76041", - "libelleAcheminement": "LES HAUTS DE CAUX", - "nomCommune": "LES HAUTS DE CAUX" + "codePostal": "77940", + "codeCommune": "77172", + "libelleAcheminement": "ESMANS", + "nomCommune": "ESMANS" }, { - "codePostal": "76590", - "codeCommune": "76589", - "libelleAcheminement": "ST HONORE", - "nomCommune": "ST HONORE" + "codePostal": "64190", + "codeCommune": "64033", + "libelleAcheminement": "ARAUX", + "nomCommune": "ARAUX" }, { - "codePostal": "70600", - "codeCommune": "70122", - "libelleAcheminement": "CHAMPLITTE", - "nomCommune": "CHAMPLITTE" + "codePostal": "65120", + "codeCommune": "65424", + "libelleAcheminement": "SERS", + "nomCommune": "SERS" }, { - "codePostal": "19350", - "codeCommune": "19059", - "libelleAcheminement": "CONCEZE", - "nomCommune": "CONCEZE" + "codePostal": "77160", + "codeCommune": "77109", + "libelleAcheminement": "CHENOISE CUCHARMOY", + "nomCommune": "CHENOISE CUCHARMOY" }, { - "codePostal": "76760", - "codeCommune": "76045", - "libelleAcheminement": "AUZOUVILLE L ESNEVAL", - "nomCommune": "AUZOUVILLE L ESNEVAL" + "codePostal": "25500", + "codeCommune": "25050", + "libelleAcheminement": "LE BELIEU", + "nomCommune": "LE BELIEU" }, { - "codePostal": "76150", - "codeCommune": "76594", - "libelleAcheminement": "ST JEAN DU CARDONNAY", - "nomCommune": "ST JEAN DU CARDONNAY" + "codePostal": "77166", + "codeCommune": "77175", + "libelleAcheminement": "EVRY GREGY SUR YERRE", + "nomCommune": "EVRY GREGY SUR YERRE" }, { - "codePostal": "70700", - "codeCommune": "70129", - "libelleAcheminement": "LA CHAPELLE ST QUILLAIN", - "nomCommune": "LA CHAPELLE ST QUILLAIN" + "codePostal": "64210", + "codeCommune": "64035", + "libelleAcheminement": "ARBONNE", + "nomCommune": "ARBONNE" }, { - "codePostal": "19340", - "codeCommune": "19064", - "libelleAcheminement": "COUFFY SUR SARSONNE", - "nomCommune": "COUFFY SUR SARSONNE" + "codePostal": "65370", + "codeCommune": "65427", + "libelleAcheminement": "SIRADAN", + "nomCommune": "SIRADAN" }, { - "codePostal": "76730", - "codeCommune": "76050", - "libelleAcheminement": "AVREMESNIL", - "nomCommune": "AVREMESNIL" + "codePostal": "77700", + "codeCommune": "77111", + "libelleAcheminement": "CHESSY", + "nomCommune": "CHESSY" }, { - "codePostal": "76119", - "codeCommune": "76605", - "libelleAcheminement": "STE MARGUERITE SUR MER", - "nomCommune": "STE MARGUERITE SUR MER" + "codePostal": "25530", + "codeCommune": "25052", + "libelleAcheminement": "BELMONT", + "nomCommune": "BELMONT" }, { - "codePostal": "70700", - "codeCommune": "70130", - "libelleAcheminement": "CHARCENNE", - "nomCommune": "CHARCENNE" + "codePostal": "77150", + "codeCommune": "77180", + "libelleAcheminement": "FEROLLES ATTILLY", + "nomCommune": "FEROLLES ATTILLY" }, { - "codePostal": "19340", - "codeCommune": "19065", - "libelleAcheminement": "COURTEIX", - "nomCommune": "COURTEIX" + "codePostal": "64570", + "codeCommune": "64040", + "libelleAcheminement": "ARETTE", + "nomCommune": "ARETTE" }, { - "codePostal": "76730", - "codeCommune": "76051", - "libelleAcheminement": "BACQUEVILLE EN CAUX", - "nomCommune": "BACQUEVILLE EN CAUX" + "codePostal": "65700", + "codeCommune": "65429", + "libelleAcheminement": "SOMBRUN", + "nomCommune": "SOMBRUN" }, { - "codePostal": "76280", - "codeCommune": "76609", - "libelleAcheminement": "STE MARIE AU BOSC", - "nomCommune": "STE MARIE AU BOSC" + "codePostal": "77760", + "codeCommune": "77112", + "libelleAcheminement": "CHEVRAINVILLIERS", + "nomCommune": "CHEVRAINVILLIERS" }, { - "codePostal": "70100", - "codeCommune": "70132", - "libelleAcheminement": "CHARGEY LES GRAY", - "nomCommune": "CHARGEY LES GRAY" + "codePostal": "25720", + "codeCommune": "25058", + "libelleAcheminement": "BEURE", + "nomCommune": "BEURE" }, { - "codePostal": "19520", - "codeCommune": "19066", - "libelleAcheminement": "CUBLAC", - "nomCommune": "CUBLAC" + "codePostal": "77760", + "codeCommune": "77198", + "libelleAcheminement": "FROMONT", + "nomCommune": "FROMONT" }, { - "codePostal": "76280", - "codeCommune": "76064", - "libelleAcheminement": "BEAUREPAIRE", - "nomCommune": "BEAUREPAIRE" + "codePostal": "64370", + "codeCommune": "64048", + "libelleAcheminement": "ARNOS", + "nomCommune": "ARNOS" }, { - "codePostal": "76290", - "codeCommune": "76616", - "libelleAcheminement": "ST MARTIN DU MANOIR", - "nomCommune": "ST MARTIN DU MANOIR" + "codePostal": "65700", + "codeCommune": "65432", + "libelleAcheminement": "SOUBLECAUSE", + "nomCommune": "SOUBLECAUSE" }, { - "codePostal": "70000", - "codeCommune": "70136", - "libelleAcheminement": "CHARMOILLE", - "nomCommune": "CHARMOILLE" + "codePostal": "77710", + "codeCommune": "77115", + "libelleAcheminement": "CHEVRY EN SEREINE", + "nomCommune": "CHEVRY EN SEREINE" }, { - "codePostal": "19220", - "codeCommune": "19069", - "libelleAcheminement": "DARAZAC", - "nomCommune": "DARAZAC" + "codePostal": "25310", + "codeCommune": "25063", + "libelleAcheminement": "BLAMONT", + "nomCommune": "BLAMONT" }, { - "codePostal": "76240", - "codeCommune": "76069", - "libelleAcheminement": "BELBEUF", - "nomCommune": "BELBEUF" + "codePostal": "77470", + "codeCommune": "77199", + "libelleAcheminement": "FUBLAINES", + "nomCommune": "FUBLAINES" }, { - "codePostal": "76160", - "codeCommune": "76617", - "libelleAcheminement": "ST MARTIN DU VIVIER", - "nomCommune": "ST MARTIN DU VIVIER" + "codePostal": "64120", + "codeCommune": "64049", + "libelleAcheminement": "AROUE ITHOROTS OLHAIBY", + "nomCommune": "AROUE ITHOROTS OLHAIBY" }, { - "codePostal": "70170", - "codeCommune": "70146", - "libelleAcheminement": "CHAUX LES PORT", - "nomCommune": "CHAUX LES PORT" + "codePostal": "65300", + "codeCommune": "65437", + "libelleAcheminement": "TAJAN", + "nomCommune": "TAJAN" }, { - "codePostal": "19800", - "codeCommune": "19081", - "libelleAcheminement": "EYREIN", - "nomCommune": "EYREIN" + "codePostal": "77410", + "codeCommune": "77118", + "libelleAcheminement": "CLAYE SOUILLY", + "nomCommune": "CLAYE SOUILLY" }, { - "codePostal": "76560", - "codeCommune": "76077", - "libelleAcheminement": "BENESVILLE", - "nomCommune": "BENESVILLE" + "codePostal": "25680", + "codeCommune": "25072", + "libelleAcheminement": "BONNAL", + "nomCommune": "BONNAL" }, { - "codePostal": "76370", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "77370", + "codeCommune": "77201", + "libelleAcheminement": "GASTINS", + "nomCommune": "GASTINS" }, { - "codePostal": "70400", - "codeCommune": "70147", - "libelleAcheminement": "CHAVANNE", - "nomCommune": "CHAVANNE" + "codePostal": "64800", + "codeCommune": "64054", + "libelleAcheminement": "ARROS DE NAY", + "nomCommune": "ARROS DE NAY" }, { - "codePostal": "19430", - "codeCommune": "19086", - "libelleAcheminement": "GOULLES", - "nomCommune": "GOULLES" + "codePostal": "65220", + "codeCommune": "65448", + "libelleAcheminement": "TOURNOUS DARRE", + "nomCommune": "TOURNOUS DARRE" }, { - "codePostal": "76450", - "codeCommune": "76091", - "libelleAcheminement": "BEUZEVILLE LA GUERARD", - "nomCommune": "BEUZEVILLE LA GUERARD" + "codePostal": "77860", + "codeCommune": "77128", + "libelleAcheminement": "COUILLY PONT AUX DAMES", + "nomCommune": "COUILLY PONT AUX DAMES" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "25560", + "codeCommune": "25085", + "libelleAcheminement": "BOUVERANS", + "nomCommune": "BOUVERANS" }, { - "codePostal": "70150", - "codeCommune": "70150", - "libelleAcheminement": "CHENEVREY ET MOROGNE", - "nomCommune": "CHENEVREY ET MOROGNE" + "codePostal": "77840", + "codeCommune": "77204", + "libelleAcheminement": "GERMIGNY SOUS COULOMBS", + "nomCommune": "GERMIGNY SOUS COULOMBS" }, { - "codePostal": "19500", - "codeCommune": "19093", - "libelleAcheminement": "JUGEALS NAZARETH", - "nomCommune": "JUGEALS NAZARETH" + "codePostal": "64410", + "codeCommune": "64063", + "libelleAcheminement": "ARZACQ ARRAZIGUET", + "nomCommune": "ARZACQ ARRAZIGUET" }, { - "codePostal": "76750", - "codeCommune": "76094", - "libelleAcheminement": "BIERVILLE", - "nomCommune": "BIERVILLE" + "codePostal": "65370", + "codeCommune": "65453", + "libelleAcheminement": "TROUBAT", + "nomCommune": "TROUBAT" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "77580", + "codeCommune": "77130", + "libelleAcheminement": "COULOMMES", + "nomCommune": "COULOMMES" }, { - "codePostal": "70000", - "codeCommune": "70163", - "libelleAcheminement": "COLOMBIER", - "nomCommune": "COLOMBIER" + "codePostal": "25640", + "codeCommune": "25088", + "libelleAcheminement": "BRECONCHAUX", + "nomCommune": "BRECONCHAUX" }, { - "codePostal": "19150", - "codeCommune": "19096", - "libelleAcheminement": "LADIGNAC SUR RONDELLES", - "nomCommune": "LADIGNAC SUR RONDELLES" + "codePostal": "77890", + "codeCommune": "77207", + "libelleAcheminement": "GIRONVILLE", + "nomCommune": "GIRONVILLE" }, { - "codePostal": "76420", - "codeCommune": "76095", - "libelleAcheminement": "BIHOREL", - "nomCommune": "BIHOREL" + "codePostal": "64350", + "codeCommune": "64079", + "libelleAcheminement": "AURIONS IDERNES", + "nomCommune": "AURIONS IDERNES" }, { - "codePostal": "76330", - "codeCommune": "76622", - "libelleAcheminement": "ST MAURICE D ETELAN", - "nomCommune": "ST MAURICE D ETELAN" + "codePostal": "65140", + "codeCommune": "65454", + "libelleAcheminement": "TROULEY LABARTHE", + "nomCommune": "TROULEY LABARTHE" }, { - "codePostal": "70120", - "codeCommune": "70165", - "libelleAcheminement": "COMBEAUFONTAINE", - "nomCommune": "COMBEAUFONTAINE" + "codePostal": "77540", + "codeCommune": "77135", + "libelleAcheminement": "COURPALAY", + "nomCommune": "COURPALAY" }, { - "codePostal": "19150", - "codeCommune": "19098", - "libelleAcheminement": "LAGARDE MARC LA TOUR", - "nomCommune": "LAGARDE MARC LA TOUR" + "codePostal": "25170", + "codeCommune": "25101", + "libelleAcheminement": "BURGILLE", + "nomCommune": "BURGILLE" }, { - "codePostal": "76340", - "codeCommune": "76101", - "libelleAcheminement": "BLANGY SUR BRESLE", - "nomCommune": "BLANGY SUR BRESLE" + "codePostal": "77880", + "codeCommune": "77216", + "libelleAcheminement": "GREZ SUR LOING", + "nomCommune": "GREZ SUR LOING" }, { - "codePostal": "76480", - "codeCommune": "76636", - "libelleAcheminement": "ST PIERRE DE VARENGEVILLE", - "nomCommune": "ST PIERRE DE VARENGEVILLE" + "codePostal": "64330", + "codeCommune": "64084", + "libelleAcheminement": "AYDIE", + "nomCommune": "AYDIE" }, { - "codePostal": "70300", - "codeCommune": "70172", - "libelleAcheminement": "LA CORBIERE", - "nomCommune": "LA CORBIERE" + "codePostal": "65150", + "codeCommune": "65455", + "libelleAcheminement": "TUZAGUET", + "nomCommune": "TUZAGUET" }, { - "codePostal": "19500", - "codeCommune": "19099", - "libelleAcheminement": "LAGLEYGEOLLE", - "nomCommune": "LAGLEYGEOLLE" + "codePostal": "77390", + "codeCommune": "77136", + "libelleAcheminement": "COURQUETAINE", + "nomCommune": "COURQUETAINE" }, { - "codePostal": "76240", - "codeCommune": "76103", - "libelleAcheminement": "BONSECOURS", - "nomCommune": "BONSECOURS" + "codePostal": "25170", + "codeCommune": "25101", + "libelleAcheminement": "BURGILLE", + "nomCommune": "BURGILLE" }, { - "codePostal": "76560", - "codeCommune": "76679", - "libelleAcheminement": "SOMMESNIL", - "nomCommune": "SOMMESNIL" + "codePostal": "77600", + "codeCommune": "77221", + "libelleAcheminement": "GUERMANTES", + "nomCommune": "GUERMANTES" }, { - "codePostal": "70400", - "codeCommune": "70182", - "libelleAcheminement": "COURMONT", - "nomCommune": "COURMONT" + "codePostal": "64430", + "codeCommune": "64092", + "libelleAcheminement": "BANCA", + "nomCommune": "BANCA" }, { - "codePostal": "19160", - "codeCommune": "19102", - "libelleAcheminement": "LAMAZIERE BASSE", - "nomCommune": "LAMAZIERE BASSE" + "codePostal": "65300", + "codeCommune": "65456", + "libelleAcheminement": "UGLAS", + "nomCommune": "UGLAS" }, { - "codePostal": "76190", - "codeCommune": "76110", - "libelleAcheminement": "BOIS HIMONT", - "nomCommune": "BOIS HIMONT" + "codePostal": "77580", + "codeCommune": "77142", + "libelleAcheminement": "CRECY LA CHAPELLE", + "nomCommune": "CRECY LA CHAPELLE" }, { - "codePostal": "76540", - "codeCommune": "76680", - "libelleAcheminement": "SORQUAINVILLE", - "nomCommune": "SORQUAINVILLE" + "codePostal": "25120", + "codeCommune": "25108", + "libelleAcheminement": "CERNAY L EGLISE", + "nomCommune": "CERNAY L EGLISE" }, { - "codePostal": "70240", - "codeCommune": "70186", - "libelleAcheminement": "LA CREUSE", - "nomCommune": "LA CREUSE" + "codePostal": "77390", + "codeCommune": "77222", + "libelleAcheminement": "GUIGNES", + "nomCommune": "GUIGNES" }, { - "codePostal": "19160", - "codeCommune": "19113", - "libelleAcheminement": "LIGINIAC", - "nomCommune": "LIGINIAC" + "codePostal": "64130", + "codeCommune": "64093", + "libelleAcheminement": "BARCUS", + "nomCommune": "BARCUS" }, { - "codePostal": "76750", - "codeCommune": "76113", - "libelleAcheminement": "BOISSAY", - "nomCommune": "BOISSAY" + "codePostal": "65500", + "codeCommune": "65460", + "libelleAcheminement": "VIC EN BIGORRE", + "nomCommune": "VIC EN BIGORRE" }, { - "codePostal": "76430", - "codeCommune": "76684", - "libelleAcheminement": "TANCARVILLE", - "nomCommune": "TANCARVILLE" + "codePostal": "77390", + "codeCommune": "77145", + "libelleAcheminement": "CRISENOY", + "nomCommune": "CRISENOY" }, { - "codePostal": "70160", - "codeCommune": "70190", - "libelleAcheminement": "CUBRY LES FAVERNEY", - "nomCommune": "CUBRY LES FAVERNEY" + "codePostal": "25170", + "codeCommune": "25119", + "libelleAcheminement": "CHAMPVANS LES MOULINS", + "nomCommune": "CHAMPVANS LES MOULINS" }, { - "codePostal": "19470", - "codeCommune": "19122", - "libelleAcheminement": "MADRANGES", - "nomCommune": "MADRANGES" + "codePostal": "77440", + "codeCommune": "77231", + "libelleAcheminement": "ISLES LES MELDEUSES", + "nomCommune": "ISLES LES MELDEUSES" }, { - "codePostal": "76710", - "codeCommune": "76123", - "libelleAcheminement": "BOSC GUERARD ST ADRIEN", - "nomCommune": "BOSC GUERARD ST ADRIEN" + "codePostal": "64390", + "codeCommune": "64096", + "libelleAcheminement": "BARRAUTE CAMU", + "nomCommune": "BARRAUTE CAMU" }, { - "codePostal": "76790", - "codeCommune": "76693", - "libelleAcheminement": "LE TILLEUL", - "nomCommune": "LE TILLEUL" + "codePostal": "65220", + "codeCommune": "65461", + "libelleAcheminement": "VIDOU", + "nomCommune": "VIDOU" }, { - "codePostal": "70150", - "codeCommune": "70193", - "libelleAcheminement": "CULT", - "nomCommune": "CULT" + "codePostal": "77183", + "codeCommune": "77146", + "libelleAcheminement": "CROISSY BEAUBOURG", + "nomCommune": "CROISSY BEAUBOURG" }, { - "codePostal": "19320", - "codeCommune": "19125", - "libelleAcheminement": "MARCILLAC LA CROISILLE", - "nomCommune": "MARCILLAC LA CROISILLE" + "codePostal": "25270", + "codeCommune": "25122", + "libelleAcheminement": "CHAPELLE D HUIN", + "nomCommune": "CHAPELLE D HUIN" }, { - "codePostal": "76530", - "codeCommune": "76131", - "libelleAcheminement": "LA BOUILLE", - "nomCommune": "LA BOUILLE" + "codePostal": "77230", + "codeCommune": "77241", + "libelleAcheminement": "JUILLY", + "nomCommune": "JUILLY" }, { - "codePostal": "76590", - "codeCommune": "76698", - "libelleAcheminement": "TORCY LE PETIT", - "nomCommune": "TORCY LE PETIT" + "codePostal": "64350", + "codeCommune": "64098", + "libelleAcheminement": "BASSILLON VAUZE", + "nomCommune": "BASSILLON VAUZE" }, { - "codePostal": "70180", - "codeCommune": "70198", - "libelleAcheminement": "DAMPIERRE SUR SALON", - "nomCommune": "DAMPIERRE SUR SALON" + "codePostal": "65400", + "codeCommune": "65467", + "libelleAcheminement": "VIER BORDES", + "nomCommune": "VIER BORDES" }, { - "codePostal": "19500", - "codeCommune": "19126", - "libelleAcheminement": "MARCILLAC LA CROZE", - "nomCommune": "MARCILLAC LA CROZE" + "codePostal": "77230", + "codeCommune": "77153", + "libelleAcheminement": "DAMMARTIN EN GOELE", + "nomCommune": "DAMMARTIN EN GOELE" }, { - "codePostal": "76680", - "codeCommune": "76139", - "libelleAcheminement": "BRADIANCOURT", - "nomCommune": "BRADIANCOURT" + "codePostal": "25840", + "codeCommune": "25130", + "libelleAcheminement": "CHATEAUVIEUX LES FOSSES", + "nomCommune": "CHATEAUVIEUX LES FOSSES" }, { - "codePostal": "76560", - "codeCommune": "76699", - "libelleAcheminement": "LE TORP MESNIL", - "nomCommune": "LE TORP MESNIL" + "codePostal": "77650", + "codeCommune": "77256", + "libelleAcheminement": "LIZINES", + "nomCommune": "LIZINES" }, { - "codePostal": "70160", - "codeCommune": "70214", - "libelleAcheminement": "EQUEVILLEY", - "nomCommune": "EQUEVILLEY" + "codePostal": "64190", + "codeCommune": "64099", + "libelleAcheminement": "BASTANES", + "nomCommune": "BASTANES" }, { - "codePostal": "19250", - "codeCommune": "19136", - "libelleAcheminement": "MEYMAC", - "nomCommune": "MEYMAC" + "codePostal": "65220", + "codeCommune": "65474", + "libelleAcheminement": "VILLEMBITS", + "nomCommune": "VILLEMBITS" }, { - "codePostal": "76110", - "codeCommune": "76143", - "libelleAcheminement": "BRETTEVILLE DU GRAND CAUX", - "nomCommune": "BRETTEVILLE DU GRAND CAUX" + "codePostal": "77820", + "codeCommune": "77165", + "libelleAcheminement": "LES ECRENNES", + "nomCommune": "LES ECRENNES" }, { - "codePostal": "76890", - "codeCommune": "76700", - "libelleAcheminement": "TOTES", - "nomCommune": "TOTES" + "codePostal": "25190", + "codeCommune": "25138", + "libelleAcheminement": "LES TERRES DE CHAUX", + "nomCommune": "LES TERRES DE CHAUX" }, { - "codePostal": "70700", - "codeCommune": "70222", - "libelleAcheminement": "ETRELLES ET LA MONTBLEUSE", - "nomCommune": "ETRELLES ET LA MONTBLEUSE" + "codePostal": "77560", + "codeCommune": "77262", + "libelleAcheminement": "LOUAN VILLEGRUIS FONTAINE", + "nomCommune": "LOUAN VILLEGRUIS FONTAINE" }, { - "codePostal": "19500", - "codeCommune": "19138", - "libelleAcheminement": "MEYSSAC", - "nomCommune": "MEYSSAC" + "codePostal": "64490", + "codeCommune": "64104", + "libelleAcheminement": "BEDOUS", + "nomCommune": "BEDOUS" }, { - "codePostal": "76750", - "codeCommune": "76146", - "libelleAcheminement": "BUCHY", - "nomCommune": "BUCHY" + "codePostal": "65230", + "codeCommune": "65475", + "libelleAcheminement": "VILLEMUR", + "nomCommune": "VILLEMUR" }, { - "codePostal": "76410", - "codeCommune": "76705", - "libelleAcheminement": "TOURVILLE LA RIVIERE", - "nomCommune": "TOURVILLE LA RIVIERE" + "codePostal": "77620", + "codeCommune": "77168", + "libelleAcheminement": "EGREVILLE", + "nomCommune": "EGREVILLE" }, { - "codePostal": "70150", - "codeCommune": "70224", - "libelleAcheminement": "ETUZ", - "nomCommune": "ETUZ" + "codePostal": "25430", + "codeCommune": "25145", + "libelleAcheminement": "CHAZOT", + "nomCommune": "CHAZOT" }, { - "codePostal": "19340", - "codeCommune": "19141", - "libelleAcheminement": "MONESTIER MERLINES", - "nomCommune": "MONESTIER MERLINES" + "codePostal": "77570", + "codeCommune": "77271", + "libelleAcheminement": "MAISONCELLES EN GATINAIS", + "nomCommune": "MAISONCELLES EN GATINAIS" }, { - "codePostal": "76890", - "codeCommune": "76149", - "libelleAcheminement": "BUTOT", - "nomCommune": "BUTOT" + "codePostal": "64160", + "codeCommune": "64114", + "libelleAcheminement": "BERNADETS", + "nomCommune": "BERNADETS" }, { - "codePostal": "76111", - "codeCommune": "76726", - "libelleAcheminement": "VATTETOT SUR MER", - "nomCommune": "VATTETOT SUR MER" + "codePostal": "65200", + "codeCommune": "65479", + "libelleAcheminement": "VISKER", + "nomCommune": "VISKER" }, { - "codePostal": "70200", - "codeCommune": "70229", - "libelleAcheminement": "FAYMONT", - "nomCommune": "FAYMONT" + "codePostal": "77450", + "codeCommune": "77171", + "libelleAcheminement": "ESBLY", + "nomCommune": "ESBLY" }, { - "codePostal": "19210", - "codeCommune": "19144", - "libelleAcheminement": "MONTGIBAUD", - "nomCommune": "MONTGIBAUD" + "codePostal": "25320", + "codeCommune": "25147", + "libelleAcheminement": "CHEMAUDIN ET VAUX", + "nomCommune": "CHEMAUDIN ET VAUX" }, { - "codePostal": "76690", - "codeCommune": "76152", - "libelleAcheminement": "CAILLY", - "nomCommune": "CAILLY" + "codePostal": "77560", + "codeCommune": "77275", + "libelleAcheminement": "LES MARETS", + "nomCommune": "LES MARETS" }, { - "codePostal": "76680", - "codeCommune": "76733", - "libelleAcheminement": "VENTES ST REMY", - "nomCommune": "VENTES ST REMY" + "codePostal": "64130", + "codeCommune": "64115", + "libelleAcheminement": "BERROGAIN LARUNS", + "nomCommune": "BERROGAIN LARUNS" }, { - "codePostal": "70120", - "codeCommune": "70230", - "libelleAcheminement": "FEDRY", - "nomCommune": "FEDRY" + "codePostal": "66210", + "codeCommune": "66004", + "libelleAcheminement": "LES ANGLES", + "nomCommune": "LES ANGLES" }, { - "codePostal": "19160", - "codeCommune": "19148", - "libelleAcheminement": "NEUVIC", - "nomCommune": "NEUVIC" + "codePostal": "77139", + "codeCommune": "77173", + "libelleAcheminement": "ETREPILLY", + "nomCommune": "ETREPILLY" }, { - "codePostal": "76890", - "codeCommune": "76153", - "libelleAcheminement": "CALLEVILLE LES DEUX EGLISES", - "nomCommune": "CALLEVILLE LES DEUX EGLISES" + "codePostal": "25530", + "codeCommune": "25151", + "libelleAcheminement": "CHEVIGNEY LES VERCEL", + "nomCommune": "CHEVIGNEY LES VERCEL" }, { - "codePostal": "76280", - "codeCommune": "76734", - "libelleAcheminement": "VERGETOT", - "nomCommune": "VERGETOT" + "codePostal": "77130", + "codeCommune": "77279", + "libelleAcheminement": "MAROLLES SUR SEINE", + "nomCommune": "MAROLLES SUR SEINE" }, { - "codePostal": "70160", - "codeCommune": "70236", - "libelleAcheminement": "FLEUREY LES FAVERNEY", - "nomCommune": "FLEUREY LES FAVERNEY" + "codePostal": "64150", + "codeCommune": "64117", + "libelleAcheminement": "BESINGRAND", + "nomCommune": "BESINGRAND" }, { - "codePostal": "19500", - "codeCommune": "19150", - "libelleAcheminement": "NOAILHAC", - "nomCommune": "NOAILHAC" + "codePostal": "66110", + "codeCommune": "66018", + "libelleAcheminement": "LA BASTIDE", + "nomCommune": "LA BASTIDE" }, { - "codePostal": "76190", - "codeCommune": "76160", - "libelleAcheminement": "CARVILLE LA FOLLETIERE", - "nomCommune": "CARVILLE LA FOLLETIERE" + "codePostal": "77220", + "codeCommune": "77177", + "libelleAcheminement": "FAVIERES", + "nomCommune": "FAVIERES" }, { - "codePostal": "76450", - "codeCommune": "76736", - "libelleAcheminement": "VEULETTES SUR MER", - "nomCommune": "VEULETTES SUR MER" + "codePostal": "25440", + "codeCommune": "25154", + "libelleAcheminement": "CHOUZELOT", + "nomCommune": "CHOUZELOT" }, { - "codePostal": "70800", - "codeCommune": "70240", - "libelleAcheminement": "FONTAINE LES LUXEUIL", - "nomCommune": "FONTAINE LES LUXEUIL" + "codePostal": "77320", + "codeCommune": "77287", + "libelleAcheminement": "MEILLERAY", + "nomCommune": "MEILLERAY" }, { - "codePostal": "19410", - "codeCommune": "19154", - "libelleAcheminement": "ORGNAC SUR VEZERE", - "nomCommune": "ORGNAC SUR VEZERE" + "codePostal": "64120", + "codeCommune": "64120", + "libelleAcheminement": "BEYRIE SUR JOYEUSE", + "nomCommune": "BEYRIE SUR JOYEUSE" }, { - "codePostal": "76590", - "codeCommune": "76173", - "libelleAcheminement": "LA CHAUSSEE", - "nomCommune": "LA CHAUSSEE" + "codePostal": "66210", + "codeCommune": "66027", + "libelleAcheminement": "LA CABANASSE", + "nomCommune": "LA CABANASSE" }, { - "codePostal": "76160", - "codeCommune": "76740", - "libelleAcheminement": "LA VIEUX RUE", - "nomCommune": "LA VIEUX RUE" + "codePostal": "77167", + "codeCommune": "77178", + "libelleAcheminement": "FAY LES NEMOURS", + "nomCommune": "FAY LES NEMOURS" }, { - "codePostal": "70210", - "codeCommune": "70242", - "libelleAcheminement": "FONTENOIS LA VILLE", - "nomCommune": "FONTENOIS LA VILLE" + "codePostal": "25340", + "codeCommune": "25156", + "libelleAcheminement": "PAYS DE CLERVAL", + "nomCommune": "PAYS DE CLERVAL" }, { - "codePostal": "19300", - "codeCommune": "19159", - "libelleAcheminement": "PERET BEL AIR", - "nomCommune": "PERET BEL AIR" + "codePostal": "77000", + "codeCommune": "77288", + "libelleAcheminement": "MELUN", + "nomCommune": "MELUN" }, { - "codePostal": "76450", - "codeCommune": "76176", - "libelleAcheminement": "CLASVILLE", - "nomCommune": "CLASVILLE" + "codePostal": "64240", + "codeCommune": "64134", + "libelleAcheminement": "BONLOC", + "nomCommune": "BONLOC" }, { - "codePostal": "76360", - "codeCommune": "76743", - "libelleAcheminement": "VILLERS ECALLES", - "nomCommune": "VILLERS ECALLES" + "codePostal": "66300", + "codeCommune": "66029", + "libelleAcheminement": "CAIXAS", + "nomCommune": "CAIXAS" }, { - "codePostal": "70300", - "codeCommune": "70245", - "libelleAcheminement": "FOUGEROLLES ST VALBERT", - "nomCommune": "FOUGEROLLES ST VALBERT" + "codePostal": "77260", + "codeCommune": "77183", + "libelleAcheminement": "LA FERTE SOUS JOUARRE", + "nomCommune": "LA FERTE SOUS JOUARRE" }, { - "codePostal": "19170", - "codeCommune": "19160", - "libelleAcheminement": "PEROLS SUR VEZERE", - "nomCommune": "PEROLS SUR VEZERE" + "codePostal": "25300", + "codeCommune": "25157", + "libelleAcheminement": "LA CLUSE ET MIJOUX", + "nomCommune": "LA CLUSE ET MIJOUX" }, { - "codePostal": "76690", - "codeCommune": "76177", - "libelleAcheminement": "CLAVILLE MOTTEVILLE", - "nomCommune": "CLAVILLE MOTTEVILLE" + "codePostal": "77410", + "codeCommune": "77292", + "libelleAcheminement": "MESSY", + "nomCommune": "MESSY" }, { - "codePostal": "76640", - "codeCommune": "76751", - "libelleAcheminement": "YEBLERON", - "nomCommune": "YEBLERON" + "codePostal": "64510", + "codeCommune": "64138", + "libelleAcheminement": "BORDES", + "nomCommune": "BORDES" }, { - "codePostal": "70800", - "codeCommune": "70249", - "libelleAcheminement": "FRANCALMONT", - "nomCommune": "FRANCALMONT" + "codePostal": "66600", + "codeCommune": "66030", + "libelleAcheminement": "CALCE", + "nomCommune": "CALCE" }, { - "codePostal": "19120", - "codeCommune": "19170", - "libelleAcheminement": "QUEYSSAC LES VIGNES", - "nomCommune": "QUEYSSAC LES VIGNES" + "codePostal": "77300", + "codeCommune": "77186", + "libelleAcheminement": "FONTAINEBLEAU", + "nomCommune": "FONTAINEBLEAU" }, { - "codePostal": "76640", - "codeCommune": "76182", - "libelleAcheminement": "CLIPONVILLE", - "nomCommune": "CLIPONVILLE" + "codePostal": "25390", + "codeCommune": "25161", + "libelleAcheminement": "CONSOLATION MAISONNETTES", + "nomCommune": "CONSOLATION MAISONNETTES" }, { - "codePostal": "76540", - "codeCommune": "76755", - "libelleAcheminement": "YPREVILLE BIVILLE", - "nomCommune": "YPREVILLE BIVILLE" + "codePostal": "77570", + "codeCommune": "77297", + "libelleAcheminement": "MONDREVILLE", + "nomCommune": "MONDREVILLE" }, { - "codePostal": "70200", - "codeCommune": "70250", - "libelleAcheminement": "FRANCHEVELLE", - "nomCommune": "FRANCHEVELLE" + "codePostal": "64330", + "codeCommune": "64141", + "libelleAcheminement": "BOUEILH BOUEILHO LASQUE", + "nomCommune": "BOUEILH BOUEILHO LASQUE" }, { - "codePostal": "19220", - "codeCommune": "19173", - "libelleAcheminement": "RILHAC XAINTRIE", - "nomCommune": "RILHAC XAINTRIE" + "codePostal": "66500", + "codeCommune": "66034", + "libelleAcheminement": "CAMPOME", + "nomCommune": "CAMPOME" }, { - "codePostal": "76400", - "codeCommune": "76183", - "libelleAcheminement": "COLLEVILLE", - "nomCommune": "COLLEVILLE" + "codePostal": "77480", + "codeCommune": "77187", + "libelleAcheminement": "FONTAINE FOURCHES", + "nomCommune": "FONTAINE FOURCHES" }, { - "codePostal": "77760", - "codeCommune": "77001", - "libelleAcheminement": "ACHERES LA FORET", - "nomCommune": "ACHERES LA FORET" + "codePostal": "25440", + "codeCommune": "25185", + "libelleAcheminement": "CUSSEY SUR LISON", + "nomCommune": "CUSSEY SUR LISON" }, { - "codePostal": "70210", - "codeCommune": "70269", - "libelleAcheminement": "GIREFONTAINE", - "nomCommune": "GIREFONTAINE" + "codePostal": "77520", + "codeCommune": "77298", + "libelleAcheminement": "MONS EN MONTOIS", + "nomCommune": "MONS EN MONTOIS" }, { - "codePostal": "19160", - "codeCommune": "19175", - "libelleAcheminement": "ROCHE LE PEYROUX", - "nomCommune": "ROCHE LE PEYROUX" + "codePostal": "64240", + "codeCommune": "64147", + "libelleAcheminement": "BRISCOUS", + "nomCommune": "BRISCOUS" }, { - "codePostal": "76740", - "codeCommune": "76190", - "libelleAcheminement": "CRASVILLE LA ROCQUEFORT", - "nomCommune": "CRASVILLE LA ROCQUEFORT" + "codePostal": "66600", + "codeCommune": "66041", + "libelleAcheminement": "CASES DE PENE", + "nomCommune": "CASES DE PENE" }, { - "codePostal": "77760", - "codeCommune": "77003", - "libelleAcheminement": "AMPONVILLE", - "nomCommune": "AMPONVILLE" + "codePostal": "77320", + "codeCommune": "77197", + "libelleAcheminement": "FRETOY", + "nomCommune": "FRETOY" }, { - "codePostal": "70110", - "codeCommune": "70273", - "libelleAcheminement": "GRAMMONT", - "nomCommune": "GRAMMONT" + "codePostal": "25440", + "codeCommune": "25185", + "libelleAcheminement": "CUSSEY SUR LISON", + "nomCommune": "CUSSEY SUR LISON" }, { - "codePostal": "19500", - "codeCommune": "19179", - "libelleAcheminement": "SAILLAC", - "nomCommune": "SAILLAC" + "codePostal": "77470", + "codeCommune": "77300", + "libelleAcheminement": "MONTCEAUX LES MEAUX", + "nomCommune": "MONTCEAUX LES MEAUX" }, { - "codePostal": "76680", - "codeCommune": "76200", - "libelleAcheminement": "CRITOT", - "nomCommune": "CRITOT" + "codePostal": "64260", + "codeCommune": "64157", + "libelleAcheminement": "BUZY", + "nomCommune": "BUZY" }, { - "codePostal": "77390", - "codeCommune": "77004", - "libelleAcheminement": "ANDREZEL", - "nomCommune": "ANDREZEL" + "codePostal": "66720", + "codeCommune": "66042", + "libelleAcheminement": "CASSAGNES", + "nomCommune": "CASSAGNES" }, { - "codePostal": "70100", - "codeCommune": "70279", - "libelleAcheminement": "GRAY", - "nomCommune": "GRAY" + "codePostal": "77890", + "codeCommune": "77200", + "libelleAcheminement": "GARENTREVILLE", + "nomCommune": "GARENTREVILLE" }, { - "codePostal": "19390", - "codeCommune": "19181", - "libelleAcheminement": "ST AUGUSTIN", - "nomCommune": "ST AUGUSTIN" + "codePostal": "25870", + "codeCommune": "25186", + "libelleAcheminement": "CUSSEY SUR L OGNON", + "nomCommune": "CUSSEY SUR L OGNON" }, { - "codePostal": "76190", - "codeCommune": "76203", - "libelleAcheminement": "CROIX MARE", - "nomCommune": "CROIX MARE" + "codePostal": "77140", + "codeCommune": "77302", + "libelleAcheminement": "MONTCOURT FROMONVILLE", + "nomCommune": "MONTCOURT FROMONVILLE" }, { - "codePostal": "77560", - "codeCommune": "77012", - "libelleAcheminement": "AUGERS EN BRIE", - "nomCommune": "AUGERS EN BRIE" + "codePostal": "64160", + "codeCommune": "64167", + "libelleAcheminement": "CARRERE", + "nomCommune": "CARRERE" }, { - "codePostal": "70100", - "codeCommune": "70280", - "libelleAcheminement": "GRAY LA VILLE", - "nomCommune": "GRAY LA VILLE" + "codePostal": "66220", + "codeCommune": "66046", + "libelleAcheminement": "CAUDIES DE FENOUILLEDES", + "nomCommune": "CAUDIES DE FENOUILLEDES" }, { - "codePostal": "19130", - "codeCommune": "19182", - "libelleAcheminement": "ST AULAIRE", - "nomCommune": "ST AULAIRE" + "codePostal": "77165", + "codeCommune": "77205", + "libelleAcheminement": "GESVRES LE CHAPITRE", + "nomCommune": "GESVRES LE CHAPITRE" }, { - "codePostal": "76220", - "codeCommune": "76208", - "libelleAcheminement": "CUY ST FIACRE", - "nomCommune": "CUY ST FIACRE" + "codePostal": "25110", + "codeCommune": "25189", + "libelleAcheminement": "DAMMARTIN LES TEMPLIERS", + "nomCommune": "DAMMARTIN LES TEMPLIERS" }, { - "codePostal": "77210", - "codeCommune": "77014", - "libelleAcheminement": "AVON", - "nomCommune": "AVON" + "codePostal": "77320", + "codeCommune": "77303", + "libelleAcheminement": "MONTDAUPHIN", + "nomCommune": "MONTDAUPHIN" }, { - "codePostal": "70190", - "codeCommune": "70288", - "libelleAcheminement": "HYET", - "nomCommune": "HYET" + "codePostal": "64270", + "codeCommune": "64170", + "libelleAcheminement": "CASTAGNEDE", + "nomCommune": "CASTAGNEDE" }, { - "codePostal": "19380", - "codeCommune": "19186", - "libelleAcheminement": "ST BONNET ELVERT", - "nomCommune": "ST BONNET ELVERT" + "codePostal": "66400", + "codeCommune": "66049", + "libelleAcheminement": "CERET", + "nomCommune": "CERET" }, { - "codePostal": "76160", - "codeCommune": "76212", - "libelleAcheminement": "DARNETAL", - "nomCommune": "DARNETAL" + "codePostal": "77114", + "codeCommune": "77208", + "libelleAcheminement": "GOUAIX", + "nomCommune": "GOUAIX" }, { - "codePostal": "77390", - "codeCommune": "77029", - "libelleAcheminement": "BEAUVOIR", - "nomCommune": "BEAUVOIR" + "codePostal": "25450", + "codeCommune": "25193", + "libelleAcheminement": "DAMPRICHARD", + "nomCommune": "DAMPRICHARD" }, { - "codePostal": "70500", - "codeCommune": "70292", - "libelleAcheminement": "JUSSEY", - "nomCommune": "JUSSEY" + "codePostal": "77130", + "codeCommune": "77305", + "libelleAcheminement": "MONTEREAU FAULT YONNE", + "nomCommune": "MONTEREAU FAULT YONNE" }, { - "codePostal": "19220", - "codeCommune": "19193", - "libelleAcheminement": "ST CIRGUES LA LOUTRE", - "nomCommune": "ST CIRGUES LA LOUTRE" + "codePostal": "64190", + "codeCommune": "64178", + "libelleAcheminement": "CASTETNAU CAMBLONG", + "nomCommune": "CASTETNAU CAMBLONG" }, { - "codePostal": "76250", - "codeCommune": "76216", - "libelleAcheminement": "DEVILLE LES ROUEN", - "nomCommune": "DEVILLE LES ROUEN" + "codePostal": "66530", + "codeCommune": "66050", + "libelleAcheminement": "CLAIRA", + "nomCommune": "CLAIRA" }, { - "codePostal": "77970", - "codeCommune": "77036", - "libelleAcheminement": "BOISDON", - "nomCommune": "BOISDON" + "codePostal": "77400", + "codeCommune": "77209", + "libelleAcheminement": "GOUVERNES", + "nomCommune": "GOUVERNES" }, { - "codePostal": "70500", - "codeCommune": "70293", - "libelleAcheminement": "LAMBREY", - "nomCommune": "LAMBREY" + "codePostal": "25750", + "codeCommune": "25198", + "libelleAcheminement": "DESANDANS", + "nomCommune": "DESANDANS" }, { - "codePostal": "19130", - "codeCommune": "19195", - "libelleAcheminement": "ST CYPRIEN", - "nomCommune": "ST CYPRIEN" + "codePostal": "77450", + "codeCommune": "77315", + "libelleAcheminement": "MONTRY", + "nomCommune": "MONTRY" }, { - "codePostal": "76480", - "codeCommune": "76222", - "libelleAcheminement": "DUCLAIR", - "nomCommune": "DUCLAIR" + "codePostal": "64490", + "codeCommune": "64185", + "libelleAcheminement": "CETTE EYGUN", + "nomCommune": "CETTE EYGUN" }, { - "codePostal": "77169", - "codeCommune": "77042", - "libelleAcheminement": "BOISSY LE CHATEL", - "nomCommune": "BOISSY LE CHATEL" + "codePostal": "66500", + "codeCommune": "66052", + "libelleAcheminement": "CODALET", + "nomCommune": "CODALET" }, { - "codePostal": "70600", - "codeCommune": "70297", - "libelleAcheminement": "LARRET", - "nomCommune": "LARRET" + "codePostal": "77118", + "codeCommune": "77212", + "libelleAcheminement": "GRAVON", + "nomCommune": "GRAVON" }, { - "codePostal": "19130", - "codeCommune": "19196", - "libelleAcheminement": "ST CYR LA ROCHE", - "nomCommune": "ST CYR LA ROCHE" + "codePostal": "25510", + "codeCommune": "25203", + "libelleAcheminement": "DOMPREL", + "nomCommune": "DOMPREL" }, { - "codePostal": "76970", - "codeCommune": "76228", - "libelleAcheminement": "ECTOT LES BAONS", - "nomCommune": "ECTOT LES BAONS" + "codePostal": "77250", + "codeCommune": "77316", + "libelleAcheminement": "MORET LOING ET ORVANNE", + "nomCommune": "MORET LOING ET ORVANNE" }, { - "codePostal": "77750", - "codeCommune": "77043", - "libelleAcheminement": "BOITRON", - "nomCommune": "BOITRON" + "codePostal": "64190", + "codeCommune": "64201", + "libelleAcheminement": "DOGNEN", + "nomCommune": "DOGNEN" }, { - "codePostal": "70120", - "codeCommune": "70298", - "libelleAcheminement": "LAVIGNEY", - "nomCommune": "LAVIGNEY" + "codePostal": "66820", + "codeCommune": "66057", + "libelleAcheminement": "CORNEILLA DE CONFLENT", + "nomCommune": "CORNEILLA DE CONFLENT" }, { - "codePostal": "19210", - "codeCommune": "19198", - "libelleAcheminement": "ST ELOY LES TUILERIES", - "nomCommune": "ST ELOY LES TUILERIES" + "codePostal": "77760", + "codeCommune": "77220", + "libelleAcheminement": "GUERCHEVILLE", + "nomCommune": "GUERCHEVILLE" }, { - "codePostal": "76480", - "codeCommune": "76237", - "libelleAcheminement": "EPINAY SUR DUCLAIR", - "nomCommune": "EPINAY SUR DUCLAIR" + "codePostal": "25300", + "codeCommune": "25204", + "libelleAcheminement": "DOUBS", + "nomCommune": "DOUBS" }, { - "codePostal": "77780", - "codeCommune": "77048", - "libelleAcheminement": "BOURRON MARLOTTE", - "nomCommune": "BOURRON MARLOTTE" + "codePostal": "77250", + "codeCommune": "77316", + "libelleAcheminement": "MORET LOING ET ORVANNE", + "nomCommune": "MORET LOING ET ORVANNE" }, { - "codePostal": "70190", - "codeCommune": "70301", - "libelleAcheminement": "LIEFFRANS", - "nomCommune": "LIEFFRANS" + "codePostal": "64440", + "codeCommune": "64204", + "libelleAcheminement": "EAUX BONNES", + "nomCommune": "EAUX BONNES" }, { - "codePostal": "19200", - "codeCommune": "19199", - "libelleAcheminement": "ST ETIENNE AUX CLOS", - "nomCommune": "ST ETIENNE AUX CLOS" + "codePostal": "66150", + "codeCommune": "66060", + "libelleAcheminement": "CORSAVY", + "nomCommune": "CORSAVY" }, { - "codePostal": "76400", - "codeCommune": "76240", - "libelleAcheminement": "EPREVILLE", - "nomCommune": "EPREVILLE" + "codePostal": "77520", + "codeCommune": "77223", + "libelleAcheminement": "GURCY LE CHATEL", + "nomCommune": "GURCY LE CHATEL" }, { - "codePostal": "77480", - "codeCommune": "77051", - "libelleAcheminement": "BRAY SUR SEINE", - "nomCommune": "BRAY SUR SEINE" + "codePostal": "25440", + "codeCommune": "25209", + "libelleAcheminement": "ECHAY", + "nomCommune": "ECHAY" }, { - "codePostal": "70150", - "codeCommune": "70334", - "libelleAcheminement": "MARNAY", - "nomCommune": "MARNAY" + "codePostal": "77250", + "codeCommune": "77316", + "libelleAcheminement": "MORET LOING ET ORVANNE", + "nomCommune": "MORET LOING ET ORVANNE" }, { - "codePostal": "19200", - "codeCommune": "19201", - "libelleAcheminement": "ST EXUPERY LES ROCHES", - "nomCommune": "ST EXUPERY LES ROCHES" + "codePostal": "64490", + "codeCommune": "64206", + "libelleAcheminement": "ESCOT", + "nomCommune": "ESCOT" }, { - "codePostal": "76750", - "codeCommune": "76243", - "libelleAcheminement": "ERNEMONT SUR BUCHY", - "nomCommune": "ERNEMONT SUR BUCHY" + "codePostal": "66260", + "codeCommune": "66061", + "libelleAcheminement": "COUSTOUGES", + "nomCommune": "COUSTOUGES" }, { - "codePostal": "77940", - "codeCommune": "77054", - "libelleAcheminement": "LA BROSSE MONTCEAUX", - "nomCommune": "LA BROSSE MONTCEAUX" + "codePostal": "77520", + "codeCommune": "77223", + "libelleAcheminement": "GURCY LE CHATEL", + "nomCommune": "GURCY LE CHATEL" }, { - "codePostal": "70400", - "codeCommune": "70347", - "libelleAcheminement": "MIGNAVILLERS", - "nomCommune": "MIGNAVILLERS" + "codePostal": "25800", + "codeCommune": "25219", + "libelleAcheminement": "EPENOY", + "nomCommune": "EPENOY" }, { - "codePostal": "19550", - "codeCommune": "19208", - "libelleAcheminement": "ST HILAIRE FOISSAC", - "nomCommune": "ST HILAIRE FOISSAC" + "codePostal": "77160", + "codeCommune": "77319", + "libelleAcheminement": "MORTERY", + "nomCommune": "MORTERY" }, { - "codePostal": "76790", - "codeCommune": "76254", - "libelleAcheminement": "ETRETAT", - "nomCommune": "ETRETAT" + "codePostal": "64250", + "codeCommune": "64213", + "libelleAcheminement": "ESPELETTE", + "nomCommune": "ESPELETTE" }, { - "codePostal": "77177", - "codeCommune": "77055", - "libelleAcheminement": "BROU SUR CHANTEREINE", - "nomCommune": "BROU SUR CHANTEREINE" + "codePostal": "66600", + "codeCommune": "66069", + "libelleAcheminement": "ESPIRA DE L AGLY", + "nomCommune": "ESPIRA DE L AGLY" }, { - "codePostal": "70110", - "codeCommune": "70349", - "libelleAcheminement": "MOIMAY", - "nomCommune": "MOIMAY" + "codePostal": "77515", + "codeCommune": "77224", + "libelleAcheminement": "HAUTEFEUILLE", + "nomCommune": "HAUTEFEUILLE" }, { - "codePostal": "19160", - "codeCommune": "19210", - "libelleAcheminement": "ST HILAIRE LUC", - "nomCommune": "ST HILAIRE LUC" + "codePostal": "25290", + "codeCommune": "25220", + "libelleAcheminement": "EPEUGNEY", + "nomCommune": "EPEUGNEY" }, { - "codePostal": "76640", - "codeCommune": "76258", - "libelleAcheminement": "TERRES DE CAUX", - "nomCommune": "TERRES DE CAUX" + "codePostal": "77710", + "codeCommune": "77329", + "libelleAcheminement": "NANTEAU SUR LUNAIN", + "nomCommune": "NANTEAU SUR LUNAIN" }, { - "codePostal": "77130", - "codeCommune": "77061", - "libelleAcheminement": "CANNES ECLUSE", - "nomCommune": "CANNES ECLUSE" + "codePostal": "64290", + "codeCommune": "64219", + "libelleAcheminement": "ESTIALESCQ", + "nomCommune": "ESTIALESCQ" }, { - "codePostal": "70120", - "codeCommune": "70350", - "libelleAcheminement": "MOLAY", - "nomCommune": "MOLAY" + "codePostal": "66320", + "codeCommune": "66070", + "libelleAcheminement": "ESPIRA DE CONFLENT", + "nomCommune": "ESPIRA DE CONFLENT" }, { - "codePostal": "19400", - "codeCommune": "19212", - "libelleAcheminement": "ST HILAIRE TAURIEUX", - "nomCommune": "ST HILAIRE TAURIEUX" + "codePostal": "77580", + "codeCommune": "77225", + "libelleAcheminement": "LA HAUTE MAISON", + "nomCommune": "LA HAUTE MAISON" }, { - "codePostal": "76400", - "codeCommune": "76259", - "libelleAcheminement": "FECAMP", - "nomCommune": "FECAMP" + "codePostal": "25580", + "codeCommune": "25222", + "libelleAcheminement": "ETALANS", + "nomCommune": "ETALANS" }, { - "codePostal": "77515", - "codeCommune": "77063", - "libelleAcheminement": "LA CELLE SUR MORIN", - "nomCommune": "LA CELLE SUR MORIN" + "codePostal": "77830", + "codeCommune": "77354", + "libelleAcheminement": "PAMFOU", + "nomCommune": "PAMFOU" }, { - "codePostal": "70230", - "codeCommune": "70357", - "libelleAcheminement": "MONTBOZON", - "nomCommune": "MONTBOZON" + "codePostal": "64400", + "codeCommune": "64220", + "libelleAcheminement": "ESTOS", + "nomCommune": "ESTOS" }, { - "codePostal": "19700", - "codeCommune": "19213", - "libelleAcheminement": "ST JAL", - "nomCommune": "ST JAL" + "codePostal": "66820", + "codeCommune": "66085", + "libelleAcheminement": "FUILLA", + "nomCommune": "FUILLA" }, { - "codePostal": "76280", - "codeCommune": "76268", - "libelleAcheminement": "FONGUEUSEMARE", - "nomCommune": "FONGUEUSEMARE" + "codePostal": "77850", + "codeCommune": "77226", + "libelleAcheminement": "HERICY", + "nomCommune": "HERICY" }, { - "codePostal": "77650", - "codeCommune": "77076", - "libelleAcheminement": "CHALMAISON", - "nomCommune": "CHALMAISON" + "codePostal": "25330", + "codeCommune": "25223", + "libelleAcheminement": "ETERNOZ", + "nomCommune": "ETERNOZ" }, { - "codePostal": "70500", - "codeCommune": "70362", - "libelleAcheminement": "MONTIGNY LES CHERLIEU", - "nomCommune": "MONTIGNY LES CHERLIEU" + "codePostal": "77930", + "codeCommune": "77359", + "libelleAcheminement": "PERTHES", + "nomCommune": "PERTHES" }, { - "codePostal": "19150", - "codeCommune": "19220", - "libelleAcheminement": "ST MARTIAL DE GIMEL", - "nomCommune": "ST MARTIAL DE GIMEL" + "codePostal": "64120", + "codeCommune": "64221", + "libelleAcheminement": "ETCHARRY", + "nomCommune": "ETCHARRY" }, { - "codePostal": "76690", - "codeCommune": "76271", - "libelleAcheminement": "FONTAINE LE BOURG", - "nomCommune": "FONTAINE LE BOURG" + "codePostal": "66320", + "codeCommune": "66086", + "libelleAcheminement": "GLORIANES", + "nomCommune": "GLORIANES" }, { - "codePostal": "77560", - "codeCommune": "77080", - "libelleAcheminement": "CHAMPCENEST", - "nomCommune": "CHAMPCENEST" + "codePostal": "77610", + "codeCommune": "77229", + "libelleAcheminement": "LA HOUSSAYE EN BRIE", + "nomCommune": "LA HOUSSAYE EN BRIE" }, { - "codePostal": "70120", - "codeCommune": "70373", - "libelleAcheminement": "LA ROCHE MOREY", - "nomCommune": "LA ROCHE MOREY" + "codePostal": "25260", + "codeCommune": "25224", + "libelleAcheminement": "ETOUVANS", + "nomCommune": "ETOUVANS" }, { - "codePostal": "19210", - "codeCommune": "19223", - "libelleAcheminement": "ST MARTIN SEPERT", - "nomCommune": "ST MARTIN SEPERT" + "codePostal": "77540", + "codeCommune": "77365", + "libelleAcheminement": "LE PLESSIS FEU AUSSOUX", + "nomCommune": "LE PLESSIS FEU AUSSOUX" }, { - "codePostal": "76890", - "codeCommune": "76274", - "libelleAcheminement": "LA FONTELAYE", - "nomCommune": "LA FONTELAYE" + "codePostal": "64160", + "codeCommune": "64227", + "libelleAcheminement": "GABASTON", + "nomCommune": "GABASTON" }, { - "codePostal": "77720", - "codeCommune": "77082", - "libelleAcheminement": "CHAMPEAUX", - "nomCommune": "CHAMPEAUX" + "codePostal": "66720", + "codeCommune": "66092", + "libelleAcheminement": "LANSAC", + "nomCommune": "LANSAC" }, { - "codePostal": "70700", - "codeCommune": "70393", - "libelleAcheminement": "OISELAY ET GRACHAUX", - "nomCommune": "OISELAY ET GRACHAUX" + "codePostal": "77890", + "codeCommune": "77230", + "libelleAcheminement": "ICHY", + "nomCommune": "ICHY" }, { - "codePostal": "19320", - "codeCommune": "19225", - "libelleAcheminement": "ST MERD DE LAPLEAU", - "nomCommune": "ST MERD DE LAPLEAU" + "codePostal": "25250", + "codeCommune": "25226", + "libelleAcheminement": "ETRAPPE", + "nomCommune": "ETRAPPE" }, { - "codePostal": "76340", - "codeCommune": "76278", - "libelleAcheminement": "FOUCARMONT", - "nomCommune": "FOUCARMONT" + "codePostal": "77160", + "codeCommune": "77368", + "libelleAcheminement": "POIGNY", + "nomCommune": "POIGNY" }, { - "codePostal": "77420", - "codeCommune": "77083", - "libelleAcheminement": "CHAMPS SUR MARNE", - "nomCommune": "CHAMPS SUR MARNE" + "codePostal": "64120", + "codeCommune": "64228", + "libelleAcheminement": "GABAT", + "nomCommune": "GABAT" }, { - "codePostal": "70110", - "codeCommune": "70396", - "libelleAcheminement": "ORICOURT", - "nomCommune": "ORICOURT" + "codePostal": "66800", + "codeCommune": "66100", + "libelleAcheminement": "LLO", + "nomCommune": "LLO" }, { - "codePostal": "19210", - "codeCommune": "19230", - "libelleAcheminement": "ST PARDOUX CORBIER", - "nomCommune": "ST PARDOUX CORBIER" + "codePostal": "77450", + "codeCommune": "77234", + "libelleAcheminement": "JABLINES", + "nomCommune": "JABLINES" }, { - "codePostal": "76660", - "codeCommune": "76280", - "libelleAcheminement": "FREAUVILLE", - "nomCommune": "FREAUVILLE" + "codePostal": "25250", + "codeCommune": "25232", + "libelleAcheminement": "FAIMBE", + "nomCommune": "FAIMBE" }, { - "codePostal": "77370", - "codeCommune": "77089", - "libelleAcheminement": "LA CHAPELLE RABLAIS", - "nomCommune": "LA CHAPELLE RABLAIS" + "codePostal": "77470", + "codeCommune": "77369", + "libelleAcheminement": "POINCY", + "nomCommune": "POINCY" }, { - "codePostal": "70500", - "codeCommune": "70400", - "libelleAcheminement": "OUGE", - "nomCommune": "OUGE" + "codePostal": "64400", + "codeCommune": "64241", + "libelleAcheminement": "GERONCE", + "nomCommune": "GERONCE" }, { - "codePostal": "19800", - "codeCommune": "19236", - "libelleAcheminement": "ST PRIEST DE GIMEL", - "nomCommune": "ST PRIEST DE GIMEL" + "codePostal": "66480", + "codeCommune": "66106", + "libelleAcheminement": "MAUREILLAS LAS ILLAS", + "nomCommune": "MAUREILLAS LAS ILLAS" }, { - "codePostal": "76270", - "codeCommune": "76283", - "libelleAcheminement": "FRESLES", - "nomCommune": "FRESLES" + "codePostal": "77970", + "codeCommune": "77239", + "libelleAcheminement": "JOUY LE CHATEL", + "nomCommune": "JOUY LE CHATEL" }, { - "codePostal": "77610", - "codeCommune": "77091", - "libelleAcheminement": "LES CHAPELLES BOURBON", - "nomCommune": "LES CHAPELLES BOURBON" + "codePostal": "25490", + "codeCommune": "25237", + "libelleAcheminement": "FESCHES LE CHATEL", + "nomCommune": "FESCHES LE CHATEL" }, { - "codePostal": "70600", - "codeCommune": "70409", - "libelleAcheminement": "PIERRECOURT", - "nomCommune": "PIERRECOURT" + "codePostal": "77167", + "codeCommune": "77370", + "libelleAcheminement": "POLIGNY", + "nomCommune": "POLIGNY" }, { - "codePostal": "19310", - "codeCommune": "19239", - "libelleAcheminement": "ST ROBERT", - "nomCommune": "ST ROBERT" + "codePostal": "64520", + "codeCommune": "64250", + "libelleAcheminement": "GUICHE", + "nomCommune": "GUICHE" }, { - "codePostal": "76520", - "codeCommune": "76285", - "libelleAcheminement": "FRESNE LE PLAN", - "nomCommune": "FRESNE LE PLAN" + "codePostal": "66300", + "codeCommune": "66112", + "libelleAcheminement": "MONTAURIOL", + "nomCommune": "MONTAURIOL" }, { "codePostal": "77320", - "codeCommune": "77093", - "libelleAcheminement": "LA CHAPELLE MOUTILS", - "nomCommune": "LA CHAPELLE MOUTILS" + "codeCommune": "77240", + "libelleAcheminement": "JOUY SUR MORIN", + "nomCommune": "JOUY SUR MORIN" }, { - "codePostal": "70800", - "codeCommune": "70411", - "libelleAcheminement": "LA PISSEURE", - "nomCommune": "LA PISSEURE" + "codePostal": "25470", + "codeCommune": "25238", + "libelleAcheminement": "FESSEVILLERS", + "nomCommune": "FESSEVILLERS" }, { - "codePostal": "19130", - "codeCommune": "19242", - "libelleAcheminement": "ST SOLVE", - "nomCommune": "ST SOLVE" + "codePostal": "77135", + "codeCommune": "77374", + "libelleAcheminement": "PONTCARRE", + "nomCommune": "PONTCARRE" }, { - "codePostal": "76660", - "codeCommune": "76286", - "libelleAcheminement": "FRESNOY FOLNY", - "nomCommune": "FRESNOY FOLNY" + "codePostal": "64190", + "codeCommune": "64253", + "libelleAcheminement": "GURS", + "nomCommune": "GURS" }, { - "codePostal": "77410", - "codeCommune": "77094", - "libelleAcheminement": "CHARMENTRAY", - "nomCommune": "CHARMENTRAY" + "codePostal": "66150", + "codeCommune": "66116", + "libelleAcheminement": "MONTFERRER", + "nomCommune": "MONTFERRER" }, { - "codePostal": "70360", - "codeCommune": "70417", - "libelleAcheminement": "PONTCEY", - "nomCommune": "PONTCEY" + "codePostal": "77760", + "codeCommune": "77244", + "libelleAcheminement": "LARCHANT", + "nomCommune": "LARCHANT" }, { - "codePostal": "19430", - "codeCommune": "19259", - "libelleAcheminement": "SEXCLES", - "nomCommune": "SEXCLES" + "codePostal": "25720", + "codeCommune": "25245", + "libelleAcheminement": "FONTAIN", + "nomCommune": "FONTAIN" }, { - "codePostal": "76190", - "codeCommune": "76289", - "libelleAcheminement": "ST MARTIN DE L IF", - "nomCommune": "ST MARTIN DE L IF" + "codePostal": "77160", + "codeCommune": "77379", + "libelleAcheminement": "PROVINS", + "nomCommune": "PROVINS" }, { - "codePostal": "77570", - "codeCommune": "77099", - "libelleAcheminement": "CHATEAU LANDON", - "nomCommune": "CHATEAU LANDON" + "codePostal": "64700", + "codeCommune": "64260", + "libelleAcheminement": "HENDAYE", + "nomCommune": "HENDAYE" }, { - "codePostal": "70130", - "codeCommune": "70418", - "libelleAcheminement": "LA ROMAINE", - "nomCommune": "LA ROMAINE" + "codePostal": "66340", + "codeCommune": "66120", + "libelleAcheminement": "NAHUJA", + "nomCommune": "NAHUJA" }, { - "codePostal": "19120", - "codeCommune": "19260", - "libelleAcheminement": "SIONIAC", - "nomCommune": "SIONIAC" + "codePostal": "77150", + "codeCommune": "77249", + "libelleAcheminement": "LESIGNY", + "nomCommune": "LESIGNY" }, { - "codePostal": "76560", - "codeCommune": "76293", - "libelleAcheminement": "FULTOT", - "nomCommune": "FULTOT" + "codePostal": "25340", + "codeCommune": "25247", + "libelleAcheminement": "FONTENELLE MONTBY", + "nomCommune": "FONTENELLE MONTBY" }, { - "codePostal": "77820", - "codeCommune": "77103", - "libelleAcheminement": "CHATILLON LA BORDE", - "nomCommune": "CHATILLON LA BORDE" + "codePostal": "77550", + "codeCommune": "77384", + "libelleAcheminement": "REAU", + "nomCommune": "REAU" }, { - "codePostal": "70210", - "codeCommune": "70419", - "libelleAcheminement": "PONT DU BOIS", - "nomCommune": "PONT DU BOIS" + "codePostal": "64130", + "codeCommune": "64264", + "libelleAcheminement": "L HOPITAL ST BLAISE", + "nomCommune": "L HOPITAL ST BLAISE" }, { - "codePostal": "19550", - "codeCommune": "19264", - "libelleAcheminement": "SOURSAC", - "nomCommune": "SOURSAC" + "codePostal": "66170", + "codeCommune": "66121", + "libelleAcheminement": "NEFIACH", + "nomCommune": "NEFIACH" }, { - "codePostal": "76220", - "codeCommune": "76297", - "libelleAcheminement": "GANCOURT ST ETIENNE", - "nomCommune": "GANCOURT ST ETIENNE" + "codePostal": "77230", + "codeCommune": "77259", + "libelleAcheminement": "LONGPERRIER", + "nomCommune": "LONGPERRIER" }, { - "codePostal": "77610", - "codeCommune": "77104", - "libelleAcheminement": "CHATRES", - "nomCommune": "CHATRES" + "codePostal": "25110", + "codeCommune": "25249", + "libelleAcheminement": "FONTENOTTE", + "nomCommune": "FONTENOTTE" }, { - "codePostal": "70170", - "codeCommune": "70426", - "libelleAcheminement": "PROVENCHERE", - "nomCommune": "PROVENCHERE" + "codePostal": "77710", + "codeCommune": "77387", + "libelleAcheminement": "REMAUVILLE", + "nomCommune": "REMAUVILLE" }, { - "codePostal": "19120", - "codeCommune": "19271", - "libelleAcheminement": "TUDEILS", - "nomCommune": "TUDEILS" + "codePostal": "64120", + "codeCommune": "64267", + "libelleAcheminement": "IBARROLLE", + "nomCommune": "IBARROLLE" }, { - "codePostal": "76110", - "codeCommune": "76302", - "libelleAcheminement": "GODERVILLE", - "nomCommune": "GODERVILLE" + "codePostal": "66120", + "codeCommune": "66124", + "libelleAcheminement": "FONT ROMEU ODEILLO VIA", + "nomCommune": "FONT ROMEU ODEILLO VIA" }, { - "codePostal": "77500", - "codeCommune": "77108", - "libelleAcheminement": "CHELLES", - "nomCommune": "CHELLES" + "codePostal": "77570", + "codeCommune": "77267", + "libelleAcheminement": "LA MADELEINE SUR LOING", + "nomCommune": "LA MADELEINE SUR LOING" }, { - "codePostal": "70200", - "codeCommune": "70432", - "libelleAcheminement": "QUERS", - "nomCommune": "QUERS" + "codePostal": "25300", + "codeCommune": "25254", + "libelleAcheminement": "LES FOURGS", + "nomCommune": "LES FOURGS" }, { - "codePostal": "19200", - "codeCommune": "19275", - "libelleAcheminement": "USSEL", - "nomCommune": "USSEL" + "codePostal": "77260", + "codeCommune": "77388", + "libelleAcheminement": "REUIL EN BRIE", + "nomCommune": "REUIL EN BRIE" }, { - "codePostal": "76730", - "codeCommune": "76306", - "libelleAcheminement": "GONNETOT", - "nomCommune": "GONNETOT" + "codePostal": "64320", + "codeCommune": "64269", + "libelleAcheminement": "IDRON", + "nomCommune": "IDRON" }, { - "codePostal": "77173", - "codeCommune": "77114", - "libelleAcheminement": "CHEVRY COSSIGNY", - "nomCommune": "CHEVRY COSSIGNY" + "codePostal": "66560", + "codeCommune": "66129", + "libelleAcheminement": "ORTAFFA", + "nomCommune": "ORTAFFA" }, { - "codePostal": "70500", - "codeCommune": "70436", - "libelleAcheminement": "RAINCOURT", - "nomCommune": "RAINCOURT" + "codePostal": "77610", + "codeCommune": "77277", + "libelleAcheminement": "MARLES EN BRIE", + "nomCommune": "MARLES EN BRIE" }, { - "codePostal": "19200", - "codeCommune": "19277", - "libelleAcheminement": "VALIERGUES", - "nomCommune": "VALIERGUES" + "codePostal": "25170", + "codeCommune": "25257", + "libelleAcheminement": "FRANEY", + "nomCommune": "FRANEY" }, { - "codePostal": "76590", - "codeCommune": "76308", - "libelleAcheminement": "GONNEVILLE SUR SCIE", - "nomCommune": "GONNEVILLE SUR SCIE" + "codePostal": "77320", + "codeCommune": "77402", + "libelleAcheminement": "ST BARTHELEMY", + "nomCommune": "ST BARTHELEMY" }, { - "codePostal": "77320", - "codeCommune": "77116", - "libelleAcheminement": "CHOISY EN BRIE", - "nomCommune": "CHOISY EN BRIE" + "codePostal": "64780", + "codeCommune": "64273", + "libelleAcheminement": "IRISSARRY", + "nomCommune": "IRISSARRY" }, { - "codePostal": "70190", - "codeCommune": "70447", - "libelleAcheminement": "RIOZ", - "nomCommune": "RIOZ" + "codePostal": "66340", + "codeCommune": "66130", + "libelleAcheminement": "OSSEJA", + "nomCommune": "OSSEJA" }, { - "codePostal": "19130", - "codeCommune": "19286", - "libelleAcheminement": "VIGNOLS", - "nomCommune": "VIGNOLS" + "codePostal": "77100", + "codeCommune": "77284", + "libelleAcheminement": "MEAUX", + "nomCommune": "MEAUX" }, { - "codePostal": "76560", - "codeCommune": "76309", - "libelleAcheminement": "GONZEVILLE", - "nomCommune": "GONZEVILLE" + "codePostal": "25270", + "codeCommune": "25270", + "libelleAcheminement": "GEVRESIN", + "nomCommune": "GEVRESIN" }, { - "codePostal": "77290", - "codeCommune": "77123", - "libelleAcheminement": "COMPANS", - "nomCommune": "COMPANS" + "codePostal": "77160", + "codeCommune": "77403", + "libelleAcheminement": "ST BRICE", + "nomCommune": "ST BRICE" }, { - "codePostal": "70310", - "codeCommune": "70453", - "libelleAcheminement": "LA ROSIERE", - "nomCommune": "LA ROSIERE" + "codePostal": "64220", + "codeCommune": "64275", + "libelleAcheminement": "ISPOURE", + "nomCommune": "ISPOURE" }, { - "codePostal": "19800", - "codeCommune": "19287", - "libelleAcheminement": "VITRAC SUR MONTANE", - "nomCommune": "VITRAC SUR MONTANE" + "codePostal": "66300", + "codeCommune": "66134", + "libelleAcheminement": "PASSA", + "nomCommune": "PASSA" }, { - "codePostal": "76430", - "codeCommune": "76314", - "libelleAcheminement": "GRAIMBOUVILLE", - "nomCommune": "GRAIMBOUVILLE" + "codePostal": "77171", + "codeCommune": "77289", + "libelleAcheminement": "MELZ SUR SEINE", + "nomCommune": "MELZ SUR SEINE" }, { - "codePostal": "77600", - "codeCommune": "77124", - "libelleAcheminement": "CONCHES SUR GONDOIRE", - "nomCommune": "CONCHES SUR GONDOIRE" + "codePostal": "25360", + "codeCommune": "25273", + "libelleAcheminement": "GLAMONDANS", + "nomCommune": "GLAMONDANS" }, { - "codePostal": "70500", - "codeCommune": "70454", - "libelleAcheminement": "ROSIERES SUR MANCE", - "nomCommune": "ROSIERES SUR MANCE" + "codePostal": "77650", + "codeCommune": "77404", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "21110", - "codeCommune": "21005", - "libelleAcheminement": "AISEREY", - "nomCommune": "AISEREY" + "codePostal": "64480", + "codeCommune": "64282", + "libelleAcheminement": "JATXOU", + "nomCommune": "JATXOU" }, { - "codePostal": "76170", - "codeCommune": "76318", - "libelleAcheminement": "GRAND CAMP", - "nomCommune": "GRAND CAMP" + "codePostal": "66600", + "codeCommune": "66138", + "libelleAcheminement": "PEYRESTORTES", + "nomCommune": "PEYRESTORTES" }, { - "codePostal": "77860", - "codeCommune": "77128", - "libelleAcheminement": "COUILLY PONT AUX DAMES", - "nomCommune": "COUILLY PONT AUX DAMES" + "codePostal": "77122", + "codeCommune": "77309", + "libelleAcheminement": "MONTHYON", + "nomCommune": "MONTHYON" }, { - "codePostal": "70280", - "codeCommune": "70460", - "libelleAcheminement": "ST BRESSON", - "nomCommune": "ST BRESSON" + "codePostal": "25360", + "codeCommune": "25278", + "libelleAcheminement": "GONSANS", + "nomCommune": "GONSANS" }, { - "codePostal": "21390", - "codeCommune": "21007", - "libelleAcheminement": "AISY SOUS THIL", - "nomCommune": "AISY SOUS THIL" + "codePostal": "77510", + "codeCommune": "77406", + "libelleAcheminement": "ST DENIS LES REBAIS", + "nomCommune": "ST DENIS LES REBAIS" }, { - "codePostal": "76530", - "codeCommune": "76319", - "libelleAcheminement": "GRAND COURONNE", - "nomCommune": "GRAND COURONNE" + "codePostal": "64390", + "codeCommune": "64287", + "libelleAcheminement": "LAAS", + "nomCommune": "LAAS" }, { - "codePostal": "77183", - "codeCommune": "77146", - "libelleAcheminement": "CROISSY BEAUBOURG", - "nomCommune": "CROISSY BEAUBOURG" + "codePostal": "66450", + "codeCommune": "66144", + "libelleAcheminement": "POLLESTRES", + "nomCommune": "POLLESTRES" }, { - "codePostal": "70110", - "codeCommune": "70474", - "libelleAcheminement": "ST SULPICE", - "nomCommune": "ST SULPICE" + "codePostal": "77250", + "codeCommune": "77316", + "libelleAcheminement": "MORET LOING ET ORVANNE", + "nomCommune": "MORET LOING ET ORVANNE" }, { - "codePostal": "21420", - "codeCommune": "21010", - "libelleAcheminement": "ALOXE CORTON", - "nomCommune": "ALOXE CORTON" + "codePostal": "25470", + "codeCommune": "25280", + "libelleAcheminement": "GOUMOIS", + "nomCommune": "GOUMOIS" }, { - "codePostal": "76210", - "codeCommune": "76329", - "libelleAcheminement": "GRUCHET LE VALASSE", - "nomCommune": "GRUCHET LE VALASSE" + "codePostal": "77470", + "codeCommune": "77408", + "libelleAcheminement": "ST FIACRE", + "nomCommune": "ST FIACRE" }, { - "codePostal": "77183", - "codeCommune": "77146", - "libelleAcheminement": "CROISSY BEAUBOURG", - "nomCommune": "CROISSY BEAUBOURG" + "codePostal": "64170", + "codeCommune": "64290", + "libelleAcheminement": "LABASTIDE MONREJEAU", + "nomCommune": "LABASTIDE MONREJEAU" }, { - "codePostal": "70440", - "codeCommune": "70489", - "libelleAcheminement": "SERVANCE MIELLIN", - "nomCommune": "SERVANCE MIELLIN" + "codePostal": "66760", + "codeCommune": "66146", + "libelleAcheminement": "PORTA", + "nomCommune": "PORTA" }, { - "codePostal": "21410", - "codeCommune": "21013", - "libelleAcheminement": "ANCEY", - "nomCommune": "ANCEY" + "codePostal": "77480", + "codeCommune": "77325", + "libelleAcheminement": "MOUY SUR SEINE", + "nomCommune": "MOUY SUR SEINE" }, { - "codePostal": "76460", - "codeCommune": "76336", - "libelleAcheminement": "GUEUTTEVILLE LES GRES", - "nomCommune": "GUEUTTEVILLE LES GRES" + "codePostal": "25150", + "codeCommune": "25281", + "libelleAcheminement": "GOUX LES DAMBELIN", + "nomCommune": "GOUX LES DAMBELIN" }, { - "codePostal": "77190", - "codeCommune": "77152", - "libelleAcheminement": "DAMMARIE LES LYS", - "nomCommune": "DAMMARIE LES LYS" + "codePostal": "77169", + "codeCommune": "77411", + "libelleAcheminement": "ST GERMAIN SOUS DOUE", + "nomCommune": "ST GERMAIN SOUS DOUE" }, { - "codePostal": "70240", - "codeCommune": "70490", - "libelleAcheminement": "SERVIGNEY", - "nomCommune": "SERVIGNEY" + "codePostal": "64460", + "codeCommune": "64293", + "libelleAcheminement": "LABATUT FIGUIERES", + "nomCommune": "LABATUT FIGUIERES" }, { - "codePostal": "21410", - "codeCommune": "21018", - "libelleAcheminement": "ARCEY", - "nomCommune": "ARCEY" + "codePostal": "66660", + "codeCommune": "66148", + "libelleAcheminement": "PORT VENDRES", + "nomCommune": "PORT VENDRES" }, { - "codePostal": "76560", - "codeCommune": "76340", - "libelleAcheminement": "HARCANVILLE", - "nomCommune": "HARCANVILLE" + "codePostal": "77370", + "codeCommune": "77327", + "libelleAcheminement": "NANGIS", + "nomCommune": "NANGIS" }, { - "codePostal": "77230", - "codeCommune": "77153", - "libelleAcheminement": "DAMMARTIN EN GOELE", - "nomCommune": "DAMMARTIN EN GOELE" + "codePostal": "25210", + "codeCommune": "25286", + "libelleAcheminement": "GRAND COMBE DES BOIS", + "nomCommune": "GRAND COMBE DES BOIS" }, { - "codePostal": "70130", - "codeCommune": "70492", - "libelleAcheminement": "SOING CUBRY CHARENTENAY", - "nomCommune": "SOING CUBRY CHARENTENAY" + "codePostal": "77930", + "codeCommune": "77412", + "libelleAcheminement": "ST GERMAIN SUR ECOLE", + "nomCommune": "ST GERMAIN SUR ECOLE" }, { - "codePostal": "21570", - "codeCommune": "21034", - "libelleAcheminement": "AUTRICOURT", - "nomCommune": "AUTRICOURT" + "codePostal": "64220", + "codeCommune": "64297", + "libelleAcheminement": "LACARRE", + "nomCommune": "LACARRE" }, { - "codePostal": "76700", - "codeCommune": "76341", - "libelleAcheminement": "HARFLEUR", - "nomCommune": "HARFLEUR" + "codePostal": "66320", + "codeCommune": "66162", + "libelleAcheminement": "RIGARDA", + "nomCommune": "RIGARDA" }, { - "codePostal": "77400", - "codeCommune": "77155", - "libelleAcheminement": "DAMPMART", - "nomCommune": "DAMPMART" + "codePostal": "77760", + "codeCommune": "77328", + "libelleAcheminement": "NANTEAU SUR ESSONNE", + "nomCommune": "NANTEAU SUR ESSONNE" }, { - "codePostal": "70190", - "codeCommune": "70493", - "libelleAcheminement": "SORANS LES BREUREY", - "nomCommune": "SORANS LES BREUREY" + "codePostal": "25390", + "codeCommune": "25288", + "libelleAcheminement": "FOURNETS LUISANS", + "nomCommune": "FOURNETS LUISANS" }, { - "codePostal": "21190", - "codeCommune": "21037", - "libelleAcheminement": "AUXEY DURESSES", - "nomCommune": "AUXEY DURESSES" + "codePostal": "77650", + "codeCommune": "77418", + "libelleAcheminement": "ST LOUP DE NAUD", + "nomCommune": "ST LOUP DE NAUD" }, { - "codePostal": "76640", - "codeCommune": "76342", - "libelleAcheminement": "HATTENVILLE", - "nomCommune": "HATTENVILLE" + "codePostal": "64350", + "codeCommune": "64307", + "libelleAcheminement": "LALONGUE", + "nomCommune": "LALONGUE" }, { - "codePostal": "77520", - "codeCommune": "77159", - "libelleAcheminement": "DONNEMARIE DONTILLY", - "nomCommune": "DONNEMARIE DONTILLY" + "codePostal": "66600", + "codeCommune": "66164", + "libelleAcheminement": "RIVESALTES", + "nomCommune": "RIVESALTES" }, { - "codePostal": "70150", - "codeCommune": "70494", - "libelleAcheminement": "SORNAY", - "nomCommune": "SORNAY" + "codePostal": "77230", + "codeCommune": "77332", + "libelleAcheminement": "NANTOUILLET", + "nomCommune": "NANTOUILLET" }, { - "codePostal": "21130", - "codeCommune": "21038", - "libelleAcheminement": "AUXONNE", - "nomCommune": "AUXONNE" + "codePostal": "25510", + "codeCommune": "25289", + "libelleAcheminement": "GRANDFONTAINE SUR CREUSE", + "nomCommune": "GRANDFONTAINE SUR CREUSE" }, { - "codePostal": "76113", - "codeCommune": "76350", - "libelleAcheminement": "HAUTOT SUR SEINE", - "nomCommune": "HAUTOT SUR SEINE" + "codePostal": "77320", + "codeCommune": "77421", + "libelleAcheminement": "ST MARS VIEUX MAISONS", + "nomCommune": "ST MARS VIEUX MAISONS" }, { - "codePostal": "77139", - "codeCommune": "77163", - "libelleAcheminement": "DOUY LA RAMEE", - "nomCommune": "DOUY LA RAMEE" + "codePostal": "64410", + "codeCommune": "64318", + "libelleAcheminement": "LARREULE", + "nomCommune": "LARREULE" }, { - "codePostal": "70230", - "codeCommune": "70501", - "libelleAcheminement": "THIENANS", - "nomCommune": "THIENANS" + "codePostal": "66320", + "codeCommune": "66165", + "libelleAcheminement": "RODES", + "nomCommune": "RODES" }, { - "codePostal": "21580", - "codeCommune": "21049", - "libelleAcheminement": "BARJON", - "nomCommune": "BARJON" + "codePostal": "77124", + "codeCommune": "77335", + "libelleAcheminement": "CHAUCONIN NEUFMONTIERS", + "nomCommune": "CHAUCONIN NEUFMONTIERS" }, { - "codePostal": "76780", - "codeCommune": "76364", - "libelleAcheminement": "HODENG HODENGER", - "nomCommune": "HODENG HODENGER" + "codePostal": "25110", + "codeCommune": "25298", + "libelleAcheminement": "GROSBOIS", + "nomCommune": "GROSBOIS" }, { - "codePostal": "77184", - "codeCommune": "77169", - "libelleAcheminement": "EMERAINVILLE", - "nomCommune": "EMERAINVILLE" + "codePostal": "77720", + "codeCommune": "77428", + "libelleAcheminement": "ST OUEN EN BRIE", + "nomCommune": "ST OUEN EN BRIE" }, { - "codePostal": "70100", - "codeCommune": "70505", - "libelleAcheminement": "LE TREMBLOIS", - "nomCommune": "LE TREMBLOIS" + "codePostal": "64290", + "codeCommune": "64324", + "libelleAcheminement": "LASSEUBE", + "nomCommune": "LASSEUBE" }, { - "codePostal": "21340", - "codeCommune": "21050", - "libelleAcheminement": "BAUBIGNY", - "nomCommune": "BAUBIGNY" + "codePostal": "66360", + "codeCommune": "66166", + "libelleAcheminement": "SAHORRE", + "nomCommune": "SAHORRE" }, { - "codePostal": "76740", - "codeCommune": "76365", - "libelleAcheminement": "HOUDETOT", - "nomCommune": "HOUDETOT" + "codePostal": "77114", + "codeCommune": "77341", + "libelleAcheminement": "NOYEN SUR SEINE", + "nomCommune": "NOYEN SUR SEINE" }, { - "codePostal": "77515", - "codeCommune": "77176", - "libelleAcheminement": "FAREMOUTIERS", - "nomCommune": "FAREMOUTIERS" + "codePostal": "25310", + "codeCommune": "25304", + "libelleAcheminement": "HERIMONCOURT", + "nomCommune": "HERIMONCOURT" }, { - "codePostal": "70400", - "codeCommune": "70506", - "libelleAcheminement": "TREMOINS", - "nomCommune": "TREMOINS" + "codePostal": "77120", + "codeCommune": "77433", + "libelleAcheminement": "BEAUTHEIL SAINTS", + "nomCommune": "BEAUTHEIL SAINTS" }, { - "codePostal": "21570", - "codeCommune": "21058", - "libelleAcheminement": "BELAN SUR OURCE", - "nomCommune": "BELAN SUR OURCE" + "codePostal": "64130", + "codeCommune": "64341", + "libelleAcheminement": "LICHOS", + "nomCommune": "LICHOS" }, { - "codePostal": "76770", - "codeCommune": "76367", - "libelleAcheminement": "HOUPPEVILLE", - "nomCommune": "HOUPPEVILLE" + "codePostal": "66220", + "codeCommune": "66169", + "libelleAcheminement": "ST ARNAC", + "nomCommune": "ST ARNAC" }, { - "codePostal": "77133", - "codeCommune": "77179", - "libelleAcheminement": "FERICY", - "nomCommune": "FERICY" + "codePostal": "77440", + "codeCommune": "77343", + "libelleAcheminement": "OCQUERRE", + "nomCommune": "OCQUERRE" }, { - "codePostal": "70180", - "codeCommune": "70511", - "libelleAcheminement": "VAITE", - "nomCommune": "VAITE" + "codePostal": "25170", + "codeCommune": "25317", + "libelleAcheminement": "JALLERANGE", + "nomCommune": "JALLERANGE" }, { - "codePostal": "21310", - "codeCommune": "21071", - "libelleAcheminement": "BEZE", - "nomCommune": "BEZE" + "codePostal": "77930", + "codeCommune": "77435", + "libelleAcheminement": "ST SAUVEUR SUR ECOLE", + "nomCommune": "ST SAUVEUR SUR ECOLE" }, { - "codePostal": "76460", - "codeCommune": "76375", - "libelleAcheminement": "INGOUVILLE", - "nomCommune": "INGOUVILLE" + "codePostal": "64420", + "codeCommune": "64343", + "libelleAcheminement": "LIMENDOUS", + "nomCommune": "LIMENDOUS" }, { - "codePostal": "77320", - "codeCommune": "77182", - "libelleAcheminement": "LA FERTE GAUCHER", - "nomCommune": "LA FERTE GAUCHER" + "codePostal": "66510", + "codeCommune": "66176", + "libelleAcheminement": "ST HIPPOLYTE", + "nomCommune": "ST HIPPOLYTE" }, { - "codePostal": "70000", - "codeCommune": "70513", - "libelleAcheminement": "VAIVRE ET MONTOILLE", - "nomCommune": "VAIVRE ET MONTOILLE" + "codePostal": "77710", + "codeCommune": "77353", + "libelleAcheminement": "PALEY", + "nomCommune": "PALEY" }, { - "codePostal": "21540", - "codeCommune": "21080", - "libelleAcheminement": "BLAISY BAS", - "nomCommune": "BLAISY BAS" + "codePostal": "25370", + "codeCommune": "25318", + "libelleAcheminement": "JOUGNE", + "nomCommune": "JOUGNE" }, { - "codePostal": "76390", - "codeCommune": "76381", - "libelleAcheminement": "LANDES VIEILLES ET NEUVES", - "nomCommune": "LANDES VIEILLES ET NEUVES" + "codePostal": "77260", + "codeCommune": "77448", + "libelleAcheminement": "SEPT SORTS", + "nomCommune": "SEPT SORTS" }, { - "codePostal": "77370", - "codeCommune": "77191", - "libelleAcheminement": "FONTENAILLES", - "nomCommune": "FONTENAILLES" + "codePostal": "64300", + "codeCommune": "64349", + "libelleAcheminement": "LOUBIENG", + "nomCommune": "LOUBIENG" }, { - "codePostal": "70240", - "codeCommune": "70522", - "libelleAcheminement": "VAROGNE", - "nomCommune": "VAROGNE" + "codePostal": "66250", + "codeCommune": "66180", + "libelleAcheminement": "ST LAURENT DE LA SALANQUE", + "nomCommune": "ST LAURENT DE LA SALANQUE" }, { - "codePostal": "21330", - "codeCommune": "21093", - "libelleAcheminement": "BOUIX", - "nomCommune": "BOUIX" + "codePostal": "77970", + "codeCommune": "77357", + "libelleAcheminement": "PECY", + "nomCommune": "PECY" }, { - "codePostal": "76760", - "codeCommune": "76387", - "libelleAcheminement": "LINDEBEUF", - "nomCommune": "LINDEBEUF" + "codePostal": "25160", + "codeCommune": "25320", + "libelleAcheminement": "LABERGEMENT STE MARIE", + "nomCommune": "LABERGEMENT STE MARIE" }, { - "codePostal": "77690", - "codeCommune": "77202", - "libelleAcheminement": "LA GENEVRAYE", - "nomCommune": "LA GENEVRAYE" + "codePostal": "77520", + "codeCommune": "77452", + "libelleAcheminement": "SIGY", + "nomCommune": "SIGY" }, { - "codePostal": "70700", - "codeCommune": "70531", - "libelleAcheminement": "VELLECLAIRE", - "nomCommune": "VELLECLAIRE" + "codePostal": "64440", + "codeCommune": "64354", + "libelleAcheminement": "LOUVIE SOUBIRON", + "nomCommune": "LOUVIE SOUBIRON" }, { - "codePostal": "21610", - "codeCommune": "21094", - "libelleAcheminement": "BOURBERAIN", - "nomCommune": "BOURBERAIN" + "codePostal": "66800", + "codeCommune": "66181", + "libelleAcheminement": "STE LEOCADIE", + "nomCommune": "STE LEOCADIE" }, { - "codePostal": "76210", - "codeCommune": "76388", - "libelleAcheminement": "LINTOT", - "nomCommune": "LINTOT" + "codePostal": "77580", + "codeCommune": "77361", + "libelleAcheminement": "PIERRE LEVEE", + "nomCommune": "PIERRE LEVEE" }, { - "codePostal": "77840", - "codeCommune": "77204", - "libelleAcheminement": "GERMIGNY SOUS COULOMBS", - "nomCommune": "GERMIGNY SOUS COULOMBS" + "codePostal": "25820", + "codeCommune": "25323", + "libelleAcheminement": "LAISSEY", + "nomCommune": "LAISSEY" }, { - "codePostal": "70000", - "codeCommune": "70535", - "libelleAcheminement": "VELLEGUINDRY ET LEVRECEY", - "nomCommune": "VELLEGUINDRY ET LEVRECEY" + "codePostal": "77111", + "codeCommune": "77457", + "libelleAcheminement": "SOLERS", + "nomCommune": "SOLERS" }, { - "codePostal": "21350", - "codeCommune": "21097", - "libelleAcheminement": "BOUSSEY", - "nomCommune": "BOUSSEY" + "codePostal": "64350", + "codeCommune": "64356", + "libelleAcheminement": "LUC ARMAU", + "nomCommune": "LUC ARMAU" }, { - "codePostal": "76860", - "codeCommune": "76395", - "libelleAcheminement": "LONGUEIL", - "nomCommune": "LONGUEIL" + "codePostal": "66220", + "codeCommune": "66184", + "libelleAcheminement": "ST MARTIN DE FENOUILLET", + "nomCommune": "ST MARTIN DE FENOUILLET" }, { - "codePostal": "77114", - "codeCommune": "77208", - "libelleAcheminement": "GOUAIX", - "nomCommune": "GOUAIX" + "codePostal": "77515", + "codeCommune": "77371", + "libelleAcheminement": "POMMEUSE", + "nomCommune": "POMMEUSE" }, { - "codePostal": "70240", - "codeCommune": "70537", - "libelleAcheminement": "VELLEMINFROY", - "nomCommune": "VELLEMINFROY" + "codePostal": "25210", + "codeCommune": "25329", + "libelleAcheminement": "LAVAL LE PRIEURE", + "nomCommune": "LAVAL LE PRIEURE" }, { - "codePostal": "21390", - "codeCommune": "21101", - "libelleAcheminement": "BRAUX", - "nomCommune": "BRAUX" + "codePostal": "77171", + "codeCommune": "77459", + "libelleAcheminement": "SOURDUN", + "nomCommune": "SOURDUN" }, { - "codePostal": "76750", - "codeCommune": "76396", - "libelleAcheminement": "LONGUERUE", - "nomCommune": "LONGUERUE" + "codePostal": "64360", + "codeCommune": "64359", + "libelleAcheminement": "LUCQ DE BEARN", + "nomCommune": "LUCQ DE BEARN" }, { - "codePostal": "77130", - "codeCommune": "77210", - "libelleAcheminement": "LA GRANDE PAROISSE", - "nomCommune": "LA GRANDE PAROISSE" + "codePostal": "66280", + "codeCommune": "66189", + "libelleAcheminement": "SALEILLES", + "nomCommune": "SALEILLES" }, { - "codePostal": "70500", - "codeCommune": "70545", - "libelleAcheminement": "VENISEY", - "nomCommune": "VENISEY" + "codePostal": "77400", + "codeCommune": "77372", + "libelleAcheminement": "POMPONNE", + "nomCommune": "POMPONNE" }, { - "codePostal": "21570", - "codeCommune": "21109", - "libelleAcheminement": "BRION SUR OURCE BELAN", - "nomCommune": "BRION SUR OURCE" + "codePostal": "25440", + "codeCommune": "25330", + "libelleAcheminement": "LAVANS QUINGEY", + "nomCommune": "LAVANS QUINGEY" }, { - "codePostal": "76940", - "codeCommune": "76401", - "libelleAcheminement": "ARELAUNE EN SEINE", - "nomCommune": "ARELAUNE EN SEINE" + "codePostal": "77520", + "codeCommune": "77461", + "libelleAcheminement": "THENISY", + "nomCommune": "THENISY" }, { - "codePostal": "77166", - "codeCommune": "77217", - "libelleAcheminement": "GRISY SUISNES", - "nomCommune": "GRISY SUISNES" + "codePostal": "64800", + "codeCommune": "64386", + "libelleAcheminement": "MIREPEIX", + "nomCommune": "MIREPEIX" }, { - "codePostal": "70400", - "codeCommune": "70547", - "libelleAcheminement": "VERLANS", - "nomCommune": "VERLANS" + "codePostal": "66600", + "codeCommune": "66190", + "libelleAcheminement": "SALSES LE CHATEAU", + "nomCommune": "SALSES LE CHATEAU" }, { - "codePostal": "21490", - "codeCommune": "21111", - "libelleAcheminement": "BROGNON", - "nomCommune": "BROGNON" + "codePostal": "77720", + "codeCommune": "77381", + "libelleAcheminement": "QUIERS", + "nomCommune": "QUIERS" }, { - "codePostal": "76530", - "codeCommune": "76419", - "libelleAcheminement": "MAUNY", - "nomCommune": "MAUNY" + "codePostal": "25510", + "codeCommune": "25333", + "libelleAcheminement": "LAVIRON", + "nomCommune": "LAVIRON" }, { - "codePostal": "77480", - "codeCommune": "77218", - "libelleAcheminement": "GRISY SUR SEINE", - "nomCommune": "GRISY SUR SEINE" + "codePostal": "77131", + "codeCommune": "77469", + "libelleAcheminement": "TOUQUIN", + "nomCommune": "TOUQUIN" }, { - "codePostal": "70130", - "codeCommune": "70549", - "libelleAcheminement": "LA VERNOTTE", - "nomCommune": "LA VERNOTTE" + "codePostal": "64300", + "codeCommune": "64396", + "libelleAcheminement": "MONT", + "nomCommune": "MONT" }, { - "codePostal": "21220", - "codeCommune": "21113", - "libelleAcheminement": "BROINDON", - "nomCommune": "BROINDON" + "codePostal": "66230", + "codeCommune": "66194", + "libelleAcheminement": "SERRALONGUE", + "nomCommune": "SERRALONGUE" }, { - "codePostal": "76220", - "codeCommune": "76423", - "libelleAcheminement": "MENERVAL", - "nomCommune": "MENERVAL" + "codePostal": "77860", + "codeCommune": "77382", + "libelleAcheminement": "QUINCY VOISINS", + "nomCommune": "QUINCY VOISINS" }, { - "codePostal": "77580", - "codeCommune": "77219", - "libelleAcheminement": "GUERARD", - "nomCommune": "GUERARD" + "codePostal": "25270", + "codeCommune": "25334", + "libelleAcheminement": "LEVIER", + "nomCommune": "LEVIER" }, { - "codePostal": "70500", - "codeCommune": "70554", - "libelleAcheminement": "VILLARS LE PAUTEL", - "nomCommune": "VILLARS LE PAUTEL" + "codePostal": "77123", + "codeCommune": "77471", + "libelleAcheminement": "TOUSSON", + "nomCommune": "TOUSSON" }, { - "codePostal": "21290", - "codeCommune": "21116", - "libelleAcheminement": "BURE LES TEMPLIERS", - "nomCommune": "BURE LES TEMPLIERS" + "codePostal": "64300", + "codeCommune": "64396", + "libelleAcheminement": "MONT", + "nomCommune": "MONT" }, { - "codePostal": "76780", - "codeCommune": "76431", - "libelleAcheminement": "LE MESNIL LIEUBRAY", - "nomCommune": "LE MESNIL LIEUBRAY" + "codePostal": "66690", + "codeCommune": "66196", + "libelleAcheminement": "SOREDE", + "nomCommune": "SOREDE" }, { - "codePostal": "77520", - "codeCommune": "77223", - "libelleAcheminement": "GURCY LE CHATEL", - "nomCommune": "GURCY LE CHATEL" + "codePostal": "77370", + "codeCommune": "77383", + "libelleAcheminement": "RAMPILLON", + "nomCommune": "RAMPILLON" }, { - "codePostal": "70160", - "codeCommune": "70555", - "libelleAcheminement": "LA VILLEDIEU EN FONTENETTE", - "nomCommune": "LA VILLEDIEU EN FONTENETTE" + "codePostal": "25190", + "codeCommune": "25335", + "libelleAcheminement": "LIEBVILLERS", + "nomCommune": "LIEBVILLERS" }, { - "codePostal": "21290", - "codeCommune": "21123", - "libelleAcheminement": "BUXEROLLES", - "nomCommune": "BUXEROLLES" + "codePostal": "77510", + "codeCommune": "77472", + "libelleAcheminement": "LA TRETOIRE", + "nomCommune": "LA TRETOIRE" }, { - "codePostal": "76570", - "codeCommune": "76433", - "libelleAcheminement": "MESNIL PANNEVILLE", - "nomCommune": "MESNIL PANNEVILLE" + "codePostal": "64121", + "codeCommune": "64399", + "libelleAcheminement": "MONTARDON", + "nomCommune": "MONTARDON" }, { - "codePostal": "77510", - "codeCommune": "77228", - "libelleAcheminement": "HONDEVILLIERS", - "nomCommune": "HONDEVILLIERS" + "codePostal": "66400", + "codeCommune": "66199", + "libelleAcheminement": "TAILLET", + "nomCommune": "TAILLET" }, { - "codePostal": "70300", - "codeCommune": "70564", - "libelleAcheminement": "VILLERS LES LUXEUIL", - "nomCommune": "VILLERS LES LUXEUIL" + "codePostal": "77000", + "codeCommune": "77389", + "libelleAcheminement": "LA ROCHETTE", + "nomCommune": "LA ROCHETTE" }, { - "codePostal": "21430", - "codeCommune": "21124", - "libelleAcheminement": "CENSEREY", - "nomCommune": "CENSEREY" + "codePostal": "25440", + "codeCommune": "25336", + "libelleAcheminement": "LIESLE", + "nomCommune": "LIESLE" }, { - "codePostal": "76480", - "codeCommune": "76436", - "libelleAcheminement": "LE MESNIL SOUS JUMIEGES", - "nomCommune": "LE MESNIL SOUS JUMIEGES" + "codePostal": "77710", + "codeCommune": "77473", + "libelleAcheminement": "TREUZY LEVELAY", + "nomCommune": "TREUZY LEVELAY" }, { - "codePostal": "77450", - "codeCommune": "77232", - "libelleAcheminement": "ISLES LES VILLENOY", - "nomCommune": "ISLES LES VILLENOY" + "codePostal": "64470", + "codeCommune": "64404", + "libelleAcheminement": "MONTORY", + "nomCommune": "MONTORY" }, { - "codePostal": "70180", - "codeCommune": "70574", - "libelleAcheminement": "VOLON", - "nomCommune": "VOLON" + "codePostal": "66120", + "codeCommune": "66202", + "libelleAcheminement": "TARGASONNE", + "nomCommune": "TARGASONNE" }, { - "codePostal": "21250", - "codeCommune": "21131", - "libelleAcheminement": "CHAMBLANC", - "nomCommune": "CHAMBLANC" + "codePostal": "77760", + "codeCommune": "77395", + "libelleAcheminement": "RUMONT", + "nomCommune": "RUMONT" }, { - "codePostal": "76220", - "codeCommune": "76440", - "libelleAcheminement": "MOLAGNIES", - "nomCommune": "MOLAGNIES" + "codePostal": "25930", + "codeCommune": "25339", + "libelleAcheminement": "LODS", + "nomCommune": "LODS" }, { - "codePostal": "77970", - "codeCommune": "77239", - "libelleAcheminement": "JOUY LE CHATEL", - "nomCommune": "JOUY LE CHATEL" + "codePostal": "77760", + "codeCommune": "77477", + "libelleAcheminement": "URY", + "nomCommune": "URY" }, { - "codePostal": "70200", - "codeCommune": "70581", - "libelleAcheminement": "VY LES LURE", - "nomCommune": "VY LES LURE" + "codePostal": "64190", + "codeCommune": "64416", + "libelleAcheminement": "NAVARRENX", + "nomCommune": "NAVARRENX" }, { - "codePostal": "21500", - "codeCommune": "21137", - "libelleAcheminement": "CHAMP D OISEAU", - "nomCommune": "CHAMP D OISEAU" + "codePostal": "66230", + "codeCommune": "66206", + "libelleAcheminement": "LE TECH", + "nomCommune": "LE TECH" }, { - "codePostal": "76690", - "codeCommune": "76443", - "libelleAcheminement": "MONT CAUVAIRE", - "nomCommune": "MONT CAUVAIRE" + "codePostal": "77510", + "codeCommune": "77398", + "libelleAcheminement": "SABLONNIERES", + "nomCommune": "SABLONNIERES" }, { - "codePostal": "77148", - "codeCommune": "77245", - "libelleAcheminement": "LAVAL EN BRIE", - "nomCommune": "LAVAL EN BRIE" + "codePostal": "25440", + "codeCommune": "25340", + "libelleAcheminement": "LOMBARD", + "nomCommune": "LOMBARD" }, { - "codePostal": "70120", - "codeCommune": "70582", - "libelleAcheminement": "VY LES RUPT", - "nomCommune": "VY LES RUPT" + "codePostal": "77130", + "codeCommune": "77482", + "libelleAcheminement": "VARENNES SUR SEINE", + "nomCommune": "VARENNES SUR SEINE" }, { - "codePostal": "21170", - "codeCommune": "21148", - "libelleAcheminement": "CHARREY SUR SAONE", - "nomCommune": "CHARREY SUR SAONE" + "codePostal": "64400", + "codeCommune": "64426", + "libelleAcheminement": "ORIN", + "nomCommune": "ORIN" }, { - "codePostal": "76680", - "codeCommune": "76445", - "libelleAcheminement": "MONTEROLIER", - "nomCommune": "MONTEROLIER" + "codePostal": "66410", + "codeCommune": "66224", + "libelleAcheminement": "VILLELONGUE DE LA SALANQUE", + "nomCommune": "VILLELONGUE DE LA SALANQUE" }, { - "codePostal": "77127", - "codeCommune": "77251", - "libelleAcheminement": "LIEUSAINT", - "nomCommune": "LIEUSAINT" + "codePostal": "77860", + "codeCommune": "77413", + "libelleAcheminement": "ST GERMAIN SUR MORIN", + "nomCommune": "ST GERMAIN SUR MORIN" }, { - "codePostal": "71400", - "codeCommune": "71010", - "libelleAcheminement": "ANTULLY", - "nomCommune": "ANTULLY" + "codePostal": "25690", + "codeCommune": "25342", + "libelleAcheminement": "LONGECHAUX", + "nomCommune": "LONGECHAUX" }, { - "codePostal": "21400", - "codeCommune": "21154", - "libelleAcheminement": "CHATILLON SUR SEINE", - "nomCommune": "CHATILLON SUR SEINE" + "codePostal": "77910", + "codeCommune": "77483", + "libelleAcheminement": "VARREDDES", + "nomCommune": "VARREDDES" }, { - "codePostal": "76270", - "codeCommune": "76465", - "libelleAcheminement": "NEUVILLE FERRIERES", - "nomCommune": "NEUVILLE FERRIERES" + "codePostal": "64470", + "codeCommune": "64432", + "libelleAcheminement": "OSSAS SUHARE", + "nomCommune": "OSSAS SUHARE" }, { - "codePostal": "77710", - "codeCommune": "77261", - "libelleAcheminement": "LORREZ LE BOCAGE PREAUX", - "nomCommune": "LORREZ LE BOCAGE PREAUX" + "codePostal": "66740", + "codeCommune": "66225", + "libelleAcheminement": "VILLELONGUE DELS MONTS", + "nomCommune": "VILLELONGUE DELS MONTS" }, { - "codePostal": "71400", - "codeCommune": "71014", - "libelleAcheminement": "AUTUN", - "nomCommune": "AUTUN" + "codePostal": "77160", + "codeCommune": "77414", + "libelleAcheminement": "ST HILLIERS", + "nomCommune": "ST HILLIERS" }, { - "codePostal": "21700", - "codeCommune": "21162", - "libelleAcheminement": "CHAUX", - "nomCommune": "CHAUX" + "codePostal": "25690", + "codeCommune": "25343", + "libelleAcheminement": "LONGEMAISON", + "nomCommune": "LONGEMAISON" }, { - "codePostal": "76210", - "codeCommune": "76468", - "libelleAcheminement": "NOINTOT", - "nomCommune": "NOINTOT" + "codePostal": "77141", + "codeCommune": "77486", + "libelleAcheminement": "VAUDOY EN BRIE", + "nomCommune": "VAUDOY EN BRIE" }, { - "codePostal": "77560", - "codeCommune": "77262", - "libelleAcheminement": "LOUAN VILLEGRUIS FONTAINE", - "nomCommune": "LOUAN VILLEGRUIS FONTAINE" + "codePostal": "64490", + "codeCommune": "64433", + "libelleAcheminement": "OSSE EN ASPE", + "nomCommune": "OSSE EN ASPE" }, { - "codePostal": "71640", - "codeCommune": "71019", - "libelleAcheminement": "BARIZEY", - "nomCommune": "BARIZEY" + "codePostal": "66180", + "codeCommune": "66227", + "libelleAcheminement": "VILLENEUVE DE LA RAHO", + "nomCommune": "VILLENEUVE DE LA RAHO" }, { - "codePostal": "21360", - "codeCommune": "21184", - "libelleAcheminement": "COLOMBIER", - "nomCommune": "COLOMBIER" + "codePostal": "77660", + "codeCommune": "77415", + "libelleAcheminement": "ST JEAN LES DEUX JUMEAUX", + "nomCommune": "ST JEAN LES DEUX JUMEAUX" }, { - "codePostal": "76940", - "codeCommune": "76473", - "libelleAcheminement": "NOTRE DAME DE BLIQUETUIT", - "nomCommune": "NOTRE DAME DE BLIQUETUIT" + "codePostal": "25380", + "codeCommune": "25344", + "libelleAcheminement": "LONGEVELLE LES RUSSEY", + "nomCommune": "LONGEVELLE LES RUSSEY" }, { - "codePostal": "77700", - "codeCommune": "77268", - "libelleAcheminement": "MAGNY LE HONGRE", - "nomCommune": "MAGNY LE HONGRE" + "codePostal": "77510", + "codeCommune": "77492", + "libelleAcheminement": "VERDELOT", + "nomCommune": "VERDELOT" }, { - "codePostal": "71580", - "codeCommune": "71027", - "libelleAcheminement": "BEAUREPAIRE EN BRESSE", - "nomCommune": "BEAUREPAIRE EN BRESSE" + "codePostal": "64390", + "codeCommune": "64435", + "libelleAcheminement": "OSSERAIN RIVAREYTE", + "nomCommune": "OSSERAIN RIVAREYTE" }, { - "codePostal": "21250", - "codeCommune": "21193", - "libelleAcheminement": "CORGENGOUX", - "nomCommune": "CORGENGOUX" + "codePostal": "66220", + "codeCommune": "66232", + "libelleAcheminement": "VIRA", + "nomCommune": "VIRA" }, { - "codePostal": "76960", - "codeCommune": "76474", - "libelleAcheminement": "NOTRE DAME DE BONDEVILLE", - "nomCommune": "NOTRE DAME DE BONDEVILLE" + "codePostal": "77370", + "codeCommune": "77416", + "libelleAcheminement": "ST JUST EN BRIE", + "nomCommune": "ST JUST EN BRIE" }, { - "codePostal": "77139", - "codeCommune": "77274", - "libelleAcheminement": "MARCILLY", - "nomCommune": "MARCILLY" + "codePostal": "25650", + "codeCommune": "25347", + "libelleAcheminement": "LA LONGEVILLE", + "nomCommune": "LA LONGEVILLE" }, { - "codePostal": "71270", - "codeCommune": "71028", - "libelleAcheminement": "BEAUVERNOIS", - "nomCommune": "BEAUVERNOIS" + "codePostal": "77670", + "codeCommune": "77494", + "libelleAcheminement": "VERNOU LA CELLE SUR SEINE", + "nomCommune": "VERNOU LA CELLE SUR SEINE" }, { - "codePostal": "21190", - "codeCommune": "21196", - "libelleAcheminement": "CORPEAU", - "nomCommune": "CORPEAU" + "codePostal": "64160", + "codeCommune": "64438", + "libelleAcheminement": "OUILLON", + "nomCommune": "OUILLON" }, { - "codePostal": "76350", - "codeCommune": "76484", - "libelleAcheminement": "OISSEL", - "nomCommune": "OISSEL" + "codePostal": "67120", + "codeCommune": "67008", + "libelleAcheminement": "ALTORF", + "nomCommune": "ALTORF" }, { - "codePostal": "77990", - "codeCommune": "77282", - "libelleAcheminement": "MAUREGARD", - "nomCommune": "MAUREGARD" + "codePostal": "77510", + "codeCommune": "77417", + "libelleAcheminement": "ST LEGER", + "nomCommune": "ST LEGER" }, { - "codePostal": "71350", - "codeCommune": "71043", - "libelleAcheminement": "LES BORDES", - "nomCommune": "LES BORDES" + "codePostal": "25250", + "codeCommune": "25365", + "libelleAcheminement": "MANCENANS", + "nomCommune": "MANCENANS" }, { - "codePostal": "21120", - "codeCommune": "21208", - "libelleAcheminement": "COURTIVRON", - "nomCommune": "COURTIVRON" + "codePostal": "77470", + "codeCommune": "77505", + "libelleAcheminement": "VILLEMAREUIL", + "nomCommune": "VILLEMAREUIL" }, { - "codePostal": "76750", - "codeCommune": "76502", - "libelleAcheminement": "PIERREVAL", - "nomCommune": "PIERREVAL" + "codePostal": "64320", + "codeCommune": "64439", + "libelleAcheminement": "OUSSE", + "nomCommune": "OUSSE" }, { - "codePostal": "77100", - "codeCommune": "77284", - "libelleAcheminement": "MEAUX", - "nomCommune": "MEAUX" + "codePostal": "67600", + "codeCommune": "67019", + "libelleAcheminement": "BALDENHEIM", + "nomCommune": "BALDENHEIM" }, { - "codePostal": "71330", - "codeCommune": "71044", - "libelleAcheminement": "BOSJEAN", - "nomCommune": "BOSJEAN" + "codePostal": "77670", + "codeCommune": "77419", + "libelleAcheminement": "ST MAMMES", + "nomCommune": "ST MAMMES" }, { - "codePostal": "21560", - "codeCommune": "21209", - "libelleAcheminement": "COUTERNON", - "nomCommune": "COUTERNON" + "codePostal": "25640", + "codeCommune": "25368", + "libelleAcheminement": "MARCHAUX CHAUDEFONTAINE", + "nomCommune": "MARCHAUX CHAUDEFONTAINE" }, { - "codePostal": "76520", - "codeCommune": "76514", - "libelleAcheminement": "QUEVREVILLE LA POTERIE", - "nomCommune": "QUEVREVILLE LA POTERIE" + "codePostal": "77154", + "codeCommune": "77509", + "libelleAcheminement": "VILLENEUVE LES BORDES", + "nomCommune": "VILLENEUVE LES BORDES" }, { - "codePostal": "77320", - "codeCommune": "77287", - "libelleAcheminement": "MEILLERAY", - "nomCommune": "MEILLERAY" + "codePostal": "64350", + "codeCommune": "64446", + "libelleAcheminement": "PEYRELONGUE ABOS", + "nomCommune": "PEYRELONGUE ABOS" }, { - "codePostal": "71320", - "codeCommune": "71046", - "libelleAcheminement": "LA BOULAYE", - "nomCommune": "LA BOULAYE" + "codePostal": "67320", + "codeCommune": "67029", + "libelleAcheminement": "BERG", + "nomCommune": "BERG" }, { - "codePostal": "21230", - "codeCommune": "21216", - "libelleAcheminement": "CULETRE", - "nomCommune": "CULETRE" + "codePostal": "77410", + "codeCommune": "77427", + "libelleAcheminement": "ST MESMES", + "nomCommune": "ST MESMES" }, { - "codePostal": "76860", - "codeCommune": "76515", - "libelleAcheminement": "QUIBERVILLE", - "nomCommune": "QUIBERVILLE" + "codePostal": "25410", + "codeCommune": "25374", + "libelleAcheminement": "MERCEY LE GRAND", + "nomCommune": "MERCEY LE GRAND" }, { - "codePostal": "77940", - "codeCommune": "77313", - "libelleAcheminement": "MONTMACHOUX", - "nomCommune": "MONTMACHOUX" + "codePostal": "77510", + "codeCommune": "77512", + "libelleAcheminement": "VILLENEUVE SUR BELLOT", + "nomCommune": "VILLENEUVE SUR BELLOT" }, { - "codePostal": "71110", - "codeCommune": "71048", - "libelleAcheminement": "BOURG LE COMTE", - "nomCommune": "BOURG LE COMTE" + "codePostal": "64370", + "codeCommune": "64450", + "libelleAcheminement": "POMPS", + "nomCommune": "POMPS" }, { - "codePostal": "21220", - "codeCommune": "21217", - "libelleAcheminement": "CURLEY", - "nomCommune": "CURLEY" + "codePostal": "67140", + "codeCommune": "67032", + "libelleAcheminement": "BERNARDVILLE", + "nomCommune": "BERNARDVILLE" }, { - "codePostal": "76340", - "codeCommune": "76520", - "libelleAcheminement": "REALCAMP", - "nomCommune": "REALCAMP" + "codePostal": "77178", + "codeCommune": "77430", + "libelleAcheminement": "ST PATHUS", + "nomCommune": "ST PATHUS" }, { - "codePostal": "77320", - "codeCommune": "77314", - "libelleAcheminement": "MONTOLIVET", - "nomCommune": "MONTOLIVET" + "codePostal": "25870", + "codeCommune": "25376", + "libelleAcheminement": "MEREY VIEILLEY", + "nomCommune": "MEREY VIEILLEY" }, { - "codePostal": "71500", - "codeCommune": "71056", - "libelleAcheminement": "BRANGES", - "nomCommune": "BRANGES" + "codePostal": "77560", + "codeCommune": "77519", + "libelleAcheminement": "VILLIERS ST GEORGES", + "nomCommune": "VILLIERS ST GEORGES" }, { - "codePostal": "21230", - "codeCommune": "21222", - "libelleAcheminement": "CUSSY LE CHATEL", - "nomCommune": "CUSSY LE CHATEL" + "codePostal": "64410", + "codeCommune": "64457", + "libelleAcheminement": "POURSIUGUES BOUCOUE", + "nomCommune": "POURSIUGUES BOUCOUE" }, { - "codePostal": "76430", - "codeCommune": "76522", - "libelleAcheminement": "LA REMUEE", - "nomCommune": "LA REMUEE" + "codePostal": "67370", + "codeCommune": "67034", + "libelleAcheminement": "BERSTETT", + "nomCommune": "BERSTETT" }, { - "codePostal": "77250", - "codeCommune": "77316", - "libelleAcheminement": "MORET LOING ET ORVANNE", - "nomCommune": "MORET LOING ET ORVANNE" + "codePostal": "77165", + "codeCommune": "77437", + "libelleAcheminement": "ST SOUPPLETS", + "nomCommune": "ST SOUPPLETS" }, { - "codePostal": "71190", - "codeCommune": "71063", - "libelleAcheminement": "BROYE", - "nomCommune": "BROYE" + "codePostal": "25190", + "codeCommune": "25386", + "libelleAcheminement": "MONTANCY", + "nomCommune": "MONTANCY" }, { - "codePostal": "21121", - "codeCommune": "21223", - "libelleAcheminement": "DAIX", - "nomCommune": "DAIX" + "codePostal": "77114", + "codeCommune": "77522", + "libelleAcheminement": "VILLIERS SUR SEINE", + "nomCommune": "VILLIERS SUR SEINE" }, { - "codePostal": "76340", - "codeCommune": "76523", - "libelleAcheminement": "RETONVAL", - "nomCommune": "RETONVAL" + "codePostal": "64260", + "codeCommune": "64473", + "libelleAcheminement": "STE COLOME", + "nomCommune": "STE COLOME" }, { - "codePostal": "77230", - "codeCommune": "77322", - "libelleAcheminement": "MOUSSY LE NEUF", - "nomCommune": "MOUSSY LE NEUF" + "codePostal": "67170", + "codeCommune": "67035", + "libelleAcheminement": "BERSTHEIM", + "nomCommune": "BERSTHEIM" }, { - "codePostal": "71500", - "codeCommune": "71064", - "libelleAcheminement": "BRUAILLES", - "nomCommune": "BRUAILLES" + "codePostal": "77400", + "codeCommune": "77438", + "libelleAcheminement": "ST THIBAULT DES VIGNES", + "nomCommune": "ST THIBAULT DES VIGNES" }, { - "codePostal": "21430", - "codeCommune": "21229", - "libelleAcheminement": "DIANCEY", - "nomCommune": "DIANCEY" + "codePostal": "25260", + "codeCommune": "25394", + "libelleAcheminement": "MONTENOIS", + "nomCommune": "MONTENOIS" }, { - "codePostal": "76133", - "codeCommune": "76534", - "libelleAcheminement": "ROLLEVILLE", - "nomCommune": "ROLLEVILLE" + "codePostal": "77139", + "codeCommune": "77526", + "libelleAcheminement": "VINCY MANOEUVRE", + "nomCommune": "VINCY MANOEUVRE" }, { - "codePostal": "77230", - "codeCommune": "77323", - "libelleAcheminement": "MOUSSY LE VIEUX", - "nomCommune": "MOUSSY LE VIEUX" + "codePostal": "64390", + "codeCommune": "64480", + "libelleAcheminement": "ST GLADIE ARRIVE MUNEIN", + "nomCommune": "ST GLADIE ARRIVE MUNEIN" }, { - "codePostal": "71960", - "codeCommune": "71069", - "libelleAcheminement": "BUSSIERES", - "nomCommune": "BUSSIERES" + "codePostal": "67800", + "codeCommune": "67043", + "libelleAcheminement": "BISCHHEIM", + "nomCommune": "BISCHHEIM" }, { - "codePostal": "21510", - "codeCommune": "21237", - "libelleAcheminement": "ECHALOT", - "nomCommune": "ECHALOT" + "codePostal": "77700", + "codeCommune": "77449", + "libelleAcheminement": "SERRIS", + "nomCommune": "SERRIS" }, { - "codePostal": "76000", - "codeCommune": "76540", - "libelleAcheminement": "ROUEN", - "nomCommune": "ROUEN" + "codePostal": "25320", + "codeCommune": "25397", + "libelleAcheminement": "MONTFERRAND LE CHATEAU", + "nomCommune": "MONTFERRAND LE CHATEAU" }, { - "codePostal": "77480", - "codeCommune": "77325", - "libelleAcheminement": "MOUY SUR SEINE", - "nomCommune": "MOUY SUR SEINE" + "codePostal": "77560", + "codeCommune": "77530", + "libelleAcheminement": "VOULTON", + "nomCommune": "VOULTON" }, { - "codePostal": "71390", - "codeCommune": "71070", - "libelleAcheminement": "BUXY", - "nomCommune": "BUXY" + "codePostal": "64500", + "codeCommune": "64483", + "libelleAcheminement": "ST JEAN DE LUZ", + "nomCommune": "ST JEAN DE LUZ" }, { - "codePostal": "21380", - "codeCommune": "21245", - "libelleAcheminement": "EPAGNY", - "nomCommune": "EPAGNY" + "codePostal": "67260", + "codeCommune": "67047", + "libelleAcheminement": "BISSERT", + "nomCommune": "BISSERT" }, { - "codePostal": "76480", - "codeCommune": "76541", - "libelleAcheminement": "ROUMARE", - "nomCommune": "ROUMARE" + "codePostal": "77115", + "codeCommune": "77453", + "libelleAcheminement": "SIVRY COURTRY", + "nomCommune": "SIVRY COURTRY" }, { - "codePostal": "77710", - "codeCommune": "77329", - "libelleAcheminement": "NANTEAU SUR LUNAIN", - "nomCommune": "NANTEAU SUR LUNAIN" + "codePostal": "25650", + "codeCommune": "25398", + "libelleAcheminement": "MONTFLOVIN", + "nomCommune": "MONTFLOVIN" }, { - "codePostal": "71110", - "codeCommune": "71071", - "libelleAcheminement": "CERON", - "nomCommune": "CERON" + "codePostal": "78580", + "codeCommune": "78010", + "libelleAcheminement": "LES ALLUETS LE ROI", + "nomCommune": "LES ALLUETS LE ROI" }, { - "codePostal": "21220", - "codeCommune": "21246", - "libelleAcheminement": "EPERNAY SOUS GEVREY", - "nomCommune": "EPERNAY SOUS GEVREY" + "codePostal": "64370", + "codeCommune": "64491", + "libelleAcheminement": "ST MEDARD", + "nomCommune": "ST MEDARD" }, { - "codePostal": "76116", - "codeCommune": "76548", - "libelleAcheminement": "RY", - "nomCommune": "RY" + "codePostal": "67650", + "codeCommune": "67051", + "libelleAcheminement": "BLIENSCHWILLER", + "nomCommune": "BLIENSCHWILLER" }, { - "codePostal": "77100", - "codeCommune": "77330", - "libelleAcheminement": "NANTEUIL LES MEAUX", - "nomCommune": "NANTEUIL LES MEAUX" + "codePostal": "77230", + "codeCommune": "77462", + "libelleAcheminement": "THIEUX", + "nomCommune": "THIEUX" }, { - "codePostal": "71390", - "codeCommune": "71072", - "libelleAcheminement": "CERSOT", - "nomCommune": "CERSOT" + "codePostal": "25111", + "codeCommune": "25400", + "libelleAcheminement": "MONTGESOYE", + "nomCommune": "MONTGESOYE" }, { - "codePostal": "21290", - "codeCommune": "21250", - "libelleAcheminement": "ESSAROIS", - "nomCommune": "ESSAROIS" + "codePostal": "78770", + "codeCommune": "78013", + "libelleAcheminement": "ANDELU", + "nomCommune": "ANDELU" }, { - "codePostal": "76116", - "codeCommune": "76554", - "libelleAcheminement": "ST AIGNAN SUR RY", - "nomCommune": "ST AIGNAN SUR RY" + "codePostal": "64120", + "codeCommune": "64493", + "libelleAcheminement": "ST PALAIS", + "nomCommune": "ST PALAIS" }, { - "codePostal": "77124", - "codeCommune": "77335", - "libelleAcheminement": "CHAUCONIN NEUFMONTIERS", - "nomCommune": "CHAUCONIN NEUFMONTIERS" + "codePostal": "67140", + "codeCommune": "67060", + "libelleAcheminement": "BOURGHEIM", + "nomCommune": "BOURGHEIM" }, { - "codePostal": "71100", - "codeCommune": "71076", - "libelleAcheminement": "CHALON SUR SAONE", - "nomCommune": "CHALON SUR SAONE" + "codePostal": "77940", + "codeCommune": "77465", + "libelleAcheminement": "THOURY FEROTTES", + "nomCommune": "THOURY FEROTTES" }, { - "codePostal": "21500", - "codeCommune": "21252", - "libelleAcheminement": "ETAIS", - "nomCommune": "ETAIS" + "codePostal": "25500", + "codeCommune": "25403", + "libelleAcheminement": "MONTLEBON", + "nomCommune": "MONTLEBON" }, { - "codePostal": "76590", - "codeCommune": "76570", - "libelleAcheminement": "ST CRESPIN", - "nomCommune": "ST CRESPIN" + "codePostal": "78410", + "codeCommune": "78029", + "libelleAcheminement": "AUBERGENVILLE", + "nomCommune": "AUBERGENVILLE" }, { - "codePostal": "77750", - "codeCommune": "77345", - "libelleAcheminement": "ORLY SUR MORIN", - "nomCommune": "ORLY SUR MORIN" + "codePostal": "64270", + "codeCommune": "64494", + "libelleAcheminement": "ST PE DE LEREN", + "nomCommune": "ST PE DE LEREN" }, { - "codePostal": "71120", - "codeCommune": "71082", - "libelleAcheminement": "CHAMPLECY", - "nomCommune": "CHAMPLECY" + "codePostal": "67130", + "codeCommune": "67066", + "libelleAcheminement": "LA BROQUE", + "nomCommune": "LA BROQUE" }, { - "codePostal": "21450", - "codeCommune": "21257", - "libelleAcheminement": "ETORMAY", - "nomCommune": "ETORMAY" + "codePostal": "77470", + "codeCommune": "77475", + "libelleAcheminement": "TRILPORT", + "nomCommune": "TRILPORT" }, { - "codePostal": "76750", - "codeCommune": "76571", - "libelleAcheminement": "STE CROIX SUR BUCHY", - "nomCommune": "STE CROIX SUR BUCHY" + "codePostal": "25660", + "codeCommune": "25406", + "libelleAcheminement": "MONTROND LE CHATEAU", + "nomCommune": "MONTROND LE CHATEAU" }, { - "codePostal": "77930", - "codeCommune": "77359", - "libelleAcheminement": "PERTHES", - "nomCommune": "PERTHES" + "codePostal": "78770", + "codeCommune": "78034", + "libelleAcheminement": "AUTEUIL", + "nomCommune": "AUTEUIL" }, { - "codePostal": "71570", - "codeCommune": "71090", - "libelleAcheminement": "LA CHAPELLE DE GUINCHAY", - "nomCommune": "LA CHAPELLE DE GUINCHAY" + "codePostal": "64490", + "codeCommune": "64506", + "libelleAcheminement": "SARRANCE", + "nomCommune": "SARRANCE" }, { - "codePostal": "21490", - "codeCommune": "21266", - "libelleAcheminement": "FLACEY", - "nomCommune": "FLACEY" + "codePostal": "67570", + "codeCommune": "67066", + "libelleAcheminement": "LA BROQUE", + "nomCommune": "LA BROQUE" }, { - "codePostal": "76860", - "codeCommune": "76572", - "libelleAcheminement": "ST DENIS D ACLON", - "nomCommune": "ST DENIS D ACLON" + "codePostal": "77123", + "codeCommune": "77485", + "libelleAcheminement": "LE VAUDOUE", + "nomCommune": "LE VAUDOUE" }, { - "codePostal": "77580", - "codeCommune": "77361", - "libelleAcheminement": "PIERRE LEVEE", - "nomCommune": "PIERRE LEVEE" + "codePostal": "25680", + "codeCommune": "25408", + "libelleAcheminement": "MONTUSSAINT", + "nomCommune": "MONTUSSAINT" }, { - "codePostal": "71310", - "codeCommune": "71093", - "libelleAcheminement": "LA CHAPELLE ST SAUVEUR", - "nomCommune": "LA CHAPELLE ST SAUVEUR" + "codePostal": "78550", + "codeCommune": "78048", + "libelleAcheminement": "BAZAINVILLE", + "nomCommune": "BAZAINVILLE" }, { - "codePostal": "21130", - "codeCommune": "21268", - "libelleAcheminement": "FLAGEY LES AUXONNE", - "nomCommune": "FLAGEY LES AUXONNE" + "codePostal": "64150", + "codeCommune": "64512", + "libelleAcheminement": "SAUVELADE", + "nomCommune": "SAUVELADE" }, { - "codePostal": "76890", - "codeCommune": "76574", - "libelleAcheminement": "ST DENIS SUR SCIE", - "nomCommune": "ST DENIS SUR SCIE" + "codePostal": "67170", + "codeCommune": "67067", + "libelleAcheminement": "BRUMATH", + "nomCommune": "BRUMATH" }, { - "codePostal": "77135", - "codeCommune": "77374", - "libelleAcheminement": "PONTCARRE", - "nomCommune": "PONTCARRE" + "codePostal": "77710", + "codeCommune": "77489", + "libelleAcheminement": "VAUX SUR LUNAIN", + "nomCommune": "VAUX SUR LUNAIN" }, { - "codePostal": "71700", - "codeCommune": "71094", - "libelleAcheminement": "LA CHAPELLE SOUS BRANCION", - "nomCommune": "LA CHAPELLE SOUS BRANCION" + "codePostal": "25660", + "codeCommune": "25410", + "libelleAcheminement": "MORRE", + "nomCommune": "MORRE" }, { - "codePostal": "21130", - "codeCommune": "21269", - "libelleAcheminement": "FLAMMERANS", - "nomCommune": "FLAMMERANS" + "codePostal": "78200", + "codeCommune": "78072", + "libelleAcheminement": "BOINVILLIERS", + "nomCommune": "BOINVILLIERS" }, { - "codePostal": "76690", - "codeCommune": "76580", - "libelleAcheminement": "ST GEORGES SUR FONTAINE", - "nomCommune": "ST GEORGES SUR FONTAINE" + "codePostal": "64230", + "codeCommune": "64525", + "libelleAcheminement": "SIROS", + "nomCommune": "SIROS" }, { - "codePostal": "77720", - "codeCommune": "77381", - "libelleAcheminement": "QUIERS", - "nomCommune": "QUIERS" + "codePostal": "67470", + "codeCommune": "67069", + "libelleAcheminement": "BUHL", + "nomCommune": "BUHL" }, { - "codePostal": "71260", - "codeCommune": "71099", - "libelleAcheminement": "CHARBONNIERES", - "nomCommune": "CHARBONNIERES" + "codePostal": "77250", + "codeCommune": "77501", + "libelleAcheminement": "VILLECERF", + "nomCommune": "VILLECERF" }, { - "codePostal": "21330", - "codeCommune": "21279", - "libelleAcheminement": "FONTAINES LES SECHES", - "nomCommune": "FONTAINES LES SECHES" + "codePostal": "25500", + "codeCommune": "25411", + "libelleAcheminement": "MORTEAU", + "nomCommune": "MORTEAU" }, { - "codePostal": "76160", - "codeCommune": "76599", - "libelleAcheminement": "ST LEGER DU BOURG DENIS", - "nomCommune": "ST LEGER DU BOURG DENIS" + "codePostal": "78490", + "codeCommune": "78084", + "libelleAcheminement": "BOISSY SANS AVOIR", + "nomCommune": "BOISSY SANS AVOIR" }, { - "codePostal": "77000", - "codeCommune": "77389", - "libelleAcheminement": "LA ROCHETTE", - "nomCommune": "LA ROCHETTE" + "codePostal": "64250", + "codeCommune": "64527", + "libelleAcheminement": "SOURAIDE", + "nomCommune": "SOURAIDE" }, { - "codePostal": "71270", - "codeCommune": "71101", - "libelleAcheminement": "CHARETTE VARENNES", - "nomCommune": "CHARETTE VARENNES" + "codePostal": "67430", + "codeCommune": "67072", + "libelleAcheminement": "BUTTEN", + "nomCommune": "BUTTEN" }, { - "codePostal": "21610", - "codeCommune": "21281", - "libelleAcheminement": "FONTENELLE", - "nomCommune": "FONTENELLE" + "codePostal": "77710", + "codeCommune": "77504", + "libelleAcheminement": "VILLEMARECHAL", + "nomCommune": "VILLEMARECHAL" }, { - "codePostal": "76730", - "codeCommune": "76604", - "libelleAcheminement": "ST MARDS", - "nomCommune": "ST MARDS" + "codePostal": "25240", + "codeCommune": "25413", + "libelleAcheminement": "MOUTHE", + "nomCommune": "MOUTHE" }, { - "codePostal": "77230", - "codeCommune": "77392", - "libelleAcheminement": "ROUVRES", - "nomCommune": "ROUVRES" + "codePostal": "78113", + "codeCommune": "78096", + "libelleAcheminement": "BOURDONNE", + "nomCommune": "BOURDONNE" }, { - "codePostal": "71850", - "codeCommune": "71105", - "libelleAcheminement": "CHARNAY LES MACON", - "nomCommune": "CHARNAY LES MACON" + "codePostal": "64330", + "codeCommune": "64532", + "libelleAcheminement": "TADOUSSE USSAU", + "nomCommune": "TADOUSSE USSAU" }, { - "codePostal": "21580", - "codeCommune": "21283", - "libelleAcheminement": "FRAIGNOT ET VESVROTTE", - "nomCommune": "FRAIGNOT ET VESVROTTE" + "codePostal": "67310", + "codeCommune": "67085", + "libelleAcheminement": "DANGOLSHEIM", + "nomCommune": "DANGOLSHEIM" }, { - "codePostal": "76190", - "codeCommune": "76610", - "libelleAcheminement": "STE MARIE DES CHAMPS", - "nomCommune": "STE MARIE DES CHAMPS" + "codePostal": "77710", + "codeCommune": "77504", + "libelleAcheminement": "VILLEMARECHAL", + "nomCommune": "VILLEMARECHAL" }, { - "codePostal": "77560", - "codeCommune": "77396", - "libelleAcheminement": "RUPEREUX", - "nomCommune": "RUPEREUX" + "codePostal": "25330", + "codeCommune": "25420", + "libelleAcheminement": "NANS SOUS STE ANNE", + "nomCommune": "NANS SOUS STE ANNE" }, { - "codePostal": "71250", - "codeCommune": "71112", - "libelleAcheminement": "CHATEAU", - "nomCommune": "CHATEAU" + "codePostal": "78610", + "codeCommune": "78108", + "libelleAcheminement": "LES BREVIAIRES", + "nomCommune": "LES BREVIAIRES" }, { - "codePostal": "21110", - "codeCommune": "21292", - "libelleAcheminement": "GENLIS", - "nomCommune": "GENLIS" + "codePostal": "64470", + "codeCommune": "64533", + "libelleAcheminement": "TARDETS SORHOLUS", + "nomCommune": "TARDETS SORHOLUS" }, { - "codePostal": "76760", - "codeCommune": "76611", - "libelleAcheminement": "ST MARTIN AUX ARBRES", - "nomCommune": "ST MARTIN AUX ARBRES" + "codePostal": "67260", + "codeCommune": "67091", + "libelleAcheminement": "DIEDENDORF", + "nomCommune": "DIEDENDORF" }, { - "codePostal": "77310", - "codeCommune": "77407", - "libelleAcheminement": "ST FARGEAU PONTHIERRY", - "nomCommune": "ST FARGEAU PONTHIERRY" + "codePostal": "77124", + "codeCommune": "77513", + "libelleAcheminement": "VILLENOY", + "nomCommune": "VILLENOY" }, { - "codePostal": "71150", - "codeCommune": "71119", - "libelleAcheminement": "CHAUDENAY", - "nomCommune": "CHAUDENAY" + "codePostal": "25580", + "codeCommune": "25424", + "libelleAcheminement": "LES PREMIERS SAPINS", + "nomCommune": "LES PREMIERS SAPINS" }, { - "codePostal": "21700", - "codeCommune": "21294", - "libelleAcheminement": "GERLAND", - "nomCommune": "GERLAND" + "codePostal": "78450", + "codeCommune": "78152", + "libelleAcheminement": "CHAVENAY", + "nomCommune": "CHAVENAY" }, { - "codePostal": "76840", - "codeCommune": "76614", - "libelleAcheminement": "ST MARTIN DE BOSCHERVILLE", - "nomCommune": "ST MARTIN DE BOSCHERVILLE" + "codePostal": "64360", + "codeCommune": "64535", + "libelleAcheminement": "TARSACQ", + "nomCommune": "TARSACQ" }, { - "codePostal": "77930", - "codeCommune": "77412", - "libelleAcheminement": "ST GERMAIN SUR ECOLE", - "nomCommune": "ST GERMAIN SUR ECOLE" + "codePostal": "67650", + "codeCommune": "67094", + "libelleAcheminement": "DIEFFENTHAL", + "nomCommune": "DIEFFENTHAL" }, { - "codePostal": "71310", - "codeCommune": "71121", - "libelleAcheminement": "LA CHAUX", - "nomCommune": "LA CHAUX" + "codePostal": "77410", + "codeCommune": "77515", + "libelleAcheminement": "VILLEROY", + "nomCommune": "VILLEROY" }, { - "codePostal": "21350", - "codeCommune": "21298", - "libelleAcheminement": "GISSEY LE VIEIL", - "nomCommune": "GISSEY LE VIEIL" + "codePostal": "25120", + "codeCommune": "25433", + "libelleAcheminement": "ORGEANS BLANCHEFONTAINE", + "nomCommune": "ORGEANS BLANCHEFONTAINE" }, { - "codePostal": "76370", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "78150", + "codeCommune": "78158", + "libelleAcheminement": "LE CHESNAY ROCQUENCOURT", + "nomCommune": "LE CHESNAY ROCQUENCOURT" }, { - "codePostal": "77860", - "codeCommune": "77413", - "libelleAcheminement": "ST GERMAIN SUR MORIN", - "nomCommune": "ST GERMAIN SUR MORIN" + "codePostal": "64450", + "codeCommune": "64536", + "libelleAcheminement": "THEZE", + "nomCommune": "THEZE" }, { - "codePostal": "71520", - "codeCommune": "71134", - "libelleAcheminement": "NAVOUR SUR GROSNE", - "nomCommune": "NAVOUR SUR GROSNE" + "codePostal": "67320", + "codeCommune": "67105", + "libelleAcheminement": "DRULINGEN", + "nomCommune": "DRULINGEN" }, { - "codePostal": "21250", - "codeCommune": "21301", - "libelleAcheminement": "GLANON", - "nomCommune": "GLANON" + "codePostal": "77410", + "codeCommune": "77517", + "libelleAcheminement": "VILLEVAUDE", + "nomCommune": "VILLEVAUDE" }, { - "codePostal": "76370", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "25620", + "codeCommune": "25434", + "libelleAcheminement": "ORNANS", + "nomCommune": "ORNANS" }, { - "codePostal": "77160", - "codeCommune": "77414", - "libelleAcheminement": "ST HILLIERS", - "nomCommune": "ST HILLIERS" + "codePostal": "78910", + "codeCommune": "78163", + "libelleAcheminement": "CIVRY LA FORET", + "nomCommune": "CIVRY LA FORET" }, { - "codePostal": "71480", - "codeCommune": "71143", - "libelleAcheminement": "CONDAL", - "nomCommune": "CONDAL" + "codePostal": "64220", + "codeCommune": "64538", + "libelleAcheminement": "UHART CIZE", + "nomCommune": "UHART CIZE" }, { - "codePostal": "21580", - "codeCommune": "21304", - "libelleAcheminement": "GRANCEY LE CHATEAU", - "nomCommune": "GRANCEY LE CHATEAU NEUVELLE" + "codePostal": "67120", + "codeCommune": "67108", + "libelleAcheminement": "DUPPIGHEIM", + "nomCommune": "DUPPIGHEIM" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "77480", + "codeCommune": "77523", + "libelleAcheminement": "VILLUIS", + "nomCommune": "VILLUIS" }, { - "codePostal": "77510", - "codeCommune": "77417", - "libelleAcheminement": "ST LEGER", - "nomCommune": "ST LEGER" + "codePostal": "25690", + "codeCommune": "25447", + "libelleAcheminement": "PASSONFONTAINE", + "nomCommune": "PASSONFONTAINE" }, { - "codePostal": "71680", - "codeCommune": "71150", - "libelleAcheminement": "CRECHES SUR SAONE", - "nomCommune": "CRECHES SUR SAONE" + "codePostal": "78120", + "codeCommune": "78164", + "libelleAcheminement": "CLAIREFONTAINE EN YVELINES", + "nomCommune": "CLAIREFONTAINE EN YVELINES" }, { - "codePostal": "21540", - "codeCommune": "21306", - "libelleAcheminement": "GRENANT LES SOMBERNON", - "nomCommune": "GRENANT LES SOMBERNON" + "codePostal": "64370", + "codeCommune": "64541", + "libelleAcheminement": "URDES", + "nomCommune": "URDES" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "67270", + "codeCommune": "67109", + "libelleAcheminement": "DURNINGEN", + "nomCommune": "DURNINGEN" }, { - "codePostal": "77670", - "codeCommune": "77419", - "libelleAcheminement": "ST MAMMES", - "nomCommune": "ST MAMMES" + "codePostal": "77230", + "codeCommune": "77525", + "libelleAcheminement": "VINANTES", + "nomCommune": "VINANTES" }, { - "codePostal": "71200", - "codeCommune": "71153", - "libelleAcheminement": "LE CREUSOT", - "nomCommune": "LE CREUSOT" + "codePostal": "25190", + "codeCommune": "25449", + "libelleAcheminement": "PESEUX", + "nomCommune": "PESEUX" }, { - "codePostal": "21110", - "codeCommune": "21319", - "libelleAcheminement": "IZEURE", - "nomCommune": "IZEURE" + "codePostal": "78790", + "codeCommune": "78185", + "libelleAcheminement": "COURGENT", + "nomCommune": "COURGENT" }, { - "codePostal": "76910", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "64490", + "codeCommune": "64542", + "libelleAcheminement": "URDOS", + "nomCommune": "URDOS" }, { - "codePostal": "77320", - "codeCommune": "77421", - "libelleAcheminement": "ST MARS VIEUX MAISONS", - "nomCommune": "ST MARS VIEUX MAISONS" + "codePostal": "67600", + "codeCommune": "67115", + "libelleAcheminement": "EBERSHEIM", + "nomCommune": "EBERSHEIM" }, { - "codePostal": "71530", - "codeCommune": "71154", - "libelleAcheminement": "CRISSEY", - "nomCommune": "CRISSEY" + "codePostal": "77950", + "codeCommune": "77528", + "libelleAcheminement": "VOISENON", + "nomCommune": "VOISENON" }, { - "codePostal": "21450", - "codeCommune": "21326", - "libelleAcheminement": "JOURS LES BAIGNEUX", - "nomCommune": "JOURS LES BAIGNEUX" + "codePostal": "25310", + "codeCommune": "25452", + "libelleAcheminement": "PIERREFONTAINE LES BLAMONT", + "nomCommune": "PIERREFONTAINE LES BLAMONT" }, { - "codePostal": "76270", - "codeCommune": "76620", - "libelleAcheminement": "ST MARTIN L HORTIER", - "nomCommune": "ST MARTIN L HORTIER" + "codePostal": "78810", + "codeCommune": "78196", + "libelleAcheminement": "DAVRON", + "nomCommune": "DAVRON" }, { - "codePostal": "77320", - "codeCommune": "77432", - "libelleAcheminement": "ST REMY LA VANNE", - "nomCommune": "ST REMY LA VANNE" + "codePostal": "64170", + "codeCommune": "64554", + "libelleAcheminement": "VIELLENAVE D ARTHEZ", + "nomCommune": "VIELLENAVE D ARTHEZ" }, { - "codePostal": "71460", - "codeCommune": "71159", - "libelleAcheminement": "CULLES LES ROCHES", - "nomCommune": "CULLES LES ROCHES" + "codePostal": "67290", + "codeCommune": "67126", + "libelleAcheminement": "ERCKARTSWILLER", + "nomCommune": "ERCKARTSWILLER" }, { - "codePostal": "21250", - "codeCommune": "21333", - "libelleAcheminement": "LABRUYERE", - "nomCommune": "LABRUYERE" + "codePostal": "78660", + "codeCommune": "78009", + "libelleAcheminement": "ALLAINVILLE AUX BOIS", + "nomCommune": "ALLAINVILLE" }, { - "codePostal": "76440", - "codeCommune": "76623", - "libelleAcheminement": "ST MICHEL D HALESCOURT", - "nomCommune": "ST MICHEL D HALESCOURT" + "codePostal": "25210", + "codeCommune": "25456", + "libelleAcheminement": "PLAIMBOIS DU MIROIR", + "nomCommune": "PLAIMBOIS DU MIROIR" }, { - "codePostal": "77120", - "codeCommune": "77433", - "libelleAcheminement": "BEAUTHEIL SAINTS", - "nomCommune": "BEAUTHEIL SAINTS" + "codePostal": "78125", + "codeCommune": "78209", + "libelleAcheminement": "EMANCE", + "nomCommune": "EMANCE" }, { - "codePostal": "71320", - "codeCommune": "71166", - "libelleAcheminement": "CUZY", - "nomCommune": "CUZY" + "codePostal": "64190", + "codeCommune": "64555", + "libelleAcheminement": "VIELLENAVE DE NAVARRENX", + "nomCommune": "VIELLENAVE DE NAVARRENX" }, { - "codePostal": "21370", - "codeCommune": "21339", - "libelleAcheminement": "LANTENAY", - "nomCommune": "LANTENAY" + "codePostal": "67360", + "codeCommune": "67132", + "libelleAcheminement": "ESCHBACH", + "nomCommune": "ESCHBACH" }, { - "codePostal": "76510", - "codeCommune": "76624", - "libelleAcheminement": "ST NICOLAS D ALIERMONT", - "nomCommune": "ST NICOLAS D ALIERMONT" + "codePostal": "78930", + "codeCommune": "78070", + "libelleAcheminement": "BOINVILLE EN MANTOIS", + "nomCommune": "BOINVILLE EN MANTOIS" }, { - "codePostal": "77480", - "codeCommune": "77434", - "libelleAcheminement": "ST SAUVEUR LES BRAY", - "nomCommune": "ST SAUVEUR LES BRAY" + "codePostal": "25340", + "codeCommune": "25461", + "libelleAcheminement": "POMPIERRE SUR DOUBS", + "nomCommune": "POMPIERRE SUR DOUBS" }, { - "codePostal": "71310", - "codeCommune": "71168", - "libelleAcheminement": "DAMPIERRE EN BRESSE", - "nomCommune": "DAMPIERRE EN BRESSE" + "codePostal": "78790", + "codeCommune": "78237", + "libelleAcheminement": "FLINS NEUVE EGLISE", + "nomCommune": "FLINS NEUVE EGLISE" }, { - "codePostal": "21170", - "codeCommune": "21342", - "libelleAcheminement": "LAPERRIERE SUR SAONE", - "nomCommune": "LAPERRIERE SUR SAONE" + "codePostal": "65390", + "codeCommune": "65007", + "libelleAcheminement": "ANDREST", + "nomCommune": "ANDREST" }, { - "codePostal": "76730", - "codeCommune": "76629", - "libelleAcheminement": "ST OUEN LE MAUGER", - "nomCommune": "ST OUEN LE MAUGER" + "codePostal": "67320", + "codeCommune": "67134", + "libelleAcheminement": "ESCHWILLER", + "nomCommune": "ESCHWILLER" }, { - "codePostal": "77930", - "codeCommune": "77435", - "libelleAcheminement": "ST SAUVEUR SUR ECOLE", - "nomCommune": "ST SAUVEUR SUR ECOLE" + "codePostal": "78125", + "codeCommune": "78077", + "libelleAcheminement": "LA BOISSIERE ECOLE", + "nomCommune": "LA BOISSIERE ECOLE" }, { - "codePostal": "71190", - "codeCommune": "71172", - "libelleAcheminement": "DETTEY", - "nomCommune": "DETTEY" + "codePostal": "25115", + "codeCommune": "25467", + "libelleAcheminement": "POUILLEY LES VIGNES", + "nomCommune": "POUILLEY LES VIGNES" }, { - "codePostal": "21250", - "codeCommune": "21344", - "libelleAcheminement": "LECHATELET", - "nomCommune": "LECHATELET" + "codePostal": "78410", + "codeCommune": "78238", + "libelleAcheminement": "FLINS SUR SEINE", + "nomCommune": "FLINS SUR SEINE" }, { - "codePostal": "76480", - "codeCommune": "76631", - "libelleAcheminement": "ST PAER", - "nomCommune": "ST PAER" + "codePostal": "65150", + "codeCommune": "65009", + "libelleAcheminement": "ANERES", + "nomCommune": "ANERES" }, { - "codePostal": "77260", - "codeCommune": "77440", - "libelleAcheminement": "SAMMERON", - "nomCommune": "SAMMERON" + "codePostal": "67320", + "codeCommune": "67136", + "libelleAcheminement": "EYWILLER", + "nomCommune": "EYWILLER" }, { - "codePostal": "71640", - "codeCommune": "71182", - "libelleAcheminement": "DRACY LE FORT", - "nomCommune": "DRACY LE FORT" + "codePostal": "78200", + "codeCommune": "78082", + "libelleAcheminement": "BOISSY MAUVOISIN", + "nomCommune": "BOISSY MAUVOISIN" }, { - "codePostal": "21110", - "codeCommune": "21351", - "libelleAcheminement": "LONGCHAMP", - "nomCommune": "LONGCHAMP" + "codePostal": "25380", + "codeCommune": "25471", + "libelleAcheminement": "PROVENCHERE", + "nomCommune": "PROVENCHERE" }, { - "codePostal": "76113", - "codeCommune": "76634", - "libelleAcheminement": "ST PIERRE DE MANNEVILLE", - "nomCommune": "ST PIERRE DE MANNEVILLE" + "codePostal": "78330", + "codeCommune": "78242", + "libelleAcheminement": "FONTENAY LE FLEURY", + "nomCommune": "FONTENAY LE FLEURY" }, { - "codePostal": "77210", - "codeCommune": "77442", - "libelleAcheminement": "SAMOREAU", - "nomCommune": "SAMOREAU" + "codePostal": "65100", + "codeCommune": "65011", + "libelleAcheminement": "LES ANGLES", + "nomCommune": "LES ANGLES" }, { - "codePostal": "71800", - "codeCommune": "71185", - "libelleAcheminement": "DYO", - "nomCommune": "DYO" + "codePostal": "67640", + "codeCommune": "67137", + "libelleAcheminement": "FEGERSHEIM", + "nomCommune": "FEGERSHEIM" }, { - "codePostal": "21600", - "codeCommune": "21355", - "libelleAcheminement": "LONGVIC", - "nomCommune": "LONGVIC" + "codePostal": "78410", + "codeCommune": "78090", + "libelleAcheminement": "BOUAFLE", + "nomCommune": "BOUAFLE" }, { - "codePostal": "76660", - "codeCommune": "76635", - "libelleAcheminement": "ST PIERRE DES JONQUIERES", - "nomCommune": "ST PIERRE DES JONQUIERES" + "codePostal": "25430", + "codeCommune": "25476", + "libelleAcheminement": "RAHON", + "nomCommune": "RAHON" }, { - "codePostal": "77260", - "codeCommune": "77448", - "libelleAcheminement": "SEPT SORTS", - "nomCommune": "SEPT SORTS" + "codePostal": "78200", + "codeCommune": "78245", + "libelleAcheminement": "FONTENAY MAUVOISIN", + "nomCommune": "FONTENAY MAUVOISIN" }, { - "codePostal": "71190", - "codeCommune": "71192", - "libelleAcheminement": "ETANG SUR ARROUX", - "nomCommune": "ETANG SUR ARROUX" + "codePostal": "65370", + "codeCommune": "65012", + "libelleAcheminement": "ANLA", + "nomCommune": "ANLA" }, { - "codePostal": "21170", - "codeCommune": "21356", - "libelleAcheminement": "LOSNE", - "nomCommune": "LOSNE" + "codePostal": "67480", + "codeCommune": "67140", + "libelleAcheminement": "FORSTFELD", + "nomCommune": "FORSTFELD" }, { - "codePostal": "76320", - "codeCommune": "76640", - "libelleAcheminement": "ST PIERRE LES ELBEUF", - "nomCommune": "ST PIERRE LES ELBEUF" + "codePostal": "78380", + "codeCommune": "78092", + "libelleAcheminement": "BOUGIVAL", + "nomCommune": "BOUGIVAL" }, { - "codePostal": "77111", - "codeCommune": "77457", - "libelleAcheminement": "SOLERS", - "nomCommune": "SOLERS" + "codePostal": "25240", + "codeCommune": "25483", + "libelleAcheminement": "RECULFOZ", + "nomCommune": "RECULFOZ" }, { - "codePostal": "71150", - "codeCommune": "71202", - "libelleAcheminement": "FONTAINES", - "nomCommune": "FONTAINES" + "codePostal": "78490", + "codeCommune": "78262", + "libelleAcheminement": "GALLUIS", + "nomCommune": "GALLUIS" }, { - "codePostal": "21150", - "codeCommune": "21358", - "libelleAcheminement": "LUCENAY LE DUC", - "nomCommune": "LUCENAY LE DUC" + "codePostal": "65240", + "codeCommune": "65031", + "libelleAcheminement": "ARREAU", + "nomCommune": "ARREAU" }, { - "codePostal": "76510", - "codeCommune": "76652", - "libelleAcheminement": "ST VAAST D EQUIQUEVILLE", - "nomCommune": "ST VAAST D EQUIQUEVILLE" + "codePostal": "67220", + "codeCommune": "67143", + "libelleAcheminement": "FOUCHY", + "nomCommune": "FOUCHY" }, { - "codePostal": "77171", - "codeCommune": "77459", - "libelleAcheminement": "SOURDUN", - "nomCommune": "SOURDUN" + "codePostal": "78440", + "codeCommune": "78113", + "libelleAcheminement": "BRUEIL EN VEXIN", + "nomCommune": "BRUEIL EN VEXIN" }, { - "codePostal": "71420", - "codeCommune": "71212", - "libelleAcheminement": "GENELARD", - "nomCommune": "GENELARD" + "codePostal": "25160", + "codeCommune": "25486", + "libelleAcheminement": "REMORAY BOUJEONS", + "nomCommune": "REMORAY BOUJEONS" }, { - "codePostal": "21320", - "codeCommune": "21362", - "libelleAcheminement": "MACONGE", - "nomCommune": "MACONGE" + "codePostal": "78770", + "codeCommune": "78278", + "libelleAcheminement": "GOUPILLIERES", + "nomCommune": "GOUPILLIERES" }, { - "codePostal": "76890", - "codeCommune": "76654", - "libelleAcheminement": "ST VAAST DU VAL", - "nomCommune": "ST VAAST DU VAL" + "codePostal": "65500", + "codeCommune": "65035", + "libelleAcheminement": "ARTAGNAN", + "nomCommune": "ARTAGNAN" }, { - "codePostal": "77200", - "codeCommune": "77468", - "libelleAcheminement": "TORCY", - "nomCommune": "TORCY" + "codePostal": "67360", + "codeCommune": "67147", + "libelleAcheminement": "FROESCHWILLER", + "nomCommune": "FROESCHWILLER" }, { - "codePostal": "71290", - "codeCommune": "71213", - "libelleAcheminement": "LA GENETE", - "nomCommune": "LA GENETE" + "codePostal": "78240", + "codeCommune": "78133", + "libelleAcheminement": "CHAMBOURCY", + "nomCommune": "CHAMBOURCY" }, { - "codePostal": "21400", - "codeCommune": "21372", - "libelleAcheminement": "MAISEY LE DUC", - "nomCommune": "MAISEY LE DUC" + "codePostal": "25340", + "codeCommune": "25496", + "libelleAcheminement": "ROCHE LES CLERVAL", + "nomCommune": "ROCHE LES CLERVAL" }, { - "codePostal": "76890", - "codeCommune": "76656", - "libelleAcheminement": "ST VICTOR L ABBAYE", - "nomCommune": "ST VICTOR L ABBAYE" + "codePostal": "78550", + "codeCommune": "78285", + "libelleAcheminement": "GRESSEY", + "nomCommune": "GRESSEY" }, { - "codePostal": "77220", - "codeCommune": "77470", - "libelleAcheminement": "TOURNAN EN BRIE", - "nomCommune": "TOURNAN EN BRIE" + "codePostal": "65100", + "codeCommune": "65038", + "libelleAcheminement": "ARTIGUES", + "nomCommune": "ARTIGUES" }, { - "codePostal": "71300", - "codeCommune": "71222", - "libelleAcheminement": "GOURDON", - "nomCommune": "GOURDON" + "codePostal": "67700", + "codeCommune": "67149", + "libelleAcheminement": "FURCHHAUSEN", + "nomCommune": "FURCHHAUSEN" }, { - "codePostal": "21430", - "codeCommune": "21379", - "libelleAcheminement": "MARCHESEUIL", - "nomCommune": "MARCHESEUIL" + "codePostal": "78113", + "codeCommune": "78171", + "libelleAcheminement": "CONDE SUR VESGRE", + "nomCommune": "CONDE SUR VESGRE" }, { - "codePostal": "76400", - "codeCommune": "76670", - "libelleAcheminement": "SENNEVILLE SUR FECAMP", - "nomCommune": "SENNEVILLE SUR FECAMP" + "codePostal": "25440", + "codeCommune": "25507", + "libelleAcheminement": "ROUHE", + "nomCommune": "ROUHE" }, { - "codePostal": "77123", - "codeCommune": "77485", - "libelleAcheminement": "LE VAUDOUE", - "nomCommune": "LE VAUDOUE" + "codePostal": "78490", + "codeCommune": "78289", + "libelleAcheminement": "GROSROUVRE", + "nomCommune": "GROSROUVRE" }, { - "codePostal": "71960", - "codeCommune": "71236", - "libelleAcheminement": "IGE", - "nomCommune": "IGE" + "codePostal": "65240", + "codeCommune": "65039", + "libelleAcheminement": "ASPIN AURE", + "nomCommune": "ASPIN AURE" }, { - "codePostal": "21400", - "codeCommune": "21393", - "libelleAcheminement": "MASSINGY", - "nomCommune": "MASSINGY" + "codePostal": "67118", + "codeCommune": "67152", + "libelleAcheminement": "GEISPOLSHEIM", + "nomCommune": "GEISPOLSHEIM" }, { - "codePostal": "76440", - "codeCommune": "76672", - "libelleAcheminement": "SERQUEUX", - "nomCommune": "SERQUEUX" + "codePostal": "78290", + "codeCommune": "78190", + "libelleAcheminement": "CROISSY SUR SEINE", + "nomCommune": "CROISSY SUR SEINE" }, { - "codePostal": "77141", - "codeCommune": "77486", - "libelleAcheminement": "VAUDOY EN BRIE", - "nomCommune": "VAUDOY EN BRIE" + "codePostal": "25640", + "codeCommune": "25508", + "libelleAcheminement": "ROULANS", + "nomCommune": "ROULANS" }, { - "codePostal": "71340", - "codeCommune": "71238", - "libelleAcheminement": "IGUERANDE", - "nomCommune": "IGUERANDE" + "codePostal": "78930", + "codeCommune": "78291", + "libelleAcheminement": "GUERVILLE", + "nomCommune": "GUERVILLE" }, { - "codePostal": "21190", - "codeCommune": "21397", - "libelleAcheminement": "MAVILLY MANDELOT", - "nomCommune": "MAVILLY MANDELOT" + "codePostal": "65200", + "codeCommune": "65042", + "libelleAcheminement": "ASTE", + "nomCommune": "ASTE" }, { - "codePostal": "76116", - "codeCommune": "76673", - "libelleAcheminement": "SERVAVILLE SALMONVILLE", - "nomCommune": "SERVAVILLE SALMONVILLE" + "codePostal": "67140", + "codeCommune": "67155", + "libelleAcheminement": "GERTWILLER", + "nomCommune": "GERTWILLER" }, { - "codePostal": "77710", - "codeCommune": "77489", - "libelleAcheminement": "VAUX SUR LUNAIN", - "nomCommune": "VAUX SUR LUNAIN" + "codePostal": "78550", + "codeCommune": "78194", + "libelleAcheminement": "DANNEMARIE", + "nomCommune": "DANNEMARIE" }, { - "codePostal": "71390", - "codeCommune": "71247", - "libelleAcheminement": "JULLY LES BUXY", - "nomCommune": "JULLY LES BUXY" + "codePostal": "25290", + "codeCommune": "25511", + "libelleAcheminement": "RUREY", + "nomCommune": "RUREY" }, { - "codePostal": "21190", - "codeCommune": "21401", - "libelleAcheminement": "MELOISEY", - "nomCommune": "MELOISEY" + "codePostal": "78280", + "codeCommune": "78297", + "libelleAcheminement": "GUYANCOURT", + "nomCommune": "GUYANCOURT" }, { - "codePostal": "76440", - "codeCommune": "76678", - "libelleAcheminement": "SOMMERY", - "nomCommune": "SOMMERY" + "codePostal": "65240", + "codeCommune": "65050", + "libelleAcheminement": "AVAJAN", + "nomCommune": "AVAJAN" }, { - "codePostal": "77124", - "codeCommune": "77513", - "libelleAcheminement": "VILLENOY", - "nomCommune": "VILLENOY" + "codePostal": "67360", + "codeCommune": "67160", + "libelleAcheminement": "GOERSDORF", + "nomCommune": "GOERSDORF" }, { - "codePostal": "71240", - "codeCommune": "71249", - "libelleAcheminement": "LAIVES", - "nomCommune": "LAIVES" + "codePostal": "78920", + "codeCommune": "78206", + "libelleAcheminement": "ECQUEVILLY", + "nomCommune": "ECQUEVILLY" }, { - "codePostal": "21380", - "codeCommune": "21408", - "libelleAcheminement": "MESSIGNY ET VANTOUX", - "nomCommune": "MESSIGNY ET VANTOUX" + "codePostal": "25370", + "codeCommune": "25514", + "libelleAcheminement": "ST ANTOINE", + "nomCommune": "ST ANTOINE" }, { - "codePostal": "76540", - "codeCommune": "76685", - "libelleAcheminement": "THEROULDEVILLE", - "nomCommune": "THEROULDEVILLE" + "codePostal": "78250", + "codeCommune": "78299", + "libelleAcheminement": "HARDRICOURT", + "nomCommune": "HARDRICOURT" }, { - "codePostal": "77410", - "codeCommune": "77515", - "libelleAcheminement": "VILLEROY", - "nomCommune": "VILLEROY" + "codePostal": "65380", + "codeCommune": "65057", + "libelleAcheminement": "AZEREIX", + "nomCommune": "AZEREIX" }, { - "codePostal": "71870", - "codeCommune": "71250", - "libelleAcheminement": "LAIZE", - "nomCommune": "LAIZE" + "codePostal": "67210", + "codeCommune": "67164", + "libelleAcheminement": "GOXWILLER", + "nomCommune": "GOXWILLER" }, { - "codePostal": "21700", - "codeCommune": "21409", - "libelleAcheminement": "MEUILLEY", - "nomCommune": "MEUILLEY" + "codePostal": "78620", + "codeCommune": "78224", + "libelleAcheminement": "L ETANG LA VILLE", + "nomCommune": "L ETANG LA VILLE" }, { - "codePostal": "76440", - "codeCommune": "76691", - "libelleAcheminement": "LE THIL RIBERPRE", - "nomCommune": "LE THIL RIBERPRE" + "codePostal": "25640", + "codeCommune": "25518", + "libelleAcheminement": "ST HILAIRE", + "nomCommune": "ST HILAIRE" }, { - "codePostal": "77560", - "codeCommune": "77519", - "libelleAcheminement": "VILLIERS ST GEORGES", - "nomCommune": "VILLIERS ST GEORGES" + "codePostal": "78113", + "codeCommune": "78302", + "libelleAcheminement": "LA HAUTEVILLE", + "nomCommune": "LA HAUTEVILLE" }, { - "codePostal": "71530", - "codeCommune": "71257", - "libelleAcheminement": "LESSARD LE NATIONAL", - "nomCommune": "LESSARD LE NATIONAL" + "codePostal": "65140", + "codeCommune": "65061", + "libelleAcheminement": "BARBACHEN", + "nomCommune": "BARBACHEN" }, { - "codePostal": "21140", - "codeCommune": "21413", - "libelleAcheminement": "MILLERY", - "nomCommune": "MILLERY" + "codePostal": "67130", + "codeCommune": "67165", + "libelleAcheminement": "GRANDFONTAINE", + "nomCommune": "GRANDFONTAINE" }, { - "codePostal": "76730", - "codeCommune": "76694", - "libelleAcheminement": "TOCQUEVILLE EN CAUX", - "nomCommune": "TOCQUEVILLE EN CAUX" + "codePostal": "78740", + "codeCommune": "78227", + "libelleAcheminement": "EVECQUEMONT", + "nomCommune": "EVECQUEMONT" }, { - "codePostal": "77760", - "codeCommune": "77520", - "libelleAcheminement": "VILLIERS SOUS GREZ", - "nomCommune": "VILLIERS SOUS GREZ" + "codePostal": "25550", + "codeCommune": "25521", + "libelleAcheminement": "ST JULIEN LES MONTBELIARD", + "nomCommune": "ST JULIEN LES MONTBELIARD" }, { - "codePostal": "71110", - "codeCommune": "71259", - "libelleAcheminement": "LIGNY EN BRIONNAIS", - "nomCommune": "LIGNY EN BRIONNAIS" + "codePostal": "78125", + "codeCommune": "78307", + "libelleAcheminement": "HERMERAY", + "nomCommune": "HERMERAY" }, { - "codePostal": "21510", - "codeCommune": "21415", - "libelleAcheminement": "MINOT", - "nomCommune": "MINOT" + "codePostal": "65100", + "codeCommune": "65065", + "libelleAcheminement": "BARLEST", + "nomCommune": "BARLEST" }, { - "codePostal": "76190", - "codeCommune": "76702", - "libelleAcheminement": "TOUFFREVILLE LA CORBELINE", - "nomCommune": "TOUFFREVILLE LA CORBELINE" + "codePostal": "67190", + "codeCommune": "67168", + "libelleAcheminement": "GRESSWILLER", + "nomCommune": "GRESSWILLER" }, { - "codePostal": "77230", - "codeCommune": "77525", - "libelleAcheminement": "VINANTES", - "nomCommune": "VINANTES" + "codePostal": "78125", + "codeCommune": "78269", + "libelleAcheminement": "GAZERAN", + "nomCommune": "GAZERAN" }, { - "codePostal": "71500", - "codeCommune": "71263", - "libelleAcheminement": "LOUHANS", - "nomCommune": "LOUHANS" + "codePostal": "25260", + "codeCommune": "25524", + "libelleAcheminement": "ST MAURICE COLOMBIER", + "nomCommune": "ST MAURICE COLOMBIER" }, { - "codePostal": "21500", - "codeCommune": "21425", - "libelleAcheminement": "MONTBARD", - "nomCommune": "MONTBARD" + "codePostal": "78800", + "codeCommune": "78311", + "libelleAcheminement": "HOUILLES", + "nomCommune": "HOUILLES" }, { - "codePostal": "76280", - "codeCommune": "76716", - "libelleAcheminement": "TURRETOT", - "nomCommune": "TURRETOT" + "codePostal": "65460", + "codeCommune": "65072", + "libelleAcheminement": "BAZET", + "nomCommune": "BAZET" }, { - "codePostal": "77560", - "codeCommune": "77530", - "libelleAcheminement": "VOULTON", - "nomCommune": "VOULTON" + "codePostal": "67240", + "codeCommune": "67169", + "libelleAcheminement": "GRIES", + "nomCommune": "GRIES" }, { - "codePostal": "71500", - "codeCommune": "71263", - "libelleAcheminement": "LOUHANS", - "nomCommune": "LOUHANS" + "codePostal": "78440", + "codeCommune": "78314", + "libelleAcheminement": "ISSOU", + "nomCommune": "ISSOU" }, { - "codePostal": "21460", - "codeCommune": "21426", - "libelleAcheminement": "MONTBERTHAULT", - "nomCommune": "MONTBERTHAULT" + "codePostal": "25630", + "codeCommune": "25526", + "libelleAcheminement": "STE SUZANNE", + "nomCommune": "STE SUZANNE" }, { - "codePostal": "76270", - "codeCommune": "76724", - "libelleAcheminement": "VATIERVILLE", - "nomCommune": "VATIERVILLE" + "codePostal": "78440", + "codeCommune": "78317", + "libelleAcheminement": "JAMBVILLE", + "nomCommune": "JAMBVILLE" }, { - "codePostal": "77940", - "codeCommune": "77531", - "libelleAcheminement": "VOULX", - "nomCommune": "VOULX" + "codePostal": "65170", + "codeCommune": "65075", + "libelleAcheminement": "BAZUS AURE", + "nomCommune": "BAZUS AURE" }, { - "codePostal": "71000", - "codeCommune": "71270", - "libelleAcheminement": "MACON", - "nomCommune": "MACON" + "codePostal": "67110", + "codeCommune": "67176", + "libelleAcheminement": "GUNDERSHOFFEN", + "nomCommune": "GUNDERSHOFFEN" }, { - "codePostal": "21190", - "codeCommune": "21428", - "libelleAcheminement": "MONTHELIE", - "nomCommune": "MONTHELIE" + "codePostal": "78270", + "codeCommune": "78320", + "libelleAcheminement": "NOTRE DAME DE LA MER", + "nomCommune": "NOTRE DAME DE LA MER" }, { - "codePostal": "76940", - "codeCommune": "76727", - "libelleAcheminement": "VATTEVILLE LA RUE", - "nomCommune": "VATTEVILLE LA RUE" + "codePostal": "25410", + "codeCommune": "25527", + "libelleAcheminement": "ST VIT", + "nomCommune": "ST VIT" }, { - "codePostal": "78660", - "codeCommune": "78003", - "libelleAcheminement": "ABLIS", - "nomCommune": "ABLIS" + "codePostal": "78270", + "codeCommune": "78337", + "libelleAcheminement": "LIMETZ VILLEZ", + "nomCommune": "LIMETZ VILLEZ" }, { - "codePostal": "71420", - "codeCommune": "71281", - "libelleAcheminement": "MARLY SUR ARROUX", - "nomCommune": "MARLY SUR ARROUX" + "codePostal": "65380", + "codeCommune": "65080", + "libelleAcheminement": "BENAC", + "nomCommune": "BENAC" }, { - "codePostal": "21610", - "codeCommune": "21433", - "libelleAcheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", - "nomCommune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE" + "codePostal": "67110", + "codeCommune": "67176", + "libelleAcheminement": "GUNDERSHOFFEN", + "nomCommune": "GUNDERSHOFFEN" }, { - "codePostal": "76730", - "codeCommune": "76731", - "libelleAcheminement": "VENESTANVILLE", - "nomCommune": "VENESTANVILLE" + "codePostal": "78350", + "codeCommune": "78322", + "libelleAcheminement": "JOUY EN JOSAS", + "nomCommune": "JOUY EN JOSAS" }, { - "codePostal": "78410", - "codeCommune": "78029", - "libelleAcheminement": "AUBERGENVILLE", - "nomCommune": "AUBERGENVILLE" + "codePostal": "25430", + "codeCommune": "25529", + "libelleAcheminement": "SANCEY", + "nomCommune": "SANCEY" }, { - "codePostal": "71240", - "codeCommune": "71283", - "libelleAcheminement": "MARNAY", - "nomCommune": "MARNAY" + "codePostal": "78350", + "codeCommune": "78343", + "libelleAcheminement": "LES LOGES EN JOSAS", + "nomCommune": "LES LOGES EN JOSAS" }, { - "codePostal": "21610", - "codeCommune": "21433", - "libelleAcheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", - "nomCommune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE" + "codePostal": "65100", + "codeCommune": "65082", + "libelleAcheminement": "BERBERUST LIAS", + "nomCommune": "BERBERUST LIAS" }, { - "codePostal": "76450", - "codeCommune": "76732", - "libelleAcheminement": "BUTOT VENESVILLE", - "nomCommune": "BUTOT VENESVILLE" + "codePostal": "67500", + "codeCommune": "67180", + "libelleAcheminement": "HAGUENAU", + "nomCommune": "HAGUENAU" }, { - "codePostal": "78610", - "codeCommune": "78030", - "libelleAcheminement": "AUFFARGIS", - "nomCommune": "AUFFARGIS" + "codePostal": "78580", + "codeCommune": "78325", + "libelleAcheminement": "JUMEAUVILLE", + "nomCommune": "JUMEAUVILLE" }, { - "codePostal": "71640", - "codeCommune": "71292", - "libelleAcheminement": "MELLECEY", - "nomCommune": "MELLECEY" + "codePostal": "25580", + "codeCommune": "25535", + "libelleAcheminement": "SAULES", + "nomCommune": "SAULES" }, { - "codePostal": "21400", - "codeCommune": "21435", - "libelleAcheminement": "MONTLIOT ET COURCELLES", - "nomCommune": "MONTLIOT ET COURCELLES" + "codePostal": "78980", + "codeCommune": "78346", + "libelleAcheminement": "LONGNES", + "nomCommune": "LONGNES" }, { - "codePostal": "76450", - "codeCommune": "76732", - "libelleAcheminement": "BUTOT VENESVILLE", - "nomCommune": "BUTOT VENESVILLE" + "codePostal": "65360", + "codeCommune": "65084", + "libelleAcheminement": "BERNAC DESSUS", + "nomCommune": "BERNAC DESSUS" }, { - "codePostal": "78770", - "codeCommune": "78036", - "libelleAcheminement": "AUTOUILLET", - "nomCommune": "AUTOUILLET" + "codePostal": "67140", + "codeCommune": "67189", + "libelleAcheminement": "HEILIGENSTEIN", + "nomCommune": "HEILIGENSTEIN" }, { - "codePostal": "71300", - "codeCommune": "71306", - "libelleAcheminement": "MONTCEAU LES MINES", - "nomCommune": "MONTCEAU LES MINES" + "codePostal": "78270", + "codeCommune": "78344", + "libelleAcheminement": "LOMMOYE", + "nomCommune": "LOMMOYE" }, { - "codePostal": "21230", - "codeCommune": "21447", - "libelleAcheminement": "MUSIGNY", - "nomCommune": "MUSIGNY" + "codePostal": "25750", + "codeCommune": "25540", + "libelleAcheminement": "SEMONDANS", + "nomCommune": "SEMONDANS" }, { - "codePostal": "76980", - "codeCommune": "76735", - "libelleAcheminement": "VEULES LES ROSES", - "nomCommune": "VEULES LES ROSES" + "codePostal": "78200", + "codeCommune": "78354", + "libelleAcheminement": "MAGNANVILLE", + "nomCommune": "MAGNANVILLE" }, { - "codePostal": "78870", - "codeCommune": "78043", - "libelleAcheminement": "BAILLY", - "nomCommune": "BAILLY" + "codePostal": "65220", + "codeCommune": "65085", + "libelleAcheminement": "BERNADETS DEBAT", + "nomCommune": "BERNADETS DEBAT" }, { - "codePostal": "71500", - "codeCommune": "71311", - "libelleAcheminement": "MONTCONY", - "nomCommune": "MONTCONY" + "codePostal": "67230", + "codeCommune": "67192", + "libelleAcheminement": "HERBSHEIM", + "nomCommune": "HERBSHEIM" }, { - "codePostal": "21700", - "codeCommune": "21464", - "libelleAcheminement": "NUITS ST GEORGES", - "nomCommune": "NUITS ST GEORGES" + "codePostal": "78114", + "codeCommune": "78356", + "libelleAcheminement": "MAGNY LES HAMEAUX", + "nomCommune": "MAGNY LES HAMEAUX" }, { - "codePostal": "76280", - "codeCommune": "76741", - "libelleAcheminement": "VILLAINVILLE", - "nomCommune": "VILLAINVILLE" + "codePostal": "25380", + "codeCommune": "25554", + "libelleAcheminement": "SURMONT", + "nomCommune": "SURMONT" }, { - "codePostal": "78270", - "codeCommune": "78057", - "libelleAcheminement": "BENNECOURT", - "nomCommune": "BENNECOURT" + "codePostal": "78114", + "codeCommune": "78356", + "libelleAcheminement": "MAGNY LES HAMEAUX", + "nomCommune": "MAGNY LES HAMEAUX" }, { - "codePostal": "71520", - "codeCommune": "71316", - "libelleAcheminement": "MONTMELARD", - "nomCommune": "MONTMELARD" + "codePostal": "65370", + "codeCommune": "65087", + "libelleAcheminement": "BERTREN", + "nomCommune": "BERTREN" }, { - "codePostal": "21490", - "codeCommune": "21469", - "libelleAcheminement": "ORGEUX", - "nomCommune": "ORGEUX" + "codePostal": "67260", + "codeCommune": "67199", + "libelleAcheminement": "HINSINGEN", + "nomCommune": "HINSINGEN" }, { - "codePostal": "76110", - "codeCommune": "76747", - "libelleAcheminement": "VIRVILLE", - "nomCommune": "VIRVILLE" + "codePostal": "78750", + "codeCommune": "78367", + "libelleAcheminement": "MAREIL MARLY", + "nomCommune": "MAREIL MARLY" }, { - "codePostal": "78270", - "codeCommune": "78068", - "libelleAcheminement": "BLARU", - "nomCommune": "BLARU" + "codePostal": "25400", + "codeCommune": "25555", + "libelleAcheminement": "TAILLECOURT", + "nomCommune": "TAILLECOURT" }, { - "codePostal": "71320", - "codeCommune": "71317", - "libelleAcheminement": "MONTMORT", - "nomCommune": "MONTMORT" + "codePostal": "78600", + "codeCommune": "78358", + "libelleAcheminement": "MAISONS LAFFITTE", + "nomCommune": "MAISONS LAFFITTE" }, { - "codePostal": "21360", - "codeCommune": "21476", - "libelleAcheminement": "PAINBLANC", - "nomCommune": "PAINBLANC" + "codePostal": "65410", + "codeCommune": "65092", + "libelleAcheminement": "BEYREDE JUMET CAMOUS", + "nomCommune": "BEYREDE JUMET CAMOUS" }, { - "codePostal": "76480", - "codeCommune": "76750", - "libelleAcheminement": "YAINVILLE", - "nomCommune": "YAINVILLE" + "codePostal": "67270", + "codeCommune": "67202", + "libelleAcheminement": "HOCHFELDEN", + "nomCommune": "HOCHFELDEN" }, { - "codePostal": "78113", - "codeCommune": "78096", - "libelleAcheminement": "BOURDONNE", - "nomCommune": "BOURDONNE" + "codePostal": "78124", + "codeCommune": "78368", + "libelleAcheminement": "MAREIL SUR MAULDRE", + "nomCommune": "MAREIL SUR MAULDRE" }, { - "codePostal": "71270", - "codeCommune": "71329", - "libelleAcheminement": "NAVILLY", - "nomCommune": "NAVILLY" + "codePostal": "25680", + "codeCommune": "25556", + "libelleAcheminement": "TALLANS", + "nomCommune": "TALLANS" }, { - "codePostal": "21370", - "codeCommune": "21478", - "libelleAcheminement": "PASQUES", - "nomCommune": "PASQUES" + "codePostal": "78770", + "codeCommune": "78364", + "libelleAcheminement": "MARCQ", + "nomCommune": "MARCQ" }, { - "codePostal": "76520", - "codeCommune": "76753", - "libelleAcheminement": "YMARE", - "nomCommune": "YMARE" + "codePostal": "65320", + "codeCommune": "65100", + "libelleAcheminement": "BORDERES SUR L ECHEZ", + "nomCommune": "BORDERES SUR L ECHEZ" }, { - "codePostal": "78980", - "codeCommune": "78107", - "libelleAcheminement": "BREVAL", - "nomCommune": "BREVAL" + "codePostal": "67720", + "codeCommune": "67205", + "libelleAcheminement": "HOERDT", + "nomCommune": "HOERDT" }, { - "codePostal": "71600", - "codeCommune": "71331", - "libelleAcheminement": "NOCHIZE", - "nomCommune": "NOCHIZE" + "codePostal": "78160", + "codeCommune": "78372", + "libelleAcheminement": "MARLY LE ROI", + "nomCommune": "MARLY LE ROI" }, { - "codePostal": "21370", - "codeCommune": "21485", - "libelleAcheminement": "PLOMBIERES LES DIJON", - "nomCommune": "PLOMBIERES LES DIJON" + "codePostal": "25220", + "codeCommune": "25560", + "libelleAcheminement": "THISE", + "nomCommune": "THISE" }, { - "codePostal": "76111", - "codeCommune": "76754", - "libelleAcheminement": "YPORT", - "nomCommune": "YPORT" + "codePostal": "78550", + "codeCommune": "78381", + "libelleAcheminement": "MAULETTE", + "nomCommune": "MAULETTE" }, { - "codePostal": "78440", - "codeCommune": "78113", - "libelleAcheminement": "BRUEIL EN VEXIN", - "nomCommune": "BRUEIL EN VEXIN" + "codePostal": "65190", + "codeCommune": "65101", + "libelleAcheminement": "BORDES", + "nomCommune": "BORDES" }, { - "codePostal": "71380", - "codeCommune": "71333", - "libelleAcheminement": "OSLON", - "nomCommune": "OSLON" + "codePostal": "67250", + "codeCommune": "67206", + "libelleAcheminement": "HOFFEN", + "nomCommune": "HOFFEN" }, { - "codePostal": "21450", - "codeCommune": "21490", - "libelleAcheminement": "POISEUL LA VILLE ET LAPERRIERE", - "nomCommune": "POISEUL LA VILLE ET LAPERRIERE" + "codePostal": "78550", + "codeCommune": "78381", + "libelleAcheminement": "MAULETTE", + "nomCommune": "MAULETTE" }, { - "codePostal": "76190", - "codeCommune": "76758", - "libelleAcheminement": "YVETOT", - "nomCommune": "YVETOT" + "codePostal": "25320", + "codeCommune": "25561", + "libelleAcheminement": "THORAISE", + "nomCommune": "THORAISE" }, { - "codePostal": "78530", - "codeCommune": "78117", - "libelleAcheminement": "BUC", - "nomCommune": "BUC" + "codePostal": "78670", + "codeCommune": "78384", + "libelleAcheminement": "MEDAN", + "nomCommune": "MEDAN" }, { - "codePostal": "71600", - "codeCommune": "71342", - "libelleAcheminement": "PARAY LE MONIAL", - "nomCommune": "PARAY LE MONIAL" + "codePostal": "65370", + "codeCommune": "65109", + "libelleAcheminement": "BRAMEVAQUE", + "nomCommune": "BRAMEVAQUE" }, { - "codePostal": "21120", - "codeCommune": "21491", - "libelleAcheminement": "POISEUL LES SAULX", - "nomCommune": "POISEUL LES SAULX" + "codePostal": "67310", + "codeCommune": "67208", + "libelleAcheminement": "HOHENGOEFT", + "nomCommune": "HOHENGOEFT" }, { - "codePostal": "77390", - "codeCommune": "77007", - "libelleAcheminement": "ARGENTIERES", - "nomCommune": "ARGENTIERES" + "codePostal": "78125", + "codeCommune": "78407", + "libelleAcheminement": "MITTAINVILLE", + "nomCommune": "MITTAINVILLE" }, { - "codePostal": "78420", - "codeCommune": "78124", - "libelleAcheminement": "CARRIERES SUR SEINE", - "nomCommune": "CARRIERES SUR SEINE" + "codePostal": "25310", + "codeCommune": "25562", + "libelleAcheminement": "THULAY", + "nomCommune": "THULAY" }, { - "codePostal": "71220", - "codeCommune": "71344", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "78200", + "codeCommune": "78385", + "libelleAcheminement": "MENERVILLE", + "nomCommune": "MENERVILLE" }, { - "codePostal": "21630", - "codeCommune": "21492", - "libelleAcheminement": "POMMARD", - "nomCommune": "POMMARD" + "codePostal": "65140", + "codeCommune": "65114", + "libelleAcheminement": "BUZON", + "nomCommune": "BUZON" }, { - "codePostal": "77570", - "codeCommune": "77011", - "libelleAcheminement": "AUFFERVILLE", - "nomCommune": "AUFFERVILLE" + "codePostal": "67810", + "codeCommune": "67212", + "libelleAcheminement": "HOLTZHEIM", + "nomCommune": "HOLTZHEIM" }, { - "codePostal": "78170", - "codeCommune": "78126", - "libelleAcheminement": "LA CELLE ST CLOUD", - "nomCommune": "LA CELLE ST CLOUD" + "codePostal": "78980", + "codeCommune": "78413", + "libelleAcheminement": "MONDREVILLE", + "nomCommune": "MONDREVILLE" }, { - "codePostal": "71400", - "codeCommune": "71349", - "libelleAcheminement": "LA PETITE VERRIERE", - "nomCommune": "LA PETITE VERRIERE" + "codePostal": "25300", + "codeCommune": "25609", + "libelleAcheminement": "VERRIERES DE JOUX", + "nomCommune": "VERRIERES DE JOUX" }, { - "codePostal": "21390", - "codeCommune": "21505", - "libelleAcheminement": "PRECY SOUS THIL", - "nomCommune": "PRECY SOUS THIL" + "codePostal": "78470", + "codeCommune": "78406", + "libelleAcheminement": "MILON LA CHAPELLE", + "nomCommune": "MILON LA CHAPELLE" }, { - "codePostal": "77167", - "codeCommune": "77016", - "libelleAcheminement": "BAGNEAUX SUR LOING", - "nomCommune": "BAGNEAUX SUR LOING" + "codePostal": "65190", + "codeCommune": "65120", + "libelleAcheminement": "CALAVANTE", + "nomCommune": "CALAVANTE" }, { - "codePostal": "78150", - "codeCommune": "78158", - "libelleAcheminement": "LE CHESNAY ROCQUENCOURT", - "nomCommune": "LE CHESNAY ROCQUENCOURT" + "codePostal": "67250", + "codeCommune": "67213", + "libelleAcheminement": "HUNSPACH", + "nomCommune": "HUNSPACH" }, { - "codePostal": "71600", - "codeCommune": "71354", - "libelleAcheminement": "POISSON", - "nomCommune": "POISSON" + "codePostal": "78124", + "codeCommune": "78415", + "libelleAcheminement": "MONTAINVILLE", + "nomCommune": "MONTAINVILLE" }, { - "codePostal": "21700", - "codeCommune": "21506", - "libelleAcheminement": "PREMEAUX PRISSEY", - "nomCommune": "PREMEAUX PRISSEY" + "codePostal": "25660", + "codeCommune": "25611", + "libelleAcheminement": "LA VEZE", + "nomCommune": "LA VEZE" }, { - "codePostal": "77970", - "codeCommune": "77020", - "libelleAcheminement": "BANNOST VILLEGAGNON", - "nomCommune": "BANNOST VILLEGAGNON" + "codePostal": "78840", + "codeCommune": "78410", + "libelleAcheminement": "MOISSON", + "nomCommune": "MOISSON" }, { - "codePostal": "78460", - "codeCommune": "78160", - "libelleAcheminement": "CHEVREUSE", - "nomCommune": "CHEVREUSE" + "codePostal": "65330", + "codeCommune": "65128", + "libelleAcheminement": "CASTELBAJAC", + "nomCommune": "CASTELBAJAC" }, { - "codePostal": "71800", - "codeCommune": "71361", - "libelleAcheminement": "PRIZY", - "nomCommune": "PRIZY" + "codePostal": "67400", + "codeCommune": "67218", + "libelleAcheminement": "ILLKIRCH GRAFFENSTADEN", + "nomCommune": "ILLKIRCH GRAFFENSTADEN" }, { - "codePostal": "21500", - "codeCommune": "21518", - "libelleAcheminement": "QUINCY LE VICOMTE", - "nomCommune": "QUINCY LE VICOMTE" + "codePostal": "78270", + "codeCommune": "78437", + "libelleAcheminement": "MOUSSEAUX SUR SEINE", + "nomCommune": "MOUSSEAUX SUR SEINE" }, { - "codePostal": "77130", - "codeCommune": "77021", - "libelleAcheminement": "BARBEY", - "nomCommune": "BARBEY" + "codePostal": "25870", + "codeCommune": "25612", + "libelleAcheminement": "VIEILLEY", + "nomCommune": "VIEILLEY" }, { - "codePostal": "78120", - "codeCommune": "78164", - "libelleAcheminement": "CLAIREFONTAINE EN YVELINES", - "nomCommune": "CLAIREFONTAINE EN YVELINES" + "codePostal": "78180", + "codeCommune": "78423", + "libelleAcheminement": "MONTIGNY LE BRETONNEUX", + "nomCommune": "MONTIGNY LE BRETONNEUX" }, { - "codePostal": "71460", - "codeCommune": "71363", - "libelleAcheminement": "LE PULEY", - "nomCommune": "LE PULEY" + "codePostal": "65230", + "codeCommune": "65129", + "libelleAcheminement": "CASTELNAU MAGNOAC", + "nomCommune": "CASTELNAU MAGNOAC" }, { - "codePostal": "21310", - "codeCommune": "21522", - "libelleAcheminement": "RENEVE", - "nomCommune": "RENEVE" + "codePostal": "67340", + "codeCommune": "67222", + "libelleAcheminement": "INGWILLER", + "nomCommune": "INGWILLER" }, { - "codePostal": "77910", - "codeCommune": "77023", - "libelleAcheminement": "BARCY", - "nomCommune": "BARCY" + "codePostal": "78590", + "codeCommune": "78455", + "libelleAcheminement": "NOISY LE ROI", + "nomCommune": "NOISY LE ROI" }, { - "codePostal": "78270", - "codeCommune": "78188", - "libelleAcheminement": "CRAVENT", - "nomCommune": "CRAVENT" + "codePostal": "68230", + "codeCommune": "68338", + "libelleAcheminement": "TURCKHEIM", + "nomCommune": "TURCKHEIM" }, { - "codePostal": "71960", - "codeCommune": "71371", - "libelleAcheminement": "LA ROCHE VINEUSE", - "nomCommune": "LA ROCHE VINEUSE" + "codePostal": "78790", + "codeCommune": "78439", + "libelleAcheminement": "MULCENT", + "nomCommune": "MULCENT" }, { - "codePostal": "21530", - "codeCommune": "21525", - "libelleAcheminement": "LA ROCHE EN BRENIL", - "nomCommune": "LA ROCHE EN BRENIL" + "codePostal": "65700", + "codeCommune": "65137", + "libelleAcheminement": "CAUSSADE RIVIERE", + "nomCommune": "CAUSSADE RIVIERE" }, { - "codePostal": "77560", - "codeCommune": "77026", - "libelleAcheminement": "BEAUCHERY ST MARTIN", - "nomCommune": "BEAUCHERY ST MARTIN" + "codePostal": "67880", + "codeCommune": "67223", + "libelleAcheminement": "INNENHEIM", + "nomCommune": "INNENHEIM" }, { - "codePostal": "78290", - "codeCommune": "78190", - "libelleAcheminement": "CROISSY SUR SEINE", - "nomCommune": "CROISSY SUR SEINE" + "codePostal": "78910", + "codeCommune": "78474", + "libelleAcheminement": "ORVILLIERS", + "nomCommune": "ORVILLIERS" }, { - "codePostal": "71580", - "codeCommune": "71379", - "libelleAcheminement": "SAGY", - "nomCommune": "SAGY" + "codePostal": "68510", + "codeCommune": "68341", + "libelleAcheminement": "UFFHEIM", + "nomCommune": "UFFHEIM" }, { - "codePostal": "21540", - "codeCommune": "21539", - "libelleAcheminement": "ST ANTHOT", - "nomCommune": "ST ANTHOT" + "codePostal": "78640", + "codeCommune": "78442", + "libelleAcheminement": "NEAUPHLE LE CHATEAU", + "nomCommune": "NEAUPHLE LE CHATEAU" }, { - "codePostal": "77510", - "codeCommune": "77030", - "libelleAcheminement": "BELLOT", - "nomCommune": "BELLOT" + "codePostal": "65800", + "codeCommune": "65146", + "libelleAcheminement": "CHIS", + "nomCommune": "CHIS" }, { - "codePostal": "78690", - "codeCommune": "78220", - "libelleAcheminement": "LES ESSARTS LE ROI", - "nomCommune": "LES ESSARTS LE ROI" + "codePostal": "67930", + "codeCommune": "67235", + "libelleAcheminement": "KESSELDORF", + "nomCommune": "KESSELDORF" }, { - "codePostal": "71430", - "codeCommune": "71388", - "libelleAcheminement": "ST AUBIN EN CHAROLLAIS", - "nomCommune": "ST AUBIN EN CHAROLLAIS" + "codePostal": "78125", + "codeCommune": "78497", + "libelleAcheminement": "POIGNY LA FORET", + "nomCommune": "POIGNY LA FORET" }, { - "codePostal": "21350", - "codeCommune": "21544", - "libelleAcheminement": "STE COLOMBE EN AUXOIS", - "nomCommune": "STE COLOMBE EN AUXOIS" + "codePostal": "68600", + "codeCommune": "68360", + "libelleAcheminement": "WECKOLSHEIM", + "nomCommune": "WECKOLSHEIM" }, { - "codePostal": "77570", - "codeCommune": "77045", - "libelleAcheminement": "BOUGLIGNY", - "nomCommune": "BOUGLIGNY" + "codePostal": "78370", + "codeCommune": "78490", + "libelleAcheminement": "PLAISIR", + "nomCommune": "PLAISIR" }, { - "codePostal": "78200", - "codeCommune": "78231", - "libelleAcheminement": "FAVRIEUX", - "nomCommune": "FAVRIEUX" + "codePostal": "65300", + "codeCommune": "65150", + "libelleAcheminement": "CLARENS", + "nomCommune": "CLARENS" }, { - "codePostal": "71390", - "codeCommune": "71392", - "libelleAcheminement": "ST BOIL", - "nomCommune": "ST BOIL" + "codePostal": "67120", + "codeCommune": "67247", + "libelleAcheminement": "KOLBSHEIM", + "nomCommune": "KOLBSHEIM" }, { - "codePostal": "21690", - "codeCommune": "21552", - "libelleAcheminement": "ST HELIER", - "nomCommune": "ST HELIER" + "codePostal": "78730", + "codeCommune": "78499", + "libelleAcheminement": "PONTHEVRARD", + "nomCommune": "PONTHEVRARD" }, { - "codePostal": "77240", - "codeCommune": "77067", - "libelleAcheminement": "CESSON", - "nomCommune": "CESSON" + "codePostal": "68320", + "codeCommune": "68366", + "libelleAcheminement": "WICKERSCHWIHR", + "nomCommune": "WICKERSCHWIHR" }, { - "codePostal": "78200", - "codeCommune": "78234", - "libelleAcheminement": "FLACOURT", - "nomCommune": "FLACOURT" + "codePostal": "78300", + "codeCommune": "78498", + "libelleAcheminement": "POISSY", + "nomCommune": "POISSY" }, { - "codePostal": "71250", - "codeCommune": "71397", - "libelleAcheminement": "STE CECILE", - "nomCommune": "STE CECILE" + "codePostal": "65350", + "codeCommune": "65153", + "libelleAcheminement": "COUSSAN", + "nomCommune": "COUSSAN" }, { - "codePostal": "21410", - "codeCommune": "21553", - "libelleAcheminement": "ST JEAN DE BOEUF", - "nomCommune": "ST JEAN DE BOEUF" + "codePostal": "67220", + "codeCommune": "67255", + "libelleAcheminement": "LALAYE", + "nomCommune": "LALAYE" }, { - "codePostal": "77520", - "codeCommune": "77068", - "libelleAcheminement": "CESSOY EN MONTOIS", - "nomCommune": "CESSOY EN MONTOIS" + "codePostal": "78440", + "codeCommune": "78536", + "libelleAcheminement": "SAILLY", + "nomCommune": "SAILLY" }, { - "codePostal": "78250", - "codeCommune": "78261", - "libelleAcheminement": "GAILLON SUR MONTCIENT", - "nomCommune": "GAILLON SUR MONTCIENT" + "codePostal": "68820", + "codeCommune": "68370", + "libelleAcheminement": "WILDENSTEIN", + "nomCommune": "WILDENSTEIN" }, { - "codePostal": "71110", - "codeCommune": "71415", - "libelleAcheminement": "STE FOY", - "nomCommune": "STE FOY" + "codePostal": "78300", + "codeCommune": "78498", + "libelleAcheminement": "POISSY", + "nomCommune": "POISSY" }, { - "codePostal": "21700", - "codeCommune": "21564", - "libelleAcheminement": "ST NICOLAS LES CITEAUX", - "nomCommune": "ST NICOLAS LES CITEAUX" + "codePostal": "65130", + "codeCommune": "65162", + "libelleAcheminement": "ESCONNETS", + "nomCommune": "ESCONNETS" }, { - "codePostal": "77120", - "codeCommune": "77070", - "libelleAcheminement": "CHAILLY EN BRIE", - "nomCommune": "CHAILLY EN BRIE" + "codePostal": "67700", + "codeCommune": "67258", + "libelleAcheminement": "LANDERSHEIM", + "nomCommune": "LANDERSHEIM" }, { - "codePostal": "78490", - "codeCommune": "78289", - "libelleAcheminement": "GROSROUVRE", - "nomCommune": "GROSROUVRE" + "codePostal": "78100", + "codeCommune": "78551", + "libelleAcheminement": "ST GERMAIN EN LAYE", + "nomCommune": "ST GERMAIN EN LAYE" }, { - "codePostal": "71330", - "codeCommune": "71419", - "libelleAcheminement": "ST GERMAIN DU BOIS", - "nomCommune": "ST GERMAIN DU BOIS" + "codePostal": "68920", + "codeCommune": "68374", + "libelleAcheminement": "WINTZENHEIM", + "nomCommune": "WINTZENHEIM" }, { - "codePostal": "21230", - "codeCommune": "21567", - "libelleAcheminement": "ST PRIX LES ARNAY", - "nomCommune": "ST PRIX LES ARNAY" + "codePostal": "78660", + "codeCommune": "78506", + "libelleAcheminement": "PRUNAY EN YVELINES", + "nomCommune": "PRUNAY EN YVELINES" }, { - "codePostal": "77540", - "codeCommune": "77087", - "libelleAcheminement": "LA CHAPELLE IGER", - "nomCommune": "LA CHAPELLE IGER" + "codePostal": "65120", + "codeCommune": "65168", + "libelleAcheminement": "ESQUIEZE SERE", + "nomCommune": "ESQUIEZE SERE" }, { - "codePostal": "78520", - "codeCommune": "78290", - "libelleAcheminement": "GUERNES", - "nomCommune": "GUERNES" + "codePostal": "67340", + "codeCommune": "67265", + "libelleAcheminement": "LICHTENBERG", + "nomCommune": "LICHTENBERG" }, { - "codePostal": "71800", - "codeCommune": "71421", - "libelleAcheminement": "ST GERMAIN EN BRIONNAIS", - "nomCommune": "ST GERMAIN EN BRIONNAIS" + "codePostal": "78980", + "codeCommune": "78558", + "libelleAcheminement": "ST ILLIERS LA VILLE", + "nomCommune": "ST ILLIERS LA VILLE" }, { - "codePostal": "21190", - "codeCommune": "21569", - "libelleAcheminement": "ST ROMAIN", - "nomCommune": "ST ROMAIN" + "codePostal": "68600", + "codeCommune": "68379", + "libelleAcheminement": "WOLFGANTZEN", + "nomCommune": "WOLFGANTZEN" }, { - "codePostal": "77320", - "codeCommune": "77093", - "libelleAcheminement": "LA CHAPELLE MOUTILS", - "nomCommune": "LA CHAPELLE MOUTILS" + "codePostal": "78660", + "codeCommune": "78506", + "libelleAcheminement": "PRUNAY EN YVELINES", + "nomCommune": "PRUNAY EN YVELINES" }, { - "codePostal": "78113", - "codeCommune": "78302", - "libelleAcheminement": "LA HAUTEVILLE", - "nomCommune": "LA HAUTEVILLE" + "codePostal": "65170", + "codeCommune": "65172", + "libelleAcheminement": "ESTENSAN", + "nomCommune": "ESTENSAN" }, { - "codePostal": "71390", - "codeCommune": "71426", - "libelleAcheminement": "STE HELENE", - "nomCommune": "STE HELENE" + "codePostal": "67380", + "codeCommune": "67267", + "libelleAcheminement": "LINGOLSHEIM", + "nomCommune": "LINGOLSHEIM" }, { - "codePostal": "21270", - "codeCommune": "21571", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "78860", + "codeCommune": "78571", + "libelleAcheminement": "ST NOM LA BRETECHE", + "nomCommune": "ST NOM LA BRETECHE" }, { - "codePostal": "77370", - "codeCommune": "77098", - "libelleAcheminement": "CHATEAUBLEAU", - "nomCommune": "CHATEAUBLEAU" + "codePostal": "69170", + "codeCommune": "69001", + "libelleAcheminement": "AFFOUX", + "nomCommune": "AFFOUX" }, { - "codePostal": "78550", - "codeCommune": "78310", - "libelleAcheminement": "HOUDAN", - "nomCommune": "HOUDAN" + "codePostal": "78940", + "codeCommune": "78513", + "libelleAcheminement": "LA QUEUE LES YVELINES", + "nomCommune": "LA QUEUE LES YVELINES" }, { - "codePostal": "71640", - "codeCommune": "71430", - "libelleAcheminement": "ST JEAN DE VAUX", - "nomCommune": "ST JEAN DE VAUX" + "codePostal": "65220", + "codeCommune": "65177", + "libelleAcheminement": "FONTRAILLES", + "nomCommune": "FONTRAILLES" }, { - "codePostal": "21170", - "codeCommune": "21577", - "libelleAcheminement": "ST USAGE", - "nomCommune": "ST USAGE" + "codePostal": "67430", + "codeCommune": "67278", + "libelleAcheminement": "MACKWILLER", + "nomCommune": "MACKWILLER" }, { - "codePostal": "77167", - "codeCommune": "77102", - "libelleAcheminement": "CHATENOY", - "nomCommune": "CHATENOY" + "codePostal": "78470", + "codeCommune": "78575", + "libelleAcheminement": "ST REMY LES CHEVREUSE", + "nomCommune": "ST REMY LES CHEVREUSE" }, { - "codePostal": "78320", - "codeCommune": "78334", - "libelleAcheminement": "LEVIS ST NOM", - "nomCommune": "LEVIS ST NOM" + "codePostal": "69380", + "codeCommune": "69004", + "libelleAcheminement": "ALIX", + "nomCommune": "ALIX" }, { - "codePostal": "71210", - "codeCommune": "71435", - "libelleAcheminement": "ST JULIEN SUR DHEUNE", - "nomCommune": "ST JULIEN SUR DHEUNE" + "codePostal": "78120", + "codeCommune": "78517", + "libelleAcheminement": "RAMBOUILLET", + "nomCommune": "RAMBOUILLET" }, { - "codePostal": "21690", - "codeCommune": "21580", - "libelleAcheminement": "SALMAISE", - "nomCommune": "SALMAISE" + "codePostal": "65320", + "codeCommune": "65185", + "libelleAcheminement": "GARDERES", + "nomCommune": "GARDERES" }, { - "codePostal": "77570", - "codeCommune": "77110", - "libelleAcheminement": "CHENOU", - "nomCommune": "CHENOU" + "codePostal": "67390", + "codeCommune": "67281", + "libelleAcheminement": "MARCKOLSHEIM", + "nomCommune": "MARCKOLSHEIM" }, { - "codePostal": "78270", - "codeCommune": "78344", - "libelleAcheminement": "LOMMOYE", - "nomCommune": "LOMMOYE" + "codePostal": "78200", + "codeCommune": "78597", + "libelleAcheminement": "SOINDRES", + "nomCommune": "SOINDRES" }, { - "codePostal": "71990", - "codeCommune": "71440", - "libelleAcheminement": "ST LEGER SOUS BEUVRAY", - "nomCommune": "ST LEGER SOUS BEUVRAY" + "codePostal": "69550", + "codeCommune": "69006", + "libelleAcheminement": "AMPLEPUIS", + "nomCommune": "AMPLEPUIS" }, { - "codePostal": "21910", - "codeCommune": "21585", - "libelleAcheminement": "SAULON LA CHAPELLE", - "nomCommune": "SAULON LA CHAPELLE" + "codePostal": "78590", + "codeCommune": "78518", + "libelleAcheminement": "RENNEMOULIN", + "nomCommune": "RENNEMOULIN" }, { - "codePostal": "77710", - "codeCommune": "77115", - "libelleAcheminement": "CHEVRY EN SEREINE", - "nomCommune": "CHEVRY EN SEREINE" + "codePostal": "65370", + "codeCommune": "65186", + "libelleAcheminement": "GAUDENT", + "nomCommune": "GAUDENT" }, { - "codePostal": "78430", - "codeCommune": "78350", - "libelleAcheminement": "LOUVECIENNES", - "nomCommune": "LOUVECIENNES" + "codePostal": "67150", + "codeCommune": "67285", + "libelleAcheminement": "MATZENHEIM", + "nomCommune": "MATZENHEIM" }, { - "codePostal": "71240", - "codeCommune": "71444", - "libelleAcheminement": "ST LOUP DE VARENNES", - "nomCommune": "ST LOUP DE VARENNES" + "codePostal": "78117", + "codeCommune": "78620", + "libelleAcheminement": "TOUSSUS LE NOBLE", + "nomCommune": "TOUSSUS LE NOBLE" }, { - "codePostal": "21380", - "codeCommune": "21591", - "libelleAcheminement": "SAVIGNY LE SEC", - "nomCommune": "SAVIGNY LE SEC" + "codePostal": "69420", + "codeCommune": "69007", + "libelleAcheminement": "AMPUIS", + "nomCommune": "AMPUIS" }, { - "codePostal": "77730", - "codeCommune": "77117", - "libelleAcheminement": "CITRY", - "nomCommune": "CITRY" + "codePostal": "78730", + "codeCommune": "78522", + "libelleAcheminement": "ROCHEFORT EN YVELINES", + "nomCommune": "ROCHEFORT EN YVELINES" }, { - "codePostal": "78200", - "codeCommune": "78354", - "libelleAcheminement": "MAGNANVILLE", - "nomCommune": "MAGNANVILLE" + "codePostal": "65670", + "codeCommune": "65187", + "libelleAcheminement": "GAUSSAN", + "nomCommune": "GAUSSAN" }, { - "codePostal": "71740", - "codeCommune": "71451", - "libelleAcheminement": "ST MARTIN DE LIXY", - "nomCommune": "ST MARTIN DE LIXY" + "codePostal": "67140", + "codeCommune": "67295", + "libelleAcheminement": "MITTELBERGHEIM", + "nomCommune": "MITTELBERGHEIM" }, { - "codePostal": "21140", - "codeCommune": "21603", - "libelleAcheminement": "SEMUR EN AUXOIS", - "nomCommune": "SEMUR EN AUXOIS" + "codePostal": "78270", + "codeCommune": "78668", + "libelleAcheminement": "LA VILLENEUVE EN CHEVRIE", + "nomCommune": "LA VILLENEUVE EN CHEVRIE" }, { - "codePostal": "77126", - "codeCommune": "77133", - "libelleAcheminement": "COURCELLES EN BASSEE", - "nomCommune": "COURCELLES EN BASSEE" + "codePostal": "69530", + "codeCommune": "69027", + "libelleAcheminement": "BRIGNAIS", + "nomCommune": "BRIGNAIS" }, { - "codePostal": "78114", - "codeCommune": "78356", - "libelleAcheminement": "MAGNY LES HAMEAUX", - "nomCommune": "MAGNY LES HAMEAUX" + "codePostal": "78730", + "codeCommune": "78537", + "libelleAcheminement": "ST ARNOULT EN YVELINES", + "nomCommune": "ST ARNOULT EN YVELINES" }, { - "codePostal": "71460", - "codeCommune": "71455", - "libelleAcheminement": "ST MARTIN DU TARTRE", - "nomCommune": "ST MARTIN DU TARTRE" + "codePostal": "65200", + "codeCommune": "65198", + "libelleAcheminement": "GERDE", + "nomCommune": "GERDE" }, { - "codePostal": "21140", - "codeCommune": "21612", - "libelleAcheminement": "SOUHEY", - "nomCommune": "SOUHEY" + "codePostal": "67700", + "codeCommune": "67302", + "libelleAcheminement": "MONSWILLER", + "nomCommune": "MONSWILLER" }, { - "codePostal": "77540", - "codeCommune": "77135", - "libelleAcheminement": "COURPALAY", - "nomCommune": "COURPALAY" + "codePostal": "78670", + "codeCommune": "78672", + "libelleAcheminement": "VILLENNES SUR SEINE", + "nomCommune": "VILLENNES SUR SEINE" }, { - "codePostal": "78770", - "codeCommune": "78364", - "libelleAcheminement": "MARCQ", - "nomCommune": "MARCQ" + "codePostal": "69690", + "codeCommune": "69031", + "libelleAcheminement": "BRUSSIEU", + "nomCommune": "BRUSSIEU" }, { - "codePostal": "71620", - "codeCommune": "71456", - "libelleAcheminement": "ST MARTIN EN BRESSE", - "nomCommune": "ST MARTIN EN BRESSE" + "codePostal": "78720", + "codeCommune": "78548", + "libelleAcheminement": "ST FORGET", + "nomCommune": "ST FORGET" }, { - "codePostal": "21190", - "codeCommune": "21616", - "libelleAcheminement": "TAILLY", - "nomCommune": "TAILLY" + "codePostal": "65240", + "codeCommune": "65209", + "libelleAcheminement": "GREZIAN", + "nomCommune": "GREZIAN" }, { - "codePostal": "77390", - "codeCommune": "77136", - "libelleAcheminement": "COURQUETAINE", - "nomCommune": "COURQUETAINE" + "codePostal": "67130", + "codeCommune": "67306", + "libelleAcheminement": "MUHLBACH SUR BRUCHE", + "nomCommune": "MUHLBACH SUR BRUCHE" }, { - "codePostal": "78750", - "codeCommune": "78367", - "libelleAcheminement": "MAREIL MARLY", - "nomCommune": "MAREIL MARLY" + "codePostal": "78640", + "codeCommune": "78683", + "libelleAcheminement": "VILLIERS ST FREDERIC", + "nomCommune": "VILLIERS ST FREDERIC" }, { - "codePostal": "71620", - "codeCommune": "71462", - "libelleAcheminement": "ST MAURICE EN RIVIERE", - "nomCommune": "ST MAURICE EN RIVIERE" + "codePostal": "69220", + "codeCommune": "69036", + "libelleAcheminement": "CERCIE", + "nomCommune": "CERCIE" }, { - "codePostal": "21110", - "codeCommune": "21622", - "libelleAcheminement": "TART LE BAS", - "nomCommune": "TART LE BAS" + "codePostal": "78112", + "codeCommune": "78551", + "libelleAcheminement": "ST GERMAIN EN LAYE", + "nomCommune": "ST GERMAIN EN LAYE" }, { - "codePostal": "77154", - "codeCommune": "77140", - "libelleAcheminement": "COUTENCON", - "nomCommune": "COUTENCON" + "codePostal": "65150", + "codeCommune": "65217", + "libelleAcheminement": "HAUTAGET", + "nomCommune": "HAUTAGET" }, { - "codePostal": "78780", - "codeCommune": "78382", - "libelleAcheminement": "MAURECOURT", - "nomCommune": "MAURECOURT" + "codePostal": "67600", + "codeCommune": "67310", + "libelleAcheminement": "MUSSIG", + "nomCommune": "MUSSIG" }, { - "codePostal": "71740", - "codeCommune": "71463", - "libelleAcheminement": "ST MAURICE LES CHATEAUNEUF", - "nomCommune": "ST MAURICE LES CHATEAUNEUF" + "codePostal": "79240", + "codeCommune": "79001", + "libelleAcheminement": "L ABSIE", + "nomCommune": "L ABSIE" }, { - "codePostal": "21110", - "codeCommune": "21623", - "libelleAcheminement": "TART", - "nomCommune": "TART" + "codePostal": "69590", + "codeCommune": "69042", + "libelleAcheminement": "LA CHAPELLE SUR COISE", + "nomCommune": "LA CHAPELLE SUR COISE" }, { - "codePostal": "77580", - "codeCommune": "77141", - "libelleAcheminement": "COUTEVROULT", - "nomCommune": "COUTEVROULT" + "codePostal": "78610", + "codeCommune": "78562", + "libelleAcheminement": "ST LEGER EN YVELINES", + "nomCommune": "ST LEGER EN YVELINES" }, { - "codePostal": "78310", - "codeCommune": "78383", - "libelleAcheminement": "MAUREPAS", - "nomCommune": "MAUREPAS" + "codePostal": "65200", + "codeCommune": "65221", + "libelleAcheminement": "HIIS", + "nomCommune": "HIIS" }, { - "codePostal": "71990", - "codeCommune": "71472", - "libelleAcheminement": "ST PRIX", - "nomCommune": "ST PRIX" + "codePostal": "67600", + "codeCommune": "67311", + "libelleAcheminement": "MUTTERSHOLTZ", + "nomCommune": "MUTTERSHOLTZ" }, { - "codePostal": "21270", - "codeCommune": "21624", - "libelleAcheminement": "TELLECEY", - "nomCommune": "TELLECEY" + "codePostal": "79200", + "codeCommune": "79002", + "libelleAcheminement": "ADILLY", + "nomCommune": "ADILLY" }, { - "codePostal": "77124", - "codeCommune": "77143", - "libelleAcheminement": "CREGY LES MEAUX", - "nomCommune": "CREGY LES MEAUX" + "codePostal": "69390", + "codeCommune": "69046", + "libelleAcheminement": "CHARLY", + "nomCommune": "CHARLY" }, { - "codePostal": "78125", - "codeCommune": "78407", - "libelleAcheminement": "MITTAINVILLE", - "nomCommune": "MITTAINVILLE" + "codePostal": "78660", + "codeCommune": "78564", + "libelleAcheminement": "ST MARTIN DE BRETHENCOURT", + "nomCommune": "ST MARTIN DE BRETHENCOURT" }, { - "codePostal": "71800", - "codeCommune": "71473", - "libelleAcheminement": "ST RACHO", - "nomCommune": "ST RACHO" + "codePostal": "65370", + "codeCommune": "65229", + "libelleAcheminement": "ILHEU", + "nomCommune": "ILHEU" }, { - "codePostal": "21350", - "codeCommune": "21633", - "libelleAcheminement": "THOREY SOUS CHARNY", - "nomCommune": "THOREY SOUS CHARNY" + "codePostal": "67190", + "codeCommune": "67313", + "libelleAcheminement": "MUTZIG", + "nomCommune": "MUTZIG" }, { - "codePostal": "77390", - "codeCommune": "77145", - "libelleAcheminement": "CRISENOY", - "nomCommune": "CRISENOY" + "codePostal": "79600", + "codeCommune": "79005", + "libelleAcheminement": "AIRVAULT", + "nomCommune": "AIRVAULT" }, { - "codePostal": "78840", - "codeCommune": "78410", - "libelleAcheminement": "MOISSON", - "nomCommune": "MOISSON" + "codePostal": "69380", + "codeCommune": "69047", + "libelleAcheminement": "CHARNAY", + "nomCommune": "CHARNAY" }, { - "codePostal": "71710", - "codeCommune": "71482", - "libelleAcheminement": "ST SYMPHORIEN DE MARMAGNE", - "nomCommune": "ST SYMPHORIEN DE MARMAGNE" + "codePostal": "78510", + "codeCommune": "78624", + "libelleAcheminement": "TRIEL SUR SEINE", + "nomCommune": "TRIEL SUR SEINE" }, { - "codePostal": "21170", - "codeCommune": "21645", - "libelleAcheminement": "TROUHANS", - "nomCommune": "TROUHANS" + "codePostal": "65100", + "codeCommune": "65233", + "libelleAcheminement": "JARRET", + "nomCommune": "JARRET" }, { - "codePostal": "77370", - "codeCommune": "77147", - "libelleAcheminement": "LA CROIX EN BRIE", - "nomCommune": "LA CROIX EN BRIE" + "codePostal": "67130", + "codeCommune": "67314", + "libelleAcheminement": "NATZWILLER", + "nomCommune": "NATZWILLER" }, { - "codePostal": "78980", - "codeCommune": "78413", - "libelleAcheminement": "MONDREVILLE", - "nomCommune": "MONDREVILLE" + "codePostal": "79600", + "codeCommune": "79005", + "libelleAcheminement": "AIRVAULT", + "nomCommune": "AIRVAULT" }, { - "codePostal": "71500", - "codeCommune": "71484", - "libelleAcheminement": "ST USUGE", - "nomCommune": "ST USUGE" + "codePostal": "69270", + "codeCommune": "69068", + "libelleAcheminement": "COUZON AU MONT D OR", + "nomCommune": "COUZON AU MONT D OR" }, { - "codePostal": "21220", - "codeCommune": "21650", - "libelleAcheminement": "URCY", - "nomCommune": "URCY" + "codePostal": "78540", + "codeCommune": "78643", + "libelleAcheminement": "VERNOUILLET", + "nomCommune": "VERNOUILLET" }, { - "codePostal": "77165", - "codeCommune": "77150", - "libelleAcheminement": "CUISY", - "nomCommune": "CUISY" + "codePostal": "65130", + "codeCommune": "65239", + "libelleAcheminement": "LABASTIDE", + "nomCommune": "LABASTIDE" }, { - "codePostal": "78360", - "codeCommune": "78418", - "libelleAcheminement": "MONTESSON", - "nomCommune": "MONTESSON" + "codePostal": "67480", + "codeCommune": "67319", + "libelleAcheminement": "NEUHAEUSEL", + "nomCommune": "NEUHAEUSEL" }, { - "codePostal": "71430", - "codeCommune": "71490", - "libelleAcheminement": "ST VINCENT BRAGNY", - "nomCommune": "ST VINCENT BRAGNY" + "codePostal": "79160", + "codeCommune": "79012", + "libelleAcheminement": "ARDIN", + "nomCommune": "ARDIN" }, { - "codePostal": "21320", - "codeCommune": "21652", - "libelleAcheminement": "VANDENESSE EN AUXOIS", - "nomCommune": "VANDENESSE EN AUXOIS" + "codePostal": "69550", + "codeCommune": "69070", + "libelleAcheminement": "CUBLIZE", + "nomCommune": "CUBLIZE" }, { - "codePostal": "77163", - "codeCommune": "77154", - "libelleAcheminement": "DAMMARTIN SUR TIGEAUX", - "nomCommune": "DAMMARTIN SUR TIGEAUX" + "codePostal": "78540", + "codeCommune": "78643", + "libelleAcheminement": "VERNOUILLET", + "nomCommune": "VERNOUILLET" }, { - "codePostal": "78790", - "codeCommune": "78439", - "libelleAcheminement": "MULCENT", - "nomCommune": "MULCENT" + "codePostal": "65700", + "codeCommune": "65240", + "libelleAcheminement": "LABATUT RIVIERE", + "nomCommune": "LABATUT RIVIERE" }, { - "codePostal": "71260", - "codeCommune": "71494", - "libelleAcheminement": "LA SALLE", - "nomCommune": "LA SALLE" + "codePostal": "67330", + "codeCommune": "67322", + "libelleAcheminement": "NEUWILLER LES SAVERNE", + "nomCommune": "NEUWILLER LES SAVERNE" }, { - "codePostal": "21110", - "codeCommune": "21656", - "libelleAcheminement": "VARANGES", - "nomCommune": "VARANGES" + "codePostal": "79300", + "codeCommune": "79013", + "libelleAcheminement": "ARGENTONNAY", + "nomCommune": "ARGENTONNAY" }, { - "codePostal": "77140", - "codeCommune": "77156", - "libelleAcheminement": "DARVAULT", - "nomCommune": "DARVAULT" + "codePostal": "69210", + "codeCommune": "69083", + "libelleAcheminement": "EVEUX", + "nomCommune": "EVEUX" }, { - "codePostal": "78980", - "codeCommune": "78444", - "libelleAcheminement": "NEAUPHLETTE", - "nomCommune": "NEAUPHLETTE" + "codePostal": "78000", + "codeCommune": "78646", + "libelleAcheminement": "VERSAILLES", + "nomCommune": "VERSAILLES" }, { - "codePostal": "71390", - "codeCommune": "71503", - "libelleAcheminement": "SAULES", - "nomCommune": "SAULES" + "codePostal": "65380", + "codeCommune": "65252", + "libelleAcheminement": "LAMARQUE PONTACQ", + "nomCommune": "LAMARQUE PONTACQ" }, { - "codePostal": "21350", - "codeCommune": "21662", - "libelleAcheminement": "VELOGNY", - "nomCommune": "VELOGNY" + "codePostal": "67210", + "codeCommune": "67329", + "libelleAcheminement": "NIEDERNAI", + "nomCommune": "NIEDERNAI" }, { - "codePostal": "77126", - "codeCommune": "77167", - "libelleAcheminement": "EGLIGNY", - "nomCommune": "EGLIGNY" + "codePostal": "79290", + "codeCommune": "79014", + "libelleAcheminement": "LORETZ D ARGENTON", + "nomCommune": "LORETZ D ARGENTON" }, { - "codePostal": "78590", - "codeCommune": "78455", - "libelleAcheminement": "NOISY LE ROI", - "nomCommune": "NOISY LE ROI" + "codePostal": "69400", + "codeCommune": "69092", + "libelleAcheminement": "GLEIZE", + "nomCommune": "GLEIZE" }, { - "codePostal": "71580", - "codeCommune": "71506", - "libelleAcheminement": "SAVIGNY EN REVERMONT", - "nomCommune": "SAVIGNY EN REVERMONT" + "codePostal": "78770", + "codeCommune": "78681", + "libelleAcheminement": "VILLIERS LE MAHIEU", + "nomCommune": "VILLIERS LE MAHIEU" }, { - "codePostal": "21330", - "codeCommune": "21664", - "libelleAcheminement": "VERDONNET", - "nomCommune": "VERDONNET" + "codePostal": "65220", + "codeCommune": "65253", + "libelleAcheminement": "LAMARQUE RUSTAING", + "nomCommune": "LAMARQUE RUSTAING" }, { - "codePostal": "77620", - "codeCommune": "77168", - "libelleAcheminement": "EGREVILLE", - "nomCommune": "EGREVILLE" + "codePostal": "67680", + "codeCommune": "67337", + "libelleAcheminement": "NOTHALTEN", + "nomCommune": "NOTHALTEN" }, { - "codePostal": "78630", - "codeCommune": "78466", - "libelleAcheminement": "ORGEVAL", - "nomCommune": "ORGEVAL" + "codePostal": "79110", + "codeCommune": "79018", + "libelleAcheminement": "AUBIGNE", + "nomCommune": "AUBIGNE" }, { - "codePostal": "71240", - "codeCommune": "71512", - "libelleAcheminement": "SENNECEY LE GRAND", - "nomCommune": "SENNECEY LE GRAND" + "codePostal": "69520", + "codeCommune": "69096", + "libelleAcheminement": "GRIGNY", + "nomCommune": "GRIGNY" }, { - "codePostal": "21520", - "codeCommune": "21674", - "libelleAcheminement": "VEUXHAULLES SUR AUBE", - "nomCommune": "VEUXHAULLES SUR AUBE" + "codePostal": "79350", + "codeCommune": "79008", + "libelleAcheminement": "AMAILLOUX", + "nomCommune": "AMAILLOUX" }, { - "codePostal": "77940", - "codeCommune": "77172", - "libelleAcheminement": "ESMANS", - "nomCommune": "ESMANS" + "codePostal": "65240", + "codeCommune": "65255", + "libelleAcheminement": "LANCON", + "nomCommune": "LANCON" }, { - "codePostal": "78125", - "codeCommune": "78470", - "libelleAcheminement": "ORPHIN", - "nomCommune": "ORPHIN" + "codePostal": "67660", + "codeCommune": "67339", + "libelleAcheminement": "BETSCHDORF", + "nomCommune": "BETSCHDORF" }, { - "codePostal": "71260", - "codeCommune": "71513", - "libelleAcheminement": "SENOZAN", - "nomCommune": "SENOZAN" + "codePostal": "79400", + "codeCommune": "79020", + "libelleAcheminement": "AUGE", + "nomCommune": "AUGE" }, { - "codePostal": "21430", - "codeCommune": "21675", - "libelleAcheminement": "VIANGES", - "nomCommune": "VIANGES" + "codePostal": "69420", + "codeCommune": "69097", + "libelleAcheminement": "LES HAIES", + "nomCommune": "LES HAIES" }, { - "codePostal": "77166", - "codeCommune": "77175", - "libelleAcheminement": "EVRY GREGY SUR YERRE", - "nomCommune": "EVRY GREGY SUR YERRE" + "codePostal": "79150", + "codeCommune": "79013", + "libelleAcheminement": "ARGENTONNAY", + "nomCommune": "ARGENTONNAY" }, { - "codePostal": "78660", - "codeCommune": "78478", - "libelleAcheminement": "PARAY DOUAVILLE", - "nomCommune": "PARAY DOUAVILLE" + "codePostal": "65190", + "codeCommune": "65256", + "libelleAcheminement": "LANESPEDE", + "nomCommune": "LANESPEDE" }, { - "codePostal": "71960", - "codeCommune": "71518", - "libelleAcheminement": "SERRIERES", - "nomCommune": "SERRIERES" + "codePostal": "67160", + "codeCommune": "67351", + "libelleAcheminement": "SEEBACH", + "nomCommune": "SEEBACH" }, { - "codePostal": "21140", - "codeCommune": "21676", - "libelleAcheminement": "VIC DE CHASSENAY", - "nomCommune": "VIC DE CHASSENAY" + "codePostal": "79360", + "codeCommune": "79031", + "libelleAcheminement": "BEAUVOIR SUR NIORT", + "nomCommune": "BEAUVOIR SUR NIORT" }, { - "codePostal": "77940", - "codeCommune": "77184", - "libelleAcheminement": "FLAGY", - "nomCommune": "FLAGY" + "codePostal": "69610", + "codeCommune": "69098", + "libelleAcheminement": "LES HALLES", + "nomCommune": "LES HALLES" }, { - "codePostal": "78610", - "codeCommune": "78486", - "libelleAcheminement": "LE PERRAY EN YVELINES", - "nomCommune": "LE PERRAY EN YVELINES" + "codePostal": "79150", + "codeCommune": "79013", + "libelleAcheminement": "ARGENTONNAY", + "nomCommune": "ARGENTONNAY" }, { - "codePostal": "71330", - "codeCommune": "71523", - "libelleAcheminement": "SIMARD", - "nomCommune": "SIMARD" + "codePostal": "65140", + "codeCommune": "65269", + "libelleAcheminement": "LESCURRY", + "nomCommune": "LESCURRY" }, { - "codePostal": "21460", - "codeCommune": "21681", - "libelleAcheminement": "VIEUX CHATEAU", - "nomCommune": "VIEUX CHATEAU" + "codePostal": "67390", + "codeCommune": "67360", + "libelleAcheminement": "OHNENHEIM", + "nomCommune": "OHNENHEIM" }, { - "codePostal": "77930", - "codeCommune": "77185", - "libelleAcheminement": "FLEURY EN BIERE", - "nomCommune": "FLEURY EN BIERE" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "78370", - "codeCommune": "78490", - "libelleAcheminement": "PLAISIR", - "nomCommune": "PLAISIR" + "codePostal": "69540", + "codeCommune": "69100", + "libelleAcheminement": "IRIGNY", + "nomCommune": "IRIGNY" }, { - "codePostal": "71330", - "codeCommune": "71534", - "libelleAcheminement": "LE TARTRE", - "nomCommune": "LE TARTRE" + "codePostal": "79370", + "codeCommune": "79030", + "libelleAcheminement": "BEAUSSAIS VITRE", + "nomCommune": "BEAUSSAIS VITRE" }, { - "codePostal": "21500", - "codeCommune": "21686", - "libelleAcheminement": "VILLAINES LES PREVOTES", - "nomCommune": "VILLAINES LES PREVOTES" + "codePostal": "65510", + "codeCommune": "65282", + "libelleAcheminement": "LOUDENVIELLE", + "nomCommune": "LOUDENVIELLE" }, { - "codePostal": "77370", - "codeCommune": "77190", - "libelleAcheminement": "FONTAINS", - "nomCommune": "FONTAINS" + "codePostal": "67600", + "codeCommune": "67362", + "libelleAcheminement": "ORSCHWILLER", + "nomCommune": "ORSCHWILLER" }, { - "codePostal": "78910", - "codeCommune": "78505", - "libelleAcheminement": "PRUNAY LE TEMPLE", - "nomCommune": "PRUNAY LE TEMPLE" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "71210", - "codeCommune": "71540", - "libelleAcheminement": "TORCY", - "nomCommune": "TORCY" + "codePostal": "69840", + "codeCommune": "69103", + "libelleAcheminement": "JULIENAS", + "nomCommune": "JULIENAS" }, { - "codePostal": "21210", - "codeCommune": "21687", - "libelleAcheminement": "VILLARGOIX", - "nomCommune": "VILLARGOIX" + "codePostal": "79360", + "codeCommune": "79031", + "libelleAcheminement": "BEAUVOIR SUR NIORT", + "nomCommune": "BEAUVOIR SUR NIORT" }, { - "codePostal": "77320", - "codeCommune": "77197", - "libelleAcheminement": "FRETOY", - "nomCommune": "FRETOY" + "codePostal": "65240", + "codeCommune": "65283", + "libelleAcheminement": "LOUDERVIELLE", + "nomCommune": "LOUDERVIELLE" }, { - "codePostal": "78660", - "codeCommune": "78506", - "libelleAcheminement": "PRUNAY EN YVELINES", - "nomCommune": "PRUNAY EN YVELINES" + "codePostal": "67990", + "codeCommune": "67363", + "libelleAcheminement": "OSTHOFFEN", + "nomCommune": "OSTHOFFEN" }, { - "codePostal": "71350", - "codeCommune": "71544", - "libelleAcheminement": "TOUTENANT", - "nomCommune": "TOUTENANT" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "21350", - "codeCommune": "21694", - "libelleAcheminement": "VILLEFERRY", - "nomCommune": "VILLEFERRY" + "codePostal": "69840", + "codeCommune": "69104", + "libelleAcheminement": "JULLIE", + "nomCommune": "JULLIE" }, { - "codePostal": "77760", - "codeCommune": "77198", - "libelleAcheminement": "FROMONT", - "nomCommune": "FROMONT" + "codePostal": "79310", + "codeCommune": "79040", + "libelleAcheminement": "LA BOISSIERE EN GATINE", + "nomCommune": "LA BOISSIERE EN GATINE" }, { - "codePostal": "78940", - "codeCommune": "78513", - "libelleAcheminement": "LA QUEUE LES YVELINES", - "nomCommune": "LA QUEUE LES YVELINES" + "codePostal": "65350", + "codeCommune": "65285", + "libelleAcheminement": "LOUIT", + "nomCommune": "LOUIT" }, { - "codePostal": "71190", - "codeCommune": "71551", - "libelleAcheminement": "UCHON", - "nomCommune": "UCHON" + "codePostal": "67530", + "codeCommune": "67368", + "libelleAcheminement": "OTTROTT", + "nomCommune": "OTTROTT" }, { - "codePostal": "21700", - "codeCommune": "21698", - "libelleAcheminement": "VILLERS LA FAYE", - "nomCommune": "VILLERS LA FAYE" + "codePostal": "79290", + "codeCommune": "79063", + "libelleAcheminement": "VAL EN VIGNES", + "nomCommune": "VAL EN VIGNES" }, { - "codePostal": "77470", - "codeCommune": "77199", - "libelleAcheminement": "FUBLAINES", - "nomCommune": "FUBLAINES" + "codePostal": "69480", + "codeCommune": "69106", + "libelleAcheminement": "LACHASSAGNE", + "nomCommune": "LACHASSAGNE" }, { - "codePostal": "78730", - "codeCommune": "78522", - "libelleAcheminement": "ROCHEFORT EN YVELINES", - "nomCommune": "ROCHEFORT EN YVELINES" + "codePostal": "79600", + "codeCommune": "79047", + "libelleAcheminement": "BOUSSAIS", + "nomCommune": "BOUSSAIS" }, { - "codePostal": "71240", - "codeCommune": "71555", - "libelleAcheminement": "VARENNES LE GRAND", - "nomCommune": "VARENNES LE GRAND" + "codePostal": "65100", + "codeCommune": "65286", + "libelleAcheminement": "LOURDES", + "nomCommune": "LOURDES" }, { - "codePostal": "21250", - "codeCommune": "21708", - "libelleAcheminement": "VILLY LE MOUTIER", - "nomCommune": "VILLY LE MOUTIER" + "codePostal": "67350", + "codeCommune": "67372", + "libelleAcheminement": "VAL DE MODER", + "nomCommune": "VAL DE MODER" }, { - "codePostal": "77610", - "codeCommune": "77229", - "libelleAcheminement": "LA HOUSSAYE EN BRIE", - "nomCommune": "LA HOUSSAYE EN BRIE" + "codePostal": "79110", + "codeCommune": "79064", + "libelleAcheminement": "FONTIVILLIE", + "nomCommune": "FONTIVILLIE" }, { - "codePostal": "78790", - "codeCommune": "78530", - "libelleAcheminement": "ROSAY", - "nomCommune": "ROSAY" + "codePostal": "69590", + "codeCommune": "69110", + "libelleAcheminement": "LARAJASSE", + "nomCommune": "LARAJASSE" }, { - "codePostal": "71460", - "codeCommune": "71563", - "libelleAcheminement": "VAUX EN PRE", - "nomCommune": "VAUX EN PRE" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "21190", - "codeCommune": "21712", - "libelleAcheminement": "VOLNAY", - "nomCommune": "VOLNAY" + "codePostal": "65370", + "codeCommune": "65287", + "libelleAcheminement": "LOURES BAROUSSE", + "nomCommune": "LOURES BAROUSSE" }, { - "codePostal": "77165", - "codeCommune": "77233", - "libelleAcheminement": "IVERNY", - "nomCommune": "IVERNY" + "codePostal": "67370", + "codeCommune": "67375", + "libelleAcheminement": "PFULGRIESHEIM", + "nomCommune": "PFULGRIESHEIM" }, { - "codePostal": "78710", - "codeCommune": "78531", - "libelleAcheminement": "ROSNY SUR SEINE", - "nomCommune": "ROSNY SUR SEINE" + "codePostal": "79220", + "codeCommune": "79066", + "libelleAcheminement": "CHAMPDENIERS", + "nomCommune": "CHAMPDENIERS" }, { - "codePostal": "71130", - "codeCommune": "71565", - "libelleAcheminement": "VENDENESSE SUR ARROUX", - "nomCommune": "VENDENESSE SUR ARROUX" + "codePostal": "69620", + "codeCommune": "69113", + "libelleAcheminement": "LETRA", + "nomCommune": "LETRA" }, { - "codePostal": "21290", - "codeCommune": "21717", - "libelleAcheminement": "VOULAINES LES TEMPLIERS", - "nomCommune": "VOULAINES LES TEMPLIERS" + "codePostal": "79230", + "codeCommune": "79058", + "libelleAcheminement": "BRULAIN", + "nomCommune": "BRULAIN" }, { - "codePostal": "77450", - "codeCommune": "77234", - "libelleAcheminement": "JABLINES", - "nomCommune": "JABLINES" + "codePostal": "65220", + "codeCommune": "65289", + "libelleAcheminement": "LUBY BETMONT", + "nomCommune": "LUBY BETMONT" }, { - "codePostal": "78730", - "codeCommune": "78537", - "libelleAcheminement": "ST ARNOULT EN YVELINES", - "nomCommune": "ST ARNOULT EN YVELINES" + "codePostal": "67420", + "codeCommune": "67377", + "libelleAcheminement": "PLAINE", + "nomCommune": "PLAINE" }, { - "codePostal": "71220", - "codeCommune": "71571", - "libelleAcheminement": "VEROSVRES", - "nomCommune": "VEROSVRES" + "codePostal": "79320", + "codeCommune": "79069", + "libelleAcheminement": "CHANTELOUP", + "nomCommune": "CHANTELOUP" }, { - "codePostal": "22140", - "codeCommune": "22004", - "libelleAcheminement": "BEGARD", - "nomCommune": "BEGARD" + "codePostal": "69610", + "codeCommune": "69132", + "libelleAcheminement": "MEYS", + "nomCommune": "MEYS" }, { - "codePostal": "77440", - "codeCommune": "77235", - "libelleAcheminement": "JAIGNES", - "nomCommune": "JAIGNES" + "codePostal": "79370", + "codeCommune": "79061", + "libelleAcheminement": "CELLES SUR BELLE", + "nomCommune": "CELLES SUR BELLE" }, { - "codePostal": "78980", - "codeCommune": "78558", - "libelleAcheminement": "ST ILLIERS LA VILLE", - "nomCommune": "ST ILLIERS LA VILLE" + "codePostal": "65350", + "codeCommune": "65298", + "libelleAcheminement": "MARQUERIE", + "nomCommune": "MARQUERIE" }, { - "codePostal": "71960", - "codeCommune": "71574", - "libelleAcheminement": "VERZE", - "nomCommune": "VERZE" + "codePostal": "67490", + "codeCommune": "67380", + "libelleAcheminement": "PRINTZHEIM", + "nomCommune": "PRINTZHEIM" }, { - "codePostal": "22140", - "codeCommune": "22004", - "libelleAcheminement": "BEGARD", - "nomCommune": "BEGARD" + "codePostal": "79700", + "codeCommune": "79079", + "libelleAcheminement": "MAULEON", + "nomCommune": "MAULEON" }, { - "codePostal": "77171", - "codeCommune": "77246", - "libelleAcheminement": "LECHELLE", - "nomCommune": "LECHELLE" + "codePostal": "69860", + "codeCommune": "69135", + "libelleAcheminement": "DEUX GROSNES", + "nomCommune": "DEUX GROSNES" }, { - "codePostal": "78660", - "codeCommune": "78564", - "libelleAcheminement": "ST MARTIN DE BRETHENCOURT", - "nomCommune": "ST MARTIN DE BRETHENCOURT" + "codePostal": "79500", + "codeCommune": "79064", + "libelleAcheminement": "FONTIVILLIE", + "nomCommune": "FONTIVILLIE" }, { - "codePostal": "71270", - "codeCommune": "71578", - "libelleAcheminement": "CLUX VILLENEUVE", - "nomCommune": "CLUX VILLENEUVE" + "codePostal": "65140", + "codeCommune": "65311", + "libelleAcheminement": "MINGOT", + "nomCommune": "MINGOT" }, { - "codePostal": "22130", - "codeCommune": "22014", - "libelleAcheminement": "BOURSEUL", - "nomCommune": "BOURSEUL" + "codePostal": "67860", + "codeCommune": "67397", + "libelleAcheminement": "RHINAU", + "nomCommune": "RHINAU" }, { - "codePostal": "77550", - "codeCommune": "77252", - "libelleAcheminement": "LIMOGES FOURCHES", - "nomCommune": "LIMOGES FOURCHES" + "codePostal": "79110", + "codeCommune": "79083", + "libelleAcheminement": "CHEF BOUTONNE", + "nomCommune": "CHEF BOUTONNE" }, { - "codePostal": "78860", - "codeCommune": "78571", - "libelleAcheminement": "ST NOM LA BRETECHE", - "nomCommune": "ST NOM LA BRETECHE" + "codePostal": "69480", + "codeCommune": "69140", + "libelleAcheminement": "MORANCE", + "nomCommune": "MORANCE" }, { - "codePostal": "71250", - "codeCommune": "71582", - "libelleAcheminement": "LA VINEUSE SUR FREGANDE", - "nomCommune": "LA VINEUSE SUR FREGANDE" + "codePostal": "79200", + "codeCommune": "79071", + "libelleAcheminement": "LA CHAPELLE BERTRAND", + "nomCommune": "LA CHAPELLE BERTRAND" }, { - "codePostal": "22510", - "codeCommune": "22015", - "libelleAcheminement": "BREHAND", - "nomCommune": "BREHAND" + "codePostal": "65140", + "codeCommune": "65314", + "libelleAcheminement": "MONFAUCON", + "nomCommune": "MONFAUCON" }, { - "codePostal": "77560", - "codeCommune": "77262", - "libelleAcheminement": "LOUAN VILLEGRUIS FONTAINE", - "nomCommune": "LOUAN VILLEGRUIS FONTAINE" + "codePostal": "67480", + "codeCommune": "67405", + "libelleAcheminement": "ROESCHWOOG", + "nomCommune": "ROESCHWOOG" }, { - "codePostal": "78690", - "codeCommune": "78576", - "libelleAcheminement": "ST REMY L HONORE", - "nomCommune": "ST REMY L HONORE" + "codePostal": "79120", + "codeCommune": "79084", + "libelleAcheminement": "CHENAY", + "nomCommune": "CHENAY" }, { - "codePostal": "71250", - "codeCommune": "71582", - "libelleAcheminement": "LA VINEUSE SUR FREGANDE", - "nomCommune": "LA VINEUSE SUR FREGANDE" + "codePostal": "69440", + "codeCommune": "69141", + "libelleAcheminement": "MORNANT", + "nomCommune": "MORNANT" }, { - "codePostal": "22140", - "codeCommune": "22018", - "libelleAcheminement": "BRELIDY", - "nomCommune": "BRELIDY" + "codePostal": "79360", + "codeCommune": "79078", + "libelleAcheminement": "PLAINE D ARGENSON", + "nomCommune": "PLAINE D ARGENSON" }, { - "codePostal": "77950", - "codeCommune": "77269", - "libelleAcheminement": "MAINCY", - "nomCommune": "MAINCY" + "codePostal": "65670", + "codeCommune": "65316", + "libelleAcheminement": "MONLONG", + "nomCommune": "MONLONG" }, { - "codePostal": "78200", - "codeCommune": "78597", - "libelleAcheminement": "SOINDRES", - "nomCommune": "SOINDRES" + "codePostal": "67310", + "codeCommune": "67408", + "libelleAcheminement": "ROMANSWILLER", + "nomCommune": "ROMANSWILLER" }, { - "codePostal": "71600", - "codeCommune": "71590", - "libelleAcheminement": "VOLESVRES", - "nomCommune": "VOLESVRES" + "codePostal": "79140", + "codeCommune": "79091", + "libelleAcheminement": "CIRIERES", + "nomCommune": "CIRIERES" }, { - "codePostal": "22100", - "codeCommune": "22021", - "libelleAcheminement": "BRUSVILY", - "nomCommune": "BRUSVILY" + "codePostal": "69350", + "codeCommune": "69142", + "libelleAcheminement": "LA MULATIERE", + "nomCommune": "LA MULATIERE" }, { - "codePostal": "77370", - "codeCommune": "77272", - "libelleAcheminement": "MAISON ROUGE", - "nomCommune": "MAISON ROUGE" + "codePostal": "79360", + "codeCommune": "79078", + "libelleAcheminement": "PLAINE D ARGENSON", + "nomCommune": "PLAINE D ARGENSON" }, { - "codePostal": "78850", - "codeCommune": "78615", - "libelleAcheminement": "THIVERVAL GRIGNON", - "nomCommune": "THIVERVAL GRIGNON" + "codePostal": "65250", + "codeCommune": "65322", + "libelleAcheminement": "MONTOUSSE", + "nomCommune": "MONTOUSSE" }, { - "codePostal": "72230", - "codeCommune": "72008", - "libelleAcheminement": "ARNAGE", - "nomCommune": "ARNAGE" + "codePostal": "67480", + "codeCommune": "67409", + "libelleAcheminement": "ROPPENHEIM", + "nomCommune": "ROPPENHEIM" }, { - "codePostal": "22350", - "codeCommune": "22032", - "libelleAcheminement": "CAULNES", - "nomCommune": "CAULNES" + "codePostal": "79160", + "codeCommune": "79101", + "libelleAcheminement": "COULONGES SUR L AUTIZE", + "nomCommune": "COULONGES SUR L AUTIZE" }, { - "codePostal": "77100", - "codeCommune": "77276", - "libelleAcheminement": "MAREUIL LES MEAUX", - "nomCommune": "MAREUIL LES MEAUX" + "codePostal": "69250", + "codeCommune": "69143", + "libelleAcheminement": "NEUVILLE SUR SAONE", + "nomCommune": "NEUVILLE SUR SAONE" }, { - "codePostal": "78510", - "codeCommune": "78624", - "libelleAcheminement": "TRIEL SUR SEINE", - "nomCommune": "TRIEL SUR SEINE" + "codePostal": "79700", + "codeCommune": "79079", + "libelleAcheminement": "MAULEON", + "nomCommune": "MAULEON" }, { - "codePostal": "72300", - "codeCommune": "72016", - "libelleAcheminement": "AUVERS LE HAMON", - "nomCommune": "AUVERS LE HAMON" + "codePostal": "65200", + "codeCommune": "65335", + "libelleAcheminement": "ORDIZAN", + "nomCommune": "ORDIZAN" }, { - "codePostal": "22210", - "codeCommune": "22039", - "libelleAcheminement": "LA CHEZE", - "nomCommune": "LA CHEZE" + "codePostal": "67170", + "codeCommune": "67417", + "libelleAcheminement": "ROTTELSHEIM", + "nomCommune": "ROTTELSHEIM" }, { - "codePostal": "77610", - "codeCommune": "77277", - "libelleAcheminement": "MARLES EN BRIE", - "nomCommune": "MARLES EN BRIE" + "codePostal": "79450", + "codeCommune": "79118", + "libelleAcheminement": "FENERY", + "nomCommune": "FENERY" }, { - "codePostal": "78540", - "codeCommune": "78643", - "libelleAcheminement": "VERNOUILLET", - "nomCommune": "VERNOUILLET" + "codePostal": "69530", + "codeCommune": "69148", + "libelleAcheminement": "ORLIENAS", + "nomCommune": "ORLIENAS" }, { - "codePostal": "72350", - "codeCommune": "72019", - "libelleAcheminement": "AVESSE", - "nomCommune": "AVESSE" + "codePostal": "79700", + "codeCommune": "79079", + "libelleAcheminement": "MAULEON", + "nomCommune": "MAULEON" }, { - "codePostal": "22160", - "codeCommune": "22052", - "libelleAcheminement": "DUAULT", - "nomCommune": "DUAULT" + "codePostal": "65240", + "codeCommune": "65354", + "libelleAcheminement": "PAILHAC", + "nomCommune": "PAILHAC" }, { - "codePostal": "77350", - "codeCommune": "77285", - "libelleAcheminement": "LE MEE SUR SEINE", - "nomCommune": "LE MEE SUR SEINE" + "codePostal": "67480", + "codeCommune": "67418", + "libelleAcheminement": "ROUNTZENHEIM AUENHEIM", + "nomCommune": "ROUNTZENHEIM AUENHEIM" }, { - "codePostal": "78320", - "codeCommune": "78644", - "libelleAcheminement": "LA VERRIERE", - "nomCommune": "LA VERRIERE" + "codePostal": "79230", + "codeCommune": "79125", + "libelleAcheminement": "FORS", + "nomCommune": "FORS" }, { - "codePostal": "72290", - "codeCommune": "72023", - "libelleAcheminement": "BALLON ST MARS", - "nomCommune": "BALLON ST MARS" + "codePostal": "69460", + "codeCommune": "69151", + "libelleAcheminement": "LE PERREON", + "nomCommune": "LE PERREON" }, { - "codePostal": "22250", - "codeCommune": "22053", - "libelleAcheminement": "EREAC", - "nomCommune": "EREAC" + "codePostal": "79180", + "codeCommune": "79081", + "libelleAcheminement": "CHAURAY", + "nomCommune": "CHAURAY" }, { - "codePostal": "77000", - "codeCommune": "77288", - "libelleAcheminement": "MELUN", - "nomCommune": "MELUN" + "codePostal": "65190", + "codeCommune": "65357", + "libelleAcheminement": "PEYRAUBE", + "nomCommune": "PEYRAUBE" }, { - "codePostal": "78000", - "codeCommune": "78646", - "libelleAcheminement": "VERSAILLES", - "nomCommune": "VERSAILLES" + "codePostal": "67480", + "codeCommune": "67418", + "libelleAcheminement": "ROUNTZENHEIM AUENHEIM", + "nomCommune": "ROUNTZENHEIM AUENHEIM" }, { - "codePostal": "72340", - "codeCommune": "72027", - "libelleAcheminement": "BEAUMONT SUR DEME", - "nomCommune": "BEAUMONT SUR DEME" + "codePostal": "79360", + "codeCommune": "79127", + "libelleAcheminement": "LA FOYE MONJAULT", + "nomCommune": "LA FOYE MONJAULT" }, { - "codePostal": "22680", - "codeCommune": "22055", - "libelleAcheminement": "BINIC ETABLES SUR MER", - "nomCommune": "BINIC ETABLES SUR MER" + "codePostal": "69290", + "codeCommune": "69154", + "libelleAcheminement": "POLLIONNAY", + "nomCommune": "POLLIONNAY" }, { - "codePostal": "77171", - "codeCommune": "77289", - "libelleAcheminement": "MELZ SUR SEINE", - "nomCommune": "MELZ SUR SEINE" + "codePostal": "79410", + "codeCommune": "79086", + "libelleAcheminement": "CHERVEUX", + "nomCommune": "CHERVEUX" }, { - "codePostal": "78930", - "codeCommune": "78647", - "libelleAcheminement": "VERT", - "nomCommune": "VERT" + "codePostal": "65350", + "codeCommune": "65359", + "libelleAcheminement": "PEYRIGUERE", + "nomCommune": "PEYRIGUERE" }, { - "codePostal": "72500", - "codeCommune": "72028", - "libelleAcheminement": "BEAUMONT PIED DE BOEUF", - "nomCommune": "BEAUMONT PIED DE BOEUF" + "codePostal": "67130", + "codeCommune": "67420", + "libelleAcheminement": "RUSS", + "nomCommune": "RUSS" }, { - "codePostal": "22290", - "codeCommune": "22057", - "libelleAcheminement": "LE FAOUET", - "nomCommune": "LE FAOUET" + "codePostal": "79260", + "codeCommune": "79128", + "libelleAcheminement": "FRANCOIS", + "nomCommune": "FRANCOIS" }, { - "codePostal": "77520", - "codeCommune": "77298", - "libelleAcheminement": "MONS EN MONTOIS", - "nomCommune": "MONS EN MONTOIS" + "codePostal": "69490", + "codeCommune": "69157", + "libelleAcheminement": "VINDRY SUR TURDINE", + "nomCommune": "VINDRY SUR TURDINE" }, { - "codePostal": "78270", - "codeCommune": "78668", - "libelleAcheminement": "LA VILLENEUVE EN CHEVRIE", - "nomCommune": "LA VILLENEUVE EN CHEVRIE" + "codePostal": "79120", + "codeCommune": "79087", + "libelleAcheminement": "CHEY", + "nomCommune": "CHEY" }, { - "codePostal": "72320", - "codeCommune": "72032", - "libelleAcheminement": "BERFAY", - "nomCommune": "BERFAY" + "codePostal": "65300", + "codeCommune": "65363", + "libelleAcheminement": "PINAS", + "nomCommune": "PINAS" }, { - "codePostal": "22230", - "codeCommune": "22062", - "libelleAcheminement": "GOMENE", - "nomCommune": "GOMENE" + "codePostal": "67420", + "codeCommune": "67424", + "libelleAcheminement": "ST BLAISE LA ROCHE", + "nomCommune": "ST BLAISE LA ROCHE" }, { - "codePostal": "77470", - "codeCommune": "77300", - "libelleAcheminement": "MONTCEAUX LES MEAUX", - "nomCommune": "MONTCEAUX LES MEAUX" + "codePostal": "79220", + "codeCommune": "79133", + "libelleAcheminement": "GERMOND ROUVRE", + "nomCommune": "GERMOND ROUVRE" }, { - "codePostal": "78670", - "codeCommune": "78672", - "libelleAcheminement": "VILLENNES SUR SEINE", - "nomCommune": "VILLENNES SUR SEINE" + "codePostal": "69400", + "codeCommune": "69159", + "libelleAcheminement": "PORTE DES PIERRES DOREES", + "nomCommune": "PORTE DES PIERRES DOREES" }, { - "codePostal": "72440", - "codeCommune": "72042", - "libelleAcheminement": "BOULOIRE", - "nomCommune": "BOULOIRE" + "codePostal": "79170", + "codeCommune": "79090", + "libelleAcheminement": "CHIZE", + "nomCommune": "CHIZE" }, { - "codePostal": "22290", - "codeCommune": "22065", - "libelleAcheminement": "GOUDELIN", - "nomCommune": "GOUDELIN" + "codePostal": "65500", + "codeCommune": "65372", + "libelleAcheminement": "PUJO", + "nomCommune": "PUJO" }, { - "codePostal": "77151", - "codeCommune": "77301", - "libelleAcheminement": "MONTCEAUX LES PROVINS", - "nomCommune": "MONTCEAUX LES PROVINS" + "codePostal": "67220", + "codeCommune": "67426", + "libelleAcheminement": "ST MARTIN", + "nomCommune": "ST MARTIN" }, { - "codePostal": "78220", - "codeCommune": "78686", - "libelleAcheminement": "VIROFLAY", - "nomCommune": "VIROFLAY" + "codePostal": "79110", + "codeCommune": "79136", + "libelleAcheminement": "ALLOINAY", + "nomCommune": "ALLOINAY" }, { - "codePostal": "72610", - "codeCommune": "72043", - "libelleAcheminement": "BOURG LE ROI", - "nomCommune": "BOURG LE ROI" + "codePostal": "69640", + "codeCommune": "69159", + "libelleAcheminement": "PORTE DES PIERRES DOREES", + "nomCommune": "PORTE DES PIERRES DOREES" }, { - "codePostal": "22600", - "codeCommune": "22075", - "libelleAcheminement": "HEMONSTOIR", - "nomCommune": "HEMONSTOIR" + "codePostal": "79440", + "codeCommune": "79103", + "libelleAcheminement": "COURLAY", + "nomCommune": "COURLAY" }, { - "codePostal": "77320", - "codeCommune": "77304", - "libelleAcheminement": "MONTENILS", - "nomCommune": "MONTENILS" + "codePostal": "65250", + "codeCommune": "65385", + "libelleAcheminement": "ST ARROMAN", + "nomCommune": "ST ARROMAN" }, { - "codePostal": "79130", - "codeCommune": "79007", - "libelleAcheminement": "ALLONNE", - "nomCommune": "ALLONNE" + "codePostal": "67530", + "codeCommune": "67428", + "libelleAcheminement": "ST NABOR", + "nomCommune": "ST NABOR" }, { - "codePostal": "72370", - "codeCommune": "72046", - "libelleAcheminement": "LE BREIL SUR MERIZE", - "nomCommune": "LE BREIL SUR MERIZE" + "codePostal": "79120", + "codeCommune": "79148", + "libelleAcheminement": "LEZAY", + "nomCommune": "LEZAY" }, { - "codePostal": "22120", - "codeCommune": "22081", - "libelleAcheminement": "HILLION", - "nomCommune": "HILLION" + "codePostal": "69870", + "codeCommune": "69160", + "libelleAcheminement": "POULE LES ECHARMEAUX", + "nomCommune": "POULE LES ECHARMEAUX" }, { - "codePostal": "77130", - "codeCommune": "77305", - "libelleAcheminement": "MONTEREAU FAULT YONNE", - "nomCommune": "MONTEREAU FAULT YONNE" + "codePostal": "79220", + "codeCommune": "79104", + "libelleAcheminement": "COURS", + "nomCommune": "COURS" }, { - "codePostal": "79150", - "codeCommune": "79013", - "libelleAcheminement": "ARGENTONNAY", - "nomCommune": "ARGENTONNAY" + "codePostal": "65150", + "codeCommune": "65394", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "72340", - "codeCommune": "72052", - "libelleAcheminement": "CHAHAIGNES", - "nomCommune": "CHAHAIGNES" + "codePostal": "67420", + "codeCommune": "67436", + "libelleAcheminement": "SAULXURES", + "nomCommune": "SAULXURES" }, { - "codePostal": "22610", - "codeCommune": "22085", - "libelleAcheminement": "KERBORS", - "nomCommune": "KERBORS" + "codePostal": "79390", + "codeCommune": "79149", + "libelleAcheminement": "LHOUMOIS", + "nomCommune": "LHOUMOIS" }, { - "codePostal": "77230", - "codeCommune": "77308", - "libelleAcheminement": "MONTGE EN GOELE", - "nomCommune": "MONTGE EN GOELE" + "codePostal": "69430", + "codeCommune": "69162", + "libelleAcheminement": "QUINCIE EN BEAUJOLAIS", + "nomCommune": "QUINCIE EN BEAUJOLAIS" }, { - "codePostal": "79290", - "codeCommune": "79014", - "libelleAcheminement": "LORETZ D ARGENTON", - "nomCommune": "LORETZ D ARGENTON" + "codePostal": "79340", + "codeCommune": "79105", + "libelleAcheminement": "LES CHATELIERS", + "nomCommune": "LES CHATELIERS" }, { - "codePostal": "72250", - "codeCommune": "72053", - "libelleAcheminement": "CHALLES", - "nomCommune": "CHALLES" + "codePostal": "65400", + "codeCommune": "65396", + "libelleAcheminement": "ST SAVIN", + "nomCommune": "ST SAVIN" }, { - "codePostal": "22140", - "codeCommune": "22091", - "libelleAcheminement": "KERMOROC H", - "nomCommune": "KERMOROC H" + "codePostal": "67700", + "codeCommune": "67437", + "libelleAcheminement": "SAVERNE", + "nomCommune": "SAVERNE" }, { - "codePostal": "77250", - "codeCommune": "77316", - "libelleAcheminement": "MORET LOING ET ORVANNE", - "nomCommune": "MORET LOING ET ORVANNE" + "codePostal": "79190", + "codeCommune": "79152", + "libelleAcheminement": "LORIGNE", + "nomCommune": "LORIGNE" }, { - "codePostal": "79600", - "codeCommune": "79016", - "libelleAcheminement": "ASSAIS LES JUMEAUX", - "nomCommune": "ASSAIS LES JUMEAUX" + "codePostal": "69430", + "codeCommune": "69165", + "libelleAcheminement": "REGNIE DURETTE", + "nomCommune": "REGNIE DURETTE" }, { - "codePostal": "72430", - "codeCommune": "72059", - "libelleAcheminement": "CHANTENAY VILLEDIEU", - "nomCommune": "CHANTENAY VILLEDIEU" + "codePostal": "79340", + "codeCommune": "79105", + "libelleAcheminement": "LES CHATELIERS", + "nomCommune": "LES CHATELIERS" }, { - "codePostal": "22400", - "codeCommune": "22093", - "libelleAcheminement": "LAMBALLE ARMOR", - "nomCommune": "LAMBALLE ARMOR" + "codePostal": "65400", + "codeCommune": "65400", + "libelleAcheminement": "SALLES", + "nomCommune": "SALLES" }, { - "codePostal": "77124", - "codeCommune": "77335", - "libelleAcheminement": "CHAUCONIN NEUFMONTIERS", - "nomCommune": "CHAUCONIN NEUFMONTIERS" + "codePostal": "67350", + "codeCommune": "67441", + "libelleAcheminement": "SCHALKENDORF", + "nomCommune": "SCHALKENDORF" }, { - "codePostal": "79400", - "codeCommune": "79020", - "libelleAcheminement": "AUGE", - "nomCommune": "AUGE" + "codePostal": "79600", + "codeCommune": "79156", + "libelleAcheminement": "LOUIN", + "nomCommune": "LOUIN" }, { - "codePostal": "72800", - "codeCommune": "72060", - "libelleAcheminement": "LA CHAPELLE AUX CHOUX", - "nomCommune": "LA CHAPELLE AUX CHOUX" + "codePostal": "69640", + "codeCommune": "69167", + "libelleAcheminement": "RIVOLET", + "nomCommune": "RIVOLET" }, { - "codePostal": "22140", - "codeCommune": "22095", - "libelleAcheminement": "LANDEBAERON", - "nomCommune": "LANDEBAERON" + "codePostal": "79170", + "codeCommune": "79111", + "libelleAcheminement": "ENSIGNE", + "nomCommune": "ENSIGNE" }, { - "codePostal": "77610", - "codeCommune": "77336", - "libelleAcheminement": "NEUFMOUTIERS EN BRIE", - "nomCommune": "NEUFMOUTIERS EN BRIE" + "codePostal": "65410", + "codeCommune": "65408", + "libelleAcheminement": "SARRANCOLIN", + "nomCommune": "SARRANCOLIN" }, { - "codePostal": "79800", - "codeCommune": "79023", - "libelleAcheminement": "AVON", - "nomCommune": "AVON" + "codePostal": "67750", + "codeCommune": "67445", + "libelleAcheminement": "SCHERWILLER", + "nomCommune": "SCHERWILLER" }, { - "codePostal": "72310", - "codeCommune": "72064", - "libelleAcheminement": "LA CHAPELLE HUON", - "nomCommune": "LA CHAPELLE HUON" + "codePostal": "79330", + "codeCommune": "79159", + "libelleAcheminement": "LUCHE THOUARSAIS", + "nomCommune": "LUCHE THOUARSAIS" }, { - "codePostal": "22130", - "codeCommune": "22096", - "libelleAcheminement": "LANDEBIA", - "nomCommune": "LANDEBIA" + "codePostal": "69270", + "codeCommune": "69168", + "libelleAcheminement": "ROCHETAILLEE SUR SAONE", + "nomCommune": "ROCHETAILLEE SUR SAONE" }, { - "codePostal": "77123", - "codeCommune": "77339", - "libelleAcheminement": "NOISY SUR ECOLE", - "nomCommune": "NOISY SUR ECOLE" + "codePostal": "79270", + "codeCommune": "79112", + "libelleAcheminement": "EPANNES", + "nomCommune": "EPANNES" }, { - "codePostal": "79370", - "codeCommune": "79030", - "libelleAcheminement": "BEAUSSAIS VITRE", - "nomCommune": "BEAUSSAIS VITRE" + "codePostal": "65120", + "codeCommune": "65413", + "libelleAcheminement": "SAZOS", + "nomCommune": "SAZOS" }, { - "codePostal": "72500", - "codeCommune": "72071", - "libelleAcheminement": "MONTVAL SUR LOIR", - "nomCommune": "MONTVAL SUR LOIR" + "codePostal": "67130", + "codeCommune": "67448", + "libelleAcheminement": "SCHIRMECK", + "nomCommune": "SCHIRMECK" }, { - "codePostal": "22800", - "codeCommune": "22099", - "libelleAcheminement": "LANFAINS", - "nomCommune": "LANFAINS" + "codePostal": "79100", + "codeCommune": "79161", + "libelleAcheminement": "LUZAY", + "nomCommune": "LUZAY" }, { - "codePostal": "77440", - "codeCommune": "77343", - "libelleAcheminement": "OCQUERRE", - "nomCommune": "OCQUERRE" + "codePostal": "69700", + "codeCommune": "69179", + "libelleAcheminement": "BEAUVALLON", + "nomCommune": "BEAUVALLON" }, { - "codePostal": "79360", - "codeCommune": "79031", - "libelleAcheminement": "BEAUVOIR SUR NIORT", - "nomCommune": "BEAUVOIR SUR NIORT" + "codePostal": "79350", + "codeCommune": "79116", + "libelleAcheminement": "FAYE L ABBESSE", + "nomCommune": "FAYE L ABBESSE" }, { - "codePostal": "72500", - "codeCommune": "72071", - "libelleAcheminement": "MONTVAL SUR LOIR", - "nomCommune": "MONTVAL SUR LOIR" + "codePostal": "65100", + "codeCommune": "65415", + "libelleAcheminement": "SEGUS", + "nomCommune": "SEGUS" }, { - "codePostal": "22980", - "codeCommune": "22104", - "libelleAcheminement": "LANGUEDIAS", - "nomCommune": "LANGUEDIAS" + "codePostal": "67370", + "codeCommune": "67452", + "libelleAcheminement": "SCHNERSHEIM", + "nomCommune": "SCHNERSHEIM" }, { - "codePostal": "77280", - "codeCommune": "77349", - "libelleAcheminement": "OTHIS", - "nomCommune": "OTHIS" + "codePostal": "79320", + "codeCommune": "79179", + "libelleAcheminement": "MONCOUTANT SUR SEVRE", + "nomCommune": "MONCOUTANT SUR SEVRE" }, { - "codePostal": "79310", - "codeCommune": "79040", - "libelleAcheminement": "LA BOISSIERE EN GATINE", - "nomCommune": "LA BOISSIERE EN GATINE" + "codePostal": "69170", + "codeCommune": "69181", + "libelleAcheminement": "ST APPOLINAIRE", + "nomCommune": "ST APPOLINAIRE" }, { - "codePostal": "72610", - "codeCommune": "72076", - "libelleAcheminement": "CHENAY", - "nomCommune": "CHENAY" + "codePostal": "79370", + "codeCommune": "79129", + "libelleAcheminement": "FRESSINES", + "nomCommune": "FRESSINES" }, { - "codePostal": "22570", - "codeCommune": "22107", - "libelleAcheminement": "BON REPOS SUR BLAVET", - "nomCommune": "BON REPOS SUR BLAVET" + "codePostal": "65370", + "codeCommune": "65431", + "libelleAcheminement": "SOST", + "nomCommune": "SOST" }, { - "codePostal": "77330", - "codeCommune": "77350", - "libelleAcheminement": "OZOIR LA FERRIERE", - "nomCommune": "OZOIR LA FERRIERE" + "codePostal": "67370", + "codeCommune": "67452", + "libelleAcheminement": "SCHNERSHEIM", + "nomCommune": "SCHNERSHEIM" }, { - "codePostal": "79290", - "codeCommune": "79056", - "libelleAcheminement": "BRION PRES THOUET", - "nomCommune": "BRION PRES THOUET" + "codePostal": "79380", + "codeCommune": "79179", + "libelleAcheminement": "MONCOUTANT SUR SEVRE", + "nomCommune": "MONCOUTANT SUR SEVRE" }, { - "codePostal": "72400", - "codeCommune": "72080", - "libelleAcheminement": "CHERRE AU", - "nomCommune": "CHERRE AU" + "codePostal": "69870", + "codeCommune": "69183", + "libelleAcheminement": "ST BONNET LE TRONCY", + "nomCommune": "ST BONNET LE TRONCY" }, { - "codePostal": "22570", - "codeCommune": "22107", - "libelleAcheminement": "BON REPOS SUR BLAVET", - "nomCommune": "BON REPOS SUR BLAVET" + "codePostal": "79270", + "codeCommune": "79130", + "libelleAcheminement": "FRONTENAY ROHAN ROHAN", + "nomCommune": "FRONTENAY ROHAN ROHAN" }, { - "codePostal": "77390", - "codeCommune": "77352", - "libelleAcheminement": "OZOUER LE VOULGIS", - "nomCommune": "OZOUER LE VOULGIS" + "codePostal": "65500", + "codeCommune": "65438", + "libelleAcheminement": "TALAZAC", + "nomCommune": "TALAZAC" }, { - "codePostal": "79230", - "codeCommune": "79058", - "libelleAcheminement": "BRULAIN", - "nomCommune": "BRULAIN" + "codePostal": "67470", + "codeCommune": "67463", + "libelleAcheminement": "SELTZ", + "nomCommune": "SELTZ" }, { - "codePostal": "72200", - "codeCommune": "72084", - "libelleAcheminement": "CLERMONT CREANS", - "nomCommune": "CLERMONT CREANS" + "codePostal": "79370", + "codeCommune": "79185", + "libelleAcheminement": "AIGONDIGNE", + "nomCommune": "AIGONDIGNE" }, { - "codePostal": "22300", - "codeCommune": "22110", - "libelleAcheminement": "LANMERIN", - "nomCommune": "LANMERIN" + "codePostal": "69440", + "codeCommune": "69184", + "libelleAcheminement": "STE CATHERINE", + "nomCommune": "STE CATHERINE" }, { - "codePostal": "77131", - "codeCommune": "77360", - "libelleAcheminement": "PEZARCHES", - "nomCommune": "PEZARCHES" + "codePostal": "79150", + "codeCommune": "79132", + "libelleAcheminement": "GENNETON", + "nomCommune": "GENNETON" }, { - "codePostal": "79240", - "codeCommune": "79059", - "libelleAcheminement": "LE BUSSEAU", - "nomCommune": "LE BUSSEAU" + "codePostal": "65140", + "codeCommune": "65446", + "libelleAcheminement": "TOSTAT", + "nomCommune": "TOSTAT" }, { - "codePostal": "72290", - "codeCommune": "72088", - "libelleAcheminement": "CONGE SUR ORNE", - "nomCommune": "CONGE SUR ORNE" + "codePostal": "67220", + "codeCommune": "67477", + "libelleAcheminement": "STEIGE", + "nomCommune": "STEIGE" }, { - "codePostal": "22740", - "codeCommune": "22127", - "libelleAcheminement": "LEZARDRIEUX", - "nomCommune": "LEZARDRIEUX" + "codePostal": "79370", + "codeCommune": "79185", + "libelleAcheminement": "AIGONDIGNE", + "nomCommune": "AIGONDIGNE" }, { - "codePostal": "77181", - "codeCommune": "77363", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "69170", + "codeCommune": "69188", + "libelleAcheminement": "ST CLEMENT SUR VALSONNE", + "nomCommune": "ST CLEMENT SUR VALSONNE" }, { - "codePostal": "79290", - "codeCommune": "79063", - "libelleAcheminement": "VAL EN VIGNES", - "nomCommune": "VAL EN VIGNES" + "codePostal": "79230", + "codeCommune": "79144", + "libelleAcheminement": "JUSCORPS", + "nomCommune": "JUSCORPS" }, { - "codePostal": "72190", - "codeCommune": "72095", - "libelleAcheminement": "COULAINES", - "nomCommune": "COULAINES" + "codePostal": "65400", + "codeCommune": "65458", + "libelleAcheminement": "UZ", + "nomCommune": "UZ" }, { - "codePostal": "22740", - "codeCommune": "22127", - "libelleAcheminement": "LEZARDRIEUX", - "nomCommune": "LEZARDRIEUX" + "codePostal": "67190", + "codeCommune": "67480", + "libelleAcheminement": "STILL", + "nomCommune": "STILL" }, { - "codePostal": "77540", - "codeCommune": "77365", - "libelleAcheminement": "LE PLESSIS FEU AUSSOUX", - "nomCommune": "LE PLESSIS FEU AUSSOUX" + "codePostal": "79000", + "codeCommune": "79191", + "libelleAcheminement": "NIORT", + "nomCommune": "NIORT" }, { - "codePostal": "79220", - "codeCommune": "79066", - "libelleAcheminement": "CHAMPDENIERS", - "nomCommune": "CHAMPDENIERS" + "codePostal": "69450", + "codeCommune": "69191", + "libelleAcheminement": "ST CYR AU MONT D OR", + "nomCommune": "ST CYR AU MONT D OR" }, { - "codePostal": "72550", - "codeCommune": "72096", - "libelleAcheminement": "COULANS SUR GEE", - "nomCommune": "COULANS SUR GEE" + "codePostal": "79170", + "codeCommune": "79158", + "libelleAcheminement": "LUCHE SUR BRIOUX", + "nomCommune": "LUCHE SUR BRIOUX" }, { - "codePostal": "22780", - "codeCommune": "22131", - "libelleAcheminement": "LOGUIVY PLOUGRAS", - "nomCommune": "LOGUIVY PLOUGRAS" + "codePostal": "65200", + "codeCommune": "65459", + "libelleAcheminement": "UZER", + "nomCommune": "UZER" }, { - "codePostal": "77160", - "codeCommune": "77368", - "libelleAcheminement": "POIGNY", - "nomCommune": "POIGNY" + "codePostal": "67000", + "codeCommune": "67482", + "libelleAcheminement": "STRASBOURG", + "nomCommune": "STRASBOURG" }, { - "codePostal": "79220", - "codeCommune": "79066", - "libelleAcheminement": "CHAMPDENIERS", - "nomCommune": "CHAMPDENIERS" + "codePostal": "79000", + "codeCommune": "79191", + "libelleAcheminement": "NIORT", + "nomCommune": "NIORT" }, { - "codePostal": "72800", - "codeCommune": "72098", - "libelleAcheminement": "COULONGE", - "nomCommune": "COULONGE" + "codePostal": "69370", + "codeCommune": "69194", + "libelleAcheminement": "ST DIDIER AU MONT D OR", + "nomCommune": "ST DIDIER AU MONT D OR" }, { - "codePostal": "22540", - "codeCommune": "22135", - "libelleAcheminement": "LOUARGAT", - "nomCommune": "LOUARGAT" + "codePostal": "79310", + "codeCommune": "79172", + "libelleAcheminement": "MAZIERES EN GATINE", + "nomCommune": "MAZIERES EN GATINE" }, { - "codePostal": "77515", - "codeCommune": "77371", - "libelleAcheminement": "POMMEUSE", - "nomCommune": "POMMEUSE" + "codePostal": "65120", + "codeCommune": "65463", + "libelleAcheminement": "VIELLA", + "nomCommune": "VIELLA" }, { - "codePostal": "79360", - "codeCommune": "79078", - "libelleAcheminement": "PLAINE D ARGENSON", - "nomCommune": "PLAINE D ARGENSON" + "codePostal": "67200", + "codeCommune": "67482", + "libelleAcheminement": "STRASBOURG", + "nomCommune": "STRASBOURG" }, { - "codePostal": "72550", - "codeCommune": "72113", - "libelleAcheminement": "DEGRE", - "nomCommune": "DEGRE" + "codePostal": "79100", + "codeCommune": "79196", + "libelleAcheminement": "PLAINE ET VALLEES", + "nomCommune": "PLAINE ET VALLEES" }, { - "codePostal": "22530", - "codeCommune": "22158", - "libelleAcheminement": "GUERLEDAN", - "nomCommune": "GUERLEDAN" + "codePostal": "69830", + "codeCommune": "69206", + "libelleAcheminement": "ST GEORGES DE RENEINS", + "nomCommune": "ST GEORGES DE RENEINS" }, { - "codePostal": "77340", - "codeCommune": "77373", - "libelleAcheminement": "PONTAULT COMBAULT", - "nomCommune": "PONTAULT COMBAULT" + "codePostal": "79500", + "codeCommune": "79174", + "libelleAcheminement": "MELLE", + "nomCommune": "MELLE" }, { - "codePostal": "79700", - "codeCommune": "79079", - "libelleAcheminement": "MAULEON", - "nomCommune": "MAULEON" + "codePostal": "65230", + "codeCommune": "65468", + "libelleAcheminement": "VIEUZOS", + "nomCommune": "VIEUZOS" }, { - "codePostal": "72400", - "codeCommune": "72114", - "libelleAcheminement": "DEHAULT", - "nomCommune": "DEHAULT" + "codePostal": "67290", + "codeCommune": "67483", + "libelleAcheminement": "STRUTH", + "nomCommune": "STRUTH" }, { - "codePostal": "22400", - "codeCommune": "22160", - "libelleAcheminement": "NOYAL", - "nomCommune": "NOYAL" + "codePostal": "79200", + "codeCommune": "79202", + "libelleAcheminement": "PARTHENAY", + "nomCommune": "PARTHENAY" }, { - "codePostal": "77410", - "codeCommune": "77376", - "libelleAcheminement": "PRECY SUR MARNE", - "nomCommune": "PRECY SUR MARNE" + "codePostal": "69380", + "codeCommune": "69212", + "libelleAcheminement": "ST JEAN DES VIGNES", + "nomCommune": "ST JEAN DES VIGNES" }, { - "codePostal": "79700", - "codeCommune": "79079", - "libelleAcheminement": "MAULEON", - "nomCommune": "MAULEON" + "codePostal": "79500", + "codeCommune": "79174", + "libelleAcheminement": "MELLE", + "nomCommune": "MELLE" }, { - "codePostal": "72390", - "codeCommune": "72118", - "libelleAcheminement": "DOLLON", - "nomCommune": "DOLLON" + "codePostal": "65100", + "codeCommune": "65470", + "libelleAcheminement": "VIGER", + "nomCommune": "VIGER" }, { - "codePostal": "22710", - "codeCommune": "22166", - "libelleAcheminement": "PENVENAN", - "nomCommune": "PENVENAN" + "codePostal": "67250", + "codeCommune": "67487", + "libelleAcheminement": "SURBOURG", + "nomCommune": "SURBOURG" }, { - "codePostal": "77220", - "codeCommune": "77377", - "libelleAcheminement": "PRESLES EN BRIE", - "nomCommune": "PRESLES EN BRIE" + "codePostal": "79230", + "codeCommune": "79216", + "libelleAcheminement": "PRAHECQ", + "nomCommune": "PRAHECQ" }, { - "codePostal": "79700", - "codeCommune": "79079", - "libelleAcheminement": "MAULEON", - "nomCommune": "MAULEON" + "codePostal": "69690", + "codeCommune": "69216", + "libelleAcheminement": "ST JULIEN SUR BIBOST", + "nomCommune": "ST JULIEN SUR BIBOST" }, { - "codePostal": "72220", - "codeCommune": "72124", - "libelleAcheminement": "ECOMMOY", - "nomCommune": "ECOMMOY" + "codePostal": "79500", + "codeCommune": "79174", + "libelleAcheminement": "MELLE", + "nomCommune": "MELLE" }, { - "codePostal": "22480", - "codeCommune": "22169", - "libelleAcheminement": "PEUMERIT QUINTIN", - "nomCommune": "PEUMERIT QUINTIN" + "codePostal": "65170", + "codeCommune": "65471", + "libelleAcheminement": "VIGNEC", + "nomCommune": "VIGNEC" }, { - "codePostal": "77160", - "codeCommune": "77379", - "libelleAcheminement": "PROVINS", - "nomCommune": "PROVINS" + "codePostal": "67350", + "codeCommune": "67497", + "libelleAcheminement": "UHLWILLER", + "nomCommune": "UHLWILLER" }, { - "codePostal": "79110", - "codeCommune": "79083", - "libelleAcheminement": "CHEF BOUTONNE", - "nomCommune": "CHEF BOUTONNE" + "codePostal": "79800", + "codeCommune": "79217", + "libelleAcheminement": "PRAILLES LA COUARDE", + "nomCommune": "PRAILLES LA COUARDE" }, { - "codePostal": "72550", - "codeCommune": "72130", - "libelleAcheminement": "FAY", - "nomCommune": "FAY" + "codePostal": "69440", + "codeCommune": "69219", + "libelleAcheminement": "ST LAURENT D AGNY", + "nomCommune": "ST LAURENT D AGNY" }, { - "codePostal": "22270", - "codeCommune": "22175", - "libelleAcheminement": "PLEDELIAC", - "nomCommune": "PLEDELIAC" + "codePostal": "79500", + "codeCommune": "79174", + "libelleAcheminement": "MELLE", + "nomCommune": "MELLE" }, { - "codePostal": "77139", - "codeCommune": "77380", - "libelleAcheminement": "PUISIEUX", - "nomCommune": "PUISIEUX" + "codePostal": "65150", + "codeCommune": "65482", + "libelleAcheminement": "CANTAOUS", + "nomCommune": "CANTAOUS" }, { - "codePostal": "79220", - "codeCommune": "79104", - "libelleAcheminement": "COURS", - "nomCommune": "COURS" + "codePostal": "67220", + "codeCommune": "67499", + "libelleAcheminement": "URBEIS", + "nomCommune": "URBEIS" }, { - "codePostal": "72350", - "codeCommune": "72136", - "libelleAcheminement": "FONTENAY SUR VEGRE", - "nomCommune": "FONTENAY SUR VEGRE" + "codePostal": "79160", + "codeCommune": "79223", + "libelleAcheminement": "PUIHARDY", + "nomCommune": "PUIHARDY" }, { - "codePostal": "22960", - "codeCommune": "22176", - "libelleAcheminement": "PLEDRAN", - "nomCommune": "PLEDRAN" + "codePostal": "69850", + "codeCommune": "69227", + "libelleAcheminement": "ST MARTIN EN HAUT", + "nomCommune": "ST MARTIN EN HAUT" }, { - "codePostal": "77550", - "codeCommune": "77384", - "libelleAcheminement": "REAU", - "nomCommune": "REAU" + "codePostal": "79120", + "codeCommune": "79177", + "libelleAcheminement": "MESSE", + "nomCommune": "MESSE" }, { - "codePostal": "79340", - "codeCommune": "79105", - "libelleAcheminement": "LES CHATELIERS", - "nomCommune": "LES CHATELIERS" + "codePostal": "66200", + "codeCommune": "66002", + "libelleAcheminement": "ALENYA", + "nomCommune": "ALENYA" }, { - "codePostal": "72140", - "codeCommune": "72145", - "libelleAcheminement": "LE GREZ", - "nomCommune": "LE GREZ" + "codePostal": "67310", + "codeCommune": "67520", + "libelleAcheminement": "WASSELONNE", + "nomCommune": "WASSELONNE" }, { - "codePostal": "22290", - "codeCommune": "22177", - "libelleAcheminement": "PLEGUIEN", - "nomCommune": "PLEGUIEN" + "codePostal": "79270", + "codeCommune": "79229", + "libelleAcheminement": "LA ROCHENARD", + "nomCommune": "LA ROCHENARD" }, { - "codePostal": "77160", - "codeCommune": "77391", - "libelleAcheminement": "ROUILLY", - "nomCommune": "ROUILLY" + "codePostal": "69440", + "codeCommune": "69228", + "libelleAcheminement": "CHABANIERE", + "nomCommune": "CHABANIERE" }, { - "codePostal": "79350", - "codeCommune": "79116", - "libelleAcheminement": "FAYE L ABBESSE", - "nomCommune": "FAYE L ABBESSE" + "codePostal": "79140", + "codeCommune": "79183", + "libelleAcheminement": "MONTRAVERS", + "nomCommune": "MONTRAVERS" }, { - "codePostal": "72540", - "codeCommune": "72166", - "libelleAcheminement": "LONGNES", - "nomCommune": "LONGNES" + "codePostal": "66320", + "codeCommune": "66007", + "libelleAcheminement": "ARBOUSSOLS", + "nomCommune": "ARBOUSSOLS" }, { - "codePostal": "22240", - "codeCommune": "22179", - "libelleAcheminement": "FREHEL", - "nomCommune": "FREHEL" + "codePostal": "67310", + "codeCommune": "67520", + "libelleAcheminement": "WASSELONNE", + "nomCommune": "WASSELONNE" }, { - "codePostal": "77760", - "codeCommune": "77395", - "libelleAcheminement": "RUMONT", - "nomCommune": "RUMONT" + "codePostal": "79120", + "codeCommune": "79230", + "libelleAcheminement": "ROM", + "nomCommune": "ROM" }, { - "codePostal": "79110", - "codeCommune": "79122", - "libelleAcheminement": "FONTENILLE ST MARTIN ENTRAIGUES", - "nomCommune": "FONTENILLE ST MARTIN D ENTRAIGUES" + "codePostal": "69490", + "codeCommune": "69234", + "libelleAcheminement": "ST ROMAIN DE POPEY", + "nomCommune": "ST ROMAIN DE POPEY" }, { - "codePostal": "72540", - "codeCommune": "72168", - "libelleAcheminement": "LOUE", - "nomCommune": "LOUE" + "codePostal": "79000", + "codeCommune": "79191", + "libelleAcheminement": "NIORT", + "nomCommune": "NIORT" }, { - "codePostal": "22570", - "codeCommune": "22181", - "libelleAcheminement": "PLELAUFF", - "nomCommune": "PLELAUFF" + "codePostal": "66700", + "codeCommune": "66008", + "libelleAcheminement": "ARGELES SUR MER", + "nomCommune": "ARGELES SUR MER" }, { - "codePostal": "77730", - "codeCommune": "77397", - "libelleAcheminement": "SAACY SUR MARNE", - "nomCommune": "SAACY SUR MARNE" + "codePostal": "67270", + "codeCommune": "67530", + "libelleAcheminement": "WICKERSHEIM WILSHAUSEN", + "nomCommune": "WICKERSHEIM WILSHAUSEN" }, { - "codePostal": "79260", - "codeCommune": "79128", - "libelleAcheminement": "FRANCOIS", - "nomCommune": "FRANCOIS" + "codePostal": "79150", + "codeCommune": "79242", + "libelleAcheminement": "VOULMENTIN", + "nomCommune": "VOULMENTIN" }, { - "codePostal": "72210", - "codeCommune": "72169", - "libelleAcheminement": "LOUPLANDE", - "nomCommune": "LOUPLANDE" + "codePostal": "69440", + "codeCommune": "69241", + "libelleAcheminement": "TALUYERS", + "nomCommune": "TALUYERS" }, { - "codePostal": "22370", - "codeCommune": "22186", - "libelleAcheminement": "PLENEUF VAL ANDRE", - "nomCommune": "PLENEUF VAL ANDRE" + "codePostal": "79100", + "codeCommune": "79196", + "libelleAcheminement": "PLAINE ET VALLEES", + "nomCommune": "PLAINE ET VALLEES" }, { - "codePostal": "77260", - "codeCommune": "77401", - "libelleAcheminement": "STE AULDE", - "nomCommune": "STE AULDE" + "codePostal": "66650", + "codeCommune": "66016", + "libelleAcheminement": "BANYULS SUR MER", + "nomCommune": "BANYULS SUR MER" }, { - "codePostal": "79330", - "codeCommune": "79131", - "libelleAcheminement": "GEAY", - "nomCommune": "GEAY" + "codePostal": "67290", + "codeCommune": "67535", + "libelleAcheminement": "WIMMENAU", + "nomCommune": "WIMMENAU" }, { - "codePostal": "72600", - "codeCommune": "72170", - "libelleAcheminement": "LOUVIGNY", - "nomCommune": "LOUVIGNY" + "codePostal": "79330", + "codeCommune": "79250", + "libelleAcheminement": "STE GEMME", + "nomCommune": "STE GEMME" }, { - "codePostal": "22720", - "codeCommune": "22189", - "libelleAcheminement": "PLESIDY", - "nomCommune": "PLESIDY" + "codePostal": "69510", + "codeCommune": "69249", + "libelleAcheminement": "THURINS", + "nomCommune": "THURINS" }, { - "codePostal": "77650", - "codeCommune": "77404", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "79100", + "codeCommune": "79196", + "libelleAcheminement": "PLAINE ET VALLEES", + "nomCommune": "PLAINE ET VALLEES" }, { - "codePostal": "79220", - "codeCommune": "79133", - "libelleAcheminement": "GERMOND ROUVRE", - "nomCommune": "GERMOND ROUVRE" + "codePostal": "66420", + "codeCommune": "66017", + "libelleAcheminement": "LE BARCARES", + "nomCommune": "LE BARCARES" }, { - "codePostal": "72210", - "codeCommune": "72177", - "libelleAcheminement": "MAIGNE", - "nomCommune": "MAIGNE" + "codePostal": "67110", + "codeCommune": "67536", + "libelleAcheminement": "WINDSTEIN", + "nomCommune": "WINDSTEIN" }, { - "codePostal": "22490", - "codeCommune": "22190", - "libelleAcheminement": "PLESLIN TRIGAVOU", - "nomCommune": "PLESLIN TRIGAVOU" + "codePostal": "79500", + "codeCommune": "79251", + "libelleAcheminement": "MARCILLE", + "nomCommune": "MARCILLE" }, { - "codePostal": "77750", - "codeCommune": "77405", - "libelleAcheminement": "ST CYR SUR MORIN", - "nomCommune": "ST CYR SUR MORIN" + "codePostal": "69170", + "codeCommune": "69254", + "libelleAcheminement": "VALSONNE", + "nomCommune": "VALSONNE" }, { - "codePostal": "79190", - "codeCommune": "79136", - "libelleAcheminement": "ALLOINAY", - "nomCommune": "ALLOINAY" + "codePostal": "79800", + "codeCommune": "79201", + "libelleAcheminement": "PAMPROUX", + "nomCommune": "PAMPROUX" }, { - "codePostal": "72270", - "codeCommune": "72179", - "libelleAcheminement": "MALICORNE SUR SARTHE", - "nomCommune": "MALICORNE SUR SARTHE" + "codePostal": "66720", + "codeCommune": "66019", + "libelleAcheminement": "BELESTA", + "nomCommune": "BELESTA" }, { - "codePostal": "22640", - "codeCommune": "22193", - "libelleAcheminement": "PLESTAN", - "nomCommune": "PLESTAN" + "codePostal": "67110", + "codeCommune": "67536", + "libelleAcheminement": "WINDSTEIN", + "nomCommune": "WINDSTEIN" }, { - "codePostal": "77950", - "codeCommune": "77410", - "libelleAcheminement": "ST GERMAIN LAXIS", - "nomCommune": "ST GERMAIN LAXIS" + "codePostal": "79600", + "codeCommune": "79252", + "libelleAcheminement": "ST GENEROUX", + "nomCommune": "ST GENEROUX" }, { - "codePostal": "79240", - "codeCommune": "79147", - "libelleAcheminement": "LARGEASSE", - "nomCommune": "LARGEASSE" + "codePostal": "69670", + "codeCommune": "69255", + "libelleAcheminement": "VAUGNERAY", + "nomCommune": "VAUGNERAY" }, { - "codePostal": "72340", - "codeCommune": "72183", - "libelleAcheminement": "MARCON", - "nomCommune": "MARCON" + "codePostal": "79170", + "codeCommune": "79204", + "libelleAcheminement": "PERIGNE", + "nomCommune": "PERIGNE" }, { - "codePostal": "22310", - "codeCommune": "22194", - "libelleAcheminement": "PLESTIN LES GREVES", - "nomCommune": "PLESTIN LES GREVES" + "codePostal": "66760", + "codeCommune": "66025", + "libelleAcheminement": "BOURG MADAME", + "nomCommune": "BOURG MADAME" }, { - "codePostal": "77320", - "codeCommune": "77423", - "libelleAcheminement": "ST MARTIN DES CHAMPS", - "nomCommune": "ST MARTIN DES CHAMPS" + "codePostal": "67170", + "codeCommune": "67539", + "libelleAcheminement": "WINGERSHEIM LES QUATRE BANS", + "nomCommune": "WINGERSHEIM LES QUATRE BANS" }, { - "codePostal": "79110", - "codeCommune": "79153", - "libelleAcheminement": "LOUBIGNE", - "nomCommune": "LOUBIGNE" + "codePostal": "79400", + "codeCommune": "79253", + "libelleAcheminement": "ST GEORGES DE NOISNE", + "nomCommune": "ST GEORGES DE NOISNE" }, { - "codePostal": "72600", - "codeCommune": "72188", - "libelleAcheminement": "MAROLLETTE", - "nomCommune": "MAROLLETTE" + "codePostal": "69820", + "codeCommune": "69258", + "libelleAcheminement": "VAUXRENARD", + "nomCommune": "VAUXRENARD" }, { - "codePostal": "22610", - "codeCommune": "22195", - "libelleAcheminement": "PLEUBIAN", - "nomCommune": "PLEUBIAN" + "codePostal": "79700", + "codeCommune": "79207", + "libelleAcheminement": "LA PETITE BOISSIERE", + "nomCommune": "LA PETITE BOISSIERE" }, { - "codePostal": "77630", - "codeCommune": "77425", - "libelleAcheminement": "ST MARTIN EN BIERE", - "nomCommune": "ST MARTIN EN BIERE" + "codePostal": "66620", + "codeCommune": "66026", + "libelleAcheminement": "BROUILLA", + "nomCommune": "BROUILLA" }, { - "codePostal": "79500", - "codeCommune": "79174", - "libelleAcheminement": "MELLE", - "nomCommune": "MELLE" + "codePostal": "67130", + "codeCommune": "67543", + "libelleAcheminement": "WISCHES", + "nomCommune": "WISCHES" }, { - "codePostal": "72240", - "codeCommune": "72197", - "libelleAcheminement": "MEZIERES SOUS LAVARDIN", - "nomCommune": "MEZIERES SOUS LAVARDIN" + "codePostal": "79100", + "codeCommune": "79259", + "libelleAcheminement": "ST JEAN DE THOUARS", + "nomCommune": "ST JEAN DE THOUARS" }, { - "codePostal": "22650", - "codeCommune": "22209", - "libelleAcheminement": "BEAUSSAIS SUR MER", - "nomCommune": "BEAUSSAIS SUR MER" + "codePostal": "69910", + "codeCommune": "69267", + "libelleAcheminement": "VILLIE MORGON", + "nomCommune": "VILLIE MORGON" }, { - "codePostal": "77720", - "codeCommune": "77428", - "libelleAcheminement": "ST OUEN EN BRIE", - "nomCommune": "ST OUEN EN BRIE" + "codePostal": "79260", + "codeCommune": "79231", + "libelleAcheminement": "ROMANS", + "nomCommune": "ROMANS" }, { - "codePostal": "79190", - "codeCommune": "79175", - "libelleAcheminement": "MELLERAN", - "nomCommune": "MELLERAN" + "codePostal": "66300", + "codeCommune": "66033", + "libelleAcheminement": "CAMELAS", + "nomCommune": "CAMELAS" }, { - "codePostal": "72260", - "codeCommune": "72202", - "libelleAcheminement": "MONHOUDOU", - "nomCommune": "MONHOUDOU" + "codePostal": "67130", + "codeCommune": "67543", + "libelleAcheminement": "WISCHES", + "nomCommune": "WISCHES" }, { - "codePostal": "22260", - "codeCommune": "22212", - "libelleAcheminement": "PLOUEC DU TRIEUX", - "nomCommune": "PLOUEC DU TRIEUX" + "codePostal": "79600", + "codeCommune": "79268", + "libelleAcheminement": "ST LOUP LAMAIRE", + "nomCommune": "ST LOUP LAMAIRE" }, { - "codePostal": "77178", - "codeCommune": "77430", - "libelleAcheminement": "ST PATHUS", - "nomCommune": "ST PATHUS" + "codePostal": "69960", + "codeCommune": "69273", + "libelleAcheminement": "CORBAS", + "nomCommune": "CORBAS" }, { - "codePostal": "79240", - "codeCommune": "79179", - "libelleAcheminement": "MONCOUTANT SUR SEVRE", - "nomCommune": "MONCOUTANT SUR SEVRE" + "codePostal": "79380", + "codeCommune": "79236", + "libelleAcheminement": "ST ANDRE SUR SEVRE", + "nomCommune": "ST ANDRE SUR SEVRE" }, { - "codePostal": "72380", - "codeCommune": "72205", - "libelleAcheminement": "MONTBIZOT", - "nomCommune": "MONTBIZOT" + "codePostal": "66730", + "codeCommune": "66035", + "libelleAcheminement": "CAMPOUSSY", + "nomCommune": "CAMPOUSSY" }, { - "codePostal": "22470", - "codeCommune": "22214", - "libelleAcheminement": "PLOUEZEC", - "nomCommune": "PLOUEZEC" + "codePostal": "67160", + "codeCommune": "67544", + "libelleAcheminement": "WISSEMBOURG", + "nomCommune": "WISSEMBOURG" }, { - "codePostal": "77140", - "codeCommune": "77431", - "libelleAcheminement": "ST PIERRE LES NEMOURS", - "nomCommune": "ST PIERRE LES NEMOURS" + "codePostal": "79400", + "codeCommune": "79270", + "libelleAcheminement": "ST MAIXENT L ECOLE", + "nomCommune": "ST MAIXENT L ECOLE" }, { - "codePostal": "79800", - "codeCommune": "79184", - "libelleAcheminement": "LA MOTHE ST HERAY", - "nomCommune": "LA MOTHE ST HERAY" + "codePostal": "69330", + "codeCommune": "69280", + "libelleAcheminement": "JONS", + "nomCommune": "JONS" }, { - "codePostal": "72260", - "codeCommune": "72214", - "libelleAcheminement": "NAUVAY", - "nomCommune": "NAUVAY" + "codePostal": "79450", + "codeCommune": "79239", + "libelleAcheminement": "ST AUBIN LE CLOUD", + "nomCommune": "ST AUBIN LE CLOUD" }, { - "codePostal": "22820", - "codeCommune": "22218", - "libelleAcheminement": "PLOUGRESCANT", - "nomCommune": "PLOUGRESCANT" + "codePostal": "66360", + "codeCommune": "66036", + "libelleAcheminement": "CANAVEILLES", + "nomCommune": "CANAVEILLES" }, { - "codePostal": "77400", - "codeCommune": "77438", - "libelleAcheminement": "ST THIBAULT DES VIGNES", - "nomCommune": "ST THIBAULT DES VIGNES" + "codePostal": "67260", + "codeCommune": "67552", + "libelleAcheminement": "WOLFSKIRCHEN", + "nomCommune": "WOLFSKIRCHEN" }, { - "codePostal": "79130", - "codeCommune": "79190", - "libelleAcheminement": "NEUVY BOUIN", - "nomCommune": "NEUVY BOUIN" + "codePostal": "79290", + "codeCommune": "79277", + "libelleAcheminement": "ST MARTIN DE SANZAY", + "nomCommune": "ST MARTIN DE SANZAY" }, { - "codePostal": "72430", - "codeCommune": "72223", - "libelleAcheminement": "NOYEN SUR SARTHE", - "nomCommune": "NOYEN SUR SARTHE" + "codePostal": "69330", + "codeCommune": "69282", + "libelleAcheminement": "MEYZIEU", + "nomCommune": "MEYZIEU" }, { - "codePostal": "22150", - "codeCommune": "22219", - "libelleAcheminement": "PLOUGUENAST LANGAST", - "nomCommune": "PLOUGUENAST LANGAST" + "codePostal": "79500", + "codeCommune": "79251", + "libelleAcheminement": "MARCILLE", + "nomCommune": "MARCILLE" }, { - "codePostal": "77148", - "codeCommune": "77439", - "libelleAcheminement": "SALINS", - "nomCommune": "SALINS" + "codePostal": "66820", + "codeCommune": "66043", + "libelleAcheminement": "CASTEIL", + "nomCommune": "CASTEIL" }, { - "codePostal": "79000", - "codeCommune": "79191", - "libelleAcheminement": "NIORT", - "nomCommune": "NIORT" + "codePostal": "68210", + "codeCommune": "68006", + "libelleAcheminement": "BERNWILLER", + "nomCommune": "BERNWILLER" }, { - "codePostal": "72370", - "codeCommune": "72224", - "libelleAcheminement": "NUILLE LE JALAIS", - "nomCommune": "NUILLE LE JALAIS" + "codePostal": "79420", + "codeCommune": "79278", + "libelleAcheminement": "ST MARTIN DU FOUILLOUX", + "nomCommune": "ST MARTIN DU FOUILLOUX" }, { - "codePostal": "22110", - "codeCommune": "22220", - "libelleAcheminement": "PLOUGUERNEVEL", - "nomCommune": "PLOUGUERNEVEL" + "codePostal": "69780", + "codeCommune": "69283", + "libelleAcheminement": "MIONS", + "nomCommune": "MIONS" }, { - "codePostal": "77115", - "codeCommune": "77453", - "libelleAcheminement": "SIVRY COURTRY", - "nomCommune": "SIVRY COURTRY" + "codePostal": "79340", + "codeCommune": "79256", + "libelleAcheminement": "ST GERMIER", + "nomCommune": "ST GERMIER" }, { - "codePostal": "79100", - "codeCommune": "79196", - "libelleAcheminement": "PLAINE ET VALLEES", - "nomCommune": "PLAINE ET VALLEES" + "codePostal": "66500", + "codeCommune": "66045", + "libelleAcheminement": "CATLLAR", + "nomCommune": "CATLLAR" }, { - "codePostal": "72330", - "codeCommune": "72226", - "libelleAcheminement": "OIZE", - "nomCommune": "OIZE" + "codePostal": "68220", + "codeCommune": "68013", + "libelleAcheminement": "ATTENSCHWILLER", + "nomCommune": "ATTENSCHWILLER" }, { - "codePostal": "22580", - "codeCommune": "22222", - "libelleAcheminement": "PLOUHA", - "nomCommune": "PLOUHA" + "codePostal": "79150", + "codeCommune": "79280", + "libelleAcheminement": "ST MAURICE ETUSSON", + "nomCommune": "ST MAURICE ETUSSON" }, { - "codePostal": "77163", - "codeCommune": "77466", - "libelleAcheminement": "TIGEAUX", - "nomCommune": "TIGEAUX" + "codePostal": "69140", + "codeCommune": "69286", + "libelleAcheminement": "RILLIEUX LA PAPE", + "nomCommune": "RILLIEUX LA PAPE" }, { - "codePostal": "79390", - "codeCommune": "79197", - "libelleAcheminement": "OROUX", - "nomCommune": "OROUX" + "codePostal": "79160", + "codeCommune": "79263", + "libelleAcheminement": "ST LAURS", + "nomCommune": "ST LAURS" }, { - "codePostal": "72600", - "codeCommune": "72227", - "libelleAcheminement": "PANON", - "nomCommune": "PANON" + "codePostal": "66290", + "codeCommune": "66048", + "libelleAcheminement": "CERBERE", + "nomCommune": "CERBERE" }, { - "codePostal": "22200", - "codeCommune": "22223", - "libelleAcheminement": "PLOUISY", - "nomCommune": "PLOUISY" + "codePostal": "68870", + "codeCommune": "68021", + "libelleAcheminement": "BARTENHEIM", + "nomCommune": "BARTENHEIM" }, { - "codePostal": "77130", - "codeCommune": "77467", - "libelleAcheminement": "LA TOMBE", - "nomCommune": "LA TOMBE" + "codePostal": "79240", + "codeCommune": "79286", + "libelleAcheminement": "ST PAUL EN GATINE", + "nomCommune": "ST PAUL EN GATINE" }, { - "codePostal": "79800", - "codeCommune": "79217", - "libelleAcheminement": "PRAILLES LA COUARDE", - "nomCommune": "PRAILLES LA COUARDE" + "codePostal": "69124", + "codeCommune": "69299", + "libelleAcheminement": "COLOMBIER SAUGNIEU", + "nomCommune": "COLOMBIER SAUGNIEU" }, { - "codePostal": "72170", - "codeCommune": "72235", - "libelleAcheminement": "PIACE", - "nomCommune": "PIACE" + "codePostal": "79310", + "codeCommune": "79285", + "libelleAcheminement": "ST PARDOUX SOUTIERS", + "nomCommune": "ST PARDOUX SOUTIERS" }, { - "codePostal": "22300", - "codeCommune": "22224", - "libelleAcheminement": "PLOULEC H", - "nomCommune": "PLOULEC H" + "codePostal": "66500", + "codeCommune": "66051", + "libelleAcheminement": "CLARA VILLERACH", + "nomCommune": "CLARA VILLERACH" }, { - "codePostal": "77710", - "codeCommune": "77473", - "libelleAcheminement": "TREUZY LEVELAY", - "nomCommune": "TREUZY LEVELAY" + "codePostal": "68560", + "codeCommune": "68033", + "libelleAcheminement": "BETTENDORF", + "nomCommune": "BETTENDORF" }, { - "codePostal": "79130", - "codeCommune": "79226", - "libelleAcheminement": "LE RETAIL", - "nomCommune": "LE RETAIL" + "codePostal": "79120", + "codeCommune": "79297", + "libelleAcheminement": "STE SOLINE", + "nomCommune": "STE SOLINE" }, { - "codePostal": "72400", - "codeCommune": "72245", - "libelleAcheminement": "PREVAL", - "nomCommune": "PREVAL" + "codePostal": "69003", + "codeCommune": "69383", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 03" }, { - "codePostal": "22860", - "codeCommune": "22233", - "libelleAcheminement": "PLOURIVO", - "nomCommune": "PLOURIVO" + "codePostal": "79270", + "codeCommune": "79298", + "libelleAcheminement": "ST SYMPHORIEN", + "nomCommune": "ST SYMPHORIEN" }, { - "codePostal": "77470", - "codeCommune": "77475", - "libelleAcheminement": "TRILPORT", - "nomCommune": "TRILPORT" + "codePostal": "66190", + "codeCommune": "66053", + "libelleAcheminement": "COLLIOURE", + "nomCommune": "COLLIOURE" }, { - "codePostal": "79450", - "codeCommune": "79239", - "libelleAcheminement": "ST AUBIN LE CLOUD", - "nomCommune": "ST AUBIN LE CLOUD" + "codePostal": "68320", + "codeCommune": "68038", + "libelleAcheminement": "BISCHWIHR", + "nomCommune": "BISCHWIHR" }, { - "codePostal": "72700", - "codeCommune": "72247", - "libelleAcheminement": "PRUILLE LE CHETIF", - "nomCommune": "PRUILLE LE CHETIF" + "codePostal": "79190", + "codeCommune": "79307", + "libelleAcheminement": "SAUZE VAUSSAIS", + "nomCommune": "SAUZE VAUSSAIS" }, { - "codePostal": "22170", - "codeCommune": "22234", - "libelleAcheminement": "PLOUVARA", - "nomCommune": "PLOUVARA" + "codePostal": "69007", + "codeCommune": "69387", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 07" }, { - "codePostal": "77260", - "codeCommune": "77478", - "libelleAcheminement": "USSY SUR MARNE", - "nomCommune": "USSY SUR MARNE" + "codePostal": "79330", + "codeCommune": "79299", + "libelleAcheminement": "ST VARENT", + "nomCommune": "ST VARENT" }, { - "codePostal": "79150", - "codeCommune": "79242", - "libelleAcheminement": "VOULMENTIN", - "nomCommune": "VOULMENTIN" + "codePostal": "66130", + "codeCommune": "66055", + "libelleAcheminement": "CORBERE", + "nomCommune": "CORBERE" }, { - "codePostal": "72610", - "codeCommune": "72254", - "libelleAcheminement": "ROUESSE FONTAINE", - "nomCommune": "ROUESSE FONTAINE" + "codePostal": "68580", + "codeCommune": "68039", + "libelleAcheminement": "BISEL", + "nomCommune": "BISEL" }, { - "codePostal": "22290", - "codeCommune": "22236", - "libelleAcheminement": "PLUDUAL", - "nomCommune": "PLUDUAL" + "codePostal": "79210", + "codeCommune": "79334", + "libelleAcheminement": "VAL DU MIGNON", + "nomCommune": "VAL DU MIGNON" }, { - "codePostal": "77360", - "codeCommune": "77479", - "libelleAcheminement": "VAIRES SUR MARNE", - "nomCommune": "VAIRES SUR MARNE" + "codePostal": "70500", + "codeCommune": "70002", + "libelleAcheminement": "ABONCOURT GESINCOURT", + "nomCommune": "ABONCOURT GESINCOURT" }, { - "codePostal": "79120", - "codeCommune": "79243", - "libelleAcheminement": "ST COUTANT", - "nomCommune": "ST COUTANT" + "codePostal": "79800", + "codeCommune": "79316", + "libelleAcheminement": "SOUDAN", + "nomCommune": "SOUDAN" }, { - "codePostal": "72110", - "codeCommune": "72277", - "libelleAcheminement": "ST DENIS DES COUDRAIS", - "nomCommune": "ST DENIS DES COUDRAIS" + "codePostal": "66550", + "codeCommune": "66058", + "libelleAcheminement": "CORNEILLA LA RIVIERE", + "nomCommune": "CORNEILLA LA RIVIERE" }, { - "codePostal": "22130", - "codeCommune": "22237", - "libelleAcheminement": "PLUDUNO", - "nomCommune": "PLUDUNO" + "codePostal": "68210", + "codeCommune": "68050", + "libelleAcheminement": "BRECHAUMONT", + "nomCommune": "BRECHAUMONT" }, { - "codePostal": "77580", - "codeCommune": "77484", - "libelleAcheminement": "VAUCOURTOIS", - "nomCommune": "VAUCOURTOIS" + "codePostal": "79200", + "codeCommune": "79347", + "libelleAcheminement": "VIENNAY", + "nomCommune": "VIENNAY" }, { - "codePostal": "79410", - "codeCommune": "79249", - "libelleAcheminement": "ST GELAIS", - "nomCommune": "ST GELAIS" + "codePostal": "70800", + "codeCommune": "70008", + "libelleAcheminement": "AINVELLE", + "nomCommune": "AINVELLE" }, { - "codePostal": "72130", - "codeCommune": "72282", - "libelleAcheminement": "ST GEORGES LE GAULTIER", - "nomCommune": "ST GEORGES LE GAULTIER" + "codePostal": "79800", + "codeCommune": "79319", + "libelleAcheminement": "SOUVIGNE", + "nomCommune": "SOUVIGNE" }, { - "codePostal": "22320", - "codeCommune": "22244", - "libelleAcheminement": "PLUSSULIEN", - "nomCommune": "PLUSSULIEN" + "codePostal": "66760", + "codeCommune": "66062", + "libelleAcheminement": "DORRES", + "nomCommune": "DORRES" }, { - "codePostal": "77390", - "codeCommune": "77493", - "libelleAcheminement": "VERNEUIL L ETANG", - "nomCommune": "VERNEUIL L ETANG" + "codePostal": "68350", + "codeCommune": "68056", + "libelleAcheminement": "BRUNSTATT DIDENHEIM", + "nomCommune": "BRUNSTATT DIDENHEIM" }, { - "codePostal": "79330", - "codeCommune": "79250", - "libelleAcheminement": "STE GEMME", - "nomCommune": "STE GEMME" + "codePostal": "80320", + "codeCommune": "80002", + "libelleAcheminement": "ABLAINCOURT PRESSOIR", + "nomCommune": "ABLAINCOURT PRESSOIR" }, { - "codePostal": "72440", - "codeCommune": "72303", - "libelleAcheminement": "ST MICHEL DE CHAVAIGNES", - "nomCommune": "ST MICHEL DE CHAVAIGNES" + "codePostal": "70210", + "codeCommune": "70010", + "libelleAcheminement": "ALAINCOURT", + "nomCommune": "ALAINCOURT" }, { - "codePostal": "22120", - "codeCommune": "22246", - "libelleAcheminement": "POMMERET", - "nomCommune": "POMMERET" + "codePostal": "79100", + "codeCommune": "79329", + "libelleAcheminement": "THOUARS", + "nomCommune": "THOUARS" }, { - "codePostal": "77370", - "codeCommune": "77496", - "libelleAcheminement": "VIEUX CHAMPAGNE", - "nomCommune": "VIEUX CHAMPAGNE" + "codePostal": "66800", + "codeCommune": "66067", + "libelleAcheminement": "ERR", + "nomCommune": "ERR" }, { - "codePostal": "79500", - "codeCommune": "79251", - "libelleAcheminement": "MARCILLE", - "nomCommune": "MARCILLE" + "codePostal": "68210", + "codeCommune": "68057", + "libelleAcheminement": "BUETHWILLER", + "nomCommune": "BUETHWILLER" }, { - "codePostal": "72610", - "codeCommune": "72308", - "libelleAcheminement": "ST PATERNE LE CHEVAIN", - "nomCommune": "ST PATERNE LE CHEVAIN" + "codePostal": "80690", + "codeCommune": "80009", + "libelleAcheminement": "AILLY LE HAUT CLOCHER", + "nomCommune": "AILLY LE HAUT CLOCHER" }, { - "codePostal": "22100", - "codeCommune": "22259", - "libelleAcheminement": "QUEVERT", - "nomCommune": "QUEVERT" + "codePostal": "70100", + "codeCommune": "70018", + "libelleAcheminement": "ANCIER", + "nomCommune": "ANCIER" }, { - "codePostal": "77250", - "codeCommune": "77501", - "libelleAcheminement": "VILLECERF", - "nomCommune": "VILLECERF" + "codePostal": "79100", + "codeCommune": "79329", + "libelleAcheminement": "THOUARS", + "nomCommune": "THOUARS" }, { - "codePostal": "79600", - "codeCommune": "79252", - "libelleAcheminement": "ST GENEROUX", - "nomCommune": "ST GENEROUX" + "codePostal": "66500", + "codeCommune": "66074", + "libelleAcheminement": "EUS", + "nomCommune": "EUS" }, { - "codePostal": "72600", - "codeCommune": "72316", - "libelleAcheminement": "ST REMY DES MONTS", - "nomCommune": "ST REMY DES MONTS" + "codePostal": "68530", + "codeCommune": "68058", + "libelleAcheminement": "BUHL", + "nomCommune": "BUHL" }, { - "codePostal": "22390", - "codeCommune": "22271", - "libelleAcheminement": "ST ADRIEN", - "nomCommune": "ST ADRIEN" + "codePostal": "80240", + "codeCommune": "80014", + "libelleAcheminement": "AIZECOURT LE BAS", + "nomCommune": "AIZECOURT LE BAS" }, { - "codePostal": "77710", - "codeCommune": "77504", - "libelleAcheminement": "VILLEMARECHAL", - "nomCommune": "VILLEMARECHAL" + "codePostal": "70800", + "codeCommune": "70023", + "libelleAcheminement": "ANJEUX", + "nomCommune": "ANJEUX" }, { - "codePostal": "79210", - "codeCommune": "79257", - "libelleAcheminement": "ST HILAIRE LA PALUD", - "nomCommune": "ST HILAIRE LA PALUD" + "codePostal": "79100", + "codeCommune": "79331", + "libelleAcheminement": "TOURTENAY", + "nomCommune": "TOURTENAY" }, { - "codePostal": "72320", - "codeCommune": "72322", - "libelleAcheminement": "ST ULPHACE", - "nomCommune": "ST ULPHACE" + "codePostal": "66800", + "codeCommune": "66075", + "libelleAcheminement": "EYNE", + "nomCommune": "EYNE" }, { - "codePostal": "22530", - "codeCommune": "22285", - "libelleAcheminement": "ST CONNEC", - "nomCommune": "ST CONNEC" + "codePostal": "68480", + "codeCommune": "68067", + "libelleAcheminement": "COURTAVON", + "nomCommune": "COURTAVON" }, { - "codePostal": "77470", - "codeCommune": "77505", - "libelleAcheminement": "VILLEMAREUIL", - "nomCommune": "VILLEMAREUIL" + "codePostal": "80120", + "codeCommune": "80030", + "libelleAcheminement": "ARRY", + "nomCommune": "ARRY" }, { - "codePostal": "79310", - "codeCommune": "79271", - "libelleAcheminement": "ST MARC LA LANDE", - "nomCommune": "ST MARC LA LANDE" + "codePostal": "70100", + "codeCommune": "70026", + "libelleAcheminement": "ARC LES GRAY", + "nomCommune": "ARC LES GRAY" }, { - "codePostal": "72600", - "codeCommune": "72326", - "libelleAcheminement": "SAOSNES", - "nomCommune": "SAOSNES" + "codePostal": "79420", + "codeCommune": "79341", + "libelleAcheminement": "VAUTEBIS", + "nomCommune": "VAUTEBIS" }, { - "codePostal": "22720", - "codeCommune": "22289", - "libelleAcheminement": "ST FIACRE", - "nomCommune": "ST FIACRE" + "codePostal": "66730", + "codeCommune": "66076", + "libelleAcheminement": "FEILLUNS", + "nomCommune": "FEILLUNS" }, { - "codePostal": "77154", - "codeCommune": "77509", - "libelleAcheminement": "VILLENEUVE LES BORDES", - "nomCommune": "VILLENEUVE LES BORDES" + "codePostal": "68440", + "codeCommune": "68072", + "libelleAcheminement": "DIETWILLER", + "nomCommune": "DIETWILLER" }, { - "codePostal": "79400", - "codeCommune": "79276", - "libelleAcheminement": "ST MARTIN DE ST MAIXENT", - "nomCommune": "ST MARTIN DE ST MAIXENT" + "codePostal": "80560", + "codeCommune": "80038", + "libelleAcheminement": "AUCHONVILLERS", + "nomCommune": "AUCHONVILLERS" }, { - "codePostal": "72460", - "codeCommune": "72329", - "libelleAcheminement": "SAVIGNE L EVEQUE", - "nomCommune": "SAVIGNE L EVEQUE" + "codePostal": "70360", + "codeCommune": "70028", + "libelleAcheminement": "AROZ", + "nomCommune": "AROZ" }, { - "codePostal": "22800", - "codeCommune": "22291", - "libelleAcheminement": "ST GILDAS", - "nomCommune": "ST GILDAS" + "codePostal": "79310", + "codeCommune": "79345", + "libelleAcheminement": "VERRUYES", + "nomCommune": "VERRUYES" }, { - "codePostal": "77510", - "codeCommune": "77512", - "libelleAcheminement": "VILLENEUVE SUR BELLOT", - "nomCommune": "VILLENEUVE SUR BELLOT" + "codePostal": "66360", + "codeCommune": "66080", + "libelleAcheminement": "FONTPEDROUSE", + "nomCommune": "FONTPEDROUSE" }, { - "codePostal": "79310", - "codeCommune": "79285", - "libelleAcheminement": "ST PARDOUX SOUTIERS", - "nomCommune": "ST PARDOUX SOUTIERS" + "codePostal": "68720", + "codeCommune": "68077", + "libelleAcheminement": "EGLINGEN", + "nomCommune": "EGLINGEN" }, { - "codePostal": "72300", - "codeCommune": "72336", - "libelleAcheminement": "SOLESMES", - "nomCommune": "SOLESMES" + "codePostal": "80300", + "codeCommune": "80047", + "libelleAcheminement": "AVELUY", + "nomCommune": "AVELUY" }, { - "codePostal": "22290", - "codeCommune": "22293", - "libelleAcheminement": "ST GILLES LES BOIS", - "nomCommune": "ST GILLES LES BOIS" + "codePostal": "70110", + "codeCommune": "70031", + "libelleAcheminement": "ATHESANS ETROITEFONTAINE", + "nomCommune": "ATHESANS ETROITEFONTAINE" }, { - "codePostal": "77270", - "codeCommune": "77514", - "libelleAcheminement": "VILLEPARISIS", - "nomCommune": "VILLEPARISIS" + "codePostal": "79170", + "codeCommune": "79348", + "libelleAcheminement": "VILLEFOLLET", + "nomCommune": "VILLEFOLLET" }, { - "codePostal": "79330", - "codeCommune": "79299", - "libelleAcheminement": "ST VARENT", - "nomCommune": "ST VARENT" + "codePostal": "66210", + "codeCommune": "66081", + "libelleAcheminement": "FONTRABIOUSE", + "nomCommune": "FONTRABIOUSE" }, { - "codePostal": "72210", - "codeCommune": "72339", - "libelleAcheminement": "SOULIGNE FLACE", - "nomCommune": "SOULIGNE FLACE" + "codePostal": "68190", + "codeCommune": "68082", + "libelleAcheminement": "ENSISHEIM", + "nomCommune": "ENSISHEIM" }, { - "codePostal": "22460", - "codeCommune": "22300", - "libelleAcheminement": "ST HERVE", - "nomCommune": "ST HERVE" + "codePostal": "80140", + "codeCommune": "80048", + "libelleAcheminement": "AVESNES CHAUSSOY", + "nomCommune": "AVESNES CHAUSSOY" }, { - "codePostal": "77580", - "codeCommune": "77521", - "libelleAcheminement": "VILLIERS SUR MORIN", - "nomCommune": "VILLIERS SUR MORIN" + "codePostal": "70100", + "codeCommune": "70032", + "libelleAcheminement": "ATTRICOURT", + "nomCommune": "ATTRICOURT" }, { - "codePostal": "79800", - "codeCommune": "79303", - "libelleAcheminement": "SALLES", - "nomCommune": "SALLES" + "codePostal": "80560", + "codeCommune": "80003", + "libelleAcheminement": "ACHEUX EN AMIENOIS", + "nomCommune": "ACHEUX EN AMIENOIS" }, { - "codePostal": "72700", - "codeCommune": "72344", - "libelleAcheminement": "SPAY", - "nomCommune": "SPAY" + "codePostal": "66220", + "codeCommune": "66083", + "libelleAcheminement": "FOSSE", + "nomCommune": "FOSSE" }, { - "codePostal": "22630", - "codeCommune": "22306", - "libelleAcheminement": "ST JUDOCE", - "nomCommune": "ST JUDOCE" + "codePostal": "68990", + "codeCommune": "68101", + "libelleAcheminement": "GALFINGUE", + "nomCommune": "GALFINGUE" }, { - "codePostal": "77950", - "codeCommune": "77528", - "libelleAcheminement": "VOISENON", - "nomCommune": "VOISENON" + "codePostal": "80200", + "codeCommune": "80054", + "libelleAcheminement": "BARLEUX", + "nomCommune": "BARLEUX" }, { - "codePostal": "79240", - "codeCommune": "79309", - "libelleAcheminement": "SCILLE", - "nomCommune": "SCILLE" + "codePostal": "70190", + "codeCommune": "70036", + "libelleAcheminement": "AULX LES CROMARY", + "nomCommune": "AULX LES CROMARY" }, { - "codePostal": "72110", - "codeCommune": "72352", - "libelleAcheminement": "TERREHAULT", - "nomCommune": "TERREHAULT" + "codePostal": "80210", + "codeCommune": "80004", + "libelleAcheminement": "ACHEUX EN VIMEU", + "nomCommune": "ACHEUX EN VIMEU" }, { - "codePostal": "22320", - "codeCommune": "22313", - "libelleAcheminement": "ST MARTIN DES PRES", - "nomCommune": "ST MARTIN DES PRES" + "codePostal": "66740", + "codeCommune": "66093", + "libelleAcheminement": "LAROQUE DES ALBERES", + "nomCommune": "LAROQUE DES ALBERES" }, { - "codePostal": "77160", - "codeCommune": "77532", - "libelleAcheminement": "VULAINES LES PROVINS", - "nomCommune": "VULAINES LES PROVINS" + "codePostal": "68140", + "codeCommune": "68109", + "libelleAcheminement": "GRIESBACH AU VAL", + "nomCommune": "GRIESBACH AU VAL" }, { - "codePostal": "79800", - "codeCommune": "79319", - "libelleAcheminement": "SOUVIGNE", - "nomCommune": "SOUVIGNE" + "codePostal": "80300", + "codeCommune": "80059", + "libelleAcheminement": "BAZENTIN", + "nomCommune": "BAZENTIN" }, { - "codePostal": "72260", - "codeCommune": "72354", - "libelleAcheminement": "THOIGNE", - "nomCommune": "THOIGNE" + "codePostal": "70150", + "codeCommune": "70045", + "libelleAcheminement": "AVRIGNEY VIREY", + "nomCommune": "AVRIGNEY VIREY" }, { - "codePostal": "22980", - "codeCommune": "22317", - "libelleAcheminement": "ST MELOIR DES BOIS", - "nomCommune": "ST MELOIR DES BOIS" + "codePostal": "80370", + "codeCommune": "80005", + "libelleAcheminement": "AGENVILLE", + "nomCommune": "AGENVILLE" }, { - "codePostal": "78113", - "codeCommune": "78006", - "libelleAcheminement": "ADAINVILLE", - "nomCommune": "ADAINVILLE" + "codePostal": "66210", + "codeCommune": "66098", + "libelleAcheminement": "LA LLAGONNE", + "nomCommune": "LA LLAGONNE" }, { - "codePostal": "79360", - "codeCommune": "79334", - "libelleAcheminement": "VAL DU MIGNON", - "nomCommune": "VAL DU MIGNON" + "codePostal": "68420", + "codeCommune": "68111", + "libelleAcheminement": "GUEBERSCHWIHR", + "nomCommune": "GUEBERSCHWIHR" }, { - "codePostal": "72160", - "codeCommune": "72358", - "libelleAcheminement": "THORIGNE SUR DUE", - "nomCommune": "THORIGNE SUR DUE" + "codePostal": "80430", + "codeCommune": "80061", + "libelleAcheminement": "BEAUCAMPS LE JEUNE", + "nomCommune": "BEAUCAMPS LE JEUNE" }, { - "codePostal": "22160", - "codeCommune": "22320", - "libelleAcheminement": "ST NICODEME", - "nomCommune": "ST NICODEME" + "codePostal": "70190", + "codeCommune": "70050", + "libelleAcheminement": "LA BARRE", + "nomCommune": "LA BARRE" }, { - "codePostal": "78240", - "codeCommune": "78007", - "libelleAcheminement": "AIGREMONT", - "nomCommune": "AIGREMONT" + "codePostal": "80210", + "codeCommune": "80008", + "libelleAcheminement": "AIGNEVILLE", + "nomCommune": "AIGNEVILLE" }, { - "codePostal": "79120", - "codeCommune": "79336", - "libelleAcheminement": "VANCAIS", - "nomCommune": "VANCAIS" + "codePostal": "66300", + "codeCommune": "66101", + "libelleAcheminement": "LLUPIA", + "nomCommune": "LLUPIA" }, { - "codePostal": "72170", - "codeCommune": "72362", - "libelleAcheminement": "LE TRONCHET", - "nomCommune": "LE TRONCHET" + "codePostal": "68970", + "codeCommune": "68113", + "libelleAcheminement": "GUEMAR", + "nomCommune": "GUEMAR" }, { - "codePostal": "22100", - "codeCommune": "22339", - "libelleAcheminement": "TADEN", - "nomCommune": "TADEN" + "codePostal": "80170", + "codeCommune": "80067", + "libelleAcheminement": "BEAUFORT EN SANTERRE", + "nomCommune": "BEAUFORT EN SANTERRE" }, { - "codePostal": "78580", - "codeCommune": "78010", - "libelleAcheminement": "LES ALLUETS LE ROI", - "nomCommune": "LES ALLUETS LE ROI" + "codePostal": "70130", + "codeCommune": "70053", + "libelleAcheminement": "LES BATIES", + "nomCommune": "LES BATIES" }, { - "codePostal": "79340", - "codeCommune": "79339", - "libelleAcheminement": "VASLES", - "nomCommune": "VASLES" + "codePostal": "80250", + "codeCommune": "80010", + "libelleAcheminement": "AILLY SUR NOYE", + "nomCommune": "AILLY SUR NOYE" }, { - "codePostal": "72160", - "codeCommune": "72363", - "libelleAcheminement": "TUFFE VAL DE LA CHERONNE", - "nomCommune": "TUFFE VAL DE LA CHERONNE" + "codePostal": "66320", + "codeCommune": "66103", + "libelleAcheminement": "MARQUIXANES", + "nomCommune": "MARQUIXANES" }, { - "codePostal": "22140", - "codeCommune": "22340", - "libelleAcheminement": "TONQUEDEC", - "nomCommune": "TONQUEDEC" + "codePostal": "68116", + "codeCommune": "68115", + "libelleAcheminement": "GUEWENHEIM", + "nomCommune": "GUEWENHEIM" }, { - "codePostal": "78790", - "codeCommune": "78020", - "libelleAcheminement": "ARNOUVILLE LES MANTES", - "nomCommune": "ARNOUVILLE LES MANTES" + "codePostal": "80870", + "codeCommune": "80076", + "libelleAcheminement": "BEHEN", + "nomCommune": "BEHEN" }, { - "codePostal": "79420", - "codeCommune": "79341", - "libelleAcheminement": "VAUTEBIS", - "nomCommune": "VAUTEBIS" + "codePostal": "70100", + "codeCommune": "70058", + "libelleAcheminement": "BEAUJEU ET QUITTEUR", + "nomCommune": "BEAUJEU ST VALLIER PIERREJUX QUITTEUR" }, { - "codePostal": "72540", - "codeCommune": "72367", - "libelleAcheminement": "VALLON SUR GEE", - "nomCommune": "VALLON SUR GEE" + "codePostal": "80470", + "codeCommune": "80011", + "libelleAcheminement": "AILLY SUR SOMME", + "nomCommune": "AILLY SUR SOMME" }, { - "codePostal": "22980", - "codeCommune": "22342", - "libelleAcheminement": "TREBEDAN", - "nomCommune": "TREBEDAN" + "codePostal": "66500", + "codeCommune": "66104", + "libelleAcheminement": "LOS MASOS", + "nomCommune": "LOS MASOS" }, { - "codePostal": "78410", - "codeCommune": "78029", - "libelleAcheminement": "AUBERGENVILLE", - "nomCommune": "AUBERGENVILLE" + "codePostal": "68440", + "codeCommune": "68118", + "libelleAcheminement": "HABSHEIM", + "nomCommune": "HABSHEIM" }, { - "codePostal": "79240", - "codeCommune": "79342", - "libelleAcheminement": "VERNOUX EN GATINE", - "nomCommune": "VERNOUX EN GATINE" + "codePostal": "80200", + "codeCommune": "80080", + "libelleAcheminement": "BELLOY EN SANTERRE", + "nomCommune": "BELLOY EN SANTERRE" }, { - "codePostal": "72360", - "codeCommune": "72369", - "libelleAcheminement": "VERNEIL LE CHETIF", - "nomCommune": "VERNEIL LE CHETIF" + "codePostal": "70150", + "codeCommune": "70060", + "libelleAcheminement": "BEAUMOTTE LES PIN", + "nomCommune": "BEAUMOTTE LES PIN" }, { - "codePostal": "22510", - "codeCommune": "22346", - "libelleAcheminement": "TREDANIEL", - "nomCommune": "TREDANIEL" + "codePostal": "80270", + "codeCommune": "80013", + "libelleAcheminement": "AIRAINES", + "nomCommune": "AIRAINES" }, { - "codePostal": "78126", - "codeCommune": "78033", - "libelleAcheminement": "AULNAY SUR MAULDRE", - "nomCommune": "AULNAY SUR MAULDRE" + "codePostal": "66210", + "codeCommune": "66105", + "libelleAcheminement": "MATEMALE", + "nomCommune": "MATEMALE" }, { - "codePostal": "79170", - "codeCommune": "79346", - "libelleAcheminement": "LE VERT", - "nomCommune": "LE VERT" + "codePostal": "68720", + "codeCommune": "68127", + "libelleAcheminement": "HEIDWILLER", + "nomCommune": "HEIDWILLER" }, { - "codePostal": "72210", - "codeCommune": "72381", - "libelleAcheminement": "VOIVRES LES LE MANS", - "nomCommune": "VOIVRES LES LE MANS" + "codePostal": "80120", + "codeCommune": "80087", + "libelleAcheminement": "BERNAY EN PONTHIEU", + "nomCommune": "BERNAY EN PONTHIEU" }, { - "codePostal": "22590", - "codeCommune": "22356", - "libelleAcheminement": "TREGOMEUR", - "nomCommune": "TREGOMEUR" + "codePostal": "70290", + "codeCommune": "70061", + "libelleAcheminement": "BELFAHY", + "nomCommune": "BELFAHY" }, { - "codePostal": "78770", - "codeCommune": "78034", - "libelleAcheminement": "AUTEUIL", - "nomCommune": "AUTEUIL" + "codePostal": "80090", + "codeCommune": "80021", + "libelleAcheminement": "AMIENS", + "nomCommune": "AMIENS" }, { - "codePostal": "79170", - "codeCommune": "79348", - "libelleAcheminement": "VILLEFOLLET", - "nomCommune": "VILLEFOLLET" + "codePostal": "66210", + "codeCommune": "66117", + "libelleAcheminement": "MONT LOUIS", + "nomCommune": "MONT LOUIS" }, { - "codePostal": "73260", - "codeCommune": "73003", - "libelleAcheminement": "GRAND AIGUEBLANCHE", - "nomCommune": "GRAND AIGUEBLANCHE" + "codePostal": "68560", + "codeCommune": "68128", + "libelleAcheminement": "HEIMERSDORF", + "nomCommune": "HEIMERSDORF" }, { - "codePostal": "22950", - "codeCommune": "22360", - "libelleAcheminement": "TREGUEUX", - "nomCommune": "TREGUEUX" + "codePostal": "80110", + "codeCommune": "80094", + "libelleAcheminement": "BERTEAUCOURT LES THENNES", + "nomCommune": "BERTEAUCOURT LES THENNES" }, { - "codePostal": "78580", - "codeCommune": "78049", - "libelleAcheminement": "BAZEMONT", - "nomCommune": "BAZEMONT" + "codePostal": "70270", + "codeCommune": "70062", + "libelleAcheminement": "BELMONT", + "nomCommune": "BELMONT" }, { - "codePostal": "79360", - "codeCommune": "79350", - "libelleAcheminement": "VILLIERS EN BOIS", - "nomCommune": "VILLIERS EN BOIS" + "codePostal": "80470", + "codeCommune": "80024", + "libelleAcheminement": "ARGOEUVES", + "nomCommune": "ARGOEUVES" }, { - "codePostal": "73340", - "codeCommune": "73004", - "libelleAcheminement": "AILLON LE JEUNE", - "nomCommune": "AILLON LE JEUNE" + "codePostal": "66720", + "codeCommune": "66118", + "libelleAcheminement": "MONTNER", + "nomCommune": "MONTNER" }, { - "codePostal": "22220", - "codeCommune": "22362", - "libelleAcheminement": "TREGUIER", - "nomCommune": "TREGUIER" + "codePostal": "68990", + "codeCommune": "68129", + "libelleAcheminement": "HEIMSBRUNN", + "nomCommune": "HEIMSBRUNN" }, { - "codePostal": "78660", - "codeCommune": "78071", - "libelleAcheminement": "BOINVILLE LE GAILLARD", - "nomCommune": "BOINVILLE LE GAILLARD" + "codePostal": "80190", + "codeCommune": "80097", + "libelleAcheminement": "BETHENCOURT SUR SOMME", + "nomCommune": "BETHENCOURT SUR SOMME" }, { - "codePostal": "79310", - "codeCommune": "79354", - "libelleAcheminement": "VOUHE", - "nomCommune": "VOUHE" + "codePostal": "70150", + "codeCommune": "70075", + "libelleAcheminement": "BONBOILLON", + "nomCommune": "BONBOILLON" }, { - "codePostal": "73220", - "codeCommune": "73007", - "libelleAcheminement": "AITON", - "nomCommune": "AITON" + "codePostal": "80140", + "codeCommune": "80026", + "libelleAcheminement": "ARGUEL", + "nomCommune": "ARGUEL" }, { - "codePostal": "22250", - "codeCommune": "22369", - "libelleAcheminement": "TREMEUR", - "nomCommune": "TREMEUR" + "codePostal": "66500", + "codeCommune": "66122", + "libelleAcheminement": "NOHEDES", + "nomCommune": "NOHEDES" }, { - "codePostal": "78910", - "codeCommune": "78076", - "libelleAcheminement": "BOISSETS", - "nomCommune": "BOISSETS" + "codePostal": "68130", + "codeCommune": "68131", + "libelleAcheminement": "HEIWILLER", + "nomCommune": "HEIWILLER" }, { - "codePostal": "79230", - "codeCommune": "79355", - "libelleAcheminement": "VOUILLE", - "nomCommune": "VOUILLE" + "codePostal": "80200", + "codeCommune": "80102", + "libelleAcheminement": "BIACHES", + "nomCommune": "BIACHES" }, { - "codePostal": "73300", - "codeCommune": "73012", - "libelleAcheminement": "ALBIEZ LE JEUNE", - "nomCommune": "ALBIEZ LE JEUNE" + "codePostal": "70100", + "codeCommune": "70080", + "libelleAcheminement": "BOUHANS ET FEURG", + "nomCommune": "BOUHANS ET FEURG" }, { - "codePostal": "22440", - "codeCommune": "22372", - "libelleAcheminement": "TREMUSON", - "nomCommune": "TREMUSON" + "codePostal": "80910", + "codeCommune": "80031", + "libelleAcheminement": "ARVILLERS", + "nomCommune": "ARVILLERS" }, { - "codePostal": "78610", - "codeCommune": "78108", - "libelleAcheminement": "LES BREVIAIRES", - "nomCommune": "LES BREVIAIRES" + "codePostal": "66600", + "codeCommune": "66127", + "libelleAcheminement": "OPOUL PERILLOS", + "nomCommune": "OPOUL PERILLOS" }, { - "codePostal": "80370", - "codeCommune": "80005", - "libelleAcheminement": "AGENVILLE", - "nomCommune": "AGENVILLE" + "codePostal": "68580", + "codeCommune": "68137", + "libelleAcheminement": "HINDLINGEN", + "nomCommune": "HINDLINGEN" }, { - "codePostal": "73300", - "codeCommune": "73013", - "libelleAcheminement": "ALBIEZ MONTROND", - "nomCommune": "ALBIEZ MONTROND" + "codePostal": "80150", + "codeCommune": "80109", + "libelleAcheminement": "LE BOISLE", + "nomCommune": "LE BOISLE" }, { - "codePostal": "22340", - "codeCommune": "22373", - "libelleAcheminement": "TREOGAN", - "nomCommune": "TREOGAN" + "codePostal": "70200", + "codeCommune": "70081", + "libelleAcheminement": "BOUHANS LES LURE", + "nomCommune": "BOUHANS LES LURE" }, { - "codePostal": "78830", - "codeCommune": "78120", - "libelleAcheminement": "BULLION", - "nomCommune": "BULLION" + "codePostal": "80140", + "codeCommune": "80040", + "libelleAcheminement": "AUMATRE", + "nomCommune": "AUMATRE" }, { - "codePostal": "80140", - "codeCommune": "80026", - "libelleAcheminement": "ARGUEL", - "nomCommune": "ARGUEL" + "codePostal": "66360", + "codeCommune": "66128", + "libelleAcheminement": "OREILLA", + "nomCommune": "OREILLA" }, { - "codePostal": "73110", - "codeCommune": "73021", - "libelleAcheminement": "ARVILLARD", - "nomCommune": "ARVILLARD" + "codePostal": "68140", + "codeCommune": "68142", + "libelleAcheminement": "HOHROD", + "nomCommune": "HOHROD" }, { - "codePostal": "22660", - "codeCommune": "22379", - "libelleAcheminement": "TREVOU TREGUIGNEC", - "nomCommune": "TREVOU TREGUIGNEC" + "codePostal": "80200", + "codeCommune": "80115", + "libelleAcheminement": "BOUCHAVESNES BERGEN", + "nomCommune": "BOUCHAVESNES BERGEN" }, { - "codePostal": "78117", - "codeCommune": "78143", - "libelleAcheminement": "CHATEAUFORT", - "nomCommune": "CHATEAUFORT" + "codePostal": "70190", + "codeCommune": "70084", + "libelleAcheminement": "BOULOT", + "nomCommune": "BOULOT" }, { - "codePostal": "80110", - "codeCommune": "80035", - "libelleAcheminement": "AUBERCOURT", - "nomCommune": "AUBERCOURT" + "codePostal": "80640", + "codeCommune": "80041", + "libelleAcheminement": "AUMONT", + "nomCommune": "AUMONT" }, { - "codePostal": "73240", - "codeCommune": "73025", - "libelleAcheminement": "AVRESSIEUX", - "nomCommune": "AVRESSIEUX" + "codePostal": "66210", + "codeCommune": "66142", + "libelleAcheminement": "PLANES", + "nomCommune": "PLANES" }, { - "codePostal": "23700", - "codeCommune": "23005", - "libelleAcheminement": "ARFEUILLE CHATAIN", - "nomCommune": "ARFEUILLE CHATAIN" + "codePostal": "68320", + "codeCommune": "68143", + "libelleAcheminement": "PORTE DU RIED", + "nomCommune": "PORTE DU RIED" }, { - "codePostal": "78910", - "codeCommune": "78163", - "libelleAcheminement": "CIVRY LA FORET", - "nomCommune": "CIVRY LA FORET" + "codePostal": "80910", + "codeCommune": "80116", + "libelleAcheminement": "BOUCHOIR", + "nomCommune": "BOUCHOIR" }, { - "codePostal": "80110", - "codeCommune": "80037", - "libelleAcheminement": "AUBVILLERS", - "nomCommune": "AUBVILLERS" + "codePostal": "70190", + "codeCommune": "70088", + "libelleAcheminement": "BOURGUIGNON LES LA CHARITE", + "nomCommune": "BOURGUIGNON LES LA CHARITE" }, { - "codePostal": "73230", - "codeCommune": "73030", - "libelleAcheminement": "BARBY", - "nomCommune": "BARBY" + "codePostal": "80490", + "codeCommune": "80051", + "libelleAcheminement": "BAILLEUL", + "nomCommune": "BAILLEUL" }, { - "codePostal": "23170", - "codeCommune": "23009", - "libelleAcheminement": "AUGE", - "nomCommune": "AUGE" + "codePostal": "66230", + "codeCommune": "66150", + "libelleAcheminement": "PRATS DE MOLLO LA PRESTE", + "nomCommune": "PRATS DE MOLLO LA PRESTE" }, { - "codePostal": "78113", - "codeCommune": "78171", - "libelleAcheminement": "CONDE SUR VESGRE", - "nomCommune": "CONDE SUR VESGRE" + "codePostal": "68490", + "codeCommune": "68144", + "libelleAcheminement": "HOMBOURG", + "nomCommune": "HOMBOURG" }, { - "codePostal": "80560", - "codeCommune": "80043", - "libelleAcheminement": "AUTHIE", - "nomCommune": "AUTHIE" + "codePostal": "80830", + "codeCommune": "80117", + "libelleAcheminement": "BOUCHON", + "nomCommune": "BOUCHON" }, { - "codePostal": "73480", - "codeCommune": "73047", - "libelleAcheminement": "BONNEVAL SUR ARC", - "nomCommune": "BONNEVAL SUR ARC" + "codePostal": "70120", + "codeCommune": "70089", + "libelleAcheminement": "BOURGUIGNON LES MOREY", + "nomCommune": "BOURGUIGNON LES MOREY" }, { - "codePostal": "23210", - "codeCommune": "23010", - "libelleAcheminement": "AUGERES", - "nomCommune": "AUGERES" + "codePostal": "80700", + "codeCommune": "80053", + "libelleAcheminement": "BALATRE", + "nomCommune": "BALATRE" }, { - "codePostal": "78720", - "codeCommune": "78193", - "libelleAcheminement": "DAMPIERRE EN YVELINES", - "nomCommune": "DAMPIERRE EN YVELINES" + "codePostal": "66730", + "codeCommune": "66151", + "libelleAcheminement": "PRATS DE SOURNIA", + "nomCommune": "PRATS DE SOURNIA" }, { - "codePostal": "80270", - "codeCommune": "80046", - "libelleAcheminement": "AVELESGES", - "nomCommune": "AVELESGES" + "codePostal": "68180", + "codeCommune": "68145", + "libelleAcheminement": "HORBOURG WIHR", + "nomCommune": "HORBOURG WIHR" }, { - "codePostal": "73110", - "codeCommune": "73052", - "libelleAcheminement": "BOURGET EN HUILE", - "nomCommune": "BOURGET EN HUILE" + "codePostal": "80310", + "codeCommune": "80123", + "libelleAcheminement": "BOURDON", + "nomCommune": "BOURDON" }, { - "codePostal": "23400", - "codeCommune": "23012", - "libelleAcheminement": "AURIAT", - "nomCommune": "AURIAT" + "codePostal": "70300", + "codeCommune": "70093", + "libelleAcheminement": "BREUCHES", + "nomCommune": "BREUCHES" }, { - "codePostal": "78810", - "codeCommune": "78196", - "libelleAcheminement": "DAVRON", - "nomCommune": "DAVRON" + "codePostal": "80170", + "codeCommune": "80058", + "libelleAcheminement": "BAYONVILLERS", + "nomCommune": "BAYONVILLERS" }, { - "codePostal": "80500", - "codeCommune": "80049", - "libelleAcheminement": "AYENCOURT LE MONCHEL", - "nomCommune": "AYENCOURT" + "codePostal": "66220", + "codeCommune": "66152", + "libelleAcheminement": "PRUGNANES", + "nomCommune": "PRUGNANES" }, { - "codePostal": "73350", - "codeCommune": "73055", - "libelleAcheminement": "BOZEL", - "nomCommune": "BOZEL" + "codePostal": "68130", + "codeCommune": "68148", + "libelleAcheminement": "HUNDSBACH", + "nomCommune": "HUNDSBACH" }, { - "codePostal": "23260", - "codeCommune": "23019", - "libelleAcheminement": "BEISSAT", - "nomCommune": "BEISSAT" + "codePostal": "80300", + "codeCommune": "80129", + "libelleAcheminement": "BOUZINCOURT", + "nomCommune": "BOUZINCOURT" }, { - "codePostal": "78125", - "codeCommune": "78209", - "libelleAcheminement": "EMANCE", - "nomCommune": "EMANCE" + "codePostal": "70280", + "codeCommune": "70094", + "libelleAcheminement": "BREUCHOTTE", + "nomCommune": "BREUCHOTTE" }, { - "codePostal": "80480", - "codeCommune": "80050", - "libelleAcheminement": "BACOUEL SUR SELLE", - "nomCommune": "BACOUEL SUR SELLE" + "codePostal": "80260", + "codeCommune": "80066", + "libelleAcheminement": "BEAUCOURT SUR L HALLUE", + "nomCommune": "BEAUCOURT SUR L HALLUE" }, { - "codePostal": "73190", - "codeCommune": "73064", - "libelleAcheminement": "CHALLES LES EAUX", - "nomCommune": "CHALLES LES EAUX" + "codePostal": "66720", + "codeCommune": "66158", + "libelleAcheminement": "RASIGUERES", + "nomCommune": "RASIGUERES" }, { - "codePostal": "23190", - "codeCommune": "23020", - "libelleAcheminement": "BELLEGARDE EN MARCHE", - "nomCommune": "BELLEGARDE EN MARCHE" + "codePostal": "68330", + "codeCommune": "68149", + "libelleAcheminement": "HUNINGUE", + "nomCommune": "HUNINGUE" }, { - "codePostal": "78680", - "codeCommune": "78217", - "libelleAcheminement": "EPONE", - "nomCommune": "EPONE" + "codePostal": "80440", + "codeCommune": "80131", + "libelleAcheminement": "BOVES", + "nomCommune": "BOVES" }, { - "codePostal": "80300", - "codeCommune": "80052", - "libelleAcheminement": "BAIZIEUX", - "nomCommune": "BAIZIEUX" + "codePostal": "70140", + "codeCommune": "70101", + "libelleAcheminement": "BROYE AUBIGNEY MONTSEUGNY", + "nomCommune": "BROYE AUBIGNEY MONTSEUGNY" }, { - "codePostal": "73390", - "codeCommune": "73069", - "libelleAcheminement": "CHAMOUX SUR GELON", - "nomCommune": "CHAMOUX SUR GELON" + "codePostal": "80630", + "codeCommune": "80071", + "libelleAcheminement": "BEAUVAL", + "nomCommune": "BEAUVAL" }, { - "codePostal": "23210", - "codeCommune": "23021", - "libelleAcheminement": "BENEVENT L ABBAYE", - "nomCommune": "BENEVENT L ABBAYE" + "codePostal": "66210", + "codeCommune": "66159", + "libelleAcheminement": "REAL", + "nomCommune": "REAL" }, { - "codePostal": "78690", - "codeCommune": "78220", - "libelleAcheminement": "LES ESSARTS LE ROI", - "nomCommune": "LES ESSARTS LE ROI" + "codePostal": "68420", + "codeCommune": "68150", + "libelleAcheminement": "HUSSEREN LES CHATEAUX", + "nomCommune": "HUSSEREN LES CHATEAUX" }, { - "codePostal": "80200", - "codeCommune": "80054", - "libelleAcheminement": "BARLEUX", - "nomCommune": "BARLEUX" + "codePostal": "80110", + "codeCommune": "80132", + "libelleAcheminement": "BRACHES", + "nomCommune": "BRACHES" }, { - "codePostal": "73630", - "codeCommune": "73081", - "libelleAcheminement": "LE CHATELARD", - "nomCommune": "LE CHATELARD" + "codePostal": "70140", + "codeCommune": "70101", + "libelleAcheminement": "BROYE AUBIGNEY MONTSEUGNY", + "nomCommune": "BROYE AUBIGNEY MONTSEUGNY" }, { - "codePostal": "23200", - "codeCommune": "23028", - "libelleAcheminement": "BOSROGER", - "nomCommune": "BOSROGER" + "codePostal": "80500", + "codeCommune": "80074", + "libelleAcheminement": "BECQUIGNY", + "nomCommune": "BECQUIGNY" }, { - "codePostal": "78620", - "codeCommune": "78224", - "libelleAcheminement": "L ETANG LA VILLE", - "nomCommune": "L ETANG LA VILLE" + "codePostal": "66800", + "codeCommune": "66167", + "libelleAcheminement": "SAILLAGOUSE", + "nomCommune": "SAILLAGOUSE" }, { - "codePostal": "80560", - "codeCommune": "80057", - "libelleAcheminement": "BAYENCOURT", - "nomCommune": "BAYENCOURT" + "codePostal": "68230", + "codeCommune": "68161", + "libelleAcheminement": "KATZENTHAL", + "nomCommune": "KATZENTHAL" }, { - "codePostal": "73800", - "codeCommune": "73082", - "libelleAcheminement": "LA CHAVANNE", - "nomCommune": "LA CHAVANNE" + "codePostal": "80200", + "codeCommune": "80141", + "libelleAcheminement": "BRIE", + "nomCommune": "BRIE" }, { - "codePostal": "23600", - "codeCommune": "23031", - "libelleAcheminement": "BOUSSAC", - "nomCommune": "BOUSSAC" + "codePostal": "70700", + "codeCommune": "70104", + "libelleAcheminement": "BUCEY LES GY", + "nomCommune": "BUCEY LES GY" }, { - "codePostal": "78410", - "codeCommune": "78230", - "libelleAcheminement": "LA FALAISE", - "nomCommune": "LA FALAISE" + "codePostal": "80260", + "codeCommune": "80077", + "libelleAcheminement": "BEHENCOURT", + "nomCommune": "BEHENCOURT" }, { - "codePostal": "80430", - "codeCommune": "80061", - "libelleAcheminement": "BEAUCAMPS LE JEUNE", - "nomCommune": "BEAUCAMPS LE JEUNE" + "codePostal": "66300", + "codeCommune": "66170", + "libelleAcheminement": "STE COLOMBE DE LA COMMANDERIE", + "nomCommune": "STE COLOMBE DE LA COMMANDERIE" }, { - "codePostal": "73590", - "codeCommune": "73088", - "libelleAcheminement": "COHENNOZ", - "nomCommune": "COHENNOZ" + "codePostal": "68240", + "codeCommune": "68162", + "libelleAcheminement": "KAYSERSBERG VIGNOBLE", + "nomCommune": "KAYSERSBERG VIGNOBLE" }, { - "codePostal": "23700", - "codeCommune": "23034", - "libelleAcheminement": "BROUSSE", - "nomCommune": "BROUSSE" + "codePostal": "80132", + "codeCommune": "80149", + "libelleAcheminement": "BUIGNY ST MACLOU", + "nomCommune": "BUIGNY ST MACLOU" }, { - "codePostal": "78810", - "codeCommune": "78233", - "libelleAcheminement": "FEUCHEROLLES", - "nomCommune": "FEUCHEROLLES" + "codePostal": "70190", + "codeCommune": "70107", + "libelleAcheminement": "BUSSIERES", + "nomCommune": "BUSSIERES" }, { - "codePostal": "80300", - "codeCommune": "80065", - "libelleAcheminement": "BEAUCOURT SUR L ANCRE", - "nomCommune": "BEAUCOURT SUR L ANCRE" + "codePostal": "80140", + "codeCommune": "80084", + "libelleAcheminement": "BERMESNIL", + "nomCommune": "BERMESNIL" }, { - "codePostal": "73800", - "codeCommune": "73096", - "libelleAcheminement": "CRUET", - "nomCommune": "CRUET" + "codePostal": "66170", + "codeCommune": "66173", + "libelleAcheminement": "ST FELIU D AMONT", + "nomCommune": "ST FELIU D AMONT" }, { - "codePostal": "23700", - "codeCommune": "23037", - "libelleAcheminement": "BUSSIERE NOUVELLE", - "nomCommune": "BUSSIERE NOUVELLE" + "codePostal": "68290", + "codeCommune": "68167", + "libelleAcheminement": "KIRCHBERG", + "nomCommune": "KIRCHBERG" }, { - "codePostal": "78440", - "codeCommune": "78246", - "libelleAcheminement": "FONTENAY ST PERE", - "nomCommune": "FONTENAY ST PERE" + "codePostal": "80200", + "codeCommune": "80150", + "libelleAcheminement": "BUIRE COURCELLES", + "nomCommune": "BUIRE COURCELLES" }, { - "codePostal": "80170", - "codeCommune": "80067", - "libelleAcheminement": "BEAUFORT EN SANTERRE", - "nomCommune": "BEAUFORT EN SANTERRE" + "codePostal": "70500", + "codeCommune": "70112", + "libelleAcheminement": "CEMBOING", + "nomCommune": "CEMBOING" }, { - "codePostal": "73630", - "codeCommune": "73101", - "libelleAcheminement": "DOUCY EN BAUGES", - "nomCommune": "DOUCY EN BAUGES" + "codePostal": "80370", + "codeCommune": "80086", + "libelleAcheminement": "BERNAVILLE", + "nomCommune": "BERNAVILLE" }, { - "codePostal": "23350", - "codeCommune": "23041", - "libelleAcheminement": "LA CELLETTE", - "nomCommune": "LA CELLETTE" + "codePostal": "66130", + "codeCommune": "66185", + "libelleAcheminement": "ST MICHEL DE LLOTES", + "nomCommune": "ST MICHEL DE LLOTES" }, { - "codePostal": "78950", - "codeCommune": "78263", - "libelleAcheminement": "GAMBAIS", - "nomCommune": "GAMBAIS" + "codePostal": "68580", + "codeCommune": "68176", + "libelleAcheminement": "LARGITZEN", + "nomCommune": "LARGITZEN" }, { - "codePostal": "80370", - "codeCommune": "80068", - "libelleAcheminement": "BEAUMETZ", - "nomCommune": "BEAUMETZ" + "codePostal": "80170", + "codeCommune": "80162", + "libelleAcheminement": "CAIX", + "nomCommune": "CAIX" }, { - "codePostal": "73630", - "codeCommune": "73106", - "libelleAcheminement": "ECOLE", - "nomCommune": "ECOLE" + "codePostal": "70600", + "codeCommune": "70122", + "libelleAcheminement": "CHAMPLITTE", + "nomCommune": "CHAMPLITTE" }, { - "codePostal": "23430", - "codeCommune": "23056", - "libelleAcheminement": "CHATELUS LE MARCHEIX", - "nomCommune": "CHATELUS LE MARCHEIX" + "codePostal": "80240", + "codeCommune": "80088", + "libelleAcheminement": "BERNES", + "nomCommune": "BERNES" }, { - "codePostal": "78890", - "codeCommune": "78265", - "libelleAcheminement": "GARANCIERES", - "nomCommune": "GARANCIERES" + "codePostal": "66570", + "codeCommune": "66186", + "libelleAcheminement": "ST NAZAIRE", + "nomCommune": "ST NAZAIRE" }, { - "codePostal": "80132", - "codeCommune": "80078", - "libelleAcheminement": "BELLANCOURT", - "nomCommune": "BELLANCOURT" + "codePostal": "68610", + "codeCommune": "68177", + "libelleAcheminement": "LAUTENBACH", + "nomCommune": "LAUTENBACH" }, { - "codePostal": "73220", - "codeCommune": "73109", - "libelleAcheminement": "EPIERRE", - "nomCommune": "EPIERRE" + "codePostal": "80260", + "codeCommune": "80173", + "libelleAcheminement": "CARDONNETTE", + "nomCommune": "CARDONNETTE" }, { - "codePostal": "23800", - "codeCommune": "23065", - "libelleAcheminement": "COLONDANNES", - "nomCommune": "COLONDANNES" + "codePostal": "70000", + "codeCommune": "70134", + "libelleAcheminement": "CHARIEZ", + "nomCommune": "CHARIEZ" }, { - "codePostal": "78930", - "codeCommune": "78281", - "libelleAcheminement": "GOUSSONVILLE", - "nomCommune": "GOUSSONVILLE" + "codePostal": "80200", + "codeCommune": "80090", + "libelleAcheminement": "BERNY EN SANTERRE", + "nomCommune": "BERNY EN SANTERRE" }, { - "codePostal": "80120", - "codeCommune": "80087", - "libelleAcheminement": "BERNAY EN PONTHIEU", - "nomCommune": "BERNAY EN PONTHIEU" + "codePostal": "66360", + "codeCommune": "66191", + "libelleAcheminement": "SANSA", + "nomCommune": "SANSA" }, { - "codePostal": "73300", - "codeCommune": "73116", - "libelleAcheminement": "FONTCOUVERTE LA TOUSSUIRE", - "nomCommune": "FONTCOUVERTE LA TOUSSUIRE" + "codePostal": "68610", + "codeCommune": "68177", + "libelleAcheminement": "LAUTENBACH", + "nomCommune": "LAUTENBACH" }, { - "codePostal": "23140", - "codeCommune": "23072", - "libelleAcheminement": "DOMEYROT", - "nomCommune": "DOMEYROT" + "codePostal": "80560", + "codeCommune": "80201", + "libelleAcheminement": "COIGNEUX", + "nomCommune": "COIGNEUX" }, { - "codePostal": "78440", - "codeCommune": "78296", - "libelleAcheminement": "GUITRANCOURT", - "nomCommune": "GUITRANCOURT" + "codePostal": "70000", + "codeCommune": "70136", + "libelleAcheminement": "CHARMOILLE", + "nomCommune": "CHARMOILLE" }, { - "codePostal": "80240", - "codeCommune": "80088", - "libelleAcheminement": "BERNES", - "nomCommune": "BERNES" + "codePostal": "80190", + "codeCommune": "80105", + "libelleAcheminement": "BILLANCOURT", + "nomCommune": "BILLANCOURT" }, { - "codePostal": "73500", - "codeCommune": "73119", - "libelleAcheminement": "FRENEY", - "nomCommune": "FRENEY" + "codePostal": "66320", + "codeCommune": "66201", + "libelleAcheminement": "TARERACH", + "nomCommune": "TARERACH" }, { - "codePostal": "23800", - "codeCommune": "23075", - "libelleAcheminement": "DUN LE PALESTEL", - "nomCommune": "DUN LE PALESTEL" + "codePostal": "68660", + "codeCommune": "68185", + "libelleAcheminement": "LIEPVRE", + "nomCommune": "LIEPVRE" }, { - "codePostal": "78280", - "codeCommune": "78297", - "libelleAcheminement": "GUYANCOURT", - "nomCommune": "GUYANCOURT" + "codePostal": "80560", + "codeCommune": "80207", + "libelleAcheminement": "CONTAY", + "nomCommune": "CONTAY" }, { - "codePostal": "80620", - "codeCommune": "80089", - "libelleAcheminement": "BERNEUIL", - "nomCommune": "BERNEUIL" + "codePostal": "70230", + "codeCommune": "70137", + "libelleAcheminement": "CHASSEY LES MONTBOZON", + "nomCommune": "CHASSEY LES MONTBOZON" }, { - "codePostal": "73200", - "codeCommune": "73124", - "libelleAcheminement": "GILLY SUR ISERE", - "nomCommune": "GILLY SUR ISERE" + "codePostal": "80600", + "codeCommune": "80108", + "libelleAcheminement": "BOISBERGUES", + "nomCommune": "BOISBERGUES" }, { - "codePostal": "23110", - "codeCommune": "23076", - "libelleAcheminement": "EVAUX LES BAINS", - "nomCommune": "EVAUX LES BAINS" + "codePostal": "66500", + "codeCommune": "66204", + "libelleAcheminement": "TAURINYA", + "nomCommune": "TAURINYA" }, { - "codePostal": "78250", - "codeCommune": "78299", - "libelleAcheminement": "HARDRICOURT", - "nomCommune": "HARDRICOURT" + "codePostal": "68480", + "codeCommune": "68187", + "libelleAcheminement": "LINSDORF", + "nomCommune": "LINSDORF" }, { - "codePostal": "80200", - "codeCommune": "80090", - "libelleAcheminement": "BERNY EN SANTERRE", - "nomCommune": "BERNY EN SANTERRE" + "codePostal": "80440", + "codeCommune": "80213", + "libelleAcheminement": "COTTENCHY", + "nomCommune": "COTTENCHY" }, { - "codePostal": "73300", - "codeCommune": "73135", - "libelleAcheminement": "LA TOUR EN MAURIENNE", - "nomCommune": "LA TOUR EN MAURIENNE" + "codePostal": "70240", + "codeCommune": "70141", + "libelleAcheminement": "CHATENOIS", + "nomCommune": "CHATENOIS" }, { - "codePostal": "23100", - "codeCommune": "23080", - "libelleAcheminement": "FENIERS", - "nomCommune": "FENIERS" + "codePostal": "80540", + "codeCommune": "80119", + "libelleAcheminement": "BOUGAINVILLE", + "nomCommune": "BOUGAINVILLE" }, { - "codePostal": "78125", - "codeCommune": "78307", - "libelleAcheminement": "HERMERAY", - "nomCommune": "HERMERAY" + "codePostal": "66130", + "codeCommune": "66215", + "libelleAcheminement": "TREVILLACH", + "nomCommune": "TREVILLACH" }, { - "codePostal": "80850", - "codeCommune": "80093", - "libelleAcheminement": "BERTEAUCOURT LES DAMES", - "nomCommune": "BERTEAUCOURT LES DAMES" + "codePostal": "68720", + "codeCommune": "68191", + "libelleAcheminement": "LUEMSCHWILLER", + "nomCommune": "LUEMSCHWILLER" }, { - "codePostal": "73300", - "codeCommune": "73135", - "libelleAcheminement": "LA TOUR EN MAURIENNE", - "nomCommune": "LA TOUR EN MAURIENNE" + "codePostal": "80150", + "codeCommune": "80222", + "libelleAcheminement": "CRECY EN PONTHIEU", + "nomCommune": "CRECY EN PONTHIEU" }, { - "codePostal": "23320", - "codeCommune": "23082", - "libelleAcheminement": "FLEURAT", - "nomCommune": "FLEURAT" + "codePostal": "70140", + "codeCommune": "70142", + "libelleAcheminement": "CHAUMERCENNE", + "nomCommune": "CHAUMERCENNE" }, { - "codePostal": "78440", - "codeCommune": "78329", - "libelleAcheminement": "LAINVILLE EN VEXIN", - "nomCommune": "LAINVILLE EN VEXIN" + "codePostal": "80220", + "codeCommune": "80120", + "libelleAcheminement": "BOUILLANCOURT EN SERY", + "nomCommune": "BOUILLANCOURT EN SERY" }, { - "codePostal": "80190", - "codeCommune": "80097", - "libelleAcheminement": "BETHENCOURT SUR SOMME", - "nomCommune": "BETHENCOURT SUR SOMME" + "codePostal": "66220", + "codeCommune": "66216", + "libelleAcheminement": "TRILLA", + "nomCommune": "TRILLA" }, { - "codePostal": "73170", - "codeCommune": "73147", - "libelleAcheminement": "LOISIEUX", - "nomCommune": "LOISIEUX" + "codePostal": "68210", + "codeCommune": "68192", + "libelleAcheminement": "VALDIEU LUTRAN", + "nomCommune": "VALDIEU LUTRAN" }, { - "codePostal": "23450", - "codeCommune": "23087", - "libelleAcheminement": "FRESSELINES", - "nomCommune": "FRESSELINES" + "codePostal": "80150", + "codeCommune": "80222", + "libelleAcheminement": "CRECY EN PONTHIEU", + "nomCommune": "CRECY EN PONTHIEU" }, { - "codePostal": "78270", - "codeCommune": "78337", - "libelleAcheminement": "LIMETZ VILLEZ", - "nomCommune": "LIMETZ VILLEZ" + "codePostal": "70700", + "codeCommune": "70152", + "libelleAcheminement": "CHOYE", + "nomCommune": "CHOYE" }, { - "codePostal": "80190", - "codeCommune": "80103", - "libelleAcheminement": "BIARRE", - "nomCommune": "BIARRE" + "codePostal": "80600", + "codeCommune": "80122", + "libelleAcheminement": "BOUQUEMAISON", + "nomCommune": "BOUQUEMAISON" }, { - "codePostal": "73210", - "codeCommune": "73150", - "libelleAcheminement": "LA PLAGNE TARENTAISE", - "nomCommune": "LA PLAGNE TARENTAISE" + "codePostal": "66760", + "codeCommune": "66218", + "libelleAcheminement": "UR", + "nomCommune": "UR" }, { - "codePostal": "23230", - "codeCommune": "23093", - "libelleAcheminement": "GOUZON", - "nomCommune": "GOUZON" + "codePostal": "68210", + "codeCommune": "68192", + "libelleAcheminement": "VALDIEU LUTRAN", + "nomCommune": "VALDIEU LUTRAN" }, { - "codePostal": "78600", - "codeCommune": "78358", - "libelleAcheminement": "MAISONS LAFFITTE", - "nomCommune": "MAISONS LAFFITTE" + "codePostal": "80700", + "codeCommune": "80223", + "libelleAcheminement": "CREMERY", + "nomCommune": "CREMERY" }, { - "codePostal": "80800", - "codeCommune": "80112", - "libelleAcheminement": "BONNAY", - "nomCommune": "BONNAY" + "codePostal": "70700", + "codeCommune": "70156", + "libelleAcheminement": "CITEY", + "nomCommune": "CITEY" }, { - "codePostal": "73400", - "codeCommune": "73153", - "libelleAcheminement": "MARTHOD", - "nomCommune": "MARTHOD" + "codePostal": "80220", + "codeCommune": "80126", + "libelleAcheminement": "BOUTTENCOURT", + "nomCommune": "BOUTTENCOURT" }, { - "codePostal": "23000", - "codeCommune": "23096", - "libelleAcheminement": "GUERET", - "nomCommune": "GUERET" + "codePostal": "66500", + "codeCommune": "66219", + "libelleAcheminement": "URBANYA", + "nomCommune": "URBANYA" }, { - "codePostal": "78160", - "codeCommune": "78372", - "libelleAcheminement": "MARLY LE ROI", - "nomCommune": "MARLY LE ROI" + "codePostal": "68210", + "codeCommune": "68196", + "libelleAcheminement": "MAGNY", + "nomCommune": "MAGNY" }, { - "codePostal": "80670", - "codeCommune": "80113", - "libelleAcheminement": "BONNEVILLE", - "nomCommune": "BONNEVILLE" + "codePostal": "80290", + "codeCommune": "80227", + "libelleAcheminement": "CROIXRAULT", + "nomCommune": "CROIXRAULT" }, { - "codePostal": "73420", - "codeCommune": "73155", - "libelleAcheminement": "MERY", - "nomCommune": "MERY" + "codePostal": "70000", + "codeCommune": "70158", + "libelleAcheminement": "CLANS", + "nomCommune": "CLANS" }, { - "codePostal": "23220", - "codeCommune": "23109", - "libelleAcheminement": "LINARD MALVAL", - "nomCommune": "LINARD MALVAL" + "codePostal": "80220", + "codeCommune": "80127", + "libelleAcheminement": "BOUVAINCOURT SUR BRESLE", + "nomCommune": "BOUVAINCOURT SUR BRESLE" }, { - "codePostal": "78250", - "codeCommune": "78401", - "libelleAcheminement": "MEULAN EN YVELINES", - "nomCommune": "MEULAN EN YVELINES" + "codePostal": "66820", + "codeCommune": "66222", + "libelleAcheminement": "VERNET LES BAINS", + "nomCommune": "VERNET LES BAINS" }, { - "codePostal": "80150", - "codeCommune": "80118", - "libelleAcheminement": "BOUFFLERS", - "nomCommune": "BOUFFLERS" + "codePostal": "68550", + "codeCommune": "68199", + "libelleAcheminement": "MALMERSPACH", + "nomCommune": "MALMERSPACH" }, { - "codePostal": "73500", - "codeCommune": "73157", - "libelleAcheminement": "MODANE", - "nomCommune": "MODANE" + "codePostal": "80500", + "codeCommune": "80236", + "libelleAcheminement": "DAVENESCOURT", + "nomCommune": "DAVENESCOURT" }, { - "codePostal": "23240", - "codeCommune": "23111", - "libelleAcheminement": "LIZIERES", - "nomCommune": "LIZIERES" + "codePostal": "70000", + "codeCommune": "70163", + "libelleAcheminement": "COLOMBIER", + "nomCommune": "COLOMBIER" }, { - "codePostal": "78970", - "codeCommune": "78402", - "libelleAcheminement": "MEZIERES SUR SEINE", - "nomCommune": "MEZIERES SUR SEINE" + "codePostal": "80200", + "codeCommune": "80128", + "libelleAcheminement": "BOUVINCOURT EN VERMANDOIS", + "nomCommune": "BOUVINCOURT EN VERMANDOIS" }, { - "codePostal": "80300", - "codeCommune": "80129", - "libelleAcheminement": "BOUZINCOURT", - "nomCommune": "BOUZINCOURT" + "codePostal": "66300", + "codeCommune": "66226", + "libelleAcheminement": "VILLEMOLAQUE", + "nomCommune": "VILLEMOLAQUE" }, { - "codePostal": "73350", - "codeCommune": "73161", - "libelleAcheminement": "MONTAGNY", - "nomCommune": "MONTAGNY" + "codePostal": "68630", + "codeCommune": "68209", + "libelleAcheminement": "MITTELWIHR", + "nomCommune": "MITTELWIHR" }, { - "codePostal": "23150", - "codeCommune": "23118", - "libelleAcheminement": "MAISONNISSES", - "nomCommune": "MAISONNISSES" + "codePostal": "80110", + "codeCommune": "80237", + "libelleAcheminement": "DEMUIN", + "nomCommune": "DEMUIN" }, { - "codePostal": "78940", - "codeCommune": "78404", - "libelleAcheminement": "MILLEMONT", - "nomCommune": "MILLEMONT" + "codePostal": "70320", + "codeCommune": "70171", + "libelleAcheminement": "CORBENAY", + "nomCommune": "CORBENAY" }, { "codePostal": "80540", @@ -201756,70 +201768,88 @@ "nomCommune": "BOVELLES" }, { - "codePostal": "73100", - "codeCommune": "73164", - "libelleAcheminement": "MONTCEL", - "nomCommune": "MONTCEL" + "codePostal": "66490", + "codeCommune": "66233", + "libelleAcheminement": "VIVES", + "nomCommune": "VIVES" }, { - "codePostal": "23220", - "codeCommune": "23136", - "libelleAcheminement": "MORTROUX", - "nomCommune": "MORTROUX" + "codePostal": "68580", + "codeCommune": "68216", + "libelleAcheminement": "MOOSLARGUE", + "nomCommune": "MOOSLARGUE" }, { - "codePostal": "78124", - "codeCommune": "78415", - "libelleAcheminement": "MONTAINVILLE", - "nomCommune": "MONTAINVILLE" + "codePostal": "80200", + "codeCommune": "80239", + "libelleAcheminement": "DEVISE", + "nomCommune": "DEVISE" }, { - "codePostal": "80340", - "codeCommune": "80136", - "libelleAcheminement": "BRAY SUR SOMME", - "nomCommune": "BRAY SUR SOMME" + "codePostal": "70310", + "codeCommune": "70176", + "libelleAcheminement": "CORRAVILLERS", + "nomCommune": "CORRAVILLERS" }, { - "codePostal": "73100", - "codeCommune": "73182", - "libelleAcheminement": "MOUXY", - "nomCommune": "MOUXY" + "codePostal": "80430", + "codeCommune": "80143", + "libelleAcheminement": "BROCOURT", + "nomCommune": "BROCOURT" }, { - "codePostal": "23200", - "codeCommune": "23140", - "libelleAcheminement": "MOUTIER ROZEILLE", - "nomCommune": "MOUTIER ROZEILLE" + "codePostal": "67320", + "codeCommune": "67013", + "libelleAcheminement": "ASSWILLER", + "nomCommune": "ASSWILLER" }, { - "codePostal": "78130", - "codeCommune": "78440", - "libelleAcheminement": "LES MUREAUX", - "nomCommune": "LES MUREAUX" + "codePostal": "68780", + "codeCommune": "68219", + "libelleAcheminement": "LE HAUT SOULTZBACH", + "nomCommune": "LE HAUT SOULTZBACH" }, { - "codePostal": "80400", - "codeCommune": "80144", - "libelleAcheminement": "BROUCHY", - "nomCommune": "BROUCHY" + "codePostal": "80110", + "codeCommune": "80242", + "libelleAcheminement": "DOMART SUR LA LUCE", + "nomCommune": "DOMART SUR LA LUCE" }, { - "codePostal": "73260", - "codeCommune": "73187", - "libelleAcheminement": "LA LECHERE", - "nomCommune": "LA LECHERE" + "codePostal": "70150", + "codeCommune": "70181", + "libelleAcheminement": "COURCUIRE", + "nomCommune": "COURCUIRE" }, { - "codePostal": "23600", - "codeCommune": "23146", - "libelleAcheminement": "NOUZERINES", - "nomCommune": "NOUZERINES" + "codePostal": "80690", + "codeCommune": "80145", + "libelleAcheminement": "BRUCAMPS", + "nomCommune": "BRUCAMPS" }, { - "codePostal": "78660", - "codeCommune": "78472", - "libelleAcheminement": "ORSONVILLE", - "nomCommune": "ORSONVILLE" + "codePostal": "67320", + "codeCommune": "67017", + "libelleAcheminement": "BAERENDORF", + "nomCommune": "BAERENDORF" + }, + { + "codePostal": "68780", + "codeCommune": "68219", + "libelleAcheminement": "LE HAUT SOULTZBACH", + "nomCommune": "LE HAUT SOULTZBACH" + }, + { + "codePostal": "80370", + "codeCommune": "80245", + "libelleAcheminement": "DOMLEGER LONGVILLERS", + "nomCommune": "DOMLEGER LONGVILLERS" + }, + { + "codePostal": "70400", + "codeCommune": "70182", + "libelleAcheminement": "COURMONT", + "nomCommune": "COURMONT" }, { "codePostal": "80230", @@ -201828,142 +201858,148 @@ "nomCommune": "BRUTELLES" }, { - "codePostal": "73460", - "codeCommune": "73188", - "libelleAcheminement": "NOTRE DAME DES MILLIERES", - "nomCommune": "NOTRE DAME DES MILLIERES" + "codePostal": "67310", + "codeCommune": "67018", + "libelleAcheminement": "BALBRONN", + "nomCommune": "BALBRONN" }, { - "codePostal": "23350", - "codeCommune": "23148", - "libelleAcheminement": "NOUZIERS", - "nomCommune": "NOUZIERS" + "codePostal": "68100", + "codeCommune": "68224", + "libelleAcheminement": "MULHOUSE", + "nomCommune": "MULHOUSE" }, { - "codePostal": "78230", - "codeCommune": "78481", - "libelleAcheminement": "LE PECQ", - "nomCommune": "LE PECQ" + "codePostal": "80440", + "codeCommune": "80246", + "libelleAcheminement": "DOMMARTIN", + "nomCommune": "DOMMARTIN" }, { - "codePostal": "80200", - "codeCommune": "80150", - "libelleAcheminement": "BUIRE COURCELLES", - "nomCommune": "BUIRE COURCELLES" + "codePostal": "70240", + "codeCommune": "70186", + "libelleAcheminement": "LA CREUSE", + "nomCommune": "LA CREUSE" }, { - "codePostal": "73310", - "codeCommune": "73193", - "libelleAcheminement": "ONTEX", - "nomCommune": "ONTEX" + "codePostal": "80135", + "codeCommune": "80155", + "libelleAcheminement": "BUSSUS BUSSUEL", + "nomCommune": "BUSSUS BUSSUEL" }, { - "codePostal": "23140", - "codeCommune": "23149", - "libelleAcheminement": "PARSAC RIMONDEIX", - "nomCommune": "PARSAC RIMONDEIX" + "codePostal": "67220", + "codeCommune": "67022", + "libelleAcheminement": "BASSEMBERG", + "nomCommune": "BASSEMBERG" }, { - "codePostal": "78125", - "codeCommune": "78497", - "libelleAcheminement": "POIGNY LA FORET", - "nomCommune": "POIGNY LA FORET" + "codePostal": "68200", + "codeCommune": "68224", + "libelleAcheminement": "MULHOUSE", + "nomCommune": "MULHOUSE" }, { - "codePostal": "80300", - "codeCommune": "80151", - "libelleAcheminement": "BUIRE SUR L ANCRE", - "nomCommune": "BUIRE SUR L ANCRE" + "codePostal": "80150", + "codeCommune": "80250", + "libelleAcheminement": "DOMVAST", + "nomCommune": "DOMVAST" }, { - "codePostal": "73140", - "codeCommune": "73194", - "libelleAcheminement": "ORELLE", - "nomCommune": "ORELLE" + "codePostal": "70190", + "codeCommune": "70189", + "libelleAcheminement": "CROMARY", + "nomCommune": "CROMARY" }, { - "codePostal": "23130", - "codeCommune": "23152", - "libelleAcheminement": "PIERREFITTE", - "nomCommune": "PIERREFITTE" + "codePostal": "80330", + "codeCommune": "80160", + "libelleAcheminement": "CAGNY", + "nomCommune": "CAGNY" + }, + { + "codePostal": "67930", + "codeCommune": "67025", + "libelleAcheminement": "BEINHEIM", + "nomCommune": "BEINHEIM" }, { - "codePostal": "78300", - "codeCommune": "78498", - "libelleAcheminement": "POISSY", - "nomCommune": "POISSY" + "codePostal": "68600", + "codeCommune": "68231", + "libelleAcheminement": "NEUF BRISACH", + "nomCommune": "NEUF BRISACH" }, { "codePostal": "80132", - "codeCommune": "80163", - "libelleAcheminement": "CAMBRON", - "nomCommune": "CAMBRON" + "codeCommune": "80260", + "libelleAcheminement": "DRUCAT", + "nomCommune": "DRUCAT" }, { - "codePostal": "73200", - "codeCommune": "73196", - "libelleAcheminement": "PALLUD", - "nomCommune": "PALLUD" + "codePostal": "70150", + "codeCommune": "70193", + "libelleAcheminement": "CULT", + "nomCommune": "CULT" }, { - "codePostal": "23140", - "codeCommune": "23154", - "libelleAcheminement": "PIONNAT", - "nomCommune": "PIONNAT" + "codePostal": "80670", + "codeCommune": "80166", + "libelleAcheminement": "CANAPLES", + "nomCommune": "CANAPLES" }, { - "codePostal": "78120", - "codeCommune": "78517", - "libelleAcheminement": "RAMBOUILLET", - "nomCommune": "RAMBOUILLET" + "codePostal": "67130", + "codeCommune": "67026", + "libelleAcheminement": "BELLEFOSSE", + "nomCommune": "BELLEFOSSE" }, { - "codePostal": "80340", - "codeCommune": "80172", - "libelleAcheminement": "CAPPY", - "nomCommune": "CAPPY" + "codePostal": "68127", + "codeCommune": "68234", + "libelleAcheminement": "NIEDERENTZEN", + "nomCommune": "NIEDERENTZEN" }, { - "codePostal": "73800", - "codeCommune": "73200", - "libelleAcheminement": "PLANAISE", - "nomCommune": "PLANAISE" + "codePostal": "80480", + "codeCommune": "80261", + "libelleAcheminement": "DURY", + "nomCommune": "DURY" }, { - "codePostal": "23250", - "codeCommune": "23157", - "libelleAcheminement": "LA POUGE", - "nomCommune": "LA POUGE" + "codePostal": "70800", + "codeCommune": "70196", + "libelleAcheminement": "DAMPIERRE LES CONFLANS", + "nomCommune": "DAMPIERRE LES CONFLANS" }, { - "codePostal": "78270", - "codeCommune": "78528", - "libelleAcheminement": "ROLLEBOISE", - "nomCommune": "ROLLEBOISE" + "codePostal": "80500", + "codeCommune": "80170", + "libelleAcheminement": "CANTIGNY", + "nomCommune": "CANTIGNY" }, { - "codePostal": "80260", - "codeCommune": "80173", - "libelleAcheminement": "CARDONNETTE", - "nomCommune": "CARDONNETTE" + "codePostal": "67370", + "codeCommune": "67034", + "libelleAcheminement": "BERSTETT", + "nomCommune": "BERSTETT" }, { - "codePostal": "73330", - "codeCommune": "73204", - "libelleAcheminement": "LE PONT DE BEAUVOISIN", - "nomCommune": "LE PONT DE BEAUVOISIN" + "codePostal": "68230", + "codeCommune": "68237", + "libelleAcheminement": "NIEDERMORSCHWIHR", + "nomCommune": "NIEDERMORSCHWIHR" }, { - "codePostal": "23110", - "codeCommune": "23160", - "libelleAcheminement": "RETERRE", - "nomCommune": "RETERRE" + "codePostal": "80140", + "codeCommune": "80269", + "libelleAcheminement": "EPAUMESNIL", + "nomCommune": "EPAUMESNIL" }, { - "codePostal": "78720", - "codeCommune": "78548", - "libelleAcheminement": "ST FORGET", - "nomCommune": "ST FORGET" + "codePostal": "70400", + "codeCommune": "70205", + "libelleAcheminement": "ECHAVANNE", + "nomCommune": "ECHAVANNE" }, { "codePostal": "80700", @@ -201972,8950 +202008,8938 @@ "nomCommune": "CARREPUIS" }, { - "codePostal": "73110", - "codeCommune": "73205", - "libelleAcheminement": "LE PONTET", - "nomCommune": "LE PONTET" - }, - { - "codePostal": "23600", - "codeCommune": "23174", - "libelleAcheminement": "SOUMANS", - "nomCommune": "SOUMANS" - }, - { - "codePostal": "78640", - "codeCommune": "78550", - "libelleAcheminement": "ST GERMAIN DE LA GRANGE", - "nomCommune": "ST GERMAIN DE LA GRANGE" - }, - { - "codePostal": "80410", - "codeCommune": "80182", - "libelleAcheminement": "CAYEUX SUR MER", - "nomCommune": "CAYEUX SUR MER" + "codePostal": "67370", + "codeCommune": "67034", + "libelleAcheminement": "BERSTETT", + "nomCommune": "BERSTETT" }, { - "codePostal": "73310", - "codeCommune": "73218", - "libelleAcheminement": "RUFFIEUX", - "nomCommune": "RUFFIEUX" + "codePostal": "68960", + "codeCommune": "68240", + "libelleAcheminement": "ILLTAL", + "nomCommune": "ILLTAL" }, { - "codePostal": "23300", - "codeCommune": "23177", - "libelleAcheminement": "ST AGNANT DE VERSILLAT", - "nomCommune": "ST AGNANT DE VERSILLAT" + "codePostal": "80740", + "codeCommune": "80271", + "libelleAcheminement": "EPEHY", + "nomCommune": "EPEHY" }, { - "codePostal": "78730", - "codeCommune": "78569", - "libelleAcheminement": "STE MESME", - "nomCommune": "STE MESME" + "codePostal": "70400", + "codeCommune": "70206", + "libelleAcheminement": "ECHENANS SOUS MONT VAUDOIS", + "nomCommune": "ECHENANS SOUS MONT VAUDOIS" }, { - "codePostal": "80700", - "codeCommune": "80185", - "libelleAcheminement": "CHAMPIEN", - "nomCommune": "CHAMPIEN" + "codePostal": "80310", + "codeCommune": "80180", + "libelleAcheminement": "CAVILLON", + "nomCommune": "CAVILLON" }, { - "codePostal": "73610", - "codeCommune": "73219", - "libelleAcheminement": "ST ALBAN DE MONTBEL", - "nomCommune": "ST ALBAN DE MONTBEL" + "codePostal": "67170", + "codeCommune": "67039", + "libelleAcheminement": "BILWISHEIM", + "nomCommune": "BILWISHEIM" }, { - "codePostal": "23260", - "codeCommune": "23184", - "libelleAcheminement": "ST BARD", - "nomCommune": "ST BARD" + "codePostal": "68127", + "codeCommune": "68241", + "libelleAcheminement": "OBERENTZEN", + "nomCommune": "OBERENTZEN" }, { - "codePostal": "78720", - "codeCommune": "78590", - "libelleAcheminement": "SENLISSE", - "nomCommune": "SENLISSE" + "codePostal": "80360", + "codeCommune": "80275", + "libelleAcheminement": "EQUANCOURT", + "nomCommune": "EQUANCOURT" }, { - "codePostal": "80340", - "codeCommune": "80195", - "libelleAcheminement": "CHUIGNOLLES", - "nomCommune": "CHUIGNOLLES" + "codePostal": "70000", + "codeCommune": "70207", + "libelleAcheminement": "ECHENOZ LA MELINE", + "nomCommune": "ECHENOZ LA MELINE" }, { - "codePostal": "73220", - "codeCommune": "73220", - "libelleAcheminement": "ST ALBAN D HURTIERES", - "nomCommune": "ST ALBAN D HURTIERES" + "codePostal": "80140", + "codeCommune": "80183", + "libelleAcheminement": "CERISY BULEUX", + "nomCommune": "CERISY BULEUX" }, { - "codePostal": "23400", - "codeCommune": "23189", - "libelleAcheminement": "ST DIZIER MASBARAUD", - "nomCommune": "ST DIZIER MASBARAUD" + "codePostal": "67870", + "codeCommune": "67045", + "libelleAcheminement": "BISCHOFFSHEIM", + "nomCommune": "BISCHOFFSHEIM" }, { - "codePostal": "78113", - "codeCommune": "78606", - "libelleAcheminement": "LE TARTRE GAUDRAN", - "nomCommune": "LE TARTRE GAUDRAN" + "codePostal": "68480", + "codeCommune": "68259", + "libelleAcheminement": "RAEDERSDORF", + "nomCommune": "RAEDERSDORF" }, { - "codePostal": "80540", - "codeCommune": "80198", - "libelleAcheminement": "CLAIRY SAULCHOIX", - "nomCommune": "CLAIRY SAULCHOIX" + "codePostal": "80690", + "codeCommune": "80281", + "libelleAcheminement": "ERGNIES", + "nomCommune": "ERGNIES" }, { - "codePostal": "73160", - "codeCommune": "73228", - "libelleAcheminement": "ST CASSIN", - "nomCommune": "ST CASSIN" + "codePostal": "70300", + "codeCommune": "70213", + "libelleAcheminement": "EHUNS", + "nomCommune": "EHUNS" }, { - "codePostal": "23500", - "codeCommune": "23198", - "libelleAcheminement": "ST GEORGES NIGREMONT", - "nomCommune": "ST GEORGES NIGREMONT" + "codePostal": "80340", + "codeCommune": "80194", + "libelleAcheminement": "CHUIGNES", + "nomCommune": "CHUIGNES" }, { - "codePostal": "78250", - "codeCommune": "78609", - "libelleAcheminement": "TESSANCOURT SUR AUBETTE", - "nomCommune": "TESSANCOURT SUR AUBETTE" + "codePostal": "67350", + "codeCommune": "67048", + "libelleAcheminement": "BITSCHHOFFEN", + "nomCommune": "BITSCHHOFFEN" }, { - "codePostal": "80510", - "codeCommune": "80200", - "libelleAcheminement": "COCQUEREL", - "nomCommune": "COCQUEREL" + "codePostal": "68800", + "codeCommune": "68261", + "libelleAcheminement": "RAMMERSMATT", + "nomCommune": "RAMMERSMATT" }, { - "codePostal": "73640", - "codeCommune": "73232", - "libelleAcheminement": "STE FOY TARENTAISE", - "nomCommune": "STE FOY TARENTAISE" + "codePostal": "80250", + "codeCommune": "80291", + "libelleAcheminement": "ESTREES SUR NOYE", + "nomCommune": "ESTREES SUR NOYE" }, { - "codePostal": "23430", - "codeCommune": "23200", - "libelleAcheminement": "ST GOUSSAUD", - "nomCommune": "ST GOUSSAUD" + "codePostal": "70200", + "codeCommune": "70229", + "libelleAcheminement": "FAYMONT", + "nomCommune": "FAYMONT" }, { - "codePostal": "78117", - "codeCommune": "78620", - "libelleAcheminement": "TOUSSUS LE NOBLE", - "nomCommune": "TOUSSUS LE NOBLE" + "codePostal": "80340", + "codeCommune": "80195", + "libelleAcheminement": "CHUIGNOLLES", + "nomCommune": "CHUIGNOLLES" }, { - "codePostal": "80560", - "codeCommune": "80201", - "libelleAcheminement": "COIGNEUX", - "nomCommune": "COIGNEUX" + "codePostal": "67390", + "codeCommune": "67053", + "libelleAcheminement": "BOESENBIESEN", + "nomCommune": "BOESENBIESEN" }, { - "codePostal": "73340", - "codeCommune": "73234", - "libelleAcheminement": "ST FRANCOIS DE SALES", - "nomCommune": "ST FRANCOIS DE SALES" + "codePostal": "68730", + "codeCommune": "68263", + "libelleAcheminement": "RANSPACH LE BAS", + "nomCommune": "RANSPACH LE BAS" }, { - "codePostal": "23130", - "codeCommune": "23204", - "libelleAcheminement": "ST JULIEN LE CHATEL", - "nomCommune": "ST JULIEN LE CHATEL" + "codePostal": "80200", + "codeCommune": "80294", + "libelleAcheminement": "ETERPIGNY", + "nomCommune": "ETERPIGNY" }, { - "codePostal": "78140", - "codeCommune": "78640", - "libelleAcheminement": "VELIZY VILLACOUBLAY", - "nomCommune": "VELIZY VILLACOUBLAY" + "codePostal": "70130", + "codeCommune": "70231", + "libelleAcheminement": "FERRIERES LES RAY", + "nomCommune": "FERRIERES LES RAY" }, { - "codePostal": "80360", - "codeCommune": "80204", - "libelleAcheminement": "COMBLES", - "nomCommune": "COMBLES" + "codePostal": "80540", + "codeCommune": "80198", + "libelleAcheminement": "CLAIRY SAULCHOIX", + "nomCommune": "CLAIRY SAULCHOIX" }, { - "codePostal": "73240", - "codeCommune": "73236", - "libelleAcheminement": "ST GENIX LES VILLAGES", - "nomCommune": "ST GENIX LES VILLAGES" + "codePostal": "67390", + "codeCommune": "67056", + "libelleAcheminement": "BOOTZHEIM", + "nomCommune": "BOOTZHEIM" }, { - "codePostal": "23150", - "codeCommune": "23214", - "libelleAcheminement": "ST MARTIAL LE MONT", - "nomCommune": "ST MARTIAL LE MONT" + "codePostal": "68500", + "codeCommune": "68274", + "libelleAcheminement": "RIMBACH PRES GUEBWILLER", + "nomCommune": "RIMBACH PRES GUEBWILLER" }, { - "codePostal": "78490", - "codeCommune": "78653", - "libelleAcheminement": "VICQ", - "nomCommune": "VICQ" + "codePostal": "80190", + "codeCommune": "80300", + "libelleAcheminement": "FALVY", + "nomCommune": "FALVY" }, { - "codePostal": "80560", - "codeCommune": "80207", - "libelleAcheminement": "CONTAY", - "nomCommune": "CONTAY" + "codePostal": "70230", + "codeCommune": "70234", + "libelleAcheminement": "FILAIN", + "nomCommune": "FILAIN" }, { - "codePostal": "73240", - "codeCommune": "73236", - "libelleAcheminement": "ST GENIX LES VILLAGES", - "nomCommune": "ST GENIX LES VILLAGES" + "codePostal": "80510", + "codeCommune": "80200", + "libelleAcheminement": "COCQUEREL", + "nomCommune": "COCQUEREL" }, { - "codePostal": "23100", - "codeCommune": "23215", - "libelleAcheminement": "ST MARTIAL LE VIEUX", - "nomCommune": "ST MARTIAL LE VIEUX" + "codePostal": "67420", + "codeCommune": "67059", + "libelleAcheminement": "BOURG BRUCHE", + "nomCommune": "BOURG BRUCHE" }, { - "codePostal": "78640", - "codeCommune": "78683", - "libelleAcheminement": "VILLIERS ST FREDERIC", - "nomCommune": "VILLIERS ST FREDERIC" + "codePostal": "68290", + "codeCommune": "68275", + "libelleAcheminement": "RIMBACH PRES MASEVAUX", + "nomCommune": "RIMBACH PRES MASEVAUX" }, { - "codePostal": "80560", - "codeCommune": "80217", - "libelleAcheminement": "COURCELLES AU BOIS", - "nomCommune": "COURCELLES AU BOIS" + "codePostal": "80120", + "codeCommune": "80303", + "libelleAcheminement": "FAVIERES", + "nomCommune": "FAVIERES" }, { - "codePostal": "73800", - "codeCommune": "73240", - "libelleAcheminement": "STE HELENE DU LAC", - "nomCommune": "STE HELENE DU LAC" + "codePostal": "70120", + "codeCommune": "70237", + "libelleAcheminement": "FLEUREY LES LAVONCOURT", + "nomCommune": "FLEUREY LES LAVONCOURT" }, { - "codePostal": "23430", - "codeCommune": "23217", - "libelleAcheminement": "ST MARTIN STE CATHERINE", - "nomCommune": "ST MARTIN STE CATHERINE" + "codePostal": "80260", + "codeCommune": "80202", + "libelleAcheminement": "COISY", + "nomCommune": "COISY" }, { - "codePostal": "79600", - "codeCommune": "79005", - "libelleAcheminement": "AIRVAULT", - "nomCommune": "AIRVAULT" + "codePostal": "67330", + "codeCommune": "67061", + "libelleAcheminement": "BOUXWILLER", + "nomCommune": "BOUXWILLER" }, { - "codePostal": "80150", - "codeCommune": "80222", - "libelleAcheminement": "CRECY EN PONTHIEU", - "nomCommune": "CRECY EN PONTHIEU" + "codePostal": "68500", + "codeCommune": "68276", + "libelleAcheminement": "RIMBACHZELL", + "nomCommune": "RIMBACHZELL" }, { - "codePostal": "73460", - "codeCommune": "73241", - "libelleAcheminement": "STE HELENE SUR ISERE", - "nomCommune": "STE HELENE SUR ISERE" + "codePostal": "80260", + "codeCommune": "80316", + "libelleAcheminement": "FLESSELLES", + "nomCommune": "FLESSELLES" }, { - "codePostal": "23200", - "codeCommune": "23220", - "libelleAcheminement": "ST MEDARD LA ROCHETTE", - "nomCommune": "ST MEDARD LA ROCHETTE" + "codePostal": "70800", + "codeCommune": "70240", + "libelleAcheminement": "FONTAINE LES LUXEUIL", + "nomCommune": "FONTAINE LES LUXEUIL" }, { - "codePostal": "79160", - "codeCommune": "79012", - "libelleAcheminement": "ARDIN", - "nomCommune": "ARDIN" + "codePostal": "80560", + "codeCommune": "80203", + "libelleAcheminement": "COLINCAMPS", + "nomCommune": "COLINCAMPS" }, { - "codePostal": "80400", - "codeCommune": "80226", - "libelleAcheminement": "CROIX MOLIGNEAUX", - "nomCommune": "CROIX MOLIGNEAUX" + "codePostal": "67220", + "codeCommune": "67063", + "libelleAcheminement": "BREITENBACH", + "nomCommune": "BREITENBACH" }, { - "codePostal": "73300", - "codeCommune": "73248", - "libelleAcheminement": "ST JEAN DE MAURIENNE", - "nomCommune": "ST JEAN DE MAURIENNE" + "codePostal": "68170", + "codeCommune": "68278", + "libelleAcheminement": "RIXHEIM", + "nomCommune": "RIXHEIM" }, { - "codePostal": "23260", - "codeCommune": "23226", - "libelleAcheminement": "ST PARDOUX D ARNET", - "nomCommune": "ST PARDOUX D ARNET" + "codePostal": "80160", + "codeCommune": "80317", + "libelleAcheminement": "FLEURY", + "nomCommune": "FLEURY" }, { - "codePostal": "79150", - "codeCommune": "79013", - "libelleAcheminement": "ARGENTONNAY", - "nomCommune": "ARGENTONNAY" + "codePostal": "70600", + "codeCommune": "70247", + "libelleAcheminement": "FOUVENT ST ANDOCHE", + "nomCommune": "FOUVENT ST ANDOCHE" }, { - "codePostal": "80190", - "codeCommune": "80230", - "libelleAcheminement": "CURCHY", - "nomCommune": "CURCHY" + "codePostal": "80160", + "codeCommune": "80211", + "libelleAcheminement": "CONTY", + "nomCommune": "CONTY" }, { - "codePostal": "73130", - "codeCommune": "73255", - "libelleAcheminement": "STE MARIE DE CUINES", - "nomCommune": "STE MARIE DE CUINES" + "codePostal": "67130", + "codeCommune": "67066", + "libelleAcheminement": "LA BROQUE", + "nomCommune": "LA BROQUE" }, { - "codePostal": "23500", - "codeCommune": "23238", - "libelleAcheminement": "ST QUENTIN LA CHABANNE", - "nomCommune": "ST QUENTIN LA CHABANNE" + "codePostal": "68210", + "codeCommune": "68282", + "libelleAcheminement": "ROMAGNY", + "nomCommune": "ROMAGNY" }, { - "codePostal": "79150", - "codeCommune": "79013", - "libelleAcheminement": "ARGENTONNAY", - "nomCommune": "ARGENTONNAY" + "codePostal": "80250", + "codeCommune": "80321", + "libelleAcheminement": "FOLLEVILLE", + "nomCommune": "FOLLEVILLE" }, { - "codePostal": "80500", - "codeCommune": "80236", - "libelleAcheminement": "DAVENESCOURT", - "nomCommune": "DAVENESCOURT" + "codePostal": "70240", + "codeCommune": "70263", + "libelleAcheminement": "GENEVREY", + "nomCommune": "GENEVREY" }, { - "codePostal": "73440", - "codeCommune": "73257", - "libelleAcheminement": "LES BELLEVILLE", - "nomCommune": "LES BELLEVILLE" + "codePostal": "80300", + "codeCommune": "80216", + "libelleAcheminement": "COURCELETTE", + "nomCommune": "COURCELETTE" }, { - "codePostal": "23600", - "codeCommune": "23240", - "libelleAcheminement": "ST SILVAIN BAS LE ROC", - "nomCommune": "ST SILVAIN BAS LE ROC" + "codePostal": "67570", + "codeCommune": "67066", + "libelleAcheminement": "LA BROQUE", + "nomCommune": "LA BROQUE" }, { - "codePostal": "79300", - "codeCommune": "79013", - "libelleAcheminement": "ARGENTONNAY", - "nomCommune": "ARGENTONNAY" + "codePostal": "68580", + "codeCommune": "68305", + "libelleAcheminement": "SEPPOIS LE BAS", + "nomCommune": "SEPPOIS LE BAS" }, { - "codePostal": "80300", - "codeCommune": "80238", - "libelleAcheminement": "DERNANCOURT", - "nomCommune": "DERNANCOURT" + "codePostal": "80700", + "codeCommune": "80322", + "libelleAcheminement": "FONCHES FONCHETTE", + "nomCommune": "FONCHES FONCHETTE" }, { - "codePostal": "73140", - "codeCommune": "73261", - "libelleAcheminement": "ST MICHEL DE MAURIENNE", - "nomCommune": "ST MICHEL DE MAURIENNE" + "codePostal": "70110", + "codeCommune": "70273", + "libelleAcheminement": "GRAMMONT", + "nomCommune": "GRAMMONT" }, { - "codePostal": "23320", - "codeCommune": "23242", - "libelleAcheminement": "ST SILVAIN MONTAIGUT", - "nomCommune": "ST SILVAIN MONTAIGUT" + "codePostal": "80560", + "codeCommune": "80217", + "libelleAcheminement": "COURCELLES AU BOIS", + "nomCommune": "COURCELLES AU BOIS" }, { - "codePostal": "79290", - "codeCommune": "79014", - "libelleAcheminement": "LORETZ D ARGENTON", - "nomCommune": "LORETZ D ARGENTON" + "codePostal": "67350", + "codeCommune": "67068", + "libelleAcheminement": "BUSWILLER", + "nomCommune": "BUSWILLER" }, { - "codePostal": "80120", - "codeCommune": "80244", - "libelleAcheminement": "DOMINOIS", - "nomCommune": "DOMINOIS" + "codePostal": "68510", + "codeCommune": "68309", + "libelleAcheminement": "SIERENTZ", + "nomCommune": "SIERENTZ" }, { - "codePostal": "73300", - "codeCommune": "73267", - "libelleAcheminement": "ST PANCRACE", - "nomCommune": "ST PANCRACE" + "codePostal": "80500", + "codeCommune": "80326", + "libelleAcheminement": "FONTAINE SOUS MONTDIDIER", + "nomCommune": "FONTAINE SOUS MONTDIDIER" }, { - "codePostal": "23480", - "codeCommune": "23246", - "libelleAcheminement": "ST SULPICE LES CHAMPS", - "nomCommune": "ST SULPICE LES CHAMPS" + "codePostal": "70120", + "codeCommune": "70274", + "libelleAcheminement": "GRANDECOURT", + "nomCommune": "GRANDECOURT" }, { - "codePostal": "79170", - "codeCommune": "79015", - "libelleAcheminement": "ASNIERES EN POITOU", - "nomCommune": "ASNIERES EN POITOU" + "codePostal": "80190", + "codeCommune": "80224", + "libelleAcheminement": "CRESSY OMENCOURT", + "nomCommune": "CRESSY OMENCOURT" }, { - "codePostal": "80470", - "codeCommune": "80256", - "libelleAcheminement": "DREUIL LES AMIENS", - "nomCommune": "DREUIL LES AMIENS" + "codePostal": "67160", + "codeCommune": "67074", + "libelleAcheminement": "CLEEBOURG", + "nomCommune": "CLEEBOURG" }, { - "codePostal": "73170", - "codeCommune": "73271", - "libelleAcheminement": "ST PIERRE D ALVEY", - "nomCommune": "ST PIERRE D ALVEY" + "codePostal": "68380", + "codeCommune": "68311", + "libelleAcheminement": "SONDERNACH", + "nomCommune": "SONDERNACH" }, { - "codePostal": "23170", - "codeCommune": "23251", - "libelleAcheminement": "TARDES", - "nomCommune": "TARDES" + "codePostal": "80150", + "codeCommune": "80331", + "libelleAcheminement": "FOREST L ABBAYE", + "nomCommune": "FOREST L ABBAYE" }, { - "codePostal": "79390", - "codeCommune": "79019", - "libelleAcheminement": "AUBIGNY", - "nomCommune": "AUBIGNY" + "codePostal": "70700", + "codeCommune": "70282", + "libelleAcheminement": "GY", + "nomCommune": "GY" }, { - "codePostal": "80580", - "codeCommune": "80262", - "libelleAcheminement": "EAUCOURT SUR SOMME", - "nomCommune": "EAUCOURT SUR SOMME" + "codePostal": "80550", + "codeCommune": "80228", + "libelleAcheminement": "LE CROTOY", + "nomCommune": "LE CROTOY" }, { - "codePostal": "73310", - "codeCommune": "73273", - "libelleAcheminement": "ST PIERRE DE CURTILLE", - "nomCommune": "ST PIERRE DE CURTILLE" + "codePostal": "67510", + "codeCommune": "67075", + "libelleAcheminement": "CLIMBACH", + "nomCommune": "CLIMBACH" }, { - "codePostal": "23170", - "codeCommune": "23259", - "libelleAcheminement": "VERNEIGES", - "nomCommune": "VERNEIGES" + "codePostal": "68780", + "codeCommune": "68313", + "libelleAcheminement": "SOPPE LE BAS", + "nomCommune": "SOPPE LE BAS" }, { - "codePostal": "79600", - "codeCommune": "79022", - "libelleAcheminement": "AVAILLES THOUARSAIS", - "nomCommune": "AVAILLES THOUARSAIS" + "codePostal": "80120", + "codeCommune": "80333", + "libelleAcheminement": "FORT MAHON PLAGE", + "nomCommune": "FORT MAHON PLAGE" }, { - "codePostal": "80300", - "codeCommune": "80266", - "libelleAcheminement": "ENGLEBELMER", - "nomCommune": "ENGLEBELMER" + "codePostal": "70800", + "codeCommune": "70284", + "libelleAcheminement": "HAUTEVELLE", + "nomCommune": "HAUTEVELLE" }, { - "codePostal": "73200", - "codeCommune": "73292", - "libelleAcheminement": "THENESOL", - "nomCommune": "THENESOL" + "codePostal": "80310", + "codeCommune": "80229", + "libelleAcheminement": "CROUY ST PIERRE", + "nomCommune": "CROUY ST PIERRE" }, { - "codePostal": "24460", - "codeCommune": "24002", - "libelleAcheminement": "AGONAC", - "nomCommune": "AGONAC" + "codePostal": "67110", + "codeCommune": "67083", + "libelleAcheminement": "DAMBACH", + "nomCommune": "DAMBACH" }, { - "codePostal": "79300", - "codeCommune": "79038", - "libelleAcheminement": "BOISME", - "nomCommune": "BOISME" + "codePostal": "68230", + "codeCommune": "68316", + "libelleAcheminement": "SOULTZBACH LES BAINS", + "nomCommune": "SOULTZBACH LES BAINS" }, { - "codePostal": "80580", - "codeCommune": "80268", - "libelleAcheminement": "EPAGNE EPAGNETTE", - "nomCommune": "EPAGNE EPAGNETTE" + "codePostal": "80690", + "codeCommune": "80344", + "libelleAcheminement": "FRANCIERES", + "nomCommune": "FRANCIERES" }, { - "codePostal": "73230", - "codeCommune": "73293", - "libelleAcheminement": "THOIRY", - "nomCommune": "THOIRY" + "codePostal": "70400", + "codeCommune": "70285", + "libelleAcheminement": "HERICOURT", + "nomCommune": "HERICOURT" }, { - "codePostal": "24270", - "codeCommune": "24008", - "libelleAcheminement": "ANGOISSE", - "nomCommune": "ANGOISSE" + "codePostal": "80190", + "codeCommune": "80230", + "libelleAcheminement": "CURCHY", + "nomCommune": "CURCHY" }, { - "codePostal": "79260", - "codeCommune": "79048", - "libelleAcheminement": "LA CRECHE", - "nomCommune": "LA CRECHE" + "codePostal": "67110", + "codeCommune": "67083", + "libelleAcheminement": "DAMBACH", + "nomCommune": "DAMBACH" }, { - "codePostal": "80690", - "codeCommune": "80281", - "libelleAcheminement": "ERGNIES", - "nomCommune": "ERGNIES" + "codePostal": "68140", + "codeCommune": "68317", + "libelleAcheminement": "SOULTZEREN", + "nomCommune": "SOULTZEREN" }, { - "codePostal": "73790", - "codeCommune": "73298", - "libelleAcheminement": "TOURS EN SAVOIE", - "nomCommune": "TOURS EN SAVOIE" + "codePostal": "80160", + "codeCommune": "80352", + "libelleAcheminement": "FREMONTIERS", + "nomCommune": "FREMONTIERS" }, { - "codePostal": "24420", - "codeCommune": "24011", - "libelleAcheminement": "ANTONNE ET TRIGONANT", - "nomCommune": "ANTONNE ET TRIGONANT" + "codePostal": "70400", + "codeCommune": "70285", + "libelleAcheminement": "HERICOURT", + "nomCommune": "HERICOURT" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "80360", + "codeCommune": "80231", + "libelleAcheminement": "CURLU", + "nomCommune": "CURLU" }, { - "codePostal": "80250", - "codeCommune": "80283", - "libelleAcheminement": "ESCLAINVILLERS", - "nomCommune": "ESCLAINVILLERS" + "codePostal": "67350", + "codeCommune": "67087", + "libelleAcheminement": "DAUENDORF", + "nomCommune": "DAUENDORF" }, { - "codePostal": "73100", - "codeCommune": "73300", - "libelleAcheminement": "TRESSERVE", - "nomCommune": "TRESSERVE" + "codePostal": "68570", + "codeCommune": "68318", + "libelleAcheminement": "SOULTZMATT", + "nomCommune": "SOULTZMATT" }, { - "codePostal": "24300", - "codeCommune": "24016", - "libelleAcheminement": "AUGIGNAC", - "nomCommune": "AUGIGNAC" + "codePostal": "80140", + "codeCommune": "80355", + "libelleAcheminement": "FRESNEVILLE", + "nomCommune": "FRESNEVILLE" }, { - "codePostal": "79370", - "codeCommune": "79061", - "libelleAcheminement": "CELLES SUR BELLE", - "nomCommune": "CELLES SUR BELLE" + "codePostal": "70400", + "codeCommune": "70285", + "libelleAcheminement": "HERICOURT", + "nomCommune": "HERICOURT" }, { - "codePostal": "80500", - "codeCommune": "80293", - "libelleAcheminement": "ETELFAY", - "nomCommune": "ETELFAY" + "codePostal": "80620", + "codeCommune": "80241", + "libelleAcheminement": "DOMART EN PONTHIEU", + "nomCommune": "DOMART EN PONTHIEU" }, { - "codePostal": "73110", - "codeCommune": "73302", - "libelleAcheminement": "LA TRINITE", - "nomCommune": "LA TRINITE" + "codePostal": "67220", + "codeCommune": "67092", + "libelleAcheminement": "DIEFFENBACH AU VAL", + "nomCommune": "DIEFFENBACH AU VAL" }, { - "codePostal": "24210", - "codeCommune": "24020", - "libelleAcheminement": "LA BACHELLERIE", - "nomCommune": "LA BACHELLERIE" + "codePostal": "68850", + "codeCommune": "68321", + "libelleAcheminement": "STAFFELFELDEN", + "nomCommune": "STAFFELFELDEN" }, { - "codePostal": "79140", - "codeCommune": "79062", - "libelleAcheminement": "CERIZAY", - "nomCommune": "CERIZAY" + "codePostal": "80390", + "codeCommune": "80360", + "libelleAcheminement": "FRESSENNEVILLE", + "nomCommune": "FRESSENNEVILLE" }, { - "codePostal": "80200", - "codeCommune": "80307", - "libelleAcheminement": "FEUILLERES", - "nomCommune": "FEUILLERES" + "codePostal": "70150", + "codeCommune": "70286", + "libelleAcheminement": "HUGIER", + "nomCommune": "HUGIER" }, { - "codePostal": "73460", - "codeCommune": "73312", - "libelleAcheminement": "VERRENS ARVEY", - "nomCommune": "VERRENS ARVEY" + "codePostal": "80980", + "codeCommune": "80247", + "libelleAcheminement": "DOMPIERRE BECQUINCOURT", + "nomCommune": "DOMPIERRE BECQUINCOURT" }, { - "codePostal": "24150", - "codeCommune": "24027", - "libelleAcheminement": "BAYAC", - "nomCommune": "BAYAC" + "codePostal": "67430", + "codeCommune": "67095", + "libelleAcheminement": "DIEMERINGEN", + "nomCommune": "DIEMERINGEN" }, { - "codePostal": "79500", - "codeCommune": "79064", - "libelleAcheminement": "FONTIVILLIE", - "nomCommune": "FONTIVILLIE" + "codePostal": "68510", + "codeCommune": "68327", + "libelleAcheminement": "STETTEN", + "nomCommune": "STETTEN" }, { - "codePostal": "80500", - "codeCommune": "80311", - "libelleAcheminement": "FIGNIERES", - "nomCommune": "FIGNIERES" + "codePostal": "80220", + "codeCommune": "80362", + "libelleAcheminement": "FRETTEMEULE", + "nomCommune": "FRETTEMEULE" }, { - "codePostal": "73800", - "codeCommune": "73314", - "libelleAcheminement": "VILLARD D HERY", - "nomCommune": "VILLARD D HERY" + "codePostal": "70190", + "codeCommune": "70288", + "libelleAcheminement": "HYET", + "nomCommune": "HYET" }, { - "codePostal": "24440", - "codeCommune": "24028", - "libelleAcheminement": "BEAUMONTOIS EN PERIGORD", - "nomCommune": "BEAUMONTOIS EN PERIGORD" + "codePostal": "80370", + "codeCommune": "80270", + "libelleAcheminement": "EPECAMPS", + "nomCommune": "EPECAMPS" }, { - "codePostal": "79200", - "codeCommune": "79071", - "libelleAcheminement": "LA CHAPELLE BERTRAND", - "nomCommune": "LA CHAPELLE BERTRAND" + "codePostal": "67370", + "codeCommune": "67097", + "libelleAcheminement": "DINGSHEIM", + "nomCommune": "DINGSHEIM" }, { - "codePostal": "80200", - "codeCommune": "80313", - "libelleAcheminement": "FLAUCOURT", - "nomCommune": "FLAUCOURT" + "codePostal": "68590", + "codeCommune": "68335", + "libelleAcheminement": "THANNENKIRCH", + "nomCommune": "THANNENKIRCH" }, { - "codePostal": "73390", - "codeCommune": "73315", - "libelleAcheminement": "VILLARD LEGER", - "nomCommune": "VILLARD LEGER" + "codePostal": "80460", + "codeCommune": "80364", + "libelleAcheminement": "FRIAUCOURT", + "nomCommune": "FRIAUCOURT" }, { - "codePostal": "24170", - "codeCommune": "24035", - "libelleAcheminement": "PAYS DE BELVES", - "nomCommune": "PAYS DE BELVES" + "codePostal": "70800", + "codeCommune": "70290", + "libelleAcheminement": "JASNEY", + "nomCommune": "JASNEY" }, { - "codePostal": "79700", - "codeCommune": "79079", - "libelleAcheminement": "MAULEON", - "nomCommune": "MAULEON" + "codePostal": "80290", + "codeCommune": "80273", + "libelleAcheminement": "EPLESSIER", + "nomCommune": "EPLESSIER" }, { - "codePostal": "80420", - "codeCommune": "80318", - "libelleAcheminement": "FLIXECOURT", - "nomCommune": "FLIXECOURT" + "codePostal": "67160", + "codeCommune": "67104", + "libelleAcheminement": "DRACHENBRONN BIRLENBACH", + "nomCommune": "DRACHENBRONN BIRLENBACH" }, { - "codePostal": "73270", - "codeCommune": "73317", - "libelleAcheminement": "VILLARD SUR DORON", - "nomCommune": "VILLARD SUR DORON" + "codePostal": "68480", + "codeCommune": "68347", + "libelleAcheminement": "VIEUX FERRETTE", + "nomCommune": "VIEUX FERRETTE" }, { - "codePostal": "24170", - "codeCommune": "24035", - "libelleAcheminement": "PAYS DE BELVES", - "nomCommune": "PAYS DE BELVES" + "codePostal": "80340", + "codeCommune": "80367", + "libelleAcheminement": "FRISE", + "nomCommune": "FRISE" }, { - "codePostal": "79200", - "codeCommune": "79080", - "libelleAcheminement": "CHATILLON SUR THOUET", - "nomCommune": "CHATILLON SUR THOUET" + "codePostal": "70500", + "codeCommune": "70291", + "libelleAcheminement": "JONVELLE", + "nomCommune": "JONVELLE" }, { - "codePostal": "80170", - "codeCommune": "80320", - "libelleAcheminement": "FOLIES", - "nomCommune": "FOLIES" + "codePostal": "80290", + "codeCommune": "80276", + "libelleAcheminement": "EQUENNES ERAMECOURT", + "nomCommune": "EQUENNES ERAMECOURT" }, { - "codePostal": "73300", - "codeCommune": "73320", - "libelleAcheminement": "VILLARGONDRAN", - "nomCommune": "VILLARGONDRAN" + "codePostal": "67270", + "codeCommune": "67107", + "libelleAcheminement": "DUNTZENHEIM", + "nomCommune": "DUNTZENHEIM" }, { - "codePostal": "24550", - "codeCommune": "24039", - "libelleAcheminement": "BESSE", - "nomCommune": "BESSE" + "codePostal": "68800", + "codeCommune": "68348", + "libelleAcheminement": "VIEUX THANN", + "nomCommune": "VIEUX THANN" }, { - "codePostal": "79180", - "codeCommune": "79081", - "libelleAcheminement": "CHAURAY", - "nomCommune": "CHAURAY" + "codePostal": "80150", + "codeCommune": "80371", + "libelleAcheminement": "FROYELLES", + "nomCommune": "FROYELLES" }, { - "codePostal": "80150", - "codeCommune": "80331", - "libelleAcheminement": "FOREST L ABBAYE", - "nomCommune": "FOREST L ABBAYE" + "codePostal": "70600", + "codeCommune": "70297", + "libelleAcheminement": "LARRET", + "nomCommune": "LARRET" }, { - "codePostal": "73420", - "codeCommune": "73328", - "libelleAcheminement": "VIVIERS DU LAC", - "nomCommune": "VIVIERS DU LAC" + "codePostal": "80580", + "codeCommune": "80282", + "libelleAcheminement": "ERONDELLE", + "nomCommune": "ERONDELLE" }, { - "codePostal": "24310", - "codeCommune": "24042", - "libelleAcheminement": "BIRAS", - "nomCommune": "BIRAS" + "codePostal": "67201", + "codeCommune": "67118", + "libelleAcheminement": "ECKBOLSHEIM", + "nomCommune": "ECKBOLSHEIM" }, { - "codePostal": "79120", - "codeCommune": "79084", - "libelleAcheminement": "CHENAY", - "nomCommune": "CHENAY" + "codePostal": "68420", + "codeCommune": "68350", + "libelleAcheminement": "VOEGTLINSHOFFEN", + "nomCommune": "VOEGTLINSHOFFEN" }, { - "codePostal": "80120", - "codeCommune": "80333", - "libelleAcheminement": "FORT MAHON PLAGE", - "nomCommune": "FORT MAHON PLAGE" + "codePostal": "80490", + "codeCommune": "80372", + "libelleAcheminement": "FRUCOURT", + "nomCommune": "FRUCOURT" }, { - "codePostal": "74100", - "codeCommune": "74008", - "libelleAcheminement": "AMBILLY", - "nomCommune": "AMBILLY" + "codePostal": "70190", + "codeCommune": "70301", + "libelleAcheminement": "LIEFFRANS", + "nomCommune": "LIEFFRANS" }, { - "codePostal": "24230", - "codeCommune": "24048", - "libelleAcheminement": "BONNEVILLE ST AVIT DE FUMADIERES", - "nomCommune": "BONNEVILLE ET ST AVIT DE FUMADIERES" + "codePostal": "80250", + "codeCommune": "80283", + "libelleAcheminement": "ESCLAINVILLERS", + "nomCommune": "ESCLAINVILLERS" }, { - "codePostal": "79110", - "codeCommune": "79106", - "libelleAcheminement": "COUTURE D ARGENSON", - "nomCommune": "COUTURE D ARGENSON" + "codePostal": "67550", + "codeCommune": "67119", + "libelleAcheminement": "ECKWERSHEIM", + "nomCommune": "ECKWERSHEIM" }, { - "codePostal": "80700", - "codeCommune": "80347", - "libelleAcheminement": "FRANSART", - "nomCommune": "FRANSART" + "codePostal": "68600", + "codeCommune": "68352", + "libelleAcheminement": "VOLGELSHEIM", + "nomCommune": "VOLGELSHEIM" }, { - "codePostal": "74350", - "codeCommune": "74009", - "libelleAcheminement": "ANDILLY", - "nomCommune": "ANDILLY" + "codePostal": "80150", + "codeCommune": "80374", + "libelleAcheminement": "GAPENNES", + "nomCommune": "GAPENNES" }, { - "codePostal": "24300", - "codeCommune": "24056", - "libelleAcheminement": "LE BOURDEIX", - "nomCommune": "LE BOURDEIX" + "codePostal": "70200", + "codeCommune": "70304", + "libelleAcheminement": "LINEXERT", + "nomCommune": "LINEXERT" }, { - "codePostal": "79390", - "codeCommune": "79108", - "libelleAcheminement": "DOUX", - "nomCommune": "DOUX" + "codePostal": "80400", + "codeCommune": "80284", + "libelleAcheminement": "ESMERY HALLON", + "nomCommune": "ESMERY HALLON" }, { - "codePostal": "80620", - "codeCommune": "80348", - "libelleAcheminement": "FRANSU", - "nomCommune": "FRANSU" + "codePostal": "67140", + "codeCommune": "67120", + "libelleAcheminement": "EICHHOFFEN", + "nomCommune": "EICHHOFFEN" }, { - "codePostal": "74000", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "68640", + "codeCommune": "68355", + "libelleAcheminement": "WALDIGHOFEN", + "nomCommune": "WALDIGHOFEN" }, { - "codePostal": "24250", - "codeCommune": "24063", - "libelleAcheminement": "BOUZIC", - "nomCommune": "BOUZIC" + "codePostal": "80800", + "codeCommune": "80376", + "libelleAcheminement": "GENTELLES", + "nomCommune": "GENTELLES" }, { - "codePostal": "79410", - "codeCommune": "79109", - "libelleAcheminement": "ECHIRE", - "nomCommune": "ECHIRE" + "codePostal": "70100", + "codeCommune": "70305", + "libelleAcheminement": "LOEUILLEY", + "nomCommune": "LOEUILLEY" }, { - "codePostal": "80160", - "codeCommune": "80349", - "libelleAcheminement": "FRANSURES", - "nomCommune": "FRANSURES" + "codePostal": "80190", + "codeCommune": "80292", + "libelleAcheminement": "ETALON", + "nomCommune": "ETALON" }, { - "codePostal": "74370", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "67150", + "codeCommune": "67130", + "libelleAcheminement": "ERSTEIN", + "nomCommune": "ERSTEIN" }, { - "codePostal": "24310", - "codeCommune": "24064", - "libelleAcheminement": "BRANTOME EN PERIGORD", - "nomCommune": "BRANTOME EN PERIGORD" + "codePostal": "68130", + "codeCommune": "68356", + "libelleAcheminement": "WALHEIM", + "nomCommune": "WALHEIM" }, { - "codePostal": "79170", - "codeCommune": "79111", - "libelleAcheminement": "ENSIGNE", - "nomCommune": "ENSIGNE" + "codePostal": "80690", + "codeCommune": "80380", + "libelleAcheminement": "GORENFLOS", + "nomCommune": "GORENFLOS" }, { - "codePostal": "80140", - "codeCommune": "80355", - "libelleAcheminement": "FRESNEVILLE", - "nomCommune": "FRESNEVILLE" + "codePostal": "70200", + "codeCommune": "70310", + "libelleAcheminement": "LURE", + "nomCommune": "LURE" }, { - "codePostal": "74600", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "80830", + "codeCommune": "80296", + "libelleAcheminement": "L ETOILE", + "nomCommune": "L ETOILE" }, { - "codePostal": "24310", - "codeCommune": "24064", - "libelleAcheminement": "BRANTOME EN PERIGORD", - "nomCommune": "BRANTOME EN PERIGORD" + "codePostal": "67114", + "codeCommune": "67131", + "libelleAcheminement": "ESCHAU", + "nomCommune": "ESCHAU" }, { - "codePostal": "79160", - "codeCommune": "79117", - "libelleAcheminement": "FAYE SUR ARDIN", - "nomCommune": "FAYE SUR ARDIN" + "codePostal": "68510", + "codeCommune": "68357", + "libelleAcheminement": "WALTENHEIM", + "nomCommune": "WALTENHEIM" }, { - "codePostal": "80390", - "codeCommune": "80360", - "libelleAcheminement": "FRESSENNEVILLE", - "nomCommune": "FRESSENNEVILLE" + "codePostal": "80500", + "codeCommune": "80386", + "libelleAcheminement": "GRATIBUS", + "nomCommune": "GRATIBUS" }, { - "codePostal": "74200", - "codeCommune": "74013", - "libelleAcheminement": "ANTHY SUR LEMAN", - "nomCommune": "ANTHY SUR LEMAN" + "codePostal": "70400", + "codeCommune": "70312", + "libelleAcheminement": "LUZE", + "nomCommune": "LUZE" }, { - "codePostal": "24310", - "codeCommune": "24064", - "libelleAcheminement": "BRANTOME EN PERIGORD", - "nomCommune": "BRANTOME EN PERIGORD" + "codePostal": "80250", + "codeCommune": "80299", + "libelleAcheminement": "LA FALOISE", + "nomCommune": "LA FALOISE" }, { - "codePostal": "79380", - "codeCommune": "79123", - "libelleAcheminement": "LA FORET SUR SEVRE", - "nomCommune": "LA FORET SUR SEVRE" + "codePostal": "67320", + "codeCommune": "67133", + "libelleAcheminement": "ESCHBOURG", + "nomCommune": "ESCHBOURG" }, { - "codePostal": "80140", - "codeCommune": "80361", - "libelleAcheminement": "FRETTECUISSE", - "nomCommune": "FRETTECUISSE" + "codePostal": "68230", + "codeCommune": "68358", + "libelleAcheminement": "WASSERBOURG", + "nomCommune": "WASSERBOURG" }, { - "codePostal": "74300", - "codeCommune": "74014", - "libelleAcheminement": "ARACHES LA FRASSE", - "nomCommune": "ARACHES LA FRASSE" + "codePostal": "80680", + "codeCommune": "80387", + "libelleAcheminement": "GRATTEPANCHE", + "nomCommune": "GRATTEPANCHE" }, { - "codePostal": "24550", - "codeCommune": "24075", - "libelleAcheminement": "CAMPAGNAC LES QUERCY", - "nomCommune": "CAMPAGNAC LES QUERCY" + "codePostal": "70230", + "codeCommune": "70335", + "libelleAcheminement": "MAUSSANS", + "nomCommune": "MAUSSANS" }, { - "codePostal": "79380", - "codeCommune": "79123", - "libelleAcheminement": "LA FORET SUR SEVRE", - "nomCommune": "LA FORET SUR SEVRE" + "codePostal": "80500", + "codeCommune": "80306", + "libelleAcheminement": "FESCAMPS", + "nomCommune": "FESCAMPS" }, { - "codePostal": "80300", - "codeCommune": "80366", - "libelleAcheminement": "FRICOURT", - "nomCommune": "FRICOURT" + "codePostal": "67117", + "codeCommune": "67138", + "libelleAcheminement": "FESSENHEIM LE BAS", + "nomCommune": "FESSENHEIM LE BAS" }, { - "codePostal": "74300", - "codeCommune": "74014", - "libelleAcheminement": "ARACHES LA FRASSE", - "nomCommune": "ARACHES LA FRASSE" + "codePostal": "68700", + "codeCommune": "68359", + "libelleAcheminement": "WATTWILLER", + "nomCommune": "WATTWILLER" }, { - "codePostal": "24200", - "codeCommune": "24082", - "libelleAcheminement": "CARSAC AILLAC", - "nomCommune": "CARSAC AILLAC" + "codePostal": "80700", + "codeCommune": "80391", + "libelleAcheminement": "GRIVILLERS", + "nomCommune": "GRIVILLERS" }, { - "codePostal": "79360", - "codeCommune": "79126", - "libelleAcheminement": "LES FOSSES", - "nomCommune": "LES FOSSES" + "codePostal": "70160", + "codeCommune": "70343", + "libelleAcheminement": "MERSUAY", + "nomCommune": "MERSUAY" }, { - "codePostal": "80340", - "codeCommune": "80367", - "libelleAcheminement": "FRISE", - "nomCommune": "FRISE" + "codePostal": "80210", + "codeCommune": "80308", + "libelleAcheminement": "FEUQUIERES EN VIMEU", + "nomCommune": "FEUQUIERES EN VIMEU" }, { - "codePostal": "74160", - "codeCommune": "74016", - "libelleAcheminement": "ARCHAMPS", - "nomCommune": "ARCHAMPS" + "codePostal": "67270", + "codeCommune": "67163", + "libelleAcheminement": "GOUGENHEIM", + "nomCommune": "GOUGENHEIM" }, { - "codePostal": "24220", - "codeCommune": "24087", - "libelleAcheminement": "CASTELS ET BEZENAC", - "nomCommune": "CASTELS ET BEZENAC" + "codePostal": "68220", + "codeCommune": "68362", + "libelleAcheminement": "WENTZWILLER", + "nomCommune": "WENTZWILLER" }, { - "codePostal": "79270", - "codeCommune": "79130", - "libelleAcheminement": "FRONTENAY ROHAN ROHAN", - "nomCommune": "FRONTENAY ROHAN ROHAN" + "codePostal": "80150", + "codeCommune": "80396", + "libelleAcheminement": "GUESCHART", + "nomCommune": "GUESCHART" }, { - "codePostal": "80490", - "codeCommune": "80372", - "libelleAcheminement": "FRUCOURT", - "nomCommune": "FRUCOURT" + "codePostal": "70200", + "codeCommune": "70348", + "libelleAcheminement": "MOFFANS ET VACHERESSE", + "nomCommune": "MOFFANS ET VACHERESSE" }, { - "codePostal": "74370", - "codeCommune": "74019", - "libelleAcheminement": "ARGONAY", - "nomCommune": "ARGONAY" + "codePostal": "80200", + "codeCommune": "80313", + "libelleAcheminement": "FLAUCOURT", + "nomCommune": "FLAUCOURT" }, { - "codePostal": "24800", - "codeCommune": "24095", - "libelleAcheminement": "CHALAIS", - "nomCommune": "CHALAIS" + "codePostal": "67500", + "codeCommune": "67180", + "libelleAcheminement": "HAGUENAU", + "nomCommune": "HAGUENAU" }, { - "codePostal": "79200", - "codeCommune": "79135", - "libelleAcheminement": "GOURGE", - "nomCommune": "GOURGE" + "codePostal": "68210", + "codeCommune": "68378", + "libelleAcheminement": "WOLFERSDORF", + "nomCommune": "WOLFERSDORF" }, { - "codePostal": "80150", - "codeCommune": "80374", - "libelleAcheminement": "GAPENNES", - "nomCommune": "GAPENNES" + "codePostal": "80250", + "codeCommune": "80403", + "libelleAcheminement": "GUYENCOURT SUR NOYE", + "nomCommune": "GUYENCOURT SUR NOYE" }, { - "codePostal": "74230", - "codeCommune": "74027", - "libelleAcheminement": "LA BALME DE THUY", - "nomCommune": "LA BALME DE THUY" + "codePostal": "70240", + "codeCommune": "70351", + "libelleAcheminement": "MOLLANS", + "nomCommune": "MOLLANS" }, { - "codePostal": "24360", - "codeCommune": "24100", - "libelleAcheminement": "CHAMPNIERS ET REILHAC", - "nomCommune": "CHAMPNIERS ET REILHAC" + "codePostal": "80140", + "codeCommune": "80330", + "libelleAcheminement": "FORCEVILLE EN VIMEU", + "nomCommune": "FORCEVILLE EN VIMEU" }, { - "codePostal": "79360", - "codeCommune": "79137", - "libelleAcheminement": "GRANZAY GRIPT", - "nomCommune": "GRANZAY GRIPT" + "codePostal": "67980", + "codeCommune": "67182", + "libelleAcheminement": "HANGENBIETEN", + "nomCommune": "HANGENBIETEN" }, { - "codePostal": "80370", - "codeCommune": "80381", - "libelleAcheminement": "GORGES", - "nomCommune": "GORGES" + "codePostal": "68480", + "codeCommune": "68380", + "libelleAcheminement": "WOLSCHWILLER", + "nomCommune": "WOLSCHWILLER" }, { - "codePostal": "74910", - "codeCommune": "74029", - "libelleAcheminement": "BASSY", - "nomCommune": "BASSY" + "codePostal": "80320", + "codeCommune": "80409", + "libelleAcheminement": "HALLU", + "nomCommune": "HALLU" }, { - "codePostal": "24470", - "codeCommune": "24101", - "libelleAcheminement": "CHAMPS ROMAIN", - "nomCommune": "CHAMPS ROMAIN" + "codePostal": "70190", + "codeCommune": "70355", + "libelleAcheminement": "MONTARLOT LES RIOZ", + "nomCommune": "MONTARLOT LES RIOZ" }, { - "codePostal": "79220", - "codeCommune": "79139", - "libelleAcheminement": "LES GROSEILLERS", - "nomCommune": "LES GROSEILLERS" + "codePostal": "80120", + "codeCommune": "80332", + "libelleAcheminement": "FOREST MONTIERS", + "nomCommune": "FOREST MONTIERS" }, { - "codePostal": "80360", - "codeCommune": "80397", - "libelleAcheminement": "GUEUDECOURT", - "nomCommune": "GUEUDECOURT" + "codePostal": "67260", + "codeCommune": "67183", + "libelleAcheminement": "HARSKIRCHEN", + "nomCommune": "HARSKIRCHEN" }, { - "codePostal": "74250", - "codeCommune": "74038", - "libelleAcheminement": "BOGEVE", - "nomCommune": "BOGEVE" + "codePostal": "68440", + "codeCommune": "68386", + "libelleAcheminement": "ZIMMERSHEIM", + "nomCommune": "ZIMMERSHEIM" }, { - "codePostal": "24350", - "codeCommune": "24108", - "libelleAcheminement": "LA CHAPELLE GONAGUET", - "nomCommune": "LA CHAPELLE GONAGUET" + "codePostal": "80560", + "codeCommune": "80420", + "libelleAcheminement": "HARPONVILLE", + "nomCommune": "HARPONVILLE" }, { - "codePostal": "79110", - "codeCommune": "79140", - "libelleAcheminement": "VALDELAUME", - "nomCommune": "VALDELAUME" + "codePostal": "70000", + "codeCommune": "70358", + "libelleAcheminement": "MONTCEY", + "nomCommune": "MONTCEY" }, { - "codePostal": "80540", - "codeCommune": "80399", - "libelleAcheminement": "GUIGNEMICOURT", - "nomCommune": "GUIGNEMICOURT" + "codePostal": "80131", + "codeCommune": "80342", + "libelleAcheminement": "FRAMERVILLE RAINECOURT", + "nomCommune": "FRAMERVILLE RAINECOURT" }, { - "codePostal": "74380", - "codeCommune": "74040", - "libelleAcheminement": "BONNE", - "nomCommune": "BONNE" + "codePostal": "67360", + "codeCommune": "67186", + "libelleAcheminement": "HEGENEY", + "nomCommune": "HEGENEY" }, { - "codePostal": "24320", - "codeCommune": "24109", - "libelleAcheminement": "LA CHAPELLE GRESIGNAC", - "nomCommune": "LA CHAPELLE GRESIGNAC" + "codePostal": "69480", + "codeCommune": "69009", + "libelleAcheminement": "ANSE", + "nomCommune": "ANSE" }, { - "codePostal": "79230", - "codeCommune": "79144", - "libelleAcheminement": "JUSCORPS", - "nomCommune": "JUSCORPS" + "codePostal": "80800", + "codeCommune": "80426", + "libelleAcheminement": "HEILLY", + "nomCommune": "HEILLY" }, { - "codePostal": "80490", - "codeCommune": "80406", - "libelleAcheminement": "HALLENCOURT", - "nomCommune": "HALLENCOURT" + "codePostal": "70500", + "codeCommune": "70359", + "libelleAcheminement": "MONTCOURT", + "nomCommune": "MONTCOURT" }, { - "codePostal": "74160", - "codeCommune": "74044", - "libelleAcheminement": "BOSSEY", - "nomCommune": "BOSSEY" + "codePostal": "80140", + "codeCommune": "80343", + "libelleAcheminement": "FRAMICOURT", + "nomCommune": "FRAMICOURT" }, { - "codePostal": "24120", - "codeCommune": "24117", - "libelleAcheminement": "LES COTEAUX PERIGOURDINS", - "nomCommune": "LES COTEAUX PERIGOURDINS" + "codePostal": "67190", + "codeCommune": "67188", + "libelleAcheminement": "HEILIGENBERG", + "nomCommune": "HEILIGENBERG" }, { - "codePostal": "79200", - "codeCommune": "79145", - "libelleAcheminement": "LAGEON", - "nomCommune": "LAGEON" + "codePostal": "69210", + "codeCommune": "69010", + "libelleAcheminement": "L ARBRESLE", + "nomCommune": "L ARBRESLE" }, { - "codePostal": "80800", - "codeCommune": "80411", - "libelleAcheminement": "LE HAMEL", - "nomCommune": "LE HAMEL" + "codePostal": "80600", + "codeCommune": "80427", + "libelleAcheminement": "HEM HARDINVAL", + "nomCommune": "HEM HARDINVAL" }, { - "codePostal": "74350", - "codeCommune": "74051", - "libelleAcheminement": "CERCIER", - "nomCommune": "CERCIER" + "codePostal": "70700", + "codeCommune": "70366", + "libelleAcheminement": "VILLERS CHEMIN MONT LES ETRELLES", + "nomCommune": "VILLERS CHEMIN ET MONT LES ETRELLES" }, { - "codePostal": "24390", - "codeCommune": "24120", - "libelleAcheminement": "CHERVEIX CUBAS", - "nomCommune": "CHERVEIX CUBAS" + "codePostal": "80140", + "codeCommune": "80354", + "libelleAcheminement": "FRESNES TILLOLOY", + "nomCommune": "FRESNES TILLOLOY" }, { - "codePostal": "79390", - "codeCommune": "79149", - "libelleAcheminement": "LHOUMOIS", - "nomCommune": "LHOUMOIS" + "codePostal": "67850", + "codeCommune": "67194", + "libelleAcheminement": "HERRLISHEIM", + "nomCommune": "HERRLISHEIM" }, { - "codePostal": "80240", - "codeCommune": "80413", - "libelleAcheminement": "HANCOURT", - "nomCommune": "HANCOURT" + "codePostal": "69610", + "codeCommune": "69014", + "libelleAcheminement": "AVEIZE", + "nomCommune": "AVEIZE" }, { - "codePostal": "74350", - "codeCommune": "74052", - "libelleAcheminement": "CERNEX", - "nomCommune": "CERNEX" + "codePostal": "80260", + "codeCommune": "80431", + "libelleAcheminement": "HERISSART", + "nomCommune": "HERISSART" }, { - "codePostal": "24640", - "codeCommune": "24121", - "libelleAcheminement": "CHOURGNAC", - "nomCommune": "CHOURGNAC" + "codePostal": "70120", + "codeCommune": "70369", + "libelleAcheminement": "MONT ST LEGER", + "nomCommune": "MONT ST LEGER" }, { - "codePostal": "79170", - "codeCommune": "79160", - "libelleAcheminement": "LUSSERAY", - "nomCommune": "LUSSERAY" + "codePostal": "80140", + "codeCommune": "80356", + "libelleAcheminement": "FRESNOY ANDAINVILLE", + "nomCommune": "FRESNOY ANDAINVILLE" }, { - "codePostal": "80134", - "codeCommune": "80415", - "libelleAcheminement": "HANGEST EN SANTERRE", - "nomCommune": "HANGEST EN SANTERRE" + "codePostal": "67600", + "codeCommune": "67196", + "libelleAcheminement": "HILSENHEIM", + "nomCommune": "HILSENHEIM" }, { - "codePostal": "74400", - "codeCommune": "74056", - "libelleAcheminement": "CHAMONIX MONT BLANC", - "nomCommune": "CHAMONIX MONT BLANC" + "codePostal": "69620", + "codeCommune": "69017", + "libelleAcheminement": "BAGNOLS", + "nomCommune": "BAGNOLS" }, { - "codePostal": "24300", - "codeCommune": "24131", - "libelleAcheminement": "CONNEZAC", - "nomCommune": "CONNEZAC" + "codePostal": "80290", + "codeCommune": "80436", + "libelleAcheminement": "HESCAMPS", + "nomCommune": "HESCAMPS" }, { - "codePostal": "79190", - "codeCommune": "79163", - "libelleAcheminement": "MAIRE LEVESCAULT", - "nomCommune": "MAIRE LEVESCAULT" + "codePostal": "70120", + "codeCommune": "70373", + "libelleAcheminement": "LA ROCHE MOREY", + "nomCommune": "LA ROCHE MOREY" }, { - "codePostal": "80560", - "codeCommune": "80425", - "libelleAcheminement": "HEDAUVILLE", - "nomCommune": "HEDAUVILLE" + "codePostal": "80110", + "codeCommune": "80358", + "libelleAcheminement": "FRESNOY EN CHAUSSEE", + "nomCommune": "FRESNOY EN CHAUSSEE" }, { - "codePostal": "74400", - "codeCommune": "74056", - "libelleAcheminement": "CHAMONIX MONT BLANC", - "nomCommune": "CHAMONIX MONT BLANC" + "codePostal": "67290", + "codeCommune": "67198", + "libelleAcheminement": "HINSBOURG", + "nomCommune": "HINSBOURG" }, { - "codePostal": "24560", - "codeCommune": "24132", - "libelleAcheminement": "CONNE DE LABARDE", - "nomCommune": "CONNE DE LABARDE" + "codePostal": "69220", + "codeCommune": "69019", + "libelleAcheminement": "BELLEVILLE EN BEAUJOLAIS", + "nomCommune": "BELLEVILLE EN BEAUJOLAIS" }, { - "codePostal": "79500", - "codeCommune": "79174", - "libelleAcheminement": "MELLE", - "nomCommune": "MELLE" + "codePostal": "80640", + "codeCommune": "80443", + "libelleAcheminement": "HORNOY LE BOURG", + "nomCommune": "HORNOY LE BOURG" }, { - "codePostal": "80190", - "codeCommune": "80433", - "libelleAcheminement": "HERLY", - "nomCommune": "HERLY" + "codePostal": "70160", + "codeCommune": "70380", + "libelleAcheminement": "NEUREY EN VAUX", + "nomCommune": "NEUREY EN VAUX" }, { - "codePostal": "74520", - "codeCommune": "74074", - "libelleAcheminement": "CHEVRIER", - "nomCommune": "CHEVRIER" + "codePostal": "80300", + "codeCommune": "80366", + "libelleAcheminement": "FRICOURT", + "nomCommune": "FRICOURT" }, { - "codePostal": "24450", - "codeCommune": "24133", - "libelleAcheminement": "LA COQUILLE", - "nomCommune": "LA COQUILLE" + "codePostal": "67117", + "codeCommune": "67214", + "libelleAcheminement": "HURTIGHEIM", + "nomCommune": "HURTIGHEIM" }, { - "codePostal": "79500", - "codeCommune": "79174", - "libelleAcheminement": "MELLE", - "nomCommune": "MELLE" + "codePostal": "69690", + "codeCommune": "69021", + "libelleAcheminement": "BESSENAY", + "nomCommune": "BESSENAY" }, { - "codePostal": "80122", - "codeCommune": "80438", - "libelleAcheminement": "HEUDICOURT", - "nomCommune": "HEUDICOURT" + "codePostal": "80640", + "codeCommune": "80443", + "libelleAcheminement": "HORNOY LE BOURG", + "nomCommune": "HORNOY LE BOURG" }, { - "codePostal": "74270", - "codeCommune": "74077", - "libelleAcheminement": "CLARAFOND ARCINE", - "nomCommune": "CLARAFOND ARCINE" + "codePostal": "70600", + "codeCommune": "70402", + "libelleAcheminement": "OYRIERES", + "nomCommune": "OYRIERES" }, { - "codePostal": "24750", - "codeCommune": "24135", - "libelleAcheminement": "CORNILLE", - "nomCommune": "CORNILLE" + "codePostal": "80370", + "codeCommune": "80381", + "libelleAcheminement": "GORGES", + "nomCommune": "GORGES" }, { - "codePostal": "79340", - "codeCommune": "79176", - "libelleAcheminement": "MENIGOUTE", - "nomCommune": "MENIGOUTE" + "codePostal": "67230", + "codeCommune": "67216", + "libelleAcheminement": "HUTTENHEIM", + "nomCommune": "HUTTENHEIM" }, { - "codePostal": "80370", - "codeCommune": "80439", - "libelleAcheminement": "HEUZECOURT", - "nomCommune": "HEUZECOURT" + "codePostal": "69690", + "codeCommune": "69021", + "libelleAcheminement": "BESSENAY", + "nomCommune": "BESSENAY" }, { - "codePostal": "74230", - "codeCommune": "74079", - "libelleAcheminement": "LES CLEFS", - "nomCommune": "LES CLEFS" + "codePostal": "80500", + "codeCommune": "80453", + "libelleAcheminement": "LABOISSIERE EN SANTERRE", + "nomCommune": "LABOISSIERE EN SANTERRE" }, { - "codePostal": "24420", - "codeCommune": "24137", - "libelleAcheminement": "COULAURES", - "nomCommune": "COULAURES" + "codePostal": "70290", + "codeCommune": "70414", + "libelleAcheminement": "PLANCHER LES MINES", + "nomCommune": "PLANCHER LES MINES" }, { - "codePostal": "79320", - "codeCommune": "79179", - "libelleAcheminement": "MONCOUTANT SUR SEVRE", - "nomCommune": "MONCOUTANT SUR SEVRE" + "codePostal": "80132", + "codeCommune": "80385", + "libelleAcheminement": "GRAND LAVIERS", + "nomCommune": "GRAND LAVIERS" }, { - "codePostal": "80400", - "codeCommune": "80442", - "libelleAcheminement": "HOMBLEUX", - "nomCommune": "HOMBLEUX" + "codePostal": "67480", + "codeCommune": "67231", + "libelleAcheminement": "KAUFFENHEIM", + "nomCommune": "KAUFFENHEIM" }, { - "codePostal": "74170", - "codeCommune": "74085", - "libelleAcheminement": "LES CONTAMINES MONTJOIE", - "nomCommune": "LES CONTAMINES MONTJOIE" + "codePostal": "69620", + "codeCommune": "69024", + "libelleAcheminement": "VAL D OINGT", + "nomCommune": "VAL D OINGT" }, { - "codePostal": "24660", - "codeCommune": "24138", - "libelleAcheminement": "COULOUNIEIX CHAMIERS", - "nomCommune": "COULOUNIEIX CHAMIERS" + "codePostal": "80430", + "codeCommune": "80456", + "libelleAcheminement": "LAFRESGUIMONT ST MARTIN", + "nomCommune": "LAFRESGUIMONT ST MARTIN" }, { - "codePostal": "79370", - "codeCommune": "79185", - "libelleAcheminement": "AIGONDIGNE", - "nomCommune": "AIGONDIGNE" + "codePostal": "70200", + "codeCommune": "70432", + "libelleAcheminement": "QUERS", + "nomCommune": "QUERS" }, { - "codePostal": "80400", - "codeCommune": "80442", - "libelleAcheminement": "HOMBLEUX", - "nomCommune": "HOMBLEUX" + "codePostal": "80140", + "codeCommune": "80388", + "libelleAcheminement": "GREBAULT MESNIL", + "nomCommune": "GREBAULT MESNIL" }, { - "codePostal": "74130", - "codeCommune": "74087", - "libelleAcheminement": "CONTAMINE SUR ARVE", - "nomCommune": "CONTAMINE SUR ARVE" + "codePostal": "67270", + "codeCommune": "67236", + "libelleAcheminement": "KIENHEIM", + "nomCommune": "KIENHEIM" }, { - "codePostal": "24430", - "codeCommune": "24139", - "libelleAcheminement": "COURSAC", - "nomCommune": "COURSAC" + "codePostal": "69500", + "codeCommune": "69029", + "libelleAcheminement": "BRON", + "nomCommune": "BRON" }, { - "codePostal": "79250", - "codeCommune": "79195", - "libelleAcheminement": "NUEIL LES AUBIERS", - "nomCommune": "NUEIL LES AUBIERS" + "codePostal": "80430", + "codeCommune": "80456", + "libelleAcheminement": "LAFRESGUIMONT ST MARTIN", + "nomCommune": "LAFRESGUIMONT ST MARTIN" }, { - "codePostal": "80640", - "codeCommune": "80443", - "libelleAcheminement": "HORNOY LE BOURG", - "nomCommune": "HORNOY LE BOURG" + "codePostal": "70000", + "codeCommune": "70439", + "libelleAcheminement": "RAZE", + "nomCommune": "RAZE" }, { - "codePostal": "74150", - "codeCommune": "74095", - "libelleAcheminement": "CREMPIGNY BONNEGUETE", - "nomCommune": "CREMPIGNY BONNEGUETE" + "codePostal": "80700", + "codeCommune": "80393", + "libelleAcheminement": "GRUNY", + "nomCommune": "GRUNY" }, { - "codePostal": "24380", - "codeCommune": "24146", - "libelleAcheminement": "CREYSSENSAC ET PISSOT", - "nomCommune": "CREYSSENSAC ET PISSOT" + "codePostal": "67440", + "codeCommune": "67244", + "libelleAcheminement": "KLEINGOEFT", + "nomCommune": "KLEINGOEFT" }, { - "codePostal": "79100", - "codeCommune": "79196", - "libelleAcheminement": "PLAINE ET VALLEES", - "nomCommune": "PLAINE ET VALLEES" + "codePostal": "69840", + "codeCommune": "69035", + "libelleAcheminement": "CENVES", + "nomCommune": "CENVES" }, { - "codePostal": "80140", - "codeCommune": "80446", - "libelleAcheminement": "HUPPY", - "nomCommune": "HUPPY" + "codePostal": "80150", + "codeCommune": "80462", + "libelleAcheminement": "LAMOTTE BULEUX", + "nomCommune": "LAMOTTE BULEUX" }, { - "codePostal": "01200", - "codeCommune": "74109", - "libelleAcheminement": "ELOISE", - "nomCommune": "ELOISE" + "codePostal": "70190", + "codeCommune": "70441", + "libelleAcheminement": "RECOLOGNE LES RIOZ", + "nomCommune": "RECOLOGNE LES RIOZ" }, { - "codePostal": "24640", - "codeCommune": "24147", - "libelleAcheminement": "CUBJAC AUVEZERE VAL D ANS", - "nomCommune": "CUBJAC AUVEZERE VAL D ANS" + "codePostal": "80540", + "codeCommune": "80399", + "libelleAcheminement": "GUIGNEMICOURT", + "nomCommune": "GUIGNEMICOURT" }, { - "codePostal": "79100", - "codeCommune": "79196", - "libelleAcheminement": "PLAINE ET VALLEES", - "nomCommune": "PLAINE ET VALLEES" + "codePostal": "67230", + "codeCommune": "67246", + "libelleAcheminement": "KOGENHEIM", + "nomCommune": "KOGENHEIM" }, { - "codePostal": "80800", - "codeCommune": "80449", - "libelleAcheminement": "IGNAUCOURT", - "nomCommune": "IGNAUCOURT" + "codePostal": "69870", + "codeCommune": "69037", + "libelleAcheminement": "CHAMBOST ALLIERES", + "nomCommune": "CHAMBOST ALLIERES" }, { - "codePostal": "74800", - "codeCommune": "74116", - "libelleAcheminement": "ETAUX", - "nomCommune": "ETAUX" + "codePostal": "80800", + "codeCommune": "80463", + "libelleAcheminement": "LAMOTTE WARFUSEE", + "nomCommune": "LAMOTTE WARFUSEE" }, { - "codePostal": "24640", - "codeCommune": "24147", - "libelleAcheminement": "CUBJAC AUVEZERE VAL D ANS", - "nomCommune": "CUBJAC AUVEZERE VAL D ANS" + "codePostal": "70120", + "codeCommune": "70442", + "libelleAcheminement": "RENAUCOURT", + "nomCommune": "RENAUCOURT" }, { - "codePostal": "79170", - "codeCommune": "79198", - "libelleAcheminement": "PAIZAY LE CHAPT", - "nomCommune": "PAIZAY LE CHAPT" + "codePostal": "80170", + "codeCommune": "80400", + "libelleAcheminement": "GUILLAUCOURT", + "nomCommune": "GUILLAUCOURT" }, { - "codePostal": "80230", - "codeCommune": "80464", - "libelleAcheminement": "LANCHERES", - "nomCommune": "LANCHERES" + "codePostal": "67220", + "codeCommune": "67255", + "libelleAcheminement": "LALAYE", + "nomCommune": "LALAYE" }, { - "codePostal": "74100", - "codeCommune": "74118", - "libelleAcheminement": "ETREMBIERES", - "nomCommune": "ETREMBIERES" + "codePostal": "69260", + "codeCommune": "69044", + "libelleAcheminement": "CHARBONNIERES LES BAINS", + "nomCommune": "CHARBONNIERES LES BAINS" }, { - "codePostal": "24250", - "codeCommune": "24152", - "libelleAcheminement": "DOMME", - "nomCommune": "DOMME" + "codePostal": "80250", + "codeCommune": "80469", + "libelleAcheminement": "LAWARDE MAUGER L HORTOY", + "nomCommune": "LAWARDE MAUGER L HORTOY" }, { - "codePostal": "79800", - "codeCommune": "79201", - "libelleAcheminement": "PAMPROUX", - "nomCommune": "PAMPROUX" + "codePostal": "70140", + "codeCommune": "70444", + "libelleAcheminement": "LA RESIE ST MARTIN", + "nomCommune": "LA RESIE ST MARTIN" }, { - "codePostal": "80300", - "codeCommune": "80468", - "libelleAcheminement": "LAVIEVILLE", - "nomCommune": "LAVIEVILLE" + "codePostal": "80240", + "codeCommune": "80404", + "libelleAcheminement": "GUYENCOURT SAULCOURT", + "nomCommune": "GUYENCOURT SAULCOURT" }, { - "codePostal": "74500", - "codeCommune": "74119", - "libelleAcheminement": "EVIAN LES BAINS", - "nomCommune": "EVIAN LES BAINS" + "codePostal": "67450", + "codeCommune": "67256", + "libelleAcheminement": "LAMPERTHEIM", + "nomCommune": "LAMPERTHEIM" }, { - "codePostal": "24120", - "codeCommune": "24153", - "libelleAcheminement": "LA DORNAC", - "nomCommune": "LA DORNAC" + "codePostal": "69380", + "codeCommune": "69049", + "libelleAcheminement": "CHASSELAY", + "nomCommune": "CHASSELAY" }, { - "codePostal": "79200", - "codeCommune": "79202", - "libelleAcheminement": "PARTHENAY", - "nomCommune": "PARTHENAY" + "codePostal": "80240", + "codeCommune": "80475", + "libelleAcheminement": "LIERAMONT", + "nomCommune": "LIERAMONT" }, { - "codePostal": "80560", - "codeCommune": "80470", - "libelleAcheminement": "LEALVILLERS", - "nomCommune": "LEALVILLERS" + "codePostal": "70100", + "codeCommune": "70446", + "libelleAcheminement": "RIGNY", + "nomCommune": "RIGNY" }, { - "codePostal": "74160", - "codeCommune": "74124", - "libelleAcheminement": "FEIGERES", - "nomCommune": "FEIGERES" + "codePostal": "80670", + "codeCommune": "80408", + "libelleAcheminement": "HALLOY LES PERNOIS", + "nomCommune": "HALLOY LES PERNOIS" }, { - "codePostal": "24190", - "codeCommune": "24157", - "libelleAcheminement": "DOUZILLAC", - "nomCommune": "DOUZILLAC" + "codePostal": "67510", + "codeCommune": "67263", + "libelleAcheminement": "LEMBACH", + "nomCommune": "LEMBACH" }, { - "codePostal": "79100", - "codeCommune": "79203", - "libelleAcheminement": "PAS DE JEU", - "nomCommune": "PAS DE JEU" + "codePostal": "69840", + "codeCommune": "69053", + "libelleAcheminement": "CHENAS", + "nomCommune": "CHENAS" }, { - "codePostal": "80700", - "codeCommune": "80473", - "libelleAcheminement": "LIANCOURT FOSSE", - "nomCommune": "LIANCOURT FOSSE" + "codePostal": "80320", + "codeCommune": "80481", + "libelleAcheminement": "LIHONS", + "nomCommune": "LIHONS" }, { - "codePostal": "74890", - "codeCommune": "74126", - "libelleAcheminement": "FESSY", - "nomCommune": "FESSY" + "codePostal": "70190", + "codeCommune": "70447", + "libelleAcheminement": "RIOZ", + "nomCommune": "RIOZ" }, { - "codePostal": "24380", - "codeCommune": "24160", - "libelleAcheminement": "EGLISE NEUVE DE VERGT", - "nomCommune": "EGLISE NEUVE DE VERGT" + "codePostal": "80400", + "codeCommune": "80410", + "libelleAcheminement": "HAM", + "nomCommune": "HAM" }, { - "codePostal": "79700", - "codeCommune": "79207", - "libelleAcheminement": "LA PETITE BOISSIERE", - "nomCommune": "LA PETITE BOISSIERE" + "codePostal": "67150", + "codeCommune": "67266", + "libelleAcheminement": "LIMERSHEIM", + "nomCommune": "LIMERSHEIM" }, { - "codePostal": "80500", - "codeCommune": "80478", - "libelleAcheminement": "LIGNIERES LES ROYE", - "nomCommune": "LIGNIERES" + "codePostal": "69470", + "codeCommune": "69066", + "libelleAcheminement": "COURS", + "nomCommune": "COURS" }, { - "codePostal": "74270", - "codeCommune": "74131", - "libelleAcheminement": "FRANGY", - "nomCommune": "FRANGY" + "codePostal": "80490", + "codeCommune": "80482", + "libelleAcheminement": "LIMEUX", + "nomCommune": "LIMEUX" }, { - "codePostal": "24400", - "codeCommune": "24161", - "libelleAcheminement": "EGLISE NEUVE D ISSAC", - "nomCommune": "EGLISE NEUVE D ISSAC" + "codePostal": "70120", + "codeCommune": "70450", + "libelleAcheminement": "LA ROCHELLE", + "nomCommune": "LA ROCHELLE" }, { - "codePostal": "79330", - "codeCommune": "79209", - "libelleAcheminement": "PIERREFITTE", - "nomCommune": "PIERREFITTE" + "codePostal": "80800", + "codeCommune": "80411", + "libelleAcheminement": "LE HAMEL", + "nomCommune": "LE HAMEL" }, { - "codePostal": "80290", - "codeCommune": "80479", - "libelleAcheminement": "LIGNIERES CHATELAIN", - "nomCommune": "LIGNIERES CHATELAIN" + "codePostal": "67250", + "codeCommune": "67271", + "libelleAcheminement": "LOBSANN", + "nomCommune": "LOBSANN" }, { - "codePostal": "74540", - "codeCommune": "74138", - "libelleAcheminement": "GRUFFY", - "nomCommune": "GRUFFY" + "codePostal": "69470", + "codeCommune": "69066", + "libelleAcheminement": "COURS", + "nomCommune": "COURS" }, { - "codePostal": "24420", - "codeCommune": "24162", - "libelleAcheminement": "ESCOIRE", - "nomCommune": "ESCOIRE" + "codePostal": "80600", + "codeCommune": "80491", + "libelleAcheminement": "LONGUEVILLETTE", + "nomCommune": "LONGUEVILLETTE" }, { - "codePostal": "79140", - "codeCommune": "79210", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "70310", + "codeCommune": "70453", + "libelleAcheminement": "LA ROSIERE", + "nomCommune": "LA ROSIERE" }, { - "codePostal": "80140", - "codeCommune": "80480", - "libelleAcheminement": "LIGNIERES EN VIMEU", - "nomCommune": "LIGNIERES EN VIMEU" + "codePostal": "80800", + "codeCommune": "80412", + "libelleAcheminement": "HAMELET", + "nomCommune": "HAMELET" }, { - "codePostal": "74420", - "codeCommune": "74139", - "libelleAcheminement": "HABERE LULLIN", - "nomCommune": "HABERE LULLIN" + "codePostal": "67490", + "codeCommune": "67275", + "libelleAcheminement": "LUPSTEIN", + "nomCommune": "LUPSTEIN" }, { - "codePostal": "24800", - "codeCommune": "24171", - "libelleAcheminement": "EYZERAC", - "nomCommune": "EYZERAC" + "codePostal": "69470", + "codeCommune": "69066", + "libelleAcheminement": "COURS", + "nomCommune": "COURS" }, { - "codePostal": "79230", - "codeCommune": "79216", - "libelleAcheminement": "PRAHECQ", - "nomCommune": "PRAHECQ" + "codePostal": "80150", + "codeCommune": "80497", + "libelleAcheminement": "MACHY", + "nomCommune": "MACHY" }, { - "codePostal": "80490", - "codeCommune": "80482", - "libelleAcheminement": "LIMEUX", - "nomCommune": "LIMEUX" + "codePostal": "70280", + "codeCommune": "70460", + "libelleAcheminement": "ST BRESSON", + "nomCommune": "ST BRESSON" }, { - "codePostal": "74500", - "codeCommune": "74146", - "libelleAcheminement": "LARRINGES", - "nomCommune": "LARRINGES" + "codePostal": "80240", + "codeCommune": "80413", + "libelleAcheminement": "HANCOURT", + "nomCommune": "HANCOURT" }, { - "codePostal": "24620", - "codeCommune": "24172", - "libelleAcheminement": "LES EYZIES", - "nomCommune": "LES EYZIES" + "codePostal": "67130", + "codeCommune": "67276", + "libelleAcheminement": "LUTZELHOUSE", + "nomCommune": "LUTZELHOUSE" }, { - "codePostal": "79370", - "codeCommune": "79217", - "libelleAcheminement": "PRAILLES LA COUARDE", - "nomCommune": "PRAILLES LA COUARDE" + "codePostal": "69690", + "codeCommune": "69067", + "libelleAcheminement": "COURZIEU", + "nomCommune": "COURZIEU" }, { - "codePostal": "80430", - "codeCommune": "80484", - "libelleAcheminement": "LIOMER", - "nomCommune": "LIOMER" + "codePostal": "80560", + "codeCommune": "80498", + "libelleAcheminement": "MAILLY MAILLET", + "nomCommune": "MAILLY MAILLET" }, { - "codePostal": "74470", - "codeCommune": "74155", - "libelleAcheminement": "LULLIN", - "nomCommune": "LULLIN" + "codePostal": "70100", + "codeCommune": "70461", + "libelleAcheminement": "ST BROING", + "nomCommune": "ST BROING" }, { - "codePostal": "24290", - "codeCommune": "24175", - "libelleAcheminement": "LES FARGES", - "nomCommune": "LES FARGES" + "codePostal": "80131", + "codeCommune": "80417", + "libelleAcheminement": "HARBONNIERES", + "nomCommune": "HARBONNIERES" }, { - "codePostal": "79420", - "codeCommune": "79225", - "libelleAcheminement": "REFFANNES", - "nomCommune": "REFFANNES" + "codePostal": "67220", + "codeCommune": "67280", + "libelleAcheminement": "MAISONSGOUTTE", + "nomCommune": "MAISONSGOUTTE" }, { - "codePostal": "80160", - "codeCommune": "80485", - "libelleAcheminement": "O DE SELLE", - "nomCommune": "O DE SELLE" + "codePostal": "69290", + "codeCommune": "69069", + "libelleAcheminement": "CRAPONNE", + "nomCommune": "CRAPONNE" }, { - "codePostal": "74890", - "codeCommune": "74156", - "libelleAcheminement": "LULLY", - "nomCommune": "LULLY" + "codePostal": "80150", + "codeCommune": "80501", + "libelleAcheminement": "MAISON PONTHIEU", + "nomCommune": "MAISON PONTHIEU" }, { - "codePostal": "24120", - "codeCommune": "24179", - "libelleAcheminement": "LA FEUILLADE", - "nomCommune": "LA FEUILLADE" + "codePostal": "70700", + "codeCommune": "70471", + "libelleAcheminement": "STE REINE", + "nomCommune": "STE REINE" }, { - "codePostal": "79270", - "codeCommune": "79229", - "libelleAcheminement": "LA ROCHENARD", - "nomCommune": "LA ROCHENARD" + "codePostal": "80670", + "codeCommune": "80423", + "libelleAcheminement": "HAVERNAS", + "nomCommune": "HAVERNAS" }, { - "codePostal": "80150", - "codeCommune": "80497", - "libelleAcheminement": "MACHY", - "nomCommune": "MACHY" + "codePostal": "67150", + "codeCommune": "67285", + "libelleAcheminement": "MATZENHEIM", + "nomCommune": "MATZENHEIM" }, { - "codePostal": "74250", - "codeCommune": "74162", - "libelleAcheminement": "MARCELLAZ", - "nomCommune": "MARCELLAZ" + "codePostal": "69640", + "codeCommune": "69074", + "libelleAcheminement": "DENICE", + "nomCommune": "DENICE" }, { - "codePostal": "33220", - "codeCommune": "24189", - "libelleAcheminement": "FOUGUEYROLLES", - "nomCommune": "FOUGUEYROLLES" + "codePostal": "80290", + "codeCommune": "80515", + "libelleAcheminement": "MARLERS", + "nomCommune": "MARLERS" }, { - "codePostal": "79120", - "codeCommune": "79230", - "libelleAcheminement": "ROM", - "nomCommune": "ROM" + "codePostal": "70210", + "codeCommune": "70476", + "libelleAcheminement": "SAPONCOURT", + "nomCommune": "SAPONCOURT" }, { - "codePostal": "80200", - "codeCommune": "80509", - "libelleAcheminement": "MARCHELEPOT MISERY", - "nomCommune": "MARCHELEPOT MISERY" + "codePostal": "80300", + "codeCommune": "80429", + "libelleAcheminement": "HENENCOURT", + "nomCommune": "HENENCOURT" }, { - "codePostal": "74500", - "codeCommune": "74175", - "libelleAcheminement": "MEILLERIE", - "nomCommune": "MEILLERIE" + "codePostal": "67340", + "codeCommune": "67289", + "libelleAcheminement": "MENCHHOFFEN", + "nomCommune": "MENCHHOFFEN" }, { - "codePostal": "24130", - "codeCommune": "24191", - "libelleAcheminement": "FRAISSE", - "nomCommune": "FRAISSE" + "codePostal": "69380", + "codeCommune": "69076", + "libelleAcheminement": "DOMMARTIN", + "nomCommune": "DOMMARTIN" }, { - "codePostal": "79300", - "codeCommune": "79238", - "libelleAcheminement": "ST AUBIN DU PLAIN", - "nomCommune": "ST AUBIN DU PLAIN" + "codePostal": "80240", + "codeCommune": "80516", + "libelleAcheminement": "MARQUAIX", + "nomCommune": "MARQUAIX" }, { - "codePostal": "80300", - "codeCommune": "80523", - "libelleAcheminement": "MEAULTE", - "nomCommune": "MEAULTE" + "codePostal": "70400", + "codeCommune": "70477", + "libelleAcheminement": "SAULNOT", + "nomCommune": "SAULNOT" }, { - "codePostal": "74290", - "codeCommune": "74176", - "libelleAcheminement": "MENTHON ST BERNARD", - "nomCommune": "MENTHON ST BERNARD" + "codePostal": "80290", + "codeCommune": "80436", + "libelleAcheminement": "HESCAMPS", + "nomCommune": "HESCAMPS" }, { - "codePostal": "24210", - "codeCommune": "24192", - "libelleAcheminement": "GABILLOU", - "nomCommune": "GABILLOU" + "codePostal": "67206", + "codeCommune": "67296", + "libelleAcheminement": "MITTELHAUSBERGEN", + "nomCommune": "MITTELHAUSBERGEN" }, { - "codePostal": "79800", - "codeCommune": "79246", - "libelleAcheminement": "STE EANNE", - "nomCommune": "STE EANNE" + "codePostal": "69850", + "codeCommune": "69078", + "libelleAcheminement": "DUERNE", + "nomCommune": "DUERNE" }, { - "codePostal": "80300", - "codeCommune": "80540", - "libelleAcheminement": "MESNIL MARTINSART", - "nomCommune": "MESNIL MARTINSART" + "codePostal": "80370", + "codeCommune": "80526", + "libelleAcheminement": "LE MEILLARD", + "nomCommune": "LE MEILLARD" }, { - "codePostal": "74440", - "codeCommune": "74183", - "libelleAcheminement": "MIEUSSY", - "nomCommune": "MIEUSSY" + "codePostal": "70130", + "codeCommune": "70481", + "libelleAcheminement": "SAVOYEUX", + "nomCommune": "SAVOYEUX" }, { - "codePostal": "24160", - "codeCommune": "24196", - "libelleAcheminement": "GENIS", - "nomCommune": "GENIS" + "codePostal": "80270", + "codeCommune": "80437", + "libelleAcheminement": "HEUCOURT CROQUOISON", + "nomCommune": "HEUCOURT CROQUOISON" }, { - "codePostal": "79500", - "codeCommune": "79251", - "libelleAcheminement": "MARCILLE", - "nomCommune": "MARCILLE" + "codePostal": "67470", + "codeCommune": "67305", + "libelleAcheminement": "MOTHERN", + "nomCommune": "MOTHERN" }, { - "codePostal": "80500", - "codeCommune": "80541", - "libelleAcheminement": "MESNIL ST GEORGES", - "nomCommune": "MESNIL ST GEORGES" + "codePostal": "69700", + "codeCommune": "69080", + "libelleAcheminement": "ECHALAS", + "nomCommune": "ECHALAS" }, { - "codePostal": "74440", - "codeCommune": "74183", - "libelleAcheminement": "MIEUSSY", - "nomCommune": "MIEUSSY" + "codePostal": "80520", + "codeCommune": "80527", + "libelleAcheminement": "MENESLIES", + "nomCommune": "MENESLIES" }, { - "codePostal": "24390", - "codeCommune": "24202", - "libelleAcheminement": "GRANGES D ANS", - "nomCommune": "GRANGES D ANS" + "codePostal": "70400", + "codeCommune": "70484", + "libelleAcheminement": "SECENANS", + "nomCommune": "SECENANS" }, { - "codePostal": "79210", - "codeCommune": "79254", - "libelleAcheminement": "ST GEORGES DE REX", - "nomCommune": "ST GEORGES DE REX" + "codePostal": "80370", + "codeCommune": "80440", + "libelleAcheminement": "HIERMONT", + "nomCommune": "HIERMONT" }, { - "codePostal": "80270", - "codeCommune": "80543", - "libelleAcheminement": "METIGNY", - "nomCommune": "METIGNY" + "codePostal": "67220", + "codeCommune": "67320", + "libelleAcheminement": "NEUVE EGLISE", + "nomCommune": "NEUVE EGLISE" }, { - "codePostal": "74560", - "codeCommune": "74185", - "libelleAcheminement": "MONNETIER MORNEX", - "nomCommune": "MONNETIER MORNEX" + "codePostal": "69700", + "codeCommune": "69080", + "libelleAcheminement": "ECHALAS", + "nomCommune": "ECHALAS" }, { - "codePostal": "24110", - "codeCommune": "24205", - "libelleAcheminement": "GRIGNOLS", - "nomCommune": "GRIGNOLS" + "codePostal": "80290", + "codeCommune": "80528", + "libelleAcheminement": "MEREAUCOURT", + "nomCommune": "MEREAUCOURT" }, { - "codePostal": "79100", - "codeCommune": "79265", - "libelleAcheminement": "ST LEGER DE MONTBRUN", - "nomCommune": "ST LEGER DE MONTBRUN" + "codePostal": "70130", + "codeCommune": "70491", + "libelleAcheminement": "SEVEUX MOTEY", + "nomCommune": "SEVEUX MOTEY" }, { - "codePostal": "80110", - "codeCommune": "80545", - "libelleAcheminement": "MEZIERES EN SANTERRE", - "nomCommune": "MEZIERES EN SANTERRE" + "codePostal": "80400", + "codeCommune": "80442", + "libelleAcheminement": "HOMBLEUX", + "nomCommune": "HOMBLEUX" }, { - "codePostal": "74440", - "codeCommune": "74190", - "libelleAcheminement": "MORILLON", - "nomCommune": "MORILLON" + "codePostal": "67130", + "codeCommune": "67321", + "libelleAcheminement": "NEUVILLER LA ROCHE", + "nomCommune": "NEUVILLER LA ROCHE" }, { - "codePostal": "24390", - "codeCommune": "24210", - "libelleAcheminement": "HAUTEFORT", - "nomCommune": "HAUTEFORT" + "codePostal": "69210", + "codeCommune": "69086", + "libelleAcheminement": "FLEURIEUX SUR L ARBRESLE", + "nomCommune": "FLEURIEUX SUR L ARBRESLE" }, { - "codePostal": "79600", - "codeCommune": "79268", - "libelleAcheminement": "ST LOUP LAMAIRE", - "nomCommune": "ST LOUP LAMAIRE" + "codePostal": "80490", + "codeCommune": "80529", + "libelleAcheminement": "MERELESSART", + "nomCommune": "MERELESSART" }, { - "codePostal": "80135", - "codeCommune": "80548", - "libelleAcheminement": "MILLENCOURT EN PONTHIEU", - "nomCommune": "MILLENCOURT EN PONTHIEU" + "codePostal": "70230", + "codeCommune": "70500", + "libelleAcheminement": "THIEFFRANS", + "nomCommune": "THIEFFRANS" }, { - "codePostal": "74150", - "codeCommune": "74192", - "libelleAcheminement": "MOYE", - "nomCommune": "MOYE" + "codePostal": "80640", + "codeCommune": "80443", + "libelleAcheminement": "HORNOY LE BOURG", + "nomCommune": "HORNOY LE BOURG" }, { - "codePostal": "24590", - "codeCommune": "24215", - "libelleAcheminement": "JAYAC", - "nomCommune": "JAYAC" + "codePostal": "67660", + "codeCommune": "67339", + "libelleAcheminement": "BETSCHDORF", + "nomCommune": "BETSCHDORF" }, { - "codePostal": "79220", - "codeCommune": "79284", - "libelleAcheminement": "STE OUENNE", - "nomCommune": "STE OUENNE" + "codePostal": "69620", + "codeCommune": "69090", + "libelleAcheminement": "FRONTENAS", + "nomCommune": "FRONTENAS" }, { - "codePostal": "80540", - "codeCommune": "80559", - "libelleAcheminement": "MONTAGNE FAYEL", - "nomCommune": "MONTAGNE FAYEL" + "codePostal": "80190", + "codeCommune": "80542", + "libelleAcheminement": "MESNIL ST NICAISE", + "nomCommune": "MESNIL ST NICAISE" }, { - "codePostal": "74300", - "codeCommune": "74196", - "libelleAcheminement": "NANCY SUR CLUSES", - "nomCommune": "NANCY SUR CLUSES" + "codePostal": "70140", + "codeCommune": "70510", + "libelleAcheminement": "VADANS", + "nomCommune": "VADANS" }, { - "codePostal": "24380", - "codeCommune": "24220", - "libelleAcheminement": "LACROPTE", - "nomCommune": "LACROPTE" + "codePostal": "80132", + "codeCommune": "80444", + "libelleAcheminement": "HUCHENNEVILLE", + "nomCommune": "HUCHENNEVILLE" }, { - "codePostal": "79310", - "codeCommune": "79285", - "libelleAcheminement": "ST PARDOUX SOUTIERS", - "nomCommune": "ST PARDOUX SOUTIERS" + "codePostal": "67360", + "codeCommune": "67341", + "libelleAcheminement": "OBERDORF SPACHBACH", + "nomCommune": "OBERDORF SPACHBACH" }, { - "codePostal": "80500", - "codeCommune": "80561", - "libelleAcheminement": "MONTDIDIER", - "nomCommune": "MONTDIDIER" + "codePostal": "69700", + "codeCommune": "69091", + "libelleAcheminement": "GIVORS", + "nomCommune": "GIVORS" }, { - "codePostal": "74380", - "codeCommune": "74197", - "libelleAcheminement": "NANGY", - "nomCommune": "NANGY" + "codePostal": "80135", + "codeCommune": "80548", + "libelleAcheminement": "MILLENCOURT EN PONTHIEU", + "nomCommune": "MILLENCOURT EN PONTHIEU" }, { - "codePostal": "24680", - "codeCommune": "24225", - "libelleAcheminement": "LAMONZIE ST MARTIN", - "nomCommune": "LAMONZIE ST MARTIN" + "codePostal": "70320", + "codeCommune": "70512", + "libelleAcheminement": "LA VAIVRE", + "nomCommune": "LA VAIVRE" }, { - "codePostal": "79700", - "codeCommune": "79289", - "libelleAcheminement": "ST PIERRE DES ECHAUBROGNES", - "nomCommune": "ST PIERRE DES ECHAUBROGNES" + "codePostal": "80430", + "codeCommune": "80450", + "libelleAcheminement": "INVAL BOIRON", + "nomCommune": "INVAL BOIRON" }, { - "codePostal": "80670", - "codeCommune": "80566", - "libelleAcheminement": "FIEFFES MONTRELET", - "nomCommune": "FIEFFES MONTRELET" + "codePostal": "67330", + "codeCommune": "67347", + "libelleAcheminement": "OBERMODERN ZUTZENDORF", + "nomCommune": "OBERMODERN ZUTZENDORF" }, { - "codePostal": "74190", - "codeCommune": "74208", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "69700", + "codeCommune": "69091", + "libelleAcheminement": "GIVORS", + "nomCommune": "GIVORS" }, { - "codePostal": "24130", - "codeCommune": "24246", - "libelleAcheminement": "LUNAS", - "nomCommune": "LUNAS" + "codePostal": "80540", + "codeCommune": "80554", + "libelleAcheminement": "MOLLIENS DREUIL", + "nomCommune": "MOLLIENS DREUIL" }, { - "codePostal": "79160", - "codeCommune": "79290", - "libelleAcheminement": "ST POMPAIN", - "nomCommune": "ST POMPAIN" + "codePostal": "70200", + "codeCommune": "70515", + "libelleAcheminement": "LE VAL DE GOUHENANS", + "nomCommune": "LE VAL DE GOUHENANS" }, { - "codePostal": "80340", - "codeCommune": "80569", - "libelleAcheminement": "MORCOURT", - "nomCommune": "MORCOURT" + "codePostal": "80800", + "codeCommune": "80463", + "libelleAcheminement": "LAMOTTE WARFUSEE", + "nomCommune": "LAMOTTE WARFUSEE" }, { - "codePostal": "74190", - "codeCommune": "74208", - "libelleAcheminement": "PASSY", - "nomCommune": "PASSY" + "codePostal": "67210", + "codeCommune": "67348", + "libelleAcheminement": "OBERNAI", + "nomCommune": "OBERNAI" }, { - "codePostal": "24320", - "codeCommune": "24247", - "libelleAcheminement": "LUSIGNAC", - "nomCommune": "LUSIGNAC" + "codePostal": "69380", + "codeCommune": "69121", + "libelleAcheminement": "LOZANNE", + "nomCommune": "LOZANNE" }, { - "codePostal": "79410", - "codeCommune": "79293", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "80200", + "codeCommune": "80557", + "libelleAcheminement": "ESTREES MONS", + "nomCommune": "ESTREES MONS" }, { - "codePostal": "80110", - "codeCommune": "80570", - "libelleAcheminement": "MOREUIL", - "nomCommune": "MOREUIL" + "codePostal": "70700", + "codeCommune": "70521", + "libelleAcheminement": "VANTOUX ET LONGEVELLE", + "nomCommune": "VANTOUX ET LONGEVELLE" }, { - "codePostal": "74600", - "codeCommune": "74219", - "libelleAcheminement": "QUINTAL", - "nomCommune": "QUINTAL" + "codePostal": "80190", + "codeCommune": "80465", + "libelleAcheminement": "LANGUEVOISIN QUIQUERY", + "nomCommune": "LANGUEVOISIN QUIQUERY" }, { - "codePostal": "24200", - "codeCommune": "24252", - "libelleAcheminement": "MARCILLAC ST QUENTIN", - "nomCommune": "MARCILLAC ST QUENTIN" + "codePostal": "67250", + "codeCommune": "67349", + "libelleAcheminement": "OBERROEDERN", + "nomCommune": "OBERROEDERN" }, { - "codePostal": "79100", - "codeCommune": "79300", - "libelleAcheminement": "STE VERGE", - "nomCommune": "STE VERGE" + "codePostal": "69480", + "codeCommune": "69126", + "libelleAcheminement": "MARCY", + "nomCommune": "MARCY" }, { - "codePostal": "80140", - "codeCommune": "80575", - "libelleAcheminement": "MOUFLIERES", - "nomCommune": "MOUFLIERES" + "codePostal": "80260", + "codeCommune": "80562", + "libelleAcheminement": "MONTIGNY SUR L HALLUE", + "nomCommune": "MONTIGNY SUR L HALLUE" }, { - "codePostal": "74490", - "codeCommune": "74241", - "libelleAcheminement": "ST JEOIRE EN FAUCIGNY", - "nomCommune": "ST JEOIRE" + "codePostal": "70600", + "codeCommune": "70523", + "libelleAcheminement": "VARS", + "nomCommune": "VARS" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "80560", + "codeCommune": "80470", + "libelleAcheminement": "LEALVILLERS", + "nomCommune": "LEALVILLERS" }, { - "codePostal": "79270", - "codeCommune": "79304", - "libelleAcheminement": "SANSAIS", - "nomCommune": "SANSAIS" + "codePostal": "67520", + "codeCommune": "67354", + "libelleAcheminement": "ODRATZHEIM", + "nomCommune": "ODRATZHEIM" }, { - "codePostal": "80190", - "codeCommune": "80585", - "libelleAcheminement": "NESLE", - "nomCommune": "NESLE" + "codePostal": "69280", + "codeCommune": "69127", + "libelleAcheminement": "MARCY L ETOILE", + "nomCommune": "MARCY L ETOILE" }, { - "codePostal": "74800", - "codeCommune": "74253", - "libelleAcheminement": "ST SIXT", - "nomCommune": "ST SIXT" + "codePostal": "80370", + "codeCommune": "80563", + "libelleAcheminement": "MONTIGNY LES JONGLEURS", + "nomCommune": "MONTIGNY LES JONGLEURS" }, { - "codePostal": "24340", - "codeCommune": "24253", - "libelleAcheminement": "MAREUIL EN PERIGORD", - "nomCommune": "MAREUIL EN PERIGORD" + "codePostal": "70100", + "codeCommune": "70528", + "libelleAcheminement": "VELESMES ECHEVANNE", + "nomCommune": "VELESMES ECHEVANNE" }, { - "codePostal": "79120", - "codeCommune": "79313", - "libelleAcheminement": "SEPVRET", - "nomCommune": "SEPVRET" + "codePostal": "80160", + "codeCommune": "80485", + "libelleAcheminement": "O DE SELLE", + "nomCommune": "O DE SELLE" }, { - "codePostal": "80140", - "codeCommune": "80587", - "libelleAcheminement": "NESLETTE", - "nomCommune": "NESLETTE" + "codePostal": "67970", + "codeCommune": "67355", + "libelleAcheminement": "OERMINGEN", + "nomCommune": "OERMINGEN" }, { - "codePostal": "74540", - "codeCommune": "74254", - "libelleAcheminement": "ST SYLVESTRE", - "nomCommune": "ST SYLVESTRE" + "codePostal": "69550", + "codeCommune": "69130", + "libelleAcheminement": "MEAUX LA MONTAGNE", + "nomCommune": "MEAUX LA MONTAGNE" }, { - "codePostal": "24150", - "codeCommune": "24260", - "libelleAcheminement": "MAUZAC ET GRAND CASTANG", - "nomCommune": "MAUZAC ET GRAND CASTANG" + "codePostal": "80140", + "codeCommune": "80575", + "libelleAcheminement": "MOUFLIERES", + "nomCommune": "MOUFLIERES" }, { - "codePostal": "79800", - "codeCommune": "79316", - "libelleAcheminement": "SOUDAN", - "nomCommune": "SOUDAN" + "codePostal": "70100", + "codeCommune": "70529", + "libelleAcheminement": "VELET", + "nomCommune": "VELET" }, { - "codePostal": "80150", - "codeCommune": "80599", - "libelleAcheminement": "NOYELLES EN CHAUSSEE", - "nomCommune": "NOYELLES EN CHAUSSEE" + "codePostal": "80510", + "codeCommune": "80488", + "libelleAcheminement": "LONGPRE LES CORPS SAINTS", + "nomCommune": "LONGPRE LES CORPS SAINTS" }, { - "codePostal": "74700", - "codeCommune": "74256", - "libelleAcheminement": "SALLANCHES", - "nomCommune": "SALLANCHES" + "codePostal": "67350", + "codeCommune": "67372", + "libelleAcheminement": "VAL DE MODER", + "nomCommune": "VAL DE MODER" }, { - "codePostal": "24240", - "codeCommune": "24267", - "libelleAcheminement": "MESCOULES", - "nomCommune": "MESCOULES" + "codePostal": "69510", + "codeCommune": "69131", + "libelleAcheminement": "MESSIMY", + "nomCommune": "MESSIMY" }, { - "codePostal": "79100", - "codeCommune": "79329", - "libelleAcheminement": "THOUARS", - "nomCommune": "THOUARS" + "codePostal": "80400", + "codeCommune": "80579", + "libelleAcheminement": "MUILLE VILLETTE", + "nomCommune": "MUILLE VILLETTE" }, { - "codePostal": "80860", - "codeCommune": "80600", - "libelleAcheminement": "NOYELLES SUR MER", - "nomCommune": "NOYELLES SUR MER" + "codePostal": "70240", + "codeCommune": "70534", + "libelleAcheminement": "VELLEFRIE", + "nomCommune": "VELLEFRIE" }, { - "codePostal": "74520", - "codeCommune": "74260", - "libelleAcheminement": "SAVIGNY", - "nomCommune": "SAVIGNY" + "codePostal": "80330", + "codeCommune": "80489", + "libelleAcheminement": "LONGUEAU", + "nomCommune": "LONGUEAU" }, { - "codePostal": "24450", - "codeCommune": "24269", - "libelleAcheminement": "MIALET", - "nomCommune": "MIALET" + "codePostal": "67420", + "codeCommune": "67377", + "libelleAcheminement": "PLAINE", + "nomCommune": "PLAINE" }, { - "codePostal": "79100", - "codeCommune": "79329", - "libelleAcheminement": "THOUARS", - "nomCommune": "THOUARS" + "codePostal": "69390", + "codeCommune": "69133", + "libelleAcheminement": "MILLERY", + "nomCommune": "MILLERY" }, { - "codePostal": "80290", - "codeCommune": "80604", - "libelleAcheminement": "OFFIGNIES", - "nomCommune": "OFFIGNIES" + "codePostal": "80190", + "codeCommune": "80585", + "libelleAcheminement": "NESLE", + "nomCommune": "NESLE" }, { - "codePostal": "74420", - "codeCommune": "74261", - "libelleAcheminement": "SAXEL", - "nomCommune": "SAXEL" + "codePostal": "70300", + "codeCommune": "70541", + "libelleAcheminement": "VELORCEY", + "nomCommune": "VELORCEY" }, { - "codePostal": "24540", - "codeCommune": "24280", - "libelleAcheminement": "MONPAZIER", - "nomCommune": "MONPAZIER" + "codePostal": "80200", + "codeCommune": "80509", + "libelleAcheminement": "MARCHELEPOT MISERY", + "nomCommune": "MARCHELEPOT MISERY" }, { - "codePostal": "79240", - "codeCommune": "79332", - "libelleAcheminement": "TRAYES", - "nomCommune": "TRAYES" + "codePostal": "67420", + "codeCommune": "67384", + "libelleAcheminement": "RANRUPT", + "nomCommune": "RANRUPT" }, { - "codePostal": "80200", - "codeCommune": "80620", - "libelleAcheminement": "PERONNE", - "nomCommune": "PERONNE" + "codePostal": "69860", + "codeCommune": "69135", + "libelleAcheminement": "DEUX GROSNES", + "nomCommune": "DEUX GROSNES" }, { - "codePostal": "74300", - "codeCommune": "74278", - "libelleAcheminement": "THYEZ", - "nomCommune": "THYEZ" + "codePostal": "80340", + "codeCommune": "80593", + "libelleAcheminement": "LA NEUVILLE LES BRAY", + "nomCommune": "LA NEUVILLE LES BRAY" }, { - "codePostal": "24440", - "codeCommune": "24281", - "libelleAcheminement": "MONSAC", - "nomCommune": "MONSAC" + "codePostal": "70500", + "codeCommune": "70545", + "libelleAcheminement": "VENISEY", + "nomCommune": "VENISEY" }, { - "codePostal": "79270", - "codeCommune": "79337", - "libelleAcheminement": "LE VANNEAU IRLEAU", - "nomCommune": "LE VANNEAU IRLEAU" + "codePostal": "80360", + "codeCommune": "80513", + "libelleAcheminement": "MARICOURT", + "nomCommune": "MARICOURT" }, { - "codePostal": "80320", - "codeCommune": "80621", - "libelleAcheminement": "HYPERCOURT", - "nomCommune": "HYPERCOURT" + "codePostal": "67320", + "codeCommune": "67386", + "libelleAcheminement": "RAUWILLER", + "nomCommune": "RAUWILLER" }, { - "codePostal": "74370", - "codeCommune": "74282", - "libelleAcheminement": "FILLIERE", - "nomCommune": "FILLIERE" + "codePostal": "69860", + "codeCommune": "69135", + "libelleAcheminement": "DEUX GROSNES", + "nomCommune": "DEUX GROSNES" }, { - "codePostal": "24140", - "codeCommune": "24285", - "libelleAcheminement": "MONTAGNAC LA CREMPSE", - "nomCommune": "MONTAGNAC LA CREMPSE" + "codePostal": "80140", + "codeCommune": "80606", + "libelleAcheminement": "OISEMONT", + "nomCommune": "OISEMONT" }, { - "codePostal": "79170", - "codeCommune": "79343", - "libelleAcheminement": "VERNOUX SUR BOUTONNE", - "nomCommune": "VERNOUX SUR BOUTONNE" + "codePostal": "70180", + "codeCommune": "70546", + "libelleAcheminement": "VEREUX", + "nomCommune": "VEREUX" }, { - "codePostal": "80310", - "codeCommune": "80622", - "libelleAcheminement": "PICQUIGNY", - "nomCommune": "PICQUIGNY" + "codePostal": "80700", + "codeCommune": "80517", + "libelleAcheminement": "MARQUIVILLERS", + "nomCommune": "MARQUIVILLERS" }, { - "codePostal": "74570", - "codeCommune": "74282", - "libelleAcheminement": "FILLIERE", - "nomCommune": "FILLIERE" + "codePostal": "67340", + "codeCommune": "67392", + "libelleAcheminement": "REIPERTSWILLER", + "nomCommune": "REIPERTSWILLER" }, { - "codePostal": "24440", - "codeCommune": "24290", - "libelleAcheminement": "MONTFERRAND DU PERIGORD", - "nomCommune": "MONTFERRAND DU PERIGORD" + "codePostal": "69700", + "codeCommune": "69136", + "libelleAcheminement": "MONTAGNY", + "nomCommune": "MONTAGNY" }, { - "codePostal": "79110", - "codeCommune": "79349", - "libelleAcheminement": "VILLEMAIN", - "nomCommune": "VILLEMAIN" + "codePostal": "80700", + "codeCommune": "80617", + "libelleAcheminement": "PARVILLERS LE QUESNOY", + "nomCommune": "PARVILLERS LE QUESNOY" }, { - "codePostal": "80240", - "codeCommune": "80629", - "libelleAcheminement": "POEUILLY", - "nomCommune": "POEUILLY" + "codePostal": "70190", + "codeCommune": "70560", + "libelleAcheminement": "VILLERS BOUTON", + "nomCommune": "VILLERS BOUTON" }, { - "codePostal": "74150", - "codeCommune": "74292", - "libelleAcheminement": "VAULX", - "nomCommune": "VAULX" + "codePostal": "80400", + "codeCommune": "80519", + "libelleAcheminement": "MATIGNY", + "nomCommune": "MATIGNY" }, { - "codePostal": "24610", - "codeCommune": "24292", - "libelleAcheminement": "MONTPEYROUX", - "nomCommune": "MONTPEYROUX" + "codePostal": "67260", + "codeCommune": "67401", + "libelleAcheminement": "RIMSDORF", + "nomCommune": "RIMSDORF" }, { - "codePostal": "80210", - "codeCommune": "80008", - "libelleAcheminement": "AIGNEVILLE", - "nomCommune": "AIGNEVILLE" + "codePostal": "69250", + "codeCommune": "69153", + "libelleAcheminement": "POLEYMIEUX AU MONT D OR", + "nomCommune": "POLEYMIEUX AU MONT D OR" }, { - "codePostal": "80132", - "codeCommune": "80637", - "libelleAcheminement": "PORT LE GRAND", - "nomCommune": "PORT LE GRAND" + "codePostal": "80230", + "codeCommune": "80618", + "libelleAcheminement": "PENDE", + "nomCommune": "PENDE" }, { - "codePostal": "74150", - "codeCommune": "74297", - "libelleAcheminement": "VERSONNEX", - "nomCommune": "VERSONNEX" + "codePostal": "70110", + "codeCommune": "70562", + "libelleAcheminement": "VILLERS LA VILLE", + "nomCommune": "VILLERS LA VILLE" }, { - "codePostal": "24520", - "codeCommune": "24296", - "libelleAcheminement": "MOULEYDIER", - "nomCommune": "MOULEYDIER" + "codePostal": "80430", + "codeCommune": "80522", + "libelleAcheminement": "LE MAZIS", + "nomCommune": "LE MAZIS" }, { - "codePostal": "80130", - "codeCommune": "80018", - "libelleAcheminement": "ALLENAY", - "nomCommune": "ALLENAY" + "codePostal": "67270", + "codeCommune": "67406", + "libelleAcheminement": "ROHR", + "nomCommune": "ROHR" }, { - "codePostal": "80190", - "codeCommune": "80638", - "libelleAcheminement": "POTTE", - "nomCommune": "POTTE" + "codePostal": "69490", + "codeCommune": "69157", + "libelleAcheminement": "VINDRY SUR TURDINE", + "nomCommune": "VINDRY SUR TURDINE" }, { - "codePostal": "74100", - "codeCommune": "74305", - "libelleAcheminement": "VILLE LA GRAND", - "nomCommune": "VILLE LA GRAND" + "codePostal": "80500", + "codeCommune": "80623", + "libelleAcheminement": "PIENNES ONVILLERS", + "nomCommune": "PIENNES ONVILLERS" }, { - "codePostal": "24750", - "codeCommune": "24312", - "libelleAcheminement": "SANILHAC", - "nomCommune": "SANILHAC" + "codePostal": "70000", + "codeCommune": "70563", + "libelleAcheminement": "VILLERS LE SEC", + "nomCommune": "VILLERS LE SEC" }, { - "codePostal": "80080", - "codeCommune": "80021", - "libelleAcheminement": "AMIENS", - "nomCommune": "AMIENS" + "codePostal": "80290", + "codeCommune": "80525", + "libelleAcheminement": "MEIGNEUX", + "nomCommune": "MEIGNEUX" }, { - "codePostal": "80260", - "codeCommune": "80639", - "libelleAcheminement": "POULAINVILLE", - "nomCommune": "POULAINVILLE" + "codePostal": "67560", + "codeCommune": "67411", + "libelleAcheminement": "ROSHEIM", + "nomCommune": "ROSHEIM" }, { - "codePostal": "74350", - "codeCommune": "74307", - "libelleAcheminement": "VILLY LE PELLOUX", - "nomCommune": "VILLY LE PELLOUX" + "codePostal": "69400", + "codeCommune": "69159", + "libelleAcheminement": "PORTE DES PIERRES DOREES", + "nomCommune": "PORTE DES PIERRES DOREES" }, { - "codePostal": "24510", - "codeCommune": "24318", - "libelleAcheminement": "PAUNAT", - "nomCommune": "PAUNAT" + "codePostal": "80160", + "codeCommune": "80627", + "libelleAcheminement": "PLACHY BUYON", + "nomCommune": "PLACHY BUYON" }, { - "codePostal": "80820", - "codeCommune": "80029", - "libelleAcheminement": "ARREST", - "nomCommune": "ARREST" + "codePostal": "70190", + "codeCommune": "70565", + "libelleAcheminement": "VILLERS PATER", + "nomCommune": "VILLERS PATER" }, { - "codePostal": "80560", - "codeCommune": "80645", - "libelleAcheminement": "PUCHEVILLERS", - "nomCommune": "PUCHEVILLERS" + "codePostal": "80350", + "codeCommune": "80533", + "libelleAcheminement": "MERS LES BAINS", + "nomCommune": "MERS LES BAINS" }, { - "codePostal": "74580", - "codeCommune": "74309", - "libelleAcheminement": "VIRY", - "nomCommune": "VIRY" + "codePostal": "67130", + "codeCommune": "67420", + "libelleAcheminement": "RUSS", + "nomCommune": "RUSS" }, { - "codePostal": "24310", - "codeCommune": "24319", - "libelleAcheminement": "PAUSSAC ET ST VIVIEN", - "nomCommune": "PAUSSAC ET ST VIVIEN" + "codePostal": "69790", + "codeCommune": "69161", + "libelleAcheminement": "PROPIERES", + "nomCommune": "PROPIERES" }, { - "codePostal": "80460", - "codeCommune": "80039", - "libelleAcheminement": "AULT", - "nomCommune": "AULT" + "codePostal": "80290", + "codeCommune": "80630", + "libelleAcheminement": "POIX DE PICARDIE", + "nomCommune": "POIX DE PICARDIE" }, { - "codePostal": "80320", - "codeCommune": "80646", - "libelleAcheminement": "PUNCHY", - "nomCommune": "PUNCHY" + "codePostal": "70190", + "codeCommune": "70575", + "libelleAcheminement": "VORAY SUR L OGNON", + "nomCommune": "VORAY SUR L OGNON" }, { - "codePostal": "74540", - "codeCommune": "74310", - "libelleAcheminement": "VIUZ LA CHIESAZ", - "nomCommune": "VIUZ LA CHIESAZ" + "codePostal": "80270", + "codeCommune": "80543", + "libelleAcheminement": "METIGNY", + "nomCommune": "METIGNY" }, { - "codePostal": "24600", - "codeCommune": "24323", - "libelleAcheminement": "PETIT BERSAC", - "nomCommune": "PETIT BERSAC" + "codePostal": "67390", + "codeCommune": "67422", + "libelleAcheminement": "SAASENHEIM", + "nomCommune": "SAASENHEIM" }, { - "codePostal": "80600", - "codeCommune": "80042", - "libelleAcheminement": "AUTHEUX", - "nomCommune": "AUTHEUX" + "codePostal": "69460", + "codeCommune": "69172", + "libelleAcheminement": "SALLES ARBUISSONNAS BEAUJOLAIS", + "nomCommune": "SALLES ARBUISSONNAS EN BEAUJOLAIS" }, { - "codePostal": "80430", - "codeCommune": "80651", - "libelleAcheminement": "LE QUESNE", - "nomCommune": "LE QUESNE" + "codePostal": "80115", + "codeCommune": "80634", + "libelleAcheminement": "PONT NOYELLES", + "nomCommune": "PONT NOYELLES" }, { - "codePostal": "74250", - "codeCommune": "74311", - "libelleAcheminement": "VIUZ EN SALLAZ", - "nomCommune": "VIUZ EN SALLAZ" + "codePostal": "70400", + "codeCommune": "70579", + "libelleAcheminement": "VYANS LE VAL", + "nomCommune": "VYANS LE VAL" }, { - "codePostal": "24580", - "codeCommune": "24330", - "libelleAcheminement": "PLAZAC", - "nomCommune": "PLAZAC" + "codePostal": "80200", + "codeCommune": "80552", + "libelleAcheminement": "MOISLAINS", + "nomCommune": "MOISLAINS" }, { - "codePostal": "80700", - "codeCommune": "80053", - "libelleAcheminement": "BALATRE", - "nomCommune": "BALATRE" + "codePostal": "67160", + "codeCommune": "67432", + "libelleAcheminement": "SALMBACH", + "nomCommune": "SALMBACH" }, { - "codePostal": "80400", - "codeCommune": "80658", - "libelleAcheminement": "QUIVIERES", - "nomCommune": "QUIVIERES" + "codePostal": "69170", + "codeCommune": "69174", + "libelleAcheminement": "LES SAUVAGES", + "nomCommune": "LES SAUVAGES" }, { - "codePostal": "74140", - "codeCommune": "74315", - "libelleAcheminement": "YVOIRE", - "nomCommune": "YVOIRE" + "codePostal": "80300", + "codeCommune": "80640", + "libelleAcheminement": "POZIERES", + "nomCommune": "POZIERES" }, { - "codePostal": "24240", - "codeCommune": "24331", - "libelleAcheminement": "POMPORT", - "nomCommune": "POMPORT" + "codePostal": "70130", + "codeCommune": "70580", + "libelleAcheminement": "VY LE FERROUX", + "nomCommune": "VY LE FERROUX" }, { - "codePostal": "80260", - "codeCommune": "80056", - "libelleAcheminement": "BAVELINCOURT", - "nomCommune": "BAVELINCOURT" + "codePostal": "80200", + "codeCommune": "80555", + "libelleAcheminement": "MONCHY LAGACHE", + "nomCommune": "MONCHY LAGACHE" }, { - "codePostal": "80600", - "codeCommune": "80659", - "libelleAcheminement": "RAINCHEVAL", - "nomCommune": "RAINCHEVAL" + "codePostal": "67260", + "codeCommune": "67435", + "libelleAcheminement": "SARREWERDEN", + "nomCommune": "SARREWERDEN" }, { - "codePostal": "75002", - "codeCommune": "75102", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 02" + "codePostal": "69210", + "codeCommune": "69177", + "libelleAcheminement": "SOURCIEUX LES MINES", + "nomCommune": "SOURCIEUX LES MINES" }, { - "codePostal": "24530", - "codeCommune": "24346", - "libelleAcheminement": "QUINSAC", - "nomCommune": "QUINSAC" + "codePostal": "80320", + "codeCommune": "80647", + "libelleAcheminement": "PUZEAUX", + "nomCommune": "PUZEAUX" }, { - "codePostal": "80300", - "codeCommune": "80059", - "libelleAcheminement": "BAZENTIN", - "nomCommune": "BAZENTIN" + "codePostal": "70230", + "codeCommune": "70583", + "libelleAcheminement": "VY LES FILAIN", + "nomCommune": "VY LES FILAIN" }, { - "codePostal": "80140", - "codeCommune": "80662", - "libelleAcheminement": "RAMBURELLES", - "nomCommune": "RAMBURELLES" + "codePostal": "80210", + "codeCommune": "80556", + "libelleAcheminement": "MONS BOUBERT", + "nomCommune": "MONS BOUBERT" }, { - "codePostal": "75003", - "codeCommune": "75103", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 03" + "codePostal": "67260", + "codeCommune": "67435", + "libelleAcheminement": "SARREWERDEN", + "nomCommune": "SARREWERDEN" }, { - "codePostal": "24440", - "codeCommune": "24347", - "libelleAcheminement": "RAMPIEUX", - "nomCommune": "RAMPIEUX" + "codePostal": "69440", + "codeCommune": "69184", + "libelleAcheminement": "STE CATHERINE", + "nomCommune": "STE CATHERINE" }, { - "codePostal": "80300", - "codeCommune": "80069", - "libelleAcheminement": "BEAUMONT HAMEL", - "nomCommune": "BEAUMONT HAMEL" + "codePostal": "80115", + "codeCommune": "80650", + "libelleAcheminement": "QUERRIEU", + "nomCommune": "QUERRIEU" }, { - "codePostal": "80120", - "codeCommune": "80665", - "libelleAcheminement": "REGNIERE ECLUSE", - "nomCommune": "REGNIERE ECLUSE" + "codePostal": "71550", + "codeCommune": "71009", + "libelleAcheminement": "ANOST", + "nomCommune": "ANOST" }, { - "codePostal": "75008", - "codeCommune": "75108", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 08" + "codePostal": "80200", + "codeCommune": "80557", + "libelleAcheminement": "ESTREES MONS", + "nomCommune": "ESTREES MONS" }, { - "codePostal": "24250", - "codeCommune": "24355", - "libelleAcheminement": "LA ROQUE GAGEAC", - "nomCommune": "LA ROQUE GAGEAC" + "codePostal": "67270", + "codeCommune": "67444", + "libelleAcheminement": "SCHERLENHEIM", + "nomCommune": "SCHERLENHEIM" }, { - "codePostal": "80160", - "codeCommune": "80079", - "libelleAcheminement": "BELLEUSE", - "nomCommune": "BELLEUSE" + "codePostal": "69440", + "codeCommune": "69184", + "libelleAcheminement": "STE CATHERINE", + "nomCommune": "STE CATHERINE" }, { - "codePostal": "80160", - "codeCommune": "80675", - "libelleAcheminement": "ROGY", - "nomCommune": "ROGY" + "codePostal": "80540", + "codeCommune": "80670", + "libelleAcheminement": "REVELLES", + "nomCommune": "REVELLES" }, { - "codePostal": "75014", - "codeCommune": "75114", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 14" + "codePostal": "71270", + "codeCommune": "71013", + "libelleAcheminement": "AUTHUMES", + "nomCommune": "AUTHUMES" }, { - "codePostal": "24380", - "codeCommune": "24362", - "libelleAcheminement": "VAL DE LOUYRE ET CAUDEAU", - "nomCommune": "VAL DE LOUYRE ET CAUDEAU" + "codePostal": "80300", + "codeCommune": "80560", + "libelleAcheminement": "MONTAUBAN DE PICARDIE", + "nomCommune": "MONTAUBAN DE PICARDIE" }, { - "codePostal": "80370", - "codeCommune": "80086", - "libelleAcheminement": "BERNAVILLE", - "nomCommune": "BERNAVILLE" + "codePostal": "67240", + "codeCommune": "67449", + "libelleAcheminement": "SCHIRRHEIN", + "nomCommune": "SCHIRRHEIN" }, { - "codePostal": "80740", - "codeCommune": "80679", - "libelleAcheminement": "LE RONSSOY", - "nomCommune": "RONSSOY" + "codePostal": "69790", + "codeCommune": "69186", + "libelleAcheminement": "ST CLEMENT DE VERS", + "nomCommune": "ST CLEMENT DE VERS" }, { - "codePostal": "75016", - "codeCommune": "75116", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 16" + "codePostal": "80700", + "codeCommune": "80676", + "libelleAcheminement": "ROIGLISE", + "nomCommune": "ROIGLISE" }, { - "codePostal": "24110", - "codeCommune": "24372", - "libelleAcheminement": "ST ASTIER", - "nomCommune": "ST ASTIER" + "codePostal": "71400", + "codeCommune": "71015", + "libelleAcheminement": "AUXY", + "nomCommune": "AUXY" }, { - "codePostal": "80110", - "codeCommune": "80094", - "libelleAcheminement": "BERTEAUCOURT LES THENNES", - "nomCommune": "BERTEAUCOURT LES THENNES" + "codePostal": "80340", + "codeCommune": "80569", + "libelleAcheminement": "MORCOURT", + "nomCommune": "MORCOURT" }, { - "codePostal": "80970", - "codeCommune": "80692", - "libelleAcheminement": "SAILLY FLIBEAUCOURT", - "nomCommune": "SAILLY FLIBEAUCOURT" + "codePostal": "67370", + "codeCommune": "67452", + "libelleAcheminement": "SCHNERSHEIM", + "nomCommune": "SCHNERSHEIM" }, { - "codePostal": "75017", - "codeCommune": "75117", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 17" + "codePostal": "69280", + "codeCommune": "69190", + "libelleAcheminement": "STE CONSORCE", + "nomCommune": "STE CONSORCE" }, { - "codePostal": "24560", - "codeCommune": "24374", - "libelleAcheminement": "ST AUBIN DE LANQUAIS", - "nomCommune": "ST AUBIN DE LANQUAIS" + "codePostal": "80500", + "codeCommune": "80678", + "libelleAcheminement": "ROLLOT", + "nomCommune": "ROLLOT" }, { - "codePostal": "80130", - "codeCommune": "80096", - "libelleAcheminement": "BETHENCOURT SUR MER", - "nomCommune": "BETHENCOURT SUR MER" + "codePostal": "71270", + "codeCommune": "71029", + "libelleAcheminement": "BELLEVESVRE", + "nomCommune": "BELLEVESVRE" }, { - "codePostal": "80960", - "codeCommune": "80700", - "libelleAcheminement": "ST BLIMONT", - "nomCommune": "ST BLIMONT" + "codePostal": "80300", + "codeCommune": "80572", + "libelleAcheminement": "MORLANCOURT", + "nomCommune": "MORLANCOURT" }, { - "codePostal": "75019", - "codeCommune": "75119", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 19" + "codePostal": "67260", + "codeCommune": "67456", + "libelleAcheminement": "SCHOPPERTEN", + "nomCommune": "SCHOPPERTEN" }, { - "codePostal": "24250", - "codeCommune": "24375", - "libelleAcheminement": "ST AUBIN DE NABIRAT", - "nomCommune": "ST AUBIN DE NABIRAT" + "codePostal": "69490", + "codeCommune": "69200", + "libelleAcheminement": "ST FORGEUX", + "nomCommune": "ST FORGEUX" }, { - "codePostal": "80610", - "codeCommune": "80100", - "libelleAcheminement": "BETTENCOURT ST OUEN", - "nomCommune": "BETTENCOURT ST OUEN" + "codePostal": "80190", + "codeCommune": "80683", + "libelleAcheminement": "ROUY LE GRAND", + "nomCommune": "ROUY LE GRAND" }, { - "codePostal": "80680", - "codeCommune": "80702", - "libelleAcheminement": "ST FUSCIEN", - "nomCommune": "ST FUSCIEN" + "codePostal": "71800", + "codeCommune": "71041", + "libelleAcheminement": "BOIS STE MARIE", + "nomCommune": "BOIS STE MARIE" }, { - "codePostal": "76640", - "codeCommune": "76002", - "libelleAcheminement": "ALVIMARE", - "nomCommune": "ALVIMARE" + "codePostal": "80870", + "codeCommune": "80578", + "libelleAcheminement": "MOYENNEVILLE", + "nomCommune": "MOYENNEVILLE" }, { - "codePostal": "24260", - "codeCommune": "24377", - "libelleAcheminement": "ST AVIT DE VIALARD", - "nomCommune": "ST AVIT DE VIALARD" + "codePostal": "67440", + "codeCommune": "67459", + "libelleAcheminement": "SCHWENHEIM", + "nomCommune": "SCHWENHEIM" }, { - "codePostal": "80290", - "codeCommune": "80106", - "libelleAcheminement": "BLANGY SOUS POIX", - "nomCommune": "BLANGY SOUS POIX" + "codePostal": "69610", + "codeCommune": "69201", + "libelleAcheminement": "STE FOY L ARGENTIERE", + "nomCommune": "STE FOY L ARGENTIERE" }, { - "codePostal": "80430", - "codeCommune": "80703", - "libelleAcheminement": "ST GERMAIN SUR BRESLE", - "nomCommune": "ST GERMAIN SUR BRESLE" + "codePostal": "80700", + "codeCommune": "80685", + "libelleAcheminement": "ROYE", + "nomCommune": "ROYE" }, { - "codePostal": "76920", - "codeCommune": "76005", - "libelleAcheminement": "AMFREVILLE LA MI VOIE", - "nomCommune": "AMFREVILLE LA MI VOIE" + "codePostal": "71110", + "codeCommune": "71048", + "libelleAcheminement": "BOURG LE COMTE", + "nomCommune": "BOURG LE COMTE" }, { - "codePostal": "24590", - "codeCommune": "24392", - "libelleAcheminement": "ST CREPIN ET CARLUCET", - "nomCommune": "ST CREPIN ET CARLUCET" + "codePostal": "80290", + "codeCommune": "80582", + "libelleAcheminement": "NAMPS MAISNIL", + "nomCommune": "NAMPS MAISNIL" }, { - "codePostal": "80600", - "codeCommune": "80108", - "libelleAcheminement": "BOISBERGUES", - "nomCommune": "BOISBERGUES" + "codePostal": "67260", + "codeCommune": "67468", + "libelleAcheminement": "SILTZHEIM", + "nomCommune": "SILTZHEIM" }, { - "codePostal": "80700", - "codeCommune": "80708", - "libelleAcheminement": "ST MARD", - "nomCommune": "ST MARD" + "codePostal": "69230", + "codeCommune": "69204", + "libelleAcheminement": "ST GENIS LAVAL", + "nomCommune": "ST GENIS LAVAL" }, { - "codePostal": "76560", - "codeCommune": "76009", - "libelleAcheminement": "ANCOURTEVILLE SUR HERICOURT", - "nomCommune": "ANCOURTEVILLE SUR HERICOURT" + "codePostal": "80260", + "codeCommune": "80686", + "libelleAcheminement": "RUBEMPRE", + "nomCommune": "RUBEMPRE" }, { - "codePostal": "24270", - "codeCommune": "24397", - "libelleAcheminement": "ST CYR LES CHAMPAGNES", - "nomCommune": "ST CYR LES CHAMPAGNES" + "codePostal": "71350", + "codeCommune": "71054", + "libelleAcheminement": "BRAGNY SUR SAONE", + "nomCommune": "BRAGNY SUR SAONE" }, { "codePostal": "80160", - "codeCommune": "80114", - "libelleAcheminement": "LE BOSQUEL", - "nomCommune": "BOSQUEL" + "codeCommune": "80583", + "libelleAcheminement": "NAMPTY", + "nomCommune": "NAMPTY" }, { - "codePostal": "80470", - "codeCommune": "80718", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "67770", + "codeCommune": "67476", + "libelleAcheminement": "STATTMATTEN", + "nomCommune": "STATTMATTEN" }, { - "codePostal": "76760", - "codeCommune": "76010", - "libelleAcheminement": "ANCRETIEVILLE ST VICTOR", - "nomCommune": "ANCRETIEVILLE ST VICTOR" + "codePostal": "69790", + "codeCommune": "69209", + "libelleAcheminement": "ST IGNY DE VERS", + "nomCommune": "ST IGNY DE VERS" }, { - "codePostal": "24170", - "codeCommune": "24406", - "libelleAcheminement": "STE FOY DE BELVES", - "nomCommune": "STE FOY DE BELVES" + "codePostal": "80800", + "codeCommune": "80693", + "libelleAcheminement": "SAILLY LAURETTE", + "nomCommune": "SAILLY LAURETTE" }, { - "codePostal": "80310", - "codeCommune": "80123", - "libelleAcheminement": "BOURDON", - "nomCommune": "BOURDON" + "codePostal": "71110", + "codeCommune": "71060", + "libelleAcheminement": "BRIANT", + "nomCommune": "BRIANT" }, { - "codePostal": "80480", - "codeCommune": "80724", - "libelleAcheminement": "SALEUX", - "nomCommune": "SALEUX" + "codePostal": "80140", + "codeCommune": "80591", + "libelleAcheminement": "NEUVILLE AU BOIS", + "nomCommune": "NEUVILLE AU BOIS" }, { - "codePostal": "76480", - "codeCommune": "76020", - "libelleAcheminement": "ANNEVILLE AMBOURVILLE", - "nomCommune": "ANNEVILLE AMBOURVILLE" + "codePostal": "67440", + "codeCommune": "67489", + "libelleAcheminement": "THAL MARMOUTIER", + "nomCommune": "THAL MARMOUTIER" }, { - "codePostal": "24700", - "codeCommune": "24415", - "libelleAcheminement": "ST GERAUD DE CORPS", - "nomCommune": "ST GERAUD DE CORPS" + "codePostal": "69850", + "codeCommune": "69227", + "libelleAcheminement": "ST MARTIN EN HAUT", + "nomCommune": "ST MARTIN EN HAUT" }, { - "codePostal": "80500", - "codeCommune": "80125", - "libelleAcheminement": "BOUSSICOURT", - "nomCommune": "BOUSSICOURT" + "codePostal": "80360", + "codeCommune": "80695", + "libelleAcheminement": "SAILLY SAILLISEL", + "nomCommune": "SAILLY SAILLISEL" }, { - "codePostal": "80160", - "codeCommune": "80734", - "libelleAcheminement": "SENTELIE", - "nomCommune": "SENTELIE" + "codePostal": "71960", + "codeCommune": "71069", + "libelleAcheminement": "BUSSIERES", + "nomCommune": "BUSSIERES" }, { - "codePostal": "76110", - "codeCommune": "76033", - "libelleAcheminement": "AUBERVILLE LA RENAULT", - "nomCommune": "AUBERVILLE LA RENAULT" + "codePostal": "80430", + "codeCommune": "80592", + "libelleAcheminement": "NEUVILLE COPPEGUEULE", + "nomCommune": "NEUVILLE COPPEGUEULE" }, { - "codePostal": "24170", - "codeCommune": "24416", - "libelleAcheminement": "ST GERMAIN DE BELVES", - "nomCommune": "ST GERMAIN DE BELVES" + "codePostal": "67440", + "codeCommune": "67489", + "libelleAcheminement": "THAL MARMOUTIER", + "nomCommune": "THAL MARMOUTIER" }, { - "codePostal": "80200", - "codeCommune": "80128", - "libelleAcheminement": "BOUVINCOURT EN VERMANDOIS", - "nomCommune": "BOUVINCOURT EN VERMANDOIS" + "codePostal": "69440", + "codeCommune": "69228", + "libelleAcheminement": "CHABANIERE", + "nomCommune": "CHABANIERE" }, { - "codePostal": "80250", - "codeCommune": "80740", - "libelleAcheminement": "SOURDON", - "nomCommune": "SOURDON" + "codePostal": "80140", + "codeCommune": "80710", + "libelleAcheminement": "ST MAXENT", + "nomCommune": "ST MAXENT" }, { - "codePostal": "76190", - "codeCommune": "76043", - "libelleAcheminement": "AUZEBOSC", - "nomCommune": "AUZEBOSC" + "codePostal": "71110", + "codeCommune": "71077", + "libelleAcheminement": "CHAMBILLY", + "nomCommune": "CHAMBILLY" }, { - "codePostal": "24520", - "codeCommune": "24419", - "libelleAcheminement": "ST GERMAIN ET MONS", - "nomCommune": "ST GERMAIN ET MONS" + "codePostal": "80150", + "codeCommune": "80599", + "libelleAcheminement": "NOYELLES EN CHAUSSEE", + "nomCommune": "NOYELLES EN CHAUSSEE" }, { - "codePostal": "80110", - "codeCommune": "80132", - "libelleAcheminement": "BRACHES", - "nomCommune": "BRACHES" + "codePostal": "67370", + "codeCommune": "67495", + "libelleAcheminement": "TRUCHTERSHEIM", + "nomCommune": "TRUCHTERSHEIM" }, { - "codePostal": "80600", - "codeCommune": "80749", - "libelleAcheminement": "TERRAMESNIL", - "nomCommune": "TERRAMESNIL" + "codePostal": "69620", + "codeCommune": "69239", + "libelleAcheminement": "ST VERAND", + "nomCommune": "ST VERAND" }, { - "codePostal": "76730", - "codeCommune": "76047", - "libelleAcheminement": "AUZOUVILLE SUR SAANE", - "nomCommune": "AUZOUVILLE SUR SAANE" + "codePostal": "80310", + "codeCommune": "80722", + "libelleAcheminement": "ST VAAST EN CHAUSSEE", + "nomCommune": "ST VAAST EN CHAUSSEE" }, { - "codePostal": "24400", - "codeCommune": "24420", - "libelleAcheminement": "ST GERY", - "nomCommune": "ST GERY" + "codePostal": "71510", + "codeCommune": "71078", + "libelleAcheminement": "CHAMILLY", + "nomCommune": "CHAMILLY" }, { - "codePostal": "80160", - "codeCommune": "80134", - "libelleAcheminement": "BRASSY", - "nomCommune": "BRASSY" + "codePostal": "80210", + "codeCommune": "80603", + "libelleAcheminement": "OCHANCOURT", + "nomCommune": "OCHANCOURT" }, { - "codePostal": "80110", - "codeCommune": "80751", - "libelleAcheminement": "THENNES", - "nomCommune": "THENNES" + "codePostal": "67330", + "codeCommune": "67503", + "libelleAcheminement": "UTTWILLER", + "nomCommune": "UTTWILLER" }, { - "codePostal": "76660", - "codeCommune": "76052", - "libelleAcheminement": "BAILLEUL NEUVILLE", - "nomCommune": "BAILLEUL NEUVILLE" + "codePostal": "69240", + "codeCommune": "69240", + "libelleAcheminement": "ST VINCENT DE REINS", + "nomCommune": "ST VINCENT DE REINS" }, { - "codePostal": "24140", - "codeCommune": "24422", - "libelleAcheminement": "ST HILAIRE D ESTISSAC", - "nomCommune": "ST HILAIRE D ESTISSAC" + "codePostal": "80480", + "codeCommune": "80725", + "libelleAcheminement": "SALOUEL", + "nomCommune": "SALOUEL" }, { - "codePostal": "80580", - "codeCommune": "80135", - "libelleAcheminement": "BRAY LES MAREUIL", - "nomCommune": "BRAY LES MAREUIL" + "codePostal": "71480", + "codeCommune": "71079", + "libelleAcheminement": "CHAMPAGNAT", + "nomCommune": "CHAMPAGNAT" }, { - "codePostal": "80240", - "codeCommune": "80762", - "libelleAcheminement": "TINCOURT BOUCLY", - "nomCommune": "TINCOURT BOUCLY" + "codePostal": "80400", + "codeCommune": "80605", + "libelleAcheminement": "OFFOY", + "nomCommune": "OFFOY" }, { - "codePostal": "76360", - "codeCommune": "76057", - "libelleAcheminement": "BARENTIN", - "nomCommune": "BARENTIN" + "codePostal": "67290", + "codeCommune": "67509", + "libelleAcheminement": "VOLKSBERG", + "nomCommune": "VOLKSBERG" }, { - "codePostal": "24500", - "codeCommune": "24423", - "libelleAcheminement": "ST JULIEN INNOCENCE EULALIE", - "nomCommune": "ST JULIEN INNOCENCE EULALIE" + "codePostal": "69440", + "codeCommune": "69241", + "libelleAcheminement": "TALUYERS", + "nomCommune": "TALUYERS" }, { - "codePostal": "80470", - "codeCommune": "80137", - "libelleAcheminement": "BREILLY", - "nomCommune": "BREILLY" + "codePostal": "80140", + "codeCommune": "80732", + "libelleAcheminement": "SENARPONT", + "nomCommune": "SENARPONT" }, { - "codePostal": "80400", - "codeCommune": "80771", - "libelleAcheminement": "UGNY L EQUIPEE", - "nomCommune": "UGNY L EQUIPEE" + "codePostal": "71570", + "codeCommune": "71084", + "libelleAcheminement": "CHANES", + "nomCommune": "CHANES" }, { - "codePostal": "76440", - "codeCommune": "76060", - "libelleAcheminement": "BEAUBEC LA ROSIERE", - "nomCommune": "BEAUBEC LA ROSIERE" + "codePostal": "80135", + "codeCommune": "80609", + "libelleAcheminement": "ONEUX", + "nomCommune": "ONEUX" }, { - "codePostal": "24400", - "codeCommune": "24436", - "libelleAcheminement": "ST LAURENT DES HOMMES", - "nomCommune": "ST LAURENT DES HOMMES" + "codePostal": "67130", + "codeCommune": "67513", + "libelleAcheminement": "WALDERSBACH", + "nomCommune": "WALDERSBACH" }, { - "codePostal": "80700", - "codeCommune": "80152", - "libelleAcheminement": "BUS LA MESIERE", - "nomCommune": "BUS LA MESIERE" + "codePostal": "69420", + "codeCommune": "69253", + "libelleAcheminement": "TUPIN ET SEMONS", + "nomCommune": "TUPIN ET SEMONS" }, { - "codePostal": "80230", - "codeCommune": "80780", - "libelleAcheminement": "VAUDRICOURT", - "nomCommune": "VAUDRICOURT" + "codePostal": "80160", + "codeCommune": "80734", + "libelleAcheminement": "SENTELIE", + "nomCommune": "SENTELIE" }, { - "codePostal": "76850", - "codeCommune": "76062", - "libelleAcheminement": "BEAUMONT LE HARENG", - "nomCommune": "BEAUMONT LE HARENG" + "codePostal": "71700", + "codeCommune": "71094", + "libelleAcheminement": "LA CHAPELLE SOUS BRANCION", + "nomCommune": "LA CHAPELLE SOUS BRANCION" }, { - "codePostal": "24110", - "codeCommune": "24442", - "libelleAcheminement": "ST LEON SUR L ISLE", - "nomCommune": "ST LEON SUR L ISLE" + "codePostal": "80600", + "codeCommune": "80614", + "libelleAcheminement": "OUTREBOIS", + "nomCommune": "OUTREBOIS" }, { - "codePostal": "80800", - "codeCommune": "80156", - "libelleAcheminement": "BUSSY LES DAOURS", - "nomCommune": "BUSSY LES DAOURS" + "codePostal": "67430", + "codeCommune": "67514", + "libelleAcheminement": "WALDHAMBACH", + "nomCommune": "WALDHAMBACH" }, { - "codePostal": "80480", - "codeCommune": "80791", - "libelleAcheminement": "VERS SUR SELLE", - "nomCommune": "VERS SUR SELLE" + "codePostal": "69120", + "codeCommune": "69256", + "libelleAcheminement": "VAULX EN VELIN", + "nomCommune": "VAULX EN VELIN" }, { - "codePostal": "76890", - "codeCommune": "76063", - "libelleAcheminement": "BEAUVAL EN CAUX", - "nomCommune": "BEAUVAL EN CAUX" + "codePostal": "80620", + "codeCommune": "80742", + "libelleAcheminement": "SURCAMPS", + "nomCommune": "SURCAMPS" }, { - "codePostal": "24160", - "codeCommune": "24448", - "libelleAcheminement": "ST MARTIAL D ALBAREDE", - "nomCommune": "ST MARTIAL D ALBAREDE" + "codePostal": "71800", + "codeCommune": "71095", + "libelleAcheminement": "LA CHAPELLE SOUS DUN", + "nomCommune": "LA CHAPELLE SOUS DUN" }, { - "codePostal": "80170", - "codeCommune": "80162", - "libelleAcheminement": "CAIX", - "nomCommune": "CAIX" + "codePostal": "80320", + "codeCommune": "80621", + "libelleAcheminement": "HYPERCOURT", + "nomCommune": "HYPERCOURT" }, { - "codePostal": "80650", - "codeCommune": "80793", - "libelleAcheminement": "VIGNACOURT", - "nomCommune": "VIGNACOURT" + "codePostal": "67290", + "codeCommune": "67522", + "libelleAcheminement": "WEISLINGEN", + "nomCommune": "WEISLINGEN" }, { - "codePostal": "76890", - "codeCommune": "76072", - "libelleAcheminement": "BELLEVILLE EN CAUX", - "nomCommune": "BELLEVILLE EN CAUX" + "codePostal": "69200", + "codeCommune": "69259", + "libelleAcheminement": "VENISSIEUX", + "nomCommune": "VENISSIEUX" }, { - "codePostal": "24250", - "codeCommune": "24450", - "libelleAcheminement": "ST MARTIAL DE NABIRAT", - "nomCommune": "ST MARTIAL DE NABIRAT" + "codePostal": "80240", + "codeCommune": "80748", + "libelleAcheminement": "TEMPLEUX LE GUERARD", + "nomCommune": "TEMPLEUX LE GUERARD" }, { - "codePostal": "80132", - "codeCommune": "80171", - "libelleAcheminement": "CAOURS", - "nomCommune": "CAOURS" + "codePostal": "71710", + "codeCommune": "71103", + "libelleAcheminement": "CHARMOY", + "nomCommune": "CHARMOY" }, { - "codePostal": "80190", - "codeCommune": "80794", - "libelleAcheminement": "VILLECOURT", - "nomCommune": "VILLECOURT" + "codePostal": "80320", + "codeCommune": "80621", + "libelleAcheminement": "HYPERCOURT", + "nomCommune": "HYPERCOURT" }, { - "codePostal": "76590", - "codeCommune": "76085", - "libelleAcheminement": "BERTREVILLE ST OUEN", - "nomCommune": "BERTREVILLE ST OUEN" + "codePostal": "67340", + "codeCommune": "67524", + "libelleAcheminement": "WEITERSWILLER", + "nomCommune": "WEITERSWILLER" }, { - "codePostal": "24600", - "codeCommune": "24455", - "libelleAcheminement": "ST MARTIN DE RIBERAC", - "nomCommune": "ST MARTIN DE RIBERAC" + "codePostal": "69430", + "codeCommune": "69261", + "libelleAcheminement": "VERNAY", + "nomCommune": "VERNAY" }, { - "codePostal": "80310", - "codeCommune": "80180", - "libelleAcheminement": "CAVILLON", - "nomCommune": "CAVILLON" + "codePostal": "80200", + "codeCommune": "80750", + "libelleAcheminement": "TERTRY", + "nomCommune": "TERTRY" }, { - "codePostal": "80110", - "codeCommune": "80797", - "libelleAcheminement": "VILLERS AUX ERABLES", - "nomCommune": "VILLERS AUX ERABLES" + "codePostal": "71120", + "codeCommune": "71106", + "libelleAcheminement": "CHAROLLES", + "nomCommune": "CHAROLLES" }, { - "codePostal": "76480", - "codeCommune": "76088", - "libelleAcheminement": "BERVILLE SUR SEINE", - "nomCommune": "BERVILLE SUR SEINE" + "codePostal": "80500", + "codeCommune": "80623", + "libelleAcheminement": "PIENNES ONVILLERS", + "nomCommune": "PIENNES ONVILLERS" }, { - "codePostal": "24140", - "codeCommune": "24456", - "libelleAcheminement": "ST MARTIN DES COMBES", - "nomCommune": "ST MARTIN DES COMBES" + "codePostal": "67370", + "codeCommune": "67532", + "libelleAcheminement": "WILLGOTTHEIM", + "nomCommune": "WILLGOTTHEIM" }, { - "codePostal": "80310", - "codeCommune": "80187", - "libelleAcheminement": "LA CHAUSSEE TIRANCOURT", - "nomCommune": "LA CHAUSSEE TIRANCOURT" + "codePostal": "69100", + "codeCommune": "69266", + "libelleAcheminement": "VILLEURBANNE", + "nomCommune": "VILLEURBANNE" }, { - "codePostal": "80200", - "codeCommune": "80801", - "libelleAcheminement": "VILLERS CARBONNEL", - "nomCommune": "VILLERS CARBONNEL" + "codePostal": "80640", + "codeCommune": "80754", + "libelleAcheminement": "THIEULLOY L ABBAYE", + "nomCommune": "THIEULLOY L ABBAYE" }, { - "codePostal": "76890", - "codeCommune": "76096", - "libelleAcheminement": "BIVILLE LA BAIGNARDE", - "nomCommune": "BIVILLE LA BAIGNARDE" + "codePostal": "71380", + "codeCommune": "71117", + "libelleAcheminement": "CHATENOY EN BRESSE", + "nomCommune": "CHATENOY EN BRESSE" }, { - "codePostal": "24380", - "codeCommune": "24459", - "libelleAcheminement": "ST MAYME DE PEREYROL", - "nomCommune": "ST MAYME DE PEREYROL" + "codePostal": "80260", + "codeCommune": "80624", + "libelleAcheminement": "PIERREGOT", + "nomCommune": "PIERREGOT" }, { - "codePostal": "80560", - "codeCommune": "80203", - "libelleAcheminement": "COLINCAMPS", - "nomCommune": "COLINCAMPS" + "codePostal": "67270", + "codeCommune": "67539", + "libelleAcheminement": "WINGERSHEIM LES QUATRE BANS", + "nomCommune": "WINGERSHEIM LES QUATRE BANS" }, { - "codePostal": "80240", - "codeCommune": "80802", - "libelleAcheminement": "VILLERS FAUCON", - "nomCommune": "VILLERS FAUCON" + "codePostal": "69510", + "codeCommune": "69269", + "libelleAcheminement": "YZERON", + "nomCommune": "YZERON" }, { - "codePostal": "76116", - "codeCommune": "76100", - "libelleAcheminement": "BLAINVILLE CREVON", - "nomCommune": "BLAINVILLE CREVON" + "codePostal": "80290", + "codeCommune": "80755", + "libelleAcheminement": "THIEULLOY LA VILLE", + "nomCommune": "THIEULLOY LA VILLE" }, { - "codePostal": "24270", - "codeCommune": "24464", - "libelleAcheminement": "ST MESMIN", - "nomCommune": "ST MESMIN" + "codePostal": "71150", + "codeCommune": "71119", + "libelleAcheminement": "CHAUDENAY", + "nomCommune": "CHAUDENAY" }, { - "codePostal": "80300", - "codeCommune": "80206", - "libelleAcheminement": "CONTALMAISON", - "nomCommune": "CONTALMAISON" + "codePostal": "80500", + "codeCommune": "80625", + "libelleAcheminement": "TROIS RIVIERES", + "nomCommune": "TROIS RIVIERES" }, { - "codePostal": "80120", - "codeCommune": "80806", - "libelleAcheminement": "VILLERS SUR AUTHIE", - "nomCommune": "VILLERS SUR AUTHIE" + "codePostal": "67470", + "codeCommune": "67541", + "libelleAcheminement": "WINTZENBACH", + "nomCommune": "WINTZENBACH" }, { - "codePostal": "76680", - "codeCommune": "76119", - "libelleAcheminement": "BOSC BERENGER", - "nomCommune": "BOSC BERENGER" + "codePostal": "69680", + "codeCommune": "69271", + "libelleAcheminement": "CHASSIEU", + "nomCommune": "CHASSIEU" }, { - "codePostal": "24230", - "codeCommune": "24466", - "libelleAcheminement": "ST MICHEL DE MONTAIGNE", - "nomCommune": "ST MICHEL DE MONTAIGNE" + "codePostal": "80160", + "codeCommune": "80757", + "libelleAcheminement": "THOIX", + "nomCommune": "THOIX" }, { - "codePostal": "80135", - "codeCommune": "80215", - "libelleAcheminement": "COULONVILLERS", - "nomCommune": "COULONVILLERS" + "codePostal": "71220", + "codeCommune": "71128", + "libelleAcheminement": "CHIDDES", + "nomCommune": "CHIDDES" }, { - "codePostal": "80140", - "codeCommune": "80809", - "libelleAcheminement": "VISMES AU VAL", - "nomCommune": "VISMES" + "codePostal": "80500", + "codeCommune": "80625", + "libelleAcheminement": "TROIS RIVIERES", + "nomCommune": "TROIS RIVIERES" }, { - "codePostal": "76850", - "codeCommune": "76125", - "libelleAcheminement": "BOSC LE HARD", - "nomCommune": "BOSC LE HARD" + "codePostal": "67160", + "codeCommune": "67544", + "libelleAcheminement": "WISSEMBOURG", + "nomCommune": "WISSEMBOURG" }, { - "codePostal": "24200", - "codeCommune": "24471", - "libelleAcheminement": "STE NATHALENE", - "nomCommune": "STE NATHALENE" + "codePostal": "69150", + "codeCommune": "69275", + "libelleAcheminement": "DECINES CHARPIEU", + "nomCommune": "DECINES CHARPIEU" }, { - "codePostal": "80160", - "codeCommune": "80219", - "libelleAcheminement": "COURCELLES SOUS THOIX", - "nomCommune": "COURCELLES SOUS THOIX" + "codePostal": "80870", + "codeCommune": "80764", + "libelleAcheminement": "TOEUFLES", + "nomCommune": "TOEUFLES" }, { - "codePostal": "80150", - "codeCommune": "80810", - "libelleAcheminement": "VITZ SUR AUTHIE", - "nomCommune": "VITZ SUR AUTHIE" + "codePostal": "71460", + "codeCommune": "71130", + "libelleAcheminement": "CHISSEY LES MACON", + "nomCommune": "CHISSEY LES MACON" }, { - "codePostal": "76560", - "codeCommune": "76129", - "libelleAcheminement": "BOUDEVILLE", - "nomCommune": "BOUDEVILLE" + "codePostal": "80540", + "codeCommune": "80626", + "libelleAcheminement": "PISSY", + "nomCommune": "PISSY" }, { - "codePostal": "24800", - "codeCommune": "24485", - "libelleAcheminement": "ST PIERRE DE COLE", - "nomCommune": "ST PIERRE DE COLE" + "codePostal": "67820", + "codeCommune": "67547", + "libelleAcheminement": "WITTISHEIM", + "nomCommune": "WITTISHEIM" }, { - "codePostal": "80370", - "codeCommune": "80221", - "libelleAcheminement": "CRAMONT", - "nomCommune": "CRAMONT" + "codePostal": "69740", + "codeCommune": "69277", + "libelleAcheminement": "GENAS", + "nomCommune": "GENAS" }, { - "codePostal": "80400", - "codeCommune": "80811", - "libelleAcheminement": "VOYENNES", - "nomCommune": "VOYENNES" + "codePostal": "80560", + "codeCommune": "80776", + "libelleAcheminement": "VARENNES", + "nomCommune": "VARENNES" }, { - "codePostal": "76270", - "codeCommune": "76130", - "libelleAcheminement": "BOUELLES", - "nomCommune": "BOUELLES" + "codePostal": "71420", + "codeCommune": "71132", + "libelleAcheminement": "CIRY LE NOBLE", + "nomCommune": "CIRY LE NOBLE" }, { - "codePostal": "24410", - "codeCommune": "24490", - "libelleAcheminement": "ST PRIVAT EN PERIGORD", - "nomCommune": "ST PRIVAT EN PERIGORD" + "codePostal": "80110", + "codeCommune": "80628", + "libelleAcheminement": "LE PLESSIER ROZAINVILLERS", + "nomCommune": "LE PLESSIER ROZAINVILLERS" }, { - "codePostal": "80700", - "codeCommune": "80223", - "libelleAcheminement": "CREMERY", - "nomCommune": "CREMERY" + "codePostal": "67120", + "codeCommune": "67554", + "libelleAcheminement": "WOLXHEIM", + "nomCommune": "WOLXHEIM" }, { - "codePostal": "80270", - "codeCommune": "80821", - "libelleAcheminement": "WARLUS", - "nomCommune": "WARLUS" + "codePostal": "69970", + "codeCommune": "69281", + "libelleAcheminement": "MARENNES", + "nomCommune": "MARENNES" }, { - "codePostal": "76270", - "codeCommune": "76147", - "libelleAcheminement": "BULLY", - "nomCommune": "BULLY" + "codePostal": "80700", + "codeCommune": "80790", + "libelleAcheminement": "VERPILLIERES", + "nomCommune": "VERPILLIERES" }, { - "codePostal": "24540", - "codeCommune": "24495", - "libelleAcheminement": "ST ROMAIN DE MONPAZIER", - "nomCommune": "ST ROMAIN DE MONPAZIER" + "codePostal": "71460", + "codeCommune": "71145", + "libelleAcheminement": "CORMATIN", + "nomCommune": "CORMATIN" }, { - "codePostal": "80360", - "codeCommune": "80231", - "libelleAcheminement": "CURLU", - "nomCommune": "CURLU" + "codePostal": "80240", + "codeCommune": "80629", + "libelleAcheminement": "POEUILLY", + "nomCommune": "POEUILLY" }, { - "codePostal": "80500", - "codeCommune": "80822", - "libelleAcheminement": "WARSY", - "nomCommune": "WARSY" + "codePostal": "67120", + "codeCommune": "67554", + "libelleAcheminement": "WOLXHEIM", + "nomCommune": "WOLXHEIM" }, { - "codePostal": "76660", - "codeCommune": "76148", - "libelleAcheminement": "BURES EN BRAY", - "nomCommune": "BURES EN BRAY" + "codePostal": "69140", + "codeCommune": "69286", + "libelleAcheminement": "RILLIEUX LA PAPE", + "nomCommune": "RILLIEUX LA PAPE" }, { - "codePostal": "24470", - "codeCommune": "24498", - "libelleAcheminement": "ST SAUD LACOUSSIERE", - "nomCommune": "ST SAUD LACOUSSIERE" + "codePostal": "80650", + "codeCommune": "80793", + "libelleAcheminement": "VIGNACOURT", + "nomCommune": "VIGNACOURT" }, { - "codePostal": "80370", - "codeCommune": "80243", - "libelleAcheminement": "DOMESMONT", - "nomCommune": "DOMESMONT" + "codePostal": "71250", + "codeCommune": "71146", + "libelleAcheminement": "CORTAMBERT", + "nomCommune": "CORTAMBERT" }, { - "codePostal": "80190", - "codeCommune": "80829", - "libelleAcheminement": "Y", - "nomCommune": "Y" + "codePostal": "80860", + "codeCommune": "80633", + "libelleAcheminement": "PONTHOILE", + "nomCommune": "PONTHOILE" }, { - "codePostal": "76380", - "codeCommune": "76157", - "libelleAcheminement": "CANTELEU", - "nomCommune": "CANTELEU" + "codePostal": "67140", + "codeCommune": "67557", + "libelleAcheminement": "ZELLWILLER", + "nomCommune": "ZELLWILLER" }, { - "codePostal": "24700", - "codeCommune": "24500", - "libelleAcheminement": "ST SAUVEUR LALANDE", - "nomCommune": "ST SAUVEUR LALANDE" + "codePostal": "69780", + "codeCommune": "69289", + "libelleAcheminement": "ST PIERRE DE CHANDIEU", + "nomCommune": "ST PIERRE DE CHANDIEU" }, { - "codePostal": "80370", - "codeCommune": "80245", - "libelleAcheminement": "DOMLEGER LONGVILLERS", - "nomCommune": "DOMLEGER LONGVILLERS" + "codePostal": "80420", + "codeCommune": "80795", + "libelleAcheminement": "VILLE LE MARCLET", + "nomCommune": "VILLE LE MARCLET" }, { - "codePostal": "80150", - "codeCommune": "80832", - "libelleAcheminement": "YVRENCH", - "nomCommune": "YVRENCH" + "codePostal": "71760", + "codeCommune": "71152", + "libelleAcheminement": "CRESSY SUR SOMME", + "nomCommune": "CRESSY SUR SOMME" }, { - "codePostal": "76380", - "codeCommune": "76157", - "libelleAcheminement": "CANTELEU", - "nomCommune": "CANTELEU" + "codePostal": "80160", + "codeCommune": "80643", + "libelleAcheminement": "PROUZEL", + "nomCommune": "PROUZEL" }, { - "codePostal": "24190", - "codeCommune": "24509", - "libelleAcheminement": "ST VINCENT DE CONNEZAC", - "nomCommune": "ST VINCENT DE CONNEZAC" + "codePostal": "68130", + "codeCommune": "68004", + "libelleAcheminement": "ALTKIRCH", + "nomCommune": "ALTKIRCH" }, { - "codePostal": "80620", - "codeCommune": "80249", - "libelleAcheminement": "DOMQUEUR", - "nomCommune": "DOMQUEUR" + "codePostal": "69360", + "codeCommune": "69296", + "libelleAcheminement": "SOLAIZE", + "nomCommune": "SOLAIZE" }, { - "codePostal": "81350", - "codeCommune": "81013", - "libelleAcheminement": "ANDOUQUE", - "nomCommune": "ANDOUQUE" + "codePostal": "80240", + "codeCommune": "80802", + "libelleAcheminement": "VILLERS FAUCON", + "nomCommune": "VILLERS FAUCON" }, { - "codePostal": "76560", - "codeCommune": "76158", - "libelleAcheminement": "CANVILLE LES DEUX EGLISES", - "nomCommune": "CANVILLE LES DEUX EGLISES" + "codePostal": "71800", + "codeCommune": "71160", + "libelleAcheminement": "CURBIGNY", + "nomCommune": "CURBIGNY" }, { - "codePostal": "24220", - "codeCommune": "24510", - "libelleAcheminement": "ST VINCENT DE COSSE", - "nomCommune": "ST VINCENT DE COSSE" + "codePostal": "80320", + "codeCommune": "80646", + "libelleAcheminement": "PUNCHY", + "nomCommune": "PUNCHY" }, { - "codePostal": "80400", - "codeCommune": "80252", - "libelleAcheminement": "DOUILLY", - "nomCommune": "DOUILLY" + "codePostal": "68210", + "codeCommune": "68006", + "libelleAcheminement": "BERNWILLER", + "nomCommune": "BERNWILLER" }, { - "codePostal": "81500", - "codeCommune": "81025", - "libelleAcheminement": "BELCASTEL", - "nomCommune": "BELCASTEL" + "codePostal": "69008", + "codeCommune": "69388", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 08" }, { - "codePostal": "76430", - "codeCommune": "76169", - "libelleAcheminement": "LA CERLANGUE", - "nomCommune": "LA CERLANGUE" + "codePostal": "80700", + "codeCommune": "80803", + "libelleAcheminement": "VILLERS LES ROYE", + "nomCommune": "VILLERS LES ROYE" }, { - "codePostal": "24420", - "codeCommune": "24527", - "libelleAcheminement": "SAVIGNAC LES EGLISES", - "nomCommune": "SAVIGNAC LES EGLISES" + "codePostal": "71320", + "codeCommune": "71166", + "libelleAcheminement": "CUZY", + "nomCommune": "CUZY" }, { - "codePostal": "80240", - "codeCommune": "80258", - "libelleAcheminement": "DRIENCOURT", - "nomCommune": "DRIENCOURT" + "codePostal": "80430", + "codeCommune": "80651", + "libelleAcheminement": "LE QUESNE", + "nomCommune": "LE QUESNE" }, { - "codePostal": "81540", - "codeCommune": "81027", - "libelleAcheminement": "BELLESERRE", - "nomCommune": "BELLESERRE" + "codePostal": "68130", + "codeCommune": "68010", + "libelleAcheminement": "ASPACH", + "nomCommune": "ASPACH" }, { - "codePostal": "76740", - "codeCommune": "76172", - "libelleAcheminement": "LA CHAPELLE SUR DUN", - "nomCommune": "LA CHAPELLE SUR DUN" + "codePostal": "69009", + "codeCommune": "69389", + "libelleAcheminement": "LYON", + "nomCommune": "LYON 09" }, { - "codePostal": "24600", - "codeCommune": "24529", - "libelleAcheminement": "SEGONZAC", - "nomCommune": "SEGONZAC" + "codePostal": "80150", + "codeCommune": "80808", + "libelleAcheminement": "VIRONCHAUX", + "nomCommune": "VIRONCHAUX" }, { - "codePostal": "80140", - "codeCommune": "80269", - "libelleAcheminement": "EPAUMESNIL", - "nomCommune": "EPAUMESNIL" + "codePostal": "71620", + "codeCommune": "71167", + "libelleAcheminement": "DAMEREY", + "nomCommune": "DAMEREY" }, { - "codePostal": "81150", - "codeCommune": "81029", - "libelleAcheminement": "BERNAC", - "nomCommune": "BERNAC" + "codePostal": "80132", + "codeCommune": "80654", + "libelleAcheminement": "QUESNOY LE MONTANT", + "nomCommune": "QUESNOY LE MONTANT" }, { - "codePostal": "76570", - "codeCommune": "76174", - "libelleAcheminement": "CIDEVILLE", - "nomCommune": "CIDEVILLE" + "codePostal": "68150", + "codeCommune": "68014", + "libelleAcheminement": "AUBURE", + "nomCommune": "AUBURE" }, { - "codePostal": "24410", - "codeCommune": "24533", - "libelleAcheminement": "SERVANCHES", - "nomCommune": "SERVANCHES" + "codePostal": "70300", + "codeCommune": "70001", + "libelleAcheminement": "ABELCOURT", + "nomCommune": "ABELCOURT" }, { - "codePostal": "80370", - "codeCommune": "80270", - "libelleAcheminement": "EPECAMPS", - "nomCommune": "EPECAMPS" + "codePostal": "80400", + "codeCommune": "80811", + "libelleAcheminement": "VOYENNES", + "nomCommune": "VOYENNES" }, { - "codePostal": "81260", - "codeCommune": "81031", - "libelleAcheminement": "LE BEZ", - "nomCommune": "LE BEZ" + "codePostal": "71310", + "codeCommune": "71168", + "libelleAcheminement": "DAMPIERRE EN BRESSE", + "nomCommune": "DAMPIERRE EN BRESSE" }, { - "codePostal": "76690", - "codeCommune": "76179", - "libelleAcheminement": "CLERES", - "nomCommune": "CLERES" + "codePostal": "80270", + "codeCommune": "80655", + "libelleAcheminement": "QUESNOY SUR AIRAINES", + "nomCommune": "QUESNOY SUR AIRAINES" }, { - "codePostal": "24240", - "codeCommune": "24534", - "libelleAcheminement": "SIGOULES ET FLAUGEAC", - "nomCommune": "SIGOULES ET FLAUGEAC" + "codePostal": "68390", + "codeCommune": "68015", + "libelleAcheminement": "BALDERSHEIM", + "nomCommune": "BALDERSHEIM" }, { - "codePostal": "80190", - "codeCommune": "80272", - "libelleAcheminement": "EPENANCOURT", - "nomCommune": "EPENANCOURT" + "codePostal": "70280", + "codeCommune": "70011", + "libelleAcheminement": "AMAGE", + "nomCommune": "AMAGE" }, { - "codePostal": "81700", - "codeCommune": "81032", - "libelleAcheminement": "BLAN", - "nomCommune": "BLAN" + "codePostal": "80170", + "codeCommune": "80814", + "libelleAcheminement": "VRELY", + "nomCommune": "VRELY" }, { - "codePostal": "76550", - "codeCommune": "76184", - "libelleAcheminement": "COLMESNIL MANNEVILLE", - "nomCommune": "COLMESNIL MANNEVILLE" + "codePostal": "71330", + "codeCommune": "71175", + "libelleAcheminement": "DICONNE", + "nomCommune": "DICONNE" }, { - "codePostal": "24240", - "codeCommune": "24534", - "libelleAcheminement": "SIGOULES ET FLAUGEAC", - "nomCommune": "SIGOULES ET FLAUGEAC" + "codePostal": "80160", + "codeCommune": "80675", + "libelleAcheminement": "ROGY", + "nomCommune": "ROGY" }, { - "codePostal": "80290", - "codeCommune": "80273", - "libelleAcheminement": "EPLESSIER", - "nomCommune": "EPLESSIER" + "codePostal": "68620", + "codeCommune": "68040", + "libelleAcheminement": "BITSCHWILLER LES THANN", + "nomCommune": "BITSCHWILLER LES THANN" }, { - "codePostal": "81660", - "codeCommune": "81036", - "libelleAcheminement": "BOUT DU PONT DE LARN", - "nomCommune": "BOUT DU PONT DE LARN" + "codePostal": "70200", + "codeCommune": "70014", + "libelleAcheminement": "AMBLANS ET VELOTTE", + "nomCommune": "AMBLANS ET VELOTTE" }, { - "codePostal": "76850", - "codeCommune": "76188", - "libelleAcheminement": "COTTEVRARD", - "nomCommune": "COTTEVRARD" + "codePostal": "80150", + "codeCommune": "80832", + "libelleAcheminement": "YVRENCH", + "nomCommune": "YVRENCH" }, { - "codePostal": "24370", - "codeCommune": "24535", - "libelleAcheminement": "SIMEYROLS", - "nomCommune": "SIMEYROLS" + "codePostal": "71160", + "codeCommune": "71176", + "libelleAcheminement": "DIGOIN", + "nomCommune": "DIGOIN" }, { - "codePostal": "80210", - "codeCommune": "80280", - "libelleAcheminement": "ERCOURT", - "nomCommune": "ERCOURT" + "codePostal": "80240", + "codeCommune": "80677", + "libelleAcheminement": "ROISEL", + "nomCommune": "ROISEL" }, { - "codePostal": "81260", - "codeCommune": "81037", - "libelleAcheminement": "BRASSAC", - "nomCommune": "BRASSAC" + "codePostal": "68480", + "codeCommune": "68049", + "libelleAcheminement": "BOUXWILLER", + "nomCommune": "BOUXWILLER" }, { - "codePostal": "76910", - "codeCommune": "76192", - "libelleAcheminement": "CRIEL SUR MER", - "nomCommune": "CRIEL SUR MER" + "codePostal": "70110", + "codeCommune": "70040", + "libelleAcheminement": "AUTREY LES CERRE", + "nomCommune": "AUTREY LES CERRE" }, { - "codePostal": "24170", - "codeCommune": "24538", - "libelleAcheminement": "SIORAC EN PERIGORD", - "nomCommune": "SIORAC EN PERIGORD" + "codePostal": "80132", + "codeCommune": "80836", + "libelleAcheminement": "YONVAL", + "nomCommune": "YONVAL" }, { - "codePostal": "80230", - "codeCommune": "80287", - "libelleAcheminement": "ESTREBOEUF", - "nomCommune": "ESTREBOEUF" + "codePostal": "71160", + "codeCommune": "71176", + "libelleAcheminement": "DIGOIN", + "nomCommune": "DIGOIN" }, { - "codePostal": "81390", - "codeCommune": "81039", - "libelleAcheminement": "BRIATEXTE", - "nomCommune": "BRIATEXTE" + "codePostal": "80740", + "codeCommune": "80679", + "libelleAcheminement": "LE RONSSOY", + "nomCommune": "RONSSOY" }, { - "codePostal": "76111", - "codeCommune": "76194", - "libelleAcheminement": "CRIQUEBEUF EN CAUX", - "nomCommune": "CRIQUEBEUF EN CAUX" + "codePostal": "68220", + "codeCommune": "68061", + "libelleAcheminement": "BUSCHWILLER", + "nomCommune": "BUSCHWILLER" }, { - "codePostal": "24300", - "codeCommune": "24548", - "libelleAcheminement": "TEYJAT", - "nomCommune": "TEYJAT" + "codePostal": "70100", + "codeCommune": "70043", + "libelleAcheminement": "AUVET ET LA CHAPELOTTE", + "nomCommune": "AUVET ET LA CHAPELOTTE" }, { - "codePostal": "80830", - "codeCommune": "80296", - "libelleAcheminement": "L ETOILE", - "nomCommune": "L ETOILE" + "codePostal": "81470", + "codeCommune": "81001", + "libelleAcheminement": "AGUTS", + "nomCommune": "AGUTS" }, { - "codePostal": "81170", - "codeCommune": "81045", - "libelleAcheminement": "LES CABANNES", - "nomCommune": "LES CABANNES" + "codePostal": "71520", + "codeCommune": "71178", + "libelleAcheminement": "DOMPIERRE LES ORMES", + "nomCommune": "DOMPIERRE LES ORMES" }, { - "codePostal": "76540", - "codeCommune": "76195", - "libelleAcheminement": "CRIQUETOT LE MAUCONDUIT", - "nomCommune": "CRIQUETOT LE MAUCONDUIT" + "codePostal": "80170", + "codeCommune": "80680", + "libelleAcheminement": "ROSIERES EN SANTERRE", + "nomCommune": "ROSIERES EN SANTERRE" }, { - "codePostal": "24240", - "codeCommune": "24549", - "libelleAcheminement": "THENAC", - "nomCommune": "THENAC" + "codePostal": "68490", + "codeCommune": "68064", + "libelleAcheminement": "CHALAMPE", + "nomCommune": "CHALAMPE" }, { - "codePostal": "80470", - "codeCommune": "80305", - "libelleAcheminement": "FERRIERES", - "nomCommune": "FERRIERES" + "codePostal": "70000", + "codeCommune": "70044", + "libelleAcheminement": "AUXON", + "nomCommune": "AUXON" }, { - "codePostal": "81600", - "codeCommune": "81046", - "libelleAcheminement": "CADALEN", - "nomCommune": "CADALEN" + "codePostal": "81200", + "codeCommune": "81002", + "libelleAcheminement": "AIGUEFONDE", + "nomCommune": "AIGUEFONDE" }, { - "codePostal": "76590", - "codeCommune": "76197", - "libelleAcheminement": "CRIQUETOT SUR LONGUEVILLE", - "nomCommune": "CRIQUETOT SUR LONGUEVILLE" + "codePostal": "71250", + "codeCommune": "71181", + "libelleAcheminement": "DONZY LE PERTUIS", + "nomCommune": "DONZY LE PERTUIS" }, { - "codePostal": "24240", - "codeCommune": "24549", - "libelleAcheminement": "THENAC", - "nomCommune": "THENAC" + "codePostal": "80170", + "codeCommune": "80682", + "libelleAcheminement": "ROUVROY EN SANTERRE", + "nomCommune": "ROUVROY EN SANTERRE" }, { - "codePostal": "80210", - "codeCommune": "80308", - "libelleAcheminement": "FEUQUIERES EN VIMEU", - "nomCommune": "FEUQUIERES EN VIMEU" + "codePostal": "68210", + "codeCommune": "68065", + "libelleAcheminement": "CHAVANNES SUR L ETANG", + "nomCommune": "CHAVANNES SUR L ETANG" }, { - "codePostal": "81570", - "codeCommune": "81058", - "libelleAcheminement": "CARBES", - "nomCommune": "CARBES" + "codePostal": "70140", + "codeCommune": "70048", + "libelleAcheminement": "BARD LES PESMES", + "nomCommune": "BARD LES PESMES" }, { - "codePostal": "76780", - "codeCommune": "76201", - "libelleAcheminement": "CROISY SUR ANDELLE", - "nomCommune": "CROISY SUR ANDELLE" + "codePostal": "81160", + "codeCommune": "81018", + "libelleAcheminement": "ARTHES", + "nomCommune": "ARTHES" }, { - "codePostal": "24290", - "codeCommune": "24552", - "libelleAcheminement": "THONAC", - "nomCommune": "THONAC" + "codePostal": "71400", + "codeCommune": "71184", + "libelleAcheminement": "DRACY ST LOUP", + "nomCommune": "DRACY ST LOUP" }, { - "codePostal": "80360", - "codeCommune": "80314", - "libelleAcheminement": "FLERS", - "nomCommune": "FLERS" + "codePostal": "80190", + "codeCommune": "80684", + "libelleAcheminement": "ROUY LE PETIT", + "nomCommune": "ROUY LE PETIT" }, { - "codePostal": "81400", - "codeCommune": "81060", - "libelleAcheminement": "CARMAUX", - "nomCommune": "CARMAUX" + "codePostal": "68780", + "codeCommune": "68071", + "libelleAcheminement": "DIEFMATTEN", + "nomCommune": "DIEFMATTEN" }, { - "codePostal": "76340", - "codeCommune": "76211", - "libelleAcheminement": "DANCOURT", - "nomCommune": "DANCOURT" + "codePostal": "70300", + "codeCommune": "70055", + "libelleAcheminement": "BAUDONCOURT", + "nomCommune": "BAUDONCOURT" }, { - "codePostal": "24350", - "codeCommune": "24553", - "libelleAcheminement": "TOCANE ST APRE", - "nomCommune": "TOCANE ST APRE" + "codePostal": "81340", + "codeCommune": "81019", + "libelleAcheminement": "ASSAC", + "nomCommune": "ASSAC" }, { - "codePostal": "80160", - "codeCommune": "80317", - "libelleAcheminement": "FLEURY", - "nomCommune": "FLEURY" + "codePostal": "71700", + "codeCommune": "71195", + "libelleAcheminement": "FARGES LES MACON", + "nomCommune": "FARGES LES MACON" }, { - "codePostal": "81260", - "codeCommune": "81062", - "libelleAcheminement": "FONTRIEU", - "nomCommune": "FONTRIEU" + "codePostal": "80540", + "codeCommune": "80698", + "libelleAcheminement": "ST AUBIN MONTENOY", + "nomCommune": "ST AUBIN MONTENOY" }, { - "codePostal": "76590", - "codeCommune": "76214", - "libelleAcheminement": "DENESTANVILLE", - "nomCommune": "DENESTANVILLE" + "codePostal": "68320", + "codeCommune": "68076", + "libelleAcheminement": "DURRENENTZEN", + "nomCommune": "DURRENENTZEN" }, { - "codePostal": "24190", - "codeCommune": "24562", - "libelleAcheminement": "VALLEREUIL", - "nomCommune": "VALLEREUIL" + "codePostal": "70270", + "codeCommune": "70063", + "libelleAcheminement": "BELONCHAMP", + "nomCommune": "BELONCHAMP" }, { - "codePostal": "80150", - "codeCommune": "80327", - "libelleAcheminement": "FONTAINE SUR MAYE", - "nomCommune": "FONTAINE SUR MAYE" + "codePostal": "81320", + "codeCommune": "81023", + "libelleAcheminement": "BARRE", + "nomCommune": "BARRE" }, { - "codePostal": "81140", - "codeCommune": "81064", - "libelleAcheminement": "CASTELNAU DE MONTMIRAL", - "nomCommune": "CASTELNAU DE MONTMIRAL" + "codePostal": "71150", + "codeCommune": "71202", + "libelleAcheminement": "FONTAINES", + "nomCommune": "FONTAINES" }, { - "codePostal": "76370", - "codeCommune": "76217", - "libelleAcheminement": "DIEPPE", - "nomCommune": "DIEPPE" + "codePostal": "80430", + "codeCommune": "80699", + "libelleAcheminement": "ST AUBIN RIVIERE", + "nomCommune": "ST AUBIN RIVIERE" }, { - "codePostal": "24230", - "codeCommune": "24568", - "libelleAcheminement": "VELINES", - "nomCommune": "VELINES" + "codePostal": "68210", + "codeCommune": "68079", + "libelleAcheminement": "ELBACH", + "nomCommune": "ELBACH" }, { - "codePostal": "80140", - "codeCommune": "80330", - "libelleAcheminement": "FORCEVILLE EN VIMEU", - "nomCommune": "FORCEVILLE EN VIMEU" + "codePostal": "70400", + "codeCommune": "70064", + "libelleAcheminement": "BELVERNE", + "nomCommune": "BELVERNE" }, { - "codePostal": "81570", - "codeCommune": "81075", - "libelleAcheminement": "CUQ LES VIELMUR", - "nomCommune": "CUQ" + "codePostal": "81150", + "codeCommune": "81029", + "libelleAcheminement": "BERNAC", + "nomCommune": "BERNAC" }, { - "codePostal": "76560", - "codeCommune": "76219", - "libelleAcheminement": "DOUDEVILLE", - "nomCommune": "DOUDEVILLE" + "codePostal": "71530", + "codeCommune": "71204", + "libelleAcheminement": "FRAGNES LA LOYERE", + "nomCommune": "FRAGNES LA LOYERE" }, { - "codePostal": "24250", - "codeCommune": "24575", - "libelleAcheminement": "VEYRINES DE DOMME", - "nomCommune": "VEYRINES DE DOMME" + "codePostal": "80680", + "codeCommune": "80702", + "libelleAcheminement": "ST FUSCIEN", + "nomCommune": "ST FUSCIEN" }, { - "codePostal": "80440", - "codeCommune": "80337", - "libelleAcheminement": "FOUENCAMPS", - "nomCommune": "FOUENCAMPS" + "codePostal": "68210", + "codeCommune": "68085", + "libelleAcheminement": "ETEIMBES", + "nomCommune": "ETEIMBES" }, { - "codePostal": "81220", - "codeCommune": "81078", - "libelleAcheminement": "DAMIATTE", - "nomCommune": "DAMIATTE" + "codePostal": "70210", + "codeCommune": "70069", + "libelleAcheminement": "BETONCOURT ST PANCRAS", + "nomCommune": "BETONCOURT ST PANCRAS" }, { - "codePostal": "76460", - "codeCommune": "76221", - "libelleAcheminement": "DROSAY", - "nomCommune": "DROSAY" + "codePostal": "81260", + "codeCommune": "81037", + "libelleAcheminement": "BRASSAC", + "nomCommune": "BRASSAC" }, { - "codePostal": "24530", - "codeCommune": "24582", - "libelleAcheminement": "VILLARS", - "nomCommune": "VILLARS" + "codePostal": "71270", + "codeCommune": "71208", + "libelleAcheminement": "FRONTENARD", + "nomCommune": "FRONTENARD" }, { - "codePostal": "80131", - "codeCommune": "80342", - "libelleAcheminement": "FRAMERVILLE RAINECOURT", - "nomCommune": "FRAMERVILLE RAINECOURT" + "codePostal": "80780", + "codeCommune": "80706", + "libelleAcheminement": "ST LEGER LES DOMART", + "nomCommune": "ST LEGER LES DOMART" }, { - "codePostal": "81120", - "codeCommune": "81079", - "libelleAcheminement": "DENAT", - "nomCommune": "DENAT" + "codePostal": "68720", + "codeCommune": "68093", + "libelleAcheminement": "FLAXLANDEN", + "nomCommune": "FLAXLANDEN" }, { - "codePostal": "76760", - "codeCommune": "76227", - "libelleAcheminement": "ECTOT L AUBER", - "nomCommune": "ECTOT L AUBER" + "codePostal": "70500", + "codeCommune": "70070", + "libelleAcheminement": "BETONCOURT SUR MANCE", + "nomCommune": "BETONCOURT SUR MANCE" }, { - "codePostal": "24550", - "codeCommune": "24585", - "libelleAcheminement": "VILLEFRANCHE DU PERIGORD", - "nomCommune": "VILLEFRANCHE DU PERIGORD" + "codePostal": "81100", + "codeCommune": "81042", + "libelleAcheminement": "BURLATS", + "nomCommune": "BURLATS" }, { - "codePostal": "80140", - "codeCommune": "80343", - "libelleAcheminement": "FRAMICOURT", - "nomCommune": "FRAMICOURT" + "codePostal": "71420", + "codeCommune": "71212", + "libelleAcheminement": "GENELARD", + "nomCommune": "GENELARD" }, { - "codePostal": "81540", - "codeCommune": "81083", - "libelleAcheminement": "DURFORT", - "nomCommune": "DURFORT" + "codePostal": "80140", + "codeCommune": "80709", + "libelleAcheminement": "ST MAULVIS", + "nomCommune": "ST MAULVIS" }, { - "codePostal": "76570", - "codeCommune": "76234", - "libelleAcheminement": "EMANVILLE", - "nomCommune": "EMANVILLE" + "codePostal": "68130", + "codeCommune": "68096", + "libelleAcheminement": "FRANKEN", + "nomCommune": "FRANKEN" }, { - "codePostal": "25360", - "codeCommune": "25009", - "libelleAcheminement": "AISSEY", - "nomCommune": "AISSEY" + "codePostal": "70110", + "codeCommune": "70072", + "libelleAcheminement": "BEVEUGE", + "nomCommune": "BEVEUGE" }, { - "codePostal": "80210", - "codeCommune": "80345", - "libelleAcheminement": "FRANLEU", - "nomCommune": "FRANLEU" + "codePostal": "81300", + "codeCommune": "81043", + "libelleAcheminement": "BUSQUE", + "nomCommune": "BUSQUE" }, { - "codePostal": "81600", - "codeCommune": "81090", - "libelleAcheminement": "FENOLS", - "nomCommune": "FENOLS" + "codePostal": "71460", + "codeCommune": "71214", + "libelleAcheminement": "GENOUILLY", + "nomCommune": "GENOUILLY" }, { - "codePostal": "76133", - "codeCommune": "76238", - "libelleAcheminement": "EPOUVILLE", - "nomCommune": "EPOUVILLE" + "codePostal": "80610", + "codeCommune": "80711", + "libelleAcheminement": "ST OUEN", + "nomCommune": "ST OUEN" }, { - "codePostal": "25490", - "codeCommune": "25011", - "libelleAcheminement": "ALLENJOIE", - "nomCommune": "ALLENJOIE" + "codePostal": "68250", + "codeCommune": "68116", + "libelleAcheminement": "GUNDOLSHEIM", + "nomCommune": "GUNDOLSHEIM" }, { - "codePostal": "80260", - "codeCommune": "80351", - "libelleAcheminement": "FRECHENCOURT", - "nomCommune": "FRECHENCOURT" + "codePostal": "70500", + "codeCommune": "70091", + "libelleAcheminement": "BOUSSERAUCOURT", + "nomCommune": "BOUSSERAUCOURT" }, { - "codePostal": "81150", - "codeCommune": "81093", - "libelleAcheminement": "FLORENTIN", - "nomCommune": "FLORENTIN" + "codePostal": "81470", + "codeCommune": "81050", + "libelleAcheminement": "CAMBON LES LAVAUR", + "nomCommune": "CAMBON LES LAVAUR" }, { - "codePostal": "76430", - "codeCommune": "76239", - "libelleAcheminement": "EPRETOT", - "nomCommune": "EPRETOT" + "codePostal": "71640", + "codeCommune": "71221", + "libelleAcheminement": "GIVRY", + "nomCommune": "GIVRY" }, { - "codePostal": "25330", - "codeCommune": "25016", - "libelleAcheminement": "AMATHAY VESIGNEUX", - "nomCommune": "AMATHAY VESIGNEUX" + "codePostal": "80470", + "codeCommune": "80718", + "libelleAcheminement": "ST SAUVEUR", + "nomCommune": "ST SAUVEUR" }, { - "codePostal": "80160", - "codeCommune": "80352", - "libelleAcheminement": "FREMONTIERS", - "nomCommune": "FREMONTIERS" + "codePostal": "68220", + "codeCommune": "68120", + "libelleAcheminement": "HAGENTHAL LE BAS", + "nomCommune": "HAGENTHAL LE BAS" }, { - "codePostal": "81450", - "codeCommune": "81101", - "libelleAcheminement": "LE GARRIC", - "nomCommune": "LE GARRIC" + "codePostal": "70100", + "codeCommune": "70100", + "libelleAcheminement": "BROYE LES LOUPS ET VERFONTAINE", + "nomCommune": "BROYE LES LOUPS ET VERFONTAINE" }, { - "codePostal": "76220", - "codeCommune": "76242", - "libelleAcheminement": "ERNEMONT LA VILLETTE", - "nomCommune": "ERNEMONT LA VILLETTE" + "codePostal": "81260", + "codeCommune": "81053", + "libelleAcheminement": "CAMBOUNES", + "nomCommune": "CAMBOUNES" }, { - "codePostal": "25340", - "codeCommune": "25018", - "libelleAcheminement": "ANTEUIL", - "nomCommune": "ANTEUIL" + "codePostal": "71990", + "codeCommune": "71223", + "libelleAcheminement": "LA GRANDE VERRIERE", + "nomCommune": "LA GRANDE VERRIERE" }, { - "codePostal": "80140", - "codeCommune": "80354", - "libelleAcheminement": "FRESNES TILLOLOY", - "nomCommune": "FRESNES TILLOLOY" + "codePostal": "80540", + "codeCommune": "80723", + "libelleAcheminement": "SAISSEVAL", + "nomCommune": "SAISSEVAL" }, { - "codePostal": "81500", - "codeCommune": "81102", - "libelleAcheminement": "GARRIGUES", - "nomCommune": "GARRIGUES" + "codePostal": "68210", + "codeCommune": "68125", + "libelleAcheminement": "HECKEN", + "nomCommune": "HECKEN" }, { - "codePostal": "76690", - "codeCommune": "76247", - "libelleAcheminement": "ESTEVILLE", - "nomCommune": "ESTEVILLE" + "codePostal": "70360", + "codeCommune": "70105", + "libelleAcheminement": "BUCEY LES TRAVES", + "nomCommune": "BUCEY LES TRAVES" }, { - "codePostal": "25340", - "codeCommune": "25018", - "libelleAcheminement": "ANTEUIL", - "nomCommune": "ANTEUIL" + "codePostal": "81260", + "codeCommune": "81062", + "libelleAcheminement": "FONTRIEU", + "nomCommune": "FONTRIEU" }, { - "codePostal": "80700", - "codeCommune": "80359", - "libelleAcheminement": "FRESNOY LES ROYE", - "nomCommune": "FRESNOY LES ROYE" + "codePostal": "71190", + "codeCommune": "71251", + "libelleAcheminement": "LAIZY", + "nomCommune": "LAIZY" }, { - "codePostal": "81530", - "codeCommune": "81103", - "libelleAcheminement": "GIJOUNET", - "nomCommune": "GIJOUNET" + "codePostal": "80470", + "codeCommune": "80730", + "libelleAcheminement": "SAVEUSE", + "nomCommune": "SAVEUSE" }, { - "codePostal": "76430", - "codeCommune": "76250", - "libelleAcheminement": "ETAINHUS", - "nomCommune": "ETAINHUS" + "codePostal": "68220", + "codeCommune": "68126", + "libelleAcheminement": "HEGENHEIM", + "nomCommune": "HEGENHEIM" }, { - "codePostal": "25610", - "codeCommune": "25021", - "libelleAcheminement": "ARC ET SENANS", - "nomCommune": "ARC ET SENANS" + "codePostal": "70230", + "codeCommune": "70113", + "libelleAcheminement": "CENANS", + "nomCommune": "CENANS" }, { - "codePostal": "80460", - "codeCommune": "80364", - "libelleAcheminement": "FRIAUCOURT", - "nomCommune": "FRIAUCOURT" + "codePostal": "81100", + "codeCommune": "81065", + "libelleAcheminement": "CASTRES", + "nomCommune": "CASTRES" }, { - "codePostal": "81500", - "codeCommune": "81104", - "libelleAcheminement": "GIROUSSENS", - "nomCommune": "GIROUSSENS" + "codePostal": "71140", + "codeCommune": "71255", + "libelleAcheminement": "LESME", + "nomCommune": "LESME" }, { - "codePostal": "76190", - "codeCommune": "76253", - "libelleAcheminement": "ETOUTTEVILLE", - "nomCommune": "ETOUTTEVILLE" + "codePostal": "80250", + "codeCommune": "80740", + "libelleAcheminement": "SOURDON", + "nomCommune": "SOURDON" }, { - "codePostal": "25150", - "codeCommune": "25033", - "libelleAcheminement": "AUTECHAUX ROIDE", - "nomCommune": "AUTECHAUX ROIDE" + "codePostal": "68420", + "codeCommune": "68134", + "libelleAcheminement": "HERRLISHEIM PRES COLMAR", + "nomCommune": "HERRLISHEIM PRES COLMAR" }, { - "codePostal": "80220", - "codeCommune": "80373", - "libelleAcheminement": "GAMACHES", - "nomCommune": "GAMACHES" + "codePostal": "70600", + "codeCommune": "70122", + "libelleAcheminement": "CHAMPLITTE", + "nomCommune": "CHAMPLITTE" }, { - "codePostal": "81300", - "codeCommune": "81117", - "libelleAcheminement": "LABESSIERE CANDEIL", - "nomCommune": "LABESSIERE CANDEIL" + "codePostal": "81350", + "codeCommune": "81072", + "libelleAcheminement": "CRESPIN", + "nomCommune": "CRESPIN" }, { - "codePostal": "76640", - "codeCommune": "76258", - "libelleAcheminement": "TERRES DE CAUX", - "nomCommune": "TERRES DE CAUX" + "codePostal": "71100", + "codeCommune": "71269", + "libelleAcheminement": "LUX", + "nomCommune": "LUX" }, { - "codePostal": "25720", - "codeCommune": "25036", - "libelleAcheminement": "AVANNE AVENEY", - "nomCommune": "AVANNE AVENEY" + "codePostal": "80200", + "codeCommune": "80741", + "libelleAcheminement": "SOYECOURT", + "nomCommune": "SOYECOURT" }, { - "codePostal": "80800", - "codeCommune": "80376", - "libelleAcheminement": "GENTELLES", - "nomCommune": "GENTELLES" + "codePostal": "68118", + "codeCommune": "68139", + "libelleAcheminement": "HIRTZBACH", + "nomCommune": "HIRTZBACH" }, { - "codePostal": "81150", - "codeCommune": "81131", - "libelleAcheminement": "LAGRAVE", - "nomCommune": "LAGRAVE" + "codePostal": "70600", + "codeCommune": "70122", + "libelleAcheminement": "CHAMPLITTE", + "nomCommune": "CHAMPLITTE" }, { - "codePostal": "76440", - "codeCommune": "76261", - "libelleAcheminement": "LA FERTE ST SAMSON", - "nomCommune": "LA FERTE ST SAMSON" + "codePostal": "81470", + "codeCommune": "81076", + "libelleAcheminement": "CUQ TOULZA", + "nomCommune": "CUQ TOULZA" }, { - "codePostal": "25110", - "codeCommune": "25047", - "libelleAcheminement": "BAUME LES DAMES", - "nomCommune": "BAUME LES DAMES" + "codePostal": "71110", + "codeCommune": "71275", + "libelleAcheminement": "MARCIGNY", + "nomCommune": "MARCIGNY" }, { - "codePostal": "80360", - "codeCommune": "80378", - "libelleAcheminement": "GINCHY", - "nomCommune": "GINCHY" + "codePostal": "80110", + "codeCommune": "80751", + "libelleAcheminement": "THENNES", + "nomCommune": "THENNES" }, { - "codePostal": "81220", - "codeCommune": "81132", - "libelleAcheminement": "GUITALENS L ALBAREDE", - "nomCommune": "GUITALENS L ALBAREDE" + "codePostal": "68740", + "codeCommune": "68140", + "libelleAcheminement": "HIRTZFELDEN", + "nomCommune": "HIRTZFELDEN" }, { - "codePostal": "76270", - "codeCommune": "76262", - "libelleAcheminement": "FESQUES", - "nomCommune": "FESQUES" + "codePostal": "70600", + "codeCommune": "70122", + "libelleAcheminement": "CHAMPLITTE", + "nomCommune": "CHAMPLITTE" }, { - "codePostal": "25420", - "codeCommune": "25054", - "libelleAcheminement": "BERCHE", - "nomCommune": "BERCHE" + "codePostal": "81120", + "codeCommune": "81079", + "libelleAcheminement": "DENAT", + "nomCommune": "DENAT" }, { - "codePostal": "80690", - "codeCommune": "80380", - "libelleAcheminement": "GORENFLOS", - "nomCommune": "GORENFLOS" + "codePostal": "71120", + "codeCommune": "71276", + "libelleAcheminement": "MARCILLY LA GUEURCE", + "nomCommune": "MARCILLY LA GUEURCE" }, { - "codePostal": "81640", - "codeCommune": "81135", - "libelleAcheminement": "LAPARROUQUIAL", - "nomCommune": "LAPARROUQUIAL" + "codePostal": "80250", + "codeCommune": "80758", + "libelleAcheminement": "THORY", + "nomCommune": "THORY" }, { - "codePostal": "76220", - "codeCommune": "76263", - "libelleAcheminement": "LA FEUILLIE", - "nomCommune": "LA FEUILLIE" + "codePostal": "68125", + "codeCommune": "68146", + "libelleAcheminement": "HOUSSEN", + "nomCommune": "HOUSSEN" }, { - "codePostal": "25680", - "codeCommune": "25072", - "libelleAcheminement": "BONNAL", - "nomCommune": "BONNAL" + "codePostal": "70100", + "codeCommune": "70124", + "libelleAcheminement": "CHAMPTONNAY", + "nomCommune": "CHAMPTONNAY" }, { - "codePostal": "80132", - "codeCommune": "80385", - "libelleAcheminement": "GRAND LAVIERS", - "nomCommune": "GRAND LAVIERS" + "codePostal": "81290", + "codeCommune": "81084", + "libelleAcheminement": "ESCOUSSENS", + "nomCommune": "ESCOUSSENS" }, { - "codePostal": "81440", - "codeCommune": "81139", - "libelleAcheminement": "LAUTREC", - "nomCommune": "LAUTREC" + "codePostal": "71220", + "codeCommune": "71285", + "libelleAcheminement": "MARTIGNY LE COMTE", + "nomCommune": "MARTIGNY LE COMTE" }, { - "codePostal": "76740", - "codeCommune": "76272", - "libelleAcheminement": "FONTAINE LE DUN", - "nomCommune": "FONTAINE LE DUN" + "codePostal": "80300", + "codeCommune": "80769", + "libelleAcheminement": "TREUX", + "nomCommune": "TREUX" }, { - "codePostal": "25870", - "codeCommune": "25073", - "libelleAcheminement": "BONNAY", - "nomCommune": "BONNAY" + "codePostal": "68470", + "codeCommune": "68151", + "libelleAcheminement": "HUSSEREN WESSERLING", + "nomCommune": "HUSSEREN WESSERLING" }, { - "codePostal": "80500", - "codeCommune": "80386", - "libelleAcheminement": "GRATIBUS", - "nomCommune": "GRATIBUS" + "codePostal": "70100", + "codeCommune": "70125", + "libelleAcheminement": "CHAMPVANS", + "nomCommune": "CHAMPVANS" }, { - "codePostal": "81700", - "codeCommune": "81142", - "libelleAcheminement": "LEMPAUT", - "nomCommune": "LEMPAUT" + "codePostal": "81600", + "codeCommune": "81090", + "libelleAcheminement": "FENOLS", + "nomCommune": "FENOLS" }, { - "codePostal": "76440", - "codeCommune": "76276", - "libelleAcheminement": "FORGES LES EAUX", - "nomCommune": "FORGES LES EAUX" + "codePostal": "71240", + "codeCommune": "71308", + "libelleAcheminement": "MONTCEAUX RAGNY", + "nomCommune": "MONTCEAUX RAGNY" }, { - "codePostal": "25210", - "codeCommune": "25074", - "libelleAcheminement": "BONNETAGE", - "nomCommune": "BONNETAGE" + "codePostal": "80800", + "codeCommune": "80774", + "libelleAcheminement": "VAIRE SOUS CORBIE", + "nomCommune": "VAIRE SOUS CORBIE" }, { - "codePostal": "80500", - "codeCommune": "80395", - "libelleAcheminement": "GUERBIGNY", - "nomCommune": "GUERBIGNY" + "codePostal": "68110", + "codeCommune": "68154", + "libelleAcheminement": "ILLZACH", + "nomCommune": "ILLZACH" }, { - "codePostal": "81310", - "codeCommune": "81145", - "libelleAcheminement": "LISLE SUR TARN", - "nomCommune": "LISLE SUR TARN" + "codePostal": "70140", + "codeCommune": "70126", + "libelleAcheminement": "CHANCEY", + "nomCommune": "CHANCEY" }, { - "codePostal": "76780", - "codeCommune": "76292", - "libelleAcheminement": "FRY", - "nomCommune": "FRY" + "codePostal": "81500", + "codeCommune": "81092", + "libelleAcheminement": "FIAC", + "nomCommune": "FIAC" }, { - "codePostal": "25640", - "codeCommune": "25088", - "libelleAcheminement": "BRECONCHAUX", - "nomCommune": "BRECONCHAUX" + "codePostal": "71210", + "codeCommune": "71310", + "libelleAcheminement": "MONTCHANIN", + "nomCommune": "MONTCHANIN" }, { - "codePostal": "80290", - "codeCommune": "80402", - "libelleAcheminement": "GUIZANCOURT", - "nomCommune": "GUIZANCOURT" + "codePostal": "80132", + "codeCommune": "80779", + "libelleAcheminement": "VAUCHELLES LES QUESNOY", + "nomCommune": "VAUCHELLES LES QUESNOY" }, { - "codePostal": "81120", - "codeCommune": "81147", - "libelleAcheminement": "LOMBERS", - "nomCommune": "LOMBERS" + "codePostal": "68260", + "codeCommune": "68166", + "libelleAcheminement": "KINGERSHEIM", + "nomCommune": "KINGERSHEIM" }, { - "codePostal": "76740", - "codeCommune": "76294", - "libelleAcheminement": "LA GAILLARDE", - "nomCommune": "LA GAILLARDE" + "codePostal": "70700", + "codeCommune": "70130", + "libelleAcheminement": "CHARCENNE", + "nomCommune": "CHARCENNE" }, { - "codePostal": "25640", - "codeCommune": "25092", - "libelleAcheminement": "LA BRETENIERE", - "nomCommune": "LA BRETENIERE" + "codePostal": "81340", + "codeCommune": "81094", + "libelleAcheminement": "FRAISSINES", + "nomCommune": "FRAISSINES" }, { - "codePostal": "80250", - "codeCommune": "80403", - "libelleAcheminement": "GUYENCOURT SUR NOYE", - "nomCommune": "GUYENCOURT SUR NOYE" + "codePostal": "71320", + "codeCommune": "71317", + "libelleAcheminement": "MONTMORT", + "nomCommune": "MONTMORT" }, { - "codePostal": "81500", - "codeCommune": "81150", - "libelleAcheminement": "LUGAN", - "nomCommune": "LUGAN" + "codePostal": "80131", + "codeCommune": "80781", + "libelleAcheminement": "VAUVILLERS", + "nomCommune": "VAUVILLERS" }, { - "codePostal": "76700", - "codeCommune": "76296", - "libelleAcheminement": "GAINNEVILLE", - "nomCommune": "GAINNEVILLE" + "codePostal": "68510", + "codeCommune": "68170", + "libelleAcheminement": "KOETZINGUE", + "nomCommune": "KOETZINGUE" }, { - "codePostal": "25560", - "codeCommune": "25100", - "libelleAcheminement": "BULLE", - "nomCommune": "BULLE" + "codePostal": "70240", + "codeCommune": "70140", + "libelleAcheminement": "CHATENEY", + "nomCommune": "CHATENEY" }, { - "codePostal": "80240", - "codeCommune": "80404", - "libelleAcheminement": "GUYENCOURT SAULCOURT", - "nomCommune": "GUYENCOURT SAULCOURT" + "codePostal": "81430", + "codeCommune": "81096", + "libelleAcheminement": "LE FRAYSSE", + "nomCommune": "LE FRAYSSE" }, { - "codePostal": "81530", - "codeCommune": "81158", - "libelleAcheminement": "LE MASNAU MASSUGUIES", - "nomCommune": "LE MASNAU MASSUGUIES" + "codePostal": "71300", + "codeCommune": "71320", + "libelleAcheminement": "MONT ST VINCENT", + "nomCommune": "MONT ST VINCENT" }, { - "codePostal": "76540", - "codeCommune": "76299", - "libelleAcheminement": "GERPONVILLE", - "nomCommune": "GERPONVILLE" + "codePostal": "80800", + "codeCommune": "80785", + "libelleAcheminement": "VECQUEMONT", + "nomCommune": "VECQUEMONT" }, { - "codePostal": "25440", - "codeCommune": "25104", - "libelleAcheminement": "BY", - "nomCommune": "BY" + "codePostal": "68820", + "codeCommune": "68171", + "libelleAcheminement": "KRUTH", + "nomCommune": "KRUTH" }, { - "codePostal": "80440", - "codeCommune": "80405", - "libelleAcheminement": "HAILLES", - "nomCommune": "HAILLES" + "codePostal": "70500", + "codeCommune": "70143", + "libelleAcheminement": "CHAUVIREY LE CHATEL", + "nomCommune": "CHAUVIREY LE CHATEL" }, { - "codePostal": "81200", - "codeCommune": "81163", - "libelleAcheminement": "MAZAMET", - "nomCommune": "MAZAMET" + "codePostal": "81990", + "codeCommune": "81097", + "libelleAcheminement": "FREJAIROLLES", + "nomCommune": "FREJAIROLLES" }, { - "codePostal": "76700", - "codeCommune": "76305", - "libelleAcheminement": "GONFREVILLE L ORCHER", - "nomCommune": "GONFREVILLE L ORCHER" + "codePostal": "71220", + "codeCommune": "71323", + "libelleAcheminement": "MORNAY", + "nomCommune": "MORNAY" }, { - "codePostal": "25640", - "codeCommune": "25107", - "libelleAcheminement": "CENDREY", - "nomCommune": "CENDREY" + "codePostal": "80160", + "codeCommune": "80786", + "libelleAcheminement": "VELENNES", + "nomCommune": "VELENNES" }, { - "codePostal": "80110", - "codeCommune": "80414", - "libelleAcheminement": "HANGARD", - "nomCommune": "HANGARD" + "codePostal": "68440", + "codeCommune": "68174", + "libelleAcheminement": "LANDSER", + "nomCommune": "LANDSER" }, { - "codePostal": "81300", - "codeCommune": "81169", - "libelleAcheminement": "MISSECLE", - "nomCommune": "MISSECLE" + "codePostal": "70500", + "codeCommune": "70144", + "libelleAcheminement": "CHAUVIREY LE VIEIL", + "nomCommune": "CHAUVIREY LE VIEIL" }, { - "codePostal": "76700", - "codeCommune": "76305", - "libelleAcheminement": "GONFREVILLE L ORCHER", - "nomCommune": "GONFREVILLE L ORCHER" + "codePostal": "81290", + "codeCommune": "81120", + "libelleAcheminement": "LABRUGUIERE", + "nomCommune": "LABRUGUIERE" }, { - "codePostal": "25220", - "codeCommune": "25112", - "libelleAcheminement": "CHALEZEULE", - "nomCommune": "CHALEZEULE" + "codePostal": "71390", + "codeCommune": "71324", + "libelleAcheminement": "MOROGES", + "nomCommune": "MOROGES" }, { - "codePostal": "80131", - "codeCommune": "80417", - "libelleAcheminement": "HARBONNIERES", - "nomCommune": "HARBONNIERES" + "codePostal": "80270", + "codeCommune": "80788", + "libelleAcheminement": "VERGIES", + "nomCommune": "VERGIES" }, { - "codePostal": "81600", - "codeCommune": "81171", - "libelleAcheminement": "MONTANS", - "nomCommune": "MONTANS" + "codePostal": "68610", + "codeCommune": "68178", + "libelleAcheminement": "LAUTENBACHZELL", + "nomCommune": "LAUTENBACHZELL" }, { - "codePostal": "76520", - "codeCommune": "76313", - "libelleAcheminement": "GOUY", - "nomCommune": "GOUY" + "codePostal": "70400", + "codeCommune": "70149", + "libelleAcheminement": "CHENEBIER", + "nomCommune": "CHENEBIER" }, { - "codePostal": "25380", - "codeCommune": "25113", - "libelleAcheminement": "CHAMESEY", - "nomCommune": "CHAMESEY" + "codePostal": "81340", + "codeCommune": "81122", + "libelleAcheminement": "LACAPELLE PINET", + "nomCommune": "LACAPELLE PINET" }, { - "codePostal": "80560", - "codeCommune": "80420", - "libelleAcheminement": "HARPONVILLE", - "nomCommune": "HARPONVILLE" + "codePostal": "71270", + "codeCommune": "71326", + "libelleAcheminement": "MOUTHIER EN BRESSE", + "nomCommune": "MOUTHIER EN BRESSE" }, { - "codePostal": "81440", - "codeCommune": "81174", - "libelleAcheminement": "MONTDRAGON", - "nomCommune": "MONTDRAGON" + "codePostal": "80140", + "codeCommune": "80796", + "libelleAcheminement": "VILLEROY", + "nomCommune": "VILLEROY" }, { - "codePostal": "76116", - "codeCommune": "76316", - "libelleAcheminement": "GRAINVILLE SUR RY", - "nomCommune": "GRAINVILLE SUR RY" + "codePostal": "68220", + "codeCommune": "68183", + "libelleAcheminement": "LIEBENSWILLER", + "nomCommune": "LIEBENSWILLER" }, { - "codePostal": "25140", - "codeCommune": "25127", - "libelleAcheminement": "CHARQUEMONT", - "nomCommune": "CHARQUEMONT" + "codePostal": "70190", + "codeCommune": "70154", + "libelleAcheminement": "CIREY", + "nomCommune": "CIREY" }, { - "codePostal": "80670", - "codeCommune": "80423", - "libelleAcheminement": "HAVERNAS", - "nomCommune": "HAVERNAS" + "codePostal": "81170", + "codeCommune": "81123", + "libelleAcheminement": "LACAPELLE SEGALAR", + "nomCommune": "LACAPELLE SEGALAR" }, { - "codePostal": "81140", - "codeCommune": "81176", - "libelleAcheminement": "MONTELS", - "nomCommune": "MONTELS" + "codePostal": "71420", + "codeCommune": "71334", + "libelleAcheminement": "OUDRY", + "nomCommune": "OUDRY" }, { - "codePostal": "76660", - "codeCommune": "76320", - "libelleAcheminement": "GRANDCOURT", - "nomCommune": "GRANDCOURT" + "codePostal": "80640", + "codeCommune": "80813", + "libelleAcheminement": "VRAIGNES LES HORNOY", + "nomCommune": "VRAIGNES LES HORNOY" }, { - "codePostal": "25640", - "codeCommune": "25132", - "libelleAcheminement": "CHATILLON GUYOTTE", - "nomCommune": "CHATILLON GUYOTTE" + "codePostal": "68280", + "codeCommune": "68189", + "libelleAcheminement": "LOGELHEIM", + "nomCommune": "LOGELHEIM" }, { - "codePostal": "80290", - "codeCommune": "80436", - "libelleAcheminement": "HESCAMPS", - "nomCommune": "HESCAMPS" + "codePostal": "70230", + "codeCommune": "70159", + "libelleAcheminement": "COGNIERES", + "nomCommune": "COGNIERES" }, { - "codePostal": "81470", - "codeCommune": "81179", - "libelleAcheminement": "MONTGEY", - "nomCommune": "MONTGEY" + "codePostal": "81230", + "codeCommune": "81124", + "libelleAcheminement": "LACAUNE", + "nomCommune": "LACAUNE" }, { - "codePostal": "76120", - "codeCommune": "76322", - "libelleAcheminement": "LE GRAND QUEVILLY", - "nomCommune": "LE GRAND QUEVILLY" + "codePostal": "71430", + "codeCommune": "71340", + "libelleAcheminement": "PALINGES", + "nomCommune": "PALINGES" }, { - "codePostal": "25440", - "codeCommune": "25134", - "libelleAcheminement": "CHATILLON SUR LISON", - "nomCommune": "CHATILLON SUR LISON" + "codePostal": "81250", + "codeCommune": "81003", + "libelleAcheminement": "ALBAN", + "nomCommune": "ALBAN" }, { - "codePostal": "80640", - "codeCommune": "80443", - "libelleAcheminement": "HORNOY LE BOURG", - "nomCommune": "HORNOY LE BOURG" + "codePostal": "68140", + "codeCommune": "68193", + "libelleAcheminement": "LUTTENBACH", + "nomCommune": "LUTTENBACH PRES MUNSTER" }, { - "codePostal": "81360", - "codeCommune": "81182", - "libelleAcheminement": "MONTREDON LABESSONNIE", - "nomCommune": "MONTREDON LABESSONNIE" + "codePostal": "70000", + "codeCommune": "70162", + "libelleAcheminement": "COLOMBE LES VESOUL", + "nomCommune": "COLOMBE LES VESOUL" }, { - "codePostal": "76340", - "codeCommune": "76333", - "libelleAcheminement": "GUERVILLE", - "nomCommune": "GUERVILLE" + "codePostal": "81220", + "codeCommune": "81132", + "libelleAcheminement": "GUITALENS L ALBAREDE", + "nomCommune": "GUITALENS L ALBAREDE" }, { - "codePostal": "25170", - "codeCommune": "25136", - "libelleAcheminement": "CHAUCENNE", - "nomCommune": "CHAUCENNE" + "codePostal": "71600", + "codeCommune": "71354", + "libelleAcheminement": "POISSON", + "nomCommune": "POISSON" }, { - "codePostal": "80640", - "codeCommune": "80443", - "libelleAcheminement": "HORNOY LE BOURG", - "nomCommune": "HORNOY LE BOURG" + "codePostal": "81500", + "codeCommune": "81025", + "libelleAcheminement": "BELCASTEL", + "nomCommune": "BELCASTEL" }, { - "codePostal": "81320", - "codeCommune": "81193", - "libelleAcheminement": "NAGES", - "nomCommune": "NAGES" + "codePostal": "68470", + "codeCommune": "68213", + "libelleAcheminement": "MOLLAU", + "nomCommune": "MOLLAU" }, { - "codePostal": "76730", - "codeCommune": "76334", - "libelleAcheminement": "GUEURES", - "nomCommune": "GUEURES" + "codePostal": "70240", + "codeCommune": "70164", + "libelleAcheminement": "COLOMBOTTE", + "nomCommune": "COLOMBOTTE" }, { - "codePostal": "25240", - "codeCommune": "25142", - "libelleAcheminement": "CHAUX NEUVE", - "nomCommune": "CHAUX NEUVE" + "codePostal": "81140", + "codeCommune": "81136", + "libelleAcheminement": "LARROQUE", + "nomCommune": "LARROQUE" }, { - "codePostal": "80132", - "codeCommune": "80444", - "libelleAcheminement": "HUCHENNEVILLE", - "nomCommune": "HUCHENNEVILLE" + "codePostal": "71270", + "codeCommune": "71357", + "libelleAcheminement": "POURLANS", + "nomCommune": "POURLANS" }, { "codePostal": "81700", - "codeCommune": "81210", - "libelleAcheminement": "POUDIS", - "nomCommune": "POUDIS" + "codeCommune": "81030", + "libelleAcheminement": "BERTRE", + "nomCommune": "BERTRE" }, { - "codePostal": "76890", - "codeCommune": "76335", - "libelleAcheminement": "GUEUTTEVILLE", - "nomCommune": "GUEUTTEVILLE" + "codePostal": "68210", + "codeCommune": "68215", + "libelleAcheminement": "MONTREUX VIEUX", + "nomCommune": "MONTREUX VIEUX" }, { - "codePostal": "25430", - "codeCommune": "25145", - "libelleAcheminement": "CHAZOT", - "nomCommune": "CHAZOT" + "codePostal": "70120", + "codeCommune": "70165", + "libelleAcheminement": "COMBEAUFONTAINE", + "nomCommune": "COMBEAUFONTAINE" }, { - "codePostal": "80430", - "codeCommune": "80450", - "libelleAcheminement": "INVAL BOIRON", - "nomCommune": "INVAL BOIRON" + "codePostal": "81440", + "codeCommune": "81139", + "libelleAcheminement": "LAUTREC", + "nomCommune": "LAUTREC" }, { - "codePostal": "81120", - "codeCommune": "81218", - "libelleAcheminement": "PUYGOUZON", - "nomCommune": "PUYGOUZON" + "codePostal": "71290", + "codeCommune": "71359", + "libelleAcheminement": "PRETY", + "nomCommune": "PRETY" }, { - "codePostal": "76450", - "codeCommune": "76339", - "libelleAcheminement": "LE HANOUARD", - "nomCommune": "LE HANOUARD" + "codePostal": "81660", + "codeCommune": "81036", + "libelleAcheminement": "BOUT DU PONT DE LARN", + "nomCommune": "BOUT DU PONT DE LARN" }, { - "codePostal": "25440", - "codeCommune": "25154", - "libelleAcheminement": "CHOUZELOT", - "nomCommune": "CHOUZELOT" + "codePostal": "68690", + "codeCommune": "68217", + "libelleAcheminement": "MOOSCH", + "nomCommune": "MOOSCH" }, { - "codePostal": "80250", - "codeCommune": "80452", - "libelleAcheminement": "JUMEL", - "nomCommune": "JUMEL" + "codePostal": "70160", + "codeCommune": "70170", + "libelleAcheminement": "CONTREGLISE", + "nomCommune": "CONTREGLISE" }, { - "codePostal": "81330", - "codeCommune": "81221", - "libelleAcheminement": "RAYSSAC", - "nomCommune": "RAYSSAC" + "codePostal": "81340", + "codeCommune": "81141", + "libelleAcheminement": "LEDAS ET PENTHIES", + "nomCommune": "LEDAS ET PENTHIES" }, { - "codePostal": "76440", - "codeCommune": "76343", - "libelleAcheminement": "HAUCOURT", - "nomCommune": "HAUCOURT" + "codePostal": "71960", + "codeCommune": "71360", + "libelleAcheminement": "PRISSE", + "nomCommune": "PRISSE" }, { - "codePostal": "25340", - "codeCommune": "25156", - "libelleAcheminement": "PAYS DE CLERVAL", - "nomCommune": "PAYS DE CLERVAL" + "codePostal": "81390", + "codeCommune": "81039", + "libelleAcheminement": "BRIATEXTE", + "nomCommune": "BRIATEXTE" }, { - "codePostal": "80430", - "codeCommune": "80456", - "libelleAcheminement": "LAFRESGUIMONT ST MARTIN", - "nomCommune": "LAFRESGUIMONT ST MARTIN" + "codePostal": "68790", + "codeCommune": "68218", + "libelleAcheminement": "MORSCHWILLER LE BAS", + "nomCommune": "MORSCHWILLER LE BAS" }, { - "codePostal": "81470", - "codeCommune": "81229", - "libelleAcheminement": "ROQUEVIDAL", - "nomCommune": "ROQUEVIDAL" + "codePostal": "70000", + "codeCommune": "70179", + "libelleAcheminement": "COULEVON", + "nomCommune": "COULEVON" }, { - "codePostal": "76550", - "codeCommune": "76349", - "libelleAcheminement": "HAUTOT SUR MER", - "nomCommune": "HAUTOT SUR MER" + "codePostal": "81110", + "codeCommune": "81143", + "libelleAcheminement": "LESCOUT", + "nomCommune": "LESCOUT" }, { - "codePostal": "25150", - "codeCommune": "25187", - "libelleAcheminement": "DAMBELIN", - "nomCommune": "DAMBELIN" + "codePostal": "71500", + "codeCommune": "71367", + "libelleAcheminement": "RATTE", + "nomCommune": "RATTE" }, { - "codePostal": "80430", - "codeCommune": "80456", - "libelleAcheminement": "LAFRESGUIMONT ST MARTIN", - "nomCommune": "LAFRESGUIMONT ST MARTIN" + "codePostal": "81600", + "codeCommune": "81046", + "libelleAcheminement": "CADALEN", + "nomCommune": "CADALEN" }, { - "codePostal": "81400", - "codeCommune": "81230", - "libelleAcheminement": "ROSIERES", - "nomCommune": "ROSIERES" + "codePostal": "68480", + "codeCommune": "68243", + "libelleAcheminement": "OBERLARG", + "nomCommune": "OBERLARG" }, { - "codePostal": "76620", - "codeCommune": "76351", - "libelleAcheminement": "LE HAVRE", - "nomCommune": "LE HAVRE" + "codePostal": "70400", + "codeCommune": "70184", + "libelleAcheminement": "COUTHENANS", + "nomCommune": "COUTHENANS" }, { - "codePostal": "25110", - "codeCommune": "25189", - "libelleAcheminement": "DAMMARTIN LES TEMPLIERS", - "nomCommune": "DAMMARTIN LES TEMPLIERS" + "codePostal": "81130", + "codeCommune": "81152", + "libelleAcheminement": "MAILHOC", + "nomCommune": "MAILHOC" }, { - "codePostal": "80800", - "codeCommune": "80458", - "libelleAcheminement": "LAHOUSSOYE", - "nomCommune": "LAHOUSSOYE" + "codePostal": "71150", + "codeCommune": "71378", + "libelleAcheminement": "RULLY", + "nomCommune": "RULLY" }, { - "codePostal": "81240", - "codeCommune": "81231", - "libelleAcheminement": "ROUAIROUX", - "nomCommune": "ROUAIROUX" + "codePostal": "81140", + "codeCommune": "81056", + "libelleAcheminement": "CAMPAGNAC", + "nomCommune": "CAMPAGNAC" }, { - "codePostal": "76780", - "codeCommune": "76352", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "68420", + "codeCommune": "68244", + "libelleAcheminement": "OBERMORSCHWIHR", + "nomCommune": "OBERMORSCHWIHR" }, { - "codePostal": "25310", - "codeCommune": "25194", - "libelleAcheminement": "DANNEMARIE", - "nomCommune": "DANNEMARIE" + "codePostal": "70100", + "codeCommune": "70185", + "libelleAcheminement": "CRESANCEY", + "nomCommune": "CRESANCEY" }, { - "codePostal": "80290", - "codeCommune": "80460", - "libelleAcheminement": "LAMARONDE", - "nomCommune": "LAMARONDE" + "codePostal": "81530", + "codeCommune": "81158", + "libelleAcheminement": "LE MASNAU MASSUGUIES", + "nomCommune": "LE MASNAU MASSUGUIES" }, { - "codePostal": "81120", - "codeCommune": "81233", - "libelleAcheminement": "TERRE DE BANCALIE", - "nomCommune": "TERRE DE BANCALIE" + "codePostal": "71250", + "codeCommune": "71381", + "libelleAcheminement": "SAILLY", + "nomCommune": "SAILLY" }, { - "codePostal": "76740", - "codeCommune": "76353", - "libelleAcheminement": "HEBERVILLE", - "nomCommune": "HEBERVILLE" + "codePostal": "81260", + "codeCommune": "81062", + "libelleAcheminement": "FONTRIEU", + "nomCommune": "FONTRIEU" }, { - "codePostal": "25580", - "codeCommune": "25208", - "libelleAcheminement": "DURNES", - "nomCommune": "DURNES" + "codePostal": "68500", + "codeCommune": "68250", + "libelleAcheminement": "ORSCHWIHR", + "nomCommune": "ORSCHWIHR" }, { - "codePostal": "80450", - "codeCommune": "80461", - "libelleAcheminement": "LAMOTTE BREBIERE", - "nomCommune": "LAMOTTE BREBIERE" + "codePostal": "70400", + "codeCommune": "70187", + "libelleAcheminement": "CREVANS LA CHAPELLE LES GRANGES", + "nomCommune": "CREVANS ET LA CHAPELLE LES GRANGES" }, { - "codePostal": "81240", - "codeCommune": "81239", - "libelleAcheminement": "ST AMANS VALTORET", - "nomCommune": "ST AMANS VALTORET" + "codePostal": "81110", + "codeCommune": "81160", + "libelleAcheminement": "MASSAGUEL", + "nomCommune": "MASSAGUEL" }, { - "codePostal": "76730", - "codeCommune": "76356", - "libelleAcheminement": "HERMANVILLE", - "nomCommune": "HERMANVILLE" + "codePostal": "71430", + "codeCommune": "71395", + "libelleAcheminement": "ST BONNET DE VIEILLE VIGNE", + "nomCommune": "ST BONNET DE VIEILLE VIGNE" }, { - "codePostal": "25290", - "codeCommune": "25220", - "libelleAcheminement": "EPEUGNEY", - "nomCommune": "EPEUGNEY" + "codePostal": "81140", + "codeCommune": "81064", + "libelleAcheminement": "CASTELNAU DE MONTMIRAL", + "nomCommune": "CASTELNAU DE MONTMIRAL" }, { - "codePostal": "80150", - "codeCommune": "80462", - "libelleAcheminement": "LAMOTTE BULEUX", - "nomCommune": "LAMOTTE BULEUX" + "codePostal": "68570", + "codeCommune": "68251", + "libelleAcheminement": "OSENBACH", + "nomCommune": "OSENBACH" }, { - "codePostal": "81400", - "codeCommune": "81244", - "libelleAcheminement": "ST BENOIT DE CARMAUX", - "nomCommune": "ST BENOIT DE CARMAUX" + "codePostal": "70210", + "codeCommune": "70200", + "libelleAcheminement": "DAMPVALLEY ST PANCRAS", + "nomCommune": "DAMPVALLEY ST PANCRAS" }, { - "codePostal": "76750", - "codeCommune": "76359", - "libelleAcheminement": "HERONCHELLES", - "nomCommune": "HERONCHELLES" + "codePostal": "81200", + "codeCommune": "81163", + "libelleAcheminement": "MAZAMET", + "nomCommune": "MAZAMET" }, { - "codePostal": "25580", - "codeCommune": "25222", - "libelleAcheminement": "ETALANS", - "nomCommune": "ETALANS" + "codePostal": "71110", + "codeCommune": "71415", + "libelleAcheminement": "STE FOY", + "nomCommune": "STE FOY" }, { - "codePostal": "80800", - "codeCommune": "80463", - "libelleAcheminement": "LAMOTTE WARFUSEE", - "nomCommune": "LAMOTTE WARFUSEE" + "codePostal": "81570", + "codeCommune": "81075", + "libelleAcheminement": "CUQ LES VIELMUR", + "nomCommune": "CUQ" }, { - "codePostal": "81190", - "codeCommune": "81245", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "68190", + "codeCommune": "68260", + "libelleAcheminement": "RAEDERSHEIM", + "nomCommune": "RAEDERSHEIM" }, { - "codePostal": "76770", - "codeCommune": "76366", - "libelleAcheminement": "LE HOULME", - "nomCommune": "LE HOULME" + "codePostal": "70210", + "codeCommune": "70202", + "libelleAcheminement": "DEMANGEVELLE", + "nomCommune": "DEMANGEVELLE" }, { - "codePostal": "25330", - "codeCommune": "25223", - "libelleAcheminement": "ETERNOZ", - "nomCommune": "ETERNOZ" + "codePostal": "81440", + "codeCommune": "81174", + "libelleAcheminement": "MONTDRAGON", + "nomCommune": "MONTDRAGON" }, { - "codePostal": "80800", - "codeCommune": "80463", - "libelleAcheminement": "LAMOTTE WARFUSEE", - "nomCommune": "LAMOTTE WARFUSEE" + "codePostal": "71370", + "codeCommune": "71420", + "libelleAcheminement": "ST GERMAIN DU PLAIN", + "nomCommune": "ST GERMAIN DU PLAIN" }, { - "codePostal": "81700", - "codeCommune": "81251", - "libelleAcheminement": "ST GERMAIN DES PRES", - "nomCommune": "ST GERMAIN DES PRES" + "codePostal": "81220", + "codeCommune": "81078", + "libelleAcheminement": "DAMIATTE", + "nomCommune": "DAMIATTE" }, { - "codePostal": "76110", - "codeCommune": "76368", - "libelleAcheminement": "HOUQUETOT", - "nomCommune": "HOUQUETOT" + "codePostal": "68890", + "codeCommune": "68266", + "libelleAcheminement": "REGUISHEIM", + "nomCommune": "REGUISHEIM" }, { - "codePostal": "25330", - "codeCommune": "25223", - "libelleAcheminement": "ETERNOZ", - "nomCommune": "ETERNOZ" + "codePostal": "70180", + "codeCommune": "70204", + "libelleAcheminement": "DENEVRE", + "nomCommune": "DENEVRE" }, { - "codePostal": "80360", - "codeCommune": "80472", - "libelleAcheminement": "LESBOEUFS", - "nomCommune": "LESBOEUFS" + "codePostal": "81170", + "codeCommune": "81184", + "libelleAcheminement": "MONTROSIER", + "nomCommune": "MONTROSIER" }, { - "codePostal": "81210", - "codeCommune": "81252", - "libelleAcheminement": "ST GERMIER", - "nomCommune": "ST GERMIER" + "codePostal": "71390", + "codeCommune": "71422", + "libelleAcheminement": "ST GERMAIN LES BUXY", + "nomCommune": "ST GERMAIN LES BUXY" }, { - "codePostal": "76117", - "codeCommune": "76374", - "libelleAcheminement": "INCHEVILLE", - "nomCommune": "INCHEVILLE" + "codePostal": "81110", + "codeCommune": "81081", + "libelleAcheminement": "DOURGNE", + "nomCommune": "DOURGNE" }, { - "codePostal": "25330", - "codeCommune": "25223", - "libelleAcheminement": "ETERNOZ", - "nomCommune": "ETERNOZ" + "codePostal": "68210", + "codeCommune": "68268", + "libelleAcheminement": "RETZWILLER", + "nomCommune": "RETZWILLER" }, { - "codePostal": "80320", - "codeCommune": "80474", - "libelleAcheminement": "LICOURT", - "nomCommune": "LICOURT" + "codePostal": "70310", + "codeCommune": "70217", + "libelleAcheminement": "ESMOULIERES", + "nomCommune": "ESMOULIERES" }, { - "codePostal": "81170", - "codeCommune": "81262", - "libelleAcheminement": "ST MARCEL CAMPES", - "nomCommune": "ST MARCEL CAMPES" + "codePostal": "81190", + "codeCommune": "81186", + "libelleAcheminement": "MOULARES", + "nomCommune": "MOULARES" }, { - "codePostal": "76730", - "codeCommune": "76379", - "libelleAcheminement": "LAMBERVILLE", - "nomCommune": "LAMBERVILLE" + "codePostal": "71170", + "codeCommune": "71428", + "libelleAcheminement": "ST IGNY DE ROCHE", + "nomCommune": "ST IGNY DE ROCHE" }, { - "codePostal": "25260", - "codeCommune": "25224", - "libelleAcheminement": "ETOUVANS", - "nomCommune": "ETOUVANS" + "codePostal": "81600", + "codeCommune": "81099", + "libelleAcheminement": "GAILLAC", + "nomCommune": "GAILLAC" }, { - "codePostal": "80580", - "codeCommune": "80476", - "libelleAcheminement": "LIERCOURT", - "nomCommune": "LIERCOURT" + "codePostal": "68400", + "codeCommune": "68271", + "libelleAcheminement": "RIEDISHEIM", + "nomCommune": "RIEDISHEIM" }, { - "codePostal": "81490", - "codeCommune": "81269", - "libelleAcheminement": "ST SALVY DE LA BALME", - "nomCommune": "ST SALVY DE LA BALME" + "codePostal": "70110", + "codeCommune": "70219", + "libelleAcheminement": "ESPRELS", + "nomCommune": "ESPRELS" }, { - "codePostal": "76730", - "codeCommune": "76383", - "libelleAcheminement": "LESTANVILLE", - "nomCommune": "LESTANVILLE" + "codePostal": "81170", + "codeCommune": "81191", + "libelleAcheminement": "MOUZIEYS PANENS", + "nomCommune": "MOUZIEYS PANENS" }, { - "codePostal": "25460", - "codeCommune": "25228", - "libelleAcheminement": "ETUPES", - "nomCommune": "ETUPES" + "codePostal": "71600", + "codeCommune": "71439", + "libelleAcheminement": "ST LEGER LES PARAY", + "nomCommune": "ST LEGER LES PARAY" }, { - "codePostal": "80150", - "codeCommune": "80477", - "libelleAcheminement": "LIGESCOURT", - "nomCommune": "LIGESCOURT" + "codePostal": "81450", + "codeCommune": "81101", + "libelleAcheminement": "LE GARRIC", + "nomCommune": "LE GARRIC" }, { - "codePostal": "81350", - "codeCommune": "81277", - "libelleAcheminement": "SAUSSENAC", - "nomCommune": "SAUSSENAC" + "codePostal": "68590", + "codeCommune": "68280", + "libelleAcheminement": "RODERN", + "nomCommune": "RODERN" }, { - "codePostal": "76170", - "codeCommune": "76384", - "libelleAcheminement": "LILLEBONNE", - "nomCommune": "LILLEBONNE" + "codePostal": "70310", + "codeCommune": "70227", + "libelleAcheminement": "FAUCOGNEY ET LA MER", + "nomCommune": "FAUCOGNEY ET LA MER" }, { - "codePostal": "25400", - "codeCommune": "25230", - "libelleAcheminement": "EXINCOURT", - "nomCommune": "EXINCOURT" + "codePostal": "81700", + "codeCommune": "81200", + "libelleAcheminement": "PALLEVILLE", + "nomCommune": "PALLEVILLE" }, { - "codePostal": "80510", - "codeCommune": "80486", - "libelleAcheminement": "LONG", - "nomCommune": "LONG" + "codePostal": "71510", + "codeCommune": "71442", + "libelleAcheminement": "ST LEGER SUR DHEUNE", + "nomCommune": "ST LEGER SUR DHEUNE" }, { - "codePostal": "81630", - "codeCommune": "81279", - "libelleAcheminement": "LA SAUZIERE ST JEAN", - "nomCommune": "LA SAUZIERE ST JEAN" + "codePostal": "81300", + "codeCommune": "81105", + "libelleAcheminement": "GRAULHET", + "nomCommune": "GRAULHET" }, { - "codePostal": "76440", - "codeCommune": "76393", - "libelleAcheminement": "LONGMESNIL", - "nomCommune": "LONGMESNIL" + "codePostal": "68660", + "codeCommune": "68283", + "libelleAcheminement": "ROMBACH LE FRANC", + "nomCommune": "ROMBACH LE FRANC" }, { - "codePostal": "25580", - "codeCommune": "25233", - "libelleAcheminement": "FALLERANS", - "nomCommune": "FALLERANS" + "codePostal": "70160", + "codeCommune": "70228", + "libelleAcheminement": "FAVERNEY", + "nomCommune": "FAVERNEY" }, { - "codePostal": "80330", - "codeCommune": "80489", - "libelleAcheminement": "LONGUEAU", - "nomCommune": "LONGUEAU" + "codePostal": "81660", + "codeCommune": "81209", + "libelleAcheminement": "PONT DE LARN", + "nomCommune": "PONT DE LARN" }, { - "codePostal": "81120", - "codeCommune": "81295", - "libelleAcheminement": "TEILLET", - "nomCommune": "TEILLET" + "codePostal": "71350", + "codeCommune": "71443", + "libelleAcheminement": "ST LOUP GEANGES", + "nomCommune": "ST LOUP GEANGES" }, { - "codePostal": "76270", - "codeCommune": "76399", - "libelleAcheminement": "LUCY", - "nomCommune": "LUCY" + "codePostal": "81800", + "codeCommune": "81106", + "libelleAcheminement": "GRAZAC", + "nomCommune": "GRAZAC" }, { - "codePostal": "25720", - "codeCommune": "25245", - "libelleAcheminement": "FONTAIN", - "nomCommune": "FONTAIN" + "codePostal": "68128", + "codeCommune": "68286", + "libelleAcheminement": "ROSENAU", + "nomCommune": "ROSENAU" }, { - "codePostal": "80250", - "codeCommune": "80494", - "libelleAcheminement": "LOUVRECHY", - "nomCommune": "LOUVRECHY" + "codePostal": "70360", + "codeCommune": "70232", + "libelleAcheminement": "FERRIERES LES SCEY", + "nomCommune": "FERRIERES LES SCEY" }, { "codePostal": "81500", - "codeCommune": "81298", - "libelleAcheminement": "TEULAT", - "nomCommune": "TEULAT" + "codeCommune": "81213", + "libelleAcheminement": "PRATVIEL", + "nomCommune": "PRATVIEL" }, { - "codePostal": "76940", - "codeCommune": "76401", - "libelleAcheminement": "ARELAUNE EN SEINE", - "nomCommune": "ARELAUNE EN SEINE" + "codePostal": "71240", + "codeCommune": "71444", + "libelleAcheminement": "ST LOUP DE VARENNES", + "nomCommune": "ST LOUP DE VARENNES" }, { - "codePostal": "25370", - "codeCommune": "25252", - "libelleAcheminement": "FOURCATIER ET MAISON NEUVE", - "nomCommune": "FOURCATIER ET MAISON NEUVE" + "codePostal": "81440", + "codeCommune": "81109", + "libelleAcheminement": "JONQUIERES", + "nomCommune": "JONQUIERES" }, { - "codePostal": "80600", - "codeCommune": "80495", - "libelleAcheminement": "LUCHEUX", - "nomCommune": "LUCHEUX" + "codePostal": "68250", + "codeCommune": "68287", + "libelleAcheminement": "ROUFFACH", + "nomCommune": "ROUFFACH" }, { - "codePostal": "81340", - "codeCommune": "81303", - "libelleAcheminement": "TREBAS", - "nomCommune": "TREBAS" + "codePostal": "70230", + "codeCommune": "70243", + "libelleAcheminement": "FONTENOIS LES MONTBOZON", + "nomCommune": "FONTENOIS LES MONTBOZON" }, { - "codePostal": "76460", - "codeCommune": "76407", - "libelleAcheminement": "MANNEVILLE ES PLAINS", - "nomCommune": "MANNEVILLE ES PLAINS" + "codePostal": "81120", + "codeCommune": "81218", + "libelleAcheminement": "PUYGOUZON", + "nomCommune": "PUYGOUZON" }, { - "codePostal": "25140", - "codeCommune": "25255", - "libelleAcheminement": "FOURNET BLANCHEROCHE", - "nomCommune": "FOURNET BLANCHEROCHE" + "codePostal": "71118", + "codeCommune": "71448", + "libelleAcheminement": "ST MARTIN BELLE ROCHE", + "nomCommune": "ST MARTIN BELLE ROCHE" }, { - "codePostal": "80560", - "codeCommune": "80498", - "libelleAcheminement": "MAILLY MAILLET", - "nomCommune": "MAILLY MAILLET" + "codePostal": "81190", + "codeCommune": "81110", + "libelleAcheminement": "JOUQUEVIEL", + "nomCommune": "JOUQUEVIEL" }, { - "codePostal": "81330", - "codeCommune": "81305", - "libelleAcheminement": "VABRE", - "nomCommune": "VABRE" + "codePostal": "68550", + "codeCommune": "68292", + "libelleAcheminement": "ST AMARIN", + "nomCommune": "ST AMARIN" }, { - "codePostal": "76150", - "codeCommune": "76410", - "libelleAcheminement": "MAROMME", - "nomCommune": "MAROMME" + "codePostal": "70800", + "codeCommune": "70249", + "libelleAcheminement": "FRANCALMONT", + "nomCommune": "FRANCALMONT" }, { - "codePostal": "25270", - "codeCommune": "25270", - "libelleAcheminement": "GEVRESIN", - "nomCommune": "GEVRESIN" + "codePostal": "81990", + "codeCommune": "81218", + "libelleAcheminement": "PUYGOUZON", + "nomCommune": "PUYGOUZON" }, { - "codePostal": "80110", - "codeCommune": "80499", - "libelleAcheminement": "MAILLY RAINEVAL", - "nomCommune": "MAILLY RAINEVAL" + "codePostal": "71740", + "codeCommune": "71451", + "libelleAcheminement": "ST MARTIN DE LIXY", + "nomCommune": "ST MARTIN DE LIXY" }, { - "codePostal": "81350", - "codeCommune": "81306", - "libelleAcheminement": "VALDERIES", - "nomCommune": "VALDERIES" + "codePostal": "81150", + "codeCommune": "81112", + "libelleAcheminement": "LABASTIDE DE LEVIS", + "nomCommune": "LABASTIDE DE LEVIS" }, { - "codePostal": "76880", - "codeCommune": "76413", - "libelleAcheminement": "MARTIGNY", - "nomCommune": "MARTIGNY" + "codePostal": "68127", + "codeCommune": "68295", + "libelleAcheminement": "STE CROIX EN PLAINE", + "nomCommune": "STE CROIX EN PLAINE" }, { - "codePostal": "25310", - "codeCommune": "25274", - "libelleAcheminement": "GLAY", - "nomCommune": "GLAY" + "codePostal": "70200", + "codeCommune": "70250", + "libelleAcheminement": "FRANCHEVELLE", + "nomCommune": "FRANCHEVELLE" }, { - "codePostal": "80220", - "codeCommune": "80500", - "libelleAcheminement": "MAISNIERES", - "nomCommune": "MAISNIERES" + "codePostal": "81330", + "codeCommune": "81221", + "libelleAcheminement": "RAYSSAC", + "nomCommune": "RAYSSAC" }, { - "codePostal": "81500", - "codeCommune": "81310", - "libelleAcheminement": "VEILHES", - "nomCommune": "VEILHES" + "codePostal": "71460", + "codeCommune": "71455", + "libelleAcheminement": "ST MARTIN DU TARTRE", + "nomCommune": "ST MARTIN DU TARTRE" }, { - "codePostal": "76370", - "codeCommune": "76414", - "libelleAcheminement": "MARTIN EGLISE", - "nomCommune": "MARTIN EGLISE" + "codePostal": "81400", + "codeCommune": "81114", + "libelleAcheminement": "LABASTIDE GABAUSSE", + "nomCommune": "LABASTIDE GABAUSSE" }, { - "codePostal": "25340", - "codeCommune": "25276", - "libelleAcheminement": "GONDENANS MONTBY", - "nomCommune": "GONDENANS MONTBY" + "codePostal": "68160", + "codeCommune": "68298", + "libelleAcheminement": "STE MARIE AUX MINES", + "nomCommune": "STE MARIE AUX MINES" }, { - "codePostal": "80132", - "codeCommune": "80512", - "libelleAcheminement": "MAREUIL CAUBERT", - "nomCommune": "MAREUIL CAUBERT" + "codePostal": "70180", + "codeCommune": "70251", + "libelleAcheminement": "FRANCOURT", + "nomCommune": "FRANCOURT" }, { - "codePostal": "81140", - "codeCommune": "81313", - "libelleAcheminement": "LE VERDIER", - "nomCommune": "LE VERDIER" + "codePostal": "81600", + "codeCommune": "81225", + "libelleAcheminement": "RIVIERES", + "nomCommune": "RIVIERES" }, { - "codePostal": "76680", - "codeCommune": "76417", - "libelleAcheminement": "MAUCOMBLE", - "nomCommune": "MAUCOMBLE" + "codePostal": "71350", + "codeCommune": "71457", + "libelleAcheminement": "ST MARTIN EN GATINOIS", + "nomCommune": "ST MARTIN EN GATINOIS" }, { - "codePostal": "25680", - "codeCommune": "25279", - "libelleAcheminement": "GOUHELANS", - "nomCommune": "GOUHELANS" + "codePostal": "81270", + "codeCommune": "81115", + "libelleAcheminement": "LABASTIDE ROUAIROUX", + "nomCommune": "LABASTIDE ROUAIROUX" }, { - "codePostal": "80360", - "codeCommune": "80513", - "libelleAcheminement": "MARICOURT", - "nomCommune": "MARICOURT" + "codePostal": "68570", + "codeCommune": "68318", + "libelleAcheminement": "SOULTZMATT", + "nomCommune": "SOULTZMATT" }, { - "codePostal": "81430", - "codeCommune": "81317", - "libelleAcheminement": "VILLEFRANCHE D ALBIGEOIS", - "nomCommune": "VILLEFRANCHE D ALBIGEOIS" + "codePostal": "70600", + "codeCommune": "70252", + "libelleAcheminement": "FRAMONT", + "nomCommune": "FRAMONT" }, { - "codePostal": "76170", - "codeCommune": "76421", - "libelleAcheminement": "MELAMARE", - "nomCommune": "MELAMARE" + "codePostal": "81240", + "codeCommune": "81231", + "libelleAcheminement": "ROUAIROUX", + "nomCommune": "ROUAIROUX" }, { - "codePostal": "25620", - "codeCommune": "25297", - "libelleAcheminement": "LE GRATTERIS", - "nomCommune": "LE GRATTERIS" + "codePostal": "71670", + "codeCommune": "71468", + "libelleAcheminement": "ST PIERRE DE VARENNES", + "nomCommune": "ST PIERRE DE VARENNES" }, { - "codePostal": "80360", - "codeCommune": "80521", - "libelleAcheminement": "MAUREPAS", - "nomCommune": "MAUREPAS" + "codePostal": "81240", + "codeCommune": "81121", + "libelleAcheminement": "LACABAREDE", + "nomCommune": "LACABAREDE" }, { - "codePostal": "81640", - "codeCommune": "81322", - "libelleAcheminement": "VIRAC", - "nomCommune": "VIRAC" + "codePostal": "68720", + "codeCommune": "68320", + "libelleAcheminement": "SPECHBACH", + "nomCommune": "SPECHBACH" }, { - "codePostal": "76660", - "codeCommune": "76430", - "libelleAcheminement": "MESNIL FOLLEMPRISE", - "nomCommune": "MESNIL FOLLEMPRISE" + "codePostal": "70700", + "codeCommune": "70253", + "libelleAcheminement": "FRASNE LE CHATEAU", + "nomCommune": "FRASNE LE CHATEAU" }, { - "codePostal": "25620", - "codeCommune": "25305", - "libelleAcheminement": "L HOPITAL DU GROSBOIS", - "nomCommune": "L HOPITAL DU GROSBOIS" + "codePostal": "81150", + "codeCommune": "81232", + "libelleAcheminement": "ROUFFIAC", + "nomCommune": "ROUFFIAC" }, { - "codePostal": "80290", - "codeCommune": "80528", - "libelleAcheminement": "MEREAUCOURT", - "nomCommune": "MEREAUCOURT" + "codePostal": "71320", + "codeCommune": "71474", + "libelleAcheminement": "STE RADEGONDE", + "nomCommune": "STE RADEGONDE" }, { - "codePostal": "82350", - "codeCommune": "82002", - "libelleAcheminement": "ALBIAS", - "nomCommune": "ALBIAS" + "codePostal": "81150", + "codeCommune": "81131", + "libelleAcheminement": "LAGRAVE", + "nomCommune": "LAGRAVE" }, { - "codePostal": "76210", - "codeCommune": "76439", - "libelleAcheminement": "MIRVILLE", - "nomCommune": "MIRVILLE" + "codePostal": "68440", + "codeCommune": "68323", + "libelleAcheminement": "STEINBRUNN LE BAS", + "nomCommune": "STEINBRUNN LE BAS" }, { - "codePostal": "25340", - "codeCommune": "25306", - "libelleAcheminement": "L HOPITAL ST LIEFFROY", - "nomCommune": "L HOPITAL ST LIEFFROY" + "codePostal": "70270", + "codeCommune": "70256", + "libelleAcheminement": "FRESSE", + "nomCommune": "FRESSE" }, { - "codePostal": "80800", - "codeCommune": "80530", - "libelleAcheminement": "MERICOURT L ABBE", - "nomCommune": "MERICOURT L ABBE" + "codePostal": "81290", + "codeCommune": "81235", + "libelleAcheminement": "ST AFFRIQUE LES MONTAGNES", + "nomCommune": "ST AFFRIQUE LES MONTAGNES" }, { - "codePostal": "82220", - "codeCommune": "82007", - "libelleAcheminement": "AUTY", - "nomCommune": "AUTY" + "codePostal": "71500", + "codeCommune": "71484", + "libelleAcheminement": "ST USUGE", + "nomCommune": "ST USUGE" }, { - "codePostal": "76340", - "codeCommune": "76441", - "libelleAcheminement": "MONCHAUX SORENG", - "nomCommune": "MONCHAUX SORENG" + "codePostal": "81700", + "codeCommune": "81142", + "libelleAcheminement": "LEMPAUT", + "nomCommune": "LEMPAUT" }, { - "codePostal": "25370", - "codeCommune": "25308", - "libelleAcheminement": "LES HOPITAUX VIEUX", - "nomCommune": "LES HOPITAUX VIEUX" + "codePostal": "68140", + "codeCommune": "68329", + "libelleAcheminement": "STOSSWIHR", + "nomCommune": "STOSSWIHR" }, { - "codePostal": "80640", - "codeCommune": "80531", - "libelleAcheminement": "MERICOURT EN VIMEU", - "nomCommune": "MERICOURT EN VIMEU" + "codePostal": "70110", + "codeCommune": "70264", + "libelleAcheminement": "GEORFANS", + "nomCommune": "GEORFANS" }, { - "codePostal": "82340", - "codeCommune": "82008", - "libelleAcheminement": "AUVILLAR", - "nomCommune": "AUVILLAR" + "codePostal": "81190", + "codeCommune": "81245", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "76380", - "codeCommune": "76446", - "libelleAcheminement": "MONTIGNY", - "nomCommune": "MONTIGNY" + "codePostal": "71440", + "codeCommune": "71489", + "libelleAcheminement": "ST VINCENT EN BRESSE", + "nomCommune": "ST VINCENT EN BRESSE" }, { - "codePostal": "25110", - "codeCommune": "25313", - "libelleAcheminement": "HYEVRE PAROISSE", - "nomCommune": "HYEVRE PAROISSE" + "codePostal": "81150", + "codeCommune": "81156", + "libelleAcheminement": "MARSSAC SUR TARN", + "nomCommune": "MARSSAC SUR TARN" }, { - "codePostal": "80620", - "codeCommune": "80537", - "libelleAcheminement": "MESNIL DOMQUEUR", - "nomCommune": "MESNIL DOMQUEUR" + "codePostal": "68580", + "codeCommune": "68330", + "libelleAcheminement": "STRUETH", + "nomCommune": "STRUETH" }, { - "codePostal": "82340", - "codeCommune": "82010", - "libelleAcheminement": "BARDIGUES", - "nomCommune": "BARDIGUES" + "codePostal": "70120", + "codeCommune": "70272", + "libelleAcheminement": "GOURGEON", + "nomCommune": "GOURGEON" }, { - "codePostal": "76290", - "codeCommune": "76447", - "libelleAcheminement": "MONTIVILLIERS", - "nomCommune": "MONTIVILLIERS" + "codePostal": "81140", + "codeCommune": "81246", + "libelleAcheminement": "STE CECILE DU CAYROU", + "nomCommune": "STE CECILE DU CAYROU" }, { - "codePostal": "25550", - "codeCommune": "25316", - "libelleAcheminement": "ISSANS", - "nomCommune": "ISSANS" + "codePostal": "71430", + "codeCommune": "71490", + "libelleAcheminement": "ST VINCENT BRAGNY", + "nomCommune": "ST VINCENT BRAGNY" }, { - "codePostal": "80300", - "codeCommune": "80547", - "libelleAcheminement": "MILLENCOURT", - "nomCommune": "MILLENCOURT" + "codePostal": "81500", + "codeCommune": "81157", + "libelleAcheminement": "MARZENS", + "nomCommune": "MARZENS" }, { - "codePostal": "82500", - "codeCommune": "82013", - "libelleAcheminement": "BEAUMONT DE LOMAGNE", - "nomCommune": "BEAUMONT DE LOMAGNE" + "codePostal": "70400", + "codeCommune": "70276", + "libelleAcheminement": "GRANGES LA VILLE", + "nomCommune": "GRANGES LA VILLE" }, { - "codePostal": "76520", - "codeCommune": "76448", - "libelleAcheminement": "MONTMAIN", - "nomCommune": "MONTMAIN" + "codePostal": "81340", + "codeCommune": "81247", + "libelleAcheminement": "ST CIRGUE", + "nomCommune": "ST CIRGUE" }, { - "codePostal": "25370", - "codeCommune": "25318", - "libelleAcheminement": "JOUGNE", - "nomCommune": "JOUGNE" + "codePostal": "71250", + "codeCommune": "71495", + "libelleAcheminement": "SALORNAY SUR GUYE", + "nomCommune": "SALORNAY SUR GUYE" }, { - "codePostal": "80200", - "codeCommune": "80552", - "libelleAcheminement": "MOISLAINS", - "nomCommune": "MOISLAINS" + "codePostal": "81500", + "codeCommune": "81159", + "libelleAcheminement": "MASSAC SERAN", + "nomCommune": "MASSAC SERAN" }, { - "codePostal": "82170", - "codeCommune": "82017", - "libelleAcheminement": "BESSENS", - "nomCommune": "BESSENS" + "codePostal": "70170", + "codeCommune": "70278", + "libelleAcheminement": "GRATTERY", + "nomCommune": "GRATTERY" }, { - "codePostal": "76220", - "codeCommune": "76450", - "libelleAcheminement": "MONTROTY", - "nomCommune": "MONTROTY" + "codePostal": "81390", + "codeCommune": "81248", + "libelleAcheminement": "ST GAUZENS", + "nomCommune": "ST GAUZENS" }, { - "codePostal": "25820", - "codeCommune": "25323", - "libelleAcheminement": "LAISSEY", - "nomCommune": "LAISSEY" + "codePostal": "71000", + "codeCommune": "71497", + "libelleAcheminement": "SANCE", + "nomCommune": "SANCE" }, { - "codePostal": "80260", - "codeCommune": "80553", - "libelleAcheminement": "MOLLIENS AU BOIS", - "nomCommune": "MOLLIENS AU BOIS" + "codePostal": "81470", + "codeCommune": "81162", + "libelleAcheminement": "MAURENS SCOPONT", + "nomCommune": "MAURENS SCOPONT" }, { - "codePostal": "82190", - "codeCommune": "82022", - "libelleAcheminement": "BOURG DE VISA", - "nomCommune": "BOURG DE VISA" + "codePostal": "70440", + "codeCommune": "70283", + "libelleAcheminement": "HAUT DU THEM CHATEAU LAMBERT", + "nomCommune": "HAUT DU THEM CHATEAU LAMBERT" }, { - "codePostal": "76750", - "codeCommune": "76453", - "libelleAcheminement": "MORGNY LA POMMERAYE", - "nomCommune": "MORGNY LA POMMERAYE" + "codePostal": "81440", + "codeCommune": "81250", + "libelleAcheminement": "ST GENEST DE CONTEST", + "nomCommune": "ST GENEST DE CONTEST" }, { - "codePostal": "25530", - "codeCommune": "25325", - "libelleAcheminement": "LANDRESSE", - "nomCommune": "LANDRESSE" + "codePostal": "71390", + "codeCommune": "71501", + "libelleAcheminement": "SASSANGY", + "nomCommune": "SASSANGY" }, { - "codePostal": "80200", - "codeCommune": "80557", - "libelleAcheminement": "ESTREES MONS", - "nomCommune": "ESTREES MONS" + "codePostal": "81300", + "codeCommune": "81169", + "libelleAcheminement": "MISSECLE", + "nomCommune": "MISSECLE" }, { - "codePostal": "82100", - "codeCommune": "82030", - "libelleAcheminement": "CASTELFERRUS", - "nomCommune": "CASTELFERRUS" + "codePostal": "70400", + "codeCommune": "70285", + "libelleAcheminement": "HERICOURT", + "nomCommune": "HERICOURT" }, { - "codePostal": "76530", - "codeCommune": "76457", - "libelleAcheminement": "MOULINEAUX", - "nomCommune": "MOULINEAUX" + "codePostal": "81350", + "codeCommune": "81253", + "libelleAcheminement": "ST GREGOIRE", + "nomCommune": "ST GREGOIRE" }, { - "codePostal": "25170", - "codeCommune": "25326", - "libelleAcheminement": "LANTENNE VERTIERE", - "nomCommune": "LANTENNE VERTIERE" + "codePostal": "71460", + "codeCommune": "71505", + "libelleAcheminement": "SAVIANGES", + "nomCommune": "SAVIANGES" }, { - "codePostal": "80200", - "codeCommune": "80557", - "libelleAcheminement": "ESTREES MONS", - "nomCommune": "ESTREES MONS" + "codePostal": "81630", + "codeCommune": "81178", + "libelleAcheminement": "MONTGAILLARD", + "nomCommune": "MONTGAILLARD" }, { - "codePostal": "82300", - "codeCommune": "82037", - "libelleAcheminement": "CAUSSADE", - "nomCommune": "CAUSSADE" + "codePostal": "70700", + "codeCommune": "70289", + "libelleAcheminement": "IGNY", + "nomCommune": "IGNY" }, { - "codePostal": "76270", - "codeCommune": "76459", - "libelleAcheminement": "NESLE HODENG", - "nomCommune": "NESLE HODENG" + "codePostal": "81170", + "codeCommune": "81262", + "libelleAcheminement": "ST MARCEL CAMPES", + "nomCommune": "ST MARCEL CAMPES" }, { - "codePostal": "25250", - "codeCommune": "25327", - "libelleAcheminement": "LANTHENANS", - "nomCommune": "LANTHENANS" + "codePostal": "71580", + "codeCommune": "71506", + "libelleAcheminement": "SAVIGNY EN REVERMONT", + "nomCommune": "SAVIGNY EN REVERMONT" }, { - "codePostal": "80690", - "codeCommune": "80574", - "libelleAcheminement": "MOUFLERS", - "nomCommune": "MOUFLERS" + "codePostal": "81190", + "codeCommune": "81180", + "libelleAcheminement": "MONTIRAT", + "nomCommune": "MONTIRAT" }, { - "codePostal": "82160", - "codeCommune": "82038", - "libelleAcheminement": "CAYLUS", - "nomCommune": "CAYLUS" + "codePostal": "70500", + "codeCommune": "70292", + "libelleAcheminement": "JUSSEY", + "nomCommune": "JUSSEY" }, { - "codePostal": "76340", - "codeCommune": "76460", - "libelleAcheminement": "NESLE NORMANDEUSE", - "nomCommune": "NESLE NORMANDEUSE" + "codePostal": "81640", + "codeCommune": "81275", + "libelleAcheminement": "SALLES", + "nomCommune": "SALLES" }, { - "codePostal": "25510", - "codeCommune": "25333", - "libelleAcheminement": "LAVIRON", - "nomCommune": "LAVIRON" + "codePostal": "71400", + "codeCommune": "71509", + "libelleAcheminement": "LA CELLE EN MORVAN", + "nomCommune": "LA CELLE EN MORVAN" }, { - "codePostal": "80132", - "codeCommune": "80588", - "libelleAcheminement": "NEUFMOULIN", - "nomCommune": "NEUFMOULIN" + "codePostal": "81300", + "codeCommune": "81187", + "libelleAcheminement": "MOULAYRES", + "nomCommune": "MOULAYRES" }, { - "codePostal": "82390", - "codeCommune": "82051", - "libelleAcheminement": "DURFORT LACAPELETTE", - "nomCommune": "DURFORT LACAPELETTE" + "codePostal": "70500", + "codeCommune": "70293", + "libelleAcheminement": "LAMBREY", + "nomCommune": "LAMBREY" }, { - "codePostal": "76390", - "codeCommune": "76479", - "libelleAcheminement": "NULLEMONT", - "nomCommune": "NULLEMONT" + "codePostal": "81600", + "codeCommune": "81283", + "libelleAcheminement": "SENOUILLAC", + "nomCommune": "SENOUILLAC" }, { - "codePostal": "25440", - "codeCommune": "25340", - "libelleAcheminement": "LOMBARD", - "nomCommune": "LOMBARD" + "codePostal": "71330", + "codeCommune": "71514", + "libelleAcheminement": "SENS SUR SEILLE", + "nomCommune": "SENS SUR SEILLE" }, { - "codePostal": "80150", - "codeCommune": "80589", - "libelleAcheminement": "NEUILLY LE DIEN", - "nomCommune": "NEUILLY LE DIEN" + "codePostal": "81320", + "codeCommune": "81188", + "libelleAcheminement": "MOULIN MAGE", + "nomCommune": "MOULIN MAGE" }, { - "codePostal": "82400", - "codeCommune": "82054", - "libelleAcheminement": "ESPALAIS", - "nomCommune": "ESPALAIS" + "codePostal": "70230", + "codeCommune": "70296", + "libelleAcheminement": "LARIANS ET MUNANS", + "nomCommune": "LARIANS ET MUNANS" }, { - "codePostal": "76930", - "codeCommune": "76481", - "libelleAcheminement": "OCTEVILLE SUR MER", - "nomCommune": "OCTEVILLE SUR MER" + "codePostal": "81190", + "codeCommune": "81302", + "libelleAcheminement": "TREBAN", + "nomCommune": "TREBAN" }, { - "codePostal": "25690", - "codeCommune": "25342", - "libelleAcheminement": "LONGECHAUX", - "nomCommune": "LONGECHAUX" + "codePostal": "71290", + "codeCommune": "71522", + "libelleAcheminement": "SIMANDRE", + "nomCommune": "SIMANDRE" }, { - "codePostal": "80135", - "codeCommune": "80609", - "libelleAcheminement": "ONEUX", - "nomCommune": "ONEUX" + "codePostal": "81470", + "codeCommune": "81189", + "libelleAcheminement": "MOUZENS", + "nomCommune": "MOUZENS" }, { - "codePostal": "82500", - "codeCommune": "82055", - "libelleAcheminement": "ESPARSAC", - "nomCommune": "ESPARSAC" + "codePostal": "70200", + "codeCommune": "70319", + "libelleAcheminement": "MAGNY JOBERT", + "nomCommune": "MAGNY JOBERT" }, { - "codePostal": "76560", - "codeCommune": "76483", - "libelleAcheminement": "OHERVILLE", - "nomCommune": "OHERVILLE" + "codePostal": "81190", + "codeCommune": "81304", + "libelleAcheminement": "TREVIEN", + "nomCommune": "TREVIEN" }, { - "codePostal": "25260", - "codeCommune": "25350", - "libelleAcheminement": "LOUGRES", - "nomCommune": "LOUGRES" + "codePostal": "71330", + "codeCommune": "71523", + "libelleAcheminement": "SIMARD", + "nomCommune": "SIMARD" }, { - "codePostal": "80160", - "codeCommune": "80611", - "libelleAcheminement": "ORESMAUX", - "nomCommune": "ORESMAUX" + "codePostal": "81710", + "codeCommune": "81195", + "libelleAcheminement": "NAVES", + "nomCommune": "NAVES" }, { - "codePostal": "82160", - "codeCommune": "82056", - "libelleAcheminement": "ESPINAS", - "nomCommune": "ESPINAS" + "codePostal": "70500", + "codeCommune": "70320", + "libelleAcheminement": "MAGNY LES JUSSEY", + "nomCommune": "MAGNY LES JUSSEY" }, { - "codePostal": "76430", - "codeCommune": "76489", - "libelleAcheminement": "OUDALLE", - "nomCommune": "OUDALLE" + "codePostal": "81330", + "codeCommune": "81305", + "libelleAcheminement": "VABRE", + "nomCommune": "VABRE" }, { - "codePostal": "25110", - "codeCommune": "25354", - "libelleAcheminement": "LUXIOL", - "nomCommune": "LUXIOL" + "codePostal": "71540", + "codeCommune": "71527", + "libelleAcheminement": "SOMMANT", + "nomCommune": "SOMMANT" }, { - "codePostal": "80460", - "codeCommune": "80613", - "libelleAcheminement": "OUST MAREST", - "nomCommune": "OUST MAREST" + "codePostal": "81490", + "codeCommune": "81196", + "libelleAcheminement": "NOAILHAC", + "nomCommune": "NOAILHAC" }, { - "codePostal": "82500", - "codeCommune": "82059", - "libelleAcheminement": "FAUDOAS", - "nomCommune": "FAUDOAS" + "codePostal": "70200", + "codeCommune": "70321", + "libelleAcheminement": "MAGNY VERNOIS", + "nomCommune": "MAGNY VERNOIS" }, { - "codePostal": "76570", - "codeCommune": "76495", - "libelleAcheminement": "PAVILLY", - "nomCommune": "PAVILLY" + "codePostal": "81090", + "codeCommune": "81307", + "libelleAcheminement": "VALDURENQUE", + "nomCommune": "VALDURENQUE" }, { - "codePostal": "25650", - "codeCommune": "25357", - "libelleAcheminement": "MAISONS DU BOIS LIEVREMONT", - "nomCommune": "MAISONS DU BOIS LIEVREMONT" + "codePostal": "71500", + "codeCommune": "71528", + "libelleAcheminement": "SORNAY", + "nomCommune": "SORNAY" }, { - "codePostal": "80300", - "codeCommune": "80615", - "libelleAcheminement": "OVILLERS LA BOISSELLE", - "nomCommune": "OVILLERS LA BOISSELLE" + "codePostal": "81340", + "codeCommune": "81199", + "libelleAcheminement": "PADIES", + "nomCommune": "PADIES" }, { - "codePostal": "82100", - "codeCommune": "82063", - "libelleAcheminement": "GARGANVILLAR", - "nomCommune": "GARGANVILLAR" + "codePostal": "70210", + "codeCommune": "70323", + "libelleAcheminement": "MAILLERONCOURT ST PANCRAS", + "nomCommune": "MAILLERONCOURT ST PANCRAS" }, { - "codePostal": "76460", - "codeCommune": "76504", - "libelleAcheminement": "PLEINE SEVE", - "nomCommune": "PLEINE SEVE" + "codePostal": "81340", + "codeCommune": "81308", + "libelleAcheminement": "VALENCE D ALBIGEOIS", + "nomCommune": "VALENCE D ALBIGEOIS" }, { - "codePostal": "25250", - "codeCommune": "25369", - "libelleAcheminement": "MARVELISE", - "nomCommune": "MARVELISE" + "codePostal": "71740", + "codeCommune": "71533", + "libelleAcheminement": "TANCON", + "nomCommune": "TANCON" }, { - "codePostal": "80700", - "codeCommune": "80617", - "libelleAcheminement": "PARVILLERS LE QUESNOY", - "nomCommune": "PARVILLERS LE QUESNOY" + "codePostal": "81250", + "codeCommune": "81203", + "libelleAcheminement": "PAULINET", + "nomCommune": "PAULINET" }, { - "codePostal": "82330", - "codeCommune": "82069", - "libelleAcheminement": "GINALS", - "nomCommune": "GINALS" + "codePostal": "70190", + "codeCommune": "70326", + "libelleAcheminement": "LA MALACHERE", + "nomCommune": "LA MALACHERE" }, { - "codePostal": "76680", - "codeCommune": "76506", - "libelleAcheminement": "POMMEREVAL", - "nomCommune": "POMMEREVAL" + "codePostal": "81140", + "codeCommune": "81309", + "libelleAcheminement": "VAOUR", + "nomCommune": "VAOUR" }, { - "codePostal": "25310", - "codeCommune": "25378", - "libelleAcheminement": "MESLIERES", - "nomCommune": "MESLIERES" + "codePostal": "71400", + "codeCommune": "71535", + "libelleAcheminement": "TAVERNAY", + "nomCommune": "TAVERNAY" }, { - "codePostal": "80260", - "codeCommune": "80624", - "libelleAcheminement": "PIERREGOT", - "nomCommune": "PIERREGOT" + "codePostal": "81660", + "codeCommune": "81204", + "libelleAcheminement": "PAYRIN AUGMONTEL", + "nomCommune": "PAYRIN AUGMONTEL" }, { - "codePostal": "82500", - "codeCommune": "82070", - "libelleAcheminement": "GLATENS", - "nomCommune": "GLATENS" + "codePostal": "70120", + "codeCommune": "70337", + "libelleAcheminement": "MELIN", + "nomCommune": "MELIN" }, { - "codePostal": "76260", - "codeCommune": "76507", - "libelleAcheminement": "PONTS ET MARAIS", - "nomCommune": "PONTS ET MARAIS" + "codePostal": "81110", + "codeCommune": "81312", + "libelleAcheminement": "VERDALLE", + "nomCommune": "VERDALLE" }, { - "codePostal": "25680", - "codeCommune": "25385", - "libelleAcheminement": "MONTAGNEY SERVIGNEY", - "nomCommune": "MONTAGNEY SERVIGNEY" + "codePostal": "71520", + "codeCommune": "71547", + "libelleAcheminement": "TRIVY", + "nomCommune": "TRIVY" }, { - "codePostal": "80500", - "codeCommune": "80625", - "libelleAcheminement": "TROIS RIVIERES", - "nomCommune": "TROIS RIVIERES" + "codePostal": "81470", + "codeCommune": "81205", + "libelleAcheminement": "PECHAUDIER", + "nomCommune": "PECHAUDIER" }, { - "codePostal": "82500", - "codeCommune": "82071", - "libelleAcheminement": "GOAS", - "nomCommune": "GOAS" + "codePostal": "70210", + "codeCommune": "70338", + "libelleAcheminement": "MELINCOURT", + "nomCommune": "MELINCOURT" }, { - "codePostal": "76270", - "codeCommune": "76516", - "libelleAcheminement": "QUIEVRECOURT", - "nomCommune": "QUIEVRECOURT" + "codePostal": "81570", + "codeCommune": "81315", + "libelleAcheminement": "VIELMUR SUR AGOUT", + "nomCommune": "VIELMUR SUR AGOUT" }, { - "codePostal": "25200", - "codeCommune": "25388", - "libelleAcheminement": "MONTBELIARD", - "nomCommune": "MONTBELIARD" + "codePostal": "71480", + "codeCommune": "71558", + "libelleAcheminement": "VARENNES ST SAUVEUR", + "nomCommune": "VARENNES ST SAUVEUR" }, { - "codePostal": "80150", - "codeCommune": "80631", - "libelleAcheminement": "PONCHES ESTRUVAL", - "nomCommune": "PONCHES ESTRUVAL" + "codePostal": "81140", + "codeCommune": "81206", + "libelleAcheminement": "PENNE", + "nomCommune": "PENNE" }, { - "codePostal": "82400", - "codeCommune": "82072", - "libelleAcheminement": "GOLFECH", - "nomCommune": "GOLFECH" + "codePostal": "70180", + "codeCommune": "70340", + "libelleAcheminement": "MEMBREY", + "nomCommune": "MEMBREY" }, { - "codePostal": "76750", - "codeCommune": "76521", - "libelleAcheminement": "REBETS", - "nomCommune": "REBETS" + "codePostal": "81140", + "codeCommune": "81316", + "libelleAcheminement": "VIEUX", + "nomCommune": "VIEUX" }, { - "codePostal": "25190", - "codeCommune": "25393", - "libelleAcheminement": "MONTECHEROUX", - "nomCommune": "MONTECHEROUX" + "codePostal": "71960", + "codeCommune": "71567", + "libelleAcheminement": "VERGISSON", + "nomCommune": "VERGISSON" }, { - "codePostal": "80860", - "codeCommune": "80633", - "libelleAcheminement": "PONTHOILE", - "nomCommune": "PONTHOILE" + "codePostal": "81220", + "codeCommune": "81212", + "libelleAcheminement": "PRADES", + "nomCommune": "PRADES" }, { - "codePostal": "82160", - "codeCommune": "82082", - "libelleAcheminement": "LACAPELLE LIVRON", - "nomCommune": "LACAPELLE LIVRON" + "codePostal": "70130", + "codeCommune": "70342", + "libelleAcheminement": "MERCEY SUR SAONE", + "nomCommune": "MERCEY SUR SAONE" }, { - "codePostal": "76560", - "codeCommune": "76524", - "libelleAcheminement": "REUVILLE", - "nomCommune": "REUVILLE" + "codePostal": "81220", + "codeCommune": "81323", + "libelleAcheminement": "VITERBE", + "nomCommune": "VITERBE" }, { - "codePostal": "25650", - "codeCommune": "25398", - "libelleAcheminement": "MONTFLOVIN", - "nomCommune": "MONTFLOVIN" + "codePostal": "71700", + "codeCommune": "71576", + "libelleAcheminement": "LE VILLARS", + "nomCommune": "LE VILLARS" }, { - "codePostal": "80300", - "codeCommune": "80640", - "libelleAcheminement": "POZIERES", - "nomCommune": "POZIERES" + "codePostal": "81390", + "codeCommune": "81215", + "libelleAcheminement": "PUYBEGON", + "nomCommune": "PUYBEGON" }, { - "codePostal": "82250", - "codeCommune": "82088", - "libelleAcheminement": "LAGUEPIE", - "nomCommune": "LAGUEPIE" + "codePostal": "70400", + "codeCommune": "70347", + "libelleAcheminement": "MIGNAVILLERS", + "nomCommune": "MIGNAVILLERS" }, { - "codePostal": "76340", - "codeCommune": "76528", - "libelleAcheminement": "RIEUX", - "nomCommune": "RIEUX" + "codePostal": "82600", + "codeCommune": "82005", + "libelleAcheminement": "AUCAMVILLE", + "nomCommune": "AUCAMVILLE" }, { - "codePostal": "25500", - "codeCommune": "25411", - "libelleAcheminement": "MORTEAU", - "nomCommune": "MORTEAU" + "codePostal": "71250", + "codeCommune": "71582", + "libelleAcheminement": "LA VINEUSE SUR FREGANDE", + "nomCommune": "LA VINEUSE SUR FREGANDE" }, { - "codePostal": "80320", - "codeCommune": "80647", - "libelleAcheminement": "PUZEAUX", - "nomCommune": "PUZEAUX" + "codePostal": "81440", + "codeCommune": "81216", + "libelleAcheminement": "PUYCALVEL", + "nomCommune": "PUYCALVEL" }, { - "codePostal": "82500", - "codeCommune": "82093", - "libelleAcheminement": "LARRAZET", - "nomCommune": "LARRAZET" + "codePostal": "70140", + "codeCommune": "70353", + "libelleAcheminement": "MONTAGNEY", + "nomCommune": "MONTAGNEY" }, { - "codePostal": "76560", - "codeCommune": "76530", - "libelleAcheminement": "ROBERTOT", - "nomCommune": "ROBERTOT" + "codePostal": "82600", + "codeCommune": "82014", + "libelleAcheminement": "BEAUPUY", + "nomCommune": "BEAUPUY" }, { - "codePostal": "25170", - "codeCommune": "25414", - "libelleAcheminement": "LE MOUTHEROT", - "nomCommune": "LE MOUTHEROT" + "codePostal": "71250", + "codeCommune": "71582", + "libelleAcheminement": "LA VINEUSE SUR FREGANDE", + "nomCommune": "LA VINEUSE SUR FREGANDE" }, { - "codePostal": "80118", - "codeCommune": "80652", - "libelleAcheminement": "LE QUESNEL", - "nomCommune": "LE QUESNEL" + "codePostal": "81140", + "codeCommune": "81217", + "libelleAcheminement": "PUYCELSI", + "nomCommune": "PUYCELSI" }, { - "codePostal": "82110", - "codeCommune": "82094", - "libelleAcheminement": "LAUZERTE", - "nomCommune": "LAUZERTE" + "codePostal": "70500", + "codeCommune": "70362", + "libelleAcheminement": "MONTIGNY LES CHERLIEU", + "nomCommune": "MONTIGNY LES CHERLIEU" }, { - "codePostal": "76700", - "codeCommune": "76533", - "libelleAcheminement": "ROGERVILLE", - "nomCommune": "ROGERVILLE" + "codePostal": "82150", + "codeCommune": "82016", + "libelleAcheminement": "BELVEZE", + "nomCommune": "BELVEZE" }, { - "codePostal": "25360", - "codeCommune": "25417", - "libelleAcheminement": "NAISEY LES GRANGES", - "nomCommune": "NAISEY LES GRANGES" + "codePostal": "71120", + "codeCommune": "71586", + "libelleAcheminement": "VIRY", + "nomCommune": "VIRY" }, { - "codePostal": "80260", - "codeCommune": "80661", - "libelleAcheminement": "RAINNEVILLE", - "nomCommune": "RAINNEVILLE" + "codePostal": "81120", + "codeCommune": "81233", + "libelleAcheminement": "TERRE DE BANCALIE", + "nomCommune": "TERRE DE BANCALIE" }, { - "codePostal": "82240", - "codeCommune": "82095", - "libelleAcheminement": "LAVAURETTE", - "nomCommune": "LAVAURETTE" + "codePostal": "70110", + "codeCommune": "70364", + "libelleAcheminement": "MONTJUSTIN ET VELOTTE", + "nomCommune": "MONTJUSTIN ET VELOTTE" }, { - "codePostal": "76440", - "codeCommune": "76535", - "libelleAcheminement": "RONCHEROLLES EN BRAY", - "nomCommune": "RONCHEROLLES EN BRAY" + "codePostal": "82110", + "codeCommune": "82021", + "libelleAcheminement": "BOULOC EN QUERCY", + "nomCommune": "BOULOC EN QUERCY" }, { - "codePostal": "25210", - "codeCommune": "25421", - "libelleAcheminement": "NARBIEF", - "nomCommune": "NARBIEF" + "codePostal": "71600", + "codeCommune": "71588", + "libelleAcheminement": "VITRY EN CHAROLLAIS", + "nomCommune": "VITRY EN CHAROLLAIS" }, { - "codePostal": "80140", - "codeCommune": "80663", - "libelleAcheminement": "RAMBURES", - "nomCommune": "RAMBURES" + "codePostal": "81110", + "codeCommune": "81237", + "libelleAcheminement": "ST AMANCET", + "nomCommune": "ST AMANCET" }, { - "codePostal": "82120", - "codeCommune": "82097", - "libelleAcheminement": "LAVIT", - "nomCommune": "LAVIT" + "codePostal": "70100", + "codeCommune": "70371", + "libelleAcheminement": "MONTUREUX ET PRANTIGNY", + "nomCommune": "MONTUREUX ET PRANTIGNY" }, { - "codePostal": "76560", - "codeCommune": "76542", - "libelleAcheminement": "ROUTES", - "nomCommune": "ROUTES" + "codePostal": "82190", + "codeCommune": "82022", + "libelleAcheminement": "BOURG DE VISA", + "nomCommune": "BOURG DE VISA" }, { - "codePostal": "25580", - "codeCommune": "25424", - "libelleAcheminement": "LES PREMIERS SAPINS", - "nomCommune": "LES PREMIERS SAPINS" + "codePostal": "71600", + "codeCommune": "71590", + "libelleAcheminement": "VOLESVRES", + "nomCommune": "VOLESVRES" }, { - "codePostal": "80360", - "codeCommune": "80664", - "libelleAcheminement": "RANCOURT", - "nomCommune": "RANCOURT" + "codePostal": "81250", + "codeCommune": "81240", + "libelleAcheminement": "ST ANDRE", + "nomCommune": "ST ANDRE" }, { - "codePostal": "82120", - "codeCommune": "82104", - "libelleAcheminement": "MARSAC", - "nomCommune": "MARSAC" + "codePostal": "70120", + "codeCommune": "70373", + "libelleAcheminement": "LA ROCHE MOREY", + "nomCommune": "LA ROCHE MOREY" }, { - "codePostal": "76440", - "codeCommune": "76544", - "libelleAcheminement": "ROUVRAY CATILLON", - "nomCommune": "ROUVRAY CATILLON" + "codePostal": "82370", + "codeCommune": "82027", + "libelleAcheminement": "CAMPSAS", + "nomCommune": "CAMPSAS" }, { - "codePostal": "25190", - "codeCommune": "25426", - "libelleAcheminement": "NOIREFONTAINE", - "nomCommune": "NOIREFONTAINE" + "codePostal": "72610", + "codeCommune": "72006", + "libelleAcheminement": "ARCONNAY", + "nomCommune": "ARCONNAY" }, { - "codePostal": "80800", - "codeCommune": "80672", - "libelleAcheminement": "RIBEMONT SUR ANCRE", - "nomCommune": "RIBEMONT SUR ANCRE" + "codePostal": "81110", + "codeCommune": "81242", + "libelleAcheminement": "ST AVIT", + "nomCommune": "ST AVIT" }, { - "codePostal": "82500", - "codeCommune": "82106", - "libelleAcheminement": "MAUBEC", - "nomCommune": "MAUBEC" + "codePostal": "70100", + "codeCommune": "70376", + "libelleAcheminement": "NANTILLY", + "nomCommune": "NANTILLY" }, { - "codePostal": "76113", - "codeCommune": "76550", - "libelleAcheminement": "SAHURS", - "nomCommune": "SAHURS" + "codePostal": "82160", + "codeCommune": "82029", + "libelleAcheminement": "CASTANET", + "nomCommune": "CASTANET" }, { - "codePostal": "25220", - "codeCommune": "25429", - "libelleAcheminement": "NOVILLARS", - "nomCommune": "NOVILLARS" + "codePostal": "72130", + "codeCommune": "72011", + "libelleAcheminement": "ASSE LE BOISNE", + "nomCommune": "ASSE LE BOISNE" }, { - "codePostal": "80310", - "codeCommune": "80673", - "libelleAcheminement": "RIENCOURT", - "nomCommune": "RIENCOURT" + "codePostal": "81140", + "codeCommune": "81243", + "libelleAcheminement": "ST BEAUZILE", + "nomCommune": "ST BEAUZILE" }, { - "codePostal": "82130", - "codeCommune": "82120", - "libelleAcheminement": "MONTASTRUC", - "nomCommune": "MONTASTRUC" + "codePostal": "70000", + "codeCommune": "70378", + "libelleAcheminement": "NAVENNE", + "nomCommune": "NAVENNE" }, { - "codePostal": "76310", - "codeCommune": "76552", - "libelleAcheminement": "STE ADRESSE", - "nomCommune": "STE ADRESSE" + "codePostal": "82160", + "codeCommune": "82038", + "libelleAcheminement": "CAYLUS", + "nomCommune": "CAYLUS" }, { - "codePostal": "25640", - "codeCommune": "25430", - "libelleAcheminement": "OLLANS", - "nomCommune": "OLLANS" + "codePostal": "72170", + "codeCommune": "72012", + "libelleAcheminement": "ASSE LE RIBOUL", + "nomCommune": "ASSE LE RIBOUL" }, { - "codePostal": "80700", - "codeCommune": "80676", - "libelleAcheminement": "ROIGLISE", - "nomCommune": "ROIGLISE" + "codePostal": "81440", + "codeCommune": "81258", + "libelleAcheminement": "ST JULIEN DU PUY", + "nomCommune": "ST JULIEN DU PUY" }, { - "codePostal": "82110", - "codeCommune": "82122", - "libelleAcheminement": "MONTBARLA", - "nomCommune": "MONTBARLA" + "codePostal": "70130", + "codeCommune": "70384", + "libelleAcheminement": "NEUVELLE LES LA CHARITE", + "nomCommune": "NEUVELLE LES LA CHARITE" }, { - "codePostal": "76170", - "codeCommune": "76556", - "libelleAcheminement": "ST ANTOINE LA FORET", - "nomCommune": "ST ANTOINE LA FORET" + "codePostal": "82440", + "codeCommune": "82039", + "libelleAcheminement": "CAYRAC", + "nomCommune": "CAYRAC" }, { - "codePostal": "25120", - "codeCommune": "25433", - "libelleAcheminement": "ORGEANS BLANCHEFONTAINE", - "nomCommune": "ORGEANS BLANCHEFONTAINE" + "codePostal": "72600", + "codeCommune": "72015", + "libelleAcheminement": "LES AULNEAUX", + "nomCommune": "LES AULNEAUX" }, { - "codePostal": "80170", - "codeCommune": "80682", - "libelleAcheminement": "ROUVROY EN SANTERRE", - "nomCommune": "ROUVROY EN SANTERRE" + "codePostal": "81500", + "codeCommune": "81261", + "libelleAcheminement": "ST LIEUX LES LAVAUR", + "nomCommune": "ST LIEUX LES LAVAUR" }, { - "codePostal": "82300", - "codeCommune": "82126", - "libelleAcheminement": "MONTEILS", - "nomCommune": "MONTEILS" + "codePostal": "70500", + "codeCommune": "70400", + "libelleAcheminement": "OUGE", + "nomCommune": "OUGE" }, { - "codePostal": "76570", - "codeCommune": "76566", - "libelleAcheminement": "STE AUSTREBERTHE", - "nomCommune": "STE AUSTREBERTHE" + "codePostal": "82340", + "codeCommune": "82049", + "libelleAcheminement": "DONZAC", + "nomCommune": "DONZAC" }, { - "codePostal": "25290", - "codeCommune": "25434", - "libelleAcheminement": "ORNANS", - "nomCommune": "ORNANS" + "codePostal": "72110", + "codeCommune": "72026", + "libelleAcheminement": "BEAUFAY", + "nomCommune": "BEAUFAY" }, { - "codePostal": "80700", - "codeCommune": "80685", - "libelleAcheminement": "ROYE", - "nomCommune": "ROYE" + "codePostal": "81140", + "codeCommune": "81265", + "libelleAcheminement": "ST MICHEL DE VAX", + "nomCommune": "ST MICHEL DE VAX" }, { - "codePostal": "82400", - "codeCommune": "82138", - "libelleAcheminement": "PERVILLE", - "nomCommune": "PERVILLE" + "codePostal": "70200", + "codeCommune": "70403", + "libelleAcheminement": "PALANTE", + "nomCommune": "PALANTE" }, { - "codePostal": "76116", - "codeCommune": "76573", - "libelleAcheminement": "ST DENIS LE THIBOULT", - "nomCommune": "ST DENIS LE THIBOULT" + "codePostal": "82340", + "codeCommune": "82050", + "libelleAcheminement": "DUNES", + "nomCommune": "DUNES" }, { - "codePostal": "25430", - "codeCommune": "25436", - "libelleAcheminement": "ORVE", - "nomCommune": "ORVE" + "codePostal": "72170", + "codeCommune": "72029", + "libelleAcheminement": "BEAUMONT SUR SARTHE", + "nomCommune": "BEAUMONT SUR SARTHE" }, { - "codePostal": "80260", - "codeCommune": "80686", - "libelleAcheminement": "RUBEMPRE", - "nomCommune": "RUBEMPRE" + "codePostal": "81120", + "codeCommune": "81287", + "libelleAcheminement": "SIEURAC", + "nomCommune": "SIEURAC" }, { - "codePostal": "82340", - "codeCommune": "82139", - "libelleAcheminement": "LE PIN", - "nomCommune": "LE PIN" + "codePostal": "70190", + "codeCommune": "70407", + "libelleAcheminement": "PERROUSE", + "nomCommune": "PERROUSE" }, { - "codePostal": "76590", - "codeCommune": "76582", - "libelleAcheminement": "ST GERMAIN D ETABLES", - "nomCommune": "ST GERMAIN D ETABLES" + "codePostal": "82400", + "codeCommune": "82054", + "libelleAcheminement": "ESPALAIS", + "nomCommune": "ESPALAIS" }, { - "codePostal": "25640", - "codeCommune": "25439", - "libelleAcheminement": "OUGNEY DOUVOT", - "nomCommune": "OUGNEY DOUVOT" + "codePostal": "72160", + "codeCommune": "72031", + "libelleAcheminement": "BEILLE", + "nomCommune": "BEILLE" }, { - "codePostal": "80500", - "codeCommune": "80687", - "libelleAcheminement": "RUBESCOURT", - "nomCommune": "RUBESCOURT" + "codePostal": "81580", + "codeCommune": "81289", + "libelleAcheminement": "SOUAL", + "nomCommune": "SOUAL" }, { - "codePostal": "82240", - "codeCommune": "82148", - "libelleAcheminement": "PUYLAROQUE", - "nomCommune": "PUYLAROQUE" + "codePostal": "70140", + "codeCommune": "70408", + "libelleAcheminement": "PESMES", + "nomCommune": "PESMES" }, { - "codePostal": "76510", - "codeCommune": "76590", - "libelleAcheminement": "ST JACQUES D ALIERMONT", - "nomCommune": "ST JACQUES D ALIERMONT" + "codePostal": "82170", + "codeCommune": "82057", + "libelleAcheminement": "FABAS", + "nomCommune": "FABAS" }, { - "codePostal": "25310", - "codeCommune": "25452", - "libelleAcheminement": "PIERREFONTAINE LES BLAMONT", - "nomCommune": "PIERREFONTAINE LES BLAMONT" + "codePostal": "72400", + "codeCommune": "72038", + "libelleAcheminement": "BOESSE LE SEC", + "nomCommune": "BOESSE LE SEC" }, { - "codePostal": "80800", - "codeCommune": "80694", - "libelleAcheminement": "SAILLY LE SEC", - "nomCommune": "SAILLY LE SEC" + "codePostal": "81190", + "codeCommune": "81292", + "libelleAcheminement": "TANUS", + "nomCommune": "TANUS" }, { - "codePostal": "82370", - "codeCommune": "82150", - "libelleAcheminement": "REYNIES", - "nomCommune": "REYNIES" + "codePostal": "70210", + "codeCommune": "70415", + "libelleAcheminement": "POLAINCOURT ET CLAIREFONTAINE", + "nomCommune": "POLAINCOURT ET CLAIREFONTAINE" }, { - "codePostal": "76210", - "codeCommune": "76593", - "libelleAcheminement": "ST JEAN DE LA NEUVILLE", - "nomCommune": "ST JEAN DE LA NEUVILLE" + "codePostal": "82210", + "codeCommune": "82058", + "libelleAcheminement": "FAJOLLES", + "nomCommune": "FAJOLLES" }, { - "codePostal": "25510", - "codeCommune": "25453", - "libelleAcheminement": "PIERREFONTAINE LES VARANS", - "nomCommune": "PIERREFONTAINE LES VARANS" + "codePostal": "72400", + "codeCommune": "72040", + "libelleAcheminement": "LA BOSSE", + "nomCommune": "LA BOSSE" }, { - "codePostal": "80480", - "codeCommune": "80725", - "libelleAcheminement": "SALOUEL", - "nomCommune": "SALOUEL" + "codePostal": "81630", + "codeCommune": "81293", + "libelleAcheminement": "TAURIAC", + "nomCommune": "TAURIAC" }, { - "codePostal": "82210", - "codeCommune": "82156", - "libelleAcheminement": "ST ARROUMEX", - "nomCommune": "ST ARROUMEX" + "codePostal": "70240", + "codeCommune": "70416", + "libelleAcheminement": "POMOY", + "nomCommune": "POMOY" }, { - "codePostal": "76280", - "codeCommune": "76595", - "libelleAcheminement": "ST JOUIN BRUNEVAL", - "nomCommune": "ST JOUIN BRUNEVAL" + "codePostal": "82140", + "codeCommune": "82061", + "libelleAcheminement": "FENEYROLS", + "nomCommune": "FENEYROLS" }, { - "codePostal": "25480", - "codeCommune": "25454", - "libelleAcheminement": "PIREY", - "nomCommune": "PIREY" + "codePostal": "72370", + "codeCommune": "72046", + "libelleAcheminement": "LE BREIL SUR MERIZE", + "nomCommune": "LE BREIL SUR MERIZE" }, { - "codePostal": "80290", - "codeCommune": "80728", - "libelleAcheminement": "SAULCHOY SOUS POIX", - "nomCommune": "SAULCHOY SOUS POIX" + "codePostal": "81220", + "codeCommune": "81299", + "libelleAcheminement": "TEYSSODE", + "nomCommune": "TEYSSODE" }, { - "codePostal": "82150", - "codeCommune": "82157", - "libelleAcheminement": "ST BEAUZEIL", - "nomCommune": "ST BEAUZEIL" + "codePostal": "70130", + "codeCommune": "70418", + "libelleAcheminement": "LA ROMAINE", + "nomCommune": "LA ROMAINE" }, { - "codePostal": "76340", - "codeCommune": "76598", - "libelleAcheminement": "ST LEGER AUX BOIS", - "nomCommune": "ST LEGER AUX BOIS" + "codePostal": "82700", + "codeCommune": "82062", + "libelleAcheminement": "FINHAN", + "nomCommune": "FINHAN" }, { - "codePostal": "25440", - "codeCommune": "25460", - "libelleAcheminement": "LE VAL", - "nomCommune": "LE VAL" + "codePostal": "72470", + "codeCommune": "72054", + "libelleAcheminement": "CHAMPAGNE", + "nomCommune": "CHAMPAGNE" }, { - "codePostal": "80110", - "codeCommune": "80729", - "libelleAcheminement": "SAUVILLERS MONGIVAL", - "nomCommune": "SAUVILLERS MONGIVAL" + "codePostal": "81500", + "codeCommune": "81318", + "libelleAcheminement": "VILLENEUVE LES LAVAUR", + "nomCommune": "VILLENEUVE LES LAVAUR" }, { - "codePostal": "82340", - "codeCommune": "82158", - "libelleAcheminement": "ST CIRICE", - "nomCommune": "ST CIRICE" + "codePostal": "70130", + "codeCommune": "70418", + "libelleAcheminement": "LA ROMAINE", + "nomCommune": "LA ROMAINE" }, { - "codePostal": "76340", - "codeCommune": "76612", - "libelleAcheminement": "ST MARTIN AU BOSC", - "nomCommune": "ST MARTIN AU BOSC" + "codePostal": "82230", + "codeCommune": "82066", + "libelleAcheminement": "GENEBRIERES", + "nomCommune": "GENEBRIERES" }, { - "codePostal": "25440", - "codeCommune": "25460", - "libelleAcheminement": "LE VAL", - "nomCommune": "LE VAL" + "codePostal": "72560", + "codeCommune": "72058", + "libelleAcheminement": "CHANGE", + "nomCommune": "CHANGE" }, { - "codePostal": "80470", - "codeCommune": "80730", - "libelleAcheminement": "SAVEUSE", - "nomCommune": "SAVEUSE" + "codePostal": "82120", + "codeCommune": "82004", + "libelleAcheminement": "ASQUES", + "nomCommune": "ASQUES" }, { - "codePostal": "82400", - "codeCommune": "82160", - "libelleAcheminement": "ST CLAIR", - "nomCommune": "ST CLAIR" + "codePostal": "70170", + "codeCommune": "70421", + "libelleAcheminement": "PORT SUR SAONE", + "nomCommune": "PORT SUR SAONE" }, { - "codePostal": "76540", - "codeCommune": "76613", - "libelleAcheminement": "ST MARTIN AUX BUNEAUX", - "nomCommune": "ST MARTIN AUX BUNEAUX" + "codePostal": "82400", + "codeCommune": "82073", + "libelleAcheminement": "GOUDOURVILLE", + "nomCommune": "GOUDOURVILLE" }, { - "codePostal": "25150", - "codeCommune": "25463", - "libelleAcheminement": "PONT DE ROIDE VERMONDANS", - "nomCommune": "PONT DE ROIDE VERMONDANS" + "codePostal": "72800", + "codeCommune": "72060", + "libelleAcheminement": "LA CHAPELLE AUX CHOUX", + "nomCommune": "LA CHAPELLE AUX CHOUX" }, { - "codePostal": "80240", - "codeCommune": "80737", - "libelleAcheminement": "SOREL", - "nomCommune": "SOREL" + "codePostal": "82500", + "codeCommune": "82006", + "libelleAcheminement": "AUTERIVE", + "nomCommune": "AUTERIVE" }, { - "codePostal": "82340", - "codeCommune": "82166", - "libelleAcheminement": "ST MICHEL", - "nomCommune": "ST MICHEL" + "codePostal": "70100", + "codeCommune": "70422", + "libelleAcheminement": "POYANS", + "nomCommune": "POYANS" }, { - "codePostal": "76133", - "codeCommune": "76615", - "libelleAcheminement": "ST MARTIN DU BEC", - "nomCommune": "ST MARTIN DU BEC" + "codePostal": "82170", + "codeCommune": "82075", + "libelleAcheminement": "GRISOLLES", + "nomCommune": "GRISOLLES" }, { - "codePostal": "25240", - "codeCommune": "25464", - "libelleAcheminement": "LES PONTETS", - "nomCommune": "LES PONTETS" + "codePostal": "72240", + "codeCommune": "72066", + "libelleAcheminement": "LA CHAPELLE ST FRAY", + "nomCommune": "LA CHAPELLE ST FRAY" }, { - "codePostal": "80310", - "codeCommune": "80738", - "libelleAcheminement": "SOUES", - "nomCommune": "SOUES" + "codePostal": "82220", + "codeCommune": "82007", + "libelleAcheminement": "AUTY", + "nomCommune": "AUTY" }, { - "codePostal": "82370", - "codeCommune": "82167", - "libelleAcheminement": "ST NAUPHARY", - "nomCommune": "ST NAUPHARY" + "codePostal": "70170", + "codeCommune": "70426", + "libelleAcheminement": "PROVENCHERE", + "nomCommune": "PROVENCHERE" }, { - "codePostal": "76370", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "82240", + "codeCommune": "82078", + "libelleAcheminement": "LABASTIDE DE PENNE", + "nomCommune": "LABASTIDE DE PENNE" }, { - "codePostal": "25110", - "codeCommune": "25465", - "libelleAcheminement": "PONT LES MOULINS", - "nomCommune": "PONT LES MOULINS" + "codePostal": "72550", + "codeCommune": "72073", + "libelleAcheminement": "CHAUFOUR NOTRE DAME", + "nomCommune": "CHAUFOUR NOTRE DAME" }, { - "codePostal": "80200", - "codeCommune": "80741", - "libelleAcheminement": "SOYECOURT", - "nomCommune": "SOYECOURT" + "codePostal": "82100", + "codeCommune": "82012", + "libelleAcheminement": "LES BARTHES", + "nomCommune": "LES BARTHES" }, { - "codePostal": "82800", - "codeCommune": "82184", - "libelleAcheminement": "VAISSAC", - "nomCommune": "VAISSAC" + "codePostal": "70160", + "codeCommune": "70427", + "libelleAcheminement": "PURGEROT", + "nomCommune": "PURGEROT" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "82100", + "codeCommune": "82080", + "libelleAcheminement": "LABASTIDE DU TEMPLE", + "nomCommune": "LABASTIDE DU TEMPLE" }, { - "codePostal": "25410", - "codeCommune": "25466", - "libelleAcheminement": "POUILLEY FRANCAIS", - "nomCommune": "POUILLEY FRANCAIS" + "codePostal": "72200", + "codeCommune": "72084", + "libelleAcheminement": "CLERMONT CREANS", + "nomCommune": "CLERMONT CREANS" }, { - "codePostal": "80240", - "codeCommune": "80747", - "libelleAcheminement": "TEMPLEUX LA FOSSE", - "nomCommune": "TEMPLEUX LA FOSSE" + "codePostal": "82170", + "codeCommune": "82017", + "libelleAcheminement": "BESSENS", + "nomCommune": "BESSENS" }, { - "codePostal": "82400", - "codeCommune": "82186", - "libelleAcheminement": "VALENCE D AGEN", - "nomCommune": "VALENCE" + "codePostal": "70000", + "codeCommune": "70433", + "libelleAcheminement": "QUINCEY", + "nomCommune": "QUINCEY" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "82120", + "codeCommune": "82083", + "libelleAcheminement": "LACHAPELLE", + "nomCommune": "LACHAPELLE" }, { - "codePostal": "25640", - "codeCommune": "25468", - "libelleAcheminement": "POULIGNEY LUSANS", - "nomCommune": "POULIGNEY LUSANS" + "codePostal": "72290", + "codeCommune": "72088", + "libelleAcheminement": "CONGE SUR ORNE", + "nomCommune": "CONGE SUR ORNE" }, { - "codePostal": "80200", - "codeCommune": "80750", - "libelleAcheminement": "TERTRY", - "nomCommune": "TERTRY" + "codePostal": "82210", + "codeCommune": "82031", + "libelleAcheminement": "CASTELMAYRAN", + "nomCommune": "CASTELMAYRAN" }, { - "codePostal": "83111", - "codeCommune": "83003", - "libelleAcheminement": "AMPUS", - "nomCommune": "AMPUS" + "codePostal": "70280", + "codeCommune": "70435", + "libelleAcheminement": "RADDON ET CHAPENDU", + "nomCommune": "RADDON ET CHAPENDU" }, { - "codePostal": "76170", - "codeCommune": "76627", - "libelleAcheminement": "ST NICOLAS DE LA TAILLE", - "nomCommune": "ST NICOLAS DE LA TAILLE" + "codePostal": "82240", + "codeCommune": "82095", + "libelleAcheminement": "LAVAURETTE", + "nomCommune": "LAVAURETTE" }, { - "codePostal": "25720", - "codeCommune": "25473", - "libelleAcheminement": "PUGEY", - "nomCommune": "PUGEY" + "codePostal": "72400", + "codeCommune": "72093", + "libelleAcheminement": "CORMES", + "nomCommune": "CORMES" }, { - "codePostal": "80440", - "codeCommune": "80752", - "libelleAcheminement": "THEZY GLIMONT", - "nomCommune": "THEZY GLIMONT" + "codePostal": "82100", + "codeCommune": "82033", + "libelleAcheminement": "CASTELSARRASIN", + "nomCommune": "CASTELSARRASIN" }, { - "codePostal": "83630", - "codeCommune": "83005", - "libelleAcheminement": "ARTIGNOSC SUR VERDON", - "nomCommune": "ARTIGNOSC SUR VERDON" + "codePostal": "70180", + "codeCommune": "70448", + "libelleAcheminement": "ROCHE ET RAUCOURT", + "nomCommune": "ROCHE ET RAUCOURT" }, { - "codePostal": "76540", - "codeCommune": "76637", - "libelleAcheminement": "ST PIERRE EN PORT", - "nomCommune": "ST PIERRE EN PORT" + "codePostal": "82290", + "codeCommune": "82096", + "libelleAcheminement": "LA VILLE DIEU DU TEMPLE", + "nomCommune": "LA VILLE DIEU DU TEMPLE" }, { - "codePostal": "25430", - "codeCommune": "25476", - "libelleAcheminement": "RAHON", - "nomCommune": "RAHON" + "codePostal": "72190", + "codeCommune": "72095", + "libelleAcheminement": "COULAINES", + "nomCommune": "COULAINES" }, { - "codePostal": "80640", - "codeCommune": "80754", - "libelleAcheminement": "THIEULLOY L ABBAYE", - "nomCommune": "THIEULLOY L ABBAYE" + "codePostal": "82500", + "codeCommune": "82055", + "libelleAcheminement": "ESPARSAC", + "nomCommune": "ESPARSAC" }, { - "codePostal": "83630", - "codeCommune": "83007", - "libelleAcheminement": "AUPS", - "nomCommune": "AUPS" + "codePostal": "70250", + "codeCommune": "70451", + "libelleAcheminement": "RONCHAMP", + "nomCommune": "RONCHAMP" }, { - "codePostal": "76740", - "codeCommune": "76642", - "libelleAcheminement": "ST PIERRE LE VIGER", - "nomCommune": "ST PIERRE LE VIGER" + "codePostal": "82120", + "codeCommune": "82097", + "libelleAcheminement": "LAVIT", + "nomCommune": "LAVIT" }, { - "codePostal": "25250", - "codeCommune": "25479", - "libelleAcheminement": "RANG", - "nomCommune": "RANG" + "codePostal": "72140", + "codeCommune": "72109", + "libelleAcheminement": "CRISSE", + "nomCommune": "CRISSE" }, { - "codePostal": "80210", - "codeCommune": "80765", - "libelleAcheminement": "TOURS EN VIMEU", - "nomCommune": "TOURS EN VIMEU" + "codePostal": "82500", + "codeCommune": "82071", + "libelleAcheminement": "GOAS", + "nomCommune": "GOAS" }, { - "codePostal": "83600", - "codeCommune": "83008", - "libelleAcheminement": "BAGNOLS EN FORET", - "nomCommune": "BAGNOLS EN FORET" + "codePostal": "70500", + "codeCommune": "70454", + "libelleAcheminement": "ROSIERES SUR MANCE", + "nomCommune": "ROSIERES SUR MANCE" }, { - "codePostal": "76430", - "codeCommune": "76647", - "libelleAcheminement": "ST ROMAIN DE COLBOSC", - "nomCommune": "ST ROMAIN DE COLBOSC" + "codePostal": "82120", + "codeCommune": "82102", + "libelleAcheminement": "MANSONVILLE", + "nomCommune": "MANSONVILLE" }, { - "codePostal": "25170", - "codeCommune": "25482", - "libelleAcheminement": "RECOLOGNE", - "nomCommune": "RECOLOGNE" + "codePostal": "72240", + "codeCommune": "72111", + "libelleAcheminement": "CURES", + "nomCommune": "CURES" }, { - "codePostal": "80560", - "codeCommune": "80766", - "libelleAcheminement": "TOUTENCOURT", - "nomCommune": "TOUTENCOURT" + "codePostal": "82400", + "codeCommune": "82072", + "libelleAcheminement": "GOLFECH", + "nomCommune": "GOLFECH" }, { - "codePostal": "83840", - "codeCommune": "83010", - "libelleAcheminement": "BARGEME", - "nomCommune": "BARGEME" + "codePostal": "70110", + "codeCommune": "70462", + "libelleAcheminement": "ST FERJEUX", + "nomCommune": "ST FERJEUX" }, { - "codePostal": "76110", - "codeCommune": "76650", - "libelleAcheminement": "ST SAUVEUR D EMALLEVILLE", - "nomCommune": "ST SAUVEUR D EMALLEVILLE" + "codePostal": "82500", + "codeCommune": "82106", + "libelleAcheminement": "MAUBEC", + "nomCommune": "MAUBEC" }, { - "codePostal": "25240", - "codeCommune": "25483", - "libelleAcheminement": "RECULFOZ", - "nomCommune": "RECULFOZ" + "codePostal": "72270", + "codeCommune": "72123", + "libelleAcheminement": "DUREIL", + "nomCommune": "DUREIL" }, { - "codePostal": "80300", - "codeCommune": "80769", - "libelleAcheminement": "TREUX", - "nomCommune": "TREUX" + "codePostal": "82220", + "codeCommune": "82077", + "libelleAcheminement": "LABARTHE", + "nomCommune": "LABARTHE" }, { - "codePostal": "83670", - "codeCommune": "83012", - "libelleAcheminement": "BARJOLS", - "nomCommune": "BARJOLS" + "codePostal": "70500", + "codeCommune": "70468", + "libelleAcheminement": "ST MARCEL", + "nomCommune": "ST MARCEL" }, { - "codePostal": "76460", - "codeCommune": "76651", - "libelleAcheminement": "ST SYLVAIN", - "nomCommune": "ST SYLVAIN" + "codePostal": "82120", + "codeCommune": "82107", + "libelleAcheminement": "MAUMUSSON", + "nomCommune": "MAUMUSSON" }, { - "codePostal": "25150", - "codeCommune": "25485", - "libelleAcheminement": "REMONDANS VAIVRE", - "nomCommune": "REMONDANS VAIVRE" + "codePostal": "72220", + "codeCommune": "72124", + "libelleAcheminement": "ECOMMOY", + "nomCommune": "ECOMMOY" }, { - "codePostal": "80800", - "codeCommune": "80774", - "libelleAcheminement": "VAIRE SOUS CORBIE", - "nomCommune": "VAIRE SOUS CORBIE" + "codePostal": "82370", + "codeCommune": "82079", + "libelleAcheminement": "LABASTIDE ST PIERRE", + "nomCommune": "LABASTIDE ST PIERRE" }, { - "codePostal": "83630", - "codeCommune": "83015", - "libelleAcheminement": "BAUDUEN", - "nomCommune": "BAUDUEN" + "codePostal": "70310", + "codeCommune": "70469", + "libelleAcheminement": "STE MARIE EN CHANOIS", + "nomCommune": "STE MARIE EN CHANOIS" }, { - "codePostal": "76450", - "codeCommune": "76653", - "libelleAcheminement": "ST VAAST DIEPPEDALLE", - "nomCommune": "ST VAAST DIEPPEDALLE" + "codePostal": "82270", + "codeCommune": "82119", + "libelleAcheminement": "MONTALZAT", + "nomCommune": "MONTALZAT" }, { - "codePostal": "25340", - "codeCommune": "25496", - "libelleAcheminement": "ROCHE LES CLERVAL", - "nomCommune": "ROCHE LES CLERVAL" + "codePostal": "72120", + "codeCommune": "72128", + "libelleAcheminement": "VAL D ETANGSON", + "nomCommune": "VAL D ETANGSON" }, { - "codePostal": "80131", - "codeCommune": "80781", - "libelleAcheminement": "VAUVILLERS", - "nomCommune": "VAUVILLERS" + "codePostal": "82290", + "codeCommune": "82085", + "libelleAcheminement": "LACOURT ST PIERRE", + "nomCommune": "LACOURT ST PIERRE" }, { - "codePostal": "83330", - "codeCommune": "83016", - "libelleAcheminement": "LE BEAUSSET", - "nomCommune": "LE BEAUSSET" + "codePostal": "70110", + "codeCommune": "70474", + "libelleAcheminement": "ST SULPICE", + "nomCommune": "ST SULPICE" }, { - "codePostal": "76460", - "codeCommune": "76655", - "libelleAcheminement": "ST VALERY EN CAUX", - "nomCommune": "ST VALERY EN CAUX" + "codePostal": "82120", + "codeCommune": "82129", + "libelleAcheminement": "MONTGAILLARD", + "nomCommune": "MONTGAILLARD" }, { - "codePostal": "25440", - "codeCommune": "25500", - "libelleAcheminement": "RONCHAUX", - "nomCommune": "RONCHAUX" + "codePostal": "72470", + "codeCommune": "72129", + "libelleAcheminement": "FATINES", + "nomCommune": "FATINES" }, { - "codePostal": "80140", - "codeCommune": "80783", - "libelleAcheminement": "VAUX MARQUENNEVILLE", - "nomCommune": "VAUX MARQUENNEVILLE" + "codePostal": "82360", + "codeCommune": "82089", + "libelleAcheminement": "LAMAGISTERE", + "nomCommune": "LAMAGISTERE" }, { - "codePostal": "83890", - "codeCommune": "83018", - "libelleAcheminement": "BESSE SUR ISSOLE", - "nomCommune": "BESSE SUR ISSOLE" + "codePostal": "70140", + "codeCommune": "70480", + "libelleAcheminement": "SAUVIGNEY LES PESMES", + "nomCommune": "SAUVIGNEY LES PESMES" }, { - "codePostal": "76430", - "codeCommune": "76660", - "libelleAcheminement": "SANDOUVILLE", - "nomCommune": "SANDOUVILLE" + "codePostal": "82120", + "codeCommune": "82143", + "libelleAcheminement": "POUPAS", + "nomCommune": "POUPAS" }, { - "codePostal": "25410", - "codeCommune": "25502", - "libelleAcheminement": "ROSET FLUANS", - "nomCommune": "ROSET FLUANS" + "codePostal": "72210", + "codeCommune": "72133", + "libelleAcheminement": "FILLE SUR SARTHE", + "nomCommune": "FILLE" }, { - "codePostal": "80160", - "codeCommune": "80786", - "libelleAcheminement": "VELENNES", - "nomCommune": "VELENNES" + "codePostal": "82500", + "codeCommune": "82091", + "libelleAcheminement": "LAMOTHE CUMONT", + "nomCommune": "LAMOTHE CUMONT" }, { - "codePostal": "83340", - "codeCommune": "83031", - "libelleAcheminement": "LE CANNET DES MAURES", - "nomCommune": "LE CANNET DES MAURES" + "codePostal": "70240", + "codeCommune": "70490", + "libelleAcheminement": "SERVIGNEY", + "nomCommune": "SERVIGNEY" }, { - "codePostal": "76450", - "codeCommune": "76664", - "libelleAcheminement": "SASSEVILLE", - "nomCommune": "SASSEVILLE" + "codePostal": "82110", + "codeCommune": "82164", + "libelleAcheminement": "STE JULIETTE", + "nomCommune": "STE JULIETTE" }, { - "codePostal": "25190", - "codeCommune": "25503", - "libelleAcheminement": "ROSIERES SUR BARBECHE", - "nomCommune": "ROSIERES SUR BARBECHE" + "codePostal": "72330", + "codeCommune": "72135", + "libelleAcheminement": "LA FONTAINE ST MARTIN", + "nomCommune": "LA FONTAINE ST MARTIN" }, { - "codePostal": "80270", - "codeCommune": "80788", - "libelleAcheminement": "VERGIES", - "nomCommune": "VERGIES" + "codePostal": "82160", + "codeCommune": "82100", + "libelleAcheminement": "LOZE", + "nomCommune": "LOZE" }, { - "codePostal": "83330", - "codeCommune": "83035", - "libelleAcheminement": "LE CASTELLET", - "nomCommune": "LE CASTELLET" + "codePostal": "70130", + "codeCommune": "70491", + "libelleAcheminement": "SEVEUX MOTEY", + "nomCommune": "SEVEUX MOTEY" }, { - "codePostal": "76630", - "codeCommune": "76665", - "libelleAcheminement": "SAUCHAY", - "nomCommune": "SAUCHAY" + "codePostal": "82340", + "codeCommune": "82166", + "libelleAcheminement": "ST MICHEL", + "nomCommune": "ST MICHEL" }, { - "codePostal": "25640", - "codeCommune": "25508", - "libelleAcheminement": "ROULANS", - "nomCommune": "ROULANS" + "codePostal": "72600", + "codeCommune": "72137", + "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", + "nomCommune": "VILLENEUVE EN PERSEIGNE" }, { - "codePostal": "80420", - "codeCommune": "80795", - "libelleAcheminement": "VILLE LE MARCLET", - "nomCommune": "VILLE LE MARCLET" + "codePostal": "82200", + "codeCommune": "82101", + "libelleAcheminement": "MALAUSE", + "nomCommune": "MALAUSE" }, { - "codePostal": "83300", - "codeCommune": "83038", - "libelleAcheminement": "CHATEAUDOUBLE", - "nomCommune": "CHATEAUDOUBLE" + "codePostal": "70130", + "codeCommune": "70492", + "libelleAcheminement": "SOING CUBRY CHARENTENAY", + "nomCommune": "SOING CUBRY CHARENTENAY" }, { - "codePostal": "76110", - "codeCommune": "76669", - "libelleAcheminement": "SAUSSEUZEMARE EN CAUX", - "nomCommune": "SAUSSEUZEMARE EN CAUX" + "codePostal": "82190", + "codeCommune": "82168", + "libelleAcheminement": "ST NAZAIRE DE VALENTANE", + "nomCommune": "ST NAZAIRE DE VALENTANE" }, { - "codePostal": "25290", - "codeCommune": "25511", - "libelleAcheminement": "RUREY", - "nomCommune": "RUREY" + "codePostal": "72600", + "codeCommune": "72137", + "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", + "nomCommune": "VILLENEUVE EN PERSEIGNE" }, { - "codePostal": "80500", - "codeCommune": "80805", - "libelleAcheminement": "VILLERS TOURNELLE", - "nomCommune": "VILLERS TOURNELLE" + "codePostal": "82500", + "codeCommune": "82103", + "libelleAcheminement": "MARIGNAC", + "nomCommune": "MARIGNAC" }, { - "codePostal": "83310", - "codeCommune": "83042", - "libelleAcheminement": "COGOLIN", - "nomCommune": "COGOLIN" + "codePostal": "70190", + "codeCommune": "70493", + "libelleAcheminement": "SORANS LES BREUREY", + "nomCommune": "SORANS LES BREUREY" }, { - "codePostal": "76690", - "codeCommune": "76675", - "libelleAcheminement": "SIERVILLE", - "nomCommune": "SIERVILLE" + "codePostal": "82400", + "codeCommune": "82170", + "libelleAcheminement": "ST PAUL D ESPIS", + "nomCommune": "ST PAUL D ESPIS" }, { - "codePostal": "25210", - "codeCommune": "25512", - "libelleAcheminement": "LE RUSSEY", - "nomCommune": "LE RUSSEY" + "codePostal": "72610", + "codeCommune": "72137", + "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", + "nomCommune": "VILLENEUVE EN PERSEIGNE" }, { - "codePostal": "80300", - "codeCommune": "80807", - "libelleAcheminement": "VILLE SUR ANCRE", - "nomCommune": "VILLE SUR ANCRE" + "codePostal": "82110", + "codeCommune": "82116", + "libelleAcheminement": "MONTAGUDET", + "nomCommune": "MONTAGUDET" }, { - "codePostal": "83840", - "codeCommune": "83044", - "libelleAcheminement": "COMPS SUR ARTUBY", - "nomCommune": "COMPS SUR ARTUBY" + "codePostal": "70150", + "codeCommune": "70509", + "libelleAcheminement": "TROMAREY", + "nomCommune": "TROMAREY" }, { - "codePostal": "76780", - "codeCommune": "76676", - "libelleAcheminement": "SIGY EN BRAY", - "nomCommune": "SIGY EN BRAY" + "codePostal": "82300", + "codeCommune": "82174", + "libelleAcheminement": "ST VINCENT D AUTEJAC", + "nomCommune": "ST VINCENT D AUTEJAC" }, { - "codePostal": "25270", - "codeCommune": "25513", - "libelleAcheminement": "STE ANNE", - "nomCommune": "STE ANNE" + "codePostal": "72130", + "codeCommune": "72138", + "libelleAcheminement": "FRESNAY SUR SARTHE", + "nomCommune": "FRESNAY SUR SARTHE" }, { - "codePostal": "80460", - "codeCommune": "80826", - "libelleAcheminement": "WOIGNARUE", - "nomCommune": "WOIGNARUE" + "codePostal": "82000", + "codeCommune": "82121", + "libelleAcheminement": "MONTAUBAN", + "nomCommune": "MONTAUBAN" }, { - "codePostal": "83390", - "codeCommune": "83049", - "libelleAcheminement": "CUERS", - "nomCommune": "CUERS" + "codePostal": "70210", + "codeCommune": "70526", + "libelleAcheminement": "VAUVILLERS", + "nomCommune": "VAUVILLERS" }, { - "codePostal": "76300", - "codeCommune": "76681", - "libelleAcheminement": "SOTTEVILLE LES ROUEN", - "nomCommune": "SOTTEVILLE LES ROUEN" + "codePostal": "82600", + "codeCommune": "82178", + "libelleAcheminement": "SAVENES", + "nomCommune": "SAVENES" }, { - "codePostal": "25300", - "codeCommune": "25515", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "72610", + "codeCommune": "72139", + "libelleAcheminement": "FYE", + "nomCommune": "FYE" }, { - "codePostal": "80520", - "codeCommune": "80834", - "libelleAcheminement": "YZENGREMER", - "nomCommune": "YZENGREMER" + "codePostal": "82110", + "codeCommune": "82122", + "libelleAcheminement": "MONTBARLA", + "nomCommune": "MONTBARLA" }, { - "codePostal": "83300", - "codeCommune": "83050", - "libelleAcheminement": "DRAGUIGNAN", - "nomCommune": "DRAGUIGNAN" + "codePostal": "70700", + "codeCommune": "70527", + "libelleAcheminement": "VAUX LE MONCELOT", + "nomCommune": "VAUX LE MONCELOT" }, { - "codePostal": "76410", - "codeCommune": "76682", - "libelleAcheminement": "SOTTEVILLE SOUS LE VAL", - "nomCommune": "SOTTEVILLE SOUS LE VAL" + "codePostal": "82240", + "codeCommune": "82179", + "libelleAcheminement": "SEPTFONDS", + "nomCommune": "SEPTFONDS" }, { - "codePostal": "25190", - "codeCommune": "25519", - "libelleAcheminement": "ST HIPPOLYTE", - "nomCommune": "ST HIPPOLYTE" + "codePostal": "72300", + "codeCommune": "72151", + "libelleAcheminement": "JUIGNE SUR SARTHE", + "nomCommune": "JUIGNE SUR SARTHE" }, { - "codePostal": "81170", - "codeCommune": "81009", - "libelleAcheminement": "AMARENS", - "nomCommune": "AMARENS" + "codePostal": "82700", + "codeCommune": "82125", + "libelleAcheminement": "MONTECH", + "nomCommune": "MONTECH" }, { - "codePostal": "83330", - "codeCommune": "83053", - "libelleAcheminement": "EVENOS", - "nomCommune": "EVENOS" + "codePostal": "70000", + "codeCommune": "70536", + "libelleAcheminement": "VELLE LE CHATEL", + "nomCommune": "VELLE LE CHATEL" }, { - "codePostal": "76540", - "codeCommune": "76688", - "libelleAcheminement": "THIERGEVILLE", - "nomCommune": "THIERGEVILLE" + "codePostal": "82190", + "codeCommune": "82182", + "libelleAcheminement": "TOUFFAILLES", + "nomCommune": "TOUFFAILLES" }, { - "codePostal": "25260", - "codeCommune": "25524", - "libelleAcheminement": "ST MAURICE COLOMBIER", - "nomCommune": "ST MAURICE COLOMBIER" + "codePostal": "72200", + "codeCommune": "72154", + "libelleAcheminement": "LA FLECHE", + "nomCommune": "LA FLECHE" }, { - "codePostal": "81700", - "codeCommune": "81015", - "libelleAcheminement": "APPELLE", - "nomCommune": "APPELLE" + "codePostal": "82300", + "codeCommune": "82126", + "libelleAcheminement": "MONTEILS", + "nomCommune": "MONTEILS" }, { - "codePostal": "83340", - "codeCommune": "83057", - "libelleAcheminement": "FLASSANS SUR ISSOLE", - "nomCommune": "FLASSANS SUR ISSOLE" + "codePostal": "70700", + "codeCommune": "70538", + "libelleAcheminement": "VELLEMOZ", + "nomCommune": "VELLEMOZ" }, { - "codePostal": "76450", - "codeCommune": "76692", - "libelleAcheminement": "THIOUVILLE", - "nomCommune": "THIOUVILLE" + "codePostal": "82800", + "codeCommune": "82184", + "libelleAcheminement": "VAISSAC", + "nomCommune": "VAISSAC" }, { - "codePostal": "25440", - "codeCommune": "25528", - "libelleAcheminement": "SAMSON", - "nomCommune": "SAMSON" + "codePostal": "72500", + "codeCommune": "72160", + "libelleAcheminement": "LAVERNAT", + "nomCommune": "LAVERNAT" }, { - "codePostal": "81160", - "codeCommune": "81018", - "libelleAcheminement": "ARTHES", - "nomCommune": "ARTHES" + "codePostal": "82160", + "codeCommune": "82133", + "libelleAcheminement": "MOUILLAC", + "nomCommune": "MOUILLAC" }, { - "codePostal": "83590", - "codeCommune": "83067", - "libelleAcheminement": "GONFARON", - "nomCommune": "GONFARON" + "codePostal": "70700", + "codeCommune": "70540", + "libelleAcheminement": "VELLOREILLE LES CHOYE", + "nomCommune": "VELLOREILLE LES CHOYE" }, { - "codePostal": "76910", - "codeCommune": "76703", - "libelleAcheminement": "TOUFFREVILLE SUR EU", - "nomCommune": "TOUFFREVILLE SUR EU" + "codePostal": "82220", + "codeCommune": "82189", + "libelleAcheminement": "VAZERAC", + "nomCommune": "VAZERAC" }, { - "codePostal": "25230", - "codeCommune": "25539", - "libelleAcheminement": "SELONCOURT", - "nomCommune": "SELONCOURT" + "codePostal": "72610", + "codeCommune": "72164", + "libelleAcheminement": "LIVET EN SAOSNOIS", + "nomCommune": "LIVET EN SAOSNOIS" }, { - "codePostal": "81200", - "codeCommune": "81021", - "libelleAcheminement": "AUSSILLON", - "nomCommune": "AUSSILLON" + "codePostal": "82240", + "codeCommune": "82148", + "libelleAcheminement": "PUYLAROQUE", + "nomCommune": "PUYLAROQUE" }, { - "codePostal": "83250", - "codeCommune": "83071", - "libelleAcheminement": "LA LONDE LES MAURES", - "nomCommune": "LA LONDE LES MAURES" + "codePostal": "70200", + "codeCommune": "70544", + "libelleAcheminement": "LA VERGENNE", + "nomCommune": "LA VERGENNE" }, { - "codePostal": "76550", - "codeCommune": "76707", - "libelleAcheminement": "TOURVILLE SUR ARQUES", - "nomCommune": "TOURVILLE SUR ARQUES" + "codePostal": "83460", + "codeCommune": "83004", + "libelleAcheminement": "LES ARCS", + "nomCommune": "LES ARCS" }, { - "codePostal": "25750", - "codeCommune": "25540", - "libelleAcheminement": "SEMONDANS", - "nomCommune": "SEMONDANS" + "codePostal": "72300", + "codeCommune": "72167", + "libelleAcheminement": "LOUAILLES", + "nomCommune": "LOUAILLES" }, { - "codePostal": "81700", - "codeCommune": "81030", - "libelleAcheminement": "BERTRE", - "nomCommune": "BERTRE" + "codePostal": "82370", + "codeCommune": "82167", + "libelleAcheminement": "ST NAUPHARY", + "nomCommune": "ST NAUPHARY" }, { - "codePostal": "83340", - "codeCommune": "83075", - "libelleAcheminement": "LES MAYONS", - "nomCommune": "LES MAYONS" + "codePostal": "70400", + "codeCommune": "70547", + "libelleAcheminement": "VERLANS", + "nomCommune": "VERLANS" }, { - "codePostal": "76580", - "codeCommune": "76709", - "libelleAcheminement": "LE TRAIT", - "nomCommune": "LE TRAIT" + "codePostal": "83600", + "codeCommune": "83008", + "libelleAcheminement": "BAGNOLS EN FORET", + "nomCommune": "BAGNOLS EN FORET" }, { - "codePostal": "25620", - "codeCommune": "25558", - "libelleAcheminement": "TARCENAY FOUCHERANS", - "nomCommune": "TARCENAY FOUCHERANS" + "codePostal": "72270", + "codeCommune": "72179", + "libelleAcheminement": "MALICORNE SUR SARTHE", + "nomCommune": "MALICORNE SUR SARTHE" }, { - "codePostal": "81600", - "codeCommune": "81038", - "libelleAcheminement": "BRENS", - "nomCommune": "BRENS" + "codePostal": "82210", + "codeCommune": "82169", + "libelleAcheminement": "ST NICOLAS DE LA GRAVE", + "nomCommune": "ST NICOLAS DE LA GRAVE" }, { - "codePostal": "83136", - "codeCommune": "83077", - "libelleAcheminement": "MEOUNES LES MONTRIEUX", - "nomCommune": "MEOUNES LES MONTRIEUX" + "codePostal": "70160", + "codeCommune": "70555", + "libelleAcheminement": "LA VILLEDIEU EN FONTENETTE", + "nomCommune": "LA VILLEDIEU EN FONTENETTE" }, { - "codePostal": "76170", - "codeCommune": "76712", - "libelleAcheminement": "LA TRINITE DU MONT", - "nomCommune": "LA TRINITE DU MONT" + "codePostal": "83150", + "codeCommune": "83009", + "libelleAcheminement": "BANDOL", + "nomCommune": "BANDOL" }, { - "codePostal": "25320", - "codeCommune": "25561", - "libelleAcheminement": "THORAISE", - "nomCommune": "THORAISE" + "codePostal": "72260", + "codeCommune": "72189", + "libelleAcheminement": "MAROLLES LES BRAULTS", + "nomCommune": "MAROLLES LES BRAULTS" }, { - "codePostal": "81300", - "codeCommune": "81043", - "libelleAcheminement": "BUSQUE", - "nomCommune": "BUSQUE" + "codePostal": "82400", + "codeCommune": "82186", + "libelleAcheminement": "VALENCE D AGEN", + "nomCommune": "VALENCE" }, { - "codePostal": "83490", - "codeCommune": "83086", - "libelleAcheminement": "LE MUY", - "nomCommune": "LE MUY" + "codePostal": "70310", + "codeCommune": "70573", + "libelleAcheminement": "LA VOIVRE", + "nomCommune": "LA VOIVRE" }, { - "codePostal": "76210", - "codeCommune": "76715", - "libelleAcheminement": "TROUVILLE", - "nomCommune": "TROUVILLE" + "codePostal": "83210", + "codeCommune": "83017", + "libelleAcheminement": "BELGENTIER", + "nomCommune": "BELGENTIER" }, { - "codePostal": "25320", - "codeCommune": "25564", - "libelleAcheminement": "TORPES", - "nomCommune": "TORPES" + "codePostal": "72170", + "codeCommune": "72199", + "libelleAcheminement": "MOITRON SUR SARTHE", + "nomCommune": "MOITRON SUR SARTHE" }, { - "codePostal": "81580", - "codeCommune": "81054", - "libelleAcheminement": "CAMBOUNET SUR LE SOR", - "nomCommune": "CAMBOUNET SUR LE SOR" + "codePostal": "82370", + "codeCommune": "82188", + "libelleAcheminement": "VARENNES", + "nomCommune": "VARENNES" }, { - "codePostal": "83136", - "codeCommune": "83088", - "libelleAcheminement": "NEOULES", - "nomCommune": "NEOULES" + "codePostal": "70200", + "codeCommune": "70577", + "libelleAcheminement": "VOUHENANS", + "nomCommune": "VOUHENANS" }, { - "codePostal": "76119", - "codeCommune": "76720", - "libelleAcheminement": "VARENGEVILLE SUR MER", - "nomCommune": "VARENGEVILLE SUR MER" + "codePostal": "83890", + "codeCommune": "83018", + "libelleAcheminement": "BESSE SUR ISSOLE", + "nomCommune": "BESSE SUR ISSOLE" }, { - "codePostal": "25680", - "codeCommune": "25572", - "libelleAcheminement": "TROUVANS", - "nomCommune": "TROUVANS" + "codePostal": "72320", + "codeCommune": "72208", + "libelleAcheminement": "MONTMIRAIL", + "nomCommune": "MONTMIRAIL" }, { - "codePostal": "81990", - "codeCommune": "81059", - "libelleAcheminement": "CARLUS", - "nomCommune": "CARLUS" + "codePostal": "82330", + "codeCommune": "82191", + "libelleAcheminement": "VERFEIL SUR SEYE", + "nomCommune": "VERFEIL" }, { - "codePostal": "83190", - "codeCommune": "83090", - "libelleAcheminement": "OLLIOULES", - "nomCommune": "OLLIOULES" + "codePostal": "70150", + "codeCommune": "70578", + "libelleAcheminement": "VREGILLE", + "nomCommune": "VREGILLE" }, { - "codePostal": "76340", - "codeCommune": "76744", - "libelleAcheminement": "VILLERS SOUS FOUCARMONT", - "nomCommune": "VILLERS SOUS FOUCARMONT" + "codePostal": "83119", + "codeCommune": "83025", + "libelleAcheminement": "BRUE AURIAC", + "nomCommune": "BRUE AURIAC" }, { - "codePostal": "25340", - "codeCommune": "25574", - "libelleAcheminement": "UZELLE", - "nomCommune": "UZELLE" + "codePostal": "72230", + "codeCommune": "72213", + "libelleAcheminement": "MULSANNE", + "nomCommune": "MULSANNE" }, { - "codePostal": "81260", - "codeCommune": "81062", - "libelleAcheminement": "FONTRIEU", - "nomCommune": "FONTRIEU" + "codePostal": "82230", + "codeCommune": "82192", + "libelleAcheminement": "VERLHAC TESCOU", + "nomCommune": "VERLHAC TESCOU" }, { - "codePostal": "83670", - "codeCommune": "83095", - "libelleAcheminement": "PONTEVES", - "nomCommune": "PONTEVES" + "codePostal": "71370", + "codeCommune": "71002", + "libelleAcheminement": "L ABERGEMENT STE COLOMBE", + "nomCommune": "L ABERGEMENT STE COLOMBE" }, { - "codePostal": "76450", - "codeCommune": "76748", - "libelleAcheminement": "VITTEFLEUR", - "nomCommune": "VITTEFLEUR" + "codePostal": "83740", + "codeCommune": "83027", + "libelleAcheminement": "LA CADIERE D AZUR", + "nomCommune": "LA CADIERE D AZUR" }, { - "codePostal": "25360", - "codeCommune": "25590", - "libelleAcheminement": "VAUDRIVILLERS", - "nomCommune": "VAUDRIVILLERS" + "codePostal": "72240", + "codeCommune": "72216", + "libelleAcheminement": "NEUVILLALAIS", + "nomCommune": "NEUVILLALAIS" }, { - "codePostal": "81150", - "codeCommune": "81063", - "libelleAcheminement": "CASTELNAU DE LEVIS", - "nomCommune": "CASTELNAU DE LEVIS" + "codePostal": "82500", + "codeCommune": "82193", + "libelleAcheminement": "VIGUERON", + "nomCommune": "VIGUERON" }, { - "codePostal": "83910", - "codeCommune": "83097", - "libelleAcheminement": "POURRIERES", - "nomCommune": "POURRIERES" + "codePostal": "71460", + "codeCommune": "71007", + "libelleAcheminement": "AMEUGNY", + "nomCommune": "AMEUGNY" }, { - "codePostal": "76540", - "codeCommune": "76755", - "libelleAcheminement": "YPREVILLE BIVILLE", - "nomCommune": "YPREVILLE BIVILLE" + "codePostal": "83300", + "codeCommune": "83038", + "libelleAcheminement": "CHATEAUDOUBLE", + "nomCommune": "CHATEAUDOUBLE" }, { - "codePostal": "25430", - "codeCommune": "25595", - "libelleAcheminement": "VELLEROT LES BELVOIR", - "nomCommune": "VELLEROT LES BELVOIR" + "codePostal": "72330", + "codeCommune": "72226", + "libelleAcheminement": "OIZE", + "nomCommune": "OIZE" }, { - "codePostal": "81170", - "codeCommune": "81095", - "libelleAcheminement": "FRAUSSEILLES", - "nomCommune": "FRAUSSEILLES" + "codePostal": "83630", + "codeCommune": "83005", + "libelleAcheminement": "ARTIGNOSC SUR VERDON", + "nomCommune": "ARTIGNOSC SUR VERDON" }, { - "codePostal": "13780", - "codeCommune": "83105", - "libelleAcheminement": "RIBOUX", - "nomCommune": "RIBOUX" + "codePostal": "71540", + "codeCommune": "71020", + "libelleAcheminement": "BARNAY", + "nomCommune": "BARNAY" }, { - "codePostal": "76560", - "codeCommune": "76757", - "libelleAcheminement": "YVECRIQUE", - "nomCommune": "YVECRIQUE" + "codePostal": "83670", + "codeCommune": "83039", + "libelleAcheminement": "CHATEAUVERT", + "nomCommune": "CHATEAUVERT" }, { - "codePostal": "25390", - "codeCommune": "25600", - "libelleAcheminement": "VENNES", - "nomCommune": "VENNES" + "codePostal": "72300", + "codeCommune": "72228", + "libelleAcheminement": "PARCE SUR SARTHE", + "nomCommune": "PARCE SUR SARTHE" }, { - "codePostal": "81430", - "codeCommune": "81096", - "libelleAcheminement": "LE FRAYSSE", - "nomCommune": "LE FRAYSSE" + "codePostal": "83830", + "codeCommune": "83011", + "libelleAcheminement": "BARGEMON", + "nomCommune": "BARGEMON" }, { - "codePostal": "83270", - "codeCommune": "83112", - "libelleAcheminement": "ST CYR SUR MER", - "nomCommune": "ST CYR SUR MER" + "codePostal": "71120", + "codeCommune": "71021", + "libelleAcheminement": "BARON", + "nomCommune": "BARON" }, { - "codePostal": "77410", - "codeCommune": "77005", - "libelleAcheminement": "ANNET SUR MARNE", - "nomCommune": "ANNET SUR MARNE" + "codePostal": "83840", + "codeCommune": "83040", + "libelleAcheminement": "CHATEAUVIEUX", + "nomCommune": "CHATEAUVIEUX" }, { - "codePostal": "25310", - "codeCommune": "25615", - "libelleAcheminement": "VILLARS LES BLAMONT", - "nomCommune": "VILLARS LES BLAMONT" + "codePostal": "72330", + "codeCommune": "72230", + "libelleAcheminement": "PARIGNE LE POLIN", + "nomCommune": "PARIGNE LE POLIN" }, { - "codePostal": "81570", - "codeCommune": "81098", - "libelleAcheminement": "FREJEVILLE", - "nomCommune": "FREJEVILLE" + "codePostal": "83840", + "codeCommune": "83022", + "libelleAcheminement": "BRENON", + "nomCommune": "BRENON" }, { - "codePostal": "83440", - "codeCommune": "83117", - "libelleAcheminement": "ST PAUL EN FORET", - "nomCommune": "ST PAUL EN FORET" + "codePostal": "71220", + "codeCommune": "71025", + "libelleAcheminement": "BEAUBERY", + "nomCommune": "BEAUBERY" }, { - "codePostal": "77630", - "codeCommune": "77006", - "libelleAcheminement": "ARBONNE LA FORET", - "nomCommune": "ARBONNE LA FORET" + "codePostal": "83260", + "codeCommune": "83047", + "libelleAcheminement": "LA CRAU", + "nomCommune": "LA CRAU" }, { - "codePostal": "68210", - "codeCommune": "68336", - "libelleAcheminement": "TRAUBACH LE BAS", - "nomCommune": "TRAUBACH LE BAS" + "codePostal": "72260", + "codeCommune": "72233", + "libelleAcheminement": "PERAY", + "nomCommune": "PERAY" }, { - "codePostal": "81190", - "codeCommune": "81110", - "libelleAcheminement": "JOUQUEVIEL", - "nomCommune": "JOUQUEVIEL" + "codePostal": "83830", + "codeCommune": "83028", + "libelleAcheminement": "CALLAS", + "nomCommune": "CALLAS" }, { - "codePostal": "83700", - "codeCommune": "83118", - "libelleAcheminement": "ST RAPHAEL", - "nomCommune": "ST RAPHAEL" + "codePostal": "71580", + "codeCommune": "71027", + "libelleAcheminement": "BEAUREPAIRE EN BRESSE", + "nomCommune": "BEAUREPAIRE EN BRESSE" }, { - "codePostal": "77440", - "codeCommune": "77008", - "libelleAcheminement": "ARMENTIERES EN BRIE", - "nomCommune": "ARMENTIERES EN BRIE" + "codePostal": "83570", + "codeCommune": "83051", + "libelleAcheminement": "ENTRECASTEAUX", + "nomCommune": "ENTRECASTEAUX" }, { - "codePostal": "68230", - "codeCommune": "68338", - "libelleAcheminement": "TURCKHEIM", - "nomCommune": "TURCKHEIM" + "codePostal": "72140", + "codeCommune": "72234", + "libelleAcheminement": "PEZE LE ROBERT", + "nomCommune": "PEZE LE ROBERT" }, { - "codePostal": "81290", - "codeCommune": "81120", - "libelleAcheminement": "LABRUGUIERE", - "nomCommune": "LABRUGUIERE" + "codePostal": "83240", + "codeCommune": "83036", + "libelleAcheminement": "CAVALAIRE SUR MER", + "nomCommune": "CAVALAIRE SUR MER" }, { - "codePostal": "83470", - "codeCommune": "83125", - "libelleAcheminement": "SEILLONS SOURCE D ARGENS", - "nomCommune": "SEILLONS SOURCE D ARGENS" + "codePostal": "71620", + "codeCommune": "71033", + "libelleAcheminement": "BEY", + "nomCommune": "BEY" }, { - "codePostal": "77720", - "codeCommune": "77010", - "libelleAcheminement": "AUBEPIERRE OZOUER LE REPOS", - "nomCommune": "AUBEPIERRE OZOUER LE REPOS" + "codePostal": "83560", + "codeCommune": "83052", + "libelleAcheminement": "ESPARRON", + "nomCommune": "ESPARRON" }, { - "codePostal": "68420", - "codeCommune": "68350", - "libelleAcheminement": "VOEGTLINSHOFFEN", - "nomCommune": "VOEGTLINSHOFFEN" + "codePostal": "72240", + "codeCommune": "72261", + "libelleAcheminement": "RUILLE EN CHAMPAGNE", + "nomCommune": "RUILLE EN CHAMPAGNE" }, { - "codePostal": "81170", - "codeCommune": "81123", - "libelleAcheminement": "LACAPELLE SEGALAR", - "nomCommune": "LACAPELLE SEGALAR" + "codePostal": "83300", + "codeCommune": "83038", + "libelleAcheminement": "CHATEAUDOUBLE", + "nomCommune": "CHATEAUDOUBLE" }, { - "codePostal": "83500", - "codeCommune": "83126", - "libelleAcheminement": "LA SEYNE SUR MER", - "nomCommune": "LA SEYNE SUR MER" + "codePostal": "71460", + "codeCommune": "71037", + "libelleAcheminement": "BISSY SUR FLEY", + "nomCommune": "BISSY SUR FLEY" }, { - "codePostal": "77118", - "codeCommune": "77019", - "libelleAcheminement": "BALLOY", - "nomCommune": "BALLOY" + "codePostal": "83440", + "codeCommune": "83055", + "libelleAcheminement": "FAYENCE", + "nomCommune": "FAYENCE" }, { - "codePostal": "68640", - "codeCommune": "68355", - "libelleAcheminement": "WALDIGHOFEN", - "nomCommune": "WALDIGHOFEN" + "codePostal": "72340", + "codeCommune": "72262", + "libelleAcheminement": "LOIR EN VALLEE", + "nomCommune": "LOIR EN VALLEE" }, { - "codePostal": "81500", - "codeCommune": "81126", - "libelleAcheminement": "LACOUGOTTE CADOUL", - "nomCommune": "LACOUGOTTE CADOUL" + "codePostal": "83830", + "codeCommune": "83041", + "libelleAcheminement": "CLAVIERS", + "nomCommune": "CLAVIERS" }, { - "codePostal": "83140", - "codeCommune": "83129", - "libelleAcheminement": "SIX FOURS LES PLAGES", - "nomCommune": "SIX FOURS LES PLAGES" + "codePostal": "71250", + "codeCommune": "71039", + "libelleAcheminement": "BLANOT", + "nomCommune": "BLANOT" }, { - "codePostal": "77970", - "codeCommune": "77020", - "libelleAcheminement": "BANNOST VILLEGAGNON", - "nomCommune": "BANNOST VILLEGAGNON" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "68230", - "codeCommune": "68358", - "libelleAcheminement": "WASSERBOURG", - "nomCommune": "WASSERBOURG" + "codePostal": "72460", + "codeCommune": "72275", + "libelleAcheminement": "ST CORNEILLE", + "nomCommune": "ST CORNEILLE" }, { - "codePostal": "81120", - "codeCommune": "81133", - "libelleAcheminement": "LAMILLARIE", - "nomCommune": "LAMILLARIE" + "codePostal": "83260", + "codeCommune": "83047", + "libelleAcheminement": "LA CRAU", + "nomCommune": "LA CRAU" }, { - "codePostal": "83340", - "codeCommune": "83136", - "libelleAcheminement": "LE THORONET", - "nomCommune": "LE THORONET" + "codePostal": "71460", + "codeCommune": "71042", + "libelleAcheminement": "BONNAY", + "nomCommune": "BONNAY" }, { - "codePostal": "77630", - "codeCommune": "77022", - "libelleAcheminement": "BARBIZON", - "nomCommune": "BARBIZON" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "68920", - "codeCommune": "68365", - "libelleAcheminement": "WETTOLSHEIM", - "nomCommune": "WETTOLSHEIM" + "codePostal": "72320", + "codeCommune": "72292", + "libelleAcheminement": "ST JEAN DES ECHELLES", + "nomCommune": "ST JEAN DES ECHELLES" }, { - "codePostal": "81260", - "codeCommune": "81137", - "libelleAcheminement": "LASFAILLADES", - "nomCommune": "LASFAILLADES" + "codePostal": "83390", + "codeCommune": "83049", + "libelleAcheminement": "CUERS", + "nomCommune": "CUERS" }, { - "codePostal": "83200", - "codeCommune": "83137", - "libelleAcheminement": "TOULON", - "nomCommune": "TOULON" + "codePostal": "71330", + "codeCommune": "71045", + "libelleAcheminement": "BOUHANS", + "nomCommune": "BOUHANS" }, { - "codePostal": "77118", - "codeCommune": "77025", - "libelleAcheminement": "BAZOCHES LES BRAY", - "nomCommune": "BAZOCHES LES BRAY" + "codePostal": "83980", + "codeCommune": "83070", + "libelleAcheminement": "LE LAVANDOU", + "nomCommune": "LE LAVANDOU" }, { - "codePostal": "68820", - "codeCommune": "68370", - "libelleAcheminement": "WILDENSTEIN", - "nomCommune": "WILDENSTEIN" + "codePostal": "72220", + "codeCommune": "72299", + "libelleAcheminement": "ST MARS D OUTILLE", + "nomCommune": "ST MARS D OUTILLE" }, { - "codePostal": "81500", - "codeCommune": "81140", - "libelleAcheminement": "LAVAUR", - "nomCommune": "LAVAUR" + "codePostal": "83300", + "codeCommune": "83050", + "libelleAcheminement": "DRAGUIGNAN", + "nomCommune": "DRAGUIGNAN" }, { - "codePostal": "84400", - "codeCommune": "84003", - "libelleAcheminement": "APT", - "nomCommune": "APT" + "codePostal": "71320", + "codeCommune": "71046", + "libelleAcheminement": "LA BOULAYE", + "nomCommune": "LA BOULAYE" }, { - "codePostal": "77890", - "codeCommune": "77027", - "libelleAcheminement": "BEAUMONT DU GATINAIS", - "nomCommune": "BEAUMONT DU GATINAIS" + "codePostal": "83440", + "codeCommune": "83081", + "libelleAcheminement": "MONTAUROUX", + "nomCommune": "MONTAUROUX" }, { - "codePostal": "68270", - "codeCommune": "68376", - "libelleAcheminement": "WITTENHEIM", - "nomCommune": "WITTENHEIM" + "codePostal": "72470", + "codeCommune": "72300", + "libelleAcheminement": "ST MARS LA BRIERE", + "nomCommune": "ST MARS LA BRIERE" }, { - "codePostal": "81340", - "codeCommune": "81141", - "libelleAcheminement": "LEDAS ET PENTHIES", - "nomCommune": "LEDAS ET PENTHIES" + "codePostal": "83590", + "codeCommune": "83067", + "libelleAcheminement": "GONFARON", + "nomCommune": "GONFARON" }, { - "codePostal": "84810", - "codeCommune": "84004", - "libelleAcheminement": "AUBIGNAN", - "nomCommune": "AUBIGNAN" + "codePostal": "71460", + "codeCommune": "71058", + "libelleAcheminement": "BRESSE SUR GROSNE", + "nomCommune": "BRESSE SUR GROSNE" }, { - "codePostal": "77540", - "codeCommune": "77031", - "libelleAcheminement": "BERNAY VILBERT", - "nomCommune": "BERNAY VILBERT" + "codePostal": "83190", + "codeCommune": "83090", + "libelleAcheminement": "OLLIOULES", + "nomCommune": "OLLIOULES" }, { - "codePostal": "68210", - "codeCommune": "68378", - "libelleAcheminement": "WOLFERSDORF", - "nomCommune": "WOLFERSDORF" + "codePostal": "72220", + "codeCommune": "72306", + "libelleAcheminement": "ST OUEN EN BELIN", + "nomCommune": "ST OUEN EN BELIN" }, { - "codePostal": "81110", - "codeCommune": "81143", - "libelleAcheminement": "LESCOUT", - "nomCommune": "LESCOUT" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "84190", - "codeCommune": "84012", - "libelleAcheminement": "BEAUMES DE VENISE", - "nomCommune": "BEAUMES DE VENISE" + "codePostal": "71670", + "codeCommune": "71059", + "libelleAcheminement": "LE BREUIL", + "nomCommune": "LE BREUIL" }, { - "codePostal": "77940", - "codeCommune": "77035", - "libelleAcheminement": "BLENNES", - "nomCommune": "BLENNES" + "codePostal": "83790", + "codeCommune": "83092", + "libelleAcheminement": "PIGNANS", + "nomCommune": "PIGNANS" }, { - "codePostal": "68600", - "codeCommune": "68379", - "libelleAcheminement": "WOLFGANTZEN", - "nomCommune": "WOLFGANTZEN" + "codePostal": "72350", + "codeCommune": "72307", + "libelleAcheminement": "ST OUEN EN CHAMPAGNE", + "nomCommune": "ST OUEN EN CHAMPAGNE" }, { - "codePostal": "81170", - "codeCommune": "81148", - "libelleAcheminement": "LOUBERS", - "nomCommune": "LOUBERS" + "codePostal": "83310", + "codeCommune": "83079", + "libelleAcheminement": "LA MOLE", + "nomCommune": "LA MOLE" }, { - "codePostal": "84340", - "codeCommune": "84015", - "libelleAcheminement": "BEAUMONT DU VENTOUX", - "nomCommune": "BEAUMONT DU VENTOUX" + "codePostal": "71460", + "codeCommune": "71068", + "libelleAcheminement": "BURZY", + "nomCommune": "BURZY" }, { - "codePostal": "77350", - "codeCommune": "77038", - "libelleAcheminement": "BOISSETTES", - "nomCommune": "BOISSETTES" + "codePostal": "83480", + "codeCommune": "83099", + "libelleAcheminement": "PUGET SUR ARGENS", + "nomCommune": "PUGET SUR ARGENS" }, { - "codePostal": "68130", - "codeCommune": "68382", - "libelleAcheminement": "ZAESSINGUE", - "nomCommune": "ZAESSINGUE" + "codePostal": "72650", + "codeCommune": "72320", + "libelleAcheminement": "ST SATURNIN", + "nomCommune": "ST SATURNIN" }, { - "codePostal": "81220", - "codeCommune": "81151", - "libelleAcheminement": "MAGRIN", - "nomCommune": "MAGRIN" + "codePostal": "83440", + "codeCommune": "83080", + "libelleAcheminement": "MONS", + "nomCommune": "MONS" }, { - "codePostal": "84370", - "codeCommune": "84016", - "libelleAcheminement": "BEDARRIDES", - "nomCommune": "BEDARRIDES" + "codePostal": "71530", + "codeCommune": "71081", + "libelleAcheminement": "CHAMPFORGEUIL", + "nomCommune": "CHAMPFORGEUIL" }, { - "codePostal": "77720", - "codeCommune": "77044", - "libelleAcheminement": "BOMBON", - "nomCommune": "BOMBON" + "codePostal": "83380", + "codeCommune": "83107", + "libelleAcheminement": "ROQUEBRUNE SUR ARGENS", + "nomCommune": "ROQUEBRUNE SUR ARGENS" }, { - "codePostal": "69610", - "codeCommune": "69014", - "libelleAcheminement": "AVEIZE", - "nomCommune": "AVEIZE" + "codePostal": "72240", + "codeCommune": "72321", + "libelleAcheminement": "ST SYMPHORIEN", + "nomCommune": "ST SYMPHORIEN" }, { - "codePostal": "81130", - "codeCommune": "81152", - "libelleAcheminement": "MAILHOC", - "nomCommune": "MAILHOC" + "codePostal": "83470", + "codeCommune": "83096", + "libelleAcheminement": "POURCIEUX", + "nomCommune": "POURCIEUX" }, { - "codePostal": "84240", - "codeCommune": "84024", - "libelleAcheminement": "CABRIERES D AIGUES", - "nomCommune": "CABRIERES D AIGUES" + "codePostal": "21340", + "codeCommune": "71085", + "libelleAcheminement": "CHANGE", + "nomCommune": "CHANGE" }, { - "codePostal": "77760", - "codeCommune": "77046", - "libelleAcheminement": "BOULANCOURT", - "nomCommune": "BOULANCOURT" + "codePostal": "83136", + "codeCommune": "83108", + "libelleAcheminement": "LA ROQUEBRUSSANNE", + "nomCommune": "LA ROQUEBRUSSANNE" }, { - "codePostal": "69620", - "codeCommune": "69026", - "libelleAcheminement": "LE BREUIL", - "nomCommune": "LE BREUIL" + "codePostal": "72360", + "codeCommune": "72327", + "libelleAcheminement": "SARCE", + "nomCommune": "SARCE" }, { - "codePostal": "81150", - "codeCommune": "81156", - "libelleAcheminement": "MARSSAC SUR TARN", - "nomCommune": "MARSSAC SUR TARN" + "codePostal": "83270", + "codeCommune": "83112", + "libelleAcheminement": "ST CYR SUR MER", + "nomCommune": "ST CYR SUR MER" }, { - "codePostal": "84220", - "codeCommune": "84025", - "libelleAcheminement": "CABRIERES D AVIGNON", - "nomCommune": "CABRIERES D AVIGNON" + "codePostal": "71460", + "codeCommune": "71087", + "libelleAcheminement": "CHAPAIZE", + "nomCommune": "CHAPAIZE" }, { - "codePostal": "77470", - "codeCommune": "77049", - "libelleAcheminement": "BOUTIGNY", - "nomCommune": "BOUTIGNY" + "codePostal": "83136", + "codeCommune": "83111", + "libelleAcheminement": "STE ANASTASIE SUR ISSOLE", + "nomCommune": "STE ANASTASIE SUR ISSOLE" }, { - "codePostal": "69690", - "codeCommune": "69030", - "libelleAcheminement": "BRULLIOLES", - "nomCommune": "BRULLIOLES" + "codePostal": "72190", + "codeCommune": "72328", + "libelleAcheminement": "SARGE LES LE MANS", + "nomCommune": "SARGE LES LE MANS" }, { - "codePostal": "81250", - "codeCommune": "81161", - "libelleAcheminement": "MASSALS", - "nomCommune": "MASSALS" + "codePostal": "83270", + "codeCommune": "83112", + "libelleAcheminement": "ST CYR SUR MER", + "nomCommune": "ST CYR SUR MER" }, { - "codePostal": "84290", - "codeCommune": "84028", - "libelleAcheminement": "CAIRANNE", - "nomCommune": "CAIRANNE" + "codePostal": "71130", + "codeCommune": "71088", + "libelleAcheminement": "LA CHAPELLE AU MANS", + "nomCommune": "LA CHAPELLE AU MANS" }, { - "codePostal": "77750", - "codeCommune": "77057", - "libelleAcheminement": "BUSSIERES", - "nomCommune": "BUSSIERES" + "codePostal": "83270", + "codeCommune": "83112", + "libelleAcheminement": "ST CYR SUR MER", + "nomCommune": "ST CYR SUR MER" }, { - "codePostal": "69270", - "codeCommune": "69033", - "libelleAcheminement": "CAILLOUX SUR FONTAINES", - "nomCommune": "CAILLOUX SUR FONTAINES" + "codePostal": "72140", + "codeCommune": "72334", + "libelleAcheminement": "SILLE LE GUILLAUME", + "nomCommune": "SILLE LE GUILLAUME" }, { - "codePostal": "81470", - "codeCommune": "81162", - "libelleAcheminement": "MAURENS SCOPONT", - "nomCommune": "MAURENS SCOPONT" + "codePostal": "83560", + "codeCommune": "83114", + "libelleAcheminement": "ST MARTIN DE PALLIERES", + "nomCommune": "ST MARTIN DE PALLIERES" }, { - "codePostal": "84850", - "codeCommune": "84029", - "libelleAcheminement": "CAMARET SUR AIGUES", - "nomCommune": "CAMARET SUR AIGUES" + "codePostal": "71570", + "codeCommune": "71090", + "libelleAcheminement": "LA CHAPELLE DE GUINCHAY", + "nomCommune": "LA CHAPELLE DE GUINCHAY" }, { - "codePostal": "77760", - "codeCommune": "77060", - "libelleAcheminement": "BUTHIERS", - "nomCommune": "BUTHIERS" + "codePostal": "83560", + "codeCommune": "83113", + "libelleAcheminement": "ST JULIEN", + "nomCommune": "ST JULIEN" }, { - "codePostal": "69840", - "codeCommune": "69035", - "libelleAcheminement": "CENVES", - "nomCommune": "CENVES" + "codePostal": "72300", + "codeCommune": "72336", + "libelleAcheminement": "SOLESMES", + "nomCommune": "SOLESMES" }, { - "codePostal": "81170", - "codeCommune": "81165", - "libelleAcheminement": "MILHARS", - "nomCommune": "MILHARS" + "codePostal": "83640", + "codeCommune": "83120", + "libelleAcheminement": "ST ZACHARIE", + "nomCommune": "ST ZACHARIE" }, { - "codePostal": "84330", - "codeCommune": "84030", - "libelleAcheminement": "CAROMB", - "nomCommune": "CAROMB" + "codePostal": "71520", + "codeCommune": "71091", + "libelleAcheminement": "LA CHAPELLE DU MONT DE FRANCE", + "nomCommune": "LA CHAPELLE DU MONT DE FRANCE" }, { - "codePostal": "77400", - "codeCommune": "77062", - "libelleAcheminement": "CARNETIN", - "nomCommune": "CARNETIN" + "codePostal": "83530", + "codeCommune": "83118", + "libelleAcheminement": "ST RAPHAEL", + "nomCommune": "ST RAPHAEL" }, { - "codePostal": "69870", - "codeCommune": "69037", - "libelleAcheminement": "CHAMBOST ALLIERES", - "nomCommune": "CHAMBOST ALLIERES" + "codePostal": "72210", + "codeCommune": "72339", + "libelleAcheminement": "SOULIGNE FLACE", + "nomCommune": "SOULIGNE FLACE" }, { - "codePostal": "81190", - "codeCommune": "81180", - "libelleAcheminement": "MONTIRAT", - "nomCommune": "MONTIRAT" + "codePostal": "83630", + "codeCommune": "83122", + "libelleAcheminement": "LES SALLES SUR VERDON", + "nomCommune": "LES SALLES SUR VERDON" }, { - "codePostal": "84750", - "codeCommune": "84032", - "libelleAcheminement": "CASENEUVE", - "nomCommune": "CASENEUVE" + "codePostal": "71320", + "codeCommune": "71098", + "libelleAcheminement": "CHARBONNAT", + "nomCommune": "CHARBONNAT" }, { - "codePostal": "77930", - "codeCommune": "77065", - "libelleAcheminement": "CELY EN BIERE", - "nomCommune": "CELY" + "codePostal": "83530", + "codeCommune": "83118", + "libelleAcheminement": "ST RAPHAEL", + "nomCommune": "ST RAPHAEL" }, { - "codePostal": "69770", - "codeCommune": "69038", - "libelleAcheminement": "CHAMBOST LONGESSAIGNE", - "nomCommune": "CHAMBOST LONGESSAIGNE" + "codePostal": "72370", + "codeCommune": "72341", + "libelleAcheminement": "SOULITRE", + "nomCommune": "SOULITRE" }, { - "codePostal": "81120", - "codeCommune": "81183", - "libelleAcheminement": "MONT ROC", - "nomCommune": "MONT ROC" + "codePostal": "83440", + "codeCommune": "83124", + "libelleAcheminement": "SEILLANS", + "nomCommune": "SEILLANS" }, { - "codePostal": "84510", - "codeCommune": "84034", - "libelleAcheminement": "CAUMONT SUR DURANCE", - "nomCommune": "CAUMONT SUR DURANCE" + "codePostal": "71260", + "codeCommune": "71099", + "libelleAcheminement": "CHARBONNIERES", + "nomCommune": "CHARBONNIERES" }, { - "codePostal": "77171", - "codeCommune": "77072", - "libelleAcheminement": "CHALAUTRE LA GRANDE", - "nomCommune": "CHALAUTRE LA GRANDE" + "codePostal": "83990", + "codeCommune": "83119", + "libelleAcheminement": "ST TROPEZ", + "nomCommune": "ST TROPEZ" }, { - "codePostal": "69410", - "codeCommune": "69040", - "libelleAcheminement": "CHAMPAGNE AU MONT D OR", - "nomCommune": "CHAMPAGNE AU MONT D OR" + "codePostal": "72400", + "codeCommune": "72342", + "libelleAcheminement": "SOUVIGNE SUR MEME", + "nomCommune": "SOUVIGNE SUR MEME" }, { - "codePostal": "81430", - "codeCommune": "81190", - "libelleAcheminement": "MOUZIEYS TEULET", - "nomCommune": "MOUZIEYS TEULET" + "codePostal": "83500", + "codeCommune": "83126", + "libelleAcheminement": "LA SEYNE SUR MER", + "nomCommune": "LA SEYNE SUR MER" }, { - "codePostal": "84300", - "codeCommune": "84035", - "libelleAcheminement": "CAVAILLON", - "nomCommune": "CAVAILLON" + "codePostal": "71270", + "codeCommune": "71101", + "libelleAcheminement": "CHARETTE VARENNES", + "nomCommune": "CHARETTE VARENNES" }, { - "codePostal": "77160", - "codeCommune": "77073", - "libelleAcheminement": "CHALAUTRE LA PETITE", - "nomCommune": "CHALAUTRE LA PETITE" + "codePostal": "83690", + "codeCommune": "83121", + "libelleAcheminement": "SALERNES", + "nomCommune": "SALERNES" }, { - "codePostal": "69380", - "codeCommune": "69049", - "libelleAcheminement": "CHASSELAY", - "nomCommune": "CHASSELAY" + "codePostal": "72240", + "codeCommune": "72351", + "libelleAcheminement": "TENNIE", + "nomCommune": "TENNIE" }, { - "codePostal": "81710", - "codeCommune": "81195", - "libelleAcheminement": "NAVES", - "nomCommune": "NAVES" + "codePostal": "83690", + "codeCommune": "83128", + "libelleAcheminement": "SILLANS LA CASCADE", + "nomCommune": "SILLANS LA CASCADE" }, { - "codePostal": "84470", - "codeCommune": "84036", - "libelleAcheminement": "CHATEAUNEUF DE GADAGNE", - "nomCommune": "CHATEAUNEUF DE GADAGNE" + "codePostal": "71170", + "codeCommune": "71110", + "libelleAcheminement": "CHASSIGNY SOUS DUN", + "nomCommune": "CHASSIGNY SOUS DUN" }, { - "codePostal": "77144", - "codeCommune": "77075", - "libelleAcheminement": "CHALIFERT", - "nomCommune": "CHALIFERT" + "codePostal": "83110", + "codeCommune": "83123", + "libelleAcheminement": "SANARY SUR MER", + "nomCommune": "SANARY SUR MER" }, { - "codePostal": "69250", - "codeCommune": "69071", - "libelleAcheminement": "CURIS AU MONT D OR", - "nomCommune": "CURIS AU MONT D OR" + "codePostal": "72440", + "codeCommune": "72361", + "libelleAcheminement": "TRESSON", + "nomCommune": "TRESSON" }, { - "codePostal": "81470", - "codeCommune": "81205", - "libelleAcheminement": "PECHAUDIER", - "nomCommune": "PECHAUDIER" + "codePostal": "83140", + "codeCommune": "83129", + "libelleAcheminement": "SIX FOURS LES PLAGES", + "nomCommune": "SIX FOURS LES PLAGES" }, { - "codePostal": "84460", - "codeCommune": "84038", - "libelleAcheminement": "CHEVAL BLANC", - "nomCommune": "CHEVAL BLANC" + "codePostal": "71310", + "codeCommune": "71121", + "libelleAcheminement": "LA CHAUX", + "nomCommune": "LA CHAUX" }, { - "codePostal": "77910", - "codeCommune": "77077", - "libelleAcheminement": "CHAMBRY", - "nomCommune": "CHAMBRY" + "codePostal": "83500", + "codeCommune": "83126", + "libelleAcheminement": "LA SEYNE SUR MER", + "nomCommune": "LA SEYNE SUR MER" }, { - "codePostal": "69220", - "codeCommune": "69077", - "libelleAcheminement": "DRACE", - "nomCommune": "DRACE" + "codePostal": "72540", + "codeCommune": "72367", + "libelleAcheminement": "VALLON SUR GEE", + "nomCommune": "VALLON SUR GEE" }, { - "codePostal": "81120", - "codeCommune": "81211", - "libelleAcheminement": "POULAN POUZOLS", - "nomCommune": "POULAN POUZOLS" + "codePostal": "83000", + "codeCommune": "83137", + "libelleAcheminement": "TOULON", + "nomCommune": "TOULON" }, { - "codePostal": "84110", - "codeCommune": "84040", - "libelleAcheminement": "CRESTET", - "nomCommune": "CRESTET" + "codePostal": "71960", + "codeCommune": "71126", + "libelleAcheminement": "CHEVAGNY LES CHEVRIERES", + "nomCommune": "CHEVAGNY LES CHEVRIERES" }, { - "codePostal": "77260", - "codeCommune": "77078", - "libelleAcheminement": "CHAMIGNY", - "nomCommune": "CHAMIGNY" + "codePostal": "83500", + "codeCommune": "83126", + "libelleAcheminement": "LA SEYNE SUR MER", + "nomCommune": "LA SEYNE SUR MER" }, { - "codePostal": "69130", - "codeCommune": "69081", - "libelleAcheminement": "ECULLY", - "nomCommune": "ECULLY" + "codePostal": "72600", + "codeCommune": "72372", + "libelleAcheminement": "VEZOT", + "nomCommune": "VEZOT" }, { - "codePostal": "81170", - "codeCommune": "81224", - "libelleAcheminement": "LE RIOLS", - "nomCommune": "LE RIOLS" + "codePostal": "83170", + "codeCommune": "83140", + "libelleAcheminement": "TOURVES", + "nomCommune": "TOURVES" }, { - "codePostal": "84320", - "codeCommune": "84043", - "libelleAcheminement": "ENTRAIGUES SUR LA SORGUE", - "nomCommune": "ENTRAIGUES SUR LA SORGUE" + "codePostal": "71220", + "codeCommune": "71127", + "libelleAcheminement": "CHEVAGNY SUR GUYE", + "nomCommune": "CHEVAGNY SUR GUYE" }, { - "codePostal": "77430", - "codeCommune": "77079", - "libelleAcheminement": "CHAMPAGNE SUR SEINE", - "nomCommune": "CHAMPAGNE SUR SEINE" + "codePostal": "83140", + "codeCommune": "83129", + "libelleAcheminement": "SIX FOURS LES PLAGES", + "nomCommune": "SIX FOURS LES PLAGES" }, { - "codePostal": "69840", - "codeCommune": "69082", - "libelleAcheminement": "EMERINGES", - "nomCommune": "EMERINGES" + "codePostal": "72400", + "codeCommune": "72375", + "libelleAcheminement": "VILLAINES LA GONAIS", + "nomCommune": "VILLAINES LA GONAIS" }, { - "codePostal": "81120", - "codeCommune": "81233", - "libelleAcheminement": "TERRE DE BANCALIE", - "nomCommune": "TERRE DE BANCALIE" + "codePostal": "83143", + "codeCommune": "83143", + "libelleAcheminement": "LE VAL", + "nomCommune": "LE VAL" }, { - "codePostal": "84410", - "codeCommune": "84046", - "libelleAcheminement": "FLASSAN", - "nomCommune": "FLASSAN" + "codePostal": "71520", + "codeCommune": "71134", + "libelleAcheminement": "NAVOUR SUR GROSNE", + "nomCommune": "NAVOUR SUR GROSNE" }, { - "codePostal": "77660", - "codeCommune": "77084", - "libelleAcheminement": "CHANGIS SUR MARNE", - "nomCommune": "CHANGIS SUR MARNE" + "codePostal": "83210", + "codeCommune": "83132", + "libelleAcheminement": "SOLLIES VILLE", + "nomCommune": "SOLLIES VILLE" }, { - "codePostal": "69210", - "codeCommune": "69086", - "libelleAcheminement": "FLEURIEUX SUR L ARBRESLE", - "nomCommune": "FLEURIEUX SUR L ARBRESLE" + "codePostal": "72300", + "codeCommune": "72378", + "libelleAcheminement": "VION", + "nomCommune": "VION" }, { - "codePostal": "81120", - "codeCommune": "81233", - "libelleAcheminement": "TERRE DE BANCALIE", - "nomCommune": "TERRE DE BANCALIE" + "codePostal": "83160", + "codeCommune": "83144", + "libelleAcheminement": "LA VALETTE DU VAR", + "nomCommune": "LA VALETTE DU VAR" }, { - "codePostal": "84190", - "codeCommune": "84049", - "libelleAcheminement": "GIGONDAS", - "nomCommune": "GIGONDAS" + "codePostal": "71460", + "codeCommune": "71147", + "libelleAcheminement": "CORTEVAIX", + "nomCommune": "CORTEVAIX" }, { - "codePostal": "77160", - "codeCommune": "77090", - "libelleAcheminement": "LA CHAPELLE ST SULPICE", - "nomCommune": "LA CHAPELLE ST SULPICE" + "codePostal": "83460", + "codeCommune": "83134", + "libelleAcheminement": "TARADEAU", + "nomCommune": "TARADEAU" }, { - "codePostal": "69270", - "codeCommune": "69087", - "libelleAcheminement": "FONTAINES ST MARTIN", - "nomCommune": "FONTAINES ST MARTIN" + "codePostal": "72350", + "codeCommune": "72379", + "libelleAcheminement": "VIRE EN CHAMPAGNE", + "nomCommune": "VIRE EN CHAMPAGNE" }, { - "codePostal": "81140", - "codeCommune": "81234", - "libelleAcheminement": "ROUSSAYROLLES", - "nomCommune": "ROUSSAYROLLES" + "codePostal": "83670", + "codeCommune": "83145", + "libelleAcheminement": "VARAGES", + "nomCommune": "VARAGES" }, { - "codePostal": "84220", - "codeCommune": "84057", - "libelleAcheminement": "JOUCAS", - "nomCommune": "JOUCAS" + "codePostal": "71170", + "codeCommune": "71148", + "libelleAcheminement": "COUBLANC", + "nomCommune": "COUBLANC" }, { - "codePostal": "77169", - "codeCommune": "77106", - "libelleAcheminement": "CHAUFFRY", - "nomCommune": "CHAUFFRY" + "codePostal": "83340", + "codeCommune": "83136", + "libelleAcheminement": "LE THORONET", + "nomCommune": "LE THORONET" }, { - "codePostal": "69620", - "codeCommune": "69090", - "libelleAcheminement": "FRONTENAS", - "nomCommune": "FRONTENAS" + "codePostal": "72530", + "codeCommune": "72386", + "libelleAcheminement": "YVRE L EVEQUE", + "nomCommune": "YVRE L EVEQUE" }, { - "codePostal": "81110", - "codeCommune": "81237", - "libelleAcheminement": "ST AMANCET", - "nomCommune": "ST AMANCET" + "codePostal": "83550", + "codeCommune": "83148", + "libelleAcheminement": "VIDAUBAN", + "nomCommune": "VIDAUBAN" }, { - "codePostal": "84220", - "codeCommune": "84066", - "libelleAcheminement": "LIOUX", - "nomCommune": "LIOUX" + "codePostal": "71680", + "codeCommune": "71150", + "libelleAcheminement": "CRECHES SUR SAONE", + "nomCommune": "CRECHES SUR SAONE" }, { - "codePostal": "77390", - "codeCommune": "77107", - "libelleAcheminement": "CHAUMES EN BRIE", - "nomCommune": "CHAUMES EN BRIE" + "codePostal": "83820", + "codeCommune": "83152", + "libelleAcheminement": "RAYOL CANADEL SUR MER", + "nomCommune": "RAYOL CANADEL SUR MER" }, { - "codePostal": "69610", - "codeCommune": "69098", - "libelleAcheminement": "LES HALLES", - "nomCommune": "LES HALLES" + "codePostal": "73260", + "codeCommune": "73003", + "libelleAcheminement": "GRAND AIGUEBLANCHE", + "nomCommune": "GRAND AIGUEBLANCHE" }, { - "codePostal": "81110", - "codeCommune": "81242", - "libelleAcheminement": "ST AVIT", - "nomCommune": "ST AVIT" + "codePostal": "83690", + "codeCommune": "83149", + "libelleAcheminement": "VILLECROZE", + "nomCommune": "VILLECROZE" }, { - "codePostal": "84870", - "codeCommune": "84067", - "libelleAcheminement": "LORIOL DU COMTAT", - "nomCommune": "LORIOL DU COMTAT" + "codePostal": "71480", + "codeCommune": "71157", + "libelleAcheminement": "CUISEAUX", + "nomCommune": "CUISEAUX" }, { - "codePostal": "77160", - "codeCommune": "77109", - "libelleAcheminement": "CHENOISE CUCHARMOY", - "nomCommune": "CHENOISE CUCHARMOY" + "codePostal": "83820", + "codeCommune": "83152", + "libelleAcheminement": "RAYOL CANADEL SUR MER", + "nomCommune": "RAYOL CANADEL SUR MER" }, { - "codePostal": "69610", - "codeCommune": "69099", - "libelleAcheminement": "HAUTE RIVOIRE", - "nomCommune": "HAUTE RIVOIRE" + "codePostal": "73410", + "codeCommune": "73010", + "libelleAcheminement": "ENTRELACS", + "nomCommune": "ENTRELACS" }, { - "codePostal": "81190", - "codeCommune": "81245", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "83560", + "codeCommune": "83150", + "libelleAcheminement": "VINON SUR VERDON", + "nomCommune": "VINON SUR VERDON" }, { - "codePostal": "84560", - "codeCommune": "84073", - "libelleAcheminement": "MENERBES", - "nomCommune": "MENERBES" + "codePostal": "71130", + "codeCommune": "71161", + "libelleAcheminement": "CURDIN", + "nomCommune": "CURDIN" }, { - "codePostal": "77410", - "codeCommune": "77118", - "libelleAcheminement": "CLAYE SOUILLY", - "nomCommune": "CLAYE SOUILLY" + "codePostal": "84210", + "codeCommune": "84001", + "libelleAcheminement": "ALTHEN DES PALUDS", + "nomCommune": "ALTHEN DES PALUDS" }, { - "codePostal": "69480", - "codeCommune": "69106", - "libelleAcheminement": "LACHASSAGNE", - "nomCommune": "LACHASSAGNE" + "codePostal": "73300", + "codeCommune": "73013", + "libelleAcheminement": "ALBIEZ MONTROND", + "nomCommune": "ALBIEZ MONTROND" }, { - "codePostal": "81340", - "codeCommune": "81247", - "libelleAcheminement": "ST CIRGUE", - "nomCommune": "ST CIRGUE" + "codePostal": "84400", + "codeCommune": "84003", + "libelleAcheminement": "APT", + "nomCommune": "APT" }, { - "codePostal": "84570", - "codeCommune": "84075", - "libelleAcheminement": "METHAMIS", - "nomCommune": "METHAMIS" + "codePostal": "71460", + "codeCommune": "71164", + "libelleAcheminement": "CURTIL SOUS BURNAND", + "nomCommune": "CURTIL SOUS BURNAND" }, { - "codePostal": "77410", - "codeCommune": "77118", - "libelleAcheminement": "CLAYE SOUILLY", - "nomCommune": "CLAYE SOUILLY" + "codePostal": "84240", + "codeCommune": "84002", + "libelleAcheminement": "ANSOUIS", + "nomCommune": "ANSOUIS" }, { - "codePostal": "69590", - "codeCommune": "69110", - "libelleAcheminement": "LARAJASSE", - "nomCommune": "LARAJASSE" + "codePostal": "73550", + "codeCommune": "73015", + "libelleAcheminement": "LES ALLUES", + "nomCommune": "LES ALLUES" }, { - "codePostal": "81440", - "codeCommune": "81250", - "libelleAcheminement": "ST GENEST DE CONTEST", - "nomCommune": "ST GENEST DE CONTEST" + "codePostal": "84810", + "codeCommune": "84004", + "libelleAcheminement": "AUBIGNAN", + "nomCommune": "AUBIGNAN" }, { - "codePostal": "84170", - "codeCommune": "84080", - "libelleAcheminement": "MONTEUX", - "nomCommune": "MONTEUX" + "codePostal": "71510", + "codeCommune": "71171", + "libelleAcheminement": "DENNEVY", + "nomCommune": "DENNEVY" }, { - "codePostal": "77370", - "codeCommune": "77119", - "libelleAcheminement": "CLOS FONTAINE", - "nomCommune": "CLOS FONTAINE" + "codePostal": "84390", + "codeCommune": "84005", + "libelleAcheminement": "AUREL", + "nomCommune": "AUREL" }, { - "codePostal": "69380", - "codeCommune": "69117", - "libelleAcheminement": "LISSIEU", - "nomCommune": "LISSIEU" + "codePostal": "73550", + "codeCommune": "73015", + "libelleAcheminement": "LES ALLUES", + "nomCommune": "LES ALLUES" }, { - "codePostal": "81350", - "codeCommune": "81254", - "libelleAcheminement": "ST JEAN DE MARCEL", - "nomCommune": "ST JEAN DE MARCEL" + "codePostal": "84000", + "codeCommune": "84007", + "libelleAcheminement": "AVIGNON", + "nomCommune": "AVIGNON" }, { - "codePostal": "84100", - "codeCommune": "84087", - "libelleAcheminement": "ORANGE", - "nomCommune": "ORANGE" + "codePostal": "71640", + "codeCommune": "71182", + "libelleAcheminement": "DRACY LE FORT", + "nomCommune": "DRACY LE FORT" }, { - "codePostal": "77450", - "codeCommune": "77125", - "libelleAcheminement": "CONDE STE LIBIAIRE", - "nomCommune": "CONDE STE LIBIAIRE" + "codePostal": "84330", + "codeCommune": "84008", + "libelleAcheminement": "LE BARROUX", + "nomCommune": "LE BARROUX" }, { - "codePostal": "69480", - "codeCommune": "69122", - "libelleAcheminement": "LUCENAY", - "nomCommune": "LUCENAY" + "codePostal": "73190", + "codeCommune": "73017", + "libelleAcheminement": "APREMONT", + "nomCommune": "APREMONT" }, { - "codePostal": "81340", - "codeCommune": "81259", - "libelleAcheminement": "ST JULIEN GAULENE", - "nomCommune": "ST JULIEN GAULENE" + "codePostal": "84190", + "codeCommune": "84012", + "libelleAcheminement": "BEAUMES DE VENISE", + "nomCommune": "BEAUMES DE VENISE" }, { - "codePostal": "84120", - "codeCommune": "84089", - "libelleAcheminement": "PERTUIS", - "nomCommune": "PERTUIS" + "codePostal": "71580", + "codeCommune": "71196", + "libelleAcheminement": "LE FAY", + "nomCommune": "LE FAY" }, { - "codePostal": "77580", - "codeCommune": "77130", - "libelleAcheminement": "COULOMMES", - "nomCommune": "COULOMMES" + "codePostal": "84220", + "codeCommune": "84013", + "libelleAcheminement": "BEAUMETTES", + "nomCommune": "BEAUMETTES" }, { - "codePostal": "69550", - "codeCommune": "69130", - "libelleAcheminement": "MEAUX LA MONTAGNE", - "nomCommune": "MEAUX LA MONTAGNE" + "codePostal": "73610", + "codeCommune": "73022", + "libelleAcheminement": "ATTIGNAT ONCIN", + "nomCommune": "ATTIGNAT ONCIN" }, { - "codePostal": "81500", - "codeCommune": "81261", - "libelleAcheminement": "ST LIEUX LES LAVAUR", - "nomCommune": "ST LIEUX LES LAVAUR" + "codePostal": "84500", + "codeCommune": "84019", + "libelleAcheminement": "BOLLENE", + "nomCommune": "BOLLENE" }, { - "codePostal": "84130", - "codeCommune": "84092", - "libelleAcheminement": "LE PONTET", - "nomCommune": "LE PONTET" + "codePostal": "71340", + "codeCommune": "71200", + "libelleAcheminement": "FLEURY LA MONTAGNE", + "nomCommune": "FLEURY LA MONTAGNE" }, { - "codePostal": "77560", - "codeCommune": "77134", - "libelleAcheminement": "COURCHAMP", - "nomCommune": "COURCHAMP" + "codePostal": "84480", + "codeCommune": "84020", + "libelleAcheminement": "BONNIEUX", + "nomCommune": "BONNIEUX" }, { - "codePostal": "69860", - "codeCommune": "69135", - "libelleAcheminement": "DEUX GROSNES", - "nomCommune": "DEUX GROSNES" + "codePostal": "73260", + "codeCommune": "73024", + "libelleAcheminement": "LES AVANCHERS VALMOREL", + "nomCommune": "LES AVANCHERS VALMOREL" }, { - "codePostal": "81330", - "codeCommune": "81267", - "libelleAcheminement": "ST PIERRE DE TRIVISY", - "nomCommune": "ST PIERRE DE TRIVISY" + "codePostal": "84290", + "codeCommune": "84028", + "libelleAcheminement": "CAIRANNE", + "nomCommune": "CAIRANNE" }, { - "codePostal": "84110", - "codeCommune": "84096", - "libelleAcheminement": "RASTEAU", - "nomCommune": "RASTEAU" + "codePostal": "71120", + "codeCommune": "71203", + "libelleAcheminement": "FONTENAY", + "nomCommune": "FONTENAY" }, { - "codePostal": "77390", - "codeCommune": "77138", - "libelleAcheminement": "COURTOMER", - "nomCommune": "COURTOMER" + "codePostal": "84160", + "codeCommune": "84026", + "libelleAcheminement": "CADENET", + "nomCommune": "CADENET" }, { - "codePostal": "69860", - "codeCommune": "69135", - "libelleAcheminement": "DEUX GROSNES", - "nomCommune": "DEUX GROSNES" + "codePostal": "73500", + "codeCommune": "73026", + "libelleAcheminement": "AVRIEUX", + "nomCommune": "AVRIEUX" }, { - "codePostal": "81370", - "codeCommune": "81271", - "libelleAcheminement": "ST SULPICE LA POINTE", - "nomCommune": "ST SULPICE LA POINTE" + "codePostal": "84300", + "codeCommune": "84035", + "libelleAcheminement": "CAVAILLON", + "nomCommune": "CAVAILLON" }, { - "codePostal": "84440", - "codeCommune": "84099", - "libelleAcheminement": "ROBION", - "nomCommune": "ROBION" + "codePostal": "71330", + "codeCommune": "71205", + "libelleAcheminement": "FRANGY EN BRESSE", + "nomCommune": "FRANGY EN BRESSE" }, { - "codePostal": "77580", - "codeCommune": "77142", - "libelleAcheminement": "CRECY LA CHAPELLE", - "nomCommune": "CRECY LA CHAPELLE" + "codePostal": "84850", + "codeCommune": "84029", + "libelleAcheminement": "CAMARET SUR AIGUES", + "nomCommune": "CAMARET SUR AIGUES" }, { - "codePostal": "69700", - "codeCommune": "69136", - "libelleAcheminement": "MONTAGNY", - "nomCommune": "MONTAGNY" + "codePostal": "73170", + "codeCommune": "73028", + "libelleAcheminement": "LA BALME", + "nomCommune": "LA BALME" }, { - "codePostal": "81710", - "codeCommune": "81273", - "libelleAcheminement": "SAIX", - "nomCommune": "SAIX" + "codePostal": "84110", + "codeCommune": "84045", + "libelleAcheminement": "FAUCON", + "nomCommune": "FAUCON" }, { - "codePostal": "84290", - "codeCommune": "84117", - "libelleAcheminement": "ST ROMAN DE MALEGARDE", - "nomCommune": "ST ROMAN DE MALEGARDE" + "codePostal": "71440", + "codeCommune": "71206", + "libelleAcheminement": "LA FRETTE", + "nomCommune": "LA FRETTE" }, { - "codePostal": "77580", - "codeCommune": "77142", - "libelleAcheminement": "CRECY LA CHAPELLE", - "nomCommune": "CRECY LA CHAPELLE" + "codePostal": "84200", + "codeCommune": "84031", + "libelleAcheminement": "CARPENTRAS", + "nomCommune": "CARPENTRAS" }, { - "codePostal": "69590", - "codeCommune": "69155", - "libelleAcheminement": "POMEYS", - "nomCommune": "POMEYS" + "codePostal": "73270", + "codeCommune": "73034", + "libelleAcheminement": "BEAUFORT SUR DORON", + "nomCommune": "BEAUFORT" }, { - "codePostal": "81540", - "codeCommune": "81288", - "libelleAcheminement": "SOREZE", - "nomCommune": "SOREZE" + "codePostal": "84410", + "codeCommune": "84046", + "libelleAcheminement": "FLASSAN", + "nomCommune": "FLASSAN" }, { - "codePostal": "84300", - "codeCommune": "84131", - "libelleAcheminement": "TAILLADES", - "nomCommune": "TAILLADES" + "codePostal": "71960", + "codeCommune": "71210", + "libelleAcheminement": "FUISSE", + "nomCommune": "FUISSE" }, { - "codePostal": "77840", - "codeCommune": "77148", - "libelleAcheminement": "CROUY SUR OURCQ", - "nomCommune": "CROUY SUR OURCQ" + "codePostal": "84510", + "codeCommune": "84034", + "libelleAcheminement": "CAUMONT SUR DURANCE", + "nomCommune": "CAUMONT SUR DURANCE" }, { - "codePostal": "69480", - "codeCommune": "69156", - "libelleAcheminement": "POMMIERS", - "nomCommune": "POMMIERS" + "codePostal": "73340", + "codeCommune": "73036", + "libelleAcheminement": "BELLECOMBE EN BAUGES", + "nomCommune": "BELLECOMBE EN BAUGES" }, { - "codePostal": "81580", - "codeCommune": "81289", - "libelleAcheminement": "SOUAL", - "nomCommune": "SOUAL" + "codePostal": "84240", + "codeCommune": "84052", + "libelleAcheminement": "GRAMBOIS", + "nomCommune": "GRAMBOIS" }, { - "codePostal": "84850", - "codeCommune": "84134", - "libelleAcheminement": "TRAVAILLAN", - "nomCommune": "TRAVAILLAN" + "codePostal": "71590", + "codeCommune": "71215", + "libelleAcheminement": "GERGY", + "nomCommune": "GERGY" }, { - "codePostal": "77440", - "codeCommune": "77157", - "libelleAcheminement": "DHUISY", - "nomCommune": "DHUISY" + "codePostal": "84300", + "codeCommune": "84035", + "libelleAcheminement": "CAVAILLON", + "nomCommune": "CAVAILLON" }, { - "codePostal": "69870", - "codeCommune": "69160", - "libelleAcheminement": "POULE LES ECHARMEAUX", - "nomCommune": "POULE LES ECHARMEAUX" + "codePostal": "73480", + "codeCommune": "73040", + "libelleAcheminement": "BESSANS", + "nomCommune": "BESSANS" }, { - "codePostal": "81170", - "codeCommune": "81290", - "libelleAcheminement": "SOUEL", - "nomCommune": "SOUEL" + "codePostal": "84800", + "codeCommune": "84054", + "libelleAcheminement": "L ISLE SUR LA SORGUE", + "nomCommune": "L ISLE SUR LA SORGUE" }, { - "codePostal": "84600", - "codeCommune": "84138", - "libelleAcheminement": "VALREAS", - "nomCommune": "VALREAS" + "codePostal": "71430", + "codeCommune": "71224", + "libelleAcheminement": "GRANDVAUX", + "nomCommune": "GRANDVAUX" }, { - "codePostal": "77830", - "codeCommune": "77164", - "libelleAcheminement": "ECHOUBOULAINS", - "nomCommune": "ECHOUBOULAINS" + "codePostal": "84360", + "codeCommune": "84065", + "libelleAcheminement": "LAURIS", + "nomCommune": "LAURIS" }, { - "codePostal": "69790", - "codeCommune": "69161", - "libelleAcheminement": "PROPIERES", - "nomCommune": "PROPIERES" + "codePostal": "73410", + "codeCommune": "73043", + "libelleAcheminement": "LA BIOLLE", + "nomCommune": "LA BIOLLE" }, { - "codePostal": "81150", - "codeCommune": "81297", - "libelleAcheminement": "TERSSAC", - "nomCommune": "TERSSAC" + "codePostal": "84450", + "codeCommune": "84055", + "libelleAcheminement": "JONQUERETTES", + "nomCommune": "JONQUERETTES" }, { - "codePostal": "84210", - "codeCommune": "84143", - "libelleAcheminement": "VENASQUE", - "nomCommune": "VENASQUE" + "codePostal": "71760", + "codeCommune": "71227", + "libelleAcheminement": "GRURY", + "nomCommune": "GRURY" }, { - "codePostal": "77820", - "codeCommune": "77165", - "libelleAcheminement": "LES ECRENNES", - "nomCommune": "LES ECRENNES" + "codePostal": "84560", + "codeCommune": "84073", + "libelleAcheminement": "MENERBES", + "nomCommune": "MENERBES" }, { - "codePostal": "69430", - "codeCommune": "69165", - "libelleAcheminement": "REGNIE DURETTE", - "nomCommune": "REGNIE DURETTE" + "codePostal": "73570", + "codeCommune": "73057", + "libelleAcheminement": "BRIDES LES BAINS", + "nomCommune": "BRIDES LES BAINS" }, { - "codePostal": "81190", - "codeCommune": "81304", - "libelleAcheminement": "TREVIEN", - "nomCommune": "TREVIEN" + "codePostal": "84150", + "codeCommune": "84056", + "libelleAcheminement": "JONQUIERES", + "nomCommune": "JONQUIERES" }, { - "codePostal": "84400", - "codeCommune": "84145", - "libelleAcheminement": "VILLARS", - "nomCommune": "VILLARS" + "codePostal": "71620", + "codeCommune": "71228", + "libelleAcheminement": "GUERFAND", + "nomCommune": "GUERFAND" }, { - "codePostal": "77157", - "codeCommune": "77174", - "libelleAcheminement": "EVERLY", - "nomCommune": "EVERLY" + "codePostal": "84120", + "codeCommune": "84076", + "libelleAcheminement": "MIRABEAU", + "nomCommune": "MIRABEAU" }, { - "codePostal": "69270", - "codeCommune": "69168", - "libelleAcheminement": "ROCHETAILLEE SUR SAONE", - "nomCommune": "ROCHETAILLEE SUR SAONE" + "codePostal": "73390", + "codeCommune": "73069", + "libelleAcheminement": "CHAMOUX SUR GELON", + "nomCommune": "CHAMOUX SUR GELON" }, { - "codePostal": "82600", - "codeCommune": "82005", - "libelleAcheminement": "AUCAMVILLE", - "nomCommune": "AUCAMVILLE" + "codePostal": "84480", + "codeCommune": "84058", + "libelleAcheminement": "LACOSTE", + "nomCommune": "LACOSTE" }, { - "codePostal": "84570", - "codeCommune": "84148", - "libelleAcheminement": "VILLES SUR AUZON", - "nomCommune": "VILLES SUR AUZON" + "codePostal": "71160", + "codeCommune": "71229", + "libelleAcheminement": "LES GUERREAUX", + "nomCommune": "LES GUERREAUX" }, { - "codePostal": "77220", - "codeCommune": "77177", - "libelleAcheminement": "FAVIERES", - "nomCommune": "FAVIERES" + "codePostal": "84390", + "codeCommune": "84079", + "libelleAcheminement": "MONIEUX", + "nomCommune": "MONIEUX" }, { - "codePostal": "69510", - "codeCommune": "69170", - "libelleAcheminement": "RONTALON", - "nomCommune": "RONTALON" + "codePostal": "73350", + "codeCommune": "73071", + "libelleAcheminement": "CHAMPAGNY EN VANOISE", + "nomCommune": "CHAMPAGNY EN VANOISE" }, { - "codePostal": "82150", - "codeCommune": "82016", - "libelleAcheminement": "BELVEZE", - "nomCommune": "BELVEZE" + "codePostal": "84870", + "codeCommune": "84067", + "libelleAcheminement": "LORIOL DU COMTAT", + "nomCommune": "LORIOL DU COMTAT" }, { - "codePostal": "85220", - "codeCommune": "85002", - "libelleAcheminement": "L AIGUILLON SUR VIE", - "nomCommune": "L AIGUILLON SUR VIE" + "codePostal": "71130", + "codeCommune": "71230", + "libelleAcheminement": "GUEUGNON", + "nomCommune": "GUEUGNON" }, { - "codePostal": "77150", - "codeCommune": "77180", - "libelleAcheminement": "FEROLLES ATTILLY", - "nomCommune": "FEROLLES ATTILLY" + "codePostal": "84310", + "codeCommune": "84081", + "libelleAcheminement": "MORIERES LES AVIGNON", + "nomCommune": "MORIERES LES AVIGNON" }, { - "codePostal": "69510", - "codeCommune": "69176", - "libelleAcheminement": "SOUCIEU EN JARREST", - "nomCommune": "SOUCIEU EN JARREST" + "codePostal": "73370", + "codeCommune": "73076", + "libelleAcheminement": "LA CHAPELLE DU MONT DU CHAT", + "nomCommune": "LA CHAPELLE DU MONT DU CHAT" }, { - "codePostal": "82600", - "codeCommune": "82020", - "libelleAcheminement": "BOUILLAC", - "nomCommune": "BOUILLAC" + "codePostal": "84570", + "codeCommune": "84070", + "libelleAcheminement": "MALEMORT DU COMTAT", + "nomCommune": "MALEMORT DU COMTAT" }, { - "codePostal": "85170", - "codeCommune": "85015", - "libelleAcheminement": "BEAUFOU", - "nomCommune": "BEAUFOU" + "codePostal": "71220", + "codeCommune": "71231", + "libelleAcheminement": "LA GUICHE", + "nomCommune": "LA GUICHE" }, { - "codePostal": "77164", - "codeCommune": "77181", - "libelleAcheminement": "FERRIERES EN BRIE", - "nomCommune": "FERRIERES EN BRIE" + "codePostal": "84130", + "codeCommune": "84092", + "libelleAcheminement": "LE PONTET", + "nomCommune": "LE PONTET" }, { - "codePostal": "69210", - "codeCommune": "69177", - "libelleAcheminement": "SOURCIEUX LES MINES", - "nomCommune": "SOURCIEUX LES MINES" + "codePostal": "73700", + "codeCommune": "73077", + "libelleAcheminement": "LES CHAPELLES", + "nomCommune": "LES CHAPELLES" }, { - "codePostal": "82190", - "codeCommune": "82024", - "libelleAcheminement": "BRASSAC", - "nomCommune": "BRASSAC" + "codePostal": "84330", + "codeCommune": "84077", + "libelleAcheminement": "MODENE", + "nomCommune": "MODENE" }, { - "codePostal": "85420", - "codeCommune": "85028", - "libelleAcheminement": "BOUILLE COURDAULT", - "nomCommune": "BOUILLE COURDAULT" + "codePostal": "71600", + "codeCommune": "71232", + "libelleAcheminement": "HAUTEFOND", + "nomCommune": "HAUTEFOND" }, { - "codePostal": "77260", - "codeCommune": "77183", - "libelleAcheminement": "LA FERTE SOUS JOUARRE", - "nomCommune": "LA FERTE SOUS JOUARRE" + "codePostal": "84110", + "codeCommune": "84098", + "libelleAcheminement": "ROAIX", + "nomCommune": "ROAIX" }, { - "codePostal": "69170", - "codeCommune": "69181", - "libelleAcheminement": "ST APPOLINAIRE", - "nomCommune": "ST APPOLINAIRE" + "codePostal": "73590", + "codeCommune": "73088", + "libelleAcheminement": "COHENNOZ", + "nomCommune": "COHENNOZ" }, { - "codePostal": "82100", - "codeCommune": "82033", - "libelleAcheminement": "CASTELSARRASIN", - "nomCommune": "CASTELSARRASIN" + "codePostal": "84570", + "codeCommune": "84082", + "libelleAcheminement": "MORMOIRON", + "nomCommune": "MORMOIRON" }, { - "codePostal": "85320", - "codeCommune": "85036", - "libelleAcheminement": "LA BRETONNIERE LA CLAYE", - "nomCommune": "LA BRETONNIERE LA CLAYE" + "codePostal": "71290", + "codeCommune": "71234", + "libelleAcheminement": "HUILLY SUR SEILLE", + "nomCommune": "HUILLY SUR SEILLE" }, { - "codePostal": "77300", - "codeCommune": "77186", - "libelleAcheminement": "FONTAINEBLEAU", - "nomCommune": "FONTAINEBLEAU" + "codePostal": "84240", + "codeCommune": "84121", + "libelleAcheminement": "SANNES", + "nomCommune": "SANNES" }, { - "codePostal": "69560", - "codeCommune": "69193", - "libelleAcheminement": "ST CYR SUR LE RHONE", - "nomCommune": "ST CYR SUR LE RHONE" + "codePostal": "73800", + "codeCommune": "73089", + "libelleAcheminement": "COISE ST JEAN PIED GAUTHIER", + "nomCommune": "COISE ST JEAN PIED GAUTHIER" }, { - "codePostal": "82120", - "codeCommune": "82034", - "libelleAcheminement": "CASTERA BOUZET", - "nomCommune": "CASTERA BOUZET" + "codePostal": "84550", + "codeCommune": "84083", + "libelleAcheminement": "MORNAS", + "nomCommune": "MORNAS" }, { - "codePostal": "85410", - "codeCommune": "85040", - "libelleAcheminement": "LA CAILLERE ST HILAIRE", - "nomCommune": "LA CAILLERE ST HILAIRE" + "codePostal": "71760", + "codeCommune": "71239", + "libelleAcheminement": "ISSY L EVEQUE", + "nomCommune": "ISSY L EVEQUE" }, { - "codePostal": "77480", - "codeCommune": "77187", - "libelleAcheminement": "FONTAINE FOURCHES", - "nomCommune": "FONTAINE FOURCHES" + "codePostal": "84800", + "codeCommune": "84124", + "libelleAcheminement": "SAUMANE DE VAUCLUSE", + "nomCommune": "SAUMANE DE VAUCLUSE" }, { - "codePostal": "69640", - "codeCommune": "69215", - "libelleAcheminement": "ST JULIEN", - "nomCommune": "ST JULIEN" + "codePostal": "73630", + "codeCommune": "73090", + "libelleAcheminement": "LA COMPOTE", + "nomCommune": "LA COMPOTE" }, { - "codePostal": "82500", - "codeCommune": "82036", - "libelleAcheminement": "LE CAUSE", - "nomCommune": "LE CAUSE" + "codePostal": "84210", + "codeCommune": "84088", + "libelleAcheminement": "PERNES LES FONTAINES", + "nomCommune": "PERNES LES FONTAINES" }, { - "codePostal": "85410", - "codeCommune": "85040", - "libelleAcheminement": "LA CAILLERE ST HILAIRE", - "nomCommune": "LA CAILLERE ST HILAIRE" + "codePostal": "71640", + "codeCommune": "71241", + "libelleAcheminement": "JAMBLES", + "nomCommune": "JAMBLES" }, { - "codePostal": "77165", - "codeCommune": "77193", - "libelleAcheminement": "FORFRY", - "nomCommune": "FORFRY" + "codePostal": "84700", + "codeCommune": "84129", + "libelleAcheminement": "SORGUES", + "nomCommune": "SORGUES" }, { - "codePostal": "69440", - "codeCommune": "69228", - "libelleAcheminement": "CHABANIERE", - "nomCommune": "CHABANIERE" + "codePostal": "73590", + "codeCommune": "73094", + "libelleAcheminement": "CREST VOLAND", + "nomCommune": "CREST VOLAND" }, { - "codePostal": "82370", - "codeCommune": "82044", - "libelleAcheminement": "CORBARIEU", - "nomCommune": "CORBARIEU" + "codePostal": "84420", + "codeCommune": "84091", + "libelleAcheminement": "PIOLENC", + "nomCommune": "PIOLENC" }, { - "codePostal": "85450", - "codeCommune": "85042", - "libelleAcheminement": "CHAILLE LES MARAIS", - "nomCommune": "CHAILLE LES MARAIS" + "codePostal": "71460", + "codeCommune": "71242", + "libelleAcheminement": "JONCY", + "nomCommune": "JONCY" }, { - "codePostal": "77410", - "codeCommune": "77196", - "libelleAcheminement": "FRESNES SUR MARNE", - "nomCommune": "FRESNES SUR MARNE" + "codePostal": "84190", + "codeCommune": "84130", + "libelleAcheminement": "SUZETTE", + "nomCommune": "SUZETTE" }, { - "codePostal": "69490", - "codeCommune": "69234", - "libelleAcheminement": "ST ROMAIN DE POPEY", - "nomCommune": "ST ROMAIN DE POPEY" + "codePostal": "73110", + "codeCommune": "73095", + "libelleAcheminement": "LA CROIX DE LA ROCHETTE", + "nomCommune": "LA CROIX DE LA ROCHETTE" }, { - "codePostal": "82210", - "codeCommune": "82046", - "libelleAcheminement": "COUTURES", - "nomCommune": "COUTURES" + "codePostal": "84360", + "codeCommune": "84093", + "libelleAcheminement": "PUGET", + "nomCommune": "PUGET" }, { - "codePostal": "85450", - "codeCommune": "85042", - "libelleAcheminement": "CHAILLE LES MARAIS", - "nomCommune": "CHAILLE LES MARAIS" + "codePostal": "71290", + "codeCommune": "71244", + "libelleAcheminement": "JOUVENCON", + "nomCommune": "JOUVENCON" }, { - "codePostal": "77370", - "codeCommune": "77201", - "libelleAcheminement": "GASTINS", - "nomCommune": "GASTINS" + "codePostal": "84530", + "codeCommune": "84147", + "libelleAcheminement": "VILLELAURE", + "nomCommune": "VILLELAURE" }, { - "codePostal": "69700", - "codeCommune": "69236", - "libelleAcheminement": "ST ROMAIN EN GIER", - "nomCommune": "ST ROMAIN EN GIER" + "codePostal": "73350", + "codeCommune": "73113", + "libelleAcheminement": "FEISSONS SUR SALINS", + "nomCommune": "FEISSONS SUR SALINS" }, { - "codePostal": "82170", - "codeCommune": "82057", - "libelleAcheminement": "FABAS", - "nomCommune": "FABAS" + "codePostal": "84160", + "codeCommune": "84095", + "libelleAcheminement": "PUYVERT", + "nomCommune": "PUYVERT" }, { - "codePostal": "85210", - "codeCommune": "85056", - "libelleAcheminement": "LA CHAPELLE THEMER", - "nomCommune": "LA CHAPELLE THEMER" + "codePostal": "71570", + "codeCommune": "71258", + "libelleAcheminement": "LEYNES", + "nomCommune": "LEYNES" }, { - "codePostal": "77120", - "codeCommune": "77206", - "libelleAcheminement": "GIREMOUTIERS", - "nomCommune": "GIREMOUTIERS" + "codePostal": "85460", + "codeCommune": "85001", + "libelleAcheminement": "L AIGUILLON LA PRESQU ILE", + "nomCommune": "L AIGUILLON LA PRESQU ILE" }, { - "codePostal": "69620", - "codeCommune": "69246", - "libelleAcheminement": "THEIZE", - "nomCommune": "THEIZE" + "codePostal": "73300", + "codeCommune": "73116", + "libelleAcheminement": "FONTCOUVERTE LA TOUSSUIRE", + "nomCommune": "FONTCOUVERTE LA TOUSSUIRE" }, { - "codePostal": "82190", - "codeCommune": "82060", - "libelleAcheminement": "FAUROUX", - "nomCommune": "FAUROUX" + "codePostal": "84600", + "codeCommune": "84097", + "libelleAcheminement": "RICHERENCHES", + "nomCommune": "RICHERENCHES" }, { - "codePostal": "85220", - "codeCommune": "85070", - "libelleAcheminement": "COEX", - "nomCommune": "COEX" + "codePostal": "71110", + "codeCommune": "71259", + "libelleAcheminement": "LIGNY EN BRIONNAIS", + "nomCommune": "LIGNY EN BRIONNAIS" }, { - "codePostal": "77720", - "codeCommune": "77211", - "libelleAcheminement": "GRANDPUITS BAILLY CARROIS", - "nomCommune": "GRANDPUITS BAILLY CARROIS" + "codePostal": "85190", + "codeCommune": "85003", + "libelleAcheminement": "AIZENAY", + "nomCommune": "AIZENAY" }, { - "codePostal": "69240", - "codeCommune": "69248", - "libelleAcheminement": "THIZY LES BOURGS", - "nomCommune": "THIZY LES BOURGS" + "codePostal": "73200", + "codeCommune": "73130", + "libelleAcheminement": "GRIGNON", + "nomCommune": "GRIGNON" }, { - "codePostal": "82230", - "codeCommune": "82066", - "libelleAcheminement": "GENEBRIERES", - "nomCommune": "GENEBRIERES" + "codePostal": "84110", + "codeCommune": "84116", + "libelleAcheminement": "ST ROMAIN EN VIENNOIS", + "nomCommune": "ST ROMAIN EN VIENNOIS" }, { - "codePostal": "85320", - "codeCommune": "85073", - "libelleAcheminement": "CORPE", - "nomCommune": "CORPE" + "codePostal": "71290", + "codeCommune": "71261", + "libelleAcheminement": "LOISY", + "nomCommune": "LOISY" }, { - "codePostal": "77410", - "codeCommune": "77214", - "libelleAcheminement": "GRESSY", - "nomCommune": "GRESSY" + "codePostal": "85750", + "codeCommune": "85004", + "libelleAcheminement": "ANGLES", + "nomCommune": "ANGLES" }, { - "codePostal": "69240", - "codeCommune": "69248", - "libelleAcheminement": "THIZY LES BOURGS", - "nomCommune": "THIZY LES BOURGS" + "codePostal": "73300", + "codeCommune": "73135", + "libelleAcheminement": "LA TOUR EN MAURIENNE", + "nomCommune": "LA TOUR EN MAURIENNE" }, { - "codePostal": "82120", - "codeCommune": "82067", - "libelleAcheminement": "GENSAC", - "nomCommune": "GENSAC" + "codePostal": "84450", + "codeCommune": "84119", + "libelleAcheminement": "ST SATURNIN LES AVIGNON", + "nomCommune": "ST SATURNIN LES AVIGNON" }, { - "codePostal": "85420", - "codeCommune": "85078", - "libelleAcheminement": "DAMVIX", - "nomCommune": "DAMVIX" + "codePostal": "71540", + "codeCommune": "71266", + "libelleAcheminement": "LUCENAY L EVEQUE", + "nomCommune": "LUCENAY L EVEQUE" }, { - "codePostal": "77220", - "codeCommune": "77215", - "libelleAcheminement": "GRETZ ARMAINVILLIERS", - "nomCommune": "GRETZ ARMAINVILLIERS" + "codePostal": "85430", + "codeCommune": "85008", + "libelleAcheminement": "AUBIGNY LES CLOUZEAUX", + "nomCommune": "AUBIGNY LES CLOUZEAUX" }, { - "codePostal": "69670", - "codeCommune": "69255", - "libelleAcheminement": "VAUGNERAY", - "nomCommune": "VAUGNERAY" + "codePostal": "73210", + "codeCommune": "73150", + "libelleAcheminement": "LA PLAGNE TARENTAISE", + "nomCommune": "LA PLAGNE TARENTAISE" }, { - "codePostal": "82120", - "codeCommune": "82083", - "libelleAcheminement": "LACHAPELLE", - "nomCommune": "LACHAPELLE" + "codePostal": "84390", + "codeCommune": "84125", + "libelleAcheminement": "SAVOILLAN", + "nomCommune": "SAVOILLAN" }, { - "codePostal": "85200", - "codeCommune": "85080", - "libelleAcheminement": "DOIX LES FONTAINES", - "nomCommune": "DOIX LES FONTAINES" + "codePostal": "71000", + "codeCommune": "71270", + "libelleAcheminement": "MACON", + "nomCommune": "MACON" }, { - "codePostal": "77166", - "codeCommune": "77217", - "libelleAcheminement": "GRISY SUISNES", - "nomCommune": "GRISY SUISNES" + "codePostal": "85440", + "codeCommune": "85010", + "libelleAcheminement": "AVRILLE", + "nomCommune": "AVRILLE" }, { - "codePostal": "69670", - "codeCommune": "69255", - "libelleAcheminement": "VAUGNERAY", - "nomCommune": "VAUGNERAY" + "codePostal": "73200", + "codeCommune": "73154", + "libelleAcheminement": "MERCURY", + "nomCommune": "MERCURY" }, { - "codePostal": "82190", - "codeCommune": "82084", - "libelleAcheminement": "LACOUR", - "nomCommune": "LACOUR" + "codePostal": "84830", + "codeCommune": "84127", + "libelleAcheminement": "SERIGNAN DU COMTAT", + "nomCommune": "SERIGNAN DU COMTAT" }, { - "codePostal": "85170", - "codeCommune": "85081", - "libelleAcheminement": "DOMPIERRE SUR YON", - "nomCommune": "DOMPIERRE SUR YON" + "codePostal": "71340", + "codeCommune": "71271", + "libelleAcheminement": "MAILLY", + "nomCommune": "MAILLY" }, { - "codePostal": "77520", - "codeCommune": "77223", - "libelleAcheminement": "GURCY LE CHATEL", - "nomCommune": "GURCY LE CHATEL" + "codePostal": "85550", + "codeCommune": "85012", + "libelleAcheminement": "LA BARRE DE MONTS", + "nomCommune": "LA BARRE DE MONTS" }, { - "codePostal": "69200", - "codeCommune": "69259", - "libelleAcheminement": "VENISSIEUX", - "nomCommune": "VENISSIEUX" + "codePostal": "73500", + "codeCommune": "73157", + "libelleAcheminement": "MODANE", + "nomCommune": "MODANE" }, { - "codePostal": "82290", - "codeCommune": "82096", - "libelleAcheminement": "LA VILLE DIEU DU TEMPLE", - "nomCommune": "LA VILLE DIEU DU TEMPLE" + "codePostal": "84300", + "codeCommune": "84131", + "libelleAcheminement": "TAILLADES", + "nomCommune": "TAILLADES" }, { - "codePostal": "85590", - "codeCommune": "85082", - "libelleAcheminement": "LES EPESSES", - "nomCommune": "LES EPESSES" + "codePostal": "71460", + "codeCommune": "71272", + "libelleAcheminement": "MALAY", + "nomCommune": "MALAY" }, { - "codePostal": "77890", - "codeCommune": "77230", - "libelleAcheminement": "ICHY", - "nomCommune": "ICHY" + "codePostal": "85490", + "codeCommune": "85020", + "libelleAcheminement": "BENET", + "nomCommune": "BENET" }, { - "codePostal": "69970", - "codeCommune": "69270", - "libelleAcheminement": "CHAPONNAY", - "nomCommune": "CHAPONNAY" + "codePostal": "73870", + "codeCommune": "73173", + "libelleAcheminement": "MONTRICHER ALBANNE", + "nomCommune": "MONTRICHER ALBANNE" }, { - "codePostal": "82230", - "codeCommune": "82098", - "libelleAcheminement": "LEOJAC", - "nomCommune": "LEOJAC" + "codePostal": "84250", + "codeCommune": "84132", + "libelleAcheminement": "LE THOR", + "nomCommune": "LE THOR" }, { - "codePostal": "85740", - "codeCommune": "85083", - "libelleAcheminement": "L EPINE", - "nomCommune": "L EPINE" + "codePostal": "71300", + "codeCommune": "71278", + "libelleAcheminement": "MARIGNY", + "nomCommune": "MARIGNY" }, { - "codePostal": "77480", - "codeCommune": "77236", - "libelleAcheminement": "JAULNES", - "nomCommune": "JAULNES" + "codePostal": "85320", + "codeCommune": "85036", + "libelleAcheminement": "LA BRETONNIERE LA CLAYE", + "nomCommune": "LA BRETONNIERE LA CLAYE" }, { - "codePostal": "69330", - "codeCommune": "69280", - "libelleAcheminement": "JONS", - "nomCommune": "JONS" + "codePostal": "73700", + "codeCommune": "73176", + "libelleAcheminement": "MONTVALEZAN", + "nomCommune": "MONTVALEZAN" }, { - "codePostal": "82160", - "codeCommune": "82100", - "libelleAcheminement": "LOZE", - "nomCommune": "LOZE" + "codePostal": "84190", + "codeCommune": "84136", + "libelleAcheminement": "VACQUEYRAS", + "nomCommune": "VACQUEYRAS" }, { - "codePostal": "85140", - "codeCommune": "85084", - "libelleAcheminement": "ESSARTS EN BOCAGE", - "nomCommune": "ESSARTS EN BOCAGE" + "codePostal": "71340", + "codeCommune": "71291", + "libelleAcheminement": "MELAY", + "nomCommune": "MELAY" }, { - "codePostal": "77640", - "codeCommune": "77238", - "libelleAcheminement": "JOUARRE", - "nomCommune": "JOUARRE" + "codePostal": "85260", + "codeCommune": "85038", + "libelleAcheminement": "LES BROUZILS", + "nomCommune": "LES BROUZILS" }, { - "codePostal": "69970", - "codeCommune": "69281", - "libelleAcheminement": "MARENNES", - "nomCommune": "MARENNES" + "codePostal": "73340", + "codeCommune": "73178", + "libelleAcheminement": "LA MOTTE EN BAUGES", + "nomCommune": "LA MOTTE EN BAUGES" }, { - "codePostal": "82120", - "codeCommune": "82102", - "libelleAcheminement": "MANSONVILLE", - "nomCommune": "MANSONVILLE" + "codePostal": "84750", + "codeCommune": "84144", + "libelleAcheminement": "VIENS", + "nomCommune": "VIENS" }, { - "codePostal": "85140", - "codeCommune": "85084", - "libelleAcheminement": "ESSARTS EN BOCAGE", - "nomCommune": "ESSARTS EN BOCAGE" + "codePostal": "71640", + "codeCommune": "71292", + "libelleAcheminement": "MELLECEY", + "nomCommune": "MELLECEY" }, { - "codePostal": "77230", - "codeCommune": "77241", - "libelleAcheminement": "JUILLY", - "nomCommune": "JUILLY" + "codePostal": "85450", + "codeCommune": "85042", + "libelleAcheminement": "CHAILLE LES MARAIS", + "nomCommune": "CHAILLE LES MARAIS" }, { - "codePostal": "69140", - "codeCommune": "69286", - "libelleAcheminement": "RILLIEUX LA PAPE", - "nomCommune": "RILLIEUX LA PAPE" + "codePostal": "73290", + "codeCommune": "73179", + "libelleAcheminement": "LA MOTTE SERVOLEX", + "nomCommune": "LA MOTTE SERVOLEX" }, { - "codePostal": "82600", - "codeCommune": "82105", - "libelleAcheminement": "MAS GRENIER", - "nomCommune": "MAS GRENIER" + "codePostal": "85220", + "codeCommune": "85002", + "libelleAcheminement": "L AIGUILLON SUR VIE", + "nomCommune": "L AIGUILLON SUR VIE" }, { - "codePostal": "85240", - "codeCommune": "85087", - "libelleAcheminement": "FAYMOREAU", - "nomCommune": "FAYMOREAU" + "codePostal": "71470", + "codeCommune": "71293", + "libelleAcheminement": "MENETREUIL", + "nomCommune": "MENETREUIL" }, { - "codePostal": "77650", - "codeCommune": "77242", - "libelleAcheminement": "JUTIGNY", - "nomCommune": "JUTIGNY" + "codePostal": "85320", + "codeCommune": "85061", + "libelleAcheminement": "CHATEAU GUIBERT", + "nomCommune": "CHATEAU GUIBERT" }, { - "codePostal": "69720", - "codeCommune": "69287", - "libelleAcheminement": "ST BONNET DE MURE", - "nomCommune": "ST BONNET DE MURE" + "codePostal": "73800", + "codeCommune": "73183", + "libelleAcheminement": "MYANS", + "nomCommune": "MYANS" }, { - "codePostal": "82120", - "codeCommune": "82107", - "libelleAcheminement": "MAUMUSSON", - "nomCommune": "MAUMUSSON" + "codePostal": "85120", + "codeCommune": "85005", + "libelleAcheminement": "ANTIGNY", + "nomCommune": "ANTIGNY" }, { - "codePostal": "85700", - "codeCommune": "85090", - "libelleAcheminement": "SEVREMONT", - "nomCommune": "SEVREMONT" + "codePostal": "71640", + "codeCommune": "71294", + "libelleAcheminement": "MERCUREY", + "nomCommune": "MERCUREY" }, { - "codePostal": "77760", - "codeCommune": "77244", - "libelleAcheminement": "LARCHANT", - "nomCommune": "LARCHANT" + "codePostal": "85390", + "codeCommune": "85067", + "libelleAcheminement": "CHEFFOIS", + "nomCommune": "CHEFFOIS" }, { - "codePostal": "69780", - "codeCommune": "69289", - "libelleAcheminement": "ST PIERRE DE CHANDIEU", - "nomCommune": "ST PIERRE DE CHANDIEU" + "codePostal": "73260", + "codeCommune": "73187", + "libelleAcheminement": "LA LECHERE", + "nomCommune": "LA LECHERE" }, { - "codePostal": "82200", - "codeCommune": "82112", - "libelleAcheminement": "MOISSAC", - "nomCommune": "MOISSAC" + "codePostal": "85200", + "codeCommune": "85009", + "libelleAcheminement": "AUCHAY SUR VENDEE", + "nomCommune": "AUCHAY SUR VENDEE" }, { - "codePostal": "85200", - "codeCommune": "85092", - "libelleAcheminement": "FONTENAY LE COMTE", - "nomCommune": "FONTENAY LE COMTE" + "codePostal": "71640", + "codeCommune": "71294", + "libelleAcheminement": "MERCUREY", + "nomCommune": "MERCUREY" }, { - "codePostal": "77450", - "codeCommune": "77248", - "libelleAcheminement": "LESCHES", - "nomCommune": "LESCHES" + "codePostal": "85260", + "codeCommune": "85072", + "libelleAcheminement": "LA COPECHAGNIERE", + "nomCommune": "LA COPECHAGNIERE" }, { - "codePostal": "69800", - "codeCommune": "69290", - "libelleAcheminement": "ST PRIEST", - "nomCommune": "ST PRIEST" + "codePostal": "73710", + "codeCommune": "73206", + "libelleAcheminement": "PRALOGNAN LA VANOISE", + "nomCommune": "PRALOGNAN LA VANOISE" }, { - "codePostal": "82230", - "codeCommune": "82115", - "libelleAcheminement": "MONCLAR DE QUERCY", - "nomCommune": "MONCLAR DE QUERCY" + "codePostal": "85200", + "codeCommune": "85009", + "libelleAcheminement": "AUCHAY SUR VENDEE", + "nomCommune": "AUCHAY SUR VENDEE" }, { - "codePostal": "85440", - "codeCommune": "85103", - "libelleAcheminement": "GROSBREUIL", - "nomCommune": "GROSBREUIL" + "codePostal": "71390", + "codeCommune": "71302", + "libelleAcheminement": "MONTAGNY LES BUXY", + "nomCommune": "MONTAGNY LES BUXY" }, { - "codePostal": "77550", - "codeCommune": "77253", - "libelleAcheminement": "LISSY", - "nomCommune": "LISSY" + "codePostal": "85320", + "codeCommune": "85074", + "libelleAcheminement": "LA COUTURE", + "nomCommune": "LA COUTURE" }, { - "codePostal": "69580", - "codeCommune": "69292", - "libelleAcheminement": "SATHONAY CAMP", - "nomCommune": "SATHONAY CAMP" + "codePostal": "73220", + "codeCommune": "73212", + "libelleAcheminement": "VAL D ARC", + "nomCommune": "VAL D ARC" }, { - "codePostal": "82100", - "codeCommune": "82118", - "libelleAcheminement": "MONTAIN", - "nomCommune": "MONTAIN" + "codePostal": "85630", + "codeCommune": "85011", + "libelleAcheminement": "BARBATRE", + "nomCommune": "BARBATRE" }, { - "codePostal": "85260", - "codeCommune": "85108", - "libelleAcheminement": "L HERBERGEMENT", - "nomCommune": "L HERBERGEMENT" + "codePostal": "71710", + "codeCommune": "71309", + "libelleAcheminement": "MONTCENIS", + "nomCommune": "MONTCENIS" }, { - "codePostal": "77440", - "codeCommune": "77257", - "libelleAcheminement": "LIZY SUR OURCQ", - "nomCommune": "LIZY SUR OURCQ" + "codePostal": "85610", + "codeCommune": "85076", + "libelleAcheminement": "CUGAND", + "nomCommune": "CUGAND" }, { - "codePostal": "69580", - "codeCommune": "69293", - "libelleAcheminement": "SATHONAY VILLAGE", - "nomCommune": "SATHONAY VILLAGE" + "codePostal": "73220", + "codeCommune": "73212", + "libelleAcheminement": "VAL D ARC", + "nomCommune": "VAL D ARC" }, { - "codePostal": "82000", - "codeCommune": "82121", - "libelleAcheminement": "MONTAUBAN", - "nomCommune": "MONTAUBAN" + "codePostal": "85550", + "codeCommune": "85012", + "libelleAcheminement": "LA BARRE DE MONTS", + "nomCommune": "LA BARRE DE MONTS" }, { - "codePostal": "85350", - "codeCommune": "85113", - "libelleAcheminement": "L ILE D YEU", - "nomCommune": "L ILE D YEU" + "codePostal": "71270", + "codeCommune": "71315", + "libelleAcheminement": "MONT LES SEURRE", + "nomCommune": "MONT LES SEURRE" }, { - "codePostal": "77185", - "codeCommune": "77258", - "libelleAcheminement": "LOGNES", - "nomCommune": "LOGNES" + "codePostal": "85140", + "codeCommune": "85084", + "libelleAcheminement": "ESSARTS EN BOCAGE", + "nomCommune": "ESSARTS EN BOCAGE" }, { - "codePostal": "69780", - "codeCommune": "69298", - "libelleAcheminement": "TOUSSIEU", - "nomCommune": "TOUSSIEU" + "codePostal": "73220", + "codeCommune": "73220", + "libelleAcheminement": "ST ALBAN D HURTIERES", + "nomCommune": "ST ALBAN D HURTIERES" }, { - "codePostal": "82700", - "codeCommune": "82123", - "libelleAcheminement": "MONTBARTIER", - "nomCommune": "MONTBARTIER" + "codePostal": "85130", + "codeCommune": "85013", + "libelleAcheminement": "BAZOGES EN PAILLERS", + "nomCommune": "BAZOGES EN PAILLERS" }, { - "codePostal": "85400", - "codeCommune": "85117", - "libelleAcheminement": "LAIROUX", - "nomCommune": "LAIROUX" + "codePostal": "71360", + "codeCommune": "71322", + "libelleAcheminement": "MORLET", + "nomCommune": "MORLET" }, { - "codePostal": "77710", - "codeCommune": "77261", - "libelleAcheminement": "LORREZ LE BOCAGE PREAUX", - "nomCommune": "LORREZ LE BOCAGE PREAUX" + "codePostal": "85140", + "codeCommune": "85084", + "libelleAcheminement": "ESSARTS EN BOCAGE", + "nomCommune": "ESSARTS EN BOCAGE" }, { - "codePostal": "69007", - "codeCommune": "69387", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 07" + "codePostal": "73190", + "codeCommune": "73225", + "libelleAcheminement": "ST BALDOPH", + "nomCommune": "ST BALDOPH" }, { - "codePostal": "82270", - "codeCommune": "82131", - "libelleAcheminement": "MONTPEZAT DE QUERCY", - "nomCommune": "MONTPEZAT DE QUERCY" + "codePostal": "85500", + "codeCommune": "85017", + "libelleAcheminement": "BEAUREPAIRE", + "nomCommune": "BEAUREPAIRE" }, { - "codePostal": "85120", - "codeCommune": "85125", - "libelleAcheminement": "LOGE FOUGEREUSE", - "nomCommune": "LOGE FOUGEREUSE" + "codePostal": "71160", + "codeCommune": "71325", + "libelleAcheminement": "LA MOTTE ST JEAN", + "nomCommune": "LA MOTTE ST JEAN" }, { - "codePostal": "77560", - "codeCommune": "77262", - "libelleAcheminement": "LOUAN VILLEGRUIS FONTAINE", - "nomCommune": "LOUAN VILLEGRUIS FONTAINE" + "codePostal": "85200", + "codeCommune": "85092", + "libelleAcheminement": "FONTENAY LE COMTE", + "nomCommune": "FONTENAY LE COMTE" }, { - "codePostal": "69009", - "codeCommune": "69389", - "libelleAcheminement": "LYON", - "nomCommune": "LYON 09" + "codePostal": "73520", + "codeCommune": "73226", + "libelleAcheminement": "ST BERON", + "nomCommune": "ST BERON" }, { - "codePostal": "82370", - "codeCommune": "82135", - "libelleAcheminement": "NOHIC", - "nomCommune": "NOHIC" + "codePostal": "85490", + "codeCommune": "85020", + "libelleAcheminement": "BENET", + "nomCommune": "BENET" }, { - "codePostal": "85200", - "codeCommune": "85126", - "libelleAcheminement": "LONGEVES", - "nomCommune": "LONGEVES" + "codePostal": "71170", + "codeCommune": "71327", + "libelleAcheminement": "MUSSY SOUS DUN", + "nomCommune": "MUSSY SOUS DUN" }, { - "codePostal": "77540", - "codeCommune": "77264", - "libelleAcheminement": "LUMIGNY NESLES ORMEAUX", - "nomCommune": "LUMIGNY NESLES ORMEAUX" + "codePostal": "85480", + "codeCommune": "85093", + "libelleAcheminement": "FOUGERE", + "nomCommune": "FOUGERE" }, { - "codePostal": "70180", - "codeCommune": "70003", - "libelleAcheminement": "ACHEY", - "nomCommune": "ACHEY" + "codePostal": "73130", + "codeCommune": "73235", + "libelleAcheminement": "ST FRANCOIS LONGCHAMP", + "nomCommune": "ST FRANCOIS LONGCHAMP" }, { - "codePostal": "82370", - "codeCommune": "82136", - "libelleAcheminement": "ORGUEIL", - "nomCommune": "ORGUEIL" + "codePostal": "85610", + "codeCommune": "85021", + "libelleAcheminement": "LA BERNARDIERE", + "nomCommune": "LA BERNARDIERE" }, { - "codePostal": "85190", - "codeCommune": "85130", - "libelleAcheminement": "MACHE", - "nomCommune": "MACHE" + "codePostal": "71240", + "codeCommune": "71328", + "libelleAcheminement": "NANTON", + "nomCommune": "NANTON" }, { - "codePostal": "77540", - "codeCommune": "77264", - "libelleAcheminement": "LUMIGNY NESLES ORMEAUX", - "nomCommune": "LUMIGNY NESLES ORMEAUX" + "codePostal": "85130", + "codeCommune": "85097", + "libelleAcheminement": "LA GAUBRETIERE", + "nomCommune": "LA GAUBRETIERE" }, { - "codePostal": "70280", - "codeCommune": "70011", - "libelleAcheminement": "AMAGE", - "nomCommune": "AMAGE" + "codePostal": "73530", + "codeCommune": "73242", + "libelleAcheminement": "ST JEAN D ARVES", + "nomCommune": "ST JEAN D ARVES" }, { - "codePostal": "82160", - "codeCommune": "82137", - "libelleAcheminement": "PARISOT", - "nomCommune": "PARISOT" + "codePostal": "85430", + "codeCommune": "85026", + "libelleAcheminement": "LA BOISSIERE DES LANDES", + "nomCommune": "LA BOISSIERE DES LANDES" }, { - "codePostal": "85420", - "codeCommune": "85132", - "libelleAcheminement": "MAILLE", - "nomCommune": "MAILLE" + "codePostal": "71270", + "codeCommune": "71329", + "libelleAcheminement": "NAVILLY", + "nomCommune": "NAVILLY" }, { - "codePostal": "77138", - "codeCommune": "77265", - "libelleAcheminement": "LUZANCY", - "nomCommune": "LUZANCY" + "codePostal": "85190", + "codeCommune": "85098", + "libelleAcheminement": "LA GENETOUZE", + "nomCommune": "LA GENETOUZE" }, { - "codePostal": "70170", - "codeCommune": "70015", - "libelleAcheminement": "AMONCOURT", - "nomCommune": "AMONCOURT" + "codePostal": "73190", + "codeCommune": "73249", + "libelleAcheminement": "ST JEOIRE PRIEURE", + "nomCommune": "ST JEOIRE PRIEURE" }, { - "codePostal": "82130", - "codeCommune": "82140", - "libelleAcheminement": "PIQUECOS", - "nomCommune": "PIQUECOS" + "codePostal": "85420", + "codeCommune": "85028", + "libelleAcheminement": "BOUILLE COURDAULT", + "nomCommune": "BOUILLE COURDAULT" }, { - "codePostal": "85320", - "codeCommune": "85135", - "libelleAcheminement": "MAREUIL SUR LAY DISSAIS", - "nomCommune": "MAREUIL SUR LAY DISSAIS" + "codePostal": "71370", + "codeCommune": "71336", + "libelleAcheminement": "OUROUX SUR SAONE", + "nomCommune": "OUROUX SUR SAONE" }, { - "codePostal": "77570", - "codeCommune": "77271", - "libelleAcheminement": "MAISONCELLES EN GATINAIS", - "nomCommune": "MAISONCELLES EN GATINAIS" + "codePostal": "85670", + "codeCommune": "85102", + "libelleAcheminement": "GRAND LANDES", + "nomCommune": "GRAND LANDES" }, { - "codePostal": "70210", - "codeCommune": "70017", - "libelleAcheminement": "ANCHENONCOURT ET CHAZEL", - "nomCommune": "ANCHENONCOURT ET CHAZEL" + "codePostal": "73870", + "codeCommune": "73250", + "libelleAcheminement": "ST JULIEN MONT DENIS", + "nomCommune": "ST JULIEN MONT DENIS" }, { - "codePostal": "82400", - "codeCommune": "82141", - "libelleAcheminement": "POMMEVIC", - "nomCommune": "POMMEVIC" + "codePostal": "85470", + "codeCommune": "85035", + "libelleAcheminement": "BRETIGNOLLES SUR MER", + "nomCommune": "BRETIGNOLLES SUR MER" }, { - "codePostal": "85110", - "codeCommune": "85145", - "libelleAcheminement": "MONSIREIGNE", - "nomCommune": "MONSIREIGNE" + "codePostal": "71700", + "codeCommune": "71338", + "libelleAcheminement": "OZENAY", + "nomCommune": "OZENAY" }, { - "codePostal": "77230", - "codeCommune": "77273", - "libelleAcheminement": "MARCHEMORET", - "nomCommune": "MARCHEMORET" + "codePostal": "85220", + "codeCommune": "85120", + "libelleAcheminement": "LANDEVIEILLE", + "nomCommune": "LANDEVIEILLE" }, { - "codePostal": "70200", - "codeCommune": "70021", - "libelleAcheminement": "ANDORNAY", - "nomCommune": "ANDORNAY" + "codePostal": "73360", + "codeCommune": "73275", + "libelleAcheminement": "ST PIERRE DE GENEBROZ", + "nomCommune": "ST PIERRE DE GENEBROZ" }, { - "codePostal": "82170", - "codeCommune": "82142", - "libelleAcheminement": "POMPIGNAN", - "nomCommune": "POMPIGNAN" + "codePostal": "85410", + "codeCommune": "85041", + "libelleAcheminement": "CEZAIS", + "nomCommune": "CEZAIS" }, { - "codePostal": "85600", - "codeCommune": "85146", - "libelleAcheminement": "MONTAIGU VENDEE", - "nomCommune": "MONTAIGU VENDEE" + "codePostal": "71120", + "codeCommune": "71339", + "libelleAcheminement": "OZOLLES", + "nomCommune": "OZOLLES" }, { - "codePostal": "77560", - "codeCommune": "77275", - "libelleAcheminement": "LES MARETS", - "nomCommune": "LES MARETS" + "codePostal": "85200", + "codeCommune": "85126", + "libelleAcheminement": "LONGEVES", + "nomCommune": "LONGEVES" }, { - "codePostal": "70700", - "codeCommune": "70039", - "libelleAcheminement": "AUTOREILLE", - "nomCommune": "AUTOREILLE" + "codePostal": "73800", + "codeCommune": "73276", + "libelleAcheminement": "ST PIERRE DE SOUCY", + "nomCommune": "ST PIERRE DE SOUCY" }, { - "codePostal": "82120", - "codeCommune": "82143", - "libelleAcheminement": "POUPAS", - "nomCommune": "POUPAS" + "codePostal": "85450", + "codeCommune": "85042", + "libelleAcheminement": "CHAILLE LES MARAIS", + "nomCommune": "CHAILLE LES MARAIS" }, { - "codePostal": "85600", - "codeCommune": "85146", - "libelleAcheminement": "MONTAIGU VENDEE", - "nomCommune": "MONTAIGU VENDEE" + "codePostal": "71350", + "codeCommune": "71341", + "libelleAcheminement": "PALLEAU", + "nomCommune": "PALLEAU" }, { - "codePostal": "77440", - "codeCommune": "77280", - "libelleAcheminement": "MARY SUR MARNE", - "nomCommune": "MARY SUR MARNE" + "codePostal": "85560", + "codeCommune": "85127", + "libelleAcheminement": "LONGEVILLE SUR MER", + "nomCommune": "LONGEVILLE SUR MER" }, { - "codePostal": "70100", - "codeCommune": "70041", - "libelleAcheminement": "AUTREY LES GRAY", - "nomCommune": "AUTREY LES GRAY" + "codePostal": "73110", + "codeCommune": "73289", + "libelleAcheminement": "LA TABLE", + "nomCommune": "LA TABLE" }, { - "codePostal": "82800", - "codeCommune": "82145", - "libelleAcheminement": "PUYGAILLARD DE QUERCY", - "nomCommune": "PUYGAILLARD DE QUERCY" + "codePostal": "85120", + "codeCommune": "85053", + "libelleAcheminement": "LA CHAPELLE AUX LYS", + "nomCommune": "LA CHAPELLE AUX LYS" }, { - "codePostal": "85320", - "codeCommune": "85171", - "libelleAcheminement": "PEAULT", - "nomCommune": "PEAULT" + "codePostal": "71420", + "codeCommune": "71346", + "libelleAcheminement": "PERRECY LES FORGES", + "nomCommune": "PERRECY LES FORGES" }, { - "codePostal": "77520", - "codeCommune": "77286", - "libelleAcheminement": "MEIGNEUX", - "nomCommune": "MEIGNEUX" + "codePostal": "85190", + "codeCommune": "85130", + "libelleAcheminement": "MACHE", + "nomCommune": "MACHE" }, { - "codePostal": "70100", - "codeCommune": "70043", - "libelleAcheminement": "AUVET ET LA CHAPELOTTE", - "nomCommune": "AUVET ET LA CHAPELOTTE" + "codePostal": "73200", + "codeCommune": "73292", + "libelleAcheminement": "THENESOL", + "nomCommune": "THENESOL" }, { - "codePostal": "82160", - "codeCommune": "82147", - "libelleAcheminement": "PUYLAGARDE", - "nomCommune": "PUYLAGARDE" + "codePostal": "85120", + "codeCommune": "85059", + "libelleAcheminement": "LA CHATAIGNERAIE", + "nomCommune": "LA CHATAIGNERAIE" }, { - "codePostal": "85300", - "codeCommune": "85172", - "libelleAcheminement": "LE PERRIER", - "nomCommune": "LE PERRIER" + "codePostal": "71510", + "codeCommune": "71347", + "libelleAcheminement": "PERREUIL", + "nomCommune": "PERREUIL" }, { - "codePostal": "77730", - "codeCommune": "77290", - "libelleAcheminement": "MERY SUR MARNE", - "nomCommune": "MERY SUR MARNE" + "codePostal": "85570", + "codeCommune": "85137", + "libelleAcheminement": "MARSAIS STE RADEGONDE", + "nomCommune": "MARSAIS STE RADEGONDE" }, { - "codePostal": "70150", - "codeCommune": "70045", - "libelleAcheminement": "AVRIGNEY VIREY", - "nomCommune": "AVRIGNEY VIREY" + "codePostal": "73460", + "codeCommune": "73297", + "libelleAcheminement": "TOURNON", + "nomCommune": "TOURNON" }, { - "codePostal": "82150", - "codeCommune": "82151", - "libelleAcheminement": "ROQUECOR", - "nomCommune": "ROQUECOR" + "codePostal": "85540", + "codeCommune": "85077", + "libelleAcheminement": "CURZON", + "nomCommune": "CURZON" }, { - "codePostal": "85250", - "codeCommune": "85186", - "libelleAcheminement": "LA RABATELIERE", - "nomCommune": "LA RABATELIERE" + "codePostal": "71160", + "codeCommune": "71348", + "libelleAcheminement": "PERRIGNY SUR LOIRE", + "nomCommune": "PERRIGNY SUR LOIRE" }, { - "codePostal": "77290", - "codeCommune": "77294", - "libelleAcheminement": "MITRY MORY", - "nomCommune": "MITRY MORY" + "codePostal": "85200", + "codeCommune": "85143", + "libelleAcheminement": "MERVENT", + "nomCommune": "MERVENT" }, { - "codePostal": "70140", - "codeCommune": "70048", - "libelleAcheminement": "BARD LES PESMES", - "nomCommune": "BARD LES PESMES" + "codePostal": "73170", + "codeCommune": "73299", + "libelleAcheminement": "TRAIZE", + "nomCommune": "TRAIZE" }, { - "codePostal": "82300", - "codeCommune": "82159", - "libelleAcheminement": "ST CIRQ", - "nomCommune": "ST CIRQ" + "codePostal": "85200", + "codeCommune": "85080", + "libelleAcheminement": "DOIX LES FONTAINES", + "nomCommune": "DOIX LES FONTAINES" }, { - "codePostal": "85510", - "codeCommune": "85192", - "libelleAcheminement": "ROCHETREJOUX", - "nomCommune": "ROCHETREJOUX" + "codePostal": "71400", + "codeCommune": "71349", + "libelleAcheminement": "LA PETITE VERRIERE", + "nomCommune": "LA PETITE VERRIERE" }, { - "codePostal": "77550", - "codeCommune": "77296", - "libelleAcheminement": "MOISSY CRAMAYEL", - "nomCommune": "MOISSY CRAMAYEL" + "codePostal": "85500", + "codeCommune": "85144", + "libelleAcheminement": "MESNARD LA BAROTIERE", + "nomCommune": "MESNARD LA BAROTIERE" + }, + { + "codePostal": "73110", + "codeCommune": "73302", + "libelleAcheminement": "LA TRINITE", + "nomCommune": "LA TRINITE" }, { - "codePostal": "70100", - "codeCommune": "70054", - "libelleAcheminement": "BATTRANS", - "nomCommune": "BATTRANS" + "codePostal": "85140", + "codeCommune": "85084", + "libelleAcheminement": "ESSARTS EN BOCAGE", + "nomCommune": "ESSARTS EN BOCAGE" }, { - "codePostal": "82410", - "codeCommune": "82161", - "libelleAcheminement": "ST ETIENNE DE TULMONT", - "nomCommune": "ST ETIENNE DE TULMONT" + "codePostal": "71960", + "codeCommune": "71350", + "libelleAcheminement": "PIERRECLOS", + "nomCommune": "PIERRECLOS" }, { - "codePostal": "85100", - "codeCommune": "85194", - "libelleAcheminement": "LES SABLES D OLONNE", - "nomCommune": "LES SABLES D OLONNE" + "codePostal": "85600", + "codeCommune": "85146", + "libelleAcheminement": "MONTAIGU VENDEE", + "nomCommune": "MONTAIGU VENDEE" }, { - "codePostal": "77570", - "codeCommune": "77297", - "libelleAcheminement": "MONDREVILLE", - "nomCommune": "MONDREVILLE" + "codePostal": "73450", + "codeCommune": "73307", + "libelleAcheminement": "VALMEINIER", + "nomCommune": "VALMEINIER" }, { - "codePostal": "70150", - "codeCommune": "70057", - "libelleAcheminement": "BAY", - "nomCommune": "BAY" + "codePostal": "85670", + "codeCommune": "85086", + "libelleAcheminement": "FALLERON", + "nomCommune": "FALLERON" }, { - "codePostal": "82120", - "codeCommune": "82163", - "libelleAcheminement": "ST JEAN DU BOUZET", - "nomCommune": "ST JEAN DU BOUZET" + "codePostal": "71270", + "codeCommune": "71351", + "libelleAcheminement": "PIERRE DE BRESSE", + "nomCommune": "PIERRE DE BRESSE" }, { - "codePostal": "85260", - "codeCommune": "85197", - "libelleAcheminement": "MONTREVERD", - "nomCommune": "MONTREVERD" + "codePostal": "85450", + "codeCommune": "85149", + "libelleAcheminement": "MOREILLES", + "nomCommune": "MOREILLES" }, { - "codePostal": "77320", - "codeCommune": "77303", - "libelleAcheminement": "MONTDAUPHIN", - "nomCommune": "MONTDAUPHIN" + "codePostal": "73330", + "codeCommune": "73309", + "libelleAcheminement": "VEREL DE MONTBEL", + "nomCommune": "VEREL DE MONTBEL" }, { - "codePostal": "70150", - "codeCommune": "70060", - "libelleAcheminement": "BEAUMOTTE LES PIN", - "nomCommune": "BEAUMOTTE LES PIN" + "codePostal": "85800", + "codeCommune": "85088", + "libelleAcheminement": "LE FENOUILLER", + "nomCommune": "LE FENOUILLER" }, { - "codePostal": "82190", - "codeCommune": "82168", - "libelleAcheminement": "ST NAZAIRE DE VALENTANE", - "nomCommune": "ST NAZAIRE DE VALENTANE" + "codePostal": "71270", + "codeCommune": "71355", + "libelleAcheminement": "PONTOUX", + "nomCommune": "PONTOUX" }, { - "codePostal": "85260", - "codeCommune": "85197", - "libelleAcheminement": "MONTREVERD", - "nomCommune": "MONTREVERD" + "codePostal": "85290", + "codeCommune": "85151", + "libelleAcheminement": "MORTAGNE SUR SEVRE", + "nomCommune": "MORTAGNE SUR SEVRE" }, { - "codePostal": "77950", - "codeCommune": "77306", - "libelleAcheminement": "MONTEREAU SUR LE JARD", - "nomCommune": "MONTEREAU SUR LE JARD" + "codePostal": "73300", + "codeCommune": "73320", + "libelleAcheminement": "VILLARGONDRAN", + "nomCommune": "VILLARGONDRAN" }, { - "codePostal": "70400", - "codeCommune": "70064", - "libelleAcheminement": "BELVERNE", - "nomCommune": "BELVERNE" + "codePostal": "85540", + "codeCommune": "85101", + "libelleAcheminement": "LE GIVRE", + "nomCommune": "LE GIVRE" }, { - "codePostal": "82700", - "codeCommune": "82171", - "libelleAcheminement": "ST PORQUIER", - "nomCommune": "ST PORQUIER" + "codePostal": "71220", + "codeCommune": "71358", + "libelleAcheminement": "PRESSY SOUS DONDIN", + "nomCommune": "PRESSY SOUS DONDIN" }, { - "codePostal": "85260", - "codeCommune": "85197", - "libelleAcheminement": "MONTREVERD", - "nomCommune": "MONTREVERD" + "codePostal": "85000", + "codeCommune": "85155", + "libelleAcheminement": "MOUILLERON LE CAPTIF", + "nomCommune": "MOUILLERON LE CAPTIF" }, { - "codePostal": "77690", - "codeCommune": "77312", - "libelleAcheminement": "MONTIGNY SUR LOING", - "nomCommune": "MONTIGNY SUR LOING" + "codePostal": "73500", + "codeCommune": "73322", + "libelleAcheminement": "VILLARODIN BOURGET", + "nomCommune": "VILLARODIN BOURGET" }, { - "codePostal": "70210", - "codeCommune": "70069", - "libelleAcheminement": "BETONCOURT ST PANCRAS", - "nomCommune": "BETONCOURT ST PANCRAS" + "codePostal": "85580", + "codeCommune": "85104", + "libelleAcheminement": "GRUES", + "nomCommune": "GRUES" }, { - "codePostal": "82600", - "codeCommune": "82173", - "libelleAcheminement": "ST SARDOS", - "nomCommune": "ST SARDOS" + "codePostal": "71290", + "codeCommune": "71365", + "libelleAcheminement": "RANCY", + "nomCommune": "RANCY" }, { - "codePostal": "85410", - "codeCommune": "85205", - "libelleAcheminement": "ST CYR DES GATS", - "nomCommune": "ST CYR DES GATS" + "codePostal": "85320", + "codeCommune": "85171", + "libelleAcheminement": "PEAULT", + "nomCommune": "PEAULT" }, { - "codePostal": "77720", - "codeCommune": "77317", - "libelleAcheminement": "MORMANT", - "nomCommune": "MORMANT" + "codePostal": "73640", + "codeCommune": "73323", + "libelleAcheminement": "VILLAROGER", + "nomCommune": "VILLAROGER" }, { - "codePostal": "70500", - "codeCommune": "70074", - "libelleAcheminement": "BLONDEFONTAINE", - "nomCommune": "BLONDEFONTAINE" + "codePostal": "85570", + "codeCommune": "85110", + "libelleAcheminement": "L HERMENAULT", + "nomCommune": "L HERMENAULT" }, { - "codePostal": "82400", - "codeCommune": "82175", - "libelleAcheminement": "ST VINCENT LESPINASSE", - "nomCommune": "ST VINCENT LESPINASSE" + "codePostal": "71540", + "codeCommune": "71368", + "libelleAcheminement": "RECLESNE", + "nomCommune": "RECLESNE" }, { - "codePostal": "85210", - "codeCommune": "85209", - "libelleAcheminement": "ST ETIENNE DE BRILLOUET", - "nomCommune": "ST ETIENNE DE BRILLOUET" + "codePostal": "85200", + "codeCommune": "85176", + "libelleAcheminement": "PISSOTTE", + "nomCommune": "PISSOTTE" }, { - "codePostal": "77160", - "codeCommune": "77319", - "libelleAcheminement": "MORTERY", - "nomCommune": "MORTERY" + "codePostal": "73310", + "codeCommune": "73327", + "libelleAcheminement": "VIONS", + "nomCommune": "VIONS" }, { - "codePostal": "70150", - "codeCommune": "70075", - "libelleAcheminement": "BONBOILLON", - "nomCommune": "BONBOILLON" + "codePostal": "85150", + "codeCommune": "85118", + "libelleAcheminement": "LANDERONDE", + "nomCommune": "LANDERONDE" }, { - "codePostal": "82110", - "codeCommune": "82183", - "libelleAcheminement": "TREJOULS", - "nomCommune": "TREJOULS" + "codePostal": "71160", + "codeCommune": "71370", + "libelleAcheminement": "RIGNY SUR ARROUX", + "nomCommune": "RIGNY SUR ARROUX" }, { - "codePostal": "85670", - "codeCommune": "85210", - "libelleAcheminement": "ST ETIENNE DU BOIS", - "nomCommune": "ST ETIENNE DU BOIS" + "codePostal": "85450", + "codeCommune": "85185", + "libelleAcheminement": "PUYRAVAULT", + "nomCommune": "PUYRAVAULT" }, { - "codePostal": "77120", - "codeCommune": "77320", - "libelleAcheminement": "MOUROUX", - "nomCommune": "MOUROUX" + "codePostal": "73420", + "codeCommune": "73328", + "libelleAcheminement": "VIVIERS DU LAC", + "nomCommune": "VIVIERS DU LAC" }, { - "codePostal": "70190", - "codeCommune": "70085", - "libelleAcheminement": "BOULT", - "nomCommune": "BOULT" + "codePostal": "85130", + "codeCommune": "85119", + "libelleAcheminement": "LES LANDES GENUSSON", + "nomCommune": "LES LANDES GENUSSON" }, { - "codePostal": "82330", - "codeCommune": "82191", - "libelleAcheminement": "VERFEIL SUR SEYE", - "nomCommune": "VERFEIL" + "codePostal": "71220", + "codeCommune": "71387", + "libelleAcheminement": "ST ANDRE LE DESERT", + "nomCommune": "ST ANDRE LE DESERT" }, { - "codePostal": "85150", - "codeCommune": "85211", - "libelleAcheminement": "STE FLAIVE DES LOUPS", - "nomCommune": "STE FLAIVE DES LOUPS" + "codePostal": "85510", + "codeCommune": "85192", + "libelleAcheminement": "ROCHETREJOUX", + "nomCommune": "ROCHETREJOUX" }, { - "codePostal": "77370", - "codeCommune": "77327", - "libelleAcheminement": "NANGIS", - "nomCommune": "NANGIS" + "codePostal": "74540", + "codeCommune": "74004", + "libelleAcheminement": "ALLEVES", + "nomCommune": "ALLEVES" }, { - "codePostal": "70000", - "codeCommune": "70090", - "libelleAcheminement": "BOURSIERES", - "nomCommune": "BOURSIERES" + "codePostal": "85120", + "codeCommune": "85125", + "libelleAcheminement": "LOGE FOUGEREUSE", + "nomCommune": "LOGE FOUGEREUSE" }, { - "codePostal": "82500", - "codeCommune": "82193", - "libelleAcheminement": "VIGUERON", - "nomCommune": "VIGUERON" + "codePostal": "71220", + "codeCommune": "71394", + "libelleAcheminement": "ST BONNET DE JOUX", + "nomCommune": "ST BONNET DE JOUX" }, { - "codePostal": "85310", - "codeCommune": "85213", - "libelleAcheminement": "RIVES DE L YON", - "nomCommune": "RIVES DE L YON" + "codePostal": "85100", + "codeCommune": "85194", + "libelleAcheminement": "LES SABLES D OLONNE", + "nomCommune": "LES SABLES D OLONNE" }, { - "codePostal": "77730", - "codeCommune": "77331", - "libelleAcheminement": "NANTEUIL SUR MARNE", - "nomCommune": "NANTEUIL SUR MARNE" + "codePostal": "74200", + "codeCommune": "74005", + "libelleAcheminement": "ALLINGES", + "nomCommune": "ALLINGES" }, { - "codePostal": "70160", - "codeCommune": "70095", - "libelleAcheminement": "BREUREY LES FAVERNEY", - "nomCommune": "BREUREY LES FAVERNEY" + "codePostal": "85400", + "codeCommune": "85128", + "libelleAcheminement": "LUCON", + "nomCommune": "LUCON" }, { - "codePostal": "83630", - "codeCommune": "83002", - "libelleAcheminement": "AIGUINES", - "nomCommune": "AIGUINES" + "codePostal": "71310", + "codeCommune": "71396", + "libelleAcheminement": "ST BONNET EN BRESSE", + "nomCommune": "ST BONNET EN BRESSE" }, { - "codePostal": "85150", - "codeCommune": "85214", - "libelleAcheminement": "STE FOY", - "nomCommune": "STE FOY" + "codePostal": "85180", + "codeCommune": "85194", + "libelleAcheminement": "LES SABLES D OLONNE", + "nomCommune": "LES SABLES D OLONNE" }, { - "codePostal": "77230", - "codeCommune": "77332", - "libelleAcheminement": "NANTOUILLET", - "nomCommune": "NANTOUILLET" + "codePostal": "74350", + "codeCommune": "74009", + "libelleAcheminement": "ANDILLY", + "nomCommune": "ANDILLY" }, { - "codePostal": "70500", - "codeCommune": "70112", - "libelleAcheminement": "CEMBOING", - "nomCommune": "CEMBOING" + "codePostal": "85420", + "codeCommune": "85133", + "libelleAcheminement": "MAILLEZAIS", + "nomCommune": "MAILLEZAIS" }, { - "codePostal": "83560", - "codeCommune": "83006", - "libelleAcheminement": "ARTIGUES", - "nomCommune": "ARTIGUES" + "codePostal": "71460", + "codeCommune": "71400", + "libelleAcheminement": "ST CLEMENT SUR GUYE", + "nomCommune": "ST CLEMENT SUR GUYE" }, { - "codePostal": "85480", - "codeCommune": "85232", - "libelleAcheminement": "ST HILAIRE LE VOUHIS", - "nomCommune": "ST HILAIRE LE VOUHIS" + "codePostal": "85310", + "codeCommune": "85213", + "libelleAcheminement": "RIVES DE L YON", + "nomCommune": "RIVES DE L YON" }, { - "codePostal": "77140", - "codeCommune": "77340", - "libelleAcheminement": "NONVILLE", - "nomCommune": "NONVILLE" + "codePostal": "74350", + "codeCommune": "74009", + "libelleAcheminement": "ANDILLY", + "nomCommune": "ANDILLY" }, { - "codePostal": "70000", - "codeCommune": "70115", - "libelleAcheminement": "CERRE LES NOROY", - "nomCommune": "CERRE LES NOROY" + "codePostal": "85590", + "codeCommune": "85134", + "libelleAcheminement": "MALLIEVRE", + "nomCommune": "MALLIEVRE" }, { - "codePostal": "83119", - "codeCommune": "83025", - "libelleAcheminement": "BRUE AURIAC", - "nomCommune": "BRUE AURIAC" + "codePostal": "71620", + "codeCommune": "71405", + "libelleAcheminement": "ST DIDIER EN BRESSE", + "nomCommune": "ST DIDIER EN BRESSE" }, { "codePostal": "85150", - "codeCommune": "85236", - "libelleAcheminement": "ST JULIEN DES LANDES", - "nomCommune": "ST JULIEN DES LANDES" + "codeCommune": "85218", + "libelleAcheminement": "ST GEORGES DE POINTINDOUX", + "nomCommune": "ST GEORGES DE POINTINDOUX" }, { - "codePostal": "77114", - "codeCommune": "77341", - "libelleAcheminement": "NOYEN SUR SEINE", - "nomCommune": "NOYEN SUR SEINE" + "codePostal": "74370", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "70600", - "codeCommune": "70122", - "libelleAcheminement": "CHAMPLITTE", - "nomCommune": "CHAMPLITTE" + "codePostal": "85320", + "codeCommune": "85135", + "libelleAcheminement": "MAREUIL SUR LAY DISSAIS", + "nomCommune": "MAREUIL SUR LAY DISSAIS" }, { - "codePostal": "83340", - "codeCommune": "83026", - "libelleAcheminement": "CABASSE", - "nomCommune": "CABASSE" + "codePostal": "71110", + "codeCommune": "71406", + "libelleAcheminement": "ST DIDIER EN BRIONNAIS", + "nomCommune": "ST DIDIER EN BRIONNAIS" }, { - "codePostal": "85290", - "codeCommune": "85238", - "libelleAcheminement": "ST LAURENT SUR SEVRE", - "nomCommune": "ST LAURENT SUR SEVRE" + "codePostal": "85270", + "codeCommune": "85226", + "libelleAcheminement": "ST HILAIRE DE RIEZ", + "nomCommune": "ST HILAIRE DE RIEZ" }, { - "codePostal": "77178", - "codeCommune": "77344", - "libelleAcheminement": "OISSERY", - "nomCommune": "OISSERY" + "codePostal": "74600", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "70600", - "codeCommune": "70122", - "libelleAcheminement": "CHAMPLITTE", - "nomCommune": "CHAMPLITTE" + "codePostal": "85240", + "codeCommune": "85136", + "libelleAcheminement": "MARILLET", + "nomCommune": "MARILLET" }, { - "codePostal": "83170", - "codeCommune": "83030", - "libelleAcheminement": "CAMPS LA SOURCE", - "nomCommune": "CAMPS LA SOURCE" + "codePostal": "71190", + "codeCommune": "71407", + "libelleAcheminement": "ST DIDIER SUR ARROUX", + "nomCommune": "ST DIDIER SUR ARROUX" }, { - "codePostal": "85200", - "codeCommune": "85244", - "libelleAcheminement": "ST MARTIN DE FRAIGNEAU", - "nomCommune": "ST MARTIN DE FRAIGNEAU" + "codePostal": "85120", + "codeCommune": "85229", + "libelleAcheminement": "ST HILAIRE DE VOUST", + "nomCommune": "ST HILAIRE DE VOUST" }, { - "codePostal": "77167", - "codeCommune": "77348", - "libelleAcheminement": "ORMESSON", - "nomCommune": "ORMESSON" + "codePostal": "74600", + "codeCommune": "74010", + "libelleAcheminement": "ANNECY", + "nomCommune": "ANNECY" }, { - "codePostal": "70100", - "codeCommune": "70125", - "libelleAcheminement": "CHAMPVANS", - "nomCommune": "CHAMPVANS" + "codePostal": "85150", + "codeCommune": "85138", + "libelleAcheminement": "MARTINET", + "nomCommune": "MARTINET" }, { - "codePostal": "83660", - "codeCommune": "83033", - "libelleAcheminement": "CARNOULES", - "nomCommune": "CARNOULES" + "codePostal": "71490", + "codeCommune": "71409", + "libelleAcheminement": "ST EMILAND", + "nomCommune": "ST EMILAND" }, { - "codePostal": "85140", - "codeCommune": "85246", - "libelleAcheminement": "ST MARTIN DES NOYERS", - "nomCommune": "ST MARTIN DES NOYERS" + "codePostal": "85210", + "codeCommune": "85233", + "libelleAcheminement": "ST JEAN DE BEUGNE", + "nomCommune": "ST JEAN DE BEUGNE" }, { - "codePostal": "77520", - "codeCommune": "77355", - "libelleAcheminement": "PAROY", - "nomCommune": "PAROY" + "codePostal": "74910", + "codeCommune": "74029", + "libelleAcheminement": "BASSY", + "nomCommune": "BASSY" }, { - "codePostal": "70140", - "codeCommune": "70126", - "libelleAcheminement": "CHANCEY", - "nomCommune": "CHANCEY" + "codePostal": "85600", + "codeCommune": "85146", + "libelleAcheminement": "MONTAIGU VENDEE", + "nomCommune": "MONTAIGU VENDEE" }, { - "codePostal": "83610", - "codeCommune": "83043", - "libelleAcheminement": "COLLOBRIERES", - "nomCommune": "COLLOBRIERES" + "codePostal": "71370", + "codeCommune": "71410", + "libelleAcheminement": "ST ETIENNE EN BRESSE", + "nomCommune": "ST ETIENNE EN BRESSE" }, { - "codePostal": "85390", - "codeCommune": "85252", - "libelleAcheminement": "ST MAURICE LE GIRARD", - "nomCommune": "ST MAURICE LE GIRARD" + "codePostal": "85470", + "codeCommune": "85243", + "libelleAcheminement": "BREM SUR MER", + "nomCommune": "BREM SUR MER" }, { - "codePostal": "77970", - "codeCommune": "77357", - "libelleAcheminement": "PECY", - "nomCommune": "PECY" + "codePostal": "74380", + "codeCommune": "74040", + "libelleAcheminement": "BONNE", + "nomCommune": "BONNE" }, { - "codePostal": "70300", - "codeCommune": "70128", - "libelleAcheminement": "LA CHAPELLE LES LUXEUIL", - "nomCommune": "LA CHAPELLE LES LUXEUIL" + "codePostal": "85200", + "codeCommune": "85148", + "libelleAcheminement": "MONTREUIL", + "nomCommune": "MONTREUIL" }, { - "codePostal": "83570", - "codeCommune": "83045", - "libelleAcheminement": "CORRENS", - "nomCommune": "CORRENS" + "codePostal": "71670", + "codeCommune": "71413", + "libelleAcheminement": "ST FIRMIN", + "nomCommune": "ST FIRMIN" }, { - "codePostal": "85580", - "codeCommune": "85255", - "libelleAcheminement": "ST MICHEL EN L HERM", - "nomCommune": "ST MICHEL EN L HERM" + "codePostal": "85130", + "codeCommune": "85247", + "libelleAcheminement": "ST MARTIN DES TILLEULS", + "nomCommune": "ST MARTIN DES TILLEULS" }, { - "codePostal": "77165", - "codeCommune": "77366", - "libelleAcheminement": "LE PLESSIS L EVEQUE", - "nomCommune": "LE PLESSIS L EVEQUE" + "codePostal": "74420", + "codeCommune": "74050", + "libelleAcheminement": "BURDIGNIN", + "nomCommune": "BURDIGNIN" }, { - "codePostal": "70500", - "codeCommune": "70143", - "libelleAcheminement": "CHAUVIREY LE CHATEL", - "nomCommune": "CHAUVIREY LE CHATEL" + "codePostal": "85390", + "codeCommune": "85154", + "libelleAcheminement": "MOUILLERON ST GERMAIN", + "nomCommune": "MOUILLERON ST GERMAIN" }, { - "codePostal": "83420", - "codeCommune": "83048", - "libelleAcheminement": "LA CROIX VALMER", - "nomCommune": "LA CROIX VALMER" + "codePostal": "71260", + "codeCommune": "71416", + "libelleAcheminement": "ST GENGOUX DE SCISSE", + "nomCommune": "ST GENGOUX DE SCISSE" }, { - "codePostal": "85670", - "codeCommune": "85260", - "libelleAcheminement": "ST PAUL MONT PENIT", - "nomCommune": "ST PAUL MONT PENIT" + "codePostal": "85390", + "codeCommune": "85252", + "libelleAcheminement": "ST MAURICE LE GIRARD", + "nomCommune": "ST MAURICE LE GIRARD" }, { - "codePostal": "77470", - "codeCommune": "77369", - "libelleAcheminement": "POINCY", - "nomCommune": "POINCY" + "codePostal": "74350", + "codeCommune": "74051", + "libelleAcheminement": "CERCIER", + "nomCommune": "CERCIER" }, { - "codePostal": "70360", - "codeCommune": "70148", - "libelleAcheminement": "CHEMILLY", - "nomCommune": "CHEMILLY" + "codePostal": "85540", + "codeCommune": "85156", + "libelleAcheminement": "MOUTIERS LES MAUXFAITS", + "nomCommune": "MOUTIERS LES MAUXFAITS" }, { - "codePostal": "83136", - "codeCommune": "83059", - "libelleAcheminement": "FORCALQUEIRET", - "nomCommune": "FORCALQUEIRET" + "codePostal": "71330", + "codeCommune": "71419", + "libelleAcheminement": "ST GERMAIN DU BOIS", + "nomCommune": "ST GERMAIN DU BOIS" }, { - "codePostal": "85420", - "codeCommune": "85265", - "libelleAcheminement": "ST PIERRE LE VIEUX", - "nomCommune": "ST PIERRE LE VIEUX" + "codePostal": "85700", + "codeCommune": "85254", + "libelleAcheminement": "ST MESMIN", + "nomCommune": "ST MESMIN" }, { - "codePostal": "77400", - "codeCommune": "77372", - "libelleAcheminement": "POMPONNE", - "nomCommune": "POMPONNE" + "codePostal": "74360", + "codeCommune": "74058", + "libelleAcheminement": "LA CHAPELLE D ABONDANCE", + "nomCommune": "LA CHAPELLE D ABONDANCE" }, { - "codePostal": "70400", - "codeCommune": "70149", - "libelleAcheminement": "CHENEBIER", - "nomCommune": "CHENEBIER" + "codePostal": "85370", + "codeCommune": "85159", + "libelleAcheminement": "NALLIERS", + "nomCommune": "NALLIERS" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "71490", + "codeCommune": "71424", + "libelleAcheminement": "ST GERVAIS SUR COUCHES", + "nomCommune": "ST GERVAIS SUR COUCHES" }, { - "codePostal": "85220", - "codeCommune": "85268", - "libelleAcheminement": "ST REVEREND", - "nomCommune": "ST REVEREND" + "codePostal": "85660", + "codeCommune": "85262", + "libelleAcheminement": "ST PHILBERT DE BOUAINE", + "nomCommune": "ST PHILBERT DE BOUAINE" }, { - "codePostal": "77310", - "codeCommune": "77378", - "libelleAcheminement": "PRINGY", - "nomCommune": "PRINGY" + "codePostal": "74270", + "codeCommune": "74066", + "libelleAcheminement": "CHAVANNAZ", + "nomCommune": "CHAVANNAZ" }, { - "codePostal": "70300", - "codeCommune": "70155", - "libelleAcheminement": "CITERS", - "nomCommune": "CITERS" + "codePostal": "85320", + "codeCommune": "85175", + "libelleAcheminement": "LES PINEAUX", + "nomCommune": "LES PINEAUX" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "71460", + "codeCommune": "71427", + "libelleAcheminement": "ST HURUGE", + "nomCommune": "ST HURUGE" }, { - "codePostal": "85540", - "codeCommune": "85277", - "libelleAcheminement": "ST VINCENT SUR GRAON", - "nomCommune": "ST VINCENT SUR GRAON" + "codePostal": "85450", + "codeCommune": "85267", + "libelleAcheminement": "STE RADEGONDE DES NOYERS", + "nomCommune": "STE RADEGONDE DES NOYERS" }, { - "codePostal": "77860", - "codeCommune": "77382", - "libelleAcheminement": "QUINCY VOISINS", - "nomCommune": "QUINCY VOISINS" + "codePostal": "74270", + "codeCommune": "74068", + "libelleAcheminement": "CHENE EN SEMINE", + "nomCommune": "CHENE EN SEMINE" }, { - "codePostal": "70200", - "codeCommune": "70178", - "libelleAcheminement": "LA COTE", - "nomCommune": "LA COTE" + "codePostal": "85770", + "codeCommune": "85177", + "libelleAcheminement": "LES VELLUIRE SUR VENDEE", + "nomCommune": "LES VELLUIRE SUR VENDEE" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "71210", + "codeCommune": "71435", + "libelleAcheminement": "ST JULIEN SUR DHEUNE", + "nomCommune": "ST JULIEN SUR DHEUNE" }, { - "codePostal": "85200", - "codeCommune": "85281", - "libelleAcheminement": "SERIGNE", - "nomCommune": "SERIGNE" + "codePostal": "85410", + "codeCommune": "85271", + "libelleAcheminement": "ST SULPICE EN PAREDS", + "nomCommune": "ST SULPICE EN PAREDS" }, { - "codePostal": "77510", - "codeCommune": "77385", - "libelleAcheminement": "REBAIS", - "nomCommune": "REBAIS" + "codePostal": "74220", + "codeCommune": "74080", + "libelleAcheminement": "LA CLUSAZ", + "nomCommune": "LA CLUSAZ" }, { - "codePostal": "70000", - "codeCommune": "70179", - "libelleAcheminement": "COULEVON", - "nomCommune": "COULEVON" + "codePostal": "85700", + "codeCommune": "85187", + "libelleAcheminement": "REAUMUR", + "nomCommune": "REAUMUR" }, { - "codePostal": "83980", - "codeCommune": "83070", - "libelleAcheminement": "LE LAVANDOU", - "nomCommune": "LE LAVANDOU" + "codePostal": "71380", + "codeCommune": "71445", + "libelleAcheminement": "ST MARCEL", + "nomCommune": "ST MARCEL" }, { - "codePostal": "85310", - "codeCommune": "85285", - "libelleAcheminement": "LE TABLIER", - "nomCommune": "LE TABLIER" + "codePostal": "85570", + "codeCommune": "85274", + "libelleAcheminement": "ST VALERIEN", + "nomCommune": "ST VALERIEN" }, { - "codePostal": "77540", - "codeCommune": "77393", - "libelleAcheminement": "ROZAY EN BRIE", - "nomCommune": "ROZAY EN BRIE" + "codePostal": "74270", + "codeCommune": "74100", + "libelleAcheminement": "DESINGY", + "nomCommune": "DESINGY" }, { - "codePostal": "70110", - "codeCommune": "70180", - "libelleAcheminement": "COURCHATON", - "nomCommune": "COURCHATON" + "codePostal": "85210", + "codeCommune": "85188", + "libelleAcheminement": "LA REORTHE", + "nomCommune": "LA REORTHE" }, { - "codePostal": "83670", - "codeCommune": "83084", - "libelleAcheminement": "MONTMEYAN", - "nomCommune": "MONTMEYAN" + "codePostal": "71220", + "codeCommune": "71452", + "libelleAcheminement": "ST MARTIN DE SALENCEY", + "nomCommune": "ST MARTIN DE SALENCEY" }, { "codePostal": "85390", @@ -210924,70 +210948,70 @@ "nomCommune": "TALLUD STE GEMME" }, { - "codePostal": "77950", - "codeCommune": "77394", - "libelleAcheminement": "RUBELLES", - "nomCommune": "RUBELLES" + "codePostal": "74520", + "codeCommune": "74101", + "libelleAcheminement": "DINGY EN VUACHE", + "nomCommune": "DINGY EN VUACHE" }, { - "codePostal": "70600", - "codeCommune": "70183", - "libelleAcheminement": "COURTESOULT ET GATEY", - "nomCommune": "COURTESOULT ET GATEY" + "codePostal": "85000", + "codeCommune": "85191", + "libelleAcheminement": "LA ROCHE SUR YON", + "nomCommune": "LA ROCHE SUR YON" }, { - "codePostal": "83860", - "codeCommune": "83087", - "libelleAcheminement": "NANS LES PINS", - "nomCommune": "NANS LES PINS" + "codePostal": "71640", + "codeCommune": "71459", + "libelleAcheminement": "ST MARTIN SOUS MONTAIGU", + "nomCommune": "ST MARTIN SOUS MONTAIGU" }, { - "codePostal": "85120", - "codeCommune": "85289", - "libelleAcheminement": "LA TARDIERE", - "nomCommune": "LA TARDIERE" + "codePostal": "85440", + "codeCommune": "85288", + "libelleAcheminement": "TALMONT ST HILAIRE", + "nomCommune": "TALMONT ST HILAIRE" }, { - "codePostal": "77515", - "codeCommune": "77400", - "libelleAcheminement": "ST AUGUSTIN", - "nomCommune": "ST AUGUSTIN" + "codePostal": "74140", + "codeCommune": "74105", + "libelleAcheminement": "DOUVAINE", + "nomCommune": "DOUVAINE" }, { - "codePostal": "70800", - "codeCommune": "70194", - "libelleAcheminement": "CUVE", - "nomCommune": "CUVE" + "codePostal": "85130", + "codeCommune": "85198", + "libelleAcheminement": "ST AUBIN DES ORMEAUX", + "nomCommune": "ST AUBIN DES ORMEAUX" }, { - "codePostal": "83520", - "codeCommune": "83107", - "libelleAcheminement": "ROQUEBRUNE SUR ARGENS", - "nomCommune": "ROQUEBRUNE SUR ARGENS" + "codePostal": "71260", + "codeCommune": "71460", + "libelleAcheminement": "ST MAURICE DE SATONNAY", + "nomCommune": "ST MAURICE DE SATONNAY" }, { - "codePostal": "85410", - "codeCommune": "85292", - "libelleAcheminement": "THOUARSAIS BOUILDROUX", - "nomCommune": "THOUARSAIS BOUILDROUX" + "codePostal": "85480", + "codeCommune": "85291", + "libelleAcheminement": "THORIGNY", + "nomCommune": "THORIGNY" }, { - "codePostal": "77160", - "codeCommune": "77403", - "libelleAcheminement": "ST BRICE", - "nomCommune": "ST BRICE" + "codePostal": "74370", + "codeCommune": "74112", + "libelleAcheminement": "EPAGNY METZ TESSY", + "nomCommune": "EPAGNY METZ TESSY" }, { - "codePostal": "70230", - "codeCommune": "70197", - "libelleAcheminement": "DAMPIERRE SUR LINOTTE", - "nomCommune": "DAMPIERRE SUR LINOTTE" + "codePostal": "85110", + "codeCommune": "85202", + "libelleAcheminement": "STE CECILE", + "nomCommune": "STE CECILE" }, { - "codePostal": "83170", - "codeCommune": "83110", - "libelleAcheminement": "ROUGIERS", - "nomCommune": "ROUGIERS" + "codePostal": "71570", + "codeCommune": "71481", + "libelleAcheminement": "ST SYMPHORIEN D ANCELLES", + "nomCommune": "ST SYMPHORIEN D ANCELLES" }, { "codePostal": "85360", @@ -210996,23302 +211020,23272 @@ "nomCommune": "LA TRANCHE SUR MER" }, { - "codePostal": "77470", - "codeCommune": "77408", - "libelleAcheminement": "ST FIACRE", - "nomCommune": "ST FIACRE" - }, - { - "codePostal": "70180", - "codeCommune": "70201", - "libelleAcheminement": "DELAIN", - "nomCommune": "DELAIN" - }, - { - "codePostal": "83136", - "codeCommune": "83111", - "libelleAcheminement": "STE ANASTASIE SUR ISSOLE", - "nomCommune": "STE ANASTASIE SUR ISSOLE" - }, - { - "codePostal": "85450", - "codeCommune": "85304", - "libelleAcheminement": "VOUILLE LES MARAIS", - "nomCommune": "VOUILLE LES MARAIS" - }, - { - "codePostal": "77660", - "codeCommune": "77415", - "libelleAcheminement": "ST JEAN LES DEUX JUMEAUX", - "nomCommune": "ST JEAN LES DEUX JUMEAUX" - }, - { - "codePostal": "70000", - "codeCommune": "70203", - "libelleAcheminement": "LA DEMIE", - "nomCommune": "LA DEMIE" - }, - { - "codePostal": "83270", - "codeCommune": "83112", - "libelleAcheminement": "ST CYR SUR MER", - "nomCommune": "ST CYR SUR MER" - }, - { - "codePostal": "86330", - "codeCommune": "86005", - "libelleAcheminement": "ANGLIERS", - "nomCommune": "ANGLIERS" - }, - { - "codePostal": "77370", - "codeCommune": "77416", - "libelleAcheminement": "ST JUST EN BRIE", - "nomCommune": "ST JUST EN BRIE" + "codePostal": "74270", + "codeCommune": "74131", + "libelleAcheminement": "FRANGY", + "nomCommune": "FRANGY" }, { - "codePostal": "70400", - "codeCommune": "70215", - "libelleAcheminement": "ERREVET", - "nomCommune": "ERREVET" + "codePostal": "85410", + "codeCommune": "85205", + "libelleAcheminement": "ST CYR DES GATS", + "nomCommune": "ST CYR DES GATS" }, { - "codePostal": "83560", - "codeCommune": "83114", - "libelleAcheminement": "ST MARTIN DE PALLIERES", - "nomCommune": "ST MARTIN DE PALLIERES" + "codePostal": "71570", + "codeCommune": "71481", + "libelleAcheminement": "ST SYMPHORIEN D ANCELLES", + "nomCommune": "ST SYMPHORIEN D ANCELLES" }, { - "codePostal": "86210", - "codeCommune": "86009", - "libelleAcheminement": "ARCHIGNY", - "nomCommune": "ARCHIGNY" + "codePostal": "85500", + "codeCommune": "85302", + "libelleAcheminement": "CHANVERRIE", + "nomCommune": "CHANVERRIE" }, { - "codePostal": "77169", - "codeCommune": "77436", - "libelleAcheminement": "ST SIMEON", - "nomCommune": "ST SIMEON" + "codePostal": "74450", + "codeCommune": "74136", + "libelleAcheminement": "LE GRAND BORNAND", + "nomCommune": "LE GRAND BORNAND" }, { - "codePostal": "70300", - "codeCommune": "70216", - "libelleAcheminement": "ESBOZ BREST", - "nomCommune": "ESBOZ BREST" + "codePostal": "85400", + "codeCommune": "85216", + "libelleAcheminement": "STE GEMME LA PLAINE", + "nomCommune": "STE GEMME LA PLAINE" }, { - "codePostal": "83530", - "codeCommune": "83118", - "libelleAcheminement": "ST RAPHAEL", - "nomCommune": "ST RAPHAEL" + "codePostal": "71800", + "codeCommune": "71483", + "libelleAcheminement": "ST SYMPHORIEN DES BOIS", + "nomCommune": "ST SYMPHORIEN DES BOIS" }, { - "codePostal": "86430", - "codeCommune": "86011", - "libelleAcheminement": "ASNIERES SUR BLOUR", - "nomCommune": "ASNIERES SUR BLOUR" + "codePostal": "85770", + "codeCommune": "85303", + "libelleAcheminement": "VIX", + "nomCommune": "VIX" }, { - "codePostal": "77580", - "codeCommune": "77443", - "libelleAcheminement": "SANCY", - "nomCommune": "SANCY" + "codePostal": "74570", + "codeCommune": "74137", + "libelleAcheminement": "GROISY", + "nomCommune": "GROISY" }, { - "codePostal": "70310", - "codeCommune": "70217", - "libelleAcheminement": "ESMOULIERES", - "nomCommune": "ESMOULIERES" + "codePostal": "85210", + "codeCommune": "85223", + "libelleAcheminement": "STE HERMINE", + "nomCommune": "STE HERMINE" }, { - "codePostal": "83640", - "codeCommune": "83120", - "libelleAcheminement": "ST ZACHARIE", - "nomCommune": "ST ZACHARIE" + "codePostal": "71390", + "codeCommune": "71485", + "libelleAcheminement": "ST VALLERIN", + "nomCommune": "ST VALLERIN" }, { - "codePostal": "86210", - "codeCommune": "86020", - "libelleAcheminement": "BELLEFONDS", - "nomCommune": "BELLEFONDS" + "codePostal": "85120", + "codeCommune": "85305", + "libelleAcheminement": "VOUVANT", + "nomCommune": "VOUVANT" }, { - "codePostal": "77176", - "codeCommune": "77445", - "libelleAcheminement": "SAVIGNY LE TEMPLE", - "nomCommune": "SAVIGNY LE TEMPLE" + "codePostal": "74540", + "codeCommune": "74138", + "libelleAcheminement": "GRUFFY", + "nomCommune": "GRUFFY" }, { - "codePostal": "70120", - "codeCommune": "70237", - "libelleAcheminement": "FLEUREY LES LAVONCOURT", - "nomCommune": "FLEUREY LES LAVONCOURT" + "codePostal": "85270", + "codeCommune": "85226", + "libelleAcheminement": "ST HILAIRE DE RIEZ", + "nomCommune": "ST HILAIRE DE RIEZ" }, { - "codePostal": "83870", - "codeCommune": "83127", - "libelleAcheminement": "SIGNES", - "nomCommune": "SIGNES" + "codePostal": "71250", + "codeCommune": "71488", + "libelleAcheminement": "ST VINCENT DES PRES", + "nomCommune": "ST VINCENT DES PRES" }, { - "codePostal": "86800", - "codeCommune": "86028", - "libelleAcheminement": "BIGNOUX", - "nomCommune": "BIGNOUX" + "codePostal": "86110", + "codeCommune": "86002", + "libelleAcheminement": "AMBERRE", + "nomCommune": "AMBERRE" }, - { - "codePostal": "77700", - "codeCommune": "77449", - "libelleAcheminement": "SERRIS", - "nomCommune": "SERRIS" + { + "codePostal": "74150", + "codeCommune": "74151", + "libelleAcheminement": "LORNAY", + "nomCommune": "LORNAY" }, { - "codePostal": "70190", - "codeCommune": "70239", - "libelleAcheminement": "FONDREMAND", - "nomCommune": "FONDREMAND" + "codePostal": "85240", + "codeCommune": "85227", + "libelleAcheminement": "ST HILAIRE DES LOGES", + "nomCommune": "ST HILAIRE DES LOGES" }, { - "codePostal": "83140", - "codeCommune": "83129", - "libelleAcheminement": "SIX FOURS LES PLAGES", - "nomCommune": "SIX FOURS LES PLAGES" + "codePostal": "71260", + "codeCommune": "71494", + "libelleAcheminement": "LA SALLE", + "nomCommune": "LA SALLE" }, { - "codePostal": "86510", - "codeCommune": "86039", - "libelleAcheminement": "BRUX", - "nomCommune": "BRUX" + "codePostal": "86210", + "codeCommune": "86009", + "libelleAcheminement": "ARCHIGNY", + "nomCommune": "ARCHIGNY" }, { - "codePostal": "77640", - "codeCommune": "77451", - "libelleAcheminement": "SIGNY SIGNETS", - "nomCommune": "SIGNY SIGNETS" + "codePostal": "74330", + "codeCommune": "74152", + "libelleAcheminement": "LOVAGNY", + "nomCommune": "LOVAGNY" }, { - "codePostal": "70220", - "codeCommune": "70245", - "libelleAcheminement": "FOUGEROLLES ST VALBERT", - "nomCommune": "FOUGEROLLES ST VALBERT" + "codePostal": "85210", + "codeCommune": "85235", + "libelleAcheminement": "ST JUIRE CHAMPGILLON", + "nomCommune": "ST JUIRE CHAMPGILLON" }, { - "codePostal": "83210", - "codeCommune": "83130", - "libelleAcheminement": "SOLLIES PONT", - "nomCommune": "SOLLIES PONT" + "codePostal": "71390", + "codeCommune": "71503", + "libelleAcheminement": "SAULES", + "nomCommune": "SAULES" }, { - "codePostal": "86200", - "codeCommune": "86044", - "libelleAcheminement": "CEAUX EN LOUDUN", - "nomCommune": "CEAUX EN LOUDUN" + "codePostal": "86460", + "codeCommune": "86015", + "libelleAcheminement": "AVAILLES LIMOUZINE", + "nomCommune": "AVAILLES LIMOUZINE" }, { - "codePostal": "77460", - "codeCommune": "77458", - "libelleAcheminement": "SOUPPES SUR LOING", - "nomCommune": "SOUPPES SUR LOING" + "codePostal": "74500", + "codeCommune": "74154", + "libelleAcheminement": "LUGRIN", + "nomCommune": "LUGRIN" }, { - "codePostal": "70400", - "codeCommune": "70248", - "libelleAcheminement": "FRAHIER ET CHATEBIER", - "nomCommune": "FRAHIER ET CHATEBIER" + "codePostal": "85590", + "codeCommune": "85242", + "libelleAcheminement": "ST MARS LA REORTHE", + "nomCommune": "ST MARS LA REORTHE" }, { - "codePostal": "83210", - "codeCommune": "83131", - "libelleAcheminement": "SOLLIES TOUCAS", - "nomCommune": "SOLLIES TOUCAS" + "codePostal": "71350", + "codeCommune": "71504", + "libelleAcheminement": "SAUNIERES", + "nomCommune": "SAUNIERES" }, { - "codePostal": "86200", - "codeCommune": "86049", - "libelleAcheminement": "CHALAIS", - "nomCommune": "CHALAIS" + "codePostal": "86130", + "codeCommune": "86019", + "libelleAcheminement": "BEAUMONT ST CYR", + "nomCommune": "BEAUMONT ST CYR" }, { - "codePostal": "77131", - "codeCommune": "77469", - "libelleAcheminement": "TOUQUIN", - "nomCommune": "TOUQUIN" + "codePostal": "74140", + "codeCommune": "74158", + "libelleAcheminement": "MACHILLY", + "nomCommune": "MACHILLY" }, { - "codePostal": "70200", - "codeCommune": "70260", - "libelleAcheminement": "FROTEY LES LURE", - "nomCommune": "FROTEY LES LURE" + "codePostal": "85210", + "codeCommune": "85248", + "libelleAcheminement": "ST MARTIN LARS EN STE HERMINE", + "nomCommune": "ST MARTIN LARS EN STE HERMINE" }, { - "codePostal": "83670", - "codeCommune": "83135", - "libelleAcheminement": "TAVERNES", - "nomCommune": "TAVERNES" + "codePostal": "71440", + "codeCommune": "71508", + "libelleAcheminement": "SAVIGNY SUR SEILLE", + "nomCommune": "SAVIGNY SUR SEILLE" }, { - "codePostal": "86170", - "codeCommune": "86053", - "libelleAcheminement": "CHAMPIGNY EN ROCHEREAU", - "nomCommune": "CHAMPIGNY EN ROCHEREAU" + "codePostal": "86490", + "codeCommune": "86019", + "libelleAcheminement": "BEAUMONT ST CYR", + "nomCommune": "BEAUMONT ST CYR" }, { - "codePostal": "77370", - "codeCommune": "77481", - "libelleAcheminement": "VANVILLE", - "nomCommune": "VANVILLE" + "codePostal": "74300", + "codeCommune": "74159", + "libelleAcheminement": "MAGLAND", + "nomCommune": "MAGLAND" }, { - "codePostal": "70100", - "codeCommune": "70265", - "libelleAcheminement": "GERMIGNEY", - "nomCommune": "GERMIGNEY" + "codePostal": "85580", + "codeCommune": "85255", + "libelleAcheminement": "ST MICHEL EN L HERM", + "nomCommune": "ST MICHEL EN L HERM" }, { - "codePostal": "83100", - "codeCommune": "83137", - "libelleAcheminement": "TOULON", - "nomCommune": "TOULON" + "codePostal": "71310", + "codeCommune": "71516", + "libelleAcheminement": "SERLEY", + "nomCommune": "SERLEY" }, { - "codePostal": "86170", - "codeCommune": "86053", - "libelleAcheminement": "CHAMPIGNY EN ROCHEREAU", - "nomCommune": "CHAMPIGNY EN ROCHEREAU" + "codePostal": "86800", + "codeCommune": "86028", + "libelleAcheminement": "BIGNOUX", + "nomCommune": "BIGNOUX" }, { - "codePostal": "77910", - "codeCommune": "77483", - "libelleAcheminement": "VARREDDES", - "nomCommune": "VARREDDES" + "codePostal": "74460", + "codeCommune": "74169", + "libelleAcheminement": "MARNAZ", + "nomCommune": "MARNAZ" }, { - "codePostal": "70400", - "codeCommune": "70276", - "libelleAcheminement": "GRANGES LA VILLE", - "nomCommune": "GRANGES LA VILLE" + "codePostal": "85500", + "codeCommune": "85259", + "libelleAcheminement": "ST PAUL EN PAREDS", + "nomCommune": "ST PAUL EN PAREDS" }, { - "codePostal": "83440", - "codeCommune": "83138", - "libelleAcheminement": "TOURRETTES", - "nomCommune": "TOURRETTES" + "codePostal": "71310", + "codeCommune": "71519", + "libelleAcheminement": "SERRIGNY EN BRESSE", + "nomCommune": "SERRIGNY EN BRESSE" }, { - "codePostal": "86360", - "codeCommune": "86062", - "libelleAcheminement": "CHASSENEUIL DU POITOU", - "nomCommune": "CHASSENEUIL DU POITOU" + "codePostal": "86390", + "codeCommune": "86035", + "libelleAcheminement": "BOURG ARCHAMBAULT", + "nomCommune": "BOURG ARCHAMBAULT" }, { - "codePostal": "77440", - "codeCommune": "77490", - "libelleAcheminement": "VENDREST", - "nomCommune": "VENDREST" + "codePostal": "74140", + "codeCommune": "74180", + "libelleAcheminement": "MESSERY", + "nomCommune": "MESSERY" }, { - "codePostal": "70440", - "codeCommune": "70283", - "libelleAcheminement": "HAUT DU THEM CHATEAU LAMBERT", - "nomCommune": "HAUT DU THEM CHATEAU LAMBERT" + "codePostal": "85320", + "codeCommune": "85261", + "libelleAcheminement": "STE PEXINE", + "nomCommune": "STE PEXINE" }, { - "codePostal": "83720", - "codeCommune": "83141", - "libelleAcheminement": "TRANS EN PROVENCE", - "nomCommune": "TRANS EN PROVENCE" + "codePostal": "71100", + "codeCommune": "71520", + "libelleAcheminement": "SEVREY", + "nomCommune": "SEVREY" }, { - "codePostal": "86100", - "codeCommune": "86066", - "libelleAcheminement": "CHATELLERAULT", - "nomCommune": "CHATELLERAULT" + "codePostal": "86290", + "codeCommune": "86037", + "libelleAcheminement": "BRIGUEIL LE CHANTRE", + "nomCommune": "BRIGUEIL LE CHANTRE" }, { - "codePostal": "77670", - "codeCommune": "77494", - "libelleAcheminement": "VERNOU LA CELLE SUR SEINE", - "nomCommune": "VERNOU LA CELLE SUR SEINE" + "codePostal": "74560", + "codeCommune": "74193", + "libelleAcheminement": "LA MURAZ", + "nomCommune": "LA MURAZ" }, { - "codePostal": "70800", - "codeCommune": "70290", - "libelleAcheminement": "JASNEY", - "nomCommune": "JASNEY" + "codePostal": "85420", + "codeCommune": "85269", + "libelleAcheminement": "ST SIGISMOND", + "nomCommune": "ST SIGISMOND" }, { - "codePostal": "83560", - "codeCommune": "83146", - "libelleAcheminement": "LA VERDIERE", - "nomCommune": "LA VERDIERE" + "codePostal": "71250", + "codeCommune": "71521", + "libelleAcheminement": "SIGY LE CHATEL", + "nomCommune": "SIGY LE CHATEL" }, { - "codePostal": "86510", - "codeCommune": "86068", - "libelleAcheminement": "CHAUNAY", - "nomCommune": "CHAUNAY" + "codePostal": "86310", + "codeCommune": "86040", + "libelleAcheminement": "LA BUSSIERE", + "nomCommune": "LA BUSSIERE" }, { - "codePostal": "77450", - "codeCommune": "77498", - "libelleAcheminement": "VIGNELY", - "nomCommune": "VIGNELY" + "codePostal": "74370", + "codeCommune": "74198", + "libelleAcheminement": "NAVES PARMELAN", + "nomCommune": "NAVES PARMELAN" }, { - "codePostal": "70230", - "codeCommune": "70296", - "libelleAcheminement": "LARIANS ET MUNANS", - "nomCommune": "LARIANS ET MUNANS" + "codePostal": "85230", + "codeCommune": "85273", + "libelleAcheminement": "ST URBAIN", + "nomCommune": "ST URBAIN" }, { - "codePostal": "83560", - "codeCommune": "83150", - "libelleAcheminement": "VINON SUR VERDON", - "nomCommune": "VINON SUR VERDON" + "codePostal": "71250", + "codeCommune": "71532", + "libelleAcheminement": "TAIZE", + "nomCommune": "TAIZE" }, { - "codePostal": "86600", - "codeCommune": "86080", - "libelleAcheminement": "CLOUE", - "nomCommune": "CLOUE" + "codePostal": "37160", + "codeCommune": "86042", + "libelleAcheminement": "BUXEUIL", + "nomCommune": "BUXEUIL" }, { - "codePostal": "77710", - "codeCommune": "77500", - "libelleAcheminement": "VILLEBEON", - "nomCommune": "VILLEBEON" + "codePostal": "74550", + "codeCommune": "74206", + "libelleAcheminement": "ORCIER", + "nomCommune": "ORCIER" }, { - "codePostal": "70120", - "codeCommune": "70299", - "libelleAcheminement": "LAVONCOURT", - "nomCommune": "LAVONCOURT" + "codePostal": "85540", + "codeCommune": "85277", + "libelleAcheminement": "ST VINCENT SUR GRAON", + "nomCommune": "ST VINCENT SUR GRAON" }, { - "codePostal": "83820", - "codeCommune": "83152", - "libelleAcheminement": "RAYOL CANADEL SUR MER", - "nomCommune": "RAYOL CANADEL SUR MER" + "codePostal": "71330", + "codeCommune": "71534", + "libelleAcheminement": "LE TARTRE", + "nomCommune": "LE TARTRE" }, { - "codePostal": "86110", - "codeCommune": "86089", - "libelleAcheminement": "CUHON", - "nomCommune": "CUHON" + "codePostal": "86200", + "codeCommune": "86044", + "libelleAcheminement": "CEAUX EN LOUDUN", + "nomCommune": "CEAUX EN LOUDUN" }, { - "codePostal": "77710", - "codeCommune": "77504", - "libelleAcheminement": "VILLEMARECHAL", - "nomCommune": "VILLEMARECHAL" + "codePostal": "74190", + "codeCommune": "74208", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "70140", - "codeCommune": "70302", - "libelleAcheminement": "LIEUCOURT", - "nomCommune": "LIEUCOURT" + "codePostal": "85300", + "codeCommune": "85280", + "libelleAcheminement": "SALLERTAINE", + "nomCommune": "SALLERTAINE" }, { - "codePostal": "83820", - "codeCommune": "83152", - "libelleAcheminement": "RAYOL CANADEL SUR MER", - "nomCommune": "RAYOL CANADEL SUR MER" + "codePostal": "71350", + "codeCommune": "71544", + "libelleAcheminement": "TOUTENANT", + "nomCommune": "TOUTENANT" }, { - "codePostal": "86600", - "codeCommune": "86091", - "libelleAcheminement": "CURZAY SUR VONNE", - "nomCommune": "CURZAY SUR VONNE" + "codePostal": "86140", + "codeCommune": "86047", + "libelleAcheminement": "CERNAY", + "nomCommune": "CERNAY" }, { - "codePostal": "77480", - "codeCommune": "77507", - "libelleAcheminement": "VILLENAUXE LA PETITE", - "nomCommune": "VILLENAUXE LA PETITE" + "codePostal": "74190", + "codeCommune": "74208", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "70100", - "codeCommune": "70305", - "libelleAcheminement": "LOEUILLEY", - "nomCommune": "LOEUILLEY" + "codePostal": "85110", + "codeCommune": "85282", + "libelleAcheminement": "SIGOURNAIS", + "nomCommune": "SIGOURNAIS" }, { - "codePostal": "84390", - "codeCommune": "84005", - "libelleAcheminement": "AUREL", - "nomCommune": "AUREL" + "codePostal": "71440", + "codeCommune": "71548", + "libelleAcheminement": "TRONCHY", + "nomCommune": "TRONCHY" }, { - "codePostal": "86240", - "codeCommune": "86100", - "libelleAcheminement": "FONTAINE LE COMTE", - "nomCommune": "FONTAINE LE COMTE" + "codePostal": "86380", + "codeCommune": "86048", + "libelleAcheminement": "CHABOURNAY", + "nomCommune": "CHABOURNAY" }, { - "codePostal": "77174", - "codeCommune": "77510", - "libelleAcheminement": "VILLENEUVE ST DENIS", - "nomCommune": "VILLENEUVE ST DENIS" + "codePostal": "74550", + "codeCommune": "74210", + "libelleAcheminement": "PERRIGNIER", + "nomCommune": "PERRIGNIER" }, { - "codePostal": "70110", - "codeCommune": "70307", - "libelleAcheminement": "LONGEVELLE", - "nomCommune": "LONGEVELLE" + "codePostal": "85210", + "codeCommune": "85290", + "libelleAcheminement": "THIRE", + "nomCommune": "THIRE" }, { - "codePostal": "84000", - "codeCommune": "84007", - "libelleAcheminement": "AVIGNON", - "nomCommune": "AVIGNON" + "codePostal": "71120", + "codeCommune": "71564", + "libelleAcheminement": "VENDENESSE LES CHAROLLES", + "nomCommune": "VENDENESSE LES CHAROLLES" }, { - "codePostal": "86200", - "codeCommune": "86106", - "libelleAcheminement": "GLENOUZE", - "nomCommune": "GLENOUZE" + "codePostal": "86510", + "codeCommune": "86051", + "libelleAcheminement": "CHAMPAGNE LE SEC", + "nomCommune": "CHAMPAGNE LE SEC" }, { - "codePostal": "77230", - "codeCommune": "77511", - "libelleAcheminement": "VILLENEUVE SOUS DAMMARTIN", - "nomCommune": "VILLENEUVE SOUS DAMMARTIN" + "codePostal": "74930", + "codeCommune": "74211", + "libelleAcheminement": "PERS JUSSY", + "nomCommune": "PERS JUSSY" }, { - "codePostal": "70310", - "codeCommune": "70308", - "libelleAcheminement": "LA LONGINE", - "nomCommune": "LA LONGINE" + "codePostal": "85410", + "codeCommune": "85292", + "libelleAcheminement": "THOUARSAIS BOUILDROUX", + "nomCommune": "THOUARSAIS BOUILDROUX" }, { - "codePostal": "84240", - "codeCommune": "84009", - "libelleAcheminement": "LA BASTIDE DES JOURDANS", - "nomCommune": "LA BASTIDE DES JOURDANS" + "codePostal": "71130", + "codeCommune": "71565", + "libelleAcheminement": "VENDENESSE SUR ARROUX", + "nomCommune": "VENDENESSE SUR ARROUX" }, { - "codePostal": "86320", - "codeCommune": "86107", - "libelleAcheminement": "GOUEX", - "nomCommune": "GOUEX" + "codePostal": "86400", + "codeCommune": "86054", + "libelleAcheminement": "CHAMPNIERS", + "nomCommune": "CHAMPNIERS" }, { - "codePostal": "77130", - "codeCommune": "77516", - "libelleAcheminement": "VILLE ST JACQUES", - "nomCommune": "VILLE ST JACQUES" + "codePostal": "74950", + "codeCommune": "74221", + "libelleAcheminement": "LE REPOSOIR", + "nomCommune": "LE REPOSOIR" }, { - "codePostal": "70230", - "codeCommune": "70309", - "libelleAcheminement": "LOULANS VERCHAMP", - "nomCommune": "LOULANS VERCHAMP" + "codePostal": "85130", + "codeCommune": "85302", + "libelleAcheminement": "CHANVERRIE", + "nomCommune": "CHANVERRIE" }, { - "codePostal": "84210", - "codeCommune": "84011", - "libelleAcheminement": "LE BEAUCET", - "nomCommune": "LE BEAUCET" + "codePostal": "71110", + "codeCommune": "71581", + "libelleAcheminement": "VINDECY", + "nomCommune": "VINDECY" }, { - "codePostal": "86800", - "codeCommune": "86114", - "libelleAcheminement": "JARDRES", - "nomCommune": "JARDRES" + "codePostal": "86210", + "codeCommune": "86058", + "libelleAcheminement": "LA CHAPELLE MOULIERE", + "nomCommune": "LA CHAPELLE MOULIERE" }, { - "codePostal": "77410", - "codeCommune": "77517", - "libelleAcheminement": "VILLEVAUDE", - "nomCommune": "VILLEVAUDE" + "codePostal": "74150", + "codeCommune": "74231", + "libelleAcheminement": "ST EUSEBE", + "nomCommune": "ST EUSEBE" }, { - "codePostal": "70300", - "codeCommune": "70311", - "libelleAcheminement": "LUXEUIL LES BAINS", - "nomCommune": "LUXEUIL LES BAINS" + "codePostal": "86700", + "codeCommune": "86003", + "libelleAcheminement": "ANCHE", + "nomCommune": "ANCHE" }, { - "codePostal": "84480", - "codeCommune": "84020", - "libelleAcheminement": "BONNIEUX", - "nomCommune": "BONNIEUX" + "codePostal": "71260", + "codeCommune": "71584", + "libelleAcheminement": "VIRE", + "nomCommune": "VIRE" }, { - "codePostal": "86130", - "codeCommune": "86115", - "libelleAcheminement": "JAUNAY MARIGNY", - "nomCommune": "JAUNAY MARIGNY" + "codePostal": "86250", + "codeCommune": "86063", + "libelleAcheminement": "CHATAIN", + "nomCommune": "CHATAIN" }, { - "codePostal": "77410", - "codeCommune": "77517", - "libelleAcheminement": "VILLEVAUDE", - "nomCommune": "VILLEVAUDE" + "codePostal": "74450", + "codeCommune": "74239", + "libelleAcheminement": "ST JEAN DE SIXT", + "nomCommune": "ST JEAN DE SIXT" }, { - "codePostal": "70800", - "codeCommune": "70315", - "libelleAcheminement": "MAGNONCOURT", - "nomCommune": "MAGNONCOURT" + "codePostal": "86330", + "codeCommune": "86005", + "libelleAcheminement": "ANGLIERS", + "nomCommune": "ANGLIERS" }, { - "codePostal": "84160", - "codeCommune": "84026", - "libelleAcheminement": "CADENET", - "nomCommune": "CADENET" + "codePostal": "71140", + "codeCommune": "71589", + "libelleAcheminement": "VITRY SUR LOIRE", + "nomCommune": "VITRY SUR LOIRE" }, { - "codePostal": "86290", - "codeCommune": "86118", - "libelleAcheminement": "JOURNET", - "nomCommune": "JOURNET" + "codePostal": "86370", + "codeCommune": "86065", + "libelleAcheminement": "CHATEAU LARCHER", + "nomCommune": "CHATEAU LARCHER" }, { - "codePostal": "77114", - "codeCommune": "77522", - "libelleAcheminement": "VILLIERS SUR SEINE", - "nomCommune": "VILLIERS SUR SEINE" + "codePostal": "74800", + "codeCommune": "74253", + "libelleAcheminement": "ST SIXT", + "nomCommune": "ST SIXT" }, { - "codePostal": "70200", - "codeCommune": "70319", - "libelleAcheminement": "MAGNY JOBERT", - "nomCommune": "MAGNY JOBERT" + "codePostal": "86530", + "codeCommune": "86014", + "libelleAcheminement": "AVAILLES EN CHATELLERAULT", + "nomCommune": "AVAILLES EN CHATELLERAULT" }, { - "codePostal": "84230", - "codeCommune": "84037", - "libelleAcheminement": "CHATEAUNEUF DU PAPE", - "nomCommune": "CHATEAUNEUF DU PAPE" + "codePostal": "72600", + "codeCommune": "72002", + "libelleAcheminement": "AILLIERES BEAUVOIR", + "nomCommune": "AILLIERES BEAUVOIR" }, { - "codePostal": "86350", - "codeCommune": "86119", - "libelleAcheminement": "JOUSSE", - "nomCommune": "JOUSSE" + "codePostal": "86300", + "codeCommune": "86070", + "libelleAcheminement": "CHAUVIGNY", + "nomCommune": "CHAUVIGNY" }, { - "codePostal": "77480", - "codeCommune": "77523", - "libelleAcheminement": "VILLUIS", - "nomCommune": "VILLUIS" + "codePostal": "74270", + "codeCommune": "74257", + "libelleAcheminement": "SALLENOVES", + "nomCommune": "SALLENOVES" }, { - "codePostal": "70200", - "codeCommune": "70321", - "libelleAcheminement": "MAGNY VERNOIS", - "nomCommune": "MAGNY VERNOIS" + "codePostal": "86190", + "codeCommune": "86017", + "libelleAcheminement": "AYRON", + "nomCommune": "AYRON" }, { - "codePostal": "84350", - "codeCommune": "84039", - "libelleAcheminement": "COURTHEZON", - "nomCommune": "COURTHEZON" + "codePostal": "72800", + "codeCommune": "72013", + "libelleAcheminement": "AUBIGNE RACAN", + "nomCommune": "AUBIGNE RACAN" }, { - "codePostal": "86390", - "codeCommune": "86120", - "libelleAcheminement": "LATHUS ST REMY", - "nomCommune": "LATHUS ST REMY" + "codePostal": "86300", + "codeCommune": "86070", + "libelleAcheminement": "CHAUVIGNY", + "nomCommune": "CHAUVIGNY" }, { - "codePostal": "77520", - "codeCommune": "77524", - "libelleAcheminement": "VIMPELLES", - "nomCommune": "VIMPELLES" + "codePostal": "74910", + "codeCommune": "74269", + "libelleAcheminement": "SEYSSEL", + "nomCommune": "SEYSSEL" }, { - "codePostal": "70210", - "codeCommune": "70323", - "libelleAcheminement": "MAILLERONCOURT ST PANCRAS", - "nomCommune": "MAILLERONCOURT ST PANCRAS" + "codePostal": "86120", + "codeCommune": "86022", + "libelleAcheminement": "BERRIE", + "nomCommune": "BERRIE" }, { - "codePostal": "84400", - "codeCommune": "84047", - "libelleAcheminement": "GARGAS", - "nomCommune": "GARGAS" + "codePostal": "72400", + "codeCommune": "72020", + "libelleAcheminement": "AVEZE", + "nomCommune": "AVEZE" }, { - "codePostal": "86470", - "codeCommune": "86123", - "libelleAcheminement": "BOIVRE LA VALLEE", - "nomCommune": "BOIVRE LA VALLEE" + "codePostal": "86170", + "codeCommune": "86073", + "libelleAcheminement": "CHERVES", + "nomCommune": "CHERVES" }, { - "codePostal": "78770", - "codeCommune": "78013", - "libelleAcheminement": "ANDELU", - "nomCommune": "ANDELU" + "codePostal": "74570", + "codeCommune": "74282", + "libelleAcheminement": "FILLIERE", + "nomCommune": "FILLIERE" }, { - "codePostal": "70120", - "codeCommune": "70329", - "libelleAcheminement": "MALVILLERS", - "nomCommune": "MALVILLERS" + "codePostal": "86420", + "codeCommune": "86023", + "libelleAcheminement": "BERTHEGON", + "nomCommune": "BERTHEGON" }, { - "codePostal": "84400", - "codeCommune": "84048", - "libelleAcheminement": "GIGNAC", - "nomCommune": "GIGNAC" + "codePostal": "72430", + "codeCommune": "72021", + "libelleAcheminement": "AVOISE", + "nomCommune": "AVOISE" }, { - "codePostal": "86240", - "codeCommune": "86133", - "libelleAcheminement": "LIGUGE", - "nomCommune": "LIGUGE" + "codePostal": "86320", + "codeCommune": "86077", + "libelleAcheminement": "CIVAUX", + "nomCommune": "CIVAUX" }, { - "codePostal": "78930", - "codeCommune": "78031", - "libelleAcheminement": "AUFFREVILLE BRASSEUIL", - "nomCommune": "AUFFREVILLE BRASSEUIL" + "codePostal": "74910", + "codeCommune": "74285", + "libelleAcheminement": "USINENS", + "nomCommune": "USINENS" }, { - "codePostal": "70400", - "codeCommune": "70330", - "libelleAcheminement": "MANDREVILLARS", - "nomCommune": "MANDREVILLARS" + "codePostal": "86120", + "codeCommune": "86026", + "libelleAcheminement": "BEUXES", + "nomCommune": "BEUXES" }, { - "codePostal": "84240", - "codeCommune": "84052", - "libelleAcheminement": "GRAMBOIS", - "nomCommune": "GRAMBOIS" + "codePostal": "72500", + "codeCommune": "72028", + "libelleAcheminement": "BEAUMONT PIED DE BOEUF", + "nomCommune": "BEAUMONT PIED DE BOEUF" }, { "codePostal": "86200", - "codeCommune": "86137", - "libelleAcheminement": "LOUDUN", - "nomCommune": "LOUDUN" + "codeCommune": "86079", + "libelleAcheminement": "LA ROCHE RIGAULT", + "nomCommune": "LA ROCHE RIGAULT" }, { - "codePostal": "78550", - "codeCommune": "78048", - "libelleAcheminement": "BAZAINVILLE", - "nomCommune": "BAZAINVILLE" + "codePostal": "74440", + "codeCommune": "74294", + "libelleAcheminement": "VERCHAIX", + "nomCommune": "VERCHAIX" }, { - "codePostal": "70120", - "codeCommune": "70337", - "libelleAcheminement": "MELIN", - "nomCommune": "MELIN" + "codePostal": "86400", + "codeCommune": "86029", + "libelleAcheminement": "BLANZAY", + "nomCommune": "BLANZAY" }, { - "codePostal": "84400", - "codeCommune": "84060", - "libelleAcheminement": "LAGARDE D APT", - "nomCommune": "LAGARDE D APT" + "codePostal": "72320", + "codeCommune": "72032", + "libelleAcheminement": "BERFAY", + "nomCommune": "BERFAY" }, { - "codePostal": "86320", - "codeCommune": "86140", - "libelleAcheminement": "LUSSAC LES CHATEAUX", - "nomCommune": "LUSSAC LES CHATEAUX" + "codePostal": "86600", + "codeCommune": "86080", + "libelleAcheminement": "CLOUE", + "nomCommune": "CLOUE" }, { - "codePostal": "78930", - "codeCommune": "78070", - "libelleAcheminement": "BOINVILLE EN MANTOIS", - "nomCommune": "BOINVILLE EN MANTOIS" + "codePostal": "74200", + "codeCommune": "74295", + "libelleAcheminement": "LA VERNAZ", + "nomCommune": "LA VERNAZ" }, { - "codePostal": "70160", - "codeCommune": "70343", - "libelleAcheminement": "MERSUAY", - "nomCommune": "MERSUAY" + "codePostal": "86160", + "codeCommune": "86052", + "libelleAcheminement": "CHAMPAGNE ST HILAIRE", + "nomCommune": "CHAMPAGNE ST HILAIRE" }, { - "codePostal": "84290", - "codeCommune": "84061", - "libelleAcheminement": "LAGARDE PAREOL", - "nomCommune": "LAGARDE PAREOL" + "codePostal": "72610", + "codeCommune": "72034", + "libelleAcheminement": "BERUS", + "nomCommune": "BERUS" }, { - "codePostal": "86330", - "codeCommune": "86149", - "libelleAcheminement": "MARTAIZE", - "nomCommune": "MARTAIZE" + "codePostal": "86700", + "codeCommune": "86082", + "libelleAcheminement": "VALENCE EN POITOU", + "nomCommune": "VALENCE EN POITOU" }, { - "codePostal": "78125", - "codeCommune": "78077", - "libelleAcheminement": "LA BOISSIERE ECOLE", - "nomCommune": "LA BOISSIERE ECOLE" + "codePostal": "74100", + "codeCommune": "74298", + "libelleAcheminement": "VETRAZ MONTHOUX", + "nomCommune": "VETRAZ MONTHOUX" }, { - "codePostal": "70240", - "codeCommune": "70351", - "libelleAcheminement": "MOLLANS", - "nomCommune": "MOLLANS" + "codePostal": "86170", + "codeCommune": "86053", + "libelleAcheminement": "CHAMPIGNY EN ROCHEREAU", + "nomCommune": "CHAMPIGNY EN ROCHEREAU" }, { - "codePostal": "84800", - "codeCommune": "84062", - "libelleAcheminement": "LAGNES", - "nomCommune": "LAGNES" + "codePostal": "72110", + "codeCommune": "72039", + "libelleAcheminement": "BONNETABLE", + "nomCommune": "BONNETABLE" }, { - "codePostal": "86200", - "codeCommune": "86151", - "libelleAcheminement": "MAULAY", - "nomCommune": "MAULAY" + "codePostal": "86110", + "codeCommune": "86085", + "libelleAcheminement": "COUSSAY", + "nomCommune": "COUSSAY" }, { - "codePostal": "78490", - "codeCommune": "78084", - "libelleAcheminement": "BOISSY SANS AVOIR", - "nomCommune": "BOISSY SANS AVOIR" + "codePostal": "74100", + "codeCommune": "74305", + "libelleAcheminement": "VILLE LA GRAND", + "nomCommune": "VILLE LA GRAND" }, { - "codePostal": "70140", - "codeCommune": "70353", - "libelleAcheminement": "MONTAGNEY", - "nomCommune": "MONTAGNEY" + "codePostal": "86250", + "codeCommune": "86055", + "libelleAcheminement": "LA CHAPELLE BATON", + "nomCommune": "LA CHAPELLE BATON" }, { - "codePostal": "84840", - "codeCommune": "84064", - "libelleAcheminement": "LAPALUD", - "nomCommune": "LAPALUD" + "codePostal": "72610", + "codeCommune": "72043", + "libelleAcheminement": "BOURG LE ROI", + "nomCommune": "BOURG LE ROI" }, { - "codePostal": "86460", - "codeCommune": "86152", - "libelleAcheminement": "MAUPREVOIR", - "nomCommune": "MAUPREVOIR" + "codePostal": "86120", + "codeCommune": "86090", + "libelleAcheminement": "CURCAY SUR DIVE", + "nomCommune": "CURCAY SUR DIVE" }, { - "codePostal": "78830", - "codeCommune": "78087", - "libelleAcheminement": "BONNELLES", - "nomCommune": "BONNELLES" + "codePostal": "74540", + "codeCommune": "74310", + "libelleAcheminement": "VIUZ LA CHIESAZ", + "nomCommune": "VIUZ LA CHIESAZ" }, { - "codePostal": "70210", - "codeCommune": "70360", - "libelleAcheminement": "MONTDORE", - "nomCommune": "MONTDORE" + "codePostal": "86360", + "codeCommune": "86062", + "libelleAcheminement": "CHASSENEUIL DU POITOU", + "nomCommune": "CHASSENEUIL DU POITOU" }, { - "codePostal": "84160", - "codeCommune": "84068", - "libelleAcheminement": "LOURMARIN", - "nomCommune": "LOURMARIN" + "codePostal": "72300", + "codeCommune": "72061", + "libelleAcheminement": "LA CHAPELLE D ALIGNE", + "nomCommune": "LA CHAPELLE D ALIGNE" }, { - "codePostal": "86200", - "codeCommune": "86156", - "libelleAcheminement": "MESSEME", - "nomCommune": "MESSEME" + "codePostal": "86600", + "codeCommune": "86091", + "libelleAcheminement": "CURZAY SUR VONNE", + "nomCommune": "CURZAY SUR VONNE" }, { - "codePostal": "78410", - "codeCommune": "78090", - "libelleAcheminement": "BOUAFLE", - "nomCommune": "BOUAFLE" + "codePostal": "74130", + "codeCommune": "74312", + "libelleAcheminement": "VOUGY", + "nomCommune": "VOUGY" }, { - "codePostal": "70000", - "codeCommune": "70363", - "libelleAcheminement": "MONTIGNY LES VESOUL", - "nomCommune": "MONTIGNY LES VESOUL" + "codePostal": "86350", + "codeCommune": "86064", + "libelleAcheminement": "CHATEAU GARNIER", + "nomCommune": "CHATEAU GARNIER" }, { - "codePostal": "84340", - "codeCommune": "84069", - "libelleAcheminement": "MALAUCENE", - "nomCommune": "MALAUCENE" + "codePostal": "72650", + "codeCommune": "72065", + "libelleAcheminement": "LA CHAPELLE ST AUBIN", + "nomCommune": "LA CHAPELLE ST AUBIN" }, { - "codePostal": "86550", - "codeCommune": "86157", - "libelleAcheminement": "MIGNALOUX BEAUVOIR", - "nomCommune": "MIGNALOUX BEAUVOIR" + "codePostal": "86340", + "codeCommune": "86099", + "libelleAcheminement": "FLEURE", + "nomCommune": "FLEURE" }, { - "codePostal": "78955", - "codeCommune": "78123", - "libelleAcheminement": "CARRIERES SOUS POISSY", - "nomCommune": "CARRIERES SOUS POISSY" + "codePostal": "74140", + "codeCommune": "74315", + "libelleAcheminement": "YVOIRE", + "nomCommune": "YVOIRE" }, { - "codePostal": "70000", - "codeCommune": "70367", - "libelleAcheminement": "MONT LE VERNOIS", - "nomCommune": "MONT LE VERNOIS" + "codePostal": "86270", + "codeCommune": "86086", + "libelleAcheminement": "COUSSAY LES BOIS", + "nomCommune": "COUSSAY LES BOIS" }, { - "codePostal": "84360", - "codeCommune": "84074", - "libelleAcheminement": "MERINDOL", - "nomCommune": "MERINDOL" + "codePostal": "72160", + "codeCommune": "72067", + "libelleAcheminement": "LA CHAPELLE ST REMY", + "nomCommune": "LA CHAPELLE ST REMY" }, { - "codePostal": "86120", - "codeCommune": "86169", - "libelleAcheminement": "MORTON", - "nomCommune": "MORTON" + "codePostal": "86160", + "codeCommune": "86103", + "libelleAcheminement": "GENCAY", + "nomCommune": "GENCAY" }, { - "codePostal": "78720", - "codeCommune": "78128", - "libelleAcheminement": "CERNAY LA VILLE", - "nomCommune": "CERNAY LA VILLE" + "codePostal": "75009", + "codeCommune": "75109", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 09" }, { - "codePostal": "70500", - "codeCommune": "70372", - "libelleAcheminement": "MONTUREUX LES BAULAY", - "nomCommune": "MONTUREUX LES BAULAY" + "codePostal": "86110", + "codeCommune": "86087", + "libelleAcheminement": "CRAON", + "nomCommune": "CRAON" }, { - "codePostal": "84120", - "codeCommune": "84076", - "libelleAcheminement": "MIRABEAU", - "nomCommune": "MIRABEAU" + "codePostal": "72340", + "codeCommune": "72068", + "libelleAcheminement": "LA CHARTRE SUR LE LOIR", + "nomCommune": "LA CHARTRE SUR LE LOIR" }, { - "codePostal": "86430", - "codeCommune": "86172", - "libelleAcheminement": "MOUTERRE SUR BLOURDE", - "nomCommune": "MOUTERRE SUR BLOURDE" + "codePostal": "86110", + "codeCommune": "86108", + "libelleAcheminement": "LA GRIMAUDIERE", + "nomCommune": "LA GRIMAUDIERE" }, { - "codePostal": "78240", - "codeCommune": "78133", - "libelleAcheminement": "CHAMBOURCY", - "nomCommune": "CHAMBOURCY" + "codePostal": "75010", + "codeCommune": "75110", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 10" }, { - "codePostal": "70120", - "codeCommune": "70373", - "libelleAcheminement": "LA ROCHE MOREY", - "nomCommune": "LA ROCHE MOREY" + "codePostal": "86240", + "codeCommune": "86088", + "libelleAcheminement": "CROUTELLE", + "nomCommune": "CROUTELLE" }, { - "codePostal": "84220", - "codeCommune": "84085", - "libelleAcheminement": "MURS", - "nomCommune": "MURS" + "codePostal": "72500", + "codeCommune": "72071", + "libelleAcheminement": "MONTVAL SUR LOIR", + "nomCommune": "MONTVAL SUR LOIR" }, { "codePostal": "86420", - "codeCommune": "86201", - "libelleAcheminement": "PRINCAY", - "nomCommune": "PRINCAY" + "codeCommune": "86109", + "libelleAcheminement": "GUESNES", + "nomCommune": "GUESNES" }, { - "codePostal": "78150", - "codeCommune": "78158", - "libelleAcheminement": "LE CHESNAY ROCQUENCOURT", - "nomCommune": "LE CHESNAY ROCQUENCOURT" + "codePostal": "75013", + "codeCommune": "75113", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 13" }, { - "codePostal": "70120", - "codeCommune": "70373", - "libelleAcheminement": "LA ROCHE MOREY", - "nomCommune": "LA ROCHE MOREY" + "codePostal": "86410", + "codeCommune": "86094", + "libelleAcheminement": "DIENNE", + "nomCommune": "DIENNE" }, { - "codePostal": "84580", - "codeCommune": "84086", - "libelleAcheminement": "OPPEDE", - "nomCommune": "OPPEDE" + "codePostal": "72210", + "codeCommune": "72075", + "libelleAcheminement": "CHEMIRE LE GAUDIN", + "nomCommune": "CHEMIRE LE GAUDIN" }, { - "codePostal": "86340", - "codeCommune": "86209", - "libelleAcheminement": "ROCHES PREMARIE ANDILLE", - "nomCommune": "ROCHES PREMARIE ANDILLE" + "codePostal": "86220", + "codeCommune": "86111", + "libelleAcheminement": "INGRANDES", + "nomCommune": "INGRANDES" + }, + { + "codePostal": "75018", + "codeCommune": "75118", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 18" + }, + { + "codePostal": "86140", + "codeCommune": "86096", + "libelleAcheminement": "DOUSSAY", + "nomCommune": "DOUSSAY" }, { - "codePostal": "78150", - "codeCommune": "78158", - "libelleAcheminement": "LE CHESNAY ROCQUENCOURT", - "nomCommune": "LE CHESNAY ROCQUENCOURT" + "codePostal": "72610", + "codeCommune": "72076", + "libelleAcheminement": "CHENAY", + "nomCommune": "CHENAY" }, { - "codePostal": "70000", - "codeCommune": "70378", - "libelleAcheminement": "NAVENNE", - "nomCommune": "NAVENNE" + "codePostal": "86150", + "codeCommune": "86112", + "libelleAcheminement": "L ISLE JOURDAIN", + "nomCommune": "L ISLE JOURDAIN" }, { - "codePostal": "84210", - "codeCommune": "84088", - "libelleAcheminement": "PERNES LES FONTAINES", - "nomCommune": "PERNES LES FONTAINES" + "codePostal": "75019", + "codeCommune": "75119", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 19" }, { - "codePostal": "86480", - "codeCommune": "86213", - "libelleAcheminement": "ROUILLE", - "nomCommune": "ROUILLE" + "codePostal": "86300", + "codeCommune": "86098", + "libelleAcheminement": "FLEIX", + "nomCommune": "FLEIX" }, { - "codePostal": "78460", - "codeCommune": "78162", - "libelleAcheminement": "CHOISEL", - "nomCommune": "CHOISEL" + "codePostal": "72170", + "codeCommune": "72078", + "libelleAcheminement": "CHERANCE", + "nomCommune": "CHERANCE" }, { - "codePostal": "70160", - "codeCommune": "70380", - "libelleAcheminement": "NEUREY EN VAUX", - "nomCommune": "NEUREY EN VAUX" + "codePostal": "86130", + "codeCommune": "86115", + "libelleAcheminement": "JAUNAY MARIGNY", + "nomCommune": "JAUNAY MARIGNY" }, { - "codePostal": "84110", - "codeCommune": "84098", - "libelleAcheminement": "ROAIX", - "nomCommune": "ROAIX" + "codePostal": "76190", + "codeCommune": "76001", + "libelleAcheminement": "ALLOUVILLE BELLEFOSSE", + "nomCommune": "ALLOUVILLE BELLEFOSSE" }, { - "codePostal": "86230", - "codeCommune": "86217", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "86470", + "codeCommune": "86123", + "libelleAcheminement": "BOIVRE LA VALLEE", + "nomCommune": "BOIVRE LA VALLEE" }, { - "codePostal": "78310", - "codeCommune": "78168", - "libelleAcheminement": "COIGNIERES", - "nomCommune": "COIGNIERES" + "codePostal": "72240", + "codeCommune": "72089", + "libelleAcheminement": "CONLIE", + "nomCommune": "CONLIE" }, { - "codePostal": "70100", - "codeCommune": "70389", - "libelleAcheminement": "NOIRON", - "nomCommune": "NOIRON" + "codePostal": "86390", + "codeCommune": "86120", + "libelleAcheminement": "LATHUS ST REMY", + "nomCommune": "LATHUS ST REMY" }, { - "codePostal": "84290", - "codeCommune": "84106", - "libelleAcheminement": "STE CECILE LES VIGNES", - "nomCommune": "STE CECILE LES VIGNES" + "codePostal": "76920", + "codeCommune": "76005", + "libelleAcheminement": "AMFREVILLE LA MI VOIE", + "nomCommune": "AMFREVILLE LA MI VOIE" }, { - "codePostal": "86400", - "codeCommune": "86220", - "libelleAcheminement": "ST GAUDENT", - "nomCommune": "ST GAUDENT" + "codePostal": "86270", + "codeCommune": "86129", + "libelleAcheminement": "LESIGNY", + "nomCommune": "LESIGNY" }, { - "codePostal": "78111", - "codeCommune": "78192", - "libelleAcheminement": "DAMMARTIN EN SERVE", - "nomCommune": "DAMMARTIN EN SERVE" + "codePostal": "72160", + "codeCommune": "72090", + "libelleAcheminement": "CONNERRE", + "nomCommune": "CONNERRE" }, { - "codePostal": "70120", - "codeCommune": "70392", - "libelleAcheminement": "OIGNEY", - "nomCommune": "OIGNEY" + "codePostal": "86300", + "codeCommune": "86122", + "libelleAcheminement": "LAUTHIERS", + "nomCommune": "LAUTHIERS" }, { - "codePostal": "84760", - "codeCommune": "84113", - "libelleAcheminement": "ST MARTIN DE LA BRASQUE", - "nomCommune": "ST MARTIN DE LA BRASQUE" + "codePostal": "76710", + "codeCommune": "76007", + "libelleAcheminement": "ANCEAUMEVILLE", + "nomCommune": "ANCEAUMEVILLE" }, { - "codePostal": "86140", - "codeCommune": "86221", - "libelleAcheminement": "ST GENEST D AMBIERE", - "nomCommune": "ST GENEST D AMBIERE" + "codePostal": "86290", + "codeCommune": "86132", + "libelleAcheminement": "LIGLET", + "nomCommune": "LIGLET" }, { - "codePostal": "78720", - "codeCommune": "78193", - "libelleAcheminement": "DAMPIERRE EN YVELINES", - "nomCommune": "DAMPIERRE EN YVELINES" + "codePostal": "72110", + "codeCommune": "72101", + "libelleAcheminement": "COURCEMONT", + "nomCommune": "COURCEMONT" }, { - "codePostal": "70360", - "codeCommune": "70401", - "libelleAcheminement": "OVANCHES", - "nomCommune": "OVANCHES" + "codePostal": "86470", + "codeCommune": "86123", + "libelleAcheminement": "BOIVRE LA VALLEE", + "nomCommune": "BOIVRE LA VALLEE" }, { - "codePostal": "84330", - "codeCommune": "84115", - "libelleAcheminement": "ST PIERRE DE VASSOLS", - "nomCommune": "ST PIERRE DE VASSOLS" + "codePostal": "76540", + "codeCommune": "76013", + "libelleAcheminement": "ANGERVILLE LA MARTEL", + "nomCommune": "ANGERVILLE LA MARTEL" }, { - "codePostal": "86230", - "codeCommune": "86224", - "libelleAcheminement": "ST GERVAIS LES TROIS CLOCHERS", - "nomCommune": "ST GERVAIS LES TROIS CLOCHERS" + "codePostal": "86240", + "codeCommune": "86133", + "libelleAcheminement": "LIGUGE", + "nomCommune": "LIGUGE" }, { - "codePostal": "78740", - "codeCommune": "78227", - "libelleAcheminement": "EVECQUEMONT", - "nomCommune": "EVECQUEMONT" + "codePostal": "72550", + "codeCommune": "72113", + "libelleAcheminement": "DEGRE", + "nomCommune": "DEGRE" }, { - "codePostal": "70130", - "codeCommune": "70418", - "libelleAcheminement": "LA ROMAINE", - "nomCommune": "LA ROMAINE" + "codePostal": "86300", + "codeCommune": "86126", + "libelleAcheminement": "LEIGNES SUR FONTAINE", + "nomCommune": "LEIGNES SUR FONTAINE" }, { - "codePostal": "84110", - "codeCommune": "84116", - "libelleAcheminement": "ST ROMAIN EN VIENNOIS", - "nomCommune": "ST ROMAIN EN VIENNOIS" + "codePostal": "76280", + "codeCommune": "76014", + "libelleAcheminement": "ANGERVILLE L ORCHER", + "nomCommune": "ANGERVILLE L ORCHER" }, { - "codePostal": "86330", - "codeCommune": "86225", - "libelleAcheminement": "ST JEAN DE SAUVES", - "nomCommune": "ST JEAN DE SAUVES" + "codePostal": "86400", + "codeCommune": "86136", + "libelleAcheminement": "LIZANT", + "nomCommune": "LIZANT" }, { - "codePostal": "78790", - "codeCommune": "78237", - "libelleAcheminement": "FLINS NEUVE EGLISE", - "nomCommune": "FLINS NEUVE EGLISE" + "codePostal": "72170", + "codeCommune": "72120", + "libelleAcheminement": "DOUCELLES", + "nomCommune": "DOUCELLES" }, { - "codePostal": "70130", - "codeCommune": "70438", - "libelleAcheminement": "RAY SUR SAONE", - "nomCommune": "RAY SUR SAONE" + "codePostal": "86220", + "codeCommune": "86130", + "libelleAcheminement": "LEUGNY", + "nomCommune": "LEUGNY" }, { - "codePostal": "84390", - "codeCommune": "84125", - "libelleAcheminement": "SAVOILLAN", - "nomCommune": "SAVOILLAN" + "codePostal": "76280", + "codeCommune": "76017", + "libelleAcheminement": "ANGLESQUEVILLE L ESNEVAL", + "nomCommune": "ANGLESQUEVILLE L ESNEVAL" }, { - "codePostal": "86410", - "codeCommune": "86228", - "libelleAcheminement": "ST LAURENT DE JOURDES", - "nomCommune": "ST LAURENT DE JOURDES" + "codePostal": "86370", + "codeCommune": "86145", + "libelleAcheminement": "MARCAY", + "nomCommune": "MARCAY" }, { - "codePostal": "78410", - "codeCommune": "78238", - "libelleAcheminement": "FLINS SUR SEINE", - "nomCommune": "FLINS SUR SEINE" + "codePostal": "72540", + "codeCommune": "72126", + "libelleAcheminement": "EPINEU LE CHEVREUIL", + "nomCommune": "EPINEU LE CHEVREUIL" }, { - "codePostal": "70190", - "codeCommune": "70441", - "libelleAcheminement": "RECOLOGNE LES RIOZ", - "nomCommune": "RECOLOGNE LES RIOZ" + "codePostal": "86410", + "codeCommune": "86131", + "libelleAcheminement": "LHOMMAIZE", + "nomCommune": "LHOMMAIZE" }, { - "codePostal": "84830", - "codeCommune": "84127", - "libelleAcheminement": "SERIGNAN DU COMTAT", - "nomCommune": "SERIGNAN DU COMTAT" + "codePostal": "76480", + "codeCommune": "76020", + "libelleAcheminement": "ANNEVILLE AMBOURVILLE", + "nomCommune": "ANNEVILLE AMBOURVILLE" }, { - "codePostal": "86290", - "codeCommune": "86230", - "libelleAcheminement": "ST LEOMER", - "nomCommune": "ST LEOMER" + "codePostal": "86360", + "codeCommune": "86163", + "libelleAcheminement": "MONTAMISE", + "nomCommune": "MONTAMISE" }, { - "codePostal": "78490", - "codeCommune": "78264", - "libelleAcheminement": "GAMBAISEUIL", - "nomCommune": "GAMBAISEUIL" + "codePostal": "72130", + "codeCommune": "72141", + "libelleAcheminement": "GESNES LE GANDELIN", + "nomCommune": "GESNES LE GANDELIN" }, { - "codePostal": "70120", - "codeCommune": "70442", - "libelleAcheminement": "RENAUCOURT", - "nomCommune": "RENAUCOURT" + "codePostal": "86370", + "codeCommune": "86147", + "libelleAcheminement": "MARIGNY CHEMEREAU", + "nomCommune": "MARIGNY CHEMEREAU" }, { - "codePostal": "84400", - "codeCommune": "84128", - "libelleAcheminement": "SIVERGUES", - "nomCommune": "SIVERGUES" + "codePostal": "76480", + "codeCommune": "76020", + "libelleAcheminement": "ANNEVILLE AMBOURVILLE", + "nomCommune": "ANNEVILLE AMBOURVILLE" }, { - "codePostal": "86300", - "codeCommune": "86233", - "libelleAcheminement": "VALDIVIENNE", - "nomCommune": "VALDIVIENNE" + "codePostal": "86420", + "codeCommune": "86167", + "libelleAcheminement": "MONTS SUR GUESNES", + "nomCommune": "MONTS SUR GUESNES" }, { - "codePostal": "78125", - "codeCommune": "78269", - "libelleAcheminement": "GAZERAN", - "nomCommune": "GAZERAN" + "codePostal": "72150", + "codeCommune": "72143", + "libelleAcheminement": "LE GRAND LUCE", + "nomCommune": "LE GRAND LUCE" }, { - "codePostal": "70140", - "codeCommune": "70444", - "libelleAcheminement": "LA RESIE ST MARTIN", - "nomCommune": "LA RESIE ST MARTIN" + "codePostal": "86460", + "codeCommune": "86152", + "libelleAcheminement": "MAUPREVOIR", + "nomCommune": "MAUPREVOIR" }, { - "codePostal": "84190", - "codeCommune": "84130", - "libelleAcheminement": "SUZETTE", - "nomCommune": "SUZETTE" + "codePostal": "76390", + "codeCommune": "76028", + "libelleAcheminement": "AUBEGUIMONT", + "nomCommune": "AUBEGUIMONT" }, { - "codePostal": "86300", - "codeCommune": "86233", - "libelleAcheminement": "VALDIVIENNE", - "nomCommune": "VALDIVIENNE" + "codePostal": "86230", + "codeCommune": "86182", + "libelleAcheminement": "ORCHES", + "nomCommune": "ORCHES" }, { - "codePostal": "78770", - "codeCommune": "78278", - "libelleAcheminement": "GOUPILLIERES", - "nomCommune": "GOUPILLIERES" + "codePostal": "72540", + "codeCommune": "72149", + "libelleAcheminement": "JOUE EN CHARNIE", + "nomCommune": "JOUE EN CHARNIE" }, { - "codePostal": "70100", - "codeCommune": "70446", - "libelleAcheminement": "RIGNY", - "nomCommune": "RIGNY" + "codePostal": "86320", + "codeCommune": "86153", + "libelleAcheminement": "MAZEROLLES", + "nomCommune": "MAZEROLLES" }, { - "codePostal": "84110", - "codeCommune": "84137", - "libelleAcheminement": "VAISON LA ROMAINE", - "nomCommune": "VAISON LA ROMAINE" + "codePostal": "76340", + "codeCommune": "76029", + "libelleAcheminement": "AUBERMESNIL AUX ERABLES", + "nomCommune": "AUBERMESNIL AUX ERABLES" }, { "codePostal": "86300", - "codeCommune": "86233", - "libelleAcheminement": "VALDIVIENNE", - "nomCommune": "VALDIVIENNE" + "codeCommune": "86187", + "libelleAcheminement": "PAIZAY LE SEC", + "nomCommune": "PAIZAY LE SEC" }, { - "codePostal": "78113", - "codeCommune": "78283", - "libelleAcheminement": "GRANDCHAMP", - "nomCommune": "GRANDCHAMP" + "codePostal": "72220", + "codeCommune": "72155", + "libelleAcheminement": "LAIGNE EN BELIN", + "nomCommune": "LAIGNE EN BELIN" }, { - "codePostal": "70180", - "codeCommune": "70448", - "libelleAcheminement": "ROCHE ET RAUCOURT", - "nomCommune": "ROCHE ET RAUCOURT" + "codePostal": "86440", + "codeCommune": "86158", + "libelleAcheminement": "MIGNE AUXANCES", + "nomCommune": "MIGNE AUXANCES" }, { - "codePostal": "84800", - "codeCommune": "84139", - "libelleAcheminement": "FONTAINE DE VAUCLUSE", - "nomCommune": "FONTAINE DE VAUCLUSE" + "codePostal": "76190", + "codeCommune": "76041", + "libelleAcheminement": "LES HAUTS DE CAUX", + "nomCommune": "LES HAUTS DE CAUX" }, { - "codePostal": "86300", - "codeCommune": "86233", - "libelleAcheminement": "VALDIVIENNE", - "nomCommune": "VALDIVIENNE" + "codePostal": "86350", + "codeCommune": "86189", + "libelleAcheminement": "PAYROUX", + "nomCommune": "PAYROUX" }, { - "codePostal": "78930", - "codeCommune": "78291", - "libelleAcheminement": "GUERVILLE", - "nomCommune": "GUERVILLE" + "codePostal": "72270", + "codeCommune": "72163", + "libelleAcheminement": "LIGRON", + "nomCommune": "LIGRON" }, { - "codePostal": "70230", - "codeCommune": "70449", - "libelleAcheminement": "ROCHE LINOTTE ET SORANS CORDIERS", - "nomCommune": "ROCHE LINOTTE ET SORANS CORDIERS" + "codePostal": "86500", + "codeCommune": "86170", + "libelleAcheminement": "MOULISMES", + "nomCommune": "MOULISMES" }, { - "codePostal": "84530", - "codeCommune": "84147", - "libelleAcheminement": "VILLELAURE", - "nomCommune": "VILLELAURE" + "codePostal": "76730", + "codeCommune": "76047", + "libelleAcheminement": "AUZOUVILLE SUR SAANE", + "nomCommune": "AUZOUVILLE SUR SAANE" }, { - "codePostal": "86400", - "codeCommune": "86237", - "libelleAcheminement": "ST PIERRE D EXIDEUIL", - "nomCommune": "ST PIERRE D EXIDEUIL" + "codePostal": "86320", + "codeCommune": "86190", + "libelleAcheminement": "PERSAC", + "nomCommune": "PERSAC" }, { - "codePostal": "78440", - "codeCommune": "78317", - "libelleAcheminement": "JAMBVILLE", - "nomCommune": "JAMBVILLE" + "codePostal": "72450", + "codeCommune": "72165", + "libelleAcheminement": "LOMBRON", + "nomCommune": "LOMBRON" }, { - "codePostal": "70200", - "codeCommune": "70455", - "libelleAcheminement": "ROYE", - "nomCommune": "ROYE" + "codePostal": "86530", + "codeCommune": "86174", + "libelleAcheminement": "NAINTRE", + "nomCommune": "NAINTRE" }, { - "codePostal": "84150", - "codeCommune": "84149", - "libelleAcheminement": "VIOLES", - "nomCommune": "VIOLES" + "codePostal": "76630", + "codeCommune": "76054", + "libelleAcheminement": "BAILLY EN RIVIERE", + "nomCommune": "BAILLY EN RIVIERE" }, { - "codePostal": "86100", - "codeCommune": "86245", - "libelleAcheminement": "SENILLE ST SAUVEUR", - "nomCommune": "SENILLE ST SAUVEUR" + "codePostal": "86000", + "codeCommune": "86194", + "libelleAcheminement": "POITIERS", + "nomCommune": "POITIERS" }, { - "codePostal": "78760", - "codeCommune": "78321", - "libelleAcheminement": "JOUARS PONTCHARTRAIN", - "nomCommune": "JOUARS PONTCHARTRAIN" + "codePostal": "72600", + "codeCommune": "72171", + "libelleAcheminement": "LOUZES", + "nomCommune": "LOUZES" }, { - "codePostal": "70110", - "codeCommune": "70462", - "libelleAcheminement": "ST FERJEUX", - "nomCommune": "ST FERJEUX" + "codePostal": "86200", + "codeCommune": "86181", + "libelleAcheminement": "NUEIL SOUS FAYE", + "nomCommune": "NUEIL SOUS FAYE" }, { - "codePostal": "84820", - "codeCommune": "84150", - "libelleAcheminement": "VISAN", - "nomCommune": "VISAN" + "codePostal": "76360", + "codeCommune": "76057", + "libelleAcheminement": "BARENTIN", + "nomCommune": "BARENTIN" }, { - "codePostal": "86140", - "codeCommune": "86257", - "libelleAcheminement": "SAVIGNY SOUS FAYE", - "nomCommune": "SAVIGNY SOUS FAYE" + "codePostal": "86460", + "codeCommune": "86200", + "libelleAcheminement": "PRESSAC", + "nomCommune": "PRESSAC" }, { - "codePostal": "78820", - "codeCommune": "78327", - "libelleAcheminement": "JUZIERS", - "nomCommune": "JUZIERS" + "codePostal": "72390", + "codeCommune": "72172", + "libelleAcheminement": "LE LUART", + "nomCommune": "LE LUART" }, { - "codePostal": "70200", - "codeCommune": "70464", - "libelleAcheminement": "ST GERMAIN", - "nomCommune": "ST GERMAIN" + "codePostal": "86120", + "codeCommune": "86196", + "libelleAcheminement": "POUANCAY", + "nomCommune": "POUANCAY" }, { - "codePostal": "85190", - "codeCommune": "85003", - "libelleAcheminement": "AIZENAY", - "nomCommune": "AIZENAY" + "codePostal": "76870", + "codeCommune": "76065", + "libelleAcheminement": "BEAUSSAULT", + "nomCommune": "BEAUSSAULT" }, { - "codePostal": "86140", - "codeCommune": "86258", - "libelleAcheminement": "SCORBE CLAIRVAUX", - "nomCommune": "SCORBE CLAIRVAUX" + "codePostal": "86420", + "codeCommune": "86201", + "libelleAcheminement": "PRINCAY", + "nomCommune": "PRINCAY" }, { - "codePostal": "78114", - "codeCommune": "78356", - "libelleAcheminement": "MAGNY LES HAMEAUX", - "nomCommune": "MAGNY LES HAMEAUX" + "codePostal": "72500", + "codeCommune": "72173", + "libelleAcheminement": "LUCEAU", + "nomCommune": "LUCEAU" }, { - "codePostal": "70310", - "codeCommune": "70469", - "libelleAcheminement": "STE MARIE EN CHANOIS", - "nomCommune": "STE MARIE EN CHANOIS" + "codePostal": "86200", + "codeCommune": "86197", + "libelleAcheminement": "POUANT", + "nomCommune": "POUANT" }, { - "codePostal": "85750", - "codeCommune": "85004", - "libelleAcheminement": "ANGLES", - "nomCommune": "ANGLES" + "codePostal": "76220", + "codeCommune": "76067", + "libelleAcheminement": "BEAUVOIR EN LYONS", + "nomCommune": "BEAUVOIR EN LYONS" }, { - "codePostal": "86240", - "codeCommune": "86263", - "libelleAcheminement": "SMARVES", - "nomCommune": "SMARVES" + "codePostal": "86200", + "codeCommune": "86205", + "libelleAcheminement": "RANTON", + "nomCommune": "RANTON" }, { - "codePostal": "78490", - "codeCommune": "78366", - "libelleAcheminement": "MAREIL LE GUYON", - "nomCommune": "MAREIL LE GUYON" + "codePostal": "72800", + "codeCommune": "72176", + "libelleAcheminement": "LE LUDE", + "nomCommune": "LE LUDE" }, { - "codePostal": "70300", - "codeCommune": "70470", - "libelleAcheminement": "STE MARIE EN CHAUX", - "nomCommune": "STE MARIE EN CHAUX" + "codePostal": "86800", + "codeCommune": "86198", + "libelleAcheminement": "POUILLE", + "nomCommune": "POUILLE" }, { - "codePostal": "85630", - "codeCommune": "85011", - "libelleAcheminement": "BARBATRE", - "nomCommune": "BARBATRE" + "codePostal": "76110", + "codeCommune": "76076", + "libelleAcheminement": "BENARVILLE", + "nomCommune": "BENARVILLE" }, { - "codePostal": "86250", - "codeCommune": "86266", - "libelleAcheminement": "SURIN", - "nomCommune": "SURIN" + "codePostal": "86120", + "codeCommune": "86206", + "libelleAcheminement": "RASLAY", + "nomCommune": "RASLAY" }, { - "codePostal": "78580", - "codeCommune": "78380", - "libelleAcheminement": "MAULE", - "nomCommune": "MAULE" + "codePostal": "72510", + "codeCommune": "72182", + "libelleAcheminement": "MANSIGNE", + "nomCommune": "MANSIGNE" }, { - "codePostal": "70700", - "codeCommune": "70471", - "libelleAcheminement": "STE REINE", - "nomCommune": "STE REINE" + "codePostal": "86120", + "codeCommune": "86210", + "libelleAcheminement": "ROIFFE", + "nomCommune": "ROIFFE" }, { - "codePostal": "85550", - "codeCommune": "85012", - "libelleAcheminement": "LA BARRE DE MONTS", - "nomCommune": "LA BARRE DE MONTS" + "codePostal": "76790", + "codeCommune": "76079", + "libelleAcheminement": "BENOUVILLE", + "nomCommune": "BENOUVILLE" }, { - "codePostal": "86380", - "codeCommune": "86281", - "libelleAcheminement": "ST MARTIN LA PALLU", - "nomCommune": "ST MARTIN LA PALLU" + "codePostal": "86280", + "codeCommune": "86214", + "libelleAcheminement": "ST BENOIT", + "nomCommune": "ST BENOIT" }, { - "codePostal": "78550", - "codeCommune": "78381", - "libelleAcheminement": "MAULETTE", - "nomCommune": "MAULETTE" + "codePostal": "72340", + "codeCommune": "72183", + "libelleAcheminement": "MARCON", + "nomCommune": "MARCON" }, { - "codePostal": "70160", - "codeCommune": "70472", - "libelleAcheminement": "ST REMY EN COMTE", - "nomCommune": "ST REMY EN COMTE" + "codePostal": "86700", + "codeCommune": "86211", + "libelleAcheminement": "ROMAGNE", + "nomCommune": "ROMAGNE" }, { - "codePostal": "85390", - "codeCommune": "85014", - "libelleAcheminement": "BAZOGES EN PAREDS", - "nomCommune": "BAZOGES EN PAREDS" + "codePostal": "76450", + "codeCommune": "76083", + "libelleAcheminement": "BERTHEAUVILLE", + "nomCommune": "BERTHEAUVILLE" }, { - "codePostal": "86410", - "codeCommune": "86285", - "libelleAcheminement": "VERRIERES", - "nomCommune": "VERRIERES" + "codePostal": "86400", + "codeCommune": "86220", + "libelleAcheminement": "ST GAUDENT", + "nomCommune": "ST GAUDENT" }, { - "codePostal": "78600", - "codeCommune": "78396", - "libelleAcheminement": "LE MESNIL LE ROI", - "nomCommune": "LE MESNIL LE ROI" + "codePostal": "72270", + "codeCommune": "72195", + "libelleAcheminement": "MEZERAY", + "nomCommune": "MEZERAY" }, { - "codePostal": "70300", - "codeCommune": "70473", - "libelleAcheminement": "ST SAUVEUR", - "nomCommune": "ST SAUVEUR" + "codePostal": "86130", + "codeCommune": "86222", + "libelleAcheminement": "ST GEORGES LES BAILLARGEAUX", + "nomCommune": "ST GEORGES LES BAILLARGEAUX" }, { - "codePostal": "85500", - "codeCommune": "85017", - "libelleAcheminement": "BEAUREPAIRE", - "nomCommune": "BEAUREPAIRE" + "codePostal": "76450", + "codeCommune": "76084", + "libelleAcheminement": "BERTREVILLE", + "nomCommune": "BERTREVILLE" }, { - "codePostal": "86420", - "codeCommune": "86286", - "libelleAcheminement": "VERRUE", - "nomCommune": "VERRUE" + "codePostal": "86330", + "codeCommune": "86225", + "libelleAcheminement": "ST JEAN DE SAUVES", + "nomCommune": "ST JEAN DE SAUVES" }, { - "codePostal": "78490", - "codeCommune": "78398", - "libelleAcheminement": "LES MESNULS", - "nomCommune": "LES MESNULS" + "codePostal": "72230", + "codeCommune": "72200", + "libelleAcheminement": "MONCE EN BELIN", + "nomCommune": "MONCE EN BELIN" }, { - "codePostal": "70210", - "codeCommune": "70476", - "libelleAcheminement": "SAPONCOURT", - "nomCommune": "SAPONCOURT" + "codePostal": "86310", + "codeCommune": "86223", + "libelleAcheminement": "ST GERMAIN", + "nomCommune": "ST GERMAIN" }, { - "codePostal": "85230", - "codeCommune": "85018", - "libelleAcheminement": "BEAUVOIR SUR MER", - "nomCommune": "BEAUVOIR SUR MER" + "codePostal": "76890", + "codeCommune": "76086", + "libelleAcheminement": "BERTRIMONT", + "nomCommune": "BERTRIMONT" }, { - "codePostal": "86260", - "codeCommune": "86288", - "libelleAcheminement": "VICQ SUR GARTEMPE", - "nomCommune": "VICQ SUR GARTEMPE" + "codePostal": "86120", + "codeCommune": "86229", + "libelleAcheminement": "ST LEGER DE MONTBRILLAIS", + "nomCommune": "ST LEGER DE MONTBRILLAIS" }, { - "codePostal": "78470", - "codeCommune": "78406", - "libelleAcheminement": "MILON LA CHAPELLE", - "nomCommune": "MILON LA CHAPELLE" + "codePostal": "72150", + "codeCommune": "72210", + "libelleAcheminement": "MONTREUIL LE HENRI", + "nomCommune": "MONTREUIL LE HENRI" }, { - "codePostal": "70400", - "codeCommune": "70477", - "libelleAcheminement": "SAULNOT", - "nomCommune": "SAULNOT" + "codePostal": "86400", + "codeCommune": "86237", + "libelleAcheminement": "ST PIERRE D EXIDEUIL", + "nomCommune": "ST PIERRE D EXIDEUIL" }, { - "codePostal": "85710", - "codeCommune": "85024", - "libelleAcheminement": "BOIS DE CENE", - "nomCommune": "BOIS DE CENE" + "codePostal": "76450", + "codeCommune": "76091", + "libelleAcheminement": "BEUZEVILLE LA GUERARD", + "nomCommune": "BEUZEVILLE LA GUERARD" }, { - "codePostal": "86150", - "codeCommune": "86289", - "libelleAcheminement": "LE VIGEANT", - "nomCommune": "LE VIGEANT" + "codePostal": "86290", + "codeCommune": "86230", + "libelleAcheminement": "ST LEOMER", + "nomCommune": "ST LEOMER" }, { - "codePostal": "78250", - "codeCommune": "78460", - "libelleAcheminement": "OINVILLE SUR MONTCIENT", - "nomCommune": "OINVILLE SUR MONTCIENT" + "codePostal": "72130", + "codeCommune": "72212", + "libelleAcheminement": "MOULINS LE CARBONNEL", + "nomCommune": "MOULINS LE CARBONNEL" }, { - "codePostal": "70140", - "codeCommune": "70480", - "libelleAcheminement": "SAUVIGNEY LES PESMES", - "nomCommune": "SAUVIGNEY LES PESMES" + "codePostal": "86600", + "codeCommune": "86244", + "libelleAcheminement": "ST SAUVANT", + "nomCommune": "ST SAUVANT" }, { - "codePostal": "85600", - "codeCommune": "85025", - "libelleAcheminement": "LA BOISSIERE DE MONTAIGU", - "nomCommune": "LA BOISSIERE DE MONTAIGU" + "codePostal": "76890", + "codeCommune": "76096", + "libelleAcheminement": "BIVILLE LA BAIGNARDE", + "nomCommune": "BIVILLE LA BAIGNARDE" }, { - "codePostal": "86370", - "codeCommune": "86293", - "libelleAcheminement": "VIVONNE", - "nomCommune": "VIVONNE" + "codePostal": "86300", + "codeCommune": "86233", + "libelleAcheminement": "VALDIVIENNE", + "nomCommune": "VALDIVIENNE" }, { - "codePostal": "78910", - "codeCommune": "78465", - "libelleAcheminement": "ORGERUS", - "nomCommune": "ORGERUS" + "codePostal": "72140", + "codeCommune": "72218", + "libelleAcheminement": "NEUVILLETTE EN CHARNIE", + "nomCommune": "NEUVILLETTE EN CHARNIE" }, { - "codePostal": "70110", - "codeCommune": "70487", - "libelleAcheminement": "SENARGENT MIGNAFANS", - "nomCommune": "SENARGENT MIGNAFANS" + "codePostal": "86400", + "codeCommune": "86247", + "libelleAcheminement": "ST SAVIOL", + "nomCommune": "ST SAVIOL" }, { - "codePostal": "85230", - "codeCommune": "85029", - "libelleAcheminement": "BOUIN", - "nomCommune": "BOUIN" + "codePostal": "76730", + "codeCommune": "76097", + "libelleAcheminement": "BIVILLE LA RIVIERE", + "nomCommune": "BIVILLE LA RIVIERE" }, { - "codePostal": "87700", - "codeCommune": "87001", - "libelleAcheminement": "AIXE SUR VIENNE", - "nomCommune": "AIXE SUR VIENNE" + "codePostal": "86260", + "codeCommune": "86236", + "libelleAcheminement": "ST PIERRE DE MAILLE", + "nomCommune": "ST PIERRE DE MAILLE" }, { - "codePostal": "78910", - "codeCommune": "78474", - "libelleAcheminement": "ORVILLIERS", - "nomCommune": "ORVILLIERS" + "codePostal": "72500", + "codeCommune": "72221", + "libelleAcheminement": "NOGENT SUR LOIR", + "nomCommune": "NOGENT SUR LOIR" }, { - "codePostal": "70440", - "codeCommune": "70489", - "libelleAcheminement": "SERVANCE MIELLIN", - "nomCommune": "SERVANCE MIELLIN" + "codePostal": "86120", + "codeCommune": "86250", + "libelleAcheminement": "SAIX", + "nomCommune": "SAIX" }, { - "codePostal": "85480", - "codeCommune": "85034", - "libelleAcheminement": "BOURNEZEAU", - "nomCommune": "BOURNEZEAU" + "codePostal": "76190", + "codeCommune": "76099", + "libelleAcheminement": "BLACQUEVILLE", + "nomCommune": "BLACQUEVILLE" }, { - "codePostal": "87290", - "codeCommune": "87007", - "libelleAcheminement": "BALLEDENT", - "nomCommune": "BALLEDENT" + "codePostal": "86300", + "codeCommune": "86239", + "libelleAcheminement": "STE RADEGONDE", + "nomCommune": "STE RADEGONDE" }, { - "codePostal": "78300", - "codeCommune": "78498", - "libelleAcheminement": "POISSY", - "nomCommune": "POISSY" + "codePostal": "72430", + "codeCommune": "72223", + "libelleAcheminement": "NOYEN SUR SARTHE", + "nomCommune": "NOYEN SUR SARTHE" }, { - "codePostal": "70130", - "codeCommune": "70491", - "libelleAcheminement": "SEVEUX MOTEY", - "nomCommune": "SEVEUX MOTEY" + "codePostal": "86140", + "codeCommune": "86258", + "libelleAcheminement": "SCORBE CLAIRVAUX", + "nomCommune": "SCORBE CLAIRVAUX" }, { - "codePostal": "85310", - "codeCommune": "85046", - "libelleAcheminement": "LA CHAIZE LE VICOMTE", - "nomCommune": "LA CHAIZE LE VICOMTE" + "codePostal": "76460", + "codeCommune": "76104", + "libelleAcheminement": "BLOSSEVILLE", + "nomCommune": "BLOSSEVILLE" }, { - "codePostal": "87370", - "codeCommune": "87013", - "libelleAcheminement": "BERSAC SUR RIVALIER", - "nomCommune": "BERSAC SUR RIVALIER" + "codePostal": "86400", + "codeCommune": "86255", + "libelleAcheminement": "SAVIGNE", + "nomCommune": "SAVIGNE" }, { - "codePostal": "78590", - "codeCommune": "78518", - "libelleAcheminement": "RENNEMOULIN", - "nomCommune": "RENNEMOULIN" + "codePostal": "72610", + "codeCommune": "72225", + "libelleAcheminement": "OISSEAU LE PETIT", + "nomCommune": "OISSEAU LE PETIT" }, { - "codePostal": "70130", - "codeCommune": "70492", - "libelleAcheminement": "SOING CUBRY CHARENTENAY", - "nomCommune": "SOING CUBRY CHARENTENAY" + "codePostal": "86800", + "codeCommune": "86261", + "libelleAcheminement": "SEVRES ANXAUMONT", + "nomCommune": "SEVRES ANXAUMONT" }, { - "codePostal": "85450", - "codeCommune": "85049", - "libelleAcheminement": "CHAMPAGNE LES MARAIS", - "nomCommune": "CHAMPAGNE LES MARAIS" + "codePostal": "76520", + "codeCommune": "76116", + "libelleAcheminement": "BOOS", + "nomCommune": "BOOS" }, { - "codePostal": "87340", - "codeCommune": "87016", - "libelleAcheminement": "LES BILLANGES", - "nomCommune": "LES BILLANGES" + "codePostal": "86800", + "codeCommune": "86256", + "libelleAcheminement": "SAVIGNY LEVESCAULT", + "nomCommune": "SAVIGNY LEVESCAULT" }, { - "codePostal": "78550", - "codeCommune": "78520", - "libelleAcheminement": "RICHEBOURG", - "nomCommune": "RICHEBOURG" + "codePostal": "72600", + "codeCommune": "72227", + "libelleAcheminement": "PANON", + "nomCommune": "PANON" }, { - "codePostal": "70270", - "codeCommune": "70498", - "libelleAcheminement": "TERNUAY MELAY ET ST HILAIRE", - "nomCommune": "TERNUAY MELAY ET ST HILAIRE" + "codePostal": "86320", + "codeCommune": "86262", + "libelleAcheminement": "SILLARS", + "nomCommune": "SILLARS" }, { - "codePostal": "85540", - "codeCommune": "85050", - "libelleAcheminement": "LE CHAMP ST PERE", - "nomCommune": "LE CHAMP ST PERE" + "codePostal": "76110", + "codeCommune": "76118", + "libelleAcheminement": "BORNAMBUSC", + "nomCommune": "BORNAMBUSC" }, { - "codePostal": "87200", - "codeCommune": "87030", - "libelleAcheminement": "CHAILLAC SUR VIENNE", - "nomCommune": "CHAILLAC SUR VIENNE" + "codePostal": "86230", + "codeCommune": "86265", + "libelleAcheminement": "SOSSAIS", + "nomCommune": "SOSSAIS" }, { - "codePostal": "78210", - "codeCommune": "78545", - "libelleAcheminement": "ST CYR L ECOLE", - "nomCommune": "ST CYR L ECOLE" + "codePostal": "72350", + "codeCommune": "72239", + "libelleAcheminement": "POILLE SUR VEGRE", + "nomCommune": "POILLE SUR VEGRE" }, { - "codePostal": "70230", - "codeCommune": "70500", - "libelleAcheminement": "THIEFFRANS", - "nomCommune": "THIEFFRANS" + "codePostal": "86160", + "codeCommune": "86264", + "libelleAcheminement": "SOMMIERES DU CLAIN", + "nomCommune": "SOMMIERES DU CLAIN" }, { - "codePostal": "85120", - "codeCommune": "85053", - "libelleAcheminement": "LA CHAPELLE AUX LYS", - "nomCommune": "LA CHAPELLE AUX LYS" + "codePostal": "76450", + "codeCommune": "76128", + "libelleAcheminement": "BOSVILLE", + "nomCommune": "BOSVILLE" }, { - "codePostal": "87500", - "codeCommune": "87031", - "libelleAcheminement": "LE CHALARD", - "nomCommune": "LE CHALARD" + "codePostal": "86110", + "codeCommune": "86271", + "libelleAcheminement": "THURAGEAU", + "nomCommune": "THURAGEAU" }, { - "codePostal": "78112", - "codeCommune": "78551", - "libelleAcheminement": "ST GERMAIN EN LAYE", - "nomCommune": "ST GERMAIN EN LAYE" + "codePostal": "72450", + "codeCommune": "72241", + "libelleAcheminement": "MONTFORT LE GESNOIS", + "nomCommune": "MONTFORT LE GESNOIS" }, { - "codePostal": "70150", - "codeCommune": "70509", - "libelleAcheminement": "TROMAREY", - "nomCommune": "TROMAREY" + "codePostal": "86170", + "codeCommune": "86281", + "libelleAcheminement": "ST MARTIN LA PALLU", + "nomCommune": "ST MARTIN LA PALLU" }, { - "codePostal": "85670", - "codeCommune": "85055", - "libelleAcheminement": "LA CHAPELLE PALLUAU", - "nomCommune": "LA CHAPELLE PALLUAU" + "codePostal": "76270", + "codeCommune": "76130", + "libelleAcheminement": "BOUELLES", + "nomCommune": "BOUELLES" }, { - "codePostal": "87230", - "codeCommune": "87032", - "libelleAcheminement": "CHALUS", - "nomCommune": "CHALUS" + "codePostal": "86340", + "codeCommune": "86284", + "libelleAcheminement": "VERNON", + "nomCommune": "VERNON" }, { - "codePostal": "78980", - "codeCommune": "78559", - "libelleAcheminement": "ST ILLIERS LE BOIS", - "nomCommune": "ST ILLIERS LE BOIS" + "codePostal": "72110", + "codeCommune": "72246", + "libelleAcheminement": "PREVELLES", + "nomCommune": "PREVELLES" }, { - "codePostal": "70320", - "codeCommune": "70512", - "libelleAcheminement": "LA VAIVRE", - "nomCommune": "LA VAIVRE" + "codePostal": "86420", + "codeCommune": "86286", + "libelleAcheminement": "VERRUE", + "nomCommune": "VERRUE" }, { - "codePostal": "85320", - "codeCommune": "85061", - "libelleAcheminement": "CHATEAU GUIBERT", - "nomCommune": "CHATEAU GUIBERT" + "codePostal": "76690", + "codeCommune": "76152", + "libelleAcheminement": "CAILLY", + "nomCommune": "CAILLY" }, { - "codePostal": "87400", - "codeCommune": "87042", - "libelleAcheminement": "LE CHATENET EN DOGNON", - "nomCommune": "LE CHATENET EN DOGNON" + "codePostal": "86410", + "codeCommune": "86285", + "libelleAcheminement": "VERRIERES", + "nomCommune": "VERRIERES" }, { - "codePostal": "78610", - "codeCommune": "78562", - "libelleAcheminement": "ST LEGER EN YVELINES", - "nomCommune": "ST LEGER EN YVELINES" + "codePostal": "72550", + "codeCommune": "72249", + "libelleAcheminement": "LA QUINTE", + "nomCommune": "LA QUINTE" }, { - "codePostal": "70000", - "codeCommune": "70517", - "libelleAcheminement": "VALLEROIS LORIOZ", - "nomCommune": "VALLEROIS LORIOZ" + "codePostal": "86370", + "codeCommune": "86293", + "libelleAcheminement": "VIVONNE", + "nomCommune": "VIVONNE" }, { - "codePostal": "85710", - "codeCommune": "85062", - "libelleAcheminement": "CHATEAUNEUF", - "nomCommune": "CHATEAUNEUF" + "codePostal": "76450", + "codeCommune": "76156", + "libelleAcheminement": "CANOUVILLE", + "nomCommune": "CANOUVILLE" }, { - "codePostal": "87270", - "codeCommune": "87050", - "libelleAcheminement": "COUZEIX", - "nomCommune": "COUZEIX" + "codePostal": "87370", + "codeCommune": "87013", + "libelleAcheminement": "BERSAC SUR RIVALIER", + "nomCommune": "BERSAC SUR RIVALIER" }, { - "codePostal": "78520", - "codeCommune": "78567", - "libelleAcheminement": "ST MARTIN LA GARENNE", - "nomCommune": "ST MARTIN LA GARENNE" + "codePostal": "72260", + "codeCommune": "72251", + "libelleAcheminement": "RENE", + "nomCommune": "RENE" }, { - "codePostal": "70240", - "codeCommune": "70534", - "libelleAcheminement": "VELLEFRIE", - "nomCommune": "VELLEFRIE" + "codePostal": "86190", + "codeCommune": "86294", + "libelleAcheminement": "VOUILLE", + "nomCommune": "VOUILLE" }, { - "codePostal": "85260", - "codeCommune": "85072", - "libelleAcheminement": "LA COPECHAGNIERE", - "nomCommune": "LA COPECHAGNIERE" + "codePostal": "76380", + "codeCommune": "76157", + "libelleAcheminement": "CANTELEU", + "nomCommune": "CANTELEU" }, { - "codePostal": "87160", - "codeCommune": "87053", - "libelleAcheminement": "CROMAC", - "nomCommune": "CROMAC" + "codePostal": "87300", + "codeCommune": "87022", + "libelleAcheminement": "BREUILAUFA", + "nomCommune": "BREUILAUFA" }, { - "codePostal": "78470", - "codeCommune": "78575", - "libelleAcheminement": "ST REMY LES CHEVREUSE", - "nomCommune": "ST REMY LES CHEVREUSE" + "codePostal": "72510", + "codeCommune": "72252", + "libelleAcheminement": "REQUEIL", + "nomCommune": "REQUEIL" }, { - "codePostal": "70130", - "codeCommune": "70539", - "libelleAcheminement": "VELLEXON QUEUTREY ET VAUDEY", - "nomCommune": "VELLEXON QUEUTREY ET VAUDEY" + "codePostal": "86400", + "codeCommune": "86295", + "libelleAcheminement": "VOULEME", + "nomCommune": "VOULEME" }, { - "codePostal": "85140", - "codeCommune": "85084", - "libelleAcheminement": "ESSARTS EN BOCAGE", - "nomCommune": "ESSARTS EN BOCAGE" + "codePostal": "76450", + "codeCommune": "76159", + "libelleAcheminement": "CANY BARVILLE", + "nomCommune": "CANY BARVILLE" }, { - "codePostal": "87190", - "codeCommune": "87057", - "libelleAcheminement": "DOMPIERRE LES EGLISES", - "nomCommune": "DOMPIERRE LES EGLISES" + "codePostal": "87140", + "codeCommune": "87023", + "libelleAcheminement": "LE BUIS", + "nomCommune": "LE BUIS" }, { - "codePostal": "78120", - "codeCommune": "78601", - "libelleAcheminement": "SONCHAMP", - "nomCommune": "SONCHAMP" + "codePostal": "72210", + "codeCommune": "72253", + "libelleAcheminement": "ROEZE SUR SARTHE", + "nomCommune": "ROEZE SUR SARTHE" }, { - "codePostal": "70300", - "codeCommune": "70541", - "libelleAcheminement": "VELORCEY", - "nomCommune": "VELORCEY" + "codePostal": "87290", + "codeCommune": "87007", + "libelleAcheminement": "BALLEDENT", + "nomCommune": "BALLEDENT" }, { - "codePostal": "85670", - "codeCommune": "85086", - "libelleAcheminement": "FALLERON", - "nomCommune": "FALLERON" + "codePostal": "76930", + "codeCommune": "76167", + "libelleAcheminement": "CAUVILLE SUR MER", + "nomCommune": "CAUVILLE SUR MER" }, { - "codePostal": "87190", - "codeCommune": "87061", - "libelleAcheminement": "DROUX", - "nomCommune": "DROUX" + "codePostal": "87800", + "codeCommune": "87025", + "libelleAcheminement": "BURGNAC", + "nomCommune": "BURGNAC" }, { - "codePostal": "78740", - "codeCommune": "78638", - "libelleAcheminement": "VAUX SUR SEINE", - "nomCommune": "VAUX SUR SEINE" + "codePostal": "72140", + "codeCommune": "72255", + "libelleAcheminement": "ROUESSE VASSE", + "nomCommune": "ROUESSE VASSE" }, { - "codePostal": "70180", - "codeCommune": "70546", - "libelleAcheminement": "VEREUX", - "nomCommune": "VEREUX" + "codePostal": "87250", + "codeCommune": "87014", + "libelleAcheminement": "BESSINES SUR GARTEMPE", + "nomCommune": "BESSINES SUR GARTEMPE" }, { - "codePostal": "85700", - "codeCommune": "85090", - "libelleAcheminement": "SEVREMONT", - "nomCommune": "SEVREMONT" + "codePostal": "76430", + "codeCommune": "76169", + "libelleAcheminement": "LA CERLANGUE", + "nomCommune": "LA CERLANGUE" }, { - "codePostal": "87220", - "codeCommune": "87063", - "libelleAcheminement": "EYJEAUX", - "nomCommune": "EYJEAUX" + "codePostal": "87320", + "codeCommune": "87028", + "libelleAcheminement": "VAL D OIRE ET GARTEMPE", + "nomCommune": "VAL D OIRE ET GARTEMPE" }, { - "codePostal": "78540", - "codeCommune": "78643", - "libelleAcheminement": "VERNOUILLET", - "nomCommune": "VERNOUILLET" + "codePostal": "72310", + "codeCommune": "72262", + "libelleAcheminement": "LOIR EN VALLEE", + "nomCommune": "LOIR EN VALLEE" }, { - "codePostal": "70110", - "codeCommune": "70561", - "libelleAcheminement": "VILLERSEXEL", - "nomCommune": "VILLERSEXEL" + "codePostal": "87110", + "codeCommune": "87021", + "libelleAcheminement": "BOSMIE L AIGUILLE", + "nomCommune": "BOSMIE L AIGUILLE" }, { - "codePostal": "85710", - "codeCommune": "85096", - "libelleAcheminement": "LA GARNACHE", - "nomCommune": "LA GARNACHE" + "codePostal": "76780", + "codeCommune": "76171", + "libelleAcheminement": "LA CHAPELLE ST OUEN", + "nomCommune": "LA CHAPELLE ST OUEN" }, { - "codePostal": "87120", - "codeCommune": "87064", - "libelleAcheminement": "EYMOUTIERS", - "nomCommune": "EYMOUTIERS" + "codePostal": "87210", + "codeCommune": "87052", + "libelleAcheminement": "LA CROIX SUR GARTEMPE", + "nomCommune": "LA CROIX SUR GARTEMPE" }, { - "codePostal": "78125", - "codeCommune": "78655", - "libelleAcheminement": "VIEILLE EGLISE EN YVELINES", - "nomCommune": "VIEILLE EGLISE EN YVELINES" + "codePostal": "72340", + "codeCommune": "72262", + "libelleAcheminement": "LOIR EN VALLEE", + "nomCommune": "LOIR EN VALLEE" }, { - "codePostal": "70310", - "codeCommune": "70573", - "libelleAcheminement": "LA VOIVRE", - "nomCommune": "LA VOIVRE" + "codePostal": "87330", + "codeCommune": "87028", + "libelleAcheminement": "VAL D OIRE ET GARTEMPE", + "nomCommune": "VAL D OIRE ET GARTEMPE" }, { - "codePostal": "85130", - "codeCommune": "85097", - "libelleAcheminement": "LA GAUBRETIERE", - "nomCommune": "LA GAUBRETIERE" + "codePostal": "76590", + "codeCommune": "76173", + "libelleAcheminement": "LA CHAUSSEE", + "nomCommune": "LA CHAUSSEE" }, { - "codePostal": "87250", - "codeCommune": "87068", - "libelleAcheminement": "FROMENTAL", - "nomCommune": "FROMENTAL" + "codePostal": "87120", + "codeCommune": "87058", + "libelleAcheminement": "DOMPS", + "nomCommune": "DOMPS" }, { - "codePostal": "78450", - "codeCommune": "78674", - "libelleAcheminement": "VILLEPREUX", - "nomCommune": "VILLEPREUX" + "codePostal": "72540", + "codeCommune": "72274", + "libelleAcheminement": "ST CHRISTOPHE EN CHAMPAGNE", + "nomCommune": "ST CHRISTOPHE EN CHAMPAGNE" }, { - "codePostal": "70190", - "codeCommune": "70575", - "libelleAcheminement": "VORAY SUR L OGNON", - "nomCommune": "VORAY SUR L OGNON" + "codePostal": "87500", + "codeCommune": "87031", + "libelleAcheminement": "LE CHALARD", + "nomCommune": "LE CHALARD" }, { - "codePostal": "85540", - "codeCommune": "85101", - "libelleAcheminement": "LE GIVRE", - "nomCommune": "LE GIVRE" + "codePostal": "76690", + "codeCommune": "76177", + "libelleAcheminement": "CLAVILLE MOTTEVILLE", + "nomCommune": "CLAVILLE MOTTEVILLE" }, { - "codePostal": "87400", - "codeCommune": "87070", - "libelleAcheminement": "LA GENEYTOUSE", - "nomCommune": "LA GENEYTOUSE" + "codePostal": "87230", + "codeCommune": "87060", + "libelleAcheminement": "DOURNAZAC", + "nomCommune": "DOURNAZAC" }, { - "codePostal": "78930", - "codeCommune": "78677", - "libelleAcheminement": "VILLETTE", - "nomCommune": "VILLETTE" + "codePostal": "72110", + "codeCommune": "72276", + "libelleAcheminement": "ST COSME EN VAIRAIS", + "nomCommune": "ST COSME EN VAIRAIS" }, { - "codePostal": "70500", - "codeCommune": "70576", - "libelleAcheminement": "VOUGECOURT", - "nomCommune": "VOUGECOURT" + "codePostal": "87150", + "codeCommune": "87034", + "libelleAcheminement": "CHAMPAGNAC LA RIVIERE", + "nomCommune": "CHAMPAGNAC LA RIVIERE" }, { - "codePostal": "85680", - "codeCommune": "85106", - "libelleAcheminement": "LA GUERINIERE", - "nomCommune": "LA GUERINIERE" + "codePostal": "76410", + "codeCommune": "76178", + "libelleAcheminement": "CLEON", + "nomCommune": "CLEON" }, { - "codePostal": "87340", - "codeCommune": "87079", - "libelleAcheminement": "LA JONCHERE ST MAURICE", - "nomCommune": "LA JONCHERE ST MAURICE" + "codePostal": "87190", + "codeCommune": "87061", + "libelleAcheminement": "DROUX", + "nomCommune": "DROUX" }, { - "codePostal": "78770", - "codeCommune": "78681", - "libelleAcheminement": "VILLIERS LE MAHIEU", - "nomCommune": "VILLIERS LE MAHIEU" + "codePostal": "72700", + "codeCommune": "72280", + "libelleAcheminement": "ST GEORGES DU BOIS", + "nomCommune": "ST GEORGES DU BOIS" }, { - "codePostal": "70230", - "codeCommune": "70583", - "libelleAcheminement": "VY LES FILAIN", - "nomCommune": "VY LES FILAIN" + "codePostal": "87440", + "codeCommune": "87037", + "libelleAcheminement": "LA CHAPELLE MONTBRANDEIX", + "nomCommune": "LA CHAPELLE MONTBRANDEIX" }, { - "codePostal": "85340", - "codeCommune": "85112", - "libelleAcheminement": "L ILE D OLONNE", - "nomCommune": "L ILE D OLONNE" + "codePostal": "76640", + "codeCommune": "76182", + "libelleAcheminement": "CLIPONVILLE", + "nomCommune": "CLIPONVILLE" }, { - "codePostal": "87380", - "codeCommune": "87095", - "libelleAcheminement": "MEUZAC", - "nomCommune": "MEUZAC" + "codePostal": "87120", + "codeCommune": "87064", + "libelleAcheminement": "EYMOUTIERS", + "nomCommune": "EYMOUTIERS" }, { - "codePostal": "79200", - "codeCommune": "79002", - "libelleAcheminement": "ADILLY", - "nomCommune": "ADILLY" + "codePostal": "72130", + "codeCommune": "72282", + "libelleAcheminement": "ST GEORGES LE GAULTIER", + "nomCommune": "ST GEORGES LE GAULTIER" }, { - "codePostal": "71290", - "codeCommune": "71001", - "libelleAcheminement": "L ABERGEMENT DE CUISERY", - "nomCommune": "L ABERGEMENT DE CUISERY" + "codePostal": "87380", + "codeCommune": "87039", + "libelleAcheminement": "CHATEAU CHERVIX", + "nomCommune": "CHATEAU CHERVIX" }, { - "codePostal": "85520", - "codeCommune": "85114", - "libelleAcheminement": "JARD SUR MER", - "nomCommune": "JARD SUR MER" + "codePostal": "76540", + "codeCommune": "76195", + "libelleAcheminement": "CRIQUETOT LE MAUCONDUIT", + "nomCommune": "CRIQUETOT LE MAUCONDUIT" }, { "codePostal": "87400", - "codeCommune": "87099", - "libelleAcheminement": "MOISSANNES", - "nomCommune": "MOISSANNES" + "codeCommune": "87070", + "libelleAcheminement": "LA GENEYTOUSE", + "nomCommune": "LA GENEYTOUSE" }, { - "codePostal": "79600", - "codeCommune": "79005", - "libelleAcheminement": "AIRVAULT", - "nomCommune": "AIRVAULT" + "codePostal": "72800", + "codeCommune": "72283", + "libelleAcheminement": "ST GERMAIN D ARCE", + "nomCommune": "ST GERMAIN D ARCE" }, { - "codePostal": "71510", - "codeCommune": "71005", - "libelleAcheminement": "ALUZE", - "nomCommune": "ALUZE" + "codePostal": "87130", + "codeCommune": "87040", + "libelleAcheminement": "CHATEAUNEUF LA FORET", + "nomCommune": "CHATEAUNEUF LA FORET" }, { - "codePostal": "85240", - "codeCommune": "85136", - "libelleAcheminement": "MARILLET", - "nomCommune": "MARILLET" + "codePostal": "76390", + "codeCommune": "76199", + "libelleAcheminement": "CRIQUIERS", + "nomCommune": "CRIQUIERS" }, { - "codePostal": "87510", - "codeCommune": "87107", - "libelleAcheminement": "NIEUL", - "nomCommune": "NIEUL" + "codePostal": "87160", + "codeCommune": "87074", + "libelleAcheminement": "LES GRANDS CHEZEAUX", + "nomCommune": "LES GRANDS CHEZEAUX" }, { - "codePostal": "79150", - "codeCommune": "79013", - "libelleAcheminement": "ARGENTONNAY", - "nomCommune": "ARGENTONNAY" + "codePostal": "72440", + "codeCommune": "72298", + "libelleAcheminement": "ST MARS DE LOCQUENAY", + "nomCommune": "ST MARS DE LOCQUENAY" }, { - "codePostal": "71800", - "codeCommune": "71006", - "libelleAcheminement": "AMANZE", - "nomCommune": "AMANZE" + "codePostal": "87460", + "codeCommune": "87043", + "libelleAcheminement": "CHEISSOUX", + "nomCommune": "CHEISSOUX" }, { - "codePostal": "85420", - "codeCommune": "85139", - "libelleAcheminement": "LE MAZEAU", - "nomCommune": "LE MAZEAU" + "codePostal": "76780", + "codeCommune": "76201", + "libelleAcheminement": "CROISY SUR ANDELLE", + "nomCommune": "CROISY SUR ANDELLE" }, { - "codePostal": "87120", - "codeCommune": "87123", - "libelleAcheminement": "REMPNAT", - "nomCommune": "REMPNAT" + "codePostal": "87100", + "codeCommune": "87085", + "libelleAcheminement": "LIMOGES", + "nomCommune": "LIMOGES" }, { - "codePostal": "79150", - "codeCommune": "79013", - "libelleAcheminement": "ARGENTONNAY", - "nomCommune": "ARGENTONNAY" + "codePostal": "72610", + "codeCommune": "72308", + "libelleAcheminement": "ST PATERNE LE CHEVAIN", + "nomCommune": "ST PATERNE LE CHEVAIN" }, { - "codePostal": "71110", - "codeCommune": "71011", - "libelleAcheminement": "ANZY LE DUC", - "nomCommune": "ANZY LE DUC" + "codePostal": "87310", + "codeCommune": "87046", + "libelleAcheminement": "COGNAC LA FORET", + "nomCommune": "COGNAC LA FORET" }, { - "codePostal": "85700", - "codeCommune": "85140", - "libelleAcheminement": "LA MEILLERAIE TILLAY", - "nomCommune": "LA MEILLERAIE TILLAY" + "codePostal": "76190", + "codeCommune": "76203", + "libelleAcheminement": "CROIX MARE", + "nomCommune": "CROIX MARE" }, { - "codePostal": "87570", - "codeCommune": "87125", - "libelleAcheminement": "RILHAC RANCON", - "nomCommune": "RILHAC RANCON" + "codePostal": "87100", + "codeCommune": "87085", + "libelleAcheminement": "LIMOGES", + "nomCommune": "LIMOGES" }, { - "codePostal": "79420", - "codeCommune": "79029", - "libelleAcheminement": "BEAULIEU SOUS PARTHENAY", - "nomCommune": "BEAULIEU SOUS PARTHENAY" + "codePostal": "72610", + "codeCommune": "72308", + "libelleAcheminement": "ST PATERNE LE CHEVAIN", + "nomCommune": "ST PATERNE LE CHEVAIN" }, { - "codePostal": "71110", - "codeCommune": "71012", - "libelleAcheminement": "ARTAIX", - "nomCommune": "ARTAIX" + "codePostal": "87140", + "codeCommune": "87047", + "libelleAcheminement": "COMPREIGNAC", + "nomCommune": "COMPREIGNAC" }, { - "codePostal": "85600", - "codeCommune": "85146", - "libelleAcheminement": "MONTAIGU VENDEE", - "nomCommune": "MONTAIGU VENDEE" + "codePostal": "76280", + "codeCommune": "76206", + "libelleAcheminement": "CUVERVILLE", + "nomCommune": "CUVERVILLE" }, { - "codePostal": "87800", - "codeCommune": "87127", - "libelleAcheminement": "LA ROCHE L ABEILLE", - "nomCommune": "LA ROCHE L ABEILLE" + "codePostal": "87190", + "codeCommune": "87089", + "libelleAcheminement": "MAGNAC LAVAL", + "nomCommune": "MAGNAC LAVAL" }, { - "codePostal": "79360", - "codeCommune": "79031", - "libelleAcheminement": "BEAUVOIR SUR NIORT", - "nomCommune": "BEAUVOIR SUR NIORT" + "codePostal": "72130", + "codeCommune": "72309", + "libelleAcheminement": "ST PAUL LE GAULTIER", + "nomCommune": "ST PAUL LE GAULTIER" }, { - "codePostal": "71120", - "codeCommune": "71021", - "libelleAcheminement": "BARON", - "nomCommune": "BARON" + "codePostal": "87160", + "codeCommune": "87053", + "libelleAcheminement": "CROMAC", + "nomCommune": "CROMAC" }, { - "codePostal": "85700", - "codeCommune": "85147", - "libelleAcheminement": "MONTOURNAIS", - "nomCommune": "MONTOURNAIS" + "codePostal": "76160", + "codeCommune": "76212", + "libelleAcheminement": "DARNETAL", + "nomCommune": "DARNETAL" }, { - "codePostal": "87400", - "codeCommune": "87129", - "libelleAcheminement": "ROYERES", - "nomCommune": "ROYERES" + "codePostal": "87800", + "codeCommune": "87094", + "libelleAcheminement": "MEILHAC", + "nomCommune": "MEILHAC" }, { - "codePostal": "79360", - "codeCommune": "79031", - "libelleAcheminement": "BEAUVOIR SUR NIORT", - "nomCommune": "BEAUVOIR SUR NIORT" + "codePostal": "72500", + "codeCommune": "72311", + "libelleAcheminement": "ST PIERRE DE CHEVILLE", + "nomCommune": "ST PIERRE DE CHEVILLE" }, { - "codePostal": "71220", - "codeCommune": "71025", - "libelleAcheminement": "BEAUBERY", - "nomCommune": "BEAUBERY" + "codePostal": "87210", + "codeCommune": "87056", + "libelleAcheminement": "DINSAC", + "nomCommune": "DINSAC" }, { - "codePostal": "85290", - "codeCommune": "85151", - "libelleAcheminement": "MORTAGNE SUR SEVRE", - "nomCommune": "MORTAGNE SUR SEVRE" + "codePostal": "76110", + "codeCommune": "76213", + "libelleAcheminement": "DAUBEUF SERVILLE", + "nomCommune": "DAUBEUF SERVILLE" }, { - "codePostal": "87310", - "codeCommune": "87141", - "libelleAcheminement": "ST CYR", - "nomCommune": "ST CYR" + "codePostal": "87130", + "codeCommune": "87105", + "libelleAcheminement": "NEUVIC ENTIER", + "nomCommune": "NEUVIC ENTIER" }, { - "codePostal": "79210", - "codeCommune": "79046", - "libelleAcheminement": "LE BOURDET", - "nomCommune": "LE BOURDET" + "codePostal": "72600", + "codeCommune": "72313", + "libelleAcheminement": "ST PIERRE DES ORMES", + "nomCommune": "ST PIERRE DES ORMES" }, { - "codePostal": "71240", - "codeCommune": "71026", - "libelleAcheminement": "BEAUMONT SUR GROSNE", - "nomCommune": "BEAUMONT SUR GROSNE" + "codePostal": "87210", + "codeCommune": "87059", + "libelleAcheminement": "LE DORAT", + "nomCommune": "LE DORAT" }, { - "codePostal": "85310", - "codeCommune": "85160", - "libelleAcheminement": "NESMY", - "nomCommune": "NESMY" + "codePostal": "76590", + "codeCommune": "76214", + "libelleAcheminement": "DENESTANVILLE", + "nomCommune": "DENESTANVILLE" }, { - "codePostal": "87260", - "codeCommune": "87148", - "libelleAcheminement": "ST HILAIRE BONNEVAL", - "nomCommune": "ST HILAIRE BONNEVAL" + "codePostal": "87800", + "codeCommune": "87106", + "libelleAcheminement": "NEXON", + "nomCommune": "NEXON" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "72600", + "codeCommune": "72316", + "libelleAcheminement": "ST REMY DES MONTS", + "nomCommune": "ST REMY DES MONTS" }, { - "codePostal": "71270", - "codeCommune": "71029", - "libelleAcheminement": "BELLEVESVRE", - "nomCommune": "BELLEVESVRE" + "codePostal": "87220", + "codeCommune": "87063", + "libelleAcheminement": "EYJEAUX", + "nomCommune": "EYJEAUX" }, { - "codePostal": "85330", - "codeCommune": "85163", - "libelleAcheminement": "NOIRMOUTIER EN L ILE", - "nomCommune": "NOIRMOUTIER EN L ILE" + "codePostal": "76370", + "codeCommune": "76217", + "libelleAcheminement": "DIEPPE", + "nomCommune": "DIEPPE" }, { - "codePostal": "87800", - "codeCommune": "87150", - "libelleAcheminement": "ST HILAIRE LES PLACES", - "nomCommune": "ST HILAIRE LES PLACES" + "codePostal": "87210", + "codeCommune": "87109", + "libelleAcheminement": "ORADOUR ST GENEST", + "nomCommune": "ORADOUR ST GENEST" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "72460", + "codeCommune": "72329", + "libelleAcheminement": "SAVIGNE L EVEQUE", + "nomCommune": "SAVIGNE L EVEQUE" }, { - "codePostal": "71460", - "codeCommune": "71037", - "libelleAcheminement": "BISSY SUR FLEY", - "nomCommune": "BISSY SUR FLEY" + "codePostal": "87220", + "codeCommune": "87065", + "libelleAcheminement": "FEYTIAT", + "nomCommune": "FEYTIAT" }, { - "codePostal": "85320", - "codeCommune": "85175", - "libelleAcheminement": "LES PINEAUX", - "nomCommune": "LES PINEAUX" + "codePostal": "76370", + "codeCommune": "76217", + "libelleAcheminement": "DIEPPE", + "nomCommune": "DIEPPE" }, { - "codePostal": "87590", - "codeCommune": "87156", - "libelleAcheminement": "ST JUST LE MARTEL", - "nomCommune": "ST JUST LE MARTEL" + "codePostal": "87520", + "codeCommune": "87110", + "libelleAcheminement": "ORADOUR SUR GLANE", + "nomCommune": "ORADOUR SUR GLANE" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "72800", + "codeCommune": "72330", + "libelleAcheminement": "SAVIGNE SOUS LE LUDE", + "nomCommune": "SAVIGNE SOUS LE LUDE" }, { - "codePostal": "71330", - "codeCommune": "71045", - "libelleAcheminement": "BOUHANS", - "nomCommune": "BOUHANS" + "codePostal": "87250", + "codeCommune": "87067", + "libelleAcheminement": "FOLLES", + "nomCommune": "FOLLES" }, { - "codePostal": "85200", - "codeCommune": "85176", - "libelleAcheminement": "PISSOTTE", - "nomCommune": "PISSOTTE" + "codePostal": "76560", + "codeCommune": "76219", + "libelleAcheminement": "DOUDEVILLE", + "nomCommune": "DOUDEVILLE" }, { - "codePostal": "87420", - "codeCommune": "87162", - "libelleAcheminement": "STE MARIE DE VAUX", - "nomCommune": "STE MARIE DE VAUX" + "codePostal": "87230", + "codeCommune": "87112", + "libelleAcheminement": "PAGEAS", + "nomCommune": "PAGEAS" }, { - "codePostal": "79140", - "codeCommune": "79050", - "libelleAcheminement": "BRETIGNOLLES", - "nomCommune": "BRETIGNOLLES" + "codePostal": "72130", + "codeCommune": "72337", + "libelleAcheminement": "SOUGE LE GANELON", + "nomCommune": "SOUGE LE GANELON" }, { - "codePostal": "71140", - "codeCommune": "71047", - "libelleAcheminement": "BOURBON LANCY", - "nomCommune": "BOURBON LANCY" + "codePostal": "87500", + "codeCommune": "87071", + "libelleAcheminement": "GLANDON", + "nomCommune": "GLANDON" }, { - "codePostal": "85770", - "codeCommune": "85177", - "libelleAcheminement": "LES VELLUIRE SUR VENDEE", - "nomCommune": "LES VELLUIRE SUR VENDEE" + "codePostal": "76480", + "codeCommune": "76222", + "libelleAcheminement": "DUCLAIR", + "nomCommune": "DUCLAIR" }, { - "codePostal": "87440", - "codeCommune": "87168", - "libelleAcheminement": "ST MATHIEU", - "nomCommune": "ST MATHIEU" + "codePostal": "87410", + "codeCommune": "87113", + "libelleAcheminement": "LE PALAIS SUR VIENNE", + "nomCommune": "LE PALAIS SUR VIENNE" }, { - "codePostal": "79170", - "codeCommune": "79055", - "libelleAcheminement": "BRIEUIL SUR CHIZE", - "nomCommune": "BRIEUIL SUR CHIZE" + "codePostal": "72380", + "codeCommune": "72338", + "libelleAcheminement": "SOUILLE", + "nomCommune": "SOUILLE" }, { - "codePostal": "71350", - "codeCommune": "71054", - "libelleAcheminement": "BRAGNY SUR SAONE", - "nomCommune": "BRAGNY SUR SAONE" + "codePostal": "87370", + "codeCommune": "87076", + "libelleAcheminement": "JABREILLES LES BORDES", + "nomCommune": "JABREILLES LES BORDES" }, { - "codePostal": "85570", - "codeCommune": "85181", - "libelleAcheminement": "POUILLE", - "nomCommune": "POUILLE" + "codePostal": "76190", + "codeCommune": "76223", + "libelleAcheminement": "ECALLES ALIX", + "nomCommune": "ECALLES ALIX" }, { - "codePostal": "87800", - "codeCommune": "87169", - "libelleAcheminement": "ST MAURICE LES BROUSSES", - "nomCommune": "ST MAURICE LES BROUSSES" + "codePostal": "87350", + "codeCommune": "87114", + "libelleAcheminement": "PANAZOL", + "nomCommune": "PANAZOL" }, { - "codePostal": "79370", - "codeCommune": "79061", - "libelleAcheminement": "CELLES SUR BELLE", - "nomCommune": "CELLES SUR BELLE" + "codePostal": "72210", + "codeCommune": "72346", + "libelleAcheminement": "LA SUZE SUR SARTHE", + "nomCommune": "LA SUZE SUR SARTHE" }, { - "codePostal": "71670", - "codeCommune": "71059", - "libelleAcheminement": "LE BREUIL", - "nomCommune": "LE BREUIL" + "codePostal": "87500", + "codeCommune": "87082", + "libelleAcheminement": "LADIGNAC LE LONG", + "nomCommune": "LADIGNAC LE LONG" }, { - "codePostal": "85700", - "codeCommune": "85182", - "libelleAcheminement": "POUZAUGES", - "nomCommune": "POUZAUGES" + "codePostal": "76780", + "codeCommune": "76230", + "libelleAcheminement": "ELBEUF SUR ANDELLE", + "nomCommune": "ELBEUF SUR ANDELLE" }, { - "codePostal": "87800", - "codeCommune": "87176", - "libelleAcheminement": "ST PRIEST LIGOURE", - "nomCommune": "ST PRIEST LIGOURE" + "codePostal": "87380", + "codeCommune": "87120", + "libelleAcheminement": "LA PORCHERIE", + "nomCommune": "LA PORCHERIE" }, { - "codePostal": "79290", - "codeCommune": "79063", - "libelleAcheminement": "VAL EN VIGNES", - "nomCommune": "VAL EN VIGNES" + "codePostal": "72290", + "codeCommune": "72349", + "libelleAcheminement": "TEILLE", + "nomCommune": "TEILLE" }, { - "codePostal": "71250", - "codeCommune": "71065", - "libelleAcheminement": "BUFFIERES", - "nomCommune": "BUFFIERES" + "codePostal": "87370", + "codeCommune": "87083", + "libelleAcheminement": "LAURIERE", + "nomCommune": "LAURIERE" }, { - "codePostal": "85700", - "codeCommune": "85187", - "libelleAcheminement": "REAUMUR", - "nomCommune": "REAUMUR" + "codePostal": "76570", + "codeCommune": "76234", + "libelleAcheminement": "EMANVILLE", + "nomCommune": "EMANVILLE" }, { - "codePostal": "87700", - "codeCommune": "87177", - "libelleAcheminement": "ST PRIEST SOUS AIXE", - "nomCommune": "ST PRIEST SOUS AIXE" + "codePostal": "87120", + "codeCommune": "87132", + "libelleAcheminement": "ST AMAND LE PETIT", + "nomCommune": "ST AMAND LE PETIT" }, { - "codePostal": "79320", - "codeCommune": "79069", - "libelleAcheminement": "CHANTELOUP", - "nomCommune": "CHANTELOUP" + "codePostal": "72800", + "codeCommune": "72357", + "libelleAcheminement": "THOREE LES PINS", + "nomCommune": "THOREE LES PINS" }, { - "codePostal": "71260", - "codeCommune": "71066", - "libelleAcheminement": "BURGY", - "nomCommune": "BURGY" + "codePostal": "87000", + "codeCommune": "87085", + "libelleAcheminement": "LIMOGES", + "nomCommune": "LIMOGES" }, { - "codePostal": "85320", - "codeCommune": "85193", - "libelleAcheminement": "ROSNAY", - "nomCommune": "ROSNAY" + "codePostal": "76640", + "codeCommune": "76236", + "libelleAcheminement": "ENVRONVILLE", + "nomCommune": "ENVRONVILLE" }, { - "codePostal": "87500", - "codeCommune": "87187", - "libelleAcheminement": "ST YRIEIX LA PERCHE", - "nomCommune": "ST YRIEIX LA PERCHE" + "codePostal": "87300", + "codeCommune": "87139", + "libelleAcheminement": "ST BONNET DE BELLAC", + "nomCommune": "ST BONNET DE BELLAC" }, { - "codePostal": "79430", - "codeCommune": "79076", - "libelleAcheminement": "LA CHAPELLE ST LAURENT", - "nomCommune": "LA CHAPELLE ST LAURENT" + "codePostal": "72170", + "codeCommune": "72362", + "libelleAcheminement": "LE TRONCHET", + "nomCommune": "LE TRONCHET" }, { - "codePostal": "71460", - "codeCommune": "71068", - "libelleAcheminement": "BURZY", - "nomCommune": "BURZY" + "codePostal": "87280", + "codeCommune": "87085", + "libelleAcheminement": "LIMOGES", + "nomCommune": "LIMOGES" }, { - "codePostal": "85110", - "codeCommune": "85202", - "libelleAcheminement": "STE CECILE", - "nomCommune": "STE CECILE" + "codePostal": "76480", + "codeCommune": "76237", + "libelleAcheminement": "EPINAY SUR DUCLAIR", + "nomCommune": "EPINAY SUR DUCLAIR" }, { - "codePostal": "87360", - "codeCommune": "87195", - "libelleAcheminement": "TERSANNES", - "nomCommune": "TERSANNES" + "codePostal": "87400", + "codeCommune": "87142", + "libelleAcheminement": "ST DENIS DES MURS", + "nomCommune": "ST DENIS DES MURS" }, { - "codePostal": "79130", - "codeCommune": "79077", - "libelleAcheminement": "BEUGNON THIREUIL", - "nomCommune": "BEUGNON THIREUIL" + "codePostal": "72330", + "codeCommune": "72385", + "libelleAcheminement": "YVRE LE POLIN", + "nomCommune": "YVRE LE POLIN" }, { - "codePostal": "71150", - "codeCommune": "71073", - "libelleAcheminement": "CHAGNY", - "nomCommune": "CHAGNY" + "codePostal": "87380", + "codeCommune": "87088", + "libelleAcheminement": "MAGNAC BOURG", + "nomCommune": "MAGNAC BOURG" }, { - "codePostal": "85580", - "codeCommune": "85207", - "libelleAcheminement": "ST DENIS DU PAYRE", - "nomCommune": "ST DENIS DU PAYRE" + "codePostal": "76430", + "codeCommune": "76239", + "libelleAcheminement": "EPRETOT", + "nomCommune": "EPRETOT" }, { - "codePostal": "87520", - "codeCommune": "87202", - "libelleAcheminement": "VEYRAC", - "nomCommune": "VEYRAC" + "codePostal": "87800", + "codeCommune": "87150", + "libelleAcheminement": "ST HILAIRE LES PLACES", + "nomCommune": "ST HILAIRE LES PLACES" }, { - "codePostal": "79360", - "codeCommune": "79078", - "libelleAcheminement": "PLAINE D ARGENSON", - "nomCommune": "PLAINE D ARGENSON" + "codePostal": "73610", + "codeCommune": "73001", + "libelleAcheminement": "AIGUEBELETTE LE LAC", + "nomCommune": "AIGUEBELETTE LE LAC" }, { - "codePostal": "71140", - "codeCommune": "71075", - "libelleAcheminement": "CHALMOUX", - "nomCommune": "CHALMOUX" + "codePostal": "87160", + "codeCommune": "87090", + "libelleAcheminement": "MAILHAC SUR BENAIZE", + "nomCommune": "MAILHAC SUR BENAIZE" }, { - "codePostal": "85440", - "codeCommune": "85231", - "libelleAcheminement": "ST HILAIRE LA FORET", - "nomCommune": "ST HILAIRE LA FORET" + "codePostal": "76260", + "codeCommune": "76255", + "libelleAcheminement": "EU", + "nomCommune": "EU" }, { - "codePostal": "87260", - "codeCommune": "87203", - "libelleAcheminement": "VICQ SUR BREUILH", - "nomCommune": "VICQ SUR BREUILH" + "codePostal": "87240", + "codeCommune": "87157", + "libelleAcheminement": "ST LAURENT LES EGLISES", + "nomCommune": "ST LAURENT LES EGLISES" }, { - "codePostal": "79360", - "codeCommune": "79078", - "libelleAcheminement": "PLAINE D ARGENSON", - "nomCommune": "PLAINE D ARGENSON" + "codePostal": "73260", + "codeCommune": "73003", + "libelleAcheminement": "GRAND AIGUEBLANCHE", + "nomCommune": "GRAND AIGUEBLANCHE" }, { - "codePostal": "71110", - "codeCommune": "71077", - "libelleAcheminement": "CHAMBILLY", - "nomCommune": "CHAMBILLY" + "codePostal": "87380", + "codeCommune": "87095", + "libelleAcheminement": "MEUZAC", + "nomCommune": "MEUZAC" }, { - "codePostal": "85210", - "codeCommune": "85233", - "libelleAcheminement": "ST JEAN DE BEUGNE", - "nomCommune": "ST JEAN DE BEUGNE" + "codePostal": "76340", + "codeCommune": "76257", + "libelleAcheminement": "FALLENCOURT", + "nomCommune": "FALLENCOURT" }, { - "codePostal": "87190", - "codeCommune": "87206", - "libelleAcheminement": "VILLEFAVARD", - "nomCommune": "VILLEFAVARD" + "codePostal": "87340", + "codeCommune": "87159", + "libelleAcheminement": "ST LEGER LA MONTAGNE", + "nomCommune": "ST LEGER LA MONTAGNE" }, { - "codePostal": "79700", - "codeCommune": "79079", - "libelleAcheminement": "MAULEON", - "nomCommune": "MAULEON" + "codePostal": "73340", + "codeCommune": "73005", + "libelleAcheminement": "AILLON LE VIEUX", + "nomCommune": "AILLON LE VIEUX" }, { - "codePostal": "71510", - "codeCommune": "71078", - "libelleAcheminement": "CHAMILLY", - "nomCommune": "CHAMILLY" + "codePostal": "87800", + "codeCommune": "87096", + "libelleAcheminement": "LA MEYZE", + "nomCommune": "LA MEYZE" }, { - "codePostal": "85160", - "codeCommune": "85234", - "libelleAcheminement": "ST JEAN DE MONTS", - "nomCommune": "ST JEAN DE MONTS" + "codePostal": "76640", + "codeCommune": "76258", + "libelleAcheminement": "TERRES DE CAUX", + "nomCommune": "TERRES DE CAUX" }, { - "codePostal": "88650", - "codeCommune": "88009", - "libelleAcheminement": "ANOULD", - "nomCommune": "ANOULD" + "codePostal": "87440", + "codeCommune": "87168", + "libelleAcheminement": "ST MATHIEU", + "nomCommune": "ST MATHIEU" }, { - "codePostal": "79170", - "codeCommune": "79085", - "libelleAcheminement": "CHERIGNE", - "nomCommune": "CHERIGNE" + "codePostal": "73210", + "codeCommune": "73006", + "libelleAcheminement": "AIME LA PLAGNE", + "nomCommune": "AIME LA PLAGNE" }, { - "codePostal": "21340", - "codeCommune": "71085", - "libelleAcheminement": "CHANGE", - "nomCommune": "CHANGE" + "codePostal": "87140", + "codeCommune": "87103", + "libelleAcheminement": "NANTIAT", + "nomCommune": "NANTIAT" }, { - "codePostal": "85410", - "codeCommune": "85237", - "libelleAcheminement": "ST LAURENT DE LA SALLE", - "nomCommune": "ST LAURENT DE LA SALLE" + "codePostal": "76270", + "codeCommune": "76262", + "libelleAcheminement": "FESQUES", + "nomCommune": "FESQUES" }, { - "codePostal": "88380", - "codeCommune": "88011", - "libelleAcheminement": "ARCHES", - "nomCommune": "ARCHES" + "codePostal": "87480", + "codeCommune": "87178", + "libelleAcheminement": "ST PRIEST TAURION", + "nomCommune": "ST PRIEST TAURION" }, { - "codePostal": "79600", - "codeCommune": "79089", - "libelleAcheminement": "LE CHILLOU", - "nomCommune": "LE CHILLOU" + "codePostal": "73210", + "codeCommune": "73006", + "libelleAcheminement": "AIME LA PLAGNE", + "nomCommune": "AIME LA PLAGNE" }, { - "codePostal": "71520", - "codeCommune": "71091", - "libelleAcheminement": "LA CHAPELLE DU MONT DE FRANCE", - "nomCommune": "LA CHAPELLE DU MONT DE FRANCE" + "codePostal": "87260", + "codeCommune": "87119", + "libelleAcheminement": "PIERRE BUFFIERE", + "nomCommune": "PIERRE BUFFIERE" }, { - "codePostal": "85220", - "codeCommune": "85239", - "libelleAcheminement": "ST MAIXENT SUR VIE", - "nomCommune": "ST MAIXENT SUR VIE" + "codePostal": "76290", + "codeCommune": "76270", + "libelleAcheminement": "FONTAINE LA MALLET", + "nomCommune": "FONTAINE LA MALLET" }, { - "codePostal": "88170", - "codeCommune": "88013", - "libelleAcheminement": "AROFFE", - "nomCommune": "AROFFE" + "codePostal": "87370", + "codeCommune": "87181", + "libelleAcheminement": "ST SULPICE LAURIERE", + "nomCommune": "ST SULPICE LAURIERE" }, { - "codePostal": "79420", - "codeCommune": "79092", - "libelleAcheminement": "CLAVE", - "nomCommune": "CLAVE" + "codePostal": "73210", + "codeCommune": "73006", + "libelleAcheminement": "AIME LA PLAGNE", + "nomCommune": "AIME LA PLAGNE" }, { - "codePostal": "71120", - "codeCommune": "71106", - "libelleAcheminement": "CHAROLLES", - "nomCommune": "CHAROLLES" + "codePostal": "87600", + "codeCommune": "87126", + "libelleAcheminement": "ROCHECHOUART", + "nomCommune": "ROCHECHOUART" }, { - "codePostal": "85210", - "codeCommune": "85248", - "libelleAcheminement": "ST MARTIN LARS EN STE HERMINE", - "nomCommune": "ST MARTIN LARS EN STE HERMINE" + "codePostal": "76690", + "codeCommune": "76271", + "libelleAcheminement": "FONTAINE LE BOURG", + "nomCommune": "FONTAINE LE BOURG" }, { - "codePostal": "88130", - "codeCommune": "88024", - "libelleAcheminement": "AVRAINVILLE", - "nomCommune": "AVRAINVILLE" + "codePostal": "87420", + "codeCommune": "87185", + "libelleAcheminement": "ST VICTURNIEN", + "nomCommune": "ST VICTURNIEN" }, { - "codePostal": "79160", - "codeCommune": "79101", - "libelleAcheminement": "COULONGES SUR L AUTIZE", - "nomCommune": "COULONGES SUR L AUTIZE" + "codePostal": "73410", + "codeCommune": "73010", + "libelleAcheminement": "ENTRELACS", + "nomCommune": "ENTRELACS" }, { - "codePostal": "71170", - "codeCommune": "71120", - "libelleAcheminement": "CHAUFFAILLES", - "nomCommune": "CHAUFFAILLES" + "codePostal": "87250", + "codeCommune": "87128", + "libelleAcheminement": "ST PARDOUX LE LAC", + "nomCommune": "ST PARDOUX LE LAC" }, { - "codePostal": "85150", - "codeCommune": "85250", - "libelleAcheminement": "ST MATHURIN", - "nomCommune": "ST MATHURIN" + "codePostal": "76740", + "codeCommune": "76272", + "libelleAcheminement": "FONTAINE LE DUN", + "nomCommune": "FONTAINE LE DUN" }, { - "codePostal": "88630", - "codeCommune": "88025", - "libelleAcheminement": "AVRANVILLE", - "nomCommune": "AVRANVILLE" + "codePostal": "87130", + "codeCommune": "87194", + "libelleAcheminement": "SUSSAC", + "nomCommune": "SUSSAC" }, { - "codePostal": "79340", - "codeCommune": "79105", - "libelleAcheminement": "LES CHATELIERS", - "nomCommune": "LES CHATELIERS" + "codePostal": "73200", + "codeCommune": "73011", + "libelleAcheminement": "ALBERTVILLE", + "nomCommune": "ALBERTVILLE" }, { - "codePostal": "71420", - "codeCommune": "71132", - "libelleAcheminement": "CIRY LE NOBLE", - "nomCommune": "CIRY LE NOBLE" + "codePostal": "87130", + "codeCommune": "87130", + "libelleAcheminement": "ROZIERS ST GEORGES", + "nomCommune": "ROZIERS ST GEORGES" }, { - "codePostal": "85570", - "codeCommune": "85274", - "libelleAcheminement": "ST VALERIEN", - "nomCommune": "ST VALERIEN" + "codePostal": "76340", + "codeCommune": "76278", + "libelleAcheminement": "FOUCARMONT", + "nomCommune": "FOUCARMONT" }, { - "codePostal": "88330", - "codeCommune": "88027", - "libelleAcheminement": "BADMENIL AUX BOIS", - "nomCommune": "BADMENIL AUX BOIS" + "codePostal": "87140", + "codeCommune": "87197", + "libelleAcheminement": "THOURON", + "nomCommune": "THOURON" }, { - "codePostal": "79160", - "codeCommune": "79119", - "libelleAcheminement": "FENIOUX", - "nomCommune": "FENIOUX" + "codePostal": "73300", + "codeCommune": "73012", + "libelleAcheminement": "ALBIEZ LE JEUNE", + "nomCommune": "ALBIEZ LE JEUNE" }, { - "codePostal": "71520", - "codeCommune": "71134", - "libelleAcheminement": "NAVOUR SUR GROSNE", - "nomCommune": "NAVOUR SUR GROSNE" + "codePostal": "87290", + "codeCommune": "87133", + "libelleAcheminement": "ST AMAND MAGNAZEIX", + "nomCommune": "ST AMAND MAGNAZEIX" }, { - "codePostal": "85520", - "codeCommune": "85278", - "libelleAcheminement": "ST VINCENT SUR JARD", - "nomCommune": "ST VINCENT SUR JARD" + "codePostal": "76510", + "codeCommune": "76288", + "libelleAcheminement": "FREULLEVILLE", + "nomCommune": "FREULLEVILLE" }, { - "codePostal": "88520", - "codeCommune": "88032", - "libelleAcheminement": "BAN DE LAVELINE", - "nomCommune": "BAN DE LAVELINE" + "codePostal": "87260", + "codeCommune": "87203", + "libelleAcheminement": "VICQ SUR BREUILH", + "nomCommune": "VICQ SUR BREUILH" }, { - "codePostal": "79390", - "codeCommune": "79120", - "libelleAcheminement": "LA FERRIERE EN PARTHENAY", - "nomCommune": "LA FERRIERE EN PARTHENAY" + "codePostal": "73500", + "codeCommune": "73023", + "libelleAcheminement": "AUSSOIS", + "nomCommune": "AUSSOIS" }, { - "codePostal": "71250", - "codeCommune": "71137", - "libelleAcheminement": "CLUNY", - "nomCommune": "CLUNY" + "codePostal": "87150", + "codeCommune": "87137", + "libelleAcheminement": "ST BAZILE", + "nomCommune": "ST BAZILE" }, { - "codePostal": "85450", - "codeCommune": "85286", - "libelleAcheminement": "LA TAILLEE", - "nomCommune": "LA TAILLEE" + "codePostal": "76190", + "codeCommune": "76289", + "libelleAcheminement": "ST MARTIN DE L IF", + "nomCommune": "ST MARTIN DE L IF" }, { - "codePostal": "88640", - "codeCommune": "88035", - "libelleAcheminement": "BARBEY SEROUX", - "nomCommune": "BARBEY SEROUX" + "codePostal": "87110", + "codeCommune": "87205", + "libelleAcheminement": "LE VIGEN", + "nomCommune": "LE VIGEN" }, { - "codePostal": "79340", - "codeCommune": "79121", - "libelleAcheminement": "FOMPERRON", - "nomCommune": "FOMPERRON" + "codePostal": "73470", + "codeCommune": "73027", + "libelleAcheminement": "AYN", + "nomCommune": "AYN" }, { - "codePostal": "71460", - "codeCommune": "71147", - "libelleAcheminement": "CORTEVAIX", - "nomCommune": "CORTEVAIX" + "codePostal": "87260", + "codeCommune": "87151", + "libelleAcheminement": "ST JEAN LIGOURE", + "nomCommune": "ST JEAN LIGOURE" }, { - "codePostal": "85440", - "codeCommune": "85288", - "libelleAcheminement": "TALMONT ST HILAIRE", - "nomCommune": "TALMONT ST HILAIRE" + "codePostal": "76400", + "codeCommune": "76291", + "libelleAcheminement": "FROBERVILLE", + "nomCommune": "FROBERVILLE" }, { - "codePostal": "88700", - "codeCommune": "88042", - "libelleAcheminement": "BAZIEN", - "nomCommune": "BAZIEN" + "codePostal": "88270", + "codeCommune": "88001", + "libelleAcheminement": "LES ABLEUVENETTES", + "nomCommune": "LES ABLEUVENETTES" }, { - "codePostal": "79110", - "codeCommune": "79122", - "libelleAcheminement": "FONTENILLE ST MARTIN ENTRAIGUES", - "nomCommune": "FONTENILLE ST MARTIN D ENTRAIGUES" + "codePostal": "73000", + "codeCommune": "73031", + "libelleAcheminement": "BASSENS", + "nomCommune": "BASSENS" }, { - "codePostal": "71490", - "codeCommune": "71149", - "libelleAcheminement": "COUCHES", - "nomCommune": "COUCHES" + "codePostal": "87300", + "codeCommune": "87155", + "libelleAcheminement": "ST JUNIEN LES COMBES", + "nomCommune": "ST JUNIEN LES COMBES" }, { - "codePostal": "85590", - "codeCommune": "85296", - "libelleAcheminement": "TREIZE VENTS", - "nomCommune": "TREIZE VENTS" + "codePostal": "76740", + "codeCommune": "76294", + "libelleAcheminement": "LA GAILLARDE", + "nomCommune": "LA GAILLARDE" }, { - "codePostal": "88300", - "codeCommune": "88044", - "libelleAcheminement": "BAZOILLES SUR MEUSE", - "nomCommune": "BAZOILLES SUR MEUSE" + "codePostal": "88110", + "codeCommune": "88005", + "libelleAcheminement": "ALLARMONT", + "nomCommune": "ALLARMONT" }, { - "codePostal": "79380", - "codeCommune": "79123", - "libelleAcheminement": "LA FORET SUR SEVRE", - "nomCommune": "LA FORET SUR SEVRE" + "codePostal": "73540", + "codeCommune": "73032", + "libelleAcheminement": "LA BATHIE", + "nomCommune": "LA BATHIE" }, { - "codePostal": "71490", - "codeCommune": "71151", - "libelleAcheminement": "CREOT", - "nomCommune": "CREOT" + "codePostal": "87590", + "codeCommune": "87156", + "libelleAcheminement": "ST JUST LE MARTEL", + "nomCommune": "ST JUST LE MARTEL" }, { - "codePostal": "85770", - "codeCommune": "85303", - "libelleAcheminement": "VIX", - "nomCommune": "VIX" + "codePostal": "76430", + "codeCommune": "76303", + "libelleAcheminement": "GOMMERVILLE", + "nomCommune": "GOMMERVILLE" }, { - "codePostal": "88800", - "codeCommune": "88051", - "libelleAcheminement": "BELMONT SUR VAIR", - "nomCommune": "BELMONT SUR VAIR" + "codePostal": "88500", + "codeCommune": "88006", + "libelleAcheminement": "AMBACOURT", + "nomCommune": "AMBACOURT" }, { - "codePostal": "79230", - "codeCommune": "79125", - "libelleAcheminement": "FORS", - "nomCommune": "FORS" + "codePostal": "73460", + "codeCommune": "73048", + "libelleAcheminement": "BONVILLARD", + "nomCommune": "BONVILLARD" }, { - "codePostal": "71150", - "codeCommune": "71170", - "libelleAcheminement": "DEMIGNY", - "nomCommune": "DEMIGNY" + "codePostal": "87190", + "codeCommune": "87160", + "libelleAcheminement": "ST LEGER MAGNAZEIX", + "nomCommune": "ST LEGER MAGNAZEIX" }, { - "codePostal": "85120", - "codeCommune": "85305", - "libelleAcheminement": "VOUVANT", - "nomCommune": "VOUVANT" + "codePostal": "76110", + "codeCommune": "76304", + "libelleAcheminement": "GONFREVILLE CAILLOT", + "nomCommune": "GONFREVILLE CAILLOT" }, { - "codePostal": "88500", - "codeCommune": "88066", - "libelleAcheminement": "BOULAINCOURT", - "nomCommune": "BOULAINCOURT" + "codePostal": "88380", + "codeCommune": "88011", + "libelleAcheminement": "ARCHES", + "nomCommune": "ARCHES" }, { - "codePostal": "79150", - "codeCommune": "79132", - "libelleAcheminement": "GENNETON", - "nomCommune": "GENNETON" + "codePostal": "73370", + "codeCommune": "73050", + "libelleAcheminement": "BOURDEAU", + "nomCommune": "BOURDEAU" }, { - "codePostal": "71330", - "codeCommune": "71175", - "libelleAcheminement": "DICONNE", - "nomCommune": "DICONNE" + "codePostal": "87330", + "codeCommune": "87163", + "libelleAcheminement": "ST MARTIAL SUR ISOP", + "nomCommune": "ST MARTIAL SUR ISOP" }, { - "codePostal": "86430", - "codeCommune": "86001", - "libelleAcheminement": "ADRIERS", - "nomCommune": "ADRIERS" + "codePostal": "76700", + "codeCommune": "76305", + "libelleAcheminement": "GONFREVILLE L ORCHER", + "nomCommune": "GONFREVILLE L ORCHER" }, { - "codePostal": "88140", - "codeCommune": "88079", - "libelleAcheminement": "BULGNEVILLE", - "nomCommune": "BULGNEVILLE" + "codePostal": "88700", + "codeCommune": "88021", + "libelleAcheminement": "AUTREY", + "nomCommune": "AUTREY" }, { - "codePostal": "79220", - "codeCommune": "79133", - "libelleAcheminement": "GERMOND ROUVRE", - "nomCommune": "GERMOND ROUVRE" + "codePostal": "73370", + "codeCommune": "73051", + "libelleAcheminement": "LE BOURGET DU LAC", + "nomCommune": "LE BOURGET DU LAC" }, { - "codePostal": "71480", - "codeCommune": "71177", - "libelleAcheminement": "DOMMARTIN LES CUISEAUX", - "nomCommune": "DOMMARTIN LES CUISEAUX" + "codePostal": "87700", + "codeCommune": "87177", + "libelleAcheminement": "ST PRIEST SOUS AIXE", + "nomCommune": "ST PRIEST SOUS AIXE" }, { - "codePostal": "86700", - "codeCommune": "86003", - "libelleAcheminement": "ANCHE", - "nomCommune": "ANCHE" + "codePostal": "76700", + "codeCommune": "76305", + "libelleAcheminement": "GONFREVILLE L ORCHER", + "nomCommune": "GONFREVILLE L ORCHER" }, { - "codePostal": "88540", - "codeCommune": "88081", - "libelleAcheminement": "BUSSANG", - "nomCommune": "BUSSANG" + "codePostal": "88330", + "codeCommune": "88027", + "libelleAcheminement": "BADMENIL AUX BOIS", + "nomCommune": "BADMENIL AUX BOIS" }, { - "codePostal": "79110", - "codeCommune": "79136", - "libelleAcheminement": "ALLOINAY", - "nomCommune": "ALLOINAY" + "codePostal": "73520", + "codeCommune": "73058", + "libelleAcheminement": "LA BRIDOIRE", + "nomCommune": "LA BRIDOIRE" }, { - "codePostal": "71420", - "codeCommune": "71179", - "libelleAcheminement": "DOMPIERRE SOUS SANVIGNES", - "nomCommune": "DOMPIERRE SOUS SANVIGNES" + "codePostal": "87290", + "codeCommune": "87180", + "libelleAcheminement": "ST SORNIN LEULAC", + "nomCommune": "ST SORNIN LEULAC" }, { - "codePostal": "86260", - "codeCommune": "86004", - "libelleAcheminement": "ANGLES SUR L ANGLIN", - "nomCommune": "ANGLES SUR L ANGLIN" + "codePostal": "76700", + "codeCommune": "76305", + "libelleAcheminement": "GONFREVILLE L ORCHER", + "nomCommune": "GONFREVILLE L ORCHER" }, { - "codePostal": "88600", - "codeCommune": "88086", - "libelleAcheminement": "CHAMP LE DUC", - "nomCommune": "CHAMP LE DUC" + "codePostal": "88240", + "codeCommune": "88029", + "libelleAcheminement": "LA VOGE LES BAINS", + "nomCommune": "LA VOGE LES BAINS" }, { - "codePostal": "79110", - "codeCommune": "79140", - "libelleAcheminement": "VALDELAUME", - "nomCommune": "VALDELAUME" + "codePostal": "73200", + "codeCommune": "73061", + "libelleAcheminement": "CESARCHES", + "nomCommune": "CESARCHES" }, { - "codePostal": "71490", - "codeCommune": "71183", - "libelleAcheminement": "DRACY LES COUCHES", - "nomCommune": "DRACY LES COUCHES" + "codePostal": "87500", + "codeCommune": "87187", + "libelleAcheminement": "ST YRIEIX LA PERCHE", + "nomCommune": "ST YRIEIX LA PERCHE" }, { - "codePostal": "86250", - "codeCommune": "86012", - "libelleAcheminement": "ASNOIS", - "nomCommune": "ASNOIS" + "codePostal": "76280", + "codeCommune": "76307", + "libelleAcheminement": "GONNEVILLE LA MALLET", + "nomCommune": "GONNEVILLE LA MALLET" }, { - "codePostal": "88600", - "codeCommune": "88089", - "libelleAcheminement": "LA CHAPELLE DEVANT BRUYERES", - "nomCommune": "LA CHAPELLE DEVANT BRUYERES" + "codePostal": "88240", + "codeCommune": "88029", + "libelleAcheminement": "LA VOGE LES BAINS", + "nomCommune": "LA VOGE LES BAINS" }, { - "codePostal": "79110", - "codeCommune": "79140", - "libelleAcheminement": "VALDELAUME", - "nomCommune": "VALDELAUME" + "codePostal": "73190", + "codeCommune": "73064", + "libelleAcheminement": "CHALLES LES EAUX", + "nomCommune": "CHALLES LES EAUX" }, { - "codePostal": "71350", - "codeCommune": "71186", - "libelleAcheminement": "ECUELLES", - "nomCommune": "ECUELLES" + "codePostal": "87620", + "codeCommune": "87191", + "libelleAcheminement": "SEREILHAC", + "nomCommune": "SEREILHAC" }, { - "codePostal": "86190", - "codeCommune": "86017", - "libelleAcheminement": "AYRON", - "nomCommune": "AYRON" + "codePostal": "76520", + "codeCommune": "76313", + "libelleAcheminement": "GOUY", + "nomCommune": "GOUY" }, { - "codePostal": "88170", - "codeCommune": "88095", - "libelleAcheminement": "CHATENOIS", - "nomCommune": "CHATENOIS" + "codePostal": "88520", + "codeCommune": "88032", + "libelleAcheminement": "BAN DE LAVELINE", + "nomCommune": "BAN DE LAVELINE" }, { - "codePostal": "79170", - "codeCommune": "79142", - "libelleAcheminement": "JUILLE", - "nomCommune": "JUILLE" + "codePostal": "73240", + "codeCommune": "73070", + "libelleAcheminement": "CHAMPAGNEUX", + "nomCommune": "CHAMPAGNEUX" }, { - "codePostal": "71210", - "codeCommune": "71187", - "libelleAcheminement": "ECUISSES", - "nomCommune": "ECUISSES" + "codePostal": "87600", + "codeCommune": "87199", + "libelleAcheminement": "VAYRES", + "nomCommune": "VAYRES" }, { - "codePostal": "86200", - "codeCommune": "86018", - "libelleAcheminement": "BASSES", - "nomCommune": "BASSES" + "codePostal": "76370", + "codeCommune": "76324", + "libelleAcheminement": "GREGES", + "nomCommune": "GREGES" }, { - "codePostal": "88630", - "codeCommune": "88102", - "libelleAcheminement": "CHERMISEY", - "nomCommune": "CHERMISEY" + "codePostal": "88210", + "codeCommune": "88033", + "libelleAcheminement": "BAN DE SAPT", + "nomCommune": "BAN DE SAPT" }, { - "codePostal": "79190", - "codeCommune": "79150", - "libelleAcheminement": "LIMALONGES", - "nomCommune": "LIMALONGES" + "codePostal": "73170", + "codeCommune": "73078", + "libelleAcheminement": "LA CHAPELLE ST MARTIN", + "nomCommune": "LA CHAPELLE ST MARTIN" }, { - "codePostal": "71240", - "codeCommune": "71193", - "libelleAcheminement": "ETRIGNY", - "nomCommune": "ETRIGNY" + "codePostal": "87520", + "codeCommune": "87202", + "libelleAcheminement": "VEYRAC", + "nomCommune": "VEYRAC" }, { - "codePostal": "86490", - "codeCommune": "86019", - "libelleAcheminement": "BEAUMONT ST CYR", - "nomCommune": "BEAUMONT ST CYR" + "codePostal": "76690", + "codeCommune": "76331", + "libelleAcheminement": "GRUGNY", + "nomCommune": "GRUGNY" }, { - "codePostal": "88270", - "codeCommune": "88103", - "libelleAcheminement": "CIRCOURT", - "nomCommune": "CIRCOURT" + "codePostal": "88260", + "codeCommune": "88049", + "libelleAcheminement": "BELMONT LES DARNEY", + "nomCommune": "BELMONT LES DARNEY" }, { - "codePostal": "79170", - "codeCommune": "79158", - "libelleAcheminement": "LUCHE SUR BRIOUX", - "nomCommune": "LUCHE SUR BRIOUX" + "codePostal": "73390", + "codeCommune": "73079", + "libelleAcheminement": "CHATEAUNEUF", + "nomCommune": "CHATEAUNEUF" }, { - "codePostal": "71240", - "codeCommune": "71193", - "libelleAcheminement": "ETRIGNY", - "nomCommune": "ETRIGNY" + "codePostal": "88140", + "codeCommune": "88003", + "libelleAcheminement": "AINGEVILLE", + "nomCommune": "AINGEVILLE" }, { - "codePostal": "86420", - "codeCommune": "86023", - "libelleAcheminement": "BERTHEGON", - "nomCommune": "BERTHEGON" + "codePostal": "76730", + "codeCommune": "76334", + "libelleAcheminement": "GUEURES", + "nomCommune": "GUEURES" }, { - "codePostal": "88240", - "codeCommune": "88108", - "libelleAcheminement": "LE CLERJUS", - "nomCommune": "LE CLERJUS" + "codePostal": "88490", + "codeCommune": "88057", + "libelleAcheminement": "LE BEULAY", + "nomCommune": "LE BEULAY" }, { - "codePostal": "79100", - "codeCommune": "79161", - "libelleAcheminement": "LUZAY", - "nomCommune": "LUZAY" + "codePostal": "73630", + "codeCommune": "73101", + "libelleAcheminement": "DOUCY EN BAUGES", + "nomCommune": "DOUCY EN BAUGES" }, { - "codePostal": "71150", - "codeCommune": "71194", - "libelleAcheminement": "FARGES LES CHALON", - "nomCommune": "FARGES LES CHALON" + "codePostal": "88320", + "codeCommune": "88004", + "libelleAcheminement": "AINVELLE", + "nomCommune": "AINVELLE" }, { - "codePostal": "86120", - "codeCommune": "86026", - "libelleAcheminement": "BEUXES", - "nomCommune": "BEUXES" + "codePostal": "76440", + "codeCommune": "76343", + "libelleAcheminement": "HAUCOURT", + "nomCommune": "HAUCOURT" }, { - "codePostal": "88120", - "codeCommune": "88109", - "libelleAcheminement": "CLEURIE", - "nomCommune": "CLEURIE" + "codePostal": "88320", + "codeCommune": "88062", + "libelleAcheminement": "BLEVAINCOURT", + "nomCommune": "BLEVAINCOURT" }, { - "codePostal": "79600", - "codeCommune": "79165", - "libelleAcheminement": "MAISONTIERS", - "nomCommune": "MAISONTIERS" + "codePostal": "73610", + "codeCommune": "73104", + "libelleAcheminement": "DULLIN", + "nomCommune": "DULLIN" }, { - "codePostal": "71580", - "codeCommune": "71196", - "libelleAcheminement": "LE FAY", - "nomCommune": "LE FAY" + "codePostal": "88410", + "codeCommune": "88007", + "libelleAcheminement": "AMEUVELLE", + "nomCommune": "AMEUVELLE" }, { - "codePostal": "86400", - "codeCommune": "86029", - "libelleAcheminement": "BLANZAY", - "nomCommune": "BLANZAY" + "codePostal": "76280", + "codeCommune": "76361", + "libelleAcheminement": "HEUQUEVILLE", + "nomCommune": "HEUQUEVILLE" }, { "codePostal": "88600", - "codeCommune": "88130", - "libelleAcheminement": "DESTORD", - "nomCommune": "DESTORD" + "codeCommune": "88064", + "libelleAcheminement": "BOIS DE CHAMP", + "nomCommune": "BOIS DE CHAMP" }, { - "codePostal": "79600", - "codeCommune": "79167", - "libelleAcheminement": "MARNES", - "nomCommune": "MARNES" + "codePostal": "73300", + "codeCommune": "73116", + "libelleAcheminement": "FONTCOUVERTE LA TOUSSUIRE", + "nomCommune": "FONTCOUVERTE LA TOUSSUIRE" }, { - "codePostal": "71340", - "codeCommune": "71200", - "libelleAcheminement": "FLEURY LA MONTAGNE", - "nomCommune": "FLEURY LA MONTAGNE" + "codePostal": "88170", + "codeCommune": "88013", + "libelleAcheminement": "AROFFE", + "nomCommune": "AROFFE" }, { - "codePostal": "86140", - "codeCommune": "86047", - "libelleAcheminement": "CERNAY", - "nomCommune": "CERNAY" + "codePostal": "76770", + "codeCommune": "76367", + "libelleAcheminement": "HOUPPEVILLE", + "nomCommune": "HOUPPEVILLE" }, { - "codePostal": "88600", - "codeCommune": "88131", - "libelleAcheminement": "DEYCIMONT", - "nomCommune": "DEYCIMONT" + "codePostal": "88540", + "codeCommune": "88081", + "libelleAcheminement": "BUSSANG", + "nomCommune": "BUSSANG" }, { - "codePostal": "79310", - "codeCommune": "79172", - "libelleAcheminement": "MAZIERES EN GATINE", - "nomCommune": "MAZIERES EN GATINE" + "codePostal": "73500", + "codeCommune": "73119", + "libelleAcheminement": "FRENEY", + "nomCommune": "FRENEY" }, { - "codePostal": "71390", - "codeCommune": "71201", - "libelleAcheminement": "FLEY", - "nomCommune": "FLEY" + "codePostal": "88430", + "codeCommune": "88014", + "libelleAcheminement": "ARRENTES DE CORCIEUX", + "nomCommune": "ARRENTES DE CORCIEUX" }, { - "codePostal": "86250", - "codeCommune": "86055", - "libelleAcheminement": "LA CHAPELLE BATON", - "nomCommune": "LA CHAPELLE BATON" + "codePostal": "76110", + "codeCommune": "76368", + "libelleAcheminement": "HOUQUETOT", + "nomCommune": "HOUQUETOT" }, { - "codePostal": "88000", - "codeCommune": "88136", - "libelleAcheminement": "DOGNEVILLE", - "nomCommune": "DOGNEVILLE" + "codePostal": "88640", + "codeCommune": "88085", + "libelleAcheminement": "CHAMPDRAY", + "nomCommune": "CHAMPDRAY" }, { - "codePostal": "79500", - "codeCommune": "79174", - "libelleAcheminement": "MELLE", - "nomCommune": "MELLE" + "codePostal": "73250", + "codeCommune": "73120", + "libelleAcheminement": "FRETERIVE", + "nomCommune": "FRETERIVE" }, { - "codePostal": "71530", - "codeCommune": "71204", - "libelleAcheminement": "FRAGNES LA LOYERE", - "nomCommune": "FRAGNES LA LOYERE" + "codePostal": "88300", + "codeCommune": "88020", + "libelleAcheminement": "AUTREVILLE", + "nomCommune": "AUTREVILLE" }, { - "codePostal": "86210", - "codeCommune": "86058", - "libelleAcheminement": "LA CHAPELLE MOULIERE", - "nomCommune": "LA CHAPELLE MOULIERE" + "codePostal": "76230", + "codeCommune": "76377", + "libelleAcheminement": "ISNEAUVILLE", + "nomCommune": "ISNEAUVILLE" }, { "codePostal": "88330", - "codeCommune": "88143", - "libelleAcheminement": "DOMEVRE SUR DURBION", - "nomCommune": "DOMEVRE SUR DURBION" - }, - { - "codePostal": "79320", - "codeCommune": "79179", - "libelleAcheminement": "MONCOUTANT SUR SEVRE", - "nomCommune": "MONCOUTANT SUR SEVRE" + "codeCommune": "88094", + "libelleAcheminement": "CHATEL SUR MOSELLE", + "nomCommune": "CHATEL SUR MOSELLE" }, { - "codePostal": "71270", - "codeCommune": "71207", - "libelleAcheminement": "FRETTERANS", - "nomCommune": "FRETTERANS" + "codePostal": "73630", + "codeCommune": "73139", + "libelleAcheminement": "JARSY", + "nomCommune": "JARSY" }, { - "codePostal": "86250", - "codeCommune": "86061", - "libelleAcheminement": "CHARROUX", - "nomCommune": "CHARROUX" + "codePostal": "88500", + "codeCommune": "88023", + "libelleAcheminement": "AVILLERS", + "nomCommune": "AVILLERS" }, { - "codePostal": "88390", - "codeCommune": "88147", - "libelleAcheminement": "DOMMARTIN AUX BOIS", - "nomCommune": "DOMMARTIN AUX BOIS" + "codePostal": "76390", + "codeCommune": "76381", + "libelleAcheminement": "LANDES VIEILLES ET NEUVES", + "nomCommune": "LANDES VIEILLES ET NEUVES" }, { - "codePostal": "79380", - "codeCommune": "79179", - "libelleAcheminement": "MONCOUTANT SUR SEVRE", - "nomCommune": "MONCOUTANT SUR SEVRE" + "codePostal": "88170", + "codeCommune": "88095", + "libelleAcheminement": "CHATENOIS", + "nomCommune": "CHATENOIS" }, { - "codePostal": "71590", - "codeCommune": "71215", - "libelleAcheminement": "GERGY", - "nomCommune": "GERGY" + "codePostal": "73610", + "codeCommune": "73145", + "libelleAcheminement": "LEPIN LE LAC", + "nomCommune": "LEPIN LE LAC" }, { - "codePostal": "86250", - "codeCommune": "86063", - "libelleAcheminement": "CHATAIN", - "nomCommune": "CHATAIN" + "codePostal": "88240", + "codeCommune": "88029", + "libelleAcheminement": "LA VOGE LES BAINS", + "nomCommune": "LA VOGE LES BAINS" }, { - "codePostal": "88200", - "codeCommune": "88148", - "libelleAcheminement": "DOMMARTIN LES REMIREMONT", - "nomCommune": "DOMMARTIN LES REMIREMONT" + "codePostal": "76210", + "codeCommune": "76382", + "libelleAcheminement": "LANQUETOT", + "nomCommune": "LANQUETOT" }, { - "codePostal": "79370", - "codeCommune": "79185", - "libelleAcheminement": "AIGONDIGNE", - "nomCommune": "AIGONDIGNE" + "codePostal": "88390", + "codeCommune": "88098", + "libelleAcheminement": "CHAUMOUSEY", + "nomCommune": "CHAUMOUSEY" }, { - "codePostal": "71520", - "codeCommune": "71217", - "libelleAcheminement": "GERMOLLES SUR GROSNE", - "nomCommune": "GERMOLLES SUR GROSNE" + "codePostal": "73210", + "codeCommune": "73150", + "libelleAcheminement": "LA PLAGNE TARENTAISE", + "nomCommune": "LA PLAGNE TARENTAISE" }, { - "codePostal": "86100", - "codeCommune": "86066", - "libelleAcheminement": "CHATELLERAULT", - "nomCommune": "CHATELLERAULT" + "codePostal": "88270", + "codeCommune": "88030", + "libelleAcheminement": "BAINVILLE AUX SAULES", + "nomCommune": "BAINVILLE AUX SAULES" }, { - "codePostal": "88260", - "codeCommune": "88149", - "libelleAcheminement": "DOMMARTIN LES VALLOIS", - "nomCommune": "DOMMARTIN LES VALLOIS" + "codePostal": "76730", + "codeCommune": "76383", + "libelleAcheminement": "LESTANVILLE", + "nomCommune": "LESTANVILLE" }, { - "codePostal": "79370", - "codeCommune": "79185", - "libelleAcheminement": "AIGONDIGNE", - "nomCommune": "AIGONDIGNE" + "codePostal": "88150", + "codeCommune": "88099", + "libelleAcheminement": "CHAVELOT", + "nomCommune": "CHAVELOT" }, { - "codePostal": "71160", - "codeCommune": "71220", - "libelleAcheminement": "GILLY SUR LOIRE", - "nomCommune": "GILLY SUR LOIRE" + "codePostal": "73800", + "codeCommune": "73151", + "libelleAcheminement": "PORTE DE SAVOIE", + "nomCommune": "PORTE DE SAVOIE" }, { - "codePostal": "86110", - "codeCommune": "86075", - "libelleAcheminement": "CHOUPPES", - "nomCommune": "CHOUPPES" + "codePostal": "88130", + "codeCommune": "88038", + "libelleAcheminement": "BATTEXEY", + "nomCommune": "BATTEXEY" }, { - "codePostal": "88510", - "codeCommune": "88158", - "libelleAcheminement": "ELOYES", - "nomCommune": "ELOYES" + "codePostal": "76540", + "codeCommune": "76386", + "libelleAcheminement": "LIMPIVILLE", + "nomCommune": "LIMPIVILLE" }, { - "codePostal": "79000", - "codeCommune": "79191", - "libelleAcheminement": "NIORT", - "nomCommune": "NIORT" + "codePostal": "88270", + "codeCommune": "88103", + "libelleAcheminement": "CIRCOURT", + "nomCommune": "CIRCOURT" }, { - "codePostal": "71430", - "codeCommune": "71224", - "libelleAcheminement": "GRANDVAUX", - "nomCommune": "GRANDVAUX" + "codePostal": "73000", + "codeCommune": "73160", + "libelleAcheminement": "MONTAGNOLE", + "nomCommune": "MONTAGNOLE" }, { - "codePostal": "86170", - "codeCommune": "86076", - "libelleAcheminement": "CISSE", - "nomCommune": "CISSE" + "codePostal": "88500", + "codeCommune": "88039", + "libelleAcheminement": "BAUDRICOURT", + "nomCommune": "BAUDRICOURT" }, { - "codePostal": "88600", - "codeCommune": "88172", - "libelleAcheminement": "FIMENIL", - "nomCommune": "FIMENIL" + "codePostal": "76760", + "codeCommune": "76387", + "libelleAcheminement": "LINDEBEUF", + "nomCommune": "LINDEBEUF" }, { - "codePostal": "79100", - "codeCommune": "79196", - "libelleAcheminement": "PLAINE ET VALLEES", - "nomCommune": "PLAINE ET VALLEES" + "codePostal": "88410", + "codeCommune": "88105", + "libelleAcheminement": "CLAUDON", + "nomCommune": "CLAUDON" }, { - "codePostal": "71640", - "codeCommune": "71241", - "libelleAcheminement": "JAMBLES", - "nomCommune": "JAMBLES" + "codePostal": "73100", + "codeCommune": "73164", + "libelleAcheminement": "MONTCEL", + "nomCommune": "MONTCEL" }, { - "codePostal": "86400", - "codeCommune": "86078", - "libelleAcheminement": "CIVRAY", - "nomCommune": "CIVRAY" + "codePostal": "88260", + "codeCommune": "88052", + "libelleAcheminement": "BELRUPT", + "nomCommune": "BELRUPT" }, { - "codePostal": "88130", - "codeCommune": "88173", - "libelleAcheminement": "FLOREMONT", - "nomCommune": "FLOREMONT" + "codePostal": "76790", + "codeCommune": "76390", + "libelleAcheminement": "LES LOGES", + "nomCommune": "LES LOGES" }, { - "codePostal": "79600", - "codeCommune": "79196", - "libelleAcheminement": "PLAINE ET VALLEES", - "nomCommune": "PLAINE ET VALLEES" + "codePostal": "88230", + "codeCommune": "88106", + "libelleAcheminement": "BAN SUR MEURTHE CLEFCY", + "nomCommune": "BAN SUR MEURTHE CLEFCY" }, { - "codePostal": "71380", - "codeCommune": "71253", - "libelleAcheminement": "LANS", - "nomCommune": "LANS" + "codePostal": "73220", + "codeCommune": "73168", + "libelleAcheminement": "MONTGILBERT", + "nomCommune": "MONTGILBERT" }, { - "codePostal": "86490", - "codeCommune": "86081", - "libelleAcheminement": "COLOMBIERS", - "nomCommune": "COLOMBIERS" + "codePostal": "88520", + "codeCommune": "88054", + "libelleAcheminement": "BERTRIMOUTIER", + "nomCommune": "BERTRIMOUTIER" }, { - "codePostal": "88600", - "codeCommune": "88175", - "libelleAcheminement": "FONTENAY", - "nomCommune": "FONTENAY" + "codePostal": "76500", + "codeCommune": "76391", + "libelleAcheminement": "LA LONDE", + "nomCommune": "LA LONDE" }, { - "codePostal": "79220", - "codeCommune": "79200", - "libelleAcheminement": "PAMPLIE", - "nomCommune": "PAMPLIE" + "codePostal": "88140", + "codeCommune": "88114", + "libelleAcheminement": "CONTREXEVILLE", + "nomCommune": "CONTREXEVILLE" }, { - "codePostal": "71440", - "codeCommune": "71256", - "libelleAcheminement": "LESSARD EN BRESSE", - "nomCommune": "LESSARD EN BRESSE" + "codePostal": "73200", + "codeCommune": "73170", + "libelleAcheminement": "MONTHION", + "nomCommune": "MONTHION" }, { - "codePostal": "86600", - "codeCommune": "86083", - "libelleAcheminement": "COULOMBIERS", - "nomCommune": "COULOMBIERS" + "codePostal": "88450", + "codeCommune": "88055", + "libelleAcheminement": "BETTEGNEY ST BRICE", + "nomCommune": "BETTEGNEY ST BRICE" }, { - "codePostal": "88240", - "codeCommune": "88176", - "libelleAcheminement": "FONTENOY LE CHATEAU", - "nomCommune": "FONTENOY LE CHATEAU" + "codePostal": "76940", + "codeCommune": "76401", + "libelleAcheminement": "ARELAUNE EN SEINE", + "nomCommune": "ARELAUNE EN SEINE" }, { - "codePostal": "79190", - "codeCommune": "79212", - "libelleAcheminement": "PLIBOUX", - "nomCommune": "PLIBOUX" + "codePostal": "88270", + "codeCommune": "88122", + "libelleAcheminement": "DAMAS ET BETTEGNEY", + "nomCommune": "DAMAS ET BETTEGNEY" }, { - "codePostal": "71250", - "codeCommune": "71264", - "libelleAcheminement": "LOURNAND", - "nomCommune": "LOURNAND" + "codePostal": "73310", + "codeCommune": "73180", + "libelleAcheminement": "MOTZ", + "nomCommune": "MOTZ" }, { - "codePostal": "86240", - "codeCommune": "86088", - "libelleAcheminement": "CROUTELLE", - "nomCommune": "CROUTELLE" + "codePostal": "88430", + "codeCommune": "88059", + "libelleAcheminement": "BIFFONTAINE", + "nomCommune": "BIFFONTAINE" }, { - "codePostal": "88600", - "codeCommune": "88184", - "libelleAcheminement": "FREMIFONTAINE", - "nomCommune": "FREMIFONTAINE" + "codePostal": "76460", + "codeCommune": "76407", + "libelleAcheminement": "MANNEVILLE ES PLAINS", + "nomCommune": "MANNEVILLE ES PLAINS" }, { - "codePostal": "79130", - "codeCommune": "79215", - "libelleAcheminement": "POUGNE HERISSON", - "nomCommune": "POUGNE HERISSON" + "codePostal": "88320", + "codeCommune": "88123", + "libelleAcheminement": "DAMBLAIN", + "nomCommune": "DAMBLAIN" }, { - "codePostal": "71540", - "codeCommune": "71266", - "libelleAcheminement": "LUCENAY L EVEQUE", - "nomCommune": "LUCENAY L EVEQUE" + "codePostal": "73100", + "codeCommune": "73182", + "libelleAcheminement": "MOUXY", + "nomCommune": "MOUXY" }, { - "codePostal": "86220", - "codeCommune": "86092", - "libelleAcheminement": "DANGE ST ROMAIN", - "nomCommune": "DANGE ST ROMAIN" + "codePostal": "88410", + "codeCommune": "88061", + "libelleAcheminement": "BLEURVILLE", + "nomCommune": "BLEURVILLE" }, { - "codePostal": "88270", - "codeCommune": "88192", - "libelleAcheminement": "GELVECOURT ET ADOMPT", - "nomCommune": "GELVECOURT ET ADOMPT" + "codePostal": "76290", + "codeCommune": "76409", + "libelleAcheminement": "MANNEVILLETTE", + "nomCommune": "MANNEVILLETTE" }, { - "codePostal": "79700", - "codeCommune": "79235", - "libelleAcheminement": "ST AMAND SUR SEVRE", - "nomCommune": "ST AMAND SUR SEVRE" + "codePostal": "88170", + "codeCommune": "88125", + "libelleAcheminement": "DARNEY AUX CHENES", + "nomCommune": "DARNEY AUX CHENES" }, { - "codePostal": "71110", - "codeCommune": "71275", - "libelleAcheminement": "MARCIGNY", - "nomCommune": "MARCIGNY" + "codePostal": "73470", + "codeCommune": "73184", + "libelleAcheminement": "NANCES", + "nomCommune": "NANCES" }, { - "codePostal": "86130", - "codeCommune": "86095", - "libelleAcheminement": "DISSAY", - "nomCommune": "DISSAY" + "codePostal": "88260", + "codeCommune": "88065", + "libelleAcheminement": "BONVILLET", + "nomCommune": "BONVILLET" }, { - "codePostal": "88170", - "codeCommune": "88194", - "libelleAcheminement": "GEMMELAINCOURT", - "nomCommune": "GEMMELAINCOURT" + "codePostal": "76150", + "codeCommune": "76410", + "libelleAcheminement": "MAROMME", + "nomCommune": "MAROMME" }, { - "codePostal": "79380", - "codeCommune": "79236", - "libelleAcheminement": "ST ANDRE SUR SEVRE", - "nomCommune": "ST ANDRE SUR SEVRE" + "codePostal": "88700", + "codeCommune": "88127", + "libelleAcheminement": "DEINVILLERS", + "nomCommune": "DEINVILLERS" }, { - "codePostal": "71220", - "codeCommune": "71279", - "libelleAcheminement": "LE ROUSSET MARIZY", - "nomCommune": "LE ROUSSET MARIZY" + "codePostal": "73260", + "codeCommune": "73187", + "libelleAcheminement": "LA LECHERE", + "nomCommune": "LA LECHERE" }, { - "codePostal": "86140", - "codeCommune": "86096", - "libelleAcheminement": "DOUSSAY", - "nomCommune": "DOUSSAY" + "codePostal": "88250", + "codeCommune": "88075", + "libelleAcheminement": "LA BRESSE", + "nomCommune": "LA BRESSE" }, { - "codePostal": "88400", - "codeCommune": "88196", - "libelleAcheminement": "GERARDMER", - "nomCommune": "GERARDMER" + "codePostal": "76390", + "codeCommune": "76411", + "libelleAcheminement": "MARQUES", + "nomCommune": "MARQUES" }, { - "codePostal": "79400", - "codeCommune": "79253", - "libelleAcheminement": "ST GEORGES DE NOISNE", - "nomCommune": "ST GEORGES DE NOISNE" + "codePostal": "88000", + "codeCommune": "88136", + "libelleAcheminement": "DOGNEVILLE", + "nomCommune": "DOGNEVILLE" }, { - "codePostal": "71760", - "codeCommune": "71280", - "libelleAcheminement": "MARLY SOUS ISSY", - "nomCommune": "MARLY SOUS ISSY" + "codePostal": "73470", + "codeCommune": "73191", + "libelleAcheminement": "NOVALAISE", + "nomCommune": "NOVALAISE" }, { - "codePostal": "86160", - "codeCommune": "86097", - "libelleAcheminement": "LA FERRIERE AIROUX", - "nomCommune": "LA FERRIERE AIROUX" + "codePostal": "88140", + "codeCommune": "88079", + "libelleAcheminement": "BULGNEVILLE", + "nomCommune": "BULGNEVILLE" }, { - "codePostal": "88190", - "codeCommune": "88209", - "libelleAcheminement": "GOLBEY", - "nomCommune": "GOLBEY" + "codePostal": "76660", + "codeCommune": "76430", + "libelleAcheminement": "MESNIL FOLLEMPRISE", + "nomCommune": "MESNIL FOLLEMPRISE" }, { - "codePostal": "79100", - "codeCommune": "79258", - "libelleAcheminement": "ST JACQUES DE THOUARS", - "nomCommune": "ST JACQUES DE THOUARS" + "codePostal": "88170", + "codeCommune": "88137", + "libelleAcheminement": "DOLAINCOURT", + "nomCommune": "DOLAINCOURT" }, { - "codePostal": "71710", - "codeCommune": "71282", - "libelleAcheminement": "MARMAGNE", - "nomCommune": "MARMAGNE" + "codePostal": "73200", + "codeCommune": "73196", + "libelleAcheminement": "PALLUD", + "nomCommune": "PALLUD" }, { - "codePostal": "86300", - "codeCommune": "86098", - "libelleAcheminement": "FLEIX", - "nomCommune": "FLEIX" + "codePostal": "88700", + "codeCommune": "88080", + "libelleAcheminement": "BULT", + "nomCommune": "BULT" }, { - "codePostal": "88270", - "codeCommune": "88210", - "libelleAcheminement": "GORHEY", - "nomCommune": "GORHEY" + "codePostal": "76260", + "codeCommune": "76435", + "libelleAcheminement": "LE MESNIL REAUME", + "nomCommune": "LE MESNIL REAUME" }, { - "codePostal": "79600", - "codeCommune": "79268", - "libelleAcheminement": "ST LOUP LAMAIRE", - "nomCommune": "ST LOUP LAMAIRE" + "codePostal": "88500", + "codeCommune": "88144", + "libelleAcheminement": "DOMEVRE SOUS MONTFORT", + "nomCommune": "DOMEVRE SOUS MONTFORT" }, { - "codePostal": "71700", - "codeCommune": "71284", - "libelleAcheminement": "MARTAILLY LES BRANCION", - "nomCommune": "MARTAILLY LES BRANCION" + "codePostal": "73800", + "codeCommune": "73200", + "libelleAcheminement": "PLANAISE", + "nomCommune": "PLANAISE" }, { - "codePostal": "86160", - "codeCommune": "86103", - "libelleAcheminement": "GENCAY", - "nomCommune": "GENCAY" + "codePostal": "88600", + "codeCommune": "88086", + "libelleAcheminement": "CHAMP LE DUC", + "nomCommune": "CHAMP LE DUC" }, { - "codePostal": "88640", - "codeCommune": "88218", - "libelleAcheminement": "GRANGES AUMONTZEY", - "nomCommune": "GRANGES AUMONTZEY" + "codePostal": "76510", + "codeCommune": "76437", + "libelleAcheminement": "MEULERS", + "nomCommune": "MEULERS" }, { - "codePostal": "79160", - "codeCommune": "79269", - "libelleAcheminement": "ST MAIXENT DE BEUGNE", - "nomCommune": "ST MAIXENT DE BEUGNE" + "codePostal": "88270", + "codeCommune": "88151", + "libelleAcheminement": "DOMPAIRE", + "nomCommune": "DOMPAIRE" }, { - "codePostal": "71250", - "codeCommune": "71290", - "libelleAcheminement": "MAZILLE", - "nomCommune": "MAZILLE" + "codePostal": "73350", + "codeCommune": "73201", + "libelleAcheminement": "PLANAY", + "nomCommune": "PLANAY" }, { - "codePostal": "86340", - "codeCommune": "86105", - "libelleAcheminement": "GIZAY", - "nomCommune": "GIZAY" + "codePostal": "88000", + "codeCommune": "88087", + "libelleAcheminement": "CHANTRAINE", + "nomCommune": "CHANTRAINE" }, { - "codePostal": "88240", - "codeCommune": "88221", - "libelleAcheminement": "GRUEY LES SURANCE", - "nomCommune": "GRUEY LES SURANCE" + "codePostal": "76260", + "codeCommune": "76438", + "libelleAcheminement": "MILLEBOSC", + "nomCommune": "MILLEBOSC" }, { - "codePostal": "79230", - "codeCommune": "79273", - "libelleAcheminement": "ST MARTIN DE BERNEGOUE", - "nomCommune": "ST MARTIN DE BERNEGOUE" + "codePostal": "88500", + "codeCommune": "88155", + "libelleAcheminement": "DOMVALLIER", + "nomCommune": "DOMVALLIER" }, { - "codePostal": "71640", - "codeCommune": "71292", - "libelleAcheminement": "MELLECEY", - "nomCommune": "MELLECEY" + "codePostal": "73110", + "codeCommune": "73205", + "libelleAcheminement": "LE PONTET", + "nomCommune": "LE PONTET" }, { - "codePostal": "86600", - "codeCommune": "86116", - "libelleAcheminement": "JAZENEUIL", - "nomCommune": "JAZENEUIL" + "codePostal": "88240", + "codeCommune": "88088", + "libelleAcheminement": "LA CHAPELLE AUX BOIS", + "nomCommune": "LA CHAPELLE AUX BOIS" }, { - "codePostal": "88600", - "codeCommune": "88222", - "libelleAcheminement": "GUGNECOURT", - "nomCommune": "GUGNECOURT" + "codePostal": "76260", + "codeCommune": "76442", + "libelleAcheminement": "MONCHY SUR EU", + "nomCommune": "MONCHY SUR EU" }, { - "codePostal": "79100", - "codeCommune": "79274", - "libelleAcheminement": "ST MARTIN DE MACON", - "nomCommune": "ST MARTIN DE MACON" + "codePostal": "88320", + "codeCommune": "88179", + "libelleAcheminement": "FOUCHECOURT", + "nomCommune": "FOUCHECOURT" }, { - "codePostal": "71390", - "codeCommune": "71296", - "libelleAcheminement": "MESSEY SUR GROSNE", - "nomCommune": "MESSEY SUR GROSNE" + "codePostal": "73720", + "codeCommune": "73211", + "libelleAcheminement": "QUEIGE", + "nomCommune": "QUEIGE" }, { - "codePostal": "86470", - "codeCommune": "86123", - "libelleAcheminement": "BOIVRE LA VALLEE", - "nomCommune": "BOIVRE LA VALLEE" + "codePostal": "88600", + "codeCommune": "88089", + "libelleAcheminement": "LA CHAPELLE DEVANT BRUYERES", + "nomCommune": "LA CHAPELLE DEVANT BRUYERES" }, { - "codePostal": "88330", - "codeCommune": "88224", - "libelleAcheminement": "HADIGNY LES VERRIERES", - "nomCommune": "HADIGNY LES VERRIERES" + "codePostal": "76380", + "codeCommune": "76446", + "libelleAcheminement": "MONTIGNY", + "nomCommune": "MONTIGNY" }, { - "codePostal": "79150", - "codeCommune": "79280", - "libelleAcheminement": "ST MAURICE ETUSSON", - "nomCommune": "ST MAURICE ETUSSON" + "codePostal": "88270", + "codeCommune": "88187", + "libelleAcheminement": "FRENOIS", + "nomCommune": "FRENOIS" }, { - "codePostal": "71470", - "codeCommune": "71318", - "libelleAcheminement": "MONTPONT EN BRESSE", - "nomCommune": "MONTPONT EN BRESSE" + "codePostal": "73240", + "codeCommune": "73254", + "libelleAcheminement": "STE MARIE D ALVEY", + "nomCommune": "STE MARIE D ALVEY" }, { - "codePostal": "86470", - "codeCommune": "86123", - "libelleAcheminement": "BOIVRE LA VALLEE", - "nomCommune": "BOIVRE LA VALLEE" + "codePostal": "88460", + "codeCommune": "88091", + "libelleAcheminement": "CHARMOIS DEVANT BRUYERES", + "nomCommune": "CHARMOIS DEVANT BRUYERES" }, { - "codePostal": "88300", - "codeCommune": "88227", - "libelleAcheminement": "HAGNEVILLE ET RONCOURT", - "nomCommune": "HAGNEVILLE ET RONCOURT" + "codePostal": "76710", + "codeCommune": "76452", + "libelleAcheminement": "MONTVILLE", + "nomCommune": "MONTVILLE" }, { - "codePostal": "79240", - "codeCommune": "79286", - "libelleAcheminement": "ST PAUL EN GATINE", - "nomCommune": "ST PAUL EN GATINE" + "codePostal": "88270", + "codeCommune": "88192", + "libelleAcheminement": "GELVECOURT ET ADOMPT", + "nomCommune": "GELVECOURT ET ADOMPT" }, { - "codePostal": "71510", - "codeCommune": "71321", - "libelleAcheminement": "MOREY", - "nomCommune": "MOREY" + "codePostal": "73440", + "codeCommune": "73257", + "libelleAcheminement": "LES BELLEVILLE", + "nomCommune": "LES BELLEVILLE" }, { - "codePostal": "86290", - "codeCommune": "86132", - "libelleAcheminement": "LIGLET", - "nomCommune": "LIGLET" + "codePostal": "88500", + "codeCommune": "88097", + "libelleAcheminement": "CHAUFFECOURT", + "nomCommune": "CHAUFFECOURT" }, { - "codePostal": "88270", - "codeCommune": "88233", - "libelleAcheminement": "HAROL", - "nomCommune": "HAROL" + "codePostal": "76750", + "codeCommune": "76453", + "libelleAcheminement": "MORGNY LA POMMERAYE", + "nomCommune": "MORGNY LA POMMERAYE" }, { - "codePostal": "79270", - "codeCommune": "79298", - "libelleAcheminement": "ST SYMPHORIEN", - "nomCommune": "ST SYMPHORIEN" + "codePostal": "88170", + "codeCommune": "88194", + "libelleAcheminement": "GEMMELAINCOURT", + "nomCommune": "GEMMELAINCOURT" }, { - "codePostal": "71240", - "codeCommune": "71328", - "libelleAcheminement": "NANTON", - "nomCommune": "NANTON" + "codePostal": "73440", + "codeCommune": "73257", + "libelleAcheminement": "LES BELLEVILLE", + "nomCommune": "LES BELLEVILLE" }, { - "codePostal": "86160", - "codeCommune": "86141", - "libelleAcheminement": "MAGNE", - "nomCommune": "MAGNE" + "codePostal": "88500", + "codeCommune": "88100", + "libelleAcheminement": "CHEF HAUT", + "nomCommune": "CHEF HAUT" }, { - "codePostal": "88300", - "codeCommune": "88249", - "libelleAcheminement": "JAINVILLOTTE", - "nomCommune": "JAINVILLOTTE" + "codePostal": "76270", + "codeCommune": "76454", + "libelleAcheminement": "MORTEMER", + "nomCommune": "MORTEMER" }, { - "codePostal": "79190", - "codeCommune": "79307", - "libelleAcheminement": "SAUZE VAUSSAIS", - "nomCommune": "SAUZE VAUSSAIS" + "codePostal": "88140", + "codeCommune": "88195", + "libelleAcheminement": "GENDREVILLE", + "nomCommune": "GENDREVILLE" }, { - "codePostal": "71370", - "codeCommune": "71336", - "libelleAcheminement": "OUROUX SUR SAONE", - "nomCommune": "OUROUX SUR SAONE" + "codePostal": "73600", + "codeCommune": "73257", + "libelleAcheminement": "LES BELLEVILLE", + "nomCommune": "LES BELLEVILLE" }, { - "codePostal": "86370", - "codeCommune": "86147", - "libelleAcheminement": "MARIGNY CHEMEREAU", - "nomCommune": "MARIGNY CHEMEREAU" + "codePostal": "88630", + "codeCommune": "88102", + "libelleAcheminement": "CHERMISEY", + "nomCommune": "CHERMISEY" }, { - "codePostal": "88550", - "codeCommune": "88250", - "libelleAcheminement": "JARMENIL", - "nomCommune": "JARMENIL" + "codePostal": "76590", + "codeCommune": "76458", + "libelleAcheminement": "MUCHEDENT", + "nomCommune": "MUCHEDENT" }, { - "codePostal": "79200", - "codeCommune": "79322", - "libelleAcheminement": "LE TALLUD", - "nomCommune": "LE TALLUD" + "codePostal": "88430", + "codeCommune": "88198", + "libelleAcheminement": "GERBEPAL", + "nomCommune": "GERBEPAL" }, { - "codePostal": "71120", - "codeCommune": "71339", - "libelleAcheminement": "OZOLLES", - "nomCommune": "OZOLLES" + "codePostal": "73130", + "codeCommune": "73259", + "libelleAcheminement": "ST MARTIN SUR LA CHAMBRE", + "nomCommune": "ST MARTIN SUR LA CHAMBRE" }, { - "codePostal": "86110", - "codeCommune": "86154", - "libelleAcheminement": "MAZEUIL", - "nomCommune": "MAZEUIL" + "codePostal": "88300", + "codeCommune": "88104", + "libelleAcheminement": "CIRCOURT SUR MOUZON", + "nomCommune": "CIRCOURT SUR MOUZON" }, { - "codePostal": "88500", - "codeCommune": "88254", - "libelleAcheminement": "JORXEY", - "nomCommune": "JORXEY" + "codePostal": "76520", + "codeCommune": "76464", + "libelleAcheminement": "LA NEUVILLE CHANT D OISEL", + "nomCommune": "LA NEUVILLE CHANT D OISEL" }, { - "codePostal": "79100", - "codeCommune": "79329", - "libelleAcheminement": "THOUARS", - "nomCommune": "THOUARS" + "codePostal": "88410", + "codeCommune": "88208", + "libelleAcheminement": "GODONCOURT", + "nomCommune": "GODONCOURT" }, { - "codePostal": "71700", - "codeCommune": "71353", - "libelleAcheminement": "PLOTTES", - "nomCommune": "PLOTTES" + "codePostal": "73310", + "codeCommune": "73273", + "libelleAcheminement": "ST PIERRE DE CURTILLE", + "nomCommune": "ST PIERRE DE CURTILLE" }, { - "codePostal": "86440", - "codeCommune": "86158", - "libelleAcheminement": "MIGNE AUXANCES", - "nomCommune": "MIGNE AUXANCES" + "codePostal": "88170", + "codeCommune": "88117", + "libelleAcheminement": "COURCELLES SOUS CHATENOIS", + "nomCommune": "COURCELLES SOUS CHATENOIS" }, { - "codePostal": "88410", - "codeCommune": "88272", - "libelleAcheminement": "LIRONCOURT", - "nomCommune": "LIRONCOURT" + "codePostal": "76940", + "codeCommune": "76473", + "libelleAcheminement": "NOTRE DAME DE BLIQUETUIT", + "nomCommune": "NOTRE DAME DE BLIQUETUIT" }, { - "codePostal": "79210", - "codeCommune": "79334", - "libelleAcheminement": "VAL DU MIGNON", - "nomCommune": "VAL DU MIGNON" + "codePostal": "88640", + "codeCommune": "88218", + "libelleAcheminement": "GRANGES AUMONTZEY", + "nomCommune": "GRANGES AUMONTZEY" }, { - "codePostal": "71150", - "codeCommune": "71369", - "libelleAcheminement": "REMIGNY", - "nomCommune": "REMIGNY" + "codePostal": "73660", + "codeCommune": "73278", + "libelleAcheminement": "ST REMY DE MAURIENNE", + "nomCommune": "ST REMY DE MAURIENNE" }, { - "codePostal": "86330", - "codeCommune": "86161", - "libelleAcheminement": "MONCONTOUR", - "nomCommune": "MONCONTOUR" + "codePostal": "88140", + "codeCommune": "88119", + "libelleAcheminement": "CRAINVILLIERS", + "nomCommune": "CRAINVILLIERS" }, { - "codePostal": "88490", - "codeCommune": "88275", - "libelleAcheminement": "LUBINE", - "nomCommune": "LUBINE" + "codePostal": "76660", + "codeCommune": "76487", + "libelleAcheminement": "OSMOY ST VALERY", + "nomCommune": "OSMOY ST VALERY" }, { - "codePostal": "79120", - "codeCommune": "79338", - "libelleAcheminement": "VANZAY", - "nomCommune": "VANZAY" + "codePostal": "88240", + "codeCommune": "88221", + "libelleAcheminement": "GRUEY LES SURANCE", + "nomCommune": "GRUEY LES SURANCE" }, { - "codePostal": "71160", - "codeCommune": "71370", - "libelleAcheminement": "RIGNY SUR ARROUX", - "nomCommune": "RIGNY SUR ARROUX" + "codePostal": "73160", + "codeCommune": "73281", + "libelleAcheminement": "ST SULPICE", + "nomCommune": "ST SULPICE" }, { - "codePostal": "86330", - "codeCommune": "86161", - "libelleAcheminement": "MONCONTOUR", - "nomCommune": "MONCONTOUR" + "codePostal": "88330", + "codeCommune": "88121", + "libelleAcheminement": "DAMAS AUX BOIS", + "nomCommune": "DAMAS AUX BOIS" }, { - "codePostal": "88650", - "codeCommune": "88284", - "libelleAcheminement": "MANDRAY", - "nomCommune": "MANDRAY" + "codePostal": "76360", + "codeCommune": "76503", + "libelleAcheminement": "PISSY POVILLE", + "nomCommune": "PISSY POVILLE" }, { - "codePostal": "79420", - "codeCommune": "79340", - "libelleAcheminement": "VAUSSEROUX", - "nomCommune": "VAUSSEROUX" + "codePostal": "88300", + "codeCommune": "88232", + "libelleAcheminement": "HARMONVILLE", + "nomCommune": "HARMONVILLE" }, { - "codePostal": "71700", - "codeCommune": "71377", - "libelleAcheminement": "ROYER", - "nomCommune": "ROYER" + "codePostal": "73160", + "codeCommune": "73282", + "libelleAcheminement": "ST THIBAUD DE COUZ", + "nomCommune": "ST THIBAUD DE COUZ" }, { - "codePostal": "86330", - "codeCommune": "86161", - "libelleAcheminement": "MONCONTOUR", - "nomCommune": "MONCONTOUR" + "codePostal": "88260", + "codeCommune": "88124", + "libelleAcheminement": "DARNEY", + "nomCommune": "DARNEY" }, { - "codePostal": "88130", - "codeCommune": "88286", - "libelleAcheminement": "MARAINVILLE SUR MADON", - "nomCommune": "MARAINVILLE SUR MADON" + "codePostal": "76440", + "codeCommune": "76505", + "libelleAcheminement": "POMMEREUX", + "nomCommune": "POMMEREUX" }, { - "codePostal": "79310", - "codeCommune": "79345", - "libelleAcheminement": "VERRUYES", - "nomCommune": "VERRUYES" + "codePostal": "88270", + "codeCommune": "88237", + "libelleAcheminement": "HENNECOURT", + "nomCommune": "HENNECOURT" }, { - "codePostal": "71580", - "codeCommune": "71380", - "libelleAcheminement": "SAILLENARD", - "nomCommune": "SAILLENARD" + "codePostal": "73600", + "codeCommune": "73284", + "libelleAcheminement": "SALINS FONTAINE", + "nomCommune": "SALINS FONTAINE" }, { - "codePostal": "86500", - "codeCommune": "86165", - "libelleAcheminement": "MONTMORILLON", - "nomCommune": "MONTMORILLON" + "codePostal": "88210", + "codeCommune": "88128", + "libelleAcheminement": "DENIPAIRE", + "nomCommune": "DENIPAIRE" }, { - "codePostal": "88320", - "codeCommune": "88287", - "libelleAcheminement": "MAREY", - "nomCommune": "MAREY" + "codePostal": "76260", + "codeCommune": "76507", + "libelleAcheminement": "PONTS ET MARAIS", + "nomCommune": "PONTS ET MARAIS" }, { - "codePostal": "79160", - "codeCommune": "79351", - "libelleAcheminement": "VILLIERS EN PLAINE", - "nomCommune": "VILLIERS EN PLAINE" + "codePostal": "88130", + "codeCommune": "88239", + "libelleAcheminement": "HERGUGNEY", + "nomCommune": "HERGUGNEY" }, { - "codePostal": "71570", - "codeCommune": "71385", - "libelleAcheminement": "ST AMOUR BELLEVUE", - "nomCommune": "ST AMOUR BELLEVUE" + "codePostal": "73700", + "codeCommune": "73285", + "libelleAcheminement": "SEEZ", + "nomCommune": "SEEZ" }, { - "codePostal": "86310", - "codeCommune": "86175", - "libelleAcheminement": "NALLIERS", - "nomCommune": "NALLIERS" + "codePostal": "88270", + "codeCommune": "88129", + "libelleAcheminement": "DERBAMONT", + "nomCommune": "DERBAMONT" }, { - "codePostal": "88150", - "codeCommune": "88294", - "libelleAcheminement": "MAZELEY", - "nomCommune": "MAZELEY" + "codePostal": "76840", + "codeCommune": "76513", + "libelleAcheminement": "QUEVILLON", + "nomCommune": "QUEVILLON" }, { - "codePostal": "79170", - "codeCommune": "79352", - "libelleAcheminement": "VILLIERS SUR CHIZE", - "nomCommune": "VILLIERS SUR CHIZE" + "codePostal": "88600", + "codeCommune": "88240", + "libelleAcheminement": "HERPELMONT", + "nomCommune": "HERPELMONT" }, { - "codePostal": "71440", - "codeCommune": "71386", - "libelleAcheminement": "ST ANDRE EN BRESSE", - "nomCommune": "ST ANDRE EN BRESSE" + "codePostal": "73480", + "codeCommune": "73290", + "libelleAcheminement": "VAL CENIS", + "nomCommune": "VAL CENIS" }, { - "codePostal": "86150", - "codeCommune": "86176", - "libelleAcheminement": "NERIGNAC", - "nomCommune": "NERIGNAC" + "codePostal": "88600", + "codeCommune": "88130", + "libelleAcheminement": "DESTORD", + "nomCommune": "DESTORD" }, { - "codePostal": "88500", - "codeCommune": "88295", - "libelleAcheminement": "MAZIROT", - "nomCommune": "MAZIROT" + "codePostal": "76230", + "codeCommune": "76517", + "libelleAcheminement": "QUINCAMPOIX", + "nomCommune": "QUINCAMPOIX" }, { - "codePostal": "79220", - "codeCommune": "79357", - "libelleAcheminement": "XAINTRAY", - "nomCommune": "XAINTRAY" + "codePostal": "88320", + "codeCommune": "88248", + "libelleAcheminement": "ISCHES", + "nomCommune": "ISCHES" }, { - "codePostal": "71430", - "codeCommune": "71395", - "libelleAcheminement": "ST BONNET DE VIEILLE VIGNE", - "nomCommune": "ST BONNET DE VIEILLE VIGNE" + "codePostal": "73790", + "codeCommune": "73298", + "libelleAcheminement": "TOURS EN SAVOIE", + "nomCommune": "TOURS EN SAVOIE" }, { - "codePostal": "86200", - "codeCommune": "86181", - "libelleAcheminement": "NUEIL SOUS FAYE", - "nomCommune": "NUEIL SOUS FAYE" + "codePostal": "88600", + "codeCommune": "88131", + "libelleAcheminement": "DEYCIMONT", + "nomCommune": "DEYCIMONT" }, { - "codePostal": "88700", - "codeCommune": "88301", - "libelleAcheminement": "MENIL SUR BELVITTE", - "nomCommune": "MENIL SUR BELVITTE" + "codePostal": "76210", + "codeCommune": "76518", + "libelleAcheminement": "RAFFETOT", + "nomCommune": "RAFFETOT" }, { - "codePostal": "80100", - "codeCommune": "80001", - "libelleAcheminement": "ABBEVILLE", - "nomCommune": "ABBEVILLE" + "codePostal": "88300", + "codeCommune": "88249", + "libelleAcheminement": "JAINVILLOTTE", + "nomCommune": "JAINVILLOTTE" }, { - "codePostal": "71640", - "codeCommune": "71403", - "libelleAcheminement": "ST DENIS DE VAUX", - "nomCommune": "ST DENIS DE VAUX" + "codePostal": "73100", + "codeCommune": "73300", + "libelleAcheminement": "TRESSERVE", + "nomCommune": "TRESSERVE" }, { - "codePostal": "86220", - "codeCommune": "86183", - "libelleAcheminement": "LES ORMES", - "nomCommune": "LES ORMES" + "codePostal": "88000", + "codeCommune": "88132", + "libelleAcheminement": "DEYVILLERS", + "nomCommune": "DEYVILLERS" }, { - "codePostal": "88140", - "codeCommune": "88316", - "libelleAcheminement": "MORVILLE", - "nomCommune": "MORVILLE" + "codePostal": "76730", + "codeCommune": "76519", + "libelleAcheminement": "RAINFREVILLE", + "nomCommune": "RAINFREVILLE" }, { - "codePostal": "80270", - "codeCommune": "80013", - "libelleAcheminement": "AIRAINES", - "nomCommune": "AIRAINES" + "codePostal": "88000", + "codeCommune": "88253", + "libelleAcheminement": "JEUXEY", + "nomCommune": "JEUXEY" }, { - "codePostal": "71620", - "codeCommune": "71405", - "libelleAcheminement": "ST DIDIER EN BRESSE", - "nomCommune": "ST DIDIER EN BRESSE" + "codePostal": "73400", + "codeCommune": "73303", + "libelleAcheminement": "UGINE", + "nomCommune": "UGINE" }, { - "codePostal": "86220", - "codeCommune": "86186", - "libelleAcheminement": "OYRE", - "nomCommune": "OYRE" + "codePostal": "88000", + "codeCommune": "88133", + "libelleAcheminement": "DIGNONVILLE", + "nomCommune": "DIGNONVILLE" }, { - "codePostal": "88300", - "codeCommune": "88321", - "libelleAcheminement": "NEUFCHATEAU", - "nomCommune": "NEUFCHATEAU" + "codePostal": "76340", + "codeCommune": "76523", + "libelleAcheminement": "RETONVAL", + "nomCommune": "RETONVAL" }, { - "codePostal": "80200", - "codeCommune": "80015", - "libelleAcheminement": "AIZECOURT LE HAUT", - "nomCommune": "AIZECOURT LE HAUT" + "codePostal": "88640", + "codeCommune": "88256", + "libelleAcheminement": "JUSSARUPT", + "nomCommune": "JUSSARUPT" }, { - "codePostal": "71190", - "codeCommune": "71407", - "libelleAcheminement": "ST DIDIER SUR ARROUX", - "nomCommune": "ST DIDIER SUR ARROUX" + "codePostal": "73150", + "codeCommune": "73304", + "libelleAcheminement": "VAL D ISERE", + "nomCommune": "VAL D ISERE" }, { - "codePostal": "86300", - "codeCommune": "86187", - "libelleAcheminement": "PAIZAY LE SEC", - "nomCommune": "PAIZAY LE SEC" + "codePostal": "88390", + "codeCommune": "88147", + "libelleAcheminement": "DOMMARTIN AUX BOIS", + "nomCommune": "DOMMARTIN AUX BOIS" }, { - "codePostal": "88600", - "codeCommune": "88322", - "libelleAcheminement": "LA NEUVEVILLE DEVANT LEPANGES", - "nomCommune": "LA NEUVEVILLE DEVANT LEPANGES" + "codePostal": "76560", + "codeCommune": "76524", + "libelleAcheminement": "REUVILLE", + "nomCommune": "REUVILLE" }, { - "codePostal": "80300", - "codeCommune": "80016", - "libelleAcheminement": "ALBERT", - "nomCommune": "ALBERT" + "codePostal": "88500", + "codeCommune": "88257", + "libelleAcheminement": "JUVAINCOURT", + "nomCommune": "JUVAINCOURT" }, { - "codePostal": "71370", - "codeCommune": "71410", - "libelleAcheminement": "ST ETIENNE EN BRESSE", - "nomCommune": "ST ETIENNE EN BRESSE" + "codePostal": "73170", + "codeCommune": "73313", + "libelleAcheminement": "VERTHEMEX", + "nomCommune": "VERTHEMEX" }, { - "codePostal": "86320", - "codeCommune": "86190", - "libelleAcheminement": "PERSAC", - "nomCommune": "PERSAC" + "codePostal": "88600", + "codeCommune": "88152", + "libelleAcheminement": "DOMPIERRE", + "nomCommune": "DOMPIERRE" }, { - "codePostal": "88800", - "codeCommune": "88332", - "libelleAcheminement": "NORROY", - "nomCommune": "NORROY" + "codePostal": "76700", + "codeCommune": "76533", + "libelleAcheminement": "ROGERVILLE", + "nomCommune": "ROGERVILLE" }, { - "codePostal": "80270", - "codeCommune": "80019", - "libelleAcheminement": "ALLERY", - "nomCommune": "ALLERY" + "codePostal": "88320", + "codeCommune": "88258", + "libelleAcheminement": "LAMARCHE", + "nomCommune": "LAMARCHE" }, { - "codePostal": "71460", - "codeCommune": "71417", - "libelleAcheminement": "ST GENGOUX LE NATIONAL", - "nomCommune": "ST GENGOUX LE NATIONAL" + "codePostal": "73170", + "codeCommune": "73330", + "libelleAcheminement": "YENNE", + "nomCommune": "YENNE" }, { - "codePostal": "86450", - "codeCommune": "86193", - "libelleAcheminement": "PLEUMARTIN", - "nomCommune": "PLEUMARTIN" + "codePostal": "88700", + "codeCommune": "88153", + "libelleAcheminement": "DOMPTAIL", + "nomCommune": "DOMPTAIL" }, { - "codePostal": "88170", - "codeCommune": "88336", - "libelleAcheminement": "OLLAINVILLE", - "nomCommune": "OLLAINVILLE" + "codePostal": "76133", + "codeCommune": "76534", + "libelleAcheminement": "ROLLEVILLE", + "nomCommune": "ROLLEVILLE" }, { - "codePostal": "80260", - "codeCommune": "80020", - "libelleAcheminement": "ALLONVILLE", - "nomCommune": "ALLONVILLE" + "codePostal": "88300", + "codeCommune": "88259", + "libelleAcheminement": "LANDAVILLE", + "nomCommune": "LANDAVILLE" }, { - "codePostal": "71800", - "codeCommune": "71437", - "libelleAcheminement": "ST LAURENT EN BRIONNAIS", - "nomCommune": "ST LAURENT EN BRIONNAIS" + "codePostal": "74540", + "codeCommune": "74002", + "libelleAcheminement": "ALBY SUR CHERAN", + "nomCommune": "ALBY SUR CHERAN" }, { - "codePostal": "86000", - "codeCommune": "86194", - "libelleAcheminement": "POITIERS", - "nomCommune": "POITIERS" + "codePostal": "88630", + "codeCommune": "88154", + "libelleAcheminement": "DOMREMY LA PUCELLE", + "nomCommune": "DOMREMY LA PUCELLE" }, { - "codePostal": "88700", - "codeCommune": "88340", - "libelleAcheminement": "PADOUX", - "nomCommune": "PADOUX" + "codePostal": "76440", + "codeCommune": "76535", + "libelleAcheminement": "RONCHEROLLES EN BRAY", + "nomCommune": "RONCHEROLLES EN BRAY" }, { - "codePostal": "80090", - "codeCommune": "80021", - "libelleAcheminement": "AMIENS", - "nomCommune": "AMIENS" + "codePostal": "88600", + "codeCommune": "88266", + "libelleAcheminement": "LEPANGES SUR VOLOGNE", + "nomCommune": "LEPANGES SUR VOLOGNE" }, { - "codePostal": "71360", - "codeCommune": "71438", - "libelleAcheminement": "ST LEGER DU BOIS", - "nomCommune": "ST LEGER DU BOIS" + "codePostal": "74290", + "codeCommune": "74003", + "libelleAcheminement": "ALEX", + "nomCommune": "ALEX" }, { - "codePostal": "86460", - "codeCommune": "86200", - "libelleAcheminement": "PRESSAC", - "nomCommune": "PRESSAC" + "codePostal": "88220", + "codeCommune": "88157", + "libelleAcheminement": "DOUNOUX", + "nomCommune": "DOUNOUX" }, { - "codePostal": "88490", - "codeCommune": "88345", - "libelleAcheminement": "LA PETITE FOSSE", - "nomCommune": "LA PETITE FOSSE" + "codePostal": "76100", + "codeCommune": "76540", + "libelleAcheminement": "ROUEN", + "nomCommune": "ROUEN" }, { - "codePostal": "80500", - "codeCommune": "80032", - "libelleAcheminement": "ASSAINVILLERS", - "nomCommune": "ASSAINVILLERS" + "codePostal": "88410", + "codeCommune": "88272", + "libelleAcheminement": "LIRONCOURT", + "nomCommune": "LIRONCOURT" }, { - "codePostal": "71520", - "codeCommune": "71441", - "libelleAcheminement": "ST LEGER SOUS LA BUSSIERE", - "nomCommune": "ST LEGER SOUS LA BUSSIERE" + "codePostal": "74350", + "codeCommune": "74006", + "libelleAcheminement": "ALLONZIER LA CAILLE", + "nomCommune": "ALLONZIER LA CAILLE" }, { - "codePostal": "86250", - "codeCommune": "86242", - "libelleAcheminement": "ST ROMAIN", - "nomCommune": "ST ROMAIN" + "codePostal": "88410", + "codeCommune": "88171", + "libelleAcheminement": "FIGNEVELLE", + "nomCommune": "FIGNEVELLE" }, { - "codePostal": "88500", - "codeCommune": "88357", - "libelleAcheminement": "POUSSAY", - "nomCommune": "POUSSAY" + "codePostal": "76113", + "codeCommune": "76550", + "libelleAcheminement": "SAHURS", + "nomCommune": "SAHURS" }, { - "codePostal": "80560", - "codeCommune": "80038", - "libelleAcheminement": "AUCHONVILLERS", - "nomCommune": "AUCHONVILLERS" + "codePostal": "88000", + "codeCommune": "88273", + "libelleAcheminement": "LONGCHAMP", + "nomCommune": "LONGCHAMP" }, { - "codePostal": "71350", - "codeCommune": "71443", - "libelleAcheminement": "ST LOUP GEANGES", - "nomCommune": "ST LOUP GEANGES" + "codePostal": "74100", + "codeCommune": "74008", + "libelleAcheminement": "AMBILLY", + "nomCommune": "AMBILLY" }, { - "codePostal": "86100", - "codeCommune": "86245", - "libelleAcheminement": "SENILLE ST SAUVEUR", - "nomCommune": "SENILLE ST SAUVEUR" + "codePostal": "88600", + "codeCommune": "88172", + "libelleAcheminement": "FIMENIL", + "nomCommune": "FIMENIL" }, { - "codePostal": "88490", - "codeCommune": "88361", - "libelleAcheminement": "PROVENCHERES ET COLROY", - "nomCommune": "PROVENCHERES ET COLROY" + "codePostal": "76310", + "codeCommune": "76552", + "libelleAcheminement": "STE ADRESSE", + "nomCommune": "STE ADRESSE" }, { - "codePostal": "80490", - "codeCommune": "80051", - "libelleAcheminement": "BAILLEUL", - "nomCommune": "BAILLEUL" + "codePostal": "88170", + "codeCommune": "88274", + "libelleAcheminement": "LONGCHAMP SOUS CHATENOIS", + "nomCommune": "LONGCHAMP SOUS CHATENOIS" }, { - "codePostal": "71640", - "codeCommune": "71447", - "libelleAcheminement": "ST MARD DE VAUX", - "nomCommune": "ST MARD DE VAUX" + "codePostal": "74200", + "codeCommune": "74013", + "libelleAcheminement": "ANTHY SUR LEMAN", + "nomCommune": "ANTHY SUR LEMAN" }, { - "codePostal": "86310", - "codeCommune": "86246", - "libelleAcheminement": "ST SAVIN", - "nomCommune": "ST SAVIN" + "codePostal": "88600", + "codeCommune": "88175", + "libelleAcheminement": "FONTENAY", + "nomCommune": "FONTENAY" }, { - "codePostal": "88270", - "codeCommune": "88370", - "libelleAcheminement": "RANCOURT", - "nomCommune": "RANCOURT" + "codePostal": "76170", + "codeCommune": "76556", + "libelleAcheminement": "ST ANTOINE LA FORET", + "nomCommune": "ST ANTOINE LA FORET" }, { - "codePostal": "80600", - "codeCommune": "80055", - "libelleAcheminement": "BARLY", - "nomCommune": "BARLY" + "codePostal": "88650", + "codeCommune": "88284", + "libelleAcheminement": "MANDRAY", + "nomCommune": "MANDRAY" }, { - "codePostal": "71118", - "codeCommune": "71448", - "libelleAcheminement": "ST MARTIN BELLE ROCHE", - "nomCommune": "ST MARTIN BELLE ROCHE" + "codePostal": "74300", + "codeCommune": "74014", + "libelleAcheminement": "ARACHES LA FRASSE", + "nomCommune": "ARACHES LA FRASSE" }, { - "codePostal": "86400", - "codeCommune": "86247", - "libelleAcheminement": "ST SAVIOL", - "nomCommune": "ST SAVIOL" + "codePostal": "88240", + "codeCommune": "88176", + "libelleAcheminement": "FONTENOY LE CHATEAU", + "nomCommune": "FONTENOY LE CHATEAU" }, { - "codePostal": "88130", - "codeCommune": "88374", - "libelleAcheminement": "RAPEY", - "nomCommune": "RAPEY" + "codePostal": "76520", + "codeCommune": "76558", + "libelleAcheminement": "ST AUBIN CELLOVILLE", + "nomCommune": "ST AUBIN CELLOVILLE" }, { - "codePostal": "80170", - "codeCommune": "80058", - "libelleAcheminement": "BAYONVILLERS", - "nomCommune": "BAYONVILLERS" + "codePostal": "88410", + "codeCommune": "88291", + "libelleAcheminement": "MARTINVELLE", + "nomCommune": "MARTINVELLE" }, { - "codePostal": "71220", - "codeCommune": "71452", - "libelleAcheminement": "ST MARTIN DE SALENCEY", - "nomCommune": "ST MARTIN DE SALENCEY" + "codePostal": "74160", + "codeCommune": "74016", + "libelleAcheminement": "ARCHAMPS", + "nomCommune": "ARCHAMPS" }, { - "codePostal": "86120", - "codeCommune": "86250", - "libelleAcheminement": "SAIX", - "nomCommune": "SAIX" + "codePostal": "88530", + "codeCommune": "88177", + "libelleAcheminement": "LA FORGE", + "nomCommune": "LA FORGE" }, { - "codePostal": "88300", - "codeCommune": "88376", - "libelleAcheminement": "REBEUVILLE", - "nomCommune": "REBEUVILLE" + "codePostal": "76160", + "codeCommune": "76560", + "libelleAcheminement": "ST AUBIN EPINAY", + "nomCommune": "ST AUBIN EPINAY" }, { - "codePostal": "80500", - "codeCommune": "80074", - "libelleAcheminement": "BECQUIGNY", - "nomCommune": "BECQUIGNY" + "codePostal": "88600", + "codeCommune": "88297", + "libelleAcheminement": "MEMENIL", + "nomCommune": "MEMENIL" }, { - "codePostal": "71110", - "codeCommune": "71453", - "libelleAcheminement": "ST MARTIN DU LAC", - "nomCommune": "ST MARTIN DU LAC" + "codePostal": "74800", + "codeCommune": "74018", + "libelleAcheminement": "ARENTHON", + "nomCommune": "ARENTHON" }, { - "codePostal": "86230", - "codeCommune": "86260", - "libelleAcheminement": "SERIGNY", - "nomCommune": "SERIGNY" + "codePostal": "88500", + "codeCommune": "88185", + "libelleAcheminement": "FRENELLE LA GRANDE", + "nomCommune": "FRENELLE LA GRANDE" }, { - "codePostal": "88410", - "codeCommune": "88377", - "libelleAcheminement": "REGNEVELLE", - "nomCommune": "REGNEVELLE" + "codePostal": "76740", + "codeCommune": "76564", + "libelleAcheminement": "ST AUBIN SUR MER", + "nomCommune": "ST AUBIN SUR MER" }, { - "codePostal": "80260", - "codeCommune": "80077", - "libelleAcheminement": "BEHENCOURT", - "nomCommune": "BEHENCOURT" + "codePostal": "88630", + "codeCommune": "88303", + "libelleAcheminement": "MIDREVAUX", + "nomCommune": "MIDREVAUX" }, { - "codePostal": "71580", - "codeCommune": "71454", - "libelleAcheminement": "ST MARTIN DU MONT", - "nomCommune": "ST MARTIN DU MONT" + "codePostal": "74130", + "codeCommune": "74024", + "libelleAcheminement": "AYSE", + "nomCommune": "AYSE" }, { - "codePostal": "86290", - "codeCommune": "86270", - "libelleAcheminement": "THOLLET", - "nomCommune": "THOLLET" + "codePostal": "88160", + "codeCommune": "88188", + "libelleAcheminement": "FRESSE SUR MOSELLE", + "nomCommune": "FRESSE SUR MOSELLE" }, { - "codePostal": "88500", - "codeCommune": "88382", - "libelleAcheminement": "REMICOURT", - "nomCommune": "REMICOURT" + "codePostal": "76190", + "codeCommune": "76568", + "libelleAcheminement": "ST CLAIR SUR LES MONTS", + "nomCommune": "ST CLAIR SUR LES MONTS" }, { - "codePostal": "80140", - "codeCommune": "80084", - "libelleAcheminement": "BERMESNIL", - "nomCommune": "BERMESNIL" + "codePostal": "88330", + "codeCommune": "88313", + "libelleAcheminement": "MORIVILLE", + "nomCommune": "MORIVILLE" }, { - "codePostal": "71350", - "codeCommune": "71457", - "libelleAcheminement": "ST MARTIN EN GATINOIS", - "nomCommune": "ST MARTIN EN GATINOIS" + "codePostal": "74140", + "codeCommune": "74025", + "libelleAcheminement": "BALLAISON", + "nomCommune": "BALLAISON" }, { - "codePostal": "86540", - "codeCommune": "86272", - "libelleAcheminement": "THURE", - "nomCommune": "THURE" + "codePostal": "88350", + "codeCommune": "88189", + "libelleAcheminement": "FREVILLE", + "nomCommune": "FREVILLE" }, { - "codePostal": "88200", - "codeCommune": "88383", - "libelleAcheminement": "REMIREMONT", - "nomCommune": "REMIREMONT" + "codePostal": "76860", + "codeCommune": "76572", + "libelleAcheminement": "ST DENIS D ACLON", + "nomCommune": "ST DENIS D ACLON" }, { - "codePostal": "80140", - "codeCommune": "80084", - "libelleAcheminement": "BERMESNIL", - "nomCommune": "BERMESNIL" + "codePostal": "88210", + "codeCommune": "88317", + "libelleAcheminement": "MOUSSEY", + "nomCommune": "MOUSSEY" }, { - "codePostal": "71460", - "codeCommune": "71458", - "libelleAcheminement": "ST MARTIN LA PATROUILLE", - "nomCommune": "ST MARTIN LA PATROUILLE" + "codePostal": "74430", + "codeCommune": "74030", + "libelleAcheminement": "LA BAUME", + "nomCommune": "LA BAUME" }, { - "codePostal": "86120", - "codeCommune": "86274", - "libelleAcheminement": "LES TROIS MOUTIERS", - "nomCommune": "LES TROIS MOUTIERS" + "codePostal": "88520", + "codeCommune": "88193", + "libelleAcheminement": "GEMAINGOUTTE", + "nomCommune": "GEMAINGOUTTE" }, { - "codePostal": "88320", - "codeCommune": "88390", - "libelleAcheminement": "ROBECOURT", - "nomCommune": "ROBECOURT" + "codePostal": "76116", + "codeCommune": "76573", + "libelleAcheminement": "ST DENIS LE THIBOULT", + "nomCommune": "ST DENIS LE THIBOULT" }, { - "codePostal": "80440", - "codeCommune": "80107", - "libelleAcheminement": "BLANGY TRONVILLE", - "nomCommune": "BLANGY TRONVILLE" + "codePostal": "88470", + "codeCommune": "88328", + "libelleAcheminement": "NOMPATELIZE", + "nomCommune": "NOMPATELIZE" }, { - "codePostal": "71260", - "codeCommune": "71460", - "libelleAcheminement": "ST MAURICE DE SATONNAY", - "nomCommune": "ST MAURICE DE SATONNAY" + "codePostal": "74150", + "codeCommune": "74035", + "libelleAcheminement": "BLOYE", + "nomCommune": "BLOYE" }, { - "codePostal": "86230", - "codeCommune": "86275", - "libelleAcheminement": "USSEAU", - "nomCommune": "USSEAU" + "codePostal": "88390", + "codeCommune": "88201", + "libelleAcheminement": "GIRANCOURT", + "nomCommune": "GIRANCOURT" }, { - "codePostal": "88460", - "codeCommune": "88399", - "libelleAcheminement": "LE ROULIER", - "nomCommune": "LE ROULIER" + "codePostal": "76490", + "codeCommune": "76585", + "libelleAcheminement": "ST GILLES DE CRETOT", + "nomCommune": "ST GILLES DE CRETOT" }, { - "codePostal": "80150", - "codeCommune": "80109", - "libelleAcheminement": "LE BOISLE", - "nomCommune": "LE BOISLE" + "codePostal": "88500", + "codeCommune": "88334", + "libelleAcheminement": "OELLEVILLE", + "nomCommune": "OELLEVILLE" }, { - "codePostal": "71490", - "codeCommune": "71464", - "libelleAcheminement": "ST MAURICE LES COUCHES", - "nomCommune": "ST MAURICE LES COUCHES" + "codePostal": "74360", + "codeCommune": "74041", + "libelleAcheminement": "BONNEVAUX", + "nomCommune": "BONNEVAUX" }, { - "codePostal": "86230", - "codeCommune": "86280", - "libelleAcheminement": "VELLECHES", - "nomCommune": "VELLECHES" + "codePostal": "88500", + "codeCommune": "88202", + "libelleAcheminement": "GIRCOURT LES VIEVILLE", + "nomCommune": "GIRCOURT LES VIEVILLE" }, { - "codePostal": "88360", - "codeCommune": "88408", - "libelleAcheminement": "RUPT SUR MOSELLE", - "nomCommune": "RUPT SUR MOSELLE" + "codePostal": "76680", + "codeCommune": "76588", + "libelleAcheminement": "ST HELLIER", + "nomCommune": "ST HELLIER" }, { - "codePostal": "80220", - "codeCommune": "80120", - "libelleAcheminement": "BOUILLANCOURT EN SERY", - "nomCommune": "BOUILLANCOURT EN SERY" + "codePostal": "88500", + "codeCommune": "88335", + "libelleAcheminement": "OFFROICOURT", + "nomCommune": "OFFROICOURT" }, { - "codePostal": "71460", - "codeCommune": "71465", - "libelleAcheminement": "ST MICAUD", - "nomCommune": "ST MICAUD" + "codePostal": "74890", + "codeCommune": "74043", + "libelleAcheminement": "BONS EN CHABLAIS", + "nomCommune": "BONS EN CHABLAIS" }, { - "codePostal": "86190", - "codeCommune": "86292", - "libelleAcheminement": "VILLIERS", - "nomCommune": "VILLIERS" + "codePostal": "88270", + "codeCommune": "88210", + "libelleAcheminement": "GORHEY", + "nomCommune": "GORHEY" }, { - "codePostal": "88700", - "codeCommune": "88412", - "libelleAcheminement": "ST BENOIT LA CHIPOTTE", - "nomCommune": "ST BENOIT LA CHIPOTTE" + "codePostal": "76340", + "codeCommune": "76598", + "libelleAcheminement": "ST LEGER AUX BOIS", + "nomCommune": "ST LEGER AUX BOIS" }, { - "codePostal": "80220", - "codeCommune": "80127", - "libelleAcheminement": "BOUVAINCOURT SUR BRESLE", - "nomCommune": "BOUVAINCOURT SUR BRESLE" + "codePostal": "88100", + "codeCommune": "88341", + "libelleAcheminement": "PAIR ET GRANDRUPT", + "nomCommune": "PAIR ET GRANDRUPT" }, { - "codePostal": "71670", - "codeCommune": "71468", - "libelleAcheminement": "ST PIERRE DE VARENNES", - "nomCommune": "ST PIERRE DE VARENNES" + "codePostal": "74160", + "codeCommune": "74044", + "libelleAcheminement": "BOSSEY", + "nomCommune": "BOSSEY" }, { - "codePostal": "86700", - "codeCommune": "86296", - "libelleAcheminement": "VOULON", - "nomCommune": "VOULON" + "codePostal": "88240", + "codeCommune": "88214", + "libelleAcheminement": "GRANDRUPT DE BAINS", + "nomCommune": "GRANDRUPT DE BAINS" }, { - "codePostal": "88200", - "codeCommune": "88415", - "libelleAcheminement": "ST ETIENNE LES REMIREMONT", - "nomCommune": "ST ETIENNE LES REMIREMONT" + "codePostal": "76160", + "codeCommune": "76599", + "libelleAcheminement": "ST LEGER DU BOURG DENIS", + "nomCommune": "ST LEGER DU BOURG DENIS" }, { - "codePostal": "80440", - "codeCommune": "80131", - "libelleAcheminement": "BOVES", - "nomCommune": "BOVES" + "codePostal": "88370", + "codeCommune": "88351", + "libelleAcheminement": "PLOMBIERES LES BAINS", + "nomCommune": "PLOMBIERES LES BAINS" }, { - "codePostal": "71520", - "codeCommune": "71469", - "libelleAcheminement": "ST PIERRE LE VIEUX", - "nomCommune": "ST PIERRE LE VIEUX" + "codePostal": "74540", + "codeCommune": "74054", + "libelleAcheminement": "CHAINAZ LES FRASSES", + "nomCommune": "CHAINAZ LES FRASSES" }, { - "codePostal": "87120", - "codeCommune": "87004", - "libelleAcheminement": "AUGNE", - "nomCommune": "AUGNE" + "codePostal": "88330", + "codeCommune": "88224", + "libelleAcheminement": "HADIGNY LES VERRIERES", + "nomCommune": "HADIGNY LES VERRIERES" }, { - "codePostal": "88210", - "codeCommune": "88419", - "libelleAcheminement": "ST JEAN D ORMONT", - "nomCommune": "ST JEAN D ORMONT" + "codePostal": "76400", + "codeCommune": "76600", + "libelleAcheminement": "ST LEONARD", + "nomCommune": "ST LEONARD" }, { - "codePostal": "80150", - "codeCommune": "80133", - "libelleAcheminement": "BRAILLY CORNEHOTTE", - "nomCommune": "BRAILLY CORNEHOTTE" + "codePostal": "88370", + "codeCommune": "88351", + "libelleAcheminement": "PLOMBIERES LES BAINS", + "nomCommune": "PLOMBIERES LES BAINS" }, { - "codePostal": "71520", - "codeCommune": "71470", - "libelleAcheminement": "ST POINT", - "nomCommune": "ST POINT" + "codePostal": "74400", + "codeCommune": "74056", + "libelleAcheminement": "CHAMONIX MONT BLANC", + "nomCommune": "CHAMONIX MONT BLANC" }, { - "codePostal": "87120", - "codeCommune": "87009", - "libelleAcheminement": "BEAUMONT DU LAC", - "nomCommune": "BEAUMONT DU LAC" + "codePostal": "88270", + "codeCommune": "88226", + "libelleAcheminement": "HAGECOURT", + "nomCommune": "HAGECOURT" }, { - "codePostal": "88650", - "codeCommune": "88423", - "libelleAcheminement": "ST LEONARD", - "nomCommune": "ST LEONARD" + "codePostal": "76290", + "codeCommune": "76616", + "libelleAcheminement": "ST MARTIN DU MANOIR", + "nomCommune": "ST MARTIN DU MANOIR" }, { - "codePostal": "80300", - "codeCommune": "80138", - "libelleAcheminement": "BRESLE", - "nomCommune": "BRESLE" + "codePostal": "88370", + "codeCommune": "88351", + "libelleAcheminement": "PLOMBIERES LES BAINS", + "nomCommune": "PLOMBIERES LES BAINS" }, { - "codePostal": "71420", - "codeCommune": "71478", - "libelleAcheminement": "ST ROMAIN SOUS VERSIGNY", - "nomCommune": "ST ROMAIN SOUS VERSIGNY" + "codePostal": "74800", + "codeCommune": "74059", + "libelleAcheminement": "LA CHAPELLE RAMBAUD", + "nomCommune": "LA CHAPELLE RAMBAUD" }, { - "codePostal": "87300", - "codeCommune": "87018", - "libelleAcheminement": "BLOND", - "nomCommune": "BLOND" + "codePostal": "88300", + "codeCommune": "88227", + "libelleAcheminement": "HAGNEVILLE ET RONCOURT", + "nomCommune": "HAGNEVILLE ET RONCOURT" }, { - "codePostal": "88140", - "codeCommune": "88430", - "libelleAcheminement": "ST OUEN LES PAREY", - "nomCommune": "ST OUEN LES PAREY" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "80600", - "codeCommune": "80140", - "libelleAcheminement": "BREVILLERS", - "nomCommune": "BREVILLERS" + "codePostal": "88300", + "codeCommune": "88352", + "libelleAcheminement": "POMPIERRE", + "nomCommune": "POMPIERRE" }, { - "codePostal": "71800", - "codeCommune": "71483", - "libelleAcheminement": "ST SYMPHORIEN DES BOIS", - "nomCommune": "ST SYMPHORIEN DES BOIS" + "codePostal": "74210", + "codeCommune": "74072", + "libelleAcheminement": "CHEVALINE", + "nomCommune": "CHEVALINE" }, { - "codePostal": "87300", - "codeCommune": "87022", - "libelleAcheminement": "BREUILAUFA", - "nomCommune": "BREUILAUFA" + "codePostal": "88700", + "codeCommune": "88230", + "libelleAcheminement": "HARDANCOURT", + "nomCommune": "HARDANCOURT" }, { - "codePostal": "88170", - "codeCommune": "88431", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "80690", - "codeCommune": "80145", - "libelleAcheminement": "BRUCAMPS", - "nomCommune": "BRUCAMPS" + "codePostal": "88500", + "codeCommune": "88354", + "libelleAcheminement": "PONT SUR MADON", + "nomCommune": "PONT SUR MADON" }, { - "codePostal": "71390", - "codeCommune": "71485", - "libelleAcheminement": "ST VALLERIN", - "nomCommune": "ST VALLERIN" + "codePostal": "74350", + "codeCommune": "74088", + "libelleAcheminement": "COPPONEX", + "nomCommune": "COPPONEX" }, { - "codePostal": "87140", - "codeCommune": "87023", - "libelleAcheminement": "LE BUIS", - "nomCommune": "LE BUIS" + "codePostal": "88260", + "codeCommune": "88238", + "libelleAcheminement": "HENNEZEL", + "nomCommune": "HENNEZEL" }, { - "codePostal": "88700", - "codeCommune": "88432", - "libelleAcheminement": "ST PIERREMONT", - "nomCommune": "ST PIERREMONT" + "codePostal": "76260", + "codeCommune": "76619", + "libelleAcheminement": "ST MARTIN LE GAILLARD", + "nomCommune": "ST MARTIN LE GAILLARD" }, { - "codePostal": "80132", - "codeCommune": "80147", - "libelleAcheminement": "BUIGNY L ABBE", - "nomCommune": "BUIGNY L ABBE" + "codePostal": "88600", + "codeCommune": "88359", + "libelleAcheminement": "PREY", + "nomCommune": "PREY" }, { - "codePostal": "71230", - "codeCommune": "71486", - "libelleAcheminement": "ST VALLIER", - "nomCommune": "ST VALLIER" + "codePostal": "74800", + "codeCommune": "74090", + "libelleAcheminement": "CORNIER", + "nomCommune": "CORNIER" }, { - "codePostal": "87460", - "codeCommune": "87024", - "libelleAcheminement": "BUJALEUF", - "nomCommune": "BUJALEUF" + "codePostal": "88500", + "codeCommune": "88246", + "libelleAcheminement": "HYMONT", + "nomCommune": "HYMONT" }, { - "codePostal": "88480", - "codeCommune": "88435", - "libelleAcheminement": "ST REMY", - "nomCommune": "ST REMY" + "codePostal": "76330", + "codeCommune": "76622", + "libelleAcheminement": "ST MAURICE D ETELAN", + "nomCommune": "ST MAURICE D ETELAN" }, { - "codePostal": "80330", - "codeCommune": "80160", - "libelleAcheminement": "CAGNY", - "nomCommune": "CAGNY" + "codePostal": "88210", + "codeCommune": "88362", + "libelleAcheminement": "LE PUID", + "nomCommune": "LE PUID" }, { - "codePostal": "71250", - "codeCommune": "71488", - "libelleAcheminement": "ST VINCENT DES PRES", - "nomCommune": "ST VINCENT DES PRES" + "codePostal": "74380", + "codeCommune": "74094", + "libelleAcheminement": "CRANVES SALES", + "nomCommune": "CRANVES SALES" }, { - "codePostal": "87800", - "codeCommune": "87025", - "libelleAcheminement": "BURGNAC", - "nomCommune": "BURGNAC" + "codePostal": "88630", + "codeCommune": "88255", + "libelleAcheminement": "JUBAINVILLE", + "nomCommune": "JUBAINVILLE" }, { - "codePostal": "88470", - "codeCommune": "88438", - "libelleAcheminement": "LA SALLE", - "nomCommune": "LA SALLE" + "codePostal": "76490", + "codeCommune": "76626", + "libelleAcheminement": "ST NICOLAS DE LA HAIE", + "nomCommune": "ST NICOLAS DE LA HAIE" }, { - "codePostal": "80670", - "codeCommune": "80166", - "libelleAcheminement": "CANAPLES", - "nomCommune": "CANAPLES" + "codePostal": "88700", + "codeCommune": "88367", + "libelleAcheminement": "RAMBERVILLERS", + "nomCommune": "RAMBERVILLERS" }, { - "codePostal": "71440", - "codeCommune": "71489", - "libelleAcheminement": "ST VINCENT EN BRESSE", - "nomCommune": "ST VINCENT EN BRESSE" + "codePostal": "74210", + "codeCommune": "74104", + "libelleAcheminement": "DOUSSARD", + "nomCommune": "DOUSSARD" }, { - "codePostal": "87230", - "codeCommune": "87027", - "libelleAcheminement": "BUSSIERE GALANT", - "nomCommune": "BUSSIERE GALANT" + "codePostal": "88640", + "codeCommune": "88263", + "libelleAcheminement": "LAVELINE DU HOUX", + "nomCommune": "LAVELINE DU HOUX" }, { - "codePostal": "88120", - "codeCommune": "88442", - "libelleAcheminement": "SAPOIS", - "nomCommune": "SAPOIS" + "codePostal": "76630", + "codeCommune": "76630", + "libelleAcheminement": "ST OUEN SOUS BAILLY", + "nomCommune": "ST OUEN SOUS BAILLY" }, { - "codePostal": "80140", - "codeCommune": "80169", - "libelleAcheminement": "CANNESSIERES", - "nomCommune": "CANNESSIERES" + "codePostal": "88110", + "codeCommune": "88372", + "libelleAcheminement": "RAON L ETAPE", + "nomCommune": "RAON L ETAPE" }, { - "codePostal": "71360", - "codeCommune": "71493", - "libelleAcheminement": "SAISY", - "nomCommune": "SAISY" + "codePostal": "01200", + "codeCommune": "74109", + "libelleAcheminement": "ELOISE", + "nomCommune": "ELOISE" }, { - "codePostal": "87400", - "codeCommune": "87035", - "libelleAcheminement": "CHAMPNETERY", - "nomCommune": "CHAMPNETERY" + "codePostal": "88400", + "codeCommune": "88269", + "libelleAcheminement": "LIEZEY", + "nomCommune": "LIEZEY" }, { - "codePostal": "88210", - "codeCommune": "88444", - "libelleAcheminement": "LE SAULCY", - "nomCommune": "LE SAULCY" + "codePostal": "76480", + "codeCommune": "76631", + "libelleAcheminement": "ST PAER", + "nomCommune": "ST PAER" }, { - "codePostal": "80500", - "codeCommune": "80170", - "libelleAcheminement": "CANTIGNY", - "nomCommune": "CANTIGNY" + "codePostal": "88300", + "codeCommune": "88376", + "libelleAcheminement": "REBEUVILLE", + "nomCommune": "REBEUVILLE" }, { - "codePostal": "71410", - "codeCommune": "71499", - "libelleAcheminement": "SANVIGNES LES MINES", - "nomCommune": "SANVIGNES LES MINES" + "codePostal": "74100", + "codeCommune": "74118", + "libelleAcheminement": "ETREMBIERES", + "nomCommune": "ETREMBIERES" }, { - "codePostal": "87380", - "codeCommune": "87039", - "libelleAcheminement": "CHATEAU CHERVIX", - "nomCommune": "CHATEAU CHERVIX" + "codePostal": "88170", + "codeCommune": "88278", + "libelleAcheminement": "MACONCOURT", + "nomCommune": "MACONCOURT" }, { - "codePostal": "88130", - "codeCommune": "88458", - "libelleAcheminement": "SOCOURT", - "nomCommune": "SOCOURT" + "codePostal": "76113", + "codeCommune": "76634", + "libelleAcheminement": "ST PIERRE DE MANNEVILLE", + "nomCommune": "ST PIERRE DE MANNEVILLE" }, { - "codePostal": "80800", - "codeCommune": "80184", - "libelleAcheminement": "CERISY", - "nomCommune": "CERISY" + "codePostal": "88410", + "codeCommune": "88377", + "libelleAcheminement": "REGNEVELLE", + "nomCommune": "REGNEVELLE" }, { - "codePostal": "71110", - "codeCommune": "71500", - "libelleAcheminement": "SARRY", - "nomCommune": "SARRY" + "codePostal": "74500", + "codeCommune": "74119", + "libelleAcheminement": "EVIAN LES BAINS", + "nomCommune": "EVIAN LES BAINS" }, { - "codePostal": "87520", - "codeCommune": "87045", - "libelleAcheminement": "CIEUX", - "nomCommune": "CIEUX" + "codePostal": "88800", + "codeCommune": "88285", + "libelleAcheminement": "MANDRES SUR VAIR", + "nomCommune": "MANDRES SUR VAIR" }, { - "codePostal": "88120", - "codeCommune": "88462", - "libelleAcheminement": "LE SYNDICAT", - "nomCommune": "LE SYNDICAT" + "codePostal": "76660", + "codeCommune": "76635", + "libelleAcheminement": "ST PIERRE DES JONQUIERES", + "nomCommune": "ST PIERRE DES JONQUIERES" }, { - "codePostal": "80320", - "codeCommune": "80186", - "libelleAcheminement": "CHAULNES", - "nomCommune": "CHAULNES" + "codePostal": "88460", + "codeCommune": "88399", + "libelleAcheminement": "LE ROULIER", + "nomCommune": "LE ROULIER" }, { - "codePostal": "71440", - "codeCommune": "71508", - "libelleAcheminement": "SAVIGNY SUR SEILLE", - "nomCommune": "SAVIGNY SUR SEILLE" + "codePostal": "74210", + "codeCommune": "74123", + "libelleAcheminement": "FAVERGES SEYTHENEX", + "nomCommune": "FAVERGES SEYTHENEX" }, { - "codePostal": "87920", - "codeCommune": "87048", - "libelleAcheminement": "CONDAT SUR VIENNE", - "nomCommune": "CONDAT SUR VIENNE" + "codePostal": "88630", + "codeCommune": "88293", + "libelleAcheminement": "MAXEY SUR MEUSE", + "nomCommune": "MAXEY SUR MEUSE" }, { - "codePostal": "88220", - "codeCommune": "88481", - "libelleAcheminement": "URIMENIL", - "nomCommune": "URIMENIL" + "codePostal": "76260", + "codeCommune": "76644", + "libelleAcheminement": "ST REMY BOSCROCOURT", + "nomCommune": "ST REMY BOSCROCOURT" }, { - "codePostal": "80250", - "codeCommune": "80188", - "libelleAcheminement": "CHAUSSOY EPAGNY", - "nomCommune": "CHAUSSOY EPAGNY" + "codePostal": "88170", + "codeCommune": "88401", + "libelleAcheminement": "ROUVRES LA CHETIVE", + "nomCommune": "ROUVRES LA CHETIVE" }, { - "codePostal": "71310", - "codeCommune": "71516", - "libelleAcheminement": "SERLEY", - "nomCommune": "SERLEY" + "codePostal": "74250", + "codeCommune": "74128", + "libelleAcheminement": "FILLINGES", + "nomCommune": "FILLINGES" }, { - "codePostal": "87130", - "codeCommune": "87051", - "libelleAcheminement": "LA CROISILLE SUR BRIANCE", - "nomCommune": "LA CROISILLE SUR BRIANCE" + "codePostal": "88160", + "codeCommune": "88302", + "libelleAcheminement": "LE MENIL", + "nomCommune": "LE MENIL" }, { - "codePostal": "88140", - "codeCommune": "88485", - "libelleAcheminement": "LA VACHERESSE ET LA ROUILLIE", - "nomCommune": "LA VACHERESSE ET LA ROUILLIE" + "codePostal": "76430", + "codeCommune": "76647", + "libelleAcheminement": "ST ROMAIN DE COLBOSC", + "nomCommune": "ST ROMAIN DE COLBOSC" }, { - "codePostal": "80210", - "codeCommune": "80190", - "libelleAcheminement": "CHEPY", - "nomCommune": "CHEPY" + "codePostal": "88630", + "codeCommune": "88407", + "libelleAcheminement": "RUPPES", + "nomCommune": "RUPPES" }, { - "codePostal": "71350", - "codeCommune": "71517", - "libelleAcheminement": "SERMESSE", - "nomCommune": "SERMESSE" + "codePostal": "74200", + "codeCommune": "74129", + "libelleAcheminement": "LA FORCLAZ", + "nomCommune": "LA FORCLAZ" }, { - "codePostal": "87230", - "codeCommune": "87060", - "libelleAcheminement": "DOURNAZAC", - "nomCommune": "DOURNAZAC" + "codePostal": "88800", + "codeCommune": "88309", + "libelleAcheminement": "MONTHUREUX LE SEC", + "nomCommune": "MONTHUREUX LE SEC" }, { - "codePostal": "88340", - "codeCommune": "88487", - "libelleAcheminement": "LE VAL D AJOL", - "nomCommune": "LE VAL D AJOL" + "codePostal": "76110", + "codeCommune": "76650", + "libelleAcheminement": "ST SAUVEUR D EMALLEVILLE", + "nomCommune": "ST SAUVEUR D EMALLEVILLE" }, { - "codePostal": "80170", - "codeCommune": "80191", - "libelleAcheminement": "CHILLY", - "nomCommune": "CHILLY" + "codePostal": "88360", + "codeCommune": "88408", + "libelleAcheminement": "RUPT SUR MOSELLE", + "nomCommune": "RUPT SUR MOSELLE" }, { - "codePostal": "71310", - "codeCommune": "71519", - "libelleAcheminement": "SERRIGNY EN BRESSE", - "nomCommune": "SERRIGNY EN BRESSE" + "codePostal": "74910", + "codeCommune": "74130", + "libelleAcheminement": "FRANCLENS", + "nomCommune": "FRANCLENS" }, { - "codePostal": "87220", - "codeCommune": "87065", - "libelleAcheminement": "FEYTIAT", - "nomCommune": "FEYTIAT" + "codePostal": "88600", + "codeCommune": "88315", + "libelleAcheminement": "MORTAGNE", + "nomCommune": "MORTAGNE" }, { - "codePostal": "88270", - "codeCommune": "88489", - "libelleAcheminement": "VALLEROY AUX SAULES", - "nomCommune": "VALLEROY AUX SAULES" + "codePostal": "76460", + "codeCommune": "76651", + "libelleAcheminement": "ST SYLVAIN", + "nomCommune": "ST SYLVAIN" }, { - "codePostal": "80250", - "codeCommune": "80193", - "libelleAcheminement": "CHIRMONT", - "nomCommune": "CHIRMONT" + "codePostal": "88260", + "codeCommune": "88411", + "libelleAcheminement": "ST BASLEMONT", + "nomCommune": "ST BASLEMONT" }, { - "codePostal": "71100", - "codeCommune": "71520", - "libelleAcheminement": "SEVREY", - "nomCommune": "SEVREY" + "codePostal": "74260", + "codeCommune": "74134", + "libelleAcheminement": "LES GETS", + "nomCommune": "LES GETS" }, { - "codePostal": "87230", - "codeCommune": "87066", - "libelleAcheminement": "FLAVIGNAC", - "nomCommune": "FLAVIGNAC" + "codePostal": "88700", + "codeCommune": "88318", + "libelleAcheminement": "MOYEMONT", + "nomCommune": "MOYEMONT" }, { - "codePostal": "88260", - "codeCommune": "88491", - "libelleAcheminement": "LES VALLOIS", - "nomCommune": "LES VALLOIS" + "codePostal": "76450", + "codeCommune": "76653", + "libelleAcheminement": "ST VAAST DIEPPEDALLE", + "nomCommune": "ST VAAST DIEPPEDALLE" }, { - "codePostal": "80490", - "codeCommune": "80196", - "libelleAcheminement": "CITERNE", - "nomCommune": "CITERNE" + "codePostal": "88200", + "codeCommune": "88415", + "libelleAcheminement": "ST ETIENNE LES REMIREMONT", + "nomCommune": "ST ETIENNE LES REMIREMONT" }, { - "codePostal": "71740", - "codeCommune": "71533", - "libelleAcheminement": "TANCON", - "nomCommune": "TANCON" + "codePostal": "74420", + "codeCommune": "74139", + "libelleAcheminement": "HABERE LULLIN", + "nomCommune": "HABERE LULLIN" }, { - "codePostal": "87330", - "codeCommune": "87069", - "libelleAcheminement": "GAJOUBERT", - "nomCommune": "GAJOUBERT" + "codePostal": "88100", + "codeCommune": "88320", + "libelleAcheminement": "NAYEMONT LES FOSSES", + "nomCommune": "NAYEMONT LES FOSSES" }, { - "codePostal": "88230", - "codeCommune": "88492", - "libelleAcheminement": "LE VALTIN", - "nomCommune": "LE VALTIN" + "codePostal": "76430", + "codeCommune": "76657", + "libelleAcheminement": "ST VIGOR D YMONVILLE", + "nomCommune": "ST VIGOR D YMONVILLE" }, { - "codePostal": "80200", - "codeCommune": "80197", - "libelleAcheminement": "CIZANCOURT", - "nomCommune": "CIZANCOURT" + "codePostal": "88700", + "codeCommune": "88416", + "libelleAcheminement": "ST GENEST", + "nomCommune": "ST GENEST" }, { - "codePostal": "71190", - "codeCommune": "71537", - "libelleAcheminement": "THIL SUR ARROUX", - "nomCommune": "THIL SUR ARROUX" + "codePostal": "74540", + "codeCommune": "74142", + "libelleAcheminement": "HERY SUR ALBY", + "nomCommune": "HERY SUR ALBY" }, { - "codePostal": "87380", - "codeCommune": "87072", - "libelleAcheminement": "GLANGES", - "nomCommune": "GLANGES" + "codePostal": "88300", + "codeCommune": "88321", + "libelleAcheminement": "NEUFCHATEAU", + "nomCommune": "NEUFCHATEAU" }, { - "codePostal": "88500", - "codeCommune": "88494", - "libelleAcheminement": "VAUBEXY", - "nomCommune": "VAUBEXY" + "codePostal": "76450", + "codeCommune": "76664", + "libelleAcheminement": "SASSEVILLE", + "nomCommune": "SASSEVILLE" }, { - "codePostal": "80890", - "codeCommune": "80205", - "libelleAcheminement": "CONDE FOLIE", - "nomCommune": "CONDE FOLIE" + "codePostal": "88700", + "codeCommune": "88418", + "libelleAcheminement": "STE HELENE", + "nomCommune": "STE HELENE" }, { - "codePostal": "71440", - "codeCommune": "71538", - "libelleAcheminement": "THUREY", - "nomCommune": "THUREY" + "codePostal": "74310", + "codeCommune": "74143", + "libelleAcheminement": "LES HOUCHES", + "nomCommune": "LES HOUCHES" }, { - "codePostal": "87800", - "codeCommune": "87077", - "libelleAcheminement": "JANAILHAC", - "nomCommune": "JANAILHAC" + "codePostal": "88600", + "codeCommune": "88322", + "libelleAcheminement": "LA NEUVEVILLE DEVANT LEPANGES", + "nomCommune": "LA NEUVEVILLE DEVANT LEPANGES" }, { - "codePostal": "88270", - "codeCommune": "88508", - "libelleAcheminement": "VILLE SUR ILLON", - "nomCommune": "VILLE SUR ILLON" + "codePostal": "76660", + "codeCommune": "76677", + "libelleAcheminement": "SMERMESNIL", + "nomCommune": "SMERMESNIL" }, { - "codePostal": "80160", - "codeCommune": "80210", - "libelleAcheminement": "CONTRE", - "nomCommune": "CONTRE" + "codePostal": "88470", + "codeCommune": "88428", + "libelleAcheminement": "ST MICHEL SUR MEURTHE", + "nomCommune": "ST MICHEL SUR MEURTHE" }, { - "codePostal": "71490", - "codeCommune": "71539", - "libelleAcheminement": "TINTRY", - "nomCommune": "TINTRY" + "codePostal": "74100", + "codeCommune": "74145", + "libelleAcheminement": "JUVIGNY", + "nomCommune": "JUVIGNY" }, { - "codePostal": "87520", - "codeCommune": "87078", - "libelleAcheminement": "JAVERDAT", - "nomCommune": "JAVERDAT" + "codePostal": "88100", + "codeCommune": "88326", + "libelleAcheminement": "NEUVILLERS SUR FAVE", + "nomCommune": "NEUVILLERS SUR FAVE" }, { - "codePostal": "88700", - "codeCommune": "88521", - "libelleAcheminement": "VOMECOURT", - "nomCommune": "VOMECOURT" + "codePostal": "76540", + "codeCommune": "76680", + "libelleAcheminement": "SORQUAINVILLE", + "nomCommune": "SORQUAINVILLE" }, { - "codePostal": "80160", - "codeCommune": "80211", - "libelleAcheminement": "CONTY", - "nomCommune": "CONTY" + "codePostal": "88270", + "codeCommune": "88437", + "libelleAcheminement": "ST VALLIER", + "nomCommune": "ST VALLIER" }, { - "codePostal": "71320", - "codeCommune": "71542", - "libelleAcheminement": "TOULON SUR ARROUX", - "nomCommune": "TOULON SUR ARROUX" + "codePostal": "74210", + "codeCommune": "74147", + "libelleAcheminement": "LATHUILE", + "nomCommune": "LATHUILE" }, { - "codePostal": "87800", - "codeCommune": "87081", - "libelleAcheminement": "JOURGNAC", - "nomCommune": "JOURGNAC" + "codePostal": "88440", + "codeCommune": "88327", + "libelleAcheminement": "NOMEXY", + "nomCommune": "NOMEXY" }, { - "codePostal": "88500", - "codeCommune": "88522", - "libelleAcheminement": "VOMECOURT SUR MADON", - "nomCommune": "VOMECOURT SUR MADON" + "codePostal": "76440", + "codeCommune": "76691", + "libelleAcheminement": "LE THIL RIBERPRE", + "nomCommune": "LE THIL RIBERPRE" }, { - "codePostal": "80160", - "codeCommune": "80211", - "libelleAcheminement": "CONTY", - "nomCommune": "CONTY" + "codePostal": "88260", + "codeCommune": "88441", + "libelleAcheminement": "SANS VALLOIS", + "nomCommune": "SANS VALLOIS" }, { - "codePostal": "71800", - "codeCommune": "71553", - "libelleAcheminement": "VAREILLES", - "nomCommune": "VAREILLES" + "codePostal": "74320", + "codeCommune": "74148", + "libelleAcheminement": "LESCHAUX", + "nomCommune": "LESCHAUX" }, { - "codePostal": "87370", - "codeCommune": "87083", - "libelleAcheminement": "LAURIERE", - "nomCommune": "LAURIERE" + "codePostal": "88260", + "codeCommune": "88330", + "libelleAcheminement": "NONVILLE", + "nomCommune": "NONVILLE" }, { - "codePostal": "88220", - "codeCommune": "88530", - "libelleAcheminement": "XERTIGNY", - "nomCommune": "XERTIGNY" + "codePostal": "76790", + "codeCommune": "76693", + "libelleAcheminement": "LE TILLEUL", + "nomCommune": "LE TILLEUL" }, { - "codePostal": "80440", - "codeCommune": "80213", - "libelleAcheminement": "COTTENCHY", - "nomCommune": "COTTENCHY" + "codePostal": "88210", + "codeCommune": "88444", + "libelleAcheminement": "LE SAULCY", + "nomCommune": "LE SAULCY" }, { - "codePostal": "71110", - "codeCommune": "71554", - "libelleAcheminement": "VARENNE L ARCONCE", - "nomCommune": "VARENNE L ARCONCE" + "codePostal": "74470", + "codeCommune": "74155", + "libelleAcheminement": "LULLIN", + "nomCommune": "LULLIN" }, { - "codePostal": "87000", - "codeCommune": "87085", - "libelleAcheminement": "LIMOGES", - "nomCommune": "LIMOGES" + "codePostal": "88800", + "codeCommune": "88332", + "libelleAcheminement": "NORROY", + "nomCommune": "NORROY" }, { - "codePostal": "89200", - "codeCommune": "89011", - "libelleAcheminement": "ANNEOT", - "nomCommune": "ANNEOT" + "codePostal": "76110", + "codeCommune": "76695", + "libelleAcheminement": "TOCQUEVILLE LES MURS", + "nomCommune": "TOCQUEVILLE LES MURS" }, { - "codePostal": "80250", - "codeCommune": "80214", - "libelleAcheminement": "COULLEMELLE", - "nomCommune": "COULLEMELLE" + "codePostal": "88260", + "codeCommune": "88452", + "libelleAcheminement": "SENONGES", + "nomCommune": "SENONGES" }, { - "codePostal": "71600", - "codeCommune": "71557", - "libelleAcheminement": "VARENNE ST GERMAIN", - "nomCommune": "VARENNE ST GERMAIN" + "codePostal": "74250", + "codeCommune": "74162", + "libelleAcheminement": "MARCELLAZ", + "nomCommune": "MARCELLAZ" }, { - "codePostal": "87130", - "codeCommune": "87086", - "libelleAcheminement": "LINARDS", - "nomCommune": "LINARDS" + "codePostal": "88330", + "codeCommune": "88342", + "libelleAcheminement": "PALLEGNEY", + "nomCommune": "PALLEGNEY" }, { - "codePostal": "89270", - "codeCommune": "89015", - "libelleAcheminement": "ARCY SUR CURE", - "nomCommune": "ARCY SUR CURE" + "codePostal": "76190", + "codeCommune": "76702", + "libelleAcheminement": "TOUFFREVILLE LA CORBELINE", + "nomCommune": "TOUFFREVILLE LA CORBELINE" }, { - "codePostal": "80500", - "codeCommune": "80220", - "libelleAcheminement": "COURTEMANCHE", - "nomCommune": "COURTEMANCHE" + "codePostal": "88630", + "codeCommune": "88460", + "libelleAcheminement": "SOULOSSE SOUS ST ELOPHE", + "nomCommune": "SOULOSSE SOUS ST ELOPHE" }, { - "codePostal": "71120", - "codeCommune": "71564", - "libelleAcheminement": "VENDENESSE LES CHAROLLES", - "nomCommune": "VENDENESSE LES CHAROLLES" + "codePostal": "74970", + "codeCommune": "74164", + "libelleAcheminement": "MARIGNIER", + "nomCommune": "MARIGNIER" }, { - "codePostal": "87330", - "codeCommune": "87097", - "libelleAcheminement": "VAL D ISSOIRE", - "nomCommune": "VAL D ISSOIRE" + "codePostal": "88210", + "codeCommune": "88346", + "libelleAcheminement": "LA PETITE RAON", + "nomCommune": "LA PETITE RAON" }, { - "codePostal": "89440", - "codeCommune": "89022", - "libelleAcheminement": "ATHIE", - "nomCommune": "ATHIE" + "codePostal": "76890", + "codeCommune": "76721", + "libelleAcheminement": "VARNEVILLE BRETTEVILLE", + "nomCommune": "VARNEVILLE BRETTEVILLE" }, { - "codePostal": "80150", - "codeCommune": "80222", - "libelleAcheminement": "CRECY EN PONTHIEU", - "nomCommune": "CRECY EN PONTHIEU" + "codePostal": "88530", + "codeCommune": "88470", + "libelleAcheminement": "LE THOLY", + "nomCommune": "LE THOLY" }, { - "codePostal": "71960", - "codeCommune": "71567", - "libelleAcheminement": "VERGISSON", - "nomCommune": "VERGISSON" + "codePostal": "74150", + "codeCommune": "74165", + "libelleAcheminement": "MARIGNY ST MARCEL", + "nomCommune": "MARIGNY ST MARCEL" }, { - "codePostal": "87330", - "codeCommune": "87108", - "libelleAcheminement": "NOUIC", - "nomCommune": "NOUIC" + "codePostal": "88230", + "codeCommune": "88349", + "libelleAcheminement": "PLAINFAING", + "nomCommune": "PLAINFAING" }, { - "codePostal": "89000", - "codeCommune": "89024", - "libelleAcheminement": "AUXERRE", - "nomCommune": "AUXERRE" + "codePostal": "76730", + "codeCommune": "76731", + "libelleAcheminement": "VENESTANVILLE", + "nomCommune": "VENESTANVILLE" }, { - "codePostal": "80290", - "codeCommune": "80227", - "libelleAcheminement": "CROIXRAULT", - "nomCommune": "CROIXRAULT" + "codePostal": "88300", + "codeCommune": "88474", + "libelleAcheminement": "TILLEUX", + "nomCommune": "TILLEUX" }, { - "codePostal": "71590", - "codeCommune": "71570", - "libelleAcheminement": "VERJUX", - "nomCommune": "VERJUX" + "codePostal": "74210", + "codeCommune": "74167", + "libelleAcheminement": "VAL DE CHAISE", + "nomCommune": "VAL DE CHAISE" }, { - "codePostal": "87210", - "codeCommune": "87109", - "libelleAcheminement": "ORADOUR ST GENEST", - "nomCommune": "ORADOUR ST GENEST" + "codePostal": "88490", + "codeCommune": "88361", + "libelleAcheminement": "PROVENCHERES ET COLROY", + "nomCommune": "PROVENCHERES ET COLROY" }, { - "codePostal": "89190", - "codeCommune": "89027", - "libelleAcheminement": "BAGNEAUX", - "nomCommune": "BAGNEAUX" + "codePostal": "76280", + "codeCommune": "76734", + "libelleAcheminement": "VERGETOT", + "nomCommune": "VERGETOT" }, { - "codePostal": "80550", - "codeCommune": "80228", - "libelleAcheminement": "LE CROTOY", - "nomCommune": "LE CROTOY" + "codePostal": "88130", + "codeCommune": "88480", + "libelleAcheminement": "UBEXY", + "nomCommune": "UBEXY" }, { - "codePostal": "71110", - "codeCommune": "71573", - "libelleAcheminement": "VERSAUGUES", - "nomCommune": "VERSAUGUES" + "codePostal": "74210", + "codeCommune": "74167", + "libelleAcheminement": "VAL DE CHAISE", + "nomCommune": "VAL DE CHAISE" }, { - "codePostal": "87300", - "codeCommune": "87116", - "libelleAcheminement": "PEYRAT DE BELLAC", - "nomCommune": "PEYRAT DE BELLAC" + "codePostal": "88500", + "codeCommune": "88368", + "libelleAcheminement": "RAMECOURT", + "nomCommune": "RAMECOURT" }, { - "codePostal": "89400", - "codeCommune": "89029", - "libelleAcheminement": "BASSOU", - "nomCommune": "BASSOU" + "codePostal": "76980", + "codeCommune": "76735", + "libelleAcheminement": "VEULES LES ROSES", + "nomCommune": "VEULES LES ROSES" }, { - "codePostal": "80800", - "codeCommune": "80234", - "libelleAcheminement": "DAOURS", - "nomCommune": "DAOURS" + "codePostal": "88220", + "codeCommune": "88481", + "libelleAcheminement": "URIMENIL", + "nomCommune": "URIMENIL" }, { - "codePostal": "71700", - "codeCommune": "71576", - "libelleAcheminement": "LE VILLARS", - "nomCommune": "LE VILLARS" + "codePostal": "74140", + "codeCommune": "74171", + "libelleAcheminement": "MASSONGY", + "nomCommune": "MASSONGY" }, { - "codePostal": "87470", - "codeCommune": "87117", - "libelleAcheminement": "PEYRAT LE CHATEAU", - "nomCommune": "PEYRAT LE CHATEAU" + "codePostal": "88160", + "codeCommune": "88369", + "libelleAcheminement": "RAMONCHAMP", + "nomCommune": "RAMONCHAMP" }, { - "codePostal": "89630", - "codeCommune": "89032", - "libelleAcheminement": "BEAUVILLIERS", - "nomCommune": "BEAUVILLIERS" + "codePostal": "76760", + "codeCommune": "76737", + "libelleAcheminement": "VIBEUF", + "nomCommune": "VIBEUF" }, { - "codePostal": "80200", - "codeCommune": "80240", - "libelleAcheminement": "DOINGT FLAMICOURT", - "nomCommune": "DOINGT" + "codePostal": "88140", + "codeCommune": "88482", + "libelleAcheminement": "URVILLE", + "nomCommune": "URVILLE" }, { - "codePostal": "71270", - "codeCommune": "71578", - "libelleAcheminement": "CLUX VILLENEUVE", - "nomCommune": "CLUX VILLENEUVE" + "codePostal": "74440", + "codeCommune": "74183", + "libelleAcheminement": "MIEUSSY", + "nomCommune": "MIEUSSY" }, { - "codePostal": "87250", - "codeCommune": "87128", - "libelleAcheminement": "ST PARDOUX LE LAC", - "nomCommune": "ST PARDOUX LE LAC" + "codePostal": "88270", + "codeCommune": "88370", + "libelleAcheminement": "RANCOURT", + "nomCommune": "RANCOURT" }, { - "codePostal": "89210", - "codeCommune": "89035", - "libelleAcheminement": "BELLECHAUME", - "nomCommune": "BELLECHAUME" + "codePostal": "76160", + "codeCommune": "76740", + "libelleAcheminement": "LA VIEUX RUE", + "nomCommune": "LA VIEUX RUE" }, { - "codePostal": "80370", - "codeCommune": "80245", - "libelleAcheminement": "DOMLEGER LONGVILLERS", - "nomCommune": "DOMLEGER LONGVILLERS" + "codePostal": "88390", + "codeCommune": "88483", + "libelleAcheminement": "UXEGNEY", + "nomCommune": "UXEGNEY" }, { - "codePostal": "71390", - "codeCommune": "71579", - "libelleAcheminement": "VILLENEUVE EN MONTAGNE", - "nomCommune": "VILLENEUVE EN MONTAGNE" + "codePostal": "74270", + "codeCommune": "74184", + "libelleAcheminement": "MINZIER", + "nomCommune": "MINZIER" }, { - "codePostal": "87260", - "codeCommune": "87138", - "libelleAcheminement": "ST BONNET BRIANCE", - "nomCommune": "ST BONNET BRIANCE" + "codePostal": "88220", + "codeCommune": "88371", + "libelleAcheminement": "RAON AUX BOIS", + "nomCommune": "RAON AUX BOIS" }, { - "codePostal": "89220", - "codeCommune": "89046", - "libelleAcheminement": "BLENEAU", - "nomCommune": "BLENEAU" + "codePostal": "76111", + "codeCommune": "76754", + "libelleAcheminement": "YPORT", + "nomCommune": "YPORT" }, { - "codePostal": "80440", - "codeCommune": "80246", - "libelleAcheminement": "DOMMARTIN", - "nomCommune": "DOMMARTIN" + "codePostal": "88270", + "codeCommune": "88489", + "libelleAcheminement": "VALLEROY AUX SAULES", + "nomCommune": "VALLEROY AUX SAULES" }, { - "codePostal": "71250", - "codeCommune": "71582", - "libelleAcheminement": "LA VINEUSE SUR FREGANDE", - "nomCommune": "LA VINEUSE SUR FREGANDE" + "codePostal": "74560", + "codeCommune": "74185", + "libelleAcheminement": "MONNETIER MORNEX", + "nomCommune": "MONNETIER MORNEX" }, { - "codePostal": "87380", - "codeCommune": "87146", - "libelleAcheminement": "ST GERMAIN LES BELLES", - "nomCommune": "ST GERMAIN LES BELLES" + "codePostal": "88110", + "codeCommune": "88373", + "libelleAcheminement": "RAON SUR PLAINE", + "nomCommune": "RAON SUR PLAINE" }, { - "codePostal": "89500", - "codeCommune": "89060", - "libelleAcheminement": "BUSSY LE REPOS", - "nomCommune": "BUSSY LE REPOS" + "codePostal": "76540", + "codeCommune": "76755", + "libelleAcheminement": "YPREVILLE BIVILLE", + "nomCommune": "YPREVILLE BIVILLE" }, { - "codePostal": "80980", - "codeCommune": "80247", - "libelleAcheminement": "DOMPIERRE BECQUINCOURT", - "nomCommune": "DOMPIERRE BECQUINCOURT" + "codePostal": "88310", + "codeCommune": "88500", + "libelleAcheminement": "VENTRON", + "nomCommune": "VENTRON" }, { - "codePostal": "71680", - "codeCommune": "71583", - "libelleAcheminement": "VINZELLES", - "nomCommune": "VINZELLES" + "codePostal": "74110", + "codeCommune": "74188", + "libelleAcheminement": "MONTRIOND", + "nomCommune": "MONTRIOND" }, { - "codePostal": "87460", - "codeCommune": "87153", - "libelleAcheminement": "ST JULIEN LE PETIT", - "nomCommune": "ST JULIEN LE PETIT" + "codePostal": "88450", + "codeCommune": "88378", + "libelleAcheminement": "REGNEY", + "nomCommune": "REGNEY" }, { - "codePostal": "89410", - "codeCommune": "89067", - "libelleAcheminement": "CEZY", - "nomCommune": "CEZY" + "codePostal": "77760", + "codeCommune": "77001", + "libelleAcheminement": "ACHERES LA FORET", + "nomCommune": "ACHERES LA FORET" }, { - "codePostal": "80150", - "codeCommune": "80250", - "libelleAcheminement": "DOMVAST", - "nomCommune": "DOMVAST" + "codePostal": "88170", + "codeCommune": "88504", + "libelleAcheminement": "VICHEREY", + "nomCommune": "VICHEREY" }, { - "codePostal": "71260", - "codeCommune": "71584", - "libelleAcheminement": "VIRE", - "nomCommune": "VIRE" + "codePostal": "74160", + "codeCommune": "74201", + "libelleAcheminement": "NEYDENS", + "nomCommune": "NEYDENS" }, { - "codePostal": "87480", - "codeCommune": "87178", - "libelleAcheminement": "ST PRIEST TAURION", - "nomCommune": "ST PRIEST TAURION" + "codePostal": "88640", + "codeCommune": "88380", + "libelleAcheminement": "REHAUPAL", + "nomCommune": "REHAUPAL" }, { - "codePostal": "89770", - "codeCommune": "89069", - "libelleAcheminement": "CHAILLEY", - "nomCommune": "CHAILLEY" + "codePostal": "77390", + "codeCommune": "77004", + "libelleAcheminement": "ANDREZEL", + "nomCommune": "ANDREZEL" }, { - "codePostal": "80600", - "codeCommune": "80253", - "libelleAcheminement": "DOULLENS", - "nomCommune": "DOULLENS" + "codePostal": "88500", + "codeCommune": "88507", + "libelleAcheminement": "VILLERS", + "nomCommune": "VILLERS" }, { - "codePostal": "71600", - "codeCommune": "71588", - "libelleAcheminement": "VITRY EN CHAROLLAIS", - "nomCommune": "VITRY EN CHAROLLAIS" + "codePostal": "74500", + "codeCommune": "74203", + "libelleAcheminement": "NOVEL", + "nomCommune": "NOVEL" }, { - "codePostal": "87210", - "codeCommune": "87179", - "libelleAcheminement": "ST SORNIN LA MARCHE", - "nomCommune": "ST SORNIN LA MARCHE" + "codePostal": "88500", + "codeCommune": "88382", + "libelleAcheminement": "REMICOURT", + "nomCommune": "REMICOURT" }, { - "codePostal": "89220", - "codeCommune": "89072", - "libelleAcheminement": "CHAMPCEVRAIS", - "nomCommune": "CHAMPCEVRAIS" + "codePostal": "77970", + "codeCommune": "77020", + "libelleAcheminement": "BANNOST VILLEGAGNON", + "nomCommune": "BANNOST VILLEGAGNON" }, { - "codePostal": "80340", - "codeCommune": "80264", - "libelleAcheminement": "ECLUSIER VAUX", - "nomCommune": "ECLUSIER VAUX" + "codePostal": "88320", + "codeCommune": "88510", + "libelleAcheminement": "VILLOTTE", + "nomCommune": "VILLOTTE" }, { - "codePostal": "72650", - "codeCommune": "72001", - "libelleAcheminement": "AIGNE", - "nomCommune": "AIGNE" + "codePostal": "74130", + "codeCommune": "74212", + "libelleAcheminement": "GLIERES VAL DE BORNE", + "nomCommune": "GLIERES VAL DE BORNE" }, { - "codePostal": "87160", - "codeCommune": "87182", - "libelleAcheminement": "ST SULPICE LES FEUILLES", - "nomCommune": "ST SULPICE LES FEUILLES" + "codePostal": "88100", + "codeCommune": "88386", + "libelleAcheminement": "REMOMEIX", + "nomCommune": "REMOMEIX" }, { - "codePostal": "89300", - "codeCommune": "89079", - "libelleAcheminement": "CHAMVRES", - "nomCommune": "CHAMVRES" + "codePostal": "77560", + "codeCommune": "77026", + "libelleAcheminement": "BEAUCHERY ST MARTIN", + "nomCommune": "BEAUCHERY ST MARTIN" }, { - "codePostal": "80570", - "codeCommune": "80265", - "libelleAcheminement": "EMBREVILLE", - "nomCommune": "EMBREVILLE" + "codePostal": "88800", + "codeCommune": "88516", + "libelleAcheminement": "VITTEL", + "nomCommune": "VITTEL" }, { - "codePostal": "72600", - "codeCommune": "72002", - "libelleAcheminement": "AILLIERES BEAUVOIR", - "nomCommune": "AILLIERES BEAUVOIR" + "codePostal": "74160", + "codeCommune": "74216", + "libelleAcheminement": "PRESILLY", + "nomCommune": "PRESILLY" }, { - "codePostal": "87420", - "codeCommune": "87185", - "libelleAcheminement": "ST VICTURNIEN", - "nomCommune": "ST VICTURNIEN" + "codePostal": "88500", + "codeCommune": "88389", + "libelleAcheminement": "REPEL", + "nomCommune": "REPEL" }, { - "codePostal": "89800", - "codeCommune": "89081", - "libelleAcheminement": "LA CHAPELLE VAUPELTEIGNE", - "nomCommune": "LA CHAPELLE VAUPELTEIGNE" + "codePostal": "77350", + "codeCommune": "77039", + "libelleAcheminement": "BOISSISE LA BERTRAND", + "nomCommune": "BOISSISE LA BERTRAND" }, { - "codePostal": "80400", - "codeCommune": "80274", - "libelleAcheminement": "EPPEVILLE", - "nomCommune": "EPPEVILLE" + "codePostal": "88470", + "codeCommune": "88519", + "libelleAcheminement": "LA VOIVRE", + "nomCommune": "LA VOIVRE" }, { - "codePostal": "72430", - "codeCommune": "72010", - "libelleAcheminement": "ASNIERES SUR VEGRE", - "nomCommune": "ASNIERES SUR VEGRE" + "codePostal": "74500", + "codeCommune": "74218", + "libelleAcheminement": "PUBLIER", + "nomCommune": "PUBLIER" }, { - "codePostal": "87380", - "codeCommune": "87186", - "libelleAcheminement": "ST VITTE SUR BRIANCE", - "nomCommune": "ST VITTE SUR BRIANCE" + "codePostal": "88120", + "codeCommune": "88409", + "libelleAcheminement": "ST AME", + "nomCommune": "ST AME" }, { - "codePostal": "89580", - "codeCommune": "89084", - "libelleAcheminement": "CHARENTENAY", - "nomCommune": "CHARENTENAY" + "codePostal": "77310", + "codeCommune": "77040", + "libelleAcheminement": "BOISSISE LE ROI", + "nomCommune": "BOISSISE LE ROI" }, { - "codePostal": "80400", - "codeCommune": "80284", - "libelleAcheminement": "ESMERY HALLON", - "nomCommune": "ESMERY HALLON" + "codePostal": "88240", + "codeCommune": "88520", + "libelleAcheminement": "LES VOIVRES", + "nomCommune": "LES VOIVRES" }, { - "codePostal": "72800", - "codeCommune": "72013", - "libelleAcheminement": "AUBIGNE RACAN", - "nomCommune": "AUBIGNE RACAN" + "codePostal": "74420", + "codeCommune": "74226", + "libelleAcheminement": "ST ANDRE DE BOEGE", + "nomCommune": "ST ANDRE DE BOEGE" }, { - "codePostal": "87600", - "codeCommune": "87199", - "libelleAcheminement": "VAYRES", - "nomCommune": "VAYRES" + "codePostal": "88700", + "codeCommune": "88412", + "libelleAcheminement": "ST BENOIT LA CHIPOTTE", + "nomCommune": "ST BENOIT LA CHIPOTTE" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "77760", + "codeCommune": "77041", + "libelleAcheminement": "BOISSY AUX CAILLES", + "nomCommune": "BOISSY AUX CAILLES" }, { - "codePostal": "80200", - "codeCommune": "80288", - "libelleAcheminement": "ESTREES DENIECOURT", - "nomCommune": "ESTREES DENIECOURT" + "codePostal": "88700", + "codeCommune": "88521", + "libelleAcheminement": "VOMECOURT", + "nomCommune": "VOMECOURT" }, { - "codePostal": "72260", - "codeCommune": "72018", - "libelleAcheminement": "AVESNES EN SAOSNOIS", - "nomCommune": "AVESNES EN SAOSNOIS" + "codePostal": "74540", + "codeCommune": "74233", + "libelleAcheminement": "ST FELIX", + "nomCommune": "ST FELIX" }, { - "codePostal": "87600", - "codeCommune": "87204", - "libelleAcheminement": "VIDEIX", - "nomCommune": "VIDEIX" + "codePostal": "88210", + "codeCommune": "88436", + "libelleAcheminement": "ST STAIL", + "nomCommune": "ST STAIL" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "77620", + "codeCommune": "77050", + "libelleAcheminement": "BRANSLES", + "nomCommune": "BRANSLES" }, { - "codePostal": "80150", - "codeCommune": "80290", - "libelleAcheminement": "ESTREES LES CRECY", - "nomCommune": "ESTREES LES CRECY" + "codePostal": "88170", + "codeCommune": "88523", + "libelleAcheminement": "VOUXEY", + "nomCommune": "VOUXEY" }, { - "codePostal": "72650", - "codeCommune": "72024", - "libelleAcheminement": "LA BAZOGE", - "nomCommune": "LA BAZOGE" + "codePostal": "74210", + "codeCommune": "74234", + "libelleAcheminement": "ST FERREOL", + "nomCommune": "ST FERREOL" }, { - "codePostal": "88110", - "codeCommune": "88005", - "libelleAcheminement": "ALLARMONT", - "nomCommune": "ALLARMONT" + "codePostal": "88170", + "codeCommune": "88440", + "libelleAcheminement": "SANDAUCOURT", + "nomCommune": "SANDAUCOURT" }, { - "codePostal": "89600", - "codeCommune": "89101", - "libelleAcheminement": "CHEU", - "nomCommune": "CHEU" + "codePostal": "77940", + "codeCommune": "77054", + "libelleAcheminement": "LA BROSSE MONTCEAUX", + "nomCommune": "LA BROSSE MONTCEAUX" }, { - "codePostal": "80190", - "codeCommune": "80292", - "libelleAcheminement": "ETALON", - "nomCommune": "ETALON" + "codePostal": "88700", + "codeCommune": "88527", + "libelleAcheminement": "XAFFEVILLERS", + "nomCommune": "XAFFEVILLERS" }, { - "codePostal": "72200", - "codeCommune": "72025", - "libelleAcheminement": "BAZOUGES CRE SUR LOIR", - "nomCommune": "BAZOUGES CRE SUR LOIR" + "codePostal": "74500", + "codeCommune": "74237", + "libelleAcheminement": "ST GINGOLPH", + "nomCommune": "ST GINGOLPH" }, { - "codePostal": "88430", - "codeCommune": "88014", - "libelleAcheminement": "ARRENTES DE CORCIEUX", - "nomCommune": "ARRENTES DE CORCIEUX" + "codePostal": "88300", + "codeCommune": "88443", + "libelleAcheminement": "SARTES", + "nomCommune": "SARTES" }, { - "codePostal": "89240", - "codeCommune": "89102", - "libelleAcheminement": "CHEVANNES", - "nomCommune": "CHEVANNES" + "codePostal": "77130", + "codeCommune": "77061", + "libelleAcheminement": "CANNES ECLUSE", + "nomCommune": "CANNES ECLUSE" }, { - "codePostal": "80340", - "codeCommune": "80295", - "libelleAcheminement": "ETINEHEM MERICOURT", - "nomCommune": "ETINEHEM MERICOURT" + "codePostal": "89110", + "codeCommune": "89003", + "libelleAcheminement": "MONTHOLON", + "nomCommune": "MONTHOLON" }, { - "codePostal": "72110", - "codeCommune": "72026", - "libelleAcheminement": "BEAUFAY", - "nomCommune": "BEAUFAY" + "codePostal": "74410", + "codeCommune": "74242", + "libelleAcheminement": "ST JORIOZ", + "nomCommune": "ST JORIOZ" }, { - "codePostal": "88300", - "codeCommune": "88019", - "libelleAcheminement": "AUTIGNY LA TOUR", - "nomCommune": "AUTIGNY LA TOUR" + "codePostal": "88580", + "codeCommune": "88445", + "libelleAcheminement": "SAULCY SUR MEURTHE", + "nomCommune": "SAULCY SUR MEURTHE" }, { - "codePostal": "89140", - "codeCommune": "89115", - "libelleAcheminement": "COMPIGNY", - "nomCommune": "COMPIGNY" + "codePostal": "77400", + "codeCommune": "77062", + "libelleAcheminement": "CARNETIN", + "nomCommune": "CARNETIN" }, { - "codePostal": "80360", - "codeCommune": "80298", - "libelleAcheminement": "ETRICOURT MANANCOURT", - "nomCommune": "ETRICOURT MANANCOURT" + "codePostal": "89710", + "codeCommune": "89003", + "libelleAcheminement": "MONTHOLON", + "nomCommune": "MONTHOLON" }, { - "codePostal": "72170", - "codeCommune": "72029", - "libelleAcheminement": "BEAUMONT SUR SARTHE", - "nomCommune": "BEAUMONT SUR SARTHE" + "codePostal": "74310", + "codeCommune": "74266", + "libelleAcheminement": "SERVOZ", + "nomCommune": "SERVOZ" }, { - "codePostal": "88500", - "codeCommune": "88023", - "libelleAcheminement": "AVILLERS", - "nomCommune": "AVILLERS" + "codePostal": "88130", + "codeCommune": "88449", + "libelleAcheminement": "SAVIGNY", + "nomCommune": "SAVIGNY" }, { - "codePostal": "89480", - "codeCommune": "89119", - "libelleAcheminement": "COULANGES SUR YONNE", - "nomCommune": "COULANGES SUR YONNE" + "codePostal": "77120", + "codeCommune": "77070", + "libelleAcheminement": "CHAILLY EN BRIE", + "nomCommune": "CHAILLY EN BRIE" }, { - "codePostal": "80250", - "codeCommune": "80299", - "libelleAcheminement": "LA FALOISE", - "nomCommune": "LA FALOISE" + "codePostal": "89390", + "codeCommune": "89004", + "libelleAcheminement": "AISY SUR ARMANCON", + "nomCommune": "AISY SUR ARMANCON" }, { - "codePostal": "72160", - "codeCommune": "72031", - "libelleAcheminement": "BEILLE", - "nomCommune": "BEILLE" + "codePostal": "74300", + "codeCommune": "74278", + "libelleAcheminement": "THYEZ", + "nomCommune": "THYEZ" }, { - "codePostal": "88240", - "codeCommune": "88029", - "libelleAcheminement": "LA VOGE LES BAINS", - "nomCommune": "LA VOGE LES BAINS" + "codePostal": "88320", + "codeCommune": "88456", + "libelleAcheminement": "SEROCOURT", + "nomCommune": "SEROCOURT" }, { - "codePostal": "89190", - "codeCommune": "89122", - "libelleAcheminement": "COURGENAY", - "nomCommune": "COURGENAY" + "codePostal": "77144", + "codeCommune": "77075", + "libelleAcheminement": "CHALIFERT", + "nomCommune": "CHALIFERT" }, { - "codePostal": "80190", - "codeCommune": "80300", - "libelleAcheminement": "FALVY", - "nomCommune": "FALVY" + "codePostal": "89160", + "codeCommune": "89005", + "libelleAcheminement": "ANCY LE FRANC", + "nomCommune": "ANCY LE FRANC" }, { - "codePostal": "72600", - "codeCommune": "72037", - "libelleAcheminement": "BLEVES", - "nomCommune": "BLEVES" + "codePostal": "74200", + "codeCommune": "74281", + "libelleAcheminement": "THONON LES BAINS", + "nomCommune": "THONON LES BAINS" }, { - "codePostal": "88270", - "codeCommune": "88030", - "libelleAcheminement": "BAINVILLE AUX SAULES", - "nomCommune": "BAINVILLE AUX SAULES" + "codePostal": "88120", + "codeCommune": "88462", + "libelleAcheminement": "LE SYNDICAT", + "nomCommune": "LE SYNDICAT" }, { - "codePostal": "89140", - "codeCommune": "89124", - "libelleAcheminement": "COURLON SUR YONNE", - "nomCommune": "COURLON SUR YONNE" + "codePostal": "77910", + "codeCommune": "77077", + "libelleAcheminement": "CHAMBRY", + "nomCommune": "CHAMBRY" }, { - "codePostal": "80290", - "codeCommune": "80301", - "libelleAcheminement": "FAMECHON", - "nomCommune": "FAMECHON" + "codePostal": "89440", + "codeCommune": "89012", + "libelleAcheminement": "ANNOUX", + "nomCommune": "ANNOUX" }, { - "codePostal": "72400", - "codeCommune": "72040", - "libelleAcheminement": "LA BOSSE", - "nomCommune": "LA BOSSE" + "codePostal": "74370", + "codeCommune": "74282", + "libelleAcheminement": "FILLIERE", + "nomCommune": "FILLIERE" }, { - "codePostal": "88210", - "codeCommune": "88053", - "libelleAcheminement": "BELVAL", - "nomCommune": "BELVAL" + "codePostal": "88120", + "codeCommune": "88462", + "libelleAcheminement": "LE SYNDICAT", + "nomCommune": "LE SYNDICAT" }, { - "codePostal": "89460", - "codeCommune": "89130", - "libelleAcheminement": "DEUX RIVIERES", - "nomCommune": "DEUX RIVIERES" + "codePostal": "77560", + "codeCommune": "77080", + "libelleAcheminement": "CHAMPCENEST", + "nomCommune": "CHAMPCENEST" }, { - "codePostal": "80500", - "codeCommune": "80306", - "libelleAcheminement": "FESCAMPS", - "nomCommune": "FESCAMPS" + "codePostal": "89270", + "codeCommune": "89015", + "libelleAcheminement": "ARCY SUR CURE", + "nomCommune": "ARCY SUR CURE" }, { - "codePostal": "72390", - "codeCommune": "72041", - "libelleAcheminement": "BOUER", - "nomCommune": "BOUER" + "codePostal": "74250", + "codeCommune": "74284", + "libelleAcheminement": "LA TOUR", + "nomCommune": "LA TOUR" }, { - "codePostal": "88520", - "codeCommune": "88054", - "libelleAcheminement": "BERTRIMOUTIER", - "nomCommune": "BERTRIMOUTIER" + "codePostal": "88460", + "codeCommune": "88464", + "libelleAcheminement": "TENDON", + "nomCommune": "TENDON" }, { - "codePostal": "89140", - "codeCommune": "89136", - "libelleAcheminement": "CUY", - "nomCommune": "CUY" + "codePostal": "77660", + "codeCommune": "77084", + "libelleAcheminement": "CHANGIS SUR MARNE", + "nomCommune": "CHANGIS SUR MARNE" }, { - "codePostal": "80140", - "codeCommune": "80324", - "libelleAcheminement": "FONTAINE LE SEC", - "nomCommune": "FONTAINE LE SEC" + "codePostal": "89160", + "codeCommune": "89016", + "libelleAcheminement": "ARGENTENAY", + "nomCommune": "ARGENTENAY" }, { - "codePostal": "72270", - "codeCommune": "72044", - "libelleAcheminement": "BOUSSE", - "nomCommune": "BOUSSE" + "codePostal": "74360", + "codeCommune": "74286", + "libelleAcheminement": "VACHERESSE", + "nomCommune": "VACHERESSE" }, { - "codePostal": "88450", - "codeCommune": "88055", - "libelleAcheminement": "BETTEGNEY ST BRICE", - "nomCommune": "BETTEGNEY ST BRICE" + "codePostal": "88150", + "codeCommune": "88465", + "libelleAcheminement": "THAON LES VOSGES", + "nomCommune": "THAON LES VOSGES" }, { - "codePostal": "89700", - "codeCommune": "89137", - "libelleAcheminement": "DANNEMOINE", - "nomCommune": "DANNEMOINE" + "codePostal": "77760", + "codeCommune": "77088", + "libelleAcheminement": "LA CHAPELLE LA REINE", + "nomCommune": "LA CHAPELLE LA REINE" }, { - "codePostal": "80340", - "codeCommune": "80325", - "libelleAcheminement": "FONTAINE LES CAPPY", - "nomCommune": "FONTAINE LES CAPPY" + "codePostal": "89190", + "codeCommune": "89027", + "libelleAcheminement": "BAGNEAUX", + "nomCommune": "BAGNEAUX" }, { - "codePostal": "72250", - "codeCommune": "72047", - "libelleAcheminement": "BRETTE LES PINS", - "nomCommune": "BRETTE LES PINS" + "codePostal": "74470", + "codeCommune": "74287", + "libelleAcheminement": "VAILLY", + "nomCommune": "VAILLY" }, { - "codePostal": "88170", - "codeCommune": "88058", - "libelleAcheminement": "BIECOURT", - "nomCommune": "BIECOURT" + "codePostal": "88260", + "codeCommune": "88472", + "libelleAcheminement": "THUILLIERES", + "nomCommune": "THUILLIERES" }, { - "codePostal": "89150", - "codeCommune": "89143", - "libelleAcheminement": "DOLLOT", - "nomCommune": "DOLLOT" + "codePostal": "77320", + "codeCommune": "77093", + "libelleAcheminement": "LA CHAPELLE MOUTILS", + "nomCommune": "LA CHAPELLE MOUTILS" }, { - "codePostal": "80120", - "codeCommune": "80332", - "libelleAcheminement": "FOREST MONTIERS", - "nomCommune": "FOREST MONTIERS" + "codePostal": "89400", + "codeCommune": "89029", + "libelleAcheminement": "BASSOU", + "nomCommune": "BASSOU" }, { - "codePostal": "72470", - "codeCommune": "72054", - "libelleAcheminement": "CHAMPAGNE", - "nomCommune": "CHAMPAGNE" + "codePostal": "74150", + "codeCommune": "74289", + "libelleAcheminement": "VALLIERES SUR FIER", + "nomCommune": "VALLIERES SUR FIER" }, { - "codePostal": "88250", - "codeCommune": "88075", - "libelleAcheminement": "LA BRESSE", - "nomCommune": "LA BRESSE" + "codePostal": "88320", + "codeCommune": "88473", + "libelleAcheminement": "TIGNECOURT", + "nomCommune": "TIGNECOURT" }, { - "codePostal": "89450", - "codeCommune": "89145", - "libelleAcheminement": "DOMECY SUR CURE", - "nomCommune": "DOMECY SUR CURE" + "codePostal": "77320", + "codeCommune": "77093", + "libelleAcheminement": "LA CHAPELLE MOUTILS", + "nomCommune": "LA CHAPELLE MOUTILS" }, { - "codePostal": "80340", - "codeCommune": "80335", - "libelleAcheminement": "FOUCAUCOURT EN SANTERRE", - "nomCommune": "FOUCAUCOURT EN SANTERRE" + "codePostal": "89460", + "codeCommune": "89030", + "libelleAcheminement": "BAZARNES", + "nomCommune": "BAZARNES" }, { - "codePostal": "72320", - "codeCommune": "72057", - "libelleAcheminement": "CHAMPROND", - "nomCommune": "CHAMPROND" + "codePostal": "74350", + "codeCommune": "74307", + "libelleAcheminement": "VILLY LE PELLOUX", + "nomCommune": "VILLY LE PELLOUX" }, { - "codePostal": "88230", - "codeCommune": "88106", - "libelleAcheminement": "BAN SUR MEURTHE CLEFCY", - "nomCommune": "BAN SUR MEURTHE CLEFCY" + "codePostal": "88320", + "codeCommune": "88475", + "libelleAcheminement": "TOLLAINCOURT", + "nomCommune": "TOLLAINCOURT" }, { - "codePostal": "89360", - "codeCommune": "89149", - "libelleAcheminement": "DYE", - "nomCommune": "DYE" + "codePostal": "77410", + "codeCommune": "77094", + "libelleAcheminement": "CHARMENTRAY", + "nomCommune": "CHARMENTRAY" }, { - "codePostal": "80800", - "codeCommune": "80338", - "libelleAcheminement": "FOUILLOY", - "nomCommune": "FOUILLOY" + "codePostal": "89250", + "codeCommune": "89031", + "libelleAcheminement": "BEAUMONT", + "nomCommune": "BEAUMONT" }, { - "codePostal": "72400", - "codeCommune": "72062", - "libelleAcheminement": "LA CHAPELLE DU BOIS", - "nomCommune": "LA CHAPELLE DU BOIS" + "codePostal": "75003", + "codeCommune": "75103", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 03" }, { - "codePostal": "88490", - "codeCommune": "88113", - "libelleAcheminement": "COMBRIMONT", - "nomCommune": "COMBRIMONT" + "codePostal": "88500", + "codeCommune": "88476", + "libelleAcheminement": "TOTAINVILLE", + "nomCommune": "TOTAINVILLE" }, { - "codePostal": "89240", - "codeCommune": "89154", - "libelleAcheminement": "ESCAMPS", - "nomCommune": "ESCAMPS" + "codePostal": "77370", + "codeCommune": "77098", + "libelleAcheminement": "CHATEAUBLEAU", + "nomCommune": "CHATEAUBLEAU" }, { - "codePostal": "80310", - "codeCommune": "80341", - "libelleAcheminement": "FOURDRINOY", - "nomCommune": "FOURDRINOY" + "codePostal": "89630", + "codeCommune": "89032", + "libelleAcheminement": "BEAUVILLIERS", + "nomCommune": "BEAUVILLIERS" }, { - "codePostal": "72240", - "codeCommune": "72066", - "libelleAcheminement": "LA CHAPELLE ST FRAY", - "nomCommune": "LA CHAPELLE ST FRAY" + "codePostal": "75012", + "codeCommune": "75112", + "libelleAcheminement": "PARIS", + "nomCommune": "PARIS 12" }, { - "codePostal": "88310", - "codeCommune": "88116", - "libelleAcheminement": "CORNIMONT", - "nomCommune": "CORNIMONT" + "codePostal": "88120", + "codeCommune": "88486", + "libelleAcheminement": "VAGNEY", + "nomCommune": "VAGNEY" }, { - "codePostal": "89480", - "codeCommune": "89158", - "libelleAcheminement": "ETAIS LA SAUVIN", - "nomCommune": "ETAIS LA SAUVIN" + "codePostal": "77167", + "codeCommune": "77102", + "libelleAcheminement": "CHATENOY", + "nomCommune": "CHATENOY" }, { - "codePostal": "80690", - "codeCommune": "80344", - "libelleAcheminement": "FRANCIERES", - "nomCommune": "FRANCIERES" + "codePostal": "89410", + "codeCommune": "89037", + "libelleAcheminement": "BEON", + "nomCommune": "BEON" }, { - "codePostal": "72160", - "codeCommune": "72067", - "libelleAcheminement": "LA CHAPELLE ST REMY", - "nomCommune": "LA CHAPELLE ST REMY" + "codePostal": "76560", + "codeCommune": "76006", + "libelleAcheminement": "AMFREVILLE LES CHAMPS", + "nomCommune": "AMFREVILLE LES CHAMPS" }, { - "codePostal": "88330", - "codeCommune": "88121", - "libelleAcheminement": "DAMAS AUX BOIS", - "nomCommune": "DAMAS AUX BOIS" + "codePostal": "88270", + "codeCommune": "88499", + "libelleAcheminement": "VELOTTE ET TATIGNECOURT", + "nomCommune": "VELOTTE ET TATIGNECOURT" }, { - "codePostal": "89140", - "codeCommune": "89162", - "libelleAcheminement": "EVRY", - "nomCommune": "EVRY" + "codePostal": "77610", + "codeCommune": "77104", + "libelleAcheminement": "CHATRES", + "nomCommune": "CHATRES" }, { - "codePostal": "80140", - "codeCommune": "80356", - "libelleAcheminement": "FRESNOY ANDAINVILLE", - "nomCommune": "FRESNOY ANDAINVILLE" + "codePostal": "89420", + "codeCommune": "89042", + "libelleAcheminement": "BIERRY LES BELLES FONTAINES", + "nomCommune": "BIERRY LES BELLES FONTAINES" }, { - "codePostal": "72340", - "codeCommune": "72068", - "libelleAcheminement": "LA CHARTRE SUR LE LOIR", - "nomCommune": "LA CHARTRE SUR LE LOIR" + "codePostal": "76560", + "codeCommune": "76009", + "libelleAcheminement": "ANCOURTEVILLE SUR HERICOURT", + "nomCommune": "ANCOURTEVILLE SUR HERICOURT" }, { - "codePostal": "88170", - "codeCommune": "88125", - "libelleAcheminement": "DARNEY AUX CHENES", - "nomCommune": "DARNEY AUX CHENES" + "codePostal": "88270", + "codeCommune": "88508", + "libelleAcheminement": "VILLE SUR ILLON", + "nomCommune": "VILLE SUR ILLON" }, { - "codePostal": "89113", - "codeCommune": "89167", - "libelleAcheminement": "FLEURY LA VALLEE", - "nomCommune": "FLEURY LA VALLEE" + "codePostal": "77090", + "codeCommune": "77121", + "libelleAcheminement": "COLLEGIEN", + "nomCommune": "COLLEGIEN" }, { - "codePostal": "80110", - "codeCommune": "80358", - "libelleAcheminement": "FRESNOY EN CHAUSSEE", - "nomCommune": "FRESNOY EN CHAUSSEE" + "codePostal": "89200", + "codeCommune": "89044", + "libelleAcheminement": "BLANNAY", + "nomCommune": "BLANNAY" }, { - "codePostal": "72500", - "codeCommune": "72071", - "libelleAcheminement": "MONTVAL SUR LOIR", - "nomCommune": "MONTVAL SUR LOIR" + "codePostal": "76760", + "codeCommune": "76010", + "libelleAcheminement": "ANCRETIEVILLE ST VICTOR", + "nomCommune": "ANCRETIEVILLE ST VICTOR" }, { - "codePostal": "88210", - "codeCommune": "88128", - "libelleAcheminement": "DENIPAIRE", - "nomCommune": "DENIPAIRE" + "codePostal": "88450", + "codeCommune": "88513", + "libelleAcheminement": "VINCEY", + "nomCommune": "VINCEY" }, { - "codePostal": "89360", - "codeCommune": "89169", - "libelleAcheminement": "FLOGNY LA CHAPELLE", - "nomCommune": "FLOGNY LA CHAPELLE" + "codePostal": "77600", + "codeCommune": "77124", + "libelleAcheminement": "CONCHES SUR GONDOIRE", + "nomCommune": "CONCHES SUR GONDOIRE" }, { - "codePostal": "80290", - "codeCommune": "80365", - "libelleAcheminement": "FRICAMPS", - "nomCommune": "FRICAMPS" + "codePostal": "89220", + "codeCommune": "89046", + "libelleAcheminement": "BLENEAU", + "nomCommune": "BLENEAU" }, { - "codePostal": "72540", - "codeCommune": "72074", - "libelleAcheminement": "CHEMIRE EN CHARNIE", - "nomCommune": "CHEMIRE EN CHARNIE" + "codePostal": "76740", + "codeCommune": "76015", + "libelleAcheminement": "ANGIENS", + "nomCommune": "ANGIENS" }, { - "codePostal": "88270", - "codeCommune": "88129", - "libelleAcheminement": "DERBAMONT", - "nomCommune": "DERBAMONT" + "codePostal": "88500", + "codeCommune": "88525", + "libelleAcheminement": "VROVILLE", + "nomCommune": "VROVILLE" }, { - "codePostal": "89100", - "codeCommune": "89195", - "libelleAcheminement": "GRON", - "nomCommune": "GRON" + "codePostal": "77120", + "codeCommune": "77131", + "libelleAcheminement": "COULOMMIERS", + "nomCommune": "COULOMMIERS" }, { - "codePostal": "80370", - "codeCommune": "80369", - "libelleAcheminement": "FROHEN SUR AUTHIE", - "nomCommune": "FROHEN SUR AUTHIE" + "codePostal": "89660", + "codeCommune": "89049", + "libelleAcheminement": "BOIS D ARCY", + "nomCommune": "BOIS D ARCY" }, { - "codePostal": "72500", - "codeCommune": "72077", - "libelleAcheminement": "CHENU", - "nomCommune": "CHENU" + "codePostal": "76740", + "codeCommune": "76016", + "libelleAcheminement": "ANGLESQUEVILLE LA BRAS LONG", + "nomCommune": "ANGLESQUEVILLE LA BRAS LONG" }, { - "codePostal": "88460", - "codeCommune": "88135", - "libelleAcheminement": "DOCELLES", - "nomCommune": "DOCELLES" + "codePostal": "88220", + "codeCommune": "88530", + "libelleAcheminement": "XERTIGNY", + "nomCommune": "XERTIGNY" }, { - "codePostal": "89110", - "codeCommune": "89196", - "libelleAcheminement": "VALRAVILLON", - "nomCommune": "VALRAVILLON" + "codePostal": "77560", + "codeCommune": "77137", + "libelleAcheminement": "COURTACON", + "nomCommune": "COURTACON" }, { - "codePostal": "80150", - "codeCommune": "80371", - "libelleAcheminement": "FROYELLES", - "nomCommune": "FROYELLES" + "codePostal": "89210", + "codeCommune": "89055", + "libelleAcheminement": "BRIENON SUR ARMANCON", + "nomCommune": "BRIENON SUR ARMANCON" }, { - "codePostal": "72170", - "codeCommune": "72078", - "libelleAcheminement": "CHERANCE", - "nomCommune": "CHERANCE" + "codePostal": "76890", + "codeCommune": "76018", + "libelleAcheminement": "VAL DE SAANE", + "nomCommune": "VAL DE SAANE" }, { - "codePostal": "88260", - "codeCommune": "88138", - "libelleAcheminement": "DOMBASLE DEVANT DARNEY", - "nomCommune": "DOMBASLE DEVANT DARNEY" + "codePostal": "89200", + "codeCommune": "89009", + "libelleAcheminement": "ANNAY LA COTE", + "nomCommune": "ANNAY LA COTE" }, { - "codePostal": "89420", - "codeCommune": "89197", - "libelleAcheminement": "GUILLON TERRE PLAINE", - "nomCommune": "GUILLON TERRE PLAINE" + "codePostal": "77181", + "codeCommune": "77139", + "libelleAcheminement": "COURTRY", + "nomCommune": "COURTRY" }, { - "codePostal": "80440", - "codeCommune": "80379", - "libelleAcheminement": "GLISY", - "nomCommune": "GLISY" + "codePostal": "89400", + "codeCommune": "89056", + "libelleAcheminement": "BRION", + "nomCommune": "BRION" }, { - "codePostal": "72350", - "codeCommune": "72083", - "libelleAcheminement": "CHEVILLE", - "nomCommune": "CHEVILLE" + "codePostal": "76590", + "codeCommune": "76019", + "libelleAcheminement": "ANNEVILLE SUR SCIE", + "nomCommune": "ANNEVILLE SUR SCIE" }, { - "codePostal": "88500", - "codeCommune": "88139", - "libelleAcheminement": "DOMBASLE EN XAINTOIS", - "nomCommune": "DOMBASLE EN XAINTOIS" + "codePostal": "89700", + "codeCommune": "89039", + "libelleAcheminement": "BERU", + "nomCommune": "BERU" }, { - "codePostal": "89420", - "codeCommune": "89197", - "libelleAcheminement": "GUILLON TERRE PLAINE", - "nomCommune": "GUILLON TERRE PLAINE" + "codePostal": "77580", + "codeCommune": "77142", + "libelleAcheminement": "CRECY LA CHAPELLE", + "nomCommune": "CRECY LA CHAPELLE" }, { - "codePostal": "80680", - "codeCommune": "80387", - "libelleAcheminement": "GRATTEPANCHE", - "nomCommune": "GRATTEPANCHE" + "codePostal": "89630", + "codeCommune": "89058", + "libelleAcheminement": "BUSSIERES", + "nomCommune": "BUSSIERES" }, { - "codePostal": "72310", - "codeCommune": "72085", - "libelleAcheminement": "COGNERS", - "nomCommune": "COGNERS" + "codePostal": "76110", + "codeCommune": "76021", + "libelleAcheminement": "ANNOUVILLE VILMESNIL", + "nomCommune": "ANNOUVILLE VILMESNIL" }, { - "codePostal": "88140", - "codeCommune": "88140", - "libelleAcheminement": "DOMBROT LE SEC", - "nomCommune": "DOMBROT LE SEC" + "codePostal": "89500", + "codeCommune": "89051", + "libelleAcheminement": "LES BORDES", + "nomCommune": "LES BORDES" }, { - "codePostal": "89550", - "codeCommune": "89201", - "libelleAcheminement": "HERY", - "nomCommune": "HERY" + "codePostal": "77370", + "codeCommune": "77147", + "libelleAcheminement": "LA CROIX EN BRIE", + "nomCommune": "LA CROIX EN BRIE" }, { - "codePostal": "80700", - "codeCommune": "80391", - "libelleAcheminement": "GRIVILLERS", - "nomCommune": "GRIVILLERS" + "codePostal": "89400", + "codeCommune": "89059", + "libelleAcheminement": "BUSSY EN OTHE", + "nomCommune": "BUSSY EN OTHE" }, { - "codePostal": "72400", - "codeCommune": "72093", - "libelleAcheminement": "CORMES", - "nomCommune": "CORMES" + "codePostal": "76490", + "codeCommune": "76022", + "libelleAcheminement": "ANQUETIERVILLE", + "nomCommune": "ANQUETIERVILLE" }, { - "codePostal": "88170", - "codeCommune": "88141", - "libelleAcheminement": "DOMBROT SUR VAIR", - "nomCommune": "DOMBROT SUR VAIR" + "codePostal": "89150", + "codeCommune": "89054", + "libelleAcheminement": "BRANNAY", + "nomCommune": "BRANNAY" }, { - "codePostal": "89360", - "codeCommune": "89205", - "libelleAcheminement": "JAULGES", - "nomCommune": "JAULGES" + "codePostal": "77840", + "codeCommune": "77148", + "libelleAcheminement": "CROUY SUR OURCQ", + "nomCommune": "CROUY SUR OURCQ" }, { - "codePostal": "80700", - "codeCommune": "80393", - "libelleAcheminement": "GRUNY", - "nomCommune": "GRUNY" + "codePostal": "89360", + "codeCommune": "89061", + "libelleAcheminement": "BUTTEAUX", + "nomCommune": "BUTTEAUX" }, { - "codePostal": "72440", - "codeCommune": "72094", - "libelleAcheminement": "COUDRECIEUX", - "nomCommune": "COUDRECIEUX" + "codePostal": "76560", + "codeCommune": "76023", + "libelleAcheminement": "ANVEVILLE", + "nomCommune": "ANVEVILLE" }, { - "codePostal": "88390", - "codeCommune": "88142", - "libelleAcheminement": "DOMEVRE SUR AVIERE", - "nomCommune": "DOMEVRE SUR AVIERE" + "codePostal": "89210", + "codeCommune": "89055", + "libelleAcheminement": "BRIENON SUR ARMANCON", + "nomCommune": "BRIENON SUR ARMANCON" }, { - "codePostal": "89700", - "codeCommune": "89211", - "libelleAcheminement": "JUNAY", - "nomCommune": "JUNAY" + "codePostal": "77140", + "codeCommune": "77156", + "libelleAcheminement": "DARVAULT", + "nomCommune": "DARVAULT" }, { - "codePostal": "80360", - "codeCommune": "80401", - "libelleAcheminement": "GUILLEMONT", - "nomCommune": "GUILLEMONT" + "codePostal": "89320", + "codeCommune": "89066", + "libelleAcheminement": "CERISIERS", + "nomCommune": "CERISIERS" }, { - "codePostal": "72150", - "codeCommune": "72103", - "libelleAcheminement": "COURDEMANCHE", - "nomCommune": "COURDEMANCHE" + "codePostal": "76680", + "codeCommune": "76024", + "libelleAcheminement": "ARDOUVAL", + "nomCommune": "ARDOUVAL" }, { - "codePostal": "88500", - "codeCommune": "88144", - "libelleAcheminement": "DOMEVRE SOUS MONTFORT", - "nomCommune": "DOMEVRE SOUS MONTFORT" + "codePostal": "89310", + "codeCommune": "89064", + "libelleAcheminement": "CENSY", + "nomCommune": "CENSY" }, { - "codePostal": "89290", - "codeCommune": "89212", - "libelleAcheminement": "JUSSY", - "nomCommune": "JUSSY" + "codePostal": "77520", + "codeCommune": "77159", + "libelleAcheminement": "DONNEMARIE DONTILLY", + "nomCommune": "DONNEMARIE DONTILLY" }, { - "codePostal": "80490", - "codeCommune": "80406", - "libelleAcheminement": "HALLENCOURT", - "nomCommune": "HALLENCOURT" + "codePostal": "89800", + "codeCommune": "89068", + "libelleAcheminement": "CHABLIS", + "nomCommune": "CHABLIS" }, { - "codePostal": "72260", - "codeCommune": "72104", - "libelleAcheminement": "COURGAINS", - "nomCommune": "COURGAINS" + "codePostal": "76720", + "codeCommune": "76034", + "libelleAcheminement": "VAL DE SCIE", + "nomCommune": "VAL DE SCIE" }, { - "codePostal": "88600", - "codeCommune": "88145", - "libelleAcheminement": "DOMFAING", - "nomCommune": "DOMFAING" + "codePostal": "89220", + "codeCommune": "89072", + "libelleAcheminement": "CHAMPCEVRAIS", + "nomCommune": "CHAMPCEVRAIS" }, { - "codePostal": "89130", - "codeCommune": "89217", - "libelleAcheminement": "LALANDE", - "nomCommune": "LALANDE" + "codePostal": "77126", + "codeCommune": "77167", + "libelleAcheminement": "EGLIGNY", + "nomCommune": "EGLIGNY" }, { - "codePostal": "80320", - "codeCommune": "80409", - "libelleAcheminement": "HALLU", - "nomCommune": "HALLU" + "codePostal": "89770", + "codeCommune": "89069", + "libelleAcheminement": "CHAILLEY", + "nomCommune": "CHAILLEY" }, { - "codePostal": "72320", - "codeCommune": "72105", - "libelleAcheminement": "COURGENARD", - "nomCommune": "COURGENARD" + "codePostal": "76720", + "codeCommune": "76034", + "libelleAcheminement": "VAL DE SCIE", + "nomCommune": "VAL DE SCIE" }, { - "codePostal": "88270", - "codeCommune": "88151", - "libelleAcheminement": "DOMPAIRE", - "nomCommune": "DOMPAIRE" + "codePostal": "89350", + "codeCommune": "89073", + "libelleAcheminement": "CHAMPIGNELLES", + "nomCommune": "CHAMPIGNELLES" }, { - "codePostal": "89130", - "codeCommune": "89221", - "libelleAcheminement": "LEUGNY", - "nomCommune": "LEUGNY" + "codePostal": "77515", + "codeCommune": "77176", + "libelleAcheminement": "FAREMOUTIERS", + "nomCommune": "FAREMOUTIERS" }, { - "codePostal": "80700", - "codeCommune": "80421", - "libelleAcheminement": "HATTENCOURT", - "nomCommune": "HATTENCOURT" + "codePostal": "89350", + "codeCommune": "89073", + "libelleAcheminement": "CHAMPIGNELLES", + "nomCommune": "CHAMPIGNELLES" }, { - "codePostal": "72170", - "codeCommune": "72120", - "libelleAcheminement": "DOUCELLES", - "nomCommune": "DOUCELLES" + "codePostal": "76440", + "codeCommune": "76060", + "libelleAcheminement": "BEAUBEC LA ROSIERE", + "nomCommune": "BEAUBEC LA ROSIERE" }, { - "codePostal": "88630", - "codeCommune": "88154", - "libelleAcheminement": "DOMREMY LA PUCELLE", - "nomCommune": "DOMREMY LA PUCELLE" + "codePostal": "89290", + "codeCommune": "89077", + "libelleAcheminement": "CHAMPS SUR YONNE", + "nomCommune": "CHAMPS SUR YONNE" }, { - "codePostal": "89520", - "codeCommune": "89222", - "libelleAcheminement": "LEVIS", - "nomCommune": "LEVIS" + "codePostal": "77164", + "codeCommune": "77181", + "libelleAcheminement": "FERRIERES EN BRIE", + "nomCommune": "FERRIERES EN BRIE" }, { - "codePostal": "80600", - "codeCommune": "80427", - "libelleAcheminement": "HEM HARDINVAL", - "nomCommune": "HEM HARDINVAL" + "codePostal": "89340", + "codeCommune": "89074", + "libelleAcheminement": "CHAMPIGNY", + "nomCommune": "CHAMPIGNY" }, { - "codePostal": "72270", - "codeCommune": "72123", - "libelleAcheminement": "DUREIL", - "nomCommune": "DUREIL" + "codePostal": "76890", + "codeCommune": "76063", + "libelleAcheminement": "BEAUVAL EN CAUX", + "nomCommune": "BEAUVAL EN CAUX" }, { - "codePostal": "88500", - "codeCommune": "88155", - "libelleAcheminement": "DOMVALLIER", - "nomCommune": "DOMVALLIER" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "89144", - "codeCommune": "89227", - "libelleAcheminement": "LIGNY LE CHATEL", - "nomCommune": "LIGNY LE CHATEL" + "codePostal": "77940", + "codeCommune": "77184", + "libelleAcheminement": "FLAGY", + "nomCommune": "FLAGY" }, { - "codePostal": "80200", - "codeCommune": "80430", - "libelleAcheminement": "HERBECOURT", - "nomCommune": "HERBECOURT" + "codePostal": "89300", + "codeCommune": "89079", + "libelleAcheminement": "CHAMVRES", + "nomCommune": "CHAMVRES" }, { - "codePostal": "72540", - "codeCommune": "72126", - "libelleAcheminement": "EPINEU LE CHEVREUIL", - "nomCommune": "EPINEU LE CHEVREUIL" + "codePostal": "76280", + "codeCommune": "76064", + "libelleAcheminement": "BEAUREPAIRE", + "nomCommune": "BEAUREPAIRE" }, { - "codePostal": "88480", - "codeCommune": "88165", - "libelleAcheminement": "ETIVAL CLAIREFONTAINE", - "nomCommune": "ETIVAL CLAIREFONTAINE" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "89270", - "codeCommune": "89237", - "libelleAcheminement": "MAILLY LA VILLE", - "nomCommune": "MAILLY LA VILLE" + "codePostal": "77930", + "codeCommune": "77185", + "libelleAcheminement": "FLEURY EN BIERE", + "nomCommune": "FLEURY EN BIERE" }, { - "codePostal": "80240", - "codeCommune": "80435", - "libelleAcheminement": "HESBECOURT", - "nomCommune": "HESBECOURT" + "codePostal": "89800", + "codeCommune": "89081", + "libelleAcheminement": "LA CHAPELLE VAUPELTEIGNE", + "nomCommune": "LA CHAPELLE VAUPELTEIGNE" }, { - "codePostal": "72700", - "codeCommune": "72127", - "libelleAcheminement": "ETIVAL LES LE MANS", - "nomCommune": "ETIVAL LES LE MANS" + "codePostal": "76680", + "codeCommune": "76070", + "libelleAcheminement": "BELLENCOMBRE", + "nomCommune": "BELLENCOMBRE" }, { - "codePostal": "88450", - "codeCommune": "88166", - "libelleAcheminement": "EVAUX ET MENIL", - "nomCommune": "EVAUX ET MENIL" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "89660", - "codeCommune": "89238", - "libelleAcheminement": "MAILLY LE CHATEAU", - "nomCommune": "MAILLY LE CHATEAU" + "codePostal": "77370", + "codeCommune": "77191", + "libelleAcheminement": "FONTENAILLES", + "nomCommune": "FONTENAILLES" }, { - "codePostal": "80640", - "codeCommune": "80443", - "libelleAcheminement": "HORNOY LE BOURG", - "nomCommune": "HORNOY LE BOURG" + "codePostal": "89113", + "codeCommune": "89083", + "libelleAcheminement": "CHARBUY", + "nomCommune": "CHARBUY" }, { - "codePostal": "72400", - "codeCommune": "72132", - "libelleAcheminement": "LA FERTE BERNARD", - "nomCommune": "LA FERTE BERNARD" + "codePostal": "76560", + "codeCommune": "76077", + "libelleAcheminement": "BENESVILLE", + "nomCommune": "BENESVILLE" }, { - "codePostal": "88700", - "codeCommune": "88168", - "libelleAcheminement": "FAUCONCOURT", - "nomCommune": "FAUCONCOURT" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "89440", - "codeCommune": "89246", - "libelleAcheminement": "MASSANGIS", - "nomCommune": "MASSANGIS" + "codePostal": "77910", + "codeCommune": "77203", + "libelleAcheminement": "GERMIGNY L EVEQUE", + "nomCommune": "GERMIGNY L EVEQUE" }, { - "codePostal": "80300", - "codeCommune": "80451", - "libelleAcheminement": "IRLES", - "nomCommune": "IRLES" + "codePostal": "89580", + "codeCommune": "89084", + "libelleAcheminement": "CHARENTENAY", + "nomCommune": "CHARENTENAY" }, { - "codePostal": "72210", - "codeCommune": "72133", - "libelleAcheminement": "FILLE SUR SARTHE", - "nomCommune": "FILLE" + "codePostal": "76690", + "codeCommune": "76105", + "libelleAcheminement": "LE BOCASSE", + "nomCommune": "LE BOCASSE" }, { - "codePostal": "88600", - "codeCommune": "88169", - "libelleAcheminement": "FAYS", - "nomCommune": "FAYS" + "codePostal": "89160", + "codeCommune": "89087", + "libelleAcheminement": "CHASSIGNELLES", + "nomCommune": "CHASSIGNELLES" }, { - "codePostal": "89400", - "codeCommune": "89257", - "libelleAcheminement": "MIGENNES", - "nomCommune": "MIGENNES" + "codePostal": "77130", + "codeCommune": "77210", + "libelleAcheminement": "LA GRANDE PAROISSE", + "nomCommune": "LA GRANDE PAROISSE" }, { - "codePostal": "80500", - "codeCommune": "80453", - "libelleAcheminement": "LABOISSIERE EN SANTERRE", - "nomCommune": "LABOISSIERE EN SANTERRE" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "72500", - "codeCommune": "72134", - "libelleAcheminement": "FLEE", - "nomCommune": "FLEE" + "codePostal": "76160", + "codeCommune": "76106", + "libelleAcheminement": "BOIS D ENNEBOURG", + "nomCommune": "BOIS D ENNEBOURG" }, { - "codePostal": "88390", - "codeCommune": "88174", - "libelleAcheminement": "FOMEREY", - "nomCommune": "FOMEREY" + "codePostal": "89630", + "codeCommune": "89089", + "libelleAcheminement": "CHASTELLUX SUR CURE", + "nomCommune": "CHASTELLUX SUR CURE" }, { - "codePostal": "89150", - "codeCommune": "89264", - "libelleAcheminement": "MONTACHER VILLEGARDIN", - "nomCommune": "MONTACHER VILLEGARDIN" + "codePostal": "77410", + "codeCommune": "77214", + "libelleAcheminement": "GRESSY", + "nomCommune": "GRESSY" }, { - "codePostal": "80240", - "codeCommune": "80475", - "libelleAcheminement": "LIERAMONT", - "nomCommune": "LIERAMONT" + "codePostal": "89110", + "codeCommune": "89088", + "libelleAcheminement": "CHASSY", + "nomCommune": "CHASSY" }, { - "codePostal": "72600", - "codeCommune": "72137", - "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", - "nomCommune": "VILLENEUVE EN PERSEIGNE" + "codePostal": "76750", + "codeCommune": "76107", + "libelleAcheminement": "BOIS GUILBERT", + "nomCommune": "BOIS GUILBERT" }, { - "codePostal": "88240", - "codeCommune": "88176", - "libelleAcheminement": "FONTENOY LE CHATEAU", - "nomCommune": "FONTENOY LE CHATEAU" + "codePostal": "89660", + "codeCommune": "89091", + "libelleAcheminement": "CHATEL CENSOIR", + "nomCommune": "CHATEL CENSOIR" }, { - "codePostal": "89660", - "codeCommune": "89266", - "libelleAcheminement": "MONTILLOT", - "nomCommune": "MONTILLOT" + "codePostal": "77114", + "codeCommune": "77227", + "libelleAcheminement": "HERME", + "nomCommune": "HERME" }, { - "codePostal": "80160", - "codeCommune": "80485", - "libelleAcheminement": "O DE SELLE", - "nomCommune": "O DE SELLE" + "codePostal": "89310", + "codeCommune": "89092", + "libelleAcheminement": "CHATEL GERARD", + "nomCommune": "CHATEL GERARD" }, { - "codePostal": "72600", - "codeCommune": "72137", - "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", - "nomCommune": "VILLENEUVE EN PERSEIGNE" + "codePostal": "76230", + "codeCommune": "76108", + "libelleAcheminement": "BOIS GUILLAUME", + "nomCommune": "BOIS GUILLAUME" }, { - "codePostal": "88320", - "codeCommune": "88180", - "libelleAcheminement": "FRAIN", - "nomCommune": "FRAIN" + "codePostal": "89340", + "codeCommune": "89093", + "libelleAcheminement": "CHAUMONT", + "nomCommune": "CHAUMONT" }, { - "codePostal": "89100", - "codeCommune": "89287", - "libelleAcheminement": "PARON", - "nomCommune": "PARON" + "codePostal": "77165", + "codeCommune": "77233", + "libelleAcheminement": "IVERNY", + "nomCommune": "IVERNY" }, { - "codePostal": "80160", - "codeCommune": "80485", - "libelleAcheminement": "O DE SELLE", - "nomCommune": "O DE SELLE" + "codePostal": "89800", + "codeCommune": "89104", + "libelleAcheminement": "CHICHEE", + "nomCommune": "CHICHEE" }, { - "codePostal": "72610", - "codeCommune": "72137", - "libelleAcheminement": "VILLENEUVE EN PERSEIGNE", - "nomCommune": "VILLENEUVE EN PERSEIGNE" + "codePostal": "76750", + "codeCommune": "76113", + "libelleAcheminement": "BOISSAY", + "nomCommune": "BOISSAY" }, { - "codePostal": "88270", - "codeCommune": "88187", - "libelleAcheminement": "FRENOIS", - "nomCommune": "FRENOIS" + "codePostal": "89190", + "codeCommune": "89111", + "libelleAcheminement": "LES CLERIMOIS", + "nomCommune": "LES CLERIMOIS" }, { - "codePostal": "89310", - "codeCommune": "89290", - "libelleAcheminement": "PASILLY", - "nomCommune": "PASILLY" + "codePostal": "77480", + "codeCommune": "77236", + "libelleAcheminement": "JAULNES", + "nomCommune": "JAULNES" }, { - "codePostal": "80510", - "codeCommune": "80488", - "libelleAcheminement": "LONGPRE LES CORPS SAINTS", - "nomCommune": "LONGPRE LES CORPS SAINTS" + "codePostal": "89530", + "codeCommune": "89108", + "libelleAcheminement": "CHITRY", + "nomCommune": "CHITRY" }, { - "codePostal": "72130", - "codeCommune": "72138", - "libelleAcheminement": "FRESNAY SUR SARTHE", - "nomCommune": "FRESNAY SUR SARTHE" + "codePostal": "76270", + "codeCommune": "76122", + "libelleAcheminement": "CALLENGEVILLE", + "nomCommune": "CALLENGEVILLE" }, { - "codePostal": "88350", - "codeCommune": "88189", - "libelleAcheminement": "FREVILLE", - "nomCommune": "FREVILLE" + "codePostal": "89500", + "codeCommune": "89116", + "libelleAcheminement": "CORNANT", + "nomCommune": "CORNANT" }, { - "codePostal": "89360", - "codeCommune": "89292", - "libelleAcheminement": "PERCEY", - "nomCommune": "PERCEY" + "codePostal": "77640", + "codeCommune": "77238", + "libelleAcheminement": "JOUARRE", + "nomCommune": "JOUARRE" }, { - "codePostal": "80600", - "codeCommune": "80491", - "libelleAcheminement": "LONGUEVILLETTE", - "nomCommune": "LONGUEVILLETTE" + "codePostal": "89580", + "codeCommune": "89117", + "libelleAcheminement": "COULANGERON", + "nomCommune": "COULANGERON" }, { - "codePostal": "72130", - "codeCommune": "72138", - "libelleAcheminement": "FRESNAY SUR SARTHE", - "nomCommune": "FRESNAY SUR SARTHE" + "codePostal": "76220", + "codeCommune": "76124", + "libelleAcheminement": "BOSC HYONS", + "nomCommune": "BOSC HYONS" }, { - "codePostal": "88440", - "codeCommune": "88190", - "libelleAcheminement": "FRIZON", - "nomCommune": "FRIZON" + "codePostal": "89560", + "codeCommune": "89125", + "libelleAcheminement": "COURSON LES CARRIERES", + "nomCommune": "COURSON LES CARRIERES" }, { - "codePostal": "89450", - "codeCommune": "89297", - "libelleAcheminement": "PIERRE PERTHUIS", - "nomCommune": "PIERRE PERTHUIS" + "codePostal": "77400", + "codeCommune": "77243", + "libelleAcheminement": "LAGNY SUR MARNE", + "nomCommune": "LAGNY SUR MARNE" }, { - "codePostal": "80150", - "codeCommune": "80501", - "libelleAcheminement": "MAISON PONTHIEU", - "nomCommune": "MAISON PONTHIEU" + "codePostal": "89140", + "codeCommune": "89124", + "libelleAcheminement": "COURLON SUR YONNE", + "nomCommune": "COURLON SUR YONNE" }, { - "codePostal": "72150", - "codeCommune": "72143", - "libelleAcheminement": "LE GRAND LUCE", - "nomCommune": "LE GRAND LUCE" + "codePostal": "76530", + "codeCommune": "76131", + "libelleAcheminement": "LA BOUILLE", + "nomCommune": "LA BOUILLE" }, { - "codePostal": "88270", - "codeCommune": "88192", - "libelleAcheminement": "GELVECOURT ET ADOMPT", - "nomCommune": "GELVECOURT ET ADOMPT" + "codePostal": "89440", + "codeCommune": "89141", + "libelleAcheminement": "DISSANGIS", + "nomCommune": "DISSANGIS" }, { - "codePostal": "89740", - "codeCommune": "89299", - "libelleAcheminement": "PIMELLES", - "nomCommune": "PIMELLES" + "codePostal": "77320", + "codeCommune": "77247", + "libelleAcheminement": "LESCHEROLLES", + "nomCommune": "LESCHEROLLES" }, { - "codePostal": "80700", - "codeCommune": "80508", - "libelleAcheminement": "MARCHE ALLOUARDE", - "nomCommune": "MARCHE ALLOUARDE" + "codePostal": "89100", + "codeCommune": "89127", + "libelleAcheminement": "COURTOIS SUR YONNE", + "nomCommune": "COURTOIS SUR YONNE" }, { - "codePostal": "72320", - "codeCommune": "72144", - "libelleAcheminement": "GREEZ SUR ROC", - "nomCommune": "GREEZ SUR ROC" + "codePostal": "76760", + "codeCommune": "76132", + "libelleAcheminement": "BOURDAINVILLE", + "nomCommune": "BOURDAINVILLE" }, { - "codePostal": "88520", - "codeCommune": "88193", - "libelleAcheminement": "GEMAINGOUTTE", - "nomCommune": "GEMAINGOUTTE" + "codePostal": "89290", + "codeCommune": "89155", + "libelleAcheminement": "ESCOLIVES STE CAMILLE", + "nomCommune": "ESCOLIVES STE CAMILLE" }, { - "codePostal": "89140", - "codeCommune": "89309", - "libelleAcheminement": "PONT SUR YONNE", - "nomCommune": "PONT SUR YONNE" + "codePostal": "77450", + "codeCommune": "77248", + "libelleAcheminement": "LESCHES", + "nomCommune": "LESCHES" }, { - "codePostal": "80560", - "codeCommune": "80514", - "libelleAcheminement": "MARIEUX", - "nomCommune": "MARIEUX" + "codePostal": "89460", + "codeCommune": "89130", + "libelleAcheminement": "DEUX RIVIERES", + "nomCommune": "DEUX RIVIERES" }, { - "codePostal": "72230", - "codeCommune": "72146", - "libelleAcheminement": "GUECELARD", - "nomCommune": "GUECELARD" + "codePostal": "76740", + "codeCommune": "76134", + "libelleAcheminement": "BOURVILLE", + "nomCommune": "BOURVILLE" }, { - "codePostal": "88390", - "codeCommune": "88201", - "libelleAcheminement": "GIRANCOURT", - "nomCommune": "GIRANCOURT" + "codePostal": "89200", + "codeCommune": "89159", + "libelleAcheminement": "ETAULE", + "nomCommune": "ETAULE" }, { - "codePostal": "89240", - "codeCommune": "89311", - "libelleAcheminement": "POURRAIN", - "nomCommune": "POURRAIN" + "codePostal": "77320", + "codeCommune": "77250", + "libelleAcheminement": "LEUDON EN BRIE", + "nomCommune": "LEUDON EN BRIE" }, { - "codePostal": "80700", - "codeCommune": "80517", - "libelleAcheminement": "MARQUIVILLERS", - "nomCommune": "MARQUIVILLERS" + "codePostal": "89460", + "codeCommune": "89130", + "libelleAcheminement": "DEUX RIVIERES", + "nomCommune": "DEUX RIVIERES" }, { - "codePostal": "72300", - "codeCommune": "72151", - "libelleAcheminement": "JUIGNE SUR SARTHE", - "nomCommune": "JUIGNE SUR SARTHE" + "codePostal": "76850", + "codeCommune": "76138", + "libelleAcheminement": "BRACQUETUIT", + "nomCommune": "BRACQUETUIT" }, { - "codePostal": "88240", - "codeCommune": "88214", - "libelleAcheminement": "GRANDRUPT DE BAINS", - "nomCommune": "GRANDRUPT DE BAINS" + "codePostal": "89510", + "codeCommune": "89160", + "libelleAcheminement": "ETIGNY", + "nomCommune": "ETIGNY" }, { - "codePostal": "89630", - "codeCommune": "89318", - "libelleAcheminement": "QUARRE LES TOMBES", - "nomCommune": "QUARRE LES TOMBES" + "codePostal": "77220", + "codeCommune": "77254", + "libelleAcheminement": "LIVERDY EN BRIE", + "nomCommune": "LIVERDY EN BRIE" }, { - "codePostal": "80140", - "codeCommune": "80518", - "libelleAcheminement": "MARTAINNEVILLE", - "nomCommune": "MARTAINNEVILLE" + "codePostal": "89390", + "codeCommune": "89132", + "libelleAcheminement": "CRY", + "nomCommune": "CRY" }, { - "codePostal": "72170", - "codeCommune": "72152", - "libelleAcheminement": "JUILLE", - "nomCommune": "JUILLE" + "codePostal": "76740", + "codeCommune": "76140", + "libelleAcheminement": "BRAMETOT", + "nomCommune": "BRAMETOT" }, { - "codePostal": "88210", - "codeCommune": "88215", - "libelleAcheminement": "GRANDRUPT", - "nomCommune": "GRANDRUPT" + "codePostal": "89140", + "codeCommune": "89162", + "libelleAcheminement": "EVRY", + "nomCommune": "EVRY" }, { - "codePostal": "89290", - "codeCommune": "89319", - "libelleAcheminement": "QUENNE", - "nomCommune": "QUENNE" + "codePostal": "77710", + "codeCommune": "77261", + "libelleAcheminement": "LORREZ LE BOCAGE PREAUX", + "nomCommune": "LORREZ LE BOCAGE PREAUX" }, { - "codePostal": "80600", - "codeCommune": "80544", - "libelleAcheminement": "MEZEROLLES", - "nomCommune": "MEZEROLLES" + "codePostal": "89150", + "codeCommune": "89143", + "libelleAcheminement": "DOLLOT", + "nomCommune": "DOLLOT" }, { - "codePostal": "72240", - "codeCommune": "72157", - "libelleAcheminement": "LAVARDIN", - "nomCommune": "LAVARDIN" + "codePostal": "76110", + "codeCommune": "76143", + "libelleAcheminement": "BRETTEVILLE DU GRAND CAUX", + "nomCommune": "BRETTEVILLE DU GRAND CAUX" }, { - "codePostal": "88630", - "codeCommune": "88219", - "libelleAcheminement": "GREUX", - "nomCommune": "GREUX" + "codePostal": "89110", + "codeCommune": "89163", + "libelleAcheminement": "LA FERTE LOUPIERE", + "nomCommune": "LA FERTE LOUPIERE" }, { - "codePostal": "89340", - "codeCommune": "89332", - "libelleAcheminement": "ST AGNAN", - "nomCommune": "ST AGNAN" + "codePostal": "77560", + "codeCommune": "77262", + "libelleAcheminement": "LOUAN VILLEGRUIS FONTAINE", + "nomCommune": "LOUAN VILLEGRUIS FONTAINE" }, { - "codePostal": "80132", - "codeCommune": "80546", - "libelleAcheminement": "MIANNAY", - "nomCommune": "MIANNAY" + "codePostal": "89130", + "codeCommune": "89147", + "libelleAcheminement": "DRACY", + "nomCommune": "DRACY" }, { - "codePostal": "72270", - "codeCommune": "72163", - "libelleAcheminement": "LIGRON", - "nomCommune": "LIGRON" + "codePostal": "76750", + "codeCommune": "76146", + "libelleAcheminement": "BUCHY", + "nomCommune": "BUCHY" }, { - "codePostal": "88220", - "codeCommune": "88225", - "libelleAcheminement": "HADOL", - "nomCommune": "HADOL" + "codePostal": "89800", + "codeCommune": "89168", + "libelleAcheminement": "FLEYS", + "nomCommune": "FLEYS" }, { - "codePostal": "89630", - "codeCommune": "89336", - "libelleAcheminement": "ST BRANCHER", - "nomCommune": "ST BRANCHER" + "codePostal": "77540", + "codeCommune": "77264", + "libelleAcheminement": "LUMIGNY NESLES ORMEAUX", + "nomCommune": "LUMIGNY NESLES ORMEAUX" }, { - "codePostal": "80200", - "codeCommune": "80555", - "libelleAcheminement": "MONCHY LAGACHE", - "nomCommune": "MONCHY LAGACHE" + "codePostal": "89480", + "codeCommune": "89158", + "libelleAcheminement": "ETAIS LA SAUVIN", + "nomCommune": "ETAIS LA SAUVIN" }, { - "codePostal": "72390", - "codeCommune": "72172", - "libelleAcheminement": "LE LUART", - "nomCommune": "LE LUART" + "codePostal": "76750", + "codeCommune": "76146", + "libelleAcheminement": "BUCHY", + "nomCommune": "BUCHY" }, { - "codePostal": "88270", - "codeCommune": "88226", - "libelleAcheminement": "HAGECOURT", - "nomCommune": "HAGECOURT" + "codePostal": "89360", + "codeCommune": "89169", + "libelleAcheminement": "FLOGNY LA CHAPELLE", + "nomCommune": "FLOGNY LA CHAPELLE" }, { - "codePostal": "89170", - "codeCommune": "89344", - "libelleAcheminement": "ST FARGEAU", - "nomCommune": "ST FARGEAU" + "codePostal": "77540", + "codeCommune": "77264", + "libelleAcheminement": "LUMIGNY NESLES ORMEAUX", + "nomCommune": "LUMIGNY NESLES ORMEAUX" }, { - "codePostal": "80210", - "codeCommune": "80556", - "libelleAcheminement": "MONS BOUBERT", - "nomCommune": "MONS BOUBERT" + "codePostal": "89450", + "codeCommune": "89170", + "libelleAcheminement": "FOISSY LES VEZELAY", + "nomCommune": "FOISSY LES VEZELAY" }, { - "codePostal": "72800", - "codeCommune": "72176", - "libelleAcheminement": "LE LUDE", - "nomCommune": "LE LUDE" + "codePostal": "76270", + "codeCommune": "76147", + "libelleAcheminement": "BULLY", + "nomCommune": "BULLY" }, { - "codePostal": "88300", - "codeCommune": "88229", - "libelleAcheminement": "HARCHECHAMP", - "nomCommune": "HARCHECHAMP" + "codePostal": "89800", + "codeCommune": "89175", + "libelleAcheminement": "FONTENAY PRES CHABLIS", + "nomCommune": "FONTENAY PRES CHABLIS" }, { - "codePostal": "89000", - "codeCommune": "89346", - "libelleAcheminement": "ST GEORGES SUR BAULCHE", - "nomCommune": "ST GEORGES SUR BAULCHE" + "codePostal": "77133", + "codeCommune": "77266", + "libelleAcheminement": "MACHAULT", + "nomCommune": "MACHAULT" }, { - "codePostal": "80110", - "codeCommune": "80571", - "libelleAcheminement": "MORISEL", - "nomCommune": "MORISEL" + "codePostal": "89130", + "codeCommune": "89173", + "libelleAcheminement": "FONTAINES", + "nomCommune": "FONTAINES" }, { - "codePostal": "72440", - "codeCommune": "72178", - "libelleAcheminement": "MAISONCELLES", - "nomCommune": "MAISONCELLES" + "codePostal": "76460", + "codeCommune": "76151", + "libelleAcheminement": "CAILLEVILLE", + "nomCommune": "CAILLEVILLE" }, { - "codePostal": "88700", - "codeCommune": "88243", - "libelleAcheminement": "HOUSSERAS", - "nomCommune": "HOUSSERAS" + "codePostal": "89660", + "codeCommune": "89177", + "libelleAcheminement": "FONTENAY SOUS FOURONNES", + "nomCommune": "FONTENAY SOUS FOURONNES" }, { - "codePostal": "89190", - "codeCommune": "89359", - "libelleAcheminement": "ST MAURICE AUX RICHES HOMMES", - "nomCommune": "ST MAURICE AUX RICHES HOMMES" + "codePostal": "77580", + "codeCommune": "77270", + "libelleAcheminement": "MAISONCELLES EN BRIE", + "nomCommune": "MAISONCELLES EN BRIE" }, { - "codePostal": "80300", - "codeCommune": "80572", - "libelleAcheminement": "MORLANCOURT", - "nomCommune": "MORLANCOURT" + "codePostal": "89520", + "codeCommune": "89179", + "libelleAcheminement": "FONTENOY", + "nomCommune": "FONTENOY" }, { - "codePostal": "72600", - "codeCommune": "72180", - "libelleAcheminement": "MAMERS", - "nomCommune": "MAMERS" + "codePostal": "76560", + "codeCommune": "76158", + "libelleAcheminement": "CANVILLE LES DEUX EGLISES", + "nomCommune": "CANVILLE LES DEUX EGLISES" }, { - "codePostal": "88320", - "codeCommune": "88248", - "libelleAcheminement": "ISCHES", - "nomCommune": "ISCHES" + "codePostal": "89150", + "codeCommune": "89180", + "libelleAcheminement": "FOUCHERES", + "nomCommune": "FOUCHERES" }, { - "codePostal": "89270", - "codeCommune": "89362", - "libelleAcheminement": "ST MORE", - "nomCommune": "ST MORE" + "codePostal": "77370", + "codeCommune": "77272", + "libelleAcheminement": "MAISON ROUGE", + "nomCommune": "MAISON ROUGE" }, { - "codePostal": "80290", - "codeCommune": "80573", - "libelleAcheminement": "MORVILLERS ST SATURNIN", - "nomCommune": "MORVILLERS ST SATURNIN" + "codePostal": "89160", + "codeCommune": "89184", + "libelleAcheminement": "FULVY", + "nomCommune": "FULVY" }, { - "codePostal": "72510", - "codeCommune": "72182", - "libelleAcheminement": "MANSIGNE", - "nomCommune": "MANSIGNE" + "codePostal": "76560", + "codeCommune": "76161", + "libelleAcheminement": "CARVILLE POT DE FER", + "nomCommune": "CARVILLE POT DE FER" }, { - "codePostal": "88260", - "codeCommune": "88252", - "libelleAcheminement": "JESONVILLE", - "nomCommune": "JESONVILLE" + "codePostal": "89310", + "codeCommune": "89183", + "libelleAcheminement": "FRESNES", + "nomCommune": "FRESNES" }, { - "codePostal": "89460", - "codeCommune": "89363", - "libelleAcheminement": "STE PALLAYE", - "nomCommune": "STE PALLAYE" + "codePostal": "77100", + "codeCommune": "77276", + "libelleAcheminement": "MAREUIL LES MEAUX", + "nomCommune": "MAREUIL LES MEAUX" }, { - "codePostal": "80290", - "codeCommune": "80573", - "libelleAcheminement": "MORVILLERS ST SATURNIN", - "nomCommune": "MORVILLERS ST SATURNIN" + "codePostal": "89200", + "codeCommune": "89190", + "libelleAcheminement": "GIVRY", + "nomCommune": "GIVRY" }, { - "codePostal": "72200", - "codeCommune": "72185", - "libelleAcheminement": "MAREIL SUR LOIR", - "nomCommune": "MAREIL SUR LOIR" + "codePostal": "76116", + "codeCommune": "76163", + "libelleAcheminement": "CATENAY", + "nomCommune": "CATENAY" }, { - "codePostal": "88000", - "codeCommune": "88253", - "libelleAcheminement": "JEUXEY", - "nomCommune": "JEUXEY" + "codePostal": "89140", + "codeCommune": "89189", + "libelleAcheminement": "GISY LES NOBLES", + "nomCommune": "GISY LES NOBLES" }, { - "codePostal": "89220", - "codeCommune": "89365", - "libelleAcheminement": "ST PRIVE", - "nomCommune": "ST PRIVE" + "codePostal": "77990", + "codeCommune": "77282", + "libelleAcheminement": "MAUREGARD", + "nomCommune": "MAUREGARD" }, { - "codePostal": "80400", - "codeCommune": "80579", - "libelleAcheminement": "MUILLE VILLETTE", - "nomCommune": "MUILLE VILLETTE" + "codePostal": "89310", + "codeCommune": "89194", + "libelleAcheminement": "GRIMAULT", + "nomCommune": "GRIMAULT" }, { - "codePostal": "72260", - "codeCommune": "72189", - "libelleAcheminement": "MAROLLES LES BRAULTS", - "nomCommune": "MAROLLES LES BRAULTS" + "codePostal": "76320", + "codeCommune": "76165", + "libelleAcheminement": "CAUDEBEC LES ELBEUF", + "nomCommune": "CAUDEBEC LES ELBEUF" }, { - "codePostal": "88630", - "codeCommune": "88255", - "libelleAcheminement": "JUBAINVILLE", - "nomCommune": "JUBAINVILLE" + "codePostal": "89110", + "codeCommune": "89196", + "libelleAcheminement": "VALRAVILLON", + "nomCommune": "VALRAVILLON" }, { - "codePostal": "89160", - "codeCommune": "89374", - "libelleAcheminement": "SAMBOURG", - "nomCommune": "SAMBOURG" + "codePostal": "77990", + "codeCommune": "77291", + "libelleAcheminement": "LE MESNIL AMELOT", + "nomCommune": "LE MESNIL AMELOT" }, { - "codePostal": "80290", - "codeCommune": "80582", - "libelleAcheminement": "NAMPS MAISNIL", - "nomCommune": "NAMPS MAISNIL" + "codePostal": "89100", + "codeCommune": "89195", + "libelleAcheminement": "GRON", + "nomCommune": "GRON" }, { - "codePostal": "72360", - "codeCommune": "72191", - "libelleAcheminement": "MAYET", - "nomCommune": "MAYET" + "codePostal": "76590", + "codeCommune": "76170", + "libelleAcheminement": "LA CHAPELLE DU BOURGAY", + "nomCommune": "LA CHAPELLE DU BOURGAY" }, { - "codePostal": "88640", - "codeCommune": "88256", - "libelleAcheminement": "JUSSARUPT", - "nomCommune": "JUSSARUPT" + "codePostal": "89113", + "codeCommune": "89196", + "libelleAcheminement": "VALRAVILLON", + "nomCommune": "VALRAVILLON" }, { - "codePostal": "89310", - "codeCommune": "89376", - "libelleAcheminement": "SARRY", - "nomCommune": "SARRY" + "codePostal": "77151", + "codeCommune": "77301", + "libelleAcheminement": "MONTCEAUX LES PROVINS", + "nomCommune": "MONTCEAUX LES PROVINS" }, { - "codePostal": "80140", - "codeCommune": "80586", - "libelleAcheminement": "NESLE L HOPITAL", - "nomCommune": "NESLE L HOPITAL" + "codePostal": "89420", + "codeCommune": "89197", + "libelleAcheminement": "GUILLON TERRE PLAINE", + "nomCommune": "GUILLON TERRE PLAINE" }, { - "codePostal": "72320", - "codeCommune": "72193", - "libelleAcheminement": "MELLERAY", - "nomCommune": "MELLERAY" + "codePostal": "76740", + "codeCommune": "76172", + "libelleAcheminement": "LA CHAPELLE SUR DUN", + "nomCommune": "LA CHAPELLE SUR DUN" }, { - "codePostal": "88320", - "codeCommune": "88258", - "libelleAcheminement": "LAMARCHE", - "nomCommune": "LAMARCHE" + "codePostal": "89113", + "codeCommune": "89196", + "libelleAcheminement": "VALRAVILLON", + "nomCommune": "VALRAVILLON" }, { - "codePostal": "89150", - "codeCommune": "89380", - "libelleAcheminement": "SAVIGNY SUR CLAIRIS", - "nomCommune": "SAVIGNY SUR CLAIRIS" + "codePostal": "77950", + "codeCommune": "77306", + "libelleAcheminement": "MONTEREAU SUR LE JARD", + "nomCommune": "MONTEREAU SUR LE JARD" }, { - "codePostal": "80132", - "codeCommune": "80590", - "libelleAcheminement": "NEUILLY L HOPITAL", - "nomCommune": "NEUILLY L HOPITAL" + "codePostal": "89250", + "codeCommune": "89198", + "libelleAcheminement": "GURGY", + "nomCommune": "GURGY" }, { - "codePostal": "72170", - "codeCommune": "72194", - "libelleAcheminement": "MEURCE", - "nomCommune": "MEURCE" + "codePostal": "76570", + "codeCommune": "76174", + "libelleAcheminement": "CIDEVILLE", + "nomCommune": "CIDEVILLE" }, { - "codePostal": "88300", - "codeCommune": "88265", - "libelleAcheminement": "LEMMECOURT", - "nomCommune": "LEMMECOURT" + "codePostal": "89290", + "codeCommune": "89202", + "libelleAcheminement": "IRANCY", + "nomCommune": "IRANCY" }, { - "codePostal": "89160", - "codeCommune": "89386", - "libelleAcheminement": "SENNEVOY LE HAUT", - "nomCommune": "SENNEVOY LE HAUT" + "codePostal": "77520", + "codeCommune": "77311", + "libelleAcheminement": "MONTIGNY LENCOUP", + "nomCommune": "MONTIGNY LENCOUP" }, { - "codePostal": "80600", - "codeCommune": "80596", - "libelleAcheminement": "NEUVILLETTE", - "nomCommune": "NEUVILLETTE" + "codePostal": "89310", + "codeCommune": "89207", + "libelleAcheminement": "JOUANCY", + "nomCommune": "JOUANCY" }, { - "codePostal": "72650", - "codeCommune": "72198", - "libelleAcheminement": "LA MILESSE", - "nomCommune": "LA MILESSE" + "codePostal": "76450", + "codeCommune": "76176", + "libelleAcheminement": "CLASVILLE", + "nomCommune": "CLASVILLE" }, { - "codePostal": "88260", - "codeCommune": "88267", - "libelleAcheminement": "LERRAIN", - "nomCommune": "LERRAIN" + "codePostal": "89300", + "codeCommune": "89206", + "libelleAcheminement": "JOIGNY", + "nomCommune": "JOIGNY" }, { - "codePostal": "89100", - "codeCommune": "89387", - "libelleAcheminement": "SENS", - "nomCommune": "SENS" + "codePostal": "77320", + "codeCommune": "77314", + "libelleAcheminement": "MONTOLIVET", + "nomCommune": "MONTOLIVET" }, { - "codePostal": "80210", - "codeCommune": "80603", - "libelleAcheminement": "OCHANCOURT", - "nomCommune": "OCHANCOURT" + "codePostal": "89150", + "codeCommune": "89209", + "libelleAcheminement": "JOUY", + "nomCommune": "JOUY" }, { - "codePostal": "72170", - "codeCommune": "72199", - "libelleAcheminement": "MOITRON SUR SARTHE", - "nomCommune": "MOITRON SUR SARTHE" + "codePostal": "76550", + "codeCommune": "76184", + "libelleAcheminement": "COLMESNIL MANNEVILLE", + "nomCommune": "COLMESNIL MANNEVILLE" }, { - "codePostal": "88400", - "codeCommune": "88269", - "libelleAcheminement": "LIEZEY", - "nomCommune": "LIEZEY" + "codePostal": "89290", + "codeCommune": "89212", + "libelleAcheminement": "JUSSY", + "nomCommune": "JUSSY" }, { - "codePostal": "89190", - "codeCommune": "89395", - "libelleAcheminement": "LES SIEGES", - "nomCommune": "LES SIEGES" + "codePostal": "77250", + "codeCommune": "77316", + "libelleAcheminement": "MORET LOING ET ORVANNE", + "nomCommune": "MORET LOING ET ORVANNE" }, { - "codePostal": "80540", - "codeCommune": "80607", - "libelleAcheminement": "OISSY", - "nomCommune": "OISSY" + "codePostal": "89560", + "codeCommune": "89215", + "libelleAcheminement": "LAIN", + "nomCommune": "LAIN" }, { - "codePostal": "72230", - "codeCommune": "72200", - "libelleAcheminement": "MONCE EN BELIN", - "nomCommune": "MONCE EN BELIN" + "codePostal": "76390", + "codeCommune": "76186", + "libelleAcheminement": "CONTEVILLE", + "nomCommune": "CONTEVILLE" }, { - "codePostal": "88450", - "codeCommune": "88280", - "libelleAcheminement": "MADEGNEY", - "nomCommune": "MADEGNEY" + "codePostal": "89570", + "codeCommune": "89219", + "libelleAcheminement": "LASSON", + "nomCommune": "LASSON" }, { - "codePostal": "89100", - "codeCommune": "89399", - "libelleAcheminement": "SOUCY", - "nomCommune": "SOUCY" + "codePostal": "77720", + "codeCommune": "77317", + "libelleAcheminement": "MORMANT", + "nomCommune": "MORMANT" }, { - "codePostal": "80190", - "codeCommune": "80616", - "libelleAcheminement": "PARGNY", - "nomCommune": "PARGNY" + "codePostal": "89170", + "codeCommune": "89220", + "libelleAcheminement": "LAVAU", + "nomCommune": "LAVAU" }, { - "codePostal": "72120", - "codeCommune": "72204", - "libelleAcheminement": "MONTAILLE", - "nomCommune": "MONTAILLE" + "codePostal": "76850", + "codeCommune": "76193", + "libelleAcheminement": "LA CRIQUE", + "nomCommune": "LA CRIQUE" }, { - "codePostal": "88270", - "codeCommune": "88281", - "libelleAcheminement": "MADONNE ET LAMEREY", - "nomCommune": "MADONNE ET LAMEREY" + "codePostal": "89300", + "codeCommune": "89230", + "libelleAcheminement": "LOOZE", + "nomCommune": "LOOZE" }, { - "codePostal": "89560", - "codeCommune": "89405", - "libelleAcheminement": "LES HAUTS DE FORTERRE", - "nomCommune": "LES HAUTS DE FORTERRE" + "codePostal": "77120", + "codeCommune": "77320", + "libelleAcheminement": "MOUROUX", + "nomCommune": "MOUROUX" }, { - "codePostal": "80700", - "codeCommune": "80617", - "libelleAcheminement": "PARVILLERS LE QUESNOY", - "nomCommune": "PARVILLERS LE QUESNOY" + "codePostal": "89130", + "codeCommune": "89221", + "libelleAcheminement": "LEUGNY", + "nomCommune": "LEUGNY" }, { - "codePostal": "72130", - "codeCommune": "72212", - "libelleAcheminement": "MOULINS LE CARBONNEL", - "nomCommune": "MOULINS LE CARBONNEL" + "codePostal": "76280", + "codeCommune": "76196", + "libelleAcheminement": "CRIQUETOT L ESNEVAL", + "nomCommune": "CRIQUETOT L ESNEVAL" }, { - "codePostal": "88270", - "codeCommune": "88288", - "libelleAcheminement": "MARONCOURT", - "nomCommune": "MARONCOURT" + "codePostal": "89270", + "codeCommune": "89233", + "libelleAcheminement": "LUCY SUR CURE", + "nomCommune": "LUCY SUR CURE" }, { - "codePostal": "89420", - "codeCommune": "89406", - "libelleAcheminement": "TALCY", - "nomCommune": "TALCY" + "codePostal": "77230", + "codeCommune": "77323", + "libelleAcheminement": "MOUSSY LE VIEUX", + "nomCommune": "MOUSSY LE VIEUX" }, { - "codePostal": "80230", - "codeCommune": "80618", - "libelleAcheminement": "PENDE", - "nomCommune": "PENDE" + "codePostal": "89160", + "codeCommune": "89223", + "libelleAcheminement": "LEZINNES", + "nomCommune": "LEZINNES" }, { - "codePostal": "72240", - "codeCommune": "72216", - "libelleAcheminement": "NEUVILLALAIS", - "nomCommune": "NEUVILLALAIS" + "codePostal": "76760", + "codeCommune": "76198", + "libelleAcheminement": "CRIQUETOT SUR OUVILLE", + "nomCommune": "CRIQUETOT SUR OUVILLE" }, { - "codePostal": "88500", - "codeCommune": "88292", - "libelleAcheminement": "MATTAINCOURT", - "nomCommune": "MATTAINCOURT" + "codePostal": "89440", + "codeCommune": "89246", + "libelleAcheminement": "MASSANGIS", + "nomCommune": "MASSANGIS" }, { - "codePostal": "89430", - "codeCommune": "89407", - "libelleAcheminement": "TANLAY", - "nomCommune": "TANLAY" + "codePostal": "77100", + "codeCommune": "77330", + "libelleAcheminement": "NANTEUIL LES MEAUX", + "nomCommune": "NANTEUIL LES MEAUX" }, { - "codePostal": "80670", - "codeCommune": "80619", - "libelleAcheminement": "PERNOIS", - "nomCommune": "PERNOIS" + "codePostal": "89420", + "codeCommune": "89244", + "libelleAcheminement": "MARMEAUX", + "nomCommune": "MARMEAUX" }, { - "codePostal": "72240", - "codeCommune": "72219", - "libelleAcheminement": "BERNAY NEUVY EN CHAMPAGNE", - "nomCommune": "BERNAY NEUVY EN CHAMPAGNE" + "codePostal": "76260", + "codeCommune": "76207", + "libelleAcheminement": "CUVERVILLE SUR YERES", + "nomCommune": "CUVERVILLE SUR YERES" }, { - "codePostal": "88140", - "codeCommune": "88296", - "libelleAcheminement": "MEDONVILLE", - "nomCommune": "MEDONVILLE" + "codePostal": "89130", + "codeCommune": "89254", + "libelleAcheminement": "MEZILLES", + "nomCommune": "MEZILLES" }, { - "codePostal": "89350", - "codeCommune": "89408", - "libelleAcheminement": "TANNERRE EN PUISAYE", - "nomCommune": "TANNERRE EN PUISAYE" + "codePostal": "77730", + "codeCommune": "77331", + "libelleAcheminement": "NANTEUIL SUR MARNE", + "nomCommune": "NANTEUIL SUR MARNE" }, { - "codePostal": "80500", - "codeCommune": "80623", - "libelleAcheminement": "PIENNES ONVILLERS", - "nomCommune": "PIENNES ONVILLERS" + "codePostal": "89500", + "codeCommune": "89245", + "libelleAcheminement": "MARSANGY", + "nomCommune": "MARSANGY" }, { - "codePostal": "72500", - "codeCommune": "72221", - "libelleAcheminement": "NOGENT SUR LOIR", - "nomCommune": "NOGENT SUR LOIR" + "codePostal": "76220", + "codeCommune": "76209", + "libelleAcheminement": "DAMPIERRE EN BRAY", + "nomCommune": "DAMPIERRE EN BRAY" }, { - "codePostal": "88630", - "codeCommune": "88303", - "libelleAcheminement": "MIDREVAUX", - "nomCommune": "MIDREVAUX" + "codePostal": "89400", + "codeCommune": "89257", + "libelleAcheminement": "MIGENNES", + "nomCommune": "MIGENNES" }, { - "codePostal": "89420", - "codeCommune": "89412", - "libelleAcheminement": "THIZY", - "nomCommune": "THIZY" + "codePostal": "77124", + "codeCommune": "77335", + "libelleAcheminement": "CHAUCONIN NEUFMONTIERS", + "nomCommune": "CHAUCONIN NEUFMONTIERS" }, { - "codePostal": "80500", - "codeCommune": "80623", - "libelleAcheminement": "PIENNES ONVILLERS", - "nomCommune": "PIENNES ONVILLERS" + "codePostal": "89440", + "codeCommune": "89246", + "libelleAcheminement": "MASSANGIS", + "nomCommune": "MASSANGIS" }, { - "codePostal": "72260", - "codeCommune": "72222", - "libelleAcheminement": "NOUANS", - "nomCommune": "NOUANS" + "codePostal": "76510", + "codeCommune": "76210", + "libelleAcheminement": "DAMPIERRE ST NICOLAS", + "nomCommune": "DAMPIERRE ST NICOLAS" }, { - "codePostal": "88630", - "codeCommune": "88305", - "libelleAcheminement": "MONCEL SUR VAIR", - "nomCommune": "MONCEL SUR VAIR" + "codePostal": "89310", + "codeCommune": "89259", + "libelleAcheminement": "MOLAY", + "nomCommune": "MOLAY" }, { - "codePostal": "89200", - "codeCommune": "89415", - "libelleAcheminement": "THORY", - "nomCommune": "THORY" + "codePostal": "77123", + "codeCommune": "77339", + "libelleAcheminement": "NOISY SUR ECOLE", + "nomCommune": "NOISY SUR ECOLE" }, { - "codePostal": "80500", - "codeCommune": "80625", - "libelleAcheminement": "TROIS RIVIERES", - "nomCommune": "TROIS RIVIERES" + "codePostal": "89470", + "codeCommune": "89263", + "libelleAcheminement": "MONETEAU", + "nomCommune": "MONETEAU" }, { - "codePostal": "72350", - "codeCommune": "72239", - "libelleAcheminement": "POILLE SUR VEGRE", - "nomCommune": "POILLE SUR VEGRE" + "codePostal": "76630", + "codeCommune": "76220", + "libelleAcheminement": "DOUVREND", + "nomCommune": "DOUVREND" }, { - "codePostal": "88320", - "codeCommune": "88307", - "libelleAcheminement": "MONT LES LAMARCHE", - "nomCommune": "MONT LES LAMARCHE" + "codePostal": "89100", + "codeCommune": "89274", + "libelleAcheminement": "NAILLY", + "nomCommune": "NAILLY" }, { - "codePostal": "89700", - "codeCommune": "89417", - "libelleAcheminement": "TISSEY", - "nomCommune": "TISSEY" + "codePostal": "77134", + "codeCommune": "77347", + "libelleAcheminement": "LES ORMES SUR VOULZIE", + "nomCommune": "LES ORMES SUR VOULZIE" }, { - "codePostal": "80540", - "codeCommune": "80626", - "libelleAcheminement": "PISSY", - "nomCommune": "PISSY" + "codePostal": "89470", + "codeCommune": "89263", + "libelleAcheminement": "MONETEAU", + "nomCommune": "MONETEAU" }, { - "codePostal": "72450", - "codeCommune": "72241", - "libelleAcheminement": "MONTFORT LE GESNOIS", - "nomCommune": "MONTFORT LE GESNOIS" + "codePostal": "76110", + "codeCommune": "76224", + "libelleAcheminement": "ECRAINVILLE", + "nomCommune": "ECRAINVILLE" }, { - "codePostal": "88300", - "codeCommune": "88308", - "libelleAcheminement": "MONT LES NEUFCHATEAU", - "nomCommune": "MONT LES NEUFCHATEAU" + "codePostal": "89310", + "codeCommune": "89290", + "libelleAcheminement": "PASILLY", + "nomCommune": "PASILLY" }, { - "codePostal": "89150", - "codeCommune": "89428", - "libelleAcheminement": "VALLERY", - "nomCommune": "VALLERY" + "codePostal": "77167", + "codeCommune": "77348", + "libelleAcheminement": "ORMESSON", + "nomCommune": "ORMESSON" }, { - "codePostal": "80480", - "codeCommune": "80632", - "libelleAcheminement": "PONT DE METZ", - "nomCommune": "PONT DE METZ" + "codePostal": "89150", + "codeCommune": "89264", + "libelleAcheminement": "MONTACHER VILLEGARDIN", + "nomCommune": "MONTACHER VILLEGARDIN" }, { - "codePostal": "72110", - "codeCommune": "72246", - "libelleAcheminement": "PREVELLES", - "nomCommune": "PREVELLES" + "codePostal": "76540", + "codeCommune": "76226", + "libelleAcheminement": "ECRETTEVILLE SUR MER", + "nomCommune": "ECRETTEVILLE SUR MER" }, { - "codePostal": "88410", - "codeCommune": "88310", - "libelleAcheminement": "MONTHUREUX SUR SAONE", - "nomCommune": "MONTHUREUX SUR SAONE" + "codePostal": "89140", + "codeCommune": "89302", + "libelleAcheminement": "PLESSIS ST JEAN", + "nomCommune": "PLESSIS ST JEAN" }, { - "codePostal": "89144", - "codeCommune": "89430", - "libelleAcheminement": "VARENNES", - "nomCommune": "VARENNES" + "codePostal": "77480", + "codeCommune": "77356", + "libelleAcheminement": "PASSY SUR SEINE", + "nomCommune": "PASSY SUR SEINE" }, { - "codePostal": "80115", - "codeCommune": "80634", - "libelleAcheminement": "PONT NOYELLES", - "nomCommune": "PONT NOYELLES" + "codePostal": "89230", + "codeCommune": "89265", + "libelleAcheminement": "MONTIGNY LA RESLE", + "nomCommune": "MONTIGNY LA RESLE" }, { - "codePostal": "72510", - "codeCommune": "72252", - "libelleAcheminement": "REQUEIL", - "nomCommune": "REQUEIL" + "codePostal": "76970", + "codeCommune": "76228", + "libelleAcheminement": "ECTOT LES BAONS", + "nomCommune": "ECTOT LES BAONS" }, { - "codePostal": "88170", - "codeCommune": "88312", - "libelleAcheminement": "MORELMAISON", - "nomCommune": "MORELMAISON" + "codePostal": "89310", + "codeCommune": "89303", + "libelleAcheminement": "POILLY SUR SEREIN", + "nomCommune": "POILLY SUR SEREIN" }, { - "codePostal": "89330", - "codeCommune": "89440", - "libelleAcheminement": "VERLIN", - "nomCommune": "VERLIN" + "codePostal": "77124", + "codeCommune": "77358", + "libelleAcheminement": "PENCHARD", + "nomCommune": "PENCHARD" }, { - "codePostal": "80580", - "codeCommune": "80635", - "libelleAcheminement": "PONT REMY", - "nomCommune": "PONT REMY" + "codePostal": "89420", + "codeCommune": "89267", + "libelleAcheminement": "MONTREAL", + "nomCommune": "MONTREAL" }, { - "codePostal": "72140", - "codeCommune": "72255", - "libelleAcheminement": "ROUESSE VASSE", - "nomCommune": "ROUESSE VASSE" + "codePostal": "76220", + "codeCommune": "76229", + "libelleAcheminement": "ELBEUF EN BRAY", + "nomCommune": "ELBEUF EN BRAY" }, { - "codePostal": "88700", - "codeCommune": "88318", - "libelleAcheminement": "MOYEMONT", - "nomCommune": "MOYEMONT" + "codePostal": "89260", + "codeCommune": "89310", + "libelleAcheminement": "LA POSTOLLE", + "nomCommune": "LA POSTOLLE" }, { - "codePostal": "89270", - "codeCommune": "89441", - "libelleAcheminement": "VERMENTON", - "nomCommune": "VERMENTON" + "codePostal": "77181", + "codeCommune": "77363", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "80132", - "codeCommune": "80654", - "libelleAcheminement": "QUESNOY LE MONTANT", - "nomCommune": "QUESNOY LE MONTANT" + "codePostal": "89390", + "codeCommune": "89280", + "libelleAcheminement": "NUITS", + "nomCommune": "NUITS" }, { - "codePostal": "72110", - "codeCommune": "72259", - "libelleAcheminement": "ROUPERROUX LE COQUET", - "nomCommune": "ROUPERROUX LE COQUET" + "codePostal": "76400", + "codeCommune": "76240", + "libelleAcheminement": "EPREVILLE", + "nomCommune": "EPREVILLE" }, { - "codePostal": "88420", - "codeCommune": "88319", - "libelleAcheminement": "MOYENMOUTIER", - "nomCommune": "MOYENMOUTIER" + "codePostal": "89440", + "codeCommune": "89312", + "libelleAcheminement": "PRECY LE SEC", + "nomCommune": "PRECY LE SEC" }, { - "codePostal": "89300", - "codeCommune": "89452", - "libelleAcheminement": "VILLECIEN", - "nomCommune": "VILLECIEN" + "codePostal": "77440", + "codeCommune": "77367", + "libelleAcheminement": "LE PLESSIS PLACY", + "nomCommune": "LE PLESSIS PLACY" }, { - "codePostal": "80250", - "codeCommune": "80657", - "libelleAcheminement": "QUIRY LE SEC", - "nomCommune": "QUIRY LE SEC" + "codePostal": "89160", + "codeCommune": "89284", + "libelleAcheminement": "PACY SUR ARMANCON", + "nomCommune": "PACY SUR ARMANCON" }, { - "codePostal": "72310", - "codeCommune": "72262", - "libelleAcheminement": "LOIR EN VALLEE", - "nomCommune": "LOIR EN VALLEE" + "codePostal": "76220", + "codeCommune": "76242", + "libelleAcheminement": "ERNEMONT LA VILLETTE", + "nomCommune": "ERNEMONT LA VILLETTE" }, { - "codePostal": "88100", - "codeCommune": "88320", - "libelleAcheminement": "NAYEMONT LES FOSSES", - "nomCommune": "NAYEMONT LES FOSSES" + "codePostal": "89800", + "codeCommune": "89341", + "libelleAcheminement": "ST CYR LES COLONS", + "nomCommune": "ST CYR LES COLONS" }, { - "codePostal": "89140", - "codeCommune": "89458", - "libelleAcheminement": "VILLENAVOTTE", - "nomCommune": "VILLENAVOTTE" + "codePostal": "77340", + "codeCommune": "77373", + "libelleAcheminement": "PONTAULT COMBAULT", + "nomCommune": "PONTAULT COMBAULT" }, { - "codePostal": "80500", - "codeCommune": "80667", - "libelleAcheminement": "REMAUGIES", - "nomCommune": "REMAUGIES" + "codePostal": "89300", + "codeCommune": "89289", + "libelleAcheminement": "PAROY SUR THOLON", + "nomCommune": "PAROY SUR THOLON" }, { - "codePostal": "72340", - "codeCommune": "72262", - "libelleAcheminement": "LOIR EN VALLEE", - "nomCommune": "LOIR EN VALLEE" + "codePostal": "76270", + "codeCommune": "76244", + "libelleAcheminement": "ESCLAVELLES", + "nomCommune": "ESCLAVELLES" }, { - "codePostal": "88600", - "codeCommune": "88322", - "libelleAcheminement": "LA NEUVEVILLE DEVANT LEPANGES", - "nomCommune": "LA NEUVEVILLE DEVANT LEPANGES" + "codePostal": "89330", + "codeCommune": "89353", + "libelleAcheminement": "ST MARTIN D ORDON", + "nomCommune": "ST MARTIN D ORDON" }, { - "codePostal": "89190", - "codeCommune": "89461", - "libelleAcheminement": "VILLENEUVE L ARCHEVEQUE", - "nomCommune": "VILLENEUVE L ARCHEVEQUE" + "codePostal": "77139", + "codeCommune": "77380", + "libelleAcheminement": "PUISIEUX", + "nomCommune": "PUISIEUX" }, { - "codePostal": "80250", - "codeCommune": "80668", - "libelleAcheminement": "REMIENCOURT", - "nomCommune": "REMIENCOURT" + "codePostal": "89000", + "codeCommune": "89295", + "libelleAcheminement": "PERRIGNY", + "nomCommune": "PERRIGNY" }, { - "codePostal": "72300", - "codeCommune": "72264", - "libelleAcheminement": "SABLE SUR SARTHE", - "nomCommune": "SABLE SUR SARTHE" + "codePostal": "76190", + "codeCommune": "76253", + "libelleAcheminement": "ETOUTTEVILLE", + "nomCommune": "ETOUTTEVILLE" }, { - "codePostal": "88260", - "codeCommune": "88330", - "libelleAcheminement": "NONVILLE", - "nomCommune": "NONVILLE" + "codePostal": "89190", + "codeCommune": "89359", + "libelleAcheminement": "ST MAURICE AUX RICHES HOMMES", + "nomCommune": "ST MAURICE AUX RICHES HOMMES" }, { - "codePostal": "89260", - "codeCommune": "89469", - "libelleAcheminement": "PERCENEIGE", - "nomCommune": "PERCENEIGE" + "codePostal": "77230", + "codeCommune": "77392", + "libelleAcheminement": "ROUVRES", + "nomCommune": "ROUVRES" }, { - "codePostal": "80240", - "codeCommune": "80677", - "libelleAcheminement": "ROISEL", - "nomCommune": "ROISEL" + "codePostal": "89330", + "codeCommune": "89298", + "libelleAcheminement": "PIFFONDS", + "nomCommune": "PIFFONDS" }, { - "codePostal": "72130", - "codeCommune": "72294", - "libelleAcheminement": "ST LEONARD DES BOIS", - "nomCommune": "ST LEONARD DES BOIS" + "codePostal": "76640", + "codeCommune": "76258", + "libelleAcheminement": "TERRES DE CAUX", + "nomCommune": "TERRES DE CAUX" }, { - "codePostal": "88700", - "codeCommune": "88333", - "libelleAcheminement": "NOSSONCOURT", - "nomCommune": "NOSSONCOURT" + "codePostal": "89110", + "codeCommune": "89361", + "libelleAcheminement": "ST MAURICE THIZOUAILLE", + "nomCommune": "ST MAURICE THIZOUAILLE" }, { - "codePostal": "89160", - "codeCommune": "89470", - "libelleAcheminement": "VILLIERS LES HAUTS", - "nomCommune": "VILLIERS LES HAUTS" + "codePostal": "77950", + "codeCommune": "77394", + "libelleAcheminement": "RUBELLES", + "nomCommune": "RUBELLES" }, { - "codePostal": "80500", - "codeCommune": "80678", - "libelleAcheminement": "ROLLOT", - "nomCommune": "ROLLOT" + "codePostal": "89740", + "codeCommune": "89299", + "libelleAcheminement": "PIMELLES", + "nomCommune": "PIMELLES" }, { - "codePostal": "72400", - "codeCommune": "72302", - "libelleAcheminement": "ST MARTIN DES MONTS", - "nomCommune": "ST MARTIN DES MONTS" + "codePostal": "76640", + "codeCommune": "76258", + "libelleAcheminement": "TERRES DE CAUX", + "nomCommune": "TERRES DE CAUX" }, { - "codePostal": "88500", - "codeCommune": "88334", - "libelleAcheminement": "OELLEVILLE", - "nomCommune": "OELLEVILLE" + "codePostal": "89220", + "codeCommune": "89365", + "libelleAcheminement": "ST PRIVE", + "nomCommune": "ST PRIVE" }, { - "codePostal": "89160", - "codeCommune": "89481", - "libelleAcheminement": "VIREAUX", - "nomCommune": "VIREAUX" + "codePostal": "77560", + "codeCommune": "77396", + "libelleAcheminement": "RUPEREUX", + "nomCommune": "RUPEREUX" }, { - "codePostal": "80190", - "codeCommune": "80683", - "libelleAcheminement": "ROUY LE GRAND", - "nomCommune": "ROUY LE GRAND" + "codePostal": "89230", + "codeCommune": "89307", + "libelleAcheminement": "PONTIGNY", + "nomCommune": "PONTIGNY" }, { - "codePostal": "72350", - "codeCommune": "72307", - "libelleAcheminement": "ST OUEN EN CHAMPAGNE", - "nomCommune": "ST OUEN EN CHAMPAGNE" + "codePostal": "76640", + "codeCommune": "76258", + "libelleAcheminement": "TERRES DE CAUX", + "nomCommune": "TERRES DE CAUX" }, { - "codePostal": "88100", - "codeCommune": "88341", - "libelleAcheminement": "PAIR ET GRANDRUPT", - "nomCommune": "PAIR ET GRANDRUPT" + "codePostal": "89520", + "codeCommune": "89368", + "libelleAcheminement": "ST SAUVEUR EN PUISAYE", + "nomCommune": "ST SAUVEUR EN PUISAYE" }, { - "codePostal": "90400", - "codeCommune": "90001", - "libelleAcheminement": "ANDELNANS", - "nomCommune": "ANDELNANS" + "codePostal": "77515", + "codeCommune": "77400", + "libelleAcheminement": "ST AUGUSTIN", + "nomCommune": "ST AUGUSTIN" }, { - "codePostal": "80190", - "codeCommune": "80684", - "libelleAcheminement": "ROUY LE PETIT", - "nomCommune": "ROUY LE PETIT" + "codePostal": "89190", + "codeCommune": "89308", + "libelleAcheminement": "PONT SUR VANNE", + "nomCommune": "PONT SUR VANNE" }, { - "codePostal": "72600", - "codeCommune": "72313", - "libelleAcheminement": "ST PIERRE DES ORMES", - "nomCommune": "ST PIERRE DES ORMES" + "codePostal": "76270", + "codeCommune": "76265", + "libelleAcheminement": "FLAMETS FRETILS", + "nomCommune": "FLAMETS FRETILS" }, { - "codePostal": "88210", - "codeCommune": "88346", - "libelleAcheminement": "LA PETITE RAON", - "nomCommune": "LA PETITE RAON" + "codePostal": "89150", + "codeCommune": "89370", + "libelleAcheminement": "ST VALERIEN", + "nomCommune": "ST VALERIEN" }, { - "codePostal": "90200", - "codeCommune": "90005", - "libelleAcheminement": "AUXELLES BAS", - "nomCommune": "AUXELLES BAS" + "codePostal": "77950", + "codeCommune": "77410", + "libelleAcheminement": "ST GERMAIN LAXIS", + "nomCommune": "ST GERMAIN LAXIS" }, { - "codePostal": "80120", - "codeCommune": "80688", - "libelleAcheminement": "RUE", - "nomCommune": "RUE" + "codePostal": "89240", + "codeCommune": "89311", + "libelleAcheminement": "POURRAIN", + "nomCommune": "POURRAIN" }, { - "codePostal": "72380", - "codeCommune": "72319", - "libelleAcheminement": "STE SABINE SUR LONGEVE", - "nomCommune": "STE SABINE SUR LONGEVE" + "codePostal": "76260", + "codeCommune": "76266", + "libelleAcheminement": "FLOCQUES", + "nomCommune": "FLOCQUES" }, { - "codePostal": "88600", - "codeCommune": "88348", - "libelleAcheminement": "PIERREPONT SUR L ARENTELE", - "nomCommune": "PIERREPONT SUR L ARENTELE" + "codePostal": "89420", + "codeCommune": "89375", + "libelleAcheminement": "SANTIGNY", + "nomCommune": "SANTIGNY" }, { - "codePostal": "90800", - "codeCommune": "90008", - "libelleAcheminement": "BAVILLIERS", - "nomCommune": "BAVILLIERS" + "codePostal": "77230", + "codeCommune": "77420", + "libelleAcheminement": "ST MARD", + "nomCommune": "ST MARD" }, { - "codePostal": "80680", - "codeCommune": "80690", - "libelleAcheminement": "RUMIGNY", - "nomCommune": "RUMIGNY" + "codePostal": "89390", + "codeCommune": "89321", + "libelleAcheminement": "RAVIERES", + "nomCommune": "RAVIERES" }, { - "codePostal": "72650", - "codeCommune": "72320", - "libelleAcheminement": "ST SATURNIN", - "nomCommune": "ST SATURNIN" + "codePostal": "76280", + "codeCommune": "76268", + "libelleAcheminement": "FONGUEUSEMARE", + "nomCommune": "FONGUEUSEMARE" }, { - "codePostal": "88300", - "codeCommune": "88352", - "libelleAcheminement": "POMPIERRE", - "nomCommune": "POMPIERRE" + "codePostal": "89150", + "codeCommune": "89380", + "libelleAcheminement": "SAVIGNY SUR CLAIRIS", + "nomCommune": "SAVIGNY SUR CLAIRIS" }, { - "codePostal": "90110", - "codeCommune": "90016", - "libelleAcheminement": "BOURG SOUS CHATELET", - "nomCommune": "BOURG SOUS CHATELET" + "codePostal": "77720", + "codeCommune": "77426", + "libelleAcheminement": "ST MERY", + "nomCommune": "ST MERY" }, { - "codePostal": "80230", - "codeCommune": "80691", - "libelleAcheminement": "SAIGNEVILLE", - "nomCommune": "SAIGNEVILLE" + "codePostal": "89230", + "codeCommune": "89328", + "libelleAcheminement": "ROUVRAY", + "nomCommune": "ROUVRAY" }, { - "codePostal": "72600", - "codeCommune": "72324", - "libelleAcheminement": "ST VINCENT DES PRES", - "nomCommune": "ST VINCENT DES PRES" + "codePostal": "76440", + "codeCommune": "76269", + "libelleAcheminement": "FONTAINE EN BRAY", + "nomCommune": "FONTAINE EN BRAY" }, { - "codePostal": "88500", - "codeCommune": "88354", - "libelleAcheminement": "PONT SUR MADON", - "nomCommune": "PONT SUR MADON" + "codePostal": "89560", + "codeCommune": "89383", + "libelleAcheminement": "SEMENTRON", + "nomCommune": "SEMENTRON" }, { - "codePostal": "90140", - "codeCommune": "90021", - "libelleAcheminement": "CHARMOIS", - "nomCommune": "CHARMOIS" + "codePostal": "77140", + "codeCommune": "77431", + "libelleAcheminement": "ST PIERRE LES NEMOURS", + "nomCommune": "ST PIERRE LES NEMOURS" }, { - "codePostal": "80800", - "codeCommune": "80693", - "libelleAcheminement": "SAILLY LAURETTE", - "nomCommune": "SAILLY LAURETTE" + "codePostal": "89430", + "codeCommune": "89329", + "libelleAcheminement": "RUGNY", + "nomCommune": "RUGNY" }, { - "codePostal": "72190", - "codeCommune": "72328", - "libelleAcheminement": "SARGE LES LE MANS", - "nomCommune": "SARGE LES LE MANS" + "codePostal": "76160", + "codeCommune": "76273", + "libelleAcheminement": "FONTAINE SOUS PREAUX", + "nomCommune": "FONTAINE SOUS PREAUX" }, { - "codePostal": "88260", - "codeCommune": "88360", - "libelleAcheminement": "PROVENCHERES LES DARNEY", - "nomCommune": "PROVENCHERES LES DARNEY" + "codePostal": "89160", + "codeCommune": "89385", + "libelleAcheminement": "SENNEVOY LE BAS", + "nomCommune": "SENNEVOY LE BAS" }, { - "codePostal": "90100", - "codeCommune": "90025", - "libelleAcheminement": "CHAVANNES LES GRANDS", - "nomCommune": "CHAVANNES LES GRANDS" + "codePostal": "77176", + "codeCommune": "77445", + "libelleAcheminement": "SAVIGNY LE TEMPLE", + "nomCommune": "SAVIGNY LE TEMPLE" }, { - "codePostal": "80680", - "codeCommune": "80696", - "libelleAcheminement": "SAINS EN AMIENOIS", - "nomCommune": "SAINS EN AMIENOIS" + "codePostal": "89110", + "codeCommune": "89334", + "libelleAcheminement": "LE VAL D OCRE", + "nomCommune": "LE VAL D OCRE" }, { - "codePostal": "72170", - "codeCommune": "72332", - "libelleAcheminement": "SEGRIE", - "nomCommune": "SEGRIE" + "codePostal": "76440", + "codeCommune": "76276", + "libelleAcheminement": "FORGES LES EAUX", + "nomCommune": "FORGES LES EAUX" }, { - "codePostal": "88490", - "codeCommune": "88361", - "libelleAcheminement": "PROVENCHERES ET COLROY", - "nomCommune": "PROVENCHERES ET COLROY" + "codePostal": "89100", + "codeCommune": "89387", + "libelleAcheminement": "SENS", + "nomCommune": "SENS" }, { - "codePostal": "90340", - "codeCommune": "90026", - "libelleAcheminement": "CHEVREMONT", - "nomCommune": "CHEVREMONT" + "codePostal": "77240", + "codeCommune": "77447", + "libelleAcheminement": "SEINE PORT", + "nomCommune": "SEINE PORT" }, { - "codePostal": "80780", - "codeCommune": "80706", - "libelleAcheminement": "ST LEGER LES DOMART", - "nomCommune": "ST LEGER LES DOMART" + "codePostal": "89110", + "codeCommune": "89334", + "libelleAcheminement": "LE VAL D OCRE", + "nomCommune": "LE VAL D OCRE" }, { - "codePostal": "72390", - "codeCommune": "72333", - "libelleAcheminement": "SEMUR EN VALLON", - "nomCommune": "SEMUR EN VALLON" + "codePostal": "76640", + "codeCommune": "76279", + "libelleAcheminement": "FOUCART", + "nomCommune": "FOUCART" }, { - "codePostal": "88210", - "codeCommune": "88362", - "libelleAcheminement": "LE PUID", - "nomCommune": "LE PUID" + "codePostal": "89116", + "codeCommune": "89388", + "libelleAcheminement": "SEPEAUX ST ROMAIN", + "nomCommune": "SEPEAUX ST ROMAIN" }, { - "codePostal": "90100", - "codeCommune": "90027", - "libelleAcheminement": "COURCELLES", - "nomCommune": "COURCELLES" + "codePostal": "77170", + "codeCommune": "77450", + "libelleAcheminement": "SERVON", + "nomCommune": "SERVON" }, { - "codePostal": "80140", - "codeCommune": "80707", - "libelleAcheminement": "ST LEGER SUR BRESLE", - "nomCommune": "ST LEGER SUR BRESLE" + "codePostal": "89300", + "codeCommune": "89335", + "libelleAcheminement": "ST AUBIN SUR YONNE", + "nomCommune": "ST AUBIN SUR YONNE" }, { - "codePostal": "72400", - "codeCommune": "72342", - "libelleAcheminement": "SOUVIGNE SUR MEME", - "nomCommune": "SOUVIGNE SUR MEME" + "codePostal": "76660", + "codeCommune": "76280", + "libelleAcheminement": "FREAUVILLE", + "nomCommune": "FREAUVILLE" }, { - "codePostal": "88700", - "codeCommune": "88367", - "libelleAcheminement": "RAMBERVILLERS", - "nomCommune": "RAMBERVILLERS" + "codePostal": "89140", + "codeCommune": "89391", + "libelleAcheminement": "SERGINES", + "nomCommune": "SERGINES" }, { - "codePostal": "90300", - "codeCommune": "90029", - "libelleAcheminement": "CRAVANCHE", - "nomCommune": "CRAVANCHE" + "codePostal": "77111", + "codeCommune": "77455", + "libelleAcheminement": "SOIGNOLLES EN BRIE", + "nomCommune": "SOIGNOLLES EN BRIE" }, { - "codePostal": "80140", - "codeCommune": "80710", - "libelleAcheminement": "ST MAXENT", - "nomCommune": "ST MAXENT" + "codePostal": "89100", + "codeCommune": "89342", + "libelleAcheminement": "ST DENIS LES SENS", + "nomCommune": "ST DENIS LES SENS" }, { - "codePostal": "72300", - "codeCommune": "72343", - "libelleAcheminement": "SOUVIGNE SUR SARTHE", - "nomCommune": "SOUVIGNE SUR SARTHE" + "codePostal": "76170", + "codeCommune": "76281", + "libelleAcheminement": "LA FRENAYE", + "nomCommune": "LA FRENAYE" }, { - "codePostal": "88500", - "codeCommune": "88368", - "libelleAcheminement": "RAMECOURT", - "nomCommune": "RAMECOURT" + "codePostal": "89200", + "codeCommune": "89392", + "libelleAcheminement": "SERMIZELLES", + "nomCommune": "SERMIZELLES" }, { - "codePostal": "90350", - "codeCommune": "90042", - "libelleAcheminement": "EVETTE SALBERT", - "nomCommune": "EVETTE SALBERT" + "codePostal": "77810", + "codeCommune": "77463", + "libelleAcheminement": "THOMERY", + "nomCommune": "THOMERY" }, { - "codePostal": "80610", - "codeCommune": "80711", - "libelleAcheminement": "ST OUEN", - "nomCommune": "ST OUEN" + "codePostal": "89170", + "codeCommune": "89352", + "libelleAcheminement": "ST MARTIN DES CHAMPS", + "nomCommune": "ST MARTIN DES CHAMPS" }, { - "codePostal": "72290", - "codeCommune": "72349", - "libelleAcheminement": "TEILLE", - "nomCommune": "TEILLE" + "codePostal": "76270", + "codeCommune": "76283", + "libelleAcheminement": "FRESLES", + "nomCommune": "FRESLES" }, { - "codePostal": "88220", - "codeCommune": "88371", - "libelleAcheminement": "RAON AUX BOIS", - "nomCommune": "RAON AUX BOIS" + "codePostal": "89100", + "codeCommune": "89404", + "libelleAcheminement": "SUBLIGNY", + "nomCommune": "SUBLIGNY" }, { - "codePostal": "90600", - "codeCommune": "90053", - "libelleAcheminement": "GRANDVILLARS", - "nomCommune": "GRANDVILLARS" + "codePostal": "77220", + "codeCommune": "77470", + "libelleAcheminement": "TOURNAN EN BRIE", + "nomCommune": "TOURNAN EN BRIE" }, { - "codePostal": "80135", - "codeCommune": "80716", - "libelleAcheminement": "ST RIQUIER", - "nomCommune": "ST RIQUIER" + "codePostal": "89460", + "codeCommune": "89363", + "libelleAcheminement": "STE PALLAYE", + "nomCommune": "STE PALLAYE" }, { - "codePostal": "72240", - "codeCommune": "72351", - "libelleAcheminement": "TENNIE", - "nomCommune": "TENNIE" + "codePostal": "76520", + "codeCommune": "76285", + "libelleAcheminement": "FRESNE LE PLAN", + "nomCommune": "FRESNE LE PLAN" }, { - "codePostal": "88110", - "codeCommune": "88373", - "libelleAcheminement": "RAON SUR PLAINE", - "nomCommune": "RAON SUR PLAINE" + "codePostal": "89430", + "codeCommune": "89407", + "libelleAcheminement": "TANLAY", + "nomCommune": "TANLAY" }, { - "codePostal": "90200", - "codeCommune": "90054", - "libelleAcheminement": "GROSMAGNY", - "nomCommune": "GROSMAGNY" + "codePostal": "77670", + "codeCommune": "77494", + "libelleAcheminement": "VERNOU LA CELLE SUR SEINE", + "nomCommune": "VERNOU LA CELLE SUR SEINE" }, { - "codePostal": "80160", - "codeCommune": "80717", - "libelleAcheminement": "ST SAUFLIEU", - "nomCommune": "ST SAUFLIEU" + "codePostal": "89140", + "codeCommune": "89369", + "libelleAcheminement": "ST SEROTIN", + "nomCommune": "ST SEROTIN" }, { - "codePostal": "72500", - "codeCommune": "72356", - "libelleAcheminement": "THOIRE SUR DINAN", - "nomCommune": "THOIRE SUR DINAN" + "codePostal": "76570", + "codeCommune": "76287", + "libelleAcheminement": "FRESQUIENNES", + "nomCommune": "FRESQUIENNES" }, { - "codePostal": "88520", - "codeCommune": "88375", - "libelleAcheminement": "RAVES", - "nomCommune": "RAVES" + "codePostal": "89190", + "codeCommune": "89411", + "libelleAcheminement": "LES VALLEES DE LA VANNE", + "nomCommune": "LES VALLEES DE LA VANNE" }, { - "codePostal": "90150", - "codeCommune": "90059", - "libelleAcheminement": "LACOLLONGE", - "nomCommune": "LACOLLONGE" + "codePostal": "77240", + "codeCommune": "77495", + "libelleAcheminement": "VERT ST DENIS", + "nomCommune": "VERT ST DENIS" }, { - "codePostal": "80290", - "codeCommune": "80719", - "libelleAcheminement": "STE SEGREE", - "nomCommune": "STE SEGREE" + "codePostal": "89310", + "codeCommune": "89376", + "libelleAcheminement": "SARRY", + "nomCommune": "SARRY" }, { - "codePostal": "72800", - "codeCommune": "72357", - "libelleAcheminement": "THOREE LES PINS", - "nomCommune": "THOREE LES PINS" + "codePostal": "76190", + "codeCommune": "76289", + "libelleAcheminement": "ST MARTIN DE L IF", + "nomCommune": "ST MARTIN DE L IF" }, { - "codePostal": "88450", - "codeCommune": "88378", - "libelleAcheminement": "REGNEY", - "nomCommune": "REGNEY" + "codePostal": "89320", + "codeCommune": "89411", + "libelleAcheminement": "LES VALLEES DE LA VANNE", + "nomCommune": "LES VALLEES DE LA VANNE" }, { - "codePostal": "90130", - "codeCommune": "90071", - "libelleAcheminement": "MONTREUX CHATEAU", - "nomCommune": "MONTREUX CHATEAU" + "codePostal": "77710", + "codeCommune": "77500", + "libelleAcheminement": "VILLEBEON", + "nomCommune": "VILLEBEON" }, { - "codePostal": "80230", - "codeCommune": "80721", - "libelleAcheminement": "ST VALERY SUR SOMME", - "nomCommune": "ST VALERY SUR SOMME" + "codePostal": "89420", + "codeCommune": "89377", + "libelleAcheminement": "SAUVIGNY LE BEUREAL", + "nomCommune": "SAUVIGNY LE BEUREAL" }, { - "codePostal": "72650", - "codeCommune": "72360", - "libelleAcheminement": "TRANGE", - "nomCommune": "TRANGE" + "codePostal": "76560", + "codeCommune": "76293", + "libelleAcheminement": "FULTOT", + "nomCommune": "FULTOT" }, { - "codePostal": "88800", - "codeCommune": "88385", - "libelleAcheminement": "REMONCOURT", - "nomCommune": "REMONCOURT" + "codePostal": "89430", + "codeCommune": "89413", + "libelleAcheminement": "THOREY", + "nomCommune": "THOREY" }, { - "codePostal": "90360", - "codeCommune": "90078", - "libelleAcheminement": "PETITEFONTAINE", - "nomCommune": "PETITEFONTAINE" + "codePostal": "77250", + "codeCommune": "77506", + "libelleAcheminement": "VILLEMER", + "nomCommune": "VILLEMER" }, { - "codePostal": "80310", - "codeCommune": "80722", - "libelleAcheminement": "ST VAAST EN CHAUSSEE", - "nomCommune": "ST VAAST EN CHAUSSEE" + "codePostal": "89160", + "codeCommune": "89386", + "libelleAcheminement": "SENNEVOY LE HAUT", + "nomCommune": "SENNEVOY LE HAUT" }, { - "codePostal": "72500", - "codeCommune": "72364", - "libelleAcheminement": "VAAS", - "nomCommune": "VAAS" + "codePostal": "76730", + "codeCommune": "76306", + "libelleAcheminement": "GONNETOT", + "nomCommune": "GONNETOT" }, { - "codePostal": "88170", - "codeCommune": "88401", - "libelleAcheminement": "ROUVRES LA CHETIVE", - "nomCommune": "ROUVRES LA CHETIVE" + "codePostal": "89260", + "codeCommune": "89414", + "libelleAcheminement": "THORIGNY SUR OREUSE", + "nomCommune": "THORIGNY SUR OREUSE" }, { - "codePostal": "90170", - "codeCommune": "90079", - "libelleAcheminement": "PETITMAGNY", - "nomCommune": "PETITMAGNY" + "codePostal": "77480", + "codeCommune": "77507", + "libelleAcheminement": "VILLENAUXE LA PETITE", + "nomCommune": "VILLENAUXE LA PETITE" }, { - "codePostal": "80300", - "codeCommune": "80733", - "libelleAcheminement": "SENLIS LE SEC", - "nomCommune": "SENLIS LE SEC" + "codePostal": "89270", + "codeCommune": "89394", + "libelleAcheminement": "SERY", + "nomCommune": "SERY" }, { - "codePostal": "72320", - "codeCommune": "72366", - "libelleAcheminement": "VALENNES", - "nomCommune": "VALENNES" + "codePostal": "76570", + "codeCommune": "76311", + "libelleAcheminement": "GOUPILLIERES", + "nomCommune": "GOUPILLIERES" }, { - "codePostal": "88120", - "codeCommune": "88409", - "libelleAcheminement": "ST AME", - "nomCommune": "ST AME" + "codePostal": "89260", + "codeCommune": "89414", + "libelleAcheminement": "THORIGNY SUR OREUSE", + "nomCommune": "THORIGNY SUR OREUSE" }, { - "codePostal": "90150", - "codeCommune": "90084", - "libelleAcheminement": "REPPE", - "nomCommune": "REPPE" + "codePostal": "77410", + "codeCommune": "77517", + "libelleAcheminement": "VILLEVAUDE", + "nomCommune": "VILLEVAUDE" }, { - "codePostal": "80490", - "codeCommune": "80736", - "libelleAcheminement": "SOREL EN VIMEU", - "nomCommune": "SOREL EN VIMEU" + "codePostal": "89190", + "codeCommune": "89395", + "libelleAcheminement": "LES SIEGES", + "nomCommune": "LES SIEGES" }, { - "codePostal": "72310", - "codeCommune": "72368", - "libelleAcheminement": "VANCE", - "nomCommune": "VANCE" + "codePostal": "76116", + "codeCommune": "76316", + "libelleAcheminement": "GRAINVILLE SUR RY", + "nomCommune": "GRAINVILLE SUR RY" }, { - "codePostal": "88800", - "codeCommune": "88434", - "libelleAcheminement": "ST REMIMONT", - "nomCommune": "ST REMIMONT" + "codePostal": "89200", + "codeCommune": "89415", + "libelleAcheminement": "THORY", + "nomCommune": "THORY" }, { - "codePostal": "90110", - "codeCommune": "90089", - "libelleAcheminement": "ROUGEMONT LE CHATEAU", - "nomCommune": "ROUGEMONT LE CHATEAU" + "codePostal": "77870", + "codeCommune": "77533", + "libelleAcheminement": "VULAINES SUR SEINE", + "nomCommune": "VULAINES SUR SEINE" }, { - "codePostal": "80340", - "codeCommune": "80743", - "libelleAcheminement": "SUZANNE", - "nomCommune": "SUZANNE" + "codePostal": "89570", + "codeCommune": "89398", + "libelleAcheminement": "SORMERY", + "nomCommune": "SORMERY" }, { - "codePostal": "72170", - "codeCommune": "72370", - "libelleAcheminement": "VERNIE", - "nomCommune": "VERNIE" + "codePostal": "76530", + "codeCommune": "76319", + "libelleAcheminement": "GRAND COURONNE", + "nomCommune": "GRAND COURONNE" }, { - "codePostal": "88600", - "codeCommune": "88454", - "libelleAcheminement": "SERCOEUR", - "nomCommune": "SERCOEUR" + "codePostal": "89130", + "codeCommune": "89419", + "libelleAcheminement": "TOUCY", + "nomCommune": "TOUCY" }, { - "codePostal": "90100", - "codeCommune": "90090", - "libelleAcheminement": "ST DIZIER L EVEQUE", - "nomCommune": "ST DIZIER L EVEQUE" + "codePostal": "78113", + "codeCommune": "78006", + "libelleAcheminement": "ADAINVILLE", + "nomCommune": "ADAINVILLE" }, { - "codePostal": "80240", - "codeCommune": "80748", - "libelleAcheminement": "TEMPLEUX LE GUERARD", - "nomCommune": "TEMPLEUX LE GUERARD" + "codePostal": "89100", + "codeCommune": "89399", + "libelleAcheminement": "SOUCY", + "nomCommune": "SOUCY" }, { - "codePostal": "72320", - "codeCommune": "72373", - "libelleAcheminement": "VIBRAYE", - "nomCommune": "VIBRAYE" + "codePostal": "76660", + "codeCommune": "76320", + "libelleAcheminement": "GRANDCOURT", + "nomCommune": "GRANDCOURT" }, { - "codePostal": "88800", - "codeCommune": "88466", - "libelleAcheminement": "THEY SOUS MONTFORT", - "nomCommune": "THEY SOUS MONTFORT" + "codePostal": "89210", + "codeCommune": "89436", + "libelleAcheminement": "VENIZY", + "nomCommune": "VENIZY" }, { - "codePostal": "91150", - "codeCommune": "91001", - "libelleAcheminement": "ABBEVILLE LA RIVIERE", - "nomCommune": "ABBEVILLE LA RIVIERE" + "codePostal": "78570", + "codeCommune": "78015", + "libelleAcheminement": "ANDRESY", + "nomCommune": "ANDRESY" }, { - "codePostal": "80290", - "codeCommune": "80755", - "libelleAcheminement": "THIEULLOY LA VILLE", - "nomCommune": "THIEULLOY LA VILLE" + "codePostal": "89520", + "codeCommune": "89400", + "libelleAcheminement": "SOUGERES EN PUISAYE", + "nomCommune": "SOUGERES EN PUISAYE" }, { - "codePostal": "72440", - "codeCommune": "72382", - "libelleAcheminement": "VOLNAY", - "nomCommune": "VOLNAY" + "codePostal": "76950", + "codeCommune": "76321", + "libelleAcheminement": "LES GRANDES VENTES", + "nomCommune": "LES GRANDES VENTES" }, { - "codePostal": "88530", - "codeCommune": "88470", - "libelleAcheminement": "LE THOLY", - "nomCommune": "LE THOLY" + "codePostal": "89230", + "codeCommune": "89437", + "libelleAcheminement": "VENOUSE", + "nomCommune": "VENOUSE" }, { - "codePostal": "91670", - "codeCommune": "91016", - "libelleAcheminement": "ANGERVILLE", - "nomCommune": "ANGERVILLE" + "codePostal": "78610", + "codeCommune": "78030", + "libelleAcheminement": "AUFFARGIS", + "nomCommune": "AUFFARGIS" }, { - "codePostal": "80700", - "codeCommune": "80759", - "libelleAcheminement": "TILLOLOY", - "nomCommune": "TILLOLOY" + "codePostal": "89450", + "codeCommune": "89409", + "libelleAcheminement": "THAROISEAU", + "nomCommune": "THAROISEAU" }, { - "codePostal": "73610", - "codeCommune": "73001", - "libelleAcheminement": "AIGUEBELETTE LE LAC", - "nomCommune": "AIGUEBELETTE LE LAC" + "codePostal": "76270", + "codeCommune": "76323", + "libelleAcheminement": "GRAVAL", + "nomCommune": "GRAVAL" }, { - "codePostal": "88320", - "codeCommune": "88475", - "libelleAcheminement": "TOLLAINCOURT", - "nomCommune": "TOLLAINCOURT" + "codePostal": "89600", + "codeCommune": "89439", + "libelleAcheminement": "VERGIGNY", + "nomCommune": "VERGIGNY" }, { - "codePostal": "91290", - "codeCommune": "91021", - "libelleAcheminement": "ARPAJON", - "nomCommune": "ARPAJON" + "codePostal": "78930", + "codeCommune": "78031", + "libelleAcheminement": "AUFFREVILLE BRASSEUIL", + "nomCommune": "AUFFREVILLE BRASSEUIL" }, { - "codePostal": "80140", - "codeCommune": "80767", - "libelleAcheminement": "LE TRANSLAY", - "nomCommune": "LE TRANSLAY" + "codePostal": "89200", + "codeCommune": "89410", + "libelleAcheminement": "THAROT", + "nomCommune": "THAROT" }, { - "codePostal": "73210", - "codeCommune": "73006", - "libelleAcheminement": "AIME LA PLAGNE", - "nomCommune": "AIME LA PLAGNE" + "codePostal": "76850", + "codeCommune": "76328", + "libelleAcheminement": "GRIGNEUSEVILLE", + "nomCommune": "GRIGNEUSEVILLE" }, { - "codePostal": "88350", - "codeCommune": "88477", - "libelleAcheminement": "TRAMPOT", - "nomCommune": "TRAMPOT" + "codePostal": "89700", + "codeCommune": "89445", + "libelleAcheminement": "VEZANNES", + "nomCommune": "VEZANNES" }, { - "codePostal": "91830", - "codeCommune": "91037", - "libelleAcheminement": "AUVERNAUX", - "nomCommune": "AUVERNAUX" + "codePostal": "78650", + "codeCommune": "78062", + "libelleAcheminement": "BEYNES", + "nomCommune": "BEYNES" }, { - "codePostal": "80210", - "codeCommune": "80775", - "libelleAcheminement": "VALINES", - "nomCommune": "VALINES" + "codePostal": "89320", + "codeCommune": "89411", + "libelleAcheminement": "LES VALLEES DE LA VANNE", + "nomCommune": "LES VALLEES DE LA VANNE" }, { - "codePostal": "73100", - "codeCommune": "73008", - "libelleAcheminement": "AIX LES BAINS", - "nomCommune": "AIX LES BAINS" + "codePostal": "76810", + "codeCommune": "76330", + "libelleAcheminement": "GRUCHET ST SIMEON", + "nomCommune": "GRUCHET ST SIMEON" }, { - "codePostal": "88220", - "codeCommune": "88484", - "libelleAcheminement": "UZEMAIN", - "nomCommune": "UZEMAIN" + "codePostal": "89140", + "codeCommune": "89456", + "libelleAcheminement": "VILLEMANOCHE", + "nomCommune": "VILLEMANOCHE" }, { - "codePostal": "91580", - "codeCommune": "91038", - "libelleAcheminement": "AUVERS ST GEORGES", - "nomCommune": "AUVERS ST GEORGES" + "codePostal": "78270", + "codeCommune": "78068", + "libelleAcheminement": "BLARU", + "nomCommune": "BLARU" }, { - "codePostal": "80560", - "codeCommune": "80777", - "libelleAcheminement": "VAUCHELLES LES AUTHIE", - "nomCommune": "VAUCHELLES LES AUTHIE" + "codePostal": "89420", + "codeCommune": "89412", + "libelleAcheminement": "THIZY", + "nomCommune": "THIZY" }, { - "codePostal": "73410", - "codeCommune": "73010", - "libelleAcheminement": "ENTRELACS", - "nomCommune": "ENTRELACS" + "codePostal": "76640", + "codeCommune": "76342", + "libelleAcheminement": "HATTENVILLE", + "nomCommune": "HATTENVILLE" }, { - "codePostal": "88450", - "codeCommune": "88493", - "libelleAcheminement": "VARMONZEY", - "nomCommune": "VARMONZEY" + "codePostal": "89340", + "codeCommune": "89460", + "libelleAcheminement": "VILLENEUVE LA GUYARD", + "nomCommune": "VILLENEUVE LA GUYARD" }, { - "codePostal": "91590", - "codeCommune": "91080", - "libelleAcheminement": "BOISSY LE CUTTE", - "nomCommune": "BOISSY LE CUTTE" + "codePostal": "78660", + "codeCommune": "78071", + "libelleAcheminement": "BOINVILLE LE GAILLARD", + "nomCommune": "BOINVILLE LE GAILLARD" }, { - "codePostal": "80260", - "codeCommune": "80782", - "libelleAcheminement": "VAUX EN AMIENOIS", - "nomCommune": "VAUX EN AMIENOIS" + "codePostal": "89520", + "codeCommune": "89420", + "libelleAcheminement": "TREIGNY PERREUSE STE COLOMBE", + "nomCommune": "TREIGNY PERREUSE STE COLOMBE" }, { - "codePostal": "73410", - "codeCommune": "73010", - "libelleAcheminement": "ENTRELACS", - "nomCommune": "ENTRELACS" + "codePostal": "76440", + "codeCommune": "76345", + "libelleAcheminement": "HAUSSEZ", + "nomCommune": "HAUSSEZ" }, { - "codePostal": "88200", - "codeCommune": "88498", - "libelleAcheminement": "VECOUX", - "nomCommune": "VECOUX" + "codePostal": "89140", + "codeCommune": "89467", + "libelleAcheminement": "VILLETHIERRY", + "nomCommune": "VILLETHIERRY" }, { - "codePostal": "91150", - "codeCommune": "91098", - "libelleAcheminement": "BOUTERVILLIERS", - "nomCommune": "BOUTERVILLIERS" + "codePostal": "78910", + "codeCommune": "78076", + "libelleAcheminement": "BOISSETS", + "nomCommune": "BOISSETS" }, { - "codePostal": "80800", - "codeCommune": "80784", - "libelleAcheminement": "VAUX SUR SOMME", - "nomCommune": "VAUX SUR SOMME" + "codePostal": "89580", + "codeCommune": "89426", + "libelleAcheminement": "VAL DE MERCY", + "nomCommune": "VAL DE MERCY" }, { - "codePostal": "73200", - "codeCommune": "73011", - "libelleAcheminement": "ALBERTVILLE", - "nomCommune": "ALBERTVILLE" + "codePostal": "76550", + "codeCommune": "76349", + "libelleAcheminement": "HAUTOT SUR MER", + "nomCommune": "HAUTOT SUR MER" }, { - "codePostal": "88430", - "codeCommune": "88505", - "libelleAcheminement": "VIENVILLE", - "nomCommune": "VIENVILLE" + "codePostal": "89260", + "codeCommune": "89469", + "libelleAcheminement": "PERCENEIGE", + "nomCommune": "PERCENEIGE" }, { - "codePostal": "91820", - "codeCommune": "91099", - "libelleAcheminement": "BOUTIGNY SUR ESSONNE", - "nomCommune": "BOUTIGNY SUR ESSONNE" + "codePostal": "78830", + "codeCommune": "78087", + "libelleAcheminement": "BONNELLES", + "nomCommune": "BONNELLES" }, { - "codePostal": "80320", - "codeCommune": "80789", - "libelleAcheminement": "VERMANDOVILLERS", - "nomCommune": "VERMANDOVILLERS" + "codePostal": "89150", + "codeCommune": "89428", + "libelleAcheminement": "VALLERY", + "nomCommune": "VALLERY" }, { - "codePostal": "73200", - "codeCommune": "73014", - "libelleAcheminement": "ALLONDAZ", - "nomCommune": "ALLONDAZ" + "codePostal": "76600", + "codeCommune": "76351", + "libelleAcheminement": "LE HAVRE", + "nomCommune": "LE HAVRE" }, { - "codePostal": "88150", - "codeCommune": "88509", - "libelleAcheminement": "VILLONCOURT", - "nomCommune": "VILLONCOURT" + "codePostal": "89260", + "codeCommune": "89469", + "libelleAcheminement": "PERCENEIGE", + "nomCommune": "PERCENEIGE" }, { - "codePostal": "91740", - "codeCommune": "91131", - "libelleAcheminement": "CHALOU MOULINEUX", - "nomCommune": "CHALOU MOULINEUX" + "codePostal": "78200", + "codeCommune": "78118", + "libelleAcheminement": "BUCHELAY", + "nomCommune": "BUCHELAY" }, { - "codePostal": "80260", - "codeCommune": "80798", - "libelleAcheminement": "VILLERS BOCAGE", - "nomCommune": "VILLERS BOCAGE" + "codePostal": "89320", + "codeCommune": "89432", + "libelleAcheminement": "VAUDEURS", + "nomCommune": "VAUDEURS" }, { - "codePostal": "73550", - "codeCommune": "73015", - "libelleAcheminement": "LES ALLUES", - "nomCommune": "LES ALLUES" + "codePostal": "76840", + "codeCommune": "76354", + "libelleAcheminement": "HENOUVILLE", + "nomCommune": "HENOUVILLE" }, { - "codePostal": "88800", - "codeCommune": "88516", - "libelleAcheminement": "VITTEL", - "nomCommune": "VITTEL" + "codePostal": "89320", + "codeCommune": "89471", + "libelleAcheminement": "VILLIERS LOUIS", + "nomCommune": "VILLIERS LOUIS" }, { - "codePostal": "91750", - "codeCommune": "91135", - "libelleAcheminement": "CHAMPCUEIL", - "nomCommune": "CHAMPCUEIL" + "codePostal": "78955", + "codeCommune": "78123", + "libelleAcheminement": "CARRIERES SOUS POISSY", + "nomCommune": "CARRIERES SOUS POISSY" }, { - "codePostal": "80170", - "codeCommune": "80824", - "libelleAcheminement": "WIENCOURT L EQUIPEE", - "nomCommune": "WIENCOURT L EQUIPEE" + "codePostal": "89600", + "codeCommune": "89439", + "libelleAcheminement": "VERGIGNY", + "nomCommune": "VERGIGNY" }, { - "codePostal": "73610", - "codeCommune": "73022", - "libelleAcheminement": "ATTIGNAT ONCIN", - "nomCommune": "ATTIGNAT ONCIN" + "codePostal": "76740", + "codeCommune": "76365", + "libelleAcheminement": "HOUDETOT", + "nomCommune": "HOUDETOT" }, { - "codePostal": "88500", - "codeCommune": "88518", - "libelleAcheminement": "VIVIERS LES OFFROICOURT", - "nomCommune": "VIVIERS LES OFFROICOURT" + "codePostal": "89360", + "codeCommune": "89474", + "libelleAcheminement": "VILLIERS VINEUX", + "nomCommune": "VILLIERS VINEUX" }, { - "codePostal": "91160", - "codeCommune": "91136", - "libelleAcheminement": "CHAMPLAN", - "nomCommune": "CHAMPLAN" + "codePostal": "78570", + "codeCommune": "78138", + "libelleAcheminement": "CHANTELOUP LES VIGNES", + "nomCommune": "CHANTELOUP LES VIGNES" }, { - "codePostal": "80140", - "codeCommune": "80828", - "libelleAcheminement": "WOIREL", - "nomCommune": "WOIREL" + "codePostal": "89330", + "codeCommune": "89440", + "libelleAcheminement": "VERLIN", + "nomCommune": "VERLIN" }, { - "codePostal": "73260", - "codeCommune": "73024", - "libelleAcheminement": "LES AVANCHERS VALMOREL", - "nomCommune": "LES AVANCHERS VALMOREL" + "codePostal": "76570", + "codeCommune": "76370", + "libelleAcheminement": "HUGLEVILLE EN CAUX", + "nomCommune": "HUGLEVILLE EN CAUX" }, { - "codePostal": "88520", - "codeCommune": "88526", - "libelleAcheminement": "WISEMBACH", - "nomCommune": "WISEMBACH" + "codePostal": "90200", + "codeCommune": "90005", + "libelleAcheminement": "AUXELLES BAS", + "nomCommune": "AUXELLES BAS" }, { - "codePostal": "91490", - "codeCommune": "91195", - "libelleAcheminement": "DANNEMOIS", - "nomCommune": "DANNEMOIS" + "codePostal": "78130", + "codeCommune": "78140", + "libelleAcheminement": "CHAPET", + "nomCommune": "CHAPET" }, { - "codePostal": "80135", - "codeCommune": "80830", - "libelleAcheminement": "YAUCOURT BUSSUS", - "nomCommune": "YAUCOURT BUSSUS" + "codePostal": "89510", + "codeCommune": "89443", + "libelleAcheminement": "VERON", + "nomCommune": "VERON" }, { - "codePostal": "73170", - "codeCommune": "73028", - "libelleAcheminement": "LA BALME", - "nomCommune": "LA BALME" + "codePostal": "76390", + "codeCommune": "76372", + "libelleAcheminement": "ILLOIS", + "nomCommune": "ILLOIS" }, { - "codePostal": "89710", - "codeCommune": "89003", - "libelleAcheminement": "MONTHOLON", - "nomCommune": "MONTHOLON" + "codePostal": "90200", + "codeCommune": "90006", + "libelleAcheminement": "AUXELLES HAUT", + "nomCommune": "AUXELLES HAUT" }, { - "codePostal": "91410", - "codeCommune": "91200", - "libelleAcheminement": "DOURDAN", - "nomCommune": "DOURDAN" + "codePostal": "78400", + "codeCommune": "78146", + "libelleAcheminement": "CHATOU", + "nomCommune": "CHATOU" }, { - "codePostal": "80150", - "codeCommune": "80833", - "libelleAcheminement": "YVRENCHEUX", - "nomCommune": "YVRENCHEUX" + "codePostal": "89340", + "codeCommune": "89449", + "libelleAcheminement": "VILLEBLEVIN", + "nomCommune": "VILLEBLEVIN" }, { - "codePostal": "73360", - "codeCommune": "73033", - "libelleAcheminement": "LA BAUCHE", - "nomCommune": "LA BAUCHE" + "codePostal": "76117", + "codeCommune": "76374", + "libelleAcheminement": "INCHEVILLE", + "nomCommune": "INCHEVILLE" }, { - "codePostal": "89390", - "codeCommune": "89004", - "libelleAcheminement": "AISY SUR ARMANCON", - "nomCommune": "AISY SUR ARMANCON" + "codePostal": "90500", + "codeCommune": "90009", + "libelleAcheminement": "BEAUCOURT", + "nomCommune": "BEAUCOURT" }, { - "codePostal": "91520", - "codeCommune": "91207", - "libelleAcheminement": "EGLY", - "nomCommune": "EGLY" + "codePostal": "78460", + "codeCommune": "78162", + "libelleAcheminement": "CHOISEL", + "nomCommune": "CHOISEL" }, { - "codePostal": "81240", - "codeCommune": "81005", - "libelleAcheminement": "ALBINE", - "nomCommune": "ALBINE" + "codePostal": "89240", + "codeCommune": "89453", + "libelleAcheminement": "VILLEFARGEAU", + "nomCommune": "VILLEFARGEAU" }, { - "codePostal": "73270", - "codeCommune": "73034", - "libelleAcheminement": "BEAUFORT SUR DORON", - "nomCommune": "BEAUFORT" + "codePostal": "76260", + "codeCommune": "76394", + "libelleAcheminement": "LONGROY", + "nomCommune": "LONGROY" }, { - "codePostal": "89160", - "codeCommune": "89005", - "libelleAcheminement": "ANCY LE FRANC", - "nomCommune": "ANCY LE FRANC" + "codePostal": "90110", + "codeCommune": "90016", + "libelleAcheminement": "BOURG SOUS CHATELET", + "nomCommune": "BOURG SOUS CHATELET" }, { - "codePostal": "91590", - "codeCommune": "91232", - "libelleAcheminement": "LA FERTE ALAIS", - "nomCommune": "LA FERTE ALAIS" + "codePostal": "78340", + "codeCommune": "78165", + "libelleAcheminement": "LES CLAYES SOUS BOIS", + "nomCommune": "LES CLAYES SOUS BOIS" }, { - "codePostal": "81190", - "codeCommune": "81008", - "libelleAcheminement": "ALMAYRAC", - "nomCommune": "ALMAYRAC" + "codePostal": "89350", + "codeCommune": "89462", + "libelleAcheminement": "VILLENEUVE LES GENETS", + "nomCommune": "VILLENEUVE LES GENETS" }, { - "codePostal": "73340", - "codeCommune": "73036", - "libelleAcheminement": "BELLECOMBE EN BAUGES", - "nomCommune": "BELLECOMBE EN BAUGES" + "codePostal": "76860", + "codeCommune": "76395", + "libelleAcheminement": "LONGUEIL", + "nomCommune": "LONGUEIL" }, { - "codePostal": "89480", - "codeCommune": "89007", - "libelleAcheminement": "ANDRYES", - "nomCommune": "ANDRYES" + "codePostal": "90800", + "codeCommune": "90020", + "libelleAcheminement": "BUC", + "nomCommune": "BUC" }, { - "codePostal": "91700", - "codeCommune": "91235", - "libelleAcheminement": "FLEURY MEROGIS", - "nomCommune": "FLEURY MEROGIS" + "codePostal": "78310", + "codeCommune": "78168", + "libelleAcheminement": "COIGNIERES", + "nomCommune": "COIGNIERES" }, { - "codePostal": "81140", - "codeCommune": "81012", - "libelleAcheminement": "ANDILLAC", - "nomCommune": "ANDILLAC" + "codePostal": "89140", + "codeCommune": "89465", + "libelleAcheminement": "VILLEPERROT", + "nomCommune": "VILLEPERROT" }, { - "codePostal": "73330", - "codeCommune": "73039", - "libelleAcheminement": "BELMONT TRAMONET", - "nomCommune": "BELMONT TRAMONET" + "codePostal": "76133", + "codeCommune": "76404", + "libelleAcheminement": "MANEGLISE", + "nomCommune": "MANEGLISE" }, { - "codePostal": "89200", - "codeCommune": "89009", - "libelleAcheminement": "ANNAY LA COTE", - "nomCommune": "ANNAY LA COTE" + "codePostal": "90100", + "codeCommune": "90024", + "libelleAcheminement": "CHAVANATTE", + "nomCommune": "CHAVANATTE" }, { - "codePostal": "91410", - "codeCommune": "91247", - "libelleAcheminement": "LA FORET LE ROI", - "nomCommune": "LA FORET LE ROI" + "codePostal": "78700", + "codeCommune": "78172", + "libelleAcheminement": "CONFLANS STE HONORINE", + "nomCommune": "CONFLANS STE HONORINE" }, { - "codePostal": "81340", - "codeCommune": "81019", - "libelleAcheminement": "ASSAC", - "nomCommune": "ASSAC" + "codePostal": "89260", + "codeCommune": "89469", + "libelleAcheminement": "PERCENEIGE", + "nomCommune": "PERCENEIGE" }, { - "codePostal": "73480", - "codeCommune": "73040", - "libelleAcheminement": "BESSANS", - "nomCommune": "BESSANS" + "codePostal": "76400", + "codeCommune": "76406", + "libelleAcheminement": "MANIQUERVILLE", + "nomCommune": "MANIQUERVILLE" }, { - "codePostal": "89440", - "codeCommune": "89012", - "libelleAcheminement": "ANNOUX", - "nomCommune": "ANNOUX" + "codePostal": "90160", + "codeCommune": "90034", + "libelleAcheminement": "DENNEY", + "nomCommune": "DENNEY" }, { - "codePostal": "91690", - "codeCommune": "91294", - "libelleAcheminement": "GUILLERVAL", - "nomCommune": "GUILLERVAL" + "codePostal": "78111", + "codeCommune": "78192", + "libelleAcheminement": "DAMMARTIN EN SERVE", + "nomCommune": "DAMMARTIN EN SERVE" }, { - "codePostal": "81430", - "codeCommune": "81026", - "libelleAcheminement": "BELLEGARDE MARSAL", - "nomCommune": "BELLEGARDE MARSAL" + "codePostal": "89260", + "codeCommune": "89469", + "libelleAcheminement": "PERCENEIGE", + "nomCommune": "PERCENEIGE" }, { - "codePostal": "73390", - "codeCommune": "73041", - "libelleAcheminement": "BETTON BETTONET", - "nomCommune": "BETTON BETTONET" + "codePostal": "76116", + "codeCommune": "76412", + "libelleAcheminement": "MARTAINVILLE EPREVILLE", + "nomCommune": "MARTAINVILLE EPREVILLE" }, { - "codePostal": "89320", - "codeCommune": "89014", - "libelleAcheminement": "ARCES DILO", - "nomCommune": "ARCES DILO" + "codePostal": "90400", + "codeCommune": "90035", + "libelleAcheminement": "DORANS", + "nomCommune": "DORANS" }, { - "codePostal": "91640", - "codeCommune": "91319", - "libelleAcheminement": "JANVRY", - "nomCommune": "JANVRY" + "codePostal": "78440", + "codeCommune": "78202", + "libelleAcheminement": "DROCOURT", + "nomCommune": "DROCOURT" }, { - "codePostal": "81400", - "codeCommune": "81033", - "libelleAcheminement": "BLAYE LES MINES", - "nomCommune": "BLAYE LES MINES" + "codePostal": "89130", + "codeCommune": "89472", + "libelleAcheminement": "VILLIERS ST BENOIT", + "nomCommune": "VILLIERS ST BENOIT" }, { - "codePostal": "73410", - "codeCommune": "73043", - "libelleAcheminement": "LA BIOLLE", - "nomCommune": "LA BIOLLE" + "codePostal": "76680", + "codeCommune": "76417", + "libelleAcheminement": "MAUCOMBLE", + "nomCommune": "MAUCOMBLE" }, { - "codePostal": "89320", - "codeCommune": "89014", - "libelleAcheminement": "ARCES DILO", - "nomCommune": "ARCES DILO" + "codePostal": "90340", + "codeCommune": "90048", + "libelleAcheminement": "FONTENELLE", + "nomCommune": "FONTENELLE" }, { - "codePostal": "91160", - "codeCommune": "91345", - "libelleAcheminement": "LONGJUMEAU", - "nomCommune": "LONGJUMEAU" + "codePostal": "78680", + "codeCommune": "78217", + "libelleAcheminement": "EPONE", + "nomCommune": "EPONE" }, { - "codePostal": "81600", - "codeCommune": "81041", - "libelleAcheminement": "BROZE", - "nomCommune": "BROZE" + "codePostal": "89130", + "codeCommune": "89472", + "libelleAcheminement": "VILLIERS ST BENOIT", + "nomCommune": "VILLIERS ST BENOIT" }, { - "codePostal": "73700", - "codeCommune": "73054", - "libelleAcheminement": "BOURG ST MAURICE", - "nomCommune": "BOURG ST MAURICE" + "codePostal": "76490", + "codeCommune": "76418", + "libelleAcheminement": "MAULEVRIER STE GERTRUDE", + "nomCommune": "MAULEVRIER STE GERTRUDE" }, { - "codePostal": "89740", - "codeCommune": "89019", - "libelleAcheminement": "ARTHONNAY", - "nomCommune": "ARTHONNAY" + "codePostal": "90140", + "codeCommune": "90051", + "libelleAcheminement": "FROIDEFONTAINE", + "nomCommune": "FROIDEFONTAINE" }, { - "codePostal": "91720", - "codeCommune": "91359", - "libelleAcheminement": "MAISSE", - "nomCommune": "MAISSE" + "codePostal": "78410", + "codeCommune": "78230", + "libelleAcheminement": "LA FALAISE", + "nomCommune": "LA FALAISE" }, { - "codePostal": "81100", - "codeCommune": "81042", - "libelleAcheminement": "BURLATS", - "nomCommune": "BURLATS" + "codePostal": "89800", + "codeCommune": "89477", + "libelleAcheminement": "VILLY", + "nomCommune": "VILLY" }, { - "codePostal": "73570", - "codeCommune": "73057", - "libelleAcheminement": "BRIDES LES BAINS", - "nomCommune": "BRIDES LES BAINS" + "codePostal": "76530", + "codeCommune": "76419", + "libelleAcheminement": "MAUNY", + "nomCommune": "MAUNY" }, { - "codePostal": "89290", - "codeCommune": "89024", - "libelleAcheminement": "AUXERRE", - "nomCommune": "AUXERRE" + "codePostal": "90100", + "codeCommune": "90055", + "libelleAcheminement": "GROSNE", + "nomCommune": "GROSNE" }, { - "codePostal": "91460", - "codeCommune": "91363", - "libelleAcheminement": "MARCOUSSIS", - "nomCommune": "MARCOUSSIS" + "codePostal": "78200", + "codeCommune": "78234", + "libelleAcheminement": "FLACOURT", + "nomCommune": "FLACOURT" }, { - "codePostal": "81500", - "codeCommune": "81044", - "libelleAcheminement": "CABANES", - "nomCommune": "CABANES" + "codePostal": "89290", + "codeCommune": "89479", + "libelleAcheminement": "VINCELOTTES", + "nomCommune": "VINCELOTTES" }, { - "codePostal": "73520", - "codeCommune": "73058", - "libelleAcheminement": "LA BRIDOIRE", - "nomCommune": "LA BRIDOIRE" + "codePostal": "76270", + "codeCommune": "76424", + "libelleAcheminement": "MENONVAL", + "nomCommune": "MENONVAL" }, { - "codePostal": "89200", - "codeCommune": "89025", - "libelleAcheminement": "AVALLON", - "nomCommune": "AVALLON" + "codePostal": "90360", + "codeCommune": "90058", + "libelleAcheminement": "LACHAPELLE SOUS ROUGEMONT", + "nomCommune": "LACHAPELLE SOUS ROUGEMONT" }, { - "codePostal": "91150", - "codeCommune": "91399", - "libelleAcheminement": "MESPUITS", - "nomCommune": "MESPUITS" + "codePostal": "78910", + "codeCommune": "78236", + "libelleAcheminement": "FLEXANVILLE", + "nomCommune": "FLEXANVILLE" }, { - "codePostal": "81130", - "codeCommune": "81048", - "libelleAcheminement": "CAGNAC LES MINES", - "nomCommune": "CAGNAC LES MINES" + "codePostal": "89700", + "codeCommune": "89486", + "libelleAcheminement": "YROUERRE", + "nomCommune": "YROUERRE" }, { - "codePostal": "73100", - "codeCommune": "73059", - "libelleAcheminement": "BRISON ST INNOCENT", - "nomCommune": "BRISON ST INNOCENT" + "codePostal": "76270", + "codeCommune": "76427", + "libelleAcheminement": "MESNIERES EN BRAY", + "nomCommune": "MESNIERES EN BRAY" }, { - "codePostal": "89460", - "codeCommune": "89030", - "libelleAcheminement": "BAZARNES", - "nomCommune": "BAZARNES" + "codePostal": "90100", + "codeCommune": "90063", + "libelleAcheminement": "LEBETAIN", + "nomCommune": "LEBETAIN" }, { - "codePostal": "91230", - "codeCommune": "91421", - "libelleAcheminement": "MONTGERON", - "nomCommune": "MONTGERON" + "codePostal": "78440", + "codeCommune": "78246", + "libelleAcheminement": "FONTENAY ST PERE", + "nomCommune": "FONTENAY ST PERE" }, { - "codePostal": "81540", - "codeCommune": "81049", - "libelleAcheminement": "CAHUZAC", - "nomCommune": "CAHUZAC" + "codePostal": "90400", + "codeCommune": "90001", + "libelleAcheminement": "ANDELNANS", + "nomCommune": "ANDELNANS" }, { - "codePostal": "73000", - "codeCommune": "73065", - "libelleAcheminement": "CHAMBERY", - "nomCommune": "CHAMBERY" + "codePostal": "76460", + "codeCommune": "76428", + "libelleAcheminement": "LE MESNIL DURDENT", + "nomCommune": "LE MESNIL DURDENT" }, { - "codePostal": "89240", - "codeCommune": "89033", - "libelleAcheminement": "BEAUVOIR", - "nomCommune": "BEAUVOIR" + "codePostal": "90400", + "codeCommune": "90068", + "libelleAcheminement": "MEROUX MOVAL", + "nomCommune": "MEROUX MOVAL" }, { - "codePostal": "91250", - "codeCommune": "91435", - "libelleAcheminement": "MORSANG SUR SEINE", - "nomCommune": "MORSANG SUR SEINE" + "codePostal": "78113", + "codeCommune": "78283", + "libelleAcheminement": "GRANDCHAMP", + "nomCommune": "GRANDCHAMP" }, { - "codePostal": "81470", - "codeCommune": "81050", - "libelleAcheminement": "CAMBON LES LAVAUR", - "nomCommune": "CAMBON LES LAVAUR" + "codePostal": "90800", + "codeCommune": "90008", + "libelleAcheminement": "BAVILLIERS", + "nomCommune": "BAVILLIERS" }, { - "codePostal": "73350", - "codeCommune": "73071", - "libelleAcheminement": "CHAMPAGNY EN VANOISE", - "nomCommune": "CHAMPAGNY EN VANOISE" + "codePostal": "76780", + "codeCommune": "76431", + "libelleAcheminement": "LE MESNIL LIEUBRAY", + "nomCommune": "LE MESNIL LIEUBRAY" }, { - "codePostal": "89570", - "codeCommune": "89041", - "libelleAcheminement": "BEUGNON", - "nomCommune": "BEUGNON" + "codePostal": "90120", + "codeCommune": "90072", + "libelleAcheminement": "MORVILLARS", + "nomCommune": "MORVILLARS" }, { - "codePostal": "91400", - "codeCommune": "91471", - "libelleAcheminement": "ORSAY", - "nomCommune": "ORSAY" + "codePostal": "78200", + "codeCommune": "78324", + "libelleAcheminement": "JOUY MAUVOISIN", + "nomCommune": "JOUY MAUVOISIN" }, { - "codePostal": "81990", - "codeCommune": "81052", - "libelleAcheminement": "CAMBON D ALBI", - "nomCommune": "CAMBON" + "codePostal": "90130", + "codeCommune": "90019", + "libelleAcheminement": "BRETAGNE", + "nomCommune": "BRETAGNE" }, { - "codePostal": "73390", - "codeCommune": "73079", - "libelleAcheminement": "CHATEAUNEUF", - "nomCommune": "CHATEAUNEUF" + "codePostal": "76440", + "codeCommune": "76432", + "libelleAcheminement": "MESNIL MAUGER", + "nomCommune": "MESNIL MAUGER" }, { - "codePostal": "89200", - "codeCommune": "89044", - "libelleAcheminement": "BLANNAY", - "nomCommune": "BLANNAY" + "codePostal": "90200", + "codeCommune": "90085", + "libelleAcheminement": "RIERVESCEMONT", + "nomCommune": "RIERVESCEMONT" }, { - "codePostal": "91470", - "codeCommune": "91482", - "libelleAcheminement": "PECQUEUSE", - "nomCommune": "PECQUEUSE" + "codePostal": "78440", + "codeCommune": "78329", + "libelleAcheminement": "LAINVILLE EN VEXIN", + "nomCommune": "LAINVILLE EN VEXIN" }, { - "codePostal": "81140", - "codeCommune": "81056", - "libelleAcheminement": "CAMPAGNAC", - "nomCommune": "CAMPAGNAC" + "codePostal": "90700", + "codeCommune": "90022", + "libelleAcheminement": "CHATENOIS LES FORGES", + "nomCommune": "CHATENOIS LES FORGES" }, { - "codePostal": "73460", - "codeCommune": "73086", - "libelleAcheminement": "CLERY", - "nomCommune": "CLERY" + "codePostal": "76520", + "codeCommune": "76434", + "libelleAcheminement": "MESNIL RAOUL", + "nomCommune": "MESNIL RAOUL" }, { - "codePostal": "89230", - "codeCommune": "89045", - "libelleAcheminement": "BLEIGNY LE CARREAU", - "nomCommune": "BLEIGNY LE CARREAU" + "codePostal": "90200", + "codeCommune": "90088", + "libelleAcheminement": "ROUGEGOUTTE", + "nomCommune": "ROUGEGOUTTE" }, { - "codePostal": "91740", - "codeCommune": "91511", - "libelleAcheminement": "PUSSAY", - "nomCommune": "PUSSAY" + "codePostal": "78430", + "codeCommune": "78350", + "libelleAcheminement": "LOUVECIENNES", + "nomCommune": "LOUVECIENNES" }, { - "codePostal": "81260", - "codeCommune": "81062", - "libelleAcheminement": "FONTRIEU", - "nomCommune": "FONTRIEU" + "codePostal": "90100", + "codeCommune": "90030", + "libelleAcheminement": "CROIX", + "nomCommune": "CROIX" }, { - "codePostal": "73160", - "codeCommune": "73092", - "libelleAcheminement": "CORBEL", - "nomCommune": "CORBEL" + "codePostal": "76480", + "codeCommune": "76436", + "libelleAcheminement": "LE MESNIL SOUS JUMIEGES", + "nomCommune": "LE MESNIL SOUS JUMIEGES" }, { - "codePostal": "89500", - "codeCommune": "89051", - "libelleAcheminement": "LES BORDES", - "nomCommune": "LES BORDES" + "codePostal": "90100", + "codeCommune": "90095", + "libelleAcheminement": "SUARCE", + "nomCommune": "SUARCE" }, { - "codePostal": "91410", - "codeCommune": "91525", - "libelleAcheminement": "ROINVILLE", - "nomCommune": "ROINVILLE" + "codePostal": "78200", + "codeCommune": "78361", + "libelleAcheminement": "MANTES LA JOLIE", + "nomCommune": "MANTES LA JOLIE" }, { - "codePostal": "81640", - "codeCommune": "81068", - "libelleAcheminement": "COMBEFA", - "nomCommune": "COMBEFA" + "codePostal": "90100", + "codeCommune": "90033", + "libelleAcheminement": "DELLE", + "nomCommune": "DELLE" }, { - "codePostal": "73590", - "codeCommune": "73094", - "libelleAcheminement": "CREST VOLAND", - "nomCommune": "CREST VOLAND" + "codePostal": "76220", + "codeCommune": "76440", + "libelleAcheminement": "MOLAGNIES", + "nomCommune": "MOLAGNIES" }, { - "codePostal": "89150", - "codeCommune": "89054", - "libelleAcheminement": "BRANNAY", - "nomCommune": "BRANNAY" + "codePostal": "90100", + "codeCommune": "90096", + "libelleAcheminement": "THIANCOURT", + "nomCommune": "THIANCOURT" }, { - "codePostal": "91400", - "codeCommune": "91534", - "libelleAcheminement": "SACLAY", - "nomCommune": "SACLAY" + "codePostal": "78711", + "codeCommune": "78362", + "libelleAcheminement": "MANTES LA VILLE", + "nomCommune": "MANTES LA VILLE" }, { - "codePostal": "81800", - "codeCommune": "81070", - "libelleAcheminement": "COUFOULEUX", - "nomCommune": "COUFOULEUX" + "codePostal": "90300", + "codeCommune": "90037", + "libelleAcheminement": "ELOIE", + "nomCommune": "ELOIE" }, { - "codePostal": "73420", - "codeCommune": "73103", - "libelleAcheminement": "DRUMETTAZ CLARAFOND", - "nomCommune": "DRUMETTAZ CLARAFOND" + "codePostal": "76290", + "codeCommune": "76447", + "libelleAcheminement": "MONTIVILLIERS", + "nomCommune": "MONTIVILLIERS" }, { - "codePostal": "89210", - "codeCommune": "89055", - "libelleAcheminement": "BRIENON SUR ARMANCON", - "nomCommune": "BRIENON SUR ARMANCON" + "codePostal": "90300", + "codeCommune": "90099", + "libelleAcheminement": "VALDOIE", + "nomCommune": "VALDOIE" }, { - "codePostal": "91530", - "codeCommune": "91540", - "libelleAcheminement": "ST CHERON", - "nomCommune": "ST CHERON" + "codePostal": "78580", + "codeCommune": "78380", + "libelleAcheminement": "MAULE", + "nomCommune": "MAULE" }, { - "codePostal": "81350", - "codeCommune": "81072", - "libelleAcheminement": "CRESPIN", - "nomCommune": "CRESPIN" + "codePostal": "90170", + "codeCommune": "90041", + "libelleAcheminement": "ETUEFFONT", + "nomCommune": "ETUEFFONT" }, { - "codePostal": "73670", - "codeCommune": "73107", - "libelleAcheminement": "ENTREMONT LE VIEUX", - "nomCommune": "ENTREMONT LE VIEUX" + "codePostal": "76220", + "codeCommune": "76450", + "libelleAcheminement": "MONTROTY", + "nomCommune": "MONTROTY" }, { - "codePostal": "89660", - "codeCommune": "89057", - "libelleAcheminement": "BROSSES", - "nomCommune": "BROSSES" + "codePostal": "90100", + "codeCommune": "90101", + "libelleAcheminement": "VELLESCOT", + "nomCommune": "VELLESCOT" }, { - "codePostal": "91250", - "codeCommune": "91553", - "libelleAcheminement": "ST GERMAIN LES CORBEIL", - "nomCommune": "ST GERMAIN LES CORBEIL" + "codePostal": "78780", + "codeCommune": "78382", + "libelleAcheminement": "MAURECOURT", + "nomCommune": "MAURECOURT" }, { - "codePostal": "81350", - "codeCommune": "81073", - "libelleAcheminement": "CRESPINET", - "nomCommune": "CRESPINET" + "codePostal": "90350", + "codeCommune": "90042", + "libelleAcheminement": "EVETTE SALBERT", + "nomCommune": "EVETTE SALBERT" }, { - "codePostal": "73300", - "codeCommune": "73116", - "libelleAcheminement": "FONTCOUVERTE LA TOUSSUIRE", - "nomCommune": "FONTCOUVERTE LA TOUSSUIRE" + "codePostal": "76970", + "codeCommune": "76456", + "libelleAcheminement": "MOTTEVILLE", + "nomCommune": "MOTTEVILLE" }, { - "codePostal": "89360", - "codeCommune": "89061", - "libelleAcheminement": "BUTTEAUX", - "nomCommune": "BUTTEAUX" + "codePostal": "90200", + "codeCommune": "90102", + "libelleAcheminement": "VESCEMONT", + "nomCommune": "VESCEMONT" }, { - "codePostal": "91940", - "codeCommune": "91560", - "libelleAcheminement": "ST JEAN DE BEAUREGARD", - "nomCommune": "ST JEAN DE BEAUREGARD" + "codePostal": "78490", + "codeCommune": "78389", + "libelleAcheminement": "MERE", + "nomCommune": "MERE" }, { - "codePostal": "81250", - "codeCommune": "81077", - "libelleAcheminement": "CURVALLE", - "nomCommune": "CURVALLE" + "codePostal": "90300", + "codeCommune": "90057", + "libelleAcheminement": "LACHAPELLE SOUS CHAUX", + "nomCommune": "LACHAPELLE SOUS CHAUX" }, { - "codePostal": "73460", - "codeCommune": "73129", - "libelleAcheminement": "GRESY SUR ISERE", - "nomCommune": "GRESY SUR ISERE" + "codePostal": "76530", + "codeCommune": "76457", + "libelleAcheminement": "MOULINEAUX", + "nomCommune": "MOULINEAUX" }, { - "codePostal": "89310", - "codeCommune": "89064", - "libelleAcheminement": "CENSY", - "nomCommune": "CENSY" + "codePostal": "90100", + "codeCommune": "90105", + "libelleAcheminement": "VILLARS LE SEC", + "nomCommune": "VILLARS LE SEC" }, { - "codePostal": "91250", - "codeCommune": "91577", - "libelleAcheminement": "SAINTRY SUR SEINE", - "nomCommune": "SAINTRY SUR SEINE" + "codePostal": "78600", + "codeCommune": "78396", + "libelleAcheminement": "LE MESNIL LE ROI", + "nomCommune": "LE MESNIL LE ROI" }, { - "codePostal": "81110", - "codeCommune": "81081", - "libelleAcheminement": "DOURGNE", - "nomCommune": "DOURGNE" + "codePostal": "90150", + "codeCommune": "90059", + "libelleAcheminement": "LACOLLONGE", + "nomCommune": "LACOLLONGE" }, { - "codePostal": "73620", - "codeCommune": "73132", - "libelleAcheminement": "HAUTELUCE", - "nomCommune": "HAUTELUCE" + "codePostal": "76220", + "codeCommune": "76463", + "libelleAcheminement": "NEUF MARCHE", + "nomCommune": "NEUF MARCHE" }, { - "codePostal": "89320", - "codeCommune": "89065", - "libelleAcheminement": "CERILLY", - "nomCommune": "CERILLY" + "codePostal": "91670", + "codeCommune": "91016", + "libelleAcheminement": "ANGERVILLE", + "nomCommune": "ANGERVILLE" }, { - "codePostal": "91770", - "codeCommune": "91579", - "libelleAcheminement": "ST VRAIN", - "nomCommune": "ST VRAIN" + "codePostal": "78250", + "codeCommune": "78401", + "libelleAcheminement": "MEULAN EN YVELINES", + "nomCommune": "MEULAN EN YVELINES" }, { - "codePostal": "81340", - "codeCommune": "81082", - "libelleAcheminement": "LE DOURN", - "nomCommune": "LE DOURN" + "codePostal": "90150", + "codeCommune": "90060", + "libelleAcheminement": "LAGRANGE", + "nomCommune": "LAGRANGE" }, { - "codePostal": "73000", - "codeCommune": "73137", - "libelleAcheminement": "JACOB BELLECOMBETTE", - "nomCommune": "JACOB BELLECOMBETTE" + "codePostal": "76270", + "codeCommune": "76465", + "libelleAcheminement": "NEUVILLE FERRIERES", + "nomCommune": "NEUVILLE FERRIERES" }, { - "codePostal": "89800", - "codeCommune": "89068", - "libelleAcheminement": "CHABLIS", - "nomCommune": "CHABLIS" + "codePostal": "91590", + "codeCommune": "91047", + "libelleAcheminement": "BAULNE", + "nomCommune": "BAULNE" }, { - "codePostal": "91160", - "codeCommune": "91587", - "libelleAcheminement": "SAULX LES CHARTREUX", - "nomCommune": "SAULX LES CHARTREUX" + "codePostal": "78250", + "codeCommune": "78403", + "libelleAcheminement": "MEZY SUR SEINE", + "nomCommune": "MEZY SUR SEINE" }, { - "codePostal": "81530", - "codeCommune": "81085", - "libelleAcheminement": "ESCROUX", - "nomCommune": "ESCROUX" + "codePostal": "90170", + "codeCommune": "90061", + "libelleAcheminement": "LAMADELEINE VAL DES ANGES", + "nomCommune": "LAMADELEINE VAL DES ANGES" }, { - "codePostal": "73170", - "codeCommune": "73149", - "libelleAcheminement": "LUCEY", - "nomCommune": "LUCEY" + "codePostal": "76210", + "codeCommune": "76468", + "libelleAcheminement": "NOINTOT", + "nomCommune": "NOINTOT" }, { - "codePostal": "89660", - "codeCommune": "89071", - "libelleAcheminement": "CHAMOUX", - "nomCommune": "CHAMOUX" + "codePostal": "91150", + "codeCommune": "91075", + "libelleAcheminement": "BOIS HERPIN", + "nomCommune": "BOIS HERPIN" }, { - "codePostal": "91530", - "codeCommune": "91593", - "libelleAcheminement": "SERMAISE", - "nomCommune": "SERMAISE" + "codePostal": "78490", + "codeCommune": "78420", + "libelleAcheminement": "MONTFORT L AMAURY", + "nomCommune": "MONTFORT L AMAURY" }, { - "codePostal": "81340", - "codeCommune": "81089", - "libelleAcheminement": "FAUSSERGUES", - "nomCommune": "FAUSSERGUES" + "codePostal": "90150", + "codeCommune": "90067", + "libelleAcheminement": "MENONCOURT", + "nomCommune": "MENONCOURT" }, { - "codePostal": "73210", - "codeCommune": "73150", - "libelleAcheminement": "LA PLAGNE TARENTAISE", - "nomCommune": "LA PLAGNE TARENTAISE" + "codePostal": "76510", + "codeCommune": "76472", + "libelleAcheminement": "NOTRE DAME D ALIERMONT", + "nomCommune": "NOTRE DAME D ALIERMONT" }, { - "codePostal": "89260", - "codeCommune": "89080", - "libelleAcheminement": "LA CHAPELLE SUR OREUSE", - "nomCommune": "LA CHAPELLE SUR OREUSE" + "codePostal": "91870", + "codeCommune": "91081", + "libelleAcheminement": "BOISSY LE SEC", + "nomCommune": "BOISSY LE SEC" }, { - "codePostal": "91740", - "codeCommune": "91613", - "libelleAcheminement": "CONGERVILLE THIONVILLE", - "nomCommune": "CONGERVILLE THIONVILLE" + "codePostal": "78630", + "codeCommune": "78431", + "libelleAcheminement": "MORAINVILLIERS", + "nomCommune": "MORAINVILLIERS" }, { - "codePostal": "81340", - "codeCommune": "81094", - "libelleAcheminement": "FRAISSINES", - "nomCommune": "FRAISSINES" + "codePostal": "90400", + "codeCommune": "90068", + "libelleAcheminement": "MEROUX MOVAL", + "nomCommune": "MEROUX MOVAL" }, { - "codePostal": "73210", - "codeCommune": "73150", - "libelleAcheminement": "LA PLAGNE TARENTAISE", - "nomCommune": "LA PLAGNE TARENTAISE" + "codePostal": "76550", + "codeCommune": "76482", + "libelleAcheminement": "OFFRANVILLE", + "nomCommune": "OFFRANVILLE" }, { - "codePostal": "89113", - "codeCommune": "89083", - "libelleAcheminement": "CHARBUY", - "nomCommune": "CHARBUY" + "codePostal": "91790", + "codeCommune": "91085", + "libelleAcheminement": "BOISSY SOUS ST YON", + "nomCommune": "BOISSY SOUS ST YON" }, { - "codePostal": "91740", - "codeCommune": "91613", - "libelleAcheminement": "CONGERVILLE THIONVILLE", - "nomCommune": "CONGERVILLE THIONVILLE" + "codePostal": "78980", + "codeCommune": "78444", + "libelleAcheminement": "NEAUPHLETTE", + "nomCommune": "NEAUPHLETTE" }, { - "codePostal": "81300", - "codeCommune": "81105", - "libelleAcheminement": "GRAULHET", - "nomCommune": "GRAULHET" + "codePostal": "90300", + "codeCommune": "90075", + "libelleAcheminement": "OFFEMONT", + "nomCommune": "OFFEMONT" }, { - "codePostal": "73210", - "codeCommune": "73150", - "libelleAcheminement": "LA PLAGNE TARENTAISE", - "nomCommune": "LA PLAGNE TARENTAISE" + "codePostal": "76560", + "codeCommune": "76483", + "libelleAcheminement": "OHERVILLE", + "nomCommune": "OHERVILLE" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "91820", + "codeCommune": "91099", + "libelleAcheminement": "BOUTIGNY SUR ESSONNE", + "nomCommune": "BOUTIGNY SUR ESSONNE" }, { - "codePostal": "91720", - "codeCommune": "91629", - "libelleAcheminement": "VALPUISEAUX", - "nomCommune": "VALPUISEAUX" + "codePostal": "78250", + "codeCommune": "78460", + "libelleAcheminement": "OINVILLE SUR MONTCIENT", + "nomCommune": "OINVILLE SUR MONTCIENT" }, { - "codePostal": "81170", - "codeCommune": "81111", - "libelleAcheminement": "LABARTHE BLEYS", - "nomCommune": "LABARTHE BLEYS" + "codePostal": "90160", + "codeCommune": "90076", + "libelleAcheminement": "PEROUSE", + "nomCommune": "PEROUSE" }, { - "codePostal": "73170", - "codeCommune": "73156", - "libelleAcheminement": "MEYRIEUX TROUET", - "nomCommune": "MEYRIEUX TROUET" + "codePostal": "76430", + "codeCommune": "76489", + "libelleAcheminement": "OUDALLE", + "nomCommune": "OUDALLE" }, { - "codePostal": "89660", - "codeCommune": "89091", - "libelleAcheminement": "CHATEL CENSOIR", - "nomCommune": "CHATEL CENSOIR" + "codePostal": "91800", + "codeCommune": "91114", + "libelleAcheminement": "BRUNOY", + "nomCommune": "BRUNOY" }, { - "codePostal": "91890", - "codeCommune": "91654", - "libelleAcheminement": "VIDELLES", - "nomCommune": "VIDELLES" + "codePostal": "78660", + "codeCommune": "78472", + "libelleAcheminement": "ORSONVILLE", + "nomCommune": "ORSONVILLE" }, { - "codePostal": "81270", - "codeCommune": "81115", - "libelleAcheminement": "LABASTIDE ROUAIROUX", - "nomCommune": "LABASTIDE ROUAIROUX" + "codePostal": "90170", + "codeCommune": "90079", + "libelleAcheminement": "PETITMAGNY", + "nomCommune": "PETITMAGNY" }, { - "codePostal": "73800", - "codeCommune": "73159", - "libelleAcheminement": "LES MOLLETTES", - "nomCommune": "LES MOLLETTES" + "codePostal": "76450", + "codeCommune": "76490", + "libelleAcheminement": "OURVILLE EN CAUX", + "nomCommune": "OURVILLE EN CAUX" }, { - "codePostal": "89310", - "codeCommune": "89092", - "libelleAcheminement": "CHATEL GERARD", - "nomCommune": "CHATEL GERARD" + "codePostal": "91590", + "codeCommune": "91129", + "libelleAcheminement": "CERNY", + "nomCommune": "CERNY" }, { - "codePostal": "91190", - "codeCommune": "91679", - "libelleAcheminement": "VILLIERS LE BACLE", - "nomCommune": "VILLIERS LE BACLE" + "codePostal": "78910", + "codeCommune": "78475", + "libelleAcheminement": "OSMOY", + "nomCommune": "OSMOY" }, { - "codePostal": "81100", - "codeCommune": "81118", - "libelleAcheminement": "LABOULBENE", - "nomCommune": "LABOULBENE" + "codePostal": "90150", + "codeCommune": "90080", + "libelleAcheminement": "PHAFFANS", + "nomCommune": "PHAFFANS" }, { - "codePostal": "73390", - "codeCommune": "73166", - "libelleAcheminement": "MONTENDRY", - "nomCommune": "MONTENDRY" + "codePostal": "76140", + "codeCommune": "76498", + "libelleAcheminement": "LE PETIT QUEVILLY", + "nomCommune": "LE PETIT QUEVILLY" }, { - "codePostal": "89340", - "codeCommune": "89093", - "libelleAcheminement": "CHAUMONT", - "nomCommune": "CHAUMONT" + "codePostal": "91380", + "codeCommune": "91161", + "libelleAcheminement": "CHILLY MAZARIN", + "nomCommune": "CHILLY MAZARIN" }, { - "codePostal": "91940", - "codeCommune": "91692", - "libelleAcheminement": "LES ULIS", - "nomCommune": "LES ULIS" + "codePostal": "78660", + "codeCommune": "78478", + "libelleAcheminement": "PARAY DOUAVILLE", + "nomCommune": "PARAY DOUAVILLE" }, { - "codePostal": "81120", - "codeCommune": "81119", - "libelleAcheminement": "LABOUTARIE", - "nomCommune": "LABOUTARIE" + "codePostal": "90110", + "codeCommune": "90086", + "libelleAcheminement": "ROMAGNY SOUS ROUGEMONT", + "nomCommune": "ROMAGNY SOUS ROUGEMONT" }, { - "codePostal": "73220", - "codeCommune": "73175", - "libelleAcheminement": "MONTSAPEY", - "nomCommune": "MONTSAPEY" + "codePostal": "76330", + "codeCommune": "76499", + "libelleAcheminement": "PETIVILLE", + "nomCommune": "PETIVILLE" }, { - "codePostal": "89500", - "codeCommune": "89094", - "libelleAcheminement": "CHAUMOT", - "nomCommune": "CHAUMOT" + "codePostal": "91590", + "codeCommune": "91198", + "libelleAcheminement": "D HUISON LONGUEVILLE", + "nomCommune": "D HUISON LONGUEVILLE" }, { - "codePostal": "92140", - "codeCommune": "92023", - "libelleAcheminement": "CLAMART", - "nomCommune": "CLAMART" + "codePostal": "78610", + "codeCommune": "78486", + "libelleAcheminement": "LE PERRAY EN YVELINES", + "nomCommune": "LE PERRAY EN YVELINES" }, { - "codePostal": "81240", - "codeCommune": "81121", - "libelleAcheminement": "LACABAREDE", - "nomCommune": "LACABAREDE" + "codePostal": "90380", + "codeCommune": "90087", + "libelleAcheminement": "ROPPE", + "nomCommune": "ROPPE" }, { - "codePostal": "73700", - "codeCommune": "73176", - "libelleAcheminement": "MONTVALEZAN", - "nomCommune": "MONTVALEZAN" + "codePostal": "76340", + "codeCommune": "76500", + "libelleAcheminement": "PIERRECOURT", + "nomCommune": "PIERRECOURT" }, { - "codePostal": "89800", - "codeCommune": "89095", - "libelleAcheminement": "CHEMILLY SUR SEREIN", - "nomCommune": "CHEMILLY SUR SEREIN" + "codePostal": "91860", + "codeCommune": "91215", + "libelleAcheminement": "EPINAY SOUS SENART", + "nomCommune": "EPINAY SOUS SENART" }, { - "codePostal": "92230", - "codeCommune": "92036", - "libelleAcheminement": "GENNEVILLIERS", - "nomCommune": "GENNEVILLIERS" + "codePostal": "78440", + "codeCommune": "78501", + "libelleAcheminement": "PORCHEVILLE", + "nomCommune": "PORCHEVILLE" }, { - "codePostal": "81110", - "codeCommune": "81129", - "libelleAcheminement": "LAGARDIOLLE", - "nomCommune": "LAGARDIOLLE" + "codePostal": "90110", + "codeCommune": "90089", + "libelleAcheminement": "ROUGEMONT LE CHATEAU", + "nomCommune": "ROUGEMONT LE CHATEAU" }, { - "codePostal": "73290", - "codeCommune": "73179", - "libelleAcheminement": "LA MOTTE SERVOLEX", - "nomCommune": "LA MOTTE SERVOLEX" + "codePostal": "76280", + "codeCommune": "76501", + "libelleAcheminement": "PIERREFIQUES", + "nomCommune": "PIERREFIQUES" }, { - "codePostal": "89250", - "codeCommune": "89096", - "libelleAcheminement": "CHEMILLY SUR YONNE", - "nomCommune": "CHEMILLY SUR YONNE" + "codePostal": "91450", + "codeCommune": "91225", + "libelleAcheminement": "ETIOLLES", + "nomCommune": "ETIOLLES" }, { - "codePostal": "92360", - "codeCommune": "92048", - "libelleAcheminement": "MEUDON", - "nomCommune": "MEUDON" + "codePostal": "78560", + "codeCommune": "78502", + "libelleAcheminement": "LE PORT MARLY", + "nomCommune": "LE PORT MARLY" }, { - "codePostal": "81090", - "codeCommune": "81130", - "libelleAcheminement": "LAGARRIGUE", - "nomCommune": "LAGARRIGUE" + "codePostal": "90100", + "codeCommune": "90090", + "libelleAcheminement": "ST DIZIER L EVEQUE", + "nomCommune": "ST DIZIER L EVEQUE" }, { - "codePostal": "73600", - "codeCommune": "73181", - "libelleAcheminement": "MOUTIERS TARENTAISE", - "nomCommune": "MOUTIERS" + "codePostal": "76160", + "codeCommune": "76509", + "libelleAcheminement": "PREAUX", + "nomCommune": "PREAUX" }, { - "codePostal": "89700", - "codeCommune": "89098", - "libelleAcheminement": "CHENEY", - "nomCommune": "CHENEY" + "codePostal": "91470", + "codeCommune": "91249", + "libelleAcheminement": "FORGES LES BAINS", + "nomCommune": "FORGES LES BAINS" }, { - "codePostal": "92000", - "codeCommune": "92050", - "libelleAcheminement": "NANTERRE", - "nomCommune": "NANTERRE" + "codePostal": "78910", + "codeCommune": "78505", + "libelleAcheminement": "PRUNAY LE TEMPLE", + "nomCommune": "PRUNAY LE TEMPLE" }, { - "codePostal": "81260", - "codeCommune": "81134", - "libelleAcheminement": "LAMONTELARIE", - "nomCommune": "LAMONTELARIE" + "codePostal": "90800", + "codeCommune": "90098", + "libelleAcheminement": "URCEREY", + "nomCommune": "URCEREY" }, { - "codePostal": "73590", - "codeCommune": "73186", - "libelleAcheminement": "NOTRE DAME DE BELLECOMBE", - "nomCommune": "NOTRE DAME DE BELLECOMBE" + "codePostal": "76560", + "codeCommune": "76510", + "libelleAcheminement": "PRETOT VICQUEMARE", + "nomCommune": "PRETOT VICQUEMARE" }, { - "codePostal": "89150", - "codeCommune": "89126", - "libelleAcheminement": "COURTOIN", - "nomCommune": "COURTOIN" + "codePostal": "91940", + "codeCommune": "91275", + "libelleAcheminement": "GOMETZ LE CHATEL", + "nomCommune": "GOMETZ LE CHATEL" }, { - "codePostal": "92500", - "codeCommune": "92063", - "libelleAcheminement": "RUEIL MALMAISON", - "nomCommune": "RUEIL MALMAISON" + "codePostal": "78270", + "codeCommune": "78528", + "libelleAcheminement": "ROLLEBOISE", + "nomCommune": "ROLLEBOISE" }, { - "codePostal": "81140", - "codeCommune": "81136", - "libelleAcheminement": "LARROQUE", - "nomCommune": "LARROQUE" + "codePostal": "91670", + "codeCommune": "91016", + "libelleAcheminement": "ANGERVILLE", + "nomCommune": "ANGERVILLE" }, { - "codePostal": "73260", - "codeCommune": "73187", - "libelleAcheminement": "LA LECHERE", - "nomCommune": "LA LECHERE" + "codePostal": "76540", + "codeCommune": "76529", + "libelleAcheminement": "RIVILLE", + "nomCommune": "RIVILLE" }, { - "codePostal": "89100", - "codeCommune": "89127", - "libelleAcheminement": "COURTOIS SUR YONNE", - "nomCommune": "COURTOIS SUR YONNE" + "codePostal": "91760", + "codeCommune": "91315", + "libelleAcheminement": "ITTEVILLE", + "nomCommune": "ITTEVILLE" }, { - "codePostal": "93000", - "codeCommune": "93008", - "libelleAcheminement": "BOBIGNY", - "nomCommune": "BOBIGNY" + "codePostal": "78790", + "codeCommune": "78530", + "libelleAcheminement": "ROSAY", + "nomCommune": "ROSAY" }, { - "codePostal": "81300", - "codeCommune": "81138", - "libelleAcheminement": "LASGRAISSES", - "nomCommune": "LASGRAISSES" + "codePostal": "91470", + "codeCommune": "91017", + "libelleAcheminement": "ANGERVILLIERS", + "nomCommune": "ANGERVILLIERS" }, { - "codePostal": "73260", - "codeCommune": "73187", - "libelleAcheminement": "LA LECHERE", - "nomCommune": "LA LECHERE" + "codePostal": "76680", + "codeCommune": "76532", + "libelleAcheminement": "ROCQUEMONT", + "nomCommune": "ROCQUEMONT" }, { - "codePostal": "89240", - "codeCommune": "89139", - "libelleAcheminement": "DIGES", - "nomCommune": "DIGES" + "codePostal": "91510", + "codeCommune": "91318", + "libelleAcheminement": "JANVILLE SUR JUINE", + "nomCommune": "JANVILLE SUR JUINE" }, { - "codePostal": "93260", - "codeCommune": "93045", - "libelleAcheminement": "LES LILAS", - "nomCommune": "LES LILAS" + "codePostal": "78210", + "codeCommune": "78545", + "libelleAcheminement": "ST CYR L ECOLE", + "nomCommune": "ST CYR L ECOLE" }, { - "codePostal": "81380", - "codeCommune": "81144", - "libelleAcheminement": "LESCURE D ALBIGEOIS", - "nomCommune": "LESCURE D ALBIGEOIS" + "codePostal": "91150", + "codeCommune": "91067", + "libelleAcheminement": "BLANDY", + "nomCommune": "BLANDY" }, { - "codePostal": "73600", - "codeCommune": "73190", - "libelleAcheminement": "NOTRE DAME DU PRE", - "nomCommune": "NOTRE DAME DU PRE" + "codePostal": "76680", + "codeCommune": "76538", + "libelleAcheminement": "ROSAY", + "nomCommune": "ROSAY" }, { - "codePostal": "89560", - "codeCommune": "89148", - "libelleAcheminement": "DRUYES LES BELLES FONTAINES", - "nomCommune": "DRUYES LES BELLES FONTAINES" + "codePostal": "91470", + "codeCommune": "91338", + "libelleAcheminement": "LIMOURS", + "nomCommune": "LIMOURS" }, { - "codePostal": "93380", - "codeCommune": "93059", - "libelleAcheminement": "PIERREFITTE SUR SEINE", - "nomCommune": "PIERREFITTE SUR SEINE" + "codePostal": "78125", + "codeCommune": "78557", + "libelleAcheminement": "ST HILARION", + "nomCommune": "ST HILARION" }, { - "codePostal": "81800", - "codeCommune": "81149", - "libelleAcheminement": "LOUPIAC", - "nomCommune": "LOUPIAC" + "codePostal": "91720", + "codeCommune": "91069", + "libelleAcheminement": "BOIGNEVILLE", + "nomCommune": "BOIGNEVILLE" }, { - "codePostal": "73470", - "codeCommune": "73191", - "libelleAcheminement": "NOVALAISE", - "nomCommune": "NOVALAISE" + "codePostal": "76480", + "codeCommune": "76541", + "libelleAcheminement": "ROUMARE", + "nomCommune": "ROUMARE" }, { - "codePostal": "89400", - "codeCommune": "89152", - "libelleAcheminement": "EPINEAU LES VOVES", - "nomCommune": "EPINEAU LES VOVES" + "codePostal": "91160", + "codeCommune": "91345", + "libelleAcheminement": "LONGJUMEAU", + "nomCommune": "LONGJUMEAU" }, { - "codePostal": "93270", - "codeCommune": "93071", - "libelleAcheminement": "SEVRAN", - "nomCommune": "SEVRAN" + "codePostal": "78470", + "codeCommune": "78561", + "libelleAcheminement": "ST LAMBERT DES BOIS", + "nomCommune": "ST LAMBERT" }, { - "codePostal": "81500", - "codeCommune": "81157", - "libelleAcheminement": "MARZENS", - "nomCommune": "MARZENS" + "codePostal": "91650", + "codeCommune": "91105", + "libelleAcheminement": "BREUILLET", + "nomCommune": "BREUILLET" }, { - "codePostal": "73340", - "codeCommune": "73192", - "libelleAcheminement": "LE NOYER", - "nomCommune": "LE NOYER" + "codePostal": "76560", + "codeCommune": "76542", + "libelleAcheminement": "ROUTES", + "nomCommune": "ROUTES" }, { - "codePostal": "89480", - "codeCommune": "89164", - "libelleAcheminement": "FESTIGNY", - "nomCommune": "FESTIGNY" + "codePostal": "91150", + "codeCommune": "91399", + "libelleAcheminement": "MESPUITS", + "nomCommune": "MESPUITS" }, { - "codePostal": "93430", - "codeCommune": "93079", - "libelleAcheminement": "VILLETANEUSE", - "nomCommune": "VILLETANEUSE" + "codePostal": "78520", + "codeCommune": "78567", + "libelleAcheminement": "ST MARTIN LA GARENNE", + "nomCommune": "ST MARTIN LA GARENNE" }, { - "codePostal": "81800", - "codeCommune": "81164", - "libelleAcheminement": "MEZENS", - "nomCommune": "MEZENS" + "codePostal": "91680", + "codeCommune": "91115", + "libelleAcheminement": "BRUYERES LE CHATEL", + "nomCommune": "BRUYERES LE CHATEL" }, { - "codePostal": "73100", - "codeCommune": "73208", - "libelleAcheminement": "PUGNY CHATENOD", - "nomCommune": "PUGNY CHATENOD" + "codePostal": "76730", + "codeCommune": "76549", + "libelleAcheminement": "SAANE ST JUST", + "nomCommune": "SAANE ST JUST" }, { - "codePostal": "89450", - "codeCommune": "89170", - "libelleAcheminement": "FOISSY LES VEZELAY", - "nomCommune": "FOISSY LES VEZELAY" + "codePostal": "91150", + "codeCommune": "91433", + "libelleAcheminement": "MORIGNY CHAMPIGNY", + "nomCommune": "MORIGNY CHAMPIGNY" }, { - "codePostal": "94140", - "codeCommune": "94002", - "libelleAcheminement": "ALFORTVILLE", - "nomCommune": "ALFORTVILLE" + "codePostal": "78500", + "codeCommune": "78586", + "libelleAcheminement": "SARTROUVILLE", + "nomCommune": "SARTROUVILLE" }, { - "codePostal": "81130", - "codeCommune": "81166", - "libelleAcheminement": "MILHAVET", - "nomCommune": "MILHAVET" + "codePostal": "91440", + "codeCommune": "91122", + "libelleAcheminement": "BURES SUR YVETTE", + "nomCommune": "BURES SUR YVETTE" }, { - "codePostal": "73720", - "codeCommune": "73211", - "libelleAcheminement": "QUEIGE", - "nomCommune": "QUEIGE" + "codePostal": "76430", + "codeCommune": "76551", + "libelleAcheminement": "SAINNEVILLE", + "nomCommune": "SAINNEVILLE" }, { - "codePostal": "89190", - "codeCommune": "89171", - "libelleAcheminement": "FOISSY SUR VANNE", - "nomCommune": "FOISSY SUR VANNE" + "codePostal": "91590", + "codeCommune": "91473", + "libelleAcheminement": "ORVEAU", + "nomCommune": "ORVEAU" }, { - "codePostal": "94230", - "codeCommune": "94016", - "libelleAcheminement": "CACHAN", - "nomCommune": "CACHAN" + "codePostal": "78720", + "codeCommune": "78590", + "libelleAcheminement": "SENLISSE", + "nomCommune": "SENLISSE" }, { - "codePostal": "81250", - "codeCommune": "81167", - "libelleAcheminement": "MIOLLES", - "nomCommune": "MIOLLES" + "codePostal": "91730", + "codeCommune": "91132", + "libelleAcheminement": "CHAMARANDE", + "nomCommune": "CHAMARANDE" }, { - "codePostal": "73490", - "codeCommune": "73213", - "libelleAcheminement": "LA RAVOIRE", - "nomCommune": "LA RAVOIRE" + "codePostal": "76116", + "codeCommune": "76554", + "libelleAcheminement": "ST AIGNAN SUR RY", + "nomCommune": "ST AIGNAN SUR RY" }, { - "codePostal": "89100", - "codeCommune": "89172", - "libelleAcheminement": "FONTAINE LA GAILLARDE", - "nomCommune": "FONTAINE LA GAILLARDE" + "codePostal": "91470", + "codeCommune": "91482", + "libelleAcheminement": "PECQUEUSE", + "nomCommune": "PECQUEUSE" }, { - "codePostal": "94220", - "codeCommune": "94018", - "libelleAcheminement": "CHARENTON LE PONT", - "nomCommune": "CHARENTON LE PONT" + "codePostal": "78790", + "codeCommune": "78591", + "libelleAcheminement": "SEPTEUIL", + "nomCommune": "SEPTEUIL" }, { - "codePostal": "81190", - "codeCommune": "81172", - "libelleAcheminement": "MONTAURIOL", - "nomCommune": "MONTAURIOL" + "codePostal": "91750", + "codeCommune": "91135", + "libelleAcheminement": "CHAMPCUEIL", + "nomCommune": "CHAMPCUEIL" }, { - "codePostal": "73110", - "codeCommune": "73215", - "libelleAcheminement": "VALGELON LA ROCHETTE", - "nomCommune": "VALGELON LA ROCHETTE" + "codePostal": "76510", + "codeCommune": "76562", + "libelleAcheminement": "ST AUBIN LE CAUF", + "nomCommune": "ST AUBIN LE CAUF" }, { - "codePostal": "89660", - "codeCommune": "89177", - "libelleAcheminement": "FONTENAY SOUS FOURONNES", - "nomCommune": "FONTENAY SOUS FOURONNES" + "codePostal": "91150", + "codeCommune": "91508", + "libelleAcheminement": "PUISELET LE MARAIS", + "nomCommune": "PUISELET LE MARAIS" }, { - "codePostal": "94000", - "codeCommune": "94028", - "libelleAcheminement": "CRETEIL", - "nomCommune": "CRETEIL" + "codePostal": "78910", + "codeCommune": "78605", + "libelleAcheminement": "TACOIGNIERES", + "nomCommune": "TACOIGNIERES" }, { - "codePostal": "81500", - "codeCommune": "81173", - "libelleAcheminement": "MONTCABRIER", - "nomCommune": "MONTCABRIER" + "codePostal": "91160", + "codeCommune": "91136", + "libelleAcheminement": "CHAMPLAN", + "nomCommune": "CHAMPLAN" }, { - "codePostal": "73190", - "codeCommune": "73225", - "libelleAcheminement": "ST BALDOPH", - "nomCommune": "ST BALDOPH" + "codePostal": "76270", + "codeCommune": "76567", + "libelleAcheminement": "STE BEUVE EN RIVIERE", + "nomCommune": "STE BEUVE EN RIVIERE" }, { - "codePostal": "89600", - "codeCommune": "89186", - "libelleAcheminement": "GERMIGNY", - "nomCommune": "GERMIGNY" + "codePostal": "91410", + "codeCommune": "91519", + "libelleAcheminement": "RICHARVILLE", + "nomCommune": "RICHARVILLE" }, { - "codePostal": "94250", - "codeCommune": "94037", - "libelleAcheminement": "GENTILLY", - "nomCommune": "GENTILLY" + "codePostal": "78113", + "codeCommune": "78606", + "libelleAcheminement": "LE TARTRE GAUDRAN", + "nomCommune": "LE TARTRE GAUDRAN" }, { - "codePostal": "81630", - "codeCommune": "81175", - "libelleAcheminement": "MONTDURAUSSE", - "nomCommune": "MONTDURAUSSE" + "codePostal": "91150", + "codeCommune": "91223", + "libelleAcheminement": "ETAMPES", + "nomCommune": "ETAMPES" }, { - "codePostal": "73520", - "codeCommune": "73226", - "libelleAcheminement": "ST BERON", - "nomCommune": "ST BERON" + "codePostal": "76590", + "codeCommune": "76570", + "libelleAcheminement": "ST CRESPIN", + "nomCommune": "ST CRESPIN" }, { - "codePostal": "89160", - "codeCommune": "89187", - "libelleAcheminement": "GIGNY", - "nomCommune": "GIGNY" + "codePostal": "91690", + "codeCommune": "91533", + "libelleAcheminement": "SACLAS", + "nomCommune": "SACLAS" }, { - "codePostal": "94880", - "codeCommune": "94053", - "libelleAcheminement": "NOISEAU", - "nomCommune": "NOISEAU" + "codePostal": "78980", + "codeCommune": "78608", + "libelleAcheminement": "LE TERTRE ST DENIS", + "nomCommune": "LE TERTRE ST DENIS" }, { - "codePostal": "81440", - "codeCommune": "81181", - "libelleAcheminement": "MONTPINIER", - "nomCommune": "MONTPINIER" + "codePostal": "91580", + "codeCommune": "91226", + "libelleAcheminement": "ETRECHY", + "nomCommune": "ETRECHY" }, { - "codePostal": "73360", - "codeCommune": "73229", - "libelleAcheminement": "ST CHRISTOPHE", - "nomCommune": "ST CHRISTOPHE" + "codePostal": "76690", + "codeCommune": "76583", + "libelleAcheminement": "ST GERMAIN SOUS CAILLY", + "nomCommune": "ST GERMAIN SOUS CAILLY" }, { - "codePostal": "89200", - "codeCommune": "89188", - "libelleAcheminement": "GIROLLES", - "nomCommune": "GIROLLES" + "codePostal": "91400", + "codeCommune": "91534", + "libelleAcheminement": "SACLAY", + "nomCommune": "SACLAY" }, { - "codePostal": "94510", - "codeCommune": "94060", - "libelleAcheminement": "LA QUEUE EN BRIE", - "nomCommune": "LA QUEUE EN BRIE" + "codePostal": "78770", + "codeCommune": "78616", + "libelleAcheminement": "THOIRY", + "nomCommune": "THOIRY" }, { - "codePostal": "81170", - "codeCommune": "81184", - "libelleAcheminement": "MONTROSIER", - "nomCommune": "MONTROSIER" + "codePostal": "91590", + "codeCommune": "91232", + "libelleAcheminement": "LA FERTE ALAIS", + "nomCommune": "LA FERTE ALAIS" }, { - "codePostal": "73130", - "codeCommune": "73235", - "libelleAcheminement": "ST FRANCOIS LONGCHAMP", - "nomCommune": "ST FRANCOIS LONGCHAMP" + "codePostal": "76160", + "codeCommune": "76591", + "libelleAcheminement": "ST JACQUES SUR DARNETAL", + "nomCommune": "ST JACQUES SUR DARNETAL" }, { - "codePostal": "89140", - "codeCommune": "89189", - "libelleAcheminement": "GISY LES NOBLES", - "nomCommune": "GISY LES NOBLES" + "codePostal": "91530", + "codeCommune": "91540", + "libelleAcheminement": "ST CHERON", + "nomCommune": "ST CHERON" }, { - "codePostal": "94150", - "codeCommune": "94065", - "libelleAcheminement": "RUNGIS", - "nomCommune": "RUNGIS" + "codePostal": "78190", + "codeCommune": "78621", + "libelleAcheminement": "TRAPPES", + "nomCommune": "TRAPPES" }, { - "codePostal": "81320", - "codeCommune": "81188", - "libelleAcheminement": "MOULIN MAGE", - "nomCommune": "MOULIN MAGE" + "codePostal": "91150", + "codeCommune": "91248", + "libelleAcheminement": "LA FORET STE CROIX", + "nomCommune": "LA FORET STE CROIX" }, { - "codePostal": "73170", - "codeCommune": "73245", - "libelleAcheminement": "ST JEAN DE CHEVELU", - "nomCommune": "ST JEAN DE CHEVELU" + "codePostal": "76150", + "codeCommune": "76594", + "libelleAcheminement": "ST JEAN DU CARDONNAY", + "nomCommune": "ST JEAN DU CARDONNAY" }, { - "codePostal": "89740", - "codeCommune": "89191", - "libelleAcheminement": "GLAND", - "nomCommune": "GLAND" + "codePostal": "91410", + "codeCommune": "91547", + "libelleAcheminement": "ST ESCOBILLE", + "nomCommune": "ST ESCOBILLE" }, { - "codePostal": "94460", - "codeCommune": "94074", - "libelleAcheminement": "VALENTON", - "nomCommune": "VALENTON" + "codePostal": "78510", + "codeCommune": "78624", + "libelleAcheminement": "TRIEL SUR SEINE", + "nomCommune": "TRIEL SUR SEINE" }, { - "codePostal": "81340", - "codeCommune": "81199", - "libelleAcheminement": "PADIES", - "nomCommune": "PADIES" + "codePostal": "91590", + "codeCommune": "91293", + "libelleAcheminement": "GUIGNEVILLE SUR ESSONNE", + "nomCommune": "GUIGNEVILLE SUR ESSONNE" }, { - "codePostal": "73140", - "codeCommune": "73258", - "libelleAcheminement": "ST MARTIN DE LA PORTE", - "nomCommune": "ST MARTIN DE LA PORTE" + "codePostal": "76780", + "codeCommune": "76601", + "libelleAcheminement": "ST LUCIEN", + "nomCommune": "ST LUCIEN" }, { - "codePostal": "89113", - "codeCommune": "89196", - "libelleAcheminement": "VALRAVILLON", - "nomCommune": "VALRAVILLON" + "codePostal": "91700", + "codeCommune": "91549", + "libelleAcheminement": "STE GENEVIEVE DES BOIS", + "nomCommune": "STE GENEVIEVE DES BOIS" }, { - "codePostal": "94300", - "codeCommune": "94080", - "libelleAcheminement": "VINCENNES", - "nomCommune": "VINCENNES" + "codePostal": "78740", + "codeCommune": "78638", + "libelleAcheminement": "VAUX SUR SEINE", + "nomCommune": "VAUX SUR SEINE" }, { - "codePostal": "81310", - "codeCommune": "81202", - "libelleAcheminement": "PARISOT", - "nomCommune": "PARISOT" + "codePostal": "91430", + "codeCommune": "91312", + "libelleAcheminement": "IGNY", + "nomCommune": "IGNY" }, { - "codePostal": "73140", - "codeCommune": "73261", - "libelleAcheminement": "ST MICHEL DE MAURIENNE", - "nomCommune": "ST MICHEL DE MAURIENNE" + "codePostal": "76110", + "codeCommune": "76603", + "libelleAcheminement": "ST MACLOU LA BRIERE", + "nomCommune": "ST MACLOU LA BRIERE" }, { - "codePostal": "89160", - "codeCommune": "89210", - "libelleAcheminement": "JULLY", - "nomCommune": "JULLY" + "codePostal": "91250", + "codeCommune": "91553", + "libelleAcheminement": "ST GERMAIN LES CORBEIL", + "nomCommune": "ST GERMAIN LES CORBEIL" }, { - "codePostal": "94400", - "codeCommune": "94081", - "libelleAcheminement": "VITRY SUR SEINE", - "nomCommune": "VITRY SUR SEINE" + "codePostal": "78140", + "codeCommune": "78640", + "libelleAcheminement": "VELIZY VILLACOUBLAY", + "nomCommune": "VELIZY VILLACOUBLAY" }, { - "codePostal": "81660", - "codeCommune": "81204", - "libelleAcheminement": "PAYRIN AUGMONTEL", - "nomCommune": "PAYRIN AUGMONTEL" + "codePostal": "91090", + "codeCommune": "91340", + "libelleAcheminement": "LISSES", + "nomCommune": "LISSES" }, { - "codePostal": "73670", - "codeCommune": "73274", - "libelleAcheminement": "ST PIERRE D ENTREMONT", - "nomCommune": "ST PIERRE D ENTREMONT" + "codePostal": "76480", + "codeCommune": "76608", + "libelleAcheminement": "STE MARGUERITE SUR DUCLAIR", + "nomCommune": "STE MARGUERITE SUR DUCLAIR" }, { - "codePostal": "89190", - "codeCommune": "89214", - "libelleAcheminement": "LAILLY", - "nomCommune": "LAILLY" + "codePostal": "91940", + "codeCommune": "91560", + "libelleAcheminement": "ST JEAN DE BEAUREGARD", + "nomCommune": "ST JEAN DE BEAUREGARD" }, { - "codePostal": "95100", - "codeCommune": "95018", - "libelleAcheminement": "ARGENTEUIL", - "nomCommune": "ARGENTEUIL" + "codePostal": "78960", + "codeCommune": "78688", + "libelleAcheminement": "VOISINS LE BRETONNEUX", + "nomCommune": "VOISINS LE BRETONNEUX" }, { - "codePostal": "81140", - "codeCommune": "81206", - "libelleAcheminement": "PENNE", - "nomCommune": "PENNE" + "codePostal": "91310", + "codeCommune": "91347", + "libelleAcheminement": "LONGPONT SUR ORGE", + "nomCommune": "LONGPONT SUR ORGE" }, { - "codePostal": "73630", - "codeCommune": "73277", - "libelleAcheminement": "STE REINE", - "nomCommune": "STE REINE" + "codePostal": "76540", + "codeCommune": "76613", + "libelleAcheminement": "ST MARTIN AUX BUNEAUX", + "nomCommune": "ST MARTIN AUX BUNEAUX" }, { - "codePostal": "89160", - "codeCommune": "89223", - "libelleAcheminement": "LEZINNES", - "nomCommune": "LEZINNES" + "codePostal": "91910", + "codeCommune": "91578", + "libelleAcheminement": "ST SULPICE DE FAVIERES", + "nomCommune": "ST SULPICE DE FAVIERES" }, { - "codePostal": "95270", - "codeCommune": "95026", - "libelleAcheminement": "ASNIERES SUR OISE", - "nomCommune": "ASNIERES SUR OISE" + "codePostal": "79230", + "codeCommune": "79003", + "libelleAcheminement": "AIFFRES", + "nomCommune": "AIFFRES" }, { - "codePostal": "81440", - "codeCommune": "81207", - "libelleAcheminement": "PEYREGOUX", - "nomCommune": "PEYREGOUX" + "codePostal": "91300", + "codeCommune": "91377", + "libelleAcheminement": "MASSY", + "nomCommune": "MASSY" }, { - "codePostal": "73160", - "codeCommune": "73282", - "libelleAcheminement": "ST THIBAUD DE COUZ", - "nomCommune": "ST THIBAUD DE COUZ" + "codePostal": "76840", + "codeCommune": "76614", + "libelleAcheminement": "ST MARTIN DE BOSCHERVILLE", + "nomCommune": "ST MARTIN DE BOSCHERVILLE" }, { - "codePostal": "89270", - "codeCommune": "89233", - "libelleAcheminement": "LUCY SUR CURE", - "nomCommune": "LUCY SUR CURE" + "codePostal": "91600", + "codeCommune": "91589", + "libelleAcheminement": "SAVIGNY SUR ORGE", + "nomCommune": "SAVIGNY SUR ORGE" }, { - "codePostal": "95250", - "codeCommune": "95051", - "libelleAcheminement": "BEAUCHAMP", - "nomCommune": "BEAUCHAMP" + "codePostal": "79150", + "codeCommune": "79013", + "libelleAcheminement": "ARGENTONNAY", + "nomCommune": "ARGENTONNAY" }, { - "codePostal": "81660", - "codeCommune": "81209", - "libelleAcheminement": "PONT DE LARN", - "nomCommune": "PONT DE LARN" + "codePostal": "91540", + "codeCommune": "91386", + "libelleAcheminement": "MENNECY", + "nomCommune": "MENNECY" }, { - "codePostal": "73600", - "codeCommune": "73284", - "libelleAcheminement": "SALINS FONTAINE", - "nomCommune": "SALINS FONTAINE" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "89100", - "codeCommune": "89239", - "libelleAcheminement": "MALAY LE GRAND", - "nomCommune": "MALAY LE GRAND" + "codePostal": "91530", + "codeCommune": "91593", + "libelleAcheminement": "SERMAISE", + "nomCommune": "SERMAISE" }, { - "codePostal": "95340", - "codeCommune": "95058", - "libelleAcheminement": "BERNES SUR OISE", - "nomCommune": "BERNES SUR OISE" + "codePostal": "79150", + "codeCommune": "79013", + "libelleAcheminement": "ARGENTONNAY", + "nomCommune": "ARGENTONNAY" }, { - "codePostal": "81500", - "codeCommune": "81213", - "libelleAcheminement": "PRATVIEL", - "nomCommune": "PRATVIEL" + "codePostal": "91660", + "codeCommune": "91390", + "libelleAcheminement": "LE MEREVILLOIS", + "nomCommune": "LE MEREVILLOIS" }, { - "codePostal": "73500", - "codeCommune": "73290", - "libelleAcheminement": "VAL CENIS", - "nomCommune": "VAL CENIS" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "89100", - "codeCommune": "89240", - "libelleAcheminement": "MALAY LE PETIT", - "nomCommune": "MALAY LE PETIT" + "codePostal": "91450", + "codeCommune": "91600", + "libelleAcheminement": "SOISY SUR SEINE", + "nomCommune": "SOISY SUR SEINE" }, { - "codePostal": "95720", - "codeCommune": "95094", - "libelleAcheminement": "BOUQUEVAL", - "nomCommune": "BOUQUEVAL" + "codePostal": "79390", + "codeCommune": "79019", + "libelleAcheminement": "AUBIGNY", + "nomCommune": "AUBIGNY" }, { - "codePostal": "81440", - "codeCommune": "81216", - "libelleAcheminement": "PUYCALVEL", - "nomCommune": "PUYCALVEL" + "codePostal": "91780", + "codeCommune": "91393", + "libelleAcheminement": "MEROBERT", + "nomCommune": "MEROBERT" }, { - "codePostal": "73190", - "codeCommune": "73294", - "libelleAcheminement": "LA THUILE", - "nomCommune": "LA THUILE" + "codePostal": "76630", + "codeCommune": "76618", + "libelleAcheminement": "PETIT CAUX", + "nomCommune": "PETIT CAUX" }, { - "codePostal": "89450", - "codeCommune": "89248", - "libelleAcheminement": "MENADES", - "nomCommune": "MENADES" + "codePostal": "91580", + "codeCommune": "91602", + "libelleAcheminement": "SOUZY LA BRICHE", + "nomCommune": "SOUZY LA BRICHE" }, { - "codePostal": "95710", - "codeCommune": "95101", - "libelleAcheminement": "BRAY ET LU", - "nomCommune": "BRAY ET LU" + "codePostal": "79400", + "codeCommune": "79024", + "libelleAcheminement": "AZAY LE BRULE", + "nomCommune": "AZAY LE BRULE" }, { - "codePostal": "81140", - "codeCommune": "81217", - "libelleAcheminement": "PUYCELSI", - "nomCommune": "PUYCELSI" + "codePostal": "91310", + "codeCommune": "91425", + "libelleAcheminement": "MONTLHERY", + "nomCommune": "MONTLHERY" }, { - "codePostal": "73400", - "codeCommune": "73303", - "libelleAcheminement": "UGINE", - "nomCommune": "UGINE" + "codePostal": "76270", + "codeCommune": "76620", + "libelleAcheminement": "ST MARTIN L HORTIER", + "nomCommune": "ST MARTIN L HORTIER" }, { - "codePostal": "89210", - "codeCommune": "89249", - "libelleAcheminement": "MERCY", - "nomCommune": "MERCY" + "codePostal": "91740", + "codeCommune": "91613", + "libelleAcheminement": "CONGERVILLE THIONVILLE", + "nomCommune": "CONGERVILLE THIONVILLE" }, { - "codePostal": "95640", - "codeCommune": "95102", - "libelleAcheminement": "BREANCON", - "nomCommune": "BREANCON" + "codePostal": "79130", + "codeCommune": "79025", + "libelleAcheminement": "AZAY SUR THOUET", + "nomCommune": "AZAY SUR THOUET" }, { - "codePostal": "81700", - "codeCommune": "81219", - "libelleAcheminement": "PUYLAURENS", - "nomCommune": "PUYLAURENS" + "codePostal": "91250", + "codeCommune": "91435", + "libelleAcheminement": "MORSANG SUR SEINE", + "nomCommune": "MORSANG SUR SEINE" }, { - "codePostal": "73150", - "codeCommune": "73304", - "libelleAcheminement": "VAL D ISERE", - "nomCommune": "VAL D ISERE" + "codePostal": "76400", + "codeCommune": "76670", + "libelleAcheminement": "SENNEVILLE SUR FECAMP", + "nomCommune": "SENNEVILLE SUR FECAMP" }, { - "codePostal": "89140", - "codeCommune": "89255", - "libelleAcheminement": "MICHERY", - "nomCommune": "MICHERY" + "codePostal": "91480", + "codeCommune": "91631", + "libelleAcheminement": "VARENNES JARCY", + "nomCommune": "VARENNES JARCY" }, { - "codePostal": "95820", - "codeCommune": "95116", - "libelleAcheminement": "BRUYERES SUR OISE", - "nomCommune": "BRUYERES SUR OISE" + "codePostal": "79370", + "codeCommune": "79030", + "libelleAcheminement": "BEAUSSAIS VITRE", + "nomCommune": "BEAUSSAIS VITRE" }, { - "codePostal": "81800", - "codeCommune": "81220", - "libelleAcheminement": "RABASTENS", - "nomCommune": "RABASTENS" + "codePostal": "91540", + "codeCommune": "91468", + "libelleAcheminement": "ORMOY", + "nomCommune": "ORMOY" }, { - "codePostal": "73450", - "codeCommune": "73306", - "libelleAcheminement": "VALLOIRE", - "nomCommune": "VALLOIRE" + "codePostal": "76116", + "codeCommune": "76673", + "libelleAcheminement": "SERVAVILLE SALMONVILLE", + "nomCommune": "SERVAVILLE SALMONVILLE" }, { - "codePostal": "89190", - "codeCommune": "89261", - "libelleAcheminement": "MOLINONS", - "nomCommune": "MOLINONS" + "codePostal": "91820", + "codeCommune": "91639", + "libelleAcheminement": "VAYRES SUR ESSONNE", + "nomCommune": "VAYRES SUR ESSONNE" }, { - "codePostal": "95770", - "codeCommune": "95119", - "libelleAcheminement": "BUHY", - "nomCommune": "BUHY" + "codePostal": "79160", + "codeCommune": "79032", + "libelleAcheminement": "BECELEUF", + "nomCommune": "BECELEUF" }, { - "codePostal": "81120", - "codeCommune": "81222", - "libelleAcheminement": "REALMONT", - "nomCommune": "REALMONT" + "codePostal": "91150", + "codeCommune": "91469", + "libelleAcheminement": "ORMOY LA RIVIERE", + "nomCommune": "ORMOY LA RIVIERE" }, { - "codePostal": "73450", - "codeCommune": "73307", - "libelleAcheminement": "VALMEINIER", - "nomCommune": "VALMEINIER" + "codePostal": "76690", + "codeCommune": "76675", + "libelleAcheminement": "SIERVILLE", + "nomCommune": "SIERVILLE" }, { - "codePostal": "89470", - "codeCommune": "89263", - "libelleAcheminement": "MONETEAU", - "nomCommune": "MONETEAU" + "codePostal": "91890", + "codeCommune": "91654", + "libelleAcheminement": "VIDELLES", + "nomCommune": "VIDELLES" }, { - "codePostal": "95750", - "codeCommune": "95142", - "libelleAcheminement": "CHARS", - "nomCommune": "CHARS" + "codePostal": "79000", + "codeCommune": "79034", + "libelleAcheminement": "BESSINES", + "nomCommune": "BESSINES" }, { - "codePostal": "81240", - "codeCommune": "81223", - "libelleAcheminement": "LE RIALET", - "nomCommune": "LE RIALET" + "codePostal": "91400", + "codeCommune": "91471", + "libelleAcheminement": "ORSAY", + "nomCommune": "ORSAY" }, { - "codePostal": "73230", - "codeCommune": "73310", - "libelleAcheminement": "VEREL PRAGONDRAN", - "nomCommune": "VEREL PRAGONDRAN" + "codePostal": "76560", + "codeCommune": "76679", + "libelleAcheminement": "SOMMESNIL", + "nomCommune": "SOMMESNIL" }, { - "codePostal": "89420", - "codeCommune": "89267", - "libelleAcheminement": "MONTREAL", - "nomCommune": "MONTREAL" + "codePostal": "91620", + "codeCommune": "91665", + "libelleAcheminement": "LA VILLE DU BOIS", + "nomCommune": "LA VILLE DU BOIS" }, { - "codePostal": "95190", - "codeCommune": "95144", - "libelleAcheminement": "CHATENAY EN FRANCE", - "nomCommune": "CHATENAY EN FRANCE" + "codePostal": "79260", + "codeCommune": "79048", + "libelleAcheminement": "LA CRECHE", + "nomCommune": "LA CRECHE" }, { - "codePostal": "81800", - "codeCommune": "81228", - "libelleAcheminement": "ROQUEMAURE", - "nomCommune": "ROQUEMAURE" + "codePostal": "91120", + "codeCommune": "91477", + "libelleAcheminement": "PALAISEAU", + "nomCommune": "PALAISEAU" }, { - "codePostal": "73170", - "codeCommune": "73313", - "libelleAcheminement": "VERTHEMEX", - "nomCommune": "VERTHEMEX" + "codePostal": "76540", + "codeCommune": "76686", + "libelleAcheminement": "THEUVILLE AUX MAILLOTS", + "nomCommune": "THEUVILLE AUX MAILLOTS" }, { - "codePostal": "89310", - "codeCommune": "89271", - "libelleAcheminement": "MOULINS EN TONNERROIS", - "nomCommune": "MOULINS EN TONNERROIS" + "codePostal": "92320", + "codeCommune": "92020", + "libelleAcheminement": "CHATILLON", + "nomCommune": "CHATILLON" }, { - "codePostal": "95420", - "codeCommune": "95166", - "libelleAcheminement": "CLERY EN VEXIN", - "nomCommune": "CLERY EN VEXIN" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "81150", - "codeCommune": "81232", - "libelleAcheminement": "ROUFFIAC", - "nomCommune": "ROUFFIAC" + "codePostal": "91740", + "codeCommune": "91511", + "libelleAcheminement": "PUSSAY", + "nomCommune": "PUSSAY" }, { - "codePostal": "73300", - "codeCommune": "73318", - "libelleAcheminement": "VILLAREMBERT", - "nomCommune": "VILLAREMBERT" + "codePostal": "76540", + "codeCommune": "76689", + "libelleAcheminement": "THIETREVILLE", + "nomCommune": "THIETREVILLE" }, { - "codePostal": "89400", - "codeCommune": "89282", - "libelleAcheminement": "ORMOY", - "nomCommune": "ORMOY" + "codePostal": "92400", + "codeCommune": "92026", + "libelleAcheminement": "COURBEVOIE", + "nomCommune": "COURBEVOIE" }, { - "codePostal": "95380", - "codeCommune": "95212", - "libelleAcheminement": "EPIAIS LES LOUVRES", - "nomCommune": "EPIAIS LES LOUVRES" + "codePostal": "79170", + "codeCommune": "79057", + "libelleAcheminement": "BRIOUX SUR BOUTONNE", + "nomCommune": "BRIOUX SUR BOUTONNE" }, { - "codePostal": "81120", - "codeCommune": "81233", - "libelleAcheminement": "TERRE DE BANCALIE", - "nomCommune": "TERRE DE BANCALIE" + "codePostal": "91400", + "codeCommune": "91534", + "libelleAcheminement": "SACLAY", + "nomCommune": "SACLAY" }, { - "codePostal": "73110", - "codeCommune": "73324", - "libelleAcheminement": "VILLAROUX", - "nomCommune": "VILLAROUX" + "codePostal": "76450", + "codeCommune": "76692", + "libelleAcheminement": "THIOUVILLE", + "nomCommune": "THIOUVILLE" }, { - "codePostal": "89390", - "codeCommune": "89296", - "libelleAcheminement": "PERRIGNY SUR ARMANCON", - "nomCommune": "PERRIGNY SUR ARMANCON" + "codePostal": "92260", + "codeCommune": "92032", + "libelleAcheminement": "FONTENAY AUX ROSES", + "nomCommune": "FONTENAY AUX ROSES" }, { - "codePostal": "95610", - "codeCommune": "95218", - "libelleAcheminement": "ERAGNY SUR OISE", - "nomCommune": "ERAGNY" + "codePostal": "79370", + "codeCommune": "79061", + "libelleAcheminement": "CELLES SUR BELLE", + "nomCommune": "CELLES SUR BELLE" }, { - "codePostal": "81120", - "codeCommune": "81233", - "libelleAcheminement": "TERRE DE BANCALIE", - "nomCommune": "TERRE DE BANCALIE" + "codePostal": "91190", + "codeCommune": "91538", + "libelleAcheminement": "ST AUBIN", + "nomCommune": "ST AUBIN" }, { - "codePostal": "73160", - "codeCommune": "73326", - "libelleAcheminement": "VIMINES", - "nomCommune": "VIMINES" + "codePostal": "76410", + "codeCommune": "76705", + "libelleAcheminement": "TOURVILLE LA RIVIERE", + "nomCommune": "TOURVILLE LA RIVIERE" }, { - "codePostal": "89700", - "codeCommune": "89323", - "libelleAcheminement": "ROFFEY", - "nomCommune": "ROFFEY" + "codePostal": "92250", + "codeCommune": "92035", + "libelleAcheminement": "LA GARENNE COLOMBES", + "nomCommune": "LA GARENNE COLOMBES" }, { - "codePostal": "95470", - "codeCommune": "95250", - "libelleAcheminement": "FOSSES", - "nomCommune": "FOSSES" + "codePostal": "79370", + "codeCommune": "79061", + "libelleAcheminement": "CELLES SUR BELLE", + "nomCommune": "CELLES SUR BELLE" }, { - "codePostal": "81290", - "codeCommune": "81235", - "libelleAcheminement": "ST AFFRIQUE LES MONTAGNES", - "nomCommune": "ST AFFRIQUE LES MONTAGNES" + "codePostal": "91690", + "codeCommune": "91544", + "libelleAcheminement": "ST CYR LA RIVIERE", + "nomCommune": "ST CYR LA RIVIERE" }, { - "codePostal": "74540", - "codeCommune": "74002", - "libelleAcheminement": "ALBY SUR CHERAN", - "nomCommune": "ALBY SUR CHERAN" + "codePostal": "76400", + "codeCommune": "76706", + "libelleAcheminement": "TOURVILLE LES IFS", + "nomCommune": "TOURVILLE LES IFS" }, { - "codePostal": "89110", - "codeCommune": "89334", - "libelleAcheminement": "LE VAL D OCRE", - "nomCommune": "LE VAL D OCRE" + "codePostal": "92000", + "codeCommune": "92050", + "libelleAcheminement": "NANTERRE", + "nomCommune": "NANTERRE" }, { - "codePostal": "95640", - "codeCommune": "95298", - "libelleAcheminement": "HARAVILLIERS", - "nomCommune": "HARAVILLIERS" + "codePostal": "79140", + "codeCommune": "79062", + "libelleAcheminement": "CERIZAY", + "nomCommune": "CERIZAY" }, { - "codePostal": "81170", - "codeCommune": "81262", - "libelleAcheminement": "ST MARCEL CAMPES", - "nomCommune": "ST MARCEL CAMPES" + "codePostal": "91780", + "codeCommune": "91556", + "libelleAcheminement": "ST HILAIRE", + "nomCommune": "ST HILAIRE" }, { - "codePostal": "74540", - "codeCommune": "74004", - "libelleAcheminement": "ALLEVES", - "nomCommune": "ALLEVES" + "codePostal": "76940", + "codeCommune": "76727", + "libelleAcheminement": "VATTEVILLE LA RUE", + "nomCommune": "VATTEVILLE LA RUE" }, { - "codePostal": "89100", - "codeCommune": "89338", - "libelleAcheminement": "ST CLEMENT", - "nomCommune": "ST CLEMENT" + "codePostal": "92800", + "codeCommune": "92062", + "libelleAcheminement": "PUTEAUX", + "nomCommune": "PUTEAUX" }, { - "codePostal": "95780", - "codeCommune": "95301", - "libelleAcheminement": "HAUTE ISLE", - "nomCommune": "HAUTE ISLE" + "codePostal": "79220", + "codeCommune": "79066", + "libelleAcheminement": "CHAMPDENIERS", + "nomCommune": "CHAMPDENIERS" }, { - "codePostal": "81170", - "codeCommune": "81263", - "libelleAcheminement": "ST MARTIN LAGUEPIE", - "nomCommune": "ST MARTIN LAGUEPIE" + "codePostal": "91840", + "codeCommune": "91599", + "libelleAcheminement": "SOISY SUR ECOLE", + "nomCommune": "SOISY SUR ECOLE" }, { - "codePostal": "74200", - "codeCommune": "74005", - "libelleAcheminement": "ALLINGES", - "nomCommune": "ALLINGES" + "codePostal": "76110", + "codeCommune": "76747", + "libelleAcheminement": "VIRVILLE", + "nomCommune": "VIRVILLE" }, { - "codePostal": "89800", - "codeCommune": "89341", - "libelleAcheminement": "ST CYR LES COLONS", - "nomCommune": "ST CYR LES COLONS" + "codePostal": "92210", + "codeCommune": "92064", + "libelleAcheminement": "ST CLOUD", + "nomCommune": "ST CLOUD" }, { - "codePostal": "95280", - "codeCommune": "95323", - "libelleAcheminement": "JOUY LE MOUTIER", - "nomCommune": "JOUY LE MOUTIER" + "codePostal": "79220", + "codeCommune": "79070", + "libelleAcheminement": "LA CHAPELLE BATON", + "nomCommune": "LA CHAPELLE BATON" }, { - "codePostal": "81220", - "codeCommune": "81266", - "libelleAcheminement": "ST PAUL CAP DE JOUX", - "nomCommune": "ST PAUL CAP DE JOUX" + "codePostal": "91740", + "codeCommune": "91613", + "libelleAcheminement": "CONGERVILLE THIONVILLE", + "nomCommune": "CONGERVILLE THIONVILLE" }, { - "codePostal": "74600", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "76480", + "codeCommune": "76750", + "libelleAcheminement": "YAINVILLE", + "nomCommune": "YAINVILLE" }, { - "codePostal": "89420", - "codeCommune": "89351", - "libelleAcheminement": "STE MAGNANCE", - "nomCommune": "STE MAGNANCE" + "codePostal": "93460", + "codeCommune": "93033", + "libelleAcheminement": "GOURNAY SUR MARNE", + "nomCommune": "GOURNAY SUR MARNE" }, { - "codePostal": "95270", - "codeCommune": "95331", - "libelleAcheminement": "LASSY", - "nomCommune": "LASSY" + "codePostal": "79430", + "codeCommune": "79076", + "libelleAcheminement": "LA CHAPELLE ST LAURENT", + "nomCommune": "LA CHAPELLE ST LAURENT" }, { - "codePostal": "81700", - "codeCommune": "81270", - "libelleAcheminement": "ST SERNIN LES LAVAUR", - "nomCommune": "ST SERNIN LES LAVAUR" + "codePostal": "91720", + "codeCommune": "91629", + "libelleAcheminement": "VALPUISEAUX", + "nomCommune": "VALPUISEAUX" }, { - "codePostal": "74940", - "codeCommune": "74010", - "libelleAcheminement": "ANNECY", - "nomCommune": "ANNECY" + "codePostal": "76560", + "codeCommune": "76757", + "libelleAcheminement": "YVECRIQUE", + "nomCommune": "YVECRIQUE" }, { - "codePostal": "89700", - "codeCommune": "89355", - "libelleAcheminement": "ST MARTIN SUR ARMANCON", - "nomCommune": "ST MARTIN SUR ARMANCON" + "codePostal": "93190", + "codeCommune": "93046", + "libelleAcheminement": "LIVRY GARGAN", + "nomCommune": "LIVRY GARGAN" }, { - "codePostal": "95450", - "codeCommune": "95348", - "libelleAcheminement": "LONGUESSE", - "nomCommune": "LONGUESSE" + "codePostal": "79130", + "codeCommune": "79077", + "libelleAcheminement": "BEUGNON THIREUIL", + "nomCommune": "BEUGNON THIREUIL" }, { - "codePostal": "81990", - "codeCommune": "81274", - "libelleAcheminement": "SALIES", - "nomCommune": "SALIES" + "codePostal": "91370", + "codeCommune": "91645", + "libelleAcheminement": "VERRIERES LE BUISSON", + "nomCommune": "VERRIERES LE BUISSON" }, { - "codePostal": "74930", - "codeCommune": "74015", - "libelleAcheminement": "ARBUSIGNY", - "nomCommune": "ARBUSIGNY" + "codePostal": "76190", + "codeCommune": "76758", + "libelleAcheminement": "YVETOT", + "nomCommune": "YVETOT" }, { - "codePostal": "89520", - "codeCommune": "89368", - "libelleAcheminement": "ST SAUVEUR EN PUISAYE", - "nomCommune": "ST SAUVEUR EN PUISAYE" + "codePostal": "93430", + "codeCommune": "93079", + "libelleAcheminement": "VILLETANEUSE", + "nomCommune": "VILLETANEUSE" }, { - "codePostal": "95630", - "codeCommune": "95392", - "libelleAcheminement": "MERIEL", - "nomCommune": "MERIEL" + "codePostal": "79160", + "codeCommune": "79077", + "libelleAcheminement": "BEUGNON THIREUIL", + "nomCommune": "BEUGNON THIREUIL" }, { - "codePostal": "81630", - "codeCommune": "81276", - "libelleAcheminement": "SALVAGNAC", - "nomCommune": "SALVAGNAC" + "codePostal": "91710", + "codeCommune": "91649", + "libelleAcheminement": "VERT LE PETIT", + "nomCommune": "VERT LE PETIT" }, { - "codePostal": "74800", - "codeCommune": "74018", - "libelleAcheminement": "ARENTHON", - "nomCommune": "ARENTHON" + "codePostal": "76530", + "codeCommune": "76759", + "libelleAcheminement": "YVILLE SUR SEINE", + "nomCommune": "YVILLE SUR SEINE" }, { - "codePostal": "89140", - "codeCommune": "89369", - "libelleAcheminement": "ST SEROTIN", - "nomCommune": "ST SEROTIN" + "codePostal": "94480", + "codeCommune": "94001", + "libelleAcheminement": "ABLON SUR SEINE", + "nomCommune": "ABLON SUR SEINE" }, { - "codePostal": "95570", - "codeCommune": "95409", - "libelleAcheminement": "MOISSELLES", - "nomCommune": "MOISSELLES" + "codePostal": "79360", + "codeCommune": "79078", + "libelleAcheminement": "PLAINE D ARGENSON", + "nomCommune": "PLAINE D ARGENSON" }, { - "codePostal": "81570", - "codeCommune": "81281", - "libelleAcheminement": "SEMALENS", - "nomCommune": "SEMALENS" + "codePostal": "91100", + "codeCommune": "91659", + "libelleAcheminement": "VILLABE", + "nomCommune": "VILLABE" }, { - "codePostal": "74380", - "codeCommune": "74021", - "libelleAcheminement": "ARTHAZ PONT NOTRE DAME", - "nomCommune": "ARTHAZ PONT NOTRE DAME" + "codePostal": "77120", + "codeCommune": "77002", + "libelleAcheminement": "AMILLIS", + "nomCommune": "AMILLIS" }, { - "codePostal": "89310", - "codeCommune": "89371", - "libelleAcheminement": "STE VERTU", - "nomCommune": "STE VERTU" + "codePostal": "94120", + "codeCommune": "94033", + "libelleAcheminement": "FONTENAY SOUS BOIS", + "nomCommune": "FONTENAY SOUS BOIS" }, { - "codePostal": "95770", - "codeCommune": "95429", - "libelleAcheminement": "MONTREUIL SUR EPTE", - "nomCommune": "MONTREUIL SUR EPTE" + "codePostal": "79700", + "codeCommune": "79079", + "libelleAcheminement": "MAULEON", + "nomCommune": "MAULEON" }, { - "codePostal": "81350", - "codeCommune": "81285", - "libelleAcheminement": "SERENAC", - "nomCommune": "SERENAC" + "codePostal": "91140", + "codeCommune": "91666", + "libelleAcheminement": "VILLEJUST", + "nomCommune": "VILLEJUST" }, { - "codePostal": "74130", - "codeCommune": "74024", - "libelleAcheminement": "AYSE", - "nomCommune": "AYSE" + "codePostal": "77760", + "codeCommune": "77003", + "libelleAcheminement": "AMPONVILLE", + "nomCommune": "AMPONVILLE" }, { - "codePostal": "89250", - "codeCommune": "89382", - "libelleAcheminement": "SEIGNELAY", - "nomCommune": "SEIGNELAY" + "codePostal": "94490", + "codeCommune": "94055", + "libelleAcheminement": "ORMESSON SUR MARNE", + "nomCommune": "ORMESSON SUR MARNE" }, { - "codePostal": "95560", - "codeCommune": "95430", - "libelleAcheminement": "MONTSOULT", - "nomCommune": "MONTSOULT" + "codePostal": "79700", + "codeCommune": "79079", + "libelleAcheminement": "MAULEON", + "nomCommune": "MAULEON" }, { - "codePostal": "81220", - "codeCommune": "81286", - "libelleAcheminement": "SERVIES", - "nomCommune": "SERVIES" + "codePostal": "91360", + "codeCommune": "91667", + "libelleAcheminement": "VILLEMOISSON SUR ORGE", + "nomCommune": "VILLEMOISSON SUR ORGE" }, { - "codePostal": "74160", - "codeCommune": "74031", - "libelleAcheminement": "BEAUMONT", - "nomCommune": "BEAUMONT" + "codePostal": "77910", + "codeCommune": "77023", + "libelleAcheminement": "BARCY", + "nomCommune": "BARCY" }, { - "codePostal": "89710", - "codeCommune": "89384", - "libelleAcheminement": "SENAN", - "nomCommune": "SENAN" + "codePostal": "94520", + "codeCommune": "94056", + "libelleAcheminement": "PERIGNY SUR YERRES", + "nomCommune": "PERIGNY" }, { - "codePostal": "95590", - "codeCommune": "95452", - "libelleAcheminement": "NOINTEL", - "nomCommune": "NOINTEL" + "codePostal": "79110", + "codeCommune": "79083", + "libelleAcheminement": "CHEF BOUTONNE", + "nomCommune": "CHEF BOUTONNE" }, { - "codePostal": "81190", - "codeCommune": "81292", - "libelleAcheminement": "TANUS", - "nomCommune": "TANUS" + "codePostal": "92230", + "codeCommune": "92036", + "libelleAcheminement": "GENNEVILLIERS", + "nomCommune": "GENNEVILLIERS" }, { - "codePostal": "74150", - "codeCommune": "74035", - "libelleAcheminement": "BLOYE", - "nomCommune": "BLOYE" + "codePostal": "77750", + "codeCommune": "77024", + "libelleAcheminement": "BASSEVELLE", + "nomCommune": "BASSEVELLE" }, { - "codePostal": "89160", - "codeCommune": "89385", - "libelleAcheminement": "SENNEVOY LE BAS", - "nomCommune": "SENNEVOY LE BAS" + "codePostal": "94100", + "codeCommune": "94068", + "libelleAcheminement": "ST MAUR DES FOSSES", + "nomCommune": "ST MAUR DES FOSSES" }, { - "codePostal": "95450", - "codeCommune": "95483", - "libelleAcheminement": "LE PERCHAY", - "nomCommune": "LE PERCHAY" + "codePostal": "79170", + "codeCommune": "79085", + "libelleAcheminement": "CHERIGNE", + "nomCommune": "CHERIGNE" }, { - "codePostal": "81220", - "codeCommune": "81299", - "libelleAcheminement": "TEYSSODE", - "nomCommune": "TEYSSODE" + "codePostal": "92430", + "codeCommune": "92047", + "libelleAcheminement": "MARNES LA COQUETTE", + "nomCommune": "MARNES LA COQUETTE" }, { - "codePostal": "74290", - "codeCommune": "74036", - "libelleAcheminement": "BLUFFY", - "nomCommune": "BLUFFY" + "codePostal": "77390", + "codeCommune": "77029", + "libelleAcheminement": "BEAUVOIR", + "nomCommune": "BEAUVOIR" }, { - "codePostal": "89140", - "codeCommune": "89390", - "libelleAcheminement": "SERBONNES", - "nomCommune": "SERBONNES" + "codePostal": "94410", + "codeCommune": "94069", + "libelleAcheminement": "ST MAURICE", + "nomCommune": "ST MAURICE" }, { - "codePostal": "95350", - "codeCommune": "95489", - "libelleAcheminement": "PISCOP", - "nomCommune": "PISCOP" + "codePostal": "79600", + "codeCommune": "79089", + "libelleAcheminement": "LE CHILLOU", + "nomCommune": "LE CHILLOU" }, { - "codePostal": "81170", - "codeCommune": "81300", - "libelleAcheminement": "TONNAC", - "nomCommune": "TONNAC" + "codePostal": "92310", + "codeCommune": "92072", + "libelleAcheminement": "SEVRES", + "nomCommune": "SEVRES" }, { - "codePostal": "74360", - "codeCommune": "74041", - "libelleAcheminement": "BONNEVAUX", - "nomCommune": "BONNEVAUX" + "codePostal": "77320", + "codeCommune": "77032", + "libelleAcheminement": "BETON BAZOCHES", + "nomCommune": "BETON BAZOCHES" }, { - "codePostal": "89140", - "codeCommune": "89391", - "libelleAcheminement": "SERGINES", - "nomCommune": "SERGINES" + "codePostal": "94460", + "codeCommune": "94074", + "libelleAcheminement": "VALENTON", + "nomCommune": "VALENTON" }, { - "codePostal": "95000", - "codeCommune": "95500", - "libelleAcheminement": "PONTOISE", - "nomCommune": "PONTOISE" + "codePostal": "79170", + "codeCommune": "79090", + "libelleAcheminement": "CHIZE", + "nomCommune": "CHIZE" }, { - "codePostal": "81190", - "codeCommune": "81302", - "libelleAcheminement": "TREBAN", - "nomCommune": "TREBAN" + "codePostal": "92170", + "codeCommune": "92075", + "libelleAcheminement": "VANVES", + "nomCommune": "VANVES" }, { - "codePostal": "74230", - "codeCommune": "74045", - "libelleAcheminement": "LE BOUCHET MONT CHARVIN", - "nomCommune": "LE BOUCHET" + "codePostal": "77720", + "codeCommune": "77044", + "libelleAcheminement": "BOMBON", + "nomCommune": "BOMBON" }, { - "codePostal": "89270", - "codeCommune": "89394", - "libelleAcheminement": "SERY", - "nomCommune": "SERY" + "codePostal": "94460", + "codeCommune": "94074", + "libelleAcheminement": "VALENTON", + "nomCommune": "VALENTON" }, { - "codePostal": "95780", - "codeCommune": "95523", - "libelleAcheminement": "LA ROCHE GUYON", - "nomCommune": "LA ROCHE GUYON" + "codePostal": "79350", + "codeCommune": "79094", + "libelleAcheminement": "CLESSE", + "nomCommune": "CLESSE" }, { - "codePostal": "81440", - "codeCommune": "81311", - "libelleAcheminement": "VENES", - "nomCommune": "VENES" + "codePostal": "93300", + "codeCommune": "93001", + "libelleAcheminement": "AUBERVILLIERS", + "nomCommune": "AUBERVILLIERS" }, { - "codePostal": "74890", - "codeCommune": "74048", - "libelleAcheminement": "BRENTHONNE", - "nomCommune": "BRENTHONNE" + "codePostal": "77470", + "codeCommune": "77049", + "libelleAcheminement": "BOUTIGNY", + "nomCommune": "BOUTIGNY" }, { - "codePostal": "89430", - "codeCommune": "89407", - "libelleAcheminement": "TANLAY", - "nomCommune": "TANLAY" + "codePostal": "94440", + "codeCommune": "94075", + "libelleAcheminement": "VILLECRESNES", + "nomCommune": "VILLECRESNES" }, { - "codePostal": "95450", - "codeCommune": "95535", - "libelleAcheminement": "SAGY", - "nomCommune": "SAGY" + "codePostal": "79140", + "codeCommune": "79096", + "libelleAcheminement": "COMBRAND", + "nomCommune": "COMBRAND" }, { - "codePostal": "81110", - "codeCommune": "81312", - "libelleAcheminement": "VERDALLE", - "nomCommune": "VERDALLE" + "codePostal": "93170", + "codeCommune": "93006", + "libelleAcheminement": "BAGNOLET", + "nomCommune": "BAGNOLET" }, { - "codePostal": "74420", - "codeCommune": "74050", - "libelleAcheminement": "BURDIGNIN", - "nomCommune": "BURDIGNIN" + "codePostal": "77480", + "codeCommune": "77051", + "libelleAcheminement": "BRAY SUR SEINE", + "nomCommune": "BRAY SUR SEINE" }, { - "codePostal": "89430", - "codeCommune": "89407", - "libelleAcheminement": "TANLAY", - "nomCommune": "TANLAY" + "codePostal": "94190", + "codeCommune": "94078", + "libelleAcheminement": "VILLENEUVE ST GEORGES", + "nomCommune": "VILLENEUVE ST GEORGES" }, { - "codePostal": "95770", - "codeCommune": "95541", - "libelleAcheminement": "ST CLAIR SUR EPTE", - "nomCommune": "ST CLAIR SUR EPTE" + "codePostal": "79330", + "codeCommune": "79102", + "libelleAcheminement": "COULONGES THOUARSAIS", + "nomCommune": "COULONGES THOUARSAIS" }, { - "codePostal": "81240", - "codeCommune": "81321", - "libelleAcheminement": "LE VINTROU", - "nomCommune": "LE VINTROU" + "codePostal": "93000", + "codeCommune": "93008", + "libelleAcheminement": "BOBIGNY", + "nomCommune": "BOBIGNY" }, { - "codePostal": "74540", - "codeCommune": "74054", - "libelleAcheminement": "CHAINAZ LES FRASSES", - "nomCommune": "CHAINAZ LES FRASSES" + "codePostal": "77750", + "codeCommune": "77057", + "libelleAcheminement": "BUSSIERES", + "nomCommune": "BUSSIERES" }, { - "codePostal": "89190", - "codeCommune": "89411", - "libelleAcheminement": "LES VALLEES DE LA VANNE", - "nomCommune": "LES VALLEES DE LA VANNE" + "codePostal": "95450", + "codeCommune": "95002", + "libelleAcheminement": "ABLEIGES", + "nomCommune": "ABLEIGES" }, { - "codePostal": "95270", - "codeCommune": "95566", - "libelleAcheminement": "ST MARTIN DU TERTRE", - "nomCommune": "ST MARTIN DU TERTRE" + "codePostal": "79400", + "codeCommune": "79114", + "libelleAcheminement": "EXIREUIL", + "nomCommune": "EXIREUIL" }, { - "codePostal": "82120", - "codeCommune": "82004", - "libelleAcheminement": "ASQUES", - "nomCommune": "ASQUES" + "codePostal": "93470", + "codeCommune": "93015", + "libelleAcheminement": "COUBRON", + "nomCommune": "COUBRON" }, { - "codePostal": "74400", - "codeCommune": "74056", - "libelleAcheminement": "CHAMONIX MONT BLANC", - "nomCommune": "CHAMONIX MONT BLANC" + "codePostal": "77460", + "codeCommune": "77071", + "libelleAcheminement": "CHAINTREAUX", + "nomCommune": "CHAINTREAUX" }, { - "codePostal": "89260", - "codeCommune": "89414", - "libelleAcheminement": "THORIGNY SUR OREUSE", - "nomCommune": "THORIGNY SUR OREUSE" + "codePostal": "95510", + "codeCommune": "95012", + "libelleAcheminement": "AMENUCOURT", + "nomCommune": "AMENUCOURT" }, { - "codePostal": "95270", - "codeCommune": "95594", - "libelleAcheminement": "SEUGY", - "nomCommune": "SEUGY" + "codePostal": "79160", + "codeCommune": "79119", + "libelleAcheminement": "FENIOUX", + "nomCommune": "FENIOUX" }, { - "codePostal": "82800", - "codeCommune": "82018", - "libelleAcheminement": "BIOULE", - "nomCommune": "BIOULE" + "codePostal": "93800", + "codeCommune": "93031", + "libelleAcheminement": "EPINAY SUR SEINE", + "nomCommune": "EPINAY SUR SEINE" }, { - "codePostal": "74540", - "codeCommune": "74061", - "libelleAcheminement": "CHAPEIRY", - "nomCommune": "CHAPEIRY" + "codePostal": "77171", + "codeCommune": "77072", + "libelleAcheminement": "CHALAUTRE LA GRANDE", + "nomCommune": "CHALAUTRE LA GRANDE" }, { - "codePostal": "89700", - "codeCommune": "89418", - "libelleAcheminement": "TONNERRE", - "nomCommune": "TONNERRE" + "codePostal": "95420", + "codeCommune": "95024", + "libelleAcheminement": "ARTHIES", + "nomCommune": "ARTHIES" }, { - "codePostal": "95150", - "codeCommune": "95607", - "libelleAcheminement": "TAVERNY", - "nomCommune": "TAVERNY" + "codePostal": "79390", + "codeCommune": "79120", + "libelleAcheminement": "LA FERRIERE EN PARTHENAY", + "nomCommune": "LA FERRIERE EN PARTHENAY" }, { - "codePostal": "82110", - "codeCommune": "82021", - "libelleAcheminement": "BOULOC EN QUERCY", - "nomCommune": "BOULOC EN QUERCY" + "codePostal": "93220", + "codeCommune": "93032", + "libelleAcheminement": "GAGNY", + "nomCommune": "GAGNY" }, { - "codePostal": "74390", - "codeCommune": "74063", - "libelleAcheminement": "CHATEL", - "nomCommune": "CHATEL" + "codePostal": "77160", + "codeCommune": "77073", + "libelleAcheminement": "CHALAUTRE LA PETITE", + "nomCommune": "CHALAUTRE LA PETITE" }, { - "codePostal": "89130", - "codeCommune": "89419", - "libelleAcheminement": "TOUCY", - "nomCommune": "TOUCY" + "codePostal": "95570", + "codeCommune": "95028", + "libelleAcheminement": "ATTAINVILLE", + "nomCommune": "ATTAINVILLE" }, { - "codePostal": "95810", - "codeCommune": "95627", - "libelleAcheminement": "VALLANGOUJARD", - "nomCommune": "VALLANGOUJARD" + "codePostal": "79380", + "codeCommune": "79123", + "libelleAcheminement": "LA FORET SUR SEVRE", + "nomCommune": "LA FORET SUR SEVRE" }, { - "codePostal": "82700", - "codeCommune": "82023", - "libelleAcheminement": "BOURRET", - "nomCommune": "BOURRET" + "codePostal": "93130", + "codeCommune": "93053", + "libelleAcheminement": "NOISY LE SEC", + "nomCommune": "NOISY LE SEC" }, { - "codePostal": "74270", - "codeCommune": "74068", - "libelleAcheminement": "CHENE EN SEMINE", - "nomCommune": "CHENE EN SEMINE" + "codePostal": "77430", + "codeCommune": "77079", + "libelleAcheminement": "CHAMPAGNE SUR SEINE", + "nomCommune": "CHAMPAGNE SUR SEINE" }, { - "codePostal": "89580", - "codeCommune": "89427", - "libelleAcheminement": "VALLAN", - "nomCommune": "VALLAN" + "codePostal": "95560", + "codeCommune": "95042", + "libelleAcheminement": "BAILLET EN FRANCE", + "nomCommune": "BAILLET EN FRANCE" }, { - "codePostal": "95450", - "codeCommune": "95658", - "libelleAcheminement": "VIGNY", - "nomCommune": "VIGNY" + "codePostal": "79380", + "codeCommune": "79123", + "libelleAcheminement": "LA FORET SUR SEVRE", + "nomCommune": "LA FORET SUR SEVRE" }, { - "codePostal": "82170", - "codeCommune": "82028", - "libelleAcheminement": "CANALS", - "nomCommune": "CANALS" + "codePostal": "93310", + "codeCommune": "93061", + "libelleAcheminement": "LE PRE ST GERVAIS", + "nomCommune": "LE PRE ST GERVAIS" }, { - "codePostal": "74500", - "codeCommune": "74073", - "libelleAcheminement": "CHEVENOZ", - "nomCommune": "CHEVENOZ" + "codePostal": "77390", + "codeCommune": "77081", + "libelleAcheminement": "CHAMPDEUIL", + "nomCommune": "CHAMPDEUIL" }, { - "codePostal": "89420", - "codeCommune": "89431", - "libelleAcheminement": "VASSY SOUS PISY", - "nomCommune": "VASSY SOUS PISY" + "codePostal": "95270", + "codeCommune": "95055", + "libelleAcheminement": "BELLEFONTAINE", + "nomCommune": "BELLEFONTAINE" }, { - "codePostal": "95400", - "codeCommune": "95680", - "libelleAcheminement": "VILLIERS LE BEL", - "nomCommune": "VILLIERS LE BEL" + "codePostal": "79340", + "codeCommune": "79124", + "libelleAcheminement": "LES FORGES", + "nomCommune": "LES FORGES" }, { - "codePostal": "82160", - "codeCommune": "82029", - "libelleAcheminement": "CASTANET", - "nomCommune": "CASTANET" + "codePostal": "93270", + "codeCommune": "93071", + "libelleAcheminement": "SEVRAN", + "nomCommune": "SEVRAN" }, { - "codePostal": "74270", - "codeCommune": "74077", - "libelleAcheminement": "CLARAFOND ARCINE", - "nomCommune": "CLARAFOND ARCINE" + "codePostal": "77720", + "codeCommune": "77082", + "libelleAcheminement": "CHAMPEAUX", + "nomCommune": "CHAMPEAUX" }, { - "codePostal": "89320", - "codeCommune": "89434", - "libelleAcheminement": "VAUMORT", - "nomCommune": "VAUMORT" + "codePostal": "95270", + "codeCommune": "95056", + "libelleAcheminement": "BELLOY EN FRANCE", + "nomCommune": "BELLOY EN FRANCE" }, { - "codePostal": "95420", - "codeCommune": "95690", - "libelleAcheminement": "WY DIT JOLI VILLAGE", - "nomCommune": "WY DIT JOLI VILLAGE" + "codePostal": "79330", + "codeCommune": "79134", + "libelleAcheminement": "GLENAY", + "nomCommune": "GLENAY" }, { - "codePostal": "82210", - "codeCommune": "82031", - "libelleAcheminement": "CASTELMAYRAN", - "nomCommune": "CASTELMAYRAN" + "codePostal": "94140", + "codeCommune": "94002", + "libelleAcheminement": "ALFORTVILLE", + "nomCommune": "ALFORTVILLE" }, { - "codePostal": "74220", - "codeCommune": "74080", - "libelleAcheminement": "LA CLUSAZ", - "nomCommune": "LA CLUSAZ" + "codePostal": "77590", + "codeCommune": "77096", + "libelleAcheminement": "CHARTRETTES", + "nomCommune": "CHARTRETTES" }, { - "codePostal": "89290", - "codeCommune": "89438", - "libelleAcheminement": "VENOY", - "nomCommune": "VENOY" + "codePostal": "95650", + "codeCommune": "95078", + "libelleAcheminement": "BOISSY L AILLERIE", + "nomCommune": "BOISSY L AILLERIE" }, { - "codePostal": "97139", - "codeCommune": "97101", - "libelleAcheminement": "LES ABYMES", - "nomCommune": "LES ABYMES" + "codePostal": "79360", + "codeCommune": "79137", + "libelleAcheminement": "GRANZAY GRIPT", + "nomCommune": "GRANZAY GRIPT" }, { - "codePostal": "82400", - "codeCommune": "82032", - "libelleAcheminement": "CASTELSAGRAT", - "nomCommune": "CASTELSAGRAT" + "codePostal": "94470", + "codeCommune": "94004", + "libelleAcheminement": "BOISSY ST LEGER", + "nomCommune": "BOISSY ST LEGER" }, { - "codePostal": "74350", - "codeCommune": "74088", - "libelleAcheminement": "COPPONEX", - "nomCommune": "COPPONEX" + "codePostal": "77390", + "codeCommune": "77107", + "libelleAcheminement": "CHAUMES EN BRIE", + "nomCommune": "CHAUMES EN BRIE" }, { - "codePostal": "89150", - "codeCommune": "89442", - "libelleAcheminement": "VERNOY", - "nomCommune": "VERNOY" + "codePostal": "95000", + "codeCommune": "95127", + "libelleAcheminement": "CERGY", + "nomCommune": "CERGY" }, { - "codePostal": "97100", - "codeCommune": "97105", - "libelleAcheminement": "BASSE TERRE", - "nomCommune": "BASSE TERRE" + "codePostal": "79600", + "codeCommune": "79141", + "libelleAcheminement": "IRAIS", + "nomCommune": "IRAIS" }, { - "codePostal": "82240", - "codeCommune": "82040", - "libelleAcheminement": "CAYRIECH", - "nomCommune": "CAYRIECH" + "codePostal": "94220", + "codeCommune": "94018", + "libelleAcheminement": "CHARENTON LE PONT", + "nomCommune": "CHARENTON LE PONT" }, { - "codePostal": "74700", - "codeCommune": "74089", - "libelleAcheminement": "CORDON", - "nomCommune": "CORDON" + "codePostal": "77320", + "codeCommune": "77113", + "libelleAcheminement": "CHEVRU", + "nomCommune": "CHEVRU" }, { - "codePostal": "89510", - "codeCommune": "89443", - "libelleAcheminement": "VERON", - "nomCommune": "VERON" + "codePostal": "95420", + "codeCommune": "95139", + "libelleAcheminement": "LA CHAPELLE EN VEXIN", + "nomCommune": "LA CHAPELLE EN VEXIN" }, { - "codePostal": "97125", - "codeCommune": "97106", - "libelleAcheminement": "BOUILLANTE", - "nomCommune": "BOUILLANTE" + "codePostal": "79110", + "codeCommune": "79154", + "libelleAcheminement": "LOUBILLE", + "nomCommune": "LOUBILLE" }, { - "codePostal": "82500", - "codeCommune": "82047", - "libelleAcheminement": "CUMONT", - "nomCommune": "CUMONT" + "codePostal": "94550", + "codeCommune": "94021", + "libelleAcheminement": "CHEVILLY LARUE", + "nomCommune": "CHEVILLY LARUE" }, { - "codePostal": "74150", - "codeCommune": "74095", - "libelleAcheminement": "CREMPIGNY BONNEGUETE", - "nomCommune": "CREMPIGNY BONNEGUETE" + "codePostal": "77173", + "codeCommune": "77114", + "libelleAcheminement": "CHEVRY COSSIGNY", + "nomCommune": "CHEVRY COSSIGNY" }, { - "codePostal": "89700", - "codeCommune": "89447", - "libelleAcheminement": "VEZINNES", - "nomCommune": "VEZINNES" + "codePostal": "95750", + "codeCommune": "95142", + "libelleAcheminement": "CHARS", + "nomCommune": "CHARS" }, { - "codePostal": "97130", - "codeCommune": "97107", - "libelleAcheminement": "CAPESTERRE BELLE EAU", - "nomCommune": "CAPESTERRE BELLE EAU" + "codePostal": "79100", + "codeCommune": "79157", + "libelleAcheminement": "LOUZY", + "nomCommune": "LOUZY" }, { - "codePostal": "82700", - "codeCommune": "82052", - "libelleAcheminement": "ESCATALENS", - "nomCommune": "ESCATALENS" + "codePostal": "94600", + "codeCommune": "94022", + "libelleAcheminement": "CHOISY LE ROI", + "nomCommune": "CHOISY LE ROI" }, { - "codePostal": "74350", - "codeCommune": "74096", - "libelleAcheminement": "CRUSEILLES", - "nomCommune": "CRUSEILLES" + "codePostal": "77410", + "codeCommune": "77118", + "libelleAcheminement": "CLAYE SOUILLY", + "nomCommune": "CLAYE SOUILLY" }, { - "codePostal": "89340", - "codeCommune": "89460", - "libelleAcheminement": "VILLENEUVE LA GUYARD", - "nomCommune": "VILLENEUVE LA GUYARD" + "codePostal": "95190", + "codeCommune": "95144", + "libelleAcheminement": "CHATENAY EN FRANCE", + "nomCommune": "CHATENAY EN FRANCE" }, { - "codePostal": "97127", - "codeCommune": "97110", - "libelleAcheminement": "LA DESIRADE", - "nomCommune": "LA DESIRADE" + "codePostal": "79170", + "codeCommune": "79160", + "libelleAcheminement": "LUSSERAY", + "nomCommune": "LUSSERAY" }, { - "codePostal": "82140", - "codeCommune": "82061", - "libelleAcheminement": "FENEYROLS", - "nomCommune": "FENEYROLS" + "codePostal": "94240", + "codeCommune": "94038", + "libelleAcheminement": "L HAY LES ROSES", + "nomCommune": "L HAY LES ROSES" }, { - "codePostal": "74270", - "codeCommune": "74107", - "libelleAcheminement": "DROISY", - "nomCommune": "DROISY" + "codePostal": "77380", + "codeCommune": "77122", + "libelleAcheminement": "COMBS LA VILLE", + "nomCommune": "COMBS LA VILLE" }, { - "codePostal": "89140", - "codeCommune": "89465", - "libelleAcheminement": "VILLEPERROT", - "nomCommune": "VILLEPERROT" + "codePostal": "95420", + "codeCommune": "95166", + "libelleAcheminement": "CLERY EN VEXIN", + "nomCommune": "CLERY EN VEXIN" }, { - "codePostal": "97190", - "codeCommune": "97113", - "libelleAcheminement": "LE GOSIER", - "nomCommune": "LE GOSIER" + "codePostal": "79460", + "codeCommune": "79162", + "libelleAcheminement": "MAGNE", + "nomCommune": "MAGNE" }, { - "codePostal": "82400", - "codeCommune": "82065", - "libelleAcheminement": "GASQUES", - "nomCommune": "GASQUES" + "codePostal": "94200", + "codeCommune": "94041", + "libelleAcheminement": "IVRY SUR SEINE", + "nomCommune": "IVRY SUR SEINE" }, { - "codePostal": "74410", - "codeCommune": "74108", - "libelleAcheminement": "DUINGT", - "nomCommune": "DUINGT" + "codePostal": "77440", + "codeCommune": "77126", + "libelleAcheminement": "CONGIS SUR THEROUANNE", + "nomCommune": "CONGIS SUR THEROUANNE" }, { - "codePostal": "89330", - "codeCommune": "89468", - "libelleAcheminement": "VILLEVALLIER", - "nomCommune": "VILLEVALLIER" + "codePostal": "95330", + "codeCommune": "95199", + "libelleAcheminement": "DOMONT", + "nomCommune": "DOMONT" }, { - "codePostal": "97128", - "codeCommune": "97114", - "libelleAcheminement": "GOYAVE", - "nomCommune": "GOYAVE" + "codePostal": "79500", + "codeCommune": "79164", + "libelleAcheminement": "MAISONNAY", + "nomCommune": "MAISONNAY" }, { - "codePostal": "82500", - "codeCommune": "82068", - "libelleAcheminement": "GIMAT", - "nomCommune": "GIMAT" + "codePostal": "94270", + "codeCommune": "94043", + "libelleAcheminement": "LE KREMLIN BICETRE", + "nomCommune": "LE KREMLIN BICETRE" }, { - "codePostal": "74330", - "codeCommune": "74112", - "libelleAcheminement": "EPAGNY METZ TESSY", - "nomCommune": "EPAGNY METZ TESSY" + "codePostal": "77170", + "codeCommune": "77127", + "libelleAcheminement": "COUBERT", + "nomCommune": "COUBERT" }, { - "codePostal": "89260", - "codeCommune": "89469", - "libelleAcheminement": "PERCENEIGE", - "nomCommune": "PERCENEIGE" + "codePostal": "95460", + "codeCommune": "95229", + "libelleAcheminement": "EZANVILLE", + "nomCommune": "EZANVILLE" }, { - "codePostal": "97120", - "codeCommune": "97124", - "libelleAcheminement": "ST CLAUDE", - "nomCommune": "ST CLAUDE" + "codePostal": "79360", + "codeCommune": "79166", + "libelleAcheminement": "MARIGNY", + "nomCommune": "MARIGNY" }, { - "codePostal": "82170", - "codeCommune": "82075", - "libelleAcheminement": "GRISOLLES", - "nomCommune": "GRISOLLES" + "codePostal": "94450", + "codeCommune": "94044", + "libelleAcheminement": "LIMEIL BREVANNES", + "nomCommune": "LIMEIL BREVANNES" }, { - "codePostal": "74100", - "codeCommune": "74118", - "libelleAcheminement": "ETREMBIERES", - "nomCommune": "ETREMBIERES" + "codePostal": "77390", + "codeCommune": "77138", + "libelleAcheminement": "COURTOMER", + "nomCommune": "COURTOMER" }, { - "codePostal": "89260", - "codeCommune": "89469", - "libelleAcheminement": "PERCENEIGE", - "nomCommune": "PERCENEIGE" + "codePostal": "95830", + "codeCommune": "95254", + "libelleAcheminement": "FREMECOURT", + "nomCommune": "FREMECOURT" }, { - "codePostal": "97118", - "codeCommune": "97125", - "libelleAcheminement": "ST FRANCOIS", - "nomCommune": "ST FRANCOIS" + "codePostal": "79210", + "codeCommune": "79170", + "libelleAcheminement": "MAUZE SUR LE MIGNON", + "nomCommune": "MAUZE SUR LE MIGNON" }, { - "codePostal": "82130", - "codeCommune": "82076", - "libelleAcheminement": "L HONOR DE COS", - "nomCommune": "L HONOR DE COS" + "codePostal": "94880", + "codeCommune": "94053", + "libelleAcheminement": "NOISEAU", + "nomCommune": "NOISEAU" }, { - "codePostal": "74130", - "codeCommune": "74122", - "libelleAcheminement": "FAUCIGNY", - "nomCommune": "FAUCIGNY" + "codePostal": "77154", + "codeCommune": "77140", + "libelleAcheminement": "COUTENCON", + "nomCommune": "COUTENCON" }, { - "codePostal": "89130", - "codeCommune": "89472", - "libelleAcheminement": "VILLIERS ST BENOIT", - "nomCommune": "VILLIERS ST BENOIT" + "codePostal": "95500", + "codeCommune": "95277", + "libelleAcheminement": "GONESSE", + "nomCommune": "GONESSE" }, { - "codePostal": "97134", - "codeCommune": "97126", - "libelleAcheminement": "ST LOUIS", - "nomCommune": "ST LOUIS" + "codePostal": "79500", + "codeCommune": "79174", + "libelleAcheminement": "MELLE", + "nomCommune": "MELLE" }, { - "codePostal": "82100", - "codeCommune": "82080", - "libelleAcheminement": "LABASTIDE DU TEMPLE", - "nomCommune": "LABASTIDE DU TEMPLE" + "codePostal": "94310", + "codeCommune": "94054", + "libelleAcheminement": "ORLY", + "nomCommune": "ORLY" }, { - "codePostal": "74500", - "codeCommune": "74127", - "libelleAcheminement": "FETERNES", - "nomCommune": "FETERNES" + "codePostal": "77124", + "codeCommune": "77143", + "libelleAcheminement": "CREGY LES MEAUX", + "nomCommune": "CREGY LES MEAUX" }, { - "codePostal": "89140", - "codeCommune": "89480", - "libelleAcheminement": "VINNEUF", - "nomCommune": "VINNEUF" + "codePostal": "95410", + "codeCommune": "95288", + "libelleAcheminement": "GROSLAY", + "nomCommune": "GROSLAY" }, { - "codePostal": "97216", - "codeCommune": "97201", - "libelleAcheminement": "L AJOUPA BOUILLON", - "nomCommune": "L AJOUPA BOUILLON" + "codePostal": "79190", + "codeCommune": "79175", + "libelleAcheminement": "MELLERAN", + "nomCommune": "MELLERAN" }, { - "codePostal": "82360", - "codeCommune": "82089", - "libelleAcheminement": "LAMAGISTERE", - "nomCommune": "LAMAGISTERE" + "codePostal": "94320", + "codeCommune": "94073", + "libelleAcheminement": "THIAIS", + "nomCommune": "THIAIS" }, { - "codePostal": "74240", - "codeCommune": "74133", - "libelleAcheminement": "GAILLARD", - "nomCommune": "GAILLARD" + "codePostal": "77183", + "codeCommune": "77146", + "libelleAcheminement": "CROISSY BEAUBOURG", + "nomCommune": "CROISSY BEAUBOURG" }, { - "codePostal": "89700", - "codeCommune": "89482", - "libelleAcheminement": "VIVIERS", - "nomCommune": "VIVIERS" + "codePostal": "95450", + "codeCommune": "95295", + "libelleAcheminement": "GUIRY EN VEXIN", + "nomCommune": "GUIRY EN VEXIN" }, { - "codePostal": "97232", - "codeCommune": "97213", - "libelleAcheminement": "LE LAMENTIN", - "nomCommune": "LE LAMENTIN" + "codePostal": "79320", + "codeCommune": "79179", + "libelleAcheminement": "MONCOUTANT SUR SEVRE", + "nomCommune": "MONCOUTANT SUR SEVRE" }, { - "codePostal": "82500", - "codeCommune": "82091", - "libelleAcheminement": "LAMOTHE CUMONT", - "nomCommune": "LAMOTHE CUMONT" + "codePostal": "94400", + "codeCommune": "94081", + "libelleAcheminement": "VITRY SUR SEINE", + "nomCommune": "VITRY SUR SEINE" }, { - "codePostal": "74210", - "codeCommune": "74147", - "libelleAcheminement": "LATHUILE", - "nomCommune": "LATHUILE" + "codePostal": "77320", + "codeCommune": "77151", + "libelleAcheminement": "DAGNY", + "nomCommune": "DAGNY" }, { - "codePostal": "89700", - "codeCommune": "89486", - "libelleAcheminement": "YROUERRE", - "nomCommune": "YROUERRE" + "codePostal": "95640", + "codeCommune": "95298", + "libelleAcheminement": "HARAVILLIERS", + "nomCommune": "HARAVILLIERS" }, { - "codePostal": "97260", - "codeCommune": "97218", - "libelleAcheminement": "LE MORNE ROUGE", - "nomCommune": "LE MORNE ROUGE" + "codePostal": "79800", + "codeCommune": "79184", + "libelleAcheminement": "LA MOTHE ST HERAY", + "nomCommune": "LA MOTHE ST HERAY" }, { - "codePostal": "82200", - "codeCommune": "82099", - "libelleAcheminement": "LIZAC", - "nomCommune": "LIZAC" + "codePostal": "95100", + "codeCommune": "95018", + "libelleAcheminement": "ARGENTEUIL", + "nomCommune": "ARGENTEUIL" }, { - "codePostal": "74320", - "codeCommune": "74148", - "libelleAcheminement": "LESCHAUX", - "nomCommune": "LESCHAUX" + "codePostal": "77163", + "codeCommune": "77154", + "libelleAcheminement": "DAMMARTIN SUR TIGEAUX", + "nomCommune": "DAMMARTIN SUR TIGEAUX" }, { - "codePostal": "90150", - "codeCommune": "90002", - "libelleAcheminement": "ANGEOT", - "nomCommune": "ANGEOT" + "codePostal": "95420", + "codeCommune": "95309", + "libelleAcheminement": "HODENT", + "nomCommune": "HODENT" }, { - "codePostal": "97250", - "codeCommune": "97225", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "79130", + "codeCommune": "79190", + "libelleAcheminement": "NEUVY BOUIN", + "nomCommune": "NEUVY BOUIN" }, { - "codePostal": "82440", - "codeCommune": "82110", - "libelleAcheminement": "MIRABEL", - "nomCommune": "MIRABEL" + "codePostal": "95450", + "codeCommune": "95040", + "libelleAcheminement": "AVERNES", + "nomCommune": "AVERNES" }, { - "codePostal": "74140", - "codeCommune": "74150", - "libelleAcheminement": "LOISIN", - "nomCommune": "LOISIN" + "codePostal": "77400", + "codeCommune": "77155", + "libelleAcheminement": "DAMPMART", + "nomCommune": "DAMPMART" }, { - "codePostal": "90170", - "codeCommune": "90003", - "libelleAcheminement": "ANJOUTEY", - "nomCommune": "ANJOUTEY" + "codePostal": "95280", + "codeCommune": "95323", + "libelleAcheminement": "JOUY LE MOUTIER", + "nomCommune": "JOUY LE MOUTIER" }, { - "codePostal": "97220", - "codeCommune": "97230", - "libelleAcheminement": "LA TRINITE", - "nomCommune": "LA TRINITE" + "codePostal": "79250", + "codeCommune": "79195", + "libelleAcheminement": "NUEIL LES AUBIERS", + "nomCommune": "NUEIL LES AUBIERS" }, { - "codePostal": "82220", - "codeCommune": "82113", - "libelleAcheminement": "MOLIERES", - "nomCommune": "MOLIERES" + "codePostal": "95340", + "codeCommune": "95058", + "libelleAcheminement": "BERNES SUR OISE", + "nomCommune": "BERNES SUR OISE" }, { - "codePostal": "74380", - "codeCommune": "74153", - "libelleAcheminement": "LUCINGES", - "nomCommune": "LUCINGES" + "codePostal": "77139", + "codeCommune": "77163", + "libelleAcheminement": "DOUY LA RAMEE", + "nomCommune": "DOUY LA RAMEE" }, { - "codePostal": "90800", - "codeCommune": "90007", - "libelleAcheminement": "BANVILLARS", - "nomCommune": "BANVILLARS" + "codePostal": "95270", + "codeCommune": "95352", + "libelleAcheminement": "LUZARCHES", + "nomCommune": "LUZARCHES" }, { - "codePostal": "97226", - "codeCommune": "97233", - "libelleAcheminement": "LE MORNE VERT", - "nomCommune": "LE MORNE VERT" + "codePostal": "79100", + "codeCommune": "79196", + "libelleAcheminement": "PLAINE ET VALLEES", + "nomCommune": "PLAINE ET VALLEES" }, { - "codePostal": "82150", - "codeCommune": "82117", - "libelleAcheminement": "MONTAIGU DE QUERCY", - "nomCommune": "MONTAIGU DE QUERCY" + "codePostal": "95550", + "codeCommune": "95060", + "libelleAcheminement": "BESSANCOURT", + "nomCommune": "BESSANCOURT" }, { - "codePostal": "74200", - "codeCommune": "74157", - "libelleAcheminement": "LYAUD", - "nomCommune": "LYAUD" + "codePostal": "77830", + "codeCommune": "77164", + "libelleAcheminement": "ECHOUBOULAINS", + "nomCommune": "ECHOUBOULAINS" }, { - "codePostal": "90160", - "codeCommune": "90012", - "libelleAcheminement": "BESSONCOURT", - "nomCommune": "BESSONCOURT" + "codePostal": "95560", + "codeCommune": "95353", + "libelleAcheminement": "MAFFLIERS", + "nomCommune": "MAFFLIERS" }, { - "codePostal": "97310", - "codeCommune": "97304", - "libelleAcheminement": "KOUROU", - "nomCommune": "KOUROU" + "codePostal": "79100", + "codeCommune": "79196", + "libelleAcheminement": "PLAINE ET VALLEES", + "nomCommune": "PLAINE ET VALLEES" }, { - "codePostal": "82700", - "codeCommune": "82125", - "libelleAcheminement": "MONTECH", - "nomCommune": "MONTECH" + "codePostal": "95840", + "codeCommune": "95061", + "libelleAcheminement": "BETHEMONT LA FORET", + "nomCommune": "BETHEMONT LA FORET" }, { - "codePostal": "74200", - "codeCommune": "74166", - "libelleAcheminement": "MARIN", - "nomCommune": "MARIN" + "codePostal": "77184", + "codeCommune": "77169", + "libelleAcheminement": "EMERAINVILLE", + "nomCommune": "EMERAINVILLE" }, { - "codePostal": "90100", - "codeCommune": "90014", - "libelleAcheminement": "BORON", - "nomCommune": "BORON" + "codePostal": "95420", + "codeCommune": "95379", + "libelleAcheminement": "MAUDETOUR EN VEXIN", + "nomCommune": "MAUDETOUR EN VEXIN" }, { - "codePostal": "97355", - "codeCommune": "97305", - "libelleAcheminement": "MACOURIA TONATE", - "nomCommune": "MACOURIA" + "codePostal": "79600", + "codeCommune": "79196", + "libelleAcheminement": "PLAINE ET VALLEES", + "nomCommune": "PLAINE ET VALLEES" }, { - "codePostal": "82200", - "codeCommune": "82127", - "libelleAcheminement": "MONTESQUIEU", - "nomCommune": "MONTESQUIEU" + "codePostal": "95500", + "codeCommune": "95088", + "libelleAcheminement": "BONNEUIL EN FRANCE", + "nomCommune": "BONNEUIL EN FRANCE" }, { - "codePostal": "74150", - "codeCommune": "74170", - "libelleAcheminement": "MASSINGY", - "nomCommune": "MASSINGY" + "codePostal": "77157", + "codeCommune": "77174", + "libelleAcheminement": "EVERLY", + "nomCommune": "EVERLY" }, { - "codePostal": "90130", - "codeCommune": "90019", - "libelleAcheminement": "BRETAGNE", - "nomCommune": "BRETAGNE" + "codePostal": "95630", + "codeCommune": "95392", + "libelleAcheminement": "MERIEL", + "nomCommune": "MERIEL" }, { - "codePostal": "97318", - "codeCommune": "97306", - "libelleAcheminement": "MANA", - "nomCommune": "MANA" + "codePostal": "79390", + "codeCommune": "79197", + "libelleAcheminement": "OROUX", + "nomCommune": "OROUX" }, { - "codePostal": "82150", - "codeCommune": "82153", - "libelleAcheminement": "ST AMANS DU PECH", - "nomCommune": "ST AMANS DU PECH" + "codePostal": "95640", + "codeCommune": "95102", + "libelleAcheminement": "BREANCON", + "nomCommune": "BREANCON" }, { - "codePostal": "74560", - "codeCommune": "74193", - "libelleAcheminement": "LA MURAZ", - "nomCommune": "LA MURAZ" + "codePostal": "77166", + "codeCommune": "77175", + "libelleAcheminement": "EVRY GREGY SUR YERRE", + "nomCommune": "EVRY GREGY SUR YERRE" }, { - "codePostal": "90800", - "codeCommune": "90020", - "libelleAcheminement": "BUC", - "nomCommune": "BUC" + "codePostal": "95540", + "codeCommune": "95394", + "libelleAcheminement": "MERY SUR OISE", + "nomCommune": "MERY SUR OISE" }, { - "codePostal": "97360", - "codeCommune": "97306", - "libelleAcheminement": "MANA", - "nomCommune": "MANA" + "codePostal": "79100", + "codeCommune": "79203", + "libelleAcheminement": "PAS DE JEU", + "nomCommune": "PAS DE JEU" }, { - "codePostal": "82140", - "codeCommune": "82155", - "libelleAcheminement": "ST ANTONIN NOBLE VAL", - "nomCommune": "ST ANTONIN NOBLE VAL" + "codePostal": "95420", + "codeCommune": "95141", + "libelleAcheminement": "CHARMONT", + "nomCommune": "CHARMONT" }, { - "codePostal": "74500", - "codeCommune": "74200", - "libelleAcheminement": "NEUVECELLE", - "nomCommune": "NEUVECELLE" + "codePostal": "77590", + "codeCommune": "77188", + "libelleAcheminement": "FONTAINE LE PORT", + "nomCommune": "FONTAINE LE PORT" }, { - "codePostal": "90700", - "codeCommune": "90022", - "libelleAcheminement": "CHATENOIS LES FORGES", - "nomCommune": "CHATENOIS LES FORGES" + "codePostal": "95720", + "codeCommune": "95395", + "libelleAcheminement": "LE MESNIL AUBRY", + "nomCommune": "LE MESNIL AUBRY" }, { - "codePostal": "97352", - "codeCommune": "97310", - "libelleAcheminement": "ROURA", - "nomCommune": "ROURA" + "codePostal": "79200", + "codeCommune": "79208", + "libelleAcheminement": "LA PEYRATTE", + "nomCommune": "LA PEYRATTE" }, { - "codePostal": "82110", - "codeCommune": "82164", - "libelleAcheminement": "STE JULIETTE", - "nomCommune": "STE JULIETTE" + "codePostal": "95510", + "codeCommune": "95157", + "libelleAcheminement": "CHERENCE", + "nomCommune": "CHERENCE" }, { - "codePostal": "74330", - "codeCommune": "74202", - "libelleAcheminement": "NONGLARD", - "nomCommune": "NONGLARD" + "codePostal": "77370", + "codeCommune": "77190", + "libelleAcheminement": "FONTAINS", + "nomCommune": "FONTAINS" }, { - "codePostal": "90330", - "codeCommune": "90023", - "libelleAcheminement": "CHAUX", - "nomCommune": "CHAUX" + "codePostal": "95770", + "codeCommune": "95429", + "libelleAcheminement": "MONTREUIL SUR EPTE", + "nomCommune": "MONTREUIL SUR EPTE" }, { - "codePostal": "97330", - "codeCommune": "97356", - "libelleAcheminement": "CAMOPI", - "nomCommune": "CAMOPI" + "codePostal": "79330", + "codeCommune": "79209", + "libelleAcheminement": "PIERREFITTE", + "nomCommune": "PIERREFITTE" }, { - "codePostal": "82300", - "codeCommune": "82174", - "libelleAcheminement": "ST VINCENT D AUTEJAC", - "nomCommune": "ST VINCENT D AUTEJAC" + "codePostal": "95450", + "codeCommune": "95169", + "libelleAcheminement": "COMMENY", + "nomCommune": "COMMENY" }, { - "codePostal": "74930", - "codeCommune": "74211", - "libelleAcheminement": "PERS JUSSY", - "nomCommune": "PERS JUSSY" + "codePostal": "77165", + "codeCommune": "77193", + "libelleAcheminement": "FORFRY", + "nomCommune": "FORFRY" }, { - "codePostal": "90100", - "codeCommune": "90030", - "libelleAcheminement": "CROIX", - "nomCommune": "CROIX" + "codePostal": "95590", + "codeCommune": "95445", + "libelleAcheminement": "NERVILLE LA FORET", + "nomCommune": "NERVILLE LA FORET" }, { - "codePostal": "97412", - "codeCommune": "97402", - "libelleAcheminement": "BRAS PANON", - "nomCommune": "BRAS PANON" + "codePostal": "79140", + "codeCommune": "79210", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "82110", - "codeCommune": "82177", - "libelleAcheminement": "SAUVETERRE", - "nomCommune": "SAUVETERRE" + "codePostal": "95800", + "codeCommune": "95183", + "libelleAcheminement": "COURDIMANCHE", + "nomCommune": "COURDIMANCHE" }, { - "codePostal": "74160", - "codeCommune": "74216", - "libelleAcheminement": "PRESILLY", - "nomCommune": "PRESILLY" + "codePostal": "77390", + "codeCommune": "77195", + "libelleAcheminement": "FOUJU", + "nomCommune": "FOUJU" }, { - "codePostal": "90100", - "codeCommune": "90033", - "libelleAcheminement": "DELLE", - "nomCommune": "DELLE" + "codePostal": "95300", + "codeCommune": "95500", + "libelleAcheminement": "PONTOISE", + "nomCommune": "PONTOISE" }, { - "codePostal": "97412", - "codeCommune": "97402", - "libelleAcheminement": "BRAS PANON", - "nomCommune": "BRAS PANON" + "codePostal": "79190", + "codeCommune": "79212", + "libelleAcheminement": "PLIBOUX", + "nomCommune": "PLIBOUX" }, { - "codePostal": "82600", - "codeCommune": "82178", - "libelleAcheminement": "SAVENES", - "nomCommune": "SAVENES" + "codePostal": "95600", + "codeCommune": "95203", + "libelleAcheminement": "EAUBONNE", + "nomCommune": "EAUBONNE" }, { - "codePostal": "74500", - "codeCommune": "74218", - "libelleAcheminement": "PUBLIER", - "nomCommune": "PUBLIER" + "codePostal": "77410", + "codeCommune": "77196", + "libelleAcheminement": "FRESNES SUR MARNE", + "nomCommune": "FRESNES SUR MARNE" }, { - "codePostal": "90150", - "codeCommune": "90036", - "libelleAcheminement": "EGUENIGUE", - "nomCommune": "EGUENIGUE" + "codePostal": "95700", + "codeCommune": "95527", + "libelleAcheminement": "ROISSY EN FRANCE", + "nomCommune": "ROISSY EN FRANCE" }, { - "codePostal": "97429", - "codeCommune": "97405", - "libelleAcheminement": "PETITE ILE", - "nomCommune": "PETITE ILE" + "codePostal": "79130", + "codeCommune": "79215", + "libelleAcheminement": "POUGNE HERISSON", + "nomCommune": "POUGNE HERISSON" }, { - "codePostal": "82330", - "codeCommune": "82187", - "libelleAcheminement": "VAREN", - "nomCommune": "VAREN" + "codePostal": "95440", + "codeCommune": "95205", + "libelleAcheminement": "ECOUEN", + "nomCommune": "ECOUEN" }, { - "codePostal": "74500", - "codeCommune": "74218", - "libelleAcheminement": "PUBLIER", - "nomCommune": "PUBLIER" + "codePostal": "77720", + "codeCommune": "77211", + "libelleAcheminement": "GRANDPUITS BAILLY CARROIS", + "nomCommune": "GRANDPUITS BAILLY CARROIS" }, { - "codePostal": "90110", - "codeCommune": "90044", - "libelleAcheminement": "FELON", - "nomCommune": "FELON" + "codePostal": "95200", + "codeCommune": "95585", + "libelleAcheminement": "SARCELLES", + "nomCommune": "SARCELLES" }, { - "codePostal": "97440", - "codeCommune": "97409", - "libelleAcheminement": "ST ANDRE", - "nomCommune": "ST ANDRE" + "codePostal": "79130", + "codeCommune": "79226", + "libelleAcheminement": "LE RETAIL", + "nomCommune": "LE RETAIL" }, { - "codePostal": "82370", - "codeCommune": "82188", - "libelleAcheminement": "VARENNES", - "nomCommune": "VARENNES" + "codePostal": "95300", + "codeCommune": "95211", + "libelleAcheminement": "ENNERY", + "nomCommune": "ENNERY" }, { - "codePostal": "74930", - "codeCommune": "74220", - "libelleAcheminement": "REIGNIER ESERY", - "nomCommune": "REIGNIER ESERY" + "codePostal": "77720", + "codeCommune": "77211", + "libelleAcheminement": "GRANDPUITS BAILLY CARROIS", + "nomCommune": "GRANDPUITS BAILLY CARROIS" }, { - "codePostal": "90150", - "codeCommune": "90050", - "libelleAcheminement": "FRAIS", - "nomCommune": "FRAIS" + "codePostal": "95470", + "codeCommune": "95604", + "libelleAcheminement": "SURVILLIERS", + "nomCommune": "SURVILLIERS" }, { - "codePostal": "97417", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "79300", + "codeCommune": "79238", + "libelleAcheminement": "ST AUBIN DU PLAIN", + "nomCommune": "ST AUBIN DU PLAIN" }, { - "codePostal": "82220", - "codeCommune": "82189", - "libelleAcheminement": "VAZERAC", - "nomCommune": "VAZERAC" + "codePostal": "95270", + "codeCommune": "95214", + "libelleAcheminement": "EPINAY CHAMPLATREUX", + "nomCommune": "EPINAY CHAMPLATREUX" }, { - "codePostal": "74440", - "codeCommune": "74223", - "libelleAcheminement": "LA RIVIERE ENVERSE", - "nomCommune": "LA RIVIERE ENVERSE" + "codePostal": "77220", + "codeCommune": "77215", + "libelleAcheminement": "GRETZ ARMAINVILLIERS", + "nomCommune": "GRETZ ARMAINVILLIERS" }, { - "codePostal": "90300", - "codeCommune": "90057", - "libelleAcheminement": "LACHAPELLE SOUS CHAUX", - "nomCommune": "LACHAPELLE SOUS CHAUX" + "codePostal": "95510", + "codeCommune": "95651", + "libelleAcheminement": "VETHEUIL", + "nomCommune": "VETHEUIL" }, { - "codePostal": "97417", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "79220", + "codeCommune": "79241", + "libelleAcheminement": "ST CHRISTOPHE SUR ROC", + "nomCommune": "ST CHRISTOPHE SUR ROC" }, { - "codePostal": "82600", - "codeCommune": "82190", - "libelleAcheminement": "VERDUN SUR GARONNE", - "nomCommune": "VERDUN SUR GARONNE" + "codePostal": "95140", + "codeCommune": "95268", + "libelleAcheminement": "GARGES LES GONESSE", + "nomCommune": "GARGES LES GONESSE" }, { - "codePostal": "74800", - "codeCommune": "74224", - "libelleAcheminement": "LA ROCHE SUR FORON", - "nomCommune": "LA ROCHE SUR FORON" + "codePostal": "77480", + "codeCommune": "77218", + "libelleAcheminement": "GRISY SUR SEINE", + "nomCommune": "GRISY SUR SEINE" }, { - "codePostal": "90150", - "codeCommune": "90060", - "libelleAcheminement": "LAGRANGE", - "nomCommune": "LAGRANGE" + "codePostal": "95450", + "codeCommune": "95658", + "libelleAcheminement": "VIGNY", + "nomCommune": "VIGNY" }, { - "codePostal": "97480", - "codeCommune": "97412", - "libelleAcheminement": "ST JOSEPH", - "nomCommune": "ST JOSEPH" + "codePostal": "79100", + "codeCommune": "79244", + "libelleAcheminement": "ST CYR LA LANDE", + "nomCommune": "ST CYR LA LANDE" }, { - "codePostal": "82370", - "codeCommune": "82194", - "libelleAcheminement": "VILLEBRUMIER", - "nomCommune": "VILLEBRUMIER" + "codePostal": "95190", + "codeCommune": "95280", + "libelleAcheminement": "GOUSSAINVILLE", + "nomCommune": "GOUSSAINVILLE" }, { - "codePostal": "74350", - "codeCommune": "74228", - "libelleAcheminement": "ST BLAISE", - "nomCommune": "ST BLAISE" + "codePostal": "77440", + "codeCommune": "77235", + "libelleAcheminement": "JAIGNES", + "nomCommune": "JAIGNES" }, { - "codePostal": "90110", - "codeCommune": "90066", - "libelleAcheminement": "LEVAL", - "nomCommune": "LEVAL" + "codePostal": "95720", + "codeCommune": "95682", + "libelleAcheminement": "VILLIERS LE SEC", + "nomCommune": "VILLIERS LE SEC" }, { - "codePostal": "97435", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "79310", + "codeCommune": "79271", + "libelleAcheminement": "ST MARC LA LANDE", + "nomCommune": "ST MARC LA LANDE" }, { - "codePostal": "82130", - "codeCommune": "82195", - "libelleAcheminement": "VILLEMADE", - "nomCommune": "VILLEMADE" + "codePostal": "95810", + "codeCommune": "95287", + "libelleAcheminement": "GRISY LES PLATRES", + "nomCommune": "GRISY LES PLATRES" }, { - "codePostal": "74140", - "codeCommune": "74229", - "libelleAcheminement": "ST CERGUES", - "nomCommune": "ST CERGUES" + "codePostal": "77127", + "codeCommune": "77251", + "libelleAcheminement": "LIEUSAINT", + "nomCommune": "LIEUSAINT" }, { - "codePostal": "90400", - "codeCommune": "90068", - "libelleAcheminement": "MEROUX MOVAL", - "nomCommune": "MEROUX MOVAL" + "codePostal": "97139", + "codeCommune": "97101", + "libelleAcheminement": "LES ABYMES", + "nomCommune": "LES ABYMES" }, { - "codePostal": "97460", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "79100", + "codeCommune": "79274", + "libelleAcheminement": "ST MARTIN DE MACON", + "nomCommune": "ST MARTIN DE MACON" }, { - "codePostal": "83150", - "codeCommune": "83009", - "libelleAcheminement": "BANDOL", - "nomCommune": "BANDOL" + "codePostal": "95780", + "codeCommune": "95301", + "libelleAcheminement": "HAUTE ISLE", + "nomCommune": "HAUTE ISLE" }, { - "codePostal": "74150", - "codeCommune": "74231", - "libelleAcheminement": "ST EUSEBE", - "nomCommune": "ST EUSEBE" + "codePostal": "77550", + "codeCommune": "77252", + "libelleAcheminement": "LIMOGES FOURCHES", + "nomCommune": "LIMOGES FOURCHES" }, { - "codePostal": "90400", - "codeCommune": "90068", - "libelleAcheminement": "MEROUX MOVAL", - "nomCommune": "MEROUX MOVAL" + "codePostal": "97127", + "codeCommune": "97110", + "libelleAcheminement": "LA DESIRADE", + "nomCommune": "LA DESIRADE" }, { - "codePostal": "97438", - "codeCommune": "97418", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "79410", + "codeCommune": "79281", + "libelleAcheminement": "ST MAXIRE", + "nomCommune": "ST MAXIRE" }, { - "codePostal": "83630", - "codeCommune": "83014", - "libelleAcheminement": "BAUDINARD SUR VERDON", - "nomCommune": "BAUDINARD SUR VERDON" + "codePostal": "95690", + "codeCommune": "95304", + "libelleAcheminement": "HEDOUVILLE", + "nomCommune": "HEDOUVILLE" }, { - "codePostal": "74500", - "codeCommune": "74237", - "libelleAcheminement": "ST GINGOLPH", - "nomCommune": "ST GINGOLPH" + "codePostal": "77185", + "codeCommune": "77258", + "libelleAcheminement": "LOGNES", + "nomCommune": "LOGNES" }, { - "codePostal": "90120", - "codeCommune": "90069", - "libelleAcheminement": "MEZIRE", - "nomCommune": "MEZIRE" + "codePostal": "97110", + "codeCommune": "97120", + "libelleAcheminement": "POINTE A PITRE", + "nomCommune": "POINTE A PITRE" }, { - "codePostal": "97433", - "codeCommune": "97421", - "libelleAcheminement": "SALAZIE", - "nomCommune": "SALAZIE" + "codePostal": "79260", + "codeCommune": "79283", + "libelleAcheminement": "STE NEOMAYE", + "nomCommune": "STE NEOMAYE" }, { - "codePostal": "83149", - "codeCommune": "83021", - "libelleAcheminement": "BRAS", - "nomCommune": "BRAS" + "codePostal": "95220", + "codeCommune": "95306", + "libelleAcheminement": "HERBLAY SUR SEINE", + "nomCommune": "HERBLAY SUR SEINE" }, { - "codePostal": "74450", - "codeCommune": "74239", - "libelleAcheminement": "ST JEAN DE SIXT", - "nomCommune": "ST JEAN DE SIXT" + "codePostal": "77650", + "codeCommune": "77260", + "libelleAcheminement": "LONGUEVILLE", + "nomCommune": "LONGUEVILLE" }, { - "codePostal": "90300", - "codeCommune": "90075", - "libelleAcheminement": "OFFEMONT", - "nomCommune": "OFFEMONT" + "codePostal": "97118", + "codeCommune": "97125", + "libelleAcheminement": "ST FRANCOIS", + "nomCommune": "ST FRANCOIS" }, { - "codePostal": "97430", - "codeCommune": "97422", - "libelleAcheminement": "LE TAMPON", - "nomCommune": "LE TAMPON" + "codePostal": "79160", + "codeCommune": "79290", + "libelleAcheminement": "ST POMPAIN", + "nomCommune": "ST POMPAIN" }, { - "codePostal": "83320", - "codeCommune": "83034", - "libelleAcheminement": "CARQUEIRANNE", - "nomCommune": "CARQUEIRANNE" + "codePostal": "95220", + "codeCommune": "95306", + "libelleAcheminement": "HERBLAY SUR SEINE", + "nomCommune": "HERBLAY SUR SEINE" }, { - "codePostal": "74410", - "codeCommune": "74242", - "libelleAcheminement": "ST JORIOZ", - "nomCommune": "ST JORIOZ" + "codePostal": "77560", + "codeCommune": "77262", + "libelleAcheminement": "LOUAN VILLEGRUIS FONTAINE", + "nomCommune": "LOUAN VILLEGRUIS FONTAINE" }, { - "codePostal": "90370", - "codeCommune": "90081", - "libelleAcheminement": "RECHESY", - "nomCommune": "RECHESY" + "codePostal": "97223", + "codeCommune": "97206", + "libelleAcheminement": "LE DIAMANT", + "nomCommune": "LE DIAMANT" }, { - "codePostal": "97650", - "codeCommune": "97602", - "libelleAcheminement": "BANDRABOUA", - "nomCommune": "BANDRABOUA" + "codePostal": "79410", + "codeCommune": "79293", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "83330", - "codeCommune": "83035", - "libelleAcheminement": "LE CASTELLET", - "nomCommune": "LE CASTELLET" + "codePostal": "95300", + "codeCommune": "95308", + "libelleAcheminement": "HEROUVILLE EN VEXIN", + "nomCommune": "HEROUVILLE EN VEXIN" }, { - "codePostal": "74800", - "codeCommune": "74244", - "libelleAcheminement": "ST LAURENT", - "nomCommune": "ST LAURENT" + "codePostal": "77138", + "codeCommune": "77265", + "libelleAcheminement": "LUZANCY", + "nomCommune": "LUZANCY" }, { - "codePostal": "90200", - "codeCommune": "90085", - "libelleAcheminement": "RIERVESCEMONT", - "nomCommune": "RIERVESCEMONT" + "codePostal": "97234", + "codeCommune": "97209", + "libelleAcheminement": "FORT DE FRANCE", + "nomCommune": "FORT DE FRANCE" }, { - "codePostal": "97600", - "codeCommune": "97611", - "libelleAcheminement": "MAMOUDZOU", - "nomCommune": "MAMOUDZOU" + "codePostal": "79230", + "codeCommune": "79294", + "libelleAcheminement": "ST ROMANS DES CHAMPS", + "nomCommune": "ST ROMANS DES CHAMPS" }, { - "codePostal": "83330", - "codeCommune": "83035", - "libelleAcheminement": "LE CASTELLET", - "nomCommune": "LE CASTELLET" + "codePostal": "95290", + "codeCommune": "95313", + "libelleAcheminement": "L ISLE ADAM", + "nomCommune": "L ISLE ADAM" }, { - "codePostal": "74150", - "codeCommune": "74255", - "libelleAcheminement": "SALES", - "nomCommune": "SALES" + "codePostal": "77230", + "codeCommune": "77273", + "libelleAcheminement": "MARCHEMORET", + "nomCommune": "MARCHEMORET" }, { - "codePostal": "90300", - "codeCommune": "90093", - "libelleAcheminement": "SERMAMAGNY", - "nomCommune": "SERMAMAGNY" + "codePostal": "97222", + "codeCommune": "97234", + "libelleAcheminement": "BELLEFONTAINE", + "nomCommune": "BELLEFONTAINE" }, { - "codePostal": "97650", - "codeCommune": "97613", - "libelleAcheminement": "M TSANGAMOUJI", - "nomCommune": "M TSANGAMOUJI" + "codePostal": "79240", + "codeCommune": "79309", + "libelleAcheminement": "SCILLE", + "nomCommune": "SCILLE" }, { - "codePostal": "83300", - "codeCommune": "83038", - "libelleAcheminement": "CHATEAUDOUBLE", - "nomCommune": "CHATEAUDOUBLE" + "codePostal": "95280", + "codeCommune": "95323", + "libelleAcheminement": "JOUY LE MOUTIER", + "nomCommune": "JOUY LE MOUTIER" }, { - "codePostal": "74340", - "codeCommune": "74258", - "libelleAcheminement": "SAMOENS", - "nomCommune": "SAMOENS" + "codePostal": "77139", + "codeCommune": "77274", + "libelleAcheminement": "MARCILLY", + "nomCommune": "MARCILLY" }, { - "codePostal": "90400", - "codeCommune": "90094", - "libelleAcheminement": "SEVENANS", - "nomCommune": "SEVENANS" + "codePostal": "97360", + "codeCommune": "97306", + "libelleAcheminement": "MANA", + "nomCommune": "MANA" }, { - "codePostal": "97640", - "codeCommune": "97616", - "libelleAcheminement": "SADA", - "nomCommune": "SADA" + "codePostal": "79170", + "codeCommune": "79310", + "libelleAcheminement": "SECONDIGNE SUR BELLE", + "nomCommune": "SECONDIGNE SUR BELLE" }, { - "codePostal": "83670", - "codeCommune": "83039", - "libelleAcheminement": "CHATEAUVERT", - "nomCommune": "CHATEAUVERT" + "codePostal": "95300", + "codeCommune": "95341", + "libelleAcheminement": "LIVILLIERS", + "nomCommune": "LIVILLIERS" }, { - "codePostal": "74350", - "codeCommune": "74259", - "libelleAcheminement": "LE SAPPEY", - "nomCommune": "LE SAPPEY" + "codePostal": "77350", + "codeCommune": "77285", + "libelleAcheminement": "LE MEE SUR SEINE", + "nomCommune": "LE MEE SUR SEINE" }, { - "codePostal": "90100", - "codeCommune": "90095", - "libelleAcheminement": "SUARCE", - "nomCommune": "SUARCE" + "codePostal": "97320", + "codeCommune": "97311", + "libelleAcheminement": "ST LAURENT DU MARONI", + "nomCommune": "ST LAURENT DU MARONI" }, { - "codePostal": "97680", - "codeCommune": "97617", - "libelleAcheminement": "TSINGONI", - "nomCommune": "TSINGONI" + "codePostal": "79130", + "codeCommune": "79311", + "libelleAcheminement": "SECONDIGNY", + "nomCommune": "SECONDIGNY" }, { - "codePostal": "83260", - "codeCommune": "83047", - "libelleAcheminement": "LA CRAU", - "nomCommune": "LA CRAU" + "codePostal": "95380", + "codeCommune": "95351", + "libelleAcheminement": "LOUVRES", + "nomCommune": "LOUVRES" }, { - "codePostal": "74230", - "codeCommune": "74265", - "libelleAcheminement": "SERRAVAL", - "nomCommune": "SERRAVAL" + "codePostal": "77520", + "codeCommune": "77286", + "libelleAcheminement": "MEIGNEUX", + "nomCommune": "MEIGNEUX" }, { - "codePostal": "90400", - "codeCommune": "90097", - "libelleAcheminement": "TREVENANS", - "nomCommune": "TREVENANS" + "codePostal": "97314", + "codeCommune": "97352", + "libelleAcheminement": "SAUL", + "nomCommune": "SAUL" }, { - "codePostal": "97150", - "codeCommune": "97801", - "libelleAcheminement": "ST MARTIN", - "nomCommune": "ST MARTIN" + "codePostal": "79120", + "codeCommune": "79313", + "libelleAcheminement": "SEPVRET", + "nomCommune": "SEPVRET" }, { - "codePostal": "83210", - "codeCommune": "83054", - "libelleAcheminement": "LA FARLEDE", - "nomCommune": "LA FARLEDE" + "codePostal": "95850", + "codeCommune": "95365", + "libelleAcheminement": "MAREIL EN FRANCE", + "nomCommune": "MAREIL EN FRANCE" }, { - "codePostal": "74310", - "codeCommune": "74266", - "libelleAcheminement": "SERVOZ", - "nomCommune": "SERVOZ" + "codePostal": "77130", + "codeCommune": "77293", + "libelleAcheminement": "MISY SUR YONNE", + "nomCommune": "MISY SUR YONNE" }, { - "codePostal": "90800", - "codeCommune": "90098", - "libelleAcheminement": "URCEREY", - "nomCommune": "URCEREY" + "codePostal": "97370", + "codeCommune": "97353", + "libelleAcheminement": "MARIPASOULA", + "nomCommune": "MARIPASOULA" }, { - "codePostal": "98760", - "codeCommune": "98711", - "libelleAcheminement": "TUUHORA", - "nomCommune": "ANAA" + "codePostal": "79220", + "codeCommune": "79320", + "libelleAcheminement": "SURIN", + "nomCommune": "SURIN" }, { - "codePostal": "83670", - "codeCommune": "83060", - "libelleAcheminement": "FOX AMPHOUX", - "nomCommune": "FOX AMPHOUX" + "codePostal": "95810", + "codeCommune": "95387", + "libelleAcheminement": "MENOUVILLE", + "nomCommune": "MENOUVILLE" }, { - "codePostal": "74210", - "codeCommune": "74275", - "libelleAcheminement": "TALLOIRES MONTMIN", - "nomCommune": "TALLOIRES MONTMIN" + "codePostal": "77290", + "codeCommune": "77294", + "libelleAcheminement": "MITRY MORY", + "nomCommune": "MITRY MORY" }, { - "codePostal": "90300", - "codeCommune": "90099", - "libelleAcheminement": "VALDOIE", - "nomCommune": "VALDOIE" + "codePostal": "97340", + "codeCommune": "97357", + "libelleAcheminement": "GRAND SANTI", + "nomCommune": "GRAND SANTI" }, { - "codePostal": "98790", - "codeCommune": "98716", - "libelleAcheminement": "MOTU TAPU", - "nomCommune": "FAKARAVA" + "codePostal": "79100", + "codeCommune": "79329", + "libelleAcheminement": "THOUARS", + "nomCommune": "THOUARS" }, { - "codePostal": "83130", - "codeCommune": "83062", - "libelleAcheminement": "LA GARDE", - "nomCommune": "LA GARDE" + "codePostal": "95570", + "codeCommune": "95409", + "libelleAcheminement": "MOISSELLES", + "nomCommune": "MOISSELLES" }, { - "codePostal": "74290", - "codeCommune": "74275", - "libelleAcheminement": "TALLOIRES MONTMIN", - "nomCommune": "TALLOIRES MONTMIN" + "codePostal": "77550", + "codeCommune": "77296", + "libelleAcheminement": "MOISSY CRAMAYEL", + "nomCommune": "MOISSY CRAMAYEL" }, { - "codePostal": "90150", - "codeCommune": "90100", - "libelleAcheminement": "VAUTHIERMONT", - "nomCommune": "VAUTHIERMONT" + "codePostal": "97312", + "codeCommune": "97358", + "libelleAcheminement": "ST ELIE", + "nomCommune": "ST ELIE" }, { - "codePostal": "98755", - "codeCommune": "98719", - "libelleAcheminement": "AUKENA", - "nomCommune": "GAMBIER" + "codePostal": "79210", + "codeCommune": "79334", + "libelleAcheminement": "VAL DU MIGNON", + "nomCommune": "VAL DU MIGNON" }, { - "codePostal": "83136", - "codeCommune": "83064", - "libelleAcheminement": "GAREOULT", - "nomCommune": "GAREOULT" + "codePostal": "95360", + "codeCommune": "95427", + "libelleAcheminement": "MONTMAGNY", + "nomCommune": "MONTMAGNY" }, { - "codePostal": "74440", - "codeCommune": "74276", - "libelleAcheminement": "TANINGES", - "nomCommune": "TANINGES" + "codePostal": "77320", + "codeCommune": "77304", + "libelleAcheminement": "MONTENILS", + "nomCommune": "MONTENILS" }, { - "codePostal": "91160", - "codeCommune": "91044", - "libelleAcheminement": "BALLAINVILLIERS", - "nomCommune": "BALLAINVILLIERS" + "codePostal": "97317", + "codeCommune": "97360", + "libelleAcheminement": "APATOU", + "nomCommune": "APATOU" }, { - "codePostal": "98755", - "codeCommune": "98719", - "libelleAcheminement": "MAKAROA", - "nomCommune": "GAMBIER" + "codePostal": "79270", + "codeCommune": "79337", + "libelleAcheminement": "LE VANNEAU IRLEAU", + "nomCommune": "LE VANNEAU IRLEAU" }, { - "codePostal": "83580", - "codeCommune": "83065", - "libelleAcheminement": "GASSIN", - "nomCommune": "GASSIN" + "codePostal": "95640", + "codeCommune": "95438", + "libelleAcheminement": "MOUSSY", + "nomCommune": "MOUSSY" }, { - "codePostal": "74230", - "codeCommune": "74280", - "libelleAcheminement": "THONES", - "nomCommune": "THONES" + "codePostal": "77144", + "codeCommune": "77307", + "libelleAcheminement": "MONTEVRAIN", + "nomCommune": "MONTEVRAIN" }, { - "codePostal": "91570", - "codeCommune": "91064", - "libelleAcheminement": "BIEVRES", - "nomCommune": "BIEVRES" + "codePostal": "97316", + "codeCommune": "97362", + "libelleAcheminement": "POMPIDOU PAPA ICHTON", + "nomCommune": "PAPAICHTON" }, { - "codePostal": "98792", - "codeCommune": "98719", - "libelleAcheminement": "TENARUNGA", - "nomCommune": "GAMBIER" + "codePostal": "79120", + "codeCommune": "79338", + "libelleAcheminement": "VANZAY", + "nomCommune": "VANZAY" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "95420", + "codeCommune": "95462", + "libelleAcheminement": "OMERVILLE", + "nomCommune": "OMERVILLE" }, { - "codePostal": "74200", - "codeCommune": "74281", - "libelleAcheminement": "THONON LES BAINS", - "nomCommune": "THONON LES BAINS" + "codePostal": "77230", + "codeCommune": "77308", + "libelleAcheminement": "MONTGE EN GOELE", + "nomCommune": "MONTGE EN GOELE" }, { - "codePostal": "91470", - "codeCommune": "91093", - "libelleAcheminement": "BOULLAY LES TROUX", - "nomCommune": "BOULLAY LES TROUX" + "codePostal": "97414", + "codeCommune": "97403", + "libelleAcheminement": "ENTRE DEUX", + "nomCommune": "ENTRE DEUX" }, { - "codePostal": "98790", - "codeCommune": "98720", - "libelleAcheminement": "HEREHRETUE", - "nomCommune": "HAO" + "codePostal": "79170", + "codeCommune": "79343", + "libelleAcheminement": "VERNOUX SUR BOUTONNE", + "nomCommune": "VERNOUX SUR BOUTONNE" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "95450", + "codeCommune": "95483", + "libelleAcheminement": "LE PERCHAY", + "nomCommune": "LE PERCHAY" }, { - "codePostal": "74200", - "codeCommune": "74281", - "libelleAcheminement": "THONON LES BAINS", - "nomCommune": "THONON LES BAINS" + "codePostal": "77163", + "codeCommune": "77318", + "libelleAcheminement": "MORTCERF", + "nomCommune": "MORTCERF" }, { - "codePostal": "91800", - "codeCommune": "91097", - "libelleAcheminement": "BOUSSY ST ANTOINE", - "nomCommune": "BOUSSY ST ANTOINE" + "codePostal": "97429", + "codeCommune": "97405", + "libelleAcheminement": "PETITE ILE", + "nomCommune": "PETITE ILE" }, { - "codePostal": "98790", - "codeCommune": "98720", - "libelleAcheminement": "PARAOA", - "nomCommune": "HAO" + "codePostal": "79170", + "codeCommune": "79346", + "libelleAcheminement": "LE VERT", + "nomCommune": "LE VERT" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "95220", + "codeCommune": "95488", + "libelleAcheminement": "PIERRELAYE", + "nomCommune": "PIERRELAYE" }, { - "codePostal": "74570", - "codeCommune": "74282", - "libelleAcheminement": "FILLIERE", - "nomCommune": "FILLIERE" + "codePostal": "77480", + "codeCommune": "77321", + "libelleAcheminement": "MOUSSEAUX LES BRAY", + "nomCommune": "MOUSSEAUX LES BRAY" }, { - "codePostal": "91880", - "codeCommune": "91100", - "libelleAcheminement": "BOUVILLE", - "nomCommune": "BOUVILLE" + "codePostal": "97420", + "codeCommune": "97407", + "libelleAcheminement": "LE PORT", + "nomCommune": "LE PORT" }, { - "codePostal": "98790", - "codeCommune": "98720", - "libelleAcheminement": "AHUNUI", - "nomCommune": "HAO" + "codePostal": "79160", + "codeCommune": "79351", + "libelleAcheminement": "VILLIERS EN PLAINE", + "nomCommune": "VILLIERS EN PLAINE" }, { - "codePostal": "83510", - "codeCommune": "83072", - "libelleAcheminement": "LORGUES", - "nomCommune": "LORGUES" + "codePostal": "95380", + "codeCommune": "95509", + "libelleAcheminement": "PUISEUX EN FRANCE", + "nomCommune": "PUISEUX EN FRANCE" }, { - "codePostal": "74910", - "codeCommune": "74285", - "libelleAcheminement": "USINENS", - "nomCommune": "USINENS" + "codePostal": "77176", + "codeCommune": "77326", + "libelleAcheminement": "NANDY", + "nomCommune": "NANDY" }, { - "codePostal": "91220", - "codeCommune": "91103", - "libelleAcheminement": "BRETIGNY SUR ORGE", - "nomCommune": "BRETIGNY SUR ORGE" + "codePostal": "97420", + "codeCommune": "97407", + "libelleAcheminement": "LE PORT", + "nomCommune": "LE PORT" }, { - "codePostal": "98790", - "codeCommune": "98721", - "libelleAcheminement": "TEPEPERU", - "nomCommune": "HIKUERU" + "codePostal": "80150", + "codeCommune": "80006", + "libelleAcheminement": "AGENVILLERS", + "nomCommune": "AGENVILLERS" }, { - "codePostal": "83840", - "codeCommune": "83074", - "libelleAcheminement": "LA MARTRE", - "nomCommune": "LA MARTRE" + "codePostal": "95650", + "codeCommune": "95510", + "libelleAcheminement": "PUISEUX PONTOISE", + "nomCommune": "PUISEUX PONTOISE" }, { - "codePostal": "74270", - "codeCommune": "74291", - "libelleAcheminement": "VANZY", - "nomCommune": "VANZY" + "codePostal": "77140", + "codeCommune": "77333", + "libelleAcheminement": "NEMOURS", + "nomCommune": "NEMOURS" }, { - "codePostal": "91640", - "codeCommune": "91111", - "libelleAcheminement": "BRIIS SOUS FORGES", - "nomCommune": "BRIIS SOUS FORGES" + "codePostal": "97440", + "codeCommune": "97409", + "libelleAcheminement": "ST ANDRE", + "nomCommune": "ST ANDRE" }, { - "codePostal": "98790", - "codeCommune": "98721", - "libelleAcheminement": "MAHETIKA", - "nomCommune": "HIKUERU" + "codePostal": "80270", + "codeCommune": "80013", + "libelleAcheminement": "AIRAINES", + "nomCommune": "AIRAINES" }, { - "codePostal": "83440", - "codeCommune": "83081", - "libelleAcheminement": "MONTAUROUX", - "nomCommune": "MONTAUROUX" + "codePostal": "95780", + "codeCommune": "95523", + "libelleAcheminement": "LA ROCHE GUYON", + "nomCommune": "LA ROCHE GUYON" }, { - "codePostal": "74290", - "codeCommune": "74299", - "libelleAcheminement": "VEYRIER DU LAC", - "nomCommune": "VEYRIER DU LAC" + "codePostal": "77610", + "codeCommune": "77336", + "libelleAcheminement": "NEUFMOUTIERS EN BRIE", + "nomCommune": "NEUFMOUTIERS EN BRIE" }, { - "codePostal": "91680", - "codeCommune": "91115", - "libelleAcheminement": "BRUYERES LE CHATEL", - "nomCommune": "BRUYERES LE CHATEL" + "codePostal": "97437", + "codeCommune": "97410", + "libelleAcheminement": "ST BENOIT", + "nomCommune": "ST BENOIT" }, { - "codePostal": "98707", - "codeCommune": "98722", - "libelleAcheminement": "PAPENOO", - "nomCommune": "HITIAA O TE RA" + "codePostal": "80260", + "codeCommune": "80020", + "libelleAcheminement": "ALLONVILLE", + "nomCommune": "ALLONVILLE" }, { - "codePostal": "83131", - "codeCommune": "83082", - "libelleAcheminement": "MONTFERRAT", - "nomCommune": "MONTFERRAT" + "codePostal": "95700", + "codeCommune": "95527", + "libelleAcheminement": "ROISSY EN FRANCE", + "nomCommune": "ROISSY EN FRANCE" }, { - "codePostal": "74500", - "codeCommune": "74308", - "libelleAcheminement": "VINZIER", - "nomCommune": "VINZIER" + "codePostal": "77940", + "codeCommune": "77338", + "libelleAcheminement": "NOISY RUDIGNON", + "nomCommune": "NOISY RUDIGNON" }, { - "codePostal": "91590", - "codeCommune": "91129", - "libelleAcheminement": "CERNY", - "nomCommune": "CERNY" + "codePostal": "97400", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "98741", - "codeCommune": "98723", - "libelleAcheminement": "EIAONE", - "nomCommune": "HIVA OA" + "codePostal": "80080", + "codeCommune": "80021", + "libelleAcheminement": "AMIENS", + "nomCommune": "AMIENS" }, { - "codePostal": "83920", - "codeCommune": "83085", - "libelleAcheminement": "LA MOTTE", - "nomCommune": "LA MOTTE" + "codePostal": "95450", + "codeCommune": "95535", + "libelleAcheminement": "SAGY", + "nomCommune": "SAGY" }, { - "codePostal": "75001", - "codeCommune": "75101", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 01" + "codePostal": "77890", + "codeCommune": "77342", + "libelleAcheminement": "OBSONVILLE", + "nomCommune": "OBSONVILLE" }, { - "codePostal": "91780", - "codeCommune": "91130", - "libelleAcheminement": "CHALO ST MARS", - "nomCommune": "CHALO ST MARS" + "codePostal": "97417", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "98741", - "codeCommune": "98723", - "libelleAcheminement": "MOTU UA", - "nomCommune": "HIVA OA" + "codePostal": "80120", + "codeCommune": "80025", + "libelleAcheminement": "ARGOULES", + "nomCommune": "ARGOULES" }, { - "codePostal": "83390", - "codeCommune": "83100", - "libelleAcheminement": "PUGET VILLE", - "nomCommune": "PUGET VILLE" + "codePostal": "95770", + "codeCommune": "95541", + "libelleAcheminement": "ST CLAIR SUR EPTE", + "nomCommune": "ST CLAIR SUR EPTE" }, { - "codePostal": "75005", - "codeCommune": "75105", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 05" + "codePostal": "77750", + "codeCommune": "77345", + "libelleAcheminement": "ORLY SUR MORIN", + "nomCommune": "ORLY SUR MORIN" }, { - "codePostal": "91380", - "codeCommune": "91161", - "libelleAcheminement": "CHILLY MAZARIN", - "nomCommune": "CHILLY MAZARIN" + "codePostal": "97434", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "98741", - "codeCommune": "98723", - "libelleAcheminement": "NAHOE", - "nomCommune": "HIVA OA" + "codePostal": "80500", + "codeCommune": "80032", + "libelleAcheminement": "ASSAINVILLERS", + "nomCommune": "ASSAINVILLERS" }, { - "codePostal": "83200", - "codeCommune": "83103", - "libelleAcheminement": "LE REVEST LES EAUX", - "nomCommune": "LE REVEST LES EAUX" + "codePostal": "95510", + "codeCommune": "95543", + "libelleAcheminement": "ST CYR EN ARTHIES", + "nomCommune": "ST CYR EN ARTHIES" }, { - "codePostal": "75009", - "codeCommune": "75109", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 09" + "codePostal": "77280", + "codeCommune": "77349", + "libelleAcheminement": "OTHIS", + "nomCommune": "OTHIS" }, { - "codePostal": "91830", - "codeCommune": "91179", - "libelleAcheminement": "LE COUDRAY MONTCEAUX", - "nomCommune": "LE COUDRAY MONTCEAUX" + "codePostal": "97435", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "98741", - "codeCommune": "98723", - "libelleAcheminement": "PAUMAU", - "nomCommune": "HIVA OA" + "codePostal": "80200", + "codeCommune": "80033", + "libelleAcheminement": "ASSEVILLERS", + "nomCommune": "ASSEVILLERS" }, { - "codePostal": "83136", - "codeCommune": "83106", - "libelleAcheminement": "ROCBARON", - "nomCommune": "ROCBARON" + "codePostal": "95640", + "codeCommune": "95584", + "libelleAcheminement": "SANTEUIL", + "nomCommune": "SANTEUIL" }, { - "codePostal": "75010", - "codeCommune": "75110", - "libelleAcheminement": "PARIS", - "nomCommune": "PARIS 10" + "codePostal": "77330", + "codeCommune": "77350", + "libelleAcheminement": "OZOIR LA FERRIERE", + "nomCommune": "OZOIR LA FERRIERE" }, { - "codePostal": "91830", - "codeCommune": "91179", - "libelleAcheminement": "LE COUDRAY MONTCEAUX", - "nomCommune": "LE COUDRAY MONTCEAUX" + "codePostal": "97410", + "codeCommune": "97416", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "98731", - "codeCommune": "98724", - "libelleAcheminement": "MAROE", - "nomCommune": "HUAHINE" + "codePostal": "80460", + "codeCommune": "80039", + "libelleAcheminement": "AULT", + "nomCommune": "AULT" }, { - "codePostal": "83136", - "codeCommune": "83108", - "libelleAcheminement": "LA ROQUEBRUSSANNE", - "nomCommune": "LA ROQUEBRUSSANNE" + "codePostal": "95810", + "codeCommune": "95611", + "libelleAcheminement": "THEUVILLE", + "nomCommune": "THEUVILLE" }, { - "codePostal": "76540", - "codeCommune": "76011", - "libelleAcheminement": "ANCRETTEVILLE SUR MER", - "nomCommune": "ANCRETTEVILLE SUR MER" + "codePostal": "77390", + "codeCommune": "77352", + "libelleAcheminement": "OZOUER LE VOULGIS", + "nomCommune": "OZOUER LE VOULGIS" }, { - "codePostal": "91490", - "codeCommune": "91180", - "libelleAcheminement": "COURANCES", - "nomCommune": "COURANCES" + "codePostal": "97441", + "codeCommune": "97420", + "libelleAcheminement": "STE SUZANNE", + "nomCommune": "STE SUZANNE" }, { - "codePostal": "98731", - "codeCommune": "98724", - "libelleAcheminement": "PAREA", - "nomCommune": "HUAHINE" + "codePostal": "80300", + "codeCommune": "80052", + "libelleAcheminement": "BAIZIEUX", + "nomCommune": "BAIZIEUX" }, { - "codePostal": "83530", - "codeCommune": "83118", - "libelleAcheminement": "ST RAPHAEL", - "nomCommune": "ST RAPHAEL" + "codePostal": "95760", + "codeCommune": "95628", + "libelleAcheminement": "VALMONDOIS", + "nomCommune": "VALMONDOIS" }, { - "codePostal": "76110", - "codeCommune": "76012", - "libelleAcheminement": "ANGERVILLE BAILLEUL", - "nomCommune": "ANGERVILLE BAILLEUL" + "codePostal": "77131", + "codeCommune": "77360", + "libelleAcheminement": "PEZARCHES", + "nomCommune": "PEZARCHES" }, { - "codePostal": "91720", - "codeCommune": "91184", - "libelleAcheminement": "COURDIMANCHE SUR ESSONNE", - "nomCommune": "COURDIMANCHE SUR ESSONNE" + "codePostal": "97430", + "codeCommune": "97422", + "libelleAcheminement": "LE TAMPON", + "nomCommune": "LE TAMPON" }, { - "codePostal": "98771", - "codeCommune": "98727", - "libelleAcheminement": "TURIPAOA", - "nomCommune": "MANIHI" + "codePostal": "80430", + "codeCommune": "80062", + "libelleAcheminement": "BEAUCAMPS LE VIEUX", + "nomCommune": "BEAUCAMPS LE VIEUX" }, { - "codePostal": "83530", - "codeCommune": "83118", - "libelleAcheminement": "ST RAPHAEL", - "nomCommune": "ST RAPHAEL" + "codePostal": "95270", + "codeCommune": "95652", + "libelleAcheminement": "VIARMES", + "nomCommune": "VIARMES" }, { - "codePostal": "76280", - "codeCommune": "76014", - "libelleAcheminement": "ANGERVILLE L ORCHER", - "nomCommune": "ANGERVILLE L ORCHER" + "codePostal": "77165", + "codeCommune": "77366", + "libelleAcheminement": "LE PLESSIS L EVEQUE", + "nomCommune": "LE PLESSIS L EVEQUE" }, { - "codePostal": "91680", - "codeCommune": "91186", - "libelleAcheminement": "COURSON MONTELOUP", - "nomCommune": "COURSON MONTELOUP" + "codePostal": "97430", + "codeCommune": "97422", + "libelleAcheminement": "LE TAMPON", + "nomCommune": "LE TAMPON" }, { - "codePostal": "98732", - "codeCommune": "98728", - "libelleAcheminement": "MOTU ONE", - "nomCommune": "MAUPITI" + "codePostal": "80770", + "codeCommune": "80063", + "libelleAcheminement": "BEAUCHAMPS", + "nomCommune": "BEAUCHAMPS" }, { - "codePostal": "83530", - "codeCommune": "83118", - "libelleAcheminement": "ST RAPHAEL", - "nomCommune": "ST RAPHAEL" + "codePostal": "95570", + "codeCommune": "95660", + "libelleAcheminement": "VILLAINES SOUS BOIS", + "nomCommune": "VILLAINES SOUS BOIS" }, { - "codePostal": "76740", - "codeCommune": "76015", - "libelleAcheminement": "ANGIENS", - "nomCommune": "ANGIENS" + "codePostal": "77400", + "codeCommune": "77372", + "libelleAcheminement": "POMPONNE", + "nomCommune": "POMPONNE" }, { - "codePostal": "91590", - "codeCommune": "91198", - "libelleAcheminement": "D HUISON LONGUEVILLE", - "nomCommune": "D HUISON LONGUEVILLE" + "codePostal": "97430", + "codeCommune": "97422", + "libelleAcheminement": "LE TAMPON", + "nomCommune": "LE TAMPON" }, { - "codePostal": "98732", - "codeCommune": "98728", - "libelleAcheminement": "SCILLY", - "nomCommune": "MAUPITI" + "codePostal": "80300", + "codeCommune": "80065", + "libelleAcheminement": "BEAUCOURT SUR L ANCRE", + "nomCommune": "BEAUCOURT SUR L ANCRE" }, { - "codePostal": "83630", - "codeCommune": "83122", - "libelleAcheminement": "LES SALLES SUR VERDON", - "nomCommune": "LES SALLES SUR VERDON" + "codePostal": "95380", + "codeCommune": "95675", + "libelleAcheminement": "VILLERON", + "nomCommune": "VILLERON" }, { - "codePostal": "76280", - "codeCommune": "76017", - "libelleAcheminement": "ANGLESQUEVILLE L ESNEVAL", - "nomCommune": "ANGLESQUEVILLE L ESNEVAL" + "codePostal": "77340", + "codeCommune": "77373", + "libelleAcheminement": "PONTAULT COMBAULT", + "nomCommune": "PONTAULT COMBAULT" }, { - "codePostal": "91540", - "codeCommune": "91204", - "libelleAcheminement": "ECHARCON", - "nomCommune": "ECHARCON" + "codePostal": "97413", + "codeCommune": "97424", + "libelleAcheminement": "CILAOS", + "nomCommune": "CILAOS" }, { - "codePostal": "98729", - "codeCommune": "98729", - "libelleAcheminement": "OPUNOHU", - "nomCommune": "MOOREA MAIAO" + "codePostal": "80300", + "codeCommune": "80069", + "libelleAcheminement": "BEAUMONT HAMEL", + "nomCommune": "BEAUMONT HAMEL" }, { - "codePostal": "83440", - "codeCommune": "83124", - "libelleAcheminement": "SEILLANS", - "nomCommune": "SEILLANS" + "codePostal": "95840", + "codeCommune": "95678", + "libelleAcheminement": "VILLIERS ADAM", + "nomCommune": "VILLIERS ADAM" }, { - "codePostal": "76890", - "codeCommune": "76018", - "libelleAcheminement": "VAL DE SAANE", - "nomCommune": "VAL DE SAANE" + "codePostal": "77410", + "codeCommune": "77376", + "libelleAcheminement": "PRECY SUR MARNE", + "nomCommune": "PRECY SUR MARNE" }, { - "codePostal": "91150", - "codeCommune": "91223", - "libelleAcheminement": "ETAMPES", - "nomCommune": "ETAMPES" + "codePostal": "97660", + "codeCommune": "97603", + "libelleAcheminement": "BANDRELE", + "nomCommune": "BANDRELE" }, { - "codePostal": "98729", - "codeCommune": "98729", - "libelleAcheminement": "PAOPAO", - "nomCommune": "MOOREA MAIAO" + "codePostal": "80270", + "codeCommune": "80081", + "libelleAcheminement": "BELLOY ST LEONARD", + "nomCommune": "BELLOY ST LEONARD" }, { - "codePostal": "83500", - "codeCommune": "83126", - "libelleAcheminement": "LA SEYNE SUR MER", - "nomCommune": "LA SEYNE SUR MER" + "codePostal": "97123", + "codeCommune": "97104", + "libelleAcheminement": "BAILLIF", + "nomCommune": "BAILLIF" }, { - "codePostal": "76480", - "codeCommune": "76020", - "libelleAcheminement": "ANNEVILLE AMBOURVILLE", - "nomCommune": "ANNEVILLE AMBOURVILLE" + "codePostal": "77220", + "codeCommune": "77377", + "libelleAcheminement": "PRESLES EN BRIE", + "nomCommune": "PRESLES EN BRIE" }, { - "codePostal": "91450", - "codeCommune": "91225", - "libelleAcheminement": "ETIOLLES", - "nomCommune": "ETIOLLES" + "codePostal": "97620", + "codeCommune": "97604", + "libelleAcheminement": "BOUENI", + "nomCommune": "BOUENI" }, { - "codePostal": "98772", - "codeCommune": "98730", - "libelleAcheminement": "TEPUKAMARUIA", - "nomCommune": "NAPUKA" + "codePostal": "80140", + "codeCommune": "80084", + "libelleAcheminement": "BERMESNIL", + "nomCommune": "BERMESNIL" }, { - "codePostal": "83210", - "codeCommune": "83132", - "libelleAcheminement": "SOLLIES VILLE", - "nomCommune": "SOLLIES VILLE" + "codePostal": "97125", + "codeCommune": "97106", + "libelleAcheminement": "BOUILLANTE", + "nomCommune": "BOUILLANTE" }, { - "codePostal": "76560", - "codeCommune": "76023", - "libelleAcheminement": "ANVEVILLE", - "nomCommune": "ANVEVILLE" + "codePostal": "77510", + "codeCommune": "77385", + "libelleAcheminement": "REBAIS", + "nomCommune": "REBAIS" }, { - "codePostal": "91640", - "codeCommune": "91243", - "libelleAcheminement": "FONTENAY LES BRIIS", - "nomCommune": "FONTENAY LES BRIIS" + "codePostal": "97600", + "codeCommune": "97611", + "libelleAcheminement": "MAMOUDZOU", + "nomCommune": "MAMOUDZOU" }, { - "codePostal": "98796", - "codeCommune": "98731", - "libelleAcheminement": "HATU ITI", - "nomCommune": "NUKU HIVA" + "codePostal": "80560", + "codeCommune": "80095", + "libelleAcheminement": "BERTRANCOURT", + "nomCommune": "BERTRANCOURT" }, { - "codePostal": "83440", - "codeCommune": "83133", - "libelleAcheminement": "TANNERON", - "nomCommune": "TANNERON" + "codePostal": "97160", + "codeCommune": "97117", + "libelleAcheminement": "LE MOULE", + "nomCommune": "LE MOULE" }, { - "codePostal": "76880", - "codeCommune": "76026", - "libelleAcheminement": "ARQUES LA BATAILLE", - "nomCommune": "ARQUES LA BATAILLE" + "codePostal": "77680", + "codeCommune": "77390", + "libelleAcheminement": "ROISSY EN BRIE", + "nomCommune": "ROISSY EN BRIE" }, { - "codePostal": "91540", - "codeCommune": "91244", - "libelleAcheminement": "FONTENAY LE VICOMTE", - "nomCommune": "FONTENAY LE VICOMTE" + "codePostal": "97605", + "codeCommune": "97611", + "libelleAcheminement": "MAMOUDZOU", + "nomCommune": "MAMOUDZOU" }, { - "codePostal": "98714", - "codeCommune": "98735", - "libelleAcheminement": "PAPEETE", - "nomCommune": "PAPEETE" + "codePostal": "80270", + "codeCommune": "80099", + "libelleAcheminement": "BETTENCOURT RIVIERE", + "nomCommune": "BETTENCOURT RIVIERE" }, { - "codePostal": "83143", - "codeCommune": "83143", - "libelleAcheminement": "LE VAL", - "nomCommune": "LE VAL" + "codePostal": "97131", + "codeCommune": "97119", + "libelleAcheminement": "PETIT CANAL", + "nomCommune": "PETIT CANAL" }, { - "codePostal": "76390", - "codeCommune": "76028", - "libelleAcheminement": "AUBEGUIMONT", - "nomCommune": "AUBEGUIMONT" + "codePostal": "77540", + "codeCommune": "77393", + "libelleAcheminement": "ROZAY EN BRIE", + "nomCommune": "ROZAY EN BRIE" }, { - "codePostal": "91940", - "codeCommune": "91275", - "libelleAcheminement": "GOMETZ LE CHATEL", - "nomCommune": "GOMETZ LE CHATEL" + "codePostal": "97680", + "codeCommune": "97617", + "libelleAcheminement": "TSINGONI", + "nomCommune": "TSINGONI" }, { - "codePostal": "98716", - "codeCommune": "98736", - "libelleAcheminement": "PIRAE", - "nomCommune": "PIRAE" + "codePostal": "80440", + "codeCommune": "80107", + "libelleAcheminement": "BLANGY TRONVILLE", + "nomCommune": "BLANGY TRONVILLE" }, { - "codePostal": "83160", - "codeCommune": "83144", - "libelleAcheminement": "LA VALETTE DU VAR", - "nomCommune": "LA VALETTE DU VAR" + "codePostal": "97131", + "codeCommune": "97119", + "libelleAcheminement": "PETIT CANAL", + "nomCommune": "PETIT CANAL" }, { - "codePostal": "76450", - "codeCommune": "76032", - "libelleAcheminement": "AUBERVILLE LA MANUEL", - "nomCommune": "AUBERVILLE LA MANUEL" + "codePostal": "77730", + "codeCommune": "77397", + "libelleAcheminement": "SAACY SUR MARNE", + "nomCommune": "SAACY SUR MARNE" }, { - "codePostal": "91410", - "codeCommune": "91284", - "libelleAcheminement": "LES GRANGES LE ROI", - "nomCommune": "LES GRANGES LE ROI" + "codePostal": "98620", + "codeCommune": "98612", + "libelleAcheminement": "SIGAVE", + "nomCommune": "SIGAVE" }, { - "codePostal": "98703", - "codeCommune": "98738", - "libelleAcheminement": "PUNAAUIA", - "nomCommune": "PUNAAUIA" + "codePostal": "80800", + "codeCommune": "80112", + "libelleAcheminement": "BONNAY", + "nomCommune": "BONNAY" }, { - "codePostal": "83690", - "codeCommune": "83149", - "libelleAcheminement": "VILLECROZE", - "nomCommune": "VILLECROZE" + "codePostal": "97117", + "codeCommune": "97122", + "libelleAcheminement": "PORT LOUIS", + "nomCommune": "PORT LOUIS" }, { - "codePostal": "76720", - "codeCommune": "76034", - "libelleAcheminement": "VAL DE SCIE", - "nomCommune": "VAL DE SCIE" + "codePostal": "77310", + "codeCommune": "77407", + "libelleAcheminement": "ST FARGEAU PONTHIERRY", + "nomCommune": "ST FARGEAU PONTHIERRY" }, { - "codePostal": "91630", - "codeCommune": "91292", - "libelleAcheminement": "GUIBEVILLE", - "nomCommune": "GUIBEVILLE" + "codePostal": "98785", + "codeCommune": "98713", + "libelleAcheminement": "RAITAHITI", + "nomCommune": "ARUTUA" }, { - "codePostal": "98718", - "codeCommune": "98738", - "libelleAcheminement": "PUNAAUIA", - "nomCommune": "PUNAAUIA" + "codePostal": "80670", + "codeCommune": "80113", + "libelleAcheminement": "BONNEVILLE", + "nomCommune": "BONNEVILLE" }, { - "codePostal": "84240", - "codeCommune": "84002", - "libelleAcheminement": "ANSOUIS", - "nomCommune": "ANSOUIS" + "codePostal": "97180", + "codeCommune": "97128", + "libelleAcheminement": "STE ANNE", + "nomCommune": "STE ANNE" }, { - "codePostal": "76850", - "codeCommune": "76034", - "libelleAcheminement": "VAL DE SCIE", - "nomCommune": "VAL DE SCIE" + "codePostal": "77310", + "codeCommune": "77407", + "libelleAcheminement": "ST FARGEAU PONTHIERRY", + "nomCommune": "ST FARGEAU PONTHIERRY" }, { - "codePostal": "91430", - "codeCommune": "91312", - "libelleAcheminement": "IGNY", - "nomCommune": "IGNY" + "codePostal": "98787", + "codeCommune": "98716", + "libelleAcheminement": "TEARAVERO", + "nomCommune": "FAKARAVA" }, { - "codePostal": "98750", - "codeCommune": "98739", - "libelleAcheminement": "VAIURU", - "nomCommune": "RAIVAVAE" + "codePostal": "80500", + "codeCommune": "80121", + "libelleAcheminement": "BOUILLANCOURT LA BATAILLE", + "nomCommune": "BOUILLANCOURT LA BATAILLE" }, { - "codePostal": "84330", - "codeCommune": "84008", - "libelleAcheminement": "LE BARROUX", - "nomCommune": "LE BARROUX" + "codePostal": "97180", + "codeCommune": "97128", + "libelleAcheminement": "STE ANNE", + "nomCommune": "STE ANNE" }, { - "codePostal": "76390", - "codeCommune": "76035", - "libelleAcheminement": "AUMALE", - "nomCommune": "AUMALE" + "codePostal": "77320", + "codeCommune": "77423", + "libelleAcheminement": "ST MARTIN DES CHAMPS", + "nomCommune": "ST MARTIN DES CHAMPS" }, { - "codePostal": "91510", - "codeCommune": "91318", - "libelleAcheminement": "JANVILLE SUR JUINE", - "nomCommune": "JANVILLE SUR JUINE" + "codePostal": "98755", + "codeCommune": "98719", + "libelleAcheminement": "ANGAKAUITAI", + "nomCommune": "GAMBIER" }, { - "codePostal": "98779", - "codeCommune": "98742", - "libelleAcheminement": "TAPUARAVA", - "nomCommune": "REAO" + "codePostal": "80500", + "codeCommune": "80125", + "libelleAcheminement": "BOUSSICOURT", + "nomCommune": "BOUSSICOURT" }, { - "codePostal": "84410", - "codeCommune": "84017", - "libelleAcheminement": "BEDOIN", - "nomCommune": "BEDOIN" + "codePostal": "97141", + "codeCommune": "97133", + "libelleAcheminement": "VIEUX FORT", + "nomCommune": "VIEUX FORT" }, { - "codePostal": "76740", - "codeCommune": "76040", - "libelleAcheminement": "AUTIGNY", - "nomCommune": "AUTIGNY" + "codePostal": "77320", + "codeCommune": "77424", + "libelleAcheminement": "ST MARTIN DU BOSCHET", + "nomCommune": "ST MARTIN DU BOSCHET" }, { - "codePostal": "91310", - "codeCommune": "91339", - "libelleAcheminement": "LINAS", - "nomCommune": "LINAS" + "codePostal": "98792", + "codeCommune": "98719", + "libelleAcheminement": "VAHANGA", + "nomCommune": "GAMBIER" }, { - "codePostal": "98752", - "codeCommune": "98743", - "libelleAcheminement": "AMARU", - "nomCommune": "RIMATARA" + "codePostal": "80150", + "codeCommune": "80133", + "libelleAcheminement": "BRAILLY CORNEHOTTE", + "nomCommune": "BRAILLY CORNEHOTTE" }, { - "codePostal": "84500", - "codeCommune": "84019", - "libelleAcheminement": "BOLLENE", - "nomCommune": "BOLLENE" + "codePostal": "97216", + "codeCommune": "97201", + "libelleAcheminement": "L AJOUPA BOUILLON", + "nomCommune": "L AJOUPA BOUILLON" }, { - "codePostal": "76270", - "codeCommune": "76042", - "libelleAcheminement": "AUVILLIERS", - "nomCommune": "AUVILLIERS" + "codePostal": "77630", + "codeCommune": "77425", + "libelleAcheminement": "ST MARTIN EN BIERE", + "nomCommune": "ST MARTIN EN BIERE" }, { - "codePostal": "91300", - "codeCommune": "91377", - "libelleAcheminement": "MASSY", - "nomCommune": "MASSY" + "codePostal": "98792", + "codeCommune": "98719", + "libelleAcheminement": "MARIA EST", + "nomCommune": "GAMBIER" }, { - "codePostal": "98753", - "codeCommune": "98744", - "libelleAcheminement": "HAUTI", - "nomCommune": "RURUTU" + "codePostal": "80160", + "codeCommune": "80134", + "libelleAcheminement": "BRASSY", + "nomCommune": "BRASSY" }, { - "codePostal": "84480", - "codeCommune": "84023", - "libelleAcheminement": "BUOUX", - "nomCommune": "BUOUX" + "codePostal": "97218", + "codeCommune": "97203", + "libelleAcheminement": "BASSE POINTE", + "nomCommune": "BASSE POINTE" }, { - "codePostal": "76220", - "codeCommune": "76048", - "libelleAcheminement": "AVESNES EN BRAY", - "nomCommune": "AVESNES EN BRAY" + "codePostal": "77750", + "codeCommune": "77429", + "libelleAcheminement": "ST OUEN SUR MORIN", + "nomCommune": "ST OUEN SUR MORIN" }, { - "codePostal": "91540", - "codeCommune": "91386", - "libelleAcheminement": "MENNECY", - "nomCommune": "MENNECY" + "codePostal": "98790", + "codeCommune": "98720", + "libelleAcheminement": "AMANU", + "nomCommune": "HAO" }, { - "codePostal": "98733", - "codeCommune": "98745", - "libelleAcheminement": "IRIPAU", - "nomCommune": "TAHAA" + "codePostal": "80400", + "codeCommune": "80144", + "libelleAcheminement": "BROUCHY", + "nomCommune": "BROUCHY" }, { - "codePostal": "84410", - "codeCommune": "84041", - "libelleAcheminement": "CRILLON LE BRAVE", - "nomCommune": "CRILLON LE BRAVE" + "codePostal": "97221", + "codeCommune": "97204", + "libelleAcheminement": "LE CARBET", + "nomCommune": "LE CARBET" }, { - "codePostal": "76190", - "codeCommune": "76055", - "libelleAcheminement": "BAONS LE COMTE", - "nomCommune": "BAONS LE COMTE" + "codePostal": "77120", + "codeCommune": "77433", + "libelleAcheminement": "BEAUTHEIL SAINTS", + "nomCommune": "BEAUTHEIL SAINTS" }, { - "codePostal": "91780", - "codeCommune": "91393", - "libelleAcheminement": "MEROBERT", - "nomCommune": "MEROBERT" + "codePostal": "98790", + "codeCommune": "98720", + "libelleAcheminement": "HIKITAKE", + "nomCommune": "HAO" }, { - "codePostal": "98743", - "codeCommune": "98746", - "libelleAcheminement": "VAITAHU", - "nomCommune": "TAHUATA" + "codePostal": "80300", + "codeCommune": "80151", + "libelleAcheminement": "BUIRE SUR L ANCRE", + "nomCommune": "BUIRE SUR L ANCRE" }, { - "codePostal": "84220", - "codeCommune": "84050", - "libelleAcheminement": "GORDES", - "nomCommune": "GORDES" + "codePostal": "97232", + "codeCommune": "97213", + "libelleAcheminement": "LE LAMENTIN", + "nomCommune": "LE LAMENTIN" }, { - "codePostal": "76260", - "codeCommune": "76058", - "libelleAcheminement": "BAROMESNIL", - "nomCommune": "BAROMESNIL" + "codePostal": "77169", + "codeCommune": "77436", + "libelleAcheminement": "ST SIMEON", + "nomCommune": "ST SIMEON" }, { - "codePostal": "91490", - "codeCommune": "91405", - "libelleAcheminement": "MILLY LA FORET", - "nomCommune": "MILLY LA FORET" + "codePostal": "98790", + "codeCommune": "98720", + "libelleAcheminement": "MANUHANGI", + "nomCommune": "HAO" }, { - "codePostal": "98721", - "codeCommune": "98747", - "libelleAcheminement": "PUEU", - "nomCommune": "TAIARAPU EST" + "codePostal": "80700", + "codeCommune": "80152", + "libelleAcheminement": "BUS LA MESIERE", + "nomCommune": "BUS LA MESIERE" }, { - "codePostal": "84220", - "codeCommune": "84051", - "libelleAcheminement": "GOULT", - "nomCommune": "GOULT" + "codePostal": "97214", + "codeCommune": "97214", + "libelleAcheminement": "LE LORRAIN", + "nomCommune": "LE LORRAIN" }, { - "codePostal": "76890", - "codeCommune": "76066", - "libelleAcheminement": "BEAUTOT", - "nomCommune": "BEAUTOT" + "codePostal": "77148", + "codeCommune": "77439", + "libelleAcheminement": "SALINS", + "nomCommune": "SALINS" }, { - "codePostal": "91590", - "codeCommune": "91412", - "libelleAcheminement": "MONDEVILLE", - "nomCommune": "MONDEVILLE" + "codePostal": "98790", + "codeCommune": "98720", + "libelleAcheminement": "TEANOGA", + "nomCommune": "HAO" }, { - "codePostal": "98725", - "codeCommune": "98748", - "libelleAcheminement": "VAIRAO", - "nomCommune": "TAIARAPU OUEST" + "codePostal": "80560", + "codeCommune": "80153", + "libelleAcheminement": "BUS LES ARTOIS", + "nomCommune": "BUS LES ARTOIS" }, { - "codePostal": "84600", - "codeCommune": "84053", - "libelleAcheminement": "GRILLON", - "nomCommune": "GRILLON" + "codePostal": "97218", + "codeCommune": "97215", + "libelleAcheminement": "MACOUBA", + "nomCommune": "MACOUBA" }, { - "codePostal": "76110", - "codeCommune": "76076", - "libelleAcheminement": "BENARVILLE", - "nomCommune": "BENARVILLE" + "codePostal": "77260", + "codeCommune": "77440", + "libelleAcheminement": "SAMMERON", + "nomCommune": "SAMMERON" }, { - "codePostal": "91150", - "codeCommune": "91433", - "libelleAcheminement": "MORIGNY CHAMPIGNY", - "nomCommune": "MORIGNY CHAMPIGNY" + "codePostal": "98705", + "codeCommune": "98722", + "libelleAcheminement": "HITIAA", + "nomCommune": "HITIAA O TE RA" }, { - "codePostal": "98782", - "codeCommune": "98749", - "libelleAcheminement": "FAKATOPATERE", - "nomCommune": "TAKAROA" + "codePostal": "80200", + "codeCommune": "80154", + "libelleAcheminement": "BUSSU", + "nomCommune": "BUSSU" }, { - "codePostal": "84800", - "codeCommune": "84054", - "libelleAcheminement": "L ISLE SUR LA SORGUE", - "nomCommune": "L ISLE SUR LA SORGUE" + "codePostal": "97250", + "codeCommune": "97225", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { - "codePostal": "76450", - "codeCommune": "76083", - "libelleAcheminement": "BERTHEAUVILLE", - "nomCommune": "BERTHEAUVILLE" + "codePostal": "77920", + "codeCommune": "77441", + "libelleAcheminement": "SAMOIS SUR SEINE", + "nomCommune": "SAMOIS SUR SEINE" }, { - "codePostal": "91750", - "codeCommune": "91441", - "libelleAcheminement": "NAINVILLE LES ROCHES", - "nomCommune": "NAINVILLE LES ROCHES" + "codePostal": "98706", + "codeCommune": "98722", + "libelleAcheminement": "MAHAENA", + "nomCommune": "HITIAA O TE RA" }, { - "codePostal": "98735", - "codeCommune": "98750", - "libelleAcheminement": "AVERA", - "nomCommune": "TAPUTAPUATEA" + "codePostal": "80290", + "codeCommune": "80157", + "libelleAcheminement": "BUSSY LES POIX", + "nomCommune": "BUSSY LES POIX" }, { - "codePostal": "84150", - "codeCommune": "84056", - "libelleAcheminement": "JONQUIERES", - "nomCommune": "JONQUIERES" + "codePostal": "97227", + "codeCommune": "97226", + "libelleAcheminement": "STE ANNE", + "nomCommune": "STE ANNE" }, { - "codePostal": "76210", - "codeCommune": "76090", - "libelleAcheminement": "BEUZEVILLE LA GRENIER", - "nomCommune": "BEUZEVILLE LA GRENIER" + "codePostal": "77210", + "codeCommune": "77442", + "libelleAcheminement": "SAMOREAU", + "nomCommune": "SAMOREAU" }, { - "codePostal": "91340", - "codeCommune": "91461", - "libelleAcheminement": "OLLAINVILLE", - "nomCommune": "OLLAINVILLE" + "codePostal": "98741", + "codeCommune": "98723", + "libelleAcheminement": "HANAPAOA", + "nomCommune": "HIVA OA" }, { - "codePostal": "98754", - "codeCommune": "98753", - "libelleAcheminement": "TAAHUAIA", - "nomCommune": "TUBUAI" + "codePostal": "80132", + "codeCommune": "80161", + "libelleAcheminement": "CAHON GOUY", + "nomCommune": "CAHON" }, { - "codePostal": "84360", - "codeCommune": "84065", - "libelleAcheminement": "LAURIS", - "nomCommune": "LAURIS" + "codePostal": "97230", + "codeCommune": "97228", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "76210", - "codeCommune": "76092", - "libelleAcheminement": "BEUZEVILLETTE", - "nomCommune": "BEUZEVILLETTE" + "codePostal": "77320", + "codeCommune": "77444", + "libelleAcheminement": "SANCY LES PROVINS", + "nomCommune": "SANCY LES PROVINS" }, { - "codePostal": "91400", - "codeCommune": "91471", - "libelleAcheminement": "ORSAY", - "nomCommune": "ORSAY" + "codePostal": "98749", + "codeCommune": "98723", + "libelleAcheminement": "PUAMAU", + "nomCommune": "HIVA OA" }, { - "codePostal": "98735", - "codeCommune": "98754", - "libelleAcheminement": "TEVAITOA", - "nomCommune": "TUMARAA" + "codePostal": "80132", + "codeCommune": "80163", + "libelleAcheminement": "CAMBRON", + "nomCommune": "CAMBRON" }, { - "codePostal": "84660", - "codeCommune": "84071", - "libelleAcheminement": "MAUBEC", - "nomCommune": "MAUBEC" + "codePostal": "97229", + "codeCommune": "97231", + "libelleAcheminement": "LES TROIS ILETS", + "nomCommune": "LES TROIS ILETS" }, { - "codePostal": "76220", - "codeCommune": "76093", - "libelleAcheminement": "BEZANCOURT", - "nomCommune": "BEZANCOURT" + "codePostal": "77650", + "codeCommune": "77446", + "libelleAcheminement": "SAVINS", + "nomCommune": "SAVINS" }, { - "codePostal": "94390", - "codeCommune": "91479", - "libelleAcheminement": "PARAY VIEILLE POSTE", - "nomCommune": "PARAY VIEILLE POSTE" + "codePostal": "98796", + "codeCommune": "98723", + "libelleAcheminement": "FATU HUKU", + "nomCommune": "HIVA OA" }, { - "codePostal": "98744", - "codeCommune": "98756", - "libelleAcheminement": "VAIPAEE", - "nomCommune": "UA HUKA" + "codePostal": "80540", + "codeCommune": "80165", + "libelleAcheminement": "CAMPS EN AMIENOIS", + "nomCommune": "CAMPS EN AMIENOIS" }, { - "codePostal": "84380", - "codeCommune": "84072", - "libelleAcheminement": "MAZAN", - "nomCommune": "MAZAN" + "codePostal": "97280", + "codeCommune": "97232", + "libelleAcheminement": "LE VAUCLIN", + "nomCommune": "LE VAUCLIN" }, { - "codePostal": "76730", - "codeCommune": "76097", - "libelleAcheminement": "BIVILLE LA RIVIERE", - "nomCommune": "BIVILLE LA RIVIERE" + "codePostal": "77520", + "codeCommune": "77454", + "libelleAcheminement": "SOGNOLLES EN MONTOIS", + "nomCommune": "SOGNOLLES EN MONTOIS" }, { - "codePostal": "91690", - "codeCommune": "91544", - "libelleAcheminement": "ST CYR LA RIVIERE", - "nomCommune": "ST CYR LA RIVIERE" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "FAIE", + "nomCommune": "HUAHINE" }, { - "codePostal": "98745", - "codeCommune": "98757", - "libelleAcheminement": "HAKAHETAU", - "nomCommune": "UA POU" + "codePostal": "80140", + "codeCommune": "80169", + "libelleAcheminement": "CANNESSIERES", + "nomCommune": "CANNESSIERES" }, { - "codePostal": "84390", - "codeCommune": "84079", - "libelleAcheminement": "MONIEUX", - "nomCommune": "MONIEUX" + "codePostal": "97226", + "codeCommune": "97233", + "libelleAcheminement": "LE MORNE VERT", + "nomCommune": "LE MORNE VERT" }, { - "codePostal": "76460", - "codeCommune": "76104", - "libelleAcheminement": "BLOSSEVILLE", - "nomCommune": "BLOSSEVILLE" + "codePostal": "77130", + "codeCommune": "77467", + "libelleAcheminement": "LA TOMBE", + "nomCommune": "LA TOMBE" }, { - "codePostal": "91180", - "codeCommune": "91552", - "libelleAcheminement": "ST GERMAIN LES ARPAJON", - "nomCommune": "ST GERMAIN LES ARPAJON" + "codePostal": "98769", + "codeCommune": "98726", + "libelleAcheminement": "POUHEVA", + "nomCommune": "MAKEMO" }, { - "codePostal": "98745", - "codeCommune": "98757", - "libelleAcheminement": "HAKAHAU", - "nomCommune": "UA POU" + "codePostal": "80290", + "codeCommune": "80179", + "libelleAcheminement": "CAULIERES", + "nomCommune": "CAULIERES" }, { - "codePostal": "84310", - "codeCommune": "84081", - "libelleAcheminement": "MORIERES LES AVIGNON", - "nomCommune": "MORIERES LES AVIGNON" + "codePostal": "97350", + "codeCommune": "97303", + "libelleAcheminement": "IRACOUBO", + "nomCommune": "IRACOUBO" }, { - "codePostal": "76750", - "codeCommune": "76107", - "libelleAcheminement": "BOIS GUILBERT", - "nomCommune": "BOIS GUILBERT" + "codePostal": "77260", + "codeCommune": "77478", + "libelleAcheminement": "USSY SUR MARNE", + "nomCommune": "USSY SUR MARNE" }, { - "codePostal": "91530", - "codeCommune": "91568", - "libelleAcheminement": "ST MAURICE MONTCOURONNE", - "nomCommune": "ST MAURICE MONTCOURONNE" + "codePostal": "98790", + "codeCommune": "98726", + "libelleAcheminement": "MARUTEA NORD", + "nomCommune": "MAKEMO" }, { - "codePostal": "98735", - "codeCommune": "98758", - "libelleAcheminement": "UTUROA", - "nomCommune": "UTUROA" + "codePostal": "80800", + "codeCommune": "80181", + "libelleAcheminement": "CAYEUX EN SANTERRE", + "nomCommune": "CAYEUX EN SANTERRE" }, { - "codePostal": "84550", - "codeCommune": "84083", - "libelleAcheminement": "MORNAS", - "nomCommune": "MORNAS" + "codePostal": "97310", + "codeCommune": "97304", + "libelleAcheminement": "KOUROU", + "nomCommune": "KOUROU" }, { - "codePostal": "76750", - "codeCommune": "76109", - "libelleAcheminement": "BOIS HEROULT", - "nomCommune": "BOIS HEROULT" + "codePostal": "77360", + "codeCommune": "77479", + "libelleAcheminement": "VAIRES SUR MARNE", + "nomCommune": "VAIRES SUR MARNE" }, { - "codePostal": "91910", - "codeCommune": "91578", - "libelleAcheminement": "ST SULPICE DE FAVIERES", - "nomCommune": "ST SULPICE DE FAVIERES" + "codePostal": "98790", + "codeCommune": "98726", + "libelleAcheminement": "OTATAKE", + "nomCommune": "MAKEMO" }, { - "codePostal": "98813", - "codeCommune": "98804", - "libelleAcheminement": "CANALA", - "nomCommune": "CANALA" + "codePostal": "80320", + "codeCommune": "80186", + "libelleAcheminement": "CHAULNES", + "nomCommune": "CHAULNES" }, { - "codePostal": "84110", - "codeCommune": "84094", - "libelleAcheminement": "PUYMERAS", - "nomCommune": "PUYMERAS" + "codePostal": "97355", + "codeCommune": "97305", + "libelleAcheminement": "MACOURIA TONATE", + "nomCommune": "MACOURIA" }, { - "codePostal": "76160", - "codeCommune": "76111", - "libelleAcheminement": "BOIS L EVEQUE", - "nomCommune": "BOIS L EVEQUE" + "codePostal": "77370", + "codeCommune": "77481", + "libelleAcheminement": "VANVILLE", + "nomCommune": "VANVILLE" }, { - "codePostal": "91450", - "codeCommune": "91600", - "libelleAcheminement": "SOISY SUR SEINE", - "nomCommune": "SOISY SUR SEINE" + "codePostal": "98790", + "codeCommune": "98726", + "libelleAcheminement": "TEPOTO SUD", + "nomCommune": "MAKEMO" }, { - "codePostal": "98881", - "codeCommune": "98806", - "libelleAcheminement": "FARINO", - "nomCommune": "FARINO" + "codePostal": "80310", + "codeCommune": "80187", + "libelleAcheminement": "LA CHAUSSEE TIRANCOURT", + "nomCommune": "LA CHAUSSEE TIRANCOURT" }, { - "codePostal": "84190", - "codeCommune": "84100", - "libelleAcheminement": "LA ROQUE ALRIC", - "nomCommune": "LA ROQUE ALRIC" + "codePostal": "97311", + "codeCommune": "97310", + "libelleAcheminement": "ROURA", + "nomCommune": "ROURA" }, { - "codePostal": "76110", - "codeCommune": "76118", - "libelleAcheminement": "BORNAMBUSC", - "nomCommune": "BORNAMBUSC" + "codePostal": "77580", + "codeCommune": "77484", + "libelleAcheminement": "VAUCOURTOIS", + "nomCommune": "VAUCOURTOIS" }, { - "codePostal": "91580", - "codeCommune": "91602", - "libelleAcheminement": "SOUZY LA BRICHE", - "nomCommune": "SOUZY LA BRICHE" + "codePostal": "98790", + "codeCommune": "98726", + "libelleAcheminement": "TUANAKE", + "nomCommune": "MAKEMO" }, { - "codePostal": "98817", - "codeCommune": "98810", - "libelleAcheminement": "KAALA GOMEN", - "nomCommune": "KAALA GOMEN" + "codePostal": "80360", + "codeCommune": "80204", + "libelleAcheminement": "COMBLES", + "nomCommune": "COMBLES" }, { - "codePostal": "84400", - "codeCommune": "84103", - "libelleAcheminement": "RUSTREL", - "nomCommune": "RUSTREL" + "codePostal": "97319", + "codeCommune": "97361", + "libelleAcheminement": "AWALA YALIMAPO", + "nomCommune": "AWALA YALIMAPO" }, { - "codePostal": "76270", - "codeCommune": "76122", - "libelleAcheminement": "CALLENGEVILLE", - "nomCommune": "CALLENGEVILLE" + "codePostal": "77000", + "codeCommune": "77487", + "libelleAcheminement": "VAUX LE PENIL", + "nomCommune": "VAUX LE PENIL" }, { - "codePostal": "91640", - "codeCommune": "91634", - "libelleAcheminement": "VAUGRIGNEUSE", - "nomCommune": "VAUGRIGNEUSE" + "codePostal": "98728", + "codeCommune": "98729", + "libelleAcheminement": "AFAREAITU", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "98880", - "codeCommune": "98813", - "libelleAcheminement": "LA FOA", - "nomCommune": "LA FOA" + "codePostal": "80890", + "codeCommune": "80205", + "libelleAcheminement": "CONDE FOLIE", + "nomCommune": "CONDE FOLIE" }, { - "codePostal": "84400", - "codeCommune": "84105", - "libelleAcheminement": "SAIGNON", - "nomCommune": "SAIGNON" + "codePostal": "97425", + "codeCommune": "97401", + "libelleAcheminement": "LES AVIRONS", + "nomCommune": "LES AVIRONS" }, { - "codePostal": "76110", - "codeCommune": "76141", - "libelleAcheminement": "BREAUTE", - "nomCommune": "BREAUTE" + "codePostal": "77440", + "codeCommune": "77490", + "libelleAcheminement": "VENDREST", + "nomCommune": "VENDREST" }, { - "codePostal": "91810", - "codeCommune": "91648", - "libelleAcheminement": "VERT LE GRAND", - "nomCommune": "VERT LE GRAND" + "codePostal": "98729", + "codeCommune": "98729", + "libelleAcheminement": "MAIAO", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "98885", - "codeCommune": "98814", - "libelleAcheminement": "MOU", - "nomCommune": "LIFOU" + "codePostal": "80135", + "codeCommune": "80215", + "libelleAcheminement": "COULONVILLERS", + "nomCommune": "COULONVILLERS" }, { - "codePostal": "84210", - "codeCommune": "84108", - "libelleAcheminement": "ST DIDIER", - "nomCommune": "ST DIDIER" + "codePostal": "97412", + "codeCommune": "97402", + "libelleAcheminement": "BRAS PANON", + "nomCommune": "BRAS PANON" }, { - "codePostal": "76560", - "codeCommune": "76144", - "libelleAcheminement": "BRETTEVILLE ST LAURENT", - "nomCommune": "BRETTEVILLE ST LAURENT" + "codePostal": "77230", + "codeCommune": "77511", + "libelleAcheminement": "VILLENEUVE SOUS DAMMARTIN", + "nomCommune": "VILLENEUVE SOUS DAMMARTIN" }, { - "codePostal": "91100", - "codeCommune": "91659", - "libelleAcheminement": "VILLABE", - "nomCommune": "VILLABE" + "codePostal": "98729", + "codeCommune": "98729", + "libelleAcheminement": "HAURU", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "98828", - "codeCommune": "98815", - "libelleAcheminement": "TADINE", - "nomCommune": "MARE" + "codePostal": "80500", + "codeCommune": "80220", + "libelleAcheminement": "COURTEMANCHE", + "nomCommune": "COURTEMANCHE" }, { - "codePostal": "84390", - "codeCommune": "84110", - "libelleAcheminement": "ST LEGER DU VENTOUX", - "nomCommune": "ST LEGER DU VENTOUX" + "codePostal": "97412", + "codeCommune": "97402", + "libelleAcheminement": "BRAS PANON", + "nomCommune": "BRAS PANON" }, { - "codePostal": "76460", - "codeCommune": "76151", - "libelleAcheminement": "CAILLEVILLE", - "nomCommune": "CAILLEVILLE" + "codePostal": "77130", + "codeCommune": "77516", + "libelleAcheminement": "VILLE ST JACQUES", + "nomCommune": "VILLE ST JACQUES" }, { - "codePostal": "91140", - "codeCommune": "91661", - "libelleAcheminement": "VILLEBON SUR YVETTE", - "nomCommune": "VILLEBON SUR YVETTE" + "codePostal": "98729", + "codeCommune": "98729", + "libelleAcheminement": "PAPETOAI", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "98878", - "codeCommune": "98815", - "libelleAcheminement": "LA ROCHE", - "nomCommune": "MARE" + "codePostal": "80800", + "codeCommune": "80234", + "libelleAcheminement": "DAOURS", + "nomCommune": "DAOURS" }, { - "codePostal": "84390", - "codeCommune": "84123", - "libelleAcheminement": "SAULT", - "nomCommune": "SAULT" + "codePostal": "97419", + "codeCommune": "97408", + "libelleAcheminement": "LA POSSESSION", + "nomCommune": "LA POSSESSION" }, { - "codePostal": "76340", - "codeCommune": "76154", - "libelleAcheminement": "CAMPNEUSEVILLE", - "nomCommune": "CAMPNEUSEVILLE" + "codePostal": "77410", + "codeCommune": "77517", + "libelleAcheminement": "VILLEVAUDE", + "nomCommune": "VILLEVAUDE" }, { - "codePostal": "91170", - "codeCommune": "91687", - "libelleAcheminement": "VIRY CHATILLON", - "nomCommune": "VIRY CHATILLON" + "codePostal": "98729", + "codeCommune": "98729", + "libelleAcheminement": "TIAHURA", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "98822", - "codeCommune": "98822", - "libelleAcheminement": "POINDIMIE", - "nomCommune": "POINDIMIE" + "codePostal": "80370", + "codeCommune": "80245", + "libelleAcheminement": "DOMLEGER LONGVILLERS", + "nomCommune": "DOMLEGER LONGVILLERS" }, { - "codePostal": "84700", - "codeCommune": "84129", - "libelleAcheminement": "SORGUES", - "nomCommune": "SORGUES" + "codePostal": "97419", + "codeCommune": "97408", + "libelleAcheminement": "LA POSSESSION", + "nomCommune": "LA POSSESSION" }, { - "codePostal": "76260", - "codeCommune": "76155", - "libelleAcheminement": "CANEHAN", - "nomCommune": "CANEHAN" + "codePostal": "77190", + "codeCommune": "77518", + "libelleAcheminement": "VILLIERS EN BIERE", + "nomCommune": "VILLIERS EN BIERE" }, { - "codePostal": "92290", - "codeCommune": "92019", - "libelleAcheminement": "CHATENAY MALABRY", - "nomCommune": "CHATENAY MALABRY" + "codePostal": "98729", + "codeCommune": "98729", + "libelleAcheminement": "VAIANAE", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "98829", - "codeCommune": "98829", - "libelleAcheminement": "THIO", - "nomCommune": "THIO" + "codePostal": "80140", + "codeCommune": "80251", + "libelleAcheminement": "DOUDELAINVILLE", + "nomCommune": "DOUDELAINVILLE" }, { - "codePostal": "84750", - "codeCommune": "84144", - "libelleAcheminement": "VIENS", - "nomCommune": "VIENS" + "codePostal": "97419", + "codeCommune": "97408", + "libelleAcheminement": "LA POSSESSION", + "nomCommune": "LA POSSESSION" }, { - "codePostal": "76490", - "codeCommune": "76164", - "libelleAcheminement": "RIVES EN SEINE", - "nomCommune": "RIVES EN SEINE" + "codePostal": "77580", + "codeCommune": "77521", + "libelleAcheminement": "VILLIERS SUR MORIN", + "nomCommune": "VILLIERS SUR MORIN" }, { - "codePostal": "92140", - "codeCommune": "92023", - "libelleAcheminement": "CLAMART", - "nomCommune": "CLAMART" + "codePostal": "98742", + "codeCommune": "98731", + "libelleAcheminement": "TAIOHAE", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "98833", - "codeCommune": "98831", - "libelleAcheminement": "VOH", - "nomCommune": "VOH" + "codePostal": "80700", + "codeCommune": "80263", + "libelleAcheminement": "L ECHELLE ST AURIN", + "nomCommune": "L ECHELLE ST AURIN" }, { - "codePostal": "85120", - "codeCommune": "85005", - "libelleAcheminement": "ANTIGNY", - "nomCommune": "ANTIGNY" + "codePostal": "97400", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "76320", - "codeCommune": "76165", - "libelleAcheminement": "CAUDEBEC LES ELBEUF", - "nomCommune": "CAUDEBEC LES ELBEUF" + "codePostal": "77520", + "codeCommune": "77524", + "libelleAcheminement": "VIMPELLES", + "nomCommune": "VIMPELLES" }, { - "codePostal": "92110", - "codeCommune": "92024", - "libelleAcheminement": "CLICHY", - "nomCommune": "CLICHY" + "codePostal": "98796", + "codeCommune": "98731", + "libelleAcheminement": "EIAO", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "98834", - "codeCommune": "98832", - "libelleAcheminement": "YATE", - "nomCommune": "YATE" + "codePostal": "80290", + "codeCommune": "80276", + "libelleAcheminement": "EQUENNES ERAMECOURT", + "nomCommune": "EQUENNES ERAMECOURT" }, { - "codePostal": "85430", - "codeCommune": "85008", - "libelleAcheminement": "AUBIGNY LES CLOUZEAUX", - "nomCommune": "AUBIGNY LES CLOUZEAUX" + "codePostal": "97400", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "76390", - "codeCommune": "76166", - "libelleAcheminement": "LE CAULE STE BEUVE", - "nomCommune": "LE CAULE STE BEUVE" + "codePostal": "77540", + "codeCommune": "77527", + "libelleAcheminement": "VOINSLES", + "nomCommune": "VOINSLES" }, { - "codePostal": "92130", - "codeCommune": "92040", - "libelleAcheminement": "ISSY LES MOULINEAUX", - "nomCommune": "ISSY LES MOULINEAUX" + "codePostal": "98788", + "codeCommune": "98732", + "libelleAcheminement": "TEMANUFAARA", + "nomCommune": "NUKUTAVAKE" }, { - "codePostal": "98000", - "codeCommune": "99138", - "libelleAcheminement": "MONACO", - "nomCommune": "MONACO" + "codePostal": "80500", + "codeCommune": "80278", + "libelleAcheminement": "ERCHES", + "nomCommune": "ERCHES" }, { - "codePostal": "85200", - "codeCommune": "85009", - "libelleAcheminement": "AUCHAY SUR VENDEE", - "nomCommune": "AUCHAY SUR VENDEE" + "codePostal": "97490", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "76590", - "codeCommune": "76168", - "libelleAcheminement": "LES CENT ACRES", - "nomCommune": "LES CENT ACRES" + "codePostal": "78660", + "codeCommune": "78003", + "libelleAcheminement": "ABLIS", + "nomCommune": "ABLIS" }, { - "codePostal": "92120", - "codeCommune": "92049", - "libelleAcheminement": "MONTROUGE", - "nomCommune": "MONTROUGE" + "codePostal": "98776", + "codeCommune": "98740", + "libelleAcheminement": "TIPUTA", + "nomCommune": "RANGIROA" }, { - "codePostal": "85170", - "codeCommune": "85019", - "libelleAcheminement": "BELLEVIGNY", - "nomCommune": "BELLEVIGNY" + "codePostal": "80200", + "codeCommune": "80288", + "libelleAcheminement": "ESTREES DENIECOURT", + "nomCommune": "ESTREES DENIECOURT" }, { - "codePostal": "76590", - "codeCommune": "76170", - "libelleAcheminement": "LA CHAPELLE DU BOURGAY", - "nomCommune": "LA CHAPELLE DU BOURGAY" + "codePostal": "97490", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "92350", - "codeCommune": "92060", - "libelleAcheminement": "LE PLESSIS ROBINSON", - "nomCommune": "LE PLESSIS ROBINSON" + "codePostal": "78580", + "codeCommune": "78049", + "libelleAcheminement": "BAZEMONT", + "nomCommune": "BAZEMONT" }, { - "codePostal": "85320", - "codeCommune": "85023", - "libelleAcheminement": "BESSAY", - "nomCommune": "BESSAY" + "codePostal": "98790", + "codeCommune": "98740", + "libelleAcheminement": "VAITEPAUA", + "nomCommune": "RANGIROA" }, { - "codePostal": "76660", - "codeCommune": "76175", - "libelleAcheminement": "CLAIS", - "nomCommune": "CLAIS" + "codePostal": "80360", + "codeCommune": "80298", + "libelleAcheminement": "ETRICOURT MANANCOURT", + "nomCommune": "ETRICOURT MANANCOURT" }, { - "codePostal": "92350", - "codeCommune": "92060", - "libelleAcheminement": "LE PLESSIS ROBINSON", - "nomCommune": "LE PLESSIS ROBINSON" + "codePostal": "97480", + "codeCommune": "97412", + "libelleAcheminement": "ST JOSEPH", + "nomCommune": "ST JOSEPH" }, { - "codePostal": "85470", - "codeCommune": "85035", - "libelleAcheminement": "BRETIGNOLLES SUR MER", - "nomCommune": "BRETIGNOLLES SUR MER" + "codePostal": "78910", + "codeCommune": "78053", + "libelleAcheminement": "BEHOUST", + "nomCommune": "BEHOUST" }, { - "codePostal": "76640", - "codeCommune": "76181", - "libelleAcheminement": "CLEVILLE", - "nomCommune": "CLEVILLE" + "codePostal": "98780", + "codeCommune": "98742", + "libelleAcheminement": "MARAUTAGAROA", + "nomCommune": "REAO" }, { - "codePostal": "92170", - "codeCommune": "92075", - "libelleAcheminement": "VANVES", - "nomCommune": "VANVES" + "codePostal": "80500", + "codeCommune": "80302", + "libelleAcheminement": "FAVEROLLES", + "nomCommune": "FAVEROLLES" }, { - "codePostal": "85320", - "codeCommune": "85036", - "libelleAcheminement": "LA BRETONNIERE LA CLAYE", - "nomCommune": "LA BRETONNIERE LA CLAYE" + "codePostal": "97480", + "codeCommune": "97412", + "libelleAcheminement": "ST JOSEPH", + "nomCommune": "ST JOSEPH" }, { - "codePostal": "76390", - "codeCommune": "76186", - "libelleAcheminement": "CONTEVILLE", - "nomCommune": "CONTEVILLE" + "codePostal": "78650", + "codeCommune": "78062", + "libelleAcheminement": "BEYNES", + "nomCommune": "BEYNES" }, { - "codePostal": "92390", - "codeCommune": "92078", - "libelleAcheminement": "VILLENEUVE LA GARENNE", - "nomCommune": "VILLENEUVE LA GARENNE" + "codePostal": "98752", + "codeCommune": "98743", + "libelleAcheminement": "ANAPOTO", + "nomCommune": "RIMATARA" }, { - "codePostal": "85220", - "codeCommune": "85045", - "libelleAcheminement": "LA CHAIZE GIRAUD", - "nomCommune": "LA CHAIZE GIRAUD" + "codePostal": "80470", + "codeCommune": "80305", + "libelleAcheminement": "FERRIERES", + "nomCommune": "FERRIERES" }, { - "codePostal": "76760", - "codeCommune": "76198", - "libelleAcheminement": "CRIQUETOT SUR OUVILLE", - "nomCommune": "CRIQUETOT SUR OUVILLE" + "codePostal": "97416", + "codeCommune": "97413", + "libelleAcheminement": "ST LEU", + "nomCommune": "ST LEU" }, { - "codePostal": "93300", - "codeCommune": "93001", - "libelleAcheminement": "AUBERVILLIERS", - "nomCommune": "AUBERVILLIERS" + "codePostal": "78270", + "codeCommune": "78089", + "libelleAcheminement": "BONNIERES SUR SEINE", + "nomCommune": "BONNIERES SUR SEINE" }, { - "codePostal": "85310", - "codeCommune": "85046", - "libelleAcheminement": "LA CHAIZE LE VICOMTE", - "nomCommune": "LA CHAIZE LE VICOMTE" + "codePostal": "98752", + "codeCommune": "98743", + "libelleAcheminement": "MUTUAURA", + "nomCommune": "RIMATARA" }, { - "codePostal": "76390", - "codeCommune": "76199", - "libelleAcheminement": "CRIQUIERS", - "nomCommune": "CRIQUIERS" + "codePostal": "80200", + "codeCommune": "80307", + "libelleAcheminement": "FEUILLERES", + "nomCommune": "FEUILLERES" }, { - "codePostal": "93170", - "codeCommune": "93006", - "libelleAcheminement": "BAGNOLET", - "nomCommune": "BAGNOLET" + "codePostal": "97460", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "85300", - "codeCommune": "85047", - "libelleAcheminement": "CHALLANS", - "nomCommune": "CHALLANS" + "codePostal": "78930", + "codeCommune": "78104", + "libelleAcheminement": "BREUIL BOIS ROBERT", + "nomCommune": "BREUIL BOIS ROBERT" }, { - "codePostal": "76220", - "codeCommune": "76209", - "libelleAcheminement": "DAMPIERRE EN BRAY", - "nomCommune": "DAMPIERRE EN BRAY" + "codePostal": "98753", + "codeCommune": "98744", + "libelleAcheminement": "AVERA", + "nomCommune": "RURUTU" }, { - "codePostal": "93440", - "codeCommune": "93030", - "libelleAcheminement": "DUGNY", - "nomCommune": "DUGNY" + "codePostal": "80750", + "codeCommune": "80310", + "libelleAcheminement": "FIENVILLERS", + "nomCommune": "FIENVILLERS" }, { - "codePostal": "85610", - "codeCommune": "85076", - "libelleAcheminement": "CUGAND", - "nomCommune": "CUGAND" + "codePostal": "97438", + "codeCommune": "97418", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "76110", - "codeCommune": "76213", - "libelleAcheminement": "DAUBEUF SERVILLE", - "nomCommune": "DAUBEUF SERVILLE" + "codePostal": "78980", + "codeCommune": "78107", + "libelleAcheminement": "BREVAL", + "nomCommune": "BREVAL" }, { - "codePostal": "93800", - "codeCommune": "93031", - "libelleAcheminement": "EPINAY SUR SEINE", - "nomCommune": "EPINAY SUR SEINE" + "codePostal": "98733", + "codeCommune": "98745", + "libelleAcheminement": "RUUTIA", + "nomCommune": "TAHAA" }, { - "codePostal": "85200", - "codeCommune": "85092", - "libelleAcheminement": "FONTENAY LE COMTE", - "nomCommune": "FONTENAY LE COMTE" + "codePostal": "80360", + "codeCommune": "80314", + "libelleAcheminement": "FLERS", + "nomCommune": "FLERS" }, { - "codePostal": "76200", - "codeCommune": "76217", - "libelleAcheminement": "DIEPPE", - "nomCommune": "DIEPPE" + "codePostal": "97439", + "codeCommune": "97419", + "libelleAcheminement": "STE ROSE", + "nomCommune": "STE ROSE" }, { - "codePostal": "93450", - "codeCommune": "93039", - "libelleAcheminement": "L ILE ST DENIS", - "nomCommune": "L ILE ST DENIS" + "codePostal": "78830", + "codeCommune": "78120", + "libelleAcheminement": "BULLION", + "nomCommune": "BULLION" }, { - "codePostal": "85480", - "codeCommune": "85093", - "libelleAcheminement": "FOUGERE", - "nomCommune": "FOUGERE" + "codePostal": "98733", + "codeCommune": "98745", + "libelleAcheminement": "TAPUAMU", + "nomCommune": "TAHAA" }, { - "codePostal": "76220", - "codeCommune": "76229", - "libelleAcheminement": "ELBEUF EN BRAY", - "nomCommune": "ELBEUF EN BRAY" + "codePostal": "80540", + "codeCommune": "80319", + "libelleAcheminement": "FLUY", + "nomCommune": "FLUY" }, { - "codePostal": "93100", - "codeCommune": "93048", - "libelleAcheminement": "MONTREUIL", - "nomCommune": "MONTREUIL" + "codePostal": "97439", + "codeCommune": "97419", + "libelleAcheminement": "STE ROSE", + "nomCommune": "STE ROSE" }, { - "codePostal": "85300", - "codeCommune": "85095", - "libelleAcheminement": "FROIDFOND", - "nomCommune": "FROIDFOND" + "codePostal": "78720", + "codeCommune": "78125", + "libelleAcheminement": "LA CELLE LES BORDES", + "nomCommune": "LA CELLE LES BORDES" }, { - "codePostal": "76500", - "codeCommune": "76231", - "libelleAcheminement": "ELBEUF", - "nomCommune": "ELBEUF" + "codePostal": "98734", + "codeCommune": "98745", + "libelleAcheminement": "VAITOARE", + "nomCommune": "TAHAA" }, { - "codePostal": "93360", - "codeCommune": "93049", - "libelleAcheminement": "NEUILLY PLAISANCE", - "nomCommune": "NEUILLY PLAISANCE" + "codePostal": "80340", + "codeCommune": "80325", + "libelleAcheminement": "FONTAINE LES CAPPY", + "nomCommune": "FONTAINE LES CAPPY" }, { - "codePostal": "85570", - "codeCommune": "85110", - "libelleAcheminement": "L HERMENAULT", - "nomCommune": "L HERMENAULT" + "codePostal": "97433", + "codeCommune": "97421", + "libelleAcheminement": "SALAZIE", + "nomCommune": "SALAZIE" }, { - "codePostal": "76540", - "codeCommune": "76232", - "libelleAcheminement": "ELETOT", - "nomCommune": "ELETOT" + "codePostal": "78270", + "codeCommune": "78147", + "libelleAcheminement": "CHAUFOUR LES BONNIERES", + "nomCommune": "CHAUFOUR LES BONNIERES" }, { - "codePostal": "93160", - "codeCommune": "93051", - "libelleAcheminement": "NOISY LE GRAND", - "nomCommune": "NOISY LE GRAND" + "codePostal": "98743", + "codeCommune": "98746", + "libelleAcheminement": "MOTOPU", + "nomCommune": "TAHUATA" }, { - "codePostal": "85110", - "codeCommune": "85115", - "libelleAcheminement": "LA JAUDONNIERE", - "nomCommune": "LA JAUDONNIERE" + "codePostal": "80510", + "codeCommune": "80328", + "libelleAcheminement": "FONTAINE SUR SOMME", + "nomCommune": "FONTAINE SUR SOMME" }, { - "codePostal": "76390", - "codeCommune": "76233", - "libelleAcheminement": "ELLECOURT", - "nomCommune": "ELLECOURT" + "codePostal": "97430", + "codeCommune": "97422", + "libelleAcheminement": "LE TAMPON", + "nomCommune": "LE TAMPON" }, { - "codePostal": "93110", - "codeCommune": "93064", - "libelleAcheminement": "ROSNY SOUS BOIS", - "nomCommune": "ROSNY SOUS BOIS" + "codePostal": "78150", + "codeCommune": "78158", + "libelleAcheminement": "LE CHESNAY ROCQUENCOURT", + "nomCommune": "LE CHESNAY ROCQUENCOURT" }, { - "codePostal": "85220", - "codeCommune": "85120", - "libelleAcheminement": "LANDEVIEILLE", - "nomCommune": "LANDEVIEILLE" + "codePostal": "98743", + "codeCommune": "98746", + "libelleAcheminement": "HANATETENA", + "nomCommune": "TAHUATA" }, { - "codePostal": "76710", - "codeCommune": "76245", - "libelleAcheminement": "ESLETTES", - "nomCommune": "ESLETTES" + "codePostal": "80560", + "codeCommune": "80329", + "libelleAcheminement": "FORCEVILLE EN AMIENOIS", + "nomCommune": "FORCEVILLE" }, { - "codePostal": "93200", - "codeCommune": "93066", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "97630", + "codeCommune": "97612", + "libelleAcheminement": "MTSAMBORO", + "nomCommune": "MTSAMBORO" }, { - "codePostal": "85420", - "codeCommune": "85123", - "libelleAcheminement": "LIEZ", - "nomCommune": "LIEZ" + "codePostal": "78460", + "codeCommune": "78160", + "libelleAcheminement": "CHEVREUSE", + "nomCommune": "CHEVREUSE" }, { - "codePostal": "76850", - "codeCommune": "76249", - "libelleAcheminement": "ETAIMPUIS", - "nomCommune": "ETAIMPUIS" + "codePostal": "98723", + "codeCommune": "98748", + "libelleAcheminement": "TEAHUPOO", + "nomCommune": "TAIARAPU OUEST" }, { - "codePostal": "93400", - "codeCommune": "93070", - "libelleAcheminement": "ST OUEN SUR SEINE", - "nomCommune": "ST OUEN SUR SEINE" + "codePostal": "80340", + "codeCommune": "80335", + "libelleAcheminement": "FOUCAUCOURT EN SANTERRE", + "nomCommune": "FOUCAUCOURT EN SANTERRE" }, { - "codePostal": "85150", - "codeCommune": "85138", - "libelleAcheminement": "MARTINET", - "nomCommune": "MARTINET" + "codePostal": "97650", + "codeCommune": "97613", + "libelleAcheminement": "M TSANGAMOUJI", + "nomCommune": "M TSANGAMOUJI" }, { - "codePostal": "76340", - "codeCommune": "76257", - "libelleAcheminement": "FALLENCOURT", - "nomCommune": "FALLENCOURT" + "codePostal": "78270", + "codeCommune": "78188", + "libelleAcheminement": "CRAVENT", + "nomCommune": "CRAVENT" }, { - "codePostal": "93240", - "codeCommune": "93072", - "libelleAcheminement": "STAINS", - "nomCommune": "STAINS" + "codePostal": "98735", + "codeCommune": "98750", + "libelleAcheminement": "TAPUTAPUATEA", + "nomCommune": "TAPUTAPUATEA" }, { - "codePostal": "85140", - "codeCommune": "85142", - "libelleAcheminement": "LA MERLATIERE", - "nomCommune": "LA MERLATIERE" + "codePostal": "80140", + "codeCommune": "80336", + "libelleAcheminement": "FOUCAUCOURT HORS NESLE", + "nomCommune": "FOUCAUCOURT HORS NESLE" }, { - "codePostal": "76640", - "codeCommune": "76258", - "libelleAcheminement": "TERRES DE CAUX", - "nomCommune": "TERRES DE CAUX" + "codePostal": "97670", + "codeCommune": "97614", + "libelleAcheminement": "OUANGANI", + "nomCommune": "OUANGANI" }, { - "codePostal": "94470", - "codeCommune": "94004", - "libelleAcheminement": "BOISSY ST LEGER", - "nomCommune": "BOISSY ST LEGER" + "codePostal": "78990", + "codeCommune": "78208", + "libelleAcheminement": "ELANCOURT", + "nomCommune": "ELANCOURT" }, { - "codePostal": "85200", - "codeCommune": "85143", - "libelleAcheminement": "MERVENT", - "nomCommune": "MERVENT" + "codePostal": "98726", + "codeCommune": "98752", + "libelleAcheminement": "MATAIEA", + "nomCommune": "TEVA I UTA" }, { - "codePostal": "76640", - "codeCommune": "76258", - "libelleAcheminement": "TERRES DE CAUX", - "nomCommune": "TERRES DE CAUX" + "codePostal": "80210", + "codeCommune": "80345", + "libelleAcheminement": "FRANLEU", + "nomCommune": "FRANLEU" }, { - "codePostal": "94380", - "codeCommune": "94011", - "libelleAcheminement": "BONNEUIL SUR MARNE", - "nomCommune": "BONNEUIL SUR MARNE" + "codePostal": "98610", + "codeCommune": "98611", + "libelleAcheminement": "ALO", + "nomCommune": "ALO" }, { - "codePostal": "85600", - "codeCommune": "85146", - "libelleAcheminement": "MONTAIGU VENDEE", - "nomCommune": "MONTAIGU VENDEE" + "codePostal": "78690", + "codeCommune": "78220", + "libelleAcheminement": "LES ESSARTS LE ROI", + "nomCommune": "LES ESSARTS LE ROI" }, { - "codePostal": "76290", - "codeCommune": "76275", - "libelleAcheminement": "FONTENAY", - "nomCommune": "FONTENAY" + "codePostal": "98754", + "codeCommune": "98753", + "libelleAcheminement": "MAHU", + "nomCommune": "TUBUAI" }, { - "codePostal": "94500", - "codeCommune": "94017", - "libelleAcheminement": "CHAMPIGNY SUR MARNE", - "nomCommune": "CHAMPIGNY SUR MARNE" + "codePostal": "80620", + "codeCommune": "80348", + "libelleAcheminement": "FRANSU", + "nomCommune": "FRANSU" }, { - "codePostal": "85540", - "codeCommune": "85156", - "libelleAcheminement": "MOUTIERS LES MAUXFAITS", - "nomCommune": "MOUTIERS LES MAUXFAITS" + "codePostal": "98790", + "codeCommune": "98711", + "libelleAcheminement": "TEPUPAHEA", + "nomCommune": "ANAA" }, { - "codePostal": "76440", - "codeCommune": "76276", - "libelleAcheminement": "FORGES LES EAUX", - "nomCommune": "FORGES LES EAUX" + "codePostal": "78200", + "codeCommune": "78231", + "libelleAcheminement": "FAVRIEUX", + "nomCommune": "FAVRIEUX" }, { - "codePostal": "94600", - "codeCommune": "94022", - "libelleAcheminement": "CHOISY LE ROI", - "nomCommune": "CHOISY LE ROI" + "codePostal": "98747", + "codeCommune": "98756", + "libelleAcheminement": "HANE", + "nomCommune": "UA HUKA" }, { - "codePostal": "85370", - "codeCommune": "85158", - "libelleAcheminement": "MOUZEUIL ST MARTIN", - "nomCommune": "MOUZEUIL ST MARTIN" + "codePostal": "80160", + "codeCommune": "80349", + "libelleAcheminement": "FRANSURES", + "nomCommune": "FRANSURES" }, { - "codePostal": "76640", - "codeCommune": "76279", - "libelleAcheminement": "FOUCART", - "nomCommune": "FOUCART" + "codePostal": "98790", + "codeCommune": "98716", + "libelleAcheminement": "TOAU", + "nomCommune": "FAKARAVA" }, { - "codePostal": "94260", - "codeCommune": "94034", - "libelleAcheminement": "FRESNES", - "nomCommune": "FRESNES" + "codePostal": "78840", + "codeCommune": "78255", + "libelleAcheminement": "FRENEUSE", + "nomCommune": "FRENEUSE" }, { - "codePostal": "85370", - "codeCommune": "85159", - "libelleAcheminement": "NALLIERS", - "nomCommune": "NALLIERS" + "codePostal": "98812", + "codeCommune": "98802", + "libelleAcheminement": "BOULOUPARIS", + "nomCommune": "BOULOUPARI" }, { - "codePostal": "76850", - "codeCommune": "76284", - "libelleAcheminement": "FRESNAY LE LONG", - "nomCommune": "FRESNAY LE LONG" + "codePostal": "80800", + "codeCommune": "80350", + "libelleAcheminement": "FRANVILLERS", + "nomCommune": "FRANVILLERS" }, { - "codePostal": "94490", - "codeCommune": "94055", - "libelleAcheminement": "ORMESSON SUR MARNE", - "nomCommune": "ORMESSON SUR MARNE" + "codePostal": "98765", + "codeCommune": "98717", + "libelleAcheminement": "TEANA", + "nomCommune": "FANGATAU" }, { - "codePostal": "85430", - "codeCommune": "85161", - "libelleAcheminement": "NIEUL LE DOLENT", - "nomCommune": "NIEUL LE DOLENT" + "codePostal": "78250", + "codeCommune": "78261", + "libelleAcheminement": "GAILLON SUR MONTCIENT", + "nomCommune": "GAILLON SUR MONTCIENT" }, { - "codePostal": "76570", - "codeCommune": "76287", - "libelleAcheminement": "FRESQUIENNES", - "nomCommune": "FRESQUIENNES" + "codePostal": "98836", + "codeCommune": "98805", + "libelleAcheminement": "DUMBEA GA", + "nomCommune": "DUMBEA" }, { - "codePostal": "94170", - "codeCommune": "94058", - "libelleAcheminement": "LE PERREUX SUR MARNE", - "nomCommune": "LE PERREUX SUR MARNE" + "codePostal": "80260", + "codeCommune": "80351", + "libelleAcheminement": "FRECHENCOURT", + "nomCommune": "FRECHENCOURT" }, { - "codePostal": "85570", - "codeCommune": "85174", - "libelleAcheminement": "PETOSSE", - "nomCommune": "PETOSSE" + "codePostal": "98766", + "codeCommune": "98717", + "libelleAcheminement": "TARIONE", + "nomCommune": "FANGATAU" }, { - "codePostal": "76190", - "codeCommune": "76289", - "libelleAcheminement": "ST MARTIN DE L IF", - "nomCommune": "ST MARTIN DE L IF" + "codePostal": "78950", + "codeCommune": "78263", + "libelleAcheminement": "GAMBAIS", + "nomCommune": "GAMBAIS" }, { - "codePostal": "94420", - "codeCommune": "94059", - "libelleAcheminement": "LE PLESSIS TREVISE", - "nomCommune": "LE PLESSIS TREVISE" + "codePostal": "98815", + "codeCommune": "98807", + "libelleAcheminement": "HIENGHENE", + "nomCommune": "HIENGHENE" }, { - "codePostal": "85170", - "codeCommune": "85178", - "libelleAcheminement": "LE POIRE SUR VIE", - "nomCommune": "LE POIRE SUR VIE" + "codePostal": "80320", + "codeCommune": "80353", + "libelleAcheminement": "FRESNES MAZANCOURT", + "nomCommune": "FRESNES MAZANCOURT" }, { - "codePostal": "76400", - "codeCommune": "76291", - "libelleAcheminement": "FROBERVILLE", - "nomCommune": "FROBERVILLE" + "codePostal": "98740", + "codeCommune": "98718", + "libelleAcheminement": "OMOA", + "nomCommune": "FATU HIVA" }, { - "codePostal": "94100", - "codeCommune": "94068", - "libelleAcheminement": "ST MAUR DES FOSSES", - "nomCommune": "ST MAUR DES FOSSES" + "codePostal": "78490", + "codeCommune": "78264", + "libelleAcheminement": "GAMBAISEUIL", + "nomCommune": "GAMBAISEUIL" }, { - "codePostal": "85440", - "codeCommune": "85179", - "libelleAcheminement": "POIROUX", - "nomCommune": "POIROUX" + "codePostal": "98832", + "codeCommune": "98809", + "libelleAcheminement": "VAO", + "nomCommune": "L ILE DES PINS" }, { - "codePostal": "76790", - "codeCommune": "76300", - "libelleAcheminement": "GERVILLE", - "nomCommune": "GERVILLE" + "codePostal": "80290", + "codeCommune": "80357", + "libelleAcheminement": "FRESNOY AU VAL", + "nomCommune": "FRESNOY AU VAL" }, { - "codePostal": "94410", - "codeCommune": "94069", - "libelleAcheminement": "ST MAURICE", - "nomCommune": "ST MAURICE" + "codePostal": "98755", + "codeCommune": "98719", + "libelleAcheminement": "MANGAREVA", + "nomCommune": "GAMBIER" }, { - "codePostal": "85210", - "codeCommune": "85188", - "libelleAcheminement": "LA REORTHE", - "nomCommune": "LA REORTHE" + "codePostal": "78890", + "codeCommune": "78265", + "libelleAcheminement": "GARANCIERES", + "nomCommune": "GARANCIERES" }, { - "codePostal": "76700", - "codeCommune": "76305", - "libelleAcheminement": "GONFREVILLE L ORCHER", - "nomCommune": "GONFREVILLE L ORCHER" + "codePostal": "98810", + "codeCommune": "98817", + "libelleAcheminement": "MONT DORE", + "nomCommune": "LE MONT DORE" }, { - "codePostal": "94350", - "codeCommune": "94079", - "libelleAcheminement": "VILLIERS SUR MARNE", - "nomCommune": "VILLIERS SUR MARNE" + "codePostal": "80700", + "codeCommune": "80383", + "libelleAcheminement": "GOYENCOURT", + "nomCommune": "GOYENCOURT" }, { - "codePostal": "85270", - "codeCommune": "85189", - "libelleAcheminement": "NOTRE DAME DE RIEZ", - "nomCommune": "NOTRE DAME DE RIEZ" + "codePostal": "98755", + "codeCommune": "98719", + "libelleAcheminement": "TARAVAI", + "nomCommune": "GAMBIER" }, { - "codePostal": "76450", - "codeCommune": "76315", - "libelleAcheminement": "GRAINVILLE LA TEINTURIERE", - "nomCommune": "GRAINVILLE LA TEINTURIERE" + "codePostal": "78440", + "codeCommune": "78267", + "libelleAcheminement": "GARGENVILLE", + "nomCommune": "GARGENVILLE" }, { - "codePostal": "95710", - "codeCommune": "95011", - "libelleAcheminement": "AMBLEVILLE", - "nomCommune": "AMBLEVILLE" + "codePostal": "98824", + "codeCommune": "98824", + "libelleAcheminement": "POUEBO", + "nomCommune": "POUEBO" }, { - "codePostal": "85000", - "codeCommune": "85191", - "libelleAcheminement": "LA ROCHE SUR YON", - "nomCommune": "LA ROCHE SUR YON" + "codePostal": "80360", + "codeCommune": "80397", + "libelleAcheminement": "GUEUDECOURT", + "nomCommune": "GUEUDECOURT" }, { - "codePostal": "76110", - "codeCommune": "76317", - "libelleAcheminement": "GRAINVILLE YMAUVILLE", - "nomCommune": "GRAINVILLE YMAUVILLE" + "codePostal": "98792", + "codeCommune": "98719", + "libelleAcheminement": "MORANE", + "nomCommune": "GAMBIER" }, { - "codePostal": "95570", - "codeCommune": "95028", - "libelleAcheminement": "ATTAINVILLE", - "nomCommune": "ATTAINVILLE" + "codePostal": "78520", + "codeCommune": "78290", + "libelleAcheminement": "GUERNES", + "nomCommune": "GUERNES" }, { - "codePostal": "85250", - "codeCommune": "85196", - "libelleAcheminement": "ST ANDRE GOULE D OIE", - "nomCommune": "ST ANDRE GOULE D OIE" + "codePostal": "98825", + "codeCommune": "98825", + "libelleAcheminement": "POUEMBOUT", + "nomCommune": "POUEMBOUT" }, { - "codePostal": "76270", - "codeCommune": "76323", - "libelleAcheminement": "GRAVAL", - "nomCommune": "GRAVAL" + "codePostal": "80490", + "codeCommune": "80406", + "libelleAcheminement": "HALLENCOURT", + "nomCommune": "HALLENCOURT" }, { - "codePostal": "95560", - "codeCommune": "95042", - "libelleAcheminement": "BAILLET EN FRANCE", - "nomCommune": "BAILLET EN FRANCE" + "codePostal": "98767", + "codeCommune": "98720", + "libelleAcheminement": "OTEPA", + "nomCommune": "HAO" }, { - "codePostal": "85210", - "codeCommune": "85199", - "libelleAcheminement": "ST AUBIN LA PLAINE", - "nomCommune": "ST AUBIN LA PLAINE" + "codePostal": "78440", + "codeCommune": "78296", + "libelleAcheminement": "GUITRANCOURT", + "nomCommune": "GUITRANCOURT" }, { - "codePostal": "76370", - "codeCommune": "76324", - "libelleAcheminement": "GREGES", - "nomCommune": "GREGES" + "codePostal": "98882", + "codeCommune": "98828", + "libelleAcheminement": "SARRAMEA", + "nomCommune": "SARRAMEA" }, { - "codePostal": "95260", - "codeCommune": "95052", - "libelleAcheminement": "BEAUMONT SUR OISE", - "nomCommune": "BEAUMONT SUR OISE" + "codePostal": "80250", + "codeCommune": "80407", + "libelleAcheminement": "HALLIVILLERS", + "nomCommune": "HALLIVILLERS" }, { - "codePostal": "85310", - "codeCommune": "85213", - "libelleAcheminement": "RIVES DE L YON", - "nomCommune": "RIVES DE L YON" + "codePostal": "98708", + "codeCommune": "98722", + "libelleAcheminement": "TIAREI", + "nomCommune": "HITIAA O TE RA" }, { - "codePostal": "76440", - "codeCommune": "76332", - "libelleAcheminement": "GRUMESNIL", - "nomCommune": "GRUMESNIL" + "codePostal": "78790", + "codeCommune": "78300", + "libelleAcheminement": "HARGEVILLE", + "nomCommune": "HARGEVILLE" }, { - "codePostal": "95800", - "codeCommune": "95127", - "libelleAcheminement": "CERGY", - "nomCommune": "CERGY" + "codePostal": "98831", + "codeCommune": "98830", + "libelleAcheminement": "TOUHO", + "nomCommune": "TOUHO" }, { - "codePostal": "85400", - "codeCommune": "85216", - "libelleAcheminement": "STE GEMME LA PLAINE", - "nomCommune": "STE GEMME LA PLAINE" + "codePostal": "80110", + "codeCommune": "80414", + "libelleAcheminement": "HANGARD", + "nomCommune": "HANGARD" }, { - "codePostal": "76390", - "codeCommune": "76344", - "libelleAcheminement": "HAUDRICOURT", - "nomCommune": "HAUDRICOURT" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "HUAHINE", + "nomCommune": "HUAHINE" }, { - "codePostal": "95660", - "codeCommune": "95134", - "libelleAcheminement": "CHAMPAGNE SUR OISE", - "nomCommune": "CHAMPAGNE SUR OISE" + "codePostal": "78820", + "codeCommune": "78327", + "libelleAcheminement": "JUZIERS", + "nomCommune": "JUZIERS" }, { - "codePostal": "85110", - "codeCommune": "85220", - "libelleAcheminement": "ST GERMAIN DE PRINCAY", - "nomCommune": "ST GERMAIN DE PRINCAY" + "codePostal": "80132", + "codeCommune": "80422", + "libelleAcheminement": "HAUTVILLERS OUVILLE", + "nomCommune": "HAUTVILLERS OUVILLE" }, { - "codePostal": "76450", - "codeCommune": "76346", - "libelleAcheminement": "HAUTOT L AUVRAY", - "nomCommune": "HAUTOT L AUVRAY" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "TEFARERII", + "nomCommune": "HUAHINE" }, { - "codePostal": "95420", - "codeCommune": "95139", - "libelleAcheminement": "LA CHAPELLE EN VEXIN", - "nomCommune": "LA CHAPELLE EN VEXIN" + "codePostal": "78730", + "codeCommune": "78349", + "libelleAcheminement": "LONGVILLIERS", + "nomCommune": "LONGVILLIERS" }, { - "codePostal": "85800", - "codeCommune": "85222", - "libelleAcheminement": "ST GILLES CROIX DE VIE", - "nomCommune": "ST GILLES CROIX DE VIE" + "codePostal": "80560", + "codeCommune": "80425", + "libelleAcheminement": "HEDAUVILLE", + "nomCommune": "HEDAUVILLE" }, { - "codePostal": "76610", - "codeCommune": "76351", - "libelleAcheminement": "LE HAVRE", - "nomCommune": "LE HAVRE" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "MAEVA", + "nomCommune": "HUAHINE" }, { - "codePostal": "95380", - "codeCommune": "95154", - "libelleAcheminement": "CHENNEVIERES LES LOUVRES", - "nomCommune": "CHENNEVIERES LES LOUVRES" + "codePostal": "78310", + "codeCommune": "78383", + "libelleAcheminement": "MAUREPAS", + "nomCommune": "MAUREPAS" }, { - "codePostal": "85240", - "codeCommune": "85227", - "libelleAcheminement": "ST HILAIRE DES LOGES", - "nomCommune": "ST HILAIRE DES LOGES" + "codePostal": "80360", + "codeCommune": "80428", + "libelleAcheminement": "HEM MONACU", + "nomCommune": "HEM MONACU" }, { - "codePostal": "76280", - "codeCommune": "76357", - "libelleAcheminement": "HERMEVILLE", - "nomCommune": "HERMEVILLE" + "codePostal": "98789", + "codeCommune": "98726", + "libelleAcheminement": "HITIANAU", + "nomCommune": "MAKEMO" }, { - "codePostal": "95830", - "codeCommune": "95177", - "libelleAcheminement": "CORMEILLES EN VEXIN", - "nomCommune": "CORMEILLES EN VEXIN" + "codePostal": "78270", + "codeCommune": "78391", + "libelleAcheminement": "MERICOURT", + "nomCommune": "MERICOURT" }, { - "codePostal": "85210", - "codeCommune": "85235", - "libelleAcheminement": "ST JUIRE CHAMPGILLON", - "nomCommune": "ST JUIRE CHAMPGILLON" + "codePostal": "80200", + "codeCommune": "80430", + "libelleAcheminement": "HERBECOURT", + "nomCommune": "HERBECOURT" }, { - "codePostal": "76720", - "codeCommune": "76360", - "libelleAcheminement": "HEUGLEVILLE SUR SCIE", - "nomCommune": "HEUGLEVILLE SUR SCIE" + "codePostal": "98732", + "codeCommune": "98728", + "libelleAcheminement": "MOPELIA", + "nomCommune": "MAUPITI" }, { - "codePostal": "95650", - "codeCommune": "95181", - "libelleAcheminement": "COURCELLES SUR VIOSNE", - "nomCommune": "COURCELLES SUR VIOSNE" + "codePostal": "78600", + "codeCommune": "78396", + "libelleAcheminement": "LE MESNIL LE ROI", + "nomCommune": "LE MESNIL LE ROI" }, { - "codePostal": "85570", - "codeCommune": "85245", - "libelleAcheminement": "ST MARTIN DES FONTAINES", - "nomCommune": "ST MARTIN DES FONTAINES" + "codePostal": "80190", + "codeCommune": "80433", + "libelleAcheminement": "HERLY", + "nomCommune": "HERLY" }, { - "codePostal": "76570", - "codeCommune": "76370", - "libelleAcheminement": "HUGLEVILLE EN CAUX", - "nomCommune": "HUGLEVILLE EN CAUX" + "codePostal": "98728", + "codeCommune": "98729", + "libelleAcheminement": "TEAVARO", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "95800", - "codeCommune": "95183", - "libelleAcheminement": "COURDIMANCHE", - "nomCommune": "COURDIMANCHE" + "codePostal": "78320", + "codeCommune": "78397", + "libelleAcheminement": "LE MESNIL ST DENIS", + "nomCommune": "LE MESNIL ST DENIS" }, { - "codePostal": "85130", - "codeCommune": "85247", - "libelleAcheminement": "ST MARTIN DES TILLEULS", - "nomCommune": "ST MARTIN DES TILLEULS" + "codePostal": "80290", + "codeCommune": "80436", + "libelleAcheminement": "HESCAMPS", + "nomCommune": "HESCAMPS" }, { - "codePostal": "76230", - "codeCommune": "76377", - "libelleAcheminement": "ISNEAUVILLE", - "nomCommune": "ISNEAUVILLE" + "codePostal": "98728", + "codeCommune": "98729", + "libelleAcheminement": "TIAIA", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "95300", - "codeCommune": "95211", - "libelleAcheminement": "ENNERY", - "nomCommune": "ENNERY" + "codePostal": "78970", + "codeCommune": "78402", + "libelleAcheminement": "MEZIERES SUR SEINE", + "nomCommune": "MEZIERES SUR SEINE" }, { - "codePostal": "85120", - "codeCommune": "85251", - "libelleAcheminement": "ST MAURICE DES NOUES", - "nomCommune": "ST MAURICE DES NOUES" + "codePostal": "80122", + "codeCommune": "80438", + "libelleAcheminement": "HEUDICOURT", + "nomCommune": "HEUDICOURT" }, { - "codePostal": "76480", - "codeCommune": "76378", - "libelleAcheminement": "JUMIEGES", - "nomCommune": "JUMIEGES" + "codePostal": "98729", + "codeCommune": "98729", + "libelleAcheminement": "PIHAENA", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "95270", - "codeCommune": "95214", - "libelleAcheminement": "EPINAY CHAMPLATREUX", - "nomCommune": "EPINAY CHAMPLATREUX" + "codePostal": "78940", + "codeCommune": "78404", + "libelleAcheminement": "MILLEMONT", + "nomCommune": "MILLEMONT" }, { - "codePostal": "85500", - "codeCommune": "85259", - "libelleAcheminement": "ST PAUL EN PAREDS", - "nomCommune": "ST PAUL EN PAREDS" + "codePostal": "80370", + "codeCommune": "80439", + "libelleAcheminement": "HEUZECOURT", + "nomCommune": "HEUZECOURT" }, { - "codePostal": "76540", - "codeCommune": "76386", - "libelleAcheminement": "LIMPIVILLE", - "nomCommune": "LIMPIVILLE" + "codePostal": "98742", + "codeCommune": "98731", + "libelleAcheminement": "NUKUATAHA", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "95460", - "codeCommune": "95229", - "libelleAcheminement": "EZANVILLE", - "nomCommune": "EZANVILLE" + "codePostal": "78360", + "codeCommune": "78418", + "libelleAcheminement": "MONTESSON", + "nomCommune": "MONTESSON" }, { - "codePostal": "85230", - "codeCommune": "85273", - "libelleAcheminement": "ST URBAIN", - "nomCommune": "ST URBAIN" + "codePostal": "80640", + "codeCommune": "80443", + "libelleAcheminement": "HORNOY LE BOURG", + "nomCommune": "HORNOY LE BOURG" }, { - "codePostal": "76590", - "codeCommune": "76389", - "libelleAcheminement": "LINTOT LES BOIS", - "nomCommune": "LINTOT LES BOIS" + "codePostal": "98742", + "codeCommune": "98731", + "libelleAcheminement": "TERRE DESERTE", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "95650", - "codeCommune": "95271", - "libelleAcheminement": "GENICOURT", - "nomCommune": "GENICOURT" + "codePostal": "78130", + "codeCommune": "78440", + "libelleAcheminement": "LES MUREAUX", + "nomCommune": "LES MUREAUX" }, { - "codePostal": "85300", - "codeCommune": "85284", - "libelleAcheminement": "SOULLANS", - "nomCommune": "SOULLANS" + "codePostal": "80800", + "codeCommune": "80449", + "libelleAcheminement": "IGNAUCOURT", + "nomCommune": "IGNAUCOURT" }, { - "codePostal": "76660", - "codeCommune": "76392", - "libelleAcheminement": "LONDINIERES", - "nomCommune": "LONDINIERES" + "codePostal": "98748", + "codeCommune": "98731", + "libelleAcheminement": "HATIHEU", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "95410", - "codeCommune": "95288", - "libelleAcheminement": "GROSLAY", - "nomCommune": "GROSLAY" + "codePostal": "78640", + "codeCommune": "78443", + "libelleAcheminement": "NEAUPHLE LE VIEUX", + "nomCommune": "NEAUPHLE LE VIEUX" }, { - "codePostal": "85130", - "codeCommune": "85293", - "libelleAcheminement": "TIFFAUGES", - "nomCommune": "TIFFAUGES" + "codePostal": "80300", + "codeCommune": "80451", + "libelleAcheminement": "IRLES", + "nomCommune": "IRLES" }, { - "codePostal": "76260", - "codeCommune": "76394", - "libelleAcheminement": "LONGROY", - "nomCommune": "LONGROY" + "codePostal": "98796", + "codeCommune": "98731", + "libelleAcheminement": "HATUTAA", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "95300", - "codeCommune": "95308", - "libelleAcheminement": "HEROUVILLE EN VEXIN", - "nomCommune": "HEROUVILLE EN VEXIN" + "codePostal": "78125", + "codeCommune": "78464", + "libelleAcheminement": "ORCEMONT", + "nomCommune": "ORCEMONT" }, { - "codePostal": "85600", - "codeCommune": "85295", - "libelleAcheminement": "TREIZE SEPTIERS", - "nomCommune": "TREIZE SEPTIERS" + "codePostal": "80290", + "codeCommune": "80455", + "libelleAcheminement": "LA CHAPELLE SOUS POIX", + "nomCommune": "LACHAPELLE" }, { - "codePostal": "76590", - "codeCommune": "76397", - "libelleAcheminement": "LONGUEVILLE SUR SCIE", - "nomCommune": "LONGUEVILLE SUR SCIE" + "codePostal": "98774", + "codeCommune": "98737", + "libelleAcheminement": "TEONEMAHINA", + "nomCommune": "PUKAPUKA" }, { - "codePostal": "95300", - "codeCommune": "95341", - "libelleAcheminement": "LIVILLIERS", - "nomCommune": "LIVILLIERS" + "codePostal": "78910", + "codeCommune": "78465", + "libelleAcheminement": "ORGERUS", + "nomCommune": "ORGERUS" }, { - "codePostal": "85190", - "codeCommune": "85300", - "libelleAcheminement": "VENANSAULT", - "nomCommune": "VENANSAULT" + "codePostal": "80430", + "codeCommune": "80456", + "libelleAcheminement": "LAFRESGUIMONT ST MARTIN", + "nomCommune": "LAFRESGUIMONT ST MARTIN" }, { - "codePostal": "76770", - "codeCommune": "76402", - "libelleAcheminement": "MALAUNAY", - "nomCommune": "MALAUNAY" + "codePostal": "98777", + "codeCommune": "98740", + "libelleAcheminement": "PAHUA", + "nomCommune": "RANGIROA" }, { - "codePostal": "95560", - "codeCommune": "95353", - "libelleAcheminement": "MAFFLIERS", - "nomCommune": "MAFFLIERS" + "codePostal": "78630", + "codeCommune": "78466", + "libelleAcheminement": "ORGEVAL", + "nomCommune": "ORGEVAL" }, { - "codePostal": "85130", - "codeCommune": "85302", - "libelleAcheminement": "CHANVERRIE", - "nomCommune": "CHANVERRIE" + "codePostal": "80800", + "codeCommune": "80458", + "libelleAcheminement": "LAHOUSSOYE", + "nomCommune": "LAHOUSSOYE" }, { - "codePostal": "76450", - "codeCommune": "76403", - "libelleAcheminement": "MALLEVILLE LES GRES", - "nomCommune": "MALLEVILLE LES GRES" + "codePostal": "98751", + "codeCommune": "98741", + "libelleAcheminement": "AHUREI", + "nomCommune": "RAPA" }, { - "codePostal": "95850", - "codeCommune": "95365", - "libelleAcheminement": "MAREIL EN FRANCE", - "nomCommune": "MAREIL EN FRANCE" + "codePostal": "78125", + "codeCommune": "78470", + "libelleAcheminement": "ORPHIN", + "nomCommune": "ORPHIN" }, { - "codePostal": "85460", - "codeCommune": "85307", - "libelleAcheminement": "LA FAUTE SUR MER", - "nomCommune": "LA FAUTE SUR MER" + "codePostal": "80620", + "codeCommune": "80466", + "libelleAcheminement": "LANCHES ST HILAIRE", + "nomCommune": "LANCHES ST HILAIRE" }, { - "codePostal": "76116", - "codeCommune": "76412", - "libelleAcheminement": "MARTAINVILLE EPREVILLE", - "nomCommune": "MARTAINVILLE EPREVILLE" + "codePostal": "98794", + "codeCommune": "98741", + "libelleAcheminement": "MAROTIRI", + "nomCommune": "RAPA" }, { - "codePostal": "95670", - "codeCommune": "95371", - "libelleAcheminement": "MARLY LA VILLE", - "nomCommune": "MARLY LA VILLE" + "codePostal": "78230", + "codeCommune": "78481", + "libelleAcheminement": "LE PECQ", + "nomCommune": "LE PECQ" }, { - "codePostal": "86110", - "codeCommune": "86002", - "libelleAcheminement": "AMBERRE", - "nomCommune": "AMBERRE" + "codePostal": "80300", + "codeCommune": "80468", + "libelleAcheminement": "LAVIEVILLE", + "nomCommune": "LAVIEVILLE" }, { - "codePostal": "76270", - "codeCommune": "76427", - "libelleAcheminement": "MESNIERES EN BRAY", - "nomCommune": "MESNIERES EN BRAY" + "codePostal": "98753", + "codeCommune": "98744", + "libelleAcheminement": "MOERAI", + "nomCommune": "RURUTU" }, { - "codePostal": "95180", - "codeCommune": "95388", - "libelleAcheminement": "MENUCOURT", - "nomCommune": "MENUCOURT" + "codePostal": "78550", + "codeCommune": "78520", + "libelleAcheminement": "RICHEBOURG", + "nomCommune": "RICHEBOURG" }, { - "codePostal": "86330", - "codeCommune": "86013", - "libelleAcheminement": "AULNAY", - "nomCommune": "AULNAY" + "codePostal": "80700", + "codeCommune": "80473", + "libelleAcheminement": "LIANCOURT FOSSE", + "nomCommune": "LIANCOURT FOSSE" }, { - "codePostal": "76510", - "codeCommune": "76437", - "libelleAcheminement": "MEULERS", - "nomCommune": "MEULERS" + "codePostal": "98733", + "codeCommune": "98745", + "libelleAcheminement": "TIVA", + "nomCommune": "TAHAA" }, { - "codePostal": "95160", - "codeCommune": "95428", - "libelleAcheminement": "MONTMORENCY", - "nomCommune": "MONTMORENCY" + "codePostal": "78710", + "codeCommune": "78531", + "libelleAcheminement": "ROSNY SUR SEINE", + "nomCommune": "ROSNY SUR SEINE" }, { - "codePostal": "86530", - "codeCommune": "86014", - "libelleAcheminement": "AVAILLES EN CHATELLERAULT", - "nomCommune": "AVAILLES EN CHATELLERAULT" + "codePostal": "80320", + "codeCommune": "80474", + "libelleAcheminement": "LICOURT", + "nomCommune": "LICOURT" }, { - "codePostal": "76850", - "codeCommune": "76449", - "libelleAcheminement": "MONTREUIL EN CAUX", - "nomCommune": "MONTREUIL EN CAUX" + "codePostal": "98734", + "codeCommune": "98745", + "libelleAcheminement": "HAAMENE", + "nomCommune": "TAHAA" }, { - "codePostal": "95260", - "codeCommune": "95436", - "libelleAcheminement": "MOURS", - "nomCommune": "MOURS" + "codePostal": "78640", + "codeCommune": "78550", + "libelleAcheminement": "ST GERMAIN DE LA GRANGE", + "nomCommune": "ST GERMAIN DE LA GRANGE" }, { - "codePostal": "86460", - "codeCommune": "86015", - "libelleAcheminement": "AVAILLES LIMOUZINE", - "nomCommune": "AVAILLES LIMOUZINE" + "codePostal": "80160", + "codeCommune": "80485", + "libelleAcheminement": "O DE SELLE", + "nomCommune": "O DE SELLE" }, { - "codePostal": "76130", - "codeCommune": "76451", - "libelleAcheminement": "MONT ST AIGNAN", - "nomCommune": "MONT ST AIGNAN" + "codePostal": "98734", + "codeCommune": "98745", + "libelleAcheminement": "FAAAHA", + "nomCommune": "TAHAA" }, { - "codePostal": "95420", - "codeCommune": "95459", - "libelleAcheminement": "NUCOURT", - "nomCommune": "NUCOURT" + "codePostal": "78980", + "codeCommune": "78559", + "libelleAcheminement": "ST ILLIERS LE BOIS", + "nomCommune": "ST ILLIERS LE BOIS" }, { - "codePostal": "86170", - "codeCommune": "86016", - "libelleAcheminement": "AVANTON", - "nomCommune": "AVANTON" + "codePostal": "80160", + "codeCommune": "80485", + "libelleAcheminement": "O DE SELLE", + "nomCommune": "O DE SELLE" }, { - "codePostal": "76780", - "codeCommune": "76455", - "libelleAcheminement": "MORVILLE SUR ANDELLE", - "nomCommune": "MORVILLE SUR ANDELLE" + "codePostal": "98719", + "codeCommune": "98747", + "libelleAcheminement": "TARAVAO", + "nomCommune": "TAIARAPU EST" }, { - "codePostal": "95420", - "codeCommune": "95462", - "libelleAcheminement": "OMERVILLE", - "nomCommune": "OMERVILLE" + "codePostal": "78470", + "codeCommune": "78575", + "libelleAcheminement": "ST REMY LES CHEVREUSE", + "nomCommune": "ST REMY LES CHEVREUSE" }, { - "codePostal": "86130", - "codeCommune": "86019", - "libelleAcheminement": "BEAUMONT ST CYR", - "nomCommune": "BEAUMONT ST CYR" + "codePostal": "80510", + "codeCommune": "80486", + "libelleAcheminement": "LONG", + "nomCommune": "LONG" }, { - "codePostal": "76970", - "codeCommune": "76456", - "libelleAcheminement": "MOTTEVILLE", - "nomCommune": "MOTTEVILLE" + "codePostal": "98790", + "codeCommune": "98749", + "libelleAcheminement": "TIKEI", + "nomCommune": "TAKAROA" }, { - "codePostal": "95520", - "codeCommune": "95476", - "libelleAcheminement": "OSNY", - "nomCommune": "OSNY" + "codePostal": "78650", + "codeCommune": "78588", + "libelleAcheminement": "SAULX MARCHAIS", + "nomCommune": "SAULX MARCHAIS" + }, + { + "codePostal": "80220", + "codeCommune": "80500", + "libelleAcheminement": "MAISNIERES", + "nomCommune": "MAISNIERES" }, { - "codePostal": "86410", - "codeCommune": "86034", - "libelleAcheminement": "BOURESSE", - "nomCommune": "BOURESSE" + "codePostal": "98735", + "codeCommune": "98754", + "libelleAcheminement": "TEHURUI", + "nomCommune": "TUMARAA" }, { - "codePostal": "76590", - "codeCommune": "76458", - "libelleAcheminement": "MUCHEDENT", - "nomCommune": "MUCHEDENT" + "codePostal": "78120", + "codeCommune": "78601", + "libelleAcheminement": "SONCHAMP", + "nomCommune": "SONCHAMP" }, { - "codePostal": "95720", - "codeCommune": "95492", - "libelleAcheminement": "LE PLESSIS GASSOT", - "nomCommune": "LE PLESSIS GASSOT" + "codePostal": "80135", + "codeCommune": "80502", + "libelleAcheminement": "MAISON ROLAND", + "nomCommune": "MAISON ROLAND" }, { - "codePostal": "86390", - "codeCommune": "86035", - "libelleAcheminement": "BOURG ARCHAMBAULT", - "nomCommune": "BOURG ARCHAMBAULT" + "codePostal": "98746", + "codeCommune": "98757", + "libelleAcheminement": "HAKAMAII", + "nomCommune": "UA POU" }, { - "codePostal": "76270", - "codeCommune": "76462", - "libelleAcheminement": "NEUFCHATEL EN BRAY", - "nomCommune": "NEUFCHATEL EN BRAY" + "codePostal": "78250", + "codeCommune": "78609", + "libelleAcheminement": "TESSANCOURT SUR AUBETTE", + "nomCommune": "TESSANCOURT SUR AUBETTE" }, { - "codePostal": "95270", - "codeCommune": "95493", - "libelleAcheminement": "LE PLESSIS LUZARCHES", - "nomCommune": "LE PLESSIS LUZARCHES" + "codePostal": "80370", + "codeCommune": "80503", + "libelleAcheminement": "MAIZICOURT", + "nomCommune": "MAIZICOURT" }, { - "codePostal": "86160", - "codeCommune": "86038", - "libelleAcheminement": "BRION", - "nomCommune": "BRION" + "codePostal": "98811", + "codeCommune": "98801", + "libelleAcheminement": "BELEP", + "nomCommune": "BELEP" }, { - "codePostal": "76640", - "codeCommune": "76470", - "libelleAcheminement": "NORMANVILLE", - "nomCommune": "NORMANVILLE" + "codePostal": "78790", + "codeCommune": "78618", + "libelleAcheminement": "TILLY", + "nomCommune": "TILLY" }, { - "codePostal": "95650", - "codeCommune": "95510", - "libelleAcheminement": "PUISEUX PONTOISE", - "nomCommune": "PUISEUX PONTOISE" + "codePostal": "80300", + "codeCommune": "80505", + "libelleAcheminement": "CARNOY MAMETZ", + "nomCommune": "CARNOY MAMETZ" }, { - "codePostal": "86310", - "codeCommune": "86040", - "libelleAcheminement": "LA BUSSIERE", - "nomCommune": "LA BUSSIERE" + "codePostal": "98870", + "codeCommune": "98803", + "libelleAcheminement": "BOURAIL", + "nomCommune": "BOURAIL" }, { - "codePostal": "76510", - "codeCommune": "76472", - "libelleAcheminement": "NOTRE DAME D ALIERMONT", - "nomCommune": "NOTRE DAME D ALIERMONT" + "codePostal": "78490", + "codeCommune": "78623", + "libelleAcheminement": "LE TREMBLAY SUR MAULDRE", + "nomCommune": "LE TREMBLAY SUR MAULDRE" }, { - "codePostal": "95420", - "codeCommune": "95554", - "libelleAcheminement": "ST GERVAIS", - "nomCommune": "ST GERVAIS" + "codePostal": "80800", + "codeCommune": "80507", + "libelleAcheminement": "MARCELCAVE", + "nomCommune": "MARCELCAVE" }, { - "codePostal": "86180", - "codeCommune": "86041", - "libelleAcheminement": "BUXEROLLES", - "nomCommune": "BUXEROLLES" + "codePostal": "98837", + "codeCommune": "98805", + "libelleAcheminement": "DUMBEA", + "nomCommune": "DUMBEA" }, { - "codePostal": "76170", - "codeCommune": "76476", - "libelleAcheminement": "PORT JEROME SUR SEINE", - "nomCommune": "PORT JEROME SUR SEINE" + "codePostal": "78110", + "codeCommune": "78650", + "libelleAcheminement": "LE VESINET", + "nomCommune": "LE VESINET" }, { - "codePostal": "95210", - "codeCommune": "95555", - "libelleAcheminement": "ST GRATIEN", - "nomCommune": "ST GRATIEN" + "codePostal": "80700", + "codeCommune": "80508", + "libelleAcheminement": "MARCHE ALLOUARDE", + "nomCommune": "MARCHE ALLOUARDE" }, { - "codePostal": "86530", - "codeCommune": "86046", - "libelleAcheminement": "CENON SUR VIENNE", - "nomCommune": "CENON SUR VIENNE" + "codePostal": "98839", + "codeCommune": "98805", + "libelleAcheminement": "DUMBEA", + "nomCommune": "DUMBEA" }, { - "codePostal": "76170", - "codeCommune": "76476", - "libelleAcheminement": "PORT JEROME SUR SEINE", - "nomCommune": "PORT JEROME SUR SEINE" + "codePostal": "78125", + "codeCommune": "78655", + "libelleAcheminement": "VIEILLE EGLISE EN YVELINES", + "nomCommune": "VIEILLE EGLISE EN YVELINES" }, { - "codePostal": "95310", - "codeCommune": "95572", - "libelleAcheminement": "ST OUEN L AUMONE", - "nomCommune": "ST OUEN L AUMONE" + "codePostal": "80200", + "codeCommune": "80509", + "libelleAcheminement": "MARCHELEPOT MISERY", + "nomCommune": "MARCHELEPOT MISERY" }, { - "codePostal": "86380", - "codeCommune": "86048", - "libelleAcheminement": "CHABOURNAY", - "nomCommune": "CHABOURNAY" + "codePostal": "98816", + "codeCommune": "98808", + "libelleAcheminement": "HOUAILOU", + "nomCommune": "HOUAILOU" }, { - "codePostal": "76550", - "codeCommune": "76482", - "libelleAcheminement": "OFFRANVILLE", - "nomCommune": "OFFRANVILLE" + "codePostal": "78450", + "codeCommune": "78674", + "libelleAcheminement": "VILLEPREUX", + "nomCommune": "VILLEPREUX" }, { - "codePostal": "95390", - "codeCommune": "95574", - "libelleAcheminement": "ST PRIX", - "nomCommune": "ST PRIX" + "codePostal": "80140", + "codeCommune": "80518", + "libelleAcheminement": "MARTAINNEVILLE", + "nomCommune": "MARTAINNEVILLE" }, { - "codePostal": "86400", - "codeCommune": "86054", - "libelleAcheminement": "CHAMPNIERS", - "nomCommune": "CHAMPNIERS" + "codePostal": "98860", + "codeCommune": "98811", + "libelleAcheminement": "KONE", + "nomCommune": "KONE" }, { - "codePostal": "76500", - "codeCommune": "76486", - "libelleAcheminement": "ORIVAL", - "nomCommune": "ORIVAL" + "codePostal": "78220", + "codeCommune": "78686", + "libelleAcheminement": "VIROFLAY", + "nomCommune": "VIROFLAY" }, { - "codePostal": "95470", - "codeCommune": "95580", - "libelleAcheminement": "ST WITZ", - "nomCommune": "ST WITZ" + "codePostal": "80360", + "codeCommune": "80521", + "libelleAcheminement": "MAUREPAS", + "nomCommune": "MAUREPAS" }, { - "codePostal": "86370", - "codeCommune": "86065", - "libelleAcheminement": "CHATEAU LARCHER", - "nomCommune": "CHATEAU LARCHER" + "codePostal": "98850", + "codeCommune": "98812", + "libelleAcheminement": "KOUMAC", + "nomCommune": "KOUMAC" }, { - "codePostal": "76660", - "codeCommune": "76487", - "libelleAcheminement": "OSMOY ST VALERY", - "nomCommune": "OSMOY ST VALERY" + "codePostal": "79600", + "codeCommune": "79005", + "libelleAcheminement": "AIRVAULT", + "nomCommune": "AIRVAULT" }, { - "codePostal": "95490", - "codeCommune": "95637", - "libelleAcheminement": "VAUREAL", - "nomCommune": "VAUREAL" + "codePostal": "80800", + "codeCommune": "80530", + "libelleAcheminement": "MERICOURT L ABBE", + "nomCommune": "MERICOURT L ABBE" }, { - "codePostal": "86450", - "codeCommune": "86072", - "libelleAcheminement": "CHENEVELLES", - "nomCommune": "CHENEVELLES" + "codePostal": "98809", + "codeCommune": "98817", + "libelleAcheminement": "MONT DORE", + "nomCommune": "LE MONT DORE" }, { - "codePostal": "76450", - "codeCommune": "76488", - "libelleAcheminement": "OUAINVILLE", - "nomCommune": "OUAINVILLE" + "codePostal": "79600", + "codeCommune": "79005", + "libelleAcheminement": "AIRVAULT", + "nomCommune": "AIRVAULT" }, { - "codePostal": "95510", - "codeCommune": "95651", - "libelleAcheminement": "VETHEUIL", - "nomCommune": "VETHEUIL" + "codePostal": "80640", + "codeCommune": "80531", + "libelleAcheminement": "MERICOURT EN VIMEU", + "nomCommune": "MERICOURT EN VIMEU" }, { - "codePostal": "86170", - "codeCommune": "86073", - "libelleAcheminement": "CHERVES", - "nomCommune": "CHERVES" + "codePostal": "98814", + "codeCommune": "98820", + "libelleAcheminement": "FAYAOUE", + "nomCommune": "OUVEA" }, { - "codePostal": "76210", - "codeCommune": "76494", - "libelleAcheminement": "PARC D ANXTOT", - "nomCommune": "PARC D ANXTOT" + "codePostal": "79130", + "codeCommune": "79007", + "libelleAcheminement": "ALLONNE", + "nomCommune": "ALLONNE" }, { - "codePostal": "95380", - "codeCommune": "95675", - "libelleAcheminement": "VILLERON", - "nomCommune": "VILLERON" + "codePostal": "80310", + "codeCommune": "80535", + "libelleAcheminement": "LE MESGE", + "nomCommune": "LE MESGE" }, { - "codePostal": "86320", - "codeCommune": "86077", - "libelleAcheminement": "CIVAUX", - "nomCommune": "CIVAUX" + "codePostal": "98826", + "codeCommune": "98826", + "libelleAcheminement": "POUM", + "nomCommune": "POUM" }, { - "codePostal": "76440", - "codeCommune": "76505", - "libelleAcheminement": "POMMEREUX", - "nomCommune": "POMMEREUX" + "codePostal": "79150", + "codeCommune": "79013", + "libelleAcheminement": "ARGENTONNAY", + "nomCommune": "ARGENTONNAY" }, { - "codePostal": "95510", - "codeCommune": "95676", - "libelleAcheminement": "VILLERS EN ARTHIES", - "nomCommune": "VILLERS EN ARTHIES" + "codePostal": "80360", + "codeCommune": "80538", + "libelleAcheminement": "MESNIL EN ARROUAISE", + "nomCommune": "MESNIL EN ARROUAISE" }, { - "codePostal": "86200", - "codeCommune": "86079", - "libelleAcheminement": "LA ROCHE RIGAULT", - "nomCommune": "LA ROCHE RIGAULT" + "codePostal": "98883", + "codeCommune": "98831", + "libelleAcheminement": "OUACO", + "nomCommune": "VOH" }, { - "codePostal": "76280", - "codeCommune": "76508", - "libelleAcheminement": "LA POTERIE CAP D ANTIFER", - "nomCommune": "LA POTERIE CAP D ANTIFER" + "codePostal": "79150", + "codeCommune": "79013", + "libelleAcheminement": "ARGENTONNAY", + "nomCommune": "ARGENTONNAY" }, { - "codePostal": "97123", - "codeCommune": "97104", - "libelleAcheminement": "BAILLIF", - "nomCommune": "BAILLIF" + "codePostal": "80110", + "codeCommune": "80545", + "libelleAcheminement": "MEZIERES EN SANTERRE", + "nomCommune": "MEZIERES EN SANTERRE" }, { - "codePostal": "86700", - "codeCommune": "86082", - "libelleAcheminement": "VALENCE EN POITOU", - "nomCommune": "VALENCE EN POITOU" + "codePostal": "98818", + "codeCommune": "98833", + "libelleAcheminement": "KOUAOUA", + "nomCommune": "KOUAOUA" }, { - "codePostal": "76160", - "codeCommune": "76509", - "libelleAcheminement": "PREAUX", - "nomCommune": "PREAUX" + "codePostal": "79290", + "codeCommune": "79014", + "libelleAcheminement": "LORETZ D ARGENTON", + "nomCommune": "LORETZ D ARGENTON" }, { - "codePostal": "97140", - "codeCommune": "97108", - "libelleAcheminement": "CAPESTERRE DE MARIE GALANTE", - "nomCommune": "CAPESTERRE DE MARIE GALANTE" + "codePostal": "80132", + "codeCommune": "80546", + "libelleAcheminement": "MIANNAY", + "nomCommune": "MIANNAY" }, { - "codePostal": "86700", - "codeCommune": "86082", - "libelleAcheminement": "VALENCE EN POITOU", - "nomCommune": "VALENCE EN POITOU" + "codePostal": "98000", + "codeCommune": "99138", + "libelleAcheminement": "MONACO", + "nomCommune": "MONACO" }, { - "codePostal": "76560", - "codeCommune": "76510", - "libelleAcheminement": "PRETOT VICQUEMARE", - "nomCommune": "PRETOT VICQUEMARE" + "codePostal": "79170", + "codeCommune": "79015", + "libelleAcheminement": "ASNIERES EN POITOU", + "nomCommune": "ASNIERES EN POITOU" }, { - "codePostal": "97131", - "codeCommune": "97119", - "libelleAcheminement": "PETIT CANAL", - "nomCommune": "PETIT CANAL" + "codePostal": "80300", + "codeCommune": "80547", + "libelleAcheminement": "MILLENCOURT", + "nomCommune": "MILLENCOURT" }, { - "codePostal": "86110", - "codeCommune": "86085", - "libelleAcheminement": "COUSSAY", - "nomCommune": "COUSSAY" + "codePostal": "79600", + "codeCommune": "79016", + "libelleAcheminement": "ASSAIS LES JUMEAUX", + "nomCommune": "ASSAIS LES JUMEAUX" }, { - "codePostal": "76660", - "codeCommune": "76511", - "libelleAcheminement": "PREUSEVILLE", - "nomCommune": "PREUSEVILLE" + "codePostal": "80260", + "codeCommune": "80550", + "libelleAcheminement": "MIRVAUX", + "nomCommune": "MIRVAUX" }, { - "codePostal": "97110", - "codeCommune": "97120", - "libelleAcheminement": "POINTE A PITRE", - "nomCommune": "POINTE A PITRE" + "codePostal": "79800", + "codeCommune": "79023", + "libelleAcheminement": "AVON", + "nomCommune": "AVON" }, { - "codePostal": "86270", - "codeCommune": "86086", - "libelleAcheminement": "COUSSAY LES BOIS", - "nomCommune": "COUSSAY LES BOIS" + "codePostal": "80260", + "codeCommune": "80565", + "libelleAcheminement": "MONTONVILLERS", + "nomCommune": "MONTONVILLERS" }, { - "codePostal": "76660", - "codeCommune": "76512", - "libelleAcheminement": "PUISENVAL", - "nomCommune": "PUISENVAL" + "codePostal": "79420", + "codeCommune": "79029", + "libelleAcheminement": "BEAULIEU SOUS PARTHENAY", + "nomCommune": "BEAULIEU SOUS PARTHENAY" }, { - "codePostal": "97116", - "codeCommune": "97121", - "libelleAcheminement": "POINTE NOIRE", - "nomCommune": "POINTE NOIRE" + "codePostal": "80670", + "codeCommune": "80566", + "libelleAcheminement": "FIEFFES MONTRELET", + "nomCommune": "FIEFFES MONTRELET" }, { - "codePostal": "86120", - "codeCommune": "86090", - "libelleAcheminement": "CURCAY SUR DIVE", - "nomCommune": "CURCAY SUR DIVE" + "codePostal": "79210", + "codeCommune": "79046", + "libelleAcheminement": "LE BOURDET", + "nomCommune": "LE BOURDET" }, { - "codePostal": "76730", - "codeCommune": "76519", - "libelleAcheminement": "RAINFREVILLE", - "nomCommune": "RAINFREVILLE" + "codePostal": "80190", + "codeCommune": "80568", + "libelleAcheminement": "MORCHAIN", + "nomCommune": "MORCHAIN" }, { - "codePostal": "97180", - "codeCommune": "97128", - "libelleAcheminement": "STE ANNE", - "nomCommune": "STE ANNE" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "86190", - "codeCommune": "86102", - "libelleAcheminement": "FROZES", - "nomCommune": "FROZES" + "codePostal": "80110", + "codeCommune": "80570", + "libelleAcheminement": "MOREUIL", + "nomCommune": "MOREUIL" }, { - "codePostal": "76390", - "codeCommune": "76527", - "libelleAcheminement": "RICHEMONT", - "nomCommune": "RICHEMONT" + "codePostal": "79300", + "codeCommune": "79049", + "libelleAcheminement": "BRESSUIRE", + "nomCommune": "BRESSUIRE" }, { - "codePostal": "97223", - "codeCommune": "97206", - "libelleAcheminement": "LE DIAMANT", - "nomCommune": "LE DIAMANT" + "codePostal": "80290", + "codeCommune": "80573", + "libelleAcheminement": "MORVILLERS ST SATURNIN", + "nomCommune": "MORVILLERS ST SATURNIN" }, { - "codePostal": "86250", - "codeCommune": "86104", - "libelleAcheminement": "GENOUILLE", - "nomCommune": "GENOUILLE" + "codePostal": "79170", + "codeCommune": "79055", + "libelleAcheminement": "BRIEUIL SUR CHIZE", + "nomCommune": "BRIEUIL SUR CHIZE" }, { - "codePostal": "76540", - "codeCommune": "76529", - "libelleAcheminement": "RIVILLE", - "nomCommune": "RIVILLE" + "codePostal": "80140", + "codeCommune": "80587", + "libelleAcheminement": "NESLETTE", + "nomCommune": "NESLETTE" }, { - "codePostal": "97250", - "codeCommune": "97208", - "libelleAcheminement": "FONDS ST DENIS", - "nomCommune": "FONDS ST DENIS" + "codePostal": "79190", + "codeCommune": "79060", + "libelleAcheminement": "CAUNAY", + "nomCommune": "CAUNAY" }, { - "codePostal": "86110", - "codeCommune": "86108", - "libelleAcheminement": "LA GRIMAUDIERE", - "nomCommune": "LA GRIMAUDIERE" + "codePostal": "80110", + "codeCommune": "80595", + "libelleAcheminement": "LA NEUVILLE SIRE BERNARD", + "nomCommune": "LA NEUVILLE SIRE BERNARD" }, { - "codePostal": "76680", - "codeCommune": "76532", - "libelleAcheminement": "ROCQUEMONT", - "nomCommune": "ROCQUEMONT" + "codePostal": "79150", + "codeCommune": "79063", + "libelleAcheminement": "VAL EN VIGNES", + "nomCommune": "VAL EN VIGNES" }, { - "codePostal": "97231", - "codeCommune": "97222", - "libelleAcheminement": "LE ROBERT", - "nomCommune": "LE ROBERT" + "codePostal": "80240", + "codeCommune": "80601", + "libelleAcheminement": "NURLU", + "nomCommune": "NURLU" }, { - "codePostal": "86330", - "codeCommune": "86108", - "libelleAcheminement": "LA GRIMAUDIERE", - "nomCommune": "LA GRIMAUDIERE" + "codePostal": "79290", + "codeCommune": "79063", + "libelleAcheminement": "VAL EN VIGNES", + "nomCommune": "VAL EN VIGNES" }, { - "codePostal": "76160", - "codeCommune": "76560", - "libelleAcheminement": "ST AUBIN EPINAY", - "nomCommune": "ST AUBIN EPINAY" + "codePostal": "80700", + "codeCommune": "80617", + "libelleAcheminement": "PARVILLERS LE QUESNOY", + "nomCommune": "PARVILLERS LE QUESNOY" }, { - "codePostal": "97229", - "codeCommune": "97231", - "libelleAcheminement": "LES TROIS ILETS", - "nomCommune": "LES TROIS ILETS" + "codePostal": "79220", + "codeCommune": "79066", + "libelleAcheminement": "CHAMPDENIERS", + "nomCommune": "CHAMPDENIERS" }, { - "codePostal": "86330", - "codeCommune": "86108", - "libelleAcheminement": "LA GRIMAUDIERE", - "nomCommune": "LA GRIMAUDIERE" + "codePostal": "80580", + "codeCommune": "80635", + "libelleAcheminement": "PONT REMY", + "nomCommune": "PONT REMY" }, { - "codePostal": "76460", - "codeCommune": "76569", - "libelleAcheminement": "STE COLOMBE", - "nomCommune": "STE COLOMBE" + "codePostal": "79190", + "codeCommune": "79074", + "libelleAcheminement": "LA CHAPELLE POUILLOUX", + "nomCommune": "LA CHAPELLE POUILLOUX" }, { - "codePostal": "97280", - "codeCommune": "97232", - "libelleAcheminement": "LE VAUCLIN", - "nomCommune": "LE VAUCLIN" + "codePostal": "80260", + "codeCommune": "80639", + "libelleAcheminement": "POULAINVILLE", + "nomCommune": "POULAINVILLE" }, { - "codePostal": "86420", - "codeCommune": "86109", - "libelleAcheminement": "GUESNES", - "nomCommune": "GUESNES" + "codePostal": "79360", + "codeCommune": "79078", + "libelleAcheminement": "PLAINE D ARGENSON", + "nomCommune": "PLAINE D ARGENSON" }, { - "codePostal": "76750", - "codeCommune": "76581", - "libelleAcheminement": "ST GERMAIN DES ESSOURTS", - "nomCommune": "ST GERMAIN DES ESSOURTS" + "codePostal": "80370", + "codeCommune": "80642", + "libelleAcheminement": "PROUVILLE", + "nomCommune": "PROUVILLE" }, { - "codePostal": "97351", - "codeCommune": "97307", - "libelleAcheminement": "MATOURY", - "nomCommune": "MATOURY" + "codePostal": "79360", + "codeCommune": "79078", + "libelleAcheminement": "PLAINE D ARGENSON", + "nomCommune": "PLAINE D ARGENSON" }, { - "codePostal": "86310", - "codeCommune": "86110", - "libelleAcheminement": "HAIMS", - "nomCommune": "HAIMS" + "codePostal": "80340", + "codeCommune": "80644", + "libelleAcheminement": "PROYART", + "nomCommune": "PROYART" }, { - "codePostal": "76490", - "codeCommune": "76585", - "libelleAcheminement": "ST GILLES DE CRETOT", - "nomCommune": "ST GILLES DE CRETOT" + "codePostal": "79350", + "codeCommune": "79088", + "libelleAcheminement": "CHICHE", + "nomCommune": "CHICHE" }, { - "codePostal": "97313", - "codeCommune": "97308", - "libelleAcheminement": "ST GEORGES", - "nomCommune": "ST GEORGES" + "codePostal": "80560", + "codeCommune": "80645", + "libelleAcheminement": "PUCHEVILLERS", + "nomCommune": "PUCHEVILLERS" }, { - "codePostal": "86220", - "codeCommune": "86111", - "libelleAcheminement": "INGRANDES", - "nomCommune": "INGRANDES" + "codePostal": "79510", + "codeCommune": "79100", + "libelleAcheminement": "COULON", + "nomCommune": "COULON" }, { - "codePostal": "76400", - "codeCommune": "76587", - "libelleAcheminement": "STE HELENE BONDEVILLE", - "nomCommune": "STE HELENE BONDEVILLE" + "codePostal": "80118", + "codeCommune": "80652", + "libelleAcheminement": "LE QUESNEL", + "nomCommune": "LE QUESNEL" }, { - "codePostal": "97356", - "codeCommune": "97313", - "libelleAcheminement": "MONTSINERY TONNEGRANDE", - "nomCommune": "MONTSINERY TONNEGRANDE" + "codePostal": "79800", + "codeCommune": "79115", + "libelleAcheminement": "EXOUDUN", + "nomCommune": "EXOUDUN" }, { - "codePostal": "86240", - "codeCommune": "86113", - "libelleAcheminement": "ITEUIL", - "nomCommune": "ITEUIL" + "codePostal": "80710", + "codeCommune": "80656", + "libelleAcheminement": "QUEVAUVILLERS", + "nomCommune": "QUEVAUVILLERS" }, { - "codePostal": "76160", - "codeCommune": "76591", - "libelleAcheminement": "ST JACQUES SUR DARNETAL", - "nomCommune": "ST JACQUES SUR DARNETAL" + "codePostal": "79160", + "codeCommune": "79117", + "libelleAcheminement": "FAYE SUR ARDIN", + "nomCommune": "FAYE SUR ARDIN" }, { - "codePostal": "97370", - "codeCommune": "97353", - "libelleAcheminement": "MARIPASOULA", - "nomCommune": "MARIPASOULA" + "codePostal": "80140", + "codeCommune": "80662", + "libelleAcheminement": "RAMBURELLES", + "nomCommune": "RAMBURELLES" }, { - "codePostal": "86390", - "codeCommune": "86120", - "libelleAcheminement": "LATHUS ST REMY", - "nomCommune": "LATHUS ST REMY" + "codePostal": "79340", + "codeCommune": "79121", + "libelleAcheminement": "FOMPERRON", + "nomCommune": "FOMPERRON" }, { - "codePostal": "76170", - "codeCommune": "76592", - "libelleAcheminement": "ST JEAN DE FOLLEVILLE", - "nomCommune": "ST JEAN DE FOLLEVILLE" + "codePostal": "80120", + "codeCommune": "80665", + "libelleAcheminement": "REGNIERE ECLUSE", + "nomCommune": "REGNIERE ECLUSE" }, { - "codePostal": "97425", - "codeCommune": "97401", - "libelleAcheminement": "LES AVIRONS", - "nomCommune": "LES AVIRONS" + "codePostal": "79380", + "codeCommune": "79123", + "libelleAcheminement": "LA FORET SUR SEVRE", + "nomCommune": "LA FORET SUR SEVRE" }, { - "codePostal": "86470", - "codeCommune": "86123", - "libelleAcheminement": "BOIVRE LA VALLEE", - "nomCommune": "BOIVRE LA VALLEE" + "codePostal": "80250", + "codeCommune": "80668", + "libelleAcheminement": "REMIENCOURT", + "nomCommune": "REMIENCOURT" }, { - "codePostal": "76700", - "codeCommune": "76596", - "libelleAcheminement": "ST LAURENT DE BREVEDENT", - "nomCommune": "ST LAURENT DE BREVEDENT" + "codePostal": "79360", + "codeCommune": "79126", + "libelleAcheminement": "LES FOSSES", + "nomCommune": "LES FOSSES" }, { - "codePostal": "97429", - "codeCommune": "97405", - "libelleAcheminement": "PETITE ILE", - "nomCommune": "PETITE ILE" + "codePostal": "80680", + "codeCommune": "80690", + "libelleAcheminement": "RUMIGNY", + "nomCommune": "RUMIGNY" }, { - "codePostal": "86450", - "codeCommune": "86125", - "libelleAcheminement": "LEIGNE LES BOIS", - "nomCommune": "LEIGNE LES BOIS" + "codePostal": "79200", + "codeCommune": "79135", + "libelleAcheminement": "GOURGE", + "nomCommune": "GOURGE" }, { - "codePostal": "76780", - "codeCommune": "76601", - "libelleAcheminement": "ST LUCIEN", - "nomCommune": "ST LUCIEN" + "codePostal": "80230", + "codeCommune": "80691", + "libelleAcheminement": "SAIGNEVILLE", + "nomCommune": "SAIGNEVILLE" }, { - "codePostal": "97419", - "codeCommune": "97408", - "libelleAcheminement": "LA POSSESSION", - "nomCommune": "LA POSSESSION" + "codePostal": "79110", + "codeCommune": "79136", + "libelleAcheminement": "ALLOINAY", + "nomCommune": "ALLOINAY" }, { - "codePostal": "86270", - "codeCommune": "86129", - "libelleAcheminement": "LESIGNY", - "nomCommune": "LESIGNY" + "codePostal": "80680", + "codeCommune": "80696", + "libelleAcheminement": "SAINS EN AMIENOIS", + "nomCommune": "SAINS EN AMIENOIS" }, { - "codePostal": "76110", - "codeCommune": "76603", - "libelleAcheminement": "ST MACLOU LA BRIERE", - "nomCommune": "ST MACLOU LA BRIERE" + "codePostal": "79360", + "codeCommune": "79137", + "libelleAcheminement": "GRANZAY GRIPT", + "nomCommune": "GRANZAY GRIPT" }, { - "codePostal": "97437", - "codeCommune": "97410", - "libelleAcheminement": "ST BENOIT", - "nomCommune": "ST BENOIT" + "codePostal": "80430", + "codeCommune": "80703", + "libelleAcheminement": "ST GERMAIN SUR BRESLE", + "nomCommune": "ST GERMAIN SUR BRESLE" }, { - "codePostal": "86400", - "codeCommune": "86134", - "libelleAcheminement": "LINAZAY", - "nomCommune": "LINAZAY" + "codePostal": "79220", + "codeCommune": "79139", + "libelleAcheminement": "LES GROSEILLERS", + "nomCommune": "LES GROSEILLERS" }, { - "codePostal": "76390", - "codeCommune": "76606", - "libelleAcheminement": "MORIENNE", - "nomCommune": "MORIENNE" + "codePostal": "80260", + "codeCommune": "80704", + "libelleAcheminement": "ST GRATIEN", + "nomCommune": "ST GRATIEN" }, { - "codePostal": "97470", - "codeCommune": "97410", - "libelleAcheminement": "ST BENOIT", - "nomCommune": "ST BENOIT" + "codePostal": "79110", + "codeCommune": "79140", + "libelleAcheminement": "VALDELAUME", + "nomCommune": "VALDELAUME" }, { - "codePostal": "86400", - "codeCommune": "86136", - "libelleAcheminement": "LIZANT", - "nomCommune": "LIZANT" + "codePostal": "80880", + "codeCommune": "80714", + "libelleAcheminement": "ST QUENTIN LA MOTTE CROIX BAILLY", + "nomCommune": "ST QUENTIN LA MOTTE CROIX AU BAILLY" }, { - "codePostal": "76450", - "codeCommune": "76613", - "libelleAcheminement": "ST MARTIN AUX BUNEAUX", - "nomCommune": "ST MARTIN AUX BUNEAUX" + "codePostal": "79110", + "codeCommune": "79140", + "libelleAcheminement": "VALDELAUME", + "nomCommune": "VALDELAUME" }, { - "codePostal": "97470", - "codeCommune": "97410", - "libelleAcheminement": "ST BENOIT", - "nomCommune": "ST BENOIT" + "codePostal": "80290", + "codeCommune": "80719", + "libelleAcheminement": "STE SEGREE", + "nomCommune": "STE SEGREE" }, { - "codePostal": "86430", - "codeCommune": "86138", - "libelleAcheminement": "LUCHAPT", - "nomCommune": "LUCHAPT" + "codePostal": "79190", + "codeCommune": "79150", + "libelleAcheminement": "LIMALONGES", + "nomCommune": "LIMALONGES" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "80400", + "codeCommune": "80726", + "libelleAcheminement": "SANCOURT", + "nomCommune": "SANCOURT" }, { - "codePostal": "97400", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "79500", + "codeCommune": "79174", + "libelleAcheminement": "MELLE", + "nomCommune": "MELLE" }, { - "codePostal": "86600", - "codeCommune": "86139", - "libelleAcheminement": "LUSIGNAN", - "nomCommune": "LUSIGNAN" + "codePostal": "80300", + "codeCommune": "80733", + "libelleAcheminement": "SENLIS LE SEC", + "nomCommune": "SENLIS LE SEC" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "79320", + "codeCommune": "79179", + "libelleAcheminement": "MONCOUTANT SUR SEVRE", + "nomCommune": "MONCOUTANT SUR SEVRE" }, { - "codePostal": "97490", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "80270", + "codeCommune": "80744", + "libelleAcheminement": "TAILLY L ARBRE A MOUCHES", + "nomCommune": "TAILLY" }, { - "codePostal": "86190", - "codeCommune": "86142", - "libelleAcheminement": "MAILLE", - "nomCommune": "MAILLE" + "codePostal": "79320", + "codeCommune": "79179", + "libelleAcheminement": "MONCOUTANT SUR SEVRE", + "nomCommune": "MONCOUTANT SUR SEVRE" }, { - "codePostal": "76630", - "codeCommune": "76618", - "libelleAcheminement": "PETIT CAUX", - "nomCommune": "PETIT CAUX" + "codePostal": "80240", + "codeCommune": "80747", + "libelleAcheminement": "TEMPLEUX LA FOSSE", + "nomCommune": "TEMPLEUX LA FOSSE" }, { - "codePostal": "97490", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "79370", + "codeCommune": "79185", + "libelleAcheminement": "AIGONDIGNE", + "nomCommune": "AIGONDIGNE" }, { - "codePostal": "86270", - "codeCommune": "86143", - "libelleAcheminement": "MAIRE", - "nomCommune": "MAIRE" + "codePostal": "80560", + "codeCommune": "80756", + "libelleAcheminement": "THIEVRES", + "nomCommune": "THIEVRES" }, { - "codePostal": "76680", - "codeCommune": "76621", - "libelleAcheminement": "ST MARTIN OSMONVILLE", - "nomCommune": "ST MARTIN OSMONVILLE" + "codePostal": "79400", + "codeCommune": "79189", + "libelleAcheminement": "NANTEUIL", + "nomCommune": "NANTEUIL" }, { - "codePostal": "97480", - "codeCommune": "97412", - "libelleAcheminement": "ST JOSEPH", - "nomCommune": "ST JOSEPH" + "codePostal": "80700", + "codeCommune": "80759", + "libelleAcheminement": "TILLOLOY", + "nomCommune": "TILLOLOY" }, { - "codePostal": "86170", - "codeCommune": "86150", - "libelleAcheminement": "MASSOGNES", - "nomCommune": "MASSOGNES" + "codePostal": "79000", + "codeCommune": "79191", + "libelleAcheminement": "NIORT", + "nomCommune": "NIORT" }, { - "codePostal": "76890", - "codeCommune": "76632", - "libelleAcheminement": "ST PIERRE BENOUVILLE", - "nomCommune": "ST PIERRE BENOUVILLE" + "codePostal": "80560", + "codeCommune": "80773", + "libelleAcheminement": "VADENCOURT", + "nomCommune": "VADENCOURT" }, { - "codePostal": "97460", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "79250", + "codeCommune": "79195", + "libelleAcheminement": "NUEIL LES AUBIERS", + "nomCommune": "NUEIL LES AUBIERS" }, { - "codePostal": "86330", - "codeCommune": "86161", - "libelleAcheminement": "MONCONTOUR", - "nomCommune": "MONCONTOUR" + "codePostal": "80210", + "codeCommune": "80775", + "libelleAcheminement": "VALINES", + "nomCommune": "VALINES" }, { - "codePostal": "76740", - "codeCommune": "76641", - "libelleAcheminement": "ST PIERRE LE VIEUX", - "nomCommune": "ST PIERRE LE VIEUX" + "codePostal": "79100", + "codeCommune": "79196", + "libelleAcheminement": "PLAINE ET VALLEES", + "nomCommune": "PLAINE ET VALLEES" }, { - "codePostal": "97410", - "codeCommune": "97416", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "80620", + "codeCommune": "80778", + "libelleAcheminement": "VAUCHELLES LES DOMART", + "nomCommune": "VAUCHELLES LES DOMART" }, { - "codePostal": "86230", - "codeCommune": "86162", - "libelleAcheminement": "MONDION", - "nomCommune": "MONDION" + "codePostal": "79170", + "codeCommune": "79198", + "libelleAcheminement": "PAIZAY LE CHAPT", + "nomCommune": "PAIZAY LE CHAPT" }, { - "codePostal": "76260", - "codeCommune": "76644", - "libelleAcheminement": "ST REMY BOSCROCOURT", - "nomCommune": "ST REMY BOSCROCOURT" + "codePostal": "80140", + "codeCommune": "80783", + "libelleAcheminement": "VAUX MARQUENNEVILLE", + "nomCommune": "VAUX MARQUENNEVILLE" }, { - "codePostal": "97410", - "codeCommune": "97416", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "79220", + "codeCommune": "79200", + "libelleAcheminement": "PAMPLIE", + "nomCommune": "PAMPLIE" }, { - "codePostal": "86420", - "codeCommune": "86167", - "libelleAcheminement": "MONTS SUR GUESNES", - "nomCommune": "MONTS SUR GUESNES" + "codePostal": "80120", + "codeCommune": "80787", + "libelleAcheminement": "VERCOURT", + "nomCommune": "VERCOURT" }, { - "codePostal": "76340", - "codeCommune": "76645", - "libelleAcheminement": "ST RIQUIER EN RIVIERE", - "nomCommune": "ST RIQUIER EN RIVIERE" + "codePostal": "79190", + "codeCommune": "79205", + "libelleAcheminement": "PERS", + "nomCommune": "PERS" }, { - "codePostal": "97410", - "codeCommune": "97416", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "80320", + "codeCommune": "80789", + "libelleAcheminement": "VERMANDOVILLERS", + "nomCommune": "VERMANDOVILLERS" }, { - "codePostal": "86150", - "codeCommune": "86171", - "libelleAcheminement": "MOUSSAC", - "nomCommune": "MOUSSAC" + "codePostal": "79700", + "codeCommune": "79235", + "libelleAcheminement": "ST AMAND SUR SEVRE", + "nomCommune": "ST AMAND SUR SEVRE" }, { - "codePostal": "76460", - "codeCommune": "76646", - "libelleAcheminement": "ST RIQUIER ES PLAINS", - "nomCommune": "ST RIQUIER ES PLAINS" + "codePostal": "80260", + "codeCommune": "80792", + "libelleAcheminement": "LA VICOGNE", + "nomCommune": "LA VICOGNE" }, { - "codePostal": "97432", - "codeCommune": "97416", - "libelleAcheminement": "ST PIERRE", - "nomCommune": "ST PIERRE" + "codePostal": "79150", + "codeCommune": "79242", + "libelleAcheminement": "VOULMENTIN", + "nomCommune": "VOULMENTIN" }, { - "codePostal": "86340", - "codeCommune": "86178", - "libelleAcheminement": "NIEUIL L ESPOIR", - "nomCommune": "NIEUIL L ESPOIR" + "codePostal": "80190", + "codeCommune": "80794", + "libelleAcheminement": "VILLECOURT", + "nomCommune": "VILLECOURT" }, { - "codePostal": "76270", - "codeCommune": "76649", - "libelleAcheminement": "ST SAIRE", - "nomCommune": "ST SAIRE" + "codePostal": "79120", + "codeCommune": "79243", + "libelleAcheminement": "ST COUTANT", + "nomCommune": "ST COUTANT" }, { - "codePostal": "97433", - "codeCommune": "97421", - "libelleAcheminement": "SALAZIE", - "nomCommune": "SALAZIE" + "codePostal": "80140", + "codeCommune": "80800", + "libelleAcheminement": "VILLERS CAMPSART", + "nomCommune": "VILLERS CAMPSART" }, { - "codePostal": "86340", - "codeCommune": "86180", - "libelleAcheminement": "NOUAILLE MAUPERTUIS", - "nomCommune": "NOUAILLE MAUPERTUIS" + "codePostal": "79800", + "codeCommune": "79246", + "libelleAcheminement": "STE EANNE", + "nomCommune": "STE EANNE" }, { - "codePostal": "76430", - "codeCommune": "76657", - "libelleAcheminement": "ST VIGOR D YMONVILLE", - "nomCommune": "ST VIGOR D YMONVILLE" + "codePostal": "80140", + "codeCommune": "80809", + "libelleAcheminement": "VISMES AU VAL", + "nomCommune": "VISMES" }, { - "codePostal": "97500", - "codeCommune": "97502", - "libelleAcheminement": "ST PIERRE ET MIQUELON", - "nomCommune": "ST PIERRE" + "codePostal": "79100", + "codeCommune": "79258", + "libelleAcheminement": "ST JACQUES DE THOUARS", + "nomCommune": "ST JACQUES DE THOUARS" }, { - "codePostal": "86500", - "codeCommune": "86192", - "libelleAcheminement": "PLAISANCE", - "nomCommune": "PLAISANCE" + "codePostal": "80270", + "codeCommune": "80825", + "libelleAcheminement": "WIRY AU MONT", + "nomCommune": "WIRY AU MONT" }, { - "codePostal": "76730", - "codeCommune": "76662", - "libelleAcheminement": "SASSETOT LE MALGARDE", - "nomCommune": "SASSETOT LE MALGARDE" + "codePostal": "79100", + "codeCommune": "79265", + "libelleAcheminement": "ST LEGER DE MONTBRUN", + "nomCommune": "ST LEGER DE MONTBRUN" }, { - "codePostal": "97615", - "codeCommune": "97608", - "libelleAcheminement": "DZAOUDZI", - "nomCommune": "DZAOUDZI" + "codePostal": "80520", + "codeCommune": "80827", + "libelleAcheminement": "WOINCOURT", + "nomCommune": "WOINCOURT" }, { - "codePostal": "86220", - "codeCommune": "86195", - "libelleAcheminement": "PORT DE PILES", - "nomCommune": "PORT DE PILES" + "codePostal": "79420", + "codeCommune": "79267", + "libelleAcheminement": "ST LIN", + "nomCommune": "ST LIN" }, { - "codePostal": "76540", - "codeCommune": "76663", - "libelleAcheminement": "SASSETOT LE MAUCONDUIT", - "nomCommune": "SASSETOT LE MAUCONDUIT" + "codePostal": "80190", + "codeCommune": "80829", + "libelleAcheminement": "Y", + "nomCommune": "Y" }, { - "codePostal": "97630", - "codeCommune": "97612", - "libelleAcheminement": "MTSAMBORO", - "nomCommune": "MTSAMBORO" + "codePostal": "79160", + "codeCommune": "79269", + "libelleAcheminement": "ST MAIXENT DE BEUGNE", + "nomCommune": "ST MAIXENT DE BEUGNE" }, { - "codePostal": "86200", - "codeCommune": "86205", - "libelleAcheminement": "RANTON", - "nomCommune": "RANTON" + "codePostal": "80135", + "codeCommune": "80830", + "libelleAcheminement": "YAUCOURT BUSSUS", + "nomCommune": "YAUCOURT BUSSUS" }, { - "codePostal": "76760", - "codeCommune": "76668", - "libelleAcheminement": "SAUSSAY", - "nomCommune": "SAUSSAY" + "codePostal": "79230", + "codeCommune": "79273", + "libelleAcheminement": "ST MARTIN DE BERNEGOUE", + "nomCommune": "ST MARTIN DE BERNEGOUE" }, { - "codePostal": "97680", - "codeCommune": "97617", - "libelleAcheminement": "TSINGONI", - "nomCommune": "TSINGONI" + "codePostal": "81000", + "codeCommune": "81004", + "libelleAcheminement": "ALBI", + "nomCommune": "ALBI" }, { - "codePostal": "86280", - "codeCommune": "86214", - "libelleAcheminement": "ST BENOIT", - "nomCommune": "ST BENOIT" + "codePostal": "79400", + "codeCommune": "79276", + "libelleAcheminement": "ST MARTIN DE ST MAIXENT", + "nomCommune": "ST MARTIN DE ST MAIXENT" }, { - "codePostal": "76660", - "codeCommune": "76677", - "libelleAcheminement": "SMERMESNIL", - "nomCommune": "SMERMESNIL" + "codePostal": "81470", + "codeCommune": "81006", + "libelleAcheminement": "ALGANS", + "nomCommune": "ALGANS" }, { - "codePostal": "97133", - "codeCommune": "97701", - "libelleAcheminement": "ST BARTHELEMY", - "nomCommune": "ST BARTHELEMY" + "codePostal": "79220", + "codeCommune": "79284", + "libelleAcheminement": "STE OUENNE", + "nomCommune": "STE OUENNE" }, { - "codePostal": "86330", - "codeCommune": "86218", - "libelleAcheminement": "ST CLAIR", - "nomCommune": "ST CLAIR" + "codePostal": "81140", + "codeCommune": "81012", + "libelleAcheminement": "ANDILLAC", + "nomCommune": "ANDILLAC" }, { - "codePostal": "76740", - "codeCommune": "76683", - "libelleAcheminement": "SOTTEVILLE SUR MER", - "nomCommune": "SOTTEVILLE SUR MER" + "codePostal": "79700", + "codeCommune": "79289", + "libelleAcheminement": "ST PIERRE DES ECHAUBROGNES", + "nomCommune": "ST PIERRE DES ECHAUBROGNES" }, { - "codePostal": "98620", - "codeCommune": "98612", - "libelleAcheminement": "SIGAVE", - "nomCommune": "SIGAVE" + "codePostal": "81700", + "codeCommune": "81015", + "libelleAcheminement": "APPELLE", + "nomCommune": "APPELLE" }, { - "codePostal": "86350", - "codeCommune": "86234", - "libelleAcheminement": "ST MARTIN L ARS", - "nomCommune": "ST MARTIN L ARS" + "codePostal": "79100", + "codeCommune": "79300", + "libelleAcheminement": "STE VERGE", + "nomCommune": "STE VERGE" }, { - "codePostal": "76540", - "codeCommune": "76689", - "libelleAcheminement": "THIETREVILLE", - "nomCommune": "THIETREVILLE" + "codePostal": "81600", + "codeCommune": "81020", + "libelleAcheminement": "AUSSAC", + "nomCommune": "AUSSAC" }, { - "codePostal": "98730", - "codeCommune": "98714", - "libelleAcheminement": "FAANUI", - "nomCommune": "BORA BORA" + "codePostal": "79400", + "codeCommune": "79302", + "libelleAcheminement": "SAIVRES", + "nomCommune": "SAIVRES" }, { - "codePostal": "86260", - "codeCommune": "86236", - "libelleAcheminement": "ST PIERRE DE MAILLE", - "nomCommune": "ST PIERRE DE MAILLE" + "codePostal": "81200", + "codeCommune": "81021", + "libelleAcheminement": "AUSSILLON", + "nomCommune": "AUSSILLON" }, { - "codePostal": "76110", - "codeCommune": "76695", - "libelleAcheminement": "TOCQUEVILLE LES MURS", - "nomCommune": "TOCQUEVILLE LES MURS" + "codePostal": "79270", + "codeCommune": "79304", + "libelleAcheminement": "SANSAIS", + "nomCommune": "SANSAIS" }, { - "codePostal": "98730", - "codeCommune": "98714", - "libelleAcheminement": "VAITAPE", - "nomCommune": "BORA BORA" + "codePostal": "81430", + "codeCommune": "81026", + "libelleAcheminement": "BELLEGARDE MARSAL", + "nomCommune": "BELLEGARDE MARSAL" }, { - "codePostal": "86300", - "codeCommune": "86239", - "libelleAcheminement": "STE RADEGONDE", - "nomCommune": "STE RADEGONDE" + "codePostal": "79200", + "codeCommune": "79306", + "libelleAcheminement": "SAURAIS", + "nomCommune": "SAURAIS" }, { - "codePostal": "76590", - "codeCommune": "76697", - "libelleAcheminement": "TORCY LE GRAND", - "nomCommune": "TORCY LE GRAND" + "codePostal": "81260", + "codeCommune": "81031", + "libelleAcheminement": "LE BEZ", + "nomCommune": "LE BEZ" }, { - "codePostal": "98763", - "codeCommune": "98716", - "libelleAcheminement": "ROTOAVA", - "nomCommune": "FAKARAVA" + "codePostal": "79200", + "codeCommune": "79322", + "libelleAcheminement": "LE TALLUD", + "nomCommune": "LE TALLUD" }, { - "codePostal": "86220", - "codeCommune": "86241", - "libelleAcheminement": "ST REMY SUR CREUSE", - "nomCommune": "ST REMY SUR CREUSE" + "codePostal": "81600", + "codeCommune": "81038", + "libelleAcheminement": "BRENS", + "nomCommune": "BRENS" }, { - "codePostal": "76400", - "codeCommune": "76708", - "libelleAcheminement": "TOUSSAINT", - "nomCommune": "TOUSSAINT" + "codePostal": "79100", + "codeCommune": "79329", + "libelleAcheminement": "THOUARS", + "nomCommune": "THOUARS" }, { - "codePostal": "98764", - "codeCommune": "98716", - "libelleAcheminement": "PAPARARA", - "nomCommune": "FAKARAVA" + "codePostal": "81500", + "codeCommune": "81044", + "libelleAcheminement": "CABANES", + "nomCommune": "CABANES" }, { - "codePostal": "86200", - "codeCommune": "86252", - "libelleAcheminement": "SAMMARCOLLES", - "nomCommune": "SAMMARCOLLES" + "codePostal": "79100", + "codeCommune": "79329", + "libelleAcheminement": "THOUARS", + "nomCommune": "THOUARS" }, { - "codePostal": "76640", - "codeCommune": "76710", - "libelleAcheminement": "TREMAUVILLE", - "nomCommune": "TREMAUVILLE" + "codePostal": "81540", + "codeCommune": "81049", + "libelleAcheminement": "CAHUZAC", + "nomCommune": "CAHUZAC" }, { - "codePostal": "98755", - "codeCommune": "98719", - "libelleAcheminement": "MANIUI", - "nomCommune": "GAMBIER" + "codePostal": "79240", + "codeCommune": "79332", + "libelleAcheminement": "TRAYES", + "nomCommune": "TRAYES" }, { - "codePostal": "86400", - "codeCommune": "86255", - "libelleAcheminement": "SAVIGNE", - "nomCommune": "SAVIGNE" + "codePostal": "81990", + "codeCommune": "81059", + "libelleAcheminement": "CARLUS", + "nomCommune": "CARLUS" }, { - "codePostal": "76430", - "codeCommune": "76714", - "libelleAcheminement": "LES TROIS PIERRES", - "nomCommune": "LES TROIS PIERRES" + "codePostal": "79240", + "codeCommune": "79342", + "libelleAcheminement": "VERNOUX EN GATINE", + "nomCommune": "VERNOUX EN GATINE" }, { - "codePostal": "98755", - "codeCommune": "98719", - "libelleAcheminement": "RIKITEA", - "nomCommune": "GAMBIER" + "codePostal": "81400", + "codeCommune": "81060", + "libelleAcheminement": "CARMAUX", + "nomCommune": "CARMAUX" }, { - "codePostal": "86800", - "codeCommune": "86261", - "libelleAcheminement": "SEVRES ANXAUMONT", - "nomCommune": "SEVRES ANXAUMONT" + "codePostal": "79360", + "codeCommune": "79350", + "libelleAcheminement": "VILLIERS EN BOIS", + "nomCommune": "VILLIERS EN BOIS" }, { - "codePostal": "76380", - "codeCommune": "76717", - "libelleAcheminement": "VAL DE LA HAYE", - "nomCommune": "VAL DE LA HAYE" + "codePostal": "81150", + "codeCommune": "81067", + "libelleAcheminement": "CESTAYROLS", + "nomCommune": "CESTAYROLS" }, { - "codePostal": "98792", - "codeCommune": "98719", - "libelleAcheminement": "TEMOE", - "nomCommune": "GAMBIER" + "codePostal": "80100", + "codeCommune": "80001", + "libelleAcheminement": "ABBEVILLE", + "nomCommune": "ABBEVILLE" }, { - "codePostal": "86230", - "codeCommune": "86265", - "libelleAcheminement": "SOSSAIS", - "nomCommune": "SOSSAIS" + "codePostal": "81640", + "codeCommune": "81068", + "libelleAcheminement": "COMBEFA", + "nomCommune": "COMBEFA" }, { - "codePostal": "76540", - "codeCommune": "76719", - "libelleAcheminement": "VALMONT", - "nomCommune": "VALMONT" + "codePostal": "80300", + "codeCommune": "80016", + "libelleAcheminement": "ALBERT", + "nomCommune": "ALBERT" }, { - "codePostal": "98790", - "codeCommune": "98720", - "libelleAcheminement": "NENGONENGO", - "nomCommune": "HAO" + "codePostal": "81170", + "codeCommune": "81069", + "libelleAcheminement": "CORDES SUR CIEL", + "nomCommune": "CORDES SUR CIEL" }, { - "codePostal": "86110", - "codeCommune": "86271", - "libelleAcheminement": "THURAGEAU", - "nomCommune": "THURAGEAU" + "codePostal": "80270", + "codeCommune": "80019", + "libelleAcheminement": "ALLERY", + "nomCommune": "ALLERY" }, { - "codePostal": "76890", - "codeCommune": "76721", - "libelleAcheminement": "VARNEVILLE BRETTEVILLE", - "nomCommune": "VARNEVILLE BRETTEVILLE" + "codePostal": "81990", + "codeCommune": "81074", + "libelleAcheminement": "CUNAC", + "nomCommune": "CUNAC" }, { - "codePostal": "98768", - "codeCommune": "98721", - "libelleAcheminement": "TUPAPATI", - "nomCommune": "HIKUERU" + "codePostal": "80000", + "codeCommune": "80021", + "libelleAcheminement": "AMIENS", + "nomCommune": "AMIENS" }, { - "codePostal": "86290", - "codeCommune": "86273", - "libelleAcheminement": "LA TRIMOUILLE", - "nomCommune": "LA TRIMOUILLE" + "codePostal": "81250", + "codeCommune": "81077", + "libelleAcheminement": "CURVALLE", + "nomCommune": "CURVALLE" }, { - "codePostal": "76890", - "codeCommune": "76723", - "libelleAcheminement": "VASSONVILLE", - "nomCommune": "VASSONVILLE" + "codePostal": "80700", + "codeCommune": "80023", + "libelleAcheminement": "ANDECHY", + "nomCommune": "ANDECHY" }, { - "codePostal": "98741", - "codeCommune": "98723", - "libelleAcheminement": "ATUONA", - "nomCommune": "HIVA OA" + "codePostal": "81340", + "codeCommune": "81082", + "libelleAcheminement": "LE DOURN", + "nomCommune": "LE DOURN" }, { - "codePostal": "86220", - "codeCommune": "86279", - "libelleAcheminement": "VAUX SUR VIENNE", - "nomCommune": "VAUX SUR VIENNE" + "codePostal": "80560", + "codeCommune": "80028", + "libelleAcheminement": "ARQUEVES", + "nomCommune": "ARQUEVES" }, { - "codePostal": "76110", - "codeCommune": "76725", - "libelleAcheminement": "VATTETOT SOUS BEAUMONT", - "nomCommune": "VATTETOT SOUS BEAUMONT" + "codePostal": "81540", + "codeCommune": "81083", + "libelleAcheminement": "DURFORT", + "nomCommune": "DURFORT" }, { - "codePostal": "98796", - "codeCommune": "98723", - "libelleAcheminement": "MOHOTANI", - "nomCommune": "HIVA OA" + "codePostal": "80200", + "codeCommune": "80034", + "libelleAcheminement": "ATHIES", + "nomCommune": "ATHIES" }, { - "codePostal": "86170", - "codeCommune": "86281", - "libelleAcheminement": "ST MARTIN LA PALLU", - "nomCommune": "ST MARTIN LA PALLU" + "codePostal": "81530", + "codeCommune": "81085", + "libelleAcheminement": "ESCROUX", + "nomCommune": "ESCROUX" }, { - "codePostal": "76760", - "codeCommune": "76737", - "libelleAcheminement": "VIBEUF", - "nomCommune": "VIBEUF" + "codePostal": "80800", + "codeCommune": "80036", + "libelleAcheminement": "AUBIGNY", + "nomCommune": "AUBIGNY" }, { - "codePostal": "98731", - "codeCommune": "98724", - "libelleAcheminement": "HAAPU", - "nomCommune": "HUAHINE" + "codePostal": "81150", + "codeCommune": "81093", + "libelleAcheminement": "FLORENTIN", + "nomCommune": "FLORENTIN" }, { - "codePostal": "86380", - "codeCommune": "86281", - "libelleAcheminement": "ST MARTIN LA PALLU", - "nomCommune": "ST MARTIN LA PALLU" + "codePostal": "80600", + "codeCommune": "80042", + "libelleAcheminement": "AUTHEUX", + "nomCommune": "AUTHEUX" }, { - "codePostal": "76260", - "codeCommune": "76745", - "libelleAcheminement": "VILLY SUR YERES", - "nomCommune": "VILLY SUR YERES" + "codePostal": "81170", + "codeCommune": "81095", + "libelleAcheminement": "FRAUSSEILLES", + "nomCommune": "FRAUSSEILLES" }, { - "codePostal": "98790", - "codeCommune": "98726", - "libelleAcheminement": "GARUMAOA", - "nomCommune": "MAKEMO" + "codePostal": "80560", + "codeCommune": "80043", + "libelleAcheminement": "AUTHIE", + "nomCommune": "AUTHIE" }, { - "codePostal": "86580", - "codeCommune": "86297", - "libelleAcheminement": "VOUNEUIL SOUS BIARD", - "nomCommune": "VOUNEUIL SOUS BIARD" + "codePostal": "81570", + "codeCommune": "81098", + "libelleAcheminement": "FREJEVILLE", + "nomCommune": "FREJEVILLE" }, { - "codePostal": "76540", - "codeCommune": "76746", - "libelleAcheminement": "VINNEMERVILLE", - "nomCommune": "VINNEMERVILLE" + "codePostal": "80270", + "codeCommune": "80046", + "libelleAcheminement": "AVELESGES", + "nomCommune": "AVELESGES" }, { - "codePostal": "98770", - "codeCommune": "98727", - "libelleAcheminement": "TENOKUPARA", - "nomCommune": "MANIHI" + "codePostal": "81700", + "codeCommune": "81100", + "libelleAcheminement": "GARREVAQUES", + "nomCommune": "GARREVAQUES" }, { - "codePostal": "86170", - "codeCommune": "86299", - "libelleAcheminement": "VOUZAILLES", - "nomCommune": "VOUZAILLES" + "codePostal": "80500", + "codeCommune": "80049", + "libelleAcheminement": "AYENCOURT LE MONCHEL", + "nomCommune": "AYENCOURT" }, { - "codePostal": "76660", - "codeCommune": "76749", - "libelleAcheminement": "WANCHY CAPVAL", - "nomCommune": "WANCHY CAPVAL" + "codePostal": "81530", + "codeCommune": "81103", + "libelleAcheminement": "GIJOUNET", + "nomCommune": "GIJOUNET" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "HAUMI", - "nomCommune": "MOOREA MAIAO" + "codePostal": "80480", + "codeCommune": "80050", + "libelleAcheminement": "BACOUEL SUR SELLE", + "nomCommune": "BACOUEL SUR SELLE" }, { - "codePostal": "87160", - "codeCommune": "87003", - "libelleAcheminement": "ARNAC LA POSTE", - "nomCommune": "ARNAC LA POSTE" + "codePostal": "81170", + "codeCommune": "81108", + "libelleAcheminement": "ITZAC", + "nomCommune": "ITZAC" }, { - "codePostal": "76690", - "codeCommune": "76756", - "libelleAcheminement": "YQUEBEUF", - "nomCommune": "YQUEBEUF" + "codePostal": "80260", + "codeCommune": "80056", + "libelleAcheminement": "BAVELINCOURT", + "nomCommune": "BAVELINCOURT" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "MAATEA", - "nomCommune": "MOOREA MAIAO" + "codePostal": "81120", + "codeCommune": "81119", + "libelleAcheminement": "LABOUTARIE", + "nomCommune": "LABOUTARIE" }, { - "codePostal": "87220", - "codeCommune": "87005", - "libelleAcheminement": "AUREIL", - "nomCommune": "AUREIL" + "codePostal": "80370", + "codeCommune": "80060", + "libelleAcheminement": "BEALCOURT", + "nomCommune": "BEALCOURT" }, { - "codePostal": "77120", - "codeCommune": "77002", - "libelleAcheminement": "AMILLIS", - "nomCommune": "AMILLIS" + "codePostal": "81500", + "codeCommune": "81126", + "libelleAcheminement": "LACOUGOTTE CADOUL", + "nomCommune": "LACOUGOTTE CADOUL" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "MAHAREPA", - "nomCommune": "MOOREA MAIAO" + "codePostal": "80110", + "codeCommune": "80064", + "libelleAcheminement": "BEAUCOURT EN SANTERRE", + "nomCommune": "BEAUCOURT EN SANTERRE" }, { - "codePostal": "87300", - "codeCommune": "87012", - "libelleAcheminement": "BERNEUIL", - "nomCommune": "BERNEUIL" + "codePostal": "81110", + "codeCommune": "81129", + "libelleAcheminement": "LAGARDIOLLE", + "nomCommune": "LAGARDIOLLE" }, { - "codePostal": "77120", - "codeCommune": "77013", - "libelleAcheminement": "AULNOY", - "nomCommune": "AULNOY" + "codePostal": "80370", + "codeCommune": "80068", + "libelleAcheminement": "BEAUMETZ", + "nomCommune": "BEAUMETZ" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "PAOPAO", - "nomCommune": "MOOREA MAIAO" + "codePostal": "81090", + "codeCommune": "81130", + "libelleAcheminement": "LAGARRIGUE", + "nomCommune": "LAGARRIGUE" }, { - "codePostal": "87220", - "codeCommune": "87019", - "libelleAcheminement": "BOISSEUIL", - "nomCommune": "BOISSEUIL" + "codePostal": "80300", + "codeCommune": "80073", + "libelleAcheminement": "BECORDEL BECOURT", + "nomCommune": "BECORDEL BECOURT" }, { - "codePostal": "77750", - "codeCommune": "77024", - "libelleAcheminement": "BASSEVELLE", - "nomCommune": "BASSEVELLE" + "codePostal": "81260", + "codeCommune": "81134", + "libelleAcheminement": "LAMONTELARIE", + "nomCommune": "LAMONTELARIE" }, { - "codePostal": "98742", - "codeCommune": "98731", - "libelleAcheminement": "TAIPIVAI", - "nomCommune": "NUKU HIVA" + "codePostal": "80132", + "codeCommune": "80078", + "libelleAcheminement": "BELLANCOURT", + "nomCommune": "BELLANCOURT" }, { - "codePostal": "87270", - "codeCommune": "87020", - "libelleAcheminement": "BONNAC LA COTE", - "nomCommune": "BONNAC LA COTE" + "codePostal": "81170", + "codeCommune": "81146", + "libelleAcheminement": "LIVERS CAZELLES", + "nomCommune": "LIVERS CAZELLES" }, { - "codePostal": "77540", - "codeCommune": "77031", - "libelleAcheminement": "BERNAY VILBERT", - "nomCommune": "BERNAY VILBERT" + "codePostal": "80310", + "codeCommune": "80082", + "libelleAcheminement": "BELLOY SUR SOMME", + "nomCommune": "BELLOY SUR SOMME" }, { - "codePostal": "98742", - "codeCommune": "98731", - "libelleAcheminement": "AAKAPA", - "nomCommune": "NUKU HIVA" + "codePostal": "81800", + "codeCommune": "81149", + "libelleAcheminement": "LOUPIAC", + "nomCommune": "LOUPIAC" }, { - "codePostal": "87320", - "codeCommune": "87028", - "libelleAcheminement": "VAL D OIRE ET GARTEMPE", - "nomCommune": "VAL D OIRE ET GARTEMPE" + "codePostal": "80370", + "codeCommune": "80085", + "libelleAcheminement": "BERNATRE", + "nomCommune": "BERNATRE" }, { - "codePostal": "77320", - "codeCommune": "77032", - "libelleAcheminement": "BETON BAZOCHES", - "nomCommune": "BETON BAZOCHES" + "codePostal": "81500", + "codeCommune": "81150", + "libelleAcheminement": "LUGAN", + "nomCommune": "LUGAN" }, { - "codePostal": "98711", - "codeCommune": "98733", - "libelleAcheminement": "PAEA", - "nomCommune": "PAEA" + "codePostal": "80370", + "codeCommune": "80086", + "libelleAcheminement": "BERNAVILLE", + "nomCommune": "BERNAVILLE" }, { - "codePostal": "87320", - "codeCommune": "87028", - "libelleAcheminement": "VAL D OIRE ET GARTEMPE", - "nomCommune": "VAL D OIRE ET GARTEMPE" + "codePostal": "81170", + "codeCommune": "81165", + "libelleAcheminement": "MILHARS", + "nomCommune": "MILHARS" }, { - "codePostal": "77970", - "codeCommune": "77033", - "libelleAcheminement": "BEZALLES", - "nomCommune": "BEZALLES" + "codePostal": "80850", + "codeCommune": "80093", + "libelleAcheminement": "BERTEAUCOURT LES DAMES", + "nomCommune": "BERTEAUCOURT LES DAMES" }, { - "codePostal": "98750", - "codeCommune": "98739", - "libelleAcheminement": "RAIRUA", - "nomCommune": "RAIVAVAE" + "codePostal": "81190", + "codeCommune": "81168", + "libelleAcheminement": "MIRANDOL BOURGNOUNAC", + "nomCommune": "MIRANDOL BOURGNOUNAC" }, { - "codePostal": "87150", - "codeCommune": "87034", - "libelleAcheminement": "CHAMPAGNAC LA RIVIERE", - "nomCommune": "CHAMPAGNAC LA RIVIERE" + "codePostal": "80130", + "codeCommune": "80096", + "libelleAcheminement": "BETHENCOURT SUR MER", + "nomCommune": "BETHENCOURT SUR MER" }, { - "codePostal": "77590", - "codeCommune": "77037", - "libelleAcheminement": "BOIS LE ROI", - "nomCommune": "BOIS LE ROI" + "codePostal": "81640", + "codeCommune": "81170", + "libelleAcheminement": "MONESTIES", + "nomCommune": "MONESTIES" }, { - "codePostal": "98750", - "codeCommune": "98739", - "libelleAcheminement": "ANATONU", - "nomCommune": "RAIVAVAE" + "codePostal": "80290", + "codeCommune": "80098", + "libelleAcheminement": "BETTEMBOS", + "nomCommune": "BETTEMBOS" }, { - "codePostal": "87230", - "codeCommune": "87036", - "libelleAcheminement": "CHAMPSAC", - "nomCommune": "CHAMPSAC" + "codePostal": "81500", + "codeCommune": "81173", + "libelleAcheminement": "MONTCABRIER", + "nomCommune": "MONTCABRIER" }, { - "codePostal": "77350", - "codeCommune": "77039", - "libelleAcheminement": "BOISSISE LA BERTRAND", - "nomCommune": "BOISSISE LA BERTRAND" + "codePostal": "80700", + "codeCommune": "80101", + "libelleAcheminement": "BEUVRAIGNES", + "nomCommune": "BEUVRAIGNES" }, { - "codePostal": "98778", - "codeCommune": "98740", - "libelleAcheminement": "TUHERAHERA", - "nomCommune": "RANGIROA" + "codePostal": "81440", + "codeCommune": "81181", + "libelleAcheminement": "MONTPINIER", + "nomCommune": "MONTPINIER" }, { - "codePostal": "87460", - "codeCommune": "87043", - "libelleAcheminement": "CHEISSOUX", - "nomCommune": "CHEISSOUX" + "codePostal": "80290", + "codeCommune": "80106", + "libelleAcheminement": "BLANGY SOUS POIX", + "nomCommune": "BLANGY SOUS POIX" }, { - "codePostal": "77310", - "codeCommune": "77040", - "libelleAcheminement": "BOISSISE LE ROI", - "nomCommune": "BOISSISE LE ROI" + "codePostal": "81360", + "codeCommune": "81182", + "libelleAcheminement": "MONTREDON LABESSONNIE", + "nomCommune": "MONTREDON LABESSONNIE" }, { - "codePostal": "98752", - "codeCommune": "98743", - "libelleAcheminement": "RIMATARA", - "nomCommune": "RIMATARA" + "codePostal": "80340", + "codeCommune": "80136", + "libelleAcheminement": "BRAY SUR SOMME", + "nomCommune": "BRAY SUR SOMME" }, { - "codePostal": "87600", - "codeCommune": "87044", - "libelleAcheminement": "CHERONNAC", - "nomCommune": "CHERONNAC" + "codePostal": "81120", + "codeCommune": "81183", + "libelleAcheminement": "MONT ROC", + "nomCommune": "MONT ROC" }, { - "codePostal": "77620", - "codeCommune": "77050", - "libelleAcheminement": "BRANSLES", - "nomCommune": "BRANSLES" + "codePostal": "80470", + "codeCommune": "80137", + "libelleAcheminement": "BREILLY", + "nomCommune": "BREILLY" }, { - "codePostal": "98795", - "codeCommune": "98743", - "libelleAcheminement": "MARIA ILOTS", - "nomCommune": "RIMATARA" + "codePostal": "81630", + "codeCommune": "81185", + "libelleAcheminement": "MONTVALEN", + "nomCommune": "MONTVALEN" }, { - "codePostal": "87500", - "codeCommune": "87049", - "libelleAcheminement": "COUSSAC BONNEVAL", - "nomCommune": "COUSSAC BONNEVAL" + "codePostal": "80400", + "codeCommune": "80139", + "libelleAcheminement": "BREUIL", + "nomCommune": "BREUIL" }, { - "codePostal": "77720", - "codeCommune": "77052", - "libelleAcheminement": "BREAU", - "nomCommune": "BREAU" + "codePostal": "81320", + "codeCommune": "81193", + "libelleAcheminement": "NAGES", + "nomCommune": "NAGES" }, { - "codePostal": "98733", - "codeCommune": "98745", - "libelleAcheminement": "TAHAA", - "nomCommune": "TAHAA" + "codePostal": "80600", + "codeCommune": "80140", + "libelleAcheminement": "BREVILLERS", + "nomCommune": "BREVILLERS" }, { - "codePostal": "87310", - "codeCommune": "87073", - "libelleAcheminement": "GORRE", - "nomCommune": "GORRE" + "codePostal": "81310", + "codeCommune": "81208", + "libelleAcheminement": "PEYROLE", + "nomCommune": "PEYROLE" }, { - "codePostal": "77170", - "codeCommune": "77053", - "libelleAcheminement": "BRIE COMTE ROBERT", - "nomCommune": "BRIE COMTE ROBERT" + "codePostal": "80800", + "codeCommune": "80159", + "libelleAcheminement": "CACHY", + "nomCommune": "CACHY" }, { - "codePostal": "98733", - "codeCommune": "98745", - "libelleAcheminement": "HIPU", - "nomCommune": "TAHAA" + "codePostal": "81700", + "codeCommune": "81210", + "libelleAcheminement": "POUDIS", + "nomCommune": "POUDIS" }, { - "codePostal": "87230", - "codeCommune": "87084", - "libelleAcheminement": "LAVIGNAC", - "nomCommune": "LAVIGNAC" + "codePostal": "80450", + "codeCommune": "80164", + "libelleAcheminement": "CAMON", + "nomCommune": "CAMON" }, { - "codePostal": "77760", - "codeCommune": "77056", - "libelleAcheminement": "BURCY", - "nomCommune": "BURCY" + "codePostal": "81700", + "codeCommune": "81219", + "libelleAcheminement": "PUYLAURENS", + "nomCommune": "PUYLAURENS" }, { - "codePostal": "98734", - "codeCommune": "98745", - "libelleAcheminement": "POUTORU", - "nomCommune": "TAHAA" + "codePostal": "80150", + "codeCommune": "80167", + "libelleAcheminement": "CANCHY", + "nomCommune": "CANCHY" }, { - "codePostal": "87100", - "codeCommune": "87085", - "libelleAcheminement": "LIMOGES", - "nomCommune": "LIMOGES" + "codePostal": "81120", + "codeCommune": "81233", + "libelleAcheminement": "TERRE DE BANCALIE", + "nomCommune": "TERRE DE BANCALIE" }, { - "codePostal": "77600", - "codeCommune": "77058", - "libelleAcheminement": "BUSSY ST GEORGES", - "nomCommune": "BUSSY ST GEORGES" + "codePostal": "80132", + "codeCommune": "80171", + "libelleAcheminement": "CAOURS", + "nomCommune": "CAOURS" }, { - "codePostal": "98722", - "codeCommune": "98747", - "libelleAcheminement": "TAUTIRA", - "nomCommune": "TAIARAPU EST" + "codePostal": "81120", + "codeCommune": "81233", + "libelleAcheminement": "TERRE DE BANCALIE", + "nomCommune": "TERRE DE BANCALIE" }, { - "codePostal": "87280", - "codeCommune": "87085", - "libelleAcheminement": "LIMOGES", - "nomCommune": "LIMOGES" + "codePostal": "80340", + "codeCommune": "80172", + "libelleAcheminement": "CAPPY", + "nomCommune": "CAPPY" }, { - "codePostal": "77600", - "codeCommune": "77059", - "libelleAcheminement": "BUSSY ST MARTIN", - "nomCommune": "BUSSY ST MARTIN" + "codePostal": "81120", + "codeCommune": "81233", + "libelleAcheminement": "TERRE DE BANCALIE", + "nomCommune": "TERRE DE BANCALIE" }, { - "codePostal": "98735", - "codeCommune": "98750", - "libelleAcheminement": "PUOHINE", - "nomCommune": "TAPUTAPUATEA" + "codePostal": "80410", + "codeCommune": "80182", + "libelleAcheminement": "CAYEUX SUR MER", + "nomCommune": "CAYEUX SUR MER" }, { - "codePostal": "87360", - "codeCommune": "87087", - "libelleAcheminement": "LUSSAC LES EGLISES", - "nomCommune": "LUSSAC LES EGLISES" + "codePostal": "81500", + "codeCommune": "81236", + "libelleAcheminement": "ST AGNAN", + "nomCommune": "ST AGNAN" }, { - "codePostal": "77600", - "codeCommune": "77059", - "libelleAcheminement": "BUSSY ST MARTIN", - "nomCommune": "BUSSY ST MARTIN" + "codePostal": "80700", + "codeCommune": "80185", + "libelleAcheminement": "CHAMPIEN", + "nomCommune": "CHAMPIEN" }, { - "codePostal": "98783", - "codeCommune": "98751", - "libelleAcheminement": "TUMUKURU", - "nomCommune": "TATAKOTO" + "codePostal": "81400", + "codeCommune": "81244", + "libelleAcheminement": "ST BENOIT DE CARMAUX", + "nomCommune": "ST BENOIT DE CARMAUX" }, { - "codePostal": "87440", - "codeCommune": "87092", - "libelleAcheminement": "MARVAL", - "nomCommune": "MARVAL" + "codePostal": "80250", + "codeCommune": "80188", + "libelleAcheminement": "CHAUSSOY EPAGNY", + "nomCommune": "CHAUSSOY EPAGNY" }, { - "codePostal": "77460", - "codeCommune": "77071", - "libelleAcheminement": "CHAINTREAUX", - "nomCommune": "CHAINTREAUX" + "codePostal": "81700", + "codeCommune": "81251", + "libelleAcheminement": "ST GERMAIN DES PRES", + "nomCommune": "ST GERMAIN DES PRES" }, { - "codePostal": "98727", - "codeCommune": "98752", - "libelleAcheminement": "PAPEARI", - "nomCommune": "TEVA I UTA" + "codePostal": "80700", + "codeCommune": "80189", + "libelleAcheminement": "LA CHAVATTE", + "nomCommune": "LA CHAVATTE" }, { - "codePostal": "87130", - "codeCommune": "87093", - "libelleAcheminement": "MASLEON", - "nomCommune": "MASLEON" + "codePostal": "81340", + "codeCommune": "81264", + "libelleAcheminement": "ST MICHEL LABADIE", + "nomCommune": "ST MICHEL LABADIE" }, { - "codePostal": "77600", - "codeCommune": "77085", - "libelleAcheminement": "CHANTELOUP EN BRIE", - "nomCommune": "CHANTELOUP EN BRIE" + "codePostal": "80170", + "codeCommune": "80191", + "libelleAcheminement": "CHILLY", + "nomCommune": "CHILLY" }, { - "codePostal": "98754", - "codeCommune": "98753", - "libelleAcheminement": "MATAURA", - "nomCommune": "TUBUAI" + "codePostal": "81220", + "codeCommune": "81266", + "libelleAcheminement": "ST PAUL CAP DE JOUX", + "nomCommune": "ST PAUL CAP DE JOUX" }, { - "codePostal": "87330", - "codeCommune": "87097", - "libelleAcheminement": "VAL D ISSOIRE", - "nomCommune": "VAL D ISSOIRE" + "codePostal": "80800", + "codeCommune": "80192", + "libelleAcheminement": "CHIPILLY", + "nomCommune": "CHIPILLY" }, { - "codePostal": "77590", - "codeCommune": "77096", - "libelleAcheminement": "CHARTRETTES", - "nomCommune": "CHARTRETTES" + "codePostal": "81530", + "codeCommune": "81268", + "libelleAcheminement": "ST SALVI DE CARCAVES", + "nomCommune": "ST SALVI DE CARCAVES" }, { - "codePostal": "98735", - "codeCommune": "98754", - "libelleAcheminement": "TUMARAA", - "nomCommune": "TUMARAA" + "codePostal": "80250", + "codeCommune": "80193", + "libelleAcheminement": "CHIRMONT", + "nomCommune": "CHIRMONT" }, { - "codePostal": "87330", - "codeCommune": "87100", - "libelleAcheminement": "MONTROL SENARD", - "nomCommune": "MONTROL SENARD" + "codePostal": "81710", + "codeCommune": "81273", + "libelleAcheminement": "SAIX", + "nomCommune": "SAIX" }, { - "codePostal": "77320", - "codeCommune": "77097", - "libelleAcheminement": "CHARTRONGES", - "nomCommune": "CHARTRONGES" + "codePostal": "80490", + "codeCommune": "80196", + "libelleAcheminement": "CITERNE", + "nomCommune": "CITERNE" }, { - "codePostal": "98735", - "codeCommune": "98754", - "libelleAcheminement": "FETUNA", - "nomCommune": "TUMARAA" + "codePostal": "81990", + "codeCommune": "81274", + "libelleAcheminement": "SALIES", + "nomCommune": "SALIES" }, { - "codePostal": "87520", - "codeCommune": "87110", - "libelleAcheminement": "ORADOUR SUR GLANE", - "nomCommune": "ORADOUR SUR GLANE" + "codePostal": "80160", + "codeCommune": "80210", + "libelleAcheminement": "CONTRE", + "nomCommune": "CONTRE" }, { - "codePostal": "77500", - "codeCommune": "77108", - "libelleAcheminement": "CHELLES", - "nomCommune": "CHELLES" + "codePostal": "81640", + "codeCommune": "81280", + "libelleAcheminement": "LE SEGUR", + "nomCommune": "LE SEGUR" }, { - "codePostal": "98745", - "codeCommune": "98757", - "libelleAcheminement": "HAKATAO", - "nomCommune": "UA POU" + "codePostal": "80160", + "codeCommune": "80219", + "libelleAcheminement": "COURCELLES SOUS THOIX", + "nomCommune": "COURCELLES SOUS THOIX" }, { - "codePostal": "87150", - "codeCommune": "87111", - "libelleAcheminement": "ORADOUR SUR VAYRES", - "nomCommune": "ORADOUR SUR VAYRES" + "codePostal": "81530", + "codeCommune": "81282", + "libelleAcheminement": "SENAUX", + "nomCommune": "SENAUX" }, { - "codePostal": "77700", - "codeCommune": "77111", - "libelleAcheminement": "CHESSY", - "nomCommune": "CHESSY" + "codePostal": "80370", + "codeCommune": "80221", + "libelleAcheminement": "CRAMONT", + "nomCommune": "CRAMONT" }, { - "codePostal": "98835", - "codeCommune": "98805", - "libelleAcheminement": "DUMBEA", - "nomCommune": "DUMBEA" + "codePostal": "81220", + "codeCommune": "81286", + "libelleAcheminement": "SERVIES", + "nomCommune": "SERVIES" }, { - "codePostal": "87230", - "codeCommune": "87112", - "libelleAcheminement": "PAGEAS", - "nomCommune": "PAGEAS" + "codePostal": "80480", + "codeCommune": "80225", + "libelleAcheminement": "CREUSE", + "nomCommune": "CREUSE" }, { - "codePostal": "77760", - "codeCommune": "77112", - "libelleAcheminement": "CHEVRAINVILLIERS", - "nomCommune": "CHEVRAINVILLIERS" + "codePostal": "81170", + "codeCommune": "81290", + "libelleAcheminement": "SOUEL", + "nomCommune": "SOUEL" }, { - "codePostal": "98838", - "codeCommune": "98808", - "libelleAcheminement": "PORO", - "nomCommune": "HOUAILOU" + "codePostal": "80400", + "codeCommune": "80226", + "libelleAcheminement": "CROIX MOLIGNEAUX", + "nomCommune": "CROIX MOLIGNEAUX" }, { - "codePostal": "87410", - "codeCommune": "87113", - "libelleAcheminement": "LE PALAIS SUR VIENNE", - "nomCommune": "LE PALAIS SUR VIENNE" + "codePostal": "81130", + "codeCommune": "81291", + "libelleAcheminement": "TAIX", + "nomCommune": "TAIX" }, { - "codePostal": "77320", - "codeCommune": "77113", - "libelleAcheminement": "CHEVRU", - "nomCommune": "CHEVRU" + "codePostal": "80190", + "codeCommune": "80230", + "libelleAcheminement": "CURCHY", + "nomCommune": "CURCHY" }, { - "codePostal": "98884", - "codeCommune": "98814", - "libelleAcheminement": "CHEPENEHE", - "nomCommune": "LIFOU" + "codePostal": "81600", + "codeCommune": "81294", + "libelleAcheminement": "TECOU", + "nomCommune": "TECOU" }, { - "codePostal": "87440", - "codeCommune": "87115", - "libelleAcheminement": "PENSOL", - "nomCommune": "PENSOL" + "codePostal": "80700", + "codeCommune": "80232", + "libelleAcheminement": "DAMERY", + "nomCommune": "DAMERY" }, { - "codePostal": "77440", - "codeCommune": "77120", - "libelleAcheminement": "COCHEREL", - "nomCommune": "COCHEREL" + "codePostal": "81150", + "codeCommune": "81297", + "libelleAcheminement": "TERSSAC", + "nomCommune": "TERSSAC" }, { - "codePostal": "98875", - "codeCommune": "98817", - "libelleAcheminement": "PLUM", - "nomCommune": "LE MONT DORE" + "codePostal": "80570", + "codeCommune": "80235", + "libelleAcheminement": "DARGNIES", + "nomCommune": "DARGNIES" }, { - "codePostal": "87510", - "codeCommune": "87118", - "libelleAcheminement": "PEYRILHAC", - "nomCommune": "PEYRILHAC" + "codePostal": "81350", + "codeCommune": "81306", + "libelleAcheminement": "VALDERIES", + "nomCommune": "VALDERIES" }, { - "codePostal": "77090", - "codeCommune": "77121", - "libelleAcheminement": "COLLEGIEN", - "nomCommune": "COLLEGIEN" + "codePostal": "80300", + "codeCommune": "80238", + "libelleAcheminement": "DERNANCOURT", + "nomCommune": "DERNANCOURT" }, { - "codePostal": "98821", - "codeCommune": "98819", - "libelleAcheminement": "OUEGOA", - "nomCommune": "OUEGOA" + "codePostal": "82350", + "codeCommune": "82002", + "libelleAcheminement": "ALBIAS", + "nomCommune": "ALBIAS" }, { - "codePostal": "87640", - "codeCommune": "87122", - "libelleAcheminement": "RAZES", - "nomCommune": "RAZES" + "codePostal": "80370", + "codeCommune": "80243", + "libelleAcheminement": "DOMESMONT", + "nomCommune": "DOMESMONT" }, { - "codePostal": "77380", - "codeCommune": "77122", - "libelleAcheminement": "COMBS LA VILLE", - "nomCommune": "COMBS LA VILLE" + "codePostal": "82210", + "codeCommune": "82003", + "libelleAcheminement": "ANGEVILLE", + "nomCommune": "ANGEVILLE" }, { - "codePostal": "98890", - "codeCommune": "98821", - "libelleAcheminement": "PAITA", - "nomCommune": "PAITA" + "codePostal": "80120", + "codeCommune": "80244", + "libelleAcheminement": "DOMINOIS", + "nomCommune": "DOMINOIS" }, { - "codePostal": "87800", - "codeCommune": "87124", - "libelleAcheminement": "RILHAC LASTOURS", - "nomCommune": "RILHAC LASTOURS" + "codePostal": "82340", + "codeCommune": "82008", + "libelleAcheminement": "AUVILLAR", + "nomCommune": "AUVILLAR" }, { - "codePostal": "77840", - "codeCommune": "77129", - "libelleAcheminement": "COULOMBS EN VALOIS", - "nomCommune": "COULOMBS EN VALOIS" + "codePostal": "80150", + "codeCommune": "80248", + "libelleAcheminement": "DOMPIERRE SUR AUTHIE", + "nomCommune": "DOMPIERRE SUR AUTHIE" }, { - "codePostal": "98827", - "codeCommune": "98827", - "libelleAcheminement": "POYA", - "nomCommune": "POYA" + "codePostal": "82340", + "codeCommune": "82010", + "libelleAcheminement": "BARDIGUES", + "nomCommune": "BARDIGUES" }, { - "codePostal": "87140", - "codeCommune": "87128", - "libelleAcheminement": "ST PARDOUX LE LAC", - "nomCommune": "ST PARDOUX LE LAC" + "codePostal": "80620", + "codeCommune": "80249", + "libelleAcheminement": "DOMQUEUR", + "nomCommune": "DOMQUEUR" }, { - "codePostal": "77120", - "codeCommune": "77131", - "libelleAcheminement": "COULOMMIERS", - "nomCommune": "COULOMMIERS" + "codePostal": "82500", + "codeCommune": "82013", + "libelleAcheminement": "BEAUMONT DE LOMAGNE", + "nomCommune": "BEAUMONT DE LOMAGNE" }, { - "codePostal": "98877", - "codeCommune": "98827", - "libelleAcheminement": "NEPOUI", - "nomCommune": "POYA" + "codePostal": "80600", + "codeCommune": "80253", + "libelleAcheminement": "DOULLENS", + "nomCommune": "DOULLENS" }, { - "codePostal": "87120", - "codeCommune": "87134", - "libelleAcheminement": "STE ANNE ST PRIEST", - "nomCommune": "STE ANNE ST PRIEST" + "codePostal": "82500", + "codeCommune": "82015", + "libelleAcheminement": "BELBEZE EN LOMAGNE", + "nomCommune": "BELBEZE EN LOMAGNE" }, { - "codePostal": "77700", - "codeCommune": "77132", - "libelleAcheminement": "COUPVRAY", - "nomCommune": "COUPVRAY" + "codePostal": "80470", + "codeCommune": "80256", + "libelleAcheminement": "DREUIL LES AMIENS", + "nomCommune": "DREUIL LES AMIENS" }, { - "codePostal": "87310", - "codeCommune": "87135", - "libelleAcheminement": "ST AUVENT", - "nomCommune": "ST AUVENT" + "codePostal": "82700", + "codeCommune": "82023", + "libelleAcheminement": "BOURRET", + "nomCommune": "BOURRET" }, { - "codePostal": "77560", - "codeCommune": "77137", - "libelleAcheminement": "COURTACON", - "nomCommune": "COURTACON" + "codePostal": "80240", + "codeCommune": "80258", + "libelleAcheminement": "DRIENCOURT", + "nomCommune": "DRIENCOURT" }, { - "codePostal": "87260", - "codeCommune": "87144", - "libelleAcheminement": "ST GENEST SUR ROSELLE", - "nomCommune": "ST GENEST SUR ROSELLE" + "codePostal": "82710", + "codeCommune": "82025", + "libelleAcheminement": "BRESSOLS", + "nomCommune": "BRESSOLS" }, { - "codePostal": "77181", - "codeCommune": "77139", - "libelleAcheminement": "COURTRY", - "nomCommune": "COURTRY" + "codePostal": "80640", + "codeCommune": "80259", + "libelleAcheminement": "DROMESNIL", + "nomCommune": "DROMESNIL" }, { - "codePostal": "87160", - "codeCommune": "87145", - "libelleAcheminement": "ST GEORGES LES LANDES", - "nomCommune": "ST GEORGES LES LANDES" + "codePostal": "82170", + "codeCommune": "82028", + "libelleAcheminement": "CANALS", + "nomCommune": "CANALS" }, { - "codePostal": "77610", - "codeCommune": "77144", - "libelleAcheminement": "CREVECOEUR EN BRIE", - "nomCommune": "CREVECOEUR EN BRIE" + "codePostal": "80580", + "codeCommune": "80262", + "libelleAcheminement": "EAUCOURT SUR SOMME", + "nomCommune": "EAUCOURT SUR SOMME" }, { - "codePostal": "87130", - "codeCommune": "87147", - "libelleAcheminement": "ST GILLES LES FORETS", - "nomCommune": "ST GILLES LES FORETS" + "codePostal": "82140", + "codeCommune": "82041", + "libelleAcheminement": "CAZALS", + "nomCommune": "CAZALS" }, { - "codePostal": "77320", - "codeCommune": "77151", - "libelleAcheminement": "DAGNY", - "nomCommune": "DAGNY" + "codePostal": "80570", + "codeCommune": "80265", + "libelleAcheminement": "EMBREVILLE", + "nomCommune": "EMBREVILLE" }, { - "codePostal": "87190", - "codeCommune": "87149", - "libelleAcheminement": "ST HILAIRE LA TREILLE", - "nomCommune": "ST HILAIRE LA TREILLE" + "codePostal": "82600", + "codeCommune": "82043", + "libelleAcheminement": "COMBEROUGER", + "nomCommune": "COMBEROUGER" }, { - "codePostal": "77940", - "codeCommune": "77158", - "libelleAcheminement": "DIANT", - "nomCommune": "DIANT" + "codePostal": "80200", + "codeCommune": "80267", + "libelleAcheminement": "ENNEMAIN", + "nomCommune": "ENNEMAIN" }, { - "codePostal": "87510", - "codeCommune": "87152", - "libelleAcheminement": "ST JOUVENT", - "nomCommune": "ST JOUVENT" + "codePostal": "82500", + "codeCommune": "82047", + "libelleAcheminement": "CUMONT", + "nomCommune": "CUMONT" }, { - "codePostal": "77130", - "codeCommune": "77161", - "libelleAcheminement": "DORMELLES", - "nomCommune": "DORMELLES" + "codePostal": "80580", + "codeCommune": "80268", + "libelleAcheminement": "EPAGNE EPAGNETTE", + "nomCommune": "EPAGNE EPAGNETTE" }, { - "codePostal": "87200", - "codeCommune": "87154", - "libelleAcheminement": "ST JUNIEN", - "nomCommune": "ST JUNIEN" + "codePostal": "82160", + "codeCommune": "82056", + "libelleAcheminement": "ESPINAS", + "nomCommune": "ESPINAS" }, { - "codePostal": "77510", - "codeCommune": "77162", - "libelleAcheminement": "DOUE", - "nomCommune": "DOUE" + "codePostal": "80190", + "codeCommune": "80272", + "libelleAcheminement": "EPENANCOURT", + "nomCommune": "EPENANCOURT" }, { - "codePostal": "87400", - "codeCommune": "87161", - "libelleAcheminement": "ST LEONARD DE NOBLAT", - "nomCommune": "ST LEONARD DE NOBLAT" + "codePostal": "82500", + "codeCommune": "82068", + "libelleAcheminement": "GIMAT", + "nomCommune": "GIMAT" }, { - "codePostal": "77184", - "codeCommune": "77169", - "libelleAcheminement": "EMERAINVILLE", - "nomCommune": "EMERAINVILLE" + "codePostal": "80210", + "codeCommune": "80280", + "libelleAcheminement": "ERCOURT", + "nomCommune": "ERCOURT" }, { - "codePostal": "87360", - "codeCommune": "87165", - "libelleAcheminement": "ST MARTIN LE MAULT", - "nomCommune": "ST MARTIN LE MAULT" + "codePostal": "82120", + "codeCommune": "82074", + "libelleAcheminement": "GRAMONT", + "nomCommune": "GRAMONT" }, { - "codePostal": "77167", - "codeCommune": "77178", - "libelleAcheminement": "FAY LES NEMOURS", - "nomCommune": "FAY LES NEMOURS" + "codePostal": "80500", + "codeCommune": "80293", + "libelleAcheminement": "ETELFAY", + "nomCommune": "ETELFAY" }, { - "codePostal": "87400", - "codeCommune": "87167", - "libelleAcheminement": "ST MARTIN TERRESSUS", - "nomCommune": "ST MARTIN TERRESSUS" + "codePostal": "82130", + "codeCommune": "82076", + "libelleAcheminement": "L HONOR DE COS", + "nomCommune": "L HONOR DE COS" }, { - "codePostal": "77610", - "codeCommune": "77192", - "libelleAcheminement": "FONTENAY TRESIGNY", - "nomCommune": "FONTENAY TRESIGNY" + "codePostal": "80340", + "codeCommune": "80295", + "libelleAcheminement": "ETINEHEM MERICOURT", + "nomCommune": "ETINEHEM MERICOURT" }, { - "codePostal": "87130", - "codeCommune": "87170", - "libelleAcheminement": "ST MEARD", - "nomCommune": "ST MEARD" + "codePostal": "82190", + "codeCommune": "82084", + "libelleAcheminement": "LACOUR", + "nomCommune": "LACOUR" }, { - "codePostal": "77130", - "codeCommune": "77194", - "libelleAcheminement": "FORGES", - "nomCommune": "FORGES" + "codePostal": "80360", + "codeCommune": "80312", + "libelleAcheminement": "FINS", + "nomCommune": "FINS" }, { - "codePostal": "87300", - "codeCommune": "87172", - "libelleAcheminement": "ST OUEN SUR GARTEMPE", - "nomCommune": "ST OUEN SUR GARTEMPE" + "codePostal": "82130", + "codeCommune": "82090", + "libelleAcheminement": "LAMOTHE CAPDEVILLE", + "nomCommune": "LAMOTHE CAPDEVILLE" }, { - "codePostal": "77890", - "codeCommune": "77200", - "libelleAcheminement": "GARENTREVILLE", - "nomCommune": "GARENTREVILLE" + "codePostal": "80420", + "codeCommune": "80318", + "libelleAcheminement": "FLIXECOURT", + "nomCommune": "FLIXECOURT" }, { - "codePostal": "87240", - "codeCommune": "87183", - "libelleAcheminement": "ST SYLVESTRE", - "nomCommune": "ST SYLVESTRE" + "codePostal": "82120", + "codeCommune": "82104", + "libelleAcheminement": "MARSAC", + "nomCommune": "MARSAC" }, { - "codePostal": "77165", - "codeCommune": "77205", - "libelleAcheminement": "GESVRES LE CHAPITRE", - "nomCommune": "GESVRES LE CHAPITRE" + "codePostal": "80140", + "codeCommune": "80324", + "libelleAcheminement": "FONTAINE LE SEC", + "nomCommune": "FONTAINE LE SEC" }, { - "codePostal": "87400", - "codeCommune": "87190", - "libelleAcheminement": "SAUVIAT SUR VIGE", - "nomCommune": "SAUVIAT SUR VIGE" + "codePostal": "82290", + "codeCommune": "82108", + "libelleAcheminement": "MEAUZAC", + "nomCommune": "MEAUZAC" }, { - "codePostal": "77890", - "codeCommune": "77207", - "libelleAcheminement": "GIRONVILLE", - "nomCommune": "GIRONVILLE" + "codePostal": "80150", + "codeCommune": "80327", + "libelleAcheminement": "FONTAINE SUR MAYE", + "nomCommune": "FONTAINE SUR MAYE" }, { - "codePostal": "87110", - "codeCommune": "87192", - "libelleAcheminement": "SOLIGNAC", - "nomCommune": "SOLIGNAC" + "codePostal": "82440", + "codeCommune": "82110", + "libelleAcheminement": "MIRABEL", + "nomCommune": "MIRABEL" }, { - "codePostal": "77400", - "codeCommune": "77209", - "libelleAcheminement": "GOUVERNES", - "nomCommune": "GOUVERNES" + "codePostal": "80160", + "codeCommune": "80334", + "libelleAcheminement": "FOSSEMANANT", + "nomCommune": "FOSSEMANANT" }, { - "codePostal": "87130", - "codeCommune": "87193", - "libelleAcheminement": "SURDOUX", - "nomCommune": "SURDOUX" + "codePostal": "82170", + "codeCommune": "82114", + "libelleAcheminement": "MONBEQUI", + "nomCommune": "MONBEQUI" }, { - "codePostal": "77880", - "codeCommune": "77216", - "libelleAcheminement": "GREZ SUR LOING", - "nomCommune": "GREZ SUR LOING" + "codePostal": "80170", + "codeCommune": "80339", + "libelleAcheminement": "FOUQUESCOURT", + "nomCommune": "FOUQUESCOURT" }, { - "codePostal": "87110", - "codeCommune": "87205", - "libelleAcheminement": "LE VIGEN", - "nomCommune": "LE VIGEN" + "codePostal": "82150", + "codeCommune": "82117", + "libelleAcheminement": "MONTAIGU DE QUERCY", + "nomCommune": "MONTAIGU DE QUERCY" }, { - "codePostal": "77760", - "codeCommune": "77220", - "libelleAcheminement": "GUERCHEVILLE", - "nomCommune": "GUERCHEVILLE" + "codePostal": "80290", + "codeCommune": "80340", + "libelleAcheminement": "FOURCIGNY", + "nomCommune": "FOURCIGNY" }, { - "codePostal": "88500", - "codeCommune": "88002", - "libelleAcheminement": "AHEVILLE", - "nomCommune": "AHEVILLE" + "codePostal": "82700", + "codeCommune": "82123", + "libelleAcheminement": "MONTBARTIER", + "nomCommune": "MONTBARTIER" }, { - "codePostal": "77600", - "codeCommune": "77221", - "libelleAcheminement": "GUERMANTES", - "nomCommune": "GUERMANTES" + "codePostal": "80310", + "codeCommune": "80341", + "libelleAcheminement": "FOURDRINOY", + "nomCommune": "FOURDRINOY" }, { - "codePostal": "88140", - "codeCommune": "88003", - "libelleAcheminement": "AINGEVILLE", - "nomCommune": "AINGEVILLE" + "codePostal": "82290", + "codeCommune": "82124", + "libelleAcheminement": "MONTBETON", + "nomCommune": "MONTBETON" }, { - "codePostal": "77390", - "codeCommune": "77222", - "libelleAcheminement": "GUIGNES", - "nomCommune": "GUIGNES" + "codePostal": "80700", + "codeCommune": "80359", + "libelleAcheminement": "FRESNOY LES ROYE", + "nomCommune": "FRESNOY LES ROYE" }, { - "codePostal": "88320", - "codeCommune": "88004", - "libelleAcheminement": "AINVELLE", - "nomCommune": "AINVELLE" + "codePostal": "82200", + "codeCommune": "82127", + "libelleAcheminement": "MONTESQUIEU", + "nomCommune": "MONTESQUIEU" }, { - "codePostal": "77515", - "codeCommune": "77224", - "libelleAcheminement": "HAUTEFEUILLE", - "nomCommune": "HAUTEFEUILLE" + "codePostal": "80140", + "codeCommune": "80361", + "libelleAcheminement": "FRETTECUISSE", + "nomCommune": "FRETTECUISSE" }, { - "codePostal": "88500", - "codeCommune": "88006", - "libelleAcheminement": "AMBACOURT", - "nomCommune": "AMBACOURT" + "codePostal": "82270", + "codeCommune": "82131", + "libelleAcheminement": "MONTPEZAT DE QUERCY", + "nomCommune": "MONTPEZAT DE QUERCY" }, { - "codePostal": "77580", - "codeCommune": "77225", - "libelleAcheminement": "LA HAUTE MAISON", - "nomCommune": "LA HAUTE MAISON" + "codePostal": "80290", + "codeCommune": "80365", + "libelleAcheminement": "FRICAMPS", + "nomCommune": "FRICAMPS" }, { - "codePostal": "88410", - "codeCommune": "88007", - "libelleAcheminement": "AMEUVELLE", - "nomCommune": "AMEUVELLE" + "codePostal": "82370", + "codeCommune": "82135", + "libelleAcheminement": "NOHIC", + "nomCommune": "NOHIC" }, { - "codePostal": "77440", - "codeCommune": "77231", - "libelleAcheminement": "ISLES LES MELDEUSES", - "nomCommune": "ISLES LES MELDEUSES" + "codePostal": "80290", + "codeCommune": "80375", + "libelleAcheminement": "GAUVILLE", + "nomCommune": "GAUVILLE" }, { - "codePostal": "88170", - "codeCommune": "88010", - "libelleAcheminement": "AOUZE", - "nomCommune": "AOUZE" + "codePostal": "82160", + "codeCommune": "82137", + "libelleAcheminement": "PARISOT", + "nomCommune": "PARISOT" }, { - "codePostal": "77320", - "codeCommune": "77247", - "libelleAcheminement": "LESCHEROLLES", - "nomCommune": "LESCHEROLLES" + "codePostal": "80360", + "codeCommune": "80378", + "libelleAcheminement": "GINCHY", + "nomCommune": "GINCHY" }, { - "codePostal": "88300", - "codeCommune": "88017", - "libelleAcheminement": "AULNOIS", - "nomCommune": "AULNOIS" + "codePostal": "82130", + "codeCommune": "82140", + "libelleAcheminement": "PIQUECOS", + "nomCommune": "PIQUECOS" }, { - "codePostal": "77150", - "codeCommune": "77249", - "libelleAcheminement": "LESIGNY", - "nomCommune": "LESIGNY" + "codePostal": "80300", + "codeCommune": "80384", + "libelleAcheminement": "GRANDCOURT", + "nomCommune": "GRANDCOURT" }, { - "codePostal": "88140", - "codeCommune": "88022", - "libelleAcheminement": "AUZAINVILLIERS", - "nomCommune": "AUZAINVILLIERS" + "codePostal": "82160", + "codeCommune": "82147", + "libelleAcheminement": "PUYLAGARDE", + "nomCommune": "PUYLAGARDE" }, { - "codePostal": "77320", - "codeCommune": "77250", - "libelleAcheminement": "LEUDON EN BRIE", - "nomCommune": "LEUDON EN BRIE" + "codePostal": "80600", + "codeCommune": "80392", + "libelleAcheminement": "GROUCHES LUCHUEL", + "nomCommune": "GROUCHES LUCHUEL" }, { - "codePostal": "88600", - "codeCommune": "88026", - "libelleAcheminement": "AYDOILLES", - "nomCommune": "AYDOILLES" + "codePostal": "82370", + "codeCommune": "82150", + "libelleAcheminement": "REYNIES", + "nomCommune": "REYNIES" }, { - "codePostal": "77000", - "codeCommune": "77255", - "libelleAcheminement": "LIVRY SUR SEINE", - "nomCommune": "LIVRY SUR SEINE" + "codePostal": "80360", + "codeCommune": "80401", + "libelleAcheminement": "GUILLEMONT", + "nomCommune": "GUILLEMONT" }, { - "codePostal": "88240", - "codeCommune": "88029", - "libelleAcheminement": "LA VOGE LES BAINS", - "nomCommune": "LA VOGE LES BAINS" + "codePostal": "82100", + "codeCommune": "82152", + "libelleAcheminement": "ST AIGNAN", + "nomCommune": "ST AIGNAN" }, { - "codePostal": "77650", - "codeCommune": "77256", - "libelleAcheminement": "LIZINES", - "nomCommune": "LIZINES" + "codePostal": "80290", + "codeCommune": "80402", + "libelleAcheminement": "GUIZANCOURT", + "nomCommune": "GUIZANCOURT" }, { - "codePostal": "88240", - "codeCommune": "88029", - "libelleAcheminement": "LA VOGE LES BAINS", - "nomCommune": "LA VOGE LES BAINS" + "codePostal": "82210", + "codeCommune": "82156", + "libelleAcheminement": "ST ARROUMEX", + "nomCommune": "ST ARROUMEX" }, { - "codePostal": "77650", - "codeCommune": "77260", - "libelleAcheminement": "LONGUEVILLE", - "nomCommune": "LONGUEVILLE" + "codePostal": "80490", + "codeCommune": "80406", + "libelleAcheminement": "HALLENCOURT", + "nomCommune": "HALLENCOURT" }, { - "codePostal": "88170", - "codeCommune": "88031", - "libelleAcheminement": "BALLEVILLE", - "nomCommune": "BALLEVILLE" + "codePostal": "82300", + "codeCommune": "82159", + "libelleAcheminement": "ST CIRQ", + "nomCommune": "ST CIRQ" }, { - "codePostal": "77520", - "codeCommune": "77263", - "libelleAcheminement": "LUISETAINES", - "nomCommune": "LUISETAINES" + "codePostal": "80134", + "codeCommune": "80415", + "libelleAcheminement": "HANGEST EN SANTERRE", + "nomCommune": "HANGEST EN SANTERRE" }, { - "codePostal": "88130", - "codeCommune": "88038", - "libelleAcheminement": "BATTEXEY", - "nomCommune": "BATTEXEY" + "codePostal": "82400", + "codeCommune": "82160", + "libelleAcheminement": "ST CLAIR", + "nomCommune": "ST CLAIR" }, { - "codePostal": "77540", - "codeCommune": "77264", - "libelleAcheminement": "LUMIGNY NESLES ORMEAUX", - "nomCommune": "LUMIGNY NESLES ORMEAUX" + "codePostal": "80360", + "codeCommune": "80418", + "libelleAcheminement": "HARDECOURT AUX BOIS", + "nomCommune": "HARDECOURT AUX BOIS" }, { - "codePostal": "88500", - "codeCommune": "88039", - "libelleAcheminement": "BAUDRICOURT", - "nomCommune": "BAUDRICOURT" + "codePostal": "82340", + "codeCommune": "82165", + "libelleAcheminement": "ST LOUP", + "nomCommune": "ST LOUP" }, { - "codePostal": "77133", - "codeCommune": "77266", - "libelleAcheminement": "MACHAULT", - "nomCommune": "MACHAULT" + "codePostal": "80700", + "codeCommune": "80421", + "libelleAcheminement": "HATTENCOURT", + "nomCommune": "HATTENCOURT" }, { - "codePostal": "88270", - "codeCommune": "88047", - "libelleAcheminement": "BEGNECOURT", - "nomCommune": "BEGNECOURT" + "codePostal": "82700", + "codeCommune": "82171", + "libelleAcheminement": "ST PORQUIER", + "nomCommune": "ST PORQUIER" }, { - "codePostal": "77580", - "codeCommune": "77270", - "libelleAcheminement": "MAISONCELLES EN BRIE", - "nomCommune": "MAISONCELLES EN BRIE" + "codePostal": "80680", + "codeCommune": "80424", + "libelleAcheminement": "HEBECOURT", + "nomCommune": "HEBECOURT" }, { - "codePostal": "88370", - "codeCommune": "88048", - "libelleAcheminement": "BELLEFONTAINE", - "nomCommune": "BELLEFONTAINE" + "codePostal": "82160", + "codeCommune": "82172", + "libelleAcheminement": "ST PROJET", + "nomCommune": "ST PROJET" }, { - "codePostal": "77120", - "codeCommune": "77281", - "libelleAcheminement": "MAUPERTHUIS", - "nomCommune": "MAUPERTHUIS" + "codePostal": "80340", + "codeCommune": "80432", + "libelleAcheminement": "HERLEVILLE", + "nomCommune": "HERLEVILLE" }, { - "codePostal": "88430", - "codeCommune": "88059", - "libelleAcheminement": "BIFFONTAINE", - "nomCommune": "BIFFONTAINE" + "codePostal": "82600", + "codeCommune": "82173", + "libelleAcheminement": "ST SARDOS", + "nomCommune": "ST SARDOS" }, { - "codePostal": "77990", - "codeCommune": "77291", - "libelleAcheminement": "LE MESNIL AMELOT", - "nomCommune": "LE MESNIL AMELOT" + "codePostal": "80240", + "codeCommune": "80435", + "libelleAcheminement": "HESBECOURT", + "nomCommune": "HESBECOURT" }, { - "codePostal": "88500", - "codeCommune": "88060", - "libelleAcheminement": "BLEMEREY", - "nomCommune": "BLEMEREY" + "codePostal": "82340", + "codeCommune": "82181", + "libelleAcheminement": "SISTELS", + "nomCommune": "SISTELS" }, { - "codePostal": "77144", - "codeCommune": "77307", - "libelleAcheminement": "MONTEVRAIN", - "nomCommune": "MONTEVRAIN" + "codePostal": "80250", + "codeCommune": "80452", + "libelleAcheminement": "JUMEL", + "nomCommune": "JUMEL" }, { - "codePostal": "88410", - "codeCommune": "88061", - "libelleAcheminement": "BLEURVILLE", - "nomCommune": "BLEURVILLE" + "codePostal": "82600", + "codeCommune": "82190", + "libelleAcheminement": "VERDUN SUR GARONNE", + "nomCommune": "VERDUN SUR GARONNE" }, { - "codePostal": "77250", - "codeCommune": "77316", - "libelleAcheminement": "MORET LOING ET ORVANNE", - "nomCommune": "MORET LOING ET ORVANNE" + "codePostal": "80230", + "codeCommune": "80464", + "libelleAcheminement": "LANCHERES", + "nomCommune": "LANCHERES" }, { - "codePostal": "88270", - "codeCommune": "88063", - "libelleAcheminement": "BOCQUEGNEY", - "nomCommune": "BOCQUEGNEY" + "codePostal": "83840", + "codeCommune": "83010", + "libelleAcheminement": "BARGEME", + "nomCommune": "BARGEME" }, { - "codePostal": "77250", - "codeCommune": "77316", - "libelleAcheminement": "MORET LOING ET ORVANNE", - "nomCommune": "MORET LOING ET ORVANNE" + "codePostal": "80150", + "codeCommune": "80477", + "libelleAcheminement": "LIGESCOURT", + "nomCommune": "LIGESCOURT" }, { - "codePostal": "88260", - "codeCommune": "88065", - "libelleAcheminement": "BONVILLET", - "nomCommune": "BONVILLET" + "codePostal": "83670", + "codeCommune": "83012", + "libelleAcheminement": "BARJOLS", + "nomCommune": "BARJOLS" }, { - "codePostal": "77163", - "codeCommune": "77318", - "libelleAcheminement": "MORTCERF", - "nomCommune": "MORTCERF" + "codePostal": "80500", + "codeCommune": "80478", + "libelleAcheminement": "LIGNIERES LES ROYE", + "nomCommune": "LIGNIERES" }, { - "codePostal": "88470", - "codeCommune": "88068", - "libelleAcheminement": "LA BOURGONCE", - "nomCommune": "LA BOURGONCE" + "codePostal": "83840", + "codeCommune": "83013", + "libelleAcheminement": "LA BASTIDE", + "nomCommune": "LA BASTIDE" }, { - "codePostal": "77760", - "codeCommune": "77328", - "libelleAcheminement": "NANTEAU SUR ESSONNE", - "nomCommune": "NANTEAU SUR ESSONNE" + "codePostal": "80290", + "codeCommune": "80479", + "libelleAcheminement": "LIGNIERES CHATELAIN", + "nomCommune": "LIGNIERES CHATELAIN" }, { - "codePostal": "88700", - "codeCommune": "88077", - "libelleAcheminement": "BRU", - "nomCommune": "BRU" + "codePostal": "83149", + "codeCommune": "83021", + "libelleAcheminement": "BRAS", + "nomCommune": "BRAS" }, { - "codePostal": "77140", - "codeCommune": "77333", - "libelleAcheminement": "NEMOURS", - "nomCommune": "NEMOURS" + "codePostal": "80140", + "codeCommune": "80480", + "libelleAcheminement": "LIGNIERES EN VIMEU", + "nomCommune": "LIGNIERES EN VIMEU" }, { - "codePostal": "88700", - "codeCommune": "88080", - "libelleAcheminement": "BULT", - "nomCommune": "BULT" + "codePostal": "83740", + "codeCommune": "83027", + "libelleAcheminement": "LA CADIERE D AZUR", + "nomCommune": "LA CADIERE D AZUR" }, { - "codePostal": "77186", - "codeCommune": "77337", - "libelleAcheminement": "NOISIEL", - "nomCommune": "NOISIEL" + "codePostal": "80430", + "codeCommune": "80484", + "libelleAcheminement": "LIOMER", + "nomCommune": "LIOMER" }, { - "codePostal": "88130", - "codeCommune": "88084", - "libelleAcheminement": "CHAMAGNE", - "nomCommune": "CHAMAGNE" + "codePostal": "83170", + "codeCommune": "83030", + "libelleAcheminement": "CAMPS LA SOURCE", + "nomCommune": "CAMPS LA SOURCE" }, { - "codePostal": "77830", - "codeCommune": "77354", - "libelleAcheminement": "PAMFOU", - "nomCommune": "PAMFOU" + "codePostal": "80560", + "codeCommune": "80493", + "libelleAcheminement": "LOUVENCOURT", + "nomCommune": "LOUVENCOURT" }, { - "codePostal": "88240", - "codeCommune": "88088", - "libelleAcheminement": "LA CHAPELLE AUX BOIS", - "nomCommune": "LA CHAPELLE AUX BOIS" + "codePostal": "83330", + "codeCommune": "83035", + "libelleAcheminement": "LE CASTELLET", + "nomCommune": "LE CASTELLET" }, { - "codePostal": "77480", - "codeCommune": "77356", - "libelleAcheminement": "PASSY SUR SEINE", - "nomCommune": "PASSY SUR SEINE" + "codePostal": "80150", + "codeCommune": "80496", + "libelleAcheminement": "MACHIEL", + "nomCommune": "MACHIEL" }, { - "codePostal": "88410", - "codeCommune": "88096", - "libelleAcheminement": "CHATILLON SUR SAONE", - "nomCommune": "CHATILLON SUR SAONE" + "codePostal": "83570", + "codeCommune": "83046", + "libelleAcheminement": "COTIGNAC", + "nomCommune": "COTIGNAC" }, { - "codePostal": "77440", - "codeCommune": "77367", - "libelleAcheminement": "LE PLESSIS PLACY", - "nomCommune": "LE PLESSIS PLACY" + "codePostal": "80110", + "codeCommune": "80499", + "libelleAcheminement": "MAILLY RAINEVAL", + "nomCommune": "MAILLY RAINEVAL" }, { - "codePostal": "88460", - "codeCommune": "88101", - "libelleAcheminement": "CHENIMENIL", - "nomCommune": "CHENIMENIL" + "codePostal": "83210", + "codeCommune": "83054", + "libelleAcheminement": "LA FARLEDE", + "nomCommune": "LA FARLEDE" }, { - "codePostal": "77167", - "codeCommune": "77370", - "libelleAcheminement": "POLIGNY", - "nomCommune": "POLIGNY" + "codePostal": "80250", + "codeCommune": "80504", + "libelleAcheminement": "MALPART", + "nomCommune": "MALPART" }, { - "codePostal": "88300", - "codeCommune": "88104", - "libelleAcheminement": "CIRCOURT SUR MOUZON", - "nomCommune": "CIRCOURT SUR MOUZON" + "codePostal": "83340", + "codeCommune": "83057", + "libelleAcheminement": "FLASSANS SUR ISSOLE", + "nomCommune": "FLASSANS SUR ISSOLE" }, { - "codePostal": "77760", - "codeCommune": "77386", - "libelleAcheminement": "RECLOSES", - "nomCommune": "RECLOSES" + "codePostal": "80300", + "codeCommune": "80505", + "libelleAcheminement": "CARNOY MAMETZ", + "nomCommune": "CARNOY MAMETZ" }, { - "codePostal": "88700", - "codeCommune": "88110", - "libelleAcheminement": "CLEZENTAINE", - "nomCommune": "CLEZENTAINE" + "codePostal": "83780", + "codeCommune": "83058", + "libelleAcheminement": "FLAYOSC", + "nomCommune": "FLAYOSC" }, { - "codePostal": "77710", - "codeCommune": "77387", - "libelleAcheminement": "REMAUVILLE", - "nomCommune": "REMAUVILLE" + "codePostal": "80500", + "codeCommune": "80511", + "libelleAcheminement": "MARESTMONTIERS", + "nomCommune": "MARESTMONTIERS" }, { - "codePostal": "88140", - "codeCommune": "88119", - "libelleAcheminement": "CRAINVILLIERS", - "nomCommune": "CRAINVILLIERS" + "codePostal": "83370", + "codeCommune": "83061", + "libelleAcheminement": "FREJUS", + "nomCommune": "FREJUS" }, { - "codePostal": "77260", - "codeCommune": "77388", - "libelleAcheminement": "REUIL EN BRIE", - "nomCommune": "REUIL EN BRIE" + "codePostal": "80300", + "codeCommune": "80523", + "libelleAcheminement": "MEAULTE", + "nomCommune": "MEAULTE" }, { - "codePostal": "88390", - "codeCommune": "88126", - "libelleAcheminement": "DARNIEULLES", - "nomCommune": "DARNIEULLES" + "codePostal": "83130", + "codeCommune": "83062", + "libelleAcheminement": "LA GARDE", + "nomCommune": "LA GARDE" }, { - "codePostal": "77320", - "codeCommune": "77402", - "libelleAcheminement": "ST BARTHELEMY", - "nomCommune": "ST BARTHELEMY" + "codePostal": "80200", + "codeCommune": "80536", + "libelleAcheminement": "MESNIL BRUNTEL", + "nomCommune": "MESNIL BRUNTEL" }, { - "codePostal": "88000", - "codeCommune": "88132", - "libelleAcheminement": "DEYVILLERS", - "nomCommune": "DEYVILLERS" + "codePostal": "83136", + "codeCommune": "83064", + "libelleAcheminement": "GAREOULT", + "nomCommune": "GAREOULT" }, { - "codePostal": "77310", - "codeCommune": "77407", - "libelleAcheminement": "ST FARGEAU PONTHIERRY", - "nomCommune": "ST FARGEAU PONTHIERRY" + "codePostal": "80620", + "codeCommune": "80537", + "libelleAcheminement": "MESNIL DOMQUEUR", + "nomCommune": "MESNIL DOMQUEUR" }, { - "codePostal": "88700", - "codeCommune": "88153", - "libelleAcheminement": "DOMPTAIL", - "nomCommune": "DOMPTAIL" + "codePostal": "83580", + "codeCommune": "83065", + "libelleAcheminement": "GASSIN", + "nomCommune": "GASSIN" }, { - "codePostal": "77169", - "codeCommune": "77411", - "libelleAcheminement": "ST GERMAIN SOUS DOUE", - "nomCommune": "ST GERMAIN SOUS DOUE" + "codePostal": "80300", + "codeCommune": "80540", + "libelleAcheminement": "MESNIL MARTINSART", + "nomCommune": "MESNIL MARTINSART" }, { - "codePostal": "88360", - "codeCommune": "88170", - "libelleAcheminement": "FERDRUPT", - "nomCommune": "FERDRUPT" + "codePostal": "83310", + "codeCommune": "83068", + "libelleAcheminement": "GRIMAUD", + "nomCommune": "GRIMAUD" }, { - "codePostal": "77650", - "codeCommune": "77418", - "libelleAcheminement": "ST LOUP DE NAUD", - "nomCommune": "ST LOUP DE NAUD" + "codePostal": "80540", + "codeCommune": "80554", + "libelleAcheminement": "MOLLIENS DREUIL", + "nomCommune": "MOLLIENS DREUIL" }, { - "codePostal": "88490", - "codeCommune": "88182", - "libelleAcheminement": "FRAPELLE", - "nomCommune": "FRAPELLE" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "77320", - "codeCommune": "77421", - "libelleAcheminement": "ST MARS VIEUX MAISONS", - "nomCommune": "ST MARS VIEUX MAISONS" + "codePostal": "80160", + "codeCommune": "80558", + "libelleAcheminement": "MONSURES", + "nomCommune": "MONSURES" }, { - "codePostal": "88160", - "codeCommune": "88188", - "libelleAcheminement": "FRESSE SUR MOSELLE", - "nomCommune": "FRESSE SUR MOSELLE" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "77410", - "codeCommune": "77427", - "libelleAcheminement": "ST MESMES", - "nomCommune": "ST MESMES" + "codePostal": "80540", + "codeCommune": "80559", + "libelleAcheminement": "MONTAGNE FAYEL", + "nomCommune": "MONTAGNE FAYEL" }, { - "codePostal": "88300", - "codeCommune": "88227", - "libelleAcheminement": "HAGNEVILLE ET RONCOURT", - "nomCommune": "HAGNEVILLE ET RONCOURT" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "77750", - "codeCommune": "77429", - "libelleAcheminement": "ST OUEN SUR MORIN", - "nomCommune": "ST OUEN SUR MORIN" + "codePostal": "80670", + "codeCommune": "80566", + "libelleAcheminement": "FIEFFES MONTRELET", + "nomCommune": "FIEFFES MONTRELET" }, { - "codePostal": "88700", - "codeCommune": "88230", - "libelleAcheminement": "HARDANCOURT", - "nomCommune": "HARDANCOURT" + "codePostal": "83340", + "codeCommune": "83073", + "libelleAcheminement": "LE LUC", + "nomCommune": "LE LUC" }, { - "codePostal": "77240", - "codeCommune": "77447", - "libelleAcheminement": "SEINE PORT", - "nomCommune": "SEINE PORT" + "codePostal": "80110", + "codeCommune": "80571", + "libelleAcheminement": "MORISEL", + "nomCommune": "MORISEL" }, { - "codePostal": "88300", - "codeCommune": "88232", - "libelleAcheminement": "HARMONVILLE", - "nomCommune": "HARMONVILLE" + "codePostal": "83136", + "codeCommune": "83077", + "libelleAcheminement": "MEOUNES LES MONTRIEUX", + "nomCommune": "MEOUNES LES MONTRIEUX" }, { - "codePostal": "77520", - "codeCommune": "77454", - "libelleAcheminement": "SOGNOLLES EN MONTOIS", - "nomCommune": "SOGNOLLES EN MONTOIS" + "codePostal": "80690", + "codeCommune": "80574", + "libelleAcheminement": "MOUFLERS", + "nomCommune": "MOUFLERS" }, { - "codePostal": "88240", - "codeCommune": "88236", - "libelleAcheminement": "LA HAYE", - "nomCommune": "LA HAYE" + "codePostal": "83570", + "codeCommune": "83083", + "libelleAcheminement": "MONTFORT SUR ARGENS", + "nomCommune": "MONTFORT SUR ARGENS" }, { - "codePostal": "77520", - "codeCommune": "77461", - "libelleAcheminement": "THENISY", - "nomCommune": "THENISY" + "codePostal": "80400", + "codeCommune": "80576", + "libelleAcheminement": "MOYENCOURT", + "nomCommune": "MOYENCOURT" }, { - "codePostal": "88260", - "codeCommune": "88238", - "libelleAcheminement": "HENNEZEL", - "nomCommune": "HENNEZEL" + "codePostal": "83490", + "codeCommune": "83086", + "libelleAcheminement": "LE MUY", + "nomCommune": "LE MUY" }, { - "codePostal": "77230", - "codeCommune": "77462", - "libelleAcheminement": "THIEUX", - "nomCommune": "THIEUX" + "codePostal": "80120", + "codeCommune": "80580", + "libelleAcheminement": "NAMPONT ST MARTIN", + "nomCommune": "NAMPONT" }, { - "codePostal": "88300", - "codeCommune": "88242", - "libelleAcheminement": "HOUEVILLE", - "nomCommune": "HOUEVILLE" + "codePostal": "83860", + "codeCommune": "83087", + "libelleAcheminement": "NANS LES PINS", + "nomCommune": "NANS LES PINS" }, { - "codePostal": "77123", - "codeCommune": "77471", - "libelleAcheminement": "TOUSSON", - "nomCommune": "TOUSSON" + "codePostal": "80290", + "codeCommune": "80582", + "libelleAcheminement": "NAMPS MAISNIL", + "nomCommune": "NAMPS MAISNIL" }, { - "codePostal": "88210", - "codeCommune": "88245", - "libelleAcheminement": "HURBACHE", - "nomCommune": "HURBACHE" + "codePostal": "83136", + "codeCommune": "83088", + "libelleAcheminement": "NEOULES", + "nomCommune": "NEOULES" }, { - "codePostal": "77760", - "codeCommune": "77477", - "libelleAcheminement": "URY", - "nomCommune": "URY" + "codePostal": "80290", + "codeCommune": "80582", + "libelleAcheminement": "NAMPS MAISNIL", + "nomCommune": "NAMPS MAISNIL" }, { - "codePostal": "88300", - "codeCommune": "88259", - "libelleAcheminement": "LANDAVILLE", - "nomCommune": "LANDAVILLE" + "codePostal": "83120", + "codeCommune": "83094", + "libelleAcheminement": "LE PLAN DE LA TOUR", + "nomCommune": "LE PLAN DE LA TOUR" }, { - "codePostal": "77830", - "codeCommune": "77480", - "libelleAcheminement": "VALENCE EN BRIE", - "nomCommune": "VALENCE EN BRIE" + "codePostal": "80260", + "codeCommune": "80584", + "libelleAcheminement": "NAOURS", + "nomCommune": "NAOURS" }, { - "codePostal": "88600", - "codeCommune": "88261", - "libelleAcheminement": "LAVAL SUR VOLOGNE", - "nomCommune": "LAVAL SUR VOLOGNE" + "codePostal": "83520", + "codeCommune": "83107", + "libelleAcheminement": "ROQUEBRUNE SUR ARGENS", + "nomCommune": "ROQUEBRUNE SUR ARGENS" }, { - "codePostal": "77240", - "codeCommune": "77495", - "libelleAcheminement": "VERT ST DENIS", - "nomCommune": "VERT ST DENIS" + "codePostal": "80140", + "codeCommune": "80586", + "libelleAcheminement": "NESLE L HOPITAL", + "nomCommune": "NESLE L HOPITAL" }, { - "codePostal": "88600", - "codeCommune": "88262", - "libelleAcheminement": "LAVELINE DEVANT BRUYERES", - "nomCommune": "LAVELINE DEVANT BRUYERES" + "codePostal": "83840", + "codeCommune": "83109", + "libelleAcheminement": "LA ROQUE ESCLAPON", + "nomCommune": "LA ROQUE ESCLAPON" }, { - "codePostal": "77250", - "codeCommune": "77506", - "libelleAcheminement": "VILLEMER", - "nomCommune": "VILLEMER" + "codePostal": "80600", + "codeCommune": "80596", + "libelleAcheminement": "NEUVILLETTE", + "nomCommune": "NEUVILLETTE" }, { - "codePostal": "88600", - "codeCommune": "88266", - "libelleAcheminement": "LEPANGES SUR VOLOGNE", - "nomCommune": "LEPANGES SUR VOLOGNE" + "codePostal": "83170", + "codeCommune": "83110", + "libelleAcheminement": "ROUGIERS", + "nomCommune": "ROUGIERS" }, { - "codePostal": "77174", - "codeCommune": "77508", - "libelleAcheminement": "VILLENEUVE LE COMTE", - "nomCommune": "VILLENEUVE LE COMTE" + "codePostal": "80860", + "codeCommune": "80598", + "libelleAcheminement": "NOUVION", + "nomCommune": "NOUVION" }, { - "codePostal": "88350", - "codeCommune": "88270", - "libelleAcheminement": "LIFFOL LE GRAND", - "nomCommune": "LIFFOL LE GRAND" + "codePostal": "83270", + "codeCommune": "83112", + "libelleAcheminement": "ST CYR SUR MER", + "nomCommune": "ST CYR SUR MER" }, { - "codePostal": "77410", - "codeCommune": "77517", - "libelleAcheminement": "VILLEVAUDE", - "nomCommune": "VILLEVAUDE" + "codePostal": "80540", + "codeCommune": "80607", + "libelleAcheminement": "OISSY", + "nomCommune": "OISSY" }, { - "codePostal": "88800", - "codeCommune": "88271", - "libelleAcheminement": "LIGNEVILLE", - "nomCommune": "LIGNEVILLE" + "codePostal": "83700", + "codeCommune": "83118", + "libelleAcheminement": "ST RAPHAEL", + "nomCommune": "ST RAPHAEL" }, { - "codePostal": "77190", - "codeCommune": "77518", - "libelleAcheminement": "VILLIERS EN BIERE", - "nomCommune": "VILLIERS EN BIERE" + "codePostal": "80300", + "codeCommune": "80615", + "libelleAcheminement": "OVILLERS LA BOISSELLE", + "nomCommune": "OVILLERS LA BOISSELLE" }, { - "codePostal": "88490", - "codeCommune": "88276", - "libelleAcheminement": "LUSSE", - "nomCommune": "LUSSE" + "codePostal": "83440", + "codeCommune": "83124", + "libelleAcheminement": "SEILLANS", + "nomCommune": "SEILLANS" }, { - "codePostal": "77139", - "codeCommune": "77526", - "libelleAcheminement": "VINCY MANOEUVRE", - "nomCommune": "VINCY MANOEUVRE" + "codePostal": "80190", + "codeCommune": "80616", + "libelleAcheminement": "PARGNY", + "nomCommune": "PARGNY" }, { - "codePostal": "88110", - "codeCommune": "88277", - "libelleAcheminement": "LUVIGNY", - "nomCommune": "LUVIGNY" + "codePostal": "83870", + "codeCommune": "83127", + "libelleAcheminement": "SIGNES", + "nomCommune": "SIGNES" }, { - "codePostal": "77540", - "codeCommune": "77527", - "libelleAcheminement": "VOINSLES", - "nomCommune": "VOINSLES" + "codePostal": "80670", + "codeCommune": "80619", + "libelleAcheminement": "PERNOIS", + "nomCommune": "PERNOIS" }, { - "codePostal": "88270", - "codeCommune": "88279", - "libelleAcheminement": "MADECOURT", - "nomCommune": "MADECOURT" + "codePostal": "83140", + "codeCommune": "83129", + "libelleAcheminement": "SIX FOURS LES PLAGES", + "nomCommune": "SIX FOURS LES PLAGES" }, { - "codePostal": "77580", - "codeCommune": "77529", - "libelleAcheminement": "VOULANGIS", - "nomCommune": "VOULANGIS" + "codePostal": "80320", + "codeCommune": "80621", + "libelleAcheminement": "HYPERCOURT", + "nomCommune": "HYPERCOURT" }, { - "codePostal": "88140", - "codeCommune": "88283", - "libelleAcheminement": "MALAINCOURT", - "nomCommune": "MALAINCOURT" + "codePostal": "83440", + "codeCommune": "83133", + "libelleAcheminement": "TANNERON", + "nomCommune": "TANNERON" }, { - "codePostal": "77870", - "codeCommune": "77533", - "libelleAcheminement": "VULAINES SUR SEINE", - "nomCommune": "VULAINES SUR SEINE" + "codePostal": "80310", + "codeCommune": "80622", + "libelleAcheminement": "PICQUIGNY", + "nomCommune": "PICQUIGNY" }, { - "codePostal": "88800", - "codeCommune": "88285", - "libelleAcheminement": "MANDRES SUR VAIR", - "nomCommune": "MANDRES SUR VAIR" + "codePostal": "83720", + "codeCommune": "83141", + "libelleAcheminement": "TRANS EN PROVENCE", + "nomCommune": "TRANS EN PROVENCE" }, { - "codePostal": "77390", - "codeCommune": "77534", - "libelleAcheminement": "YEBLES", - "nomCommune": "YEBLES" + "codePostal": "80150", + "codeCommune": "80631", + "libelleAcheminement": "PONCHES ESTRUVAL", + "nomCommune": "PONCHES ESTRUVAL" }, { - "codePostal": "88410", - "codeCommune": "88291", - "libelleAcheminement": "MARTINVELLE", - "nomCommune": "MARTINVELLE" + "codePostal": "83840", + "codeCommune": "83142", + "libelleAcheminement": "TRIGANCE", + "nomCommune": "TRIGANCE" }, { - "codePostal": "78260", - "codeCommune": "78005", - "libelleAcheminement": "ACHERES", - "nomCommune": "ACHERES" + "codePostal": "80480", + "codeCommune": "80632", + "libelleAcheminement": "PONT DE METZ", + "nomCommune": "PONT DE METZ" }, { - "codePostal": "88630", - "codeCommune": "88293", - "libelleAcheminement": "MAXEY SUR MEUSE", - "nomCommune": "MAXEY SUR MEUSE" + "codePostal": "84140", + "codeCommune": "84007", + "libelleAcheminement": "AVIGNON", + "nomCommune": "AVIGNON" }, { - "codePostal": "78660", - "codeCommune": "78009", - "libelleAcheminement": "ALLAINVILLE AUX BOIS", - "nomCommune": "ALLAINVILLE" + "codePostal": "80190", + "codeCommune": "80638", + "libelleAcheminement": "POTTE", + "nomCommune": "POTTE" }, { - "codePostal": "88600", - "codeCommune": "88297", - "libelleAcheminement": "MEMENIL", - "nomCommune": "MEMENIL" + "codePostal": "84120", + "codeCommune": "84010", + "libelleAcheminement": "LA BASTIDONNE", + "nomCommune": "LA BASTIDONNE" }, { - "codePostal": "78490", - "codeCommune": "78050", - "libelleAcheminement": "BAZOCHES SUR GUYONNE", - "nomCommune": "BAZOCHES SUR GUYONNE" + "codePostal": "80400", + "codeCommune": "80658", + "libelleAcheminement": "QUIVIERES", + "nomCommune": "QUIVIERES" }, { - "codePostal": "88700", - "codeCommune": "88298", - "libelleAcheminement": "MENARMONT", - "nomCommune": "MENARMONT" + "codePostal": "84210", + "codeCommune": "84011", + "libelleAcheminement": "LE BEAUCET", + "nomCommune": "LE BEAUCET" }, { - "codePostal": "78910", - "codeCommune": "78053", - "libelleAcheminement": "BEHOUST", - "nomCommune": "BEHOUST" + "codePostal": "80600", + "codeCommune": "80659", + "libelleAcheminement": "RAINCHEVAL", + "nomCommune": "RAINCHEVAL" }, { - "codePostal": "88210", - "codeCommune": "88300", - "libelleAcheminement": "MENIL DE SENONES", - "nomCommune": "MENIL DE SENONES" + "codePostal": "84370", + "codeCommune": "84016", + "libelleAcheminement": "BEDARRIDES", + "nomCommune": "BEDARRIDES" }, { - "codePostal": "78650", - "codeCommune": "78062", - "libelleAcheminement": "BEYNES", - "nomCommune": "BEYNES" + "codePostal": "80140", + "codeCommune": "80663", + "libelleAcheminement": "RAMBURES", + "nomCommune": "RAMBURES" }, { - "codePostal": "88210", - "codeCommune": "88306", - "libelleAcheminement": "LE MONT", - "nomCommune": "LE MONT" + "codePostal": "84110", + "codeCommune": "84022", + "libelleAcheminement": "BUISSON", + "nomCommune": "BUISSON" }, { - "codePostal": "78390", - "codeCommune": "78073", - "libelleAcheminement": "BOIS D ARCY", - "nomCommune": "BOIS D ARCY" + "codePostal": "80360", + "codeCommune": "80664", + "libelleAcheminement": "RANCOURT", + "nomCommune": "RANCOURT" }, { - "codePostal": "88800", - "codeCommune": "88309", - "libelleAcheminement": "MONTHUREUX LE SEC", - "nomCommune": "MONTHUREUX LE SEC" + "codePostal": "84860", + "codeCommune": "84027", + "libelleAcheminement": "CADEROUSSE", + "nomCommune": "CADEROUSSE" }, { - "codePostal": "78200", - "codeCommune": "78082", - "libelleAcheminement": "BOISSY MAUVOISIN", - "nomCommune": "BOISSY MAUVOISIN" + "codePostal": "80800", + "codeCommune": "80672", + "libelleAcheminement": "RIBEMONT SUR ANCRE", + "nomCommune": "RIBEMONT SUR ANCRE" }, { - "codePostal": "88470", - "codeCommune": "88328", - "libelleAcheminement": "NOMPATELIZE", - "nomCommune": "NOMPATELIZE" + "codePostal": "84330", + "codeCommune": "84030", + "libelleAcheminement": "CAROMB", + "nomCommune": "CAROMB" }, { - "codePostal": "78380", - "codeCommune": "78092", - "libelleAcheminement": "BOUGIVAL", - "nomCommune": "BOUGIVAL" + "codePostal": "80136", + "codeCommune": "80674", + "libelleAcheminement": "RIVERY", + "nomCommune": "RIVERY" }, { - "codePostal": "88700", - "codeCommune": "88338", - "libelleAcheminement": "ORTONCOURT", - "nomCommune": "ORTONCOURT" + "codePostal": "84750", + "codeCommune": "84032", + "libelleAcheminement": "CASENEUVE", + "nomCommune": "CASENEUVE" }, { - "codePostal": "78930", - "codeCommune": "78104", - "libelleAcheminement": "BREUIL BOIS ROBERT", - "nomCommune": "BREUIL BOIS ROBERT" + "codePostal": "80250", + "codeCommune": "80681", + "libelleAcheminement": "ROUVREL", + "nomCommune": "ROUVREL" }, { - "codePostal": "88330", - "codeCommune": "88342", - "libelleAcheminement": "PALLEGNEY", - "nomCommune": "PALLEGNEY" + "codePostal": "84230", + "codeCommune": "84037", + "libelleAcheminement": "CHATEAUNEUF DU PAPE", + "nomCommune": "CHATEAUNEUF DU PAPE" }, { - "codePostal": "78955", - "codeCommune": "78123", - "libelleAcheminement": "CARRIERES SOUS POISSY", - "nomCommune": "CARRIERES SOUS POISSY" + "codePostal": "80500", + "codeCommune": "80687", + "libelleAcheminement": "RUBESCOURT", + "nomCommune": "RUBESCOURT" }, { - "codePostal": "88350", - "codeCommune": "88344", - "libelleAcheminement": "PARGNY SOUS MUREAU", - "nomCommune": "PARGNY SOUS MUREAU" + "codePostal": "84350", + "codeCommune": "84039", + "libelleAcheminement": "COURTHEZON", + "nomCommune": "COURTHEZON" }, { - "codePostal": "78720", - "codeCommune": "78125", - "libelleAcheminement": "LA CELLE LES BORDES", - "nomCommune": "LA CELLE LES BORDES" + "codePostal": "80370", + "codeCommune": "80697", + "libelleAcheminement": "ST ACHEUL", + "nomCommune": "ST ACHEUL" }, { - "codePostal": "88330", - "codeCommune": "88355", - "libelleAcheminement": "PORTIEUX", - "nomCommune": "PORTIEUX" + "codePostal": "84410", + "codeCommune": "84041", + "libelleAcheminement": "CRILLON LE BRAVE", + "nomCommune": "CRILLON LE BRAVE" }, { - "codePostal": "78570", - "codeCommune": "78138", - "libelleAcheminement": "CHANTELOUP LES VIGNES", - "nomCommune": "CHANTELOUP LES VIGNES" + "codePostal": "80430", + "codeCommune": "80703", + "libelleAcheminement": "ST GERMAIN SUR BRESLE", + "nomCommune": "ST GERMAIN SUR BRESLE" }, { - "codePostal": "88550", - "codeCommune": "88358", - "libelleAcheminement": "POUXEUX", - "nomCommune": "POUXEUX" + "codePostal": "84160", + "codeCommune": "84042", + "libelleAcheminement": "CUCURON", + "nomCommune": "CUCURON" }, { - "codePostal": "78270", - "codeCommune": "78147", - "libelleAcheminement": "CHAUFOUR LES BONNIERES", - "nomCommune": "CHAUFOUR LES BONNIERES" + "codePostal": "80560", + "codeCommune": "80705", + "libelleAcheminement": "ST LEGER LES AUTHIE", + "nomCommune": "ST LEGER LES AUTHIE" }, { - "codePostal": "88600", - "codeCommune": "88359", - "libelleAcheminement": "PREY", - "nomCommune": "PREY" + "codePostal": "84400", + "codeCommune": "84048", + "libelleAcheminement": "GIGNAC", + "nomCommune": "GIGNAC" }, { - "codePostal": "78340", - "codeCommune": "78165", - "libelleAcheminement": "LES CLAYES SOUS BOIS", - "nomCommune": "LES CLAYES SOUS BOIS" + "codePostal": "80140", + "codeCommune": "80707", + "libelleAcheminement": "ST LEGER SUR BRESLE", + "nomCommune": "ST LEGER SUR BRESLE" }, { - "codePostal": "88630", - "codeCommune": "88363", - "libelleAcheminement": "PUNEROT", - "nomCommune": "PUNEROT" + "codePostal": "84400", + "codeCommune": "84060", + "libelleAcheminement": "LAGARDE D APT", + "nomCommune": "LAGARDE D APT" }, { - "codePostal": "78790", - "codeCommune": "78185", - "libelleAcheminement": "COURGENT", - "nomCommune": "COURGENT" + "codePostal": "80120", + "codeCommune": "80713", + "libelleAcheminement": "ST QUENTIN EN TOURMONT", + "nomCommune": "ST QUENTIN EN TOURMONT" }, { - "codePostal": "88500", - "codeCommune": "88364", - "libelleAcheminement": "PUZIEUX", - "nomCommune": "PUZIEUX" + "codePostal": "84840", + "codeCommune": "84064", + "libelleAcheminement": "LAPALUD", + "nomCommune": "LAPALUD" }, { - "codePostal": "78121", - "codeCommune": "78189", - "libelleAcheminement": "CRESPIERES", - "nomCommune": "CRESPIERES" + "codePostal": "80290", + "codeCommune": "80728", + "libelleAcheminement": "SAULCHOY SOUS POIX", + "nomCommune": "SAULCHOY SOUS POIX" }, { - "codePostal": "88270", - "codeCommune": "88365", - "libelleAcheminement": "RACECOURT", - "nomCommune": "RACECOURT" + "codePostal": "84100", + "codeCommune": "84087", + "libelleAcheminement": "ORANGE", + "nomCommune": "ORANGE" }, { - "codePostal": "78520", - "codeCommune": "78239", - "libelleAcheminement": "FOLLAINVILLE DENNEMONT", - "nomCommune": "FOLLAINVILLE DENNEMONT" + "codePostal": "80110", + "codeCommune": "80729", + "libelleAcheminement": "SAUVILLERS MONGIVAL", + "nomCommune": "SAUVILLERS MONGIVAL" }, { - "codePostal": "88640", - "codeCommune": "88380", - "libelleAcheminement": "REHAUPAL", - "nomCommune": "REHAUPAL" + "codePostal": "84240", + "codeCommune": "84090", + "libelleAcheminement": "PEYPIN D AIGUES", + "nomCommune": "PEYPIN D AIGUES" }, { - "codePostal": "78330", - "codeCommune": "78242", - "libelleAcheminement": "FONTENAY LE FLEURY", - "nomCommune": "FONTENAY LE FLEURY" + "codePostal": "80540", + "codeCommune": "80735", + "libelleAcheminement": "SEUX", + "nomCommune": "SEUX" }, { - "codePostal": "88170", - "codeCommune": "88387", - "libelleAcheminement": "REMOVILLE", - "nomCommune": "REMOVILLE" + "codePostal": "84190", + "codeCommune": "84100", + "libelleAcheminement": "LA ROQUE ALRIC", + "nomCommune": "LA ROQUE ALRIC" }, { - "codePostal": "78200", - "codeCommune": "78245", - "libelleAcheminement": "FONTENAY MAUVOISIN", - "nomCommune": "FONTENAY MAUVOISIN" + "codePostal": "80490", + "codeCommune": "80736", + "libelleAcheminement": "SOREL EN VIMEU", + "nomCommune": "SOREL EN VIMEU" }, { - "codePostal": "88390", - "codeCommune": "88388", - "libelleAcheminement": "RENAUVOID", - "nomCommune": "RENAUVOID" + "codePostal": "84400", + "codeCommune": "84103", + "libelleAcheminement": "RUSTREL", + "nomCommune": "RUSTREL" }, { - "codePostal": "78490", - "codeCommune": "78262", - "libelleAcheminement": "GALLUIS", - "nomCommune": "GALLUIS" + "codePostal": "80240", + "codeCommune": "80737", + "libelleAcheminement": "SOREL", + "nomCommune": "SOREL" }, { - "codePostal": "88120", - "codeCommune": "88391", - "libelleAcheminement": "ROCHESSON", - "nomCommune": "ROCHESSON" + "codePostal": "84110", + "codeCommune": "84104", + "libelleAcheminement": "SABLET", + "nomCommune": "SABLET" }, { - "codePostal": "78440", - "codeCommune": "78267", - "libelleAcheminement": "GARGENVILLE", - "nomCommune": "GARGENVILLE" + "codePostal": "80300", + "codeCommune": "80753", + "libelleAcheminement": "THIEPVAL", + "nomCommune": "THIEPVAL" }, { - "codePostal": "88320", - "codeCommune": "88394", - "libelleAcheminement": "ROMAIN AUX BOIS", - "nomCommune": "ROMAIN AUX BOIS" + "codePostal": "84390", + "codeCommune": "84107", + "libelleAcheminement": "ST CHRISTOL", + "nomCommune": "ST CHRISTOL" }, { - "codePostal": "78550", - "codeCommune": "78285", - "libelleAcheminement": "GRESSEY", - "nomCommune": "GRESSEY" + "codePostal": "80220", + "codeCommune": "80760", + "libelleAcheminement": "TILLOY FLORIVILLE", + "nomCommune": "TILLOY FLORIVILLE" }, { - "codePostal": "88500", - "codeCommune": "88403", - "libelleAcheminement": "ROZEROTTE", - "nomCommune": "ROZEROTTE" + "codePostal": "84210", + "codeCommune": "84108", + "libelleAcheminement": "ST DIDIER", + "nomCommune": "ST DIDIER" }, { - "codePostal": "78280", - "codeCommune": "78297", - "libelleAcheminement": "GUYANCOURT", - "nomCommune": "GUYANCOURT" + "codePostal": "80240", + "codeCommune": "80762", + "libelleAcheminement": "TINCOURT BOUCLY", + "nomCommune": "TINCOURT BOUCLY" }, { - "codePostal": "88200", - "codeCommune": "88429", - "libelleAcheminement": "ST NABORD", - "nomCommune": "ST NABORD" + "codePostal": "84330", + "codeCommune": "84109", + "libelleAcheminement": "ST HIPPOLYTE LE GRAVEYRON", + "nomCommune": "ST HIPPOLYTE LE GRAVEYRON" }, { - "codePostal": "78280", - "codeCommune": "78297", - "libelleAcheminement": "GUYANCOURT", - "nomCommune": "GUYANCOURT" + "codePostal": "80210", + "codeCommune": "80765", + "libelleAcheminement": "TOURS EN VIMEU", + "nomCommune": "TOURS EN VIMEU" }, { - "codePostal": "88210", - "codeCommune": "88436", - "libelleAcheminement": "ST STAIL", - "nomCommune": "ST STAIL" + "codePostal": "84110", + "codeCommune": "84111", + "libelleAcheminement": "ST MARCELLIN LES VAISON", + "nomCommune": "ST MARCELLIN LES VAISON" }, { - "codePostal": "78270", - "codeCommune": "78320", - "libelleAcheminement": "NOTRE DAME DE LA MER", - "nomCommune": "NOTRE DAME DE LA MER" + "codePostal": "80400", + "codeCommune": "80771", + "libelleAcheminement": "UGNY L EQUIPEE", + "nomCommune": "UGNY L EQUIPEE" }, { - "codePostal": "88170", - "codeCommune": "88440", - "libelleAcheminement": "SANDAUCOURT", - "nomCommune": "SANDAUCOURT" + "codePostal": "84330", + "codeCommune": "84115", + "libelleAcheminement": "ST PIERRE DE VASSOLS", + "nomCommune": "ST PIERRE DE VASSOLS" }, { - "codePostal": "78200", - "codeCommune": "78324", - "libelleAcheminement": "JOUY MAUVOISIN", - "nomCommune": "JOUY MAUVOISIN" + "codePostal": "80260", + "codeCommune": "80782", + "libelleAcheminement": "VAUX EN AMIENOIS", + "nomCommune": "VAUX EN AMIENOIS" }, { - "codePostal": "88300", - "codeCommune": "88443", - "libelleAcheminement": "SARTES", - "nomCommune": "SARTES" + "codePostal": "84490", + "codeCommune": "84118", + "libelleAcheminement": "ST SATURNIN LES APT", + "nomCommune": "ST SATURNIN LES APT" }, { - "codePostal": "78580", - "codeCommune": "78325", - "libelleAcheminement": "JUMEAUVILLE", - "nomCommune": "JUMEAUVILLE" + "codePostal": "80800", + "codeCommune": "80784", + "libelleAcheminement": "VAUX SUR SOMME", + "nomCommune": "VAUX SUR SOMME" }, { - "codePostal": "88140", - "codeCommune": "88446", - "libelleAcheminement": "SAULXURES LES BULGNEVILLE", - "nomCommune": "SAULXURES LES BULGNEVILLE" + "codePostal": "84260", + "codeCommune": "84122", + "libelleAcheminement": "SARRIANS", + "nomCommune": "SARRIANS" }, { - "codePostal": "78980", - "codeCommune": "78346", - "libelleAcheminement": "LONGNES", - "nomCommune": "LONGNES" + "codePostal": "80260", + "codeCommune": "80798", + "libelleAcheminement": "VILLERS BOCAGE", + "nomCommune": "VILLERS BOCAGE" }, { - "codePostal": "88290", - "codeCommune": "88447", - "libelleAcheminement": "SAULXURES SUR MOSELOTTE", - "nomCommune": "SAULXURES SUR MOSELOTTE" + "codePostal": "84240", + "codeCommune": "84133", + "libelleAcheminement": "LA TOUR D AIGUES", + "nomCommune": "LA TOUR D AIGUES" }, { - "codePostal": "78711", - "codeCommune": "78362", - "libelleAcheminement": "MANTES LA VILLE", - "nomCommune": "MANTES LA VILLE" + "codePostal": "80800", + "codeCommune": "80799", + "libelleAcheminement": "VILLERS BRETONNEUX", + "nomCommune": "VILLERS BRETONNEUX" }, { - "codePostal": "88140", - "codeCommune": "88448", - "libelleAcheminement": "SAUVILLE", - "nomCommune": "SAUVILLE" + "codePostal": "84850", + "codeCommune": "84134", + "libelleAcheminement": "TRAVAILLAN", + "nomCommune": "TRAVAILLAN" }, { - "codePostal": "78160", - "codeCommune": "78372", - "libelleAcheminement": "MARLY LE ROI", - "nomCommune": "MARLY LE ROI" + "codePostal": "80500", + "codeCommune": "80805", + "libelleAcheminement": "VILLERS TOURNELLE", + "nomCommune": "VILLERS TOURNELLE" }, { - "codePostal": "88130", - "codeCommune": "88449", - "libelleAcheminement": "SAVIGNY", - "nomCommune": "SAVIGNY" + "codePostal": "84110", + "codeCommune": "84137", + "libelleAcheminement": "VAISON LA ROMAINE", + "nomCommune": "VAISON LA ROMAINE" }, { - "codePostal": "78670", - "codeCommune": "78384", - "libelleAcheminement": "MEDAN", - "nomCommune": "MEDAN" + "codePostal": "80120", + "codeCommune": "80806", + "libelleAcheminement": "VILLERS SUR AUTHIE", + "nomCommune": "VILLERS SUR AUTHIE" }, { - "codePostal": "88140", - "codeCommune": "88461", - "libelleAcheminement": "SURIAUVILLE", - "nomCommune": "SURIAUVILLE" + "codePostal": "84270", + "codeCommune": "84141", + "libelleAcheminement": "VEDENE", + "nomCommune": "VEDENE" }, { - "codePostal": "78490", - "codeCommune": "78389", - "libelleAcheminement": "MERE", - "nomCommune": "MERE" + "codePostal": "80670", + "codeCommune": "80819", + "libelleAcheminement": "WARGNIES", + "nomCommune": "WARGNIES" }, { - "codePostal": "88100", - "codeCommune": "88463", - "libelleAcheminement": "TAINTRUX", - "nomCommune": "TAINTRUX" + "codePostal": "84820", + "codeCommune": "84150", + "libelleAcheminement": "VISAN", + "nomCommune": "VISAN" }, { - "codePostal": "78320", - "codeCommune": "78397", - "libelleAcheminement": "LE MESNIL ST DENIS", - "nomCommune": "LE MESNIL ST DENIS" + "codePostal": "80300", + "codeCommune": "80820", + "libelleAcheminement": "WARLOY BAILLON", + "nomCommune": "WARLOY BAILLON" }, { - "codePostal": "88150", - "codeCommune": "88465", - "libelleAcheminement": "CAPAVENIR VOSGES", - "nomCommune": "CAPAVENIR VOSGES" + "codePostal": "85220", + "codeCommune": "85006", + "libelleAcheminement": "APREMONT", + "nomCommune": "APREMONT" }, { - "codePostal": "78250", - "codeCommune": "78403", - "libelleAcheminement": "MEZY SUR SEINE", - "nomCommune": "MEZY SUR SEINE" + "codePostal": "80140", + "codeCommune": "80828", + "libelleAcheminement": "WOIREL", + "nomCommune": "WOIREL" }, { - "codePostal": "88530", - "codeCommune": "88470", - "libelleAcheminement": "LE THOLY", - "nomCommune": "LE THOLY" + "codePostal": "85230", + "codeCommune": "85018", + "libelleAcheminement": "BEAUVOIR SUR MER", + "nomCommune": "BEAUVOIR SUR MER" }, { - "codePostal": "78790", - "codeCommune": "78417", - "libelleAcheminement": "MONTCHAUVET", - "nomCommune": "MONTCHAUVET" + "codePostal": "80310", + "codeCommune": "80835", + "libelleAcheminement": "YZEUX", + "nomCommune": "YZEUX" }, { - "codePostal": "88410", - "codeCommune": "88471", - "libelleAcheminement": "LES THONS", - "nomCommune": "LES THONS" + "codePostal": "85170", + "codeCommune": "85019", + "libelleAcheminement": "BELLEVIGNY", + "nomCommune": "BELLEVIGNY" }, { - "codePostal": "78490", - "codeCommune": "78420", - "libelleAcheminement": "MONTFORT L AMAURY", - "nomCommune": "MONTFORT L AMAURY" + "codePostal": "81140", + "codeCommune": "81007", + "libelleAcheminement": "ALOS", + "nomCommune": "ALOS" }, { - "codePostal": "88500", - "codeCommune": "88476", - "libelleAcheminement": "TOTAINVILLE", - "nomCommune": "TOTAINVILLE" + "codePostal": "85560", + "codeCommune": "85022", + "libelleAcheminement": "LE BERNARD", + "nomCommune": "LE BERNARD" }, { - "codePostal": "78630", - "codeCommune": "78431", - "libelleAcheminement": "MORAINVILLIERS", - "nomCommune": "MORAINVILLIERS" + "codePostal": "81360", + "codeCommune": "81017", + "libelleAcheminement": "ARIFAT", + "nomCommune": "ARIFAT" }, { - "codePostal": "88300", - "codeCommune": "88478", - "libelleAcheminement": "TRANQUEVILLE GRAUX", - "nomCommune": "TRANQUEVILLE GRAUX" + "codePostal": "85710", + "codeCommune": "85024", + "libelleAcheminement": "BOIS DE CENE", + "nomCommune": "BOIS DE CENE" }, { - "codePostal": "78270", - "codeCommune": "78437", - "libelleAcheminement": "MOUSSEAUX SUR SEINE", - "nomCommune": "MOUSSEAUX SUR SEINE" + "codePostal": "81500", + "codeCommune": "81022", + "libelleAcheminement": "BANNIERES", + "nomCommune": "BANNIERES" }, { - "codePostal": "88140", - "codeCommune": "88482", - "libelleAcheminement": "URVILLE", - "nomCommune": "URVILLE" + "codePostal": "85200", + "codeCommune": "85033", + "libelleAcheminement": "BOURNEAU", + "nomCommune": "BOURNEAU" }, { - "codePostal": "78640", - "codeCommune": "78442", - "libelleAcheminement": "NEAUPHLE LE CHATEAU", - "nomCommune": "NEAUPHLE LE CHATEAU" + "codePostal": "81430", + "codeCommune": "81026", + "libelleAcheminement": "BELLEGARDE MARSAL", + "nomCommune": "BELLEGARDE MARSAL" }, { - "codePostal": "88270", - "codeCommune": "88488", - "libelleAcheminement": "VALFROICOURT", - "nomCommune": "VALFROICOURT" + "codePostal": "85120", + "codeCommune": "85037", + "libelleAcheminement": "BREUIL BARRET", + "nomCommune": "BREUIL BARRET" }, { - "codePostal": "78640", - "codeCommune": "78443", - "libelleAcheminement": "NEAUPHLE LE VIEUX", - "nomCommune": "NEAUPHLE LE VIEUX" + "codePostal": "81260", + "codeCommune": "81028", + "libelleAcheminement": "BERLATS", + "nomCommune": "BERLATS" }, { - "codePostal": "88800", - "codeCommune": "88490", - "libelleAcheminement": "VALLEROY LE SEC", - "nomCommune": "VALLEROY LE SEC" + "codePostal": "85410", + "codeCommune": "85040", + "libelleAcheminement": "LA CAILLERE ST HILAIRE", + "nomCommune": "LA CAILLERE ST HILAIRE" }, { - "codePostal": "78125", - "codeCommune": "78464", - "libelleAcheminement": "ORCEMONT", - "nomCommune": "ORCEMONT" + "codePostal": "81400", + "codeCommune": "81033", + "libelleAcheminement": "BLAYE LES MINES", + "nomCommune": "BLAYE LES MINES" }, { - "codePostal": "88000", - "codeCommune": "88495", - "libelleAcheminement": "VAUDEVILLE", - "nomCommune": "VAUDEVILLE" + "codePostal": "85220", + "codeCommune": "85045", + "libelleAcheminement": "LA CHAIZE GIRAUD", + "nomCommune": "LA CHAIZE GIRAUD" }, { - "codePostal": "78910", - "codeCommune": "78475", - "libelleAcheminement": "OSMOY", - "nomCommune": "OSMOY" + "codePostal": "81170", + "codeCommune": "81035", + "libelleAcheminement": "BOURNAZEL", + "nomCommune": "BOURNAZEL" }, { - "codePostal": "88140", - "codeCommune": "88496", - "libelleAcheminement": "VAUDONCOURT", - "nomCommune": "VAUDONCOURT" + "codePostal": "85300", + "codeCommune": "85047", + "libelleAcheminement": "CHALLANS", + "nomCommune": "CHALLANS" }, { - "codePostal": "78730", - "codeCommune": "78499", - "libelleAcheminement": "PONTHEVRARD", - "nomCommune": "PONTHEVRARD" + "codePostal": "81440", + "codeCommune": "81040", + "libelleAcheminement": "BROUSSE", + "nomCommune": "BROUSSE" }, { - "codePostal": "88310", - "codeCommune": "88500", - "libelleAcheminement": "VENTRON", - "nomCommune": "VENTRON" + "codePostal": "85540", + "codeCommune": "85050", + "libelleAcheminement": "LE CHAMP ST PERE", + "nomCommune": "LE CHAMP ST PERE" }, { - "codePostal": "78440", - "codeCommune": "78501", - "libelleAcheminement": "PORCHEVILLE", - "nomCommune": "PORCHEVILLE" + "codePostal": "81600", + "codeCommune": "81041", + "libelleAcheminement": "BROZE", + "nomCommune": "BROZE" }, { - "codePostal": "88210", - "codeCommune": "88501", - "libelleAcheminement": "LE VERMONT", - "nomCommune": "LE VERMONT" + "codePostal": "85110", + "codeCommune": "85051", + "libelleAcheminement": "CHANTONNAY", + "nomCommune": "CHANTONNAY" }, { - "codePostal": "78560", - "codeCommune": "78502", - "libelleAcheminement": "LE PORT MARLY", - "nomCommune": "LE PORT MARLY" + "codePostal": "81340", + "codeCommune": "81047", + "libelleAcheminement": "CADIX", + "nomCommune": "CADIX" }, { - "codePostal": "88600", - "codeCommune": "88502", - "libelleAcheminement": "VERVEZELLE", - "nomCommune": "VERVEZELLE" + "codePostal": "85110", + "codeCommune": "85051", + "libelleAcheminement": "CHANTONNAY", + "nomCommune": "CHANTONNAY" }, { - "codePostal": "78100", - "codeCommune": "78551", - "libelleAcheminement": "ST GERMAIN EN LAYE", - "nomCommune": "ST GERMAIN EN LAYE" + "codePostal": "81130", + "codeCommune": "81048", + "libelleAcheminement": "CAGNAC LES MINES", + "nomCommune": "CAGNAC LES MINES" }, { - "codePostal": "88110", - "codeCommune": "88503", - "libelleAcheminement": "VEXAINCOURT", - "nomCommune": "VEXAINCOURT" + "codePostal": "85670", + "codeCommune": "85055", + "libelleAcheminement": "LA CHAPELLE PALLUAU", + "nomCommune": "LA CHAPELLE PALLUAU" }, { - "codePostal": "78860", - "codeCommune": "78571", - "libelleAcheminement": "ST NOM LA BRETECHE", - "nomCommune": "ST NOM LA BRETECHE" + "codePostal": "81990", + "codeCommune": "81052", + "libelleAcheminement": "CAMBON D ALBI", + "nomCommune": "CAMBON" }, { - "codePostal": "88170", - "codeCommune": "88504", - "libelleAcheminement": "VICHEREY", - "nomCommune": "VICHEREY" + "codePostal": "85210", + "codeCommune": "85056", + "libelleAcheminement": "LA CHAPELLE THEMER", + "nomCommune": "LA CHAPELLE THEMER" }, { - "codePostal": "78500", - "codeCommune": "78586", - "libelleAcheminement": "SARTROUVILLE", - "nomCommune": "SARTROUVILLE" + "codePostal": "81580", + "codeCommune": "81054", + "libelleAcheminement": "CAMBOUNET SUR LE SOR", + "nomCommune": "CAMBOUNET SUR LE SOR" }, { - "codePostal": "88210", - "codeCommune": "88506", - "libelleAcheminement": "VIEUX MOULIN", - "nomCommune": "VIEUX MOULIN" + "codePostal": "85140", + "codeCommune": "85064", + "libelleAcheminement": "CHAUCHE", + "nomCommune": "CHAUCHE" }, { - "codePostal": "78650", - "codeCommune": "78588", - "libelleAcheminement": "SAULX MARCHAIS", - "nomCommune": "SAULX MARCHAIS" + "codePostal": "81200", + "codeCommune": "81066", + "libelleAcheminement": "CAUCALIERES", + "nomCommune": "CAUCALIERES" }, { - "codePostal": "88350", - "codeCommune": "88511", - "libelleAcheminement": "VILLOUXEL", - "nomCommune": "VILLOUXEL" + "codePostal": "85390", + "codeCommune": "85066", + "libelleAcheminement": "CHAVAGNES LES REDOUX", + "nomCommune": "CHAVAGNES LES REDOUX" }, { - "codePostal": "78790", - "codeCommune": "78591", - "libelleAcheminement": "SEPTEUIL", - "nomCommune": "SEPTEUIL" + "codePostal": "81800", + "codeCommune": "81070", + "libelleAcheminement": "COUFOULEUX", + "nomCommune": "COUFOULEUX" }, { - "codePostal": "88450", - "codeCommune": "88513", - "libelleAcheminement": "VINCEY", - "nomCommune": "VINCEY" + "codePostal": "85200", + "codeCommune": "85080", + "libelleAcheminement": "DOIX LES FONTAINES", + "nomCommune": "DOIX LES FONTAINES" }, { - "codePostal": "78980", - "codeCommune": "78608", - "libelleAcheminement": "LE TERTRE ST DENIS", - "nomCommune": "LE TERTRE ST DENIS" + "codePostal": "81340", + "codeCommune": "81071", + "libelleAcheminement": "COURRIS", + "nomCommune": "COURRIS" }, { - "codePostal": "88260", - "codeCommune": "88515", - "libelleAcheminement": "VIOMENIL", - "nomCommune": "VIOMENIL" + "codePostal": "85700", + "codeCommune": "85090", + "libelleAcheminement": "SEVREMONT", + "nomCommune": "SEVREMONT" }, { - "codePostal": "78790", - "codeCommune": "78618", - "libelleAcheminement": "TILLY", - "nomCommune": "TILLY" + "codePostal": "81170", + "codeCommune": "81080", + "libelleAcheminement": "DONNAZAC", + "nomCommune": "DONNAZAC" }, { - "codePostal": "88470", - "codeCommune": "88519", - "libelleAcheminement": "LA VOIVRE", - "nomCommune": "LA VOIVRE" + "codePostal": "85700", + "codeCommune": "85090", + "libelleAcheminement": "SEVREMONT", + "nomCommune": "SEVREMONT" }, { - "codePostal": "78480", - "codeCommune": "78642", - "libelleAcheminement": "VERNEUIL SUR SEINE", - "nomCommune": "VERNEUIL SUR SEINE" + "codePostal": "81260", + "codeCommune": "81086", + "libelleAcheminement": "ESPERAUSSES", + "nomCommune": "ESPERAUSSES" }, { - "codePostal": "88460", - "codeCommune": "88528", - "libelleAcheminement": "XAMONTARUPT", - "nomCommune": "XAMONTARUPT" + "codePostal": "85700", + "codeCommune": "85090", + "libelleAcheminement": "SEVREMONT", + "nomCommune": "SEVREMONT" }, { - "codePostal": "79350", - "codeCommune": "79008", - "libelleAcheminement": "AMAILLOUX", - "nomCommune": "AMAILLOUX" + "codePostal": "81150", + "codeCommune": "81087", + "libelleAcheminement": "FAYSSAC", + "nomCommune": "FAYSSAC" }, { - "codePostal": "88220", - "codeCommune": "88530", - "libelleAcheminement": "XERTIGNY", - "nomCommune": "XERTIGNY" + "codePostal": "85800", + "codeCommune": "85100", + "libelleAcheminement": "GIVRAND", + "nomCommune": "GIVRAND" }, { - "codePostal": "79210", - "codeCommune": "79010", - "libelleAcheminement": "ARCAIS", - "nomCommune": "ARCAIS" + "codePostal": "81340", + "codeCommune": "81089", + "libelleAcheminement": "FAUSSERGUES", + "nomCommune": "FAUSSERGUES" }, { - "codePostal": "88400", - "codeCommune": "88531", - "libelleAcheminement": "XONRUPT LONGEMER", - "nomCommune": "XONRUPT LONGEMER" + "codePostal": "85260", + "codeCommune": "85108", + "libelleAcheminement": "L HERBERGEMENT", + "nomCommune": "L HERBERGEMENT" }, { - "codePostal": "79150", - "codeCommune": "79013", - "libelleAcheminement": "ARGENTONNAY", - "nomCommune": "ARGENTONNAY" + "codePostal": "81500", + "codeCommune": "81102", + "libelleAcheminement": "GARRIGUES", + "nomCommune": "GARRIGUES" }, { - "codePostal": "89710", - "codeCommune": "89003", - "libelleAcheminement": "MONTHOLON", - "nomCommune": "MONTHOLON" + "codePostal": "85340", + "codeCommune": "85112", + "libelleAcheminement": "L ILE D OLONNE", + "nomCommune": "L ILE D OLONNE" }, { - "codePostal": "79600", - "codeCommune": "79016", - "libelleAcheminement": "ASSAIS LES JUMEAUX", - "nomCommune": "ASSAIS LES JUMEAUX" + "codePostal": "81170", + "codeCommune": "81111", + "libelleAcheminement": "LABARTHE BLEYS", + "nomCommune": "LABARTHE BLEYS" }, { - "codePostal": "89160", - "codeCommune": "89006", - "libelleAcheminement": "ANCY LE LIBRE", - "nomCommune": "ANCY LE LIBRE" + "codePostal": "85520", + "codeCommune": "85114", + "libelleAcheminement": "JARD SUR MER", + "nomCommune": "JARD SUR MER" }, { - "codePostal": "79400", - "codeCommune": "79024", - "libelleAcheminement": "AZAY LE BRULE", - "nomCommune": "AZAY LE BRULE" + "codePostal": "81330", + "codeCommune": "81125", + "libelleAcheminement": "LACAZE", + "nomCommune": "LACAZE" }, { - "codePostal": "89440", - "codeCommune": "89008", - "libelleAcheminement": "ANGELY", - "nomCommune": "ANGELY" + "codePostal": "85110", + "codeCommune": "85115", + "libelleAcheminement": "LA JAUDONNIERE", + "nomCommune": "LA JAUDONNIERE" }, { - "codePostal": "79130", - "codeCommune": "79025", - "libelleAcheminement": "AZAY SUR THOUET", - "nomCommune": "AZAY SUR THOUET" + "codePostal": "81210", + "codeCommune": "81128", + "libelleAcheminement": "LACROUZETTE", + "nomCommune": "LACROUZETTE" }, { - "codePostal": "89310", - "codeCommune": "89010", - "libelleAcheminement": "ANNAY SUR SEREIN", - "nomCommune": "ANNAY SUR SEREIN" + "codePostal": "85420", + "codeCommune": "85123", + "libelleAcheminement": "LIEZ", + "nomCommune": "LIEZ" }, { - "codePostal": "79000", - "codeCommune": "79034", - "libelleAcheminement": "BESSINES", - "nomCommune": "BESSINES" + "codePostal": "81640", + "codeCommune": "81135", + "libelleAcheminement": "LAPARROUQUIAL", + "nomCommune": "LAPARROUQUIAL" }, { - "codePostal": "89160", - "codeCommune": "89016", - "libelleAcheminement": "ARGENTENAY", - "nomCommune": "ARGENTENAY" + "codePostal": "85400", + "codeCommune": "85131", + "libelleAcheminement": "LES MAGNILS REIGNIERS", + "nomCommune": "LES MAGNILS REIGNIERS" }, { - "codePostal": "79800", - "codeCommune": "79042", - "libelleAcheminement": "BOUGON", - "nomCommune": "BOUGON" + "codePostal": "81300", + "codeCommune": "81138", + "libelleAcheminement": "LASGRAISSES", + "nomCommune": "LASGRAISSES" }, { - "codePostal": "89160", - "codeCommune": "89017", - "libelleAcheminement": "ARGENTEUIL SUR ARMANCON", - "nomCommune": "ARGENTEUIL SUR ARMANCON" + "codePostal": "85420", + "codeCommune": "85132", + "libelleAcheminement": "MAILLE", + "nomCommune": "MAILLE" }, { - "codePostal": "79600", - "codeCommune": "79047", - "libelleAcheminement": "BOUSSAIS", - "nomCommune": "BOUSSAIS" + "codePostal": "81500", + "codeCommune": "81140", + "libelleAcheminement": "LAVAUR", + "nomCommune": "LAVAUR" }, { - "codePostal": "89800", - "codeCommune": "89034", - "libelleAcheminement": "BEINE", - "nomCommune": "BEINE" + "codePostal": "85320", + "codeCommune": "85135", + "libelleAcheminement": "MAREUIL SUR LAY DISSAIS", + "nomCommune": "MAREUIL SUR LAY DISSAIS" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "81120", + "codeCommune": "81147", + "libelleAcheminement": "LOMBERS", + "nomCommune": "LOMBERS" }, { - "codePostal": "89410", - "codeCommune": "89037", - "libelleAcheminement": "BEON", - "nomCommune": "BEON" + "codePostal": "85420", + "codeCommune": "85139", + "libelleAcheminement": "LE MAZEAU", + "nomCommune": "LE MAZEAU" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "81170", + "codeCommune": "81148", + "libelleAcheminement": "LOUBERS", + "nomCommune": "LOUBERS" }, { - "codePostal": "89420", - "codeCommune": "89042", - "libelleAcheminement": "BIERRY LES BELLES FONTAINES", - "nomCommune": "BIERRY LES BELLES FONTAINES" + "codePostal": "85600", + "codeCommune": "85146", + "libelleAcheminement": "MONTAIGU VENDEE", + "nomCommune": "MONTAIGU VENDEE" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "81220", + "codeCommune": "81151", + "libelleAcheminement": "MAGRIN", + "nomCommune": "MAGRIN" }, { - "codePostal": "89660", - "codeCommune": "89049", - "libelleAcheminement": "BOIS D ARCY", - "nomCommune": "BOIS D ARCY" + "codePostal": "85150", + "codeCommune": "85152", + "libelleAcheminement": "LES ACHARDS", + "nomCommune": "LES ACHARDS" }, { - "codePostal": "79300", - "codeCommune": "79049", - "libelleAcheminement": "BRESSUIRE", - "nomCommune": "BRESSUIRE" + "codePostal": "81250", + "codeCommune": "81161", + "libelleAcheminement": "MASSALS", + "nomCommune": "MASSALS" }, { - "codePostal": "89400", - "codeCommune": "89050", - "libelleAcheminement": "BONNARD", - "nomCommune": "BONNARD" + "codePostal": "85150", + "codeCommune": "85152", + "libelleAcheminement": "LES ACHARDS", + "nomCommune": "LES ACHARDS" }, { - "codePostal": "79370", - "codeCommune": "79061", - "libelleAcheminement": "CELLES SUR BELLE", - "nomCommune": "CELLES SUR BELLE" + "codePostal": "81800", + "codeCommune": "81164", + "libelleAcheminement": "MEZENS", + "nomCommune": "MEZENS" }, { - "codePostal": "89210", - "codeCommune": "89055", - "libelleAcheminement": "BRIENON SUR ARMANCON", - "nomCommune": "BRIENON SUR ARMANCON" + "codePostal": "85390", + "codeCommune": "85154", + "libelleAcheminement": "MOUILLERON ST GERMAIN", + "nomCommune": "MOUILLERON ST GERMAIN" }, { - "codePostal": "79220", - "codeCommune": "79070", - "libelleAcheminement": "LA CHAPELLE BATON", - "nomCommune": "LA CHAPELLE BATON" + "codePostal": "81250", + "codeCommune": "81167", + "libelleAcheminement": "MIOLLES", + "nomCommune": "MIOLLES" }, { - "codePostal": "89400", - "codeCommune": "89059", - "libelleAcheminement": "BUSSY EN OTHE", - "nomCommune": "BUSSY EN OTHE" + "codePostal": "85430", + "codeCommune": "85161", + "libelleAcheminement": "NIEUL LE DOLENT", + "nomCommune": "NIEUL LE DOLENT" }, { - "codePostal": "79360", - "codeCommune": "79078", - "libelleAcheminement": "PLAINE D ARGENSON", - "nomCommune": "PLAINE D ARGENSON" + "codePostal": "81190", + "codeCommune": "81172", + "libelleAcheminement": "MONTAURIOL", + "nomCommune": "MONTAURIOL" }, { - "codePostal": "89116", - "codeCommune": "89063", - "libelleAcheminement": "LA CELLE ST CYR", - "nomCommune": "LA CELLE ST CYR" + "codePostal": "85330", + "codeCommune": "85163", + "libelleAcheminement": "NOIRMOUTIER EN L ILE", + "nomCommune": "NOIRMOUTIER EN L ILE" }, { - "codePostal": "79360", - "codeCommune": "79078", - "libelleAcheminement": "PLAINE D ARGENSON", - "nomCommune": "PLAINE D ARGENSON" + "codePostal": "81470", + "codeCommune": "81179", + "libelleAcheminement": "MONTGEY", + "nomCommune": "MONTGEY" }, { - "codePostal": "89320", - "codeCommune": "89066", - "libelleAcheminement": "CERISIERS", - "nomCommune": "CERISIERS" + "codePostal": "85170", + "codeCommune": "85178", + "libelleAcheminement": "LE POIRE SUR VIE", + "nomCommune": "LE POIRE SUR VIE" }, { - "codePostal": "79700", - "codeCommune": "79079", - "libelleAcheminement": "MAULEON", - "nomCommune": "MAULEON" + "codePostal": "81430", + "codeCommune": "81190", + "libelleAcheminement": "MOUZIEYS TEULET", + "nomCommune": "MOUZIEYS TEULET" }, { - "codePostal": "89800", - "codeCommune": "89068", - "libelleAcheminement": "CHABLIS", - "nomCommune": "CHABLIS" + "codePostal": "85440", + "codeCommune": "85179", + "libelleAcheminement": "POIROUX", + "nomCommune": "POIROUX" }, { - "codePostal": "79700", - "codeCommune": "79079", - "libelleAcheminement": "MAULEON", - "nomCommune": "MAULEON" + "codePostal": "81120", + "codeCommune": "81198", + "libelleAcheminement": "ORBAN", + "nomCommune": "ORBAN" }, { - "codePostal": "89350", - "codeCommune": "89073", - "libelleAcheminement": "CHAMPIGNELLES", - "nomCommune": "CHAMPIGNELLES" + "codePostal": "85320", + "codeCommune": "85193", + "libelleAcheminement": "ROSNAY", + "nomCommune": "ROSNAY" }, { - "codePostal": "79350", - "codeCommune": "79088", - "libelleAcheminement": "CHICHE", - "nomCommune": "CHICHE" + "codePostal": "81310", + "codeCommune": "81202", + "libelleAcheminement": "PARISOT", + "nomCommune": "PARISOT" }, { - "codePostal": "89340", - "codeCommune": "89074", - "libelleAcheminement": "CHAMPIGNY", - "nomCommune": "CHAMPIGNY" + "codePostal": "85260", + "codeCommune": "85197", + "libelleAcheminement": "MONTREVERD", + "nomCommune": "MONTREVERD" }, { - "codePostal": "79170", - "codeCommune": "79090", - "libelleAcheminement": "CHIZE", - "nomCommune": "CHIZE" + "codePostal": "81800", + "codeCommune": "81220", + "libelleAcheminement": "RABASTENS", + "nomCommune": "RABASTENS" }, { - "codePostal": "89290", - "codeCommune": "89077", - "libelleAcheminement": "CHAMPS SUR YONNE", - "nomCommune": "CHAMPS SUR YONNE" + "codePostal": "85540", + "codeCommune": "85200", + "libelleAcheminement": "ST AVAUGOURD DES LANDES", + "nomCommune": "ST AVAUGOURD DES LANDES" }, { - "codePostal": "79140", - "codeCommune": "79091", - "libelleAcheminement": "CIRIERES", - "nomCommune": "CIRIERES" + "codePostal": "81240", + "codeCommune": "81223", + "libelleAcheminement": "LE RIALET", + "nomCommune": "LE RIALET" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "85580", + "codeCommune": "85207", + "libelleAcheminement": "ST DENIS DU PAYRE", + "nomCommune": "ST DENIS DU PAYRE" }, { - "codePostal": "79510", - "codeCommune": "79100", - "libelleAcheminement": "COULON", - "nomCommune": "COULON" + "codePostal": "81170", + "codeCommune": "81224", + "libelleAcheminement": "LE RIOLS", + "nomCommune": "LE RIOLS" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "85250", + "codeCommune": "85215", + "libelleAcheminement": "ST FULGENT", + "nomCommune": "ST FULGENT" }, { - "codePostal": "79330", - "codeCommune": "79102", - "libelleAcheminement": "COULONGES THOUARSAIS", - "nomCommune": "COULONGES THOUARSAIS" + "codePostal": "81210", + "codeCommune": "81227", + "libelleAcheminement": "ROQUECOURBE", + "nomCommune": "ROQUECOURBE" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "85110", + "codeCommune": "85220", + "libelleAcheminement": "ST GERMAIN DE PRINCAY", + "nomCommune": "ST GERMAIN DE PRINCAY" }, { - "codePostal": "79450", - "codeCommune": "79118", - "libelleAcheminement": "FENERY", - "nomCommune": "FENERY" + "codePostal": "81800", + "codeCommune": "81228", + "libelleAcheminement": "ROQUEMAURE", + "nomCommune": "ROQUEMAURE" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "85440", + "codeCommune": "85231", + "libelleAcheminement": "ST HILAIRE LA FORET", + "nomCommune": "ST HILAIRE LA FORET" }, { - "codePostal": "79340", - "codeCommune": "79124", - "libelleAcheminement": "LES FORGES", - "nomCommune": "LES FORGES" + "codePostal": "81120", + "codeCommune": "81233", + "libelleAcheminement": "TERRE DE BANCALIE", + "nomCommune": "TERRE DE BANCALIE" }, { - "codePostal": "89690", - "codeCommune": "89100", - "libelleAcheminement": "CHEROY", - "nomCommune": "CHEROY" + "codePostal": "85480", + "codeCommune": "85232", + "libelleAcheminement": "ST HILAIRE LE VOUHIS", + "nomCommune": "ST HILAIRE LE VOUHIS" }, { - "codePostal": "79370", - "codeCommune": "79129", - "libelleAcheminement": "FRESSINES", - "nomCommune": "FRESSINES" + "codePostal": "81120", + "codeCommune": "81233", + "libelleAcheminement": "TERRE DE BANCALIE", + "nomCommune": "TERRE DE BANCALIE" }, { - "codePostal": "89100", - "codeCommune": "89113", - "libelleAcheminement": "COLLEMIERS", - "nomCommune": "COLLEMIERS" + "codePostal": "85590", + "codeCommune": "85240", + "libelleAcheminement": "ST MALO DU BOIS", + "nomCommune": "ST MALO DU BOIS" }, { - "codePostal": "79330", - "codeCommune": "79134", - "libelleAcheminement": "GLENAY", - "nomCommune": "GLENAY" + "codePostal": "81140", + "codeCommune": "81234", + "libelleAcheminement": "ROUSSAYROLLES", + "nomCommune": "ROUSSAYROLLES" }, { - "codePostal": "89500", - "codeCommune": "89116", - "libelleAcheminement": "CORNANT", - "nomCommune": "CORNANT" + "codePostal": "85140", + "codeCommune": "85246", + "libelleAcheminement": "ST MARTIN DES NOYERS", + "nomCommune": "ST MARTIN DES NOYERS" }, { - "codePostal": "79110", - "codeCommune": "79136", - "libelleAcheminement": "ALLOINAY", - "nomCommune": "ALLOINAY" + "codePostal": "81240", + "codeCommune": "81239", + "libelleAcheminement": "ST AMANS VALTORET", + "nomCommune": "ST AMANS VALTORET" }, { - "codePostal": "89580", - "codeCommune": "89117", - "libelleAcheminement": "COULANGERON", - "nomCommune": "COULANGERON" + "codePostal": "85150", + "codeCommune": "85250", + "libelleAcheminement": "ST MATHURIN", + "nomCommune": "ST MATHURIN" }, { - "codePostal": "79360", - "codeCommune": "79137", - "libelleAcheminement": "GRANZAY GRIPT", - "nomCommune": "GRANZAY GRIPT" + "codePostal": "81210", + "codeCommune": "81252", + "libelleAcheminement": "ST GERMIER", + "nomCommune": "ST GERMIER" }, { - "codePostal": "89320", - "codeCommune": "89120", - "libelleAcheminement": "COULOURS", - "nomCommune": "COULOURS" + "codePostal": "85120", + "codeCommune": "85251", + "libelleAcheminement": "ST MAURICE DES NOUES", + "nomCommune": "ST MAURICE DES NOUES" }, { - "codePostal": "79500", - "codeCommune": "79174", - "libelleAcheminement": "MELLE", - "nomCommune": "MELLE" + "codePostal": "81500", + "codeCommune": "81255", + "libelleAcheminement": "ST JEAN DE RIVES", + "nomCommune": "ST JEAN DE RIVES" }, { - "codePostal": "89480", - "codeCommune": "89129", - "libelleAcheminement": "CRAIN", - "nomCommune": "CRAIN" + "codePostal": "85200", + "codeCommune": "85256", + "libelleAcheminement": "ST MICHEL LE CLOUCQ", + "nomCommune": "ST MICHEL LE CLOUCQ" }, { - "codePostal": "79120", - "codeCommune": "79177", - "libelleAcheminement": "MESSE", - "nomCommune": "MESSE" + "codePostal": "81210", + "codeCommune": "81256", + "libelleAcheminement": "ST JEAN DE VALS", + "nomCommune": "ST JEAN DE VALS" }, { - "codePostal": "89740", - "codeCommune": "89131", - "libelleAcheminement": "CRUZY LE CHATEL", - "nomCommune": "CRUZY LE CHATEL" + "codePostal": "85670", + "codeCommune": "85260", + "libelleAcheminement": "ST PAUL MONT PENIT", + "nomCommune": "ST PAUL MONT PENIT" }, { - "codePostal": "79320", - "codeCommune": "79179", - "libelleAcheminement": "MONCOUTANT SUR SEVRE", - "nomCommune": "MONCOUTANT SUR SEVRE" + "codePostal": "81340", + "codeCommune": "81259", + "libelleAcheminement": "ST JULIEN GAULENE", + "nomCommune": "ST JULIEN GAULENE" }, { - "codePostal": "89440", - "codeCommune": "89141", - "libelleAcheminement": "DISSANGIS", - "nomCommune": "DISSANGIS" + "codePostal": "85120", + "codeCommune": "85264", + "libelleAcheminement": "ST PIERRE DU CHEMIN", + "nomCommune": "ST PIERRE DU CHEMIN" }, { - "codePostal": "79370", - "codeCommune": "79185", - "libelleAcheminement": "AIGONDIGNE", - "nomCommune": "AIGONDIGNE" + "codePostal": "81170", + "codeCommune": "81262", + "libelleAcheminement": "ST MARCEL CAMPES", + "nomCommune": "ST MARCEL CAMPES" }, { - "codePostal": "89150", - "codeCommune": "89144", - "libelleAcheminement": "DOMATS", - "nomCommune": "DOMATS" + "codePostal": "85420", + "codeCommune": "85265", + "libelleAcheminement": "ST PIERRE LE VIEUX", + "nomCommune": "ST PIERRE LE VIEUX" }, { - "codePostal": "79000", - "codeCommune": "79191", - "libelleAcheminement": "NIORT", - "nomCommune": "NIORT" + "codePostal": "81330", + "codeCommune": "81267", + "libelleAcheminement": "ST PIERRE DE TRIVISY", + "nomCommune": "ST PIERRE DE TRIVISY" }, { - "codePostal": "89200", - "codeCommune": "89146", - "libelleAcheminement": "DOMECY SUR LE VAULT", - "nomCommune": "DOMECY SUR LE VAULT" + "codePostal": "85540", + "codeCommune": "85277", + "libelleAcheminement": "ST VINCENT SUR GRAON", + "nomCommune": "ST VINCENT SUR GRAON" }, { - "codePostal": "79000", - "codeCommune": "79191", - "libelleAcheminement": "NIORT", - "nomCommune": "NIORT" + "codePostal": "81700", + "codeCommune": "81270", + "libelleAcheminement": "ST SERNIN LES LAVAUR", + "nomCommune": "ST SERNIN LES LAVAUR" }, { - "codePostal": "89130", - "codeCommune": "89147", - "libelleAcheminement": "DRACY", - "nomCommune": "DRACY" + "codePostal": "85200", + "codeCommune": "85281", + "libelleAcheminement": "SERIGNE", + "nomCommune": "SERIGNE" }, { - "codePostal": "79250", - "codeCommune": "79195", - "libelleAcheminement": "NUEIL LES AUBIERS", - "nomCommune": "NUEIL LES AUBIERS" + "codePostal": "81370", + "codeCommune": "81271", + "libelleAcheminement": "ST SULPICE LA POINTE", + "nomCommune": "ST SULPICE LA POINTE" }, { - "codePostal": "89700", - "codeCommune": "89153", - "libelleAcheminement": "EPINEUIL", - "nomCommune": "EPINEUIL" + "codePostal": "85440", + "codeCommune": "85288", + "libelleAcheminement": "TALMONT ST HILAIRE", + "nomCommune": "TALMONT ST HILAIRE" }, { - "codePostal": "79100", - "codeCommune": "79196", - "libelleAcheminement": "PLAINE ET VALLEES", - "nomCommune": "PLAINE ET VALLEES" + "codePostal": "81630", + "codeCommune": "81276", + "libelleAcheminement": "SALVAGNAC", + "nomCommune": "SALVAGNAC" }, { - "codePostal": "89210", - "codeCommune": "89156", - "libelleAcheminement": "ESNON", - "nomCommune": "ESNON" + "codePostal": "85120", + "codeCommune": "85289", + "libelleAcheminement": "LA TARDIERE", + "nomCommune": "LA TARDIERE" }, { - "codePostal": "79200", - "codeCommune": "79208", - "libelleAcheminement": "LA PEYRATTE", - "nomCommune": "LA PEYRATTE" + "codePostal": "81630", + "codeCommune": "81279", + "libelleAcheminement": "LA SAUZIERE ST JEAN", + "nomCommune": "LA SAUZIERE ST JEAN" }, { - "codePostal": "89800", - "codeCommune": "89168", - "libelleAcheminement": "FLEYS", - "nomCommune": "FLEYS" + "codePostal": "85580", + "codeCommune": "85297", + "libelleAcheminement": "TRIAIZE", + "nomCommune": "TRIAIZE" }, { - "codePostal": "79200", - "codeCommune": "79213", - "libelleAcheminement": "POMPAIRE", - "nomCommune": "POMPAIRE" + "codePostal": "81570", + "codeCommune": "81281", + "libelleAcheminement": "SEMALENS", + "nomCommune": "SEMALENS" }, { - "codePostal": "89800", - "codeCommune": "89175", - "libelleAcheminement": "FONTENAY PRES CHABLIS", - "nomCommune": "FONTENAY PRES CHABLIS" + "codePostal": "85190", + "codeCommune": "85300", + "libelleAcheminement": "VENANSAULT", + "nomCommune": "VENANSAULT" }, { - "codePostal": "79390", - "codeCommune": "79218", - "libelleAcheminement": "PRESSIGNY", - "nomCommune": "PRESSIGNY" + "codePostal": "81990", + "codeCommune": "81284", + "libelleAcheminement": "LE SEQUESTRE", + "nomCommune": "LE SEQUESTRE" }, { - "codePostal": "89310", - "codeCommune": "89194", - "libelleAcheminement": "GRIMAULT", - "nomCommune": "GRIMAULT" + "codePostal": "85240", + "codeCommune": "85306", + "libelleAcheminement": "XANTON CHASSENON", + "nomCommune": "XANTON CHASSENON" }, { - "codePostal": "79210", - "codeCommune": "79220", - "libelleAcheminement": "PRIN DEYRANCON", - "nomCommune": "PRIN DEYRANCON" + "codePostal": "81350", + "codeCommune": "81285", + "libelleAcheminement": "SERENAC", + "nomCommune": "SERENAC" }, { - "codePostal": "89113", - "codeCommune": "89196", - "libelleAcheminement": "VALRAVILLON", - "nomCommune": "VALRAVILLON" + "codePostal": "86170", + "codeCommune": "86016", + "libelleAcheminement": "AVANTON", + "nomCommune": "AVANTON" }, { - "codePostal": "79220", - "codeCommune": "79241", - "libelleAcheminement": "ST CHRISTOPHE SUR ROC", - "nomCommune": "ST CHRISTOPHE SUR ROC" + "codePostal": "81540", + "codeCommune": "81288", + "libelleAcheminement": "SOREZE", + "nomCommune": "SOREZE" }, { - "codePostal": "89420", - "codeCommune": "89197", - "libelleAcheminement": "GUILLON TERRE PLAINE", - "nomCommune": "GUILLON TERRE PLAINE" + "codePostal": "86210", + "codeCommune": "86020", + "libelleAcheminement": "BELLEFONDS", + "nomCommune": "BELLEFONDS" }, { - "codePostal": "79150", - "codeCommune": "79242", - "libelleAcheminement": "VOULMENTIN", - "nomCommune": "VOULMENTIN" + "codePostal": "81440", + "codeCommune": "81311", + "libelleAcheminement": "VENES", + "nomCommune": "VENES" }, { - "codePostal": "89420", - "codeCommune": "89197", - "libelleAcheminement": "GUILLON TERRE PLAINE", - "nomCommune": "GUILLON TERRE PLAINE" + "codePostal": "86210", + "codeCommune": "86032", + "libelleAcheminement": "BONNEUIL MATOURS", + "nomCommune": "BONNEUIL MATOURS" }, { - "codePostal": "79100", - "codeCommune": "79244", - "libelleAcheminement": "ST CYR LA LANDE", - "nomCommune": "ST CYR LA LANDE" + "codePostal": "81140", + "codeCommune": "81313", + "libelleAcheminement": "LE VERDIER", + "nomCommune": "LE VERDIER" }, { - "codePostal": "89580", - "codeCommune": "89199", - "libelleAcheminement": "GY L EVEQUE", - "nomCommune": "GY L EVEQUE" + "codePostal": "86410", + "codeCommune": "86034", + "libelleAcheminement": "BOURESSE", + "nomCommune": "BOURESSE" }, { - "codePostal": "79200", - "codeCommune": "79255", - "libelleAcheminement": "ST GERMAIN DE LONGUE CHAUME", - "nomCommune": "ST GERMAIN DE LONGUE CHAUME" + "codePostal": "81430", + "codeCommune": "81317", + "libelleAcheminement": "VILLEFRANCHE D ALBIGEOIS", + "nomCommune": "VILLEFRANCHE D ALBIGEOIS" }, { - "codePostal": "89250", - "codeCommune": "89200", - "libelleAcheminement": "HAUTERIVE", - "nomCommune": "HAUTERIVE" + "codePostal": "86510", + "codeCommune": "86039", + "libelleAcheminement": "BRUX", + "nomCommune": "BRUX" }, { - "codePostal": "79340", - "codeCommune": "79256", - "libelleAcheminement": "ST GERMIER", - "nomCommune": "ST GERMIER" + "codePostal": "81240", + "codeCommune": "81321", + "libelleAcheminement": "LE VINTROU", + "nomCommune": "LE VINTROU" }, { - "codePostal": "89290", - "codeCommune": "89202", - "libelleAcheminement": "IRANCY", - "nomCommune": "IRANCY" + "codePostal": "86110", + "codeCommune": "86075", + "libelleAcheminement": "CHOUPPES", + "nomCommune": "CHOUPPES" }, { - "codePostal": "79420", - "codeCommune": "79267", - "libelleAcheminement": "ST LIN", - "nomCommune": "ST LIN" + "codePostal": "81290", + "codeCommune": "81325", + "libelleAcheminement": "VIVIERS LES MONTAGNES", + "nomCommune": "VIVIERS LES MONTAGNES" }, { - "codePostal": "89200", - "codeCommune": "89203", - "libelleAcheminement": "ISLAND", - "nomCommune": "ISLAND" + "codePostal": "86400", + "codeCommune": "86078", + "libelleAcheminement": "CIVRAY", + "nomCommune": "CIVRAY" }, { - "codePostal": "79400", - "codeCommune": "79270", - "libelleAcheminement": "ST MAIXENT L ECOLE", - "nomCommune": "ST MAIXENT L ECOLE" + "codePostal": "82290", + "codeCommune": "82001", + "libelleAcheminement": "ALBEFEUILLE LAGARDE", + "nomCommune": "ALBEFEUILLE LAGARDE" }, { - "codePostal": "89300", - "codeCommune": "89206", - "libelleAcheminement": "JOIGNY", - "nomCommune": "JOIGNY" + "codePostal": "86700", + "codeCommune": "86082", + "libelleAcheminement": "VALENCE EN POITOU", + "nomCommune": "VALENCE EN POITOU" }, { - "codePostal": "79420", - "codeCommune": "79278", - "libelleAcheminement": "ST MARTIN DU FOUILLOUX", - "nomCommune": "ST MARTIN DU FOUILLOUX" + "codePostal": "82120", + "codeCommune": "82009", + "libelleAcheminement": "BALIGNAC", + "nomCommune": "BALIGNAC" }, { - "codePostal": "89440", - "codeCommune": "89208", - "libelleAcheminement": "JOUX LA VILLE", - "nomCommune": "JOUX LA VILLE" + "codePostal": "86700", + "codeCommune": "86082", + "libelleAcheminement": "VALENCE EN POITOU", + "nomCommune": "VALENCE EN POITOU" }, { - "codePostal": "79230", - "codeCommune": "79294", - "libelleAcheminement": "ST ROMANS DES CHAMPS", - "nomCommune": "ST ROMANS DES CHAMPS" + "codePostal": "82190", + "codeCommune": "82024", + "libelleAcheminement": "BRASSAC", + "nomCommune": "BRASSAC" }, { - "codePostal": "89560", - "codeCommune": "89215", - "libelleAcheminement": "LAIN", - "nomCommune": "LAIN" + "codePostal": "86700", + "codeCommune": "86082", + "libelleAcheminement": "VALENCE EN POITOU", + "nomCommune": "VALENCE EN POITOU" }, { - "codePostal": "79120", - "codeCommune": "79297", - "libelleAcheminement": "STE SOLINE", - "nomCommune": "STE SOLINE" + "codePostal": "82800", + "codeCommune": "82026", + "libelleAcheminement": "BRUNIQUEL", + "nomCommune": "BRUNIQUEL" }, { - "codePostal": "89520", - "codeCommune": "89216", - "libelleAcheminement": "LAINSECQ", - "nomCommune": "LAINSECQ" + "codePostal": "86600", + "codeCommune": "86083", + "libelleAcheminement": "COULOMBIERS", + "nomCommune": "COULOMBIERS" }, { - "codePostal": "79500", - "codeCommune": "79301", - "libelleAcheminement": "ST VINCENT LA CHATRE", - "nomCommune": "ST VINCENT LA CHATRE" + "codePostal": "82400", + "codeCommune": "82032", + "libelleAcheminement": "CASTELSAGRAT", + "nomCommune": "CASTELSAGRAT" }, { - "codePostal": "89570", - "codeCommune": "89219", - "libelleAcheminement": "LASSON", - "nomCommune": "LASSON" + "codePostal": "86110", + "codeCommune": "86089", + "libelleAcheminement": "CUHON", + "nomCommune": "CUHON" }, { - "codePostal": "79000", - "codeCommune": "79308", - "libelleAcheminement": "SCIECQ", - "nomCommune": "SCIECQ" + "codePostal": "82120", + "codeCommune": "82034", + "libelleAcheminement": "CASTERA BOUZET", + "nomCommune": "CASTERA BOUZET" }, { - "codePostal": "89170", - "codeCommune": "89220", - "libelleAcheminement": "LAVAU", - "nomCommune": "LAVAU" + "codePostal": "86420", + "codeCommune": "86093", + "libelleAcheminement": "DERCE", + "nomCommune": "DERCE" }, { - "codePostal": "79130", - "codeCommune": "79311", - "libelleAcheminement": "SECONDIGNY", - "nomCommune": "SECONDIGNY" + "codePostal": "82210", + "codeCommune": "82035", + "libelleAcheminement": "CAUMONT", + "nomCommune": "CAUMONT" }, { - "codePostal": "89800", - "codeCommune": "89224", - "libelleAcheminement": "LICHERES PRES AIGREMONT", - "nomCommune": "LICHERES PRES AIGREMONT" + "codePostal": "86340", + "codeCommune": "86105", + "libelleAcheminement": "GIZAY", + "nomCommune": "GIZAY" }, { - "codePostal": "79170", - "codeCommune": "79312", - "libelleAcheminement": "SELIGNE", - "nomCommune": "SELIGNE" + "codePostal": "82500", + "codeCommune": "82036", + "libelleAcheminement": "LE CAUSE", + "nomCommune": "LE CAUSE" }, { - "codePostal": "89660", - "codeCommune": "89225", - "libelleAcheminement": "LICHERES SUR YONNE", - "nomCommune": "LICHERES SUR YONNE" + "codePostal": "86200", + "codeCommune": "86106", + "libelleAcheminement": "GLENOUZE", + "nomCommune": "GLENOUZE" }, { - "codePostal": "79390", - "codeCommune": "79326", - "libelleAcheminement": "THENEZAY", - "nomCommune": "THENEZAY" + "codePostal": "82240", + "codeCommune": "82040", + "libelleAcheminement": "CAYRIECH", + "nomCommune": "CAYRIECH" }, { - "codePostal": "89800", - "codeCommune": "89226", - "libelleAcheminement": "LIGNORELLES", - "nomCommune": "LIGNORELLES" + "codePostal": "86240", + "codeCommune": "86113", + "libelleAcheminement": "ITEUIL", + "nomCommune": "ITEUIL" }, { - "codePostal": "79100", - "codeCommune": "79329", - "libelleAcheminement": "THOUARS", - "nomCommune": "THOUARS" + "codePostal": "82370", + "codeCommune": "82044", + "libelleAcheminement": "CORBARIEU", + "nomCommune": "CORBARIEU" }, { - "codePostal": "89240", - "codeCommune": "89228", - "libelleAcheminement": "LINDRY", - "nomCommune": "LINDRY" + "codePostal": "86800", + "codeCommune": "86114", + "libelleAcheminement": "JARDRES", + "nomCommune": "JARDRES" }, { - "codePostal": "79100", - "codeCommune": "79329", - "libelleAcheminement": "THOUARS", - "nomCommune": "THOUARS" + "codePostal": "82700", + "codeCommune": "82045", + "libelleAcheminement": "CORDES TOLOSANNES", + "nomCommune": "CORDES TOLOSANNES" }, { - "codePostal": "89140", - "codeCommune": "89229", - "libelleAcheminement": "LIXY", - "nomCommune": "LIXY" + "codePostal": "86500", + "codeCommune": "86117", + "libelleAcheminement": "JOUHET", + "nomCommune": "JOUHET" }, { - "codePostal": "79100", - "codeCommune": "79331", - "libelleAcheminement": "TOURTENAY", - "nomCommune": "TOURTENAY" + "codePostal": "82210", + "codeCommune": "82046", + "libelleAcheminement": "COUTURES", + "nomCommune": "COUTURES" }, { - "codePostal": "89300", - "codeCommune": "89230", - "libelleAcheminement": "LOOZE", - "nomCommune": "LOOZE" + "codePostal": "86190", + "codeCommune": "86121", + "libelleAcheminement": "LATILLE", + "nomCommune": "LATILLE" }, { - "codePostal": "79200", - "codeCommune": "79347", - "libelleAcheminement": "VIENNAY", - "nomCommune": "VIENNAY" + "codePostal": "82170", + "codeCommune": "82048", + "libelleAcheminement": "DIEUPENTALE", + "nomCommune": "DIEUPENTALE" }, { - "codePostal": "89480", - "codeCommune": "89234", - "libelleAcheminement": "LUCY SUR YONNE", - "nomCommune": "LUCY SUR YONNE" + "codePostal": "86800", + "codeCommune": "86124", + "libelleAcheminement": "LAVOUX", + "nomCommune": "LAVOUX" }, { - "codePostal": "80320", - "codeCommune": "80002", - "libelleAcheminement": "ABLAINCOURT PRESSOIR", - "nomCommune": "ABLAINCOURT PRESSOIR" + "codePostal": "82500", + "codeCommune": "82064", + "libelleAcheminement": "GARIES", + "nomCommune": "GARIES" }, { - "codePostal": "89100", - "codeCommune": "89236", - "libelleAcheminement": "MAILLOT", - "nomCommune": "MAILLOT" + "codePostal": "86800", + "codeCommune": "86135", + "libelleAcheminement": "LINIERS", + "nomCommune": "LINIERS" }, { - "codePostal": "80560", - "codeCommune": "80003", - "libelleAcheminement": "ACHEUX EN AMIENOIS", - "nomCommune": "ACHEUX EN AMIENOIS" + "codePostal": "82400", + "codeCommune": "82065", + "libelleAcheminement": "GASQUES", + "nomCommune": "GASQUES" }, { - "codePostal": "89500", - "codeCommune": "89245", - "libelleAcheminement": "MARSANGY", - "nomCommune": "MARSANGY" + "codePostal": "86200", + "codeCommune": "86137", + "libelleAcheminement": "LOUDUN", + "nomCommune": "LOUDUN" }, { - "codePostal": "80690", - "codeCommune": "80009", - "libelleAcheminement": "AILLY LE HAUT CLOCHER", - "nomCommune": "AILLY LE HAUT CLOCHER" + "codePostal": "82500", + "codeCommune": "82070", + "libelleAcheminement": "GLATENS", + "nomCommune": "GLATENS" }, { - "codePostal": "89660", - "codeCommune": "89253", - "libelleAcheminement": "MERRY SUR YONNE", - "nomCommune": "MERRY SUR YONNE" + "codePostal": "86270", + "codeCommune": "86143", + "libelleAcheminement": "MAIRE", + "nomCommune": "MAIRE" }, { - "codePostal": "80270", - "codeCommune": "80013", - "libelleAcheminement": "AIRAINES", - "nomCommune": "AIRAINES" + "codePostal": "82160", + "codeCommune": "82082", + "libelleAcheminement": "LACAPELLE LIVRON", + "nomCommune": "LACAPELLE LIVRON" }, { - "codePostal": "89580", - "codeCommune": "89256", - "libelleAcheminement": "MIGE", - "nomCommune": "MIGE" + "codePostal": "86170", + "codeCommune": "86144", + "libelleAcheminement": "MAISONNEUVE", + "nomCommune": "MAISONNEUVE" }, { - "codePostal": "80200", - "codeCommune": "80017", - "libelleAcheminement": "ALLAINES", - "nomCommune": "ALLAINES" + "codePostal": "82100", + "codeCommune": "82086", + "libelleAcheminement": "LAFITTE", + "nomCommune": "LAFITTE" }, { - "codePostal": "89700", - "codeCommune": "89262", - "libelleAcheminement": "MOLOSMES", - "nomCommune": "MOLOSMES" + "codePostal": "86110", + "codeCommune": "86160", + "libelleAcheminement": "MIREBEAU", + "nomCommune": "MIREBEAU" }, { - "codePostal": "80000", - "codeCommune": "80021", - "libelleAcheminement": "AMIENS", - "nomCommune": "AMIENS" + "codePostal": "82130", + "codeCommune": "82087", + "libelleAcheminement": "LAFRANCAISE", + "nomCommune": "LAFRANCAISE" }, { - "codePostal": "89100", - "codeCommune": "89274", - "libelleAcheminement": "NAILLY", - "nomCommune": "NAILLY" + "codePostal": "86330", + "codeCommune": "86161", + "libelleAcheminement": "MONCONTOUR", + "nomCommune": "MONCONTOUR" }, { - "codePostal": "80140", - "codeCommune": "80022", - "libelleAcheminement": "ANDAINVILLE", - "nomCommune": "ANDAINVILLE" + "codePostal": "82240", + "codeCommune": "82092", + "libelleAcheminement": "LAPENCHE", + "nomCommune": "LAPENCHE" }, { - "codePostal": "89390", - "codeCommune": "89280", - "libelleAcheminement": "NUITS", - "nomCommune": "NUITS" + "codePostal": "86330", + "codeCommune": "86161", + "libelleAcheminement": "MONCONTOUR", + "nomCommune": "MONCONTOUR" }, { - "codePostal": "80120", - "codeCommune": "80025", - "libelleAcheminement": "ARGOULES", - "nomCommune": "ARGOULES" + "codePostal": "82230", + "codeCommune": "82098", + "libelleAcheminement": "LEOJAC", + "nomCommune": "LEOJAC" }, { - "codePostal": "89110", - "codeCommune": "89281", - "libelleAcheminement": "LES ORMES", - "nomCommune": "LES ORMES" + "codePostal": "86430", + "codeCommune": "86172", + "libelleAcheminement": "MOUTERRE SUR BLOURDE", + "nomCommune": "MOUTERRE SUR BLOURDE" }, { - "codePostal": "80910", - "codeCommune": "80031", - "libelleAcheminement": "ARVILLERS", - "nomCommune": "ARVILLERS" + "codePostal": "82210", + "codeCommune": "82109", + "libelleAcheminement": "MERLES", + "nomCommune": "MERLES" }, { - "codePostal": "89560", - "codeCommune": "89283", - "libelleAcheminement": "OUANNE", - "nomCommune": "OUANNE" + "codePostal": "86310", + "codeCommune": "86175", + "libelleAcheminement": "NALLIERS", + "nomCommune": "NALLIERS" }, { - "codePostal": "80800", - "codeCommune": "80036", - "libelleAcheminement": "AUBIGNY", - "nomCommune": "AUBIGNY" + "codePostal": "82190", + "codeCommune": "82111", + "libelleAcheminement": "MIRAMONT DE QUERCY", + "nomCommune": "MIRAMONT DE QUERCY" }, { - "codePostal": "89240", - "codeCommune": "89286", - "libelleAcheminement": "PARLY", - "nomCommune": "PARLY" + "codePostal": "86170", + "codeCommune": "86177", + "libelleAcheminement": "NEUVILLE DE POITOU", + "nomCommune": "NEUVILLE DE POITOU" }, { - "codePostal": "80140", - "codeCommune": "80040", - "libelleAcheminement": "AUMATRE", - "nomCommune": "AUMATRE" + "codePostal": "82230", + "codeCommune": "82115", + "libelleAcheminement": "MONCLAR DE QUERCY", + "nomCommune": "MONCLAR DE QUERCY" }, { - "codePostal": "89000", - "codeCommune": "89295", - "libelleAcheminement": "PERRIGNY", - "nomCommune": "PERRIGNY" + "codePostal": "86340", + "codeCommune": "86178", + "libelleAcheminement": "NIEUIL L ESPOIR", + "nomCommune": "NIEUIL L ESPOIR" }, { - "codePostal": "80640", - "codeCommune": "80041", - "libelleAcheminement": "AUMONT", - "nomCommune": "AUMONT" + "codePostal": "82100", + "codeCommune": "82118", + "libelleAcheminement": "MONTAIN", + "nomCommune": "MONTAIN" }, { - "codePostal": "89460", - "codeCommune": "89314", - "libelleAcheminement": "PREGILBERT", - "nomCommune": "PREGILBERT" + "codePostal": "86340", + "codeCommune": "86180", + "libelleAcheminement": "NOUAILLE MAUPERTUIS", + "nomCommune": "NOUAILLE MAUPERTUIS" }, { - "codePostal": "80600", - "codeCommune": "80044", - "libelleAcheminement": "AUTHIEULE", - "nomCommune": "AUTHIEULE" + "codePostal": "82400", + "codeCommune": "82130", + "libelleAcheminement": "MONTJOI", + "nomCommune": "MONTJOI" }, { - "codePostal": "89800", - "codeCommune": "89315", - "libelleAcheminement": "PREHY", - "nomCommune": "PREHY" + "codePostal": "86450", + "codeCommune": "86193", + "libelleAcheminement": "PLEUMARTIN", + "nomCommune": "PLEUMARTIN" }, { - "codePostal": "80300", - "codeCommune": "80045", - "libelleAcheminement": "AUTHUILLE", - "nomCommune": "AUTHUILLE" + "codePostal": "82800", + "codeCommune": "82134", + "libelleAcheminement": "NEGREPELISSE", + "nomCommune": "NEGREPELISSE" }, { - "codePostal": "89200", - "codeCommune": "89316", - "libelleAcheminement": "PROVENCY", - "nomCommune": "PROVENCY" + "codePostal": "86260", + "codeCommune": "86202", + "libelleAcheminement": "LA PUYE", + "nomCommune": "LA PUYE" }, { - "codePostal": "80370", - "codeCommune": "80060", - "libelleAcheminement": "BEALCOURT", - "nomCommune": "BEALCOURT" + "codePostal": "82370", + "codeCommune": "82136", + "libelleAcheminement": "ORGUEIL", + "nomCommune": "ORGUEIL" }, { - "codePostal": "89390", - "codeCommune": "89321", - "libelleAcheminement": "RAVIERES", - "nomCommune": "RAVIERES" + "codePostal": "86150", + "codeCommune": "86203", + "libelleAcheminement": "QUEAUX", + "nomCommune": "QUEAUX" }, { - "codePostal": "80110", - "codeCommune": "80064", - "libelleAcheminement": "BEAUCOURT EN SANTERRE", - "nomCommune": "BEAUCOURT EN SANTERRE" + "codePostal": "82340", + "codeCommune": "82139", + "libelleAcheminement": "LE PIN", + "nomCommune": "LE PIN" }, { - "codePostal": "89170", - "codeCommune": "89325", - "libelleAcheminement": "RONCHERES", - "nomCommune": "RONCHERES" + "codePostal": "86270", + "codeCommune": "86207", + "libelleAcheminement": "LA ROCHE POSAY", + "nomCommune": "LA ROCHE POSAY" }, { - "codePostal": "80260", - "codeCommune": "80066", - "libelleAcheminement": "BEAUCOURT SUR L HALLUE", - "nomCommune": "BEAUCOURT SUR L HALLUE" + "codePostal": "82170", + "codeCommune": "82142", + "libelleAcheminement": "POMPIGNAN", + "nomCommune": "POMPIGNAN" }, { - "codePostal": "89500", - "codeCommune": "89327", - "libelleAcheminement": "ROUSSON", - "nomCommune": "ROUSSON" + "codePostal": "86340", + "codeCommune": "86209", + "libelleAcheminement": "ROCHES PREMARIE ANDILLE", + "nomCommune": "ROCHES PREMARIE ANDILLE" }, { - "codePostal": "80870", - "codeCommune": "80076", - "libelleAcheminement": "BEHEN", - "nomCommune": "BEHEN" + "codePostal": "82800", + "codeCommune": "82145", + "libelleAcheminement": "PUYGAILLARD DE QUERCY", + "nomCommune": "PUYGAILLARD DE QUERCY" }, { - "codePostal": "89420", - "codeCommune": "89333", - "libelleAcheminement": "ST ANDRE EN TERRE PLAINE", - "nomCommune": "ST ANDRE EN TERRE PLAINE" + "codePostal": "86480", + "codeCommune": "86213", + "libelleAcheminement": "ROUILLE", + "nomCommune": "ROUILLE" }, { - "codePostal": "80310", - "codeCommune": "80082", - "libelleAcheminement": "BELLOY SUR SOMME", - "nomCommune": "BELLOY SUR SOMME" + "codePostal": "82440", + "codeCommune": "82149", + "libelleAcheminement": "REALVILLE", + "nomCommune": "REALVILLE" }, { - "codePostal": "89100", - "codeCommune": "89342", - "libelleAcheminement": "ST DENIS LES SENS", - "nomCommune": "ST DENIS LES SENS" + "codePostal": "86230", + "codeCommune": "86217", + "libelleAcheminement": "ST CHRISTOPHE", + "nomCommune": "ST CHRISTOPHE" }, { - "codePostal": "80290", - "codeCommune": "80083", - "libelleAcheminement": "BERGICOURT", - "nomCommune": "BERGICOURT" + "codePostal": "82150", + "codeCommune": "82151", + "libelleAcheminement": "ROQUECOR", + "nomCommune": "ROQUECOR" }, { - "codePostal": "89170", - "codeCommune": "89344", - "libelleAcheminement": "ST FARGEAU", - "nomCommune": "ST FARGEAU" + "codePostal": "86140", + "codeCommune": "86221", + "libelleAcheminement": "ST GENEST D AMBIERE", + "nomCommune": "ST GENEST D AMBIERE" }, { - "codePostal": "80290", - "codeCommune": "80098", - "libelleAcheminement": "BETTEMBOS", - "nomCommune": "BETTEMBOS" + "codePostal": "82140", + "codeCommune": "82155", + "libelleAcheminement": "ST ANTONIN NOBLE VAL", + "nomCommune": "ST ANTONIN NOBLE VAL" }, { - "codePostal": "89600", - "codeCommune": "89345", - "libelleAcheminement": "ST FLORENTIN", - "nomCommune": "ST FLORENTIN" + "codePostal": "86230", + "codeCommune": "86224", + "libelleAcheminement": "ST GERVAIS LES TROIS CLOCHERS", + "nomCommune": "ST GERVAIS LES TROIS CLOCHERS" }, { - "codePostal": "80270", - "codeCommune": "80099", - "libelleAcheminement": "BETTENCOURT RIVIERE", - "nomCommune": "BETTENCOURT RIVIERE" + "codePostal": "82150", + "codeCommune": "82157", + "libelleAcheminement": "ST BEAUZEIL", + "nomCommune": "ST BEAUZEIL" }, { - "codePostal": "89630", - "codeCommune": "89347", - "libelleAcheminement": "ST GERMAIN DES CHAMPS", - "nomCommune": "ST GERMAIN DES CHAMPS" + "codePostal": "86330", + "codeCommune": "86225", + "libelleAcheminement": "ST JEAN DE SAUVES", + "nomCommune": "ST JEAN DE SAUVES" }, { - "codePostal": "80200", - "codeCommune": "80102", - "libelleAcheminement": "BIACHES", - "nomCommune": "BIACHES" + "codePostal": "82340", + "codeCommune": "82158", + "libelleAcheminement": "ST CIRICE", + "nomCommune": "ST CIRICE" }, { - "codePostal": "89450", - "codeCommune": "89364", - "libelleAcheminement": "ST PERE", - "nomCommune": "ST PERE" + "codePostal": "86800", + "codeCommune": "86226", + "libelleAcheminement": "ST JULIEN L ARS", + "nomCommune": "ST JULIEN L ARS" }, { - "codePostal": "80190", - "codeCommune": "80105", - "libelleAcheminement": "BILLANCOURT", - "nomCommune": "BILLANCOURT" + "codePostal": "82120", + "codeCommune": "82163", + "libelleAcheminement": "ST JEAN DU BOUZET", + "nomCommune": "ST JEAN DU BOUZET" }, { - "codePostal": "89520", - "codeCommune": "89367", - "libelleAcheminement": "SAINTS EN PUISAYE", - "nomCommune": "SAINTS EN PUISAYE" + "codePostal": "86300", + "codeCommune": "86233", + "libelleAcheminement": "VALDIVIENNE", + "nomCommune": "VALDIVIENNE" }, { - "codePostal": "80230", - "codeCommune": "80110", - "libelleAcheminement": "BOISMONT", - "nomCommune": "BOISMONT" + "codePostal": "82400", + "codeCommune": "82175", + "libelleAcheminement": "ST VINCENT LESPINASSE", + "nomCommune": "ST VINCENT LESPINASSE" }, { - "codePostal": "89420", - "codeCommune": "89375", - "libelleAcheminement": "SANTIGNY", - "nomCommune": "SANTIGNY" + "codePostal": "86160", + "codeCommune": "86235", + "libelleAcheminement": "ST MAURICE LA CLOUERE", + "nomCommune": "ST MAURICE LA CLOUERE" }, { - "codePostal": "80910", - "codeCommune": "80116", - "libelleAcheminement": "BOUCHOIR", - "nomCommune": "BOUCHOIR" + "codePostal": "82110", + "codeCommune": "82183", + "libelleAcheminement": "TREJOULS", + "nomCommune": "TREJOULS" }, { - "codePostal": "89700", - "codeCommune": "89393", - "libelleAcheminement": "SERRIGNY", - "nomCommune": "SERRIGNY" + "codePostal": "86250", + "codeCommune": "86242", + "libelleAcheminement": "ST ROMAIN", + "nomCommune": "ST ROMAIN" }, { - "codePostal": "80540", - "codeCommune": "80119", - "libelleAcheminement": "BOUGAINVILLE", - "nomCommune": "BOUGAINVILLE" + "codePostal": "82150", + "codeCommune": "82185", + "libelleAcheminement": "VALEILLES", + "nomCommune": "VALEILLES" }, { - "codePostal": "89110", - "codeCommune": "89397", - "libelleAcheminement": "SOMMECAISE", - "nomCommune": "SOMMECAISE" + "codePostal": "86100", + "codeCommune": "86245", + "libelleAcheminement": "SENILLE ST SAUVEUR", + "nomCommune": "SENILLE ST SAUVEUR" }, { - "codePostal": "80220", - "codeCommune": "80126", - "libelleAcheminement": "BOUTTENCOURT", - "nomCommune": "BOUTTENCOURT" + "codePostal": "83600", + "codeCommune": "83001", + "libelleAcheminement": "LES ADRETS DE L ESTEREL", + "nomCommune": "LES ADRETS DE L ESTEREL" }, { - "codePostal": "89570", - "codeCommune": "89398", - "libelleAcheminement": "SORMERY", - "nomCommune": "SORMERY" + "codePostal": "86310", + "codeCommune": "86246", + "libelleAcheminement": "ST SAVIN", + "nomCommune": "ST SAVIN" }, { - "codePostal": "80540", - "codeCommune": "80142", - "libelleAcheminement": "BRIQUEMESNIL FLOXICOURT", - "nomCommune": "BRIQUEMESNIL FLOXICOURT" + "codePostal": "83840", + "codeCommune": "83020", + "libelleAcheminement": "LE BOURGUET", + "nomCommune": "LE BOURGUET" }, { - "codePostal": "89560", - "codeCommune": "89405", - "libelleAcheminement": "LES HAUTS DE FORTERRE", - "nomCommune": "LES HAUTS DE FORTERRE" + "codePostal": "86600", + "codeCommune": "86253", + "libelleAcheminement": "SANXAY", + "nomCommune": "SANXAY" }, { - "codePostal": "80430", - "codeCommune": "80143", - "libelleAcheminement": "BROCOURT", - "nomCommune": "BROCOURT" + "codePostal": "83170", + "codeCommune": "83023", + "libelleAcheminement": "BRIGNOLES", + "nomCommune": "BRIGNOLES" }, { - "codePostal": "89450", - "codeCommune": "89409", - "libelleAcheminement": "THAROISEAU", - "nomCommune": "THAROISEAU" + "codePostal": "86500", + "codeCommune": "86254", + "libelleAcheminement": "SAULGE", + "nomCommune": "SAULGE" }, { - "codePostal": "80220", - "codeCommune": "80148", - "libelleAcheminement": "BUIGNY LES GAMACHES", - "nomCommune": "BUIGNY LES GAMACHES" + "codePostal": "83340", + "codeCommune": "83026", + "libelleAcheminement": "CABASSE", + "nomCommune": "CABASSE" }, { - "codePostal": "89320", - "codeCommune": "89411", - "libelleAcheminement": "LES VALLEES DE LA VANNE", - "nomCommune": "LES VALLEES DE LA VANNE" + "codePostal": "86250", + "codeCommune": "86266", + "libelleAcheminement": "SURIN", + "nomCommune": "SURIN" }, { - "codePostal": "80132", - "codeCommune": "80149", - "libelleAcheminement": "BUIGNY ST MACLOU", - "nomCommune": "BUIGNY ST MACLOU" + "codePostal": "83440", + "codeCommune": "83029", + "libelleAcheminement": "CALLIAN", + "nomCommune": "CALLIAN" }, { - "codePostal": "89430", - "codeCommune": "89413", - "libelleAcheminement": "THOREY", - "nomCommune": "THOREY" + "codePostal": "86540", + "codeCommune": "86272", + "libelleAcheminement": "THURE", + "nomCommune": "THURE" }, { - "codePostal": "80560", - "codeCommune": "80153", - "libelleAcheminement": "BUS LES ARTOIS", - "nomCommune": "BUS LES ARTOIS" + "codePostal": "83570", + "codeCommune": "83032", + "libelleAcheminement": "CARCES", + "nomCommune": "CARCES" }, { - "codePostal": "89520", - "codeCommune": "89416", - "libelleAcheminement": "THURY", - "nomCommune": "THURY" + "codePostal": "86230", + "codeCommune": "86275", + "libelleAcheminement": "USSEAU", + "nomCommune": "USSEAU" }, { - "codePostal": "80450", - "codeCommune": "80164", - "libelleAcheminement": "CAMON", - "nomCommune": "CAMON" + "codePostal": "83320", + "codeCommune": "83034", + "libelleAcheminement": "CARQUEIRANNE", + "nomCommune": "CARQUEIRANNE" }, { - "codePostal": "89520", - "codeCommune": "89420", - "libelleAcheminement": "TREIGNY PERREUSE STE COLOMBE", - "nomCommune": "TREIGNY PERREUSE STE COLOMBE" + "codePostal": "86220", + "codeCommune": "86279", + "libelleAcheminement": "VAUX SUR VIENNE", + "nomCommune": "VAUX SUR VIENNE" }, { - "codePostal": "80290", - "codeCommune": "80179", - "libelleAcheminement": "CAULIERES", - "nomCommune": "CAULIERES" + "codePostal": "83330", + "codeCommune": "83035", + "libelleAcheminement": "LE CASTELLET", + "nomCommune": "LE CASTELLET" }, { - "codePostal": "89230", - "codeCommune": "89437", - "libelleAcheminement": "VENOUSE", - "nomCommune": "VENOUSE" + "codePostal": "86380", + "codeCommune": "86281", + "libelleAcheminement": "ST MARTIN LA PALLU", + "nomCommune": "ST MARTIN LA PALLU" }, { - "codePostal": "80700", - "codeCommune": "80189", - "libelleAcheminement": "LA CHAVATTE", - "nomCommune": "LA CHAVATTE" + "codePostal": "83170", + "codeCommune": "83037", + "libelleAcheminement": "LA CELLE", + "nomCommune": "LA CELLE" }, { - "codePostal": "89150", - "codeCommune": "89450", - "libelleAcheminement": "VILLEBOUGIS", - "nomCommune": "VILLEBOUGIS" + "codePostal": "86380", + "codeCommune": "86281", + "libelleAcheminement": "ST MARTIN LA PALLU", + "nomCommune": "ST MARTIN LA PALLU" }, { - "codePostal": "80340", - "codeCommune": "80194", - "libelleAcheminement": "CHUIGNES", - "nomCommune": "CHUIGNES" + "codePostal": "83610", + "codeCommune": "83043", + "libelleAcheminement": "COLLOBRIERES", + "nomCommune": "COLLOBRIERES" }, { - "codePostal": "89320", - "codeCommune": "89451", - "libelleAcheminement": "VILLECHETIVE", - "nomCommune": "VILLECHETIVE" + "codePostal": "86260", + "codeCommune": "86288", + "libelleAcheminement": "VICQ SUR GARTEMPE", + "nomCommune": "VICQ SUR GARTEMPE" }, { - "codePostal": "80370", - "codeCommune": "80208", - "libelleAcheminement": "CONTEVILLE", - "nomCommune": "CONTEVILLE" + "codePostal": "83840", + "codeCommune": "83044", + "libelleAcheminement": "COMPS SUR ARTUBY", + "nomCommune": "COMPS SUR ARTUBY" }, { - "codePostal": "89350", - "codeCommune": "89462", - "libelleAcheminement": "VILLENEUVE LES GENETS", - "nomCommune": "VILLENEUVE LES GENETS" + "codePostal": "86340", + "codeCommune": "86290", + "libelleAcheminement": "LA VILLEDIEU DU CLAIN", + "nomCommune": "LA VILLEDIEU DU CLAIN" }, { - "codePostal": "80800", - "codeCommune": "80212", - "libelleAcheminement": "CORBIE", - "nomCommune": "CORBIE" + "codePostal": "83330", + "codeCommune": "83053", + "libelleAcheminement": "EVENOS", + "nomCommune": "EVENOS" }, { - "codePostal": "89230", - "codeCommune": "89463", - "libelleAcheminement": "VILLENEUVE ST SALVES", - "nomCommune": "VILLENEUVE ST SALVES" + "codePostal": "86310", + "codeCommune": "86291", + "libelleAcheminement": "VILLEMORT", + "nomCommune": "VILLEMORT" }, { - "codePostal": "80300", - "codeCommune": "80216", - "libelleAcheminement": "COURCELETTE", - "nomCommune": "COURCELETTE" + "codePostal": "83830", + "codeCommune": "83056", + "libelleAcheminement": "FIGANIERES", + "nomCommune": "FIGANIERES" }, { - "codePostal": "89140", - "codeCommune": "89467", - "libelleAcheminement": "VILLETHIERRY", - "nomCommune": "VILLETHIERRY" + "codePostal": "86580", + "codeCommune": "86297", + "libelleAcheminement": "VOUNEUIL SOUS BIARD", + "nomCommune": "VOUNEUIL SOUS BIARD" }, { - "codePostal": "80290", - "codeCommune": "80218", - "libelleAcheminement": "COURCELLES SOUS MOYENCOURT", - "nomCommune": "COURCELLES SOUS MOYENCOURT" + "codePostal": "83136", + "codeCommune": "83059", + "libelleAcheminement": "FORCALQUEIRET", + "nomCommune": "FORCALQUEIRET" }, { - "codePostal": "89800", - "codeCommune": "89477", - "libelleAcheminement": "VILLY", - "nomCommune": "VILLY" + "codePostal": "86170", + "codeCommune": "86299", + "libelleAcheminement": "VOUZAILLES", + "nomCommune": "VOUZAILLES" }, { - "codePostal": "80190", - "codeCommune": "80224", - "libelleAcheminement": "CRESSY OMENCOURT", - "nomCommune": "CRESSY OMENCOURT" + "codePostal": "83670", + "codeCommune": "83060", + "libelleAcheminement": "FOX AMPHOUX", + "nomCommune": "FOX AMPHOUX" }, { - "codePostal": "89290", - "codeCommune": "89478", - "libelleAcheminement": "VINCELLES", - "nomCommune": "VINCELLES" + "codePostal": "87700", + "codeCommune": "87001", + "libelleAcheminement": "AIXE SUR VIENNE", + "nomCommune": "AIXE SUR VIENNE" }, { - "codePostal": "80190", - "codeCommune": "80230", - "libelleAcheminement": "CURCHY", - "nomCommune": "CURCHY" + "codePostal": "83600", + "codeCommune": "83061", + "libelleAcheminement": "FREJUS", + "nomCommune": "FREJUS" }, { - "codePostal": "89270", - "codeCommune": "89485", - "libelleAcheminement": "VOUTENAY SUR CURE", - "nomCommune": "VOUTENAY SUR CURE" + "codePostal": "87240", + "codeCommune": "87002", + "libelleAcheminement": "AMBAZAC", + "nomCommune": "AMBAZAC" }, { - "codePostal": "80700", - "codeCommune": "80232", - "libelleAcheminement": "DAMERY", - "nomCommune": "DAMERY" + "codePostal": "83560", + "codeCommune": "83066", + "libelleAcheminement": "GINASSERVIS", + "nomCommune": "GINASSERVIS" }, { - "codePostal": "90800", - "codeCommune": "90004", - "libelleAcheminement": "ARGIESANS", - "nomCommune": "ARGIESANS" + "codePostal": "87120", + "codeCommune": "87004", + "libelleAcheminement": "AUGNE", + "nomCommune": "AUGNE" }, { - "codePostal": "80700", - "codeCommune": "80233", - "libelleAcheminement": "DANCOURT POPINCOURT", - "nomCommune": "DANCOURT POPINCOURT" + "codePostal": "83400", + "codeCommune": "83069", + "libelleAcheminement": "HYERES", + "nomCommune": "HYERES" }, { - "codePostal": "90140", - "codeCommune": "90018", - "libelleAcheminement": "BREBOTTE", - "nomCommune": "BREBOTTE" + "codePostal": "87120", + "codeCommune": "87009", + "libelleAcheminement": "BEAUMONT DU LAC", + "nomCommune": "BEAUMONT DU LAC" }, { - "codePostal": "80110", - "codeCommune": "80237", - "libelleAcheminement": "DEMUIN", - "nomCommune": "DEMUIN" + "codePostal": "83980", + "codeCommune": "83070", + "libelleAcheminement": "LE LAVANDOU", + "nomCommune": "LE LAVANDOU" }, { - "codePostal": "90160", - "codeCommune": "90034", - "libelleAcheminement": "DENNEY", - "nomCommune": "DENNEY" + "codePostal": "87340", + "codeCommune": "87016", + "libelleAcheminement": "LES BILLANGES", + "nomCommune": "LES BILLANGES" }, { - "codePostal": "80200", - "codeCommune": "80239", - "libelleAcheminement": "DEVISE", - "nomCommune": "DEVISE" + "codePostal": "83840", + "codeCommune": "83074", + "libelleAcheminement": "LA MARTRE", + "nomCommune": "LA MARTRE" }, { - "codePostal": "90400", - "codeCommune": "90035", - "libelleAcheminement": "DORANS", - "nomCommune": "DORANS" + "codePostal": "87230", + "codeCommune": "87027", + "libelleAcheminement": "BUSSIERE GALANT", + "nomCommune": "BUSSIERE GALANT" }, { - "codePostal": "80110", - "codeCommune": "80242", - "libelleAcheminement": "DOMART SUR LA LUCE", - "nomCommune": "DOMART SUR LA LUCE" + "codePostal": "83670", + "codeCommune": "83084", + "libelleAcheminement": "MONTMEYAN", + "nomCommune": "MONTMEYAN" }, { - "codePostal": "90300", - "codeCommune": "90037", - "libelleAcheminement": "ELOIE", - "nomCommune": "ELOIE" + "codePostal": "87320", + "codeCommune": "87028", + "libelleAcheminement": "VAL D OIRE ET GARTEMPE", + "nomCommune": "VAL D OIRE ET GARTEMPE" }, { - "codePostal": "80140", - "codeCommune": "80251", - "libelleAcheminement": "DOUDELAINVILLE", - "nomCommune": "DOUDELAINVILLE" + "codePostal": "83920", + "codeCommune": "83085", + "libelleAcheminement": "LA MOTTE", + "nomCommune": "LA MOTTE" }, { - "codePostal": "90200", - "codeCommune": "90052", - "libelleAcheminement": "GIROMAGNY", - "nomCommune": "GIROMAGNY" + "codePostal": "87140", + "codeCommune": "87033", + "libelleAcheminement": "CHAMBORET", + "nomCommune": "CHAMBORET" }, { - "codePostal": "80640", - "codeCommune": "80259", - "libelleAcheminement": "DROMESNIL", - "nomCommune": "DROMESNIL" + "codePostal": "83390", + "codeCommune": "83091", + "libelleAcheminement": "PIERREFEU DU VAR", + "nomCommune": "PIERREFEU DU VAR" }, { - "codePostal": "90360", - "codeCommune": "90058", - "libelleAcheminement": "LACHAPELLE SOUS ROUGEMONT", - "nomCommune": "LACHAPELLE SOUS ROUGEMONT" + "codePostal": "87230", + "codeCommune": "87036", + "libelleAcheminement": "CHAMPSAC", + "nomCommune": "CHAMPSAC" }, { - "codePostal": "80480", - "codeCommune": "80261", - "libelleAcheminement": "DURY", - "nomCommune": "DURY" + "codePostal": "83640", + "codeCommune": "83093", + "libelleAcheminement": "PLAN D AUPS STE BAUME", + "nomCommune": "PLAN D AUPS STE BAUME" }, { - "codePostal": "90170", - "codeCommune": "90061", - "libelleAcheminement": "LAMADELEINE VAL DES ANGES", - "nomCommune": "LAMADELEINE VAL DES ANGES" + "codePostal": "87290", + "codeCommune": "87041", + "libelleAcheminement": "CHATEAUPONSAC", + "nomCommune": "CHATEAUPONSAC" }, { - "codePostal": "80700", - "codeCommune": "80263", - "libelleAcheminement": "L ECHELLE ST AURIN", - "nomCommune": "L ECHELLE ST AURIN" + "codePostal": "83670", + "codeCommune": "83095", + "libelleAcheminement": "PONTEVES", + "nomCommune": "PONTEVES" }, { - "codePostal": "90150", - "codeCommune": "90062", - "libelleAcheminement": "LARIVIERE", - "nomCommune": "LARIVIERE" + "codePostal": "87400", + "codeCommune": "87042", + "libelleAcheminement": "LE CHATENET EN DOGNON", + "nomCommune": "LE CHATENET EN DOGNON" }, { - "codePostal": "80200", - "codeCommune": "80267", - "libelleAcheminement": "ENNEMAIN", - "nomCommune": "ENNEMAIN" + "codePostal": "83630", + "codeCommune": "83102", + "libelleAcheminement": "REGUSSE", + "nomCommune": "REGUSSE" }, { - "codePostal": "90200", - "codeCommune": "90065", - "libelleAcheminement": "LEPUIX", - "nomCommune": "LEPUIX" + "codePostal": "87520", + "codeCommune": "87045", + "libelleAcheminement": "CIEUX", + "nomCommune": "CIEUX" }, { - "codePostal": "80740", - "codeCommune": "80271", - "libelleAcheminement": "EPEHY", - "nomCommune": "EPEHY" + "codePostal": "83200", + "codeCommune": "83103", + "libelleAcheminement": "LE REVEST LES EAUX", + "nomCommune": "LE REVEST LES EAUX" }, { - "codePostal": "90130", - "codeCommune": "90077", - "libelleAcheminement": "PETIT CROIX", - "nomCommune": "PETIT CROIX" + "codePostal": "87500", + "codeCommune": "87049", + "libelleAcheminement": "COUSSAC BONNEVAL", + "nomCommune": "COUSSAC BONNEVAL" }, { - "codePostal": "80360", - "codeCommune": "80275", - "libelleAcheminement": "EQUANCOURT", - "nomCommune": "EQUANCOURT" + "codePostal": "83560", + "codeCommune": "83104", + "libelleAcheminement": "RIANS", + "nomCommune": "RIANS" }, { - "codePostal": "90140", - "codeCommune": "90083", - "libelleAcheminement": "RECOUVRANCE", - "nomCommune": "RECOUVRANCE" + "codePostal": "87150", + "codeCommune": "87054", + "libelleAcheminement": "CUSSAC", + "nomCommune": "CUSSAC" }, { - "codePostal": "80580", - "codeCommune": "80282", - "libelleAcheminement": "ERONDELLE", - "nomCommune": "ERONDELLE" + "codePostal": "83136", + "codeCommune": "83106", + "libelleAcheminement": "ROCBARON", + "nomCommune": "ROCBARON" }, { - "codePostal": "90100", - "codeCommune": "90101", - "libelleAcheminement": "VELLESCOT", - "nomCommune": "VELLESCOT" + "codePostal": "87190", + "codeCommune": "87057", + "libelleAcheminement": "DOMPIERRE LES EGLISES", + "nomCommune": "DOMPIERRE LES EGLISES" }, { - "codePostal": "80340", - "codeCommune": "80295", - "libelleAcheminement": "ETINEHEM MERICOURT", - "nomCommune": "ETINEHEM MERICOURT" + "codePostal": "83120", + "codeCommune": "83115", + "libelleAcheminement": "STE MAXIME", + "nomCommune": "STE MAXIME" }, { - "codePostal": "90400", - "codeCommune": "90104", - "libelleAcheminement": "VEZELOIS", - "nomCommune": "VEZELOIS" + "codePostal": "87520", + "codeCommune": "87078", + "libelleAcheminement": "JAVERDAT", + "nomCommune": "JAVERDAT" }, { - "codePostal": "80500", - "codeCommune": "80302", - "libelleAcheminement": "FAVEROLLES", - "nomCommune": "FAVEROLLES" + "codePostal": "83470", + "codeCommune": "83116", + "libelleAcheminement": "ST MAXIMIN LA STE BAUME", + "nomCommune": "ST MAXIMIN LA STE BAUME" }, { - "codePostal": "91670", - "codeCommune": "91016", - "libelleAcheminement": "ANGERVILLE", - "nomCommune": "ANGERVILLE" + "codePostal": "87440", + "codeCommune": "87091", + "libelleAcheminement": "MAISONNAIS SUR TARDOIRE", + "nomCommune": "MAISONNAIS SUR TARDOIRE" }, { - "codePostal": "80120", - "codeCommune": "80303", - "libelleAcheminement": "FAVIERES", - "nomCommune": "FAVIERES" + "codePostal": "83530", + "codeCommune": "83118", + "libelleAcheminement": "ST RAPHAEL", + "nomCommune": "ST RAPHAEL" }, { - "codePostal": "91610", - "codeCommune": "91045", - "libelleAcheminement": "BALLANCOURT SUR ESSONNE", - "nomCommune": "BALLANCOURT SUR ESSONNE" + "codePostal": "87330", + "codeCommune": "87097", + "libelleAcheminement": "VAL D ISSOIRE", + "nomCommune": "VAL D ISSOIRE" }, { - "codePostal": "80200", - "codeCommune": "80304", - "libelleAcheminement": "FAY", - "nomCommune": "FAY" + "codePostal": "83470", + "codeCommune": "83125", + "libelleAcheminement": "SEILLONS SOURCE D ARGENS", + "nomCommune": "SEILLONS SOURCE D ARGENS" }, { - "codePostal": "91150", - "codeCommune": "91075", - "libelleAcheminement": "BOIS HERPIN", - "nomCommune": "BOIS HERPIN" + "codePostal": "87330", + "codeCommune": "87097", + "libelleAcheminement": "VAL D ISSOIRE", + "nomCommune": "VAL D ISSOIRE" }, { - "codePostal": "80750", - "codeCommune": "80310", - "libelleAcheminement": "FIENVILLERS", - "nomCommune": "FIENVILLERS" + "codePostal": "83670", + "codeCommune": "83135", + "libelleAcheminement": "TAVERNES", + "nomCommune": "TAVERNES" }, { - "codePostal": "91070", - "codeCommune": "91086", - "libelleAcheminement": "BONDOUFLE", - "nomCommune": "BONDOUFLE" + "codePostal": "87440", + "codeCommune": "87115", + "libelleAcheminement": "PENSOL", + "nomCommune": "PENSOL" }, { - "codePostal": "80360", - "codeCommune": "80312", - "libelleAcheminement": "FINS", - "nomCommune": "FINS" + "codePostal": "83200", + "codeCommune": "83137", + "libelleAcheminement": "TOULON", + "nomCommune": "TOULON" }, { - "codePostal": "91650", - "codeCommune": "91105", - "libelleAcheminement": "BREUILLET", - "nomCommune": "BREUILLET" + "codePostal": "87470", + "codeCommune": "87117", + "libelleAcheminement": "PEYRAT LE CHATEAU", + "nomCommune": "PEYRAT LE CHATEAU" }, { - "codePostal": "80260", - "codeCommune": "80316", - "libelleAcheminement": "FLESSELLES", - "nomCommune": "FLESSELLES" + "codePostal": "83440", + "codeCommune": "83138", + "libelleAcheminement": "TOURRETTES", + "nomCommune": "TOURRETTES" }, { - "codePostal": "91650", - "codeCommune": "91106", - "libelleAcheminement": "BREUX JOUY", - "nomCommune": "BREUX JOUY" + "codePostal": "87510", + "codeCommune": "87118", + "libelleAcheminement": "PEYRILHAC", + "nomCommune": "PEYRILHAC" }, { - "codePostal": "80560", - "codeCommune": "80329", - "libelleAcheminement": "FORCEVILLE EN AMIENOIS", - "nomCommune": "FORCEVILLE" + "codePostal": "83560", + "codeCommune": "83146", + "libelleAcheminement": "LA VERDIERE", + "nomCommune": "LA VERDIERE" }, { - "codePostal": "91800", - "codeCommune": "91114", - "libelleAcheminement": "BRUNOY", - "nomCommune": "BRUNOY" + "codePostal": "87640", + "codeCommune": "87122", + "libelleAcheminement": "RAZES", + "nomCommune": "RAZES" }, { - "codePostal": "80160", - "codeCommune": "80334", - "libelleAcheminement": "FOSSEMANANT", - "nomCommune": "FOSSEMANANT" + "codePostal": "83630", + "codeCommune": "83147", + "libelleAcheminement": "VERIGNON", + "nomCommune": "VERIGNON" }, { - "codePostal": "91720", - "codeCommune": "91121", - "libelleAcheminement": "BUNO BONNEVAUX", - "nomCommune": "BUNO BONNEVAUX" + "codePostal": "87570", + "codeCommune": "87125", + "libelleAcheminement": "RILHAC RANCON", + "nomCommune": "RILHAC RANCON" }, { - "codePostal": "80170", - "codeCommune": "80339", - "libelleAcheminement": "FOUQUESCOURT", - "nomCommune": "FOUQUESCOURT" + "codePostal": "83170", + "codeCommune": "83151", + "libelleAcheminement": "VINS SUR CARAMY", + "nomCommune": "VINS SUR CARAMY" }, { - "codePostal": "91440", - "codeCommune": "91122", - "libelleAcheminement": "BURES SUR YVETTE", - "nomCommune": "BURES SUR YVETTE" + "codePostal": "87800", + "codeCommune": "87127", + "libelleAcheminement": "LA ROCHE L ABEILLE", + "nomCommune": "LA ROCHE L ABEILLE" }, { - "codePostal": "80290", - "codeCommune": "80357", - "libelleAcheminement": "FRESNOY AU VAL", - "nomCommune": "FRESNOY AU VAL" + "codePostal": "83430", + "codeCommune": "83153", + "libelleAcheminement": "ST MANDRIER SUR MER", + "nomCommune": "ST MANDRIER SUR MER" }, { - "codePostal": "91560", - "codeCommune": "91191", - "libelleAcheminement": "CROSNE", - "nomCommune": "CROSNE" + "codePostal": "87310", + "codeCommune": "87135", + "libelleAcheminement": "ST AUVENT", + "nomCommune": "ST AUVENT" }, { - "codePostal": "80370", - "codeCommune": "80369", - "libelleAcheminement": "FROHEN SUR AUTHIE", - "nomCommune": "FROHEN SUR AUTHIE" + "codePostal": "83510", + "codeCommune": "83154", + "libelleAcheminement": "ST ANTONIN DU VAR", + "nomCommune": "ST ANTONIN DU VAR" }, { - "codePostal": "91080", - "codeCommune": "91228", - "libelleAcheminement": "EVRY COURCOURONNES", - "nomCommune": "EVRY COURCOURONNES" + "codePostal": "87200", + "codeCommune": "87140", + "libelleAcheminement": "ST BRICE SUR VIENNE", + "nomCommune": "ST BRICE SUR VIENNE" }, { - "codePostal": "80600", - "codeCommune": "80377", - "libelleAcheminement": "GEZAINCOURT", - "nomCommune": "GEZAINCOURT" + "codePostal": "84400", + "codeCommune": "84006", + "libelleAcheminement": "AURIBEAU", + "nomCommune": "AURIBEAU" }, { - "codePostal": "91690", - "codeCommune": "91240", - "libelleAcheminement": "FONTAINE LA RIVIERE", - "nomCommune": "FONTAINE LA RIVIERE" + "codePostal": "87510", + "codeCommune": "87143", + "libelleAcheminement": "ST GENCE", + "nomCommune": "ST GENCE" }, { - "codePostal": "80300", - "codeCommune": "80384", - "libelleAcheminement": "GRANDCOURT", - "nomCommune": "GRANDCOURT" + "codePostal": "84340", + "codeCommune": "84015", + "libelleAcheminement": "BEAUMONT DU VENTOUX", + "nomCommune": "BEAUMONT DU VENTOUX" }, { - "codePostal": "91150", - "codeCommune": "91248", - "libelleAcheminement": "LA FORET STE CROIX", - "nomCommune": "LA FORET STE CROIX" + "codePostal": "87130", + "codeCommune": "87147", + "libelleAcheminement": "ST GILLES LES FORETS", + "nomCommune": "ST GILLES LES FORETS" }, { - "codePostal": "80140", - "codeCommune": "80388", - "libelleAcheminement": "GREBAULT MESNIL", - "nomCommune": "GREBAULT MESNIL" + "codePostal": "84410", + "codeCommune": "84017", + "libelleAcheminement": "BEDOIN", + "nomCommune": "BEDOIN" }, { - "codePostal": "91190", - "codeCommune": "91272", - "libelleAcheminement": "GIF SUR YVETTE", - "nomCommune": "GIF SUR YVETTE" + "codePostal": "87260", + "codeCommune": "87148", + "libelleAcheminement": "ST HILAIRE BONNEVAL", + "nomCommune": "ST HILAIRE BONNEVAL" }, { - "codePostal": "80600", - "codeCommune": "80392", - "libelleAcheminement": "GROUCHES LUCHUEL", - "nomCommune": "GROUCHES LUCHUEL" + "codePostal": "84390", + "codeCommune": "84021", + "libelleAcheminement": "BRANTES", + "nomCommune": "BRANTES" }, { - "codePostal": "91720", - "codeCommune": "91273", - "libelleAcheminement": "GIRONVILLE SUR ESSONNE", - "nomCommune": "GIRONVILLE SUR ESSONNE" + "codePostal": "87510", + "codeCommune": "87152", + "libelleAcheminement": "ST JOUVENT", + "nomCommune": "ST JOUVENT" }, { - "codePostal": "80490", - "codeCommune": "80406", - "libelleAcheminement": "HALLENCOURT", - "nomCommune": "HALLENCOURT" + "codePostal": "84480", + "codeCommune": "84023", + "libelleAcheminement": "BUOUX", + "nomCommune": "BUOUX" }, { - "codePostal": "91400", - "codeCommune": "91274", - "libelleAcheminement": "GOMETZ LA VILLE", - "nomCommune": "GOMETZ LA VILLE" + "codePostal": "87420", + "codeCommune": "87162", + "libelleAcheminement": "STE MARIE DE VAUX", + "nomCommune": "STE MARIE DE VAUX" }, { - "codePostal": "80360", - "codeCommune": "80418", - "libelleAcheminement": "HARDECOURT AUX BOIS", - "nomCommune": "HARDECOURT AUX BOIS" + "codePostal": "84240", + "codeCommune": "84024", + "libelleAcheminement": "CABRIERES D AIGUES", + "nomCommune": "CABRIERES D AIGUES" }, { - "codePostal": "91350", - "codeCommune": "91286", - "libelleAcheminement": "GRIGNY", - "nomCommune": "GRIGNY" + "codePostal": "87400", + "codeCommune": "87167", + "libelleAcheminement": "ST MARTIN TERRESSUS", + "nomCommune": "ST MARTIN TERRESSUS" }, { - "codePostal": "80132", - "codeCommune": "80422", - "libelleAcheminement": "HAUTVILLERS OUVILLE", - "nomCommune": "HAUTVILLERS OUVILLE" + "codePostal": "84400", + "codeCommune": "84033", + "libelleAcheminement": "CASTELLET EN LUBERON", + "nomCommune": "CASTELLET EN LUBERON" }, { - "codePostal": "91760", - "codeCommune": "91315", - "libelleAcheminement": "ITTEVILLE", - "nomCommune": "ITTEVILLE" + "codePostal": "87300", + "codeCommune": "87172", + "libelleAcheminement": "ST OUEN SUR GARTEMPE", + "nomCommune": "ST OUEN SUR GARTEMPE" }, { - "codePostal": "80680", - "codeCommune": "80424", - "libelleAcheminement": "HEBECOURT", - "nomCommune": "HEBECOURT" + "codePostal": "84470", + "codeCommune": "84036", + "libelleAcheminement": "CHATEAUNEUF DE GADAGNE", + "nomCommune": "CHATEAUNEUF DE GADAGNE" }, { - "codePostal": "91510", - "codeCommune": "91330", - "libelleAcheminement": "LARDY", - "nomCommune": "LARDY" + "codePostal": "87260", + "codeCommune": "87174", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "80800", - "codeCommune": "80426", - "libelleAcheminement": "HEILLY", - "nomCommune": "HEILLY" + "codePostal": "84110", + "codeCommune": "84040", + "libelleAcheminement": "CRESTET", + "nomCommune": "CRESTET" }, { - "codePostal": "91310", - "codeCommune": "91333", - "libelleAcheminement": "LEUVILLE SUR ORGE", - "nomCommune": "LEUVILLE SUR ORGE" + "codePostal": "87290", + "codeCommune": "87180", + "libelleAcheminement": "ST SORNIN LEULAC", + "nomCommune": "ST SORNIN LEULAC" }, { - "codePostal": "80360", - "codeCommune": "80428", - "libelleAcheminement": "HEM MONACU", - "nomCommune": "HEM MONACU" + "codePostal": "84320", + "codeCommune": "84043", + "libelleAcheminement": "ENTRAIGUES SUR LA SORGUE", + "nomCommune": "ENTRAIGUES SUR LA SORGUE" }, { - "codePostal": "91090", - "codeCommune": "91340", - "libelleAcheminement": "LISSES", - "nomCommune": "LISSES" + "codePostal": "87110", + "codeCommune": "87192", + "libelleAcheminement": "SOLIGNAC", + "nomCommune": "SOLIGNAC" }, { - "codePostal": "80300", - "codeCommune": "80429", - "libelleAcheminement": "HENENCOURT", - "nomCommune": "HENENCOURT" + "codePostal": "84190", + "codeCommune": "84049", + "libelleAcheminement": "GIGONDAS", + "nomCommune": "GIGONDAS" }, { - "codePostal": "91630", - "codeCommune": "91376", - "libelleAcheminement": "MAROLLES EN HUREPOIX", - "nomCommune": "MAROLLES EN HUREPOIX" + "codePostal": "87360", + "codeCommune": "87195", + "libelleAcheminement": "TERSANNES", + "nomCommune": "TERSANNES" }, { - "codePostal": "80290", - "codeCommune": "80436", - "libelleAcheminement": "HESCAMPS", - "nomCommune": "HESCAMPS" + "codePostal": "84220", + "codeCommune": "84050", + "libelleAcheminement": "GORDES", + "nomCommune": "GORDES" }, { - "codePostal": "91730", - "codeCommune": "91378", - "libelleAcheminement": "MAUCHAMPS", - "nomCommune": "MAUCHAMPS" + "codePostal": "87430", + "codeCommune": "87201", + "libelleAcheminement": "VERNEUIL SUR VIENNE", + "nomCommune": "VERNEUIL SUR VIENNE" }, { - "codePostal": "80370", - "codeCommune": "80440", - "libelleAcheminement": "HIERMONT", - "nomCommune": "HIERMONT" + "codePostal": "84600", + "codeCommune": "84053", + "libelleAcheminement": "GRILLON", + "nomCommune": "GRILLON" }, { - "codePostal": "91660", - "codeCommune": "91390", - "libelleAcheminement": "LE MEREVILLOIS", - "nomCommune": "LE MEREVILLOIS" + "codePostal": "87520", + "codeCommune": "87202", + "libelleAcheminement": "VEYRAC", + "nomCommune": "VEYRAC" }, { - "codePostal": "80640", - "codeCommune": "80443", - "libelleAcheminement": "HORNOY LE BOURG", - "nomCommune": "HORNOY LE BOURG" + "codePostal": "84290", + "codeCommune": "84061", + "libelleAcheminement": "LAGARDE PAREOL", + "nomCommune": "LAGARDE PAREOL" }, { - "codePostal": "91420", - "codeCommune": "91432", - "libelleAcheminement": "MORANGIS", - "nomCommune": "MORANGIS" + "codePostal": "87190", + "codeCommune": "87206", + "libelleAcheminement": "VILLEFAVARD", + "nomCommune": "VILLEFAVARD" }, { - "codePostal": "80430", - "codeCommune": "80456", - "libelleAcheminement": "LAFRESGUIMONT ST MARTIN", - "nomCommune": "LAFRESGUIMONT ST MARTIN" + "codePostal": "84840", + "codeCommune": "84063", + "libelleAcheminement": "LAMOTTE DU RHONE", + "nomCommune": "LAMOTTE DU RHONE" }, { - "codePostal": "91490", - "codeCommune": "91463", - "libelleAcheminement": "ONCY SUR ECOLE", - "nomCommune": "ONCY SUR ECOLE" + "codePostal": "88170", + "codeCommune": "88010", + "libelleAcheminement": "AOUZE", + "nomCommune": "AOUZE" }, { - "codePostal": "80620", - "codeCommune": "80466", - "libelleAcheminement": "LANCHES ST HILAIRE", - "nomCommune": "LANCHES ST HILAIRE" + "codePostal": "84220", + "codeCommune": "84066", + "libelleAcheminement": "LIOUX", + "nomCommune": "LIOUX" }, { - "codePostal": "91720", - "codeCommune": "91507", - "libelleAcheminement": "PRUNAY SUR ESSONNE", - "nomCommune": "PRUNAY SUR ESSONNE" + "codePostal": "88300", + "codeCommune": "88019", + "libelleAcheminement": "AUTIGNY LA TOUR", + "nomCommune": "AUTIGNY LA TOUR" }, { - "codePostal": "80560", - "codeCommune": "80493", - "libelleAcheminement": "LOUVENCOURT", - "nomCommune": "LOUVENCOURT" + "codePostal": "84220", + "codeCommune": "84085", + "libelleAcheminement": "MURS", + "nomCommune": "MURS" }, { - "codePostal": "91480", - "codeCommune": "91514", - "libelleAcheminement": "QUINCY SOUS SENART", - "nomCommune": "QUINCY SOUS SENART" + "codePostal": "88140", + "codeCommune": "88022", + "libelleAcheminement": "AUZAINVILLIERS", + "nomCommune": "AUZAINVILLIERS" }, { - "codePostal": "80150", - "codeCommune": "80496", - "libelleAcheminement": "MACHIEL", - "nomCommune": "MACHIEL" + "codePostal": "84580", + "codeCommune": "84086", + "libelleAcheminement": "OPPEDE", + "nomCommune": "OPPEDE" }, { - "codePostal": "91410", - "codeCommune": "91519", - "libelleAcheminement": "RICHARVILLE", - "nomCommune": "RICHARVILLE" + "codePostal": "88600", + "codeCommune": "88026", + "libelleAcheminement": "AYDOILLES", + "nomCommune": "AYDOILLES" }, { - "codePostal": "80135", - "codeCommune": "80502", - "libelleAcheminement": "MAISON ROLAND", - "nomCommune": "MAISON ROLAND" + "codePostal": "84110", + "codeCommune": "84094", + "libelleAcheminement": "PUYMERAS", + "nomCommune": "PUYMERAS" }, { - "codePostal": "91130", - "codeCommune": "91521", - "libelleAcheminement": "RIS ORANGIS", - "nomCommune": "RIS ORANGIS" + "codePostal": "88240", + "codeCommune": "88029", + "libelleAcheminement": "LA VOGE LES BAINS", + "nomCommune": "LA VOGE LES BAINS" }, { - "codePostal": "80250", - "codeCommune": "80504", - "libelleAcheminement": "MALPART", - "nomCommune": "MALPART" + "codePostal": "84110", + "codeCommune": "84096", + "libelleAcheminement": "RASTEAU", + "nomCommune": "RASTEAU" }, { - "codePostal": "91730", - "codeCommune": "91619", - "libelleAcheminement": "TORFOU", - "nomCommune": "TORFOU" + "codePostal": "88300", + "codeCommune": "88036", + "libelleAcheminement": "BARVILLE", + "nomCommune": "BARVILLE" }, { - "codePostal": "80800", - "codeCommune": "80507", - "libelleAcheminement": "MARCELCAVE", - "nomCommune": "MARCELCAVE" + "codePostal": "84440", + "codeCommune": "84099", + "libelleAcheminement": "ROBION", + "nomCommune": "ROBION" }, { - "codePostal": "91530", - "codeCommune": "91630", - "libelleAcheminement": "LE VAL ST GERMAIN", - "nomCommune": "LE VAL ST GERMAIN" + "codePostal": "88120", + "codeCommune": "88037", + "libelleAcheminement": "BASSE SUR LE RUPT", + "nomCommune": "BASSE SUR LE RUPT" }, { - "codePostal": "80200", - "codeCommune": "80509", - "libelleAcheminement": "MARCHELEPOT MISERY", - "nomCommune": "MARCHELEPOT MISERY" + "codePostal": "84210", + "codeCommune": "84101", + "libelleAcheminement": "LA ROQUE SUR PERNES", + "nomCommune": "LA ROQUE SUR PERNES" }, { - "codePostal": "91480", - "codeCommune": "91631", - "libelleAcheminement": "VARENNES JARCY", - "nomCommune": "VARENNES JARCY" + "codePostal": "88150", + "codeCommune": "88040", + "libelleAcheminement": "BAYECOURT", + "nomCommune": "BAYECOURT" }, { - "codePostal": "80290", - "codeCommune": "80515", - "libelleAcheminement": "MARLERS", - "nomCommune": "MARLERS" + "codePostal": "84220", + "codeCommune": "84102", + "libelleAcheminement": "ROUSSILLON", + "nomCommune": "ROUSSILLON" }, { - "codePostal": "91820", - "codeCommune": "91639", - "libelleAcheminement": "VAYRES SUR ESSONNE", - "nomCommune": "VAYRES SUR ESSONNE" + "codePostal": "88270", + "codeCommune": "88041", + "libelleAcheminement": "BAZEGNEY", + "nomCommune": "BAZEGNEY" }, { - "codePostal": "80240", - "codeCommune": "80516", - "libelleAcheminement": "MARQUAIX", - "nomCommune": "MARQUAIX" + "codePostal": "84290", + "codeCommune": "84106", + "libelleAcheminement": "STE CECILE LES VIGNES", + "nomCommune": "STE CECILE LES VIGNES" }, { - "codePostal": "91620", - "codeCommune": "91665", - "libelleAcheminement": "LA VILLE DU BOIS", - "nomCommune": "LA VILLE DU BOIS" + "codePostal": "88370", + "codeCommune": "88048", + "libelleAcheminement": "BELLEFONTAINE", + "nomCommune": "BELLEFONTAINE" }, { - "codePostal": "80400", - "codeCommune": "80519", - "libelleAcheminement": "MATIGNY", - "nomCommune": "MATIGNY" + "codePostal": "84750", + "codeCommune": "84112", + "libelleAcheminement": "ST MARTIN DE CASTILLON", + "nomCommune": "ST MARTIN DE CASTILLON" }, { - "codePostal": "91580", - "codeCommune": "91671", - "libelleAcheminement": "VILLENEUVE SUR AUVERS", - "nomCommune": "VILLENEUVE SUR AUVERS" + "codePostal": "88500", + "codeCommune": "88056", + "libelleAcheminement": "BETTONCOURT", + "nomCommune": "BETTONCOURT" }, { - "codePostal": "80170", - "codeCommune": "80520", - "libelleAcheminement": "MAUCOURT", - "nomCommune": "MAUCOURT" + "codePostal": "84290", + "codeCommune": "84117", + "libelleAcheminement": "ST ROMAN DE MALEGARDE", + "nomCommune": "ST ROMAN DE MALEGARDE" }, { - "codePostal": "91700", - "codeCommune": "91685", - "libelleAcheminement": "VILLIERS SUR ORGE", - "nomCommune": "VILLIERS SUR ORGE" + "codePostal": "88500", + "codeCommune": "88060", + "libelleAcheminement": "BLEMEREY", + "nomCommune": "BLEMEREY" }, { - "codePostal": "80430", - "codeCommune": "80522", - "libelleAcheminement": "LE MAZIS", - "nomCommune": "LE MAZIS" + "codePostal": "84390", + "codeCommune": "84123", + "libelleAcheminement": "SAULT", + "nomCommune": "SAULT" }, { - "codePostal": "92270", - "codeCommune": "92009", - "libelleAcheminement": "BOIS COLOMBES", - "nomCommune": "BOIS COLOMBES" + "codePostal": "88470", + "codeCommune": "88068", + "libelleAcheminement": "LA BOURGONCE", + "nomCommune": "LA BOURGONCE" }, { - "codePostal": "80170", - "codeCommune": "80524", - "libelleAcheminement": "MEHARICOURT", - "nomCommune": "MEHARICOURT" + "codePostal": "84110", + "codeCommune": "84126", + "libelleAcheminement": "SEGURET", + "nomCommune": "SEGURET" }, { - "codePostal": "92100", - "codeCommune": "92012", - "libelleAcheminement": "BOULOGNE BILLANCOURT", - "nomCommune": "BOULOGNE BILLANCOURT" + "codePostal": "88130", + "codeCommune": "88070", + "libelleAcheminement": "BOUXURULLES", + "nomCommune": "BOUXURULLES" }, { - "codePostal": "80290", - "codeCommune": "80525", - "libelleAcheminement": "MEIGNEUX", - "nomCommune": "MEIGNEUX" + "codePostal": "84400", + "codeCommune": "84128", + "libelleAcheminement": "SIVERGUES", + "nomCommune": "SIVERGUES" }, { - "codePostal": "92370", - "codeCommune": "92022", - "libelleAcheminement": "CHAVILLE", - "nomCommune": "CHAVILLE" + "codePostal": "88270", + "codeCommune": "88071", + "libelleAcheminement": "BOUZEMONT", + "nomCommune": "BOUZEMONT" }, { - "codePostal": "80520", - "codeCommune": "80527", - "libelleAcheminement": "MENESLIES", - "nomCommune": "MENESLIES" + "codePostal": "84160", + "codeCommune": "84140", + "libelleAcheminement": "VAUGINES", + "nomCommune": "VAUGINES" }, { - "codePostal": "92400", - "codeCommune": "92026", - "libelleAcheminement": "COURBEVOIE", - "nomCommune": "COURBEVOIE" + "codePostal": "88130", + "codeCommune": "88073", + "libelleAcheminement": "BRANTIGNY", + "nomCommune": "BRANTIGNY" }, { - "codePostal": "80490", - "codeCommune": "80529", - "libelleAcheminement": "MERELESSART", - "nomCommune": "MERELESSART" + "codePostal": "84740", + "codeCommune": "84142", + "libelleAcheminement": "VELLERON", + "nomCommune": "VELLERON" }, { - "codePostal": "92250", - "codeCommune": "92035", - "libelleAcheminement": "LA GARENNE COLOMBES", - "nomCommune": "LA GARENNE COLOMBES" + "codePostal": "88270", + "codeCommune": "88092", + "libelleAcheminement": "CHARMOIS L ORGUEILLEUX", + "nomCommune": "CHARMOIS L ORGUEILLEUX" }, { - "codePostal": "80300", - "codeCommune": "80549", - "libelleAcheminement": "MIRAUMONT", - "nomCommune": "MIRAUMONT" + "codePostal": "84210", + "codeCommune": "84143", + "libelleAcheminement": "VENASQUE", + "nomCommune": "VENASQUE" }, { - "codePostal": "92300", - "codeCommune": "92044", - "libelleAcheminement": "LEVALLOIS PERRET", - "nomCommune": "LEVALLOIS PERRET" + "codePostal": "88210", + "codeCommune": "88093", + "libelleAcheminement": "CHATAS", + "nomCommune": "CHATAS" }, { - "codePostal": "80260", - "codeCommune": "80550", - "libelleAcheminement": "MIRVAUX", - "nomCommune": "MIRVAUX" + "codePostal": "85430", + "codeCommune": "85008", + "libelleAcheminement": "AUBIGNY LES CLOUZEAUX", + "nomCommune": "AUBIGNY LES CLOUZEAUX" }, { - "codePostal": "92240", - "codeCommune": "92046", - "libelleAcheminement": "MALAKOFF", - "nomCommune": "MALAKOFF" + "codePostal": "88170", + "codeCommune": "88095", + "libelleAcheminement": "CHATENOIS", + "nomCommune": "CHATENOIS" }, { - "codePostal": "80540", - "codeCommune": "80554", - "libelleAcheminement": "MOLLIENS DREUIL", - "nomCommune": "MOLLIENS DREUIL" + "codePostal": "85170", + "codeCommune": "85015", + "libelleAcheminement": "BEAUFOU", + "nomCommune": "BEAUFOU" }, { - "codePostal": "92500", - "codeCommune": "92063", - "libelleAcheminement": "RUEIL MALMAISON", - "nomCommune": "RUEIL MALMAISON" + "codePostal": "88410", + "codeCommune": "88096", + "libelleAcheminement": "CHATILLON SUR SAONE", + "nomCommune": "CHATILLON SUR SAONE" }, { - "codePostal": "80540", - "codeCommune": "80554", - "libelleAcheminement": "MOLLIENS DREUIL", - "nomCommune": "MOLLIENS DREUIL" + "codePostal": "85600", + "codeCommune": "85025", + "libelleAcheminement": "LA BOISSIERE DE MONTAIGU", + "nomCommune": "LA BOISSIERE DE MONTAIGU" }, { - "codePostal": "92330", - "codeCommune": "92071", - "libelleAcheminement": "SCEAUX", - "nomCommune": "SCEAUX" + "codePostal": "88630", + "codeCommune": "88107", + "libelleAcheminement": "CLEREY LA COTE", + "nomCommune": "CLEREY LA COTE" }, { - "codePostal": "80160", - "codeCommune": "80558", - "libelleAcheminement": "MONSURES", - "nomCommune": "MONSURES" + "codePostal": "85510", + "codeCommune": "85031", + "libelleAcheminement": "LE BOUPERE", + "nomCommune": "LE BOUPERE" }, { - "codePostal": "92310", - "codeCommune": "92072", - "libelleAcheminement": "SEVRES", - "nomCommune": "SEVRES" + "codePostal": "88240", + "codeCommune": "88108", + "libelleAcheminement": "LE CLERJUS", + "nomCommune": "LE CLERJUS" }, { - "codePostal": "80300", - "codeCommune": "80560", - "libelleAcheminement": "MONTAUBAN DE PICARDIE", - "nomCommune": "MONTAUBAN DE PICARDIE" + "codePostal": "85480", + "codeCommune": "85034", + "libelleAcheminement": "BOURNEZEAU", + "nomCommune": "BOURNEZEAU" }, { - "codePostal": "93350", - "codeCommune": "93013", - "libelleAcheminement": "LE BOURGET", - "nomCommune": "LE BOURGET" + "codePostal": "88390", + "codeCommune": "88126", + "libelleAcheminement": "DARNIEULLES", + "nomCommune": "DARNIEULLES" }, { - "codePostal": "80670", - "codeCommune": "80566", - "libelleAcheminement": "FIEFFES MONTRELET", - "nomCommune": "FIEFFES MONTRELET" + "codePostal": "85320", + "codeCommune": "85036", + "libelleAcheminement": "LA BRETONNIERE LA CLAYE", + "nomCommune": "LA BRETONNIERE LA CLAYE" }, { - "codePostal": "93470", - "codeCommune": "93015", - "libelleAcheminement": "COUBRON", - "nomCommune": "COUBRON" + "codePostal": "88000", + "codeCommune": "88134", + "libelleAcheminement": "DINOZE", + "nomCommune": "DINOZE" }, { - "codePostal": "80400", - "codeCommune": "80576", - "libelleAcheminement": "MOYENCOURT", - "nomCommune": "MOYENCOURT" + "codePostal": "85410", + "codeCommune": "85040", + "libelleAcheminement": "LA CAILLERE ST HILAIRE", + "nomCommune": "LA CAILLERE ST HILAIRE" }, { - "codePostal": "93370", - "codeCommune": "93047", - "libelleAcheminement": "MONTFERMEIL", - "nomCommune": "MONTFERMEIL" + "codePostal": "88260", + "codeCommune": "88138", + "libelleAcheminement": "DOMBASLE DEVANT DARNEY", + "nomCommune": "DOMBASLE DEVANT DARNEY" }, { - "codePostal": "80290", - "codeCommune": "80577", - "libelleAcheminement": "MOYENCOURT LES POIX", - "nomCommune": "MOYENCOURT LES POIX" + "codePostal": "85310", + "codeCommune": "85046", + "libelleAcheminement": "LA CHAIZE LE VICOMTE", + "nomCommune": "LA CHAIZE LE VICOMTE" }, { - "codePostal": "93330", - "codeCommune": "93050", - "libelleAcheminement": "NEUILLY SUR MARNE", - "nomCommune": "NEUILLY SUR MARNE" + "codePostal": "88170", + "codeCommune": "88141", + "libelleAcheminement": "DOMBROT SUR VAIR", + "nomCommune": "DOMBROT SUR VAIR" }, { - "codePostal": "80120", - "codeCommune": "80580", - "libelleAcheminement": "NAMPONT ST MARTIN", - "nomCommune": "NAMPONT" + "codePostal": "85450", + "codeCommune": "85049", + "libelleAcheminement": "CHAMPAGNE LES MARAIS", + "nomCommune": "CHAMPAGNE LES MARAIS" }, { - "codePostal": "93500", - "codeCommune": "93055", - "libelleAcheminement": "PANTIN", - "nomCommune": "PANTIN" + "codePostal": "88700", + "codeCommune": "88156", + "libelleAcheminement": "DONCIERES", + "nomCommune": "DONCIERES" }, { - "codePostal": "80290", - "codeCommune": "80582", - "libelleAcheminement": "NAMPS MAISNIL", - "nomCommune": "NAMPS MAISNIL" + "codePostal": "85220", + "codeCommune": "85054", + "libelleAcheminement": "LA CHAPELLE HERMIER", + "nomCommune": "LA CHAPELLE HERMIER" }, { - "codePostal": "93320", - "codeCommune": "93057", - "libelleAcheminement": "LES PAVILLONS SOUS BOIS", - "nomCommune": "LES PAVILLONS SOUS BOIS" + "codePostal": "88000", + "codeCommune": "88160", + "libelleAcheminement": "EPINAL", + "nomCommune": "EPINAL" }, { - "codePostal": "80290", - "codeCommune": "80582", - "libelleAcheminement": "NAMPS MAISNIL", - "nomCommune": "NAMPS MAISNIL" + "codePostal": "85400", + "codeCommune": "85058", + "libelleAcheminement": "CHASNAIS", + "nomCommune": "CHASNAIS" }, { - "codePostal": "93410", - "codeCommune": "93074", - "libelleAcheminement": "VAUJOURS", - "nomCommune": "VAUJOURS" + "codePostal": "88260", + "codeCommune": "88162", + "libelleAcheminement": "ESLEY", + "nomCommune": "ESLEY" }, { - "codePostal": "80260", - "codeCommune": "80584", - "libelleAcheminement": "NAOURS", - "nomCommune": "NAOURS" + "codePostal": "85220", + "codeCommune": "85070", + "libelleAcheminement": "COEX", + "nomCommune": "COEX" }, { - "codePostal": "94480", - "codeCommune": "94001", - "libelleAcheminement": "ABLON SUR SEINE", - "nomCommune": "ABLON SUR SEINE" + "codePostal": "88500", + "codeCommune": "88164", + "libelleAcheminement": "ESTRENNES", + "nomCommune": "ESTRENNES" }, { - "codePostal": "80140", - "codeCommune": "80591", - "libelleAcheminement": "NEUVILLE AU BOIS", - "nomCommune": "NEUVILLE AU BOIS" + "codePostal": "85220", + "codeCommune": "85071", + "libelleAcheminement": "COMMEQUIERS", + "nomCommune": "COMMEQUIERS" }, { - "codePostal": "94500", - "codeCommune": "94017", - "libelleAcheminement": "CHAMPIGNY SUR MARNE", - "nomCommune": "CHAMPIGNY SUR MARNE" + "codePostal": "88480", + "codeCommune": "88165", + "libelleAcheminement": "ETIVAL CLAIREFONTAINE", + "nomCommune": "ETIVAL CLAIREFONTAINE" }, { - "codePostal": "80340", - "codeCommune": "80593", - "libelleAcheminement": "LA NEUVILLE LES BRAY", - "nomCommune": "LA NEUVILLE LES BRAY" + "codePostal": "85320", + "codeCommune": "85073", + "libelleAcheminement": "CORPE", + "nomCommune": "CORPE" }, { - "codePostal": "94430", - "codeCommune": "94019", - "libelleAcheminement": "CHENNEVIERES SUR MARNE", - "nomCommune": "CHENNEVIERES SUR MARNE" + "codePostal": "88460", + "codeCommune": "88167", + "libelleAcheminement": "FAUCOMPIERRE", + "nomCommune": "FAUCOMPIERRE" }, { - "codePostal": "80860", - "codeCommune": "80598", - "libelleAcheminement": "NOUVION", - "nomCommune": "NOUVION" + "codePostal": "85420", + "codeCommune": "85078", + "libelleAcheminement": "DAMVIX", + "nomCommune": "DAMVIX" }, { - "codePostal": "94120", - "codeCommune": "94033", - "libelleAcheminement": "FONTENAY SOUS BOIS", - "nomCommune": "FONTENAY SOUS BOIS" + "codePostal": "88700", + "codeCommune": "88168", + "libelleAcheminement": "FAUCONCOURT", + "nomCommune": "FAUCONCOURT" }, { - "codePostal": "80240", - "codeCommune": "80601", - "libelleAcheminement": "NURLU", - "nomCommune": "NURLU" + "codePostal": "85170", + "codeCommune": "85081", + "libelleAcheminement": "DOMPIERRE SUR YON", + "nomCommune": "DOMPIERRE SUR YON" }, { - "codePostal": "94240", - "codeCommune": "94038", - "libelleAcheminement": "L HAY LES ROSES", - "nomCommune": "L HAY LES ROSES" + "codePostal": "88320", + "codeCommune": "88180", + "libelleAcheminement": "FRAIN", + "nomCommune": "FRAIN" }, { - "codePostal": "80600", - "codeCommune": "80614", - "libelleAcheminement": "OUTREBOIS", - "nomCommune": "OUTREBOIS" + "codePostal": "85590", + "codeCommune": "85082", + "libelleAcheminement": "LES EPESSES", + "nomCommune": "LES EPESSES" }, { - "codePostal": "94340", - "codeCommune": "94042", - "libelleAcheminement": "JOINVILLE LE PONT", - "nomCommune": "JOINVILLE LE PONT" + "codePostal": "88230", + "codeCommune": "88181", + "libelleAcheminement": "FRAIZE", + "nomCommune": "FRAIZE" }, { - "codePostal": "80320", - "codeCommune": "80621", - "libelleAcheminement": "HYPERCOURT", - "nomCommune": "HYPERCOURT" + "codePostal": "85140", + "codeCommune": "85084", + "libelleAcheminement": "ESSARTS EN BOCAGE", + "nomCommune": "ESSARTS EN BOCAGE" }, { - "codePostal": "94700", - "codeCommune": "94046", - "libelleAcheminement": "MAISONS ALFORT", - "nomCommune": "MAISONS ALFORT" + "codePostal": "88500", + "codeCommune": "88186", + "libelleAcheminement": "FRENELLE LA PETITE", + "nomCommune": "FRENELLE LA PETITE" }, { - "codePostal": "80500", - "codeCommune": "80625", - "libelleAcheminement": "TROIS RIVIERES", - "nomCommune": "TROIS RIVIERES" + "codePostal": "85240", + "codeCommune": "85087", + "libelleAcheminement": "FAYMOREAU", + "nomCommune": "FAYMOREAU" }, { - "codePostal": "94160", - "codeCommune": "94067", - "libelleAcheminement": "ST MANDE", - "nomCommune": "ST MANDE" + "codePostal": "88400", + "codeCommune": "88196", + "libelleAcheminement": "GERARDMER", + "nomCommune": "GERARDMER" }, { - "codePostal": "80110", - "codeCommune": "80628", - "libelleAcheminement": "LE PLESSIER ROZAINVILLERS", - "nomCommune": "LE PLESSIER ROZAINVILLERS" + "codePostal": "85280", + "codeCommune": "85089", + "libelleAcheminement": "LA FERRIERE", + "nomCommune": "LA FERRIERE" }, { - "codePostal": "94210", - "codeCommune": "94068", - "libelleAcheminement": "ST MAUR DES FOSSES", - "nomCommune": "ST MAUR DES FOSSES" + "codePostal": "88120", + "codeCommune": "88197", + "libelleAcheminement": "GERBAMONT", + "nomCommune": "GERBAMONT" }, { - "codePostal": "80290", - "codeCommune": "80630", - "libelleAcheminement": "POIX DE PICARDIE", - "nomCommune": "POIX DE PICARDIE" + "codePostal": "85700", + "codeCommune": "85090", + "libelleAcheminement": "SEVREMONT", + "nomCommune": "SEVREMONT" }, { - "codePostal": "94370", - "codeCommune": "94071", - "libelleAcheminement": "SUCY EN BRIE", - "nomCommune": "SUCY EN BRIE" + "codePostal": "88340", + "codeCommune": "88205", + "libelleAcheminement": "GIRMONT VAL D AJOL", + "nomCommune": "GIRMONT VAL D AJOL" }, { - "codePostal": "80290", - "codeCommune": "80630", - "libelleAcheminement": "POIX DE PICARDIE", - "nomCommune": "POIX DE PICARDIE" + "codePostal": "85150", + "codeCommune": "85099", + "libelleAcheminement": "LE GIROUARD", + "nomCommune": "LE GIROUARD" }, { - "codePostal": "94190", - "codeCommune": "94078", - "libelleAcheminement": "VILLENEUVE ST GEORGES", - "nomCommune": "VILLENEUVE ST GEORGES" + "codePostal": "88350", + "codeCommune": "88212", + "libelleAcheminement": "GRAND", + "nomCommune": "GRAND" }, { - "codePostal": "80340", - "codeCommune": "80644", - "libelleAcheminement": "PROYART", - "nomCommune": "PROYART" + "codePostal": "85440", + "codeCommune": "85103", + "libelleAcheminement": "GROSBREUIL", + "nomCommune": "GROSBREUIL" }, { - "codePostal": "95450", - "codeCommune": "95002", - "libelleAcheminement": "ABLEIGES", - "nomCommune": "ABLEIGES" + "codePostal": "88600", + "codeCommune": "88216", + "libelleAcheminement": "GRANDVILLERS", + "nomCommune": "GRANDVILLERS" }, { - "codePostal": "80300", - "codeCommune": "80648", - "libelleAcheminement": "PYS", - "nomCommune": "PYS" + "codePostal": "85770", + "codeCommune": "85105", + "libelleAcheminement": "LE GUE DE VELLUIRE", + "nomCommune": "LE GUE DE VELLUIRE" }, { - "codePostal": "95510", - "codeCommune": "95008", - "libelleAcheminement": "AINCOURT", - "nomCommune": "AINCOURT" + "codePostal": "88640", + "codeCommune": "88218", + "libelleAcheminement": "GRANGES AUMONTZEY", + "nomCommune": "GRANGES AUMONTZEY" }, { - "codePostal": "80710", - "codeCommune": "80656", - "libelleAcheminement": "QUEVAUVILLERS", - "nomCommune": "QUEVAUVILLERS" + "codePostal": "85770", + "codeCommune": "85111", + "libelleAcheminement": "L ILE D ELLE", + "nomCommune": "L ILE D ELLE" }, { - "codePostal": "95510", - "codeCommune": "95012", - "libelleAcheminement": "AMENUCOURT", - "nomCommune": "AMENUCOURT" + "codePostal": "88600", + "codeCommune": "88222", + "libelleAcheminement": "GUGNECOURT", + "nomCommune": "GUGNECOURT" }, { - "codePostal": "80700", - "codeCommune": "80669", - "libelleAcheminement": "RETHONVILLERS", - "nomCommune": "RETHONVILLERS" + "codePostal": "85350", + "codeCommune": "85113", + "libelleAcheminement": "L ILE D YEU", + "nomCommune": "L ILE D YEU" }, { - "codePostal": "95810", - "codeCommune": "95023", - "libelleAcheminement": "ARRONVILLE", - "nomCommune": "ARRONVILLE" + "codePostal": "88220", + "codeCommune": "88225", + "libelleAcheminement": "HADOL", + "nomCommune": "HADOL" }, { - "codePostal": "80250", - "codeCommune": "80681", - "libelleAcheminement": "ROUVREL", - "nomCommune": "ROUVREL" + "codePostal": "85350", + "codeCommune": "85113", + "libelleAcheminement": "L ILE D YEU", + "nomCommune": "L ILE D YEU" }, { - "codePostal": "95450", - "codeCommune": "95040", - "libelleAcheminement": "AVERNES", - "nomCommune": "AVERNES" + "codePostal": "88300", + "codeCommune": "88227", + "libelleAcheminement": "HAGNEVILLE ET RONCOURT", + "nomCommune": "HAGNEVILLE ET RONCOURT" }, { - "codePostal": "80360", - "codeCommune": "80695", - "libelleAcheminement": "SAILLY SAILLISEL", - "nomCommune": "SAILLY SAILLISEL" + "codePostal": "85400", + "codeCommune": "85117", + "libelleAcheminement": "LAIROUX", + "nomCommune": "LAIROUX" }, { - "codePostal": "95270", - "codeCommune": "95055", - "libelleAcheminement": "BELLEFONTAINE", - "nomCommune": "BELLEFONTAINE" + "codePostal": "88300", + "codeCommune": "88229", + "libelleAcheminement": "HARCHECHAMP", + "nomCommune": "HARCHECHAMP" }, { - "codePostal": "80540", - "codeCommune": "80698", - "libelleAcheminement": "ST AUBIN MONTENOY", - "nomCommune": "ST AUBIN MONTENOY" + "codePostal": "85370", + "codeCommune": "85121", + "libelleAcheminement": "LE LANGON", + "nomCommune": "LE LANGON" }, { - "codePostal": "95500", - "codeCommune": "95088", - "libelleAcheminement": "BONNEUIL EN FRANCE", - "nomCommune": "BONNEUIL EN FRANCE" + "codePostal": "88800", + "codeCommune": "88231", + "libelleAcheminement": "HAREVILLE", + "nomCommune": "HAREVILLE" }, { - "codePostal": "80200", - "codeCommune": "80701", - "libelleAcheminement": "ST CHRIST BRIOST", - "nomCommune": "ST CHRIST BRIOST" + "codePostal": "85140", + "codeCommune": "85142", + "libelleAcheminement": "LA MERLATIERE", + "nomCommune": "LA MERLATIERE" }, { - "codePostal": "95570", - "codeCommune": "95091", - "libelleAcheminement": "BOUFFEMONT", - "nomCommune": "BOUFFEMONT" + "codePostal": "88270", + "codeCommune": "88233", + "libelleAcheminement": "HAROL", + "nomCommune": "HAROL" }, { - "codePostal": "80430", - "codeCommune": "80703", - "libelleAcheminement": "ST GERMAIN SUR BRESLE", - "nomCommune": "ST GERMAIN SUR BRESLE" + "codePostal": "85240", + "codeCommune": "85162", + "libelleAcheminement": "RIVES D AUTISE", + "nomCommune": "RIVES D AUTISE" }, { - "codePostal": "95000", - "codeCommune": "95127", - "libelleAcheminement": "CERGY", - "nomCommune": "CERGY" + "codePostal": "88240", + "codeCommune": "88236", + "libelleAcheminement": "LA HAYE", + "nomCommune": "LA HAYE" }, { - "codePostal": "80260", - "codeCommune": "80704", - "libelleAcheminement": "ST GRATIEN", - "nomCommune": "ST GRATIEN" + "codePostal": "85420", + "codeCommune": "85162", + "libelleAcheminement": "RIVES D AUTISE", + "nomCommune": "RIVES D AUTISE" }, { - "codePostal": "95710", - "codeCommune": "95150", - "libelleAcheminement": "CHAUSSY", - "nomCommune": "CHAUSSY" + "codePostal": "88300", + "codeCommune": "88242", + "libelleAcheminement": "HOUEVILLE", + "nomCommune": "HOUEVILLE" }, { - "codePostal": "80120", - "codeCommune": "80713", - "libelleAcheminement": "ST QUENTIN EN TOURMONT", - "nomCommune": "ST QUENTIN EN TOURMONT" + "codePostal": "85570", + "codeCommune": "85174", + "libelleAcheminement": "PETOSSE", + "nomCommune": "PETOSSE" }, { - "codePostal": "95170", - "codeCommune": "95197", - "libelleAcheminement": "DEUIL LA BARRE", - "nomCommune": "DEUIL LA BARRE" + "codePostal": "88700", + "codeCommune": "88243", + "libelleAcheminement": "HOUSSERAS", + "nomCommune": "HOUSSERAS" }, { - "codePostal": "80880", - "codeCommune": "80714", - "libelleAcheminement": "ST QUENTIN LA MOTTE CROIX BAILLY", - "nomCommune": "ST QUENTIN LA MOTTE CROIX AU BAILLY" + "codePostal": "85770", + "codeCommune": "85177", + "libelleAcheminement": "LES VELLUIRE SUR VENDEE", + "nomCommune": "LES VELLUIRE SUR VENDEE" }, { - "codePostal": "95880", - "codeCommune": "95210", - "libelleAcheminement": "ENGHIEN LES BAINS", - "nomCommune": "ENGHIEN LES BAINS" + "codePostal": "88150", + "codeCommune": "88247", + "libelleAcheminement": "IGNEY", + "nomCommune": "IGNEY" }, { - "codePostal": "80400", - "codeCommune": "80726", - "libelleAcheminement": "SANCOURT", - "nomCommune": "SANCOURT" + "codePostal": "85250", + "codeCommune": "85186", + "libelleAcheminement": "LA RABATELIERE", + "nomCommune": "LA RABATELIERE" }, { - "codePostal": "95810", - "codeCommune": "95213", - "libelleAcheminement": "EPIAIS RHUS", - "nomCommune": "EPIAIS RHUS" + "codePostal": "88550", + "codeCommune": "88250", + "libelleAcheminement": "JARMENIL", + "nomCommune": "JARMENIL" }, { - "codePostal": "80620", - "codeCommune": "80742", - "libelleAcheminement": "SURCAMPS", - "nomCommune": "SURCAMPS" + "codePostal": "85620", + "codeCommune": "85190", + "libelleAcheminement": "ROCHESERVIERE", + "nomCommune": "ROCHESERVIERE" }, { - "codePostal": "95120", - "codeCommune": "95219", - "libelleAcheminement": "ERMONT", - "nomCommune": "ERMONT" + "codePostal": "88130", + "codeCommune": "88260", + "libelleAcheminement": "LANGLEY", + "nomCommune": "LANGLEY" }, { - "codePostal": "80260", - "codeCommune": "80746", - "libelleAcheminement": "TALMAS", - "nomCommune": "TALMAS" + "codePostal": "85340", + "codeCommune": "85194", + "libelleAcheminement": "LES SABLES D OLONNE", + "nomCommune": "LES SABLES D OLONNE" }, { - "codePostal": "95190", - "codeCommune": "95241", - "libelleAcheminement": "FONTENAY EN PARISIS", - "nomCommune": "FONTENAY EN PARISIS" + "codePostal": "88300", + "codeCommune": "88265", + "libelleAcheminement": "LEMMECOURT", + "nomCommune": "LEMMECOURT" }, { - "codePostal": "80560", - "codeCommune": "80756", - "libelleAcheminement": "THIEVRES", - "nomCommune": "THIEVRES" + "codePostal": "85250", + "codeCommune": "85196", + "libelleAcheminement": "ST ANDRE GOULE D OIE", + "nomCommune": "ST ANDRE GOULE D OIE" }, { - "codePostal": "95740", - "codeCommune": "95256", - "libelleAcheminement": "FREPILLON", - "nomCommune": "FREPILLON" + "codePostal": "88260", + "codeCommune": "88267", + "libelleAcheminement": "LERRAIN", + "nomCommune": "LERRAIN" }, { - "codePostal": "80250", - "codeCommune": "80758", - "libelleAcheminement": "THORY", - "nomCommune": "THORY" + "codePostal": "85260", + "codeCommune": "85197", + "libelleAcheminement": "MONTREVERD", + "nomCommune": "MONTREVERD" }, { - "codePostal": "95530", - "codeCommune": "95257", - "libelleAcheminement": "LA FRETTE SUR SEINE", - "nomCommune": "LA FRETTE SUR SEINE" + "codePostal": "88490", + "codeCommune": "88275", + "libelleAcheminement": "LUBINE", + "nomCommune": "LUBINE" }, { - "codePostal": "80220", - "codeCommune": "80760", - "libelleAcheminement": "TILLOY FLORIVILLE", - "nomCommune": "TILLOY FLORIVILLE" + "codePostal": "85260", + "codeCommune": "85197", + "libelleAcheminement": "MONTREVERD", + "nomCommune": "MONTREVERD" }, { - "codePostal": "95690", - "codeCommune": "95258", - "libelleAcheminement": "FROUVILLE", - "nomCommune": "FROUVILLE" + "codePostal": "88140", + "codeCommune": "88283", + "libelleAcheminement": "MALAINCOURT", + "nomCommune": "MALAINCOURT" }, { - "codePostal": "80132", - "codeCommune": "80763", - "libelleAcheminement": "LE TITRE", - "nomCommune": "LE TITRE" + "codePostal": "85210", + "codeCommune": "85199", + "libelleAcheminement": "ST AUBIN LA PLAINE", + "nomCommune": "ST AUBIN LA PLAINE" }, { - "codePostal": "95450", - "codeCommune": "95282", - "libelleAcheminement": "GOUZANGREZ", - "nomCommune": "GOUZANGREZ" + "codePostal": "88500", + "codeCommune": "88292", + "libelleAcheminement": "MATTAINCOURT", + "nomCommune": "MATTAINCOURT" }, { - "codePostal": "80130", - "codeCommune": "80770", - "libelleAcheminement": "TULLY", - "nomCommune": "TULLY" + "codePostal": "85210", + "codeCommune": "85209", + "libelleAcheminement": "ST ETIENNE DE BRILLOUET", + "nomCommune": "ST ETIENNE DE BRILLOUET" }, { - "codePostal": "95640", - "codeCommune": "95303", - "libelleAcheminement": "LE HEAULME", - "nomCommune": "LE HEAULME" + "codePostal": "88500", + "codeCommune": "88299", + "libelleAcheminement": "MENIL EN XAINTOIS", + "nomCommune": "MENIL EN XAINTOIS" }, { - "codePostal": "80800", - "codeCommune": "80785", - "libelleAcheminement": "VECQUEMONT", - "nomCommune": "VECQUEMONT" + "codePostal": "85670", + "codeCommune": "85210", + "libelleAcheminement": "ST ETIENNE DU BOIS", + "nomCommune": "ST ETIENNE DU BOIS" }, { - "codePostal": "95690", - "codeCommune": "95304", - "libelleAcheminement": "HEDOUVILLE", - "nomCommune": "HEDOUVILLE" + "codePostal": "88170", + "codeCommune": "88312", + "libelleAcheminement": "MORELMAISON", + "nomCommune": "MORELMAISON" }, { - "codePostal": "80120", - "codeCommune": "80787", - "libelleAcheminement": "VERCOURT", - "nomCommune": "VERCOURT" + "codePostal": "85150", + "codeCommune": "85214", + "libelleAcheminement": "STE FOY", + "nomCommune": "STE FOY" }, { - "codePostal": "95420", - "codeCommune": "95309", - "libelleAcheminement": "HODENT", - "nomCommune": "HODENT" + "codePostal": "88320", + "codeCommune": "88314", + "libelleAcheminement": "MORIZECOURT", + "nomCommune": "MORIZECOURT" }, { - "codePostal": "80700", - "codeCommune": "80790", - "libelleAcheminement": "VERPILLIERES", - "nomCommune": "VERPILLIERES" + "codePostal": "85160", + "codeCommune": "85234", + "libelleAcheminement": "ST JEAN DE MONTS", + "nomCommune": "ST JEAN DE MONTS" }, { - "codePostal": "95280", - "codeCommune": "95323", - "libelleAcheminement": "JOUY LE MOUTIER", - "nomCommune": "JOUY LE MOUTIER" + "codePostal": "88600", + "codeCommune": "88322", + "libelleAcheminement": "LA NEUVEVILLE DEVANT LEPANGES", + "nomCommune": "LA NEUVEVILLE DEVANT LEPANGES" }, { - "codePostal": "80260", - "codeCommune": "80792", - "libelleAcheminement": "LA VICOGNE", - "nomCommune": "LA VICOGNE" + "codePostal": "85150", + "codeCommune": "85236", + "libelleAcheminement": "ST JULIEN DES LANDES", + "nomCommune": "ST JULIEN DES LANDES" }, { - "codePostal": "95420", - "codeCommune": "95355", - "libelleAcheminement": "MAGNY EN VEXIN", - "nomCommune": "MAGNY EN VEXIN" + "codePostal": "88170", + "codeCommune": "88324", + "libelleAcheminement": "LA NEUVEVILLE SOUS CHATENOIS", + "nomCommune": "LA NEUVEVILLE SOUS CHATENOIS" }, { - "codePostal": "80140", - "codeCommune": "80800", - "libelleAcheminement": "VILLERS CAMPSART", - "nomCommune": "VILLERS CAMPSART" + "codePostal": "85410", + "codeCommune": "85237", + "libelleAcheminement": "ST LAURENT DE LA SALLE", + "nomCommune": "ST LAURENT DE LA SALLE" }, { - "codePostal": "95810", - "codeCommune": "95387", - "libelleAcheminement": "MENOUVILLE", - "nomCommune": "MENOUVILLE" + "codePostal": "88800", + "codeCommune": "88325", + "libelleAcheminement": "LA NEUVEVILLE SOUS MONTFORT", + "nomCommune": "LA NEUVEVILLE SOUS MONTFORT" }, { - "codePostal": "80700", - "codeCommune": "80803", - "libelleAcheminement": "VILLERS LES ROYE", - "nomCommune": "VILLERS LES ROYE" + "codePostal": "85220", + "codeCommune": "85239", + "libelleAcheminement": "ST MAIXENT SUR VIE", + "nomCommune": "ST MAIXENT SUR VIE" }, { - "codePostal": "95640", - "codeCommune": "95447", - "libelleAcheminement": "NEUILLY EN VEXIN", - "nomCommune": "NEUILLY EN VEXIN" + "codePostal": "88600", + "codeCommune": "88331", + "libelleAcheminement": "NONZEVILLE", + "nomCommune": "NONZEVILLE" }, { - "codePostal": "80690", - "codeCommune": "80804", - "libelleAcheminement": "VILLERS SOUS AILLY", - "nomCommune": "VILLERS SOUS AILLY" + "codePostal": "85470", + "codeCommune": "85243", + "libelleAcheminement": "BREM SUR MER", + "nomCommune": "BREM SUR MER" }, { - "codePostal": "95620", - "codeCommune": "95480", - "libelleAcheminement": "PARMAIN", - "nomCommune": "PARMAIN" + "codePostal": "88700", + "codeCommune": "88338", + "libelleAcheminement": "ORTONCOURT", + "nomCommune": "ORTONCOURT" }, { - "codePostal": "80120", - "codeCommune": "80815", - "libelleAcheminement": "VRON", - "nomCommune": "VRON" + "codePostal": "85200", + "codeCommune": "85244", + "libelleAcheminement": "ST MARTIN DE FRAIGNEAU", + "nomCommune": "ST MARTIN DE FRAIGNEAU" }, { - "codePostal": "95300", - "codeCommune": "95500", - "libelleAcheminement": "PONTOISE", - "nomCommune": "PONTOISE" + "codePostal": "88700", + "codeCommune": "88340", + "libelleAcheminement": "PADOUX", + "nomCommune": "PADOUX" }, { - "codePostal": "80300", - "codeCommune": "80820", - "libelleAcheminement": "WARLOY BAILLON", - "nomCommune": "WARLOY BAILLON" + "codePostal": "85570", + "codeCommune": "85245", + "libelleAcheminement": "ST MARTIN DES FONTAINES", + "nomCommune": "ST MARTIN DES FONTAINES" }, { - "codePostal": "95700", - "codeCommune": "95527", - "libelleAcheminement": "ROISSY EN FRANCE", - "nomCommune": "ROISSY EN FRANCE" + "codePostal": "88800", + "codeCommune": "88343", + "libelleAcheminement": "PAREY SOUS MONTFORT", + "nomCommune": "PAREY SOUS MONTFORT" }, { - "codePostal": "80270", - "codeCommune": "80825", - "libelleAcheminement": "WIRY AU MONT", - "nomCommune": "WIRY AU MONT" + "codePostal": "85220", + "codeCommune": "85268", + "libelleAcheminement": "ST REVEREND", + "nomCommune": "ST REVEREND" }, { - "codePostal": "95340", - "codeCommune": "95529", - "libelleAcheminement": "RONQUEROLLES", - "nomCommune": "RONQUEROLLES" + "codePostal": "88600", + "codeCommune": "88348", + "libelleAcheminement": "PIERREPONT SUR L ARENTELE", + "nomCommune": "PIERREPONT SUR L ARENTELE" }, { - "codePostal": "80132", - "codeCommune": "80836", - "libelleAcheminement": "YONVAL", - "nomCommune": "YONVAL" + "codePostal": "85520", + "codeCommune": "85278", + "libelleAcheminement": "ST VINCENT SUR JARD", + "nomCommune": "ST VINCENT SUR JARD" }, { - "codePostal": "95510", - "codeCommune": "95543", - "libelleAcheminement": "ST CYR EN ARTHIES", - "nomCommune": "ST CYR EN ARTHIES" + "codePostal": "88330", + "codeCommune": "88355", + "libelleAcheminement": "PORTIEUX", + "nomCommune": "PORTIEUX" }, { - "codePostal": "81250", - "codeCommune": "81003", - "libelleAcheminement": "ALBAN", - "nomCommune": "ALBAN" + "codePostal": "85450", + "codeCommune": "85286", + "libelleAcheminement": "LA TAILLEE", + "nomCommune": "LA TAILLEE" }, { - "codePostal": "95640", - "codeCommune": "95584", - "libelleAcheminement": "SANTEUIL", - "nomCommune": "SANTEUIL" + "codePostal": "88260", + "codeCommune": "88360", + "libelleAcheminement": "PROVENCHERES LES DARNEY", + "nomCommune": "PROVENCHERES LES DARNEY" }, { - "codePostal": "81000", - "codeCommune": "81004", - "libelleAcheminement": "ALBI", - "nomCommune": "ALBI" + "codePostal": "85600", + "codeCommune": "85295", + "libelleAcheminement": "TREIZE SEPTIERS", + "nomCommune": "TREIZE SEPTIERS" }, { - "codePostal": "95230", - "codeCommune": "95598", - "libelleAcheminement": "SOISY SOUS MONTMORENCY", - "nomCommune": "SOISY SOUS MONTMORENCY" + "codePostal": "88630", + "codeCommune": "88363", + "libelleAcheminement": "PUNEROT", + "nomCommune": "PUNEROT" }, { - "codePostal": "81470", - "codeCommune": "81006", - "libelleAcheminement": "ALGANS", - "nomCommune": "ALGANS" + "codePostal": "85590", + "codeCommune": "85296", + "libelleAcheminement": "TREIZE VENTS", + "nomCommune": "TREIZE VENTS" }, { - "codePostal": "95810", - "codeCommune": "95611", - "libelleAcheminement": "THEUVILLE", - "nomCommune": "THEUVILLE" + "codePostal": "88500", + "codeCommune": "88364", + "libelleAcheminement": "PUZIEUX", + "nomCommune": "PUZIEUX" }, { - "codePostal": "81430", - "codeCommune": "81010", - "libelleAcheminement": "AMBIALET", - "nomCommune": "AMBIALET" + "codePostal": "85250", + "codeCommune": "85301", + "libelleAcheminement": "VENDRENNES", + "nomCommune": "VENDRENNES" }, { - "codePostal": "95760", - "codeCommune": "95628", - "libelleAcheminement": "VALMONDOIS", - "nomCommune": "VALMONDOIS" + "codePostal": "88130", + "codeCommune": "88374", + "libelleAcheminement": "RAPEY", + "nomCommune": "RAPEY" }, { - "codePostal": "81110", - "codeCommune": "81016", - "libelleAcheminement": "ARFONS", - "nomCommune": "ARFONS" + "codePostal": "85450", + "codeCommune": "85304", + "libelleAcheminement": "VOUILLE LES MARAIS", + "nomCommune": "VOUILLE LES MARAIS" }, { - "codePostal": "95500", - "codeCommune": "95633", - "libelleAcheminement": "VAUDHERLAND", - "nomCommune": "VAUDHERLAND" + "codePostal": "88330", + "codeCommune": "88379", + "libelleAcheminement": "REHAINCOURT", + "nomCommune": "REHAINCOURT" }, { - "codePostal": "81360", - "codeCommune": "81017", - "libelleAcheminement": "ARIFAT", - "nomCommune": "ARIFAT" + "codePostal": "86430", + "codeCommune": "86001", + "libelleAcheminement": "ADRIERS", + "nomCommune": "ADRIERS" }, { - "codePostal": "95270", - "codeCommune": "95652", - "libelleAcheminement": "VIARMES", - "nomCommune": "VIARMES" + "codePostal": "88300", + "codeCommune": "88393", + "libelleAcheminement": "ROLLAINVILLE", + "nomCommune": "ROLLAINVILLE" }, { - "codePostal": "81320", - "codeCommune": "81023", - "libelleAcheminement": "BARRE", - "nomCommune": "BARRE" + "codePostal": "86310", + "codeCommune": "86006", + "libelleAcheminement": "ANTIGNY", + "nomCommune": "ANTIGNY" }, { - "codePostal": "95510", - "codeCommune": "95656", - "libelleAcheminement": "VIENNE EN ARTHIES", - "nomCommune": "VIENNE EN ARTHIES" + "codePostal": "88600", + "codeCommune": "88398", + "libelleAcheminement": "LES ROUGES EAUX", + "nomCommune": "LES ROUGES EAUX" }, { - "codePostal": "81630", - "codeCommune": "81024", - "libelleAcheminement": "BEAUVAIS SUR TESCOU", - "nomCommune": "BEAUVAIS SUR TESCOU" + "codePostal": "86100", + "codeCommune": "86007", + "libelleAcheminement": "ANTRAN", + "nomCommune": "ANTRAN" }, { - "codePostal": "97121", - "codeCommune": "97102", - "libelleAcheminement": "ANSE BERTRAND", - "nomCommune": "ANSE BERTRAND" + "codePostal": "88500", + "codeCommune": "88400", + "libelleAcheminement": "ROUVRES EN XAINTOIS", + "nomCommune": "ROUVRES EN XAINTOIS" }, { - "codePostal": "81430", - "codeCommune": "81026", - "libelleAcheminement": "BELLEGARDE MARSAL", - "nomCommune": "BELLEGARDE MARSAL" + "codePostal": "86200", + "codeCommune": "86008", + "libelleAcheminement": "ARCAY", + "nomCommune": "ARCAY" }, { - "codePostal": "97125", - "codeCommune": "97106", - "libelleAcheminement": "BOUILLANTE", - "nomCommune": "BOUILLANTE" + "codePostal": "88320", + "codeCommune": "88404", + "libelleAcheminement": "ROZIERES SUR MOUZON", + "nomCommune": "ROZIERES SUR MOUZON" }, { - "codePostal": "81260", - "codeCommune": "81028", - "libelleAcheminement": "BERLATS", - "nomCommune": "BERLATS" + "codePostal": "86250", + "codeCommune": "86012", + "libelleAcheminement": "ASNOIS", + "nomCommune": "ASNOIS" }, { - "codePostal": "97130", - "codeCommune": "97107", - "libelleAcheminement": "CAPESTERRE BELLE EAU", - "nomCommune": "CAPESTERRE BELLE EAU" + "codePostal": "88700", + "codeCommune": "88410", + "libelleAcheminement": "STE BARBE", + "nomCommune": "STE BARBE" }, { - "codePostal": "81440", - "codeCommune": "81040", - "libelleAcheminement": "BROUSSE", - "nomCommune": "BROUSSE" + "codePostal": "86330", + "codeCommune": "86013", + "libelleAcheminement": "AULNAY", + "nomCommune": "AULNAY" }, { - "codePostal": "97130", - "codeCommune": "97107", - "libelleAcheminement": "CAPESTERRE BELLE EAU", - "nomCommune": "CAPESTERRE BELLE EAU" + "codePostal": "88210", + "codeCommune": "88419", + "libelleAcheminement": "ST JEAN D ORMONT", + "nomCommune": "ST JEAN D ORMONT" }, { - "codePostal": "81150", - "codeCommune": "81061", - "libelleAcheminement": "CASTANET", - "nomCommune": "CASTANET" + "codePostal": "86200", + "codeCommune": "86018", + "libelleAcheminement": "BASSES", + "nomCommune": "BASSES" }, { - "codePostal": "97113", - "codeCommune": "97109", - "libelleAcheminement": "GOURBEYRE", - "nomCommune": "GOURBEYRE" + "codePostal": "88700", + "codeCommune": "88425", + "libelleAcheminement": "ST MAURICE SUR MORTAGNE", + "nomCommune": "ST MAURICE SUR MORTAGNE" }, { - "codePostal": "81200", - "codeCommune": "81066", - "libelleAcheminement": "CAUCALIERES", - "nomCommune": "CAUCALIERES" + "codePostal": "86490", + "codeCommune": "86019", + "libelleAcheminement": "BEAUMONT ST CYR", + "nomCommune": "BEAUMONT ST CYR" }, { - "codePostal": "97131", - "codeCommune": "97119", - "libelleAcheminement": "PETIT CANAL", - "nomCommune": "PETIT CANAL" + "codePostal": "88200", + "codeCommune": "88429", + "libelleAcheminement": "ST NABORD", + "nomCommune": "ST NABORD" }, { - "codePostal": "81170", - "codeCommune": "81069", - "libelleAcheminement": "CORDES SUR CIEL", - "nomCommune": "CORDES SUR CIEL" + "codePostal": "86190", + "codeCommune": "86024", + "libelleAcheminement": "BERUGES", + "nomCommune": "BERUGES" }, { - "codePostal": "97117", - "codeCommune": "97122", - "libelleAcheminement": "PORT LOUIS", - "nomCommune": "PORT LOUIS" + "codePostal": "88140", + "codeCommune": "88430", + "libelleAcheminement": "ST OUEN LES PAREY", + "nomCommune": "ST OUEN LES PAREY" }, { - "codePostal": "81470", - "codeCommune": "81076", - "libelleAcheminement": "CUQ TOULZA", - "nomCommune": "CUQ TOULZA" + "codePostal": "86310", + "codeCommune": "86025", + "libelleAcheminement": "BETHINES", + "nomCommune": "BETHINES" }, { - "codePostal": "97136", - "codeCommune": "97130", - "libelleAcheminement": "TERRE DE BAS", - "nomCommune": "TERRE DE BAS" + "codePostal": "88700", + "codeCommune": "88432", + "libelleAcheminement": "ST PIERREMONT", + "nomCommune": "ST PIERREMONT" }, { - "codePostal": "81170", - "codeCommune": "81080", - "libelleAcheminement": "DONNAZAC", - "nomCommune": "DONNAZAC" + "codePostal": "86300", + "codeCommune": "86031", + "libelleAcheminement": "BONNES", + "nomCommune": "BONNES" }, { - "codePostal": "97141", - "codeCommune": "97133", - "libelleAcheminement": "VIEUX FORT", - "nomCommune": "VIEUX FORT" + "codePostal": "88480", + "codeCommune": "88435", + "libelleAcheminement": "ST REMY", + "nomCommune": "ST REMY" }, { - "codePostal": "81150", - "codeCommune": "81087", - "libelleAcheminement": "FAYSSAC", - "nomCommune": "FAYSSAC" + "codePostal": "86120", + "codeCommune": "86036", + "libelleAcheminement": "BOURNAND", + "nomCommune": "BOURNAND" }, { - "codePostal": "97217", - "codeCommune": "97202", - "libelleAcheminement": "LES ANSES D ARLET", - "nomCommune": "LES ANSES D ARLET" + "codePostal": "88390", + "codeCommune": "88439", + "libelleAcheminement": "SANCHEY", + "nomCommune": "SANCHEY" }, { - "codePostal": "81120", - "codeCommune": "81088", - "libelleAcheminement": "FAUCH", - "nomCommune": "FAUCH" + "codePostal": "86160", + "codeCommune": "86038", + "libelleAcheminement": "BRION", + "nomCommune": "BRION" }, { - "codePostal": "97221", - "codeCommune": "97204", - "libelleAcheminement": "LE CARBET", - "nomCommune": "LE CARBET" + "codePostal": "88120", + "codeCommune": "88442", + "libelleAcheminement": "SAPOIS", + "nomCommune": "SAPOIS" }, { - "codePostal": "81500", - "codeCommune": "81092", - "libelleAcheminement": "FIAC", - "nomCommune": "FIAC" + "codePostal": "86180", + "codeCommune": "86041", + "libelleAcheminement": "BUXEROLLES", + "nomCommune": "BUXEROLLES" }, { - "codePostal": "97200", - "codeCommune": "97209", - "libelleAcheminement": "FORT DE FRANCE", - "nomCommune": "FORT DE FRANCE" + "codePostal": "88140", + "codeCommune": "88446", + "libelleAcheminement": "SAULXURES LES BULGNEVILLE", + "nomCommune": "SAULXURES LES BULGNEVILLE" }, { - "codePostal": "81600", - "codeCommune": "81099", - "libelleAcheminement": "GAILLAC", - "nomCommune": "GAILLAC" + "codePostal": "86600", + "codeCommune": "86045", + "libelleAcheminement": "CELLE LEVESCAULT", + "nomCommune": "CELLE LEVESCAULT" }, { - "codePostal": "97234", - "codeCommune": "97209", - "libelleAcheminement": "FORT DE FRANCE", - "nomCommune": "FORT DE FRANCE" + "codePostal": "88290", + "codeCommune": "88447", + "libelleAcheminement": "SAULXURES SUR MOSELOTTE", + "nomCommune": "SAULXURES SUR MOSELOTTE" }, { - "codePostal": "81700", - "codeCommune": "81100", - "libelleAcheminement": "GARREVAQUES", - "nomCommune": "GARREVAQUES" + "codePostal": "86530", + "codeCommune": "86046", + "libelleAcheminement": "CENON SUR VIENNE", + "nomCommune": "CENON SUR VIENNE" }, { - "codePostal": "97211", - "codeCommune": "97220", - "libelleAcheminement": "RIVIERE PILOTE", - "nomCommune": "RIVIERE PILOTE" + "codePostal": "88630", + "codeCommune": "88453", + "libelleAcheminement": "SERAUMONT", + "nomCommune": "SERAUMONT" }, { - "codePostal": "81800", - "codeCommune": "81106", - "libelleAcheminement": "GRAZAC", - "nomCommune": "GRAZAC" + "codePostal": "86200", + "codeCommune": "86049", + "libelleAcheminement": "CHALAIS", + "nomCommune": "CHALAIS" }, { - "codePostal": "97270", - "codeCommune": "97223", - "libelleAcheminement": "ST ESPRIT", - "nomCommune": "ST ESPRIT" + "codePostal": "88100", + "codeCommune": "88463", + "libelleAcheminement": "TAINTRUX", + "nomCommune": "TAINTRUX" }, { - "codePostal": "81440", - "codeCommune": "81109", - "libelleAcheminement": "JONQUIERES", - "nomCommune": "JONQUIERES" + "codePostal": "86170", + "codeCommune": "86053", + "libelleAcheminement": "CHAMPIGNY EN ROCHEREAU", + "nomCommune": "CHAMPIGNY EN ROCHEREAU" }, { - "codePostal": "97212", - "codeCommune": "97224", - "libelleAcheminement": "ST JOSEPH", - "nomCommune": "ST JOSEPH" + "codePostal": "88150", + "codeCommune": "88465", + "libelleAcheminement": "THAON LES VOSGES", + "nomCommune": "THAON LES VOSGES" }, { - "codePostal": "81340", - "codeCommune": "81122", - "libelleAcheminement": "LACAPELLE PINET", - "nomCommune": "LACAPELLE PINET" + "codePostal": "86100", + "codeCommune": "86066", + "libelleAcheminement": "CHATELLERAULT", + "nomCommune": "CHATELLERAULT" }, { - "codePostal": "97222", - "codeCommune": "97234", - "libelleAcheminement": "BELLEFONTAINE", - "nomCommune": "BELLEFONTAINE" + "codePostal": "88290", + "codeCommune": "88467", + "libelleAcheminement": "THIEFOSSE", + "nomCommune": "THIEFOSSE" }, { - "codePostal": "81230", - "codeCommune": "81124", - "libelleAcheminement": "LACAUNE", - "nomCommune": "LACAUNE" + "codePostal": "86450", + "codeCommune": "86072", + "libelleAcheminement": "CHENEVELLES", + "nomCommune": "CHENEVELLES" }, { - "codePostal": "97390", - "codeCommune": "97301", - "libelleAcheminement": "REGINA", - "nomCommune": "REGINA" + "codePostal": "88530", + "codeCommune": "88470", + "libelleAcheminement": "LE THOLY", + "nomCommune": "LE THOLY" }, { - "codePostal": "81330", - "codeCommune": "81125", - "libelleAcheminement": "LACAZE", - "nomCommune": "LACAZE" + "codePostal": "86170", + "codeCommune": "86076", + "libelleAcheminement": "CISSE", + "nomCommune": "CISSE" }, { - "codePostal": "97350", - "codeCommune": "97303", - "libelleAcheminement": "IRACOUBO", - "nomCommune": "IRACOUBO" + "codePostal": "88300", + "codeCommune": "88478", + "libelleAcheminement": "TRANQUEVILLE GRAUX", + "nomCommune": "TRANQUEVILLE GRAUX" }, { - "codePostal": "81220", - "codeCommune": "81132", - "libelleAcheminement": "GUITALENS L ALBAREDE", - "nomCommune": "GUITALENS L ALBAREDE" + "codePostal": "86200", + "codeCommune": "86079", + "libelleAcheminement": "LA ROCHE RIGAULT", + "nomCommune": "LA ROCHE RIGAULT" }, { - "codePostal": "97354", - "codeCommune": "97309", - "libelleAcheminement": "REMIRE MONTJOLY", - "nomCommune": "REMIRE MONTJOLY" + "codePostal": "88220", + "codeCommune": "88484", + "libelleAcheminement": "UZEMAIN", + "nomCommune": "UZEMAIN" }, { - "codePostal": "81500", - "codeCommune": "81159", - "libelleAcheminement": "MASSAC SERAN", - "nomCommune": "MASSAC SERAN" + "codePostal": "86700", + "codeCommune": "86082", + "libelleAcheminement": "VALENCE EN POITOU", + "nomCommune": "VALENCE EN POITOU" }, { - "codePostal": "97314", - "codeCommune": "97352", - "libelleAcheminement": "SAUL", - "nomCommune": "SAUL" + "codePostal": "88270", + "codeCommune": "88488", + "libelleAcheminement": "VALFROICOURT", + "nomCommune": "VALFROICOURT" }, { - "codePostal": "81110", - "codeCommune": "81160", - "libelleAcheminement": "MASSAGUEL", - "nomCommune": "MASSAGUEL" + "codePostal": "86130", + "codeCommune": "86095", + "libelleAcheminement": "DISSAY", + "nomCommune": "DISSAY" }, { - "codePostal": "97316", - "codeCommune": "97362", - "libelleAcheminement": "POMPIDOU PAPA ICHTON", - "nomCommune": "PAPAICHTON" + "codePostal": "88230", + "codeCommune": "88492", + "libelleAcheminement": "LE VALTIN", + "nomCommune": "LE VALTIN" }, { - "codePostal": "81190", - "codeCommune": "81168", - "libelleAcheminement": "MIRANDOL BOURGNOUNAC", - "nomCommune": "MIRANDOL BOURGNOUNAC" + "codePostal": "86330", + "codeCommune": "86108", + "libelleAcheminement": "LA GRIMAUDIERE", + "nomCommune": "LA GRIMAUDIERE" }, { - "codePostal": "97431", - "codeCommune": "97406", - "libelleAcheminement": "LA PLAINE DES PALMISTES", - "nomCommune": "LA PLAINE DES PALMISTES" + "codePostal": "88450", + "codeCommune": "88493", + "libelleAcheminement": "VARMONZEY", + "nomCommune": "VARMONZEY" }, { - "codePostal": "81210", - "codeCommune": "81177", - "libelleAcheminement": "MONTFA", - "nomCommune": "MONTFA" + "codePostal": "86330", + "codeCommune": "86108", + "libelleAcheminement": "LA GRIMAUDIERE", + "nomCommune": "LA GRIMAUDIERE" }, { - "codePostal": "97420", - "codeCommune": "97407", - "libelleAcheminement": "LE PORT", - "nomCommune": "LE PORT" + "codePostal": "88330", + "codeCommune": "88497", + "libelleAcheminement": "VAXONCOURT", + "nomCommune": "VAXONCOURT" }, { - "codePostal": "81630", - "codeCommune": "81178", - "libelleAcheminement": "MONTGAILLARD", - "nomCommune": "MONTGAILLARD" + "codePostal": "86380", + "codeCommune": "86115", + "libelleAcheminement": "JAUNAY MARIGNY", + "nomCommune": "JAUNAY MARIGNY" }, { - "codePostal": "97420", - "codeCommune": "97407", - "libelleAcheminement": "LE PORT", - "nomCommune": "LE PORT" + "codePostal": "88200", + "codeCommune": "88498", + "libelleAcheminement": "VECOUX", + "nomCommune": "VECOUX" }, { - "codePostal": "81170", - "codeCommune": "81191", - "libelleAcheminement": "MOUZIEYS PANENS", - "nomCommune": "MOUZIEYS PANENS" + "codePostal": "86600", + "codeCommune": "86116", + "libelleAcheminement": "JAZENEUIL", + "nomCommune": "JAZENEUIL" }, { - "codePostal": "97400", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "88210", + "codeCommune": "88501", + "libelleAcheminement": "LE VERMONT", + "nomCommune": "LE VERMONT" }, { - "codePostal": "81320", - "codeCommune": "81192", - "libelleAcheminement": "MURAT SUR VEBRE", - "nomCommune": "MURAT SUR VEBRE" + "codePostal": "86350", + "codeCommune": "86119", + "libelleAcheminement": "JOUSSE", + "nomCommune": "JOUSSE" }, { - "codePostal": "97400", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "88430", + "codeCommune": "88505", + "libelleAcheminement": "VIENVILLE", + "nomCommune": "VIENVILLE" }, { - "codePostal": "81700", - "codeCommune": "81200", - "libelleAcheminement": "PALLEVILLE", - "nomCommune": "PALLEVILLE" + "codePostal": "86470", + "codeCommune": "86123", + "libelleAcheminement": "BOIVRE LA VALLEE", + "nomCommune": "BOIVRE LA VALLEE" }, { - "codePostal": "97490", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "88210", + "codeCommune": "88506", + "libelleAcheminement": "VIEUX MOULIN", + "nomCommune": "VIEUX MOULIN" }, { - "codePostal": "81190", - "codeCommune": "81201", - "libelleAcheminement": "PAMPELONNE", - "nomCommune": "PAMPELONNE" + "codePostal": "86470", + "codeCommune": "86123", + "libelleAcheminement": "BOIVRE LA VALLEE", + "nomCommune": "BOIVRE LA VALLEE" }, { - "codePostal": "97490", - "codeCommune": "97411", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "88600", + "codeCommune": "88512", + "libelleAcheminement": "VIMENIL", + "nomCommune": "VIMENIL" }, { - "codePostal": "81310", - "codeCommune": "81208", - "libelleAcheminement": "PEYROLE", - "nomCommune": "PEYROLE" + "codePostal": "86600", + "codeCommune": "86139", + "libelleAcheminement": "LUSIGNAN", + "nomCommune": "LUSIGNAN" }, { - "codePostal": "97480", - "codeCommune": "97412", - "libelleAcheminement": "ST JOSEPH", - "nomCommune": "ST JOSEPH" + "codePostal": "88500", + "codeCommune": "88518", + "libelleAcheminement": "VIVIERS LES OFFROICOURT", + "nomCommune": "VIVIERS LES OFFROICOURT" }, { - "codePostal": "81600", - "codeCommune": "81225", - "libelleAcheminement": "RIVIERES", - "nomCommune": "RIVIERES" + "codePostal": "86320", + "codeCommune": "86140", + "libelleAcheminement": "LUSSAC LES CHATEAUX", + "nomCommune": "LUSSAC LES CHATEAUX" }, { - "codePostal": "97421", - "codeCommune": "97414", - "libelleAcheminement": "ST LOUIS", - "nomCommune": "ST LOUIS" + "codePostal": "88400", + "codeCommune": "88531", + "libelleAcheminement": "XONRUPT LONGEMER", + "nomCommune": "XONRUPT LONGEMER" }, { - "codePostal": "81120", - "codeCommune": "81233", - "libelleAcheminement": "TERRE DE BANCALIE", - "nomCommune": "TERRE DE BANCALIE" + "codePostal": "86160", + "codeCommune": "86141", + "libelleAcheminement": "MAGNE", + "nomCommune": "MAGNE" }, { - "codePostal": "97411", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "89310", + "codeCommune": "89010", + "libelleAcheminement": "ANNAY SUR SEREIN", + "nomCommune": "ANNAY SUR SEREIN" }, { - "codePostal": "81240", - "codeCommune": "81238", - "libelleAcheminement": "ST AMANS SOULT", - "nomCommune": "ST AMANS SOULT" + "codePostal": "86190", + "codeCommune": "86142", + "libelleAcheminement": "MAILLE", + "nomCommune": "MAILLE" }, { - "codePostal": "97434", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "89380", + "codeCommune": "89013", + "libelleAcheminement": "APPOIGNY", + "nomCommune": "APPOIGNY" }, { - "codePostal": "81140", - "codeCommune": "81243", - "libelleAcheminement": "ST BEAUZILE", - "nomCommune": "ST BEAUZILE" + "codePostal": "86160", + "codeCommune": "86148", + "libelleAcheminement": "MARNAY", + "nomCommune": "MARNAY" }, { - "codePostal": "97435", - "codeCommune": "97415", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "89320", + "codeCommune": "89014", + "libelleAcheminement": "ARCES DILO", + "nomCommune": "ARCES DILO" }, { - "codePostal": "81140", - "codeCommune": "81246", - "libelleAcheminement": "STE CECILE DU CAYROU", - "nomCommune": "STE CECILE DU CAYROU" + "codePostal": "86200", + "codeCommune": "86151", + "libelleAcheminement": "MAULAY", + "nomCommune": "MAULAY" }, { - "codePostal": "97442", - "codeCommune": "97417", - "libelleAcheminement": "ST PHILIPPE", - "nomCommune": "ST PHILIPPE" + "codePostal": "89320", + "codeCommune": "89014", + "libelleAcheminement": "ARCES DILO", + "nomCommune": "ARCES DILO" }, { - "codePostal": "81190", - "codeCommune": "81249", - "libelleAcheminement": "STE GEMME", - "nomCommune": "STE GEMME" + "codePostal": "86110", + "codeCommune": "86154", + "libelleAcheminement": "MAZEUIL", + "nomCommune": "MAZEUIL" }, { - "codePostal": "97442", - "codeCommune": "97417", - "libelleAcheminement": "ST PHILIPPE", - "nomCommune": "ST PHILIPPE" + "codePostal": "89500", + "codeCommune": "89018", + "libelleAcheminement": "ARMEAU", + "nomCommune": "ARMEAU" }, { - "codePostal": "81350", - "codeCommune": "81253", - "libelleAcheminement": "ST GREGOIRE", - "nomCommune": "ST GREGOIRE" + "codePostal": "86550", + "codeCommune": "86157", + "libelleAcheminement": "MIGNALOUX BEAUVOIR", + "nomCommune": "MIGNALOUX BEAUVOIR" }, { - "codePostal": "97438", - "codeCommune": "97418", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "89450", + "codeCommune": "89021", + "libelleAcheminement": "ASQUINS", + "nomCommune": "ASQUINS" }, { - "codePostal": "81500", - "codeCommune": "81255", - "libelleAcheminement": "ST JEAN DE RIVES", - "nomCommune": "ST JEAN DE RIVES" + "codePostal": "86330", + "codeCommune": "86161", + "libelleAcheminement": "MONCONTOUR", + "nomCommune": "MONCONTOUR" }, { - "codePostal": "97438", - "codeCommune": "97418", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "89200", + "codeCommune": "89025", + "libelleAcheminement": "AVALLON", + "nomCommune": "AVALLON" }, { - "codePostal": "81210", - "codeCommune": "81256", - "libelleAcheminement": "ST JEAN DE VALS", - "nomCommune": "ST JEAN DE VALS" + "codePostal": "86230", + "codeCommune": "86162", + "libelleAcheminement": "MONDION", + "nomCommune": "MONDION" }, { - "codePostal": "97438", - "codeCommune": "97418", - "libelleAcheminement": "STE MARIE", - "nomCommune": "STE MARIE" + "codePostal": "89430", + "codeCommune": "89028", + "libelleAcheminement": "BAON", + "nomCommune": "BAON" }, { - "codePostal": "81440", - "codeCommune": "81258", - "libelleAcheminement": "ST JULIEN DU PUY", - "nomCommune": "ST JULIEN DU PUY" + "codePostal": "86210", + "codeCommune": "86164", + "libelleAcheminement": "MONTHOIRON", + "nomCommune": "MONTHOIRON" }, { - "codePostal": "97439", - "codeCommune": "97419", - "libelleAcheminement": "STE ROSE", - "nomCommune": "STE ROSE" + "codePostal": "89210", + "codeCommune": "89035", + "libelleAcheminement": "BELLECHAUME", + "nomCommune": "BELLECHAUME" }, { - "codePostal": "81140", - "codeCommune": "81265", - "libelleAcheminement": "ST MICHEL DE VAX", - "nomCommune": "ST MICHEL DE VAX" + "codePostal": "86500", + "codeCommune": "86165", + "libelleAcheminement": "MONTMORILLON", + "nomCommune": "MONTMORILLON" }, { - "codePostal": "97418", - "codeCommune": "97422", - "libelleAcheminement": "LE TAMPON", - "nomCommune": "LE TAMPON" + "codePostal": "89570", + "codeCommune": "89041", + "libelleAcheminement": "BEUGNON", + "nomCommune": "BEUGNON" }, { - "codePostal": "81640", - "codeCommune": "81275", - "libelleAcheminement": "SALLES", - "nomCommune": "SALLES" + "codePostal": "86200", + "codeCommune": "86173", + "libelleAcheminement": "MOUTERRE SILLY", + "nomCommune": "MOUTERRE SILLY" }, { - "codePostal": "97430", - "codeCommune": "97422", - "libelleAcheminement": "LE TAMPON", - "nomCommune": "LE TAMPON" + "codePostal": "89440", + "codeCommune": "89043", + "libelleAcheminement": "BLACY", + "nomCommune": "BLACY" }, { - "codePostal": "81600", - "codeCommune": "81283", - "libelleAcheminement": "SENOUILLAC", - "nomCommune": "SENOUILLAC" + "codePostal": "86380", + "codeCommune": "86184", + "libelleAcheminement": "OUZILLY", + "nomCommune": "OUZILLY" }, { - "codePostal": "97413", - "codeCommune": "97424", - "libelleAcheminement": "CILAOS", - "nomCommune": "CILAOS" + "codePostal": "89230", + "codeCommune": "89045", + "libelleAcheminement": "BLEIGNY LE CARREAU", + "nomCommune": "BLEIGNY LE CARREAU" }, { - "codePostal": "81630", - "codeCommune": "81293", - "libelleAcheminement": "TAURIAC", - "nomCommune": "TAURIAC" + "codePostal": "86220", + "codeCommune": "86186", + "libelleAcheminement": "OYRE", + "nomCommune": "OYRE" }, { - "codePostal": "97500", - "codeCommune": "97501", - "libelleAcheminement": "ST PIERRE ET MIQUELON", - "nomCommune": "MIQUELON LANGLADE" + "codePostal": "89500", + "codeCommune": "89060", + "libelleAcheminement": "BUSSY LE REPOS", + "nomCommune": "BUSSY LE REPOS" }, { - "codePostal": "81340", - "codeCommune": "81308", - "libelleAcheminement": "VALENCE D ALBIGEOIS", - "nomCommune": "VALENCE D ALBIGEOIS" + "codePostal": "86220", + "codeCommune": "86195", + "libelleAcheminement": "PORT DE PILES", + "nomCommune": "PORT DE PILES" }, { - "codePostal": "97630", - "codeCommune": "97601", - "libelleAcheminement": "ACOUA", - "nomCommune": "ACOUA" + "codePostal": "89660", + "codeCommune": "89071", + "libelleAcheminement": "CHAMOUX", + "nomCommune": "CHAMOUX" }, { - "codePostal": "81140", - "codeCommune": "81309", - "libelleAcheminement": "VAOUR", - "nomCommune": "VAOUR" + "codePostal": "86190", + "codeCommune": "86204", + "libelleAcheminement": "QUINCAY", + "nomCommune": "QUINCAY" }, { - "codePostal": "97670", - "codeCommune": "97605", - "libelleAcheminement": "CHICONI", - "nomCommune": "CHICONI" + "codePostal": "89260", + "codeCommune": "89080", + "libelleAcheminement": "LA CHAPELLE SUR OREUSE", + "nomCommune": "LA CHAPELLE SUR OREUSE" }, { - "codePostal": "81570", - "codeCommune": "81315", - "libelleAcheminement": "VIELMUR SUR AGOUT", - "nomCommune": "VIELMUR SUR AGOUT" + "codePostal": "86330", + "codeCommune": "86218", + "libelleAcheminement": "ST CLAIR", + "nomCommune": "ST CLAIR" }, { - "codePostal": "97620", - "codeCommune": "97606", - "libelleAcheminement": "CHIRONGUI", - "nomCommune": "CHIRONGUI" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "81140", - "codeCommune": "81316", - "libelleAcheminement": "VIEUX", - "nomCommune": "VIEUX" + "codePostal": "86200", + "codeCommune": "86227", + "libelleAcheminement": "ST LAON", + "nomCommune": "ST LAON" }, { - "codePostal": "97625", - "codeCommune": "97609", - "libelleAcheminement": "KANI KELI", - "nomCommune": "KANI KELI" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "81500", - "codeCommune": "81318", - "libelleAcheminement": "VILLENEUVE LES LAVAUR", - "nomCommune": "VILLENEUVE LES LAVAUR" + "codePostal": "86300", + "codeCommune": "86233", + "libelleAcheminement": "VALDIVIENNE", + "nomCommune": "VALDIVIENNE" }, { - "codePostal": "97600", - "codeCommune": "97610", - "libelleAcheminement": "KOUNGOU", - "nomCommune": "KOUNGOU" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "81500", - "codeCommune": "81324", - "libelleAcheminement": "VIVIERS LES LAVAUR", - "nomCommune": "VIVIERS LES LAVAUR" + "codePostal": "86300", + "codeCommune": "86233", + "libelleAcheminement": "VALDIVIENNE", + "nomCommune": "VALDIVIENNE" }, { - "codePostal": "97670", - "codeCommune": "97614", - "libelleAcheminement": "OUANGANI", - "nomCommune": "OUANGANI" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "81290", - "codeCommune": "81325", - "libelleAcheminement": "VIVIERS LES MONTAGNES", - "nomCommune": "VIVIERS LES MONTAGNES" + "codePostal": "86350", + "codeCommune": "86248", + "libelleAcheminement": "ST SECONDIN", + "nomCommune": "ST SECONDIN" }, { - "codePostal": "97670", - "codeCommune": "97614", - "libelleAcheminement": "OUANGANI", - "nomCommune": "OUANGANI" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "81150", - "codeCommune": "81326", - "libelleAcheminement": "STE CROIX", - "nomCommune": "STE CROIX" + "codePostal": "86420", + "codeCommune": "86249", + "libelleAcheminement": "SAIRES", + "nomCommune": "SAIRES" }, { - "codePostal": "98786", - "codeCommune": "98711", - "libelleAcheminement": "HITIANAU", - "nomCommune": "ANAA" + "codePostal": "89500", + "codeCommune": "89094", + "libelleAcheminement": "CHAUMOT", + "nomCommune": "CHAUMOT" }, { - "codePostal": "82290", - "codeCommune": "82001", - "libelleAcheminement": "ALBEFEUILLE LAGARDE", - "nomCommune": "ALBEFEUILLE LAGARDE" + "codePostal": "86120", + "codeCommune": "86269", + "libelleAcheminement": "TERNAY", + "nomCommune": "TERNAY" }, { - "codePostal": "98701", - "codeCommune": "98712", - "libelleAcheminement": "ARUE", - "nomCommune": "ARUE" + "codePostal": "89690", + "codeCommune": "89100", + "libelleAcheminement": "CHEROY", + "nomCommune": "CHEROY" }, { - "codePostal": "82100", - "codeCommune": "82012", - "libelleAcheminement": "LES BARTHES", - "nomCommune": "LES BARTHES" + "codePostal": "86290", + "codeCommune": "86273", + "libelleAcheminement": "LA TRIMOUILLE", + "nomCommune": "LA TRIMOUILLE" }, { - "codePostal": "98761", - "codeCommune": "98713", - "libelleAcheminement": "RAUTINI", - "nomCommune": "ARUTUA" + "codePostal": "89400", + "codeCommune": "89105", + "libelleAcheminement": "CHICHERY", + "nomCommune": "CHICHERY" }, { - "codePostal": "82600", - "codeCommune": "82014", - "libelleAcheminement": "BEAUPUY", - "nomCommune": "BEAUPUY" + "codePostal": "86120", + "codeCommune": "86274", + "libelleAcheminement": "LES TROIS MOUTIERS", + "nomCommune": "LES TROIS MOUTIERS" }, { - "codePostal": "98762", - "codeCommune": "98713", - "libelleAcheminement": "NIUTAHI", - "nomCommune": "ARUTUA" + "codePostal": "89700", + "codeCommune": "89112", + "libelleAcheminement": "COLLAN", + "nomCommune": "COLLAN" }, { - "codePostal": "82370", - "codeCommune": "82027", - "libelleAcheminement": "CAMPSAS", - "nomCommune": "CAMPSAS" + "codePostal": "86350", + "codeCommune": "86276", + "libelleAcheminement": "USSON DU POITOU", + "nomCommune": "USSON DU POITOU" }, { - "codePostal": "98730", - "codeCommune": "98714", - "libelleAcheminement": "ANAU", - "nomCommune": "BORA BORA" + "codePostal": "89100", + "codeCommune": "89113", + "libelleAcheminement": "COLLEMIERS", + "nomCommune": "COLLEMIERS" }, { - "codePostal": "82210", - "codeCommune": "82035", - "libelleAcheminement": "CAUMONT", - "nomCommune": "CAUMONT" + "codePostal": "86230", + "codeCommune": "86280", + "libelleAcheminement": "VELLECHES", + "nomCommune": "VELLECHES" }, { - "codePostal": "98730", - "codeCommune": "98714", - "libelleAcheminement": "NUNUE", - "nomCommune": "BORA BORA" + "codePostal": "89140", + "codeCommune": "89115", + "libelleAcheminement": "COMPIGNY", + "nomCommune": "COMPIGNY" }, { - "codePostal": "82440", - "codeCommune": "82039", - "libelleAcheminement": "CAYRAC", - "nomCommune": "CAYRAC" + "codePostal": "86700", + "codeCommune": "86296", + "libelleAcheminement": "VOULON", + "nomCommune": "VOULON" }, { - "codePostal": "98704", - "codeCommune": "98715", - "libelleAcheminement": "FAAA", - "nomCommune": "FAAA" + "codePostal": "89580", + "codeCommune": "89118", + "libelleAcheminement": "COULANGES LA VINEUSE", + "nomCommune": "COULANGES LA VINEUSE" }, { - "codePostal": "82140", - "codeCommune": "82041", - "libelleAcheminement": "CAZALS", - "nomCommune": "CAZALS" + "codePostal": "86580", + "codeCommune": "86297", + "libelleAcheminement": "VOUNEUIL SOUS BIARD", + "nomCommune": "VOUNEUIL SOUS BIARD" }, { - "codePostal": "98790", - "codeCommune": "98716", - "libelleAcheminement": "OFARE", - "nomCommune": "FAKARAVA" + "codePostal": "89190", + "codeCommune": "89122", + "libelleAcheminement": "COURGENAY", + "nomCommune": "COURGENAY" }, { - "codePostal": "82700", - "codeCommune": "82045", - "libelleAcheminement": "CORDES TOLOSANNES", - "nomCommune": "CORDES TOLOSANNES" + "codePostal": "86170", + "codeCommune": "86300", + "libelleAcheminement": "YVERSAY", + "nomCommune": "YVERSAY" }, { - "codePostal": "98740", - "codeCommune": "98718", - "libelleAcheminement": "HANAVAVE", - "nomCommune": "FATU HIVA" + "codePostal": "89150", + "codeCommune": "89126", + "libelleAcheminement": "COURTOIN", + "nomCommune": "COURTOIN" }, { - "codePostal": "82170", - "codeCommune": "82048", - "libelleAcheminement": "DIEUPENTALE", - "nomCommune": "DIEUPENTALE" + "codePostal": "87160", + "codeCommune": "87003", + "libelleAcheminement": "ARNAC LA POSTE", + "nomCommune": "ARNAC LA POSTE" }, { - "codePostal": "98755", - "codeCommune": "98719", - "libelleAcheminement": "KAMAKA", - "nomCommune": "GAMBIER" + "codePostal": "89440", + "codeCommune": "89128", + "libelleAcheminement": "COUTARNOUX", + "nomCommune": "COUTARNOUX" }, { - "codePostal": "82340", - "codeCommune": "82049", - "libelleAcheminement": "DONZAC", - "nomCommune": "DONZAC" + "codePostal": "87220", + "codeCommune": "87005", + "libelleAcheminement": "AUREIL", + "nomCommune": "AUREIL" }, { - "codePostal": "98755", - "codeCommune": "98719", - "libelleAcheminement": "AKAMARU", - "nomCommune": "GAMBIER" + "codePostal": "89116", + "codeCommune": "89133", + "libelleAcheminement": "CUDOT", + "nomCommune": "CUDOT" }, { - "codePostal": "82210", - "codeCommune": "82058", - "libelleAcheminement": "FAJOLLES", - "nomCommune": "FAJOLLES" + "codePostal": "87360", + "codeCommune": "87006", + "libelleAcheminement": "AZAT LE RIS", + "nomCommune": "AZAT LE RIS" }, { - "codePostal": "98792", - "codeCommune": "98719", - "libelleAcheminement": "MOTUREIVAVAO", - "nomCommune": "GAMBIER" + "codePostal": "89140", + "codeCommune": "89136", + "libelleAcheminement": "CUY", + "nomCommune": "CUY" }, { - "codePostal": "82120", - "codeCommune": "82074", - "libelleAcheminement": "GRAMONT", - "nomCommune": "GRAMONT" + "codePostal": "87210", + "codeCommune": "87008", + "libelleAcheminement": "LA BAZEUGE", + "nomCommune": "LA BAZEUGE" }, { - "codePostal": "98792", - "codeCommune": "98719", - "libelleAcheminement": "TENARARO", - "nomCommune": "GAMBIER" + "codePostal": "89150", + "codeCommune": "89144", + "libelleAcheminement": "DOMATS", + "nomCommune": "DOMATS" }, { - "codePostal": "82240", - "codeCommune": "82078", - "libelleAcheminement": "LABASTIDE DE PENNE", - "nomCommune": "LABASTIDE DE PENNE" + "codePostal": "87220", + "codeCommune": "87019", + "libelleAcheminement": "BOISSEUIL", + "nomCommune": "BOISSEUIL" }, { - "codePostal": "98793", - "codeCommune": "98719", - "libelleAcheminement": "MARUTEA SUD", - "nomCommune": "GAMBIER" + "codePostal": "89450", + "codeCommune": "89145", + "libelleAcheminement": "DOMECY SUR CURE", + "nomCommune": "DOMECY SUR CURE" }, { - "codePostal": "82370", - "codeCommune": "82079", - "libelleAcheminement": "LABASTIDE ST PIERRE", - "nomCommune": "LABASTIDE ST PIERRE" + "codePostal": "87270", + "codeCommune": "87020", + "libelleAcheminement": "BONNAC LA COTE", + "nomCommune": "BONNAC LA COTE" }, { - "codePostal": "98790", - "codeCommune": "98720", - "libelleAcheminement": "OTETOU", - "nomCommune": "HAO" + "codePostal": "89360", + "codeCommune": "89149", + "libelleAcheminement": "DYE", + "nomCommune": "DYE" }, { - "codePostal": "82290", - "codeCommune": "82085", - "libelleAcheminement": "LACOURT ST PIERRE", - "nomCommune": "LACOURT ST PIERRE" + "codePostal": "87460", + "codeCommune": "87024", + "libelleAcheminement": "BUJALEUF", + "nomCommune": "BUJALEUF" }, { - "codePostal": "98790", - "codeCommune": "98721", - "libelleAcheminement": "MOTUTAPU", - "nomCommune": "HIKUERU" + "codePostal": "89240", + "codeCommune": "89154", + "libelleAcheminement": "ESCAMPS", + "nomCommune": "ESCAMPS" }, { - "codePostal": "82130", - "codeCommune": "82087", - "libelleAcheminement": "LAFRANCAISE", - "nomCommune": "LAFRANCAISE" + "codePostal": "87230", + "codeCommune": "87027", + "libelleAcheminement": "BUSSIERE GALANT", + "nomCommune": "BUSSIERE GALANT" }, { - "codePostal": "98790", - "codeCommune": "98721", - "libelleAcheminement": "RAVAHERE", - "nomCommune": "HIKUERU" + "codePostal": "89310", + "codeCommune": "89161", + "libelleAcheminement": "ETIVEY", + "nomCommune": "ETIVEY" }, { - "codePostal": "82200", - "codeCommune": "82101", - "libelleAcheminement": "MALAUSE", - "nomCommune": "MALAUSE" + "codePostal": "87320", + "codeCommune": "87028", + "libelleAcheminement": "VAL D OIRE ET GARTEMPE", + "nomCommune": "VAL D OIRE ET GARTEMPE" }, { - "codePostal": "98741", - "codeCommune": "98723", - "libelleAcheminement": "HANAIAPA", - "nomCommune": "HIVA OA" + "codePostal": "89480", + "codeCommune": "89164", + "libelleAcheminement": "FESTIGNY", + "nomCommune": "FESTIGNY" }, { - "codePostal": "82170", - "codeCommune": "82114", - "libelleAcheminement": "MONBEQUI", - "nomCommune": "MONBEQUI" + "codePostal": "87920", + "codeCommune": "87048", + "libelleAcheminement": "CONDAT SUR VIENNE", + "nomCommune": "CONDAT SUR VIENNE" }, { - "codePostal": "98731", - "codeCommune": "98724", - "libelleAcheminement": "FARE", - "nomCommune": "HUAHINE" + "codePostal": "89100", + "codeCommune": "89172", + "libelleAcheminement": "FONTAINE LA GAILLARDE", + "nomCommune": "FONTAINE LA GAILLARDE" }, { - "codePostal": "82110", - "codeCommune": "82116", - "libelleAcheminement": "MONTAGUDET", - "nomCommune": "MONTAGUDET" + "codePostal": "87400", + "codeCommune": "87062", + "libelleAcheminement": "EYBOULEUF", + "nomCommune": "EYBOULEUF" }, { - "codePostal": "98731", - "codeCommune": "98724", - "libelleAcheminement": "FITII", - "nomCommune": "HUAHINE" + "codePostal": "89560", + "codeCommune": "89182", + "libelleAcheminement": "FOURONNES", + "nomCommune": "FOURONNES" }, { - "codePostal": "82270", - "codeCommune": "82119", - "libelleAcheminement": "MONTALZAT", - "nomCommune": "MONTALZAT" + "codePostal": "87170", + "codeCommune": "87075", + "libelleAcheminement": "ISLE", + "nomCommune": "ISLE" }, { - "codePostal": "98732", - "codeCommune": "98724", - "libelleAcheminement": "AVERA", - "nomCommune": "HUAHINE" + "codePostal": "89200", + "codeCommune": "89188", + "libelleAcheminement": "GIROLLES", + "nomCommune": "GIROLLES" }, { - "codePostal": "82290", - "codeCommune": "82124", - "libelleAcheminement": "MONTBETON", - "nomCommune": "MONTBETON" + "codePostal": "87800", + "codeCommune": "87077", + "libelleAcheminement": "JANAILHAC", + "nomCommune": "JANAILHAC" }, { - "codePostal": "98709", - "codeCommune": "98725", - "libelleAcheminement": "MAHINA", - "nomCommune": "MAHINA" + "codePostal": "89740", + "codeCommune": "89191", + "libelleAcheminement": "GLAND", + "nomCommune": "GLAND" }, { - "codePostal": "82400", - "codeCommune": "82130", - "libelleAcheminement": "MONTJOI", - "nomCommune": "MONTJOI" + "codePostal": "87340", + "codeCommune": "87079", + "libelleAcheminement": "LA JONCHERE ST MAURICE", + "nomCommune": "LA JONCHERE ST MAURICE" }, { - "codePostal": "98710", - "codeCommune": "98725", - "libelleAcheminement": "OROFARA", - "nomCommune": "MAHINA" + "codePostal": "89420", + "codeCommune": "89197", + "libelleAcheminement": "GUILLON TERRE PLAINE", + "nomCommune": "GUILLON TERRE PLAINE" }, { - "codePostal": "82800", - "codeCommune": "82132", - "libelleAcheminement": "MONTRICOUX", - "nomCommune": "MONTRICOUX" + "codePostal": "87230", + "codeCommune": "87084", + "libelleAcheminement": "LAVIGNAC", + "nomCommune": "LAVIGNAC" }, { - "codePostal": "98790", - "codeCommune": "98726", - "libelleAcheminement": "HARAIKI", - "nomCommune": "MAKEMO" + "codePostal": "89360", + "codeCommune": "89205", + "libelleAcheminement": "JAULGES", + "nomCommune": "JAULGES" }, { - "codePostal": "82160", - "codeCommune": "82133", - "libelleAcheminement": "MOUILLAC", - "nomCommune": "MOUILLAC" + "codePostal": "87280", + "codeCommune": "87085", + "libelleAcheminement": "LIMOGES", + "nomCommune": "LIMOGES" }, { - "codePostal": "98790", - "codeCommune": "98726", - "libelleAcheminement": "HENUAPAREA", - "nomCommune": "MAKEMO" + "codePostal": "89160", + "codeCommune": "89210", + "libelleAcheminement": "JULLY", + "nomCommune": "JULLY" }, { - "codePostal": "82800", - "codeCommune": "82134", - "libelleAcheminement": "NEGREPELISSE", - "nomCommune": "NEGREPELISSE" + "codePostal": "87360", + "codeCommune": "87087", + "libelleAcheminement": "LUSSAC LES EGLISES", + "nomCommune": "LUSSAC LES EGLISES" }, { - "codePostal": "98790", - "codeCommune": "98726", - "libelleAcheminement": "HITI", - "nomCommune": "MAKEMO" + "codePostal": "89700", + "codeCommune": "89211", + "libelleAcheminement": "JUNAY", + "nomCommune": "JUNAY" }, { - "codePostal": "82120", - "codeCommune": "82146", - "libelleAcheminement": "PUYGAILLARD DE LOMAGNE", - "nomCommune": "PUYGAILLARD DE LOMAGNE" + "codePostal": "87440", + "codeCommune": "87092", + "libelleAcheminement": "MARVAL", + "nomCommune": "MARVAL" }, { - "codePostal": "98732", - "codeCommune": "98728", - "libelleAcheminement": "MAUPITI", - "nomCommune": "MAUPITI" + "codePostal": "89520", + "codeCommune": "89216", + "libelleAcheminement": "LAINSECQ", + "nomCommune": "LAINSECQ" }, { - "codePostal": "82100", - "codeCommune": "82152", - "libelleAcheminement": "ST AIGNAN", - "nomCommune": "ST AIGNAN" + "codePostal": "87400", + "codeCommune": "87099", + "libelleAcheminement": "MOISSANNES", + "nomCommune": "MOISSANNES" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "TEMAE", - "nomCommune": "MOOREA MAIAO" + "codePostal": "89660", + "codeCommune": "89225", + "libelleAcheminement": "LICHERES SUR YONNE", + "nomCommune": "LICHERES SUR YONNE" }, { - "codePostal": "82240", - "codeCommune": "82162", - "libelleAcheminement": "ST GEORGES", - "nomCommune": "ST GEORGES" + "codePostal": "87330", + "codeCommune": "87100", + "libelleAcheminement": "MONTROL SENARD", + "nomCommune": "MONTROL SENARD" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "VAIARE", - "nomCommune": "MOOREA MAIAO" + "codePostal": "89800", + "codeCommune": "89226", + "libelleAcheminement": "LIGNORELLES", + "nomCommune": "LIGNORELLES" }, { - "codePostal": "82400", - "codeCommune": "82170", - "libelleAcheminement": "ST PAUL D ESPIS", - "nomCommune": "ST PAUL D ESPIS" + "codePostal": "87150", + "codeCommune": "87111", + "libelleAcheminement": "ORADOUR SUR VAYRES", + "nomCommune": "ORADOUR SUR VAYRES" }, { - "codePostal": "98729", - "codeCommune": "98729", - "libelleAcheminement": "ATIHA", - "nomCommune": "MOOREA MAIAO" + "codePostal": "89270", + "codeCommune": "89233", + "libelleAcheminement": "LUCY SUR CURE", + "nomCommune": "LUCY SUR CURE" }, { - "codePostal": "82340", - "codeCommune": "82181", - "libelleAcheminement": "SISTELS", - "nomCommune": "SISTELS" + "codePostal": "87120", + "codeCommune": "87123", + "libelleAcheminement": "REMPNAT", + "nomCommune": "REMPNAT" }, { - "codePostal": "98729", - "codeCommune": "98729", - "libelleAcheminement": "HAAPITI", - "nomCommune": "MOOREA MAIAO" + "codePostal": "89480", + "codeCommune": "89234", + "libelleAcheminement": "LUCY SUR YONNE", + "nomCommune": "LUCY SUR YONNE" }, { - "codePostal": "82190", - "codeCommune": "82182", - "libelleAcheminement": "TOUFFAILLES", - "nomCommune": "TOUFFAILLES" + "codePostal": "87140", + "codeCommune": "87128", + "libelleAcheminement": "ST PARDOUX LE LAC", + "nomCommune": "ST PARDOUX LE LAC" }, { - "codePostal": "98729", - "codeCommune": "98729", - "libelleAcheminement": "VARARI", - "nomCommune": "MOOREA MAIAO" + "codePostal": "89200", + "codeCommune": "89235", + "libelleAcheminement": "MAGNY", + "nomCommune": "MAGNY" }, { - "codePostal": "82230", - "codeCommune": "82192", - "libelleAcheminement": "VERLHAC TESCOU", - "nomCommune": "VERLHAC TESCOU" + "codePostal": "87400", + "codeCommune": "87129", + "libelleAcheminement": "ROYERES", + "nomCommune": "ROYERES" }, { - "codePostal": "98773", - "codeCommune": "98732", - "libelleAcheminement": "TAVAVA", - "nomCommune": "NUKUTAVAKE" + "codePostal": "89270", + "codeCommune": "89237", + "libelleAcheminement": "MAILLY LA VILLE", + "nomCommune": "MAILLY LA VILLE" }, { - "codePostal": "83830", - "codeCommune": "83011", - "libelleAcheminement": "BARGEMON", - "nomCommune": "BARGEMON" + "codePostal": "87380", + "codeCommune": "87146", + "libelleAcheminement": "ST GERMAIN LES BELLES", + "nomCommune": "ST GERMAIN LES BELLES" }, { - "codePostal": "98712", - "codeCommune": "98734", - "libelleAcheminement": "PAPARA", - "nomCommune": "PAPARA" + "codePostal": "89450", + "codeCommune": "89248", + "libelleAcheminement": "MENADES", + "nomCommune": "MENADES" }, { - "codePostal": "83210", - "codeCommune": "83017", - "libelleAcheminement": "BELGENTIER", - "nomCommune": "BELGENTIER" + "codePostal": "87460", + "codeCommune": "87153", + "libelleAcheminement": "ST JULIEN LE PETIT", + "nomCommune": "ST JULIEN LE PETIT" }, { - "codePostal": "98750", - "codeCommune": "98739", - "libelleAcheminement": "MAHANATOA", - "nomCommune": "RAIVAVAE" + "codePostal": "89144", + "codeCommune": "89250", + "libelleAcheminement": "MERE", + "nomCommune": "MERE" }, { - "codePostal": "83230", - "codeCommune": "83019", - "libelleAcheminement": "BORMES LES MIMOSAS", - "nomCommune": "BORMES LES MIMOSAS" + "codePostal": "87400", + "codeCommune": "87161", + "libelleAcheminement": "ST LEONARD DE NOBLAT", + "nomCommune": "ST LEONARD DE NOBLAT" }, { - "codePostal": "98775", - "codeCommune": "98740", - "libelleAcheminement": "AVATORU", - "nomCommune": "RANGIROA" + "codePostal": "89560", + "codeCommune": "89252", + "libelleAcheminement": "MERRY SEC", + "nomCommune": "MERRY SEC" }, { - "codePostal": "83840", - "codeCommune": "83020", - "libelleAcheminement": "LE BOURGUET", - "nomCommune": "LE BOURGUET" + "codePostal": "87360", + "codeCommune": "87165", + "libelleAcheminement": "ST MARTIN LE MAULT", + "nomCommune": "ST MARTIN LE MAULT" }, { - "codePostal": "98733", - "codeCommune": "98745", - "libelleAcheminement": "PATIO", - "nomCommune": "TAHAA" + "codePostal": "89660", + "codeCommune": "89253", + "libelleAcheminement": "MERRY SUR YONNE", + "nomCommune": "MERRY SUR YONNE" }, { - "codePostal": "83840", - "codeCommune": "83022", - "libelleAcheminement": "BRENON", - "nomCommune": "BRENON" + "codePostal": "87800", + "codeCommune": "87176", + "libelleAcheminement": "ST PRIEST LIGOURE", + "nomCommune": "ST PRIEST LIGOURE" }, { - "codePostal": "98734", - "codeCommune": "98745", - "libelleAcheminement": "NIUA", - "nomCommune": "TAHAA" + "codePostal": "89140", + "codeCommune": "89255", + "libelleAcheminement": "MICHERY", + "nomCommune": "MICHERY" }, { - "codePostal": "83740", - "codeCommune": "83027", - "libelleAcheminement": "LA CADIERE D AZUR", - "nomCommune": "LA CADIERE D AZUR" + "codePostal": "87440", + "codeCommune": "87189", + "libelleAcheminement": "LES SALLES LAVAUGUYON", + "nomCommune": "LES SALLES LAVAUGUYON" }, { - "codePostal": "98743", - "codeCommune": "98746", - "libelleAcheminement": "HAPATONI", - "nomCommune": "TAHUATA" + "codePostal": "89250", + "codeCommune": "89268", + "libelleAcheminement": "MONT ST SULPICE", + "nomCommune": "MONT ST SULPICE" }, { - "codePostal": "83740", - "codeCommune": "83027", - "libelleAcheminement": "LA CADIERE D AZUR", - "nomCommune": "LA CADIERE D AZUR" + "codePostal": "87600", + "codeCommune": "87204", + "libelleAcheminement": "VIDEIX", + "nomCommune": "VIDEIX" }, { - "codePostal": "98719", - "codeCommune": "98747", - "libelleAcheminement": "AFAAHITI", - "nomCommune": "TAIARAPU EST" + "codePostal": "89560", + "codeCommune": "89270", + "libelleAcheminement": "MOUFFY", + "nomCommune": "MOUFFY" }, { - "codePostal": "83830", - "codeCommune": "83028", - "libelleAcheminement": "CALLAS", - "nomCommune": "CALLAS" + "codePostal": "88700", + "codeCommune": "88008", + "libelleAcheminement": "ANGLEMONT", + "nomCommune": "ANGLEMONT" }, { - "codePostal": "98720", - "codeCommune": "98747", - "libelleAcheminement": "FAAONE", - "nomCommune": "TAIARAPU EST" + "codePostal": "89520", + "codeCommune": "89273", + "libelleAcheminement": "MOUTIERS EN PUISAYE", + "nomCommune": "MOUTIERS EN PUISAYE" }, { - "codePostal": "83570", - "codeCommune": "83032", - "libelleAcheminement": "CARCES", - "nomCommune": "CARCES" + "codePostal": "88650", + "codeCommune": "88009", + "libelleAcheminement": "ANOULD", + "nomCommune": "ANOULD" }, { - "codePostal": "98724", - "codeCommune": "98748", - "libelleAcheminement": "TOAHOTU", - "nomCommune": "TAIARAPU OUEST" + "codePostal": "89320", + "codeCommune": "89278", + "libelleAcheminement": "NOE", + "nomCommune": "NOE" }, { - "codePostal": "83240", - "codeCommune": "83036", - "libelleAcheminement": "CAVALAIRE SUR MER", - "nomCommune": "CAVALAIRE SUR MER" + "codePostal": "88300", + "codeCommune": "88015", + "libelleAcheminement": "ATTIGNEVILLE", + "nomCommune": "ATTIGNEVILLE" }, { - "codePostal": "98781", - "codeCommune": "98749", - "libelleAcheminement": "TEAVAROA", - "nomCommune": "TAKAROA" + "codePostal": "89110", + "codeCommune": "89281", + "libelleAcheminement": "LES ORMES", + "nomCommune": "LES ORMES" }, { - "codePostal": "83840", - "codeCommune": "83040", - "libelleAcheminement": "CHATEAUVIEUX", - "nomCommune": "CHATEAUVIEUX" + "codePostal": "88260", + "codeCommune": "88016", + "libelleAcheminement": "ATTIGNY", + "nomCommune": "ATTIGNY" }, { - "codePostal": "98735", - "codeCommune": "98750", - "libelleAcheminement": "OPOA", - "nomCommune": "TAPUTAPUATEA" + "codePostal": "89400", + "codeCommune": "89282", + "libelleAcheminement": "ORMOY", + "nomCommune": "ORMOY" }, { - "codePostal": "83260", - "codeCommune": "83047", - "libelleAcheminement": "LA CRAU", - "nomCommune": "LA CRAU" + "codePostal": "88130", + "codeCommune": "88024", + "libelleAcheminement": "AVRAINVILLE", + "nomCommune": "AVRAINVILLE" }, { - "codePostal": "98784", - "codeCommune": "98755", - "libelleAcheminement": "FAKAMARU", - "nomCommune": "TUREIA" + "codePostal": "89100", + "codeCommune": "89287", + "libelleAcheminement": "PARON", + "nomCommune": "PARON" }, { - "codePostal": "83570", - "codeCommune": "83051", - "libelleAcheminement": "ENTRECASTEAUX", - "nomCommune": "ENTRECASTEAUX" + "codePostal": "88630", + "codeCommune": "88025", + "libelleAcheminement": "AVRANVILLE", + "nomCommune": "AVRANVILLE" }, { - "codePostal": "98745", - "codeCommune": "98757", - "libelleAcheminement": "HOHOI", - "nomCommune": "UA POU" + "codePostal": "89210", + "codeCommune": "89288", + "libelleAcheminement": "PAROY EN OTHE", + "nomCommune": "PAROY EN OTHE" }, { - "codePostal": "83830", - "codeCommune": "83056", - "libelleAcheminement": "FIGANIERES", - "nomCommune": "FIGANIERES" + "codePostal": "88170", + "codeCommune": "88031", + "libelleAcheminement": "BALLEVILLE", + "nomCommune": "BALLEVILLE" }, { - "codePostal": "98746", - "codeCommune": "98757", - "libelleAcheminement": "HAAKUTI", - "nomCommune": "UA POU" + "codePostal": "89510", + "codeCommune": "89291", + "libelleAcheminement": "PASSY", + "nomCommune": "PASSY" }, { - "codePostal": "83780", - "codeCommune": "83058", - "libelleAcheminement": "FLAYOSC", - "nomCommune": "FLAYOSC" + "codePostal": "88300", + "codeCommune": "88045", + "libelleAcheminement": "BEAUFREMONT", + "nomCommune": "BEAUFREMONT" }, { - "codePostal": "98830", - "codeCommune": "98805", - "libelleAcheminement": "DUMBEA", - "nomCommune": "DUMBEA" + "codePostal": "89450", + "codeCommune": "89297", + "libelleAcheminement": "PIERRE PERTHUIS", + "nomCommune": "PIERRE PERTHUIS" }, { - "codePostal": "83370", - "codeCommune": "83061", - "libelleAcheminement": "FREJUS", - "nomCommune": "FREJUS" + "codePostal": "88270", + "codeCommune": "88047", + "libelleAcheminement": "BEGNECOURT", + "nomCommune": "BEGNECOURT" }, { - "codePostal": "98859", - "codeCommune": "98811", - "libelleAcheminement": "KONE", - "nomCommune": "KONE" + "codePostal": "89110", + "codeCommune": "89304", + "libelleAcheminement": "POILLY SUR THOLON", + "nomCommune": "POILLY SUR THOLON" }, { - "codePostal": "83680", - "codeCommune": "83063", - "libelleAcheminement": "LA GARDE FREINET", - "nomCommune": "LA GARDE FREINET" + "codePostal": "88600", + "codeCommune": "88050", + "libelleAcheminement": "BELMONT SUR BUTTANT", + "nomCommune": "BELMONT SUR BUTTANT" }, { - "codePostal": "98820", - "codeCommune": "98814", - "libelleAcheminement": "WE", - "nomCommune": "LIFOU" + "codePostal": "89200", + "codeCommune": "89306", + "libelleAcheminement": "PONTAUBERT", + "nomCommune": "PONTAUBERT" }, { - "codePostal": "83310", - "codeCommune": "83068", - "libelleAcheminement": "GRIMAUD", - "nomCommune": "GRIMAUD" + "codePostal": "88800", + "codeCommune": "88051", + "libelleAcheminement": "BELMONT SUR VAIR", + "nomCommune": "BELMONT SUR VAIR" }, { - "codePostal": "98819", - "codeCommune": "98816", - "libelleAcheminement": "MOINDOU", - "nomCommune": "MOINDOU" + "codePostal": "89116", + "codeCommune": "89313", + "libelleAcheminement": "PRECY SUR VRIN", + "nomCommune": "PRECY SUR VRIN" }, { - "codePostal": "83310", - "codeCommune": "83068", - "libelleAcheminement": "GRIMAUD", - "nomCommune": "GRIMAUD" + "codePostal": "88270", + "codeCommune": "88063", + "libelleAcheminement": "BOCQUEGNEY", + "nomCommune": "BOCQUEGNEY" }, { - "codePostal": "98874", - "codeCommune": "98817", - "libelleAcheminement": "PONT DES FRANCAIS", - "nomCommune": "LE MONT DORE" + "codePostal": "89460", + "codeCommune": "89314", + "libelleAcheminement": "PREGILBERT", + "nomCommune": "PREGILBERT" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "88270", + "codeCommune": "88069", + "libelleAcheminement": "BOUXIERES AUX BOIS", + "nomCommune": "BOUXIERES AUX BOIS" }, { - "codePostal": "98876", - "codeCommune": "98817", - "libelleAcheminement": "LA COULEE", - "nomCommune": "LE MONT DORE" + "codePostal": "89740", + "codeCommune": "89320", + "libelleAcheminement": "QUINCEROT", + "nomCommune": "QUINCEROT" }, { - "codePostal": "83400", - "codeCommune": "83069", - "libelleAcheminement": "HYERES", - "nomCommune": "HYERES" + "codePostal": "88600", + "codeCommune": "88076", + "libelleAcheminement": "BROUVELIEURES", + "nomCommune": "BROUVELIEURES" }, { - "codePostal": "98800", - "codeCommune": "98818", - "libelleAcheminement": "NOUMEA", - "nomCommune": "NOUMEA" + "codePostal": "89220", + "codeCommune": "89324", + "libelleAcheminement": "ROGNY LES SEPT ECLUSES", + "nomCommune": "ROGNY LES SEPT ECLUSES" }, { - "codePostal": "83340", - "codeCommune": "83073", - "libelleAcheminement": "LE LUC", - "nomCommune": "LE LUC" + "codePostal": "88700", + "codeCommune": "88077", + "libelleAcheminement": "BRU", + "nomCommune": "BRU" }, { - "codePostal": "98840", - "codeCommune": "98821", - "libelleAcheminement": "TONTOUTA", - "nomCommune": "PAITA" + "codePostal": "89170", + "codeCommune": "89325", + "libelleAcheminement": "RONCHERES", + "nomCommune": "RONCHERES" }, { - "codePostal": "83136", - "codeCommune": "83076", - "libelleAcheminement": "MAZAUGUES", - "nomCommune": "MAZAUGUES" + "codePostal": "88600", + "codeCommune": "88078", + "libelleAcheminement": "BRUYERES", + "nomCommune": "BRUYERES" }, { - "codePostal": "98889", - "codeCommune": "98821", - "libelleAcheminement": "PAITA", - "nomCommune": "PAITA" + "codePostal": "89500", + "codeCommune": "89327", + "libelleAcheminement": "ROUSSON", + "nomCommune": "ROUSSON" }, { - "codePostal": "83630", - "codeCommune": "83078", - "libelleAcheminement": "MOISSAC BELLEVUE", - "nomCommune": "MOISSAC BELLEVUE" + "codePostal": "88110", + "codeCommune": "88082", + "libelleAcheminement": "CELLES SUR PLAINE", + "nomCommune": "CELLES SUR PLAINE" }, { - "codePostal": "98823", - "codeCommune": "98823", - "libelleAcheminement": "PONERIHOUEN", - "nomCommune": "PONERIHOUEN" + "codePostal": "89530", + "codeCommune": "89337", + "libelleAcheminement": "ST BRIS LE VINEUX", + "nomCommune": "ST BRIS LE VINEUX" }, { - "codePostal": "83310", - "codeCommune": "83079", - "libelleAcheminement": "LA MOLE", - "nomCommune": "LA MOLE" + "codePostal": "88240", + "codeCommune": "88088", + "libelleAcheminement": "LA CHAPELLE AUX BOIS", + "nomCommune": "LA CHAPELLE AUX BOIS" }, { - "codePostal": "83570", - "codeCommune": "83083", - "libelleAcheminement": "MONTFORT SUR ARGENS", - "nomCommune": "MONTFORT SUR ARGENS" + "codePostal": "89440", + "codeCommune": "89339", + "libelleAcheminement": "STE COLOMBE", + "nomCommune": "STE COLOMBE" }, { - "codePostal": "83790", - "codeCommune": "83092", - "libelleAcheminement": "PIGNANS", - "nomCommune": "PIGNANS" + "codePostal": "88230", + "codeCommune": "88106", + "libelleAcheminement": "BAN SUR MEURTHE CLEFCY", + "nomCommune": "BAN SUR MEURTHE CLEFCY" }, { - "codePostal": "83640", - "codeCommune": "83093", - "libelleAcheminement": "PLAN D AUPS STE BAUME", - "nomCommune": "PLAN D AUPS STE BAUME" + "codePostal": "89170", + "codeCommune": "89344", + "libelleAcheminement": "ST FARGEAU", + "nomCommune": "ST FARGEAU" }, { - "codePostal": "83120", - "codeCommune": "83094", - "libelleAcheminement": "LE PLAN DE LA TOUR", - "nomCommune": "LE PLAN DE LA TOUR" + "codePostal": "88120", + "codeCommune": "88109", + "libelleAcheminement": "CLEURIE", + "nomCommune": "CLEURIE" }, { - "codePostal": "83220", - "codeCommune": "83098", - "libelleAcheminement": "LE PRADET", - "nomCommune": "LE PRADET" + "codePostal": "89630", + "codeCommune": "89349", + "libelleAcheminement": "ST LEGER VAUBAN", + "nomCommune": "ST LEGER VAUBAN" }, { - "codePostal": "83350", - "codeCommune": "83101", - "libelleAcheminement": "RAMATUELLE", - "nomCommune": "RAMATUELLE" + "codePostal": "88430", + "codeCommune": "88115", + "libelleAcheminement": "CORCIEUX", + "nomCommune": "CORCIEUX" }, { - "codePostal": "83380", - "codeCommune": "83107", - "libelleAcheminement": "ROQUEBRUNE SUR ARGENS", - "nomCommune": "ROQUEBRUNE SUR ARGENS" + "codePostal": "89330", + "codeCommune": "89350", + "libelleAcheminement": "ST LOUP D ORDON", + "nomCommune": "ST LOUP D ORDON" }, { - "codePostal": "83840", - "codeCommune": "83109", - "libelleAcheminement": "LA ROQUE ESCLAPON", - "nomCommune": "LA ROQUE ESCLAPON" + "codePostal": "88310", + "codeCommune": "88116", + "libelleAcheminement": "CORNIMONT", + "nomCommune": "CORNIMONT" }, { - "codePostal": "83270", - "codeCommune": "83112", - "libelleAcheminement": "ST CYR SUR MER", - "nomCommune": "ST CYR SUR MER" + "codePostal": "89420", + "codeCommune": "89351", + "libelleAcheminement": "STE MAGNANCE", + "nomCommune": "STE MAGNANCE" }, { - "codePostal": "83560", - "codeCommune": "83113", - "libelleAcheminement": "ST JULIEN", - "nomCommune": "ST JULIEN" + "codePostal": "88460", + "codeCommune": "88135", + "libelleAcheminement": "DOCELLES", + "nomCommune": "DOCELLES" }, { - "codePostal": "83120", - "codeCommune": "83115", - "libelleAcheminement": "STE MAXIME", - "nomCommune": "STE MAXIME" + "codePostal": "89110", + "codeCommune": "89360", + "libelleAcheminement": "ST MAURICE LE VIEIL", + "nomCommune": "ST MAURICE LE VIEIL" }, { - "codePostal": "83470", - "codeCommune": "83116", - "libelleAcheminement": "ST MAXIMIN LA STE BAUME", - "nomCommune": "ST MAXIMIN LA STE BAUME" + "codePostal": "88140", + "codeCommune": "88140", + "libelleAcheminement": "DOMBROT LE SEC", + "nomCommune": "DOMBROT LE SEC" }, { - "codePostal": "83990", - "codeCommune": "83119", - "libelleAcheminement": "ST TROPEZ", - "nomCommune": "ST TROPEZ" + "codePostal": "89270", + "codeCommune": "89362", + "libelleAcheminement": "ST MORE", + "nomCommune": "ST MORE" }, { - "codePostal": "83500", - "codeCommune": "83126", - "libelleAcheminement": "LA SEYNE SUR MER", - "nomCommune": "LA SEYNE SUR MER" + "codePostal": "88330", + "codeCommune": "88143", + "libelleAcheminement": "DOMEVRE SUR DURBION", + "nomCommune": "DOMEVRE SUR DURBION" }, { - "codePostal": "83140", - "codeCommune": "83129", - "libelleAcheminement": "SIX FOURS LES PLAGES", - "nomCommune": "SIX FOURS LES PLAGES" + "codePostal": "89450", + "codeCommune": "89364", + "libelleAcheminement": "ST PERE", + "nomCommune": "ST PERE" }, { - "codePostal": "83460", - "codeCommune": "83134", - "libelleAcheminement": "TARADEAU", - "nomCommune": "TARADEAU" + "codePostal": "88600", + "codeCommune": "88145", + "libelleAcheminement": "DOMFAING", + "nomCommune": "DOMFAING" }, { - "codePostal": "83170", - "codeCommune": "83140", - "libelleAcheminement": "TOURVES", - "nomCommune": "TOURVES" + "codePostal": "89520", + "codeCommune": "89367", + "libelleAcheminement": "SAINTS EN PUISAYE", + "nomCommune": "SAINTS EN PUISAYE" }, { - "codePostal": "83170", - "codeCommune": "83151", - "libelleAcheminement": "VINS SUR CARAMY", - "nomCommune": "VINS SUR CARAMY" + "codePostal": "88800", + "codeCommune": "88146", + "libelleAcheminement": "DOMJULIEN", + "nomCommune": "DOMJULIEN" }, { - "codePostal": "83430", - "codeCommune": "83153", - "libelleAcheminement": "ST MANDRIER SUR MER", - "nomCommune": "ST MANDRIER SUR MER" + "codePostal": "89310", + "codeCommune": "89371", + "libelleAcheminement": "STE VERTU", + "nomCommune": "STE VERTU" }, { - "codePostal": "83510", - "codeCommune": "83154", - "libelleAcheminement": "ST ANTONIN DU VAR", - "nomCommune": "ST ANTONIN DU VAR" + "codePostal": "88200", + "codeCommune": "88148", + "libelleAcheminement": "DOMMARTIN LES REMIREMONT", + "nomCommune": "DOMMARTIN LES REMIREMONT" }, { - "codePostal": "84400", - "codeCommune": "84006", - "libelleAcheminement": "AURIBEAU", - "nomCommune": "AURIBEAU" + "codePostal": "89250", + "codeCommune": "89382", + "libelleAcheminement": "SEIGNELAY", + "nomCommune": "SEIGNELAY" }, { - "codePostal": "84140", - "codeCommune": "84007", - "libelleAcheminement": "AVIGNON", - "nomCommune": "AVIGNON" + "codePostal": "88260", + "codeCommune": "88149", + "libelleAcheminement": "DOMMARTIN LES VALLOIS", + "nomCommune": "DOMMARTIN LES VALLOIS" }, { - "codePostal": "84120", - "codeCommune": "84010", - "libelleAcheminement": "LA BASTIDONNE", - "nomCommune": "LA BASTIDONNE" + "codePostal": "89710", + "codeCommune": "89384", + "libelleAcheminement": "SENAN", + "nomCommune": "SENAN" }, { - "codePostal": "84220", - "codeCommune": "84013", - "libelleAcheminement": "BEAUMETTES", - "nomCommune": "BEAUMETTES" + "codePostal": "88170", + "codeCommune": "88150", + "libelleAcheminement": "DOMMARTIN SUR VRAINE", + "nomCommune": "DOMMARTIN SUR VRAINE" }, { - "codePostal": "84120", - "codeCommune": "84014", - "libelleAcheminement": "BEAUMONT DE PERTUIS", - "nomCommune": "BEAUMONT DE PERTUIS" + "codePostal": "89570", + "codeCommune": "89402", + "libelleAcheminement": "SOUMAINTRAIN", + "nomCommune": "SOUMAINTRAIN" }, { - "codePostal": "84390", - "codeCommune": "84021", - "libelleAcheminement": "BRANTES", - "nomCommune": "BRANTES" + "codePostal": "88450", + "codeCommune": "88166", + "libelleAcheminement": "EVAUX ET MENIL", + "nomCommune": "EVAUX ET MENIL" }, { - "codePostal": "84400", - "codeCommune": "84033", - "libelleAcheminement": "CASTELLET EN LUBERON", - "nomCommune": "CASTELLET EN LUBERON" + "codePostal": "89560", + "codeCommune": "89405", + "libelleAcheminement": "LES HAUTS DE FORTERRE", + "nomCommune": "LES HAUTS DE FORTERRE" }, { - "codePostal": "84450", - "codeCommune": "84055", - "libelleAcheminement": "JONQUERETTES", - "nomCommune": "JONQUERETTES" + "codePostal": "88600", + "codeCommune": "88184", + "libelleAcheminement": "FREMIFONTAINE", + "nomCommune": "FREMIFONTAINE" }, { - "codePostal": "84330", - "codeCommune": "84077", - "libelleAcheminement": "MODENE", - "nomCommune": "MODENE" + "codePostal": "89430", + "codeCommune": "89407", + "libelleAcheminement": "TANLAY", + "nomCommune": "TANLAY" }, { - "codePostal": "84430", - "codeCommune": "84078", - "libelleAcheminement": "MONDRAGON", - "nomCommune": "MONDRAGON" + "codePostal": "88320", + "codeCommune": "88199", + "libelleAcheminement": "GIGNEVILLE", + "nomCommune": "GIGNEVILLE" }, { - "codePostal": "84240", - "codeCommune": "84084", - "libelleAcheminement": "LA MOTTE D AIGUES", - "nomCommune": "LA MOTTE D AIGUES" + "codePostal": "89350", + "codeCommune": "89408", + "libelleAcheminement": "TANNERRE EN PUISAYE", + "nomCommune": "TANNERRE EN PUISAYE" }, { - "codePostal": "84420", - "codeCommune": "84091", - "libelleAcheminement": "PIOLENC", - "nomCommune": "PIOLENC" + "codePostal": "88390", + "codeCommune": "88200", + "libelleAcheminement": "GIGNEY", + "nomCommune": "GIGNEY" }, { - "codePostal": "84160", - "codeCommune": "84095", - "libelleAcheminement": "PUYVERT", - "nomCommune": "PUYVERT" + "codePostal": "89520", + "codeCommune": "89416", + "libelleAcheminement": "THURY", + "nomCommune": "THURY" }, { - "codePostal": "84330", - "codeCommune": "84109", - "libelleAcheminement": "ST HIPPOLYTE LE GRAVEYRON", - "nomCommune": "ST HIPPOLYTE LE GRAVEYRON" + "codePostal": "88600", + "codeCommune": "88203", + "libelleAcheminement": "GIRECOURT SUR DURBION", + "nomCommune": "GIRECOURT SUR DURBION" }, { - "codePostal": "84110", - "codeCommune": "84111", - "libelleAcheminement": "ST MARCELLIN LES VAISON", - "nomCommune": "ST MARCELLIN LES VAISON" + "codePostal": "89700", + "codeCommune": "89417", + "libelleAcheminement": "TISSEY", + "nomCommune": "TISSEY" }, { - "codePostal": "84750", - "codeCommune": "84112", - "libelleAcheminement": "ST MARTIN DE CASTILLON", - "nomCommune": "ST MARTIN DE CASTILLON" + "codePostal": "88490", + "codeCommune": "88213", + "libelleAcheminement": "LA GRANDE FOSSE", + "nomCommune": "LA GRANDE FOSSE" }, { - "codePostal": "84220", - "codeCommune": "84114", - "libelleAcheminement": "ST PANTALEON", - "nomCommune": "ST PANTALEON" + "codePostal": "89700", + "codeCommune": "89418", + "libelleAcheminement": "TONNERRE", + "nomCommune": "TONNERRE" }, { - "codePostal": "84450", - "codeCommune": "84119", - "libelleAcheminement": "ST SATURNIN LES AVIGNON", - "nomCommune": "ST SATURNIN LES AVIGNON" + "codePostal": "88450", + "codeCommune": "88223", + "libelleAcheminement": "GUGNEY AUX AULX", + "nomCommune": "GUGNEY AUX AULX" }, { - "codePostal": "84800", - "codeCommune": "84124", - "libelleAcheminement": "SAUMANE DE VAUCLUSE", - "nomCommune": "SAUMANE DE VAUCLUSE" + "codePostal": "89520", + "codeCommune": "89420", + "libelleAcheminement": "TREIGNY PERREUSE STE COLOMBE", + "nomCommune": "TREIGNY PERREUSE STE COLOMBE" }, { - "codePostal": "84100", - "codeCommune": "84135", - "libelleAcheminement": "UCHAUX", - "nomCommune": "UCHAUX" + "codePostal": "88330", + "codeCommune": "88228", + "libelleAcheminement": "HAILLAINVILLE", + "nomCommune": "HAILLAINVILLE" }, { - "codePostal": "84190", - "codeCommune": "84136", - "libelleAcheminement": "VACQUEYRAS", - "nomCommune": "VACQUEYRAS" + "codePostal": "89430", + "codeCommune": "89422", + "libelleAcheminement": "TRICHEY", + "nomCommune": "TRICHEY" }, { - "codePostal": "84160", - "codeCommune": "84140", - "libelleAcheminement": "VAUGINES", - "nomCommune": "VAUGINES" + "codePostal": "88430", + "codeCommune": "88244", + "libelleAcheminement": "LA HOUSSIERE", + "nomCommune": "LA HOUSSIERE" }, { - "codePostal": "84740", - "codeCommune": "84142", - "libelleAcheminement": "VELLERON", - "nomCommune": "VELLERON" + "codePostal": "89700", + "codeCommune": "89423", + "libelleAcheminement": "TRONCHOY", + "nomCommune": "TRONCHOY" }, { - "codePostal": "84110", - "codeCommune": "84146", - "libelleAcheminement": "VILLEDIEU", - "nomCommune": "VILLEDIEU" + "codePostal": "88700", + "codeCommune": "88251", + "libelleAcheminement": "JEANMENIL", + "nomCommune": "JEANMENIL" }, { - "codePostal": "85460", - "codeCommune": "85001", - "libelleAcheminement": "L AIGUILLON SUR MER", - "nomCommune": "L AIGUILLON SUR MER" + "codePostal": "89460", + "codeCommune": "89424", + "libelleAcheminement": "TRUCY SUR YONNE", + "nomCommune": "TRUCY SUR YONNE" }, { - "codePostal": "85220", - "codeCommune": "85006", - "libelleAcheminement": "APREMONT", - "nomCommune": "APREMONT" + "codePostal": "88260", + "codeCommune": "88252", + "libelleAcheminement": "JESONVILLE", + "nomCommune": "JESONVILLE" }, { - "codePostal": "85440", - "codeCommune": "85010", - "libelleAcheminement": "AVRILLE", - "nomCommune": "AVRILLE" + "codePostal": "89200", + "codeCommune": "89433", + "libelleAcheminement": "VAULT DE LUGNY", + "nomCommune": "VAULT DE LUGNY" }, { - "codePostal": "85550", - "codeCommune": "85012", - "libelleAcheminement": "LA BARRE DE MONTS", - "nomCommune": "LA BARRE DE MONTS" + "codePostal": "88500", + "codeCommune": "88254", + "libelleAcheminement": "JORXEY", + "nomCommune": "JORXEY" }, { - "codePostal": "85130", - "codeCommune": "85013", - "libelleAcheminement": "BAZOGES EN PAILLERS", - "nomCommune": "BAZOGES EN PAILLERS" + "codePostal": "89600", + "codeCommune": "89439", + "libelleAcheminement": "VERGIGNY", + "nomCommune": "VERGIGNY" }, { - "codePostal": "85490", - "codeCommune": "85020", - "libelleAcheminement": "BENET", - "nomCommune": "BENET" + "codePostal": "88600", + "codeCommune": "88262", + "libelleAcheminement": "LAVELINE DEVANT BRUYERES", + "nomCommune": "LAVELINE DEVANT BRUYERES" }, { - "codePostal": "85490", - "codeCommune": "85020", - "libelleAcheminement": "BENET", - "nomCommune": "BENET" + "codePostal": "89270", + "codeCommune": "89441", + "libelleAcheminement": "VERMENTON", + "nomCommune": "VERMENTON" }, { - "codePostal": "85610", - "codeCommune": "85021", - "libelleAcheminement": "LA BERNARDIERE", - "nomCommune": "LA BERNARDIERE" + "codePostal": "88270", + "codeCommune": "88264", + "libelleAcheminement": "LEGEVILLE ET BONFAYS", + "nomCommune": "LEGEVILLE ET BONFAYS" }, { - "codePostal": "85200", - "codeCommune": "85033", - "libelleAcheminement": "BOURNEAU", - "nomCommune": "BOURNEAU" + "codePostal": "89300", + "codeCommune": "89452", + "libelleAcheminement": "VILLECIEN", + "nomCommune": "VILLECIEN" }, { - "codePostal": "85260", - "codeCommune": "85038", - "libelleAcheminement": "LES BROUZILS", - "nomCommune": "LES BROUZILS" + "codePostal": "88490", + "codeCommune": "88268", + "libelleAcheminement": "LESSEUX", + "nomCommune": "LESSEUX" }, { - "codePostal": "85410", - "codeCommune": "85041", - "libelleAcheminement": "CEZAIS", - "nomCommune": "CEZAIS" + "codePostal": "89230", + "codeCommune": "89463", + "libelleAcheminement": "VILLENEUVE ST SALVES", + "nomCommune": "VILLENEUVE ST SALVES" }, { - "codePostal": "85450", - "codeCommune": "85042", - "libelleAcheminement": "CHAILLE LES MARAIS", - "nomCommune": "CHAILLE LES MARAIS" + "codePostal": "88350", + "codeCommune": "88270", + "libelleAcheminement": "LIFFOL LE GRAND", + "nomCommune": "LIFFOL LE GRAND" }, { - "codePostal": "85220", - "codeCommune": "85054", - "libelleAcheminement": "LA CHAPELLE HERMIER", - "nomCommune": "LA CHAPELLE HERMIER" + "codePostal": "89500", + "codeCommune": "89464", + "libelleAcheminement": "VILLENEUVE SUR YONNE", + "nomCommune": "VILLENEUVE SUR YONNE" }, { - "codePostal": "85120", - "codeCommune": "85059", - "libelleAcheminement": "LA CHATAIGNERAIE", - "nomCommune": "LA CHATAIGNERAIE" + "codePostal": "88110", + "codeCommune": "88277", + "libelleAcheminement": "LUVIGNY", + "nomCommune": "LUVIGNY" }, { - "codePostal": "85390", - "codeCommune": "85066", - "libelleAcheminement": "CHAVAGNES LES REDOUX", - "nomCommune": "CHAVAGNES LES REDOUX" + "codePostal": "89160", + "codeCommune": "89470", + "libelleAcheminement": "VILLIERS LES HAUTS", + "nomCommune": "VILLIERS LES HAUTS" }, { - "codePostal": "85390", - "codeCommune": "85067", - "libelleAcheminement": "CHEFFOIS", - "nomCommune": "CHEFFOIS" + "codePostal": "88130", + "codeCommune": "88286", + "libelleAcheminement": "MARAINVILLE SUR MADON", + "nomCommune": "MARAINVILLE SUR MADON" }, { - "codePostal": "85800", - "codeCommune": "85088", - "libelleAcheminement": "LE FENOUILLER", - "nomCommune": "LE FENOUILLER" + "codePostal": "89740", + "codeCommune": "89475", + "libelleAcheminement": "VILLON", + "nomCommune": "VILLON" }, { - "codePostal": "85800", - "codeCommune": "85100", - "libelleAcheminement": "GIVRAND", - "nomCommune": "GIVRAND" + "codePostal": "88320", + "codeCommune": "88287", + "libelleAcheminement": "MAREY", + "nomCommune": "MAREY" }, { - "codePostal": "85770", - "codeCommune": "85105", - "libelleAcheminement": "LE GUE DE VELLUIRE", - "nomCommune": "LE GUE DE VELLUIRE" + "codePostal": "89290", + "codeCommune": "89478", + "libelleAcheminement": "VINCELLES", + "nomCommune": "VINCELLES" }, { - "codePostal": "85500", - "codeCommune": "85109", - "libelleAcheminement": "LES HERBIERS", - "nomCommune": "LES HERBIERS" + "codePostal": "88320", + "codeCommune": "88289", + "libelleAcheminement": "MARTIGNY LES BAINS", + "nomCommune": "MARTIGNY LES BAINS" }, { - "codePostal": "85770", - "codeCommune": "85111", - "libelleAcheminement": "L ILE D ELLE", - "nomCommune": "L ILE D ELLE" + "codePostal": "89700", + "codeCommune": "89482", + "libelleAcheminement": "VIVIERS", + "nomCommune": "VIVIERS" }, { - "codePostal": "85350", - "codeCommune": "85113", - "libelleAcheminement": "L ILE D YEU", - "nomCommune": "L ILE D YEU" + "codePostal": "88300", + "codeCommune": "88290", + "libelleAcheminement": "MARTIGNY LES GERBONVAUX", + "nomCommune": "MARTIGNY LES GERBONVAUX" }, { - "codePostal": "85540", - "codeCommune": "85116", - "libelleAcheminement": "LA JONCHERE", - "nomCommune": "LA JONCHERE" + "codePostal": "90150", + "codeCommune": "90002", + "libelleAcheminement": "ANGEOT", + "nomCommune": "ANGEOT" }, { - "codePostal": "85130", - "codeCommune": "85119", - "libelleAcheminement": "LES LANDES GENUSSON", - "nomCommune": "LES LANDES GENUSSON" + "codePostal": "88150", + "codeCommune": "88294", + "libelleAcheminement": "MAZELEY", + "nomCommune": "MAZELEY" }, { - "codePostal": "85400", - "codeCommune": "85128", - "libelleAcheminement": "LUCON", - "nomCommune": "LUCON" + "codePostal": "90800", + "codeCommune": "90007", + "libelleAcheminement": "BANVILLARS", + "nomCommune": "BANVILLARS" }, { - "codePostal": "85400", - "codeCommune": "85131", - "libelleAcheminement": "LES MAGNILS REIGNIERS", - "nomCommune": "LES MAGNILS REIGNIERS" + "codePostal": "88140", + "codeCommune": "88296", + "libelleAcheminement": "MEDONVILLE", + "nomCommune": "MEDONVILLE" }, { - "codePostal": "85590", - "codeCommune": "85134", - "libelleAcheminement": "MALLIEVRE", - "nomCommune": "MALLIEVRE" + "codePostal": "90100", + "codeCommune": "90014", + "libelleAcheminement": "BORON", + "nomCommune": "BORON" }, { - "codePostal": "85320", - "codeCommune": "85135", - "libelleAcheminement": "MAREUIL SUR LAY DISSAIS", - "nomCommune": "MAREUIL SUR LAY DISSAIS" + "codePostal": "88210", + "codeCommune": "88300", + "libelleAcheminement": "MENIL DE SENONES", + "nomCommune": "MENIL DE SENONES" }, { - "codePostal": "85570", - "codeCommune": "85137", - "libelleAcheminement": "MARSAIS STE RADEGONDE", - "nomCommune": "MARSAIS STE RADEGONDE" + "codePostal": "90400", + "codeCommune": "90015", + "libelleAcheminement": "BOTANS", + "nomCommune": "BOTANS" }, { - "codePostal": "85700", - "codeCommune": "85141", - "libelleAcheminement": "MENOMBLET", - "nomCommune": "MENOMBLET" + "codePostal": "88700", + "codeCommune": "88301", + "libelleAcheminement": "MENIL SUR BELVITTE", + "nomCommune": "MENIL SUR BELVITTE" }, { - "codePostal": "85600", - "codeCommune": "85146", - "libelleAcheminement": "MONTAIGU VENDEE", - "nomCommune": "MONTAIGU VENDEE" + "codePostal": "90140", + "codeCommune": "90018", + "libelleAcheminement": "BREBOTTE", + "nomCommune": "BREBOTTE" }, { - "codePostal": "85640", - "codeCommune": "85153", - "libelleAcheminement": "MOUCHAMPS", - "nomCommune": "MOUCHAMPS" + "codePostal": "88320", + "codeCommune": "88307", + "libelleAcheminement": "MONT LES LAMARCHE", + "nomCommune": "MONT LES LAMARCHE" }, { - "codePostal": "85390", - "codeCommune": "85154", - "libelleAcheminement": "MOUILLERON ST GERMAIN", - "nomCommune": "MOUILLERON ST GERMAIN" + "codePostal": "90140", + "codeCommune": "90021", + "libelleAcheminement": "CHARMOIS", + "nomCommune": "CHARMOIS" }, { - "codePostal": "85690", - "codeCommune": "85164", - "libelleAcheminement": "NOTRE DAME DE MONTS", - "nomCommune": "NOTRE DAME DE MONTS" + "codePostal": "88240", + "codeCommune": "88311", + "libelleAcheminement": "MONTMOTIER", + "nomCommune": "MONTMOTIER" }, { - "codePostal": "85770", - "codeCommune": "85177", - "libelleAcheminement": "LES VELLUIRE SUR VENDEE", - "nomCommune": "LES VELLUIRE SUR VENDEE" + "codePostal": "90340", + "codeCommune": "90026", + "libelleAcheminement": "CHEVREMONT", + "nomCommune": "CHEVREMONT" }, { - "codePostal": "85620", - "codeCommune": "85190", - "libelleAcheminement": "ROCHESERVIERE", - "nomCommune": "ROCHESERVIERE" + "codePostal": "88700", + "codeCommune": "88333", + "libelleAcheminement": "NOSSONCOURT", + "nomCommune": "NOSSONCOURT" }, { - "codePostal": "85130", - "codeCommune": "85198", - "libelleAcheminement": "ST AUBIN DES ORMEAUX", - "nomCommune": "ST AUBIN DES ORMEAUX" + "codePostal": "90100", + "codeCommune": "90028", + "libelleAcheminement": "COURTELEVANT", + "nomCommune": "COURTELEVANT" }, { - "codePostal": "85540", - "codeCommune": "85201", - "libelleAcheminement": "ST BENOIST SUR MER", - "nomCommune": "ST BENOIST SUR MER" + "codePostal": "88260", + "codeCommune": "88353", + "libelleAcheminement": "PONT LES BONFAYS", + "nomCommune": "PONT LES BONFAYS" }, { - "codePostal": "85670", - "codeCommune": "85204", - "libelleAcheminement": "ST CHRISTOPHE DU LIGNERON", - "nomCommune": "ST CHRISTOPHE DU LIGNERON" + "codePostal": "90300", + "codeCommune": "90029", + "libelleAcheminement": "CRAVANCHE", + "nomCommune": "CRAVANCHE" }, { - "codePostal": "85150", - "codeCommune": "85218", - "libelleAcheminement": "ST GEORGES DE POINTINDOUX", - "nomCommune": "ST GEORGES DE POINTINDOUX" + "codePostal": "88490", + "codeCommune": "88361", + "libelleAcheminement": "PROVENCHERES ET COLROY", + "nomCommune": "PROVENCHERES ET COLROY" }, { - "codePostal": "85230", - "codeCommune": "85221", - "libelleAcheminement": "ST GERVAIS", - "nomCommune": "ST GERVAIS" + "codePostal": "90150", + "codeCommune": "90031", + "libelleAcheminement": "CUNELIERES", + "nomCommune": "CUNELIERES" }, { - "codePostal": "85210", - "codeCommune": "85223", - "libelleAcheminement": "STE HERMINE", - "nomCommune": "STE HERMINE" + "codePostal": "88270", + "codeCommune": "88365", + "libelleAcheminement": "RACECOURT", + "nomCommune": "RACECOURT" + }, + { + "codePostal": "90400", + "codeCommune": "90032", + "libelleAcheminement": "DANJOUTIN", + "nomCommune": "DANJOUTIN" }, { - "codePostal": "85270", - "codeCommune": "85226", - "libelleAcheminement": "ST HILAIRE DE RIEZ", - "nomCommune": "ST HILAIRE DE RIEZ" + "codePostal": "88800", + "codeCommune": "88385", + "libelleAcheminement": "REMONCOURT", + "nomCommune": "REMONCOURT" }, { - "codePostal": "85270", - "codeCommune": "85226", - "libelleAcheminement": "ST HILAIRE DE RIEZ", - "nomCommune": "ST HILAIRE DE RIEZ" + "codePostal": "90850", + "codeCommune": "90039", + "libelleAcheminement": "ESSERT", + "nomCommune": "ESSERT" }, { - "codePostal": "85120", - "codeCommune": "85229", - "libelleAcheminement": "ST HILAIRE DE VOUST", - "nomCommune": "ST HILAIRE DE VOUST" + "codePostal": "88170", + "codeCommune": "88387", + "libelleAcheminement": "REMOVILLE", + "nomCommune": "REMOVILLE" }, { - "codePostal": "85590", - "codeCommune": "85240", - "libelleAcheminement": "ST MALO DU BOIS", - "nomCommune": "ST MALO DU BOIS" + "codePostal": "90100", + "codeCommune": "90045", + "libelleAcheminement": "FECHE L EGLISE", + "nomCommune": "FECHE L EGLISE" }, { - "codePostal": "85590", - "codeCommune": "85242", - "libelleAcheminement": "ST MARS LA REORTHE", - "nomCommune": "ST MARS LA REORTHE" + "codePostal": "88390", + "codeCommune": "88388", + "libelleAcheminement": "RENAUVOID", + "nomCommune": "RENAUVOID" }, { - "codePostal": "85470", - "codeCommune": "85243", - "libelleAcheminement": "BREM SUR MER", - "nomCommune": "BREM SUR MER" + "codePostal": "90100", + "codeCommune": "90046", + "libelleAcheminement": "FLORIMONT", + "nomCommune": "FLORIMONT" }, { - "codePostal": "85700", - "codeCommune": "85254", - "libelleAcheminement": "ST MESMIN", - "nomCommune": "ST MESMIN" + "codePostal": "88320", + "codeCommune": "88390", + "libelleAcheminement": "ROBECOURT", + "nomCommune": "ROBECOURT" }, { - "codePostal": "85200", - "codeCommune": "85256", - "libelleAcheminement": "ST MICHEL LE CLOUCQ", - "nomCommune": "ST MICHEL LE CLOUCQ" + "codePostal": "90150", + "codeCommune": "90049", + "libelleAcheminement": "FOUSSEMAGNE", + "nomCommune": "FOUSSEMAGNE" }, { - "codePostal": "85420", - "codeCommune": "85269", - "libelleAcheminement": "ST SIGISMOND", - "nomCommune": "ST SIGISMOND" + "codePostal": "88120", + "codeCommune": "88391", + "libelleAcheminement": "ROCHESSON", + "nomCommune": "ROCHESSON" }, { - "codePostal": "85110", - "codeCommune": "85276", - "libelleAcheminement": "ST VINCENT STERLANGES", - "nomCommune": "ST VINCENT STERLANGES" + "codePostal": "90150", + "codeCommune": "90062", + "libelleAcheminement": "LARIVIERE", + "nomCommune": "LARIVIERE" }, { - "codePostal": "85540", - "codeCommune": "85277", - "libelleAcheminement": "ST VINCENT SUR GRAON", - "nomCommune": "ST VINCENT SUR GRAON" + "codePostal": "88700", + "codeCommune": "88395", + "libelleAcheminement": "ROMONT", + "nomCommune": "ROMONT" }, { - "codePostal": "85300", - "codeCommune": "85280", - "libelleAcheminement": "SALLERTAINE", - "nomCommune": "SALLERTAINE" + "codePostal": "90110", + "codeCommune": "90066", + "libelleAcheminement": "LEVAL", + "nomCommune": "LEVAL" }, { - "codePostal": "85110", - "codeCommune": "85282", - "libelleAcheminement": "SIGOURNAIS", - "nomCommune": "SIGOURNAIS" + "codePostal": "88100", + "codeCommune": "88413", + "libelleAcheminement": "ST DIE DES VOSGES", + "nomCommune": "ST DIE DES VOSGES" }, { - "codePostal": "85480", - "codeCommune": "85291", - "libelleAcheminement": "THORIGNY", - "nomCommune": "THORIGNY" + "codePostal": "90500", + "codeCommune": "90070", + "libelleAcheminement": "MONTBOUTON", + "nomCommune": "MONTBOUTON" }, { - "codePostal": "85580", - "codeCommune": "85297", - "libelleAcheminement": "TRIAIZE", - "nomCommune": "TRIAIZE" + "codePostal": "88170", + "codeCommune": "88431", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "85240", - "codeCommune": "85306", - "libelleAcheminement": "XANTON CHASSENON", - "nomCommune": "XANTON CHASSENON" + "codePostal": "90370", + "codeCommune": "90081", + "libelleAcheminement": "RECHESY", + "nomCommune": "RECHESY" }, { - "codePostal": "86310", - "codeCommune": "86006", - "libelleAcheminement": "ANTIGNY", - "nomCommune": "ANTIGNY" + "codePostal": "88500", + "codeCommune": "88433", + "libelleAcheminement": "ST PRANCHER", + "nomCommune": "ST PRANCHER" }, { - "codePostal": "86200", - "codeCommune": "86008", - "libelleAcheminement": "ARCAY", - "nomCommune": "ARCAY" + "codePostal": "90140", + "codeCommune": "90082", + "libelleAcheminement": "AUTRECHENE", + "nomCommune": "AUTRECHENE" }, { - "codePostal": "86340", - "codeCommune": "86010", - "libelleAcheminement": "ASLONNES", - "nomCommune": "ASLONNES" + "codePostal": "88800", + "codeCommune": "88434", + "libelleAcheminement": "ST REMIMONT", + "nomCommune": "ST REMIMONT" }, { - "codePostal": "86190", - "codeCommune": "86024", - "libelleAcheminement": "BERUGES", - "nomCommune": "BERUGES" + "codePostal": "90110", + "codeCommune": "90091", + "libelleAcheminement": "ST GERMAIN LE CHATELET", + "nomCommune": "ST GERMAIN LE CHATELET" }, { - "codePostal": "86310", - "codeCommune": "86025", - "libelleAcheminement": "BETHINES", - "nomCommune": "BETHINES" + "codePostal": "88140", + "codeCommune": "88448", + "libelleAcheminement": "SAUVILLE", + "nomCommune": "SAUVILLE" }, { - "codePostal": "86300", - "codeCommune": "86031", - "libelleAcheminement": "BONNES", - "nomCommune": "BONNES" + "codePostal": "90400", + "codeCommune": "90094", + "libelleAcheminement": "SEVENANS", + "nomCommune": "SEVENANS" }, { - "codePostal": "86120", - "codeCommune": "86036", - "libelleAcheminement": "BOURNAND", - "nomCommune": "BOURNAND" + "codePostal": "88320", + "codeCommune": "88450", + "libelleAcheminement": "SENAIDE", + "nomCommune": "SENAIDE" }, { - "codePostal": "86290", - "codeCommune": "86037", - "libelleAcheminement": "BRIGUEIL LE CHANTRE", - "nomCommune": "BRIGUEIL LE CHANTRE" + "codePostal": "90300", + "codeCommune": "90103", + "libelleAcheminement": "VETRIGNE", + "nomCommune": "VETRIGNE" }, { - "codePostal": "37160", - "codeCommune": "86042", - "libelleAcheminement": "BUXEUIL", - "nomCommune": "BUXEUIL" + "codePostal": "88210", + "codeCommune": "88451", + "libelleAcheminement": "SENONES", + "nomCommune": "SENONES" }, { - "codePostal": "86600", - "codeCommune": "86045", - "libelleAcheminement": "CELLE LEVESCAULT", - "nomCommune": "CELLE LEVESCAULT" + "codePostal": "91290", + "codeCommune": "91021", + "libelleAcheminement": "ARPAJON", + "nomCommune": "ARPAJON" }, { - "codePostal": "86510", - "codeCommune": "86051", - "libelleAcheminement": "CHAMPAGNE LE SEC", - "nomCommune": "CHAMPAGNE LE SEC" + "codePostal": "88630", + "codeCommune": "88457", + "libelleAcheminement": "SIONNE", + "nomCommune": "SIONNE" }, { - "codePostal": "86300", - "codeCommune": "86059", - "libelleAcheminement": "CHAPELLE VIVIERS", - "nomCommune": "CHAPELLE VIVIERS" + "codePostal": "91690", + "codeCommune": "91022", + "libelleAcheminement": "ARRANCOURT", + "nomCommune": "ARRANCOURT" }, { - "codePostal": "86350", - "codeCommune": "86064", - "libelleAcheminement": "CHATEAU GARNIER", - "nomCommune": "CHATEAU GARNIER" + "codePostal": "88170", + "codeCommune": "88459", + "libelleAcheminement": "SONCOURT", + "nomCommune": "SONCOURT" }, { - "codePostal": "86330", - "codeCommune": "86069", - "libelleAcheminement": "LA CHAUSSEE", - "nomCommune": "LA CHAUSSEE" + "codePostal": "91830", + "codeCommune": "91037", + "libelleAcheminement": "AUVERNAUX", + "nomCommune": "AUVERNAUX" }, { - "codePostal": "86300", - "codeCommune": "86070", - "libelleAcheminement": "CHAUVIGNY", - "nomCommune": "CHAUVIGNY" + "codePostal": "88150", + "codeCommune": "88465", + "libelleAcheminement": "THAON LES VOSGES", + "nomCommune": "THAON LES VOSGES" }, { - "codePostal": "86190", - "codeCommune": "86074", - "libelleAcheminement": "CHIRE EN MONTREUIL", - "nomCommune": "CHIRE EN MONTREUIL" + "codePostal": "91160", + "codeCommune": "91044", + "libelleAcheminement": "BALLAINVILLIERS", + "nomCommune": "BALLAINVILLIERS" }, { - "codePostal": "86200", - "codeCommune": "86079", - "libelleAcheminement": "LA ROCHE RIGAULT", - "nomCommune": "LA ROCHE RIGAULT" + "codePostal": "88800", + "codeCommune": "88466", + "libelleAcheminement": "THEY SOUS MONTFORT", + "nomCommune": "THEY SOUS MONTFORT" }, { - "codePostal": "86200", - "codeCommune": "86079", - "libelleAcheminement": "LA ROCHE RIGAULT", - "nomCommune": "LA ROCHE RIGAULT" + "codePostal": "91610", + "codeCommune": "91045", + "libelleAcheminement": "BALLANCOURT SUR ESSONNE", + "nomCommune": "BALLANCOURT SUR ESSONNE" }, { - "codePostal": "86700", - "codeCommune": "86082", - "libelleAcheminement": "VALENCE EN POITOU", - "nomCommune": "VALENCE EN POITOU" + "codePostal": "88500", + "codeCommune": "88469", + "libelleAcheminement": "THIRAUCOURT", + "nomCommune": "THIRAUCOURT" }, { - "codePostal": "86290", - "codeCommune": "86084", - "libelleAcheminement": "COULONGES", - "nomCommune": "COULONGES" + "codePostal": "91690", + "codeCommune": "91079", + "libelleAcheminement": "BOISSY LA RIVIERE", + "nomCommune": "BOISSY LA RIVIERE" }, { - "codePostal": "86110", - "codeCommune": "86087", - "libelleAcheminement": "CRAON", - "nomCommune": "CRAON" + "codePostal": "88350", + "codeCommune": "88477", + "libelleAcheminement": "TRAMPOT", + "nomCommune": "TRAMPOT" }, { - "codePostal": "86420", - "codeCommune": "86093", - "libelleAcheminement": "DERCE", - "nomCommune": "DERCE" + "codePostal": "91590", + "codeCommune": "91080", + "libelleAcheminement": "BOISSY LE CUTTE", + "nomCommune": "BOISSY LE CUTTE" }, { - "codePostal": "86300", - "codeCommune": "86122", - "libelleAcheminement": "LAUTHIERS", - "nomCommune": "LAUTHIERS" + "codePostal": "88340", + "codeCommune": "88487", + "libelleAcheminement": "LE VAL D AJOL", + "nomCommune": "LE VAL D AJOL" }, { - "codePostal": "86300", - "codeCommune": "86126", - "libelleAcheminement": "LEIGNES SUR FONTAINE", - "nomCommune": "LEIGNES SUR FONTAINE" + "codePostal": "91070", + "codeCommune": "91086", + "libelleAcheminement": "BONDOUFLE", + "nomCommune": "BONDOUFLE" }, { - "codePostal": "86230", - "codeCommune": "86127", - "libelleAcheminement": "LEIGNE SUR USSEAU", - "nomCommune": "LEIGNE SUR USSEAU" + "codePostal": "88800", + "codeCommune": "88490", + "libelleAcheminement": "VALLEROY LE SEC", + "nomCommune": "VALLEROY LE SEC" }, { - "codePostal": "86220", - "codeCommune": "86130", - "libelleAcheminement": "LEUGNY", - "nomCommune": "LEUGNY" + "codePostal": "91470", + "codeCommune": "91093", + "libelleAcheminement": "BOULLAY LES TROUX", + "nomCommune": "BOULLAY LES TROUX" }, { - "codePostal": "86200", - "codeCommune": "86137", - "libelleAcheminement": "LOUDUN", - "nomCommune": "LOUDUN" + "codePostal": "88000", + "codeCommune": "88495", + "libelleAcheminement": "VAUDEVILLE", + "nomCommune": "VAUDEVILLE" }, { - "codePostal": "86170", - "codeCommune": "86144", - "libelleAcheminement": "MAISONNEUVE", - "nomCommune": "MAISONNEUVE" + "codePostal": "91220", + "codeCommune": "91103", + "libelleAcheminement": "BRETIGNY SUR ORGE", + "nomCommune": "BRETIGNY SUR ORGE" }, { - "codePostal": "86370", - "codeCommune": "86145", - "libelleAcheminement": "MARCAY", - "nomCommune": "MARCAY" + "codePostal": "88600", + "codeCommune": "88502", + "libelleAcheminement": "VERVEZELLE", + "nomCommune": "VERVEZELLE" }, { - "codePostal": "86160", - "codeCommune": "86148", - "libelleAcheminement": "MARNAY", - "nomCommune": "MARNAY" + "codePostal": "91150", + "codeCommune": "91109", + "libelleAcheminement": "BRIERES LES SCELLES", + "nomCommune": "BRIERES LES SCELLES" }, { - "codePostal": "86150", - "codeCommune": "86159", - "libelleAcheminement": "MILLAC", - "nomCommune": "MILLAC" + "codePostal": "88110", + "codeCommune": "88503", + "libelleAcheminement": "VEXAINCOURT", + "nomCommune": "VEXAINCOURT" }, { - "codePostal": "86210", - "codeCommune": "86164", - "libelleAcheminement": "MONTHOIRON", - "nomCommune": "MONTHOIRON" + "codePostal": "91640", + "codeCommune": "91111", + "libelleAcheminement": "BRIIS SOUS FORGES", + "nomCommune": "BRIIS SOUS FORGES" }, { - "codePostal": "86200", - "codeCommune": "86173", - "libelleAcheminement": "MOUTERRE SILLY", - "nomCommune": "MOUTERRE SILLY" + "codePostal": "88150", + "codeCommune": "88509", + "libelleAcheminement": "VILLONCOURT", + "nomCommune": "VILLONCOURT" }, { - "codePostal": "86170", - "codeCommune": "86177", - "libelleAcheminement": "NEUVILLE DE POITOU", - "nomCommune": "NEUVILLE DE POITOU" + "codePostal": "91740", + "codeCommune": "91131", + "libelleAcheminement": "CHALOU MOULINEUX", + "nomCommune": "CHALOU MOULINEUX" }, { - "codePostal": "86260", - "codeCommune": "86202", - "libelleAcheminement": "LA PUYE", - "nomCommune": "LA PUYE" + "codePostal": "88170", + "codeCommune": "88514", + "libelleAcheminement": "VIOCOURT", + "nomCommune": "VIOCOURT" }, { - "codePostal": "86150", - "codeCommune": "86203", - "libelleAcheminement": "QUEAUX", - "nomCommune": "QUEAUX" + "codePostal": "91150", + "codeCommune": "91137", + "libelleAcheminement": "CHAMPMOTTEUX", + "nomCommune": "CHAMPMOTTEUX" }, { - "codePostal": "86190", - "codeCommune": "86204", - "libelleAcheminement": "QUINCAY", - "nomCommune": "QUINCAY" + "codePostal": "88260", + "codeCommune": "88517", + "libelleAcheminement": "VIVIERS LE GRAS", + "nomCommune": "VIVIERS LE GRAS" }, { - "codePostal": "86270", - "codeCommune": "86207", - "libelleAcheminement": "LA ROCHE POSAY", - "nomCommune": "LA ROCHE POSAY" + "codePostal": "91410", + "codeCommune": "91145", + "libelleAcheminement": "CHATIGNONVILLE", + "nomCommune": "CHATIGNONVILLE" }, { - "codePostal": "86310", - "codeCommune": "86223", - "libelleAcheminement": "ST GERMAIN", - "nomCommune": "ST GERMAIN" + "codePostal": "88500", + "codeCommune": "88522", + "libelleAcheminement": "VOMECOURT SUR MADON", + "nomCommune": "VOMECOURT SUR MADON" }, { - "codePostal": "86330", - "codeCommune": "86225", - "libelleAcheminement": "ST JEAN DE SAUVES", - "nomCommune": "ST JEAN DE SAUVES" + "codePostal": "91630", + "codeCommune": "91156", + "libelleAcheminement": "CHEPTAINVILLE", + "nomCommune": "CHEPTAINVILLE" }, { - "codePostal": "86800", - "codeCommune": "86226", - "libelleAcheminement": "ST JULIEN L ARS", - "nomCommune": "ST JULIEN L ARS" + "codePostal": "88170", + "codeCommune": "88523", + "libelleAcheminement": "VOUXEY", + "nomCommune": "VOUXEY" }, { - "codePostal": "86120", - "codeCommune": "86229", - "libelleAcheminement": "ST LEGER DE MONTBRILLAIS", - "nomCommune": "ST LEGER DE MONTBRILLAIS" + "codePostal": "91750", + "codeCommune": "91159", + "libelleAcheminement": "CHEVANNES", + "nomCommune": "CHEVANNES" }, { - "codePostal": "86400", - "codeCommune": "86231", - "libelleAcheminement": "ST MACOUX", - "nomCommune": "ST MACOUX" + "codePostal": "88140", + "codeCommune": "88524", + "libelleAcheminement": "VRECOURT", + "nomCommune": "VRECOURT" }, { - "codePostal": "86160", - "codeCommune": "86235", - "libelleAcheminement": "ST MAURICE LA CLOUERE", - "nomCommune": "ST MAURICE LA CLOUERE" + "codePostal": "91830", + "codeCommune": "91179", + "libelleAcheminement": "LE COUDRAY MONTCEAUX", + "nomCommune": "LE COUDRAY MONTCEAUX" }, { - "codePostal": "86600", - "codeCommune": "86244", - "libelleAcheminement": "ST SAUVANT", - "nomCommune": "ST SAUVANT" + "codePostal": "88460", + "codeCommune": "88528", + "libelleAcheminement": "XAMONTARUPT", + "nomCommune": "XAMONTARUPT" }, { - "codePostal": "86350", - "codeCommune": "86248", - "libelleAcheminement": "ST SECONDIN", - "nomCommune": "ST SECONDIN" + "codePostal": "91830", + "codeCommune": "91179", + "libelleAcheminement": "LE COUDRAY MONTCEAUX", + "nomCommune": "LE COUDRAY MONTCEAUX" }, { - "codePostal": "86420", - "codeCommune": "86249", - "libelleAcheminement": "SAIRES", - "nomCommune": "SAIRES" + "codePostal": "89800", + "codeCommune": "89002", + "libelleAcheminement": "AIGREMONT", + "nomCommune": "AIGREMONT" }, { - "codePostal": "86500", - "codeCommune": "86254", - "libelleAcheminement": "SAULGE", - "nomCommune": "SAULGE" + "codePostal": "91490", + "codeCommune": "91180", + "libelleAcheminement": "COURANCES", + "nomCommune": "COURANCES" }, { - "codePostal": "86800", - "codeCommune": "86256", - "libelleAcheminement": "SAVIGNY LEVESCAULT", - "nomCommune": "SAVIGNY LEVESCAULT" + "codePostal": "89710", + "codeCommune": "89003", + "libelleAcheminement": "MONTHOLON", + "nomCommune": "MONTHOLON" }, { - "codePostal": "86320", - "codeCommune": "86262", - "libelleAcheminement": "SILLARS", - "nomCommune": "SILLARS" + "codePostal": "91680", + "codeCommune": "91186", + "libelleAcheminement": "COURSON MONTELOUP", + "nomCommune": "COURSON MONTELOUP" }, { - "codePostal": "86120", - "codeCommune": "86269", - "libelleAcheminement": "TERNAY", - "nomCommune": "TERNAY" + "codePostal": "89160", + "codeCommune": "89005", + "libelleAcheminement": "ANCY LE FRANC", + "nomCommune": "ANCY LE FRANC" }, { - "codePostal": "86120", - "codeCommune": "86287", - "libelleAcheminement": "VEZIERES", - "nomCommune": "VEZIERES" + "codePostal": "91560", + "codeCommune": "91191", + "libelleAcheminement": "CROSNE", + "nomCommune": "CROSNE" }, { - "codePostal": "86310", - "codeCommune": "86291", - "libelleAcheminement": "VILLEMORT", - "nomCommune": "VILLEMORT" + "codePostal": "89480", + "codeCommune": "89007", + "libelleAcheminement": "ANDRYES", + "nomCommune": "ANDRYES" }, { - "codePostal": "86190", - "codeCommune": "86294", - "libelleAcheminement": "VOUILLE", - "nomCommune": "VOUILLE" + "codePostal": "91360", + "codeCommune": "91216", + "libelleAcheminement": "EPINAY SUR ORGE", + "nomCommune": "EPINAY SUR ORGE" }, { - "codePostal": "86400", - "codeCommune": "86295", - "libelleAcheminement": "VOULEME", - "nomCommune": "VOULEME" + "codePostal": "89440", + "codeCommune": "89008", + "libelleAcheminement": "ANGELY", + "nomCommune": "ANGELY" }, { - "codePostal": "86580", - "codeCommune": "86297", - "libelleAcheminement": "VOUNEUIL SOUS BIARD", - "nomCommune": "VOUNEUIL SOUS BIARD" + "codePostal": "91000", + "codeCommune": "91228", + "libelleAcheminement": "EVRY COURCOURONNES", + "nomCommune": "EVRY COURCOURONNES" }, { - "codePostal": "86210", - "codeCommune": "86298", - "libelleAcheminement": "VOUNEUIL SUR VIENNE", - "nomCommune": "VOUNEUIL SUR VIENNE" + "codePostal": "89200", + "codeCommune": "89011", + "libelleAcheminement": "ANNEOT", + "nomCommune": "ANNEOT" }, { - "codePostal": "87240", - "codeCommune": "87002", - "libelleAcheminement": "AMBAZAC", - "nomCommune": "AMBAZAC" + "codePostal": "91540", + "codeCommune": "91244", + "libelleAcheminement": "FONTENAY LE VICOMTE", + "nomCommune": "FONTENAY LE VICOMTE" }, { - "codePostal": "87360", - "codeCommune": "87006", - "libelleAcheminement": "AZAT LE RIS", - "nomCommune": "AZAT LE RIS" + "codePostal": "89160", + "codeCommune": "89017", + "libelleAcheminement": "ARGENTEUIL SUR ARMANCON", + "nomCommune": "ARGENTEUIL SUR ARMANCON" }, { - "codePostal": "87210", - "codeCommune": "87008", - "libelleAcheminement": "LA BAZEUGE", - "nomCommune": "LA BAZEUGE" + "codePostal": "91400", + "codeCommune": "91274", + "libelleAcheminement": "GOMETZ LA VILLE", + "nomCommune": "GOMETZ LA VILLE" }, { - "codePostal": "87300", - "codeCommune": "87011", - "libelleAcheminement": "BELLAC", - "nomCommune": "BELLAC" + "codePostal": "89660", + "codeCommune": "89020", + "libelleAcheminement": "ASNIERES SOUS BOIS", + "nomCommune": "ASNIERES SOUS BOIS" }, { - "codePostal": "87700", - "codeCommune": "87015", - "libelleAcheminement": "BEYNAC", - "nomCommune": "BEYNAC" + "codePostal": "91350", + "codeCommune": "91286", + "libelleAcheminement": "GRIGNY", + "nomCommune": "GRIGNY" }, { - "codePostal": "87110", - "codeCommune": "87021", - "libelleAcheminement": "BOSMIE L AIGUILLE", - "nomCommune": "BOSMIE L AIGUILLE" + "codePostal": "89440", + "codeCommune": "89022", + "libelleAcheminement": "ATHIE", + "nomCommune": "ATHIE" }, { - "codePostal": "87330", - "codeCommune": "87028", - "libelleAcheminement": "VAL D OIRE ET GARTEMPE", - "nomCommune": "VAL D OIRE ET GARTEMPE" + "codePostal": "91690", + "codeCommune": "91294", + "libelleAcheminement": "GUILLERVAL", + "nomCommune": "GUILLERVAL" }, { - "codePostal": "87230", - "codeCommune": "87029", - "libelleAcheminement": "LES CARS", - "nomCommune": "LES CARS" + "codePostal": "89000", + "codeCommune": "89024", + "libelleAcheminement": "AUXERRE", + "nomCommune": "AUXERRE" }, { - "codePostal": "87440", - "codeCommune": "87037", - "libelleAcheminement": "LA CHAPELLE MONTBRANDEIX", - "nomCommune": "LA CHAPELLE MONTBRANDEIX" + "codePostal": "91640", + "codeCommune": "91319", + "libelleAcheminement": "JANVRY", + "nomCommune": "JANVRY" }, { - "codePostal": "87130", - "codeCommune": "87040", - "libelleAcheminement": "CHATEAUNEUF LA FORET", - "nomCommune": "CHATEAUNEUF LA FORET" + "codePostal": "89800", + "codeCommune": "89034", + "libelleAcheminement": "BEINE", + "nomCommune": "BEINE" }, { - "codePostal": "87290", - "codeCommune": "87041", - "libelleAcheminement": "CHATEAUPONSAC", - "nomCommune": "CHATEAUPONSAC" + "codePostal": "91310", + "codeCommune": "91339", + "libelleAcheminement": "LINAS", + "nomCommune": "LINAS" }, { - "codePostal": "87210", - "codeCommune": "87052", - "libelleAcheminement": "LA CROIX SUR GARTEMPE", - "nomCommune": "LA CROIX SUR GARTEMPE" + "codePostal": "89360", + "codeCommune": "89038", + "libelleAcheminement": "BERNOUIL", + "nomCommune": "BERNOUIL" }, { - "codePostal": "87150", - "codeCommune": "87054", - "libelleAcheminement": "CUSSAC", - "nomCommune": "CUSSAC" + "codePostal": "91720", + "codeCommune": "91359", + "libelleAcheminement": "MAISSE", + "nomCommune": "MAISSE" }, { - "codePostal": "87210", - "codeCommune": "87056", - "libelleAcheminement": "DINSAC", - "nomCommune": "DINSAC" + "codePostal": "89270", + "codeCommune": "89040", + "libelleAcheminement": "BESSY SUR CURE", + "nomCommune": "BESSY SUR CURE" }, { - "codePostal": "87400", - "codeCommune": "87062", - "libelleAcheminement": "EYBOULEUF", - "nomCommune": "EYBOULEUF" + "codePostal": "91150", + "codeCommune": "91374", + "libelleAcheminement": "MAROLLES EN BEAUCE", + "nomCommune": "MAROLLES EN BEAUCE" }, { - "codePostal": "87500", - "codeCommune": "87071", - "libelleAcheminement": "GLANDON", - "nomCommune": "GLANDON" + "codePostal": "89770", + "codeCommune": "89048", + "libelleAcheminement": "BOEURS EN OTHE", + "nomCommune": "BOEURS EN OTHE" }, { - "codePostal": "87160", - "codeCommune": "87074", - "libelleAcheminement": "LES GRANDS CHEZEAUX", - "nomCommune": "LES GRANDS CHEZEAUX" + "codePostal": "91630", + "codeCommune": "91376", + "libelleAcheminement": "MAROLLES EN HUREPOIX", + "nomCommune": "MAROLLES EN HUREPOIX" }, { - "codePostal": "87160", - "codeCommune": "87090", - "libelleAcheminement": "MAILHAC SUR BENAIZE", - "nomCommune": "MAILHAC SUR BENAIZE" + "codePostal": "89400", + "codeCommune": "89050", + "libelleAcheminement": "BONNARD", + "nomCommune": "BONNARD" }, { - "codePostal": "87440", - "codeCommune": "87092", - "libelleAcheminement": "MARVAL", - "nomCommune": "MARVAL" + "codePostal": "91660", + "codeCommune": "91390", + "libelleAcheminement": "LE MEREVILLOIS", + "nomCommune": "LE MEREVILLOIS" }, { - "codePostal": "87800", - "codeCommune": "87094", - "libelleAcheminement": "MEILHAC", - "nomCommune": "MEILHAC" + "codePostal": "89113", + "codeCommune": "89053", + "libelleAcheminement": "BRANCHES", + "nomCommune": "BRANCHES" }, { - "codePostal": "87330", - "codeCommune": "87101", - "libelleAcheminement": "MORTEMART", - "nomCommune": "MORTEMART" + "codePostal": "91490", + "codeCommune": "91405", + "libelleAcheminement": "MILLY LA FORET", + "nomCommune": "MILLY LA FORET" }, { - "codePostal": "87800", - "codeCommune": "87106", - "libelleAcheminement": "NEXON", - "nomCommune": "NEXON" + "codePostal": "89360", + "codeCommune": "89062", + "libelleAcheminement": "CARISEY", + "nomCommune": "CARISEY" }, { - "codePostal": "87380", - "codeCommune": "87120", - "libelleAcheminement": "LA PORCHERIE", - "nomCommune": "LA PORCHERIE" + "codePostal": "91590", + "codeCommune": "91412", + "libelleAcheminement": "MONDEVILLE", + "nomCommune": "MONDEVILLE" }, { - "codePostal": "87290", - "codeCommune": "87133", - "libelleAcheminement": "ST AMAND MAGNAZEIX", - "nomCommune": "ST AMAND MAGNAZEIX" + "codePostal": "89116", + "codeCommune": "89063", + "libelleAcheminement": "LA CELLE ST CYR", + "nomCommune": "LA CELLE ST CYR" }, { - "codePostal": "87200", - "codeCommune": "87140", - "libelleAcheminement": "ST BRICE SUR VIENNE", - "nomCommune": "ST BRICE SUR VIENNE" + "codePostal": "91930", + "codeCommune": "91414", + "libelleAcheminement": "MONNERVILLE", + "nomCommune": "MONNERVILLE" }, { - "codePostal": "87510", - "codeCommune": "87143", - "libelleAcheminement": "ST GENCE", - "nomCommune": "ST GENCE" + "codePostal": "89320", + "codeCommune": "89065", + "libelleAcheminement": "CERILLY", + "nomCommune": "CERILLY" }, { - "codePostal": "87260", - "codeCommune": "87151", - "libelleAcheminement": "ST JEAN LIGOURE", - "nomCommune": "ST JEAN LIGOURE" + "codePostal": "91340", + "codeCommune": "91461", + "libelleAcheminement": "OLLAINVILLE", + "nomCommune": "OLLAINVILLE" }, { - "codePostal": "87240", - "codeCommune": "87157", - "libelleAcheminement": "ST LAURENT LES EGLISES", - "nomCommune": "ST LAURENT LES EGLISES" + "codePostal": "89800", + "codeCommune": "89068", + "libelleAcheminement": "CHABLIS", + "nomCommune": "CHABLIS" }, { - "codePostal": "87330", - "codeCommune": "87163", - "libelleAcheminement": "ST MARTIAL SUR ISOP", - "nomCommune": "ST MARTIAL SUR ISOP" + "codePostal": "91400", + "codeCommune": "91471", + "libelleAcheminement": "ORSAY", + "nomCommune": "ORSAY" }, { - "codePostal": "87200", - "codeCommune": "87164", - "libelleAcheminement": "ST MARTIN DE JUSSAC", - "nomCommune": "ST MARTIN DE JUSSAC" + "codePostal": "89800", + "codeCommune": "89068", + "libelleAcheminement": "CHABLIS", + "nomCommune": "CHABLIS" }, { - "codePostal": "87260", - "codeCommune": "87174", - "libelleAcheminement": "ST PAUL", - "nomCommune": "ST PAUL" + "codePostal": "94390", + "codeCommune": "91479", + "libelleAcheminement": "PARAY VIEILLE POSTE", + "nomCommune": "PARAY VIEILLE POSTE" }, { - "codePostal": "87290", - "codeCommune": "87180", - "libelleAcheminement": "ST SORNIN LEULAC", - "nomCommune": "ST SORNIN LEULAC" + "codePostal": "89300", + "codeCommune": "89075", + "libelleAcheminement": "CHAMPLAY", + "nomCommune": "CHAMPLAY" }, { - "codePostal": "87700", - "codeCommune": "87188", - "libelleAcheminement": "ST YRIEIX SOUS AIXE", - "nomCommune": "ST YRIEIX SOUS AIXE" + "codePostal": "91220", + "codeCommune": "91494", + "libelleAcheminement": "LE PLESSIS PATE", + "nomCommune": "LE PLESSIS PATE" }, { - "codePostal": "87620", - "codeCommune": "87191", - "libelleAcheminement": "SEREILHAC", - "nomCommune": "SEREILHAC" + "codePostal": "89120", + "codeCommune": "89086", + "libelleAcheminement": "CHARNY OREE DE PUISAYE", + "nomCommune": "CHARNY OREE DE PUISAYE" }, { - "codePostal": "87130", - "codeCommune": "87194", - "libelleAcheminement": "SUSSAC", - "nomCommune": "SUSSAC" + "codePostal": "91480", + "codeCommune": "91514", + "libelleAcheminement": "QUINCY SOUS SENART", + "nomCommune": "QUINCY SOUS SENART" }, { - "codePostal": "87140", - "codeCommune": "87197", - "libelleAcheminement": "THOURON", - "nomCommune": "THOURON" + "codePostal": "89800", + "codeCommune": "89095", + "libelleAcheminement": "CHEMILLY SUR SEREIN", + "nomCommune": "CHEMILLY SUR SEREIN" }, { - "codePostal": "87140", - "codeCommune": "87198", - "libelleAcheminement": "VAULRY", - "nomCommune": "VAULRY" + "codePostal": "91240", + "codeCommune": "91570", + "libelleAcheminement": "ST MICHEL SUR ORGE", + "nomCommune": "ST MICHEL SUR ORGE" }, { - "codePostal": "88270", - "codeCommune": "88001", - "libelleAcheminement": "LES ABLEUVENETTES", - "nomCommune": "LES ABLEUVENETTES" + "codePostal": "89250", + "codeCommune": "89096", + "libelleAcheminement": "CHEMILLY SUR YONNE", + "nomCommune": "CHEMILLY SUR YONNE" }, { - "codePostal": "88300", - "codeCommune": "88015", - "libelleAcheminement": "ATTIGNEVILLE", - "nomCommune": "ATTIGNEVILLE" + "codePostal": "91650", + "codeCommune": "91581", + "libelleAcheminement": "ST YON", + "nomCommune": "ST YON" }, { - "codePostal": "88300", - "codeCommune": "88020", - "libelleAcheminement": "AUTREVILLE", - "nomCommune": "AUTREVILLE" + "codePostal": "89600", + "codeCommune": "89101", + "libelleAcheminement": "CHEU", + "nomCommune": "CHEU" }, { - "codePostal": "88700", - "codeCommune": "88021", - "libelleAcheminement": "AUTREY", - "nomCommune": "AUTREY" + "codePostal": "91250", + "codeCommune": "91617", + "libelleAcheminement": "TIGERY", + "nomCommune": "TIGERY" }, { - "codePostal": "88460", - "codeCommune": "88028", - "libelleAcheminement": "LA BAFFE", - "nomCommune": "LA BAFFE" + "codePostal": "89320", + "codeCommune": "89120", + "libelleAcheminement": "COULOURS", + "nomCommune": "COULOURS" }, { - "codePostal": "88240", - "codeCommune": "88029", - "libelleAcheminement": "LA VOGE LES BAINS", - "nomCommune": "LA VOGE LES BAINS" + "codePostal": "91140", + "codeCommune": "91661", + "libelleAcheminement": "VILLEBON SUR YVETTE", + "nomCommune": "VILLEBON SUR YVETTE" }, { - "codePostal": "88240", - "codeCommune": "88029", - "libelleAcheminement": "LA VOGE LES BAINS", - "nomCommune": "LA VOGE LES BAINS" + "codePostal": "89800", + "codeCommune": "89123", + "libelleAcheminement": "COURGIS", + "nomCommune": "COURGIS" }, { - "codePostal": "88210", - "codeCommune": "88033", - "libelleAcheminement": "BAN DE SAPT", - "nomCommune": "BAN DE SAPT" + "codePostal": "91170", + "codeCommune": "91687", + "libelleAcheminement": "VIRY CHATILLON", + "nomCommune": "VIRY CHATILLON" }, { - "codePostal": "88300", - "codeCommune": "88036", - "libelleAcheminement": "BARVILLE", - "nomCommune": "BARVILLE" + "codePostal": "89480", + "codeCommune": "89129", + "libelleAcheminement": "CRAIN", + "nomCommune": "CRAIN" }, { - "codePostal": "88120", - "codeCommune": "88037", - "libelleAcheminement": "BASSE SUR LE RUPT", - "nomCommune": "BASSE SUR LE RUPT" + "codePostal": "92160", + "codeCommune": "92002", + "libelleAcheminement": "ANTONY", + "nomCommune": "ANTONY" }, { - "codePostal": "88150", - "codeCommune": "88040", - "libelleAcheminement": "BAYECOURT", - "nomCommune": "BAYECOURT" + "codePostal": "89420", + "codeCommune": "89134", + "libelleAcheminement": "CUSSY LES FORGES", + "nomCommune": "CUSSY LES FORGES" }, { - "codePostal": "88270", - "codeCommune": "88041", - "libelleAcheminement": "BAZEGNEY", - "nomCommune": "BAZEGNEY" + "codePostal": "92600", + "codeCommune": "92004", + "libelleAcheminement": "ASNIERES SUR SEINE", + "nomCommune": "ASNIERES SUR SEINE" }, { - "codePostal": "88500", - "codeCommune": "88043", - "libelleAcheminement": "BAZOILLES ET MENIL", - "nomCommune": "BAZOILLES ET MENIL" + "codePostal": "89700", + "codeCommune": "89137", + "libelleAcheminement": "DANNEMOINE", + "nomCommune": "DANNEMOINE" }, { - "codePostal": "88300", - "codeCommune": "88045", - "libelleAcheminement": "BEAUFREMONT", - "nomCommune": "BEAUFREMONT" + "codePostal": "92340", + "codeCommune": "92014", + "libelleAcheminement": "BOURG LA REINE", + "nomCommune": "BOURG LA REINE" }, { - "codePostal": "88600", - "codeCommune": "88046", - "libelleAcheminement": "BEAUMENIL", - "nomCommune": "BEAUMENIL" + "codePostal": "89560", + "codeCommune": "89148", + "libelleAcheminement": "DRUYES LES BELLES FONTAINES", + "nomCommune": "DRUYES LES BELLES FONTAINES" }, { - "codePostal": "88260", - "codeCommune": "88049", - "libelleAcheminement": "BELMONT LES DARNEY", - "nomCommune": "BELMONT LES DARNEY" + "codePostal": "92380", + "codeCommune": "92033", + "libelleAcheminement": "GARCHES", + "nomCommune": "GARCHES" }, { - "codePostal": "88260", - "codeCommune": "88052", - "libelleAcheminement": "BELRUPT", - "nomCommune": "BELRUPT" + "codePostal": "89700", + "codeCommune": "89153", + "libelleAcheminement": "EPINEUIL", + "nomCommune": "EPINEUIL" }, { - "codePostal": "88490", - "codeCommune": "88057", - "libelleAcheminement": "LE BEULAY", - "nomCommune": "LE BEULAY" + "codePostal": "92130", + "codeCommune": "92040", + "libelleAcheminement": "ISSY LES MOULINEAUX", + "nomCommune": "ISSY LES MOULINEAUX" }, { - "codePostal": "88320", - "codeCommune": "88062", - "libelleAcheminement": "BLEVAINCOURT", - "nomCommune": "BLEVAINCOURT" + "codePostal": "89190", + "codeCommune": "89171", + "libelleAcheminement": "FOISSY SUR VANNE", + "nomCommune": "FOISSY SUR VANNE" }, { - "codePostal": "88270", - "codeCommune": "88069", - "libelleAcheminement": "BOUXIERES AUX BOIS", - "nomCommune": "BOUXIERES AUX BOIS" + "codePostal": "92300", + "codeCommune": "92044", + "libelleAcheminement": "LEVALLOIS PERRET", + "nomCommune": "LEVALLOIS PERRET" }, { - "codePostal": "88270", - "codeCommune": "88071", - "libelleAcheminement": "BOUZEMONT", - "nomCommune": "BOUZEMONT" + "codePostal": "89450", + "codeCommune": "89176", + "libelleAcheminement": "FONTENAY PRES VEZELAY", + "nomCommune": "FONTENAY PRES VEZELAY" }, { - "codePostal": "88350", - "codeCommune": "88074", - "libelleAcheminement": "BRECHAINVILLE", - "nomCommune": "BRECHAINVILLE" + "codePostal": "92330", + "codeCommune": "92071", + "libelleAcheminement": "SCEAUX", + "nomCommune": "SCEAUX" }, { - "codePostal": "88600", - "codeCommune": "88078", - "libelleAcheminement": "BRUYERES", - "nomCommune": "BRUYERES" + "codePostal": "89600", + "codeCommune": "89186", + "libelleAcheminement": "GERMIGNY", + "nomCommune": "GERMIGNY" }, { - "codePostal": "88300", - "codeCommune": "88083", - "libelleAcheminement": "CERTILLEUX", - "nomCommune": "CERTILLEUX" + "codePostal": "92150", + "codeCommune": "92073", + "libelleAcheminement": "SURESNES", + "nomCommune": "SURESNES" }, { - "codePostal": "88640", - "codeCommune": "88085", - "libelleAcheminement": "CHAMPDRAY", - "nomCommune": "CHAMPDRAY" + "codePostal": "89113", + "codeCommune": "89196", + "libelleAcheminement": "VALRAVILLON", + "nomCommune": "VALRAVILLON" }, { - "codePostal": "88000", - "codeCommune": "88087", - "libelleAcheminement": "CHANTRAINE", - "nomCommune": "CHANTRAINE" + "codePostal": "92410", + "codeCommune": "92077", + "libelleAcheminement": "VILLE D AVRAY", + "nomCommune": "VILLE D AVRAY" }, { - "codePostal": "88240", - "codeCommune": "88088", - "libelleAcheminement": "LA CHAPELLE AUX BOIS", - "nomCommune": "LA CHAPELLE AUX BOIS" + "codePostal": "89420", + "codeCommune": "89197", + "libelleAcheminement": "GUILLON TERRE PLAINE", + "nomCommune": "GUILLON TERRE PLAINE" }, { - "codePostal": "88130", - "codeCommune": "88090", - "libelleAcheminement": "CHARMES", - "nomCommune": "CHARMES" + "codePostal": "92390", + "codeCommune": "92078", + "libelleAcheminement": "VILLENEUVE LA GARENNE", + "nomCommune": "VILLENEUVE LA GARENNE" }, { - "codePostal": "88460", - "codeCommune": "88091", - "libelleAcheminement": "CHARMOIS DEVANT BRUYERES", - "nomCommune": "CHARMOIS DEVANT BRUYERES" + "codePostal": "89580", + "codeCommune": "89199", + "libelleAcheminement": "GY L EVEQUE", + "nomCommune": "GY L EVEQUE" }, { - "codePostal": "88210", - "codeCommune": "88093", - "libelleAcheminement": "CHATAS", - "nomCommune": "CHATAS" + "codePostal": "93150", + "codeCommune": "93007", + "libelleAcheminement": "LE BLANC MESNIL", + "nomCommune": "LE BLANC MESNIL" }, { - "codePostal": "88150", - "codeCommune": "88099", - "libelleAcheminement": "CHAVELOT", - "nomCommune": "CHAVELOT" + "codePostal": "89200", + "codeCommune": "89203", + "libelleAcheminement": "ISLAND", + "nomCommune": "ISLAND" }, { - "codePostal": "88500", - "codeCommune": "88100", - "libelleAcheminement": "CHEF HAUT", - "nomCommune": "CHEF HAUT" + "codePostal": "93440", + "codeCommune": "93030", + "libelleAcheminement": "DUGNY", + "nomCommune": "DUGNY" }, { - "codePostal": "88100", - "codeCommune": "88111", - "libelleAcheminement": "COINCHES", - "nomCommune": "COINCHES" + "codePostal": "89130", + "codeCommune": "89217", + "libelleAcheminement": "LALANDE", + "nomCommune": "LALANDE" }, { - "codePostal": "88430", - "codeCommune": "88115", - "libelleAcheminement": "CORCIEUX", - "nomCommune": "CORCIEUX" + "codePostal": "93320", + "codeCommune": "93057", + "libelleAcheminement": "LES PAVILLONS SOUS BOIS", + "nomCommune": "LES PAVILLONS SOUS BOIS" }, { - "codePostal": "88170", - "codeCommune": "88117", - "libelleAcheminement": "COURCELLES SOUS CHATENOIS", - "nomCommune": "COURCELLES SOUS CHATENOIS" + "codePostal": "89520", + "codeCommune": "89222", + "libelleAcheminement": "LEVIS", + "nomCommune": "LEVIS" }, { - "codePostal": "88270", - "codeCommune": "88122", - "libelleAcheminement": "DAMAS ET BETTEGNEY", - "nomCommune": "DAMAS ET BETTEGNEY" + "codePostal": "93110", + "codeCommune": "93064", + "libelleAcheminement": "ROSNY SOUS BOIS", + "nomCommune": "ROSNY SOUS BOIS" }, { - "codePostal": "88320", - "codeCommune": "88123", - "libelleAcheminement": "DAMBLAIN", - "nomCommune": "DAMBLAIN" + "codePostal": "89144", + "codeCommune": "89227", + "libelleAcheminement": "LIGNY LE CHATEL", + "nomCommune": "LIGNY LE CHATEL" }, { - "codePostal": "88700", - "codeCommune": "88127", - "libelleAcheminement": "DEINVILLERS", - "nomCommune": "DEINVILLERS" + "codePostal": "93400", + "codeCommune": "93070", + "libelleAcheminement": "ST OUEN SUR SEINE", + "nomCommune": "ST OUEN SUR SEINE" }, { - "codePostal": "88000", - "codeCommune": "88133", - "libelleAcheminement": "DIGNONVILLE", - "nomCommune": "DIGNONVILLE" + "codePostal": "89140", + "codeCommune": "89229", + "libelleAcheminement": "LIXY", + "nomCommune": "LIXY" }, { - "codePostal": "88800", - "codeCommune": "88146", - "libelleAcheminement": "DOMJULIEN", - "nomCommune": "DOMJULIEN" + "codePostal": "93290", + "codeCommune": "93073", + "libelleAcheminement": "TREMBLAY EN FRANCE", + "nomCommune": "TREMBLAY EN FRANCE" }, { - "codePostal": "88170", - "codeCommune": "88150", - "libelleAcheminement": "DOMMARTIN SUR VRAINE", - "nomCommune": "DOMMARTIN SUR VRAINE" + "codePostal": "89200", + "codeCommune": "89232", + "libelleAcheminement": "LUCY LE BOIS", + "nomCommune": "LUCY LE BOIS" }, { - "codePostal": "88650", - "codeCommune": "88159", - "libelleAcheminement": "ENTRE DEUX EAUX", - "nomCommune": "ENTRE DEUX EAUX" + "codePostal": "93410", + "codeCommune": "93074", + "libelleAcheminement": "VAUJOURS", + "nomCommune": "VAUJOURS" }, { - "codePostal": "88260", - "codeCommune": "88161", - "libelleAcheminement": "ESCLES", - "nomCommune": "ESCLES" + "codePostal": "89100", + "codeCommune": "89240", + "libelleAcheminement": "MALAY LE PETIT", + "nomCommune": "MALAY LE PETIT" }, { - "codePostal": "88260", - "codeCommune": "88162", - "libelleAcheminement": "ESLEY", - "nomCommune": "ESLEY" + "codePostal": "94110", + "codeCommune": "94003", + "libelleAcheminement": "ARCUEIL", + "nomCommune": "ARCUEIL" }, { - "codePostal": "88410", - "codeCommune": "88171", - "libelleAcheminement": "FIGNEVELLE", - "nomCommune": "FIGNEVELLE" + "codePostal": "89430", + "codeCommune": "89247", + "libelleAcheminement": "MELISEY", + "nomCommune": "MELISEY" }, { - "codePostal": "88530", - "codeCommune": "88177", - "libelleAcheminement": "LA FORGE", - "nomCommune": "LA FORGE" + "codePostal": "94380", + "codeCommune": "94011", + "libelleAcheminement": "BONNEUIL SUR MARNE", + "nomCommune": "BONNEUIL SUR MARNE" }, { - "codePostal": "88390", - "codeCommune": "88178", - "libelleAcheminement": "LES FORGES", - "nomCommune": "LES FORGES" + "codePostal": "89190", + "codeCommune": "89261", + "libelleAcheminement": "MOLINONS", + "nomCommune": "MOLINONS" }, { - "codePostal": "88630", - "codeCommune": "88183", - "libelleAcheminement": "FREBECOURT", - "nomCommune": "FREBECOURT" + "codePostal": "94500", + "codeCommune": "94017", + "libelleAcheminement": "CHAMPIGNY SUR MARNE", + "nomCommune": "CHAMPIGNY SUR MARNE" }, { - "codePostal": "88500", - "codeCommune": "88185", - "libelleAcheminement": "FRENELLE LA GRANDE", - "nomCommune": "FRENELLE LA GRANDE" + "codePostal": "89700", + "codeCommune": "89262", + "libelleAcheminement": "MOLOSMES", + "nomCommune": "MOLOSMES" }, { - "codePostal": "88500", - "codeCommune": "88186", - "libelleAcheminement": "FRENELLE LA PETITE", - "nomCommune": "FRENELLE LA PETITE" + "codePostal": "94000", + "codeCommune": "94028", + "libelleAcheminement": "CRETEIL", + "nomCommune": "CRETEIL" }, { - "codePostal": "88120", - "codeCommune": "88197", - "libelleAcheminement": "GERBAMONT", - "nomCommune": "GERBAMONT" + "codePostal": "89130", + "codeCommune": "89272", + "libelleAcheminement": "MOULINS SUR OUANNE", + "nomCommune": "MOULINS SUR OUANNE" }, { - "codePostal": "88390", - "codeCommune": "88200", - "libelleAcheminement": "GIGNEY", - "nomCommune": "GIGNEY" + "codePostal": "94420", + "codeCommune": "94059", + "libelleAcheminement": "LE PLESSIS TREVISE", + "nomCommune": "LE PLESSIS TREVISE" }, { - "codePostal": "88500", - "codeCommune": "88202", - "libelleAcheminement": "GIRCOURT LES VIEVILLE", - "nomCommune": "GIRCOURT LES VIEVILLE" + "codePostal": "89570", + "codeCommune": "89276", + "libelleAcheminement": "NEUVY SAUTOUR", + "nomCommune": "NEUVY SAUTOUR" }, { - "codePostal": "88170", - "codeCommune": "88206", - "libelleAcheminement": "GIRONCOURT SUR VRAINE", - "nomCommune": "GIRONCOURT SUR VRAINE" + "codePostal": "94370", + "codeCommune": "94071", + "libelleAcheminement": "SUCY EN BRIE", + "nomCommune": "SUCY EN BRIE" }, { - "codePostal": "88410", - "codeCommune": "88208", - "libelleAcheminement": "GODONCOURT", - "nomCommune": "GODONCOURT" + "codePostal": "89310", + "codeCommune": "89277", + "libelleAcheminement": "NITRY", + "nomCommune": "NITRY" }, { - "codePostal": "88350", - "codeCommune": "88212", - "libelleAcheminement": "GRAND", - "nomCommune": "GRAND" + "codePostal": "94290", + "codeCommune": "94077", + "libelleAcheminement": "VILLENEUVE LE ROI", + "nomCommune": "VILLENEUVE LE ROI" }, { - "codePostal": "88600", - "codeCommune": "88216", - "libelleAcheminement": "GRANDVILLERS", - "nomCommune": "GRANDVILLERS" + "codePostal": "89560", + "codeCommune": "89283", + "libelleAcheminement": "OUANNE", + "nomCommune": "OUANNE" }, { - "codePostal": "88640", - "codeCommune": "88218", - "libelleAcheminement": "GRANGES AUMONTZEY", - "nomCommune": "GRANGES AUMONTZEY" + "codePostal": "94350", + "codeCommune": "94079", + "libelleAcheminement": "VILLIERS SUR MARNE", + "nomCommune": "VILLIERS SUR MARNE" }, { - "codePostal": "88330", - "codeCommune": "88228", - "libelleAcheminement": "HAILLAINVILLE", - "nomCommune": "HAILLAINVILLE" + "codePostal": "89140", + "codeCommune": "89285", + "libelleAcheminement": "PAILLY", + "nomCommune": "PAILLY" }, { - "codePostal": "88130", - "codeCommune": "88239", - "libelleAcheminement": "HERGUGNEY", - "nomCommune": "HERGUGNEY" + "codePostal": "95420", + "codeCommune": "95011", + "libelleAcheminement": "AMBLEVILLE", + "nomCommune": "AMBLEVILLE" }, { - "codePostal": "88500", - "codeCommune": "88257", - "libelleAcheminement": "JUVAINCOURT", - "nomCommune": "JUVAINCOURT" + "codePostal": "89390", + "codeCommune": "89296", + "libelleAcheminement": "PERRIGNY SUR ARMANCON", + "nomCommune": "PERRIGNY SUR ARMANCON" }, { - "codePostal": "88130", - "codeCommune": "88260", - "libelleAcheminement": "LANGLEY", - "nomCommune": "LANGLEY" + "codePostal": "95270", + "codeCommune": "95026", + "libelleAcheminement": "ASNIERES SUR OISE", + "nomCommune": "ASNIERES SUR OISE" }, { - "codePostal": "88490", - "codeCommune": "88268", - "libelleAcheminement": "LESSEUX", - "nomCommune": "LESSEUX" + "codePostal": "89420", + "codeCommune": "89300", + "libelleAcheminement": "PISY", + "nomCommune": "PISY" }, { - "codePostal": "88000", - "codeCommune": "88273", - "libelleAcheminement": "LONGCHAMP", - "nomCommune": "LONGCHAMP" + "codePostal": "95450", + "codeCommune": "95040", + "libelleAcheminement": "AVERNES", + "nomCommune": "AVERNES" }, { - "codePostal": "88170", - "codeCommune": "88274", - "libelleAcheminement": "LONGCHAMP SOUS CHATENOIS", - "nomCommune": "LONGCHAMP SOUS CHATENOIS" + "codePostal": "89290", + "codeCommune": "89319", + "libelleAcheminement": "QUENNE", + "nomCommune": "QUENNE" }, { - "codePostal": "88300", - "codeCommune": "88290", - "libelleAcheminement": "MARTIGNY LES GERBONVAUX", - "nomCommune": "MARTIGNY LES GERBONVAUX" + "codePostal": "95260", + "codeCommune": "95052", + "libelleAcheminement": "BEAUMONT SUR OISE", + "nomCommune": "BEAUMONT SUR OISE" }, { - "codePostal": "88160", - "codeCommune": "88302", - "libelleAcheminement": "LE MENIL", - "nomCommune": "LE MENIL" + "codePostal": "89100", + "codeCommune": "89326", + "libelleAcheminement": "ROSOY", + "nomCommune": "ROSOY" }, { - "codePostal": "88240", - "codeCommune": "88311", - "libelleAcheminement": "MONTMOTIER", - "nomCommune": "MONTMOTIER" + "codePostal": "95750", + "codeCommune": "95054", + "libelleAcheminement": "LE BELLAY EN VEXIN", + "nomCommune": "LE BELLAY EN VEXIN" }, { - "codePostal": "88330", - "codeCommune": "88313", - "libelleAcheminement": "MORIVILLE", - "nomCommune": "MORIVILLE" + "codePostal": "89340", + "codeCommune": "89332", + "libelleAcheminement": "ST AGNAN", + "nomCommune": "ST AGNAN" }, { - "codePostal": "88600", - "codeCommune": "88315", - "libelleAcheminement": "MORTAGNE", - "nomCommune": "MORTAGNE" + "codePostal": "95810", + "codeCommune": "95059", + "libelleAcheminement": "BERVILLE", + "nomCommune": "BERVILLE" }, { - "codePostal": "88210", - "codeCommune": "88317", - "libelleAcheminement": "MOUSSEY", - "nomCommune": "MOUSSEY" + "codePostal": "89630", + "codeCommune": "89336", + "libelleAcheminement": "ST BRANCHER", + "nomCommune": "ST BRANCHER" }, { - "codePostal": "88600", - "codeCommune": "88322", - "libelleAcheminement": "LA NEUVEVILLE DEVANT LEPANGES", - "nomCommune": "LA NEUVEVILLE DEVANT LEPANGES" + "codePostal": "95720", + "codeCommune": "95094", + "libelleAcheminement": "BOUQUEVAL", + "nomCommune": "BOUQUEVAL" }, { - "codePostal": "88440", - "codeCommune": "88327", - "libelleAcheminement": "NOMEXY", - "nomCommune": "NOMEXY" + "codePostal": "89100", + "codeCommune": "89338", + "libelleAcheminement": "ST CLEMENT", + "nomCommune": "ST CLEMENT" }, { - "codePostal": "88600", - "codeCommune": "88331", - "libelleAcheminement": "NONZEVILLE", - "nomCommune": "NONZEVILLE" + "codePostal": "95820", + "codeCommune": "95116", + "libelleAcheminement": "BRUYERES SUR OISE", + "nomCommune": "BRUYERES SUR OISE" }, { - "codePostal": "88500", - "codeCommune": "88335", - "libelleAcheminement": "OFFROICOURT", - "nomCommune": "OFFROICOURT" + "codePostal": "89000", + "codeCommune": "89346", + "libelleAcheminement": "ST GEORGES SUR BAULCHE", + "nomCommune": "ST GEORGES SUR BAULCHE" }, { - "codePostal": "88370", - "codeCommune": "88351", - "libelleAcheminement": "PLOMBIERES LES BAINS", - "nomCommune": "PLOMBIERES LES BAINS" + "codePostal": "95800", + "codeCommune": "95127", + "libelleAcheminement": "CERGY", + "nomCommune": "CERGY" }, { - "codePostal": "88260", - "codeCommune": "88353", - "libelleAcheminement": "PONT LES BONFAYS", - "nomCommune": "PONT LES BONFAYS" + "codePostal": "89630", + "codeCommune": "89347", + "libelleAcheminement": "ST GERMAIN DES CHAMPS", + "nomCommune": "ST GERMAIN DES CHAMPS" }, { - "codePostal": "88170", - "codeCommune": "88366", - "libelleAcheminement": "RAINVILLE", - "nomCommune": "RAINVILLE" + "codePostal": "95710", + "codeCommune": "95150", + "libelleAcheminement": "CHAUSSY", + "nomCommune": "CHAUSSY" }, { - "codePostal": "88160", - "codeCommune": "88369", - "libelleAcheminement": "RAMONCHAMP", - "nomCommune": "RAMONCHAMP" + "codePostal": "89330", + "codeCommune": "89348", + "libelleAcheminement": "ST JULIEN DU SAULT", + "nomCommune": "ST JULIEN DU SAULT" }, { - "codePostal": "88110", - "codeCommune": "88372", - "libelleAcheminement": "RAON L ETAPE", - "nomCommune": "RAON L ETAPE" + "codePostal": "95560", + "codeCommune": "95151", + "libelleAcheminement": "CHAUVRY", + "nomCommune": "CHAUVRY" }, { - "codePostal": "88110", - "codeCommune": "88372", - "libelleAcheminement": "RAON L ETAPE", - "nomCommune": "RAON L ETAPE" + "codePostal": "89100", + "codeCommune": "89373", + "libelleAcheminement": "SALIGNY", + "nomCommune": "SALIGNY" }, { - "codePostal": "88100", - "codeCommune": "88386", - "libelleAcheminement": "REMOMEIX", - "nomCommune": "REMOMEIX" + "codePostal": "95380", + "codeCommune": "95154", + "libelleAcheminement": "CHENNEVIERES LES LOUVRES", + "nomCommune": "CHENNEVIERES LES LOUVRES" }, { - "codePostal": "88500", - "codeCommune": "88389", - "libelleAcheminement": "REPEL", - "nomCommune": "REPEL" + "codePostal": "89200", + "codeCommune": "89378", + "libelleAcheminement": "SAUVIGNY LE BOIS", + "nomCommune": "SAUVIGNY LE BOIS" }, { - "codePostal": "88700", - "codeCommune": "88395", - "libelleAcheminement": "ROMONT", - "nomCommune": "ROMONT" + "codePostal": "95450", + "codeCommune": "95170", + "libelleAcheminement": "CONDECOURT", + "nomCommune": "CONDECOURT" }, { - "codePostal": "88700", - "codeCommune": "88402", - "libelleAcheminement": "ROVILLE AUX CHENES", - "nomCommune": "ROVILLE AUX CHENES" + "codePostal": "89420", + "codeCommune": "89379", + "libelleAcheminement": "SAVIGNY EN TERRE PLAINE", + "nomCommune": "SAVIGNY EN TERRE PLAINE" }, { - "codePostal": "88320", - "codeCommune": "88404", - "libelleAcheminement": "ROZIERES SUR MOUZON", - "nomCommune": "ROZIERES SUR MOUZON" + "codePostal": "95650", + "codeCommune": "95181", + "libelleAcheminement": "COURCELLES SUR VIOSNE", + "nomCommune": "COURCELLES SUR VIOSNE" }, { - "codePostal": "88130", - "codeCommune": "88406", - "libelleAcheminement": "RUGNEY", - "nomCommune": "RUGNEY" + "codePostal": "89116", + "codeCommune": "89388", + "libelleAcheminement": "SEPEAUX ST ROMAIN", + "nomCommune": "SEPEAUX ST ROMAIN" }, { - "codePostal": "88260", - "codeCommune": "88411", - "libelleAcheminement": "ST BASLEMONT", - "nomCommune": "ST BASLEMONT" + "codePostal": "95380", + "codeCommune": "95212", + "libelleAcheminement": "EPIAIS LES LOUVRES", + "nomCommune": "EPIAIS LES LOUVRES" }, { - "codePostal": "88100", - "codeCommune": "88413", - "libelleAcheminement": "ST DIE DES VOSGES", - "nomCommune": "ST DIE DES VOSGES" + "codePostal": "89700", + "codeCommune": "89393", + "libelleAcheminement": "SERRIGNY", + "nomCommune": "SERRIGNY" }, { - "codePostal": "88700", - "codeCommune": "88416", - "libelleAcheminement": "ST GENEST", - "nomCommune": "ST GENEST" + "codePostal": "95120", + "codeCommune": "95219", + "libelleAcheminement": "ERMONT", + "nomCommune": "ERMONT" }, { - "codePostal": "88700", - "codeCommune": "88417", - "libelleAcheminement": "ST GORGON", - "nomCommune": "ST GORGON" + "codePostal": "89560", + "codeCommune": "89405", + "libelleAcheminement": "LES HAUTS DE FORTERRE", + "nomCommune": "LES HAUTS DE FORTERRE" }, { - "codePostal": "88700", - "codeCommune": "88418", - "libelleAcheminement": "STE HELENE", - "nomCommune": "STE HELENE" + "codePostal": "95450", + "codeCommune": "95253", + "libelleAcheminement": "FREMAINVILLE", + "nomCommune": "FREMAINVILLE" }, { - "codePostal": "88410", - "codeCommune": "88421", - "libelleAcheminement": "ST JULIEN", - "nomCommune": "ST JULIEN" + "codePostal": "89420", + "codeCommune": "89406", + "libelleAcheminement": "TALCY", + "nomCommune": "TALCY" }, { - "codePostal": "88470", - "codeCommune": "88428", - "libelleAcheminement": "ST MICHEL SUR MEURTHE", - "nomCommune": "ST MICHEL SUR MEURTHE" + "codePostal": "95530", + "codeCommune": "95257", + "libelleAcheminement": "LA FRETTE SUR SEINE", + "nomCommune": "LA FRETTE SUR SEINE" }, { - "codePostal": "88500", - "codeCommune": "88433", - "libelleAcheminement": "ST PRANCHER", - "nomCommune": "ST PRANCHER" + "codePostal": "89260", + "codeCommune": "89414", + "libelleAcheminement": "THORIGNY SUR OREUSE", + "nomCommune": "THORIGNY SUR OREUSE" }, { - "codePostal": "88270", - "codeCommune": "88437", - "libelleAcheminement": "ST VALLIER", - "nomCommune": "ST VALLIER" + "codePostal": "95690", + "codeCommune": "95258", + "libelleAcheminement": "FROUVILLE", + "nomCommune": "FROUVILLE" }, { - "codePostal": "88260", - "codeCommune": "88441", - "libelleAcheminement": "SANS VALLOIS", - "nomCommune": "SANS VALLOIS" + "codePostal": "89144", + "codeCommune": "89430", + "libelleAcheminement": "VARENNES", + "nomCommune": "VARENNES" }, { - "codePostal": "88580", - "codeCommune": "88445", - "libelleAcheminement": "SAULCY SUR MEURTHE", - "nomCommune": "SAULCY SUR MEURTHE" + "codePostal": "95650", + "codeCommune": "95271", + "libelleAcheminement": "GENICOURT", + "nomCommune": "GENICOURT" }, { - "codePostal": "88320", - "codeCommune": "88450", - "libelleAcheminement": "SENAIDE", - "nomCommune": "SENAIDE" + "codePostal": "89420", + "codeCommune": "89431", + "libelleAcheminement": "VASSY SOUS PISY", + "nomCommune": "VASSY SOUS PISY" }, { - "codePostal": "88210", - "codeCommune": "88451", - "libelleAcheminement": "SENONES", - "nomCommune": "SENONES" + "codePostal": "95450", + "codeCommune": "95282", + "libelleAcheminement": "GOUZANGREZ", + "nomCommune": "GOUZANGREZ" }, { - "codePostal": "88630", - "codeCommune": "88453", - "libelleAcheminement": "SERAUMONT", - "nomCommune": "SERAUMONT" + "codePostal": "89270", + "codeCommune": "89441", + "libelleAcheminement": "VERMENTON", + "nomCommune": "VERMENTON" }, { - "codePostal": "88320", - "codeCommune": "88455", - "libelleAcheminement": "SERECOURT", - "nomCommune": "SERECOURT" + "codePostal": "95640", + "codeCommune": "95303", + "libelleAcheminement": "LE HEAULME", + "nomCommune": "LE HEAULME" }, { - "codePostal": "88320", - "codeCommune": "88456", - "libelleAcheminement": "SEROCOURT", - "nomCommune": "SEROCOURT" + "codePostal": "89700", + "codeCommune": "89447", + "libelleAcheminement": "VEZINNES", + "nomCommune": "VEZINNES" }, { - "codePostal": "88300", - "codeCommune": "88474", - "libelleAcheminement": "TILLEUX", - "nomCommune": "TILLEUX" + "codePostal": "95850", + "codeCommune": "95316", + "libelleAcheminement": "JAGNY SOUS BOIS", + "nomCommune": "JAGNY SOUS BOIS" }, { - "codePostal": "88320", - "codeCommune": "88475", - "libelleAcheminement": "TOLLAINCOURT", - "nomCommune": "TOLLAINCOURT" + "codePostal": "89150", + "codeCommune": "89450", + "libelleAcheminement": "VILLEBOUGIS", + "nomCommune": "VILLEBOUGIS" }, { - "codePostal": "88240", - "codeCommune": "88479", - "libelleAcheminement": "TREMONZEY", - "nomCommune": "TREMONZEY" + "codePostal": "95180", + "codeCommune": "95388", + "libelleAcheminement": "MENUCOURT", + "nomCommune": "MENUCOURT" }, { - "codePostal": "88120", - "codeCommune": "88486", - "libelleAcheminement": "VAGNEY", - "nomCommune": "VAGNEY" + "codePostal": "89320", + "codeCommune": "89451", + "libelleAcheminement": "VILLECHETIVE", + "nomCommune": "VILLECHETIVE" }, { - "codePostal": "88270", - "codeCommune": "88499", - "libelleAcheminement": "VELOTTE ET TATIGNECOURT", - "nomCommune": "VELOTTE ET TATIGNECOURT" + "codePostal": "95650", + "codeCommune": "95422", + "libelleAcheminement": "MONTGEROULT", + "nomCommune": "MONTGEROULT" }, { - "codePostal": "88500", - "codeCommune": "88507", - "libelleAcheminement": "VILLERS", - "nomCommune": "VILLERS" + "codePostal": "89150", + "codeCommune": "89459", + "libelleAcheminement": "VILLENEUVE LA DONDAGRE", + "nomCommune": "VILLENEUVE LA DONDAGRE" }, { - "codePostal": "88600", - "codeCommune": "88512", - "libelleAcheminement": "VIMENIL", - "nomCommune": "VIMENIL" + "codePostal": "95260", + "codeCommune": "95436", + "libelleAcheminement": "MOURS", + "nomCommune": "MOURS" }, { - "codePostal": "88260", - "codeCommune": "88517", - "libelleAcheminement": "VIVIERS LE GRAS", - "nomCommune": "VIVIERS LE GRAS" + "codePostal": "89100", + "codeCommune": "89466", + "libelleAcheminement": "VILLEROY", + "nomCommune": "VILLEROY" }, { - "codePostal": "88500", - "codeCommune": "88525", - "libelleAcheminement": "VROVILLE", - "nomCommune": "VROVILLE" + "codePostal": "95590", + "codeCommune": "95452", + "libelleAcheminement": "NOINTEL", + "nomCommune": "NOINTEL" }, { - "codePostal": "89800", - "codeCommune": "89002", - "libelleAcheminement": "AIGREMONT", - "nomCommune": "AIGREMONT" + "codePostal": "89260", + "codeCommune": "89469", + "libelleAcheminement": "PERCENEIGE", + "nomCommune": "PERCENEIGE" }, { - "codePostal": "89160", - "codeCommune": "89005", - "libelleAcheminement": "ANCY LE FRANC", - "nomCommune": "ANCY LE FRANC" + "codePostal": "95340", + "codeCommune": "95487", + "libelleAcheminement": "PERSAN", + "nomCommune": "PERSAN" }, { - "codePostal": "89380", - "codeCommune": "89013", - "libelleAcheminement": "APPOIGNY", - "nomCommune": "APPOIGNY" + "codePostal": "89260", + "codeCommune": "89469", + "libelleAcheminement": "PERCENEIGE", + "nomCommune": "PERCENEIGE" }, { - "codePostal": "89500", - "codeCommune": "89018", - "libelleAcheminement": "ARMEAU", - "nomCommune": "ARMEAU" + "codePostal": "95480", + "codeCommune": "95488", + "libelleAcheminement": "PIERRELAYE", + "nomCommune": "PIERRELAYE" }, { - "codePostal": "89660", - "codeCommune": "89020", - "libelleAcheminement": "ASNIERES SOUS BOIS", - "nomCommune": "ASNIERES SOUS BOIS" + "codePostal": "89140", + "codeCommune": "89480", + "libelleAcheminement": "VINNEUF", + "nomCommune": "VINNEUF" }, { - "codePostal": "89290", - "codeCommune": "89023", - "libelleAcheminement": "AUGY", - "nomCommune": "AUGY" + "codePostal": "95270", + "codeCommune": "95493", + "libelleAcheminement": "LE PLESSIS LUZARCHES", + "nomCommune": "LE PLESSIS LUZARCHES" }, { - "codePostal": "89430", - "codeCommune": "89028", - "libelleAcheminement": "BAON", - "nomCommune": "BAON" + "codePostal": "89260", + "codeCommune": "89483", + "libelleAcheminement": "VOISINES", + "nomCommune": "VOISINES" }, { - "codePostal": "89250", - "codeCommune": "89031", - "libelleAcheminement": "BEAUMONT", - "nomCommune": "BEAUMONT" + "codePostal": "95000", + "codeCommune": "95500", + "libelleAcheminement": "PONTOISE", + "nomCommune": "PONTOISE" }, { - "codePostal": "89360", - "codeCommune": "89038", - "libelleAcheminement": "BERNOUIL", - "nomCommune": "BERNOUIL" + "codePostal": "90400", + "codeCommune": "90001", + "libelleAcheminement": "ANDELNANS", + "nomCommune": "ANDELNANS" }, { - "codePostal": "89270", - "codeCommune": "89040", - "libelleAcheminement": "BESSY SUR CURE", - "nomCommune": "BESSY SUR CURE" + "codePostal": "95420", + "codeCommune": "95554", + "libelleAcheminement": "ST GERVAIS", + "nomCommune": "ST GERVAIS" }, { - "codePostal": "89440", - "codeCommune": "89043", - "libelleAcheminement": "BLACY", - "nomCommune": "BLACY" + "codePostal": "90000", + "codeCommune": "90010", + "libelleAcheminement": "BELFORT", + "nomCommune": "BELFORT" }, { - "codePostal": "89400", - "codeCommune": "89056", - "libelleAcheminement": "BRION", - "nomCommune": "BRION" + "codePostal": "95110", + "codeCommune": "95582", + "libelleAcheminement": "SANNOIS", + "nomCommune": "SANNOIS" }, { - "codePostal": "89800", - "codeCommune": "89068", - "libelleAcheminement": "CHABLIS", - "nomCommune": "CHABLIS" + "codePostal": "90400", + "codeCommune": "90011", + "libelleAcheminement": "BERMONT", + "nomCommune": "BERMONT" }, { - "codePostal": "89800", - "codeCommune": "89068", - "libelleAcheminement": "CHABLIS", - "nomCommune": "CHABLIS" + "codePostal": "95500", + "codeCommune": "95612", + "libelleAcheminement": "LE THILLAY", + "nomCommune": "LE THILLAY" }, { - "codePostal": "89350", - "codeCommune": "89073", - "libelleAcheminement": "CHAMPIGNELLES", - "nomCommune": "CHAMPIGNELLES" + "codePostal": "90100", + "codeCommune": "90027", + "libelleAcheminement": "COURCELLES", + "nomCommune": "COURCELLES" }, { - "codePostal": "89300", - "codeCommune": "89075", - "libelleAcheminement": "CHAMPLAY", - "nomCommune": "CHAMPLAY" + "codePostal": "95490", + "codeCommune": "95637", + "libelleAcheminement": "VAUREAL", + "nomCommune": "VAUREAL" }, { - "codePostal": "89210", - "codeCommune": "89076", - "libelleAcheminement": "CHAMPLOST", - "nomCommune": "CHAMPLOST" + "codePostal": "90100", + "codeCommune": "90043", + "libelleAcheminement": "FAVEROIS", + "nomCommune": "FAVEROIS" }, { - "codePostal": "89120", - "codeCommune": "89086", - "libelleAcheminement": "CHARNY OREE DE PUISAYE", - "nomCommune": "CHARNY OREE DE PUISAYE" + "codePostal": "95400", + "codeCommune": "95680", + "libelleAcheminement": "VILLIERS LE BEL", + "nomCommune": "VILLIERS LE BEL" }, { - "codePostal": "89160", - "codeCommune": "89087", - "libelleAcheminement": "CHASSIGNELLES", - "nomCommune": "CHASSIGNELLES" + "codePostal": "90110", + "codeCommune": "90044", + "libelleAcheminement": "FELON", + "nomCommune": "FELON" }, { - "codePostal": "89110", - "codeCommune": "89088", - "libelleAcheminement": "CHASSY", - "nomCommune": "CHASSY" + "codePostal": "97100", + "codeCommune": "97105", + "libelleAcheminement": "BASSE TERRE", + "nomCommune": "BASSE TERRE" }, { - "codePostal": "89630", - "codeCommune": "89089", - "libelleAcheminement": "CHASTELLUX SUR CURE", - "nomCommune": "CHASTELLUX SUR CURE" + "codePostal": "90150", + "codeCommune": "90047", + "libelleAcheminement": "FONTAINE", + "nomCommune": "FONTAINE" }, { - "codePostal": "89800", - "codeCommune": "89104", - "libelleAcheminement": "CHICHEE", - "nomCommune": "CHICHEE" + "codePostal": "97130", + "codeCommune": "97107", + "libelleAcheminement": "CAPESTERRE BELLE EAU", + "nomCommune": "CAPESTERRE BELLE EAU" }, { - "codePostal": "89530", - "codeCommune": "89108", - "libelleAcheminement": "CHITRY", - "nomCommune": "CHITRY" + "codePostal": "90200", + "codeCommune": "90052", + "libelleAcheminement": "GIROMAGNY", + "nomCommune": "GIROMAGNY" }, { - "codePostal": "89190", - "codeCommune": "89111", - "libelleAcheminement": "LES CLERIMOIS", - "nomCommune": "LES CLERIMOIS" + "codePostal": "97113", + "codeCommune": "97109", + "libelleAcheminement": "GOURBEYRE", + "nomCommune": "GOURBEYRE" }, { - "codePostal": "89700", - "codeCommune": "89112", - "libelleAcheminement": "COLLAN", - "nomCommune": "COLLAN" + "codePostal": "90600", + "codeCommune": "90053", + "libelleAcheminement": "GRANDVILLARS", + "nomCommune": "GRANDVILLARS" }, { - "codePostal": "89580", - "codeCommune": "89118", - "libelleAcheminement": "COULANGES LA VINEUSE", - "nomCommune": "COULANGES LA VINEUSE" + "codePostal": "97126", + "codeCommune": "97111", + "libelleAcheminement": "DESHAIES", + "nomCommune": "DESHAIES" }, { - "codePostal": "89560", - "codeCommune": "89125", - "libelleAcheminement": "COURSON LES CARRIERES", - "nomCommune": "COURSON LES CARRIERES" + "codePostal": "90100", + "codeCommune": "90056", + "libelleAcheminement": "JONCHEREY", + "nomCommune": "JONCHEREY" }, { - "codePostal": "89460", - "codeCommune": "89130", - "libelleAcheminement": "DEUX RIVIERES", - "nomCommune": "DEUX RIVIERES" + "codePostal": "97170", + "codeCommune": "97118", + "libelleAcheminement": "PETIT BOURG", + "nomCommune": "PETIT BOURG" }, { - "codePostal": "89116", - "codeCommune": "89133", - "libelleAcheminement": "CUDOT", - "nomCommune": "CUDOT" + "codePostal": "90200", + "codeCommune": "90065", + "libelleAcheminement": "LEPUIX", + "nomCommune": "LEPUIX" }, { - "codePostal": "89500", - "codeCommune": "89142", - "libelleAcheminement": "DIXMONT", - "nomCommune": "DIXMONT" + "codePostal": "97115", + "codeCommune": "97129", + "libelleAcheminement": "STE ROSE", + "nomCommune": "STE ROSE" }, { - "codePostal": "89240", - "codeCommune": "89150", - "libelleAcheminement": "EGLENY", - "nomCommune": "EGLENY" + "codePostal": "90130", + "codeCommune": "90071", + "libelleAcheminement": "MONTREUX CHATEAU", + "nomCommune": "MONTREUX CHATEAU" }, { - "codePostal": "89500", - "codeCommune": "89151", - "libelleAcheminement": "EGRISELLES LE BOCAGE", - "nomCommune": "EGRISELLES LE BOCAGE" + "codePostal": "97136", + "codeCommune": "97130", + "libelleAcheminement": "TERRE DE BAS", + "nomCommune": "TERRE DE BAS" }, { - "codePostal": "89200", - "codeCommune": "89159", - "libelleAcheminement": "ETAULE", - "nomCommune": "ETAULE" + "codePostal": "90340", + "codeCommune": "90074", + "libelleAcheminement": "NOVILLARD", + "nomCommune": "NOVILLARD" }, { - "codePostal": "89310", - "codeCommune": "89161", - "libelleAcheminement": "ETIVEY", - "nomCommune": "ETIVEY" + "codePostal": "97260", + "codeCommune": "97218", + "libelleAcheminement": "LE MORNE ROUGE", + "nomCommune": "LE MORNE ROUGE" }, { - "codePostal": "89520", - "codeCommune": "89179", - "libelleAcheminement": "FONTENOY", - "nomCommune": "FONTENOY" + "codePostal": "90130", + "codeCommune": "90077", + "libelleAcheminement": "PETIT CROIX", + "nomCommune": "PETIT CROIX" }, { - "codePostal": "89320", - "codeCommune": "89181", - "libelleAcheminement": "FOURNAUDIN", - "nomCommune": "FOURNAUDIN" + "codePostal": "97250", + "codeCommune": "97219", + "libelleAcheminement": "LE PRECHEUR", + "nomCommune": "LE PRECHEUR" }, { - "codePostal": "89560", - "codeCommune": "89182", - "libelleAcheminement": "FOURONNES", - "nomCommune": "FOURONNES" + "codePostal": "90360", + "codeCommune": "90078", + "libelleAcheminement": "PETITEFONTAINE", + "nomCommune": "PETITEFONTAINE" }, { - "codePostal": "89310", - "codeCommune": "89183", - "libelleAcheminement": "FRESNES", - "nomCommune": "FRESNES" + "codePostal": "97211", + "codeCommune": "97220", + "libelleAcheminement": "RIVIERE PILOTE", + "nomCommune": "RIVIERE PILOTE" }, { - "codePostal": "89440", - "codeCommune": "89204", - "libelleAcheminement": "L ISLE SUR SEREIN", - "nomCommune": "L ISLE SUR SEREIN" + "codePostal": "90300", + "codeCommune": "90093", + "libelleAcheminement": "SERMAMAGNY", + "nomCommune": "SERMAMAGNY" }, { - "codePostal": "89310", - "codeCommune": "89207", - "libelleAcheminement": "JOUANCY", - "nomCommune": "JOUANCY" + "codePostal": "97231", + "codeCommune": "97222", + "libelleAcheminement": "LE ROBERT", + "nomCommune": "LE ROBERT" }, { - "codePostal": "89150", - "codeCommune": "89209", - "libelleAcheminement": "JOUY", - "nomCommune": "JOUY" + "codePostal": "90400", + "codeCommune": "90097", + "libelleAcheminement": "TREVENANS", + "nomCommune": "TREVENANS" }, { - "codePostal": "89400", - "codeCommune": "89218", - "libelleAcheminement": "LAROCHE ST CYDROINE", - "nomCommune": "LAROCHE ST CYDROINE" + "codePostal": "97220", + "codeCommune": "97230", + "libelleAcheminement": "LA TRINITE", + "nomCommune": "LA TRINITE" }, { - "codePostal": "89200", - "codeCommune": "89232", - "libelleAcheminement": "LUCY LE BOIS", - "nomCommune": "LUCY LE BOIS" + "codePostal": "90150", + "codeCommune": "90100", + "libelleAcheminement": "VAUTHIERMONT", + "nomCommune": "VAUTHIERMONT" }, { - "codePostal": "89200", - "codeCommune": "89235", - "libelleAcheminement": "MAGNY", - "nomCommune": "MAGNY" + "codePostal": "97354", + "codeCommune": "97309", + "libelleAcheminement": "REMIRE MONTJOLY", + "nomCommune": "REMIRE MONTJOLY" }, { - "codePostal": "89800", - "codeCommune": "89242", - "libelleAcheminement": "MALIGNY", - "nomCommune": "MALIGNY" + "codePostal": "91410", + "codeCommune": "91035", + "libelleAcheminement": "AUTHON LA PLAINE", + "nomCommune": "AUTHON LA PLAINE" }, { - "codePostal": "89430", - "codeCommune": "89247", - "libelleAcheminement": "MELISEY", - "nomCommune": "MELISEY" + "codePostal": "97315", + "codeCommune": "97312", + "libelleAcheminement": "SINNAMARY", + "nomCommune": "SINNAMARY" }, { - "codePostal": "89310", - "codeCommune": "89259", - "libelleAcheminement": "MOLAY", - "nomCommune": "MOLAY" + "codePostal": "91580", + "codeCommune": "91038", + "libelleAcheminement": "AUVERS ST GEORGES", + "nomCommune": "AUVERS ST GEORGES" }, { - "codePostal": "89470", - "codeCommune": "89263", - "libelleAcheminement": "MONETEAU", - "nomCommune": "MONETEAU" + "codePostal": "97356", + "codeCommune": "97313", + "libelleAcheminement": "MONTSINERY TONNEGRANDE", + "nomCommune": "MONTSINERY TONNEGRANDE" }, { - "codePostal": "89250", - "codeCommune": "89268", - "libelleAcheminement": "MONT ST SULPICE", - "nomCommune": "MONT ST SULPICE" + "codePostal": "91630", + "codeCommune": "91041", + "libelleAcheminement": "AVRAINVILLE", + "nomCommune": "AVRAINVILLE" }, { - "codePostal": "89560", - "codeCommune": "89270", - "libelleAcheminement": "MOUFFY", - "nomCommune": "MOUFFY" + "codePostal": "97380", + "codeCommune": "97314", + "libelleAcheminement": "OUANARY", + "nomCommune": "OUANARY" }, { - "codePostal": "89130", - "codeCommune": "89272", - "libelleAcheminement": "MOULINS SUR OUANNE", - "nomCommune": "MOULINS SUR OUANNE" + "codePostal": "91570", + "codeCommune": "91064", + "libelleAcheminement": "BIEVRES", + "nomCommune": "BIEVRES" }, { - "codePostal": "89520", - "codeCommune": "89273", - "libelleAcheminement": "MOUTIERS EN PUISAYE", - "nomCommune": "MOUTIERS EN PUISAYE" + "codePostal": "97330", + "codeCommune": "97356", + "libelleAcheminement": "CAMOPI", + "nomCommune": "CAMOPI" }, { - "codePostal": "89310", - "codeCommune": "89277", - "libelleAcheminement": "NITRY", - "nomCommune": "NITRY" + "codePostal": "91800", + "codeCommune": "91097", + "libelleAcheminement": "BOUSSY ST ANTOINE", + "nomCommune": "BOUSSY ST ANTOINE" }, { - "codePostal": "89320", - "codeCommune": "89278", - "libelleAcheminement": "NOE", - "nomCommune": "NOE" + "codePostal": "97427", + "codeCommune": "97404", + "libelleAcheminement": "L ETANG SALE", + "nomCommune": "L ETANG SALE" }, { - "codePostal": "89310", - "codeCommune": "89279", - "libelleAcheminement": "NOYERS", - "nomCommune": "NOYERS" + "codePostal": "91880", + "codeCommune": "91100", + "libelleAcheminement": "BOUVILLE", + "nomCommune": "BOUVILLE" }, { - "codePostal": "89560", - "codeCommune": "89283", - "libelleAcheminement": "OUANNE", - "nomCommune": "OUANNE" + "codePostal": "97427", + "codeCommune": "97404", + "libelleAcheminement": "L ETANG SALE", + "nomCommune": "L ETANG SALE" }, { - "codePostal": "89140", - "codeCommune": "89285", - "libelleAcheminement": "PAILLY", - "nomCommune": "PAILLY" + "codePostal": "91150", + "codeCommune": "91112", + "libelleAcheminement": "BROUY", + "nomCommune": "BROUY" }, { - "codePostal": "89210", - "codeCommune": "89288", - "libelleAcheminement": "PAROY EN OTHE", - "nomCommune": "PAROY EN OTHE" + "codePostal": "97429", + "codeCommune": "97405", + "libelleAcheminement": "PETITE ILE", + "nomCommune": "PETITE ILE" }, { - "codePostal": "89140", - "codeCommune": "89302", - "libelleAcheminement": "PLESSIS ST JEAN", - "nomCommune": "PLESSIS ST JEAN" + "codePostal": "91580", + "codeCommune": "91148", + "libelleAcheminement": "CHAUFFOUR LES ETRECHY", + "nomCommune": "CHAUFFOUR LES ETRECHY" }, { - "codePostal": "89110", - "codeCommune": "89304", - "libelleAcheminement": "POILLY SUR THOLON", - "nomCommune": "POILLY SUR THOLON" + "codePostal": "97431", + "codeCommune": "97406", + "libelleAcheminement": "LA PLAINE DES PALMISTES", + "nomCommune": "LA PLAINE DES PALMISTES" }, { - "codePostal": "89200", - "codeCommune": "89306", - "libelleAcheminement": "PONTAUBERT", - "nomCommune": "PONTAUBERT" + "codePostal": "91720", + "codeCommune": "91184", + "libelleAcheminement": "COURDIMANCHE SUR ESSONNE", + "nomCommune": "COURDIMANCHE SUR ESSONNE" }, { - "codePostal": "89260", - "codeCommune": "89310", - "libelleAcheminement": "LA POSTOLLE", - "nomCommune": "LA POSTOLLE" + "codePostal": "97440", + "codeCommune": "97409", + "libelleAcheminement": "ST ANDRE", + "nomCommune": "ST ANDRE" }, { - "codePostal": "89440", - "codeCommune": "89312", - "libelleAcheminement": "PRECY LE SEC", - "nomCommune": "PRECY LE SEC" + "codePostal": "91490", + "codeCommune": "91195", + "libelleAcheminement": "DANNEMOIS", + "nomCommune": "DANNEMOIS" }, { - "codePostal": "89740", - "codeCommune": "89320", - "libelleAcheminement": "QUINCEROT", - "nomCommune": "QUINCEROT" + "codePostal": "97400", + "codeCommune": "97411", + "libelleAcheminement": "ST DENIS", + "nomCommune": "ST DENIS" }, { - "codePostal": "89230", - "codeCommune": "89328", - "libelleAcheminement": "ROUVRAY", - "nomCommune": "ROUVRAY" + "codePostal": "91210", + "codeCommune": "91201", + "libelleAcheminement": "DRAVEIL", + "nomCommune": "DRAVEIL" }, { - "codePostal": "89110", - "codeCommune": "89334", - "libelleAcheminement": "LE VAL D OCRE", - "nomCommune": "LE VAL D OCRE" + "codePostal": "97424", + "codeCommune": "97413", + "libelleAcheminement": "ST LEU", + "nomCommune": "ST LEU" }, { - "codePostal": "89300", - "codeCommune": "89335", - "libelleAcheminement": "ST AUBIN SUR YONNE", - "nomCommune": "ST AUBIN SUR YONNE" + "codePostal": "91210", + "codeCommune": "91201", + "libelleAcheminement": "DRAVEIL", + "nomCommune": "DRAVEIL" }, { - "codePostal": "89530", - "codeCommune": "89337", - "libelleAcheminement": "ST BRIS LE VINEUX", - "nomCommune": "ST BRIS LE VINEUX" + "codePostal": "97424", + "codeCommune": "97413", + "libelleAcheminement": "ST LEU", + "nomCommune": "ST LEU" }, { - "codePostal": "89600", - "codeCommune": "89345", - "libelleAcheminement": "ST FLORENTIN", - "nomCommune": "ST FLORENTIN" + "codePostal": "91540", + "codeCommune": "91204", + "libelleAcheminement": "ECHARCON", + "nomCommune": "ECHARCON" }, { - "codePostal": "89630", - "codeCommune": "89349", - "libelleAcheminement": "ST LEGER VAUBAN", - "nomCommune": "ST LEGER VAUBAN" + "codePostal": "97421", + "codeCommune": "97414", + "libelleAcheminement": "ST LOUIS", + "nomCommune": "ST LOUIS" }, { - "codePostal": "89330", - "codeCommune": "89350", - "libelleAcheminement": "ST LOUP D ORDON", - "nomCommune": "ST LOUP D ORDON" + "codePostal": "91080", + "codeCommune": "91228", + "libelleAcheminement": "EVRY COURCOURONNES", + "nomCommune": "EVRY COURCOURONNES" }, { - "codePostal": "89170", - "codeCommune": "89352", - "libelleAcheminement": "ST MARTIN DES CHAMPS", - "nomCommune": "ST MARTIN DES CHAMPS" + "codePostal": "97421", + "codeCommune": "97414", + "libelleAcheminement": "ST LOUIS", + "nomCommune": "ST LOUIS" }, { - "codePostal": "89330", - "codeCommune": "89353", - "libelleAcheminement": "ST MARTIN D ORDON", - "nomCommune": "ST MARTIN D ORDON" + "codePostal": "91640", + "codeCommune": "91243", + "libelleAcheminement": "FONTENAY LES BRIIS", + "nomCommune": "FONTENAY LES BRIIS" }, { - "codePostal": "89100", - "codeCommune": "89354", - "libelleAcheminement": "ST MARTIN DU TERTRE", - "nomCommune": "ST MARTIN DU TERTRE" + "codePostal": "97422", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "89420", - "codeCommune": "89379", - "libelleAcheminement": "SAVIGNY EN TERRE PLAINE", - "nomCommune": "SAVIGNY EN TERRE PLAINE" + "codePostal": "91410", + "codeCommune": "91247", + "libelleAcheminement": "LA FORET LE ROI", + "nomCommune": "LA FORET LE ROI" }, { - "codePostal": "89560", - "codeCommune": "89383", - "libelleAcheminement": "SEMENTRON", - "nomCommune": "SEMENTRON" + "codePostal": "97435", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" }, { - "codePostal": "89116", - "codeCommune": "89388", - "libelleAcheminement": "SEPEAUX ST ROMAIN", - "nomCommune": "SEPEAUX ST ROMAIN" + "codePostal": "91190", + "codeCommune": "91272", + "libelleAcheminement": "GIF SUR YVETTE", + "nomCommune": "GIF SUR YVETTE" }, { - "codePostal": "89116", - "codeCommune": "89388", - "libelleAcheminement": "SEPEAUX ST ROMAIN", - "nomCommune": "SEPEAUX ST ROMAIN" + "codePostal": "97438", + "codeCommune": "97418", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "89200", - "codeCommune": "89392", - "libelleAcheminement": "SERMIZELLES", - "nomCommune": "SERMIZELLES" + "codePostal": "91630", + "codeCommune": "91292", + "libelleAcheminement": "GUIBEVILLE", + "nomCommune": "GUIBEVILLE" }, { - "codePostal": "89320", - "codeCommune": "89411", - "libelleAcheminement": "LES VALLEES DE LA VANNE", - "nomCommune": "LES VALLEES DE LA VANNE" + "codePostal": "97438", + "codeCommune": "97418", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { - "codePostal": "89260", - "codeCommune": "89414", - "libelleAcheminement": "THORIGNY SUR OREUSE", - "nomCommune": "THORIGNY SUR OREUSE" + "codePostal": "91310", + "codeCommune": "91333", + "libelleAcheminement": "LEUVILLE SUR ORGE", + "nomCommune": "LEUVILLE SUR ORGE" }, { - "codePostal": "89520", - "codeCommune": "89420", - "libelleAcheminement": "TREIGNY PERREUSE STE COLOMBE", - "nomCommune": "TREIGNY PERREUSE STE COLOMBE" + "codePostal": "97433", + "codeCommune": "97421", + "libelleAcheminement": "SALAZIE", + "nomCommune": "SALAZIE" }, { - "codePostal": "89520", - "codeCommune": "89420", - "libelleAcheminement": "TREIGNY PERREUSE STE COLOMBE", - "nomCommune": "TREIGNY PERREUSE STE COLOMBE" + "codePostal": "91160", + "codeCommune": "91345", + "libelleAcheminement": "LONGJUMEAU", + "nomCommune": "LONGJUMEAU" }, { - "codePostal": "89430", - "codeCommune": "89422", - "libelleAcheminement": "TRICHEY", - "nomCommune": "TRICHEY" + "codePostal": "97418", + "codeCommune": "97422", + "libelleAcheminement": "LE TAMPON", + "nomCommune": "LE TAMPON" }, { - "codePostal": "89700", - "codeCommune": "89423", - "libelleAcheminement": "TRONCHOY", - "nomCommune": "TRONCHOY" + "codePostal": "91490", + "codeCommune": "91408", + "libelleAcheminement": "MOIGNY SUR ECOLE", + "nomCommune": "MOIGNY SUR ECOLE" }, { - "codePostal": "89570", - "codeCommune": "89425", - "libelleAcheminement": "TURNY", - "nomCommune": "TURNY" + "codePostal": "97625", + "codeCommune": "97609", + "libelleAcheminement": "KANI KELI", + "nomCommune": "KANI KELI" }, { - "codePostal": "89580", - "codeCommune": "89426", - "libelleAcheminement": "VAL DE MERCY", - "nomCommune": "VAL DE MERCY" + "codePostal": "91390", + "codeCommune": "91434", + "libelleAcheminement": "MORSANG SUR ORGE", + "nomCommune": "MORSANG SUR ORGE" }, { - "codePostal": "89200", - "codeCommune": "89433", - "libelleAcheminement": "VAULT DE LUGNY", - "nomCommune": "VAULT DE LUGNY" + "codePostal": "97640", + "codeCommune": "97616", + "libelleAcheminement": "SADA", + "nomCommune": "SADA" }, { - "codePostal": "89600", - "codeCommune": "89439", - "libelleAcheminement": "VERGIGNY", - "nomCommune": "VERGIGNY" + "codePostal": "91750", + "codeCommune": "91441", + "libelleAcheminement": "NAINVILLE LES ROCHES", + "nomCommune": "NAINVILLE LES ROCHES" }, { - "codePostal": "89600", - "codeCommune": "89439", - "libelleAcheminement": "VERGIGNY", - "nomCommune": "VERGIGNY" + "codePostal": "97150", + "codeCommune": "97801", + "libelleAcheminement": "ST MARTIN", + "nomCommune": "ST MARTIN" }, { - "codePostal": "89600", - "codeCommune": "89439", - "libelleAcheminement": "VERGIGNY", - "nomCommune": "VERGIGNY" + "codePostal": "91550", + "codeCommune": "91479", + "libelleAcheminement": "PARAY VIEILLE POSTE", + "nomCommune": "PARAY VIEILLE POSTE" }, { - "codePostal": "89270", - "codeCommune": "89441", - "libelleAcheminement": "VERMENTON", - "nomCommune": "VERMENTON" + "codePostal": "98730", + "codeCommune": "98714", + "libelleAcheminement": "FAANUI", + "nomCommune": "BORA BORA" }, { - "codePostal": "89700", - "codeCommune": "89445", - "libelleAcheminement": "VEZANNES", - "nomCommune": "VEZANNES" + "codePostal": "91720", + "codeCommune": "91507", + "libelleAcheminement": "PRUNAY SUR ESSONNE", + "nomCommune": "PRUNAY SUR ESSONNE" }, { - "codePostal": "89450", - "codeCommune": "89446", - "libelleAcheminement": "VEZELAY", - "nomCommune": "VEZELAY" + "codePostal": "98730", + "codeCommune": "98714", + "libelleAcheminement": "VAITAPE", + "nomCommune": "BORA BORA" }, { - "codePostal": "89340", - "codeCommune": "89449", - "libelleAcheminement": "VILLEBLEVIN", - "nomCommune": "VILLEBLEVIN" + "codePostal": "91150", + "codeCommune": "91526", + "libelleAcheminement": "ROINVILLIERS", + "nomCommune": "ROINVILLIERS" }, { - "codePostal": "89500", - "codeCommune": "89464", - "libelleAcheminement": "VILLENEUVE SUR YONNE", - "nomCommune": "VILLENEUVE SUR YONNE" + "codePostal": "98763", + "codeCommune": "98716", + "libelleAcheminement": "ROTOAVA", + "nomCommune": "FAKARAVA" }, { - "codePostal": "89100", - "codeCommune": "89466", - "libelleAcheminement": "VILLEROY", - "nomCommune": "VILLEROY" + "codePostal": "91410", + "codeCommune": "91546", + "libelleAcheminement": "ST CYR SOUS DOURDAN", + "nomCommune": "ST CYR SOUS DOURDAN" }, { - "codePostal": "89260", - "codeCommune": "89469", - "libelleAcheminement": "PERCENEIGE", - "nomCommune": "PERCENEIGE" + "codePostal": "98764", + "codeCommune": "98716", + "libelleAcheminement": "PAPARARA", + "nomCommune": "FAKARAVA" }, { - "codePostal": "89260", - "codeCommune": "89469", - "libelleAcheminement": "PERCENEIGE", - "nomCommune": "PERCENEIGE" + "codePostal": "91180", + "codeCommune": "91552", + "libelleAcheminement": "ST GERMAIN LES ARPAJON", + "nomCommune": "ST GERMAIN LES ARPAJON" }, { - "codePostal": "89320", - "codeCommune": "89471", - "libelleAcheminement": "VILLIERS LOUIS", - "nomCommune": "VILLIERS LOUIS" + "codePostal": "98755", + "codeCommune": "98719", + "libelleAcheminement": "MANIUI", + "nomCommune": "GAMBIER" }, { - "codePostal": "90400", - "codeCommune": "90001", - "libelleAcheminement": "ANDELNANS", - "nomCommune": "ANDELNANS" + "codePostal": "91940", + "codeCommune": "91560", + "libelleAcheminement": "ST JEAN DE BEAUREGARD", + "nomCommune": "ST JEAN DE BEAUREGARD" }, { - "codePostal": "90200", - "codeCommune": "90006", - "libelleAcheminement": "AUXELLES HAUT", - "nomCommune": "AUXELLES HAUT" + "codePostal": "98755", + "codeCommune": "98719", + "libelleAcheminement": "RIKITEA", + "nomCommune": "GAMBIER" }, { - "codePostal": "90000", - "codeCommune": "90010", - "libelleAcheminement": "BELFORT", - "nomCommune": "BELFORT" + "codePostal": "91530", + "codeCommune": "91568", + "libelleAcheminement": "ST MAURICE MONTCOURONNE", + "nomCommune": "ST MAURICE MONTCOURONNE" }, { - "codePostal": "90400", - "codeCommune": "90011", - "libelleAcheminement": "BERMONT", - "nomCommune": "BERMONT" + "codePostal": "98792", + "codeCommune": "98719", + "libelleAcheminement": "TEMOE", + "nomCommune": "GAMBIER" }, { - "codePostal": "90150", - "codeCommune": "90013", - "libelleAcheminement": "BETHONVILLIERS", - "nomCommune": "BETHONVILLIERS" + "codePostal": "91280", + "codeCommune": "91573", + "libelleAcheminement": "ST PIERRE DU PERRAY", + "nomCommune": "ST PIERRE DU PERRAY" }, { - "codePostal": "90400", - "codeCommune": "90015", - "libelleAcheminement": "BOTANS", - "nomCommune": "BOTANS" + "codePostal": "98790", + "codeCommune": "98720", + "libelleAcheminement": "NENGONENGO", + "nomCommune": "HAO" }, { - "codePostal": "90140", - "codeCommune": "90017", - "libelleAcheminement": "BOUROGNE", - "nomCommune": "BOUROGNE" + "codePostal": "91770", + "codeCommune": "91579", + "libelleAcheminement": "ST VRAIN", + "nomCommune": "ST VRAIN" }, { - "codePostal": "90100", - "codeCommune": "90024", - "libelleAcheminement": "CHAVANATTE", - "nomCommune": "CHAVANATTE" + "codePostal": "98768", + "codeCommune": "98721", + "libelleAcheminement": "TUPAPATI", + "nomCommune": "HIKUERU" }, { - "codePostal": "90150", - "codeCommune": "90031", - "libelleAcheminement": "CUNELIERES", - "nomCommune": "CUNELIERES" + "codePostal": "91810", + "codeCommune": "91648", + "libelleAcheminement": "VERT LE GRAND", + "nomCommune": "VERT LE GRAND" }, { - "codePostal": "90850", - "codeCommune": "90039", - "libelleAcheminement": "ESSERT", - "nomCommune": "ESSERT" + "codePostal": "98741", + "codeCommune": "98723", + "libelleAcheminement": "ATUONA", + "nomCommune": "HIVA OA" }, { - "codePostal": "90170", - "codeCommune": "90041", - "libelleAcheminement": "ETUEFFONT", - "nomCommune": "ETUEFFONT" + "codePostal": "91270", + "codeCommune": "91657", + "libelleAcheminement": "VIGNEUX SUR SEINE", + "nomCommune": "VIGNEUX SUR SEINE" }, { - "codePostal": "90100", - "codeCommune": "90045", - "libelleAcheminement": "FECHE L EGLISE", - "nomCommune": "FECHE L EGLISE" + "codePostal": "98796", + "codeCommune": "98723", + "libelleAcheminement": "MOHOTANI", + "nomCommune": "HIVA OA" }, { - "codePostal": "90100", - "codeCommune": "90046", - "libelleAcheminement": "FLORIMONT", - "nomCommune": "FLORIMONT" + "codePostal": "91190", + "codeCommune": "91679", + "libelleAcheminement": "VILLIERS LE BACLE", + "nomCommune": "VILLIERS LE BACLE" }, { - "codePostal": "90150", - "codeCommune": "90047", - "libelleAcheminement": "FONTAINE", - "nomCommune": "FONTAINE" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "HAAPU", + "nomCommune": "HUAHINE" }, { - "codePostal": "90150", - "codeCommune": "90049", - "libelleAcheminement": "FOUSSEMAGNE", - "nomCommune": "FOUSSEMAGNE" + "codePostal": "91320", + "codeCommune": "91689", + "libelleAcheminement": "WISSOUS", + "nomCommune": "WISSOUS" }, { - "codePostal": "90100", - "codeCommune": "90063", - "libelleAcheminement": "LEBETAIN", - "nomCommune": "LEBETAIN" + "codePostal": "98790", + "codeCommune": "98726", + "libelleAcheminement": "GARUMAOA", + "nomCommune": "MAKEMO" }, { - "codePostal": "90100", - "codeCommune": "90064", - "libelleAcheminement": "LEPUIX NEUF", - "nomCommune": "LEPUIX NEUF" + "codePostal": "91330", + "codeCommune": "91691", + "libelleAcheminement": "YERRES", + "nomCommune": "YERRES" }, { - "codePostal": "90150", - "codeCommune": "90067", - "libelleAcheminement": "MENONCOURT", - "nomCommune": "MENONCOURT" + "codePostal": "98770", + "codeCommune": "98727", + "libelleAcheminement": "TENOKUPARA", + "nomCommune": "MANIHI" }, { - "codePostal": "90120", - "codeCommune": "90072", - "libelleAcheminement": "MORVILLARS", - "nomCommune": "MORVILLARS" + "codePostal": "92270", + "codeCommune": "92009", + "libelleAcheminement": "BOIS COLOMBES", + "nomCommune": "BOIS COLOMBES" }, { - "codePostal": "90160", - "codeCommune": "90076", - "libelleAcheminement": "PEROUSE", - "nomCommune": "PEROUSE" + "codePostal": "98728", + "codeCommune": "98729", + "libelleAcheminement": "HAUMI", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "90150", - "codeCommune": "90080", - "libelleAcheminement": "PHAFFANS", - "nomCommune": "PHAFFANS" + "codePostal": "92100", + "codeCommune": "92012", + "libelleAcheminement": "BOULOGNE BILLANCOURT", + "nomCommune": "BOULOGNE BILLANCOURT" }, { - "codePostal": "90140", - "codeCommune": "90082", - "libelleAcheminement": "AUTRECHENE", - "nomCommune": "AUTRECHENE" + "codePostal": "98728", + "codeCommune": "98729", + "libelleAcheminement": "MAATEA", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "90200", - "codeCommune": "90088", - "libelleAcheminement": "ROUGEGOUTTE", - "nomCommune": "ROUGEGOUTTE" + "codePostal": "92290", + "codeCommune": "92019", + "libelleAcheminement": "CHATENAY MALABRY", + "nomCommune": "CHATENAY MALABRY" }, { - "codePostal": "90110", - "codeCommune": "90091", - "libelleAcheminement": "ST GERMAIN LE CHATELET", - "nomCommune": "ST GERMAIN LE CHATELET" + "codePostal": "98728", + "codeCommune": "98729", + "libelleAcheminement": "MAHAREPA", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "90100", - "codeCommune": "90105", - "libelleAcheminement": "VILLARS LE SEC", - "nomCommune": "VILLARS LE SEC" + "codePostal": "92140", + "codeCommune": "92023", + "libelleAcheminement": "CLAMART", + "nomCommune": "CLAMART" }, { - "codePostal": "91690", - "codeCommune": "91022", - "libelleAcheminement": "ARRANCOURT", - "nomCommune": "ARRANCOURT" + "codePostal": "98728", + "codeCommune": "98729", + "libelleAcheminement": "PAOPAO", + "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "91870", - "codeCommune": "91081", - "libelleAcheminement": "BOISSY LE SEC", - "nomCommune": "BOISSY LE SEC" + "codePostal": "92140", + "codeCommune": "92023", + "libelleAcheminement": "CLAMART", + "nomCommune": "CLAMART" }, { - "codePostal": "91790", - "codeCommune": "91085", - "libelleAcheminement": "BOISSY SOUS ST YON", - "nomCommune": "BOISSY SOUS ST YON" + "codePostal": "98742", + "codeCommune": "98731", + "libelleAcheminement": "TAIPIVAI", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "91850", - "codeCommune": "91095", - "libelleAcheminement": "BOURAY SUR JUINE", - "nomCommune": "BOURAY SUR JUINE" + "codePostal": "92110", + "codeCommune": "92024", + "libelleAcheminement": "CLICHY", + "nomCommune": "CLICHY" }, { - "codePostal": "91730", - "codeCommune": "91132", - "libelleAcheminement": "CHAMARANDE", - "nomCommune": "CHAMARANDE" + "codePostal": "98742", + "codeCommune": "98731", + "libelleAcheminement": "AAKAPA", + "nomCommune": "NUKU HIVA" }, { - "codePostal": "91150", - "codeCommune": "91137", - "libelleAcheminement": "CHAMPMOTTEUX", - "nomCommune": "CHAMPMOTTEUX" + "codePostal": "92190", + "codeCommune": "92048", + "libelleAcheminement": "MEUDON", + "nomCommune": "MEUDON" }, { - "codePostal": "91410", - "codeCommune": "91145", - "libelleAcheminement": "CHATIGNONVILLE", - "nomCommune": "CHATIGNONVILLE" + "codePostal": "98711", + "codeCommune": "98733", + "libelleAcheminement": "PAEA", + "nomCommune": "PAEA" }, { - "codePostal": "91630", - "codeCommune": "91156", - "libelleAcheminement": "CHEPTAINVILLE", - "nomCommune": "CHEPTAINVILLE" + "codePostal": "92120", + "codeCommune": "92049", + "libelleAcheminement": "MONTROUGE", + "nomCommune": "MONTROUGE" }, { - "codePostal": "91750", - "codeCommune": "91159", - "libelleAcheminement": "CHEVANNES", - "nomCommune": "CHEVANNES" + "codePostal": "98750", + "codeCommune": "98739", + "libelleAcheminement": "RAIRUA", + "nomCommune": "RAIVAVAE" }, { - "codePostal": "91100", - "codeCommune": "91174", - "libelleAcheminement": "CORBEIL ESSONNES", - "nomCommune": "CORBEIL ESSONNES" + "codePostal": "92350", + "codeCommune": "92060", + "libelleAcheminement": "LE PLESSIS ROBINSON", + "nomCommune": "LE PLESSIS ROBINSON" }, { - "codePostal": "91410", - "codeCommune": "91175", - "libelleAcheminement": "CORBREUSE", - "nomCommune": "CORBREUSE" + "codePostal": "98750", + "codeCommune": "98739", + "libelleAcheminement": "ANATONU", + "nomCommune": "RAIVAVAE" }, { - "codePostal": "91860", - "codeCommune": "91215", - "libelleAcheminement": "EPINAY SOUS SENART", - "nomCommune": "EPINAY SOUS SENART" + "codePostal": "92420", + "codeCommune": "92076", + "libelleAcheminement": "VAUCRESSON", + "nomCommune": "VAUCRESSON" }, { - "codePostal": "91000", - "codeCommune": "91228", - "libelleAcheminement": "EVRY COURCOURONNES", - "nomCommune": "EVRY COURCOURONNES" + "codePostal": "98778", + "codeCommune": "98740", + "libelleAcheminement": "TUHERAHERA", + "nomCommune": "RANGIROA" }, { - "codePostal": "91260", - "codeCommune": "91326", - "libelleAcheminement": "JUVISY SUR ORGE", - "nomCommune": "JUVISY SUR ORGE" + "codePostal": "93600", + "codeCommune": "93005", + "libelleAcheminement": "AULNAY SOUS BOIS", + "nomCommune": "AULNAY SOUS BOIS" }, { - "codePostal": "91470", - "codeCommune": "91338", - "libelleAcheminement": "LIMOURS", - "nomCommune": "LIMOURS" + "codePostal": "98752", + "codeCommune": "98743", + "libelleAcheminement": "RIMATARA", + "nomCommune": "RIMATARA" }, { - "codePostal": "91310", - "codeCommune": "91347", - "libelleAcheminement": "LONGPONT SUR ORGE", - "nomCommune": "LONGPONT SUR ORGE" + "codePostal": "93390", + "codeCommune": "93014", + "libelleAcheminement": "CLICHY SOUS BOIS", + "nomCommune": "CLICHY SOUS BOIS" }, { - "codePostal": "91150", - "codeCommune": "91374", - "libelleAcheminement": "MAROLLES EN BEAUCE", - "nomCommune": "MAROLLES EN BEAUCE" + "codePostal": "98795", + "codeCommune": "98743", + "libelleAcheminement": "MARIA ILOTS", + "nomCommune": "RIMATARA" }, { - "codePostal": "91470", - "codeCommune": "91411", - "libelleAcheminement": "LES MOLIERES", - "nomCommune": "LES MOLIERES" + "codePostal": "93120", + "codeCommune": "93027", + "libelleAcheminement": "LA COURNEUVE", + "nomCommune": "LA COURNEUVE" }, { - "codePostal": "91930", - "codeCommune": "91414", - "libelleAcheminement": "MONNERVILLE", - "nomCommune": "MONNERVILLE" + "codePostal": "98733", + "codeCommune": "98745", + "libelleAcheminement": "TAHAA", + "nomCommune": "TAHAA" }, { - "codePostal": "91290", - "codeCommune": "91457", - "libelleAcheminement": "LA NORVILLE", - "nomCommune": "LA NORVILLE" + "codePostal": "93450", + "codeCommune": "93039", + "libelleAcheminement": "L ILE ST DENIS", + "nomCommune": "L ILE ST DENIS" }, { - "codePostal": "91620", - "codeCommune": "91458", - "libelleAcheminement": "NOZAY", - "nomCommune": "NOZAY" + "codePostal": "98733", + "codeCommune": "98745", + "libelleAcheminement": "HIPU", + "nomCommune": "TAHAA" }, { - "codePostal": "91540", - "codeCommune": "91468", - "libelleAcheminement": "ORMOY", - "nomCommune": "ORMOY" + "codePostal": "93370", + "codeCommune": "93047", + "libelleAcheminement": "MONTFERMEIL", + "nomCommune": "MONTFERMEIL" }, { - "codePostal": "91150", - "codeCommune": "91469", - "libelleAcheminement": "ORMOY LA RIVIERE", - "nomCommune": "ORMOY LA RIVIERE" + "codePostal": "98734", + "codeCommune": "98745", + "libelleAcheminement": "POUTORU", + "nomCommune": "TAHAA" }, { - "codePostal": "91120", - "codeCommune": "91477", - "libelleAcheminement": "PALAISEAU", - "nomCommune": "PALAISEAU" + "codePostal": "93360", + "codeCommune": "93049", + "libelleAcheminement": "NEUILLY PLAISANCE", + "nomCommune": "NEUILLY PLAISANCE" }, { - "codePostal": "91220", - "codeCommune": "91494", - "libelleAcheminement": "LE PLESSIS PATE", - "nomCommune": "LE PLESSIS PATE" + "codePostal": "98722", + "codeCommune": "98747", + "libelleAcheminement": "TAUTIRA", + "nomCommune": "TAIARAPU EST" }, { - "codePostal": "91150", - "codeCommune": "91526", - "libelleAcheminement": "ROINVILLIERS", - "nomCommune": "ROINVILLIERS" + "codePostal": "93330", + "codeCommune": "93050", + "libelleAcheminement": "NEUILLY SUR MARNE", + "nomCommune": "NEUILLY SUR MARNE" }, { - "codePostal": "91700", - "codeCommune": "91549", - "libelleAcheminement": "STE GENEVIEVE DES BOIS", - "nomCommune": "STE GENEVIEVE DES BOIS" + "codePostal": "98735", + "codeCommune": "98750", + "libelleAcheminement": "PUOHINE", + "nomCommune": "TAPUTAPUATEA" }, { - "codePostal": "91780", - "codeCommune": "91556", - "libelleAcheminement": "ST HILAIRE", - "nomCommune": "ST HILAIRE" + "codePostal": "93500", + "codeCommune": "93055", + "libelleAcheminement": "PANTIN", + "nomCommune": "PANTIN" }, { - "codePostal": "91940", - "codeCommune": "91560", - "libelleAcheminement": "ST JEAN DE BEAUREGARD", - "nomCommune": "ST JEAN DE BEAUREGARD" + "codePostal": "98783", + "codeCommune": "98751", + "libelleAcheminement": "TUMUKURU", + "nomCommune": "TATAKOTO" }, { - "codePostal": "91240", - "codeCommune": "91570", - "libelleAcheminement": "ST MICHEL SUR ORGE", - "nomCommune": "ST MICHEL SUR ORGE" + "codePostal": "93380", + "codeCommune": "93059", + "libelleAcheminement": "PIERREFITTE SUR SEINE", + "nomCommune": "PIERREFITTE SUR SEINE" }, { - "codePostal": "91840", - "codeCommune": "91599", - "libelleAcheminement": "SOISY SUR ECOLE", - "nomCommune": "SOISY SUR ECOLE" + "codePostal": "98727", + "codeCommune": "98752", + "libelleAcheminement": "PAPEARI", + "nomCommune": "TEVA I UTA" }, { - "codePostal": "91270", - "codeCommune": "91657", - "libelleAcheminement": "VIGNEUX SUR SEINE", - "nomCommune": "VIGNEUX SUR SEINE" + "codePostal": "93230", + "codeCommune": "93063", + "libelleAcheminement": "ROMAINVILLE", + "nomCommune": "ROMAINVILLE" }, { - "codePostal": "91140", - "codeCommune": "91666", - "libelleAcheminement": "VILLEJUST", - "nomCommune": "VILLEJUST" + "codePostal": "98754", + "codeCommune": "98753", + "libelleAcheminement": "MATAURA", + "nomCommune": "TUBUAI" }, { - "codePostal": "91320", - "codeCommune": "91689", - "libelleAcheminement": "WISSOUS", - "nomCommune": "WISSOUS" + "codePostal": "93240", + "codeCommune": "93072", + "libelleAcheminement": "STAINS", + "nomCommune": "STAINS" }, { - "codePostal": "92160", - "codeCommune": "92002", - "libelleAcheminement": "ANTONY", - "nomCommune": "ANTONY" + "codePostal": "98735", + "codeCommune": "98754", + "libelleAcheminement": "TUMARAA", + "nomCommune": "TUMARAA" }, { - "codePostal": "92600", - "codeCommune": "92004", - "libelleAcheminement": "ASNIERES SUR SEINE", - "nomCommune": "ASNIERES SUR SEINE" + "codePostal": "93250", + "codeCommune": "93077", + "libelleAcheminement": "VILLEMOMBLE", + "nomCommune": "VILLEMOMBLE" }, { - "codePostal": "92340", - "codeCommune": "92014", - "libelleAcheminement": "BOURG LA REINE", - "nomCommune": "BOURG LA REINE" + "codePostal": "98735", + "codeCommune": "98754", + "libelleAcheminement": "FETUNA", + "nomCommune": "TUMARAA" }, { - "codePostal": "92700", - "codeCommune": "92025", - "libelleAcheminement": "COLOMBES", - "nomCommune": "COLOMBES" + "codePostal": "93420", + "codeCommune": "93078", + "libelleAcheminement": "VILLEPINTE", + "nomCommune": "VILLEPINTE" }, { - "codePostal": "92260", - "codeCommune": "92032", - "libelleAcheminement": "FONTENAY AUX ROSES", - "nomCommune": "FONTENAY AUX ROSES" + "codePostal": "98745", + "codeCommune": "98757", + "libelleAcheminement": "HAKATAO", + "nomCommune": "UA POU" }, { - "codePostal": "92380", - "codeCommune": "92033", - "libelleAcheminement": "GARCHES", - "nomCommune": "GARCHES" + "codePostal": "94500", + "codeCommune": "94017", + "libelleAcheminement": "CHAMPIGNY SUR MARNE", + "nomCommune": "CHAMPIGNY SUR MARNE" }, { - "codePostal": "92800", - "codeCommune": "92062", - "libelleAcheminement": "PUTEAUX", - "nomCommune": "PUTEAUX" + "codePostal": "98835", + "codeCommune": "98805", + "libelleAcheminement": "DUMBEA", + "nomCommune": "DUMBEA" }, { - "codePostal": "92210", - "codeCommune": "92064", - "libelleAcheminement": "ST CLOUD", - "nomCommune": "ST CLOUD" + "codePostal": "94260", + "codeCommune": "94034", + "libelleAcheminement": "FRESNES", + "nomCommune": "FRESNES" }, { - "codePostal": "92150", - "codeCommune": "92073", - "libelleAcheminement": "SURESNES", - "nomCommune": "SURESNES" + "codePostal": "98838", + "codeCommune": "98808", + "libelleAcheminement": "PORO", + "nomCommune": "HOUAILOU" }, { - "codePostal": "93150", - "codeCommune": "93007", - "libelleAcheminement": "LE BLANC MESNIL", - "nomCommune": "LE BLANC MESNIL" + "codePostal": "94250", + "codeCommune": "94037", + "libelleAcheminement": "GENTILLY", + "nomCommune": "GENTILLY" }, { - "codePostal": "93390", - "codeCommune": "93014", - "libelleAcheminement": "CLICHY SOUS BOIS", - "nomCommune": "CLICHY SOUS BOIS" + "codePostal": "98884", + "codeCommune": "98814", + "libelleAcheminement": "CHEPENEHE", + "nomCommune": "LIFOU" }, { - "codePostal": "93120", - "codeCommune": "93027", - "libelleAcheminement": "LA COURNEUVE", - "nomCommune": "LA COURNEUVE" + "codePostal": "94700", + "codeCommune": "94046", + "libelleAcheminement": "MAISONS ALFORT", + "nomCommune": "MAISONS ALFORT" }, { - "codePostal": "93220", - "codeCommune": "93032", - "libelleAcheminement": "GAGNY", - "nomCommune": "GAGNY" + "codePostal": "98875", + "codeCommune": "98817", + "libelleAcheminement": "PLUM", + "nomCommune": "LE MONT DORE" }, { - "codePostal": "93460", - "codeCommune": "93033", - "libelleAcheminement": "GOURNAY SUR MARNE", - "nomCommune": "GOURNAY SUR MARNE" + "codePostal": "94130", + "codeCommune": "94052", + "libelleAcheminement": "NOGENT SUR MARNE", + "nomCommune": "NOGENT SUR MARNE" }, { - "codePostal": "93130", - "codeCommune": "93053", - "libelleAcheminement": "NOISY LE SEC", - "nomCommune": "NOISY LE SEC" + "codePostal": "98821", + "codeCommune": "98819", + "libelleAcheminement": "OUEGOA", + "nomCommune": "OUEGOA" }, { - "codePostal": "93310", - "codeCommune": "93061", - "libelleAcheminement": "LE PRE ST GERVAIS", - "nomCommune": "LE PRE ST GERVAIS" + "codePostal": "94150", + "codeCommune": "94065", + "libelleAcheminement": "RUNGIS", + "nomCommune": "RUNGIS" }, { - "codePostal": "93210", - "codeCommune": "93066", - "libelleAcheminement": "ST DENIS", - "nomCommune": "ST DENIS" + "codePostal": "98890", + "codeCommune": "98821", + "libelleAcheminement": "PAITA", + "nomCommune": "PAITA" }, { - "codePostal": "94550", - "codeCommune": "94021", - "libelleAcheminement": "CHEVILLY LARUE", - "nomCommune": "CHEVILLY LARUE" + "codePostal": "94160", + "codeCommune": "94067", + "libelleAcheminement": "ST MANDE", + "nomCommune": "ST MANDE" }, { - "codePostal": "94200", - "codeCommune": "94041", - "libelleAcheminement": "IVRY SUR SEINE", - "nomCommune": "IVRY SUR SEINE" + "codePostal": "98827", + "codeCommune": "98827", + "libelleAcheminement": "POYA", + "nomCommune": "POYA" }, { - "codePostal": "94520", - "codeCommune": "94047", - "libelleAcheminement": "MANDRES LES ROSES", - "nomCommune": "MANDRES LES ROSES" + "codePostal": "94210", + "codeCommune": "94068", + "libelleAcheminement": "ST MAUR DES FOSSES", + "nomCommune": "ST MAUR DES FOSSES" }, { - "codePostal": "94130", - "codeCommune": "94052", - "libelleAcheminement": "NOGENT SUR MARNE", - "nomCommune": "NOGENT SUR MARNE" + "codePostal": "98877", + "codeCommune": "98827", + "libelleAcheminement": "NEPOUI", + "nomCommune": "POYA" }, { "codePostal": "94440", @@ -234299,42 +234293,42 @@ "libelleAcheminement": "SANTENY", "nomCommune": "SANTENY" }, - { - "codePostal": "94370", - "codeCommune": "94071", - "libelleAcheminement": "SUCY EN BRIE", - "nomCommune": "SUCY EN BRIE" - }, - { - "codePostal": "94320", - "codeCommune": "94073", - "libelleAcheminement": "THIAIS", - "nomCommune": "THIAIS" - }, { "codePostal": "94800", "codeCommune": "94076", "libelleAcheminement": "VILLEJUIF", "nomCommune": "VILLEJUIF" }, + { + "codePostal": "94300", + "codeCommune": "94080", + "libelleAcheminement": "VINCENNES", + "nomCommune": "VINCENNES" + }, + { + "codePostal": "95510", + "codeCommune": "95008", + "libelleAcheminement": "AINCOURT", + "nomCommune": "AINCOURT" + }, { "codePostal": "95580", "codeCommune": "95014", "libelleAcheminement": "ANDILLY", "nomCommune": "ANDILLY" }, + { + "codePostal": "95810", + "codeCommune": "95023", + "libelleAcheminement": "ARRONVILLE", + "nomCommune": "ARRONVILLE" + }, { "codePostal": "95430", "codeCommune": "95039", "libelleAcheminement": "AUVERS SUR OISE", "nomCommune": "AUVERS SUR OISE" }, - { - "codePostal": "95450", - "codeCommune": "95040", - "libelleAcheminement": "AVERNES", - "nomCommune": "AVERNES" - }, { "codePostal": "95420", "codeCommune": "95046", @@ -234342,40 +234336,34 @@ "nomCommune": "BANTHELU" }, { - "codePostal": "95270", - "codeCommune": "95056", - "libelleAcheminement": "BELLOY EN FRANCE", - "nomCommune": "BELLOY EN FRANCE" - }, - { - "codePostal": "95810", - "codeCommune": "95059", - "libelleAcheminement": "BERVILLE", - "nomCommune": "BERVILLE" + "codePostal": "95250", + "codeCommune": "95051", + "libelleAcheminement": "BEAUCHAMP", + "nomCommune": "BEAUCHAMP" }, { - "codePostal": "95870", - "codeCommune": "95063", - "libelleAcheminement": "BEZONS", - "nomCommune": "BEZONS" + "codePostal": "95710", + "codeCommune": "95101", + "libelleAcheminement": "BRAY ET LU", + "nomCommune": "BRAY ET LU" }, { - "codePostal": "95000", - "codeCommune": "95074", - "libelleAcheminement": "BOISEMONT", - "nomCommune": "BOISEMONT" + "codePostal": "95640", + "codeCommune": "95110", + "libelleAcheminement": "BRIGNANCOURT", + "nomCommune": "BRIGNANCOURT" }, { - "codePostal": "95420", - "codeCommune": "95141", - "libelleAcheminement": "CHARMONT", - "nomCommune": "CHARMONT" + "codePostal": "95430", + "codeCommune": "95120", + "libelleAcheminement": "BUTRY SUR OISE", + "nomCommune": "BUTRY SUR OISE" }, { - "codePostal": "95450", - "codeCommune": "95170", - "libelleAcheminement": "CONDECOURT", - "nomCommune": "CONDECOURT" + "codePostal": "95000", + "codeCommune": "95127", + "libelleAcheminement": "CERGY", + "nomCommune": "CERGY" }, { "codePostal": "95240", @@ -234384,58 +234372,22 @@ "nomCommune": "CORMEILLES EN PARISIS" }, { - "codePostal": "95330", - "codeCommune": "95199", - "libelleAcheminement": "DOMONT", - "nomCommune": "DOMONT" - }, - { - "codePostal": "95440", - "codeCommune": "95205", - "libelleAcheminement": "ECOUEN", - "nomCommune": "ECOUEN" - }, - { - "codePostal": "95450", - "codeCommune": "95253", - "libelleAcheminement": "FREMAINVILLE", - "nomCommune": "FREMAINVILLE" - }, - { - "codePostal": "95830", - "codeCommune": "95254", - "libelleAcheminement": "FREMECOURT", - "nomCommune": "FREMECOURT" - }, - { - "codePostal": "95140", - "codeCommune": "95268", - "libelleAcheminement": "GARGES LES GONESSE", - "nomCommune": "GARGES LES GONESSE" - }, - { - "codePostal": "95420", - "codeCommune": "95270", - "libelleAcheminement": "GENAINVILLE", - "nomCommune": "GENAINVILLE" - }, - { - "codePostal": "95220", - "codeCommune": "95306", - "libelleAcheminement": "HERBLAY SUR SEINE", - "nomCommune": "HERBLAY SUR SEINE" + "codePostal": "95880", + "codeCommune": "95210", + "libelleAcheminement": "ENGHIEN LES BAINS", + "nomCommune": "ENGHIEN LES BAINS" }, { - "codePostal": "95220", - "codeCommune": "95306", - "libelleAcheminement": "HERBLAY SUR SEINE", - "nomCommune": "HERBLAY SUR SEINE" + "codePostal": "95610", + "codeCommune": "95218", + "libelleAcheminement": "ERAGNY SUR OISE", + "nomCommune": "ERAGNY" }, { - "codePostal": "95290", - "codeCommune": "95313", - "libelleAcheminement": "L ISLE ADAM", - "nomCommune": "L ISLE ADAM" + "codePostal": "95740", + "codeCommune": "95256", + "libelleAcheminement": "FREPILLON", + "nomCommune": "FREPILLON" }, { "codePostal": "95690", @@ -234443,6 +234395,12 @@ "libelleAcheminement": "LABBEVILLE", "nomCommune": "LABBEVILLE" }, + { + "codePostal": "95270", + "codeCommune": "95331", + "libelleAcheminement": "LASSY", + "nomCommune": "LASSY" + }, { "codePostal": "95580", "codeCommune": "95369", @@ -234456,16 +234414,10 @@ "nomCommune": "MARINES" }, { - "codePostal": "95420", - "codeCommune": "95379", - "libelleAcheminement": "MAUDETOUR EN VEXIN", - "nomCommune": "MAUDETOUR EN VEXIN" - }, - { - "codePostal": "95650", - "codeCommune": "95422", - "libelleAcheminement": "MONTGEROULT", - "nomCommune": "MONTGEROULT" + "codePostal": "95670", + "codeCommune": "95371", + "libelleAcheminement": "MARLY LA VILLE", + "nomCommune": "MARLY LA VILLE" }, { "codePostal": "95370", @@ -234480,10 +234432,16 @@ "nomCommune": "MONTLIGNON" }, { - "codePostal": "95360", - "codeCommune": "95427", - "libelleAcheminement": "MONTMAGNY", - "nomCommune": "MONTMAGNY" + "codePostal": "95160", + "codeCommune": "95428", + "libelleAcheminement": "MONTMORENCY", + "nomCommune": "MONTMORENCY" + }, + { + "codePostal": "95690", + "codeCommune": "95446", + "libelleAcheminement": "NESLES LA VALLEE", + "nomCommune": "NESLES LA VALLEE" }, { "codePostal": "95000", @@ -234491,12 +234449,30 @@ "libelleAcheminement": "NEUVILLE SUR OISE", "nomCommune": "NEUVILLE SUR OISE" }, + { + "codePostal": "95420", + "codeCommune": "95459", + "libelleAcheminement": "NUCOURT", + "nomCommune": "NUCOURT" + }, + { + "codePostal": "95130", + "codeCommune": "95491", + "libelleAcheminement": "LE PLESSIS BOUCHARD", + "nomCommune": "LE PLESSIS BOUCHARD" + }, { "codePostal": "95350", "codeCommune": "95539", "libelleAcheminement": "ST BRICE SOUS FORET", "nomCommune": "ST BRICE SOUS FORET" }, + { + "codePostal": "95210", + "codeCommune": "95555", + "libelleAcheminement": "ST GRATIEN", + "nomCommune": "ST GRATIEN" + }, { "codePostal": "95320", "codeCommune": "95563", @@ -234504,10 +234480,22 @@ "nomCommune": "ST LEU LA FORET" }, { - "codePostal": "95110", - "codeCommune": "95582", - "libelleAcheminement": "SANNOIS", - "nomCommune": "SANNOIS" + "codePostal": "95270", + "codeCommune": "95566", + "libelleAcheminement": "ST MARTIN DU TERTRE", + "nomCommune": "ST MARTIN DU TERTRE" + }, + { + "codePostal": "95310", + "codeCommune": "95572", + "libelleAcheminement": "ST OUEN L AUMONE", + "nomCommune": "ST OUEN L AUMONE" + }, + { + "codePostal": "95470", + "codeCommune": "95580", + "libelleAcheminement": "ST WITZ", + "nomCommune": "ST WITZ" }, { "codePostal": "95450", @@ -234516,10 +234504,16 @@ "nomCommune": "SERAINCOURT" }, { - "codePostal": "95500", - "codeCommune": "95612", - "libelleAcheminement": "LE THILLAY", - "nomCommune": "LE THILLAY" + "codePostal": "95150", + "codeCommune": "95607", + "libelleAcheminement": "TAVERNY", + "nomCommune": "TAVERNY" + }, + { + "codePostal": "95450", + "codeCommune": "95610", + "libelleAcheminement": "THEMERICOURT", + "nomCommune": "THEMERICOURT" }, { "codePostal": "95450", @@ -234528,28 +234522,34 @@ "nomCommune": "US" }, { - "codePostal": "95470", - "codeCommune": "95641", - "libelleAcheminement": "VEMARS", - "nomCommune": "VEMARS" + "codePostal": "95500", + "codeCommune": "95633", + "libelleAcheminement": "VAUDHERLAND", + "nomCommune": "VAUDHERLAND" }, { - "codePostal": "95840", - "codeCommune": "95678", - "libelleAcheminement": "VILLIERS ADAM", - "nomCommune": "VILLIERS ADAM" + "codePostal": "97142", + "codeCommune": "97101", + "libelleAcheminement": "LES ABYMES", + "nomCommune": "LES ABYMES" }, { - "codePostal": "95720", - "codeCommune": "95682", - "libelleAcheminement": "VILLIERS LE SEC", - "nomCommune": "VILLIERS LE SEC" + "codePostal": "97130", + "codeCommune": "97107", + "libelleAcheminement": "CAPESTERRE BELLE EAU", + "nomCommune": "CAPESTERRE BELLE EAU" }, { - "codePostal": "97112", - "codeCommune": "97112", - "libelleAcheminement": "GRAND BOURG", - "nomCommune": "GRAND BOURG" + "codePostal": "97130", + "codeCommune": "97107", + "libelleAcheminement": "CAPESTERRE BELLE EAU", + "nomCommune": "CAPESTERRE BELLE EAU" + }, + { + "codePostal": "97128", + "codeCommune": "97114", + "libelleAcheminement": "GOYAVE", + "nomCommune": "GOYAVE" }, { "codePostal": "97129", @@ -234558,22 +234558,28 @@ "nomCommune": "LAMENTIN" }, { - "codePostal": "97111", - "codeCommune": "97116", - "libelleAcheminement": "MORNE A L EAU", - "nomCommune": "MORNE A L EAU" + "codePostal": "97116", + "codeCommune": "97121", + "libelleAcheminement": "POINTE NOIRE", + "nomCommune": "POINTE NOIRE" }, { - "codePostal": "97170", - "codeCommune": "97118", - "libelleAcheminement": "PETIT BOURG", - "nomCommune": "PETIT BOURG" + "codePostal": "97134", + "codeCommune": "97126", + "libelleAcheminement": "ST LOUIS", + "nomCommune": "ST LOUIS" }, { - "codePostal": "97115", - "codeCommune": "97129", - "libelleAcheminement": "STE ROSE", - "nomCommune": "STE ROSE" + "codePostal": "97137", + "codeCommune": "97131", + "libelleAcheminement": "TERRE DE HAUT", + "nomCommune": "TERRE DE HAUT" + }, + { + "codePostal": "97114", + "codeCommune": "97132", + "libelleAcheminement": "TROIS RIVIERES", + "nomCommune": "TROIS RIVIERES" }, { "codePostal": "97119", @@ -234582,16 +234588,22 @@ "nomCommune": "VIEUX HABITANTS" }, { - "codePostal": "97218", - "codeCommune": "97203", - "libelleAcheminement": "BASSE POINTE", - "nomCommune": "BASSE POINTE" + "codePostal": "97217", + "codeCommune": "97202", + "libelleAcheminement": "LES ANSES D ARLET", + "nomCommune": "LES ANSES D ARLET" }, { - "codePostal": "97240", - "codeCommune": "97210", - "libelleAcheminement": "LE FRANCOIS", - "nomCommune": "LE FRANCOIS" + "codePostal": "97224", + "codeCommune": "97207", + "libelleAcheminement": "DUCOS", + "nomCommune": "DUCOS" + }, + { + "codePostal": "97200", + "codeCommune": "97209", + "libelleAcheminement": "FORT DE FRANCE", + "nomCommune": "FORT DE FRANCE" }, { "codePostal": "97213", @@ -234600,22 +234612,10 @@ "nomCommune": "GROS MORNE" }, { - "codePostal": "97214", - "codeCommune": "97214", - "libelleAcheminement": "LE LORRAIN", - "nomCommune": "LE LORRAIN" - }, - { - "codePostal": "97250", - "codeCommune": "97219", - "libelleAcheminement": "LE PRECHEUR", - "nomCommune": "LE PRECHEUR" - }, - { - "codePostal": "97215", - "codeCommune": "97221", - "libelleAcheminement": "RIVIERE SALEE", - "nomCommune": "RIVIERE SALEE" + "codePostal": "97290", + "codeCommune": "97217", + "libelleAcheminement": "LE MARIN", + "nomCommune": "LE MARIN" }, { "codePostal": "97215", @@ -234630,10 +234630,16 @@ "nomCommune": "LE ROBERT" }, { - "codePostal": "97228", - "codeCommune": "97227", - "libelleAcheminement": "STE LUCE", - "nomCommune": "STE LUCE" + "codePostal": "97212", + "codeCommune": "97224", + "libelleAcheminement": "ST JOSEPH", + "nomCommune": "ST JOSEPH" + }, + { + "codePostal": "97230", + "codeCommune": "97228", + "libelleAcheminement": "STE MARIE", + "nomCommune": "STE MARIE" }, { "codePostal": "97233", @@ -234642,46 +234648,22 @@ "nomCommune": "SCHOELCHER" }, { - "codePostal": "97353", + "codePostal": "97390", "codeCommune": "97301", "libelleAcheminement": "REGINA", "nomCommune": "REGINA" }, { - "codePostal": "97300", - "codeCommune": "97302", - "libelleAcheminement": "CAYENNE", - "nomCommune": "CAYENNE" - }, - { - "codePostal": "97320", - "codeCommune": "97311", - "libelleAcheminement": "ST LAURENT DU MARONI", - "nomCommune": "ST LAURENT DU MARONI" - }, - { - "codePostal": "97315", - "codeCommune": "97312", - "libelleAcheminement": "SINNAMARY", - "nomCommune": "SINNAMARY" - }, - { - "codePostal": "97340", - "codeCommune": "97357", - "libelleAcheminement": "GRAND SANTI", - "nomCommune": "GRAND SANTI" - }, - { - "codePostal": "97312", - "codeCommune": "97358", - "libelleAcheminement": "ST ELIE", - "nomCommune": "ST ELIE" + "codePostal": "97318", + "codeCommune": "97306", + "libelleAcheminement": "MANA", + "nomCommune": "MANA" }, { - "codePostal": "97319", - "codeCommune": "97361", - "libelleAcheminement": "AWALA YALIMAPO", - "nomCommune": "AWALA YALIMAPO" + "codePostal": "97352", + "codeCommune": "97310", + "libelleAcheminement": "ROURA", + "nomCommune": "ROURA" }, { "codePostal": "97425", @@ -234689,24 +234671,6 @@ "libelleAcheminement": "LES AVIRONS", "nomCommune": "LES AVIRONS" }, - { - "codePostal": "97414", - "codeCommune": "97403", - "libelleAcheminement": "ENTRE DEUX", - "nomCommune": "ENTRE DEUX" - }, - { - "codePostal": "97427", - "codeCommune": "97404", - "libelleAcheminement": "L ETANG SALE", - "nomCommune": "L ETANG SALE" - }, - { - "codePostal": "97427", - "codeCommune": "97404", - "libelleAcheminement": "L ETANG SALE", - "nomCommune": "L ETANG SALE" - }, { "codePostal": "97420", "codeCommune": "97407", @@ -234719,12 +234683,6 @@ "libelleAcheminement": "LA POSSESSION", "nomCommune": "LA POSSESSION" }, - { - "codePostal": "97419", - "codeCommune": "97408", - "libelleAcheminement": "LA POSSESSION", - "nomCommune": "LA POSSESSION" - }, { "codePostal": "97440", "codeCommune": "97409", @@ -234738,13 +234696,37 @@ "nomCommune": "ST DENIS" }, { - "codePostal": "97424", + "codePostal": "97480", + "codeCommune": "97412", + "libelleAcheminement": "ST JOSEPH", + "nomCommune": "ST JOSEPH" + }, + { + "codePostal": "97436", "codeCommune": "97413", "libelleAcheminement": "ST LEU", "nomCommune": "ST LEU" }, { - "codePostal": "97422", + "codePostal": "97411", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" + }, + { + "codePostal": "97423", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" + }, + { + "codePostal": "97460", + "codeCommune": "97415", + "libelleAcheminement": "ST PAUL", + "nomCommune": "ST PAUL" + }, + { + "codePostal": "97460", "codeCommune": "97415", "libelleAcheminement": "ST PAUL", "nomCommune": "ST PAUL" @@ -234762,16 +234744,10 @@ "nomCommune": "ST PIERRE" }, { - "codePostal": "97439", - "codeCommune": "97419", - "libelleAcheminement": "STE ROSE", - "nomCommune": "STE ROSE" - }, - { - "codePostal": "97441", - "codeCommune": "97420", - "libelleAcheminement": "STE SUZANNE", - "nomCommune": "STE SUZANNE" + "codePostal": "97432", + "codeCommune": "97416", + "libelleAcheminement": "ST PIERRE", + "nomCommune": "ST PIERRE" }, { "codePostal": "97418", @@ -234780,28 +234756,40 @@ "nomCommune": "LE TAMPON" }, { - "codePostal": "97430", - "codeCommune": "97422", - "libelleAcheminement": "LE TAMPON", - "nomCommune": "LE TAMPON" + "codePostal": "97500", + "codeCommune": "97501", + "libelleAcheminement": "ST PIERRE ET MIQUELON", + "nomCommune": "MIQUELON LANGLADE" }, { - "codePostal": "97426", - "codeCommune": "97423", - "libelleAcheminement": "LES TROIS BASSINS", - "nomCommune": "LES TROIS BASSINS" + "codePostal": "97500", + "codeCommune": "97502", + "libelleAcheminement": "ST PIERRE ET MIQUELON", + "nomCommune": "ST PIERRE" }, { - "codePostal": "97620", - "codeCommune": "97604", - "libelleAcheminement": "BOUENI", - "nomCommune": "BOUENI" + "codePostal": "97650", + "codeCommune": "97602", + "libelleAcheminement": "BANDRABOUA", + "nomCommune": "BANDRABOUA" }, { - "codePostal": "97660", - "codeCommune": "97607", - "libelleAcheminement": "DEMBENI", - "nomCommune": "DEMBENI" + "codePostal": "97650", + "codeCommune": "97602", + "libelleAcheminement": "BANDRABOUA", + "nomCommune": "BANDRABOUA" + }, + { + "codePostal": "97670", + "codeCommune": "97605", + "libelleAcheminement": "CHICONI", + "nomCommune": "CHICONI" + }, + { + "codePostal": "97620", + "codeCommune": "97606", + "libelleAcheminement": "CHIRONGUI", + "nomCommune": "CHIRONGUI" }, { "codePostal": "97615", @@ -234809,6 +234797,12 @@ "libelleAcheminement": "DZAOUDZI", "nomCommune": "DZAOUDZI" }, + { + "codePostal": "97670", + "codeCommune": "97614", + "libelleAcheminement": "OUANGANI", + "nomCommune": "OUANGANI" + }, { "codePostal": "97615", "codeCommune": "97615", @@ -234816,345 +234810,351 @@ "nomCommune": "PAMANDZI" }, { - "codePostal": "98610", - "codeCommune": "98611", - "libelleAcheminement": "ALO", - "nomCommune": "ALO" + "codePostal": "97133", + "codeCommune": "97701", + "libelleAcheminement": "ST BARTHELEMY", + "nomCommune": "ST BARTHELEMY" }, { - "codePostal": "98600", - "codeCommune": "98613", - "libelleAcheminement": "UVEA", - "nomCommune": "UVEA" + "codePostal": "98786", + "codeCommune": "98711", + "libelleAcheminement": "HITIANAU", + "nomCommune": "ANAA" }, { - "codePostal": "98785", + "codePostal": "98701", + "codeCommune": "98712", + "libelleAcheminement": "ARUE", + "nomCommune": "ARUE" + }, + { + "codePostal": "98761", "codeCommune": "98713", - "libelleAcheminement": "RAITAHITI", + "libelleAcheminement": "RAUTINI", "nomCommune": "ARUTUA" }, { - "codePostal": "98787", + "codePostal": "98762", + "codeCommune": "98713", + "libelleAcheminement": "NIUTAHI", + "nomCommune": "ARUTUA" + }, + { + "codePostal": "98730", + "codeCommune": "98714", + "libelleAcheminement": "ANAU", + "nomCommune": "BORA BORA" + }, + { + "codePostal": "98730", + "codeCommune": "98714", + "libelleAcheminement": "NUNUE", + "nomCommune": "BORA BORA" + }, + { + "codePostal": "98704", + "codeCommune": "98715", + "libelleAcheminement": "FAAA", + "nomCommune": "FAAA" + }, + { + "codePostal": "98790", "codeCommune": "98716", - "libelleAcheminement": "TEARAVERO", + "libelleAcheminement": "OFARE", "nomCommune": "FAKARAVA" }, + { + "codePostal": "98740", + "codeCommune": "98718", + "libelleAcheminement": "HANAVAVE", + "nomCommune": "FATU HIVA" + }, { "codePostal": "98755", "codeCommune": "98719", - "libelleAcheminement": "ANGAKAUITAI", + "libelleAcheminement": "KAMAKA", "nomCommune": "GAMBIER" }, { - "codePostal": "98792", + "codePostal": "98755", "codeCommune": "98719", - "libelleAcheminement": "VAHANGA", + "libelleAcheminement": "AKAMARU", "nomCommune": "GAMBIER" }, { "codePostal": "98792", "codeCommune": "98719", - "libelleAcheminement": "MARIA EST", + "libelleAcheminement": "MOTUREIVAVAO", "nomCommune": "GAMBIER" }, { - "codePostal": "98790", - "codeCommune": "98720", - "libelleAcheminement": "AMANU", - "nomCommune": "HAO" + "codePostal": "98792", + "codeCommune": "98719", + "libelleAcheminement": "TENARARO", + "nomCommune": "GAMBIER" }, { - "codePostal": "98790", - "codeCommune": "98720", - "libelleAcheminement": "HIKITAKE", - "nomCommune": "HAO" + "codePostal": "98793", + "codeCommune": "98719", + "libelleAcheminement": "MARUTEA SUD", + "nomCommune": "GAMBIER" }, { "codePostal": "98790", "codeCommune": "98720", - "libelleAcheminement": "MANUHANGI", + "libelleAcheminement": "OTETOU", "nomCommune": "HAO" }, { "codePostal": "98790", - "codeCommune": "98720", - "libelleAcheminement": "TEANOGA", - "nomCommune": "HAO" - }, - { - "codePostal": "98705", - "codeCommune": "98722", - "libelleAcheminement": "HITIAA", - "nomCommune": "HITIAA O TE RA" + "codeCommune": "98721", + "libelleAcheminement": "MOTUTAPU", + "nomCommune": "HIKUERU" }, { - "codePostal": "98706", - "codeCommune": "98722", - "libelleAcheminement": "MAHAENA", - "nomCommune": "HITIAA O TE RA" + "codePostal": "98790", + "codeCommune": "98721", + "libelleAcheminement": "RAVAHERE", + "nomCommune": "HIKUERU" }, { "codePostal": "98741", "codeCommune": "98723", - "libelleAcheminement": "HANAPAOA", + "libelleAcheminement": "HANAIAPA", "nomCommune": "HIVA OA" }, { - "codePostal": "98749", - "codeCommune": "98723", - "libelleAcheminement": "PUAMAU", - "nomCommune": "HIVA OA" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "FARE", + "nomCommune": "HUAHINE" }, { - "codePostal": "98796", - "codeCommune": "98723", - "libelleAcheminement": "FATU HUKU", - "nomCommune": "HIVA OA" + "codePostal": "98731", + "codeCommune": "98724", + "libelleAcheminement": "FITII", + "nomCommune": "HUAHINE" }, { - "codePostal": "98731", + "codePostal": "98732", "codeCommune": "98724", - "libelleAcheminement": "FAIE", + "libelleAcheminement": "AVERA", "nomCommune": "HUAHINE" }, { - "codePostal": "98769", - "codeCommune": "98726", - "libelleAcheminement": "POUHEVA", - "nomCommune": "MAKEMO" + "codePostal": "98709", + "codeCommune": "98725", + "libelleAcheminement": "MAHINA", + "nomCommune": "MAHINA" }, { - "codePostal": "98790", - "codeCommune": "98726", - "libelleAcheminement": "MARUTEA NORD", - "nomCommune": "MAKEMO" + "codePostal": "98710", + "codeCommune": "98725", + "libelleAcheminement": "OROFARA", + "nomCommune": "MAHINA" }, { "codePostal": "98790", "codeCommune": "98726", - "libelleAcheminement": "OTATAKE", + "libelleAcheminement": "HARAIKI", "nomCommune": "MAKEMO" }, { "codePostal": "98790", "codeCommune": "98726", - "libelleAcheminement": "TEPOTO SUD", + "libelleAcheminement": "HENUAPAREA", "nomCommune": "MAKEMO" }, { "codePostal": "98790", "codeCommune": "98726", - "libelleAcheminement": "TUANAKE", + "libelleAcheminement": "HITI", "nomCommune": "MAKEMO" }, { - "codePostal": "98728", - "codeCommune": "98729", - "libelleAcheminement": "AFAREAITU", - "nomCommune": "MOOREA MAIAO" + "codePostal": "98732", + "codeCommune": "98728", + "libelleAcheminement": "MAUPITI", + "nomCommune": "MAUPITI" }, { - "codePostal": "98729", + "codePostal": "98728", "codeCommune": "98729", - "libelleAcheminement": "MAIAO", + "libelleAcheminement": "TEMAE", "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "98729", + "codePostal": "98728", "codeCommune": "98729", - "libelleAcheminement": "HAURU", + "libelleAcheminement": "VAIARE", "nomCommune": "MOOREA MAIAO" }, { "codePostal": "98729", "codeCommune": "98729", - "libelleAcheminement": "PAPETOAI", + "libelleAcheminement": "ATIHA", "nomCommune": "MOOREA MAIAO" }, { "codePostal": "98729", "codeCommune": "98729", - "libelleAcheminement": "TIAHURA", + "libelleAcheminement": "HAAPITI", "nomCommune": "MOOREA MAIAO" }, { "codePostal": "98729", "codeCommune": "98729", - "libelleAcheminement": "VAIANAE", + "libelleAcheminement": "VARARI", "nomCommune": "MOOREA MAIAO" }, { - "codePostal": "98742", - "codeCommune": "98731", - "libelleAcheminement": "TAIOHAE", - "nomCommune": "NUKU HIVA" - }, - { - "codePostal": "98796", - "codeCommune": "98731", - "libelleAcheminement": "EIAO", - "nomCommune": "NUKU HIVA" - }, - { - "codePostal": "98788", + "codePostal": "98773", "codeCommune": "98732", - "libelleAcheminement": "TEMANUFAARA", + "libelleAcheminement": "TAVAVA", "nomCommune": "NUKUTAVAKE" }, { - "codePostal": "98776", - "codeCommune": "98740", - "libelleAcheminement": "TIPUTA", - "nomCommune": "RANGIROA" - }, - { - "codePostal": "98790", - "codeCommune": "98740", - "libelleAcheminement": "VAITEPAUA", - "nomCommune": "RANGIROA" - }, - { - "codePostal": "98780", - "codeCommune": "98742", - "libelleAcheminement": "MARAUTAGAROA", - "nomCommune": "REAO" - }, - { - "codePostal": "98752", - "codeCommune": "98743", - "libelleAcheminement": "ANAPOTO", - "nomCommune": "RIMATARA" - }, - { - "codePostal": "98752", - "codeCommune": "98743", - "libelleAcheminement": "MUTUAURA", - "nomCommune": "RIMATARA" + "codePostal": "98712", + "codeCommune": "98734", + "libelleAcheminement": "PAPARA", + "nomCommune": "PAPARA" }, { - "codePostal": "98753", - "codeCommune": "98744", - "libelleAcheminement": "AVERA", - "nomCommune": "RURUTU" + "codePostal": "98750", + "codeCommune": "98739", + "libelleAcheminement": "MAHANATOA", + "nomCommune": "RAIVAVAE" }, { - "codePostal": "98733", - "codeCommune": "98745", - "libelleAcheminement": "RUUTIA", - "nomCommune": "TAHAA" + "codePostal": "98775", + "codeCommune": "98740", + "libelleAcheminement": "AVATORU", + "nomCommune": "RANGIROA" }, { "codePostal": "98733", "codeCommune": "98745", - "libelleAcheminement": "TAPUAMU", + "libelleAcheminement": "PATIO", "nomCommune": "TAHAA" }, { "codePostal": "98734", "codeCommune": "98745", - "libelleAcheminement": "VAITOARE", + "libelleAcheminement": "NIUA", "nomCommune": "TAHAA" }, { "codePostal": "98743", "codeCommune": "98746", - "libelleAcheminement": "MOTOPU", + "libelleAcheminement": "HAPATONI", "nomCommune": "TAHUATA" }, { - "codePostal": "98743", - "codeCommune": "98746", - "libelleAcheminement": "HANATETENA", - "nomCommune": "TAHUATA" + "codePostal": "98719", + "codeCommune": "98747", + "libelleAcheminement": "AFAAHITI", + "nomCommune": "TAIARAPU EST" }, { - "codePostal": "98723", + "codePostal": "98720", + "codeCommune": "98747", + "libelleAcheminement": "FAAONE", + "nomCommune": "TAIARAPU EST" + }, + { + "codePostal": "98724", "codeCommune": "98748", - "libelleAcheminement": "TEAHUPOO", + "libelleAcheminement": "TOAHOTU", "nomCommune": "TAIARAPU OUEST" }, + { + "codePostal": "98781", + "codeCommune": "98749", + "libelleAcheminement": "TEAVAROA", + "nomCommune": "TAKAROA" + }, { "codePostal": "98735", "codeCommune": "98750", - "libelleAcheminement": "TAPUTAPUATEA", + "libelleAcheminement": "OPOA", "nomCommune": "TAPUTAPUATEA" }, { - "codePostal": "98726", - "codeCommune": "98752", - "libelleAcheminement": "MATAIEA", - "nomCommune": "TEVA I UTA" - }, - { - "codePostal": "98754", - "codeCommune": "98753", - "libelleAcheminement": "MAHU", - "nomCommune": "TUBUAI" + "codePostal": "98784", + "codeCommune": "98755", + "libelleAcheminement": "FAKAMARU", + "nomCommune": "TUREIA" }, { - "codePostal": "98747", - "codeCommune": "98756", - "libelleAcheminement": "HANE", - "nomCommune": "UA HUKA" + "codePostal": "98745", + "codeCommune": "98757", + "libelleAcheminement": "HOHOI", + "nomCommune": "UA POU" }, { - "codePostal": "98812", - "codeCommune": "98802", - "libelleAcheminement": "BOULOUPARIS", - "nomCommune": "BOULOUPARI" + "codePostal": "98746", + "codeCommune": "98757", + "libelleAcheminement": "HAAKUTI", + "nomCommune": "UA POU" }, { - "codePostal": "98836", + "codePostal": "98830", "codeCommune": "98805", - "libelleAcheminement": "DUMBEA GA", + "libelleAcheminement": "DUMBEA", "nomCommune": "DUMBEA" }, { - "codePostal": "98815", - "codeCommune": "98807", - "libelleAcheminement": "HIENGHENE", - "nomCommune": "HIENGHENE" + "codePostal": "98859", + "codeCommune": "98811", + "libelleAcheminement": "KONE", + "nomCommune": "KONE" }, { - "codePostal": "98832", - "codeCommune": "98809", - "libelleAcheminement": "VAO", - "nomCommune": "L ILE DES PINS" + "codePostal": "98820", + "codeCommune": "98814", + "libelleAcheminement": "WE", + "nomCommune": "LIFOU" }, { - "codePostal": "98810", + "codePostal": "98819", + "codeCommune": "98816", + "libelleAcheminement": "MOINDOU", + "nomCommune": "MOINDOU" + }, + { + "codePostal": "98874", "codeCommune": "98817", - "libelleAcheminement": "MONT DORE", + "libelleAcheminement": "PONT DES FRANCAIS", "nomCommune": "LE MONT DORE" }, { - "codePostal": "98824", - "codeCommune": "98824", - "libelleAcheminement": "POUEBO", - "nomCommune": "POUEBO" + "codePostal": "98876", + "codeCommune": "98817", + "libelleAcheminement": "LA COULEE", + "nomCommune": "LE MONT DORE" }, { - "codePostal": "98825", - "codeCommune": "98825", - "libelleAcheminement": "POUEMBOUT", - "nomCommune": "POUEMBOUT" + "codePostal": "98800", + "codeCommune": "98818", + "libelleAcheminement": "NOUMEA", + "nomCommune": "NOUMEA" }, { - "codePostal": "98882", - "codeCommune": "98828", - "libelleAcheminement": "SARRAMEA", - "nomCommune": "SARRAMEA" + "codePostal": "98840", + "codeCommune": "98821", + "libelleAcheminement": "TONTOUTA", + "nomCommune": "PAITA" }, { - "codePostal": "98831", - "codeCommune": "98830", - "libelleAcheminement": "TOUHO", - "nomCommune": "TOUHO" + "codePostal": "98889", + "codeCommune": "98821", + "libelleAcheminement": "PAITA", + "nomCommune": "PAITA" }, { - "codePostal": "98799", - "codeCommune": "98901", - "libelleAcheminement": "ILE DE CLIPPERTON", - "nomCommune": "ILE DE CLIPPERTON" + "codePostal": "98823", + "codeCommune": "98823", + "libelleAcheminement": "PONERIHOUEN", + "nomCommune": "PONERIHOUEN" } ] diff --git a/sources/communes.csv b/sources/communes.csv index 09af7fe..1df2fa8 100644 --- a/sources/communes.csv +++ b/sources/communes.csv @@ -38,7 +38,7 @@ COM,01036,84,01,01D,011,0,VALROMEY SUR SERAN,Valromey-sur-Séran,Valromey-sur-S COMD,01036,,,,,0,BELMONT LUTHEZIEU,Belmont-Luthézieu,Belmont-Luthézieu,,01036 COM,01037,84,01,01D,011,0,BENONCES,Bénonces,Bénonces,0111, COM,01038,84,01,01D,012,0,BENY,Bény,Bény,0118, -COM,01039,84,01,01D,011,0,BEON,Béon,Béon,0110, +COMD,01039,,,,,0,BEON,Béon,Béon,,01138 COM,01040,84,01,01D,012,0,BEREZIAT,Béréziat,Béréziat,0102, COM,01041,84,01,01D,011,0,BETTANT,Bettant,Bettant,0101, COM,01042,84,01,01D,012,0,BEY,Bey,Bey,0123, @@ -92,7 +92,6 @@ COM,01092,84,01,01D,012,0,CHATILLON LA PALUD,Châtillon-la-Palud,Châtillon-la-P COM,01093,84,01,01D,012,0,CHATILLON SUR CHALARONNE,Châtillon-sur-Chalaronne,Châtillon-sur-Chalaronne,0108, COM,01094,84,01,01D,012,0,CHAVANNES SUR REYSSOUZE,Chavannes-sur-Reyssouze,Chavannes-sur-Reyssouze,0117, COM,01095,84,01,01D,012,0,NIVIGNE ET SURAN,Nivigne et Suran,Nivigne et Suran,0118, -COMD,01095,,,,,0,CHAVANNES SUR SURAN,Chavannes-sur-Suran,Chavannes-sur-Suran,,01095 COM,01096,84,01,01D,012,0,CHAVEYRIAT,Chaveyriat,Chaveyriat,0123, COMD,01097,,,,,0,CHAVORNAY,Chavornay,Chavornay,,01453 COM,01098,84,01,01D,011,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons,0104, @@ -133,7 +132,8 @@ COM,01134,84,01,01D,012,0,CROTTET,Crottet,Crottet,0123, COM,01135,84,01,01D,013,0,CROZET,Crozet,Crozet,0120, COM,01136,84,01,01D,012,0,CRUZILLES LES MEPILLAT,Cruzilles-lès-Mépillat,Cruzilles-lès-Mépillat,0123, COMD,01137,,,,,0,CUISIAT,Cuisiat,Cuisiat,,01426 -COM,01138,84,01,01D,011,0,CULOZ,Culoz,Culoz,0110, +COM,01138,84,01,01D,011,0,CULOZ BEON,Culoz-Béon,Culoz-Béon,0110, +COMD,01138,,,,,0,CULOZ,Culoz,Culoz,,01138 COM,01139,84,01,01D,012,0,CURCIAT DONGALON,Curciat-Dongalon,Curciat-Dongalon,0117, COM,01140,84,01,01D,012,0,CURTAFOND,Curtafond,Curtafond,0102, COM,01141,84,01,01D,011,0,CUZIEU,Cuzieu,Cuzieu,0104, @@ -164,7 +164,6 @@ COM,01167,84,01,01D,012,0,GARNERANS,Garnerans,Garnerans,0108, COM,01169,84,01,01D,012,0,GENOUILLEUX,Genouilleux,Genouilleux,0108, COM,01170,84,01,01D,014,0,BEARD GEOVREISSIAT,Béard-Géovreissiat,Béard-Géovreissiat,0114, COM,01171,84,01,01D,014,0,GEOVREISSET,Géovreisset,Géovreisset,0114, -COMD,01172,,,,,0,GERMAGNAT,Germagnat,Germagnat,,01095 COM,01173,84,01,01D,013,0,GEX,Gex,Gex,0109, COM,01174,84,01,01D,014,0,GIRON,Giron,Giron,0103, COM,01175,84,01,01D,012,0,GORREVOD,Gorrevod,Gorrevod,0117, @@ -508,7 +507,7 @@ COM,02073,32,02,02D,022,0,BERRY AU BAC,Berry-au-Bac,Berry-au-Bac,0206, COM,02074,32,02,02D,022,0,BERTAUCOURT EPOURDON,Bertaucourt-Epourdon,Bertaucourt-Epourdon,0218, COM,02075,32,02,02D,023,0,BERTHENICOURT,Berthenicourt,Berthenicourt,0212, COM,02076,32,02,02D,022,0,BERTRICOURT,Bertricourt,Bertricourt,0206, -COM,02077,32,02,02D,024,0,BERZY LE SEC,Berzy-le-Sec,Berzy-le-Sec,0217, +COMD,02077,,,,,0,BERZY LE SEC,Berzy-le-Sec,Berzy-le-Sec,,02564 COM,02078,32,02,02D,022,0,BESME,Besmé,Besmé,0220, COM,02079,32,02,02D,025,0,BESMONT,Besmont,Besmont,0208, COM,02080,32,02,02D,022,0,BESNY ET LOIZY,Besny-et-Loizy,Besny-et-Loizy,0209, @@ -989,7 +988,8 @@ COM,02560,32,02,02D,022,0,NOUVION LE COMTE,Nouvion-le-Comte,Nouvion-le-Comte,021 COM,02561,32,02,02D,022,0,NOUVION LE VINEUX,Nouvion-le-Vineux,Nouvion-le-Vineux,0210, COM,02562,32,02,02D,024,0,NOUVRON VINGRE,Nouvron-Vingré,Nouvron-Vingré,0220, COM,02563,32,02,02D,025,0,NOYALES,Noyales,Noyales,0207, -COM,02564,32,02,02D,024,0,NOYANT ET ACONIN,Noyant-et-Aconin,Noyant-et-Aconin,0217, +COM,02564,32,02,02D,024,0,BERNOY LE CHATEAU,Bernoy-le-Château,Bernoy-le-Château,0217, +COMD,02564,,,,,0,NOYANT ET ACONIN,Noyant-et-Aconin,Noyant-et-Aconin,,02564 COM,02565,32,02,02D,022,1,OEUILLY,Œuilly,Œuilly,0206, COM,02566,32,02,02D,022,1,OGNES,Ognes,Ognes,0203, COM,02567,32,02,02D,025,1,OHIS,Ohis,Ohis,0208, @@ -1479,7 +1479,7 @@ COM,03219,84,03,03D,031,0,SAINT BONNET DE FOUR,Saint-Bonnet-de-Four,Saint-Bonnet COM,03220,84,03,03D,033,0,SAINT BONNET DE ROCHEFORT,Saint-Bonnet-de-Rochefort,Saint-Bonnet-de-Rochefort,0306, COM,03221,84,03,03D,031,0,SAINT BONNET TRONCAIS,Saint-Bonnet-Tronçais,Saint-Bonnet-Tronçais,0302, COM,03222,84,03,03D,031,0,SAINT CAPRAIS,Saint-Caprais,Saint-Caprais,0307, -COM,03223,84,03,03D,033,0,SAINT CHRISTOPHE,Saint-Christophe,Saint-Christophe,0308, +COM,03223,84,03,03D,033,0,SAINT CHRISTOPHE EN BOURBONNAIS,Saint-Christophe-en-Bourbonnais,Saint-Christophe-en-Bourbonnais,0308, COM,03224,84,03,03D,033,0,SAINT CLEMENT,Saint-Clément,Saint-Clément,0308, COM,03225,84,03,03D,031,0,SAINT DESIRE,Saint-Désiré,Saint-Désiré,0307, COM,03226,84,03,03D,033,0,SAINT DIDIER EN DONJON,Saint-Didier-en-Donjon,Saint-Didier-en-Donjon,0305, @@ -3015,6 +3015,7 @@ COM,09053,76,09,09D,091,0,BESTIAC,Bestiac,Bestiac,0901, COM,09054,76,09,09D,093,0,BETCHAT,Betchat,Betchat,0911, COM,09055,76,09,09D,093,0,BETHMALE,Bethmale,Bethmale,0904, COM,09056,76,09,09D,092,0,BEZAC,Bézac,Bézac,0907, +COMD,09056,,,,,0,BEZAC,Bézac,Bézac,,09056 COM,09057,76,09,09D,093,0,BIERT,Biert,Biert,0903, COM,09058,76,09,09D,091,0,BOMPAS,Bompas,Bompas,0912, COM,09059,76,09,09D,093,0,BONAC IRAZEIN,Bonac-Irazein,Bonac-Irazein,0904, @@ -3210,7 +3211,7 @@ COM,09251,76,09,09D,092,0,ROUMENGOUX,Roumengoux,Roumengoux,0906, COM,09252,76,09,09D,091,0,ROUZE,Rouze,Rouze,0901, COM,09253,76,09,09D,093,0,SABARAT,Sabarat,Sabarat,0902, COM,09254,76,09,09D,092,0,SAINT AMADOU,Saint-Amadou,Saint-Amadou,0908, -COM,09255,76,09,09D,092,0,SAINT AMANS,Saint-Amans,Saint-Amans,0907, +COMD,09255,,,,,0,SAINT AMANS,Saint-Amans,Saint-Amans,,09056 COM,09256,76,09,09D,091,0,SAINT BAUZEIL,Saint-Bauzeil,Saint-Bauzeil,0907, COM,09257,76,09,09D,093,0,SAINTE CROIX VOLVESTRE,Sainte-Croix-Volvestre,Sainte-Croix-Volvestre,0911, COM,09258,76,09,09D,091,0,SAINT FELIX DE RIEUTORD,Saint-Félix-de-Rieutord,Saint-Félix-de-Rieutord,0913, @@ -4292,7 +4293,6 @@ COM,12116,76,12,12D,122,1,HUPARLAC,Huparlac,Huparlac,1201, COM,12118,76,12,12D,122,0,LACROIX BARREZ,Lacroix-Barrez,Lacroix-Barrez,1201, COM,12119,76,12,12D,122,0,LAGUIOLE,Laguiole,Laguiole,1201, COM,12120,76,12,12D,122,0,LAISSAC SEVERAC L EGLISE,Laissac-Sévérac l'Église,Laissac-Sévérac l'Église,1209, -COMD,12120,,,,,0,LAISSAC,Laissac,Laissac,,12120 COM,12121,76,12,12D,123,0,LANUEJOULS,Lanuéjouls,Lanuéjouls,1223, COM,12122,76,12,12D,121,0,LAPANOUSE DE CERNON,Lapanouse-de-Cernon,Lapanouse-de-Cernon,1204, COMD,12123,,,,,0,LAPANOUSE,Lapanouse,Lapanouse,,12270 @@ -4446,7 +4446,6 @@ COM,12268,76,12,12D,122,0,SENERGUES,Sénergues,Sénergues,1207, COM,12269,76,12,12D,121,3,SERRE,Serre,La Serre,1204, COM,12270,76,12,12D,122,0,SEVERAC D AVEYRON,Sévérac d'Aveyron,Sévérac d'Aveyron,1220, COMD,12270,,,,,0,SEVERAC LE CHATEAU,Sévérac-le-Château,Sévérac-le-Château,,12270 -COMD,12271,,,,,0,SEVERAC L EGLISE,Sévérac-l'Église,Sévérac-l'Église,,12120 COM,12272,76,12,12D,123,0,SONNAC,Sonnac,Sonnac,1208, COM,12273,76,12,12D,122,0,SOULAGES BONNEVAL,Soulages-Bonneval,Soulages-Bonneval,1201, COM,12274,76,12,12D,121,0,SYLVANES,Sylvanès,Sylvanès,1204, @@ -4617,7 +4616,6 @@ ARM,13216,93,13,13D,133,0,MARSEILLE 16E ARRONDISSEMENT,Marseille 16e Arrondissem COM,14001,28,14,14D,143,1,ABLON,Ablon,Ablon,1415, COMD,14002,,,,,1,ACQUEVILLE,Acqueville,Acqueville,,14150 COM,14003,28,14,14D,141,1,AGY,Agy,Agy,1402, -COMD,14004,,,,,1,AIGNERVILLE,Aignerville,Aignerville,,14281 COM,14005,28,14,14D,142,0,VALAMBRAY,Valambray,Valambray,1424, COMD,14005,,,,,1,AIRAN,Airan,Airan,,14005 COM,14006,28,14,14D,142,1,AMAYE SUR ORNE,Amayé-sur-Orne,Amayé-sur-Orne,1412, @@ -4836,7 +4834,6 @@ COM,14229,28,14,14D,143,0,DOZULE,Dozulé,Dozulé,1404, COM,14230,28,14,14D,143,0,DRUBEC,Drubec,Drubec,1419, COM,14231,28,14,14D,143,0,BEAUFOUR DRUVAL,Beaufour-Druval,Beaufour-Druval,1419, COM,14232,28,14,14D,141,0,DUCY SAINTE MARGUERITE,Ducy-Sainte-Marguerite,Ducy-Sainte-Marguerite,1403, -COMD,14235,,,,,1,ECRAMMEVILLE,Écrammeville,Écrammeville,,14281 COM,14236,28,14,14D,141,1,ELLON,Ellon,Ellon,1402, COM,14237,28,14,14D,142,1,EMIEVILLE,Émiéville,Émiéville,1424, COM,14238,28,14,14D,143,1,ENGLESQUEVILLE EN AUGE,Englesqueville-en-Auge,Englesqueville-en-Auge,1421, @@ -4881,7 +4878,6 @@ COM,14278,28,14,14D,141,0,FONTENAY LE PESNEL,Fontenay-le-Pesnel,Fontenay-le-Pesn COMD,14279,,,,,0,FONTENERMONT,Fontenermont,Fontenermont,,14658 COM,14280,28,14,14D,143,0,FORMENTIN,Formentin,Formentin,1419, COM,14281,28,14,14D,141,0,FORMIGNY LA BATAILLE,Formigny La Bataille,Formigny La Bataille,1423, -COMD,14281,,,,,0,FORMIGNY,Formigny,Formigny,,14281 COM,14282,28,14,14D,141,0,FOULOGNES,Foulognes,Foulognes,1423, COM,14283,28,14,14D,142,0,FOURCHES,Fourches,Fourches,1413, COM,14284,28,14,14D,142,0,FOURNEAUX LE VAL,Fourneaux-le-Val,Fourneaux-le-Val,1413, @@ -4979,7 +4975,6 @@ COM,14378,28,14,14D,141,0,LONGUEVILLE,Longueville,Longueville,1423, COM,14379,28,14,14D,144,0,LONGVILLERS,Longvillers,Longvillers,1401, COM,14380,28,14,14D,141,0,LOUCELLES,Loucelles,Loucelles,1403, COM,14381,28,14,14D,142,0,LOUVAGNY,Louvagny,Louvagny,1413, -COMD,14382,,,,,0,LOUVIERES,Louvières,Louvières,,14281 COM,14383,28,14,14D,142,0,LOUVIGNY,Louvigny,Louvigny,1409, COM,14384,28,14,14D,142,0,LUC SUR MER,Luc-sur-Mer,Luc-sur-Mer,1411, COM,14385,28,14,14D,141,0,MAGNY EN BESSIN,Magny-en-Bessin,Magny-en-Bessin,1402, @@ -5269,7 +5264,6 @@ COM,14679,28,14,14D,141,0,SUBLES,Subles,Subles,1402, COM,14680,28,14,14D,141,0,SULLY,Sully,Sully,1402, COM,14681,28,14,14D,141,0,SURRAIN,Surrain,Surrain,1423, COM,14682,28,14,14D,143,0,SURVILLE,Surville,Surville,1421, -COMA,14683,,,,,0,TAILLEVILLE,Tailleville,Tailleville,,14228 COM,14684,28,14,14D,141,0,TESSEL,Tessel,Tessel,1403, COM,14685,28,14,14D,142,0,THAON,Thaon,Thaon,1403, COMD,14686,,,,,2,THEIL BOCAGE,Theil-Bocage,Le Theil-Bocage,,14726 @@ -5757,7 +5751,7 @@ COM,16136,75,16,16D,163,3,FAYE,Faye,La Faye,1608, COM,16137,75,16,16D,161,0,FEUILLADE,Feuillade,Feuillade,1619, COM,16138,75,16,16D,161,0,FLEAC,Fléac,Fléac,1601, COM,16139,75,16,16D,162,0,FLEURAC,Fleurac,Fleurac,1615, -COM,16140,75,16,16D,163,0,FONTCLAIREAU,Fontclaireau,Fontclaireau,1605, +COMD,16140,,,,,0,FONTCLAIREAU,Fontclaireau,Fontclaireau,,16206 COM,16141,75,16,16D,163,0,FONTENILLE,Fontenille,Fontenille,1605, COM,16142,75,16,16D,163,3,FORET DE TESSE,Forêt-de-Tessé,La Forêt-de-Tessé,1608, COM,16143,75,16,16D,161,0,FOUQUEBRUNE,Fouquebrune,Fouquebrune,1617, @@ -5774,7 +5768,6 @@ COM,16153,75,16,16D,162,0,MAINXE GONDEVILLE,Mainxe-Gondeville,Mainxe-Gondeville, COMD,16153,,,,,0,GONDEVILLE,Gondeville,Gondeville,,16153 COM,16154,75,16,16D,161,0,GOND PONTOUVRE,Gond-Pontouvre,Gond-Pontouvre,1614, COM,16155,75,16,16D,163,4,GOURS,Gours,Les Gours,1608, -COMD,16156,,,,,0,GOURVILLE,Gourville,Gourville,,16286 COM,16157,75,16,16D,163,2,GRAND MADIEU,Grand-Madieu,Le Grand-Madieu,1606, COM,16158,75,16,16D,161,0,GRASSAC,Grassac,Grassac,1619, COM,16160,75,16,16D,162,0,GUIMPS,Guimps,Guimps,1609, @@ -5825,7 +5818,8 @@ COM,16203,75,16,16D,161,0,MAINZAC,Mainzac,Mainzac,1619, COM,16204,75,16,16D,162,0,BELLEVIGNE,Bellevigne,Bellevigne,1607, COMD,16204,,,,,0,MALAVILLE,Malaville,Malaville,,16204 COM,16205,75,16,16D,163,0,MANOT,Manot,Manot,1610, -COM,16206,75,16,16D,163,0,MANSLE,Mansle,Mansle,1605, +COM,16206,75,16,16D,163,0,MANSLE LES FONTAINES,Mansle-les-Fontaines,Mansle-les-Fontaines,1605, +COMD,16206,,,,,0,MANSLE,Mansle,Mansle,,16206 COM,16207,75,16,16D,162,0,MARCILLAC LANVILLE,Marcillac-Lanville,Marcillac-Lanville,1618, COM,16208,75,16,16D,162,0,MAREUIL,Mareuil,Mareuil,1618, COM,16209,75,16,16D,161,0,MARILLAC LE FRANC,Marillac-le-Franc,Marillac-le-Franc,1619, @@ -5975,7 +5969,6 @@ COM,16366,75,16,16D,162,0,SEGONZAC,Segonzac,Segonzac,1607, COM,16368,75,16,16D,161,0,SERS,Sers,Sers,1604, COM,16369,75,16,16D,162,0,SIGOGNE,Sigogne,Sigogne,1615, COM,16370,75,16,16D,161,0,SIREUIL,Sireuil,Sireuil,1618, -COMD,16371,,,,,0,SONNEVILLE,Sonneville,Sonneville,,16286 COM,16372,75,16,16D,161,0,SOUFFRIGNAC,Souffrignac,Souffrignac,1619, COM,16373,75,16,16D,163,0,SOUVIGNE,Souvigné,Souvigné,1608, COM,16374,75,16,16D,161,0,SOYAUX,Soyaux,Soyaux,1603, @@ -6157,7 +6150,7 @@ COM,17128,75,17,17D,174,0,COURCOURY,Courcoury,Courcoury,1724, COM,17129,75,17,17D,171,0,COURPIGNAC,Courpignac,Courpignac,1712, COM,17130,75,17,17D,171,0,COUX,Coux,Coux,1727, COM,17131,75,17,17D,174,0,COZES,Cozes,Cozes,1721, -COM,17132,75,17,17D,173,0,CRAMCHABAN,Cramchaban,Cramchaban,1709, +COM,17132,75,17,17D,173,0,CRAM CHABAN,Cram-Chaban,Cram-Chaban,1709, COM,17133,75,17,17D,174,0,CRAVANS,Cravans,Cravans,1721, COM,17134,75,17,17D,174,0,CRAZANNES,Crazannes,Crazannes,1719, COM,17135,75,17,17D,175,0,CRESSE,Cressé,Cressé,1711, @@ -7975,6 +7968,7 @@ COM,22180,53,22,22D,221,0,PLELAN LE PETIT,Plélan-le-Petit,Plélan-le-Petit,2214 COM,22181,53,22,22D,222,0,PLELAUFF,Plélauff,Plélauff,2223, COM,22182,53,22,22D,222,0,PLELO,Plélo,Plélo,2215, COM,22183,53,22,22D,224,0,PLEMET,Plémet,Plémet,2209, +COMD,22183,,,,,0,PLEMET,Plémet,Plémet,,22183 COM,22184,53,22,22D,224,0,PLEMY,Plémy,Plémy,2213, COM,22185,53,22,22D,224,0,PLENEE JUGON,Plénée-Jugon,Plénée-Jugon,2216, COM,22186,53,22,22D,224,0,PLENEUF VAL ANDRE,Pléneuf-Val-André,Pléneuf-Val-André,2217, @@ -8504,7 +8498,7 @@ COM,24061,75,24,24D,243,0,BOURROU,Bourrou,Bourrou,2412, COM,24062,75,24,24D,243,0,BOUTEILLES SAINT SEBASTIEN,Bouteilles-Saint-Sébastien,Bouteilles-Saint-Sébastien,2416, COM,24063,75,24,24D,244,0,BOUZIC,Bouzic,Bouzic,2423, COM,24064,75,24,24D,242,0,BRANTOME EN PERIGORD,Brantôme en Périgord,Brantôme en Périgord,2403, -COMD,24064,,,,,0,BRANTOME EN PERIGORD,Brantôme en Périgord,Brantôme en Périgord,,24064 +COMD,24064,,,,,0,BRANTOME,Brantôme,Brantôme,,24064 COMD,24065,,,,,0,BREUILH,Breuilh,Breuilh,,24312 COM,24066,75,24,24D,242,0,BROUCHAUD,Brouchaud,Brouchaud,2406, COM,24067,75,24,24D,244,2,BUGUE,Bugue,Le Bugue,2425, @@ -8865,6 +8859,7 @@ COM,24426,75,24,24D,243,0,SAINT JEAN D ESTISSAC,Saint-Jean-d'Estissac,Saint-Jean COMD,24427,,,,,0,SAINT JEAN D EYRAUD,Saint-Jean-d'Eyraud,Saint-Jean-d'Eyraud,,24259 COM,24428,75,24,24D,242,0,SAINT JORY DE CHALAIS,Saint-Jory-de-Chalais,Saint-Jory-de-Chalais,2421, COM,24429,75,24,24D,242,0,SAINT JORY LAS BLOUX,Saint-Jory-las-Bloux,Saint-Jory-las-Bloux,2406, +COMD,24430,,,,,0,SAINT JULIEN DE BOURDEILLES,Saint-Julien-de-Bourdeilles,Saint-Julien-de-Bourdeilles,,24064 COMD,24431,,,,,0,SAINT JULIEN DE CREMPSE,Saint-Julien-de-Crempse,Saint-Julien-de-Crempse,,24259 COM,24432,75,24,24D,244,0,SAINT JULIEN DE LAMPON,Saint-Julien-de-Lampon,Saint-Julien-de-Lampon,2420, COMD,24433,,,,,0,SAINT JULIEN D EYMET,Saint-Julien-d'Eymet,Saint-Julien-d'Eymet,,24423 @@ -10016,7 +10011,6 @@ COM,27021,28,27,27D,272,1,ASNIERES,Asnières,Asnières,2703, COM,27022,28,27,27D,271,2,VAL D HAZEY,Val d'Hazey,Le Val d'Hazey,2712, COMD,27022,,,,,1,AUBEVOYE,Aubevoye,Aubevoye,,27022 COM,27023,28,27,27D,273,1,AULNAY SUR ITON,Aulnay-sur-Iton,Aulnay-sur-Iton,2708, -COMD,27024,,,,,2,RONCENAY AUTHENAY,Roncenay-Authenay,Le Roncenay-Authenay,,27198 COM,27025,28,27,27D,271,1,AUTHEUIL AUTHOUILLET,Autheuil-Authouillet,Autheuil-Authouillet,2712, COM,27026,28,27,27D,271,1,AUTHEVERNES,Authevernes,Authevernes,2713, COM,27027,28,27,27D,273,4,AUTHIEUX,Authieux,Les Authieux,2720, @@ -10049,7 +10043,6 @@ COM,27054,28,27,27D,272,0,BEMECOURT,Bémécourt,Bémécourt,2706, COM,27055,28,27,27D,272,0,BERENGEVILLE LA CAMPAGNE,Bérengeville-la-Campagne,Bérengeville-la-Campagne,2715, COM,27056,28,27,27D,272,0,BERNAY,Bernay,Bernay,2702, COM,27057,28,27,27D,272,0,BERNIENVILLE,Bernienville,Bernienville,2715, -COM,27058,28,27,27D,271,4,TROIS LACS,Trois Lacs,Les Trois Lacs,2712, COM,27059,28,27,27D,271,0,BERNOUVILLE,Bernouville,Bernouville,2713, COMD,27060,,,,,0,BERTHENONVILLE,Berthenonville,Berthenonville,,27213 COM,27061,28,27,27D,272,0,BERTHOUVILLE,Berthouville,Berthouville,2707, @@ -10081,10 +10074,8 @@ COMD,27085,,,,,0,BOSC BENARD CRESCY,Bosc-Bénard-Crescy,Bosc-Bénard-Crescy,,270 COMD,27088,,,,,0,BOSC RENOULT EN OUCHE,Bosc-Renoult-en-Ouche,Bosc-Renoult-en-Ouche,,27049 COM,27089,28,27,27D,272,0,THENOUVILLE,Thénouville,Thénouville,2705, COM,27090,28,27,27D,272,0,BOSROUMOIS,Bosroumois,Bosroumois,2705, -COMD,27090,,,,,2,BOSC ROGER EN ROUMOIS,Bosc-Roger-en-Roumois,Le Bosc-Roger-en-Roumois,,27090 COM,27091,28,27,27D,272,0,BOSGOUET,Bosgouet,Bosgouet,2704, COMD,27092,,,,,0,BOSGUERARD DE MARCOUVILLE,Bosguérard-de-Marcouville,Bosguérard-de-Marcouville,,27062 -COMD,27093,,,,,0,BOSNORMAND,Bosnormand,Bosnormand,,27090 COM,27094,28,27,27D,271,0,BOSQUENTIN,Bosquentin,Bosquentin,2719, COM,27095,28,27,27D,272,0,BOSROBERT,Bosrobert,Bosrobert,2707, COM,27096,28,27,27D,272,4,BOTTEREAUX,Bottereaux,Les Bottereaux,2706, @@ -10180,7 +10171,6 @@ COM,27188,28,27,27D,271,0,CRIQUEBEUF SUR SEINE,Criquebeuf-sur-Seine,Criquebeuf-s COM,27189,28,27,27D,273,3,CROISILLE,Croisille,La Croisille,2708, COM,27190,28,27,27D,271,0,CROISY SUR EURE,Croisy-sur-Eure,Croisy-sur-Eure,2716, COM,27191,28,27,27D,271,0,CLEF VALLEE D EURE,Clef Vallée d'Eure,Clef Vallée d'Eure,2712, -COMD,27191,,,,,3,CROIX SAINT LEUFROY,Croix-Saint-Leufroy,La Croix-Saint-Leufroy,,27191 COM,27192,28,27,27D,272,0,CROSVILLE LA VIEILLE,Crosville-la-Vieille,Crosville-la-Vieille,2715, COM,27193,28,27,27D,273,0,CROTH,Croth,Croth,2720, COM,27194,28,27,27D,271,0,CUVERVILLE,Cuverville,Cuverville,2701, @@ -10188,7 +10178,6 @@ COMD,27195,,,,,0,DAME MARIE,Dame-Marie,Dame-Marie,,27578 COM,27196,28,27,27D,271,4,DAMPS,Damps,Les Damps,2718, COMD,27197,,,,,0,DAMPSMESNIL,Dampsmesnil,Dampsmesnil,,27213 COM,27198,28,27,27D,272,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton,2788, -COMD,27198,,,,,0,DAMVILLE,Damville,Damville,,27198 COM,27199,28,27,27D,271,0,DANGU,Dangu,Dangu,2713, COM,27200,28,27,27D,273,0,DARDEZ,Dardez,Dardez,2710, COM,27201,28,27,27D,272,0,DAUBEUF LA CAMPAGNE,Daubeuf-la-Campagne,Daubeuf-la-Campagne,2715, @@ -10201,7 +10190,6 @@ COM,27207,28,27,27D,272,0,DRUCOURT,Drucourt,Drucourt,2703, COM,27208,28,27,27D,272,0,DURANVILLE,Duranville,Duranville,2703, COM,27209,28,27,27D,272,1,ECAQUELON,Écaquelon,Écaquelon,2717, COM,27210,28,27,27D,272,1,ECARDENVILLE LA CAMPAGNE,Écardenville-la-Campagne,Écardenville-la-Campagne,2707, -COMD,27211,,,,,1,ECARDENVILLE SUR EURE,Écardenville-sur-Eure,Écardenville-sur-Eure,,27191 COM,27212,28,27,27D,272,1,ECAUVILLE,Écauville,Écauville,2715, COM,27213,28,27,27D,271,0,VEXIN SUR EPTE,Vexin-sur-Epte,Vexin-sur-Epte,2701, COMD,27213,,,,,1,ECOS,Écos,Écos,,27213 @@ -10237,7 +10225,6 @@ COM,27246,28,27,27D,271,0,FLEURY SUR ANDELLE,Fleury-sur-Andelle,Fleury-sur-Andel COM,27247,28,27,27D,271,0,FLIPOU,Flipou,Flipou,2719, COM,27248,28,27,27D,272,0,FOLLEVILLE,Folleville,Folleville,2703, COM,27249,28,27,27D,271,0,FONTAINE BELLENGER,Fontaine-Bellenger,Fontaine-Bellenger,2712, -COMD,27250,,,,,0,FONTAINE HEUDEBOURG,Fontaine-Heudebourg,Fontaine-Heudebourg,,27191 COM,27251,28,27,27D,272,0,FONTAINE L ABBE,Fontaine-l'Abbé,Fontaine-l'Abbé,2702, COM,27252,28,27,27D,272,0,FONTAINE LA LOUVET,Fontaine-la-Louvet,Fontaine-la-Louvet,2703, COMD,27253,,,,,0,FONTAINE LA SORET,Fontaine-la-Soret,Fontaine-la-Soret,,27425 @@ -10280,12 +10267,10 @@ COM,27289,28,27,27D,272,3,GOULAFRIERE,Goulafrière,La Goulafrière,2706, COM,27290,28,27,27D,272,0,GOUPIL OTHON,Goupil-Othon,Goupil-Othon,2707, COM,27291,28,27,27D,272,0,GOURNAY LE GUERIN,Gournay-le-Guérin,Gournay-le-Guérin,2722, COMD,27292,,,,,0,GOUTTIERES,Gouttières,Gouttières,,27049 -COMD,27293,,,,,0,GOUVILLE,Gouville,Gouville,,27198 COM,27294,28,27,27D,271,0,VAL D ORGER,Val d'Orger,Val d'Orger,2719, COMD,27294,,,,,0,GRAINVILLE,Grainville,Grainville,,27294 COM,27295,28,27,27D,272,0,GRAND CAMP,Grand-Camp,Grand-Camp,2706, COMD,27296,,,,,0,GRANCHAIN,Granchain,Granchain,,27049 -COMD,27297,,,,,0,GRANDVILLIERS,Grandvilliers,Grandvilliers,,27198 COM,27298,28,27,27D,272,0,GRAVERON SEMERVILLE,Graveron-Sémerville,Graveron-Sémerville,2715, COM,27299,28,27,27D,273,0,GRAVIGNY,Gravigny,Gravigny,2710, COM,27300,28,27,27D,272,0,GROSLEY SUR RISLE,Grosley-sur-Risle,Grosley-sur-Risle,2707, @@ -10370,7 +10355,6 @@ COM,27383,28,27,27D,272,0,MANDRES,Mandres,Mandres,2722, COM,27384,28,27,27D,272,0,MANNEVILLE LA RAOULT,Manneville-la-Raoult,Manneville-la-Raoult,2703, COM,27385,28,27,27D,272,0,MANNEVILLE SUR RISLE,Manneville-sur-Risle,Manneville-sur-Risle,2717, COM,27386,28,27,27D,271,2,MANOIR,Manoir,Le Manoir,2718, -COMD,27387,,,,,0,MANTHELON,Manthelon,Manthelon,,27198 COM,27388,28,27,27D,272,0,MARAIS VERNIER,Marais-Vernier,Marais-Vernier,2704, COM,27389,28,27,27D,272,0,MARBEUF,Marbeuf,Marbeuf,2715, COM,27390,28,27,27D,273,0,MARCILLY LA CAMPAGNE,Marcilly-la-Campagne,Marcilly-la-Campagne,2722, @@ -10398,7 +10382,6 @@ COMD,27412,,,,,0,MONTAURE,Montaure,Montaure,,27412 COM,27413,28,27,27D,272,0,MONTFORT SUR RISLE,Montfort-sur-Risle,Montfort-sur-Risle,2717, COM,27414,28,27,27D,272,0,MONTREUIL L ARGILLE,Montreuil-l'Argillé,Montreuil-l'Argillé,2706, COM,27415,28,27,27D,272,0,MORAINVILLE JOUVEAUX,Morainville-Jouveaux,Morainville-Jouveaux,2703, -COMD,27416,,,,,0,BUIS SUR DAMVILLE,Buis-sur-Damville,Buis-sur-Damville,,27198 COM,27417,28,27,27D,271,0,MORGNY,Morgny,Morgny,2713, COM,27418,28,27,27D,272,0,MORSAN,Morsan,Morsan,2707, COM,27419,28,27,27D,273,0,MOUETTES,Mouettes,Mouettes,2720, @@ -10473,7 +10456,6 @@ COM,27487,28,27,27D,271,0,RADEPONT,Radepont,Radepont,2719, COM,27488,28,27,27D,271,0,RENNEVILLE,Renneville,Renneville,2719, COM,27489,28,27,27D,273,0,REUILLY,Reuilly,Reuilly,2710, COM,27490,28,27,27D,271,0,RICHEVILLE,Richeville,Richeville,2713, -COMD,27491,,,,,0,ROMAN,Roman,Roman,,27198 COM,27492,28,27,27D,272,0,ROMILLY LA PUTHENAYE,Romilly-la-Puthenaye,Romilly-la-Puthenaye,2707, COM,27493,28,27,27D,271,0,ROMILLY SUR ANDELLE,Romilly-sur-Andelle,Romilly-sur-Andelle,2719, COM,27495,28,27,27D,271,3,ROQUETTE,Roquette,La Roquette,2701, @@ -10484,7 +10466,6 @@ COMD,27499,,,,,3,ROUSSIERE,Roussière,La Roussière,,27049 COM,27500,28,27,27D,272,0,ROUTOT,Routot,Routot,2704, COM,27501,28,27,27D,271,0,ROUVRAY,Rouvray,Rouvray,2716, COM,27502,28,27,27D,272,0,RUGLES,Rugles,Rugles,2706, -COMD,27503,,,,,2,SACQ,Sacq,Le Sacq,,27198 COM,27504,28,27,27D,273,0,SACQUENVILLE,Sacquenville,Sacquenville,2715, COM,27505,28,27,27D,272,0,SAINT AGNAN DE CERNIERES,Saint-Agnan-de-Cernières,Saint-Agnan-de-Cernières,2706, COMD,27506,,,,,0,SAINT AMAND DES HAUTES TERRES,Saint-Amand-des-Hautes-Terres,Saint-Amand-des-Hautes-Terres,,27011 @@ -10639,6 +10620,7 @@ COM,27671,28,27,27D,272,0,VANNECROCQ,Vannecrocq,Vannecrocq,2703, COM,27672,28,27,27D,271,0,VASCOEUIL,Vascœuil,Vascœuil,2719, COM,27673,28,27,27D,271,0,VATTEVILLE,Vatteville,Vatteville,2701, COM,27674,28,27,27D,271,0,VAUX SUR EURE,Vaux-sur-Eure,Vaux-sur-Eure,2716, +COM,27676,28,27,27D,271,4,TROIS LACS,Trois Lacs,Les Trois Lacs,2712, COM,27677,28,27,27D,272,0,VENON,Venon,Venon,2715, COM,27678,28,27,27D,273,4,VENTES,Ventes,Les Ventes,2708, COM,27679,28,27,27D,272,0,VERNEUIL D AVRE ET D ITON,Verneuil d'Avre et d'Iton,Verneuil d'Avre et d'Iton,2786, @@ -10675,7 +10657,7 @@ COM,28008,24,28,28D,283,1,ARDELLES,Ardelles,Ardelles,2814, COM,28009,24,28,28D,281,1,ARDELU,Ardelu,Ardelu,2802, COM,28010,24,28,28D,284,1,ARGENVILLIERS,Argenvilliers,Argenvilliers,2813, COMA,28011,,,,,1,ARMENONVILLE LES GATINEAUX,Armenonville-les-Gâtineaux,Armenonville-les-Gâtineaux,,28023 -COM,28012,24,28,28D,282,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou,2803, +COM,28012,24,28,28D,282,0,VALD YERRE,Vald'Yerre,Vald'Yerre,2803, COM,28013,24,28,28D,281,1,AUNAY SOUS AUNEAU,Aunay-sous-Auneau,Aunay-sous-Auneau,2802, COM,28014,24,28,28D,283,1,AUNAY SOUS CRECY,Aunay-sous-Crécy,Aunay-sous-Crécy,2808, COM,28015,24,28,28D,281,1,AUNEAU BLEURY SAINT SYMPHORIEN,Auneau-Bleury-Saint-Symphorien,Auneau-Bleury-Saint-Symphorien,2802, @@ -12939,7 +12921,7 @@ COM,32285,76,32,32D,323,0,MONTESQUIOU,Montesquiou,Montesquiou,3216, COM,32286,76,32,32D,322,0,MONTESTRUC SUR GERS,Montestruc-sur-Gers,Montestruc-sur-Gers,3209, COM,32287,76,32,32D,323,0,MONTIES,Monties,Monties,3203, COM,32288,76,32,32D,321,0,MONTIRON,Montiron,Montiron,3205, -COM,32289,76,32,32D,321,0,MONTPEZAT,Montpézat,Montpézat,3217, +COM,32289,76,32,32D,321,0,MONTPEZAT,Montpezat,Montpezat,3217, COM,32290,76,32,32D,322,0,MONTREAL,Montréal,Montréal,3202, COM,32291,76,32,32D,322,0,MORMES,Mormès,Mormès,3212, COM,32292,76,32,32D,322,0,MOUCHAN,Mouchan,Mouchan,3202, @@ -13116,7 +13098,7 @@ COM,32461,76,32,32D,323,0,VERLUS,Verlus,Verlus,3201, COM,32462,76,32,32D,321,0,VIC FEZENSAC,Vic-Fezensac,Vic-Fezensac,3208, COM,32463,76,32,32D,323,0,VIELLA,Viella,Viella,3201, COM,32464,76,32,32D,323,0,VILLECOMTAL SUR ARROS,Villecomtal-sur-Arros,Villecomtal-sur-Arros,3215, -COM,32465,76,32,32D,321,0,VILLEFRANCHE,Villefranche,Villefranche,3217, +COM,32465,76,32,32D,321,0,VILLEFRANCHE DASTARAC,Villefranche-d’Astarac,Villefranche-d’Astarac,3217, COM,32466,76,32,32D,323,0,VIOZAN,Viozan,Viozan,3215, COM,32467,76,32,32D,321,0,SAINT CAPRAIS,Saint-Caprais,Saint-Caprais,3205, COM,32468,76,32,32D,323,1,AUSSOS,Aussos,Aussos,3203, @@ -13200,7 +13182,7 @@ COM,33077,75,33,33D,332,0,CABANAC ET VILLAGRAINS,Cabanac-et-Villagrains,Cabanac- COM,33078,75,33,33D,335,0,CABARA,Cabara,Cabara,3310, COM,33079,75,33,33D,335,0,CADARSAC,Cadarsac,Cadarsac,3316, COM,33080,75,33,33D,332,0,CADAUJAC,Cadaujac,Cadaujac,3308, -COM,33081,75,33,33D,333,0,CADILLAC,Cadillac,Cadillac,3312, +COM,33081,75,33,33D,333,0,CADILLAC SUR GARONNE,Cadillac-sur-Garonne,Cadillac-sur-Garonne,3312, COM,33082,75,33,33D,335,0,CADILLAC EN FRONSADAIS,Cadillac-en-Fronsadais,Cadillac-en-Fronsadais,3316, COM,33083,75,33,33D,332,0,CAMARSAC,Camarsac,Camarsac,3311, COM,33084,75,33,33D,332,0,CAMBES,Cambes,Cambes,3311, @@ -14737,7 +14719,6 @@ COM,37116,24,37,37D,373,4,HERMITES,Hermites,Les Hermites,3704, COM,37117,24,37,37D,371,1,HOMMES,Hommes,Hommes,3708, COM,37118,24,37,37D,371,1,HUISMES,Huismes,Huismes,3705, COM,37119,24,37,37D,371,5,ILE BOUCHARD,Île-Bouchard,L'Île-Bouchard,3713, -COMD,37120,,,,,1,INGRANDES DE TOURAINE,Ingrandes-de-Touraine,Ingrandes-de-Touraine,,37232 COM,37121,24,37,37D,371,0,JAULNAY,Jaulnay,Jaulnay,3713, COM,37122,24,37,37D,372,0,JOUE LES TOURS,Joué-lès-Tours,Joué-lès-Tours,3707, COM,37123,24,37,37D,371,0,LANGEAIS,Langeais,Langeais,3708, @@ -14842,13 +14823,11 @@ COM,37223,24,37,37D,371,0,SAINT LAURENT DE LIN,Saint-Laurent-de-Lin,Saint-Lauren COM,37224,24,37,37D,373,0,SAINT LAURENT EN GATINES,Saint-Laurent-en-Gâtines,Saint-Laurent-en-Gâtines,3704, COM,37225,24,37,37D,373,0,SAINT MARTIN LE BEAU,Saint-Martin-le-Beau,Saint-Martin-le-Beau,3703, COM,37226,24,37,37D,371,0,SAINTE MAURE DE TOURAINE,Sainte-Maure-de-Touraine,Sainte-Maure-de-Touraine,3713, -COMD,37227,,,,,0,SAINT MICHEL SUR LOIRE,Saint-Michel-sur-Loire,Saint-Michel-sur-Loire,,37232 COM,37228,24,37,37D,371,0,SAINT NICOLAS DE BOURGUEIL,Saint-Nicolas-de-Bourgueil,Saint-Nicolas-de-Bourgueil,3708, COM,37229,24,37,37D,373,0,SAINT NICOLAS DES MOTETS,Saint-Nicolas-des-Motets,Saint-Nicolas-des-Motets,3704, COM,37230,24,37,37D,373,0,SAINT OUEN LES VIGNES,Saint-Ouen-les-Vignes,Saint-Ouen-les-Vignes,3701, COM,37231,24,37,37D,371,0,SAINT PATERNE RACAN,Saint-Paterne-Racan,Saint-Paterne-Racan,3704, COM,37232,24,37,37D,371,0,COTEAUX SUR LOIRE,Coteaux-sur-Loire,Coteaux-sur-Loire,3708, -COMD,37232,,,,,0,SAINT PATRICE,Saint-Patrice,Saint-Patrice,,37232 COM,37233,24,37,37D,372,0,SAINT PIERRE DES CORPS,Saint-Pierre-des-Corps,Saint-Pierre-des-Corps,3714, COM,37234,24,37,37D,373,0,SAINT QUENTIN SUR INDROIS,Saint-Quentin-sur-Indrois,Saint-Quentin-sur-Indrois,3709, COM,37236,24,37,37D,373,0,SAINT REGLE,Saint-Règle,Saint-Règle,3701, @@ -15034,7 +15013,6 @@ COM,38139,84,38,38D,382,0,CREYS MEPIEU,Creys-Mépieu,Creys-Mépieu,3817, COM,38140,84,38,38D,381,0,CROLLES,Crolles,Crolles,3818, COM,38141,84,38,38D,383,0,CULIN,Culin,Culin,3814, COM,38144,84,38,38D,383,0,DIEMOZ,Diémoz,Diémoz,3826, -COMD,38145,,,,,0,DIONAY,Dionay,Dionay,,38359 COM,38146,84,38,38D,382,0,DIZIMIEU,Dizimieu,Dizimieu,3804, COM,38147,84,38,38D,382,0,DOISSIN,Doissin,Doissin,3808, COM,38148,84,38,38D,382,0,DOLOMIEU,Dolomieu,Dolomieu,3824, @@ -15124,7 +15102,7 @@ COM,38239,84,38,38D,381,0,MOIRANS,Moirans,Moirans,3825, COM,38240,84,38,38D,383,0,MOISSIEU SUR DOLON,Moissieu-sur-Dolon,Moissieu-sur-Dolon,3821, COM,38241,84,38,38D,381,0,MONESTIER D AMBEL,Monestier-d'Ambel,Monestier-d'Ambel,3815, COM,38242,84,38,38D,381,0,MONESTIER DE CLERMONT,Monestier-de-Clermont,Monestier-de-Clermont,3815, -COM,38243,84,38,38D,381,2,MONESTIER DU PERCY,Monestier-du-Percy,Le Monestier-du-Percy,3815, +COM,38243,84,38,38D,381,0,MONESTIER DU PERCY,Monestier-du-Percy,Monestier-du-Percy,3815, COM,38244,84,38,38D,383,0,MONSTEROUX MILIEU,Monsteroux-Milieu,Monsteroux-Milieu,3821, COM,38245,84,38,38D,381,0,MONTAGNE,Montagne,Montagne,3823, COM,38246,84,38,38D,382,0,MONTAGNIEU,Montagnieu,Montagnieu,3824, @@ -15143,7 +15121,6 @@ COM,38258,84,38,38D,381,0,MONT SAINT MARTIN,Mont-Saint-Martin,Mont-Saint-Martin, COM,38259,84,38,38D,383,0,MONTSEVEROUX,Montseveroux,Montseveroux,3821, COM,38260,84,38,38D,382,0,MORAS,Moras,Moras,3804, COM,38261,84,38,38D,382,0,MORESTEL,Morestel,Morestel,3817, -COMD,38262,,,,,0,MORETEL DE MAILLES,Morêtel-de-Mailles,Morêtel-de-Mailles,,38439 COM,38263,84,38,38D,381,0,MORETTE,Morette,Morette,3823, COM,38264,84,38,38D,381,3,MORTE,Morte,La Morte,3819, COM,38265,84,38,38D,381,3,MOTTE D AVEILLANS,Motte-d'Aveillans,La Motte-d'Aveillans,3815, @@ -15184,7 +15161,7 @@ COMD,38297,,,,,0,PASSINS,Passins,Passins,,38297 COM,38298,84,38,38D,383,2,PEAGE DE ROUSSILLON,Péage-de-Roussillon,Le Péage-de-Roussillon,3821, COM,38299,84,38,38D,381,0,PELLAFOL,Pellafol,Pellafol,3815, COM,38300,84,38,38D,383,0,PENOL,Penol,Penol,3801, -COM,38301,84,38,38D,381,0,PERCY,Percy,Percy,3815, +COM,38301,84,38,38D,381,2,PERCY,Percy,Le Percy,3815, COMD,38302,,,,,2,PERIER,Périer,Le Périer,,38073 COM,38303,84,38,38D,381,3,PIERRE,Pierre,La Pierre,3813, COM,38304,84,38,38D,381,0,PIERRE CHATEL,Pierre-Châtel,Pierre-Châtel,3815, @@ -15457,7 +15434,6 @@ COM,39015,27,39,39D,392,1,ARDON,Ardon,Ardon,3904, COM,39016,27,39,39D,392,1,ARINTHOD,Arinthod,Arinthod,3909, COM,39017,27,39,39D,392,1,ARLAY,Arlay,Arlay,3903, COM,39018,27,39,39D,392,1,AROMAS,Aromas,Aromas,3909, -COMD,39018,,,,,1,AROMAS,Aromas,Aromas,,39018 COM,39019,27,39,39D,391,4,ARSURES,Arsures,Les Arsures,3901, COM,39020,27,39,39D,392,1,ARSURE ARSURETTE,Arsure-Arsurette,Arsure-Arsurette,3915, COM,39021,27,39,39D,392,3,CHAILLEUSE,Chailleuse,La Chailleuse,3913, @@ -15950,7 +15926,6 @@ COM,39560,27,39,39D,393,0,VILLARD SAINT SAUVEUR,Villard-Saint-Sauveur,Villard-Sa COM,39561,27,39,39D,393,0,VILLARDS D HERIA,Villards-d'Héria,Villards-d'Héria,3909, COMD,39562,,,,,0,VILLARD SUR BIENNE,Villard-sur-Bienne,Villard-sur-Bienne,,39130 COM,39565,27,39,39D,391,0,VILLENEUVE D AVAL,Villeneuve-d'Aval,Villeneuve-d'Aval,3910, -COMD,39566,,,,,0,VILLENEUVE LES CHARNOD,Villeneuve-lès-Charnod,Villeneuve-lès-Charnod,,39018 COM,39567,27,39,39D,392,0,VILLENEUVE SOUS PYMONT,Villeneuve-sous-Pymont,Villeneuve-sous-Pymont,3907, COM,39568,27,39,39D,391,0,VILLERSERINE,Villerserine,Villerserine,3903, COM,39569,27,39,39D,391,0,VILLERS FARLAY,Villers-Farlay,Villers-Farlay,3910, @@ -17264,7 +17239,7 @@ COM,44062,52,44,44D,445,2,GAVRE,Gâvre,Le Gâvre,4403, COM,44063,52,44,44D,442,0,GETIGNE,Gétigné,Gétigné,4407, COM,44064,52,44,44D,442,0,GORGES,Gorges,Gorges,4407, COM,44065,52,44,44D,445,0,GRAND AUVERNE,Grand-Auverné,Grand-Auverné,4406, -COM,44066,52,44,44D,445,0,GRANDCHAMPS DES FONTAINES,Grandchamps-des-Fontaines,Grandchamps-des-Fontaines,4405, +COM,44066,52,44,44D,445,0,GRANDCHAMP DES FONTAINES,Grandchamp-des-Fontaines,Grandchamp-des-Fontaines,4405, COM,44067,52,44,44D,445,0,GUEMENE PENFAO,Guémené-Penfao,Guémené-Penfao,4408, COM,44068,52,44,44D,443,0,GUENROUET,Guenrouet,Guenrouet,4419, COM,44069,52,44,44D,443,0,GUERANDE,Guérande,Guérande,4409, @@ -17680,7 +17655,7 @@ COM,45255,24,45,45D,451,0,PREFONTAINES,Préfontaines,Préfontaines,4504, COM,45256,24,45,45D,451,0,PRESNOY,Presnoy,Presnoy,4508, COM,45257,24,45,45D,451,0,PRESSIGNY LES PINS,Pressigny-les-Pins,Pressigny-les-Pins,4508, COM,45258,24,45,45D,453,0,PUISEAUX,Puiseaux,Puiseaux,4509, -COM,45259,24,45,45D,451,0,QUIERS SUR BEZONDE,Quiers-sur-Bézonde,Quiers-sur-Bézonde,4508, +COM,45259,24,45,45D,451,0,QUIERS SUR BEZONDE,Quiers-sur-Bezonde,Quiers-sur-Bezonde,4508, COM,45260,24,45,45D,453,0,RAMOULU,Ramoulu,Ramoulu,4509, COM,45261,24,45,45D,452,0,REBRECHIEN,Rebréchien,Rebréchien,4506, COM,45262,24,45,45D,452,0,ROUVRAY SAINTE CROIX,Rouvray-Sainte-Croix,Rouvray-Sainte-Croix,4510, @@ -19057,7 +19032,7 @@ COMD,50009,,,,,1,ANGEY,Angey,Angey,,50565 COMD,50010,,,,,1,ANGOVILLE AU PLAIN,Angoville-au-Plain,Angoville-au-Plain,,50099 COM,50013,28,50,50D,502,1,ANNEVILLE EN SAIRE,Anneville-en-Saire,Anneville-en-Saire,5026, COMD,50014,,,,,1,ANNEVILLE SUR MER,Anneville-sur-Mer,Anneville-sur-Mer,,50215 -COM,50015,28,50,50D,503,1,ANNOVILLE,Annoville,Annoville,5020, +COMD,50015,,,,,1,ANNOVILLE,Annoville,Annoville,,50272 COM,50016,28,50,50D,503,1,APPEVILLE,Appeville,Appeville,5005, COMD,50018,,,,,1,ARGOUGES,Argouges,Argouges,,50487 COM,50019,28,50,50D,501,1,AUCEY LA PLAINE,Aucey-la-Plaine,Aucey-la-Plaine,5019, @@ -19305,7 +19280,8 @@ COM,50268,28,50,50D,502,0,LESTRE,Lestre,Lestre,5025, COM,50269,28,50,50D,502,0,LIESVILLE SUR DOUVE,Liesville-sur-Douve,Liesville-sur-Douve,5005, COM,50270,28,50,50D,502,0,LIEUSAINT,Lieusaint,Lieusaint,5025, COM,50271,28,50,50D,501,0,LINGEARD,Lingeard,Lingeard,5015, -COM,50272,28,50,50D,503,0,LINGREVILLE,Lingreville,Lingreville,5020, +COM,50272,28,50,50D,503,0,TOURNEVILLE SUR MER,Tourneville-sur-Mer,Tourneville-sur-Mer,5020, +COMD,50272,,,,,0,LINGREVILLE,Lingreville,Lingreville,,50272 COM,50273,28,50,50D,503,0,MONTSENELLE,Montsenelle,Montsenelle,5011, COMD,50273,,,,,0,LITHAIRE,Lithaire,Lithaire,,50273 COM,50274,28,50,50D,501,4,LOGES MARCHIS,Loges-Marchis,Les Loges-Marchis,5021, @@ -19405,7 +19381,6 @@ COM,50372,28,50,50D,503,0,NEUFMESNIL,Neufmesnil,Neufmesnil,5011, COM,50373,28,50,50D,502,0,NEUVILLE AU PLAIN,Neuville-au-Plain,Neuville-au-Plain,5005, COM,50374,28,50,50D,502,0,NEUVILLE EN BEAUMONT,Neuville-en-Beaumont,Neuville-en-Beaumont,5004, COM,50376,28,50,50D,503,0,NICORPS,Nicorps,Nicorps,5010, -COMA,50377,,,,,0,NOIRPALU,Noirpalu,Noirpalu,,50590 COM,50378,28,50,50D,503,0,NOTRE DAME DE CENILLY,Notre-Dame-de-Cenilly,Notre-Dame-de-Cenilly,5020, COM,50379,28,50,50D,501,0,NOTRE DAME DE LIVOYE,Notre-Dame-de-Livoye,Notre-Dame-de-Livoye,5015, COMD,50380,,,,,0,NOTRE DAME D ELLE,Notre-Dame-d'Elle,Notre-Dame-d'Elle,,50492 @@ -19741,7 +19716,7 @@ COM,51059,44,51,51D,514,0,BIGNICOURT SUR MARNE,Bignicourt-sur-Marne,Bignicourt-s COM,51060,44,51,51D,514,0,BIGNICOURT SUR SAULX,Bignicourt-sur-Saulx,Bignicourt-sur-Saulx,5120, COM,51061,44,51,51D,513,0,BILLY LE GRAND,Billy-le-Grand,Billy-le-Grand,5110, COM,51062,44,51,51D,511,0,BINARVILLE,Binarville,Binarville,5101, -COM,51063,44,51,51D,512,0,BINSON ET ORQUIGNY,Binson-et-Orquigny,Binson-et-Orquigny,5106, +COMD,51063,,,,,0,BINSON ET ORQUIGNY,Binson-et-Orquigny,Binson-et-Orquigny,,51457 COMD,51064,,,,,0,BISSEUIL,Bisseuil,Bisseuil,,51030 COM,51065,44,51,51D,514,0,BLACY,Blacy,Blacy,5123, COM,51066,44,51,51D,514,0,BLAISE SOUS ARZILLIERES,Blaise-sous-Arzillières,Blaise-sous-Arzillières,5123, @@ -20114,7 +20089,8 @@ COM,51453,44,51,51D,511,0,RECY,Recy,Recy,5104, COM,51454,44,51,51D,513,0,REIMS,Reims,Reims,5199, COM,51455,44,51,51D,514,0,REIMS LA BRULEE,Reims-la-Brûlée,Reims-la-Brûlée,5120, COM,51456,44,51,51D,511,0,REMICOURT,Remicourt,Remicourt,5101, -COM,51457,44,51,51D,512,0,REUIL,Reuil,Reuil,5106, +COM,51457,44,51,51D,512,0,COEUR DE LA VALLEE,Coeur-de-la-Vallée,Coeur-de-la-Vallée,5106, +COMD,51457,,,,,0,REUIL,Reuil,Reuil,,51457 COM,51458,44,51,51D,512,0,REUVES,Reuves,Reuves,5121, COM,51459,44,51,51D,512,0,REVEILLON,Réveillon,Réveillon,5121, COM,51460,44,51,51D,512,0,RIEUX,Rieux,Rieux,5121, @@ -20286,7 +20262,7 @@ COM,51633,44,51,51D,513,0,VILLERS FRANQUEUX,Villers-Franqueux,Villers-Franqueux, COM,51634,44,51,51D,511,0,VILLERS LE CHATEAU,Villers-le-Château,Villers-le-Château,5104, COM,51635,44,51,51D,514,0,VILLERS LE SEC,Villers-le-Sec,Villers-le-Sec,5120, COM,51636,44,51,51D,513,0,VILLERS MARMERY,Villers-Marmery,Villers-Marmery,5110, -COM,51637,44,51,51D,512,0,VILLERS SOUS CHATILLON,Villers-sous-Châtillon,Villers-sous-Châtillon,5106, +COMD,51637,,,,,0,VILLERS SOUS CHATILLON,Villers-sous-Châtillon,Villers-sous-Châtillon,,51457 COM,51638,44,51,51D,512,0,VILLESENEUX,Villeseneux,Villeseneux,5122, COM,51639,44,51,51D,512,3,VILLE SOUS ORBAIS,Ville-sous-Orbais,La Ville-sous-Orbais,5106, COM,51640,44,51,51D,511,0,VILLE SUR TOURBE,Ville-sur-Tourbe,Ville-sur-Tourbe,5101, @@ -21235,7 +21211,7 @@ COM,54108,44,54,54D,543,0,BURTHECOURT AUX CHENES,Burthecourt-aux-Chênes,Burthec COM,54109,44,54,54D,543,0,CEINTREY,Ceintrey,Ceintrey,5410, COM,54110,44,54,54D,543,0,CERVILLE,Cerville,Cerville,5403, COM,54111,44,54,54D,543,0,CHALIGNY,Chaligny,Chaligny,5415, -COM,54112,44,54,54D,541,0,CHAMBLEY BUSSIERES,Chambley-Bussières,Chambley-Bussières,5404, +COM,54112,44,54,54D,544,0,CHAMBLEY BUSSIERES,Chambley-Bussières,Chambley-Bussières,5404, COM,54113,44,54,54D,543,0,CHAMPENOUX,Champenoux,Champenoux,5403, COM,54114,44,54,54D,543,0,CHAMPEY SUR MOSELLE,Champey-sur-Moselle,Champey-sur-Moselle,5418, COM,54115,44,54,54D,543,0,CHAMPIGNEULLES,Champigneulles,Champigneulles,5421, @@ -21267,8 +21243,8 @@ COM,54140,44,54,54D,544,0,COURCELLES,Courcelles,Courcelles,5410, COM,54141,44,54,54D,543,0,COYVILLER,Coyviller,Coyviller,5405, COM,54142,44,54,54D,543,0,CRANTENOY,Crantenoy,Crantenoy,5410, COM,54143,44,54,54D,544,0,CREPEY,Crépey,Crépey,5410, -COM,54144,44,54,54D,543,0,CREVECHAMPS,Crévéchamps,Crévéchamps,5410, -COM,54145,44,54,54D,542,0,CREVIC,Crévic,Crévic,5408, +COM,54144,44,54,54D,542,0,CREVECHAMPS,Crévéchamps,Crévéchamps,5410, +COM,54145,44,54,54D,543,0,CREVIC,Crévic,Crévic,5408, COM,54146,44,54,54D,544,0,CREZILLES,Crézilles,Crézilles,5410, COM,54147,44,54,54D,542,0,CRION,Crion,Crion,5408, COM,54148,44,54,54D,542,0,CROISMARE,Croismare,Croismare,5408, @@ -21276,7 +21252,7 @@ COM,54149,44,54,54D,541,0,CRUSNES,Crusnes,Crusnes,5423, COM,54150,44,54,54D,543,0,CUSTINES,Custines,Custines,5402, COM,54151,44,54,54D,541,0,CUTRY,Cutry,Cutry,5407, COM,54152,44,54,54D,542,0,DAMELEVIERES,Damelevières,Damelevières,5409, -COM,54153,44,54,54D,541,0,DAMPVITOUX,Dampvitoux,Dampvitoux,5404, +COM,54153,44,54,54D,544,0,DAMPVITOUX,Dampvitoux,Dampvitoux,5404, COM,54154,44,54,54D,542,0,DENEUVRE,Deneuvre,Deneuvre,5401, COM,54155,44,54,54D,542,0,DEUXVILLE,Deuxville,Deuxville,5408, COM,54156,44,54,54D,543,0,DIARVILLE,Diarville,Diarville,5410, @@ -21316,7 +21292,7 @@ COM,54189,44,54,54D,544,0,FAVIERES,Favières,Favières,5410, COM,54190,44,54,54D,544,0,FECOCOURT,Fécocourt,Fécocourt,5410, COM,54191,44,54,54D,542,0,FENNEVILLER,Fenneviller,Fenneviller,5401, COM,54192,44,54,54D,543,0,FERRIERES,Ferrières,Ferrières,5409, -COM,54193,44,54,54D,543,0,FEY EN HAYE,Fey-en-Haye,Fey-en-Haye,5418, +COM,54193,44,54,54D,544,0,FEY EN HAYE,Fey-en-Haye,Fey-en-Haye,5418, COM,54194,44,54,54D,541,0,FILLIERES,Fillières,Fillières,5423, COM,54195,44,54,54D,542,0,FLAINVAL,Flainval,Flainval,5408, COM,54196,44,54,54D,543,0,FLAVIGNY SUR MOSELLE,Flavigny-sur-Moselle,Flavigny-sur-Moselle,5415, @@ -21348,7 +21324,7 @@ COM,54221,44,54,54D,543,0,GERBECOURT ET HAPLEMONT,Gerbécourt-et-Haplemont,Gerb COM,54222,44,54,54D,542,0,GERBEVILLER,Gerbéviller,Gerbéviller,5409, COM,54223,44,54,54D,544,0,GERMINY,Germiny,Germiny,5410, COM,54224,44,54,54D,543,0,GERMONVILLE,Germonville,Germonville,5410, -COM,54225,44,54,54D,544,0,GEZONCOURT,Gézoncourt,Gézoncourt,5416, +COM,54225,44,54,54D,543,0,GEZONCOURT,Gézoncourt,Gézoncourt,5416, COM,54226,44,54,54D,544,0,GIBEAUMEIX,Gibeaumeix,Gibeaumeix,5410, COM,54227,44,54,54D,541,0,GIRAUMONT,Giraumont,Giraumont,5404, COM,54228,44,54,54D,542,0,GIRIVILLER,Giriviller,Giriviller,5409, @@ -21362,17 +21338,17 @@ COM,54235,44,54,54D,543,0,GOVILLER,Goviller,Goviller,5410, COM,54236,44,54,54D,541,0,GRAND FAILLY,Grand-Failly,Grand-Failly,5411, COM,54237,44,54,54D,544,0,GRIMONVILLER,Grimonviller,Grimonviller,5410, COM,54238,44,54,54D,543,0,GRIPPORT,Gripport,Gripport,5410, -COM,54239,44,54,54D,544,0,GRISCOURT,Griscourt,Griscourt,5416, +COM,54239,44,54,54D,543,0,GRISCOURT,Griscourt,Griscourt,5416, COM,54240,44,54,54D,544,0,GROSROUVRES,Grosrouvres,Grosrouvres,5416, COM,54241,44,54,54D,543,0,GUGNEY,Gugney,Gugney,5410, COM,54242,44,54,54D,544,0,GYE,Gye,Gye,5420, COM,54243,44,54,54D,542,1,HABLAINVILLE,Hablainville,Hablainville,5401, -COM,54244,44,54,54D,541,1,HAGEVILLE,Hagéville,Hagéville,5404, +COM,54244,44,54,54D,544,1,HAGEVILLE,Hagéville,Hagéville,5404, COM,54245,44,54,54D,542,1,HAIGNEVILLE,Haigneville,Haigneville,5409, COM,54246,44,54,54D,542,1,HALLOVILLE,Halloville,Halloville,5401, COM,54247,44,54,54D,543,0,HAMMEVILLE,Hammeville,Hammeville,5410, COM,54248,44,54,54D,544,0,HAMONVILLE,Hamonville,Hamonville,5416, -COM,54249,44,54,54D,541,0,HANNONVILLE SUZEMONT,Hannonville-Suzémont,Hannonville-Suzémont,5404, +COM,54249,44,54,54D,544,0,HANNONVILLE SUZEMONT,Hannonville-Suzémont,Hannonville-Suzémont,5404, COM,54250,44,54,54D,543,1,HARAUCOURT,Haraucourt,Haraucourt,5403, COM,54251,44,54,54D,542,1,HARBOUEY,Harbouey,Harbouey,5401, COM,54252,44,54,54D,543,1,HAROUE,Haroué,Haroué,5410, @@ -21391,7 +21367,7 @@ COM,54264,44,54,54D,543,1,HOUDELMONT,Houdelmont,Houdelmont,5410, COM,54265,44,54,54D,543,1,HOUDEMONT,Houdemont,Houdemont,5405, COM,54266,44,54,54D,543,1,HOUDREVILLE,Houdreville,Houdreville,5410, COM,54268,44,54,54D,543,1,HOUSSEVILLE,Housséville,Housséville,5410, -COM,54269,44,54,54D,542,1,HUDIVILLER,Hudiviller,Hudiviller,5408, +COM,54269,44,54,54D,543,1,HUDIVILLER,Hudiviller,Hudiviller,5408, COM,54270,44,54,54D,541,1,HUSSIGNY GODBRANGE,Hussigny-Godbrange,Hussigny-Godbrange,5423, COM,54271,44,54,54D,542,1,IGNEY,Igney,Igney,5401, COM,54272,44,54,54D,544,0,JAILLON,Jaillon,Jaillon,5416, @@ -21440,7 +21416,7 @@ COM,54314,44,54,54D,541,0,LEXY,Lexy,Lexy,5407, COM,54315,44,54,54D,543,0,LEYR,Leyr,Leyr,5402, COM,54316,44,54,54D,544,0,LIMEY REMENAUVILLE,Limey-Remenauville,Limey-Remenauville,5416, COM,54317,44,54,54D,544,0,LIRONVILLE,Lironville,Lironville,5416, -COM,54318,44,54,54D,544,0,LIVERDUN,Liverdun,Liverdun,5416, +COM,54318,44,54,54D,543,0,LIVERDUN,Liverdun,Liverdun,5416, COM,54320,44,54,54D,543,0,LOISY,Loisy,Loisy,5418, COM,54321,44,54,54D,541,0,LONGLAVILLE,Longlaville,Longlaville,5423, COM,54322,44,54,54D,541,0,LONGUYON,Longuyon,Longuyon,5411, @@ -21473,9 +21449,9 @@ COM,54349,44,54,54D,542,0,MANONVILLER,Manonviller,Manonviller,5401, COM,54350,44,54,54D,542,0,MARAINVILLER,Marainviller,Marainviller,5401, COM,54351,44,54,54D,543,0,MARBACHE,Marbache,Marbache,5421, COM,54352,44,54,54D,543,0,MARON,Maron,Maron,5415, -COM,54353,44,54,54D,541,0,MARS LA TOUR,Mars-la-Tour,Mars-la-Tour,5404, +COM,54353,44,54,54D,544,0,MARS LA TOUR,Mars-la-Tour,Mars-la-Tour,5404, COM,54354,44,54,54D,543,0,MARTHEMONT,Marthemont,Marthemont,5410, -COM,54355,44,54,54D,544,0,MARTINCOURT,Martincourt,Martincourt,5416, +COM,54355,44,54,54D,543,0,MARTINCOURT,Martincourt,Martincourt,5416, COM,54356,44,54,54D,542,0,MATTEXEY,Mattexey,Mattexey,5409, COM,54357,44,54,54D,543,0,MAXEVILLE,Maxéville,Maxéville,5421, COM,54358,44,54,54D,543,0,MAZERULLES,Mazerulles,Mazerulles,5403, @@ -21528,7 +21504,7 @@ COM,54406,44,54,54D,542,1,OGEVILLER,Ogéviller,Ogéviller,5401, COM,54407,44,54,54D,543,1,OGNEVILLE,Ognéville,Ognéville,5410, COM,54408,44,54,54D,541,1,OLLEY,Olley,Olley,5404, COM,54409,44,54,54D,543,1,OMELMONT,Omelmont,Omelmont,5410, -COM,54410,44,54,54D,541,1,ONVILLE,Onville,Onville,5418, +COM,54410,44,54,54D,544,1,ONVILLE,Onville,Onville,5418, COM,54411,44,54,54D,543,1,ORMES ET VILLE,Ormes-et-Ville,Ormes-et-Ville,5410, COM,54412,44,54,54D,541,1,OTHE,Othe,Othe,5411, COM,54413,44,54,54D,541,1,OZERAILLES,Ozerailles,Ozerailles,5417, @@ -21553,13 +21529,13 @@ COM,54431,44,54,54D,543,0,PONT A MOUSSON,Pont-à-Mousson,Pont-à-Mousson,5418, COM,54432,44,54,54D,543,0,PONT SAINT VINCENT,Pont-Saint-Vincent,Pont-Saint-Vincent,5415, COM,54433,44,54,54D,543,0,PORT SUR SEILLE,Port-sur-Seille,Port-sur-Seille,5402, COM,54434,44,54,54D,543,0,PRAYE,Praye,Praye,5410, -COM,54435,44,54,54D,543,0,PRENY,Prény,Prény,5418, +COM,54435,44,54,54D,544,0,PRENY,Prény,Prény,5418, COM,54436,44,54,54D,541,0,PREUTIN HIGNY,Preutin-Higny,Preutin-Higny,5417, COM,54437,44,54,54D,543,0,PULLIGNY,Pulligny,Pulligny,5415, COM,54438,44,54,54D,544,0,PULNEY,Pulney,Pulney,5410, COM,54439,44,54,54D,543,0,PULNOY,Pulnoy,Pulnoy,5403, COM,54440,44,54,54D,541,0,PUXE,Puxe,Puxe,5404, -COM,54441,44,54,54D,541,0,PUXIEUX,Puxieux,Puxieux,5404, +COM,54441,44,54,54D,544,0,PUXIEUX,Puxieux,Puxieux,5404, COM,54442,44,54,54D,543,0,QUEVILLONCOURT,Quevilloncourt,Quevilloncourt,5410, COM,54443,44,54,54D,542,0,RAON LES LEAU,Raon-lès-Leau,Raon-lès-Leau,5401, COM,54444,44,54,54D,543,0,RAUCOURT,Raucourt,Raucourt,5402, @@ -21576,10 +21552,10 @@ COM,54456,44,54,54D,543,0,REMEREVILLE,Réméréville,Réméréville,5403, COM,54457,44,54,54D,542,0,REMONCOURT,Remoncourt,Remoncourt,5401, COM,54458,44,54,54D,542,0,REPAIX,Repaix,Repaix,5401, COM,54459,44,54,54D,543,0,RICHARDMENIL,Richardménil,Richardménil,5415, -COM,54460,44,54,54D,544,0,ROGEVILLE,Rogéville,Rogéville,5416, +COM,54460,44,54,54D,543,0,ROGEVILLE,Rogéville,Rogéville,5416, COM,54461,44,54,54D,542,0,ROMAIN,Romain,Romain,5409, COM,54462,44,54,54D,543,0,ROSIERES AUX SALINES,Rosières-aux-Salines,Rosières-aux-Salines,5409, -COM,54463,44,54,54D,544,0,ROSIERES EN HAYE,Rosières-en-Haye,Rosières-en-Haye,5416, +COM,54463,44,54,54D,543,0,ROSIERES EN HAYE,Rosières-en-Haye,Rosières-en-Haye,5416, COM,54464,44,54,54D,543,0,ROUVES,Rouves,Rouves,5402, COM,54465,44,54,54D,543,0,ROVILLE DEVANT BAYON,Roville-devant-Bayon,Roville-devant-Bayon,5410, COM,54466,44,54,54D,544,0,ROYAUMEIX,Royaumeix,Royaumeix,5416, @@ -21593,7 +21569,7 @@ COM,54473,44,54,54D,543,0,SAINT FIRMIN,Saint-Firmin,Saint-Firmin,5410, COM,54474,44,54,54D,543,0,SAINTE GENEVIEVE,Sainte-Geneviève,Sainte-Geneviève,5402, COM,54475,44,54,54D,542,0,SAINT GERMAIN,Saint-Germain,Saint-Germain,5409, COM,54476,44,54,54D,541,0,SAINT JEAN LES LONGUYON,Saint-Jean-lès-Longuyon,Saint-Jean-lès-Longuyon,5411, -COM,54477,44,54,54D,541,0,SAINT JULIEN LES GORZE,Saint-Julien-lès-Gorze,Saint-Julien-lès-Gorze,5404, +COM,54477,44,54,54D,544,0,SAINT JULIEN LES GORZE,Saint-Julien-lès-Gorze,Saint-Julien-lès-Gorze,5404, COM,54478,44,54,54D,541,0,SAINT MARCEL,Saint-Marcel,Saint-Marcel,5404, COM,54479,44,54,54D,542,0,SAINT MARD,Saint-Mard,Saint-Mard,5409, COM,54480,44,54,54D,542,0,SAINT MARTIN,Saint-Martin,Saint-Martin,5401, @@ -21620,13 +21596,13 @@ COM,54500,44,54,54D,544,0,SELAINCOURT,Selaincourt,Selaincourt,5410, COM,54501,44,54,54D,542,0,SERANVILLE,Seranville,Seranville,5409, COM,54502,44,54,54D,542,0,SERRES,Serres,Serres,5408, COM,54504,44,54,54D,541,0,SERROUVILLE,Serrouville,Serrouville,5423, -COM,54505,44,54,54D,544,0,SEXEY AUX FORGES,Sexey-aux-Forges,Sexey-aux-Forges,5415, +COM,54505,44,54,54D,543,0,SEXEY AUX FORGES,Sexey-aux-Forges,Sexey-aux-Forges,5415, COMD,54506,,,,,0,SEXEY LES BOIS,Sexey-les-Bois,Sexey-les-Bois,,54557 COM,54507,44,54,54D,542,0,SIONVILLER,Sionviller,Sionviller,5408, COM,54508,44,54,54D,543,0,SIVRY,Sivry,Sivry,5402, -COM,54509,44,54,54D,542,0,SOMMERVILLER,Sommerviller,Sommerviller,5408, +COM,54509,44,54,54D,543,0,SOMMERVILLER,Sommerviller,Sommerviller,5408, COM,54510,44,54,54D,543,0,SORNEVILLE,Sornéville,Sornéville,5403, -COM,54511,44,54,54D,541,0,SPONVILLE,Sponville,Sponville,5404, +COM,54511,44,54,54D,544,0,SPONVILLE,Sponville,Sponville,5404, COM,54512,44,54,54D,542,0,TANCONVILLE,Tanconville,Tanconville,5401, COM,54513,44,54,54D,543,0,TANTONVILLE,Tantonville,Tantonville,5410, COM,54514,44,54,54D,541,0,TELLANCOURT,Tellancourt,Tellancourt,5411, @@ -21650,7 +21626,7 @@ COM,54531,44,54,54D,544,0,TRAMONT SAINT ANDRE,Tramont-Saint-André,Tramont-Saint COM,54532,44,54,54D,544,0,TREMBLECOURT,Tremblecourt,Tremblecourt,5416, COM,54533,44,54,54D,541,0,TRIEUX,Trieux,Trieux,5417, COM,54534,44,54,54D,544,0,TRONDES,Trondes,Trondes,5416, -COM,54535,44,54,54D,541,0,TRONVILLE,Tronville,Tronville,5404, +COM,54535,44,54,54D,544,0,TRONVILLE,Tronville,Tronville,5404, COM,54536,44,54,54D,541,0,TUCQUEGNIEUX,Tucquegnieux,Tucquegnieux,5417, COM,54537,44,54,54D,541,1,UGNY,Ugny,Ugny,5411, COM,54538,44,54,54D,544,1,URUFFE,Uruffe,Uruffe,5410, @@ -21686,10 +21662,10 @@ COM,54566,44,54,54D,544,0,VILCEY SUR TREY,Vilcey-sur-Trey,Vilcey-sur-Trey,5416, COM,54567,44,54,54D,542,0,VILLACOURT,Villacourt,Villacourt,5409, COM,54568,44,54,54D,541,0,VILLE AU MONTOIS,Ville-au-Montois,Ville-au-Montois,5411, COM,54569,44,54,54D,543,0,VILLE AU VAL,Ville-au-Val,Ville-au-Val,5402, -COM,54570,44,54,54D,541,0,VILLECEY SUR MAD,Villecey-sur-Mad,Villecey-sur-Mad,5418, +COM,54570,44,54,54D,544,0,VILLECEY SUR MAD,Villecey-sur-Mad,Villecey-sur-Mad,5418, COM,54571,44,54,54D,543,0,VILLE EN VERMOIS,Ville-en-Vermois,Ville-en-Vermois,5405, COM,54572,44,54,54D,541,0,VILLE HOUDLEMONT,Ville-Houdlémont,Ville-Houdlémont,5411, -COM,54573,44,54,54D,544,0,VILLERS EN HAYE,Villers-en-Haye,Villers-en-Haye,5416, +COM,54573,44,54,54D,543,0,VILLERS EN HAYE,Villers-en-Haye,Villers-en-Haye,5416, COM,54574,44,54,54D,541,0,VILLERS LA CHEVRE,Villers-la-Chèvre,Villers-la-Chèvre,5411, COM,54575,44,54,54D,541,0,VILLERS LA MONTAGNE,Villers-la-Montagne,Villers-la-Montagne,5423, COM,54576,44,54,54D,541,0,VILLERS LE ROND,Villers-le-Rond,Villers-le-Rond,5411, @@ -21709,13 +21685,13 @@ COM,54589,44,54,54D,543,0,VITTONVILLE,Vittonville,Vittonville,5418, COM,54590,44,54,54D,541,0,VIVIERS SUR CHIERS,Viviers-sur-Chiers,Viviers-sur-Chiers,5411, COM,54591,44,54,54D,543,0,VOINEMONT,Voinémont,Voinémont,5410, COM,54592,44,54,54D,543,0,VRONCOURT,Vroncourt,Vroncourt,5410, -COM,54593,44,54,54D,541,0,WAVILLE,Waville,Waville,5418, +COM,54593,44,54,54D,544,0,WAVILLE,Waville,Waville,5418, COM,54594,44,54,54D,544,0,XAMMES,Xammes,Xammes,5416, COM,54595,44,54,54D,542,0,XERMAMENIL,Xermaménil,Xermaménil,5409, COM,54596,44,54,54D,543,0,XEUILLEY,Xeuilley,Xeuilley,5410, COM,54597,44,54,54D,543,0,XIROCOURT,Xirocourt,Xirocourt,5410, COM,54598,44,54,54D,541,0,XIVRY CIRCOURT,Xivry-Circourt,Xivry-Circourt,5417, -COM,54599,44,54,54D,541,0,XONVILLE,Xonville,Xonville,5404, +COM,54599,44,54,54D,544,0,XONVILLE,Xonville,Xonville,5404, COM,54600,44,54,54D,542,0,XOUSSE,Xousse,Xousse,5401, COM,54601,44,54,54D,542,0,XURES,Xures,Xures,5401, COM,54602,44,54,54D,541,0,HAN DEVANT PIERREPONT,Han-devant-Pierrepont,Han-devant-Pierrepont,5411, @@ -22547,7 +22523,7 @@ COM,56258,53,56,56D,561,3,TRINITE SUR MER,Trinité-sur-Mer,La Trinité-sur-Mer,5 COM,56259,53,56,56D,563,3,TRINITE SURZUR,Trinité-Surzur,La Trinité-Surzur,5618, COM,56260,53,56,56D,563,0,VANNES,Vannes,Vannes,5699, COM,56261,53,56,56D,563,3,VRAIE CROIX,Vraie-Croix,La Vraie-Croix,5616, -COM,56262,53,56,56D,563,0,BONO,Bono,Bono,5620, +COM,56262,53,56,56D,563,2,BONO,Bono,Le Bono,5620, COM,56263,53,56,56D,561,0,SAINTE ANNE D AURAY,Sainte-Anne-d'Auray,Sainte-Anne-d'Auray,5601, COM,56264,53,56,56D,562,0,KERNASCLEDEN,Kernascléden,Kernascléden,5602, COM,57001,44,57,57D,577,1,ABONCOURT,Aboncourt,Aboncourt,5714, @@ -22821,7 +22797,6 @@ COM,57275,44,57,57D,573,0,GUESSLING HEMERING,Guessling-Hémering,Guessling-Héme COM,57276,44,57,57D,573,0,GUINGLANGE,Guinglange,Guinglange,5707, COM,57277,44,57,57D,573,0,GUINKIRCHEN,Guinkirchen,Guinkirchen,5703, COM,57278,44,57,57D,575,0,GUINZELING,Guinzeling,Guinzeling,5723, -COMA,57279,,,,,0,GUIRLANGE,Guirlange,Guirlange,,57252 COM,57280,44,57,57D,575,0,GUNTZVILLER,Guntzviller,Guntzviller,5717, COM,57281,44,57,57D,575,1,HABOUDANGE,Haboudange,Haboudange,5723, COM,57282,44,57,57D,577,1,HAGEN,Hagen,Hagen,5727, @@ -22958,7 +22933,6 @@ COM,57416,44,57,57D,579,0,LORRY MARDIGNY,Lorry-Mardigny,Lorry-Mardigny,5705, COM,57417,44,57,57D,575,0,LOSTROFF,Lostroff,Lostroff,5723, COM,57418,44,57,57D,575,0,LOUDREFING,Loudrefing,Loudrefing,5723, COM,57419,44,57,57D,576,0,LOUPERSHOUSE,Loupershouse,Loupershouse,5720, -COMA,57420,,,,,0,LOUTREMANGE,Loutremange,Loutremange,,57150 COM,57421,44,57,57D,576,0,LOUTZVILLER,Loutzviller,Loutzviller,5702, COM,57422,44,57,57D,579,0,LOUVIGNY,Louvigny,Louvigny,5707, COM,57423,44,57,57D,575,0,LUBECOURT,Lubécourt,Lubécourt,5723, @@ -22976,7 +22950,6 @@ COM,57436,44,57,57D,575,0,MALAUCOURT SUR SEILLE,Malaucourt-sur-Seille,Malaucourt COM,57437,44,57,57D,577,0,MALLING,Malling,Malling,5704, COM,57438,44,57,57D,579,0,MALROY,Malroy,Malroy,5716, COM,57439,44,57,57D,577,0,MANDEREN RITZING,Manderen-Ritzing,Manderen-Ritzing,5704, -COMD,57439,,,,,0,MANDEREN,Manderen,Manderen,,57439 COM,57440,44,57,57D,575,0,MANHOUE,Manhoué,Manhoué,5723, COM,57441,44,57,57D,577,0,MANOM,Manom,Manom,5727, COM,57442,44,57,57D,573,0,MANY,Many,Many,5707, @@ -23120,7 +23093,6 @@ COM,57581,44,57,57D,576,0,RICHELING,Richeling,Richeling,5720, COM,57582,44,57,57D,577,0,RICHEMONT,Richemont,Richemont,5706, COM,57583,44,57,57D,575,0,RICHEVAL,Richeval,Richeval,5721, COM,57584,44,57,57D,576,0,RIMLING,Rimling,Rimling,5702, -COMD,57585,,,,,0,RITZING,Ritzing,Ritzing,,57439 COM,57586,44,57,57D,577,0,ROCHONVILLERS,Rochonvillers,Rochonvillers,5701, COM,57587,44,57,57D,575,0,RODALBE,Rodalbe,Rodalbe,5723, COM,57588,44,57,57D,577,0,RODEMACK,Rodemack,Rodemack,5727, @@ -24282,7 +24254,6 @@ COM,60014,32,60,60D,602,1,ANGIVILLERS,Angivillers,Angivillers,6019, COM,60015,32,60,60D,602,1,ANGY,Angy,Angy,6014, COM,60016,32,60,60D,602,1,ANSACQ,Ansacq,Ansacq,6014, COM,60017,32,60,60D,602,1,ANSAUVILLERS,Ansauvillers,Ansauvillers,6019, -COMD,60018,,,,,1,ANSERVILLE,Anserville,Anserville,,60088 COM,60019,32,60,60D,603,1,ANTHEUIL PORTES,Antheuil-Portes,Antheuil-Portes,6010, COM,60020,32,60,60D,604,1,ANTILLY,Antilly,Antilly,6015, COM,60021,32,60,60D,603,1,APPILLY,Appilly,Appilly,6017, @@ -24513,7 +24484,6 @@ COM,60243,32,60,60D,601,0,FONTAINE SAINT LUCIEN,Fontaine-Saint-Lucien,Fontaine-S COM,60244,32,60,60D,601,0,FONTENAY TORCY,Fontenay-Torcy,Fontenay-Torcy,6011, COM,60245,32,60,60D,601,0,FORMERIE,Formerie,Formerie,6011, COMD,60245,,,,,0,FORMERIE,Formerie,Formerie,,60245 -COMD,60246,,,,,0,FOSSEUSE,Fosseuse,Fosseuse,,60088 COM,60247,32,60,60D,602,0,FOUILLEUSE,Fouilleuse,Fouilleuse,6005, COM,60248,32,60,60D,601,0,FOUILLOY,Fouilloy,Fouilloy,6011, COM,60249,32,60,60D,604,0,FOULANGUES,Foulangues,Foulangues,6013, @@ -25958,7 +25928,7 @@ COM,62478,32,62,62D,625,0,JOURNY,Journy,Journy,6233, COM,62479,32,62,62D,622,0,LABEUVRIERE,Labeuvrière,Labeuvrière,6211, COM,62480,32,62,62D,622,0,LABOURSE,Labourse,Labourse,6235, COM,62481,32,62,62D,624,0,LABROYE,Labroye,Labroye,6206, -COMA,62482,,,,,0,LABUISSIERE,Labuissière,Labuissière,,62178 +COMD,62482,,,,,0,LABUISSIERE,Labuissière,Labuissière,,62178 COM,62483,32,62,62D,623,0,LACRES,Lacres,Lacres,6222, COM,62484,32,62,62D,621,0,LAGNICOURT MARCEL,Lagnicourt-Marcel,Lagnicourt-Marcel,6209, COM,62485,32,62,62D,625,0,LAIRES,Laires,Laires,6225, @@ -26064,7 +26034,7 @@ COM,62584,32,62,62D,622,0,MONT BERNANCHON,Mont-Bernanchon,Mont-Bernanchon,6231, COM,62585,32,62,62D,624,0,MONTCAVREL,Montcavrel,Montcavrel,6210, COM,62586,32,62,62D,621,0,MONTENESCOURT,Montenescourt,Montenescourt,6207, COM,62587,32,62,62D,627,0,MONTIGNY EN GOHELLE,Montigny-en-Gohelle,Montigny-en-Gohelle,6227, -COM,62588,32,62,62D,624,0,MONTREUIL,Montreuil,Montreuil,6210, +COM,62588,32,62,62D,624,0,MONTREUIL SUR MER,Montreuil-sur-Mer,Montreuil-sur-Mer,6210, COM,62589,32,62,62D,621,0,MONT SAINT ELOI,Mont-Saint-Éloi,Mont-Saint-Éloi,6202, COM,62590,32,62,62D,621,0,MONTS EN TERNOIS,Monts-en-Ternois,Monts-en-Ternois,6238, COM,62591,32,62,62D,621,0,MORCHIES,Morchies,Morchies,6209, @@ -26614,7 +26584,7 @@ COM,63229,84,63,63D,635,0,MOISSAT,Moissat,Moissat,6319, COM,63230,84,63,63D,631,2,MONESTIER,Monestier,Le Monestier,6322, COM,63231,84,63,63D,635,3,MONNERIE LE MONTEL,Monnerie-le-Montel,La Monnerie-le-Montel,6330, COM,63232,84,63,63D,634,0,MONS,Mons,Mons,6320, -COM,63233,84,63,63D,634,0,MONTAIGUT,Montaigut,Montaigut,6326, +COM,63233,84,63,63D,634,0,MONTAIGUT EN COMBRAILLE,Montaigut-en-Combraille,Montaigut-en-Combraille,6326, COM,63234,84,63,63D,633,0,MONTAIGUT LE BLANC,Montaigut-le-Blanc,Montaigut-le-Blanc,6329, COM,63235,84,63,63D,634,0,MONTCEL,Montcel,Montcel,6327, COM,63236,84,63,63D,633,0,MONT DORE,Mont-Dore,Mont-Dore,6329, @@ -28789,7 +28759,6 @@ COM,68104,44,68,6AE,682,0,GEISWASSER,Geiswasser,Geiswasser,6806, COM,68105,44,68,6AE,681,0,GILDWILLER,Gildwiller,Gildwiller,6809, COM,68106,44,68,6AE,686,0,GOLDBACH ALTENBACH,Goldbach-Altenbach,Goldbach-Altenbach,6803, COM,68107,44,68,6AE,681,0,GOMMERSDORF,Gommersdorf,Gommersdorf,6809, -COMD,68108,,,,,0,GRENTZINGEN,Grentzingen,Grentzingen,,68240 COM,68109,44,68,6AE,682,0,GRIESBACH AU VAL,Griesbach-au-Val,Griesbach-au-Val,6816, COM,68110,44,68,6AE,682,0,GRUSSENHEIM,Grussenheim,Grussenheim,6805, COM,68111,44,68,6AE,686,0,GUEBERSCHWIHR,Gueberschwihr,Gueberschwihr,6816, @@ -28814,7 +28783,6 @@ COM,68129,44,68,6AE,684,0,HEIMSBRUNN,Heimsbrunn,Heimsbrunn,6808, COM,68130,44,68,6AE,682,0,HEITEREN,Heiteren,Heiteren,6806, COM,68131,44,68,6AE,681,0,HEIWILLER,Heiwiller,Heiwiller,6801, COM,68132,44,68,6AE,684,0,HELFRANTZKIRCH,Helfrantzkirch,Helfrantzkirch,6802, -COMD,68133,,,,,0,HENFLINGEN,Henflingen,Henflingen,,68240 COM,68134,44,68,6AE,682,0,HERRLISHEIM PRES COLMAR,Herrlisheim-près-Colmar,Herrlisheim-près-Colmar,6816, COM,68135,44,68,6AE,684,0,HESINGUE,Hésingue,Hésingue,6814, COM,68136,44,68,6AE,682,0,HETTENSCHLAG,Hettenschlag,Hettenschlag,6806, @@ -28924,7 +28892,6 @@ COM,68237,44,68,6AE,682,0,NIEDERMORSCHWIHR,Niedermorschwihr,Niedermorschwihr,681 COM,68238,44,68,6AE,684,0,NIFFER,Niffer,Niffer,6813, COM,68239,44,68,6AE,686,1,OBERBRUCK,Oberbruck,Oberbruck,6809, COM,68240,44,68,6AE,681,1,ILLTAL,Illtal,Illtal,6801, -COMD,68240,,,,,1,OBERDORF,Oberdorf,Oberdorf,,68240 COM,68241,44,68,6AE,686,1,OBERENTZEN,Oberentzen,Oberentzen,6806, COM,68242,44,68,6AE,686,1,OBERHERGHEIM,Oberhergheim,Oberhergheim,6806, COM,68243,44,68,6AE,681,1,OBERLARG,Oberlarg,Oberlarg,6801, @@ -29003,9 +28970,7 @@ COM,68315,44,68,6AE,686,0,SOULTZ HAUT RHIN,Soultz-Haut-Rhin,Soultz-Haut-Rhin,680 COM,68316,44,68,6AE,682,0,SOULTZBACH LES BAINS,Soultzbach-les-Bains,Soultzbach-les-Bains,6816, COM,68317,44,68,6AE,682,0,SOULTZEREN,Soultzeren,Soultzeren,6816, COM,68318,44,68,6AE,686,0,SOULTZMATT,Soultzmatt,Soultzmatt,6816, -COMD,68319,,,,,0,SPECHBACH LE BAS,Spechbach-le-Bas,Spechbach-le-Bas,,68320 COM,68320,44,68,6AE,681,0,SPECHBACH,Spechbach,Spechbach,6801, -COMD,68320,,,,,0,SPECHBACH LE HAUT,Spechbach-le-Haut,Spechbach-le-Haut,,68320 COM,68321,44,68,6AE,684,0,STAFFELFELDEN,Staffelfelden,Staffelfelden,6817, COM,68322,44,68,6AE,686,0,STEINBACH,Steinbach,Steinbach,6803, COM,68323,44,68,6AE,684,0,STEINBRUNN LE BAS,Steinbrunn-le-Bas,Steinbrunn-le-Bas,6802, @@ -29396,7 +29361,7 @@ COM,70013,27,70,70D,701,1,AMBIEVILLERS,Ambiévillers,Ambiévillers,7005, COM,70014,27,70,70D,701,1,AMBLANS ET VELOTTE,Amblans-et-Velotte,Amblans-et-Velotte,7007, COM,70015,27,70,70D,702,1,AMONCOURT,Amoncourt,Amoncourt,7011, COM,70016,27,70,70D,701,1,AMONT ET EFFRENEY,Amont-et-Effreney,Amont-et-Effreney,7010, -COM,70017,27,70,70D,701,1,ANCHENONCOURT ET CHAZEL,Anchenoncourt-et-Chazel,Anchenoncourt-et-Chazel,7011, +COM,70017,27,70,70D,702,1,ANCHENONCOURT ET CHAZEL,Anchenoncourt-et-Chazel,Anchenoncourt-et-Chazel,7011, COM,70018,27,70,70D,702,1,ANCIER,Ancier,Ancier,7002, COM,70019,27,70,70D,702,1,ANDELARRE,Andelarre,Andelarre,7015, COM,70020,27,70,70D,702,1,ANDELARROT,Andelarrot,Andelarrot,7015, @@ -29990,7 +29955,8 @@ COM,71038,27,71,71D,711,4,BIZOTS,Bizots,Les Bizots,7103, COM,71039,27,71,71D,715,0,BLANOT,Blanot,Blanot,7111, COM,71040,27,71,71D,711,0,BLANZY,Blanzy,Blanzy,7103, COM,71041,27,71,71D,713,0,BOIS SAINTE MARIE,Bois-Sainte-Marie,Bois-Sainte-Marie,7110, -COM,71042,27,71,71D,715,0,BONNAY,Bonnay,Bonnay,7111, +COM,71042,27,71,71D,715,0,BONNAY SAINT YTHAIRE,Bonnay-Saint-Ythaire,Bonnay-Saint-Ythaire,7111, +COMD,71042,,,,,0,BONNAY,Bonnay,Bonnay,,71042 COM,71043,27,71,71D,712,4,BORDES,Bordes,Les Bordes,7116, COM,71044,27,71,71D,714,0,BOSJEAN,Bosjean,Bosjean,7126, COM,71045,27,71,71D,714,0,BOUHANS,Bouhans,Bouhans,7126, @@ -30429,7 +30395,7 @@ COM,71488,27,71,71D,715,0,SAINT VINCENT DES PRES,Saint-Vincent-des-Prés,Saint-V COM,71489,27,71,71D,714,0,SAINT VINCENT EN BRESSE,Saint-Vincent-en-Bresse,Saint-Vincent-en-Bresse,7120, COM,71490,27,71,71D,713,0,SAINT VINCENT BRAGNY,Saint-Vincent-Bragny,Saint-Vincent-Bragny,7109, COM,71491,27,71,71D,713,0,SAINT YAN,Saint-Yan,Saint-Yan,7125, -COM,71492,27,71,71D,715,0,SAINT YTHAIRE,Saint-Ythaire,Saint-Ythaire,7111, +COMD,71492,,,,,0,SAINT YTHAIRE,Saint-Ythaire,Saint-Ythaire,,71042 COM,71493,27,71,71D,711,0,SAISY,Saisy,Saisy,7101, COM,71494,27,71,71D,715,3,SALLE,Salle,La Salle,7119, COM,71495,27,71,71D,715,0,SALORNAY SUR GUYE,Salornay-sur-Guye,Salornay-sur-Guye,7111, @@ -30809,7 +30775,6 @@ COM,72283,52,72,72D,721,0,SAINT GERMAIN D ARCE,Saint-Germain-d'Arcé,Saint-Germa COMD,72284,,,,,0,SAINT GERMAIN SUR SARTHE,Saint-Germain-sur-Sarthe,Saint-Germain-sur-Sarthe,,72138 COM,72286,52,72,72D,722,0,SAINT GERVAIS DE VIC,Saint-Gervais-de-Vic,Saint-Gervais-de-Vic,7218, COM,72287,52,72,72D,723,0,SAINT GERVAIS EN BELIN,Saint-Gervais-en-Belin,Saint-Gervais-en-Belin,7204, -COMD,72288,,,,,0,SAINT HILAIRE LE LIERRU,Saint-Hilaire-le-Lierru,Saint-Hilaire-le-Lierru,,72363 COM,72289,52,72,72D,723,0,SAINTE JAMME SUR SARTHE,Sainte-Jamme-sur-Sarthe,Sainte-Jamme-sur-Sarthe,7201, COM,72290,52,72,72D,723,0,SAINT JEAN D ASSE,Saint-Jean-d'Assé,Saint-Jean-d'Assé,7201, COM,72291,52,72,72D,721,0,SAINT JEAN DE LA MOTTE,Saint-Jean-de-la-Motte,Saint-Jean-de-la-Motte,7208, @@ -30885,7 +30850,6 @@ COM,72360,52,72,72D,723,0,TRANGE,Trangé,Trangé,7216, COM,72361,52,72,72D,722,0,TRESSON,Tresson,Tresson,7218, COM,72362,52,72,72D,722,2,TRONCHET,Tronchet,Le Tronchet,7220, COM,72363,52,72,72D,722,0,TUFFE VAL DE LA CHERONNE,Tuffé Val de la Chéronne,Tuffé Val de la Chéronne,7205, -COMD,72363,,,,,0,TUFFE,Tuffé,Tuffé,,72363 COM,72364,52,72,72D,721,0,VAAS,Vaas,Vaas,7208, COM,72366,52,72,72D,722,0,VALENNES,Valennes,Valennes,7218, COM,72367,52,72,72D,721,0,VALLON SUR GEE,Vallon-sur-Gée,Vallon-sur-Gée,7207, @@ -33118,7 +33082,7 @@ COM,79024,75,79,79D,792,1,AZAY LE BRULE,Azay-le-Brûlé,Azay-le-Brûlé,7915, COM,79025,75,79,79D,793,1,AZAY SUR THOUET,Azay-sur-Thouet,Azay-sur-Thouet,7906, COMD,79026,,,,,0,BAGNEUX,Bagneux,Bagneux,,79014 COMD,79027,,,,,3,BATAILLE,Bataille,La Bataille,,79083 -COMA,79028,,,,,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire,,79049 +COMD,79028,,,,,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire,,79049 COM,79029,75,79,79D,793,0,BEAULIEU SOUS PARTHENAY,Beaulieu-sous-Parthenay,Beaulieu-sous-Parthenay,7906, COM,79030,75,79,79D,792,0,BEAUSSAIS VITRE,Beaussais-Vitré,Beaussais-Vitré,7903, COM,79031,75,79,79D,792,0,BEAUVOIR SUR NIORT,Beauvoir-sur-Niort,Beauvoir-sur-Niort,7909, @@ -33139,7 +33103,7 @@ COM,79048,75,79,79D,792,3,CRECHE,Crèche,La Crèche,7915, COM,79049,75,79,79D,791,0,BRESSUIRE,Bressuire,Bressuire,7902, COM,79050,75,79,79D,791,0,BRETIGNOLLES,Bretignolles,Bretignolles,7904, COMD,79051,,,,,2,BREUIL BERNARD,Breuil-Bernard,Le Breuil-Bernard,,79179 -COMA,79052,,,,,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée,,79049 +COMD,79052,,,,,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée,,79049 COMD,79053,,,,,2,BREUIL SOUS ARGENTON,Breuil-sous-Argenton,Le Breuil-sous-Argenton,,79013 COMD,79054,,,,,0,BRIE,Brie,Brie,,79196 COM,79055,75,79,79D,792,0,BRIEUIL SUR CHIZE,Brieuil-sur-Chizé,Brieuil-sur-Chizé,7909, @@ -33155,7 +33119,7 @@ COM,79063,75,79,79D,791,0,VAL EN VIGNES,Val en Vignes,Val en Vignes,7917, COMD,79063,,,,,0,CERSAY,Cersay,Cersay,,79063 COM,79064,75,79,79D,792,0,FONTIVILLIE,Fontivillié,Fontivillié,7908, COMD,79064,,,,,0,CHAIL,Chail,Chail,,79064 -COMA,79065,,,,,0,CHAMBROUTET,Chambroutet,Chambroutet,,79049 +COMD,79065,,,,,0,CHAMBROUTET,Chambroutet,Chambroutet,,79049 COM,79066,75,79,79D,793,0,CHAMPDENIERS,Champdeniers,Champdeniers,7901, COMD,79068,,,,,0,CHANTECORPS,Chantecorps,Chantecorps,,79105 COM,79069,75,79,79D,791,0,CHANTELOUP,Chanteloup,Chanteloup,7904, @@ -33183,7 +33147,7 @@ COM,79089,75,79,79D,793,2,CHILLOU,Chillou,Le Chillou,7917, COM,79090,75,79,79D,792,0,CHIZE,Chizé,Chizé,7909, COM,79091,75,79,79D,791,0,CIRIERES,Cirières,Cirières,7904, COM,79092,75,79,79D,793,0,CLAVE,Clavé,Clavé,7906, -COMA,79093,,,,,0,CLAZAY,Clazay,Clazay,,79049 +COMD,79093,,,,,0,CLAZAY,Clazay,Clazay,,79049 COM,79094,75,79,79D,791,0,CLESSE,Clessé,Clessé,7904, COM,79095,75,79,79D,792,0,CLUSSAIS LA POMMERAIE,Clussais-la-Pommeraie,Clussais-la-Pommeraie,7908, COM,79096,75,79,79D,791,0,COMBRAND,Combrand,Combrand,7904, @@ -33269,7 +33233,7 @@ COM,79179,75,79,79D,791,0,MONCOUTANT SUR SEVRE,Moncoutant-sur-Sèvre,Moncoutant- COMD,79179,,,,,0,MONCOUTANT,Moncoutant,Moncoutant,,79179 COM,79180,75,79,79D,792,0,MONTALEMBERT,Montalembert,Montalembert,7908, COMD,79181,,,,,0,MONTIGNE,Montigné,Montigné,,79061 -COMA,79182,,,,,0,MONTIGNY,Montigny,Montigny,,79123 +COMD,79182,,,,,0,MONTIGNY,Montigny,Montigny,,79123 COM,79183,75,79,79D,791,0,MONTRAVERS,Montravers,Montravers,7904, COM,79184,75,79,79D,792,3,MOTHE SAINT HERAY,Mothe-Saint-Héray,La Mothe-Saint-Héray,7903, COM,79185,75,79,79D,792,1,AIGONDIGNE,Aigondigné,Aigondigné,7903, @@ -33280,8 +33244,8 @@ COMD,79188,,,,,0,MOUTIERS SOUS CHANTEMERLE,Moutiers-sous-Chantemerle,Moutiers-so COM,79189,75,79,79D,792,0,NANTEUIL,Nanteuil,Nanteuil,7915, COM,79190,75,79,79D,791,0,NEUVY BOUIN,Neuvy-Bouin,Neuvy-Bouin,7904, COM,79191,75,79,79D,792,0,NIORT,Niort,Niort,7999, -COMA,79192,,,,,0,NOIRLIEU,Noirlieu,Noirlieu,,79049 -COMA,79193,,,,,0,NOIRTERRE,Noirterre,Noirterre,,79049 +COMD,79192,,,,,0,NOIRLIEU,Noirlieu,Noirlieu,,79049 +COMD,79193,,,,,0,NOIRTERRE,Noirterre,Noirterre,,79049 COM,79195,75,79,79D,791,0,NUEIL LES AUBIERS,Nueil-les-Aubiers,Nueil-les-Aubiers,7907, COM,79196,75,79,79D,791,0,PLAINE ET VALLEES,Plaine-et-Vallées,Plaine-et-Vallées,7917, COMD,79196,,,,,1,OIRON,Oiron,Oiron,,79196 @@ -33315,7 +33279,7 @@ COM,79226,75,79,79D,793,2,RETAIL,Retail,Le Retail,7906, COM,79229,75,79,79D,792,3,ROCHENARD,Rochénard,La Rochénard,7909, COM,79230,75,79,79D,792,0,ROM,Rom,Rom,7903, COM,79231,75,79,79D,792,0,ROMANS,Romans,Romans,7915, -COMA,79232,,,,,3,RONDE,Ronde,La Ronde,,79123 +COMD,79232,,,,,3,RONDE,Ronde,La Ronde,,79123 COMA,79233,,,,,0,RORTHAIS,Rorthais,Rorthais,,79079 COM,79235,75,79,79D,791,0,SAINT AMAND SUR SEVRE,Saint-Amand-sur-Sèvre,Saint-Amand-sur-Sèvre,7907, COM,79236,75,79,79D,791,0,SAINT ANDRE SUR SEVRE,Saint-André-sur-Sèvre,Saint-André-sur-Sèvre,7904, @@ -33350,7 +33314,7 @@ COM,79268,75,79,79D,793,0,SAINT LOUP LAMAIRE,Saint-Loup-Lamairé,Saint-Loup-Lama COM,79269,75,79,79D,793,0,SAINT MAIXENT DE BEUGNE,Saint-Maixent-de-Beugné,Saint-Maixent-de-Beugné,7901, COM,79270,75,79,79D,792,0,SAINT MAIXENT L ECOLE,Saint-Maixent-l'École,Saint-Maixent-l'École,7915, COM,79271,75,79,79D,793,0,SAINT MARC LA LANDE,Saint-Marc-la-Lande,Saint-Marc-la-Lande,7906, -COMA,79272,,,,,0,SAINT MARSAULT,Saint-Marsault,Saint-Marsault,,79123 +COMD,79272,,,,,0,SAINT MARSAULT,Saint-Marsault,Saint-Marsault,,79123 COM,79273,75,79,79D,792,0,SAINT MARTIN DE BERNEGOUE,Saint-Martin-de-Bernegoue,Saint-Martin-de-Bernegoue,7914, COM,79274,75,79,79D,791,0,SAINT MARTIN DE MACON,Saint-Martin-de-Mâcon,Saint-Martin-de-Mâcon,7917, COM,79276,75,79,79D,792,0,SAINT MARTIN DE SAINT MAIXENT,Saint-Martin-de-Saint-Maixent,Saint-Martin-de-Saint-Maixent,7915, @@ -33373,7 +33337,7 @@ COMD,79292,,,,,0,SAINTE RADEGONDE,Sainte-Radegonde,Sainte-Radegonde,,79329 COM,79293,75,79,79D,792,0,SAINT REMY,Saint-Rémy,Saint-Rémy,7901, COM,79294,75,79,79D,792,0,SAINT ROMANS DES CHAMPS,Saint-Romans-des-Champs,Saint-Romans-des-Champs,7914, COM,79295,75,79,79D,792,0,SAINT ROMANS LES MELLE,Saint-Romans-lès-Melle,Saint-Romans-lès-Melle,7908, -COMA,79296,,,,,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,,79049 +COMD,79296,,,,,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,,79049 COM,79297,75,79,79D,792,0,SAINTE SOLINE,Sainte-Soline,Sainte-Soline,7903, COM,79298,75,79,79D,792,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,7905, COM,79299,75,79,79D,791,0,SAINT VARENT,Saint-Varent,Saint-Varent,7917, @@ -33399,7 +33363,7 @@ COM,79320,75,79,79D,793,0,SURIN,Surin,Surin,7901, COMD,79321,,,,,0,TAIZE MAULAIS,Taizé-Maulais,Taizé-Maulais,,79196 COM,79322,75,79,79D,793,2,TALLUD,Tallud,Le Tallud,7913, COMA,79323,,,,,2,TEMPLE,Temple,Le Temple,,79079 -COMA,79324,,,,,0,TERVES,Terves,Terves,,79049 +COMD,79324,,,,,0,TERVES,Terves,Terves,,79049 COMD,79325,,,,,0,TESSONNIERE,Tessonnière,Tessonnière,,79005 COM,79326,75,79,79D,793,0,THENEZAY,Thénezay,Thénezay,7906, COMD,79327,,,,,0,THORIGNE,Thorigné,Thorigné,,79185 @@ -34326,7 +34290,7 @@ COM,81081,76,81,81D,812,0,DOURGNE,Dourgne,Dourgne,8118, COM,81082,76,81,81D,811,2,DOURN,Dourn,Le Dourn,8105, COM,81083,76,81,81D,812,0,DURFORT,Durfort,Durfort,8118, COM,81084,76,81,81D,812,1,ESCOUSSENS,Escoussens,Escoussens,8118, -COM,81085,76,81,81D,812,1,ESCROUX,Escroux,Escroux,8114, +COM,81085,76,81,81D,812,0,LACAPELLE ESCROUX,Lacapelle-Escroux,Lacapelle-Escroux,8114, COM,81086,76,81,81D,812,1,ESPERAUSSES,Espérausses,Espérausses,8114, COM,81087,76,81,81D,811,0,FAYSSAC,Fayssac,Fayssac,8110, COM,81088,76,81,81D,811,0,FAUCH,Fauch,Fauch,8113, @@ -35101,7 +35065,7 @@ COM,85033,52,85,85D,851,0,BOURNEAU,Bourneau,Bourneau,8504, COM,85034,52,85,85D,852,0,BOURNEZEAU,Bournezeau,Bournezeau,8503, COM,85035,52,85,85D,853,0,BRETIGNOLLES SUR MER,Bretignolles-sur-Mer,Bretignolles-sur-Mer,8515, COM,85036,52,85,85D,851,3,BRETONNIERE LA CLAYE,Bretonnière-la-Claye,La Bretonnière-la-Claye,8509, -COM,85037,52,85,85D,851,0,BREUIL BARRET,Breuil-Barret,Breuil-Barret,8504, +COMD,85037,,,,,0,BREUIL BARRET,Breuil-Barret,Breuil-Barret,,85289 COM,85038,52,85,85D,852,4,BROUZILS,Brouzils,Les Brouzils,8510, COM,85039,52,85,85D,852,3,BRUFFIERE,Bruffière,La Bruffière,8511, COM,85040,52,85,85D,851,3,CAILLERE SAINT HILAIRE,Caillère-Saint-Hilaire,La Caillère-Saint-Hilaire,8504, @@ -35117,7 +35081,7 @@ COM,85049,52,85,85D,851,0,CHAMPAGNE LES MARAIS,Champagné-les-Marais,Champagné- COM,85050,52,85,85D,853,2,CHAMP SAINT PERE,Champ-Saint-Père,Le Champ-Saint-Père,8509, COM,85051,52,85,85D,852,0,CHANTONNAY,Chantonnay,Chantonnay,8503, COMD,85052,,,,,3,CHAPELLE ACHARD,Chapelle-Achard,La Chapelle-Achard,,85152 -COM,85053,52,85,85D,851,3,CHAPELLE AUX LYS,Chapelle-aux-Lys,La Chapelle-aux-Lys,8504, +COMD,85053,,,,,3,CHAPELLE AUX LYS,Chapelle-aux-Lys,La Chapelle-aux-Lys,,85289 COM,85054,52,85,85D,853,3,CHAPELLE HERMIER,Chapelle-Hermier,La Chapelle-Hermier,8517, COM,85055,52,85,85D,852,3,CHAPELLE PALLUAU,Chapelle-Palluau,La Chapelle-Palluau,8502, COM,85056,52,85,85D,851,3,CHAPELLE THEMER,Chapelle-Thémer,La Chapelle-Thémer,8504, @@ -35346,7 +35310,8 @@ COM,85285,52,85,85D,852,2,TABLIER,Tablier,Le Tablier,8509, COM,85286,52,85,85D,851,3,TAILLEE,Taillée,La Taillée,8508, COM,85287,52,85,85D,851,0,TALLUD SAINTE GEMME,Tallud-Sainte-Gemme,Tallud-Sainte-Gemme,8506, COM,85288,52,85,85D,853,0,TALMONT SAINT HILAIRE,Talmont-Saint-Hilaire,Talmont-Saint-Hilaire,8517, -COM,85289,52,85,85D,851,3,TARDIERE,Tardière,La Tardière,8504, +COM,85289,52,85,85D,851,0,TERVAL,Terval,Terval,8504, +COMD,85289,,,,,3,TARDIERE,Tardière,La Tardière,,85289 COM,85290,52,85,85D,851,0,THIRE,Thiré,Thiré,8504, COM,85291,52,85,85D,852,0,THORIGNY,Thorigny,Thorigny,8503, COM,85292,52,85,85D,851,0,THOUARSAIS BOUILDROUX,Thouarsais-Bouildroux,Thouarsais-Bouildroux,8504, @@ -35885,7 +35850,6 @@ COM,88014,44,88,88D,883,1,ARRENTES DE CORCIEUX,Arrentès-de-Corcieux,Arrentès-d COM,88015,44,88,88D,882,1,ATTIGNEVILLE,Attignéville,Attignéville,8810, COM,88016,44,88,88D,882,1,ATTIGNY,Attigny,Attigny,8804, COM,88017,44,88,88D,882,1,AULNOIS,Aulnois,Aulnois,8817, -COMD,88018,,,,,1,AUMONTZEY,Aumontzey,Aumontzey,,88218 COM,88019,44,88,88D,882,1,AUTIGNY LA TOUR,Autigny-la-Tour,Autigny-la-Tour,8810, COM,88020,44,88,88D,882,1,AUTREVILLE,Autreville,Autreville,8810, COM,88021,44,88,88D,881,1,AUTREY,Autrey,Autrey,8813, @@ -36081,7 +36045,6 @@ COM,88214,44,88,88D,882,0,GRANDRUPT DE BAINS,Grandrupt-de-Bains,Grandrupt-de-Bai COM,88215,44,88,88D,883,0,GRANDRUPT,Grandrupt,Grandrupt,8811, COM,88216,44,88,88D,881,0,GRANDVILLERS,Grandvillers,Grandvillers,8802, COM,88218,44,88,88D,883,0,GRANGES AUMONTZEY,Granges-Aumontzey,Granges-Aumontzey,8807, -COMD,88218,,,,,0,GRANGES SUR VOLOGNE,Granges-sur-Vologne,Granges-sur-Vologne,,88218 COM,88219,44,88,88D,882,0,GREUX,Greux,Greux,8810, COM,88220,44,88,88D,882,0,GRIGNONCOURT,Grignoncourt,Grignoncourt,8804, COM,88221,44,88,88D,881,0,GRUEY LES SURANCE,Gruey-lès-Surance,Gruey-lès-Surance,8816, @@ -37536,23 +37499,23 @@ COM,97231,02,972,972R,9723,4,TROIS ILETS,Trois-Îlets,Les Trois-Îlets,, COM,97232,02,972,972R,9723,2,VAUCLIN,Vauclin,Le Vauclin,, COM,97233,02,972,972R,9724,2,MORNE VERT,Morne-Vert,Le Morne-Vert,, COM,97234,02,972,972R,9724,0,BELLEFONTAINE,Bellefontaine,Bellefontaine,, -COM,97301,03,973,973R,9731,0,REGINA,Régina,Régina,, +COM,97301,03,973,973R,9733,0,REGINA,Régina,Régina,, COM,97302,03,973,973R,9731,0,CAYENNE,Cayenne,Cayenne,, COM,97303,03,973,973R,9731,1,IRACOUBO,Iracoubo,Iracoubo,, COM,97304,03,973,973R,9731,0,KOUROU,Kourou,Kourou,, COM,97305,03,973,973R,9731,0,MACOURIA,Macouria,Macouria,, COM,97306,03,973,973R,9732,0,MANA,Mana,Mana,, COM,97307,03,973,973R,9731,0,MATOURY,Matoury,Matoury,, -COM,97308,03,973,973R,9731,0,SAINT GEORGES,Saint-Georges,Saint-Georges,, +COM,97308,03,973,973R,9733,0,SAINT GEORGES,Saint-Georges,Saint-Georges,, COM,97309,03,973,973R,9731,0,REMIRE MONTJOLY,Remire-Montjoly,Remire-Montjoly,, COM,97310,03,973,973R,9731,0,ROURA,Roura,Roura,, COM,97311,03,973,973R,9732,0,SAINT LAURENT DU MARONI,Saint-Laurent-du-Maroni,Saint-Laurent-du-Maroni,, COM,97312,03,973,973R,9731,0,SINNAMARY,Sinnamary,Sinnamary,, COM,97313,03,973,973R,9731,0,MONTSINERY TONNEGRANDE,Montsinéry-Tonnegrande,Montsinéry-Tonnegrande,, -COM,97314,03,973,973R,9731,1,OUANARY,Ouanary,Ouanary,, +COM,97314,03,973,973R,9733,1,OUANARY,Ouanary,Ouanary,, COM,97352,03,973,973R,9732,0,SAUL,Saül,Saül,, COM,97353,03,973,973R,9732,0,MARIPASOULA,Maripasoula,Maripasoula,, -COM,97356,03,973,973R,9731,0,CAMOPI,Camopi,Camopi,, +COM,97356,03,973,973R,9733,0,CAMOPI,Camopi,Camopi,, COM,97357,03,973,973R,9732,0,GRAND SANTI,Grand-Santi,Grand-Santi,, COM,97358,03,973,973R,9731,0,SAINT ELIE,Saint-Élie,Saint-Élie,, COM,97360,03,973,973R,9732,1,APATOU,Apatou,Apatou,, diff --git a/sources/donnees_communes.csv b/sources/donnees_communes.csv index 923eeef..fe39eeb 100644 --- a/sources/donnees_communes.csv +++ b/sources/donnees_communes.csv @@ -34979,3 +34979,4 @@ CODREG;REG;CODDEP;CODARR;CODCAN;CODCOM;COM;PMUN;PCAP;PTOT 04;La Réunion;974;2;99;422;Le Tampon;80778;950;81728 04;La Réunion;974;4;14;423;Les Trois-Bassins;6953;90;7043 04;La Réunion;974;2;16;424;Cilaos;5568;83;5651 +28;Normandie;27;1;12;676;Les Trois Lacs;1759;45;1804 diff --git a/sources/epcicom.xlsx b/sources/epcicom.xlsx index 13d6e32..51dcac1 100644 Binary files a/sources/epcicom.xlsx and b/sources/epcicom.xlsx differ diff --git a/sources/mouvements-communes.csv b/sources/mouvements-communes.csv index eeb068f..64f2d13 100644 --- a/sources/mouvements-communes.csv +++ b/sources/mouvements-communes.csv @@ -1,32 +1,96 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,COM_AP,TNCC_AP,NCC_AP,NCCENR_AP,LIBELLE_AP -32,2022-01-01,COM,02054,0,BAZOCHES SUR VESLES,Bazoches-sur-Vesles,Bazoches-sur-Vesles,COMD,02054,0,BAZOCHES SUR VESLES,Bazoches-sur-Vesles,Bazoches-sur-Vesles -32,2022-01-01,COM,02054,0,BAZOCHES SUR VESLES,Bazoches-sur-Vesles,Bazoches-sur-Vesles,COM,02054,0,BAZOCHES ET SAINT THIBAUT,Bazoches-et-Saint-Thibaut,Bazoches-et-Saint-Thibaut -32,2022-01-01,COM,02695,0,SAINT THIBAUT,Saint-Thibaut,Saint-Thibaut,COM,02054,0,BAZOCHES ET SAINT THIBAUT,Bazoches-et-Saint-Thibaut,Bazoches-et-Saint-Thibaut -32,2022-01-01,COM,02695,0,SAINT THIBAUT,Saint-Thibaut,Saint-Thibaut,COMD,02695,0,SAINT THIBAUT,Saint-Thibaut,Saint-Thibaut -10,2022-01-01,COM,09207,0,MONTGAILLARD,Montgaillard,Montgaillard,COM,09207,0,MONTGAILHARD,Montgailhard,Montgailhard -10,2022-01-01,COMD,14144,0,CAUMONT SUR ORNE,Caumont-sur-Orne,Caumont-sur-Orne,COM,14689,0,THURY HARCOURT LE HOM,Thury-Harcourt-le-Hom,Thury-Harcourt-le-Hom -10,2022-01-01,COMD,14213,0,CURCY SUR ORNE,Curcy-sur-Orne,Curcy-sur-Orne,COM,14689,0,THURY HARCOURT LE HOM,Thury-Harcourt-le-Hom,Thury-Harcourt-le-Hom -10,2022-01-01,COMD,14324,0,HAMARS,Hamars,Hamars,COM,14689,0,THURY HARCOURT LE HOM,Thury-Harcourt-le-Hom,Thury-Harcourt-le-Hom -10,2022-01-01,COMD,14628,0,SAINT MARTIN DE SALLEN,Saint-Martin-de-Sallen,Saint-Martin-de-Sallen,COM,14689,0,THURY HARCOURT LE HOM,Thury-Harcourt-le-Hom,Thury-Harcourt-le-Hom -10,2022-01-01,COM,14689,2,HOM,Hom,Le Hom,COMD,14628,0,SAINT MARTIN DE SALLEN,Saint-Martin-de-Sallen,Saint-Martin-de-Sallen -10,2022-01-01,COM,14689,2,HOM,Hom,Le Hom,COMD,14213,0,CURCY SUR ORNE,Curcy-sur-Orne,Curcy-sur-Orne -10,2022-01-01,COM,14689,2,HOM,Hom,Le Hom,COMD,14144,0,CAUMONT SUR ORNE,Caumont-sur-Orne,Caumont-sur-Orne -10,2022-01-01,COMD,14689,0,THURY HARCOURT,Thury-Harcourt,Thury-Harcourt,COM,14689,0,THURY HARCOURT LE HOM,Thury-Harcourt-le-Hom,Thury-Harcourt-le-Hom -10,2022-01-01,COM,14689,2,HOM,Hom,Le Hom,COMD,14324,0,HAMARS,Hamars,Hamars +32,2023-01-01,COM,1039,0,BEON,Béon,Béon,COMD,1039,0,BEON,Béon,Béon +32,2023-01-01,COM,1039,0,BEON,Béon,Béon,COM,1138,0,CULOZ BEON,Culoz-Béon,Culoz-Béon +35,2023-01-01,COMD,1095,0,CHAVANNES SUR SURAN,Chavannes-sur-Suran,Chavannes-sur-Suran,COM,1095,0,NIVIGNE ET SURAN,Nivigne et Suran,Nivigne et Suran +32,2023-01-01,COM,1138,0,CULOZ,Culoz,Culoz,COMD,1138,0,CULOZ,Culoz,Culoz +32,2023-01-01,COM,1138,0,CULOZ,Culoz,Culoz,COM,1138,0,CULOZ BEON,Culoz-Béon,Culoz-Béon +35,2023-01-01,COMD,1172,0,GERMAGNAT,Germagnat,Germagnat,COM,1095,0,NIVIGNE ET SURAN,Nivigne et Suran,Nivigne et Suran +32,2023-01-01,COM,2077,0,BERZY LE SEC,Berzy-le-Sec,Berzy-le-Sec,COMD,2077,0,BERZY LE SEC,Berzy-le-Sec,Berzy-le-Sec +32,2023-01-01,COM,2077,0,BERZY LE SEC,Berzy-le-Sec,Berzy-le-Sec,COM,2564,0,BERNOY LE CHATEAU,Bernoy-le-Château,Bernoy-le-Château +32,2023-01-01,COM,2564,0,NOYANT ET ACONIN,Noyant-et-Aconin,Noyant-et-Aconin,COM,2564,0,BERNOY LE CHATEAU,Bernoy-le-Château,Bernoy-le-Château +32,2023-01-01,COM,2564,0,NOYANT ET ACONIN,Noyant-et-Aconin,Noyant-et-Aconin,COMD,2564,0,NOYANT ET ACONIN,Noyant-et-Aconin,Noyant-et-Aconin +10,2023-01-01,COM,3223,0,SAINT CHRISTOPHE,Saint-Christophe,Saint-Christophe,COM,3223,0,SAINT CHRISTOPHE EN BOURBONNAIS,Saint-Christophe-en-Bourbonnais,Saint-Christophe-en-Bourbonnais +32,2023-01-01,COM,9056,0,BEZAC,Bézac,Bézac,COM,9056,0,BEZAC,Bézac,Bézac +32,2023-01-01,COM,9056,0,BEZAC,Bézac,Bézac,COMD,9056,0,BEZAC,Bézac,Bézac +32,2023-01-01,COM,9255,0,SAINT AMANS,Saint-Amans,Saint-Amans,COM,9056,0,BEZAC,Bézac,Bézac +32,2023-01-01,COM,9255,0,SAINT AMANS,Saint-Amans,Saint-Amans,COMD,9255,0,SAINT AMANS,Saint-Amans,Saint-Amans +32,2023-01-01,COM,16140,0,FONTCLAIREAU,Fontclaireau,Fontclaireau,COMD,16140,0,FONTCLAIREAU,Fontclaireau,Fontclaireau +32,2023-01-01,COM,16140,0,FONTCLAIREAU,Fontclaireau,Fontclaireau,COM,16206,0,MANSLE LES FONTAINES,Mansle-les-Fontaines,Mansle-les-Fontaines +35,2023-01-01,COMD,16156,0,GOURVILLE,Gourville,Gourville,COM,16286,0,ROUILLAC,Rouillac,Rouillac +32,2023-01-01,COM,16206,0,MANSLE,Mansle,Mansle,COM,16206,0,MANSLE LES FONTAINES,Mansle-les-Fontaines,Mansle-les-Fontaines +32,2023-01-01,COM,16206,0,MANSLE,Mansle,Mansle,COMD,16206,0,MANSLE,Mansle,Mansle +35,2023-01-01,COMD,16371,0,SONNEVILLE,Sonneville,Sonneville,COM,16286,0,ROUILLAC,Rouillac,Rouillac +10,2023-01-01,COM,17132,0,CRAMCHABAN,Cramchaban,Cramchaban,COM,17132,0,CRAM CHABAN,Cram-Chaban,Cram-Chaban +50,2023-01-01,COM,27058,4,TROIS LACS,Trois Lacs,Les Trois Lacs,COM,27676,4,TROIS LACS,Trois Lacs,Les Trois Lacs +35,2023-01-01,COMD,27090,2,BOSC ROGER EN ROUMOIS,Bosc-Roger-en-Roumois,Le Bosc-Roger-en-Roumois,COM,27090,0,BOSROUMOIS,Bosroumois,Bosroumois +35,2023-01-01,COMD,27093,0,BOSNORMAND,Bosnormand,Bosnormand,COM,27090,0,BOSROUMOIS,Bosroumois,Bosroumois +10,2023-01-01,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou,COM,28012,0,VALD YERRE,Vald'Yerre,Vald'Yerre +10,2023-01-01,COM,32289,0,MONTPEZAT,Montpézat,Montpézat,COM,32289,0,MONTPEZAT,Montpezat,Montpezat +10,2023-01-01,COM,32465,0,VILLEFRANCHE,Villefranche,Villefranche,COM,32465,0,VILLEFRANCHE D ASTARAC,Villefranche-d’Astarac,Villefranche-d’Astarac +10,2023-01-01,COM,33081,0,CADILLAC,Cadillac,Cadillac,COM,33081,0,CADILLAC SUR GARONNE,Cadillac-sur-Garonne,Cadillac-sur-Garonne +35,2023-01-01,COMD,37120,1,INGRANDES DE TOURAINE,Ingrandes-de-Touraine,Ingrandes-de-Touraine,COM,37232,0,COTEAUX SUR LOIRE,Coteaux-sur-Loire,Coteaux-sur-Loire +35,2023-01-01,COMD,37227,0,SAINT MICHEL SUR LOIRE,Saint-Michel-sur-Loire,Saint-Michel-sur-Loire,COM,37232,0,COTEAUX SUR LOIRE,Coteaux-sur-Loire,Coteaux-sur-Loire +35,2023-01-01,COMD,37232,0,SAINT PATRICE,Saint-Patrice,Saint-Patrice,COM,37232,0,COTEAUX SUR LOIRE,Coteaux-sur-Loire,Coteaux-sur-Loire +10,2023-01-01,COM,38243,2,MONESTIER DU PERCY,Monestier-du-Percy,Le Monestier-du-Percy,COM,38243,0,MONESTIER DU PERCY,Monestier-du-Percy,Monestier-du-Percy +10,2023-01-01,COM,38301,0,PERCY,Percy,Percy,COM,38301,2,PERCY,Percy,Le Percy +10,2023-01-01,COM,44066,0,GRANDCHAMPS DES FONTAINES,Grandchamps-des-Fontaines,Grandchamps-des-Fontaines,COM,44066,0,GRANDCHAMP DES FONTAINES,Grandchamp-des-Fontaines,Grandchamp-des-Fontaines +10,2023-01-01,COM,45259,0,QUIERS SUR BEZONDE,Quiers-sur-Bézonde,Quiers-sur-Bézonde,COM,45259,0,QUIERS SUR BEZONDE,Quiers-sur-Bezonde,Quiers-sur-Bezonde +32,2023-01-01,COM,50015,1,ANNOVILLE,Annoville,Annoville,COMD,50015,1,ANNOVILLE,Annoville,Annoville +32,2023-01-01,COM,50015,1,ANNOVILLE,Annoville,Annoville,COM,50272,0,TOURNEVILLE SUR MER,Tourneville-sur-Mer,Tourneville-sur-Mer +32,2023-01-01,COM,50272,0,LINGREVILLE,Lingreville,Lingreville,COM,50272,0,TOURNEVILLE SUR MER,Tourneville-sur-Mer,Tourneville-sur-Mer +32,2023-01-01,COM,50272,0,LINGREVILLE,Lingreville,Lingreville,COMD,50272,0,LINGREVILLE,Lingreville,Lingreville +32,2023-01-01,COM,51063,0,BINSON ET ORQUIGNY,Binson-et-Orquigny,Binson-et-Orquigny,COMD,51063,0,BINSON ET ORQUIGNY,Binson-et-Orquigny,Binson-et-Orquigny +32,2023-01-01,COM,51063,0,BINSON ET ORQUIGNY,Binson-et-Orquigny,Binson-et-Orquigny,COM,51457,0,COEUR DE LA VALLEE,Coeur-de-la-Vallée,Coeur-de-la-Vallée +32,2023-01-01,COM,51457,0,REUIL,Reuil,Reuil,COM,51457,0,COEUR DE LA VALLEE,Coeur-de-la-Vallée,Coeur-de-la-Vallée +32,2023-01-01,COM,51457,0,REUIL,Reuil,Reuil,COMD,51457,0,REUIL,Reuil,Reuil +32,2023-01-01,COM,51637,0,VILLERS SOUS CHATILLON,Villers-sous-Châtillon,Villers-sous-Châtillon,COM,51457,0,COEUR DE LA VALLEE,Coeur-de-la-Vallée,Coeur-de-la-Vallée +32,2023-01-01,COM,51637,0,VILLERS SOUS CHATILLON,Villers-sous-Châtillon,Villers-sous-Châtillon,COMD,51637,0,VILLERS SOUS CHATILLON,Villers-sous-Châtillon,Villers-sous-Châtillon +10,2023-01-01,COM,56262,0,BONO,Bono,Bono,COM,56262,2,BONO,Bono,Le Bono +10,2023-01-01,COM,62588,0,MONTREUIL,Montreuil,Montreuil,COM,62588,0,MONTREUIL SUR MER,Montreuil-sur-Mer,Montreuil-sur-Mer +10,2023-01-01,COM,63233,0,MONTAIGUT,Montaigut,Montaigut,COM,63233,0,MONTAIGUT EN COMBRAILLE,Montaigut-en-Combraille,Montaigut-en-Combraille +32,2023-01-01,COM,71042,0,BONNAY,Bonnay,Bonnay,COMD,71042,0,BONNAY,Bonnay,Bonnay +32,2023-01-01,COM,71042,0,BONNAY,Bonnay,Bonnay,COM,71042,0,BONNAY SAINT YTHAIRE,Bonnay-Saint-Ythaire,Bonnay-Saint-Ythaire +32,2023-01-01,COM,71492,0,SAINT YTHAIRE,Saint-Ythaire,Saint-Ythaire,COM,71042,0,BONNAY SAINT YTHAIRE,Bonnay-Saint-Ythaire,Bonnay-Saint-Ythaire +32,2023-01-01,COM,71492,0,SAINT YTHAIRE,Saint-Ythaire,Saint-Ythaire,COMD,71492,0,SAINT YTHAIRE,Saint-Ythaire,Saint-Ythaire +10,2023-01-01,COM,81085,1,ESCROUX,Escroux,Escroux,COM,81085,0,LACAPELLE ESCROUX,Lacapelle-Escroux,Lacapelle-Escroux +32,2023-01-01,COM,85037,0,BREUIL BARRET,Breuil-Barret,Breuil-Barret,COMD,85037,0,BREUIL BARRET,Breuil-Barret,Breuil-Barret +32,2023-01-01,COM,85037,0,BREUIL BARRET,Breuil-Barret,Breuil-Barret,COM,85289,0,TERVAL,Terval,Terval +32,2023-01-01,COM,85053,3,CHAPELLE AUX LYS,Chapelle-aux-Lys,La Chapelle-aux-Lys,COMD,85053,3,CHAPELLE AUX LYS,Chapelle-aux-Lys,La Chapelle-aux-Lys +32,2023-01-01,COM,85053,3,CHAPELLE AUX LYS,Chapelle-aux-Lys,La Chapelle-aux-Lys,COM,85289,0,TERVAL,Terval,Terval +32,2023-01-01,COM,85289,3,TARDIERE,Tardière,La Tardière,COMD,85289,3,TARDIERE,Tardière,La Tardière +32,2023-01-01,COM,85289,3,TARDIERE,Tardière,La Tardière,COM,85289,0,TERVAL,Terval,Terval +35,2022-12-22,COMD,1176,2,GRAND ABERGEMENT,Grand-Abergement,Le Grand-Abergement,COM,1187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey +35,2022-12-22,COMD,1187,1,HOTONNES,Hotonnes,Hotonnes,COM,1187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey +35,2022-12-22,COMD,1292,2,PETIT ABERGEMENT,Petit-Abergement,Le Petit-Abergement,COM,1187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey +35,2022-12-22,COMD,1409,0,SONGIEU,Songieu,Songieu,COM,1187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey +34,2022-08-31,COMA,14683,0,TAILLEVILLE,Tailleville,Tailleville,COM,14228,0,DOUVRES LA DELIVRANDE,Douvres-la-Délivrande,Douvres-la-Délivrande +35,2022-06-01,COMD,27024,2,RONCENAY AUTHENAY,Roncenay-Authenay,Le Roncenay-Authenay,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton +35,2022-06-01,COMD,27198,0,DAMVILLE,Damville,Damville,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton +35,2022-06-01,COMD,27293,0,GOUVILLE,Gouville,Gouville,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton +35,2022-06-01,COMD,27297,0,GRANDVILLIERS,Grandvilliers,Grandvilliers,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton +35,2022-06-01,COMD,27387,0,MANTHELON,Manthelon,Manthelon,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton +35,2022-06-01,COMD,27416,0,BUIS SUR DAMVILLE,Buis-sur-Damville,Buis-sur-Damville,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton +35,2022-06-01,COMD,27491,0,ROMAN,Roman,Roman,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton +35,2022-06-01,COMD,27503,2,SACQ,Sacq,Le Sacq,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton +35,2022-03-21,COMD,38145,0,DIONAY,Dionay,Dionay,COM,38359,0,SAINT ANTOINE L ABBAYE,Saint Antoine l'Abbaye,Saint Antoine l'Abbaye +32,2022-01-01,COM,2054,0,BAZOCHES SUR VESLES,Bazoches-sur-Vesles,Bazoches-sur-Vesles,COMD,2054,0,BAZOCHES SUR VESLES,Bazoches-sur-Vesles,Bazoches-sur-Vesles +32,2022-01-01,COM,2054,0,BAZOCHES SUR VESLES,Bazoches-sur-Vesles,Bazoches-sur-Vesles,COM,2054,0,BAZOCHES ET SAINT THIBAUT,Bazoches-et-Saint-Thibaut,Bazoches-et-Saint-Thibaut +32,2022-01-01,COM,2695,0,SAINT THIBAUT,Saint-Thibaut,Saint-Thibaut,COM,2054,0,BAZOCHES ET SAINT THIBAUT,Bazoches-et-Saint-Thibaut,Bazoches-et-Saint-Thibaut +32,2022-01-01,COM,2695,0,SAINT THIBAUT,Saint-Thibaut,Saint-Thibaut,COMD,2695,0,SAINT THIBAUT,Saint-Thibaut,Saint-Thibaut +10,2022-01-01,COM,9207,0,MONTGAILLARD,Montgaillard,Montgaillard,COM,9207,0,MONTGAILHARD,Montgailhard,Montgailhard 10,2022-01-01,COM,14689,2,HOM,Hom,Le Hom,COM,14689,0,THURY HARCOURT LE HOM,Thury-Harcourt-le-Hom,Thury-Harcourt-le-Hom -10,2022-01-01,COM,14689,2,HOM,Hom,Le Hom,COMD,14689,0,THURY HARCOURT,Thury-Harcourt,Thury-Harcourt 32,2022-01-01,COM,16010,1,AMBLEVILLE,Ambleville,Ambleville,COMD,16010,1,AMBLEVILLE,Ambleville,Ambleville 32,2022-01-01,COM,16010,1,AMBLEVILLE,Ambleville,Ambleville,COM,16186,0,LIGNIERES AMBLEVILLE,Lignières-Ambleville,Lignières-Ambleville -32,2022-01-01,COM,16186,0,LIGNIERES SONNEVILLE,Lignières-Sonneville,Lignières-Sonneville,COM,16186,0,LIGNIERES AMBLEVILLE,Lignières-Ambleville,Lignières-Ambleville 32,2022-01-01,COM,16186,0,LIGNIERES SONNEVILLE,Lignières-Sonneville,Lignières-Sonneville,COMD,16186,0,LIGNIERES SONNEVILLE,Lignières-Sonneville,Lignières-Sonneville +32,2022-01-01,COM,16186,0,LIGNIERES SONNEVILLE,Lignières-Sonneville,Lignières-Sonneville,COM,16186,0,LIGNIERES AMBLEVILLE,Lignières-Ambleville,Lignières-Ambleville 32,2022-01-01,COM,19092,2,JARDIN,Jardin,Le Jardin,COM,19143,0,MONTAIGNAC SUR DOUSTRE,Montaignac-sur-Doustre,Montaignac-sur-Doustre 32,2022-01-01,COM,19143,0,MONTAIGNAC SAINT HIPPOLYTE,Montaignac-Saint-Hippolyte,Montaignac-Saint-Hippolyte,COM,19143,0,MONTAIGNAC SUR DOUSTRE,Montaignac-sur-Doustre,Montaignac-sur-Doustre -32,2022-01-01,COM,24089,0,CAZOULES,Cazoulès,Cazoulès,COM,24325,0,PECHS DE L ESPERANCE,Pechs-de-l'Espérance,Pechs-de-l'Espérance 32,2022-01-01,COM,24089,0,CAZOULES,Cazoulès,Cazoulès,COMD,24089,0,CAZOULES,Cazoulès,Cazoulès +32,2022-01-01,COM,24089,0,CAZOULES,Cazoulès,Cazoulès,COM,24325,0,PECHS DE L ESPERANCE,Pechs-de-l'Espérance,Pechs-de-l'Espérance 32,2022-01-01,COM,24314,1,ORLIAGUET,Orliaguet,Orliaguet,COMD,24314,1,ORLIAGUET,Orliaguet,Orliaguet 32,2022-01-01,COM,24314,1,ORLIAGUET,Orliaguet,Orliaguet,COM,24325,0,PECHS DE L ESPERANCE,Pechs-de-l'Espérance,Pechs-de-l'Espérance -32,2022-01-01,COM,24325,0,PEYRILLAC ET MILLAC,Peyrillac-et-Millac,Peyrillac-et-Millac,COMD,24325,0,PEYRILLAC ET MILLAC,Peyrillac-et-Millac,Peyrillac-et-Millac 32,2022-01-01,COM,24325,0,PEYRILLAC ET MILLAC,Peyrillac-et-Millac,Peyrillac-et-Millac,COM,24325,0,PECHS DE L ESPERANCE,Pechs-de-l'Espérance,Pechs-de-l'Espérance +32,2022-01-01,COM,24325,0,PEYRILLAC ET MILLAC,Peyrillac-et-Millac,Peyrillac-et-Millac,COMD,24325,0,PEYRILLAC ET MILLAC,Peyrillac-et-Millac,Peyrillac-et-Millac 32,2022-01-01,COM,25134,0,CHATILLON SUR LISON,Châtillon-sur-Lison,Châtillon-sur-Lison,COM,25185,0,CUSSEY SUR LISON,Cussey-sur-Lison,Cussey-sur-Lison 32,2022-01-01,COM,25185,0,CUSSEY SUR LISON,Cussey-sur-Lison,Cussey-sur-Lison,COM,25185,0,CUSSEY SUR LISON,Cussey-sur-Lison,Cussey-sur-Lison 32,2022-01-01,COM,25375,0,MEREY SOUS MONTROND,Mérey-sous-Montrond,Mérey-sous-Montrond,COM,25375,4,MONTS RONDS,Monts-Ronds,Les Monts-Ronds @@ -35,376 +99,303 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2022-01-01,COM,26216,3,MOTTE DE GALAURE,Motte-de-Galaure,La Motte-de-Galaure,COMD,26216,3,MOTTE DE GALAURE,Motte-de-Galaure,La Motte-de-Galaure 32,2022-01-01,COM,26219,0,MUREILS,Mureils,Mureils,COM,26216,0,SAINT JEAN DE GALAURE,Saint-Jean-de-Galaure,Saint-Jean-de-Galaure 32,2022-01-01,COM,26219,0,MUREILS,Mureils,Mureils,COMD,26219,0,MUREILS,Mureils,Mureils -34,2022-01-01,COMD,27447,1,ORVAUX,Orvaux,Orvaux,COM,27447,2,VAL DORE,Val-Doré,Le Val-Doré -34,2022-01-01,COM,27447,2,VAL DORE,Val-Doré,Le Val-Doré,COM,27447,2,VAL DORE,Val-Doré,Le Val-Doré +35,2022-01-01,COMD,27447,1,ORVAUX,Orvaux,Orvaux,COM,27447,2,VAL DORE,Val-Doré,Le Val-Doré 10,2022-01-01,COM,35329,0,SOUGEAL,Sougéal,Sougéal,COM,35329,0,SOUGEAL,Sougeal,Sougeal 10,2022-01-01,COM,40295,0,SAUGNACQ ET MURET,Saugnacq-et-Muret,Saugnacq-et-Muret,COM,40295,0,SAUGNAC ET MURET,Saugnac-et-Muret,Saugnac-et-Muret 10,2022-01-01,COM,47176,0,MONGAILLARD,Mongaillard,Mongaillard,COM,47176,0,MONTGAILLARD EN ALBRET,Montgaillard-en-Albret,Montgaillard-en-Albret -34,2022-01-01,COMD,50005,1,AMFREVILLE,Amfreville,Amfreville,COM,50400,0,PICAUVILLE,Picauville,Picauville -34,2022-01-01,COMD,50153,0,CRETTEVILLE,Cretteville,Cretteville,COM,50400,0,PICAUVILLE,Picauville,Picauville +35,2022-01-01,COMD,50005,1,AMFREVILLE,Amfreville,Amfreville,COM,50400,0,PICAUVILLE,Picauville,Picauville +35,2022-01-01,COMD,50153,0,CRETTEVILLE,Cretteville,Cretteville,COM,50400,0,PICAUVILLE,Picauville,Picauville 34,2022-01-01,COMA,50201,0,GERVILLE LA FORET,Gerville-la-Forêt,Gerville-la-Forêt,COM,50629,0,VESLY,Vesly,Vesly -34,2022-01-01,COMD,50212,0,GOURBESVILLE,Gourbesville,Gourbesville,COM,50400,0,PICAUVILLE,Picauville,Picauville -34,2022-01-01,COMD,50250,1,HOUTTEVILLE,Houtteville,Houtteville,COM,50400,0,PICAUVILLE,Picauville,Picauville -34,2022-01-01,COMD,50333,4,MOITIERS EN BAUPTOIS,Moitiers-en-Bauptois,Les Moitiers-en-Bauptois,COM,50400,0,PICAUVILLE,Picauville,Picauville -34,2022-01-01,COMD,50400,0,PICAUVILLE,Picauville,Picauville,COM,50400,0,PICAUVILLE,Picauville,Picauville -34,2022-01-01,COM,50400,0,PICAUVILLE,Picauville,Picauville,COM,50400,0,PICAUVILLE,Picauville,Picauville -34,2022-01-01,COM,50629,0,VESLY,Vesly,Vesly,COM,50629,0,VESLY,Vesly,Vesly -34,2022-01-01,COMD,50642,0,VINDEFONTAINE,Vindefontaine,Vindefontaine,COM,50400,0,PICAUVILLE,Picauville,Picauville +35,2022-01-01,COMD,50212,0,GOURBESVILLE,Gourbesville,Gourbesville,COM,50400,0,PICAUVILLE,Picauville,Picauville +35,2022-01-01,COMD,50250,1,HOUTTEVILLE,Houtteville,Houtteville,COM,50400,0,PICAUVILLE,Picauville,Picauville +35,2022-01-01,COMD,50333,4,MOITIERS EN BAUPTOIS,Moitiers-en-Bauptois,Les Moitiers-en-Bauptois,COM,50400,0,PICAUVILLE,Picauville,Picauville +34,2022-01-01,COMA,50377,0,NOIRPALU,Noirpalu,Noirpalu,COM,50590,2,TANU,Tanu,Le Tanu +35,2022-01-01,COMD,50400,0,PICAUVILLE,Picauville,Picauville,COM,50400,0,PICAUVILLE,Picauville,Picauville +35,2022-01-01,COMD,50642,0,VINDEFONTAINE,Vindefontaine,Vindefontaine,COM,50400,0,PICAUVILLE,Picauville,Picauville 10,2022-01-01,COM,55013,1,ARRANCY SUR CRUSNE,Arrancy-sur-Crusne,Arrancy-sur-Crusne,COM,55013,1,ARRANCY SUR CRUSNES,Arrancy-sur-Crusnes,Arrancy-sur-Crusnes -32,2022-01-01,COM,56049,0,CROIXANVEC,Croixanvec,Croixanvec,COM,56213,0,SAINT GERAND CROIXANVEC,Saint-Gérand-Croixanvec,Saint-Gérand-Croixanvec 32,2022-01-01,COM,56049,0,CROIXANVEC,Croixanvec,Croixanvec,COMD,56049,0,CROIXANVEC,Croixanvec,Croixanvec +32,2022-01-01,COM,56049,0,CROIXANVEC,Croixanvec,Croixanvec,COM,56213,0,SAINT GERAND CROIXANVEC,Saint-Gérand-Croixanvec,Saint-Gérand-Croixanvec 32,2022-01-01,COM,56213,0,SAINT GERAND,Saint-Gérand,Saint-Gérand,COMD,56213,0,SAINT GERAND,Saint-Gérand,Saint-Gérand 32,2022-01-01,COM,56213,0,SAINT GERAND,Saint-Gérand,Saint-Gérand,COM,56213,0,SAINT GERAND CROIXANVEC,Saint-Gérand-Croixanvec,Saint-Gérand-Croixanvec 10,2022-01-01,COM,58251,0,SAINT LOUP,Saint-Loup,Saint-Loup,COM,58251,0,SAINT LOUP DES BOIS,Saint-Loup-des-Bois,Saint-Loup-des-Bois +35,2022-01-01,COMD,60018,1,ANSERVILLE,Anserville,Anserville,COM,60088,0,BORNEL,Bornel,Bornel +35,2022-01-01,COMD,60246,0,FOSSEUSE,Fosseuse,Fosseuse,COM,60088,0,BORNEL,Bornel,Bornel 10,2022-01-01,COM,64293,0,LABATUT,Labatut,Labatut,COM,64293,0,LABATUT FIGUIERES,Labatut-Figuières,Labatut-Figuières 10,2022-01-01,COM,66202,0,TARGASSONNE,Targassonne,Targassonne,COM,66202,0,TARGASONNE,Targasonne,Targasonne 10,2022-01-01,COM,72253,0,ROEZE SUR SARTHE,Roézé-sur-Sarthe,Roézé-sur-Sarthe,COM,72253,0,ROEZE SUR SARTHE,Roëzé-sur-Sarthe,Roëzé-sur-Sarthe -34,2022-01-01,COMD,78320,0,JEUFOSSE,Jeufosse,Jeufosse,COM,78320,0,NOTRE DAME DE LA MER,Notre-Dame-de-la-Mer,Notre-Dame-de-la-Mer -34,2022-01-01,COM,78320,0,NOTRE DAME DE LA MER,Notre-Dame-de-la-Mer,Notre-Dame-de-la-Mer,COM,78320,0,NOTRE DAME DE LA MER,Notre-Dame-de-la-Mer,Notre-Dame-de-la-Mer -34,2022-01-01,COMD,78503,0,PORT VILLEZ,Port-Villez,Port-Villez,COM,78320,0,NOTRE DAME DE LA MER,Notre-Dame-de-la-Mer,Notre-Dame-de-la-Mer +35,2022-01-01,COMD,78320,0,JEUFOSSE,Jeufosse,Jeufosse,COM,78320,0,NOTRE DAME DE LA MER,Notre-Dame-de-la-Mer,Notre-Dame-de-la-Mer +35,2022-01-01,COMD,78503,0,PORT VILLEZ,Port-Villez,Port-Villez,COM,78320,0,NOTRE DAME DE LA MER,Notre-Dame-de-la-Mer,Notre-Dame-de-la-Mer 32,2022-01-01,COM,85001,5,AIGUILLON SUR MER,Aiguillon-sur-Mer,L'Aiguillon-sur-Mer,COMD,85001,5,AIGUILLON SUR MER,Aiguillon-sur-Mer,L'Aiguillon-sur-Mer 32,2022-01-01,COM,85001,5,AIGUILLON SUR MER,Aiguillon-sur-Mer,L'Aiguillon-sur-Mer,COM,85001,5,AIGUILLON LA PRESQU ILE,Aiguillon-la-Presqu'île,L'Aiguillon-la-Presqu'île -32,2022-01-01,COM,85307,3,FAUTE SUR MER,Faute-sur-Mer,La Faute-sur-Mer,COMD,85307,3,FAUTE SUR MER,Faute-sur-Mer,La Faute-sur-Mer 32,2022-01-01,COM,85307,3,FAUTE SUR MER,Faute-sur-Mer,La Faute-sur-Mer,COM,85001,5,AIGUILLON LA PRESQU ILE,Aiguillon-la-Presqu'île,L'Aiguillon-la-Presqu'île -10,2022-01-01,COMD,88204,0,GIRMONT,Girmont,Girmont,COM,88465,0,THAON LES VOSGES,Thaon-les-Vosges,Thaon-les-Vosges -10,2022-01-01,COMD,88337,1,ONCOURT,Oncourt,Oncourt,COM,88465,0,THAON LES VOSGES,Thaon-les-Vosges,Thaon-les-Vosges -10,2022-01-01,COM,88465,0,CAPAVENIR VOSGES,Capavenir Vosges,Capavenir Vosges,COMD,88204,0,GIRMONT,Girmont,Girmont +32,2022-01-01,COM,85307,3,FAUTE SUR MER,Faute-sur-Mer,La Faute-sur-Mer,COMD,85307,3,FAUTE SUR MER,Faute-sur-Mer,La Faute-sur-Mer 10,2022-01-01,COM,88465,0,CAPAVENIR VOSGES,Capavenir Vosges,Capavenir Vosges,COM,88465,0,THAON LES VOSGES,Thaon-les-Vosges,Thaon-les-Vosges -10,2022-01-01,COM,88465,0,CAPAVENIR VOSGES,Capavenir Vosges,Capavenir Vosges,COMD,88337,1,ONCOURT,Oncourt,Oncourt -10,2022-01-01,COM,88465,0,CAPAVENIR VOSGES,Capavenir Vosges,Capavenir Vosges,COMD,88465,0,THAON LES VOSGES,Thaon-les-Vosges,Thaon-les-Vosges -34,2021-12-31,COMD,50248,2,HOMMET D ARTHENAY,Hommet-d'Arthenay,Le Hommet-d'Arthenay,COM,50409,0,PONT HEBERT,Pont-Hébert,Pont-Hébert -34,2021-12-31,COM,50409,0,PONT HEBERT,Pont-Hébert,Pont-Hébert,COM,50409,0,PONT HEBERT,Pont-Hébert,Pont-Hébert -34,2021-03-15,COM,25078,0,BOUCLANS,Bouclans,Bouclans,COM,25078,0,BOUCLANS,Bouclans,Bouclans -34,2021-03-15,COMD,25587,0,VAUCHAMPS,Vauchamps,Vauchamps,COM,25078,0,BOUCLANS,Bouclans,Bouclans -34,2021-03-01,COMD,14075,0,BISSIERES,Bissières,Bissières,COM,14410,0,MERY BISSIERES EN AUGE,Méry-Bissières-en-Auge,Méry-Bissières-en-Auge -34,2021-03-01,COM,14410,0,MERY BISSIERES EN AUGE,Méry-Bissières-en-Auge,Méry-Bissières-en-Auge,COM,14410,0,MERY BISSIERES EN AUGE,Méry-Bissières-en-Auge,Méry-Bissières-en-Auge -34,2021-03-01,COMD,14410,0,MERY CORBON,Méry-Corbon,Méry-Corbon,COM,14410,0,MERY BISSIERES EN AUGE,Méry-Bissières-en-Auge,Méry-Bissières-en-Auge -34,2021-02-01,COM,23109,0,LINARD MALVAL,Linard-Malval,Linard-Malval,COM,23109,0,LINARD MALVAL,Linard-Malval,Linard-Malval -34,2021-02-01,COMD,23109,0,LINARD,Linard,Linard,COM,23109,0,LINARD MALVAL,Linard-Malval,Linard-Malval -34,2021-02-01,COMD,23121,0,MALVAL,Malval,Malval,COM,23109,0,LINARD MALVAL,Linard-Malval,Linard-Malval -34,2021-01-23,COM,27541,2,MESNIL SAINT JEAN,Mesnil-Saint-Jean,Le Mesnil-Saint-Jean,COM,27541,2,MESNIL SAINT JEAN,Mesnil-Saint-Jean,Le Mesnil-Saint-Jean -34,2021-01-23,COMD,27541,0,SAINT GEORGES DU MESNIL,Saint-Georges-du-Mesnil,Saint-Georges-du-Mesnil,COM,27541,2,MESNIL SAINT JEAN,Mesnil-Saint-Jean,Le Mesnil-Saint-Jean -34,2021-01-23,COMD,27551,0,SAINT JEAN DE LA LEQUERAYE,Saint-Jean-de-la-Léqueraye,Saint-Jean-de-la-Léqueraye,COM,27541,2,MESNIL SAINT JEAN,Mesnil-Saint-Jean,Le Mesnil-Saint-Jean -34,2021-01-01,COMD,14292,0,FRIARDEL,Friardel,Friardel,COM,14740,3,VESPIERE FRIARDEL,Vespière-Friardel,La Vespière-Friardel -34,2021-01-01,COMD,14740,3,VESPIERE,Vespière,La Vespière,COM,14740,3,VESPIERE FRIARDEL,Vespière-Friardel,La Vespière-Friardel -34,2021-01-01,COM,14740,3,VESPIERE FRIARDEL,Vespière-Friardel,La Vespière-Friardel,COM,14740,3,VESPIERE FRIARDEL,Vespière-Friardel,La Vespière-Friardel -32,2021-01-01,COM,16233,0,MOSNAC,Mosnac,Mosnac,COM,16233,0,MOSNAC SAINT SIMEUX,Mosnac-Saint-Simeux,Mosnac-Saint-Simeux +35,2021-12-31,COMD,50248,2,HOMMET D ARTHENAY,Hommet-d'Arthenay,Le Hommet-d'Arthenay,COM,50409,0,PONT HEBERT,Pont-Hébert,Pont-Hébert +35,2021-12-31,COMD,72288,0,SAINT HILAIRE LE LIERRU,Saint-Hilaire-le-Lierru,Saint-Hilaire-le-Lierru,COM,72363,0,TUFFE VAL DE LA CHERONNE,Tuffé Val de la Chéronne,Tuffé Val de la Chéronne +35,2021-12-31,COMD,72363,0,TUFFE,Tuffé,Tuffé,COM,72363,0,TUFFE VAL DE LA CHERONNE,Tuffé Val de la Chéronne,Tuffé Val de la Chéronne +70,2021-10-30,COMA,62482,0,LABUISSIERE,Labuissière,Labuissière,COMD,62482,0,LABUISSIERE,Labuissière,Labuissière +35,2021-05-27,COMD,12120,0,LAISSAC,Laissac,Laissac,COM,12120,0,LAISSAC SEVERAC L EGLISE,Laissac-Sévérac l'Église,Laissac-Sévérac l'Église +35,2021-05-27,COMD,12271,0,SEVERAC L EGLISE,Sévérac-l'Église,Sévérac-l'Église,COM,12120,0,LAISSAC SEVERAC L EGLISE,Laissac-Sévérac l'Église,Laissac-Sévérac l'Église +35,2021-05-26,COMD,14004,1,AIGNERVILLE,Aignerville,Aignerville,COM,14281,0,FORMIGNY LA BATAILLE,Formigny La Bataille,Formigny La Bataille +35,2021-05-26,COMD,14235,1,ECRAMMEVILLE,Écrammeville,Écrammeville,COM,14281,0,FORMIGNY LA BATAILLE,Formigny La Bataille,Formigny La Bataille +35,2021-05-26,COMD,14281,0,FORMIGNY,Formigny,Formigny,COM,14281,0,FORMIGNY LA BATAILLE,Formigny La Bataille,Formigny La Bataille +35,2021-05-26,COMD,14382,0,LOUVIERES,Louvières,Louvières,COM,14281,0,FORMIGNY LA BATAILLE,Formigny La Bataille,Formigny La Bataille +35,2021-05-07,COMD,27191,3,CROIX SAINT LEUFROY,Croix-Saint-Leufroy,La Croix-Saint-Leufroy,COM,27191,0,CLEF VALLEE D EURE,Clef Vallée d'Eure,Clef Vallée d'Eure +35,2021-05-07,COMD,27211,1,ECARDENVILLE SUR EURE,Écardenville-sur-Eure,Écardenville-sur-Eure,COM,27191,0,CLEF VALLEE D EURE,Clef Vallée d'Eure,Clef Vallée d'Eure +35,2021-05-07,COMD,27250,0,FONTAINE HEUDEBOURG,Fontaine-Heudebourg,Fontaine-Heudebourg,COM,27191,0,CLEF VALLEE D EURE,Clef Vallée d'Eure,Clef Vallée d'Eure +35,2021-03-15,COMD,25587,0,VAUCHAMPS,Vauchamps,Vauchamps,COM,25078,0,BOUCLANS,Bouclans,Bouclans +35,2021-03-01,COMD,14075,0,BISSIERES,Bissières,Bissières,COM,14410,0,MERY BISSIERES EN AUGE,Méry-Bissières-en-Auge,Méry-Bissières-en-Auge +35,2021-03-01,COMD,14410,0,MERY CORBON,Méry-Corbon,Méry-Corbon,COM,14410,0,MERY BISSIERES EN AUGE,Méry-Bissières-en-Auge,Méry-Bissières-en-Auge +35,2021-02-01,COMD,23109,0,LINARD,Linard,Linard,COM,23109,0,LINARD MALVAL,Linard-Malval,Linard-Malval +35,2021-02-01,COMD,23121,0,MALVAL,Malval,Malval,COM,23109,0,LINARD MALVAL,Linard-Malval,Linard-Malval +35,2021-01-23,COMD,27541,0,SAINT GEORGES DU MESNIL,Saint-Georges-du-Mesnil,Saint-Georges-du-Mesnil,COM,27541,2,MESNIL SAINT JEAN,Mesnil-Saint-Jean,Le Mesnil-Saint-Jean +35,2021-01-23,COMD,27551,0,SAINT JEAN DE LA LEQUERAYE,Saint-Jean-de-la-Léqueraye,Saint-Jean-de-la-Léqueraye,COM,27541,2,MESNIL SAINT JEAN,Mesnil-Saint-Jean,Le Mesnil-Saint-Jean +35,2021-01-01,COMD,14292,0,FRIARDEL,Friardel,Friardel,COM,14740,3,VESPIERE FRIARDEL,Vespière-Friardel,La Vespière-Friardel +35,2021-01-01,COMD,14740,3,VESPIERE,Vespière,La Vespière,COM,14740,3,VESPIERE FRIARDEL,Vespière-Friardel,La Vespière-Friardel 32,2021-01-01,COM,16233,0,MOSNAC,Mosnac,Mosnac,COMD,16233,0,MOSNAC,Mosnac,Mosnac -32,2021-01-01,COM,16351,0,SAINT SIMEUX,Saint-Simeux,Saint-Simeux,COMD,16351,0,SAINT SIMEUX,Saint-Simeux,Saint-Simeux +32,2021-01-01,COM,16233,0,MOSNAC,Mosnac,Mosnac,COM,16233,0,MOSNAC SAINT SIMEUX,Mosnac-Saint-Simeux,Mosnac-Saint-Simeux 32,2021-01-01,COM,16351,0,SAINT SIMEUX,Saint-Simeux,Saint-Simeux,COM,16233,0,MOSNAC SAINT SIMEUX,Mosnac-Saint-Simeux,Mosnac-Saint-Simeux -34,2021-01-01,COMD,27058,0,BERNIERES SUR SEINE,Bernières-sur-Seine,Bernières-sur-Seine,COM,27058,4,TROIS LACS,Trois Lacs,Les Trois Lacs -34,2021-01-01,COM,27089,0,THENOUVILLE,Thénouville,Thénouville,COM,27089,0,THENOUVILLE,Thénouville,Thénouville -34,2021-01-01,COMD,27089,0,BOSC RENOULT EN ROUMOIS,Bosc-Renoult-en-Roumois,Bosc-Renoult-en-Roumois,COM,27089,0,THENOUVILLE,Thénouville,Thénouville -34,2021-01-01,COMD,27626,0,THEILLEMENT,Theillement,Theillement,COM,27089,0,THENOUVILLE,Thénouville,Thénouville -34,2021-01-01,COMD,27647,0,TOSNY,Tosny,Tosny,COM,27058,4,TROIS LACS,Trois Lacs,Les Trois Lacs -34,2021-01-01,COMD,27657,0,TOUVILLE,Touville,Touville,COM,27089,0,THENOUVILLE,Thénouville,Thénouville -34,2021-01-01,COMD,27676,0,VENABLES,Venables,Venables,COM,27058,4,TROIS LACS,Trois Lacs,Les Trois Lacs +32,2021-01-01,COM,16351,0,SAINT SIMEUX,Saint-Simeux,Saint-Simeux,COMD,16351,0,SAINT SIMEUX,Saint-Simeux,Saint-Simeux +35,2021-01-01,COMD,27058,0,BERNIERES SUR SEINE,Bernières-sur-Seine,Bernières-sur-Seine,COM,27676,4,TROIS LACS,Trois Lacs,Les Trois Lacs +35,2021-01-01,COMD,27089,0,BOSC RENOULT EN ROUMOIS,Bosc-Renoult-en-Roumois,Bosc-Renoult-en-Roumois,COM,27089,0,THENOUVILLE,Thénouville,Thénouville +35,2021-01-01,COMD,27626,0,THEILLEMENT,Theillement,Theillement,COM,27089,0,THENOUVILLE,Thénouville,Thénouville +35,2021-01-01,COMD,27647,0,TOSNY,Tosny,Tosny,COM,27676,4,TROIS LACS,Trois Lacs,Les Trois Lacs +35,2021-01-01,COMD,27657,0,TOUVILLE,Touville,Touville,COM,27089,0,THENOUVILLE,Thénouville,Thénouville 50,2021-01-01,COM,27676,4,TROIS LACS,Trois Lacs,Les Trois Lacs,COM,27058,4,TROIS LACS,Trois Lacs,Les Trois Lacs -34,2021-01-01,COM,33055,0,BLAIGNAN PRIGNAC,Blaignan-Prignac,Blaignan-Prignac,COM,33055,0,BLAIGNAN PRIGNAC,Blaignan-Prignac,Blaignan-Prignac -34,2021-01-01,COMD,33055,0,BLAIGNAN,Blaignan,Blaignan,COM,33055,0,BLAIGNAN PRIGNAC,Blaignan-Prignac,Blaignan-Prignac -34,2021-01-01,COM,39043,0,BEAUFORT ORBAGNA,Beaufort-Orbagna,Beaufort-Orbagna,COM,39043,0,BEAUFORT ORBAGNA,Beaufort-Orbagna,Beaufort-Orbagna -34,2021-01-01,COMD,39043,0,BEAUFORT,Beaufort,Beaufort,COM,39043,0,BEAUFORT ORBAGNA,Beaufort-Orbagna,Beaufort-Orbagna -34,2021-01-01,COMD,39395,1,ORBAGNA,Orbagna,Orbagna,COM,39043,0,BEAUFORT ORBAGNA,Beaufort-Orbagna,Beaufort-Orbagna -34,2021-01-01,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville +35,2021-01-01,COMD,27676,0,VENABLES,Venables,Venables,COM,27676,4,TROIS LACS,Trois Lacs,Les Trois Lacs +35,2021-01-01,COMD,33055,0,BLAIGNAN,Blaignan,Blaignan,COM,33055,0,BLAIGNAN PRIGNAC,Blaignan-Prignac,Blaignan-Prignac +35,2021-01-01,COMD,39043,0,BEAUFORT,Beaufort,Beaufort,COM,39043,0,BEAUFORT ORBAGNA,Beaufort-Orbagna,Beaufort-Orbagna +35,2021-01-01,COMD,39395,1,ORBAGNA,Orbagna,Orbagna,COM,39043,0,BEAUFORT ORBAGNA,Beaufort-Orbagna,Beaufort-Orbagna 34,2021-01-01,COMA,50526,0,SAINT MICHEL DES LOUPS,Saint-Michel-des-Loups,Saint-Michel-des-Loups,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville -32,2021-01-01,COM,53239,0,SAINT MARTIN DE CONNEE,Saint-Martin-de-Connée,Saint-Martin-de-Connée,COM,53249,0,VIMARTIN SUR ORTHE,Vimartin-sur-Orthe,Vimartin-sur-Orthe 32,2021-01-01,COM,53239,0,SAINT MARTIN DE CONNEE,Saint-Martin-de-Connée,Saint-Martin-de-Connée,COMD,53239,0,SAINT MARTIN DE CONNEE,Saint-Martin-de-Connée,Saint-Martin-de-Connée -32,2021-01-01,COM,53249,0,SAINT PIERRE SUR ORTHE,Saint-Pierre-sur-Orthe,Saint-Pierre-sur-Orthe,COMD,53249,0,SAINT PIERRE SUR ORTHE,Saint-Pierre-sur-Orthe,Saint-Pierre-sur-Orthe +32,2021-01-01,COM,53239,0,SAINT MARTIN DE CONNEE,Saint-Martin-de-Connée,Saint-Martin-de-Connée,COM,53249,0,VIMARTIN SUR ORTHE,Vimartin-sur-Orthe,Vimartin-sur-Orthe 32,2021-01-01,COM,53249,0,SAINT PIERRE SUR ORTHE,Saint-Pierre-sur-Orthe,Saint-Pierre-sur-Orthe,COM,53249,0,VIMARTIN SUR ORTHE,Vimartin-sur-Orthe,Vimartin-sur-Orthe +32,2021-01-01,COM,53249,0,SAINT PIERRE SUR ORTHE,Saint-Pierre-sur-Orthe,Saint-Pierre-sur-Orthe,COMD,53249,0,SAINT PIERRE SUR ORTHE,Saint-Pierre-sur-Orthe,Saint-Pierre-sur-Orthe 32,2021-01-01,COM,53274,0,VIMARCE,Vimarcé,Vimarcé,COM,53249,0,VIMARTIN SUR ORTHE,Vimartin-sur-Orthe,Vimartin-sur-Orthe 32,2021-01-01,COM,53274,0,VIMARCE,Vimarcé,Vimarcé,COMD,53274,0,VIMARCE,Vimarcé,Vimarcé -34,2021-01-01,COMD,56016,0,BIEUZY,Bieuzy,Bieuzy,COM,56173,0,PLUMELIAU BIEUZY,Pluméliau-Bieuzy,Pluméliau-Bieuzy -34,2021-01-01,COM,56173,0,PLUMELIAU BIEUZY,Pluméliau-Bieuzy,Pluméliau-Bieuzy,COM,56173,0,PLUMELIAU BIEUZY,Pluméliau-Bieuzy,Pluméliau-Bieuzy -34,2021-01-01,COMD,73198,3,PERRIERE,Perrière,La Perrière,COM,73227,0,COURCHEVEL,Courchevel,Courchevel -34,2021-01-01,COM,73227,0,COURCHEVEL,Courchevel,Courchevel,COM,73227,0,COURCHEVEL,Courchevel,Courchevel -34,2021-01-01,COMD,73227,0,SAINT BON TARENTAISE,Saint-Bon-Tarentaise,Saint-Bon-Tarentaise,COM,73227,0,COURCHEVEL,Courchevel,Courchevel -34,2021-01-01,COMD,81062,0,CASTELNAU DE BRASSAC,Castelnau-de-Brassac,Castelnau-de-Brassac,COM,81062,0,FONTRIEU,Fontrieu,Fontrieu -34,2021-01-01,COM,81062,0,FONTRIEU,Fontrieu,Fontrieu,COM,81062,0,FONTRIEU,Fontrieu,Fontrieu -34,2021-01-01,COMD,81091,0,FERRIERES,Ferrières,Ferrières,COM,81062,0,FONTRIEU,Fontrieu,Fontrieu -34,2021-01-01,COMD,81153,2,MARGNES,Margnès,Le Margnès,COM,81062,0,FONTRIEU,Fontrieu,Fontrieu -34,2020-12-31,COMD,01176,2,GRAND ABERGEMENT,Grand-Abergement,Le Grand-Abergement,COM,01187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey -34,2020-12-31,COM,01187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey,COM,01187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey -34,2020-12-31,COMD,01187,1,HOTONNES,Hotonnes,Hotonnes,COM,01187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey -34,2020-12-31,COMD,01292,2,PETIT ABERGEMENT,Petit-Abergement,Le Petit-Abergement,COM,01187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey -34,2020-12-31,COMD,01409,0,SONGIEU,Songieu,Songieu,COM,01187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey +35,2021-01-01,COMD,56016,0,BIEUZY,Bieuzy,Bieuzy,COM,56173,0,PLUMELIAU BIEUZY,Pluméliau-Bieuzy,Pluméliau-Bieuzy +35,2021-01-01,COMD,68108,0,GRENTZINGEN,Grentzingen,Grentzingen,COM,68240,1,ILLTAL,Illtal,Illtal +35,2021-01-01,COMD,68133,0,HENFLINGEN,Henflingen,Henflingen,COM,68240,1,ILLTAL,Illtal,Illtal +35,2021-01-01,COMD,68240,1,OBERDORF,Oberdorf,Oberdorf,COM,68240,1,ILLTAL,Illtal,Illtal +35,2021-01-01,COMD,73198,3,PERRIERE,Perrière,La Perrière,COM,73227,0,COURCHEVEL,Courchevel,Courchevel +35,2021-01-01,COMD,73227,0,SAINT BON TARENTAISE,Saint-Bon-Tarentaise,Saint-Bon-Tarentaise,COM,73227,0,COURCHEVEL,Courchevel,Courchevel +35,2021-01-01,COMD,81062,0,CASTELNAU DE BRASSAC,Castelnau-de-Brassac,Castelnau-de-Brassac,COM,81062,0,FONTRIEU,Fontrieu,Fontrieu +35,2021-01-01,COMD,81091,0,FERRIERES,Ferrières,Ferrières,COM,81062,0,FONTRIEU,Fontrieu,Fontrieu +35,2021-01-01,COMD,81153,2,MARGNES,Margnès,Le Margnès,COM,81062,0,FONTRIEU,Fontrieu,Fontrieu 34,2020-12-31,COMA,14463,0,NEUILLY LE MALHERBE,Neuilly-le-Malherbe,Neuilly-le-Malherbe,COM,14721,0,VACOGNES NEUILLY,Vacognes-Neuilly,Vacognes-Neuilly -34,2020-12-31,COM,14721,0,VACOGNES NEUILLY,Vacognes-Neuilly,Vacognes-Neuilly,COM,14721,0,VACOGNES NEUILLY,Vacognes-Neuilly,Vacognes-Neuilly -34,2020-12-31,COMD,27032,1,AVRILLY,Avrilly,Avrilly,COM,27032,0,CHAMBOIS,Chambois,Chambois -34,2020-12-31,COM,27032,0,CHAMBOIS,Chambois,Chambois,COM,27032,0,CHAMBOIS,Chambois,Chambois -34,2020-12-31,COMD,27172,0,CORNEUIL,Corneuil,Corneuil,COM,27032,0,CHAMBOIS,Chambois,Chambois -34,2020-12-31,COMD,27634,0,THOMER LA SOGNE,Thomer-la-Sôgne,Thomer-la-Sôgne,COM,27032,0,CHAMBOIS,Chambois,Chambois -34,2020-12-14,COM,27467,0,PONT AUDEMER,Pont-Audemer,Pont-Audemer,COM,27467,0,PONT AUDEMER,Pont-Audemer,Pont-Audemer -34,2020-12-14,COMD,27467,0,PONT AUDEMER,Pont-Audemer,Pont-Audemer,COM,27467,0,PONT AUDEMER,Pont-Audemer,Pont-Audemer -34,2020-12-14,COMD,27549,0,SAINT GERMAIN VILLAGE,Saint-Germain-Village,Saint-Germain-Village,COM,27467,0,PONT AUDEMER,Pont-Audemer,Pont-Audemer -34,2020-12-09,COMD,27150,3,CHAPELLE REANVILLE,Chapelle-Réanville,La Chapelle-Réanville,COM,27554,3,CHAPELLE LONGUEVILLE,Chapelle-Longueville,La Chapelle-Longueville -34,2020-12-09,COM,27554,3,CHAPELLE LONGUEVILLE,Chapelle-Longueville,La Chapelle-Longueville,COM,27554,3,CHAPELLE LONGUEVILLE,Chapelle-Longueville,La Chapelle-Longueville -34,2020-12-09,COMD,27554,0,SAINT JUST,Saint-Just,Saint-Just,COM,27554,3,CHAPELLE LONGUEVILLE,Chapelle-Longueville,La Chapelle-Longueville -34,2020-12-09,COMD,27588,0,SAINT PIERRE D AUTILS,Saint-Pierre-d'Autils,Saint-Pierre-d'Autils,COM,27554,3,CHAPELLE LONGUEVILLE,Chapelle-Longueville,La Chapelle-Longueville -34,2020-11-13,COM,27685,3,VIEILLE LYRE,Vieille-Lyre,La Vieille-Lyre,COM,27685,3,VIEILLE LYRE,Vieille-Lyre,La Vieille-Lyre -34,2020-11-13,COMD,27685,3,VIEILLE LYRE,Vieille-Lyre,La Vieille-Lyre,COM,27685,3,VIEILLE LYRE,Vieille-Lyre,La Vieille-Lyre -34,2020-11-05,COMD,16004,1,AIGNES ET PUYPEROUX,Aignes-et-Puypéroux,Aignes-et-Puypéroux,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau -34,2020-11-05,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau -34,2020-11-05,COMD,16230,0,MONTMOREAU SAINT CYBARD,Montmoreau-Saint-Cybard,Montmoreau-Saint-Cybard,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau -34,2020-11-05,COMD,16294,0,SAINT AMANT DE MONTMOREAU,Saint-Amant-de-Montmoreau,Saint-Amant-de-Montmoreau,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau -34,2020-11-05,COMD,16314,0,SAINT EUTROPE,Saint-Eutrope,Saint-Eutrope,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau -34,2020-11-05,COMD,16328,0,SAINT LAURENT DE BELZAGOT,Saint-Laurent-de-Belzagot,Saint-Laurent-de-Belzagot,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau -34,2020-10-27,COM,90068,0,MEROUX MOVAL,Meroux-Moval,Meroux-Moval,COM,90068,0,MEROUX MOVAL,Meroux-Moval,Meroux-Moval -34,2020-10-27,COMD,90068,0,MEROUX,Meroux,Meroux,COM,90068,0,MEROUX MOVAL,Meroux-Moval,Meroux-Moval -34,2020-10-27,COMD,90073,0,MOVAL,Moval,Moval,COM,90068,0,MEROUX MOVAL,Meroux-Moval,Meroux-Moval -34,2020-10-16,COM,22251,0,PORDIC,Pordic,Pordic,COM,22251,0,PORDIC,Pordic,Pordic -34,2020-10-16,COMD,22251,0,PORDIC,Pordic,Pordic,COM,22251,0,PORDIC,Pordic,Pordic -34,2020-10-16,COMD,22367,0,TREMELOIR,Tréméloir,Tréméloir,COM,22251,0,PORDIC,Pordic,Pordic -34,2020-09-30,COMD,05101,0,PELVOUX,Pelvoux,Pelvoux,COM,05101,0,VALLOUISE PELVOUX,Vallouise-Pelvoux,Vallouise-Pelvoux -34,2020-09-30,COM,05101,0,VALLOUISE PELVOUX,Vallouise-Pelvoux,Vallouise-Pelvoux,COM,05101,0,VALLOUISE PELVOUX,Vallouise-Pelvoux,Vallouise-Pelvoux -34,2020-09-30,COMD,05175,0,VALLOUISE,Vallouise,Vallouise,COM,05101,0,VALLOUISE PELVOUX,Vallouise-Pelvoux,Vallouise-Pelvoux -34,2020-09-25,COMD,72116,0,DISSE SOUS BALLON,Dissé-sous-Ballon,Dissé-sous-Ballon,COM,72189,0,MAROLLES LES BRAULTS,Marolles-les-Braults,Marolles-les-Braults -34,2020-09-25,COM,72189,0,MAROLLES LES BRAULTS,Marolles-les-Braults,Marolles-les-Braults,COM,72189,0,MAROLLES LES BRAULTS,Marolles-les-Braults,Marolles-les-Braults -34,2020-09-25,COMD,72189,0,MAROLLES LES BRAULTS,Marolles-les-Braults,Marolles-les-Braults,COM,72189,0,MAROLLES LES BRAULTS,Marolles-les-Braults,Marolles-les-Braults -34,2020-09-24,COMD,74123,0,FAVERGES,Faverges,Faverges,COM,74123,0,FAVERGES SEYTHENEX,Faverges-Seythenex,Faverges-Seythenex -34,2020-09-24,COM,74123,0,FAVERGES SEYTHENEX,Faverges-Seythenex,Faverges-Seythenex,COM,74123,0,FAVERGES SEYTHENEX,Faverges-Seythenex,Faverges-Seythenex -34,2020-09-24,COMD,74270,0,SEYTHENEX,Seythenex,Seythenex,COM,74123,0,FAVERGES SEYTHENEX,Faverges-Seythenex,Faverges-Seythenex -34,2020-09-01,COM,35060,3,CHAPELLE DU LOU DU LAC,Chapelle du Lou du Lac,La Chapelle du Lou du Lac,COM,35060,3,CHAPELLE DU LOU DU LAC,Chapelle du Lou du Lac,La Chapelle du Lou du Lac -34,2020-09-01,COMD,35060,3,CHAPELLE DU LOU,Chapelle-du-Lou,La Chapelle-du-Lou,COM,35060,3,CHAPELLE DU LOU DU LAC,Chapelle du Lou du Lac,La Chapelle du Lou du Lac -34,2020-09-01,COMD,35158,2,LOU DU LAC,Lou-du-Lac,Le Lou-du-Lac,COM,35060,3,CHAPELLE DU LOU DU LAC,Chapelle du Lou du Lac,La Chapelle du Lou du Lac -34,2020-09-01,COMD,56138,0,MONTERREIN,Monterrein,Monterrein,COM,56165,0,PLOERMEL,Ploërmel,Ploërmel -34,2020-09-01,COM,56165,0,PLOERMEL,Ploërmel,Ploërmel,COM,56165,0,PLOERMEL,Ploërmel,Ploërmel -34,2020-08-28,COM,52126,0,CHOILLEY DARDENAY,Choilley-Dardenay,Choilley-Dardenay,COM,52126,0,CHOILLEY DARDENAY,Choilley-Dardenay,Choilley-Dardenay +35,2020-12-31,COMD,27032,1,AVRILLY,Avrilly,Avrilly,COM,27032,0,CHAMBOIS,Chambois,Chambois +35,2020-12-31,COMD,27172,0,CORNEUIL,Corneuil,Corneuil,COM,27032,0,CHAMBOIS,Chambois,Chambois +35,2020-12-31,COMD,27634,0,THOMER LA SOGNE,Thomer-la-Sôgne,Thomer-la-Sôgne,COM,27032,0,CHAMBOIS,Chambois,Chambois +35,2020-12-14,COMD,27467,0,PONT AUDEMER,Pont-Audemer,Pont-Audemer,COM,27467,0,PONT AUDEMER,Pont-Audemer,Pont-Audemer +35,2020-12-14,COMD,27549,0,SAINT GERMAIN VILLAGE,Saint-Germain-Village,Saint-Germain-Village,COM,27467,0,PONT AUDEMER,Pont-Audemer,Pont-Audemer +35,2020-12-09,COMD,27150,3,CHAPELLE REANVILLE,Chapelle-Réanville,La Chapelle-Réanville,COM,27554,3,CHAPELLE LONGUEVILLE,Chapelle-Longueville,La Chapelle-Longueville +35,2020-12-09,COMD,27554,0,SAINT JUST,Saint-Just,Saint-Just,COM,27554,3,CHAPELLE LONGUEVILLE,Chapelle-Longueville,La Chapelle-Longueville +35,2020-12-09,COMD,27588,0,SAINT PIERRE D AUTILS,Saint-Pierre-d'Autils,Saint-Pierre-d'Autils,COM,27554,3,CHAPELLE LONGUEVILLE,Chapelle-Longueville,La Chapelle-Longueville +35,2020-11-13,COMD,27685,3,VIEILLE LYRE,Vieille-Lyre,La Vieille-Lyre,COM,27685,3,VIEILLE LYRE,Vieille-Lyre,La Vieille-Lyre +35,2020-11-05,COMD,16004,1,AIGNES ET PUYPEROUX,Aignes-et-Puypéroux,Aignes-et-Puypéroux,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau +35,2020-11-05,COMD,16230,0,MONTMOREAU SAINT CYBARD,Montmoreau-Saint-Cybard,Montmoreau-Saint-Cybard,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau +35,2020-11-05,COMD,16294,0,SAINT AMANT DE MONTMOREAU,Saint-Amant-de-Montmoreau,Saint-Amant-de-Montmoreau,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau +35,2020-11-05,COMD,16314,0,SAINT EUTROPE,Saint-Eutrope,Saint-Eutrope,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau +35,2020-11-05,COMD,16328,0,SAINT LAURENT DE BELZAGOT,Saint-Laurent-de-Belzagot,Saint-Laurent-de-Belzagot,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau +35,2020-10-27,COMD,90068,0,MEROUX,Meroux,Meroux,COM,90068,0,MEROUX MOVAL,Meroux-Moval,Meroux-Moval +35,2020-10-27,COMD,90073,0,MOVAL,Moval,Moval,COM,90068,0,MEROUX MOVAL,Meroux-Moval,Meroux-Moval +34,2020-10-22,COMA,57420,0,LOUTREMANGE,Loutremange,Loutremange,COM,57150,0,CONDE NORTHEN,Condé-Northen,Condé-Northen +35,2020-10-16,COMD,22251,0,PORDIC,Pordic,Pordic,COM,22251,0,PORDIC,Pordic,Pordic +35,2020-10-16,COMD,22367,0,TREMELOIR,Tréméloir,Tréméloir,COM,22251,0,PORDIC,Pordic,Pordic +35,2020-09-30,COMD,5101,0,PELVOUX,Pelvoux,Pelvoux,COM,5101,0,VALLOUISE PELVOUX,Vallouise-Pelvoux,Vallouise-Pelvoux +35,2020-09-30,COMD,5175,0,VALLOUISE,Vallouise,Vallouise,COM,5101,0,VALLOUISE PELVOUX,Vallouise-Pelvoux,Vallouise-Pelvoux +35,2020-09-25,COMD,72116,0,DISSE SOUS BALLON,Dissé-sous-Ballon,Dissé-sous-Ballon,COM,72189,0,MAROLLES LES BRAULTS,Marolles-les-Braults,Marolles-les-Braults +35,2020-09-25,COMD,72189,0,MAROLLES LES BRAULTS,Marolles-les-Braults,Marolles-les-Braults,COM,72189,0,MAROLLES LES BRAULTS,Marolles-les-Braults,Marolles-les-Braults +35,2020-09-24,COMD,74123,0,FAVERGES,Faverges,Faverges,COM,74123,0,FAVERGES SEYTHENEX,Faverges-Seythenex,Faverges-Seythenex +35,2020-09-24,COMD,74270,0,SEYTHENEX,Seythenex,Seythenex,COM,74123,0,FAVERGES SEYTHENEX,Faverges-Seythenex,Faverges-Seythenex +35,2020-09-01,COMD,35060,3,CHAPELLE DU LOU,Chapelle-du-Lou,La Chapelle-du-Lou,COM,35060,3,CHAPELLE DU LOU DU LAC,Chapelle du Lou du Lac,La Chapelle du Lou du Lac +35,2020-09-01,COMD,35158,2,LOU DU LAC,Lou-du-Lac,Le Lou-du-Lac,COM,35060,3,CHAPELLE DU LOU DU LAC,Chapelle du Lou du Lac,La Chapelle du Lou du Lac +35,2020-09-01,COMD,56138,0,MONTERREIN,Monterrein,Monterrein,COM,56165,0,PLOERMEL,Ploërmel,Ploërmel 34,2020-08-28,COMA,52166,0,DARDENAY,Dardenay,Dardenay,COM,52126,0,CHOILLEY DARDENAY,Choilley-Dardenay,Choilley-Dardenay -34,2020-08-03,COM,79122,0,FONTENILLE SAINT MARTIN D ENTRAIGUES,Fontenille-Saint-Martin-d'Entraigues,Fontenille-Saint-Martin-d'Entraigues,COM,79122,0,FONTENILLE SAINT MARTIN D ENTRAIGUES,Fontenille-Saint-Martin-d'Entraigues,Fontenille-Saint-Martin-d'Entraigues 34,2020-08-03,COMA,79275,0,SAINT MARTIN D ENTRAIGUES,Saint-Martin-d'Entraigues,Saint-Martin-d'Entraigues,COM,79122,0,FONTENILLE SAINT MARTIN D ENTRAIGUES,Fontenille-Saint-Martin-d'Entraigues,Fontenille-Saint-Martin-d'Entraigues 34,2020-08-01,COMA,28097,0,CHENE CHENU,Chêne-Chenu,Chêne-Chenu,COM,28393,0,TREMBLAY LES VILLAGES,Tremblay-les-Villages,Tremblay-les-Villages 34,2020-08-01,COMA,28138,1,ECUBLE,Écublé,Écublé,COM,28393,0,TREMBLAY LES VILLAGES,Tremblay-les-Villages,Tremblay-les-Villages 34,2020-08-01,COMA,28181,0,GIRONVILLE ET NEUVILLE,Gironville-et-Neuville,Gironville-et-Neuville,COM,28393,0,TREMBLAY LES VILLAGES,Tremblay-les-Villages,Tremblay-les-Villages 34,2020-08-01,COMA,28328,0,SAINT CHERON DES CHAMPS,Saint-Chéron-des-Champs,Saint-Chéron-des-Champs,COM,28393,0,TREMBLAY LES VILLAGES,Tremblay-les-Villages,Tremblay-les-Villages 34,2020-08-01,COMA,28384,0,THEUVY ACHERES,Theuvy-Achères,Theuvy-Achères,COM,28393,0,TREMBLAY LES VILLAGES,Tremblay-les-Villages,Tremblay-les-Villages -34,2020-08-01,COM,28393,0,TREMBLAY LES VILLAGES,Tremblay-les-Villages,Tremblay-les-Villages,COM,28393,0,TREMBLAY LES VILLAGES,Tremblay-les-Villages,Tremblay-les-Villages -70,2020-07-22,COM,73006,0,AIME LA PLAGNE,Aime-la-Plagne,Aime-la-Plagne,COMD,73148,0,LONGEFOY,Longefoy,Longefoy -34,2020-07-11,COMD,28012,1,ARROU,Arrou,Arrou,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou -34,2020-07-11,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou -34,2020-07-11,COMD,28044,0,BOISGASSON,Boisgasson,Boisgasson,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou -34,2020-07-11,COMD,28093,0,CHATILLON EN DUNOIS,Châtillon-en-Dunois,Châtillon-en-Dunois,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou -34,2020-07-11,COMD,28115,0,COURTALAIN,Courtalain,Courtalain,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou -34,2020-07-11,COMD,28204,0,LANGEY,Langey,Langey,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou -34,2020-07-11,COMD,28356,0,SAINT PELLERIN,Saint-Pellerin,Saint-Pellerin,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou -34,2020-07-07,COM,55369,0,NAIVES ROSIERES,Naives-Rosières,Naives-Rosières,COM,55369,0,NAIVES ROSIERES,Naives-Rosières,Naives-Rosières +70,2020-07-22,COMD,73006,1,AIME,Aime,Aime,COMD,73006,1,AIME,Aime,Aime +70,2020-07-22,COMD,73006,1,AIME,Aime,Aime,COMD,73148,0,LONGEFOY,Longefoy,Longefoy +70,2020-07-22,COMD,73006,1,AIME,Aime,Aime,COMD,73291,0,TESSENS,Tessens,Tessens +70,2020-07-22,COMD,73006,1,AIME,Aime,Aime,COMD,73325,0,VILLETTE,Villette,Villette +35,2020-07-11,COMD,28012,1,ARROU,Arrou,Arrou,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou +35,2020-07-11,COMD,28044,0,BOISGASSON,Boisgasson,Boisgasson,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou +35,2020-07-11,COMD,28093,0,CHATILLON EN DUNOIS,Châtillon-en-Dunois,Châtillon-en-Dunois,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou +35,2020-07-11,COMD,28115,0,COURTALAIN,Courtalain,Courtalain,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou +35,2020-07-11,COMD,28204,0,LANGEY,Langey,Langey,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou +35,2020-07-11,COMD,28356,0,SAINT PELLERIN,Saint-Pellerin,Saint-Pellerin,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou 34,2020-07-07,COMA,55440,0,ROSIERES DEVANT BAR,Rosières-devant-Bar,Rosières-devant-Bar,COM,55369,0,NAIVES ROSIERES,Naives-Rosières,Naives-Rosières 34,2020-07-06,COMA,53060,4,CHAPELLES,Chapelles,Les Chapelles,COM,53121,0,JAVRON LES CHAPELLES,Javron-les-Chapelles,Javron-les-Chapelles -34,2020-07-06,COM,53121,0,JAVRON LES CHAPELLES,Javron-les-Chapelles,Javron-les-Chapelles,COM,53121,0,JAVRON LES CHAPELLES,Javron-les-Chapelles,Javron-les-Chapelles -34,2020-07-03,COMD,36093,0,LEVROUX,Levroux,Levroux,COM,36093,0,LEVROUX,Levroux,Levroux -34,2020-07-03,COM,36093,0,LEVROUX,Levroux,Levroux,COM,36093,0,LEVROUX,Levroux,Levroux -34,2020-07-03,COMD,36206,0,SAINT PIERRE DE LAMPS,Saint-Pierre-de-Lamps,Saint-Pierre-de-Lamps,COM,36093,0,LEVROUX,Levroux,Levroux -34,2020-07-01,COMD,05053,1,EYGUIANS,Eyguians,Eyguians,COM,05053,0,GARDE COLOMBE,Garde-Colombe,Garde-Colombe -34,2020-07-01,COM,05053,0,GARDE COLOMBE,Garde-Colombe,Garde-Colombe,COM,05053,0,GARDE COLOMBE,Garde-Colombe,Garde-Colombe -34,2020-07-01,COMD,05069,0,LAGRAND,Lagrand,Lagrand,COM,05053,0,GARDE COLOMBE,Garde-Colombe,Garde-Colombe -34,2020-07-01,COMD,05143,0,SAINT GENIS,Saint-Genis,Saint-Genis,COM,05053,0,GARDE COLOMBE,Garde-Colombe,Garde-Colombe -34,2020-07-01,COMD,16043,0,BIGNAC,Bignac,Bignac,COM,16148,0,GENAC BIGNAC,Genac-Bignac,Genac-Bignac -34,2020-07-01,COMD,16148,0,GENAC,Genac,Genac,COM,16148,0,GENAC BIGNAC,Genac-Bignac,Genac-Bignac -34,2020-07-01,COM,16148,0,GENAC BIGNAC,Genac-Bignac,Genac-Bignac,COM,16148,0,GENAC BIGNAC,Genac-Bignac,Genac-Bignac -34,2020-07-01,COM,62757,0,SAINT MARTIN LEZ TATINGHEM,Saint-Martin-lez-Tatinghem,Saint-Martin-lez-Tatinghem,COM,62757,0,SAINT MARTIN LEZ TATINGHEM,Saint-Martin-lez-Tatinghem,Saint-Martin-lez-Tatinghem -34,2020-07-01,COMD,62757,0,SAINT MARTIN AU LAERT,Saint-Martin-au-Laërt,Saint-Martin-au-Laërt,COM,62757,0,SAINT MARTIN LEZ TATINGHEM,Saint-Martin-lez-Tatinghem,Saint-Martin-lez-Tatinghem -34,2020-07-01,COMD,62807,0,TATINGHEM,Tatinghem,Tatinghem,COM,62757,0,SAINT MARTIN LEZ TATINGHEM,Saint-Martin-lez-Tatinghem,Saint-Martin-lez-Tatinghem -34,2020-06-30,COMD,27636,2,THUIT ANGER,Thuit-Anger,Le Thuit-Anger,COM,27638,2,THUIT DE L OISON,Thuit de l'Oison,Le Thuit de l'Oison -34,2020-06-30,COMD,27638,2,THUIT SIGNOL,Thuit-Signol,Le Thuit-Signol,COM,27638,2,THUIT DE L OISON,Thuit de l'Oison,Le Thuit de l'Oison -34,2020-06-30,COM,27638,2,THUIT DE L OISON,Thuit de l'Oison,Le Thuit de l'Oison,COM,27638,2,THUIT DE L OISON,Thuit de l'Oison,Le Thuit de l'Oison -34,2020-06-30,COMD,27639,2,THUIT SIMER,Thuit-Simer,Le Thuit-Simer,COM,27638,2,THUIT DE L OISON,Thuit de l'Oison,Le Thuit de l'Oison -34,2020-06-15,COMD,27145,0,CHANTELOUP,Chanteloup,Chanteloup,COM,27157,0,MARBOIS,Marbois,Marbois -34,2020-06-15,COM,27157,0,MARBOIS,Marbois,Marbois,COM,27157,0,MARBOIS,Marbois,Marbois -34,2020-06-15,COMD,27157,2,CHESNE,Chesne,Le Chesne,COM,27157,0,MARBOIS,Marbois,Marbois -34,2020-06-15,COMD,27225,4,ESSARTS,Essarts,Les Essarts,COM,27157,0,MARBOIS,Marbois,Marbois -34,2020-06-15,COMD,27532,0,SAINT DENIS DU BEHELAN,Saint-Denis-du-Béhélan,Saint-Denis-du-Béhélan,COM,27157,0,MARBOIS,Marbois,Marbois -34,2020-06-15,COMD,78551,0,SAINT GERMAIN EN LAYE,Saint-Germain-en-Laye,Saint-Germain-en-Laye,COM,78551,0,SAINT GERMAIN EN LAYE,Saint-Germain-en-Laye,Saint-Germain-en-Laye -34,2020-06-15,COM,78551,0,SAINT GERMAIN EN LAYE,Saint-Germain-en-Laye,Saint-Germain-en-Laye,COM,78551,0,SAINT GERMAIN EN LAYE,Saint-Germain-en-Laye,Saint-Germain-en-Laye -34,2020-06-08,COMD,50209,0,GONNEVILLE,Gonneville,Gonneville,COM,50209,0,GONNEVILLE LE THEIL,Gonneville-Le Theil,Gonneville-Le Theil -34,2020-06-08,COM,50209,0,GONNEVILLE LE THEIL,Gonneville-Le Theil,Gonneville-Le Theil,COM,50209,0,GONNEVILLE LE THEIL,Gonneville-Le Theil,Gonneville-Le Theil -34,2020-06-08,COMD,50595,2,THEIL,Theil,Le Theil,COM,50209,0,GONNEVILLE LE THEIL,Gonneville-Le Theil,Gonneville-Le Theil -34,2020-06-05,COMD,24178,0,FESTALEMPS,Festalemps,Festalemps,COM,24490,0,SAINT PRIVAT EN PERIGORD,Saint Privat en Périgord,Saint Privat en Périgord -34,2020-06-05,COMD,24368,0,SAINT ANTOINE CUMOND,Saint-Antoine-Cumond,Saint-Antoine-Cumond,COM,24490,0,SAINT PRIVAT EN PERIGORD,Saint Privat en Périgord,Saint Privat en Périgord -34,2020-06-05,COM,24490,0,SAINT PRIVAT EN PERIGORD,Saint Privat en Périgord,Saint Privat en Périgord,COM,24490,0,SAINT PRIVAT EN PERIGORD,Saint Privat en Périgord,Saint Privat en Périgord -34,2020-06-05,COMD,24490,0,SAINT PRIVAT DES PRES,Saint-Privat-des-Prés,Saint-Privat-des-Prés,COM,24490,0,SAINT PRIVAT EN PERIGORD,Saint Privat en Périgord,Saint Privat en Périgord -34,2020-06-05,COMD,45129,0,DOUCHY,Douchy,Douchy,COM,45129,0,DOUCHY MONTCORBON,Douchy-Montcorbon,Douchy-Montcorbon -34,2020-06-05,COM,45129,0,DOUCHY MONTCORBON,Douchy-Montcorbon,Douchy-Montcorbon,COM,45129,0,DOUCHY MONTCORBON,Douchy-Montcorbon,Douchy-Montcorbon -34,2020-06-05,COMD,45211,0,MONTCORBON,Montcorbon,Montcorbon,COM,45129,0,DOUCHY MONTCORBON,Douchy-Montcorbon,Douchy-Montcorbon -34,2020-06-04,COM,18023,0,BAUGY,Baugy,Baugy,COM,18023,0,BAUGY,Baugy,Baugy -34,2020-06-04,COMD,18123,0,LAVERDINES,Laverdines,Laverdines,COM,18023,0,BAUGY,Baugy,Baugy -34,2020-06-04,COMD,18239,0,SALIGNY LE VIF,Saligny-le-Vif,Saligny-le-Vif,COM,18023,0,BAUGY,Baugy,Baugy -34,2020-06-03,COMD,45051,0,BRAY EN VAL,Bray-en-Val,Bray-en-Val,COM,45051,0,BRAY SAINT AIGNAN,Bray-Saint-Aignan,Bray-Saint-Aignan -34,2020-06-03,COM,45051,0,BRAY SAINT AIGNAN,Bray-Saint-Aignan,Bray-Saint-Aignan,COM,45051,0,BRAY SAINT AIGNAN,Bray-Saint-Aignan,Bray-Saint-Aignan -34,2020-06-03,COMD,45267,0,SAINT AIGNAN DES GUES,Saint-Aignan-des-Gués,Saint-Aignan-des-Gués,COM,45051,0,BRAY SAINT AIGNAN,Bray-Saint-Aignan,Bray-Saint-Aignan -34,2020-06-02,COMD,25028,1,ATHOSE,Athose,Athose,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins -34,2020-06-02,COMD,25128,0,CHASNANS,Chasnans,Chasnans,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins -34,2020-06-02,COMD,25302,1,HAUTEPIERRE LE CHATELET,Hautepierre-le-Châtelet,Hautepierre-le-Châtelet,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins -34,2020-06-02,COMD,25424,0,NODS,Nods,Nods,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins -34,2020-06-02,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins -34,2020-06-02,COMD,25480,0,RANTECHAUX,Rantechaux,Rantechaux,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins -34,2020-06-02,COMD,25585,0,VANCLANS,Vanclans,Vanclans,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins -34,2020-06-02,COMD,62226,0,CLARQUES,Clarques,Clarques,COM,62691,0,SAINT AUGUSTIN,Saint-Augustin,Saint-Augustin -34,2020-06-02,COMD,62691,0,REBECQUES,Rebecques,Rebecques,COM,62691,0,SAINT AUGUSTIN,Saint-Augustin,Saint-Augustin -34,2020-06-02,COM,62691,0,SAINT AUGUSTIN,Saint-Augustin,Saint-Augustin,COM,62691,0,SAINT AUGUSTIN,Saint-Augustin,Saint-Augustin -34,2020-06-01,COM,14200,0,CREULLY SUR SEULLES,Creully sur Seulles,Creully sur Seulles,COM,14200,0,CREULLY SUR SEULLES,Creully sur Seulles,Creully sur Seulles -34,2020-06-01,COMD,14200,0,CREULLY,Creully,Creully,COM,14200,0,CREULLY SUR SEULLES,Creully sur Seulles,Creully sur Seulles -34,2020-06-01,COMD,14577,0,SAINT GABRIEL BRECY,Saint-Gabriel-Brécy,Saint-Gabriel-Brécy,COM,14200,0,CREULLY SUR SEULLES,Creully sur Seulles,Creully sur Seulles -34,2020-06-01,COMD,14757,0,VILLIERS LE SEC,Villiers-le-Sec,Villiers-le-Sec,COM,14200,0,CREULLY SUR SEULLES,Creully sur Seulles,Creully sur Seulles -34,2020-06-01,COM,16046,0,COTEAUX DU BLANZACAIS,Coteaux-du-Blanzacais,Coteaux-du-Blanzacais,COM,16046,0,COTEAUX DU BLANZACAIS,Coteaux-du-Blanzacais,Coteaux-du-Blanzacais -34,2020-06-01,COMD,16046,0,BLANZAC PORCHERESSE,Blanzac-Porcheresse,Blanzac-Porcheresse,COM,16046,0,COTEAUX DU BLANZACAIS,Coteaux-du-Blanzacais,Coteaux-du-Blanzacais -34,2020-06-01,COMD,16115,0,CRESSAC SAINT GENIS,Cressac-Saint-Genis,Cressac-Saint-Genis,COM,16046,0,COTEAUX DU BLANZACAIS,Coteaux-du-Blanzacais,Coteaux-du-Blanzacais -34,2020-06-01,COMD,16332,0,SAINT LEGER,Saint-Léger,Saint-Léger,COM,16046,0,COTEAUX DU BLANZACAIS,Coteaux-du-Blanzacais,Coteaux-du-Blanzacais -34,2020-05-29,COMD,17103,0,CHERVETTES,Chervettes,Chervettes,COM,17457,3,DEVISE,Devise,La Devise -34,2020-05-29,COMD,17352,0,SAINT LAURENT DE LA BARRIERE,Saint-Laurent-de-la-Barrière,Saint-Laurent-de-la-Barrière,COM,17457,3,DEVISE,Devise,La Devise -34,2020-05-29,COMD,17457,0,VANDRE,Vandré,Vandré,COM,17457,3,DEVISE,Devise,La Devise -34,2020-05-29,COM,17457,3,DEVISE,Devise,La Devise,COM,17457,3,DEVISE,Devise,La Devise -34,2020-05-28,COMD,27268,2,FRESNE,Fresne,Le Fresne,COM,27447,2,VAL DORE,Val-Doré,Le Val-Doré -34,2020-05-28,COMD,27402,2,MESNIL HARDRAY,Mesnil-Hardray,Le Mesnil-Hardray,COM,27447,2,VAL DORE,Val-Doré,Le Val-Doré -34,2020-05-28,COM,27447,2,VAL DORE,Val-Doré,Le Val-Doré,COM,27447,2,VAL DORE,Val-Doré,Le Val-Doré -34,2020-05-28,COM,72023,0,BALLON SAINT MARS,Ballon-Saint Mars,Ballon-Saint Mars,COM,72023,0,BALLON SAINT MARS,Ballon-Saint Mars,Ballon-Saint Mars -34,2020-05-28,COMD,72023,0,BALLON,Ballon,Ballon,COM,72023,0,BALLON SAINT MARS,Ballon-Saint Mars,Ballon-Saint Mars -34,2020-05-28,COMD,72301,0,SAINT MARS SOUS BALLON,Saint-Mars-sous-Ballon,Saint-Mars-sous-Ballon,COM,72023,0,BALLON SAINT MARS,Ballon-Saint Mars,Ballon-Saint Mars -34,2020-05-26,COMD,46025,0,BELMONTET,Belmontet,Belmontet,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc -34,2020-05-26,COMD,46166,0,LEBREIL,Lebreil,Lebreil,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc -34,2020-05-26,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc -34,2020-05-26,COMD,46201,0,MONTCUQ,Montcuq,Montcuq,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc -34,2020-05-26,COMD,46261,0,SAINTE CROIX,Sainte-Croix,Sainte-Croix,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc -34,2020-05-26,COMD,46326,0,VALPRIONDE,Valprionde,Valprionde,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc -34,2020-05-26,COMD,76089,0,BETTEVILLE,Betteville,Betteville,COM,76289,0,SAINT MARTIN DE L IF,Saint Martin de l'If,Saint Martin de l'If -34,2020-05-26,COMD,76267,3,FOLLETIERE,Folletière,La Folletière,COM,76289,0,SAINT MARTIN DE L IF,Saint Martin de l'If,Saint Martin de l'If -34,2020-05-26,COMD,76289,0,FREVILLE,Fréville,Fréville,COM,76289,0,SAINT MARTIN DE L IF,Saint Martin de l'If,Saint Martin de l'If -34,2020-05-26,COM,76289,0,SAINT MARTIN DE L IF,Saint Martin de l'If,Saint Martin de l'If,COM,76289,0,SAINT MARTIN DE L IF,Saint Martin de l'If,Saint Martin de l'If -34,2020-05-26,COMD,76444,0,MONT DE L IF,Mont-de-l'If,Mont-de-l'If,COM,76289,0,SAINT MARTIN DE L IF,Saint Martin de l'If,Saint Martin de l'If -34,2020-05-25,COMD,12005,1,ALPUECH,Alpuech,Alpuech,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac -34,2020-05-25,COMD,12112,0,GRAISSAC,Graissac,Graissac,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac -34,2020-05-25,COMD,12117,0,LACALM,Lacalm,Lacalm,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac -34,2020-05-25,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac -34,2020-05-25,COMD,12223,0,SAINTE GENEVIEVE SUR ARGENCE,Sainte-Geneviève-sur-Argence,Sainte-Geneviève-sur-Argence,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac -34,2020-05-25,COMD,12279,3,TERRISSE,Terrisse,La Terrisse,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac -34,2020-05-25,COMD,12304,0,VITRAC EN VIADENE,Vitrac-en-Viadène,Vitrac-en-Viadène,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac -34,2020-05-18,COMD,80209,0,CONTOIRE,Contoire,Contoire,COM,80625,0,TROIS RIVIERES,Trois-Rivières,Trois-Rivières -34,2020-05-18,COMD,80419,1,HARGICOURT,Hargicourt,Hargicourt,COM,80625,0,TROIS RIVIERES,Trois-Rivières,Trois-Rivières -34,2020-05-18,COMD,80625,0,PIERREPONT SUR AVRE,Pierrepont-sur-Avre,Pierrepont-sur-Avre,COM,80625,0,TROIS RIVIERES,Trois-Rivières,Trois-Rivières -34,2020-05-18,COM,80625,0,TROIS RIVIERES,Trois-Rivières,Trois-Rivières,COM,80625,0,TROIS RIVIERES,Trois-Rivières,Trois-Rivières -70,2020-05-01,COM,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac,COMD,52454,0,SAINT MICHEL,Saint-michel,Saint-michel -70,2020-05-01,COM,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac,COMD,52387,0,PIEPAPE,Piépape,Piépape -70,2020-05-01,COM,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac,COMD,52402,0,PRANGEY,Prangey,Prangey -70,2020-04-24,COM,08490,0,VOUZIERS,Vouziers,Vouziers,COMD,08068,0,BLAISE,Blaise,Blaise -34,2020-04-01,COMD,16021,1,AUBEVILLE,Aubeville,Aubeville,COM,16175,0,VAL DES VIGNES,Val des Vignes,Val des Vignes -34,2020-04-01,COM,16175,0,VAL DES VIGNES,Val des Vignes,Val des Vignes,COM,16175,0,VAL DES VIGNES,Val des Vignes,Val des Vignes -34,2020-04-01,COMD,16175,0,JURIGNAC,Jurignac,Jurignac,COM,16175,0,VAL DES VIGNES,Val des Vignes,Val des Vignes -34,2020-04-01,COMD,16201,0,MAINFONDS,Mainfonds,Mainfonds,COM,16175,0,VAL DES VIGNES,Val des Vignes,Val des Vignes -34,2020-04-01,COMD,16257,0,PEREUIL,Péreuil,Péreuil,COM,16175,0,VAL DES VIGNES,Val des Vignes,Val des Vignes -34,2020-04-01,COMD,45287,0,SAINT LOUP DE GONOIS,Saint-Loup-de-Gonois,Saint-Loup-de-Gonois,COM,45307,3,SELLE SUR LE BIED,Selle-sur-le-Bied,La Selle-sur-le-Bied -34,2020-04-01,COM,45307,3,SELLE SUR LE BIED,Selle-sur-le-Bied,La Selle-sur-le-Bied,COM,45307,3,SELLE SUR LE BIED,Selle-sur-le-Bied,La Selle-sur-le-Bied -34,2020-03-31,COMD,50180,0,FERVACHES,Fervaches,Fervaches,COM,50592,0,TESSY BOCAGE,Tessy-Bocage,Tessy-Bocage -34,2020-03-31,COM,50592,0,TESSY BOCAGE,Tessy-Bocage,Tessy-Bocage,COM,50592,0,TESSY BOCAGE,Tessy-Bocage,Tessy-Bocage -34,2020-03-31,COMD,50592,0,TESSY SUR VIRE,Tessy-sur-Vire,Tessy-sur-Vire,COM,50592,0,TESSY BOCAGE,Tessy-Bocage,Tessy-Bocage -34,2020-03-31,COMD,50649,0,PONT FARCY,Pont-Farcy,Pont-Farcy,COM,50592,0,TESSY BOCAGE,Tessy-Bocage,Tessy-Bocage -34,2020-03-23,COMD,14008,1,AMBLIE,Amblie,Amblie,COM,14355,0,PONTS SUR SEULLES,Ponts sur Seulles,Ponts sur Seulles -34,2020-03-23,COMD,14355,0,LANTHEUIL,Lantheuil,Lantheuil,COM,14355,0,PONTS SUR SEULLES,Ponts sur Seulles,Ponts sur Seulles -34,2020-03-23,COM,14355,0,PONTS SUR SEULLES,Ponts sur Seulles,Ponts sur Seulles,COM,14355,0,PONTS SUR SEULLES,Ponts sur Seulles,Ponts sur Seulles -34,2020-03-23,COMD,14690,0,TIERCEVILLE,Tierceville,Tierceville,COM,14355,0,PONTS SUR SEULLES,Ponts sur Seulles,Ponts sur Seulles -34,2020-03-22,COM,01098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons,COM,01098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons -34,2020-03-22,COMD,01098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons,COM,01098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons -34,2020-03-22,COMD,01316,0,PUGIEU,Pugieu,Pugieu,COM,01098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons -34,2020-03-20,COMD,86053,0,CHAMPIGNY LE SEC,Champigny-le-Sec,Champigny-le-Sec,COM,86053,0,CHAMPIGNY EN ROCHEREAU,Champigny en Rochereau,Champigny en Rochereau -34,2020-03-20,COM,86053,0,CHAMPIGNY EN ROCHEREAU,Champigny en Rochereau,Champigny en Rochereau,COM,86053,0,CHAMPIGNY EN ROCHEREAU,Champigny en Rochereau,Champigny en Rochereau -34,2020-03-20,COMD,86208,2,ROCHEREAU,Rochereau,Le Rochereau,COM,86053,0,CHAMPIGNY EN ROCHEREAU,Champigny en Rochereau,Champigny en Rochereau -34,2020-03-15,COMD,23192,0,SAINT ETIENNE DE FURSAC,Saint-Étienne-de-Fursac,Saint-Étienne-de-Fursac,COM,23192,0,FURSAC,Fursac,Fursac -34,2020-03-15,COM,23192,0,FURSAC,Fursac,Fursac,COM,23192,0,FURSAC,Fursac,Fursac -34,2020-03-15,COMD,23231,0,SAINT PIERRE DE FURSAC,Saint-Pierre-de-Fursac,Saint-Pierre-de-Fursac,COM,23192,0,FURSAC,Fursac,Fursac -34,2020-03-15,COMD,28101,0,CIVRY,Civry,Civry,COM,28330,0,VILLEMAURY,Villemaury,Villemaury -34,2020-03-15,COMD,28224,0,LUTZ EN DUNOIS,Lutz-en-Dunois,Lutz-en-Dunois,COM,28330,0,VILLEMAURY,Villemaury,Villemaury -34,2020-03-15,COMD,28295,1,OZOIR LE BREUIL,Ozoir-le-Breuil,Ozoir-le-Breuil,COM,28330,0,VILLEMAURY,Villemaury,Villemaury -34,2020-03-15,COM,28330,0,VILLEMAURY,Villemaury,Villemaury,COM,28330,0,VILLEMAURY,Villemaury,Villemaury -34,2020-03-15,COMD,28330,0,SAINT CLOUD EN DUNOIS,Saint-Cloud-en-Dunois,Saint-Cloud-en-Dunois,COM,28330,0,VILLEMAURY,Villemaury,Villemaury -34,2020-03-15,COMD,38293,0,PANISSAGE,Panissage,Panissage,COM,38560,0,VAL DE VIRIEU,Val-de-Virieu,Val-de-Virieu -34,2020-03-15,COM,38560,0,VAL DE VIRIEU,Val-de-Virieu,Val-de-Virieu,COM,38560,0,VAL DE VIRIEU,Val-de-Virieu,Val-de-Virieu -34,2020-03-15,COMD,38560,0,VIRIEU,Virieu,Virieu,COM,38560,0,VAL DE VIRIEU,Val-de-Virieu,Val-de-Virieu -34,2020-03-15,COM,39021,3,CHAILLEUSE,Chailleuse,La Chailleuse,COM,39021,3,CHAILLEUSE,Chailleuse,La Chailleuse -34,2020-03-15,COMD,39069,0,BOURCIA,Bourcia,Bourcia,COM,39485,0,VAL SURAN,Val Suran,Val Suran -34,2020-03-15,COMD,39113,0,CHASSAL,Chassal,Chassal,COM,39339,0,CHASSAL MOLINGES,Chassal-Molinges,Chassal-Molinges -34,2020-03-15,COM,39177,0,HAUTEROCHE,Hauteroche,Hauteroche,COM,39177,0,HAUTEROCHE,Hauteroche,Hauteroche -34,2020-03-15,COMD,39177,0,CRANCOT,Crançot,Crançot,COM,39177,0,HAUTEROCHE,Hauteroche,Hauteroche -34,2020-03-15,COMD,39215,1,ESSIA,Essia,Essia,COM,39021,3,CHAILLEUSE,Chailleuse,La Chailleuse -34,2020-03-15,COMD,39260,0,GRANGES SUR BAUME,Granges-sur-Baume,Granges-sur-Baume,COM,39177,0,HAUTEROCHE,Hauteroche,Hauteroche -34,2020-03-15,COMD,39303,0,LOUVENNE,Louvenne,Louvenne,COM,39485,0,VAL SURAN,Val Suran,Val Suran -34,2020-03-15,COMD,39332,0,MIREBEL,Mirebel,Mirebel,COM,39177,0,HAUTEROCHE,Hauteroche,Hauteroche -34,2020-03-15,COM,39339,0,CHASSAL MOLINGES,Chassal-Molinges,Chassal-Molinges,COM,39339,0,CHASSAL MOLINGES,Chassal-Molinges,Chassal-Molinges -34,2020-03-15,COMD,39339,0,MOLINGES,Molinges,Molinges,COM,39339,0,CHASSAL MOLINGES,Chassal-Molinges,Chassal-Molinges -34,2020-03-15,COMD,39341,4,MOLUNES,Molunes,Les Molunes,COM,39510,0,SEPTMONCEL LES MOLUNES,Septmoncel les Molunes,Septmoncel les Molunes -34,2020-03-15,COM,39485,0,VAL SURAN,Val Suran,Val Suran,COM,39485,0,VAL SURAN,Val Suran,Val Suran -34,2020-03-15,COMD,39485,0,SAINT JULIEN,Saint-Julien,Saint-Julien,COM,39485,0,VAL SURAN,Val Suran,Val Suran -34,2020-03-15,COMD,39488,0,SAINT LAURENT LA ROCHE,Saint-Laurent-la-Roche,Saint-Laurent-la-Roche,COM,39021,3,CHAILLEUSE,Chailleuse,La Chailleuse -34,2020-03-15,COMD,39510,0,SEPTMONCEL,Septmoncel,Septmoncel,COM,39510,0,SEPTMONCEL LES MOLUNES,Septmoncel les Molunes,Septmoncel les Molunes -34,2020-03-15,COM,39510,0,SEPTMONCEL LES MOLUNES,Septmoncel les Molunes,Septmoncel les Molunes,COM,39510,0,SEPTMONCEL LES MOLUNES,Septmoncel les Molunes,Septmoncel les Molunes -34,2020-03-15,COMD,39544,0,VARESSIA,Varessia,Varessia,COM,39021,3,CHAILLEUSE,Chailleuse,La Chailleuse -34,2020-03-15,COMD,39564,0,VILLECHANTRIA,Villechantria,Villechantria,COM,39485,0,VAL SURAN,Val Suran,Val Suran -34,2020-03-15,COMD,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire -34,2020-03-15,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire -34,2020-03-15,COMD,50142,0,COSQUEVILLE,Cosqueville,Cosqueville,COM,50142,0,VICQ SUR MER,Vicq-sur-Mer,Vicq-sur-Mer -34,2020-03-15,COM,50142,0,VICQ SUR MER,Vicq-sur-Mer,Vicq-sur-Mer,COM,50142,0,VICQ SUR MER,Vicq-sur-Mer,Vicq-sur-Mer -34,2020-03-15,COMD,50211,0,GOUBERVILLE,Gouberville,Gouberville,COM,50142,0,VICQ SUR MER,Vicq-sur-Mer,Vicq-sur-Mer -34,2020-03-15,COMD,50319,2,MESNIL RAOULT,Mesnil-Raoult,Le Mesnil-Raoult,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire -34,2020-03-15,COMD,50358,0,MORSALINES,Morsalines,Morsalines,COM,50417,0,QUETTEHOU,Quettehou,Quettehou -34,2020-03-15,COMD,50375,0,NEVILLE SUR MER,Néville-sur-Mer,Néville-sur-Mer,COM,50142,0,VICQ SUR MER,Vicq-sur-Mer,Vicq-sur-Mer -34,2020-03-15,COM,50417,0,QUETTEHOU,Quettehou,Quettehou,COM,50417,0,QUETTEHOU,Quettehou,Quettehou -34,2020-03-15,COMD,50417,0,QUETTEHOU,Quettehou,Quettehou,COM,50417,0,QUETTEHOU,Quettehou,Quettehou -34,2020-03-15,COMD,50432,0,RETHOVILLE,Réthoville,Réthoville,COM,50142,0,VICQ SUR MER,Vicq-sur-Mer,Vicq-sur-Mer -34,2020-03-15,COMD,50608,0,TROISGOTS,Troisgots,Troisgots,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire -34,2020-03-15,COM,60644,0,TRIE CHATEAU,Trie-Château,Trie-Château,COM,60644,0,TRIE CHATEAU,Trie-Château,Trie-Château -34,2020-03-15,COMD,60644,0,TRIE CHATEAU,Trie-Château,Trie-Château,COM,60644,0,TRIE CHATEAU,Trie-Château,Trie-Château -34,2020-03-15,COMD,60690,0,VILLERS SUR TRIE,Villers-sur-Trie,Villers-sur-Trie,COM,60644,0,TRIE CHATEAU,Trie-Château,Trie-Château -34,2020-03-15,COM,63255,0,NONETTE ORSONNETTE,Nonette-Orsonnette,Nonette-Orsonnette,COM,63255,0,NONETTE ORSONNETTE,Nonette-Orsonnette,Nonette-Orsonnette -34,2020-03-15,COMD,63255,0,NONETTE,Nonette,Nonette,COM,63255,0,NONETTE ORSONNETTE,Nonette-Orsonnette,Nonette-Orsonnette -34,2020-03-15,COMD,63266,1,ORSONNETTE,Orsonnette,Orsonnette,COM,63255,0,NONETTE ORSONNETTE,Nonette-Orsonnette,Nonette-Orsonnette -34,2020-03-15,COMD,69221,0,SAINT LAURENT DE VAUX,Saint-Laurent-de-Vaux,Saint-Laurent-de-Vaux,COM,69255,0,VAUGNERAY,Vaugneray,Vaugneray -34,2020-03-15,COM,69255,0,VAUGNERAY,Vaugneray,Vaugneray,COM,69255,0,VAUGNERAY,Vaugneray,Vaugneray -34,2020-03-15,COMD,69255,0,VAUGNERAY,Vaugneray,Vaugneray,COM,69255,0,VAUGNERAY,Vaugneray,Vaugneray -34,2020-03-15,COMD,77028,0,BEAUTHEIL,Beautheil,Beautheil,COM,77433,0,BEAUTHEIL SAINTS,Beautheil-Saints,Beautheil-Saints -34,2020-03-15,COMD,77433,0,SAINTS,Saints,Saints,COM,77433,0,BEAUTHEIL SAINTS,Beautheil-Saints,Beautheil-Saints -34,2020-03-15,COM,77433,0,BEAUTHEIL SAINTS,Beautheil-Saints,Beautheil-Saints,COM,77433,0,BEAUTHEIL SAINTS,Beautheil-Saints,Beautheil-Saints -70,2020-03-15,COM,67495,0,TRUCHTERSHEIM,Truchtersheim,Truchtersheim,COMA,67024,0,BEHLENHEIM,Behlenheim,Behlenheim -34,2020-03-14,COMD,28017,1,AUTHEUIL,Autheuil,Autheuil,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières -34,2020-03-14,COMD,28083,0,CHARRAY,Charray,Charray,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières -34,2020-03-14,COMD,28103,0,CLOYES SUR LE LOIR,Cloyes-sur-le-Loir,Cloyes-sur-le-Loir,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières -34,2020-03-14,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières -34,2020-03-14,COMD,28133,0,DOUY,Douy,Douy,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières -34,2020-03-14,COMD,28150,3,FERTE VILLENEUIL,Ferté-Villeneuil,La Ferté-Villeneuil,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières -34,2020-03-14,COMD,28205,0,LANNERAY,Lanneray,Lanneray,COM,28334,0,SAINT DENIS LANNERAY,Saint-Denis-Lanneray,Saint-Denis-Lanneray -34,2020-03-14,COMD,28241,2,MEE,Mée,Le Mée,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières -34,2020-03-14,COMD,28262,0,MONTIGNY LE GANNELON,Montigny-le-Gannelon,Montigny-le-Gannelon,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières -34,2020-03-14,COMD,28318,0,ROMILLY SUR AIGRE,Romilly-sur-Aigre,Romilly-sur-Aigre,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières -34,2020-03-14,COMD,28334,0,SAINT DENIS LES PONTS,Saint-Denis-les-Ponts,Saint-Denis-les-Ponts,COM,28334,0,SAINT DENIS LANNERAY,Saint-Denis-Lanneray,Saint-Denis-Lanneray -34,2020-03-14,COM,28334,0,SAINT DENIS LANNERAY,Saint-Denis-Lanneray,Saint-Denis-Lanneray,COM,28334,0,SAINT DENIS LANNERAY,Saint-Denis-Lanneray,Saint-Denis-Lanneray -34,2020-03-14,COMD,28340,0,SAINT HILAIRE SUR YERRE,Saint-Hilaire-sur-Yerre,Saint-Hilaire-sur-Yerre,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières -34,2020-03-12,COMD,60475,1,OGNON,Ognon,Ognon,COM,60682,0,VILLERS SAINT FRAMBOURG OGNON,Villers-Saint-Frambourg-Ognon,Villers-Saint-Frambourg-Ognon -34,2020-03-12,COMD,60682,0,VILLERS SAINT FRAMBOURG,Villers-Saint-Frambourg,Villers-Saint-Frambourg,COM,60682,0,VILLERS SAINT FRAMBOURG OGNON,Villers-Saint-Frambourg-Ognon,Villers-Saint-Frambourg-Ognon -34,2020-03-12,COM,60682,0,VILLERS SAINT FRAMBOURG OGNON,Villers-Saint-Frambourg-Ognon,Villers-Saint-Frambourg-Ognon,COM,60682,0,VILLERS SAINT FRAMBOURG OGNON,Villers-Saint-Frambourg-Ognon,Villers-Saint-Frambourg-Ognon -34,2020-03-09,COMD,50012,1,ANGOVILLE SUR AY,Angoville-sur-Ay,Angoville-sur-Ay,COM,50267,0,LESSAY,Lessay,Lessay -34,2020-03-09,COMD,50267,0,LESSAY,Lessay,Lessay,COM,50267,0,LESSAY,Lessay,Lessay -34,2020-03-09,COM,50267,0,LESSAY,Lessay,Lessay,COM,50267,0,LESSAY,Lessay,Lessay -34,2020-03-01,COMD,01227,0,MAGNIEU,Magnieu,Magnieu,COM,01227,0,MAGNIEU,Magnieu,Magnieu -34,2020-03-01,COM,01227,0,MAGNIEU,Magnieu,Magnieu,COM,01227,0,MAGNIEU,Magnieu,Magnieu -34,2020-03-01,COMD,01341,0,SAINT CHAMP,Saint-Champ,Saint-Champ,COM,01227,0,MAGNIEU,Magnieu,Magnieu -34,2020-03-01,COMD,16274,0,RANCOGNE,Rancogne,Rancogne,COM,16406,0,MOULINS SUR TARDOIRE,Moulins-sur-Tardoire,Moulins-sur-Tardoire -34,2020-03-01,COM,16406,0,MOULINS SUR TARDOIRE,Moulins-sur-Tardoire,Moulins-sur-Tardoire,COM,16406,0,MOULINS SUR TARDOIRE,Moulins-sur-Tardoire,Moulins-sur-Tardoire -34,2020-03-01,COMD,16406,0,VILHONNEUR,Vilhonneur,Vilhonneur,COM,16406,0,MOULINS SUR TARDOIRE,Moulins-sur-Tardoire,Moulins-sur-Tardoire -34,2020-03-01,COMD,27290,0,GOUPILLIERES,Goupillières,Goupillières,COM,27290,0,GOUPIL OTHON,Goupil-Othon,Goupil-Othon -34,2020-03-01,COM,27290,0,GOUPIL OTHON,Goupil-Othon,Goupil-Othon,COM,27290,0,GOUPIL OTHON,Goupil-Othon,Goupil-Othon -34,2020-03-01,COMD,27302,2,GROS THEIL,Gros-Theil,Le Gros-Theil,COM,27302,2,BOSC DU THEIL,Bosc du Theil,Le Bosc du Theil -34,2020-03-01,COM,27302,2,BOSC DU THEIL,Bosc du Theil,Le Bosc du Theil,COM,27302,2,BOSC DU THEIL,Bosc du Theil,Le Bosc du Theil -34,2020-03-01,COMD,27574,0,SAINT NICOLAS DU BOSC,Saint-Nicolas-du-Bosc,Saint-Nicolas-du-Bosc,COM,27302,2,BOSC DU THEIL,Bosc du Theil,Le Bosc du Theil -34,2020-03-01,COMD,27642,2,TILLEUL OTHON,Tilleul-Othon,Le Tilleul-Othon,COM,27290,0,GOUPIL OTHON,Goupil-Othon,Goupil-Othon -34,2020-03-01,COM,28183,0,GOMMERVILLE,Gommerville,Gommerville,COM,28183,0,GOMMERVILLE,Gommerville,Gommerville -34,2020-03-01,COMD,28288,1,ORLU,Orlu,Orlu,COM,28183,0,GOMMERVILLE,Gommerville,Gommerville -34,2020-03-01,COMD,35129,0,GUIPRY,Guipry,Guipry,COM,35176,0,GUIPRY MESSAC,Guipry-Messac,Guipry-Messac -34,2020-03-01,COM,35176,0,GUIPRY MESSAC,Guipry-Messac,Guipry-Messac,COM,35176,0,GUIPRY MESSAC,Guipry-Messac,Guipry-Messac -34,2020-03-01,COMD,35176,0,MESSAC,Messac,Messac,COM,35176,0,GUIPRY MESSAC,Guipry-Messac,Guipry-Messac -34,2020-03-01,COMD,39023,5,AUBEPIN,Aubépin,L'Aubépin,COM,39378,4,TROIS CHATEAUX,Trois-Châteaux,Les Trois-Châteaux -34,2020-03-01,COMD,39135,0,CHAZELLES,Chazelles,Chazelles,COM,39378,4,TROIS CHATEAUX,Trois-Châteaux,Les Trois-Châteaux -34,2020-03-01,COM,39378,4,TROIS CHATEAUX,Trois-Châteaux,Les Trois-Châteaux,COM,39378,4,TROIS CHATEAUX,Trois-Châteaux,Les Trois-Châteaux -34,2020-03-01,COMD,39378,0,NANC LES SAINT AMOUR,Nanc-lès-Saint-Amour,Nanc-lès-Saint-Amour,COM,39378,4,TROIS CHATEAUX,Trois-Châteaux,Les Trois-Châteaux -34,2020-03-01,COMD,39484,0,SAINT JEAN D ETREUX,Saint-Jean-d'Étreux,Saint-Jean-d'Étreux,COM,39378,4,TROIS CHATEAUX,Trois-Châteaux,Les Trois-Châteaux -34,2020-03-01,COMD,91182,0,COURCOURONNES,Courcouronnes,Courcouronnes,COM,91228,1,EVRY COURCOURONNES,Évry-Courcouronnes,Évry-Courcouronnes -34,2020-03-01,COM,91228,1,EVRY COURCOURONNES,Évry-Courcouronnes,Évry-Courcouronnes,COM,91228,1,EVRY COURCOURONNES,Évry-Courcouronnes,Évry-Courcouronnes -34,2020-03-01,COMD,91228,1,EVRY,Évry,Évry,COM,91228,1,EVRY COURCOURONNES,Évry-Courcouronnes,Évry-Courcouronnes -10,2020-02-29,COM,07242,0,SAINT GINEIS EN COIRON,Saint-Gineis-en-Coiron,Saint-Gineis-en-Coiron,COM,07242,0,SAINT GINEYS EN COIRON,Saint-Gineys-en-Coiron,Saint-Gineys-en-Coiron +35,2020-07-03,COMD,36093,0,LEVROUX,Levroux,Levroux,COM,36093,0,LEVROUX,Levroux,Levroux +35,2020-07-03,COMD,36206,0,SAINT PIERRE DE LAMPS,Saint-Pierre-de-Lamps,Saint-Pierre-de-Lamps,COM,36093,0,LEVROUX,Levroux,Levroux +35,2020-07-01,COMD,5053,1,EYGUIANS,Eyguians,Eyguians,COM,5053,0,GARDE COLOMBE,Garde-Colombe,Garde-Colombe +35,2020-07-01,COMD,5069,0,LAGRAND,Lagrand,Lagrand,COM,5053,0,GARDE COLOMBE,Garde-Colombe,Garde-Colombe +35,2020-07-01,COMD,5143,0,SAINT GENIS,Saint-Genis,Saint-Genis,COM,5053,0,GARDE COLOMBE,Garde-Colombe,Garde-Colombe +35,2020-07-01,COMD,16043,0,BIGNAC,Bignac,Bignac,COM,16148,0,GENAC BIGNAC,Genac-Bignac,Genac-Bignac +35,2020-07-01,COMD,16148,0,GENAC,Genac,Genac,COM,16148,0,GENAC BIGNAC,Genac-Bignac,Genac-Bignac +35,2020-07-01,COMD,62757,0,SAINT MARTIN AU LAERT,Saint-Martin-au-Laërt,Saint-Martin-au-Laërt,COM,62757,0,SAINT MARTIN LEZ TATINGHEM,Saint-Martin-lez-Tatinghem,Saint-Martin-lez-Tatinghem +35,2020-07-01,COMD,62807,0,TATINGHEM,Tatinghem,Tatinghem,COM,62757,0,SAINT MARTIN LEZ TATINGHEM,Saint-Martin-lez-Tatinghem,Saint-Martin-lez-Tatinghem +35,2020-06-30,COMD,27636,2,THUIT ANGER,Thuit-Anger,Le Thuit-Anger,COM,27638,2,THUIT DE L OISON,Thuit de l'Oison,Le Thuit de l'Oison +35,2020-06-30,COMD,27638,2,THUIT SIGNOL,Thuit-Signol,Le Thuit-Signol,COM,27638,2,THUIT DE L OISON,Thuit de l'Oison,Le Thuit de l'Oison +35,2020-06-30,COMD,27639,2,THUIT SIMER,Thuit-Simer,Le Thuit-Simer,COM,27638,2,THUIT DE L OISON,Thuit de l'Oison,Le Thuit de l'Oison +35,2020-06-15,COMD,27145,0,CHANTELOUP,Chanteloup,Chanteloup,COM,27157,0,MARBOIS,Marbois,Marbois +35,2020-06-15,COMD,27157,2,CHESNE,Chesne,Le Chesne,COM,27157,0,MARBOIS,Marbois,Marbois +35,2020-06-15,COMD,27225,4,ESSARTS,Essarts,Les Essarts,COM,27157,0,MARBOIS,Marbois,Marbois +35,2020-06-15,COMD,27532,0,SAINT DENIS DU BEHELAN,Saint-Denis-du-Béhélan,Saint-Denis-du-Béhélan,COM,27157,0,MARBOIS,Marbois,Marbois +35,2020-06-15,COMD,78551,0,SAINT GERMAIN EN LAYE,Saint-Germain-en-Laye,Saint-Germain-en-Laye,COM,78551,0,SAINT GERMAIN EN LAYE,Saint-Germain-en-Laye,Saint-Germain-en-Laye +35,2020-06-08,COMD,50209,0,GONNEVILLE,Gonneville,Gonneville,COM,50209,0,GONNEVILLE LE THEIL,Gonneville-Le Theil,Gonneville-Le Theil +35,2020-06-08,COMD,50595,2,THEIL,Theil,Le Theil,COM,50209,0,GONNEVILLE LE THEIL,Gonneville-Le Theil,Gonneville-Le Theil +35,2020-06-05,COMD,24178,0,FESTALEMPS,Festalemps,Festalemps,COM,24490,0,SAINT PRIVAT EN PERIGORD,Saint Privat en Périgord,Saint Privat en Périgord +35,2020-06-05,COMD,24368,0,SAINT ANTOINE CUMOND,Saint-Antoine-Cumond,Saint-Antoine-Cumond,COM,24490,0,SAINT PRIVAT EN PERIGORD,Saint Privat en Périgord,Saint Privat en Périgord +35,2020-06-05,COMD,24490,0,SAINT PRIVAT DES PRES,Saint-Privat-des-Prés,Saint-Privat-des-Prés,COM,24490,0,SAINT PRIVAT EN PERIGORD,Saint Privat en Périgord,Saint Privat en Périgord +35,2020-06-05,COMD,45129,0,DOUCHY,Douchy,Douchy,COM,45129,0,DOUCHY MONTCORBON,Douchy-Montcorbon,Douchy-Montcorbon +35,2020-06-05,COMD,45211,0,MONTCORBON,Montcorbon,Montcorbon,COM,45129,0,DOUCHY MONTCORBON,Douchy-Montcorbon,Douchy-Montcorbon +35,2020-06-04,COMD,18123,0,LAVERDINES,Laverdines,Laverdines,COM,18023,0,BAUGY,Baugy,Baugy +35,2020-06-04,COMD,18239,0,SALIGNY LE VIF,Saligny-le-Vif,Saligny-le-Vif,COM,18023,0,BAUGY,Baugy,Baugy +35,2020-06-03,COMD,45051,0,BRAY EN VAL,Bray-en-Val,Bray-en-Val,COM,45051,0,BRAY SAINT AIGNAN,Bray-Saint-Aignan,Bray-Saint-Aignan +35,2020-06-03,COMD,45267,0,SAINT AIGNAN DES GUES,Saint-Aignan-des-Gués,Saint-Aignan-des-Gués,COM,45051,0,BRAY SAINT AIGNAN,Bray-Saint-Aignan,Bray-Saint-Aignan +35,2020-06-02,COMD,25028,1,ATHOSE,Athose,Athose,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins +35,2020-06-02,COMD,25128,0,CHASNANS,Chasnans,Chasnans,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins +35,2020-06-02,COMD,25302,1,HAUTEPIERRE LE CHATELET,Hautepierre-le-Châtelet,Hautepierre-le-Châtelet,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins +35,2020-06-02,COMD,25424,0,NODS,Nods,Nods,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins +35,2020-06-02,COMD,25480,0,RANTECHAUX,Rantechaux,Rantechaux,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins +35,2020-06-02,COMD,25585,0,VANCLANS,Vanclans,Vanclans,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins +35,2020-06-02,COMD,62226,0,CLARQUES,Clarques,Clarques,COM,62691,0,SAINT AUGUSTIN,Saint-Augustin,Saint-Augustin +35,2020-06-02,COMD,62691,0,REBECQUES,Rebecques,Rebecques,COM,62691,0,SAINT AUGUSTIN,Saint-Augustin,Saint-Augustin +35,2020-06-01,COMD,14200,0,CREULLY,Creully,Creully,COM,14200,0,CREULLY SUR SEULLES,Creully sur Seulles,Creully sur Seulles +35,2020-06-01,COMD,14577,0,SAINT GABRIEL BRECY,Saint-Gabriel-Brécy,Saint-Gabriel-Brécy,COM,14200,0,CREULLY SUR SEULLES,Creully sur Seulles,Creully sur Seulles +35,2020-06-01,COMD,14757,0,VILLIERS LE SEC,Villiers-le-Sec,Villiers-le-Sec,COM,14200,0,CREULLY SUR SEULLES,Creully sur Seulles,Creully sur Seulles +35,2020-06-01,COMD,16046,0,BLANZAC PORCHERESSE,Blanzac-Porcheresse,Blanzac-Porcheresse,COM,16046,0,COTEAUX DU BLANZACAIS,Coteaux-du-Blanzacais,Coteaux-du-Blanzacais +35,2020-06-01,COMD,16115,0,CRESSAC SAINT GENIS,Cressac-Saint-Genis,Cressac-Saint-Genis,COM,16046,0,COTEAUX DU BLANZACAIS,Coteaux-du-Blanzacais,Coteaux-du-Blanzacais +35,2020-06-01,COMD,16332,0,SAINT LEGER,Saint-Léger,Saint-Léger,COM,16046,0,COTEAUX DU BLANZACAIS,Coteaux-du-Blanzacais,Coteaux-du-Blanzacais +35,2020-05-29,COMD,17103,0,CHERVETTES,Chervettes,Chervettes,COM,17457,3,DEVISE,Devise,La Devise +35,2020-05-29,COMD,17352,0,SAINT LAURENT DE LA BARRIERE,Saint-Laurent-de-la-Barrière,Saint-Laurent-de-la-Barrière,COM,17457,3,DEVISE,Devise,La Devise +35,2020-05-29,COMD,17457,0,VANDRE,Vandré,Vandré,COM,17457,3,DEVISE,Devise,La Devise +35,2020-05-28,COMD,27268,2,FRESNE,Fresne,Le Fresne,COM,27447,2,VAL DORE,Val-Doré,Le Val-Doré +35,2020-05-28,COMD,27402,2,MESNIL HARDRAY,Mesnil-Hardray,Le Mesnil-Hardray,COM,27447,2,VAL DORE,Val-Doré,Le Val-Doré +35,2020-05-28,COMD,72023,0,BALLON,Ballon,Ballon,COM,72023,0,BALLON SAINT MARS,Ballon-Saint Mars,Ballon-Saint Mars +35,2020-05-28,COMD,72301,0,SAINT MARS SOUS BALLON,Saint-Mars-sous-Ballon,Saint-Mars-sous-Ballon,COM,72023,0,BALLON SAINT MARS,Ballon-Saint Mars,Ballon-Saint Mars +35,2020-05-26,COMD,46025,0,BELMONTET,Belmontet,Belmontet,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc +35,2020-05-26,COMD,46166,0,LEBREIL,Lebreil,Lebreil,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc +35,2020-05-26,COMD,46201,0,MONTCUQ,Montcuq,Montcuq,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc +35,2020-05-26,COMD,46261,0,SAINTE CROIX,Sainte-Croix,Sainte-Croix,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc +35,2020-05-26,COMD,46326,0,VALPRIONDE,Valprionde,Valprionde,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc +35,2020-05-26,COMD,76089,0,BETTEVILLE,Betteville,Betteville,COM,76289,0,SAINT MARTIN DE L IF,Saint Martin de l'If,Saint Martin de l'If +35,2020-05-26,COMD,76267,3,FOLLETIERE,Folletière,La Folletière,COM,76289,0,SAINT MARTIN DE L IF,Saint Martin de l'If,Saint Martin de l'If +35,2020-05-26,COMD,76289,0,FREVILLE,Fréville,Fréville,COM,76289,0,SAINT MARTIN DE L IF,Saint Martin de l'If,Saint Martin de l'If +35,2020-05-26,COMD,76444,0,MONT DE L IF,Mont-de-l'If,Mont-de-l'If,COM,76289,0,SAINT MARTIN DE L IF,Saint Martin de l'If,Saint Martin de l'If +35,2020-05-25,COMD,12005,1,ALPUECH,Alpuech,Alpuech,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac +35,2020-05-25,COMD,12112,0,GRAISSAC,Graissac,Graissac,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac +35,2020-05-25,COMD,12117,0,LACALM,Lacalm,Lacalm,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac +35,2020-05-25,COMD,12223,0,SAINTE GENEVIEVE SUR ARGENCE,Sainte-Geneviève-sur-Argence,Sainte-Geneviève-sur-Argence,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac +35,2020-05-25,COMD,12279,3,TERRISSE,Terrisse,La Terrisse,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac +35,2020-05-25,COMD,12304,0,VITRAC EN VIADENE,Vitrac-en-Viadène,Vitrac-en-Viadène,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac +35,2020-05-25,COMD,68319,0,SPECHBACH LE BAS,Spechbach-le-Bas,Spechbach-le-Bas,COM,68320,0,SPECHBACH,Spechbach,Spechbach +35,2020-05-25,COMD,68320,0,SPECHBACH LE HAUT,Spechbach-le-Haut,Spechbach-le-Haut,COM,68320,0,SPECHBACH,Spechbach,Spechbach +35,2020-05-23,COMD,88018,1,AUMONTZEY,Aumontzey,Aumontzey,COM,88218,0,GRANGES AUMONTZEY,Granges-Aumontzey,Granges-Aumontzey +35,2020-05-23,COMD,88218,0,GRANGES SUR VOLOGNE,Granges-sur-Vologne,Granges-sur-Vologne,COM,88218,0,GRANGES AUMONTZEY,Granges-Aumontzey,Granges-Aumontzey +35,2020-05-18,COMD,80209,0,CONTOIRE,Contoire,Contoire,COM,80625,0,TROIS RIVIERES,Trois-Rivières,Trois-Rivières +35,2020-05-18,COMD,80419,1,HARGICOURT,Hargicourt,Hargicourt,COM,80625,0,TROIS RIVIERES,Trois-Rivières,Trois-Rivières +35,2020-05-18,COMD,80625,0,PIERREPONT SUR AVRE,Pierrepont-sur-Avre,Pierrepont-sur-Avre,COM,80625,0,TROIS RIVIERES,Trois-Rivières,Trois-Rivières +70,2020-05-01,COMD,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac,COMD,52387,0,PIEPAPE,Piépape,Piépape +70,2020-05-01,COMD,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac,COMD,52402,0,PRANGEY,Prangey,Prangey +70,2020-05-01,COMD,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac,COMD,52454,0,SAINT MICHEL,Saint-Michel,Saint-Michel +70,2020-05-01,COMD,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac,COMD,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac +70,2020-04-24,COMD,8490,0,VOUZIERS,Vouziers,Vouziers,COMD,8068,0,BLAISE,Blaise,Blaise +70,2020-04-24,COMD,8490,0,VOUZIERS,Vouziers,Vouziers,COMD,8490,0,VOUZIERS,Vouziers,Vouziers +35,2020-04-01,COMD,16021,1,AUBEVILLE,Aubeville,Aubeville,COM,16175,0,VAL DES VIGNES,Val des Vignes,Val des Vignes +35,2020-04-01,COMD,16175,0,JURIGNAC,Jurignac,Jurignac,COM,16175,0,VAL DES VIGNES,Val des Vignes,Val des Vignes +35,2020-04-01,COMD,16201,0,MAINFONDS,Mainfonds,Mainfonds,COM,16175,0,VAL DES VIGNES,Val des Vignes,Val des Vignes +35,2020-04-01,COMD,16257,0,PEREUIL,Péreuil,Péreuil,COM,16175,0,VAL DES VIGNES,Val des Vignes,Val des Vignes +35,2020-04-01,COMD,45287,0,SAINT LOUP DE GONOIS,Saint-Loup-de-Gonois,Saint-Loup-de-Gonois,COM,45307,3,SELLE SUR LE BIED,Selle-sur-le-Bied,La Selle-sur-le-Bied +35,2020-03-31,COMD,50180,0,FERVACHES,Fervaches,Fervaches,COM,50592,0,TESSY BOCAGE,Tessy-Bocage,Tessy-Bocage +35,2020-03-31,COMD,50592,0,TESSY SUR VIRE,Tessy-sur-Vire,Tessy-sur-Vire,COM,50592,0,TESSY BOCAGE,Tessy-Bocage,Tessy-Bocage +35,2020-03-31,COMD,50649,0,PONT FARCY,Pont-Farcy,Pont-Farcy,COM,50592,0,TESSY BOCAGE,Tessy-Bocage,Tessy-Bocage +35,2020-03-23,COMD,14008,1,AMBLIE,Amblie,Amblie,COM,14355,0,PONTS SUR SEULLES,Ponts sur Seulles,Ponts sur Seulles +35,2020-03-23,COMD,14355,0,LANTHEUIL,Lantheuil,Lantheuil,COM,14355,0,PONTS SUR SEULLES,Ponts sur Seulles,Ponts sur Seulles +35,2020-03-23,COMD,14690,0,TIERCEVILLE,Tierceville,Tierceville,COM,14355,0,PONTS SUR SEULLES,Ponts sur Seulles,Ponts sur Seulles +35,2020-03-22,COMD,1098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons,COM,1098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons +35,2020-03-22,COMD,1316,0,PUGIEU,Pugieu,Pugieu,COM,1098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons +35,2020-03-20,COMD,86053,0,CHAMPIGNY LE SEC,Champigny-le-Sec,Champigny-le-Sec,COM,86053,0,CHAMPIGNY EN ROCHEREAU,Champigny en Rochereau,Champigny en Rochereau +35,2020-03-20,COMD,86208,2,ROCHEREAU,Rochereau,Le Rochereau,COM,86053,0,CHAMPIGNY EN ROCHEREAU,Champigny en Rochereau,Champigny en Rochereau +35,2020-03-15,COMD,23192,0,SAINT ETIENNE DE FURSAC,Saint-Étienne-de-Fursac,Saint-Étienne-de-Fursac,COM,23192,0,FURSAC,Fursac,Fursac +35,2020-03-15,COMD,23231,0,SAINT PIERRE DE FURSAC,Saint-Pierre-de-Fursac,Saint-Pierre-de-Fursac,COM,23192,0,FURSAC,Fursac,Fursac +35,2020-03-15,COMD,28101,0,CIVRY,Civry,Civry,COM,28330,0,VILLEMAURY,Villemaury,Villemaury +35,2020-03-15,COMD,28224,0,LUTZ EN DUNOIS,Lutz-en-Dunois,Lutz-en-Dunois,COM,28330,0,VILLEMAURY,Villemaury,Villemaury +35,2020-03-15,COMD,28295,1,OZOIR LE BREUIL,Ozoir-le-Breuil,Ozoir-le-Breuil,COM,28330,0,VILLEMAURY,Villemaury,Villemaury +35,2020-03-15,COMD,28330,0,SAINT CLOUD EN DUNOIS,Saint-Cloud-en-Dunois,Saint-Cloud-en-Dunois,COM,28330,0,VILLEMAURY,Villemaury,Villemaury +35,2020-03-15,COMD,38293,0,PANISSAGE,Panissage,Panissage,COM,38560,0,VAL DE VIRIEU,Val-de-Virieu,Val-de-Virieu +35,2020-03-15,COMD,38560,0,VIRIEU,Virieu,Virieu,COM,38560,0,VAL DE VIRIEU,Val-de-Virieu,Val-de-Virieu +35,2020-03-15,COMD,39069,0,BOURCIA,Bourcia,Bourcia,COM,39485,0,VAL SURAN,Val Suran,Val Suran +35,2020-03-15,COMD,39113,0,CHASSAL,Chassal,Chassal,COM,39339,0,CHASSAL MOLINGES,Chassal-Molinges,Chassal-Molinges +35,2020-03-15,COMD,39177,0,CRANCOT,Crançot,Crançot,COM,39177,0,HAUTEROCHE,Hauteroche,Hauteroche +35,2020-03-15,COMD,39215,1,ESSIA,Essia,Essia,COM,39021,3,CHAILLEUSE,Chailleuse,La Chailleuse +35,2020-03-15,COMD,39260,0,GRANGES SUR BAUME,Granges-sur-Baume,Granges-sur-Baume,COM,39177,0,HAUTEROCHE,Hauteroche,Hauteroche +35,2020-03-15,COMD,39303,0,LOUVENNE,Louvenne,Louvenne,COM,39485,0,VAL SURAN,Val Suran,Val Suran +35,2020-03-15,COMD,39332,0,MIREBEL,Mirebel,Mirebel,COM,39177,0,HAUTEROCHE,Hauteroche,Hauteroche +35,2020-03-15,COMD,39339,0,MOLINGES,Molinges,Molinges,COM,39339,0,CHASSAL MOLINGES,Chassal-Molinges,Chassal-Molinges +35,2020-03-15,COMD,39341,4,MOLUNES,Molunes,Les Molunes,COM,39510,0,SEPTMONCEL LES MOLUNES,Septmoncel les Molunes,Septmoncel les Molunes +35,2020-03-15,COMD,39485,0,SAINT JULIEN,Saint-Julien,Saint-Julien,COM,39485,0,VAL SURAN,Val Suran,Val Suran +35,2020-03-15,COMD,39488,0,SAINT LAURENT LA ROCHE,Saint-Laurent-la-Roche,Saint-Laurent-la-Roche,COM,39021,3,CHAILLEUSE,Chailleuse,La Chailleuse +35,2020-03-15,COMD,39510,0,SEPTMONCEL,Septmoncel,Septmoncel,COM,39510,0,SEPTMONCEL LES MOLUNES,Septmoncel les Molunes,Septmoncel les Molunes +35,2020-03-15,COMD,39544,0,VARESSIA,Varessia,Varessia,COM,39021,3,CHAILLEUSE,Chailleuse,La Chailleuse +35,2020-03-15,COMD,39564,0,VILLECHANTRIA,Villechantria,Villechantria,COM,39485,0,VAL SURAN,Val Suran,Val Suran +35,2020-03-15,COMD,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire +35,2020-03-15,COMD,50142,0,COSQUEVILLE,Cosqueville,Cosqueville,COM,50142,0,VICQ SUR MER,Vicq-sur-Mer,Vicq-sur-Mer +35,2020-03-15,COMD,50211,0,GOUBERVILLE,Gouberville,Gouberville,COM,50142,0,VICQ SUR MER,Vicq-sur-Mer,Vicq-sur-Mer +35,2020-03-15,COMD,50319,2,MESNIL RAOULT,Mesnil-Raoult,Le Mesnil-Raoult,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire +35,2020-03-15,COMD,50358,0,MORSALINES,Morsalines,Morsalines,COM,50417,0,QUETTEHOU,Quettehou,Quettehou +35,2020-03-15,COMD,50375,0,NEVILLE SUR MER,Néville-sur-Mer,Néville-sur-Mer,COM,50142,0,VICQ SUR MER,Vicq-sur-Mer,Vicq-sur-Mer +35,2020-03-15,COMD,50417,0,QUETTEHOU,Quettehou,Quettehou,COM,50417,0,QUETTEHOU,Quettehou,Quettehou +35,2020-03-15,COMD,50432,0,RETHOVILLE,Réthoville,Réthoville,COM,50142,0,VICQ SUR MER,Vicq-sur-Mer,Vicq-sur-Mer +35,2020-03-15,COMD,50608,0,TROISGOTS,Troisgots,Troisgots,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire +35,2020-03-15,COMD,60644,0,TRIE CHATEAU,Trie-Château,Trie-Château,COM,60644,0,TRIE CHATEAU,Trie-Château,Trie-Château +35,2020-03-15,COMD,60690,0,VILLERS SUR TRIE,Villers-sur-Trie,Villers-sur-Trie,COM,60644,0,TRIE CHATEAU,Trie-Château,Trie-Château +35,2020-03-15,COMD,63255,0,NONETTE,Nonette,Nonette,COM,63255,0,NONETTE ORSONNETTE,Nonette-Orsonnette,Nonette-Orsonnette +35,2020-03-15,COMD,63266,1,ORSONNETTE,Orsonnette,Orsonnette,COM,63255,0,NONETTE ORSONNETTE,Nonette-Orsonnette,Nonette-Orsonnette +70,2020-03-15,COMD,67495,0,TRUCHTERSHEIM,Truchtersheim,Truchtersheim,COMD,67024,0,BEHLENHEIM,Behlenheim,Behlenheim +70,2020-03-15,COMD,67495,0,TRUCHTERSHEIM,Truchtersheim,Truchtersheim,COMD,67495,0,TRUCHTERSHEIM,Truchtersheim,Truchtersheim +35,2020-03-15,COMD,69221,0,SAINT LAURENT DE VAUX,Saint-Laurent-de-Vaux,Saint-Laurent-de-Vaux,COM,69255,0,VAUGNERAY,Vaugneray,Vaugneray +35,2020-03-15,COMD,69255,0,VAUGNERAY,Vaugneray,Vaugneray,COM,69255,0,VAUGNERAY,Vaugneray,Vaugneray +35,2020-03-15,COMD,77028,0,BEAUTHEIL,Beautheil,Beautheil,COM,77433,0,BEAUTHEIL SAINTS,Beautheil-Saints,Beautheil-Saints +35,2020-03-15,COMD,77433,0,SAINTS,Saints,Saints,COM,77433,0,BEAUTHEIL SAINTS,Beautheil-Saints,Beautheil-Saints +35,2020-03-14,COMD,28017,1,AUTHEUIL,Autheuil,Autheuil,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières +35,2020-03-14,COMD,28083,0,CHARRAY,Charray,Charray,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières +35,2020-03-14,COMD,28103,0,CLOYES SUR LE LOIR,Cloyes-sur-le-Loir,Cloyes-sur-le-Loir,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières +35,2020-03-14,COMD,28133,0,DOUY,Douy,Douy,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières +35,2020-03-14,COMD,28150,3,FERTE VILLENEUIL,Ferté-Villeneuil,La Ferté-Villeneuil,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières +35,2020-03-14,COMD,28205,0,LANNERAY,Lanneray,Lanneray,COM,28334,0,SAINT DENIS LANNERAY,Saint-Denis-Lanneray,Saint-Denis-Lanneray +35,2020-03-14,COMD,28241,2,MEE,Mée,Le Mée,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières +35,2020-03-14,COMD,28262,0,MONTIGNY LE GANNELON,Montigny-le-Gannelon,Montigny-le-Gannelon,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières +35,2020-03-14,COMD,28318,0,ROMILLY SUR AIGRE,Romilly-sur-Aigre,Romilly-sur-Aigre,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières +35,2020-03-14,COMD,28334,0,SAINT DENIS LES PONTS,Saint-Denis-les-Ponts,Saint-Denis-les-Ponts,COM,28334,0,SAINT DENIS LANNERAY,Saint-Denis-Lanneray,Saint-Denis-Lanneray +35,2020-03-14,COMD,28340,0,SAINT HILAIRE SUR YERRE,Saint-Hilaire-sur-Yerre,Saint-Hilaire-sur-Yerre,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières +35,2020-03-12,COMD,60475,1,OGNON,Ognon,Ognon,COM,60682,0,VILLERS SAINT FRAMBOURG OGNON,Villers-Saint-Frambourg-Ognon,Villers-Saint-Frambourg-Ognon +35,2020-03-12,COMD,60682,0,VILLERS SAINT FRAMBOURG,Villers-Saint-Frambourg,Villers-Saint-Frambourg,COM,60682,0,VILLERS SAINT FRAMBOURG OGNON,Villers-Saint-Frambourg-Ognon,Villers-Saint-Frambourg-Ognon +35,2020-03-09,COMD,50012,1,ANGOVILLE SUR AY,Angoville-sur-Ay,Angoville-sur-Ay,COM,50267,0,LESSAY,Lessay,Lessay +35,2020-03-09,COMD,50267,0,LESSAY,Lessay,Lessay,COM,50267,0,LESSAY,Lessay,Lessay +35,2020-03-01,COMD,1227,0,MAGNIEU,Magnieu,Magnieu,COM,1227,0,MAGNIEU,Magnieu,Magnieu +35,2020-03-01,COMD,1341,0,SAINT CHAMP,Saint-Champ,Saint-Champ,COM,1227,0,MAGNIEU,Magnieu,Magnieu +35,2020-03-01,COMD,16274,0,RANCOGNE,Rancogne,Rancogne,COM,16406,0,MOULINS SUR TARDOIRE,Moulins-sur-Tardoire,Moulins-sur-Tardoire +35,2020-03-01,COMD,16406,0,VILHONNEUR,Vilhonneur,Vilhonneur,COM,16406,0,MOULINS SUR TARDOIRE,Moulins-sur-Tardoire,Moulins-sur-Tardoire +35,2020-03-01,COMD,27290,0,GOUPILLIERES,Goupillières,Goupillières,COM,27290,0,GOUPIL OTHON,Goupil-Othon,Goupil-Othon +35,2020-03-01,COMD,27302,2,GROS THEIL,Gros-Theil,Le Gros-Theil,COM,27302,2,BOSC DU THEIL,Bosc du Theil,Le Bosc du Theil +35,2020-03-01,COMD,27574,0,SAINT NICOLAS DU BOSC,Saint-Nicolas-du-Bosc,Saint-Nicolas-du-Bosc,COM,27302,2,BOSC DU THEIL,Bosc du Theil,Le Bosc du Theil +35,2020-03-01,COMD,27642,2,TILLEUL OTHON,Tilleul-Othon,Le Tilleul-Othon,COM,27290,0,GOUPIL OTHON,Goupil-Othon,Goupil-Othon +35,2020-03-01,COMD,28288,1,ORLU,Orlu,Orlu,COM,28183,0,GOMMERVILLE,Gommerville,Gommerville +35,2020-03-01,COMD,35129,0,GUIPRY,Guipry,Guipry,COM,35176,0,GUIPRY MESSAC,Guipry-Messac,Guipry-Messac +35,2020-03-01,COMD,35176,0,MESSAC,Messac,Messac,COM,35176,0,GUIPRY MESSAC,Guipry-Messac,Guipry-Messac +35,2020-03-01,COMD,39023,5,AUBEPIN,Aubépin,L'Aubépin,COM,39378,4,TROIS CHATEAUX,Trois-Châteaux,Les Trois-Châteaux +35,2020-03-01,COMD,39135,0,CHAZELLES,Chazelles,Chazelles,COM,39378,4,TROIS CHATEAUX,Trois-Châteaux,Les Trois-Châteaux +35,2020-03-01,COMD,39378,0,NANC LES SAINT AMOUR,Nanc-lès-Saint-Amour,Nanc-lès-Saint-Amour,COM,39378,4,TROIS CHATEAUX,Trois-Châteaux,Les Trois-Châteaux +35,2020-03-01,COMD,39484,0,SAINT JEAN D ETREUX,Saint-Jean-d'Étreux,Saint-Jean-d'Étreux,COM,39378,4,TROIS CHATEAUX,Trois-Châteaux,Les Trois-Châteaux +35,2020-03-01,COMD,91182,0,COURCOURONNES,Courcouronnes,Courcouronnes,COM,91228,1,EVRY COURCOURONNES,Évry-Courcouronnes,Évry-Courcouronnes +35,2020-03-01,COMD,91228,1,EVRY,Évry,Évry,COM,91228,1,EVRY COURCOURONNES,Évry-Courcouronnes,Évry-Courcouronnes +10,2020-02-29,COM,7242,0,SAINT GINEIS EN COIRON,Saint-Gineis-en-Coiron,Saint-Gineis-en-Coiron,COM,7242,0,SAINT GINEYS EN COIRON,Saint-Gineys-en-Coiron,Saint-Gineys-en-Coiron 10,2020-02-29,COM,24291,0,MONTIGNAC,Montignac,Montignac,COM,24291,0,MONTIGNAC LASCAUX,Montignac-Lascaux,Montignac-Lascaux 10,2020-02-29,COM,24459,0,SAINT MAIME DE PEREYROL,Saint-Maime-de-Péreyrol,Saint-Maime-de-Péreyrol,COM,24459,0,SAINT MAYME DE PEREYROL,Saint-Mayme-de-Péreyrol,Saint-Mayme-de-Péreyrol 10,2020-02-29,COM,32199,0,LASSERADE,Lasserade,Lasserade,COM,32199,0,LASSERRADE,Lasserrade,Lasserrade @@ -415,224 +406,203 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,2020-02-29,COM,63460,0,VILLOSANGES,Villosanges,Villosanges,COM,63460,0,VILLOSSANGES,Villossanges,Villossanges 10,2020-02-29,COM,66076,0,FELLUNS,Felluns,Felluns,COM,66076,0,FEILLUNS,Feilluns,Feilluns 10,2020-02-29,COM,71401,0,SAINTE CROIX,Sainte-Croix,Sainte-Croix,COM,71401,0,SAINTE CROIX EN BRESSE,Sainte-Croix-en-Bresse,Sainte-Croix-en-Bresse -34,2020-02-13,COM,27085,0,FLANCOURT CRESCY EN ROUMOIS,Flancourt-Crescy-en-Roumois,Flancourt-Crescy-en-Roumois,COM,27085,0,FLANCOURT CRESCY EN ROUMOIS,Flancourt-Crescy-en-Roumois,Flancourt-Crescy-en-Roumois -34,2020-02-13,COMD,27223,1,EPREVILLE EN ROUMOIS,Épreville-en-Roumois,Épreville-en-Roumois,COM,27085,0,FLANCOURT CRESCY EN ROUMOIS,Flancourt-Crescy-en-Roumois,Flancourt-Crescy-en-Roumois -34,2020-02-13,COMD,27244,0,FLANCOURT CATELON,Flancourt-Catelon,Flancourt-Catelon,COM,27085,0,FLANCOURT CRESCY EN ROUMOIS,Flancourt-Crescy-en-Roumois,Flancourt-Crescy-en-Roumois +35,2020-02-13,COMD,27223,1,EPREVILLE EN ROUMOIS,Épreville-en-Roumois,Épreville-en-Roumois,COM,27085,0,FLANCOURT CRESCY EN ROUMOIS,Flancourt-Crescy-en-Roumois,Flancourt-Crescy-en-Roumois +35,2020-02-13,COMD,27244,0,FLANCOURT CATELON,Flancourt-Catelon,Flancourt-Catelon,COM,27085,0,FLANCOURT CRESCY EN ROUMOIS,Flancourt-Crescy-en-Roumois,Flancourt-Crescy-en-Roumois 34,2020-02-12,COMA,35036,0,BRAIN SUR VILAINE,Brain-sur-Vilaine,Brain-sur-Vilaine,COM,35064,3,CHAPELLE DE BRAIN,Chapelle-de-Brain,La Chapelle-de-Brain -34,2020-02-12,COM,35064,3,CHAPELLE DE BRAIN,Chapelle-de-Brain,La Chapelle-de-Brain,COM,35064,3,CHAPELLE DE BRAIN,Chapelle-de-Brain,La Chapelle-de-Brain -34,2020-01-01,COMD,12020,0,BALSAC,Balsac,Balsac,COM,12090,0,DRUELLE BALSAC,Druelle Balsac,Druelle Balsac -34,2020-01-01,COMD,12090,0,DRUELLE,Druelle,Druelle,COM,12090,0,DRUELLE BALSAC,Druelle Balsac,Druelle Balsac -34,2020-01-01,COM,12090,0,DRUELLE BALSAC,Druelle Balsac,Druelle Balsac,COM,12090,0,DRUELLE BALSAC,Druelle Balsac,Druelle Balsac -34,2020-01-01,COMD,16296,0,SAINT AMANT DE BONNIEURE,Saint-Amant-de-Bonnieure,Saint-Amant-de-Bonnieure,COM,16300,0,VAL DE BONNIEURE,Val-de-Bonnieure,Val-de-Bonnieure -34,2020-01-01,COMD,16300,0,SAINT ANGEAU,Saint-Angeau,Saint-Angeau,COM,16300,0,VAL DE BONNIEURE,Val-de-Bonnieure,Val-de-Bonnieure -34,2020-01-01,COM,16300,0,VAL DE BONNIEURE,Val-de-Bonnieure,Val-de-Bonnieure,COM,16300,0,VAL DE BONNIEURE,Val-de-Bonnieure,Val-de-Bonnieure -34,2020-01-01,COMD,16309,0,SAINTE COLOMBE,Sainte-Colombe,Sainte-Colombe,COM,16300,0,VAL DE BONNIEURE,Val-de-Bonnieure,Val-de-Bonnieure -34,2020-01-01,COMD,21178,0,CLEMENCEY,Clémencey,Clémencey,COM,21178,0,VALFORET,Valforêt,Valforêt -34,2020-01-01,COM,21178,0,VALFORET,Valforêt,Valforêt,COM,21178,0,VALFORET,Valforêt,Valforêt -34,2020-01-01,COMD,21513,0,QUEMIGNY POISOT,Quemigny-Poisot,Quemigny-Poisot,COM,21178,0,VALFORET,Valforêt,Valforêt -34,2020-01-01,COMD,24041,0,BEZENAC,Bézenac,Bézenac,COM,24087,0,CASTELS ET BEZENAC,Castels et Bézenac,Castels et Bézenac -34,2020-01-01,COMD,24087,0,CASTELS,Castels,Castels,COM,24087,0,CASTELS ET BEZENAC,Castels et Bézenac,Castels et Bézenac -34,2020-01-01,COM,24087,0,CASTELS ET BEZENAC,Castels et Bézenac,Castels et Bézenac,COM,24087,0,CASTELS ET BEZENAC,Castels et Bézenac,Castels et Bézenac -34,2020-01-01,COM,24142,0,COUX ET BIGAROQUE MOUZENS,Coux et Bigaroque-Mouzens,Coux et Bigaroque-Mouzens,COM,24142,0,COUX ET BIGAROQUE MOUZENS,Coux et Bigaroque-Mouzens,Coux et Bigaroque-Mouzens -34,2020-01-01,COMD,24142,0,COUX ET BIGAROQUE,Coux-et-Bigaroque,Coux-et-Bigaroque,COM,24142,0,COUX ET BIGAROQUE MOUZENS,Coux et Bigaroque-Mouzens,Coux et Bigaroque-Mouzens -34,2020-01-01,COMD,24298,0,MOUZENS,Mouzens,Mouzens,COM,24142,0,COUX ET BIGAROQUE MOUZENS,Coux et Bigaroque-Mouzens,Coux et Bigaroque-Mouzens -34,2020-01-01,COM,30052,0,BREAU MARS,Bréau-Mars,Bréau-Mars,COM,30052,0,BREAU MARS,Bréau-Mars,Bréau-Mars -34,2020-01-01,COMD,30052,0,BREAU ET SALAGOSSE,Bréau-et-Salagosse,Bréau-et-Salagosse,COM,30052,0,BREAU MARS,Bréau-Mars,Bréau-Mars -34,2020-01-01,COMD,30157,0,MARS,Mars,Mars,COM,30052,0,BREAU MARS,Bréau-Mars,Bréau-Mars -34,2020-01-01,COMD,33091,0,CANTENAC,Cantenac,Cantenac,COM,33268,0,MARGAUX CANTENAC,Margaux-Cantenac,Margaux-Cantenac -34,2020-01-01,COM,33268,0,MARGAUX CANTENAC,Margaux-Cantenac,Margaux-Cantenac,COM,33268,0,MARGAUX CANTENAC,Margaux-Cantenac,Margaux-Cantenac -34,2020-01-01,COMD,39036,3,BALME D EPY,Balme-d'Épy,La Balme-d'Épy,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy -34,2020-01-01,COMD,39158,0,COISIA,Coisia,Coisia,COM,39530,0,THOIRETTE COISIA,Thoirette-Coisia,Thoirette-Coisia -34,2020-01-01,COMD,39161,0,COMMUNAILLES EN MONTAGNE,Communailles-en-Montagne,Communailles-en-Montagne,COM,39331,0,MIGNOVILLARD,Mignovillard,Mignovillard -34,2020-01-01,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy -34,2020-01-01,COMD,39209,0,VAL D EPY,Val d'Épy,Val d'Épy,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy -34,2020-01-01,COMD,39226,0,FLORENTIA,Florentia,Florentia,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy -34,2020-01-01,COM,39331,0,MIGNOVILLARD,Mignovillard,Mignovillard,COM,39331,0,MIGNOVILLARD,Mignovillard,Mignovillard -34,2020-01-01,COMD,39382,0,NANTEY,Nantey,Nantey,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy -34,2020-01-01,COMD,39509,0,SENAUD,Senaud,Senaud,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy -34,2020-01-01,COMD,39530,0,THOIRETTE,Thoirette,Thoirette,COM,39530,0,THOIRETTE COISIA,Thoirette-Coisia,Thoirette-Coisia -34,2020-01-01,COM,39530,0,THOIRETTE COISIA,Thoirette-Coisia,Thoirette-Coisia,COM,39530,0,THOIRETTE COISIA,Thoirette-Coisia,Thoirette-Coisia -34,2020-01-01,COMD,48022,0,BEDOUES,Bédouès,Bédouès,COM,48050,0,BEDOUES COCURES,Bédouès-Cocurès,Bédouès-Cocurès -34,2020-01-01,COMD,48050,0,COCURES,Cocurès,Cocurès,COM,48050,0,BEDOUES COCURES,Bédouès-Cocurès,Bédouès-Cocurès -34,2020-01-01,COM,48050,0,BEDOUES COCURES,Bédouès-Cocurès,Bédouès-Cocurès,COM,48050,0,BEDOUES COCURES,Bédouès-Cocurès,Bédouès-Cocurès -34,2020-01-01,COM,48061,0,FLORAC TROIS RIVIERES,Florac Trois Rivières,Florac Trois Rivières,COM,48061,0,FLORAC TROIS RIVIERES,Florac Trois Rivières,Florac Trois Rivières -34,2020-01-01,COMD,48061,0,FLORAC,Florac,Florac,COM,48061,0,FLORAC TROIS RIVIERES,Florac Trois Rivières,Florac Trois Rivières -34,2020-01-01,COMD,48186,3,SALLE PRUNET,Salle-Prunet,La Salle-Prunet,COM,48061,0,FLORAC TROIS RIVIERES,Florac Trois Rivières,Florac Trois Rivières -34,2020-01-01,COM,60029,1,AUNEUIL,Auneuil,Auneuil,COM,60029,1,AUNEUIL,Auneuil,Auneuil -34,2020-01-01,COMD,60029,1,AUNEUIL,Auneuil,Auneuil,COM,60029,1,AUNEUIL,Auneuil,Auneuil -34,2020-01-01,COMD,60649,0,TROUSSURES,Troussures,Troussures,COM,60029,1,AUNEUIL,Auneuil,Auneuil -34,2020-01-01,COMD,79214,0,POUFFONDS,Pouffonds,Pouffonds,COM,79251,0,MARCILLE,Marcillé,Marcillé -34,2020-01-01,COM,79251,0,MARCILLE,Marcillé,Marcillé,COM,79251,0,MARCILLE,Marcillé,Marcillé -34,2020-01-01,COMD,79251,0,SAINT GENARD,Saint-Génard,Saint-Génard,COM,79251,0,MARCILLE,Marcillé,Marcillé +35,2020-01-01,COMD,12020,0,BALSAC,Balsac,Balsac,COM,12090,0,DRUELLE BALSAC,Druelle Balsac,Druelle Balsac +35,2020-01-01,COMD,12090,0,DRUELLE,Druelle,Druelle,COM,12090,0,DRUELLE BALSAC,Druelle Balsac,Druelle Balsac +35,2020-01-01,COMD,16296,0,SAINT AMANT DE BONNIEURE,Saint-Amant-de-Bonnieure,Saint-Amant-de-Bonnieure,COM,16300,0,VAL DE BONNIEURE,Val-de-Bonnieure,Val-de-Bonnieure +35,2020-01-01,COMD,16300,0,SAINT ANGEAU,Saint-Angeau,Saint-Angeau,COM,16300,0,VAL DE BONNIEURE,Val-de-Bonnieure,Val-de-Bonnieure +35,2020-01-01,COMD,16309,0,SAINTE COLOMBE,Sainte-Colombe,Sainte-Colombe,COM,16300,0,VAL DE BONNIEURE,Val-de-Bonnieure,Val-de-Bonnieure +35,2020-01-01,COMD,21178,0,CLEMENCEY,Clémencey,Clémencey,COM,21178,0,VALFORET,Valforêt,Valforêt +35,2020-01-01,COMD,21513,0,QUEMIGNY POISOT,Quemigny-Poisot,Quemigny-Poisot,COM,21178,0,VALFORET,Valforêt,Valforêt +35,2020-01-01,COMD,24041,0,BEZENAC,Bézenac,Bézenac,COM,24087,0,CASTELS ET BEZENAC,Castels et Bézenac,Castels et Bézenac +35,2020-01-01,COMD,24087,0,CASTELS,Castels,Castels,COM,24087,0,CASTELS ET BEZENAC,Castels et Bézenac,Castels et Bézenac +35,2020-01-01,COMD,24142,0,COUX ET BIGAROQUE,Coux-et-Bigaroque,Coux-et-Bigaroque,COM,24142,0,COUX ET BIGAROQUE MOUZENS,Coux et Bigaroque-Mouzens,Coux et Bigaroque-Mouzens +35,2020-01-01,COMD,24298,0,MOUZENS,Mouzens,Mouzens,COM,24142,0,COUX ET BIGAROQUE MOUZENS,Coux et Bigaroque-Mouzens,Coux et Bigaroque-Mouzens +35,2020-01-01,COMD,30052,0,BREAU ET SALAGOSSE,Bréau-et-Salagosse,Bréau-et-Salagosse,COM,30052,0,BREAU MARS,Bréau-Mars,Bréau-Mars +35,2020-01-01,COMD,30157,0,MARS,Mars,Mars,COM,30052,0,BREAU MARS,Bréau-Mars,Bréau-Mars +35,2020-01-01,COMD,33091,0,CANTENAC,Cantenac,Cantenac,COM,33268,0,MARGAUX CANTENAC,Margaux-Cantenac,Margaux-Cantenac +35,2020-01-01,COMD,38262,0,MORETEL DE MAILLES,Morêtel-de-Mailles,Morêtel-de-Mailles,COM,38439,0,CRETS EN BELLEDONNE,Crêts en Belledonne,Crêts en Belledonne +35,2020-01-01,COMD,39036,3,BALME D EPY,Balme-d'Épy,La Balme-d'Épy,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy +35,2020-01-01,COMD,39158,0,COISIA,Coisia,Coisia,COM,39530,0,THOIRETTE COISIA,Thoirette-Coisia,Thoirette-Coisia +35,2020-01-01,COMD,39161,0,COMMUNAILLES EN MONTAGNE,Communailles-en-Montagne,Communailles-en-Montagne,COM,39331,0,MIGNOVILLARD,Mignovillard,Mignovillard +35,2020-01-01,COMD,39209,0,VAL D EPY,Val d'Épy,Val d'Épy,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy +35,2020-01-01,COMD,39226,0,FLORENTIA,Florentia,Florentia,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy +35,2020-01-01,COMD,39382,0,NANTEY,Nantey,Nantey,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy +35,2020-01-01,COMD,39509,0,SENAUD,Senaud,Senaud,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy +35,2020-01-01,COMD,39530,0,THOIRETTE,Thoirette,Thoirette,COM,39530,0,THOIRETTE COISIA,Thoirette-Coisia,Thoirette-Coisia +35,2020-01-01,COMD,48022,0,BEDOUES,Bédouès,Bédouès,COM,48050,0,BEDOUES COCURES,Bédouès-Cocurès,Bédouès-Cocurès +35,2020-01-01,COMD,48050,0,COCURES,Cocurès,Cocurès,COM,48050,0,BEDOUES COCURES,Bédouès-Cocurès,Bédouès-Cocurès +35,2020-01-01,COMD,48061,0,FLORAC,Florac,Florac,COM,48061,0,FLORAC TROIS RIVIERES,Florac Trois Rivières,Florac Trois Rivières +35,2020-01-01,COMD,48186,3,SALLE PRUNET,Salle-Prunet,La Salle-Prunet,COM,48061,0,FLORAC TROIS RIVIERES,Florac Trois Rivières,Florac Trois Rivières 70,2020-01-01,COM,52064,0,BOURMONT ENTRE MEUSE ET MOUZON,Bourmont-entre-Meuse-et-Mouzon,Bourmont-entre-Meuse-et-Mouzon,COMD,52224,0,GONAINCOURT,Gonaincourt,Gonaincourt +35,2020-01-01,COMD,60029,1,AUNEUIL,Auneuil,Auneuil,COM,60029,1,AUNEUIL,Auneuil,Auneuil +35,2020-01-01,COMD,60649,0,TROUSSURES,Troussures,Troussures,COM,60029,1,AUNEUIL,Auneuil,Auneuil +35,2020-01-01,COMD,79214,0,POUFFONDS,Pouffonds,Pouffonds,COM,79251,0,MARCILLE,Marcillé,Marcillé +35,2020-01-01,COMD,79251,0,SAINT GENARD,Saint-Génard,Saint-Génard,COM,79251,0,MARCILLE,Marcillé,Marcillé 21,2019-12-31,COMD,14666,0,SANNERVILLE,Sannerville,Sannerville,COM,14666,0,SANNERVILLE,Sannerville,Sannerville -21,2019-12-31,COM,14712,0,SALINE,Saline,Saline,COM,14712,0,TROARN,Troarn,Troarn -21,2019-12-31,COM,14712,0,SALINE,Saline,Saline,COM,14666,0,SANNERVILLE,Sannerville,Sannerville 21,2019-12-31,COM,14712,0,SALINE,Saline,Saline,COMA,14114,0,BURES SUR DIVES,Bures-sur-Dives,Bures-sur-Dives -34,2019-12-31,COMD,21318,1,IVRY EN MONTAGNE,Ivry-en-Montagne,Ivry-en-Montagne,COM,21327,0,VAL MONT,Val-Mont,Val-Mont -34,2019-12-31,COMD,21327,0,JOURS EN VAUX,Jours-en-Vaux,Jours-en-Vaux,COM,21327,0,VAL MONT,Val-Mont,Val-Mont -34,2019-12-31,COM,21327,0,VAL MONT,Val-Mont,Val-Mont,COM,21327,0,VAL MONT,Val-Mont,Val-Mont -34,2019-12-31,COMD,27084,0,BOSC BENARD COMMIN,Bosc-Bénard-Commin,Bosc-Bénard-Commin,COM,27105,0,GRAND BOURGTHEROULDE,Grand Bourgtheroulde,Grand Bourgtheroulde -34,2019-12-31,COMD,27105,0,BOURGTHEROULDE INFREVILLE,Bourgtheroulde-Infreville,Bourgtheroulde-Infreville,COM,27105,0,GRAND BOURGTHEROULDE,Grand Bourgtheroulde,Grand Bourgtheroulde -34,2019-12-31,COM,27105,0,GRAND BOURGTHEROULDE,Grand Bourgtheroulde,Grand Bourgtheroulde,COM,27105,0,GRAND BOURGTHEROULDE,Grand Bourgtheroulde,Grand Bourgtheroulde -34,2019-12-31,COMD,27637,0,THUIT HEBERT,Thuit-Hébert,Thuit-Hébert,COM,27105,0,GRAND BOURGTHEROULDE,Grand Bourgtheroulde,Grand Bourgtheroulde +21,2019-12-31,COM,14712,0,SALINE,Saline,Saline,COM,14666,0,SANNERVILLE,Sannerville,Sannerville +21,2019-12-31,COM,14712,0,SALINE,Saline,Saline,COM,14712,0,TROARN,Troarn,Troarn 21,2019-12-31,COMD,14712,0,TROARN,Troarn,Troarn,COM,14712,0,TROARN,Troarn,Troarn -34,2019-07-01,COMD,16023,1,AUNAC,Aunac,Aunac,COM,16023,1,AUNAC SUR CHARENTE,Aunac-sur-Charente,Aunac-sur-Charente -34,2019-07-01,COM,16023,1,AUNAC SUR CHARENTE,Aunac-sur-Charente,Aunac-sur-Charente,COM,16023,1,AUNAC SUR CHARENTE,Aunac-sur-Charente,Aunac-sur-Charente -34,2019-07-01,COMD,16033,0,BAYERS,Bayers,Bayers,COM,16023,1,AUNAC SUR CHARENTE,Aunac-sur-Charente,Aunac-sur-Charente -34,2019-07-01,COMD,16094,0,CHENOMMET,Chenommet,Chenommet,COM,16023,1,AUNAC SUR CHARENTE,Aunac-sur-Charente,Aunac-sur-Charente +35,2019-12-31,COMD,21318,1,IVRY EN MONTAGNE,Ivry-en-Montagne,Ivry-en-Montagne,COM,21327,0,VAL MONT,Val-Mont,Val-Mont +35,2019-12-31,COMD,21327,0,JOURS EN VAUX,Jours-en-Vaux,Jours-en-Vaux,COM,21327,0,VAL MONT,Val-Mont,Val-Mont +35,2019-12-31,COMD,27084,0,BOSC BENARD COMMIN,Bosc-Bénard-Commin,Bosc-Bénard-Commin,COM,27105,0,GRAND BOURGTHEROULDE,Grand Bourgtheroulde,Grand Bourgtheroulde +35,2019-12-31,COMD,27105,0,BOURGTHEROULDE INFREVILLE,Bourgtheroulde-Infreville,Bourgtheroulde-Infreville,COM,27105,0,GRAND BOURGTHEROULDE,Grand Bourgtheroulde,Grand Bourgtheroulde +35,2019-12-31,COMD,27637,0,THUIT HEBERT,Thuit-Hébert,Thuit-Hébert,COM,27105,0,GRAND BOURGTHEROULDE,Grand Bourgtheroulde,Grand Bourgtheroulde +35,2019-07-01,COMD,16023,1,AUNAC,Aunac,Aunac,COM,16023,1,AUNAC SUR CHARENTE,Aunac-sur-Charente,Aunac-sur-Charente +35,2019-07-01,COMD,16033,0,BAYERS,Bayers,Bayers,COM,16023,1,AUNAC SUR CHARENTE,Aunac-sur-Charente,Aunac-sur-Charente +35,2019-07-01,COMD,16094,0,CHENOMMET,Chenommet,Chenommet,COM,16023,1,AUNAC SUR CHARENTE,Aunac-sur-Charente,Aunac-sur-Charente 34,2019-07-01,COMA,74115,1,ESSERTS SALEVE,Esserts-Salève,Esserts-Salève,COM,74185,0,MONNETIER MORNEX,Monnetier-Mornex,Monnetier-Mornex -34,2019-07-01,COM,74185,0,MONNETIER MORNEX,Monnetier-Mornex,Monnetier-Mornex,COM,74185,0,MONNETIER MORNEX,Monnetier-Mornex,Monnetier-Mornex -32,2019-03-01,COM,45287,0,SAINT LOUP DE GONOIS,Saint-Loup-de-Gonois,Saint-Loup-de-Gonois,COM,45307,3,SELLE SUR LE BIED,Selle-sur-le-Bied,La Selle-sur-le-Bied 32,2019-03-01,COM,45287,0,SAINT LOUP DE GONOIS,Saint-Loup-de-Gonois,Saint-Loup-de-Gonois,COMD,45287,0,SAINT LOUP DE GONOIS,Saint-Loup-de-Gonois,Saint-Loup-de-Gonois +32,2019-03-01,COM,45287,0,SAINT LOUP DE GONOIS,Saint-Loup-de-Gonois,Saint-Loup-de-Gonois,COM,45307,3,SELLE SUR LE BIED,Selle-sur-le-Bied,La Selle-sur-le-Bied 32,2019-03-01,COM,45307,3,SELLE SUR LE BIED,Selle-sur-le-Bied,La Selle-sur-le-Bied,COM,45307,3,SELLE SUR LE BIED,Selle-sur-le-Bied,La Selle-sur-le-Bied 32,2019-02-28,COM,21183,0,COLLONGES LES PREMIERES,Collonges-lès-Premières,Collonges-lès-Premières,COMD,21183,0,COLLONGES LES PREMIERES,Collonges-lès-Premières,Collonges-lès-Premières 32,2019-02-28,COM,21183,0,COLLONGES LES PREMIERES,Collonges-lès-Premières,Collonges-lès-Premières,COM,21183,0,COLLONGES ET PREMIERES,Collonges-et-Premières,Collonges-et-Premières -32,2019-02-28,COM,21213,0,CRIMOLOIS,Crimolois,Crimolois,COM,21452,0,NEUILLY CRIMOLOIS,Neuilly-Crimolois,Neuilly-Crimolois 32,2019-02-28,COM,21213,0,CRIMOLOIS,Crimolois,Crimolois,COMD,21213,0,CRIMOLOIS,Crimolois,Crimolois -32,2019-02-28,COM,21452,0,NEUILLY LES DIJON,Neuilly-lès-Dijon,Neuilly-lès-Dijon,COMD,21452,0,NEUILLY LES DIJON,Neuilly-lès-Dijon,Neuilly-lès-Dijon +32,2019-02-28,COM,21213,0,CRIMOLOIS,Crimolois,Crimolois,COM,21452,0,NEUILLY CRIMOLOIS,Neuilly-Crimolois,Neuilly-Crimolois 32,2019-02-28,COM,21452,0,NEUILLY LES DIJON,Neuilly-lès-Dijon,Neuilly-lès-Dijon,COM,21452,0,NEUILLY CRIMOLOIS,Neuilly-Crimolois,Neuilly-Crimolois -32,2019-02-28,COM,21507,0,PREMIERES,Premières,Premières,COMD,21507,0,PREMIERES,Premières,Premières +32,2019-02-28,COM,21452,0,NEUILLY LES DIJON,Neuilly-lès-Dijon,Neuilly-lès-Dijon,COMD,21452,0,NEUILLY LES DIJON,Neuilly-lès-Dijon,Neuilly-lès-Dijon 32,2019-02-28,COM,21507,0,PREMIERES,Premières,Premières,COM,21183,0,COLLONGES ET PREMIERES,Collonges-et-Premières,Collonges-et-Premières -34,2019-02-08,COMD,85060,0,CHATEAU D OLONNE,Château-d'Olonne,Château-d'Olonne,COM,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne -34,2019-02-08,COMD,85166,1,OLONNE SUR MER,Olonne-sur-Mer,Olonne-sur-Mer,COM,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne -34,2019-02-08,COM,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne,COM,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne -34,2019-02-08,COMD,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne,COM,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne -34,2019-01-07,COMD,24181,0,FLAUGEAC,Flaugeac,Flaugeac,COM,24534,0,SIGOULES ET FLAUGEAC,Sigoulès-et-Flaugeac,Sigoulès-et-Flaugeac -34,2019-01-07,COM,24534,0,SIGOULES ET FLAUGEAC,Sigoulès-et-Flaugeac,Sigoulès-et-Flaugeac,COM,24534,0,SIGOULES ET FLAUGEAC,Sigoulès-et-Flaugeac,Sigoulès-et-Flaugeac -34,2019-01-07,COMD,24534,0,SIGOULES,Sigoulès,Sigoulès,COM,24534,0,SIGOULES ET FLAUGEAC,Sigoulès-et-Flaugeac,Sigoulès-et-Flaugeac -32,2019-01-01,COM,01033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine,COMD,01033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine -32,2019-01-01,COM,01033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine,COM,01033,0,VALSERHONE,Valserhône,Valserhône -32,2019-01-01,COM,01036,0,BELMONT LUTHEZIEU,Belmont-Luthézieu,Belmont-Luthézieu,COMD,01036,0,BELMONT LUTHEZIEU,Belmont-Luthézieu,Belmont-Luthézieu -32,2019-01-01,COM,01036,0,BELMONT LUTHEZIEU,Belmont-Luthézieu,Belmont-Luthézieu,COM,01036,0,VALROMEY SUR SERAN,Valromey-sur-Séran,Valromey-sur-Séran -32,2019-01-01,COM,01059,0,BRENAZ,Brénaz,Brénaz,COM,01453,1,ARVIERE EN VALROMEY,Arvière-en-Valromey,Arvière-en-Valromey -32,2019-01-01,COM,01059,0,BRENAZ,Brénaz,Brénaz,COMD,01059,0,BRENAZ,Brénaz,Brénaz -32,2019-01-01,COM,01091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille,COMD,01091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille -32,2019-01-01,COM,01091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille,COM,01033,0,VALSERHONE,Valserhône,Valserhône -32,2019-01-01,COM,01097,0,CHAVORNAY,Chavornay,Chavornay,COMD,01097,0,CHAVORNAY,Chavornay,Chavornay -32,2019-01-01,COM,01097,0,CHAVORNAY,Chavornay,Chavornay,COM,01453,1,ARVIERE EN VALROMEY,Arvière-en-Valromey,Arvière-en-Valromey -32,2019-01-01,COM,01122,0,CORMARANCHE EN BUGEY,Cormaranche-en-Bugey,Cormaranche-en-Bugey,COMD,01122,0,CORMARANCHE EN BUGEY,Cormaranche-en-Bugey,Cormaranche-en-Bugey -32,2019-01-01,COM,01122,0,CORMARANCHE EN BUGEY,Cormaranche-en-Bugey,Cormaranche-en-Bugey,COM,01185,0,PLATEAU D HAUTEVILLE,Plateau d'Hauteville,Plateau d'Hauteville -32,2019-01-01,COM,01130,0,CRAS SUR REYSSOUZE,Cras-sur-Reyssouze,Cras-sur-Reyssouze,COMD,01130,0,CRAS SUR REYSSOUZE,Cras-sur-Reyssouze,Cras-sur-Reyssouze -32,2019-01-01,COM,01130,0,CRAS SUR REYSSOUZE,Cras-sur-Reyssouze,Cras-sur-Reyssouze,COM,01130,0,BRESSE VALLONS,Bresse Vallons,Bresse Vallons -32,2019-01-01,COM,01154,1,ETREZ,Étrez,Étrez,COMD,01154,1,ETREZ,Étrez,Étrez -32,2019-01-01,COM,01154,1,ETREZ,Étrez,Étrez,COM,01130,0,BRESSE VALLONS,Bresse Vallons,Bresse Vallons -32,2019-01-01,COM,01185,1,HAUTEVILLE LOMPNES,Hauteville-Lompnes,Hauteville-Lompnes,COMD,01185,1,HAUTEVILLE LOMPNES,Hauteville-Lompnes,Hauteville-Lompnes -32,2019-01-01,COM,01185,1,HAUTEVILLE LOMPNES,Hauteville-Lompnes,Hauteville-Lompnes,COM,01185,0,PLATEAU D HAUTEVILLE,Plateau d'Hauteville,Plateau d'Hauteville -32,2019-01-01,COM,01186,1,HOSTIAZ,Hostiaz,Hostiaz,COMD,01186,1,HOSTIAZ,Hostiaz,Hostiaz -32,2019-01-01,COM,01186,1,HOSTIAZ,Hostiaz,Hostiaz,COM,01185,0,PLATEAU D HAUTEVILLE,Plateau d'Hauteville,Plateau d'Hauteville -32,2019-01-01,COM,01205,0,LANCRANS,Lancrans,Lancrans,COMD,01205,0,LANCRANS,Lancrans,Lancrans -32,2019-01-01,COM,01205,0,LANCRANS,Lancrans,Lancrans,COM,01033,0,VALSERHONE,Valserhône,Valserhône -32,2019-01-01,COM,01215,0,LHOPITAL,Lhôpital,Lhôpital,COM,01215,0,SURJOUX LHOPITAL,Surjoux-Lhopital,Surjoux-Lhopital -32,2019-01-01,COM,01215,0,LHOPITAL,Lhôpital,Lhôpital,COMD,01215,0,LHOPITAL,Lhôpital,Lhôpital -32,2019-01-01,COM,01218,0,LOCHIEU,Lochieu,Lochieu,COM,01453,1,ARVIERE EN VALROMEY,Arvière-en-Valromey,Arvière-en-Valromey -32,2019-01-01,COM,01218,0,LOCHIEU,Lochieu,Lochieu,COMD,01218,0,LOCHIEU,Lochieu,Lochieu -32,2019-01-01,COM,01221,0,LOMPNIEU,Lompnieu,Lompnieu,COMD,01221,0,LOMPNIEU,Lompnieu,Lompnieu -32,2019-01-01,COM,01221,0,LOMPNIEU,Lompnieu,Lompnieu,COM,01036,0,VALROMEY SUR SERAN,Valromey-sur-Séran,Valromey-sur-Séran -32,2019-01-01,COM,01227,0,MAGNIEU,Magnieu,Magnieu,COMD,01227,0,MAGNIEU,Magnieu,Magnieu -32,2019-01-01,COM,01227,0,MAGNIEU,Magnieu,Magnieu,COM,01227,0,MAGNIEU,Magnieu,Magnieu -32,2019-01-01,COM,01341,0,SAINT CHAMP,Saint-Champ,Saint-Champ,COMD,01341,0,SAINT CHAMP,Saint-Champ,Saint-Champ -32,2019-01-01,COM,01341,0,SAINT CHAMP,Saint-Champ,Saint-Champ,COM,01227,0,MAGNIEU,Magnieu,Magnieu -32,2019-01-01,COM,01413,0,SURJOUX,Surjoux,Surjoux,COM,01215,0,SURJOUX LHOPITAL,Surjoux-Lhopital,Surjoux-Lhopital -32,2019-01-01,COM,01413,0,SURJOUX,Surjoux,Surjoux,COMD,01413,0,SURJOUX,Surjoux,Surjoux -32,2019-01-01,COM,01414,0,SUTRIEU,Sutrieu,Sutrieu,COMD,01414,0,SUTRIEU,Sutrieu,Sutrieu -32,2019-01-01,COM,01414,0,SUTRIEU,Sutrieu,Sutrieu,COM,01036,0,VALROMEY SUR SERAN,Valromey-sur-Séran,Valromey-sur-Séran -32,2019-01-01,COM,01417,0,THEZILLIEU,Thézillieu,Thézillieu,COM,01185,0,PLATEAU D HAUTEVILLE,Plateau d'Hauteville,Plateau d'Hauteville -32,2019-01-01,COM,01417,0,THEZILLIEU,Thézillieu,Thézillieu,COMD,01417,0,THEZILLIEU,Thézillieu,Thézillieu -32,2019-01-01,COM,01442,0,VIEU,Vieu,Vieu,COMD,01442,0,VIEU,Vieu,Vieu -32,2019-01-01,COM,01442,0,VIEU,Vieu,Vieu,COM,01036,0,VALROMEY SUR SERAN,Valromey-sur-Séran,Valromey-sur-Séran -32,2019-01-01,COM,01453,0,VIRIEU LE PETIT,Virieu-le-Petit,Virieu-le-Petit,COMD,01453,0,VIRIEU LE PETIT,Virieu-le-Petit,Virieu-le-Petit -32,2019-01-01,COM,01453,0,VIRIEU LE PETIT,Virieu-le-Petit,Virieu-le-Petit,COM,01453,1,ARVIERE EN VALROMEY,Arvière-en-Valromey,Arvière-en-Valromey -32,2019-01-01,COM,02018,1,ANIZY LE CHATEAU,Anizy-le-Château,Anizy-le-Château,COMD,02018,1,ANIZY LE CHATEAU,Anizy-le-Château,Anizy-le-Château -32,2019-01-01,COM,02018,1,ANIZY LE CHATEAU,Anizy-le-Château,Anizy-le-Château,COM,02018,1,ANIZY LE GRAND,Anizy-le-Grand,Anizy-le-Grand -32,2019-01-01,COM,02153,0,CESSIERES,Cessières,Cessières,COMD,02153,0,CESSIERES,Cessières,Cessières -32,2019-01-01,COM,02153,0,CESSIERES,Cessières,Cessières,COM,02153,0,CESSIERES SUZY,Cessières-Suzy,Cessières-Suzy -32,2019-01-01,COM,02301,0,FAUCOUCOURT,Faucoucourt,Faucoucourt,COM,02018,1,ANIZY LE GRAND,Anizy-le-Grand,Anizy-le-Grand -32,2019-01-01,COM,02301,0,FAUCOUCOURT,Faucoucourt,Faucoucourt,COMD,02301,0,FAUCOUCOURT,Faucoucourt,Faucoucourt -32,2019-01-01,COM,02360,0,GUIGNICOURT,Guignicourt,Guignicourt,COM,02360,0,VILLENEUVE SUR AISNE,Villeneuve-sur-Aisne,Villeneuve-sur-Aisne -32,2019-01-01,COM,02360,0,GUIGNICOURT,Guignicourt,Guignicourt,COMD,02360,0,GUIGNICOURT,Guignicourt,Guignicourt -32,2019-01-01,COM,02434,0,LIZY,Lizy,Lizy,COM,02018,1,ANIZY LE GRAND,Anizy-le-Grand,Anizy-le-Grand -32,2019-01-01,COM,02434,0,LIZY,Lizy,Lizy,COMD,02434,0,LIZY,Lizy,Lizy -32,2019-01-01,COM,02475,0,MENNEVILLE,Menneville,Menneville,COMD,02475,0,MENNEVILLE,Menneville,Menneville -32,2019-01-01,COM,02475,0,MENNEVILLE,Menneville,Menneville,COM,02360,0,VILLENEUVE SUR AISNE,Villeneuve-sur-Aisne,Villeneuve-sur-Aisne -32,2019-01-01,COM,02733,0,SUZY,Suzy,Suzy,COMD,02733,0,SUZY,Suzy,Suzy -32,2019-01-01,COM,02733,0,SUZY,Suzy,Suzy,COM,02153,0,CESSIERES SUZY,Cessières-Suzy,Cessières-Suzy -32,2019-01-01,COM,05001,1,ABRIES,Abriès,Abriès,COMD,05001,1,ABRIES,Abriès,Abriès -32,2019-01-01,COM,05001,1,ABRIES,Abriès,Abriès,COM,05001,1,ABRIES RISTOLAS,Abriès-Ristolas,Abriès-Ristolas -32,2019-01-01,COM,05120,0,RISTOLAS,Ristolas,Ristolas,COMD,05120,0,RISTOLAS,Ristolas,Ristolas -32,2019-01-01,COM,05120,0,RISTOLAS,Ristolas,Ristolas,COM,05001,1,ABRIES RISTOLAS,Abriès-Ristolas,Abriès-Ristolas -32,2019-01-01,COM,07011,1,ANTRAIGUES SUR VOLANE,Antraigues-sur-Volane,Antraigues-sur-Volane,COM,07011,0,VALLEES D ANTRAIGUES ASPERJOC,Vallées-d'Antraigues-Asperjoc,Vallées-d'Antraigues-Asperjoc -32,2019-01-01,COM,07011,1,ANTRAIGUES SUR VOLANE,Antraigues-sur-Volane,Antraigues-sur-Volane,COMD,07011,1,ANTRAIGUES SUR VOLANE,Antraigues-sur-Volane,Antraigues-sur-Volane -32,2019-01-01,COM,07016,1,ASPERJOC,Asperjoc,Asperjoc,COMD,07016,1,ASPERJOC,Asperjoc,Asperjoc -32,2019-01-01,COM,07016,1,ASPERJOC,Asperjoc,Asperjoc,COM,07011,0,VALLEES D ANTRAIGUES ASPERJOC,Vallées-d'Antraigues-Asperjoc,Vallées-d'Antraigues-Asperjoc -32,2019-01-01,COM,07103,1,INTRES,Intres,Intres,COM,07103,0,SAINT JULIEN D INTRES,Saint-Julien-d'Intres,Saint-Julien-d'Intres -32,2019-01-01,COM,07135,0,LAVAL D AURELLE,Laval-d'Aurelle,Laval-d'Aurelle,COMD,07135,0,LAVAL D AURELLE,Laval-d'Aurelle,Laval-d'Aurelle -32,2019-01-01,COM,07135,0,LAVAL D AURELLE,Laval-d'Aurelle,Laval-d'Aurelle,COM,07262,0,SAINT LAURENT LES BAINS LAVAL D AURELLE,Saint-Laurent-les-Bains-Laval-d'Aurelle,Saint-Laurent-les-Bains-Laval-d'Aurelle -32,2019-01-01,COM,07165,0,NONIERES,Nonières,Nonières,COMD,07165,0,NONIERES,Nonières,Nonières -32,2019-01-01,COM,07165,0,NONIERES,Nonières,Nonières,COM,07165,0,BELSENTES,Belsentes,Belsentes -32,2019-01-01,COM,07252,0,SAINT JULIEN BOUTIERES,Saint-Julien-Boutières,Saint-Julien-Boutières,COM,07103,0,SAINT JULIEN D INTRES,Saint-Julien-d'Intres,Saint-Julien-d'Intres -32,2019-01-01,COM,07256,0,SAINT JULIEN LABROUSSE,Saint-Julien-Labrousse,Saint-Julien-Labrousse,COMD,07256,0,SAINT JULIEN LABROUSSE,Saint-Julien-Labrousse,Saint-Julien-Labrousse -32,2019-01-01,COM,07256,0,SAINT JULIEN LABROUSSE,Saint-Julien-Labrousse,Saint-Julien-Labrousse,COM,07165,0,BELSENTES,Belsentes,Belsentes -32,2019-01-01,COM,07262,0,SAINT LAURENT LES BAINS,Saint-Laurent-les-Bains,Saint-Laurent-les-Bains,COMD,07262,0,SAINT LAURENT LES BAINS,Saint-Laurent-les-Bains,Saint-Laurent-les-Bains -32,2019-01-01,COM,07262,0,SAINT LAURENT LES BAINS,Saint-Laurent-les-Bains,Saint-Laurent-les-Bains,COM,07262,0,SAINT LAURENT LES BAINS LAVAL D AURELLE,Saint-Laurent-les-Bains-Laval-d'Aurelle,Saint-Laurent-les-Bains-Laval-d'Aurelle -32,2019-01-01,COM,08042,0,BALAIVES ET BUTZ,Balaives-et-Butz,Balaives-et-Butz,COMD,08042,0,BALAIVES ET BUTZ,Balaives-et-Butz,Balaives-et-Butz -32,2019-01-01,COM,08042,0,BALAIVES ET BUTZ,Balaives-et-Butz,Balaives-et-Butz,COM,08173,0,FLIZE,Flize,Flize -32,2019-01-01,COM,08079,0,BOUTANCOURT,Boutancourt,Boutancourt,COMD,08079,0,BOUTANCOURT,Boutancourt,Boutancourt -32,2019-01-01,COM,08079,0,BOUTANCOURT,Boutancourt,Boutancourt,COM,08173,0,FLIZE,Flize,Flize -32,2019-01-01,COM,08152,1,ELAN,Élan,Élan,COM,08173,0,FLIZE,Flize,Flize -32,2019-01-01,COM,08152,1,ELAN,Élan,Élan,COMD,08152,1,ELAN,Élan,Élan -32,2019-01-01,COM,08173,0,FLIZE,Flize,Flize,COM,08173,0,FLIZE,Flize,Flize -32,2019-01-01,COM,08173,0,FLIZE,Flize,Flize,COMD,08173,0,FLIZE,Flize,Flize -32,2019-01-01,COM,09028,1,AULOS,Aulos,Aulos,COM,09296,1,AULOS SINSAT,Aulos-Sinsat,Aulos-Sinsat -32,2019-01-01,COM,09028,1,AULOS,Aulos,Aulos,COMD,09028,1,AULOS,Aulos,Aulos -32,2019-01-01,COM,09135,0,GOULIER,Goulier,Goulier,COMD,09135,0,GOULIER,Goulier,Goulier -32,2019-01-01,COM,09135,0,GOULIER,Goulier,Goulier,COM,09334,0,VAL DE SOS,Val-de-Sos,Val-de-Sos -32,2019-01-01,COM,09286,0,SEM,Sem,Sem,COM,09334,0,VAL DE SOS,Val-de-Sos,Val-de-Sos -32,2019-01-01,COM,09286,0,SEM,Sem,Sem,COMD,09286,0,SEM,Sem,Sem -32,2019-01-01,COM,09296,0,SINSAT,Sinsat,Sinsat,COMD,09296,0,SINSAT,Sinsat,Sinsat -32,2019-01-01,COM,09296,0,SINSAT,Sinsat,Sinsat,COM,09296,1,AULOS SINSAT,Aulos-Sinsat,Aulos-Sinsat -32,2019-01-01,COM,09302,0,SUC ET SENTENAC,Suc-et-Sentenac,Suc-et-Sentenac,COMD,09302,0,SUC ET SENTENAC,Suc-et-Sentenac,Suc-et-Sentenac -32,2019-01-01,COM,09302,0,SUC ET SENTENAC,Suc-et-Sentenac,Suc-et-Sentenac,COM,09334,0,VAL DE SOS,Val-de-Sos,Val-de-Sos -32,2019-01-01,COM,09334,0,VICDESSOS,Vicdessos,Vicdessos,COM,09334,0,VAL DE SOS,Val-de-Sos,Val-de-Sos -32,2019-01-01,COM,09334,0,VICDESSOS,Vicdessos,Vicdessos,COMD,09334,0,VICDESSOS,Vicdessos,Vicdessos -32,2019-01-01,COM,11097,0,CONILHAC DE LA MONTAGNE,Conilhac-de-la-Montagne,Conilhac-de-la-Montagne,COM,11323,0,ROQUETAILLADE ET CONILHAC,Roquetaillade-et-Conilhac,Roquetaillade-et-Conilhac +32,2019-02-28,COM,21507,0,PREMIERES,Premières,Premières,COMD,21507,0,PREMIERES,Premières,Premières +35,2019-02-08,COMD,85060,0,CHATEAU D OLONNE,Château-d'Olonne,Château-d'Olonne,COM,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne +35,2019-02-08,COMD,85166,1,OLONNE SUR MER,Olonne-sur-Mer,Olonne-sur-Mer,COM,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne +35,2019-02-08,COMD,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne,COM,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne +35,2019-01-21,COMD,57439,0,MANDEREN,Manderen,Manderen,COM,57439,0,MANDEREN RITZING,Manderen-Ritzing,Manderen-Ritzing +35,2019-01-21,COMD,57585,0,RITZING,Ritzing,Ritzing,COM,57439,0,MANDEREN RITZING,Manderen-Ritzing,Manderen-Ritzing +35,2019-01-07,COMD,24181,0,FLAUGEAC,Flaugeac,Flaugeac,COM,24534,0,SIGOULES ET FLAUGEAC,Sigoulès-et-Flaugeac,Sigoulès-et-Flaugeac +35,2019-01-07,COMD,24534,0,SIGOULES,Sigoulès,Sigoulès,COM,24534,0,SIGOULES ET FLAUGEAC,Sigoulès-et-Flaugeac,Sigoulès-et-Flaugeac +32,2019-01-01,COM,1033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine,COM,1033,0,VALSERHONE,Valserhône,Valserhône +32,2019-01-01,COM,1033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine,COMD,1033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine +32,2019-01-01,COM,1036,0,BELMONT LUTHEZIEU,Belmont-Luthézieu,Belmont-Luthézieu,COMD,1036,0,BELMONT LUTHEZIEU,Belmont-Luthézieu,Belmont-Luthézieu +32,2019-01-01,COM,1036,0,BELMONT LUTHEZIEU,Belmont-Luthézieu,Belmont-Luthézieu,COM,1036,0,VALROMEY SUR SERAN,Valromey-sur-Séran,Valromey-sur-Séran +32,2019-01-01,COM,1059,0,BRENAZ,Brénaz,Brénaz,COMD,1059,0,BRENAZ,Brénaz,Brénaz +32,2019-01-01,COM,1059,0,BRENAZ,Brénaz,Brénaz,COM,1453,1,ARVIERE EN VALROMEY,Arvière-en-Valromey,Arvière-en-Valromey +32,2019-01-01,COM,1091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille,COM,1033,0,VALSERHONE,Valserhône,Valserhône +32,2019-01-01,COM,1091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille,COMD,1091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille +32,2019-01-01,COM,1097,0,CHAVORNAY,Chavornay,Chavornay,COMD,1097,0,CHAVORNAY,Chavornay,Chavornay +32,2019-01-01,COM,1097,0,CHAVORNAY,Chavornay,Chavornay,COM,1453,1,ARVIERE EN VALROMEY,Arvière-en-Valromey,Arvière-en-Valromey +32,2019-01-01,COM,1122,0,CORMARANCHE EN BUGEY,Cormaranche-en-Bugey,Cormaranche-en-Bugey,COMD,1122,0,CORMARANCHE EN BUGEY,Cormaranche-en-Bugey,Cormaranche-en-Bugey +32,2019-01-01,COM,1122,0,CORMARANCHE EN BUGEY,Cormaranche-en-Bugey,Cormaranche-en-Bugey,COM,1185,0,PLATEAU D HAUTEVILLE,Plateau d'Hauteville,Plateau d'Hauteville +32,2019-01-01,COM,1130,0,CRAS SUR REYSSOUZE,Cras-sur-Reyssouze,Cras-sur-Reyssouze,COMD,1130,0,CRAS SUR REYSSOUZE,Cras-sur-Reyssouze,Cras-sur-Reyssouze +32,2019-01-01,COM,1130,0,CRAS SUR REYSSOUZE,Cras-sur-Reyssouze,Cras-sur-Reyssouze,COM,1130,0,BRESSE VALLONS,Bresse Vallons,Bresse Vallons +32,2019-01-01,COM,1154,1,ETREZ,Étrez,Étrez,COM,1130,0,BRESSE VALLONS,Bresse Vallons,Bresse Vallons +32,2019-01-01,COM,1154,1,ETREZ,Étrez,Étrez,COMD,1154,1,ETREZ,Étrez,Étrez +32,2019-01-01,COM,1185,1,HAUTEVILLE LOMPNES,Hauteville-Lompnes,Hauteville-Lompnes,COMD,1185,1,HAUTEVILLE LOMPNES,Hauteville-Lompnes,Hauteville-Lompnes +32,2019-01-01,COM,1185,1,HAUTEVILLE LOMPNES,Hauteville-Lompnes,Hauteville-Lompnes,COM,1185,0,PLATEAU D HAUTEVILLE,Plateau d'Hauteville,Plateau d'Hauteville +32,2019-01-01,COM,1186,1,HOSTIAZ,Hostiaz,Hostiaz,COM,1185,0,PLATEAU D HAUTEVILLE,Plateau d'Hauteville,Plateau d'Hauteville +32,2019-01-01,COM,1186,1,HOSTIAZ,Hostiaz,Hostiaz,COMD,1186,1,HOSTIAZ,Hostiaz,Hostiaz +32,2019-01-01,COM,1205,0,LANCRANS,Lancrans,Lancrans,COM,1033,0,VALSERHONE,Valserhône,Valserhône +32,2019-01-01,COM,1205,0,LANCRANS,Lancrans,Lancrans,COMD,1205,0,LANCRANS,Lancrans,Lancrans +32,2019-01-01,COM,1215,0,LHOPITAL,Lhôpital,Lhôpital,COMD,1215,0,LHOPITAL,Lhôpital,Lhôpital +32,2019-01-01,COM,1215,0,LHOPITAL,Lhôpital,Lhôpital,COM,1215,0,SURJOUX LHOPITAL,Surjoux-Lhopital,Surjoux-Lhopital +32,2019-01-01,COM,1218,0,LOCHIEU,Lochieu,Lochieu,COMD,1218,0,LOCHIEU,Lochieu,Lochieu +32,2019-01-01,COM,1218,0,LOCHIEU,Lochieu,Lochieu,COM,1453,1,ARVIERE EN VALROMEY,Arvière-en-Valromey,Arvière-en-Valromey +32,2019-01-01,COM,1221,0,LOMPNIEU,Lompnieu,Lompnieu,COM,1036,0,VALROMEY SUR SERAN,Valromey-sur-Séran,Valromey-sur-Séran +32,2019-01-01,COM,1221,0,LOMPNIEU,Lompnieu,Lompnieu,COMD,1221,0,LOMPNIEU,Lompnieu,Lompnieu +32,2019-01-01,COM,1227,0,MAGNIEU,Magnieu,Magnieu,COMD,1227,0,MAGNIEU,Magnieu,Magnieu +32,2019-01-01,COM,1227,0,MAGNIEU,Magnieu,Magnieu,COM,1227,0,MAGNIEU,Magnieu,Magnieu +32,2019-01-01,COM,1341,0,SAINT CHAMP,Saint-Champ,Saint-Champ,COM,1227,0,MAGNIEU,Magnieu,Magnieu +32,2019-01-01,COM,1341,0,SAINT CHAMP,Saint-Champ,Saint-Champ,COMD,1341,0,SAINT CHAMP,Saint-Champ,Saint-Champ +32,2019-01-01,COM,1413,0,SURJOUX,Surjoux,Surjoux,COM,1215,0,SURJOUX LHOPITAL,Surjoux-Lhopital,Surjoux-Lhopital +32,2019-01-01,COM,1413,0,SURJOUX,Surjoux,Surjoux,COMD,1413,0,SURJOUX,Surjoux,Surjoux +32,2019-01-01,COM,1414,0,SUTRIEU,Sutrieu,Sutrieu,COM,1036,0,VALROMEY SUR SERAN,Valromey-sur-Séran,Valromey-sur-Séran +32,2019-01-01,COM,1414,0,SUTRIEU,Sutrieu,Sutrieu,COMD,1414,0,SUTRIEU,Sutrieu,Sutrieu +32,2019-01-01,COM,1417,0,THEZILLIEU,Thézillieu,Thézillieu,COM,1185,0,PLATEAU D HAUTEVILLE,Plateau d'Hauteville,Plateau d'Hauteville +32,2019-01-01,COM,1417,0,THEZILLIEU,Thézillieu,Thézillieu,COMD,1417,0,THEZILLIEU,Thézillieu,Thézillieu +32,2019-01-01,COM,1442,0,VIEU,Vieu,Vieu,COM,1036,0,VALROMEY SUR SERAN,Valromey-sur-Séran,Valromey-sur-Séran +32,2019-01-01,COM,1442,0,VIEU,Vieu,Vieu,COMD,1442,0,VIEU,Vieu,Vieu +32,2019-01-01,COM,1453,0,VIRIEU LE PETIT,Virieu-le-Petit,Virieu-le-Petit,COMD,1453,0,VIRIEU LE PETIT,Virieu-le-Petit,Virieu-le-Petit +32,2019-01-01,COM,1453,0,VIRIEU LE PETIT,Virieu-le-Petit,Virieu-le-Petit,COM,1453,1,ARVIERE EN VALROMEY,Arvière-en-Valromey,Arvière-en-Valromey +32,2019-01-01,COM,2018,1,ANIZY LE CHATEAU,Anizy-le-Château,Anizy-le-Château,COMD,2018,1,ANIZY LE CHATEAU,Anizy-le-Château,Anizy-le-Château +32,2019-01-01,COM,2018,1,ANIZY LE CHATEAU,Anizy-le-Château,Anizy-le-Château,COM,2018,1,ANIZY LE GRAND,Anizy-le-Grand,Anizy-le-Grand +32,2019-01-01,COM,2153,0,CESSIERES,Cessières,Cessières,COMD,2153,0,CESSIERES,Cessières,Cessières +32,2019-01-01,COM,2153,0,CESSIERES,Cessières,Cessières,COM,2153,0,CESSIERES SUZY,Cessières-Suzy,Cessières-Suzy +32,2019-01-01,COM,2301,0,FAUCOUCOURT,Faucoucourt,Faucoucourt,COM,2018,1,ANIZY LE GRAND,Anizy-le-Grand,Anizy-le-Grand +32,2019-01-01,COM,2301,0,FAUCOUCOURT,Faucoucourt,Faucoucourt,COMD,2301,0,FAUCOUCOURT,Faucoucourt,Faucoucourt +32,2019-01-01,COM,2360,0,GUIGNICOURT,Guignicourt,Guignicourt,COMD,2360,0,GUIGNICOURT,Guignicourt,Guignicourt +32,2019-01-01,COM,2360,0,GUIGNICOURT,Guignicourt,Guignicourt,COM,2360,0,VILLENEUVE SUR AISNE,Villeneuve-sur-Aisne,Villeneuve-sur-Aisne +32,2019-01-01,COM,2434,0,LIZY,Lizy,Lizy,COM,2018,1,ANIZY LE GRAND,Anizy-le-Grand,Anizy-le-Grand +32,2019-01-01,COM,2434,0,LIZY,Lizy,Lizy,COMD,2434,0,LIZY,Lizy,Lizy +32,2019-01-01,COM,2475,0,MENNEVILLE,Menneville,Menneville,COM,2360,0,VILLENEUVE SUR AISNE,Villeneuve-sur-Aisne,Villeneuve-sur-Aisne +32,2019-01-01,COM,2475,0,MENNEVILLE,Menneville,Menneville,COMD,2475,0,MENNEVILLE,Menneville,Menneville +32,2019-01-01,COM,2733,0,SUZY,Suzy,Suzy,COM,2153,0,CESSIERES SUZY,Cessières-Suzy,Cessières-Suzy +32,2019-01-01,COM,2733,0,SUZY,Suzy,Suzy,COMD,2733,0,SUZY,Suzy,Suzy +32,2019-01-01,COM,5001,1,ABRIES,Abriès,Abriès,COMD,5001,1,ABRIES,Abriès,Abriès +32,2019-01-01,COM,5001,1,ABRIES,Abriès,Abriès,COM,5001,1,ABRIES RISTOLAS,Abriès-Ristolas,Abriès-Ristolas +32,2019-01-01,COM,5120,0,RISTOLAS,Ristolas,Ristolas,COM,5001,1,ABRIES RISTOLAS,Abriès-Ristolas,Abriès-Ristolas +32,2019-01-01,COM,5120,0,RISTOLAS,Ristolas,Ristolas,COMD,5120,0,RISTOLAS,Ristolas,Ristolas +32,2019-01-01,COM,7011,1,ANTRAIGUES SUR VOLANE,Antraigues-sur-Volane,Antraigues-sur-Volane,COM,7011,0,VALLEES D ANTRAIGUES ASPERJOC,Vallées-d'Antraigues-Asperjoc,Vallées-d'Antraigues-Asperjoc +32,2019-01-01,COM,7011,1,ANTRAIGUES SUR VOLANE,Antraigues-sur-Volane,Antraigues-sur-Volane,COMD,7011,1,ANTRAIGUES SUR VOLANE,Antraigues-sur-Volane,Antraigues-sur-Volane +32,2019-01-01,COM,7016,1,ASPERJOC,Asperjoc,Asperjoc,COM,7011,0,VALLEES D ANTRAIGUES ASPERJOC,Vallées-d'Antraigues-Asperjoc,Vallées-d'Antraigues-Asperjoc +32,2019-01-01,COM,7016,1,ASPERJOC,Asperjoc,Asperjoc,COMD,7016,1,ASPERJOC,Asperjoc,Asperjoc +32,2019-01-01,COM,7103,1,INTRES,Intres,Intres,COM,7103,0,SAINT JULIEN D INTRES,Saint-Julien-d'Intres,Saint-Julien-d'Intres +32,2019-01-01,COM,7135,0,LAVAL D AURELLE,Laval-d'Aurelle,Laval-d'Aurelle,COMD,7135,0,LAVAL D AURELLE,Laval-d'Aurelle,Laval-d'Aurelle +32,2019-01-01,COM,7135,0,LAVAL D AURELLE,Laval-d'Aurelle,Laval-d'Aurelle,COM,7262,0,SAINT LAURENT LES BAINS LAVAL D AURELLE,Saint-Laurent-les-Bains-Laval-d'Aurelle,Saint-Laurent-les-Bains-Laval-d'Aurelle +32,2019-01-01,COM,7165,0,NONIERES,Nonières,Nonières,COMD,7165,0,NONIERES,Nonières,Nonières +32,2019-01-01,COM,7165,0,NONIERES,Nonières,Nonières,COM,7165,0,BELSENTES,Belsentes,Belsentes +32,2019-01-01,COM,7252,0,SAINT JULIEN BOUTIERES,Saint-Julien-Boutières,Saint-Julien-Boutières,COM,7103,0,SAINT JULIEN D INTRES,Saint-Julien-d'Intres,Saint-Julien-d'Intres +32,2019-01-01,COM,7256,0,SAINT JULIEN LABROUSSE,Saint-Julien-Labrousse,Saint-Julien-Labrousse,COM,7165,0,BELSENTES,Belsentes,Belsentes +32,2019-01-01,COM,7256,0,SAINT JULIEN LABROUSSE,Saint-Julien-Labrousse,Saint-Julien-Labrousse,COMD,7256,0,SAINT JULIEN LABROUSSE,Saint-Julien-Labrousse,Saint-Julien-Labrousse +32,2019-01-01,COM,7262,0,SAINT LAURENT LES BAINS,Saint-Laurent-les-Bains,Saint-Laurent-les-Bains,COMD,7262,0,SAINT LAURENT LES BAINS,Saint-Laurent-les-Bains,Saint-Laurent-les-Bains +32,2019-01-01,COM,7262,0,SAINT LAURENT LES BAINS,Saint-Laurent-les-Bains,Saint-Laurent-les-Bains,COM,7262,0,SAINT LAURENT LES BAINS LAVAL D AURELLE,Saint-Laurent-les-Bains-Laval-d'Aurelle,Saint-Laurent-les-Bains-Laval-d'Aurelle +32,2019-01-01,COM,8042,0,BALAIVES ET BUTZ,Balaives-et-Butz,Balaives-et-Butz,COMD,8042,0,BALAIVES ET BUTZ,Balaives-et-Butz,Balaives-et-Butz +32,2019-01-01,COM,8042,0,BALAIVES ET BUTZ,Balaives-et-Butz,Balaives-et-Butz,COM,8173,0,FLIZE,Flize,Flize +32,2019-01-01,COM,8079,0,BOUTANCOURT,Boutancourt,Boutancourt,COMD,8079,0,BOUTANCOURT,Boutancourt,Boutancourt +32,2019-01-01,COM,8079,0,BOUTANCOURT,Boutancourt,Boutancourt,COM,8173,0,FLIZE,Flize,Flize +32,2019-01-01,COM,8152,1,ELAN,Élan,Élan,COMD,8152,1,ELAN,Élan,Élan +32,2019-01-01,COM,8152,1,ELAN,Élan,Élan,COM,8173,0,FLIZE,Flize,Flize +32,2019-01-01,COM,8173,0,FLIZE,Flize,Flize,COM,8173,0,FLIZE,Flize,Flize +32,2019-01-01,COM,8173,0,FLIZE,Flize,Flize,COMD,8173,0,FLIZE,Flize,Flize +32,2019-01-01,COM,9028,1,AULOS,Aulos,Aulos,COMD,9028,1,AULOS,Aulos,Aulos +32,2019-01-01,COM,9028,1,AULOS,Aulos,Aulos,COM,9296,1,AULOS SINSAT,Aulos-Sinsat,Aulos-Sinsat +32,2019-01-01,COM,9135,0,GOULIER,Goulier,Goulier,COMD,9135,0,GOULIER,Goulier,Goulier +32,2019-01-01,COM,9135,0,GOULIER,Goulier,Goulier,COM,9334,0,VAL DE SOS,Val-de-Sos,Val-de-Sos +32,2019-01-01,COM,9286,0,SEM,Sem,Sem,COMD,9286,0,SEM,Sem,Sem +32,2019-01-01,COM,9286,0,SEM,Sem,Sem,COM,9334,0,VAL DE SOS,Val-de-Sos,Val-de-Sos +32,2019-01-01,COM,9296,0,SINSAT,Sinsat,Sinsat,COM,9296,1,AULOS SINSAT,Aulos-Sinsat,Aulos-Sinsat +32,2019-01-01,COM,9296,0,SINSAT,Sinsat,Sinsat,COMD,9296,0,SINSAT,Sinsat,Sinsat +32,2019-01-01,COM,9302,0,SUC ET SENTENAC,Suc-et-Sentenac,Suc-et-Sentenac,COMD,9302,0,SUC ET SENTENAC,Suc-et-Sentenac,Suc-et-Sentenac +32,2019-01-01,COM,9302,0,SUC ET SENTENAC,Suc-et-Sentenac,Suc-et-Sentenac,COM,9334,0,VAL DE SOS,Val-de-Sos,Val-de-Sos +32,2019-01-01,COM,9334,0,VICDESSOS,Vicdessos,Vicdessos,COM,9334,0,VAL DE SOS,Val-de-Sos,Val-de-Sos +32,2019-01-01,COM,9334,0,VICDESSOS,Vicdessos,Vicdessos,COMD,9334,0,VICDESSOS,Vicdessos,Vicdessos 32,2019-01-01,COM,11097,0,CONILHAC DE LA MONTAGNE,Conilhac-de-la-Montagne,Conilhac-de-la-Montagne,COMD,11097,0,CONILHAC DE LA MONTAGNE,Conilhac-de-la-Montagne,Conilhac-de-la-Montagne -32,2019-01-01,COM,11131,0,FA,Fa,Fa,COMD,11131,0,FA,Fa,Fa +32,2019-01-01,COM,11097,0,CONILHAC DE LA MONTAGNE,Conilhac-de-la-Montagne,Conilhac-de-la-Montagne,COM,11323,0,ROQUETAILLADE ET CONILHAC,Roquetaillade-et-Conilhac,Roquetaillade-et-Conilhac 32,2019-01-01,COM,11131,0,FA,Fa,Fa,COM,11131,0,VAL DU FABY,Val-du-Faby,Val-du-Faby -32,2019-01-01,COM,11251,0,MONTLAUR,Montlaur,Montlaur,COM,11251,0,VAL DE DAGNE,Val-de-Dagne,Val-de-Dagne +32,2019-01-01,COM,11131,0,FA,Fa,Fa,COMD,11131,0,FA,Fa,Fa 32,2019-01-01,COM,11251,0,MONTLAUR,Montlaur,Montlaur,COMD,11251,0,MONTLAUR,Montlaur,Montlaur +32,2019-01-01,COM,11251,0,MONTLAUR,Montlaur,Montlaur,COM,11251,0,VAL DE DAGNE,Val-de-Dagne,Val-de-Dagne 32,2019-01-01,COM,11298,0,PRADELLES EN VAL,Pradelles-en-Val,Pradelles-en-Val,COM,11251,0,VAL DE DAGNE,Val-de-Dagne,Val-de-Dagne 32,2019-01-01,COM,11298,0,PRADELLES EN VAL,Pradelles-en-Val,Pradelles-en-Val,COMD,11298,0,PRADELLES EN VAL,Pradelles-en-Val,Pradelles-en-Val 32,2019-01-01,COM,11323,0,ROQUETAILLADE,Roquetaillade,Roquetaillade,COMD,11323,0,ROQUETAILLADE,Roquetaillade,Roquetaillade 32,2019-01-01,COM,11323,0,ROQUETAILLADE,Roquetaillade,Roquetaillade,COM,11323,0,ROQUETAILLADE ET CONILHAC,Roquetaillade-et-Conilhac,Roquetaillade-et-Conilhac -32,2019-01-01,COM,11329,0,ROUVENAC,Rouvenac,Rouvenac,COMD,11329,0,ROUVENAC,Rouvenac,Rouvenac 32,2019-01-01,COM,11329,0,ROUVENAC,Rouvenac,Rouvenac,COM,11131,0,VAL DU FABY,Val-du-Faby,Val-du-Faby +32,2019-01-01,COM,11329,0,ROUVENAC,Rouvenac,Rouvenac,COMD,11329,0,ROUVENAC,Rouvenac,Rouvenac 32,2019-01-01,COM,14002,1,ACQUEVILLE,Acqueville,Acqueville,COMD,14002,1,ACQUEVILLE,Acqueville,Acqueville 32,2019-01-01,COM,14002,1,ACQUEVILLE,Acqueville,Acqueville,COM,14150,0,CESNY LES SOURCES,Cesny-les-Sources,Cesny-les-Sources -32,2019-01-01,COM,14013,1,ANGOVILLE,Angoville,Angoville,COM,14150,0,CESNY LES SOURCES,Cesny-les-Sources,Cesny-les-Sources 32,2019-01-01,COM,14013,1,ANGOVILLE,Angoville,Angoville,COMD,14013,1,ANGOVILLE,Angoville,Angoville -34,2019-01-01,COM,14014,0,COLOMBY ANGUERNY,Colomby-Anguerny,Colomby-Anguerny,COM,14014,0,COLOMBY ANGUERNY,Colomby-Anguerny,Colomby-Anguerny +32,2019-01-01,COM,14013,1,ANGOVILLE,Angoville,Angoville,COM,14150,0,CESNY LES SOURCES,Cesny-les-Sources,Cesny-les-Sources 32,2019-01-01,COM,14126,0,CAMBREMER,Cambremer,Cambremer,COM,14126,0,CAMBREMER,Cambremer,Cambremer 32,2019-01-01,COM,14150,0,CESNY BOIS HALBOUT,Cesny-Bois-Halbout,Cesny-Bois-Halbout,COM,14150,0,CESNY LES SOURCES,Cesny-les-Sources,Cesny-les-Sources 32,2019-01-01,COM,14150,0,CESNY BOIS HALBOUT,Cesny-Bois-Halbout,Cesny-Bois-Halbout,COMD,14150,0,CESNY BOIS HALBOUT,Cesny-Bois-Halbout,Cesny-Bois-Halbout -34,2019-01-01,COMD,14170,0,COLOMBY SUR THAON,Colomby-sur-Thaon,Colomby-sur-Thaon,COM,14014,0,COLOMBY ANGUERNY,Colomby-Anguerny,Colomby-Anguerny +35,2019-01-01,COMD,14170,0,COLOMBY SUR THAON,Colomby-sur-Thaon,Colomby-sur-Thaon,COM,14014,0,COLOMBY ANGUERNY,Colomby-Anguerny,Colomby-Anguerny 32,2019-01-01,COM,14185,0,COUDRAY RABUT,Coudray-Rabut,Coudray-Rabut,COM,14514,0,PONT L EVEQUE,Pont-l'Évêque,Pont-l'Évêque -34,2019-01-01,COMD,14186,0,COULOMBS,Coulombs,Coulombs,COM,14406,0,MOULINS EN BESSIN,Moulins-en-Bessin,Moulins-en-Bessin -34,2019-01-01,COMD,14212,0,CULLY,Cully,Cully,COM,14406,0,MOULINS EN BESSIN,Moulins-en-Bessin,Moulins-en-Bessin +35,2019-01-01,COMD,14186,0,COULOMBS,Coulombs,Coulombs,COM,14406,0,MOULINS EN BESSIN,Moulins-en-Bessin,Moulins-en-Bessin +35,2019-01-01,COMD,14212,0,CULLY,Cully,Cully,COM,14406,0,MOULINS EN BESSIN,Moulins-en-Bessin,Moulins-en-Bessin 32,2019-01-01,COM,14294,0,GARCELLES SECQUEVILLE,Garcelles-Secqueville,Garcelles-Secqueville,COMD,14294,0,GARCELLES SECQUEVILLE,Garcelles-Secqueville,Garcelles-Secqueville 32,2019-01-01,COM,14294,0,GARCELLES SECQUEVILLE,Garcelles-Secqueville,Garcelles-Secqueville,COM,14554,2,CASTELET,Castelet,Le Castelet 32,2019-01-01,COM,14307,0,GOUPILLIERES,Goupillières,Goupillières,COM,14713,0,MONTILLIERES SUR ORNE,Montillières-sur-Orne,Montillières-sur-Orne 32,2019-01-01,COMA,14315,0,GRANDOUET,Grandouet,Grandouet,COM,14126,0,CAMBREMER,Cambremer,Cambremer 32,2019-01-01,COM,14339,1,HUBERT FOLIE,Hubert-Folie,Hubert-Folie,COMD,14339,1,HUBERT FOLIE,Hubert-Folie,Hubert-Folie 32,2019-01-01,COM,14339,1,HUBERT FOLIE,Hubert-Folie,Hubert-Folie,COM,14538,0,CASTINE EN PLAINE,Castine-en-Plaine,Castine-en-Plaine -34,2019-01-01,COM,14406,0,MOULINS EN BESSIN,Moulins-en-Bessin,Moulins-en-Bessin,COM,14406,0,MOULINS EN BESSIN,Moulins-en-Bessin,Moulins-en-Bessin -34,2019-01-01,COMD,14406,0,MARTRAGNY,Martragny,Martragny,COM,14406,0,MOULINS EN BESSIN,Moulins-en-Bessin,Moulins-en-Bessin +35,2019-01-01,COMD,14406,0,MARTRAGNY,Martragny,Martragny,COM,14406,0,MOULINS EN BESSIN,Moulins-en-Bessin,Moulins-en-Bessin 32,2019-01-01,COM,14505,0,PLACY,Placy,Placy,COM,14150,0,CESNY LES SOURCES,Cesny-les-Sources,Cesny-les-Sources 32,2019-01-01,COM,14505,0,PLACY,Placy,Placy,COMD,14505,0,PLACY,Placy,Placy 32,2019-01-01,COM,14514,0,PONT L EVEQUE,Pont-l'Évêque,Pont-l'Évêque,COM,14514,0,PONT L EVEQUE,Pont-l'Évêque,Pont-l'Évêque 32,2019-01-01,COM,14538,0,ROCQUANCOURT,Rocquancourt,Rocquancourt,COM,14538,0,CASTINE EN PLAINE,Castine-en-Plaine,Castine-en-Plaine 32,2019-01-01,COM,14538,0,ROCQUANCOURT,Rocquancourt,Rocquancourt,COMD,14538,0,ROCQUANCOURT,Rocquancourt,Rocquancourt -34,2019-01-01,COMD,14548,0,RUCQUEVILLE,Rucqueville,Rucqueville,COM,14406,0,MOULINS EN BESSIN,Moulins-en-Bessin,Moulins-en-Bessin +35,2019-01-01,COMD,14548,0,RUCQUEVILLE,Rucqueville,Rucqueville,COM,14406,0,MOULINS EN BESSIN,Moulins-en-Bessin,Moulins-en-Bessin 32,2019-01-01,COM,14554,0,SAINT AIGNAN DE CRAMESNIL,Saint-Aignan-de-Cramesnil,Saint-Aignan-de-Cramesnil,COMD,14554,0,SAINT AIGNAN DE CRAMESNIL,Saint-Aignan-de-Cramesnil,Saint-Aignan-de-Cramesnil 32,2019-01-01,COM,14554,0,SAINT AIGNAN DE CRAMESNIL,Saint-Aignan-de-Cramesnil,Saint-Aignan-de-Cramesnil,COM,14554,2,CASTELET,Castelet,Le Castelet 32,2019-01-01,COMA,14561,0,SAINT AUBIN SUR ALGOT,Saint-Aubin-sur-Algot,Saint-Aubin-sur-Algot,COM,14126,0,CAMBREMER,Cambremer,Cambremer @@ -645,21 +615,17 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2019-01-01,COM,14713,0,TROIS MONTS,Trois-Monts,Trois-Monts,COM,14713,0,MONTILLIERES SUR ORNE,Montillières-sur-Orne,Montillières-sur-Orne 32,2019-01-01,COM,15027,0,CALVINET,Calvinet,Calvinet,COM,15027,0,PUYCAPEL,Puycapel,Puycapel 32,2019-01-01,COM,15027,0,CALVINET,Calvinet,Calvinet,COMD,15027,0,CALVINET,Calvinet,Calvinet -32,2019-01-01,COM,15136,0,MOURJOU,Mourjou,Mourjou,COMD,15136,0,MOURJOU,Mourjou,Mourjou 32,2019-01-01,COM,15136,0,MOURJOU,Mourjou,Mourjou,COM,15027,0,PUYCAPEL,Puycapel,Puycapel -32,2019-01-01,COM,16005,1,AIGRE,Aigre,Aigre,COM,16005,1,AIGRE,Aigre,Aigre +32,2019-01-01,COM,15136,0,MOURJOU,Mourjou,Mourjou,COMD,15136,0,MOURJOU,Mourjou,Mourjou 32,2019-01-01,COM,16005,1,AIGRE,Aigre,Aigre,COMD,16005,1,AIGRE,Aigre,Aigre -32,2019-01-01,COM,16017,1,ANVILLE,Anville,Anville,COM,16339,0,VAL D AUGE,Val-d'Auge,Val-d'Auge +32,2019-01-01,COM,16005,1,AIGRE,Aigre,Aigre,COM,16005,1,AIGRE,Aigre,Aigre 32,2019-01-01,COM,16017,1,ANVILLE,Anville,Anville,COMD,16017,1,ANVILLE,Anville,Anville +32,2019-01-01,COM,16017,1,ANVILLE,Anville,Anville,COM,16339,0,VAL D AUGE,Val-d'Auge,Val-d'Auge 32,2019-01-01,COM,16046,0,COTEAUX DU BLANZACAIS,Côteaux du Blanzacais,Côteaux du Blanzacais,COM,16046,0,COTEAUX DU BLANZACAIS,Coteaux-du-Blanzacais,Coteaux-du-Blanzacais -32,2019-01-01,COMD,16046,0,BLANZAC PORCHERESSE,Blanzac-Porcheresse,Blanzac-Porcheresse,COMD,16046,0,BLANZAC PORCHERESSE,Blanzac-Porcheresse,Blanzac-Porcheresse -32,2019-01-01,COMD,16046,0,BLANZAC PORCHERESSE,Blanzac-Porcheresse,Blanzac-Porcheresse,COM,16046,0,COTEAUX DU BLANZACAIS,Coteaux-du-Blanzacais,Coteaux-du-Blanzacais 32,2019-01-01,COM,16051,0,BONNEVILLE,Bonneville,Bonneville,COMD,16051,0,BONNEVILLE,Bonneville,Bonneville 32,2019-01-01,COM,16051,0,BONNEVILLE,Bonneville,Bonneville,COM,16339,0,VAL D AUGE,Val-d'Auge,Val-d'Auge -32,2019-01-01,COM,16110,0,COURCOME,Courcôme,Courcôme,COMD,16110,0,COURCOME,Courcôme,Courcôme 32,2019-01-01,COM,16110,0,COURCOME,Courcôme,Courcôme,COM,16110,0,COURCOME,Courcôme,Courcôme -32,2019-01-01,COMD,16115,0,CRESSAC SAINT GENIS,Cressac-Saint-Genis,Cressac-Saint-Genis,COMD,16115,0,CRESSAC SAINT GENIS,Cressac-Saint-Genis,Cressac-Saint-Genis -32,2019-01-01,COMD,16115,0,CRESSAC SAINT GENIS,Cressac-Saint-Genis,Cressac-Saint-Genis,COM,16046,0,COTEAUX DU BLANZACAIS,Coteaux-du-Blanzacais,Coteaux-du-Blanzacais +32,2019-01-01,COM,16110,0,COURCOME,Courcôme,Courcôme,COMD,16110,0,COURCOME,Courcôme,Courcôme 32,2019-01-01,COM,16149,0,GENOUILLAC,Genouillac,Genouillac,COMD,16149,0,GENOUILLAC,Genouillac,Genouillac 32,2019-01-01,COM,16149,0,GENOUILLAC,Genouillac,Genouillac,COM,16192,0,TERRES DE HAUTE CHARENTE,Terres-de-Haute-Charente,Terres-de-Haute-Charente 32,2019-01-01,COM,16153,0,GONDEVILLE,Gondeville,Gondeville,COMD,16153,0,GONDEVILLE,Gondeville,Gondeville @@ -668,54 +634,48 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2019-01-01,COM,16156,0,GOURVILLE,Gourville,Gourville,COM,16286,0,ROUILLAC,Rouillac,Rouillac 32,2019-01-01,COM,16192,0,ROUMAZIERES LOUBERT,Roumazières-Loubert,Roumazières-Loubert,COMD,16192,0,ROUMAZIERES LOUBERT,Roumazières-Loubert,Roumazières-Loubert 32,2019-01-01,COM,16192,0,ROUMAZIERES LOUBERT,Roumazières-Loubert,Roumazières-Loubert,COM,16192,0,TERRES DE HAUTE CHARENTE,Terres-de-Haute-Charente,Terres-de-Haute-Charente -32,2019-01-01,COM,16202,0,MAINXE,Mainxe,Mainxe,COMD,16202,0,MAINXE,Mainxe,Mainxe 32,2019-01-01,COM,16202,0,MAINXE,Mainxe,Mainxe,COM,16153,0,MAINXE GONDEVILLE,Mainxe-Gondeville,Mainxe-Gondeville +32,2019-01-01,COM,16202,0,MAINXE,Mainxe,Mainxe,COMD,16202,0,MAINXE,Mainxe,Mainxe 32,2019-01-01,COM,16214,0,MAZIERES,Mazières,Mazières,COM,16192,0,TERRES DE HAUTE CHARENTE,Terres-de-Haute-Charente,Terres-de-Haute-Charente 32,2019-01-01,COM,16214,0,MAZIERES,Mazières,Mazières,COMD,16214,0,MAZIERES,Mazières,Mazières -32,2019-01-01,COM,16228,0,MONTIGNE,Montigné,Montigné,COM,16339,0,VAL D AUGE,Val-d'Auge,Val-d'Auge 32,2019-01-01,COM,16228,0,MONTIGNE,Montigné,Montigné,COMD,16228,0,MONTIGNE,Montigné,Montigné +32,2019-01-01,COM,16228,0,MONTIGNE,Montigné,Montigné,COM,16339,0,VAL D AUGE,Val-d'Auge,Val-d'Auge 32,2019-01-01,COM,16259,3,PERUSE,Péruse,La Péruse,COM,16192,0,TERRES DE HAUTE CHARENTE,Terres-de-Haute-Charente,Terres-de-Haute-Charente 32,2019-01-01,COM,16259,3,PERUSE,Péruse,La Péruse,COMD,16259,3,PERUSE,Péruse,La Péruse -32,2019-01-01,COMD,16262,0,PLAIZAC,Plaizac,Plaizac,COMD,16262,0,PLAIZAC,Plaizac,Plaizac -32,2019-01-01,COMD,16262,0,PLAIZAC,Plaizac,Plaizac,COM,16286,0,ROUILLAC,Rouillac,Rouillac -32,2019-01-01,COM,16274,0,RANCOGNE,Rancogne,Rancogne,COM,16406,0,MOULINS SUR TARDOIRE,Moulins-sur-Tardoire,Moulins-sur-Tardoire 32,2019-01-01,COM,16274,0,RANCOGNE,Rancogne,Rancogne,COMD,16274,0,RANCOGNE,Rancogne,Rancogne -32,2019-01-01,COM,16281,3,ROCHEFOUCAULD,Rochefoucauld,La Rochefoucauld,COM,16281,3,ROCHEFOUCAULD EN ANGOUMOIS,Rochefoucauld-en-Angoumois,La Rochefoucauld-en-Angoumois +32,2019-01-01,COM,16274,0,RANCOGNE,Rancogne,Rancogne,COM,16406,0,MOULINS SUR TARDOIRE,Moulins-sur-Tardoire,Moulins-sur-Tardoire 32,2019-01-01,COM,16281,3,ROCHEFOUCAULD,Rochefoucauld,La Rochefoucauld,COMD,16281,3,ROCHEFOUCAULD,Rochefoucauld,La Rochefoucauld -32,2019-01-01,COMD,16286,0,ROUILLAC,Rouillac,Rouillac,COM,16286,0,ROUILLAC,Rouillac,Rouillac -32,2019-01-01,COMD,16286,0,ROUILLAC,Rouillac,Rouillac,COMD,16286,0,ROUILLAC,Rouillac,Rouillac +32,2019-01-01,COM,16281,3,ROCHEFOUCAULD,Rochefoucauld,La Rochefoucauld,COM,16281,3,ROCHEFOUCAULD EN ANGOUMOIS,Rochefoucauld-en-Angoumois,La Rochefoucauld-en-Angoumois 32,2019-01-01,COM,16286,0,ROUILLAC,Rouillac,Rouillac,COM,16286,0,ROUILLAC,Rouillac,Rouillac -32,2019-01-01,COM,16332,0,SAINT LEGER,Saint-Léger,Saint-Léger,COMD,16332,0,SAINT LEGER,Saint-Léger,Saint-Léger 32,2019-01-01,COM,16332,0,SAINT LEGER,Saint-Léger,Saint-Léger,COM,16046,0,COTEAUX DU BLANZACAIS,Coteaux-du-Blanzacais,Coteaux-du-Blanzacais -32,2019-01-01,COM,16339,1,AUGE SAINT MEDARD,Auge-Saint-Médard,Auge-Saint-Médard,COM,16339,0,VAL D AUGE,Val-d'Auge,Val-d'Auge +32,2019-01-01,COM,16332,0,SAINT LEGER,Saint-Léger,Saint-Léger,COMD,16332,0,SAINT LEGER,Saint-Léger,Saint-Léger 32,2019-01-01,COM,16339,1,AUGE SAINT MEDARD,Auge-Saint-Médard,Auge-Saint-Médard,COMD,16339,1,AUGE SAINT MEDARD,Auge-Saint-Médard,Auge-Saint-Médard -32,2019-01-01,COM,16344,0,SAINT PROJET SAINT CONSTANT,Saint-Projet-Saint-Constant,Saint-Projet-Saint-Constant,COMD,16344,0,SAINT PROJET SAINT CONSTANT,Saint-Projet-Saint-Constant,Saint-Projet-Saint-Constant +32,2019-01-01,COM,16339,1,AUGE SAINT MEDARD,Auge-Saint-Médard,Auge-Saint-Médard,COM,16339,0,VAL D AUGE,Val-d'Auge,Val-d'Auge 32,2019-01-01,COM,16344,0,SAINT PROJET SAINT CONSTANT,Saint-Projet-Saint-Constant,Saint-Projet-Saint-Constant,COM,16281,3,ROCHEFOUCAULD EN ANGOUMOIS,Rochefoucauld-en-Angoumois,La Rochefoucauld-en-Angoumois -32,2019-01-01,COMD,16371,0,SONNEVILLE,Sonneville,Sonneville,COM,16286,0,ROUILLAC,Rouillac,Rouillac -32,2019-01-01,COMD,16371,0,SONNEVILLE,Sonneville,Sonneville,COMD,16371,0,SONNEVILLE,Sonneville,Sonneville -32,2019-01-01,COM,16376,0,SURIS,Suris,Suris,COMD,16376,0,SURIS,Suris,Suris +32,2019-01-01,COM,16344,0,SAINT PROJET SAINT CONSTANT,Saint-Projet-Saint-Constant,Saint-Projet-Saint-Constant,COMD,16344,0,SAINT PROJET SAINT CONSTANT,Saint-Projet-Saint-Constant,Saint-Projet-Saint-Constant 32,2019-01-01,COM,16376,0,SURIS,Suris,Suris,COM,16192,0,TERRES DE HAUTE CHARENTE,Terres-de-Haute-Charente,Terres-de-Haute-Charente -32,2019-01-01,COM,16391,0,TUZIE,Tuzie,Tuzie,COMD,16391,0,TUZIE,Tuzie,Tuzie +32,2019-01-01,COM,16376,0,SURIS,Suris,Suris,COMD,16376,0,SURIS,Suris,Suris 32,2019-01-01,COM,16391,0,TUZIE,Tuzie,Tuzie,COM,16110,0,COURCOME,Courcôme,Courcôme -32,2019-01-01,COM,16406,0,VILHONNEUR,Vilhonneur,Vilhonneur,COMD,16406,0,VILHONNEUR,Vilhonneur,Vilhonneur +32,2019-01-01,COM,16391,0,TUZIE,Tuzie,Tuzie,COMD,16391,0,TUZIE,Tuzie,Tuzie 32,2019-01-01,COM,16406,0,VILHONNEUR,Vilhonneur,Vilhonneur,COM,16406,0,MOULINS SUR TARDOIRE,Moulins-sur-Tardoire,Moulins-sur-Tardoire +32,2019-01-01,COM,16406,0,VILHONNEUR,Vilhonneur,Vilhonneur,COMD,16406,0,VILHONNEUR,Vilhonneur,Vilhonneur 32,2019-01-01,COM,16410,0,VILLEGATS,Villegats,Villegats,COM,16110,0,COURCOME,Courcôme,Courcôme 32,2019-01-01,COM,16410,0,VILLEGATS,Villegats,Villegats,COMD,16410,0,VILLEGATS,Villegats,Villegats 32,2019-01-01,COM,16411,0,VILLEJESUS,Villejésus,Villejésus,COM,16005,1,AIGRE,Aigre,Aigre 32,2019-01-01,COM,16411,0,VILLEJESUS,Villejésus,Villejésus,COMD,16411,0,VILLEJESUS,Villejésus,Villejésus -32,2019-01-01,COM,17169,3,FREDIERE,Frédière,La Frédière,COM,17344,0,SAINT HILAIRE DE VILLEFRANCHE,Saint-Hilaire-de-Villefranche,Saint-Hilaire-de-Villefranche 32,2019-01-01,COM,17169,3,FREDIERE,Frédière,La Frédière,COMD,17169,3,FREDIERE,Frédière,La Frédière -32,2019-01-01,COM,17189,1,HIERS BROUAGE,Hiers-Brouage,Hiers-Brouage,COM,17219,0,MARENNES HIERS BROUAGE,Marennes-Hiers-Brouage,Marennes-Hiers-Brouage +32,2019-01-01,COM,17169,3,FREDIERE,Frédière,La Frédière,COM,17344,0,SAINT HILAIRE DE VILLEFRANCHE,Saint-Hilaire-de-Villefranche,Saint-Hilaire-de-Villefranche 32,2019-01-01,COM,17189,1,HIERS BROUAGE,Hiers-Brouage,Hiers-Brouage,COMD,17189,1,HIERS BROUAGE,Hiers-Brouage,Hiers-Brouage -32,2019-01-01,COM,17219,0,MARENNES,Marennes,Marennes,COM,17219,0,MARENNES HIERS BROUAGE,Marennes-Hiers-Brouage,Marennes-Hiers-Brouage +32,2019-01-01,COM,17189,1,HIERS BROUAGE,Hiers-Brouage,Hiers-Brouage,COM,17219,0,MARENNES HIERS BROUAGE,Marennes-Hiers-Brouage,Marennes-Hiers-Brouage 32,2019-01-01,COM,17219,0,MARENNES,Marennes,Marennes,COMD,17219,0,MARENNES,Marennes,Marennes -32,2019-01-01,COM,17344,0,SAINT HILAIRE DE VILLEFRANCHE,Saint-Hilaire-de-Villefranche,Saint-Hilaire-de-Villefranche,COM,17344,0,SAINT HILAIRE DE VILLEFRANCHE,Saint-Hilaire-de-Villefranche,Saint-Hilaire-de-Villefranche +32,2019-01-01,COM,17219,0,MARENNES,Marennes,Marennes,COM,17219,0,MARENNES HIERS BROUAGE,Marennes-Hiers-Brouage,Marennes-Hiers-Brouage 32,2019-01-01,COM,17344,0,SAINT HILAIRE DE VILLEFRANCHE,Saint-Hilaire-de-Villefranche,Saint-Hilaire-de-Villefranche,COMD,17344,0,SAINT HILAIRE DE VILLEFRANCHE,Saint-Hilaire-de-Villefranche,Saint-Hilaire-de-Villefranche +32,2019-01-01,COM,17344,0,SAINT HILAIRE DE VILLEFRANCHE,Saint-Hilaire-de-Villefranche,Saint-Hilaire-de-Villefranche,COM,17344,0,SAINT HILAIRE DE VILLEFRANCHE,Saint-Hilaire-de-Villefranche,Saint-Hilaire-de-Villefranche 32,2019-01-01,COM,18023,0,BAUGY,Baugy,Baugy,COM,18023,0,BAUGY,Baugy,Baugy 32,2019-01-01,COM,18023,0,BAUGY,Baugy,Baugy,COMD,18023,0,BAUGY,Baugy,Baugy 32,2019-01-01,COM,18073,0,CORQUOY,Corquoy,Corquoy,COM,18073,0,CORQUOY,Corquoy,Corquoy -32,2019-01-01,COM,18123,0,LAVERDINES,Laverdines,Laverdines,COMD,18123,0,LAVERDINES,Laverdines,Laverdines 32,2019-01-01,COM,18123,0,LAVERDINES,Laverdines,Laverdines,COM,18023,0,BAUGY,Baugy,Baugy +32,2019-01-01,COM,18123,0,LAVERDINES,Laverdines,Laverdines,COMD,18123,0,LAVERDINES,Laverdines,Laverdines 32,2019-01-01,COM,18222,0,SAINTE LUNAISE,Sainte-Lunaise,Sainte-Lunaise,COM,18073,0,CORQUOY,Corquoy,Corquoy 32,2019-01-01,COM,18239,0,SALIGNY LE VIF,Saligny-le-Vif,Saligny-le-Vif,COM,18023,0,BAUGY,Baugy,Baugy 32,2019-01-01,COM,18239,0,SALIGNY LE VIF,Saligny-le-Vif,Saligny-le-Vif,COMD,18239,0,SALIGNY LE VIF,Saligny-le-Vif,Saligny-le-Vif @@ -723,26 +683,26 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2019-01-01,COM,19019,0,BEAULIEU SUR DORDOGNE,Beaulieu-sur-Dordogne,Beaulieu-sur-Dordogne,COM,19019,0,BEAULIEU SUR DORDOGNE,Beaulieu-sur-Dordogne,Beaulieu-sur-Dordogne 32,2019-01-01,COM,19032,0,BRIVEZAC,Brivezac,Brivezac,COM,19019,0,BEAULIEU SUR DORDOGNE,Beaulieu-sur-Dordogne,Beaulieu-sur-Dordogne 32,2019-01-01,COM,19032,0,BRIVEZAC,Brivezac,Brivezac,COMD,19032,0,BRIVEZAC,Brivezac,Brivezac -32,2019-01-01,COM,19098,0,LAGARDE ENVAL,Lagarde-Enval,Lagarde-Enval,COMD,19098,0,LAGARDE ENVAL,Lagarde-Enval,Lagarde-Enval 32,2019-01-01,COM,19098,0,LAGARDE ENVAL,Lagarde-Enval,Lagarde-Enval,COM,19098,0,LAGARDE MARC LA TOUR,Lagarde-Marc-la-Tour,Lagarde-Marc-la-Tour -32,2019-01-01,COM,19101,0,LAGUENNE,Laguenne,Laguenne,COMD,19101,0,LAGUENNE,Laguenne,Laguenne +32,2019-01-01,COM,19098,0,LAGARDE ENVAL,Lagarde-Enval,Lagarde-Enval,COMD,19098,0,LAGARDE ENVAL,Lagarde-Enval,Lagarde-Enval 32,2019-01-01,COM,19101,0,LAGUENNE,Laguenne,Laguenne,COM,19101,0,LAGUENNE SUR AVALOUZE,Laguenne-sur-Avalouze,Laguenne-sur-Avalouze -32,2019-01-01,COM,19127,0,MARC LA TOUR,Marc-la-Tour,Marc-la-Tour,COMD,19127,0,MARC LA TOUR,Marc-la-Tour,Marc-la-Tour +32,2019-01-01,COM,19101,0,LAGUENNE,Laguenne,Laguenne,COMD,19101,0,LAGUENNE,Laguenne,Laguenne 32,2019-01-01,COM,19127,0,MARC LA TOUR,Marc-la-Tour,Marc-la-Tour,COM,19098,0,LAGARDE MARC LA TOUR,Lagarde-Marc-la-Tour,Lagarde-Marc-la-Tour +32,2019-01-01,COM,19127,0,MARC LA TOUR,Marc-la-Tour,Marc-la-Tour,COMD,19127,0,MARC LA TOUR,Marc-la-Tour,Marc-la-Tour 32,2019-01-01,COM,19185,0,SAINT BONNET AVALOUZE,Saint-Bonnet-Avalouze,Saint-Bonnet-Avalouze,COM,19101,0,LAGUENNE SUR AVALOUZE,Laguenne-sur-Avalouze,Laguenne-sur-Avalouze 32,2019-01-01,COM,19185,0,SAINT BONNET AVALOUZE,Saint-Bonnet-Avalouze,Saint-Bonnet-Avalouze,COMD,19185,0,SAINT BONNET AVALOUZE,Saint-Bonnet-Avalouze,Saint-Bonnet-Avalouze 32,2019-01-01,COM,21073,0,BIERRE LES SEMUR,Bierre-lès-Semur,Bierre-lès-Semur,COMD,21073,0,BIERRE LES SEMUR,Bierre-lès-Semur,Bierre-lès-Semur 32,2019-01-01,COM,21073,0,BIERRE LES SEMUR,Bierre-lès-Semur,Bierre-lès-Semur,COM,21272,2,VAL LARREY,Val-Larrey,Le Val-Larrey -32,2019-01-01,COM,21178,0,CLEMENCEY,Clémencey,Clémencey,COMD,21178,0,CLEMENCEY,Clémencey,Clémencey 32,2019-01-01,COM,21178,0,CLEMENCEY,Clémencey,Clémencey,COM,21178,0,VALFORET,Valforêt,Valforêt +32,2019-01-01,COM,21178,0,CLEMENCEY,Clémencey,Clémencey,COMD,21178,0,CLEMENCEY,Clémencey,Clémencey 32,2019-01-01,COM,21272,0,FLEE,Flée,Flée,COMD,21272,0,FLEE,Flée,Flée 32,2019-01-01,COM,21272,0,FLEE,Flée,Flée,COM,21272,2,VAL LARREY,Val-Larrey,Le Val-Larrey -32,2019-01-01,COM,21352,0,LONGEAULT,Longeault,Longeault,COM,21352,0,LONGEAULT PLUVAULT,Longeault-Pluvault,Longeault-Pluvault 32,2019-01-01,COM,21352,0,LONGEAULT,Longeault,Longeault,COMD,21352,0,LONGEAULT,Longeault,Longeault +32,2019-01-01,COM,21352,0,LONGEAULT,Longeault,Longeault,COM,21352,0,LONGEAULT PLUVAULT,Longeault-Pluvault,Longeault-Pluvault 32,2019-01-01,COM,21486,0,PLUVAULT,Pluvault,Pluvault,COM,21352,0,LONGEAULT PLUVAULT,Longeault-Pluvault,Longeault-Pluvault 32,2019-01-01,COM,21486,0,PLUVAULT,Pluvault,Pluvault,COMD,21486,0,PLUVAULT,Pluvault,Pluvault -32,2019-01-01,COM,21513,0,QUEMIGNY POISOT,Quemigny-Poisot,Quemigny-Poisot,COMD,21513,0,QUEMIGNY POISOT,Quemigny-Poisot,Quemigny-Poisot 32,2019-01-01,COM,21513,0,QUEMIGNY POISOT,Quemigny-Poisot,Quemigny-Poisot,COM,21178,0,VALFORET,Valforêt,Valforêt +32,2019-01-01,COM,21513,0,QUEMIGNY POISOT,Quemigny-Poisot,Quemigny-Poisot,COMD,21513,0,QUEMIGNY POISOT,Quemigny-Poisot,Quemigny-Poisot 32,2019-01-01,COM,21621,0,TART L ABBAYE,Tart-l'Abbaye,Tart-l'Abbaye,COMD,21621,0,TART L ABBAYE,Tart-l'Abbaye,Tart-l'Abbaye 32,2019-01-01,COM,21621,0,TART L ABBAYE,Tart-l'Abbaye,Tart-l'Abbaye,COM,21623,0,TART,Tart,Tart 32,2019-01-01,COM,21623,0,TART LE HAUT,Tart-le-Haut,Tart-le-Haut,COM,21623,0,TART,Tart,Tart @@ -751,60 +711,57 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2019-01-01,COM,22038,0,CHATELAUDREN,Châtelaudren,Châtelaudren,COM,22206,0,CHATELAUDREN PLOUAGAT,Châtelaudren-Plouagat,Châtelaudren-Plouagat 32,2019-01-01,COM,22078,0,HENGOAT,Hengoat,Hengoat,COMD,22078,0,HENGOAT,Hengoat,Hengoat 32,2019-01-01,COM,22078,0,HENGOAT,Hengoat,Hengoat,COM,22264,3,ROCHE JAUDY,Roche-Jaudy,La Roche-Jaudy -32,2019-01-01,COMD,22093,0,LAMBALLE,Lamballe,Lamballe,COMD,22093,0,LAMBALLE,Lamballe,Lamballe 32,2019-01-01,COM,22093,0,LAMBALLE,Lamballe,Lamballe,COM,22093,0,LAMBALLE ARMOR,Lamballe-Armor,Lamballe-Armor -32,2019-01-01,COMD,22093,0,LAMBALLE,Lamballe,Lamballe,COM,22093,0,LAMBALLE ARMOR,Lamballe-Armor,Lamballe-Armor 32,2019-01-01,COM,22100,0,LANGAST,Langast,Langast,COMD,22100,0,LANGAST,Langast,Langast 32,2019-01-01,COM,22100,0,LANGAST,Langast,Langast,COM,22219,0,PLOUGUENAST LANGAST,Plouguenast-Langast,Plouguenast-Langast -32,2019-01-01,COMD,22151,0,MESLIN,Meslin,Meslin,COMD,22151,0,MESLIN,Meslin,Meslin -32,2019-01-01,COMD,22151,0,MESLIN,Meslin,Meslin,COM,22093,0,LAMBALLE ARMOR,Lamballe-Armor,Lamballe-Armor 32,2019-01-01,COM,22154,0,MORIEUX,Morieux,Morieux,COM,22093,0,LAMBALLE ARMOR,Lamballe-Armor,Lamballe-Armor 32,2019-01-01,COM,22154,0,MORIEUX,Morieux,Morieux,COMD,22154,0,MORIEUX,Morieux,Morieux -32,2019-01-01,COM,22173,0,PLANGUENOUAL,Planguenoual,Planguenoual,COMD,22173,0,PLANGUENOUAL,Planguenoual,Planguenoual 32,2019-01-01,COM,22173,0,PLANGUENOUAL,Planguenoual,Planguenoual,COM,22093,0,LAMBALLE ARMOR,Lamballe-Armor,Lamballe-Armor +32,2019-01-01,COM,22173,0,PLANGUENOUAL,Planguenoual,Planguenoual,COMD,22173,0,PLANGUENOUAL,Planguenoual,Planguenoual 32,2019-01-01,COM,22206,0,PLOUAGAT,Plouagat,Plouagat,COMD,22206,0,PLOUAGAT,Plouagat,Plouagat 32,2019-01-01,COM,22206,0,PLOUAGAT,Plouagat,Plouagat,COM,22206,0,CHATELAUDREN PLOUAGAT,Châtelaudren-Plouagat,Châtelaudren-Plouagat -32,2019-01-01,COM,22219,0,PLOUGUENAST,Plouguenast,Plouguenast,COMD,22219,0,PLOUGUENAST,Plouguenast,Plouguenast 32,2019-01-01,COM,22219,0,PLOUGUENAST,Plouguenast,Plouguenast,COM,22219,0,PLOUGUENAST LANGAST,Plouguenast-Langast,Plouguenast-Langast -32,2019-01-01,COM,22247,0,POMMERIT JAUDY,Pommerit-Jaudy,Pommerit-Jaudy,COM,22264,3,ROCHE JAUDY,Roche-Jaudy,La Roche-Jaudy +32,2019-01-01,COM,22219,0,PLOUGUENAST,Plouguenast,Plouguenast,COMD,22219,0,PLOUGUENAST,Plouguenast,Plouguenast 32,2019-01-01,COM,22247,0,POMMERIT JAUDY,Pommerit-Jaudy,Pommerit-Jaudy,COMD,22247,0,POMMERIT JAUDY,Pommerit-Jaudy,Pommerit-Jaudy -32,2019-01-01,COM,22253,0,POULDOURAN,Pouldouran,Pouldouran,COM,22264,3,ROCHE JAUDY,Roche-Jaudy,La Roche-Jaudy +32,2019-01-01,COM,22247,0,POMMERIT JAUDY,Pommerit-Jaudy,Pommerit-Jaudy,COM,22264,3,ROCHE JAUDY,Roche-Jaudy,La Roche-Jaudy 32,2019-01-01,COM,22253,0,POULDOURAN,Pouldouran,Pouldouran,COMD,22253,0,POULDOURAN,Pouldouran,Pouldouran -32,2019-01-01,COM,22264,3,ROCHE DERRIEN,Roche-Derrien,La Roche-Derrien,COMD,22264,3,ROCHE DERRIEN,Roche-Derrien,La Roche-Derrien +32,2019-01-01,COM,22253,0,POULDOURAN,Pouldouran,Pouldouran,COM,22264,3,ROCHE JAUDY,Roche-Jaudy,La Roche-Jaudy 32,2019-01-01,COM,22264,3,ROCHE DERRIEN,Roche-Derrien,La Roche-Derrien,COM,22264,3,ROCHE JAUDY,Roche-Jaudy,La Roche-Jaudy +32,2019-01-01,COM,22264,3,ROCHE DERRIEN,Roche-Derrien,La Roche-Derrien,COMD,22264,3,ROCHE DERRIEN,Roche-Derrien,La Roche-Derrien 32,2019-01-01,COM,23109,0,LINARD,Linard,Linard,COM,23109,0,LINARD MALVAL,Linard-Malval,Linard-Malval 32,2019-01-01,COM,23109,0,LINARD,Linard,Linard,COMD,23109,0,LINARD,Linard,Linard -32,2019-01-01,COM,23121,0,MALVAL,Malval,Malval,COMD,23121,0,MALVAL,Malval,Malval 32,2019-01-01,COM,23121,0,MALVAL,Malval,Malval,COM,23109,0,LINARD MALVAL,Linard-Malval,Linard-Malval -32,2019-01-01,COM,23126,0,MASBARAUD MERIGNAT,Masbaraud-Mérignat,Masbaraud-Mérignat,COM,23189,0,SAINT DIZIER MASBARAUD,Saint-Dizier-Masbaraud,Saint-Dizier-Masbaraud +32,2019-01-01,COM,23121,0,MALVAL,Malval,Malval,COMD,23121,0,MALVAL,Malval,Malval 32,2019-01-01,COM,23126,0,MASBARAUD MERIGNAT,Masbaraud-Mérignat,Masbaraud-Mérignat,COMD,23126,0,MASBARAUD MERIGNAT,Masbaraud-Mérignat,Masbaraud-Mérignat -32,2019-01-01,COM,23189,0,SAINT DIZIER LEYRENNE,Saint-Dizier-Leyrenne,Saint-Dizier-Leyrenne,COM,23189,0,SAINT DIZIER MASBARAUD,Saint-Dizier-Masbaraud,Saint-Dizier-Masbaraud +32,2019-01-01,COM,23126,0,MASBARAUD MERIGNAT,Masbaraud-Mérignat,Masbaraud-Mérignat,COM,23189,0,SAINT DIZIER MASBARAUD,Saint-Dizier-Masbaraud,Saint-Dizier-Masbaraud 32,2019-01-01,COM,23189,0,SAINT DIZIER LEYRENNE,Saint-Dizier-Leyrenne,Saint-Dizier-Leyrenne,COMD,23189,0,SAINT DIZIER LEYRENNE,Saint-Dizier-Leyrenne,Saint-Dizier-Leyrenne +32,2019-01-01,COM,23189,0,SAINT DIZIER LEYRENNE,Saint-Dizier-Leyrenne,Saint-Dizier-Leyrenne,COM,23189,0,SAINT DIZIER MASBARAUD,Saint-Dizier-Masbaraud,Saint-Dizier-Masbaraud 32,2019-01-01,COMD,24064,0,BRANTOME,Brantôme,Brantôme,COM,24064,0,BRANTOME EN PERIGORD,Brantôme en Périgord,Brantôme en Périgord -32,2019-01-01,COM,24064,0,BRANTOME EN PERIGORD,Brantôme en Périgord,Brantôme en Périgord,COMD,24064,0,BRANTOME EN PERIGORD,Brantôme en Périgord,Brantôme en Périgord +32,2019-01-01,COMD,24064,0,BRANTOME,Brantôme,Brantôme,COMD,24064,0,BRANTOME,Brantôme,Brantôme 32,2019-01-01,COM,24064,0,BRANTOME EN PERIGORD,Brantôme en Périgord,Brantôme en Périgord,COM,24064,0,BRANTOME EN PERIGORD,Brantôme en Périgord,Brantôme en Périgord -32,2019-01-01,COM,24079,0,CANTILLAC,Cantillac,Cantillac,COMD,24079,0,CANTILLAC,Cantillac,Cantillac +32,2019-01-01,COM,24064,0,BRANTOME EN PERIGORD,Brantôme en Périgord,Brantôme en Périgord,COMD,24064,0,BRANTOME,Brantôme,Brantôme 32,2019-01-01,COM,24079,0,CANTILLAC,Cantillac,Cantillac,COM,24064,0,BRANTOME EN PERIGORD,Brantôme en Périgord,Brantôme en Périgord -32,2019-01-01,COM,24127,0,COLY,Coly,Coly,COM,24364,0,COLY SAINT AMAND,Coly-Saint-Amand,Coly-Saint-Amand +32,2019-01-01,COM,24079,0,CANTILLAC,Cantillac,Cantillac,COMD,24079,0,CANTILLAC,Cantillac,Cantillac 32,2019-01-01,COM,24127,0,COLY,Coly,Coly,COMD,24127,0,COLY,Coly,Coly -32,2019-01-01,COM,24170,1,EYVIRAT,Eyvirat,Eyvirat,COMD,24170,1,EYVIRAT,Eyvirat,Eyvirat +32,2019-01-01,COM,24127,0,COLY,Coly,Coly,COM,24364,0,COLY SAINT AMAND,Coly-Saint-Amand,Coly-Saint-Amand 32,2019-01-01,COM,24170,1,EYVIRAT,Eyvirat,Eyvirat,COM,24064,0,BRANTOME EN PERIGORD,Brantôme en Périgord,Brantôme en Périgord -32,2019-01-01,COM,24172,4,EYZIES DE TAYAC SIREUIL,Eyzies-de-Tayac-Sireuil,Les Eyzies-de-Tayac-Sireuil,COMD,24172,4,EYZIES DE TAYAC SIREUIL,Eyzies-de-Tayac-Sireuil,Les Eyzies-de-Tayac-Sireuil +32,2019-01-01,COM,24170,1,EYVIRAT,Eyvirat,Eyvirat,COMD,24170,1,EYVIRAT,Eyvirat,Eyvirat 32,2019-01-01,COM,24172,4,EYZIES DE TAYAC SIREUIL,Eyzies-de-Tayac-Sireuil,Les Eyzies-de-Tayac-Sireuil,COM,24172,4,EYZIES,Eyzies,Les Eyzies +32,2019-01-01,COM,24172,4,EYZIES DE TAYAC SIREUIL,Eyzies-de-Tayac-Sireuil,Les Eyzies-de-Tayac-Sireuil,COMD,24172,4,EYZIES DE TAYAC SIREUIL,Eyzies-de-Tayac-Sireuil,Les Eyzies-de-Tayac-Sireuil 32,2019-01-01,COM,24181,0,FLAUGEAC,Flaugeac,Flaugeac,COMD,24181,0,FLAUGEAC,Flaugeac,Flaugeac 32,2019-01-01,COM,24181,0,FLAUGEAC,Flaugeac,Flaugeac,COM,24534,0,SIGOULES ET FLAUGEAC,Sigoulès-et-Flaugeac,Sigoulès-et-Flaugeac 32,2019-01-01,COM,24198,3,GONTERIE BOULOUNEIX,Gonterie-Boulouneix,La Gonterie-Boulouneix,COM,24064,0,BRANTOME EN PERIGORD,Brantôme en Périgord,Brantôme en Périgord 32,2019-01-01,COM,24198,3,GONTERIE BOULOUNEIX,Gonterie-Boulouneix,La Gonterie-Boulouneix,COMD,24198,3,GONTERIE BOULOUNEIX,Gonterie-Boulouneix,La Gonterie-Boulouneix 32,2019-01-01,COM,24233,0,LAVEYSSIERE,Laveyssière,Laveyssière,COMD,24233,0,LAVEYSSIERE,Laveyssière,Laveyssière 32,2019-01-01,COM,24233,0,LAVEYSSIERE,Laveyssière,Laveyssière,COM,24259,1,EYRAUD CREMPSE MAURENS,Eyraud-Crempse-Maurens,Eyraud-Crempse-Maurens -32,2019-01-01,COM,24249,0,MANAURIE,Manaurie,Manaurie,COMD,24249,0,MANAURIE,Manaurie,Manaurie 32,2019-01-01,COM,24249,0,MANAURIE,Manaurie,Manaurie,COM,24172,4,EYZIES,Eyzies,Les Eyzies +32,2019-01-01,COM,24249,0,MANAURIE,Manaurie,Manaurie,COMD,24249,0,MANAURIE,Manaurie,Manaurie 32,2019-01-01,COM,24259,0,MAURENS,Maurens,Maurens,COM,24259,1,EYRAUD CREMPSE MAURENS,Eyraud-Crempse-Maurens,Eyraud-Crempse-Maurens 32,2019-01-01,COM,24259,0,MAURENS,Maurens,Maurens,COMD,24259,0,MAURENS,Maurens,Maurens -32,2019-01-01,COM,24364,0,SAINT AMAND DE COLY,Saint-Amand-de-Coly,Saint-Amand-de-Coly,COM,24364,0,COLY SAINT AMAND,Coly-Saint-Amand,Coly-Saint-Amand 32,2019-01-01,COM,24364,0,SAINT AMAND DE COLY,Saint-Amand-de-Coly,Saint-Amand-de-Coly,COMD,24364,0,SAINT AMAND DE COLY,Saint-Amand-de-Coly,Saint-Amand-de-Coly -32,2019-01-01,COM,24389,0,SAINT CIRQ,Saint-Cirq,Saint-Cirq,COMD,24389,0,SAINT CIRQ,Saint-Cirq,Saint-Cirq +32,2019-01-01,COM,24364,0,SAINT AMAND DE COLY,Saint-Amand-de-Coly,Saint-Amand-de-Coly,COM,24364,0,COLY SAINT AMAND,Coly-Saint-Amand,Coly-Saint-Amand 32,2019-01-01,COM,24389,0,SAINT CIRQ,Saint-Cirq,Saint-Cirq,COM,24172,4,EYZIES,Eyzies,Les Eyzies +32,2019-01-01,COM,24389,0,SAINT CIRQ,Saint-Cirq,Saint-Cirq,COMD,24389,0,SAINT CIRQ,Saint-Cirq,Saint-Cirq 32,2019-01-01,COM,24391,0,SAINT CREPIN DE RICHEMONT,Saint-Crépin-de-Richemont,Saint-Crépin-de-Richemont,COM,24064,0,BRANTOME EN PERIGORD,Brantôme en Périgord,Brantôme en Périgord 32,2019-01-01,COM,24391,0,SAINT CREPIN DE RICHEMONT,Saint-Crépin-de-Richemont,Saint-Crépin-de-Richemont,COMD,24391,0,SAINT CREPIN DE RICHEMONT,Saint-Crépin-de-Richemont,Saint-Crépin-de-Richemont 32,2019-01-01,COM,24402,0,SAINTE EULALIE D EYMET,Sainte-Eulalie-d'Eymet,Sainte-Eulalie-d'Eymet,COMD,24402,0,SAINTE EULALIE D EYMET,Sainte-Eulalie-d'Eymet,Sainte-Eulalie-d'Eymet @@ -814,17 +771,18 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2019-01-01,COM,24427,0,SAINT JEAN D EYRAUD,Saint-Jean-d'Eyraud,Saint-Jean-d'Eyraud,COM,24259,1,EYRAUD CREMPSE MAURENS,Eyraud-Crempse-Maurens,Eyraud-Crempse-Maurens 32,2019-01-01,COM,24427,0,SAINT JEAN D EYRAUD,Saint-Jean-d'Eyraud,Saint-Jean-d'Eyraud,COMD,24427,0,SAINT JEAN D EYRAUD,Saint-Jean-d'Eyraud,Saint-Jean-d'Eyraud 32,2019-01-01,COMD,24430,0,SAINT JULIEN DE BOURDEILLES,Saint-Julien-de-Bourdeilles,Saint-Julien-de-Bourdeilles,COM,24064,0,BRANTOME EN PERIGORD,Brantôme en Périgord,Brantôme en Périgord -32,2019-01-01,COM,24431,0,SAINT JULIEN DE CREMPSE,Saint-Julien-de-Crempse,Saint-Julien-de-Crempse,COMD,24431,0,SAINT JULIEN DE CREMPSE,Saint-Julien-de-Crempse,Saint-Julien-de-Crempse +32,2019-01-01,COMD,24430,0,SAINT JULIEN DE BOURDEILLES,Saint-Julien-de-Bourdeilles,Saint-Julien-de-Bourdeilles,COMD,24430,0,SAINT JULIEN DE BOURDEILLES,Saint-Julien-de-Bourdeilles,Saint-Julien-de-Bourdeilles 32,2019-01-01,COM,24431,0,SAINT JULIEN DE CREMPSE,Saint-Julien-de-Crempse,Saint-Julien-de-Crempse,COM,24259,1,EYRAUD CREMPSE MAURENS,Eyraud-Crempse-Maurens,Eyraud-Crempse-Maurens +32,2019-01-01,COM,24431,0,SAINT JULIEN DE CREMPSE,Saint-Julien-de-Crempse,Saint-Julien-de-Crempse,COMD,24431,0,SAINT JULIEN DE CREMPSE,Saint-Julien-de-Crempse,Saint-Julien-de-Crempse 32,2019-01-01,COM,24433,0,SAINT JULIEN D EYMET,Saint-Julien-d'Eymet,Saint-Julien-d'Eymet,COM,24423,0,SAINT JULIEN INNOCENCE EULALIE,Saint-Julien-Innocence-Eulalie,Saint-Julien-Innocence-Eulalie 32,2019-01-01,COM,24433,0,SAINT JULIEN D EYMET,Saint-Julien-d'Eymet,Saint-Julien-d'Eymet,COMD,24433,0,SAINT JULIEN D EYMET,Saint-Julien-d'Eymet,Saint-Julien-d'Eymet 32,2019-01-01,COM,24530,0,SENCENAC PUY DE FOURCHES,Sencenac-Puy-de-Fourches,Sencenac-Puy-de-Fourches,COM,24064,0,BRANTOME EN PERIGORD,Brantôme en Périgord,Brantôme en Périgord 32,2019-01-01,COM,24530,0,SENCENAC PUY DE FOURCHES,Sencenac-Puy-de-Fourches,Sencenac-Puy-de-Fourches,COMD,24530,0,SENCENAC PUY DE FOURCHES,Sencenac-Puy-de-Fourches,Sencenac-Puy-de-Fourches -32,2019-01-01,COM,24534,0,SIGOULES,Sigoulès,Sigoulès,COMD,24534,0,SIGOULES,Sigoulès,Sigoulès 32,2019-01-01,COM,24534,0,SIGOULES,Sigoulès,Sigoulès,COM,24534,0,SIGOULES ET FLAUGEAC,Sigoulès-et-Flaugeac,Sigoulès-et-Flaugeac +32,2019-01-01,COM,24534,0,SIGOULES,Sigoulès,Sigoulès,COMD,24534,0,SIGOULES,Sigoulès,Sigoulès 32,2019-01-01,COMA,24539,0,SIREUIL,Sireuil,Sireuil,COM,24172,4,EYZIES,Eyzies,Les Eyzies -32,2019-01-01,COM,24561,0,VALEUIL,Valeuil,Valeuil,COMD,24561,0,VALEUIL,Valeuil,Valeuil 32,2019-01-01,COM,24561,0,VALEUIL,Valeuil,Valeuil,COM,24064,0,BRANTOME EN PERIGORD,Brantôme en Périgord,Brantôme en Périgord +32,2019-01-01,COM,24561,0,VALEUIL,Valeuil,Valeuil,COMD,24561,0,VALEUIL,Valeuil,Valeuil 32,2019-01-01,COM,25027,1,ARGUEL,Arguel,Arguel,COM,25245,0,FONTAIN,Fontain,Fontain 32,2019-01-01,COM,25140,0,CHAUX LES CLERVAL,Chaux-lès-Clerval,Chaux-lès-Clerval,COMD,25140,0,CHAUX LES CLERVAL,Chaux-lès-Clerval,Chaux-lès-Clerval 32,2019-01-01,COM,25140,0,CHAUX LES CLERVAL,Chaux-lès-Clerval,Chaux-lès-Clerval,COM,25156,0,PAYS DE CLERVAL,Pays-de-Clerval,Pays-de-Clerval @@ -832,198 +790,174 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2019-01-01,COM,25245,0,FONTAIN,Fontain,Fontain,COM,25245,0,FONTAIN,Fontain,Fontain 32,2019-01-01,COM,25250,0,FOUCHERANS,Foucherans,Foucherans,COM,25558,0,TARCENAY FOUCHERANS,Tarcenay-Foucherans,Tarcenay-Foucherans 32,2019-01-01,COM,25558,0,TARCENAY,Tarcenay,Tarcenay,COM,25558,0,TARCENAY FOUCHERANS,Tarcenay-Foucherans,Tarcenay-Foucherans -32,2019-01-01,COM,26086,0,CHATILLON EN DIOIS,Châtillon-en-Diois,Châtillon-en-Diois,COMD,26086,0,CHATILLON EN DIOIS,Châtillon-en-Diois,Châtillon-en-Diois 32,2019-01-01,COM,26086,0,CHATILLON EN DIOIS,Châtillon-en-Diois,Châtillon-en-Diois,COM,26086,0,CHATILLON EN DIOIS,Châtillon-en-Diois,Châtillon-en-Diois -32,2019-01-01,COM,26184,0,MIRIBEL,Miribel,Miribel,COM,26210,0,VALHERBASSE,Valherbasse,Valherbasse +32,2019-01-01,COM,26086,0,CHATILLON EN DIOIS,Châtillon-en-Diois,Châtillon-en-Diois,COMD,26086,0,CHATILLON EN DIOIS,Châtillon-en-Diois,Châtillon-en-Diois 32,2019-01-01,COM,26184,0,MIRIBEL,Miribel,Miribel,COMD,26184,0,MIRIBEL,Miribel,Miribel +32,2019-01-01,COM,26184,0,MIRIBEL,Miribel,Miribel,COM,26210,0,VALHERBASSE,Valherbasse,Valherbasse 32,2019-01-01,COM,26210,0,MONTRIGAUD,Montrigaud,Montrigaud,COMD,26210,0,MONTRIGAUD,Montrigaud,Montrigaud 32,2019-01-01,COM,26210,0,MONTRIGAUD,Montrigaud,Montrigaud,COM,26210,0,VALHERBASSE,Valherbasse,Valherbasse 32,2019-01-01,COM,26297,0,SAINT BONNET DE VALCLERIEUX,Saint-Bonnet-de-Valclérieux,Saint-Bonnet-de-Valclérieux,COM,26210,0,VALHERBASSE,Valherbasse,Valherbasse 32,2019-01-01,COM,26297,0,SAINT BONNET DE VALCLERIEUX,Saint-Bonnet-de-Valclérieux,Saint-Bonnet-de-Valclérieux,COMD,26297,0,SAINT BONNET DE VALCLERIEUX,Saint-Bonnet-de-Valclérieux,Saint-Bonnet-de-Valclérieux 32,2019-01-01,COM,26354,0,TRESCHENU CREYERS,Treschenu-Creyers,Treschenu-Creyers,COM,26086,0,CHATILLON EN DIOIS,Châtillon-en-Diois,Châtillon-en-Diois 32,2019-01-01,COM,26354,0,TRESCHENU CREYERS,Treschenu-Creyers,Treschenu-Creyers,COMD,26354,0,TRESCHENU CREYERS,Treschenu-Creyers,Treschenu-Creyers -32,2019-01-01,COMD,27024,2,RONCENAY AUTHENAY,Roncenay-Authenay,Le Roncenay-Authenay,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton -32,2019-01-01,COMD,27024,2,RONCENAY AUTHENAY,Roncenay-Authenay,Le Roncenay-Authenay,COMD,27024,2,RONCENAY AUTHENAY,Roncenay-Authenay,Le Roncenay-Authenay 32,2019-01-01,COM,27070,0,BOISEMONT,Boisemont,Boisemont,COM,27070,0,FRENELLES EN VEXIN,Frenelles-en-Vexin,Frenelles-en-Vexin 32,2019-01-01,COM,27070,0,BOISEMONT,Boisemont,Boisemont,COMD,27070,0,BOISEMONT,Boisemont,Boisemont -32,2019-01-01,COM,27143,0,CHAMPIGNOLLES,Champignolles,Champignolles,COM,27685,3,VIEILLE LYRE,Vieille-Lyre,La Vieille-Lyre 32,2019-01-01,COM,27143,0,CHAMPIGNOLLES,Champignolles,Champignolles,COMD,27143,0,CHAMPIGNOLLES,Champignolles,Champignolles -32,2019-01-01,COMD,27166,0,CONDE SUR ITON,Condé-sur-Iton,Condé-sur-Iton,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton -32,2019-01-01,COMD,27166,0,CONDE SUR ITON,Condé-sur-Iton,Condé-sur-Iton,COMD,27166,0,CONDE SUR ITON,Condé-sur-Iton,Condé-sur-Iton -32,2019-01-01,COM,27175,0,CORNY,Corny,Corny,COMD,27175,0,CORNY,Corny,Corny +32,2019-01-01,COM,27143,0,CHAMPIGNOLLES,Champignolles,Champignolles,COM,27685,3,VIEILLE LYRE,Vieille-Lyre,La Vieille-Lyre 32,2019-01-01,COM,27175,0,CORNY,Corny,Corny,COM,27070,0,FRENELLES EN VEXIN,Frenelles-en-Vexin,Frenelles-en-Vexin -32,2019-01-01,COMD,27198,0,DAMVILLE,Damville,Damville,COMD,27198,0,DAMVILLE,Damville,Damville -32,2019-01-01,COMD,27198,0,DAMVILLE,Damville,Damville,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton +32,2019-01-01,COM,27175,0,CORNY,Corny,Corny,COMD,27175,0,CORNY,Corny,Corny 32,2019-01-01,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton -32,2019-01-01,COM,27263,0,FOURMETOT,Fourmetot,Fourmetot,COM,27263,2,PERREY,Perrey,Le Perrey 32,2019-01-01,COM,27263,0,FOURMETOT,Fourmetot,Fourmetot,COMD,27263,0,FOURMETOT,Fourmetot,Fourmetot +32,2019-01-01,COM,27263,0,FOURMETOT,Fourmetot,Fourmetot,COM,27263,2,PERREY,Perrey,Le Perrey 32,2019-01-01,COM,27270,0,FRESNE L ARCHEVEQUE,Fresne-l'Archevêque,Fresne-l'Archevêque,COM,27070,0,FRENELLES EN VEXIN,Frenelles-en-Vexin,Frenelles-en-Vexin 32,2019-01-01,COM,27270,0,FRESNE L ARCHEVEQUE,Fresne-l'Archevêque,Fresne-l'Archevêque,COMD,27270,0,FRESNE L ARCHEVEQUE,Fresne-l'Archevêque,Fresne-l'Archevêque -32,2019-01-01,COMD,27293,0,GOUVILLE,Gouville,Gouville,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton -32,2019-01-01,COMD,27293,0,GOUVILLE,Gouville,Gouville,COMD,27293,0,GOUVILLE,Gouville,Gouville -32,2019-01-01,COM,27297,0,GRANDVILLIERS,Grandvilliers,Grandvilliers,COMD,27297,0,GRANDVILLIERS,Grandvilliers,Grandvilliers 32,2019-01-01,COM,27297,0,GRANDVILLIERS,Grandvilliers,Grandvilliers,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton -32,2019-01-01,COMD,27387,0,MANTHELON,Manthelon,Manthelon,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton -32,2019-01-01,COMD,27387,0,MANTHELON,Manthelon,Manthelon,COMD,27387,0,MANTHELON,Manthelon,Manthelon -32,2019-01-01,COM,27416,0,BUIS SUR DAMVILLE,Buis-sur-Damville,Buis-sur-Damville,COMD,27416,0,BUIS SUR DAMVILLE,Buis-sur-Damville,Buis-sur-Damville +32,2019-01-01,COM,27297,0,GRANDVILLIERS,Grandvilliers,Grandvilliers,COMD,27297,0,GRANDVILLIERS,Grandvilliers,Grandvilliers 32,2019-01-01,COM,27416,0,BUIS SUR DAMVILLE,Buis-sur-Damville,Buis-sur-Damville,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton +32,2019-01-01,COM,27416,0,BUIS SUR DAMVILLE,Buis-sur-Damville,Buis-sur-Damville,COMD,27416,0,BUIS SUR DAMVILLE,Buis-sur-Damville,Buis-sur-Damville 32,2019-01-01,COM,27491,0,ROMAN,Roman,Roman,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton 32,2019-01-01,COM,27491,0,ROMAN,Roman,Roman,COMD,27491,0,ROMAN,Roman,Roman -32,2019-01-01,COMD,27503,2,SACQ,Sacq,Le Sacq,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton -32,2019-01-01,COMD,27503,2,SACQ,Sacq,Le Sacq,COMD,27503,2,SACQ,Sacq,Le Sacq -32,2019-01-01,COM,27516,0,SAINT AUBIN LE VERTUEUX,Saint-Aubin-le-Vertueux,Saint-Aubin-le-Vertueux,COM,27516,0,TREIS SANTS EN OUCHE,Treis-Sants-en-Ouche,Treis-Sants-en-Ouche 32,2019-01-01,COM,27516,0,SAINT AUBIN LE VERTUEUX,Saint-Aubin-le-Vertueux,Saint-Aubin-le-Vertueux,COMD,27516,0,SAINT AUBIN LE VERTUEUX,Saint-Aubin-le-Vertueux,Saint-Aubin-le-Vertueux -32,2019-01-01,COM,27523,0,SAINT CLAIR D ARCEY,Saint-Clair-d'Arcey,Saint-Clair-d'Arcey,COMD,27523,0,SAINT CLAIR D ARCEY,Saint-Clair-d'Arcey,Saint-Clair-d'Arcey +32,2019-01-01,COM,27516,0,SAINT AUBIN LE VERTUEUX,Saint-Aubin-le-Vertueux,Saint-Aubin-le-Vertueux,COM,27516,0,TREIS SANTS EN OUCHE,Treis-Sants-en-Ouche,Treis-Sants-en-Ouche 32,2019-01-01,COM,27523,0,SAINT CLAIR D ARCEY,Saint-Clair-d'Arcey,Saint-Clair-d'Arcey,COM,27516,0,TREIS SANTS EN OUCHE,Treis-Sants-en-Ouche,Treis-Sants-en-Ouche +32,2019-01-01,COM,27523,0,SAINT CLAIR D ARCEY,Saint-Clair-d'Arcey,Saint-Clair-d'Arcey,COMD,27523,0,SAINT CLAIR D ARCEY,Saint-Clair-d'Arcey,Saint-Clair-d'Arcey 32,2019-01-01,COM,27541,0,SAINT GEORGES DU MESNIL,Saint-Georges-du-Mesnil,Saint-Georges-du-Mesnil,COMD,27541,0,SAINT GEORGES DU MESNIL,Saint-Georges-du-Mesnil,Saint-Georges-du-Mesnil 32,2019-01-01,COM,27541,0,SAINT GEORGES DU MESNIL,Saint-Georges-du-Mesnil,Saint-Georges-du-Mesnil,COM,27541,2,MESNIL SAINT JEAN,Mesnil-Saint-Jean,Le Mesnil-Saint-Jean 32,2019-01-01,COM,27551,0,SAINT JEAN DE LA LEQUERAYE,Saint-Jean-de-la-Léqueraye,Saint-Jean-de-la-Léqueraye,COM,27541,2,MESNIL SAINT JEAN,Mesnil-Saint-Jean,Le Mesnil-Saint-Jean 32,2019-01-01,COM,27551,0,SAINT JEAN DE LA LEQUERAYE,Saint-Jean-de-la-Léqueraye,Saint-Jean-de-la-Léqueraye,COMD,27551,0,SAINT JEAN DE LA LEQUERAYE,Saint-Jean-de-la-Léqueraye,Saint-Jean-de-la-Léqueraye -32,2019-01-01,COM,27581,0,SAINT OUEN DES CHAMPS,Saint-Ouen-des-Champs,Saint-Ouen-des-Champs,COMD,27581,0,SAINT OUEN DES CHAMPS,Saint-Ouen-des-Champs,Saint-Ouen-des-Champs 32,2019-01-01,COM,27581,0,SAINT OUEN DES CHAMPS,Saint-Ouen-des-Champs,Saint-Ouen-des-Champs,COM,27263,2,PERREY,Perrey,Le Perrey -32,2019-01-01,COM,27600,0,SAINT QUENTIN DES ISLES,Saint-Quentin-des-Isles,Saint-Quentin-des-Isles,COMD,27600,0,SAINT QUENTIN DES ISLES,Saint-Quentin-des-Isles,Saint-Quentin-des-Isles +32,2019-01-01,COM,27581,0,SAINT OUEN DES CHAMPS,Saint-Ouen-des-Champs,Saint-Ouen-des-Champs,COMD,27581,0,SAINT OUEN DES CHAMPS,Saint-Ouen-des-Champs,Saint-Ouen-des-Champs 32,2019-01-01,COM,27600,0,SAINT QUENTIN DES ISLES,Saint-Quentin-des-Isles,Saint-Quentin-des-Isles,COM,27516,0,TREIS SANTS EN OUCHE,Treis-Sants-en-Ouche,Treis-Sants-en-Ouche +32,2019-01-01,COM,27600,0,SAINT QUENTIN DES ISLES,Saint-Quentin-des-Isles,Saint-Quentin-des-Isles,COMD,27600,0,SAINT QUENTIN DES ISLES,Saint-Quentin-des-Isles,Saint-Quentin-des-Isles 32,2019-01-01,COM,27607,0,SAINT THURIEN,Saint-Thurien,Saint-Thurien,COM,27263,2,PERREY,Perrey,Le Perrey 32,2019-01-01,COM,27607,0,SAINT THURIEN,Saint-Thurien,Saint-Thurien,COMD,27607,0,SAINT THURIEN,Saint-Thurien,Saint-Thurien 32,2019-01-01,COM,27685,3,VIEILLE LYRE,Vieille-Lyre,La Vieille-Lyre,COMD,27685,3,VIEILLE LYRE,Vieille-Lyre,La Vieille-Lyre 32,2019-01-01,COM,27685,3,VIEILLE LYRE,Vieille-Lyre,La Vieille-Lyre,COM,27685,3,VIEILLE LYRE,Vieille-Lyre,La Vieille-Lyre -32,2019-01-01,COM,28002,1,ALLAINES MERVILLIERS,Allaines-Mervilliers,Allaines-Mervilliers,COM,28199,0,JANVILLE EN BEAUCE,Janville-en-Beauce,Janville-en-Beauce 32,2019-01-01,COM,28002,1,ALLAINES MERVILLIERS,Allaines-Mervilliers,Allaines-Mervilliers,COMD,28002,1,ALLAINES MERVILLIERS,Allaines-Mervilliers,Allaines-Mervilliers +32,2019-01-01,COM,28002,1,ALLAINES MERVILLIERS,Allaines-Mervilliers,Allaines-Mervilliers,COM,28199,0,JANVILLE EN BEAUCE,Janville-en-Beauce,Janville-en-Beauce 32,2019-01-01,COM,28018,1,AUTHON DU PERCHE,Authon-du-Perche,Authon-du-Perche,COMD,28018,1,AUTHON DU PERCHE,Authon-du-Perche,Authon-du-Perche 32,2019-01-01,COM,28018,1,AUTHON DU PERCHE,Authon-du-Perche,Authon-du-Perche,COM,28018,1,AUTHON DU PERCHE,Authon-du-Perche,Authon-du-Perche -32,2019-01-01,COMD,28020,0,BAIGNOLET,Baignolet,Baignolet,COM,28406,1,EOLE EN BEAUCE,Éole-en-Beauce,Éole-en-Beauce -32,2019-01-01,COMD,28020,0,BAIGNOLET,Baignolet,Baignolet,COMD,28020,0,BAIGNOLET,Baignolet,Baignolet -32,2019-01-01,COM,28063,0,BRUNELLES,Brunelles,Brunelles,COM,28236,1,ARCISSES,Arcisses,Arcisses 32,2019-01-01,COM,28063,0,BRUNELLES,Brunelles,Brunelles,COMD,28063,0,BRUNELLES,Brunelles,Brunelles -32,2019-01-01,COM,28112,0,COUDRECEAU,Coudreceau,Coudreceau,COM,28236,1,ARCISSES,Arcisses,Arcisses +32,2019-01-01,COM,28063,0,BRUNELLES,Brunelles,Brunelles,COM,28236,1,ARCISSES,Arcisses,Arcisses 32,2019-01-01,COM,28112,0,COUDRECEAU,Coudreceau,Coudreceau,COMD,28112,0,COUDRECEAU,Coudreceau,Coudreceau -32,2019-01-01,COMD,28145,0,FAINS LA FOLIE,Fains-la-Folie,Fains-la-Folie,COM,28406,1,EOLE EN BEAUCE,Éole-en-Beauce,Éole-en-Beauce -32,2019-01-01,COMD,28145,0,FAINS LA FOLIE,Fains-la-Folie,Fains-la-Folie,COMD,28145,0,FAINS LA FOLIE,Fains-la-Folie,Fains-la-Folie -32,2019-01-01,COM,28165,0,FRETIGNY,Frétigny,Frétigny,COM,28331,0,SAINTIGNY,Saintigny,Saintigny +32,2019-01-01,COM,28112,0,COUDRECEAU,Coudreceau,Coudreceau,COM,28236,1,ARCISSES,Arcisses,Arcisses 32,2019-01-01,COM,28165,0,FRETIGNY,Frétigny,Frétigny,COMD,28165,0,FRETIGNY,Frétigny,Frétigny -32,2019-01-01,COMD,28179,0,GERMIGNONVILLE,Germignonville,Germignonville,COMD,28179,0,GERMIGNONVILLE,Germignonville,Germignonville -32,2019-01-01,COMD,28179,0,GERMIGNONVILLE,Germignonville,Germignonville,COM,28406,1,EOLE EN BEAUCE,Éole-en-Beauce,Éole-en-Beauce +32,2019-01-01,COM,28165,0,FRETIGNY,Frétigny,Frétigny,COM,28331,0,SAINTIGNY,Saintigny,Saintigny 32,2019-01-01,COM,28199,0,JANVILLE,Janville,Janville,COMD,28199,0,JANVILLE,Janville,Janville 32,2019-01-01,COM,28199,0,JANVILLE,Janville,Janville,COM,28199,0,JANVILLE EN BEAUCE,Janville-en-Beauce,Janville-en-Beauce -32,2019-01-01,COM,28205,0,LANNERAY,Lanneray,Lanneray,COM,28334,0,SAINT DENIS LANNERAY,Saint-Denis-Lanneray,Saint-Denis-Lanneray 32,2019-01-01,COM,28205,0,LANNERAY,Lanneray,Lanneray,COMD,28205,0,LANNERAY,Lanneray,Lanneray -32,2019-01-01,COM,28236,0,MARGON,Margon,Margon,COM,28236,1,ARCISSES,Arcisses,Arcisses +32,2019-01-01,COM,28205,0,LANNERAY,Lanneray,Lanneray,COM,28334,0,SAINT DENIS LANNERAY,Saint-Denis-Lanneray,Saint-Denis-Lanneray 32,2019-01-01,COM,28236,0,MARGON,Margon,Margon,COMD,28236,0,MARGON,Margon,Margon +32,2019-01-01,COM,28236,0,MARGON,Margon,Margon,COM,28236,1,ARCISSES,Arcisses,Arcisses 32,2019-01-01,COMA,28244,0,MERVILLIERS,Mervilliers,Mervilliers,COM,28199,0,JANVILLE EN BEAUCE,Janville-en-Beauce,Janville-en-Beauce 32,2019-01-01,COM,28311,2,PUISET,Puiset,Le Puiset,COM,28199,0,JANVILLE EN BEAUCE,Janville-en-Beauce,Janville-en-Beauce 32,2019-01-01,COM,28311,2,PUISET,Puiset,Le Puiset,COMD,28311,2,PUISET,Puiset,Le Puiset -32,2019-01-01,COM,28331,0,SAINT DENIS D AUTHOU,Saint-Denis-d'Authou,Saint-Denis-d'Authou,COMD,28331,0,SAINT DENIS D AUTHOU,Saint-Denis-d'Authou,Saint-Denis-d'Authou 32,2019-01-01,COM,28331,0,SAINT DENIS D AUTHOU,Saint-Denis-d'Authou,Saint-Denis-d'Authou,COM,28331,0,SAINTIGNY,Saintigny,Saintigny +32,2019-01-01,COM,28331,0,SAINT DENIS D AUTHOU,Saint-Denis-d'Authou,Saint-Denis-d'Authou,COMD,28331,0,SAINT DENIS D AUTHOU,Saint-Denis-d'Authou,Saint-Denis-d'Authou 32,2019-01-01,COM,28334,0,SAINT DENIS LES PONTS,Saint-Denis-les-Ponts,Saint-Denis-les-Ponts,COMD,28334,0,SAINT DENIS LES PONTS,Saint-Denis-les-Ponts,Saint-Denis-les-Ponts 32,2019-01-01,COM,28334,0,SAINT DENIS LES PONTS,Saint-Denis-les-Ponts,Saint-Denis-les-Ponts,COM,28334,0,SAINT DENIS LANNERAY,Saint-Denis-Lanneray,Saint-Denis-Lanneray 32,2019-01-01,COM,28376,0,SOIZE,Soizé,Soizé,COM,28018,1,AUTHON DU PERCHE,Authon-du-Perche,Authon-du-Perche 32,2019-01-01,COM,28376,0,SOIZE,Soizé,Soizé,COMD,28376,0,SOIZE,Soizé,Soizé -32,2019-01-01,COMD,28406,0,VIABON,Viabon,Viabon,COM,28406,1,EOLE EN BEAUCE,Éole-en-Beauce,Éole-en-Beauce -32,2019-01-01,COMD,28406,0,VIABON,Viabon,Viabon,COMD,28406,0,VIABON,Viabon,Viabon 32,2019-01-01,COM,28406,1,EOLE EN BEAUCE,Eole-en-Beauce,Eole-en-Beauce,COM,28406,1,EOLE EN BEAUCE,Éole-en-Beauce,Éole-en-Beauce -32,2019-01-01,COM,28412,0,VILLEAU,Villeau,Villeau,COMD,28412,0,VILLEAU,Villeau,Villeau 32,2019-01-01,COM,28412,0,VILLEAU,Villeau,Villeau,COM,28406,1,EOLE EN BEAUCE,Éole-en-Beauce,Éole-en-Beauce -32,2019-01-01,COM,29129,0,LOCMARIA BERRIEN,Locmaria-Berrien,Locmaria-Berrien,COM,29227,0,POULLAOUEN,Poullaouen,Poullaouen +32,2019-01-01,COM,28412,0,VILLEAU,Villeau,Villeau,COMD,28412,0,VILLEAU,Villeau,Villeau 32,2019-01-01,COM,29129,0,LOCMARIA BERRIEN,Locmaria-Berrien,Locmaria-Berrien,COMD,29129,0,LOCMARIA BERRIEN,Locmaria-Berrien,Locmaria-Berrien +32,2019-01-01,COM,29129,0,LOCMARIA BERRIEN,Locmaria-Berrien,Locmaria-Berrien,COM,29227,0,POULLAOUEN,Poullaouen,Poullaouen 32,2019-01-01,COM,29199,0,PLOUIGNEAU,Plouigneau,Plouigneau,COM,29199,0,PLOUIGNEAU,Plouigneau,Plouigneau 32,2019-01-01,COM,29199,0,PLOUIGNEAU,Plouigneau,Plouigneau,COMD,29199,0,PLOUIGNEAU,Plouigneau,Plouigneau -32,2019-01-01,COM,29219,2,PONTHOU,Ponthou,Le Ponthou,COMD,29219,2,PONTHOU,Ponthou,Le Ponthou 32,2019-01-01,COM,29219,2,PONTHOU,Ponthou,Le Ponthou,COM,29199,0,PLOUIGNEAU,Plouigneau,Plouigneau -32,2019-01-01,COM,29227,0,POULLAOUEN,Poullaouen,Poullaouen,COMD,29227,0,POULLAOUEN,Poullaouen,Poullaouen +32,2019-01-01,COM,29219,2,PONTHOU,Ponthou,Le Ponthou,COMD,29219,2,PONTHOU,Ponthou,Le Ponthou 32,2019-01-01,COM,29227,0,POULLAOUEN,Poullaouen,Poullaouen,COM,29227,0,POULLAOUEN,Poullaouen,Poullaouen -32,2019-01-01,COM,30052,0,BREAU ET SALAGOSSE,Bréau-et-Salagosse,Bréau-et-Salagosse,COMD,30052,0,BREAU ET SALAGOSSE,Bréau-et-Salagosse,Bréau-et-Salagosse +32,2019-01-01,COM,29227,0,POULLAOUEN,Poullaouen,Poullaouen,COMD,29227,0,POULLAOUEN,Poullaouen,Poullaouen 32,2019-01-01,COM,30052,0,BREAU ET SALAGOSSE,Bréau-et-Salagosse,Bréau-et-Salagosse,COM,30052,0,BREAU MARS,Bréau-Mars,Bréau-Mars -32,2019-01-01,COM,30157,0,MARS,Mars,Mars,COMD,30157,0,MARS,Mars,Mars +32,2019-01-01,COM,30052,0,BREAU ET SALAGOSSE,Bréau-et-Salagosse,Bréau-et-Salagosse,COMD,30052,0,BREAU ET SALAGOSSE,Bréau-et-Salagosse,Bréau-et-Salagosse 32,2019-01-01,COM,30157,0,MARS,Mars,Mars,COM,30052,0,BREAU MARS,Bréau-Mars,Bréau-Mars +32,2019-01-01,COM,30157,0,MARS,Mars,Mars,COMD,30157,0,MARS,Mars,Mars 32,2019-01-01,COM,30190,0,NOTRE DAME DE LA ROUVIERE,Notre-Dame-de-la-Rouvière,Notre-Dame-de-la-Rouvière,COM,30339,0,VAL D AIGOUAL,Val-d'Aigoual,Val-d'Aigoual 32,2019-01-01,COM,30339,0,VALLERAUGUE,Valleraugue,Valleraugue,COM,30339,0,VAL D AIGOUAL,Val-d'Aigoual,Val-d'Aigoual -32,2019-01-01,COM,31298,0,LEZ,Lez,Lez,COM,31471,0,SAINT BEAT LEZ,Saint-Béat-Lez,Saint-Béat-Lez 32,2019-01-01,COM,31298,0,LEZ,Lez,Lez,COMD,31298,0,LEZ,Lez,Lez +32,2019-01-01,COM,31298,0,LEZ,Lez,Lez,COM,31471,0,SAINT BEAT LEZ,Saint-Béat-Lez,Saint-Béat-Lez 32,2019-01-01,COM,31471,0,SAINT BEAT,Saint-Béat,Saint-Béat,COM,31471,0,SAINT BEAT LEZ,Saint-Béat-Lez,Saint-Béat-Lez -32,2019-01-01,COM,32074,0,CANNET,Cannet,Cannet,COM,32344,0,RISCLE,Riscle,Riscle 32,2019-01-01,COM,32074,0,CANNET,Cannet,Cannet,COMD,32074,0,CANNET,Cannet,Cannet +32,2019-01-01,COM,32074,0,CANNET,Cannet,Cannet,COM,32344,0,RISCLE,Riscle,Riscle 32,2019-01-01,COM,32344,0,RISCLE,Riscle,Riscle,COMD,32344,0,RISCLE,Riscle,Riscle 32,2019-01-01,COM,32344,0,RISCLE,Riscle,Riscle,COM,32344,0,RISCLE,Riscle,Riscle 32,2019-01-01,COM,33008,1,ARBIS,Arbis,Arbis,COM,33008,0,PORTE DE BENAUGE,Porte-de-Benauge,Porte-de-Benauge -32,2019-01-01,COM,33055,0,BLAIGNAN,Blaignan,Blaignan,COM,33055,0,BLAIGNAN PRIGNAC,Blaignan-Prignac,Blaignan-Prignac 32,2019-01-01,COM,33055,0,BLAIGNAN,Blaignan,Blaignan,COMD,33055,0,BLAIGNAN,Blaignan,Blaignan +32,2019-01-01,COM,33055,0,BLAIGNAN,Blaignan,Blaignan,COM,33055,0,BLAIGNAN PRIGNAC,Blaignan-Prignac,Blaignan-Prignac 32,2019-01-01,COM,33092,0,CANTOIS,Cantois,Cantois,COM,33008,0,PORTE DE BENAUGE,Porte-de-Benauge,Porte-de-Benauge 32,2019-01-01,COM,33267,0,MARCILLAC,Marcillac,Marcillac,COMD,33267,0,MARCILLAC,Marcillac,Marcillac 32,2019-01-01,COM,33267,0,MARCILLAC,Marcillac,Marcillac,COM,33380,0,VAL DE LIVENNE,Val-de-Livenne,Val-de-Livenne 32,2019-01-01,COM,33338,0,PRIGNAC EN MEDOC,Prignac-en-Médoc,Prignac-en-Médoc,COM,33055,0,BLAIGNAN PRIGNAC,Blaignan-Prignac,Blaignan-Prignac -32,2019-01-01,COM,33380,0,SAINT CAPRAIS DE BLAYE,Saint-Caprais-de-Blaye,Saint-Caprais-de-Blaye,COMD,33380,0,SAINT CAPRAIS DE BLAYE,Saint-Caprais-de-Blaye,Saint-Caprais-de-Blaye 32,2019-01-01,COM,33380,0,SAINT CAPRAIS DE BLAYE,Saint-Caprais-de-Blaye,Saint-Caprais-de-Blaye,COM,33380,0,VAL DE LIVENNE,Val-de-Livenne,Val-de-Livenne +32,2019-01-01,COM,33380,0,SAINT CAPRAIS DE BLAYE,Saint-Caprais-de-Blaye,Saint-Caprais-de-Blaye,COMD,33380,0,SAINT CAPRAIS DE BLAYE,Saint-Caprais-de-Blaye,Saint-Caprais-de-Blaye 32,2019-01-01,COM,34246,0,SAINT CHRISTOL,Saint-Christol,Saint-Christol,COMD,34246,0,SAINT CHRISTOL,Saint-Christol,Saint-Christol 32,2019-01-01,COM,34246,0,SAINT CHRISTOL,Saint-Christol,Saint-Christol,COM,34246,1,ENTRE VIGNES,Entre-Vignes,Entre-Vignes 32,2019-01-01,COM,34330,0,VERARGUES,Vérargues,Vérargues,COM,34246,1,ENTRE VIGNES,Entre-Vignes,Entre-Vignes 32,2019-01-01,COM,34330,0,VERARGUES,Vérargues,Vérargues,COMD,34330,0,VERARGUES,Vérargues,Vérargues 32,2019-01-01,COM,35004,1,ANTRAIN,Antrain,Antrain,COM,35004,0,VAL COUESNON,Val-Couesnon,Val-Couesnon 32,2019-01-01,COM,35004,1,ANTRAIN,Antrain,Antrain,COMD,35004,1,ANTRAIN,Antrain,Antrain -32,2019-01-01,COM,35011,0,BAILLE,Baillé,Baillé,COM,35292,0,SAINT MARC LE BLANC,Saint-Marc-le-Blanc,Saint-Marc-le-Blanc 32,2019-01-01,COM,35011,0,BAILLE,Baillé,Baillé,COMD,35011,0,BAILLE,Baillé,Baillé -32,2019-01-01,COM,35053,0,CHANCE,Chancé,Chancé,COM,35220,0,PIRE CHANCE,Piré-Chancé,Piré-Chancé +32,2019-01-01,COM,35011,0,BAILLE,Baillé,Baillé,COM,35292,0,SAINT MARC LE BLANC,Saint-Marc-le-Blanc,Saint-Marc-le-Blanc 32,2019-01-01,COM,35053,0,CHANCE,Chancé,Chancé,COMD,35053,0,CHANCE,Chancé,Chancé +32,2019-01-01,COM,35053,0,CHANCE,Chancé,Chancé,COM,35220,0,PIRE CHANCE,Piré-Chancé,Piré-Chancé 32,2019-01-01,COM,35100,0,DOMPIERRE DU CHEMIN,Dompierre-du-Chemin,Dompierre-du-Chemin,COMD,35100,0,DOMPIERRE DU CHEMIN,Dompierre-du-Chemin,Dompierre-du-Chemin 32,2019-01-01,COM,35100,0,DOMPIERRE DU CHEMIN,Dompierre-du-Chemin,Dompierre-du-Chemin,COM,35163,0,LUITRE DOMPIERRE,Luitré-Dompierre,Luitré-Dompierre 32,2019-01-01,COM,35113,3,FONTENELLE,Fontenelle,La Fontenelle,COM,35004,0,VAL COUESNON,Val-Couesnon,Val-Couesnon 32,2019-01-01,COM,35113,3,FONTENELLE,Fontenelle,La Fontenelle,COMD,35113,3,FONTENELLE,Fontenelle,La Fontenelle -32,2019-01-01,COM,35147,0,LANHELIN,Lanhélin,Lanhélin,COM,35308,0,MESNIL ROC H,Mesnil-Roc'h,Mesnil-Roc'h 32,2019-01-01,COM,35147,0,LANHELIN,Lanhélin,Lanhélin,COMD,35147,0,LANHELIN,Lanhélin,Lanhélin -32,2019-01-01,COM,35163,0,LUITRE,Luitré,Luitré,COM,35163,0,LUITRE DOMPIERRE,Luitré-Dompierre,Luitré-Dompierre +32,2019-01-01,COM,35147,0,LANHELIN,Lanhélin,Lanhélin,COM,35308,0,MESNIL ROC H,Mesnil-Roc'h,Mesnil-Roc'h 32,2019-01-01,COM,35163,0,LUITRE,Luitré,Luitré,COMD,35163,0,LUITRE,Luitré,Luitré +32,2019-01-01,COM,35163,0,LUITRE,Luitré,Luitré,COM,35163,0,LUITRE DOMPIERRE,Luitré-Dompierre,Luitré-Dompierre 32,2019-01-01,COM,35184,0,MONTAUBAN DE BRETAGNE,Montauban-de-Bretagne,Montauban-de-Bretagne,COM,35184,0,MONTAUBAN DE BRETAGNE,Montauban-de-Bretagne,Montauban-de-Bretagne 32,2019-01-01,COM,35184,0,MONTAUBAN DE BRETAGNE,Montauban-de-Bretagne,Montauban-de-Bretagne,COMD,35184,0,MONTAUBAN DE BRETAGNE,Montauban-de-Bretagne,Montauban-de-Bretagne 32,2019-01-01,COM,35220,0,PIRE SUR SEICHE,Piré-sur-Seiche,Piré-sur-Seiche,COMD,35220,0,PIRE SUR SEICHE,Piré-sur-Seiche,Piré-sur-Seiche 32,2019-01-01,COM,35220,0,PIRE SUR SEICHE,Piré-sur-Seiche,Piré-sur-Seiche,COM,35220,0,PIRE CHANCE,Piré-Chancé,Piré-Chancé 32,2019-01-01,COM,35269,0,SAINT GEORGES DE CHESNE,Saint-Georges-de-Chesné,Saint-Georges-de-Chesné,COMD,35269,0,SAINT GEORGES DE CHESNE,Saint-Georges-de-Chesné,Saint-Georges-de-Chesné 32,2019-01-01,COM,35269,0,SAINT GEORGES DE CHESNE,Saint-Georges-de-Chesné,Saint-Georges-de-Chesné,COM,35282,0,RIVES DU COUESNON,Rives-du-Couesnon,Rives-du-Couesnon -32,2019-01-01,COM,35282,0,SAINT JEAN SUR COUESNON,Saint-Jean-sur-Couesnon,Saint-Jean-sur-Couesnon,COM,35282,0,RIVES DU COUESNON,Rives-du-Couesnon,Rives-du-Couesnon 32,2019-01-01,COM,35282,0,SAINT JEAN SUR COUESNON,Saint-Jean-sur-Couesnon,Saint-Jean-sur-Couesnon,COMD,35282,0,SAINT JEAN SUR COUESNON,Saint-Jean-sur-Couesnon,Saint-Jean-sur-Couesnon +32,2019-01-01,COM,35282,0,SAINT JEAN SUR COUESNON,Saint-Jean-sur-Couesnon,Saint-Jean-sur-Couesnon,COM,35282,0,RIVES DU COUESNON,Rives-du-Couesnon,Rives-du-Couesnon 32,2019-01-01,COM,35292,0,SAINT MARC LE BLANC,Saint-Marc-le-Blanc,Saint-Marc-le-Blanc,COM,35292,0,SAINT MARC LE BLANC,Saint-Marc-le-Blanc,Saint-Marc-le-Blanc 32,2019-01-01,COM,35292,0,SAINT MARC LE BLANC,Saint-Marc-le-Blanc,Saint-Marc-le-Blanc,COMD,35292,0,SAINT MARC LE BLANC,Saint-Marc-le-Blanc,Saint-Marc-le-Blanc 32,2019-01-01,COM,35293,0,SAINT MARC SUR COUESNON,Saint-Marc-sur-Couesnon,Saint-Marc-sur-Couesnon,COM,35282,0,RIVES DU COUESNON,Rives-du-Couesnon,Rives-du-Couesnon 32,2019-01-01,COM,35293,0,SAINT MARC SUR COUESNON,Saint-Marc-sur-Couesnon,Saint-Marc-sur-Couesnon,COMD,35293,0,SAINT MARC SUR COUESNON,Saint-Marc-sur-Couesnon,Saint-Marc-sur-Couesnon -32,2019-01-01,COM,35301,0,SAINT M HERVON,Saint-M'Hervon,Saint-M'Hervon,COMD,35301,0,SAINT M HERVON,Saint-M'Hervon,Saint-M'Hervon 32,2019-01-01,COM,35301,0,SAINT M HERVON,Saint-M'Hervon,Saint-M'Hervon,COM,35184,0,MONTAUBAN DE BRETAGNE,Montauban-de-Bretagne,Montauban-de-Bretagne -32,2019-01-01,COM,35303,0,SAINT OUEN LA ROUERIE,Saint-Ouen-la-Rouërie,Saint-Ouen-la-Rouërie,COMD,35303,0,SAINT OUEN LA ROUERIE,Saint-Ouen-la-Rouërie,Saint-Ouen-la-Rouërie +32,2019-01-01,COM,35301,0,SAINT M HERVON,Saint-M'Hervon,Saint-M'Hervon,COMD,35301,0,SAINT M HERVON,Saint-M'Hervon,Saint-M'Hervon 32,2019-01-01,COM,35303,0,SAINT OUEN LA ROUERIE,Saint-Ouen-la-Rouërie,Saint-Ouen-la-Rouërie,COM,35004,0,VAL COUESNON,Val-Couesnon,Val-Couesnon -32,2019-01-01,COM,35308,0,SAINT PIERRE DE PLESGUEN,Saint-Pierre-de-Plesguen,Saint-Pierre-de-Plesguen,COM,35308,0,MESNIL ROC H,Mesnil-Roc'h,Mesnil-Roc'h +32,2019-01-01,COM,35303,0,SAINT OUEN LA ROUERIE,Saint-Ouen-la-Rouërie,Saint-Ouen-la-Rouërie,COMD,35303,0,SAINT OUEN LA ROUERIE,Saint-Ouen-la-Rouërie,Saint-Ouen-la-Rouërie 32,2019-01-01,COM,35308,0,SAINT PIERRE DE PLESGUEN,Saint-Pierre-de-Plesguen,Saint-Pierre-de-Plesguen,COMD,35308,0,SAINT PIERRE DE PLESGUEN,Saint-Pierre-de-Plesguen,Saint-Pierre-de-Plesguen -32,2019-01-01,COM,35341,0,TREMBLAY,Tremblay,Tremblay,COMD,35341,0,TREMBLAY,Tremblay,Tremblay +32,2019-01-01,COM,35308,0,SAINT PIERRE DE PLESGUEN,Saint-Pierre-de-Plesguen,Saint-Pierre-de-Plesguen,COM,35308,0,MESNIL ROC H,Mesnil-Roc'h,Mesnil-Roc'h 32,2019-01-01,COM,35341,0,TREMBLAY,Tremblay,Tremblay,COM,35004,0,VAL COUESNON,Val-Couesnon,Val-Couesnon +32,2019-01-01,COM,35341,0,TREMBLAY,Tremblay,Tremblay,COMD,35341,0,TREMBLAY,Tremblay,Tremblay 32,2019-01-01,COM,35344,0,TRESSE,Tressé,Tressé,COM,35308,0,MESNIL ROC H,Mesnil-Roc'h,Mesnil-Roc'h 32,2019-01-01,COM,35344,0,TRESSE,Tressé,Tressé,COMD,35344,0,TRESSE,Tressé,Tressé 32,2019-01-01,COM,35348,0,VENDEL,Vendel,Vendel,COM,35282,0,RIVES DU COUESNON,Rives-du-Couesnon,Rives-du-Couesnon 32,2019-01-01,COM,35348,0,VENDEL,Vendel,Vendel,COMD,35348,0,VENDEL,Vendel,Vendel 32,2019-01-01,COM,36072,0,FAVEROLLES EN BERRY,Faverolles-en-Berry,Faverolles-en-Berry,COMD,36072,0,FAVEROLLES EN BERRY,Faverolles-en-Berry,Faverolles-en-Berry 32,2019-01-01,COM,36072,0,FAVEROLLES EN BERRY,Faverolles-en-Berry,Faverolles-en-Berry,COM,36244,0,VILLENTROIS FAVEROLLES EN BERRY,Villentrois-Faverolles-en-Berry,Villentrois-Faverolles-en-Berry -32,2019-01-01,COMD,36093,0,LEVROUX,Levroux,Levroux,COMD,36093,0,LEVROUX,Levroux,Levroux -32,2019-01-01,COMD,36093,0,LEVROUX,Levroux,Levroux,COM,36093,0,LEVROUX,Levroux,Levroux 32,2019-01-01,COM,36093,0,LEVROUX,Levroux,Levroux,COM,36093,0,LEVROUX,Levroux,Levroux -32,2019-01-01,COMD,36201,0,SAINT MARTIN DE LAMPS,Saint-Martin-de-Lamps,Saint-Martin-de-Lamps,COMD,36201,0,SAINT MARTIN DE LAMPS,Saint-Martin-de-Lamps,Saint-Martin-de-Lamps -32,2019-01-01,COMD,36201,0,SAINT MARTIN DE LAMPS,Saint-Martin-de-Lamps,Saint-Martin-de-Lamps,COM,36093,0,LEVROUX,Levroux,Levroux 32,2019-01-01,COM,36206,0,SAINT PIERRE DE LAMPS,Saint-Pierre-de-Lamps,Saint-Pierre-de-Lamps,COM,36093,0,LEVROUX,Levroux,Levroux 32,2019-01-01,COM,36206,0,SAINT PIERRE DE LAMPS,Saint-Pierre-de-Lamps,Saint-Pierre-de-Lamps,COMD,36206,0,SAINT PIERRE DE LAMPS,Saint-Pierre-de-Lamps,Saint-Pierre-de-Lamps -32,2019-01-01,COM,36244,0,VILLENTROIS,Villentrois,Villentrois,COM,36244,0,VILLENTROIS FAVEROLLES EN BERRY,Villentrois-Faverolles-en-Berry,Villentrois-Faverolles-en-Berry 32,2019-01-01,COM,36244,0,VILLENTROIS,Villentrois,Villentrois,COMD,36244,0,VILLENTROIS,Villentrois,Villentrois -32,2019-01-01,COM,38016,1,ARZAY,Arzay,Arzay,COM,38479,0,PORTE DES BONNEVAUX,Porte-des-Bonnevaux,Porte-des-Bonnevaux +32,2019-01-01,COM,36244,0,VILLENTROIS,Villentrois,Villentrois,COM,36244,0,VILLENTROIS FAVEROLLES EN BERRY,Villentrois-Faverolles-en-Berry,Villentrois-Faverolles-en-Berry 32,2019-01-01,COM,38016,1,ARZAY,Arzay,Arzay,COMD,38016,1,ARZAY,Arzay,Arzay +32,2019-01-01,COM,38016,1,ARZAY,Arzay,Arzay,COM,38479,0,PORTE DES BONNEVAUX,Porte-des-Bonnevaux,Porte-des-Bonnevaux 32,2019-01-01,COM,38025,0,BALBINS,Balbins,Balbins,COMD,38025,0,BALBINS,Balbins,Balbins 32,2019-01-01,COM,38025,0,BALBINS,Balbins,Balbins,COM,38284,1,ORNACIEUX BALBINS,Ornacieux-Balbins,Ornacieux-Balbins 32,2019-01-01,COM,38073,0,CHANTELOUVE,Chantelouve,Chantelouve,COM,38073,0,CHANTEPERIER,Chantepérier,Chantepérier 32,2019-01-01,COM,38073,0,CHANTELOUVE,Chantelouve,Chantelouve,COMD,38073,0,CHANTELOUVE,Chantelouve,Chantelouve -32,2019-01-01,COM,38121,0,COMMELLE,Commelle,Commelle,COM,38479,0,PORTE DES BONNEVAUX,Porte-des-Bonnevaux,Porte-des-Bonnevaux 32,2019-01-01,COM,38121,0,COMMELLE,Commelle,Commelle,COMD,38121,0,COMMELLE,Commelle,Commelle +32,2019-01-01,COM,38121,0,COMMELLE,Commelle,Commelle,COM,38479,0,PORTE DES BONNEVAUX,Porte-des-Bonnevaux,Porte-des-Bonnevaux 32,2019-01-01,COM,38163,3,FERRIERE,Ferrière,La Ferrière,COM,38163,2,HAUT BREDA,Haut-Bréda,Le Haut-Bréda 32,2019-01-01,COM,38163,3,FERRIERE,Ferrière,La Ferrière,COMD,38163,3,FERRIERE,Ferrière,La Ferrière 32,2019-01-01,COM,38274,0,NANTOIN,Nantoin,Nantoin,COMD,38274,0,NANTOIN,Nantoin,Nantoin 32,2019-01-01,COM,38274,0,NANTOIN,Nantoin,Nantoin,COM,38479,0,PORTE DES BONNEVAUX,Porte-des-Bonnevaux,Porte-des-Bonnevaux -32,2019-01-01,COM,38284,1,ORNACIEUX,Ornacieux,Ornacieux,COMD,38284,1,ORNACIEUX,Ornacieux,Ornacieux 32,2019-01-01,COM,38284,1,ORNACIEUX,Ornacieux,Ornacieux,COM,38284,1,ORNACIEUX BALBINS,Ornacieux-Balbins,Ornacieux-Balbins +32,2019-01-01,COM,38284,1,ORNACIEUX,Ornacieux,Ornacieux,COMD,38284,1,ORNACIEUX,Ornacieux,Ornacieux 32,2019-01-01,COM,38293,0,PANISSAGE,Panissage,Panissage,COMD,38293,0,PANISSAGE,Panissage,Panissage 32,2019-01-01,COM,38293,0,PANISSAGE,Panissage,Panissage,COM,38560,0,VAL DE VIRIEU,Val-de-Virieu,Val-de-Virieu -32,2019-01-01,COM,38302,2,PERIER,Périer,Le Périer,COMD,38302,2,PERIER,Périer,Le Périer 32,2019-01-01,COM,38302,2,PERIER,Périer,Le Périer,COM,38073,0,CHANTEPERIER,Chantepérier,Chantepérier +32,2019-01-01,COM,38302,2,PERIER,Périer,Le Périer,COMD,38302,2,PERIER,Périer,Le Périer 32,2019-01-01,COM,38306,0,PINSOT,Pinsot,Pinsot,COM,38163,2,HAUT BREDA,Haut-Bréda,Le Haut-Bréda 32,2019-01-01,COM,38306,0,PINSOT,Pinsot,Pinsot,COMD,38306,0,PINSOT,Pinsot,Pinsot 32,2019-01-01,COM,38367,0,SAINT BERNARD,Saint-Bernard,Saint-Bernard,COMD,38367,0,SAINT BERNARD,Saint-Bernard,Saint-Bernard @@ -1032,261 +966,199 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2019-01-01,COM,38395,0,SAINT HILAIRE,Saint-Hilaire,Saint-Hilaire,COMD,38395,0,SAINT HILAIRE,Saint-Hilaire,Saint-Hilaire 32,2019-01-01,COM,38435,0,SAINT PANCRASSE,Saint-Pancrasse,Saint-Pancrasse,COM,38395,0,PLATEAU DES PETITES ROCHES,Plateau-des-Petites-Roches,Plateau-des-Petites-Roches 32,2019-01-01,COM,38435,0,SAINT PANCRASSE,Saint-Pancrasse,Saint-Pancrasse,COMD,38435,0,SAINT PANCRASSE,Saint-Pancrasse,Saint-Pancrasse -32,2019-01-01,COM,38479,0,SEMONS,Semons,Semons,COM,38479,0,PORTE DES BONNEVAUX,Porte-des-Bonnevaux,Porte-des-Bonnevaux 32,2019-01-01,COM,38479,0,SEMONS,Semons,Semons,COMD,38479,0,SEMONS,Semons,Semons +32,2019-01-01,COM,38479,0,SEMONS,Semons,Semons,COM,38479,0,PORTE DES BONNEVAUX,Porte-des-Bonnevaux,Porte-des-Bonnevaux 32,2019-01-01,COM,38560,0,VIRIEU,Virieu,Virieu,COMD,38560,0,VIRIEU,Virieu,Virieu 32,2019-01-01,COM,38560,0,VIRIEU,Virieu,Virieu,COM,38560,0,VAL DE VIRIEU,Val-de-Virieu,Val-de-Virieu -32,2019-01-01,COMD,39023,5,AUBEPIN,Aubépin,L'Aubépin,COMD,39023,5,AUBEPIN,Aubépin,L'Aubépin -32,2019-01-01,COMD,39023,5,AUBEPIN,Aubépin,L'Aubépin,COM,39378,4,TROIS CHATEAUX,Trois-Châteaux,Les Trois-Châteaux -32,2019-01-01,COM,39043,0,BEAUFORT,Beaufort,Beaufort,COMD,39043,0,BEAUFORT,Beaufort,Beaufort 32,2019-01-01,COM,39043,0,BEAUFORT,Beaufort,Beaufort,COM,39043,0,BEAUFORT ORBAGNA,Beaufort-Orbagna,Beaufort-Orbagna +32,2019-01-01,COM,39043,0,BEAUFORT,Beaufort,Beaufort,COMD,39043,0,BEAUFORT,Beaufort,Beaufort 32,2019-01-01,COM,39075,0,BRERY,Bréry,Bréry,COMD,39075,0,BRERY,Bréry,Bréry 32,2019-01-01,COM,39075,0,BRERY,Bréry,Bréry,COM,39199,0,DOMBLANS,Domblans,Domblans 32,2019-01-01,COM,39089,0,CEZIA,Cézia,Cézia,COM,39137,0,SAINT HYMETIERE SUR VALOUSE,Saint-Hymetière-sur-Valouse,Saint-Hymetière-sur-Valouse 32,2019-01-01,COM,39113,0,CHASSAL,Chassal,Chassal,COMD,39113,0,CHASSAL,Chassal,Chassal 32,2019-01-01,COM,39113,0,CHASSAL,Chassal,Chassal,COM,39339,0,CHASSAL MOLINGES,Chassal-Molinges,Chassal-Molinges -32,2019-01-01,COM,39115,0,CHATEAU DES PRES,Château-des-Prés,Château-des-Prés,COM,39258,0,GRANDE RIVIERE CHATEAU,Grande-Rivière Château,Grande-Rivière Château 32,2019-01-01,COM,39115,0,CHATEAU DES PRES,Château-des-Prés,Château-des-Prés,COMD,39115,0,CHATEAU DES PRES,Château-des-Prés,Château-des-Prés +32,2019-01-01,COM,39115,0,CHATEAU DES PRES,Château-des-Prés,Château-des-Prés,COM,39258,0,GRANDE RIVIERE CHATEAU,Grande-Rivière Château,Grande-Rivière Château 32,2019-01-01,COM,39130,0,NANCHEZ,Nanchez,Nanchez,COM,39130,0,NANCHEZ,Nanchez,Nanchez -32,2019-01-01,COMD,39135,0,CHAZELLES,Chazelles,Chazelles,COMD,39135,0,CHAZELLES,Chazelles,Chazelles -32,2019-01-01,COMD,39135,0,CHAZELLES,Chazelles,Chazelles,COM,39378,4,TROIS CHATEAUX,Trois-Châteaux,Les Trois-Châteaux 32,2019-01-01,COM,39137,0,CHEMILLA,Chemilla,Chemilla,COM,39137,0,SAINT HYMETIERE SUR VALOUSE,Saint-Hymetière-sur-Valouse,Saint-Hymetière-sur-Valouse 32,2019-01-01,COM,39190,0,DAMPIERRE,Dampierre,Dampierre,COMD,39190,0,DAMPIERRE,Dampierre,Dampierre 32,2019-01-01,COM,39190,0,DAMPIERRE,Dampierre,Dampierre,COM,39190,0,DAMPIERRE,Dampierre,Dampierre 32,2019-01-01,COM,39199,0,DOMBLANS,Domblans,Domblans,COM,39199,0,DOMBLANS,Domblans,Domblans -32,2019-01-01,COM,39258,0,GRANDE RIVIERE,Grande-Rivière,Grande-Rivière,COMD,39258,0,GRANDE RIVIERE,Grande-Rivière,Grande-Rivière 32,2019-01-01,COM,39258,0,GRANDE RIVIERE,Grande-Rivière,Grande-Rivière,COM,39258,0,GRANDE RIVIERE CHATEAU,Grande-Rivière Château,Grande-Rivière Château +32,2019-01-01,COM,39258,0,GRANDE RIVIERE,Grande-Rivière,Grande-Rivière,COMD,39258,0,GRANDE RIVIERE,Grande-Rivière,Grande-Rivière 32,2019-01-01,COM,39286,0,LAVANS LES SAINT CLAUDE,Lavans-lès-Saint-Claude,Lavans-lès-Saint-Claude,COMD,39286,0,LAVANS LES SAINT CLAUDE,Lavans-lès-Saint-Claude,Lavans-lès-Saint-Claude 32,2019-01-01,COM,39286,0,LAVANS LES SAINT CLAUDE,Lavans-lès-Saint-Claude,Lavans-lès-Saint-Claude,COM,39286,0,LAVANS LES SAINT CLAUDE,Lavans-lès-Saint-Claude,Lavans-lès-Saint-Claude 32,2019-01-01,COM,39287,0,LAVANS SUR VALOUSE,Lavans-sur-Valouse,Lavans-sur-Valouse,COM,39137,0,SAINT HYMETIERE SUR VALOUSE,Saint-Hymetière-sur-Valouse,Saint-Hymetière-sur-Valouse -32,2019-01-01,COM,39339,0,MOLINGES,Molinges,Molinges,COM,39339,0,CHASSAL MOLINGES,Chassal-Molinges,Chassal-Molinges 32,2019-01-01,COM,39339,0,MOLINGES,Molinges,Molinges,COMD,39339,0,MOLINGES,Molinges,Molinges +32,2019-01-01,COM,39339,0,MOLINGES,Molinges,Molinges,COM,39339,0,CHASSAL MOLINGES,Chassal-Molinges,Chassal-Molinges 32,2019-01-01,COM,39378,4,TROIS CHATEAUX,Trois Châteaux,Les Trois Châteaux,COM,39378,4,TROIS CHATEAUX,Trois-Châteaux,Les Trois-Châteaux -32,2019-01-01,COMD,39378,0,NANC LES SAINT AMOUR,Nanc-lès-Saint-Amour,Nanc-lès-Saint-Amour,COMD,39378,0,NANC LES SAINT AMOUR,Nanc-lès-Saint-Amour,Nanc-lès-Saint-Amour -32,2019-01-01,COMD,39378,0,NANC LES SAINT AMOUR,Nanc-lès-Saint-Amour,Nanc-lès-Saint-Amour,COM,39378,4,TROIS CHATEAUX,Trois-Châteaux,Les Trois-Châteaux -32,2019-01-01,COM,39395,1,ORBAGNA,Orbagna,Orbagna,COMD,39395,1,ORBAGNA,Orbagna,Orbagna 32,2019-01-01,COM,39395,1,ORBAGNA,Orbagna,Orbagna,COM,39043,0,BEAUFORT ORBAGNA,Beaufort-Orbagna,Beaufort-Orbagna -32,2019-01-01,COM,39414,2,PETIT MERCEY,Petit-Mercey,Le Petit-Mercey,COMD,39414,2,PETIT MERCEY,Petit-Mercey,Le Petit-Mercey +32,2019-01-01,COM,39395,1,ORBAGNA,Orbagna,Orbagna,COMD,39395,1,ORBAGNA,Orbagna,Orbagna 32,2019-01-01,COM,39414,2,PETIT MERCEY,Petit-Mercey,Le Petit-Mercey,COM,39190,0,DAMPIERRE,Dampierre,Dampierre +32,2019-01-01,COM,39414,2,PETIT MERCEY,Petit-Mercey,Le Petit-Mercey,COMD,39414,2,PETIT MERCEY,Petit-Mercey,Le Petit-Mercey 32,2019-01-01,COM,39417,4,PIARDS,Piards,Les Piards,COM,39130,0,NANCHEZ,Nanchez,Nanchez 32,2019-01-01,COM,39417,4,PIARDS,Piards,Les Piards,COMD,39417,4,PIARDS,Piards,Les Piards -32,2019-01-01,COMD,39438,0,PONTHOUX,Ponthoux,Ponthoux,COM,39286,0,LAVANS LES SAINT CLAUDE,Lavans-lès-Saint-Claude,Lavans-lès-Saint-Claude -32,2019-01-01,COMD,39438,0,PONTHOUX,Ponthoux,Ponthoux,COMD,39438,0,PONTHOUX,Ponthoux,Ponthoux 32,2019-01-01,COM,39440,0,PRATZ,Pratz,Pratz,COM,39286,0,LAVANS LES SAINT CLAUDE,Lavans-lès-Saint-Claude,Lavans-lès-Saint-Claude 32,2019-01-01,COM,39440,0,PRATZ,Pratz,Pratz,COMD,39440,0,PRATZ,Pratz,Pratz -32,2019-01-01,COMD,39442,0,PRENOVEL,Prénovel,Prénovel,COMD,39442,0,PRENOVEL,Prénovel,Prénovel -32,2019-01-01,COMD,39442,0,PRENOVEL,Prénovel,Prénovel,COM,39130,0,NANCHEZ,Nanchez,Nanchez 32,2019-01-01,COM,39483,0,SAINT HYMETIERE,Saint-Hymetière,Saint-Hymetière,COM,39137,0,SAINT HYMETIERE SUR VALOUSE,Saint-Hymetière-sur-Valouse,Saint-Hymetière-sur-Valouse -32,2019-01-01,COM,39484,0,SAINT JEAN D ETREUX,Saint-Jean-d'Étreux,Saint-Jean-d'Étreux,COMD,39484,0,SAINT JEAN D ETREUX,Saint-Jean-d'Étreux,Saint-Jean-d'Étreux 32,2019-01-01,COM,39484,0,SAINT JEAN D ETREUX,Saint-Jean-d'Étreux,Saint-Jean-d'Étreux,COM,39378,4,TROIS CHATEAUX,Trois-Châteaux,Les Trois-Châteaux +32,2019-01-01,COM,39484,0,SAINT JEAN D ETREUX,Saint-Jean-d'Étreux,Saint-Jean-d'Étreux,COMD,39484,0,SAINT JEAN D ETREUX,Saint-Jean-d'Étreux,Saint-Jean-d'Étreux 32,2019-01-01,COM,39562,0,VILLARD SUR BIENNE,Villard-sur-Bienne,Villard-sur-Bienne,COM,39130,0,NANCHEZ,Nanchez,Nanchez 32,2019-01-01,COM,39562,0,VILLARD SUR BIENNE,Villard-sur-Bienne,Villard-sur-Bienne,COMD,39562,0,VILLARD SUR BIENNE,Villard-sur-Bienne,Villard-sur-Bienne 32,2019-01-01,COM,40009,1,ARJUZANX,Arjuzanx,Arjuzanx,COMD,40009,1,ARJUZANX,Arjuzanx,Arjuzanx 32,2019-01-01,COM,40009,1,ARJUZANX,Arjuzanx,Arjuzanx,COM,40197,0,MORCENX LA NOUVELLE,Morcenx-la-Nouvelle,Morcenx-la-Nouvelle -32,2019-01-01,COM,40107,0,GARROSSE,Garrosse,Garrosse,COM,40197,0,MORCENX LA NOUVELLE,Morcenx-la-Nouvelle,Morcenx-la-Nouvelle 32,2019-01-01,COM,40107,0,GARROSSE,Garrosse,Garrosse,COMD,40107,0,GARROSSE,Garrosse,Garrosse +32,2019-01-01,COM,40107,0,GARROSSE,Garrosse,Garrosse,COM,40197,0,MORCENX LA NOUVELLE,Morcenx-la-Nouvelle,Morcenx-la-Nouvelle 32,2019-01-01,COM,40197,0,MORCENX,Morcenx,Morcenx,COM,40197,0,MORCENX LA NOUVELLE,Morcenx-la-Nouvelle,Morcenx-la-Nouvelle -32,2019-01-01,COM,40302,0,SINDERES,Sindères,Sindères,COMD,40302,0,SINDERES,Sindères,Sindères 32,2019-01-01,COM,40302,0,SINDERES,Sindères,Sindères,COM,40197,0,MORCENX LA NOUVELLE,Morcenx-la-Nouvelle,Morcenx-la-Nouvelle -32,2019-01-01,COM,41059,0,CONTRES,Contres,Contres,COM,41059,2,CONTROIS EN SOLOGNE,Controis-en-Sologne,Le Controis-en-Sologne +32,2019-01-01,COM,40302,0,SINDERES,Sindères,Sindères,COMD,40302,0,SINDERES,Sindères,Sindères 32,2019-01-01,COM,41059,0,CONTRES,Contres,Contres,COMD,41059,0,CONTRES,Contres,Contres -32,2019-01-01,COM,41070,0,COUTURE SUR LOIR,Couture-sur-Loir,Couture-sur-Loir,COM,41070,0,VALLEE DE RONSARD,Vallée-de-Ronsard,Vallée-de-Ronsard +32,2019-01-01,COM,41059,0,CONTRES,Contres,Contres,COM,41059,2,CONTROIS EN SOLOGNE,Controis-en-Sologne,Le Controis-en-Sologne 32,2019-01-01,COM,41070,0,COUTURE SUR LOIR,Couture-sur-Loir,Couture-sur-Loir,COMD,41070,0,COUTURE SUR LOIR,Couture-sur-Loir,Couture-sur-Loir -32,2019-01-01,COM,41082,0,FEINGS,Feings,Feings,COMD,41082,0,FEINGS,Feings,Feings +32,2019-01-01,COM,41070,0,COUTURE SUR LOIR,Couture-sur-Loir,Couture-sur-Loir,COM,41070,0,VALLEE DE RONSARD,Vallée-de-Ronsard,Vallée-de-Ronsard 32,2019-01-01,COM,41082,0,FEINGS,Feings,Feings,COM,41059,2,CONTROIS EN SOLOGNE,Controis-en-Sologne,Le Controis-en-Sologne +32,2019-01-01,COM,41082,0,FEINGS,Feings,Feings,COMD,41082,0,FEINGS,Feings,Feings 32,2019-01-01,COM,41092,0,FOUGERES SUR BIEVRE,Fougères-sur-Bièvre,Fougères-sur-Bièvre,COM,41059,2,CONTROIS EN SOLOGNE,Controis-en-Sologne,Le Controis-en-Sologne 32,2019-01-01,COM,41092,0,FOUGERES SUR BIEVRE,Fougères-sur-Bièvre,Fougères-sur-Bièvre,COMD,41092,0,FOUGERES SUR BIEVRE,Fougères-sur-Bièvre,Fougères-sur-Bièvre -32,2019-01-01,COM,41170,1,OUCHAMPS,Ouchamps,Ouchamps,COMD,41170,1,OUCHAMPS,Ouchamps,Ouchamps 32,2019-01-01,COM,41170,1,OUCHAMPS,Ouchamps,Ouchamps,COM,41059,2,CONTROIS EN SOLOGNE,Controis-en-Sologne,Le Controis-en-Sologne -32,2019-01-01,COM,41257,0,THENAY,Thenay,Thenay,COMD,41257,0,THENAY,Thenay,Thenay +32,2019-01-01,COM,41170,1,OUCHAMPS,Ouchamps,Ouchamps,COMD,41170,1,OUCHAMPS,Ouchamps,Ouchamps 32,2019-01-01,COM,41257,0,THENAY,Thenay,Thenay,COM,41059,2,CONTROIS EN SOLOGNE,Controis-en-Sologne,Le Controis-en-Sologne -32,2019-01-01,COM,41263,0,TREHET,Tréhet,Tréhet,COMD,41263,0,TREHET,Tréhet,Tréhet +32,2019-01-01,COM,41257,0,THENAY,Thenay,Thenay,COMD,41257,0,THENAY,Thenay,Thenay 32,2019-01-01,COM,41263,0,TREHET,Tréhet,Tréhet,COM,41070,0,VALLEE DE RONSARD,Vallée-de-Ronsard,Vallée-de-Ronsard -32,2019-01-01,COM,42004,1,AMIONS,Amions,Amions,COM,42268,0,VEZELIN SUR LOIRE,Vézelin-sur-Loire,Vézelin-sur-Loire +32,2019-01-01,COM,41263,0,TREHET,Tréhet,Tréhet,COMD,41263,0,TREHET,Tréhet,Tréhet 32,2019-01-01,COM,42004,1,AMIONS,Amions,Amions,COMD,42004,1,AMIONS,Amions,Amions -32,2019-01-01,COM,42082,0,DANCE,Dancé,Dancé,COM,42268,0,VEZELIN SUR LOIRE,Vézelin-sur-Loire,Vézelin-sur-Loire +32,2019-01-01,COM,42004,1,AMIONS,Amions,Amions,COM,42268,0,VEZELIN SUR LOIRE,Vézelin-sur-Loire,Vézelin-sur-Loire 32,2019-01-01,COM,42082,0,DANCE,Dancé,Dancé,COMD,42082,0,DANCE,Dancé,Dancé -32,2019-01-01,COM,42245,0,SAINT JULIEN LA VETRE,Saint-Julien-la-Vêtre,Saint-Julien-la-Vêtre,COMD,42245,0,SAINT JULIEN LA VETRE,Saint-Julien-la-Vêtre,Saint-Julien-la-Vêtre +32,2019-01-01,COM,42082,0,DANCE,Dancé,Dancé,COM,42268,0,VEZELIN SUR LOIRE,Vézelin-sur-Loire,Vézelin-sur-Loire 32,2019-01-01,COM,42245,0,SAINT JULIEN LA VETRE,Saint-Julien-la-Vêtre,Saint-Julien-la-Vêtre,COM,42245,0,VETRE SUR ANZON,Vêtre-sur-Anzon,Vêtre-sur-Anzon +32,2019-01-01,COM,42245,0,SAINT JULIEN LA VETRE,Saint-Julien-la-Vêtre,Saint-Julien-la-Vêtre,COMD,42245,0,SAINT JULIEN LA VETRE,Saint-Julien-la-Vêtre,Saint-Julien-la-Vêtre 32,2019-01-01,COM,42268,0,SAINT PAUL DE VEZELIN,Saint-Paul-de-Vézelin,Saint-Paul-de-Vézelin,COM,42268,0,VEZELIN SUR LOIRE,Vézelin-sur-Loire,Vézelin-sur-Loire 32,2019-01-01,COM,42268,0,SAINT PAUL DE VEZELIN,Saint-Paul-de-Vézelin,Saint-Paul-de-Vézelin,COMD,42268,0,SAINT PAUL DE VEZELIN,Saint-Paul-de-Vézelin,Saint-Paul-de-Vézelin 32,2019-01-01,COM,42291,0,SAINT THURIN,Saint-Thurin,Saint-Thurin,COM,42245,0,VETRE SUR ANZON,Vêtre-sur-Anzon,Vêtre-sur-Anzon 32,2019-01-01,COM,42291,0,SAINT THURIN,Saint-Thurin,Saint-Thurin,COMD,42291,0,SAINT THURIN,Saint-Thurin,Saint-Thurin 32,2019-01-01,COM,44003,1,ANCENIS,Ancenis,Ancenis,COM,44003,1,ANCENIS SAINT GEREON,Ancenis-Saint-Géréon,Ancenis-Saint-Géréon 32,2019-01-01,COM,44160,0,SAINT GEREON,Saint-Géréon,Saint-Géréon,COM,44003,1,ANCENIS SAINT GEREON,Ancenis-Saint-Géréon,Ancenis-Saint-Géréon -32,2019-01-01,COM,46014,0,BAGAT EN QUERCY,Bagat-en-Quercy,Bagat-en-Quercy,COM,46263,0,BARGUELONNE EN QUERCY,Barguelonne-en-Quercy,Barguelonne-en-Quercy 32,2019-01-01,COM,46014,0,BAGAT EN QUERCY,Bagat-en-Quercy,Bagat-en-Quercy,COMD,46014,0,BAGAT EN QUERCY,Bagat-en-Quercy,Bagat-en-Quercy +32,2019-01-01,COM,46014,0,BAGAT EN QUERCY,Bagat-en-Quercy,Bagat-en-Quercy,COM,46263,0,BARGUELONNE EN QUERCY,Barguelonne-en-Quercy,Barguelonne-en-Quercy 32,2019-01-01,COM,46033,2,BOULVE,Boulvé,Le Boulvé,COM,46033,0,PORTE DU QUERCY,Porte-du-Quercy,Porte-du-Quercy 32,2019-01-01,COM,46033,2,BOULVE,Boulvé,Le Boulvé,COMD,46033,2,BOULVE,Boulvé,Le Boulvé -32,2019-01-01,COM,46067,0,CAZILLAC,Cazillac,Cazillac,COM,46232,2,VIGNON EN QUERCY,Vignon-en-Quercy,Le Vignon-en-Quercy 32,2019-01-01,COM,46067,0,CAZILLAC,Cazillac,Cazillac,COMD,46067,0,CAZILLAC,Cazillac,Cazillac +32,2019-01-01,COM,46067,0,CAZILLAC,Cazillac,Cazillac,COM,46232,2,VIGNON EN QUERCY,Vignon-en-Quercy,Le Vignon-en-Quercy 32,2019-01-01,COM,46083,0,CRESSENSAC,Cressensac,Cressensac,COM,46083,0,CRESSENSAC SARRAZAC,Cressensac-Sarrazac,Cressensac-Sarrazac 32,2019-01-01,COM,46083,0,CRESSENSAC,Cressensac,Cressensac,COMD,46083,0,CRESSENSAC,Cressensac,Cressensac -32,2019-01-01,COM,46099,0,FARGUES,Fargues,Fargues,COMD,46099,0,FARGUES,Fargues,Fargues 32,2019-01-01,COM,46099,0,FARGUES,Fargues,Fargues,COM,46033,0,PORTE DU QUERCY,Porte-du-Quercy,Porte-du-Quercy -32,2019-01-01,COM,46232,4,QUATRE ROUTES DU LOT,Quatre-Routes-du-Lot,Les Quatre-Routes-du-Lot,COM,46232,2,VIGNON EN QUERCY,Vignon-en-Quercy,Le Vignon-en-Quercy +32,2019-01-01,COM,46099,0,FARGUES,Fargues,Fargues,COMD,46099,0,FARGUES,Fargues,Fargues 32,2019-01-01,COM,46232,4,QUATRE ROUTES DU LOT,Quatre-Routes-du-Lot,Les Quatre-Routes-du-Lot,COMD,46232,4,QUATRE ROUTES DU LOT,Quatre-Routes-du-Lot,Les Quatre-Routes-du-Lot -32,2019-01-01,COM,46263,0,SAINT DAUNES,Saint-Daunès,Saint-Daunès,COMD,46263,0,SAINT DAUNES,Saint-Daunès,Saint-Daunès +32,2019-01-01,COM,46232,4,QUATRE ROUTES DU LOT,Quatre-Routes-du-Lot,Les Quatre-Routes-du-Lot,COM,46232,2,VIGNON EN QUERCY,Vignon-en-Quercy,Le Vignon-en-Quercy 32,2019-01-01,COM,46263,0,SAINT DAUNES,Saint-Daunès,Saint-Daunès,COM,46263,0,BARGUELONNE EN QUERCY,Barguelonne-en-Quercy,Barguelonne-en-Quercy -32,2019-01-01,COM,46278,0,SAINT MATRE,Saint-Matré,Saint-Matré,COMD,46278,0,SAINT MATRE,Saint-Matré,Saint-Matré +32,2019-01-01,COM,46263,0,SAINT DAUNES,Saint-Daunès,Saint-Daunès,COMD,46263,0,SAINT DAUNES,Saint-Daunès,Saint-Daunès 32,2019-01-01,COM,46278,0,SAINT MATRE,Saint-Matré,Saint-Matré,COM,46033,0,PORTE DU QUERCY,Porte-du-Quercy,Porte-du-Quercy -32,2019-01-01,COM,46285,0,SAINT PANTALEON,Saint-Pantaléon,Saint-Pantaléon,COMD,46285,0,SAINT PANTALEON,Saint-Pantaléon,Saint-Pantaléon +32,2019-01-01,COM,46278,0,SAINT MATRE,Saint-Matré,Saint-Matré,COMD,46278,0,SAINT MATRE,Saint-Matré,Saint-Matré 32,2019-01-01,COM,46285,0,SAINT PANTALEON,Saint-Pantaléon,Saint-Pantaléon,COM,46263,0,BARGUELONNE EN QUERCY,Barguelonne-en-Quercy,Barguelonne-en-Quercy -32,2019-01-01,COM,46298,0,SARRAZAC,Sarrazac,Sarrazac,COMD,46298,0,SARRAZAC,Sarrazac,Sarrazac +32,2019-01-01,COM,46285,0,SAINT PANTALEON,Saint-Pantaléon,Saint-Pantaléon,COMD,46285,0,SAINT PANTALEON,Saint-Pantaléon,Saint-Pantaléon 32,2019-01-01,COM,46298,0,SARRAZAC,Sarrazac,Sarrazac,COM,46083,0,CRESSENSAC SARRAZAC,Cressensac-Sarrazac,Cressensac-Sarrazac +32,2019-01-01,COM,46298,0,SARRAZAC,Sarrazac,Sarrazac,COMD,46298,0,SARRAZAC,Sarrazac,Sarrazac 32,2019-01-01,COM,46300,0,SAUX,Saux,Saux,COM,46033,0,PORTE DU QUERCY,Porte-du-Quercy,Porte-du-Quercy 32,2019-01-01,COM,46300,0,SAUX,Saux,Saux,COMD,46300,0,SAUX,Saux,Saux 32,2019-01-01,COM,48038,0,CHAMBON LE CHATEAU,Chambon-le-Château,Chambon-le-Château,COM,48038,0,BEL AIR VAL D ANCE,Bel-Air-Val-d'Ance,Bel-Air-Val-d'Ance 32,2019-01-01,COM,48038,0,CHAMBON LE CHATEAU,Chambon-le-Château,Chambon-le-Château,COMD,48038,0,CHAMBON LE CHATEAU,Chambon-le-Château,Chambon-le-Château -32,2019-01-01,COM,48057,1,ESTABLES,Estables,Estables,COM,48127,0,MONTS DE RANDON,Monts-de-Randon,Monts-de-Randon 32,2019-01-01,COM,48057,1,ESTABLES,Estables,Estables,COMD,48057,1,ESTABLES,Estables,Estables +32,2019-01-01,COM,48057,1,ESTABLES,Estables,Estables,COM,48127,0,MONTS DE RANDON,Monts-de-Randon,Monts-de-Randon 32,2019-01-01,COM,48078,0,LACHAMP,Lachamp,Lachamp,COMD,48078,0,LACHAMP,Lachamp,Lachamp 32,2019-01-01,COM,48078,0,LACHAMP,Lachamp,Lachamp,COM,48126,0,LACHAMP RIBENNES,Lachamp-Ribennes,Lachamp-Ribennes -32,2019-01-01,COM,48126,0,RIBENNES,Ribennes,Ribennes,COM,48126,0,LACHAMP RIBENNES,Lachamp-Ribennes,Lachamp-Ribennes 32,2019-01-01,COM,48126,0,RIBENNES,Ribennes,Ribennes,COMD,48126,0,RIBENNES,Ribennes,Ribennes +32,2019-01-01,COM,48126,0,RIBENNES,Ribennes,Ribennes,COM,48126,0,LACHAMP RIBENNES,Lachamp-Ribennes,Lachamp-Ribennes 32,2019-01-01,COM,48127,0,RIEUTORT DE RANDON,Rieutort-de-Randon,Rieutort-de-Randon,COM,48127,0,MONTS DE RANDON,Monts-de-Randon,Monts-de-Randon 32,2019-01-01,COM,48127,0,RIEUTORT DE RANDON,Rieutort-de-Randon,Rieutort-de-Randon,COMD,48127,0,RIEUTORT DE RANDON,Rieutort-de-Randon,Rieutort-de-Randon -32,2019-01-01,COM,48133,0,SAINT AMANS,Saint-Amans,Saint-Amans,COMD,48133,0,SAINT AMANS,Saint-Amans,Saint-Amans 32,2019-01-01,COM,48133,0,SAINT AMANS,Saint-Amans,Saint-Amans,COM,48127,0,MONTS DE RANDON,Monts-de-Randon,Monts-de-Randon -32,2019-01-01,COM,48184,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,COMD,48184,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien +32,2019-01-01,COM,48133,0,SAINT AMANS,Saint-Amans,Saint-Amans,COMD,48133,0,SAINT AMANS,Saint-Amans,Saint-Amans 32,2019-01-01,COM,48184,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,COM,48038,0,BEL AIR VAL D ANCE,Bel-Air-Val-d'Ance,Bel-Air-Val-d'Ance +32,2019-01-01,COM,48184,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,COMD,48184,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien 32,2019-01-01,COM,48189,0,SERVIERES,Servières,Servières,COM,48127,0,MONTS DE RANDON,Monts-de-Randon,Monts-de-Randon 32,2019-01-01,COM,48189,0,SERVIERES,Servières,Servières,COMD,48189,0,SERVIERES,Servières,Servières -32,2019-01-01,COM,48197,3,VILLEDIEU,Villedieu,La Villedieu,COMD,48197,3,VILLEDIEU,Villedieu,La Villedieu 32,2019-01-01,COM,48197,3,VILLEDIEU,Villedieu,La Villedieu,COM,48127,0,MONTS DE RANDON,Monts-de-Randon,Monts-de-Randon -32,2019-01-01,COM,49046,0,BREZE,Brézé,Brézé,COM,49060,0,BELLEVIGNE LES CHATEAUX,Bellevigne-les-Châteaux,Bellevigne-les-Châteaux +32,2019-01-01,COM,48197,3,VILLEDIEU,Villedieu,La Villedieu,COMD,48197,3,VILLEDIEU,Villedieu,La Villedieu 32,2019-01-01,COM,49046,0,BREZE,Brézé,Brézé,COMD,49046,0,BREZE,Brézé,Brézé -32,2019-01-01,COMD,49051,0,BRISSARTHE,Brissarthe,Brissarthe,COMD,49051,0,BRISSARTHE,Brissarthe,Brissarthe -32,2019-01-01,COMD,49051,0,BRISSARTHE,Brissarthe,Brissarthe,COM,49080,4,HAUTS D ANJOU,Hauts-d'Anjou,Les Hauts-d'Anjou +32,2019-01-01,COM,49046,0,BREZE,Brézé,Brézé,COM,49060,0,BELLEVIGNE LES CHATEAUX,Bellevigne-les-Châteaux,Bellevigne-les-Châteaux 32,2019-01-01,COM,49060,0,CHACE,Chacé,Chacé,COM,49060,0,BELLEVIGNE LES CHATEAUX,Bellevigne-les-Châteaux,Bellevigne-les-Châteaux 32,2019-01-01,COM,49060,0,CHACE,Chacé,Chacé,COMD,49060,0,CHACE,Chacé,Chacé 32,2019-01-01,COM,49065,4,HAUTS D ANJOU,Hauts d'Anjou,Les Hauts d'Anjou,COM,49080,4,HAUTS D ANJOU,Hauts-d'Anjou,Les Hauts-d'Anjou -32,2019-01-01,COMD,49065,0,CHAMPIGNE,Champigné,Champigné,COM,49080,4,HAUTS D ANJOU,Hauts-d'Anjou,Les Hauts-d'Anjou -32,2019-01-01,COMD,49065,0,CHAMPIGNE,Champigné,Champigné,COMD,49065,0,CHAMPIGNE,Champigné,Champigné -32,2019-01-01,COM,49080,0,CHATEAUNEUF SUR SARTHE,Châteauneuf-sur-Sarthe,Châteauneuf-sur-Sarthe,COMD,49080,0,CHATEAUNEUF SUR SARTHE,Châteauneuf-sur-Sarthe,Châteauneuf-sur-Sarthe 32,2019-01-01,COM,49080,0,CHATEAUNEUF SUR SARTHE,Châteauneuf-sur-Sarthe,Châteauneuf-sur-Sarthe,COM,49080,4,HAUTS D ANJOU,Hauts-d'Anjou,Les Hauts-d'Anjou -32,2019-01-01,COMD,49096,0,CHERRE,Cherré,Cherré,COMD,49096,0,CHERRE,Cherré,Cherré -32,2019-01-01,COMD,49096,0,CHERRE,Cherré,Cherré,COM,49080,4,HAUTS D ANJOU,Hauts-d'Anjou,Les Hauts-d'Anjou -32,2019-01-01,COMD,49105,0,CONTIGNE,Contigné,Contigné,COMD,49105,0,CONTIGNE,Contigné,Contigné -32,2019-01-01,COMD,49105,0,CONTIGNE,Contigné,Contigné,COM,49080,4,HAUTS D ANJOU,Hauts-d'Anjou,Les Hauts-d'Anjou -32,2019-01-01,COM,49159,0,HUILLE,Huillé,Huillé,COM,49174,0,HUILLE LEZIGNE,Huillé-Lézigné,Huillé-Lézigné +32,2019-01-01,COM,49080,0,CHATEAUNEUF SUR SARTHE,Châteauneuf-sur-Sarthe,Châteauneuf-sur-Sarthe,COMD,49080,0,CHATEAUNEUF SUR SARTHE,Châteauneuf-sur-Sarthe,Châteauneuf-sur-Sarthe 32,2019-01-01,COM,49159,0,HUILLE,Huillé,Huillé,COMD,49159,0,HUILLE,Huillé,Huillé -32,2019-01-01,COM,49174,0,LEZIGNE,Lézigné,Lézigné,COM,49174,0,HUILLE LEZIGNE,Huillé-Lézigné,Huillé-Lézigné +32,2019-01-01,COM,49159,0,HUILLE,Huillé,Huillé,COM,49174,0,HUILLE LEZIGNE,Huillé-Lézigné,Huillé-Lézigné 32,2019-01-01,COM,49174,0,LEZIGNE,Lézigné,Lézigné,COMD,49174,0,LEZIGNE,Lézigné,Lézigné -32,2019-01-01,COMD,49189,0,MARIGNE,Marigné,Marigné,COMD,49189,0,MARIGNE,Marigné,Marigné -32,2019-01-01,COMD,49189,0,MARIGNE,Marigné,Marigné,COM,49080,4,HAUTS D ANJOU,Hauts-d'Anjou,Les Hauts-d'Anjou -32,2019-01-01,COMD,49254,0,QUERRE,Querré,Querré,COM,49080,4,HAUTS D ANJOU,Hauts-d'Anjou,Les Hauts-d'Anjou -32,2019-01-01,COMD,49254,0,QUERRE,Querré,Querré,COMD,49254,0,QUERRE,Querré,Querré +32,2019-01-01,COM,49174,0,LEZIGNE,Lézigné,Lézigné,COM,49174,0,HUILLE LEZIGNE,Huillé-Lézigné,Huillé-Lézigné 32,2019-01-01,COM,49274,0,SAINT CYR EN BOURG,Saint-Cyr-en-Bourg,Saint-Cyr-en-Bourg,COM,49060,0,BELLEVIGNE LES CHATEAUX,Bellevigne-les-Châteaux,Bellevigne-les-Châteaux 32,2019-01-01,COM,49274,0,SAINT CYR EN BOURG,Saint-Cyr-en-Bourg,Saint-Cyr-en-Bourg,COMD,49274,0,SAINT CYR EN BOURG,Saint-Cyr-en-Bourg,Saint-Cyr-en-Bourg 32,2019-01-01,COM,49289,0,SAINT JEAN DE LINIERES,Saint-Jean-de-Linières,Saint-Jean-de-Linières,COMD,49289,0,SAINT JEAN DE LINIERES,Saint-Jean-de-Linières,Saint-Jean-de-Linières 32,2019-01-01,COM,49289,0,SAINT JEAN DE LINIERES,Saint-Jean-de-Linières,Saint-Jean-de-Linières,COM,49298,0,SAINT LEGER DE LINIERES,Saint-Léger-de-Linières,Saint-Léger-de-Linières -32,2019-01-01,COM,49298,0,SAINT LEGER DES BOIS,Saint-Léger-des-Bois,Saint-Léger-des-Bois,COM,49298,0,SAINT LEGER DE LINIERES,Saint-Léger-de-Linières,Saint-Léger-de-Linières 32,2019-01-01,COM,49298,0,SAINT LEGER DES BOIS,Saint-Léger-des-Bois,Saint-Léger-des-Bois,COMD,49298,0,SAINT LEGER DES BOIS,Saint-Léger-des-Bois,Saint-Léger-des-Bois -32,2019-01-01,COMD,49335,0,SOEURDRES,Sœurdres,Sœurdres,COMD,49335,0,SOEURDRES,Sœurdres,Sœurdres -32,2019-01-01,COMD,49335,0,SOEURDRES,Sœurdres,Sœurdres,COM,49080,4,HAUTS D ANJOU,Hauts-d'Anjou,Les Hauts-d'Anjou -32,2019-01-01,COM,49337,0,SOUCELLES,Soucelles,Soucelles,COM,49377,0,RIVES DU LOIR EN ANJOU,Rives-du-Loir-en-Anjou,Rives-du-Loir-en-Anjou +32,2019-01-01,COM,49298,0,SAINT LEGER DES BOIS,Saint-Léger-des-Bois,Saint-Léger-des-Bois,COM,49298,0,SAINT LEGER DE LINIERES,Saint-Léger-de-Linières,Saint-Léger-de-Linières 32,2019-01-01,COM,49337,0,SOUCELLES,Soucelles,Soucelles,COMD,49337,0,SOUCELLES,Soucelles,Soucelles -32,2019-01-01,COM,49377,0,VILLEVEQUE,Villevêque,Villevêque,COMD,49377,0,VILLEVEQUE,Villevêque,Villevêque +32,2019-01-01,COM,49337,0,SOUCELLES,Soucelles,Soucelles,COM,49377,0,RIVES DU LOIR EN ANJOU,Rives-du-Loir-en-Anjou,Rives-du-Loir-en-Anjou 32,2019-01-01,COM,49377,0,VILLEVEQUE,Villevêque,Villevêque,COM,49377,0,RIVES DU LOIR EN ANJOU,Rives-du-Loir-en-Anjou,Rives-du-Loir-en-Anjou +32,2019-01-01,COM,49377,0,VILLEVEQUE,Villevêque,Villevêque,COMD,49377,0,VILLEVEQUE,Villevêque,Villevêque 32,2019-01-01,COM,50007,1,ANCTEVILLE,Ancteville,Ancteville,COMD,50007,1,ANCTEVILLE,Ancteville,Ancteville 32,2019-01-01,COM,50007,1,ANCTEVILLE,Ancteville,Ancteville,COM,50550,0,SAINT SAUVEUR VILLAGES,Saint-Sauveur-Villages,Saint-Sauveur-Villages -32,2019-01-01,COMD,50010,1,ANGOVILLE AU PLAIN,Angoville-au-Plain,Angoville-au-Plain,COM,50099,0,CARENTAN LES MARAIS,Carentan-les-Marais,Carentan-les-Marais -32,2019-01-01,COMD,50010,1,ANGOVILLE AU PLAIN,Angoville-au-Plain,Angoville-au-Plain,COMD,50010,1,ANGOVILLE AU PLAIN,Angoville-au-Plain,Angoville-au-Plain -32,2019-01-01,COM,50014,1,ANNEVILLE SUR MER,Anneville-sur-Mer,Anneville-sur-Mer,COM,50215,0,GOUVILLE SUR MER,Gouville-sur-Mer,Gouville-sur-Mer 32,2019-01-01,COM,50014,1,ANNEVILLE SUR MER,Anneville-sur-Mer,Anneville-sur-Mer,COMD,50014,1,ANNEVILLE SUR MER,Anneville-sur-Mer,Anneville-sur-Mer +32,2019-01-01,COM,50014,1,ANNEVILLE SUR MER,Anneville-sur-Mer,Anneville-sur-Mer,COM,50215,0,GOUVILLE SUR MER,Gouville-sur-Mer,Gouville-sur-Mer 32,2019-01-01,COM,50025,1,AVRANCHES,Avranches,Avranches,COM,50025,1,AVRANCHES,Avranches,Avranches -32,2019-01-01,COMD,50051,0,BEUZEVILLE AU PLAIN,Beuzeville-au-Plain,Beuzeville-au-Plain,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église -32,2019-01-01,COMD,50051,0,BEUZEVILLE AU PLAIN,Beuzeville-au-Plain,Beuzeville-au-Plain,COMD,50051,0,BEUZEVILLE AU PLAIN,Beuzeville-au-Plain,Beuzeville-au-Plain -32,2019-01-01,COMD,50061,0,BOISROGER,Boisroger,Boisroger,COM,50215,0,GOUVILLE SUR MER,Gouville-sur-Mer,Gouville-sur-Mer -32,2019-01-01,COMD,50061,0,BOISROGER,Boisroger,Boisroger,COMD,50061,0,BOISROGER,Boisroger,Boisroger -32,2019-01-01,COMD,50080,0,BREVANDS,Brévands,Brévands,COM,50099,0,CARENTAN LES MARAIS,Carentan-les-Marais,Carentan-les-Marais -32,2019-01-01,COMD,50080,0,BREVANDS,Brévands,Brévands,COMD,50080,0,BREVANDS,Brévands,Brévands 32,2019-01-01,COM,50089,0,BRUCHEVILLE,Brucheville,Brucheville,COMD,50089,0,BRUCHEVILLE,Brucheville,Brucheville 32,2019-01-01,COM,50089,0,BRUCHEVILLE,Brucheville,Brucheville,COM,50099,0,CARENTAN LES MARAIS,Carentan-les-Marais,Carentan-les-Marais -32,2019-01-01,COMD,50099,0,CARENTAN,Carentan,Carentan,COM,50099,0,CARENTAN LES MARAIS,Carentan-les-Marais,Carentan-les-Marais 32,2019-01-01,COM,50099,0,CARENTAN LES MARAIS,Carentan les Marais,Carentan les Marais,COM,50099,0,CARENTAN LES MARAIS,Carentan-les-Marais,Carentan-les-Marais -32,2019-01-01,COMD,50099,0,CARENTAN,Carentan,Carentan,COMD,50099,0,CARENTAN,Carentan,Carentan 32,2019-01-01,COM,50103,0,CARQUEBUT,Carquebut,Carquebut,COMD,50103,0,CARQUEBUT,Carquebut,Carquebut 32,2019-01-01,COM,50103,0,CARQUEBUT,Carquebut,Carquebut,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église -32,2019-01-01,COM,50107,0,CATZ,Catz,Catz,COMD,50107,0,CATZ,Catz,Catz 32,2019-01-01,COM,50107,0,CATZ,Catz,Catz,COM,50099,0,CARENTAN LES MARAIS,Carentan-les-Marais,Carentan-les-Marais -32,2019-01-01,COMD,50127,0,CHEF DU PONT,Chef-du-Pont,Chef-du-Pont,COMD,50127,0,CHEF DU PONT,Chef-du-Pont,Chef-du-Pont -32,2019-01-01,COMD,50127,0,CHEF DU PONT,Chef-du-Pont,Chef-du-Pont,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église -32,2019-01-01,COM,50140,0,CONTRIERES,Contrières,Contrières,COM,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne +32,2019-01-01,COM,50107,0,CATZ,Catz,Catz,COMD,50107,0,CATZ,Catz,Catz 32,2019-01-01,COM,50140,0,CONTRIERES,Contrières,Contrières,COMD,50140,0,CONTRIERES,Contrières,Contrières +32,2019-01-01,COM,50140,0,CONTRIERES,Contrières,Contrières,COM,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne 32,2019-01-01,COM,50160,0,DENNEVILLE,Denneville,Denneville,COMD,50160,0,DENNEVILLE,Denneville,Denneville 32,2019-01-01,COM,50160,0,DENNEVILLE,Denneville,Denneville,COM,50412,0,PORT BAIL SUR MER,Port-Bail-sur-Mer,Port-Bail-sur-Mer -32,2019-01-01,COMD,50170,1,ECOQUENEAUVILLE,Écoquenéauville,Écoquenéauville,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église -32,2019-01-01,COMD,50170,1,ECOQUENEAUVILLE,Écoquenéauville,Écoquenéauville,COMD,50170,1,ECOQUENEAUVILLE,Écoquenéauville,Écoquenéauville -32,2019-01-01,COMD,50191,0,FOUCARVILLE,Foucarville,Foucarville,COMD,50191,0,FOUCARVILLE,Foucarville,Foucarville -32,2019-01-01,COMD,50191,0,FOUCARVILLE,Foucarville,Foucarville,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église 32,2019-01-01,COM,50197,0,GAVRAY,Gavray,Gavray,COM,50197,0,GAVRAY SUR SIENNE,Gavray-sur-Sienne,Gavray-sur-Sienne 32,2019-01-01,COM,50197,0,GAVRAY,Gavray,Gavray,COMD,50197,0,GAVRAY,Gavray,Gavray 32,2019-01-01,COM,50206,3,GOHANNIERE,Gohannière,La Gohannière,COM,50597,0,TIREPIED SUR SEE,Tirepied-sur-Sée,Tirepied-sur-Sée -32,2019-01-01,COMD,50213,0,GOURFALEUR,Gourfaleur,Gourfaleur,COM,50546,0,BOURGVALLEES,Bourgvallées,Bourgvallées -32,2019-01-01,COMD,50213,0,GOURFALEUR,Gourfaleur,Gourfaleur,COMD,50213,0,GOURFALEUR,Gourfaleur,Gourfaleur 32,2019-01-01,COM,50215,0,GOUVILLE SUR MER,Gouville sur Mer,Gouville sur Mer,COM,50215,0,GOUVILLE SUR MER,Gouville-sur-Mer,Gouville-sur-Mer -32,2019-01-01,COMD,50215,0,GOUVILLE SUR MER,Gouville-sur-Mer,Gouville-sur-Mer,COMD,50215,0,GOUVILLE SUR MER,Gouville-sur-Mer,Gouville-sur-Mer -32,2019-01-01,COMD,50215,0,GOUVILLE SUR MER,Gouville-sur-Mer,Gouville-sur-Mer,COM,50215,0,GOUVILLE SUR MER,Gouville-sur-Mer,Gouville-sur-Mer -32,2019-01-01,COM,50223,0,GUEHEBERT,Guéhébert,Guéhébert,COM,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne 32,2019-01-01,COM,50223,0,GUEHEBERT,Guéhébert,Guéhébert,COMD,50223,0,GUEHEBERT,Guéhébert,Guéhébert +32,2019-01-01,COM,50223,0,GUEHEBERT,Guéhébert,Guéhébert,COM,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne 32,2019-01-01,COM,50244,0,HERENGUERVILLE,Hérenguerville,Hérenguerville,COMD,50244,0,HERENGUERVILLE,Hérenguerville,Hérenguerville 32,2019-01-01,COM,50244,0,HERENGUERVILLE,Hérenguerville,Hérenguerville,COM,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne -32,2019-01-01,COMD,50249,0,HOUESVILLE,Houesville,Houesville,COMD,50249,0,HOUESVILLE,Houesville,Houesville -32,2019-01-01,COMD,50249,0,HOUESVILLE,Houesville,Houesville,COM,50099,0,CARENTAN LES MARAIS,Carentan-les-Marais,Carentan-les-Marais -32,2019-01-01,COMD,50255,0,HYENVILLE,Hyenville,Hyenville,COMD,50255,0,HYENVILLE,Hyenville,Hyenville -32,2019-01-01,COMD,50255,0,HYENVILLE,Hyenville,Hyenville,COM,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne -32,2019-01-01,COMD,50287,3,MANCELLIERE SUR VIRE,Mancellière-sur-Vire,La Mancellière-sur-Vire,COM,50546,0,BOURGVALLEES,Bourgvallées,Bourgvallées -32,2019-01-01,COMD,50287,3,MANCELLIERE SUR VIRE,Mancellière-sur-Vire,La Mancellière-sur-Vire,COMD,50287,3,MANCELLIERE SUR VIRE,Mancellière-sur-Vire,La Mancellière-sur-Vire 32,2019-01-01,COM,50301,2,MESNIL AMAND,Mesnil-Amand,Le Mesnil-Amand,COM,50197,0,GAVRAY SUR SIENNE,Gavray-sur-Sienne,Gavray-sur-Sienne 32,2019-01-01,COM,50301,2,MESNIL AMAND,Mesnil-Amand,Le Mesnil-Amand,COMD,50301,2,MESNIL AMAND,Mesnil-Amand,Le Mesnil-Amand 32,2019-01-01,COM,50308,2,MESNILBUS,Mesnilbus,Le Mesnilbus,COMD,50308,2,MESNILBUS,Mesnilbus,Le Mesnilbus 32,2019-01-01,COM,50308,2,MESNILBUS,Mesnilbus,Le Mesnilbus,COM,50550,0,SAINT SAUVEUR VILLAGES,Saint-Sauveur-Villages,Saint-Sauveur-Villages -32,2019-01-01,COM,50313,2,MESNIL HERMAN,Mesnil-Herman,Le Mesnil-Herman,COM,50546,0,BOURGVALLEES,Bourgvallées,Bourgvallées 32,2019-01-01,COM,50313,2,MESNIL HERMAN,Mesnil-Herman,Le Mesnil-Herman,COMD,50313,2,MESNIL HERMAN,Mesnil-Herman,Le Mesnil-Herman +32,2019-01-01,COM,50313,2,MESNIL HERMAN,Mesnil-Herman,Le Mesnil-Herman,COM,50546,0,BOURGVALLEES,Bourgvallées,Bourgvallées 32,2019-01-01,COMA,50314,2,MESNIL HUE,Mesnil-Hue,Le Mesnil-Hue,COM,50197,0,GAVRAY SUR SIENNE,Gavray-sur-Sienne,Gavray-sur-Sienne -32,2019-01-01,COM,50320,2,MESNIL ROGUES,Mesnil-Rogues,Le Mesnil-Rogues,COMD,50320,2,MESNIL ROGUES,Mesnil-Rogues,Le Mesnil-Rogues 32,2019-01-01,COM,50320,2,MESNIL ROGUES,Mesnil-Rogues,Le Mesnil-Rogues,COM,50197,0,GAVRAY SUR SIENNE,Gavray-sur-Sienne,Gavray-sur-Sienne -32,2019-01-01,COM,50348,0,MONTMARTIN EN GRAIGNES,Montmartin-en-Graignes,Montmartin-en-Graignes,COMD,50348,0,MONTMARTIN EN GRAIGNES,Montmartin-en-Graignes,Montmartin-en-Graignes +32,2019-01-01,COM,50320,2,MESNIL ROGUES,Mesnil-Rogues,Le Mesnil-Rogues,COMD,50320,2,MESNIL ROGUES,Mesnil-Rogues,Le Mesnil-Rogues 32,2019-01-01,COM,50348,0,MONTMARTIN EN GRAIGNES,Montmartin-en-Graignes,Montmartin-en-Graignes,COM,50099,0,CARENTAN LES MARAIS,Carentan-les-Marais,Carentan-les-Marais -32,2019-01-01,COM,50354,0,MONTSURVENT,Montsurvent,Montsurvent,COMD,50354,0,MONTSURVENT,Montsurvent,Montsurvent +32,2019-01-01,COM,50348,0,MONTMARTIN EN GRAIGNES,Montmartin-en-Graignes,Montmartin-en-Graignes,COMD,50348,0,MONTMARTIN EN GRAIGNES,Montmartin-en-Graignes,Montmartin-en-Graignes 32,2019-01-01,COM,50354,0,MONTSURVENT,Montsurvent,Montsurvent,COM,50215,0,GOUVILLE SUR MER,Gouville-sur-Mer,Gouville-sur-Mer -32,2019-01-01,COM,50358,0,MORSALINES,Morsalines,Morsalines,COM,50417,0,QUETTEHOU,Quettehou,Quettehou +32,2019-01-01,COM,50354,0,MONTSURVENT,Montsurvent,Montsurvent,COMD,50354,0,MONTSURVENT,Montsurvent,Montsurvent 32,2019-01-01,COM,50358,0,MORSALINES,Morsalines,Morsalines,COMD,50358,0,MORSALINES,Morsalines,Morsalines +32,2019-01-01,COM,50358,0,MORSALINES,Morsalines,Morsalines,COM,50417,0,QUETTEHOU,Quettehou,Quettehou 32,2019-01-01,COM,50412,0,PORTBAIL,Portbail,Portbail,COMD,50412,0,PORTBAIL,Portbail,Portbail 32,2019-01-01,COM,50412,0,PORTBAIL,Portbail,Portbail,COM,50412,0,PORT BAIL SUR MER,Port-Bail-sur-Mer,Port-Bail-sur-Mer 32,2019-01-01,COM,50417,0,QUETTEHOU,Quettehou,Quettehou,COM,50417,0,QUETTEHOU,Quettehou,Quettehou 32,2019-01-01,COM,50417,0,QUETTEHOU,Quettehou,Quettehou,COMD,50417,0,QUETTEHOU,Quettehou,Quettehou -32,2019-01-01,COMD,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne,COMD,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne 32,2019-01-01,COM,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne,COM,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne -32,2019-01-01,COMD,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne,COM,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne 32,2019-01-01,COM,50427,0,RAVENOVILLE,Ravenoville,Ravenoville,COMD,50427,0,RAVENOVILLE,Ravenoville,Ravenoville 32,2019-01-01,COM,50427,0,RAVENOVILLE,Ravenoville,Ravenoville,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église 32,2019-01-01,COM,50438,3,RONDE HAYE,Ronde-Haye,La Ronde-Haye,COMD,50438,3,RONDE HAYE,Ronde-Haye,La Ronde-Haye 32,2019-01-01,COM,50438,3,RONDE HAYE,Ronde-Haye,La Ronde-Haye,COM,50550,0,SAINT SAUVEUR VILLAGES,Saint-Sauveur-Villages,Saint-Sauveur-Villages 32,2019-01-01,COM,50449,0,SAINT AUBIN DU PERRON,Saint-Aubin-du-Perron,Saint-Aubin-du-Perron,COMD,50449,0,SAINT AUBIN DU PERRON,Saint-Aubin-du-Perron,Saint-Aubin-du-Perron 32,2019-01-01,COM,50449,0,SAINT AUBIN DU PERRON,Saint-Aubin-du-Perron,Saint-Aubin-du-Perron,COM,50550,0,SAINT SAUVEUR VILLAGES,Saint-Sauveur-Villages,Saint-Sauveur-Villages -32,2019-01-01,COMD,50458,0,SAINT COME DU MONT,Saint-Côme-du-Mont,Saint-Côme-du-Mont,COMD,50458,0,SAINT COME DU MONT,Saint-Côme-du-Mont,Saint-Côme-du-Mont -32,2019-01-01,COMD,50458,0,SAINT COME DU MONT,Saint-Côme-du-Mont,Saint-Côme-du-Mont,COM,50099,0,CARENTAN LES MARAIS,Carentan-les-Marais,Carentan-les-Marais 32,2019-01-01,COM,50485,0,SAINT HILAIRE PETITVILLE,Saint-Hilaire-Petitville,Saint-Hilaire-Petitville,COM,50099,0,CARENTAN LES MARAIS,Carentan-les-Marais,Carentan-les-Marais 32,2019-01-01,COM,50485,0,SAINT HILAIRE PETITVILLE,Saint-Hilaire-Petitville,Saint-Hilaire-Petitville,COMD,50485,0,SAINT HILAIRE PETITVILLE,Saint-Hilaire-Petitville,Saint-Hilaire-Petitville 32,2019-01-01,COM,50503,0,SAINT LO D OURVILLE,Saint-Lô-d'Ourville,Saint-Lô-d'Ourville,COM,50412,0,PORT BAIL SUR MER,Port-Bail-sur-Mer,Port-Bail-sur-Mer 32,2019-01-01,COM,50503,0,SAINT LO D OURVILLE,Saint-Lô-d'Ourville,Saint-Lô-d'Ourville,COMD,50503,0,SAINT LO D OURVILLE,Saint-Lô-d'Ourville,Saint-Lô-d'Ourville 32,2019-01-01,COM,50516,0,SAINT MARTIN DES CHAMPS,Saint-Martin-des-Champs,Saint-Martin-des-Champs,COM,50025,1,AVRANCHES,Avranches,Avranches 32,2019-01-01,COM,50516,0,SAINT MARTIN DES CHAMPS,Saint-Martin-des-Champs,Saint-Martin-des-Champs,COMD,50516,0,SAINT MARTIN DES CHAMPS,Saint-Martin-des-Champs,Saint-Martin-des-Champs -32,2019-01-01,COMD,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église 32,2019-01-01,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église -32,2019-01-01,COMD,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église,COMD,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église -32,2019-01-01,COM,50524,0,SAINT MICHEL DE LA PIERRE,Saint-Michel-de-la-Pierre,Saint-Michel-de-la-Pierre,COM,50550,0,SAINT SAUVEUR VILLAGES,Saint-Sauveur-Villages,Saint-Sauveur-Villages 32,2019-01-01,COM,50524,0,SAINT MICHEL DE LA PIERRE,Saint-Michel-de-la-Pierre,Saint-Michel-de-la-Pierre,COMD,50524,0,SAINT MICHEL DE LA PIERRE,Saint-Michel-de-la-Pierre,Saint-Michel-de-la-Pierre -32,2019-01-01,COMD,50534,0,SAINT PELLERIN,Saint-Pellerin,Saint-Pellerin,COMD,50534,0,SAINT PELLERIN,Saint-Pellerin,Saint-Pellerin -32,2019-01-01,COMD,50534,0,SAINT PELLERIN,Saint-Pellerin,Saint-Pellerin,COM,50099,0,CARENTAN LES MARAIS,Carentan-les-Marais,Carentan-les-Marais -32,2019-01-01,COMD,50545,0,SAINT ROMPHAIRE,Saint-Romphaire,Saint-Romphaire,COM,50546,0,BOURGVALLEES,Bourgvallées,Bourgvallées -32,2019-01-01,COMD,50545,0,SAINT ROMPHAIRE,Saint-Romphaire,Saint-Romphaire,COMD,50545,0,SAINT ROMPHAIRE,Saint-Romphaire,Saint-Romphaire +32,2019-01-01,COM,50524,0,SAINT MICHEL DE LA PIERRE,Saint-Michel-de-la-Pierre,Saint-Michel-de-la-Pierre,COM,50550,0,SAINT SAUVEUR VILLAGES,Saint-Sauveur-Villages,Saint-Sauveur-Villages 32,2019-01-01,COM,50546,0,BOURGVALLEES,Bourgvallées,Bourgvallées,COM,50546,0,BOURGVALLEES,Bourgvallées,Bourgvallées -32,2019-01-01,COMD,50546,0,SAINT SAMSON DE BONFOSSE,Saint-Samson-de-Bonfossé,Saint-Samson-de-Bonfossé,COM,50546,0,BOURGVALLEES,Bourgvallées,Bourgvallées -32,2019-01-01,COMD,50546,0,SAINT SAMSON DE BONFOSSE,Saint-Samson-de-Bonfossé,Saint-Samson-de-Bonfossé,COMD,50546,0,SAINT SAMSON DE BONFOSSE,Saint-Samson-de-Bonfossé,Saint-Samson-de-Bonfossé 32,2019-01-01,COM,50550,0,SAINT SAUVEUR LENDELIN,Saint-Sauveur-Lendelin,Saint-Sauveur-Lendelin,COMD,50550,0,SAINT SAUVEUR LENDELIN,Saint-Sauveur-Lendelin,Saint-Sauveur-Lendelin 32,2019-01-01,COM,50550,0,SAINT SAUVEUR LENDELIN,Saint-Sauveur-Lendelin,Saint-Sauveur-Lendelin,COM,50550,0,SAINT SAUVEUR VILLAGES,Saint-Sauveur-Villages,Saint-Sauveur-Villages 32,2019-01-01,COM,50573,0,SERVIGNY,Servigny,Servigny,COM,50215,0,GOUVILLE SUR MER,Gouville-sur-Mer,Gouville-sur-Mer @@ -1296,50 +1168,40 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2019-01-01,COM,50583,0,SOURDEVAL LES BOIS,Sourdeval-les-Bois,Sourdeval-les-Bois,COM,50197,0,GAVRAY SUR SIENNE,Gavray-sur-Sienne,Gavray-sur-Sienne 32,2019-01-01,COM,50583,0,SOURDEVAL LES BOIS,Sourdeval-les-Bois,Sourdeval-les-Bois,COMD,50583,0,SOURDEVAL LES BOIS,Sourdeval-les-Bois,Sourdeval-les-Bois 32,2019-01-01,COM,50597,0,TIREPIED,Tirepied,Tirepied,COM,50597,0,TIREPIED SUR SEE,Tirepied-sur-Sée,Tirepied-sur-Sée -32,2019-01-01,COM,50605,0,TRELLY,Trelly,Trelly,COMD,50605,0,TRELLY,Trelly,Trelly 32,2019-01-01,COM,50605,0,TRELLY,Trelly,Trelly,COM,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne -32,2019-01-01,COM,50622,0,VAUDRIMESNIL,Vaudrimesnil,Vaudrimesnil,COMD,50622,0,VAUDRIMESNIL,Vaudrimesnil,Vaudrimesnil +32,2019-01-01,COM,50605,0,TRELLY,Trelly,Trelly,COMD,50605,0,TRELLY,Trelly,Trelly 32,2019-01-01,COM,50622,0,VAUDRIMESNIL,Vaudrimesnil,Vaudrimesnil,COM,50550,0,SAINT SAUVEUR VILLAGES,Saint-Sauveur-Villages,Saint-Sauveur-Villages -32,2019-01-01,COMD,50631,4,VEYS,Veys,Les Veys,COMD,50631,4,VEYS,Veys,Les Veys -32,2019-01-01,COMD,50631,4,VEYS,Veys,Les Veys,COM,50099,0,CARENTAN LES MARAIS,Carentan-les-Marais,Carentan-les-Marais +32,2019-01-01,COM,50622,0,VAUDRIMESNIL,Vaudrimesnil,Vaudrimesnil,COMD,50622,0,VAUDRIMESNIL,Vaudrimesnil,Vaudrimesnil 32,2019-01-01,COM,50636,0,VIERVILLE,Vierville,Vierville,COM,50099,0,CARENTAN LES MARAIS,Carentan-les-Marais,Carentan-les-Marais 32,2019-01-01,COM,50636,0,VIERVILLE,Vierville,Vierville,COMD,50636,0,VIERVILLE,Vierville,Vierville -32,2019-01-01,COMD,52064,0,BOURMONT,Bourmont,Bourmont,COM,52064,0,BOURMONT ENTRE MEUSE ET MOUZON,Bourmont-entre-Meuse-et-Mouzon,Bourmont-entre-Meuse-et-Mouzon 32,2019-01-01,COM,52064,0,BOURMONT ENTRE MEUSE ET MOUZON,Bourmont-entre-Meuse-et-Mouzon,Bourmont-entre-Meuse-et-Mouzon,COM,52064,0,BOURMONT ENTRE MEUSE ET MOUZON,Bourmont-entre-Meuse-et-Mouzon,Bourmont-entre-Meuse-et-Mouzon -32,2019-01-01,COMD,52064,0,BOURMONT,Bourmont,Bourmont,COMD,52064,0,BOURMONT,Bourmont,Bourmont -32,2019-01-01,COM,52225,0,GONCOURT,Goncourt,Goncourt,COMD,52225,0,GONCOURT,Goncourt,Goncourt 32,2019-01-01,COM,52225,0,GONCOURT,Goncourt,Goncourt,COM,52064,0,BOURMONT ENTRE MEUSE ET MOUZON,Bourmont-entre-Meuse-et-Mouzon,Bourmont-entre-Meuse-et-Mouzon -32,2019-01-01,COMD,52351,0,NIJON,Nijon,Nijon,COMD,52351,0,NIJON,Nijon,Nijon -32,2019-01-01,COMD,52351,0,NIJON,Nijon,Nijon,COM,52064,0,BOURMONT ENTRE MEUSE ET MOUZON,Bourmont-entre-Meuse-et-Mouzon,Bourmont-entre-Meuse-et-Mouzon +32,2019-01-01,COM,52225,0,GONCOURT,Goncourt,Goncourt,COMD,52225,0,GONCOURT,Goncourt,Goncourt 32,2019-01-01,COM,53006,1,ARGENTON NOTRE DAME,Argenton-Notre-Dame,Argenton-Notre-Dame,COMD,53006,1,ARGENTON NOTRE DAME,Argenton-Notre-Dame,Argenton-Notre-Dame 32,2019-01-01,COM,53006,1,ARGENTON NOTRE DAME,Argenton-Notre-Dame,Argenton-Notre-Dame,COM,53029,0,BIERNE LES VILLAGES,Bierné-les-Villages,Bierné-les-Villages 32,2019-01-01,COM,53014,1,AZE,Azé,Azé,COMD,53014,1,AZE,Azé,Azé 32,2019-01-01,COM,53014,1,AZE,Azé,Azé,COM,53062,0,CHATEAU GONTIER SUR MAYENNE,Château-Gontier-sur-Mayenne,Château-Gontier-sur-Mayenne -32,2019-01-01,COM,53029,0,BIERNE,Bierné,Bierné,COM,53029,0,BIERNE LES VILLAGES,Bierné-les-Villages,Bierné-les-Villages 32,2019-01-01,COM,53029,0,BIERNE,Bierné,Bierné,COMD,53029,0,BIERNE,Bierné,Bierné +32,2019-01-01,COM,53029,0,BIERNE,Bierné,Bierné,COM,53029,0,BIERNE LES VILLAGES,Bierné-les-Villages,Bierné-les-Villages 32,2019-01-01,COM,53062,0,CHATEAU GONTIER,Château-Gontier,Château-Gontier,COM,53062,0,CHATEAU GONTIER SUR MAYENNE,Château-Gontier-sur-Mayenne,Château-Gontier-sur-Mayenne 32,2019-01-01,COM,53062,0,CHATEAU GONTIER,Château-Gontier,Château-Gontier,COMD,53062,0,CHATEAU GONTIER,Château-Gontier,Château-Gontier 32,2019-01-01,COM,53065,0,CHATRES LA FORET,Châtres-la-Forêt,Châtres-la-Forêt,COMD,53065,0,CHATRES LA FORET,Châtres-la-Forêt,Châtres-la-Forêt 32,2019-01-01,COM,53065,0,CHATRES LA FORET,Châtres-la-Forêt,Châtres-la-Forêt,COM,53097,1,EVRON,Évron,Évron -32,2019-01-01,COM,53092,0,DEUX EVAILLES,Deux-Évailles,Deux-Évailles,COM,53161,0,MONTSURS,Montsûrs,Montsûrs 32,2019-01-01,COM,53092,0,DEUX EVAILLES,Deux-Évailles,Deux-Évailles,COMD,53092,0,DEUX EVAILLES,Deux-Évailles,Deux-Évailles -32,2019-01-01,COM,53097,1,EVRON,Évron,Évron,COM,53097,1,EVRON,Évron,Évron +32,2019-01-01,COM,53092,0,DEUX EVAILLES,Deux-Évailles,Deux-Évailles,COM,53161,0,MONTSURS,Montsûrs,Montsûrs 32,2019-01-01,COM,53097,1,EVRON,Évron,Évron,COMD,53097,1,EVRON,Évron,Évron +32,2019-01-01,COM,53097,1,EVRON,Évron,Évron,COM,53097,1,EVRON,Évron,Évron 32,2019-01-01,COM,53104,0,GENNES SUR GLAIZE,Gennes-sur-Glaize,Gennes-sur-Glaize,COMD,53104,0,GENNES SUR GLAIZE,Gennes-sur-Glaize,Gennes-sur-Glaize 32,2019-01-01,COM,53104,0,GENNES SUR GLAIZE,Gennes-sur-Glaize,Gennes-sur-Glaize,COM,53104,0,GENNES LONGUEFUYE,Gennes-Longuefuye,Gennes-Longuefuye 32,2019-01-01,COM,53136,0,LOIGNE SUR MAYENNE,Loigné-sur-Mayenne,Loigné-sur-Mayenne,COM,53136,3,ROCHE NEUVILLE,Roche-Neuville,La Roche-Neuville 32,2019-01-01,COM,53136,0,LOIGNE SUR MAYENNE,Loigné-sur-Mayenne,Loigné-sur-Mayenne,COMD,53136,0,LOIGNE SUR MAYENNE,Loigné-sur-Mayenne,Loigné-sur-Mayenne -32,2019-01-01,COM,53138,0,LONGUEFUYE,Longuefuye,Longuefuye,COMD,53138,0,LONGUEFUYE,Longuefuye,Longuefuye 32,2019-01-01,COM,53138,0,LONGUEFUYE,Longuefuye,Longuefuye,COM,53104,0,GENNES LONGUEFUYE,Gennes-Longuefuye,Gennes-Longuefuye -32,2019-01-01,COM,53159,0,MONTOURTIER,Montourtier,Montourtier,COM,53161,0,MONTSURS,Montsûrs,Montsûrs +32,2019-01-01,COM,53138,0,LONGUEFUYE,Longuefuye,Longuefuye,COMD,53138,0,LONGUEFUYE,Longuefuye,Longuefuye 32,2019-01-01,COM,53159,0,MONTOURTIER,Montourtier,Montourtier,COMD,53159,0,MONTOURTIER,Montourtier,Montourtier +32,2019-01-01,COM,53159,0,MONTOURTIER,Montourtier,Montourtier,COM,53161,0,MONTSURS,Montsûrs,Montsûrs 32,2019-01-01,COM,53161,0,MONTSURS SAINT CENERE,Montsûrs-Saint-Céneré,Montsûrs-Saint-Céneré,COM,53161,0,MONTSURS,Montsûrs,Montsûrs -32,2019-01-01,COMD,53161,0,MONTSURS,Montsûrs,Montsûrs,COMD,53161,0,MONTSURS,Montsûrs,Montsûrs -32,2019-01-01,COMD,53161,0,MONTSURS,Montsûrs,Montsûrs,COM,53161,0,MONTSURS,Montsûrs,Montsûrs -32,2019-01-01,COMD,53205,0,SAINT CENERE,Saint-Céneré,Saint-Céneré,COMD,53205,0,SAINT CENERE,Saint-Céneré,Saint-Céneré -32,2019-01-01,COMD,53205,0,SAINT CENERE,Saint-Céneré,Saint-Céneré,COM,53161,0,MONTSURS,Montsûrs,Montsûrs -32,2019-01-01,COM,53207,0,SAINT CHRISTOPHE DU LUAT,Saint-Christophe-du-Luat,Saint-Christophe-du-Luat,COMD,53207,0,SAINT CHRISTOPHE DU LUAT,Saint-Christophe-du-Luat,Saint-Christophe-du-Luat 32,2019-01-01,COM,53207,0,SAINT CHRISTOPHE DU LUAT,Saint-Christophe-du-Luat,Saint-Christophe-du-Luat,COM,53097,1,EVRON,Évron,Évron +32,2019-01-01,COM,53207,0,SAINT CHRISTOPHE DU LUAT,Saint-Christophe-du-Luat,Saint-Christophe-du-Luat,COMD,53207,0,SAINT CHRISTOPHE DU LUAT,Saint-Christophe-du-Luat,Saint-Christophe-du-Luat 32,2019-01-01,COM,53215,0,SAINT FORT,Saint-Fort,Saint-Fort,COM,53062,0,CHATEAU GONTIER SUR MAYENNE,Château-Gontier-sur-Mayenne,Château-Gontier-sur-Mayenne 32,2019-01-01,COM,53215,0,SAINT FORT,Saint-Fort,Saint-Fort,COMD,53215,0,SAINT FORT,Saint-Fort,Saint-Fort 32,2019-01-01,COM,53231,0,SAINT LAURENT DES MORTIERS,Saint-Laurent-des-Mortiers,Saint-Laurent-des-Mortiers,COM,53029,0,BIERNE LES VILLAGES,Bierné-les-Villages,Bierné-les-Villages @@ -1352,8 +1214,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2019-01-01,COM,53254,0,SAINT SULPICE,Saint-Sulpice,Saint-Sulpice,COMD,53254,0,SAINT SULPICE,Saint-Sulpice,Saint-Sulpice 32,2019-01-01,COM,54506,0,SEXEY LES BOIS,Sexey-les-Bois,Sexey-les-Bois,COMD,54506,0,SEXEY LES BOIS,Sexey-les-Bois,Sexey-les-Bois 32,2019-01-01,COM,54506,0,SEXEY LES BOIS,Sexey-les-Bois,Sexey-les-Bois,COM,54557,0,BOIS DE HAYE,Bois-de-Haye,Bois-de-Haye -32,2019-01-01,COM,54557,0,VELAINE EN HAYE,Velaine-en-Haye,Velaine-en-Haye,COM,54557,0,BOIS DE HAYE,Bois-de-Haye,Bois-de-Haye 32,2019-01-01,COM,54557,0,VELAINE EN HAYE,Velaine-en-Haye,Velaine-en-Haye,COMD,54557,0,VELAINE EN HAYE,Velaine-en-Haye,Velaine-en-Haye +32,2019-01-01,COM,54557,0,VELAINE EN HAYE,Velaine-en-Haye,Velaine-en-Haye,COM,54557,0,BOIS DE HAYE,Bois-de-Haye,Bois-de-Haye 32,2019-01-01,COM,55030,0,BAUDIGNECOURT,Baudignécourt,Baudignécourt,COMD,55030,0,BAUDIGNECOURT,Baudignécourt,Baudignécourt 32,2019-01-01,COM,55030,0,BAUDIGNECOURT,Baudignécourt,Baudignécourt,COM,55150,0,DEMANGE BAUDIGNECOURT,Demange-Baudignécourt,Demange-Baudignécourt 32,2019-01-01,COM,55150,0,DEMANGE AUX EAUX,Demange-aux-Eaux,Demange-aux-Eaux,COM,55150,0,DEMANGE BAUDIGNECOURT,Demange-Baudignécourt,Demange-Baudignécourt @@ -1361,58 +1223,58 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2019-01-01,COM,55164,0,DOUAUMONT,Douaumont,Douaumont,COM,55537,0,DOUAUMONT VAUX,Douaumont-Vaux,Douaumont-Vaux 32,2019-01-01,COM,55537,0,VAUX DEVANT DAMLOUP,Vaux-devant-Damloup,Vaux-devant-Damloup,COM,55537,0,DOUAUMONT VAUX,Douaumont-Vaux,Douaumont-Vaux 32,2019-01-01,COM,55537,0,VAUX DEVANT DAMLOUP,Vaux-devant-Damloup,Vaux-devant-Damloup,COMD,55537,0,VAUX DEVANT DAMLOUP,Vaux-devant-Damloup,Vaux-devant-Damloup -32,2019-01-01,COM,56016,0,BIEUZY,Bieuzy,Bieuzy,COM,56173,0,PLUMELIAU BIEUZY,Pluméliau-Bieuzy,Pluméliau-Bieuzy 32,2019-01-01,COM,56016,0,BIEUZY,Bieuzy,Bieuzy,COMD,56016,0,BIEUZY,Bieuzy,Bieuzy -32,2019-01-01,COM,56059,4,FORGES,Forges,Les Forges,COM,56102,0,FORGES DE LANOUEE,Forges de Lanouée,Forges de Lanouée +32,2019-01-01,COM,56016,0,BIEUZY,Bieuzy,Bieuzy,COM,56173,0,PLUMELIAU BIEUZY,Pluméliau-Bieuzy,Pluméliau-Bieuzy 32,2019-01-01,COM,56059,4,FORGES,Forges,Les Forges,COMD,56059,4,FORGES,Forges,Les Forges -32,2019-01-01,COM,56102,0,LANOUEE,Lanouée,Lanouée,COM,56102,0,FORGES DE LANOUEE,Forges de Lanouée,Forges de Lanouée +32,2019-01-01,COM,56059,4,FORGES,Forges,Les Forges,COM,56102,0,FORGES DE LANOUEE,Forges de Lanouée,Forges de Lanouée 32,2019-01-01,COM,56102,0,LANOUEE,Lanouée,Lanouée,COMD,56102,0,LANOUEE,Lanouée,Lanouée -32,2019-01-01,COM,56138,0,MONTERREIN,Monterrein,Monterrein,COM,56165,0,PLOERMEL,Ploërmel,Ploërmel +32,2019-01-01,COM,56102,0,LANOUEE,Lanouée,Lanouée,COM,56102,0,FORGES DE LANOUEE,Forges de Lanouée,Forges de Lanouée 32,2019-01-01,COM,56138,0,MONTERREIN,Monterrein,Monterrein,COMD,56138,0,MONTERREIN,Monterrein,Monterrein +32,2019-01-01,COM,56138,0,MONTERREIN,Monterrein,Monterrein,COM,56165,0,PLOERMEL,Ploërmel,Ploërmel 32,2019-01-01,COM,56165,0,PLOERMEL,Ploërmel,Ploërmel,COM,56165,0,PLOERMEL,Ploërmel,Ploërmel 32,2019-01-01,COM,56173,0,PLUMELIAU,Pluméliau,Pluméliau,COM,56173,0,PLUMELIAU BIEUZY,Pluméliau-Bieuzy,Pluméliau-Bieuzy -32,2019-01-01,COM,57439,0,MANDEREN,Manderen,Manderen,COM,57439,0,MANDEREN RITZING,Manderen-Ritzing,Manderen-Ritzing 32,2019-01-01,COM,57439,0,MANDEREN,Manderen,Manderen,COMD,57439,0,MANDEREN,Manderen,Manderen -32,2019-01-01,COM,57578,0,REZONVILLE,Rezonville,Rezonville,COM,57578,0,REZONVILLE VIONVILLE,Rezonville-Vionville,Rezonville-Vionville +32,2019-01-01,COM,57439,0,MANDEREN,Manderen,Manderen,COM,57439,0,MANDEREN RITZING,Manderen-Ritzing,Manderen-Ritzing 32,2019-01-01,COM,57578,0,REZONVILLE,Rezonville,Rezonville,COMD,57578,0,REZONVILLE,Rezonville,Rezonville +32,2019-01-01,COM,57578,0,REZONVILLE,Rezonville,Rezonville,COM,57578,0,REZONVILLE VIONVILLE,Rezonville-Vionville,Rezonville-Vionville 32,2019-01-01,COM,57585,0,RITZING,Ritzing,Ritzing,COM,57439,0,MANDEREN RITZING,Manderen-Ritzing,Manderen-Ritzing 32,2019-01-01,COM,57585,0,RITZING,Ritzing,Ritzing,COMD,57585,0,RITZING,Ritzing,Ritzing 32,2019-01-01,COM,57722,0,VIONVILLE,Vionville,Vionville,COM,57578,0,REZONVILLE VIONVILLE,Rezonville-Vionville,Rezonville-Vionville 32,2019-01-01,COM,57722,0,VIONVILLE,Vionville,Vionville,COMD,57722,0,VIONVILLE,Vionville,Vionville -32,2019-01-01,COM,60038,0,BACHIVILLERS,Bachivillers,Bachivillers,COM,60256,0,MONTCHEVREUIL,Montchevreuil,Montchevreuil 32,2019-01-01,COM,60038,0,BACHIVILLERS,Bachivillers,Bachivillers,COMD,60038,0,BACHIVILLERS,Bachivillers,Bachivillers -32,2019-01-01,COM,60054,0,BEAUMONT LES NONAINS,Beaumont-les-Nonains,Beaumont-les-Nonains,COMD,60054,0,BEAUMONT LES NONAINS,Beaumont-les-Nonains,Beaumont-les-Nonains +32,2019-01-01,COM,60038,0,BACHIVILLERS,Bachivillers,Bachivillers,COM,60256,0,MONTCHEVREUIL,Montchevreuil,Montchevreuil 32,2019-01-01,COM,60054,0,BEAUMONT LES NONAINS,Beaumont-les-Nonains,Beaumont-les-Nonains,COM,60054,4,HAUTS TALICAN,Hauts-Talican,Les Hauts-Talican +32,2019-01-01,COM,60054,0,BEAUMONT LES NONAINS,Beaumont-les-Nonains,Beaumont-les-Nonains,COMD,60054,0,BEAUMONT LES NONAINS,Beaumont-les-Nonains,Beaumont-les-Nonains 32,2019-01-01,COM,60080,0,BOISSY LE BOIS,Boissy-le-Bois,Boissy-le-Bois,COMD,60080,0,BOISSY LE BOIS,Boissy-le-Bois,Boissy-le-Bois 32,2019-01-01,COM,60080,0,BOISSY LE BOIS,Boissy-le-Bois,Boissy-le-Bois,COM,60209,3,CORNE EN VEXIN,Corne-en-Vexin,La Corne-en-Vexin 32,2019-01-01,COM,60096,0,BOUTAVENT,Boutavent,Boutavent,COMD,60096,0,BOUTAVENT,Boutavent,Boutavent 32,2019-01-01,COM,60096,0,BOUTAVENT,Boutavent,Boutavent,COM,60245,0,FORMERIE,Formerie,Formerie -32,2019-01-01,COM,60209,1,ENENCOURT LE SEC,Énencourt-le-Sec,Énencourt-le-Sec,COMD,60209,1,ENENCOURT LE SEC,Énencourt-le-Sec,Énencourt-le-Sec 32,2019-01-01,COM,60209,1,ENENCOURT LE SEC,Énencourt-le-Sec,Énencourt-le-Sec,COM,60209,3,CORNE EN VEXIN,Corne-en-Vexin,La Corne-en-Vexin +32,2019-01-01,COM,60209,1,ENENCOURT LE SEC,Énencourt-le-Sec,Énencourt-le-Sec,COMD,60209,1,ENENCOURT LE SEC,Énencourt-le-Sec,Énencourt-le-Sec 32,2019-01-01,COM,60245,0,FORMERIE,Formerie,Formerie,COMD,60245,0,FORMERIE,Formerie,Formerie 32,2019-01-01,COM,60245,0,FORMERIE,Formerie,Formerie,COM,60245,0,FORMERIE,Formerie,Formerie -32,2019-01-01,COM,60256,0,FRESNEAUX MONTCHEVREUIL,Fresneaux-Montchevreuil,Fresneaux-Montchevreuil,COMD,60256,0,FRESNEAUX MONTCHEVREUIL,Fresneaux-Montchevreuil,Fresneaux-Montchevreuil 32,2019-01-01,COM,60256,0,FRESNEAUX MONTCHEVREUIL,Fresneaux-Montchevreuil,Fresneaux-Montchevreuil,COM,60256,0,MONTCHEVREUIL,Montchevreuil,Montchevreuil -32,2019-01-01,COM,60300,1,HARDIVILLERS EN VEXIN,Hardivillers-en-Vexin,Hardivillers-en-Vexin,COMD,60300,1,HARDIVILLERS EN VEXIN,Hardivillers-en-Vexin,Hardivillers-en-Vexin +32,2019-01-01,COM,60256,0,FRESNEAUX MONTCHEVREUIL,Fresneaux-Montchevreuil,Fresneaux-Montchevreuil,COMD,60256,0,FRESNEAUX MONTCHEVREUIL,Fresneaux-Montchevreuil,Fresneaux-Montchevreuil 32,2019-01-01,COM,60300,1,HARDIVILLERS EN VEXIN,Hardivillers-en-Vexin,Hardivillers-en-Vexin,COM,60209,3,CORNE EN VEXIN,Corne-en-Vexin,La Corne-en-Vexin +32,2019-01-01,COM,60300,1,HARDIVILLERS EN VEXIN,Hardivillers-en-Vexin,Hardivillers-en-Vexin,COMD,60300,1,HARDIVILLERS EN VEXIN,Hardivillers-en-Vexin,Hardivillers-en-Vexin 32,2019-01-01,COM,60455,3,NEUVILLE GARNIER,Neuville-Garnier,La Neuville-Garnier,COM,60054,4,HAUTS TALICAN,Hauts-Talican,Les Hauts-Talican 32,2019-01-01,COM,60455,3,NEUVILLE GARNIER,Neuville-Garnier,La Neuville-Garnier,COMD,60455,3,NEUVILLE GARNIER,Neuville-Garnier,La Neuville-Garnier 32,2019-01-01,COM,60475,1,OGNON,Ognon,Ognon,COMD,60475,1,OGNON,Ognon,Ognon 32,2019-01-01,COM,60475,1,OGNON,Ognon,Ognon,COM,60682,0,VILLERS SAINT FRAMBOURG OGNON,Villers-Saint-Frambourg-Ognon,Villers-Saint-Frambourg-Ognon -32,2019-01-01,COM,60682,0,VILLERS SAINT FRAMBOURG,Villers-Saint-Frambourg,Villers-Saint-Frambourg,COMD,60682,0,VILLERS SAINT FRAMBOURG,Villers-Saint-Frambourg,Villers-Saint-Frambourg 32,2019-01-01,COM,60682,0,VILLERS SAINT FRAMBOURG,Villers-Saint-Frambourg,Villers-Saint-Frambourg,COM,60682,0,VILLERS SAINT FRAMBOURG OGNON,Villers-Saint-Frambourg-Ognon,Villers-Saint-Frambourg-Ognon +32,2019-01-01,COM,60682,0,VILLERS SAINT FRAMBOURG,Villers-Saint-Frambourg,Villers-Saint-Frambourg,COMD,60682,0,VILLERS SAINT FRAMBOURG,Villers-Saint-Frambourg,Villers-Saint-Frambourg 32,2019-01-01,COM,60694,0,VILLOTRAN,Villotran,Villotran,COM,60054,4,HAUTS TALICAN,Hauts-Talican,Les Hauts-Talican 32,2019-01-01,COM,60694,0,VILLOTRAN,Villotran,Villotran,COMD,60694,0,VILLOTRAN,Villotran,Villotran 32,2019-01-01,COM,61172,0,FONTENAI LES LOUVETS,Fontenai-les-Louvets,Fontenai-les-Louvets,COMD,61172,0,FONTENAI LES LOUVETS,Fontenai-les-Louvets,Fontenai-les-Louvets 32,2019-01-01,COM,61172,0,FONTENAI LES LOUVETS,Fontenai-les-Louvets,Fontenai-les-Louvets,COM,61228,5,OREE D ECOUVES,Orée-d'Écouves,L'Orée-d'Écouves -32,2019-01-01,COM,61228,0,LIVAIE,Livaie,Livaie,COM,61228,5,OREE D ECOUVES,Orée-d'Écouves,L'Orée-d'Écouves 32,2019-01-01,COM,61228,0,LIVAIE,Livaie,Livaie,COMD,61228,0,LIVAIE,Livaie,Livaie +32,2019-01-01,COM,61228,0,LIVAIE,Livaie,Livaie,COM,61228,5,OREE D ECOUVES,Orée-d'Écouves,L'Orée-d'Écouves 32,2019-01-01,COM,61231,0,LONGUENOE,Longuenoë,Longuenoë,COM,61228,5,OREE D ECOUVES,Orée-d'Écouves,L'Orée-d'Écouves 32,2019-01-01,COM,61231,0,LONGUENOE,Longuenoë,Longuenoë,COMD,61231,0,LONGUENOE,Longuenoë,Longuenoë -32,2019-01-01,COM,61294,0,MORTREE,Mortrée,Mortrée,COMD,61294,0,MORTREE,Mortrée,Mortrée 32,2019-01-01,COM,61294,0,MORTREE,Mortrée,Mortrée,COM,61294,0,MORTREE,Mortrée,Mortrée -32,2019-01-01,COM,61383,0,SAINT DIDIER SOUS ECOUVES,Saint-Didier-sous-Écouves,Saint-Didier-sous-Écouves,COMD,61383,0,SAINT DIDIER SOUS ECOUVES,Saint-Didier-sous-Écouves,Saint-Didier-sous-Écouves +32,2019-01-01,COM,61294,0,MORTREE,Mortrée,Mortrée,COMD,61294,0,MORTREE,Mortrée,Mortrée 32,2019-01-01,COM,61383,0,SAINT DIDIER SOUS ECOUVES,Saint-Didier-sous-Écouves,Saint-Didier-sous-Écouves,COM,61228,5,OREE D ECOUVES,Orée-d'Écouves,L'Orée-d'Écouves +32,2019-01-01,COM,61383,0,SAINT DIDIER SOUS ECOUVES,Saint-Didier-sous-Écouves,Saint-Didier-sous-Écouves,COMD,61383,0,SAINT DIDIER SOUS ECOUVES,Saint-Didier-sous-Écouves,Saint-Didier-sous-Écouves 32,2019-01-01,COM,61403,0,SAINT HILAIRE LA GERARD,Saint-Hilaire-la-Gérard,Saint-Hilaire-la-Gérard,COM,61294,0,MORTREE,Mortrée,Mortrée 32,2019-01-01,COM,61403,0,SAINT HILAIRE LA GERARD,Saint-Hilaire-la-Gérard,Saint-Hilaire-la-Gérard,COMD,61403,0,SAINT HILAIRE LA GERARD,Saint-Hilaire-la-Gérard,Saint-Hilaire-la-Gérard 32,2019-01-01,COM,62154,0,BONNIERES,Bonnières,Bonnières,COM,62154,0,BONNIERES,Bonnières,Bonnières @@ -1420,10 +1282,10 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2019-01-01,COM,63078,0,CHAMEANE,Chaméane,Chaméane,COMD,63078,0,CHAMEANE,Chaméane,Chaméane 32,2019-01-01,COM,63078,0,CHAMEANE,Chaméane,Chaméane,COM,63448,0,LE VERNET CHAMEANE,Le Vernet-Chaméane,Le Vernet-Chaméane 32,2019-01-01,COM,63127,0,CRESTE,Creste,Creste,COM,63335,0,SAINT DIERY,Saint-Diéry,Saint-Diéry -32,2019-01-01,COM,63133,0,DALLET,Dallet,Dallet,COM,63226,0,MUR SUR ALLIER,Mur-sur-Allier,Mur-sur-Allier 32,2019-01-01,COM,63133,0,DALLET,Dallet,Dallet,COMD,63133,0,DALLET,Dallet,Dallet -32,2019-01-01,COM,63226,0,MEZEL,Mezel,Mezel,COMD,63226,0,MEZEL,Mezel,Mezel +32,2019-01-01,COM,63133,0,DALLET,Dallet,Dallet,COM,63226,0,MUR SUR ALLIER,Mur-sur-Allier,Mur-sur-Allier 32,2019-01-01,COM,63226,0,MEZEL,Mezel,Mezel,COM,63226,0,MUR SUR ALLIER,Mur-sur-Allier,Mur-sur-Allier +32,2019-01-01,COM,63226,0,MEZEL,Mezel,Mezel,COMD,63226,0,MEZEL,Mezel,Mezel 32,2019-01-01,COM,63335,0,SAINT DIERY,Saint-Diéry,Saint-Diéry,COM,63335,0,SAINT DIERY,Saint-Diéry,Saint-Diéry 32,2019-01-01,COM,63448,0,VERNET LA VARENNE,Vernet-la-Varenne,Vernet-la-Varenne,COM,63448,0,LE VERNET CHAMEANE,Le Vernet-Chaméane,Le Vernet-Chaméane 32,2019-01-01,COM,63448,0,VERNET LA VARENNE,Vernet-la-Varenne,Vernet-la-Varenne,COMD,63448,0,VERNET LA VARENNE,Vernet-la-Varenne,Vernet-la-Varenne @@ -1431,56 +1293,46 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2019-01-01,COM,65092,0,BEYREDE JUMET,Beyrède-Jumet,Beyrède-Jumet,COM,65092,0,BEYREDE JUMET CAMOUS,Beyrède-Jumet-Camous,Beyrède-Jumet-Camous 32,2019-01-01,COM,65122,0,CAMOUS,Camous,Camous,COM,65092,0,BEYREDE JUMET CAMOUS,Beyrède-Jumet-Camous,Beyrède-Jumet-Camous 32,2019-01-01,COM,65122,0,CAMOUS,Camous,Camous,COMD,65122,0,CAMOUS,Camous,Camous -32,2019-01-01,COM,67014,1,AUENHEIM,Auenheim,Auenheim,COM,67418,0,ROUNTZENHEIM AUENHEIM,Rountzenheim-Auenheim,Rountzenheim-Auenheim 32,2019-01-01,COM,67014,1,AUENHEIM,Auenheim,Auenheim,COMD,67014,1,AUENHEIM,Auenheim,Auenheim -32,2019-01-01,COMD,67372,0,PFAFFENHOFFEN,Pfaffenhoffen,Pfaffenhoffen,COMD,67372,0,PFAFFENHOFFEN,Pfaffenhoffen,Pfaffenhoffen +32,2019-01-01,COM,67014,1,AUENHEIM,Auenheim,Auenheim,COM,67418,0,ROUNTZENHEIM AUENHEIM,Rountzenheim-Auenheim,Rountzenheim-Auenheim 32,2019-01-01,COM,67372,0,VAL DE MODER,Val de Moder,Val de Moder,COM,67372,0,VAL DE MODER,Val-de-Moder,Val-de-Moder -32,2019-01-01,COMD,67372,0,PFAFFENHOFFEN,Pfaffenhoffen,Pfaffenhoffen,COM,67372,0,VAL DE MODER,Val-de-Moder,Val-de-Moder -32,2019-01-01,COM,67402,0,RINGELDORF,Ringeldorf,Ringeldorf,COMD,67402,0,RINGELDORF,Ringeldorf,Ringeldorf 32,2019-01-01,COM,67402,0,RINGELDORF,Ringeldorf,Ringeldorf,COM,67372,0,VAL DE MODER,Val-de-Moder,Val-de-Moder -32,2019-01-01,COM,67418,0,ROUNTZENHEIM,Rountzenheim,Rountzenheim,COMD,67418,0,ROUNTZENHEIM,Rountzenheim,Rountzenheim +32,2019-01-01,COM,67402,0,RINGELDORF,Ringeldorf,Ringeldorf,COMD,67402,0,RINGELDORF,Ringeldorf,Ringeldorf 32,2019-01-01,COM,67418,0,ROUNTZENHEIM,Rountzenheim,Rountzenheim,COM,67418,0,ROUNTZENHEIM AUENHEIM,Rountzenheim-Auenheim,Rountzenheim-Auenheim -32,2019-01-01,COMD,67496,1,UBERACH,Uberach,Uberach,COMD,67496,1,UBERACH,Uberach,Uberach -32,2019-01-01,COMD,67496,1,UBERACH,Uberach,Uberach,COM,67372,0,VAL DE MODER,Val-de-Moder,Val-de-Moder -32,2019-01-01,COMD,67512,3,WALCK,Walck,La Walck,COM,67372,0,VAL DE MODER,Val-de-Moder,Val-de-Moder -32,2019-01-01,COMD,67512,3,WALCK,Walck,La Walck,COMD,67512,3,WALCK,Walck,La Walck +32,2019-01-01,COM,67418,0,ROUNTZENHEIM,Rountzenheim,Rountzenheim,COMD,67418,0,ROUNTZENHEIM,Rountzenheim,Rountzenheim 32,2019-01-01,COM,69015,1,AVENAS,Avenas,Avenas,COMD,69015,1,AVENAS,Avenas,Avenas 32,2019-01-01,COM,69015,1,AVENAS,Avenas,Avenas,COM,69135,0,DEUX GROSNES,Deux-Grosnes,Deux-Grosnes 32,2019-01-01,COM,69019,0,BELLEVILLE,Belleville,Belleville,COMD,69019,0,BELLEVILLE,Belleville,Belleville 32,2019-01-01,COM,69019,0,BELLEVILLE,Belleville,Belleville,COM,69019,0,BELLEVILLE EN BEAUJOLAIS,Belleville-en-Beaujolais,Belleville-en-Beaujolais 32,2019-01-01,COM,69073,0,DAREIZE,Dareizé,Dareizé,COMD,69073,0,DAREIZE,Dareizé,Dareizé 32,2019-01-01,COM,69073,0,DAREIZE,Dareizé,Dareizé,COM,69157,0,VINDRY SUR TURDINE,Vindry-sur-Turdine,Vindry-sur-Turdine -32,2019-01-01,COM,69101,0,JARNIOUX,Jarnioux,Jarnioux,COM,69159,0,PORTE DES PIERRES DOREES,Porte des Pierres Dorées,Porte des Pierres Dorées 32,2019-01-01,COM,69101,0,JARNIOUX,Jarnioux,Jarnioux,COMD,69101,0,JARNIOUX,Jarnioux,Jarnioux -32,2019-01-01,COMD,69114,0,LIERGUES,Liergues,Liergues,COM,69159,0,PORTE DES PIERRES DOREES,Porte des Pierres Dorées,Porte des Pierres Dorées -32,2019-01-01,COMD,69114,0,LIERGUES,Liergues,Liergues,COMD,69114,0,LIERGUES,Liergues,Liergues -32,2019-01-01,COM,69135,0,MONSOLS,Monsols,Monsols,COM,69135,0,DEUX GROSNES,Deux-Grosnes,Deux-Grosnes +32,2019-01-01,COM,69101,0,JARNIOUX,Jarnioux,Jarnioux,COM,69159,0,PORTE DES PIERRES DOREES,Porte des Pierres Dorées,Porte des Pierres Dorées 32,2019-01-01,COM,69135,0,MONSOLS,Monsols,Monsols,COMD,69135,0,MONSOLS,Monsols,Monsols -32,2019-01-01,COM,69147,4,OLMES,Olmes,Les Olmes,COM,69157,0,VINDRY SUR TURDINE,Vindry-sur-Turdine,Vindry-sur-Turdine +32,2019-01-01,COM,69135,0,MONSOLS,Monsols,Monsols,COM,69135,0,DEUX GROSNES,Deux-Grosnes,Deux-Grosnes 32,2019-01-01,COM,69147,4,OLMES,Olmes,Les Olmes,COMD,69147,4,OLMES,Olmes,Les Olmes +32,2019-01-01,COM,69147,4,OLMES,Olmes,Les Olmes,COM,69157,0,VINDRY SUR TURDINE,Vindry-sur-Turdine,Vindry-sur-Turdine 32,2019-01-01,COM,69150,1,OUROUX,Ouroux,Ouroux,COM,69135,0,DEUX GROSNES,Deux-Grosnes,Deux-Grosnes 32,2019-01-01,COM,69150,1,OUROUX,Ouroux,Ouroux,COMD,69150,1,OUROUX,Ouroux,Ouroux 32,2019-01-01,COM,69157,0,PONTCHARRA SUR TURDINE,Pontcharra-sur-Turdine,Pontcharra-sur-Turdine,COMD,69157,0,PONTCHARRA SUR TURDINE,Pontcharra-sur-Turdine,Pontcharra-sur-Turdine 32,2019-01-01,COM,69157,0,PONTCHARRA SUR TURDINE,Pontcharra-sur-Turdine,Pontcharra-sur-Turdine,COM,69157,0,VINDRY SUR TURDINE,Vindry-sur-Turdine,Vindry-sur-Turdine -32,2019-01-01,COMD,69159,0,POUILLY LE MONIAL,Pouilly-le-Monial,Pouilly-le-Monial,COMD,69159,0,POUILLY LE MONIAL,Pouilly-le-Monial,Pouilly-le-Monial 32,2019-01-01,COM,69159,0,PORTE DES PIERRES DOREES,Porte des Pierres Dorées,Porte des Pierres Dorées,COM,69159,0,PORTE DES PIERRES DOREES,Porte des Pierres Dorées,Porte des Pierres Dorées -32,2019-01-01,COMD,69159,0,POUILLY LE MONIAL,Pouilly-le-Monial,Pouilly-le-Monial,COM,69159,0,PORTE DES PIERRES DOREES,Porte des Pierres Dorées,Porte des Pierres Dorées 32,2019-01-01,COM,69185,0,SAINT CHRISTOPHE,Saint-Christophe,Saint-Christophe,COM,69135,0,DEUX GROSNES,Deux-Grosnes,Deux-Grosnes 32,2019-01-01,COM,69185,0,SAINT CHRISTOPHE,Saint-Christophe,Saint-Christophe,COMD,69185,0,SAINT CHRISTOPHE,Saint-Christophe,Saint-Christophe -32,2019-01-01,COM,69210,0,SAINT JACQUES DES ARRETS,Saint-Jacques-des-Arrêts,Saint-Jacques-des-Arrêts,COMD,69210,0,SAINT JACQUES DES ARRETS,Saint-Jacques-des-Arrêts,Saint-Jacques-des-Arrêts 32,2019-01-01,COM,69210,0,SAINT JACQUES DES ARRETS,Saint-Jacques-des-Arrêts,Saint-Jacques-des-Arrêts,COM,69135,0,DEUX GROSNES,Deux-Grosnes,Deux-Grosnes -32,2019-01-01,COM,69211,0,SAINT JEAN D ARDIERES,Saint-Jean-d'Ardières,Saint-Jean-d'Ardières,COMD,69211,0,SAINT JEAN D ARDIERES,Saint-Jean-d'Ardières,Saint-Jean-d'Ardières +32,2019-01-01,COM,69210,0,SAINT JACQUES DES ARRETS,Saint-Jacques-des-Arrêts,Saint-Jacques-des-Arrêts,COMD,69210,0,SAINT JACQUES DES ARRETS,Saint-Jacques-des-Arrêts,Saint-Jacques-des-Arrêts 32,2019-01-01,COM,69211,0,SAINT JEAN D ARDIERES,Saint-Jean-d'Ardières,Saint-Jean-d'Ardières,COM,69019,0,BELLEVILLE EN BEAUJOLAIS,Belleville-en-Beaujolais,Belleville-en-Beaujolais +32,2019-01-01,COM,69211,0,SAINT JEAN D ARDIERES,Saint-Jean-d'Ardières,Saint-Jean-d'Ardières,COMD,69211,0,SAINT JEAN D ARDIERES,Saint-Jean-d'Ardières,Saint-Jean-d'Ardières 32,2019-01-01,COM,69223,0,SAINT LOUP,Saint-Loup,Saint-Loup,COM,69157,0,VINDRY SUR TURDINE,Vindry-sur-Turdine,Vindry-sur-Turdine 32,2019-01-01,COM,69223,0,SAINT LOUP,Saint-Loup,Saint-Loup,COMD,69223,0,SAINT LOUP,Saint-Loup,Saint-Loup -32,2019-01-01,COM,69224,0,SAINT MAMERT,Saint-Mamert,Saint-Mamert,COMD,69224,0,SAINT MAMERT,Saint-Mamert,Saint-Mamert 32,2019-01-01,COM,69224,0,SAINT MAMERT,Saint-Mamert,Saint-Mamert,COM,69135,0,DEUX GROSNES,Deux-Grosnes,Deux-Grosnes +32,2019-01-01,COM,69224,0,SAINT MAMERT,Saint-Mamert,Saint-Mamert,COMD,69224,0,SAINT MAMERT,Saint-Mamert,Saint-Mamert 32,2019-01-01,COM,69251,0,TRADES,Trades,Trades,COM,69135,0,DEUX GROSNES,Deux-Grosnes,Deux-Grosnes 32,2019-01-01,COM,69251,0,TRADES,Trades,Trades,COMD,69251,0,TRADES,Trades,Trades 32,2019-01-01,COMA,70108,0,BUSSUREL,Bussurel,Bussurel,COMD,70108,0,BUSSUREL,Bussurel,Bussurel 32,2019-01-01,COMA,70108,0,BUSSUREL,Bussurel,Bussurel,COM,70285,1,HERICOURT,Héricourt,Héricourt -32,2019-01-01,COM,70245,0,FOUGEROLLES,Fougerolles,Fougerolles,COM,70245,0,FOUGEROLLES SAINT VALBERT,Fougerolles-Saint-Valbert,Fougerolles-Saint-Valbert 32,2019-01-01,COM,70245,0,FOUGEROLLES,Fougerolles,Fougerolles,COMD,70245,0,FOUGEROLLES,Fougerolles,Fougerolles +32,2019-01-01,COM,70245,0,FOUGEROLLES,Fougerolles,Fougerolles,COM,70245,0,FOUGEROLLES SAINT VALBERT,Fougerolles-Saint-Valbert,Fougerolles-Saint-Valbert 32,2019-01-01,COM,70285,1,HERICOURT,Héricourt,Héricourt,COM,70285,1,HERICOURT,Héricourt,Héricourt 32,2019-01-01,COM,70375,0,MOTEY SUR SAONE,Motey-sur-Saône,Motey-sur-Saône,COM,70491,0,SEVEUX MOTEY,Seveux-Motey,Seveux-Motey 32,2019-01-01,COM,70475,0,SAINT VALBERT,Saint-Valbert,Saint-Valbert,COM,70245,0,FOUGEROLLES SAINT VALBERT,Fougerolles-Saint-Valbert,Fougerolles-Saint-Valbert @@ -1488,8 +1340,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2019-01-01,COM,70491,0,SEVEUX,Seveux,Seveux,COM,70491,0,SEVEUX MOTEY,Seveux-Motey,Seveux-Motey 32,2019-01-01,COM,70497,0,TAVEY,Tavey,Tavey,COM,70285,1,HERICOURT,Héricourt,Héricourt 32,2019-01-01,COM,70497,0,TAVEY,Tavey,Tavey,COMD,70497,0,TAVEY,Tavey,Tavey -32,2019-01-01,COM,71055,0,BRANDON,Brandon,Brandon,COM,71134,0,NAVOUR SUR GROSNE,Navour-sur-Grosne,Navour-sur-Grosne 32,2019-01-01,COM,71055,0,BRANDON,Brandon,Brandon,COMD,71055,0,BRANDON,Brandon,Brandon +32,2019-01-01,COM,71055,0,BRANDON,Brandon,Brandon,COM,71134,0,NAVOUR SUR GROSNE,Navour-sur-Grosne,Navour-sur-Grosne 32,2019-01-01,COM,71134,0,CLERMAIN,Clermain,Clermain,COM,71134,0,NAVOUR SUR GROSNE,Navour-sur-Grosne,Navour-sur-Grosne 32,2019-01-01,COM,71134,0,CLERMAIN,Clermain,Clermain,COMD,71134,0,CLERMAIN,Clermain,Clermain 32,2019-01-01,COM,71304,0,MONTAGNY SUR GROSNE,Montagny-sur-Grosne,Montagny-sur-Grosne,COM,71134,0,NAVOUR SUR GROSNE,Navour-sur-Grosne,Navour-sur-Grosne @@ -1501,110 +1353,106 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2019-01-01,COM,72081,0,CHERREAU,Cherreau,Cherreau,COMD,72081,0,CHERREAU,Cherreau,Cherreau 32,2019-01-01,COM,72097,0,COULOMBIERS,Coulombiers,Coulombiers,COMD,72097,0,COULOMBIERS,Coulombiers,Coulombiers 32,2019-01-01,COM,72097,0,COULOMBIERS,Coulombiers,Coulombiers,COM,72138,0,FRESNAY SUR SARTHE,Fresnay-sur-Sarthe,Fresnay-sur-Sarthe -32,2019-01-01,COM,72116,0,DISSE SOUS BALLON,Dissé-sous-Ballon,Dissé-sous-Ballon,COM,72189,0,MAROLLES LES BRAULTS,Marolles-les-Braults,Marolles-les-Braults 32,2019-01-01,COM,72116,0,DISSE SOUS BALLON,Dissé-sous-Ballon,Dissé-sous-Ballon,COMD,72116,0,DISSE SOUS BALLON,Dissé-sous-Ballon,Dissé-sous-Ballon -32,2019-01-01,COM,72128,1,EVAILLE,Évaillé,Évaillé,COMD,72128,1,EVAILLE,Évaillé,Évaillé +32,2019-01-01,COM,72116,0,DISSE SOUS BALLON,Dissé-sous-Ballon,Dissé-sous-Ballon,COM,72189,0,MAROLLES LES BRAULTS,Marolles-les-Braults,Marolles-les-Braults 32,2019-01-01,COM,72128,1,EVAILLE,Évaillé,Évaillé,COM,72128,0,VAL D ETANGSON,Val-d'Étangson,Val-d'Étangson +32,2019-01-01,COM,72128,1,EVAILLE,Évaillé,Évaillé,COMD,72128,1,EVAILLE,Évaillé,Évaillé 32,2019-01-01,COM,72138,0,FRESNAY SUR SARTHE,Fresnay-sur-Sarthe,Fresnay-sur-Sarthe,COM,72138,0,FRESNAY SUR SARTHE,Fresnay-sur-Sarthe,Fresnay-sur-Sarthe 32,2019-01-01,COM,72189,0,MAROLLES LES BRAULTS,Marolles-les-Braults,Marolles-les-Braults,COMD,72189,0,MAROLLES LES BRAULTS,Marolles-les-Braults,Marolles-les-Braults 32,2019-01-01,COM,72189,0,MAROLLES LES BRAULTS,Marolles-les-Braults,Marolles-les-Braults,COM,72189,0,MAROLLES LES BRAULTS,Marolles-les-Braults,Marolles-les-Braults 32,2019-01-01,COM,72219,0,NEUVY EN CHAMPAGNE,Neuvy-en-Champagne,Neuvy-en-Champagne,COM,72219,0,BERNAY NEUVY EN CHAMPAGNE,Bernay-Neuvy-en-Champagne,Bernay-Neuvy-en-Champagne -32,2019-01-01,COM,72284,0,SAINT GERMAIN SUR SARTHE,Saint-Germain-sur-Sarthe,Saint-Germain-sur-Sarthe,COMD,72284,0,SAINT GERMAIN SUR SARTHE,Saint-Germain-sur-Sarthe,Saint-Germain-sur-Sarthe 32,2019-01-01,COM,72284,0,SAINT GERMAIN SUR SARTHE,Saint-Germain-sur-Sarthe,Saint-Germain-sur-Sarthe,COM,72138,0,FRESNAY SUR SARTHE,Fresnay-sur-Sarthe,Fresnay-sur-Sarthe -32,2019-01-01,COM,72304,0,SAINTE OSMANE,Sainte-Osmane,Sainte-Osmane,COMD,72304,0,SAINTE OSMANE,Sainte-Osmane,Sainte-Osmane +32,2019-01-01,COM,72284,0,SAINT GERMAIN SUR SARTHE,Saint-Germain-sur-Sarthe,Saint-Germain-sur-Sarthe,COMD,72284,0,SAINT GERMAIN SUR SARTHE,Saint-Germain-sur-Sarthe,Saint-Germain-sur-Sarthe 32,2019-01-01,COM,72304,0,SAINTE OSMANE,Sainte-Osmane,Sainte-Osmane,COM,72128,0,VAL D ETANGSON,Val-d'Étangson,Val-d'Étangson +32,2019-01-01,COM,72304,0,SAINTE OSMANE,Sainte-Osmane,Sainte-Osmane,COMD,72304,0,SAINTE OSMANE,Sainte-Osmane,Sainte-Osmane 32,2019-01-01,COM,73002,1,AIGUEBELLE,Aiguebelle,Aiguebelle,COMD,73002,1,AIGUEBELLE,Aiguebelle,Aiguebelle 32,2019-01-01,COM,73002,1,AIGUEBELLE,Aiguebelle,Aiguebelle,COM,73212,0,VAL D ARC,Val-d'Arc,Val-d'Arc -32,2019-01-01,COM,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche,COMD,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche 32,2019-01-01,COM,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche,COM,73003,0,GRAND AIGUEBLANCHE,Grand-Aigueblanche,Grand-Aigueblanche +32,2019-01-01,COM,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche,COMD,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche 32,2019-01-01,COM,73045,2,BOIS,Bois,Le Bois,COM,73003,0,GRAND AIGUEBLANCHE,Grand-Aigueblanche,Grand-Aigueblanche 32,2019-01-01,COM,73045,2,BOIS,Bois,Le Bois,COMD,73045,2,BOIS,Bois,Le Bois -32,2019-01-01,COM,73046,0,BONNEVAL,Bonneval,Bonneval,COM,73187,3,LECHERE,Léchère,La Léchère 32,2019-01-01,COM,73046,0,BONNEVAL,Bonneval,Bonneval,COMD,73046,0,BONNEVAL,Bonneval,Bonneval +32,2019-01-01,COM,73046,0,BONNEVAL,Bonneval,Bonneval,COM,73187,3,LECHERE,Léchère,La Léchère 32,2019-01-01,COMA,73060,0,CELLIERS,Celliers,Celliers,COMD,73060,0,CELLIERS,Celliers,Celliers 32,2019-01-01,COMA,73060,0,CELLIERS,Celliers,Celliers,COM,73187,3,LECHERE,Léchère,La Léchère -32,2019-01-01,COM,73080,2,CHATEL,Châtel,Le Châtel,COM,73135,3,TOUR EN MAURIENNE,Tour-en-Maurienne,La Tour-en-Maurienne 32,2019-01-01,COM,73080,2,CHATEL,Châtel,Le Châtel,COMD,73080,2,CHATEL,Châtel,Le Châtel -32,2019-01-01,COMA,73102,0,DOUCY,Doucy,Doucy,COM,73187,3,LECHERE,Léchère,La Léchère +32,2019-01-01,COM,73080,2,CHATEL,Châtel,Le Châtel,COM,73135,3,TOUR EN MAURIENNE,Tour-en-Maurienne,La Tour-en-Maurienne 32,2019-01-01,COMA,73102,0,DOUCY,Doucy,Doucy,COMD,73102,0,DOUCY,Doucy,Doucy +32,2019-01-01,COMA,73102,0,DOUCY,Doucy,Doucy,COM,73187,3,LECHERE,Léchère,La Léchère 32,2019-01-01,COM,73111,1,ETABLE,Étable,Étable,COMD,73111,1,ETABLE,Étable,Étable 32,2019-01-01,COM,73111,1,ETABLE,Étable,Étable,COM,73215,0,VALGELON LA ROCHETTE,Valgelon-La Rochette,Valgelon-La Rochette 32,2019-01-01,COM,73112,0,FEISSONS SUR ISERE,Feissons-sur-Isère,Feissons-sur-Isère,COMD,73112,0,FEISSONS SUR ISERE,Feissons-sur-Isère,Feissons-sur-Isère 32,2019-01-01,COM,73112,0,FEISSONS SUR ISERE,Feissons-sur-Isère,Feissons-sur-Isère,COM,73187,3,LECHERE,Léchère,La Léchère -32,2019-01-01,COM,73118,0,FRANCIN,Francin,Francin,COM,73151,0,PORTE DE SAVOIE,Porte-de-Savoie,Porte-de-Savoie 32,2019-01-01,COM,73118,0,FRANCIN,Francin,Francin,COMD,73118,0,FRANCIN,Francin,Francin +32,2019-01-01,COM,73118,0,FRANCIN,Francin,Francin,COM,73151,0,PORTE DE SAVOIE,Porte-de-Savoie,Porte-de-Savoie 32,2019-01-01,COM,73127,0,GRESIN,Gresin,Gresin,COMD,73127,0,GRESIN,Gresin,Gresin 32,2019-01-01,COM,73127,0,GRESIN,Gresin,Gresin,COM,73236,0,SAINT GENIX LES VILLAGES,Saint-Genix-les-Villages,Saint-Genix-les-Villages -32,2019-01-01,COM,73135,1,HERMILLON,Hermillon,Hermillon,COMD,73135,1,HERMILLON,Hermillon,Hermillon 32,2019-01-01,COM,73135,1,HERMILLON,Hermillon,Hermillon,COM,73135,3,TOUR EN MAURIENNE,Tour-en-Maurienne,La Tour-en-Maurienne -32,2019-01-01,COM,73151,4,MARCHES,Marches,Les Marches,COM,73151,0,PORTE DE SAVOIE,Porte-de-Savoie,Porte-de-Savoie +32,2019-01-01,COM,73135,1,HERMILLON,Hermillon,Hermillon,COMD,73135,1,HERMILLON,Hermillon,Hermillon 32,2019-01-01,COM,73151,4,MARCHES,Marches,Les Marches,COMD,73151,4,MARCHES,Marches,Les Marches +32,2019-01-01,COM,73151,4,MARCHES,Marches,Les Marches,COM,73151,0,PORTE DE SAVOIE,Porte-de-Savoie,Porte-de-Savoie 32,2019-01-01,COMA,73172,0,MONTPASCAL,Montpascal,Montpascal,COM,73135,3,TOUR EN MAURIENNE,Tour-en-Maurienne,La Tour-en-Maurienne -32,2019-01-01,COMA,73185,0,NAVES,Naves,Naves,COM,73187,3,LECHERE,Léchère,La Léchère 32,2019-01-01,COMA,73185,0,NAVES,Naves,Naves,COMD,73185,0,NAVES,Naves,Naves +32,2019-01-01,COMA,73185,0,NAVES,Naves,Naves,COM,73187,3,LECHERE,Léchère,La Léchère 32,2019-01-01,COM,73187,3,LECHERE,Léchère,La Léchère,COM,73187,3,LECHERE,Léchère,La Léchère 32,2019-01-01,COM,73187,3,LECHERE,Léchère,La Léchère,COMD,73187,0,NOTRE DAME DE BRIANCON,Notre-Dame-de-Briançon,Notre-Dame-de-Briançon -32,2019-01-01,COMA,73199,0,PETIT COEUR,Petit-Cœur,Petit-Cœur,COMD,73199,0,PETIT COEUR,Petit-Cœur,Petit-Cœur -32,2019-01-01,COMA,73199,0,PETIT COEUR,Petit-Cœur,Petit-Cœur,COM,73187,3,LECHERE,Léchère,La Léchère +32,2019-01-01,COMA,73199,0,PETIT COUR,Petit-Cœur,Petit-Cœur,COM,73187,3,LECHERE,Léchère,La Léchère +32,2019-01-01,COMA,73199,0,PETIT COUR,Petit-Cœur,Petit-Cœur,COMD,73199,0,PETIT COUR,Petit-Cœur,Petit-Cœur 32,2019-01-01,COM,73203,0,PONTAMAFREY MONTPASCAL,Pontamafrey-Montpascal,Pontamafrey-Montpascal,COM,73135,3,TOUR EN MAURIENNE,Tour-en-Maurienne,La Tour-en-Maurienne 32,2019-01-01,COM,73203,0,PONTAMAFREY MONTPASCAL,Pontamafrey-Montpascal,Pontamafrey-Montpascal,COMD,73203,0,PONTAMAFREY MONTPASCAL,Pontamafrey-Montpascal,Pontamafrey-Montpascal -32,2019-01-01,COMA,73209,0,PUSSY,Pussy,Pussy,COMD,73209,0,PUSSY,Pussy,Pussy 32,2019-01-01,COMA,73209,0,PUSSY,Pussy,Pussy,COM,73187,3,LECHERE,Léchère,La Léchère -32,2019-01-01,COM,73212,0,RANDENS,Randens,Randens,COMD,73212,0,RANDENS,Randens,Randens +32,2019-01-01,COMA,73209,0,PUSSY,Pussy,Pussy,COMD,73209,0,PUSSY,Pussy,Pussy 32,2019-01-01,COM,73212,0,RANDENS,Randens,Randens,COM,73212,0,VAL D ARC,Val-d'Arc,Val-d'Arc -32,2019-01-01,COM,73215,3,ROCHETTE,Rochette,La Rochette,COMD,73215,3,ROCHETTE,Rochette,La Rochette +32,2019-01-01,COM,73212,0,RANDENS,Randens,Randens,COMD,73212,0,RANDENS,Randens,Randens 32,2019-01-01,COM,73215,3,ROCHETTE,Rochette,La Rochette,COM,73215,0,VALGELON LA ROCHETTE,Valgelon-La Rochette,Valgelon-La Rochette +32,2019-01-01,COM,73215,3,ROCHETTE,Rochette,La Rochette,COMD,73215,3,ROCHETTE,Rochette,La Rochette 32,2019-01-01,COM,73236,0,SAINT GENIX SUR GUIERS,Saint-Genix-sur-Guiers,Saint-Genix-sur-Guiers,COM,73236,0,SAINT GENIX LES VILLAGES,Saint-Genix-les-Villages,Saint-Genix-les-Villages 32,2019-01-01,COM,73236,0,SAINT GENIX SUR GUIERS,Saint-Genix-sur-Guiers,Saint-Genix-sur-Guiers,COMD,73236,0,SAINT GENIX SUR GUIERS,Saint-Genix-sur-Guiers,Saint-Genix-sur-Guiers -32,2019-01-01,COM,73244,0,SAINT JEAN DE BELLEVILLE,Saint-Jean-de-Belleville,Saint-Jean-de-Belleville,COM,73257,4,BELLEVILLE,Belleville,Les Belleville 32,2019-01-01,COM,73244,0,SAINT JEAN DE BELLEVILLE,Saint-Jean-de-Belleville,Saint-Jean-de-Belleville,COMD,73244,0,SAINT JEAN DE BELLEVILLE,Saint-Jean-de-Belleville,Saint-Jean-de-Belleville -32,2019-01-01,COMD,73257,0,SAINT MARTIN DE BELLEVILLE,Saint-Martin-de-Belleville,Saint-Martin-de-Belleville,COMD,73257,0,SAINT MARTIN DE BELLEVILLE,Saint-Martin-de-Belleville,Saint-Martin-de-Belleville +32,2019-01-01,COM,73244,0,SAINT JEAN DE BELLEVILLE,Saint-Jean-de-Belleville,Saint-Jean-de-Belleville,COM,73257,4,BELLEVILLE,Belleville,Les Belleville 32,2019-01-01,COM,73257,4,BELLEVILLE,Belleville,Les Belleville,COM,73257,4,BELLEVILLE,Belleville,Les Belleville -32,2019-01-01,COMD,73257,0,SAINT MARTIN DE BELLEVILLE,Saint-Martin-de-Belleville,Saint-Martin-de-Belleville,COM,73257,4,BELLEVILLE,Belleville,Les Belleville -32,2019-01-01,COM,73260,0,SAINT MAURICE DE ROTHERENS,Saint-Maurice-de-Rotherens,Saint-Maurice-de-Rotherens,COMD,73260,0,SAINT MAURICE DE ROTHERENS,Saint-Maurice-de-Rotherens,Saint-Maurice-de-Rotherens 32,2019-01-01,COM,73260,0,SAINT MAURICE DE ROTHERENS,Saint-Maurice-de-Rotherens,Saint-Maurice-de-Rotherens,COM,73236,0,SAINT GENIX LES VILLAGES,Saint-Genix-les-Villages,Saint-Genix-les-Villages +32,2019-01-01,COM,73260,0,SAINT MAURICE DE ROTHERENS,Saint-Maurice-de-Rotherens,Saint-Maurice-de-Rotherens,COMD,73260,0,SAINT MAURICE DE ROTHERENS,Saint-Maurice-de-Rotherens,Saint-Maurice-de-Rotherens 32,2019-01-01,COM,73266,0,SAINT OYEN,Saint-Oyen,Saint-Oyen,COM,73003,0,GRAND AIGUEBLANCHE,Grand-Aigueblanche,Grand-Aigueblanche 32,2019-01-01,COM,73266,0,SAINT OYEN,Saint-Oyen,Saint-Oyen,COMD,73266,0,SAINT OYEN,Saint-Oyen,Saint-Oyen -32,2019-01-01,COMD,73321,0,VILLARLURIN,Villarlurin,Villarlurin,COMD,73321,0,VILLARLURIN,Villarlurin,Villarlurin -32,2019-01-01,COMD,73321,0,VILLARLURIN,Villarlurin,Villarlurin,COM,73257,4,BELLEVILLE,Belleville,Les Belleville 32,2019-01-01,COM,74110,1,ENTREMONT,Entremont,Entremont,COM,74212,0,GLIERES VAL DE BORNE,Glières-Val-de-Borne,Glières-Val-de-Borne 32,2019-01-01,COM,74212,2,PETIT BORNAND LES GLIERES,Petit-Bornand-les-Glières,Le Petit-Bornand-les-Glières,COM,74212,0,GLIERES VAL DE BORNE,Glières-Val-de-Borne,Glières-Val-de-Borne 32,2019-01-01,COM,74274,0,VAL DE FIER,Val-de-Fier,Val-de-Fier,COM,74289,0,VALLIERES SUR FIER,Vallières-sur-Fier,Vallières-sur-Fier 32,2019-01-01,COM,74289,0,VALLIERES,Vallières,Vallières,COM,74289,0,VALLIERES SUR FIER,Vallières-sur-Fier,Vallières-sur-Fier -32,2019-01-01,COM,76034,1,AUFFAY,Auffay,Auffay,COM,76034,0,VAL DE SCIE,Val-de-Scie,Val-de-Scie 32,2019-01-01,COM,76034,1,AUFFAY,Auffay,Auffay,COMD,76034,1,AUFFAY,Auffay,Auffay -32,2019-01-01,COM,76041,1,AUTRETOT,Autretot,Autretot,COMD,76041,1,AUTRETOT,Autretot,Autretot +32,2019-01-01,COM,76034,1,AUFFAY,Auffay,Auffay,COM,76034,0,VAL DE SCIE,Val-de-Scie,Val-de-Scie 32,2019-01-01,COM,76041,1,AUTRETOT,Autretot,Autretot,COM,76041,4,HAUTS DE CAUX,Hauts-de-Caux,Les Hauts-de-Caux +32,2019-01-01,COM,76041,1,AUTRETOT,Autretot,Autretot,COMD,76041,1,AUTRETOT,Autretot,Autretot 32,2019-01-01,COM,76191,0,CRESSY,Cressy,Cressy,COM,76034,0,VAL DE SCIE,Val-de-Scie,Val-de-Scie 32,2019-01-01,COM,76191,0,CRESSY,Cressy,Cressy,COMD,76191,0,CRESSY,Cressy,Cressy -32,2019-01-01,COM,76674,0,SEVIS,Sévis,Sévis,COMD,76674,0,SEVIS,Sévis,Sévis 32,2019-01-01,COM,76674,0,SEVIS,Sévis,Sévis,COM,76034,0,VAL DE SCIE,Val-de-Scie,Val-de-Scie -32,2019-01-01,COM,76729,0,VEAUVILLE LES BAONS,Veauville-lès-Baons,Veauville-lès-Baons,COMD,76729,0,VEAUVILLE LES BAONS,Veauville-lès-Baons,Veauville-lès-Baons +32,2019-01-01,COM,76674,0,SEVIS,Sévis,Sévis,COMD,76674,0,SEVIS,Sévis,Sévis 32,2019-01-01,COM,76729,0,VEAUVILLE LES BAONS,Veauville-lès-Baons,Veauville-lès-Baons,COM,76041,4,HAUTS DE CAUX,Hauts-de-Caux,Les Hauts-de-Caux -32,2019-01-01,COM,77028,0,BEAUTHEIL,Beautheil,Beautheil,COM,77433,0,BEAUTHEIL SAINTS,Beautheil-Saints,Beautheil-Saints +32,2019-01-01,COM,76729,0,VEAUVILLE LES BAONS,Veauville-lès-Baons,Veauville-lès-Baons,COMD,76729,0,VEAUVILLE LES BAONS,Veauville-lès-Baons,Veauville-lès-Baons 32,2019-01-01,COM,77028,0,BEAUTHEIL,Beautheil,Beautheil,COMD,77028,0,BEAUTHEIL,Beautheil,Beautheil +32,2019-01-01,COM,77028,0,BEAUTHEIL,Beautheil,Beautheil,COM,77433,0,BEAUTHEIL SAINTS,Beautheil-Saints,Beautheil-Saints 32,2019-01-01,COM,77109,0,CHENOISE,Chenoise,Chenoise,COM,77109,0,CHENOISE CUCHARMOY,Chenoise-Cucharmoy,Chenoise-Cucharmoy 32,2019-01-01,COM,77149,0,CUCHARMOY,Cucharmoy,Cucharmoy,COM,77109,0,CHENOISE CUCHARMOY,Chenoise-Cucharmoy,Chenoise-Cucharmoy -32,2019-01-01,COM,77399,0,SAINT ANGE LE VIEL,Saint-Ange-le-Viel,Saint-Ange-le-Viel,COM,77504,0,VILLEMARECHAL,Villemaréchal,Villemaréchal 32,2019-01-01,COM,77399,0,SAINT ANGE LE VIEL,Saint-Ange-le-Viel,Saint-Ange-le-Viel,COMD,77399,0,SAINT ANGE LE VIEL,Saint-Ange-le-Viel,Saint-Ange-le-Viel +32,2019-01-01,COM,77399,0,SAINT ANGE LE VIEL,Saint-Ange-le-Viel,Saint-Ange-le-Viel,COM,77504,0,VILLEMARECHAL,Villemaréchal,Villemaréchal 32,2019-01-01,COM,77433,0,SAINTS,Saints,Saints,COM,77433,0,BEAUTHEIL SAINTS,Beautheil-Saints,Beautheil-Saints 32,2019-01-01,COM,77433,0,SAINTS,Saints,Saints,COMD,77433,0,SAINTS,Saints,Saints -32,2019-01-01,COM,77504,0,VILLEMARECHAL,Villemaréchal,Villemaréchal,COM,77504,0,VILLEMARECHAL,Villemaréchal,Villemaréchal 32,2019-01-01,COM,77504,0,VILLEMARECHAL,Villemaréchal,Villemaréchal,COMD,77504,0,VILLEMARECHAL,Villemaréchal,Villemaréchal -32,2019-01-01,COM,78158,2,CHESNAY,Chesnay,Le Chesnay,COM,78158,2,CHESNAY ROCQUENCOURT,Chesnay-Rocquencourt,Le Chesnay-Rocquencourt +32,2019-01-01,COM,77504,0,VILLEMARECHAL,Villemaréchal,Villemaréchal,COM,77504,0,VILLEMARECHAL,Villemaréchal,Villemaréchal 32,2019-01-01,COM,78158,2,CHESNAY,Chesnay,Le Chesnay,COMD,78158,2,CHESNAY,Chesnay,Le Chesnay -32,2019-01-01,COM,78251,0,FOURQUEUX,Fourqueux,Fourqueux,COM,78551,0,SAINT GERMAIN EN LAYE,Saint-Germain-en-Laye,Saint-Germain-en-Laye +32,2019-01-01,COM,78158,2,CHESNAY,Chesnay,Le Chesnay,COM,78158,2,CHESNAY ROCQUENCOURT,Chesnay-Rocquencourt,Le Chesnay-Rocquencourt 32,2019-01-01,COM,78251,0,FOURQUEUX,Fourqueux,Fourqueux,COMD,78251,0,FOURQUEUX,Fourqueux,Fourqueux -32,2019-01-01,COM,78320,0,JEUFOSSE,Jeufosse,Jeufosse,COMD,78320,0,JEUFOSSE,Jeufosse,Jeufosse +32,2019-01-01,COM,78251,0,FOURQUEUX,Fourqueux,Fourqueux,COM,78551,0,SAINT GERMAIN EN LAYE,Saint-Germain-en-Laye,Saint-Germain-en-Laye 32,2019-01-01,COM,78320,0,JEUFOSSE,Jeufosse,Jeufosse,COM,78320,0,NOTRE DAME DE LA MER,Notre-Dame-de-la-Mer,Notre-Dame-de-la-Mer +32,2019-01-01,COM,78320,0,JEUFOSSE,Jeufosse,Jeufosse,COMD,78320,0,JEUFOSSE,Jeufosse,Jeufosse 32,2019-01-01,COM,78503,0,PORT VILLEZ,Port-Villez,Port-Villez,COM,78320,0,NOTRE DAME DE LA MER,Notre-Dame-de-la-Mer,Notre-Dame-de-la-Mer 32,2019-01-01,COM,78503,0,PORT VILLEZ,Port-Villez,Port-Villez,COMD,78503,0,PORT VILLEZ,Port-Villez,Port-Villez 32,2019-01-01,COM,78524,0,ROCQUENCOURT,Rocquencourt,Rocquencourt,COM,78158,2,CHESNAY ROCQUENCOURT,Chesnay-Rocquencourt,Le Chesnay-Rocquencourt 32,2019-01-01,COM,78524,0,ROCQUENCOURT,Rocquencourt,Rocquencourt,COMD,78524,0,ROCQUENCOURT,Rocquencourt,Rocquencourt 32,2019-01-01,COM,78551,0,SAINT GERMAIN EN LAYE,Saint-Germain-en-Laye,Saint-Germain-en-Laye,COMD,78551,0,SAINT GERMAIN EN LAYE,Saint-Germain-en-Laye,Saint-Germain-en-Laye 32,2019-01-01,COM,78551,0,SAINT GERMAIN EN LAYE,Saint-Germain-en-Laye,Saint-Germain-en-Laye,COM,78551,0,SAINT GERMAIN EN LAYE,Saint-Germain-en-Laye,Saint-Germain-en-Laye -32,2019-01-01,COM,79004,1,AIGONNAY,Aigonnay,Aigonnay,COM,79185,1,AIGONDIGNE,Aigondigné,Aigondigné 32,2019-01-01,COM,79004,1,AIGONNAY,Aigonnay,Aigonnay,COMD,79004,1,AIGONNAY,Aigonnay,Aigonnay +32,2019-01-01,COM,79004,1,AIGONNAY,Aigonnay,Aigonnay,COM,79185,1,AIGONDIGNE,Aigondigné,Aigondigné 32,2019-01-01,COM,79005,1,AIRVAULT,Airvault,Airvault,COM,79005,1,AIRVAULT,Airvault,Airvault 32,2019-01-01,COM,79005,1,AIRVAULT,Airvault,Airvault,COMD,79005,1,AIRVAULT,Airvault,Airvault 32,2019-01-01,COM,79011,1,ARDILLEUX,Ardilleux,Ardilleux,COM,79140,0,VALDELAUME,Valdelaume,Valdelaume @@ -1614,97 +1462,93 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2019-01-01,COMA,79026,0,BAGNEUX,Bagneux,Bagneux,COMD,79026,0,BAGNEUX,Bagneux,Bagneux 32,2019-01-01,COM,79027,3,BATAILLE,Bataille,La Bataille,COMD,79027,3,BATAILLE,Bataille,La Bataille 32,2019-01-01,COM,79027,3,BATAILLE,Bataille,La Bataille,COM,79083,0,CHEF BOUTONNE,Chef-Boutonne,Chef-Boutonne -32,2019-01-01,COM,79035,2,BEUGNON,Beugnon,Le Beugnon,COM,79077,0,BEUGNON THIREUIL,Beugnon-Thireuil,Beugnon-Thireuil 32,2019-01-01,COM,79035,2,BEUGNON,Beugnon,Le Beugnon,COMD,79035,2,BEUGNON,Beugnon,Le Beugnon +32,2019-01-01,COM,79035,2,BEUGNON,Beugnon,Le Beugnon,COM,79077,0,BEUGNON THIREUIL,Beugnon-Thireuil,Beugnon-Thireuil 32,2019-01-01,COMA,79041,0,BORCQ SUR AIRVAULT,Borcq-sur-Airvault,Borcq-sur-Airvault,COM,79005,1,AIRVAULT,Airvault,Airvault 32,2019-01-01,COMA,79041,0,BORCQ SUR AIRVAULT,Borcq-sur-Airvault,Borcq-sur-Airvault,COMD,79041,0,BORCQ SUR AIRVAULT,Borcq-sur-Airvault,Borcq-sur-Airvault 32,2019-01-01,COM,79043,0,BOUILLE LORETZ,Bouillé-Loretz,Bouillé-Loretz,COM,79014,0,LORETZ D ARGENTON,Loretz-d'Argenton,Loretz-d'Argenton 32,2019-01-01,COM,79043,0,BOUILLE LORETZ,Bouillé-Loretz,Bouillé-Loretz,COMD,79043,0,BOUILLE LORETZ,Bouillé-Loretz,Bouillé-Loretz 32,2019-01-01,COM,79045,0,BOUIN,Bouin,Bouin,COM,79140,0,VALDELAUME,Valdelaume,Valdelaume -32,2019-01-01,COM,79051,2,BREUIL BERNARD,Breuil-Bernard,Le Breuil-Bernard,COM,79179,0,MONCOUTANT SUR SEVRE,Moncoutant-sur-Sèvre,Moncoutant-sur-Sèvre 32,2019-01-01,COM,79051,2,BREUIL BERNARD,Breuil-Bernard,Le Breuil-Bernard,COMD,79051,2,BREUIL BERNARD,Breuil-Bernard,Le Breuil-Bernard -32,2019-01-01,COM,79054,0,BRIE,Brie,Brie,COM,79196,0,PLAINE ET VALLEES,Plaine-et-Vallées,Plaine-et-Vallées +32,2019-01-01,COM,79051,2,BREUIL BERNARD,Breuil-Bernard,Le Breuil-Bernard,COM,79179,0,MONCOUTANT SUR SEVRE,Moncoutant-sur-Sèvre,Moncoutant-sur-Sèvre 32,2019-01-01,COM,79054,0,BRIE,Brie,Brie,COMD,79054,0,BRIE,Brie,Brie -32,2019-01-01,COM,79061,0,CELLES SUR BELLE,Celles-sur-Belle,Celles-sur-Belle,COMD,79061,0,CELLES SUR BELLE,Celles-sur-Belle,Celles-sur-Belle +32,2019-01-01,COM,79054,0,BRIE,Brie,Brie,COM,79196,0,PLAINE ET VALLEES,Plaine-et-Vallées,Plaine-et-Vallées 32,2019-01-01,COM,79061,0,CELLES SUR BELLE,Celles-sur-Belle,Celles-sur-Belle,COM,79061,0,CELLES SUR BELLE,Celles-sur-Belle,Celles-sur-Belle -32,2019-01-01,COM,79064,0,CHAIL,Chail,Chail,COMD,79064,0,CHAIL,Chail,Chail +32,2019-01-01,COM,79061,0,CELLES SUR BELLE,Celles-sur-Belle,Celles-sur-Belle,COMD,79061,0,CELLES SUR BELLE,Celles-sur-Belle,Celles-sur-Belle 32,2019-01-01,COM,79064,0,CHAIL,Chail,Chail,COM,79064,0,FONTIVILLIE,Fontivillié,Fontivillié +32,2019-01-01,COM,79064,0,CHAIL,Chail,Chail,COMD,79064,0,CHAIL,Chail,Chail 32,2019-01-01,COM,79068,0,CHANTECORPS,Chantecorps,Chantecorps,COMD,79068,0,CHANTECORPS,Chantecorps,Chantecorps 32,2019-01-01,COM,79068,0,CHANTECORPS,Chantecorps,Chantecorps,COM,79105,4,CHATELIERS,Châteliers,Les Châteliers 32,2019-01-01,COM,79075,3,CHAPELLE SAINT ETIENNE,Chapelle-Saint-Étienne,La Chapelle-Saint-Étienne,COMD,79075,3,CHAPELLE SAINT ETIENNE,Chapelle-Saint-Étienne,La Chapelle-Saint-Étienne 32,2019-01-01,COM,79075,3,CHAPELLE SAINT ETIENNE,Chapelle-Saint-Étienne,La Chapelle-Saint-Étienne,COM,79179,0,MONCOUTANT SUR SEVRE,Moncoutant-sur-Sèvre,Moncoutant-sur-Sèvre 32,2019-01-01,COM,79077,3,CHAPELLE THIREUIL,Chapelle-Thireuil,La Chapelle-Thireuil,COM,79077,0,BEUGNON THIREUIL,Beugnon-Thireuil,Beugnon-Thireuil 32,2019-01-01,COM,79077,3,CHAPELLE THIREUIL,Chapelle-Thireuil,La Chapelle-Thireuil,COMD,79077,3,CHAPELLE THIREUIL,Chapelle-Thireuil,La Chapelle-Thireuil -32,2019-01-01,COM,79083,0,CHEF BOUTONNE,Chef-Boutonne,Chef-Boutonne,COM,79083,0,CHEF BOUTONNE,Chef-Boutonne,Chef-Boutonne 32,2019-01-01,COM,79083,0,CHEF BOUTONNE,Chef-Boutonne,Chef-Boutonne,COMD,79083,0,CHEF BOUTONNE,Chef-Boutonne,Chef-Boutonne +32,2019-01-01,COM,79083,0,CHEF BOUTONNE,Chef-Boutonne,Chef-Boutonne,COM,79083,0,CHEF BOUTONNE,Chef-Boutonne,Chef-Boutonne 32,2019-01-01,COM,79098,3,COUARDE,Couarde,La Couarde,COMD,79098,3,COUARDE,Couarde,La Couarde 32,2019-01-01,COM,79098,3,COUARDE,Couarde,La Couarde,COM,79217,0,PRAILLES LA COUARDE,Prailles-La Couarde,Prailles-La Couarde 32,2019-01-01,COM,79105,0,COUTIERES,Coutières,Coutières,COMD,79105,0,COUTIERES,Coutières,Coutières 32,2019-01-01,COM,79105,0,COUTIERES,Coutières,Coutières,COM,79105,4,CHATELIERS,Châteliers,Les Châteliers -32,2019-01-01,COM,79107,0,CREZIERES,Crézières,Crézières,COMD,79107,0,CREZIERES,Crézières,Crézières 32,2019-01-01,COM,79107,0,CREZIERES,Crézières,Crézières,COM,79083,0,CHEF BOUTONNE,Chef-Boutonne,Chef-Boutonne +32,2019-01-01,COM,79107,0,CREZIERES,Crézières,Crézières,COMD,79107,0,CREZIERES,Crézières,Crézières 32,2019-01-01,COM,79140,0,HANC,Hanc,Hanc,COM,79140,0,VALDELAUME,Valdelaume,Valdelaume -32,2019-01-01,COM,79171,0,MAUZE THOUARSAIS,Mauzé-Thouarsais,Mauzé-Thouarsais,COM,79329,0,THOUARS,Thouars,Thouars 32,2019-01-01,COM,79171,0,MAUZE THOUARSAIS,Mauzé-Thouarsais,Mauzé-Thouarsais,COMD,79171,0,MAUZE THOUARSAIS,Mauzé-Thouarsais,Mauzé-Thouarsais +32,2019-01-01,COM,79171,0,MAUZE THOUARSAIS,Mauzé-Thouarsais,Mauzé-Thouarsais,COM,79329,0,THOUARS,Thouars,Thouars 32,2019-01-01,COM,79173,0,MAZIERES SUR BERONNE,Mazières-sur-Béronne,Mazières-sur-Béronne,COMD,79173,0,MAZIERES SUR BERONNE,Mazières-sur-Béronne,Mazières-sur-Béronne 32,2019-01-01,COM,79173,0,MAZIERES SUR BERONNE,Mazières-sur-Béronne,Mazières-sur-Béronne,COM,79174,0,MELLE,Melle,Melle -32,2019-01-01,COM,79174,0,MELLE,Melle,Melle,COM,79174,0,MELLE,Melle,Melle 32,2019-01-01,COM,79174,0,MELLE,Melle,Melle,COMD,79174,0,MELLE,Melle,Melle +32,2019-01-01,COM,79174,0,MELLE,Melle,Melle,COM,79174,0,MELLE,Melle,Melle 32,2019-01-01,COM,79178,0,MISSE,Missé,Missé,COMD,79178,0,MISSE,Missé,Missé 32,2019-01-01,COM,79178,0,MISSE,Missé,Missé,COM,79329,0,THOUARS,Thouars,Thouars 32,2019-01-01,COM,79179,0,MONCOUTANT,Moncoutant,Moncoutant,COM,79179,0,MONCOUTANT SUR SEVRE,Moncoutant-sur-Sèvre,Moncoutant-sur-Sèvre 32,2019-01-01,COM,79179,0,MONCOUTANT,Moncoutant,Moncoutant,COMD,79179,0,MONCOUTANT,Moncoutant,Moncoutant 32,2019-01-01,COMA,79181,0,MONTIGNE,Montigné,Montigné,COM,79061,0,CELLES SUR BELLE,Celles-sur-Belle,Celles-sur-Belle 32,2019-01-01,COMA,79181,0,MONTIGNE,Montigné,Montigné,COMD,79181,0,MONTIGNE,Montigné,Montigné -32,2019-01-01,COMD,79185,0,MOUGON,Mougon,Mougon,COMD,79185,0,MOUGON,Mougon,Mougon 32,2019-01-01,COM,79185,0,MOUGON THORIGNE,Mougon-Thorigné,Mougon-Thorigné,COM,79185,1,AIGONDIGNE,Aigondigné,Aigondigné -32,2019-01-01,COMD,79185,0,MOUGON,Mougon,Mougon,COM,79185,1,AIGONDIGNE,Aigondigné,Aigondigné -32,2019-01-01,COM,79188,0,MOUTIERS SOUS CHANTEMERLE,Moutiers-sous-Chantemerle,Moutiers-sous-Chantemerle,COMD,79188,0,MOUTIERS SOUS CHANTEMERLE,Moutiers-sous-Chantemerle,Moutiers-sous-Chantemerle 32,2019-01-01,COM,79188,0,MOUTIERS SOUS CHANTEMERLE,Moutiers-sous-Chantemerle,Moutiers-sous-Chantemerle,COM,79179,0,MONCOUTANT SUR SEVRE,Moncoutant-sur-Sèvre,Moncoutant-sur-Sèvre +32,2019-01-01,COM,79188,0,MOUTIERS SOUS CHANTEMERLE,Moutiers-sous-Chantemerle,Moutiers-sous-Chantemerle,COMD,79188,0,MOUTIERS SOUS CHANTEMERLE,Moutiers-sous-Chantemerle,Moutiers-sous-Chantemerle 32,2019-01-01,COM,79196,1,OIRON,Oiron,Oiron,COM,79196,0,PLAINE ET VALLEES,Plaine-et-Vallées,Plaine-et-Vallées 32,2019-01-01,COM,79196,1,OIRON,Oiron,Oiron,COMD,79196,1,OIRON,Oiron,Oiron 32,2019-01-01,COM,79199,0,PAIZAY LE TORT,Paizay-le-Tort,Paizay-le-Tort,COM,79174,0,MELLE,Melle,Melle 32,2019-01-01,COM,79199,0,PAIZAY LE TORT,Paizay-le-Tort,Paizay-le-Tort,COMD,79199,0,PAIZAY LE TORT,Paizay-le-Tort,Paizay-le-Tort 32,2019-01-01,COM,79211,0,PIOUSSAY,Pioussay,Pioussay,COM,79140,0,VALDELAUME,Valdelaume,Valdelaume -32,2019-01-01,COM,79214,0,POUFFONDS,Pouffonds,Pouffonds,COM,79251,0,MARCILLE,Marcillé,Marcillé 32,2019-01-01,COM,79214,0,POUFFONDS,Pouffonds,Pouffonds,COMD,79214,0,POUFFONDS,Pouffonds,Pouffonds +32,2019-01-01,COM,79214,0,POUFFONDS,Pouffonds,Pouffonds,COM,79251,0,MARCILLE,Marcillé,Marcillé 32,2019-01-01,COM,79217,0,PRAILLES,Prailles,Prailles,COM,79217,0,PRAILLES LA COUARDE,Prailles-La Couarde,Prailles-La Couarde 32,2019-01-01,COM,79217,0,PRAILLES,Prailles,Prailles,COMD,79217,0,PRAILLES,Prailles,Prailles -32,2019-01-01,COM,79219,0,PRIAIRES,Priaires,Priaires,COM,79334,0,VAL DU MIGNON,Val-du-Mignon,Val-du-Mignon 32,2019-01-01,COM,79219,0,PRIAIRES,Priaires,Priaires,COMD,79219,0,PRIAIRES,Priaires,Priaires -32,2019-01-01,COM,79222,0,PUGNY,Pugny,Pugny,COMD,79222,0,PUGNY,Pugny,Pugny +32,2019-01-01,COM,79219,0,PRIAIRES,Priaires,Priaires,COM,79334,0,VAL DU MIGNON,Val-du-Mignon,Val-du-Mignon 32,2019-01-01,COM,79222,0,PUGNY,Pugny,Pugny,COM,79179,0,MONCOUTANT SUR SEVRE,Moncoutant-sur-Sèvre,Moncoutant-sur-Sèvre +32,2019-01-01,COM,79222,0,PUGNY,Pugny,Pugny,COMD,79222,0,PUGNY,Pugny,Pugny 32,2019-01-01,COMA,79228,0,RIGNE,Rigné,Rigné,COM,79329,0,THOUARS,Thouars,Thouars 32,2019-01-01,COM,79240,0,SAINTE BLANDINE,Sainte-Blandine,Sainte-Blandine,COM,79185,1,AIGONDIGNE,Aigondigné,Aigondigné 32,2019-01-01,COM,79240,0,SAINTE BLANDINE,Sainte-Blandine,Sainte-Blandine,COMD,79240,0,SAINTE BLANDINE,Sainte-Blandine,Sainte-Blandine -32,2019-01-01,COM,79251,0,SAINT GENARD,Saint-Génard,Saint-Génard,COMD,79251,0,SAINT GENARD,Saint-Génard,Saint-Génard 32,2019-01-01,COM,79251,0,SAINT GENARD,Saint-Génard,Saint-Génard,COM,79251,0,MARCILLE,Marcillé,Marcillé -32,2019-01-01,COM,79260,0,SAINT JOUIN DE MARNES,Saint-Jouin-de-Marnes,Saint-Jouin-de-Marnes,COMD,79260,0,SAINT JOUIN DE MARNES,Saint-Jouin-de-Marnes,Saint-Jouin-de-Marnes +32,2019-01-01,COM,79251,0,SAINT GENARD,Saint-Génard,Saint-Génard,COMD,79251,0,SAINT GENARD,Saint-Génard,Saint-Génard 32,2019-01-01,COM,79260,0,SAINT JOUIN DE MARNES,Saint-Jouin-de-Marnes,Saint-Jouin-de-Marnes,COM,79196,0,PLAINE ET VALLEES,Plaine-et-Vallées,Plaine-et-Vallées -32,2019-01-01,COM,79261,0,SAINT JOUIN DE MILLY,Saint-Jouin-de-Milly,Saint-Jouin-de-Milly,COMD,79261,0,SAINT JOUIN DE MILLY,Saint-Jouin-de-Milly,Saint-Jouin-de-Milly +32,2019-01-01,COM,79260,0,SAINT JOUIN DE MARNES,Saint-Jouin-de-Marnes,Saint-Jouin-de-Marnes,COMD,79260,0,SAINT JOUIN DE MARNES,Saint-Jouin-de-Marnes,Saint-Jouin-de-Marnes 32,2019-01-01,COM,79261,0,SAINT JOUIN DE MILLY,Saint-Jouin-de-Milly,Saint-Jouin-de-Milly,COM,79179,0,MONCOUTANT SUR SEVRE,Moncoutant-sur-Sèvre,Moncoutant-sur-Sèvre -32,2019-01-01,COM,79264,0,SAINT LEGER DE LA MARTINIERE,Saint-Léger-de-la-Martinière,Saint-Léger-de-la-Martinière,COMD,79264,0,SAINT LEGER DE LA MARTINIERE,Saint-Léger-de-la-Martinière,Saint-Léger-de-la-Martinière +32,2019-01-01,COM,79261,0,SAINT JOUIN DE MILLY,Saint-Jouin-de-Milly,Saint-Jouin-de-Milly,COMD,79261,0,SAINT JOUIN DE MILLY,Saint-Jouin-de-Milly,Saint-Jouin-de-Milly 32,2019-01-01,COM,79264,0,SAINT LEGER DE LA MARTINIERE,Saint-Léger-de-la-Martinière,Saint-Léger-de-la-Martinière,COM,79174,0,MELLE,Melle,Melle +32,2019-01-01,COM,79264,0,SAINT LEGER DE LA MARTINIERE,Saint-Léger-de-la-Martinière,Saint-Léger-de-la-Martinière,COMD,79264,0,SAINT LEGER DE LA MARTINIERE,Saint-Léger-de-la-Martinière,Saint-Léger-de-la-Martinière 32,2019-01-01,COM,79279,0,SAINT MARTIN LES MELLE,Saint-Martin-lès-Melle,Saint-Martin-lès-Melle,COM,79174,0,MELLE,Melle,Melle 32,2019-01-01,COM,79279,0,SAINT MARTIN LES MELLE,Saint-Martin-lès-Melle,Saint-Martin-lès-Melle,COMD,79279,0,SAINT MARTIN LES MELLE,Saint-Martin-lès-Melle,Saint-Martin-lès-Melle 32,2019-01-01,COM,79282,0,SAINT MEDARD,Saint-Médard,Saint-Médard,COM,79061,0,CELLES SUR BELLE,Celles-sur-Belle,Celles-sur-Belle 32,2019-01-01,COM,79282,0,SAINT MEDARD,Saint-Médard,Saint-Médard,COMD,79282,0,SAINT MEDARD,Saint-Médard,Saint-Médard -32,2019-01-01,COM,79285,0,SAINT PARDOUX,Saint-Pardoux,Saint-Pardoux,COMD,79285,0,SAINT PARDOUX,Saint-Pardoux,Saint-Pardoux 32,2019-01-01,COM,79285,0,SAINT PARDOUX,Saint-Pardoux,Saint-Pardoux,COM,79285,0,SAINT PARDOUX SOUTIERS,Saint-Pardoux-Soutiers,Saint-Pardoux-Soutiers +32,2019-01-01,COM,79285,0,SAINT PARDOUX,Saint-Pardoux,Saint-Pardoux,COMD,79285,0,SAINT PARDOUX,Saint-Pardoux,Saint-Pardoux 32,2019-01-01,COM,79292,0,SAINTE RADEGONDE,Sainte-Radegonde,Sainte-Radegonde,COMD,79292,0,SAINTE RADEGONDE,Sainte-Radegonde,Sainte-Radegonde 32,2019-01-01,COM,79292,0,SAINTE RADEGONDE,Sainte-Radegonde,Sainte-Radegonde,COM,79329,0,THOUARS,Thouars,Thouars -32,2019-01-01,COM,79314,0,SOMPT,Sompt,Sompt,COMD,79314,0,SOMPT,Sompt,Sompt 32,2019-01-01,COM,79314,0,SOMPT,Sompt,Sompt,COM,79064,0,FONTIVILLIE,Fontivillié,Fontivillié +32,2019-01-01,COM,79314,0,SOMPT,Sompt,Sompt,COMD,79314,0,SOMPT,Sompt,Sompt 32,2019-01-01,COMA,79317,0,SOULIEVRES,Soulièvres,Soulièvres,COM,79005,1,AIRVAULT,Airvault,Airvault 32,2019-01-01,COMA,79317,0,SOULIEVRES,Soulièvres,Soulièvres,COMD,79317,0,SOULIEVRES,Soulièvres,Soulièvres -32,2019-01-01,COM,79318,0,SOUTIERS,Soutiers,Soutiers,COMD,79318,0,SOUTIERS,Soutiers,Soutiers 32,2019-01-01,COM,79318,0,SOUTIERS,Soutiers,Soutiers,COM,79285,0,SAINT PARDOUX SOUTIERS,Saint-Pardoux-Soutiers,Saint-Pardoux-Soutiers -32,2019-01-01,COM,79321,0,TAIZE MAULAIS,Taizé-Maulais,Taizé-Maulais,COMD,79321,0,TAIZE MAULAIS,Taizé-Maulais,Taizé-Maulais +32,2019-01-01,COM,79318,0,SOUTIERS,Soutiers,Soutiers,COMD,79318,0,SOUTIERS,Soutiers,Soutiers 32,2019-01-01,COM,79321,0,TAIZE MAULAIS,Taizé-Maulais,Taizé-Maulais,COM,79196,0,PLAINE ET VALLEES,Plaine-et-Vallées,Plaine-et-Vallées +32,2019-01-01,COM,79321,0,TAIZE MAULAIS,Taizé-Maulais,Taizé-Maulais,COMD,79321,0,TAIZE MAULAIS,Taizé-Maulais,Taizé-Maulais 32,2019-01-01,COM,79325,0,TESSONNIERE,Tessonnière,Tessonnière,COM,79005,1,AIRVAULT,Airvault,Airvault 32,2019-01-01,COM,79325,0,TESSONNIERE,Tessonnière,Tessonnière,COMD,79325,0,TESSONNIERE,Tessonnière,Tessonnière -32,2019-01-01,COMD,79327,0,THORIGNE,Thorigné,Thorigné,COM,79185,1,AIGONDIGNE,Aigondigné,Aigondigné -32,2019-01-01,COMD,79327,0,THORIGNE,Thorigné,Thorigné,COMD,79327,0,THORIGNE,Thorigné,Thorigné 32,2019-01-01,COM,79328,0,THORIGNY SUR LE MIGNON,Thorigny-sur-le-Mignon,Thorigny-sur-le-Mignon,COMD,79328,0,THORIGNY SUR LE MIGNON,Thorigny-sur-le-Mignon,Thorigny-sur-le-Mignon 32,2019-01-01,COM,79328,0,THORIGNY SUR LE MIGNON,Thorigny-sur-le-Mignon,Thorigny-sur-le-Mignon,COM,79334,0,VAL DU MIGNON,Val-du-Mignon,Val-du-Mignon 32,2019-01-01,COM,79329,0,THOUARS,Thouars,Thouars,COM,79329,0,THOUARS,Thouars,Thouars @@ -1712,105 +1556,97 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2019-01-01,COM,79330,0,TILLOU,Tillou,Tillou,COMD,79330,0,TILLOU,Tillou,Tillou 32,2019-01-01,COM,79334,1,USSEAU,Usseau,Usseau,COM,79334,0,VAL DU MIGNON,Val-du-Mignon,Val-du-Mignon 32,2019-01-01,COM,79334,1,USSEAU,Usseau,Usseau,COMD,79334,1,USSEAU,Usseau,Usseau -32,2019-01-01,COMA,79344,0,VERRINES SOUS CELLES,Verrines-sous-Celles,Verrines-sous-Celles,COMD,79344,0,VERRINES SOUS CELLES,Verrines-sous-Celles,Verrines-sous-Celles 32,2019-01-01,COMA,79344,0,VERRINES SOUS CELLES,Verrines-sous-Celles,Verrines-sous-Celles,COM,79061,0,CELLES SUR BELLE,Celles-sur-Belle,Celles-sur-Belle -32,2019-01-01,COM,80175,0,CARNOY,Carnoy,Carnoy,COM,80505,0,CARNOY MAMETZ,Carnoy-Mametz,Carnoy-Mametz +32,2019-01-01,COMA,79344,0,VERRINES SOUS CELLES,Verrines-sous-Celles,Verrines-sous-Celles,COMD,79344,0,VERRINES SOUS CELLES,Verrines-sous-Celles,Verrines-sous-Celles 32,2019-01-01,COM,80175,0,CARNOY,Carnoy,Carnoy,COMD,80175,0,CARNOY,Carnoy,Carnoy +32,2019-01-01,COM,80175,0,CARNOY,Carnoy,Carnoy,COM,80505,0,CARNOY MAMETZ,Carnoy-Mametz,Carnoy-Mametz 32,2019-01-01,COM,80209,0,CONTOIRE,Contoire,Contoire,COMD,80209,0,CONTOIRE,Contoire,Contoire 32,2019-01-01,COM,80209,0,CONTOIRE,Contoire,Contoire,COM,80625,0,TROIS RIVIERES,Trois-Rivières,Trois-Rivières 32,2019-01-01,COM,80389,0,GRECOURT,Grécourt,Grécourt,COM,80442,1,HOMBLEUX,Hombleux,Hombleux -32,2019-01-01,COM,80419,1,HARGICOURT,Hargicourt,Hargicourt,COM,80625,0,TROIS RIVIERES,Trois-Rivières,Trois-Rivières 32,2019-01-01,COM,80419,1,HARGICOURT,Hargicourt,Hargicourt,COMD,80419,1,HARGICOURT,Hargicourt,Hargicourt +32,2019-01-01,COM,80419,1,HARGICOURT,Hargicourt,Hargicourt,COM,80625,0,TROIS RIVIERES,Trois-Rivières,Trois-Rivières 32,2019-01-01,COM,80442,1,HOMBLEUX,Hombleux,Hombleux,COM,80442,1,HOMBLEUX,Hombleux,Hombleux -32,2019-01-01,COM,80485,0,LOEUILLY,Lœuilly,Lœuilly,COMD,80485,0,LOEUILLY,Lœuilly,Lœuilly -32,2019-01-01,COM,80485,0,LOEUILLY,Lœuilly,Lœuilly,COM,80485,1,O DE SELLE,Ô-de-Selle,Ô-de-Selle +32,2019-01-01,COM,80485,0,LOUILLY,Lœuilly,Lœuilly,COMD,80485,0,LOUILLY,Lœuilly,Lœuilly +32,2019-01-01,COM,80485,0,LOUILLY,Lœuilly,Lœuilly,COM,80485,1,O DE SELLE,Ô-de-Selle,Ô-de-Selle 32,2019-01-01,COM,80505,0,MAMETZ,Mametz,Mametz,COMD,80505,0,MAMETZ,Mametz,Mametz 32,2019-01-01,COM,80505,0,MAMETZ,Mametz,Mametz,COM,80505,0,CARNOY MAMETZ,Carnoy-Mametz,Carnoy-Mametz 32,2019-01-01,COM,80509,0,MARCHELEPOT,Marchélepot,Marchélepot,COMD,80509,0,MARCHELEPOT,Marchélepot,Marchélepot 32,2019-01-01,COM,80509,0,MARCHELEPOT,Marchélepot,Marchélepot,COM,80509,0,MARCHELEPOT MISERY,Marchélepot-Misery,Marchélepot-Misery -32,2019-01-01,COM,80551,0,MISERY,Misery,Misery,COMD,80551,0,MISERY,Misery,Misery 32,2019-01-01,COM,80551,0,MISERY,Misery,Misery,COM,80509,0,MARCHELEPOT MISERY,Marchélepot-Misery,Marchélepot-Misery -32,2019-01-01,COM,80594,0,NEUVILLE LES LOEUILLY,Neuville-lès-Lœuilly,Neuville-lès-Lœuilly,COM,80485,1,O DE SELLE,Ô-de-Selle,Ô-de-Selle -32,2019-01-01,COM,80594,0,NEUVILLE LES LOEUILLY,Neuville-lès-Lœuilly,Neuville-lès-Lœuilly,COMD,80594,0,NEUVILLE LES LOEUILLY,Neuville-lès-Lœuilly,Neuville-lès-Lœuilly -32,2019-01-01,COM,80625,0,PIERREPONT SUR AVRE,Pierrepont-sur-Avre,Pierrepont-sur-Avre,COMD,80625,0,PIERREPONT SUR AVRE,Pierrepont-sur-Avre,Pierrepont-sur-Avre +32,2019-01-01,COM,80551,0,MISERY,Misery,Misery,COMD,80551,0,MISERY,Misery,Misery +32,2019-01-01,COM,80594,0,NEUVILLE LES LOUILLY,Neuville-lès-Lœuilly,Neuville-lès-Lœuilly,COM,80485,1,O DE SELLE,Ô-de-Selle,Ô-de-Selle +32,2019-01-01,COM,80594,0,NEUVILLE LES LOUILLY,Neuville-lès-Lœuilly,Neuville-lès-Lœuilly,COMD,80594,0,NEUVILLE LES LOUILLY,Neuville-lès-Lœuilly,Neuville-lès-Lœuilly 32,2019-01-01,COM,80625,0,PIERREPONT SUR AVRE,Pierrepont-sur-Avre,Pierrepont-sur-Avre,COM,80625,0,TROIS RIVIERES,Trois-Rivières,Trois-Rivières +32,2019-01-01,COM,80625,0,PIERREPONT SUR AVRE,Pierrepont-sur-Avre,Pierrepont-sur-Avre,COMD,80625,0,PIERREPONT SUR AVRE,Pierrepont-sur-Avre,Pierrepont-sur-Avre 32,2019-01-01,COM,80761,0,TILLOY LES CONTY,Tilloy-lès-Conty,Tilloy-lès-Conty,COM,80485,1,O DE SELLE,Ô-de-Selle,Ô-de-Selle 32,2019-01-01,COM,80761,0,TILLOY LES CONTY,Tilloy-lès-Conty,Tilloy-lès-Conty,COMD,80761,0,TILLOY LES CONTY,Tilloy-lès-Conty,Tilloy-lès-Conty 32,2019-01-01,COM,81226,0,RONEL,Ronel,Ronel,COMD,81226,0,RONEL,Ronel,Ronel 32,2019-01-01,COM,81226,0,RONEL,Ronel,Ronel,COM,81233,0,TERRE DE BANCALIE,Terre-de-Bancalié,Terre-de-Bancalié -32,2019-01-01,COM,81233,0,ROUMEGOUX,Roumégoux,Roumégoux,COMD,81233,0,ROUMEGOUX,Roumégoux,Roumégoux 32,2019-01-01,COM,81233,0,ROUMEGOUX,Roumégoux,Roumégoux,COM,81233,0,TERRE DE BANCALIE,Terre-de-Bancalié,Terre-de-Bancalié +32,2019-01-01,COM,81233,0,ROUMEGOUX,Roumégoux,Roumégoux,COMD,81233,0,ROUMEGOUX,Roumégoux,Roumégoux 32,2019-01-01,COM,81241,0,SAINT ANTONIN DE LACALM,Saint-Antonin-de-Lacalm,Saint-Antonin-de-Lacalm,COM,81233,0,TERRE DE BANCALIE,Terre-de-Bancalié,Terre-de-Bancalié 32,2019-01-01,COM,81241,0,SAINT ANTONIN DE LACALM,Saint-Antonin-de-Lacalm,Saint-Antonin-de-Lacalm,COMD,81241,0,SAINT ANTONIN DE LACALM,Saint-Antonin-de-Lacalm,Saint-Antonin-de-Lacalm 32,2019-01-01,COM,81260,0,SAINT LIEUX LAFENASSE,Saint-Lieux-Lafenasse,Saint-Lieux-Lafenasse,COM,81233,0,TERRE DE BANCALIE,Terre-de-Bancalié,Terre-de-Bancalié 32,2019-01-01,COM,81260,0,SAINT LIEUX LAFENASSE,Saint-Lieux-Lafenasse,Saint-Lieux-Lafenasse,COMD,81260,0,SAINT LIEUX LAFENASSE,Saint-Lieux-Lafenasse,Saint-Lieux-Lafenasse 32,2019-01-01,COM,81296,0,TERRE CLAPIER,Terre-Clapier,Terre-Clapier,COM,81233,0,TERRE DE BANCALIE,Terre-de-Bancalié,Terre-de-Bancalié 32,2019-01-01,COM,81296,0,TERRE CLAPIER,Terre-Clapier,Terre-Clapier,COMD,81296,0,TERRE CLAPIER,Terre-Clapier,Terre-Clapier -32,2019-01-01,COM,81301,2,TRAVET,Travet,Le Travet,COMD,81301,2,TRAVET,Travet,Le Travet 32,2019-01-01,COM,81301,2,TRAVET,Travet,Le Travet,COM,81233,0,TERRE DE BANCALIE,Terre-de-Bancalié,Terre-de-Bancalié +32,2019-01-01,COM,81301,2,TRAVET,Travet,Le Travet,COMD,81301,2,TRAVET,Travet,Le Travet 32,2019-01-01,COM,85027,0,BOUFFERE,Boufféré,Boufféré,COMD,85027,0,BOUFFERE,Boufféré,Boufféré 32,2019-01-01,COM,85027,0,BOUFFERE,Boufféré,Boufféré,COM,85146,0,MONTAIGU VENDEE,Montaigu-Vendée,Montaigu-Vendée -32,2019-01-01,COM,85048,0,CHAMBRETAUD,Chambretaud,Chambretaud,COM,85302,0,CHANVERRIE,Chanverrie,Chanverrie 32,2019-01-01,COM,85048,0,CHAMBRETAUD,Chambretaud,Chambretaud,COMD,85048,0,CHAMBRETAUD,Chambretaud,Chambretaud -32,2019-01-01,COM,85060,0,CHATEAU D OLONNE,Château-d'Olonne,Château-d'Olonne,COM,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne +32,2019-01-01,COM,85048,0,CHAMBRETAUD,Chambretaud,Chambretaud,COM,85302,0,CHANVERRIE,Chanverrie,Chanverrie 32,2019-01-01,COM,85060,0,CHATEAU D OLONNE,Château-d'Olonne,Château-d'Olonne,COMD,85060,0,CHATEAU D OLONNE,Château-d'Olonne,Château-d'Olonne -32,2019-01-01,COM,85107,3,GUYONNIERE,Guyonnière,La Guyonnière,COM,85146,0,MONTAIGU VENDEE,Montaigu-Vendée,Montaigu-Vendée +32,2019-01-01,COM,85060,0,CHATEAU D OLONNE,Château-d'Olonne,Château-d'Olonne,COM,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne 32,2019-01-01,COM,85107,3,GUYONNIERE,Guyonnière,La Guyonnière,COMD,85107,3,GUYONNIERE,Guyonnière,La Guyonnière -32,2019-01-01,COM,85146,0,MONTAIGU,Montaigu,Montaigu,COM,85146,0,MONTAIGU VENDEE,Montaigu-Vendée,Montaigu-Vendée +32,2019-01-01,COM,85107,3,GUYONNIERE,Guyonnière,La Guyonnière,COM,85146,0,MONTAIGU VENDEE,Montaigu-Vendée,Montaigu-Vendée 32,2019-01-01,COM,85146,0,MONTAIGU,Montaigu,Montaigu,COMD,85146,0,MONTAIGU,Montaigu,Montaigu -32,2019-01-01,COM,85162,0,NIEUL SUR L AUTISE,Nieul-sur-l'Autise,Nieul-sur-l'Autise,COM,85162,0,RIVES D AUTISE,Rives-d'Autise,Rives-d'Autise +32,2019-01-01,COM,85146,0,MONTAIGU,Montaigu,Montaigu,COM,85146,0,MONTAIGU VENDEE,Montaigu-Vendée,Montaigu-Vendée 32,2019-01-01,COM,85162,0,NIEUL SUR L AUTISE,Nieul-sur-l'Autise,Nieul-sur-l'Autise,COMD,85162,0,NIEUL SUR L AUTISE,Nieul-sur-l'Autise,Nieul-sur-l'Autise -32,2019-01-01,COM,85166,1,OLONNE SUR MER,Olonne-sur-Mer,Olonne-sur-Mer,COM,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne +32,2019-01-01,COM,85162,0,NIEUL SUR L AUTISE,Nieul-sur-l'Autise,Nieul-sur-l'Autise,COM,85162,0,RIVES D AUTISE,Rives-d'Autise,Rives-d'Autise 32,2019-01-01,COM,85166,1,OLONNE SUR MER,Olonne-sur-Mer,Olonne-sur-Mer,COMD,85166,1,OLONNE SUR MER,Olonne-sur-Mer,Olonne-sur-Mer +32,2019-01-01,COM,85166,1,OLONNE SUR MER,Olonne-sur-Mer,Olonne-sur-Mer,COM,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne 32,2019-01-01,COM,85168,1,OULMES,Oulmes,Oulmes,COM,85162,0,RIVES D AUTISE,Rives-d'Autise,Rives-d'Autise 32,2019-01-01,COM,85168,1,OULMES,Oulmes,Oulmes,COMD,85168,1,OULMES,Oulmes,Oulmes -32,2019-01-01,COM,85177,2,POIRE SUR VELLUIRE,Poiré-sur-Velluire,Le Poiré-sur-Velluire,COMD,85177,2,POIRE SUR VELLUIRE,Poiré-sur-Velluire,Le Poiré-sur-Velluire 32,2019-01-01,COM,85177,2,POIRE SUR VELLUIRE,Poiré-sur-Velluire,Le Poiré-sur-Velluire,COM,85177,4,VELLUIRE SUR VENDEE,Velluire-sur-Vendée,Les Velluire-sur-Vendée +32,2019-01-01,COM,85177,2,POIRE SUR VELLUIRE,Poiré-sur-Velluire,Le Poiré-sur-Velluire,COMD,85177,2,POIRE SUR VELLUIRE,Poiré-sur-Velluire,Le Poiré-sur-Velluire 32,2019-01-01,COM,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne,COMD,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne 32,2019-01-01,COM,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne,COM,85194,4,SABLES D OLONNE,Sables-d'Olonne,Les Sables-d'Olonne 32,2019-01-01,COM,85217,0,SAINT GEORGES DE MONTAIGU,Saint-Georges-de-Montaigu,Saint-Georges-de-Montaigu,COM,85146,0,MONTAIGU VENDEE,Montaigu-Vendée,Montaigu-Vendée 32,2019-01-01,COM,85217,0,SAINT GEORGES DE MONTAIGU,Saint-Georges-de-Montaigu,Saint-Georges-de-Montaigu,COMD,85217,0,SAINT GEORGES DE MONTAIGU,Saint-Georges-de-Montaigu,Saint-Georges-de-Montaigu 32,2019-01-01,COM,85224,0,SAINT HILAIRE DE LOULAY,Saint-Hilaire-de-Loulay,Saint-Hilaire-de-Loulay,COM,85146,0,MONTAIGU VENDEE,Montaigu-Vendée,Montaigu-Vendée 32,2019-01-01,COM,85224,0,SAINT HILAIRE DE LOULAY,Saint-Hilaire-de-Loulay,Saint-Hilaire-de-Loulay,COMD,85224,0,SAINT HILAIRE DE LOULAY,Saint-Hilaire-de-Loulay,Saint-Hilaire-de-Loulay -32,2019-01-01,COM,85299,0,VELLUIRE,Velluire,Velluire,COMD,85299,0,VELLUIRE,Velluire,Velluire 32,2019-01-01,COM,85299,0,VELLUIRE,Velluire,Velluire,COM,85177,4,VELLUIRE SUR VENDEE,Velluire-sur-Vendée,Les Velluire-sur-Vendée -32,2019-01-01,COM,85302,3,VERRIE,Verrie,La Verrie,COMD,85302,3,VERRIE,Verrie,La Verrie +32,2019-01-01,COM,85299,0,VELLUIRE,Velluire,Velluire,COMD,85299,0,VELLUIRE,Velluire,Velluire 32,2019-01-01,COM,85302,3,VERRIE,Verrie,La Verrie,COM,85302,0,CHANVERRIE,Chanverrie,Chanverrie -32,2019-01-01,COM,86021,0,BENASSAY,Benassay,Benassay,COM,86123,0,BOIVRE LA VALLEE,Boivre-la-Vallée,Boivre-la-Vallée +32,2019-01-01,COM,85302,3,VERRIE,Verrie,La Verrie,COMD,85302,3,VERRIE,Verrie,La Verrie 32,2019-01-01,COM,86021,0,BENASSAY,Benassay,Benassay,COMD,86021,0,BENASSAY,Benassay,Benassay -32,2019-01-01,COMD,86030,0,BLASLAY,Blaslay,Blaslay,COMD,86030,0,BLASLAY,Blaslay,Blaslay -32,2019-01-01,COMD,86030,0,BLASLAY,Blaslay,Blaslay,COM,86281,0,SAINT MARTIN LA PALLU,Saint-Martin-la-Pallu,Saint-Martin-la-Pallu +32,2019-01-01,COM,86021,0,BENASSAY,Benassay,Benassay,COM,86123,0,BOIVRE LA VALLEE,Boivre-la-Vallée,Boivre-la-Vallée 32,2019-01-01,COM,86043,0,CEAUX EN COUHE,Ceaux-en-Couhé,Ceaux-en-Couhé,COMD,86043,0,CEAUX EN COUHE,Ceaux-en-Couhé,Ceaux-en-Couhé 32,2019-01-01,COM,86043,0,CEAUX EN COUHE,Ceaux-en-Couhé,Ceaux-en-Couhé,COM,86082,0,VALENCE EN POITOU,Valence-en-Poitou,Valence-en-Poitou -32,2019-01-01,COM,86056,3,CHAPELLE MONTREUIL,Chapelle-Montreuil,La Chapelle-Montreuil,COM,86123,0,BOIVRE LA VALLEE,Boivre-la-Vallée,Boivre-la-Vallée 32,2019-01-01,COM,86056,3,CHAPELLE MONTREUIL,Chapelle-Montreuil,La Chapelle-Montreuil,COMD,86056,3,CHAPELLE MONTREUIL,Chapelle-Montreuil,La Chapelle-Montreuil -32,2019-01-01,COMD,86060,0,CHARRAIS,Charrais,Charrais,COM,86281,0,SAINT MARTIN LA PALLU,Saint-Martin-la-Pallu,Saint-Martin-la-Pallu -32,2019-01-01,COMD,86060,0,CHARRAIS,Charrais,Charrais,COMD,86060,0,CHARRAIS,Charrais,Charrais -32,2019-01-01,COM,86067,0,CHATILLON,Châtillon,Châtillon,COM,86082,0,VALENCE EN POITOU,Valence-en-Poitou,Valence-en-Poitou +32,2019-01-01,COM,86056,3,CHAPELLE MONTREUIL,Chapelle-Montreuil,La Chapelle-Montreuil,COM,86123,0,BOIVRE LA VALLEE,Boivre-la-Vallée,Boivre-la-Vallée 32,2019-01-01,COM,86067,0,CHATILLON,Châtillon,Châtillon,COMD,86067,0,CHATILLON,Châtillon,Châtillon -32,2019-01-01,COMD,86071,0,CHENECHE,Cheneché,Cheneché,COMD,86071,0,CHENECHE,Cheneché,Cheneché -32,2019-01-01,COMD,86071,0,CHENECHE,Cheneché,Cheneché,COM,86281,0,SAINT MARTIN LA PALLU,Saint-Martin-la-Pallu,Saint-Martin-la-Pallu +32,2019-01-01,COM,86067,0,CHATILLON,Châtillon,Châtillon,COM,86082,0,VALENCE EN POITOU,Valence-en-Poitou,Valence-en-Poitou 32,2019-01-01,COM,86082,0,COUHE,Couhé,Couhé,COMD,86082,0,COUHE,Couhé,Couhé 32,2019-01-01,COM,86082,0,COUHE,Couhé,Couhé,COM,86082,0,VALENCE EN POITOU,Valence-en-Poitou,Valence-en-Poitou -32,2019-01-01,COM,86123,0,LAVAUSSEAU,Lavausseau,Lavausseau,COMD,86123,0,LAVAUSSEAU,Lavausseau,Lavausseau 32,2019-01-01,COM,86123,0,LAVAUSSEAU,Lavausseau,Lavausseau,COM,86123,0,BOIVRE LA VALLEE,Boivre-la-Vallée,Boivre-la-Vallée -32,2019-01-01,COM,86166,0,MONTREUIL BONNIN,Montreuil-Bonnin,Montreuil-Bonnin,COMD,86166,0,MONTREUIL BONNIN,Montreuil-Bonnin,Montreuil-Bonnin +32,2019-01-01,COM,86123,0,LAVAUSSEAU,Lavausseau,Lavausseau,COMD,86123,0,LAVAUSSEAU,Lavausseau,Lavausseau 32,2019-01-01,COM,86166,0,MONTREUIL BONNIN,Montreuil-Bonnin,Montreuil-Bonnin,COM,86123,0,BOIVRE LA VALLEE,Boivre-la-Vallée,Boivre-la-Vallée +32,2019-01-01,COM,86166,0,MONTREUIL BONNIN,Montreuil-Bonnin,Montreuil-Bonnin,COMD,86166,0,MONTREUIL BONNIN,Montreuil-Bonnin,Montreuil-Bonnin 32,2019-01-01,COM,86188,0,PAYRE,Payré,Payré,COM,86082,0,VALENCE EN POITOU,Valence-en-Poitou,Valence-en-Poitou 32,2019-01-01,COM,86188,0,PAYRE,Payré,Payré,COMD,86188,0,PAYRE,Payré,Payré 32,2019-01-01,COM,86277,0,VARENNES,Varennes,Varennes,COMD,86277,0,VARENNES,Varennes,Varennes 32,2019-01-01,COM,86277,0,VARENNES,Varennes,Varennes,COM,86281,0,SAINT MARTIN LA PALLU,Saint-Martin-la-Pallu,Saint-Martin-la-Pallu -32,2019-01-01,COM,86278,0,VAUX,Vaux,Vaux,COMD,86278,0,VAUX,Vaux,Vaux 32,2019-01-01,COM,86278,0,VAUX,Vaux,Vaux,COM,86082,0,VALENCE EN POITOU,Valence-en-Poitou,Valence-en-Poitou -32,2019-01-01,COMD,86281,0,VENDEUVRE DU POITOU,Vendeuvre-du-Poitou,Vendeuvre-du-Poitou,COMD,86281,0,VENDEUVRE DU POITOU,Vendeuvre-du-Poitou,Vendeuvre-du-Poitou +32,2019-01-01,COM,86278,0,VAUX,Vaux,Vaux,COMD,86278,0,VAUX,Vaux,Vaux 32,2019-01-01,COM,86281,0,SAINT MARTIN LA PALLU,Saint Martin la Pallu,Saint Martin la Pallu,COM,86281,0,SAINT MARTIN LA PALLU,Saint-Martin-la-Pallu,Saint-Martin-la-Pallu -32,2019-01-01,COMD,86281,0,VENDEUVRE DU POITOU,Vendeuvre-du-Poitou,Vendeuvre-du-Poitou,COM,86281,0,SAINT MARTIN LA PALLU,Saint-Martin-la-Pallu,Saint-Martin-la-Pallu -32,2019-01-01,COM,87028,0,BUSSIERE POITEVINE,Bussière-Poitevine,Bussière-Poitevine,COM,87028,0,VAL D OIRE ET GARTEMPE,Val-d'Oire-et-Gartempe,Val-d'Oire-et-Gartempe 32,2019-01-01,COM,87028,0,BUSSIERE POITEVINE,Bussière-Poitevine,Bussière-Poitevine,COMD,87028,0,BUSSIERE POITEVINE,Bussière-Poitevine,Bussière-Poitevine -32,2019-01-01,COM,87055,0,DARNAC,Darnac,Darnac,COMD,87055,0,DARNAC,Darnac,Darnac +32,2019-01-01,COM,87028,0,BUSSIERE POITEVINE,Bussière-Poitevine,Bussière-Poitevine,COM,87028,0,VAL D OIRE ET GARTEMPE,Val-d'Oire-et-Gartempe,Val-d'Oire-et-Gartempe 32,2019-01-01,COM,87055,0,DARNAC,Darnac,Darnac,COM,87028,0,VAL D OIRE ET GARTEMPE,Val-d'Oire-et-Gartempe,Val-d'Oire-et-Gartempe -32,2019-01-01,COM,87128,0,ROUSSAC,Roussac,Roussac,COM,87128,0,SAINT PARDOUX LE LAC,Saint-Pardoux-le-Lac,Saint-Pardoux-le-Lac +32,2019-01-01,COM,87055,0,DARNAC,Darnac,Darnac,COMD,87055,0,DARNAC,Darnac,Darnac 32,2019-01-01,COM,87128,0,ROUSSAC,Roussac,Roussac,COMD,87128,0,ROUSSAC,Roussac,Roussac +32,2019-01-01,COM,87128,0,ROUSSAC,Roussac,Roussac,COM,87128,0,SAINT PARDOUX LE LAC,Saint-Pardoux-le-Lac,Saint-Pardoux-le-Lac 32,2019-01-01,COM,87136,0,SAINT BARBANT,Saint-Barbant,Saint-Barbant,COM,87028,0,VAL D OIRE ET GARTEMPE,Val-d'Oire-et-Gartempe,Val-d'Oire-et-Gartempe 32,2019-01-01,COM,87136,0,SAINT BARBANT,Saint-Barbant,Saint-Barbant,COMD,87136,0,SAINT BARBANT,Saint-Barbant,Saint-Barbant 32,2019-01-01,COM,87173,0,SAINT PARDOUX,Saint-Pardoux,Saint-Pardoux,COM,87128,0,SAINT PARDOUX LE LAC,Saint-Pardoux-le-Lac,Saint-Pardoux-le-Lac @@ -1823,31 +1659,31 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2019-01-01,COM,89109,0,CISERY,Cisery,Cisery,COM,89197,0,GUILLON TERRE PLAINE,Guillon-Terre-Plaine,Guillon-Terre-Plaine 32,2019-01-01,COM,89197,0,GUILLON,Guillon,Guillon,COM,89197,0,GUILLON TERRE PLAINE,Guillon-Terre-Plaine,Guillon-Terre-Plaine 32,2019-01-01,COM,89197,0,GUILLON,Guillon,Guillon,COMD,89197,0,GUILLON,Guillon,Guillon -32,2019-01-01,COMA,89293,0,PERREUSE,Perreuse,Perreuse,COM,89420,0,TREIGNY PERREUSE SAINTE COLOMBE,Treigny-Perreuse-Sainte-Colombe,Treigny-Perreuse-Sainte-Colombe 32,2019-01-01,COMA,89293,0,PERREUSE,Perreuse,Perreuse,COMD,89293,0,PERREUSE,Perreuse,Perreuse -32,2019-01-01,COM,89340,0,SAINTE COLOMBE SUR LOING,Sainte-Colombe-sur-Loing,Sainte-Colombe-sur-Loing,COM,89420,0,TREIGNY PERREUSE SAINTE COLOMBE,Treigny-Perreuse-Sainte-Colombe,Treigny-Perreuse-Sainte-Colombe +32,2019-01-01,COMA,89293,0,PERREUSE,Perreuse,Perreuse,COM,89420,0,TREIGNY PERREUSE SAINTE COLOMBE,Treigny-Perreuse-Sainte-Colombe,Treigny-Perreuse-Sainte-Colombe 32,2019-01-01,COM,89340,0,SAINTE COLOMBE SUR LOING,Sainte-Colombe-sur-Loing,Sainte-Colombe-sur-Loing,COMD,89340,0,SAINTE COLOMBE SUR LOING,Sainte-Colombe-sur-Loing,Sainte-Colombe-sur-Loing -32,2019-01-01,COM,89381,0,SCEAUX,Sceaux,Sceaux,COMD,89381,0,SCEAUX,Sceaux,Sceaux +32,2019-01-01,COM,89340,0,SAINTE COLOMBE SUR LOING,Sainte-Colombe-sur-Loing,Sainte-Colombe-sur-Loing,COM,89420,0,TREIGNY PERREUSE SAINTE COLOMBE,Treigny-Perreuse-Sainte-Colombe,Treigny-Perreuse-Sainte-Colombe 32,2019-01-01,COM,89381,0,SCEAUX,Sceaux,Sceaux,COM,89197,0,GUILLON TERRE PLAINE,Guillon-Terre-Plaine,Guillon-Terre-Plaine +32,2019-01-01,COM,89381,0,SCEAUX,Sceaux,Sceaux,COMD,89381,0,SCEAUX,Sceaux,Sceaux 32,2019-01-01,COM,89420,0,TREIGNY,Treigny,Treigny,COM,89420,0,TREIGNY PERREUSE SAINTE COLOMBE,Treigny-Perreuse-Sainte-Colombe,Treigny-Perreuse-Sainte-Colombe 32,2019-01-01,COM,89420,0,TREIGNY,Treigny,Treigny,COMD,89420,0,TREIGNY,Treigny,Treigny -32,2019-01-01,COM,89421,0,TREVILLY,Trévilly,Trévilly,COMD,89421,0,TREVILLY,Trévilly,Trévilly 32,2019-01-01,COM,89421,0,TREVILLY,Trévilly,Trévilly,COM,89197,0,GUILLON TERRE PLAINE,Guillon-Terre-Plaine,Guillon-Terre-Plaine +32,2019-01-01,COM,89421,0,TREVILLY,Trévilly,Trévilly,COMD,89421,0,TREVILLY,Trévilly,Trévilly 32,2019-01-01,COM,89448,0,VIGNES,Vignes,Vignes,COM,89197,0,GUILLON TERRE PLAINE,Guillon-Terre-Plaine,Guillon-Terre-Plaine 32,2019-01-01,COM,89448,0,VIGNES,Vignes,Vignes,COMD,89448,0,VIGNES,Vignes,Vignes 32,2019-01-01,COM,90068,0,MEROUX,Meroux,Meroux,COMD,90068,0,MEROUX,Meroux,Meroux 32,2019-01-01,COM,90068,0,MEROUX,Meroux,Meroux,COM,90068,0,MEROUX MOVAL,Meroux-Moval,Meroux-Moval 32,2019-01-01,COM,90073,0,MOVAL,Moval,Moval,COM,90068,0,MEROUX MOVAL,Meroux-Moval,Meroux-Moval 32,2019-01-01,COM,90073,0,MOVAL,Moval,Moval,COMD,90073,0,MOVAL,Moval,Moval -32,2019-01-01,COM,91182,0,COURCOURONNES,Courcouronnes,Courcouronnes,COM,91228,1,EVRY COURCOURONNES,Évry-Courcouronnes,Évry-Courcouronnes 32,2019-01-01,COM,91182,0,COURCOURONNES,Courcouronnes,Courcouronnes,COMD,91182,0,COURCOURONNES,Courcouronnes,Courcouronnes +32,2019-01-01,COM,91182,0,COURCOURONNES,Courcouronnes,Courcouronnes,COM,91228,1,EVRY COURCOURONNES,Évry-Courcouronnes,Évry-Courcouronnes 32,2019-01-01,COM,91222,1,ESTOUCHES,Estouches,Estouches,COMD,91222,1,ESTOUCHES,Estouches,Estouches 32,2019-01-01,COM,91222,1,ESTOUCHES,Estouches,Estouches,COM,91390,2,MEREVILLOIS,Mérévillois,Le Mérévillois -32,2019-01-01,COM,91228,1,EVRY,Évry,Évry,COMD,91228,1,EVRY,Évry,Évry 32,2019-01-01,COM,91228,1,EVRY,Évry,Évry,COM,91228,1,EVRY COURCOURONNES,Évry-Courcouronnes,Évry-Courcouronnes -32,2019-01-01,COM,91390,0,MEREVILLE,Méréville,Méréville,COMD,91390,0,MEREVILLE,Méréville,Méréville +32,2019-01-01,COM,91228,1,EVRY,Évry,Évry,COMD,91228,1,EVRY,Évry,Évry 32,2019-01-01,COM,91390,0,MEREVILLE,Méréville,Méréville,COM,91390,2,MEREVILLOIS,Mérévillois,Le Mérévillois -10,2018-11-08,COM,04063,0,CORBIERES,Corbières,Corbières,COM,04063,0,CORBIERES EN PROVENCE,Corbières-en-Provence,Corbières-en-Provence +32,2019-01-01,COM,91390,0,MEREVILLE,Méréville,Méréville,COMD,91390,0,MEREVILLE,Méréville,Méréville +10,2018-11-08,COM,4063,0,CORBIERES,Corbières,Corbières,COM,4063,0,CORBIERES EN PROVENCE,Corbières-en-Provence,Corbières-en-Provence 10,2018-11-08,COM,16134,1,EXIDEUIL,Exideuil,Exideuil,COM,16134,1,EXIDEUIL SUR VIENNE,Exideuil-sur-Vienne,Exideuil-sur-Vienne 10,2018-11-08,COM,35306,0,SAINT PERE,Saint-Père,Saint-Père,COM,35306,0,SAINT PERE MARC EN POULET,Saint-Père-Marc-en-Poulet,Saint-Père-Marc-en-Poulet 10,2018-11-08,COM,45110,0,COURCELLES,Courcelles,Courcelles,COM,45110,0,COURCELLES LE ROI,Courcelles-le-Roi,Courcelles-le-Roi @@ -1858,34 +1694,31 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,2018-11-08,COM,84033,0,CASTELLET,Castellet,Castellet,COM,84033,0,CASTELLET EN LUBERON,Castellet-en-Luberon,Castellet-en-Luberon 10,2018-11-08,COM,93070,0,SAINT OUEN,Saint-Ouen,Saint-Ouen,COM,93070,0,SAINT OUEN SUR SEINE,Saint-Ouen-sur-Seine,Saint-Ouen-sur-Seine 10,2018-11-08,COM,95306,1,HERBLAY,Herblay,Herblay,COM,95306,1,HERBLAY SUR SEINE,Herblay-sur-Seine,Herblay-sur-Seine -34,2018-09-01,COM,16193,0,LOUZAC SAINT ANDRE,Louzac-Saint-André,Louzac-Saint-André,COM,16193,0,LOUZAC SAINT ANDRE,Louzac-Saint-André,Louzac-Saint-André 34,2018-09-01,COMA,16299,0,SAINT ANDRE,Saint-André,Saint-André,COM,16193,0,LOUZAC SAINT ANDRE,Louzac-Saint-André,Louzac-Saint-André -34,2018-08-17,COM,89005,1,ANCY LE FRANC,Ancy-le-Franc,Ancy-le-Franc,COM,89005,1,ANCY LE FRANC,Ancy-le-Franc,Ancy-le-Franc 34,2018-08-17,COMA,89135,0,CUSY,Cusy,Cusy,COM,89005,1,ANCY LE FRANC,Ancy-le-Franc,Ancy-le-Franc -32,2018-03-01,COM,17272,0,PERE,Péré,Péré,COM,17340,0,SAINT PIERRE LA NOUE,Saint-Pierre-La-Noue,Saint-Pierre-La-Noue 32,2018-03-01,COM,17272,0,PERE,Péré,Péré,COMD,17272,0,PERE,Péré,Péré -32,2018-03-01,COM,17340,0,SAINT GERMAIN DE MARENCENNES,Saint-Germain-de-Marencennes,Saint-Germain-de-Marencennes,COMD,17340,0,SAINT GERMAIN DE MARENCENNES,Saint-Germain-de-Marencennes,Saint-Germain-de-Marencennes +32,2018-03-01,COM,17272,0,PERE,Péré,Péré,COM,17340,0,SAINT PIERRE LA NOUE,Saint-Pierre-La-Noue,Saint-Pierre-La-Noue 32,2018-03-01,COM,17340,0,SAINT GERMAIN DE MARENCENNES,Saint-Germain-de-Marencennes,Saint-Germain-de-Marencennes,COM,17340,0,SAINT PIERRE LA NOUE,Saint-Pierre-La-Noue,Saint-Pierre-La-Noue -32,2018-01-01,COM,01025,0,BAGE LA VILLE,Bâgé-la-Ville,Bâgé-la-Ville,COMD,01025,0,BAGE LA VILLE,Bâgé-la-Ville,Bâgé-la-Ville -32,2018-01-01,COM,01025,0,BAGE LA VILLE,Bâgé-la-Ville,Bâgé-la-Ville,COM,01025,0,BAGE DOMMARTIN,Bâgé-Dommartin,Bâgé-Dommartin -32,2018-01-01,COM,01144,0,DOMMARTIN,Dommartin,Dommartin,COMD,01144,0,DOMMARTIN,Dommartin,Dommartin -32,2018-01-01,COM,01144,0,DOMMARTIN,Dommartin,Dommartin,COM,01025,0,BAGE DOMMARTIN,Bâgé-Dommartin,Bâgé-Dommartin -32,2018-01-01,COM,05039,0,CHAUFFAYER,Chauffayer,Chauffayer,COM,05039,1,AUBESSAGNE,Aubessagne,Aubessagne -32,2018-01-01,COM,05043,4,COSTES,Costes,Les Costes,COM,05039,1,AUBESSAGNE,Aubessagne,Aubessagne -32,2018-01-01,COM,05141,0,SAINT EUSEBE EN CHAMPSAUR,Saint-Eusèbe-en-Champsaur,Saint-Eusèbe-en-Champsaur,COM,05039,1,AUBESSAGNE,Aubessagne,Aubessagne -34,2018-01-01,COMD,14037,0,BANNEVILLE SUR AJON,Banneville-sur-Ajon,Banneville-sur-Ajon,COM,14037,0,MALHERBE SUR AJON,Malherbe-sur-Ajon,Malherbe-sur-Ajon -34,2018-01-01,COM,14037,0,MALHERBE SUR AJON,Malherbe-sur-Ajon,Malherbe-sur-Ajon,COM,14037,0,MALHERBE SUR AJON,Malherbe-sur-Ajon,Malherbe-sur-Ajon -34,2018-01-01,COMA,14507,0,PLEINES OEUVRES,Pleines-Œuvres,Pleines-Œuvres,COM,50649,0,PONT FARCY,Pont-Farcy,Pont-Farcy +32,2018-03-01,COM,17340,0,SAINT GERMAIN DE MARENCENNES,Saint-Germain-de-Marencennes,Saint-Germain-de-Marencennes,COMD,17340,0,SAINT GERMAIN DE MARENCENNES,Saint-Germain-de-Marencennes,Saint-Germain-de-Marencennes +32,2018-01-01,COM,1025,0,BAGE LA VILLE,Bâgé-la-Ville,Bâgé-la-Ville,COM,1025,0,BAGE DOMMARTIN,Bâgé-Dommartin,Bâgé-Dommartin +32,2018-01-01,COM,1025,0,BAGE LA VILLE,Bâgé-la-Ville,Bâgé-la-Ville,COMD,1025,0,BAGE LA VILLE,Bâgé-la-Ville,Bâgé-la-Ville +32,2018-01-01,COM,1144,0,DOMMARTIN,Dommartin,Dommartin,COM,1025,0,BAGE DOMMARTIN,Bâgé-Dommartin,Bâgé-Dommartin +32,2018-01-01,COM,1144,0,DOMMARTIN,Dommartin,Dommartin,COMD,1144,0,DOMMARTIN,Dommartin,Dommartin +32,2018-01-01,COM,5039,0,CHAUFFAYER,Chauffayer,Chauffayer,COM,5039,1,AUBESSAGNE,Aubessagne,Aubessagne +32,2018-01-01,COM,5043,4,COSTES,Costes,Les Costes,COM,5039,1,AUBESSAGNE,Aubessagne,Aubessagne +32,2018-01-01,COM,5141,0,SAINT EUSEBE EN CHAMPSAUR,Saint-Eusèbe-en-Champsaur,Saint-Eusèbe-en-Champsaur,COM,5039,1,AUBESSAGNE,Aubessagne,Aubessagne +35,2018-01-01,COMD,14037,0,BANNEVILLE SUR AJON,Banneville-sur-Ajon,Banneville-sur-Ajon,COM,14037,0,MALHERBE SUR AJON,Malherbe-sur-Ajon,Malherbe-sur-Ajon +34,2018-01-01,COMA,14507,0,PLEINES OUVRES,Pleines-Œuvres,Pleines-Œuvres,COM,50649,0,PONT FARCY,Pont-Farcy,Pont-Farcy 34,2018-01-01,COM,14513,0,PONT FARCY,Pont-Farcy,Pont-Farcy,COM,50649,0,PONT FARCY,Pont-Farcy,Pont-Farcy -34,2018-01-01,COMD,14553,0,SAINT AGNAN LE MALHERBE,Saint-Agnan-le-Malherbe,Saint-Agnan-le-Malherbe,COM,14037,0,MALHERBE SUR AJON,Malherbe-sur-Ajon,Malherbe-sur-Ajon +35,2018-01-01,COMD,14553,0,SAINT AGNAN LE MALHERBE,Saint-Agnan-le-Malherbe,Saint-Agnan-le-Malherbe,COM,14037,0,MALHERBE SUR AJON,Malherbe-sur-Ajon,Malherbe-sur-Ajon 32,2018-01-01,COM,16296,0,SAINT AMANT DE BONNIEURE,Saint-Amant-de-Bonnieure,Saint-Amant-de-Bonnieure,COMD,16296,0,SAINT AMANT DE BONNIEURE,Saint-Amant-de-Bonnieure,Saint-Amant-de-Bonnieure 32,2018-01-01,COM,16296,0,SAINT AMANT DE BONNIEURE,Saint-Amant-de-Bonnieure,Saint-Amant-de-Bonnieure,COM,16300,0,VAL DE BONNIEURE,Val-de-Bonnieure,Val-de-Bonnieure -32,2018-01-01,COM,16300,0,SAINT ANGEAU,Saint-Angeau,Saint-Angeau,COMD,16300,0,SAINT ANGEAU,Saint-Angeau,Saint-Angeau 32,2018-01-01,COM,16300,0,SAINT ANGEAU,Saint-Angeau,Saint-Angeau,COM,16300,0,VAL DE BONNIEURE,Val-de-Bonnieure,Val-de-Bonnieure +32,2018-01-01,COM,16300,0,SAINT ANGEAU,Saint-Angeau,Saint-Angeau,COMD,16300,0,SAINT ANGEAU,Saint-Angeau,Saint-Angeau 32,2018-01-01,COM,16309,0,SAINTE COLOMBE,Sainte-Colombe,Sainte-Colombe,COM,16300,0,VAL DE BONNIEURE,Val-de-Bonnieure,Val-de-Bonnieure 32,2018-01-01,COM,16309,0,SAINTE COLOMBE,Sainte-Colombe,Sainte-Colombe,COMD,16309,0,SAINTE COLOMBE,Sainte-Colombe,Sainte-Colombe -32,2018-01-01,COM,17103,0,CHERVETTES,Chervettes,Chervettes,COM,17457,3,DEVISE,Devise,La Devise 32,2018-01-01,COM,17103,0,CHERVETTES,Chervettes,Chervettes,COMD,17103,0,CHERVETTES,Chervettes,Chervettes +32,2018-01-01,COM,17103,0,CHERVETTES,Chervettes,Chervettes,COM,17457,3,DEVISE,Devise,La Devise 32,2018-01-01,COM,17160,0,FLOIRAC,Floirac,Floirac,COM,17160,0,FLOIRAC,Floirac,Floirac 32,2018-01-01,COM,17352,0,SAINT LAURENT DE LA BARRIERE,Saint-Laurent-de-la-Barrière,Saint-Laurent-de-la-Barrière,COMD,17352,0,SAINT LAURENT DE LA BARRIERE,Saint-Laurent-de-la-Barrière,Saint-Laurent-de-la-Barrière 32,2018-01-01,COM,17352,0,SAINT LAURENT DE LA BARRIERE,Saint-Laurent-de-la-Barrière,Saint-Laurent-de-la-Barrière,COM,17457,3,DEVISE,Devise,La Devise @@ -1893,32 +1726,33 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2018-01-01,COM,17457,0,VANDRE,Vandré,Vandré,COM,17457,3,DEVISE,Devise,La Devise 32,2018-01-01,COM,17457,0,VANDRE,Vandré,Vandré,COMD,17457,0,VANDRE,Vandré,Vandré 32,2018-01-01,COM,22050,0,DINAN,Dinan,Dinan,COM,22050,0,DINAN,Dinan,Dinan -32,2018-01-01,COM,22123,0,LEHON,Léhon,Léhon,COMD,22123,0,LEHON,Léhon,Léhon 32,2018-01-01,COM,22123,0,LEHON,Léhon,Léhon,COM,22050,0,DINAN,Dinan,Dinan +32,2018-01-01,COM,22123,0,LEHON,Léhon,Léhon,COMD,22123,0,LEHON,Léhon,Léhon 32,2018-01-01,COM,25078,0,BOUCLANS,Bouclans,Bouclans,COM,25078,0,BOUCLANS,Bouclans,Bouclans 32,2018-01-01,COM,25137,0,CHAUDEFONTAINE,Chaudefontaine,Chaudefontaine,COM,25368,0,MARCHAUX CHAUDEFONTAINE,Marchaux-Chaudefontaine,Marchaux-Chaudefontaine 32,2018-01-01,COM,25368,0,MARCHAUX,Marchaux,Marchaux,COM,25368,0,MARCHAUX CHAUDEFONTAINE,Marchaux-Chaudefontaine,Marchaux-Chaudefontaine -32,2018-01-01,COM,25587,0,VAUCHAMPS,Vauchamps,Vauchamps,COMD,25587,0,VAUCHAMPS,Vauchamps,Vauchamps 32,2018-01-01,COM,25587,0,VAUCHAMPS,Vauchamps,Vauchamps,COM,25078,0,BOUCLANS,Bouclans,Bouclans +32,2018-01-01,COM,25587,0,VAUCHAMPS,Vauchamps,Vauchamps,COMD,25587,0,VAUCHAMPS,Vauchamps,Vauchamps +32,2018-01-01,COM,27089,0,THENOUVILLE,Thénouville,Thénouville,COMD,27089,0,BOSC RENOULT EN ROUMOIS,Bosc-Renoult-en-Roumois,Bosc-Renoult-en-Roumois +32,2018-01-01,COM,27089,0,THENOUVILLE,Thénouville,Thénouville,COM,27089,0,THENOUVILLE,Thénouville,Thénouville 32,2018-01-01,COMD,27089,0,BOSC RENOULT EN ROUMOIS,Bosc-Renoult-en-Roumois,Bosc-Renoult-en-Roumois,COMD,27089,0,BOSC RENOULT EN ROUMOIS,Bosc-Renoult-en-Roumois,Bosc-Renoult-en-Roumois 32,2018-01-01,COMD,27089,0,BOSC RENOULT EN ROUMOIS,Bosc-Renoult-en-Roumois,Bosc-Renoult-en-Roumois,COM,27089,0,THENOUVILLE,Thénouville,Thénouville -32,2018-01-01,COM,27089,0,THENOUVILLE,Thénouville,Thénouville,COM,27089,0,THENOUVILLE,Thénouville,Thénouville 32,2018-01-01,COM,27268,2,FRESNE,Fresne,Le Fresne,COMD,27268,2,FRESNE,Fresne,Le Fresne 32,2018-01-01,COM,27268,2,FRESNE,Fresne,Le Fresne,COM,27447,2,VAL DORE,Val-Doré,Le Val-Doré -32,2018-01-01,COM,27290,0,GOUPILLIERES,Goupillières,Goupillières,COM,27290,0,GOUPIL OTHON,Goupil-Othon,Goupil-Othon 32,2018-01-01,COM,27290,0,GOUPILLIERES,Goupillières,Goupillières,COMD,27290,0,GOUPILLIERES,Goupillières,Goupillières -32,2018-01-01,COM,27402,2,MESNIL HARDRAY,Mesnil-Hardray,Le Mesnil-Hardray,COM,27447,2,VAL DORE,Val-Doré,Le Val-Doré +32,2018-01-01,COM,27290,0,GOUPILLIERES,Goupillières,Goupillières,COM,27290,0,GOUPIL OTHON,Goupil-Othon,Goupil-Othon 32,2018-01-01,COM,27402,2,MESNIL HARDRAY,Mesnil-Hardray,Le Mesnil-Hardray,COMD,27402,2,MESNIL HARDRAY,Mesnil-Hardray,Le Mesnil-Hardray -32,2018-01-01,COM,27447,1,ORVAUX,Orvaux,Orvaux,COM,27447,2,VAL DORE,Val-Doré,Le Val-Doré +32,2018-01-01,COM,27402,2,MESNIL HARDRAY,Mesnil-Hardray,Le Mesnil-Hardray,COM,27447,2,VAL DORE,Val-Doré,Le Val-Doré 32,2018-01-01,COM,27447,1,ORVAUX,Orvaux,Orvaux,COMD,27447,1,ORVAUX,Orvaux,Orvaux +32,2018-01-01,COM,27447,1,ORVAUX,Orvaux,Orvaux,COM,27447,2,VAL DORE,Val-Doré,Le Val-Doré 32,2018-01-01,COM,27467,0,PONT AUDEMER,Pont-Audemer,Pont-Audemer,COMD,27467,0,PONT AUDEMER,Pont-Audemer,Pont-Audemer 32,2018-01-01,COM,27467,0,PONT AUDEMER,Pont-Audemer,Pont-Audemer,COM,27467,0,PONT AUDEMER,Pont-Audemer,Pont-Audemer -32,2018-01-01,COM,27471,0,PORTE JOIE,Porte-Joie,Porte-Joie,COM,27471,0,PORTE DE SEINE,Porte-de-Seine,Porte-de-Seine 32,2018-01-01,COM,27471,0,PORTE JOIE,Porte-Joie,Porte-Joie,COMD,27471,0,PORTE JOIE,Porte-Joie,Porte-Joie +32,2018-01-01,COM,27471,0,PORTE JOIE,Porte-Joie,Porte-Joie,COM,27471,0,PORTE DE SEINE,Porte-de-Seine,Porte-de-Seine 32,2018-01-01,COM,27549,0,SAINT GERMAIN VILLAGE,Saint-Germain-Village,Saint-Germain-Village,COM,27467,0,PONT AUDEMER,Pont-Audemer,Pont-Audemer 32,2018-01-01,COM,27549,0,SAINT GERMAIN VILLAGE,Saint-Germain-Village,Saint-Germain-Village,COMD,27549,0,SAINT GERMAIN VILLAGE,Saint-Germain-Village,Saint-Germain-Village -32,2018-01-01,COMD,27626,0,THEILLEMENT,Theillement,Theillement,COMD,27626,0,THEILLEMENT,Theillement,Theillement 32,2018-01-01,COMD,27626,0,THEILLEMENT,Theillement,Theillement,COM,27089,0,THENOUVILLE,Thénouville,Thénouville +32,2018-01-01,COMD,27626,0,THEILLEMENT,Theillement,Theillement,COMD,27626,0,THEILLEMENT,Theillement,Theillement 32,2018-01-01,COM,27642,2,TILLEUL OTHON,Tilleul-Othon,Le Tilleul-Othon,COM,27290,0,GOUPIL OTHON,Goupil-Othon,Goupil-Othon 32,2018-01-01,COM,27642,2,TILLEUL OTHON,Tilleul-Othon,Le Tilleul-Othon,COMD,27642,2,TILLEUL OTHON,Tilleul-Othon,Le Tilleul-Othon 32,2018-01-01,COM,27651,0,TOURNEDOS SUR SEINE,Tournedos-sur-Seine,Tournedos-sur-Seine,COM,27471,0,PORTE DE SEINE,Porte-de-Seine,Porte-de-Seine @@ -1930,27 +1764,28 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2018-01-01,COM,28250,0,MEZIERES AU PERCHE,Mézières-au-Perche,Mézières-au-Perche,COM,28127,0,DANGEAU,Dangeau,Dangeau 32,2018-01-01,COM,31277,0,LASSERRE,Lasserre,Lasserre,COM,31277,0,LASSERRE PRADERE,Lasserre-Pradère,Lasserre-Pradère 32,2018-01-01,COM,31438,0,PRADERE LES BOURGUETS,Pradère-les-Bourguets,Pradère-les-Bourguets,COM,31277,0,LASSERRE PRADERE,Lasserre-Pradère,Lasserre-Pradère -32,2018-01-01,COM,37209,0,SAINT BAULD,Saint-Bauld,Saint-Bauld,COM,37254,0,TAUXIGNY SAINT BAULD,Tauxigny-Saint-Bauld,Tauxigny-Saint-Bauld 32,2018-01-01,COM,37209,0,SAINT BAULD,Saint-Bauld,Saint-Bauld,COMD,37209,0,SAINT BAULD,Saint-Bauld,Saint-Bauld +32,2018-01-01,COM,37209,0,SAINT BAULD,Saint-Bauld,Saint-Bauld,COM,37254,0,TAUXIGNY SAINT BAULD,Tauxigny-Saint-Bauld,Tauxigny-Saint-Bauld 32,2018-01-01,COM,37254,0,TAUXIGNY,Tauxigny,Tauxigny,COM,37254,0,TAUXIGNY SAINT BAULD,Tauxigny-Saint-Bauld,Tauxigny-Saint-Bauld 32,2018-01-01,COM,39016,1,ARINTHOD,Arinthod,Arinthod,COM,39016,1,ARINTHOD,Arinthod,Arinthod -32,2018-01-01,COM,39036,3,BALME D EPY,Balme-d'Épy,La Balme-d'Épy,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy 32,2018-01-01,COM,39036,3,BALME D EPY,Balme-d'Épy,La Balme-d'Épy,COMD,39036,3,BALME D EPY,Balme-d'Épy,La Balme-d'Épy +32,2018-01-01,COM,39036,3,BALME D EPY,Balme-d'Épy,La Balme-d'Épy,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy 32,2018-01-01,COM,39148,0,CHISSERIA,Chisséria,Chisséria,COM,39016,1,ARINTHOD,Arinthod,Arinthod -32,2018-01-01,COMD,39209,0,VAL D EPY,Val d'Épy,Val d'Épy,COMD,39209,0,VAL D EPY,Val d'Épy,Val d'Épy +32,2018-01-01,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy,COMD,39209,0,VAL D EPY,Val d'Épy,Val d'Épy 32,2018-01-01,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy +32,2018-01-01,COMD,39209,0,VAL D EPY,Val d'Épy,Val d'Épy,COMD,39209,0,VAL D EPY,Val d'Épy,Val d'Épy 32,2018-01-01,COMD,39209,0,VAL D EPY,Val d'Épy,Val d'Épy,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy -32,2018-01-01,COMD,39226,0,FLORENTIA,Florentia,Florentia,COMD,39226,0,FLORENTIA,Florentia,Florentia 32,2018-01-01,COMD,39226,0,FLORENTIA,Florentia,Florentia,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy +32,2018-01-01,COMD,39226,0,FLORENTIA,Florentia,Florentia,COMD,39226,0,FLORENTIA,Florentia,Florentia 32,2018-01-01,COMD,39382,0,NANTEY,Nantey,Nantey,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy 32,2018-01-01,COMD,39382,0,NANTEY,Nantey,Nantey,COMD,39382,0,NANTEY,Nantey,Nantey -32,2018-01-01,COMD,39509,0,SENAUD,Senaud,Senaud,COMD,39509,0,SENAUD,Senaud,Senaud 32,2018-01-01,COMD,39509,0,SENAUD,Senaud,Senaud,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy -32,2018-01-01,COM,39542,0,VALFIN SUR VALOUSE,Valfin-sur-Valouse,Valfin-sur-Valouse,COM,39583,0,VOSBLES VALFIN,Vosbles-Valfin,Vosbles-Valfin +32,2018-01-01,COMD,39509,0,SENAUD,Senaud,Senaud,COMD,39509,0,SENAUD,Senaud,Senaud 32,2018-01-01,COM,39542,0,VALFIN SUR VALOUSE,Valfin-sur-Valouse,Valfin-sur-Valouse,COMD,39542,0,VALFIN SUR VALOUSE,Valfin-sur-Valouse,Valfin-sur-Valouse +32,2018-01-01,COM,39542,0,VALFIN SUR VALOUSE,Valfin-sur-Valouse,Valfin-sur-Valouse,COM,39583,0,VOSBLES VALFIN,Vosbles-Valfin,Vosbles-Valfin 32,2018-01-01,COM,39583,0,VOSBLES,Vosbles,Vosbles,COM,39583,0,VOSBLES VALFIN,Vosbles-Valfin,Vosbles-Valfin -32,2018-01-01,COM,41005,1,ARVILLE,Arville,Arville,COM,41248,0,COUETRON AU PERCHE,Couëtron-au-Perche,Couëtron-au-Perche 32,2018-01-01,COM,41005,1,ARVILLE,Arville,Arville,COMD,41005,1,ARVILLE,Arville,Arville +32,2018-01-01,COM,41005,1,ARVILLE,Arville,Arville,COM,41248,0,COUETRON AU PERCHE,Couëtron-au-Perche,Couëtron-au-Perche 32,2018-01-01,COM,41165,1,OIGNY,Oigny,Oigny,COMD,41165,1,OIGNY,Oigny,Oigny 32,2018-01-01,COM,41165,1,OIGNY,Oigny,Oigny,COM,41248,0,COUETRON AU PERCHE,Couëtron-au-Perche,Couëtron-au-Perche 32,2018-01-01,COM,41197,0,SAINT AGIL,Saint-Agil,Saint-Agil,COMD,41197,0,SAINT AGIL,Saint-Agil,Saint-Agil @@ -1959,16 +1794,16 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2018-01-01,COM,41202,0,SAINT AVIT,Saint-Avit,Saint-Avit,COM,41248,0,COUETRON AU PERCHE,Couëtron-au-Perche,Couëtron-au-Perche 32,2018-01-01,COM,41248,0,SOUDAY,Souday,Souday,COMD,41248,0,SOUDAY,Souday,Souday 32,2018-01-01,COM,41248,0,SOUDAY,Souday,Souday,COM,41248,0,COUETRON AU PERCHE,Couëtron-au-Perche,Couëtron-au-Perche -32,2018-01-01,COM,44017,0,BONNOEUVRE,Bonnœuvre,Bonnœuvre,COM,44180,0,VALLONS DE L ERDRE,Vallons-de-l'Erdre,Vallons-de-l'Erdre -32,2018-01-01,COM,44017,0,BONNOEUVRE,Bonnœuvre,Bonnœuvre,COMD,44017,0,BONNOEUVRE,Bonnœuvre,Bonnœuvre -32,2018-01-01,COM,44093,0,MAUMUSSON,Maumusson,Maumusson,COM,44180,0,VALLONS DE L ERDRE,Vallons-de-l'Erdre,Vallons-de-l'Erdre +32,2018-01-01,COM,44017,0,BONNOUVRE,Bonnœuvre,Bonnœuvre,COMD,44017,0,BONNOUVRE,Bonnœuvre,Bonnœuvre +32,2018-01-01,COM,44017,0,BONNOUVRE,Bonnœuvre,Bonnœuvre,COM,44180,0,VALLONS DE L ERDRE,Vallons-de-l'Erdre,Vallons-de-l'Erdre 32,2018-01-01,COM,44093,0,MAUMUSSON,Maumusson,Maumusson,COMD,44093,0,MAUMUSSON,Maumusson,Maumusson +32,2018-01-01,COM,44093,0,MAUMUSSON,Maumusson,Maumusson,COM,44180,0,VALLONS DE L ERDRE,Vallons-de-l'Erdre,Vallons-de-l'Erdre 32,2018-01-01,COM,44180,0,SAINT MARS LA JAILLE,Saint-Mars-la-Jaille,Saint-Mars-la-Jaille,COMD,44180,0,SAINT MARS LA JAILLE,Saint-Mars-la-Jaille,Saint-Mars-la-Jaille 32,2018-01-01,COM,44180,0,SAINT MARS LA JAILLE,Saint-Mars-la-Jaille,Saint-Mars-la-Jaille,COM,44180,0,VALLONS DE L ERDRE,Vallons-de-l'Erdre,Vallons-de-l'Erdre -32,2018-01-01,COM,44191,0,SAINT SULPICE DES LANDES,Saint-Sulpice-des-Landes,Saint-Sulpice-des-Landes,COMD,44191,0,SAINT SULPICE DES LANDES,Saint-Sulpice-des-Landes,Saint-Sulpice-des-Landes 32,2018-01-01,COM,44191,0,SAINT SULPICE DES LANDES,Saint-Sulpice-des-Landes,Saint-Sulpice-des-Landes,COM,44180,0,VALLONS DE L ERDRE,Vallons-de-l'Erdre,Vallons-de-l'Erdre -32,2018-01-01,COM,44219,0,VRITZ,Vritz,Vritz,COMD,44219,0,VRITZ,Vritz,Vritz +32,2018-01-01,COM,44191,0,SAINT SULPICE DES LANDES,Saint-Sulpice-des-Landes,Saint-Sulpice-des-Landes,COMD,44191,0,SAINT SULPICE DES LANDES,Saint-Sulpice-des-Landes,Saint-Sulpice-des-Landes 32,2018-01-01,COM,44219,0,VRITZ,Vritz,Vritz,COM,44180,0,VALLONS DE L ERDRE,Vallons-de-l'Erdre,Vallons-de-l'Erdre +32,2018-01-01,COM,44219,0,VRITZ,Vritz,Vritz,COMD,44219,0,VRITZ,Vritz,Vritz 32,2018-01-01,COM,44225,0,FREIGNE,Freigné,Freigné,COM,44180,0,VALLONS DE L ERDRE,Vallons-de-l'Erdre,Vallons-de-l'Erdre 32,2018-01-01,COM,44225,0,FREIGNE,Freigné,Freigné,COMD,44225,0,FREIGNE,Freigné,Freigné 32,2018-01-01,COM,46158,0,LASCABANES,Lascabanes,Lascabanes,COMD,46158,0,LASCABANES,Lascabanes,Lascabanes @@ -1980,38 +1815,39 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2018-01-01,COMD,49094,0,CHENEHUTTE TREVES CUNAULT,Chênehutte-Trèves-Cunault,Chênehutte-Trèves-Cunault,COMD,49094,0,CHENEHUTTE TREVES CUNAULT,Chênehutte-Trèves-Cunault,Chênehutte-Trèves-Cunault 32,2018-01-01,COMD,49094,0,CHENEHUTTE TREVES CUNAULT,Chênehutte-Trèves-Cunault,Chênehutte-Trèves-Cunault,COM,49261,0,GENNES VAL DE LOIRE,Gennes-Val-de-Loire,Gennes-Val-de-Loire 41,2018-01-01,COM,49144,0,FREIGNE,Freigné,Freigné,COM,44225,0,FREIGNE,Freigné,Freigné -32,2018-01-01,COMD,49149,0,GENNES,Gennes,Gennes,COM,49261,0,GENNES VAL DE LOIRE,Gennes-Val-de-Loire,Gennes-Val-de-Loire 32,2018-01-01,COMD,49149,0,GENNES,Gennes,Gennes,COMD,49149,0,GENNES,Gennes,Gennes +32,2018-01-01,COM,49149,0,GENNES VAL DE LOIRE,Gennes-Val de Loire,Gennes-Val de Loire,COMD,49149,0,GENNES,Gennes,Gennes +32,2018-01-01,COMD,49149,0,GENNES,Gennes,Gennes,COM,49261,0,GENNES VAL DE LOIRE,Gennes-Val-de-Loire,Gennes-Val-de-Loire 32,2018-01-01,COM,49149,0,GENNES VAL DE LOIRE,Gennes-Val de Loire,Gennes-Val de Loire,COM,49261,0,GENNES VAL DE LOIRE,Gennes-Val-de-Loire,Gennes-Val-de-Loire 32,2018-01-01,COMD,49154,0,GREZILLE,Grézillé,Grézillé,COMD,49154,0,GREZILLE,Grézillé,Grézillé 32,2018-01-01,COMD,49154,0,GREZILLE,Grézillé,Grézillé,COM,49261,0,GENNES VAL DE LOIRE,Gennes-Val-de-Loire,Gennes-Val-de-Loire 32,2018-01-01,COM,49261,4,ROSIERS SUR LOIRE,Rosiers-sur-Loire,Les Rosiers-sur-Loire,COMD,49261,4,ROSIERS SUR LOIRE,Rosiers-sur-Loire,Les Rosiers-sur-Loire 32,2018-01-01,COM,49261,4,ROSIERS SUR LOIRE,Rosiers-sur-Loire,Les Rosiers-sur-Loire,COM,49261,0,GENNES VAL DE LOIRE,Gennes-Val-de-Loire,Gennes-Val-de-Loire -32,2018-01-01,COMD,49279,0,SAINT GEORGES DES SEPT VOIES,Saint-Georges-des-Sept-Voies,Saint-Georges-des-Sept-Voies,COMD,49279,0,SAINT GEORGES DES SEPT VOIES,Saint-Georges-des-Sept-Voies,Saint-Georges-des-Sept-Voies 32,2018-01-01,COMD,49279,0,SAINT GEORGES DES SEPT VOIES,Saint-Georges-des-Sept-Voies,Saint-Georges-des-Sept-Voies,COM,49261,0,GENNES VAL DE LOIRE,Gennes-Val-de-Loire,Gennes-Val-de-Loire +32,2018-01-01,COMD,49279,0,SAINT GEORGES DES SEPT VOIES,Saint-Georges-des-Sept-Voies,Saint-Georges-des-Sept-Voies,COMD,49279,0,SAINT GEORGES DES SEPT VOIES,Saint-Georges-des-Sept-Voies,Saint-Georges-des-Sept-Voies 32,2018-01-01,COM,49304,0,SAINT MARTIN DE LA PLACE,Saint-Martin-de-la-Place,Saint-Martin-de-la-Place,COM,49261,0,GENNES VAL DE LOIRE,Gennes-Val-de-Loire,Gennes-Val-de-Loire 32,2018-01-01,COM,49304,0,SAINT MARTIN DE LA PLACE,Saint-Martin-de-la-Place,Saint-Martin-de-la-Place,COMD,49304,0,SAINT MARTIN DE LA PLACE,Saint-Martin-de-la-Place,Saint-Martin-de-la-Place 32,2018-01-01,COMD,49346,2,THOUREIL,Thoureil,Le Thoureil,COM,49261,0,GENNES VAL DE LOIRE,Gennes-Val-de-Loire,Gennes-Val-de-Loire 32,2018-01-01,COMD,49346,2,THOUREIL,Thoureil,Le Thoureil,COMD,49346,2,THOUREIL,Thoureil,Le Thoureil 34,2018-01-01,COMA,50067,3,BOULOUZE,Boulouze,La Boulouze,COM,50531,0,SAINT OVIN,Saint-Ovin,Saint-Ovin -32,2018-01-01,COMD,50180,0,FERVACHES,Fervaches,Fervaches,COM,50592,0,TESSY BOCAGE,Tessy-Bocage,Tessy-Bocage 32,2018-01-01,COMD,50180,0,FERVACHES,Fervaches,Fervaches,COMD,50180,0,FERVACHES,Fervaches,Fervaches +32,2018-01-01,COMD,50180,0,FERVACHES,Fervaches,Fervaches,COM,50592,0,TESSY BOCAGE,Tessy-Bocage,Tessy-Bocage 32,2018-01-01,COM,50248,2,HOMMET D ARTHENAY,Hommet-d'Arthenay,Le Hommet-d'Arthenay,COMD,50248,2,HOMMET D ARTHENAY,Hommet-d'Arthenay,Le Hommet-d'Arthenay 32,2018-01-01,COM,50248,2,HOMMET D ARTHENAY,Hommet-d'Arthenay,Le Hommet-d'Arthenay,COM,50409,0,PONT HEBERT,Pont-Hébert,Pont-Hébert 32,2018-01-01,COM,50409,0,PONT HEBERT,Pont-Hébert,Pont-Hébert,COMD,50409,0,PONT HEBERT,Pont-Hébert,Pont-Hébert 32,2018-01-01,COM,50409,0,PONT HEBERT,Pont-Hébert,Pont-Hébert,COM,50409,0,PONT HEBERT,Pont-Hébert,Pont-Hébert -34,2018-01-01,COM,50531,0,SAINT OVIN,Saint-Ovin,Saint-Ovin,COM,50531,0,SAINT OVIN,Saint-Ovin,Saint-Ovin 32,2018-01-01,COMD,50592,0,TESSY SUR VIRE,Tessy-sur-Vire,Tessy-sur-Vire,COM,50592,0,TESSY BOCAGE,Tessy-Bocage,Tessy-Bocage -32,2018-01-01,COM,50592,0,TESSY BOCAGE,Tessy Bocage,Tessy Bocage,COM,50592,0,TESSY BOCAGE,Tessy-Bocage,Tessy-Bocage 32,2018-01-01,COMD,50592,0,TESSY SUR VIRE,Tessy-sur-Vire,Tessy-sur-Vire,COMD,50592,0,TESSY SUR VIRE,Tessy-sur-Vire,Tessy-sur-Vire -32,2018-01-01,COM,50649,0,PONT FARCY,Pont-Farcy,Pont-Farcy,COMD,50649,0,PONT FARCY,Pont-Farcy,Pont-Farcy +32,2018-01-01,COM,50592,0,TESSY BOCAGE,Tessy Bocage,Tessy Bocage,COM,50592,0,TESSY BOCAGE,Tessy-Bocage,Tessy-Bocage +32,2018-01-01,COM,50592,0,TESSY BOCAGE,Tessy Bocage,Tessy Bocage,COMD,50592,0,TESSY SUR VIRE,Tessy-sur-Vire,Tessy-sur-Vire 32,2018-01-01,COM,50649,0,PONT FARCY,Pont-Farcy,Pont-Farcy,COM,50592,0,TESSY BOCAGE,Tessy-Bocage,Tessy-Bocage -32,2018-01-01,COM,51271,0,GIONGES,Gionges,Gionges,COM,51612,0,BLANCS COTEAUX,Blancs-Coteaux,Blancs-Coteaux +32,2018-01-01,COM,50649,0,PONT FARCY,Pont-Farcy,Pont-Farcy,COMD,50649,0,PONT FARCY,Pont-Farcy,Pont-Farcy 32,2018-01-01,COM,51271,0,GIONGES,Gionges,Gionges,COMD,51271,0,GIONGES,Gionges,Gionges +32,2018-01-01,COM,51271,0,GIONGES,Gionges,Gionges,COM,51612,0,BLANCS COTEAUX,Blancs-Coteaux,Blancs-Coteaux 32,2018-01-01,COM,51411,1,OGER,Oger,Oger,COMD,51411,1,OGER,Oger,Oger 32,2018-01-01,COM,51411,1,OGER,Oger,Oger,COM,51612,0,BLANCS COTEAUX,Blancs-Coteaux,Blancs-Coteaux -32,2018-01-01,COM,51612,0,VERTUS,Vertus,Vertus,COMD,51612,0,VERTUS,Vertus,Vertus 32,2018-01-01,COM,51612,0,VERTUS,Vertus,Vertus,COM,51612,0,BLANCS COTEAUX,Blancs-Coteaux,Blancs-Coteaux +32,2018-01-01,COM,51612,0,VERTUS,Vertus,Vertus,COMD,51612,0,VERTUS,Vertus,Vertus 32,2018-01-01,COM,51651,0,VOIPREUX,Voipreux,Voipreux,COM,51612,0,BLANCS COTEAUX,Blancs-Coteaux,Blancs-Coteaux 32,2018-01-01,COM,51651,0,VOIPREUX,Voipreux,Voipreux,COMD,51651,0,VOIPREUX,Voipreux,Voipreux 32,2018-01-01,COM,53004,1,AMPOIGNE,Ampoigné,Ampoigné,COMD,53004,1,AMPOIGNE,Ampoigné,Ampoigné @@ -2019,7 +1855,6 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2018-01-01,COM,53124,0,LAIGNE,Laigné,Laigné,COM,53124,0,PREE D ANJOU,Prée-d'Anjou,Prée-d'Anjou 32,2018-01-01,COM,53124,0,LAIGNE,Laigné,Laigné,COMD,53124,0,LAIGNE,Laigné,Laigné 34,2018-01-01,COMA,55090,0,BUSSY LA COTE,Bussy-la-Côte,Bussy-la-Côte,COM,55366,0,VAL D ORNAIN,Val-d'Ornain,Val-d'Ornain -34,2018-01-01,COM,55366,0,VAL D ORNAIN,Val-d'Ornain,Val-d'Ornain,COM,55366,0,VAL D ORNAIN,Val-d'Ornain,Val-d'Ornain 34,2018-01-01,COMA,55529,0,VARNEY,Varney,Varney,COM,55366,0,VAL D ORNAIN,Val-d'Ornain,Val-d'Ornain 32,2018-01-01,COM,60644,0,TRIE CHATEAU,Trie-Château,Trie-Château,COM,60644,0,TRIE CHATEAU,Trie-Château,Trie-Château 32,2018-01-01,COM,60644,0,TRIE CHATEAU,Trie-Château,Trie-Château,COMD,60644,0,TRIE CHATEAU,Trie-Château,Trie-Château @@ -2030,59 +1865,55 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2018-01-01,COMD,61127,3,COURBE,Courbe,La Courbe,COMD,61127,3,COURBE,Courbe,La Courbe 32,2018-01-01,COMD,61127,3,COURBE,Courbe,La Courbe,COM,61153,1,ECOUCHE LES VALLEES,Écouché-les-Vallées,Écouché-les-Vallées 32,2018-01-01,COM,61153,1,ECOUCHE LES VALLEES,Écouché-les-Vallées,Écouché-les-Vallées,COM,61153,1,ECOUCHE LES VALLEES,Écouché-les-Vallées,Écouché-les-Vallées +32,2018-01-01,COM,61153,1,ECOUCHE LES VALLEES,Écouché-les-Vallées,Écouché-les-Vallées,COMD,61153,1,ECOUCHE,Écouché,Écouché 32,2018-01-01,COMD,61153,1,ECOUCHE,Écouché,Écouché,COM,61153,1,ECOUCHE LES VALLEES,Écouché-les-Vallées,Écouché-les-Vallées 32,2018-01-01,COMD,61153,1,ECOUCHE,Écouché,Écouché,COMD,61153,1,ECOUCHE,Écouché,Écouché -32,2018-01-01,COM,61173,0,FONTENAI SUR ORNE,Fontenai-sur-Orne,Fontenai-sur-Orne,COMD,61173,0,FONTENAI SUR ORNE,Fontenai-sur-Orne,Fontenai-sur-Orne 32,2018-01-01,COM,61173,0,FONTENAI SUR ORNE,Fontenai-sur-Orne,Fontenai-sur-Orne,COM,61153,1,ECOUCHE LES VALLEES,Écouché-les-Vallées,Écouché-les-Vallées -32,2018-01-01,COM,61194,0,GOULET,Goulet,Goulet,COM,61194,0,MONTS SUR ORNE,Monts-sur-Orne,Monts-sur-Orne +32,2018-01-01,COM,61173,0,FONTENAI SUR ORNE,Fontenai-sur-Orne,Fontenai-sur-Orne,COMD,61173,0,FONTENAI SUR ORNE,Fontenai-sur-Orne,Fontenai-sur-Orne 32,2018-01-01,COM,61194,0,GOULET,Goulet,Goulet,COMD,61194,0,GOULET,Goulet,Goulet -32,2018-01-01,COMD,61236,0,LOUCE,Loucé,Loucé,COMD,61236,0,LOUCE,Loucé,Loucé +32,2018-01-01,COM,61194,0,GOULET,Goulet,Goulet,COM,61194,0,MONTS SUR ORNE,Monts-sur-Orne,Monts-sur-Orne 32,2018-01-01,COMD,61236,0,LOUCE,Loucé,Loucé,COM,61153,1,ECOUCHE LES VALLEES,Écouché-les-Vallées,Écouché-les-Vallées -32,2018-01-01,COM,61285,0,MONTGAROULT,Montgaroult,Montgaroult,COMD,61285,0,MONTGAROULT,Montgaroult,Montgaroult +32,2018-01-01,COMD,61236,0,LOUCE,Loucé,Loucé,COMD,61236,0,LOUCE,Loucé,Loucé 32,2018-01-01,COM,61285,0,MONTGAROULT,Montgaroult,Montgaroult,COM,61194,0,MONTS SUR ORNE,Monts-sur-Orne,Monts-sur-Orne -32,2018-01-01,COM,61299,0,MOUSSONVILLIERS,Moussonvilliers,Moussonvilliers,COM,61429,0,CHARENCEY,Charencey,Charencey +32,2018-01-01,COM,61285,0,MONTGAROULT,Montgaroult,Montgaroult,COMD,61285,0,MONTGAROULT,Montgaroult,Montgaroult 32,2018-01-01,COM,61299,0,MOUSSONVILLIERS,Moussonvilliers,Moussonvilliers,COMD,61299,0,MOUSSONVILLIERS,Moussonvilliers,Moussonvilliers +32,2018-01-01,COM,61299,0,MOUSSONVILLIERS,Moussonvilliers,Moussonvilliers,COM,61429,0,CHARENCEY,Charencey,Charencey 32,2018-01-01,COM,61311,0,NORMANDEL,Normandel,Normandel,COMD,61311,0,NORMANDEL,Normandel,Normandel 32,2018-01-01,COM,61311,0,NORMANDEL,Normandel,Normandel,COM,61429,0,CHARENCEY,Charencey,Charencey 32,2018-01-01,COM,61429,0,SAINT MAURICE LES CHARENCEY,Saint-Maurice-lès-Charencey,Saint-Maurice-lès-Charencey,COM,61429,0,CHARENCEY,Charencey,Charencey 32,2018-01-01,COM,61429,0,SAINT MAURICE LES CHARENCEY,Saint-Maurice-lès-Charencey,Saint-Maurice-lès-Charencey,COMD,61429,0,SAINT MAURICE LES CHARENCEY,Saint-Maurice-lès-Charencey,Saint-Maurice-lès-Charencey -32,2018-01-01,COMD,61441,0,SAINT OUEN SUR MAIRE,Saint-Ouen-sur-Maire,Saint-Ouen-sur-Maire,COMD,61441,0,SAINT OUEN SUR MAIRE,Saint-Ouen-sur-Maire,Saint-Ouen-sur-Maire 32,2018-01-01,COMD,61441,0,SAINT OUEN SUR MAIRE,Saint-Ouen-sur-Maire,Saint-Ouen-sur-Maire,COM,61153,1,ECOUCHE LES VALLEES,Écouché-les-Vallées,Écouché-les-Vallées +32,2018-01-01,COMD,61441,0,SAINT OUEN SUR MAIRE,Saint-Ouen-sur-Maire,Saint-Ouen-sur-Maire,COMD,61441,0,SAINT OUEN SUR MAIRE,Saint-Ouen-sur-Maire,Saint-Ouen-sur-Maire 32,2018-01-01,COM,61468,0,SENTILLY,Sentilly,Sentilly,COM,61194,0,MONTS SUR ORNE,Monts-sur-Orne,Monts-sur-Orne 32,2018-01-01,COM,61468,0,SENTILLY,Sentilly,Sentilly,COMD,61468,0,SENTILLY,Sentilly,Sentilly -32,2018-01-01,COMD,61470,0,SERANS,Serans,Serans,COMD,61470,0,SERANS,Serans,Serans 32,2018-01-01,COMD,61470,0,SERANS,Serans,Serans,COM,61153,1,ECOUCHE LES VALLEES,Écouché-les-Vallées,Écouché-les-Vallées +32,2018-01-01,COMD,61470,0,SERANS,Serans,Serans,COMD,61470,0,SERANS,Serans,Serans +32,2018-01-01,COM,67153,0,GEISWILLER,Geiswiller,Geiswiller,COM,67153,0,GEISWILLER ZOBERSDORF,Geiswiller-Zœbersdorf,Geiswiller-Zœbersdorf 32,2018-01-01,COM,67153,0,GEISWILLER,Geiswiller,Geiswiller,COMD,67153,0,GEISWILLER,Geiswiller,Geiswiller -32,2018-01-01,COM,67153,0,GEISWILLER,Geiswiller,Geiswiller,COM,67153,0,GEISWILLER ZOEBERSDORF,Geiswiller-Zœbersdorf,Geiswiller-Zœbersdorf -32,2018-01-01,COM,67560,0,ZOEBERSDORF,Zœbersdorf,Zœbersdorf,COM,67153,0,GEISWILLER ZOEBERSDORF,Geiswiller-Zœbersdorf,Geiswiller-Zœbersdorf -32,2018-01-01,COM,67560,0,ZOEBERSDORF,Zœbersdorf,Zœbersdorf,COMD,67560,0,ZOEBERSDORF,Zœbersdorf,Zœbersdorf -32,2018-01-01,COM,69048,0,CHASSAGNY,Chassagny,Chassagny,COM,69179,0,BEAUVALLON,Beauvallon,Beauvallon +32,2018-01-01,COM,67560,0,ZOBERSDORF,Zœbersdorf,Zœbersdorf,COM,67153,0,GEISWILLER ZOBERSDORF,Geiswiller-Zœbersdorf,Geiswiller-Zœbersdorf +32,2018-01-01,COM,67560,0,ZOBERSDORF,Zœbersdorf,Zœbersdorf,COMD,67560,0,ZOBERSDORF,Zœbersdorf,Zœbersdorf 32,2018-01-01,COM,69048,0,CHASSAGNY,Chassagny,Chassagny,COMD,69048,0,CHASSAGNY,Chassagny,Chassagny -32,2018-01-01,COM,69179,0,SAINT ANDEOL LE CHATEAU,Saint-Andéol-le-Château,Saint-Andéol-le-Château,COM,69179,0,BEAUVALLON,Beauvallon,Beauvallon +32,2018-01-01,COM,69048,0,CHASSAGNY,Chassagny,Chassagny,COM,69179,0,BEAUVALLON,Beauvallon,Beauvallon 32,2018-01-01,COM,69179,0,SAINT ANDEOL LE CHATEAU,Saint-Andéol-le-Château,Saint-Andéol-le-Château,COMD,69179,0,SAINT ANDEOL LE CHATEAU,Saint-Andéol-le-Château,Saint-Andéol-le-Château +32,2018-01-01,COM,69179,0,SAINT ANDEOL LE CHATEAU,Saint-Andéol-le-Château,Saint-Andéol-le-Château,COM,69179,0,BEAUVALLON,Beauvallon,Beauvallon 32,2018-01-01,COM,69213,0,SAINT JEAN DE TOUSLAS,Saint-Jean-de-Touslas,Saint-Jean-de-Touslas,COM,69179,0,BEAUVALLON,Beauvallon,Beauvallon 32,2018-01-01,COM,69213,0,SAINT JEAN DE TOUSLAS,Saint-Jean-de-Touslas,Saint-Jean-de-Touslas,COMD,69213,0,SAINT JEAN DE TOUSLAS,Saint-Jean-de-Touslas,Saint-Jean-de-Touslas -32,2018-01-01,COM,72117,0,DISSE SOUS LE LUDE,Dissé-sous-le-Lude,Dissé-sous-le-Lude,COM,72176,2,LUDE,Lude,Le Lude 32,2018-01-01,COM,72117,0,DISSE SOUS LE LUDE,Dissé-sous-le-Lude,Dissé-sous-le-Lude,COMD,72117,0,DISSE SOUS LE LUDE,Dissé-sous-le-Lude,Dissé-sous-le-Lude +32,2018-01-01,COM,72117,0,DISSE SOUS LE LUDE,Dissé-sous-le-Lude,Dissé-sous-le-Lude,COM,72176,2,LUDE,Lude,Le Lude 32,2018-01-01,COM,72176,2,LUDE,Lude,Le Lude,COM,72176,2,LUDE,Lude,Le Lude 32,2018-01-01,COM,72176,2,LUDE,Lude,Le Lude,COMD,72176,2,LUDE,Lude,Le Lude -32,2018-01-01,COM,79033,0,BELLEVILLE,Belleville,Belleville,COM,79078,0,PLAINE D ARGENSON,Plaine-d'Argenson,Plaine-d'Argenson 32,2018-01-01,COM,79033,0,BELLEVILLE,Belleville,Belleville,COMD,79033,0,BELLEVILLE,Belleville,Belleville -32,2018-01-01,COM,79039,0,BOISSEROLLES,Boisserolles,Boisserolles,COM,79078,0,PLAINE D ARGENSON,Plaine-d'Argenson,Plaine-d'Argenson +32,2018-01-01,COM,79033,0,BELLEVILLE,Belleville,Belleville,COM,79078,0,PLAINE D ARGENSON,Plaine-d'Argenson,Plaine-d'Argenson 32,2018-01-01,COM,79039,0,BOISSEROLLES,Boisserolles,Boisserolles,COMD,79039,0,BOISSEROLLES,Boisserolles,Boisserolles +32,2018-01-01,COM,79039,0,BOISSEROLLES,Boisserolles,Boisserolles,COM,79078,0,PLAINE D ARGENSON,Plaine-d'Argenson,Plaine-d'Argenson 32,2018-01-01,COM,79078,0,PRISSE LA CHARRIERE,Prissé-la-Charrière,Prissé-la-Charrière,COM,79078,0,PLAINE D ARGENSON,Plaine-d'Argenson,Plaine-d'Argenson 32,2018-01-01,COM,79247,0,SAINT ETIENNE LA CIGOGNE,Saint-Étienne-la-Cigogne,Saint-Étienne-la-Cigogne,COM,79078,0,PLAINE D ARGENSON,Plaine-d'Argenson,Plaine-d'Argenson 32,2018-01-01,COM,79247,0,SAINT ETIENNE LA CIGOGNE,Saint-Étienne-la-Cigogne,Saint-Étienne-la-Cigogne,COMD,79247,0,SAINT ETIENNE LA CIGOGNE,Saint-Étienne-la-Cigogne,Saint-Étienne-la-Cigogne -34,2018-01-01,COM,86120,0,LATHUS SAINT REMY,Lathus-Saint-Rémy,Lathus-Saint-Rémy,COM,86120,0,LATHUS SAINT REMY,Lathus-Saint-Rémy,Lathus-Saint-Rémy 34,2018-01-01,COMA,86240,0,SAINT REMY EN MONTMORILLON,Saint-Rémy-en-Montmorillon,Saint-Rémy-en-Montmorillon,COM,86120,0,LATHUS SAINT REMY,Lathus-Saint-Rémy,Lathus-Saint-Rémy 32,2018-01-01,COM,95040,1,AVERNES,Avernes,Avernes,COM,95040,1,AVERNES,Avernes,Avernes 32,2018-01-01,COM,95259,0,GADANCOURT,Gadancourt,Gadancourt,COM,95040,1,AVERNES,Avernes,Avernes -10,2017-12-25,COM,02333,0,FRESNES,Fresnes,Fresnes,COM,02333,0,FRESNES SOUS COUCY,Fresnes-sous-Coucy,Fresnes-sous-Coucy -34,2017-12-25,COMD,22058,3,FERRIERE,Ferrière,La Ferrière,COM,22183,0,PLEMET,Plémet,Plémet -34,2017-12-25,COMD,22058,3,FERRIERE,Ferrière,La Ferrière,COMD,22058,3,FERRIERE,Ferrière,La Ferrière -34,2017-12-25,COM,22183,4,MOULINS,Moulins,Les Moulins,COM,22183,0,PLEMET,Plémet,Plémet -34,2017-12-25,COMD,22183,0,PLEMET,Plémet,Plémet,COM,22183,0,PLEMET,Plémet,Plémet -34,2017-12-25,COM,22183,4,MOULINS,Moulins,Les Moulins,COMD,22058,3,FERRIERE,Ferrière,La Ferrière +10,2017-12-25,COM,2333,0,FRESNES,Fresnes,Fresnes,COM,2333,0,FRESNES SOUS COUCY,Fresnes-sous-Coucy,Fresnes-sous-Coucy +10,2017-12-25,COM,22183,4,MOULINS,Moulins,Les Moulins,COM,22183,0,PLEMET,Plémet,Plémet 10,2017-12-25,COM,32374,0,SAINT ELIX,Saint-Élix,Saint-Élix,COM,32374,0,SAINT ELIX D ASTARAC,Saint-Élix-d'Astarac,Saint-Élix-d'Astarac 10,2017-12-25,COM,41110,0,LANGON,Langon,Langon,COM,41110,0,LANGON SUR CHER,Langon-sur-Cher,Langon-sur-Cher 10,2017-12-25,COM,55296,0,LISLE EN RIGAULT,Lisle-en-Rigault,Lisle-en-Rigault,COM,55296,5,ISLE EN RIGAULT,Isle-en-Rigault,L'Isle-en-Rigault @@ -2091,18 +1922,15 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,2017-12-25,COM,95308,1,HEROUVILLE,Hérouville,Hérouville,COM,95308,1,HEROUVILLE EN VEXIN,Hérouville-en-Vexin,Hérouville-en-Vexin 34,2017-09-27,COMA,55003,1,AILLY SUR MEUSE,Ailly-sur-Meuse,Ailly-sur-Meuse,COM,55229,0,HAN SUR MEUSE,Han-sur-Meuse,Han-sur-Meuse 34,2017-09-27,COMA,55074,0,BRASSEITTE,Brasseitte,Brasseitte,COM,55229,0,HAN SUR MEUSE,Han-sur-Meuse,Han-sur-Meuse -34,2017-09-27,COM,55085,0,BROUSSEY RAULECOURT,Broussey-Raulecourt,Broussey-Raulecourt,COM,55085,0,BROUSSEY RAULECOURT,Broussey-Raulecourt,Broussey-Raulecourt -34,2017-09-27,COM,55229,0,HAN SUR MEUSE,Han-sur-Meuse,Han-sur-Meuse,COM,55229,0,HAN SUR MEUSE,Han-sur-Meuse,Han-sur-Meuse 34,2017-09-27,COMA,55417,0,RAULECOURT,Raulecourt,Raulecourt,COM,55085,0,BROUSSEY RAULECOURT,Broussey-Raulecourt,Broussey-Raulecourt -32,2017-07-01,COM,05024,0,BRUIS,Bruis,Bruis,COMD,05024,0,BRUIS,Bruis,Bruis -32,2017-07-01,COM,05024,0,BRUIS,Bruis,Bruis,COM,05024,0,VALDOULE,Valdoule,Valdoule -32,2017-07-01,COM,05088,0,MONTMORIN,Montmorin,Montmorin,COM,05024,0,VALDOULE,Valdoule,Valdoule -32,2017-07-01,COM,05088,0,MONTMORIN,Montmorin,Montmorin,COMD,05088,0,MONTMORIN,Montmorin,Montmorin -32,2017-07-01,COM,05150,0,SAINTE MARIE,Sainte-Marie,Sainte-Marie,COM,05024,0,VALDOULE,Valdoule,Valdoule -32,2017-07-01,COM,05150,0,SAINTE MARIE,Sainte-Marie,Sainte-Marie,COMD,05150,0,SAINTE MARIE,Sainte-Marie,Sainte-Marie -34,2017-07-01,COMD,27303,0,GUERNANVILLE,Guernanville,Guernanville,COM,27565,2,LESME,Lesme,Le Lesme -34,2017-07-01,COMD,27565,0,SAINTE MARGUERITE DE L AUTEL,Sainte-Marguerite-de-l'Autel,Sainte-Marguerite-de-l'Autel,COM,27565,2,LESME,Lesme,Le Lesme -34,2017-07-01,COM,27565,2,LESME,Lesme,Le Lesme,COM,27565,2,LESME,Lesme,Le Lesme +32,2017-07-01,COM,5024,0,BRUIS,Bruis,Bruis,COMD,5024,0,BRUIS,Bruis,Bruis +32,2017-07-01,COM,5024,0,BRUIS,Bruis,Bruis,COM,5024,0,VALDOULE,Valdoule,Valdoule +32,2017-07-01,COM,5088,0,MONTMORIN,Montmorin,Montmorin,COM,5024,0,VALDOULE,Valdoule,Valdoule +32,2017-07-01,COM,5088,0,MONTMORIN,Montmorin,Montmorin,COMD,5088,0,MONTMORIN,Montmorin,Montmorin +32,2017-07-01,COM,5150,0,SAINTE MARIE,Sainte-Marie,Sainte-Marie,COM,5024,0,VALDOULE,Valdoule,Valdoule +32,2017-07-01,COM,5150,0,SAINTE MARIE,Sainte-Marie,Sainte-Marie,COMD,5150,0,SAINTE MARIE,Sainte-Marie,Sainte-Marie +35,2017-07-01,COMD,27303,0,GUERNANVILLE,Guernanville,Guernanville,COM,27565,2,LESME,Lesme,Le Lesme +35,2017-07-01,COMD,27565,0,SAINTE MARGUERITE DE L AUTEL,Sainte-Marguerite-de-l'Autel,Sainte-Marguerite-de-l'Autel,COM,27565,2,LESME,Lesme,Le Lesme 10,2017-02-10,COM,36072,0,FAVEROLLES,Faverolles,Faverolles,COM,36072,0,FAVEROLLES EN BERRY,Faverolles-en-Berry,Faverolles-en-Berry 10,2017-02-10,COM,41096,2,GAULT PERCHE,Gault-Perche,Le Gault-Perche,COM,41096,2,GAULT DU PERCHE,Gault-du-Perche,Le Gault-du-Perche 10,2017-02-10,COM,62671,0,PRONVILLE,Pronville,Pronville,COM,62671,0,PRONVILLE EN ARTOIS,Pronville-en-Artois,Pronville-en-Artois @@ -2112,48 +1940,46 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,2017-02-10,COM,82021,0,BOULOC,Bouloc,Bouloc,COM,82021,0,BOULOC EN QUERCY,Bouloc-en-Quercy,Bouloc-en-Quercy 10,2017-02-10,COM,85098,3,GENETOUZE,Génétouze,La Génétouze,COM,85098,3,GENETOUZE,Genétouze,La Genétouze 34,2017-02-01,COMA,70209,1,ECHEVANNE,Échevanne,Échevanne,COM,70528,0,VELESMES ECHEVANNE,Velesmes-Échevanne,Velesmes-Échevanne -34,2017-02-01,COM,70528,0,VELESMES ECHEVANNE,Velesmes-Échevanne,Velesmes-Échevanne,COM,70528,0,VELESMES ECHEVANNE,Velesmes-Échevanne,Velesmes-Échevanne -34,2017-01-18,COMD,19218,0,SAINT JULIEN PRES BORT,Saint-Julien-près-Bort,Saint-Julien-près-Bort,COM,19252,0,SARROUX SAINT JULIEN,Sarroux - Saint Julien,Sarroux - Saint Julien -34,2017-01-18,COM,19252,0,SARROUX SAINT JULIEN,Sarroux - Saint Julien,Sarroux - Saint Julien,COM,19252,0,SARROUX SAINT JULIEN,Sarroux - Saint Julien,Sarroux - Saint Julien -34,2017-01-18,COMD,19252,0,SARROUX,Sarroux,Sarroux,COM,19252,0,SARROUX SAINT JULIEN,Sarroux - Saint Julien,Sarroux - Saint Julien -32,2017-01-01,COM,01095,0,CHAVANNES SUR SURAN,Chavannes-sur-Suran,Chavannes-sur-Suran,COMD,01095,0,CHAVANNES SUR SURAN,Chavannes-sur-Suran,Chavannes-sur-Suran -32,2017-01-01,COM,01095,0,CHAVANNES SUR SURAN,Chavannes-sur-Suran,Chavannes-sur-Suran,COM,01095,0,NIVIGNE ET SURAN,Nivigne et Suran,Nivigne et Suran -32,2017-01-01,COM,01098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons,COM,01098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons -32,2017-01-01,COM,01098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons,COMD,01098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons -32,2017-01-01,COM,01172,0,GERMAGNAT,Germagnat,Germagnat,COMD,01172,0,GERMAGNAT,Germagnat,Germagnat -32,2017-01-01,COM,01172,0,GERMAGNAT,Germagnat,Germagnat,COM,01095,0,NIVIGNE ET SURAN,Nivigne et Suran,Nivigne et Suran -32,2017-01-01,COM,01316,0,PUGIEU,Pugieu,Pugieu,COM,01098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons -32,2017-01-01,COM,01316,0,PUGIEU,Pugieu,Pugieu,COMD,01316,0,PUGIEU,Pugieu,Pugieu -32,2017-01-01,COM,03168,0,MEAULNE,Meaulne,Meaulne,COM,03168,0,MEAULNE VITRAY,Meaulne-Vitray,Meaulne-Vitray -32,2017-01-01,COM,03168,0,MEAULNE,Meaulne,Meaulne,COMD,03168,0,MEAULNE,Meaulne,Meaulne -32,2017-01-01,COM,03318,0,VITRAY,Vitray,Vitray,COMD,03318,0,VITRAY,Vitray,Vitray -32,2017-01-01,COM,03318,0,VITRAY,Vitray,Vitray,COM,03168,0,MEAULNE VITRAY,Meaulne-Vitray,Meaulne-Vitray -32,2017-01-01,COM,04033,3,BREOLE,Bréole,La Bréole,COM,04033,1,UBAYE SERRE PONCON,Ubaye-Serre-Ponçon,Ubaye-Serre-Ponçon -32,2017-01-01,COM,04033,3,BREOLE,Bréole,La Bréole,COMD,04033,3,BREOLE,Bréole,La Bréole -32,2017-01-01,COM,04198,0,SAINT VINCENT LES FORTS,Saint-Vincent-les-Forts,Saint-Vincent-les-Forts,COM,04033,1,UBAYE SERRE PONCON,Ubaye-Serre-Ponçon,Ubaye-Serre-Ponçon -32,2017-01-01,COM,04198,0,SAINT VINCENT LES FORTS,Saint-Vincent-les-Forts,Saint-Vincent-les-Forts,COMD,04198,0,SAINT VINCENT LES FORTS,Saint-Vincent-les-Forts,Saint-Vincent-les-Forts -32,2017-01-01,COM,05101,0,PELVOUX,Pelvoux,Pelvoux,COMD,05101,0,PELVOUX,Pelvoux,Pelvoux -32,2017-01-01,COM,05101,0,PELVOUX,Pelvoux,Pelvoux,COM,05101,0,VALLOUISE PELVOUX,Vallouise-Pelvoux,Vallouise-Pelvoux -32,2017-01-01,COM,05175,0,VALLOUISE,Vallouise,Vallouise,COM,05101,0,VALLOUISE PELVOUX,Vallouise-Pelvoux,Vallouise-Pelvoux -32,2017-01-01,COM,05175,0,VALLOUISE,Vallouise,Vallouise,COMD,05175,0,VALLOUISE,Vallouise,Vallouise -32,2017-01-01,COM,08053,0,BAZEILLES,Bazeilles,Bazeilles,COM,08053,0,BAZEILLES,Bazeilles,Bazeilles -32,2017-01-01,COM,08053,0,BAZEILLES,Bazeilles,Bazeilles,COMD,08053,0,BAZEILLES,Bazeilles,Bazeilles -32,2017-01-01,COM,08072,0,BOSSEVAL ET BRIANCOURT,Bosseval-et-Briancourt,Bosseval-et-Briancourt,COMD,08072,0,BOSSEVAL ET BRIANCOURT,Bosseval-et-Briancourt,Bosseval-et-Briancourt -32,2017-01-01,COM,08072,0,BOSSEVAL ET BRIANCOURT,Bosseval-et-Briancourt,Bosseval-et-Briancourt,COM,08491,0,VRIGNE AUX BOIS,Vrigne aux Bois,Vrigne aux Bois -32,2017-01-01,COM,08371,0,RUBECOURT ET LAMECOURT,Rubécourt-et-Lamécourt,Rubécourt-et-Lamécourt,COM,08053,0,BAZEILLES,Bazeilles,Bazeilles -32,2017-01-01,COM,08371,0,RUBECOURT ET LAMECOURT,Rubécourt-et-Lamécourt,Rubécourt-et-Lamécourt,COMD,08371,0,RUBECOURT ET LAMECOURT,Rubécourt-et-Lamécourt,Rubécourt-et-Lamécourt -32,2017-01-01,COM,08475,0,VILLERS CERNAY,Villers-Cernay,Villers-Cernay,COM,08053,0,BAZEILLES,Bazeilles,Bazeilles -32,2017-01-01,COM,08475,0,VILLERS CERNAY,Villers-Cernay,Villers-Cernay,COMD,08475,0,VILLERS CERNAY,Villers-Cernay,Villers-Cernay -32,2017-01-01,COM,08491,0,VRIGNE AUX BOIS,Vrigne-aux-Bois,Vrigne-aux-Bois,COMD,08491,0,VRIGNE AUX BOIS,Vrigne-aux-Bois,Vrigne-aux-Bois -32,2017-01-01,COM,08491,0,VRIGNE AUX BOIS,Vrigne-aux-Bois,Vrigne-aux-Bois,COM,08491,0,VRIGNE AUX BOIS,Vrigne aux Bois,Vrigne aux Bois -32,2017-01-01,COM,09062,4,BORDES SUR LEZ,Bordes-sur-Lez,Les Bordes-sur-Lez,COMD,09062,4,BORDES SUR LEZ,Bordes-sur-Lez,Les Bordes-sur-Lez -32,2017-01-01,COM,09062,4,BORDES SUR LEZ,Bordes-sur-Lez,Les Bordes-sur-Lez,COM,09062,0,BORDES UCHENTEIN,Bordes-Uchentein,Bordes-Uchentein -32,2017-01-01,COM,09317,1,UCHENTEIN,Uchentein,Uchentein,COM,09062,0,BORDES UCHENTEIN,Bordes-Uchentein,Bordes-Uchentein -32,2017-01-01,COM,09317,1,UCHENTEIN,Uchentein,Uchentein,COMD,09317,1,UCHENTEIN,Uchentein,Uchentein +35,2017-01-18,COMD,19218,0,SAINT JULIEN PRES BORT,Saint-Julien-près-Bort,Saint-Julien-près-Bort,COM,19252,0,SARROUX SAINT JULIEN,Sarroux - Saint Julien,Sarroux - Saint Julien +35,2017-01-18,COMD,19252,0,SARROUX,Sarroux,Sarroux,COM,19252,0,SARROUX SAINT JULIEN,Sarroux - Saint Julien,Sarroux - Saint Julien +32,2017-01-01,COM,1095,0,CHAVANNES SUR SURAN,Chavannes-sur-Suran,Chavannes-sur-Suran,COMD,1095,0,CHAVANNES SUR SURAN,Chavannes-sur-Suran,Chavannes-sur-Suran +32,2017-01-01,COM,1095,0,CHAVANNES SUR SURAN,Chavannes-sur-Suran,Chavannes-sur-Suran,COM,1095,0,NIVIGNE ET SURAN,Nivigne et Suran,Nivigne et Suran +32,2017-01-01,COM,1098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons,COMD,1098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons +32,2017-01-01,COM,1098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons,COM,1098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons +32,2017-01-01,COM,1172,0,GERMAGNAT,Germagnat,Germagnat,COM,1095,0,NIVIGNE ET SURAN,Nivigne et Suran,Nivigne et Suran +32,2017-01-01,COM,1172,0,GERMAGNAT,Germagnat,Germagnat,COMD,1172,0,GERMAGNAT,Germagnat,Germagnat +32,2017-01-01,COM,1316,0,PUGIEU,Pugieu,Pugieu,COM,1098,0,CHAZEY BONS,Chazey-Bons,Chazey-Bons +32,2017-01-01,COM,1316,0,PUGIEU,Pugieu,Pugieu,COMD,1316,0,PUGIEU,Pugieu,Pugieu +32,2017-01-01,COM,3168,0,MEAULNE,Meaulne,Meaulne,COM,3168,0,MEAULNE VITRAY,Meaulne-Vitray,Meaulne-Vitray +32,2017-01-01,COM,3168,0,MEAULNE,Meaulne,Meaulne,COMD,3168,0,MEAULNE,Meaulne,Meaulne +32,2017-01-01,COM,3318,0,VITRAY,Vitray,Vitray,COM,3168,0,MEAULNE VITRAY,Meaulne-Vitray,Meaulne-Vitray +32,2017-01-01,COM,3318,0,VITRAY,Vitray,Vitray,COMD,3318,0,VITRAY,Vitray,Vitray +32,2017-01-01,COM,4033,3,BREOLE,Bréole,La Bréole,COMD,4033,3,BREOLE,Bréole,La Bréole +32,2017-01-01,COM,4033,3,BREOLE,Bréole,La Bréole,COM,4033,1,UBAYE SERRE PONCON,Ubaye-Serre-Ponçon,Ubaye-Serre-Ponçon +32,2017-01-01,COM,4198,0,SAINT VINCENT LES FORTS,Saint-Vincent-les-Forts,Saint-Vincent-les-Forts,COM,4033,1,UBAYE SERRE PONCON,Ubaye-Serre-Ponçon,Ubaye-Serre-Ponçon +32,2017-01-01,COM,4198,0,SAINT VINCENT LES FORTS,Saint-Vincent-les-Forts,Saint-Vincent-les-Forts,COMD,4198,0,SAINT VINCENT LES FORTS,Saint-Vincent-les-Forts,Saint-Vincent-les-Forts +32,2017-01-01,COM,5101,0,PELVOUX,Pelvoux,Pelvoux,COM,5101,0,VALLOUISE PELVOUX,Vallouise-Pelvoux,Vallouise-Pelvoux +32,2017-01-01,COM,5101,0,PELVOUX,Pelvoux,Pelvoux,COMD,5101,0,PELVOUX,Pelvoux,Pelvoux +32,2017-01-01,COM,5175,0,VALLOUISE,Vallouise,Vallouise,COM,5101,0,VALLOUISE PELVOUX,Vallouise-Pelvoux,Vallouise-Pelvoux +32,2017-01-01,COM,5175,0,VALLOUISE,Vallouise,Vallouise,COMD,5175,0,VALLOUISE,Vallouise,Vallouise +32,2017-01-01,COM,8053,0,BAZEILLES,Bazeilles,Bazeilles,COM,8053,0,BAZEILLES,Bazeilles,Bazeilles +32,2017-01-01,COM,8053,0,BAZEILLES,Bazeilles,Bazeilles,COMD,8053,0,BAZEILLES,Bazeilles,Bazeilles +32,2017-01-01,COM,8072,0,BOSSEVAL ET BRIANCOURT,Bosseval-et-Briancourt,Bosseval-et-Briancourt,COMD,8072,0,BOSSEVAL ET BRIANCOURT,Bosseval-et-Briancourt,Bosseval-et-Briancourt +32,2017-01-01,COM,8072,0,BOSSEVAL ET BRIANCOURT,Bosseval-et-Briancourt,Bosseval-et-Briancourt,COM,8491,0,VRIGNE AUX BOIS,Vrigne aux Bois,Vrigne aux Bois +32,2017-01-01,COM,8371,0,RUBECOURT ET LAMECOURT,Rubécourt-et-Lamécourt,Rubécourt-et-Lamécourt,COM,8053,0,BAZEILLES,Bazeilles,Bazeilles +32,2017-01-01,COM,8371,0,RUBECOURT ET LAMECOURT,Rubécourt-et-Lamécourt,Rubécourt-et-Lamécourt,COMD,8371,0,RUBECOURT ET LAMECOURT,Rubécourt-et-Lamécourt,Rubécourt-et-Lamécourt +32,2017-01-01,COM,8475,0,VILLERS CERNAY,Villers-Cernay,Villers-Cernay,COM,8053,0,BAZEILLES,Bazeilles,Bazeilles +32,2017-01-01,COM,8475,0,VILLERS CERNAY,Villers-Cernay,Villers-Cernay,COMD,8475,0,VILLERS CERNAY,Villers-Cernay,Villers-Cernay +32,2017-01-01,COM,8491,0,VRIGNE AUX BOIS,Vrigne-aux-Bois,Vrigne-aux-Bois,COM,8491,0,VRIGNE AUX BOIS,Vrigne aux Bois,Vrigne aux Bois +32,2017-01-01,COM,8491,0,VRIGNE AUX BOIS,Vrigne-aux-Bois,Vrigne-aux-Bois,COMD,8491,0,VRIGNE AUX BOIS,Vrigne-aux-Bois,Vrigne-aux-Bois +32,2017-01-01,COM,9062,4,BORDES SUR LEZ,Bordes-sur-Lez,Les Bordes-sur-Lez,COM,9062,0,BORDES UCHENTEIN,Bordes-Uchentein,Bordes-Uchentein +32,2017-01-01,COM,9062,4,BORDES SUR LEZ,Bordes-sur-Lez,Les Bordes-sur-Lez,COMD,9062,4,BORDES SUR LEZ,Bordes-sur-Lez,Les Bordes-sur-Lez +32,2017-01-01,COM,9317,1,UCHENTEIN,Uchentein,Uchentein,COM,9062,0,BORDES UCHENTEIN,Bordes-Uchentein,Bordes-Uchentein +32,2017-01-01,COM,9317,1,UCHENTEIN,Uchentein,Uchentein,COMD,9317,1,UCHENTEIN,Uchentein,Uchentein 32,2017-01-01,COM,12020,0,BALSAC,Balsac,Balsac,COMD,12020,0,BALSAC,Balsac,Balsac 32,2017-01-01,COM,12020,0,BALSAC,Balsac,Balsac,COM,12090,0,DRUELLE BALSAC,Druelle Balsac,Druelle Balsac -32,2017-01-01,COM,12090,0,DRUELLE,Druelle,Druelle,COM,12090,0,DRUELLE BALSAC,Druelle Balsac,Druelle Balsac 32,2017-01-01,COM,12090,0,DRUELLE,Druelle,Druelle,COMD,12090,0,DRUELLE,Druelle,Druelle +32,2017-01-01,COM,12090,0,DRUELLE,Druelle,Druelle,COM,12090,0,DRUELLE BALSAC,Druelle Balsac,Druelle Balsac 32,2017-01-01,COM,14004,1,AIGNERVILLE,Aignerville,Aignerville,COMD,14004,1,AIGNERVILLE,Aignerville,Aignerville 32,2017-01-01,COM,14004,1,AIGNERVILLE,Aignerville,Aignerville,COM,14281,0,FORMIGNY LA BATAILLE,Formigny La Bataille,Formigny La Bataille 32,2017-01-01,COM,14005,1,AIRAN,Airan,Airan,COMD,14005,1,AIRAN,Airan,Airan @@ -2161,8 +1987,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,14008,1,AMBLIE,Amblie,Amblie,COMD,14008,1,AMBLIE,Amblie,Amblie 32,2017-01-01,COM,14008,1,AMBLIE,Amblie,Amblie,COM,14355,0,PONTS SUR SEULLES,Ponts sur Seulles,Ponts sur Seulles 32,2017-01-01,COMA,14010,1,AMMEVILLE,Ammeville,Ammeville,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge -32,2017-01-01,COM,14011,1,ANCTOVILLE,Anctoville,Anctoville,COMD,14011,1,ANCTOVILLE,Anctoville,Anctoville 32,2017-01-01,COM,14011,1,ANCTOVILLE,Anctoville,Anctoville,COM,14011,1,AURSEULLES,Aurseulles,Aurseulles +32,2017-01-01,COM,14011,1,ANCTOVILLE,Anctoville,Anctoville,COMD,14011,1,ANCTOVILLE,Anctoville,Anctoville 32,2017-01-01,COM,14027,1,AUNAY SUR ODON,Aunay-sur-Odon,Aunay-sur-Odon,COM,14027,4,MONTS D AUNAY,Monts d'Aunay,Les Monts d'Aunay 32,2017-01-01,COM,14027,1,AUNAY SUR ODON,Aunay-sur-Odon,Aunay-sur-Odon,COMD,14027,1,AUNAY SUR ODON,Aunay-sur-Odon,Aunay-sur-Odon 32,2017-01-01,COM,14031,4,AUTHIEUX PAPION,Authieux-Papion,Les Authieux-Papion,COMD,14031,4,AUTHIEUX PAPION,Authieux-Papion,Les Authieux-Papion @@ -2174,19 +2000,19 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,14073,3,BIGNE,Bigne,La Bigne,COM,14579,0,SEULLINE,Seulline,Seulline 32,2017-01-01,COM,14074,0,BILLY,Billy,Billy,COM,14005,0,VALAMBRAY,Valambray,Valambray 32,2017-01-01,COM,14074,0,BILLY,Billy,Billy,COMD,14074,0,BILLY,Billy,Billy -32,2017-01-01,COM,14075,0,BISSIERES,Bissières,Bissières,COM,14410,0,MERY BISSIERES EN AUGE,Méry-Bissières-en-Auge,Méry-Bissières-en-Auge 32,2017-01-01,COM,14075,0,BISSIERES,Bissières,Bissières,COMD,14075,0,BISSIERES,Bissières,Bissières +32,2017-01-01,COM,14075,0,BISSIERES,Bissières,Bissières,COM,14410,0,MERY BISSIERES EN AUGE,Méry-Bissières-en-Auge,Méry-Bissières-en-Auge 32,2017-01-01,COM,14081,0,BOISSEY,Boissey,Boissey,COMD,14081,0,BOISSEY,Boissey,Boissey 32,2017-01-01,COM,14081,0,BOISSEY,Boissey,Boissey,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge -32,2017-01-01,COM,14098,0,BRETTEVILLE L ORGUEILLEUSE,Bretteville-l'Orgueilleuse,Bretteville-l'Orgueilleuse,COM,14098,0,THUE ET MUE,Thue et Mue,Thue et Mue 32,2017-01-01,COM,14098,0,BRETTEVILLE L ORGUEILLEUSE,Bretteville-l'Orgueilleuse,Bretteville-l'Orgueilleuse,COMD,14098,0,BRETTEVILLE L ORGUEILLEUSE,Bretteville-l'Orgueilleuse,Bretteville-l'Orgueilleuse -32,2017-01-01,COM,14099,0,BRETTEVILLE SUR DIVES,Bretteville-sur-Dives,Bretteville-sur-Dives,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge +32,2017-01-01,COM,14098,0,BRETTEVILLE L ORGUEILLEUSE,Bretteville-l'Orgueilleuse,Bretteville-l'Orgueilleuse,COM,14098,0,THUE ET MUE,Thue et Mue,Thue et Mue 32,2017-01-01,COM,14099,0,BRETTEVILLE SUR DIVES,Bretteville-sur-Dives,Bretteville-sur-Dives,COMD,14099,0,BRETTEVILLE SUR DIVES,Bretteville-sur-Dives,Bretteville-sur-Dives +32,2017-01-01,COM,14099,0,BRETTEVILLE SUR DIVES,Bretteville-sur-Dives,Bretteville-sur-Dives,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge 32,2017-01-01,COM,14109,0,BROUAY,Brouay,Brouay,COM,14098,0,THUE ET MUE,Thue et Mue,Thue et Mue 32,2017-01-01,COM,14109,0,BROUAY,Brouay,Brouay,COMD,14109,0,BROUAY,Brouay,Brouay 32,2017-01-01,COMA,14114,0,BURES SUR DIVES,Bures-sur-Dives,Bures-sur-Dives,COM,14712,0,SALINE,Saline,Saline -32,2017-01-01,COM,14128,0,CAMPANDRE VALCONGRAIN,Campandré-Valcongrain,Campandré-Valcongrain,COMD,14128,0,CAMPANDRE VALCONGRAIN,Campandré-Valcongrain,Campandré-Valcongrain 32,2017-01-01,COM,14128,0,CAMPANDRE VALCONGRAIN,Campandré-Valcongrain,Campandré-Valcongrain,COM,14027,4,MONTS D AUNAY,Monts d'Aunay,Les Monts d'Aunay +32,2017-01-01,COM,14128,0,CAMPANDRE VALCONGRAIN,Campandré-Valcongrain,Campandré-Valcongrain,COMD,14128,0,CAMPANDRE VALCONGRAIN,Campandré-Valcongrain,Campandré-Valcongrain 32,2017-01-01,COM,14142,0,CASTILLY,Castilly,Castilly,COMD,14142,0,CASTILLY,Castilly,Castilly 32,2017-01-01,COM,14142,0,CASTILLY,Castilly,Castilly,COM,14342,1,ISIGNY SUR MER,Isigny-sur-Mer,Isigny-sur-Mer 32,2017-01-01,COM,14143,0,CAUMONT L EVENTE,Caumont-l'Éventé,Caumont-l'Éventé,COMD,14143,0,CAUMONT L EVENTE,Caumont-l'Éventé,Caumont-l'Éventé @@ -2197,130 +2023,131 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,14157,0,CHEUX,Cheux,Cheux,COMD,14157,0,CHEUX,Cheux,Cheux 32,2017-01-01,COM,14158,0,CHICHEBOVILLE,Chicheboville,Chicheboville,COMD,14158,0,CHICHEBOVILLE,Chicheboville,Chicheboville 32,2017-01-01,COM,14158,0,CHICHEBOVILLE,Chicheboville,Chicheboville,COM,14456,0,MOULT CHICHEBOVILLE,Moult-Chicheboville,Moult-Chicheboville -32,2017-01-01,COM,14164,0,CLINCHAMPS SUR ORNE,Clinchamps-sur-Orne,Clinchamps-sur-Orne,COM,14349,0,LAIZE CLINCHAMPS,Laize-Clinchamps,Laize-Clinchamps 32,2017-01-01,COM,14164,0,CLINCHAMPS SUR ORNE,Clinchamps-sur-Orne,Clinchamps-sur-Orne,COMD,14164,0,CLINCHAMPS SUR ORNE,Clinchamps-sur-Orne,Clinchamps-sur-Orne -32,2017-01-01,COM,14176,0,CONTEVILLE,Conteville,Conteville,COMD,14176,0,CONTEVILLE,Conteville,Conteville +32,2017-01-01,COM,14164,0,CLINCHAMPS SUR ORNE,Clinchamps-sur-Orne,Clinchamps-sur-Orne,COM,14349,0,LAIZE CLINCHAMPS,Laize-Clinchamps,Laize-Clinchamps 32,2017-01-01,COM,14176,0,CONTEVILLE,Conteville,Conteville,COM,14005,0,VALAMBRAY,Valambray,Valambray -32,2017-01-01,COM,14186,0,COULOMBS,Coulombs,Coulombs,COM,14406,0,MOULINS EN BESSIN,Moulins-en-Bessin,Moulins-en-Bessin +32,2017-01-01,COM,14176,0,CONTEVILLE,Conteville,Conteville,COMD,14176,0,CONTEVILLE,Conteville,Conteville 32,2017-01-01,COM,14186,0,COULOMBS,Coulombs,Coulombs,COMD,14186,0,COULOMBS,Coulombs,Coulombs +32,2017-01-01,COM,14186,0,COULOMBS,Coulombs,Coulombs,COM,14406,0,MOULINS EN BESSIN,Moulins-en-Bessin,Moulins-en-Bessin 32,2017-01-01,COMD,14188,0,COULVAIN,Coulvain,Coulvain,COMD,14188,0,COULVAIN,Coulvain,Coulvain 32,2017-01-01,COMD,14188,0,COULVAIN,Coulvain,Coulvain,COM,14579,0,SEULLINE,Seulline,Seulline 32,2017-01-01,COM,14189,0,COUPESARTE,Coupesarte,Coupesarte,COMD,14189,0,COUPESARTE,Coupesarte,Coupesarte 32,2017-01-01,COM,14189,0,COUPESARTE,Coupesarte,Coupesarte,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge -32,2017-01-01,COM,14192,0,COURSON,Courson,Courson,COM,14658,0,NOUES DE SIENNE,Noues de Sienne,Noues de Sienne 32,2017-01-01,COM,14192,0,COURSON,Courson,Courson,COMD,14192,0,COURSON,Courson,Courson +32,2017-01-01,COM,14192,0,COURSON,Courson,Courson,COM,14658,0,NOUES DE SIENNE,Noues de Sienne,Noues de Sienne 32,2017-01-01,COM,14200,0,CREULLY,Creully,Creully,COMD,14200,0,CREULLY,Creully,Creully 32,2017-01-01,COM,14200,0,CREULLY,Creully,Creully,COM,14200,0,CREULLY SUR SEULLES,Creully sur Seulles,Creully sur Seulles -32,2017-01-01,COM,14201,0,CREVECOEUR EN AUGE,Crèvecœur-en-Auge,Crèvecœur-en-Auge,COMD,14201,0,CREVECOEUR EN AUGE,Crèvecœur-en-Auge,Crèvecœur-en-Auge -32,2017-01-01,COM,14201,0,CREVECOEUR EN AUGE,Crèvecœur-en-Auge,Crèvecœur-en-Auge,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge +32,2017-01-01,COM,14201,0,CREVECOUR EN AUGE,Crèvecœur-en-Auge,Crèvecœur-en-Auge,COMD,14201,0,CREVECOUR EN AUGE,Crèvecœur-en-Auge,Crèvecœur-en-Auge +32,2017-01-01,COM,14201,0,CREVECOUR EN AUGE,Crèvecœur-en-Auge,Crèvecœur-en-Auge,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge 32,2017-01-01,COM,14208,0,CROISSANVILLE,Croissanville,Croissanville,COMD,14208,0,CROISSANVILLE,Croissanville,Croissanville 32,2017-01-01,COM,14208,0,CROISSANVILLE,Croissanville,Croissanville,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge -32,2017-01-01,COM,14212,0,CULLY,Cully,Cully,COM,14406,0,MOULINS EN BESSIN,Moulins-en-Bessin,Moulins-en-Bessin 32,2017-01-01,COM,14212,0,CULLY,Cully,Cully,COMD,14212,0,CULLY,Cully,Cully -32,2017-01-01,COM,14217,0,DAMPIERRE,Dampierre,Dampierre,COM,14672,0,VAL DE DROME,Val de Drôme,Val de Drôme +32,2017-01-01,COM,14212,0,CULLY,Cully,Cully,COM,14406,0,MOULINS EN BESSIN,Moulins-en-Bessin,Moulins-en-Bessin 32,2017-01-01,COM,14217,0,DAMPIERRE,Dampierre,Dampierre,COMD,14217,0,DAMPIERRE,Dampierre,Dampierre +32,2017-01-01,COM,14217,0,DAMPIERRE,Dampierre,Dampierre,COM,14672,0,VAL DE DROME,Val de Drôme,Val de Drôme 32,2017-01-01,COM,14219,0,DANVOU LA FERRIERE,Danvou-la-Ferrière,Danvou-la-Ferrière,COM,14027,4,MONTS D AUNAY,Monts d'Aunay,Les Monts d'Aunay 32,2017-01-01,COM,14219,0,DANVOU LA FERRIERE,Danvou-la-Ferrière,Danvou-la-Ferrière,COMD,14219,0,DANVOU LA FERRIERE,Danvou-la-Ferrière,Danvou-la-Ferrière 32,2017-01-01,COMA,14233,1,ECAJEUL,Écajeul,Écajeul,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge 32,2017-01-01,COMA,14234,1,ECOTS,Écots,Écots,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge -32,2017-01-01,COM,14235,1,ECRAMMEVILLE,Écrammeville,Écrammeville,COM,14281,0,FORMIGNY LA BATAILLE,Formigny La Bataille,Formigny La Bataille 32,2017-01-01,COM,14235,1,ECRAMMEVILLE,Écrammeville,Écrammeville,COMD,14235,1,ECRAMMEVILLE,Écrammeville,Écrammeville -32,2017-01-01,COMA,14267,0,FEUGUEROLLES SUR SEULLES,Feuguerolles-sur-Seulles,Feuguerolles-sur-Seulles,COMD,14267,0,FEUGUEROLLES SUR SEULLES,Feuguerolles-sur-Seulles,Feuguerolles-sur-Seulles +32,2017-01-01,COM,14235,1,ECRAMMEVILLE,Écrammeville,Écrammeville,COM,14281,0,FORMIGNY LA BATAILLE,Formigny La Bataille,Formigny La Bataille 32,2017-01-01,COMA,14267,0,FEUGUEROLLES SUR SEULLES,Feuguerolles-sur-Seulles,Feuguerolles-sur-Seulles,COM,14011,1,AURSEULLES,Aurseulles,Aurseulles +32,2017-01-01,COMA,14267,0,FEUGUEROLLES SUR SEULLES,Feuguerolles-sur-Seulles,Feuguerolles-sur-Seulles,COMD,14267,0,FEUGUEROLLES SUR SEULLES,Feuguerolles-sur-Seulles,Feuguerolles-sur-Seulles 32,2017-01-01,COM,14268,0,FIERVILLE BRAY,Fierville-Bray,Fierville-Bray,COM,14005,0,VALAMBRAY,Valambray,Valambray 32,2017-01-01,COM,14268,0,FIERVILLE BRAY,Fierville-Bray,Fierville-Bray,COMD,14268,0,FIERVILLE BRAY,Fierville-Bray,Fierville-Bray 32,2017-01-01,COM,14279,0,FONTENERMONT,Fontenermont,Fontenermont,COMD,14279,0,FONTENERMONT,Fontenermont,Fontenermont 32,2017-01-01,COM,14279,0,FONTENERMONT,Fontenermont,Fontenermont,COM,14658,0,NOUES DE SIENNE,Noues de Sienne,Noues de Sienne -32,2017-01-01,COM,14281,0,FORMIGNY,Formigny,Formigny,COMD,14281,0,FORMIGNY,Formigny,Formigny 32,2017-01-01,COM,14281,0,FORMIGNY,Formigny,Formigny,COM,14281,0,FORMIGNY LA BATAILLE,Formigny La Bataille,Formigny La Bataille +32,2017-01-01,COM,14281,0,FORMIGNY,Formigny,Formigny,COMD,14281,0,FORMIGNY,Formigny,Formigny 32,2017-01-01,COMA,14295,0,GARNETOT,Garnetot,Garnetot,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge -32,2017-01-01,COM,14296,2,GAST,Gast,Le Gast,COM,14658,0,NOUES DE SIENNE,Noues de Sienne,Noues de Sienne 32,2017-01-01,COM,14296,2,GAST,Gast,Le Gast,COMD,14296,2,GAST,Gast,Le Gast -32,2017-01-01,COM,14313,0,GRANDCHAMP LE CHATEAU,Grandchamp-le-Château,Grandchamp-le-Château,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge +32,2017-01-01,COM,14296,2,GAST,Gast,Le Gast,COM,14658,0,NOUES DE SIENNE,Noues de Sienne,Noues de Sienne 32,2017-01-01,COM,14313,0,GRANDCHAMP LE CHATEAU,Grandchamp-le-Château,Grandchamp-le-Château,COMD,14313,0,GRANDCHAMP LE CHATEAU,Grandchamp-le-Château,Grandchamp-le-Château +32,2017-01-01,COM,14313,0,GRANDCHAMP LE CHATEAU,Grandchamp-le-Château,Grandchamp-le-Château,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge 32,2017-01-01,COMA,14314,0,GRANDMESNIL,Grandmesnil,Grandmesnil,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge -32,2017-01-01,COM,14331,0,HIEVILLE,Hiéville,Hiéville,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge 32,2017-01-01,COM,14331,0,HIEVILLE,Hiéville,Hiéville,COMD,14331,0,HIEVILLE,Hiéville,Hiéville +32,2017-01-01,COM,14331,0,HIEVILLE,Hiéville,Hiéville,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge 32,2017-01-01,COM,14342,1,ISIGNY SUR MER,Isigny-sur-Mer,Isigny-sur-Mer,COMD,14342,1,ISIGNY SUR MER,Isigny-sur-Mer,Isigny-sur-Mer 32,2017-01-01,COM,14342,1,ISIGNY SUR MER,Isigny-sur-Mer,Isigny-sur-Mer,COM,14342,1,ISIGNY SUR MER,Isigny-sur-Mer,Isigny-sur-Mer 32,2017-01-01,COM,14347,0,JURQUES,Jurques,Jurques,COMD,14347,0,JURQUES,Jurques,Jurques 32,2017-01-01,COM,14347,0,JURQUES,Jurques,Jurques,COM,14347,0,DIALAN SUR CHAINE,Dialan sur Chaîne,Dialan sur Chaîne -32,2017-01-01,COM,14349,0,LAIZE LA VILLE,Laize-la-Ville,Laize-la-Ville,COMD,14349,0,LAIZE LA VILLE,Laize-la-Ville,Laize-la-Ville 32,2017-01-01,COM,14349,0,LAIZE LA VILLE,Laize-la-Ville,Laize-la-Ville,COM,14349,0,LAIZE CLINCHAMPS,Laize-Clinchamps,Laize-Clinchamps +32,2017-01-01,COM,14349,0,LAIZE LA VILLE,Laize-la-Ville,Laize-la-Ville,COMD,14349,0,LAIZE LA VILLE,Laize-la-Ville,Laize-la-Ville 32,2017-01-01,COM,14350,3,LANDE SUR DROME,Lande-sur-Drôme,La Lande-sur-Drôme,COMD,14350,3,LANDE SUR DROME,Lande-sur-Drôme,La Lande-sur-Drôme 32,2017-01-01,COM,14350,3,LANDE SUR DROME,Lande-sur-Drôme,La Lande-sur-Drôme,COM,14672,0,VAL DE DROME,Val de Drôme,Val de Drôme -32,2017-01-01,COM,14355,0,LANTHEUIL,Lantheuil,Lantheuil,COM,14355,0,PONTS SUR SEULLES,Ponts sur Seulles,Ponts sur Seulles 32,2017-01-01,COM,14355,0,LANTHEUIL,Lantheuil,Lantheuil,COMD,14355,0,LANTHEUIL,Lantheuil,Lantheuil +32,2017-01-01,COM,14355,0,LANTHEUIL,Lantheuil,Lantheuil,COM,14355,0,PONTS SUR SEULLES,Ponts sur Seulles,Ponts sur Seulles 32,2017-01-01,COM,14357,0,LASSY,Lassy,Lassy,COMD,14357,0,LASSY,Lassy,Lassy 32,2017-01-01,COM,14357,0,LASSY,Lassy,Lassy,COM,14357,0,TERRES DE DRUANCE,Terres de Druance,Terres de Druance -32,2017-01-01,COM,14359,0,LECAUDE,Lécaude,Lécaude,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge 32,2017-01-01,COM,14359,0,LECAUDE,Lécaude,Lécaude,COMD,14359,0,LECAUDE,Lécaude,Lécaude +32,2017-01-01,COM,14359,0,LECAUDE,Lécaude,Lécaude,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge 32,2017-01-01,COMA,14363,0,LIEURY,Lieury,Lieury,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge 32,2017-01-01,COM,14372,0,LIVRY,Livry,Livry,COM,14143,0,CAUMONT SUR AURE,Caumont-sur-Aure,Caumont-sur-Aure 32,2017-01-01,COM,14372,0,LIVRY,Livry,Livry,COMD,14372,0,LIVRY,Livry,Livry -32,2017-01-01,COM,14373,2,LOCHEUR,Locheur,Le Locheur,COM,14475,0,VAL D ARRY,Val d'Arry,Val d'Arry 32,2017-01-01,COM,14373,2,LOCHEUR,Locheur,Le Locheur,COMD,14373,2,LOCHEUR,Locheur,Le Locheur -32,2017-01-01,COM,14376,0,LONGRAYE,Longraye,Longraye,COMD,14376,0,LONGRAYE,Longraye,Longraye +32,2017-01-01,COM,14373,2,LOCHEUR,Locheur,Le Locheur,COM,14475,0,VAL D ARRY,Val d'Arry,Val d'Arry 32,2017-01-01,COM,14376,0,LONGRAYE,Longraye,Longraye,COM,14011,1,AURSEULLES,Aurseulles,Aurseulles +32,2017-01-01,COM,14376,0,LONGRAYE,Longraye,Longraye,COMD,14376,0,LONGRAYE,Longraye,Longraye 32,2017-01-01,COM,14382,0,LOUVIERES,Louvières,Louvières,COM,14281,0,FORMIGNY LA BATAILLE,Formigny La Bataille,Formigny La Bataille 32,2017-01-01,COM,14382,0,LOUVIERES,Louvières,Louvières,COMD,14382,0,LOUVIERES,Louvières,Louvières -32,2017-01-01,COM,14386,0,MAGNY LA CAMPAGNE,Magny-la-Campagne,Magny-la-Campagne,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge 32,2017-01-01,COM,14386,0,MAGNY LA CAMPAGNE,Magny-la-Campagne,Magny-la-Campagne,COMD,14386,0,MAGNY LA CAMPAGNE,Magny-la-Campagne,Magny-la-Campagne +32,2017-01-01,COM,14386,0,MAGNY LA CAMPAGNE,Magny-la-Campagne,Magny-la-Campagne,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge 32,2017-01-01,COM,14387,0,MAGNY LE FREULE,Magny-le-Freule,Magny-le-Freule,COMD,14387,0,MAGNY LE FREULE,Magny-le-Freule,Magny-le-Freule 32,2017-01-01,COM,14387,0,MAGNY LE FREULE,Magny-le-Freule,Magny-le-Freule,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge -32,2017-01-01,COM,14406,0,MARTRAGNY,Martragny,Martragny,COM,14406,0,MOULINS EN BESSIN,Moulins-en-Bessin,Moulins-en-Bessin 32,2017-01-01,COM,14406,0,MARTRAGNY,Martragny,Martragny,COMD,14406,0,MARTRAGNY,Martragny,Martragny -32,2017-01-01,COM,14410,0,MERY CORBON,Méry-Corbon,Méry-Corbon,COMD,14410,0,MERY CORBON,Méry-Corbon,Méry-Corbon +32,2017-01-01,COM,14406,0,MARTRAGNY,Martragny,Martragny,COM,14406,0,MOULINS EN BESSIN,Moulins-en-Bessin,Moulins-en-Bessin 32,2017-01-01,COM,14410,0,MERY CORBON,Méry-Corbon,Méry-Corbon,COM,14410,0,MERY BISSIERES EN AUGE,Méry-Bissières-en-Auge,Méry-Bissières-en-Auge +32,2017-01-01,COM,14410,0,MERY CORBON,Méry-Corbon,Méry-Corbon,COMD,14410,0,MERY CORBON,Méry-Corbon,Méry-Corbon 32,2017-01-01,COM,14413,2,MESNIL AUZOUF,Mesnil-Auzouf,Le Mesnil-Auzouf,COM,14347,0,DIALAN SUR CHAINE,Dialan sur Chaîne,Dialan sur Chaîne 32,2017-01-01,COM,14413,2,MESNIL AUZOUF,Mesnil-Auzouf,Le Mesnil-Auzouf,COMD,14413,2,MESNIL AUZOUF,Mesnil-Auzouf,Le Mesnil-Auzouf -32,2017-01-01,COM,14415,2,MESNIL BENOIST,Mesnil-Benoist,Le Mesnil-Benoist,COM,14658,0,NOUES DE SIENNE,Noues de Sienne,Noues de Sienne 32,2017-01-01,COM,14415,2,MESNIL BENOIST,Mesnil-Benoist,Le Mesnil-Benoist,COMD,14415,2,MESNIL BENOIST,Mesnil-Benoist,Le Mesnil-Benoist +32,2017-01-01,COM,14415,2,MESNIL BENOIST,Mesnil-Benoist,Le Mesnil-Benoist,COM,14658,0,NOUES DE SIENNE,Noues de Sienne,Noues de Sienne 32,2017-01-01,COM,14416,2,MESNIL CAUSSOIS,Mesnil-Caussois,Le Mesnil-Caussois,COMD,14416,2,MESNIL CAUSSOIS,Mesnil-Caussois,Le Mesnil-Caussois 32,2017-01-01,COM,14416,2,MESNIL CAUSSOIS,Mesnil-Caussois,Le Mesnil-Caussois,COM,14658,0,NOUES DE SIENNE,Noues de Sienne,Noues de Sienne -32,2017-01-01,COM,14417,0,MESNIL CLINCHAMPS,Mesnil-Clinchamps,Mesnil-Clinchamps,COM,14658,0,NOUES DE SIENNE,Noues de Sienne,Noues de Sienne 32,2017-01-01,COM,14417,0,MESNIL CLINCHAMPS,Mesnil-Clinchamps,Mesnil-Clinchamps,COMD,14417,0,MESNIL CLINCHAMPS,Mesnil-Clinchamps,Mesnil-Clinchamps +32,2017-01-01,COM,14417,0,MESNIL CLINCHAMPS,Mesnil-Clinchamps,Mesnil-Clinchamps,COM,14658,0,NOUES DE SIENNE,Noues de Sienne,Noues de Sienne 32,2017-01-01,COM,14422,2,MESNIL MAUGER,Mesnil-Mauger,Le Mesnil-Mauger,COMD,14422,2,MESNIL MAUGER,Mesnil-Mauger,Le Mesnil-Mauger 32,2017-01-01,COM,14422,2,MESNIL MAUGER,Mesnil-Mauger,Le Mesnil-Mauger,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge 32,2017-01-01,COM,14423,2,MESNIL PATRY,Mesnil-Patry,Le Mesnil-Patry,COM,14098,0,THUE ET MUE,Thue et Mue,Thue et Mue 32,2017-01-01,COM,14423,2,MESNIL PATRY,Mesnil-Patry,Le Mesnil-Patry,COMD,14423,2,MESNIL PATRY,Mesnil-Patry,Le Mesnil-Patry 32,2017-01-01,COM,14431,0,MEZIDON CANON,Mézidon-Canon,Mézidon-Canon,COMD,14431,0,MEZIDON CANON,Mézidon-Canon,Mézidon-Canon 32,2017-01-01,COM,14431,0,MEZIDON CANON,Mézidon-Canon,Mézidon-Canon,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge -32,2017-01-01,COMD,14432,0,MISSY,Missy,Missy,COM,14475,0,VAL D ARRY,Val d'Arry,Val d'Arry 32,2017-01-01,COMD,14432,0,MISSY,Missy,Missy,COMD,14432,0,MISSY,Missy,Missy +32,2017-01-01,COMD,14432,0,MISSY,Missy,Missy,COM,14475,0,VAL D ARRY,Val d'Arry,Val d'Arry 32,2017-01-01,COM,14433,0,MITTOIS,Mittois,Mittois,COMD,14433,0,MITTOIS,Mittois,Mittois 32,2017-01-01,COM,14433,0,MITTOIS,Mittois,Mittois,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge -32,2017-01-01,COM,14444,0,MONTEILLE,Monteille,Monteille,COMD,14444,0,MONTEILLE,Monteille,Monteille 32,2017-01-01,COM,14444,0,MONTEILLE,Monteille,Monteille,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge +32,2017-01-01,COM,14444,0,MONTEILLE,Monteille,Monteille,COMD,14444,0,MONTEILLE,Monteille,Monteille 32,2017-01-01,COMA,14447,0,MONTPINCON,Montpinçon,Montpinçon,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge 32,2017-01-01,COM,14450,0,MONTVIETTE,Montviette,Montviette,COMD,14450,0,MONTVIETTE,Montviette,Montviette 32,2017-01-01,COM,14450,0,MONTVIETTE,Montviette,Montviette,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge -32,2017-01-01,COM,14456,0,MOULT,Moult,Moult,COMD,14456,0,MOULT,Moult,Moult 32,2017-01-01,COM,14456,0,MOULT,Moult,Moult,COM,14456,0,MOULT CHICHEBOVILLE,Moult-Chicheboville,Moult-Chicheboville +32,2017-01-01,COM,14456,0,MOULT,Moult,Moult,COMD,14456,0,MOULT,Moult,Moult 32,2017-01-01,COM,14462,0,NEUILLY LA FORET,Neuilly-la-Forêt,Neuilly-la-Forêt,COM,14342,1,ISIGNY SUR MER,Isigny-sur-Mer,Isigny-sur-Mer 32,2017-01-01,COM,14462,0,NEUILLY LA FORET,Neuilly-la-Forêt,Neuilly-la-Forêt,COMD,14462,0,NEUILLY LA FORET,Neuilly-la-Forêt,Neuilly-la-Forêt -32,2017-01-01,COM,14472,5,OUDON,Oudon,L'Oudon,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge 32,2017-01-01,COM,14472,5,OUDON,Oudon,L'Oudon,COMD,14472,5,OUDON,Oudon,L'Oudon -32,2017-01-01,COMD,14475,0,NOYERS BOCAGE,Noyers-Bocage,Noyers-Bocage,COM,14475,0,VAL D ARRY,Val d'Arry,Val d'Arry -32,2017-01-01,COMD,14475,0,NOYERS BOCAGE,Noyers-Bocage,Noyers-Bocage,COMD,14475,0,NOYERS BOCAGE,Noyers-Bocage,Noyers-Bocage +32,2017-01-01,COM,14472,5,OUDON,Oudon,L'Oudon,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge +32,2017-01-01,COM,14475,0,NOYERS MISSY,Noyers-Missy,Noyers-Missy,COMD,14475,0,NOYERS BOCAGE,Noyers-Bocage,Noyers-Bocage 32,2017-01-01,COM,14475,0,NOYERS MISSY,Noyers-Missy,Noyers-Missy,COM,14475,0,VAL D ARRY,Val d'Arry,Val d'Arry -32,2017-01-01,COM,14477,1,ONDEFONTAINE,Ondefontaine,Ondefontaine,COMD,14477,1,ONDEFONTAINE,Ondefontaine,Ondefontaine +32,2017-01-01,COMD,14475,0,NOYERS BOCAGE,Noyers-Bocage,Noyers-Bocage,COMD,14475,0,NOYERS BOCAGE,Noyers-Bocage,Noyers-Bocage +32,2017-01-01,COMD,14475,0,NOYERS BOCAGE,Noyers-Bocage,Noyers-Bocage,COM,14475,0,VAL D ARRY,Val d'Arry,Val d'Arry 32,2017-01-01,COM,14477,1,ONDEFONTAINE,Ondefontaine,Ondefontaine,COM,14027,4,MONTS D AUNAY,Monts d'Aunay,Les Monts d'Aunay -32,2017-01-01,COMA,14479,1,ORBOIS,Orbois,Orbois,COMD,14479,1,ORBOIS,Orbois,Orbois +32,2017-01-01,COM,14477,1,ONDEFONTAINE,Ondefontaine,Ondefontaine,COMD,14477,1,ONDEFONTAINE,Ondefontaine,Ondefontaine 32,2017-01-01,COMA,14479,1,ORBOIS,Orbois,Orbois,COM,14011,1,AURSEULLES,Aurseulles,Aurseulles -32,2017-01-01,COM,14481,4,OUBEAUX,Oubeaux,Les Oubeaux,COMD,14481,4,OUBEAUX,Oubeaux,Les Oubeaux +32,2017-01-01,COMA,14479,1,ORBOIS,Orbois,Orbois,COMD,14479,1,ORBOIS,Orbois,Orbois 32,2017-01-01,COM,14481,4,OUBEAUX,Oubeaux,Les Oubeaux,COM,14342,1,ISIGNY SUR MER,Isigny-sur-Mer,Isigny-sur-Mer +32,2017-01-01,COM,14481,4,OUBEAUX,Oubeaux,Les Oubeaux,COMD,14481,4,OUBEAUX,Oubeaux,Les Oubeaux 32,2017-01-01,COM,14489,1,OUVILLE LA BIEN TOURNEE,Ouville-la-Bien-Tournée,Ouville-la-Bien-Tournée,COMD,14489,1,OUVILLE LA BIEN TOURNEE,Ouville-la-Bien-Tournée,Ouville-la-Bien-Tournée 32,2017-01-01,COM,14489,1,OUVILLE LA BIEN TOURNEE,Ouville-la-Bien-Tournée,Ouville-la-Bien-Tournée,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge 32,2017-01-01,COMA,14490,0,PARFOURU L ECLIN,Parfouru-l'Éclin,Parfouru-l'Éclin,COM,14143,0,CAUMONT SUR AURE,Caumont-sur-Aure,Caumont-sur-Aure -32,2017-01-01,COM,14493,0,PERCY EN AUGE,Percy-en-Auge,Percy-en-Auge,COMD,14493,0,PERCY EN AUGE,Percy-en-Auge,Percy-en-Auge 32,2017-01-01,COM,14493,0,PERCY EN AUGE,Percy-en-Auge,Percy-en-Auge,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge -32,2017-01-01,COM,14508,2,PLESSIS GRIMOULT,Plessis-Grimoult,Le Plessis-Grimoult,COMD,14508,2,PLESSIS GRIMOULT,Plessis-Grimoult,Le Plessis-Grimoult +32,2017-01-01,COM,14493,0,PERCY EN AUGE,Percy-en-Auge,Percy-en-Auge,COMD,14493,0,PERCY EN AUGE,Percy-en-Auge,Percy-en-Auge 32,2017-01-01,COM,14508,2,PLESSIS GRIMOULT,Plessis-Grimoult,Le Plessis-Grimoult,COM,14027,4,MONTS D AUNAY,Monts d'Aunay,Les Monts d'Aunay -32,2017-01-01,COM,14517,0,POUSSY LA CAMPAGNE,Poussy-la-Campagne,Poussy-la-Campagne,COMD,14517,0,POUSSY LA CAMPAGNE,Poussy-la-Campagne,Poussy-la-Campagne +32,2017-01-01,COM,14508,2,PLESSIS GRIMOULT,Plessis-Grimoult,Le Plessis-Grimoult,COMD,14508,2,PLESSIS GRIMOULT,Plessis-Grimoult,Le Plessis-Grimoult 32,2017-01-01,COM,14517,0,POUSSY LA CAMPAGNE,Poussy-la-Campagne,Poussy-la-Campagne,COM,14005,0,VALAMBRAY,Valambray,Valambray -32,2017-01-01,COM,14525,0,PUTOT EN BESSIN,Putot-en-Bessin,Putot-en-Bessin,COMD,14525,0,PUTOT EN BESSIN,Putot-en-Bessin,Putot-en-Bessin +32,2017-01-01,COM,14517,0,POUSSY LA CAMPAGNE,Poussy-la-Campagne,Poussy-la-Campagne,COMD,14517,0,POUSSY LA CAMPAGNE,Poussy-la-Campagne,Poussy-la-Campagne 32,2017-01-01,COM,14525,0,PUTOT EN BESSIN,Putot-en-Bessin,Putot-en-Bessin,COM,14098,0,THUE ET MUE,Thue et Mue,Thue et Mue +32,2017-01-01,COM,14525,0,PUTOT EN BESSIN,Putot-en-Bessin,Putot-en-Bessin,COMD,14525,0,PUTOT EN BESSIN,Putot-en-Bessin,Putot-en-Bessin 32,2017-01-01,COM,14527,0,BIEVILLE QUETIEVILLE,Biéville-Quétiéville,Biéville-Quétiéville,COM,14527,0,BELLE VIE EN AUGE,Belle Vie en Auge,Belle Vie en Auge 32,2017-01-01,COM,14527,0,BIEVILLE QUETIEVILLE,Biéville-Quétiéville,Biéville-Quétiéville,COMD,14527,0,BIEVILLE QUETIEVILLE,Biéville-Quétiéville,Biéville-Quétiéville 32,2017-01-01,COM,14544,0,ROUCAMPS,Roucamps,Roucamps,COM,14027,4,MONTS D AUNAY,Monts d'Aunay,Les Monts d'Aunay @@ -2332,25 +2159,26 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COMA,14567,0,SAINT CRESPIN,Saint-Crespin,Saint-Crespin,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge 32,2017-01-01,COM,14568,0,SAINTE CROIX GRAND TONNE,Sainte-Croix-Grand-Tonne,Sainte-Croix-Grand-Tonne,COM,14098,0,THUE ET MUE,Thue et Mue,Thue et Mue 32,2017-01-01,COM,14568,0,SAINTE CROIX GRAND TONNE,Sainte-Croix-Grand-Tonne,Sainte-Croix-Grand-Tonne,COMD,14568,0,SAINTE CROIX GRAND TONNE,Sainte-Croix-Grand-Tonne,Sainte-Croix-Grand-Tonne -32,2017-01-01,COM,14577,0,SAINT GABRIEL BRECY,Saint-Gabriel-Brécy,Saint-Gabriel-Brécy,COMD,14577,0,SAINT GABRIEL BRECY,Saint-Gabriel-Brécy,Saint-Gabriel-Brécy 32,2017-01-01,COM,14577,0,SAINT GABRIEL BRECY,Saint-Gabriel-Brécy,Saint-Gabriel-Brécy,COM,14200,0,CREULLY SUR SEULLES,Creully sur Seulles,Creully sur Seulles +32,2017-01-01,COM,14577,0,SAINT GABRIEL BRECY,Saint-Gabriel-Brécy,Saint-Gabriel-Brécy,COMD,14577,0,SAINT GABRIEL BRECY,Saint-Gabriel-Brécy,Saint-Gabriel-Brécy +32,2017-01-01,COM,14579,0,SEULLINE,Seulline,Seulline,COMD,14579,0,SAINT GEORGES D AUNAY,Saint-Georges-d'Aunay,Saint-Georges-d'Aunay 32,2017-01-01,COM,14579,0,SEULLINE,Seulline,Seulline,COM,14579,0,SEULLINE,Seulline,Seulline -32,2017-01-01,COMD,14579,0,SAINT GEORGES D AUNAY,Saint-Georges-d'Aunay,Saint-Georges-d'Aunay,COM,14579,0,SEULLINE,Seulline,Seulline 32,2017-01-01,COMD,14579,0,SAINT GEORGES D AUNAY,Saint-Georges-d'Aunay,Saint-Georges-d'Aunay,COMD,14579,0,SAINT GEORGES D AUNAY,Saint-Georges-d'Aunay,Saint-Georges-d'Aunay -32,2017-01-01,COM,14580,0,SAINT GEORGES EN AUGE,Saint-Georges-en-Auge,Saint-Georges-en-Auge,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge +32,2017-01-01,COMD,14579,0,SAINT GEORGES D AUNAY,Saint-Georges-d'Aunay,Saint-Georges-d'Aunay,COM,14579,0,SEULLINE,Seulline,Seulline 32,2017-01-01,COM,14580,0,SAINT GEORGES EN AUGE,Saint-Georges-en-Auge,Saint-Georges-en-Auge,COMD,14580,0,SAINT GEORGES EN AUGE,Saint-Georges-en-Auge,Saint-Georges-en-Auge -32,2017-01-01,COM,14581,0,SAINT GERMAIN D ECTOT,Saint-Germain-d'Ectot,Saint-Germain-d'Ectot,COMD,14581,0,SAINT GERMAIN D ECTOT,Saint-Germain-d'Ectot,Saint-Germain-d'Ectot +32,2017-01-01,COM,14580,0,SAINT GEORGES EN AUGE,Saint-Georges-en-Auge,Saint-Georges-en-Auge,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge 32,2017-01-01,COM,14581,0,SAINT GERMAIN D ECTOT,Saint-Germain-d'Ectot,Saint-Germain-d'Ectot,COM,14011,1,AURSEULLES,Aurseulles,Aurseulles +32,2017-01-01,COM,14581,0,SAINT GERMAIN D ECTOT,Saint-Germain-d'Ectot,Saint-Germain-d'Ectot,COMD,14581,0,SAINT GERMAIN D ECTOT,Saint-Germain-d'Ectot,Saint-Germain-d'Ectot 32,2017-01-01,COM,14591,0,SAINTE HONORINE DES PERTES,Sainte-Honorine-des-Pertes,Sainte-Honorine-des-Pertes,COM,14591,1,AURE SUR MER,Aure sur Mer,Aure sur Mer 32,2017-01-01,COM,14591,0,SAINTE HONORINE DES PERTES,Sainte-Honorine-des-Pertes,Sainte-Honorine-des-Pertes,COMD,14591,0,SAINTE HONORINE DES PERTES,Sainte-Honorine-des-Pertes,Sainte-Honorine-des-Pertes -32,2017-01-01,COM,14596,0,SAINT JEAN DES ESSARTIERS,Saint-Jean-des-Essartiers,Saint-Jean-des-Essartiers,COM,14672,0,VAL DE DROME,Val de Drôme,Val de Drôme 32,2017-01-01,COM,14596,0,SAINT JEAN DES ESSARTIERS,Saint-Jean-des-Essartiers,Saint-Jean-des-Essartiers,COMD,14596,0,SAINT JEAN DES ESSARTIERS,Saint-Jean-des-Essartiers,Saint-Jean-des-Essartiers -32,2017-01-01,COM,14597,0,SAINT JEAN LE BLANC,Saint-Jean-le-Blanc,Saint-Jean-le-Blanc,COMD,14597,0,SAINT JEAN LE BLANC,Saint-Jean-le-Blanc,Saint-Jean-le-Blanc +32,2017-01-01,COM,14596,0,SAINT JEAN DES ESSARTIERS,Saint-Jean-des-Essartiers,Saint-Jean-des-Essartiers,COM,14672,0,VAL DE DROME,Val de Drôme,Val de Drôme 32,2017-01-01,COM,14597,0,SAINT JEAN LE BLANC,Saint-Jean-le-Blanc,Saint-Jean-le-Blanc,COM,14357,0,TERRES DE DRUANCE,Terres de Druance,Terres de Druance -32,2017-01-01,COM,14600,0,SAINT JULIEN LE FAUCON,Saint-Julien-le-Faucon,Saint-Julien-le-Faucon,COMD,14600,0,SAINT JULIEN LE FAUCON,Saint-Julien-le-Faucon,Saint-Julien-le-Faucon +32,2017-01-01,COM,14597,0,SAINT JEAN LE BLANC,Saint-Jean-le-Blanc,Saint-Jean-le-Blanc,COMD,14597,0,SAINT JEAN LE BLANC,Saint-Jean-le-Blanc,Saint-Jean-le-Blanc 32,2017-01-01,COM,14600,0,SAINT JULIEN LE FAUCON,Saint-Julien-le-Faucon,Saint-Julien-le-Faucon,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge -32,2017-01-01,COM,14608,0,SAINT LOUP DE FRIBOIS,Saint-Loup-de-Fribois,Saint-Loup-de-Fribois,COMD,14608,0,SAINT LOUP DE FRIBOIS,Saint-Loup-de-Fribois,Saint-Loup-de-Fribois +32,2017-01-01,COM,14600,0,SAINT JULIEN LE FAUCON,Saint-Julien-le-Faucon,Saint-Julien-le-Faucon,COMD,14600,0,SAINT JULIEN LE FAUCON,Saint-Julien-le-Faucon,Saint-Julien-le-Faucon 32,2017-01-01,COM,14608,0,SAINT LOUP DE FRIBOIS,Saint-Loup-de-Fribois,Saint-Loup-de-Fribois,COM,14527,0,BELLE VIE EN AUGE,Belle Vie en Auge,Belle Vie en Auge +32,2017-01-01,COM,14608,0,SAINT LOUP DE FRIBOIS,Saint-Loup-de-Fribois,Saint-Loup-de-Fribois,COMD,14608,0,SAINT LOUP DE FRIBOIS,Saint-Loup-de-Fribois,Saint-Loup-de-Fribois 32,2017-01-01,COM,14611,0,SAINT MANVIEU BOCAGE,Saint-Manvieu-Bocage,Saint-Manvieu-Bocage,COMD,14611,0,SAINT MANVIEU BOCAGE,Saint-Manvieu-Bocage,Saint-Manvieu-Bocage 32,2017-01-01,COM,14611,0,SAINT MANVIEU BOCAGE,Saint-Manvieu-Bocage,Saint-Manvieu-Bocage,COM,14658,0,NOUES DE SIENNE,Noues de Sienne,Noues de Sienne 32,2017-01-01,COM,14616,0,SAINTE MARGUERITE DE VIETTE,Sainte-Marguerite-de-Viette,Sainte-Marguerite-de-Viette,COMD,14616,0,SAINTE MARGUERITE DE VIETTE,Sainte-Marguerite-de-Viette,Sainte-Marguerite-de-Viette @@ -2365,27 +2193,27 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,14662,0,SAINT VIGOR DES MEZERETS,Saint-Vigor-des-Mézerets,Saint-Vigor-des-Mézerets,COMD,14662,0,SAINT VIGOR DES MEZERETS,Saint-Vigor-des-Mézerets,Saint-Vigor-des-Mézerets 32,2017-01-01,COM,14666,0,SANNERVILLE,Sannerville,Sannerville,COMD,14666,0,SANNERVILLE,Sannerville,Sannerville 32,2017-01-01,COM,14666,0,SANNERVILLE,Sannerville,Sannerville,COM,14712,0,SALINE,Saline,Saline -32,2017-01-01,COM,14671,0,SEPT FRERES,Sept-Frères,Sept-Frères,COMD,14671,0,SEPT FRERES,Sept-Frères,Sept-Frères 32,2017-01-01,COM,14671,0,SEPT FRERES,Sept-Frères,Sept-Frères,COM,14658,0,NOUES DE SIENNE,Noues de Sienne,Noues de Sienne +32,2017-01-01,COM,14671,0,SEPT FRERES,Sept-Frères,Sept-Frères,COMD,14671,0,SEPT FRERES,Sept-Frères,Sept-Frères 32,2017-01-01,COM,14672,0,SEPT VENTS,Sept-Vents,Sept-Vents,COMD,14672,0,SEPT VENTS,Sept-Vents,Sept-Vents 32,2017-01-01,COM,14672,0,SEPT VENTS,Sept-Vents,Sept-Vents,COM,14672,0,VAL DE DROME,Val de Drôme,Val de Drôme 32,2017-01-01,COMA,14673,0,SERMENTOT,Sermentot,Sermentot,COM,14011,1,AURSEULLES,Aurseulles,Aurseulles 32,2017-01-01,COMA,14673,0,SERMENTOT,Sermentot,Sermentot,COMD,14673,0,SERMENTOT,Sermentot,Sermentot -32,2017-01-01,COM,14688,0,THIEVILLE,Thiéville,Thiéville,COMD,14688,0,THIEVILLE,Thiéville,Thiéville 32,2017-01-01,COM,14688,0,THIEVILLE,Thiéville,Thiéville,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge -32,2017-01-01,COM,14690,0,TIERCEVILLE,Tierceville,Tierceville,COMD,14690,0,TIERCEVILLE,Tierceville,Tierceville +32,2017-01-01,COM,14688,0,THIEVILLE,Thiéville,Thiéville,COMD,14688,0,THIEVILLE,Thiéville,Thiéville 32,2017-01-01,COM,14690,0,TIERCEVILLE,Tierceville,Tierceville,COM,14355,0,PONTS SUR SEULLES,Ponts sur Seulles,Ponts sur Seulles -32,2017-01-01,COM,14695,0,TORTEVAL QUESNAY,Torteval-Quesnay,Torteval-Quesnay,COMD,14695,0,TORTEVAL QUESNAY,Torteval-Quesnay,Torteval-Quesnay +32,2017-01-01,COM,14690,0,TIERCEVILLE,Tierceville,Tierceville,COMD,14690,0,TIERCEVILLE,Tierceville,Tierceville 32,2017-01-01,COM,14695,0,TORTEVAL QUESNAY,Torteval-Quesnay,Torteval-Quesnay,COM,14011,1,AURSEULLES,Aurseulles,Aurseulles +32,2017-01-01,COM,14695,0,TORTEVAL QUESNAY,Torteval-Quesnay,Torteval-Quesnay,COMD,14695,0,TORTEVAL QUESNAY,Torteval-Quesnay,Torteval-Quesnay 32,2017-01-01,COMA,14697,0,TOTES,Tôtes,Tôtes,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge -32,2017-01-01,COM,14702,0,TOURNAY SUR ODON,Tournay-sur-Odon,Tournay-sur-Odon,COMD,14702,0,TOURNAY SUR ODON,Tournay-sur-Odon,Tournay-sur-Odon 32,2017-01-01,COM,14702,0,TOURNAY SUR ODON,Tournay-sur-Odon,Tournay-sur-Odon,COM,14475,0,VAL D ARRY,Val d'Arry,Val d'Arry +32,2017-01-01,COM,14702,0,TOURNAY SUR ODON,Tournay-sur-Odon,Tournay-sur-Odon,COMD,14702,0,TOURNAY SUR ODON,Tournay-sur-Odon,Tournay-sur-Odon 32,2017-01-01,COM,14712,0,TROARN,Troarn,Troarn,COM,14712,0,SALINE,Saline,Saline 32,2017-01-01,COM,14712,0,TROARN,Troarn,Troarn,COMD,14712,0,TROARN,Troarn,Troarn 32,2017-01-01,COM,14722,3,VACQUERIE,Vacquerie,La Vacquerie,COM,14143,0,CAUMONT SUR AURE,Caumont-sur-Aure,Caumont-sur-Aure 32,2017-01-01,COM,14722,3,VACQUERIE,Vacquerie,La Vacquerie,COMD,14722,3,VACQUERIE,Vacquerie,La Vacquerie -32,2017-01-01,COM,14729,0,VAUDELOGES,Vaudeloges,Vaudeloges,COMD,14729,0,VAUDELOGES,Vaudeloges,Vaudeloges 32,2017-01-01,COM,14729,0,VAUDELOGES,Vaudeloges,Vaudeloges,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge +32,2017-01-01,COM,14729,0,VAUDELOGES,Vaudeloges,Vaudeloges,COMD,14729,0,VAUDELOGES,Vaudeloges,Vaudeloges 32,2017-01-01,COM,14749,0,VIEUX FUME,Vieux-Fumé,Vieux-Fumé,COM,14431,0,MEZIDON VALLEE D AUGE,Mézidon Vallée d'Auge,Mézidon Vallée d'Auge 32,2017-01-01,COM,14749,0,VIEUX FUME,Vieux-Fumé,Vieux-Fumé,COMD,14749,0,VIEUX FUME,Vieux-Fumé,Vieux-Fumé 32,2017-01-01,COM,14750,0,VIEUX PONT EN AUGE,Vieux-Pont-en-Auge,Vieux-Pont-en-Auge,COM,14654,0,SAINT PIERRE EN AUGE,Saint-Pierre-en-Auge,Saint-Pierre-en-Auge @@ -2396,8 +2224,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,14763,0,VOUILLY,Vouilly,Vouilly,COMD,14763,0,VOUILLY,Vouilly,Vouilly 32,2017-01-01,COM,15044,0,CHASTEL SUR MURAT,Chastel-sur-Murat,Chastel-sur-Murat,COMD,15044,0,CHASTEL SUR MURAT,Chastel-sur-Murat,Chastel-sur-Murat 32,2017-01-01,COM,15044,0,CHASTEL SUR MURAT,Chastel-sur-Murat,Chastel-sur-Murat,COM,15138,0,MURAT,Murat,Murat -32,2017-01-01,COM,15099,0,LAVASTRIE,Lavastrie,Lavastrie,COM,15142,0,NEUVEGLISE SUR TRUYERE,Neuvéglise-sur-Truyère,Neuvéglise-sur-Truyère 32,2017-01-01,COM,15099,0,LAVASTRIE,Lavastrie,Lavastrie,COMD,15099,0,LAVASTRIE,Lavastrie,Lavastrie +32,2017-01-01,COM,15099,0,LAVASTRIE,Lavastrie,Lavastrie,COM,15142,0,NEUVEGLISE SUR TRUYERE,Neuvéglise-sur-Truyère,Neuvéglise-sur-Truyère 32,2017-01-01,COM,15138,0,MURAT,Murat,Murat,COM,15138,0,MURAT,Murat,Murat 32,2017-01-01,COM,15138,0,MURAT,Murat,Murat,COMD,15138,0,MURAT,Murat,Murat 32,2017-01-01,COM,15142,0,NEUVEGLISE,Neuvéglise,Neuvéglise,COM,15142,0,NEUVEGLISE SUR TRUYERE,Neuvéglise-sur-Truyère,Neuvéglise-sur-Truyère @@ -2409,23 +2237,23 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,16004,1,AIGNES ET PUYPEROUX,Aignes-et-Puypéroux,Aignes-et-Puypéroux,COMD,16004,1,AIGNES ET PUYPEROUX,Aignes-et-Puypéroux,Aignes-et-Puypéroux 32,2017-01-01,COM,16004,1,AIGNES ET PUYPEROUX,Aignes-et-Puypéroux,Aignes-et-Puypéroux,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau 34,2017-01-01,COMA,16006,1,AIZECQ,Aizecq,Aizecq,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée -32,2017-01-01,COM,16023,1,AUNAC,Aunac,Aunac,COM,16023,1,AUNAC SUR CHARENTE,Aunac-sur-Charente,Aunac-sur-Charente 32,2017-01-01,COM,16023,1,AUNAC,Aunac,Aunac,COMD,16023,1,AUNAC,Aunac,Aunac -32,2017-01-01,COM,16033,0,BAYERS,Bayers,Bayers,COMD,16033,0,BAYERS,Bayers,Bayers +32,2017-01-01,COM,16023,1,AUNAC,Aunac,Aunac,COM,16023,1,AUNAC SUR CHARENTE,Aunac-sur-Charente,Aunac-sur-Charente 32,2017-01-01,COM,16033,0,BAYERS,Bayers,Bayers,COM,16023,1,AUNAC SUR CHARENTE,Aunac-sur-Charente,Aunac-sur-Charente +32,2017-01-01,COM,16033,0,BAYERS,Bayers,Bayers,COMD,16033,0,BAYERS,Bayers,Bayers 32,2017-01-01,COM,16046,0,BLANZAC PORCHERESSE,Blanzac-Porcheresse,Blanzac-Porcheresse,COM,16046,0,COTEAUX DU BLANZACAIS,Côteaux du Blanzacais,Côteaux du Blanzacais 32,2017-01-01,COM,16046,0,BLANZAC PORCHERESSE,Blanzac-Porcheresse,Blanzac-Porcheresse,COMD,16046,0,BLANZAC PORCHERESSE,Blanzac-Porcheresse,Blanzac-Porcheresse -32,2017-01-01,COM,16094,0,CHENOMMET,Chenommet,Chenommet,COMD,16094,0,CHENOMMET,Chenommet,Chenommet 32,2017-01-01,COM,16094,0,CHENOMMET,Chenommet,Chenommet,COM,16023,1,AUNAC SUR CHARENTE,Aunac-sur-Charente,Aunac-sur-Charente +32,2017-01-01,COM,16094,0,CHENOMMET,Chenommet,Chenommet,COMD,16094,0,CHENOMMET,Chenommet,Chenommet 32,2017-01-01,COM,16115,0,CRESSAC SAINT GENIS,Cressac-Saint-Genis,Cressac-Saint-Genis,COM,16046,0,COTEAUX DU BLANZACAIS,Côteaux du Blanzacais,Côteaux du Blanzacais 32,2017-01-01,COM,16115,0,CRESSAC SAINT GENIS,Cressac-Saint-Genis,Cressac-Saint-Genis,COMD,16115,0,CRESSAC SAINT GENIS,Cressac-Saint-Genis,Cressac-Saint-Genis -32,2017-01-01,COM,16129,1,ERAVILLE,Éraville,Éraville,COM,16204,0,BELLEVIGNE,Bellevigne,Bellevigne 32,2017-01-01,COM,16129,1,ERAVILLE,Éraville,Éraville,COMD,16129,1,ERAVILLE,Éraville,Éraville +32,2017-01-01,COM,16129,1,ERAVILLE,Éraville,Éraville,COM,16204,0,BELLEVIGNE,Bellevigne,Bellevigne 32,2017-01-01,COM,16204,0,MALAVILLE,Malaville,Malaville,COM,16204,0,BELLEVIGNE,Bellevigne,Bellevigne 32,2017-01-01,COM,16204,0,MALAVILLE,Malaville,Malaville,COMD,16204,0,MALAVILLE,Malaville,Malaville 34,2017-01-01,COMA,16219,0,MESSEUX,Messeux,Messeux,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée -32,2017-01-01,COM,16230,0,MONTMOREAU SAINT CYBARD,Montmoreau-Saint-Cybard,Montmoreau-Saint-Cybard,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau 32,2017-01-01,COM,16230,0,MONTMOREAU SAINT CYBARD,Montmoreau-Saint-Cybard,Montmoreau-Saint-Cybard,COMD,16230,0,MONTMOREAU SAINT CYBARD,Montmoreau-Saint-Cybard,Montmoreau-Saint-Cybard +32,2017-01-01,COM,16230,0,MONTMOREAU SAINT CYBARD,Montmoreau-Saint-Cybard,Montmoreau-Saint-Cybard,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau 34,2017-01-01,COMA,16235,0,MOUTARDON,Moutardon,Moutardon,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée 34,2017-01-01,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée 32,2017-01-01,COM,16247,0,NONAVILLE,Nonaville,Nonaville,COM,16204,0,BELLEVIGNE,Bellevigne,Bellevigne @@ -2434,8 +2262,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 34,2017-01-01,COMA,16266,0,POUGNE,Pougné,Pougné,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée 32,2017-01-01,COM,16294,0,SAINT AMANT DE MONTMOREAU,Saint-Amant-de-Montmoreau,Saint-Amant-de-Montmoreau,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau 32,2017-01-01,COM,16294,0,SAINT AMANT DE MONTMOREAU,Saint-Amant-de-Montmoreau,Saint-Amant-de-Montmoreau,COMD,16294,0,SAINT AMANT DE MONTMOREAU,Saint-Amant-de-Montmoreau,Saint-Amant-de-Montmoreau -32,2017-01-01,COM,16314,0,SAINT EUTROPE,Saint-Eutrope,Saint-Eutrope,COMD,16314,0,SAINT EUTROPE,Saint-Eutrope,Saint-Eutrope 32,2017-01-01,COM,16314,0,SAINT EUTROPE,Saint-Eutrope,Saint-Eutrope,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau +32,2017-01-01,COM,16314,0,SAINT EUTROPE,Saint-Eutrope,Saint-Eutrope,COMD,16314,0,SAINT EUTROPE,Saint-Eutrope,Saint-Eutrope 34,2017-01-01,COMA,16324,0,SAINT GERVAIS,Saint-Gervais,Saint-Gervais,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée 32,2017-01-01,COM,16328,0,SAINT LAURENT DE BELZAGOT,Saint-Laurent-de-Belzagot,Saint-Laurent-de-Belzagot,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau 32,2017-01-01,COM,16328,0,SAINT LAURENT DE BELZAGOT,Saint-Laurent-de-Belzagot,Saint-Laurent-de-Belzagot,COMD,16328,0,SAINT LAURENT DE BELZAGOT,Saint-Laurent-de-Belzagot,Saint-Laurent-de-Belzagot @@ -2447,112 +2275,114 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,19010,1,ARGENTAT,Argentat,Argentat,COMD,19010,1,ARGENTAT,Argentat,Argentat 32,2017-01-01,COM,19183,0,SAINT BAZILE DE LA ROCHE,Saint-Bazile-de-la-Roche,Saint-Bazile-de-la-Roche,COM,19010,1,ARGENTAT SUR DORDOGNE,Argentat-sur-Dordogne,Argentat-sur-Dordogne 32,2017-01-01,COM,19183,0,SAINT BAZILE DE LA ROCHE,Saint-Bazile-de-la-Roche,Saint-Bazile-de-la-Roche,COMD,19183,0,SAINT BAZILE DE LA ROCHE,Saint-Bazile-de-la-Roche,Saint-Bazile-de-la-Roche -32,2017-01-01,COM,19218,0,SAINT JULIEN PRES BORT,Saint-Julien-près-Bort,Saint-Julien-près-Bort,COM,19252,0,SARROUX SAINT JULIEN,Sarroux - Saint Julien,Sarroux - Saint Julien 32,2017-01-01,COM,19218,0,SAINT JULIEN PRES BORT,Saint-Julien-près-Bort,Saint-Julien-près-Bort,COMD,19218,0,SAINT JULIEN PRES BORT,Saint-Julien-près-Bort,Saint-Julien-près-Bort +32,2017-01-01,COM,19218,0,SAINT JULIEN PRES BORT,Saint-Julien-près-Bort,Saint-Julien-près-Bort,COM,19252,0,SARROUX SAINT JULIEN,Sarroux - Saint Julien,Sarroux - Saint Julien +32,2017-01-01,COM,19252,0,SARROUX,Sarroux,Sarroux,COM,19252,0,SARROUX SAINT JULIEN,Sarroux - Saint Julien,Sarroux - Saint Julien 32,2017-01-01,COM,19252,0,SARROUX,Sarroux,Sarroux,COMD,19252,0,SARROUX,Sarroux,Sarroux -32,2017-01-01,COM,19252,0,SARROUX,Sarroux,Sarroux,COM,19252,0,SARROUX SAINT JULIEN,Sarroux - Saint Julien,Sarroux - Saint Julien 32,2017-01-01,COM,21195,0,CORMOT LE GRAND,Cormot-le-Grand,Cormot-le-Grand,COM,21195,0,CORMOT VAUCHIGNON,Cormot-Vauchignon,Cormot-Vauchignon 32,2017-01-01,COM,21658,0,VAUCHIGNON,Vauchignon,Vauchignon,COM,21195,0,CORMOT VAUCHIGNON,Cormot-Vauchignon,Cormot-Vauchignon -32,2017-01-01,COM,22107,0,LANISCAT,Laniscat,Laniscat,COM,22107,0,BON REPOS SUR BLAVET,Bon Repos sur Blavet,Bon Repos sur Blavet 32,2017-01-01,COM,22107,0,LANISCAT,Laniscat,Laniscat,COMD,22107,0,LANISCAT,Laniscat,Laniscat +32,2017-01-01,COM,22107,0,LANISCAT,Laniscat,Laniscat,COM,22107,0,BON REPOS SUR BLAVET,Bon Repos sur Blavet,Bon Repos sur Blavet 32,2017-01-01,COM,22158,0,MUR DE BRETAGNE,Mûr-de-Bretagne,Mûr-de-Bretagne,COMD,22158,0,MUR DE BRETAGNE,Mûr-de-Bretagne,Mûr-de-Bretagne 32,2017-01-01,COM,22158,0,MUR DE BRETAGNE,Mûr-de-Bretagne,Mûr-de-Bretagne,COM,22158,0,GUERLEDAN,Guerlédan,Guerlédan 32,2017-01-01,COM,22167,0,PERRET,Perret,Perret,COM,22107,0,BON REPOS SUR BLAVET,Bon Repos sur Blavet,Bon Repos sur Blavet 32,2017-01-01,COM,22167,0,PERRET,Perret,Perret,COMD,22167,0,PERRET,Perret,Perret -32,2017-01-01,COM,22192,0,PLESSIX BALISSON,Plessix-Balisson,Plessix-Balisson,COM,22209,0,BEAUSSAIS SUR MER,Beaussais-sur-Mer,Beaussais-sur-Mer 32,2017-01-01,COM,22192,0,PLESSIX BALISSON,Plessix-Balisson,Plessix-Balisson,COMD,22192,0,PLESSIX BALISSON,Plessix-Balisson,Plessix-Balisson +32,2017-01-01,COM,22192,0,PLESSIX BALISSON,Plessix-Balisson,Plessix-Balisson,COM,22209,0,BEAUSSAIS SUR MER,Beaussais-sur-Mer,Beaussais-sur-Mer 32,2017-01-01,COM,22209,0,PLOUBALAY,Ploubalay,Ploubalay,COM,22209,0,BEAUSSAIS SUR MER,Beaussais-sur-Mer,Beaussais-sur-Mer 32,2017-01-01,COM,22209,0,PLOUBALAY,Ploubalay,Ploubalay,COMD,22209,0,PLOUBALAY,Ploubalay,Ploubalay 32,2017-01-01,COM,22290,0,SAINT GELVEN,Saint-Gelven,Saint-Gelven,COM,22107,0,BON REPOS SUR BLAVET,Bon Repos sur Blavet,Bon Repos sur Blavet 32,2017-01-01,COM,22290,0,SAINT GELVEN,Saint-Gelven,Saint-Gelven,COMD,22290,0,SAINT GELVEN,Saint-Gelven,Saint-Gelven -32,2017-01-01,COM,22298,0,SAINT GUEN,Saint-Guen,Saint-Guen,COMD,22298,0,SAINT GUEN,Saint-Guen,Saint-Guen 32,2017-01-01,COM,22298,0,SAINT GUEN,Saint-Guen,Saint-Guen,COM,22158,0,GUERLEDAN,Guerlédan,Guerlédan +32,2017-01-01,COM,22298,0,SAINT GUEN,Saint-Guen,Saint-Guen,COMD,22298,0,SAINT GUEN,Saint-Guen,Saint-Guen 32,2017-01-01,COM,22357,0,TREGON,Trégon,Trégon,COM,22209,0,BEAUSSAIS SUR MER,Beaussais-sur-Mer,Beaussais-sur-Mer 32,2017-01-01,COM,22357,0,TREGON,Trégon,Trégon,COMD,22357,0,TREGON,Trégon,Trégon -32,2017-01-01,COM,23192,0,SAINT ETIENNE DE FURSAC,Saint-Étienne-de-Fursac,Saint-Étienne-de-Fursac,COMD,23192,0,SAINT ETIENNE DE FURSAC,Saint-Étienne-de-Fursac,Saint-Étienne-de-Fursac 32,2017-01-01,COM,23192,0,SAINT ETIENNE DE FURSAC,Saint-Étienne-de-Fursac,Saint-Étienne-de-Fursac,COM,23192,0,FURSAC,Fursac,Fursac +32,2017-01-01,COM,23192,0,SAINT ETIENNE DE FURSAC,Saint-Étienne-de-Fursac,Saint-Étienne-de-Fursac,COMD,23192,0,SAINT ETIENNE DE FURSAC,Saint-Étienne-de-Fursac,Saint-Étienne-de-Fursac 32,2017-01-01,COM,23231,0,SAINT PIERRE DE FURSAC,Saint-Pierre-de-Fursac,Saint-Pierre-de-Fursac,COM,23192,0,FURSAC,Fursac,Fursac 32,2017-01-01,COM,23231,0,SAINT PIERRE DE FURSAC,Saint-Pierre-de-Fursac,Saint-Pierre-de-Fursac,COMD,23231,0,SAINT PIERRE DE FURSAC,Saint-Pierre-de-Fursac,Saint-Pierre-de-Fursac 32,2017-01-01,COMD,24013,1,ATUR,Atur,Atur,COMD,24013,1,ATUR,Atur,Atur 32,2017-01-01,COMD,24013,1,ATUR,Atur,Atur,COM,24053,0,BOULAZAC ISLE MANOIRE,Boulazac Isle Manoire,Boulazac Isle Manoire -32,2017-01-01,COM,24026,0,BASSILLAC,Bassillac,Bassillac,COM,24026,0,BASSILLAC ET AUBEROCHE,Bassillac et Auberoche,Bassillac et Auberoche 32,2017-01-01,COM,24026,0,BASSILLAC,Bassillac,Bassillac,COMD,24026,0,BASSILLAC,Bassillac,Bassillac +32,2017-01-01,COM,24026,0,BASSILLAC,Bassillac,Bassillac,COM,24026,0,BASSILLAC ET AUBEROCHE,Bassillac et Auberoche,Bassillac et Auberoche 32,2017-01-01,COM,24033,0,BEAUSSAC,Beaussac,Beaussac,COMD,24033,0,BEAUSSAC,Beaussac,Beaussac 32,2017-01-01,COM,24033,0,BEAUSSAC,Beaussac,Beaussac,COM,24253,0,MAREUIL EN PERIGORD,Mareuil en Périgord,Mareuil en Périgord -32,2017-01-01,COM,24041,0,BEZENAC,Bézenac,Bézenac,COM,24087,0,CASTELS ET BEZENAC,Castels et Bézenac,Castels et Bézenac 32,2017-01-01,COM,24041,0,BEZENAC,Bézenac,Bézenac,COMD,24041,0,BEZENAC,Bézenac,Bézenac -32,2017-01-01,COM,24044,0,BLIS ET BORN,Blis-et-Born,Blis-et-Born,COMD,24044,0,BLIS ET BORN,Blis-et-Born,Blis-et-Born +32,2017-01-01,COM,24041,0,BEZENAC,Bézenac,Bézenac,COM,24087,0,CASTELS ET BEZENAC,Castels et Bézenac,Castels et Bézenac 32,2017-01-01,COM,24044,0,BLIS ET BORN,Blis-et-Born,Blis-et-Born,COM,24026,0,BASSILLAC ET AUBEROCHE,Bassillac et Auberoche,Bassillac et Auberoche -32,2017-01-01,COM,24047,3,BOISSIERE D ANS,Boissière-d'Ans,La Boissière-d'Ans,COM,24147,0,CUBJAC AUVEZERE VAL D ANS,Cubjac-Auvézère-Val d'Ans,Cubjac-Auvézère-Val d'Ans +32,2017-01-01,COM,24044,0,BLIS ET BORN,Blis-et-Born,Blis-et-Born,COMD,24044,0,BLIS ET BORN,Blis-et-Born,Blis-et-Born 32,2017-01-01,COM,24047,3,BOISSIERE D ANS,Boissière-d'Ans,La Boissière-d'Ans,COMD,24047,3,BOISSIERE D ANS,Boissière-d'Ans,La Boissière-d'Ans +32,2017-01-01,COM,24047,3,BOISSIERE D ANS,Boissière-d'Ans,La Boissière-d'Ans,COM,24147,0,CUBJAC AUVEZERE VAL D ANS,Cubjac-Auvézère-Val d'Ans,Cubjac-Auvézère-Val d'Ans 32,2017-01-01,COMD,24053,0,BOULAZAC,Boulazac,Boulazac,COM,24053,0,BOULAZAC ISLE MANOIRE,Boulazac Isle Manoire,Boulazac Isle Manoire -32,2017-01-01,COM,24053,0,BOULAZAC ISLE MANOIRE,Boulazac Isle Manoire,Boulazac Isle Manoire,COM,24053,0,BOULAZAC ISLE MANOIRE,Boulazac Isle Manoire,Boulazac Isle Manoire 32,2017-01-01,COMD,24053,0,BOULAZAC,Boulazac,Boulazac,COMD,24053,0,BOULAZAC,Boulazac,Boulazac -32,2017-01-01,COM,24065,0,BREUILH,Breuilh,Breuilh,COM,24312,0,SANILHAC,Sanilhac,Sanilhac +32,2017-01-01,COM,24053,0,BOULAZAC ISLE MANOIRE,Boulazac Isle Manoire,Boulazac Isle Manoire,COM,24053,0,BOULAZAC ISLE MANOIRE,Boulazac Isle Manoire,Boulazac Isle Manoire +32,2017-01-01,COM,24053,0,BOULAZAC ISLE MANOIRE,Boulazac Isle Manoire,Boulazac Isle Manoire,COMD,24053,0,BOULAZAC,Boulazac,Boulazac 32,2017-01-01,COM,24065,0,BREUILH,Breuilh,Breuilh,COMD,24065,0,BREUILH,Breuilh,Breuilh -32,2017-01-01,COM,24087,0,CASTELS,Castels,Castels,COM,24087,0,CASTELS ET BEZENAC,Castels et Bézenac,Castels et Bézenac +32,2017-01-01,COM,24065,0,BREUILH,Breuilh,Breuilh,COM,24312,0,SANILHAC,Sanilhac,Sanilhac 32,2017-01-01,COM,24087,0,CASTELS,Castels,Castels,COMD,24087,0,CASTELS,Castels,Castels -32,2017-01-01,COM,24092,0,CENDRIEUX,Cendrieux,Cendrieux,COM,24362,0,VAL DE LOUYRE ET CAUDEAU,Val de Louyre et Caudeau,Val de Louyre et Caudeau +32,2017-01-01,COM,24087,0,CASTELS,Castels,Castels,COM,24087,0,CASTELS ET BEZENAC,Castels et Bézenac,Castels et Bézenac 32,2017-01-01,COM,24092,0,CENDRIEUX,Cendrieux,Cendrieux,COMD,24092,0,CENDRIEUX,Cendrieux,Cendrieux -32,2017-01-01,COM,24093,0,CERCLES,Cercles,Cercles,COM,24554,3,TOUR BLANCHE CERCLES,Tour-Blanche-Cercles,La Tour-Blanche-Cercles +32,2017-01-01,COM,24092,0,CENDRIEUX,Cendrieux,Cendrieux,COM,24362,0,VAL DE LOUYRE ET CAUDEAU,Val de Louyre et Caudeau,Val de Louyre et Caudeau 32,2017-01-01,COM,24093,0,CERCLES,Cercles,Cercles,COMD,24093,0,CERCLES,Cercles,Cercles +32,2017-01-01,COM,24093,0,CERCLES,Cercles,Cercles,COM,24554,3,TOUR BLANCHE CERCLES,Tour-Blanche-Cercles,La Tour-Blanche-Cercles 32,2017-01-01,COM,24099,0,CHAMPEAUX ET LA CHAPELLE POMMIER,Champeaux-et-la-Chapelle-Pommier,Champeaux-et-la-Chapelle-Pommier,COMD,24099,0,CHAMPEAUX ET LA CHAPELLE POMMIER,Champeaux-et-la-Chapelle-Pommier,Champeaux-et-la-Chapelle-Pommier 32,2017-01-01,COM,24099,0,CHAMPEAUX ET LA CHAPELLE POMMIER,Champeaux-et-la-Chapelle-Pommier,Champeaux-et-la-Chapelle-Pommier,COM,24253,0,MAREUIL EN PERIGORD,Mareuil en Périgord,Mareuil en Périgord -32,2017-01-01,COM,24103,2,CHANGE,Change,Le Change,COMD,24103,2,CHANGE,Change,Le Change 32,2017-01-01,COM,24103,2,CHANGE,Change,Le Change,COM,24026,0,BASSILLAC ET AUBEROCHE,Bassillac et Auberoche,Bassillac et Auberoche -32,2017-01-01,COM,24117,0,CHAVAGNAC,Chavagnac,Chavagnac,COM,24117,4,COTEAUX PERIGOURDINS,Coteaux Périgourdins,Les Coteaux Périgourdins +32,2017-01-01,COM,24103,2,CHANGE,Change,Le Change,COMD,24103,2,CHANGE,Change,Le Change 32,2017-01-01,COM,24117,0,CHAVAGNAC,Chavagnac,Chavagnac,COMD,24117,0,CHAVAGNAC,Chavagnac,Chavagnac -32,2017-01-01,COM,24147,0,CUBJAC,Cubjac,Cubjac,COM,24147,0,CUBJAC AUVEZERE VAL D ANS,Cubjac-Auvézère-Val d'Ans,Cubjac-Auvézère-Val d'Ans +32,2017-01-01,COM,24117,0,CHAVAGNAC,Chavagnac,Chavagnac,COM,24117,4,COTEAUX PERIGOURDINS,Coteaux Périgourdins,Les Coteaux Périgourdins 32,2017-01-01,COM,24147,0,CUBJAC,Cubjac,Cubjac,COMD,24147,0,CUBJAC,Cubjac,Cubjac -32,2017-01-01,COM,24166,1,EYLIAC,Eyliac,Eyliac,COMD,24166,1,EYLIAC,Eyliac,Eyliac +32,2017-01-01,COM,24147,0,CUBJAC,Cubjac,Cubjac,COM,24147,0,CUBJAC AUVEZERE VAL D ANS,Cubjac-Auvézère-Val d'Ans,Cubjac-Auvézère-Val d'Ans 32,2017-01-01,COM,24166,1,EYLIAC,Eyliac,Eyliac,COM,24026,0,BASSILLAC ET AUBEROCHE,Bassillac et Auberoche,Bassillac et Auberoche +32,2017-01-01,COM,24166,1,EYLIAC,Eyliac,Eyliac,COMD,24166,1,EYLIAC,Eyliac,Eyliac 32,2017-01-01,COM,24178,0,FESTALEMPS,Festalemps,Festalemps,COMD,24178,0,FESTALEMPS,Festalemps,Festalemps 32,2017-01-01,COM,24178,0,FESTALEMPS,Festalemps,Festalemps,COM,24490,0,SAINT PRIVAT EN PERIGORD,Saint Privat en Périgord,Saint Privat en Périgord 32,2017-01-01,COM,24203,4,GRAULGES,Graulges,Les Graulges,COMD,24203,4,GRAULGES,Graulges,Les Graulges 32,2017-01-01,COM,24203,4,GRAULGES,Graulges,Les Graulges,COM,24253,0,MAREUIL EN PERIGORD,Mareuil en Périgord,Mareuil en Périgord -32,2017-01-01,COM,24204,0,GREZES,Grèzes,Grèzes,COMD,24204,0,GREZES,Grèzes,Grèzes 32,2017-01-01,COM,24204,0,GREZES,Grèzes,Grèzes,COM,24117,4,COTEAUX PERIGOURDINS,Coteaux Périgourdins,Les Coteaux Périgourdins -32,2017-01-01,COM,24216,3,JEMAYE,Jemaye,La Jemaye,COMD,24216,3,JEMAYE,Jemaye,La Jemaye +32,2017-01-01,COM,24204,0,GREZES,Grèzes,Grèzes,COMD,24204,0,GREZES,Grèzes,Grèzes 32,2017-01-01,COM,24216,3,JEMAYE,Jemaye,La Jemaye,COM,24216,3,JEMAYE PONTEYRAUD,Jemaye-Ponteyraud,La Jemaye-Ponteyraud -32,2017-01-01,COM,24235,0,LEGUILLAC DE CERCLES,Léguillac-de-Cercles,Léguillac-de-Cercles,COM,24253,0,MAREUIL EN PERIGORD,Mareuil en Périgord,Mareuil en Périgord +32,2017-01-01,COM,24216,3,JEMAYE,Jemaye,La Jemaye,COMD,24216,3,JEMAYE,Jemaye,La Jemaye 32,2017-01-01,COM,24235,0,LEGUILLAC DE CERCLES,Léguillac-de-Cercles,Léguillac-de-Cercles,COMD,24235,0,LEGUILLAC DE CERCLES,Léguillac-de-Cercles,Léguillac-de-Cercles +32,2017-01-01,COM,24235,0,LEGUILLAC DE CERCLES,Léguillac-de-Cercles,Léguillac-de-Cercles,COM,24253,0,MAREUIL EN PERIGORD,Mareuil en Périgord,Mareuil en Périgord 32,2017-01-01,COM,24253,0,MAREUIL,Mareuil,Mareuil,COMD,24253,0,MAREUIL,Mareuil,Mareuil 32,2017-01-01,COM,24253,0,MAREUIL,Mareuil,Mareuil,COM,24253,0,MAREUIL EN PERIGORD,Mareuil en Périgord,Mareuil en Périgord 32,2017-01-01,COM,24258,0,MARSANEIX,Marsaneix,Marsaneix,COMD,24258,0,MARSANEIX,Marsaneix,Marsaneix 32,2017-01-01,COM,24258,0,MARSANEIX,Marsaneix,Marsaneix,COM,24312,0,SANILHAC,Sanilhac,Sanilhac -32,2017-01-01,COM,24270,0,MILHAC D AUBEROCHE,Milhac-d'Auberoche,Milhac-d'Auberoche,COMD,24270,0,MILHAC D AUBEROCHE,Milhac-d'Auberoche,Milhac-d'Auberoche 32,2017-01-01,COM,24270,0,MILHAC D AUBEROCHE,Milhac-d'Auberoche,Milhac-d'Auberoche,COM,24026,0,BASSILLAC ET AUBEROCHE,Bassillac et Auberoche,Bassillac et Auberoche +32,2017-01-01,COM,24270,0,MILHAC D AUBEROCHE,Milhac-d'Auberoche,Milhac-d'Auberoche,COMD,24270,0,MILHAC D AUBEROCHE,Milhac-d'Auberoche,Milhac-d'Auberoche 32,2017-01-01,COM,24283,0,MONSEC,Monsec,Monsec,COM,24253,0,MAREUIL EN PERIGORD,Mareuil en Périgord,Mareuil en Périgord 32,2017-01-01,COM,24283,0,MONSEC,Monsec,Monsec,COMD,24283,0,MONSEC,Monsec,Monsec -32,2017-01-01,COM,24312,0,NOTRE DAME DE SANILHAC,Notre-Dame-de-Sanilhac,Notre-Dame-de-Sanilhac,COM,24312,0,SANILHAC,Sanilhac,Sanilhac 32,2017-01-01,COM,24312,0,NOTRE DAME DE SANILHAC,Notre-Dame-de-Sanilhac,Notre-Dame-de-Sanilhac,COMD,24312,0,NOTRE DAME DE SANILHAC,Notre-Dame-de-Sanilhac,Notre-Dame-de-Sanilhac -32,2017-01-01,COM,24333,0,PONTEYRAUD,Ponteyraud,Ponteyraud,COMD,24333,0,PONTEYRAUD,Ponteyraud,Ponteyraud +32,2017-01-01,COM,24312,0,NOTRE DAME DE SANILHAC,Notre-Dame-de-Sanilhac,Notre-Dame-de-Sanilhac,COM,24312,0,SANILHAC,Sanilhac,Sanilhac 32,2017-01-01,COM,24333,0,PONTEYRAUD,Ponteyraud,Ponteyraud,COM,24216,3,JEMAYE PONTEYRAUD,Jemaye-Ponteyraud,La Jemaye-Ponteyraud +32,2017-01-01,COM,24333,0,PONTEYRAUD,Ponteyraud,Ponteyraud,COMD,24333,0,PONTEYRAUD,Ponteyraud,Ponteyraud 32,2017-01-01,COM,24344,0,PUYRENIER,Puyrenier,Puyrenier,COM,24253,0,MAREUIL EN PERIGORD,Mareuil en Périgord,Mareuil en Périgord 32,2017-01-01,COM,24344,0,PUYRENIER,Puyrenier,Puyrenier,COMD,24344,0,PUYRENIER,Puyrenier,Puyrenier +32,2017-01-01,COM,24362,0,SAINTE ALVERE SAINT LAURENT LES BATONS,Sainte-Alvère-Saint-Laurent Les Bâtons,Sainte-Alvère-Saint-Laurent Les Bâtons,COMD,24362,0,SAINTE ALVERE,Sainte-Alvère,Sainte-Alvère 32,2017-01-01,COM,24362,0,SAINTE ALVERE SAINT LAURENT LES BATONS,Sainte-Alvère-Saint-Laurent Les Bâtons,Sainte-Alvère-Saint-Laurent Les Bâtons,COM,24362,0,VAL DE LOUYRE ET CAUDEAU,Val de Louyre et Caudeau,Val de Louyre et Caudeau 32,2017-01-01,COMD,24362,0,SAINTE ALVERE,Sainte-Alvère,Sainte-Alvère,COMD,24362,0,SAINTE ALVERE,Sainte-Alvère,Sainte-Alvère 32,2017-01-01,COMD,24362,0,SAINTE ALVERE,Sainte-Alvère,Sainte-Alvère,COM,24362,0,VAL DE LOUYRE ET CAUDEAU,Val de Louyre et Caudeau,Val de Louyre et Caudeau 32,2017-01-01,COM,24368,0,SAINT ANTOINE CUMOND,Saint-Antoine-Cumond,Saint-Antoine-Cumond,COMD,24368,0,SAINT ANTOINE CUMOND,Saint-Antoine-Cumond,Saint-Antoine-Cumond 32,2017-01-01,COM,24368,0,SAINT ANTOINE CUMOND,Saint-Antoine-Cumond,Saint-Antoine-Cumond,COM,24490,0,SAINT PRIVAT EN PERIGORD,Saint Privat en Périgord,Saint Privat en Périgord -32,2017-01-01,COM,24369,0,SAINT ANTOINE D AUBEROCHE,Saint-Antoine-d'Auberoche,Saint-Antoine-d'Auberoche,COMD,24369,0,SAINT ANTOINE D AUBEROCHE,Saint-Antoine-d'Auberoche,Saint-Antoine-d'Auberoche 32,2017-01-01,COM,24369,0,SAINT ANTOINE D AUBEROCHE,Saint-Antoine-d'Auberoche,Saint-Antoine-d'Auberoche,COM,24026,0,BASSILLAC ET AUBEROCHE,Bassillac et Auberoche,Bassillac et Auberoche +32,2017-01-01,COM,24369,0,SAINT ANTOINE D AUBEROCHE,Saint-Antoine-d'Auberoche,Saint-Antoine-d'Auberoche,COMD,24369,0,SAINT ANTOINE D AUBEROCHE,Saint-Antoine-d'Auberoche,Saint-Antoine-d'Auberoche 32,2017-01-01,COMD,24435,0,SAINT LAURENT DES BATONS,Saint-Laurent-des-Bâtons,Saint-Laurent-des-Bâtons,COM,24362,0,VAL DE LOUYRE ET CAUDEAU,Val de Louyre et Caudeau,Val de Louyre et Caudeau 32,2017-01-01,COMD,24435,0,SAINT LAURENT DES BATONS,Saint-Laurent-des-Bâtons,Saint-Laurent-des-Bâtons,COMD,24435,0,SAINT LAURENT DES BATONS,Saint-Laurent-des-Bâtons,Saint-Laurent-des-Bâtons 32,2017-01-01,COMD,24439,0,SAINT LAURENT SUR MANOIRE,Saint-Laurent-sur-Manoire,Saint-Laurent-sur-Manoire,COM,24053,0,BOULAZAC ISLE MANOIRE,Boulazac Isle Manoire,Boulazac Isle Manoire 32,2017-01-01,COMD,24439,0,SAINT LAURENT SUR MANOIRE,Saint-Laurent-sur-Manoire,Saint-Laurent-sur-Manoire,COMD,24439,0,SAINT LAURENT SUR MANOIRE,Saint-Laurent-sur-Manoire,Saint-Laurent-sur-Manoire 32,2017-01-01,COM,24447,0,SAINTE MARIE DE CHIGNAC,Sainte-Marie-de-Chignac,Sainte-Marie-de-Chignac,COM,24053,0,BOULAZAC ISLE MANOIRE,Boulazac Isle Manoire,Boulazac Isle Manoire 32,2017-01-01,COM,24447,0,SAINTE MARIE DE CHIGNAC,Sainte-Marie-de-Chignac,Sainte-Marie-de-Chignac,COMD,24447,0,SAINTE MARIE DE CHIGNAC,Sainte-Marie-de-Chignac,Sainte-Marie-de-Chignac -32,2017-01-01,COM,24475,0,SAINT PANTALY D ANS,Saint-Pantaly-d'Ans,Saint-Pantaly-d'Ans,COMD,24475,0,SAINT PANTALY D ANS,Saint-Pantaly-d'Ans,Saint-Pantaly-d'Ans 32,2017-01-01,COM,24475,0,SAINT PANTALY D ANS,Saint-Pantaly-d'Ans,Saint-Pantaly-d'Ans,COM,24147,0,CUBJAC AUVEZERE VAL D ANS,Cubjac-Auvézère-Val d'Ans,Cubjac-Auvézère-Val d'Ans +32,2017-01-01,COM,24475,0,SAINT PANTALY D ANS,Saint-Pantaly-d'Ans,Saint-Pantaly-d'Ans,COMD,24475,0,SAINT PANTALY D ANS,Saint-Pantaly-d'Ans,Saint-Pantaly-d'Ans 32,2017-01-01,COM,24490,0,SAINT PRIVAT DES PRES,Saint-Privat-des-Prés,Saint-Privat-des-Prés,COM,24490,0,SAINT PRIVAT EN PERIGORD,Saint Privat en Périgord,Saint Privat en Périgord 32,2017-01-01,COM,24490,0,SAINT PRIVAT DES PRES,Saint-Privat-des-Prés,Saint-Privat-des-Prés,COMD,24490,0,SAINT PRIVAT DES PRES,Saint-Privat-des-Prés,Saint-Privat-des-Prés -32,2017-01-01,COM,24503,0,SAINT SULPICE DE MAREUIL,Saint-Sulpice-de-Mareuil,Saint-Sulpice-de-Mareuil,COMD,24503,0,SAINT SULPICE DE MAREUIL,Saint-Sulpice-de-Mareuil,Saint-Sulpice-de-Mareuil 32,2017-01-01,COM,24503,0,SAINT SULPICE DE MAREUIL,Saint-Sulpice-de-Mareuil,Saint-Sulpice-de-Mareuil,COM,24253,0,MAREUIL EN PERIGORD,Mareuil en Périgord,Mareuil en Périgord -32,2017-01-01,COM,24554,3,TOUR BLANCHE,Tour-Blanche,La Tour-Blanche,COM,24554,3,TOUR BLANCHE CERCLES,Tour-Blanche-Cercles,La Tour-Blanche-Cercles +32,2017-01-01,COM,24503,0,SAINT SULPICE DE MAREUIL,Saint-Sulpice-de-Mareuil,Saint-Sulpice-de-Mareuil,COMD,24503,0,SAINT SULPICE DE MAREUIL,Saint-Sulpice-de-Mareuil,Saint-Sulpice-de-Mareuil 32,2017-01-01,COM,24554,3,TOUR BLANCHE,Tour-Blanche,La Tour-Blanche,COMD,24554,3,TOUR BLANCHE,Tour-Blanche,La Tour-Blanche -32,2017-01-01,COM,24579,0,VIEUX MAREUIL,Vieux-Mareuil,Vieux-Mareuil,COMD,24579,0,VIEUX MAREUIL,Vieux-Mareuil,Vieux-Mareuil +32,2017-01-01,COM,24554,3,TOUR BLANCHE,Tour-Blanche,La Tour-Blanche,COM,24554,3,TOUR BLANCHE CERCLES,Tour-Blanche-Cercles,La Tour-Blanche-Cercles 32,2017-01-01,COM,24579,0,VIEUX MAREUIL,Vieux-Mareuil,Vieux-Mareuil,COM,24253,0,MAREUIL EN PERIGORD,Mareuil en Périgord,Mareuil en Périgord +32,2017-01-01,COM,24579,0,VIEUX MAREUIL,Vieux-Mareuil,Vieux-Mareuil,COMD,24579,0,VIEUX MAREUIL,Vieux-Mareuil,Vieux-Mareuil 32,2017-01-01,COM,25123,0,CHARBONNIERES LES SAPINS,Charbonnières-les-Sapins,Charbonnières-les-Sapins,COM,25222,1,ETALANS,Étalans,Étalans 32,2017-01-01,COM,25147,0,CHEMAUDIN,Chemaudin,Chemaudin,COM,25147,0,CHEMAUDIN ET VAUX,Chemaudin et Vaux,Chemaudin et Vaux 32,2017-01-01,COM,25156,0,CLERVAL,Clerval,Clerval,COM,25156,0,PAYS DE CLERVAL,Pays de Clerval,Pays de Clerval @@ -2565,8 +2395,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,25531,0,SANTOCHE,Santoche,Santoche,COM,25156,0,PAYS DE CLERVAL,Pays de Clerval,Pays de Clerval 32,2017-01-01,COM,25593,0,VAUX LES PRES,Vaux-les-Prés,Vaux-les-Prés,COM,25147,0,CHEMAUDIN ET VAUX,Chemaudin et Vaux,Chemaudin et Vaux 32,2017-01-01,COM,25610,0,VERRIERES DU GROSBOIS,Verrières-du-Grosbois,Verrières-du-Grosbois,COM,25222,1,ETALANS,Étalans,Étalans -32,2017-01-01,COM,27058,0,BERNIERES SUR SEINE,Bernières-sur-Seine,Bernières-sur-Seine,COM,27676,4,TROIS LACS,Trois Lacs,Les Trois Lacs 32,2017-01-01,COM,27058,0,BERNIERES SUR SEINE,Bernières-sur-Seine,Bernières-sur-Seine,COMD,27058,0,BERNIERES SUR SEINE,Bernières-sur-Seine,Bernières-sur-Seine +32,2017-01-01,COM,27058,0,BERNIERES SUR SEINE,Bernières-sur-Seine,Bernières-sur-Seine,COM,27676,4,TROIS LACS,Trois Lacs,Les Trois Lacs 32,2017-01-01,COM,27062,0,BERVILLE EN ROUMOIS,Berville-en-Roumois,Berville-en-Roumois,COM,27062,4,MONTS DU ROUMOIS,Monts du Roumois,Les Monts du Roumois 32,2017-01-01,COM,27062,0,BERVILLE EN ROUMOIS,Berville-en-Roumois,Berville-en-Roumois,COMD,27062,0,BERVILLE EN ROUMOIS,Berville-en-Roumois,Berville-en-Roumois 32,2017-01-01,COM,27089,0,BOSC RENOULT EN ROUMOIS,Bosc-Renoult-en-Roumois,Bosc-Renoult-en-Roumois,COMD,27089,0,BOSC RENOULT EN ROUMOIS,Bosc-Renoult-en-Roumois,Bosc-Renoult-en-Roumois @@ -2575,26 +2405,26 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,27090,2,BOSC ROGER EN ROUMOIS,Bosc-Roger-en-Roumois,Le Bosc-Roger-en-Roumois,COM,27090,0,BOSROUMOIS,Bosroumois,Bosroumois 32,2017-01-01,COM,27092,0,BOSGUERARD DE MARCOUVILLE,Bosguérard-de-Marcouville,Bosguérard-de-Marcouville,COM,27062,4,MONTS DU ROUMOIS,Monts du Roumois,Les Monts du Roumois 32,2017-01-01,COM,27092,0,BOSGUERARD DE MARCOUVILLE,Bosguérard-de-Marcouville,Bosguérard-de-Marcouville,COMD,27092,0,BOSGUERARD DE MARCOUVILLE,Bosguérard-de-Marcouville,Bosguérard-de-Marcouville -32,2017-01-01,COM,27093,0,BOSNORMAND,Bosnormand,Bosnormand,COMD,27093,0,BOSNORMAND,Bosnormand,Bosnormand 32,2017-01-01,COM,27093,0,BOSNORMAND,Bosnormand,Bosnormand,COM,27090,0,BOSROUMOIS,Bosroumois,Bosroumois +32,2017-01-01,COM,27093,0,BOSNORMAND,Bosnormand,Bosnormand,COMD,27093,0,BOSNORMAND,Bosnormand,Bosnormand 32,2017-01-01,COM,27131,0,CARSIX,Carsix,Carsix,COMD,27131,0,CARSIX,Carsix,Carsix 32,2017-01-01,COM,27131,0,CARSIX,Carsix,Carsix,COM,27425,0,NASSANDRES SUR RISLE,Nassandres sur Risle,Nassandres sur Risle 32,2017-01-01,COM,27150,3,CHAPELLE REANVILLE,Chapelle-Réanville,La Chapelle-Réanville,COMD,27150,3,CHAPELLE REANVILLE,Chapelle-Réanville,La Chapelle-Réanville 32,2017-01-01,COM,27150,3,CHAPELLE REANVILLE,Chapelle-Réanville,La Chapelle-Réanville,COM,27554,3,CHAPELLE LONGUEVILLE,Chapelle-Longueville,La Chapelle-Longueville 32,2017-01-01,COM,27253,0,FONTAINE LA SORET,Fontaine-la-Soret,Fontaine-la-Soret,COMD,27253,0,FONTAINE LA SORET,Fontaine-la-Soret,Fontaine-la-Soret 32,2017-01-01,COM,27253,0,FONTAINE LA SORET,Fontaine-la-Soret,Fontaine-la-Soret,COM,27425,0,NASSANDRES SUR RISLE,Nassandres sur Risle,Nassandres sur Risle -32,2017-01-01,COM,27265,0,FRANCHEVILLE,Francheville,Francheville,COM,27679,0,VERNEUIL D AVRE ET D ITON,Verneuil d'Avre et d'Iton,Verneuil d'Avre et d'Iton 32,2017-01-01,COM,27265,0,FRANCHEVILLE,Francheville,Francheville,COMD,27265,0,FRANCHEVILLE,Francheville,Francheville +32,2017-01-01,COM,27265,0,FRANCHEVILLE,Francheville,Francheville,COM,27679,0,VERNEUIL D AVRE ET D ITON,Verneuil d'Avre et d'Iton,Verneuil d'Avre et d'Iton 32,2017-01-01,COM,27274,0,GAILLARDBOIS CRESSENVILLE,Gaillardbois-Cressenville,Gaillardbois-Cressenville,COMD,27274,0,GAILLARDBOIS CRESSENVILLE,Gaillardbois-Cressenville,Gaillardbois-Cressenville 32,2017-01-01,COM,27274,0,GAILLARDBOIS CRESSENVILLE,Gaillardbois-Cressenville,Gaillardbois-Cressenville,COM,27294,0,VAL D ORGER,Val d'Orger,Val d'Orger -32,2017-01-01,COM,27294,0,GRAINVILLE,Grainville,Grainville,COM,27294,0,VAL D ORGER,Val d'Orger,Val d'Orger 32,2017-01-01,COM,27294,0,GRAINVILLE,Grainville,Grainville,COMD,27294,0,GRAINVILLE,Grainville,Grainville -32,2017-01-01,COM,27344,0,HOULBEC PRES LE GROS THEIL,Houlbec-près-le-Gros-Theil,Houlbec-près-le-Gros-Theil,COMD,27344,0,HOULBEC PRES LE GROS THEIL,Houlbec-près-le-Gros-Theil,Houlbec-près-le-Gros-Theil +32,2017-01-01,COM,27294,0,GRAINVILLE,Grainville,Grainville,COM,27294,0,VAL D ORGER,Val d'Orger,Val d'Orger 32,2017-01-01,COM,27344,0,HOULBEC PRES LE GROS THEIL,Houlbec-près-le-Gros-Theil,Houlbec-près-le-Gros-Theil,COM,27062,4,MONTS DU ROUMOIS,Monts du Roumois,Les Monts du Roumois +32,2017-01-01,COM,27344,0,HOULBEC PRES LE GROS THEIL,Houlbec-près-le-Gros-Theil,Houlbec-près-le-Gros-Theil,COMD,27344,0,HOULBEC PRES LE GROS THEIL,Houlbec-près-le-Gros-Theil,Houlbec-près-le-Gros-Theil 32,2017-01-01,COM,27412,0,MONTAURE,Montaure,Montaure,COM,27412,0,TERRES DE BORD,Terres de Bord,Terres de Bord 32,2017-01-01,COM,27412,0,MONTAURE,Montaure,Montaure,COMD,27412,0,MONTAURE,Montaure,Montaure -32,2017-01-01,COM,27425,0,NASSANDRES,Nassandres,Nassandres,COMD,27425,0,NASSANDRES,Nassandres,Nassandres 32,2017-01-01,COM,27425,0,NASSANDRES,Nassandres,Nassandres,COM,27425,0,NASSANDRES SUR RISLE,Nassandres sur Risle,Nassandres sur Risle +32,2017-01-01,COM,27425,0,NASSANDRES,Nassandres,Nassandres,COMD,27425,0,NASSANDRES,Nassandres,Nassandres 32,2017-01-01,COM,27448,0,PACY SUR EURE,Pacy-sur-Eure,Pacy-sur-Eure,COMD,27448,0,PACY SUR EURE,Pacy-sur-Eure,Pacy-sur-Eure 32,2017-01-01,COM,27448,0,PACY SUR EURE,Pacy-sur-Eure,Pacy-sur-Eure,COM,27448,0,PACY SUR EURE,Pacy-sur-Eure,Pacy-sur-Eure 32,2017-01-01,COM,27452,0,PERRIERS LA CAMPAGNE,Perriers-la-Campagne,Perriers-la-Campagne,COM,27425,0,NASSANDRES SUR RISLE,Nassandres sur Risle,Nassandres sur Risle @@ -2603,74 +2433,74 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,27510,0,SAINT AQUILIN DE PACY,Saint-Aquilin-de-Pacy,Saint-Aquilin-de-Pacy,COMD,27510,0,SAINT AQUILIN DE PACY,Saint-Aquilin-de-Pacy,Saint-Aquilin-de-Pacy 32,2017-01-01,COM,27554,0,SAINT JUST,Saint-Just,Saint-Just,COMD,27554,0,SAINT JUST,Saint-Just,Saint-Just 32,2017-01-01,COM,27554,0,SAINT JUST,Saint-Just,Saint-Just,COM,27554,3,CHAPELLE LONGUEVILLE,Chapelle-Longueville,La Chapelle-Longueville -32,2017-01-01,COM,27588,0,SAINT PIERRE D AUTILS,Saint-Pierre-d'Autils,Saint-Pierre-d'Autils,COMD,27588,0,SAINT PIERRE D AUTILS,Saint-Pierre-d'Autils,Saint-Pierre-d'Autils 32,2017-01-01,COM,27588,0,SAINT PIERRE D AUTILS,Saint-Pierre-d'Autils,Saint-Pierre-d'Autils,COM,27554,3,CHAPELLE LONGUEVILLE,Chapelle-Longueville,La Chapelle-Longueville -32,2017-01-01,COM,27626,0,THEILLEMENT,Theillement,Theillement,COMD,27626,0,THEILLEMENT,Theillement,Theillement +32,2017-01-01,COM,27588,0,SAINT PIERRE D AUTILS,Saint-Pierre-d'Autils,Saint-Pierre-d'Autils,COMD,27588,0,SAINT PIERRE D AUTILS,Saint-Pierre-d'Autils,Saint-Pierre-d'Autils 32,2017-01-01,COM,27626,0,THEILLEMENT,Theillement,Theillement,COM,27089,0,THENOUVILLE,Thénouville,Thénouville +32,2017-01-01,COM,27626,0,THEILLEMENT,Theillement,Theillement,COMD,27626,0,THEILLEMENT,Theillement,Theillement 32,2017-01-01,COM,27647,0,TOSNY,Tosny,Tosny,COMD,27647,0,TOSNY,Tosny,Tosny 32,2017-01-01,COM,27647,0,TOSNY,Tosny,Tosny,COM,27676,4,TROIS LACS,Trois Lacs,Les Trois Lacs -32,2017-01-01,COM,27648,0,TOSTES,Tostes,Tostes,COMD,27648,0,TOSTES,Tostes,Tostes 32,2017-01-01,COM,27648,0,TOSTES,Tostes,Tostes,COM,27412,0,TERRES DE BORD,Terres de Bord,Terres de Bord -32,2017-01-01,COM,27676,0,VENABLES,Venables,Venables,COMD,27676,0,VENABLES,Venables,Venables +32,2017-01-01,COM,27648,0,TOSTES,Tostes,Tostes,COMD,27648,0,TOSTES,Tostes,Tostes 32,2017-01-01,COM,27676,0,VENABLES,Venables,Venables,COM,27676,4,TROIS LACS,Trois Lacs,Les Trois Lacs -32,2017-01-01,COM,27679,0,VERNEUIL SUR AVRE,Verneuil-sur-Avre,Verneuil-sur-Avre,COM,27679,0,VERNEUIL D AVRE ET D ITON,Verneuil d'Avre et d'Iton,Verneuil d'Avre et d'Iton +32,2017-01-01,COM,27676,0,VENABLES,Venables,Venables,COMD,27676,0,VENABLES,Venables,Venables 32,2017-01-01,COM,27679,0,VERNEUIL SUR AVRE,Verneuil-sur-Avre,Verneuil-sur-Avre,COMD,27679,0,VERNEUIL SUR AVRE,Verneuil-sur-Avre,Verneuil-sur-Avre +32,2017-01-01,COM,27679,0,VERNEUIL SUR AVRE,Verneuil-sur-Avre,Verneuil-sur-Avre,COM,27679,0,VERNEUIL D AVRE ET D ITON,Verneuil d'Avre et d'Iton,Verneuil d'Avre et d'Iton 32,2017-01-01,COM,28012,1,ARROU,Arrou,Arrou,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou 32,2017-01-01,COM,28012,1,ARROU,Arrou,Arrou,COMD,28012,1,ARROU,Arrou,Arrou 32,2017-01-01,COM,28017,1,AUTHEUIL,Autheuil,Autheuil,COMD,28017,1,AUTHEUIL,Autheuil,Autheuil 32,2017-01-01,COM,28017,1,AUTHEUIL,Autheuil,Autheuil,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières -32,2017-01-01,COM,28044,0,BOISGASSON,Boisgasson,Boisgasson,COMD,28044,0,BOISGASSON,Boisgasson,Boisgasson 32,2017-01-01,COM,28044,0,BOISGASSON,Boisgasson,Boisgasson,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou +32,2017-01-01,COM,28044,0,BOISGASSON,Boisgasson,Boisgasson,COMD,28044,0,BOISGASSON,Boisgasson,Boisgasson 32,2017-01-01,COM,28083,0,CHARRAY,Charray,Charray,COMD,28083,0,CHARRAY,Charray,Charray 32,2017-01-01,COM,28083,0,CHARRAY,Charray,Charray,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières 32,2017-01-01,COM,28093,0,CHATILLON EN DUNOIS,Châtillon-en-Dunois,Châtillon-en-Dunois,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou 32,2017-01-01,COM,28093,0,CHATILLON EN DUNOIS,Châtillon-en-Dunois,Châtillon-en-Dunois,COMD,28093,0,CHATILLON EN DUNOIS,Châtillon-en-Dunois,Châtillon-en-Dunois -32,2017-01-01,COM,28101,0,CIVRY,Civry,Civry,COM,28330,0,VILLEMAURY,Villemaury,Villemaury 32,2017-01-01,COM,28101,0,CIVRY,Civry,Civry,COMD,28101,0,CIVRY,Civry,Civry +32,2017-01-01,COM,28101,0,CIVRY,Civry,Civry,COM,28330,0,VILLEMAURY,Villemaury,Villemaury 32,2017-01-01,COM,28103,0,CLOYES SUR LE LOIR,Cloyes-sur-le-Loir,Cloyes-sur-le-Loir,COMD,28103,0,CLOYES SUR LE LOIR,Cloyes-sur-le-Loir,Cloyes-sur-le-Loir 32,2017-01-01,COM,28103,0,CLOYES SUR LE LOIR,Cloyes-sur-le-Loir,Cloyes-sur-le-Loir,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières -32,2017-01-01,COM,28115,0,COURTALAIN,Courtalain,Courtalain,COMD,28115,0,COURTALAIN,Courtalain,Courtalain 32,2017-01-01,COM,28115,0,COURTALAIN,Courtalain,Courtalain,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou -32,2017-01-01,COM,28133,0,DOUY,Douy,Douy,COMD,28133,0,DOUY,Douy,Douy +32,2017-01-01,COM,28115,0,COURTALAIN,Courtalain,Courtalain,COMD,28115,0,COURTALAIN,Courtalain,Courtalain 32,2017-01-01,COM,28133,0,DOUY,Douy,Douy,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières -32,2017-01-01,COM,28150,3,FERTE VILLENEUIL,Ferté-Villeneuil,La Ferté-Villeneuil,COMD,28150,3,FERTE VILLENEUIL,Ferté-Villeneuil,La Ferté-Villeneuil +32,2017-01-01,COM,28133,0,DOUY,Douy,Douy,COMD,28133,0,DOUY,Douy,Douy 32,2017-01-01,COM,28150,3,FERTE VILLENEUIL,Ferté-Villeneuil,La Ferté-Villeneuil,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières +32,2017-01-01,COM,28150,3,FERTE VILLENEUIL,Ferté-Villeneuil,La Ferté-Villeneuil,COMD,28150,3,FERTE VILLENEUIL,Ferté-Villeneuil,La Ferté-Villeneuil 32,2017-01-01,COM,28204,0,LANGEY,Langey,Langey,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou 32,2017-01-01,COM,28204,0,LANGEY,Langey,Langey,COMD,28204,0,LANGEY,Langey,Langey -32,2017-01-01,COM,28224,0,LUTZ EN DUNOIS,Lutz-en-Dunois,Lutz-en-Dunois,COM,28330,0,VILLEMAURY,Villemaury,Villemaury 32,2017-01-01,COM,28224,0,LUTZ EN DUNOIS,Lutz-en-Dunois,Lutz-en-Dunois,COMD,28224,0,LUTZ EN DUNOIS,Lutz-en-Dunois,Lutz-en-Dunois -32,2017-01-01,COM,28241,2,MEE,Mée,Le Mée,COMD,28241,2,MEE,Mée,Le Mée +32,2017-01-01,COM,28224,0,LUTZ EN DUNOIS,Lutz-en-Dunois,Lutz-en-Dunois,COM,28330,0,VILLEMAURY,Villemaury,Villemaury 32,2017-01-01,COM,28241,2,MEE,Mée,Le Mée,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières +32,2017-01-01,COM,28241,2,MEE,Mée,Le Mée,COMD,28241,2,MEE,Mée,Le Mée 32,2017-01-01,COM,28262,0,MONTIGNY LE GANNELON,Montigny-le-Gannelon,Montigny-le-Gannelon,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières 32,2017-01-01,COM,28262,0,MONTIGNY LE GANNELON,Montigny-le-Gannelon,Montigny-le-Gannelon,COMD,28262,0,MONTIGNY LE GANNELON,Montigny-le-Gannelon,Montigny-le-Gannelon -32,2017-01-01,COM,28295,1,OZOIR LE BREUIL,Ozoir-le-Breuil,Ozoir-le-Breuil,COM,28330,0,VILLEMAURY,Villemaury,Villemaury 32,2017-01-01,COM,28295,1,OZOIR LE BREUIL,Ozoir-le-Breuil,Ozoir-le-Breuil,COMD,28295,1,OZOIR LE BREUIL,Ozoir-le-Breuil,Ozoir-le-Breuil +32,2017-01-01,COM,28295,1,OZOIR LE BREUIL,Ozoir-le-Breuil,Ozoir-le-Breuil,COM,28330,0,VILLEMAURY,Villemaury,Villemaury 32,2017-01-01,COM,28318,0,ROMILLY SUR AIGRE,Romilly-sur-Aigre,Romilly-sur-Aigre,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières 32,2017-01-01,COM,28318,0,ROMILLY SUR AIGRE,Romilly-sur-Aigre,Romilly-sur-Aigre,COMD,28318,0,ROMILLY SUR AIGRE,Romilly-sur-Aigre,Romilly-sur-Aigre -32,2017-01-01,COM,28330,0,SAINT CLOUD EN DUNOIS,Saint-Cloud-en-Dunois,Saint-Cloud-en-Dunois,COMD,28330,0,SAINT CLOUD EN DUNOIS,Saint-Cloud-en-Dunois,Saint-Cloud-en-Dunois 32,2017-01-01,COM,28330,0,SAINT CLOUD EN DUNOIS,Saint-Cloud-en-Dunois,Saint-Cloud-en-Dunois,COM,28330,0,VILLEMAURY,Villemaury,Villemaury -32,2017-01-01,COM,28340,0,SAINT HILAIRE SUR YERRE,Saint-Hilaire-sur-Yerre,Saint-Hilaire-sur-Yerre,COMD,28340,0,SAINT HILAIRE SUR YERRE,Saint-Hilaire-sur-Yerre,Saint-Hilaire-sur-Yerre +32,2017-01-01,COM,28330,0,SAINT CLOUD EN DUNOIS,Saint-Cloud-en-Dunois,Saint-Cloud-en-Dunois,COMD,28330,0,SAINT CLOUD EN DUNOIS,Saint-Cloud-en-Dunois,Saint-Cloud-en-Dunois 32,2017-01-01,COM,28340,0,SAINT HILAIRE SUR YERRE,Saint-Hilaire-sur-Yerre,Saint-Hilaire-sur-Yerre,COM,28103,0,CLOYES LES TROIS RIVIERES,Cloyes-les-Trois-Rivières,Cloyes-les-Trois-Rivières +32,2017-01-01,COM,28340,0,SAINT HILAIRE SUR YERRE,Saint-Hilaire-sur-Yerre,Saint-Hilaire-sur-Yerre,COMD,28340,0,SAINT HILAIRE SUR YERRE,Saint-Hilaire-sur-Yerre,Saint-Hilaire-sur-Yerre 32,2017-01-01,COM,28356,0,SAINT PELLERIN,Saint-Pellerin,Saint-Pellerin,COM,28012,0,COMMUNE NOUVELLE D ARROU,Commune nouvelle d'Arrou,Commune nouvelle d'Arrou 32,2017-01-01,COM,28356,0,SAINT PELLERIN,Saint-Pellerin,Saint-Pellerin,COMD,28356,0,SAINT PELLERIN,Saint-Pellerin,Saint-Pellerin 32,2017-01-01,COM,29021,0,BRIGNOGAN PLAGES,Brignogan-Plages,Brignogan-Plages,COMD,29021,0,BRIGNOGAN PLAGES,Brignogan-Plages,Brignogan-Plages 32,2017-01-01,COM,29021,0,BRIGNOGAN PLAGES,Brignogan-Plages,Brignogan-Plages,COM,29021,0,PLOUNEOUR BRIGNOGAN PLAGES,Plounéour-Brignogan-plages,Plounéour-Brignogan-plages 32,2017-01-01,COM,29076,0,GUIPRONVEL,Guipronvel,Guipronvel,COMD,29076,0,GUIPRONVEL,Guipronvel,Guipronvel 32,2017-01-01,COM,29076,0,GUIPRONVEL,Guipronvel,Guipronvel,COM,29076,0,MILIZAC GUIPRONVEL,Milizac-Guipronvel,Milizac-Guipronvel -32,2017-01-01,COM,29149,0,MILIZAC,Milizac,Milizac,COMD,29149,0,MILIZAC,Milizac,Milizac 32,2017-01-01,COM,29149,0,MILIZAC,Milizac,Milizac,COM,29076,0,MILIZAC GUIPRONVEL,Milizac-Guipronvel,Milizac-Guipronvel -32,2017-01-01,COM,29203,0,PLOUNEOUR TREZ,Plounéour-Trez,Plounéour-Trez,COMD,29203,0,PLOUNEOUR TREZ,Plounéour-Trez,Plounéour-Trez +32,2017-01-01,COM,29149,0,MILIZAC,Milizac,Milizac,COMD,29149,0,MILIZAC,Milizac,Milizac 32,2017-01-01,COM,29203,0,PLOUNEOUR TREZ,Plounéour-Trez,Plounéour-Trez,COM,29021,0,PLOUNEOUR BRIGNOGAN PLAGES,Plounéour-Brignogan-plages,Plounéour-Brignogan-plages -32,2017-01-01,COM,31307,0,LUNAX,Lunax,Lunax,COM,31412,0,PEGUILHAN,Péguilhan,Péguilhan +32,2017-01-01,COM,29203,0,PLOUNEOUR TREZ,Plounéour-Trez,Plounéour-Trez,COMD,29203,0,PLOUNEOUR TREZ,Plounéour-Trez,Plounéour-Trez 32,2017-01-01,COM,31307,0,LUNAX,Lunax,Lunax,COMD,31307,0,LUNAX,Lunax,Lunax +32,2017-01-01,COM,31307,0,LUNAX,Lunax,Lunax,COM,31412,0,PEGUILHAN,Péguilhan,Péguilhan 32,2017-01-01,COM,31412,0,PEGUILHAN,Péguilhan,Péguilhan,COM,31412,0,PEGUILHAN,Péguilhan,Péguilhan 32,2017-01-01,COM,31412,0,PEGUILHAN,Péguilhan,Péguilhan,COMD,31412,0,PEGUILHAN,Péguilhan,Péguilhan 32,2017-01-01,COM,33091,0,CANTENAC,Cantenac,Cantenac,COMD,33091,0,CANTENAC,Cantenac,Cantenac 32,2017-01-01,COM,33091,0,CANTENAC,Cantenac,Cantenac,COM,33268,0,MARGAUX CANTENAC,Margaux-Cantenac,Margaux-Cantenac -32,2017-01-01,COM,33106,0,CASTETS EN DORTHE,Castets-en-Dorthe,Castets-en-Dorthe,COM,33106,0,CASTETS ET CASTILLON,Castets et Castillon,Castets et Castillon 32,2017-01-01,COM,33106,0,CASTETS EN DORTHE,Castets-en-Dorthe,Castets-en-Dorthe,COMD,33106,0,CASTETS EN DORTHE,Castets-en-Dorthe,Castets-en-Dorthe -32,2017-01-01,COM,33107,0,CASTILLON DE CASTETS,Castillon-de-Castets,Castillon-de-Castets,COMD,33107,0,CASTILLON DE CASTETS,Castillon-de-Castets,Castillon-de-Castets +32,2017-01-01,COM,33106,0,CASTETS EN DORTHE,Castets-en-Dorthe,Castets-en-Dorthe,COM,33106,0,CASTETS ET CASTILLON,Castets et Castillon,Castets et Castillon 32,2017-01-01,COM,33107,0,CASTILLON DE CASTETS,Castillon-de-Castets,Castillon-de-Castets,COM,33106,0,CASTETS ET CASTILLON,Castets et Castillon,Castets et Castillon +32,2017-01-01,COM,33107,0,CASTILLON DE CASTETS,Castillon-de-Castets,Castillon-de-Castets,COMD,33107,0,CASTILLON DE CASTETS,Castillon-de-Castets,Castillon-de-Castets 32,2017-01-01,COM,33268,0,MARGAUX,Margaux,Margaux,COM,33268,0,MARGAUX CANTENAC,Margaux-Cantenac,Margaux-Cantenac 32,2017-01-01,COM,35048,0,CAMPEL,Campel,Campel,COMD,35048,0,CAMPEL,Campel,Campel 32,2017-01-01,COM,35048,0,CAMPEL,Campel,Campel,COM,35168,0,VAL D ANAST,Val d'Anast,Val d'Anast @@ -2682,18 +2512,18 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,35168,0,MAURE DE BRETAGNE,Maure-de-Bretagne,Maure-de-Bretagne,COMD,35168,0,MAURE DE BRETAGNE,Maure-de-Bretagne,Maure-de-Bretagne 32,2017-01-01,COM,35191,0,MONTOURS,Montours,Montours,COM,35191,4,PORTES DU COGLAIS,Portes du Coglais,Les Portes du Coglais 32,2017-01-01,COM,35191,0,MONTOURS,Montours,Montours,COMD,35191,0,MONTOURS,Montours,Montours -32,2017-01-01,COM,35209,1,OSSE,Ossé,Ossé,COMD,35209,1,OSSE,Ossé,Ossé 32,2017-01-01,COM,35209,1,OSSE,Ossé,Ossé,COM,35069,0,CHATEAUGIRON,Châteaugiron,Châteaugiron -32,2017-01-01,COM,35254,0,SAINT AUBIN DU PAVAIL,Saint-Aubin-du-Pavail,Saint-Aubin-du-Pavail,COMD,35254,0,SAINT AUBIN DU PAVAIL,Saint-Aubin-du-Pavail,Saint-Aubin-du-Pavail +32,2017-01-01,COM,35209,1,OSSE,Ossé,Ossé,COMD,35209,1,OSSE,Ossé,Ossé 32,2017-01-01,COM,35254,0,SAINT AUBIN DU PAVAIL,Saint-Aubin-du-Pavail,Saint-Aubin-du-Pavail,COM,35069,0,CHATEAUGIRON,Châteaugiron,Châteaugiron -32,2017-01-01,COM,35257,0,SAINT BRICE EN COGLES,Saint-Brice-en-Coglès,Saint-Brice-en-Coglès,COMD,35257,0,SAINT BRICE EN COGLES,Saint-Brice-en-Coglès,Saint-Brice-en-Coglès +32,2017-01-01,COM,35254,0,SAINT AUBIN DU PAVAIL,Saint-Aubin-du-Pavail,Saint-Aubin-du-Pavail,COMD,35254,0,SAINT AUBIN DU PAVAIL,Saint-Aubin-du-Pavail,Saint-Aubin-du-Pavail 32,2017-01-01,COM,35257,0,SAINT BRICE EN COGLES,Saint-Brice-en-Coglès,Saint-Brice-en-Coglès,COM,35257,0,MAEN ROCH,Maen Roch,Maen Roch -32,2017-01-01,COM,35267,0,SAINT ETIENNE EN COGLES,Saint-Étienne-en-Coglès,Saint-Étienne-en-Coglès,COMD,35267,0,SAINT ETIENNE EN COGLES,Saint-Étienne-en-Coglès,Saint-Étienne-en-Coglès +32,2017-01-01,COM,35257,0,SAINT BRICE EN COGLES,Saint-Brice-en-Coglès,Saint-Brice-en-Coglès,COMD,35257,0,SAINT BRICE EN COGLES,Saint-Brice-en-Coglès,Saint-Brice-en-Coglès 32,2017-01-01,COM,35267,0,SAINT ETIENNE EN COGLES,Saint-Étienne-en-Coglès,Saint-Étienne-en-Coglès,COM,35257,0,MAEN ROCH,Maen Roch,Maen Roch +32,2017-01-01,COM,35267,0,SAINT ETIENNE EN COGLES,Saint-Étienne-en-Coglès,Saint-Étienne-en-Coglès,COMD,35267,0,SAINT ETIENNE EN COGLES,Saint-Étienne-en-Coglès,Saint-Étienne-en-Coglès 32,2017-01-01,COM,35323,3,SELLE EN COGLES,Selle-en-Coglès,La Selle-en-Coglès,COM,35191,4,PORTES DU COGLAIS,Portes du Coglais,Les Portes du Coglais 32,2017-01-01,COM,35323,3,SELLE EN COGLES,Selle-en-Coglès,La Selle-en-Coglès,COMD,35323,3,SELLE EN COGLES,Selle-en-Coglès,La Selle-en-Coglès -32,2017-01-01,COM,37021,0,BEAUMONT LA RONCE,Beaumont-la-Ronce,Beaumont-la-Ronce,COMD,37021,0,BEAUMONT LA RONCE,Beaumont-la-Ronce,Beaumont-la-Ronce 32,2017-01-01,COM,37021,0,BEAUMONT LA RONCE,Beaumont-la-Ronce,Beaumont-la-Ronce,COM,37021,0,BEAUMONT LOUESTAULT,Beaumont-Louestault,Beaumont-Louestault +32,2017-01-01,COM,37021,0,BEAUMONT LA RONCE,Beaumont-la-Ronce,Beaumont-la-Ronce,COMD,37021,0,BEAUMONT LA RONCE,Beaumont-la-Ronce,Beaumont-la-Ronce 32,2017-01-01,COM,37102,4,ESSARDS,Essards,Les Essards,COMD,37102,4,ESSARDS,Essards,Les Essards 32,2017-01-01,COM,37102,4,ESSARDS,Essards,Les Essards,COM,37123,0,LANGEAIS,Langeais,Langeais 32,2017-01-01,COM,37120,1,INGRANDES DE TOURAINE,Ingrandes-de-Touraine,Ingrandes-de-Touraine,COMD,37120,1,INGRANDES DE TOURAINE,Ingrandes-de-Touraine,Ingrandes-de-Touraine @@ -2701,30 +2531,31 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,37123,0,LANGEAIS,Langeais,Langeais,COM,37123,0,LANGEAIS,Langeais,Langeais 32,2017-01-01,COM,37135,0,LOUESTAULT,Louestault,Louestault,COM,37021,0,BEAUMONT LOUESTAULT,Beaumont-Louestault,Beaumont-Louestault 32,2017-01-01,COM,37135,0,LOUESTAULT,Louestault,Louestault,COMD,37135,0,LOUESTAULT,Louestault,Louestault -32,2017-01-01,COM,37227,0,SAINT MICHEL SUR LOIRE,Saint-Michel-sur-Loire,Saint-Michel-sur-Loire,COM,37232,0,COTEAUX SUR LOIRE,Coteaux-sur-Loire,Coteaux-sur-Loire 32,2017-01-01,COM,37227,0,SAINT MICHEL SUR LOIRE,Saint-Michel-sur-Loire,Saint-Michel-sur-Loire,COMD,37227,0,SAINT MICHEL SUR LOIRE,Saint-Michel-sur-Loire,Saint-Michel-sur-Loire +32,2017-01-01,COM,37227,0,SAINT MICHEL SUR LOIRE,Saint-Michel-sur-Loire,Saint-Michel-sur-Loire,COM,37232,0,COTEAUX SUR LOIRE,Coteaux-sur-Loire,Coteaux-sur-Loire 32,2017-01-01,COM,37232,0,SAINT PATRICE,Saint-Patrice,Saint-Patrice,COMD,37232,0,SAINT PATRICE,Saint-Patrice,Saint-Patrice 32,2017-01-01,COM,37232,0,SAINT PATRICE,Saint-Patrice,Saint-Patrice,COM,37232,0,COTEAUX SUR LOIRE,Coteaux-sur-Loire,Coteaux-sur-Loire -32,2017-01-01,COM,38014,1,ARANDON,Arandon,Arandon,COM,38297,1,ARANDON PASSINS,Arandon-Passins,Arandon-Passins 32,2017-01-01,COM,38014,1,ARANDON,Arandon,Arandon,COMD,38014,1,ARANDON,Arandon,Arandon -32,2017-01-01,COM,38125,0,CORDEAC,Cordéac,Cordéac,COM,38456,0,CHATEL EN TRIEVES,Châtel-en-Trièves,Châtel-en-Trièves +32,2017-01-01,COM,38014,1,ARANDON,Arandon,Arandon,COM,38297,1,ARANDON PASSINS,Arandon-Passins,Arandon-Passins 32,2017-01-01,COM,38125,0,CORDEAC,Cordéac,Cordéac,COMD,38125,0,CORDEAC,Cordéac,Cordéac +32,2017-01-01,COM,38125,0,CORDEAC,Cordéac,Cordéac,COM,38456,0,CHATEL EN TRIEVES,Châtel-en-Trièves,Châtel-en-Trièves 32,2017-01-01,COM,38253,0,MONT DE LANS,Mont-de-Lans,Mont-de-Lans,COMD,38253,0,MONT DE LANS,Mont-de-Lans,Mont-de-Lans 32,2017-01-01,COM,38253,0,MONT DE LANS,Mont-de-Lans,Mont-de-Lans,COM,38253,4,DEUX ALPES,Deux Alpes,Les Deux Alpes -32,2017-01-01,COM,38292,0,PALADRU,Paladru,Paladru,COMD,38292,0,PALADRU,Paladru,Paladru 32,2017-01-01,COM,38292,0,PALADRU,Paladru,Paladru,COM,38292,0,VILLAGES DU LAC DE PALADRU,Villages du Lac de Paladru,Villages du Lac de Paladru -32,2017-01-01,COM,38297,0,PASSINS,Passins,Passins,COMD,38297,0,PASSINS,Passins,Passins +32,2017-01-01,COM,38292,0,PALADRU,Paladru,Paladru,COMD,38292,0,PALADRU,Paladru,Paladru 32,2017-01-01,COM,38297,0,PASSINS,Passins,Passins,COM,38297,1,ARANDON PASSINS,Arandon-Passins,Arandon-Passins +32,2017-01-01,COM,38297,0,PASSINS,Passins,Passins,COMD,38297,0,PASSINS,Passins,Passins 32,2017-01-01,COM,38305,2,PIN,Pin,Le Pin,COM,38292,0,VILLAGES DU LAC DE PALADRU,Villages du Lac de Paladru,Villages du Lac de Paladru 32,2017-01-01,COM,38305,2,PIN,Pin,Le Pin,COMD,38305,2,PIN,Pin,Le Pin 32,2017-01-01,COM,38312,0,POMMIERS LA PLACETTE,Pommiers-la-Placette,Pommiers-la-Placette,COM,38407,3,SURE EN CHARTREUSE,Sure en Chartreuse,La Sure en Chartreuse 32,2017-01-01,COM,38407,0,SAINT JULIEN DE RAZ,Saint-Julien-de-Raz,Saint-Julien-de-Raz,COM,38407,3,SURE EN CHARTREUSE,Sure en Chartreuse,La Sure en Chartreuse -32,2017-01-01,COM,38456,0,SAINT SEBASTIEN,Saint-Sébastien,Saint-Sébastien,COM,38456,0,CHATEL EN TRIEVES,Châtel-en-Trièves,Châtel-en-Trièves 32,2017-01-01,COM,38456,0,SAINT SEBASTIEN,Saint-Sébastien,Saint-Sébastien,COMD,38456,0,SAINT SEBASTIEN,Saint-Sébastien,Saint-Sébastien +32,2017-01-01,COM,38456,0,SAINT SEBASTIEN,Saint-Sébastien,Saint-Sébastien,COM,38456,0,CHATEL EN TRIEVES,Châtel-en-Trièves,Châtel-en-Trièves 32,2017-01-01,COM,38534,0,VENOSC,Vénosc,Vénosc,COM,38253,4,DEUX ALPES,Deux Alpes,Les Deux Alpes 32,2017-01-01,COM,38534,0,VENOSC,Vénosc,Vénosc,COMD,38534,0,VENOSC,Vénosc,Vénosc 32,2017-01-01,COM,39018,1,AROMAS,Aromas,Aromas,COM,39018,1,AROMAS,Aromas,Aromas 32,2017-01-01,COM,39018,1,AROMAS,Aromas,Aromas,COMD,39018,1,AROMAS,Aromas,Aromas +35,2017-01-01,COMD,39018,1,AROMAS,Aromas,Aromas,COM,39018,1,AROMAS,Aromas,Aromas 32,2017-01-01,COM,39064,0,BONNAUD,Bonnaud,Bonnaud,COMD,39064,0,BONNAUD,Bonnaud,Bonnaud 32,2017-01-01,COM,39064,0,BONNAUD,Bonnaud,Bonnaud,COM,39576,0,VAL SONNETTE,Val-Sonnette,Val-Sonnette 32,2017-01-01,COM,39069,0,BOURCIA,Bourcia,Bourcia,COMD,39069,0,BOURCIA,Bourcia,Bourcia @@ -2734,100 +2565,105 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,39158,0,COISIA,Coisia,Coisia,COM,39530,0,THOIRETTE COISIA,Thoirette-Coisia,Thoirette-Coisia 32,2017-01-01,COM,39186,0,CUTTURA,Cuttura,Cuttura,COMD,39186,0,CUTTURA,Cuttura,Cuttura 32,2017-01-01,COM,39186,0,CUTTURA,Cuttura,Cuttura,COM,39491,0,COTEAUX DU LIZON,Coteaux du Lizon,Coteaux du Lizon -32,2017-01-01,COM,39195,0,DESSIA,Dessia,Dessia,COM,39273,0,MONTLAINSIA,Montlainsia,Montlainsia 32,2017-01-01,COM,39195,0,DESSIA,Dessia,Dessia,COMD,39195,0,DESSIA,Dessia,Dessia +32,2017-01-01,COM,39195,0,DESSIA,Dessia,Dessia,COM,39273,0,MONTLAINSIA,Montlainsia,Montlainsia 32,2017-01-01,COM,39224,0,FETIGNY,Fétigny,Fétigny,COM,39290,0,VALZIN EN PETITE MONTAGNE,Valzin en Petite Montagne,Valzin en Petite Montagne 32,2017-01-01,COM,39264,0,GRUSSE,Grusse,Grusse,COMD,39264,0,GRUSSE,Grusse,Grusse 32,2017-01-01,COM,39264,0,GRUSSE,Grusse,Grusse,COM,39576,0,VAL SONNETTE,Val-Sonnette,Val-Sonnette -32,2017-01-01,COM,39273,0,LAINS,Lains,Lains,COM,39273,0,MONTLAINSIA,Montlainsia,Montlainsia 32,2017-01-01,COM,39273,0,LAINS,Lains,Lains,COMD,39273,0,LAINS,Lains,Lains +32,2017-01-01,COM,39273,0,LAINS,Lains,Lains,COM,39273,0,MONTLAINSIA,Montlainsia,Montlainsia 32,2017-01-01,COM,39290,0,LEGNA,Légna,Légna,COM,39290,0,VALZIN EN PETITE MONTAGNE,Valzin en Petite Montagne,Valzin en Petite Montagne -32,2017-01-01,COM,39303,0,LOUVENNE,Louvenne,Louvenne,COM,39485,0,VAL SURAN,Val Suran,Val Suran 32,2017-01-01,COM,39303,0,LOUVENNE,Louvenne,Louvenne,COMD,39303,0,LOUVENNE,Louvenne,Louvenne +32,2017-01-01,COM,39303,0,LOUVENNE,Louvenne,Louvenne,COM,39485,0,VAL SURAN,Val Suran,Val Suran +32,2017-01-01,COM,39309,0,MALLEREY,Mallerey,Mallerey,COMD,39309,0,MALLEREY,Mallerey,Mallerey 32,2017-01-01,COM,39309,0,MALLEREY,Mallerey,Mallerey,COM,39537,0,TRENAL,Trenal,Trenal -32,2017-01-01,COM,39341,4,MOLUNES,Molunes,Les Molunes,COM,39510,0,SEPTMONCEL LES MOLUNES,Septmoncel les Molunes,Septmoncel les Molunes +35,2017-01-01,COMD,39309,0,MALLEREY,Mallerey,Mallerey,COM,39537,0,TRENAL,Trenal,Trenal 32,2017-01-01,COM,39341,4,MOLUNES,Molunes,Les Molunes,COMD,39341,4,MOLUNES,Molunes,Les Molunes +32,2017-01-01,COM,39341,4,MOLUNES,Molunes,Les Molunes,COM,39510,0,SEPTMONCEL LES MOLUNES,Septmoncel les Molunes,Septmoncel les Molunes 32,2017-01-01,COM,39347,0,MONTAGNA LE TEMPLIER,Montagna-le-Templier,Montagna-le-Templier,COM,39273,0,MONTLAINSIA,Montlainsia,Montlainsia 32,2017-01-01,COM,39347,0,MONTAGNA LE TEMPLIER,Montagna-le-Templier,Montagna-le-Templier,COMD,39347,0,MONTAGNA LE TEMPLIER,Montagna-le-Templier,Montagna-le-Templier 32,2017-01-01,COM,39485,0,SAINT JULIEN,Saint-Julien,Saint-Julien,COM,39485,0,VAL SURAN,Val Suran,Val Suran 32,2017-01-01,COM,39485,0,SAINT JULIEN,Saint-Julien,Saint-Julien,COMD,39485,0,SAINT JULIEN,Saint-Julien,Saint-Julien -32,2017-01-01,COM,39491,0,SAINT LUPICIN,Saint-Lupicin,Saint-Lupicin,COM,39491,0,COTEAUX DU LIZON,Coteaux du Lizon,Coteaux du Lizon 32,2017-01-01,COM,39491,0,SAINT LUPICIN,Saint-Lupicin,Saint-Lupicin,COMD,39491,0,SAINT LUPICIN,Saint-Lupicin,Saint-Lupicin +32,2017-01-01,COM,39491,0,SAINT LUPICIN,Saint-Lupicin,Saint-Lupicin,COM,39491,0,COTEAUX DU LIZON,Coteaux du Lizon,Coteaux du Lizon 32,2017-01-01,COM,39506,0,SAVIGNA,Savigna,Savigna,COM,39290,0,VALZIN EN PETITE MONTAGNE,Valzin en Petite Montagne,Valzin en Petite Montagne -32,2017-01-01,COM,39510,0,SEPTMONCEL,Septmoncel,Septmoncel,COM,39510,0,SEPTMONCEL LES MOLUNES,Septmoncel les Molunes,Septmoncel les Molunes 32,2017-01-01,COM,39510,0,SEPTMONCEL,Septmoncel,Septmoncel,COMD,39510,0,SEPTMONCEL,Septmoncel,Septmoncel -32,2017-01-01,COM,39530,0,THOIRETTE,Thoirette,Thoirette,COMD,39530,0,THOIRETTE,Thoirette,Thoirette +32,2017-01-01,COM,39510,0,SEPTMONCEL,Septmoncel,Septmoncel,COM,39510,0,SEPTMONCEL LES MOLUNES,Septmoncel les Molunes,Septmoncel les Molunes 32,2017-01-01,COM,39530,0,THOIRETTE,Thoirette,Thoirette,COM,39530,0,THOIRETTE COISIA,Thoirette-Coisia,Thoirette-Coisia -34,2017-01-01,COM,39537,0,TRENAL,Trenal,Trenal,COM,39537,0,TRENAL,Trenal,Trenal +32,2017-01-01,COM,39530,0,THOIRETTE,Thoirette,Thoirette,COMD,39530,0,THOIRETTE,Thoirette,Thoirette 32,2017-01-01,COM,39537,0,TRENAL,Trenal,Trenal,COM,39537,0,TRENAL,Trenal,Trenal -32,2017-01-01,COM,39549,0,VERCIA,Vercia,Vercia,COM,39576,0,VAL SONNETTE,Val-Sonnette,Val-Sonnette +32,2017-01-01,COM,39537,0,TRENAL,Trenal,Trenal,COMD,39537,0,TRENAL,Trenal,Trenal +35,2017-01-01,COMD,39537,0,TRENAL,Trenal,Trenal,COM,39537,0,TRENAL,Trenal,Trenal 32,2017-01-01,COM,39549,0,VERCIA,Vercia,Vercia,COMD,39549,0,VERCIA,Vercia,Vercia -32,2017-01-01,COM,39564,0,VILLECHANTRIA,Villechantria,Villechantria,COMD,39564,0,VILLECHANTRIA,Villechantria,Villechantria +32,2017-01-01,COM,39549,0,VERCIA,Vercia,Vercia,COM,39576,0,VAL SONNETTE,Val-Sonnette,Val-Sonnette 32,2017-01-01,COM,39564,0,VILLECHANTRIA,Villechantria,Villechantria,COM,39485,0,VAL SURAN,Val Suran,Val Suran -32,2017-01-01,COM,39566,0,VILLENEUVE LES CHARNOD,Villeneuve-lès-Charnod,Villeneuve-lès-Charnod,COMD,39566,0,VILLENEUVE LES CHARNOD,Villeneuve-lès-Charnod,Villeneuve-lès-Charnod +32,2017-01-01,COM,39564,0,VILLECHANTRIA,Villechantria,Villechantria,COMD,39564,0,VILLECHANTRIA,Villechantria,Villechantria 32,2017-01-01,COM,39566,0,VILLENEUVE LES CHARNOD,Villeneuve-lès-Charnod,Villeneuve-lès-Charnod,COM,39018,1,AROMAS,Aromas,Aromas -32,2017-01-01,COM,39576,0,VINCELLES,Vincelles,Vincelles,COM,39576,0,VAL SONNETTE,Val-Sonnette,Val-Sonnette +35,2017-01-01,COMD,39566,0,VILLENEUVE LES CHARNOD,Villeneuve-lès-Charnod,Villeneuve-lès-Charnod,COM,39018,1,AROMAS,Aromas,Aromas +32,2017-01-01,COM,39566,0,VILLENEUVE LES CHARNOD,Villeneuve-lès-Charnod,Villeneuve-lès-Charnod,COMD,39566,0,VILLENEUVE LES CHARNOD,Villeneuve-lès-Charnod,Villeneuve-lès-Charnod 32,2017-01-01,COM,39576,0,VINCELLES,Vincelles,Vincelles,COMD,39576,0,VINCELLES,Vincelles,Vincelles +32,2017-01-01,COM,39576,0,VINCELLES,Vincelles,Vincelles,COM,39576,0,VAL SONNETTE,Val-Sonnette,Val-Sonnette 32,2017-01-01,COM,40048,0,BOOS,Boos,Boos,COMD,40048,0,BOOS,Boos,Boos 32,2017-01-01,COM,40048,0,BOOS,Boos,Boos,COM,40243,0,RION DES LANDES,Rion-des-Landes,Rion-des-Landes 32,2017-01-01,COM,40243,0,RION DES LANDES,Rion-des-Landes,Rion-des-Landes,COM,40243,0,RION DES LANDES,Rion-des-Landes,Rion-des-Landes 32,2017-01-01,COM,40243,0,RION DES LANDES,Rion-des-Landes,Rion-des-Landes,COMD,40243,0,RION DES LANDES,Rion-des-Landes,Rion-des-Landes -32,2017-01-01,COM,41011,0,BAIGNEAUX,Baigneaux,Baigneaux,COM,41171,1,OUCQUES LA NOUVELLE,Oucques La Nouvelle,Oucques La Nouvelle 32,2017-01-01,COM,41011,0,BAIGNEAUX,Baigneaux,Baigneaux,COMD,41011,0,BAIGNEAUX,Baigneaux,Baigneaux -32,2017-01-01,COM,41015,0,BEAUVILLIERS,Beauvilliers,Beauvilliers,COM,41171,1,OUCQUES LA NOUVELLE,Oucques La Nouvelle,Oucques La Nouvelle +32,2017-01-01,COM,41011,0,BAIGNEAUX,Baigneaux,Baigneaux,COM,41171,1,OUCQUES LA NOUVELLE,Oucques La Nouvelle,Oucques La Nouvelle 32,2017-01-01,COM,41015,0,BEAUVILLIERS,Beauvilliers,Beauvilliers,COMD,41015,0,BEAUVILLIERS,Beauvilliers,Beauvilliers -32,2017-01-01,COM,41033,0,CHAMBON SUR CISSE,Chambon-sur-Cisse,Chambon-sur-Cisse,COM,41142,0,VALENCISSE,Valencisse,Valencisse +32,2017-01-01,COM,41015,0,BEAUVILLIERS,Beauvilliers,Beauvilliers,COM,41171,1,OUCQUES LA NOUVELLE,Oucques La Nouvelle,Oucques La Nouvelle 32,2017-01-01,COM,41033,0,CHAMBON SUR CISSE,Chambon-sur-Cisse,Chambon-sur-Cisse,COMD,41033,0,CHAMBON SUR CISSE,Chambon-sur-Cisse,Chambon-sur-Cisse -32,2017-01-01,COM,41055,0,CHOUZY SUR CISSE,Chouzy-sur-Cisse,Chouzy-sur-Cisse,COM,41055,0,VALLOIRE SUR CISSE,Valloire-sur-Cisse,Valloire-sur-Cisse +32,2017-01-01,COM,41033,0,CHAMBON SUR CISSE,Chambon-sur-Cisse,Chambon-sur-Cisse,COM,41142,0,VALENCISSE,Valencisse,Valencisse 32,2017-01-01,COM,41055,0,CHOUZY SUR CISSE,Chouzy-sur-Cisse,Chouzy-sur-Cisse,COMD,41055,0,CHOUZY SUR CISSE,Chouzy-sur-Cisse,Chouzy-sur-Cisse -32,2017-01-01,COM,41064,0,COULANGES,Coulanges,Coulanges,COMD,41064,0,COULANGES,Coulanges,Coulanges +32,2017-01-01,COM,41055,0,CHOUZY SUR CISSE,Chouzy-sur-Cisse,Chouzy-sur-Cisse,COM,41055,0,VALLOIRE SUR CISSE,Valloire-sur-Cisse,Valloire-sur-Cisse 32,2017-01-01,COM,41064,0,COULANGES,Coulanges,Coulanges,COM,41055,0,VALLOIRE SUR CISSE,Valloire-sur-Cisse,Valloire-sur-Cisse -32,2017-01-01,COMD,41142,0,MOLINEUF,Molineuf,Molineuf,COMD,41142,0,MOLINEUF,Molineuf,Molineuf +32,2017-01-01,COM,41064,0,COULANGES,Coulanges,Coulanges,COMD,41064,0,COULANGES,Coulanges,Coulanges 32,2017-01-01,COMD,41142,0,MOLINEUF,Molineuf,Molineuf,COM,41142,0,VALENCISSE,Valencisse,Valencisse +32,2017-01-01,COMD,41142,0,MOLINEUF,Molineuf,Molineuf,COMD,41142,0,MOLINEUF,Molineuf,Molineuf 32,2017-01-01,COM,41142,0,VALENCISSE,Valencisse,Valencisse,COM,41142,0,VALENCISSE,Valencisse,Valencisse -32,2017-01-01,COM,41167,1,ONZAIN,Onzain,Onzain,COM,41167,0,VEUZAIN SUR LOIRE,Veuzain-sur-Loire,Veuzain-sur-Loire +32,2017-01-01,COM,41142,0,VALENCISSE,Valencisse,Valencisse,COMD,41142,0,MOLINEUF,Molineuf,Molineuf 32,2017-01-01,COM,41167,1,ONZAIN,Onzain,Onzain,COMD,41167,1,ONZAIN,Onzain,Onzain +32,2017-01-01,COM,41167,1,ONZAIN,Onzain,Onzain,COM,41167,0,VEUZAIN SUR LOIRE,Veuzain-sur-Loire,Veuzain-sur-Loire 32,2017-01-01,COMD,41169,1,ORCHAISE,Orchaise,Orchaise,COM,41142,0,VALENCISSE,Valencisse,Valencisse 32,2017-01-01,COMD,41169,1,ORCHAISE,Orchaise,Orchaise,COMD,41169,1,ORCHAISE,Orchaise,Orchaise 32,2017-01-01,COM,41171,1,OUCQUES,Oucques,Oucques,COMD,41171,1,OUCQUES,Oucques,Oucques 32,2017-01-01,COM,41171,1,OUCQUES,Oucques,Oucques,COM,41171,1,OUCQUES LA NOUVELLE,Oucques La Nouvelle,Oucques La Nouvelle 32,2017-01-01,COM,41210,0,SAINTE GEMMES,Sainte-Gemmes,Sainte-Gemmes,COM,41171,1,OUCQUES LA NOUVELLE,Oucques La Nouvelle,Oucques La Nouvelle 32,2017-01-01,COM,41210,0,SAINTE GEMMES,Sainte-Gemmes,Sainte-Gemmes,COMD,41210,0,SAINTE GEMMES,Sainte-Gemmes,Sainte-Gemmes -32,2017-01-01,COM,41240,0,SEILLAC,Seillac,Seillac,COMD,41240,0,SEILLAC,Seillac,Seillac 32,2017-01-01,COM,41240,0,SEILLAC,Seillac,Seillac,COM,41055,0,VALLOIRE SUR CISSE,Valloire-sur-Cisse,Valloire-sur-Cisse +32,2017-01-01,COM,41240,0,SEILLAC,Seillac,Seillac,COMD,41240,0,SEILLAC,Seillac,Seillac 32,2017-01-01,COM,41272,0,VEUVES,Veuves,Veuves,COM,41167,0,VEUZAIN SUR LOIRE,Veuzain-sur-Loire,Veuzain-sur-Loire 32,2017-01-01,COM,41272,0,VEUVES,Veuves,Veuves,COMD,41272,0,VEUVES,Veuves,Veuves 32,2017-01-01,COM,43176,0,SAINT DIDIER D ALLIER,Saint-Didier-d'Allier,Saint-Didier-d'Allier,COMD,43176,0,SAINT DIDIER D ALLIER,Saint-Didier-d'Allier,Saint-Didier-d'Allier 32,2017-01-01,COM,43176,0,SAINT DIDIER D ALLIER,Saint-Didier-d'Allier,Saint-Didier-d'Allier,COM,43221,0,SAINT PRIVAT D ALLIER,Saint-Privat-d'Allier,Saint-Privat-d'Allier 32,2017-01-01,COM,43221,0,SAINT PRIVAT D ALLIER,Saint-Privat-d'Allier,Saint-Privat-d'Allier,COM,43221,0,SAINT PRIVAT D ALLIER,Saint-Privat-d'Allier,Saint-Privat-d'Allier -32,2017-01-01,COM,45051,0,BRAY EN VAL,Bray-en-Val,Bray-en-Val,COMD,45051,0,BRAY EN VAL,Bray-en-Val,Bray-en-Val 32,2017-01-01,COM,45051,0,BRAY EN VAL,Bray-en-Val,Bray-en-Val,COM,45051,0,BRAY SAINT AIGNAN,Bray-Saint-Aignan,Bray-Saint-Aignan -32,2017-01-01,COM,45267,0,SAINT AIGNAN DES GUES,Saint-Aignan-des-Gués,Saint-Aignan-des-Gués,COMD,45267,0,SAINT AIGNAN DES GUES,Saint-Aignan-des-Gués,Saint-Aignan-des-Gués +32,2017-01-01,COM,45051,0,BRAY EN VAL,Bray-en-Val,Bray-en-Val,COMD,45051,0,BRAY EN VAL,Bray-en-Val,Bray-en-Val 32,2017-01-01,COM,45267,0,SAINT AIGNAN DES GUES,Saint-Aignan-des-Gués,Saint-Aignan-des-Gués,COM,45051,0,BRAY SAINT AIGNAN,Bray-Saint-Aignan,Bray-Saint-Aignan -32,2017-01-01,COM,46063,0,CASTELNAU MONTRATIER,Castelnau-Montratier,Castelnau-Montratier,COM,46063,0,CASTELNAU MONTRATIER SAINTE ALAUZIE,Castelnau Montratier-Sainte Alauzie,Castelnau Montratier-Sainte Alauzie +32,2017-01-01,COM,45267,0,SAINT AIGNAN DES GUES,Saint-Aignan-des-Gués,Saint-Aignan-des-Gués,COMD,45267,0,SAINT AIGNAN DES GUES,Saint-Aignan-des-Gués,Saint-Aignan-des-Gués 32,2017-01-01,COM,46063,0,CASTELNAU MONTRATIER,Castelnau-Montratier,Castelnau-Montratier,COMD,46063,0,CASTELNAU MONTRATIER,Castelnau-Montratier,Castelnau-Montratier +32,2017-01-01,COM,46063,0,CASTELNAU MONTRATIER,Castelnau-Montratier,Castelnau-Montratier,COM,46063,0,CASTELNAU MONTRATIER SAINTE ALAUZIE,Castelnau Montratier-Sainte Alauzie,Castelnau Montratier-Sainte Alauzie 32,2017-01-01,COM,46077,0,COURS,Cours,Cours,COMD,46077,0,COURS,Cours,Cours 32,2017-01-01,COM,46077,0,COURS,Cours,Cours,COM,46156,0,BELLEFONT LA RAUZE,Bellefont-La Rauze,Bellefont-La Rauze 32,2017-01-01,COM,46156,0,LAROQUE DES ARCS,Laroque-des-Arcs,Laroque-des-Arcs,COM,46156,0,BELLEFONT LA RAUZE,Bellefont-La Rauze,Bellefont-La Rauze 32,2017-01-01,COM,46156,0,LAROQUE DES ARCS,Laroque-des-Arcs,Laroque-des-Arcs,COMD,46156,0,LAROQUE DES ARCS,Laroque-des-Arcs,Laroque-des-Arcs -32,2017-01-01,COM,46248,0,SAINTE ALAUZIE,Sainte-Alauzie,Sainte-Alauzie,COMD,46248,0,SAINTE ALAUZIE,Sainte-Alauzie,Sainte-Alauzie 32,2017-01-01,COM,46248,0,SAINTE ALAUZIE,Sainte-Alauzie,Sainte-Alauzie,COM,46063,0,CASTELNAU MONTRATIER SAINTE ALAUZIE,Castelnau Montratier-Sainte Alauzie,Castelnau Montratier-Sainte Alauzie +32,2017-01-01,COM,46248,0,SAINTE ALAUZIE,Sainte-Alauzie,Sainte-Alauzie,COMD,46248,0,SAINTE ALAUZIE,Sainte-Alauzie,Sainte-Alauzie 32,2017-01-01,COM,46268,0,SAINT GERY,Saint-Géry,Saint-Géry,COM,46268,0,SAINT GERY VERS,Saint Géry-Vers,Saint Géry-Vers 32,2017-01-01,COM,46268,0,SAINT GERY,Saint-Géry,Saint-Géry,COMD,46268,0,SAINT GERY,Saint-Géry,Saint-Géry 32,2017-01-01,COM,46327,0,VALROUFIE,Valroufié,Valroufié,COM,46156,0,BELLEFONT LA RAUZE,Bellefont-La Rauze,Bellefont-La Rauze 32,2017-01-01,COM,46327,0,VALROUFIE,Valroufié,Valroufié,COMD,46327,0,VALROUFIE,Valroufié,Valroufié 32,2017-01-01,COM,46331,0,VERS,Vers,Vers,COM,46268,0,SAINT GERY VERS,Saint Géry-Vers,Saint Géry-Vers 32,2017-01-01,COM,46331,0,VERS,Vers,Vers,COMD,46331,0,VERS,Vers,Vers -32,2017-01-01,COM,48009,1,AUMONT AUBRAC,Aumont-Aubrac,Aumont-Aubrac,COM,48009,0,PEYRE EN AUBRAC,Peyre en Aubrac,Peyre en Aubrac 32,2017-01-01,COM,48009,1,AUMONT AUBRAC,Aumont-Aubrac,Aumont-Aubrac,COMD,48009,1,AUMONT AUBRAC,Aumont-Aubrac,Aumont-Aubrac +32,2017-01-01,COM,48009,1,AUMONT AUBRAC,Aumont-Aubrac,Aumont-Aubrac,COM,48009,0,PEYRE EN AUBRAC,Peyre en Aubrac,Peyre en Aubrac 32,2017-01-01,COM,48014,0,BAGNOLS LES BAINS,Bagnols-les-Bains,Bagnols-les-Bains,COMD,48014,0,BAGNOLS LES BAINS,Bagnols-les-Bains,Bagnols-les-Bains 32,2017-01-01,COM,48014,0,BAGNOLS LES BAINS,Bagnols-les-Bains,Bagnols-les-Bains,COM,48027,0,MONT LOZERE ET GOULET,Mont Lozère et Goulet,Mont Lozère et Goulet -32,2017-01-01,COM,48023,0,BELVEZET,Belvezet,Belvezet,COM,48027,0,MONT LOZERE ET GOULET,Mont Lozère et Goulet,Mont Lozère et Goulet 32,2017-01-01,COM,48023,0,BELVEZET,Belvezet,Belvezet,COMD,48023,0,BELVEZET,Belvezet,Belvezet +32,2017-01-01,COM,48023,0,BELVEZET,Belvezet,Belvezet,COM,48027,0,MONT LOZERE ET GOULET,Mont Lozère et Goulet,Mont Lozère et Goulet 32,2017-01-01,COM,48027,2,BLEYMARD,Bleymard,Le Bleymard,COMD,48027,2,BLEYMARD,Bleymard,Le Bleymard 32,2017-01-01,COM,48027,2,BLEYMARD,Bleymard,Le Bleymard,COM,48027,0,MONT LOZERE ET GOULET,Mont Lozère et Goulet,Mont Lozère et Goulet -32,2017-01-01,COM,48040,0,CHASSERADES,Chasseradès,Chasseradès,COMD,48040,0,CHASSERADES,Chasseradès,Chasseradès 32,2017-01-01,COM,48040,0,CHASSERADES,Chasseradès,Chasseradès,COM,48027,0,MONT LOZERE ET GOULET,Mont Lozère et Goulet,Mont Lozère et Goulet +32,2017-01-01,COM,48040,0,CHASSERADES,Chasseradès,Chasseradès,COMD,48040,0,CHASSERADES,Chasseradès,Chasseradès 32,2017-01-01,COM,48047,3,CHAZE DE PEYRE,Chaze-de-Peyre,La Chaze-de-Peyre,COM,48009,0,PEYRE EN AUBRAC,Peyre en Aubrac,Peyre en Aubrac 32,2017-01-01,COM,48047,3,CHAZE DE PEYRE,Chaze-de-Peyre,La Chaze-de-Peyre,COMD,48047,3,CHAZE DE PEYRE,Chaze-de-Peyre,La Chaze-de-Peyre 32,2017-01-01,COM,48060,0,FAU DE PEYRE,Fau-de-Peyre,Fau-de-Peyre,COM,48009,0,PEYRE EN AUBRAC,Peyre en Aubrac,Peyre en Aubrac @@ -2838,59 +2674,59 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,48084,0,LAVAL ATGER,Laval-Atger,Laval-Atger,COM,48139,0,SAINT BONNET LAVAL,Saint Bonnet-Laval,Saint Bonnet-Laval 32,2017-01-01,COM,48087,0,MALBOUZON,Malbouzon,Malbouzon,COM,48087,0,PRINSUEJOLS MALBOUZON,Prinsuéjols-Malbouzon,Prinsuéjols-Malbouzon 32,2017-01-01,COM,48087,0,MALBOUZON,Malbouzon,Malbouzon,COMD,48087,0,MALBOUZON,Malbouzon,Malbouzon -32,2017-01-01,COM,48093,0,MAS D ORCIERES,Mas-d'Orcières,Mas-d'Orcières,COMD,48093,0,MAS D ORCIERES,Mas-d'Orcières,Mas-d'Orcières 32,2017-01-01,COM,48093,0,MAS D ORCIERES,Mas-d'Orcières,Mas-d'Orcières,COM,48027,0,MONT LOZERE ET GOULET,Mont Lozère et Goulet,Mont Lozère et Goulet +32,2017-01-01,COM,48093,0,MAS D ORCIERES,Mas-d'Orcières,Mas-d'Orcières,COMD,48093,0,MAS D ORCIERES,Mas-d'Orcières,Mas-d'Orcières 32,2017-01-01,COM,48094,2,MASSEGROS,Massegros,Le Massegros,COM,48094,0,MASSEGROS CAUSSES GORGES,Massegros Causses Gorges,Massegros Causses Gorges 32,2017-01-01,COM,48094,2,MASSEGROS,Massegros,Le Massegros,COMD,48094,2,MASSEGROS,Massegros,Le Massegros -32,2017-01-01,COM,48101,0,MONTBRUN,Montbrun,Montbrun,COM,48146,0,GORGES DU TARN CAUSSES,Gorges du Tarn Causses,Gorges du Tarn Causses 32,2017-01-01,COM,48101,0,MONTBRUN,Montbrun,Montbrun,COMD,48101,0,MONTBRUN,Montbrun,Montbrun -32,2017-01-01,COM,48120,0,PRINSUEJOLS,Prinsuéjols,Prinsuéjols,COMD,48120,0,PRINSUEJOLS,Prinsuéjols,Prinsuéjols +32,2017-01-01,COM,48101,0,MONTBRUN,Montbrun,Montbrun,COM,48146,0,GORGES DU TARN CAUSSES,Gorges du Tarn Causses,Gorges du Tarn Causses 32,2017-01-01,COM,48120,0,PRINSUEJOLS,Prinsuéjols,Prinsuéjols,COM,48087,0,PRINSUEJOLS MALBOUZON,Prinsuéjols-Malbouzon,Prinsuéjols-Malbouzon +32,2017-01-01,COM,48120,0,PRINSUEJOLS,Prinsuéjols,Prinsuéjols,COMD,48120,0,PRINSUEJOLS,Prinsuéjols,Prinsuéjols 32,2017-01-01,COM,48122,0,QUEZAC,Quézac,Quézac,COMD,48122,0,QUEZAC,Quézac,Quézac 32,2017-01-01,COM,48122,0,QUEZAC,Quézac,Quézac,COM,48146,0,GORGES DU TARN CAUSSES,Gorges du Tarn Causses,Gorges du Tarn Causses -32,2017-01-01,COM,48125,2,RECOUX,Recoux,Le Recoux,COMD,48125,2,RECOUX,Recoux,Le Recoux 32,2017-01-01,COM,48125,2,RECOUX,Recoux,Le Recoux,COM,48094,0,MASSEGROS CAUSSES GORGES,Massegros Causses Gorges,Massegros Causses Gorges -32,2017-01-01,COM,48139,0,SAINT BONNET DE MONTAUROUX,Saint-Bonnet-de-Montauroux,Saint-Bonnet-de-Montauroux,COM,48139,0,SAINT BONNET LAVAL,Saint Bonnet-Laval,Saint Bonnet-Laval +32,2017-01-01,COM,48125,2,RECOUX,Recoux,Le Recoux,COMD,48125,2,RECOUX,Recoux,Le Recoux 32,2017-01-01,COM,48139,0,SAINT BONNET DE MONTAUROUX,Saint-Bonnet-de-Montauroux,Saint-Bonnet-de-Montauroux,COMD,48139,0,SAINT BONNET DE MONTAUROUX,Saint-Bonnet-de-Montauroux,Saint-Bonnet-de-Montauroux +32,2017-01-01,COM,48139,0,SAINT BONNET DE MONTAUROUX,Saint-Bonnet-de-Montauroux,Saint-Bonnet-de-Montauroux,COM,48139,0,SAINT BONNET LAVAL,Saint Bonnet-Laval,Saint Bonnet-Laval 32,2017-01-01,COM,48142,0,SAINTE COLOMBE DE PEYRE,Sainte-Colombe-de-Peyre,Sainte-Colombe-de-Peyre,COM,48009,0,PEYRE EN AUBRAC,Peyre en Aubrac,Peyre en Aubrac 32,2017-01-01,COM,48142,0,SAINTE COLOMBE DE PEYRE,Sainte-Colombe-de-Peyre,Sainte-Colombe-de-Peyre,COMD,48142,0,SAINTE COLOMBE DE PEYRE,Sainte-Colombe-de-Peyre,Sainte-Colombe-de-Peyre -32,2017-01-01,COM,48146,0,SAINTE ENIMIE,Sainte-Enimie,Sainte-Enimie,COMD,48146,0,SAINTE ENIMIE,Sainte-Enimie,Sainte-Enimie 32,2017-01-01,COM,48146,0,SAINTE ENIMIE,Sainte-Enimie,Sainte-Enimie,COM,48146,0,GORGES DU TARN CAUSSES,Gorges du Tarn Causses,Gorges du Tarn Causses -32,2017-01-01,COM,48154,0,SAINT GEORGES DE LEVEJAC,Saint-Georges-de-Lévéjac,Saint-Georges-de-Lévéjac,COMD,48154,0,SAINT GEORGES DE LEVEJAC,Saint-Georges-de-Lévéjac,Saint-Georges-de-Lévéjac +32,2017-01-01,COM,48146,0,SAINTE ENIMIE,Sainte-Enimie,Sainte-Enimie,COMD,48146,0,SAINTE ENIMIE,Sainte-Enimie,Sainte-Enimie 32,2017-01-01,COM,48154,0,SAINT GEORGES DE LEVEJAC,Saint-Georges-de-Lévéjac,Saint-Georges-de-Lévéjac,COM,48094,0,MASSEGROS CAUSSES GORGES,Massegros Causses Gorges,Massegros Causses Gorges -32,2017-01-01,COM,48164,0,SAINT JULIEN DU TOURNEL,Saint-Julien-du-Tournel,Saint-Julien-du-Tournel,COMD,48164,0,SAINT JULIEN DU TOURNEL,Saint-Julien-du-Tournel,Saint-Julien-du-Tournel +32,2017-01-01,COM,48154,0,SAINT GEORGES DE LEVEJAC,Saint-Georges-de-Lévéjac,Saint-Georges-de-Lévéjac,COMD,48154,0,SAINT GEORGES DE LEVEJAC,Saint-Georges-de-Lévéjac,Saint-Georges-de-Lévéjac 32,2017-01-01,COM,48164,0,SAINT JULIEN DU TOURNEL,Saint-Julien-du-Tournel,Saint-Julien-du-Tournel,COM,48027,0,MONT LOZERE ET GOULET,Mont Lozère et Goulet,Mont Lozère et Goulet +32,2017-01-01,COM,48164,0,SAINT JULIEN DU TOURNEL,Saint-Julien-du-Tournel,Saint-Julien-du-Tournel,COMD,48164,0,SAINT JULIEN DU TOURNEL,Saint-Julien-du-Tournel,Saint-Julien-du-Tournel 32,2017-01-01,COM,48180,0,SAINT ROME DE DOLAN,Saint-Rome-de-Dolan,Saint-Rome-de-Dolan,COM,48094,0,MASSEGROS CAUSSES GORGES,Massegros Causses Gorges,Massegros Causses Gorges 32,2017-01-01,COM,48180,0,SAINT ROME DE DOLAN,Saint-Rome-de-Dolan,Saint-Rome-de-Dolan,COMD,48180,0,SAINT ROME DE DOLAN,Saint-Rome-de-Dolan,Saint-Rome-de-Dolan 32,2017-01-01,COM,48183,0,SAINT SAUVEUR DE PEYRE,Saint-Sauveur-de-Peyre,Saint-Sauveur-de-Peyre,COM,48009,0,PEYRE EN AUBRAC,Peyre en Aubrac,Peyre en Aubrac 32,2017-01-01,COM,48183,0,SAINT SAUVEUR DE PEYRE,Saint-Sauveur-de-Peyre,Saint-Sauveur-de-Peyre,COMD,48183,0,SAINT SAUVEUR DE PEYRE,Saint-Sauveur-de-Peyre,Saint-Sauveur-de-Peyre -32,2017-01-01,COM,48195,4,VIGNES,Vignes,Les Vignes,COMD,48195,4,VIGNES,Vignes,Les Vignes 32,2017-01-01,COM,48195,4,VIGNES,Vignes,Les Vignes,COM,48094,0,MASSEGROS CAUSSES GORGES,Massegros Causses Gorges,Massegros Causses Gorges -32,2017-01-01,COM,49086,0,CHAVAGNES,Chavagnes,Chavagnes,COM,49086,0,TERRANJOU,Terranjou,Terranjou +32,2017-01-01,COM,48195,4,VIGNES,Vignes,Les Vignes,COMD,48195,4,VIGNES,Vignes,Les Vignes 32,2017-01-01,COM,49086,0,CHAVAGNES,Chavagnes,Chavagnes,COMD,49086,0,CHAVAGNES,Chavagnes,Chavagnes -32,2017-01-01,COMD,49093,0,CHEMIRE SUR SARTHE,Chemiré-sur-Sarthe,Chemiré-sur-Sarthe,COM,49220,0,MORANNES SUR SARTHE DAUMERAY,Morannes sur Sarthe-Daumeray,Morannes sur Sarthe-Daumeray +32,2017-01-01,COM,49086,0,CHAVAGNES,Chavagnes,Chavagnes,COM,49086,0,TERRANJOU,Terranjou,Terranjou 32,2017-01-01,COMD,49093,0,CHEMIRE SUR SARTHE,Chemiré-sur-Sarthe,Chemiré-sur-Sarthe,COMD,49093,0,CHEMIRE SUR SARTHE,Chemiré-sur-Sarthe,Chemiré-sur-Sarthe -32,2017-01-01,COM,49119,0,DAUMERAY,Daumeray,Daumeray,COM,49220,0,MORANNES SUR SARTHE DAUMERAY,Morannes sur Sarthe-Daumeray,Morannes sur Sarthe-Daumeray +32,2017-01-01,COMD,49093,0,CHEMIRE SUR SARTHE,Chemiré-sur-Sarthe,Chemiré-sur-Sarthe,COM,49220,0,MORANNES SUR SARTHE DAUMERAY,Morannes sur Sarthe-Daumeray,Morannes sur Sarthe-Daumeray 32,2017-01-01,COM,49119,0,DAUMERAY,Daumeray,Daumeray,COMD,49119,0,DAUMERAY,Daumeray,Daumeray +32,2017-01-01,COM,49119,0,DAUMERAY,Daumeray,Daumeray,COM,49220,0,MORANNES SUR SARTHE DAUMERAY,Morannes sur Sarthe-Daumeray,Morannes sur Sarthe-Daumeray 32,2017-01-01,COM,49191,0,MARTIGNE BRIAND,Martigné-Briand,Martigné-Briand,COM,49086,0,TERRANJOU,Terranjou,Terranjou 32,2017-01-01,COM,49191,0,MARTIGNE BRIAND,Martigné-Briand,Martigné-Briand,COMD,49191,0,MARTIGNE BRIAND,Martigné-Briand,Martigné-Briand 32,2017-01-01,COM,49220,0,MORANNES SUR SARTHE,Morannes-sur-Sarthe,Morannes-sur-Sarthe,COM,49220,0,MORANNES SUR SARTHE DAUMERAY,Morannes sur Sarthe-Daumeray,Morannes sur Sarthe-Daumeray -32,2017-01-01,COM,49227,0,NOTRE DAME D ALLENCON,Notre-Dame-d'Allençon,Notre-Dame-d'Allençon,COMD,49227,0,NOTRE DAME D ALLENCON,Notre-Dame-d'Allençon,Notre-Dame-d'Allençon 32,2017-01-01,COM,49227,0,NOTRE DAME D ALLENCON,Notre-Dame-d'Allençon,Notre-Dame-d'Allençon,COM,49086,0,TERRANJOU,Terranjou,Terranjou -32,2017-01-01,COM,50001,1,ACQUEVILLE,Acqueville,Acqueville,COM,50041,3,HAGUE,Hague,La Hague +32,2017-01-01,COM,49227,0,NOTRE DAME D ALLENCON,Notre-Dame-d'Allençon,Notre-Dame-d'Allençon,COMD,49227,0,NOTRE DAME D ALLENCON,Notre-Dame-d'Allençon,Notre-Dame-d'Allençon 32,2017-01-01,COM,50001,1,ACQUEVILLE,Acqueville,Acqueville,COMD,50001,1,ACQUEVILLE,Acqueville,Acqueville -32,2017-01-01,COMD,50005,1,AMFREVILLE,Amfreville,Amfreville,COM,50400,0,PICAUVILLE,Picauville,Picauville +32,2017-01-01,COM,50001,1,ACQUEVILLE,Acqueville,Acqueville,COM,50041,3,HAGUE,Hague,La Hague 32,2017-01-01,COMD,50005,1,AMFREVILLE,Amfreville,Amfreville,COMD,50005,1,AMFREVILLE,Amfreville,Amfreville +32,2017-01-01,COMD,50005,1,AMFREVILLE,Amfreville,Amfreville,COM,50400,0,PICAUVILLE,Picauville,Picauville 32,2017-01-01,COMD,50010,1,ANGOVILLE AU PLAIN,Angoville-au-Plain,Angoville-au-Plain,COMD,50010,1,ANGOVILLE AU PLAIN,Angoville-au-Plain,Angoville-au-Plain 32,2017-01-01,COMD,50010,1,ANGOVILLE AU PLAIN,Angoville-au-Plain,Angoville-au-Plain,COM,50099,0,CARENTAN LES MARAIS,Carentan les Marais,Carentan les Marais -32,2017-01-01,COM,50018,1,ARGOUGES,Argouges,Argouges,COM,50487,0,SAINT JAMES,Saint-James,Saint-James 32,2017-01-01,COM,50018,1,ARGOUGES,Argouges,Argouges,COMD,50018,1,ARGOUGES,Argouges,Argouges -32,2017-01-01,COM,50020,1,AUDERVILLE,Auderville,Auderville,COM,50041,3,HAGUE,Hague,La Hague +32,2017-01-01,COM,50018,1,ARGOUGES,Argouges,Argouges,COM,50487,0,SAINT JAMES,Saint-James,Saint-James 32,2017-01-01,COM,50020,1,AUDERVILLE,Auderville,Auderville,COMD,50020,1,AUDERVILLE,Auderville,Auderville +32,2017-01-01,COM,50020,1,AUDERVILLE,Auderville,Auderville,COM,50041,3,HAGUE,Hague,La Hague 32,2017-01-01,COM,50037,3,BAZOGE,Bazoge,La Bazoge,COMD,50037,3,BAZOGE,Bazoge,La Bazoge 32,2017-01-01,COM,50037,3,BAZOGE,Bazoge,La Bazoge,COM,50260,0,JUVIGNY LES VALLEES,Juvigny les Vallées,Juvigny les Vallées -32,2017-01-01,COM,50041,0,BEAUMONT HAGUE,Beaumont-Hague,Beaumont-Hague,COM,50041,3,HAGUE,Hague,La Hague 32,2017-01-01,COM,50041,0,BEAUMONT HAGUE,Beaumont-Hague,Beaumont-Hague,COMD,50041,0,BEAUMONT HAGUE,Beaumont-Hague,Beaumont-Hague +32,2017-01-01,COM,50041,0,BEAUMONT HAGUE,Beaumont-Hague,Beaumont-Hague,COM,50041,3,HAGUE,Hague,La Hague 32,2017-01-01,COM,50043,0,BELLEFONTAINE,Bellefontaine,Bellefontaine,COMD,50043,0,BELLEFONTAINE,Bellefontaine,Bellefontaine 32,2017-01-01,COM,50043,0,BELLEFONTAINE,Bellefontaine,Bellefontaine,COM,50260,0,JUVIGNY LES VALLEES,Juvigny les Vallées,Juvigny les Vallées 32,2017-01-01,COM,50057,0,BIVILLE,Biville,Biville,COM,50041,3,HAGUE,Hague,La Hague @@ -2901,76 +2737,74 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,50080,0,BREVANDS,Brévands,Brévands,COM,50099,0,CARENTAN LES MARAIS,Carentan les Marais,Carentan les Marais 32,2017-01-01,COM,50095,0,CANISY,Canisy,Canisy,COMD,50095,0,CANISY,Canisy,Canisy 32,2017-01-01,COM,50095,0,CANISY,Canisy,Canisy,COM,50095,0,CANISY,Canisy,Canisy -32,2017-01-01,COMD,50099,0,CARENTAN,Carentan,Carentan,COM,50099,0,CARENTAN LES MARAIS,Carentan les Marais,Carentan les Marais 32,2017-01-01,COMD,50099,0,CARENTAN,Carentan,Carentan,COMD,50099,0,CARENTAN,Carentan,Carentan +32,2017-01-01,COMD,50099,0,CARENTAN,Carentan,Carentan,COM,50099,0,CARENTAN LES MARAIS,Carentan les Marais,Carentan les Marais +32,2017-01-01,COM,50099,0,CARENTAN LES MARAIS,Carentan les Marais,Carentan les Marais,COMD,50099,0,CARENTAN,Carentan,Carentan 32,2017-01-01,COM,50099,0,CARENTAN LES MARAIS,Carentan les Marais,Carentan les Marais,COM,50099,0,CARENTAN LES MARAIS,Carentan les Marais,Carentan les Marais -32,2017-01-01,COM,50100,0,CARNET,Carnet,Carnet,COM,50487,0,SAINT JAMES,Saint-James,Saint-James 32,2017-01-01,COM,50100,0,CARNET,Carnet,Carnet,COMD,50100,0,CARNET,Carnet,Carnet +32,2017-01-01,COM,50100,0,CARNET,Carnet,Carnet,COM,50487,0,SAINT JAMES,Saint-James,Saint-James 32,2017-01-01,COM,50119,4,CHAMPS DE LOSQUE,Champs-de-Losque,Les Champs-de-Losque,COMD,50119,4,CHAMPS DE LOSQUE,Champs-de-Losque,Les Champs-de-Losque 32,2017-01-01,COM,50119,4,CHAMPS DE LOSQUE,Champs-de-Losque,Les Champs-de-Losque,COM,50431,0,REMILLY LES MARAIS,Remilly Les Marais,Remilly Les Marais 32,2017-01-01,COMA,50122,3,CHAPELLE DU FEST,Chapelle-du-Fest,La Chapelle-du-Fest,COM,50444,0,SAINT AMAND VILLAGES,Saint-Amand-Villages,Saint-Amand-Villages 32,2017-01-01,COM,50125,0,CHASSEGUEY,Chasseguey,Chasseguey,COMD,50125,0,CHASSEGUEY,Chasseguey,Chasseguey 32,2017-01-01,COM,50125,0,CHASSEGUEY,Chasseguey,Chasseguey,COM,50260,0,JUVIGNY LES VALLEES,Juvigny les Vallées,Juvigny les Vallées -32,2017-01-01,COM,50131,0,CHERENCE LE ROUSSEL,Chérencé-le-Roussel,Chérencé-le-Roussel,COM,50260,0,JUVIGNY LES VALLEES,Juvigny les Vallées,Juvigny les Vallées 32,2017-01-01,COM,50131,0,CHERENCE LE ROUSSEL,Chérencé-le-Roussel,Chérencé-le-Roussel,COMD,50131,0,CHERENCE LE ROUSSEL,Chérencé-le-Roussel,Chérencé-le-Roussel +32,2017-01-01,COM,50131,0,CHERENCE LE ROUSSEL,Chérencé-le-Roussel,Chérencé-le-Roussel,COM,50260,0,JUVIGNY LES VALLEES,Juvigny les Vallées,Juvigny les Vallées 32,2017-01-01,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire -32,2017-01-01,COMD,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire,COMD,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire -32,2017-01-01,COMD,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire 32,2017-01-01,COMD,50153,0,CRETTEVILLE,Cretteville,Cretteville,COMD,50153,0,CRETTEVILLE,Cretteville,Cretteville 32,2017-01-01,COMD,50153,0,CRETTEVILLE,Cretteville,Cretteville,COM,50400,0,PICAUVILLE,Picauville,Picauville -32,2017-01-01,COM,50154,3,CROIX AVRANCHIN,Croix-Avranchin,La Croix-Avranchin,COM,50487,0,SAINT JAMES,Saint-James,Saint-James 32,2017-01-01,COM,50154,3,CROIX AVRANCHIN,Croix-Avranchin,La Croix-Avranchin,COMD,50154,3,CROIX AVRANCHIN,Croix-Avranchin,La Croix-Avranchin +32,2017-01-01,COM,50154,3,CROIX AVRANCHIN,Croix-Avranchin,La Croix-Avranchin,COM,50487,0,SAINT JAMES,Saint-James,Saint-James 32,2017-01-01,COM,50163,0,DIGULLEVILLE,Digulleville,Digulleville,COM,50041,3,HAGUE,Hague,La Hague 32,2017-01-01,COM,50163,0,DIGULLEVILLE,Digulleville,Digulleville,COMD,50163,0,DIGULLEVILLE,Digulleville,Digulleville 32,2017-01-01,COM,50171,1,ECULLEVILLE,Éculleville,Éculleville,COM,50041,3,HAGUE,Hague,La Hague 32,2017-01-01,COM,50171,1,ECULLEVILLE,Éculleville,Éculleville,COMD,50171,1,ECULLEVILLE,Éculleville,Éculleville -32,2017-01-01,COM,50187,0,FLOTTEMANVILLE HAGUE,Flottemanville-Hague,Flottemanville-Hague,COMD,50187,0,FLOTTEMANVILLE HAGUE,Flottemanville-Hague,Flottemanville-Hague 32,2017-01-01,COM,50187,0,FLOTTEMANVILLE HAGUE,Flottemanville-Hague,Flottemanville-Hague,COM,50041,3,HAGUE,Hague,La Hague -32,2017-01-01,COMD,50212,0,GOURBESVILLE,Gourbesville,Gourbesville,COM,50400,0,PICAUVILLE,Picauville,Picauville +32,2017-01-01,COM,50187,0,FLOTTEMANVILLE HAGUE,Flottemanville-Hague,Flottemanville-Hague,COMD,50187,0,FLOTTEMANVILLE HAGUE,Flottemanville-Hague,Flottemanville-Hague 32,2017-01-01,COMD,50212,0,GOURBESVILLE,Gourbesville,Gourbesville,COMD,50212,0,GOURBESVILLE,Gourbesville,Gourbesville -32,2017-01-01,COM,50220,0,GREVILLE HAGUE,Gréville-Hague,Gréville-Hague,COMD,50220,0,GREVILLE HAGUE,Gréville-Hague,Gréville-Hague +32,2017-01-01,COMD,50212,0,GOURBESVILLE,Gourbesville,Gourbesville,COM,50400,0,PICAUVILLE,Picauville,Picauville 32,2017-01-01,COM,50220,0,GREVILLE HAGUE,Gréville-Hague,Gréville-Hague,COM,50041,3,HAGUE,Hague,La Hague -32,2017-01-01,COM,50242,1,HERQUEVILLE,Herqueville,Herqueville,COMD,50242,1,HERQUEVILLE,Herqueville,Herqueville +32,2017-01-01,COM,50220,0,GREVILLE HAGUE,Gréville-Hague,Gréville-Hague,COMD,50220,0,GREVILLE HAGUE,Gréville-Hague,Gréville-Hague 32,2017-01-01,COM,50242,1,HERQUEVILLE,Herqueville,Herqueville,COM,50041,3,HAGUE,Hague,La Hague +32,2017-01-01,COM,50242,1,HERQUEVILLE,Herqueville,Herqueville,COMD,50242,1,HERQUEVILLE,Herqueville,Herqueville 32,2017-01-01,COMD,50249,0,HOUESVILLE,Houesville,Houesville,COM,50099,0,CARENTAN LES MARAIS,Carentan les Marais,Carentan les Marais 32,2017-01-01,COMD,50249,0,HOUESVILLE,Houesville,Houesville,COMD,50249,0,HOUESVILLE,Houesville,Houesville -32,2017-01-01,COMD,50250,1,HOUTTEVILLE,Houtteville,Houtteville,COM,50400,0,PICAUVILLE,Picauville,Picauville 32,2017-01-01,COMD,50250,1,HOUTTEVILLE,Houtteville,Houtteville,COMD,50250,1,HOUTTEVILLE,Houtteville,Houtteville -32,2017-01-01,COM,50257,0,JOBOURG,Jobourg,Jobourg,COMD,50257,0,JOBOURG,Jobourg,Jobourg +32,2017-01-01,COMD,50250,1,HOUTTEVILLE,Houtteville,Houtteville,COM,50400,0,PICAUVILLE,Picauville,Picauville 32,2017-01-01,COM,50257,0,JOBOURG,Jobourg,Jobourg,COM,50041,3,HAGUE,Hague,La Hague -32,2017-01-01,COM,50260,0,JUVIGNY LE TERTRE,Juvigny-le-Tertre,Juvigny-le-Tertre,COM,50260,0,JUVIGNY LES VALLEES,Juvigny les Vallées,Juvigny les Vallées +32,2017-01-01,COM,50257,0,JOBOURG,Jobourg,Jobourg,COMD,50257,0,JOBOURG,Jobourg,Jobourg 32,2017-01-01,COM,50260,0,JUVIGNY LE TERTRE,Juvigny-le-Tertre,Juvigny-le-Tertre,COMD,50260,0,JUVIGNY LE TERTRE,Juvigny-le-Tertre,Juvigny-le-Tertre -32,2017-01-01,COM,50318,2,MESNIL RAINFRAY,Mesnil-Rainfray,Le Mesnil-Rainfray,COMD,50318,2,MESNIL RAINFRAY,Mesnil-Rainfray,Le Mesnil-Rainfray +32,2017-01-01,COM,50260,0,JUVIGNY LE TERTRE,Juvigny-le-Tertre,Juvigny-le-Tertre,COM,50260,0,JUVIGNY LES VALLEES,Juvigny les Vallées,Juvigny les Vallées 32,2017-01-01,COM,50318,2,MESNIL RAINFRAY,Mesnil-Rainfray,Le Mesnil-Rainfray,COM,50260,0,JUVIGNY LES VALLEES,Juvigny les Vallées,Juvigny les Vallées -32,2017-01-01,COMD,50319,2,MESNIL RAOULT,Mesnil-Raoult,Le Mesnil-Raoult,COMD,50319,2,MESNIL RAOULT,Mesnil-Raoult,Le Mesnil-Raoult -32,2017-01-01,COMD,50319,2,MESNIL RAOULT,Mesnil-Raoult,Le Mesnil-Raoult,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire +32,2017-01-01,COM,50318,2,MESNIL RAINFRAY,Mesnil-Rainfray,Le Mesnil-Rainfray,COMD,50318,2,MESNIL RAINFRAY,Mesnil-Rainfray,Le Mesnil-Rainfray 32,2017-01-01,COM,50323,2,MESNIL TOVE,Mesnil-Tôve,Le Mesnil-Tôve,COM,50260,0,JUVIGNY LES VALLEES,Juvigny les Vallées,Juvigny les Vallées 32,2017-01-01,COM,50323,2,MESNIL TOVE,Mesnil-Tôve,Le Mesnil-Tôve,COMD,50323,2,MESNIL TOVE,Mesnil-Tôve,Le Mesnil-Tôve -32,2017-01-01,COM,50325,2,MESNIL VIGOT,Mesnil-Vigot,Le Mesnil-Vigot,COM,50431,0,REMILLY LES MARAIS,Remilly Les Marais,Remilly Les Marais 32,2017-01-01,COM,50325,2,MESNIL VIGOT,Mesnil-Vigot,Le Mesnil-Vigot,COMD,50325,2,MESNIL VIGOT,Mesnil-Vigot,Le Mesnil-Vigot -32,2017-01-01,COM,50333,4,MOITIERS EN BAUPTOIS,Moitiers-en-Bauptois,Les Moitiers-en-Bauptois,COM,50400,0,PICAUVILLE,Picauville,Picauville +32,2017-01-01,COM,50325,2,MESNIL VIGOT,Mesnil-Vigot,Le Mesnil-Vigot,COM,50431,0,REMILLY LES MARAIS,Remilly Les Marais,Remilly Les Marais 32,2017-01-01,COM,50333,4,MOITIERS EN BAUPTOIS,Moitiers-en-Bauptois,Les Moitiers-en-Bauptois,COMD,50333,4,MOITIERS EN BAUPTOIS,Moitiers-en-Bauptois,Les Moitiers-en-Bauptois +32,2017-01-01,COM,50333,4,MOITIERS EN BAUPTOIS,Moitiers-en-Bauptois,Les Moitiers-en-Bauptois,COM,50400,0,PICAUVILLE,Picauville,Picauville 32,2017-01-01,COM,50337,0,MONTANEL,Montanel,Montanel,COMD,50337,0,MONTANEL,Montanel,Montanel 32,2017-01-01,COM,50337,0,MONTANEL,Montanel,Montanel,COM,50487,0,SAINT JAMES,Saint-James,Saint-James 32,2017-01-01,COM,50385,1,OMONVILLE LA PETITE,Omonville-la-Petite,Omonville-la-Petite,COM,50041,3,HAGUE,Hague,La Hague 32,2017-01-01,COM,50385,1,OMONVILLE LA PETITE,Omonville-la-Petite,Omonville-la-Petite,COMD,50385,1,OMONVILLE LA PETITE,Omonville-la-Petite,Omonville-la-Petite 32,2017-01-01,COM,50386,1,OMONVILLE LA ROGUE,Omonville-la-Rogue,Omonville-la-Rogue,COM,50041,3,HAGUE,Hague,La Hague 32,2017-01-01,COM,50386,1,OMONVILLE LA ROGUE,Omonville-la-Rogue,Omonville-la-Rogue,COMD,50386,1,OMONVILLE LA ROGUE,Omonville-la-Rogue,Omonville-la-Rogue -32,2017-01-01,COMD,50400,0,PICAUVILLE,Picauville,Picauville,COMD,50400,0,PICAUVILLE,Picauville,Picauville 32,2017-01-01,COMD,50400,0,PICAUVILLE,Picauville,Picauville,COM,50400,0,PICAUVILLE,Picauville,Picauville +32,2017-01-01,COMD,50400,0,PICAUVILLE,Picauville,Picauville,COMD,50400,0,PICAUVILLE,Picauville,Picauville 32,2017-01-01,COM,50400,0,PICAUVILLE,Picauville,Picauville,COM,50400,0,PICAUVILLE,Picauville,Picauville +32,2017-01-01,COM,50400,0,PICAUVILLE,Picauville,Picauville,COMD,50400,0,PICAUVILLE,Picauville,Picauville 32,2017-01-01,COM,50404,0,PLACY MONTAIGU,Placy-Montaigu,Placy-Montaigu,COMD,50404,0,PLACY MONTAIGU,Placy-Montaigu,Placy-Montaigu 32,2017-01-01,COM,50404,0,PLACY MONTAIGU,Placy-Montaigu,Placy-Montaigu,COM,50444,0,SAINT AMAND VILLAGES,Saint-Amand-Villages,Saint-Amand-Villages 32,2017-01-01,COM,50431,0,REMILLY SUR LOZON,Remilly-sur-Lozon,Remilly-sur-Lozon,COMD,50431,0,REMILLY SUR LOZON,Remilly-sur-Lozon,Remilly-sur-Lozon 32,2017-01-01,COM,50431,0,REMILLY SUR LOZON,Remilly-sur-Lozon,Remilly-sur-Lozon,COM,50431,0,REMILLY LES MARAIS,Remilly Les Marais,Remilly Les Marais -32,2017-01-01,COM,50444,0,SAINT AMAND,Saint-Amand,Saint-Amand,COM,50444,0,SAINT AMAND VILLAGES,Saint-Amand-Villages,Saint-Amand-Villages 32,2017-01-01,COM,50444,0,SAINT AMAND,Saint-Amand,Saint-Amand,COMD,50444,0,SAINT AMAND,Saint-Amand,Saint-Amand +32,2017-01-01,COM,50444,0,SAINT AMAND,Saint-Amand,Saint-Amand,COM,50444,0,SAINT AMAND VILLAGES,Saint-Amand-Villages,Saint-Amand-Villages 32,2017-01-01,COMD,50458,0,SAINT COME DU MONT,Saint-Côme-du-Mont,Saint-Côme-du-Mont,COM,50099,0,CARENTAN LES MARAIS,Carentan les Marais,Carentan les Marais 32,2017-01-01,COMD,50458,0,SAINT COME DU MONT,Saint-Côme-du-Mont,Saint-Côme-du-Mont,COMD,50458,0,SAINT COME DU MONT,Saint-Côme-du-Mont,Saint-Côme-du-Mont 32,2017-01-01,COM,50460,0,SAINTE CROIX HAGUE,Sainte-Croix-Hague,Sainte-Croix-Hague,COM,50041,3,HAGUE,Hague,La Hague 32,2017-01-01,COM,50460,0,SAINTE CROIX HAGUE,Sainte-Croix-Hague,Sainte-Croix-Hague,COMD,50460,0,SAINTE CROIX HAGUE,Sainte-Croix-Hague,Sainte-Croix-Hague -32,2017-01-01,COM,50465,0,SAINT EBREMOND DE BONFOSSE,Saint-Ébremond-de-Bonfossé,Saint-Ébremond-de-Bonfossé,COMD,50465,0,SAINT EBREMOND DE BONFOSSE,Saint-Ébremond-de-Bonfossé,Saint-Ébremond-de-Bonfossé 32,2017-01-01,COM,50465,0,SAINT EBREMOND DE BONFOSSE,Saint-Ébremond-de-Bonfossé,Saint-Ébremond-de-Bonfossé,COM,50095,0,CANISY,Canisy,Canisy +32,2017-01-01,COM,50465,0,SAINT EBREMOND DE BONFOSSE,Saint-Ébremond-de-Bonfossé,Saint-Ébremond-de-Bonfossé,COMD,50465,0,SAINT EBREMOND DE BONFOSSE,Saint-Ébremond-de-Bonfossé,Saint-Ébremond-de-Bonfossé 32,2017-01-01,COM,50477,0,SAINT GERMAIN DES VAUX,Saint-Germain-des-Vaux,Saint-Germain-des-Vaux,COM,50041,3,HAGUE,Hague,La Hague 32,2017-01-01,COM,50477,0,SAINT GERMAIN DES VAUX,Saint-Germain-des-Vaux,Saint-Germain-des-Vaux,COMD,50477,0,SAINT GERMAIN DES VAUX,Saint-Germain-des-Vaux,Saint-Germain-des-Vaux 32,2017-01-01,COM,50487,0,SAINT JAMES,Saint-James,Saint-James,COMD,50487,0,SAINT JAMES,Saint-James,Saint-James @@ -2980,22 +2814,22 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COMA,50559,0,SAINT SYMPHORIEN LES BUTTES,Saint-Symphorien-les-Buttes,Saint-Symphorien-les-Buttes,COM,50444,0,SAINT AMAND VILLAGES,Saint-Amand-Villages,Saint-Amand-Villages 32,2017-01-01,COM,50600,0,TONNEVILLE,Tonneville,Tonneville,COM,50041,3,HAGUE,Hague,La Hague 32,2017-01-01,COM,50600,0,TONNEVILLE,Tonneville,Tonneville,COMD,50600,0,TONNEVILLE,Tonneville,Tonneville -32,2017-01-01,COM,50608,0,TROISGOTS,Troisgots,Troisgots,COMD,50608,0,TROISGOTS,Troisgots,Troisgots 32,2017-01-01,COM,50608,0,TROISGOTS,Troisgots,Troisgots,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire -32,2017-01-01,COM,50611,1,URVILLE NACQUEVILLE,Urville-Nacqueville,Urville-Nacqueville,COMD,50611,1,URVILLE NACQUEVILLE,Urville-Nacqueville,Urville-Nacqueville +32,2017-01-01,COM,50608,0,TROISGOTS,Troisgots,Troisgots,COMD,50608,0,TROISGOTS,Troisgots,Troisgots 32,2017-01-01,COM,50611,1,URVILLE NACQUEVILLE,Urville-Nacqueville,Urville-Nacqueville,COM,50041,3,HAGUE,Hague,La Hague -32,2017-01-01,COM,50620,0,VASTEVILLE,Vasteville,Vasteville,COMD,50620,0,VASTEVILLE,Vasteville,Vasteville +32,2017-01-01,COM,50611,1,URVILLE NACQUEVILLE,Urville-Nacqueville,Urville-Nacqueville,COMD,50611,1,URVILLE NACQUEVILLE,Urville-Nacqueville,Urville-Nacqueville 32,2017-01-01,COM,50620,0,VASTEVILLE,Vasteville,Vasteville,COM,50041,3,HAGUE,Hague,La Hague -32,2017-01-01,COM,50623,0,VAUVILLE,Vauville,Vauville,COMD,50623,0,VAUVILLE,Vauville,Vauville +32,2017-01-01,COM,50620,0,VASTEVILLE,Vasteville,Vasteville,COMD,50620,0,VASTEVILLE,Vasteville,Vasteville 32,2017-01-01,COM,50623,0,VAUVILLE,Vauville,Vauville,COM,50041,3,HAGUE,Hague,La Hague -32,2017-01-01,COM,50627,0,VERGONCEY,Vergoncey,Vergoncey,COMD,50627,0,VERGONCEY,Vergoncey,Vergoncey +32,2017-01-01,COM,50623,0,VAUVILLE,Vauville,Vauville,COMD,50623,0,VAUVILLE,Vauville,Vauville 32,2017-01-01,COM,50627,0,VERGONCEY,Vergoncey,Vergoncey,COM,50487,0,SAINT JAMES,Saint-James,Saint-James +32,2017-01-01,COM,50627,0,VERGONCEY,Vergoncey,Vergoncey,COMD,50627,0,VERGONCEY,Vergoncey,Vergoncey 32,2017-01-01,COM,50631,4,VEYS,Veys,Les Veys,COM,50099,0,CARENTAN LES MARAIS,Carentan les Marais,Carentan les Marais 32,2017-01-01,COM,50631,4,VEYS,Veys,Les Veys,COMD,50631,4,VEYS,Veys,Les Veys -32,2017-01-01,COM,50640,0,VILLIERS LE PRE,Villiers-le-Pré,Villiers-le-Pré,COMD,50640,0,VILLIERS LE PRE,Villiers-le-Pré,Villiers-le-Pré 32,2017-01-01,COM,50640,0,VILLIERS LE PRE,Villiers-le-Pré,Villiers-le-Pré,COM,50487,0,SAINT JAMES,Saint-James,Saint-James -32,2017-01-01,COMD,50642,0,VINDEFONTAINE,Vindefontaine,Vindefontaine,COMD,50642,0,VINDEFONTAINE,Vindefontaine,Vindefontaine +32,2017-01-01,COM,50640,0,VILLIERS LE PRE,Villiers-le-Pré,Villiers-le-Pré,COMD,50640,0,VILLIERS LE PRE,Villiers-le-Pré,Villiers-le-Pré 32,2017-01-01,COMD,50642,0,VINDEFONTAINE,Vindefontaine,Vindefontaine,COM,50400,0,PICAUVILLE,Picauville,Picauville +32,2017-01-01,COMD,50642,0,VINDEFONTAINE,Vindefontaine,Vindefontaine,COMD,50642,0,VINDEFONTAINE,Vindefontaine,Vindefontaine 32,2017-01-01,COM,51075,0,BOURGOGNE,Bourgogne,Bourgogne,COM,51075,0,BOURGOGNE FRESNE,Bourgogne-Fresne,Bourgogne-Fresne 32,2017-01-01,COM,51075,0,BOURGOGNE,Bourgogne,Bourgogne,COMD,51075,0,BOURGOGNE,Bourgogne,Bourgogne 32,2017-01-01,COM,51171,0,CORMICY,Cormicy,Cormicy,COM,51171,0,CORMICY,Cormicy,Cormicy @@ -3004,188 +2838,188 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,51261,0,FRESNE LES REIMS,Fresne-lès-Reims,Fresne-lès-Reims,COMD,51261,0,FRESNE LES REIMS,Fresne-lès-Reims,Fresne-lès-Reims 32,2017-01-01,COM,51664,0,GERNICOURT,Gernicourt,Gernicourt,COM,51171,0,CORMICY,Cormicy,Cormicy 32,2017-01-01,COM,51664,0,GERNICOURT,Gernicourt,Gernicourt,COMD,51664,0,GERNICOURT,Gernicourt,Gernicourt -32,2017-01-01,COMA,52018,1,ARGENTOLLES,Argentolles,Argentolles,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey les Deux Églises,Colombey les Deux Églises 32,2017-01-01,COMA,52018,1,ARGENTOLLES,Argentolles,Argentolles,COMD,52018,1,ARGENTOLLES,Argentolles,Argentolles +32,2017-01-01,COMA,52018,1,ARGENTOLLES,Argentolles,Argentolles,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey les Deux Églises,Colombey les Deux Églises 32,2017-01-01,COMA,52049,0,BIERNES,Biernes,Biernes,COMD,52049,0,BIERNES,Biernes,Biernes 32,2017-01-01,COMA,52049,0,BIERNES,Biernes,Biernes,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey les Deux Églises,Colombey les Deux Églises 32,2017-01-01,COMA,52052,0,BLAISE,Blaise,Blaise,COMD,52052,0,BLAISE,Blaise,Blaise 32,2017-01-01,COMA,52052,0,BLAISE,Blaise,Blaise,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey les Deux Églises,Colombey les Deux Églises 32,2017-01-01,COMA,52100,0,CHAMPCOURT,Champcourt,Champcourt,COMD,52100,0,CHAMPCOURT,Champcourt,Champcourt 32,2017-01-01,COMA,52100,0,CHAMPCOURT,Champcourt,Champcourt,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey les Deux Églises,Colombey les Deux Églises -32,2017-01-01,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey-les-Deux-Églises,Colombey-les-Deux-Églises,COMD,52140,0,COLOMBEY LES DEUX EGLISES,Colombey-les-Deux-Églises,Colombey-les-Deux-Églises 32,2017-01-01,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey-les-Deux-Églises,Colombey-les-Deux-Églises,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey les Deux Églises,Colombey les Deux Églises -32,2017-01-01,COMA,52238,1,HARRICOURT,Harricourt,Harricourt,COMD,52238,1,HARRICOURT,Harricourt,Harricourt +32,2017-01-01,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey-les-Deux-Églises,Colombey-les-Deux-Églises,COMD,52140,0,COLOMBEY LES DEUX EGLISES,Colombey-les-Deux-Églises,Colombey-les-Deux-Églises 32,2017-01-01,COMA,52238,1,HARRICOURT,Harricourt,Harricourt,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey les Deux Églises,Colombey les Deux Églises +32,2017-01-01,COMA,52238,1,HARRICOURT,Harricourt,Harricourt,COMD,52238,1,HARRICOURT,Harricourt,Harricourt 32,2017-01-01,COM,52262,0,LAMOTHE EN BLAISY,Lamothe-en-Blaisy,Lamothe-en-Blaisy,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey les Deux Églises,Colombey les Deux Églises 32,2017-01-01,COM,52262,0,LAMOTHE EN BLAISY,Lamothe-en-Blaisy,Lamothe-en-Blaisy,COMD,52262,0,LAMOTHE EN BLAISY,Lamothe-en-Blaisy,Lamothe-en-Blaisy -32,2017-01-01,COMA,52279,0,LAVILLENEUVE AUX FRESNES,Lavilleneuve-aux-Fresnes,Lavilleneuve-aux-Fresnes,COMD,52279,0,LAVILLENEUVE AUX FRESNES,Lavilleneuve-aux-Fresnes,Lavilleneuve-aux-Fresnes 32,2017-01-01,COMA,52279,0,LAVILLENEUVE AUX FRESNES,Lavilleneuve-aux-Fresnes,Lavilleneuve-aux-Fresnes,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey les Deux Églises,Colombey les Deux Églises -32,2017-01-01,COMA,52404,0,PRATZ,Pratz,Pratz,COMD,52404,0,PRATZ,Pratz,Pratz +32,2017-01-01,COMA,52279,0,LAVILLENEUVE AUX FRESNES,Lavilleneuve-aux-Fresnes,Lavilleneuve-aux-Fresnes,COMD,52279,0,LAVILLENEUVE AUX FRESNES,Lavilleneuve-aux-Fresnes,Lavilleneuve-aux-Fresnes 32,2017-01-01,COMA,52404,0,PRATZ,Pratz,Pratz,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey les Deux Églises,Colombey les Deux Églises +32,2017-01-01,COMA,52404,0,PRATZ,Pratz,Pratz,COMD,52404,0,PRATZ,Pratz,Pratz 32,2017-01-01,COM,53017,0,BALLEE,Ballée,Ballée,COM,53017,0,VAL DU MAINE,Val-du-Maine,Val-du-Maine 32,2017-01-01,COM,53017,0,BALLEE,Ballée,Ballée,COMD,53017,0,BALLEE,Ballée,Ballée -32,2017-01-01,COM,53032,0,BLANDOUET,Blandouet,Blandouet,COM,53228,0,BLANDOUET SAINT JEAN,Blandouet-Saint Jean,Blandouet-Saint Jean 32,2017-01-01,COM,53032,0,BLANDOUET,Blandouet,Blandouet,COMD,53032,0,BLANDOUET,Blandouet,Blandouet +32,2017-01-01,COM,53032,0,BLANDOUET,Blandouet,Blandouet,COM,53228,0,BLANDOUET SAINT JEAN,Blandouet-Saint Jean,Blandouet-Saint Jean 32,2017-01-01,COM,53095,1,EPINEUX LE SEGUIN,Épineux-le-Seguin,Épineux-le-Seguin,COM,53017,0,VAL DU MAINE,Val-du-Maine,Val-du-Maine 32,2017-01-01,COM,53095,1,EPINEUX LE SEGUIN,Épineux-le-Seguin,Épineux-le-Seguin,COMD,53095,1,EPINEUX LE SEGUIN,Épineux-le-Seguin,Épineux-le-Seguin 32,2017-01-01,COM,53161,0,MONTSURS,Montsûrs,Montsûrs,COM,53161,0,MONTSURS SAINT CENERE,Montsûrs-Saint-Céneré,Montsûrs-Saint-Céneré 32,2017-01-01,COM,53161,0,MONTSURS,Montsûrs,Montsûrs,COMD,53161,0,MONTSURS,Montsûrs,Montsûrs 32,2017-01-01,COM,53205,0,SAINT CENERE,Saint-Céneré,Saint-Céneré,COM,53161,0,MONTSURS SAINT CENERE,Montsûrs-Saint-Céneré,Montsûrs-Saint-Céneré 32,2017-01-01,COM,53205,0,SAINT CENERE,Saint-Céneré,Saint-Céneré,COMD,53205,0,SAINT CENERE,Saint-Céneré,Saint-Céneré -32,2017-01-01,COM,53228,0,SAINT JEAN SUR ERVE,Saint-Jean-sur-Erve,Saint-Jean-sur-Erve,COMD,53228,0,SAINT JEAN SUR ERVE,Saint-Jean-sur-Erve,Saint-Jean-sur-Erve 32,2017-01-01,COM,53228,0,SAINT JEAN SUR ERVE,Saint-Jean-sur-Erve,Saint-Jean-sur-Erve,COM,53228,0,BLANDOUET SAINT JEAN,Blandouet-Saint Jean,Blandouet-Saint Jean +32,2017-01-01,COM,53228,0,SAINT JEAN SUR ERVE,Saint-Jean-sur-Erve,Saint-Jean-sur-Erve,COMD,53228,0,SAINT JEAN SUR ERVE,Saint-Jean-sur-Erve,Saint-Jean-sur-Erve 32,2017-01-01,COM,54099,0,BRIEY,Briey,Briey,COM,54099,0,VAL DE BRIEY,Val de Briey,Val de Briey 32,2017-01-01,COM,54099,0,BRIEY,Briey,Briey,COMD,54099,0,BRIEY,Briey,Briey 32,2017-01-01,COM,54341,0,MANCE,Mance,Mance,COM,54099,0,VAL DE BRIEY,Val de Briey,Val de Briey 32,2017-01-01,COM,54341,0,MANCE,Mance,Mance,COMD,54341,0,MANCE,Mance,Mance -32,2017-01-01,COM,54342,0,MANCIEULLES,Mancieulles,Mancieulles,COMD,54342,0,MANCIEULLES,Mancieulles,Mancieulles 32,2017-01-01,COM,54342,0,MANCIEULLES,Mancieulles,Mancieulles,COM,54099,0,VAL DE BRIEY,Val de Briey,Val de Briey +32,2017-01-01,COM,54342,0,MANCIEULLES,Mancieulles,Mancieulles,COMD,54342,0,MANCIEULLES,Mancieulles,Mancieulles 32,2017-01-01,COM,56033,0,CARENTOIR,Carentoir,Carentoir,COM,56033,0,CARENTOIR,Carentoir,Carentoir 32,2017-01-01,COM,56038,3,CHAPELLE GACELINE,Chapelle-Gaceline,La Chapelle-Gaceline,COMD,56038,3,CHAPELLE GACELINE,Chapelle-Gaceline,La Chapelle-Gaceline 32,2017-01-01,COM,56038,3,CHAPELLE GACELINE,Chapelle-Gaceline,La Chapelle-Gaceline,COM,56061,3,GACILLY,Gacilly,La Gacilly -32,2017-01-01,COM,56061,3,GACILLY,Gacilly,La Gacilly,COMD,56061,3,GACILLY,Gacilly,La Gacilly 32,2017-01-01,COM,56061,3,GACILLY,Gacilly,La Gacilly,COM,56061,3,GACILLY,Gacilly,La Gacilly -32,2017-01-01,COM,56064,0,GLENAC,Glénac,Glénac,COMD,56064,0,GLENAC,Glénac,Glénac +32,2017-01-01,COM,56061,3,GACILLY,Gacilly,La Gacilly,COMD,56061,3,GACILLY,Gacilly,La Gacilly 32,2017-01-01,COM,56064,0,GLENAC,Glénac,Glénac,COM,56061,3,GACILLY,Gacilly,La Gacilly +32,2017-01-01,COM,56064,0,GLENAC,Glénac,Glénac,COMD,56064,0,GLENAC,Glénac,Glénac 32,2017-01-01,COM,56183,0,QUELNEUC,Quelneuc,Quelneuc,COM,56033,0,CARENTOIR,Carentoir,Carentoir 32,2017-01-01,COM,56183,0,QUELNEUC,Quelneuc,Quelneuc,COMD,56183,0,QUELNEUC,Quelneuc,Quelneuc -32,2017-01-01,COM,57482,0,MONTOY FLANVILLE,Montoy-Flanville,Montoy-Flanville,COM,57482,1,OGY MONTOY FLANVILLE,Ogy-Montoy-Flanville,Ogy-Montoy-Flanville 32,2017-01-01,COM,57482,0,MONTOY FLANVILLE,Montoy-Flanville,Montoy-Flanville,COMD,57482,0,MONTOY FLANVILLE,Montoy-Flanville,Montoy-Flanville +32,2017-01-01,COM,57482,0,MONTOY FLANVILLE,Montoy-Flanville,Montoy-Flanville,COM,57482,1,OGY MONTOY FLANVILLE,Ogy-Montoy-Flanville,Ogy-Montoy-Flanville 32,2017-01-01,COM,57523,1,OGY,Ogy,Ogy,COM,57482,1,OGY MONTOY FLANVILLE,Ogy-Montoy-Flanville,Ogy-Montoy-Flanville 32,2017-01-01,COM,57523,1,OGY,Ogy,Ogy,COMD,57523,1,OGY,Ogy,Ogy 32,2017-01-01,COM,58022,0,BALLERAY,Balleray,Balleray,COMD,58022,0,BALLERAY,Balleray,Balleray 32,2017-01-01,COM,58022,0,BALLERAY,Balleray,Balleray,COM,58204,0,VAUX D AMOGNES,Vaux d'Amognes,Vaux d'Amognes -32,2017-01-01,COM,58204,1,OUROUER,Ourouër,Ourouër,COM,58204,0,VAUX D AMOGNES,Vaux d'Amognes,Vaux d'Amognes 32,2017-01-01,COM,58204,1,OUROUER,Ourouër,Ourouër,COMD,58204,1,OUROUER,Ourouër,Ourouër +32,2017-01-01,COM,58204,1,OUROUER,Ourouër,Ourouër,COM,58204,0,VAUX D AMOGNES,Vaux d'Amognes,Vaux d'Amognes 32,2017-01-01,COM,60029,1,AUNEUIL,Auneuil,Auneuil,COMD,60029,1,AUNEUIL,Auneuil,Auneuil 32,2017-01-01,COM,60029,1,AUNEUIL,Auneuil,Auneuil,COM,60029,1,AUNEUIL,Auneuil,Auneuil -32,2017-01-01,COM,60196,2,DELUGE,Déluge,Le Déluge,COM,60196,3,DRENNE,Drenne,La Drenne 32,2017-01-01,COM,60196,2,DELUGE,Déluge,Le Déluge,COMD,60196,2,DELUGE,Déluge,Le Déluge -32,2017-01-01,COM,60453,3,NEUVILLE D AUMONT,Neuville-d'Aumont,La Neuville-d'Aumont,COMD,60453,3,NEUVILLE D AUMONT,Neuville-d'Aumont,La Neuville-d'Aumont +32,2017-01-01,COM,60196,2,DELUGE,Déluge,Le Déluge,COM,60196,3,DRENNE,Drenne,La Drenne 32,2017-01-01,COM,60453,3,NEUVILLE D AUMONT,Neuville-d'Aumont,La Neuville-d'Aumont,COM,60196,3,DRENNE,Drenne,La Drenne -32,2017-01-01,COM,60532,0,RESSONS L ABBAYE,Ressons-l'Abbaye,Ressons-l'Abbaye,COMD,60532,0,RESSONS L ABBAYE,Ressons-l'Abbaye,Ressons-l'Abbaye +32,2017-01-01,COM,60453,3,NEUVILLE D AUMONT,Neuville-d'Aumont,La Neuville-d'Aumont,COMD,60453,3,NEUVILLE D AUMONT,Neuville-d'Aumont,La Neuville-d'Aumont 32,2017-01-01,COM,60532,0,RESSONS L ABBAYE,Ressons-l'Abbaye,Ressons-l'Abbaye,COM,60196,3,DRENNE,Drenne,La Drenne -32,2017-01-01,COM,60649,0,TROUSSURES,Troussures,Troussures,COMD,60649,0,TROUSSURES,Troussures,Troussures +32,2017-01-01,COM,60532,0,RESSONS L ABBAYE,Ressons-l'Abbaye,Ressons-l'Abbaye,COMD,60532,0,RESSONS L ABBAYE,Ressons-l'Abbaye,Ressons-l'Abbaye 32,2017-01-01,COM,60649,0,TROUSSURES,Troussures,Troussures,COM,60029,1,AUNEUIL,Auneuil,Auneuil -32,2017-01-01,COM,61009,1,AUBRY EN EXMES,Aubry-en-Exmes,Aubry-en-Exmes,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge +32,2017-01-01,COM,60649,0,TROUSSURES,Troussures,Troussures,COMD,60649,0,TROUSSURES,Troussures,Troussures 32,2017-01-01,COM,61009,1,AUBRY EN EXMES,Aubry-en-Exmes,Aubry-en-Exmes,COMD,61009,1,AUBRY EN EXMES,Aubry-en-Exmes,Aubry-en-Exmes +32,2017-01-01,COM,61009,1,AUBRY EN EXMES,Aubry-en-Exmes,Aubry-en-Exmes,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge 32,2017-01-01,COM,61019,1,AVERNES SOUS EXMES,Avernes-sous-Exmes,Avernes-sous-Exmes,COMD,61019,1,AVERNES SOUS EXMES,Avernes-sous-Exmes,Avernes-sous-Exmes 32,2017-01-01,COM,61019,1,AVERNES SOUS EXMES,Avernes-sous-Exmes,Avernes-sous-Exmes,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge 32,2017-01-01,COM,61057,2,BOURG SAINT LEONARD,Bourg-Saint-Léonard,Le Bourg-Saint-Léonard,COMD,61057,2,BOURG SAINT LEONARD,Bourg-Saint-Léonard,Le Bourg-Saint-Léonard 32,2017-01-01,COM,61057,2,BOURG SAINT LEONARD,Bourg-Saint-Léonard,Le Bourg-Saint-Léonard,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge 32,2017-01-01,COM,61083,0,CHAMBOIS,Chambois,Chambois,COMD,61083,0,CHAMBOIS,Chambois,Chambois 32,2017-01-01,COM,61083,0,CHAMBOIS,Chambois,Chambois,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge -32,2017-01-01,COM,61110,3,COCHERE,Cochère,La Cochère,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge 32,2017-01-01,COM,61110,3,COCHERE,Cochère,La Cochère,COMD,61110,3,COCHERE,Cochère,La Cochère +32,2017-01-01,COM,61110,3,COCHERE,Cochère,La Cochère,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge 32,2017-01-01,COM,61131,0,COURMENIL,Courménil,Courménil,COMD,61131,0,COURMENIL,Courménil,Courménil 32,2017-01-01,COM,61131,0,COURMENIL,Courménil,Courménil,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge -32,2017-01-01,COM,61154,1,EPERRAIS,Eperrais,Eperrais,COM,61196,0,BELFORET EN PERCHE,Belforêt-en-Perche,Belforêt-en-Perche 32,2017-01-01,COM,61154,1,EPERRAIS,Eperrais,Eperrais,COMD,61154,1,EPERRAIS,Eperrais,Eperrais -32,2017-01-01,COM,61157,1,EXMES,Exmes,Exmes,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge +32,2017-01-01,COM,61154,1,EPERRAIS,Eperrais,Eperrais,COM,61196,0,BELFORET EN PERCHE,Belforêt-en-Perche,Belforêt-en-Perche 32,2017-01-01,COM,61157,1,EXMES,Exmes,Exmes,COMD,61157,1,EXMES,Exmes,Exmes -32,2017-01-01,COM,61161,0,FEL,Fel,Fel,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge +32,2017-01-01,COM,61157,1,EXMES,Exmes,Exmes,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge 32,2017-01-01,COM,61161,0,FEL,Fel,Fel,COMD,61161,0,FEL,Fel,Fel +32,2017-01-01,COM,61161,0,FEL,Fel,Fel,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge 32,2017-01-01,COM,61196,2,GUE DE LA CHAINE,Gué-de-la-Chaîne,Le Gué-de-la-Chaîne,COMD,61196,2,GUE DE LA CHAINE,Gué-de-la-Chaîne,Le Gué-de-la-Chaîne 32,2017-01-01,COM,61196,2,GUE DE LA CHAINE,Gué-de-la-Chaîne,Le Gué-de-la-Chaîne,COM,61196,0,BELFORET EN PERCHE,Belforêt-en-Perche,Belforêt-en-Perche 32,2017-01-01,COM,61315,1,OMMEEL,Omméel,Omméel,COMD,61315,1,OMMEEL,Omméel,Omméel 32,2017-01-01,COM,61315,1,OMMEEL,Omméel,Omméel,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge -32,2017-01-01,COM,61318,1,ORIGNY LE BUTIN,Origny-le-Butin,Origny-le-Butin,COMD,61318,1,ORIGNY LE BUTIN,Origny-le-Butin,Origny-le-Butin 32,2017-01-01,COM,61318,1,ORIGNY LE BUTIN,Origny-le-Butin,Origny-le-Butin,COM,61196,0,BELFORET EN PERCHE,Belforêt-en-Perche,Belforêt-en-Perche +32,2017-01-01,COM,61318,1,ORIGNY LE BUTIN,Origny-le-Butin,Origny-le-Butin,COMD,61318,1,ORIGNY LE BUTIN,Origny-le-Butin,Origny-le-Butin 32,2017-01-01,COM,61325,3,PERRIERE,Perrière,La Perrière,COM,61196,0,BELFORET EN PERCHE,Belforêt-en-Perche,Belforêt-en-Perche 32,2017-01-01,COM,61325,3,PERRIERE,Perrière,La Perrière,COMD,61325,3,PERRIERE,Perrière,La Perrière -32,2017-01-01,COM,61437,0,SAINT OUEN DE LA COUR,Saint-Ouen-de-la-Cour,Saint-Ouen-de-la-Cour,COMD,61437,0,SAINT OUEN DE LA COUR,Saint-Ouen-de-la-Cour,Saint-Ouen-de-la-Cour 32,2017-01-01,COM,61437,0,SAINT OUEN DE LA COUR,Saint-Ouen-de-la-Cour,Saint-Ouen-de-la-Cour,COM,61196,0,BELFORET EN PERCHE,Belforêt-en-Perche,Belforêt-en-Perche +32,2017-01-01,COM,61437,0,SAINT OUEN DE LA COUR,Saint-Ouen-de-la-Cour,Saint-Ouen-de-la-Cour,COMD,61437,0,SAINT OUEN DE LA COUR,Saint-Ouen-de-la-Cour,Saint-Ouen-de-la-Cour 32,2017-01-01,COM,61449,0,SAINT PIERRE LA RIVIERE,Saint-Pierre-la-Rivière,Saint-Pierre-la-Rivière,COMD,61449,0,SAINT PIERRE LA RIVIERE,Saint-Pierre-la-Rivière,Saint-Pierre-la-Rivière 32,2017-01-01,COM,61449,0,SAINT PIERRE LA RIVIERE,Saint-Pierre-la-Rivière,Saint-Pierre-la-Rivière,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge 32,2017-01-01,COM,61471,0,SERIGNY,Sérigny,Sérigny,COM,61196,0,BELFORET EN PERCHE,Belforêt-en-Perche,Belforêt-en-Perche 32,2017-01-01,COM,61471,0,SERIGNY,Sérigny,Sérigny,COMD,61471,0,SERIGNY,Sérigny,Sérigny -32,2017-01-01,COM,61474,0,SILLY EN GOUFFERN,Silly-en-Gouffern,Silly-en-Gouffern,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge 32,2017-01-01,COM,61474,0,SILLY EN GOUFFERN,Silly-en-Gouffern,Silly-en-Gouffern,COMD,61474,0,SILLY EN GOUFFERN,Silly-en-Gouffern,Silly-en-Gouffern +32,2017-01-01,COM,61474,0,SILLY EN GOUFFERN,Silly-en-Gouffern,Silly-en-Gouffern,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge 32,2017-01-01,COM,61477,0,SURVIE,Survie,Survie,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge 32,2017-01-01,COM,61477,0,SURVIE,Survie,Survie,COMD,61477,0,SURVIE,Survie,Survie 32,2017-01-01,COM,61496,1,UROU ET CRENNES,Urou-et-Crennes,Urou-et-Crennes,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge 32,2017-01-01,COM,61496,1,UROU ET CRENNES,Urou-et-Crennes,Urou-et-Crennes,COMD,61496,1,UROU ET CRENNES,Urou-et-Crennes,Urou-et-Crennes -32,2017-01-01,COM,61504,0,VILLEBADIN,Villebadin,Villebadin,COMD,61504,0,VILLEBADIN,Villebadin,Villebadin 32,2017-01-01,COM,61504,0,VILLEBADIN,Villebadin,Villebadin,COM,61474,0,GOUFFERN EN AUGE,Gouffern en Auge,Gouffern en Auge -32,2017-01-01,COM,62294,1,ENGUINEGATTE,Enguinegatte,Enguinegatte,COM,62295,1,ENQUIN LEZ GUINEGATTE,Enquin-lez-Guinegatte,Enquin-lez-Guinegatte +32,2017-01-01,COM,61504,0,VILLEBADIN,Villebadin,Villebadin,COMD,61504,0,VILLEBADIN,Villebadin,Villebadin 32,2017-01-01,COM,62294,1,ENGUINEGATTE,Enguinegatte,Enguinegatte,COMD,62294,1,ENGUINEGATTE,Enguinegatte,Enguinegatte -32,2017-01-01,COM,62295,1,ENQUIN LES MINES,Enquin-les-Mines,Enquin-les-Mines,COM,62295,1,ENQUIN LEZ GUINEGATTE,Enquin-lez-Guinegatte,Enquin-lez-Guinegatte +32,2017-01-01,COM,62294,1,ENGUINEGATTE,Enguinegatte,Enguinegatte,COM,62295,1,ENQUIN LEZ GUINEGATTE,Enquin-lez-Guinegatte,Enquin-lez-Guinegatte 32,2017-01-01,COM,62295,1,ENQUIN LES MINES,Enquin-les-Mines,Enquin-les-Mines,COMD,62295,1,ENQUIN LES MINES,Enquin-les-Mines,Enquin-les-Mines +32,2017-01-01,COM,62295,1,ENQUIN LES MINES,Enquin-les-Mines,Enquin-les-Mines,COM,62295,1,ENQUIN LEZ GUINEGATTE,Enquin-lez-Guinegatte,Enquin-lez-Guinegatte 32,2017-01-01,COM,64020,1,ANCE,Ance,Ance,COMD,64020,1,ANCE,Ance,Ance 32,2017-01-01,COM,64020,1,ANCE,Ance,Ance,COM,64225,1,ANCE FEAS,Ance Féas,Ance Féas -32,2017-01-01,COM,64225,0,FEAS,Féas,Féas,COMD,64225,0,FEAS,Féas,Féas 32,2017-01-01,COM,64225,0,FEAS,Féas,Féas,COM,64225,1,ANCE FEAS,Ance Féas,Ance Féas +32,2017-01-01,COM,64225,0,FEAS,Féas,Féas,COMD,64225,0,FEAS,Féas,Féas 32,2017-01-01,COM,65081,0,BENQUE,Benqué,Benqué,COM,65081,0,BENQUE MOLERE,Benqué-Molère,Benqué-Molère 32,2017-01-01,COM,65312,0,MOLERE,Molère,Molère,COM,65081,0,BENQUE MOLERE,Benqué-Molère,Benqué-Molère 32,2017-01-01,COM,65399,0,SALIGOS,Saligos,Saligos,COM,65399,0,SALIGOS,Saligos,Saligos 32,2017-01-01,COM,65480,0,VIZOS,Vizos,Vizos,COM,65399,0,SALIGOS,Saligos,Saligos 32,2017-01-01,COM,67202,0,HOCHFELDEN,Hochfelden,Hochfelden,COM,67202,0,HOCHFELDEN,Hochfelden,Hochfelden -32,2017-01-01,COM,67439,0,SCHAFFHOUSE SUR ZORN,Schaffhouse-sur-Zorn,Schaffhouse-sur-Zorn,COMD,67439,0,SCHAFFHOUSE SUR ZORN,Schaffhouse-sur-Zorn,Schaffhouse-sur-Zorn 32,2017-01-01,COM,67439,0,SCHAFFHOUSE SUR ZORN,Schaffhouse-sur-Zorn,Schaffhouse-sur-Zorn,COM,67202,0,HOCHFELDEN,Hochfelden,Hochfelden +32,2017-01-01,COM,67439,0,SCHAFFHOUSE SUR ZORN,Schaffhouse-sur-Zorn,Schaffhouse-sur-Zorn,COMD,67439,0,SCHAFFHOUSE SUR ZORN,Schaffhouse-sur-Zorn,Schaffhouse-sur-Zorn 32,2017-01-01,COM,69024,2,BOIS D OINGT,Bois-d'Oingt,Le Bois-d'Oingt,COMD,69024,2,BOIS D OINGT,Bois-d'Oingt,Le Bois-d'Oingt 32,2017-01-01,COM,69024,2,BOIS D OINGT,Bois-d'Oingt,Le Bois-d'Oingt,COM,69024,0,VAL D OINGT,Val d'Oingt,Val d'Oingt -32,2017-01-01,COM,69114,0,LIERGUES,Liergues,Liergues,COM,69159,0,PORTE DES PIERRES DOREES,Porte des Pierres Dorées,Porte des Pierres Dorées 32,2017-01-01,COM,69114,0,LIERGUES,Liergues,Liergues,COMD,69114,0,LIERGUES,Liergues,Liergues +32,2017-01-01,COM,69114,0,LIERGUES,Liergues,Liergues,COM,69159,0,PORTE DES PIERRES DOREES,Porte des Pierres Dorées,Porte des Pierres Dorées 32,2017-01-01,COM,69146,1,OINGT,Oingt,Oingt,COM,69024,0,VAL D OINGT,Val d'Oingt,Val d'Oingt 32,2017-01-01,COM,69146,1,OINGT,Oingt,Oingt,COMD,69146,1,OINGT,Oingt,Oingt -32,2017-01-01,COM,69159,0,POUILLY LE MONIAL,Pouilly-le-Monial,Pouilly-le-Monial,COMD,69159,0,POUILLY LE MONIAL,Pouilly-le-Monial,Pouilly-le-Monial 32,2017-01-01,COM,69159,0,POUILLY LE MONIAL,Pouilly-le-Monial,Pouilly-le-Monial,COM,69159,0,PORTE DES PIERRES DOREES,Porte des Pierres Dorées,Porte des Pierres Dorées +32,2017-01-01,COM,69159,0,POUILLY LE MONIAL,Pouilly-le-Monial,Pouilly-le-Monial,COMD,69159,0,POUILLY LE MONIAL,Pouilly-le-Monial,Pouilly-le-Monial 32,2017-01-01,COM,69195,0,SAINT DIDIER SOUS RIVERIE,Saint-Didier-sous-Riverie,Saint-Didier-sous-Riverie,COMD,69195,0,SAINT DIDIER SOUS RIVERIE,Saint-Didier-sous-Riverie,Saint-Didier-sous-Riverie 32,2017-01-01,COM,69195,0,SAINT DIDIER SOUS RIVERIE,Saint-Didier-sous-Riverie,Saint-Didier-sous-Riverie,COM,69228,0,CHABANIERE,Chabanière,Chabanière -32,2017-01-01,COM,69222,0,SAINT LAURENT D OINGT,Saint-Laurent-d'Oingt,Saint-Laurent-d'Oingt,COMD,69222,0,SAINT LAURENT D OINGT,Saint-Laurent-d'Oingt,Saint-Laurent-d'Oingt 32,2017-01-01,COM,69222,0,SAINT LAURENT D OINGT,Saint-Laurent-d'Oingt,Saint-Laurent-d'Oingt,COM,69024,0,VAL D OINGT,Val d'Oingt,Val d'Oingt -32,2017-01-01,COM,69228,0,SAINT MAURICE SUR DARGOIRE,Saint-Maurice-sur-Dargoire,Saint-Maurice-sur-Dargoire,COMD,69228,0,SAINT MAURICE SUR DARGOIRE,Saint-Maurice-sur-Dargoire,Saint-Maurice-sur-Dargoire +32,2017-01-01,COM,69222,0,SAINT LAURENT D OINGT,Saint-Laurent-d'Oingt,Saint-Laurent-d'Oingt,COMD,69222,0,SAINT LAURENT D OINGT,Saint-Laurent-d'Oingt,Saint-Laurent-d'Oingt 32,2017-01-01,COM,69228,0,SAINT MAURICE SUR DARGOIRE,Saint-Maurice-sur-Dargoire,Saint-Maurice-sur-Dargoire,COM,69228,0,CHABANIERE,Chabanière,Chabanière -32,2017-01-01,COM,69237,0,SAINT SORLIN,Saint-Sorlin,Saint-Sorlin,COMD,69237,0,SAINT SORLIN,Saint-Sorlin,Saint-Sorlin +32,2017-01-01,COM,69228,0,SAINT MAURICE SUR DARGOIRE,Saint-Maurice-sur-Dargoire,Saint-Maurice-sur-Dargoire,COMD,69228,0,SAINT MAURICE SUR DARGOIRE,Saint-Maurice-sur-Dargoire,Saint-Maurice-sur-Dargoire 32,2017-01-01,COM,69237,0,SAINT SORLIN,Saint-Sorlin,Saint-Sorlin,COM,69228,0,CHABANIERE,Chabanière,Chabanière +32,2017-01-01,COM,69237,0,SAINT SORLIN,Saint-Sorlin,Saint-Sorlin,COMD,69237,0,SAINT SORLIN,Saint-Sorlin,Saint-Sorlin 32,2017-01-01,COM,70345,0,MIELLIN,Miellin,Miellin,COMD,70345,0,MIELLIN,Miellin,Miellin 32,2017-01-01,COM,70345,0,MIELLIN,Miellin,Miellin,COM,70489,0,SERVANCE MIELLIN,Servance-Miellin,Servance-Miellin -32,2017-01-01,COM,70489,0,SERVANCE,Servance,Servance,COMD,70489,0,SERVANCE,Servance,Servance 32,2017-01-01,COM,70489,0,SERVANCE,Servance,Servance,COM,70489,0,SERVANCE MIELLIN,Servance-Miellin,Servance-Miellin -32,2017-01-01,COM,71180,0,DONZY LE NATIONAL,Donzy-le-National,Donzy-le-National,COM,71582,3,VINEUSE SUR FREGANDE,Vineuse sur Fregande,La Vineuse sur Fregande +32,2017-01-01,COM,70489,0,SERVANCE,Servance,Servance,COMD,70489,0,SERVANCE,Servance,Servance 32,2017-01-01,COM,71180,0,DONZY LE NATIONAL,Donzy-le-National,Donzy-le-National,COMD,71180,0,DONZY LE NATIONAL,Donzy-le-National,Donzy-le-National +32,2017-01-01,COM,71180,0,DONZY LE NATIONAL,Donzy-le-National,Donzy-le-National,COM,71582,3,VINEUSE SUR FREGANDE,Vineuse sur Fregande,La Vineuse sur Fregande 32,2017-01-01,COM,71288,0,MASSY,Massy,Massy,COMD,71288,0,MASSY,Massy,Massy 32,2017-01-01,COM,71288,0,MASSY,Massy,Massy,COM,71582,3,VINEUSE SUR FREGANDE,Vineuse sur Fregande,La Vineuse sur Fregande 32,2017-01-01,COM,71582,3,VINEUSE,Vineuse,La Vineuse,COMD,71582,3,VINEUSE,Vineuse,La Vineuse 32,2017-01-01,COM,71582,3,VINEUSE,Vineuse,La Vineuse,COM,71582,3,VINEUSE SUR FREGANDE,Vineuse sur Fregande,La Vineuse sur Fregande -32,2017-01-01,COM,71587,0,VITRY LES CLUNY,Vitry-lès-Cluny,Vitry-lès-Cluny,COMD,71587,0,VITRY LES CLUNY,Vitry-lès-Cluny,Vitry-lès-Cluny 32,2017-01-01,COM,71587,0,VITRY LES CLUNY,Vitry-lès-Cluny,Vitry-lès-Cluny,COM,71582,3,VINEUSE SUR FREGANDE,Vineuse sur Fregande,La Vineuse sur Fregande -32,2017-01-01,COM,72025,0,BAZOUGES SUR LE LOIR,Bazouges-sur-le-Loir,Bazouges-sur-le-Loir,COMD,72025,0,BAZOUGES SUR LE LOIR,Bazouges-sur-le-Loir,Bazouges-sur-le-Loir +32,2017-01-01,COM,71587,0,VITRY LES CLUNY,Vitry-lès-Cluny,Vitry-lès-Cluny,COMD,71587,0,VITRY LES CLUNY,Vitry-lès-Cluny,Vitry-lès-Cluny 32,2017-01-01,COM,72025,0,BAZOUGES SUR LE LOIR,Bazouges-sur-le-Loir,Bazouges-sur-le-Loir,COM,72025,0,BAZOUGES CRE SUR LOIR,Bazouges Cré sur Loir,Bazouges Cré sur Loir -32,2017-01-01,COM,72063,3,CHAPELLE GAUGAIN,Chapelle-Gaugain,La Chapelle-Gaugain,COM,72262,0,LOIR EN VALLEE,Loir en Vallée,Loir en Vallée +32,2017-01-01,COM,72025,0,BAZOUGES SUR LE LOIR,Bazouges-sur-le-Loir,Bazouges-sur-le-Loir,COMD,72025,0,BAZOUGES SUR LE LOIR,Bazouges-sur-le-Loir,Bazouges-sur-le-Loir 32,2017-01-01,COM,72063,3,CHAPELLE GAUGAIN,Chapelle-Gaugain,La Chapelle-Gaugain,COMD,72063,3,CHAPELLE GAUGAIN,Chapelle-Gaugain,La Chapelle-Gaugain +32,2017-01-01,COM,72063,3,CHAPELLE GAUGAIN,Chapelle-Gaugain,La Chapelle-Gaugain,COM,72262,0,LOIR EN VALLEE,Loir en Vallée,Loir en Vallée 32,2017-01-01,COM,72082,2,CHEVAIN,Chevain,Le Chevain,COMD,72082,2,CHEVAIN,Chevain,Le Chevain -32,2017-01-01,COM,72082,2,CHEVAIN,Chevain,Le Chevain,COM,72308,0,SAINT PATERNE LE CHEVAIN,Saint-Paterne - Le Chevain,Saint-Paterne - Le Chevain -32,2017-01-01,COM,72108,0,CRE SUR LOIR,Cré-sur-Loir,Cré-sur-Loir,COMD,72108,0,CRE SUR LOIR,Cré-sur-Loir,Cré-sur-Loir +32,2017-01-01,COM,72082,2,CHEVAIN,Chevain,Le Chevain,COM,72308,0,SAINT PATERNE LE CHEVAIN,Saint-Paterne - Le Chevain,Saint-Paterne - Le Chevain 32,2017-01-01,COM,72108,0,CRE SUR LOIR,Cré-sur-Loir,Cré-sur-Loir,COM,72025,0,BAZOUGES CRE SUR LOIR,Bazouges Cré sur Loir,Bazouges Cré sur Loir +32,2017-01-01,COM,72108,0,CRE SUR LOIR,Cré-sur-Loir,Cré-sur-Loir,COMD,72108,0,CRE SUR LOIR,Cré-sur-Loir,Cré-sur-Loir 32,2017-01-01,COM,72159,0,LAVENAY,Lavenay,Lavenay,COMD,72159,0,LAVENAY,Lavenay,Lavenay 32,2017-01-01,COM,72159,0,LAVENAY,Lavenay,Lavenay,COM,72262,0,LOIR EN VALLEE,Loir en Vallée,Loir en Vallée 32,2017-01-01,COM,72240,0,PONCE SUR LE LOIR,Poncé-sur-le-Loir,Poncé-sur-le-Loir,COMD,72240,0,PONCE SUR LE LOIR,Poncé-sur-le-Loir,Poncé-sur-le-Loir 32,2017-01-01,COM,72240,0,PONCE SUR LE LOIR,Poncé-sur-le-Loir,Poncé-sur-le-Loir,COM,72262,0,LOIR EN VALLEE,Loir en Vallée,Loir en Vallée -32,2017-01-01,COM,72262,0,RUILLE SUR LOIR,Ruillé-sur-Loir,Ruillé-sur-Loir,COMD,72262,0,RUILLE SUR LOIR,Ruillé-sur-Loir,Ruillé-sur-Loir 32,2017-01-01,COM,72262,0,RUILLE SUR LOIR,Ruillé-sur-Loir,Ruillé-sur-Loir,COM,72262,0,LOIR EN VALLEE,Loir en Vallée,Loir en Vallée +32,2017-01-01,COM,72262,0,RUILLE SUR LOIR,Ruillé-sur-Loir,Ruillé-sur-Loir,COMD,72262,0,RUILLE SUR LOIR,Ruillé-sur-Loir,Ruillé-sur-Loir 32,2017-01-01,COM,72308,0,SAINT PATERNE,Saint-Paterne,Saint-Paterne,COMD,72308,0,SAINT PATERNE,Saint-Paterne,Saint-Paterne -32,2017-01-01,COM,72308,0,SAINT PATERNE,Saint-Paterne,Saint-Paterne,COM,72308,0,SAINT PATERNE LE CHEVAIN,Saint-Paterne - Le Chevain,Saint-Paterne - Le Chevain -32,2017-01-01,COM,73056,0,BRAMANS,Bramans,Bramans,COM,73290,0,VAL CENIS,Val-Cenis,Val-Cenis +32,2017-01-01,COM,72308,0,SAINT PATERNE,Saint-Paterne,Saint-Paterne,COM,72308,0,SAINT PATERNE LE CHEVAIN,Saint-Paterne - Le Chevain,Saint-Paterne - Le Chevain 32,2017-01-01,COM,73056,0,BRAMANS,Bramans,Bramans,COMD,73056,0,BRAMANS,Bramans,Bramans +32,2017-01-01,COM,73056,0,BRAMANS,Bramans,Bramans,COM,73290,0,VAL CENIS,Val-Cenis,Val-Cenis 32,2017-01-01,COM,73143,0,LANSLEBOURG MONT CENIS,Lanslebourg-Mont-Cenis,Lanslebourg-Mont-Cenis,COMD,73143,0,LANSLEBOURG MONT CENIS,Lanslebourg-Mont-Cenis,Lanslebourg-Mont-Cenis 32,2017-01-01,COM,73143,0,LANSLEBOURG MONT CENIS,Lanslebourg-Mont-Cenis,Lanslebourg-Mont-Cenis,COM,73290,0,VAL CENIS,Val-Cenis,Val-Cenis 32,2017-01-01,COM,73144,0,LANSLEVILLARD,Lanslevillard,Lanslevillard,COMD,73144,0,LANSLEVILLARD,Lanslevillard,Lanslevillard 32,2017-01-01,COM,73144,0,LANSLEVILLARD,Lanslevillard,Lanslevillard,COM,73290,0,VAL CENIS,Val-Cenis,Val-Cenis -32,2017-01-01,COM,73163,0,MONTAIMONT,Montaimont,Montaimont,COM,73235,0,SAINT FRANCOIS LONGCHAMP,Saint François Longchamp,Saint François Longchamp 32,2017-01-01,COM,73163,0,MONTAIMONT,Montaimont,Montaimont,COMD,73163,0,MONTAIMONT,Montaimont,Montaimont +32,2017-01-01,COM,73163,0,MONTAIMONT,Montaimont,Montaimont,COM,73235,0,SAINT FRANCOIS LONGCHAMP,Saint François Longchamp,Saint François Longchamp 32,2017-01-01,COM,73167,0,MONTGELLAFREY,Montgellafrey,Montgellafrey,COMD,73167,0,MONTGELLAFREY,Montgellafrey,Montgellafrey 32,2017-01-01,COM,73167,0,MONTGELLAFREY,Montgellafrey,Montgellafrey,COM,73235,0,SAINT FRANCOIS LONGCHAMP,Saint François Longchamp,Saint François Longchamp -32,2017-01-01,COM,73198,3,PERRIERE,Perrière,La Perrière,COM,73227,0,COURCHEVEL,Courchevel,Courchevel 32,2017-01-01,COM,73198,3,PERRIERE,Perrière,La Perrière,COMD,73198,3,PERRIERE,Perrière,La Perrière -32,2017-01-01,COM,73227,0,SAINT BON TARENTAISE,Saint-Bon-Tarentaise,Saint-Bon-Tarentaise,COM,73227,0,COURCHEVEL,Courchevel,Courchevel +32,2017-01-01,COM,73198,3,PERRIERE,Perrière,La Perrière,COM,73227,0,COURCHEVEL,Courchevel,Courchevel 32,2017-01-01,COM,73227,0,SAINT BON TARENTAISE,Saint-Bon-Tarentaise,Saint-Bon-Tarentaise,COMD,73227,0,SAINT BON TARENTAISE,Saint-Bon-Tarentaise,Saint-Bon-Tarentaise +32,2017-01-01,COM,73227,0,SAINT BON TARENTAISE,Saint-Bon-Tarentaise,Saint-Bon-Tarentaise,COM,73227,0,COURCHEVEL,Courchevel,Courchevel 32,2017-01-01,COM,73235,0,SAINT FRANCOIS LONGCHAMP,Saint-François-Longchamp,Saint-François-Longchamp,COMD,73235,0,SAINT FRANCOIS LONGCHAMP,Saint-François-Longchamp,Saint-François-Longchamp 32,2017-01-01,COM,73235,0,SAINT FRANCOIS LONGCHAMP,Saint-François-Longchamp,Saint-François-Longchamp,COM,73235,0,SAINT FRANCOIS LONGCHAMP,Saint François Longchamp,Saint François Longchamp 32,2017-01-01,COM,73287,0,SOLLIERES SARDIERES,Sollières-Sardières,Sollières-Sardières,COMD,73287,0,SOLLIERES SARDIERES,Sollières-Sardières,Sollières-Sardières 32,2017-01-01,COM,73287,0,SOLLIERES SARDIERES,Sollières-Sardières,Sollières-Sardières,COM,73290,0,VAL CENIS,Val-Cenis,Val-Cenis -32,2017-01-01,COM,73290,0,TERMIGNON,Termignon,Termignon,COM,73290,0,VAL CENIS,Val-Cenis,Val-Cenis 32,2017-01-01,COM,73290,0,TERMIGNON,Termignon,Termignon,COMD,73290,0,TERMIGNON,Termignon,Termignon +32,2017-01-01,COM,73290,0,TERMIGNON,Termignon,Termignon,COM,73290,0,VAL CENIS,Val-Cenis,Val-Cenis 32,2017-01-01,COM,74010,1,ANNECY,Annecy,Annecy,COMD,74010,1,ANNECY,Annecy,Annecy 32,2017-01-01,COM,74010,1,ANNECY,Annecy,Annecy,COM,74010,1,ANNECY,Annecy,Annecy 32,2017-01-01,COM,74011,1,ANNECY LE VIEUX,Annecy-le-Vieux,Annecy-le-Vieux,COM,74010,1,ANNECY,Annecy,Annecy @@ -3194,71 +3028,69 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,74022,1,AVIERNOZ,Aviernoz,Aviernoz,COM,74282,0,FILLIERE,Fillière,Fillière 32,2017-01-01,COM,74093,0,CRAN GEVRIER,Cran-Gevrier,Cran-Gevrier,COM,74010,1,ANNECY,Annecy,Annecy 32,2017-01-01,COM,74093,0,CRAN GEVRIER,Cran-Gevrier,Cran-Gevrier,COMD,74093,0,CRAN GEVRIER,Cran-Gevrier,Cran-Gevrier -32,2017-01-01,COM,74120,1,EVIRES,Évires,Évires,COM,74282,0,FILLIERE,Fillière,Fillière 32,2017-01-01,COM,74120,1,EVIRES,Évires,Évires,COMD,74120,1,EVIRES,Évires,Évires -32,2017-01-01,COM,74182,0,MEYTHET,Meythet,Meythet,COMD,74182,0,MEYTHET,Meythet,Meythet +32,2017-01-01,COM,74120,1,EVIRES,Évires,Évires,COM,74282,0,FILLIERE,Fillière,Fillière 32,2017-01-01,COM,74182,0,MEYTHET,Meythet,Meythet,COM,74010,1,ANNECY,Annecy,Annecy +32,2017-01-01,COM,74182,0,MEYTHET,Meythet,Meythet,COMD,74182,0,MEYTHET,Meythet,Meythet 32,2017-01-01,COM,74204,4,OLLIERES,Ollières,Les Ollières,COMD,74204,4,OLLIERES,Ollières,Les Ollières 32,2017-01-01,COM,74204,4,OLLIERES,Ollières,Les Ollières,COM,74282,0,FILLIERE,Fillière,Fillière 32,2017-01-01,COM,74217,0,PRINGY,Pringy,Pringy,COM,74010,1,ANNECY,Annecy,Annecy 32,2017-01-01,COM,74217,0,PRINGY,Pringy,Pringy,COMD,74217,0,PRINGY,Pringy,Pringy 32,2017-01-01,COM,74245,0,SAINT MARTIN BELLEVUE,Saint-Martin-Bellevue,Saint-Martin-Bellevue,COMD,74245,0,SAINT MARTIN BELLEVUE,Saint-Martin-Bellevue,Saint-Martin-Bellevue 32,2017-01-01,COM,74245,0,SAINT MARTIN BELLEVUE,Saint-Martin-Bellevue,Saint-Martin-Bellevue,COM,74282,0,FILLIERE,Fillière,Fillière -32,2017-01-01,COM,74268,0,SEYNOD,Seynod,Seynod,COMD,74268,0,SEYNOD,Seynod,Seynod 32,2017-01-01,COM,74268,0,SEYNOD,Seynod,Seynod,COM,74010,1,ANNECY,Annecy,Annecy -32,2017-01-01,COM,74282,0,THORENS GLIERES,Thorens-Glières,Thorens-Glières,COM,74282,0,FILLIERE,Fillière,Fillière +32,2017-01-01,COM,74268,0,SEYNOD,Seynod,Seynod,COMD,74268,0,SEYNOD,Seynod,Seynod 32,2017-01-01,COM,74282,0,THORENS GLIERES,Thorens-Glières,Thorens-Glières,COMD,74282,0,THORENS GLIERES,Thorens-Glières,Thorens-Glières -32,2017-01-01,COM,76044,1,AUZOUVILLE AUBERBOSC,Auzouville-Auberbosc,Auzouville-Auberbosc,COM,76258,0,TERRES DE CAUX,Terres-de-Caux,Terres-de-Caux +32,2017-01-01,COM,74282,0,THORENS GLIERES,Thorens-Glières,Thorens-Glières,COM,74282,0,FILLIERE,Fillière,Fillière 32,2017-01-01,COM,76044,1,AUZOUVILLE AUBERBOSC,Auzouville-Auberbosc,Auzouville-Auberbosc,COMD,76044,1,AUZOUVILLE AUBERBOSC,Auzouville-Auberbosc,Auzouville-Auberbosc +32,2017-01-01,COM,76044,1,AUZOUVILLE AUBERBOSC,Auzouville-Auberbosc,Auzouville-Auberbosc,COM,76258,0,TERRES DE CAUX,Terres-de-Caux,Terres-de-Caux 32,2017-01-01,COM,76078,0,BENNETOT,Bennetot,Bennetot,COMD,76078,0,BENNETOT,Bennetot,Bennetot 32,2017-01-01,COM,76078,0,BENNETOT,Bennetot,Bennetot,COM,76258,0,TERRES DE CAUX,Terres-de-Caux,Terres-de-Caux 32,2017-01-01,COM,76080,0,BERMONVILLE,Bermonville,Bermonville,COMD,76080,0,BERMONVILLE,Bermonville,Bermonville 32,2017-01-01,COM,76080,0,BERMONVILLE,Bermonville,Bermonville,COM,76258,0,TERRES DE CAUX,Terres-de-Caux,Terres-de-Caux -32,2017-01-01,COM,76127,0,BOSC ROGER SUR BUCHY,Bosc-Roger-sur-Buchy,Bosc-Roger-sur-Buchy,COM,76146,0,BUCHY,Buchy,Buchy 32,2017-01-01,COM,76127,0,BOSC ROGER SUR BUCHY,Bosc-Roger-sur-Buchy,Bosc-Roger-sur-Buchy,COMD,76127,0,BOSC ROGER SUR BUCHY,Bosc-Roger-sur-Buchy,Bosc-Roger-sur-Buchy +32,2017-01-01,COM,76127,0,BOSC ROGER SUR BUCHY,Bosc-Roger-sur-Buchy,Bosc-Roger-sur-Buchy,COM,76146,0,BUCHY,Buchy,Buchy 32,2017-01-01,COM,76146,0,BUCHY,Buchy,Buchy,COM,76146,0,BUCHY,Buchy,Buchy 32,2017-01-01,COM,76146,0,BUCHY,Buchy,Buchy,COMD,76146,0,BUCHY,Buchy,Buchy 32,2017-01-01,COM,76248,1,ESTOUTEVILLE ECALLES,Estouteville-Écalles,Estouteville-Écalles,COM,76146,0,BUCHY,Buchy,Buchy 32,2017-01-01,COM,76248,1,ESTOUTEVILLE ECALLES,Estouteville-Écalles,Estouteville-Écalles,COMD,76248,1,ESTOUTEVILLE ECALLES,Estouteville-Écalles,Estouteville-Écalles -32,2017-01-01,COM,76258,0,FAUVILLE EN CAUX,Fauville-en-Caux,Fauville-en-Caux,COM,76258,0,TERRES DE CAUX,Terres-de-Caux,Terres-de-Caux 32,2017-01-01,COM,76258,0,FAUVILLE EN CAUX,Fauville-en-Caux,Fauville-en-Caux,COMD,76258,0,FAUVILLE EN CAUX,Fauville-en-Caux,Fauville-en-Caux +32,2017-01-01,COM,76258,0,FAUVILLE EN CAUX,Fauville-en-Caux,Fauville-en-Caux,COM,76258,0,TERRES DE CAUX,Terres-de-Caux,Terres-de-Caux 32,2017-01-01,COM,76525,0,RICARVILLE,Ricarville,Ricarville,COM,76258,0,TERRES DE CAUX,Terres-de-Caux,Terres-de-Caux 32,2017-01-01,COM,76525,0,RICARVILLE,Ricarville,Ricarville,COMD,76525,0,RICARVILLE,Ricarville,Ricarville 21,2017-01-01,COMA,76601,0,SAINT LUCIEN,Saint-Lucien,Saint-Lucien,COM,76601,0,SAINT LUCIEN,Saint-Lucien,Saint-Lucien +34,2017-01-01,COMA,76601,0,SAINT LUCIEN,Saint-Lucien,Saint-Lucien,COM,76676,0,SIGY EN BRAY,Sigy-en-Bray,Sigy-en-Bray 32,2017-01-01,COM,76607,0,SAINTE MARGUERITE SUR FAUVILLE,Sainte-Marguerite-sur-Fauville,Sainte-Marguerite-sur-Fauville,COM,76258,0,TERRES DE CAUX,Terres-de-Caux,Terres-de-Caux 32,2017-01-01,COM,76607,0,SAINTE MARGUERITE SUR FAUVILLE,Sainte-Marguerite-sur-Fauville,Sainte-Marguerite-sur-Fauville,COMD,76607,0,SAINTE MARGUERITE SUR FAUVILLE,Sainte-Marguerite-sur-Fauville,Sainte-Marguerite-sur-Fauville -32,2017-01-01,COM,76639,0,SAINT PIERRE LAVIS,Saint-Pierre-Lavis,Saint-Pierre-Lavis,COMD,76639,0,SAINT PIERRE LAVIS,Saint-Pierre-Lavis,Saint-Pierre-Lavis 32,2017-01-01,COM,76639,0,SAINT PIERRE LAVIS,Saint-Pierre-Lavis,Saint-Pierre-Lavis,COM,76258,0,TERRES DE CAUX,Terres-de-Caux,Terres-de-Caux +32,2017-01-01,COM,76639,0,SAINT PIERRE LAVIS,Saint-Pierre-Lavis,Saint-Pierre-Lavis,COMD,76639,0,SAINT PIERRE LAVIS,Saint-Pierre-Lavis,Saint-Pierre-Lavis 21,2017-01-01,COM,76676,0,SIGY EN BRAY,Sigy-en-Bray,Sigy-en-Bray,COM,76601,0,SAINT LUCIEN,Saint-Lucien,Saint-Lucien 21,2017-01-01,COM,76676,0,SIGY EN BRAY,Sigy-en-Bray,Sigy-en-Bray,COM,76676,0,SIGY EN BRAY,Sigy-en-Bray,Sigy-en-Bray -32,2017-01-01,COMD,77166,1,ECUELLES,Écuelles,Écuelles,COM,77316,0,MORET LOING ET ORVANNE,Moret-Loing-et-Orvanne,Moret-Loing-et-Orvanne 32,2017-01-01,COMD,77166,1,ECUELLES,Écuelles,Écuelles,COMD,77166,1,ECUELLES,Écuelles,Écuelles +32,2017-01-01,COMD,77166,1,ECUELLES,Écuelles,Écuelles,COM,77316,0,MORET LOING ET ORVANNE,Moret-Loing-et-Orvanne,Moret-Loing-et-Orvanne 32,2017-01-01,COMD,77170,1,EPISY,Épisy,Épisy,COMD,77170,1,EPISY,Épisy,Épisy 32,2017-01-01,COMD,77170,1,EPISY,Épisy,Épisy,COM,77316,0,MORET LOING ET ORVANNE,Moret-Loing-et-Orvanne,Moret-Loing-et-Orvanne -34,2017-01-01,COMA,77189,0,FONTAINE SOUS MONTAIGUILLON,Fontaine-sous-Montaiguillon,Fontaine-sous-Montaiguillon,COM,77262,0,LOUAN VILLEGRUIS FONTAINE,Louan-Villegruis-Fontaine,Louan-Villegruis-Fontaine -34,2017-01-01,COMA,77189,0,FONTAINE SOUS MONTAIGUILLON,Fontaine-sous-Montaiguillon,Fontaine-sous-Montaiguillon,COMA,77189,0,FONTAINE SOUS MONTAIGUILLON,Fontaine-sous-Montaiguillon,Fontaine-sous-Montaiguillon 34,2017-01-01,COM,77262,0,LOUAN VILLEGRUIS FONTAINE,Louan-Villegruis-Fontaine,Louan-Villegruis-Fontaine,COM,77262,0,LOUAN VILLEGRUIS FONTAINE,Louan-Villegruis-Fontaine,Louan-Villegruis-Fontaine -34,2017-01-01,COM,77262,0,LOUAN VILLEGRUIS FONTAINE,Louan-Villegruis-Fontaine,Louan-Villegruis-Fontaine,COMA,77189,0,FONTAINE SOUS MONTAIGUILLON,Fontaine-sous-Montaiguillon,Fontaine-sous-Montaiguillon -32,2017-01-01,COMD,77299,0,MONTARLOT,Montarlot,Montarlot,COM,77316,0,MORET LOING ET ORVANNE,Moret-Loing-et-Orvanne,Moret-Loing-et-Orvanne 32,2017-01-01,COMD,77299,0,MONTARLOT,Montarlot,Montarlot,COMD,77299,0,MONTARLOT,Montarlot,Montarlot -32,2017-01-01,COMD,77316,0,MORET SUR LOING,Moret-sur-Loing,Moret-sur-Loing,COMD,77316,0,MORET SUR LOING,Moret-sur-Loing,Moret-sur-Loing +32,2017-01-01,COMD,77299,0,MONTARLOT,Montarlot,Montarlot,COM,77316,0,MORET LOING ET ORVANNE,Moret-Loing-et-Orvanne,Moret-Loing-et-Orvanne +32,2017-01-01,COM,77316,0,MORET LOING ET ORVANNE,Moret Loing et Orvanne,Moret Loing et Orvanne,COMD,77316,0,MORET SUR LOING,Moret-sur-Loing,Moret-sur-Loing 32,2017-01-01,COM,77316,0,MORET LOING ET ORVANNE,Moret Loing et Orvanne,Moret Loing et Orvanne,COM,77316,0,MORET LOING ET ORVANNE,Moret-Loing-et-Orvanne,Moret-Loing-et-Orvanne +32,2017-01-01,COMD,77316,0,MORET SUR LOING,Moret-sur-Loing,Moret-sur-Loing,COMD,77316,0,MORET SUR LOING,Moret-sur-Loing,Moret-sur-Loing 32,2017-01-01,COMD,77316,0,MORET SUR LOING,Moret-sur-Loing,Moret-sur-Loing,COM,77316,0,MORET LOING ET ORVANNE,Moret-Loing-et-Orvanne,Moret-Loing-et-Orvanne -32,2017-01-01,COM,77491,0,VENEUX LES SABLONS,Veneux-les-Sablons,Veneux-les-Sablons,COMD,77491,0,VENEUX LES SABLONS,Veneux-les-Sablons,Veneux-les-Sablons 32,2017-01-01,COM,77491,0,VENEUX LES SABLONS,Veneux-les-Sablons,Veneux-les-Sablons,COM,77316,0,MORET LOING ET ORVANNE,Moret-Loing-et-Orvanne,Moret-Loing-et-Orvanne +32,2017-01-01,COM,77491,0,VENEUX LES SABLONS,Veneux-les-Sablons,Veneux-les-Sablons,COMD,77491,0,VENEUX LES SABLONS,Veneux-les-Sablons,Veneux-les-Sablons 34,2017-01-01,COMA,77503,0,VILLEGRUIS,Villegruis,Villegruis,COM,77262,0,LOUAN VILLEGRUIS FONTAINE,Louan-Villegruis-Fontaine,Louan-Villegruis-Fontaine 32,2017-01-01,COM,79006,4,ALLEUDS,Alleuds,Les Alleuds,COMD,79006,4,ALLEUDS,Alleuds,Les Alleuds 32,2017-01-01,COM,79006,4,ALLEUDS,Alleuds,Les Alleuds,COM,79136,1,ALLOINAY,Alloinay,Alloinay -32,2017-01-01,COM,79044,0,BOUILLE SAINT PAUL,Bouillé-Saint-Paul,Bouillé-Saint-Paul,COM,79063,0,VAL EN VIGNES,Val en Vignes,Val en Vignes 32,2017-01-01,COM,79044,0,BOUILLE SAINT PAUL,Bouillé-Saint-Paul,Bouillé-Saint-Paul,COMD,79044,0,BOUILLE SAINT PAUL,Bouillé-Saint-Paul,Bouillé-Saint-Paul -32,2017-01-01,COM,79063,0,CERSAY,Cersay,Cersay,COM,79063,0,VAL EN VIGNES,Val en Vignes,Val en Vignes +32,2017-01-01,COM,79044,0,BOUILLE SAINT PAUL,Bouillé-Saint-Paul,Bouillé-Saint-Paul,COM,79063,0,VAL EN VIGNES,Val en Vignes,Val en Vignes 32,2017-01-01,COM,79063,0,CERSAY,Cersay,Cersay,COMD,79063,0,CERSAY,Cersay,Cersay -34,2017-01-01,COM,79066,0,CHAMPDENIERS SAINT DENIS,Champdeniers-Saint-Denis,Champdeniers-Saint-Denis,COM,79066,0,CHAMPDENIERS SAINT DENIS,Champdeniers-Saint-Denis,Champdeniers-Saint-Denis +32,2017-01-01,COM,79063,0,CERSAY,Cersay,Cersay,COM,79063,0,VAL EN VIGNES,Val en Vignes,Val en Vignes 34,2017-01-01,COMA,79067,0,CHAMPEAUX,Champeaux,Champeaux,COM,79066,0,CHAMPDENIERS SAINT DENIS,Champdeniers-Saint-Denis,Champdeniers-Saint-Denis 32,2017-01-01,COM,79136,0,GOURNAY LOIZE,Gournay-Loizé,Gournay-Loizé,COM,79136,1,ALLOINAY,Alloinay,Alloinay 32,2017-01-01,COMA,79151,0,LOIZE,Loizé,Loizé,COM,79136,1,ALLOINAY,Alloinay,Alloinay -32,2017-01-01,COM,79168,0,MASSAIS,Massais,Massais,COMD,79168,0,MASSAIS,Massais,Massais 32,2017-01-01,COM,79168,0,MASSAIS,Massais,Massais,COM,79063,0,VAL EN VIGNES,Val en Vignes,Val en Vignes +32,2017-01-01,COM,79168,0,MASSAIS,Massais,Massais,COMD,79168,0,MASSAIS,Massais,Massais 32,2017-01-01,COM,79185,0,MOUGON,Mougon,Mougon,COMD,79185,0,MOUGON,Mougon,Mougon 32,2017-01-01,COM,79185,0,MOUGON,Mougon,Mougon,COM,79185,0,MOUGON THORIGNE,Mougon-Thorigné,Mougon-Thorigné 32,2017-01-01,COMA,79288,0,SAINT PIERRE A CHAMP,Saint-Pierre-à-Champ,Saint-Pierre-à-Champ,COM,79063,0,VAL EN VIGNES,Val en Vignes,Val en Vignes @@ -3267,14 +3099,14 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,79327,0,THORIGNE,Thorigné,Thorigné,COMD,79327,0,THORIGNE,Thorigné,Thorigné 32,2017-01-01,COM,80295,1,ETINEHEM,Étinehem,Étinehem,COMD,80295,1,ETINEHEM,Étinehem,Étinehem 32,2017-01-01,COM,80295,1,ETINEHEM,Étinehem,Étinehem,COM,80295,1,ETINEHEM MERICOURT,Étinehem-Méricourt,Étinehem-Méricourt -32,2017-01-01,COM,80447,1,HYENCOURT LE GRAND,Hyencourt-le-Grand,Hyencourt-le-Grand,COM,80621,1,HYPERCOURT,Hypercourt,Hypercourt 32,2017-01-01,COM,80447,1,HYENCOURT LE GRAND,Hyencourt-le-Grand,Hyencourt-le-Grand,COMD,80447,1,HYENCOURT LE GRAND,Hyencourt-le-Grand,Hyencourt-le-Grand +32,2017-01-01,COM,80447,1,HYENCOURT LE GRAND,Hyencourt-le-Grand,Hyencourt-le-Grand,COM,80621,1,HYPERCOURT,Hypercourt,Hypercourt 32,2017-01-01,COM,80532,0,MERICOURT SUR SOMME,Méricourt-sur-Somme,Méricourt-sur-Somme,COM,80295,1,ETINEHEM MERICOURT,Étinehem-Méricourt,Étinehem-Méricourt 32,2017-01-01,COM,80532,0,MERICOURT SUR SOMME,Méricourt-sur-Somme,Méricourt-sur-Somme,COMD,80532,0,MERICOURT SUR SOMME,Méricourt-sur-Somme,Méricourt-sur-Somme 32,2017-01-01,COM,80608,1,OMIECOURT,Omiécourt,Omiécourt,COMD,80608,1,OMIECOURT,Omiécourt,Omiécourt 32,2017-01-01,COM,80608,1,OMIECOURT,Omiécourt,Omiécourt,COM,80621,1,HYPERCOURT,Hypercourt,Hypercourt -32,2017-01-01,COM,80621,0,PERTAIN,Pertain,Pertain,COM,80621,1,HYPERCOURT,Hypercourt,Hypercourt 32,2017-01-01,COM,80621,0,PERTAIN,Pertain,Pertain,COMD,80621,0,PERTAIN,Pertain,Pertain +32,2017-01-01,COM,80621,0,PERTAIN,Pertain,Pertain,COM,80621,1,HYPERCOURT,Hypercourt,Hypercourt 32,2017-01-01,COM,81113,0,LABASTIDE DENAT,Labastide-Dénat,Labastide-Dénat,COMD,81113,0,LABASTIDE DENAT,Labastide-Dénat,Labastide-Dénat 32,2017-01-01,COM,81113,0,LABASTIDE DENAT,Labastide-Dénat,Labastide-Dénat,COM,81218,0,PUYGOUZON,Puygouzon,Puygouzon 32,2017-01-01,COM,81218,0,PUYGOUZON,Puygouzon,Puygouzon,COM,81218,0,PUYGOUZON,Puygouzon,Puygouzon @@ -3284,28 +3116,28 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,85044,0,CHAIX,Chaix,Chaix,COMD,85044,0,CHAIX,Chaix,Chaix 32,2017-01-01,COM,85052,3,CHAPELLE ACHARD,Chapelle-Achard,La Chapelle-Achard,COMD,85052,3,CHAPELLE ACHARD,Chapelle-Achard,La Chapelle-Achard 32,2017-01-01,COM,85052,3,CHAPELLE ACHARD,Chapelle-Achard,La Chapelle-Achard,COM,85152,4,ACHARDS,Achards,Les Achards -32,2017-01-01,COM,85152,3,MOTHE ACHARD,Mothe-Achard,La Mothe-Achard,COM,85152,4,ACHARDS,Achards,Les Achards 32,2017-01-01,COM,85152,3,MOTHE ACHARD,Mothe-Achard,La Mothe-Achard,COMD,85152,3,MOTHE ACHARD,Mothe-Achard,La Mothe-Achard +32,2017-01-01,COM,85152,3,MOTHE ACHARD,Mothe-Achard,La Mothe-Achard,COM,85152,4,ACHARDS,Achards,Les Achards 32,2017-01-01,COM,86019,0,BEAUMONT,Beaumont,Beaumont,COM,86019,0,BEAUMONT SAINT CYR,Beaumont Saint-Cyr,Beaumont Saint-Cyr 32,2017-01-01,COM,86019,0,BEAUMONT,Beaumont,Beaumont,COMD,86019,0,BEAUMONT,Beaumont,Beaumont 32,2017-01-01,COM,86030,0,BLASLAY,Blaslay,Blaslay,COMD,86030,0,BLASLAY,Blaslay,Blaslay 32,2017-01-01,COM,86030,0,BLASLAY,Blaslay,Blaslay,COM,86281,0,SAINT MARTIN LA PALLU,Saint Martin la Pallu,Saint Martin la Pallu 32,2017-01-01,COM,86053,0,CHAMPIGNY LE SEC,Champigny-le-Sec,Champigny-le-Sec,COMD,86053,0,CHAMPIGNY LE SEC,Champigny-le-Sec,Champigny-le-Sec 32,2017-01-01,COM,86053,0,CHAMPIGNY LE SEC,Champigny-le-Sec,Champigny-le-Sec,COM,86053,0,CHAMPIGNY EN ROCHEREAU,Champigny en Rochereau,Champigny en Rochereau -32,2017-01-01,COM,86060,0,CHARRAIS,Charrais,Charrais,COM,86281,0,SAINT MARTIN LA PALLU,Saint Martin la Pallu,Saint Martin la Pallu 32,2017-01-01,COM,86060,0,CHARRAIS,Charrais,Charrais,COMD,86060,0,CHARRAIS,Charrais,Charrais -32,2017-01-01,COM,86071,0,CHENECHE,Cheneché,Cheneché,COM,86281,0,SAINT MARTIN LA PALLU,Saint Martin la Pallu,Saint Martin la Pallu +32,2017-01-01,COM,86060,0,CHARRAIS,Charrais,Charrais,COM,86281,0,SAINT MARTIN LA PALLU,Saint Martin la Pallu,Saint Martin la Pallu 32,2017-01-01,COM,86071,0,CHENECHE,Cheneché,Cheneché,COMD,86071,0,CHENECHE,Cheneché,Cheneché +32,2017-01-01,COM,86071,0,CHENECHE,Cheneché,Cheneché,COM,86281,0,SAINT MARTIN LA PALLU,Saint Martin la Pallu,Saint Martin la Pallu 32,2017-01-01,COM,86115,0,JAUNAY CLAN,Jaunay-Clan,Jaunay-Clan,COMD,86115,0,JAUNAY CLAN,Jaunay-Clan,Jaunay-Clan 32,2017-01-01,COM,86115,0,JAUNAY CLAN,Jaunay-Clan,Jaunay-Clan,COM,86115,0,JAUNAY MARIGNY,Jaunay-Marigny,Jaunay-Marigny -32,2017-01-01,COM,86146,0,MARIGNY BRIZAY,Marigny-Brizay,Marigny-Brizay,COMD,86146,0,MARIGNY BRIZAY,Marigny-Brizay,Marigny-Brizay 32,2017-01-01,COM,86146,0,MARIGNY BRIZAY,Marigny-Brizay,Marigny-Brizay,COM,86115,0,JAUNAY MARIGNY,Jaunay-Marigny,Jaunay-Marigny -32,2017-01-01,COM,86208,2,ROCHEREAU,Rochereau,Le Rochereau,COMD,86208,2,ROCHEREAU,Rochereau,Le Rochereau +32,2017-01-01,COM,86146,0,MARIGNY BRIZAY,Marigny-Brizay,Marigny-Brizay,COMD,86146,0,MARIGNY BRIZAY,Marigny-Brizay,Marigny-Brizay 32,2017-01-01,COM,86208,2,ROCHEREAU,Rochereau,Le Rochereau,COM,86053,0,CHAMPIGNY EN ROCHEREAU,Champigny en Rochereau,Champigny en Rochereau +32,2017-01-01,COM,86208,2,ROCHEREAU,Rochereau,Le Rochereau,COMD,86208,2,ROCHEREAU,Rochereau,Le Rochereau 32,2017-01-01,COM,86219,0,SAINT CYR,Saint-Cyr,Saint-Cyr,COM,86019,0,BEAUMONT SAINT CYR,Beaumont Saint-Cyr,Beaumont Saint-Cyr 32,2017-01-01,COM,86219,0,SAINT CYR,Saint-Cyr,Saint-Cyr,COMD,86219,0,SAINT CYR,Saint-Cyr,Saint-Cyr -32,2017-01-01,COM,86281,0,VENDEUVRE DU POITOU,Vendeuvre-du-Poitou,Vendeuvre-du-Poitou,COM,86281,0,SAINT MARTIN LA PALLU,Saint Martin la Pallu,Saint Martin la Pallu 32,2017-01-01,COM,86281,0,VENDEUVRE DU POITOU,Vendeuvre-du-Poitou,Vendeuvre-du-Poitou,COMD,86281,0,VENDEUVRE DU POITOU,Vendeuvre-du-Poitou,Vendeuvre-du-Poitou +32,2017-01-01,COM,86281,0,VENDEUVRE DU POITOU,Vendeuvre-du-Poitou,Vendeuvre-du-Poitou,COM,86281,0,SAINT MARTIN LA PALLU,Saint Martin la Pallu,Saint Martin la Pallu 32,2017-01-01,COM,88029,0,BAINS LES BAINS,Bains-les-Bains,Bains-les-Bains,COMD,88029,0,BAINS LES BAINS,Bains-les-Bains,Bains-les-Bains 32,2017-01-01,COM,88029,0,BAINS LES BAINS,Bains-les-Bains,Bains-les-Bains,COM,88029,3,VOGE LES BAINS,Vôge-les-Bains,La Vôge-les-Bains 32,2017-01-01,COM,88234,1,HARSAULT,Harsault,Harsault,COM,88029,3,VOGE LES BAINS,Vôge-les-Bains,La Vôge-les-Bains @@ -3316,37 +3148,37 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2017-01-01,COM,88475,0,TOLLAINCOURT,Tollaincourt,Tollaincourt,COM,88475,0,TOLLAINCOURT,Tollaincourt,Tollaincourt 32,2017-01-01,COM,89001,1,ACCOLAY,Accolay,Accolay,COMD,89001,1,ACCOLAY,Accolay,Accolay 32,2017-01-01,COM,89001,1,ACCOLAY,Accolay,Accolay,COM,89130,0,DEUX RIVIERES,Deux Rivières,Deux Rivières -32,2017-01-01,COM,89003,1,AILLANT SUR THOLON,Aillant-sur-Tholon,Aillant-sur-Tholon,COMD,89003,1,AILLANT SUR THOLON,Aillant-sur-Tholon,Aillant-sur-Tholon 32,2017-01-01,COM,89003,1,AILLANT SUR THOLON,Aillant-sur-Tholon,Aillant-sur-Tholon,COM,89003,0,MONTHOLON,Montholon,Montholon +32,2017-01-01,COM,89003,1,AILLANT SUR THOLON,Aillant-sur-Tholon,Aillant-sur-Tholon,COMD,89003,1,AILLANT SUR THOLON,Aillant-sur-Tholon,Aillant-sur-Tholon 32,2017-01-01,COM,89078,0,CHAMPVALLON,Champvallon,Champvallon,COM,89003,0,MONTHOLON,Montholon,Montholon 32,2017-01-01,COM,89078,0,CHAMPVALLON,Champvallon,Champvallon,COMD,89078,0,CHAMPVALLON,Champvallon,Champvallon 32,2017-01-01,COM,89130,0,CRAVANT,Cravant,Cravant,COMD,89130,0,CRAVANT,Cravant,Cravant 32,2017-01-01,COM,89130,0,CRAVANT,Cravant,Cravant,COM,89130,0,DEUX RIVIERES,Deux Rivières,Deux Rivières -32,2017-01-01,COM,89174,0,FONTENAILLES,Fontenailles,Fontenailles,COM,89405,4,HAUTS DE FORTERRE,Hauts de Forterre,Les Hauts de Forterre 32,2017-01-01,COM,89174,0,FONTENAILLES,Fontenailles,Fontenailles,COMD,89174,0,FONTENAILLES,Fontenailles,Fontenailles -32,2017-01-01,COM,89260,0,MOLESMES,Molesmes,Molesmes,COM,89405,4,HAUTS DE FORTERRE,Hauts de Forterre,Les Hauts de Forterre +32,2017-01-01,COM,89174,0,FONTENAILLES,Fontenailles,Fontenailles,COM,89405,4,HAUTS DE FORTERRE,Hauts de Forterre,Les Hauts de Forterre 32,2017-01-01,COM,89260,0,MOLESMES,Molesmes,Molesmes,COMD,89260,0,MOLESMES,Molesmes,Molesmes -32,2017-01-01,COM,89405,0,TAINGY,Taingy,Taingy,COM,89405,4,HAUTS DE FORTERRE,Hauts de Forterre,Les Hauts de Forterre +32,2017-01-01,COM,89260,0,MOLESMES,Molesmes,Molesmes,COM,89405,4,HAUTS DE FORTERRE,Hauts de Forterre,Les Hauts de Forterre 32,2017-01-01,COM,89405,0,TAINGY,Taingy,Taingy,COMD,89405,0,TAINGY,Taingy,Taingy -32,2017-01-01,COM,89473,0,VILLIERS SUR THOLON,Villiers-sur-Tholon,Villiers-sur-Tholon,COMD,89473,0,VILLIERS SUR THOLON,Villiers-sur-Tholon,Villiers-sur-Tholon +32,2017-01-01,COM,89405,0,TAINGY,Taingy,Taingy,COM,89405,4,HAUTS DE FORTERRE,Hauts de Forterre,Les Hauts de Forterre 32,2017-01-01,COM,89473,0,VILLIERS SUR THOLON,Villiers-sur-Tholon,Villiers-sur-Tholon,COM,89003,0,MONTHOLON,Montholon,Montholon -32,2017-01-01,COM,89484,0,VOLGRE,Volgré,Volgré,COMD,89484,0,VOLGRE,Volgré,Volgré +32,2017-01-01,COM,89473,0,VILLIERS SUR THOLON,Villiers-sur-Tholon,Villiers-sur-Tholon,COMD,89473,0,VILLIERS SUR THOLON,Villiers-sur-Tholon,Villiers-sur-Tholon 32,2017-01-01,COM,89484,0,VOLGRE,Volgré,Volgré,COM,89003,0,MONTHOLON,Montholon,Montholon -41,2016-12-31,COM,02344,0,GERNICOURT,Gernicourt,Gernicourt,COM,51664,0,GERNICOURT,Gernicourt,Gernicourt +32,2017-01-01,COM,89484,0,VOLGRE,Volgré,Volgré,COMD,89484,0,VOLGRE,Volgré,Volgré +41,2016-12-31,COM,2344,0,GERNICOURT,Gernicourt,Gernicourt,COM,51664,0,GERNICOURT,Gernicourt,Gernicourt 32,2016-12-30,COM,49047,0,BRIGNE,Brigné,Brigné,COMD,49047,0,BRIGNE,Brigné,Brigné 32,2016-12-30,COM,49047,0,BRIGNE,Brigné,Brigné,COM,49125,0,DOUE EN ANJOU,Doué-en-Anjou,Doué-en-Anjou 32,2016-12-30,COM,49104,0,CONCOURSON SUR LAYON,Concourson-sur-Layon,Concourson-sur-Layon,COMD,49104,0,CONCOURSON SUR LAYON,Concourson-sur-Layon,Concourson-sur-Layon 32,2016-12-30,COM,49104,0,CONCOURSON SUR LAYON,Concourson-sur-Layon,Concourson-sur-Layon,COM,49125,0,DOUE EN ANJOU,Doué-en-Anjou,Doué-en-Anjou -32,2016-12-30,COM,49125,0,DOUE LA FONTAINE,Doué-la-Fontaine,Doué-la-Fontaine,COM,49125,0,DOUE EN ANJOU,Doué-en-Anjou,Doué-en-Anjou 32,2016-12-30,COM,49125,0,DOUE LA FONTAINE,Doué-la-Fontaine,Doué-la-Fontaine,COMD,49125,0,DOUE LA FONTAINE,Doué-la-Fontaine,Doué-la-Fontaine -32,2016-12-30,COM,49141,0,FORGES,Forges,Forges,COMD,49141,0,FORGES,Forges,Forges +32,2016-12-30,COM,49125,0,DOUE LA FONTAINE,Doué-la-Fontaine,Doué-la-Fontaine,COM,49125,0,DOUE EN ANJOU,Doué-en-Anjou,Doué-en-Anjou 32,2016-12-30,COM,49141,0,FORGES,Forges,Forges,COM,49125,0,DOUE EN ANJOU,Doué-en-Anjou,Doué-en-Anjou -32,2016-12-30,COM,49198,0,MEIGNE,Meigné,Meigné,COMD,49198,0,MEIGNE,Meigné,Meigné +32,2016-12-30,COM,49141,0,FORGES,Forges,Forges,COMD,49141,0,FORGES,Forges,Forges 32,2016-12-30,COM,49198,0,MEIGNE,Meigné,Meigné,COM,49125,0,DOUE EN ANJOU,Doué-en-Anjou,Doué-en-Anjou -32,2016-12-30,COM,49207,0,MONTFORT,Montfort,Montfort,COMD,49207,0,MONTFORT,Montfort,Montfort +32,2016-12-30,COM,49198,0,MEIGNE,Meigné,Meigné,COMD,49198,0,MEIGNE,Meigné,Meigné 32,2016-12-30,COM,49207,0,MONTFORT,Montfort,Montfort,COM,49125,0,DOUE EN ANJOU,Doué-en-Anjou,Doué-en-Anjou -32,2016-12-30,COM,49282,0,SAINT GEORGES SUR LAYON,Saint-Georges-sur-Layon,Saint-Georges-sur-Layon,COMD,49282,0,SAINT GEORGES SUR LAYON,Saint-Georges-sur-Layon,Saint-Georges-sur-Layon +32,2016-12-30,COM,49207,0,MONTFORT,Montfort,Montfort,COMD,49207,0,MONTFORT,Montfort,Montfort 32,2016-12-30,COM,49282,0,SAINT GEORGES SUR LAYON,Saint-Georges-sur-Layon,Saint-Georges-sur-Layon,COM,49125,0,DOUE EN ANJOU,Doué-en-Anjou,Doué-en-Anjou +32,2016-12-30,COM,49282,0,SAINT GEORGES SUR LAYON,Saint-Georges-sur-Layon,Saint-Georges-sur-Layon,COMD,49282,0,SAINT GEORGES SUR LAYON,Saint-Georges-sur-Layon,Saint-Georges-sur-Layon 32,2016-12-30,COM,49365,4,VERCHERS SUR LAYON,Verchers-sur-Layon,Les Verchers-sur-Layon,COM,49125,0,DOUE EN ANJOU,Doué-en-Anjou,Doué-en-Anjou 32,2016-12-30,COM,49365,4,VERCHERS SUR LAYON,Verchers-sur-Layon,Les Verchers-sur-Layon,COMD,49365,4,VERCHERS SUR LAYON,Verchers-sur-Layon,Les Verchers-sur-Layon 32,2016-12-15,COM,49001,4,ALLEUDS,Alleuds,Les Alleuds,COMD,49001,4,ALLEUDS,Alleuds,Les Alleuds @@ -3357,42 +3189,42 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-12-15,COM,49014,1,AVIRE,Aviré,Aviré,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu 32,2016-12-15,COM,49037,2,BOURG D IRE,Bourg-d'Iré,Le Bourg-d'Iré,COMD,49037,2,BOURG D IRE,Bourg-d'Iré,Le Bourg-d'Iré 32,2016-12-15,COM,49037,2,BOURG D IRE,Bourg-d'Iré,Le Bourg-d'Iré,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu -32,2016-12-15,COM,49044,0,BREIL,Breil,Breil,COM,49228,0,NOYANT VILLAGES,Noyant-Villages,Noyant-Villages 32,2016-12-15,COM,49044,0,BREIL,Breil,Breil,COMD,49044,0,BREIL,Breil,Breil +32,2016-12-15,COM,49044,0,BREIL,Breil,Breil,COM,49228,0,NOYANT VILLAGES,Noyant-Villages,Noyant-Villages 32,2016-12-15,COM,49050,0,BRISSAC QUINCE,Brissac-Quincé,Brissac-Quincé,COM,49050,0,BRISSAC LOIRE AUBANCE,Brissac Loire Aubance,Brissac Loire Aubance 32,2016-12-15,COM,49050,0,BRISSAC QUINCE,Brissac-Quincé,Brissac-Quincé,COMD,49050,0,BRISSAC QUINCE,Brissac-Quincé,Brissac-Quincé 32,2016-12-15,COM,49051,0,BRISSARTHE,Brissarthe,Brissarthe,COMD,49051,0,BRISSARTHE,Brissarthe,Brissarthe 32,2016-12-15,COM,49051,0,BRISSARTHE,Brissarthe,Brissarthe,COM,49065,4,HAUTS D ANJOU,Hauts d'Anjou,Les Hauts d'Anjou 32,2016-12-15,COM,49052,0,BROC,Broc,Broc,COMD,49052,0,BROC,Broc,Broc 32,2016-12-15,COM,49052,0,BROC,Broc,Broc,COM,49228,0,NOYANT VILLAGES,Noyant-Villages,Noyant-Villages -32,2016-12-15,COM,49062,0,CHALONNES SOUS LE LUDE,Chalonnes-sous-le-Lude,Chalonnes-sous-le-Lude,COM,49228,0,NOYANT VILLAGES,Noyant-Villages,Noyant-Villages 32,2016-12-15,COM,49062,0,CHALONNES SOUS LE LUDE,Chalonnes-sous-le-Lude,Chalonnes-sous-le-Lude,COMD,49062,0,CHALONNES SOUS LE LUDE,Chalonnes-sous-le-Lude,Chalonnes-sous-le-Lude -32,2016-12-15,COM,49065,0,CHAMPIGNE,Champigné,Champigné,COMD,49065,0,CHAMPIGNE,Champigné,Champigné +32,2016-12-15,COM,49062,0,CHALONNES SOUS LE LUDE,Chalonnes-sous-le-Lude,Chalonnes-sous-le-Lude,COM,49228,0,NOYANT VILLAGES,Noyant-Villages,Noyant-Villages 32,2016-12-15,COM,49065,0,CHAMPIGNE,Champigné,Champigné,COM,49065,4,HAUTS D ANJOU,Hauts d'Anjou,Les Hauts d'Anjou +32,2016-12-15,COM,49065,0,CHAMPIGNE,Champigné,Champigné,COMD,49065,0,CHAMPIGNE,Champigné,Champigné 32,2016-12-15,COM,49073,3,CHAPELLE HULLIN,Chapelle-Hullin,La Chapelle-Hullin,COMD,49073,3,CHAPELLE HULLIN,Chapelle-Hullin,La Chapelle-Hullin 32,2016-12-15,COM,49073,3,CHAPELLE HULLIN,Chapelle-Hullin,La Chapelle-Hullin,COM,49248,1,OMBREE D ANJOU,Ombrée d'Anjou,Ombrée d'Anjou -32,2016-12-15,COM,49077,3,CHAPELLE SUR OUDON,Chapelle-sur-Oudon,La Chapelle-sur-Oudon,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu 32,2016-12-15,COM,49077,3,CHAPELLE SUR OUDON,Chapelle-sur-Oudon,La Chapelle-sur-Oudon,COMD,49077,3,CHAPELLE SUR OUDON,Chapelle-sur-Oudon,La Chapelle-sur-Oudon -32,2016-12-15,COM,49078,0,CHARCE SAINT ELLIER SUR AUBANCE,Charcé-Saint-Ellier-sur-Aubance,Charcé-Saint-Ellier-sur-Aubance,COMD,49078,0,CHARCE SAINT ELLIER SUR AUBANCE,Charcé-Saint-Ellier-sur-Aubance,Charcé-Saint-Ellier-sur-Aubance +32,2016-12-15,COM,49077,3,CHAPELLE SUR OUDON,Chapelle-sur-Oudon,La Chapelle-sur-Oudon,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu 32,2016-12-15,COM,49078,0,CHARCE SAINT ELLIER SUR AUBANCE,Charcé-Saint-Ellier-sur-Aubance,Charcé-Saint-Ellier-sur-Aubance,COM,49050,0,BRISSAC LOIRE AUBANCE,Brissac Loire Aubance,Brissac Loire Aubance +32,2016-12-15,COM,49078,0,CHARCE SAINT ELLIER SUR AUBANCE,Charcé-Saint-Ellier-sur-Aubance,Charcé-Saint-Ellier-sur-Aubance,COMD,49078,0,CHARCE SAINT ELLIER SUR AUBANCE,Charcé-Saint-Ellier-sur-Aubance,Charcé-Saint-Ellier-sur-Aubance 32,2016-12-15,COM,49081,0,CHATELAIS,Châtelais,Châtelais,COMD,49081,0,CHATELAIS,Châtelais,Châtelais 32,2016-12-15,COM,49081,0,CHATELAIS,Châtelais,Châtelais,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu -32,2016-12-15,COM,49087,0,CHAVAIGNES,Chavaignes,Chavaignes,COM,49228,0,NOYANT VILLAGES,Noyant-Villages,Noyant-Villages 32,2016-12-15,COM,49087,0,CHAVAIGNES,Chavaignes,Chavaignes,COMD,49087,0,CHAVAIGNES,Chavaignes,Chavaignes -32,2016-12-15,COM,49088,0,CHAZE HENRY,Chazé-Henry,Chazé-Henry,COM,49248,1,OMBREE D ANJOU,Ombrée d'Anjou,Ombrée d'Anjou +32,2016-12-15,COM,49087,0,CHAVAIGNES,Chavaignes,Chavaignes,COM,49228,0,NOYANT VILLAGES,Noyant-Villages,Noyant-Villages 32,2016-12-15,COM,49088,0,CHAZE HENRY,Chazé-Henry,Chazé-Henry,COMD,49088,0,CHAZE HENRY,Chazé-Henry,Chazé-Henry -32,2016-12-15,COM,49091,0,CHEMELLIER,Chemellier,Chemellier,COMD,49091,0,CHEMELLIER,Chemellier,Chemellier +32,2016-12-15,COM,49088,0,CHAZE HENRY,Chazé-Henry,Chazé-Henry,COM,49248,1,OMBREE D ANJOU,Ombrée d'Anjou,Ombrée d'Anjou 32,2016-12-15,COM,49091,0,CHEMELLIER,Chemellier,Chemellier,COM,49050,0,BRISSAC LOIRE AUBANCE,Brissac Loire Aubance,Brissac Loire Aubance -32,2016-12-15,COM,49096,0,CHERRE,Cherré,Cherré,COMD,49096,0,CHERRE,Cherré,Cherré +32,2016-12-15,COM,49091,0,CHEMELLIER,Chemellier,Chemellier,COMD,49091,0,CHEMELLIER,Chemellier,Chemellier 32,2016-12-15,COM,49096,0,CHERRE,Cherré,Cherré,COM,49065,4,HAUTS D ANJOU,Hauts d'Anjou,Les Hauts d'Anjou +32,2016-12-15,COM,49096,0,CHERRE,Cherré,Cherré,COMD,49096,0,CHERRE,Cherré,Cherré 32,2016-12-15,COM,49098,0,CHIGNE,Chigné,Chigné,COMD,49098,0,CHIGNE,Chigné,Chigné 32,2016-12-15,COM,49098,0,CHIGNE,Chigné,Chigné,COM,49228,0,NOYANT VILLAGES,Noyant-Villages,Noyant-Villages 32,2016-12-15,COM,49103,0,COMBREE,Combrée,Combrée,COMD,49103,0,COMBREE,Combrée,Combrée 32,2016-12-15,COM,49103,0,COMBREE,Combrée,Combrée,COM,49248,1,OMBREE D ANJOU,Ombrée d'Anjou,Ombrée d'Anjou -32,2016-12-15,COM,49105,0,CONTIGNE,Contigné,Contigné,COMD,49105,0,CONTIGNE,Contigné,Contigné 32,2016-12-15,COM,49105,0,CONTIGNE,Contigné,Contigné,COM,49065,4,HAUTS D ANJOU,Hauts d'Anjou,Les Hauts d'Anjou -32,2016-12-15,COM,49108,3,CORNUAILLE,Cornuaille,La Cornuaille,COM,49183,0,VAL D ERDRE AUXENCE,Val d'Erdre-Auxence,Val d'Erdre-Auxence +32,2016-12-15,COM,49105,0,CONTIGNE,Contigné,Contigné,COMD,49105,0,CONTIGNE,Contigné,Contigné 32,2016-12-15,COM,49108,3,CORNUAILLE,Cornuaille,La Cornuaille,COMD,49108,3,CORNUAILLE,Cornuaille,La Cornuaille +32,2016-12-15,COM,49108,3,CORNUAILLE,Cornuaille,La Cornuaille,COM,49183,0,VAL D ERDRE AUXENCE,Val d'Erdre-Auxence,Val d'Erdre-Auxence 32,2016-12-15,COM,49115,0,COUTURES,Coutures,Coutures,COM,49050,0,BRISSAC LOIRE AUBANCE,Brissac Loire Aubance,Brissac Loire Aubance 32,2016-12-15,COM,49115,0,COUTURES,Coutures,Coutures,COMD,49115,0,COUTURES,Coutures,Coutures 32,2016-12-15,COM,49122,0,DENEZE SOUS LE LUDE,Dénezé-sous-le-Lude,Dénezé-sous-le-Lude,COMD,49122,0,DENEZE SOUS LE LUDE,Dénezé-sous-le-Lude,Dénezé-sous-le-Lude @@ -3403,10 +3235,10 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-12-15,COM,49150,0,GENNETEIL,Genneteil,Genneteil,COM,49228,0,NOYANT VILLAGES,Noyant-Villages,Noyant-Villages 32,2016-12-15,COM,49156,0,GRUGE L HOPITAL,Grugé-l'Hôpital,Grugé-l'Hôpital,COMD,49156,0,GRUGE L HOPITAL,Grugé-l'Hôpital,Grugé-l'Hôpital 32,2016-12-15,COM,49156,0,GRUGE L HOPITAL,Grugé-l'Hôpital,Grugé-l'Hôpital,COM,49248,1,OMBREE D ANJOU,Ombrée d'Anjou,Ombrée d'Anjou -32,2016-12-15,COM,49158,5,HOTELLERIE DE FLEE,Hôtellerie-de-Flée,L'Hôtellerie-de-Flée,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu 32,2016-12-15,COM,49158,5,HOTELLERIE DE FLEE,Hôtellerie-de-Flée,L'Hôtellerie-de-Flée,COMD,49158,5,HOTELLERIE DE FLEE,Hôtellerie-de-Flée,L'Hôtellerie-de-Flée -32,2016-12-15,COM,49167,0,JUIGNE SUR LOIRE,Juigné-sur-Loire,Juigné-sur-Loire,COM,49167,4,GARENNES SUR LOIRE,Garennes sur Loire,Les Garennes sur Loire +32,2016-12-15,COM,49158,5,HOTELLERIE DE FLEE,Hôtellerie-de-Flée,L'Hôtellerie-de-Flée,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu 32,2016-12-15,COM,49167,0,JUIGNE SUR LOIRE,Juigné-sur-Loire,Juigné-sur-Loire,COMD,49167,0,JUIGNE SUR LOIRE,Juigné-sur-Loire,Juigné-sur-Loire +32,2016-12-15,COM,49167,0,JUIGNE SUR LOIRE,Juigné-sur-Loire,Juigné-sur-Loire,COM,49167,4,GARENNES SUR LOIRE,Garennes sur Loire,Les Garennes sur Loire 32,2016-12-15,COM,49173,0,LASSE,Lasse,Lasse,COMD,49173,0,LASSE,Lasse,Lasse 32,2016-12-15,COM,49173,0,LASSE,Lasse,Lasse,COM,49228,0,NOYANT VILLAGES,Noyant-Villages,Noyant-Villages 32,2016-12-15,COM,49175,0,LINIERES BOUTON,Linières-Bouton,Linières-Bouton,COMD,49175,0,LINIERES BOUTON,Linières-Bouton,Linières-Bouton @@ -3421,236 +3253,235 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-12-15,COM,49187,0,MARANS,Marans,Marans,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu 32,2016-12-15,COM,49189,0,MARIGNE,Marigné,Marigné,COM,49065,4,HAUTS D ANJOU,Hauts d'Anjou,Les Hauts d'Anjou 32,2016-12-15,COM,49189,0,MARIGNE,Marigné,Marigné,COMD,49189,0,MARIGNE,Marigné,Marigné -32,2016-12-15,COM,49197,0,MEIGNE LE VICOMTE,Meigné-le-Vicomte,Meigné-le-Vicomte,COM,49228,0,NOYANT VILLAGES,Noyant-Villages,Noyant-Villages 32,2016-12-15,COM,49197,0,MEIGNE LE VICOMTE,Meigné-le-Vicomte,Meigné-le-Vicomte,COMD,49197,0,MEIGNE LE VICOMTE,Meigné-le-Vicomte,Meigné-le-Vicomte +32,2016-12-15,COM,49197,0,MEIGNE LE VICOMTE,Meigné-le-Vicomte,Meigné-le-Vicomte,COM,49228,0,NOYANT VILLAGES,Noyant-Villages,Noyant-Villages 32,2016-12-15,COM,49202,0,MEON,Méon,Méon,COMD,49202,0,MEON,Méon,Méon 32,2016-12-15,COM,49202,0,MEON,Méon,Méon,COM,49228,0,NOYANT VILLAGES,Noyant-Villages,Noyant-Villages -32,2016-12-15,COM,49208,0,MONTGUILLON,Montguillon,Montguillon,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu 32,2016-12-15,COM,49208,0,MONTGUILLON,Montguillon,Montguillon,COMD,49208,0,MONTGUILLON,Montguillon,Montguillon -32,2016-12-15,COM,49226,0,NOELLET,Noëllet,Noëllet,COM,49248,1,OMBREE D ANJOU,Ombrée d'Anjou,Ombrée d'Anjou +32,2016-12-15,COM,49208,0,MONTGUILLON,Montguillon,Montguillon,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu 32,2016-12-15,COM,49226,0,NOELLET,Noëllet,Noëllet,COMD,49226,0,NOELLET,Noëllet,Noëllet -32,2016-12-15,COM,49228,0,NOYANT,Noyant,Noyant,COM,49228,0,NOYANT VILLAGES,Noyant-Villages,Noyant-Villages +32,2016-12-15,COM,49226,0,NOELLET,Noëllet,Noëllet,COM,49248,1,OMBREE D ANJOU,Ombrée d'Anjou,Ombrée d'Anjou 32,2016-12-15,COM,49228,0,NOYANT,Noyant,Noyant,COMD,49228,0,NOYANT,Noyant,Noyant -32,2016-12-15,COM,49229,0,NOYANT LA GRAVOYERE,Noyant-la-Gravoyère,Noyant-la-Gravoyère,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu +32,2016-12-15,COM,49228,0,NOYANT,Noyant,Noyant,COM,49228,0,NOYANT VILLAGES,Noyant-Villages,Noyant-Villages 32,2016-12-15,COM,49229,0,NOYANT LA GRAVOYERE,Noyant-la-Gravoyère,Noyant-la-Gravoyère,COMD,49229,0,NOYANT LA GRAVOYERE,Noyant-la-Gravoyère,Noyant-la-Gravoyère +32,2016-12-15,COM,49229,0,NOYANT LA GRAVOYERE,Noyant-la-Gravoyère,Noyant-la-Gravoyère,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu 32,2016-12-15,COM,49233,0,NYOISEAU,Nyoiseau,Nyoiseau,COMD,49233,0,NYOISEAU,Nyoiseau,Nyoiseau 32,2016-12-15,COM,49233,0,NYOISEAU,Nyoiseau,Nyoiseau,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu -32,2016-12-15,COM,49234,0,PARCAY LES PINS,Parçay-les-Pins,Parçay-les-Pins,COMD,49234,0,PARCAY LES PINS,Parçay-les-Pins,Parçay-les-Pins 32,2016-12-15,COM,49234,0,PARCAY LES PINS,Parçay-les-Pins,Parçay-les-Pins,COM,49228,0,NOYANT VILLAGES,Noyant-Villages,Noyant-Villages -32,2016-12-15,COM,49248,0,POUANCE,Pouancé,Pouancé,COM,49248,1,OMBREE D ANJOU,Ombrée d'Anjou,Ombrée d'Anjou +32,2016-12-15,COM,49234,0,PARCAY LES PINS,Parçay-les-Pins,Parçay-les-Pins,COMD,49234,0,PARCAY LES PINS,Parçay-les-Pins,Parçay-les-Pins 32,2016-12-15,COM,49248,0,POUANCE,Pouancé,Pouancé,COMD,49248,0,POUANCE,Pouancé,Pouancé -32,2016-12-15,COM,49250,3,PREVIERE,Prévière,La Prévière,COMD,49250,3,PREVIERE,Prévière,La Prévière +32,2016-12-15,COM,49248,0,POUANCE,Pouancé,Pouancé,COM,49248,1,OMBREE D ANJOU,Ombrée d'Anjou,Ombrée d'Anjou 32,2016-12-15,COM,49250,3,PREVIERE,Prévière,La Prévière,COM,49248,1,OMBREE D ANJOU,Ombrée d'Anjou,Ombrée d'Anjou -32,2016-12-15,COM,49254,0,QUERRE,Querré,Querré,COMD,49254,0,QUERRE,Querré,Querré +32,2016-12-15,COM,49250,3,PREVIERE,Prévière,La Prévière,COMD,49250,3,PREVIERE,Prévière,La Prévière 32,2016-12-15,COM,49254,0,QUERRE,Querré,Querré,COM,49065,4,HAUTS D ANJOU,Hauts d'Anjou,Les Hauts d'Anjou -32,2016-12-15,COM,49277,0,SAINTE GEMMES D ANDIGNE,Sainte-Gemmes-d'Andigné,Sainte-Gemmes-d'Andigné,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu +32,2016-12-15,COM,49254,0,QUERRE,Querré,Querré,COMD,49254,0,QUERRE,Querré,Querré 32,2016-12-15,COM,49277,0,SAINTE GEMMES D ANDIGNE,Sainte-Gemmes-d'Andigné,Sainte-Gemmes-d'Andigné,COMD,49277,0,SAINTE GEMMES D ANDIGNE,Sainte-Gemmes-d'Andigné,Sainte-Gemmes-d'Andigné +32,2016-12-15,COM,49277,0,SAINTE GEMMES D ANDIGNE,Sainte-Gemmes-d'Andigné,Sainte-Gemmes-d'Andigné,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu 32,2016-12-15,COM,49290,0,SAINT JEAN DES MAUVRETS,Saint-Jean-des-Mauvrets,Saint-Jean-des-Mauvrets,COM,49167,4,GARENNES SUR LOIRE,Garennes sur Loire,Les Garennes sur Loire 32,2016-12-15,COM,49290,0,SAINT JEAN DES MAUVRETS,Saint-Jean-des-Mauvrets,Saint-Jean-des-Mauvrets,COMD,49290,0,SAINT JEAN DES MAUVRETS,Saint-Jean-des-Mauvrets,Saint-Jean-des-Mauvrets 32,2016-12-15,COM,49305,0,SAINT MARTIN DU BOIS,Saint-Martin-du-Bois,Saint-Martin-du-Bois,COMD,49305,0,SAINT MARTIN DU BOIS,Saint-Martin-du-Bois,Saint-Martin-du-Bois 32,2016-12-15,COM,49305,0,SAINT MARTIN DU BOIS,Saint-Martin-du-Bois,Saint-Martin-du-Bois,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu -32,2016-12-15,COM,49309,0,SAINT MICHEL ET CHANVEAUX,Saint-Michel-et-Chanveaux,Saint-Michel-et-Chanveaux,COMD,49309,0,SAINT MICHEL ET CHANVEAUX,Saint-Michel-et-Chanveaux,Saint-Michel-et-Chanveaux 32,2016-12-15,COM,49309,0,SAINT MICHEL ET CHANVEAUX,Saint-Michel-et-Chanveaux,Saint-Michel-et-Chanveaux,COM,49248,1,OMBREE D ANJOU,Ombrée d'Anjou,Ombrée d'Anjou -32,2016-12-15,COM,49317,0,SAINT REMY LA VARENNE,Saint-Rémy-la-Varenne,Saint-Rémy-la-Varenne,COMD,49317,0,SAINT REMY LA VARENNE,Saint-Rémy-la-Varenne,Saint-Rémy-la-Varenne +32,2016-12-15,COM,49309,0,SAINT MICHEL ET CHANVEAUX,Saint-Michel-et-Chanveaux,Saint-Michel-et-Chanveaux,COMD,49309,0,SAINT MICHEL ET CHANVEAUX,Saint-Michel-et-Chanveaux,Saint-Michel-et-Chanveaux 32,2016-12-15,COM,49317,0,SAINT REMY LA VARENNE,Saint-Rémy-la-Varenne,Saint-Rémy-la-Varenne,COM,49050,0,BRISSAC LOIRE AUBANCE,Brissac Loire Aubance,Brissac Loire Aubance -32,2016-12-15,COM,49318,0,SAINT SATURNIN SUR LOIRE,Saint-Saturnin-sur-Loire,Saint-Saturnin-sur-Loire,COMD,49318,0,SAINT SATURNIN SUR LOIRE,Saint-Saturnin-sur-Loire,Saint-Saturnin-sur-Loire +32,2016-12-15,COM,49317,0,SAINT REMY LA VARENNE,Saint-Rémy-la-Varenne,Saint-Rémy-la-Varenne,COMD,49317,0,SAINT REMY LA VARENNE,Saint-Rémy-la-Varenne,Saint-Rémy-la-Varenne 32,2016-12-15,COM,49318,0,SAINT SATURNIN SUR LOIRE,Saint-Saturnin-sur-Loire,Saint-Saturnin-sur-Loire,COM,49050,0,BRISSAC LOIRE AUBANCE,Brissac Loire Aubance,Brissac Loire Aubance -32,2016-12-15,COM,49319,0,SAINT SAUVEUR DE FLEE,Saint-Sauveur-de-Flée,Saint-Sauveur-de-Flée,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu +32,2016-12-15,COM,49318,0,SAINT SATURNIN SUR LOIRE,Saint-Saturnin-sur-Loire,Saint-Saturnin-sur-Loire,COMD,49318,0,SAINT SATURNIN SUR LOIRE,Saint-Saturnin-sur-Loire,Saint-Saturnin-sur-Loire 32,2016-12-15,COM,49319,0,SAINT SAUVEUR DE FLEE,Saint-Sauveur-de-Flée,Saint-Sauveur-de-Flée,COMD,49319,0,SAINT SAUVEUR DE FLEE,Saint-Sauveur-de-Flée,Saint-Sauveur-de-Flée -32,2016-12-15,COM,49327,0,SAULGE L HOPITAL,Saulgé-l'Hôpital,Saulgé-l'Hôpital,COMD,49327,0,SAULGE L HOPITAL,Saulgé-l'Hôpital,Saulgé-l'Hôpital +32,2016-12-15,COM,49319,0,SAINT SAUVEUR DE FLEE,Saint-Sauveur-de-Flée,Saint-Sauveur-de-Flée,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu 32,2016-12-15,COM,49327,0,SAULGE L HOPITAL,Saulgé-l'Hôpital,Saulgé-l'Hôpital,COM,49050,0,BRISSAC LOIRE AUBANCE,Brissac Loire Aubance,Brissac Loire Aubance +32,2016-12-15,COM,49327,0,SAULGE L HOPITAL,Saulgé-l'Hôpital,Saulgé-l'Hôpital,COMD,49327,0,SAULGE L HOPITAL,Saulgé-l'Hôpital,Saulgé-l'Hôpital 32,2016-12-15,COM,49331,0,SEGRE,Segré,Segré,COM,49331,0,SEGRE EN ANJOU BLEU,Segré-en-Anjou Bleu,Segré-en-Anjou Bleu 32,2016-12-15,COM,49331,0,SEGRE,Segré,Segré,COMD,49331,0,SEGRE,Segré,Segré -32,2016-12-15,COM,49335,0,SOEURDRES,Sœurdres,Sœurdres,COMD,49335,0,SOEURDRES,Sœurdres,Sœurdres -32,2016-12-15,COM,49335,0,SOEURDRES,Sœurdres,Sœurdres,COM,49065,4,HAUTS D ANJOU,Hauts d'Anjou,Les Hauts d'Anjou +32,2016-12-15,COM,49335,0,SOURDRES,Sœurdres,Sœurdres,COM,49065,4,HAUTS D ANJOU,Hauts d'Anjou,Les Hauts d'Anjou +32,2016-12-15,COM,49335,0,SOURDRES,Sœurdres,Sœurdres,COMD,49335,0,SOURDRES,Sœurdres,Sœurdres 32,2016-12-15,COM,49354,2,TREMBLAY,Tremblay,Le Tremblay,COM,49248,1,OMBREE D ANJOU,Ombrée d'Anjou,Ombrée d'Anjou 32,2016-12-15,COM,49354,2,TREMBLAY,Tremblay,Le Tremblay,COMD,49354,2,TREMBLAY,Tremblay,Le Tremblay -32,2016-12-15,COM,49363,0,VAUCHRETIEN,Vauchrétien,Vauchrétien,COMD,49363,0,VAUCHRETIEN,Vauchrétien,Vauchrétien 32,2016-12-15,COM,49363,0,VAUCHRETIEN,Vauchrétien,Vauchrétien,COM,49050,0,BRISSAC LOIRE AUBANCE,Brissac Loire Aubance,Brissac Loire Aubance -32,2016-12-15,COM,49366,0,VERGONNES,Vergonnes,Vergonnes,COMD,49366,0,VERGONNES,Vergonnes,Vergonnes +32,2016-12-15,COM,49363,0,VAUCHRETIEN,Vauchrétien,Vauchrétien,COMD,49363,0,VAUCHRETIEN,Vauchrétien,Vauchrétien 32,2016-12-15,COM,49366,0,VERGONNES,Vergonnes,Vergonnes,COM,49248,1,OMBREE D ANJOU,Ombrée d'Anjou,Ombrée d'Anjou -32,2016-12-15,COM,49376,0,VILLEMOISAN,Villemoisan,Villemoisan,COMD,49376,0,VILLEMOISAN,Villemoisan,Villemoisan +32,2016-12-15,COM,49366,0,VERGONNES,Vergonnes,Vergonnes,COMD,49366,0,VERGONNES,Vergonnes,Vergonnes 32,2016-12-15,COM,49376,0,VILLEMOISAN,Villemoisan,Villemoisan,COM,49183,0,VAL D ERDRE AUXENCE,Val d'Erdre-Auxence,Val d'Erdre-Auxence -34,2016-12-08,COMD,61175,0,FORGES,Forges,Forges,COM,61341,1,ECOUVES,Écouves,Écouves -34,2016-12-08,COM,61341,1,ECOUVES,Écouves,Écouves,COM,61341,1,ECOUVES,Écouves,Écouves -34,2016-12-08,COMD,61341,0,RADON,Radon,Radon,COM,61341,1,ECOUVES,Écouves,Écouves -34,2016-12-08,COMD,61509,0,VINGT HANAPS,Vingt-Hanaps,Vingt-Hanaps,COM,61341,1,ECOUVES,Écouves,Écouves -32,2016-12-01,COM,15031,0,CELLES,Celles,Celles,COM,15141,0,NEUSSARGUES EN PINATELLE,Neussargues en Pinatelle,Neussargues en Pinatelle +32,2016-12-15,COM,49376,0,VILLEMOISAN,Villemoisan,Villemoisan,COMD,49376,0,VILLEMOISAN,Villemoisan,Villemoisan +35,2016-12-08,COMD,61175,0,FORGES,Forges,Forges,COM,61341,1,ECOUVES,Écouves,Écouves +35,2016-12-08,COMD,61341,0,RADON,Radon,Radon,COM,61341,1,ECOUVES,Écouves,Écouves +35,2016-12-08,COMD,61509,0,VINGT HANAPS,Vingt-Hanaps,Vingt-Hanaps,COM,61341,1,ECOUVES,Écouves,Écouves 32,2016-12-01,COM,15031,0,CELLES,Celles,Celles,COMD,15031,0,CELLES,Celles,Celles -32,2016-12-01,COM,15035,0,CHALINARGUES,Chalinargues,Chalinargues,COM,15141,0,NEUSSARGUES EN PINATELLE,Neussargues en Pinatelle,Neussargues en Pinatelle +32,2016-12-01,COM,15031,0,CELLES,Celles,Celles,COM,15141,0,NEUSSARGUES EN PINATELLE,Neussargues en Pinatelle,Neussargues en Pinatelle 32,2016-12-01,COM,15035,0,CHALINARGUES,Chalinargues,Chalinargues,COMD,15035,0,CHALINARGUES,Chalinargues,Chalinargues -32,2016-12-01,COM,15047,0,CHAVAGNAC,Chavagnac,Chavagnac,COM,15141,0,NEUSSARGUES EN PINATELLE,Neussargues en Pinatelle,Neussargues en Pinatelle +32,2016-12-01,COM,15035,0,CHALINARGUES,Chalinargues,Chalinargues,COM,15141,0,NEUSSARGUES EN PINATELLE,Neussargues en Pinatelle,Neussargues en Pinatelle 32,2016-12-01,COM,15047,0,CHAVAGNAC,Chavagnac,Chavagnac,COMD,15047,0,CHAVAGNAC,Chavagnac,Chavagnac +32,2016-12-01,COM,15047,0,CHAVAGNAC,Chavagnac,Chavagnac,COM,15141,0,NEUSSARGUES EN PINATELLE,Neussargues en Pinatelle,Neussargues en Pinatelle 32,2016-12-01,COM,15141,0,NEUSSARGUES MOISSAC,Neussargues-Moissac,Neussargues-Moissac,COM,15141,0,NEUSSARGUES EN PINATELLE,Neussargues en Pinatelle,Neussargues en Pinatelle 32,2016-12-01,COM,15141,0,NEUSSARGUES MOISSAC,Neussargues-Moissac,Neussargues-Moissac,COMD,15141,0,NEUSSARGUES MOISSAC,Neussargues-Moissac,Neussargues-Moissac -32,2016-12-01,COM,15171,0,SAINTE ANASTASIE,Sainte-Anastasie,Sainte-Anastasie,COMD,15171,0,SAINTE ANASTASIE,Sainte-Anastasie,Sainte-Anastasie 32,2016-12-01,COM,15171,0,SAINTE ANASTASIE,Sainte-Anastasie,Sainte-Anastasie,COM,15141,0,NEUSSARGUES EN PINATELLE,Neussargues en Pinatelle,Neussargues en Pinatelle -32,2016-10-01,COM,72071,0,CHATEAU DU LOIR,Château-du-Loir,Château-du-Loir,COM,72071,0,MONTVAL SUR LOIR,Montval-sur-Loir,Montval-sur-Loir +32,2016-12-01,COM,15171,0,SAINTE ANASTASIE,Sainte-Anastasie,Sainte-Anastasie,COMD,15171,0,SAINTE ANASTASIE,Sainte-Anastasie,Sainte-Anastasie 32,2016-10-01,COM,72071,0,CHATEAU DU LOIR,Château-du-Loir,Château-du-Loir,COMD,72071,0,CHATEAU DU LOIR,Château-du-Loir,Château-du-Loir +32,2016-10-01,COM,72071,0,CHATEAU DU LOIR,Château-du-Loir,Château-du-Loir,COM,72071,0,MONTVAL SUR LOIR,Montval-sur-Loir,Montval-sur-Loir 32,2016-10-01,COM,72203,0,MONTABON,Montabon,Montabon,COM,72071,0,MONTVAL SUR LOIR,Montval-sur-Loir,Montval-sur-Loir 32,2016-10-01,COM,72203,0,MONTABON,Montabon,Montabon,COMD,72203,0,MONTABON,Montabon,Montabon -32,2016-10-01,COM,72384,0,VOUVRAY SUR LOIR,Vouvray-sur-Loir,Vouvray-sur-Loir,COMD,72384,0,VOUVRAY SUR LOIR,Vouvray-sur-Loir,Vouvray-sur-Loir 32,2016-10-01,COM,72384,0,VOUVRAY SUR LOIR,Vouvray-sur-Loir,Vouvray-sur-Loir,COM,72071,0,MONTVAL SUR LOIR,Montval-sur-Loir,Montval-sur-Loir +32,2016-10-01,COM,72384,0,VOUVRAY SUR LOIR,Vouvray-sur-Loir,Vouvray-sur-Loir,COMD,72384,0,VOUVRAY SUR LOIR,Vouvray-sur-Loir,Vouvray-sur-Loir 32,2016-09-01,COM,62431,1,HERBELLES,Herbelles,Herbelles,COMD,62431,1,HERBELLES,Herbelles,Herbelles 32,2016-09-01,COM,62431,1,HERBELLES,Herbelles,Herbelles,COM,62471,0,BELLINGHEM,Bellinghem,Bellinghem 32,2016-09-01,COM,62471,1,INGHEM,Inghem,Inghem,COM,62471,0,BELLINGHEM,Bellinghem,Bellinghem 32,2016-09-01,COM,62471,1,INGHEM,Inghem,Inghem,COMD,62471,1,INGHEM,Inghem,Inghem -32,2016-06-01,COMA,08068,0,BLAISE,Blaise,Blaise,COM,08490,0,VOUZIERS,Vouziers,Vouziers -32,2016-06-01,COM,08443,0,TERRON SUR AISNE,Terron-sur-Aisne,Terron-sur-Aisne,COMD,08443,0,TERRON SUR AISNE,Terron-sur-Aisne,Terron-sur-Aisne -32,2016-06-01,COM,08443,0,TERRON SUR AISNE,Terron-sur-Aisne,Terron-sur-Aisne,COM,08490,0,VOUZIERS,Vouziers,Vouziers -32,2016-06-01,COM,08490,0,VOUZIERS,Vouziers,Vouziers,COM,08490,0,VOUZIERS,Vouziers,Vouziers -32,2016-06-01,COM,08490,0,VOUZIERS,Vouziers,Vouziers,COMD,08490,0,VOUZIERS,Vouziers,Vouziers -32,2016-06-01,COM,08493,0,VRIZY,Vrizy,Vrizy,COMD,08493,0,VRIZY,Vrizy,Vrizy -32,2016-06-01,COM,08493,0,VRIZY,Vrizy,Vrizy,COM,08490,0,VOUZIERS,Vouziers,Vouziers +32,2016-06-01,COMA,8068,0,BLAISE,Blaise,Blaise,COM,8490,0,VOUZIERS,Vouziers,Vouziers +32,2016-06-01,COM,8443,0,TERRON SUR AISNE,Terron-sur-Aisne,Terron-sur-Aisne,COMD,8443,0,TERRON SUR AISNE,Terron-sur-Aisne,Terron-sur-Aisne +32,2016-06-01,COM,8443,0,TERRON SUR AISNE,Terron-sur-Aisne,Terron-sur-Aisne,COM,8490,0,VOUZIERS,Vouziers,Vouziers +32,2016-06-01,COM,8490,0,VOUZIERS,Vouziers,Vouziers,COM,8490,0,VOUZIERS,Vouziers,Vouziers +32,2016-06-01,COM,8490,0,VOUZIERS,Vouziers,Vouziers,COMD,8490,0,VOUZIERS,Vouziers,Vouziers +32,2016-06-01,COM,8493,0,VRIZY,Vrizy,Vrizy,COM,8490,0,VOUZIERS,Vouziers,Vouziers +32,2016-06-01,COM,8493,0,VRIZY,Vrizy,Vrizy,COMD,8493,0,VRIZY,Vrizy,Vrizy 32,2016-06-01,COM,25575,0,VAIRE ARCIER,Vaire-Arcier,Vaire-Arcier,COM,25575,0,VAIRE,Vaire,Vaire 32,2016-06-01,COM,25576,0,VAIRE LE PETIT,Vaire-le-Petit,Vaire-le-Petit,COM,25575,0,VAIRE,Vaire,Vaire 32,2016-06-01,COM,52064,0,BOURMONT,Bourmont,Bourmont,COM,52064,0,BOURMONT ENTRE MEUSE ET MOUZON,Bourmont-entre-Meuse-et-Mouzon,Bourmont-entre-Meuse-et-Mouzon 32,2016-06-01,COM,52064,0,BOURMONT,Bourmont,Bourmont,COMD,52064,0,BOURMONT,Bourmont,Bourmont 32,2016-06-01,COMA,52224,0,GONAINCOURT,Gonaincourt,Gonaincourt,COM,52064,0,BOURMONT ENTRE MEUSE ET MOUZON,Bourmont-entre-Meuse-et-Mouzon,Bourmont-entre-Meuse-et-Mouzon -32,2016-06-01,COM,52351,0,NIJON,Nijon,Nijon,COMD,52351,0,NIJON,Nijon,Nijon 32,2016-06-01,COM,52351,0,NIJON,Nijon,Nijon,COM,52064,0,BOURMONT ENTRE MEUSE ET MOUZON,Bourmont-entre-Meuse-et-Mouzon,Bourmont-entre-Meuse-et-Mouzon -32,2016-06-01,COM,57148,0,COLLIGNY,Colligny,Colligny,COM,57148,0,COLLIGNY MAIZERY,Colligny-Maizery,Colligny-Maizery +32,2016-06-01,COM,52351,0,NIJON,Nijon,Nijon,COMD,52351,0,NIJON,Nijon,Nijon 32,2016-06-01,COM,57148,0,COLLIGNY,Colligny,Colligny,COMD,57148,0,COLLIGNY,Colligny,Colligny +32,2016-06-01,COM,57148,0,COLLIGNY,Colligny,Colligny,COM,57148,0,COLLIGNY MAIZERY,Colligny-Maizery,Colligny-Maizery 32,2016-06-01,COM,57432,0,MAIZERY,Maizery,Maizery,COM,57148,0,COLLIGNY MAIZERY,Colligny-Maizery,Colligny-Maizery 32,2016-06-01,COM,57432,0,MAIZERY,Maizery,Maizery,COMD,57432,0,MAIZERY,Maizery,Maizery -32,2016-04-01,COM,39023,5,AUBEPIN,Aubépin,L'Aubépin,COM,39378,4,TROIS CHATEAUX,Trois Châteaux,Les Trois Châteaux 32,2016-04-01,COM,39023,5,AUBEPIN,Aubépin,L'Aubépin,COMD,39023,5,AUBEPIN,Aubépin,L'Aubépin -32,2016-04-01,COM,39135,0,CHAZELLES,Chazelles,Chazelles,COM,39378,4,TROIS CHATEAUX,Trois Châteaux,Les Trois Châteaux +32,2016-04-01,COM,39023,5,AUBEPIN,Aubépin,L'Aubépin,COM,39378,4,TROIS CHATEAUX,Trois Châteaux,Les Trois Châteaux 32,2016-04-01,COM,39135,0,CHAZELLES,Chazelles,Chazelles,COMD,39135,0,CHAZELLES,Chazelles,Chazelles -32,2016-04-01,COM,39243,0,FROIDEVILLE,Froideville,Froideville,COM,39577,0,VINCENT FROIDEVILLE,Vincent-Froideville,Vincent-Froideville +32,2016-04-01,COM,39135,0,CHAZELLES,Chazelles,Chazelles,COM,39378,4,TROIS CHATEAUX,Trois Châteaux,Les Trois Châteaux 32,2016-04-01,COM,39243,0,FROIDEVILLE,Froideville,Froideville,COMD,39243,0,FROIDEVILLE,Froideville,Froideville -32,2016-04-01,COM,39378,0,NANC LES SAINT AMOUR,Nanc-lès-Saint-Amour,Nanc-lès-Saint-Amour,COMD,39378,0,NANC LES SAINT AMOUR,Nanc-lès-Saint-Amour,Nanc-lès-Saint-Amour +32,2016-04-01,COM,39243,0,FROIDEVILLE,Froideville,Froideville,COM,39577,0,VINCENT FROIDEVILLE,Vincent-Froideville,Vincent-Froideville 32,2016-04-01,COM,39378,0,NANC LES SAINT AMOUR,Nanc-lès-Saint-Amour,Nanc-lès-Saint-Amour,COM,39378,4,TROIS CHATEAUX,Trois Châteaux,Les Trois Châteaux +32,2016-04-01,COM,39378,0,NANC LES SAINT AMOUR,Nanc-lès-Saint-Amour,Nanc-lès-Saint-Amour,COMD,39378,0,NANC LES SAINT AMOUR,Nanc-lès-Saint-Amour,Nanc-lès-Saint-Amour 32,2016-04-01,COM,39577,0,VINCENT,Vincent,Vincent,COM,39577,0,VINCENT FROIDEVILLE,Vincent-Froideville,Vincent-Froideville 32,2016-03-01,COM,22007,0,BINIC,Binic,Binic,COMD,22007,0,BINIC,Binic,Binic 32,2016-03-01,COM,22007,0,BINIC,Binic,Binic,COM,22055,0,BINIC ETABLES SUR MER,Binic-Étables-sur-Mer,Binic-Étables-sur-Mer 32,2016-03-01,COM,22055,1,ETABLES SUR MER,Étables-sur-Mer,Étables-sur-Mer,COM,22055,0,BINIC ETABLES SUR MER,Binic-Étables-sur-Mer,Binic-Étables-sur-Mer 32,2016-03-01,COM,22055,1,ETABLES SUR MER,Étables-sur-Mer,Étables-sur-Mer,COMD,22055,1,ETABLES SUR MER,Étables-sur-Mer,Étables-sur-Mer -32,2016-01-12,COM,61004,1,ANTOIGNY,Antoigny,Antoigny,COM,61168,3,FERTE MACE,Ferté Macé,La Ferté Macé 32,2016-01-12,COM,61004,1,ANTOIGNY,Antoigny,Antoigny,COMD,61004,1,ANTOIGNY,Antoigny,Antoigny +32,2016-01-12,COM,61004,1,ANTOIGNY,Antoigny,Antoigny,COM,61168,3,FERTE MACE,Ferté Macé,La Ferté Macé 32,2016-01-12,COM,61168,3,FERTE MACE,Ferté-Macé,La Ferté-Macé,COM,61168,3,FERTE MACE,Ferté Macé,La Ferté Macé -32,2016-01-01,COM,01015,1,ARBIGNIEU,Arbignieu,Arbignieu,COM,01015,1,ARBOYS EN BUGEY,Arboys en Bugey,Arboys en Bugey -32,2016-01-01,COM,01015,1,ARBIGNIEU,Arbignieu,Arbignieu,COMD,01015,1,ARBIGNIEU,Arbignieu,Arbignieu -32,2016-01-01,COM,01080,0,CHAMPDOR,Champdor,Champdor,COM,01080,0,CHAMPDOR CORCELLES,Champdor-Corcelles,Champdor-Corcelles -32,2016-01-01,COM,01080,0,CHAMPDOR,Champdor,Champdor,COMD,01080,0,CHAMPDOR,Champdor,Champdor -32,2016-01-01,COM,01119,0,CORCELLES,Corcelles,Corcelles,COM,01080,0,CHAMPDOR CORCELLES,Champdor-Corcelles,Champdor-Corcelles -32,2016-01-01,COM,01119,0,CORCELLES,Corcelles,Corcelles,COMD,01119,0,CORCELLES,Corcelles,Corcelles -32,2016-01-01,COMA,01137,0,CUISIAT,Cuisiat,Cuisiat,COMD,01137,0,CUISIAT,Cuisiat,Cuisiat -32,2016-01-01,COMA,01137,0,CUISIAT,Cuisiat,Cuisiat,COM,01426,0,VAL REVERMONT,Val-Revermont,Val-Revermont -32,2016-01-01,COM,01176,2,GRAND ABERGEMENT,Grand-Abergement,Le Grand-Abergement,COMD,01176,2,GRAND ABERGEMENT,Grand-Abergement,Le Grand-Abergement -32,2016-01-01,COM,01176,2,GRAND ABERGEMENT,Grand-Abergement,Le Grand-Abergement,COM,01187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey -32,2016-01-01,COM,01182,0,GROSLEE,Groslée,Groslée,COMD,01182,0,GROSLEE,Groslée,Groslée -32,2016-01-01,COM,01182,0,GROSLEE,Groslée,Groslée,COM,01338,0,GROSLEE SAINT BENOIT,Groslée-Saint-Benoit,Groslée-Saint-Benoit -32,2016-01-01,COM,01187,1,HOTONNES,Hotonnes,Hotonnes,COM,01187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey -32,2016-01-01,COM,01187,1,HOTONNES,Hotonnes,Hotonnes,COMD,01187,1,HOTONNES,Hotonnes,Hotonnes -32,2016-01-01,COM,01204,0,LALLEYRIAT,Lalleyriat,Lalleyriat,COMD,01204,0,LALLEYRIAT,Lalleyriat,Lalleyriat -32,2016-01-01,COM,01204,0,LALLEYRIAT,Lalleyriat,Lalleyriat,COM,01204,2,POIZAT LALLEYRIAT,Poizat-Lalleyriat,Le Poizat-Lalleyriat -32,2016-01-01,COM,01271,0,NATTAGES,Nattages,Nattages,COMD,01271,0,NATTAGES,Nattages,Nattages -32,2016-01-01,COM,01271,0,NATTAGES,Nattages,Nattages,COM,01286,0,PARVES ET NATTAGES,Parves et Nattages,Parves et Nattages -32,2016-01-01,COM,01286,0,PARVES,Parves,Parves,COMD,01286,0,PARVES,Parves,Parves -32,2016-01-01,COM,01286,0,PARVES,Parves,Parves,COM,01286,0,PARVES ET NATTAGES,Parves et Nattages,Parves et Nattages -32,2016-01-01,COM,01292,2,PETIT ABERGEMENT,Petit-Abergement,Le Petit-Abergement,COM,01187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey -32,2016-01-01,COM,01292,2,PETIT ABERGEMENT,Petit-Abergement,Le Petit-Abergement,COMD,01292,2,PETIT ABERGEMENT,Petit-Abergement,Le Petit-Abergement -32,2016-01-01,COM,01300,2,POIZAT,Poizat,Le Poizat,COMD,01300,2,POIZAT,Poizat,Le Poizat -32,2016-01-01,COM,01300,2,POIZAT,Poizat,Le Poizat,COM,01204,2,POIZAT LALLEYRIAT,Poizat-Lalleyriat,Le Poizat-Lalleyriat -32,2016-01-01,COM,01312,0,PRESSIAT,Pressiat,Pressiat,COM,01426,0,VAL REVERMONT,Val-Revermont,Val-Revermont -32,2016-01-01,COM,01312,0,PRESSIAT,Pressiat,Pressiat,COMD,01312,0,PRESSIAT,Pressiat,Pressiat -32,2016-01-01,COM,01338,0,SAINT BENOIT,Saint-Benoît,Saint-Benoît,COMD,01338,0,SAINT BENOIT,Saint-Benoît,Saint-Benoît -32,2016-01-01,COM,01338,0,SAINT BENOIT,Saint-Benoît,Saint-Benoît,COM,01338,0,GROSLEE SAINT BENOIT,Groslée-Saint-Benoit,Groslée-Saint-Benoit -32,2016-01-01,COM,01340,0,SAINT BOIS,Saint-Bois,Saint-Bois,COM,01015,1,ARBOYS EN BUGEY,Arboys en Bugey,Arboys en Bugey -32,2016-01-01,COM,01340,0,SAINT BOIS,Saint-Bois,Saint-Bois,COMD,01340,0,SAINT BOIS,Saint-Bois,Saint-Bois -32,2016-01-01,COM,01409,0,SONGIEU,Songieu,Songieu,COM,01187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey -32,2016-01-01,COM,01409,0,SONGIEU,Songieu,Songieu,COMD,01409,0,SONGIEU,Songieu,Songieu -32,2016-01-01,COM,01426,0,TREFFORT CUISIAT,Treffort-Cuisiat,Treffort-Cuisiat,COM,01426,0,VAL REVERMONT,Val-Revermont,Val-Revermont -32,2016-01-01,COM,01426,0,TREFFORT CUISIAT,Treffort-Cuisiat,Treffort-Cuisiat,COMD,01426,0,TREFFORT,Treffort,Treffort -32,2016-01-01,COM,02026,1,ARTONGES,Artonges,Artonges,COMD,02026,1,ARTONGES,Artonges,Artonges -32,2016-01-01,COM,02026,1,ARTONGES,Artonges,Artonges,COM,02458,0,DHUYS ET MORIN EN BRIE,Dhuys et Morin-en-Brie,Dhuys et Morin-en-Brie -32,2016-01-01,COM,02053,0,BAULNE EN BRIE,Baulne-en-Brie,Baulne-en-Brie,COMD,02053,0,BAULNE EN BRIE,Baulne-en-Brie,Baulne-en-Brie -32,2016-01-01,COM,02053,0,BAULNE EN BRIE,Baulne-en-Brie,Baulne-en-Brie,COM,02053,0,VALLEES EN CHAMPAGNE,Vallées en Champagne,Vallées en Champagne -32,2016-01-01,COM,02147,3,CELLE SOUS MONTMIRAIL,Celle-sous-Montmirail,La Celle-sous-Montmirail,COMD,02147,3,CELLE SOUS MONTMIRAIL,Celle-sous-Montmirail,La Celle-sous-Montmirail -32,2016-01-01,COM,02147,3,CELLE SOUS MONTMIRAIL,Celle-sous-Montmirail,La Celle-sous-Montmirail,COM,02458,0,DHUYS ET MORIN EN BRIE,Dhuys et Morin-en-Brie,Dhuys et Morin-en-Brie -32,2016-01-01,COM,02161,3,CHAPELLE MONTHODON,Chapelle-Monthodon,La Chapelle-Monthodon,COMD,02161,3,CHAPELLE MONTHODON,Chapelle-Monthodon,La Chapelle-Monthodon -32,2016-01-01,COM,02161,3,CHAPELLE MONTHODON,Chapelle-Monthodon,La Chapelle-Monthodon,COM,02053,0,VALLEES EN CHAMPAGNE,Vallées en Champagne,Vallées en Champagne -32,2016-01-01,COM,02325,0,FONTENELLE EN BRIE,Fontenelle-en-Brie,Fontenelle-en-Brie,COM,02458,0,DHUYS ET MORIN EN BRIE,Dhuys et Morin-en-Brie,Dhuys et Morin-en-Brie -32,2016-01-01,COM,02325,0,FONTENELLE EN BRIE,Fontenelle-en-Brie,Fontenelle-en-Brie,COMD,02325,0,FONTENELLE EN BRIE,Fontenelle-en-Brie,Fontenelle-en-Brie -32,2016-01-01,COM,02348,0,GLENNES,Glennes,Glennes,COM,02439,4,SEPTVALLONS,Septvallons,Les Septvallons -32,2016-01-01,COM,02348,0,GLENNES,Glennes,Glennes,COMD,02348,0,GLENNES,Glennes,Glennes -32,2016-01-01,COM,02439,0,LONGUEVAL BARBONVAL,Longueval-Barbonval,Longueval-Barbonval,COM,02439,4,SEPTVALLONS,Septvallons,Les Septvallons -32,2016-01-01,COM,02439,0,LONGUEVAL BARBONVAL,Longueval-Barbonval,Longueval-Barbonval,COMD,02439,0,LONGUEVAL BARBONVAL,Longueval-Barbonval,Longueval-Barbonval -32,2016-01-01,COM,02458,0,MARCHAIS EN BRIE,Marchais-en-Brie,Marchais-en-Brie,COMD,02458,0,MARCHAIS EN BRIE,Marchais-en-Brie,Marchais-en-Brie -32,2016-01-01,COM,02458,0,MARCHAIS EN BRIE,Marchais-en-Brie,Marchais-en-Brie,COM,02458,0,DHUYS ET MORIN EN BRIE,Dhuys et Morin-en-Brie,Dhuys et Morin-en-Brie -32,2016-01-01,COM,02479,0,MERVAL,Merval,Merval,COMD,02479,0,MERVAL,Merval,Merval -32,2016-01-01,COM,02479,0,MERVAL,Merval,Merval,COM,02439,4,SEPTVALLONS,Septvallons,Les Septvallons -32,2016-01-01,COM,02597,0,PERLES,Perles,Perles,COMD,02597,0,PERLES,Perles,Perles -32,2016-01-01,COM,02597,0,PERLES,Perles,Perles,COM,02439,4,SEPTVALLONS,Septvallons,Les Septvallons -32,2016-01-01,COM,02646,0,REVILLON,Révillon,Révillon,COMD,02646,0,REVILLON,Révillon,Révillon -32,2016-01-01,COM,02646,0,REVILLON,Révillon,Révillon,COM,02439,4,SEPTVALLONS,Septvallons,Les Septvallons -32,2016-01-01,COM,02669,0,SAINT AGNAN,Saint-Agnan,Saint-Agnan,COMD,02669,0,SAINT AGNAN,Saint-Agnan,Saint-Agnan -32,2016-01-01,COM,02669,0,SAINT AGNAN,Saint-Agnan,Saint-Agnan,COM,02053,0,VALLEES EN CHAMPAGNE,Vallées en Champagne,Vallées en Champagne -32,2016-01-01,COM,02771,0,VAUXCERE,Vauxcéré,Vauxcéré,COMD,02771,0,VAUXCERE,Vauxcéré,Vauxcéré -32,2016-01-01,COM,02771,0,VAUXCERE,Vauxcéré,Vauxcéré,COM,02439,4,SEPTVALLONS,Septvallons,Les Septvallons -32,2016-01-01,COM,02811,0,VILLERS EN PRAYERES,Villers-en-Prayères,Villers-en-Prayères,COM,02439,4,SEPTVALLONS,Septvallons,Les Septvallons -32,2016-01-01,COM,02811,0,VILLERS EN PRAYERES,Villers-en-Prayères,Villers-en-Prayères,COMD,02811,0,VILLERS EN PRAYERES,Villers-en-Prayères,Villers-en-Prayères -32,2016-01-01,COM,03123,0,GIVARLAIS,Givarlais,Givarlais,COM,03158,0,HAUT BOCAGE,Haut-Bocage,Haut-Bocage -32,2016-01-01,COM,03123,0,GIVARLAIS,Givarlais,Givarlais,COMD,03123,0,GIVARLAIS,Givarlais,Givarlais -32,2016-01-01,COM,03153,0,LOUROUX HODEMENT,Louroux-Hodement,Louroux-Hodement,COMD,03153,0,LOUROUX HODEMENT,Louroux-Hodement,Louroux-Hodement -32,2016-01-01,COM,03153,0,LOUROUX HODEMENT,Louroux-Hodement,Louroux-Hodement,COM,03158,0,HAUT BOCAGE,Haut-Bocage,Haut-Bocage -32,2016-01-01,COM,03158,0,MAILLET,Maillet,Maillet,COM,03158,0,HAUT BOCAGE,Haut-Bocage,Haut-Bocage -32,2016-01-01,COM,03158,0,MAILLET,Maillet,Maillet,COMD,03158,0,MAILLET,Maillet,Maillet -32,2016-01-01,COM,04100,0,LARCHE,Larche,Larche,COM,04120,0,VAL D ORONAYE,Val d'Oronaye,Val d'Oronaye -32,2016-01-01,COM,04100,0,LARCHE,Larche,Larche,COMD,04100,0,LARCHE,Larche,Larche -32,2016-01-01,COM,04120,0,MEYRONNES,Meyronnes,Meyronnes,COMD,04120,0,MEYRONNES,Meyronnes,Meyronnes -32,2016-01-01,COM,04120,0,MEYRONNES,Meyronnes,Meyronnes,COM,04120,0,VAL D ORONAYE,Val d'Oronaye,Val d'Oronaye -32,2016-01-01,COM,05005,1,ANTONAVES,Antonaves,Antonaves,COMD,05005,1,ANTONAVES,Antonaves,Antonaves -32,2016-01-01,COM,05005,1,ANTONAVES,Antonaves,Antonaves,COM,05118,0,VAL BUECH MEOUGE,Val Buëch-Méouge,Val Buëch-Méouge -32,2016-01-01,COM,05034,0,CHATEAUNEUF DE CHABRE,Châteauneuf-de-Chabre,Châteauneuf-de-Chabre,COM,05118,0,VAL BUECH MEOUGE,Val Buëch-Méouge,Val Buëch-Méouge -32,2016-01-01,COM,05034,0,CHATEAUNEUF DE CHABRE,Châteauneuf-de-Chabre,Châteauneuf-de-Chabre,COMD,05034,0,CHATEAUNEUF DE CHABRE,Châteauneuf-de-Chabre,Châteauneuf-de-Chabre -32,2016-01-01,COM,05053,1,EYGUIANS,Eyguians,Eyguians,COM,05053,0,GARDE COLOMBE,Garde-Colombe,Garde-Colombe -32,2016-01-01,COM,05053,1,EYGUIANS,Eyguians,Eyguians,COMD,05053,1,EYGUIANS,Eyguians,Eyguians -32,2016-01-01,COM,05069,0,LAGRAND,Lagrand,Lagrand,COMD,05069,0,LAGRAND,Lagrand,Lagrand -32,2016-01-01,COM,05069,0,LAGRAND,Lagrand,Lagrand,COM,05053,0,GARDE COLOMBE,Garde-Colombe,Garde-Colombe -32,2016-01-01,COM,05118,0,RIBIERS,Ribiers,Ribiers,COMD,05118,0,RIBIERS,Ribiers,Ribiers -32,2016-01-01,COM,05118,0,RIBIERS,Ribiers,Ribiers,COM,05118,0,VAL BUECH MEOUGE,Val Buëch-Méouge,Val Buëch-Méouge -32,2016-01-01,COM,05143,0,SAINT GENIS,Saint-Genis,Saint-Genis,COM,05053,0,GARDE COLOMBE,Garde-Colombe,Garde-Colombe -32,2016-01-01,COM,05143,0,SAINT GENIS,Saint-Genis,Saint-Genis,COMD,05143,0,SAINT GENIS,Saint-Genis,Saint-Genis -32,2016-01-01,COM,08007,4,ALLEUX,Alleux,Les Alleux,COM,08116,0,BAIRON ET SES ENVIRONS,Bairon et ses environs,Bairon et ses environs -32,2016-01-01,COM,08007,4,ALLEUX,Alleux,Les Alleux,COMD,08007,4,ALLEUX,Alleux,Les Alleux -32,2016-01-01,COM,08009,1,AMBLIMONT,Amblimont,Amblimont,COMD,08009,1,AMBLIMONT,Amblimont,Amblimont -32,2016-01-01,COM,08009,1,AMBLIMONT,Amblimont,Amblimont,COM,08311,0,MOUZON,Mouzon,Mouzon -34,2016-01-01,COMA,08054,0,BEAULIEU,Beaulieu,Beaulieu,COM,08319,0,NEUVILLE LEZ BEAULIEU,Neuville-lez-Beaulieu,Neuville-lez-Beaulieu -32,2016-01-01,COM,08114,0,CHEHERY,Chéhéry,Chéhéry,COM,08115,0,CHEMERY CHEHERY,Chémery-Chéhéry,Chémery-Chéhéry -32,2016-01-01,COM,08114,0,CHEHERY,Chéhéry,Chéhéry,COMD,08114,0,CHEHERY,Chéhéry,Chéhéry -32,2016-01-01,COM,08115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar,COM,08115,0,CHEMERY CHEHERY,Chémery-Chéhéry,Chémery-Chéhéry -32,2016-01-01,COM,08115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar,COMD,08115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar -32,2016-01-01,COM,08116,2,CHESNE,Chesne,Le Chesne,COMD,08116,2,CHESNE,Chesne,Le Chesne -32,2016-01-01,COM,08116,2,CHESNE,Chesne,Le Chesne,COM,08116,0,BAIRON ET SES ENVIRONS,Bairon et ses environs,Bairon et ses environs -32,2016-01-01,COM,08198,0,GRANDPRE,Grandpré,Grandpré,COMD,08198,0,GRANDPRE,Grandpré,Grandpré -32,2016-01-01,COM,08198,0,GRANDPRE,Grandpré,Grandpré,COM,08198,0,GRANDPRE,Grandpré,Grandpré -32,2016-01-01,COM,08261,0,LOUVERGNY,Louvergny,Louvergny,COM,08116,0,BAIRON ET SES ENVIRONS,Bairon et ses environs,Bairon et ses environs -32,2016-01-01,COM,08261,0,LOUVERGNY,Louvergny,Louvergny,COMD,08261,0,LOUVERGNY,Louvergny,Louvergny -32,2016-01-01,COM,08311,0,MOUZON,Mouzon,Mouzon,COMD,08311,0,MOUZON,Mouzon,Mouzon -32,2016-01-01,COM,08311,0,MOUZON,Mouzon,Mouzon,COM,08311,0,MOUZON,Mouzon,Mouzon -34,2016-01-01,COM,08319,0,NEUVILLE LEZ BEAULIEU,Neuville-lez-Beaulieu,Neuville-lez-Beaulieu,COM,08319,0,NEUVILLE LEZ BEAULIEU,Neuville-lez-Beaulieu,Neuville-lez-Beaulieu -32,2016-01-01,COM,08441,0,TERMES,Termes,Termes,COMD,08441,0,TERMES,Termes,Termes -32,2016-01-01,COM,08441,0,TERMES,Termes,Termes,COM,08198,0,GRANDPRE,Grandpré,Grandpré -32,2016-01-01,COM,10003,1,AIX EN OTHE,Aix-en-Othe,Aix-en-Othe,COM,10003,1,AIX VILLEMAUR PALIS,Aix-Villemaur-Pâlis,Aix-Villemaur-Pâlis +32,2016-01-01,COM,1015,1,ARBIGNIEU,Arbignieu,Arbignieu,COMD,1015,1,ARBIGNIEU,Arbignieu,Arbignieu +32,2016-01-01,COM,1015,1,ARBIGNIEU,Arbignieu,Arbignieu,COM,1015,1,ARBOYS EN BUGEY,Arboys en Bugey,Arboys en Bugey +32,2016-01-01,COM,1080,0,CHAMPDOR,Champdor,Champdor,COM,1080,0,CHAMPDOR CORCELLES,Champdor-Corcelles,Champdor-Corcelles +32,2016-01-01,COM,1080,0,CHAMPDOR,Champdor,Champdor,COMD,1080,0,CHAMPDOR,Champdor,Champdor +32,2016-01-01,COM,1119,0,CORCELLES,Corcelles,Corcelles,COM,1080,0,CHAMPDOR CORCELLES,Champdor-Corcelles,Champdor-Corcelles +32,2016-01-01,COM,1119,0,CORCELLES,Corcelles,Corcelles,COMD,1119,0,CORCELLES,Corcelles,Corcelles +32,2016-01-01,COMA,1137,0,CUISIAT,Cuisiat,Cuisiat,COMD,1137,0,CUISIAT,Cuisiat,Cuisiat +32,2016-01-01,COMA,1137,0,CUISIAT,Cuisiat,Cuisiat,COM,1426,0,VAL REVERMONT,Val-Revermont,Val-Revermont +32,2016-01-01,COM,1176,2,GRAND ABERGEMENT,Grand-Abergement,Le Grand-Abergement,COMD,1176,2,GRAND ABERGEMENT,Grand-Abergement,Le Grand-Abergement +32,2016-01-01,COM,1176,2,GRAND ABERGEMENT,Grand-Abergement,Le Grand-Abergement,COM,1187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey +32,2016-01-01,COM,1182,0,GROSLEE,Groslée,Groslée,COMD,1182,0,GROSLEE,Groslée,Groslée +32,2016-01-01,COM,1182,0,GROSLEE,Groslée,Groslée,COM,1338,0,GROSLEE SAINT BENOIT,Groslée-Saint-Benoit,Groslée-Saint-Benoit +32,2016-01-01,COM,1187,1,HOTONNES,Hotonnes,Hotonnes,COM,1187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey +32,2016-01-01,COM,1187,1,HOTONNES,Hotonnes,Hotonnes,COMD,1187,1,HOTONNES,Hotonnes,Hotonnes +32,2016-01-01,COM,1204,0,LALLEYRIAT,Lalleyriat,Lalleyriat,COMD,1204,0,LALLEYRIAT,Lalleyriat,Lalleyriat +32,2016-01-01,COM,1204,0,LALLEYRIAT,Lalleyriat,Lalleyriat,COM,1204,2,POIZAT LALLEYRIAT,Poizat-Lalleyriat,Le Poizat-Lalleyriat +32,2016-01-01,COM,1271,0,NATTAGES,Nattages,Nattages,COMD,1271,0,NATTAGES,Nattages,Nattages +32,2016-01-01,COM,1271,0,NATTAGES,Nattages,Nattages,COM,1286,0,PARVES ET NATTAGES,Parves et Nattages,Parves et Nattages +32,2016-01-01,COM,1286,0,PARVES,Parves,Parves,COMD,1286,0,PARVES,Parves,Parves +32,2016-01-01,COM,1286,0,PARVES,Parves,Parves,COM,1286,0,PARVES ET NATTAGES,Parves et Nattages,Parves et Nattages +32,2016-01-01,COM,1292,2,PETIT ABERGEMENT,Petit-Abergement,Le Petit-Abergement,COM,1187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey +32,2016-01-01,COM,1292,2,PETIT ABERGEMENT,Petit-Abergement,Le Petit-Abergement,COMD,1292,2,PETIT ABERGEMENT,Petit-Abergement,Le Petit-Abergement +32,2016-01-01,COM,1300,2,POIZAT,Poizat,Le Poizat,COM,1204,2,POIZAT LALLEYRIAT,Poizat-Lalleyriat,Le Poizat-Lalleyriat +32,2016-01-01,COM,1300,2,POIZAT,Poizat,Le Poizat,COMD,1300,2,POIZAT,Poizat,Le Poizat +32,2016-01-01,COM,1312,0,PRESSIAT,Pressiat,Pressiat,COMD,1312,0,PRESSIAT,Pressiat,Pressiat +32,2016-01-01,COM,1312,0,PRESSIAT,Pressiat,Pressiat,COM,1426,0,VAL REVERMONT,Val-Revermont,Val-Revermont +32,2016-01-01,COM,1338,0,SAINT BENOIT,Saint-Benoît,Saint-Benoît,COM,1338,0,GROSLEE SAINT BENOIT,Groslée-Saint-Benoit,Groslée-Saint-Benoit +32,2016-01-01,COM,1338,0,SAINT BENOIT,Saint-Benoît,Saint-Benoît,COMD,1338,0,SAINT BENOIT,Saint-Benoît,Saint-Benoît +32,2016-01-01,COM,1340,0,SAINT BOIS,Saint-Bois,Saint-Bois,COM,1015,1,ARBOYS EN BUGEY,Arboys en Bugey,Arboys en Bugey +32,2016-01-01,COM,1340,0,SAINT BOIS,Saint-Bois,Saint-Bois,COMD,1340,0,SAINT BOIS,Saint-Bois,Saint-Bois +32,2016-01-01,COM,1409,0,SONGIEU,Songieu,Songieu,COM,1187,0,HAUT VALROMEY,Haut Valromey,Haut Valromey +32,2016-01-01,COM,1409,0,SONGIEU,Songieu,Songieu,COMD,1409,0,SONGIEU,Songieu,Songieu +32,2016-01-01,COM,1426,0,TREFFORT CUISIAT,Treffort-Cuisiat,Treffort-Cuisiat,COMD,1426,0,TREFFORT,Treffort,Treffort +32,2016-01-01,COM,1426,0,TREFFORT CUISIAT,Treffort-Cuisiat,Treffort-Cuisiat,COM,1426,0,VAL REVERMONT,Val-Revermont,Val-Revermont +32,2016-01-01,COM,2026,1,ARTONGES,Artonges,Artonges,COMD,2026,1,ARTONGES,Artonges,Artonges +32,2016-01-01,COM,2026,1,ARTONGES,Artonges,Artonges,COM,2458,0,DHUYS ET MORIN EN BRIE,Dhuys et Morin-en-Brie,Dhuys et Morin-en-Brie +32,2016-01-01,COM,2053,0,BAULNE EN BRIE,Baulne-en-Brie,Baulne-en-Brie,COM,2053,0,VALLEES EN CHAMPAGNE,Vallées en Champagne,Vallées en Champagne +32,2016-01-01,COM,2053,0,BAULNE EN BRIE,Baulne-en-Brie,Baulne-en-Brie,COMD,2053,0,BAULNE EN BRIE,Baulne-en-Brie,Baulne-en-Brie +32,2016-01-01,COM,2147,3,CELLE SOUS MONTMIRAIL,Celle-sous-Montmirail,La Celle-sous-Montmirail,COMD,2147,3,CELLE SOUS MONTMIRAIL,Celle-sous-Montmirail,La Celle-sous-Montmirail +32,2016-01-01,COM,2147,3,CELLE SOUS MONTMIRAIL,Celle-sous-Montmirail,La Celle-sous-Montmirail,COM,2458,0,DHUYS ET MORIN EN BRIE,Dhuys et Morin-en-Brie,Dhuys et Morin-en-Brie +32,2016-01-01,COM,2161,3,CHAPELLE MONTHODON,Chapelle-Monthodon,La Chapelle-Monthodon,COM,2053,0,VALLEES EN CHAMPAGNE,Vallées en Champagne,Vallées en Champagne +32,2016-01-01,COM,2161,3,CHAPELLE MONTHODON,Chapelle-Monthodon,La Chapelle-Monthodon,COMD,2161,3,CHAPELLE MONTHODON,Chapelle-Monthodon,La Chapelle-Monthodon +32,2016-01-01,COM,2325,0,FONTENELLE EN BRIE,Fontenelle-en-Brie,Fontenelle-en-Brie,COMD,2325,0,FONTENELLE EN BRIE,Fontenelle-en-Brie,Fontenelle-en-Brie +32,2016-01-01,COM,2325,0,FONTENELLE EN BRIE,Fontenelle-en-Brie,Fontenelle-en-Brie,COM,2458,0,DHUYS ET MORIN EN BRIE,Dhuys et Morin-en-Brie,Dhuys et Morin-en-Brie +32,2016-01-01,COM,2348,0,GLENNES,Glennes,Glennes,COMD,2348,0,GLENNES,Glennes,Glennes +32,2016-01-01,COM,2348,0,GLENNES,Glennes,Glennes,COM,2439,4,SEPTVALLONS,Septvallons,Les Septvallons +32,2016-01-01,COM,2439,0,LONGUEVAL BARBONVAL,Longueval-Barbonval,Longueval-Barbonval,COM,2439,4,SEPTVALLONS,Septvallons,Les Septvallons +32,2016-01-01,COM,2439,0,LONGUEVAL BARBONVAL,Longueval-Barbonval,Longueval-Barbonval,COMD,2439,0,LONGUEVAL BARBONVAL,Longueval-Barbonval,Longueval-Barbonval +32,2016-01-01,COM,2458,0,MARCHAIS EN BRIE,Marchais-en-Brie,Marchais-en-Brie,COM,2458,0,DHUYS ET MORIN EN BRIE,Dhuys et Morin-en-Brie,Dhuys et Morin-en-Brie +32,2016-01-01,COM,2458,0,MARCHAIS EN BRIE,Marchais-en-Brie,Marchais-en-Brie,COMD,2458,0,MARCHAIS EN BRIE,Marchais-en-Brie,Marchais-en-Brie +32,2016-01-01,COM,2479,0,MERVAL,Merval,Merval,COM,2439,4,SEPTVALLONS,Septvallons,Les Septvallons +32,2016-01-01,COM,2479,0,MERVAL,Merval,Merval,COMD,2479,0,MERVAL,Merval,Merval +32,2016-01-01,COM,2597,0,PERLES,Perles,Perles,COM,2439,4,SEPTVALLONS,Septvallons,Les Septvallons +32,2016-01-01,COM,2597,0,PERLES,Perles,Perles,COMD,2597,0,PERLES,Perles,Perles +32,2016-01-01,COM,2646,0,REVILLON,Révillon,Révillon,COM,2439,4,SEPTVALLONS,Septvallons,Les Septvallons +32,2016-01-01,COM,2646,0,REVILLON,Révillon,Révillon,COMD,2646,0,REVILLON,Révillon,Révillon +32,2016-01-01,COM,2669,0,SAINT AGNAN,Saint-Agnan,Saint-Agnan,COM,2053,0,VALLEES EN CHAMPAGNE,Vallées en Champagne,Vallées en Champagne +32,2016-01-01,COM,2669,0,SAINT AGNAN,Saint-Agnan,Saint-Agnan,COMD,2669,0,SAINT AGNAN,Saint-Agnan,Saint-Agnan +32,2016-01-01,COM,2771,0,VAUXCERE,Vauxcéré,Vauxcéré,COM,2439,4,SEPTVALLONS,Septvallons,Les Septvallons +32,2016-01-01,COM,2771,0,VAUXCERE,Vauxcéré,Vauxcéré,COMD,2771,0,VAUXCERE,Vauxcéré,Vauxcéré +32,2016-01-01,COM,2811,0,VILLERS EN PRAYERES,Villers-en-Prayères,Villers-en-Prayères,COM,2439,4,SEPTVALLONS,Septvallons,Les Septvallons +32,2016-01-01,COM,2811,0,VILLERS EN PRAYERES,Villers-en-Prayères,Villers-en-Prayères,COMD,2811,0,VILLERS EN PRAYERES,Villers-en-Prayères,Villers-en-Prayères +32,2016-01-01,COM,3123,0,GIVARLAIS,Givarlais,Givarlais,COMD,3123,0,GIVARLAIS,Givarlais,Givarlais +32,2016-01-01,COM,3123,0,GIVARLAIS,Givarlais,Givarlais,COM,3158,0,HAUT BOCAGE,Haut-Bocage,Haut-Bocage +32,2016-01-01,COM,3153,0,LOUROUX HODEMENT,Louroux-Hodement,Louroux-Hodement,COMD,3153,0,LOUROUX HODEMENT,Louroux-Hodement,Louroux-Hodement +32,2016-01-01,COM,3153,0,LOUROUX HODEMENT,Louroux-Hodement,Louroux-Hodement,COM,3158,0,HAUT BOCAGE,Haut-Bocage,Haut-Bocage +32,2016-01-01,COM,3158,0,MAILLET,Maillet,Maillet,COMD,3158,0,MAILLET,Maillet,Maillet +32,2016-01-01,COM,3158,0,MAILLET,Maillet,Maillet,COM,3158,0,HAUT BOCAGE,Haut-Bocage,Haut-Bocage +32,2016-01-01,COM,4100,0,LARCHE,Larche,Larche,COMD,4100,0,LARCHE,Larche,Larche +32,2016-01-01,COM,4100,0,LARCHE,Larche,Larche,COM,4120,0,VAL D ORONAYE,Val d'Oronaye,Val d'Oronaye +32,2016-01-01,COM,4120,0,MEYRONNES,Meyronnes,Meyronnes,COM,4120,0,VAL D ORONAYE,Val d'Oronaye,Val d'Oronaye +32,2016-01-01,COM,4120,0,MEYRONNES,Meyronnes,Meyronnes,COMD,4120,0,MEYRONNES,Meyronnes,Meyronnes +32,2016-01-01,COM,5005,1,ANTONAVES,Antonaves,Antonaves,COMD,5005,1,ANTONAVES,Antonaves,Antonaves +32,2016-01-01,COM,5005,1,ANTONAVES,Antonaves,Antonaves,COM,5118,0,VAL BUECH MEOUGE,Val Buëch-Méouge,Val Buëch-Méouge +32,2016-01-01,COM,5034,0,CHATEAUNEUF DE CHABRE,Châteauneuf-de-Chabre,Châteauneuf-de-Chabre,COMD,5034,0,CHATEAUNEUF DE CHABRE,Châteauneuf-de-Chabre,Châteauneuf-de-Chabre +32,2016-01-01,COM,5034,0,CHATEAUNEUF DE CHABRE,Châteauneuf-de-Chabre,Châteauneuf-de-Chabre,COM,5118,0,VAL BUECH MEOUGE,Val Buëch-Méouge,Val Buëch-Méouge +32,2016-01-01,COM,5053,1,EYGUIANS,Eyguians,Eyguians,COMD,5053,1,EYGUIANS,Eyguians,Eyguians +32,2016-01-01,COM,5053,1,EYGUIANS,Eyguians,Eyguians,COM,5053,0,GARDE COLOMBE,Garde-Colombe,Garde-Colombe +32,2016-01-01,COM,5069,0,LAGRAND,Lagrand,Lagrand,COM,5053,0,GARDE COLOMBE,Garde-Colombe,Garde-Colombe +32,2016-01-01,COM,5069,0,LAGRAND,Lagrand,Lagrand,COMD,5069,0,LAGRAND,Lagrand,Lagrand +32,2016-01-01,COM,5118,0,RIBIERS,Ribiers,Ribiers,COMD,5118,0,RIBIERS,Ribiers,Ribiers +32,2016-01-01,COM,5118,0,RIBIERS,Ribiers,Ribiers,COM,5118,0,VAL BUECH MEOUGE,Val Buëch-Méouge,Val Buëch-Méouge +32,2016-01-01,COM,5143,0,SAINT GENIS,Saint-Genis,Saint-Genis,COM,5053,0,GARDE COLOMBE,Garde-Colombe,Garde-Colombe +32,2016-01-01,COM,5143,0,SAINT GENIS,Saint-Genis,Saint-Genis,COMD,5143,0,SAINT GENIS,Saint-Genis,Saint-Genis +32,2016-01-01,COM,8007,4,ALLEUX,Alleux,Les Alleux,COMD,8007,4,ALLEUX,Alleux,Les Alleux +32,2016-01-01,COM,8007,4,ALLEUX,Alleux,Les Alleux,COM,8116,0,BAIRON ET SES ENVIRONS,Bairon et ses environs,Bairon et ses environs +32,2016-01-01,COM,8009,1,AMBLIMONT,Amblimont,Amblimont,COMD,8009,1,AMBLIMONT,Amblimont,Amblimont +32,2016-01-01,COM,8009,1,AMBLIMONT,Amblimont,Amblimont,COM,8311,0,MOUZON,Mouzon,Mouzon +34,2016-01-01,COMA,8054,0,BEAULIEU,Beaulieu,Beaulieu,COM,8319,0,NEUVILLE LEZ BEAULIEU,Neuville-lez-Beaulieu,Neuville-lez-Beaulieu +32,2016-01-01,COM,8114,0,CHEHERY,Chéhéry,Chéhéry,COMD,8114,0,CHEHERY,Chéhéry,Chéhéry +32,2016-01-01,COM,8114,0,CHEHERY,Chéhéry,Chéhéry,COM,8115,0,CHEMERY CHEHERY,Chémery-Chéhéry,Chémery-Chéhéry +32,2016-01-01,COM,8115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar,COM,8115,0,CHEMERY CHEHERY,Chémery-Chéhéry,Chémery-Chéhéry +32,2016-01-01,COM,8115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar,COMD,8115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar +32,2016-01-01,COM,8116,2,CHESNE,Chesne,Le Chesne,COMD,8116,2,CHESNE,Chesne,Le Chesne +32,2016-01-01,COM,8116,2,CHESNE,Chesne,Le Chesne,COM,8116,0,BAIRON ET SES ENVIRONS,Bairon et ses environs,Bairon et ses environs +32,2016-01-01,COM,8198,0,GRANDPRE,Grandpré,Grandpré,COMD,8198,0,GRANDPRE,Grandpré,Grandpré +32,2016-01-01,COM,8198,0,GRANDPRE,Grandpré,Grandpré,COM,8198,0,GRANDPRE,Grandpré,Grandpré +32,2016-01-01,COM,8261,0,LOUVERGNY,Louvergny,Louvergny,COM,8116,0,BAIRON ET SES ENVIRONS,Bairon et ses environs,Bairon et ses environs +32,2016-01-01,COM,8261,0,LOUVERGNY,Louvergny,Louvergny,COMD,8261,0,LOUVERGNY,Louvergny,Louvergny +32,2016-01-01,COM,8311,0,MOUZON,Mouzon,Mouzon,COM,8311,0,MOUZON,Mouzon,Mouzon +32,2016-01-01,COM,8311,0,MOUZON,Mouzon,Mouzon,COMD,8311,0,MOUZON,Mouzon,Mouzon +34,2016-01-01,COM,8319,0,NEUVILLE LEZ BEAULIEU,Neuville-lez-Beaulieu,Neuville-lez-Beaulieu,COM,8319,0,NEUVILLE LEZ BEAULIEU,Neuville-lez-Beaulieu,Neuville-lez-Beaulieu +32,2016-01-01,COM,8441,0,TERMES,Termes,Termes,COM,8198,0,GRANDPRE,Grandpré,Grandpré +32,2016-01-01,COM,8441,0,TERMES,Termes,Termes,COMD,8441,0,TERMES,Termes,Termes 32,2016-01-01,COM,10003,1,AIX EN OTHE,Aix-en-Othe,Aix-en-Othe,COMD,10003,1,AIX EN OTHE,Aix-en-Othe,Aix-en-Othe -32,2016-01-01,COM,10277,0,PALIS,Palis,Palis,COMD,10277,0,PALIS,Palis,Palis +32,2016-01-01,COM,10003,1,AIX EN OTHE,Aix-en-Othe,Aix-en-Othe,COM,10003,1,AIX VILLEMAUR PALIS,Aix-Villemaur-Pâlis,Aix-Villemaur-Pâlis 32,2016-01-01,COM,10277,0,PALIS,Palis,Palis,COM,10003,1,AIX VILLEMAUR PALIS,Aix-Villemaur-Pâlis,Aix-Villemaur-Pâlis -32,2016-01-01,COM,10415,0,VILLEMAUR SUR VANNE,Villemaur-sur-Vanne,Villemaur-sur-Vanne,COMD,10415,0,VILLEMAUR SUR VANNE,Villemaur-sur-Vanne,Villemaur-sur-Vanne +32,2016-01-01,COM,10277,0,PALIS,Palis,Palis,COMD,10277,0,PALIS,Palis,Palis 32,2016-01-01,COM,10415,0,VILLEMAUR SUR VANNE,Villemaur-sur-Vanne,Villemaur-sur-Vanne,COM,10003,1,AIX VILLEMAUR PALIS,Aix-Villemaur-Pâlis,Aix-Villemaur-Pâlis +32,2016-01-01,COM,10415,0,VILLEMAUR SUR VANNE,Villemaur-sur-Vanne,Villemaur-sur-Vanne,COMD,10415,0,VILLEMAUR SUR VANNE,Villemaur-sur-Vanne,Villemaur-sur-Vanne 32,2016-01-01,COM,11050,0,BRENAC,Brenac,Brenac,COMD,11050,0,BRENAC,Brenac,Brenac 32,2016-01-01,COM,11050,0,BRENAC,Brenac,Brenac,COM,11304,0,QUILLAN,Quillan,Quillan 32,2016-01-01,COM,11080,0,CAUDEVAL,Caudeval,Caudeval,COM,11080,0,VAL DE LAMBRONNE,Val de Lambronne,Val de Lambronne 32,2016-01-01,COM,11171,0,GUEYTES ET LABASTIDE,Gueytes-et-Labastide,Gueytes-et-Labastide,COM,11080,0,VAL DE LAMBRONNE,Val de Lambronne,Val de Lambronne 32,2016-01-01,COM,11171,0,GUEYTES ET LABASTIDE,Gueytes-et-Labastide,Gueytes-et-Labastide,COMD,11171,0,GUEYTES ET LABASTIDE,Gueytes-et-Labastide,Gueytes-et-Labastide 32,2016-01-01,COM,11304,0,QUILLAN,Quillan,Quillan,COM,11304,0,QUILLAN,Quillan,Quillan -32,2016-01-01,COM,12005,1,ALPUECH,Alpuech,Alpuech,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac 32,2016-01-01,COM,12005,1,ALPUECH,Alpuech,Alpuech,COMD,12005,1,ALPUECH,Alpuech,Alpuech +32,2016-01-01,COM,12005,1,ALPUECH,Alpuech,Alpuech,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac 32,2016-01-01,COM,12014,1,AURELLE VERLAC,Aurelle-Verlac,Aurelle-Verlac,COMD,12014,1,AURELLE VERLAC,Aurelle-Verlac,Aurelle-Verlac 32,2016-01-01,COM,12014,1,AURELLE VERLAC,Aurelle-Verlac,Aurelle-Verlac,COM,12224,0,SAINT GENIEZ D OLT ET D AUBRAC,Saint Geniez d'Olt et d'Aubrac,Saint Geniez d'Olt et d'Aubrac -32,2016-01-01,COM,12021,3,BASTIDE L EVEQUE,Bastide-l'Évêque,La Bastide-l'Évêque,COMD,12021,3,BASTIDE L EVEQUE,Bastide-l'Évêque,La Bastide-l'Évêque 32,2016-01-01,COM,12021,3,BASTIDE L EVEQUE,Bastide-l'Évêque,La Bastide-l'Évêque,COM,12021,2,BAS SEGALA,Bas Ségala,Le Bas Ségala +32,2016-01-01,COM,12021,3,BASTIDE L EVEQUE,Bastide-l'Évêque,La Bastide-l'Évêque,COMD,12021,3,BASTIDE L EVEQUE,Bastide-l'Évêque,La Bastide-l'Évêque 32,2016-01-01,COM,12040,0,BUZEINS,Buzeins,Buzeins,COMD,12040,0,BUZEINS,Buzeins,Buzeins 32,2016-01-01,COM,12040,0,BUZEINS,Buzeins,Buzeins,COM,12270,0,SEVERAC D AVEYRON,Sévérac d'Aveyron,Sévérac d'Aveyron 32,2016-01-01,COM,12076,0,CONQUES,Conques,Conques,COMD,12076,0,CONQUES,Conques,Conques @@ -3663,190 +3494,190 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,12112,0,GRAISSAC,Graissac,Graissac,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac 32,2016-01-01,COM,12114,0,GRAND VABRE,Grand-Vabre,Grand-Vabre,COM,12076,0,CONQUES EN ROUERGUE,Conques-en-Rouergue,Conques-en-Rouergue 32,2016-01-01,COM,12114,0,GRAND VABRE,Grand-Vabre,Grand-Vabre,COMD,12114,0,GRAND VABRE,Grand-Vabre,Grand-Vabre -32,2016-01-01,COM,12117,0,LACALM,Lacalm,Lacalm,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac 32,2016-01-01,COM,12117,0,LACALM,Lacalm,Lacalm,COMD,12117,0,LACALM,Lacalm,Lacalm -32,2016-01-01,COM,12120,0,LAISSAC,Laissac,Laissac,COM,12120,0,LAISSAC SEVERAC L EGLISE,Laissac-Sévérac l'Église,Laissac-Sévérac l'Église +32,2016-01-01,COM,12117,0,LACALM,Lacalm,Lacalm,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac 32,2016-01-01,COM,12120,0,LAISSAC,Laissac,Laissac,COMD,12120,0,LAISSAC,Laissac,Laissac -32,2016-01-01,COM,12123,0,LAPANOUSE,Lapanouse,Lapanouse,COM,12270,0,SEVERAC D AVEYRON,Sévérac d'Aveyron,Sévérac d'Aveyron +32,2016-01-01,COM,12120,0,LAISSAC,Laissac,Laissac,COM,12120,0,LAISSAC SEVERAC L EGLISE,Laissac-Sévérac l'Église,Laissac-Sévérac l'Église 32,2016-01-01,COM,12123,0,LAPANOUSE,Lapanouse,Lapanouse,COMD,12123,0,LAPANOUSE,Lapanouse,Lapanouse +32,2016-01-01,COM,12123,0,LAPANOUSE,Lapanouse,Lapanouse,COM,12270,0,SEVERAC D AVEYRON,Sévérac d'Aveyron,Sévérac d'Aveyron 32,2016-01-01,COM,12126,0,LAVERNHE,Lavernhe,Lavernhe,COMD,12126,0,LAVERNHE,Lavernhe,Lavernhe 32,2016-01-01,COM,12126,0,LAVERNHE,Lavernhe,Lavernhe,COM,12270,0,SEVERAC D AVEYRON,Sévérac d'Aveyron,Sévérac d'Aveyron 32,2016-01-01,COM,12173,0,NOAILHAC,Noailhac,Noailhac,COM,12076,0,CONQUES EN ROUERGUE,Conques-en-Rouergue,Conques-en-Rouergue 32,2016-01-01,COM,12173,0,NOAILHAC,Noailhac,Noailhac,COMD,12173,0,NOAILHAC,Noailhac,Noailhac 32,2016-01-01,COM,12177,0,PALMAS,Palmas,Palmas,COM,12177,0,PALMAS D AVEYRON,Palmas d'Aveyron,Palmas d'Aveyron 32,2016-01-01,COM,12177,0,PALMAS,Palmas,Palmas,COMD,12177,0,PALMAS,Palmas,Palmas -32,2016-01-01,COM,12196,0,RECOULES PREVINQUIERES,Recoules-Prévinquières,Recoules-Prévinquières,COM,12270,0,SEVERAC D AVEYRON,Sévérac d'Aveyron,Sévérac d'Aveyron 32,2016-01-01,COM,12196,0,RECOULES PREVINQUIERES,Recoules-Prévinquières,Recoules-Prévinquières,COMD,12196,0,RECOULES PREVINQUIERES,Recoules-Prévinquières,Recoules-Prévinquières -32,2016-01-01,COM,12218,0,SAINT CYPRIEN SUR DOURDOU,Saint-Cyprien-sur-Dourdou,Saint-Cyprien-sur-Dourdou,COMD,12218,0,SAINT CYPRIEN SUR DOURDOU,Saint-Cyprien-sur-Dourdou,Saint-Cyprien-sur-Dourdou +32,2016-01-01,COM,12196,0,RECOULES PREVINQUIERES,Recoules-Prévinquières,Recoules-Prévinquières,COM,12270,0,SEVERAC D AVEYRON,Sévérac d'Aveyron,Sévérac d'Aveyron 32,2016-01-01,COM,12218,0,SAINT CYPRIEN SUR DOURDOU,Saint-Cyprien-sur-Dourdou,Saint-Cyprien-sur-Dourdou,COM,12076,0,CONQUES EN ROUERGUE,Conques-en-Rouergue,Conques-en-Rouergue +32,2016-01-01,COM,12218,0,SAINT CYPRIEN SUR DOURDOU,Saint-Cyprien-sur-Dourdou,Saint-Cyprien-sur-Dourdou,COMD,12218,0,SAINT CYPRIEN SUR DOURDOU,Saint-Cyprien-sur-Dourdou,Saint-Cyprien-sur-Dourdou 32,2016-01-01,COM,12223,0,SAINTE GENEVIEVE SUR ARGENCE,Sainte-Geneviève-sur-Argence,Sainte-Geneviève-sur-Argence,COMD,12223,0,SAINTE GENEVIEVE SUR ARGENCE,Sainte-Geneviève-sur-Argence,Sainte-Geneviève-sur-Argence 32,2016-01-01,COM,12223,0,SAINTE GENEVIEVE SUR ARGENCE,Sainte-Geneviève-sur-Argence,Sainte-Geneviève-sur-Argence,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac 32,2016-01-01,COM,12224,0,SAINT GENIEZ D OLT,Saint-Geniez-d'Olt,Saint-Geniez-d'Olt,COMD,12224,0,SAINT GENIEZ D OLT,Saint-Geniez-d'Olt,Saint-Geniez-d'Olt 32,2016-01-01,COM,12224,0,SAINT GENIEZ D OLT,Saint-Geniez-d'Olt,Saint-Geniez-d'Olt,COM,12224,0,SAINT GENIEZ D OLT ET D AUBRAC,Saint Geniez d'Olt et d'Aubrac,Saint Geniez d'Olt et d'Aubrac 32,2016-01-01,COM,12245,0,SAINT SALVADOU,Saint-Salvadou,Saint-Salvadou,COM,12021,2,BAS SEGALA,Bas Ségala,Le Bas Ségala 32,2016-01-01,COM,12245,0,SAINT SALVADOU,Saint-Salvadou,Saint-Salvadou,COMD,12245,0,SAINT SALVADOU,Saint-Salvadou,Saint-Salvadou -32,2016-01-01,COM,12270,0,SEVERAC LE CHATEAU,Sévérac-le-Château,Sévérac-le-Château,COM,12270,0,SEVERAC D AVEYRON,Sévérac d'Aveyron,Sévérac d'Aveyron 32,2016-01-01,COM,12270,0,SEVERAC LE CHATEAU,Sévérac-le-Château,Sévérac-le-Château,COMD,12270,0,SEVERAC LE CHATEAU,Sévérac-le-Château,Sévérac-le-Château -32,2016-01-01,COM,12271,0,SEVERAC L EGLISE,Sévérac-l'Église,Sévérac-l'Église,COMD,12271,0,SEVERAC L EGLISE,Sévérac-l'Église,Sévérac-l'Église +32,2016-01-01,COM,12270,0,SEVERAC LE CHATEAU,Sévérac-le-Château,Sévérac-le-Château,COM,12270,0,SEVERAC D AVEYRON,Sévérac d'Aveyron,Sévérac d'Aveyron 32,2016-01-01,COM,12271,0,SEVERAC L EGLISE,Sévérac-l'Église,Sévérac-l'Église,COM,12120,0,LAISSAC SEVERAC L EGLISE,Laissac-Sévérac l'Église,Laissac-Sévérac l'Église -32,2016-01-01,COM,12279,3,TERRISSE,Terrisse,La Terrisse,COMD,12279,3,TERRISSE,Terrisse,La Terrisse +32,2016-01-01,COM,12271,0,SEVERAC L EGLISE,Sévérac-l'Église,Sévérac-l'Église,COMD,12271,0,SEVERAC L EGLISE,Sévérac-l'Église,Sévérac-l'Église 32,2016-01-01,COM,12279,3,TERRISSE,Terrisse,La Terrisse,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac -32,2016-01-01,COM,12285,0,VABRE TIZAC,Vabre-Tizac,Vabre-Tizac,COMD,12285,0,VABRE TIZAC,Vabre-Tizac,Vabre-Tizac +32,2016-01-01,COM,12279,3,TERRISSE,Terrisse,La Terrisse,COMD,12279,3,TERRISSE,Terrisse,La Terrisse 32,2016-01-01,COM,12285,0,VABRE TIZAC,Vabre-Tizac,Vabre-Tizac,COM,12021,2,BAS SEGALA,Bas Ségala,Le Bas Ségala -32,2016-01-01,COM,12304,0,VITRAC EN VIADENE,Vitrac-en-Viadène,Vitrac-en-Viadène,COMD,12304,0,VITRAC EN VIADENE,Vitrac-en-Viadène,Vitrac-en-Viadène +32,2016-01-01,COM,12285,0,VABRE TIZAC,Vabre-Tizac,Vabre-Tizac,COMD,12285,0,VABRE TIZAC,Vabre-Tizac,Vabre-Tizac 32,2016-01-01,COM,12304,0,VITRAC EN VIADENE,Vitrac-en-Viadène,Vitrac-en-Viadène,COM,12223,1,ARGENCES EN AUBRAC,Argences en Aubrac,Argences en Aubrac +32,2016-01-01,COM,12304,0,VITRAC EN VIADENE,Vitrac-en-Viadène,Vitrac-en-Viadène,COMD,12304,0,VITRAC EN VIADENE,Vitrac-en-Viadène,Vitrac-en-Viadène 32,2016-01-01,COM,14014,1,ANGUERNY,Anguerny,Anguerny,COM,14014,0,COLOMBY ANGUERNY,Colomby-Anguerny,Colomby-Anguerny -32,2016-01-01,COM,14028,1,AUQUAINVILLE,Auquainville,Auquainville,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge 32,2016-01-01,COM,14028,1,AUQUAINVILLE,Auquainville,Auquainville,COMD,14028,1,AUQUAINVILLE,Auquainville,Auquainville +32,2016-01-01,COM,14028,1,AUQUAINVILLE,Auquainville,Auquainville,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge 32,2016-01-01,COM,14029,4,AUTELS SAINT BAZILE,Autels-Saint-Bazile,Les Autels-Saint-Bazile,COMD,14029,4,AUTELS SAINT BAZILE,Autels-Saint-Bazile,Les Autels-Saint-Bazile 32,2016-01-01,COM,14029,4,AUTELS SAINT BAZILE,Autels-Saint-Bazile,Les Autels-Saint-Bazile,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge -32,2016-01-01,COM,14035,0,BALLEROY,Balleroy,Balleroy,COM,14035,0,BALLEROY SUR DROME,Balleroy-sur-Drôme,Balleroy-sur-Drôme 32,2016-01-01,COM,14035,0,BALLEROY,Balleroy,Balleroy,COMD,14035,0,BALLEROY,Balleroy,Balleroy +32,2016-01-01,COM,14035,0,BALLEROY,Balleroy,Balleroy,COM,14035,0,BALLEROY SUR DROME,Balleroy-sur-Drôme,Balleroy-sur-Drôme 32,2016-01-01,COM,14037,0,BANNEVILLE SUR AJON,Banneville-sur-Ajon,Banneville-sur-Ajon,COM,14037,0,MALHERBE SUR AJON,Malherbe-sur-Ajon,Malherbe-sur-Ajon 32,2016-01-01,COM,14037,0,BANNEVILLE SUR AJON,Banneville-sur-Ajon,Banneville-sur-Ajon,COMD,14037,0,BANNEVILLE SUR AJON,Banneville-sur-Ajon,Banneville-sur-Ajon -32,2016-01-01,COM,14052,0,BEAULIEU,Beaulieu,Beaulieu,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage 32,2016-01-01,COM,14052,0,BEAULIEU,Beaulieu,Beaulieu,COMD,14052,0,BEAULIEU,Beaulieu,Beaulieu -32,2016-01-01,COM,14058,0,BELLOU,Bellou,Bellou,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge +32,2016-01-01,COM,14052,0,BEAULIEU,Beaulieu,Beaulieu,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage 32,2016-01-01,COM,14058,0,BELLOU,Bellou,Bellou,COMD,14058,0,BELLOU,Bellou,Bellou -32,2016-01-01,COM,14061,2,BENY BOCAGE,Bény-Bocage,Le Bény-Bocage,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage +32,2016-01-01,COM,14058,0,BELLOU,Bellou,Bellou,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge 32,2016-01-01,COM,14061,2,BENY BOCAGE,Bény-Bocage,Le Bény-Bocage,COMD,14061,2,BENY BOCAGE,Bény-Bocage,Le Bény-Bocage +32,2016-01-01,COM,14061,2,BENY BOCAGE,Bény-Bocage,Le Bény-Bocage,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage 32,2016-01-01,COM,14065,0,BERNIERES LE PATRY,Bernières-le-Patry,Bernières-le-Patry,COMD,14065,0,BERNIERES LE PATRY,Bernières-le-Patry,Bernières-le-Patry 32,2016-01-01,COM,14065,0,BERNIERES LE PATRY,Bernières-le-Patry,Bernières-le-Patry,COM,14726,0,VALDALLIERE,Valdallière,Valdallière -32,2016-01-01,COM,14105,3,BREVIERE,Brévière,La Brévière,COM,14576,0,VAL DE VIE,Val-de-Vie,Val-de-Vie 32,2016-01-01,COM,14105,3,BREVIERE,Brévière,La Brévière,COMD,14105,3,BREVIERE,Brévière,La Brévière -32,2016-01-01,COM,14113,0,BURCY,Burcy,Burcy,COM,14726,0,VALDALLIERE,Valdallière,Valdallière +32,2016-01-01,COM,14105,3,BREVIERE,Brévière,La Brévière,COM,14576,0,VAL DE VIE,Val-de-Vie,Val-de-Vie 32,2016-01-01,COM,14113,0,BURCY,Burcy,Burcy,COMD,14113,0,BURCY,Burcy,Burcy +32,2016-01-01,COM,14113,0,BURCY,Burcy,Burcy,COM,14726,0,VALDALLIERE,Valdallière,Valdallière 32,2016-01-01,COM,14115,0,BURES LES MONTS,Bures-les-Monts,Bures-les-Monts,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage 32,2016-01-01,COM,14115,0,BURES LES MONTS,Bures-les-Monts,Bures-les-Monts,COMD,14115,0,BURES LES MONTS,Bures-les-Monts,Bures-les-Monts -32,2016-01-01,COM,14129,0,CAMPEAUX,Campeaux,Campeaux,COMD,14129,0,CAMPEAUX,Campeaux,Campeaux 32,2016-01-01,COM,14129,0,CAMPEAUX,Campeaux,Campeaux,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage +32,2016-01-01,COM,14129,0,CAMPEAUX,Campeaux,Campeaux,COMD,14129,0,CAMPEAUX,Campeaux,Campeaux 32,2016-01-01,COM,14139,0,CARVILLE,Carville,Carville,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage 32,2016-01-01,COM,14139,0,CARVILLE,Carville,Carville,COMD,14139,0,CARVILLE,Carville,Carville 32,2016-01-01,COM,14144,0,CAUMONT SUR ORNE,Caumont-sur-Orne,Caumont-sur-Orne,COMD,14144,0,CAUMONT SUR ORNE,Caumont-sur-Orne,Caumont-sur-Orne 32,2016-01-01,COM,14144,0,CAUMONT SUR ORNE,Caumont-sur-Orne,Caumont-sur-Orne,COM,14689,2,HOM,Hom,Le Hom 32,2016-01-01,COM,14148,0,CERQUEUX,Cerqueux,Cerqueux,COMD,14148,0,CERQUEUX,Cerqueux,Cerqueux 32,2016-01-01,COM,14148,0,CERQUEUX,Cerqueux,Cerqueux,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge -32,2016-01-01,COM,14152,3,CHAPELLE ENGERBOLD,Chapelle-Engerbold,La Chapelle-Engerbold,COM,14174,0,CONDE EN NORMANDIE,Condé-en-Normandie,Condé-en-Normandie 32,2016-01-01,COM,14152,3,CHAPELLE ENGERBOLD,Chapelle-Engerbold,La Chapelle-Engerbold,COMD,14152,3,CHAPELLE ENGERBOLD,Chapelle-Engerbold,La Chapelle-Engerbold -32,2016-01-01,COM,14153,3,CHAPELLE HAUTE GRUE,Chapelle-Haute-Grue,La Chapelle-Haute-Grue,COM,14576,0,VAL DE VIE,Val-de-Vie,Val-de-Vie +32,2016-01-01,COM,14152,3,CHAPELLE ENGERBOLD,Chapelle-Engerbold,La Chapelle-Engerbold,COM,14174,0,CONDE EN NORMANDIE,Condé-en-Normandie,Condé-en-Normandie 32,2016-01-01,COM,14153,3,CHAPELLE HAUTE GRUE,Chapelle-Haute-Grue,La Chapelle-Haute-Grue,COMD,14153,3,CHAPELLE HAUTE GRUE,Chapelle-Haute-Grue,La Chapelle-Haute-Grue +32,2016-01-01,COM,14153,3,CHAPELLE HAUTE GRUE,Chapelle-Haute-Grue,La Chapelle-Haute-Grue,COM,14576,0,VAL DE VIE,Val-de-Vie,Val-de-Vie 32,2016-01-01,COM,14154,3,CHAPELLE YVON,Chapelle-Yvon,La Chapelle-Yvon,COMD,14154,3,CHAPELLE YVON,Chapelle-Yvon,La Chapelle-Yvon 32,2016-01-01,COM,14154,3,CHAPELLE YVON,Chapelle-Yvon,La Chapelle-Yvon,COM,14570,0,VALORBIQUET,Valorbiquet,Valorbiquet 32,2016-01-01,COM,14155,0,CHEFFREVILLE TONNENCOURT,Cheffreville-Tonnencourt,Cheffreville-Tonnencourt,COMD,14155,0,CHEFFREVILLE TONNENCOURT,Cheffreville-Tonnencourt,Cheffreville-Tonnencourt 32,2016-01-01,COM,14155,0,CHEFFREVILLE TONNENCOURT,Cheffreville-Tonnencourt,Cheffreville-Tonnencourt,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge -32,2016-01-01,COM,14156,0,CHENEDOLLE,Chênedollé,Chênedollé,COM,14726,0,VALDALLIERE,Valdallière,Valdallière 32,2016-01-01,COM,14156,0,CHENEDOLLE,Chênedollé,Chênedollé,COMD,14156,0,CHENEDOLLE,Chênedollé,Chênedollé -32,2016-01-01,COM,14170,0,COLOMBY SUR THAON,Colomby-sur-Thaon,Colomby-sur-Thaon,COMD,14170,0,COLOMBY SUR THAON,Colomby-sur-Thaon,Colomby-sur-Thaon +32,2016-01-01,COM,14156,0,CHENEDOLLE,Chênedollé,Chênedollé,COM,14726,0,VALDALLIERE,Valdallière,Valdallière 32,2016-01-01,COM,14170,0,COLOMBY SUR THAON,Colomby-sur-Thaon,Colomby-sur-Thaon,COM,14014,0,COLOMBY ANGUERNY,Colomby-Anguerny,Colomby-Anguerny +32,2016-01-01,COM,14170,0,COLOMBY SUR THAON,Colomby-sur-Thaon,Colomby-sur-Thaon,COMD,14170,0,COLOMBY SUR THAON,Colomby-sur-Thaon,Colomby-sur-Thaon 32,2016-01-01,COM,14174,0,CONDE SUR NOIREAU,Condé-sur-Noireau,Condé-sur-Noireau,COM,14174,0,CONDE EN NORMANDIE,Condé-en-Normandie,Condé-en-Normandie 32,2016-01-01,COM,14174,0,CONDE SUR NOIREAU,Condé-sur-Noireau,Condé-sur-Noireau,COMD,14174,0,CONDE SUR NOIREAU,Condé-sur-Noireau,Condé-sur-Noireau 32,2016-01-01,COM,14187,0,COULONCES,Coulonces,Coulonces,COMD,14187,0,COULONCES,Coulonces,Coulonces 32,2016-01-01,COM,14187,0,COULONCES,Coulonces,Coulonces,COM,14762,0,VIRE NORMANDIE,Vire Normandie,Vire Normandie 32,2016-01-01,COM,14188,0,COULVAIN,Coulvain,Coulvain,COMD,14188,0,COULVAIN,Coulvain,Coulvain 32,2016-01-01,COM,14188,0,COULVAIN,Coulvain,Coulvain,COM,14579,0,SEULLINE,Seulline,Seulline -32,2016-01-01,COM,14210,3,CROUPTE,Croupte,La Croupte,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge 32,2016-01-01,COM,14210,3,CROUPTE,Croupte,La Croupte,COMD,14210,3,CROUPTE,Croupte,La Croupte +32,2016-01-01,COM,14210,3,CROUPTE,Croupte,La Croupte,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge 32,2016-01-01,COM,14213,0,CURCY SUR ORNE,Curcy-sur-Orne,Curcy-sur-Orne,COMD,14213,0,CURCY SUR ORNE,Curcy-sur-Orne,Curcy-sur-Orne 32,2016-01-01,COM,14213,0,CURCY SUR ORNE,Curcy-sur-Orne,Curcy-sur-Orne,COM,14689,2,HOM,Hom,Le Hom -32,2016-01-01,COM,14222,2,DESERT,Désert,Le Désert,COM,14726,0,VALDALLIERE,Valdallière,Valdallière 32,2016-01-01,COM,14222,2,DESERT,Désert,Le Désert,COMD,14222,2,DESERT,Désert,Le Désert -32,2016-01-01,COM,14253,1,ESTRY,Estry,Estry,COM,14726,0,VALDALLIERE,Valdallière,Valdallière +32,2016-01-01,COM,14222,2,DESERT,Désert,Le Désert,COM,14726,0,VALDALLIERE,Valdallière,Valdallière 32,2016-01-01,COM,14253,1,ESTRY,Estry,Estry,COMD,14253,1,ESTRY,Estry,Estry +32,2016-01-01,COM,14253,1,ESTRY,Estry,Estry,COM,14726,0,VALDALLIERE,Valdallière,Valdallière 32,2016-01-01,COM,14255,1,ETOUVY,Étouvy,Étouvy,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage 32,2016-01-01,COM,14255,1,ETOUVY,Étouvy,Étouvy,COMD,14255,1,ETOUVY,Étouvy,Étouvy 32,2016-01-01,COM,14259,0,FAMILLY,Familly,Familly,COMD,14259,0,FAMILLY,Familly,Familly 32,2016-01-01,COM,14259,0,FAMILLY,Familly,Familly,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge 32,2016-01-01,COMA,14262,3,FERRIERE AU DOYEN,Ferrière-au-Doyen,La Ferrière-au-Doyen,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage -32,2016-01-01,COM,14264,3,FERRIERE HARANG,Ferrière-Harang,La Ferrière-Harang,COMD,14264,3,FERRIERE HARANG,Ferrière-Harang,La Ferrière-Harang 32,2016-01-01,COM,14264,3,FERRIERE HARANG,Ferrière-Harang,La Ferrière-Harang,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage +32,2016-01-01,COM,14264,3,FERRIERE HARANG,Ferrière-Harang,La Ferrière-Harang,COMD,14264,3,FERRIERE HARANG,Ferrière-Harang,La Ferrière-Harang 32,2016-01-01,COM,14265,0,FERVAQUES,Fervaques,Fervaques,COMD,14265,0,FERVAQUES,Fervaques,Fervaques 32,2016-01-01,COM,14265,0,FERVAQUES,Fervaques,Fervaques,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge -32,2016-01-01,COM,14292,0,FRIARDEL,Friardel,Friardel,COM,14740,3,VESPIERE FRIARDEL,Vespière-Friardel,La Vespière-Friardel 32,2016-01-01,COM,14292,0,FRIARDEL,Friardel,Friardel,COMD,14292,0,FRIARDEL,Friardel,Friardel -32,2016-01-01,COM,14317,3,GRAVERIE,Graverie,La Graverie,COMD,14317,3,GRAVERIE,Graverie,La Graverie +32,2016-01-01,COM,14292,0,FRIARDEL,Friardel,Friardel,COM,14740,3,VESPIERE FRIARDEL,Vespière-Friardel,La Vespière-Friardel 32,2016-01-01,COM,14317,3,GRAVERIE,Graverie,La Graverie,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage -32,2016-01-01,COM,14324,0,HAMARS,Hamars,Hamars,COM,14689,2,HOM,Hom,Le Hom +32,2016-01-01,COM,14317,3,GRAVERIE,Graverie,La Graverie,COMD,14317,3,GRAVERIE,Graverie,La Graverie 32,2016-01-01,COM,14324,0,HAMARS,Hamars,Hamars,COMD,14324,0,HAMARS,Hamars,Hamars -32,2016-01-01,COM,14330,0,HEURTEVENT,Heurtevent,Heurtevent,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge +32,2016-01-01,COM,14324,0,HAMARS,Hamars,Hamars,COM,14689,2,HOM,Hom,Le Hom 32,2016-01-01,COM,14330,0,HEURTEVENT,Heurtevent,Heurtevent,COMD,14330,0,HEURTEVENT,Heurtevent,Heurtevent +32,2016-01-01,COM,14330,0,HEURTEVENT,Heurtevent,Heurtevent,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge 32,2016-01-01,COM,14356,0,LASSON,Lasson,Lasson,COMD,14356,0,LASSON,Lasson,Lasson 32,2016-01-01,COM,14356,0,LASSON,Lasson,Lasson,COM,14543,0,ROTS,Rots,Rots 32,2016-01-01,COM,14361,0,LENAULT,Lénault,Lénault,COM,14174,0,CONDE EN NORMANDIE,Condé-en-Normandie,Condé-en-Normandie 32,2016-01-01,COM,14361,0,LENAULT,Lénault,Lénault,COMD,14361,0,LENAULT,Lénault,Lénault -32,2016-01-01,COM,14371,0,LIVAROT,Livarot,Livarot,COMD,14371,0,LIVAROT,Livarot,Livarot 32,2016-01-01,COM,14371,0,LIVAROT,Livarot,Livarot,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge +32,2016-01-01,COM,14371,0,LIVAROT,Livarot,Livarot,COMD,14371,0,LIVAROT,Livarot,Livarot 32,2016-01-01,COM,14388,0,MAISONCELLES LA JOURDAN,Maisoncelles-la-Jourdan,Maisoncelles-la-Jourdan,COMD,14388,0,MAISONCELLES LA JOURDAN,Maisoncelles-la-Jourdan,Maisoncelles-la-Jourdan 32,2016-01-01,COM,14388,0,MAISONCELLES LA JOURDAN,Maisoncelles-la-Jourdan,Maisoncelles-la-Jourdan,COM,14762,0,VIRE NORMANDIE,Vire Normandie,Vire Normandie -32,2016-01-01,COM,14395,0,MALLOUE,Malloué,Malloué,COMD,14395,0,MALLOUE,Malloué,Malloué 32,2016-01-01,COM,14395,0,MALLOUE,Malloué,Malloué,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage +32,2016-01-01,COM,14395,0,MALLOUE,Malloué,Malloué,COMD,14395,0,MALLOUE,Malloué,Malloué 32,2016-01-01,COM,14414,2,MESNIL BACLEY,Mesnil-Bacley,Le Mesnil-Bacley,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge 32,2016-01-01,COM,14414,2,MESNIL BACLEY,Mesnil-Bacley,Le Mesnil-Bacley,COMD,14414,2,MESNIL BACLEY,Mesnil-Bacley,Le Mesnil-Bacley 32,2016-01-01,COM,14418,2,MESNIL DURAND,Mesnil-Durand,Le Mesnil-Durand,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge 32,2016-01-01,COM,14418,2,MESNIL DURAND,Mesnil-Durand,Le Mesnil-Durand,COMD,14418,2,MESNIL DURAND,Mesnil-Durand,Le Mesnil-Durand -32,2016-01-01,COM,14420,2,MESNIL GERMAIN,Mesnil-Germain,Le Mesnil-Germain,COMD,14420,2,MESNIL GERMAIN,Mesnil-Germain,Le Mesnil-Germain 32,2016-01-01,COM,14420,2,MESNIL GERMAIN,Mesnil-Germain,Le Mesnil-Germain,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge +32,2016-01-01,COM,14420,2,MESNIL GERMAIN,Mesnil-Germain,Le Mesnil-Germain,COMD,14420,2,MESNIL GERMAIN,Mesnil-Germain,Le Mesnil-Germain 32,2016-01-01,COM,14429,0,MEULLES,Meulles,Meulles,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge 32,2016-01-01,COM,14429,0,MEULLES,Meulles,Meulles,COMD,14429,0,MEULLES,Meulles,Meulles 32,2016-01-01,COM,14432,0,MISSY,Missy,Missy,COMD,14432,0,MISSY,Missy,Missy 32,2016-01-01,COM,14432,0,MISSY,Missy,Missy,COM,14475,0,NOYERS MISSY,Noyers-Missy,Noyers-Missy -32,2016-01-01,COM,14440,0,MONTAMY,Montamy,Montamy,COMD,14440,0,MONTAMY,Montamy,Montamy 32,2016-01-01,COM,14440,0,MONTAMY,Montamy,Montamy,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage +32,2016-01-01,COM,14440,0,MONTAMY,Montamy,Montamy,COMD,14440,0,MONTAMY,Montamy,Montamy 32,2016-01-01,COM,14441,0,MONT BERTRAND,Mont-Bertrand,Mont-Bertrand,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage 32,2016-01-01,COM,14441,0,MONT BERTRAND,Mont-Bertrand,Mont-Bertrand,COMD,14441,0,MONT BERTRAND,Mont-Bertrand,Mont-Bertrand 32,2016-01-01,COM,14442,0,MONTCHAMP,Montchamp,Montchamp,COMD,14442,0,MONTCHAMP,Montchamp,Montchamp 32,2016-01-01,COM,14442,0,MONTCHAMP,Montchamp,Montchamp,COM,14726,0,VALDALLIERE,Valdallière,Valdallière -32,2016-01-01,COM,14443,0,MONTCHAUVET,Montchauvet,Montchauvet,COMD,14443,0,MONTCHAUVET,Montchauvet,Montchauvet 32,2016-01-01,COM,14443,0,MONTCHAUVET,Montchauvet,Montchauvet,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage +32,2016-01-01,COM,14443,0,MONTCHAUVET,Montchauvet,Montchauvet,COMD,14443,0,MONTCHAUVET,Montchauvet,Montchauvet 32,2016-01-01,COM,14459,4,MOUTIERS HUBERT,Moutiers-Hubert,Les Moutiers-Hubert,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge 32,2016-01-01,COM,14459,4,MOUTIERS HUBERT,Moutiers-Hubert,Les Moutiers-Hubert,COMD,14459,4,MOUTIERS HUBERT,Moutiers-Hubert,Les Moutiers-Hubert 32,2016-01-01,COM,14471,0,NOTRE DAME DE COURSON,Notre-Dame-de-Courson,Notre-Dame-de-Courson,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge 32,2016-01-01,COM,14471,0,NOTRE DAME DE COURSON,Notre-Dame-de-Courson,Notre-Dame-de-Courson,COMD,14471,0,NOTRE DAME DE COURSON,Notre-Dame-de-Courson,Notre-Dame-de-Courson 32,2016-01-01,COM,14475,0,NOYERS BOCAGE,Noyers-Bocage,Noyers-Bocage,COMD,14475,0,NOYERS BOCAGE,Noyers-Bocage,Noyers-Bocage 32,2016-01-01,COM,14475,0,NOYERS BOCAGE,Noyers-Bocage,Noyers-Bocage,COM,14475,0,NOYERS MISSY,Noyers-Missy,Noyers-Missy -32,2016-01-01,COM,14503,0,PIERRES,Pierres,Pierres,COM,14726,0,VALDALLIERE,Valdallière,Valdallière 32,2016-01-01,COM,14503,0,PIERRES,Pierres,Pierres,COMD,14503,0,PIERRES,Pierres,Pierres +32,2016-01-01,COM,14503,0,PIERRES,Pierres,Pierres,COM,14726,0,VALDALLIERE,Valdallière,Valdallière 32,2016-01-01,COM,14518,0,PREAUX SAINT SEBASTIEN,Préaux-Saint-Sébastien,Préaux-Saint-Sébastien,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge 32,2016-01-01,COM,14518,0,PREAUX SAINT SEBASTIEN,Préaux-Saint-Sébastien,Préaux-Saint-Sébastien,COMD,14518,0,PREAUX SAINT SEBASTIEN,Préaux-Saint-Sébastien,Préaux-Saint-Sébastien -32,2016-01-01,COM,14521,0,PRESLES,Presles,Presles,COM,14726,0,VALDALLIERE,Valdallière,Valdallière 32,2016-01-01,COM,14521,0,PRESLES,Presles,Presles,COMD,14521,0,PRESLES,Presles,Presles +32,2016-01-01,COM,14521,0,PRESLES,Presles,Presles,COM,14726,0,VALDALLIERE,Valdallière,Valdallière 32,2016-01-01,COM,14523,0,PROUSSY,Proussy,Proussy,COM,14174,0,CONDE EN NORMANDIE,Condé-en-Normandie,Condé-en-Normandie 32,2016-01-01,COM,14523,0,PROUSSY,Proussy,Proussy,COMD,14523,0,PROUSSY,Proussy,Proussy 32,2016-01-01,COM,14532,2,RECULEY,Reculey,Le Reculey,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage 32,2016-01-01,COM,14532,2,RECULEY,Reculey,Le Reculey,COMD,14532,2,RECULEY,Reculey,Le Reculey 32,2016-01-01,COM,14539,3,ROCQUE,Rocque,La Rocque,COMD,14539,3,ROCQUE,Rocque,La Rocque 32,2016-01-01,COM,14539,3,ROCQUE,Rocque,La Rocque,COM,14726,0,VALDALLIERE,Valdallière,Valdallière -32,2016-01-01,COM,14543,0,ROTS,Rots,Rots,COMD,14543,0,ROTS,Rots,Rots 32,2016-01-01,COM,14543,0,ROTS,Rots,Rots,COM,14543,0,ROTS,Rots,Rots -32,2016-01-01,COM,14545,0,ROULLOURS,Roullours,Roullours,COM,14762,0,VIRE NORMANDIE,Vire Normandie,Vire Normandie +32,2016-01-01,COM,14543,0,ROTS,Rots,Rots,COMD,14543,0,ROTS,Rots,Rots 32,2016-01-01,COM,14545,0,ROULLOURS,Roullours,Roullours,COMD,14545,0,ROULLOURS,Roullours,Roullours -32,2016-01-01,COM,14549,0,RULLY,Rully,Rully,COM,14726,0,VALDALLIERE,Valdallière,Valdallière +32,2016-01-01,COM,14545,0,ROULLOURS,Roullours,Roullours,COM,14762,0,VIRE NORMANDIE,Vire Normandie,Vire Normandie 32,2016-01-01,COM,14549,0,RULLY,Rully,Rully,COMD,14549,0,RULLY,Rully,Rully -32,2016-01-01,COM,14553,0,SAINT AGNAN LE MALHERBE,Saint-Agnan-le-Malherbe,Saint-Agnan-le-Malherbe,COMD,14553,0,SAINT AGNAN LE MALHERBE,Saint-Agnan-le-Malherbe,Saint-Agnan-le-Malherbe +32,2016-01-01,COM,14549,0,RULLY,Rully,Rully,COM,14726,0,VALDALLIERE,Valdallière,Valdallière 32,2016-01-01,COM,14553,0,SAINT AGNAN LE MALHERBE,Saint-Agnan-le-Malherbe,Saint-Agnan-le-Malherbe,COM,14037,0,MALHERBE SUR AJON,Malherbe-sur-Ajon,Malherbe-sur-Ajon +32,2016-01-01,COM,14553,0,SAINT AGNAN LE MALHERBE,Saint-Agnan-le-Malherbe,Saint-Agnan-le-Malherbe,COMD,14553,0,SAINT AGNAN LE MALHERBE,Saint-Agnan-le-Malherbe,Saint-Agnan-le-Malherbe 32,2016-01-01,COM,14564,0,SAINT CHARLES DE PERCY,Saint-Charles-de-Percy,Saint-Charles-de-Percy,COMD,14564,0,SAINT CHARLES DE PERCY,Saint-Charles-de-Percy,Saint-Charles-de-Percy 32,2016-01-01,COM,14564,0,SAINT CHARLES DE PERCY,Saint-Charles-de-Percy,Saint-Charles-de-Percy,COM,14726,0,VALDALLIERE,Valdallière,Valdallière -32,2016-01-01,COM,14570,0,SAINT CYR DU RONCERAY,Saint-Cyr-du-Ronceray,Saint-Cyr-du-Ronceray,COM,14570,0,VALORBIQUET,Valorbiquet,Valorbiquet 32,2016-01-01,COM,14570,0,SAINT CYR DU RONCERAY,Saint-Cyr-du-Ronceray,Saint-Cyr-du-Ronceray,COMD,14570,0,SAINT CYR DU RONCERAY,Saint-Cyr-du-Ronceray,Saint-Cyr-du-Ronceray +32,2016-01-01,COM,14570,0,SAINT CYR DU RONCERAY,Saint-Cyr-du-Ronceray,Saint-Cyr-du-Ronceray,COM,14570,0,VALORBIQUET,Valorbiquet,Valorbiquet 32,2016-01-01,COM,14573,0,SAINT DENIS MAISONCELLES,Saint-Denis-Maisoncelles,Saint-Denis-Maisoncelles,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage 32,2016-01-01,COM,14573,0,SAINT DENIS MAISONCELLES,Saint-Denis-Maisoncelles,Saint-Denis-Maisoncelles,COMD,14573,0,SAINT DENIS MAISONCELLES,Saint-Denis-Maisoncelles,Saint-Denis-Maisoncelles -32,2016-01-01,COM,14576,0,SAINTE FOY DE MONTGOMMERY,Sainte-Foy-de-Montgommery,Sainte-Foy-de-Montgommery,COM,14576,0,VAL DE VIE,Val-de-Vie,Val-de-Vie 32,2016-01-01,COM,14576,0,SAINTE FOY DE MONTGOMMERY,Sainte-Foy-de-Montgommery,Sainte-Foy-de-Montgommery,COMD,14576,0,SAINTE FOY DE MONTGOMMERY,Sainte-Foy-de-Montgommery,Sainte-Foy-de-Montgommery -32,2016-01-01,COM,14579,0,SAINT GEORGES D AUNAY,Saint-Georges-d'Aunay,Saint-Georges-d'Aunay,COMD,14579,0,SAINT GEORGES D AUNAY,Saint-Georges-d'Aunay,Saint-Georges-d'Aunay +32,2016-01-01,COM,14576,0,SAINTE FOY DE MONTGOMMERY,Sainte-Foy-de-Montgommery,Sainte-Foy-de-Montgommery,COM,14576,0,VAL DE VIE,Val-de-Vie,Val-de-Vie 32,2016-01-01,COM,14579,0,SAINT GEORGES D AUNAY,Saint-Georges-d'Aunay,Saint-Georges-d'Aunay,COM,14579,0,SEULLINE,Seulline,Seulline +32,2016-01-01,COM,14579,0,SAINT GEORGES D AUNAY,Saint-Georges-d'Aunay,Saint-Georges-d'Aunay,COMD,14579,0,SAINT GEORGES D AUNAY,Saint-Georges-d'Aunay,Saint-Georges-d'Aunay 32,2016-01-01,COM,14583,0,SAINT GERMAIN DE MONTGOMMERY,Saint-Germain-de-Montgommery,Saint-Germain-de-Montgommery,COM,14576,0,VAL DE VIE,Val-de-Vie,Val-de-Vie 32,2016-01-01,COM,14583,0,SAINT GERMAIN DE MONTGOMMERY,Saint-Germain-de-Montgommery,Saint-Germain-de-Montgommery,COMD,14583,0,SAINT GERMAIN DE MONTGOMMERY,Saint-Germain-de-Montgommery,Saint-Germain-de-Montgommery -32,2016-01-01,COM,14584,0,SAINT GERMAIN DE TALLEVENDE LA LANDE VAUMONT,Saint-Germain-de-Tallevende-la-Lande-Vaumont,Saint-Germain-de-Tallevende-la-Lande-Vaumont,COM,14762,0,VIRE NORMANDIE,Vire Normandie,Vire Normandie 32,2016-01-01,COM,14584,0,SAINT GERMAIN DE TALLEVENDE LA LANDE VAUMONT,Saint-Germain-de-Tallevende-la-Lande-Vaumont,Saint-Germain-de-Tallevende-la-Lande-Vaumont,COMD,14584,0,SAINT GERMAIN DE TALLEVENDE LA LANDE VAUMONT,Saint-Germain-de-Tallevende-la-Lande-Vaumont,Saint-Germain-de-Tallevende-la-Lande-Vaumont -32,2016-01-01,COM,14585,0,SAINT GERMAIN DU CRIOULT,Saint-Germain-du-Crioult,Saint-Germain-du-Crioult,COMD,14585,0,SAINT GERMAIN DU CRIOULT,Saint-Germain-du-Crioult,Saint-Germain-du-Crioult +32,2016-01-01,COM,14584,0,SAINT GERMAIN DE TALLEVENDE LA LANDE VAUMONT,Saint-Germain-de-Tallevende-la-Lande-Vaumont,Saint-Germain-de-Tallevende-la-Lande-Vaumont,COM,14762,0,VIRE NORMANDIE,Vire Normandie,Vire Normandie 32,2016-01-01,COM,14585,0,SAINT GERMAIN DU CRIOULT,Saint-Germain-du-Crioult,Saint-Germain-du-Crioult,COM,14174,0,CONDE EN NORMANDIE,Condé-en-Normandie,Condé-en-Normandie -32,2016-01-01,COM,14599,0,SAINT JULIEN DE MAILLOC,Saint-Julien-de-Mailloc,Saint-Julien-de-Mailloc,COMD,14599,0,SAINT JULIEN DE MAILLOC,Saint-Julien-de-Mailloc,Saint-Julien-de-Mailloc +32,2016-01-01,COM,14585,0,SAINT GERMAIN DU CRIOULT,Saint-Germain-du-Crioult,Saint-Germain-du-Crioult,COMD,14585,0,SAINT GERMAIN DU CRIOULT,Saint-Germain-du-Crioult,Saint-Germain-du-Crioult 32,2016-01-01,COM,14599,0,SAINT JULIEN DE MAILLOC,Saint-Julien-de-Mailloc,Saint-Julien-de-Mailloc,COM,14570,0,VALORBIQUET,Valorbiquet,Valorbiquet -32,2016-01-01,COM,14615,0,SAINTE MARGUERITE DES LOGES,Sainte-Marguerite-des-Loges,Sainte-Marguerite-des-Loges,COMD,14615,0,SAINTE MARGUERITE DES LOGES,Sainte-Marguerite-des-Loges,Sainte-Marguerite-des-Loges +32,2016-01-01,COM,14599,0,SAINT JULIEN DE MAILLOC,Saint-Julien-de-Mailloc,Saint-Julien-de-Mailloc,COMD,14599,0,SAINT JULIEN DE MAILLOC,Saint-Julien-de-Mailloc,Saint-Julien-de-Mailloc 32,2016-01-01,COM,14615,0,SAINTE MARGUERITE DES LOGES,Sainte-Marguerite-des-Loges,Sainte-Marguerite-des-Loges,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge +32,2016-01-01,COM,14615,0,SAINTE MARGUERITE DES LOGES,Sainte-Marguerite-des-Loges,Sainte-Marguerite-des-Loges,COMD,14615,0,SAINTE MARGUERITE DES LOGES,Sainte-Marguerite-des-Loges,Sainte-Marguerite-des-Loges 32,2016-01-01,COM,14618,0,SAINTE MARIE LAUMONT,Sainte-Marie-Laumont,Sainte-Marie-Laumont,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage 32,2016-01-01,COM,14618,0,SAINTE MARIE LAUMONT,Sainte-Marie-Laumont,Sainte-Marie-Laumont,COMD,14618,0,SAINTE MARIE LAUMONT,Sainte-Marie-Laumont,Sainte-Marie-Laumont -32,2016-01-01,COM,14628,0,SAINT MARTIN DE SALLEN,Saint-Martin-de-Sallen,Saint-Martin-de-Sallen,COM,14689,2,HOM,Hom,Le Hom 32,2016-01-01,COM,14628,0,SAINT MARTIN DE SALLEN,Saint-Martin-de-Sallen,Saint-Martin-de-Sallen,COMD,14628,0,SAINT MARTIN DE SALLEN,Saint-Martin-de-Sallen,Saint-Martin-de-Sallen +32,2016-01-01,COM,14628,0,SAINT MARTIN DE SALLEN,Saint-Martin-de-Sallen,Saint-Martin-de-Sallen,COM,14689,2,HOM,Hom,Le Hom 32,2016-01-01,COM,14629,0,SAINT MARTIN DES BESACES,Saint-Martin-des-Besaces,Saint-Martin-des-Besaces,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage 32,2016-01-01,COM,14629,0,SAINT MARTIN DES BESACES,Saint-Martin-des-Besaces,Saint-Martin-des-Besaces,COMD,14629,0,SAINT MARTIN DES BESACES,Saint-Martin-des-Besaces,Saint-Martin-des-Besaces 32,2016-01-01,COMA,14631,0,SAINT MARTIN DE TALLEVENDE,Saint-Martin-de-Tallevende,Saint-Martin-de-Tallevende,COM,14762,0,VIRE NORMANDIE,Vire Normandie,Vire Normandie @@ -3858,24 +3689,24 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,14634,0,SAINT MICHEL DE LIVET,Saint-Michel-de-Livet,Saint-Michel-de-Livet,COMD,14634,0,SAINT MICHEL DE LIVET,Saint-Michel-de-Livet,Saint-Michel-de-Livet 32,2016-01-01,COM,14636,0,SAINT OUEN DES BESACES,Saint-Ouen-des-Besaces,Saint-Ouen-des-Besaces,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage 32,2016-01-01,COM,14636,0,SAINT OUEN DES BESACES,Saint-Ouen-des-Besaces,Saint-Ouen-des-Besaces,COMD,14636,0,SAINT OUEN DES BESACES,Saint-Ouen-des-Besaces,Saint-Ouen-des-Besaces -32,2016-01-01,COM,14638,0,SAINT OUEN LE HOUX,Saint-Ouen-le-Houx,Saint-Ouen-le-Houx,COMD,14638,0,SAINT OUEN LE HOUX,Saint-Ouen-le-Houx,Saint-Ouen-le-Houx 32,2016-01-01,COM,14638,0,SAINT OUEN LE HOUX,Saint-Ouen-le-Houx,Saint-Ouen-le-Houx,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge +32,2016-01-01,COM,14638,0,SAINT OUEN LE HOUX,Saint-Ouen-le-Houx,Saint-Ouen-le-Houx,COMD,14638,0,SAINT OUEN LE HOUX,Saint-Ouen-le-Houx,Saint-Ouen-le-Houx 32,2016-01-01,COM,14647,0,SAINT PIERRE DE MAILLOC,Saint-Pierre-de-Mailloc,Saint-Pierre-de-Mailloc,COM,14570,0,VALORBIQUET,Valorbiquet,Valorbiquet 32,2016-01-01,COM,14647,0,SAINT PIERRE DE MAILLOC,Saint-Pierre-de-Mailloc,Saint-Pierre-de-Mailloc,COMD,14647,0,SAINT PIERRE DE MAILLOC,Saint-Pierre-de-Mailloc,Saint-Pierre-de-Mailloc 32,2016-01-01,COM,14653,0,SAINT PIERRE LA VIEILLE,Saint-Pierre-la-Vieille,Saint-Pierre-la-Vieille,COM,14174,0,CONDE EN NORMANDIE,Condé-en-Normandie,Condé-en-Normandie 32,2016-01-01,COM,14653,0,SAINT PIERRE LA VIEILLE,Saint-Pierre-la-Vieille,Saint-Pierre-la-Vieille,COMD,14653,0,SAINT PIERRE LA VIEILLE,Saint-Pierre-la-Vieille,Saint-Pierre-la-Vieille -32,2016-01-01,COM,14655,0,SAINT PIERRE TARENTAINE,Saint-Pierre-Tarentaine,Saint-Pierre-Tarentaine,COMD,14655,0,SAINT PIERRE TARENTAINE,Saint-Pierre-Tarentaine,Saint-Pierre-Tarentaine 32,2016-01-01,COM,14655,0,SAINT PIERRE TARENTAINE,Saint-Pierre-Tarentaine,Saint-Pierre-Tarentaine,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage +32,2016-01-01,COM,14655,0,SAINT PIERRE TARENTAINE,Saint-Pierre-Tarentaine,Saint-Pierre-Tarentaine,COMD,14655,0,SAINT PIERRE TARENTAINE,Saint-Pierre-Tarentaine,Saint-Pierre-Tarentaine 32,2016-01-01,COM,14670,0,SECQUEVILLE EN BESSIN,Secqueville-en-Bessin,Secqueville-en-Bessin,COM,14543,0,ROTS,Rots,Rots 32,2016-01-01,COM,14670,0,SECQUEVILLE EN BESSIN,Secqueville-en-Bessin,Secqueville-en-Bessin,COMD,14670,0,SECQUEVILLE EN BESSIN,Secqueville-en-Bessin,Secqueville-en-Bessin 32,2016-01-01,COM,14686,2,THEIL BOCAGE,Theil-Bocage,Le Theil-Bocage,COMD,14686,2,THEIL BOCAGE,Theil-Bocage,Le Theil-Bocage 32,2016-01-01,COM,14686,2,THEIL BOCAGE,Theil-Bocage,Le Theil-Bocage,COM,14726,0,VALDALLIERE,Valdallière,Valdallière -32,2016-01-01,COM,14689,0,THURY HARCOURT,Thury-Harcourt,Thury-Harcourt,COM,14689,2,HOM,Hom,Le Hom 32,2016-01-01,COM,14689,0,THURY HARCOURT,Thury-Harcourt,Thury-Harcourt,COMD,14689,0,THURY HARCOURT,Thury-Harcourt,Thury-Harcourt +32,2016-01-01,COM,14689,0,THURY HARCOURT,Thury-Harcourt,Thury-Harcourt,COM,14689,2,HOM,Hom,Le Hom 32,2016-01-01,COM,14693,0,TORDOUET,Tordouet,Tordouet,COM,14570,0,VALORBIQUET,Valorbiquet,Valorbiquet 32,2016-01-01,COM,14693,0,TORDOUET,Tordouet,Tordouet,COMD,14693,0,TORDOUET,Tordouet,Tordouet -32,2016-01-01,COM,14696,0,TORTISAMBERT,Tortisambert,Tortisambert,COMD,14696,0,TORTISAMBERT,Tortisambert,Tortisambert 32,2016-01-01,COM,14696,0,TORTISAMBERT,Tortisambert,Tortisambert,COM,14371,0,LIVAROT PAYS D AUGE,Livarot-Pays-d'Auge,Livarot-Pays-d'Auge +32,2016-01-01,COM,14696,0,TORTISAMBERT,Tortisambert,Tortisambert,COMD,14696,0,TORTISAMBERT,Tortisambert,Tortisambert 32,2016-01-01,COM,14704,2,TOURNEUR,Tourneur,Le Tourneur,COM,14061,0,SOULEUVRE EN BOCAGE,Souleuvre en Bocage,Souleuvre en Bocage 32,2016-01-01,COM,14704,2,TOURNEUR,Tourneur,Le Tourneur,COMD,14704,2,TOURNEUR,Tourneur,Le Tourneur 32,2016-01-01,COM,14717,0,TRUTTEMER LE GRAND,Truttemer-le-Grand,Truttemer-le-Grand,COMD,14717,0,TRUTTEMER LE GRAND,Truttemer-le-Grand,Truttemer-le-Grand @@ -3886,142 +3717,142 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,14726,0,VASSY,Vassy,Vassy,COMD,14726,0,VASSY,Vassy,Vassy 32,2016-01-01,COM,14727,0,VAUBADON,Vaubadon,Vaubadon,COM,14035,0,BALLEROY SUR DROME,Balleroy-sur-Drôme,Balleroy-sur-Drôme 32,2016-01-01,COM,14727,0,VAUBADON,Vaubadon,Vaubadon,COMD,14727,0,VAUBADON,Vaubadon,Vaubadon -32,2016-01-01,COM,14730,0,VAUDRY,Vaudry,Vaudry,COM,14762,0,VIRE NORMANDIE,Vire Normandie,Vire Normandie 32,2016-01-01,COM,14730,0,VAUDRY,Vaudry,Vaudry,COMD,14730,0,VAUDRY,Vaudry,Vaudry +32,2016-01-01,COM,14730,0,VAUDRY,Vaudry,Vaudry,COM,14762,0,VIRE NORMANDIE,Vire Normandie,Vire Normandie 32,2016-01-01,COM,14740,3,VESPIERE,Vespière,La Vespière,COMD,14740,3,VESPIERE,Vespière,La Vespière 32,2016-01-01,COM,14740,3,VESPIERE,Vespière,La Vespière,COM,14740,3,VESPIERE FRIARDEL,Vespière-Friardel,La Vespière-Friardel 32,2016-01-01,COM,14746,0,VIESSOIX,Viessoix,Viessoix,COM,14726,0,VALDALLIERE,Valdallière,Valdallière 32,2016-01-01,COM,14746,0,VIESSOIX,Viessoix,Viessoix,COMD,14746,0,VIESSOIX,Viessoix,Viessoix -32,2016-01-01,COM,14762,0,VIRE,Vire,Vire,COM,14762,0,VIRE NORMANDIE,Vire Normandie,Vire Normandie 32,2016-01-01,COM,14762,0,VIRE,Vire,Vire,COMD,14762,0,VIRE,Vire,Vire +32,2016-01-01,COM,14762,0,VIRE,Vire,Vire,COM,14762,0,VIRE NORMANDIE,Vire Normandie,Vire Normandie 32,2016-01-01,COMA,15023,0,BOURNONCLES,Bournoncles,Bournoncles,COM,15108,0,VAL D ARCOMIE,Val d'Arcomie,Val d'Arcomie 32,2016-01-01,COM,15068,0,FAVEROLLES,Faverolles,Faverolles,COMD,15068,0,FAVEROLLES,Faverolles,Faverolles 32,2016-01-01,COM,15068,0,FAVEROLLES,Faverolles,Faverolles,COM,15108,0,VAL D ARCOMIE,Val d'Arcomie,Val d'Arcomie -32,2016-01-01,COM,15071,0,FOURNOULES,Fournoulès,Fournoulès,COM,15181,0,SAINT CONSTANT FOURNOULES,Saint-Constant-Fournoulès,Saint-Constant-Fournoulès 32,2016-01-01,COM,15071,0,FOURNOULES,Fournoulès,Fournoulès,COMD,15071,0,FOURNOULES,Fournoulès,Fournoulès -32,2016-01-01,COM,15108,0,LOUBARESSE,Loubaresse,Loubaresse,COMD,15108,0,LOUBARESSE,Loubaresse,Loubaresse +32,2016-01-01,COM,15071,0,FOURNOULES,Fournoulès,Fournoulès,COM,15181,0,SAINT CONSTANT FOURNOULES,Saint-Constant-Fournoulès,Saint-Constant-Fournoulès 32,2016-01-01,COM,15108,0,LOUBARESSE,Loubaresse,Loubaresse,COM,15108,0,VAL D ARCOMIE,Val d'Arcomie,Val d'Arcomie +32,2016-01-01,COM,15108,0,LOUBARESSE,Loubaresse,Loubaresse,COMD,15108,0,LOUBARESSE,Loubaresse,Loubaresse 32,2016-01-01,COM,15150,0,PERS,Pers,Pers,COMD,15150,0,PERS,Pers,Pers 32,2016-01-01,COM,15150,0,PERS,Pers,Pers,COM,15268,2,ROUGET PERS,Rouget-Pers,Le Rouget-Pers -32,2016-01-01,COM,15181,0,SAINT CONSTANT,Saint-Constant,Saint-Constant,COM,15181,0,SAINT CONSTANT FOURNOULES,Saint-Constant-Fournoulès,Saint-Constant-Fournoulès 32,2016-01-01,COM,15181,0,SAINT CONSTANT,Saint-Constant,Saint-Constant,COMD,15181,0,SAINT CONSTANT,Saint-Constant,Saint-Constant +32,2016-01-01,COM,15181,0,SAINT CONSTANT,Saint-Constant,Saint-Constant,COM,15181,0,SAINT CONSTANT FOURNOULES,Saint-Constant-Fournoulès,Saint-Constant-Fournoulès 32,2016-01-01,COM,15195,0,SAINT JUST,Saint-Just,Saint-Just,COM,15108,0,VAL D ARCOMIE,Val d'Arcomie,Val d'Arcomie 32,2016-01-01,COM,15195,0,SAINT JUST,Saint-Just,Saint-Just,COMD,15195,0,SAINT JUST,Saint-Just,Saint-Just 32,2016-01-01,COM,15197,0,SAINT MARC,Saint-Marc,Saint-Marc,COM,15108,0,VAL D ARCOMIE,Val d'Arcomie,Val d'Arcomie 32,2016-01-01,COM,15197,0,SAINT MARC,Saint-Marc,Saint-Marc,COMD,15197,0,SAINT MARC,Saint-Marc,Saint-Marc -32,2016-01-01,COM,15268,2,ROUGET,Rouget,Le Rouget,COMD,15268,2,ROUGET,Rouget,Le Rouget 32,2016-01-01,COM,15268,2,ROUGET,Rouget,Le Rouget,COM,15268,2,ROUGET PERS,Rouget-Pers,Le Rouget-Pers -32,2016-01-01,COM,16021,1,AUBEVILLE,Aubeville,Aubeville,COM,16175,0,VAL DES VIGNES,Val des Vignes,Val des Vignes +32,2016-01-01,COM,15268,2,ROUGET,Rouget,Le Rouget,COMD,15268,2,ROUGET,Rouget,Le Rouget 32,2016-01-01,COM,16021,1,AUBEVILLE,Aubeville,Aubeville,COMD,16021,1,AUBEVILLE,Aubeville,Aubeville -32,2016-01-01,COM,16043,0,BIGNAC,Bignac,Bignac,COM,16148,0,GENAC BIGNAC,Genac-Bignac,Genac-Bignac +32,2016-01-01,COM,16021,1,AUBEVILLE,Aubeville,Aubeville,COM,16175,0,VAL DES VIGNES,Val des Vignes,Val des Vignes 32,2016-01-01,COM,16043,0,BIGNAC,Bignac,Bignac,COMD,16043,0,BIGNAC,Bignac,Bignac +32,2016-01-01,COM,16043,0,BIGNAC,Bignac,Bignac,COM,16148,0,GENAC BIGNAC,Genac-Bignac,Genac-Bignac 10,2016-01-01,COM,16052,0,BORS (CANTON DE MONTMOREAU SAINT CYBARD),Bors (Canton de Montmoreau-Saint-Cybard),Bors (Canton de Montmoreau-Saint-Cybard),COM,16052,0,BORS (CANTON DE TUDE ET LAVALETTE),Bors (Canton de Tude-et-Lavalette),Bors (Canton de Tude-et-Lavalette) 10,2016-01-01,COM,16053,0,BORS (CANTON DE BAIGNES SAINTE RADEGONDE),Bors (Canton de Baignes-Sainte-Radegonde),Bors (Canton de Baignes-Sainte-Radegonde),COM,16053,0,BORS (CANTON DE CHARENTE SUD),Bors (Canton de Charente-Sud),Bors (Canton de Charente-Sud) 32,2016-01-01,COM,16082,0,CHARMANT,Charmant,Charmant,COMD,16082,0,CHARMANT,Charmant,Charmant 32,2016-01-01,COM,16082,0,CHARMANT,Charmant,Charmant,COM,16082,0,BOISNE LA TUDE,Boisné-La Tude,Boisné-La Tude 32,2016-01-01,COM,16092,0,CHAVENAT,Chavenat,Chavenat,COM,16082,0,BOISNE LA TUDE,Boisné-La Tude,Boisné-La Tude 32,2016-01-01,COM,16092,0,CHAVENAT,Chavenat,Chavenat,COMD,16092,0,CHAVENAT,Chavenat,Chavenat -32,2016-01-01,COM,16106,0,CONFOLENS,Confolens,Confolens,COM,16106,0,CONFOLENS,Confolens,Confolens 32,2016-01-01,COM,16106,0,CONFOLENS,Confolens,Confolens,COMD,16106,0,CONFOLENS,Confolens,Confolens -32,2016-01-01,COM,16148,0,GENAC,Genac,Genac,COM,16148,0,GENAC BIGNAC,Genac-Bignac,Genac-Bignac +32,2016-01-01,COM,16106,0,CONFOLENS,Confolens,Confolens,COM,16106,0,CONFOLENS,Confolens,Confolens 32,2016-01-01,COM,16148,0,GENAC,Genac,Genac,COMD,16148,0,GENAC,Genac,Genac +32,2016-01-01,COM,16148,0,GENAC,Genac,Genac,COM,16148,0,GENAC BIGNAC,Genac-Bignac,Genac-Bignac 32,2016-01-01,COM,16172,0,JUILLAGUET,Juillaguet,Juillaguet,COM,16082,0,BOISNE LA TUDE,Boisné-La Tude,Boisné-La Tude 32,2016-01-01,COM,16172,0,JUILLAGUET,Juillaguet,Juillaguet,COMD,16172,0,JUILLAGUET,Juillaguet,Juillaguet 32,2016-01-01,COM,16175,0,JURIGNAC,Jurignac,Jurignac,COM,16175,0,VAL DES VIGNES,Val des Vignes,Val des Vignes 32,2016-01-01,COM,16175,0,JURIGNAC,Jurignac,Jurignac,COMD,16175,0,JURIGNAC,Jurignac,Jurignac -32,2016-01-01,COM,16179,0,LAMERAC,Lamérac,Lamérac,COM,16224,0,MONTMERAC,Montmérac,Montmérac 32,2016-01-01,COM,16179,0,LAMERAC,Lamérac,Lamérac,COMD,16179,0,LAMERAC,Lamérac,Lamérac +32,2016-01-01,COM,16179,0,LAMERAC,Lamérac,Lamérac,COM,16224,0,MONTMERAC,Montmérac,Montmérac 32,2016-01-01,COM,16201,0,MAINFONDS,Mainfonds,Mainfonds,COM,16175,0,VAL DES VIGNES,Val des Vignes,Val des Vignes 32,2016-01-01,COM,16201,0,MAINFONDS,Mainfonds,Mainfonds,COMD,16201,0,MAINFONDS,Mainfonds,Mainfonds 32,2016-01-01,COM,16224,0,MONTCHAUDE,Montchaude,Montchaude,COMD,16224,0,MONTCHAUDE,Montchaude,Montchaude 32,2016-01-01,COM,16224,0,MONTCHAUDE,Montchaude,Montchaude,COM,16224,0,MONTMERAC,Montmérac,Montmérac -32,2016-01-01,COM,16257,0,PEREUIL,Péreuil,Péreuil,COMD,16257,0,PEREUIL,Péreuil,Péreuil 32,2016-01-01,COM,16257,0,PEREUIL,Péreuil,Péreuil,COM,16175,0,VAL DES VIGNES,Val des Vignes,Val des Vignes +32,2016-01-01,COM,16257,0,PEREUIL,Péreuil,Péreuil,COMD,16257,0,PEREUIL,Péreuil,Péreuil 32,2016-01-01,COM,16262,0,PLAIZAC,Plaizac,Plaizac,COMD,16262,0,PLAIZAC,Plaizac,Plaizac 32,2016-01-01,COM,16262,0,PLAIZAC,Plaizac,Plaizac,COM,16286,0,ROUILLAC,Rouillac,Rouillac 32,2016-01-01,COM,16286,0,ROUILLAC,Rouillac,Rouillac,COM,16286,0,ROUILLAC,Rouillac,Rouillac 32,2016-01-01,COM,16286,0,ROUILLAC,Rouillac,Rouillac,COMD,16286,0,ROUILLAC,Rouillac,Rouillac -32,2016-01-01,COM,16322,0,SAINT GERMAIN DE CONFOLENS,Saint-Germain-de-Confolens,Saint-Germain-de-Confolens,COMD,16322,0,SAINT GERMAIN DE CONFOLENS,Saint-Germain-de-Confolens,Saint-Germain-de-Confolens 32,2016-01-01,COM,16322,0,SAINT GERMAIN DE CONFOLENS,Saint-Germain-de-Confolens,Saint-Germain-de-Confolens,COM,16106,0,CONFOLENS,Confolens,Confolens +32,2016-01-01,COM,16322,0,SAINT GERMAIN DE CONFOLENS,Saint-Germain-de-Confolens,Saint-Germain-de-Confolens,COMD,16322,0,SAINT GERMAIN DE CONFOLENS,Saint-Germain-de-Confolens,Saint-Germain-de-Confolens 32,2016-01-01,COM,16371,0,SONNEVILLE,Sonneville,Sonneville,COM,16286,0,ROUILLAC,Rouillac,Rouillac 32,2016-01-01,COM,16371,0,SONNEVILLE,Sonneville,Sonneville,COMD,16371,0,SONNEVILLE,Sonneville,Sonneville -32,2016-01-01,COM,17040,3,BENATE,Benâte,La Benâte,COM,17277,1,ESSOUVERT,Essouvert,Essouvert 32,2016-01-01,COM,17040,3,BENATE,Benâte,La Benâte,COMD,17040,3,BENATE,Benâte,La Benâte +32,2016-01-01,COM,17040,3,BENATE,Benâte,La Benâte,COM,17277,1,ESSOUVERT,Essouvert,Essouvert 32,2016-01-01,COM,17238,0,MOINGS,Moings,Moings,COM,17295,0,REAUX SUR TREFLE,Réaux sur Trèfle,Réaux sur Trèfle -32,2016-01-01,COM,17277,0,SAINT DENIS DU PIN,Saint-Denis-du-Pin,Saint-Denis-du-Pin,COMD,17277,0,SAINT DENIS DU PIN,Saint-Denis-du-Pin,Saint-Denis-du-Pin 32,2016-01-01,COM,17277,0,SAINT DENIS DU PIN,Saint-Denis-du-Pin,Saint-Denis-du-Pin,COM,17277,1,ESSOUVERT,Essouvert,Essouvert +32,2016-01-01,COM,17277,0,SAINT DENIS DU PIN,Saint-Denis-du-Pin,Saint-Denis-du-Pin,COMD,17277,0,SAINT DENIS DU PIN,Saint-Denis-du-Pin,Saint-Denis-du-Pin 32,2016-01-01,COM,17295,0,REAUX,Réaux,Réaux,COM,17295,0,REAUX SUR TREFLE,Réaux sur Trèfle,Réaux sur Trèfle 32,2016-01-01,COM,17371,0,SAINT MAURICE DE TAVERNOLE,Saint-Maurice-de-Tavernole,Saint-Maurice-de-Tavernole,COM,17295,0,REAUX SUR TREFLE,Réaux sur Trèfle,Réaux sur Trèfle -32,2016-01-01,COM,19123,0,MALEMORT SUR CORREZE,Malemort-sur-Corrèze,Malemort-sur-Corrèze,COM,19123,0,MALEMORT,Malemort,Malemort 32,2016-01-01,COM,19123,0,MALEMORT SUR CORREZE,Malemort-sur-Corrèze,Malemort-sur-Corrèze,COMD,19123,0,MALEMORT SUR CORREZE,Malemort-sur-Corrèze,Malemort-sur-Corrèze +32,2016-01-01,COM,19123,0,MALEMORT SUR CORREZE,Malemort-sur-Corrèze,Malemort-sur-Corrèze,COM,19123,0,MALEMORT,Malemort,Malemort 32,2016-01-01,COM,19282,0,VENARSAL,Venarsal,Venarsal,COM,19123,0,MALEMORT,Malemort,Malemort 32,2016-01-01,COM,19282,0,VENARSAL,Venarsal,Venarsal,COMD,19282,0,VENARSAL,Venarsal,Venarsal -32,2016-01-01,COM,21318,1,IVRY EN MONTAGNE,Ivry-en-Montagne,Ivry-en-Montagne,COM,21327,0,VAL MONT,Val-Mont,Val-Mont 32,2016-01-01,COM,21318,1,IVRY EN MONTAGNE,Ivry-en-Montagne,Ivry-en-Montagne,COMD,21318,1,IVRY EN MONTAGNE,Ivry-en-Montagne,Ivry-en-Montagne +32,2016-01-01,COM,21318,1,IVRY EN MONTAGNE,Ivry-en-Montagne,Ivry-en-Montagne,COM,21327,0,VAL MONT,Val-Mont,Val-Mont 32,2016-01-01,COM,21327,0,JOURS EN VAUX,Jours-en-Vaux,Jours-en-Vaux,COMD,21327,0,JOURS EN VAUX,Jours-en-Vaux,Jours-en-Vaux 32,2016-01-01,COM,21327,0,JOURS EN VAUX,Jours-en-Vaux,Jours-en-Vaux,COM,21327,0,VAL MONT,Val-Mont,Val-Mont -32,2016-01-01,COM,22046,0,COLLINEE,Collinée,Collinée,COMD,22046,0,COLLINEE,Collinée,Collinée 32,2016-01-01,COM,22046,0,COLLINEE,Collinée,Collinée,COM,22046,2,MENE,Mené,Le Mené -32,2016-01-01,COM,22051,0,DOLO,Dolo,Dolo,COM,22084,0,JUGON LES LACS COMMUNE NOUVELLE,Jugon-les-Lacs - Commune nouvelle,Jugon-les-Lacs - Commune nouvelle +32,2016-01-01,COM,22046,0,COLLINEE,Collinée,Collinée,COMD,22046,0,COLLINEE,Collinée,Collinée 32,2016-01-01,COM,22051,0,DOLO,Dolo,Dolo,COMD,22051,0,DOLO,Dolo,Dolo -32,2016-01-01,COM,22058,3,FERRIERE,Ferrière,La Ferrière,COM,22183,4,MOULINS,Moulins,Les Moulins +32,2016-01-01,COM,22051,0,DOLO,Dolo,Dolo,COM,22084,0,JUGON LES LACS COMMUNE NOUVELLE,Jugon-les-Lacs - Commune nouvelle,Jugon-les-Lacs - Commune nouvelle 32,2016-01-01,COM,22058,3,FERRIERE,Ferrière,La Ferrière,COMD,22058,3,FERRIERE,Ferrière,La Ferrière -32,2016-01-01,COM,22066,2,GOURAY,Gouray,Le Gouray,COMD,22066,2,GOURAY,Gouray,Le Gouray +32,2016-01-01,COM,22058,3,FERRIERE,Ferrière,La Ferrière,COM,22183,4,MOULINS,Moulins,Les Moulins 32,2016-01-01,COM,22066,2,GOURAY,Gouray,Le Gouray,COM,22046,2,MENE,Mené,Le Mené +32,2016-01-01,COM,22066,2,GOURAY,Gouray,Le Gouray,COMD,22066,2,GOURAY,Gouray,Le Gouray 32,2016-01-01,COM,22080,5,HERMITAGE LORGE,Hermitage-Lorge,L'Hermitage-Lorge,COMD,22080,5,HERMITAGE LORGE,Hermitage-Lorge,L'Hermitage-Lorge -32,2016-01-01,COM,22080,5,HERMITAGE LORGE,Hermitage-Lorge,L'Hermitage-Lorge,COM,22203,0,PLOEUC L HERMITAGE,Plœuc-L'Hermitage,Plœuc-L'Hermitage +32,2016-01-01,COM,22080,5,HERMITAGE LORGE,Hermitage-Lorge,L'Hermitage-Lorge,COM,22203,0,PLOUC L HERMITAGE,Plœuc-L'Hermitage,Plœuc-L'Hermitage 32,2016-01-01,COM,22084,0,JUGON LES LACS,Jugon-les-Lacs,Jugon-les-Lacs,COMD,22084,0,JUGON LES LACS,Jugon-les-Lacs,Jugon-les-Lacs -32,2016-01-01,COM,22084,0,JUGON LES LACS,Jugon-les-Lacs,Jugon-les-Lacs,COM,22084,0,JUGON LES LACS COMMUNE NOUVELLE,Jugon-les-Lacs - Commune nouvelle,Jugon-les-Lacs - Commune nouvelle -32,2016-01-01,COM,22093,0,LAMBALLE,Lamballe,Lamballe,COM,22093,0,LAMBALLE,Lamballe,Lamballe +32,2016-01-01,COM,22084,0,JUGON LES LACS,Jugon-les-Lacs,Jugon-les-Lacs,COM,22084,0,JUGON LES LACS COMMUNE NOUVELLE,Jugon-les-Lacs - Commune nouvelle,Jugon-les-Lacs - Commune nouvelle 32,2016-01-01,COM,22093,0,LAMBALLE,Lamballe,Lamballe,COMD,22093,0,LAMBALLE,Lamballe,Lamballe -32,2016-01-01,COM,22102,0,LANGOURLA,Langourla,Langourla,COMD,22102,0,LANGOURLA,Langourla,Langourla +32,2016-01-01,COM,22093,0,LAMBALLE,Lamballe,Lamballe,COM,22093,0,LAMBALLE,Lamballe,Lamballe 32,2016-01-01,COM,22102,0,LANGOURLA,Langourla,Langourla,COM,22046,2,MENE,Mené,Le Mené +32,2016-01-01,COM,22102,0,LANGOURLA,Langourla,Langourla,COMD,22102,0,LANGOURLA,Langourla,Langourla 32,2016-01-01,COMA,22142,0,MAROUE,Maroué,Maroué,COM,22093,0,LAMBALLE,Lamballe,Lamballe 32,2016-01-01,COM,22151,0,MESLIN,Meslin,Meslin,COM,22093,0,LAMBALLE,Lamballe,Lamballe 32,2016-01-01,COM,22151,0,MESLIN,Meslin,Meslin,COMD,22151,0,MESLIN,Meslin,Meslin -32,2016-01-01,COM,22183,0,PLEMET,Plémet,Plémet,COM,22183,4,MOULINS,Moulins,Les Moulins 32,2016-01-01,COM,22183,0,PLEMET,Plémet,Plémet,COMD,22183,0,PLEMET,Plémet,Plémet -32,2016-01-01,COM,22191,0,PLESSALA,Plessala,Plessala,COMD,22191,0,PLESSALA,Plessala,Plessala +32,2016-01-01,COM,22183,0,PLEMET,Plémet,Plémet,COM,22183,4,MOULINS,Moulins,Les Moulins 32,2016-01-01,COM,22191,0,PLESSALA,Plessala,Plessala,COM,22046,2,MENE,Mené,Le Mené -32,2016-01-01,COM,22203,0,PLOEUC SUR LIE,Plœuc-sur-Lié,Plœuc-sur-Lié,COM,22203,0,PLOEUC L HERMITAGE,Plœuc-L'Hermitage,Plœuc-L'Hermitage -32,2016-01-01,COM,22203,0,PLOEUC SUR LIE,Plœuc-sur-Lié,Plœuc-sur-Lié,COMD,22203,0,PLOEUC SUR LIE,Plœuc-sur-Lié,Plœuc-sur-Lié -32,2016-01-01,COM,22251,0,PORDIC,Pordic,Pordic,COM,22251,0,PORDIC,Pordic,Pordic +32,2016-01-01,COM,22191,0,PLESSALA,Plessala,Plessala,COMD,22191,0,PLESSALA,Plessala,Plessala +32,2016-01-01,COM,22203,0,PLOUC SUR LIE,Plœuc-sur-Lié,Plœuc-sur-Lié,COM,22203,0,PLOUC L HERMITAGE,Plœuc-L'Hermitage,Plœuc-L'Hermitage +32,2016-01-01,COM,22203,0,PLOUC SUR LIE,Plœuc-sur-Lié,Plœuc-sur-Lié,COMD,22203,0,PLOUC SUR LIE,Plœuc-sur-Lié,Plœuc-sur-Lié 32,2016-01-01,COM,22251,0,PORDIC,Pordic,Pordic,COMD,22251,0,PORDIC,Pordic,Pordic +32,2016-01-01,COM,22251,0,PORDIC,Pordic,Pordic,COM,22251,0,PORDIC,Pordic,Pordic 32,2016-01-01,COMA,22252,3,POTERIE,Poterie,La Poterie,COM,22093,0,LAMBALLE,Lamballe,Lamballe 32,2016-01-01,COMA,22270,0,SAINT AARON,Saint-Aaron,Saint-Aaron,COM,22093,0,LAMBALLE,Lamballe,Lamballe -32,2016-01-01,COM,22292,0,SAINT GILLES DU MENE,Saint-Gilles-du-Mené,Saint-Gilles-du-Mené,COMD,22292,0,SAINT GILLES DU MENE,Saint-Gilles-du-Mené,Saint-Gilles-du-Mené 32,2016-01-01,COM,22292,0,SAINT GILLES DU MENE,Saint-Gilles-du-Mené,Saint-Gilles-du-Mené,COM,22046,2,MENE,Mené,Le Mené -32,2016-01-01,COM,22297,0,SAINT GOUENO,Saint-Gouéno,Saint-Gouéno,COMD,22297,0,SAINT GOUENO,Saint-Gouéno,Saint-Gouéno +32,2016-01-01,COM,22292,0,SAINT GILLES DU MENE,Saint-Gilles-du-Mené,Saint-Gilles-du-Mené,COMD,22292,0,SAINT GILLES DU MENE,Saint-Gilles-du-Mené,Saint-Gilles-du-Mené 32,2016-01-01,COM,22297,0,SAINT GOUENO,Saint-Gouéno,Saint-Gouéno,COM,22046,2,MENE,Mené,Le Mené +32,2016-01-01,COM,22297,0,SAINT GOUENO,Saint-Gouéno,Saint-Gouéno,COMD,22297,0,SAINT GOUENO,Saint-Gouéno,Saint-Gouéno 32,2016-01-01,COM,22303,0,SAINT JACUT DU MENE,Saint-Jacut-du-Mené,Saint-Jacut-du-Mené,COM,22046,2,MENE,Mené,Le Mené 32,2016-01-01,COM,22303,0,SAINT JACUT DU MENE,Saint-Jacut-du-Mené,Saint-Jacut-du-Mené,COMD,22303,0,SAINT JACUT DU MENE,Saint-Jacut-du-Mené,Saint-Jacut-du-Mené 32,2016-01-01,COMA,22355,0,TREGOMAR,Trégomar,Trégomar,COM,22093,0,LAMBALLE,Lamballe,Lamballe -32,2016-01-01,COM,22367,0,TREMELOIR,Tréméloir,Tréméloir,COMD,22367,0,TREMELOIR,Tréméloir,Tréméloir 32,2016-01-01,COM,22367,0,TREMELOIR,Tréméloir,Tréméloir,COM,22251,0,PORDIC,Pordic,Pordic -32,2016-01-01,COM,23149,0,PARSAC,Parsac,Parsac,COMD,23149,0,PARSAC,Parsac,Parsac +32,2016-01-01,COM,22367,0,TREMELOIR,Tréméloir,Tréméloir,COMD,22367,0,TREMELOIR,Tréméloir,Tréméloir 32,2016-01-01,COM,23149,0,PARSAC,Parsac,Parsac,COM,23149,0,PARSAC RIMONDEIX,Parsac-Rimondeix,Parsac-Rimondeix -32,2016-01-01,COM,23161,0,RIMONDEIX,Rimondeix,Rimondeix,COMD,23161,0,RIMONDEIX,Rimondeix,Rimondeix +32,2016-01-01,COM,23149,0,PARSAC,Parsac,Parsac,COMD,23149,0,PARSAC,Parsac,Parsac 32,2016-01-01,COM,23161,0,RIMONDEIX,Rimondeix,Rimondeix,COM,23149,0,PARSAC RIMONDEIX,Parsac-Rimondeix,Parsac-Rimondeix -32,2016-01-01,COM,24013,1,ATUR,Atur,Atur,COM,24053,0,BOULAZAC ISLE MANOIRE,Boulazac Isle Manoire,Boulazac Isle Manoire +32,2016-01-01,COM,23161,0,RIMONDEIX,Rimondeix,Rimondeix,COMD,23161,0,RIMONDEIX,Rimondeix,Rimondeix 32,2016-01-01,COM,24013,1,ATUR,Atur,Atur,COMD,24013,1,ATUR,Atur,Atur -32,2016-01-01,COM,24028,0,BEAUMONT DU PERIGORD,Beaumont-du-Périgord,Beaumont-du-Périgord,COM,24028,0,BEAUMONTOIS EN PERIGORD,Beaumontois en Périgord,Beaumontois en Périgord +32,2016-01-01,COM,24013,1,ATUR,Atur,Atur,COM,24053,0,BOULAZAC ISLE MANOIRE,Boulazac Isle Manoire,Boulazac Isle Manoire 32,2016-01-01,COM,24028,0,BEAUMONT DU PERIGORD,Beaumont-du-Périgord,Beaumont-du-Périgord,COMD,24028,0,BEAUMONT DU PERIGORD,Beaumont-du-Périgord,Beaumont-du-Périgord -32,2016-01-01,COM,24035,0,BELVES,Belvès,Belvès,COM,24035,0,PAYS DE BELVES,Pays de Belvès,Pays de Belvès +32,2016-01-01,COM,24028,0,BEAUMONT DU PERIGORD,Beaumont-du-Périgord,Beaumont-du-Périgord,COM,24028,0,BEAUMONTOIS EN PERIGORD,Beaumontois en Périgord,Beaumontois en Périgord 32,2016-01-01,COM,24035,0,BELVES,Belvès,Belvès,COMD,24035,0,BELVES,Belvès,Belvès +32,2016-01-01,COM,24035,0,BELVES,Belvès,Belvès,COM,24035,0,PAYS DE BELVES,Pays de Belvès,Pays de Belvès 32,2016-01-01,COMA,24049,0,BORN DE CHAMPS,Born-de-Champs,Born-de-Champs,COM,24028,0,BEAUMONTOIS EN PERIGORD,Beaumontois en Périgord,Beaumontois en Périgord 32,2016-01-01,COM,24053,0,BOULAZAC,Boulazac,Boulazac,COM,24053,0,BOULAZAC ISLE MANOIRE,Boulazac Isle Manoire,Boulazac Isle Manoire 32,2016-01-01,COM,24053,0,BOULAZAC,Boulazac,Boulazac,COMD,24053,0,BOULAZAC,Boulazac,Boulazac -32,2016-01-01,COM,24064,0,BRANTOME,Brantôme,Brantôme,COMD,24064,0,BRANTOME,Brantôme,Brantôme 32,2016-01-01,COM,24064,0,BRANTOME,Brantôme,Brantôme,COM,24064,0,BRANTOME EN PERIGORD,Brantôme en Périgord,Brantôme en Périgord -32,2016-01-01,COM,24118,0,CHENAUD,Chenaud,Chenaud,COM,24316,0,PARCOUL CHENAUD,Parcoul-Chenaud,Parcoul-Chenaud +32,2016-01-01,COM,24064,0,BRANTOME,Brantôme,Brantôme,COMD,24064,0,BRANTOME,Brantôme,Brantôme 32,2016-01-01,COM,24118,0,CHENAUD,Chenaud,Chenaud,COMD,24118,0,CHENAUD,Chenaud,Chenaud -32,2016-01-01,COM,24142,0,COUX ET BIGAROQUE,Coux-et-Bigaroque,Coux-et-Bigaroque,COMD,24142,0,COUX ET BIGAROQUE,Coux-et-Bigaroque,Coux-et-Bigaroque +32,2016-01-01,COM,24118,0,CHENAUD,Chenaud,Chenaud,COM,24316,0,PARCOUL CHENAUD,Parcoul-Chenaud,Parcoul-Chenaud 32,2016-01-01,COM,24142,0,COUX ET BIGAROQUE,Coux-et-Bigaroque,Coux-et-Bigaroque,COM,24142,0,COUX ET BIGAROQUE MOUZENS,Coux et Bigaroque-Mouzens,Coux et Bigaroque-Mouzens +32,2016-01-01,COM,24142,0,COUX ET BIGAROQUE,Coux-et-Bigaroque,Coux-et-Bigaroque,COMD,24142,0,COUX ET BIGAROQUE,Coux-et-Bigaroque,Coux-et-Bigaroque 32,2016-01-01,COMA,24185,0,FONGALOP,Fongalop,Fongalop,COM,24035,0,PAYS DE BELVES,Pays de Belvès,Pays de Belvès -32,2016-01-01,COM,24219,0,LABOUQUERIE,Labouquerie,Labouquerie,COMD,24219,0,LABOUQUERIE,Labouquerie,Labouquerie 32,2016-01-01,COM,24219,0,LABOUQUERIE,Labouquerie,Labouquerie,COM,24028,0,BEAUMONTOIS EN PERIGORD,Beaumontois en Périgord,Beaumontois en Périgord -32,2016-01-01,COM,24239,0,LIGUEUX,Ligueux,Ligueux,COM,24540,0,SORGES ET LIGUEUX EN PERIGORD,Sorges et Ligueux en Périgord,Sorges et Ligueux en Périgord +32,2016-01-01,COM,24219,0,LABOUQUERIE,Labouquerie,Labouquerie,COMD,24219,0,LABOUQUERIE,Labouquerie,Labouquerie 32,2016-01-01,COM,24239,0,LIGUEUX,Ligueux,Ligueux,COMD,24239,0,LIGUEUX,Ligueux,Ligueux +32,2016-01-01,COM,24239,0,LIGUEUX,Ligueux,Ligueux,COM,24540,0,SORGES ET LIGUEUX EN PERIGORD,Sorges et Ligueux en Périgord,Sorges et Ligueux en Périgord 32,2016-01-01,COM,24298,0,MOUZENS,Mouzens,Mouzens,COM,24142,0,COUX ET BIGAROQUE MOUZENS,Coux et Bigaroque-Mouzens,Coux et Bigaroque-Mouzens 32,2016-01-01,COM,24298,0,MOUZENS,Mouzens,Mouzens,COMD,24298,0,MOUZENS,Mouzens,Mouzens 32,2016-01-01,COM,24310,0,NOJALS ET CLOTTE,Nojals-et-Clotte,Nojals-et-Clotte,COM,24028,0,BEAUMONTOIS EN PERIGORD,Beaumontois en Périgord,Beaumontois en Périgord @@ -4032,95 +3863,95 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,24343,0,PUYMANGOU,Puymangou,Puymangou,COM,24376,0,SAINT AULAYE PUYMANGOU,Saint Aulaye-Puymangou,Saint Aulaye-Puymangou 32,2016-01-01,COM,24362,0,SAINTE ALVERE,Sainte-Alvère,Sainte-Alvère,COM,24362,0,SAINTE ALVERE SAINT LAURENT LES BATONS,Sainte-Alvère-Saint-Laurent Les Bâtons,Sainte-Alvère-Saint-Laurent Les Bâtons 32,2016-01-01,COM,24362,0,SAINTE ALVERE,Sainte-Alvère,Sainte-Alvère,COMD,24362,0,SAINTE ALVERE,Sainte-Alvère,Sainte-Alvère -32,2016-01-01,COM,24363,0,SAINT AMAND DE BELVES,Saint-Amand-de-Belvès,Saint-Amand-de-Belvès,COMD,24363,0,SAINT AMAND DE BELVES,Saint-Amand-de-Belvès,Saint-Amand-de-Belvès 32,2016-01-01,COM,24363,0,SAINT AMAND DE BELVES,Saint-Amand-de-Belvès,Saint-Amand-de-Belvès,COM,24035,0,PAYS DE BELVES,Pays de Belvès,Pays de Belvès +32,2016-01-01,COM,24363,0,SAINT AMAND DE BELVES,Saint-Amand-de-Belvès,Saint-Amand-de-Belvès,COMD,24363,0,SAINT AMAND DE BELVES,Saint-Amand-de-Belvès,Saint-Amand-de-Belvès 32,2016-01-01,COM,24376,0,SAINT AULAYE,Saint-Aulaye,Saint-Aulaye,COM,24376,0,SAINT AULAYE PUYMANGOU,Saint Aulaye-Puymangou,Saint Aulaye-Puymangou 32,2016-01-01,COM,24376,0,SAINT AULAYE,Saint-Aulaye,Saint-Aulaye,COMD,24376,0,SAINT AULAYE,Saint-Aulaye,Saint-Aulaye 32,2016-01-01,COM,24430,0,SAINT JULIEN DE BOURDEILLES,Saint-Julien-de-Bourdeilles,Saint-Julien-de-Bourdeilles,COM,24064,0,BRANTOME EN PERIGORD,Brantôme en Périgord,Brantôme en Périgord 32,2016-01-01,COM,24430,0,SAINT JULIEN DE BOURDEILLES,Saint-Julien-de-Bourdeilles,Saint-Julien-de-Bourdeilles,COMD,24430,0,SAINT JULIEN DE BOURDEILLES,Saint-Julien-de-Bourdeilles,Saint-Julien-de-Bourdeilles 32,2016-01-01,COM,24435,0,SAINT LAURENT DES BATONS,Saint-Laurent-des-Bâtons,Saint-Laurent-des-Bâtons,COM,24362,0,SAINTE ALVERE SAINT LAURENT LES BATONS,Sainte-Alvère-Saint-Laurent Les Bâtons,Sainte-Alvère-Saint-Laurent Les Bâtons 32,2016-01-01,COM,24435,0,SAINT LAURENT DES BATONS,Saint-Laurent-des-Bâtons,Saint-Laurent-des-Bâtons,COMD,24435,0,SAINT LAURENT DES BATONS,Saint-Laurent-des-Bâtons,Saint-Laurent-des-Bâtons -32,2016-01-01,COM,24439,0,SAINT LAURENT SUR MANOIRE,Saint-Laurent-sur-Manoire,Saint-Laurent-sur-Manoire,COMD,24439,0,SAINT LAURENT SUR MANOIRE,Saint-Laurent-sur-Manoire,Saint-Laurent-sur-Manoire 32,2016-01-01,COM,24439,0,SAINT LAURENT SUR MANOIRE,Saint-Laurent-sur-Manoire,Saint-Laurent-sur-Manoire,COM,24053,0,BOULAZAC ISLE MANOIRE,Boulazac Isle Manoire,Boulazac Isle Manoire +32,2016-01-01,COM,24439,0,SAINT LAURENT SUR MANOIRE,Saint-Laurent-sur-Manoire,Saint-Laurent-sur-Manoire,COMD,24439,0,SAINT LAURENT SUR MANOIRE,Saint-Laurent-sur-Manoire,Saint-Laurent-sur-Manoire 32,2016-01-01,COM,24497,0,SAINTE SABINE BORN,Sainte-Sabine-Born,Sainte-Sabine-Born,COM,24028,0,BEAUMONTOIS EN PERIGORD,Beaumontois en Périgord,Beaumontois en Périgord 32,2016-01-01,COM,24497,0,SAINTE SABINE BORN,Sainte-Sabine-Born,Sainte-Sabine-Born,COMD,24497,0,SAINTE SABINE BORN,Sainte-Sabine-Born,Sainte-Sabine-Born -32,2016-01-01,COM,24540,0,SORGES,Sorges,Sorges,COM,24540,0,SORGES ET LIGUEUX EN PERIGORD,Sorges et Ligueux en Périgord,Sorges et Ligueux en Périgord 32,2016-01-01,COM,24540,0,SORGES,Sorges,Sorges,COMD,24540,0,SORGES,Sorges,Sorges +32,2016-01-01,COM,24540,0,SORGES,Sorges,Sorges,COM,24540,0,SORGES ET LIGUEUX EN PERIGORD,Sorges et Ligueux en Périgord,Sorges et Ligueux en Périgord 32,2016-01-01,COM,25028,1,ATHOSE,Athose,Athose,COMD,25028,1,ATHOSE,Athose,Athose 32,2016-01-01,COM,25028,1,ATHOSE,Athose,Athose,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins -32,2016-01-01,COM,25076,0,BONNEVAUX LE PRIEURE,Bonnevaux-le-Prieuré,Bonnevaux-le-Prieuré,COM,25434,1,ORNANS,Ornans,Ornans 32,2016-01-01,COM,25076,0,BONNEVAUX LE PRIEURE,Bonnevaux-le-Prieuré,Bonnevaux-le-Prieuré,COMD,25076,0,BONNEVAUX LE PRIEURE,Bonnevaux-le-Prieuré,Bonnevaux-le-Prieuré +32,2016-01-01,COM,25076,0,BONNEVAUX LE PRIEURE,Bonnevaux-le-Prieuré,Bonnevaux-le-Prieuré,COM,25434,1,ORNANS,Ornans,Ornans 32,2016-01-01,COM,25128,0,CHASNANS,Chasnans,Chasnans,COMD,25128,0,CHASNANS,Chasnans,Chasnans 32,2016-01-01,COM,25128,0,CHASNANS,Chasnans,Chasnans,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins 32,2016-01-01,COM,25302,1,HAUTEPIERRE LE CHATELET,Hautepierre-le-Châtelet,Hautepierre-le-Châtelet,COMD,25302,1,HAUTEPIERRE LE CHATELET,Hautepierre-le-Châtelet,Hautepierre-le-Châtelet 32,2016-01-01,COM,25302,1,HAUTEPIERRE LE CHATELET,Hautepierre-le-Châtelet,Hautepierre-le-Châtelet,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins -32,2016-01-01,COM,25424,0,NODS,Nods,Nods,COMD,25424,0,NODS,Nods,Nods 32,2016-01-01,COM,25424,0,NODS,Nods,Nods,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins -32,2016-01-01,COM,25434,1,ORNANS,Ornans,Ornans,COM,25434,1,ORNANS,Ornans,Ornans +32,2016-01-01,COM,25424,0,NODS,Nods,Nods,COMD,25424,0,NODS,Nods,Nods 32,2016-01-01,COM,25434,1,ORNANS,Ornans,Ornans,COMD,25434,1,ORNANS,Ornans,Ornans -32,2016-01-01,COM,25438,1,OSSELLE,Osselle,Osselle,COMD,25438,1,OSSELLE,Osselle,Osselle +32,2016-01-01,COM,25434,1,ORNANS,Ornans,Ornans,COM,25434,1,ORNANS,Ornans,Ornans 32,2016-01-01,COM,25438,1,OSSELLE,Osselle,Osselle,COM,25438,1,OSSELLE ROUTELLE,Osselle-Routelle,Osselle-Routelle +32,2016-01-01,COM,25438,1,OSSELLE,Osselle,Osselle,COMD,25438,1,OSSELLE,Osselle,Osselle 32,2016-01-01,COM,25480,0,RANTECHAUX,Rantechaux,Rantechaux,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins 32,2016-01-01,COM,25480,0,RANTECHAUX,Rantechaux,Rantechaux,COMD,25480,0,RANTECHAUX,Rantechaux,Rantechaux 32,2016-01-01,COM,25509,0,ROUTELLE,Routelle,Routelle,COM,25438,1,OSSELLE ROUTELLE,Osselle-Routelle,Osselle-Routelle 32,2016-01-01,COM,25509,0,ROUTELLE,Routelle,Routelle,COMD,25509,0,ROUTELLE,Routelle,Routelle 32,2016-01-01,COM,25529,0,SANCEY LE GRAND,Sancey-le-Grand,Sancey-le-Grand,COM,25529,0,SANCEY,Sancey,Sancey 32,2016-01-01,COM,25530,0,SANCEY LE LONG,Sancey-le-Long,Sancey-le-Long,COM,25529,0,SANCEY,Sancey,Sancey -32,2016-01-01,COM,25585,0,VANCLANS,Vanclans,Vanclans,COMD,25585,0,VANCLANS,Vanclans,Vanclans 32,2016-01-01,COM,25585,0,VANCLANS,Vanclans,Vanclans,COM,25424,4,PREMIERS SAPINS,Premiers Sapins,Les Premiers Sapins -32,2016-01-01,COM,26001,1,AIX EN DIOIS,Aix-en-Diois,Aix-en-Diois,COMD,26001,1,AIX EN DIOIS,Aix-en-Diois,Aix-en-Diois +32,2016-01-01,COM,25585,0,VANCLANS,Vanclans,Vanclans,COMD,25585,0,VANCLANS,Vanclans,Vanclans 32,2016-01-01,COM,26001,1,AIX EN DIOIS,Aix-en-Diois,Aix-en-Diois,COM,26001,0,SOLAURE EN DIOIS,Solaure en Diois,Solaure en Diois +32,2016-01-01,COM,26001,1,AIX EN DIOIS,Aix-en-Diois,Aix-en-Diois,COMD,26001,1,AIX EN DIOIS,Aix-en-Diois,Aix-en-Diois 32,2016-01-01,COM,26179,0,MERCUROL,Mercurol,Mercurol,COM,26179,0,MERCUROL VEAUNES,Mercurol-Veaunes,Mercurol-Veaunes 32,2016-01-01,COM,26187,0,MOLIERES GLANDAZ,Molières-Glandaz,Molières-Glandaz,COM,26001,0,SOLAURE EN DIOIS,Solaure en Diois,Solaure en Diois 32,2016-01-01,COM,26187,0,MOLIERES GLANDAZ,Molières-Glandaz,Molières-Glandaz,COMD,26187,0,MOLIERES GLANDAZ,Molières-Glandaz,Molières-Glandaz -32,2016-01-01,COM,26366,0,VEAUNES,Veaunes,Veaunes,COMD,26366,0,VEAUNES,Veaunes,Veaunes 32,2016-01-01,COM,26366,0,VEAUNES,Veaunes,Veaunes,COM,26179,0,MERCUROL VEAUNES,Mercurol-Veaunes,Mercurol-Veaunes -32,2016-01-01,COM,27007,1,AJOU,Ajou,Ajou,COM,27049,0,MESNIL EN OUCHE,Mesnil-en-Ouche,Mesnil-en-Ouche +32,2016-01-01,COM,26366,0,VEAUNES,Veaunes,Veaunes,COMD,26366,0,VEAUNES,Veaunes,Veaunes 32,2016-01-01,COM,27007,1,AJOU,Ajou,Ajou,COMD,27007,1,AJOU,Ajou,Ajou +32,2016-01-01,COM,27007,1,AJOU,Ajou,Ajou,COM,27049,0,MESNIL EN OUCHE,Mesnil-en-Ouche,Mesnil-en-Ouche 32,2016-01-01,COM,27011,1,AMFREVILLE LA CAMPAGNE,Amfreville-la-Campagne,Amfreville-la-Campagne,COM,27011,1,AMFREVILLE SAINT AMAND,Amfreville-Saint-Amand,Amfreville-Saint-Amand 32,2016-01-01,COM,27011,1,AMFREVILLE LA CAMPAGNE,Amfreville-la-Campagne,Amfreville-la-Campagne,COMD,27011,1,AMFREVILLE LA CAMPAGNE,Amfreville-la-Campagne,Amfreville-la-Campagne 32,2016-01-01,COM,27022,1,AUBEVOYE,Aubevoye,Aubevoye,COMD,27022,1,AUBEVOYE,Aubevoye,Aubevoye 32,2016-01-01,COM,27022,1,AUBEVOYE,Aubevoye,Aubevoye,COM,27022,2,VAL D HAZEY,Val d'Hazey,Le Val d'Hazey -32,2016-01-01,COM,27024,2,RONCENAY AUTHENAY,Roncenay-Authenay,Le Roncenay-Authenay,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton 32,2016-01-01,COM,27024,2,RONCENAY AUTHENAY,Roncenay-Authenay,Le Roncenay-Authenay,COMD,27024,2,RONCENAY AUTHENAY,Roncenay-Authenay,Le Roncenay-Authenay +32,2016-01-01,COM,27024,2,RONCENAY AUTHENAY,Roncenay-Authenay,Le Roncenay-Authenay,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton 32,2016-01-01,COM,27032,1,AVRILLY,Avrilly,Avrilly,COMD,27032,1,AVRILLY,Avrilly,Avrilly 32,2016-01-01,COM,27032,1,AVRILLY,Avrilly,Avrilly,COM,27032,0,CHAMBOIS,Chambois,Chambois 32,2016-01-01,COM,27041,3,BARRE EN OUCHE,Barre-en-Ouche,La Barre-en-Ouche,COMD,27041,3,BARRE EN OUCHE,Barre-en-Ouche,La Barre-en-Ouche 32,2016-01-01,COM,27041,3,BARRE EN OUCHE,Barre-en-Ouche,La Barre-en-Ouche,COM,27049,0,MESNIL EN OUCHE,Mesnil-en-Ouche,Mesnil-en-Ouche -32,2016-01-01,COM,27049,0,BEAUMESNIL,Beaumesnil,Beaumesnil,COM,27049,0,MESNIL EN OUCHE,Mesnil-en-Ouche,Mesnil-en-Ouche 32,2016-01-01,COM,27049,0,BEAUMESNIL,Beaumesnil,Beaumesnil,COMD,27049,0,BEAUMESNIL,Beaumesnil,Beaumesnil -32,2016-01-01,COM,27060,0,BERTHENONVILLE,Berthenonville,Berthenonville,COM,27213,0,VEXIN SUR EPTE,Vexin-sur-Epte,Vexin-sur-Epte +32,2016-01-01,COM,27049,0,BEAUMESNIL,Beaumesnil,Beaumesnil,COM,27049,0,MESNIL EN OUCHE,Mesnil-en-Ouche,Mesnil-en-Ouche 32,2016-01-01,COM,27060,0,BERTHENONVILLE,Berthenonville,Berthenonville,COMD,27060,0,BERTHENONVILLE,Berthenonville,Berthenonville +32,2016-01-01,COM,27060,0,BERTHENONVILLE,Berthenonville,Berthenonville,COM,27213,0,VEXIN SUR EPTE,Vexin-sur-Epte,Vexin-sur-Epte 32,2016-01-01,COM,27084,0,BOSC BENARD COMMIN,Bosc-Bénard-Commin,Bosc-Bénard-Commin,COMD,27084,0,BOSC BENARD COMMIN,Bosc-Bénard-Commin,Bosc-Bénard-Commin 32,2016-01-01,COM,27084,0,BOSC BENARD COMMIN,Bosc-Bénard-Commin,Bosc-Bénard-Commin,COM,27105,0,GRAND BOURGTHEROULDE,Grand Bourgtheroulde,Grand Bourgtheroulde -32,2016-01-01,COM,27085,0,BOSC BENARD CRESCY,Bosc-Bénard-Crescy,Bosc-Bénard-Crescy,COMD,27085,0,BOSC BENARD CRESCY,Bosc-Bénard-Crescy,Bosc-Bénard-Crescy 32,2016-01-01,COM,27085,0,BOSC BENARD CRESCY,Bosc-Bénard-Crescy,Bosc-Bénard-Crescy,COM,27085,0,FLANCOURT CRESCY EN ROUMOIS,Flancourt-Crescy-en-Roumois,Flancourt-Crescy-en-Roumois -32,2016-01-01,COM,27088,0,BOSC RENOULT EN OUCHE,Bosc-Renoult-en-Ouche,Bosc-Renoult-en-Ouche,COMD,27088,0,BOSC RENOULT EN OUCHE,Bosc-Renoult-en-Ouche,Bosc-Renoult-en-Ouche +32,2016-01-01,COM,27085,0,BOSC BENARD CRESCY,Bosc-Bénard-Crescy,Bosc-Bénard-Crescy,COMD,27085,0,BOSC BENARD CRESCY,Bosc-Bénard-Crescy,Bosc-Bénard-Crescy 32,2016-01-01,COM,27088,0,BOSC RENOULT EN OUCHE,Bosc-Renoult-en-Ouche,Bosc-Renoult-en-Ouche,COM,27049,0,MESNIL EN OUCHE,Mesnil-en-Ouche,Mesnil-en-Ouche -32,2016-01-01,COM,27105,0,BOURGTHEROULDE INFREVILLE,Bourgtheroulde-Infreville,Bourgtheroulde-Infreville,COM,27105,0,GRAND BOURGTHEROULDE,Grand Bourgtheroulde,Grand Bourgtheroulde +32,2016-01-01,COM,27088,0,BOSC RENOULT EN OUCHE,Bosc-Renoult-en-Ouche,Bosc-Renoult-en-Ouche,COMD,27088,0,BOSC RENOULT EN OUCHE,Bosc-Renoult-en-Ouche,Bosc-Renoult-en-Ouche 32,2016-01-01,COM,27105,0,BOURGTHEROULDE INFREVILLE,Bourgtheroulde-Infreville,Bourgtheroulde-Infreville,COMD,27105,0,BOURGTHEROULDE INFREVILLE,Bourgtheroulde-Infreville,Bourgtheroulde-Infreville +32,2016-01-01,COM,27105,0,BOURGTHEROULDE INFREVILLE,Bourgtheroulde-Infreville,Bourgtheroulde-Infreville,COM,27105,0,GRAND BOURGTHEROULDE,Grand Bourgtheroulde,Grand Bourgtheroulde 32,2016-01-01,COM,27107,0,BOURNEVILLE,Bourneville,Bourneville,COMD,27107,0,BOURNEVILLE,Bourneville,Bourneville 32,2016-01-01,COM,27107,0,BOURNEVILLE,Bourneville,Bourneville,COM,27107,0,BOURNEVILLE SAINTE CROIX,Bourneville-Sainte-Croix,Bourneville-Sainte-Croix -32,2016-01-01,COM,27112,0,BRETEUIL,Breteuil,Breteuil,COMD,27112,0,BRETEUIL,Breteuil,Breteuil 32,2016-01-01,COM,27112,0,BRETEUIL,Breteuil,Breteuil,COM,27112,0,BRETEUIL,Breteuil,Breteuil -32,2016-01-01,COM,27121,0,BUS SAINT REMY,Bus-Saint-Rémy,Bus-Saint-Rémy,COM,27213,0,VEXIN SUR EPTE,Vexin-sur-Epte,Vexin-sur-Epte +32,2016-01-01,COM,27112,0,BRETEUIL,Breteuil,Breteuil,COMD,27112,0,BRETEUIL,Breteuil,Breteuil 32,2016-01-01,COM,27121,0,BUS SAINT REMY,Bus-Saint-Rémy,Bus-Saint-Rémy,COMD,27121,0,BUS SAINT REMY,Bus-Saint-Rémy,Bus-Saint-Rémy +32,2016-01-01,COM,27121,0,BUS SAINT REMY,Bus-Saint-Rémy,Bus-Saint-Rémy,COM,27213,0,VEXIN SUR EPTE,Vexin-sur-Epte,Vexin-sur-Epte 32,2016-01-01,COM,27122,0,CAHAIGNES,Cahaignes,Cahaignes,COMD,27122,0,CAHAIGNES,Cahaignes,Cahaignes 32,2016-01-01,COM,27122,0,CAHAIGNES,Cahaignes,Cahaignes,COM,27213,0,VEXIN SUR EPTE,Vexin-sur-Epte,Vexin-sur-Epte 32,2016-01-01,COM,27128,0,CANTIERS,Cantiers,Cantiers,COMD,27128,0,CANTIERS,Cantiers,Cantiers 32,2016-01-01,COM,27128,0,CANTIERS,Cantiers,Cantiers,COM,27213,0,VEXIN SUR EPTE,Vexin-sur-Epte,Vexin-sur-Epte -32,2016-01-01,COM,27145,0,CHANTELOUP,Chanteloup,Chanteloup,COM,27157,0,MARBOIS,Marbois,Marbois 32,2016-01-01,COM,27145,0,CHANTELOUP,Chanteloup,Chanteloup,COMD,27145,0,CHANTELOUP,Chanteloup,Chanteloup -32,2016-01-01,COM,27157,2,CHESNE,Chesne,Le Chesne,COM,27157,0,MARBOIS,Marbois,Marbois +32,2016-01-01,COM,27145,0,CHANTELOUP,Chanteloup,Chanteloup,COM,27157,0,MARBOIS,Marbois,Marbois 32,2016-01-01,COM,27157,2,CHESNE,Chesne,Le Chesne,COMD,27157,2,CHESNE,Chesne,Le Chesne +32,2016-01-01,COM,27157,2,CHESNE,Chesne,Le Chesne,COM,27157,0,MARBOIS,Marbois,Marbois 32,2016-01-01,COM,27159,0,CINTRAY,Cintray,Cintray,COM,27112,0,BRETEUIL,Breteuil,Breteuil 32,2016-01-01,COM,27159,0,CINTRAY,Cintray,Cintray,COMD,27159,0,CINTRAY,Cintray,Cintray 32,2016-01-01,COM,27160,0,CIVIERES,Civières,Civières,COMD,27160,0,CIVIERES,Civières,Civières 32,2016-01-01,COM,27160,0,CIVIERES,Civières,Civières,COM,27213,0,VEXIN SUR EPTE,Vexin-sur-Epte,Vexin-sur-Epte 32,2016-01-01,COM,27166,0,CONDE SUR ITON,Condé-sur-Iton,Condé-sur-Iton,COMD,27166,0,CONDE SUR ITON,Condé-sur-Iton,Condé-sur-Iton 32,2016-01-01,COM,27166,0,CONDE SUR ITON,Condé-sur-Iton,Condé-sur-Iton,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton -32,2016-01-01,COM,27172,0,CORNEUIL,Corneuil,Corneuil,COMD,27172,0,CORNEUIL,Corneuil,Corneuil 32,2016-01-01,COM,27172,0,CORNEUIL,Corneuil,Corneuil,COM,27032,0,CHAMBOIS,Chambois,Chambois +32,2016-01-01,COM,27172,0,CORNEUIL,Corneuil,Corneuil,COMD,27172,0,CORNEUIL,Corneuil,Corneuil 32,2016-01-01,COM,27191,3,CROIX SAINT LEUFROY,Croix-Saint-Leufroy,La Croix-Saint-Leufroy,COM,27191,0,CLEF VALLEE D EURE,Clef Vallée d'Eure,Clef Vallée d'Eure 32,2016-01-01,COM,27191,3,CROIX SAINT LEUFROY,Croix-Saint-Leufroy,La Croix-Saint-Leufroy,COMD,27191,3,CROIX SAINT LEUFROY,Croix-Saint-Leufroy,La Croix-Saint-Leufroy 32,2016-01-01,COM,27195,0,DAME MARIE,Dame-Marie,Dame-Marie,COMD,27195,0,DAME MARIE,Dame-Marie,Dame-Marie @@ -4131,36 +3962,36 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,27198,0,DAMVILLE,Damville,Damville,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton 32,2016-01-01,COM,27211,1,ECARDENVILLE SUR EURE,Écardenville-sur-Eure,Écardenville-sur-Eure,COM,27191,0,CLEF VALLEE D EURE,Clef Vallée d'Eure,Clef Vallée d'Eure 32,2016-01-01,COM,27211,1,ECARDENVILLE SUR EURE,Écardenville-sur-Eure,Écardenville-sur-Eure,COMD,27211,1,ECARDENVILLE SUR EURE,Écardenville-sur-Eure,Écardenville-sur-Eure -32,2016-01-01,COM,27213,1,ECOS,Écos,Écos,COM,27213,0,VEXIN SUR EPTE,Vexin-sur-Epte,Vexin-sur-Epte 32,2016-01-01,COM,27213,1,ECOS,Écos,Écos,COMD,27213,1,ECOS,Écos,Écos -32,2016-01-01,COM,27221,1,EPINAY,Épinay,Épinay,COMD,27221,1,EPINAY,Épinay,Épinay +32,2016-01-01,COM,27213,1,ECOS,Écos,Écos,COM,27213,0,VEXIN SUR EPTE,Vexin-sur-Epte,Vexin-sur-Epte 32,2016-01-01,COM,27221,1,EPINAY,Épinay,Épinay,COM,27049,0,MESNIL EN OUCHE,Mesnil-en-Ouche,Mesnil-en-Ouche +32,2016-01-01,COM,27221,1,EPINAY,Épinay,Épinay,COMD,27221,1,EPINAY,Épinay,Épinay 32,2016-01-01,COM,27223,1,EPREVILLE EN ROUMOIS,Épreville-en-Roumois,Épreville-en-Roumois,COM,27085,0,FLANCOURT CRESCY EN ROUMOIS,Flancourt-Crescy-en-Roumois,Flancourt-Crescy-en-Roumois 32,2016-01-01,COM,27223,1,EPREVILLE EN ROUMOIS,Épreville-en-Roumois,Épreville-en-Roumois,COMD,27223,1,EPREVILLE EN ROUMOIS,Épreville-en-Roumois,Épreville-en-Roumois -32,2016-01-01,COM,27225,4,ESSARTS,Essarts,Les Essarts,COMD,27225,4,ESSARTS,Essarts,Les Essarts 32,2016-01-01,COM,27225,4,ESSARTS,Essarts,Les Essarts,COM,27157,0,MARBOIS,Marbois,Marbois -32,2016-01-01,COM,27244,0,FLANCOURT CATELON,Flancourt-Catelon,Flancourt-Catelon,COMD,27244,0,FLANCOURT CATELON,Flancourt-Catelon,Flancourt-Catelon +32,2016-01-01,COM,27225,4,ESSARTS,Essarts,Les Essarts,COMD,27225,4,ESSARTS,Essarts,Les Essarts 32,2016-01-01,COM,27244,0,FLANCOURT CATELON,Flancourt-Catelon,Flancourt-Catelon,COM,27085,0,FLANCOURT CRESCY EN ROUMOIS,Flancourt-Crescy-en-Roumois,Flancourt-Crescy-en-Roumois +32,2016-01-01,COM,27244,0,FLANCOURT CATELON,Flancourt-Catelon,Flancourt-Catelon,COMD,27244,0,FLANCOURT CATELON,Flancourt-Catelon,Flancourt-Catelon 32,2016-01-01,COM,27250,0,FONTAINE HEUDEBOURG,Fontaine-Heudebourg,Fontaine-Heudebourg,COM,27191,0,CLEF VALLEE D EURE,Clef Vallée d'Eure,Clef Vallée d'Eure 32,2016-01-01,COM,27250,0,FONTAINE HEUDEBOURG,Fontaine-Heudebourg,Fontaine-Heudebourg,COMD,27250,0,FONTAINE HEUDEBOURG,Fontaine-Heudebourg,Fontaine-Heudebourg -32,2016-01-01,COM,27255,0,FONTENAY EN VEXIN,Fontenay-en-Vexin,Fontenay-en-Vexin,COMD,27255,0,FONTENAY EN VEXIN,Fontenay-en-Vexin,Fontenay-en-Vexin 32,2016-01-01,COM,27255,0,FONTENAY EN VEXIN,Fontenay-en-Vexin,Fontenay-en-Vexin,COM,27213,0,VEXIN SUR EPTE,Vexin-sur-Epte,Vexin-sur-Epte -32,2016-01-01,COM,27257,0,FORET LA FOLIE,Forêt-la-Folie,Forêt-la-Folie,COMD,27257,0,FORET LA FOLIE,Forêt-la-Folie,Forêt-la-Folie +32,2016-01-01,COM,27255,0,FONTENAY EN VEXIN,Fontenay-en-Vexin,Fontenay-en-Vexin,COMD,27255,0,FONTENAY EN VEXIN,Fontenay-en-Vexin,Fontenay-en-Vexin 32,2016-01-01,COM,27257,0,FORET LA FOLIE,Forêt-la-Folie,Forêt-la-Folie,COM,27213,0,VEXIN SUR EPTE,Vexin-sur-Epte,Vexin-sur-Epte +32,2016-01-01,COM,27257,0,FORET LA FOLIE,Forêt-la-Folie,Forêt-la-Folie,COMD,27257,0,FORET LA FOLIE,Forêt-la-Folie,Forêt-la-Folie 32,2016-01-01,COM,27262,0,FOURGES,Fourges,Fourges,COM,27213,0,VEXIN SUR EPTE,Vexin-sur-Epte,Vexin-sur-Epte 32,2016-01-01,COM,27262,0,FOURGES,Fourges,Fourges,COMD,27262,0,FOURGES,Fourges,Fourges -32,2016-01-01,COM,27264,0,FOURS EN VEXIN,Fours-en-Vexin,Fours-en-Vexin,COMD,27264,0,FOURS EN VEXIN,Fours-en-Vexin,Fours-en-Vexin 32,2016-01-01,COM,27264,0,FOURS EN VEXIN,Fours-en-Vexin,Fours-en-Vexin,COM,27213,0,VEXIN SUR EPTE,Vexin-sur-Epte,Vexin-sur-Epte +32,2016-01-01,COM,27264,0,FOURS EN VEXIN,Fours-en-Vexin,Fours-en-Vexin,COMD,27264,0,FOURS EN VEXIN,Fours-en-Vexin,Fours-en-Vexin 32,2016-01-01,COM,27277,0,GARENCIERES,Garencières,Garencières,COM,27277,3,BARONNIE,Baronnie,La Baronnie 32,2016-01-01,COM,27277,0,GARENCIERES,Garencières,Garencières,COMD,27277,0,GARENCIERES,Garencières,Garencières -32,2016-01-01,COM,27283,0,GISAY LA COUDRE,Gisay-la-Coudre,Gisay-la-Coudre,COMD,27283,0,GISAY LA COUDRE,Gisay-la-Coudre,Gisay-la-Coudre 32,2016-01-01,COM,27283,0,GISAY LA COUDRE,Gisay-la-Coudre,Gisay-la-Coudre,COM,27049,0,MESNIL EN OUCHE,Mesnil-en-Ouche,Mesnil-en-Ouche -32,2016-01-01,COM,27292,0,GOUTTIERES,Gouttières,Gouttières,COMD,27292,0,GOUTTIERES,Gouttières,Gouttières +32,2016-01-01,COM,27283,0,GISAY LA COUDRE,Gisay-la-Coudre,Gisay-la-Coudre,COMD,27283,0,GISAY LA COUDRE,Gisay-la-Coudre,Gisay-la-Coudre 32,2016-01-01,COM,27292,0,GOUTTIERES,Gouttières,Gouttières,COM,27049,0,MESNIL EN OUCHE,Mesnil-en-Ouche,Mesnil-en-Ouche +32,2016-01-01,COM,27292,0,GOUTTIERES,Gouttières,Gouttières,COMD,27292,0,GOUTTIERES,Gouttières,Gouttières 32,2016-01-01,COM,27293,0,GOUVILLE,Gouville,Gouville,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton 32,2016-01-01,COM,27293,0,GOUVILLE,Gouville,Gouville,COMD,27293,0,GOUVILLE,Gouville,Gouville -32,2016-01-01,COM,27296,0,GRANCHAIN,Granchain,Granchain,COMD,27296,0,GRANCHAIN,Granchain,Granchain 32,2016-01-01,COM,27296,0,GRANCHAIN,Granchain,Granchain,COM,27049,0,MESNIL EN OUCHE,Mesnil-en-Ouche,Mesnil-en-Ouche +32,2016-01-01,COM,27296,0,GRANCHAIN,Granchain,Granchain,COMD,27296,0,GRANCHAIN,Granchain,Granchain 32,2016-01-01,COM,27302,2,GROS THEIL,Gros-Theil,Le Gros-Theil,COM,27302,2,BOSC DU THEIL,Bosc du Theil,Le Bosc du Theil 32,2016-01-01,COM,27302,2,GROS THEIL,Gros-Theil,Le Gros-Theil,COMD,27302,2,GROS THEIL,Gros-Theil,Le Gros-Theil 32,2016-01-01,COM,27303,0,GUERNANVILLE,Guernanville,Guernanville,COMD,27303,0,GUERNANVILLE,Guernanville,Guernanville @@ -4173,22 +4004,22 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,27356,0,JONQUERETS DE LIVET,Jonquerets-de-Livet,Jonquerets-de-Livet,COMD,27356,0,JONQUERETS DE LIVET,Jonquerets-de-Livet,Jonquerets-de-Livet 32,2016-01-01,COM,27362,0,LANDEPEREUSE,Landepéreuse,Landepéreuse,COM,27049,0,MESNIL EN OUCHE,Mesnil-en-Ouche,Mesnil-en-Ouche 32,2016-01-01,COM,27362,0,LANDEPEREUSE,Landepéreuse,Landepéreuse,COMD,27362,0,LANDEPEREUSE,Landepéreuse,Landepéreuse -32,2016-01-01,COM,27387,0,MANTHELON,Manthelon,Manthelon,COMD,27387,0,MANTHELON,Manthelon,Manthelon 32,2016-01-01,COM,27387,0,MANTHELON,Manthelon,Manthelon,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton -32,2016-01-01,COM,27449,0,PANILLEUSE,Panilleuse,Panilleuse,COMD,27449,0,PANILLEUSE,Panilleuse,Panilleuse +32,2016-01-01,COM,27387,0,MANTHELON,Manthelon,Manthelon,COMD,27387,0,MANTHELON,Manthelon,Manthelon 32,2016-01-01,COM,27449,0,PANILLEUSE,Panilleuse,Panilleuse,COM,27213,0,VEXIN SUR EPTE,Vexin-sur-Epte,Vexin-sur-Epte +32,2016-01-01,COM,27449,0,PANILLEUSE,Panilleuse,Panilleuse,COMD,27449,0,PANILLEUSE,Panilleuse,Panilleuse 32,2016-01-01,COM,27484,0,QUESSIGNY,Quessigny,Quessigny,COM,27277,3,BARONNIE,Baronnie,La Baronnie 32,2016-01-01,COM,27484,0,QUESSIGNY,Quessigny,Quessigny,COMD,27484,0,QUESSIGNY,Quessigny,Quessigny -32,2016-01-01,COM,27499,3,ROUSSIERE,Roussière,La Roussière,COMD,27499,3,ROUSSIERE,Roussière,La Roussière 32,2016-01-01,COM,27499,3,ROUSSIERE,Roussière,La Roussière,COM,27049,0,MESNIL EN OUCHE,Mesnil-en-Ouche,Mesnil-en-Ouche +32,2016-01-01,COM,27499,3,ROUSSIERE,Roussière,La Roussière,COMD,27499,3,ROUSSIERE,Roussière,La Roussière 32,2016-01-01,COM,27503,2,SACQ,Sacq,Le Sacq,COM,27198,0,MESNILS SUR ITON,Mesnils-sur-Iton,Mesnils-sur-Iton 32,2016-01-01,COM,27503,2,SACQ,Sacq,Le Sacq,COMD,27503,2,SACQ,Sacq,Le Sacq 32,2016-01-01,COM,27506,0,SAINT AMAND DES HAUTES TERRES,Saint-Amand-des-Hautes-Terres,Saint-Amand-des-Hautes-Terres,COM,27011,1,AMFREVILLE SAINT AMAND,Amfreville-Saint-Amand,Amfreville-Saint-Amand 32,2016-01-01,COM,27506,0,SAINT AMAND DES HAUTES TERRES,Saint-Amand-des-Hautes-Terres,Saint-Amand-des-Hautes-Terres,COMD,27506,0,SAINT AMAND DES HAUTES TERRES,Saint-Amand-des-Hautes-Terres,Saint-Amand-des-Hautes-Terres -32,2016-01-01,COM,27513,0,SAINT AUBIN DES HAYES,Saint-Aubin-des-Hayes,Saint-Aubin-des-Hayes,COMD,27513,0,SAINT AUBIN DES HAYES,Saint-Aubin-des-Hayes,Saint-Aubin-des-Hayes 32,2016-01-01,COM,27513,0,SAINT AUBIN DES HAYES,Saint-Aubin-des-Hayes,Saint-Aubin-des-Hayes,COM,27049,0,MESNIL EN OUCHE,Mesnil-en-Ouche,Mesnil-en-Ouche -32,2016-01-01,COM,27515,0,SAINT AUBIN LE GUICHARD,Saint-Aubin-le-Guichard,Saint-Aubin-le-Guichard,COMD,27515,0,SAINT AUBIN LE GUICHARD,Saint-Aubin-le-Guichard,Saint-Aubin-le-Guichard +32,2016-01-01,COM,27513,0,SAINT AUBIN DES HAYES,Saint-Aubin-des-Hayes,Saint-Aubin-des-Hayes,COMD,27513,0,SAINT AUBIN DES HAYES,Saint-Aubin-des-Hayes,Saint-Aubin-des-Hayes 32,2016-01-01,COM,27515,0,SAINT AUBIN LE GUICHARD,Saint-Aubin-le-Guichard,Saint-Aubin-le-Guichard,COM,27049,0,MESNIL EN OUCHE,Mesnil-en-Ouche,Mesnil-en-Ouche +32,2016-01-01,COM,27515,0,SAINT AUBIN LE GUICHARD,Saint-Aubin-le-Guichard,Saint-Aubin-le-Guichard,COMD,27515,0,SAINT AUBIN LE GUICHARD,Saint-Aubin-le-Guichard,Saint-Aubin-le-Guichard 32,2016-01-01,COM,27519,0,SAINTE BARBE SUR GAILLON,Sainte-Barbe-sur-Gaillon,Sainte-Barbe-sur-Gaillon,COM,27022,2,VAL D HAZEY,Val d'Hazey,Le Val d'Hazey 32,2016-01-01,COM,27519,0,SAINTE BARBE SUR GAILLON,Sainte-Barbe-sur-Gaillon,Sainte-Barbe-sur-Gaillon,COMD,27519,0,SAINTE BARBE SUR GAILLON,Sainte-Barbe-sur-Gaillon,Sainte-Barbe-sur-Gaillon 32,2016-01-01,COM,27526,0,SAINTE CROIX SUR AIZIER,Sainte-Croix-sur-Aizier,Sainte-Croix-sur-Aizier,COM,27107,0,BOURNEVILLE SAINTE CROIX,Bourneville-Sainte-Croix,Bourneville-Sainte-Croix @@ -4201,22 +4032,22 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,27566,0,SAINTE MARGUERITE EN OUCHE,Sainte-Marguerite-en-Ouche,Sainte-Marguerite-en-Ouche,COMD,27566,0,SAINTE MARGUERITE EN OUCHE,Sainte-Marguerite-en-Ouche,Sainte-Marguerite-en-Ouche 32,2016-01-01,COM,27573,0,SAINT NICOLAS D ATTEZ,Saint-Nicolas-d'Attez,Saint-Nicolas-d'Attez,COMD,27573,0,SAINT NICOLAS D ATTEZ,Saint-Nicolas-d'Attez,Saint-Nicolas-d'Attez 32,2016-01-01,COM,27573,0,SAINT NICOLAS D ATTEZ,Saint-Nicolas-d'Attez,Saint-Nicolas-d'Attez,COM,27578,0,SAINTE MARIE D ATTEZ,Sainte-Marie-d'Attez,Sainte-Marie-d'Attez -32,2016-01-01,COM,27574,0,SAINT NICOLAS DU BOSC,Saint-Nicolas-du-Bosc,Saint-Nicolas-du-Bosc,COMD,27574,0,SAINT NICOLAS DU BOSC,Saint-Nicolas-du-Bosc,Saint-Nicolas-du-Bosc 32,2016-01-01,COM,27574,0,SAINT NICOLAS DU BOSC,Saint-Nicolas-du-Bosc,Saint-Nicolas-du-Bosc,COM,27302,2,BOSC DU THEIL,Bosc du Theil,Le Bosc du Theil -32,2016-01-01,COM,27578,0,SAINT OUEN D ATTEZ,Saint-Ouen-d'Attez,Saint-Ouen-d'Attez,COMD,27578,0,SAINT OUEN D ATTEZ,Saint-Ouen-d'Attez,Saint-Ouen-d'Attez +32,2016-01-01,COM,27574,0,SAINT NICOLAS DU BOSC,Saint-Nicolas-du-Bosc,Saint-Nicolas-du-Bosc,COMD,27574,0,SAINT NICOLAS DU BOSC,Saint-Nicolas-du-Bosc,Saint-Nicolas-du-Bosc 32,2016-01-01,COM,27578,0,SAINT OUEN D ATTEZ,Saint-Ouen-d'Attez,Saint-Ouen-d'Attez,COM,27578,0,SAINTE MARIE D ATTEZ,Sainte-Marie-d'Attez,Sainte-Marie-d'Attez -32,2016-01-01,COM,27596,0,SAINT PIERRE DU MESNIL,Saint-Pierre-du-Mesnil,Saint-Pierre-du-Mesnil,COMD,27596,0,SAINT PIERRE DU MESNIL,Saint-Pierre-du-Mesnil,Saint-Pierre-du-Mesnil +32,2016-01-01,COM,27578,0,SAINT OUEN D ATTEZ,Saint-Ouen-d'Attez,Saint-Ouen-d'Attez,COMD,27578,0,SAINT OUEN D ATTEZ,Saint-Ouen-d'Attez,Saint-Ouen-d'Attez 32,2016-01-01,COM,27596,0,SAINT PIERRE DU MESNIL,Saint-Pierre-du-Mesnil,Saint-Pierre-du-Mesnil,COM,27049,0,MESNIL EN OUCHE,Mesnil-en-Ouche,Mesnil-en-Ouche -32,2016-01-01,COM,27628,0,THEVRAY,Thevray,Thevray,COMD,27628,0,THEVRAY,Thevray,Thevray +32,2016-01-01,COM,27596,0,SAINT PIERRE DU MESNIL,Saint-Pierre-du-Mesnil,Saint-Pierre-du-Mesnil,COMD,27596,0,SAINT PIERRE DU MESNIL,Saint-Pierre-du-Mesnil,Saint-Pierre-du-Mesnil 32,2016-01-01,COM,27628,0,THEVRAY,Thevray,Thevray,COM,27049,0,MESNIL EN OUCHE,Mesnil-en-Ouche,Mesnil-en-Ouche -32,2016-01-01,COM,27634,0,THOMER LA SOGNE,Thomer-la-Sôgne,Thomer-la-Sôgne,COMD,27634,0,THOMER LA SOGNE,Thomer-la-Sôgne,Thomer-la-Sôgne +32,2016-01-01,COM,27628,0,THEVRAY,Thevray,Thevray,COMD,27628,0,THEVRAY,Thevray,Thevray 32,2016-01-01,COM,27634,0,THOMER LA SOGNE,Thomer-la-Sôgne,Thomer-la-Sôgne,COM,27032,0,CHAMBOIS,Chambois,Chambois -32,2016-01-01,COM,27636,2,THUIT ANGER,Thuit-Anger,Le Thuit-Anger,COM,27638,2,THUIT DE L OISON,Thuit de l'Oison,Le Thuit de l'Oison +32,2016-01-01,COM,27634,0,THOMER LA SOGNE,Thomer-la-Sôgne,Thomer-la-Sôgne,COMD,27634,0,THOMER LA SOGNE,Thomer-la-Sôgne,Thomer-la-Sôgne 32,2016-01-01,COM,27636,2,THUIT ANGER,Thuit-Anger,Le Thuit-Anger,COMD,27636,2,THUIT ANGER,Thuit-Anger,Le Thuit-Anger -32,2016-01-01,COM,27637,0,THUIT HEBERT,Thuit-Hébert,Thuit-Hébert,COMD,27637,0,THUIT HEBERT,Thuit-Hébert,Thuit-Hébert +32,2016-01-01,COM,27636,2,THUIT ANGER,Thuit-Anger,Le Thuit-Anger,COM,27638,2,THUIT DE L OISON,Thuit de l'Oison,Le Thuit de l'Oison 32,2016-01-01,COM,27637,0,THUIT HEBERT,Thuit-Hébert,Thuit-Hébert,COM,27105,0,GRAND BOURGTHEROULDE,Grand Bourgtheroulde,Grand Bourgtheroulde -32,2016-01-01,COM,27638,2,THUIT SIGNOL,Thuit-Signol,Le Thuit-Signol,COM,27638,2,THUIT DE L OISON,Thuit de l'Oison,Le Thuit de l'Oison +32,2016-01-01,COM,27637,0,THUIT HEBERT,Thuit-Hébert,Thuit-Hébert,COMD,27637,0,THUIT HEBERT,Thuit-Hébert,Thuit-Hébert 32,2016-01-01,COM,27638,2,THUIT SIGNOL,Thuit-Signol,Le Thuit-Signol,COMD,27638,2,THUIT SIGNOL,Thuit-Signol,Le Thuit-Signol +32,2016-01-01,COM,27638,2,THUIT SIGNOL,Thuit-Signol,Le Thuit-Signol,COM,27638,2,THUIT DE L OISON,Thuit de l'Oison,Le Thuit de l'Oison 32,2016-01-01,COM,27639,2,THUIT SIMER,Thuit-Simer,Le Thuit-Simer,COM,27638,2,THUIT DE L OISON,Thuit de l'Oison,Le Thuit de l'Oison 32,2016-01-01,COM,27639,2,THUIT SIMER,Thuit-Simer,Le Thuit-Simer,COMD,27639,2,THUIT SIMER,Thuit-Simer,Le Thuit-Simer 32,2016-01-01,COM,27653,0,TOURNY,Tourny,Tourny,COM,27213,0,VEXIN SUR EPTE,Vexin-sur-Epte,Vexin-sur-Epte @@ -4225,15 +4056,14 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,27687,0,VIEUX VILLEZ,Vieux-Villez,Vieux-Villez,COMD,27687,0,VIEUX VILLEZ,Vieux-Villez,Vieux-Villez 32,2016-01-01,COM,27688,0,VILLALET,Villalet,Villalet,COM,27693,0,SYLVAINS LES MOULINS,Sylvains-Lès-Moulins,Sylvains-Lès-Moulins 32,2016-01-01,COM,27693,0,SYLVAINS LES MOULINS,Sylvains-les-Moulins,Sylvains-les-Moulins,COM,27693,0,SYLVAINS LES MOULINS,Sylvains-Lès-Moulins,Sylvains-Lès-Moulins -32,2016-01-01,COM,28015,1,AUNEAU,Auneau,Auneau,COMD,28015,1,AUNEAU,Auneau,Auneau 32,2016-01-01,COM,28015,1,AUNEAU,Auneau,Auneau,COM,28015,1,AUNEAU BLEURY SAINT SYMPHORIEN,Auneau-Bleury-Saint-Symphorien,Auneau-Bleury-Saint-Symphorien +32,2016-01-01,COM,28015,1,AUNEAU,Auneau,Auneau,COMD,28015,1,AUNEAU,Auneau,Auneau 32,2016-01-01,COM,28020,0,BAIGNOLET,Baignolet,Baignolet,COMD,28020,0,BAIGNOLET,Baignolet,Baignolet 32,2016-01-01,COM,28020,0,BAIGNOLET,Baignolet,Baignolet,COM,28406,1,EOLE EN BEAUCE,Eole-en-Beauce,Eole-en-Beauce 32,2016-01-01,COM,28145,0,FAINS LA FOLIE,Fains-la-Folie,Fains-la-Folie,COMD,28145,0,FAINS LA FOLIE,Fains-la-Folie,Fains-la-Folie 32,2016-01-01,COM,28145,0,FAINS LA FOLIE,Fains-la-Folie,Fains-la-Folie,COM,28406,1,EOLE EN BEAUCE,Eole-en-Beauce,Eole-en-Beauce -34,2016-01-01,COM,28168,0,GALLARDON,Gallardon,Gallardon,COM,28168,0,GALLARDON,Gallardon,Gallardon -32,2016-01-01,COM,28179,0,GERMIGNONVILLE,Germignonville,Germignonville,COM,28406,1,EOLE EN BEAUCE,Eole-en-Beauce,Eole-en-Beauce 32,2016-01-01,COM,28179,0,GERMIGNONVILLE,Germignonville,Germignonville,COMD,28179,0,GERMIGNONVILLE,Germignonville,Germignonville +32,2016-01-01,COM,28179,0,GERMIGNONVILLE,Germignonville,Germignonville,COM,28406,1,EOLE EN BEAUCE,Eole-en-Beauce,Eole-en-Beauce 32,2016-01-01,COM,28183,0,GOMMERVILLE,Gommerville,Gommerville,COM,28183,0,GOMMERVILLE,Gommerville,Gommerville 32,2016-01-01,COM,28254,0,MITTAINVILLIERS,Mittainvilliers,Mittainvilliers,COM,28254,0,MITTAINVILLIERS VERIGNY,Mittainvilliers-Vérigny,Mittainvilliers-Vérigny 32,2016-01-01,COM,28258,0,MONTAINVILLE,Montainville,Montainville,COMD,28258,0,MONTAINVILLE,Montainville,Montainville @@ -4242,22 +4072,22 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,28288,1,ORLU,Orlu,Orlu,COM,28183,0,GOMMERVILLE,Gommerville,Gommerville 32,2016-01-01,COM,28288,1,ORLU,Orlu,Orlu,COMD,28288,1,ORLU,Orlu,Orlu 32,2016-01-01,COM,28297,0,PEZY,Pézy,Pézy,COM,28383,0,THEUVILLE,Theuville,Theuville -32,2016-01-01,COM,28320,0,ROUVRAY SAINT FLORENTIN,Rouvray-Saint-Florentin,Rouvray-Saint-Florentin,COM,28422,4,VILLAGES VOVEENS,Villages Vovéens,Les Villages Vovéens 32,2016-01-01,COM,28320,0,ROUVRAY SAINT FLORENTIN,Rouvray-Saint-Florentin,Rouvray-Saint-Florentin,COMD,28320,0,ROUVRAY SAINT FLORENTIN,Rouvray-Saint-Florentin,Rouvray-Saint-Florentin -32,2016-01-01,COM,28361,0,BLEURY SAINT SYMPHORIEN,Bleury-Saint-Symphorien,Bleury-Saint-Symphorien,COMD,28361,0,BLEURY SAINT SYMPHORIEN,Bleury-Saint-Symphorien,Bleury-Saint-Symphorien +32,2016-01-01,COM,28320,0,ROUVRAY SAINT FLORENTIN,Rouvray-Saint-Florentin,Rouvray-Saint-Florentin,COM,28422,4,VILLAGES VOVEENS,Villages Vovéens,Les Villages Vovéens 32,2016-01-01,COM,28361,0,BLEURY SAINT SYMPHORIEN,Bleury-Saint-Symphorien,Bleury-Saint-Symphorien,COM,28015,1,AUNEAU BLEURY SAINT SYMPHORIEN,Auneau-Bleury-Saint-Symphorien,Auneau-Bleury-Saint-Symphorien +32,2016-01-01,COM,28361,0,BLEURY SAINT SYMPHORIEN,Bleury-Saint-Symphorien,Bleury-Saint-Symphorien,COMD,28361,0,BLEURY SAINT SYMPHORIEN,Bleury-Saint-Symphorien,Bleury-Saint-Symphorien 32,2016-01-01,COM,28383,0,THEUVILLE,Theuville,Theuville,COM,28383,0,THEUVILLE,Theuville,Theuville 32,2016-01-01,COM,28402,0,VERIGNY,Vérigny,Vérigny,COM,28254,0,MITTAINVILLIERS VERIGNY,Mittainvilliers-Vérigny,Mittainvilliers-Vérigny -32,2016-01-01,COM,28406,0,VIABON,Viabon,Viabon,COM,28406,1,EOLE EN BEAUCE,Eole-en-Beauce,Eole-en-Beauce 32,2016-01-01,COM,28406,0,VIABON,Viabon,Viabon,COMD,28406,0,VIABON,Viabon,Viabon -32,2016-01-01,COM,28416,0,VILLENEUVE SAINT NICOLAS,Villeneuve-Saint-Nicolas,Villeneuve-Saint-Nicolas,COM,28422,4,VILLAGES VOVEENS,Villages Vovéens,Les Villages Vovéens +32,2016-01-01,COM,28406,0,VIABON,Viabon,Viabon,COM,28406,1,EOLE EN BEAUCE,Eole-en-Beauce,Eole-en-Beauce 32,2016-01-01,COM,28416,0,VILLENEUVE SAINT NICOLAS,Villeneuve-Saint-Nicolas,Villeneuve-Saint-Nicolas,COMD,28416,0,VILLENEUVE SAINT NICOLAS,Villeneuve-Saint-Nicolas,Villeneuve-Saint-Nicolas +32,2016-01-01,COM,28416,0,VILLENEUVE SAINT NICOLAS,Villeneuve-Saint-Nicolas,Villeneuve-Saint-Nicolas,COM,28422,4,VILLAGES VOVEENS,Villages Vovéens,Les Villages Vovéens 32,2016-01-01,COM,28422,0,VOVES,Voves,Voves,COMD,28422,0,VOVES,Voves,Voves 32,2016-01-01,COM,28422,0,VOVES,Voves,Voves,COM,28422,4,VILLAGES VOVEENS,Villages Vovéens,Les Villages Vovéens -32,2016-01-01,COM,29003,1,AUDIERNE,Audierne,Audierne,COMD,29003,1,AUDIERNE,Audierne,Audierne 32,2016-01-01,COM,29003,1,AUDIERNE,Audierne,Audierne,COM,29003,1,AUDIERNE,Audierne,Audierne -32,2016-01-01,COM,29052,1,ESQUIBIEN,Esquibien,Esquibien,COMD,29052,1,ESQUIBIEN,Esquibien,Esquibien +32,2016-01-01,COM,29003,1,AUDIERNE,Audierne,Audierne,COMD,29003,1,AUDIERNE,Audierne,Audierne 32,2016-01-01,COM,29052,1,ESQUIBIEN,Esquibien,Esquibien,COM,29003,1,AUDIERNE,Audierne,Audierne +32,2016-01-01,COM,29052,1,ESQUIBIEN,Esquibien,Esquibien,COMD,29052,1,ESQUIBIEN,Esquibien,Esquibien 32,2016-01-01,COM,29127,0,LOC EGUINER SAINT THEGONNEC,Loc-Eguiner-Saint-Thégonnec,Loc-Eguiner-Saint-Thégonnec,COMD,29127,0,LOC EGUINER SAINT THEGONNEC,Loc-Eguiner-Saint-Thégonnec,Loc-Eguiner-Saint-Thégonnec 32,2016-01-01,COM,29127,0,LOC EGUINER SAINT THEGONNEC,Loc-Eguiner-Saint-Thégonnec,Loc-Eguiner-Saint-Thégonnec,COM,29266,0,SAINT THEGONNEC LOC EGUINER,Saint-Thégonnec Loc-Eguiner,Saint-Thégonnec Loc-Eguiner 32,2016-01-01,COM,29266,0,SAINT THEGONNEC,Saint-Thégonnec,Saint-Thégonnec,COM,29266,0,SAINT THEGONNEC LOC EGUINER,Saint-Thégonnec Loc-Eguiner,Saint-Thégonnec Loc-Eguiner @@ -4267,16 +4097,16 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,32168,0,LABARRERE,Labarrère,Labarrère,COMD,32168,0,LABARRERE,Labarrère,Labarrère 32,2016-01-01,COM,33018,1,AUBIE ET ESPESSAS,Aubie-et-Espessas,Aubie-et-Espessas,COMD,33018,1,AUBIE ET ESPESSAS,Aubie-et-Espessas,Aubie-et-Espessas 32,2016-01-01,COM,33018,1,AUBIE ET ESPESSAS,Aubie-et-Espessas,Aubie-et-Espessas,COM,33018,0,VAL DE VIRVEE,Val de Virvée,Val de Virvée -32,2016-01-01,COM,33371,0,SAINT ANTOINE,Saint-Antoine,Saint-Antoine,COMD,33371,0,SAINT ANTOINE,Saint-Antoine,Saint-Antoine 32,2016-01-01,COM,33371,0,SAINT ANTOINE,Saint-Antoine,Saint-Antoine,COM,33018,0,VAL DE VIRVEE,Val de Virvée,Val de Virvée +32,2016-01-01,COM,33371,0,SAINT ANTOINE,Saint-Antoine,Saint-Antoine,COMD,33371,0,SAINT ANTOINE,Saint-Antoine,Saint-Antoine 32,2016-01-01,COM,33495,0,SALIGNAC,Salignac,Salignac,COM,33018,0,VAL DE VIRVEE,Val de Virvée,Val de Virvée 32,2016-01-01,COM,33495,0,SALIGNAC,Salignac,Salignac,COMD,33495,0,SALIGNAC,Salignac,Salignac -32,2016-01-01,COM,35060,3,CHAPELLE DU LOU,Chapelle-du-Lou,La Chapelle-du-Lou,COMD,35060,3,CHAPELLE DU LOU,Chapelle-du-Lou,La Chapelle-du-Lou 32,2016-01-01,COM,35060,3,CHAPELLE DU LOU,Chapelle-du-Lou,La Chapelle-du-Lou,COM,35060,3,CHAPELLE DU LOU DU LAC,Chapelle du Lou du Lac,La Chapelle du Lou du Lac +32,2016-01-01,COM,35060,3,CHAPELLE DU LOU,Chapelle-du-Lou,La Chapelle-du-Lou,COMD,35060,3,CHAPELLE DU LOU,Chapelle-du-Lou,La Chapelle-du-Lou 32,2016-01-01,COM,35129,0,GUIPRY,Guipry,Guipry,COMD,35129,0,GUIPRY,Guipry,Guipry 32,2016-01-01,COM,35129,0,GUIPRY,Guipry,Guipry,COM,35176,0,GUIPRY MESSAC,Guipry-Messac,Guipry-Messac -32,2016-01-01,COM,35158,2,LOU DU LAC,Lou-du-Lac,Le Lou-du-Lac,COMD,35158,2,LOU DU LAC,Lou-du-Lac,Le Lou-du-Lac 32,2016-01-01,COM,35158,2,LOU DU LAC,Lou-du-Lac,Le Lou-du-Lac,COM,35060,3,CHAPELLE DU LOU DU LAC,Chapelle du Lou du Lac,La Chapelle du Lou du Lac +32,2016-01-01,COM,35158,2,LOU DU LAC,Lou-du-Lac,Le Lou-du-Lac,COMD,35158,2,LOU DU LAC,Lou-du-Lac,Le Lou-du-Lac 32,2016-01-01,COM,35176,0,MESSAC,Messac,Messac,COM,35176,0,GUIPRY MESSAC,Guipry-Messac,Guipry-Messac 32,2016-01-01,COM,35176,0,MESSAC,Messac,Messac,COMD,35176,0,MESSAC,Messac,Messac 32,2016-01-01,COM,36093,0,LEVROUX,Levroux,Levroux,COMD,36093,0,LEVROUX,Levroux,Levroux @@ -4285,19 +4115,19 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,36151,0,PARPECAY,Parpeçay,Parpeçay,COM,36229,0,VAL FOUZON,Val-Fouzon,Val-Fouzon 32,2016-01-01,COM,36183,0,SAINTE CECILE,Sainte-Cécile,Sainte-Cécile,COMD,36183,0,SAINTE CECILE,Sainte-Cécile,Sainte-Cécile 32,2016-01-01,COM,36183,0,SAINTE CECILE,Sainte-Cécile,Sainte-Cécile,COM,36229,0,VAL FOUZON,Val-Fouzon,Val-Fouzon -32,2016-01-01,COM,36201,0,SAINT MARTIN DE LAMPS,Saint-Martin-de-Lamps,Saint-Martin-de-Lamps,COMD,36201,0,SAINT MARTIN DE LAMPS,Saint-Martin-de-Lamps,Saint-Martin-de-Lamps 32,2016-01-01,COM,36201,0,SAINT MARTIN DE LAMPS,Saint-Martin-de-Lamps,Saint-Martin-de-Lamps,COM,36093,0,LEVROUX,Levroux,Levroux +32,2016-01-01,COM,36201,0,SAINT MARTIN DE LAMPS,Saint-Martin-de-Lamps,Saint-Martin-de-Lamps,COMD,36201,0,SAINT MARTIN DE LAMPS,Saint-Martin-de-Lamps,Saint-Martin-de-Lamps 32,2016-01-01,COM,36202,0,SAINT MAUR,Saint-Maur,Saint-Maur,COM,36202,0,SAINT MAUR,Saint-Maur,Saint-Maur -32,2016-01-01,COM,36229,0,VARENNES SUR FOUZON,Varennes-sur-Fouzon,Varennes-sur-Fouzon,COM,36229,0,VAL FOUZON,Val-Fouzon,Val-Fouzon 32,2016-01-01,COM,36229,0,VARENNES SUR FOUZON,Varennes-sur-Fouzon,Varennes-sur-Fouzon,COMD,36229,0,VARENNES SUR FOUZON,Varennes-sur-Fouzon,Varennes-sur-Fouzon -32,2016-01-01,COM,36245,0,VILLERS LES ORMES,Villers-les-Ormes,Villers-les-Ormes,COMD,36245,0,VILLERS LES ORMES,Villers-les-Ormes,Villers-les-Ormes +32,2016-01-01,COM,36229,0,VARENNES SUR FOUZON,Varennes-sur-Fouzon,Varennes-sur-Fouzon,COM,36229,0,VAL FOUZON,Val-Fouzon,Val-Fouzon 32,2016-01-01,COM,36245,0,VILLERS LES ORMES,Villers-les-Ormes,Villers-les-Ormes,COM,36202,0,SAINT MAUR,Saint-Maur,Saint-Maur -32,2016-01-01,COM,38001,4,ABRETS,Abrets,Les Abrets,COM,38001,4,ABRETS EN DAUPHINE,Abrets en Dauphiné,Les Abrets en Dauphiné +32,2016-01-01,COM,36245,0,VILLERS LES ORMES,Villers-les-Ormes,Villers-les-Ormes,COMD,36245,0,VILLERS LES ORMES,Villers-les-Ormes,Villers-les-Ormes 32,2016-01-01,COM,38001,4,ABRETS,Abrets,Les Abrets,COMD,38001,4,ABRETS,Abrets,Les Abrets -32,2016-01-01,COM,38021,1,AUTRANS,Autrans,Autrans,COM,38225,1,AUTRANS MEAUDRE EN VERCORS,Autrans-Méaudre en Vercors,Autrans-Méaudre en Vercors +32,2016-01-01,COM,38001,4,ABRETS,Abrets,Les Abrets,COM,38001,4,ABRETS EN DAUPHINE,Abrets en Dauphiné,Les Abrets en Dauphiné 32,2016-01-01,COM,38021,1,AUTRANS,Autrans,Autrans,COMD,38021,1,AUTRANS,Autrans,Autrans -32,2016-01-01,COM,38022,4,AVENIERES,Avenières,Les Avenières,COMD,38022,4,AVENIERES,Avenières,Les Avenières +32,2016-01-01,COM,38021,1,AUTRANS,Autrans,Autrans,COM,38225,1,AUTRANS MEAUDRE EN VERCORS,Autrans-Méaudre en Vercors,Autrans-Méaudre en Vercors 32,2016-01-01,COM,38022,4,AVENIERES,Avenières,Les Avenières,COM,38022,4,AVENIERES VEYRINS THUELLIN,Avenières Veyrins-Thuellin,Les Avenières Veyrins-Thuellin +32,2016-01-01,COM,38022,4,AVENIERES,Avenières,Les Avenières,COMD,38022,4,AVENIERES,Avenières,Les Avenières 32,2016-01-01,COM,38028,3,BATIE DIVISIN,Bâtie-Divisin,La Bâtie-Divisin,COM,38001,4,ABRETS EN DAUPHINE,Abrets en Dauphiné,Les Abrets en Dauphiné 32,2016-01-01,COM,38028,3,BATIE DIVISIN,Bâtie-Divisin,La Bâtie-Divisin,COMD,38028,3,BATIE DIVISIN,Bâtie-Divisin,La Bâtie-Divisin 32,2016-01-01,COM,38165,0,FITILIEU,Fitilieu,Fitilieu,COM,38001,4,ABRETS EN DAUPHINE,Abrets en Dauphiné,Les Abrets en Dauphiné @@ -4315,14 +4145,14 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,39130,0,CHAUX DES PRES,Chaux-des-Prés,Chaux-des-Prés,COM,39130,0,NANCHEZ,Nanchez,Nanchez 32,2016-01-01,COM,39161,0,COMMUNAILLES EN MONTAGNE,Communailles-en-Montagne,Communailles-en-Montagne,COMD,39161,0,COMMUNAILLES EN MONTAGNE,Communailles-en-Montagne,Communailles-en-Montagne 32,2016-01-01,COM,39161,0,COMMUNAILLES EN MONTAGNE,Communailles-en-Montagne,Communailles-en-Montagne,COM,39331,0,MIGNOVILLARD,Mignovillard,Mignovillard -32,2016-01-01,COM,39177,0,CRANCOT,Crançot,Crançot,COMD,39177,0,CRANCOT,Crançot,Crançot 32,2016-01-01,COM,39177,0,CRANCOT,Crançot,Crançot,COM,39177,0,HAUTEROCHE,Hauteroche,Hauteroche +32,2016-01-01,COM,39177,0,CRANCOT,Crançot,Crançot,COMD,39177,0,CRANCOT,Crançot,Crançot 32,2016-01-01,COM,39209,0,VAL D EPY,Val d'Épy,Val d'Épy,COMD,39209,0,VAL D EPY,Val d'Épy,Val d'Épy 32,2016-01-01,COM,39209,0,VAL D EPY,Val d'Épy,Val d'Épy,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy 32,2016-01-01,COM,39213,1,ESSERVAL COMBE,Esserval-Combe,Esserval-Combe,COMD,39213,1,ESSERVAL COMBE,Esserval-Combe,Esserval-Combe 32,2016-01-01,COM,39213,1,ESSERVAL COMBE,Esserval-Combe,Esserval-Combe,COM,39329,0,MIEGES,Mièges,Mièges -32,2016-01-01,COM,39215,1,ESSIA,Essia,Essia,COMD,39215,1,ESSIA,Essia,Essia 32,2016-01-01,COM,39215,1,ESSIA,Essia,Essia,COM,39021,3,CHAILLEUSE,Chailleuse,La Chailleuse +32,2016-01-01,COM,39215,1,ESSIA,Essia,Essia,COMD,39215,1,ESSIA,Essia,Essia 32,2016-01-01,COM,39226,0,FLORENTIA,Florentia,Florentia,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy 32,2016-01-01,COM,39226,0,FLORENTIA,Florentia,Florentia,COMD,39226,0,FLORENTIA,Florentia,Florentia 32,2016-01-01,COM,39260,0,GRANGES SUR BAUME,Granges-sur-Baume,Granges-sur-Baume,COM,39177,0,HAUTEROCHE,Hauteroche,Hauteroche @@ -4335,24 +4165,24 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,39331,0,MIGNOVILLARD,Mignovillard,Mignovillard,COM,39331,0,MIGNOVILLARD,Mignovillard,Mignovillard 32,2016-01-01,COM,39332,0,MIREBEL,Mirebel,Mirebel,COM,39177,0,HAUTEROCHE,Hauteroche,Hauteroche 32,2016-01-01,COM,39332,0,MIREBEL,Mirebel,Mirebel,COMD,39332,0,MIREBEL,Mirebel,Mirebel -32,2016-01-01,COM,39340,0,MOLPRE,Molpré,Molpré,COMD,39340,0,MOLPRE,Molpré,Molpré 32,2016-01-01,COM,39340,0,MOLPRE,Molpré,Molpré,COM,39329,0,MIEGES,Mièges,Mièges -32,2016-01-01,COM,39368,0,MOREZ,Morez,Morez,COM,39368,0,HAUTS DE BIENNE,Hauts de Bienne,Hauts de Bienne +32,2016-01-01,COM,39340,0,MOLPRE,Molpré,Molpré,COMD,39340,0,MOLPRE,Molpré,Molpré 32,2016-01-01,COM,39368,0,MOREZ,Morez,Morez,COMD,39368,0,MOREZ,Morez,Morez -32,2016-01-01,COM,39371,3,MOUILLE,Mouille,La Mouille,COMD,39371,3,MOUILLE,Mouille,La Mouille +32,2016-01-01,COM,39368,0,MOREZ,Morez,Morez,COM,39368,0,HAUTS DE BIENNE,Hauts de Bienne,Hauts de Bienne 32,2016-01-01,COM,39371,3,MOUILLE,Mouille,La Mouille,COM,39368,0,HAUTS DE BIENNE,Hauts de Bienne,Hauts de Bienne -32,2016-01-01,COM,39382,0,NANTEY,Nantey,Nantey,COMD,39382,0,NANTEY,Nantey,Nantey +32,2016-01-01,COM,39371,3,MOUILLE,Mouille,La Mouille,COMD,39371,3,MOUILLE,Mouille,La Mouille 32,2016-01-01,COM,39382,0,NANTEY,Nantey,Nantey,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy -32,2016-01-01,COM,39438,0,PONTHOUX,Ponthoux,Ponthoux,COMD,39438,0,PONTHOUX,Ponthoux,Ponthoux +32,2016-01-01,COM,39382,0,NANTEY,Nantey,Nantey,COMD,39382,0,NANTEY,Nantey,Nantey 32,2016-01-01,COM,39438,0,PONTHOUX,Ponthoux,Ponthoux,COM,39286,0,LAVANS LES SAINT CLAUDE,Lavans-lès-Saint-Claude,Lavans-lès-Saint-Claude +32,2016-01-01,COM,39438,0,PONTHOUX,Ponthoux,Ponthoux,COMD,39438,0,PONTHOUX,Ponthoux,Ponthoux 32,2016-01-01,COM,39442,0,PRENOVEL,Prénovel,Prénovel,COM,39130,0,NANCHEZ,Nanchez,Nanchez 32,2016-01-01,COM,39442,0,PRENOVEL,Prénovel,Prénovel,COMD,39442,0,PRENOVEL,Prénovel,Prénovel 32,2016-01-01,COM,39482,0,SAINT GERMAIN LES ARLAY,Saint-Germain-lès-Arlay,Saint-Germain-lès-Arlay,COM,39017,1,ARLAY,Arlay,Arlay 32,2016-01-01,COM,39482,0,SAINT GERMAIN LES ARLAY,Saint-Germain-lès-Arlay,Saint-Germain-lès-Arlay,COMD,39482,0,SAINT GERMAIN LES ARLAY,Saint-Germain-lès-Arlay,Saint-Germain-lès-Arlay 32,2016-01-01,COM,39488,0,SAINT LAURENT LA ROCHE,Saint-Laurent-la-Roche,Saint-Laurent-la-Roche,COM,39021,3,CHAILLEUSE,Chailleuse,La Chailleuse 32,2016-01-01,COM,39488,0,SAINT LAURENT LA ROCHE,Saint-Laurent-la-Roche,Saint-Laurent-la-Roche,COMD,39488,0,SAINT LAURENT LA ROCHE,Saint-Laurent-la-Roche,Saint-Laurent-la-Roche -32,2016-01-01,COM,39509,0,SENAUD,Senaud,Senaud,COMD,39509,0,SENAUD,Senaud,Senaud 32,2016-01-01,COM,39509,0,SENAUD,Senaud,Senaud,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy +32,2016-01-01,COM,39509,0,SENAUD,Senaud,Senaud,COMD,39509,0,SENAUD,Senaud,Senaud 32,2016-01-01,COM,39544,0,VARESSIA,Varessia,Varessia,COM,39021,3,CHAILLEUSE,Chailleuse,La Chailleuse 32,2016-01-01,COM,39544,0,VARESSIA,Varessia,Varessia,COMD,39544,0,VARESSIA,Varessia,Varessia 32,2016-01-01,COM,41023,0,BOURRE,Bourré,Bourré,COMD,41023,0,BOURRE,Bourré,Bourré @@ -4371,12 +4201,12 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,41173,1,OUZOUER LE MARCHE,Ouzouer-le-Marché,Ouzouer-le-Marché,COMD,41173,1,OUZOUER LE MARCHE,Ouzouer-le-Marché,Ouzouer-le-Marché 32,2016-01-01,COM,41183,0,PRENOUVELLON,Prénouvellon,Prénouvellon,COM,41173,0,BEAUCE LA ROMAINE,Beauce la Romaine,Beauce la Romaine 32,2016-01-01,COM,41183,0,PRENOUVELLON,Prénouvellon,Prénouvellon,COMD,41183,0,PRENOUVELLON,Prénouvellon,Prénouvellon -32,2016-01-01,COM,41244,0,SEMERVILLE,Semerville,Semerville,COMD,41244,0,SEMERVILLE,Semerville,Semerville 32,2016-01-01,COM,41244,0,SEMERVILLE,Semerville,Semerville,COM,41173,0,BEAUCE LA ROMAINE,Beauce la Romaine,Beauce la Romaine +32,2016-01-01,COM,41244,0,SEMERVILLE,Semerville,Semerville,COMD,41244,0,SEMERVILLE,Semerville,Semerville 32,2016-01-01,COM,41264,0,TRIPLEVILLE,Tripleville,Tripleville,COM,41173,0,BEAUCE LA ROMAINE,Beauce la Romaine,Beauce la Romaine 32,2016-01-01,COM,41264,0,TRIPLEVILLE,Tripleville,Tripleville,COMD,41264,0,TRIPLEVILLE,Tripleville,Tripleville -32,2016-01-01,COM,41270,0,VERDES,Verdes,Verdes,COMD,41270,0,VERDES,Verdes,Verdes 32,2016-01-01,COM,41270,0,VERDES,Verdes,Verdes,COM,41173,0,BEAUCE LA ROMAINE,Beauce la Romaine,Beauce la Romaine +32,2016-01-01,COM,41270,0,VERDES,Verdes,Verdes,COMD,41270,0,VERDES,Verdes,Verdes 32,2016-01-01,COM,42039,0,CHALMAZEL,Chalmazel,Chalmazel,COMD,42039,0,CHALMAZEL,Chalmazel,Chalmazel 32,2016-01-01,COM,42039,0,CHALMAZEL,Chalmazel,Chalmazel,COM,42039,0,CHALMAZEL JEANSAGNIERE,Chalmazel-Jeansagnière,Chalmazel-Jeansagnière 32,2016-01-01,COM,42114,0,JEANSAGNIERE,Jeansagnière,Jeansagnière,COM,42039,0,CHALMAZEL JEANSAGNIERE,Chalmazel-Jeansagnière,Chalmazel-Jeansagnière @@ -4386,88 +4216,88 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,43245,0,THORAS,Thoras,Thoras,COM,43245,0,THORAS,Thoras,Thoras 32,2016-01-01,COM,43255,0,VAZEILLES PRES SAUGUES,Vazeilles-près-Saugues,Vazeilles-près-Saugues,COM,43090,1,ESPLANTAS VAZEILLES,Esplantas-Vazeilles,Esplantas-Vazeilles 32,2016-01-01,COM,43255,0,VAZEILLES PRES SAUGUES,Vazeilles-près-Saugues,Vazeilles-près-Saugues,COMD,43255,0,VAZEILLES PRES SAUGUES,Vazeilles-près-Saugues,Vazeilles-près-Saugues -32,2016-01-01,COM,44004,1,ANETZ,Anetz,Anetz,COM,44163,0,VAIR SUR LOIRE,Vair-sur-Loire,Vair-sur-Loire 32,2016-01-01,COM,44004,1,ANETZ,Anetz,Anetz,COMD,44004,1,ANETZ,Anetz,Anetz +32,2016-01-01,COM,44004,1,ANETZ,Anetz,Anetz,COM,44163,0,VAIR SUR LOIRE,Vair-sur-Loire,Vair-sur-Loire 32,2016-01-01,COM,44005,1,ARTHON EN RETZ,Arthon-en-Retz,Arthon-en-Retz,COM,44005,0,CHAUMES EN RETZ,Chaumes-en-Retz,Chaumes-en-Retz 32,2016-01-01,COM,44005,1,ARTHON EN RETZ,Arthon-en-Retz,Arthon-en-Retz,COMD,44005,1,ARTHON EN RETZ,Arthon-en-Retz,Arthon-en-Retz 32,2016-01-01,COM,44008,0,BARBECHAT,Barbechat,Barbechat,COMD,44008,0,BARBECHAT,Barbechat,Barbechat 32,2016-01-01,COM,44008,0,BARBECHAT,Barbechat,Barbechat,COM,44029,0,DIVATTE SUR LOIRE,Divatte-sur-Loire,Divatte-sur-Loire 32,2016-01-01,COM,44011,0,BELLIGNE,Belligné,Belligné,COMD,44011,0,BELLIGNE,Belligné,Belligné 32,2016-01-01,COM,44011,0,BELLIGNE,Belligné,Belligné,COM,44213,0,LOIREAUXENCE,Loireauxence,Loireauxence -32,2016-01-01,COM,44021,0,BOURGNEUF EN RETZ,Bourgneuf-en-Retz,Bourgneuf-en-Retz,COMD,44021,0,BOURGNEUF EN RETZ,Bourgneuf-en-Retz,Bourgneuf-en-Retz 32,2016-01-01,COM,44021,0,BOURGNEUF EN RETZ,Bourgneuf-en-Retz,Bourgneuf-en-Retz,COM,44021,0,VILLENEUVE EN RETZ,Villeneuve-en-Retz,Villeneuve-en-Retz +32,2016-01-01,COM,44021,0,BOURGNEUF EN RETZ,Bourgneuf-en-Retz,Bourgneuf-en-Retz,COMD,44021,0,BOURGNEUF EN RETZ,Bourgneuf-en-Retz,Bourgneuf-en-Retz 32,2016-01-01,COM,44029,3,CHAPELLE BASSE MER,Chapelle-Basse-Mer,La Chapelle-Basse-Mer,COMD,44029,3,CHAPELLE BASSE MER,Chapelle-Basse-Mer,La Chapelle-Basse-Mer 32,2016-01-01,COM,44029,3,CHAPELLE BASSE MER,Chapelle-Basse-Mer,La Chapelle-Basse-Mer,COM,44029,0,DIVATTE SUR LOIRE,Divatte-sur-Loire,Divatte-sur-Loire -32,2016-01-01,COM,44034,3,CHAPELLE SAINT SAUVEUR,Chapelle-Saint-Sauveur,La Chapelle-Saint-Sauveur,COM,44213,0,LOIREAUXENCE,Loireauxence,Loireauxence 32,2016-01-01,COM,44034,3,CHAPELLE SAINT SAUVEUR,Chapelle-Saint-Sauveur,La Chapelle-Saint-Sauveur,COMD,44034,3,CHAPELLE SAINT SAUVEUR,Chapelle-Saint-Sauveur,La Chapelle-Saint-Sauveur -32,2016-01-01,COM,44040,0,CHEMERE,Chéméré,Chéméré,COMD,44040,0,CHEMERE,Chéméré,Chéméré +32,2016-01-01,COM,44034,3,CHAPELLE SAINT SAUVEUR,Chapelle-Saint-Sauveur,La Chapelle-Saint-Sauveur,COM,44213,0,LOIREAUXENCE,Loireauxence,Loireauxence 32,2016-01-01,COM,44040,0,CHEMERE,Chéméré,Chéméré,COM,44005,0,CHAUMES EN RETZ,Chaumes-en-Retz,Chaumes-en-Retz -32,2016-01-01,COM,44059,0,FRESNAY EN RETZ,Fresnay-en-Retz,Fresnay-en-Retz,COMD,44059,0,FRESNAY EN RETZ,Fresnay-en-Retz,Fresnay-en-Retz +32,2016-01-01,COM,44040,0,CHEMERE,Chéméré,Chéméré,COMD,44040,0,CHEMERE,Chéméré,Chéméré 32,2016-01-01,COM,44059,0,FRESNAY EN RETZ,Fresnay-en-Retz,Fresnay-en-Retz,COM,44021,0,VILLENEUVE EN RETZ,Villeneuve-en-Retz,Villeneuve-en-Retz +32,2016-01-01,COM,44059,0,FRESNAY EN RETZ,Fresnay-en-Retz,Fresnay-en-Retz,COMD,44059,0,FRESNAY EN RETZ,Fresnay-en-Retz,Fresnay-en-Retz 41,2016-01-01,COM,44060,2,FRESNE SUR LOIRE,Fresne-sur-Loire,Le Fresne-sur-Loire,COM,49382,2,FRESNE SUR LOIRE,Fresne-sur-Loire,Le Fresne-sur-Loire -32,2016-01-01,COM,44087,0,MACHECOUL,Machecoul,Machecoul,COM,44087,0,MACHECOUL SAINT MEME,Machecoul-Saint-Même,Machecoul-Saint-Même 32,2016-01-01,COM,44087,0,MACHECOUL,Machecoul,Machecoul,COMD,44087,0,MACHECOUL,Machecoul,Machecoul +32,2016-01-01,COM,44087,0,MACHECOUL,Machecoul,Machecoul,COM,44087,0,MACHECOUL SAINT MEME,Machecoul-Saint-Même,Machecoul-Saint-Même 32,2016-01-01,COM,44147,3,ROUXIERE,Rouxière,La Rouxière,COMD,44147,3,ROUXIERE,Rouxière,La Rouxière 32,2016-01-01,COM,44147,3,ROUXIERE,Rouxière,La Rouxière,COM,44213,0,LOIREAUXENCE,Loireauxence,Loireauxence -32,2016-01-01,COM,44163,0,SAINT HERBLON,Saint-Herblon,Saint-Herblon,COM,44163,0,VAIR SUR LOIRE,Vair-sur-Loire,Vair-sur-Loire 32,2016-01-01,COM,44163,0,SAINT HERBLON,Saint-Herblon,Saint-Herblon,COMD,44163,0,SAINT HERBLON,Saint-Herblon,Saint-Herblon -32,2016-01-01,COM,44181,0,SAINT MEME LE TENU,Saint-Même-le-Tenu,Saint-Même-le-Tenu,COMD,44181,0,SAINT MEME LE TENU,Saint-Même-le-Tenu,Saint-Même-le-Tenu +32,2016-01-01,COM,44163,0,SAINT HERBLON,Saint-Herblon,Saint-Herblon,COM,44163,0,VAIR SUR LOIRE,Vair-sur-Loire,Vair-sur-Loire 32,2016-01-01,COM,44181,0,SAINT MEME LE TENU,Saint-Même-le-Tenu,Saint-Même-le-Tenu,COM,44087,0,MACHECOUL SAINT MEME,Machecoul-Saint-Même,Machecoul-Saint-Même -32,2016-01-01,COM,44213,0,VARADES,Varades,Varades,COM,44213,0,LOIREAUXENCE,Loireauxence,Loireauxence +32,2016-01-01,COM,44181,0,SAINT MEME LE TENU,Saint-Même-le-Tenu,Saint-Même-le-Tenu,COMD,44181,0,SAINT MEME LE TENU,Saint-Même-le-Tenu,Saint-Même-le-Tenu 32,2016-01-01,COM,44213,0,VARADES,Varades,Varades,COMD,44213,0,VARADES,Varades,Varades -32,2016-01-01,COM,45057,0,LABROSSE,Labrosse,Labrosse,COM,45191,2,MALESHERBOIS,Malesherbois,Le Malesherbois +32,2016-01-01,COM,44213,0,VARADES,Varades,Varades,COM,44213,0,LOIREAUXENCE,Loireauxence,Loireauxence 32,2016-01-01,COM,45057,0,LABROSSE,Labrosse,Labrosse,COMD,45057,0,LABROSSE,Labrosse,Labrosse -32,2016-01-01,COM,45106,0,COUDRAY,Coudray,Coudray,COM,45191,2,MALESHERBOIS,Malesherbois,Le Malesherbois +32,2016-01-01,COM,45057,0,LABROSSE,Labrosse,Labrosse,COM,45191,2,MALESHERBOIS,Malesherbois,Le Malesherbois 32,2016-01-01,COM,45106,0,COUDRAY,Coudray,Coudray,COMD,45106,0,COUDRAY,Coudray,Coudray +32,2016-01-01,COM,45106,0,COUDRAY,Coudray,Coudray,COM,45191,2,MALESHERBOIS,Malesherbois,Le Malesherbois 32,2016-01-01,COM,45129,0,DOUCHY,Douchy,Douchy,COMD,45129,0,DOUCHY,Douchy,Douchy 32,2016-01-01,COM,45129,0,DOUCHY,Douchy,Douchy,COM,45129,0,DOUCHY MONTCORBON,Douchy-Montcorbon,Douchy-Montcorbon -32,2016-01-01,COM,45190,0,MAINVILLIERS,Mainvilliers,Mainvilliers,COM,45191,2,MALESHERBOIS,Malesherbois,Le Malesherbois 32,2016-01-01,COM,45190,0,MAINVILLIERS,Mainvilliers,Mainvilliers,COMD,45190,0,MAINVILLIERS,Mainvilliers,Mainvilliers -32,2016-01-01,COM,45191,0,MALESHERBES,Malesherbes,Malesherbes,COMD,45191,0,MALESHERBES,Malesherbes,Malesherbes +32,2016-01-01,COM,45190,0,MAINVILLIERS,Mainvilliers,Mainvilliers,COM,45191,2,MALESHERBOIS,Malesherbois,Le Malesherbois 32,2016-01-01,COM,45191,0,MALESHERBES,Malesherbes,Malesherbes,COM,45191,2,MALESHERBOIS,Malesherbois,Le Malesherbois -32,2016-01-01,COM,45192,0,MANCHECOURT,Manchecourt,Manchecourt,COMD,45192,0,MANCHECOURT,Manchecourt,Manchecourt +32,2016-01-01,COM,45191,0,MALESHERBES,Malesherbes,Malesherbes,COMD,45191,0,MALESHERBES,Malesherbes,Malesherbes 32,2016-01-01,COM,45192,0,MANCHECOURT,Manchecourt,Manchecourt,COM,45191,2,MALESHERBOIS,Malesherbois,Le Malesherbois -32,2016-01-01,COM,45211,0,MONTCORBON,Montcorbon,Montcorbon,COMD,45211,0,MONTCORBON,Montcorbon,Montcorbon +32,2016-01-01,COM,45192,0,MANCHECOURT,Manchecourt,Manchecourt,COMD,45192,0,MANCHECOURT,Manchecourt,Manchecourt 32,2016-01-01,COM,45211,0,MONTCORBON,Montcorbon,Montcorbon,COM,45129,0,DOUCHY MONTCORBON,Douchy-Montcorbon,Douchy-Montcorbon +32,2016-01-01,COM,45211,0,MONTCORBON,Montcorbon,Montcorbon,COMD,45211,0,MONTCORBON,Montcorbon,Montcorbon 32,2016-01-01,COM,45221,0,NANGEVILLE,Nangeville,Nangeville,COM,45191,2,MALESHERBOIS,Malesherbois,Le Malesherbois 32,2016-01-01,COM,45221,0,NANGEVILLE,Nangeville,Nangeville,COMD,45221,0,NANGEVILLE,Nangeville,Nangeville -32,2016-01-01,COM,45236,1,ORVEAU BELLESAUVE,Orveau-Bellesauve,Orveau-Bellesauve,COMD,45236,1,ORVEAU BELLESAUVE,Orveau-Bellesauve,Orveau-Bellesauve 32,2016-01-01,COM,45236,1,ORVEAU BELLESAUVE,Orveau-Bellesauve,Orveau-Bellesauve,COM,45191,2,MALESHERBOIS,Malesherbois,Le Malesherbois +32,2016-01-01,COM,45236,1,ORVEAU BELLESAUVE,Orveau-Bellesauve,Orveau-Bellesauve,COMD,45236,1,ORVEAU BELLESAUVE,Orveau-Bellesauve,Orveau-Bellesauve 32,2016-01-01,COM,46019,0,BEAUMAT,Beaumat,Beaumat,COMD,46019,0,BEAUMAT,Beaumat,Beaumat -32,2016-01-01,COM,46019,0,BEAUMAT,Beaumat,Beaumat,COM,46138,0,COEUR DE CAUSSE,Cœur de Causse,Cœur de Causse +32,2016-01-01,COM,46019,0,BEAUMAT,Beaumat,Beaumat,COM,46138,0,COUR DE CAUSSE,Cœur de Causse,Cœur de Causse 32,2016-01-01,COM,46025,0,BELMONTET,Belmontet,Belmontet,COMD,46025,0,BELMONTET,Belmontet,Belmontet 32,2016-01-01,COM,46025,0,BELMONTET,Belmontet,Belmontet,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc -32,2016-01-01,COM,46048,0,CALVIAC,Calviac,Calviac,COM,46311,0,SOUSCEYRAC EN QUERCY,Sousceyrac-en-Quercy,Sousceyrac-en-Quercy 32,2016-01-01,COM,46048,0,CALVIAC,Calviac,Calviac,COMD,46048,0,CALVIAC,Calviac,Calviac +32,2016-01-01,COM,46048,0,CALVIAC,Calviac,Calviac,COM,46311,0,SOUSCEYRAC EN QUERCY,Sousceyrac-en-Quercy,Sousceyrac-en-Quercy 32,2016-01-01,COM,46071,0,COMIAC,Comiac,Comiac,COMD,46071,0,COMIAC,Comiac,Comiac 32,2016-01-01,COM,46071,0,COMIAC,Comiac,Comiac,COM,46311,0,SOUSCEYRAC EN QUERCY,Sousceyrac-en-Quercy,Sousceyrac-en-Quercy -32,2016-01-01,COM,46103,0,FLAUGNAC,Flaugnac,Flaugnac,COMD,46103,0,FLAUGNAC,Flaugnac,Flaugnac 32,2016-01-01,COM,46103,0,FLAUGNAC,Flaugnac,Flaugnac,COM,46103,0,SAINT PAUL FLAUGNAC,Saint-Paul-Flaugnac,Saint-Paul-Flaugnac -32,2016-01-01,COM,46110,0,FONTANES DU CAUSSE,Fontanes-du-Causse,Fontanes-du-Causse,COM,46138,0,COEUR DE CAUSSE,Cœur de Causse,Cœur de Causse +32,2016-01-01,COM,46103,0,FLAUGNAC,Flaugnac,Flaugnac,COMD,46103,0,FLAUGNAC,Flaugnac,Flaugnac 32,2016-01-01,COM,46110,0,FONTANES DU CAUSSE,Fontanes-du-Causse,Fontanes-du-Causse,COMD,46110,0,FONTANES DU CAUSSE,Fontanes-du-Causse,Fontanes-du-Causse -32,2016-01-01,COM,46138,0,LABASTIDE MURAT,Labastide-Murat,Labastide-Murat,COM,46138,0,COEUR DE CAUSSE,Cœur de Causse,Cœur de Causse +32,2016-01-01,COM,46110,0,FONTANES DU CAUSSE,Fontanes-du-Causse,Fontanes-du-Causse,COM,46138,0,COUR DE CAUSSE,Cœur de Causse,Cœur de Causse +32,2016-01-01,COM,46138,0,LABASTIDE MURAT,Labastide-Murat,Labastide-Murat,COM,46138,0,COUR DE CAUSSE,Cœur de Causse,Cœur de Causse 32,2016-01-01,COM,46138,0,LABASTIDE MURAT,Labastide-Murat,Labastide-Murat,COMD,46138,0,LABASTIDE MURAT,Labastide-Murat,Labastide-Murat 32,2016-01-01,COM,46141,0,LACAM D OURCET,Lacam-d'Ourcet,Lacam-d'Ourcet,COMD,46141,0,LACAM D OURCET,Lacam-d'Ourcet,Lacam-d'Ourcet 32,2016-01-01,COM,46141,0,LACAM D OURCET,Lacam-d'Ourcet,Lacam-d'Ourcet,COM,46311,0,SOUSCEYRAC EN QUERCY,Sousceyrac-en-Quercy,Sousceyrac-en-Quercy 32,2016-01-01,COM,46150,0,LAMATIVIE,Lamativie,Lamativie,COMD,46150,0,LAMATIVIE,Lamativie,Lamativie 32,2016-01-01,COM,46150,0,LAMATIVIE,Lamativie,Lamativie,COM,46311,0,SOUSCEYRAC EN QUERCY,Sousceyrac-en-Quercy,Sousceyrac-en-Quercy -32,2016-01-01,COM,46166,0,LEBREIL,Lebreil,Lebreil,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc 32,2016-01-01,COM,46166,0,LEBREIL,Lebreil,Lebreil,COMD,46166,0,LEBREIL,Lebreil,Lebreil -32,2016-01-01,COM,46201,0,MONTCUQ,Montcuq,Montcuq,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc +32,2016-01-01,COM,46166,0,LEBREIL,Lebreil,Lebreil,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc 32,2016-01-01,COM,46201,0,MONTCUQ,Montcuq,Montcuq,COMD,46201,0,MONTCUQ,Montcuq,Montcuq -32,2016-01-01,COM,46252,0,SAINT CERNIN,Saint-Cernin,Saint-Cernin,COM,46252,4,PECHS DU VERS,Pechs du Vers,Les Pechs du Vers +32,2016-01-01,COM,46201,0,MONTCUQ,Montcuq,Montcuq,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc 32,2016-01-01,COM,46252,0,SAINT CERNIN,Saint-Cernin,Saint-Cernin,COMD,46252,0,SAINT CERNIN,Saint-Cernin,Saint-Cernin +32,2016-01-01,COM,46252,0,SAINT CERNIN,Saint-Cernin,Saint-Cernin,COM,46252,4,PECHS DU VERS,Pechs du Vers,Les Pechs du Vers 32,2016-01-01,COM,46261,0,SAINTE CROIX,Sainte-Croix,Sainte-Croix,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc 32,2016-01-01,COM,46261,0,SAINTE CROIX,Sainte-Croix,Sainte-Croix,COMD,46261,0,SAINTE CROIX,Sainte-Croix,Sainte-Croix -32,2016-01-01,COM,46275,0,SAINT MARTIN DE VERS,Saint-Martin-de-Vers,Saint-Martin-de-Vers,COMD,46275,0,SAINT MARTIN DE VERS,Saint-Martin-de-Vers,Saint-Martin-de-Vers 32,2016-01-01,COM,46275,0,SAINT MARTIN DE VERS,Saint-Martin-de-Vers,Saint-Martin-de-Vers,COM,46252,4,PECHS DU VERS,Pechs du Vers,Les Pechs du Vers -32,2016-01-01,COM,46287,0,SAINT PAUL DE LOUBRESSAC,Saint-Paul-de-Loubressac,Saint-Paul-de-Loubressac,COMD,46287,0,SAINT PAUL DE LOUBRESSAC,Saint-Paul-de-Loubressac,Saint-Paul-de-Loubressac +32,2016-01-01,COM,46275,0,SAINT MARTIN DE VERS,Saint-Martin-de-Vers,Saint-Martin-de-Vers,COMD,46275,0,SAINT MARTIN DE VERS,Saint-Martin-de-Vers,Saint-Martin-de-Vers 32,2016-01-01,COM,46287,0,SAINT PAUL DE LOUBRESSAC,Saint-Paul-de-Loubressac,Saint-Paul-de-Loubressac,COM,46103,0,SAINT PAUL FLAUGNAC,Saint-Paul-Flaugnac,Saint-Paul-Flaugnac +32,2016-01-01,COM,46287,0,SAINT PAUL DE LOUBRESSAC,Saint-Paul-de-Loubressac,Saint-Paul-de-Loubressac,COMD,46287,0,SAINT PAUL DE LOUBRESSAC,Saint-Paul-de-Loubressac,Saint-Paul-de-Loubressac +32,2016-01-01,COM,46291,0,SAINT SAUVEUR LA VALLEE,Saint-Sauveur-la-Vallée,Saint-Sauveur-la-Vallée,COM,46138,0,COUR DE CAUSSE,Cœur de Causse,Cœur de Causse 32,2016-01-01,COM,46291,0,SAINT SAUVEUR LA VALLEE,Saint-Sauveur-la-Vallée,Saint-Sauveur-la-Vallée,COMD,46291,0,SAINT SAUVEUR LA VALLEE,Saint-Sauveur-la-Vallée,Saint-Sauveur-la-Vallée -32,2016-01-01,COM,46291,0,SAINT SAUVEUR LA VALLEE,Saint-Sauveur-la-Vallée,Saint-Sauveur-la-Vallée,COM,46138,0,COEUR DE CAUSSE,Cœur de Causse,Cœur de Causse -32,2016-01-01,COM,46311,0,SOUSCEYRAC,Sousceyrac,Sousceyrac,COM,46311,0,SOUSCEYRAC EN QUERCY,Sousceyrac-en-Quercy,Sousceyrac-en-Quercy 32,2016-01-01,COM,46311,0,SOUSCEYRAC,Sousceyrac,Sousceyrac,COMD,46311,0,SOUSCEYRAC,Sousceyrac,Sousceyrac -32,2016-01-01,COM,46325,0,VAILLAC,Vaillac,Vaillac,COM,46138,0,COEUR DE CAUSSE,Cœur de Causse,Cœur de Causse +32,2016-01-01,COM,46311,0,SOUSCEYRAC,Sousceyrac,Sousceyrac,COM,46311,0,SOUSCEYRAC EN QUERCY,Sousceyrac-en-Quercy,Sousceyrac-en-Quercy +32,2016-01-01,COM,46325,0,VAILLAC,Vaillac,Vaillac,COM,46138,0,COUR DE CAUSSE,Cœur de Causse,Cœur de Causse 32,2016-01-01,COM,46325,0,VAILLAC,Vaillac,Vaillac,COMD,46325,0,VAILLAC,Vaillac,Vaillac 32,2016-01-01,COM,46326,0,VALPRIONDE,Valprionde,Valprionde,COM,46201,0,MONTCUQ EN QUERCY BLANC,Montcuq-en-Quercy-Blanc,Montcuq-en-Quercy-Blanc 32,2016-01-01,COM,46326,0,VALPRIONDE,Valprionde,Valprionde,COMD,46326,0,VALPRIONDE,Valprionde,Valprionde @@ -4475,65 +4305,66 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,48022,0,BEDOUES,Bédouès,Bédouès,COMD,48022,0,BEDOUES,Bédouès,Bédouès 32,2016-01-01,COM,48022,0,BEDOUES,Bédouès,Bédouès,COM,48050,0,BEDOUES COCURES,Bédouès-Cocurès,Bédouès-Cocurès 32,2016-01-01,COM,48033,0,CANILHAC,Canilhac,Canilhac,COM,48017,0,BANASSAC CANILHAC,Banassac-Canilhac,Banassac-Canilhac -32,2016-01-01,COM,48049,0,CHIRAC,Chirac,Chirac,COM,48099,0,BOURGS SUR COLAGNE,Bourgs sur Colagne,Bourgs sur Colagne 32,2016-01-01,COM,48049,0,CHIRAC,Chirac,Chirac,COMD,48049,0,CHIRAC,Chirac,Chirac +32,2016-01-01,COM,48049,0,CHIRAC,Chirac,Chirac,COM,48099,0,BOURGS SUR COLAGNE,Bourgs sur Colagne,Bourgs sur Colagne 32,2016-01-01,COM,48050,0,COCURES,Cocurès,Cocurès,COMD,48050,0,COCURES,Cocurès,Cocurès 32,2016-01-01,COM,48050,0,COCURES,Cocurès,Cocurès,COM,48050,0,BEDOUES COCURES,Bédouès-Cocurès,Bédouès-Cocurès 32,2016-01-01,COM,48061,0,FLORAC,Florac,Florac,COM,48061,0,FLORAC TROIS RIVIERES,Florac Trois Rivières,Florac Trois Rivières 32,2016-01-01,COM,48061,0,FLORAC,Florac,Florac,COMD,48061,0,FLORAC,Florac,Florac -32,2016-01-01,COM,48062,0,FONTANES,Fontanes,Fontanes,COM,48105,0,NAUSSAC FONTANES,Naussac-Fontanes,Naussac-Fontanes 32,2016-01-01,COM,48062,0,FONTANES,Fontanes,Fontanes,COMD,48062,0,FONTANES,Fontanes,Fontanes -32,2016-01-01,COM,48066,0,FRAISSINET DE LOZERE,Fraissinet-de-Lozère,Fraissinet-de-Lozère,COM,48116,0,PONT DE MONTVERT SUD MONT LOZERE,Pont de Montvert - Sud Mont Lozère,Pont de Montvert - Sud Mont Lozère +32,2016-01-01,COM,48062,0,FONTANES,Fontanes,Fontanes,COM,48105,0,NAUSSAC FONTANES,Naussac-Fontanes,Naussac-Fontanes 32,2016-01-01,COM,48066,0,FRAISSINET DE LOZERE,Fraissinet-de-Lozère,Fraissinet-de-Lozère,COMD,48066,0,FRAISSINET DE LOZERE,Fraissinet-de-Lozère,Fraissinet-de-Lozère -32,2016-01-01,COM,48099,2,MONASTIER PIN MORIES,Monastier-Pin-Moriès,Le Monastier-Pin-Moriès,COM,48099,0,BOURGS SUR COLAGNE,Bourgs sur Colagne,Bourgs sur Colagne +32,2016-01-01,COM,48066,0,FRAISSINET DE LOZERE,Fraissinet-de-Lozère,Fraissinet-de-Lozère,COM,48116,0,PONT DE MONTVERT SUD MONT LOZERE,Pont de Montvert - Sud Mont Lozère,Pont de Montvert - Sud Mont Lozère 32,2016-01-01,COM,48099,2,MONASTIER PIN MORIES,Monastier-Pin-Moriès,Le Monastier-Pin-Moriès,COMD,48099,2,MONASTIER PIN MORIES,Monastier-Pin-Moriès,Le Monastier-Pin-Moriès -32,2016-01-01,COM,48105,0,NAUSSAC,Naussac,Naussac,COMD,48105,0,NAUSSAC,Naussac,Naussac +32,2016-01-01,COM,48099,2,MONASTIER PIN MORIES,Monastier-Pin-Moriès,Le Monastier-Pin-Moriès,COM,48099,0,BOURGS SUR COLAGNE,Bourgs sur Colagne,Bourgs sur Colagne 32,2016-01-01,COM,48105,0,NAUSSAC,Naussac,Naussac,COM,48105,0,NAUSSAC FONTANES,Naussac-Fontanes,Naussac-Fontanes -32,2016-01-01,COM,48116,2,PONT DE MONTVERT,Pont-de-Montvert,Le Pont-de-Montvert,COM,48116,0,PONT DE MONTVERT SUD MONT LOZERE,Pont de Montvert - Sud Mont Lozère,Pont de Montvert - Sud Mont Lozère +32,2016-01-01,COM,48105,0,NAUSSAC,Naussac,Naussac,COMD,48105,0,NAUSSAC,Naussac,Naussac 32,2016-01-01,COM,48116,2,PONT DE MONTVERT,Pont-de-Montvert,Le Pont-de-Montvert,COMD,48116,2,PONT DE MONTVERT,Pont-de-Montvert,Le Pont-de-Montvert +32,2016-01-01,COM,48116,2,PONT DE MONTVERT,Pont-de-Montvert,Le Pont-de-Montvert,COM,48116,0,PONT DE MONTVERT SUD MONT LOZERE,Pont de Montvert - Sud Mont Lozère,Pont de Montvert - Sud Mont Lozère 32,2016-01-01,COM,48134,0,SAINT ANDEOL DE CLERGUEMORT,Saint-Andéol-de-Clerguemort,Saint-Andéol-de-Clerguemort,COMD,48134,0,SAINT ANDEOL DE CLERGUEMORT,Saint-Andéol-de-Clerguemort,Saint-Andéol-de-Clerguemort 32,2016-01-01,COM,48134,0,SAINT ANDEOL DE CLERGUEMORT,Saint-Andéol-de-Clerguemort,Saint-Andéol-de-Clerguemort,COM,48152,0,VENTALON EN CEVENNES,Ventalon en Cévennes,Ventalon en Cévennes 32,2016-01-01,COM,48152,0,SAINT FREZAL DE VENTALON,Saint-Frézal-de-Ventalon,Saint-Frézal-de-Ventalon,COM,48152,0,VENTALON EN CEVENNES,Ventalon en Cévennes,Ventalon en Cévennes 32,2016-01-01,COM,48152,0,SAINT FREZAL DE VENTALON,Saint-Frézal-de-Ventalon,Saint-Frézal-de-Ventalon,COMD,48152,0,SAINT FREZAL DE VENTALON,Saint-Frézal-de-Ventalon,Saint-Frézal-de-Ventalon 32,2016-01-01,COM,48162,0,SAINT JULIEN D ARPAON,Saint-Julien-d'Arpaon,Saint-Julien-d'Arpaon,COMD,48162,0,SAINT JULIEN D ARPAON,Saint-Julien-d'Arpaon,Saint-Julien-d'Arpaon 32,2016-01-01,COM,48162,0,SAINT JULIEN D ARPAON,Saint-Julien-d'Arpaon,Saint-Julien-d'Arpaon,COM,48166,0,CANS ET CEVENNES,Cans et Cévennes,Cans et Cévennes -32,2016-01-01,COM,48166,0,SAINT LAURENT DE TREVES,Saint-Laurent-de-Trèves,Saint-Laurent-de-Trèves,COM,48166,0,CANS ET CEVENNES,Cans et Cévennes,Cans et Cévennes 32,2016-01-01,COM,48166,0,SAINT LAURENT DE TREVES,Saint-Laurent-de-Trèves,Saint-Laurent-de-Trèves,COMD,48166,0,SAINT LAURENT DE TREVES,Saint-Laurent-de-Trèves,Saint-Laurent-de-Trèves -32,2016-01-01,COM,48172,0,SAINT MAURICE DE VENTALON,Saint-Maurice-de-Ventalon,Saint-Maurice-de-Ventalon,COM,48116,0,PONT DE MONTVERT SUD MONT LOZERE,Pont de Montvert - Sud Mont Lozère,Pont de Montvert - Sud Mont Lozère +32,2016-01-01,COM,48166,0,SAINT LAURENT DE TREVES,Saint-Laurent-de-Trèves,Saint-Laurent-de-Trèves,COM,48166,0,CANS ET CEVENNES,Cans et Cévennes,Cans et Cévennes +32,2016-01-01,COM,48172,0,SAINT MAURICE DE VENTALON,Saint-Maurice-de-Ventalon,Saint-Maurice-de-Ventalon,COM,48116,0,PONT DE MONTVERT SUD MONT LOZERE,Pont de Montvert - Sud Mont Lozère,Pont de Montvert - Sud Mont Lozère 32,2016-01-01,COM,48172,0,SAINT MAURICE DE VENTALON,Saint-Maurice-de-Ventalon,Saint-Maurice-de-Ventalon,COMD,48172,0,SAINT MAURICE DE VENTALON,Saint-Maurice-de-Ventalon,Saint-Maurice-de-Ventalon -32,2016-01-01,COM,48186,3,SALLE PRUNET,Salle-Prunet,La Salle-Prunet,COMD,48186,3,SALLE PRUNET,Salle-Prunet,La Salle-Prunet 32,2016-01-01,COM,48186,3,SALLE PRUNET,Salle-Prunet,La Salle-Prunet,COM,48061,0,FLORAC TROIS RIVIERES,Florac Trois Rivières,Florac Trois Rivières -32,2016-01-01,COM,49003,1,AMBILLOU CHATEAU,Ambillou-Château,Ambillou-Château,COMD,49003,1,AMBILLOU CHATEAU,Ambillou-Château,Ambillou-Château +32,2016-01-01,COM,48186,3,SALLE PRUNET,Salle-Prunet,La Salle-Prunet,COMD,48186,3,SALLE PRUNET,Salle-Prunet,La Salle-Prunet 32,2016-01-01,COM,49003,1,AMBILLOU CHATEAU,Ambillou-Château,Ambillou-Château,COM,49003,0,TUFFALUN,Tuffalun,Tuffalun +32,2016-01-01,COM,49003,1,AMBILLOU CHATEAU,Ambillou-Château,Ambillou-Château,COMD,49003,1,AMBILLOU CHATEAU,Ambillou-Château,Ambillou-Château 32,2016-01-01,COM,49004,1,ANDARD,Andard,Andard,COMD,49004,1,ANDARD,Andard,Andard 32,2016-01-01,COM,49004,1,ANDARD,Andard,Andard,COM,49307,0,LOIRE AUTHION,Loire-Authion,Loire-Authion 32,2016-01-01,COM,49005,1,ANDIGNE,Andigné,Andigné,COMD,49005,1,ANDIGNE,Andigné,Andigné 32,2016-01-01,COM,49005,1,ANDIGNE,Andigné,Andigné,COM,49176,2,LION D ANGERS,Lion-d'Angers,Le Lion-d'Angers 32,2016-01-01,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou +32,2016-01-01,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou,COMD,49018,0,BAUGE,Baugé,Baugé 32,2016-01-01,COMD,49018,0,BAUGE,Baugé,Baugé,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou 32,2016-01-01,COMD,49018,0,BAUGE,Baugé,Baugé,COMD,49018,0,BAUGE,Baugé,Baugé -32,2016-01-01,COM,49019,0,BAUNE,Bauné,Bauné,COM,49307,0,LOIRE AUTHION,Loire-Authion,Loire-Authion 32,2016-01-01,COM,49019,0,BAUNE,Bauné,Bauné,COMD,49019,0,BAUNE,Bauné,Bauné +32,2016-01-01,COM,49019,0,BAUNE,Bauné,Bauné,COM,49307,0,LOIRE AUTHION,Loire-Authion,Loire-Authion 32,2016-01-01,COM,49021,0,BEAUFORT EN VALLEE,Beaufort-en-Vallée,Beaufort-en-Vallée,COMD,49021,0,BEAUFORT EN VALLEE,Beaufort-en-Vallée,Beaufort-en-Vallée 32,2016-01-01,COM,49021,0,BEAUFORT EN VALLEE,Beaufort-en-Vallée,Beaufort-en-Vallée,COM,49021,0,BEAUFORT EN ANJOU,Beaufort-en-Anjou,Beaufort-en-Anjou 32,2016-01-01,COM,49025,0,BEAUVAU,Beauvau,Beauvau,COMD,49025,0,BEAUVAU,Beauvau,Beauvau 32,2016-01-01,COM,49025,0,BEAUVAU,Beauvau,Beauvau,COM,49163,0,JARZE VILLAGES,Jarzé Villages,Jarzé Villages -32,2016-01-01,COM,49029,0,BLAISON GOHIER,Blaison-Gohier,Blaison-Gohier,COM,49029,0,BLAISON SAINT SULPICE,Blaison-Saint-Sulpice,Blaison-Saint-Sulpice 32,2016-01-01,COM,49029,0,BLAISON GOHIER,Blaison-Gohier,Blaison-Gohier,COMD,49029,0,BLAISON GOHIER,Blaison-Gohier,Blaison-Gohier -32,2016-01-01,COM,49031,0,BOCE,Bocé,Bocé,COMD,49031,0,BOCE,Bocé,Bocé +32,2016-01-01,COM,49029,0,BLAISON GOHIER,Blaison-Gohier,Blaison-Gohier,COM,49029,0,BLAISON SAINT SULPICE,Blaison-Saint-Sulpice,Blaison-Saint-Sulpice 32,2016-01-01,COM,49031,0,BOCE,Bocé,Bocé,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou +32,2016-01-01,COM,49031,0,BOCE,Bocé,Bocé,COMD,49031,0,BOCE,Bocé,Bocé 32,2016-01-01,COM,49032,3,BOHALLE,Bohalle,La Bohalle,COMD,49032,3,BOHALLE,Bohalle,La Bohalle 32,2016-01-01,COM,49032,3,BOHALLE,Bohalle,La Bohalle,COM,49307,0,LOIRE AUTHION,Loire-Authion,Loire-Authion -32,2016-01-01,COM,49042,0,BRAIN SUR L AUTHION,Brain-sur-l'Authion,Brain-sur-l'Authion,COM,49307,0,LOIRE AUTHION,Loire-Authion,Loire-Authion 32,2016-01-01,COM,49042,0,BRAIN SUR L AUTHION,Brain-sur-l'Authion,Brain-sur-l'Authion,COMD,49042,0,BRAIN SUR L AUTHION,Brain-sur-l'Authion,Brain-sur-l'Authion -32,2016-01-01,COM,49049,0,BRION,Brion,Brion,COM,49138,4,BOIS D ANJOU,Bois d'Anjou,Les Bois d'Anjou +32,2016-01-01,COM,49042,0,BRAIN SUR L AUTHION,Brain-sur-l'Authion,Brain-sur-l'Authion,COM,49307,0,LOIRE AUTHION,Loire-Authion,Loire-Authion 32,2016-01-01,COM,49049,0,BRION,Brion,Brion,COMD,49049,0,BRION,Brion,Brion +32,2016-01-01,COM,49049,0,BRION,Brion,Brion,COM,49138,4,BOIS D ANJOU,Bois d'Anjou,Les Bois d'Anjou 32,2016-01-01,COM,49059,4,CERQUEUX SOUS PASSAVANT,Cerqueux-sous-Passavant,Les Cerqueux-sous-Passavant,COMD,49059,4,CERQUEUX SOUS PASSAVANT,Cerqueux-sous-Passavant,Les Cerqueux-sous-Passavant 32,2016-01-01,COM,49059,4,CERQUEUX SOUS PASSAVANT,Cerqueux-sous-Passavant,Les Cerqueux-sous-Passavant,COM,49373,0,LYS HAUT LAYON,Lys-Haut-Layon,Lys-Haut-Layon 32,2016-01-01,COM,49066,0,CHAMP SUR LAYON,Champ-sur-Layon,Champ-sur-Layon,COMD,49066,0,CHAMP SUR LAYON,Champ-sur-Layon,Champ-sur-Layon 32,2016-01-01,COM,49066,0,CHAMP SUR LAYON,Champ-sur-Layon,Champ-sur-Layon,COM,49345,0,BELLEVIGNE EN LAYON,Bellevigne-en-Layon,Bellevigne-en-Layon -32,2016-01-01,COM,49067,0,CHAMPTEUSSE SUR BACONNE,Champteussé-sur-Baconne,Champteussé-sur-Baconne,COM,49067,0,CHENILLE CHAMPTEUSSE,Chenillé-Champteussé,Chenillé-Champteussé 32,2016-01-01,COM,49067,0,CHAMPTEUSSE SUR BACONNE,Champteussé-sur-Baconne,Champteussé-sur-Baconne,COMD,49067,0,CHAMPTEUSSE SUR BACONNE,Champteussé-sur-Baconne,Champteussé-sur-Baconne +32,2016-01-01,COM,49067,0,CHAMPTEUSSE SUR BACONNE,Champteussé-sur-Baconne,Champteussé-sur-Baconne,COM,49067,0,CHENILLE CHAMPTEUSSE,Chenillé-Champteussé,Chenillé-Champteussé 32,2016-01-01,COM,49079,0,CHARTRENE,Chartrené,Chartrené,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou 32,2016-01-01,COM,49079,0,CHARTRENE,Chartrené,Chartrené,COMD,49079,0,CHARTRENE,Chartrené,Chartrené 32,2016-01-01,COM,49084,0,CHAUMONT D ANJOU,Chaumont-d'Anjou,Chaumont-d'Anjou,COMD,49084,0,CHAUMONT D ANJOU,Chaumont-d'Anjou,Chaumont-d'Anjou @@ -4544,39 +4375,40 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,49094,0,CHENEHUTTE TREVES CUNAULT,Chênehutte-Trèves-Cunault,Chênehutte-Trèves-Cunault,COM,49149,0,GENNES VAL DE LOIRE,Gennes-Val de Loire,Gennes-Val de Loire 32,2016-01-01,COM,49095,0,CHENILLE CHANGE,Chenillé-Changé,Chenillé-Changé,COM,49067,0,CHENILLE CHAMPTEUSSE,Chenillé-Champteussé,Chenillé-Champteussé 32,2016-01-01,COM,49095,0,CHENILLE CHANGE,Chenillé-Changé,Chenillé-Changé,COMD,49095,0,CHENILLE CHANGE,Chenillé-Changé,Chenillé-Changé -32,2016-01-01,COM,49097,0,CHEVIRE LE ROUGE,Cheviré-le-Rouge,Cheviré-le-Rouge,COMD,49097,0,CHEVIRE LE ROUGE,Cheviré-le-Rouge,Cheviré-le-Rouge 32,2016-01-01,COM,49097,0,CHEVIRE LE ROUGE,Cheviré-le-Rouge,Cheviré-le-Rouge,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou -32,2016-01-01,COM,49101,0,CLEFS VAL D ANJOU,Clefs-Val d'Anjou,Clefs-Val d'Anjou,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou +32,2016-01-01,COM,49097,0,CHEVIRE LE ROUGE,Cheviré-le-Rouge,Cheviré-le-Rouge,COMD,49097,0,CHEVIRE LE ROUGE,Cheviré-le-Rouge,Cheviré-le-Rouge 32,2016-01-01,COMD,49101,0,CLEFS,Clefs,Clefs,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou +32,2016-01-01,COM,49101,0,CLEFS VAL D ANJOU,Clefs-Val d'Anjou,Clefs-Val d'Anjou,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou 32,2016-01-01,COMD,49101,0,CLEFS,Clefs,Clefs,COMD,49101,0,CLEFS,Clefs,Clefs -32,2016-01-01,COM,49106,0,CORNE,Corné,Corné,COM,49307,0,LOIRE AUTHION,Loire-Authion,Loire-Authion +32,2016-01-01,COM,49101,0,CLEFS VAL D ANJOU,Clefs-Val d'Anjou,Clefs-Val d'Anjou,COMD,49101,0,CLEFS,Clefs,Clefs 32,2016-01-01,COM,49106,0,CORNE,Corné,Corné,COMD,49106,0,CORNE,Corné,Corné -32,2016-01-01,COM,49116,0,CUON,Cuon,Cuon,COMD,49116,0,CUON,Cuon,Cuon +32,2016-01-01,COM,49106,0,CORNE,Corné,Corné,COM,49307,0,LOIRE AUTHION,Loire-Authion,Loire-Authion 32,2016-01-01,COM,49116,0,CUON,Cuon,Cuon,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou +32,2016-01-01,COM,49116,0,CUON,Cuon,Cuon,COMD,49116,0,CUON,Cuon,Cuon 32,2016-01-01,COM,49117,3,DAGUENIERE,Daguenière,La Daguenière,COMD,49117,3,DAGUENIERE,Daguenière,La Daguenière 32,2016-01-01,COM,49117,3,DAGUENIERE,Daguenière,La Daguenière,COM,49307,0,LOIRE AUTHION,Loire-Authion,Loire-Authion 32,2016-01-01,COM,49128,1,ECHEMIRE,Échemiré,Échemiré,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou 32,2016-01-01,COM,49128,1,ECHEMIRE,Échemiré,Échemiré,COMD,49128,1,ECHEMIRE,Échemiré,Échemiré -32,2016-01-01,COM,49133,0,FAVERAYE MACHELLES,Faveraye-Mâchelles,Faveraye-Mâchelles,COM,49345,0,BELLEVIGNE EN LAYON,Bellevigne-en-Layon,Bellevigne-en-Layon 32,2016-01-01,COM,49133,0,FAVERAYE MACHELLES,Faveraye-Mâchelles,Faveraye-Mâchelles,COMD,49133,0,FAVERAYE MACHELLES,Faveraye-Mâchelles,Faveraye-Mâchelles +32,2016-01-01,COM,49133,0,FAVERAYE MACHELLES,Faveraye-Mâchelles,Faveraye-Mâchelles,COM,49345,0,BELLEVIGNE EN LAYON,Bellevigne-en-Layon,Bellevigne-en-Layon 32,2016-01-01,COM,49134,0,FAYE D ANJOU,Faye-d'Anjou,Faye-d'Anjou,COMD,49134,0,FAYE D ANJOU,Faye-d'Anjou,Faye-d'Anjou 32,2016-01-01,COM,49134,0,FAYE D ANJOU,Faye-d'Anjou,Faye-d'Anjou,COM,49345,0,BELLEVIGNE EN LAYON,Bellevigne-en-Layon,Bellevigne-en-Layon 32,2016-01-01,COM,49138,0,FONTAINE GUERIN,Fontaine-Guérin,Fontaine-Guérin,COM,49138,4,BOIS D ANJOU,Bois d'Anjou,Les Bois d'Anjou 32,2016-01-01,COM,49138,0,FONTAINE GUERIN,Fontaine-Guérin,Fontaine-Guérin,COMD,49138,0,FONTAINE GUERIN,Fontaine-Guérin,Fontaine-Guérin 32,2016-01-01,COM,49139,0,FONTAINE MILON,Fontaine-Milon,Fontaine-Milon,COMD,49139,0,FONTAINE MILON,Fontaine-Milon,Fontaine-Milon 32,2016-01-01,COM,49139,0,FONTAINE MILON,Fontaine-Milon,Fontaine-Milon,COM,49194,0,MAZE MILON,Mazé-Milon,Mazé-Milon -32,2016-01-01,COM,49142,3,FOSSE DE TIGNE,Fosse-de-Tigné,La Fosse-de-Tigné,COM,49373,0,LYS HAUT LAYON,Lys-Haut-Layon,Lys-Haut-Layon 32,2016-01-01,COM,49142,3,FOSSE DE TIGNE,Fosse-de-Tigné,La Fosse-de-Tigné,COMD,49142,3,FOSSE DE TIGNE,Fosse-de-Tigné,La Fosse-de-Tigné -32,2016-01-01,COM,49143,0,FOUGERE,Fougeré,Fougeré,COMD,49143,0,FOUGERE,Fougeré,Fougeré +32,2016-01-01,COM,49142,3,FOSSE DE TIGNE,Fosse-de-Tigné,La Fosse-de-Tigné,COM,49373,0,LYS HAUT LAYON,Lys-Haut-Layon,Lys-Haut-Layon 32,2016-01-01,COM,49143,0,FOUGERE,Fougeré,Fougeré,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou +32,2016-01-01,COM,49143,0,FOUGERE,Fougeré,Fougeré,COMD,49143,0,FOUGERE,Fougeré,Fougeré 32,2016-01-01,COM,49147,0,GEE,Gée,Gée,COM,49021,0,BEAUFORT EN ANJOU,Beaufort-en-Anjou,Beaufort-en-Anjou 32,2016-01-01,COM,49147,0,GEE,Gée,Gée,COMD,49147,0,GEE,Gée,Gée 32,2016-01-01,COM,49149,0,GENNES,Gennes,Gennes,COM,49149,0,GENNES VAL DE LOIRE,Gennes-Val de Loire,Gennes-Val de Loire 32,2016-01-01,COM,49149,0,GENNES,Gennes,Gennes,COMD,49149,0,GENNES,Gennes,Gennes 32,2016-01-01,COM,49154,0,GREZILLE,Grézillé,Grézillé,COM,49149,0,GENNES VAL DE LOIRE,Gennes-Val de Loire,Gennes-Val de Loire 32,2016-01-01,COM,49154,0,GREZILLE,Grézillé,Grézillé,COMD,49154,0,GREZILLE,Grézillé,Grézillé -32,2016-01-01,COM,49157,2,GUEDENIAU,Guédeniau,Le Guédeniau,COMD,49157,2,GUEDENIAU,Guédeniau,Le Guédeniau 32,2016-01-01,COM,49157,2,GUEDENIAU,Guédeniau,Le Guédeniau,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou +32,2016-01-01,COM,49157,2,GUEDENIAU,Guédeniau,Le Guédeniau,COMD,49157,2,GUEDENIAU,Guédeniau,Le Guédeniau 32,2016-01-01,COM,49160,1,INGRANDES,Ingrandes,Ingrandes,COM,49160,1,INGRANDES LE FRESNE SUR LOIRE,Ingrandes-Le Fresne sur Loire,Ingrandes-Le Fresne sur Loire 32,2016-01-01,COM,49163,0,JARZE,Jarzé,Jarzé,COMD,49163,0,JARZE,Jarzé,Jarzé 32,2016-01-01,COM,49163,0,JARZE,Jarzé,Jarzé,COM,49163,0,JARZE VILLAGES,Jarzé Villages,Jarzé Villages @@ -4585,23 +4417,23 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,49181,0,LOUERRE,Louerre,Louerre,COMD,49181,0,LOUERRE,Louerre,Louerre 32,2016-01-01,COM,49185,0,LUE EN BAUGEOIS,Lué-en-Baugeois,Lué-en-Baugeois,COM,49163,0,JARZE VILLAGES,Jarzé Villages,Jarzé Villages 32,2016-01-01,COM,49185,0,LUE EN BAUGEOIS,Lué-en-Baugeois,Lué-en-Baugeois,COMD,49185,0,LUE EN BAUGEOIS,Lué-en-Baugeois,Lué-en-Baugeois -32,2016-01-01,COM,49194,0,MAZE,Mazé,Mazé,COMD,49194,0,MAZE,Mazé,Mazé 32,2016-01-01,COM,49194,0,MAZE,Mazé,Mazé,COM,49194,0,MAZE MILON,Mazé-Milon,Mazé-Milon -32,2016-01-01,COM,49196,3,MEIGNANNE,Meignanne,La Meignanne,COM,49200,0,LONGUENEE EN ANJOU,Longuenée-en-Anjou,Longuenée-en-Anjou +32,2016-01-01,COM,49194,0,MAZE,Mazé,Mazé,COMD,49194,0,MAZE,Mazé,Mazé 32,2016-01-01,COM,49196,3,MEIGNANNE,Meignanne,La Meignanne,COMD,49196,3,MEIGNANNE,Meignanne,La Meignanne -32,2016-01-01,COM,49200,3,MEMBROLLE SUR LONGUENEE,Membrolle-sur-Longuenée,La Membrolle-sur-Longuenée,COM,49200,0,LONGUENEE EN ANJOU,Longuenée-en-Anjou,Longuenée-en-Anjou +32,2016-01-01,COM,49196,3,MEIGNANNE,Meignanne,La Meignanne,COM,49200,0,LONGUENEE EN ANJOU,Longuenée-en-Anjou,Longuenée-en-Anjou 32,2016-01-01,COM,49200,3,MEMBROLLE SUR LONGUENEE,Membrolle-sur-Longuenée,La Membrolle-sur-Longuenée,COMD,49200,3,MEMBROLLE SUR LONGUENEE,Membrolle-sur-Longuenée,La Membrolle-sur-Longuenée +32,2016-01-01,COM,49200,3,MEMBROLLE SUR LONGUENEE,Membrolle-sur-Longuenée,La Membrolle-sur-Longuenée,COM,49200,0,LONGUENEE EN ANJOU,Longuenée-en-Anjou,Longuenée-en-Anjou 32,2016-01-01,COMD,49213,0,MONTPOLLIN,Montpollin,Montpollin,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou 32,2016-01-01,COMD,49213,0,MONTPOLLIN,Montpollin,Montpollin,COMD,49213,0,MONTPOLLIN,Montpollin,Montpollin 32,2016-01-01,COM,49220,0,MORANNES,Morannes,Morannes,COM,49220,0,MORANNES SUR SARTHE,Morannes-sur-Sarthe,Morannes-sur-Sarthe -32,2016-01-01,COM,49230,0,NOYANT LA PLAINE,Noyant-la-Plaine,Noyant-la-Plaine,COMD,49230,0,NOYANT LA PLAINE,Noyant-la-Plaine,Noyant-la-Plaine 32,2016-01-01,COM,49230,0,NOYANT LA PLAINE,Noyant-la-Plaine,Noyant-la-Plaine,COM,49003,0,TUFFALUN,Tuffalun,Tuffalun -32,2016-01-01,COM,49232,0,NUEIL SUR LAYON,Nueil-sur-Layon,Nueil-sur-Layon,COM,49373,0,LYS HAUT LAYON,Lys-Haut-Layon,Lys-Haut-Layon +32,2016-01-01,COM,49230,0,NOYANT LA PLAINE,Noyant-la-Plaine,Noyant-la-Plaine,COMD,49230,0,NOYANT LA PLAINE,Noyant-la-Plaine,Noyant-la-Plaine 32,2016-01-01,COM,49232,0,NUEIL SUR LAYON,Nueil-sur-Layon,Nueil-sur-Layon,COMD,49232,0,NUEIL SUR LAYON,Nueil-sur-Layon,Nueil-sur-Layon -32,2016-01-01,COM,49238,0,PELLOUAILLES LES VIGNES,Pellouailles-les-Vignes,Pellouailles-les-Vignes,COM,49323,0,VERRIERES EN ANJOU,Verrières-en-Anjou,Verrières-en-Anjou +32,2016-01-01,COM,49232,0,NUEIL SUR LAYON,Nueil-sur-Layon,Nueil-sur-Layon,COM,49373,0,LYS HAUT LAYON,Lys-Haut-Layon,Lys-Haut-Layon 32,2016-01-01,COM,49238,0,PELLOUAILLES LES VIGNES,Pellouailles-les-Vignes,Pellouailles-les-Vignes,COMD,49238,0,PELLOUAILLES LES VIGNES,Pellouailles-les-Vignes,Pellouailles-les-Vignes -32,2016-01-01,COM,49242,2,PLESSIS MACE,Plessis-Macé,Le Plessis-Macé,COMD,49242,2,PLESSIS MACE,Plessis-Macé,Le Plessis-Macé +32,2016-01-01,COM,49238,0,PELLOUAILLES LES VIGNES,Pellouailles-les-Vignes,Pellouailles-les-Vignes,COM,49323,0,VERRIERES EN ANJOU,Verrières-en-Anjou,Verrières-en-Anjou 32,2016-01-01,COM,49242,2,PLESSIS MACE,Plessis-Macé,Le Plessis-Macé,COM,49200,0,LONGUENEE EN ANJOU,Longuenée-en-Anjou,Longuenée-en-Anjou +32,2016-01-01,COM,49242,2,PLESSIS MACE,Plessis-Macé,Le Plessis-Macé,COMD,49242,2,PLESSIS MACE,Plessis-Macé,Le Plessis-Macé 32,2016-01-01,COMD,49245,0,PONTIGNE,Pontigné,Pontigné,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou 32,2016-01-01,COMD,49245,0,PONTIGNE,Pontigné,Pontigné,COMD,49245,0,PONTIGNE,Pontigné,Pontigné 32,2016-01-01,COM,49251,0,PRUILLE,Pruillé,Pruillé,COM,49200,0,LONGUENEE EN ANJOU,Longuenée-en-Anjou,Longuenée-en-Anjou @@ -4610,14 +4442,14 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,49256,0,RABLAY SUR LAYON,Rablay-sur-Layon,Rablay-sur-Layon,COM,49345,0,BELLEVIGNE EN LAYON,Bellevigne-en-Layon,Bellevigne-en-Layon 32,2016-01-01,COM,49279,0,SAINT GEORGES DES SEPT VOIES,Saint-Georges-des-Sept-Voies,Saint-Georges-des-Sept-Voies,COM,49149,0,GENNES VAL DE LOIRE,Gennes-Val de Loire,Gennes-Val de Loire 32,2016-01-01,COM,49279,0,SAINT GEORGES DES SEPT VOIES,Saint-Georges-des-Sept-Voies,Saint-Georges-des-Sept-Voies,COMD,49279,0,SAINT GEORGES DES SEPT VOIES,Saint-Georges-des-Sept-Voies,Saint-Georges-des-Sept-Voies -32,2016-01-01,COM,49280,0,SAINT GEORGES DU BOIS,Saint-Georges-du-Bois,Saint-Georges-du-Bois,COMD,49280,0,SAINT GEORGES DU BOIS,Saint-Georges-du-Bois,Saint-Georges-du-Bois 32,2016-01-01,COM,49280,0,SAINT GEORGES DU BOIS,Saint-Georges-du-Bois,Saint-Georges-du-Bois,COM,49138,4,BOIS D ANJOU,Bois d'Anjou,Les Bois d'Anjou +32,2016-01-01,COM,49280,0,SAINT GEORGES DU BOIS,Saint-Georges-du-Bois,Saint-Georges-du-Bois,COMD,49280,0,SAINT GEORGES DU BOIS,Saint-Georges-du-Bois,Saint-Georges-du-Bois 32,2016-01-01,COMA,49286,0,SAINT HILAIRE DU BOIS,Saint-Hilaire-du-Bois,Saint-Hilaire-du-Bois,COMD,49286,0,SAINT HILAIRE DU BOIS,Saint-Hilaire-du-Bois,Saint-Hilaire-du-Bois 32,2016-01-01,COMA,49286,0,SAINT HILAIRE DU BOIS,Saint-Hilaire-du-Bois,Saint-Hilaire-du-Bois,COM,49373,0,LYS HAUT LAYON,Lys-Haut-Layon,Lys-Haut-Layon -32,2016-01-01,COMD,49303,0,SAINT MARTIN D ARCE,Saint-Martin-d'Arcé,Saint-Martin-d'Arcé,COMD,49303,0,SAINT MARTIN D ARCE,Saint-Martin-d'Arcé,Saint-Martin-d'Arcé 32,2016-01-01,COMD,49303,0,SAINT MARTIN D ARCE,Saint-Martin-d'Arcé,Saint-Martin-d'Arcé,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou -32,2016-01-01,COM,49307,0,SAINT MATHURIN SUR LOIRE,Saint-Mathurin-sur-Loire,Saint-Mathurin-sur-Loire,COMD,49307,0,SAINT MATHURIN SUR LOIRE,Saint-Mathurin-sur-Loire,Saint-Mathurin-sur-Loire +32,2016-01-01,COMD,49303,0,SAINT MARTIN D ARCE,Saint-Martin-d'Arcé,Saint-Martin-d'Arcé,COMD,49303,0,SAINT MARTIN D ARCE,Saint-Martin-d'Arcé,Saint-Martin-d'Arcé 32,2016-01-01,COM,49307,0,SAINT MATHURIN SUR LOIRE,Saint-Mathurin-sur-Loire,Saint-Mathurin-sur-Loire,COM,49307,0,LOIRE AUTHION,Loire-Authion,Loire-Authion +32,2016-01-01,COM,49307,0,SAINT MATHURIN SUR LOIRE,Saint-Mathurin-sur-Loire,Saint-Mathurin-sur-Loire,COMD,49307,0,SAINT MATHURIN SUR LOIRE,Saint-Mathurin-sur-Loire,Saint-Mathurin-sur-Loire 32,2016-01-01,COM,49315,0,SAINT QUENTIN LES BEAUREPAIRE,Saint-Quentin-lès-Beaurepaire,Saint-Quentin-lès-Beaurepaire,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou 32,2016-01-01,COM,49315,0,SAINT QUENTIN LES BEAUREPAIRE,Saint-Quentin-lès-Beaurepaire,Saint-Quentin-lès-Beaurepaire,COMD,49315,0,SAINT QUENTIN LES BEAUREPAIRE,Saint-Quentin-lès-Beaurepaire,Saint-Quentin-lès-Beaurepaire 32,2016-01-01,COM,49322,0,SAINT SULPICE,Saint-Sulpice,Saint-Sulpice,COM,49029,0,BLAISON SAINT SULPICE,Blaison-Saint-Sulpice,Blaison-Saint-Sulpice @@ -4632,25 +4464,25 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,49346,2,THOUREIL,Thoureil,Le Thoureil,COMD,49346,2,THOUREIL,Thoureil,Le Thoureil 32,2016-01-01,COM,49348,0,TIGNE,Tigné,Tigné,COMD,49348,0,TIGNE,Tigné,Tigné 32,2016-01-01,COM,49348,0,TIGNE,Tigné,Tigné,COM,49373,0,LYS HAUT LAYON,Lys-Haut-Layon,Lys-Haut-Layon -32,2016-01-01,COM,49356,0,TREMONT,Trémont,Trémont,COM,49373,0,LYS HAUT LAYON,Lys-Haut-Layon,Lys-Haut-Layon 32,2016-01-01,COM,49356,0,TREMONT,Trémont,Trémont,COMD,49356,0,TREMONT,Trémont,Trémont +32,2016-01-01,COM,49356,0,TREMONT,Trémont,Trémont,COM,49373,0,LYS HAUT LAYON,Lys-Haut-Layon,Lys-Haut-Layon 32,2016-01-01,COMA,49357,0,TREVES CUNAULT,Trèves-Cunault,Trèves-Cunault,COM,49149,0,GENNES VAL DE LOIRE,Gennes-Val de Loire,Gennes-Val de Loire 32,2016-01-01,COMD,49372,2,VIEIL BAUGE,Vieil-Baugé,Le Vieil-Baugé,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou 32,2016-01-01,COMD,49372,2,VIEIL BAUGE,Vieil-Baugé,Le Vieil-Baugé,COMD,49372,2,VIEIL BAUGE,Vieil-Baugé,Le Vieil-Baugé -32,2016-01-01,COM,49373,0,VIHIERS,Vihiers,Vihiers,COM,49373,0,LYS HAUT LAYON,Lys-Haut-Layon,Lys-Haut-Layon 32,2016-01-01,COM,49373,0,VIHIERS,Vihiers,Vihiers,COMD,49373,0,VIHIERS,Vihiers,Vihiers +32,2016-01-01,COM,49373,0,VIHIERS,Vihiers,Vihiers,COM,49373,0,LYS HAUT LAYON,Lys-Haut-Layon,Lys-Haut-Layon 32,2016-01-01,COMA,49379,2,VOIDE,Voide,Le Voide,COM,49373,0,LYS HAUT LAYON,Lys-Haut-Layon,Lys-Haut-Layon 32,2016-01-01,COMA,49379,2,VOIDE,Voide,Le Voide,COMD,49379,2,VOIDE,Voide,Le Voide -32,2016-01-01,COMD,49380,0,VAULANDRY,Vaulandry,Vaulandry,COMD,49380,0,VAULANDRY,Vaulandry,Vaulandry 32,2016-01-01,COMD,49380,0,VAULANDRY,Vaulandry,Vaulandry,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou -32,2016-01-01,COM,49382,2,FRESNE SUR LOIRE,Fresne-sur-Loire,Le Fresne-sur-Loire,COMD,49382,2,FRESNE SUR LOIRE,Fresne-sur-Loire,Le Fresne-sur-Loire +32,2016-01-01,COMD,49380,0,VAULANDRY,Vaulandry,Vaulandry,COMD,49380,0,VAULANDRY,Vaulandry,Vaulandry 32,2016-01-01,COM,49382,2,FRESNE SUR LOIRE,Fresne-sur-Loire,Le Fresne-sur-Loire,COM,49160,1,INGRANDES LE FRESNE SUR LOIRE,Ingrandes-Le Fresne sur Loire,Ingrandes-Le Fresne sur Loire +32,2016-01-01,COM,49382,2,FRESNE SUR LOIRE,Fresne-sur-Loire,Le Fresne-sur-Loire,COMD,49382,2,FRESNE SUR LOIRE,Fresne-sur-Loire,Le Fresne-sur-Loire 32,2016-01-01,COM,50005,1,AMFREVILLE,Amfreville,Amfreville,COMD,50005,1,AMFREVILLE,Amfreville,Amfreville 32,2016-01-01,COM,50005,1,AMFREVILLE,Amfreville,Amfreville,COM,50400,0,PICAUVILLE,Picauville,Picauville -32,2016-01-01,COM,50009,1,ANGEY,Angey,Angey,COM,50565,0,SARTILLY BAIE BOCAGE,Sartilly-Baie-Bocage,Sartilly-Baie-Bocage 32,2016-01-01,COM,50009,1,ANGEY,Angey,Angey,COMD,50009,1,ANGEY,Angey,Angey -32,2016-01-01,COM,50010,1,ANGOVILLE AU PLAIN,Angoville-au-Plain,Angoville-au-Plain,COM,50099,0,CARENTAN LES MARAIS,Carentan les Marais,Carentan les Marais +32,2016-01-01,COM,50009,1,ANGEY,Angey,Angey,COM,50565,0,SARTILLY BAIE BOCAGE,Sartilly-Baie-Bocage,Sartilly-Baie-Bocage 32,2016-01-01,COM,50010,1,ANGOVILLE AU PLAIN,Angoville-au-Plain,Angoville-au-Plain,COMD,50010,1,ANGOVILLE AU PLAIN,Angoville-au-Plain,Angoville-au-Plain +32,2016-01-01,COM,50010,1,ANGOVILLE AU PLAIN,Angoville-au-Plain,Angoville-au-Plain,COM,50099,0,CARENTAN LES MARAIS,Carentan les Marais,Carentan les Marais 32,2016-01-01,COMA,50011,1,ANGOVILLE EN SAIRE,Angoville-en-Saire,Angoville-en-Saire,COM,50142,0,VICQ SUR MER,Vicq-sur-Mer,Vicq-sur-Mer 32,2016-01-01,COM,50012,1,ANGOVILLE SUR AY,Angoville-sur-Ay,Angoville-sur-Ay,COMD,50012,1,ANGOVILLE SUR AY,Angoville-sur-Ay,Angoville-sur-Ay 32,2016-01-01,COM,50012,1,ANGOVILLE SUR AY,Angoville-sur-Ay,Angoville-sur-Ay,COM,50267,0,LESSAY,Lessay,Lessay @@ -4659,49 +4491,49 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,50035,0,BAUDREVILLE,Baudreville,Baudreville,COM,50236,3,HAYE,Haye,La Haye 32,2016-01-01,COM,50051,0,BEUZEVILLE AU PLAIN,Beuzeville-au-Plain,Beuzeville-au-Plain,COMD,50051,0,BEUZEVILLE AU PLAIN,Beuzeville-au-Plain,Beuzeville-au-Plain 32,2016-01-01,COM,50051,0,BEUZEVILLE AU PLAIN,Beuzeville-au-Plain,Beuzeville-au-Plain,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église -32,2016-01-01,COM,50056,0,BION,Bion,Bion,COM,50359,0,MORTAIN BOCAGE,Mortain-Bocage,Mortain-Bocage 32,2016-01-01,COM,50056,0,BION,Bion,Bion,COMD,50056,0,BION,Bion,Bion -32,2016-01-01,COM,50061,0,BOISROGER,Boisroger,Boisroger,COM,50215,0,GOUVILLE SUR MER,Gouville sur Mer,Gouville sur Mer +32,2016-01-01,COM,50056,0,BION,Bion,Bion,COM,50359,0,MORTAIN BOCAGE,Mortain-Bocage,Mortain-Bocage 32,2016-01-01,COM,50061,0,BOISROGER,Boisroger,Boisroger,COMD,50061,0,BOISROGER,Boisroger,Boisroger +32,2016-01-01,COM,50061,0,BOISROGER,Boisroger,Boisroger,COM,50215,0,GOUVILLE SUR MER,Gouville sur Mer,Gouville sur Mer 32,2016-01-01,COM,50063,0,BOLLEVILLE,Bolleville,Bolleville,COMD,50063,0,BOLLEVILLE,Bolleville,Bolleville 32,2016-01-01,COM,50063,0,BOLLEVILLE,Bolleville,Bolleville,COM,50236,3,HAYE,Haye,La Haye 32,2016-01-01,COMA,50065,0,BOUCEY,Boucey,Boucey,COM,50410,0,PONTORSON,Pontorson,Pontorson 32,2016-01-01,COM,50071,0,BRAFFAIS,Braffais,Braffais,COM,50535,2,PARC,Parc,Le Parc -32,2016-01-01,COM,50075,0,BRECTOUVILLE,Brectouville,Brectouville,COM,50601,0,TORIGNY LES VILLES,Torigny-les-Villes,Torigny-les-Villes 32,2016-01-01,COM,50075,0,BRECTOUVILLE,Brectouville,Brectouville,COMD,50075,0,BRECTOUVILLE,Brectouville,Brectouville +32,2016-01-01,COM,50075,0,BRECTOUVILLE,Brectouville,Brectouville,COM,50601,0,TORIGNY LES VILLES,Torigny-les-Villes,Torigny-les-Villes 32,2016-01-01,COM,50082,0,BRICQUEBEC,Bricquebec,Bricquebec,COMD,50082,0,BRICQUEBEC,Bricquebec,Bricquebec 32,2016-01-01,COM,50082,0,BRICQUEBEC,Bricquebec,Bricquebec,COM,50082,0,BRICQUEBEC EN COTENTIN,Bricquebec-en-Cotentin,Bricquebec-en-Cotentin 32,2016-01-01,COM,50090,0,BUAIS,Buais,Buais,COMD,50090,0,BUAIS,Buais,Buais 32,2016-01-01,COM,50090,0,BUAIS,Buais,Buais,COM,50090,0,BUAIS LES MONTS,Buais-Les-Monts,Buais-Les-Monts -32,2016-01-01,COM,50099,0,CARENTAN,Carentan,Carentan,COM,50099,0,CARENTAN LES MARAIS,Carentan les Marais,Carentan les Marais 32,2016-01-01,COM,50099,0,CARENTAN,Carentan,Carentan,COMD,50099,0,CARENTAN,Carentan,Carentan +32,2016-01-01,COM,50099,0,CARENTAN,Carentan,Carentan,COM,50099,0,CARENTAN LES MARAIS,Carentan les Marais,Carentan les Marais 32,2016-01-01,COM,50114,4,CHAMBRES,Chambres,Les Chambres,COM,50115,2,GRIPPON,Grippon,Le Grippon 32,2016-01-01,COM,50115,0,CHAMPCERVON,Champcervon,Champcervon,COM,50115,2,GRIPPON,Grippon,Le Grippon 32,2016-01-01,COM,50116,0,CHAMPCEY,Champcey,Champcey,COMD,50116,0,CHAMPCEY,Champcey,Champcey 32,2016-01-01,COM,50116,0,CHAMPCEY,Champcey,Champcey,COM,50565,0,SARTILLY BAIE BOCAGE,Sartilly-Baie-Bocage,Sartilly-Baie-Bocage -32,2016-01-01,COM,50123,3,CHAPELLE EN JUGER,Chapelle-en-Juger,La Chapelle-en-Juger,COM,50239,0,THEREVAL,Thèreval,Thèreval 32,2016-01-01,COM,50123,3,CHAPELLE EN JUGER,Chapelle-en-Juger,La Chapelle-en-Juger,COMD,50123,3,CHAPELLE EN JUGER,Chapelle-en-Juger,La Chapelle-en-Juger -32,2016-01-01,COM,50127,0,CHEF DU PONT,Chef-du-Pont,Chef-du-Pont,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église +32,2016-01-01,COM,50123,3,CHAPELLE EN JUGER,Chapelle-en-Juger,La Chapelle-en-Juger,COM,50239,0,THEREVAL,Thèreval,Thèreval 32,2016-01-01,COM,50127,0,CHEF DU PONT,Chef-du-Pont,Chef-du-Pont,COMD,50127,0,CHEF DU PONT,Chef-du-Pont,Chef-du-Pont +32,2016-01-01,COM,50127,0,CHEF DU PONT,Chef-du-Pont,Chef-du-Pont,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église 32,2016-01-01,COM,50128,2,CHEFRESNE,Chefresne,Le Chefresne,COMD,50128,2,CHEFRESNE,Chefresne,Le Chefresne 32,2016-01-01,COM,50128,2,CHEFRESNE,Chefresne,Le Chefresne,COM,50393,0,PERCY EN NORMANDIE,Percy-en-Normandie,Percy-en-Normandie -32,2016-01-01,COM,50129,0,CHERBOURG OCTEVILLE,Cherbourg-Octeville,Cherbourg-Octeville,COM,50129,0,CHERBOURG EN COTENTIN,Cherbourg-en-Cotentin,Cherbourg-en-Cotentin 32,2016-01-01,COM,50129,0,CHERBOURG OCTEVILLE,Cherbourg-Octeville,Cherbourg-Octeville,COMD,50129,0,CHERBOURG OCTEVILLE,Cherbourg-Octeville,Cherbourg-Octeville -32,2016-01-01,COM,50132,4,CHERIS,Chéris,Les Chéris,COM,50168,0,DUCEY LES CHERIS,Ducey-Les Chéris,Ducey-Les Chéris +32,2016-01-01,COM,50129,0,CHERBOURG OCTEVILLE,Cherbourg-Octeville,Cherbourg-Octeville,COM,50129,0,CHERBOURG EN COTENTIN,Cherbourg-en-Cotentin,Cherbourg-en-Cotentin 32,2016-01-01,COM,50132,4,CHERIS,Chéris,Les Chéris,COMD,50132,4,CHERIS,Chéris,Les Chéris -32,2016-01-01,COM,50133,0,CHEVREVILLE,Chèvreville,Chèvreville,COM,50391,0,GRANDPARIGNY,Grandparigny,Grandparigny +32,2016-01-01,COM,50132,4,CHERIS,Chéris,Les Chéris,COM,50168,0,DUCEY LES CHERIS,Ducey-Les Chéris,Ducey-Les Chéris 32,2016-01-01,COM,50133,0,CHEVREVILLE,Chèvreville,Chèvreville,COMD,50133,0,CHEVREVILLE,Chèvreville,Chèvreville +32,2016-01-01,COM,50133,0,CHEVREVILLE,Chèvreville,Chèvreville,COM,50391,0,GRANDPARIGNY,Grandparigny,Grandparigny 32,2016-01-01,COM,50134,0,CHEVRY,Chevry,Chevry,COMD,50134,0,CHEVRY,Chevry,Chevry 32,2016-01-01,COM,50134,0,CHEVRY,Chevry,Chevry,COM,50363,0,MOYON VILLAGES,Moyon Villages,Moyon Villages -32,2016-01-01,COM,50136,0,COIGNY,Coigny,Coigny,COM,50273,0,MONTSENELLE,Montsenelle,Montsenelle 32,2016-01-01,COM,50136,0,COIGNY,Coigny,Coigny,COMD,50136,0,COIGNY,Coigny,Coigny -32,2016-01-01,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire,COMD,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire +32,2016-01-01,COM,50136,0,COIGNY,Coigny,Coigny,COM,50273,0,MONTSENELLE,Montsenelle,Montsenelle 32,2016-01-01,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire +32,2016-01-01,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire,COMD,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire 32,2016-01-01,COMA,50141,0,CORMERAY,Cormeray,Cormeray,COM,50410,0,PONTORSON,Pontorson,Pontorson 32,2016-01-01,COM,50142,0,COSQUEVILLE,Cosqueville,Cosqueville,COM,50142,0,VICQ SUR MER,Vicq-sur-Mer,Vicq-sur-Mer 32,2016-01-01,COM,50142,0,COSQUEVILLE,Cosqueville,Cosqueville,COMD,50142,0,COSQUEVILLE,Cosqueville,Cosqueville -32,2016-01-01,COM,50153,0,CRETTEVILLE,Cretteville,Cretteville,COM,50400,0,PICAUVILLE,Picauville,Picauville 32,2016-01-01,COM,50153,0,CRETTEVILLE,Cretteville,Cretteville,COMD,50153,0,CRETTEVILLE,Cretteville,Cretteville +32,2016-01-01,COM,50153,0,CRETTEVILLE,Cretteville,Cretteville,COM,50400,0,PICAUVILLE,Picauville,Picauville 32,2016-01-01,COMA,50157,0,CUREY,Curey,Curey,COM,50410,0,PONTORSON,Pontorson,Pontorson 32,2016-01-01,COM,50168,0,DUCEY,Ducey,Ducey,COMD,50168,0,DUCEY,Ducey,Ducey 32,2016-01-01,COM,50168,0,DUCEY,Ducey,Ducey,COM,50168,0,DUCEY LES CHERIS,Ducey-Les Chéris,Ducey-Les Chéris @@ -4709,8 +4541,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,50170,1,ECOQUENEAUVILLE,Écoquenéauville,Écoquenéauville,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église 32,2016-01-01,COM,50173,1,EQUEURDREVILLE HAINNEVILLE,Équeurdreville-Hainneville,Équeurdreville-Hainneville,COM,50129,0,CHERBOURG EN COTENTIN,Cherbourg-en-Cotentin,Cherbourg-en-Cotentin 32,2016-01-01,COM,50173,1,EQUEURDREVILLE HAINNEVILLE,Équeurdreville-Hainneville,Équeurdreville-Hainneville,COMD,50173,1,EQUEURDREVILLE HAINNEVILLE,Équeurdreville-Hainneville,Équeurdreville-Hainneville -32,2016-01-01,COM,50179,0,FERRIERES,Ferrières,Ferrières,COM,50591,2,TEILLEUL,Teilleul,Le Teilleul 32,2016-01-01,COM,50179,0,FERRIERES,Ferrières,Ferrières,COMD,50179,0,FERRIERES,Ferrières,Ferrières +32,2016-01-01,COM,50179,0,FERRIERES,Ferrières,Ferrières,COM,50591,2,TEILLEUL,Teilleul,Le Teilleul 32,2016-01-01,COM,50180,0,FERVACHES,Fervaches,Fervaches,COMD,50180,0,FERVACHES,Fervaches,Fervaches 32,2016-01-01,COM,50180,0,FERVACHES,Fervaches,Fervaches,COM,50592,0,TESSY BOCAGE,Tessy Bocage,Tessy Bocage 32,2016-01-01,COM,50189,0,FONTENAY,Fontenay,Fontenay,COMD,50189,0,FONTENAY,Fontenay,Fontenay @@ -4721,71 +4553,71 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,50202,0,GIEVILLE,Giéville,Giéville,COM,50601,0,TORIGNY LES VILLES,Torigny-les-Villes,Torigny-les-Villes 32,2016-01-01,COM,50203,3,GLACERIE,Glacerie,La Glacerie,COM,50129,0,CHERBOURG EN COTENTIN,Cherbourg-en-Cotentin,Cherbourg-en-Cotentin 32,2016-01-01,COM,50203,3,GLACERIE,Glacerie,La Glacerie,COMD,50203,3,GLACERIE,Glacerie,La Glacerie -32,2016-01-01,COM,50204,0,GLATIGNY,Glatigny,Glatigny,COM,50236,3,HAYE,Haye,La Haye 32,2016-01-01,COM,50204,0,GLATIGNY,Glatigny,Glatigny,COMD,50204,0,GLATIGNY,Glatigny,Glatigny +32,2016-01-01,COM,50204,0,GLATIGNY,Glatigny,Glatigny,COM,50236,3,HAYE,Haye,La Haye 32,2016-01-01,COM,50209,0,GONNEVILLE,Gonneville,Gonneville,COM,50209,0,GONNEVILLE LE THEIL,Gonneville-Le Theil,Gonneville-Le Theil 32,2016-01-01,COM,50209,0,GONNEVILLE,Gonneville,Gonneville,COMD,50209,0,GONNEVILLE,Gonneville,Gonneville -32,2016-01-01,COM,50211,0,GOUBERVILLE,Gouberville,Gouberville,COMD,50211,0,GOUBERVILLE,Gouberville,Gouberville 32,2016-01-01,COM,50211,0,GOUBERVILLE,Gouberville,Gouberville,COM,50142,0,VICQ SUR MER,Vicq-sur-Mer,Vicq-sur-Mer -32,2016-01-01,COM,50212,0,GOURBESVILLE,Gourbesville,Gourbesville,COM,50400,0,PICAUVILLE,Picauville,Picauville +32,2016-01-01,COM,50211,0,GOUBERVILLE,Gouberville,Gouberville,COMD,50211,0,GOUBERVILLE,Gouberville,Gouberville 32,2016-01-01,COM,50212,0,GOURBESVILLE,Gourbesville,Gourbesville,COMD,50212,0,GOURBESVILLE,Gourbesville,Gourbesville +32,2016-01-01,COM,50212,0,GOURBESVILLE,Gourbesville,Gourbesville,COM,50400,0,PICAUVILLE,Picauville,Picauville 32,2016-01-01,COM,50213,0,GOURFALEUR,Gourfaleur,Gourfaleur,COMD,50213,0,GOURFALEUR,Gourfaleur,Gourfaleur 32,2016-01-01,COM,50213,0,GOURFALEUR,Gourfaleur,Gourfaleur,COM,50546,0,BOURGVALLEES,Bourgvallées,Bourgvallées -32,2016-01-01,COM,50215,0,GOUVILLE SUR MER,Gouville-sur-Mer,Gouville-sur-Mer,COMD,50215,0,GOUVILLE SUR MER,Gouville-sur-Mer,Gouville-sur-Mer 32,2016-01-01,COM,50215,0,GOUVILLE SUR MER,Gouville-sur-Mer,Gouville-sur-Mer,COM,50215,0,GOUVILLE SUR MER,Gouville sur Mer,Gouville sur Mer +32,2016-01-01,COM,50215,0,GOUVILLE SUR MER,Gouville-sur-Mer,Gouville-sur-Mer,COMD,50215,0,GOUVILLE SUR MER,Gouville-sur-Mer,Gouville-sur-Mer 32,2016-01-01,COM,50224,0,GUILBERVILLE,Guilberville,Guilberville,COMD,50224,0,GUILBERVILLE,Guilberville,Guilberville 32,2016-01-01,COM,50224,0,GUILBERVILLE,Guilberville,Guilberville,COM,50601,0,TORIGNY LES VILLES,Torigny-les-Villes,Torigny-les-Villes 32,2016-01-01,COM,50236,3,HAYE DU PUITS,Haye-du-Puits,La Haye-du-Puits,COMD,50236,3,HAYE DU PUITS,Haye-du-Puits,La Haye-du-Puits 32,2016-01-01,COM,50236,3,HAYE DU PUITS,Haye-du-Puits,La Haye-du-Puits,COM,50236,3,HAYE,Haye,La Haye -32,2016-01-01,COM,50239,1,HEBECREVON,Hébécrevon,Hébécrevon,COMD,50239,1,HEBECREVON,Hébécrevon,Hébécrevon 32,2016-01-01,COM,50239,1,HEBECREVON,Hébécrevon,Hébécrevon,COM,50239,0,THEREVAL,Thèreval,Thèreval +32,2016-01-01,COM,50239,1,HEBECREVON,Hébécrevon,Hébécrevon,COMD,50239,1,HEBECREVON,Hébécrevon,Hébécrevon 32,2016-01-01,COM,50245,0,HEUSSE,Heussé,Heussé,COMD,50245,0,HEUSSE,Heussé,Heussé 32,2016-01-01,COM,50245,0,HEUSSE,Heussé,Heussé,COM,50591,2,TEILLEUL,Teilleul,Le Teilleul 32,2016-01-01,COM,50249,0,HOUESVILLE,Houesville,Houesville,COM,50099,0,CARENTAN LES MARAIS,Carentan les Marais,Carentan les Marais 32,2016-01-01,COM,50249,0,HOUESVILLE,Houesville,Houesville,COMD,50249,0,HOUESVILLE,Houesville,Houesville -32,2016-01-01,COM,50250,1,HOUTTEVILLE,Houtteville,Houtteville,COM,50400,0,PICAUVILLE,Picauville,Picauville 32,2016-01-01,COM,50250,1,HOUTTEVILLE,Houtteville,Houtteville,COMD,50250,1,HOUTTEVILLE,Houtteville,Houtteville +32,2016-01-01,COM,50250,1,HOUTTEVILLE,Houtteville,Houtteville,COM,50400,0,PICAUVILLE,Picauville,Picauville 32,2016-01-01,COM,50254,0,HUSSON,Husson,Husson,COMD,50254,0,HUSSON,Husson,Husson 32,2016-01-01,COM,50254,0,HUSSON,Husson,Husson,COM,50591,2,TEILLEUL,Teilleul,Le Teilleul -32,2016-01-01,COM,50255,0,HYENVILLE,Hyenville,Hyenville,COM,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne 32,2016-01-01,COM,50255,0,HYENVILLE,Hyenville,Hyenville,COMD,50255,0,HYENVILLE,Hyenville,Hyenville -32,2016-01-01,COM,50267,0,LESSAY,Lessay,Lessay,COM,50267,0,LESSAY,Lessay,Lessay +32,2016-01-01,COM,50255,0,HYENVILLE,Hyenville,Hyenville,COM,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne 32,2016-01-01,COM,50267,0,LESSAY,Lessay,Lessay,COMD,50267,0,LESSAY,Lessay,Lessay -32,2016-01-01,COM,50273,0,LITHAIRE,Lithaire,Lithaire,COM,50273,0,MONTSENELLE,Montsenelle,Montsenelle +32,2016-01-01,COM,50267,0,LESSAY,Lessay,Lessay,COM,50267,0,LESSAY,Lessay,Lessay 32,2016-01-01,COM,50273,0,LITHAIRE,Lithaire,Lithaire,COMD,50273,0,LITHAIRE,Lithaire,Lithaire +32,2016-01-01,COM,50273,0,LITHAIRE,Lithaire,Lithaire,COM,50273,0,MONTSENELLE,Montsenelle,Montsenelle 32,2016-01-01,COM,50280,0,LOZON,Lozon,Lozon,COMD,50280,0,LOZON,Lozon,Lozon 32,2016-01-01,COM,50280,0,LOZON,Lozon,Lozon,COM,50292,0,MARIGNY LE LOZON,Marigny-Le-Lozon,Marigny-Le-Lozon 32,2016-01-01,COM,50284,0,MACEY,Macey,Macey,COMD,50284,0,MACEY,Macey,Macey 32,2016-01-01,COM,50284,0,MACEY,Macey,Macey,COM,50410,0,PONTORSON,Pontorson,Pontorson -32,2016-01-01,COM,50287,3,MANCELLIERE SUR VIRE,Mancellière-sur-Vire,La Mancellière-sur-Vire,COM,50546,0,BOURGVALLEES,Bourgvallées,Bourgvallées 32,2016-01-01,COM,50287,3,MANCELLIERE SUR VIRE,Mancellière-sur-Vire,La Mancellière-sur-Vire,COMD,50287,3,MANCELLIERE SUR VIRE,Mancellière-sur-Vire,La Mancellière-sur-Vire -32,2016-01-01,COM,50292,0,MARIGNY,Marigny,Marigny,COMD,50292,0,MARIGNY,Marigny,Marigny +32,2016-01-01,COM,50287,3,MANCELLIERE SUR VIRE,Mancellière-sur-Vire,La Mancellière-sur-Vire,COM,50546,0,BOURGVALLEES,Bourgvallées,Bourgvallées 32,2016-01-01,COM,50292,0,MARIGNY,Marigny,Marigny,COM,50292,0,MARIGNY LE LOZON,Marigny-Le-Lozon,Marigny-Le-Lozon -32,2016-01-01,COM,50293,0,MARTIGNY,Martigny,Martigny,COM,50391,0,GRANDPARIGNY,Grandparigny,Grandparigny +32,2016-01-01,COM,50292,0,MARIGNY,Marigny,Marigny,COMD,50292,0,MARIGNY,Marigny,Marigny 32,2016-01-01,COM,50293,0,MARTIGNY,Martigny,Martigny,COMD,50293,0,MARTIGNY,Martigny,Martigny -32,2016-01-01,COM,50316,2,MESNIL OPAC,Mesnil-Opac,Le Mesnil-Opac,COM,50363,0,MOYON VILLAGES,Moyon Villages,Moyon Villages +32,2016-01-01,COM,50293,0,MARTIGNY,Martigny,Martigny,COM,50391,0,GRANDPARIGNY,Grandparigny,Grandparigny 32,2016-01-01,COM,50316,2,MESNIL OPAC,Mesnil-Opac,Le Mesnil-Opac,COMD,50316,2,MESNIL OPAC,Mesnil-Opac,Le Mesnil-Opac +32,2016-01-01,COM,50316,2,MESNIL OPAC,Mesnil-Opac,Le Mesnil-Opac,COM,50363,0,MOYON VILLAGES,Moyon Villages,Moyon Villages 32,2016-01-01,COM,50319,2,MESNIL RAOULT,Mesnil-Raoult,Le Mesnil-Raoult,COM,50139,0,CONDE SUR VIRE,Condé-sur-Vire,Condé-sur-Vire 32,2016-01-01,COM,50319,2,MESNIL RAOULT,Mesnil-Raoult,Le Mesnil-Raoult,COMD,50319,2,MESNIL RAOULT,Mesnil-Raoult,Le Mesnil-Raoult -32,2016-01-01,COM,50329,0,MILLY,Milly,Milly,COM,50391,0,GRANDPARIGNY,Grandparigny,Grandparigny 32,2016-01-01,COM,50329,0,MILLY,Milly,Milly,COMD,50329,0,MILLY,Milly,Milly +32,2016-01-01,COM,50329,0,MILLY,Milly,Milly,COM,50391,0,GRANDPARIGNY,Grandparigny,Grandparigny 32,2016-01-01,COM,50330,0,MOBECQ,Mobecq,Mobecq,COM,50236,3,HAYE,Haye,La Haye 32,2016-01-01,COM,50330,0,MOBECQ,Mobecq,Mobecq,COMD,50330,0,MOBECQ,Mobecq,Mobecq 32,2016-01-01,COMA,50331,0,MOIDREY,Moidrey,Moidrey,COM,50410,0,PONTORSON,Pontorson,Pontorson 32,2016-01-01,COM,50339,0,MONTCHATON,Montchaton,Montchaton,COMD,50339,0,MONTCHATON,Montchaton,Montchaton 32,2016-01-01,COM,50339,0,MONTCHATON,Montchaton,Montchaton,COM,50388,1,ORVAL SUR SIENNE,Orval sur Sienne,Orval sur Sienne -32,2016-01-01,COM,50343,0,MONTGARDON,Montgardon,Montgardon,COMD,50343,0,MONTGARDON,Montgardon,Montgardon 32,2016-01-01,COM,50343,0,MONTGARDON,Montgardon,Montgardon,COM,50236,3,HAYE,Haye,La Haye +32,2016-01-01,COM,50343,0,MONTGARDON,Montgardon,Montgardon,COMD,50343,0,MONTGARDON,Montgardon,Montgardon 32,2016-01-01,COM,50355,0,MONTVIRON,Montviron,Montviron,COMD,50355,0,MONTVIRON,Montviron,Montviron 32,2016-01-01,COM,50355,0,MONTVIRON,Montviron,Montviron,COM,50565,0,SARTILLY BAIE BOCAGE,Sartilly-Baie-Bocage,Sartilly-Baie-Bocage -32,2016-01-01,COM,50359,0,MORTAIN,Mortain,Mortain,COM,50359,0,MORTAIN BOCAGE,Mortain-Bocage,Mortain-Bocage 32,2016-01-01,COM,50359,0,MORTAIN,Mortain,Mortain,COMD,50359,0,MORTAIN,Mortain,Mortain -32,2016-01-01,COM,50363,0,MOYON,Moyon,Moyon,COM,50363,0,MOYON VILLAGES,Moyon Villages,Moyon Villages +32,2016-01-01,COM,50359,0,MORTAIN,Mortain,Mortain,COM,50359,0,MORTAIN BOCAGE,Mortain-Bocage,Mortain-Bocage 32,2016-01-01,COM,50363,0,MOYON,Moyon,Moyon,COMD,50363,0,MOYON,Moyon,Moyon -32,2016-01-01,COM,50375,0,NEVILLE SUR MER,Néville-sur-Mer,Néville-sur-Mer,COMD,50375,0,NEVILLE SUR MER,Néville-sur-Mer,Néville-sur-Mer +32,2016-01-01,COM,50363,0,MOYON,Moyon,Moyon,COM,50363,0,MOYON VILLAGES,Moyon Villages,Moyon Villages 32,2016-01-01,COM,50375,0,NEVILLE SUR MER,Néville-sur-Mer,Néville-sur-Mer,COM,50142,0,VICQ SUR MER,Vicq-sur-Mer,Vicq-sur-Mer -32,2016-01-01,COM,50380,0,NOTRE DAME D ELLE,Notre-Dame-d'Elle,Notre-Dame-d'Elle,COM,50492,0,SAINT JEAN D ELLE,Saint-Jean-d'Elle,Saint-Jean-d'Elle +32,2016-01-01,COM,50375,0,NEVILLE SUR MER,Néville-sur-Mer,Néville-sur-Mer,COMD,50375,0,NEVILLE SUR MER,Néville-sur-Mer,Néville-sur-Mer 32,2016-01-01,COM,50380,0,NOTRE DAME D ELLE,Notre-Dame-d'Elle,Notre-Dame-d'Elle,COMD,50380,0,NOTRE DAME D ELLE,Notre-Dame-d'Elle,Notre-Dame-d'Elle +32,2016-01-01,COM,50380,0,NOTRE DAME D ELLE,Notre-Dame-d'Elle,Notre-Dame-d'Elle,COM,50492,0,SAINT JEAN D ELLE,Saint-Jean-d'Elle,Saint-Jean-d'Elle 32,2016-01-01,COM,50381,0,NOTRE DAME DU TOUCHET,Notre-Dame-du-Touchet,Notre-Dame-du-Touchet,COM,50359,0,MORTAIN BOCAGE,Mortain-Bocage,Mortain-Bocage 32,2016-01-01,COM,50381,0,NOTRE DAME DU TOUCHET,Notre-Dame-du-Touchet,Notre-Dame-du-Touchet,COMD,50381,0,NOTRE DAME DU TOUCHET,Notre-Dame-du-Touchet,Notre-Dame-du-Touchet 32,2016-01-01,COM,50388,1,ORVAL,Orval,Orval,COMD,50388,1,ORVAL,Orval,Orval @@ -4793,8 +4625,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,50391,0,PARIGNY,Parigny,Parigny,COMD,50391,0,PARIGNY,Parigny,Parigny 32,2016-01-01,COM,50391,0,PARIGNY,Parigny,Parigny,COM,50391,0,GRANDPARIGNY,Grandparigny,Grandparigny 32,2016-01-01,COMA,50392,4,PAS,Pas,Les Pas,COM,50410,0,PONTORSON,Pontorson,Pontorson -32,2016-01-01,COM,50393,0,PERCY,Percy,Percy,COMD,50393,0,PERCY,Percy,Percy 32,2016-01-01,COM,50393,0,PERCY,Percy,Percy,COM,50393,0,PERCY EN NORMANDIE,Percy-en-Normandie,Percy-en-Normandie +32,2016-01-01,COM,50393,0,PERCY,Percy,Percy,COMD,50393,0,PERCY,Percy,Percy 32,2016-01-01,COM,50396,4,PERQUES,Perques,Les Perques,COM,50082,0,BRICQUEBEC EN COTENTIN,Bricquebec-en-Cotentin,Bricquebec-en-Cotentin 32,2016-01-01,COM,50396,4,PERQUES,Perques,Les Perques,COMD,50396,4,PERQUES,Perques,Les Perques 32,2016-01-01,COM,50400,0,PICAUVILLE,Picauville,Picauville,COM,50400,0,PICAUVILLE,Picauville,Picauville @@ -4806,87 +4638,87 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,50414,0,PRECORBIN,Précorbin,Précorbin,COM,50492,0,SAINT JEAN D ELLE,Saint-Jean-d'Elle,Saint-Jean-d'Elle 32,2016-01-01,COM,50415,0,PRETOT SAINTE SUZANNE,Prétot-Sainte-Suzanne,Prétot-Sainte-Suzanne,COM,50273,0,MONTSENELLE,Montsenelle,Montsenelle 32,2016-01-01,COM,50415,0,PRETOT SAINTE SUZANNE,Prétot-Sainte-Suzanne,Prétot-Sainte-Suzanne,COMD,50415,0,PRETOT SAINTE SUZANNE,Prétot-Sainte-Suzanne,Prétot-Sainte-Suzanne -32,2016-01-01,COM,50416,0,QUERQUEVILLE,Querqueville,Querqueville,COMD,50416,0,QUERQUEVILLE,Querqueville,Querqueville 32,2016-01-01,COM,50416,0,QUERQUEVILLE,Querqueville,Querqueville,COM,50129,0,CHERBOURG EN COTENTIN,Cherbourg-en-Cotentin,Cherbourg-en-Cotentin -32,2016-01-01,COM,50418,0,QUETTETOT,Quettetot,Quettetot,COMD,50418,0,QUETTETOT,Quettetot,Quettetot +32,2016-01-01,COM,50416,0,QUERQUEVILLE,Querqueville,Querqueville,COMD,50416,0,QUERQUEVILLE,Querqueville,Querqueville 32,2016-01-01,COM,50418,0,QUETTETOT,Quettetot,Quettetot,COM,50082,0,BRICQUEBEC EN COTENTIN,Bricquebec-en-Cotentin,Bricquebec-en-Cotentin +32,2016-01-01,COM,50418,0,QUETTETOT,Quettetot,Quettetot,COMD,50418,0,QUETTETOT,Quettetot,Quettetot 32,2016-01-01,COM,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne,COMD,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne 32,2016-01-01,COM,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne,COM,50419,0,QUETTREVILLE SUR SIENNE,Quettreville-sur-Sienne,Quettreville-sur-Sienne -32,2016-01-01,COM,50432,0,RETHOVILLE,Réthoville,Réthoville,COMD,50432,0,RETHOVILLE,Réthoville,Réthoville 32,2016-01-01,COM,50432,0,RETHOVILLE,Réthoville,Réthoville,COM,50142,0,VICQ SUR MER,Vicq-sur-Mer,Vicq-sur-Mer +32,2016-01-01,COM,50432,0,RETHOVILLE,Réthoville,Réthoville,COMD,50432,0,RETHOVILLE,Réthoville,Réthoville 32,2016-01-01,COM,50434,3,ROCHELLE NORMANDE,Rochelle-Normande,La Rochelle-Normande,COMD,50434,3,ROCHELLE NORMANDE,Rochelle-Normande,La Rochelle-Normande 32,2016-01-01,COM,50434,3,ROCHELLE NORMANDE,Rochelle-Normande,La Rochelle-Normande,COM,50565,0,SARTILLY BAIE BOCAGE,Sartilly-Baie-Bocage,Sartilly-Baie-Bocage 32,2016-01-01,COM,50436,0,ROMAGNY,Romagny,Romagny,COMD,50436,0,ROMAGNY,Romagny,Romagny 32,2016-01-01,COM,50436,0,ROMAGNY,Romagny,Romagny,COM,50436,0,ROMAGNY FONTENAY,Romagny Fontenay,Romagny Fontenay 32,2016-01-01,COM,50440,0,ROUFFIGNY,Rouffigny,Rouffigny,COMD,50440,0,ROUFFIGNY,Rouffigny,Rouffigny 32,2016-01-01,COM,50440,0,ROUFFIGNY,Rouffigny,Rouffigny,COM,50639,0,VILLEDIEU LES POELES ROUFFIGNY,Villedieu-les-Poêles-Rouffigny,Villedieu-les-Poêles-Rouffigny -32,2016-01-01,COM,50441,0,ROUXEVILLE,Rouxeville,Rouxeville,COM,50492,0,SAINT JEAN D ELLE,Saint-Jean-d'Elle,Saint-Jean-d'Elle 32,2016-01-01,COM,50441,0,ROUXEVILLE,Rouxeville,Rouxeville,COMD,50441,0,ROUXEVILLE,Rouxeville,Rouxeville +32,2016-01-01,COM,50441,0,ROUXEVILLE,Rouxeville,Rouxeville,COM,50492,0,SAINT JEAN D ELLE,Saint-Jean-d'Elle,Saint-Jean-d'Elle 32,2016-01-01,COM,50458,0,SAINT COME DU MONT,Saint-Côme-du-Mont,Saint-Côme-du-Mont,COM,50099,0,CARENTAN LES MARAIS,Carentan les Marais,Carentan les Marais 32,2016-01-01,COM,50458,0,SAINT COME DU MONT,Saint-Côme-du-Mont,Saint-Côme-du-Mont,COMD,50458,0,SAINT COME DU MONT,Saint-Côme-du-Mont,Saint-Côme-du-Mont -32,2016-01-01,COM,50470,0,SAINT GEORGES DE BOHON,Saint-Georges-de-Bohon,Saint-Georges-de-Bohon,COM,50564,0,TERRE ET MARAIS,Terre-et-Marais,Terre-et-Marais 32,2016-01-01,COM,50470,0,SAINT GEORGES DE BOHON,Saint-Georges-de-Bohon,Saint-Georges-de-Bohon,COMD,50470,0,SAINT GEORGES DE BOHON,Saint-Georges-de-Bohon,Saint-Georges-de-Bohon +32,2016-01-01,COM,50470,0,SAINT GEORGES DE BOHON,Saint-Georges-de-Bohon,Saint-Georges-de-Bohon,COM,50564,0,TERRE ET MARAIS,Terre-et-Marais,Terre-et-Marais 32,2016-01-01,COM,50484,0,SAINT HILAIRE DU HARCOUET,Saint-Hilaire-du-Harcouët,Saint-Hilaire-du-Harcouët,COM,50484,0,SAINT HILAIRE DU HARCOUET,Saint-Hilaire-du-Harcouët,Saint-Hilaire-du-Harcouët 32,2016-01-01,COM,50484,0,SAINT HILAIRE DU HARCOUET,Saint-Hilaire-du-Harcouët,Saint-Hilaire-du-Harcouët,COMD,50484,0,SAINT HILAIRE DU HARCOUET,Saint-Hilaire-du-Harcouët,Saint-Hilaire-du-Harcouët 32,2016-01-01,COM,50492,0,SAINT JEAN DES BAISANTS,Saint-Jean-des-Baisants,Saint-Jean-des-Baisants,COM,50492,0,SAINT JEAN D ELLE,Saint-Jean-d'Elle,Saint-Jean-d'Elle 32,2016-01-01,COM,50492,0,SAINT JEAN DES BAISANTS,Saint-Jean-des-Baisants,Saint-Jean-des-Baisants,COMD,50492,0,SAINT JEAN DES BAISANTS,Saint-Jean-des-Baisants,Saint-Jean-des-Baisants 32,2016-01-01,COM,50494,0,SAINT JEAN DU CORAIL,Saint-Jean-du-Corail,Saint-Jean-du-Corail,COM,50359,0,MORTAIN BOCAGE,Mortain-Bocage,Mortain-Bocage 32,2016-01-01,COM,50494,0,SAINT JEAN DU CORAIL,Saint-Jean-du-Corail,Saint-Jean-du-Corail,COMD,50494,0,SAINT JEAN DU CORAIL,Saint-Jean-du-Corail,Saint-Jean-du-Corail -32,2016-01-01,COM,50497,0,SAINT JORES,Saint-Jores,Saint-Jores,COMD,50497,0,SAINT JORES,Saint-Jores,Saint-Jores 32,2016-01-01,COM,50497,0,SAINT JORES,Saint-Jores,Saint-Jores,COM,50273,0,MONTSENELLE,Montsenelle,Montsenelle -32,2016-01-01,COM,50508,0,SAINTE MARIE DU BOIS,Sainte-Marie-du-Bois,Sainte-Marie-du-Bois,COM,50591,2,TEILLEUL,Teilleul,Le Teilleul +32,2016-01-01,COM,50497,0,SAINT JORES,Saint-Jores,Saint-Jores,COMD,50497,0,SAINT JORES,Saint-Jores,Saint-Jores 32,2016-01-01,COM,50508,0,SAINTE MARIE DU BOIS,Sainte-Marie-du-Bois,Sainte-Marie-du-Bois,COMD,50508,0,SAINTE MARIE DU BOIS,Sainte-Marie-du-Bois,Sainte-Marie-du-Bois -32,2016-01-01,COM,50515,0,SAINT MARTIN DE LANDELLES,Saint-Martin-de-Landelles,Saint-Martin-de-Landelles,COMD,50515,0,SAINT MARTIN DE LANDELLES,Saint-Martin-de-Landelles,Saint-Martin-de-Landelles +32,2016-01-01,COM,50508,0,SAINTE MARIE DU BOIS,Sainte-Marie-du-Bois,Sainte-Marie-du-Bois,COM,50591,2,TEILLEUL,Teilleul,Le Teilleul 32,2016-01-01,COM,50515,0,SAINT MARTIN DE LANDELLES,Saint-Martin-de-Landelles,Saint-Martin-de-Landelles,COM,50484,0,SAINT HILAIRE DU HARCOUET,Saint-Hilaire-du-Harcouët,Saint-Hilaire-du-Harcouët +32,2016-01-01,COM,50515,0,SAINT MARTIN DE LANDELLES,Saint-Martin-de-Landelles,Saint-Martin-de-Landelles,COMD,50515,0,SAINT MARTIN DE LANDELLES,Saint-Martin-de-Landelles,Saint-Martin-de-Landelles 32,2016-01-01,COM,50520,0,SAINT MARTIN LE HEBERT,Saint-Martin-le-Hébert,Saint-Martin-le-Hébert,COM,50082,0,BRICQUEBEC EN COTENTIN,Bricquebec-en-Cotentin,Bricquebec-en-Cotentin 32,2016-01-01,COM,50520,0,SAINT MARTIN LE HEBERT,Saint-Martin-le-Hébert,Saint-Martin-le-Hébert,COMD,50520,0,SAINT MARTIN LE HEBERT,Saint-Martin-le-Hébert,Saint-Martin-le-Hébert -32,2016-01-01,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église 32,2016-01-01,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église,COMD,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église +32,2016-01-01,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église,COM,50523,0,SAINTE MERE EGLISE,Sainte-Mère-Église,Sainte-Mère-Église 32,2016-01-01,COM,50535,0,SAINTE PIENCE,Sainte-Pience,Sainte-Pience,COM,50535,2,PARC,Parc,Le Parc -32,2016-01-01,COM,50544,0,SAINT REMY DES LANDES,Saint-Rémy-des-Landes,Saint-Rémy-des-Landes,COMD,50544,0,SAINT REMY DES LANDES,Saint-Rémy-des-Landes,Saint-Rémy-des-Landes 32,2016-01-01,COM,50544,0,SAINT REMY DES LANDES,Saint-Rémy-des-Landes,Saint-Rémy-des-Landes,COM,50236,3,HAYE,Haye,La Haye -32,2016-01-01,COM,50545,0,SAINT ROMPHAIRE,Saint-Romphaire,Saint-Romphaire,COM,50546,0,BOURGVALLEES,Bourgvallées,Bourgvallées +32,2016-01-01,COM,50544,0,SAINT REMY DES LANDES,Saint-Rémy-des-Landes,Saint-Rémy-des-Landes,COMD,50544,0,SAINT REMY DES LANDES,Saint-Rémy-des-Landes,Saint-Rémy-des-Landes 32,2016-01-01,COM,50545,0,SAINT ROMPHAIRE,Saint-Romphaire,Saint-Romphaire,COMD,50545,0,SAINT ROMPHAIRE,Saint-Romphaire,Saint-Romphaire -32,2016-01-01,COM,50546,0,SAINT SAMSON DE BONFOSSE,Saint-Samson-de-Bonfossé,Saint-Samson-de-Bonfossé,COMD,50546,0,SAINT SAMSON DE BONFOSSE,Saint-Samson-de-Bonfossé,Saint-Samson-de-Bonfossé +32,2016-01-01,COM,50545,0,SAINT ROMPHAIRE,Saint-Romphaire,Saint-Romphaire,COM,50546,0,BOURGVALLEES,Bourgvallées,Bourgvallées 32,2016-01-01,COM,50546,0,SAINT SAMSON DE BONFOSSE,Saint-Samson-de-Bonfossé,Saint-Samson-de-Bonfossé,COM,50546,0,BOURGVALLEES,Bourgvallées,Bourgvallées -32,2016-01-01,COM,50557,0,SAINT SYMPHORIEN DES MONTS,Saint-Symphorien-des-Monts,Saint-Symphorien-des-Monts,COMD,50557,0,SAINT SYMPHORIEN DES MONTS,Saint-Symphorien-des-Monts,Saint-Symphorien-des-Monts +32,2016-01-01,COM,50546,0,SAINT SAMSON DE BONFOSSE,Saint-Samson-de-Bonfossé,Saint-Samson-de-Bonfossé,COMD,50546,0,SAINT SAMSON DE BONFOSSE,Saint-Samson-de-Bonfossé,Saint-Samson-de-Bonfossé 32,2016-01-01,COM,50557,0,SAINT SYMPHORIEN DES MONTS,Saint-Symphorien-des-Monts,Saint-Symphorien-des-Monts,COM,50090,0,BUAIS LES MONTS,Buais-Les-Monts,Buais-Les-Monts +32,2016-01-01,COM,50557,0,SAINT SYMPHORIEN DES MONTS,Saint-Symphorien-des-Monts,Saint-Symphorien-des-Monts,COMD,50557,0,SAINT SYMPHORIEN DES MONTS,Saint-Symphorien-des-Monts,Saint-Symphorien-des-Monts 32,2016-01-01,COM,50558,0,SAINT SYMPHORIEN LE VALOIS,Saint-Symphorien-le-Valois,Saint-Symphorien-le-Valois,COM,50236,3,HAYE,Haye,La Haye 32,2016-01-01,COM,50558,0,SAINT SYMPHORIEN LE VALOIS,Saint-Symphorien-le-Valois,Saint-Symphorien-le-Valois,COMD,50558,0,SAINT SYMPHORIEN LE VALOIS,Saint-Symphorien-le-Valois,Saint-Symphorien-le-Valois -32,2016-01-01,COM,50564,0,SAINTENY,Sainteny,Sainteny,COMD,50564,0,SAINTENY,Sainteny,Sainteny 32,2016-01-01,COM,50564,0,SAINTENY,Sainteny,Sainteny,COM,50564,0,TERRE ET MARAIS,Terre-et-Marais,Terre-et-Marais -32,2016-01-01,COM,50565,0,SARTILLY,Sartilly,Sartilly,COMD,50565,0,SARTILLY,Sartilly,Sartilly +32,2016-01-01,COM,50564,0,SAINTENY,Sainteny,Sainteny,COMD,50564,0,SAINTENY,Sainteny,Sainteny 32,2016-01-01,COM,50565,0,SARTILLY,Sartilly,Sartilly,COM,50565,0,SARTILLY BAIE BOCAGE,Sartilly-Baie-Bocage,Sartilly-Baie-Bocage -32,2016-01-01,COM,50582,0,SOURDEVAL,Sourdeval,Sourdeval,COMD,50582,0,SOURDEVAL,Sourdeval,Sourdeval +32,2016-01-01,COM,50565,0,SARTILLY,Sartilly,Sartilly,COMD,50565,0,SARTILLY,Sartilly,Sartilly 32,2016-01-01,COM,50582,0,SOURDEVAL,Sourdeval,Sourdeval,COM,50582,0,SOURDEVAL,Sourdeval,Sourdeval -32,2016-01-01,COM,50586,0,SURVILLE,Surville,Surville,COMD,50586,0,SURVILLE,Surville,Surville +32,2016-01-01,COM,50582,0,SOURDEVAL,Sourdeval,Sourdeval,COMD,50582,0,SOURDEVAL,Sourdeval,Sourdeval 32,2016-01-01,COM,50586,0,SURVILLE,Surville,Surville,COM,50236,3,HAYE,Haye,La Haye +32,2016-01-01,COM,50586,0,SURVILLE,Surville,Surville,COMD,50586,0,SURVILLE,Surville,Surville 32,2016-01-01,COM,50591,2,TEILLEUL,Teilleul,Le Teilleul,COM,50591,2,TEILLEUL,Teilleul,Le Teilleul 32,2016-01-01,COM,50591,2,TEILLEUL,Teilleul,Le Teilleul,COMD,50591,2,TEILLEUL,Teilleul,Le Teilleul -32,2016-01-01,COM,50592,0,TESSY SUR VIRE,Tessy-sur-Vire,Tessy-sur-Vire,COMD,50592,0,TESSY SUR VIRE,Tessy-sur-Vire,Tessy-sur-Vire 32,2016-01-01,COM,50592,0,TESSY SUR VIRE,Tessy-sur-Vire,Tessy-sur-Vire,COM,50592,0,TESSY BOCAGE,Tessy Bocage,Tessy Bocage +32,2016-01-01,COM,50592,0,TESSY SUR VIRE,Tessy-sur-Vire,Tessy-sur-Vire,COMD,50592,0,TESSY SUR VIRE,Tessy-sur-Vire,Tessy-sur-Vire 32,2016-01-01,COM,50595,2,THEIL,Theil,Le Theil,COM,50209,0,GONNEVILLE LE THEIL,Gonneville-Le Theil,Gonneville-Le Theil 32,2016-01-01,COM,50595,2,THEIL,Theil,Le Theil,COMD,50595,2,THEIL,Theil,Le Theil -32,2016-01-01,COM,50601,0,TORIGNI SUR VIRE,Torigni-sur-Vire,Torigni-sur-Vire,COM,50601,0,TORIGNY LES VILLES,Torigny-les-Villes,Torigny-les-Villes 32,2016-01-01,COM,50601,0,TORIGNI SUR VIRE,Torigni-sur-Vire,Torigni-sur-Vire,COMD,50601,0,TORIGNI SUR VIRE,Torigni-sur-Vire,Torigni-sur-Vire +32,2016-01-01,COM,50601,0,TORIGNI SUR VIRE,Torigni-sur-Vire,Torigni-sur-Vire,COM,50601,0,TORIGNY LES VILLES,Torigny-les-Villes,Torigny-les-Villes 32,2016-01-01,COM,50602,0,TOURLAVILLE,Tourlaville,Tourlaville,COM,50129,0,CHERBOURG EN COTENTIN,Cherbourg-en-Cotentin,Cherbourg-en-Cotentin 32,2016-01-01,COM,50602,0,TOURLAVILLE,Tourlaville,Tourlaville,COMD,50602,0,TOURLAVILLE,Tourlaville,Tourlaville 32,2016-01-01,COM,50614,2,VALDECIE,Valdécie,Le Valdécie,COM,50082,0,BRICQUEBEC EN COTENTIN,Bricquebec-en-Cotentin,Bricquebec-en-Cotentin 32,2016-01-01,COM,50614,2,VALDECIE,Valdécie,Le Valdécie,COMD,50614,2,VALDECIE,Valdécie,Le Valdécie -32,2016-01-01,COM,50625,0,VENGEONS,Vengeons,Vengeons,COMD,50625,0,VENGEONS,Vengeons,Vengeons 32,2016-01-01,COM,50625,0,VENGEONS,Vengeons,Vengeons,COM,50582,0,SOURDEVAL,Sourdeval,Sourdeval -32,2016-01-01,COM,50630,0,VESSEY,Vessey,Vessey,COMD,50630,0,VESSEY,Vessey,Vessey +32,2016-01-01,COM,50625,0,VENGEONS,Vengeons,Vengeons,COMD,50625,0,VENGEONS,Vengeons,Vengeons 32,2016-01-01,COM,50630,0,VESSEY,Vessey,Vessey,COM,50410,0,PONTORSON,Pontorson,Pontorson -32,2016-01-01,COM,50635,0,VIDOUVILLE,Vidouville,Vidouville,COMD,50635,0,VIDOUVILLE,Vidouville,Vidouville +32,2016-01-01,COM,50630,0,VESSEY,Vessey,Vessey,COMD,50630,0,VESSEY,Vessey,Vessey 32,2016-01-01,COM,50635,0,VIDOUVILLE,Vidouville,Vidouville,COM,50492,0,SAINT JEAN D ELLE,Saint-Jean-d'Elle,Saint-Jean-d'Elle -32,2016-01-01,COM,50638,0,VILLECHIEN,Villechien,Villechien,COMD,50638,0,VILLECHIEN,Villechien,Villechien +32,2016-01-01,COM,50635,0,VIDOUVILLE,Vidouville,Vidouville,COMD,50635,0,VIDOUVILLE,Vidouville,Vidouville 32,2016-01-01,COM,50638,0,VILLECHIEN,Villechien,Villechien,COM,50359,0,MORTAIN BOCAGE,Mortain-Bocage,Mortain-Bocage +32,2016-01-01,COM,50638,0,VILLECHIEN,Villechien,Villechien,COMD,50638,0,VILLECHIEN,Villechien,Villechien 32,2016-01-01,COM,50639,0,VILLEDIEU LES POELES,Villedieu-les-Poêles,Villedieu-les-Poêles,COMD,50639,0,VILLEDIEU LES POELES,Villedieu-les-Poêles,Villedieu-les-Poêles 32,2016-01-01,COM,50639,0,VILLEDIEU LES POELES,Villedieu-les-Poêles,Villedieu-les-Poêles,COM,50639,0,VILLEDIEU LES POELES ROUFFIGNY,Villedieu-les-Poêles-Rouffigny,Villedieu-les-Poêles-Rouffigny -32,2016-01-01,COM,50642,0,VINDEFONTAINE,Vindefontaine,Vindefontaine,COMD,50642,0,VINDEFONTAINE,Vindefontaine,Vindefontaine 32,2016-01-01,COM,50642,0,VINDEFONTAINE,Vindefontaine,Vindefontaine,COM,50400,0,PICAUVILLE,Picauville,Picauville -32,2016-01-01,COM,50644,0,VIREY,Virey,Virey,COMD,50644,0,VIREY,Virey,Virey +32,2016-01-01,COM,50642,0,VINDEFONTAINE,Vindefontaine,Vindefontaine,COMD,50642,0,VINDEFONTAINE,Vindefontaine,Vindefontaine 32,2016-01-01,COM,50644,0,VIREY,Virey,Virey,COM,50484,0,SAINT HILAIRE DU HARCOUET,Saint-Hilaire-du-Harcouët,Saint-Hilaire-du-Harcouët +32,2016-01-01,COM,50644,0,VIREY,Virey,Virey,COMD,50644,0,VIREY,Virey,Virey 32,2016-01-01,COMA,50645,0,VRASVILLE,Vrasville,Vrasville,COM,50142,0,VICQ SUR MER,Vicq-sur-Mer,Vicq-sur-Mer 32,2016-01-01,COM,50646,2,VRETOT,Vrétot,Le Vrétot,COM,50082,0,BRICQUEBEC EN COTENTIN,Bricquebec-en-Cotentin,Bricquebec-en-Cotentin 32,2016-01-01,COM,50646,2,VRETOT,Vrétot,Le Vrétot,COMD,50646,2,VRETOT,Vrétot,Le Vrétot @@ -4894,34 +4726,34 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,51030,1,AY,Ay,Ay,COMD,51030,1,AY,Ay,Ay 32,2016-01-01,COM,51064,0,BISSEUIL,Bisseuil,Bisseuil,COM,51030,1,AY CHAMPAGNE,Aÿ-Champagne,Aÿ-Champagne 32,2016-01-01,COM,51064,0,BISSEUIL,Bisseuil,Bisseuil,COMD,51064,0,BISSEUIL,Bisseuil,Bisseuil -32,2016-01-01,COM,51331,0,LOUVOIS,Louvois,Louvois,COM,51564,0,VAL DE LIVRE,Val de Livre,Val de Livre 32,2016-01-01,COM,51331,0,LOUVOIS,Louvois,Louvois,COMD,51331,0,LOUVOIS,Louvois,Louvois -32,2016-01-01,COM,51347,0,MAREUIL SUR AY,Mareuil-sur-Ay,Mareuil-sur-Ay,COMD,51347,0,MAREUIL SUR AY,Mareuil-sur-Ay,Mareuil-sur-Ay +32,2016-01-01,COM,51331,0,LOUVOIS,Louvois,Louvois,COM,51564,0,VAL DE LIVRE,Val de Livre,Val de Livre 32,2016-01-01,COM,51347,0,MAREUIL SUR AY,Mareuil-sur-Ay,Mareuil-sur-Ay,COM,51030,1,AY CHAMPAGNE,Aÿ-Champagne,Aÿ-Champagne -32,2016-01-01,COM,51564,0,TAUXIERES MUTRY,Tauxières-Mutry,Tauxières-Mutry,COM,51564,0,VAL DE LIVRE,Val de Livre,Val de Livre +32,2016-01-01,COM,51347,0,MAREUIL SUR AY,Mareuil-sur-Ay,Mareuil-sur-Ay,COMD,51347,0,MAREUIL SUR AY,Mareuil-sur-Ay,Mareuil-sur-Ay 32,2016-01-01,COM,51564,0,TAUXIERES MUTRY,Tauxières-Mutry,Tauxières-Mutry,COMD,51564,0,TAUXIERES MUTRY,Tauxières-Mutry,Tauxières-Mutry -32,2016-01-01,COM,52036,0,BALESMES SUR MARNE,Balesmes-sur-Marne,Balesmes-sur-Marne,COM,52449,0,SAINTS GEOSMES,Saints-Geosmes,Saints-Geosmes +32,2016-01-01,COM,51564,0,TAUXIERES MUTRY,Tauxières-Mutry,Tauxières-Mutry,COM,51564,0,VAL DE LIVRE,Val de Livre,Val de Livre 32,2016-01-01,COM,52036,0,BALESMES SUR MARNE,Balesmes-sur-Marne,Balesmes-sur-Marne,COMD,52036,0,BALESMES SUR MARNE,Balesmes-sur-Marne,Balesmes-sur-Marne +32,2016-01-01,COM,52036,0,BALESMES SUR MARNE,Balesmes-sur-Marne,Balesmes-sur-Marne,COM,52449,0,SAINTS GEOSMES,Saints-Geosmes,Saints-Geosmes 32,2016-01-01,COM,52180,0,DROYES,Droyes,Droyes,COMD,52180,0,DROYES,Droyes,Droyes 32,2016-01-01,COM,52180,0,DROYES,Droyes,Droyes,COM,52411,0,RIVES DERVOISES,Rives Dervoises,Rives Dervoises -32,2016-01-01,COM,52239,1,HEUILLEY COTTON,Heuilley-Cotton,Heuilley-Cotton,COM,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac 32,2016-01-01,COM,52239,1,HEUILLEY COTTON,Heuilley-Cotton,Heuilley-Cotton,COMD,52239,1,HEUILLEY COTTON,Heuilley-Cotton,Heuilley-Cotton -32,2016-01-01,COM,52293,0,LONGEVILLE SUR LA LAINES,Longeville-sur-la-Laines,Longeville-sur-la-Laines,COM,52411,0,RIVES DERVOISES,Rives Dervoises,Rives Dervoises +32,2016-01-01,COM,52239,1,HEUILLEY COTTON,Heuilley-Cotton,Heuilley-Cotton,COM,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac 32,2016-01-01,COM,52293,0,LONGEVILLE SUR LA LAINES,Longeville-sur-la-Laines,Longeville-sur-la-Laines,COMD,52293,0,LONGEVILLE SUR LA LAINES,Longeville-sur-la-Laines,Longeville-sur-la-Laines -32,2016-01-01,COM,52296,0,LOUZE,Louze,Louze,COM,52411,0,RIVES DERVOISES,Rives Dervoises,Rives Dervoises +32,2016-01-01,COM,52293,0,LONGEVILLE SUR LA LAINES,Longeville-sur-la-Laines,Longeville-sur-la-Laines,COM,52411,0,RIVES DERVOISES,Rives Dervoises,Rives Dervoises 32,2016-01-01,COM,52296,0,LOUZE,Louze,Louze,COMD,52296,0,LOUZE,Louze,Louze +32,2016-01-01,COM,52296,0,LOUZE,Louze,Louze,COM,52411,0,RIVES DERVOISES,Rives Dervoises,Rives Dervoises 32,2016-01-01,COM,52331,0,MONTIER EN DER,Montier-en-Der,Montier-en-Der,COM,52331,3,PORTE DU DER,Porte du Der,La Porte du Der 32,2016-01-01,COM,52331,0,MONTIER EN DER,Montier-en-Der,Montier-en-Der,COMD,52331,0,MONTIER EN DER,Montier-en-Der,Montier-en-Der -32,2016-01-01,COM,52340,0,MONTSAUGEON,Montsaugeon,Montsaugeon,COM,52405,2,MONTSAUGEONNAIS,Montsaugeonnais,Le Montsaugeonnais 32,2016-01-01,COM,52340,0,MONTSAUGEON,Montsaugeon,Montsaugeon,COMD,52340,0,MONTSAUGEON,Montsaugeon,Montsaugeon +32,2016-01-01,COM,52340,0,MONTSAUGEON,Montsaugeon,Montsaugeon,COM,52405,2,MONTSAUGEONNAIS,Montsaugeonnais,Le Montsaugeonnais 32,2016-01-01,COMA,52387,0,PIEPAPE,Piépape,Piépape,COM,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac 32,2016-01-01,COMA,52402,0,PRANGEY,Prangey,Prangey,COM,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac 32,2016-01-01,COM,52405,0,PRAUTHOY,Prauthoy,Prauthoy,COM,52405,2,MONTSAUGEONNAIS,Montsaugeonnais,Le Montsaugeonnais 32,2016-01-01,COM,52405,0,PRAUTHOY,Prauthoy,Prauthoy,COMD,52405,0,PRAUTHOY,Prauthoy,Prauthoy 32,2016-01-01,COM,52411,0,PUELLEMONTIER,Puellemontier,Puellemontier,COM,52411,0,RIVES DERVOISES,Rives Dervoises,Rives Dervoises 32,2016-01-01,COM,52411,0,PUELLEMONTIER,Puellemontier,Puellemontier,COMD,52411,0,PUELLEMONTIER,Puellemontier,Puellemontier -32,2016-01-01,COM,52427,0,ROBERT MAGNY,Robert-Magny,Robert-Magny,COMD,52427,0,ROBERT MAGNY,Robert-Magny,Robert-Magny 32,2016-01-01,COM,52427,0,ROBERT MAGNY,Robert-Magny,Robert-Magny,COM,52331,3,PORTE DU DER,Porte du Der,La Porte du Der +32,2016-01-01,COM,52427,0,ROBERT MAGNY,Robert-Magny,Robert-Magny,COMD,52427,0,ROBERT MAGNY,Robert-Magny,Robert-Magny 32,2016-01-01,COM,52449,0,SAINTS GEOSMES,Saints-Geosmes,Saints-Geosmes,COM,52449,0,SAINTS GEOSMES,Saints-Geosmes,Saints-Geosmes 32,2016-01-01,COM,52449,0,SAINTS GEOSMES,Saints-Geosmes,Saints-Geosmes,COMD,52449,0,SAINTS GEOSMES,Saints-Geosmes,Saints-Geosmes 32,2016-01-01,COMA,52454,0,SAINT MICHEL,Saint-Michel,Saint-Michel,COM,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac @@ -4929,10 +4761,10 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,52509,0,VAUX SOUS AUBIGNY,Vaux-sous-Aubigny,Vaux-sous-Aubigny,COMD,52509,0,VAUX SOUS AUBIGNY,Vaux-sous-Aubigny,Vaux-sous-Aubigny 32,2016-01-01,COM,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac,COM,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac 32,2016-01-01,COM,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac,COMD,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac -32,2016-01-01,COM,53050,0,CHAMMES,Chammes,Chammes,COM,53255,0,SAINTE SUZANNE ET CHAMMES,Sainte-Suzanne-et-Chammes,Sainte-Suzanne-et-Chammes 32,2016-01-01,COM,53050,0,CHAMMES,Chammes,Chammes,COMD,53050,0,CHAMMES,Chammes,Chammes -32,2016-01-01,COM,53137,0,LOIRON,Loiron,Loiron,COM,53137,0,LOIRON RUILLE,Loiron-Ruillé,Loiron-Ruillé +32,2016-01-01,COM,53050,0,CHAMMES,Chammes,Chammes,COM,53255,0,SAINTE SUZANNE ET CHAMMES,Sainte-Suzanne-et-Chammes,Sainte-Suzanne-et-Chammes 32,2016-01-01,COM,53137,0,LOIRON,Loiron,Loiron,COMD,53137,0,LOIRON,Loiron,Loiron +32,2016-01-01,COM,53137,0,LOIRON,Loiron,Loiron,COM,53137,0,LOIRON RUILLE,Loiron-Ruillé,Loiron-Ruillé 32,2016-01-01,COM,53185,0,PRE EN PAIL,Pré-en-Pail,Pré-en-Pail,COM,53185,0,PRE EN PAIL SAINT SAMSON,Pré-en-Pail-Saint-Samson,Pré-en-Pail-Saint-Samson 32,2016-01-01,COM,53185,0,PRE EN PAIL,Pré-en-Pail,Pré-en-Pail,COMD,53185,0,PRE EN PAIL,Pré-en-Pail,Pré-en-Pail 32,2016-01-01,COM,53194,0,RUILLE LE GRAVELAIS,Ruillé-le-Gravelais,Ruillé-le-Gravelais,COM,53137,0,LOIRON RUILLE,Loiron-Ruillé,Loiron-Ruillé @@ -4945,19 +4777,19 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,56037,3,CHAPELLE CARO,Chapelle-Caro,La Chapelle-Caro,COM,56197,0,VAL D OUST,Val d'Oust,Val d'Oust 32,2016-01-01,COM,56142,0,MOUSTOIR REMUNGOL,Moustoir-Remungol,Moustoir-Remungol,COMD,56142,0,MOUSTOIR REMUNGOL,Moustoir-Remungol,Moustoir-Remungol 32,2016-01-01,COM,56142,0,MOUSTOIR REMUNGOL,Moustoir-Remungol,Moustoir-Remungol,COM,56144,1,EVELLYS,Évellys,Évellys -32,2016-01-01,COM,56144,0,NAIZIN,Naizin,Naizin,COM,56144,1,EVELLYS,Évellys,Évellys 32,2016-01-01,COM,56144,0,NAIZIN,Naizin,Naizin,COMD,56144,0,NAIZIN,Naizin,Naizin +32,2016-01-01,COM,56144,0,NAIZIN,Naizin,Naizin,COM,56144,1,EVELLYS,Évellys,Évellys 32,2016-01-01,COM,56150,0,NOYALO,Noyalo,Noyalo,COMD,56150,0,NOYALO,Noyalo,Noyalo 32,2016-01-01,COM,56150,0,NOYALO,Noyalo,Noyalo,COM,56251,0,THEIX NOYALO,Theix-Noyalo,Theix-Noyalo -32,2016-01-01,COM,56187,0,QUILY,Quily,Quily,COM,56197,0,VAL D OUST,Val d'Oust,Val d'Oust 32,2016-01-01,COM,56187,0,QUILY,Quily,Quily,COMD,56187,0,QUILY,Quily,Quily -32,2016-01-01,COM,56192,0,REMUNGOL,Remungol,Remungol,COMD,56192,0,REMUNGOL,Remungol,Remungol +32,2016-01-01,COM,56187,0,QUILY,Quily,Quily,COM,56197,0,VAL D OUST,Val d'Oust,Val d'Oust 32,2016-01-01,COM,56192,0,REMUNGOL,Remungol,Remungol,COM,56144,1,EVELLYS,Évellys,Évellys +32,2016-01-01,COM,56192,0,REMUNGOL,Remungol,Remungol,COMD,56192,0,REMUNGOL,Remungol,Remungol 32,2016-01-01,COM,56197,2,ROC SAINT ANDRE,Roc-Saint-André,Le Roc-Saint-André,COMD,56197,2,ROC SAINT ANDRE,Roc-Saint-André,Le Roc-Saint-André 32,2016-01-01,COM,56197,2,ROC SAINT ANDRE,Roc-Saint-André,Le Roc-Saint-André,COM,56197,0,VAL D OUST,Val d'Oust,Val d'Oust 32,2016-01-01,COM,56251,0,THEIX,Theix,Theix,COM,56251,0,THEIX NOYALO,Theix-Noyalo,Theix-Noyalo -32,2016-01-01,COM,57021,1,ANCY SUR MOSELLE,Ancy-sur-Moselle,Ancy-sur-Moselle,COM,57021,1,ANCY DORNOT,Ancy-Dornot,Ancy-Dornot 32,2016-01-01,COM,57021,1,ANCY SUR MOSELLE,Ancy-sur-Moselle,Ancy-sur-Moselle,COMD,57021,1,ANCY SUR MOSELLE,Ancy-sur-Moselle,Ancy-sur-Moselle +32,2016-01-01,COM,57021,1,ANCY SUR MOSELLE,Ancy-sur-Moselle,Ancy-sur-Moselle,COM,57021,1,ANCY DORNOT,Ancy-Dornot,Ancy-Dornot 32,2016-01-01,COM,57184,0,DORNOT,Dornot,Dornot,COM,57021,1,ANCY DORNOT,Ancy-Dornot,Ancy-Dornot 32,2016-01-01,COM,57184,0,DORNOT,Dornot,Dornot,COMD,57184,0,DORNOT,Dornot,Dornot 10,2016-01-01,COM,57695,0,VARIZE,Varize,Varize,COM,57695,0,VARIZE VAUDONCOURT,Varize-Vaudoncourt,Varize-Vaudoncourt @@ -4973,99 +4805,99 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,59260,0,GHYVELDE,Ghyvelde,Ghyvelde,COM,59260,0,GHYVELDE,Ghyvelde,Ghyvelde 32,2016-01-01,COM,59404,4,MOERES,Moëres,Les Moëres,COM,59260,0,GHYVELDE,Ghyvelde,Ghyvelde 32,2016-01-01,COM,59404,4,MOERES,Moëres,Les Moëres,COMD,59404,4,MOERES,Moëres,Les Moëres -32,2016-01-01,COM,59588,0,TETEGHEM,Téteghem,Téteghem,COM,59588,0,TETEGHEM COUDEKERQUE VILLAGE,Téteghem-Coudekerque-Village,Téteghem-Coudekerque-Village 32,2016-01-01,COM,59588,0,TETEGHEM,Téteghem,Téteghem,COMD,59588,0,TETEGHEM,Téteghem,Téteghem +32,2016-01-01,COM,59588,0,TETEGHEM,Téteghem,Téteghem,COM,59588,0,TETEGHEM COUDEKERQUE VILLAGE,Téteghem-Coudekerque-Village,Téteghem-Coudekerque-Village 32,2016-01-01,COM,60018,1,ANSERVILLE,Anserville,Anserville,COMD,60018,1,ANSERVILLE,Anserville,Anserville 32,2016-01-01,COM,60018,1,ANSERVILLE,Anserville,Anserville,COM,60088,0,BORNEL,Bornel,Bornel 32,2016-01-01,COM,60088,0,BORNEL,Bornel,Bornel,COM,60088,0,BORNEL,Bornel,Bornel -32,2016-01-01,COM,60246,0,FOSSEUSE,Fosseuse,Fosseuse,COMD,60246,0,FOSSEUSE,Fosseuse,Fosseuse 32,2016-01-01,COM,60246,0,FOSSEUSE,Fosseuse,Fosseuse,COM,60088,0,BORNEL,Bornel,Bornel -32,2016-01-01,COM,61003,1,ANCEINS,Anceins,Anceins,COM,61167,3,FERTE EN OUCHE,Ferté-en-Ouche,La Ferté-en-Ouche +32,2016-01-01,COM,60246,0,FOSSEUSE,Fosseuse,Fosseuse,COMD,60246,0,FOSSEUSE,Fosseuse,Fosseuse 32,2016-01-01,COM,61003,1,ANCEINS,Anceins,Anceins,COMD,61003,1,ANCEINS,Anceins,Anceins -32,2016-01-01,COM,61007,1,ATHIS DE L ORNE,Athis-de-l'Orne,Athis-de-l'Orne,COM,61007,1,ATHIS VAL DE ROUVRE,Athis-Val de Rouvre,Athis-Val de Rouvre +32,2016-01-01,COM,61003,1,ANCEINS,Anceins,Anceins,COM,61167,3,FERTE EN OUCHE,Ferté-en-Ouche,La Ferté-en-Ouche 32,2016-01-01,COM,61007,1,ATHIS DE L ORNE,Athis-de-l'Orne,Athis-de-l'Orne,COMD,61007,1,ATHIS DE L ORNE,Athis-de-l'Orne,Athis-de-l'Orne -32,2016-01-01,COM,61016,1,AUTHEUIL,Autheuil,Autheuil,COM,61491,0,TOUROUVRE AU PERCHE,Tourouvre au Perche,Tourouvre au Perche +32,2016-01-01,COM,61007,1,ATHIS DE L ORNE,Athis-de-l'Orne,Athis-de-l'Orne,COM,61007,1,ATHIS VAL DE ROUVRE,Athis-Val de Rouvre,Athis-Val de Rouvre 32,2016-01-01,COM,61016,1,AUTHEUIL,Autheuil,Autheuil,COMD,61016,1,AUTHEUIL,Autheuil,Autheuil +32,2016-01-01,COM,61016,1,AUTHEUIL,Autheuil,Autheuil,COM,61491,0,TOUROUVRE AU PERCHE,Tourouvre au Perche,Tourouvre au Perche 32,2016-01-01,COM,61025,3,BAROCHE SOUS LUCE,Baroche-sous-Lucé,La Baroche-sous-Lucé,COMD,61025,3,BAROCHE SOUS LUCE,Baroche-sous-Lucé,La Baroche-sous-Lucé 32,2016-01-01,COM,61025,3,BAROCHE SOUS LUCE,Baroche-sous-Lucé,La Baroche-sous-Lucé,COM,61211,0,JUVIGNY VAL D ANDAINE,Juvigny Val d'Andaine,Juvigny Val d'Andaine 32,2016-01-01,COM,61027,0,BATILLY,Batilly,Batilly,COMD,61027,0,BATILLY,Batilly,Batilly 32,2016-01-01,COM,61027,0,BATILLY,Batilly,Batilly,COM,61153,1,ECOUCHE LES VALLEES,Écouché-les-Vallées,Écouché-les-Vallées -32,2016-01-01,COM,61033,0,BEAULANDAIS,Beaulandais,Beaulandais,COM,61211,0,JUVIGNY VAL D ANDAINE,Juvigny Val d'Andaine,Juvigny Val d'Andaine 32,2016-01-01,COM,61033,0,BEAULANDAIS,Beaulandais,Beaulandais,COMD,61033,0,BEAULANDAIS,Beaulandais,Beaulandais +32,2016-01-01,COM,61033,0,BEAULANDAIS,Beaulandais,Beaulandais,COM,61211,0,JUVIGNY VAL D ANDAINE,Juvigny Val d'Andaine,Juvigny Val d'Andaine 32,2016-01-01,COM,61042,0,BELLOU SUR HUISNE,Bellou-sur-Huisne,Bellou-sur-Huisne,COM,61345,0,REMALARD EN PERCHE,Rémalard en Perche,Rémalard en Perche 32,2016-01-01,COM,61045,0,BIVILLIERS,Bivilliers,Bivilliers,COMD,61045,0,BIVILLIERS,Bivilliers,Bivilliers 32,2016-01-01,COM,61045,0,BIVILLIERS,Bivilliers,Bivilliers,COM,61491,0,TOUROUVRE AU PERCHE,Tourouvre au Perche,Tourouvre au Perche -32,2016-01-01,COM,61047,0,BOCQUENCE,Bocquencé,Bocquencé,COM,61167,3,FERTE EN OUCHE,Ferté-en-Ouche,La Ferté-en-Ouche 32,2016-01-01,COM,61047,0,BOCQUENCE,Bocquencé,Bocquencé,COMD,61047,0,BOCQUENCE,Bocquencé,Bocquencé +32,2016-01-01,COM,61047,0,BOCQUENCE,Bocquencé,Bocquencé,COM,61167,3,FERTE EN OUCHE,Ferté-en-Ouche,La Ferté-en-Ouche 32,2016-01-01,COM,61050,0,BOISSY MAUGIS,Boissy-Maugis,Boissy-Maugis,COM,61050,0,COUR MAUGIS SUR HUISNE,Cour-Maugis sur Huisne,Cour-Maugis sur Huisne -32,2016-01-01,COM,61058,0,BREEL,Bréel,Bréel,COMD,61058,0,BREEL,Bréel,Bréel 32,2016-01-01,COM,61058,0,BREEL,Bréel,Bréel,COM,61007,1,ATHIS VAL DE ROUVRE,Athis-Val de Rouvre,Athis-Val de Rouvre +32,2016-01-01,COM,61058,0,BREEL,Bréel,Bréel,COMD,61058,0,BREEL,Bréel,Bréel 32,2016-01-01,COM,61059,0,BRESOLETTES,Bresolettes,Bresolettes,COMD,61059,0,BRESOLETTES,Bresolettes,Bresolettes 32,2016-01-01,COM,61059,0,BRESOLETTES,Bresolettes,Bresolettes,COM,61491,0,TOUROUVRE AU PERCHE,Tourouvre au Perche,Tourouvre au Perche 32,2016-01-01,COM,61065,0,BUBERTRE,Bubertré,Bubertré,COMD,61065,0,BUBERTRE,Bubertré,Bubertré 32,2016-01-01,COM,61065,0,BUBERTRE,Bubertré,Bubertré,COM,61491,0,TOUROUVRE AU PERCHE,Tourouvre au Perche,Tourouvre au Perche -32,2016-01-01,COM,61073,3,CARNEILLE,Carneille,La Carneille,COMD,61073,3,CARNEILLE,Carneille,La Carneille 32,2016-01-01,COM,61073,3,CARNEILLE,Carneille,La Carneille,COM,61007,1,ATHIS VAL DE ROUVRE,Athis-Val de Rouvre,Athis-Val de Rouvre +32,2016-01-01,COM,61073,3,CARNEILLE,Carneille,La Carneille,COMD,61073,3,CARNEILLE,Carneille,La Carneille 32,2016-01-01,COM,61081,0,CHAILLOUE,Chailloué,Chailloué,COM,61081,0,CHAILLOUE,Chailloué,Chailloué 32,2016-01-01,COM,61081,0,CHAILLOUE,Chailloué,Chailloué,COMD,61081,0,CHAILLOUE,Chailloué,Chailloué 32,2016-01-01,COM,61090,0,CHAMPS,Champs,Champs,COMD,61090,0,CHAMPS,Champs,Champs 32,2016-01-01,COM,61090,0,CHAMPS,Champs,Champs,COM,61491,0,TOUROUVRE AU PERCHE,Tourouvre au Perche,Tourouvre au Perche 32,2016-01-01,COM,61096,3,CHAPELLE D ANDAINE,Chapelle-d'Andaine,La Chapelle-d'Andaine,COMD,61096,3,CHAPELLE D ANDAINE,Chapelle-d'Andaine,La Chapelle-d'Andaine 32,2016-01-01,COM,61096,3,CHAPELLE D ANDAINE,Chapelle-d'Andaine,La Chapelle-d'Andaine,COM,61096,0,RIVES D ANDAINE,Rives d'Andaine,Rives d'Andaine -32,2016-01-01,COM,61106,0,CHENEDOUIT,Chênedouit,Chênedouit,COM,61339,0,PUTANGES LE LAC,Putanges-le-Lac,Putanges-le-Lac 32,2016-01-01,COM,61106,0,CHENEDOUIT,Chênedouit,Chênedouit,COMD,61106,0,CHENEDOUIT,Chênedouit,Chênedouit -32,2016-01-01,COM,61112,0,COLONARD CORUBERT,Colonard-Corubert,Colonard-Corubert,COM,61309,0,PERCHE EN NOCE,Perche en Nocé,Perche en Nocé +32,2016-01-01,COM,61106,0,CHENEDOUIT,Chênedouit,Chênedouit,COM,61339,0,PUTANGES LE LAC,Putanges-le-Lac,Putanges-le-Lac 32,2016-01-01,COM,61112,0,COLONARD CORUBERT,Colonard-Corubert,Colonard-Corubert,COMD,61112,0,COLONARD CORUBERT,Colonard-Corubert,Colonard-Corubert +32,2016-01-01,COM,61112,0,COLONARD CORUBERT,Colonard-Corubert,Colonard-Corubert,COM,61309,0,PERCHE EN NOCE,Perche en Nocé,Perche en Nocé 32,2016-01-01,COM,61115,0,CONDEAU,Condeau,Condeau,COMD,61115,0,CONDEAU,Condeau,Condeau 32,2016-01-01,COM,61115,0,CONDEAU,Condeau,Condeau,COM,61116,0,SABLONS SUR HUISNE,Sablons sur Huisne,Sablons sur Huisne -32,2016-01-01,COM,61116,0,CONDE SUR HUISNE,Condé-sur-Huisne,Condé-sur-Huisne,COMD,61116,0,CONDE SUR HUISNE,Condé-sur-Huisne,Condé-sur-Huisne 32,2016-01-01,COM,61116,0,CONDE SUR HUISNE,Condé-sur-Huisne,Condé-sur-Huisne,COM,61116,0,SABLONS SUR HUISNE,Sablons sur Huisne,Sablons sur Huisne +32,2016-01-01,COM,61116,0,CONDE SUR HUISNE,Condé-sur-Huisne,Condé-sur-Huisne,COMD,61116,0,CONDE SUR HUISNE,Condé-sur-Huisne,Condé-sur-Huisne 32,2016-01-01,COM,61125,0,COULONGES LES SABLONS,Coulonges-les-Sablons,Coulonges-les-Sablons,COM,61116,0,SABLONS SUR HUISNE,Sablons sur Huisne,Sablons sur Huisne 32,2016-01-01,COM,61125,0,COULONGES LES SABLONS,Coulonges-les-Sablons,Coulonges-les-Sablons,COMD,61125,0,COULONGES LES SABLONS,Coulonges-les-Sablons,Coulonges-les-Sablons -32,2016-01-01,COM,61127,3,COURBE,Courbe,La Courbe,COM,61153,1,ECOUCHE LES VALLEES,Écouché-les-Vallées,Écouché-les-Vallées 32,2016-01-01,COM,61127,3,COURBE,Courbe,La Courbe,COMD,61127,3,COURBE,Courbe,La Courbe +32,2016-01-01,COM,61127,3,COURBE,Courbe,La Courbe,COM,61153,1,ECOUCHE LES VALLEES,Écouché-les-Vallées,Écouché-les-Vallées 32,2016-01-01,COM,61128,0,COURCERAULT,Courcerault,Courcerault,COM,61050,0,COUR MAUGIS SUR HUISNE,Cour-Maugis sur Huisne,Cour-Maugis sur Huisne 32,2016-01-01,COM,61135,0,COUTERNE,Couterne,Couterne,COM,61096,0,RIVES D ANDAINE,Rives d'Andaine,Rives d'Andaine 32,2016-01-01,COM,61135,0,COUTERNE,Couterne,Couterne,COMD,61135,0,COUTERNE,Couterne,Couterne 32,2016-01-01,COM,61136,0,COUVAINS,Couvains,Couvains,COMD,61136,0,COUVAINS,Couvains,Couvains 32,2016-01-01,COM,61136,0,COUVAINS,Couvains,Couvains,COM,61167,3,FERTE EN OUCHE,Ferté-en-Ouche,La Ferté-en-Ouche -32,2016-01-01,COM,61144,0,DANCE,Dancé,Dancé,COM,61309,0,PERCHE EN NOCE,Perche en Nocé,Perche en Nocé 32,2016-01-01,COM,61144,0,DANCE,Dancé,Dancé,COMD,61144,0,DANCE,Dancé,Dancé +32,2016-01-01,COM,61144,0,DANCE,Dancé,Dancé,COM,61309,0,PERCHE EN NOCE,Perche en Nocé,Perche en Nocé 32,2016-01-01,COM,61145,0,DOMFRONT,Domfront,Domfront,COMD,61145,0,DOMFRONT,Domfront,Domfront 32,2016-01-01,COM,61145,0,DOMFRONT,Domfront,Domfront,COM,61145,0,DOMFRONT EN POIRAIE,Domfront en Poiraie,Domfront en Poiraie 32,2016-01-01,COM,61147,0,DORCEAU,Dorceau,Dorceau,COM,61345,0,REMALARD EN PERCHE,Rémalard en Perche,Rémalard en Perche -32,2016-01-01,COM,61153,1,ECOUCHE,Écouché,Écouché,COMD,61153,1,ECOUCHE,Écouché,Écouché 32,2016-01-01,COM,61153,1,ECOUCHE,Écouché,Écouché,COM,61153,1,ECOUCHE LES VALLEES,Écouché-les-Vallées,Écouché-les-Vallées +32,2016-01-01,COM,61153,1,ECOUCHE,Écouché,Écouché,COMD,61153,1,ECOUCHE,Écouché,Écouché 32,2016-01-01,COM,61155,5,EPINAY LE COMTE,Épinay-le-Comte,L'Épinay-le-Comte,COMD,61155,5,EPINAY LE COMTE,Épinay-le-Comte,L'Épinay-le-Comte 32,2016-01-01,COM,61155,5,EPINAY LE COMTE,Épinay-le-Comte,L'Épinay-le-Comte,COM,61324,0,PASSAIS VILLAGES,Passais Villages,Passais Villages -32,2016-01-01,COM,61167,3,FERTE FRENEL,Ferté-Frênel,La Ferté-Frênel,COM,61167,3,FERTE EN OUCHE,Ferté-en-Ouche,La Ferté-en-Ouche 32,2016-01-01,COM,61167,3,FERTE FRENEL,Ferté-Frênel,La Ferté-Frênel,COMD,61167,3,FERTE FRENEL,Ferté-Frênel,La Ferté-Frênel -32,2016-01-01,COM,61174,3,FORET AUVRAY,Forêt-Auvray,La Forêt-Auvray,COM,61339,0,PUTANGES LE LAC,Putanges-le-Lac,Putanges-le-Lac +32,2016-01-01,COM,61167,3,FERTE FRENEL,Ferté-Frênel,La Ferté-Frênel,COM,61167,3,FERTE EN OUCHE,Ferté-en-Ouche,La Ferté-en-Ouche 32,2016-01-01,COM,61174,3,FORET AUVRAY,Forêt-Auvray,La Forêt-Auvray,COMD,61174,3,FORET AUVRAY,Forêt-Auvray,La Forêt-Auvray -32,2016-01-01,COM,61175,0,FORGES,Forges,Forges,COM,61341,1,ECOUVES,Écouves,Écouves +32,2016-01-01,COM,61174,3,FORET AUVRAY,Forêt-Auvray,La Forêt-Auvray,COM,61339,0,PUTANGES LE LAC,Putanges-le-Lac,Putanges-le-Lac 32,2016-01-01,COM,61175,0,FORGES,Forges,Forges,COMD,61175,0,FORGES,Forges,Forges +32,2016-01-01,COM,61175,0,FORGES,Forges,Forges,COM,61341,1,ECOUVES,Écouves,Écouves 32,2016-01-01,COM,61179,3,FRESNAYE AU SAUVAGE,Fresnaye-au-Sauvage,La Fresnaye-au-Sauvage,COMD,61179,3,FRESNAYE AU SAUVAGE,Fresnaye-au-Sauvage,La Fresnaye-au-Sauvage 32,2016-01-01,COM,61179,3,FRESNAYE AU SAUVAGE,Fresnaye-au-Sauvage,La Fresnaye-au-Sauvage,COM,61339,0,PUTANGES LE LAC,Putanges-le-Lac,Putanges-le-Lac -32,2016-01-01,COM,61184,0,GAUVILLE,Gauville,Gauville,COMD,61184,0,GAUVILLE,Gauville,Gauville 32,2016-01-01,COM,61184,0,GAUVILLE,Gauville,Gauville,COM,61167,3,FERTE EN OUCHE,Ferté-en-Ouche,La Ferté-en-Ouche -32,2016-01-01,COM,61185,0,GEMAGES,Gémages,Gémages,COM,61484,0,VAL AU PERCHE,Val-au-Perche,Val-au-Perche +32,2016-01-01,COM,61184,0,GAUVILLE,Gauville,Gauville,COMD,61184,0,GAUVILLE,Gauville,Gauville 32,2016-01-01,COM,61185,0,GEMAGES,Gémages,Gémages,COMD,61185,0,GEMAGES,Gémages,Gémages -32,2016-01-01,COM,61186,0,GENESLAY,Geneslay,Geneslay,COMD,61186,0,GENESLAY,Geneslay,Geneslay +32,2016-01-01,COM,61185,0,GEMAGES,Gémages,Gémages,COM,61484,0,VAL AU PERCHE,Val-au-Perche,Val-au-Perche 32,2016-01-01,COM,61186,0,GENESLAY,Geneslay,Geneslay,COM,61096,0,RIVES D ANDAINE,Rives d'Andaine,Rives d'Andaine -32,2016-01-01,COM,61191,0,GLOS LA FERRIERE,Glos-la-Ferrière,Glos-la-Ferrière,COMD,61191,0,GLOS LA FERRIERE,Glos-la-Ferrière,Glos-la-Ferrière +32,2016-01-01,COM,61186,0,GENESLAY,Geneslay,Geneslay,COMD,61186,0,GENESLAY,Geneslay,Geneslay 32,2016-01-01,COM,61191,0,GLOS LA FERRIERE,Glos-la-Ferrière,Glos-la-Ferrière,COM,61167,3,FERTE EN OUCHE,Ferté-en-Ouche,La Ferté-en-Ouche -32,2016-01-01,COM,61200,1,HALEINE,Haleine,Haleine,COMD,61200,1,HALEINE,Haleine,Haleine +32,2016-01-01,COM,61191,0,GLOS LA FERRIERE,Glos-la-Ferrière,Glos-la-Ferrière,COMD,61191,0,GLOS LA FERRIERE,Glos-la-Ferrière,Glos-la-Ferrière 32,2016-01-01,COM,61200,1,HALEINE,Haleine,Haleine,COM,61096,0,RIVES D ANDAINE,Rives d'Andaine,Rives d'Andaine +32,2016-01-01,COM,61200,1,HALEINE,Haleine,Haleine,COMD,61200,1,HALEINE,Haleine,Haleine 32,2016-01-01,COM,61201,3,HAUTE CHAPELLE,Haute-Chapelle,La Haute-Chapelle,COM,61145,0,DOMFRONT EN POIRAIE,Domfront en Poiraie,Domfront en Poiraie 32,2016-01-01,COM,61201,3,HAUTE CHAPELLE,Haute-Chapelle,La Haute-Chapelle,COMD,61201,3,HAUTE CHAPELLE,Haute-Chapelle,La Haute-Chapelle -32,2016-01-01,COM,61204,5,HERMITIERE,Hermitière,L'Hermitière,COM,61484,0,VAL AU PERCHE,Val-au-Perche,Val-au-Perche 32,2016-01-01,COM,61204,5,HERMITIERE,Hermitière,L'Hermitière,COMD,61204,5,HERMITIERE,Hermitière,L'Hermitière +32,2016-01-01,COM,61204,5,HERMITIERE,Hermitière,L'Hermitière,COM,61484,0,VAL AU PERCHE,Val-au-Perche,Val-au-Perche 32,2016-01-01,COM,61205,0,HEUGON,Heugon,Heugon,COM,61167,3,FERTE EN OUCHE,Ferté-en-Ouche,La Ferté-en-Ouche 32,2016-01-01,COM,61205,0,HEUGON,Heugon,Heugon,COMD,61205,0,HEUGON,Heugon,Heugon 32,2016-01-01,COM,61211,0,JUVIGNY SOUS ANDAINE,Juvigny-sous-Andaine,Juvigny-sous-Andaine,COM,61211,0,JUVIGNY VAL D ANDAINE,Juvigny Val d'Andaine,Juvigny Val d'Andaine 32,2016-01-01,COM,61211,0,JUVIGNY SOUS ANDAINE,Juvigny-sous-Andaine,Juvigny-sous-Andaine,COMD,61211,0,JUVIGNY SOUS ANDAINE,Juvigny-sous-Andaine,Juvigny-sous-Andaine -32,2016-01-01,COM,61220,3,LANDE SUR EURE,Lande-sur-Eure,La Lande-sur-Eure,COM,61230,0,LONGNY LES VILLAGES,Longny les Villages,Longny les Villages 32,2016-01-01,COM,61220,3,LANDE SUR EURE,Lande-sur-Eure,La Lande-sur-Eure,COMD,61220,3,LANDE SUR EURE,Lande-sur-Eure,La Lande-sur-Eure +32,2016-01-01,COM,61220,3,LANDE SUR EURE,Lande-sur-Eure,La Lande-sur-Eure,COM,61230,0,LONGNY LES VILLAGES,Longny les Villages,Longny les Villages 32,2016-01-01,COM,61226,0,LIGNEROLLES,Lignerolles,Lignerolles,COMD,61226,0,LIGNEROLLES,Lignerolles,Lignerolles 32,2016-01-01,COM,61226,0,LIGNEROLLES,Lignerolles,Lignerolles,COM,61491,0,TOUROUVRE AU PERCHE,Tourouvre au Perche,Tourouvre au Perche 32,2016-01-01,COM,61230,0,LONGNY AU PERCHE,Longny-au-Perche,Longny-au-Perche,COMD,61230,0,LONGNY AU PERCHE,Longny-au-Perche,Longny-au-Perche @@ -5081,40 +4913,40 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,61246,0,MALE,Mâle,Mâle,COM,61484,0,VAL AU PERCHE,Val-au-Perche,Val-au-Perche 32,2016-01-01,COM,61247,0,MALETABLE,Malétable,Malétable,COM,61230,0,LONGNY LES VILLAGES,Longny les Villages,Longny les Villages 32,2016-01-01,COM,61247,0,MALETABLE,Malétable,Malétable,COMD,61247,0,MALETABLE,Malétable,Malétable -32,2016-01-01,COM,61250,0,MARCHAINVILLE,Marchainville,Marchainville,COMD,61250,0,MARCHAINVILLE,Marchainville,Marchainville 32,2016-01-01,COM,61250,0,MARCHAINVILLE,Marchainville,Marchainville,COM,61230,0,LONGNY LES VILLAGES,Longny les Villages,Longny les Villages +32,2016-01-01,COM,61250,0,MARCHAINVILLE,Marchainville,Marchainville,COMD,61250,0,MARCHAINVILLE,Marchainville,Marchainville 32,2016-01-01,COM,61253,0,MARMOUILLE,Marmouillé,Marmouillé,COM,61081,0,CHAILLOUE,Chailloué,Chailloué 32,2016-01-01,COM,61253,0,MARMOUILLE,Marmouillé,Marmouillé,COMD,61253,0,MARMOUILLE,Marmouillé,Marmouillé 32,2016-01-01,COM,61270,0,MENIL JEAN,Ménil-Jean,Ménil-Jean,COMD,61270,0,MENIL JEAN,Ménil-Jean,Ménil-Jean 32,2016-01-01,COM,61270,0,MENIL JEAN,Ménil-Jean,Ménil-Jean,COM,61339,0,PUTANGES LE LAC,Putanges-le-Lac,Putanges-le-Lac 32,2016-01-01,COM,61280,0,MONCEAUX AU PERCHE,Monceaux-au-Perche,Monceaux-au-Perche,COM,61230,0,LONGNY LES VILLAGES,Longny les Villages,Longny les Villages 32,2016-01-01,COM,61280,0,MONCEAUX AU PERCHE,Monceaux-au-Perche,Monceaux-au-Perche,COMD,61280,0,MONCEAUX AU PERCHE,Monceaux-au-Perche,Monceaux-au-Perche -32,2016-01-01,COM,61282,0,MONNAI,Monnai,Monnai,COMD,61282,0,MONNAI,Monnai,Monnai 32,2016-01-01,COM,61282,0,MONNAI,Monnai,Monnai,COM,61167,3,FERTE EN OUCHE,Ferté-en-Ouche,La Ferté-en-Ouche +32,2016-01-01,COM,61282,0,MONNAI,Monnai,Monnai,COMD,61282,0,MONNAI,Monnai,Monnai 32,2016-01-01,COM,61296,0,MOULICENT,Moulicent,Moulicent,COM,61230,0,LONGNY LES VILLAGES,Longny les Villages,Longny les Villages 32,2016-01-01,COM,61296,0,MOULICENT,Moulicent,Moulicent,COMD,61296,0,MOULICENT,Moulicent,Moulicent 32,2016-01-01,COM,61305,0,NEUILLY SUR EURE,Neuilly-sur-Eure,Neuilly-sur-Eure,COM,61230,0,LONGNY LES VILLAGES,Longny les Villages,Longny les Villages 32,2016-01-01,COM,61305,0,NEUILLY SUR EURE,Neuilly-sur-Eure,Neuilly-sur-Eure,COMD,61305,0,NEUILLY SUR EURE,Neuilly-sur-Eure,Neuilly-sur-Eure -32,2016-01-01,COM,61306,0,NEUVILLE PRES SEES,Neuville-près-Sées,Neuville-près-Sées,COMD,61306,0,NEUVILLE PRES SEES,Neuville-près-Sées,Neuville-près-Sées 32,2016-01-01,COM,61306,0,NEUVILLE PRES SEES,Neuville-près-Sées,Neuville-près-Sées,COM,61081,0,CHAILLOUE,Chailloué,Chailloué +32,2016-01-01,COM,61306,0,NEUVILLE PRES SEES,Neuville-près-Sées,Neuville-près-Sées,COMD,61306,0,NEUVILLE PRES SEES,Neuville-près-Sées,Neuville-près-Sées 32,2016-01-01,COM,61309,0,NOCE,Nocé,Nocé,COM,61309,0,PERCHE EN NOCE,Perche en Nocé,Perche en Nocé 32,2016-01-01,COM,61309,0,NOCE,Nocé,Nocé,COMD,61309,0,NOCE,Nocé,Nocé 32,2016-01-01,COM,61313,0,NOTRE DAME DU ROCHER,Notre-Dame-du-Rocher,Notre-Dame-du-Rocher,COM,61007,1,ATHIS VAL DE ROUVRE,Athis-Val de Rouvre,Athis-Val de Rouvre 32,2016-01-01,COM,61313,0,NOTRE DAME DU ROCHER,Notre-Dame-du-Rocher,Notre-Dame-du-Rocher,COMD,61313,0,NOTRE DAME DU ROCHER,Notre-Dame-du-Rocher,Notre-Dame-du-Rocher -32,2016-01-01,COM,61320,1,ORVILLE,Orville,Orville,COM,61460,0,SAP EN AUGE,Sap-en-Auge,Sap-en-Auge 32,2016-01-01,COM,61320,1,ORVILLE,Orville,Orville,COMD,61320,1,ORVILLE,Orville,Orville -32,2016-01-01,COM,61324,0,PASSAIS,Passais,Passais,COM,61324,0,PASSAIS VILLAGES,Passais Villages,Passais Villages +32,2016-01-01,COM,61320,1,ORVILLE,Orville,Orville,COM,61460,0,SAP EN AUGE,Sap-en-Auge,Sap-en-Auge 32,2016-01-01,COM,61324,0,PASSAIS,Passais,Passais,COMD,61324,0,PASSAIS,Passais,Passais +32,2016-01-01,COM,61324,0,PASSAIS,Passais,Passais,COM,61324,0,PASSAIS VILLAGES,Passais Villages,Passais Villages 32,2016-01-01,COM,61335,3,POTERIE AU PERCHE,Poterie-au-Perche,La Poterie-au-Perche,COMD,61335,3,POTERIE AU PERCHE,Poterie-au-Perche,La Poterie-au-Perche 32,2016-01-01,COM,61335,3,POTERIE AU PERCHE,Poterie-au-Perche,La Poterie-au-Perche,COM,61491,0,TOUROUVRE AU PERCHE,Tourouvre au Perche,Tourouvre au Perche 32,2016-01-01,COM,61337,0,PREAUX DU PERCHE,Préaux-du-Perche,Préaux-du-Perche,COM,61309,0,PERCHE EN NOCE,Perche en Nocé,Perche en Nocé 32,2016-01-01,COM,61337,0,PREAUX DU PERCHE,Préaux-du-Perche,Préaux-du-Perche,COMD,61337,0,PREAUX DU PERCHE,Préaux-du-Perche,Préaux-du-Perche -32,2016-01-01,COM,61338,0,PREPOTIN,Prépotin,Prépotin,COM,61491,0,TOUROUVRE AU PERCHE,Tourouvre au Perche,Tourouvre au Perche 32,2016-01-01,COM,61338,0,PREPOTIN,Prépotin,Prépotin,COMD,61338,0,PREPOTIN,Prépotin,Prépotin -32,2016-01-01,COM,61339,0,PUTANGES PONT ECREPIN,Putanges-Pont-Écrepin,Putanges-Pont-Écrepin,COMD,61339,0,PUTANGES PONT ECREPIN,Putanges-Pont-Écrepin,Putanges-Pont-Écrepin +32,2016-01-01,COM,61338,0,PREPOTIN,Prépotin,Prépotin,COM,61491,0,TOUROUVRE AU PERCHE,Tourouvre au Perche,Tourouvre au Perche 32,2016-01-01,COM,61339,0,PUTANGES PONT ECREPIN,Putanges-Pont-Écrepin,Putanges-Pont-Écrepin,COM,61339,0,PUTANGES LE LAC,Putanges-le-Lac,Putanges-le-Lac -32,2016-01-01,COM,61340,0,RABODANGES,Rabodanges,Rabodanges,COMD,61340,0,RABODANGES,Rabodanges,Rabodanges +32,2016-01-01,COM,61339,0,PUTANGES PONT ECREPIN,Putanges-Pont-Écrepin,Putanges-Pont-Écrepin,COMD,61339,0,PUTANGES PONT ECREPIN,Putanges-Pont-Écrepin,Putanges-Pont-Écrepin 32,2016-01-01,COM,61340,0,RABODANGES,Rabodanges,Rabodanges,COM,61339,0,PUTANGES LE LAC,Putanges-le-Lac,Putanges-le-Lac +32,2016-01-01,COM,61340,0,RABODANGES,Rabodanges,Rabodanges,COMD,61340,0,RABODANGES,Rabodanges,Rabodanges 32,2016-01-01,COM,61341,0,RADON,Radon,Radon,COM,61341,1,ECOUVES,Écouves,Écouves 32,2016-01-01,COM,61341,0,RADON,Radon,Radon,COMD,61341,0,RADON,Radon,Radon 32,2016-01-01,COM,61343,0,RANDONNAI,Randonnai,Randonnai,COMD,61343,0,RANDONNAI,Randonnai,Randonnai @@ -5122,24 +4954,24 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,61345,0,REMALARD,Rémalard,Rémalard,COM,61345,0,REMALARD EN PERCHE,Rémalard en Perche,Rémalard en Perche 32,2016-01-01,COM,61353,0,RONFEUGERAI,Ronfeugerai,Ronfeugerai,COM,61007,1,ATHIS VAL DE ROUVRE,Athis-Val de Rouvre,Athis-Val de Rouvre 32,2016-01-01,COM,61353,0,RONFEUGERAI,Ronfeugerai,Ronfeugerai,COMD,61353,0,RONFEUGERAI,Ronfeugerai,Ronfeugerai -32,2016-01-01,COM,61354,4,ROTOURS,Rotours,Les Rotours,COMD,61354,4,ROTOURS,Rotours,Les Rotours 32,2016-01-01,COM,61354,4,ROTOURS,Rotours,Les Rotours,COM,61339,0,PUTANGES LE LAC,Putanges-le-Lac,Putanges-le-Lac +32,2016-01-01,COM,61354,4,ROTOURS,Rotours,Les Rotours,COMD,61354,4,ROTOURS,Rotours,Les Rotours 32,2016-01-01,COM,61355,0,ROUELLE,Rouellé,Rouellé,COM,61145,0,DOMFRONT EN POIRAIE,Domfront en Poiraie,Domfront en Poiraie 32,2016-01-01,COM,61355,0,ROUELLE,Rouellé,Rouellé,COMD,61355,0,ROUELLE,Rouellé,Rouellé -32,2016-01-01,COM,61356,3,ROUGE,Rouge,La Rouge,COM,61484,0,VAL AU PERCHE,Val-au-Perche,Val-au-Perche 32,2016-01-01,COM,61356,3,ROUGE,Rouge,La Rouge,COMD,61356,3,ROUGE,Rouge,La Rouge -32,2016-01-01,COM,61359,0,SAINT AGNAN SUR ERRE,Saint-Agnan-sur-Erre,Saint-Agnan-sur-Erre,COM,61484,0,VAL AU PERCHE,Val-au-Perche,Val-au-Perche +32,2016-01-01,COM,61356,3,ROUGE,Rouge,La Rouge,COM,61484,0,VAL AU PERCHE,Val-au-Perche,Val-au-Perche 32,2016-01-01,COM,61359,0,SAINT AGNAN SUR ERRE,Saint-Agnan-sur-Erre,Saint-Agnan-sur-Erre,COMD,61359,0,SAINT AGNAN SUR ERRE,Saint-Agnan-sur-Erre,Saint-Agnan-sur-Erre +32,2016-01-01,COM,61359,0,SAINT AGNAN SUR ERRE,Saint-Agnan-sur-Erre,Saint-Agnan-sur-Erre,COM,61484,0,VAL AU PERCHE,Val-au-Perche,Val-au-Perche 32,2016-01-01,COM,61364,0,SAINT AUBERT SUR ORNE,Saint-Aubert-sur-Orne,Saint-Aubert-sur-Orne,COM,61339,0,PUTANGES LE LAC,Putanges-le-Lac,Putanges-le-Lac 32,2016-01-01,COM,61364,0,SAINT AUBERT SUR ORNE,Saint-Aubert-sur-Orne,Saint-Aubert-sur-Orne,COMD,61364,0,SAINT AUBERT SUR ORNE,Saint-Aubert-sur-Orne,Saint-Aubert-sur-Orne 32,2016-01-01,COM,61368,0,SAINT AUBIN DES GROIS,Saint-Aubin-des-Grois,Saint-Aubin-des-Grois,COM,61309,0,PERCHE EN NOCE,Perche en Nocé,Perche en Nocé 32,2016-01-01,COM,61368,0,SAINT AUBIN DES GROIS,Saint-Aubin-des-Grois,Saint-Aubin-des-Grois,COMD,61368,0,SAINT AUBIN DES GROIS,Saint-Aubin-des-Grois,Saint-Aubin-des-Grois -32,2016-01-01,COM,61378,0,SAINTE CROIX SUR ORNE,Sainte-Croix-sur-Orne,Sainte-Croix-sur-Orne,COMD,61378,0,SAINTE CROIX SUR ORNE,Sainte-Croix-sur-Orne,Sainte-Croix-sur-Orne 32,2016-01-01,COM,61378,0,SAINTE CROIX SUR ORNE,Sainte-Croix-sur-Orne,Sainte-Croix-sur-Orne,COM,61339,0,PUTANGES LE LAC,Putanges-le-Lac,Putanges-le-Lac -32,2016-01-01,COM,61380,0,SAINT DENIS DE VILLENETTE,Saint-Denis-de-Villenette,Saint-Denis-de-Villenette,COMD,61380,0,SAINT DENIS DE VILLENETTE,Saint-Denis-de-Villenette,Saint-Denis-de-Villenette +32,2016-01-01,COM,61378,0,SAINTE CROIX SUR ORNE,Sainte-Croix-sur-Orne,Sainte-Croix-sur-Orne,COMD,61378,0,SAINTE CROIX SUR ORNE,Sainte-Croix-sur-Orne,Sainte-Croix-sur-Orne 32,2016-01-01,COM,61380,0,SAINT DENIS DE VILLENETTE,Saint-Denis-de-Villenette,Saint-Denis-de-Villenette,COM,61211,0,JUVIGNY VAL D ANDAINE,Juvigny Val d'Andaine,Juvigny Val d'Andaine -32,2016-01-01,COM,61409,0,SAINT JEAN DE LA FORET,Saint-Jean-de-la-Forêt,Saint-Jean-de-la-Forêt,COMD,61409,0,SAINT JEAN DE LA FORET,Saint-Jean-de-la-Forêt,Saint-Jean-de-la-Forêt +32,2016-01-01,COM,61380,0,SAINT DENIS DE VILLENETTE,Saint-Denis-de-Villenette,Saint-Denis-de-Villenette,COMD,61380,0,SAINT DENIS DE VILLENETTE,Saint-Denis-de-Villenette,Saint-Denis-de-Villenette 32,2016-01-01,COM,61409,0,SAINT JEAN DE LA FORET,Saint-Jean-de-la-Forêt,Saint-Jean-de-la-Forêt,COM,61309,0,PERCHE EN NOCE,Perche en Nocé,Perche en Nocé +32,2016-01-01,COM,61409,0,SAINT JEAN DE LA FORET,Saint-Jean-de-la-Forêt,Saint-Jean-de-la-Forêt,COMD,61409,0,SAINT JEAN DE LA FORET,Saint-Jean-de-la-Forêt,Saint-Jean-de-la-Forêt 32,2016-01-01,COM,61428,0,SAINT MAURICE DU DESERT,Saint-Maurice-du-Désert,Saint-Maurice-du-Désert,COMD,61428,0,SAINT MAURICE DU DESERT,Saint-Maurice-du-Désert,Saint-Maurice-du-Désert 32,2016-01-01,COM,61428,0,SAINT MAURICE DU DESERT,Saint-Maurice-du-Désert,Saint-Maurice-du-Désert,COM,61463,4,MONTS D ANDAINE,Monts d'Andaine,Les Monts d'Andaine 32,2016-01-01,COM,61430,0,SAINT MAURICE SUR HUISNE,Saint-Maurice-sur-Huisne,Saint-Maurice-sur-Huisne,COM,61050,0,COUR MAUGIS SUR HUISNE,Cour-Maugis sur Huisne,Cour-Maugis sur Huisne @@ -5151,105 +4983,105 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,61441,0,SAINT OUEN SUR MAIRE,Saint-Ouen-sur-Maire,Saint-Ouen-sur-Maire,COMD,61441,0,SAINT OUEN SUR MAIRE,Saint-Ouen-sur-Maire,Saint-Ouen-sur-Maire 32,2016-01-01,COM,61455,0,SAINT SIMEON,Saint-Siméon,Saint-Siméon,COM,61324,0,PASSAIS VILLAGES,Passais Villages,Passais Villages 32,2016-01-01,COM,61455,0,SAINT SIMEON,Saint-Siméon,Saint-Siméon,COMD,61455,0,SAINT SIMEON,Saint-Siméon,Saint-Siméon -32,2016-01-01,COM,61458,0,SAINT VICTOR DE RENO,Saint-Victor-de-Réno,Saint-Victor-de-Réno,COMD,61458,0,SAINT VICTOR DE RENO,Saint-Victor-de-Réno,Saint-Victor-de-Réno 32,2016-01-01,COM,61458,0,SAINT VICTOR DE RENO,Saint-Victor-de-Réno,Saint-Victor-de-Réno,COM,61230,0,LONGNY LES VILLAGES,Longny les Villages,Longny les Villages -32,2016-01-01,COM,61460,2,SAP,Sap,Le Sap,COM,61460,0,SAP EN AUGE,Sap-en-Auge,Sap-en-Auge +32,2016-01-01,COM,61458,0,SAINT VICTOR DE RENO,Saint-Victor-de-Réno,Saint-Victor-de-Réno,COMD,61458,0,SAINT VICTOR DE RENO,Saint-Victor-de-Réno,Saint-Victor-de-Réno 32,2016-01-01,COM,61460,2,SAP,Sap,Le Sap,COMD,61460,2,SAP,Sap,Le Sap +32,2016-01-01,COM,61460,2,SAP,Sap,Le Sap,COM,61460,0,SAP EN AUGE,Sap-en-Auge,Sap-en-Auge 32,2016-01-01,COM,61463,3,SAUVAGERE,Sauvagère,La Sauvagère,COMD,61463,3,SAUVAGERE,Sauvagère,La Sauvagère 32,2016-01-01,COM,61463,3,SAUVAGERE,Sauvagère,La Sauvagère,COM,61463,4,MONTS D ANDAINE,Monts d'Andaine,Les Monts d'Andaine 32,2016-01-01,COM,61465,0,SEGRIE FONTAINE,Ségrie-Fontaine,Ségrie-Fontaine,COM,61007,1,ATHIS VAL DE ROUVRE,Athis-Val de Rouvre,Athis-Val de Rouvre 32,2016-01-01,COM,61465,0,SEGRIE FONTAINE,Ségrie-Fontaine,Ségrie-Fontaine,COMD,61465,0,SEGRIE FONTAINE,Ségrie-Fontaine,Ségrie-Fontaine 32,2016-01-01,COM,61469,0,SEPT FORGES,Sept-Forges,Sept-Forges,COM,61211,0,JUVIGNY VAL D ANDAINE,Juvigny Val d'Andaine,Juvigny Val d'Andaine 32,2016-01-01,COM,61469,0,SEPT FORGES,Sept-Forges,Sept-Forges,COMD,61469,0,SEPT FORGES,Sept-Forges,Sept-Forges -32,2016-01-01,COM,61470,0,SERANS,Serans,Serans,COMD,61470,0,SERANS,Serans,Serans 32,2016-01-01,COM,61470,0,SERANS,Serans,Serans,COM,61153,1,ECOUCHE LES VALLEES,Écouché-les-Vallées,Écouché-les-Vallées -32,2016-01-01,COM,61478,0,TAILLEBOIS,Taillebois,Taillebois,COMD,61478,0,TAILLEBOIS,Taillebois,Taillebois +32,2016-01-01,COM,61470,0,SERANS,Serans,Serans,COMD,61470,0,SERANS,Serans,Serans 32,2016-01-01,COM,61478,0,TAILLEBOIS,Taillebois,Taillebois,COM,61007,1,ATHIS VAL DE ROUVRE,Athis-Val de Rouvre,Athis-Val de Rouvre -32,2016-01-01,COM,61483,0,BAGNOLES DE L ORNE,Bagnoles-de-l'Orne,Bagnoles-de-l'Orne,COMD,61483,0,BAGNOLES DE L ORNE,Bagnoles-de-l'Orne,Bagnoles-de-l'Orne +32,2016-01-01,COM,61478,0,TAILLEBOIS,Taillebois,Taillebois,COMD,61478,0,TAILLEBOIS,Taillebois,Taillebois 32,2016-01-01,COM,61483,0,BAGNOLES DE L ORNE,Bagnoles-de-l'Orne,Bagnoles-de-l'Orne,COM,61483,0,BAGNOLES DE L ORNE NORMANDIE,Bagnoles de l'Orne Normandie,Bagnoles de l'Orne Normandie -32,2016-01-01,COM,61484,2,THEIL,Theil,Le Theil,COMD,61484,2,THEIL,Theil,Le Theil +32,2016-01-01,COM,61483,0,BAGNOLES DE L ORNE,Bagnoles-de-l'Orne,Bagnoles-de-l'Orne,COMD,61483,0,BAGNOLES DE L ORNE,Bagnoles-de-l'Orne,Bagnoles-de-l'Orne 32,2016-01-01,COM,61484,2,THEIL,Theil,Le Theil,COM,61484,0,VAL AU PERCHE,Val-au-Perche,Val-au-Perche +32,2016-01-01,COM,61484,2,THEIL,Theil,Le Theil,COMD,61484,2,THEIL,Theil,Le Theil 32,2016-01-01,COM,61489,4,TOURAILLES,Tourailles,Les Tourailles,COM,61007,1,ATHIS VAL DE ROUVRE,Athis-Val de Rouvre,Athis-Val de Rouvre 32,2016-01-01,COM,61489,4,TOURAILLES,Tourailles,Les Tourailles,COMD,61489,4,TOURAILLES,Tourailles,Les Tourailles -32,2016-01-01,COM,61491,0,TOUROUVRE,Tourouvre,Tourouvre,COM,61491,0,TOUROUVRE AU PERCHE,Tourouvre au Perche,Tourouvre au Perche 32,2016-01-01,COM,61491,0,TOUROUVRE,Tourouvre,Tourouvre,COMD,61491,0,TOUROUVRE,Tourouvre,Tourouvre -32,2016-01-01,COM,61506,0,VILLERS EN OUCHE,Villers-en-Ouche,Villers-en-Ouche,COMD,61506,0,VILLERS EN OUCHE,Villers-en-Ouche,Villers-en-Ouche +32,2016-01-01,COM,61491,0,TOUROUVRE,Tourouvre,Tourouvre,COM,61491,0,TOUROUVRE AU PERCHE,Tourouvre au Perche,Tourouvre au Perche 32,2016-01-01,COM,61506,0,VILLERS EN OUCHE,Villers-en-Ouche,Villers-en-Ouche,COM,61167,3,FERTE EN OUCHE,Ferté-en-Ouche,La Ferté-en-Ouche -32,2016-01-01,COM,61509,0,VINGT HANAPS,Vingt-Hanaps,Vingt-Hanaps,COMD,61509,0,VINGT HANAPS,Vingt-Hanaps,Vingt-Hanaps +32,2016-01-01,COM,61506,0,VILLERS EN OUCHE,Villers-en-Ouche,Villers-en-Ouche,COMD,61506,0,VILLERS EN OUCHE,Villers-en-Ouche,Villers-en-Ouche 32,2016-01-01,COM,61509,0,VINGT HANAPS,Vingt-Hanaps,Vingt-Hanaps,COM,61341,1,ECOUVES,Écouves,Écouves +32,2016-01-01,COM,61509,0,VINGT HANAPS,Vingt-Hanaps,Vingt-Hanaps,COMD,61509,0,VINGT HANAPS,Vingt-Hanaps,Vingt-Hanaps 32,2016-01-01,COM,62226,0,CLARQUES,Clarques,Clarques,COMD,62226,0,CLARQUES,Clarques,Clarques 32,2016-01-01,COM,62226,0,CLARQUES,Clarques,Clarques,COM,62691,0,SAINT AUGUSTIN,Saint-Augustin,Saint-Augustin 32,2016-01-01,COM,62691,0,REBECQUES,Rebecques,Rebecques,COMD,62691,0,REBECQUES,Rebecques,Rebecques 32,2016-01-01,COM,62691,0,REBECQUES,Rebecques,Rebecques,COM,62691,0,SAINT AUGUSTIN,Saint-Augustin,Saint-Augustin 32,2016-01-01,COM,62757,0,SAINT MARTIN AU LAERT,Saint-Martin-au-Laërt,Saint-Martin-au-Laërt,COM,62757,0,SAINT MARTIN LEZ TATINGHEM,Saint-Martin-lez-Tatinghem,Saint-Martin-lez-Tatinghem 32,2016-01-01,COM,62757,0,SAINT MARTIN AU LAERT,Saint-Martin-au-Laërt,Saint-Martin-au-Laërt,COMD,62757,0,SAINT MARTIN AU LAERT,Saint-Martin-au-Laërt,Saint-Martin-au-Laërt -32,2016-01-01,COM,62807,0,TATINGHEM,Tatinghem,Tatinghem,COMD,62807,0,TATINGHEM,Tatinghem,Tatinghem 32,2016-01-01,COM,62807,0,TATINGHEM,Tatinghem,Tatinghem,COM,62757,0,SAINT MARTIN LEZ TATINGHEM,Saint-Martin-lez-Tatinghem,Saint-Martin-lez-Tatinghem +32,2016-01-01,COM,62807,0,TATINGHEM,Tatinghem,Tatinghem,COMD,62807,0,TATINGHEM,Tatinghem,Tatinghem 32,2016-01-01,COM,63018,1,AULHAT SAINT PRIVAT,Aulhat-Saint-Privat,Aulhat-Saint-Privat,COMD,63018,1,AULHAT SAINT PRIVAT,Aulhat-Saint-Privat,Aulhat-Saint-Privat 32,2016-01-01,COM,63018,1,AULHAT SAINT PRIVAT,Aulhat-Saint-Privat,Aulhat-Saint-Privat,COM,63160,1,AULHAT FLAT,Aulhat-Flat,Aulhat-Flat -32,2016-01-01,COM,63068,0,CELLULE,Cellule,Cellule,COM,63244,0,CHAMBARON SUR MORGE,Chambaron sur Morge,Chambaron sur Morge 32,2016-01-01,COM,63068,0,CELLULE,Cellule,Cellule,COMD,63068,0,CELLULE,Cellule,Cellule -32,2016-01-01,COM,63160,0,FLAT,Flat,Flat,COM,63160,1,AULHAT FLAT,Aulhat-Flat,Aulhat-Flat +32,2016-01-01,COM,63068,0,CELLULE,Cellule,Cellule,COM,63244,0,CHAMBARON SUR MORGE,Chambaron sur Morge,Chambaron sur Morge 32,2016-01-01,COM,63160,0,FLAT,Flat,Flat,COMD,63160,0,FLAT,Flat,Flat -32,2016-01-01,COM,63244,3,MOUTADE,Moutade,La Moutade,COMD,63244,3,MOUTADE,Moutade,La Moutade +32,2016-01-01,COM,63160,0,FLAT,Flat,Flat,COM,63160,1,AULHAT FLAT,Aulhat-Flat,Aulhat-Flat 32,2016-01-01,COM,63244,3,MOUTADE,Moutade,La Moutade,COM,63244,0,CHAMBARON SUR MORGE,Chambaron sur Morge,Chambaron sur Morge -32,2016-01-01,COM,63255,0,NONETTE,Nonette,Nonette,COM,63255,0,NONETTE ORSONNETTE,Nonette-Orsonnette,Nonette-Orsonnette +32,2016-01-01,COM,63244,3,MOUTADE,Moutade,La Moutade,COMD,63244,3,MOUTADE,Moutade,La Moutade 32,2016-01-01,COM,63255,0,NONETTE,Nonette,Nonette,COMD,63255,0,NONETTE,Nonette,Nonette -32,2016-01-01,COM,63266,1,ORSONNETTE,Orsonnette,Orsonnette,COMD,63266,1,ORSONNETTE,Orsonnette,Orsonnette +32,2016-01-01,COM,63255,0,NONETTE,Nonette,Nonette,COM,63255,0,NONETTE ORSONNETTE,Nonette-Orsonnette,Nonette-Orsonnette 32,2016-01-01,COM,63266,1,ORSONNETTE,Orsonnette,Orsonnette,COM,63255,0,NONETTE ORSONNETTE,Nonette-Orsonnette,Nonette-Orsonnette -32,2016-01-01,COM,65027,1,ARMENTEULE,Armenteule,Armenteule,COM,65282,0,LOUDENVIELLE,Loudenvielle,Loudenvielle +32,2016-01-01,COM,63266,1,ORSONNETTE,Orsonnette,Orsonnette,COMD,63266,1,ORSONNETTE,Orsonnette,Orsonnette 32,2016-01-01,COM,65027,1,ARMENTEULE,Armenteule,Armenteule,COMD,65027,1,ARMENTEULE,Armenteule,Armenteule +32,2016-01-01,COM,65027,1,ARMENTEULE,Armenteule,Armenteule,COM,65282,0,LOUDENVIELLE,Loudenvielle,Loudenvielle 32,2016-01-01,COM,65188,0,GAVARNIE,Gavarnie,Gavarnie,COMD,65188,0,GAVARNIE,Gavarnie,Gavarnie 32,2016-01-01,COM,65188,0,GAVARNIE,Gavarnie,Gavarnie,COM,65192,0,GAVARNIE GEDRE,Gavarnie-Gèdre,Gavarnie-Gèdre 32,2016-01-01,COM,65192,0,GEDRE,Gèdre,Gèdre,COMD,65192,0,GEDRE,Gèdre,Gèdre 32,2016-01-01,COM,65192,0,GEDRE,Gèdre,Gèdre,COM,65192,0,GAVARNIE GEDRE,Gavarnie-Gèdre,Gavarnie-Gèdre 32,2016-01-01,COM,65282,0,LOUDENVIELLE,Loudenvielle,Loudenvielle,COMD,65282,0,LOUDENVIELLE,Loudenvielle,Loudenvielle 32,2016-01-01,COM,65282,0,LOUDENVIELLE,Loudenvielle,Loudenvielle,COM,65282,0,LOUDENVIELLE,Loudenvielle,Loudenvielle -32,2016-01-01,COM,67004,1,ALLENWILLER,Allenwiller,Allenwiller,COMD,67004,1,ALLENWILLER,Allenwiller,Allenwiller 32,2016-01-01,COM,67004,1,ALLENWILLER,Allenwiller,Allenwiller,COM,67004,0,SOMMERAU,Sommerau,Sommerau +32,2016-01-01,COM,67004,1,ALLENWILLER,Allenwiller,Allenwiller,COMD,67004,1,ALLENWILLER,Allenwiller,Allenwiller 32,2016-01-01,COMA,67024,0,BEHLENHEIM,Behlenheim,Behlenheim,COM,67495,0,TRUCHTERSHEIM,Truchtersheim,Truchtersheim 32,2016-01-01,COM,67041,0,BIRKENWALD,Birkenwald,Birkenwald,COM,67004,0,SOMMERAU,Sommerau,Sommerau 32,2016-01-01,COM,67041,0,BIRKENWALD,Birkenwald,Birkenwald,COMD,67041,0,BIRKENWALD,Birkenwald,Birkenwald -32,2016-01-01,COM,67158,0,GINGSHEIM,Gingsheim,Gingsheim,COM,67539,0,WINGERSHEIM LES QUATRE BANS,Wingersheim les Quatre Bans,Wingersheim les Quatre Bans 32,2016-01-01,COM,67158,0,GINGSHEIM,Gingsheim,Gingsheim,COMD,67158,0,GINGSHEIM,Gingsheim,Gingsheim -32,2016-01-01,COM,67207,0,HOHATZENHEIM,Hohatzenheim,Hohatzenheim,COM,67539,0,WINGERSHEIM LES QUATRE BANS,Wingersheim les Quatre Bans,Wingersheim les Quatre Bans +32,2016-01-01,COM,67158,0,GINGSHEIM,Gingsheim,Gingsheim,COM,67539,0,WINGERSHEIM LES QUATRE BANS,Wingersheim les Quatre Bans,Wingersheim les Quatre Bans 32,2016-01-01,COM,67207,0,HOHATZENHEIM,Hohatzenheim,Hohatzenheim,COMD,67207,0,HOHATZENHEIM,Hohatzenheim,Hohatzenheim +32,2016-01-01,COM,67207,0,HOHATZENHEIM,Hohatzenheim,Hohatzenheim,COM,67539,0,WINGERSHEIM LES QUATRE BANS,Wingersheim les Quatre Bans,Wingersheim les Quatre Bans 32,2016-01-01,COM,67297,0,MITTELHAUSEN,Mittelhausen,Mittelhausen,COMD,67297,0,MITTELHAUSEN,Mittelhausen,Mittelhausen 32,2016-01-01,COM,67297,0,MITTELHAUSEN,Mittelhausen,Mittelhausen,COM,67539,0,WINGERSHEIM LES QUATRE BANS,Wingersheim les Quatre Bans,Wingersheim les Quatre Bans -32,2016-01-01,COM,67372,0,PFAFFENHOFFEN,Pfaffenhoffen,Pfaffenhoffen,COM,67372,0,VAL DE MODER,Val de Moder,Val de Moder 32,2016-01-01,COM,67372,0,PFAFFENHOFFEN,Pfaffenhoffen,Pfaffenhoffen,COMD,67372,0,PFAFFENHOFFEN,Pfaffenhoffen,Pfaffenhoffen -32,2016-01-01,COM,67374,0,PFETTISHEIM,Pfettisheim,Pfettisheim,COM,67495,0,TRUCHTERSHEIM,Truchtersheim,Truchtersheim +32,2016-01-01,COM,67372,0,PFAFFENHOFFEN,Pfaffenhoffen,Pfaffenhoffen,COM,67372,0,VAL DE MODER,Val de Moder,Val de Moder 32,2016-01-01,COM,67374,0,PFETTISHEIM,Pfettisheim,Pfettisheim,COMD,67374,0,PFETTISHEIM,Pfettisheim,Pfettisheim -32,2016-01-01,COM,67431,0,SALENTHAL,Salenthal,Salenthal,COMD,67431,0,SALENTHAL,Salenthal,Salenthal +32,2016-01-01,COM,67374,0,PFETTISHEIM,Pfettisheim,Pfettisheim,COM,67495,0,TRUCHTERSHEIM,Truchtersheim,Truchtersheim 32,2016-01-01,COM,67431,0,SALENTHAL,Salenthal,Salenthal,COM,67004,0,SOMMERAU,Sommerau,Sommerau -32,2016-01-01,COM,67469,0,SINGRIST,Singrist,Singrist,COMD,67469,0,SINGRIST,Singrist,Singrist +32,2016-01-01,COM,67431,0,SALENTHAL,Salenthal,Salenthal,COMD,67431,0,SALENTHAL,Salenthal,Salenthal 32,2016-01-01,COM,67469,0,SINGRIST,Singrist,Singrist,COM,67004,0,SOMMERAU,Sommerau,Sommerau -32,2016-01-01,COM,67495,0,TRUCHTERSHEIM,Truchtersheim,Truchtersheim,COMD,67495,0,TRUCHTERSHEIM,Truchtersheim,Truchtersheim +32,2016-01-01,COM,67469,0,SINGRIST,Singrist,Singrist,COMD,67469,0,SINGRIST,Singrist,Singrist 32,2016-01-01,COM,67495,0,TRUCHTERSHEIM,Truchtersheim,Truchtersheim,COM,67495,0,TRUCHTERSHEIM,Truchtersheim,Truchtersheim +32,2016-01-01,COM,67495,0,TRUCHTERSHEIM,Truchtersheim,Truchtersheim,COMD,67495,0,TRUCHTERSHEIM,Truchtersheim,Truchtersheim 32,2016-01-01,COM,67496,1,UBERACH,Uberach,Uberach,COM,67372,0,VAL DE MODER,Val de Moder,Val de Moder 32,2016-01-01,COM,67496,1,UBERACH,Uberach,Uberach,COMD,67496,1,UBERACH,Uberach,Uberach 32,2016-01-01,COM,67512,3,WALCK,Walck,La Walck,COM,67372,0,VAL DE MODER,Val de Moder,Val de Moder 32,2016-01-01,COM,67512,3,WALCK,Walck,La Walck,COMD,67512,3,WALCK,Walck,La Walck 32,2016-01-01,COM,67539,0,WINGERSHEIM,Wingersheim,Wingersheim,COM,67539,0,WINGERSHEIM LES QUATRE BANS,Wingersheim les Quatre Bans,Wingersheim les Quatre Bans 32,2016-01-01,COM,67539,0,WINGERSHEIM,Wingersheim,Wingersheim,COMD,67539,0,WINGERSHEIM,Wingersheim,Wingersheim -32,2016-01-01,COM,68006,1,AMMERTZWILLER,Ammertzwiller,Ammertzwiller,COMD,68006,1,AMMERTZWILLER,Ammertzwiller,Ammertzwiller 32,2016-01-01,COM,68006,1,AMMERTZWILLER,Ammertzwiller,Ammertzwiller,COM,68006,0,BERNWILLER,Bernwiller,Bernwiller -32,2016-01-01,COM,68012,1,ASPACH LE HAUT,Aspach-le-Haut,Aspach-le-Haut,COMD,68012,1,ASPACH LE HAUT,Aspach-le-Haut,Aspach-le-Haut +32,2016-01-01,COM,68006,1,AMMERTZWILLER,Ammertzwiller,Ammertzwiller,COMD,68006,1,AMMERTZWILLER,Ammertzwiller,Ammertzwiller 32,2016-01-01,COM,68012,1,ASPACH LE HAUT,Aspach-le-Haut,Aspach-le-Haut,COM,68012,1,ASPACH MICHELBACH,Aspach-Michelbach,Aspach-Michelbach -32,2016-01-01,COM,68031,0,BERNWILLER,Bernwiller,Bernwiller,COMD,68031,0,BERNWILLER,Bernwiller,Bernwiller +32,2016-01-01,COM,68012,1,ASPACH LE HAUT,Aspach-le-Haut,Aspach-le-Haut,COMD,68012,1,ASPACH LE HAUT,Aspach-le-Haut,Aspach-le-Haut 32,2016-01-01,COM,68031,0,BERNWILLER,Bernwiller,Bernwiller,COM,68006,0,BERNWILLER,Bernwiller,Bernwiller +32,2016-01-01,COM,68031,0,BERNWILLER,Bernwiller,Bernwiller,COMD,68031,0,BERNWILLER,Bernwiller,Bernwiller 32,2016-01-01,COM,68056,0,BRUNSTATT,Brunstatt,Brunstatt,COM,68056,0,BRUNSTATT DIDENHEIM,Brunstatt-Didenheim,Brunstatt-Didenheim 32,2016-01-01,COM,68056,0,BRUNSTATT,Brunstatt,Brunstatt,COMD,68056,0,BRUNSTATT,Brunstatt,Brunstatt 32,2016-01-01,COM,68070,0,DIDENHEIM,Didenheim,Didenheim,COM,68056,0,BRUNSTATT DIDENHEIM,Brunstatt-Didenheim,Brunstatt-Didenheim 32,2016-01-01,COM,68070,0,DIDENHEIM,Didenheim,Didenheim,COMD,68070,0,DIDENHEIM,Didenheim,Didenheim -32,2016-01-01,COM,68108,0,GRENTZINGEN,Grentzingen,Grentzingen,COM,68240,1,ILLTAL,Illtal,Illtal 32,2016-01-01,COM,68108,0,GRENTZINGEN,Grentzingen,Grentzingen,COMD,68108,0,GRENTZINGEN,Grentzingen,Grentzingen +32,2016-01-01,COM,68108,0,GRENTZINGEN,Grentzingen,Grentzingen,COM,68240,1,ILLTAL,Illtal,Illtal 32,2016-01-01,COM,68133,0,HENFLINGEN,Henflingen,Henflingen,COMD,68133,0,HENFLINGEN,Henflingen,Henflingen 32,2016-01-01,COM,68133,0,HENFLINGEN,Henflingen,Henflingen,COM,68240,1,ILLTAL,Illtal,Illtal 32,2016-01-01,COM,68143,0,HOLTZWIHR,Holtzwihr,Holtzwihr,COM,68143,0,PORTE DU RIED,Porte du Ried,Porte du Ried 32,2016-01-01,COM,68143,0,HOLTZWIHR,Holtzwihr,Holtzwihr,COMD,68143,0,HOLTZWIHR,Holtzwihr,Holtzwihr -32,2016-01-01,COM,68162,0,KAYSERSBERG,Kaysersberg,Kaysersberg,COM,68162,0,KAYSERSBERG VIGNOBLE,Kaysersberg Vignoble,Kaysersberg Vignoble 32,2016-01-01,COM,68162,0,KAYSERSBERG,Kaysersberg,Kaysersberg,COMD,68162,0,KAYSERSBERG,Kaysersberg,Kaysersberg +32,2016-01-01,COM,68162,0,KAYSERSBERG,Kaysersberg,Kaysersberg,COM,68162,0,KAYSERSBERG VIGNOBLE,Kaysersberg Vignoble,Kaysersberg Vignoble 32,2016-01-01,COM,68164,0,KIENTZHEIM,Kientzheim,Kientzheim,COM,68162,0,KAYSERSBERG VIGNOBLE,Kaysersberg Vignoble,Kaysersberg Vignoble 32,2016-01-01,COM,68164,0,KIENTZHEIM,Kientzheim,Kientzheim,COMD,68164,0,KIENTZHEIM,Kientzheim,Kientzheim 32,2016-01-01,COM,68201,0,MASEVAUX,Masevaux,Masevaux,COM,68201,0,MASEVAUX NIEDERBRUCK,Masevaux-Niederbruck,Masevaux-Niederbruck @@ -5262,20 +5094,20 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,68233,0,NIEDERBRUCK,Niederbruck,Niederbruck,COMD,68233,0,NIEDERBRUCK,Niederbruck,Niederbruck 32,2016-01-01,COM,68240,1,OBERDORF,Oberdorf,Oberdorf,COMD,68240,1,OBERDORF,Oberdorf,Oberdorf 32,2016-01-01,COM,68240,1,OBERDORF,Oberdorf,Oberdorf,COM,68240,1,ILLTAL,Illtal,Illtal -32,2016-01-01,COM,68272,0,RIEDWIHR,Riedwihr,Riedwihr,COMD,68272,0,RIEDWIHR,Riedwihr,Riedwihr 32,2016-01-01,COM,68272,0,RIEDWIHR,Riedwihr,Riedwihr,COM,68143,0,PORTE DU RIED,Porte du Ried,Porte du Ried -32,2016-01-01,COM,68310,0,SIGOLSHEIM,Sigolsheim,Sigolsheim,COMD,68310,0,SIGOLSHEIM,Sigolsheim,Sigolsheim +32,2016-01-01,COM,68272,0,RIEDWIHR,Riedwihr,Riedwihr,COMD,68272,0,RIEDWIHR,Riedwihr,Riedwihr 32,2016-01-01,COM,68310,0,SIGOLSHEIM,Sigolsheim,Sigolsheim,COM,68162,0,KAYSERSBERG VIGNOBLE,Kaysersberg Vignoble,Kaysersberg Vignoble -32,2016-01-01,COM,68314,0,SOPPE LE HAUT,Soppe-le-Haut,Soppe-le-Haut,COMD,68314,0,SOPPE LE HAUT,Soppe-le-Haut,Soppe-le-Haut +32,2016-01-01,COM,68310,0,SIGOLSHEIM,Sigolsheim,Sigolsheim,COMD,68310,0,SIGOLSHEIM,Sigolsheim,Sigolsheim 32,2016-01-01,COM,68314,0,SOPPE LE HAUT,Soppe-le-Haut,Soppe-le-Haut,COM,68219,2,HAUT SOULTZBACH,Haut Soultzbach,Le Haut Soultzbach -32,2016-01-01,COM,68319,0,SPECHBACH LE BAS,Spechbach-le-Bas,Spechbach-le-Bas,COM,68320,0,SPECHBACH,Spechbach,Spechbach +32,2016-01-01,COM,68314,0,SOPPE LE HAUT,Soppe-le-Haut,Soppe-le-Haut,COMD,68314,0,SOPPE LE HAUT,Soppe-le-Haut,Soppe-le-Haut 32,2016-01-01,COM,68319,0,SPECHBACH LE BAS,Spechbach-le-Bas,Spechbach-le-Bas,COMD,68319,0,SPECHBACH LE BAS,Spechbach-le-Bas,Spechbach-le-Bas +32,2016-01-01,COM,68319,0,SPECHBACH LE BAS,Spechbach-le-Bas,Spechbach-le-Bas,COM,68320,0,SPECHBACH,Spechbach,Spechbach 32,2016-01-01,COM,68320,0,SPECHBACH LE HAUT,Spechbach-le-Haut,Spechbach-le-Haut,COMD,68320,0,SPECHBACH LE HAUT,Spechbach-le-Haut,Spechbach-le-Haut 32,2016-01-01,COM,68320,0,SPECHBACH LE HAUT,Spechbach-le-Haut,Spechbach-le-Haut,COM,68320,0,SPECHBACH,Spechbach,Spechbach -32,2016-01-01,COM,69066,0,COURS LA VILLE,Cours-la-Ville,Cours-la-Ville,COM,69066,0,COURS,Cours,Cours 32,2016-01-01,COM,69066,0,COURS LA VILLE,Cours-la-Ville,Cours-la-Ville,COMD,69066,0,COURS LA VILLE,Cours-la-Ville,Cours-la-Ville -32,2016-01-01,COM,69158,0,PONT TRAMBOUZE,Pont-Trambouze,Pont-Trambouze,COMD,69158,0,PONT TRAMBOUZE,Pont-Trambouze,Pont-Trambouze +32,2016-01-01,COM,69066,0,COURS LA VILLE,Cours-la-Ville,Cours-la-Ville,COM,69066,0,COURS,Cours,Cours 32,2016-01-01,COM,69158,0,PONT TRAMBOUZE,Pont-Trambouze,Pont-Trambouze,COM,69066,0,COURS,Cours,Cours +32,2016-01-01,COM,69158,0,PONT TRAMBOUZE,Pont-Trambouze,Pont-Trambouze,COMD,69158,0,PONT TRAMBOUZE,Pont-Trambouze,Pont-Trambouze 32,2016-01-01,COM,69247,0,THEL,Thel,Thel,COM,69066,0,COURS,Cours,Cours 32,2016-01-01,COM,69247,0,THEL,Thel,Thel,COMD,69247,0,THEL,Thel,Thel 32,2016-01-01,COMA,69262,3,VILLE,Ville,La Ville,COM,69066,0,COURS,Cours,Cours @@ -5300,10 +5132,10 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COMA,73016,1,ANSIGNY,Ansigny,Ansigny,COM,73010,1,ENTRELACS,Entrelacs,Entrelacs 32,2016-01-01,COM,73038,0,BELLENTRE,Bellentre,Bellentre,COMD,73038,0,BELLENTRE,Bellentre,Bellentre 32,2016-01-01,COM,73038,0,BELLENTRE,Bellentre,Bellentre,COM,73150,3,PLAGNE TARENTAISE,Plagne Tarentaise,La Plagne Tarentaise -32,2016-01-01,COM,73062,0,CESSENS,Cessens,Cessens,COMD,73062,0,CESSENS,Cessens,Cessens 32,2016-01-01,COM,73062,0,CESSENS,Cessens,Cessens,COM,73010,1,ENTRELACS,Entrelacs,Entrelacs -32,2016-01-01,COM,73093,3,COTE D AIME,Côte-d'Aime,La Côte-d'Aime,COM,73150,3,PLAGNE TARENTAISE,Plagne Tarentaise,La Plagne Tarentaise +32,2016-01-01,COM,73062,0,CESSENS,Cessens,Cessens,COMD,73062,0,CESSENS,Cessens,Cessens 32,2016-01-01,COM,73093,3,COTE D AIME,Côte-d'Aime,La Côte-d'Aime,COMD,73093,3,COTE D AIME,Côte-d'Aime,La Côte-d'Aime +32,2016-01-01,COM,73093,3,COTE D AIME,Côte-d'Aime,La Côte-d'Aime,COM,73150,3,PLAGNE TARENTAISE,Plagne Tarentaise,La Plagne Tarentaise 32,2016-01-01,COM,73108,1,EPERSY,Épersy,Épersy,COM,73010,1,ENTRELACS,Entrelacs,Entrelacs 32,2016-01-01,COM,73108,1,EPERSY,Épersy,Épersy,COMD,73108,1,EPERSY,Épersy,Épersy 32,2016-01-01,COM,73115,0,FONTAINE LE PUITS,Fontaine-le-Puits,Fontaine-le-Puits,COMD,73115,0,FONTAINE LE PUITS,Fontaine-le-Puits,Fontaine-le-Puits @@ -5323,117 +5155,116 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,73239,0,SAINT GIROD,Saint-Girod,Saint-Girod,COMD,73239,0,SAINT GIROD,Saint-Girod,Saint-Girod 32,2016-01-01,COM,73257,0,SAINT MARTIN DE BELLEVILLE,Saint-Martin-de-Belleville,Saint-Martin-de-Belleville,COMD,73257,0,SAINT MARTIN DE BELLEVILLE,Saint-Martin-de-Belleville,Saint-Martin-de-Belleville 32,2016-01-01,COM,73257,0,SAINT MARTIN DE BELLEVILLE,Saint-Martin-de-Belleville,Saint-Martin-de-Belleville,COM,73257,4,BELLEVILLE,Belleville,Les Belleville -32,2016-01-01,COM,73284,0,SALINS LES THERMES,Salins-les-Thermes,Salins-les-Thermes,COMD,73284,0,SALINS LES THERMES,Salins-les-Thermes,Salins-les-Thermes 32,2016-01-01,COM,73284,0,SALINS LES THERMES,Salins-les-Thermes,Salins-les-Thermes,COM,73284,0,SALINS FONTAINE,Salins-Fontaine,Salins-Fontaine +32,2016-01-01,COM,73284,0,SALINS LES THERMES,Salins-les-Thermes,Salins-les-Thermes,COMD,73284,0,SALINS LES THERMES,Salins-les-Thermes,Salins-les-Thermes 32,2016-01-01,COMA,73291,0,TESSENS,Tessens,Tessens,COM,73006,1,AIME LA PLAGNE,Aime-la-Plagne,Aime-la-Plagne -32,2016-01-01,COM,73305,0,VALEZAN,Valezan,Valezan,COMD,73305,0,VALEZAN,Valezan,Valezan 32,2016-01-01,COM,73305,0,VALEZAN,Valezan,Valezan,COM,73150,3,PLAGNE TARENTAISE,Plagne Tarentaise,La Plagne Tarentaise -32,2016-01-01,COM,73321,0,VILLARLURIN,Villarlurin,Villarlurin,COMD,73321,0,VILLARLURIN,Villarlurin,Villarlurin +32,2016-01-01,COM,73305,0,VALEZAN,Valezan,Valezan,COMD,73305,0,VALEZAN,Valezan,Valezan 32,2016-01-01,COM,73321,0,VILLARLURIN,Villarlurin,Villarlurin,COM,73257,4,BELLEVILLE,Belleville,Les Belleville +32,2016-01-01,COM,73321,0,VILLARLURIN,Villarlurin,Villarlurin,COMD,73321,0,VILLARLURIN,Villarlurin,Villarlurin 32,2016-01-01,COMA,73325,0,VILLETTE,Villette,Villette,COM,73006,1,AIME LA PLAGNE,Aime-la-Plagne,Aime-la-Plagne 32,2016-01-01,COM,74084,0,CONS SAINTE COLOMBE,Cons-Sainte-Colombe,Cons-Sainte-Colombe,COMD,74084,0,CONS SAINTE COLOMBE,Cons-Sainte-Colombe,Cons-Sainte-Colombe 32,2016-01-01,COM,74084,0,CONS SAINTE COLOMBE,Cons-Sainte-Colombe,Cons-Sainte-Colombe,COM,74167,0,VAL DE CHAISE,Val de Chaise,Val de Chaise 32,2016-01-01,COM,74112,1,EPAGNY,Épagny,Épagny,COM,74112,1,EPAGNY METZ TESSY,Epagny Metz-Tessy,Epagny Metz-Tessy -32,2016-01-01,COM,74123,0,FAVERGES,Faverges,Faverges,COMD,74123,0,FAVERGES,Faverges,Faverges 32,2016-01-01,COM,74123,0,FAVERGES,Faverges,Faverges,COM,74123,0,FAVERGES SEYTHENEX,Faverges-Seythenex,Faverges-Seythenex +32,2016-01-01,COM,74123,0,FAVERGES,Faverges,Faverges,COMD,74123,0,FAVERGES,Faverges,Faverges 32,2016-01-01,COM,74167,0,MARLENS,Marlens,Marlens,COM,74167,0,VAL DE CHAISE,Val de Chaise,Val de Chaise 32,2016-01-01,COM,74167,0,MARLENS,Marlens,Marlens,COMD,74167,0,MARLENS,Marlens,Marlens 32,2016-01-01,COM,74181,0,METZ TESSY,Metz-Tessy,Metz-Tessy,COM,74112,1,EPAGNY METZ TESSY,Epagny Metz-Tessy,Epagny Metz-Tessy -32,2016-01-01,COM,74187,0,MONTMIN,Montmin,Montmin,COM,74275,0,TALLOIRES MONTMIN,Talloires-Montmin,Talloires-Montmin 32,2016-01-01,COM,74187,0,MONTMIN,Montmin,Montmin,COMD,74187,0,MONTMIN,Montmin,Montmin +32,2016-01-01,COM,74187,0,MONTMIN,Montmin,Montmin,COM,74275,0,TALLOIRES MONTMIN,Talloires-Montmin,Talloires-Montmin 32,2016-01-01,COM,74270,0,SEYTHENEX,Seythenex,Seythenex,COM,74123,0,FAVERGES SEYTHENEX,Faverges-Seythenex,Faverges-Seythenex 32,2016-01-01,COM,74270,0,SEYTHENEX,Seythenex,Seythenex,COMD,74270,0,SEYTHENEX,Seythenex,Seythenex 32,2016-01-01,COM,74275,0,TALLOIRES,Talloires,Talloires,COM,74275,0,TALLOIRES MONTMIN,Talloires-Montmin,Talloires-Montmin 32,2016-01-01,COM,74275,0,TALLOIRES,Talloires,Talloires,COMD,74275,0,TALLOIRES,Talloires,Talloires -32,2016-01-01,COM,76027,1,ASSIGNY,Assigny,Assigny,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux 32,2016-01-01,COM,76027,1,ASSIGNY,Assigny,Assigny,COMD,76027,1,ASSIGNY,Assigny,Assigny +32,2016-01-01,COM,76027,1,ASSIGNY,Assigny,Assigny,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux 32,2016-01-01,COM,76031,1,AUBERVILLE LA CAMPAGNE,Auberville-la-Campagne,Auberville-la-Campagne,COMD,76031,1,AUBERVILLE LA CAMPAGNE,Auberville-la-Campagne,Auberville-la-Campagne 32,2016-01-01,COM,76031,1,AUBERVILLE LA CAMPAGNE,Auberville-la-Campagne,Auberville-la-Campagne,COM,76476,0,PORT JEROME SUR SEINE,Port-Jérôme-sur-Seine,Port-Jérôme-sur-Seine 32,2016-01-01,COM,76037,1,AUQUEMESNIL,Auquemesnil,Auquemesnil,COMD,76037,1,AUQUEMESNIL,Auquemesnil,Auquemesnil 32,2016-01-01,COM,76037,1,AUQUEMESNIL,Auquemesnil,Auquemesnil,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux -32,2016-01-01,COM,76073,0,BELLEVILLE SUR MER,Belleville-sur-Mer,Belleville-sur-Mer,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux 32,2016-01-01,COM,76073,0,BELLEVILLE SUR MER,Belleville-sur-Mer,Belleville-sur-Mer,COMD,76073,0,BELLEVILLE SUR MER,Belleville-sur-Mer,Belleville-sur-Mer -32,2016-01-01,COM,76081,0,BERNEVAL LE GRAND,Berneval-le-Grand,Berneval-le-Grand,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux +32,2016-01-01,COM,76073,0,BELLEVILLE SUR MER,Belleville-sur-Mer,Belleville-sur-Mer,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux 32,2016-01-01,COM,76081,0,BERNEVAL LE GRAND,Berneval-le-Grand,Berneval-le-Grand,COMD,76081,0,BERNEVAL LE GRAND,Berneval-le-Grand,Berneval-le-Grand -32,2016-01-01,COM,76089,0,BETTEVILLE,Betteville,Betteville,COM,76289,0,SAINT MARTIN DE L IF,Saint Martin de l'If,Saint Martin de l'If +32,2016-01-01,COM,76081,0,BERNEVAL LE GRAND,Berneval-le-Grand,Berneval-le-Grand,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux 32,2016-01-01,COM,76089,0,BETTEVILLE,Betteville,Betteville,COMD,76089,0,BETTEVILLE,Betteville,Betteville -32,2016-01-01,COM,76098,0,BIVILLE SUR MER,Biville-sur-Mer,Biville-sur-Mer,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux +32,2016-01-01,COM,76089,0,BETTEVILLE,Betteville,Betteville,COM,76289,0,SAINT MARTIN DE L IF,Saint Martin de l'If,Saint Martin de l'If 32,2016-01-01,COM,76098,0,BIVILLE SUR MER,Biville-sur-Mer,Biville-sur-Mer,COMD,76098,0,BIVILLE SUR MER,Biville-sur-Mer,Biville-sur-Mer +32,2016-01-01,COM,76098,0,BIVILLE SUR MER,Biville-sur-Mer,Biville-sur-Mer,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux 32,2016-01-01,COM,76137,0,BRACQUEMONT,Bracquemont,Bracquemont,COMD,76137,0,BRACQUEMONT,Bracquemont,Bracquemont 32,2016-01-01,COM,76137,0,BRACQUEMONT,Bracquemont,Bracquemont,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux 32,2016-01-01,COM,76145,0,BRUNVILLE,Brunville,Brunville,COMD,76145,0,BRUNVILLE,Brunville,Brunville 32,2016-01-01,COM,76145,0,BRUNVILLE,Brunville,Brunville,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux -32,2016-01-01,COM,76164,0,CAUDEBEC EN CAUX,Caudebec-en-Caux,Caudebec-en-Caux,COMD,76164,0,CAUDEBEC EN CAUX,Caudebec-en-Caux,Caudebec-en-Caux 32,2016-01-01,COM,76164,0,CAUDEBEC EN CAUX,Caudebec-en-Caux,Caudebec-en-Caux,COM,76164,0,RIVES EN SEINE,Rives-en-Seine,Rives-en-Seine -32,2016-01-01,COM,76215,0,DERCHIGNY,Derchigny,Derchigny,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux +32,2016-01-01,COM,76164,0,CAUDEBEC EN CAUX,Caudebec-en-Caux,Caudebec-en-Caux,COMD,76164,0,CAUDEBEC EN CAUX,Caudebec-en-Caux,Caudebec-en-Caux 32,2016-01-01,COM,76215,0,DERCHIGNY,Derchigny,Derchigny,COMD,76215,0,DERCHIGNY,Derchigny,Derchigny -32,2016-01-01,COM,76267,3,FOLLETIERE,Folletière,La Folletière,COM,76289,0,SAINT MARTIN DE L IF,Saint Martin de l'If,Saint Martin de l'If +32,2016-01-01,COM,76215,0,DERCHIGNY,Derchigny,Derchigny,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux 32,2016-01-01,COM,76267,3,FOLLETIERE,Folletière,La Folletière,COMD,76267,3,FOLLETIERE,Folletière,La Folletière -32,2016-01-01,COM,76276,0,FORGES LES EAUX,Forges-les-Eaux,Forges-les-Eaux,COM,76276,0,FORGES LES EAUX,Forges-les-Eaux,Forges-les-Eaux +32,2016-01-01,COM,76267,3,FOLLETIERE,Folletière,La Folletière,COM,76289,0,SAINT MARTIN DE L IF,Saint Martin de l'If,Saint Martin de l'If 32,2016-01-01,COM,76276,0,FORGES LES EAUX,Forges-les-Eaux,Forges-les-Eaux,COMD,76276,0,FORGES LES EAUX,Forges-les-Eaux,Forges-les-Eaux +32,2016-01-01,COM,76276,0,FORGES LES EAUX,Forges-les-Eaux,Forges-les-Eaux,COM,76276,0,FORGES LES EAUX,Forges-les-Eaux,Forges-les-Eaux 32,2016-01-01,COM,76277,2,FOSSE,Fossé,Le Fossé,COM,76276,0,FORGES LES EAUX,Forges-les-Eaux,Forges-les-Eaux 32,2016-01-01,COM,76277,2,FOSSE,Fossé,Le Fossé,COMD,76277,2,FOSSE,Fossé,Le Fossé -32,2016-01-01,COM,76289,0,FREVILLE,Fréville,Fréville,COMD,76289,0,FREVILLE,Fréville,Fréville 32,2016-01-01,COM,76289,0,FREVILLE,Fréville,Fréville,COM,76289,0,SAINT MARTIN DE L IF,Saint Martin de l'If,Saint Martin de l'If -32,2016-01-01,COM,76301,0,GLICOURT,Glicourt,Glicourt,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux +32,2016-01-01,COM,76289,0,FREVILLE,Fréville,Fréville,COMD,76289,0,FREVILLE,Fréville,Fréville 32,2016-01-01,COM,76301,0,GLICOURT,Glicourt,Glicourt,COMD,76301,0,GLICOURT,Glicourt,Glicourt -32,2016-01-01,COM,76310,0,GOUCHAUPRE,Gouchaupre,Gouchaupre,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux +32,2016-01-01,COM,76301,0,GLICOURT,Glicourt,Glicourt,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux 32,2016-01-01,COM,76310,0,GOUCHAUPRE,Gouchaupre,Gouchaupre,COMD,76310,0,GOUCHAUPRE,Gouchaupre,Gouchaupre +32,2016-01-01,COM,76310,0,GOUCHAUPRE,Gouchaupre,Gouchaupre,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux 32,2016-01-01,COM,76326,0,GRENY,Greny,Greny,COMD,76326,0,GRENY,Greny,Greny 32,2016-01-01,COM,76326,0,GRENY,Greny,Greny,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux -32,2016-01-01,COM,76337,0,GUILMECOURT,Guilmécourt,Guilmécourt,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux 32,2016-01-01,COM,76337,0,GUILMECOURT,Guilmécourt,Guilmécourt,COMD,76337,0,GUILMECOURT,Guilmécourt,Guilmécourt -32,2016-01-01,COM,76376,1,INTRAVILLE,Intraville,Intraville,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux +32,2016-01-01,COM,76337,0,GUILMECOURT,Guilmécourt,Guilmécourt,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux 32,2016-01-01,COM,76376,1,INTRAVILLE,Intraville,Intraville,COMD,76376,1,INTRAVILLE,Intraville,Intraville -32,2016-01-01,COM,76401,3,MAILLERAYE SUR SEINE,Mailleraye-sur-Seine,La Mailleraye-sur-Seine,COMD,76401,3,MAILLERAYE SUR SEINE,Mailleraye-sur-Seine,La Mailleraye-sur-Seine +32,2016-01-01,COM,76376,1,INTRAVILLE,Intraville,Intraville,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux 32,2016-01-01,COM,76401,3,MAILLERAYE SUR SEINE,Mailleraye-sur-Seine,La Mailleraye-sur-Seine,COM,76401,1,ARELAUNE EN SEINE,Arelaune-en-Seine,Arelaune-en-Seine -32,2016-01-01,COM,76444,0,MONT DE L IF,Mont-de-l'If,Mont-de-l'If,COMD,76444,0,MONT DE L IF,Mont-de-l'If,Mont-de-l'If +32,2016-01-01,COM,76401,3,MAILLERAYE SUR SEINE,Mailleraye-sur-Seine,La Mailleraye-sur-Seine,COMD,76401,3,MAILLERAYE SUR SEINE,Mailleraye-sur-Seine,La Mailleraye-sur-Seine 32,2016-01-01,COM,76444,0,MONT DE L IF,Mont-de-l'If,Mont-de-l'If,COM,76289,0,SAINT MARTIN DE L IF,Saint Martin de l'If,Saint Martin de l'If -32,2016-01-01,COM,76476,0,NOTRE DAME DE GRAVENCHON,Notre-Dame-de-Gravenchon,Notre-Dame-de-Gravenchon,COMD,76476,0,NOTRE DAME DE GRAVENCHON,Notre-Dame-de-Gravenchon,Notre-Dame-de-Gravenchon +32,2016-01-01,COM,76444,0,MONT DE L IF,Mont-de-l'If,Mont-de-l'If,COMD,76444,0,MONT DE L IF,Mont-de-l'If,Mont-de-l'If 32,2016-01-01,COM,76476,0,NOTRE DAME DE GRAVENCHON,Notre-Dame-de-Gravenchon,Notre-Dame-de-Gravenchon,COM,76476,0,PORT JEROME SUR SEINE,Port-Jérôme-sur-Seine,Port-Jérôme-sur-Seine +32,2016-01-01,COM,76476,0,NOTRE DAME DE GRAVENCHON,Notre-Dame-de-Gravenchon,Notre-Dame-de-Gravenchon,COMD,76476,0,NOTRE DAME DE GRAVENCHON,Notre-Dame-de-Gravenchon,Notre-Dame-de-Gravenchon 32,2016-01-01,COM,76496,0,PENLY,Penly,Penly,COMD,76496,0,PENLY,Penly,Penly 32,2016-01-01,COM,76496,0,PENLY,Penly,Penly,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux -32,2016-01-01,COM,76618,0,SAINT MARTIN EN CAMPAGNE,Saint-Martin-en-Campagne,Saint-Martin-en-Campagne,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux 32,2016-01-01,COM,76618,0,SAINT MARTIN EN CAMPAGNE,Saint-Martin-en-Campagne,Saint-Martin-en-Campagne,COMD,76618,0,SAINT MARTIN EN CAMPAGNE,Saint-Martin-en-Campagne,Saint-Martin-en-Campagne -32,2016-01-01,COM,76625,0,SAINT NICOLAS DE BLIQUETUIT,Saint-Nicolas-de-Bliquetuit,Saint-Nicolas-de-Bliquetuit,COMD,76625,0,SAINT NICOLAS DE BLIQUETUIT,Saint-Nicolas-de-Bliquetuit,Saint-Nicolas-de-Bliquetuit +32,2016-01-01,COM,76618,0,SAINT MARTIN EN CAMPAGNE,Saint-Martin-en-Campagne,Saint-Martin-en-Campagne,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux 32,2016-01-01,COM,76625,0,SAINT NICOLAS DE BLIQUETUIT,Saint-Nicolas-de-Bliquetuit,Saint-Nicolas-de-Bliquetuit,COM,76401,1,ARELAUNE EN SEINE,Arelaune-en-Seine,Arelaune-en-Seine -32,2016-01-01,COM,76643,0,SAINT QUENTIN AU BOSC,Saint-Quentin-au-Bosc,Saint-Quentin-au-Bosc,COMD,76643,0,SAINT QUENTIN AU BOSC,Saint-Quentin-au-Bosc,Saint-Quentin-au-Bosc +32,2016-01-01,COM,76625,0,SAINT NICOLAS DE BLIQUETUIT,Saint-Nicolas-de-Bliquetuit,Saint-Nicolas-de-Bliquetuit,COMD,76625,0,SAINT NICOLAS DE BLIQUETUIT,Saint-Nicolas-de-Bliquetuit,Saint-Nicolas-de-Bliquetuit 32,2016-01-01,COM,76643,0,SAINT QUENTIN AU BOSC,Saint-Quentin-au-Bosc,Saint-Quentin-au-Bosc,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux -32,2016-01-01,COM,76659,0,SAINT WANDRILLE RANCON,Saint-Wandrille-Rançon,Saint-Wandrille-Rançon,COMD,76659,0,SAINT WANDRILLE RANCON,Saint-Wandrille-Rançon,Saint-Wandrille-Rançon +32,2016-01-01,COM,76643,0,SAINT QUENTIN AU BOSC,Saint-Quentin-au-Bosc,Saint-Quentin-au-Bosc,COMD,76643,0,SAINT QUENTIN AU BOSC,Saint-Quentin-au-Bosc,Saint-Quentin-au-Bosc 32,2016-01-01,COM,76659,0,SAINT WANDRILLE RANCON,Saint-Wandrille-Rançon,Saint-Wandrille-Rançon,COM,76164,0,RIVES EN SEINE,Rives-en-Seine,Rives-en-Seine +32,2016-01-01,COM,76659,0,SAINT WANDRILLE RANCON,Saint-Wandrille-Rançon,Saint-Wandrille-Rançon,COMD,76659,0,SAINT WANDRILLE RANCON,Saint-Wandrille-Rançon,Saint-Wandrille-Rançon 32,2016-01-01,COM,76696,0,TOCQUEVILLE SUR EU,Tocqueville-sur-Eu,Tocqueville-sur-Eu,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux 32,2016-01-01,COM,76696,0,TOCQUEVILLE SUR EU,Tocqueville-sur-Eu,Tocqueville-sur-Eu,COMD,76696,0,TOCQUEVILLE SUR EU,Tocqueville-sur-Eu,Tocqueville-sur-Eu -32,2016-01-01,COM,76701,0,TOUFFREVILLE LA CABLE,Touffreville-la-Cable,Touffreville-la-Cable,COMD,76701,0,TOUFFREVILLE LA CABLE,Touffreville-la-Cable,Touffreville-la-Cable 32,2016-01-01,COM,76701,0,TOUFFREVILLE LA CABLE,Touffreville-la-Cable,Touffreville-la-Cable,COM,76476,0,PORT JEROME SUR SEINE,Port-Jérôme-sur-Seine,Port-Jérôme-sur-Seine +32,2016-01-01,COM,76701,0,TOUFFREVILLE LA CABLE,Touffreville-la-Cable,Touffreville-la-Cable,COMD,76701,0,TOUFFREVILLE LA CABLE,Touffreville-la-Cable,Touffreville-la-Cable 32,2016-01-01,COM,76704,0,TOURVILLE LA CHAPELLE,Tourville-la-Chapelle,Tourville-la-Chapelle,COM,76618,0,PETIT CAUX,Petit-Caux,Petit-Caux 32,2016-01-01,COM,76704,0,TOURVILLE LA CHAPELLE,Tourville-la-Chapelle,Tourville-la-Chapelle,COMD,76704,0,TOURVILLE LA CHAPELLE,Tourville-la-Chapelle,Tourville-la-Chapelle -32,2016-01-01,COM,76713,0,TRIQUERVILLE,Triquerville,Triquerville,COMD,76713,0,TRIQUERVILLE,Triquerville,Triquerville 32,2016-01-01,COM,76713,0,TRIQUERVILLE,Triquerville,Triquerville,COM,76476,0,PORT JEROME SUR SEINE,Port-Jérôme-sur-Seine,Port-Jérôme-sur-Seine -32,2016-01-01,COM,76742,0,VILLEQUIER,Villequier,Villequier,COMD,76742,0,VILLEQUIER,Villequier,Villequier +32,2016-01-01,COM,76713,0,TRIQUERVILLE,Triquerville,Triquerville,COMD,76713,0,TRIQUERVILLE,Triquerville,Triquerville 32,2016-01-01,COM,76742,0,VILLEQUIER,Villequier,Villequier,COM,76164,0,RIVES EN SEINE,Rives-en-Seine,Rives-en-Seine +32,2016-01-01,COM,76742,0,VILLEQUIER,Villequier,Villequier,COMD,76742,0,VILLEQUIER,Villequier,Villequier 34,2016-01-01,COMA,77017,0,BAILLY CARROIS,Bailly-Carrois,Bailly-Carrois,COM,77211,0,GRANDPUITS BAILLY CARROIS,Grandpuits-Bailly-Carrois,Grandpuits-Bailly-Carrois 32,2016-01-01,COMD,77166,1,ECUELLES,Écuelles,Écuelles,COMD,77166,1,ECUELLES,Écuelles,Écuelles 32,2016-01-01,COMD,77166,1,ECUELLES,Écuelles,Écuelles,COM,77316,0,MORET LOING ET ORVANNE,Moret Loing et Orvanne,Moret Loing et Orvanne 32,2016-01-01,COM,77170,1,EPISY,Épisy,Épisy,COMD,77170,1,EPISY,Épisy,Épisy 32,2016-01-01,COM,77170,1,EPISY,Épisy,Épisy,COM,77316,0,MORET LOING ET ORVANNE,Moret Loing et Orvanne,Moret Loing et Orvanne -34,2016-01-01,COM,77211,0,GRANDPUITS BAILLY CARROIS,Grandpuits-Bailly-Carrois,Grandpuits-Bailly-Carrois,COM,77211,0,GRANDPUITS BAILLY CARROIS,Grandpuits-Bailly-Carrois,Grandpuits-Bailly-Carrois 32,2016-01-01,COM,77299,0,MONTARLOT,Montarlot,Montarlot,COMD,77299,0,MONTARLOT,Montarlot,Montarlot 32,2016-01-01,COM,77299,0,MONTARLOT,Montarlot,Montarlot,COM,77316,0,MORET LOING ET ORVANNE,Moret Loing et Orvanne,Moret Loing et Orvanne -32,2016-01-01,COM,77316,0,ORVANNE,Orvanne,Orvanne,COM,77316,0,MORET LOING ET ORVANNE,Moret Loing et Orvanne,Moret Loing et Orvanne +32,2016-01-01,COM,77316,1,ORVANNE,Orvanne,Orvanne,COMD,77316,0,MORET SUR LOING,Moret-sur-Loing,Moret-sur-Loing +32,2016-01-01,COM,77316,1,ORVANNE,Orvanne,Orvanne,COM,77316,0,MORET LOING ET ORVANNE,Moret Loing et Orvanne,Moret Loing et Orvanne 32,2016-01-01,COMD,77316,0,MORET SUR LOING,Moret-sur-Loing,Moret-sur-Loing,COMD,77316,0,MORET SUR LOING,Moret-sur-Loing,Moret-sur-Loing 32,2016-01-01,COMD,77316,0,MORET SUR LOING,Moret-sur-Loing,Moret-sur-Loing,COM,77316,0,MORET LOING ET ORVANNE,Moret Loing et Orvanne,Moret Loing et Orvanne -32,2016-01-01,COM,79013,1,ARGENTON LES VALLEES,Argenton-les-Vallées,Argenton-les-Vallées,COMD,79013,1,ARGENTON LES VALLEES,Argenton-les-Vallées,Argenton-les-Vallées 32,2016-01-01,COM,79013,1,ARGENTON LES VALLEES,Argenton-les-Vallées,Argenton-les-Vallées,COM,79013,1,ARGENTONNAY,Argentonnay,Argentonnay +32,2016-01-01,COM,79013,1,ARGENTON LES VALLEES,Argenton-les-Vallées,Argenton-les-Vallées,COMD,79013,1,ARGENTON LES VALLEES,Argenton-les-Vallées,Argenton-les-Vallées 34,2016-01-01,COMA,79021,1,AVAILLES SUR CHIZE,Availles-sur-Chizé,Availles-sur-Chizé,COM,79090,0,CHIZE,Chizé,Chizé -32,2016-01-01,COM,79053,2,BREUIL SOUS ARGENTON,Breuil-sous-Argenton,Le Breuil-sous-Argenton,COMD,79053,2,BREUIL SOUS ARGENTON,Breuil-sous-Argenton,Le Breuil-sous-Argenton 32,2016-01-01,COM,79053,2,BREUIL SOUS ARGENTON,Breuil-sous-Argenton,Le Breuil-sous-Argenton,COM,79013,1,ARGENTONNAY,Argentonnay,Argentonnay -32,2016-01-01,COM,79072,3,CHAPELLE GAUDIN,Chapelle-Gaudin,La Chapelle-Gaudin,COMD,79072,3,CHAPELLE GAUDIN,Chapelle-Gaudin,La Chapelle-Gaudin +32,2016-01-01,COM,79053,2,BREUIL SOUS ARGENTON,Breuil-sous-Argenton,Le Breuil-sous-Argenton,COMD,79053,2,BREUIL SOUS ARGENTON,Breuil-sous-Argenton,Le Breuil-sous-Argenton 32,2016-01-01,COM,79072,3,CHAPELLE GAUDIN,Chapelle-Gaudin,La Chapelle-Gaudin,COM,79013,1,ARGENTONNAY,Argentonnay,Argentonnay -34,2016-01-01,COM,79090,0,CHIZE,Chizé,Chizé,COM,79090,0,CHIZE,Chizé,Chizé +32,2016-01-01,COM,79072,3,CHAPELLE GAUDIN,Chapelle-Gaudin,La Chapelle-Gaudin,COMD,79072,3,CHAPELLE GAUDIN,Chapelle-Gaudin,La Chapelle-Gaudin 32,2016-01-01,COM,79099,3,COUDRE,Coudre,La Coudre,COM,79013,1,ARGENTONNAY,Argentonnay,Argentonnay 32,2016-01-01,COM,79099,3,COUDRE,Coudre,La Coudre,COMD,79099,3,COUDRE,Coudre,La Coudre -32,2016-01-01,COM,79113,1,ETUSSON,Étusson,Étusson,COM,79280,0,SAINT MAURICE ETUSSON,Saint Maurice Étusson,Saint Maurice Étusson 32,2016-01-01,COM,79113,1,ETUSSON,Étusson,Étusson,COMD,79113,1,ETUSSON,Étusson,Étusson +32,2016-01-01,COM,79113,1,ETUSSON,Étusson,Étusson,COM,79280,0,SAINT MAURICE ETUSSON,Saint Maurice Étusson,Saint Maurice Étusson 32,2016-01-01,COM,79187,0,MOUTIERS SOUS ARGENTON,Moutiers-sous-Argenton,Moutiers-sous-Argenton,COM,79013,1,ARGENTONNAY,Argentonnay,Argentonnay 32,2016-01-01,COM,79187,0,MOUTIERS SOUS ARGENTON,Moutiers-sous-Argenton,Moutiers-sous-Argenton,COMD,79187,0,MOUTIERS SOUS ARGENTON,Moutiers-sous-Argenton,Moutiers-sous-Argenton 32,2016-01-01,COM,79280,0,SAINT MAURICE LA FOUGEREUSE,Saint-Maurice-la-Fougereuse,Saint-Maurice-la-Fougereuse,COMD,79280,0,SAINT MAURICE LA FOUGEREUSE,Saint-Maurice-la-Fougereuse,Saint-Maurice-la-Fougereuse @@ -5446,35 +5277,35 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,81062,0,CASTELNAU DE BRASSAC,Castelnau-de-Brassac,Castelnau-de-Brassac,COM,81062,0,FONTRIEU,Fontrieu,Fontrieu 32,2016-01-01,COM,81091,0,FERRIERES,Ferrières,Ferrières,COM,81062,0,FONTRIEU,Fontrieu,Fontrieu 32,2016-01-01,COM,81091,0,FERRIERES,Ferrières,Ferrières,COMD,81091,0,FERRIERES,Ferrières,Ferrières -32,2016-01-01,COM,81153,2,MARGNES,Margnès,Le Margnès,COMD,81153,2,MARGNES,Margnès,Le Margnès 32,2016-01-01,COM,81153,2,MARGNES,Margnès,Le Margnès,COM,81062,0,FONTRIEU,Fontrieu,Fontrieu +32,2016-01-01,COM,81153,2,MARGNES,Margnès,Le Margnès,COMD,81153,2,MARGNES,Margnès,Le Margnès 32,2016-01-01,COM,81155,0,MARSAL,Marsal,Marsal,COM,81026,0,BELLEGARDE MARSAL,Bellegarde-Marsal,Bellegarde-Marsal 32,2016-01-01,COM,85008,1,AUBIGNY,Aubigny,Aubigny,COM,85008,1,AUBIGNY LES CLOUZEAUX,Aubigny-Les Clouzeaux,Aubigny-Les Clouzeaux 32,2016-01-01,COM,85008,1,AUBIGNY,Aubigny,Aubigny,COMD,85008,1,AUBIGNY,Aubigny,Aubigny -32,2016-01-01,COM,85019,0,BELLEVILLE SUR VIE,Belleville-sur-Vie,Belleville-sur-Vie,COM,85019,0,BELLEVIGNY,Bellevigny,Bellevigny 32,2016-01-01,COM,85019,0,BELLEVILLE SUR VIE,Belleville-sur-Vie,Belleville-sur-Vie,COMD,85019,0,BELLEVILLE SUR VIE,Belleville-sur-Vie,Belleville-sur-Vie +32,2016-01-01,COM,85019,0,BELLEVILLE SUR VIE,Belleville-sur-Vie,Belleville-sur-Vie,COM,85019,0,BELLEVIGNY,Bellevigny,Bellevigny 32,2016-01-01,COM,85030,0,BOULOGNE,Boulogne,Boulogne,COMD,85030,0,BOULOGNE,Boulogne,Boulogne 32,2016-01-01,COM,85030,0,BOULOGNE,Boulogne,Boulogne,COM,85084,1,ESSARTS EN BOCAGE,Essarts en Bocage,Essarts en Bocage 32,2016-01-01,COM,85043,0,CHAILLE SOUS LES ORMEAUX,Chaillé-sous-les-Ormeaux,Chaillé-sous-les-Ormeaux,COMD,85043,0,CHAILLE SOUS LES ORMEAUX,Chaillé-sous-les-Ormeaux,Chaillé-sous-les-Ormeaux 32,2016-01-01,COM,85043,0,CHAILLE SOUS LES ORMEAUX,Chaillé-sous-les-Ormeaux,Chaillé-sous-les-Ormeaux,COM,85213,0,RIVES DE L YON,Rives de l'Yon,Rives de l'Yon -32,2016-01-01,COM,85063,4,CHATELLIERS CHATEAUMUR,Châtelliers-Châteaumur,Les Châtelliers-Châteaumur,COM,85090,0,SEVREMONT,Sèvremont,Sèvremont 32,2016-01-01,COM,85063,4,CHATELLIERS CHATEAUMUR,Châtelliers-Châteaumur,Les Châtelliers-Châteaumur,COMD,85063,4,CHATELLIERS CHATEAUMUR,Châtelliers-Châteaumur,Les Châtelliers-Châteaumur +32,2016-01-01,COM,85063,4,CHATELLIERS CHATEAUMUR,Châtelliers-Châteaumur,Les Châtelliers-Châteaumur,COM,85090,0,SEVREMONT,Sèvremont,Sèvremont 32,2016-01-01,COM,85069,4,CLOUZEAUX,Clouzeaux,Les Clouzeaux,COM,85008,1,AUBIGNY LES CLOUZEAUX,Aubigny-Les Clouzeaux,Aubigny-Les Clouzeaux 32,2016-01-01,COM,85069,4,CLOUZEAUX,Clouzeaux,Les Clouzeaux,COMD,85069,4,CLOUZEAUX,Clouzeaux,Les Clouzeaux -32,2016-01-01,COM,85080,0,DOIX,Doix,Doix,COMD,85080,0,DOIX,Doix,Doix 32,2016-01-01,COM,85080,0,DOIX,Doix,Doix,COM,85080,0,DOIX LES FONTAINES,Doix lès Fontaines,Doix lès Fontaines -32,2016-01-01,COM,85084,4,ESSARTS,Essarts,Les Essarts,COMD,85084,4,ESSARTS,Essarts,Les Essarts +32,2016-01-01,COM,85080,0,DOIX,Doix,Doix,COMD,85080,0,DOIX,Doix,Doix 32,2016-01-01,COM,85084,4,ESSARTS,Essarts,Les Essarts,COM,85084,1,ESSARTS EN BOCAGE,Essarts en Bocage,Essarts en Bocage +32,2016-01-01,COM,85084,4,ESSARTS,Essarts,Les Essarts,COMD,85084,4,ESSARTS,Essarts,Les Essarts 32,2016-01-01,COM,85090,3,FLOCELLIERE,Flocellière,La Flocellière,COMD,85090,3,FLOCELLIERE,Flocellière,La Flocellière 32,2016-01-01,COM,85090,3,FLOCELLIERE,Flocellière,La Flocellière,COM,85090,0,SEVREMONT,Sèvremont,Sèvremont 32,2016-01-01,COM,85091,0,FONTAINES,Fontaines,Fontaines,COM,85080,0,DOIX LES FONTAINES,Doix lès Fontaines,Doix lès Fontaines 32,2016-01-01,COM,85091,0,FONTAINES,Fontaines,Fontaines,COMD,85091,0,FONTAINES,Fontaines,Fontaines 32,2016-01-01,COM,85150,0,MORMAISON,Mormaison,Mormaison,COMD,85150,0,MORMAISON,Mormaison,Mormaison 32,2016-01-01,COM,85150,0,MORMAISON,Mormaison,Mormaison,COM,85197,0,MONTREVERD,Montréverd,Montréverd -32,2016-01-01,COM,85154,0,MOUILLERON EN PAREDS,Mouilleron-en-Pareds,Mouilleron-en-Pareds,COMD,85154,0,MOUILLERON EN PAREDS,Mouilleron-en-Pareds,Mouilleron-en-Pareds 32,2016-01-01,COM,85154,0,MOUILLERON EN PAREDS,Mouilleron-en-Pareds,Mouilleron-en-Pareds,COM,85154,0,MOUILLERON SAINT GERMAIN,Mouilleron-Saint-Germain,Mouilleron-Saint-Germain -32,2016-01-01,COM,85165,5,OIE,Oie,L'Oie,COMD,85165,5,OIE,Oie,L'Oie +32,2016-01-01,COM,85154,0,MOUILLERON EN PAREDS,Mouilleron-en-Pareds,Mouilleron-en-Pareds,COMD,85154,0,MOUILLERON EN PAREDS,Mouilleron-en-Pareds,Mouilleron-en-Pareds 32,2016-01-01,COM,85165,5,OIE,Oie,L'Oie,COM,85084,1,ESSARTS EN BOCAGE,Essarts en Bocage,Essarts en Bocage +32,2016-01-01,COM,85165,5,OIE,Oie,L'Oie,COMD,85165,5,OIE,Oie,L'Oie 32,2016-01-01,COM,85180,3,POMMERAIE SUR SEVRE,Pommeraie-sur-Sèvre,La Pommeraie-sur-Sèvre,COM,85090,0,SEVREMONT,Sèvremont,Sèvremont 32,2016-01-01,COM,85180,3,POMMERAIE SUR SEVRE,Pommeraie-sur-Sèvre,La Pommeraie-sur-Sèvre,COMD,85180,3,POMMERAIE SUR SEVRE,Pommeraie-sur-Sèvre,La Pommeraie-sur-Sèvre 32,2016-01-01,COM,85197,0,SAINT ANDRE TREIZE VOIES,Saint-André-Treize-Voies,Saint-André-Treize-Voies,COMD,85197,0,SAINT ANDRE TREIZE VOIES,Saint-André-Treize-Voies,Saint-André-Treize-Voies @@ -5483,34 +5314,34 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,85212,0,SAINTE FLORENCE,Sainte-Florence,Sainte-Florence,COMD,85212,0,SAINTE FLORENCE,Sainte-Florence,Sainte-Florence 32,2016-01-01,COM,85213,0,SAINT FLORENT DES BOIS,Saint-Florent-des-Bois,Saint-Florent-des-Bois,COM,85213,0,RIVES DE L YON,Rives de l'Yon,Rives de l'Yon 32,2016-01-01,COM,85213,0,SAINT FLORENT DES BOIS,Saint-Florent-des-Bois,Saint-Florent-des-Bois,COMD,85213,0,SAINT FLORENT DES BOIS,Saint-Florent-des-Bois,Saint-Florent-des-Bois -32,2016-01-01,COM,85219,0,SAINT GERMAIN L AIGUILLER,Saint-Germain-l'Aiguiller,Saint-Germain-l'Aiguiller,COMD,85219,0,SAINT GERMAIN L AIGUILLER,Saint-Germain-l'Aiguiller,Saint-Germain-l'Aiguiller 32,2016-01-01,COM,85219,0,SAINT GERMAIN L AIGUILLER,Saint-Germain-l'Aiguiller,Saint-Germain-l'Aiguiller,COM,85154,0,MOUILLERON SAINT GERMAIN,Mouilleron-Saint-Germain,Mouilleron-Saint-Germain +32,2016-01-01,COM,85219,0,SAINT GERMAIN L AIGUILLER,Saint-Germain-l'Aiguiller,Saint-Germain-l'Aiguiller,COMD,85219,0,SAINT GERMAIN L AIGUILLER,Saint-Germain-l'Aiguiller,Saint-Germain-l'Aiguiller 32,2016-01-01,COM,85257,0,SAINT MICHEL MONT MERCURE,Saint-Michel-Mont-Mercure,Saint-Michel-Mont-Mercure,COM,85090,0,SEVREMONT,Sèvremont,Sèvremont 32,2016-01-01,COM,85257,0,SAINT MICHEL MONT MERCURE,Saint-Michel-Mont-Mercure,Saint-Michel-Mont-Mercure,COMD,85257,0,SAINT MICHEL MONT MERCURE,Saint-Michel-Mont-Mercure,Saint-Michel-Mont-Mercure 32,2016-01-01,COM,85272,0,SAINT SULPICE LE VERDON,Saint-Sulpice-le-Verdon,Saint-Sulpice-le-Verdon,COM,85197,0,MONTREVERD,Montréverd,Montréverd 32,2016-01-01,COM,85272,0,SAINT SULPICE LE VERDON,Saint-Sulpice-le-Verdon,Saint-Sulpice-le-Verdon,COMD,85272,0,SAINT SULPICE LE VERDON,Saint-Sulpice-le-Verdon,Saint-Sulpice-le-Verdon -32,2016-01-01,COM,85279,0,SALIGNY,Saligny,Saligny,COMD,85279,0,SALIGNY,Saligny,Saligny 32,2016-01-01,COM,85279,0,SALIGNY,Saligny,Saligny,COM,85019,0,BELLEVIGNY,Bellevigny,Bellevigny +32,2016-01-01,COM,85279,0,SALIGNY,Saligny,Saligny,COMD,85279,0,SALIGNY,Saligny,Saligny 32,2016-01-01,COM,86245,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,COM,86245,0,SENILLE SAINT SAUVEUR,Senillé-Saint-Sauveur,Senillé-Saint-Sauveur 32,2016-01-01,COM,86245,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,COMD,86245,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur 32,2016-01-01,COM,86259,0,SENILLE,Senillé,Senillé,COM,86245,0,SENILLE SAINT SAUVEUR,Senillé-Saint-Sauveur,Senillé-Saint-Sauveur 32,2016-01-01,COM,86259,0,SENILLE,Senillé,Senillé,COMD,86259,0,SENILLE,Senillé,Senillé 32,2016-01-01,COM,87026,0,BUSSIERE BOFFY,Bussière-Boffy,Bussière-Boffy,COMD,87026,0,BUSSIERE BOFFY,Bussière-Boffy,Bussière-Boffy 32,2016-01-01,COM,87026,0,BUSSIERE BOFFY,Bussière-Boffy,Bussière-Boffy,COM,87097,0,VAL D ISSOIRE,Val d'Issoire,Val d'Issoire -32,2016-01-01,COM,87097,0,MEZIERES SUR ISSOIRE,Mézières-sur-Issoire,Mézières-sur-Issoire,COM,87097,0,VAL D ISSOIRE,Val d'Issoire,Val d'Issoire 32,2016-01-01,COM,87097,0,MEZIERES SUR ISSOIRE,Mézières-sur-Issoire,Mézières-sur-Issoire,COMD,87097,0,MEZIERES SUR ISSOIRE,Mézières-sur-Issoire,Mézières-sur-Issoire -32,2016-01-01,COM,88018,1,AUMONTZEY,Aumontzey,Aumontzey,COM,88218,0,GRANGES AUMONTZEY,Granges-Aumontzey,Granges-Aumontzey +32,2016-01-01,COM,87097,0,MEZIERES SUR ISSOIRE,Mézières-sur-Issoire,Mézières-sur-Issoire,COM,87097,0,VAL D ISSOIRE,Val d'Issoire,Val d'Issoire 32,2016-01-01,COM,88018,1,AUMONTZEY,Aumontzey,Aumontzey,COMD,88018,1,AUMONTZEY,Aumontzey,Aumontzey +32,2016-01-01,COM,88018,1,AUMONTZEY,Aumontzey,Aumontzey,COM,88218,0,GRANGES AUMONTZEY,Granges-Aumontzey,Granges-Aumontzey 32,2016-01-01,COM,88112,0,COLROY LA GRANDE,Colroy-la-Grande,Colroy-la-Grande,COMD,88112,0,COLROY LA GRANDE,Colroy-la-Grande,Colroy-la-Grande 32,2016-01-01,COM,88112,0,COLROY LA GRANDE,Colroy-la-Grande,Colroy-la-Grande,COM,88361,0,PROVENCHERES ET COLROY,Provenchères-et-Colroy,Provenchères-et-Colroy -32,2016-01-01,COM,88204,0,GIRMONT,Girmont,Girmont,COM,88465,0,CAPAVENIR VOSGES,Capavenir Vosges,Capavenir Vosges 32,2016-01-01,COM,88204,0,GIRMONT,Girmont,Girmont,COMD,88204,0,GIRMONT,Girmont,Girmont -32,2016-01-01,COM,88218,0,GRANGES SUR VOLOGNE,Granges-sur-Vologne,Granges-sur-Vologne,COM,88218,0,GRANGES AUMONTZEY,Granges-Aumontzey,Granges-Aumontzey +32,2016-01-01,COM,88204,0,GIRMONT,Girmont,Girmont,COM,88465,0,CAPAVENIR VOSGES,Capavenir Vosges,Capavenir Vosges 32,2016-01-01,COM,88218,0,GRANGES SUR VOLOGNE,Granges-sur-Vologne,Granges-sur-Vologne,COMD,88218,0,GRANGES SUR VOLOGNE,Granges-sur-Vologne,Granges-sur-Vologne +32,2016-01-01,COM,88218,0,GRANGES SUR VOLOGNE,Granges-sur-Vologne,Granges-sur-Vologne,COM,88218,0,GRANGES AUMONTZEY,Granges-Aumontzey,Granges-Aumontzey 32,2016-01-01,COM,88337,1,ONCOURT,Oncourt,Oncourt,COMD,88337,1,ONCOURT,Oncourt,Oncourt 32,2016-01-01,COM,88337,1,ONCOURT,Oncourt,Oncourt,COM,88465,0,CAPAVENIR VOSGES,Capavenir Vosges,Capavenir Vosges -32,2016-01-01,COM,88361,0,PROVENCHERES SUR FAVE,Provenchères-sur-Fave,Provenchères-sur-Fave,COMD,88361,0,PROVENCHERES SUR FAVE,Provenchères-sur-Fave,Provenchères-sur-Fave 32,2016-01-01,COM,88361,0,PROVENCHERES SUR FAVE,Provenchères-sur-Fave,Provenchères-sur-Fave,COM,88361,0,PROVENCHERES ET COLROY,Provenchères-et-Colroy,Provenchères-et-Colroy +32,2016-01-01,COM,88361,0,PROVENCHERES SUR FAVE,Provenchères-sur-Fave,Provenchères-sur-Fave,COMD,88361,0,PROVENCHERES SUR FAVE,Provenchères-sur-Fave,Provenchères-sur-Fave 32,2016-01-01,COM,88465,0,THAON LES VOSGES,Thaon-les-Vosges,Thaon-les-Vosges,COM,88465,0,CAPAVENIR VOSGES,Capavenir Vosges,Capavenir Vosges 32,2016-01-01,COM,88465,0,THAON LES VOSGES,Thaon-les-Vosges,Thaon-les-Vosges,COMD,88465,0,THAON LES VOSGES,Thaon-les-Vosges,Thaon-les-Vosges 32,2016-01-01,COM,89070,0,CHAMBEUGLE,Chambeugle,Chambeugle,COMD,89070,0,CHAMBEUGLE,Chambeugle,Chambeugle @@ -5519,12 +5350,12 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,89086,0,CHARNY,Charny,Charny,COMD,89086,0,CHARNY,Charny,Charny 32,2016-01-01,COM,89097,0,CHENE ARNOULT,Chêne-Arnoult,Chêne-Arnoult,COM,89086,0,CHARNY OREE DE PUISAYE,Charny Orée de Puisaye,Charny Orée de Puisaye 32,2016-01-01,COM,89097,0,CHENE ARNOULT,Chêne-Arnoult,Chêne-Arnoult,COMD,89097,0,CHENE ARNOULT,Chêne-Arnoult,Chêne-Arnoult -32,2016-01-01,COM,89103,0,CHEVILLON,Chevillon,Chevillon,COMD,89103,0,CHEVILLON,Chevillon,Chevillon 32,2016-01-01,COM,89103,0,CHEVILLON,Chevillon,Chevillon,COM,89086,0,CHARNY OREE DE PUISAYE,Charny Orée de Puisaye,Charny Orée de Puisaye +32,2016-01-01,COM,89103,0,CHEVILLON,Chevillon,Chevillon,COMD,89103,0,CHEVILLON,Chevillon,Chevillon 32,2016-01-01,COM,89107,0,CHIGY,Chigy,Chigy,COMD,89107,0,CHIGY,Chigy,Chigy 32,2016-01-01,COM,89107,0,CHIGY,Chigy,Chigy,COM,89411,4,VALLEES DE LA VANNE,Vallées de la Vanne,Les Vallées de la Vanne -32,2016-01-01,COM,89138,0,DICY,Dicy,Dicy,COMD,89138,0,DICY,Dicy,Dicy 32,2016-01-01,COM,89138,0,DICY,Dicy,Dicy,COM,89086,0,CHARNY OREE DE PUISAYE,Charny Orée de Puisaye,Charny Orée de Puisaye +32,2016-01-01,COM,89138,0,DICY,Dicy,Dicy,COMD,89138,0,DICY,Dicy,Dicy 32,2016-01-01,COM,89178,0,FONTENOUILLES,Fontenouilles,Fontenouilles,COM,89086,0,CHARNY OREE DE PUISAYE,Charny Orée de Puisaye,Charny Orée de Puisaye 32,2016-01-01,COM,89178,0,FONTENOUILLES,Fontenouilles,Fontenouilles,COMD,89178,0,FONTENOUILLES,Fontenouilles,Fontenouilles 32,2016-01-01,COM,89192,0,GRANDCHAMP,Grandchamp,Grandchamp,COM,89086,0,CHARNY OREE DE PUISAYE,Charny Orée de Puisaye,Charny Orée de Puisaye @@ -5535,14 +5366,14 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,89213,0,LADUZ,Laduz,Laduz,COMD,89213,0,LADUZ,Laduz,Laduz 32,2016-01-01,COM,89241,0,MALICORNE,Malicorne,Malicorne,COM,89086,0,CHARNY OREE DE PUISAYE,Charny Orée de Puisaye,Charny Orée de Puisaye 32,2016-01-01,COM,89241,0,MALICORNE,Malicorne,Malicorne,COMD,89241,0,MALICORNE,Malicorne,Malicorne -32,2016-01-01,COM,89243,0,MARCHAIS BETON,Marchais-Beton,Marchais-Beton,COMD,89243,0,MARCHAIS BETON,Marchais-Beton,Marchais-Beton 32,2016-01-01,COM,89243,0,MARCHAIS BETON,Marchais-Beton,Marchais-Beton,COM,89086,0,CHARNY OREE DE PUISAYE,Charny Orée de Puisaye,Charny Orée de Puisaye -32,2016-01-01,COM,89275,0,NEUILLY,Neuilly,Neuilly,COMD,89275,0,NEUILLY,Neuilly,Neuilly +32,2016-01-01,COM,89243,0,MARCHAIS BETON,Marchais-Beton,Marchais-Beton,COMD,89243,0,MARCHAIS BETON,Marchais-Beton,Marchais-Beton 32,2016-01-01,COM,89275,0,NEUILLY,Neuilly,Neuilly,COM,89196,0,VALRAVILLON,Valravillon,Valravillon -32,2016-01-01,COM,89294,0,PERREUX,Perreux,Perreux,COMD,89294,0,PERREUX,Perreux,Perreux +32,2016-01-01,COM,89275,0,NEUILLY,Neuilly,Neuilly,COMD,89275,0,NEUILLY,Neuilly,Neuilly 32,2016-01-01,COM,89294,0,PERREUX,Perreux,Perreux,COM,89086,0,CHARNY OREE DE PUISAYE,Charny Orée de Puisaye,Charny Orée de Puisaye -32,2016-01-01,COM,89317,0,PRUNOY,Prunoy,Prunoy,COMD,89317,0,PRUNOY,Prunoy,Prunoy +32,2016-01-01,COM,89294,0,PERREUX,Perreux,Perreux,COMD,89294,0,PERREUX,Perreux,Perreux 32,2016-01-01,COM,89317,0,PRUNOY,Prunoy,Prunoy,COM,89086,0,CHARNY OREE DE PUISAYE,Charny Orée de Puisaye,Charny Orée de Puisaye +32,2016-01-01,COM,89317,0,PRUNOY,Prunoy,Prunoy,COMD,89317,0,PRUNOY,Prunoy,Prunoy 32,2016-01-01,COM,89330,0,SACY,Sacy,Sacy,COMD,89330,0,SACY,Sacy,Sacy 32,2016-01-01,COM,89330,0,SACY,Sacy,Sacy,COM,89441,0,VERMENTON,Vermenton,Vermenton 32,2016-01-01,COM,89334,0,SAINT AUBIN CHATEAU NEUF,Saint-Aubin-Château-Neuf,Saint-Aubin-Château-Neuf,COM,89334,2,VAL D OCRE,Val d'Ocre,Le Val d'Ocre @@ -5551,8 +5382,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,89343,0,SAINT DENIS SUR OUANNE,Saint-Denis-sur-Ouanne,Saint-Denis-sur-Ouanne,COMD,89343,0,SAINT DENIS SUR OUANNE,Saint-Denis-sur-Ouanne,Saint-Denis-sur-Ouanne 32,2016-01-01,COM,89356,0,SAINT MARTIN SUR OCRE,Saint-Martin-sur-Ocre,Saint-Martin-sur-Ocre,COM,89334,2,VAL D OCRE,Val d'Ocre,Le Val d'Ocre 32,2016-01-01,COM,89356,0,SAINT MARTIN SUR OCRE,Saint-Martin-sur-Ocre,Saint-Martin-sur-Ocre,COMD,89356,0,SAINT MARTIN SUR OCRE,Saint-Martin-sur-Ocre,Saint-Martin-sur-Ocre -32,2016-01-01,COM,89358,0,SAINT MARTIN SUR OUANNE,Saint-Martin-sur-Ouanne,Saint-Martin-sur-Ouanne,COMD,89358,0,SAINT MARTIN SUR OUANNE,Saint-Martin-sur-Ouanne,Saint-Martin-sur-Ouanne 32,2016-01-01,COM,89358,0,SAINT MARTIN SUR OUANNE,Saint-Martin-sur-Ouanne,Saint-Martin-sur-Ouanne,COM,89086,0,CHARNY OREE DE PUISAYE,Charny Orée de Puisaye,Charny Orée de Puisaye +32,2016-01-01,COM,89358,0,SAINT MARTIN SUR OUANNE,Saint-Martin-sur-Ouanne,Saint-Martin-sur-Ouanne,COMD,89358,0,SAINT MARTIN SUR OUANNE,Saint-Martin-sur-Ouanne,Saint-Martin-sur-Ouanne 32,2016-01-01,COM,89366,0,SAINT ROMAIN LE PREUX,Saint-Romain-le-Preux,Saint-Romain-le-Preux,COM,89388,0,SEPEAUX SAINT ROMAIN,Sépeaux-Saint Romain,Sépeaux-Saint Romain 32,2016-01-01,COM,89388,0,SEPEAUX,Sépeaux,Sépeaux,COM,89388,0,SEPEAUX SAINT ROMAIN,Sépeaux-Saint Romain,Sépeaux-Saint Romain 32,2016-01-01,COM,89411,0,THEIL SUR VANNE,Theil-sur-Vanne,Theil-sur-Vanne,COMD,89411,0,THEIL SUR VANNE,Theil-sur-Vanne,Theil-sur-Vanne @@ -5560,79 +5391,80 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2016-01-01,COM,89429,0,VAREILLES,Vareilles,Vareilles,COM,89411,4,VALLEES DE LA VANNE,Vallées de la Vanne,Les Vallées de la Vanne 32,2016-01-01,COM,89429,0,VAREILLES,Vareilles,Vareilles,COMD,89429,0,VAREILLES,Vareilles,Vareilles 32,2016-01-01,COM,89441,0,VERMENTON,Vermenton,Vermenton,COM,89441,0,VERMENTON,Vermenton,Vermenton -32,2016-01-01,COM,89454,0,VILLEFRANCHE,Villefranche,Villefranche,COMD,89454,0,VILLEFRANCHE,Villefranche,Villefranche 32,2016-01-01,COM,89454,0,VILLEFRANCHE,Villefranche,Villefranche,COM,89086,0,CHARNY OREE DE PUISAYE,Charny Orée de Puisaye,Charny Orée de Puisaye -32,2016-01-01,COM,89457,0,VILLEMER,Villemer,Villemer,COMD,89457,0,VILLEMER,Villemer,Villemer +32,2016-01-01,COM,89454,0,VILLEFRANCHE,Villefranche,Villefranche,COMD,89454,0,VILLEFRANCHE,Villefranche,Villefranche 32,2016-01-01,COM,89457,0,VILLEMER,Villemer,Villemer,COM,89196,0,VALRAVILLON,Valravillon,Valravillon +32,2016-01-01,COM,89457,0,VILLEMER,Villemer,Villemer,COMD,89457,0,VILLEMER,Villemer,Villemer 32,2015-12-31,COM,38145,0,DIONAY,Dionay,Dionay,COMD,38145,0,DIONAY,Dionay,Dionay 32,2015-12-31,COM,38145,0,DIONAY,Dionay,Dionay,COM,38359,0,SAINT ANTOINE L ABBAYE,Saint Antoine l'Abbaye,Saint Antoine l'Abbaye 32,2015-12-31,COM,38359,0,SAINT ANTOINE L ABBAYE,Saint-Antoine-l'Abbaye,Saint-Antoine-l'Abbaye,COM,38359,0,SAINT ANTOINE L ABBAYE,Saint Antoine l'Abbaye,Saint Antoine l'Abbaye -32,2015-12-31,COM,49265,0,SAINT AUBIN DE LUIGNE,Saint-Aubin-de-Luigné,Saint-Aubin-de-Luigné,COM,49292,0,VAL DU LAYON,Val-du-Layon,Val-du-Layon 32,2015-12-31,COM,49265,0,SAINT AUBIN DE LUIGNE,Saint-Aubin-de-Luigné,Saint-Aubin-de-Luigné,COMD,49265,0,SAINT AUBIN DE LUIGNE,Saint-Aubin-de-Luigné,Saint-Aubin-de-Luigné -32,2015-12-31,COM,49292,0,SAINT LAMBERT DU LATTAY,Saint-Lambert-du-Lattay,Saint-Lambert-du-Lattay,COM,49292,0,VAL DU LAYON,Val-du-Layon,Val-du-Layon +32,2015-12-31,COM,49265,0,SAINT AUBIN DE LUIGNE,Saint-Aubin-de-Luigné,Saint-Aubin-de-Luigné,COM,49292,0,VAL DU LAYON,Val-du-Layon,Val-du-Layon 32,2015-12-31,COM,49292,0,SAINT LAMBERT DU LATTAY,Saint-Lambert-du-Lattay,Saint-Lambert-du-Lattay,COMD,49292,0,SAINT LAMBERT DU LATTAY,Saint-Lambert-du-Lattay,Saint-Lambert-du-Lattay -32,2015-12-28,COM,49043,0,BRAIN SUR LONGUENEE,Brain-sur-Longuenée,Brain-sur-Longuenée,COM,49367,1,ERDRE EN ANJOU,Erdre-en-Anjou,Erdre-en-Anjou +32,2015-12-31,COM,49292,0,SAINT LAMBERT DU LATTAY,Saint-Lambert-du-Lattay,Saint-Lambert-du-Lattay,COM,49292,0,VAL DU LAYON,Val-du-Layon,Val-du-Layon 32,2015-12-28,COM,49043,0,BRAIN SUR LONGUENEE,Brain-sur-Longuenée,Brain-sur-Longuenée,COMD,49043,0,BRAIN SUR LONGUENEE,Brain-sur-Longuenée,Brain-sur-Longuenée -32,2015-12-28,COM,49148,0,GENE,Gené,Gené,COM,49367,1,ERDRE EN ANJOU,Erdre-en-Anjou,Erdre-en-Anjou +32,2015-12-28,COM,49043,0,BRAIN SUR LONGUENEE,Brain-sur-Longuenée,Brain-sur-Longuenée,COM,49367,1,ERDRE EN ANJOU,Erdre-en-Anjou,Erdre-en-Anjou 32,2015-12-28,COM,49148,0,GENE,Gené,Gené,COMD,49148,0,GENE,Gené,Gené +32,2015-12-28,COM,49148,0,GENE,Gené,Gené,COM,49367,1,ERDRE EN ANJOU,Erdre-en-Anjou,Erdre-en-Anjou 32,2015-12-28,COM,49249,3,POUEZE,Pouëze,La Pouëze,COMD,49249,3,POUEZE,Pouëze,La Pouëze 32,2015-12-28,COM,49249,3,POUEZE,Pouëze,La Pouëze,COM,49367,1,ERDRE EN ANJOU,Erdre-en-Anjou,Erdre-en-Anjou -32,2015-12-28,COM,49367,0,VERN D ANJOU,Vern-d'Anjou,Vern-d'Anjou,COM,49367,1,ERDRE EN ANJOU,Erdre-en-Anjou,Erdre-en-Anjou 32,2015-12-28,COM,49367,0,VERN D ANJOU,Vern-d'Anjou,Vern-d'Anjou,COMD,49367,0,VERN D ANJOU,Vern-d'Anjou,Vern-d'Anjou -32,2015-12-15,COM,49006,1,ANDREZE,Andrezé,Andrezé,COM,49023,0,BEAUPREAU EN MAUGES,Beaupréau-en-Mauges,Beaupréau-en-Mauges +32,2015-12-28,COM,49367,0,VERN D ANJOU,Vern-d'Anjou,Vern-d'Anjou,COM,49367,1,ERDRE EN ANJOU,Erdre-en-Anjou,Erdre-en-Anjou 32,2015-12-15,COM,49006,1,ANDREZE,Andrezé,Andrezé,COMD,49006,1,ANDREZE,Andrezé,Andrezé -32,2015-12-15,COM,49023,0,BEAUPREAU,Beaupréau,Beaupréau,COM,49023,0,BEAUPREAU EN MAUGES,Beaupréau-en-Mauges,Beaupréau-en-Mauges +32,2015-12-15,COM,49006,1,ANDREZE,Andrezé,Andrezé,COM,49023,0,BEAUPREAU EN MAUGES,Beaupréau-en-Mauges,Beaupréau-en-Mauges 32,2015-12-15,COM,49023,0,BEAUPREAU,Beaupréau,Beaupréau,COMD,49023,0,BEAUPREAU,Beaupréau,Beaupréau +32,2015-12-15,COM,49023,0,BEAUPREAU,Beaupréau,Beaupréau,COM,49023,0,BEAUPREAU EN MAUGES,Beaupréau-en-Mauges,Beaupréau-en-Mauges 32,2015-12-15,COM,49024,0,BEAUSSE,Beausse,Beausse,COMD,49024,0,BEAUSSE,Beausse,Beausse 32,2015-12-15,COM,49024,0,BEAUSSE,Beausse,Beausse,COM,49244,0,MAUGES SUR LOIRE,Mauges-sur-Loire,Mauges-sur-Loire -32,2015-12-15,COM,49033,3,BOISSIERE SUR EVRE,Boissière-sur-Èvre,La Boissière-sur-Èvre,COM,49218,0,MONTREVAULT SUR EVRE,Montrevault-sur-Èvre,Montrevault-sur-Èvre 32,2015-12-15,COM,49033,3,BOISSIERE SUR EVRE,Boissière-sur-Èvre,La Boissière-sur-Èvre,COMD,49033,3,BOISSIERE SUR EVRE,Boissière-sur-Èvre,La Boissière-sur-Èvre -32,2015-12-15,COM,49034,0,BOTZ EN MAUGES,Botz-en-Mauges,Botz-en-Mauges,COM,49244,0,MAUGES SUR LOIRE,Mauges-sur-Loire,Mauges-sur-Loire +32,2015-12-15,COM,49033,3,BOISSIERE SUR EVRE,Boissière-sur-Èvre,La Boissière-sur-Èvre,COM,49218,0,MONTREVAULT SUR EVRE,Montrevault-sur-Èvre,Montrevault-sur-Èvre 32,2015-12-15,COM,49034,0,BOTZ EN MAUGES,Botz-en-Mauges,Botz-en-Mauges,COMD,49034,0,BOTZ EN MAUGES,Botz-en-Mauges,Botz-en-Mauges +32,2015-12-15,COM,49034,0,BOTZ EN MAUGES,Botz-en-Mauges,Botz-en-Mauges,COM,49244,0,MAUGES SUR LOIRE,Mauges-sur-Loire,Mauges-sur-Loire 32,2015-12-15,COM,49039,0,BOURGNEUF EN MAUGES,Bourgneuf-en-Mauges,Bourgneuf-en-Mauges,COMD,49039,0,BOURGNEUF EN MAUGES,Bourgneuf-en-Mauges,Bourgneuf-en-Mauges 32,2015-12-15,COM,49039,0,BOURGNEUF EN MAUGES,Bourgneuf-en-Mauges,Bourgneuf-en-Mauges,COM,49244,0,MAUGES SUR LOIRE,Mauges-sur-Loire,Mauges-sur-Loire -32,2015-12-15,COM,49040,0,BOUZILLE,Bouzillé,Bouzillé,COM,49069,1,OREE D ANJOU,Orée d'Anjou,Orée d'Anjou 32,2015-12-15,COM,49040,0,BOUZILLE,Bouzillé,Bouzillé,COMD,49040,0,BOUZILLE,Bouzillé,Bouzillé +32,2015-12-15,COM,49040,0,BOUZILLE,Bouzillé,Bouzillé,COM,49069,1,OREE D ANJOU,Orée d'Anjou,Orée d'Anjou 32,2015-12-15,COM,49069,0,CHAMPTOCEAUX,Champtoceaux,Champtoceaux,COM,49069,1,OREE D ANJOU,Orée d'Anjou,Orée d'Anjou 32,2015-12-15,COM,49069,0,CHAMPTOCEAUX,Champtoceaux,Champtoceaux,COMD,49069,0,CHAMPTOCEAUX,Champtoceaux,Champtoceaux 32,2015-12-15,COM,49071,0,CHANZEAUX,Chanzeaux,Chanzeaux,COMD,49071,0,CHANZEAUX,Chanzeaux,Chanzeaux 32,2015-12-15,COM,49071,0,CHANZEAUX,Chanzeaux,Chanzeaux,COM,49092,0,CHEMILLE EN ANJOU,Chemillé-en-Anjou,Chemillé-en-Anjou 32,2015-12-15,COM,49072,3,CHAPELLE DU GENET,Chapelle-du-Genêt,La Chapelle-du-Genêt,COM,49023,0,BEAUPREAU EN MAUGES,Beaupréau-en-Mauges,Beaupréau-en-Mauges 32,2015-12-15,COM,49072,3,CHAPELLE DU GENET,Chapelle-du-Genêt,La Chapelle-du-Genêt,COMD,49072,3,CHAPELLE DU GENET,Chapelle-du-Genêt,La Chapelle-du-Genêt -32,2015-12-15,COM,49074,3,CHAPELLE ROUSSELIN,Chapelle-Rousselin,La Chapelle-Rousselin,COM,49092,0,CHEMILLE EN ANJOU,Chemillé-en-Anjou,Chemillé-en-Anjou 32,2015-12-15,COM,49074,3,CHAPELLE ROUSSELIN,Chapelle-Rousselin,La Chapelle-Rousselin,COMD,49074,3,CHAPELLE ROUSSELIN,Chapelle-Rousselin,La Chapelle-Rousselin -32,2015-12-15,COM,49075,3,CHAPELLE SAINT FLORENT,Chapelle-Saint-Florent,La Chapelle-Saint-Florent,COM,49244,0,MAUGES SUR LOIRE,Mauges-sur-Loire,Mauges-sur-Loire +32,2015-12-15,COM,49074,3,CHAPELLE ROUSSELIN,Chapelle-Rousselin,La Chapelle-Rousselin,COM,49092,0,CHEMILLE EN ANJOU,Chemillé-en-Anjou,Chemillé-en-Anjou 32,2015-12-15,COM,49075,3,CHAPELLE SAINT FLORENT,Chapelle-Saint-Florent,La Chapelle-Saint-Florent,COMD,49075,3,CHAPELLE SAINT FLORENT,Chapelle-Saint-Florent,La Chapelle-Saint-Florent +32,2015-12-15,COM,49075,3,CHAPELLE SAINT FLORENT,Chapelle-Saint-Florent,La Chapelle-Saint-Florent,COM,49244,0,MAUGES SUR LOIRE,Mauges-sur-Loire,Mauges-sur-Loire 32,2015-12-15,COM,49083,0,CHAUDRON EN MAUGES,Chaudron-en-Mauges,Chaudron-en-Mauges,COMD,49083,0,CHAUDRON EN MAUGES,Chaudron-en-Mauges,Chaudron-en-Mauges 32,2015-12-15,COM,49083,0,CHAUDRON EN MAUGES,Chaudron-en-Mauges,Chaudron-en-Mauges,COM,49218,0,MONTREVAULT SUR EVRE,Montrevault-sur-Èvre,Montrevault-sur-Èvre -32,2015-12-15,COM,49085,3,CHAUSSAIRE,Chaussaire,La Chaussaire,COM,49218,0,MONTREVAULT SUR EVRE,Montrevault-sur-Èvre,Montrevault-sur-Èvre 32,2015-12-15,COM,49085,3,CHAUSSAIRE,Chaussaire,La Chaussaire,COMD,49085,3,CHAUSSAIRE,Chaussaire,La Chaussaire -32,2015-12-15,COM,49092,0,CHEMILLE MELAY,Chemillé-Melay,Chemillé-Melay,COM,49092,0,CHEMILLE EN ANJOU,Chemillé-en-Anjou,Chemillé-en-Anjou +32,2015-12-15,COM,49085,3,CHAUSSAIRE,Chaussaire,La Chaussaire,COM,49218,0,MONTREVAULT SUR EVRE,Montrevault-sur-Èvre,Montrevault-sur-Èvre 32,2015-12-15,COMD,49092,0,CHEMILLE,Chemillé,Chemillé,COMD,49092,0,CHEMILLE,Chemillé,Chemillé 32,2015-12-15,COMD,49092,0,CHEMILLE,Chemillé,Chemillé,COM,49092,0,CHEMILLE EN ANJOU,Chemillé-en-Anjou,Chemillé-en-Anjou -32,2015-12-15,COM,49111,0,COSSE D ANJOU,Cossé-d'Anjou,Cossé-d'Anjou,COMD,49111,0,COSSE D ANJOU,Cossé-d'Anjou,Cossé-d'Anjou +32,2015-12-15,COM,49092,0,CHEMILLE MELAY,Chemillé-Melay,Chemillé-Melay,COMD,49092,0,CHEMILLE,Chemillé,Chemillé +32,2015-12-15,COM,49092,0,CHEMILLE MELAY,Chemillé-Melay,Chemillé-Melay,COM,49092,0,CHEMILLE EN ANJOU,Chemillé-en-Anjou,Chemillé-en-Anjou 32,2015-12-15,COM,49111,0,COSSE D ANJOU,Cossé-d'Anjou,Cossé-d'Anjou,COM,49092,0,CHEMILLE EN ANJOU,Chemillé-en-Anjou,Chemillé-en-Anjou +32,2015-12-15,COM,49111,0,COSSE D ANJOU,Cossé-d'Anjou,Cossé-d'Anjou,COMD,49111,0,COSSE D ANJOU,Cossé-d'Anjou,Cossé-d'Anjou 32,2015-12-15,COM,49126,0,DRAIN,Drain,Drain,COM,49069,1,OREE D ANJOU,Orée d'Anjou,Orée d'Anjou 32,2015-12-15,COM,49126,0,DRAIN,Drain,Drain,COMD,49126,0,DRAIN,Drain,Drain -32,2015-12-15,COM,49137,2,FIEF SAUVIN,Fief-Sauvin,Le Fief-Sauvin,COM,49218,0,MONTREVAULT SUR EVRE,Montrevault-sur-Èvre,Montrevault-sur-Èvre 32,2015-12-15,COM,49137,2,FIEF SAUVIN,Fief-Sauvin,Le Fief-Sauvin,COMD,49137,2,FIEF SAUVIN,Fief-Sauvin,Le Fief-Sauvin +32,2015-12-15,COM,49137,2,FIEF SAUVIN,Fief-Sauvin,Le Fief-Sauvin,COM,49218,0,MONTREVAULT SUR EVRE,Montrevault-sur-Èvre,Montrevault-sur-Èvre 32,2015-12-15,COM,49145,2,FUILET,Fuilet,Le Fuilet,COMD,49145,2,FUILET,Fuilet,Le Fuilet 32,2015-12-15,COM,49145,2,FUILET,Fuilet,Le Fuilet,COM,49218,0,MONTREVAULT SUR EVRE,Montrevault-sur-Èvre,Montrevault-sur-Èvre 32,2015-12-15,COMA,49146,4,GARDES,Gardes,Les Gardes,COM,49092,0,CHEMILLE EN ANJOU,Chemillé-en-Anjou,Chemillé-en-Anjou -32,2015-12-15,COM,49151,0,GESTE,Gesté,Gesté,COMD,49151,0,GESTE,Gesté,Gesté 32,2015-12-15,COM,49151,0,GESTE,Gesté,Gesté,COM,49023,0,BEAUPREAU EN MAUGES,Beaupréau-en-Mauges,Beaupréau-en-Mauges -32,2015-12-15,COM,49153,0,VALANJOU,Valanjou,Valanjou,COMD,49153,0,VALANJOU,Valanjou,Valanjou +32,2015-12-15,COM,49151,0,GESTE,Gesté,Gesté,COMD,49151,0,GESTE,Gesté,Gesté 32,2015-12-15,COM,49153,0,VALANJOU,Valanjou,Valanjou,COM,49092,0,CHEMILLE EN ANJOU,Chemillé-en-Anjou,Chemillé-en-Anjou -32,2015-12-15,COM,49162,0,JALLAIS,Jallais,Jallais,COMD,49162,0,JALLAIS,Jallais,Jallais +32,2015-12-15,COM,49153,0,VALANJOU,Valanjou,Valanjou,COMD,49153,0,VALANJOU,Valanjou,Valanjou 32,2015-12-15,COM,49162,0,JALLAIS,Jallais,Jallais,COM,49023,0,BEAUPREAU EN MAUGES,Beaupréau-en-Mauges,Beaupréau-en-Mauges -32,2015-12-15,COM,49165,3,JUBAUDIERE,Jubaudière,La Jubaudière,COMD,49165,3,JUBAUDIERE,Jubaudière,La Jubaudière +32,2015-12-15,COM,49162,0,JALLAIS,Jallais,Jallais,COMD,49162,0,JALLAIS,Jallais,Jallais 32,2015-12-15,COM,49165,3,JUBAUDIERE,Jubaudière,La Jubaudière,COM,49023,0,BEAUPREAU EN MAUGES,Beaupréau-en-Mauges,Beaupréau-en-Mauges -32,2015-12-15,COM,49169,3,JUMELLIERE,Jumellière,La Jumellière,COMD,49169,3,JUMELLIERE,Jumellière,La Jumellière +32,2015-12-15,COM,49165,3,JUBAUDIERE,Jubaudière,La Jubaudière,COMD,49165,3,JUBAUDIERE,Jubaudière,La Jubaudière 32,2015-12-15,COM,49169,3,JUMELLIERE,Jumellière,La Jumellière,COM,49092,0,CHEMILLE EN ANJOU,Chemillé-en-Anjou,Chemillé-en-Anjou -32,2015-12-15,COM,49172,0,LANDEMONT,Landemont,Landemont,COMD,49172,0,LANDEMONT,Landemont,Landemont +32,2015-12-15,COM,49169,3,JUMELLIERE,Jumellière,La Jumellière,COMD,49169,3,JUMELLIERE,Jumellière,La Jumellière 32,2015-12-15,COM,49172,0,LANDEMONT,Landemont,Landemont,COM,49069,1,OREE D ANJOU,Orée d'Anjou,Orée d'Anjou -32,2015-12-15,COM,49177,0,LIRE,Liré,Liré,COMD,49177,0,LIRE,Liré,Liré +32,2015-12-15,COM,49172,0,LANDEMONT,Landemont,Landemont,COMD,49172,0,LANDEMONT,Landemont,Landemont 32,2015-12-15,COM,49177,0,LIRE,Liré,Liré,COM,49069,1,OREE D ANJOU,Orée d'Anjou,Orée d'Anjou +32,2015-12-15,COM,49177,0,LIRE,Liré,Liré,COMD,49177,0,LIRE,Liré,Liré 32,2015-12-15,COM,49179,2,LONGERON,Longeron,Le Longeron,COMD,49179,2,LONGERON,Longeron,Le Longeron 32,2015-12-15,COM,49179,2,LONGERON,Longeron,Le Longeron,COM,49301,0,SEVREMOINE,Sèvremoine,Sèvremoine 32,2015-12-15,COM,49190,2,MARILLAIS,Marillais,Le Marillais,COMD,49190,2,MARILLAIS,Marillais,Le Marillais @@ -5643,40 +5475,40 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2015-12-15,COM,49204,2,MESNIL EN VALLEE,Mesnil-en-Vallée,Le Mesnil-en-Vallée,COM,49244,0,MAUGES SUR LOIRE,Mauges-sur-Loire,Mauges-sur-Loire 32,2015-12-15,COM,49206,0,MONTFAUCON MONTIGNE,Montfaucon-Montigné,Montfaucon-Montigné,COMD,49206,0,MONTFAUCON MONTIGNE,Montfaucon-Montigné,Montfaucon-Montigné 32,2015-12-15,COM,49206,0,MONTFAUCON MONTIGNE,Montfaucon-Montigné,Montfaucon-Montigné,COM,49301,0,SEVREMOINE,Sèvremoine,Sèvremoine -32,2015-12-15,COM,49212,0,MONTJEAN SUR LOIRE,Montjean-sur-Loire,Montjean-sur-Loire,COM,49244,0,MAUGES SUR LOIRE,Mauges-sur-Loire,Mauges-sur-Loire 32,2015-12-15,COM,49212,0,MONTJEAN SUR LOIRE,Montjean-sur-Loire,Montjean-sur-Loire,COMD,49212,0,MONTJEAN SUR LOIRE,Montjean-sur-Loire,Montjean-sur-Loire +32,2015-12-15,COM,49212,0,MONTJEAN SUR LOIRE,Montjean-sur-Loire,Montjean-sur-Loire,COM,49244,0,MAUGES SUR LOIRE,Mauges-sur-Loire,Mauges-sur-Loire 32,2015-12-15,COM,49218,0,MONTREVAULT,Montrevault,Montrevault,COM,49218,0,MONTREVAULT SUR EVRE,Montrevault-sur-Èvre,Montrevault-sur-Èvre 32,2015-12-15,COM,49218,0,MONTREVAULT,Montrevault,Montrevault,COMD,49218,0,MONTREVAULT,Montrevault,Montrevault 32,2015-12-15,COM,49225,0,NEUVY EN MAUGES,Neuvy-en-Mauges,Neuvy-en-Mauges,COM,49092,0,CHEMILLE EN ANJOU,Chemillé-en-Anjou,Chemillé-en-Anjou 32,2015-12-15,COM,49225,0,NEUVY EN MAUGES,Neuvy-en-Mauges,Neuvy-en-Mauges,COMD,49225,0,NEUVY EN MAUGES,Neuvy-en-Mauges,Neuvy-en-Mauges 32,2015-12-15,COM,49239,2,PIN EN MAUGES,Pin-en-Mauges,Le Pin-en-Mauges,COM,49023,0,BEAUPREAU EN MAUGES,Beaupréau-en-Mauges,Beaupréau-en-Mauges 32,2015-12-15,COM,49239,2,PIN EN MAUGES,Pin-en-Mauges,Le Pin-en-Mauges,COMD,49239,2,PIN EN MAUGES,Pin-en-Mauges,Le Pin-en-Mauges -32,2015-12-15,COM,49243,3,POITEVINIERE,Poitevinière,La Poitevinière,COMD,49243,3,POITEVINIERE,Poitevinière,La Poitevinière 32,2015-12-15,COM,49243,3,POITEVINIERE,Poitevinière,La Poitevinière,COM,49023,0,BEAUPREAU EN MAUGES,Beaupréau-en-Mauges,Beaupréau-en-Mauges -32,2015-12-15,COM,49244,3,POMMERAYE,Pommeraye,La Pommeraye,COMD,49244,3,POMMERAYE,Pommeraye,La Pommeraye +32,2015-12-15,COM,49243,3,POITEVINIERE,Poitevinière,La Poitevinière,COMD,49243,3,POITEVINIERE,Poitevinière,La Poitevinière 32,2015-12-15,COM,49244,3,POMMERAYE,Pommeraye,La Pommeraye,COM,49244,0,MAUGES SUR LOIRE,Mauges-sur-Loire,Mauges-sur-Loire -32,2015-12-15,COM,49252,2,PUISET DORE,Puiset-Doré,Le Puiset-Doré,COMD,49252,2,PUISET DORE,Puiset-Doré,Le Puiset-Doré +32,2015-12-15,COM,49244,3,POMMERAYE,Pommeraye,La Pommeraye,COMD,49244,3,POMMERAYE,Pommeraye,La Pommeraye 32,2015-12-15,COM,49252,2,PUISET DORE,Puiset-Doré,Le Puiset-Doré,COM,49218,0,MONTREVAULT SUR EVRE,Montrevault-sur-Èvre,Montrevault-sur-Èvre +32,2015-12-15,COM,49252,2,PUISET DORE,Puiset-Doré,Le Puiset-Doré,COMD,49252,2,PUISET DORE,Puiset-Doré,Le Puiset-Doré 32,2015-12-15,COM,49258,3,RENAUDIERE,Renaudière,La Renaudière,COMD,49258,3,RENAUDIERE,Renaudière,La Renaudière 32,2015-12-15,COM,49258,3,RENAUDIERE,Renaudière,La Renaudière,COM,49301,0,SEVREMOINE,Sèvremoine,Sèvremoine 32,2015-12-15,COM,49263,0,ROUSSAY,Roussay,Roussay,COMD,49263,0,ROUSSAY,Roussay,Roussay 32,2015-12-15,COM,49263,0,ROUSSAY,Roussay,Roussay,COM,49301,0,SEVREMOINE,Sèvremoine,Sèvremoine -32,2015-12-15,COM,49264,0,SAINT ANDRE DE LA MARCHE,Saint-André-de-la-Marche,Saint-André-de-la-Marche,COM,49301,0,SEVREMOINE,Sèvremoine,Sèvremoine 32,2015-12-15,COM,49264,0,SAINT ANDRE DE LA MARCHE,Saint-André-de-la-Marche,Saint-André-de-la-Marche,COMD,49264,0,SAINT ANDRE DE LA MARCHE,Saint-André-de-la-Marche,Saint-André-de-la-Marche -32,2015-12-15,COM,49268,0,SAINTE CHRISTINE,Sainte-Christine,Sainte-Christine,COMD,49268,0,SAINTE CHRISTINE,Sainte-Christine,Sainte-Christine +32,2015-12-15,COM,49264,0,SAINT ANDRE DE LA MARCHE,Saint-André-de-la-Marche,Saint-André-de-la-Marche,COM,49301,0,SEVREMOINE,Sèvremoine,Sèvremoine 32,2015-12-15,COM,49268,0,SAINTE CHRISTINE,Sainte-Christine,Sainte-Christine,COM,49092,0,CHEMILLE EN ANJOU,Chemillé-en-Anjou,Chemillé-en-Anjou +32,2015-12-15,COM,49268,0,SAINTE CHRISTINE,Sainte-Christine,Sainte-Christine,COMD,49268,0,SAINTE CHRISTINE,Sainte-Christine,Sainte-Christine 32,2015-12-15,COM,49270,0,SAINT CHRISTOPHE LA COUPERIE,Saint-Christophe-la-Couperie,Saint-Christophe-la-Couperie,COM,49069,1,OREE D ANJOU,Orée d'Anjou,Orée d'Anjou 32,2015-12-15,COM,49270,0,SAINT CHRISTOPHE LA COUPERIE,Saint-Christophe-la-Couperie,Saint-Christophe-la-Couperie,COMD,49270,0,SAINT CHRISTOPHE LA COUPERIE,Saint-Christophe-la-Couperie,Saint-Christophe-la-Couperie -32,2015-12-15,COM,49273,0,SAINT CRESPIN SUR MOINE,Saint-Crespin-sur-Moine,Saint-Crespin-sur-Moine,COM,49301,0,SEVREMOINE,Sèvremoine,Sèvremoine 32,2015-12-15,COM,49273,0,SAINT CRESPIN SUR MOINE,Saint-Crespin-sur-Moine,Saint-Crespin-sur-Moine,COMD,49273,0,SAINT CRESPIN SUR MOINE,Saint-Crespin-sur-Moine,Saint-Crespin-sur-Moine +32,2015-12-15,COM,49273,0,SAINT CRESPIN SUR MOINE,Saint-Crespin-sur-Moine,Saint-Crespin-sur-Moine,COM,49301,0,SEVREMOINE,Sèvremoine,Sèvremoine 32,2015-12-15,COM,49276,0,SAINT FLORENT LE VIEIL,Saint-Florent-le-Vieil,Saint-Florent-le-Vieil,COM,49244,0,MAUGES SUR LOIRE,Mauges-sur-Loire,Mauges-sur-Loire 32,2015-12-15,COM,49276,0,SAINT FLORENT LE VIEIL,Saint-Florent-le-Vieil,Saint-Florent-le-Vieil,COMD,49276,0,SAINT FLORENT LE VIEIL,Saint-Florent-le-Vieil,Saint-Florent-le-Vieil 32,2015-12-15,COM,49281,0,SAINT GEORGES DES GARDES,Saint-Georges-des-Gardes,Saint-Georges-des-Gardes,COM,49092,0,CHEMILLE EN ANJOU,Chemillé-en-Anjou,Chemillé-en-Anjou 32,2015-12-15,COM,49281,0,SAINT GEORGES DES GARDES,Saint-Georges-des-Gardes,Saint-Georges-des-Gardes,COMD,49281,0,SAINT GEORGES DES GARDES,Saint-Georges-des-Gardes,Saint-Georges-des-Gardes -32,2015-12-15,COM,49285,0,SAINT GERMAIN SUR MOINE,Saint-Germain-sur-Moine,Saint-Germain-sur-Moine,COM,49301,0,SEVREMOINE,Sèvremoine,Sèvremoine 32,2015-12-15,COM,49285,0,SAINT GERMAIN SUR MOINE,Saint-Germain-sur-Moine,Saint-Germain-sur-Moine,COMD,49285,0,SAINT GERMAIN SUR MOINE,Saint-Germain-sur-Moine,Saint-Germain-sur-Moine -32,2015-12-15,COM,49295,0,SAINT LAURENT DE LA PLAINE,Saint-Laurent-de-la-Plaine,Saint-Laurent-de-la-Plaine,COMD,49295,0,SAINT LAURENT DE LA PLAINE,Saint-Laurent-de-la-Plaine,Saint-Laurent-de-la-Plaine +32,2015-12-15,COM,49285,0,SAINT GERMAIN SUR MOINE,Saint-Germain-sur-Moine,Saint-Germain-sur-Moine,COM,49301,0,SEVREMOINE,Sèvremoine,Sèvremoine 32,2015-12-15,COM,49295,0,SAINT LAURENT DE LA PLAINE,Saint-Laurent-de-la-Plaine,Saint-Laurent-de-la-Plaine,COM,49244,0,MAUGES SUR LOIRE,Mauges-sur-Loire,Mauges-sur-Loire +32,2015-12-15,COM,49295,0,SAINT LAURENT DE LA PLAINE,Saint-Laurent-de-la-Plaine,Saint-Laurent-de-la-Plaine,COMD,49295,0,SAINT LAURENT DE LA PLAINE,Saint-Laurent-de-la-Plaine,Saint-Laurent-de-la-Plaine 32,2015-12-15,COM,49296,0,SAINT LAURENT DES AUTELS,Saint-Laurent-des-Autels,Saint-Laurent-des-Autels,COM,49069,1,OREE D ANJOU,Orée d'Anjou,Orée d'Anjou 32,2015-12-15,COM,49296,0,SAINT LAURENT DES AUTELS,Saint-Laurent-des-Autels,Saint-Laurent-des-Autels,COMD,49296,0,SAINT LAURENT DES AUTELS,Saint-Laurent-des-Autels,Saint-Laurent-des-Autels 32,2015-12-15,COM,49297,0,SAINT LAURENT DU MOTTAY,Saint-Laurent-du-Mottay,Saint-Laurent-du-Mottay,COM,49244,0,MAUGES SUR LOIRE,Mauges-sur-Loire,Mauges-sur-Loire @@ -5685,97 +5517,96 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2015-12-15,COM,49300,0,SAINT LEZIN,Saint-Lézin,Saint-Lézin,COMD,49300,0,SAINT LEZIN,Saint-Lézin,Saint-Lézin 32,2015-12-15,COM,49301,0,SAINT MACAIRE EN MAUGES,Saint-Macaire-en-Mauges,Saint-Macaire-en-Mauges,COMD,49301,0,SAINT MACAIRE EN MAUGES,Saint-Macaire-en-Mauges,Saint-Macaire-en-Mauges 32,2015-12-15,COM,49301,0,SAINT MACAIRE EN MAUGES,Saint-Macaire-en-Mauges,Saint-Macaire-en-Mauges,COM,49301,0,SEVREMOINE,Sèvremoine,Sèvremoine -32,2015-12-15,COM,49312,0,SAINT PHILBERT EN MAUGES,Saint-Philbert-en-Mauges,Saint-Philbert-en-Mauges,COMD,49312,0,SAINT PHILBERT EN MAUGES,Saint-Philbert-en-Mauges,Saint-Philbert-en-Mauges 32,2015-12-15,COM,49312,0,SAINT PHILBERT EN MAUGES,Saint-Philbert-en-Mauges,Saint-Philbert-en-Mauges,COM,49023,0,BEAUPREAU EN MAUGES,Beaupréau-en-Mauges,Beaupréau-en-Mauges -32,2015-12-15,COM,49313,0,SAINT PIERRE MONTLIMART,Saint-Pierre-Montlimart,Saint-Pierre-Montlimart,COMD,49313,0,SAINT PIERRE MONTLIMART,Saint-Pierre-Montlimart,Saint-Pierre-Montlimart +32,2015-12-15,COM,49312,0,SAINT PHILBERT EN MAUGES,Saint-Philbert-en-Mauges,Saint-Philbert-en-Mauges,COMD,49312,0,SAINT PHILBERT EN MAUGES,Saint-Philbert-en-Mauges,Saint-Philbert-en-Mauges 32,2015-12-15,COM,49313,0,SAINT PIERRE MONTLIMART,Saint-Pierre-Montlimart,Saint-Pierre-Montlimart,COM,49218,0,MONTREVAULT SUR EVRE,Montrevault-sur-Èvre,Montrevault-sur-Èvre +32,2015-12-15,COM,49313,0,SAINT PIERRE MONTLIMART,Saint-Pierre-Montlimart,Saint-Pierre-Montlimart,COMD,49313,0,SAINT PIERRE MONTLIMART,Saint-Pierre-Montlimart,Saint-Pierre-Montlimart 32,2015-12-15,COM,49314,0,SAINT QUENTIN EN MAUGES,Saint-Quentin-en-Mauges,Saint-Quentin-en-Mauges,COM,49218,0,MONTREVAULT SUR EVRE,Montrevault-sur-Èvre,Montrevault-sur-Èvre 32,2015-12-15,COM,49314,0,SAINT QUENTIN EN MAUGES,Saint-Quentin-en-Mauges,Saint-Quentin-en-Mauges,COMD,49314,0,SAINT QUENTIN EN MAUGES,Saint-Quentin-en-Mauges,Saint-Quentin-en-Mauges -32,2015-12-15,COM,49316,0,SAINT REMY EN MAUGES,Saint-Rémy-en-Mauges,Saint-Rémy-en-Mauges,COMD,49316,0,SAINT REMY EN MAUGES,Saint-Rémy-en-Mauges,Saint-Rémy-en-Mauges 32,2015-12-15,COM,49316,0,SAINT REMY EN MAUGES,Saint-Rémy-en-Mauges,Saint-Rémy-en-Mauges,COM,49218,0,MONTREVAULT SUR EVRE,Montrevault-sur-Èvre,Montrevault-sur-Èvre +32,2015-12-15,COM,49316,0,SAINT REMY EN MAUGES,Saint-Rémy-en-Mauges,Saint-Rémy-en-Mauges,COMD,49316,0,SAINT REMY EN MAUGES,Saint-Rémy-en-Mauges,Saint-Rémy-en-Mauges 32,2015-12-15,COM,49320,0,SAINT SAUVEUR DE LANDEMONT,Saint-Sauveur-de-Landemont,Saint-Sauveur-de-Landemont,COM,49069,1,OREE D ANJOU,Orée d'Anjou,Orée d'Anjou 32,2015-12-15,COM,49320,0,SAINT SAUVEUR DE LANDEMONT,Saint-Sauveur-de-Landemont,Saint-Sauveur-de-Landemont,COMD,49320,0,SAINT SAUVEUR DE LANDEMONT,Saint-Sauveur-de-Landemont,Saint-Sauveur-de-Landemont -32,2015-12-15,COM,49324,3,SALLE ET CHAPELLE AUBRY,Salle-et-Chapelle-Aubry,La Salle-et-Chapelle-Aubry,COMD,49324,3,SALLE ET CHAPELLE AUBRY,Salle-et-Chapelle-Aubry,La Salle-et-Chapelle-Aubry 32,2015-12-15,COM,49324,3,SALLE ET CHAPELLE AUBRY,Salle-et-Chapelle-Aubry,La Salle-et-Chapelle-Aubry,COM,49218,0,MONTREVAULT SUR EVRE,Montrevault-sur-Èvre,Montrevault-sur-Èvre +32,2015-12-15,COM,49324,3,SALLE ET CHAPELLE AUBRY,Salle-et-Chapelle-Aubry,La Salle-et-Chapelle-Aubry,COMD,49324,3,SALLE ET CHAPELLE AUBRY,Salle-et-Chapelle-Aubry,La Salle-et-Chapelle-Aubry 32,2015-12-15,COM,49325,3,SALLE DE VIHIERS,Salle-de-Vihiers,La Salle-de-Vihiers,COM,49092,0,CHEMILLE EN ANJOU,Chemillé-en-Anjou,Chemillé-en-Anjou 32,2015-12-15,COM,49325,3,SALLE DE VIHIERS,Salle-de-Vihiers,La Salle-de-Vihiers,COMD,49325,3,SALLE DE VIHIERS,Salle-de-Vihiers,La Salle-de-Vihiers -32,2015-12-15,COM,49349,0,TILLIERES,Tillières,Tillières,COMD,49349,0,TILLIERES,Tillières,Tillières 32,2015-12-15,COM,49349,0,TILLIERES,Tillières,Tillières,COM,49301,0,SEVREMOINE,Sèvremoine,Sèvremoine +32,2015-12-15,COM,49349,0,TILLIERES,Tillières,Tillières,COMD,49349,0,TILLIERES,Tillières,Tillières 32,2015-12-15,COM,49350,0,TORFOU,Torfou,Torfou,COM,49301,0,SEVREMOINE,Sèvremoine,Sèvremoine 32,2015-12-15,COM,49350,0,TORFOU,Torfou,Torfou,COMD,49350,0,TORFOU,Torfou,Torfou -32,2015-12-15,COM,49351,3,TOURLANDRY,Tourlandry,La Tourlandry,COMD,49351,3,TOURLANDRY,Tourlandry,La Tourlandry 32,2015-12-15,COM,49351,3,TOURLANDRY,Tourlandry,La Tourlandry,COM,49092,0,CHEMILLE EN ANJOU,Chemillé-en-Anjou,Chemillé-en-Anjou -32,2015-12-15,COM,49360,3,VARENNE,Varenne,La Varenne,COMD,49360,3,VARENNE,Varenne,La Varenne +32,2015-12-15,COM,49351,3,TOURLANDRY,Tourlandry,La Tourlandry,COMD,49351,3,TOURLANDRY,Tourlandry,La Tourlandry 32,2015-12-15,COM,49360,3,VARENNE,Varenne,La Varenne,COM,49069,1,OREE D ANJOU,Orée d'Anjou,Orée d'Anjou +32,2015-12-15,COM,49360,3,VARENNE,Varenne,La Varenne,COMD,49360,3,VARENNE,Varenne,La Varenne 32,2015-12-15,COM,49375,0,VILLEDIEU LA BLOUERE,Villedieu-la-Blouère,Villedieu-la-Blouère,COM,49023,0,BEAUPREAU EN MAUGES,Beaupréau-en-Mauges,Beaupréau-en-Mauges 32,2015-12-15,COM,49375,0,VILLEDIEU LA BLOUERE,Villedieu-la-Blouère,Villedieu-la-Blouère,COMD,49375,0,VILLEDIEU LA BLOUERE,Villedieu-la-Blouère,Villedieu-la-Blouère 32,2015-12-15,COM,70281,0,GREUCOURT,Greucourt,Greucourt,COMD,70281,0,GREUCOURT,Greucourt,Greucourt 32,2015-12-15,COM,70281,0,GREUCOURT,Greucourt,Greucourt,COM,70418,3,ROMAINE,Romaine,La Romaine -32,2015-12-15,COM,70418,2,PONT DE PLANCHES,Pont-de-Planches,Le Pont-de-Planches,COMD,70418,2,PONT DE PLANCHES,Pont-de-Planches,Le Pont-de-Planches 32,2015-12-15,COM,70418,2,PONT DE PLANCHES,Pont-de-Planches,Le Pont-de-Planches,COM,70418,3,ROMAINE,Romaine,La Romaine -32,2015-12-15,COM,70551,0,VEZET,Vezet,Vezet,COMD,70551,0,VEZET,Vezet,Vezet +32,2015-12-15,COM,70418,2,PONT DE PLANCHES,Pont-de-Planches,Le Pont-de-Planches,COMD,70418,2,PONT DE PLANCHES,Pont-de-Planches,Le Pont-de-Planches 32,2015-12-15,COM,70551,0,VEZET,Vezet,Vezet,COM,70418,3,ROMAINE,Romaine,La Romaine -10,2015-11-19,COM,06107,0,ROQUESTERON GRASSE,Roquestéron-Grasse,Roquestéron-Grasse,COM,06107,3,ROQUE EN PROVENCE,Roque-en-Provence,La Roque-en-Provence +32,2015-12-15,COM,70551,0,VEZET,Vezet,Vezet,COMD,70551,0,VEZET,Vezet,Vezet +10,2015-11-19,COM,6107,0,ROQUESTERON GRASSE,Roquestéron-Grasse,Roquestéron-Grasse,COM,6107,3,ROQUE EN PROVENCE,Roque-en-Provence,La Roque-en-Provence 10,2015-11-19,COM,27255,0,FONTENAY,Fontenay,Fontenay,COM,27255,0,FONTENAY EN VEXIN,Fontenay-en-Vexin,Fontenay-en-Vexin 10,2015-11-19,COM,59586,0,TEMPLEUVE,Templeuve,Templeuve,COM,59586,0,TEMPLEUVE EN PEVELE,Templeuve-en-Pévèle,Templeuve-en-Pévèle 10,2015-11-19,COM,68006,1,AMMERZWILLER,Ammerzwiller,Ammerzwiller,COM,68006,1,AMMERTZWILLER,Ammertzwiller,Ammertzwiller -32,2015-09-15,COM,08145,0,DOUZY,Douzy,Douzy,COM,08145,0,DOUZY,Douzy,Douzy -32,2015-09-15,COM,08145,0,DOUZY,Douzy,Douzy,COMD,08145,0,DOUZY,Douzy,Douzy -32,2015-09-15,COM,08267,0,MAIRY,Mairy,Mairy,COMD,08267,0,MAIRY,Mairy,Mairy -32,2015-09-15,COM,08267,0,MAIRY,Mairy,Mairy,COM,08145,0,DOUZY,Douzy,Douzy +32,2015-09-15,COM,8145,0,DOUZY,Douzy,Douzy,COMD,8145,0,DOUZY,Douzy,Douzy +32,2015-09-15,COM,8145,0,DOUZY,Douzy,Douzy,COM,8145,0,DOUZY,Douzy,Douzy +32,2015-09-15,COM,8267,0,MAIRY,Mairy,Mairy,COM,8145,0,DOUZY,Douzy,Douzy +32,2015-09-15,COM,8267,0,MAIRY,Mairy,Mairy,COMD,8267,0,MAIRY,Mairy,Mairy 10,2015-09-01,COM,38348,0,RUY,Ruy,Ruy,COM,38348,0,RUY MONTCEAU,Ruy-Montceau,Ruy-Montceau 34,2015-09-01,COMA,68003,1,ALTENBACH,Altenbach,Altenbach,COM,68106,0,GOLDBACH ALTENBACH,Goldbach-Altenbach,Goldbach-Altenbach 34,2015-09-01,COM,68106,0,GOLDBACH ALTENBACH,Goldbach-Altenbach,Goldbach-Altenbach,COM,68106,0,GOLDBACH ALTENBACH,Goldbach-Altenbach,Goldbach-Altenbach 34,2015-07-28,COMA,55098,0,CHAMPLON,Champlon,Champlon,COM,55473,0,SAULX LES CHAMPLON,Saulx-lès-Champlon,Saulx-lès-Champlon -34,2015-07-28,COM,55473,0,SAULX LES CHAMPLON,Saulx-lès-Champlon,Saulx-lès-Champlon,COM,55473,0,SAULX LES CHAMPLON,Saulx-lès-Champlon,Saulx-lès-Champlon 34,2015-07-06,COMA,14017,1,ANNEBECQ,Annebecq,Annebecq,COM,14352,0,LANDELLES ET COUPIGNY,Landelles-et-Coupigny,Landelles-et-Coupigny -34,2015-07-06,COM,14352,0,LANDELLES ET COUPIGNY,Landelles-et-Coupigny,Landelles-et-Coupigny,COM,14352,0,LANDELLES ET COUPIGNY,Landelles-et-Coupigny,Landelles-et-Coupigny -34,2015-05-01,COMA,08093,3,CERLEAU,Cerleau,La Cerleau,COM,08344,0,PREZ,Prez,Prez -34,2015-05-01,COM,08344,0,PREZ,Prez,Prez,COM,08344,0,PREZ,Prez,Prez +34,2015-05-01,COMA,8093,3,CERLEAU,Cerleau,La Cerleau,COM,8344,0,PREZ,Prez,Prez +34,2015-05-01,COM,8344,0,PREZ,Prez,Prez,COM,8344,0,PREZ,Prez,Prez 34,2015-04-01,COMA,60607,0,SAUQUEUSE SAINT LUCIEN,Sauqueuse-Saint-Lucien,Sauqueuse-Saint-Lucien,COM,60668,0,VERDEREL LES SAUQUEUSE,Verderel-lès-Sauqueuse,Verderel-lès-Sauqueuse 34,2015-04-01,COM,60668,0,VERDEREL LES SAUQUEUSE,Verderel-lès-Sauqueuse,Verderel-lès-Sauqueuse,COM,60668,0,VERDEREL LES SAUQUEUSE,Verderel-lès-Sauqueuse,Verderel-lès-Sauqueuse -34,2015-02-04,COMD,71138,0,CLUX,Clux,Clux,COM,71578,0,CLUX VILLENEUVE,Clux-Villeneuve,Clux-Villeneuve -34,2015-02-04,COM,71578,0,CLUX VILLENEUVE,Clux-Villeneuve,Clux-Villeneuve,COM,71578,0,CLUX VILLENEUVE,Clux-Villeneuve,Clux-Villeneuve -34,2015-02-04,COMD,71578,3,VILLENEUVE,Villeneuve,La Villeneuve,COM,71578,0,CLUX VILLENEUVE,Clux-Villeneuve,Clux-Villeneuve -34,2015-01-01,COM,01283,1,OYONNAX,Oyonnax,Oyonnax,COM,01283,1,OYONNAX,Oyonnax,Oyonnax -34,2015-01-01,COMA,01440,0,VEYZIAT,Veyziat,Veyziat,COM,01283,1,OYONNAX,Oyonnax,Oyonnax -34,2015-01-01,COMA,09248,0,ROGALLE,Rogalle,Rogalle,COM,09299,0,SOUEIX ROGALLE,Soueix-Rogalle,Soueix-Rogalle -34,2015-01-01,COM,09299,0,SOUEIX ROGALLE,Soueix-Rogalle,Soueix-Rogalle,COM,09299,0,SOUEIX ROGALLE,Soueix-Rogalle,Soueix-Rogalle +35,2015-02-04,COMD,71138,0,CLUX,Clux,Clux,COM,71578,0,CLUX VILLENEUVE,Clux-Villeneuve,Clux-Villeneuve +35,2015-02-04,COMD,71578,3,VILLENEUVE,Villeneuve,La Villeneuve,COM,71578,0,CLUX VILLENEUVE,Clux-Villeneuve,Clux-Villeneuve +34,2015-01-01,COM,1283,1,OYONNAX,Oyonnax,Oyonnax,COM,1283,1,OYONNAX,Oyonnax,Oyonnax +34,2015-01-01,COMA,1440,0,VEYZIAT,Veyziat,Veyziat,COM,1283,1,OYONNAX,Oyonnax,Oyonnax +34,2015-01-01,COMA,9248,0,ROGALLE,Rogalle,Rogalle,COM,9299,0,SOUEIX ROGALLE,Soueix-Rogalle,Soueix-Rogalle +34,2015-01-01,COM,9299,0,SOUEIX ROGALLE,Soueix-Rogalle,Soueix-Rogalle,COM,9299,0,SOUEIX ROGALLE,Soueix-Rogalle,Soueix-Rogalle +32,2015-01-01,COM,14178,0,CORBON,Corbon,Corbon,COMD,14178,0,CORBON,Corbon,Corbon 32,2015-01-01,COM,14178,0,CORBON,Corbon,Corbon,COM,14474,0,NOTRE DAME D ESTREES CORBON,Notre-Dame-d'Estrées-Corbon,Notre-Dame-d'Estrées-Corbon -34,2015-01-01,COM,14474,0,NOTRE DAME D ESTREES CORBON,Notre-Dame-d'Estrées-Corbon,Notre-Dame-d'Estrées-Corbon,COM,14474,0,NOTRE DAME D ESTREES CORBON,Notre-Dame-d'Estrées-Corbon,Notre-Dame-d'Estrées-Corbon +35,2015-01-01,COMD,14178,0,CORBON,Corbon,Corbon,COM,14474,0,NOTRE DAME D ESTREES CORBON,Notre-Dame-d'Estrées-Corbon,Notre-Dame-d'Estrées-Corbon +32,2015-01-01,COM,14474,0,NOTRE DAME D ESTREES,Notre-Dame-d'Estrées,Notre-Dame-d'Estrées,COMD,14474,0,NOTRE DAME D ESTREES,Notre-Dame-d'Estrées,Notre-Dame-d'Estrées 32,2015-01-01,COM,14474,0,NOTRE DAME D ESTREES,Notre-Dame-d'Estrées,Notre-Dame-d'Estrées,COM,14474,0,NOTRE DAME D ESTREES CORBON,Notre-Dame-d'Estrées-Corbon,Notre-Dame-d'Estrées-Corbon +35,2015-01-01,COMD,14474,0,NOTRE DAME D ESTREES,Notre-Dame-d'Estrées,Notre-Dame-d'Estrées,COM,14474,0,NOTRE DAME D ESTREES CORBON,Notre-Dame-d'Estrées-Corbon,Notre-Dame-d'Estrées-Corbon 32,2015-01-01,COM,25034,1,AUXON DESSOUS,Auxon-Dessous,Auxon-Dessous,COMD,25034,1,AUXON DESSOUS,Auxon-Dessous,Auxon-Dessous 32,2015-01-01,COM,25034,1,AUXON DESSOUS,Auxon-Dessous,Auxon-Dessous,COM,25035,4,AUXONS,Auxons,Les Auxons -32,2015-01-01,COM,25035,1,AUXON DESSUS,Auxon-Dessus,Auxon-Dessus,COM,25035,4,AUXONS,Auxons,Les Auxons 32,2015-01-01,COM,25035,1,AUXON DESSUS,Auxon-Dessus,Auxon-Dessus,COMD,25035,1,AUXON DESSUS,Auxon-Dessus,Auxon-Dessus +32,2015-01-01,COM,25035,1,AUXON DESSUS,Auxon-Dessus,Auxon-Dessus,COM,25035,4,AUXONS,Auxons,Les Auxons 32,2015-01-01,COM,28069,0,CHAMPAGNE,Champagne,Champagne,COM,28185,0,GOUSSAINVILLE,Goussainville,Goussainville 32,2015-01-01,COM,28185,0,GOUSSAINVILLE,Goussainville,Goussainville,COM,28185,0,GOUSSAINVILLE,Goussainville,Goussainville 32,2015-01-01,COM,38024,0,BADINIERES,Badinières,Badinières,COM,38152,1,ECLOSE BADINIERES,Eclose-Badinières,Eclose-Badinières 32,2015-01-01,COM,38152,1,ECLOSE,Eclose,Eclose,COM,38152,1,ECLOSE BADINIERES,Eclose-Badinières,Eclose-Badinières 34,2015-01-01,COMA,50424,0,RANCOUDRAY,Rancoudray,Rancoudray,COM,50456,0,SAINT CLEMENT RANCOUDRAY,Saint-Clément-Rancoudray,Saint-Clément-Rancoudray -34,2015-01-01,COM,50456,0,SAINT CLEMENT RANCOUDRAY,Saint-Clément-Rancoudray,Saint-Clément-Rancoudray,COM,50456,0,SAINT CLEMENT RANCOUDRAY,Saint-Clément-Rancoudray,Saint-Clément-Rancoudray 32,2015-01-01,COM,60417,0,MONTHERLANT,Montherlant,Montherlant,COMD,60417,0,MONTHERLANT,Montherlant,Montherlant 32,2015-01-01,COM,60417,0,MONTHERLANT,Montherlant,Montherlant,COM,60570,0,SAINT CREPIN IBOUVILLERS,Saint-Crépin-Ibouvillers,Saint-Crépin-Ibouvillers 32,2015-01-01,COM,60570,0,SAINT CREPIN IBOUVILLERS,Saint-Crépin-Ibouvillers,Saint-Crépin-Ibouvillers,COM,60570,0,SAINT CREPIN IBOUVILLERS,Saint-Crépin-Ibouvillers,Saint-Crépin-Ibouvillers 32,2015-01-01,COM,60570,0,SAINT CREPIN IBOUVILLERS,Saint-Crépin-Ibouvillers,Saint-Crépin-Ibouvillers,COMD,60570,0,SAINT CREPIN IBOUVILLERS,Saint-Crépin-Ibouvillers,Saint-Crépin-Ibouvillers -32,2015-01-01,COM,61031,0,BEAUCHENE,Beauchêne,Beauchêne,COM,61486,0,TINCHEBRAY BOCAGE,Tinchebray-Bocage,Tinchebray-Bocage 32,2015-01-01,COM,61031,0,BEAUCHENE,Beauchêne,Beauchêne,COMD,61031,0,BEAUCHENE,Beauchêne,Beauchêne -32,2015-01-01,COM,61109,0,CLAIREFOUGERE,Clairefougère,Clairefougère,COM,61292,0,MONTSECRET CLAIREFOUGERE,Montsecret-Clairefougère,Montsecret-Clairefougère +32,2015-01-01,COM,61031,0,BEAUCHENE,Beauchêne,Beauchêne,COM,61486,0,TINCHEBRAY BOCAGE,Tinchebray-Bocage,Tinchebray-Bocage 32,2015-01-01,COM,61109,0,CLAIREFOUGERE,Clairefougère,Clairefougère,COMD,61109,0,CLAIREFOUGERE,Clairefougère,Clairefougère -32,2015-01-01,COM,61177,0,FRENES,Frênes,Frênes,COM,61486,0,TINCHEBRAY BOCAGE,Tinchebray-Bocage,Tinchebray-Bocage +32,2015-01-01,COM,61109,0,CLAIREFOUGERE,Clairefougère,Clairefougère,COM,61292,0,MONTSECRET CLAIREFOUGERE,Montsecret-Clairefougère,Montsecret-Clairefougère 32,2015-01-01,COM,61177,0,FRENES,Frênes,Frênes,COMD,61177,0,FRENES,Frênes,Frênes +32,2015-01-01,COM,61177,0,FRENES,Frênes,Frênes,COM,61486,0,TINCHEBRAY BOCAGE,Tinchebray-Bocage,Tinchebray-Bocage 32,2015-01-01,COM,61223,0,LARCHAMP,Larchamp,Larchamp,COMD,61223,0,LARCHAMP,Larchamp,Larchamp 32,2015-01-01,COM,61223,0,LARCHAMP,Larchamp,Larchamp,COM,61486,0,TINCHEBRAY BOCAGE,Tinchebray-Bocage,Tinchebray-Bocage -32,2015-01-01,COM,61249,0,MARCEI,Marcei,Marcei,COM,61375,0,BOISCHAMPRE,Boischampré,Boischampré 32,2015-01-01,COM,61249,0,MARCEI,Marcei,Marcei,COMD,61249,0,MARCEI,Marcei,Marcei +32,2015-01-01,COM,61249,0,MARCEI,Marcei,Marcei,COM,61375,0,BOISCHAMPRE,Boischampré,Boischampré 32,2015-01-01,COM,61292,0,MONTSECRET,Montsecret,Montsecret,COM,61292,0,MONTSECRET CLAIREFOUGERE,Montsecret-Clairefougère,Montsecret-Clairefougère 32,2015-01-01,COM,61292,0,MONTSECRET,Montsecret,Montsecret,COMD,61292,0,MONTSECRET,Montsecret,Montsecret -32,2015-01-01,COM,61375,0,SAINT CHRISTOPHE LE JAJOLET,Saint-Christophe-le-Jajolet,Saint-Christophe-le-Jajolet,COMD,61375,0,SAINT CHRISTOPHE LE JAJOLET,Saint-Christophe-le-Jajolet,Saint-Christophe-le-Jajolet 32,2015-01-01,COM,61375,0,SAINT CHRISTOPHE LE JAJOLET,Saint-Christophe-le-Jajolet,Saint-Christophe-le-Jajolet,COM,61375,0,BOISCHAMPRE,Boischampré,Boischampré -32,2015-01-01,COM,61377,0,SAINT CORNIER DES LANDES,Saint-Cornier-des-Landes,Saint-Cornier-des-Landes,COM,61486,0,TINCHEBRAY BOCAGE,Tinchebray-Bocage,Tinchebray-Bocage +32,2015-01-01,COM,61375,0,SAINT CHRISTOPHE LE JAJOLET,Saint-Christophe-le-Jajolet,Saint-Christophe-le-Jajolet,COMD,61375,0,SAINT CHRISTOPHE LE JAJOLET,Saint-Christophe-le-Jajolet,Saint-Christophe-le-Jajolet 32,2015-01-01,COM,61377,0,SAINT CORNIER DES LANDES,Saint-Cornier-des-Landes,Saint-Cornier-des-Landes,COMD,61377,0,SAINT CORNIER DES LANDES,Saint-Cornier-des-Landes,Saint-Cornier-des-Landes -32,2015-01-01,COM,61410,0,SAINT JEAN DES BOIS,Saint-Jean-des-Bois,Saint-Jean-des-Bois,COM,61486,0,TINCHEBRAY BOCAGE,Tinchebray-Bocage,Tinchebray-Bocage +32,2015-01-01,COM,61377,0,SAINT CORNIER DES LANDES,Saint-Cornier-des-Landes,Saint-Cornier-des-Landes,COM,61486,0,TINCHEBRAY BOCAGE,Tinchebray-Bocage,Tinchebray-Bocage 32,2015-01-01,COM,61410,0,SAINT JEAN DES BOIS,Saint-Jean-des-Bois,Saint-Jean-des-Bois,COMD,61410,0,SAINT JEAN DES BOIS,Saint-Jean-des-Bois,Saint-Jean-des-Bois +32,2015-01-01,COM,61410,0,SAINT JEAN DES BOIS,Saint-Jean-des-Bois,Saint-Jean-des-Bois,COM,61486,0,TINCHEBRAY BOCAGE,Tinchebray-Bocage,Tinchebray-Bocage 32,2015-01-01,COM,61417,0,SAINT LOYER DES CHAMPS,Saint-Loyer-des-Champs,Saint-Loyer-des-Champs,COM,61375,0,BOISCHAMPRE,Boischampré,Boischampré 32,2015-01-01,COM,61417,0,SAINT LOYER DES CHAMPS,Saint-Loyer-des-Champs,Saint-Loyer-des-Champs,COMD,61417,0,SAINT LOYER DES CHAMPS,Saint-Loyer-des-Champs,Saint-Loyer-des-Champs 32,2015-01-01,COM,61486,0,TINCHEBRAY,Tinchebray,Tinchebray,COMD,61486,0,TINCHEBRAY,Tinchebray,Tinchebray @@ -5786,14 +5617,14 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2015-01-01,COM,61513,1,YVRANDES,Yvrandes,Yvrandes,COMD,61513,1,YVRANDES,Yvrandes,Yvrandes 32,2015-01-01,COM,69221,0,SAINT LAURENT DE VAUX,Saint-Laurent-de-Vaux,Saint-Laurent-de-Vaux,COMD,69221,0,SAINT LAURENT DE VAUX,Saint-Laurent-de-Vaux,Saint-Laurent-de-Vaux 32,2015-01-01,COM,69221,0,SAINT LAURENT DE VAUX,Saint-Laurent-de-Vaux,Saint-Laurent-de-Vaux,COM,69255,0,VAUGNERAY,Vaugneray,Vaugneray -32,2015-01-01,COM,69255,0,VAUGNERAY,Vaugneray,Vaugneray,COM,69255,0,VAUGNERAY,Vaugneray,Vaugneray 32,2015-01-01,COM,69255,0,VAUGNERAY,Vaugneray,Vaugneray,COMD,69255,0,VAUGNERAY,Vaugneray,Vaugneray -32,2015-01-01,COM,71138,0,CLUX,Clux,Clux,COM,71578,0,CLUX VILLENEUVE,Clux-Villeneuve,Clux-Villeneuve +32,2015-01-01,COM,69255,0,VAUGNERAY,Vaugneray,Vaugneray,COM,69255,0,VAUGNERAY,Vaugneray,Vaugneray 32,2015-01-01,COM,71138,0,CLUX,Clux,Clux,COMD,71138,0,CLUX,Clux,Clux +32,2015-01-01,COM,71138,0,CLUX,Clux,Clux,COM,71578,0,CLUX VILLENEUVE,Clux-Villeneuve,Clux-Villeneuve 32,2015-01-01,COM,71578,3,VILLENEUVE,Villeneuve,La Villeneuve,COM,71578,0,CLUX VILLENEUVE,Clux-Villeneuve,Clux-Villeneuve 32,2015-01-01,COM,71578,3,VILLENEUVE,Villeneuve,La Villeneuve,COMD,71578,3,VILLENEUVE,Villeneuve,La Villeneuve -32,2015-01-01,COM,72069,0,CHASSE,Chassé,Chassé,COM,72137,0,VILLENEUVE EN PERSEIGNE,Villeneuve-en-Perseigne,Villeneuve-en-Perseigne 32,2015-01-01,COM,72069,0,CHASSE,Chassé,Chassé,COMD,72069,0,CHASSE,Chassé,Chassé +32,2015-01-01,COM,72069,0,CHASSE,Chassé,Chassé,COM,72137,0,VILLENEUVE EN PERSEIGNE,Villeneuve-en-Perseigne,Villeneuve-en-Perseigne 32,2015-01-01,COM,72137,3,FRESNAYE SUR CHEDOUET,Fresnaye-sur-Chédouet,La Fresnaye-sur-Chédouet,COMD,72137,3,FRESNAYE SUR CHEDOUET,Fresnaye-sur-Chédouet,La Fresnaye-sur-Chédouet 32,2015-01-01,COM,72137,3,FRESNAYE SUR CHEDOUET,Fresnaye-sur-Chédouet,La Fresnaye-sur-Chédouet,COM,72137,0,VILLENEUVE EN PERSEIGNE,Villeneuve-en-Perseigne,Villeneuve-en-Perseigne 32,2015-01-01,COM,72162,0,LIGNIERES LA CARELLE,Lignières-la-Carelle,Lignières-la-Carelle,COM,72137,0,VILLENEUVE EN PERSEIGNE,Villeneuve-en-Perseigne,Villeneuve-en-Perseigne @@ -5807,10 +5638,10 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2015-01-01,COM,73263,0,SAINT OFFENGE DESSOUS,Saint-Offenge-Dessous,Saint-Offenge-Dessous,COM,73263,0,SAINT OFFENGE,Saint-Offenge,Saint-Offenge 32,2015-01-01,COM,73264,0,SAINT OFFENGE DESSUS,Saint-Offenge-Dessus,Saint-Offenge-Dessus,COM,73263,0,SAINT OFFENGE,Saint-Offenge,Saint-Offenge 32,2015-01-01,COM,77166,1,ECUELLES,Écuelles,Écuelles,COMD,77166,1,ECUELLES,Écuelles,Écuelles -32,2015-01-01,COM,77166,1,ECUELLES,Écuelles,Écuelles,COM,77316,0,ORVANNE,Orvanne,Orvanne +32,2015-01-01,COM,77166,1,ECUELLES,Écuelles,Écuelles,COM,77316,1,ORVANNE,Orvanne,Orvanne +32,2015-01-01,COM,77316,0,MORET SUR LOING,Moret-sur-Loing,Moret-sur-Loing,COM,77316,1,ORVANNE,Orvanne,Orvanne 32,2015-01-01,COM,77316,0,MORET SUR LOING,Moret-sur-Loing,Moret-sur-Loing,COMD,77316,0,MORET SUR LOING,Moret-sur-Loing,Moret-sur-Loing -32,2015-01-01,COM,77316,0,MORET SUR LOING,Moret-sur-Loing,Moret-sur-Loing,COM,77316,0,ORVANNE,Orvanne,Orvanne -10,2014-12-06,COM,02049,0,BARISIS,Barisis,Barisis,COM,02049,0,BARISIS AUX BOIS,Barisis-aux-Bois,Barisis-aux-Bois +10,2014-12-06,COM,2049,0,BARISIS,Barisis,Barisis,COM,2049,0,BARISIS AUX BOIS,Barisis-aux-Bois,Barisis-aux-Bois 10,2014-12-06,COM,21544,0,SAINTE COLOMBE,Sainte-Colombe,Sainte-Colombe,COM,21544,0,SAINTE COLOMBE EN AUXOIS,Sainte-Colombe-en-Auxois,Sainte-Colombe-en-Auxois 10,2014-12-06,COM,25463,0,PONT DE ROIDE,Pont-de-Roide,Pont-de-Roide,COM,25463,0,PONT DE ROIDE VERMONDANS,Pont-de-Roide-Vermondans,Pont-de-Roide-Vermondans 10,2014-12-06,COM,31129,0,CAZARIL LASPENES,Cazaril-Laspènes,Cazaril-Laspènes,COM,31129,0,CAZARILH LASPENES,Cazarilh-Laspènes,Cazarilh-Laspènes @@ -5820,65 +5651,28 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,2014-12-06,COM,82174,0,SAINT VINCENT,Saint-Vincent,Saint-Vincent,COM,82174,0,SAINT VINCENT D AUTEJAC,Saint-Vincent-d'Autéjac,Saint-Vincent-d'Autéjac 34,2014-10-15,COM,53003,1,AMBRIERES LES VALLEES,Ambrières-les-Vallées,Ambrières-les-Vallées,COM,53003,1,AMBRIERES LES VALLEES,Ambrières-les-Vallées,Ambrières-les-Vallées 34,2014-10-15,COMA,53070,0,CIGNE,Cigné,Cigné,COM,53003,1,AMBRIERES LES VALLEES,Ambrières-les-Vallées,Ambrières-les-Vallées +34,2014-07-25,COMA,57279,0,GUIRLANGE,Guirlange,Guirlange,COM,57252,0,GOMELANGE,Gomelange,Gomelange 34,2014-07-01,COMA,53020,3,BAROCHE GONDOUIN,Baroche-Gondouin,La Baroche-Gondouin,COM,53127,0,LASSAY LES CHATEAUX,Lassay-les-Châteaux,Lassay-les-Châteaux 34,2014-07-01,COM,53127,0,LASSAY LES CHATEAUX,Lassay-les-Châteaux,Lassay-les-Châteaux,COM,53127,0,LASSAY LES CHATEAUX,Lassay-les-Châteaux,Lassay-les-Châteaux 34,2014-07-01,COMA,53149,0,MELLERAY LA VALLEE,Melleray-la-Vallée,Melleray-la-Vallée,COM,53127,0,LASSAY LES CHATEAUX,Lassay-les-Châteaux,Lassay-les-Châteaux 34,2014-07-01,COMA,53166,0,NIORT LA FONTAINE,Niort-la-Fontaine,Niort-la-Fontaine,COM,53127,0,LASSAY LES CHATEAUX,Lassay-les-Châteaux,Lassay-les-Châteaux -34,2014-04-17,COMD,05002,1,AGNIERES EN DEVOLUY,Agnières-en-Dévoluy,Agnières-en-Dévoluy,COM,05139,0,DEVOLUY,Dévoluy,Dévoluy -34,2014-04-17,COMD,05042,3,CLUSE,Cluse,La Cluse,COM,05139,0,DEVOLUY,Dévoluy,Dévoluy -34,2014-04-17,COMD,05138,0,SAINT DISDIER,Saint-Disdier,Saint-Disdier,COM,05139,0,DEVOLUY,Dévoluy,Dévoluy -34,2014-04-17,COM,05139,0,DEVOLUY,Dévoluy,Dévoluy,COM,05139,0,DEVOLUY,Dévoluy,Dévoluy -34,2014-04-17,COMD,05139,0,SAINT ETIENNE EN DEVOLUY,Saint-Étienne-en-Dévoluy,Saint-Étienne-en-Dévoluy,COM,05139,0,DEVOLUY,Dévoluy,Dévoluy -34,2014-04-01,COM,39198,0,DOLE,Dole,Dole,COM,39198,0,DOLE,Dole,Dole -34,2014-04-01,COM,39198,0,DOLE,Dole,Dole,COMD,39256,0,GOUX,Goux,Goux -34,2014-04-01,COMA,39256,0,GOUX,Goux,Goux,COMD,39256,0,GOUX,Goux,Goux -34,2014-04-01,COMA,39256,0,GOUX,Goux,Goux,COM,39198,0,DOLE,Dole,Dole -34,2014-04-01,COMA,49016,0,BAGNEUX,Bagneux,Bagneux,COMD,49016,0,BAGNEUX,Bagneux,Bagneux -34,2014-04-01,COMA,49016,0,BAGNEUX,Bagneux,Bagneux,COM,49328,0,SAUMUR,Saumur,Saumur -34,2014-04-01,COMA,49118,0,DAMPIERRE SUR LOIRE,Dampierre-sur-Loire,Dampierre-sur-Loire,COMD,49118,0,DAMPIERRE SUR LOIRE,Dampierre-sur-Loire,Dampierre-sur-Loire -34,2014-04-01,COMA,49118,0,DAMPIERRE SUR LOIRE,Dampierre-sur-Loire,Dampierre-sur-Loire,COM,49328,0,SAUMUR,Saumur,Saumur -34,2014-04-01,COMA,49287,0,SAINT HILAIRE SAINT FLORENT,Saint-Hilaire-Saint-Florent,Saint-Hilaire-Saint-Florent,COM,49328,0,SAUMUR,Saumur,Saumur -34,2014-04-01,COMA,49287,0,SAINT HILAIRE SAINT FLORENT,Saint-Hilaire-Saint-Florent,Saint-Hilaire-Saint-Florent,COMD,49287,0,SAINT HILAIRE SAINT FLORENT,Saint-Hilaire-Saint-Florent,Saint-Hilaire-Saint-Florent -34,2014-04-01,COMA,49293,0,SAINT LAMBERT DES LEVEES,Saint-Lambert-des-Levées,Saint-Lambert-des-Levées,COM,49328,0,SAUMUR,Saumur,Saumur -34,2014-04-01,COMA,49293,0,SAINT LAMBERT DES LEVEES,Saint-Lambert-des-Levées,Saint-Lambert-des-Levées,COMD,49293,0,SAINT LAMBERT DES LEVEES,Saint-Lambert-des-Levées,Saint-Lambert-des-Levées -34,2014-04-01,COM,49328,0,SAUMUR,Saumur,Saumur,COM,49328,0,SAUMUR,Saumur,Saumur -34,2014-04-01,COM,49328,0,SAUMUR,Saumur,Saumur,COMD,49118,0,DAMPIERRE SUR LOIRE,Dampierre-sur-Loire,Dampierre-sur-Loire -34,2014-04-01,COM,49328,0,SAUMUR,Saumur,Saumur,COM,49328,0,SAUMUR,Saumur,Saumur -34,2014-04-01,COM,49328,0,SAUMUR,Saumur,Saumur,COMD,49287,0,SAINT HILAIRE SAINT FLORENT,Saint-Hilaire-Saint-Florent,Saint-Hilaire-Saint-Florent -34,2014-04-01,COM,49328,0,SAUMUR,Saumur,Saumur,COM,49328,0,SAUMUR,Saumur,Saumur -34,2014-04-01,COM,49328,0,SAUMUR,Saumur,Saumur,COMD,49016,0,BAGNEUX,Bagneux,Bagneux -34,2014-04-01,COM,49328,0,SAUMUR,Saumur,Saumur,COMD,49293,0,SAINT LAMBERT DES LEVEES,Saint-Lambert-des-Levées,Saint-Lambert-des-Levées -34,2014-04-01,COM,49328,0,SAUMUR,Saumur,Saumur,COM,49328,0,SAUMUR,Saumur,Saumur -34,2014-04-01,COMA,52078,0,BROTTES,Brottes,Brottes,COM,52121,0,CHAUMONT,Chaumont,Chaumont -34,2014-04-01,COMA,52078,0,BROTTES,Brottes,Brottes,COMD,52078,0,BROTTES,Brottes,Brottes -34,2014-04-01,COM,52121,0,CHAUMONT,Chaumont,Chaumont,COMD,52078,0,BROTTES,Brottes,Brottes -34,2014-04-01,COM,52121,0,CHAUMONT,Chaumont,Chaumont,COM,52121,0,CHAUMONT,Chaumont,Chaumont +35,2014-04-17,COMD,5002,1,AGNIERES EN DEVOLUY,Agnières-en-Dévoluy,Agnières-en-Dévoluy,COM,5139,0,DEVOLUY,Dévoluy,Dévoluy +35,2014-04-17,COMD,5042,3,CLUSE,Cluse,La Cluse,COM,5139,0,DEVOLUY,Dévoluy,Dévoluy +35,2014-04-17,COMD,5138,0,SAINT DISDIER,Saint-Disdier,Saint-Disdier,COM,5139,0,DEVOLUY,Dévoluy,Dévoluy +35,2014-04-17,COMD,5139,0,SAINT ETIENNE EN DEVOLUY,Saint-Étienne-en-Dévoluy,Saint-Étienne-en-Dévoluy,COM,5139,0,DEVOLUY,Dévoluy,Dévoluy +70,2014-04-01,COMA,39256,0,GOUX,Goux,Goux,COMD,39256,0,GOUX,Goux,Goux +70,2014-04-01,COMA,49016,0,BAGNEUX,Bagneux,Bagneux,COMD,49016,0,BAGNEUX,Bagneux,Bagneux +70,2014-04-01,COMA,49118,0,DAMPIERRE SUR LOIRE,Dampierre-sur-Loire,Dampierre-sur-Loire,COMD,49118,0,DAMPIERRE SUR LOIRE,Dampierre-sur-Loire,Dampierre-sur-Loire +70,2014-04-01,COMA,49287,0,SAINT HILAIRE SAINT FLORENT,Saint-Hilaire-Saint-Florent,Saint-Hilaire-Saint-Florent,COMD,49287,0,SAINT HILAIRE SAINT FLORENT,Saint-Hilaire-Saint-Florent,Saint-Hilaire-Saint-Florent +70,2014-04-01,COMA,49293,0,SAINT LAMBERT DES LEVEES,Saint-Lambert-des-Levées,Saint-Lambert-des-Levées,COMD,49293,0,SAINT LAMBERT DES LEVEES,Saint-Lambert-des-Levées,Saint-Lambert-des-Levées +70,2014-04-01,COMA,52078,0,BROTTES,Brottes,Brottes,COMD,52078,0,BROTTES,Brottes,Brottes 34,2014-03-21,COMA,64076,1,AUDEJOS,Audéjos,Audéjos,COM,64300,0,LACQ,Lacq,Lacq -34,2014-03-21,COM,64300,0,LACQ,Lacq,Lacq,COM,64300,0,LACQ,Lacq,Lacq 34,2014-03-01,COMA,70139,0,CHATEAU LAMBERT,Château-Lambert,Château-Lambert,COM,70283,0,HAUT DU THEM CHATEAU LAMBERT,Haut-du-Them-Château-Lambert,Haut-du-Them-Château-Lambert -34,2014-03-01,COM,70283,0,HAUT DU THEM CHATEAU LAMBERT,Haut-du-Them-Château-Lambert,Haut-du-Them-Château-Lambert,COM,70283,0,HAUT DU THEM CHATEAU LAMBERT,Haut-du-Them-Château-Lambert,Haut-du-Them-Château-Lambert -50,2014-01-07,COMA,14010,1,AMMEVILLE,Ammeville,Ammeville,COM,14472,5,OUDON,Oudon,L'Oudon -50,2014-01-07,COMA,14010,1,AMMEVILLE,Ammeville,Ammeville,COMA,14010,1,AMMEVILLE,Ammeville,Ammeville -50,2014-01-07,COMA,14067,0,BERVILLE,Berville,Berville,COMA,14067,0,BERVILLE,Berville,Berville -50,2014-01-07,COMA,14067,0,BERVILLE,Berville,Berville,COM,14472,5,OUDON,Oudon,L'Oudon -50,2014-01-07,COMA,14234,1,ECOTS,Écots,Écots,COMA,14234,1,ECOTS,Écots,Écots -50,2014-01-07,COMA,14234,1,ECOTS,Écots,Écots,COM,14472,5,OUDON,Oudon,L'Oudon -50,2014-01-07,COMA,14295,0,GARNETOT,Garnetot,Garnetot,COMA,14295,0,GARNETOT,Garnetot,Garnetot -50,2014-01-07,COMA,14295,0,GARNETOT,Garnetot,Garnetot,COM,14472,5,OUDON,Oudon,L'Oudon -50,2014-01-07,COMA,14314,0,GRANDMESNIL,Grandmesnil,Grandmesnil,COMA,14314,0,GRANDMESNIL,Grandmesnil,Grandmesnil -50,2014-01-07,COMA,14314,0,GRANDMESNIL,Grandmesnil,Grandmesnil,COM,14472,5,OUDON,Oudon,L'Oudon -50,2014-01-07,COMA,14363,0,LIEURY,Lieury,Lieury,COM,14472,5,OUDON,Oudon,L'Oudon -50,2014-01-07,COMA,14363,0,LIEURY,Lieury,Lieury,COMA,14363,0,LIEURY,Lieury,Lieury -50,2014-01-07,COMA,14447,0,MONTPINCON,Montpinçon,Montpinçon,COM,14472,5,OUDON,Oudon,L'Oudon -50,2014-01-07,COMA,14447,0,MONTPINCON,Montpinçon,Montpinçon,COMA,14447,0,MONTPINCON,Montpinçon,Montpinçon -50,2014-01-07,COMA,14472,0,NOTRE DAME DE FRESNAY,Notre-Dame-de-Fresnay,Notre-Dame-de-Fresnay,COM,14472,5,OUDON,Oudon,L'Oudon -50,2014-01-07,COMA,14624,0,SAINT MARTIN DE FRESNAY,Saint-Martin-de-Fresnay,Saint-Martin-de-Fresnay,COM,14472,5,OUDON,Oudon,L'Oudon -50,2014-01-07,COMA,14624,0,SAINT MARTIN DE FRESNAY,Saint-Martin-de-Fresnay,Saint-Martin-de-Fresnay,COMA,14624,0,SAINT MARTIN DE FRESNAY,Saint-Martin-de-Fresnay,Saint-Martin-de-Fresnay -50,2014-01-07,COM,14697,5,OUDON,Oudon,L'Oudon,COMA,14697,0,TOTES,Tôtes,Tôtes +50,2014-01-07,COMA,14472,0,NOTRE DAME DE FRESNAY,Notre-Dame-de-Fresnay,Notre-Dame-de-Fresnay,COMA,14697,0,TOTES,Tôtes,Tôtes 50,2014-01-07,COM,14697,5,OUDON,Oudon,L'Oudon,COM,14472,5,OUDON,Oudon,L'Oudon -34,2014-01-01,COMA,04038,0,CARNIOL,Carniol,Carniol,COM,04208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde -34,2014-01-01,COM,04208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde,COM,04208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde -34,2014-01-01,COMA,04232,0,VALSAINTES,Valsaintes,Valsaintes,COM,04208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde +34,2014-01-01,COMA,4038,0,CARNIOL,Carniol,Carniol,COM,4208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde +34,2014-01-01,COM,4208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde,COM,4208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde +34,2014-01-01,COMA,4232,0,VALSAINTES,Valsaintes,Valsaintes,COM,4208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde 34,2014-01-01,COMA,35043,0,BROONS SUR VILAINE,Broons-sur-Vilaine,Broons-sur-Vilaine,COM,35068,0,CHATEAUBOURG,Châteaubourg,Châteaubourg 34,2014-01-01,COM,35068,0,CHATEAUBOURG,Châteaubourg,Châteaubourg,COM,35068,0,CHATEAUBOURG,Châteaubourg,Châteaubourg 34,2014-01-01,COMA,35298,0,SAINT MELAINE,Saint-Melaine,Saint-Melaine,COM,35068,0,CHATEAUBOURG,Châteaubourg,Châteaubourg @@ -5891,8 +5685,11 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 34,2014-01-01,COMA,71476,0,SAINT ROMAIN DES ILES,Saint-Romain-des-Îles,Saint-Romain-des-Îles,COM,71481,0,SAINT SYMPHORIEN D ANCELLES,Saint-Symphorien-d'Ancelles,Saint-Symphorien-d'Ancelles 34,2014-01-01,COM,71481,0,SAINT SYMPHORIEN D ANCELLES,Saint-Symphorien-d'Ancelles,Saint-Symphorien-d'Ancelles,COM,71481,0,SAINT SYMPHORIEN D ANCELLES,Saint-Symphorien-d'Ancelles,Saint-Symphorien-d'Ancelles 21,2014-01-01,COMD,76095,0,BIHOREL,Bihorel,Bihorel,COM,76095,0,BIHOREL,Bihorel,Bihorel +35,2014-01-01,COMD,76095,0,BIHOREL,Bihorel,Bihorel,COM,76108,0,BOIS GUILLAUME,Bois-Guillaume,Bois-Guillaume 21,2014-01-01,COM,76108,0,BOIS GUILLAUME BIHOREL,Bois-Guillaume-Bihorel,Bois-Guillaume-Bihorel,COM,76095,0,BIHOREL,Bihorel,Bihorel +35,2014-01-01,COMD,76108,0,BOIS GUILLAUME,Bois-Guillaume,Bois-Guillaume,COM,76095,0,BIHOREL,Bihorel,Bihorel 21,2014-01-01,COM,76108,0,BOIS GUILLAUME BIHOREL,Bois-Guillaume-Bihorel,Bois-Guillaume-Bihorel,COM,76108,0,BOIS GUILLAUME,Bois-Guillaume,Bois-Guillaume +21,2014-01-01,COMD,76108,0,BOIS GUILLAUME,Bois-Guillaume,Bois-Guillaume,COM,76108,0,BOIS GUILLAUME,Bois-Guillaume,Bois-Guillaume 34,2014-01-01,COMA,79036,0,BILAZAIS,Bilazais,Bilazais,COM,79196,1,OIRON,Oiron,Oiron 34,2014-01-01,COMA,79169,0,MAULAIS,Maulais,Maulais,COM,79321,0,TAIZE,Taizé,Taizé 34,2014-01-01,COMA,79194,0,NOIZE,Noizé,Noizé,COM,79196,1,OIRON,Oiron,Oiron @@ -5916,54 +5713,114 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 34,2013-11-01,COM,86233,0,VALDIVIENNE,Valdivienne,Valdivienne,COM,86233,0,VALDIVIENNE,Valdivienne,Valdivienne 34,2013-07-01,COM,67122,0,WANGENBOURG ENGENTHAL,Wangenbourg-Engenthal,Wangenbourg-Engenthal,COM,67122,0,WANGENBOURG ENGENTHAL,Wangenbourg-Engenthal,Wangenbourg-Engenthal 34,2013-07-01,COMA,67518,0,WANGENBOURG,Wangenbourg,Wangenbourg,COM,67122,0,WANGENBOURG ENGENTHAL,Wangenbourg-Engenthal,Wangenbourg-Engenthal +70,2013-04-18,COMA,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire,COMD,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire +70,2013-04-18,COMA,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire,COMD,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée +70,2013-04-18,COMA,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire,COMD,79065,0,CHAMBROUTET,Chambroutet,Chambroutet +70,2013-04-18,COMA,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire,COMD,79093,0,CLAZAY,Clazay,Clazay +70,2013-04-18,COMA,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire,COMD,79192,0,NOIRLIEU,Noirlieu,Noirlieu +70,2013-04-18,COMA,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire,COMD,79193,0,NOIRTERRE,Noirterre,Noirterre +70,2013-04-18,COMA,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire,COMD,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur +70,2013-04-18,COMA,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire,COMD,79324,0,TERVES,Terves,Terves +70,2013-04-18,COMA,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée,COMD,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire +70,2013-04-18,COMA,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée,COMD,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée +70,2013-04-18,COMA,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée,COMD,79065,0,CHAMBROUTET,Chambroutet,Chambroutet +70,2013-04-18,COMA,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée,COMD,79093,0,CLAZAY,Clazay,Clazay +70,2013-04-18,COMA,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée,COMD,79192,0,NOIRLIEU,Noirlieu,Noirlieu +70,2013-04-18,COMA,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée,COMD,79193,0,NOIRTERRE,Noirterre,Noirterre +70,2013-04-18,COMA,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée,COMD,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur +70,2013-04-18,COMA,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée,COMD,79324,0,TERVES,Terves,Terves +70,2013-04-18,COMA,79065,0,CHAMBROUTET,Chambroutet,Chambroutet,COMD,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire +70,2013-04-18,COMA,79065,0,CHAMBROUTET,Chambroutet,Chambroutet,COMD,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée +70,2013-04-18,COMA,79065,0,CHAMBROUTET,Chambroutet,Chambroutet,COMD,79065,0,CHAMBROUTET,Chambroutet,Chambroutet +70,2013-04-18,COMA,79065,0,CHAMBROUTET,Chambroutet,Chambroutet,COMD,79093,0,CLAZAY,Clazay,Clazay +70,2013-04-18,COMA,79065,0,CHAMBROUTET,Chambroutet,Chambroutet,COMD,79192,0,NOIRLIEU,Noirlieu,Noirlieu +70,2013-04-18,COMA,79065,0,CHAMBROUTET,Chambroutet,Chambroutet,COMD,79193,0,NOIRTERRE,Noirterre,Noirterre +70,2013-04-18,COMA,79065,0,CHAMBROUTET,Chambroutet,Chambroutet,COMD,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur +70,2013-04-18,COMA,79065,0,CHAMBROUTET,Chambroutet,Chambroutet,COMD,79324,0,TERVES,Terves,Terves +70,2013-04-18,COMA,79093,0,CLAZAY,Clazay,Clazay,COMD,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire +70,2013-04-18,COMA,79093,0,CLAZAY,Clazay,Clazay,COMD,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée +70,2013-04-18,COMA,79093,0,CLAZAY,Clazay,Clazay,COMD,79065,0,CHAMBROUTET,Chambroutet,Chambroutet +70,2013-04-18,COMA,79093,0,CLAZAY,Clazay,Clazay,COMD,79093,0,CLAZAY,Clazay,Clazay +70,2013-04-18,COMA,79093,0,CLAZAY,Clazay,Clazay,COMD,79192,0,NOIRLIEU,Noirlieu,Noirlieu +70,2013-04-18,COMA,79093,0,CLAZAY,Clazay,Clazay,COMD,79193,0,NOIRTERRE,Noirterre,Noirterre +70,2013-04-18,COMA,79093,0,CLAZAY,Clazay,Clazay,COMD,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur +70,2013-04-18,COMA,79093,0,CLAZAY,Clazay,Clazay,COMD,79324,0,TERVES,Terves,Terves +70,2013-04-18,COMA,79192,0,NOIRLIEU,Noirlieu,Noirlieu,COMD,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire +70,2013-04-18,COMA,79192,0,NOIRLIEU,Noirlieu,Noirlieu,COMD,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée +70,2013-04-18,COMA,79192,0,NOIRLIEU,Noirlieu,Noirlieu,COMD,79065,0,CHAMBROUTET,Chambroutet,Chambroutet +70,2013-04-18,COMA,79192,0,NOIRLIEU,Noirlieu,Noirlieu,COMD,79093,0,CLAZAY,Clazay,Clazay +70,2013-04-18,COMA,79192,0,NOIRLIEU,Noirlieu,Noirlieu,COMD,79192,0,NOIRLIEU,Noirlieu,Noirlieu +70,2013-04-18,COMA,79192,0,NOIRLIEU,Noirlieu,Noirlieu,COMD,79193,0,NOIRTERRE,Noirterre,Noirterre +70,2013-04-18,COMA,79192,0,NOIRLIEU,Noirlieu,Noirlieu,COMD,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur +70,2013-04-18,COMA,79192,0,NOIRLIEU,Noirlieu,Noirlieu,COMD,79324,0,TERVES,Terves,Terves +70,2013-04-18,COMA,79193,0,NOIRTERRE,Noirterre,Noirterre,COMD,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire +70,2013-04-18,COMA,79193,0,NOIRTERRE,Noirterre,Noirterre,COMD,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée +70,2013-04-18,COMA,79193,0,NOIRTERRE,Noirterre,Noirterre,COMD,79065,0,CHAMBROUTET,Chambroutet,Chambroutet +70,2013-04-18,COMA,79193,0,NOIRTERRE,Noirterre,Noirterre,COMD,79093,0,CLAZAY,Clazay,Clazay +70,2013-04-18,COMA,79193,0,NOIRTERRE,Noirterre,Noirterre,COMD,79192,0,NOIRLIEU,Noirlieu,Noirlieu +70,2013-04-18,COMA,79193,0,NOIRTERRE,Noirterre,Noirterre,COMD,79193,0,NOIRTERRE,Noirterre,Noirterre +70,2013-04-18,COMA,79193,0,NOIRTERRE,Noirterre,Noirterre,COMD,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur +70,2013-04-18,COMA,79193,0,NOIRTERRE,Noirterre,Noirterre,COMD,79324,0,TERVES,Terves,Terves +70,2013-04-18,COMA,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,COMD,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire +70,2013-04-18,COMA,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,COMD,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée +70,2013-04-18,COMA,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,COMD,79065,0,CHAMBROUTET,Chambroutet,Chambroutet +70,2013-04-18,COMA,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,COMD,79093,0,CLAZAY,Clazay,Clazay +70,2013-04-18,COMA,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,COMD,79192,0,NOIRLIEU,Noirlieu,Noirlieu +70,2013-04-18,COMA,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,COMD,79193,0,NOIRTERRE,Noirterre,Noirterre +70,2013-04-18,COMA,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,COMD,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur +70,2013-04-18,COMA,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,COMD,79324,0,TERVES,Terves,Terves +70,2013-04-18,COMA,79324,0,TERVES,Terves,Terves,COMD,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire +70,2013-04-18,COMA,79324,0,TERVES,Terves,Terves,COMD,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée +70,2013-04-18,COMA,79324,0,TERVES,Terves,Terves,COMD,79065,0,CHAMBROUTET,Chambroutet,Chambroutet +70,2013-04-18,COMA,79324,0,TERVES,Terves,Terves,COMD,79093,0,CLAZAY,Clazay,Clazay +70,2013-04-18,COMA,79324,0,TERVES,Terves,Terves,COMD,79192,0,NOIRLIEU,Noirlieu,Noirlieu +70,2013-04-18,COMA,79324,0,TERVES,Terves,Terves,COMD,79193,0,NOIRTERRE,Noirterre,Noirterre +70,2013-04-18,COMA,79324,0,TERVES,Terves,Terves,COMD,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur +70,2013-04-18,COMA,79324,0,TERVES,Terves,Terves,COMD,79324,0,TERVES,Terves,Terves 34,2013-04-01,COM,57695,0,VARIZE,Varize,Varize,COM,57695,0,VARIZE,Varize,Varize 34,2013-04-01,COMA,57699,0,VAUDONCOURT,Vaudoncourt,Vaudoncourt,COM,57695,0,VARIZE,Varize,Varize 32,2013-02-28,COMA,52046,0,BETTONCOURT LE HAUT,Bettoncourt-le-Haut,Bettoncourt-le-Haut,COM,52187,1,EPIZON,Épizon,Épizon -32,2013-02-28,COM,52187,1,EPIZON,Épizon,Épizon,COMD,52187,1,EPIZON,Épizon,Épizon 32,2013-02-28,COM,52187,1,EPIZON,Épizon,Épizon,COM,52187,1,EPIZON,Épizon,Épizon -32,2013-02-28,COM,52379,0,PAUTAINES AUGEVILLE,Pautaines-Augeville,Pautaines-Augeville,COMD,52379,0,PAUTAINES AUGEVILLE,Pautaines-Augeville,Pautaines-Augeville +32,2013-02-28,COM,52187,1,EPIZON,Épizon,Épizon,COMD,52187,1,EPIZON,Épizon,Épizon 32,2013-02-28,COM,52379,0,PAUTAINES AUGEVILLE,Pautaines-Augeville,Pautaines-Augeville,COM,52187,1,EPIZON,Épizon,Épizon -34,2013-02-26,COMA,04014,1,AUGES,Augès,Augès,COM,04109,0,MALLEFOUGASSE AUGES,Mallefougasse-Augès,Mallefougasse-Augès -34,2013-02-26,COM,04109,0,MALLEFOUGASSE AUGES,Mallefougasse-Augès,Mallefougasse-Augès,COM,04109,0,MALLEFOUGASSE AUGES,Mallefougasse-Augès,Mallefougasse-Augès -34,2013-02-23,COM,57542,0,PIBLANGE,Piblange,Piblange,COM,57542,0,PIBLANGE,Piblange,Piblange +32,2013-02-28,COM,52379,0,PAUTAINES AUGEVILLE,Pautaines-Augeville,Pautaines-Augeville,COMD,52379,0,PAUTAINES AUGEVILLE,Pautaines-Augeville,Pautaines-Augeville +34,2013-02-26,COMA,4014,1,AUGES,Augès,Augès,COM,4109,0,MALLEFOUGASSE AUGES,Mallefougasse-Augès,Mallefougasse-Augès 34,2013-02-23,COMA,57608,0,SAINT BERNARD,Saint-Bernard,Saint-Bernard,COM,57542,0,PIBLANGE,Piblange,Piblange -34,2013-01-07,COMD,88176,0,FONTENOY LE CHATEAU,Fontenoy-le-Château,Fontenoy-le-Château,COM,88176,0,FONTENOY LE CHATEAU,Fontenoy-le-Château,Fontenoy-le-Château -34,2013-01-07,COM,88176,0,FONTENOY LE CHATEAU,Fontenoy-le-Château,Fontenoy-le-Château,COM,88176,0,FONTENOY LE CHATEAU,Fontenoy-le-Château,Fontenoy-le-Château -34,2013-01-07,COMD,88282,2,MAGNY,Magny,Le Magny,COM,88176,0,FONTENOY LE CHATEAU,Fontenoy-le-Château,Fontenoy-le-Château -32,2013-01-01,COM,05002,1,AGNIERES EN DEVOLUY,Agnières-en-Dévoluy,Agnières-en-Dévoluy,COM,05139,0,DEVOLUY,Dévoluy,Dévoluy -32,2013-01-01,COM,05002,1,AGNIERES EN DEVOLUY,Agnières-en-Dévoluy,Agnières-en-Dévoluy,COMD,05002,1,AGNIERES EN DEVOLUY,Agnières-en-Dévoluy,Agnières-en-Dévoluy -32,2013-01-01,COM,05020,0,BENEVENT ET CHARBILLAC,Bénévent-et-Charbillac,Bénévent-et-Charbillac,COMD,05020,0,BENEVENT ET CHARBILLAC,Bénévent-et-Charbillac,Bénévent-et-Charbillac -32,2013-01-01,COM,05020,0,BENEVENT ET CHARBILLAC,Bénévent-et-Charbillac,Bénévent-et-Charbillac,COM,05132,0,SAINT BONNET EN CHAMPSAUR,Saint-Bonnet-en-Champsaur,Saint-Bonnet-en-Champsaur -32,2013-01-01,COM,05042,3,CLUSE,Cluse,La Cluse,COMD,05042,3,CLUSE,Cluse,La Cluse -32,2013-01-01,COM,05042,3,CLUSE,Cluse,La Cluse,COM,05139,0,DEVOLUY,Dévoluy,Dévoluy -32,2013-01-01,COM,05067,4,INFOURNAS,Infournas,Les Infournas,COMD,05067,4,INFOURNAS,Infournas,Les Infournas -32,2013-01-01,COM,05067,4,INFOURNAS,Infournas,Les Infournas,COM,05132,0,SAINT BONNET EN CHAMPSAUR,Saint-Bonnet-en-Champsaur,Saint-Bonnet-en-Champsaur -32,2013-01-01,COM,05132,0,SAINT BONNET EN CHAMPSAUR,Saint-Bonnet-en-Champsaur,Saint-Bonnet-en-Champsaur,COM,05132,0,SAINT BONNET EN CHAMPSAUR,Saint-Bonnet-en-Champsaur,Saint-Bonnet-en-Champsaur -32,2013-01-01,COM,05132,0,SAINT BONNET EN CHAMPSAUR,Saint-Bonnet-en-Champsaur,Saint-Bonnet-en-Champsaur,COMD,05132,0,SAINT BONNET EN CHAMPSAUR,Saint-Bonnet-en-Champsaur,Saint-Bonnet-en-Champsaur -32,2013-01-01,COM,05138,0,SAINT DISDIER,Saint-Disdier,Saint-Disdier,COMD,05138,0,SAINT DISDIER,Saint-Disdier,Saint-Disdier -32,2013-01-01,COM,05138,0,SAINT DISDIER,Saint-Disdier,Saint-Disdier,COM,05139,0,DEVOLUY,Dévoluy,Dévoluy -32,2013-01-01,COM,05139,0,SAINT ETIENNE EN DEVOLUY,Saint-Étienne-en-Dévoluy,Saint-Étienne-en-Dévoluy,COM,05139,0,DEVOLUY,Dévoluy,Dévoluy -32,2013-01-01,COM,05139,0,SAINT ETIENNE EN DEVOLUY,Saint-Étienne-en-Dévoluy,Saint-Étienne-en-Dévoluy,COMD,05139,0,SAINT ETIENNE EN DEVOLUY,Saint-Étienne-en-Dévoluy,Saint-Étienne-en-Dévoluy +35,2013-01-07,COM,88176,0,FONTENOY LE CHATEAU,Fontenoy-le-Château,Fontenoy-le-Château,COM,88176,0,FONTENOY LE CHATEAU,Fontenoy-le-Château,Fontenoy-le-Château +35,2013-01-07,COMD,88176,0,FONTENOY LE CHATEAU,Fontenoy-le-Château,Fontenoy-le-Château,COM,88176,0,FONTENOY LE CHATEAU,Fontenoy-le-Château,Fontenoy-le-Château +35,2013-01-07,COMD,88282,2,MAGNY,Magny,Le Magny,COM,88176,0,FONTENOY LE CHATEAU,Fontenoy-le-Château,Fontenoy-le-Château +32,2013-01-01,COM,5002,1,AGNIERES EN DEVOLUY,Agnières-en-Dévoluy,Agnières-en-Dévoluy,COMD,5002,1,AGNIERES EN DEVOLUY,Agnières-en-Dévoluy,Agnières-en-Dévoluy +32,2013-01-01,COM,5002,1,AGNIERES EN DEVOLUY,Agnières-en-Dévoluy,Agnières-en-Dévoluy,COM,5139,0,DEVOLUY,Dévoluy,Dévoluy +32,2013-01-01,COM,5020,0,BENEVENT ET CHARBILLAC,Bénévent-et-Charbillac,Bénévent-et-Charbillac,COMD,5020,0,BENEVENT ET CHARBILLAC,Bénévent-et-Charbillac,Bénévent-et-Charbillac +32,2013-01-01,COM,5020,0,BENEVENT ET CHARBILLAC,Bénévent-et-Charbillac,Bénévent-et-Charbillac,COM,5132,0,SAINT BONNET EN CHAMPSAUR,Saint-Bonnet-en-Champsaur,Saint-Bonnet-en-Champsaur +32,2013-01-01,COM,5042,3,CLUSE,Cluse,La Cluse,COMD,5042,3,CLUSE,Cluse,La Cluse +32,2013-01-01,COM,5042,3,CLUSE,Cluse,La Cluse,COM,5139,0,DEVOLUY,Dévoluy,Dévoluy +32,2013-01-01,COM,5067,4,INFOURNAS,Infournas,Les Infournas,COMD,5067,4,INFOURNAS,Infournas,Les Infournas +32,2013-01-01,COM,5067,4,INFOURNAS,Infournas,Les Infournas,COM,5132,0,SAINT BONNET EN CHAMPSAUR,Saint-Bonnet-en-Champsaur,Saint-Bonnet-en-Champsaur +32,2013-01-01,COM,5132,0,SAINT BONNET EN CHAMPSAUR,Saint-Bonnet-en-Champsaur,Saint-Bonnet-en-Champsaur,COMD,5132,0,SAINT BONNET EN CHAMPSAUR,Saint-Bonnet-en-Champsaur,Saint-Bonnet-en-Champsaur +32,2013-01-01,COM,5132,0,SAINT BONNET EN CHAMPSAUR,Saint-Bonnet-en-Champsaur,Saint-Bonnet-en-Champsaur,COM,5132,0,SAINT BONNET EN CHAMPSAUR,Saint-Bonnet-en-Champsaur,Saint-Bonnet-en-Champsaur +32,2013-01-01,COM,5138,0,SAINT DISDIER,Saint-Disdier,Saint-Disdier,COMD,5138,0,SAINT DISDIER,Saint-Disdier,Saint-Disdier +32,2013-01-01,COM,5138,0,SAINT DISDIER,Saint-Disdier,Saint-Disdier,COM,5139,0,DEVOLUY,Dévoluy,Dévoluy +32,2013-01-01,COM,5139,0,SAINT ETIENNE EN DEVOLUY,Saint-Étienne-en-Dévoluy,Saint-Étienne-en-Dévoluy,COMD,5139,0,SAINT ETIENNE EN DEVOLUY,Saint-Étienne-en-Dévoluy,Saint-Étienne-en-Dévoluy +32,2013-01-01,COM,5139,0,SAINT ETIENNE EN DEVOLUY,Saint-Étienne-en-Dévoluy,Saint-Étienne-en-Dévoluy,COM,5139,0,DEVOLUY,Dévoluy,Dévoluy 34,2013-01-01,COMA,25080,0,BOUJEONS,Boujeons,Boujeons,COM,25486,0,REMORAY BOUJEONS,Remoray-Boujeons,Remoray-Boujeons -34,2013-01-01,COM,25463,0,PONT DE ROIDE,Pont-de-Roide,Pont-de-Roide,COM,25463,0,PONT DE ROIDE,Pont-de-Roide,Pont-de-Roide -34,2013-01-01,COM,25486,0,REMORAY BOUJEONS,Remoray-Boujeons,Remoray-Boujeons,COM,25486,0,REMORAY BOUJEONS,Remoray-Boujeons,Remoray-Boujeons 34,2013-01-01,COMA,25603,0,VERMONDANS,Vermondans,Vermondans,COM,25463,0,PONT DE ROIDE,Pont-de-Roide,Pont-de-Roide 34,2013-01-01,COMA,42144,0,MOINGT,Moingt,Moingt,COM,42147,0,MONTBRISON,Montbrison,Montbrison 34,2013-01-01,COM,42147,0,MONTBRISON,Montbrison,Montbrison,COM,42147,0,MONTBRISON,Montbrison,Montbrison -32,2013-01-01,COM,49018,0,BAUGE,Baugé,Baugé,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou 32,2013-01-01,COM,49018,0,BAUGE,Baugé,Baugé,COMD,49018,0,BAUGE,Baugé,Baugé -32,2013-01-01,COM,49092,0,CHEMILLE,Chemillé,Chemillé,COM,49092,0,CHEMILLE MELAY,Chemillé-Melay,Chemillé-Melay +32,2013-01-01,COM,49018,0,BAUGE,Baugé,Baugé,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou 32,2013-01-01,COM,49092,0,CHEMILLE,Chemillé,Chemillé,COMD,49092,0,CHEMILLE,Chemillé,Chemillé -32,2013-01-01,COM,49101,0,CLEFS,Clefs,Clefs,COM,49101,0,CLEFS VAL D ANJOU,Clefs-Val d'Anjou,Clefs-Val d'Anjou +32,2013-01-01,COM,49092,0,CHEMILLE,Chemillé,Chemillé,COM,49092,0,CHEMILLE MELAY,Chemillé-Melay,Chemillé-Melay 32,2013-01-01,COM,49101,0,CLEFS,Clefs,Clefs,COMD,49101,0,CLEFS,Clefs,Clefs +32,2013-01-01,COM,49101,0,CLEFS,Clefs,Clefs,COM,49101,0,CLEFS VAL D ANJOU,Clefs-Val d'Anjou,Clefs-Val d'Anjou 32,2013-01-01,COM,49199,0,MELAY,Melay,Melay,COM,49092,0,CHEMILLE MELAY,Chemillé-Melay,Chemillé-Melay 32,2013-01-01,COM,49199,0,MELAY,Melay,Melay,COMD,49199,0,MELAY,Melay,Melay 32,2013-01-01,COM,49213,0,MONTPOLLIN,Montpollin,Montpollin,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou 32,2013-01-01,COM,49213,0,MONTPOLLIN,Montpollin,Montpollin,COMD,49213,0,MONTPOLLIN,Montpollin,Montpollin 32,2013-01-01,COM,49245,0,PONTIGNE,Pontigné,Pontigné,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou 32,2013-01-01,COM,49245,0,PONTIGNE,Pontigné,Pontigné,COMD,49245,0,PONTIGNE,Pontigné,Pontigné -32,2013-01-01,COM,49303,0,SAINT MARTIN D ARCE,Saint-Martin-d'Arcé,Saint-Martin-d'Arcé,COMD,49303,0,SAINT MARTIN D ARCE,Saint-Martin-d'Arcé,Saint-Martin-d'Arcé 32,2013-01-01,COM,49303,0,SAINT MARTIN D ARCE,Saint-Martin-d'Arcé,Saint-Martin-d'Arcé,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou +32,2013-01-01,COM,49303,0,SAINT MARTIN D ARCE,Saint-Martin-d'Arcé,Saint-Martin-d'Arcé,COMD,49303,0,SAINT MARTIN D ARCE,Saint-Martin-d'Arcé,Saint-Martin-d'Arcé 32,2013-01-01,COM,49372,2,VIEIL BAUGE,Vieil-Baugé,Le Vieil-Baugé,COM,49018,0,BAUGE EN ANJOU,Baugé-en-Anjou,Baugé-en-Anjou 32,2013-01-01,COM,49372,2,VIEIL BAUGE,Vieil-Baugé,Le Vieil-Baugé,COMD,49372,2,VIEIL BAUGE,Vieil-Baugé,Le Vieil-Baugé 32,2013-01-01,COM,49380,0,VAULANDRY,Vaulandry,Vaulandry,COM,49101,0,CLEFS VAL D ANJOU,Clefs-Val d'Anjou,Clefs-Val d'Anjou @@ -5972,12 +5829,12 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2013-01-01,COM,69025,0,BOURG DE THIZY,Bourg-de-Thizy,Bourg-de-Thizy,COM,69248,0,THIZY LES BOURGS,Thizy-les-Bourgs,Thizy-les-Bourgs 32,2013-01-01,COM,69041,3,CHAPELLE DE MARDORE,Chapelle-de-Mardore,La Chapelle-de-Mardore,COMD,69041,3,CHAPELLE DE MARDORE,Chapelle-de-Mardore,La Chapelle-de-Mardore 32,2013-01-01,COM,69041,3,CHAPELLE DE MARDORE,Chapelle-de-Mardore,La Chapelle-de-Mardore,COM,69248,0,THIZY LES BOURGS,Thizy-les-Bourgs,Thizy-les-Bourgs -32,2013-01-01,COM,69128,0,MARDORE,Mardore,Mardore,COM,69248,0,THIZY LES BOURGS,Thizy-les-Bourgs,Thizy-les-Bourgs 32,2013-01-01,COM,69128,0,MARDORE,Mardore,Mardore,COMD,69128,0,MARDORE,Mardore,Mardore +32,2013-01-01,COM,69128,0,MARDORE,Mardore,Mardore,COM,69248,0,THIZY LES BOURGS,Thizy-les-Bourgs,Thizy-les-Bourgs 32,2013-01-01,COM,69129,0,MARNAND,Marnand,Marnand,COMD,69129,0,MARNAND,Marnand,Marnand 32,2013-01-01,COM,69129,0,MARNAND,Marnand,Marnand,COM,69248,0,THIZY LES BOURGS,Thizy-les-Bourgs,Thizy-les-Bourgs -32,2013-01-01,COM,69144,0,NUELLES,Nuelles,Nuelles,COM,69208,0,SAINT GERMAIN NUELLES,Saint-Germain-Nuelles,Saint-Germain-Nuelles 32,2013-01-01,COM,69144,0,NUELLES,Nuelles,Nuelles,COMD,69144,0,NUELLES,Nuelles,Nuelles +32,2013-01-01,COM,69144,0,NUELLES,Nuelles,Nuelles,COM,69208,0,SAINT GERMAIN NUELLES,Saint-Germain-Nuelles,Saint-Germain-Nuelles 32,2013-01-01,COM,69208,0,SAINT GERMAIN SUR L ARBRESLE,Saint-Germain-sur-l'Arbresle,Saint-Germain-sur-l'Arbresle,COM,69208,0,SAINT GERMAIN NUELLES,Saint-Germain-Nuelles,Saint-Germain-Nuelles 32,2013-01-01,COM,69208,0,SAINT GERMAIN SUR L ARBRESLE,Saint-Germain-sur-l'Arbresle,Saint-Germain-sur-l'Arbresle,COMD,69208,0,SAINT GERMAIN SUR L ARBRESLE,Saint-Germain-sur-l'Arbresle,Saint-Germain-sur-l'Arbresle 32,2013-01-01,COM,69248,0,THIZY,Thizy,Thizy,COMD,69248,0,THIZY,Thizy,Thizy @@ -5987,7 +5844,16 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 34,2013-01-01,COM,71263,0,LOUHANS,Louhans,Louhans,COM,71263,0,LOUHANS,Louhans,Louhans 34,2013-01-01,COMA,71467,0,SAINT PANTALEON,Saint-Pantaléon,Saint-Pantaléon,COM,71014,1,AUTUN,Autun,Autun 32,2013-01-01,COM,79030,0,BEAUSSAIS,Beaussais,Beaussais,COM,79030,0,BEAUSSAIS VITRE,Beaussais-Vitré,Beaussais-Vitré +70,2013-01-01,COMA,79182,0,MONTIGNY,Montigny,Montigny,COMD,79182,0,MONTIGNY,Montigny,Montigny +70,2013-01-01,COMA,79182,0,MONTIGNY,Montigny,Montigny,COMD,79232,3,RONDE,Ronde,La Ronde +70,2013-01-01,COMA,79182,0,MONTIGNY,Montigny,Montigny,COMD,79272,0,SAINT MARSAULT,Saint-Marsault,Saint-Marsault +70,2013-01-01,COMA,79232,3,RONDE,Ronde,La Ronde,COMD,79182,0,MONTIGNY,Montigny,Montigny +70,2013-01-01,COMA,79232,3,RONDE,Ronde,La Ronde,COMD,79232,3,RONDE,Ronde,La Ronde +70,2013-01-01,COMA,79232,3,RONDE,Ronde,La Ronde,COMD,79272,0,SAINT MARSAULT,Saint-Marsault,Saint-Marsault 32,2013-01-01,COM,79242,0,SAINT CLEMENTIN,Saint-Clémentin,Saint-Clémentin,COM,79242,0,VOULMENTIN,Voulmentin,Voulmentin +70,2013-01-01,COMA,79272,0,SAINT MARSAULT,Saint-Marsault,Saint-Marsault,COMD,79182,0,MONTIGNY,Montigny,Montigny +70,2013-01-01,COMA,79272,0,SAINT MARSAULT,Saint-Marsault,Saint-Marsault,COMD,79232,3,RONDE,Ronde,La Ronde +70,2013-01-01,COMA,79272,0,SAINT MARSAULT,Saint-Marsault,Saint-Marsault,COMD,79272,0,SAINT MARSAULT,Saint-Marsault,Saint-Marsault 32,2013-01-01,COM,79353,0,VITRE,Vitré,Vitré,COM,79030,0,BEAUSSAIS VITRE,Beaussais-Vitré,Beaussais-Vitré 32,2013-01-01,COM,79356,0,VOULTEGON,Voultegon,Voultegon,COM,79242,0,VOULMENTIN,Voulmentin,Voulmentin 32,2013-01-01,COM,88176,0,FONTENOY LE CHATEAU,Fontenoy-le-Château,Fontenoy-le-Château,COM,88176,0,FONTENOY LE CHATEAU,Fontenoy-le-Château,Fontenoy-le-Château @@ -6014,335 +5880,52 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 32,2012-01-01,COM,28361,0,SAINT SYMPHORIEN LE CHATEAU,Saint-Symphorien-le-Château,Saint-Symphorien-le-Château,COM,28361,0,BLEURY SAINT SYMPHORIEN,Bleury-Saint-Symphorien,Bleury-Saint-Symphorien 21,2012-01-01,COM,52031,1,AUTREVILLE SUR LA RENNE,Autreville-sur-la-Renne,Autreville-sur-la-Renne,COM,52031,1,AUTREVILLE SUR LA RENNE,Autreville-sur-la-Renne,Autreville-sur-la-Renne 21,2012-01-01,COM,52031,1,AUTREVILLE SUR LA RENNE,Autreville-sur-la-Renne,Autreville-sur-la-Renne,COM,52278,0,LAVILLENEUVE AU ROI,Lavilleneuve-au-Roi,Lavilleneuve-au-Roi -21,2012-01-01,COM,52031,1,AUTREVILLE SUR LA RENNE,Autreville-sur-la-Renne,Autreville-sur-la-Renne,COMA,52451,0,SAINT MARTIN SUR LA RENNE,Saint-Martin-sur-la-Renne,Saint-Martin-sur-la-Renne -21,2012-01-01,COM,52031,1,AUTREVILLE SUR LA RENNE,Autreville-sur-la-Renne,Autreville-sur-la-Renne,COMA,52501,0,VALDELANCOURT,Valdelancourt,Valdelancourt 21,2012-01-01,COMA,52033,1,AVRECOURT,Avrecourt,Avrecourt,COM,52033,1,AVRECOURT,Avrecourt,Avrecourt +34,2012-01-01,COMA,52033,1,AVRECOURT,Avrecourt,Avrecourt,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse +34,2012-01-01,COMA,52033,1,AVRECOURT,Avrecourt,Avrecourt,COM,52465,0,SAULXURES,Saulxures,Saulxures 34,2012-01-01,COMA,52096,0,CHAMARANDES,Chamarandes,Chamarandes,COM,52125,0,CHAMARANDES CHOIGNES,Chamarandes-Choignes,Chamarandes-Choignes 21,2012-01-01,COMA,52124,0,CHEZEAUX,Chézeaux,Chézeaux,COM,52124,0,CHEZEAUX,Chézeaux,Chézeaux +34,2012-01-01,COMA,52124,0,CHEZEAUX,Chézeaux,Chézeaux,COM,52504,0,VARENNES SUR AMANCE,Varennes-sur-Amance,Varennes-sur-Amance 34,2012-01-01,COM,52125,0,CHAMARANDES CHOIGNES,Chamarandes-Choignes,Chamarandes-Choignes,COM,52125,0,CHAMARANDES CHOIGNES,Chamarandes-Choignes,Chamarandes-Choignes -21,2012-01-01,COMA,52186,1,EPINANT,Épinant,Épinant,COMA,52186,1,EPINANT,Épinant,Épinant 21,2012-01-01,COMA,52266,0,LANEUVILLE A REMY,Laneuville-à-Rémy,Laneuville-à-Rémy,COM,52266,0,LANEUVILLE A REMY,Laneuville-à-Rémy,Laneuville-à-Rémy +34,2012-01-01,COMA,52266,0,LANEUVILLE A REMY,Laneuville-à-Rémy,Laneuville-à-Rémy,COM,52427,0,ROBERT MAGNY,Robert-Magny,Robert-Magny +34,2012-01-01,COMA,52278,0,LAVILLENEUVE AU ROI,Lavilleneuve-au-Roi,Lavilleneuve-au-Roi,COM,52031,1,AUTREVILLE SUR LA RENNE,Autreville-sur-la-Renne,Autreville-sur-la-Renne 21,2012-01-01,COMA,52278,0,LAVILLENEUVE AU ROI,Lavilleneuve-au-Roi,Lavilleneuve-au-Roi,COM,52278,0,LAVILLENEUVE AU ROI,Lavilleneuve-au-Roi,Lavilleneuve-au-Roi -21,2012-01-01,COMA,52281,0,LECOURT,Lécourt,Lécourt,COMA,52281,0,LECOURT,Lécourt,Lécourt -21,2012-01-01,COMA,52283,0,LENIZEUL,Lénizeul,Lénizeul,COMA,52283,0,LENIZEUL,Lénizeul,Lénizeul -21,2012-01-01,COMA,52317,0,MAULAIN,Maulain,Maulain,COMA,52317,0,MAULAIN,Maulain,Maulain -21,2012-01-01,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse,COMA,52281,0,LECOURT,Lécourt,Lécourt -21,2012-01-01,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse,COMA,52186,1,EPINANT,Épinant,Épinant 21,2012-01-01,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse,COM,52033,1,AVRECOURT,Avrecourt,Avrecourt 21,2012-01-01,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse -21,2012-01-01,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse,COMA,52283,0,LENIZEUL,Lénizeul,Lénizeul -21,2012-01-01,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse,COMA,52317,0,MAULAIN,Maulain,Maulain -21,2012-01-01,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse,COMA,52410,0,PROVENCHERES SUR MEUSE,Provenchères-sur-Meuse,Provenchères-sur-Meuse -21,2012-01-01,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse,COMA,52417,0,RAVENNEFONTAINES,Ravennefontaines,Ravennefontaines -21,2012-01-01,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse,COMA,52418,0,RECOURT,Récourt,Récourt 21,2012-01-01,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse,COM,52465,0,SAULXURES,Saulxures,Saulxures -21,2012-01-01,COMA,52410,0,PROVENCHERES SUR MEUSE,Provenchères-sur-Meuse,Provenchères-sur-Meuse,COMA,52410,0,PROVENCHERES SUR MEUSE,Provenchères-sur-Meuse,Provenchères-sur-Meuse -21,2012-01-01,COMA,52417,0,RAVENNEFONTAINES,Ravennefontaines,Ravennefontaines,COMA,52417,0,RAVENNEFONTAINES,Ravennefontaines,Ravennefontaines -21,2012-01-01,COMA,52418,0,RECOURT,Récourt,Récourt,COMA,52418,0,RECOURT,Récourt,Récourt 21,2012-01-01,COM,52427,0,ROBERT MAGNY LANEUVILLE A REMY,Robert-Magny-Laneuville-à-Rémy,Robert-Magny-Laneuville-à-Rémy,COM,52266,0,LANEUVILLE A REMY,Laneuville-à-Rémy,Laneuville-à-Rémy 21,2012-01-01,COM,52427,0,ROBERT MAGNY LANEUVILLE A REMY,Robert-Magny-Laneuville-à-Rémy,Robert-Magny-Laneuville-à-Rémy,COM,52427,0,ROBERT MAGNY,Robert-Magny,Robert-Magny -21,2012-01-01,COMA,52451,0,SAINT MARTIN SUR LA RENNE,Saint-Martin-sur-la-Renne,Saint-Martin-sur-la-Renne,COMA,52451,0,SAINT MARTIN SUR LA RENNE,Saint-Martin-sur-la-Renne,Saint-Martin-sur-la-Renne +34,2012-01-01,COMA,52465,0,SAULXURES,Saulxures,Saulxures,COM,52033,1,AVRECOURT,Avrecourt,Avrecourt +34,2012-01-01,COMA,52465,0,SAULXURES,Saulxures,Saulxures,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse 21,2012-01-01,COMA,52465,0,SAULXURES,Saulxures,Saulxures,COM,52465,0,SAULXURES,Saulxures,Saulxures -21,2012-01-01,COMA,52501,0,VALDELANCOURT,Valdelancourt,Valdelancourt,COMA,52501,0,VALDELANCOURT,Valdelancourt,Valdelancourt -21,2012-01-01,COM,52504,0,TERRE NATALE,Terre-Natale,Terre-Natale,COM,52504,0,VARENNES SUR AMANCE,Varennes-sur-Amance,Varennes-sur-Amance 21,2012-01-01,COM,52504,0,TERRE NATALE,Terre-Natale,Terre-Natale,COM,52124,0,CHEZEAUX,Chézeaux,Chézeaux -32,2012-01-01,COM,76095,0,BIHOREL,Bihorel,Bihorel,COM,76108,0,BOIS GUILLAUME BIHOREL,Bois-Guillaume-Bihorel,Bois-Guillaume-Bihorel +21,2012-01-01,COM,52504,0,TERRE NATALE,Terre-Natale,Terre-Natale,COM,52504,0,VARENNES SUR AMANCE,Varennes-sur-Amance,Varennes-sur-Amance 32,2012-01-01,COM,76095,0,BIHOREL,Bihorel,Bihorel,COMD,76095,0,BIHOREL,Bihorel,Bihorel +32,2012-01-01,COM,76095,0,BIHOREL,Bihorel,Bihorel,COM,76108,0,BOIS GUILLAUME BIHOREL,Bois-Guillaume-Bihorel,Bois-Guillaume-Bihorel 32,2012-01-01,COM,76108,0,BOIS GUILLAUME,Bois-Guillaume,Bois-Guillaume,COMD,76108,0,BOIS GUILLAUME,Bois-Guillaume,Bois-Guillaume 32,2012-01-01,COM,76108,0,BOIS GUILLAUME,Bois-Guillaume,Bois-Guillaume,COM,76108,0,BOIS GUILLAUME BIHOREL,Bois-Guillaume-Bihorel,Bois-Guillaume-Bihorel -50,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97614,1,OUANGANI,Ouangani,Ouangani -50,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji -50,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro -50,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97604,0,BOUENI,Bouéni,Bouéni -50,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua -50,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97603,0,BANDRELE,Bandrele,Bandrele -50,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97617,0,TSINGONI,Tsingoni,Tsingoni -50,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97616,0,SADA,Sada,Sada -50,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli -50,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi -50,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97607,0,DEMBENI,Dembeni,Dembeni -50,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97606,0,CHIRONGUI,Chirongui,Chirongui -50,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97605,0,CHICONI,Chiconi,Chiconi -50,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi -50,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97601,1,ACOUA,Acoua,Acoua -50,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou -50,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97610,0,KOUNGOU,Koungou,Koungou -50,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97603,0,BANDRELE,Bandrele,Bandrele -50,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji -50,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro -50,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou -50,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97616,0,SADA,Sada,Sada -50,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua -50,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97617,0,TSINGONI,Tsingoni,Tsingoni -50,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97610,0,KOUNGOU,Koungou,Koungou -50,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli -50,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi -50,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97601,1,ACOUA,Acoua,Acoua -50,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97607,0,DEMBENI,Dembeni,Dembeni -50,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97606,0,CHIRONGUI,Chirongui,Chirongui -50,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97605,0,CHICONI,Chiconi,Chiconi -50,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi -50,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97604,0,BOUENI,Bouéni,Bouéni -50,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97614,1,OUANGANI,Ouangani,Ouangani -50,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97607,0,DEMBENI,Dembeni,Dembeni -50,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji -50,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97614,1,OUANGANI,Ouangani,Ouangani -50,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi -50,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97616,0,SADA,Sada,Sada -50,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou -50,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97610,0,KOUNGOU,Koungou,Koungou -50,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli -50,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi -50,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro -50,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97606,0,CHIRONGUI,Chirongui,Chirongui -50,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97605,0,CHICONI,Chiconi,Chiconi -50,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97604,0,BOUENI,Bouéni,Bouéni -50,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97603,0,BANDRELE,Bandrele,Bandrele -50,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua -50,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97601,1,ACOUA,Acoua,Acoua -50,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97617,0,TSINGONI,Tsingoni,Tsingoni -50,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji -50,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro -50,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97614,1,OUANGANI,Ouangani,Ouangani -50,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi -50,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97616,0,SADA,Sada,Sada -50,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou -50,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97617,0,TSINGONI,Tsingoni,Tsingoni -50,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97610,0,KOUNGOU,Koungou,Koungou -50,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli -50,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi -50,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97607,0,DEMBENI,Dembeni,Dembeni -50,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97606,0,CHIRONGUI,Chirongui,Chirongui -50,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97605,0,CHICONI,Chiconi,Chiconi -50,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97604,0,BOUENI,Bouéni,Bouéni -50,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97603,0,BANDRELE,Bandrele,Bandrele -50,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua -50,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97601,1,ACOUA,Acoua,Acoua -50,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli -50,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi -50,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97616,0,SADA,Sada,Sada -50,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji -50,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97606,0,CHIRONGUI,Chirongui,Chirongui -50,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro -50,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97607,0,DEMBENI,Dembeni,Dembeni -50,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97617,0,TSINGONI,Tsingoni,Tsingoni -50,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97601,1,ACOUA,Acoua,Acoua -50,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua -50,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97603,0,BANDRELE,Bandrele,Bandrele -50,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97604,0,BOUENI,Bouéni,Bouéni -50,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97605,0,CHICONI,Chiconi,Chiconi -50,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi -50,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou -50,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97610,0,KOUNGOU,Koungou,Koungou -50,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97614,1,OUANGANI,Ouangani,Ouangani -50,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97606,0,CHIRONGUI,Chirongui,Chirongui -50,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97617,0,TSINGONI,Tsingoni,Tsingoni -50,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97616,0,SADA,Sada,Sada -50,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi -50,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97614,1,OUANGANI,Ouangani,Ouangani -50,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji -50,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro -50,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou -50,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97610,0,KOUNGOU,Koungou,Koungou -50,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli -50,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi -50,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97607,0,DEMBENI,Dembeni,Dembeni -50,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97605,0,CHICONI,Chiconi,Chiconi -50,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97604,0,BOUENI,Bouéni,Bouéni -50,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97603,0,BANDRELE,Bandrele,Bandrele -50,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua -50,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97601,1,ACOUA,Acoua,Acoua -50,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi -50,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97601,1,ACOUA,Acoua,Acoua -50,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli -50,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua -50,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97603,0,BANDRELE,Bandrele,Bandrele -50,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97604,0,BOUENI,Bouéni,Bouéni -50,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97605,0,CHICONI,Chiconi,Chiconi -50,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97606,0,CHIRONGUI,Chirongui,Chirongui -50,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97607,0,DEMBENI,Dembeni,Dembeni -50,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97610,0,KOUNGOU,Koungou,Koungou -50,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou -50,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro -50,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji -50,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97614,1,OUANGANI,Ouangani,Ouangani -50,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi -50,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97616,0,SADA,Sada,Sada -50,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97617,0,TSINGONI,Tsingoni,Tsingoni -50,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli -50,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97601,1,ACOUA,Acoua,Acoua -50,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua -50,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97603,0,BANDRELE,Bandrele,Bandrele -50,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97604,0,BOUENI,Bouéni,Bouéni -50,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97605,0,CHICONI,Chiconi,Chiconi -50,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97606,0,CHIRONGUI,Chirongui,Chirongui -50,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97607,0,DEMBENI,Dembeni,Dembeni -50,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97610,0,KOUNGOU,Koungou,Koungou -50,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi -50,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou -50,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro -50,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji -50,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97614,1,OUANGANI,Ouangani,Ouangani -50,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi -50,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97616,0,SADA,Sada,Sada -50,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97617,0,TSINGONI,Tsingoni,Tsingoni -50,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97616,0,SADA,Sada,Sada -50,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97601,1,ACOUA,Acoua,Acoua -50,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua -50,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97603,0,BANDRELE,Bandrele,Bandrele -50,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97604,0,BOUENI,Bouéni,Bouéni -50,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97605,0,CHICONI,Chiconi,Chiconi -50,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97606,0,CHIRONGUI,Chirongui,Chirongui -50,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97607,0,DEMBENI,Dembeni,Dembeni -50,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi -50,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli -50,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97610,0,KOUNGOU,Koungou,Koungou -50,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou -50,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro -50,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji -50,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97614,1,OUANGANI,Ouangani,Ouangani -50,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi -50,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97617,0,TSINGONI,Tsingoni,Tsingoni -50,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97606,0,CHIRONGUI,Chirongui,Chirongui -50,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97605,0,CHICONI,Chiconi,Chiconi -50,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97604,0,BOUENI,Bouéni,Bouéni -50,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97601,1,ACOUA,Acoua,Acoua -50,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli -50,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97610,0,KOUNGOU,Koungou,Koungou -50,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97603,0,BANDRELE,Bandrele,Bandrele -50,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua -50,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou -50,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro -50,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji -50,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97614,1,OUANGANI,Ouangani,Ouangani -50,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi -50,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97616,0,SADA,Sada,Sada -50,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97617,0,TSINGONI,Tsingoni,Tsingoni -50,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97607,0,DEMBENI,Dembeni,Dembeni -50,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi -50,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97616,0,SADA,Sada,Sada -50,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97601,1,ACOUA,Acoua,Acoua -50,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua -50,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97603,0,BANDRELE,Bandrele,Bandrele -50,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97604,0,BOUENI,Bouéni,Bouéni -50,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97617,0,TSINGONI,Tsingoni,Tsingoni -50,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97605,0,CHICONI,Chiconi,Chiconi -50,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97606,0,CHIRONGUI,Chirongui,Chirongui -50,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97607,0,DEMBENI,Dembeni,Dembeni -50,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi -50,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli -50,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97610,0,KOUNGOU,Koungou,Koungou -50,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou -50,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro -50,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji -50,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97614,1,OUANGANI,Ouangani,Ouangani -50,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi -50,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97610,0,KOUNGOU,Koungou,Koungou -50,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97617,0,TSINGONI,Tsingoni,Tsingoni -50,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97616,0,SADA,Sada,Sada -50,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi -50,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97614,1,OUANGANI,Ouangani,Ouangani -50,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji -50,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro -50,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou -50,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli -50,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi -50,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97607,0,DEMBENI,Dembeni,Dembeni -50,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97606,0,CHIRONGUI,Chirongui,Chirongui -50,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97605,0,CHICONI,Chiconi,Chiconi -50,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97604,0,BOUENI,Bouéni,Bouéni -50,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97603,0,BANDRELE,Bandrele,Bandrele -50,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua -50,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97601,1,ACOUA,Acoua,Acoua -50,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97617,0,TSINGONI,Tsingoni,Tsingoni -50,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97601,1,ACOUA,Acoua,Acoua -50,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua -50,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97603,0,BANDRELE,Bandrele,Bandrele -50,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97604,0,BOUENI,Bouéni,Bouéni -50,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97605,0,CHICONI,Chiconi,Chiconi -50,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97606,0,CHIRONGUI,Chirongui,Chirongui -50,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97607,0,DEMBENI,Dembeni,Dembeni -50,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi -50,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli -50,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97610,0,KOUNGOU,Koungou,Koungou -50,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou -50,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro -50,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji -50,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97614,1,OUANGANI,Ouangani,Ouangani -50,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi -50,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97616,0,SADA,Sada,Sada -50,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro -50,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97601,1,ACOUA,Acoua,Acoua -50,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua -50,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97603,0,BANDRELE,Bandrele,Bandrele -50,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97604,0,BOUENI,Bouéni,Bouéni -50,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97617,0,TSINGONI,Tsingoni,Tsingoni -50,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97616,0,SADA,Sada,Sada -50,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi -50,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97614,1,OUANGANI,Ouangani,Ouangani -50,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97605,0,CHICONI,Chiconi,Chiconi -50,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97606,0,CHIRONGUI,Chirongui,Chirongui -50,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97607,0,DEMBENI,Dembeni,Dembeni -50,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi -50,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli -50,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97610,0,KOUNGOU,Koungou,Koungou -50,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou -50,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji -50,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97604,0,BOUENI,Bouéni,Bouéni -50,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97601,1,ACOUA,Acoua,Acoua -50,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua -50,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97603,0,BANDRELE,Bandrele,Bandrele -50,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro -50,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97605,0,CHICONI,Chiconi,Chiconi -50,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97606,0,CHIRONGUI,Chirongui,Chirongui -50,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97607,0,DEMBENI,Dembeni,Dembeni -50,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi -50,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli -50,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97610,0,KOUNGOU,Koungou,Koungou -50,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou -50,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97617,0,TSINGONI,Tsingoni,Tsingoni -50,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97616,0,SADA,Sada,Sada -50,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi -50,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97614,1,OUANGANI,Ouangani,Ouangani -50,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji -50,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97617,0,TSINGONI,Tsingoni,Tsingoni -50,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97616,0,SADA,Sada,Sada -50,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi -50,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97614,1,OUANGANI,Ouangani,Ouangani -50,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji -50,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro -50,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou -50,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97610,0,KOUNGOU,Koungou,Koungou -50,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97605,0,CHICONI,Chiconi,Chiconi -50,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97604,0,BOUENI,Bouéni,Bouéni -50,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli -50,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97601,1,ACOUA,Acoua,Acoua -50,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97603,0,BANDRELE,Bandrele,Bandrele -50,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua -50,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi -50,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97607,0,DEMBENI,Dembeni,Dembeni -50,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97606,0,CHIRONGUI,Chirongui,Chirongui -50,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97601,1,ACOUA,Acoua,Acoua -50,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97614,1,OUANGANI,Ouangani,Ouangani -50,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi -50,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji -50,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97616,0,SADA,Sada,Sada -50,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro -50,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou -50,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97610,0,KOUNGOU,Koungou,Koungou -50,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97617,0,TSINGONI,Tsingoni,Tsingoni -50,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli -50,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi -50,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97607,0,DEMBENI,Dembeni,Dembeni -50,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97606,0,CHIRONGUI,Chirongui,Chirongui -50,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97605,0,CHICONI,Chiconi,Chiconi -50,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97604,0,BOUENI,Bouéni,Bouéni -50,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97603,0,BANDRELE,Bandrele,Bandrele -50,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua -10,2011-03-25,COM,02240,0,CROIX FONSOMMES,Croix-Fonsommes,Croix-Fonsommes,COM,02240,0,CROIX FONSOMME,Croix-Fonsomme,Croix-Fonsomme -10,2011-03-25,COM,02319,0,FONSOMMES,Fonsommes,Fonsommes,COM,02319,0,FONSOMME,Fonsomme,Fonsomme -10,2011-03-25,COM,06128,0,SAINT PAUL,Saint-Paul,Saint-Paul,COM,06128,0,SAINT PAUL DE VENCE,Saint-Paul-de-Vence,Saint-Paul-de-Vence -10,2011-03-25,COM,07259,0,SAINT JUST,Saint-Just,Saint-Just,COM,07259,0,SAINT JUST D ARDECHE,Saint-Just-d'Ardèche,Saint-Just-d'Ardèche +41,2011-03-31,COM,98501,1,ACOUA,Acoua,Acoua,COM,97601,1,ACOUA,Acoua,Acoua +41,2011-03-31,COM,98502,0,BANDRABOUA,Bandraboua,Bandraboua,COM,97602,0,BANDRABOUA,Bandraboua,Bandraboua +41,2011-03-31,COM,98503,0,BANDRELE,Bandrele,Bandrele,COM,97603,0,BANDRELE,Bandrele,Bandrele +41,2011-03-31,COM,98504,0,BOUENI,Bouéni,Bouéni,COM,97604,0,BOUENI,Bouéni,Bouéni +41,2011-03-31,COM,98505,0,CHICONI,Chiconi,Chiconi,COM,97605,0,CHICONI,Chiconi,Chiconi +41,2011-03-31,COM,98506,0,CHIRONGUI,Chirongui,Chirongui,COM,97606,0,CHIRONGUI,Chirongui,Chirongui +41,2011-03-31,COM,98507,0,DEMBENI,Dembeni,Dembeni,COM,97607,0,DEMBENI,Dembeni,Dembeni +41,2011-03-31,COM,98508,0,DZAOUDZI,Dzaoudzi,Dzaoudzi,COM,97608,0,DZAOUDZI,Dzaoudzi,Dzaoudzi +41,2011-03-31,COM,98509,0,KANI KELI,Kani-Kéli,Kani-Kéli,COM,97609,0,KANI KELI,Kani-Kéli,Kani-Kéli +41,2011-03-31,COM,98510,0,KOUNGOU,Koungou,Koungou,COM,97610,0,KOUNGOU,Koungou,Koungou +41,2011-03-31,COM,98511,0,MAMOUDZOU,Mamoudzou,Mamoudzou,COM,97611,0,MAMOUDZOU,Mamoudzou,Mamoudzou +41,2011-03-31,COM,98512,0,MTSAMBORO,Mtsamboro,Mtsamboro,COM,97612,0,MTSAMBORO,Mtsamboro,Mtsamboro +41,2011-03-31,COM,98513,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji,COM,97613,0,M TSANGAMOUJI,M'Tsangamouji,M'Tsangamouji +41,2011-03-31,COM,98514,1,OUANGANI,Ouangani,Ouangani,COM,97614,1,OUANGANI,Ouangani,Ouangani +41,2011-03-31,COM,98515,0,PAMANDZI,Pamandzi,Pamandzi,COM,97615,0,PAMANDZI,Pamandzi,Pamandzi +41,2011-03-31,COM,98516,0,SADA,Sada,Sada,COM,97616,0,SADA,Sada,Sada +41,2011-03-31,COM,98517,0,TSINGONI,Tsingoni,Tsingoni,COM,97617,0,TSINGONI,Tsingoni,Tsingoni +10,2011-03-25,COM,2240,0,CROIX FONSOMMES,Croix-Fonsommes,Croix-Fonsommes,COM,2240,0,CROIX FONSOMME,Croix-Fonsomme,Croix-Fonsomme +10,2011-03-25,COM,2319,0,FONSOMMES,Fonsommes,Fonsommes,COM,2319,0,FONSOMME,Fonsomme,Fonsomme +10,2011-03-25,COM,6128,0,SAINT PAUL,Saint-Paul,Saint-Paul,COM,6128,0,SAINT PAUL DE VENCE,Saint-Paul-de-Vence,Saint-Paul-de-Vence +10,2011-03-25,COM,7259,0,SAINT JUST,Saint-Just,Saint-Just,COM,7259,0,SAINT JUST D ARDECHE,Saint-Just-d'Ardèche,Saint-Just-d'Ardèche 10,2011-03-25,COM,10264,0,NOE LES MALLETS,Noë-les-Mallets,Noë-les-Mallets,COM,10264,0,NOE LES MALLETS,Noé-les-Mallets,Noé-les-Mallets 10,2011-03-25,COM,30249,0,SAINT DIONIZY,Saint-Dionizy,Saint-Dionizy,COM,30249,0,SAINT DIONISY,Saint-Dionisy,Saint-Dionisy 10,2011-03-25,COM,35130,0,HEDE,Hédé,Hédé,COM,35130,0,HEDE BAZOUGES,Hédé-Bazouges,Hédé-Bazouges @@ -6357,17 +5940,14 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 34,2011-01-01,COMA,35020,0,BAZOUGES SOUS HEDE,Bazouges-sous-Hédé,Bazouges-sous-Hédé,COM,35130,0,HEDE,Hédé,Hédé 34,2011-01-01,COM,35130,0,HEDE,Hédé,Hédé,COM,35130,0,HEDE,Hédé,Hédé 34,2011-01-01,COMA,39358,0,MONTMALIN,Montmalin,Montmalin,COM,39479,0,SAINT CYR MONTMALIN,Saint-Cyr-Montmalin,Saint-Cyr-Montmalin -34,2011-01-01,COM,39479,0,SAINT CYR MONTMALIN,Saint-Cyr-Montmalin,Saint-Cyr-Montmalin,COM,39479,0,SAINT CYR MONTMALIN,Saint-Cyr-Montmalin,Saint-Cyr-Montmalin 10,2011-01-01,COM,52376,0,PANCEY,Pancey,Pancey,COM,52376,0,PANSEY,Pansey,Pansey 34,2011-01-01,COM,55094,0,BUZY DARMONT,Buzy-Darmont,Buzy-Darmont,COM,55094,0,BUZY DARMONT,Buzy-Darmont,Buzy-Darmont 34,2011-01-01,COMA,55147,0,DARMONT,Darmont,Darmont,COM,55094,0,BUZY DARMONT,Buzy-Darmont,Buzy-Darmont 33,2010-12-09,COM,59183,0,DUNKERQUE,Dunkerque,Dunkerque,COM,59183,0,DUNKERQUE,Dunkerque,Dunkerque -33,2010-12-09,COM,59248,0,FORT MARDYCK,Fort-Mardyck,Fort-Mardyck,COMA,59248,0,FORT MARDYCK,Fort-Mardyck,Fort-Mardyck 33,2010-12-09,COM,59248,0,FORT MARDYCK,Fort-Mardyck,Fort-Mardyck,COM,59183,0,DUNKERQUE,Dunkerque,Dunkerque -33,2010-12-09,COMA,59380,0,MARDYCK,Mardyck,Mardyck,COMA,59380,0,MARDYCK,Mardyck,Mardyck -33,2010-12-09,COMA,59380,0,MARDYCK,Mardyck,Mardyck,COM,59183,0,DUNKERQUE,Dunkerque,Dunkerque -33,2010-12-09,COM,59540,0,SAINT POL SUR MER,Saint-Pol-sur-Mer,Saint-Pol-sur-Mer,COMA,59540,0,SAINT POL SUR MER,Saint-Pol-sur-Mer,Saint-Pol-sur-Mer +33,2010-12-09,COM,59248,0,FORT MARDYCK,Fort-Mardyck,Fort-Mardyck,COMA,59248,0,FORT MARDYCK,Fort-Mardyck,Fort-Mardyck 33,2010-12-09,COM,59540,0,SAINT POL SUR MER,Saint-Pol-sur-Mer,Saint-Pol-sur-Mer,COM,59183,0,DUNKERQUE,Dunkerque,Dunkerque +33,2010-12-09,COM,59540,0,SAINT POL SUR MER,Saint-Pol-sur-Mer,Saint-Pol-sur-Mer,COMA,59540,0,SAINT POL SUR MER,Saint-Pol-sur-Mer,Saint-Pol-sur-Mer 34,2010-11-01,COM,17013,1,ANTEZANT LA CHAPELLE,Antezant-la-Chapelle,Antezant-la-Chapelle,COM,17013,1,ANTEZANT LA CHAPELLE,Antezant-la-Chapelle,Antezant-la-Chapelle 34,2010-11-01,COMA,17088,3,CHAPELLE BATON,Chapelle-Bâton,La Chapelle-Bâton,COM,17013,1,ANTEZANT LA CHAPELLE,Antezant-la-Chapelle,Antezant-la-Chapelle 10,2010-07-11,COM,17384,0,SAINT PIERRE DE L ILE,Saint-Pierre-de-l'Île,Saint-Pierre-de-l'Île,COM,17384,0,SAINT PIERRE DE L ISLE,Saint-Pierre-de-l'Isle,Saint-Pierre-de-l'Isle @@ -6377,10 +5957,9 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,2010-07-11,COM,95019,1,ARNOUVILLE LES GONESSE,Arnouville-lès-Gonesse,Arnouville-lès-Gonesse,COM,95019,1,ARNOUVILLE,Arnouville,Arnouville 34,2010-06-01,COMA,80309,0,FIEFFES,Fieffes,Fieffes,COM,80566,0,FIEFFES MONTRELET,Fieffes-Montrelet,Fieffes-Montrelet 34,2010-06-01,COM,80566,0,FIEFFES MONTRELET,Fieffes-Montrelet,Fieffes-Montrelet,COM,80566,0,FIEFFES MONTRELET,Fieffes-Montrelet,Fieffes-Montrelet -10,2010-01-01,COM,04040,2,CASTELLARD MELAN,Castellard-Melan,Le Castellard-Melan,COM,04040,2,CASTELLARD MELAN,Castellard-Mélan,Le Castellard-Mélan +10,2010-01-01,COM,4040,2,CASTELLARD MELAN,Castellard-Melan,Le Castellard-Melan,COM,4040,2,CASTELLARD MELAN,Castellard-Mélan,Le Castellard-Mélan 34,2010-01-01,COM,21667,0,VERONNES,Véronnes,Véronnes,COM,21667,0,VERONNES,Véronnes,Véronnes 34,2010-01-01,COMA,21668,0,VERONNES LES PETITES,Véronnes-les-Petites,Véronnes-les-Petites,COM,21667,0,VERONNES,Véronnes,Véronnes -34,2009-07-01,COM,52158,0,CUSEY,Cusey,Cusey,COM,52158,0,CUSEY,Cusey,Cusey 34,2009-07-01,COMA,52382,0,PERCEY SOUS MONTORMENTIER,Percey-sous-Montormentier,Percey-sous-Montormentier,COM,52158,0,CUSEY,Cusey,Cusey 34,2009-07-01,COM,79031,0,BEAUVOIR SUR NIORT,Beauvoir-sur-Niort,Beauvoir-sur-Niort,COM,79031,0,BEAUVOIR SUR NIORT,Beauvoir-sur-Niort,Beauvoir-sur-Niort 34,2009-07-01,COMA,79097,2,CORMENIER,Cormenier,Le Cormenier,COM,79031,0,BEAUVOIR SUR NIORT,Beauvoir-sur-Niort,Beauvoir-sur-Niort @@ -6389,13 +5968,13 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,2009-06-25,COM,62477,1,IZEL LES HAMEAUX,Izel-les-Hameaux,Izel-les-Hameaux,COM,62477,1,IZEL LES HAMEAU,Izel-lès-Hameau,Izel-lès-Hameau 10,2009-06-25,COM,63181,0,JOSERAND,Joserand,Joserand,COM,63181,0,JOZERAND,Jozerand,Jozerand 10,2009-03-22,COM,45265,0,ROSOY LE VIEIL,Rosoy-le-Vieil,Rosoy-le-Vieil,COM,45265,0,ROZOY LE VIEIL,Rozoy-le-Vieil,Rozoy-le-Vieil -10,2009-01-01,COM,02224,0,COURCELLES SUR VESLES,Courcelles-sur-Vesles,Courcelles-sur-Vesles,COM,02224,0,COURCELLES SUR VESLE,Courcelles-sur-Vesle,Courcelles-sur-Vesle +10,2009-01-01,COM,2224,0,COURCELLES SUR VESLES,Courcelles-sur-Vesles,Courcelles-sur-Vesles,COM,2224,0,COURCELLES SUR VESLE,Courcelles-sur-Vesle,Courcelles-sur-Vesle 31,2009-01-01,COM,21084,0,BLESSEY,Blessey,Blessey,COM,21084,0,SOURCE SEINE,Source-Seine,Source-Seine 31,2009-01-01,COM,21551,0,SAINT GERMAIN SOURCE SEINE,Saint-Germain-Source-Seine,Saint-Germain-Source-Seine,COM,21084,0,SOURCE SEINE,Source-Seine,Source-Seine 34,2009-01-01,COMA,60202,0,DRESLINCOURT,Dreslincourt,Dreslincourt,COM,60537,0,RIBECOURT DRESLINCOURT,Ribécourt-Dreslincourt,Ribécourt-Dreslincourt 34,2009-01-01,COM,60537,0,RIBECOURT DRESLINCOURT,Ribécourt-Dreslincourt,Ribécourt-Dreslincourt,COM,60537,0,RIBECOURT DRESLINCOURT,Ribécourt-Dreslincourt,Ribécourt-Dreslincourt -10,2008-10-06,COM,01170,0,GEOVREISSIAT,Géovreissiat,Géovreissiat,COM,01170,0,BEARD GEOVREISSIAT,Béard-Géovreissiat,Béard-Géovreissiat -10,2008-10-06,COM,02419,0,LESCHELLES,Leschelles,Leschelles,COM,02419,0,LESCHELLE,Leschelle,Leschelle +10,2008-10-06,COM,1170,0,GEOVREISSIAT,Géovreissiat,Géovreissiat,COM,1170,0,BEARD GEOVREISSIAT,Béard-Géovreissiat,Béard-Géovreissiat +10,2008-10-06,COM,2419,0,LESCHELLES,Leschelles,Leschelles,COM,2419,0,LESCHELLE,Leschelle,Leschelle 10,2008-10-06,COM,10263,0,NEUVILLE SUR VANNES,Neuville-sur-Vannes,Neuville-sur-Vannes,COM,10263,0,NEUVILLE SUR VANNE,Neuville-sur-Vanne,Neuville-sur-Vanne 10,2008-10-06,COM,27296,0,GRANDCHAIN,Grandchain,Grandchain,COM,27296,0,GRANCHAIN,Granchain,Granchain 10,2008-10-06,COM,53135,0,LIVRE,Livré,Livré,COM,53135,0,LIVRE LA TOUCHE,Livré-la-Touche,Livré-la-Touche @@ -6403,29 +5982,30 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,2008-10-06,COM,59154,0,COUDEKERQUE,Coudekerque,Coudekerque,COM,59154,0,COUDEKERQUE VILLAGE,Coudekerque-Village,Coudekerque-Village 10,2008-10-06,COM,83094,0,PLAN DE LA TOUR,Plan-de-la-Tour,Plan-de-la-Tour,COM,83094,2,PLAN DE LA TOUR,Plan-de-la-Tour,Le Plan-de-la-Tour 34,2008-03-16,COMA,23163,3,ROCHETTE,Rochette,La Rochette,COM,23220,0,SAINT MEDARD LA ROCHETTE,Saint-Médard-la-Rochette,Saint-Médard-la-Rochette -34,2008-03-16,COM,23220,0,SAINT MEDARD LA ROCHETTE,Saint-Médard-la-Rochette,Saint-Médard-la-Rochette,COM,23220,0,SAINT MEDARD LA ROCHETTE,Saint-Médard-la-Rochette,Saint-Médard-la-Rochette 21,2008-02-13,COMA,31300,0,LIEOUX,Lieoux,Lieoux,COM,31300,0,LIEOUX,Lieoux,Lieoux -21,2008-02-13,COM,31483,0,SAINT GAUDENS,Saint-Gaudens,Saint-Gaudens,COM,31483,0,SAINT GAUDENS,Saint-Gaudens,Saint-Gaudens +34,2008-02-13,COMA,31300,0,LIEOUX,Lieoux,Lieoux,COM,31483,0,SAINT GAUDENS,Saint-Gaudens,Saint-Gaudens 21,2008-02-13,COM,31483,0,SAINT GAUDENS,Saint-Gaudens,Saint-Gaudens,COM,31300,0,LIEOUX,Lieoux,Lieoux +21,2008-02-13,COM,31483,0,SAINT GAUDENS,Saint-Gaudens,Saint-Gaudens,COM,31483,0,SAINT GAUDENS,Saint-Gaudens,Saint-Gaudens 21,2008-02-12,COMA,89326,0,ROSOY,Rosoy,Rosoy,COM,89326,0,ROSOY,Rosoy,Rosoy +34,2008-02-12,COMA,89326,0,ROSOY,Rosoy,Rosoy,COM,89387,0,SENS,Sens,Sens 21,2008-02-12,COM,89387,0,SENS,Sens,Sens,COM,89326,0,ROSOY,Rosoy,Rosoy 21,2008-02-12,COM,89387,0,SENS,Sens,Sens,COM,89387,0,SENS,Sens,Sens 34,2008-01-01,COM,25288,0,FOURNETS LUISANS,Fournets-Luisans,Fournets-Luisans,COM,25288,0,FOURNETS LUISANS,Fournets-Luisans,Fournets-Luisans 34,2008-01-01,COMA,25352,0,LUISANS,Luisans,Luisans,COM,25288,0,FOURNETS LUISANS,Fournets-Luisans,Fournets-Luisans -21,2008-01-01,COMA,35020,0,BAZOUGES SOUS HEDE,Bazouges-sous-Hédé,Bazouges-sous-Hédé,COMA,35020,0,BAZOUGES SOUS HEDE,Bazouges-sous-Hédé,Bazouges-sous-Hédé -21,2008-01-01,COM,35130,0,HEDE,Hédé,Hédé,COM,35317,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien -21,2008-01-01,COM,35130,0,HEDE,Hédé,Hédé,COMA,35020,0,BAZOUGES SOUS HEDE,Bazouges-sous-Hédé,Bazouges-sous-Hédé 21,2008-01-01,COM,35130,0,HEDE,Hédé,Hédé,COM,35130,0,HEDE,Hédé,Hédé +21,2008-01-01,COM,35130,0,HEDE,Hédé,Hédé,COM,35317,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien +34,2008-01-01,COMA,35317,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,COM,35130,0,HEDE,Hédé,Hédé 21,2008-01-01,COMA,35317,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,COM,35317,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien 34,2008-01-01,COM,39049,0,BERSAILLIN,Bersaillin,Bersaillin,COM,39049,0,BERSAILLIN,Bersaillin,Bersaillin 34,2008-01-01,COMA,39067,2,BOUCHAUD,Bouchaud,Le Bouchaud,COM,39049,0,BERSAILLIN,Bersaillin,Bersaillin 34,2008-01-01,COMA,39580,2,VISENEY,Viseney,Le Viseney,COM,39049,0,BERSAILLIN,Bersaillin,Bersaillin 34,2008-01-01,COM,42239,0,SAINT JEAN SAINT MAURICE SUR LOIRE,Saint-Jean-Saint-Maurice-sur-Loire,Saint-Jean-Saint-Maurice-sur-Loire,COM,42239,0,SAINT JEAN SAINT MAURICE SUR LOIRE,Saint-Jean-Saint-Maurice-sur-Loire,Saint-Jean-Saint-Maurice-sur-Loire 34,2008-01-01,COMA,42263,0,SAINT MAURICE SUR LOIRE,Saint-Maurice-sur-Loire,Saint-Maurice-sur-Loire,COM,42239,0,SAINT JEAN SAINT MAURICE SUR LOIRE,Saint-Jean-Saint-Maurice-sur-Loire,Saint-Jean-Saint-Maurice-sur-Loire -21,2008-01-01,COM,62119,0,BETHUNE,Béthune,Béthune,COM,62847,0,VERQUIGNEUL,Verquigneul,Verquigneul 21,2008-01-01,COM,62119,0,BETHUNE,Béthune,Béthune,COM,62119,0,BETHUNE,Béthune,Béthune +21,2008-01-01,COM,62119,0,BETHUNE,Béthune,Béthune,COM,62847,0,VERQUIGNEUL,Verquigneul,Verquigneul +34,2008-01-01,COMA,62847,0,VERQUIGNEUL,Verquigneul,Verquigneul,COM,62119,0,BETHUNE,Béthune,Béthune 21,2008-01-01,COMA,62847,0,VERQUIGNEUL,Verquigneul,Verquigneul,COM,62847,0,VERQUIGNEUL,Verquigneul,Verquigneul -10,2007-08-15,COM,01186,1,HOSTIAS,Hostias,Hostias,COM,01186,1,HOSTIAZ,Hostiaz,Hostiaz +10,2007-08-15,COM,1186,1,HOSTIAS,Hostias,Hostias,COM,1186,1,HOSTIAZ,Hostiaz,Hostiaz 10,2007-08-15,COM,19026,0,BILLAC,Billac,Billac,COM,19026,0,BILHAC,Bilhac,Bilhac 10,2007-08-15,COM,59633,0,WALLERS TRELON,Wallers-Trélon,Wallers-Trélon,COM,59633,0,WALLERS EN FAGNE,Wallers-en-Fagne,Wallers-en-Fagne 10,2007-08-15,COM,72033,0,BERNAY,Bernay,Bernay,COM,72033,0,BERNAY EN CHAMPAGNE,Bernay-en-Champagne,Bernay-en-Champagne @@ -6433,20 +6013,19 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 34,2007-07-01,COMA,44177,0,SAINTE MARIE,Sainte-Marie,Sainte-Marie,COM,44131,0,PORNIC,Pornic,Pornic 34,2007-07-01,COM,53160,0,MONTREUIL POULAY,Montreuil-Poulay,Montreuil-Poulay,COM,53160,0,MONTREUIL POULAY,Montreuil-Poulay,Montreuil-Poulay 34,2007-07-01,COMA,53183,0,POULAY,Poulay,Poulay,COM,53160,0,MONTREUIL POULAY,Montreuil-Poulay,Montreuil-Poulay -34,2007-07-01,COM,63103,0,CHATELGUYON,Châtelguyon,Châtelguyon,COM,63103,0,CHATEL GUYON,Châtel-Guyon,Châtel-Guyon -34,2007-07-01,COMA,63361,0,SAINT HIPPOLYTE,Saint-Hippolyte,Saint-Hippolyte,COM,63103,0,CHATEL GUYON,Châtel-Guyon,Châtel-Guyon +10,2007-07-01,COM,63103,0,CHATELGUYON,Châtelguyon,Châtelguyon,COM,63103,0,CHATEL GUYON,Châtel-Guyon,Châtel-Guyon +34,2007-07-01,COMA,63361,0,SAINT HIPPOLYTE,Saint-Hippolyte,Saint-Hippolyte,COM,63103,0,CHATELGUYON,Châtelguyon,Châtelguyon 31,2007-06-29,COM,81107,0,GUITALENS,Guitalens,Guitalens,COM,81132,0,GUITALENS L ALBAREDE,Guitalens-L'Albarède,Guitalens-L'Albarède 31,2007-06-29,COM,81132,0,LALBAREDE,Lalbarède,Lalbarède,COM,81132,0,GUITALENS L ALBAREDE,Guitalens-L'Albarède,Guitalens-L'Albarède -10,2007-04-01,COMA,74113,1,ESERY,Ésery,Ésery,COM,74220,0,REIGNIER ESERY,Reignier-Ésery,Reignier-Ésery 10,2007-04-01,COM,74220,0,REIGNIER,Reignier,Reignier,COM,74220,0,REIGNIER ESERY,Reignier-Ésery,Reignier-Ésery -10,2007-04-01,COM,74220,0,REIGNIER,Reignier,Reignier,COMA,74113,1,ESERY,Ésery,Ésery 31,2007-03-08,COM,50216,0,GRAIGNES,Graignes,Graignes,COM,50216,0,GRAIGNES MESNIL ANGOT,Graignes-Mesnil-Angot,Graignes-Mesnil-Angot 31,2007-03-08,COM,50303,2,MESNIL ANGOT,Mesnil-Angot,Le Mesnil-Angot,COM,50216,0,GRAIGNES MESNIL ANGOT,Graignes-Mesnil-Angot,Graignes-Mesnil-Angot -34,2007-02-01,COM,04040,2,CASTELLARD MELAN,Castellard-Melan,Le Castellard-Melan,COM,04040,2,CASTELLARD MELAN,Castellard-Melan,Le Castellard-Melan -34,2007-02-01,COMA,04117,0,MELAN,Melan,Melan,COM,04040,2,CASTELLARD MELAN,Castellard-Melan,Le Castellard-Melan +34,2007-02-01,COM,4040,2,CASTELLARD MELAN,Castellard-Melan,Le Castellard-Melan,COM,4040,2,CASTELLARD MELAN,Castellard-Melan,Le Castellard-Melan +34,2007-02-01,COMA,4117,0,MELAN,Melan,Melan,COM,4040,2,CASTELLARD MELAN,Castellard-Melan,Le Castellard-Melan 31,2007-01-01,COM,39367,0,MORBIER,Morbier,Morbier,COM,39367,0,MORBIER,Morbier,Morbier 31,2007-01-01,COM,39524,0,TANCUA,Tancua,Tancua,COM,39367,0,MORBIER,Morbier,Morbier 21,2007-01-01,COMA,67057,0,BOSSELSHAUSEN,Bosselshausen,Bosselshausen,COM,67057,0,BOSSELSHAUSEN,Bosselshausen,Bosselshausen +34,2007-01-01,COMA,67057,0,BOSSELSHAUSEN,Bosselshausen,Bosselshausen,COM,67242,0,KIRRWILLER,Kirrwiller,Kirrwiller 21,2007-01-01,COM,67242,0,KIRRWILLER BOSSELSHAUSEN,Kirrwiller-Bosselshausen,Kirrwiller-Bosselshausen,COM,67057,0,BOSSELSHAUSEN,Bosselshausen,Bosselshausen 21,2007-01-01,COM,67242,0,KIRRWILLER BOSSELSHAUSEN,Kirrwiller-Bosselshausen,Kirrwiller-Bosselshausen,COM,67242,0,KIRRWILLER,Kirrwiller,Kirrwiller 31,2007-01-01,COM,80369,0,FROHEN LE GRAND,Frohen-le-Grand,Frohen-le-Grand,COM,80369,0,FROHEN SUR AUTHIE,Frohen-sur-Authie,Frohen-sur-Authie @@ -6456,8 +6035,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,2006-09-01,COM,79013,1,ARGENTON CHATEAU,Argenton-Château,Argenton-Château,COM,79013,1,ARGENTON LES VALLEES,Argenton-les-Vallées,Argenton-les-Vallées 31,2006-09-01,COM,79037,0,BOESSE,Boësse,Boësse,COM,79013,1,ARGENTON LES VALLEES,Argenton-les-Vallées,Argenton-les-Vallées 31,2006-09-01,COM,79305,0,SANZAY,Sanzay,Sanzay,COM,79013,1,ARGENTON LES VALLEES,Argenton-les-Vallées,Argenton-les-Vallées -10,2006-07-09,COM,01077,0,CHALLES,Challes,Challes,COM,01077,0,CHALLES LA MONTAGNE,Challes-la-Montagne,Challes-la-Montagne -10,2006-07-09,COM,02163,0,CHARLY,Charly,Charly,COM,02163,0,CHARLY SUR MARNE,Charly-sur-Marne,Charly-sur-Marne +10,2006-07-09,COM,1077,0,CHALLES,Challes,Challes,COM,1077,0,CHALLES LA MONTAGNE,Challes-la-Montagne,Challes-la-Montagne +10,2006-07-09,COM,2163,0,CHARLY,Charly,Charly,COM,2163,0,CHARLY SUR MARNE,Charly-sur-Marne,Charly-sur-Marne 10,2006-07-09,COM,30195,0,PEYROLES,Peyroles,Peyroles,COM,30195,0,PEYROLLES,Peyrolles,Peyrolles 10,2006-07-09,COM,40145,0,LARRIVIERE,Larrivière,Larrivière,COM,40145,0,LARRIVIERE SAINT SAVIN,Larrivière-Saint-Savin,Larrivière-Saint-Savin 10,2006-07-09,COM,49369,0,VERNOIL,Vernoil,Vernoil,COM,49369,0,VERNOIL LE FOURRIER,Vernoil-le-Fourrier,Vernoil-le-Fourrier @@ -6466,75 +6045,78 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 34,2006-05-01,COM,53062,0,CHATEAU GONTIER,Château-Gontier,Château-Gontier,COM,53062,0,CHATEAU GONTIER,Château-Gontier,Château-Gontier 21,2006-03-01,COM,51136,0,CHATILLON SUR MARNE,Châtillon-sur-Marne,Châtillon-sur-Marne,COM,51136,0,CHATILLON SUR MARNE,Châtillon-sur-Marne,Châtillon-sur-Marne 21,2006-03-01,COM,51136,0,CHATILLON SUR MARNE,Châtillon-sur-Marne,Châtillon-sur-Marne,COM,51201,0,CUISLES,Cuisles,Cuisles +34,2006-03-01,COMA,51201,0,CUISLES,Cuisles,Cuisles,COM,51136,0,CHATILLON SUR MARNE,Châtillon-sur-Marne,Châtillon-sur-Marne 21,2006-03-01,COMA,51201,0,CUISLES,Cuisles,Cuisles,COM,51201,0,CUISLES,Cuisles,Cuisles -21,2006-01-01,COM,14149,0,CESNY AUX VIGNES OUEZY,Cesny-aux-Vignes-Ouézy,Cesny-aux-Vignes-Ouézy,COM,14482,1,OUEZY,Ouézy,Ouézy 21,2006-01-01,COM,14149,0,CESNY AUX VIGNES OUEZY,Cesny-aux-Vignes-Ouézy,Cesny-aux-Vignes-Ouézy,COM,14149,0,CESNY AUX VIGNES,Cesny-aux-Vignes,Cesny-aux-Vignes +21,2006-01-01,COM,14149,0,CESNY AUX VIGNES OUEZY,Cesny-aux-Vignes-Ouézy,Cesny-aux-Vignes-Ouézy,COM,14482,1,OUEZY,Ouézy,Ouézy +34,2006-01-01,COMA,14482,1,OUEZY,Ouézy,Ouézy,COM,14149,0,CESNY AUX VIGNES,Cesny-aux-Vignes,Cesny-aux-Vignes 21,2006-01-01,COMA,14482,1,OUEZY,Ouézy,Ouézy,COM,14482,1,OUEZY,Ouézy,Ouézy 34,2006-01-01,COM,19034,0,CAMPS SAINT MATHURIN LEOBAZEL,Camps-Saint-Mathurin-Léobazel,Camps-Saint-Mathurin-Léobazel,COM,19034,0,CAMPS SAINT MATHURIN LEOBAZEL,Camps-Saint-Mathurin-Léobazel,Camps-Saint-Mathurin-Léobazel 34,2006-01-01,COMA,19224,0,SAINT MATHURIN LEOBAZEL,Saint-Mathurin-Léobazel,Saint-Mathurin-Léobazel,COM,19034,0,CAMPS SAINT MATHURIN LEOBAZEL,Camps-Saint-Mathurin-Léobazel,Camps-Saint-Mathurin-Léobazel 34,2006-01-01,COMA,39231,0,FONTENY,Fonteny,Fonteny,COM,39436,0,PONT D HERY,Pont-d'Héry,Pont-d'Héry 34,2006-01-01,COMA,39374,0,MOUTAINE,Moutaine,Moutaine,COM,39436,0,PONT D HERY,Pont-d'Héry,Pont-d'Héry 34,2006-01-01,COM,39436,0,PONT D HERY,Pont-d'Héry,Pont-d'Héry,COM,39436,0,PONT D HERY,Pont-d'Héry,Pont-d'Héry -10,2005-09-16,COM,04176,0,SAINTE CROIX DE VERDON,Sainte-Croix-de-Verdon,Sainte-Croix-de-Verdon,COM,04176,0,SAINTE CROIX DU VERDON,Sainte-Croix-du-Verdon,Sainte-Croix-du-Verdon +10,2005-09-16,COM,4176,0,SAINTE CROIX DE VERDON,Sainte-Croix-de-Verdon,Sainte-Croix-de-Verdon,COM,4176,0,SAINTE CROIX DU VERDON,Sainte-Croix-du-Verdon,Sainte-Croix-du-Verdon 10,2005-09-16,COM,12133,0,LUC,Luc,Luc,COM,12133,0,LUC LA PRIMAUBE,Luc-la-Primaube,Luc-la-Primaube 10,2005-09-16,COM,21306,0,GRENAND LES SOMBERNON,Grenand-lès-Sombernon,Grenand-lès-Sombernon,COM,21306,0,GRENANT LES SOMBERNON,Grenant-lès-Sombernon,Grenant-lès-Sombernon 10,2005-09-16,COM,29272,0,SAINT YVY,Saint-Yvy,Saint-Yvy,COM,29272,0,SAINT YVI,Saint-Yvi,Saint-Yvi 10,2005-09-16,COM,31492,0,SAINT JULIEN,Saint-Julien,Saint-Julien,COM,31492,0,SAINT JULIEN SUR GARONNE,Saint-Julien-sur-Garonne,Saint-Julien-sur-Garonne 10,2005-09-16,COM,38216,0,MALLEVAL,Malleval,Malleval,COM,38216,0,MALLEVAL EN VERCORS,Malleval-en-Vercors,Malleval-en-Vercors 10,2005-09-16,COM,57073,0,BETTING LES SAINT AVOLD,Betting-lès-Saint-Avold,Betting-lès-Saint-Avold,COM,57073,0,BETTING,Betting,Betting -34,2005-07-01,COMA,74017,1,ARCINE,Arcine,Arcine,COM,74077,0,CLARAFOND ARCINE,Clarafond-Arcine,Clarafond-Arcine -34,2005-07-01,COM,74077,0,CLARAFOND,Clarafond,Clarafond,COM,74077,0,CLARAFOND ARCINE,Clarafond-Arcine,Clarafond-Arcine +34,2005-07-01,COMA,74017,1,ARCINE,Arcine,Arcine,COM,74077,0,CLARAFOND,Clarafond,Clarafond +10,2005-07-01,COM,74077,0,CLARAFOND,Clarafond,Clarafond,COM,74077,0,CLARAFOND ARCINE,Clarafond-Arcine,Clarafond-Arcine 10,2005-01-01,COM,35090,0,CREVIN,Crévin,Crévin,COM,35090,0,CREVIN,Crevin,Crevin 21,2005-01-01,COM,52359,0,NULLY TREMILLY,Nully-Trémilly,Nully-Trémilly,COM,52359,0,NULLY,Nully,Nully 21,2005-01-01,COM,52359,0,NULLY TREMILLY,Nully-Trémilly,Nully-Trémilly,COM,52495,0,TREMILLY,Trémilly,Trémilly +34,2005-01-01,COMA,52495,0,TREMILLY,Trémilly,Trémilly,COM,52359,0,NULLY,Nully,Nully 21,2005-01-01,COMA,52495,0,TREMILLY,Trémilly,Trémilly,COM,52495,0,TREMILLY,Trémilly,Trémilly 34,2005-01-01,COM,78193,0,DAMPIERRE EN YVELINES,Dampierre-en-Yvelines,Dampierre-en-Yvelines,COM,78193,0,DAMPIERRE EN YVELINES,Dampierre-en-Yvelines,Dampierre-en-Yvelines 34,2005-01-01,COMA,78357,0,MAINCOURT SUR YVETTE,Maincourt-sur-Yvette,Maincourt-sur-Yvette,COM,78193,0,DAMPIERRE EN YVELINES,Dampierre-en-Yvelines,Dampierre-en-Yvelines -34,2004-12-24,COM,07270,0,SAINT MARTIN SUR LAVEZON,Saint-Martin-sur-Lavezon,Saint-Martin-sur-Lavezon,COM,07270,0,SAINT MARTIN SUR LAVEZON,Saint-Martin-sur-Lavezon,Saint-Martin-sur-Lavezon -34,2004-12-24,COMA,07271,0,SAINT MARTIN L INFERIEUR,Saint-Martin-l'Inférieur,Saint-Martin-l'Inférieur,COM,07270,0,SAINT MARTIN SUR LAVEZON,Saint-Martin-sur-Lavezon,Saint-Martin-sur-Lavezon +34,2004-12-24,COMA,7271,0,SAINT MARTIN L INFERIEUR,Saint-Martin-l'Inférieur,Saint-Martin-l'Inférieur,COM,7270,0,SAINT MARTIN SUR LAVEZON,Saint-Martin-sur-Lavezon,Saint-Martin-sur-Lavezon 21,2004-10-01,COM,22179,0,FREHEL,Fréhel,Fréhel,COM,22179,0,FREHEL,Fréhel,Fréhel 21,2004-10-01,COM,22179,0,FREHEL,Fréhel,Fréhel,COM,22201,0,PLEVENON,Plévenon,Plévenon +34,2004-10-01,COMA,22201,0,PLEVENON,Plévenon,Plévenon,COM,22179,0,FREHEL,Fréhel,Fréhel 21,2004-10-01,COMA,22201,0,PLEVENON,Plévenon,Plévenon,COM,22201,0,PLEVENON,Plévenon,Plévenon 10,2004-08-30,COM,14106,0,BREVILLE,Bréville,Bréville,COM,14106,0,BREVILLE LES MONTS,Bréville-les-Monts,Bréville-les-Monts 10,2004-08-30,COM,60456,0,LANEUVILLEROY,Laneuvilleroy,Laneuvilleroy,COM,60456,3,NEUVILLE ROY,Neuville-Roy,La Neuville-Roy 10,2004-08-30,COM,60485,1,OURCEL MAISON,Ourcel-Maison,Ourcel-Maison,COM,60485,1,OURSEL MAISON,Oursel-Maison,Oursel-Maison -34,2004-05-01,COM,25036,1,AVANNE AVENEY,Avanne-Aveney,Avanne-Aveney,COM,25036,1,AVANNE AVENEY,Avanne-Aveney,Avanne-Aveney 34,2004-05-01,COMA,25037,1,AVENEY,Aveney,Aveney,COM,25036,1,AVANNE AVENEY,Avanne-Aveney,Avanne-Aveney 34,2004-01-01,COMA,17014,1,ANTIGNAC,Antignac,Antignac,COM,17332,0,SAINT GEORGES ANTIGNAC,Saint-Georges-Antignac,Saint-Georges-Antignac 34,2004-01-01,COM,17332,0,SAINT GEORGES ANTIGNAC,Saint-Georges-Antignac,Saint-Georges-Antignac,COM,17332,0,SAINT GEORGES ANTIGNAC,Saint-Georges-Antignac,Saint-Georges-Antignac 10,2004-01-01,COM,26192,0,MONTBRISON,Montbrison,Montbrison,COM,26192,0,MONTBRISON SUR LEZ,Montbrison-sur-Lez,Montbrison-sur-Lez 21,2004-01-01,COMA,55068,0,BRABANT EN ARGONNE,Brabant-en-Argonne,Brabant-en-Argonne,COM,55068,0,BRABANT EN ARGONNE,Brabant-en-Argonne,Brabant-en-Argonne +34,2004-01-01,COMA,55068,0,BRABANT EN ARGONNE,Brabant-en-Argonne,Brabant-en-Argonne,COM,55082,0,BROCOURT EN ARGONNE,Brocourt-en-Argonne,Brocourt-en-Argonne +34,2004-01-01,COMA,55068,0,BRABANT EN ARGONNE,Brabant-en-Argonne,Brabant-en-Argonne,COM,55419,0,RECICOURT,Récicourt,Récicourt +34,2004-01-01,COMA,55082,0,BROCOURT EN ARGONNE,Brocourt-en-Argonne,Brocourt-en-Argonne,COM,55068,0,BRABANT EN ARGONNE,Brabant-en-Argonne,Brabant-en-Argonne 21,2004-01-01,COMA,55082,0,BROCOURT EN ARGONNE,Brocourt-en-Argonne,Brocourt-en-Argonne,COM,55082,0,BROCOURT EN ARGONNE,Brocourt-en-Argonne,Brocourt-en-Argonne -21,2004-01-01,COM,55419,0,RECICOURT,Récicourt,Récicourt,COM,55082,0,BROCOURT EN ARGONNE,Brocourt-en-Argonne,Brocourt-en-Argonne +34,2004-01-01,COMA,55082,0,BROCOURT EN ARGONNE,Brocourt-en-Argonne,Brocourt-en-Argonne,COM,55419,0,RECICOURT,Récicourt,Récicourt 21,2004-01-01,COM,55419,0,RECICOURT,Récicourt,Récicourt,COM,55068,0,BRABANT EN ARGONNE,Brabant-en-Argonne,Brabant-en-Argonne +21,2004-01-01,COM,55419,0,RECICOURT,Récicourt,Récicourt,COM,55082,0,BROCOURT EN ARGONNE,Brocourt-en-Argonne,Brocourt-en-Argonne 21,2004-01-01,COM,55419,0,RECICOURT,Récicourt,Récicourt,COM,55419,0,RECICOURT,Récicourt,Récicourt -34,2004-01-01,COM,79031,0,BEAUVOIR SUR NIORT,Beauvoir-sur-Niort,Beauvoir-sur-Niort,COMA,79097,2,CORMENIER,Cormenier,Le Cormenier 34,2004-01-01,COM,79031,0,BEAUVOIR SUR NIORT,Beauvoir-sur-Niort,Beauvoir-sur-Niort,COM,79031,0,BEAUVOIR SUR NIORT,Beauvoir-sur-Niort,Beauvoir-sur-Niort -34,2004-01-01,COMA,79097,2,CORMENIER,Cormenier,Le Cormenier,COMA,79097,2,CORMENIER,Cormenier,Le Cormenier -34,2004-01-01,COMA,79097,2,CORMENIER,Cormenier,Le Cormenier,COM,79031,0,BEAUVOIR SUR NIORT,Beauvoir-sur-Niort,Beauvoir-sur-Niort 34,2004-01-01,COMA,79227,3,REVETIZON,Revêtizon,La Revêtizon,COM,79031,0,BEAUVOIR SUR NIORT,Beauvoir-sur-Niort,Beauvoir-sur-Niort -21,2003-12-31,COMA,89047,0,BLIGNY EN OTHE,Bligny-en-Othe,Bligny-en-Othe,COMA,89047,0,BLIGNY EN OTHE,Bligny-en-Othe,Bligny-en-Othe 21,2003-12-31,COM,89055,0,BRIENON SUR ARMANCON,Brienon-sur-Armançon,Brienon-sur-Armançon,COM,89055,0,BRIENON SUR ARMANCON,Brienon-sur-Armançon,Brienon-sur-Armançon -21,2003-12-31,COM,89055,0,BRIENON SUR ARMANCON,Brienon-sur-Armançon,Brienon-sur-Armançon,COMA,89047,0,BLIGNY EN OTHE,Bligny-en-Othe,Bligny-en-Othe 21,2003-12-31,COM,89055,0,BRIENON SUR ARMANCON,Brienon-sur-Armançon,Brienon-sur-Armançon,COM,89288,0,PAROY EN OTHE,Paroy-en-Othe,Paroy-en-Othe +34,2003-12-31,COMA,89288,0,PAROY EN OTHE,Paroy-en-Othe,Paroy-en-Othe,COM,89055,0,BRIENON SUR ARMANCON,Brienon-sur-Armançon,Brienon-sur-Armançon 21,2003-12-31,COMA,89288,0,PAROY EN OTHE,Paroy-en-Othe,Paroy-en-Othe,COM,89288,0,PAROY EN OTHE,Paroy-en-Othe,Paroy-en-Othe 10,2003-08-07,COM,21526,0,ROCHEFORT,Rochefort,Rochefort,COM,21526,0,ROCHEFORT SUR BREVON,Rochefort-sur-Brévon,Rochefort-sur-Brévon 10,2003-08-07,COM,31479,0,SAINT FERREOL,Saint-Ferréol,Saint-Ferréol,COM,31479,0,SAINT FERREOL DE COMMINGES,Saint-Ferréol-de-Comminges,Saint-Ferréol-de-Comminges 10,2003-08-07,COM,65024,1,ARGELES,Argelès,Argelès,COM,65024,1,ARGELES BAGNERES,Argelès-Bagnères,Argelès-Bagnères 10,2003-08-07,COM,67098,0,DINSHEIM,Dinsheim,Dinsheim,COM,67098,0,DINSHEIM SUR BRUCHE,Dinsheim-sur-Bruche,Dinsheim-sur-Bruche -21,2003-02-03,COM,47157,0,MARMANDE,Marmande,Marmande,COM,47163,0,MAUVEZIN SUR GUPIE,Mauvezin-sur-Gupie,Mauvezin-sur-Gupie 21,2003-02-03,COM,47157,0,MARMANDE,Marmande,Marmande,COM,47157,0,MARMANDE,Marmande,Marmande +21,2003-02-03,COM,47157,0,MARMANDE,Marmande,Marmande,COM,47163,0,MAUVEZIN SUR GUPIE,Mauvezin-sur-Gupie,Mauvezin-sur-Gupie +34,2003-02-03,COMA,47163,0,MAUVEZIN SUR GUPIE,Mauvezin-sur-Gupie,Mauvezin-sur-Gupie,COM,47157,0,MARMANDE,Marmande,Marmande 21,2003-02-03,COMA,47163,0,MAUVEZIN SUR GUPIE,Mauvezin-sur-Gupie,Mauvezin-sur-Gupie,COM,47163,0,MAUVEZIN SUR GUPIE,Mauvezin-sur-Gupie,Mauvezin-sur-Gupie -34,2003-02-01,COM,09107,0,DUN,Dun,Dun,COM,09107,0,DUN,Dun,Dun -34,2003-02-01,COMA,09112,1,ENGRAVIES,Engraviès,Engraviès,COM,09107,0,DUN,Dun,Dun -34,2003-02-01,COMA,09191,0,MERVIEL,Merviel,Merviel,COM,09107,0,DUN,Dun,Dun -34,2003-02-01,COMA,09288,0,SENESSE DE SENABUGUE,Senesse-de-Senabugue,Senesse-de-Senabugue,COM,09107,0,DUN,Dun,Dun +34,2003-02-01,COM,9107,0,DUN,Dun,Dun,COM,9107,0,DUN,Dun,Dun +34,2003-02-01,COMA,9112,1,ENGRAVIES,Engraviès,Engraviès,COM,9107,0,DUN,Dun,Dun +34,2003-02-01,COMA,9191,0,MERVIEL,Merviel,Merviel,COM,9107,0,DUN,Dun,Dun +34,2003-02-01,COMA,9288,0,SENESSE DE SENABUGUE,Senesse-de-Senabugue,Senesse-de-Senabugue,COM,9107,0,DUN,Dun,Dun 31,2003-01-01,COM,71211,0,GEANGES,Géanges,Géanges,COM,71443,0,SAINT LOUP GEANGES,Saint-Loup-Géanges,Saint-Loup-Géanges 31,2003-01-01,COM,71443,0,SAINT LOUP DE LA SALLE,Saint-Loup-de-la-Salle,Saint-Loup-de-la-Salle,COM,71443,0,SAINT LOUP GEANGES,Saint-Loup-Géanges,Saint-Loup-Géanges -34,2002-09-01,COMA,07021,1,AURIOLLES,Auriolles,Auriolles,COM,07207,0,SAINT ALBAN AURIOLLES,Saint-Alban-Auriolles,Saint-Alban-Auriolles -34,2002-09-01,COM,07207,0,SAINT ALBAN AURIOLLES,Saint-Alban-Auriolles,Saint-Alban-Auriolles,COM,07207,0,SAINT ALBAN AURIOLLES,Saint-Alban-Auriolles,Saint-Alban-Auriolles -10,2002-04-14,COM,07279,0,SAINT MONTANT,Saint-Montant,Saint-Montant,COM,07279,0,SAINT MONTAN,Saint-Montan,Saint-Montan -10,2002-04-14,COM,08386,0,SAINT LOUP CHAMPAGNE,Saint-Loup-Champagne,Saint-Loup-Champagne,COM,08386,0,SAINT LOUP EN CHAMPAGNE,Saint-Loup-en-Champagne,Saint-Loup-en-Champagne +34,2002-09-01,COMA,7021,1,AURIOLLES,Auriolles,Auriolles,COM,7207,0,SAINT ALBAN AURIOLLES,Saint-Alban-Auriolles,Saint-Alban-Auriolles +34,2002-09-01,COM,7207,0,SAINT ALBAN AURIOLLES,Saint-Alban-Auriolles,Saint-Alban-Auriolles,COM,7207,0,SAINT ALBAN AURIOLLES,Saint-Alban-Auriolles,Saint-Alban-Auriolles +10,2002-04-14,COM,7279,0,SAINT MONTANT,Saint-Montant,Saint-Montant,COM,7279,0,SAINT MONTAN,Saint-Montan,Saint-Montan +10,2002-04-14,COM,8386,0,SAINT LOUP CHAMPAGNE,Saint-Loup-Champagne,Saint-Loup-Champagne,COM,8386,0,SAINT LOUP EN CHAMPAGNE,Saint-Loup-en-Champagne,Saint-Loup-en-Champagne 10,2002-04-14,COM,24026,0,BASSILAC,Bassilac,Bassilac,COM,24026,0,BASSILLAC,Bassillac,Bassillac 10,2002-04-14,COM,29186,0,PLOUEZOCH,Plouézoch,Plouézoch,COM,29186,0,PLOUEZOC H,Plouezoc'h,Plouezoc'h 10,2002-04-14,COM,41230,0,SAINT SULPICE,Saint-Sulpice,Saint-Sulpice,COM,41230,0,SAINT SULPICE DE POMMERAY,Saint-Sulpice-de-Pommeray,Saint-Sulpice-de-Pommeray @@ -6550,22 +6132,29 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,2002-01-01,COM,61254,0,MARNEFER,Marnefer,Marnefer,COM,61136,0,COUVAINS,Couvains,Couvains 21,2001-03-22,COM,47010,1,ANTAGNAC,Antagnac,Antagnac,COM,47010,1,ANTAGNAC,Antagnac,Antagnac 21,2001-03-22,COM,47010,1,ANTAGNAC,Antagnac,Antagnac,COM,47227,0,RUFFIAC,Ruffiac,Ruffiac +34,2001-03-22,COMA,47227,0,RUFFIAC,Ruffiac,Ruffiac,COM,47010,1,ANTAGNAC,Antagnac,Antagnac 21,2001-03-22,COMA,47227,0,RUFFIAC,Ruffiac,Ruffiac,COM,47227,0,RUFFIAC,Ruffiac,Ruffiac +21,2001-03-11,COM,64269,1,IDRON OUSSE SENDETS,Idron-Ousse-Sendets,Idron-Ousse-Sendets,COM,64269,1,IDRON,Idron,Idron 21,2001-03-11,COM,64269,1,IDRON OUSSE SENDETS,Idron-Ousse-Sendets,Idron-Ousse-Sendets,COM,64439,1,OUSSE,Ousse,Ousse 21,2001-03-11,COM,64269,1,IDRON OUSSE SENDETS,Idron-Ousse-Sendets,Idron-Ousse-Sendets,COM,64518,0,SENDETS,Sendets,Sendets -21,2001-03-11,COM,64269,1,IDRON OUSSE SENDETS,Idron-Ousse-Sendets,Idron-Ousse-Sendets,COM,64269,1,IDRON,Idron,Idron +34,2001-03-11,COMA,64439,1,OUSSE,Ousse,Ousse,COM,64269,1,IDRON,Idron,Idron 21,2001-03-11,COMA,64439,1,OUSSE,Ousse,Ousse,COM,64439,1,OUSSE,Ousse,Ousse +34,2001-03-11,COMA,64439,1,OUSSE,Ousse,Ousse,COM,64518,0,SENDETS,Sendets,Sendets +34,2001-03-11,COMA,64518,0,SENDETS,Sendets,Sendets,COM,64269,1,IDRON,Idron,Idron +34,2001-03-11,COMA,64518,0,SENDETS,Sendets,Sendets,COM,64439,1,OUSSE,Ousse,Ousse 21,2001-03-11,COMA,64518,0,SENDETS,Sendets,Sendets,COM,64518,0,SENDETS,Sendets,Sendets 21,2001-03-11,COMA,71353,0,PLOTTES,Plottes,Plottes,COM,71353,0,PLOTTES,Plottes,Plottes -21,2001-03-11,COM,71543,0,TOURNUS,Tournus,Tournus,COM,71543,0,TOURNUS,Tournus,Tournus +34,2001-03-11,COMA,71353,0,PLOTTES,Plottes,Plottes,COM,71543,0,TOURNUS,Tournus,Tournus 21,2001-03-11,COM,71543,0,TOURNUS,Tournus,Tournus,COM,71353,0,PLOTTES,Plottes,Plottes +21,2001-03-11,COM,71543,0,TOURNUS,Tournus,Tournus,COM,71543,0,TOURNUS,Tournus,Tournus 31,2001-03-11,COM,79017,4,AUBIERS,Aubiers,Les Aubiers,COM,79195,0,NUEIL LES AUBIERS,Nueil-les-Aubiers,Nueil-les-Aubiers 31,2001-03-11,COM,79195,0,NUEIL SUR ARGENT,Nueil-sur-Argent,Nueil-sur-Argent,COM,79195,0,NUEIL LES AUBIERS,Nueil-les-Aubiers,Nueil-les-Aubiers 21,2001-02-19,COMA,74106,0,DRAILLANT,Draillant,Draillant,COM,74106,0,DRAILLANT,Draillant,Draillant -21,2001-02-19,COM,74210,0,PERRIGNIER,Perrignier,Perrignier,COM,74210,0,PERRIGNIER,Perrignier,Perrignier +34,2001-02-19,COMA,74106,0,DRAILLANT,Draillant,Draillant,COM,74210,0,PERRIGNIER,Perrignier,Perrignier 21,2001-02-19,COM,74210,0,PERRIGNIER,Perrignier,Perrignier,COM,74106,0,DRAILLANT,Draillant,Draillant -10,2001-02-04,COM,05014,0,BARRET LE BAS,Barret-le-Bas,Barret-le-Bas,COM,05014,0,BARRET SUR MEOUGE,Barret-sur-Méouge,Barret-sur-Méouge -10,2001-02-04,COM,06114,0,SAINT ANDRE,Saint-André,Saint-André,COM,06114,0,SAINT ANDRE DE LA ROCHE,Saint-André-de-la-Roche,Saint-André-de-la-Roche +21,2001-02-19,COM,74210,0,PERRIGNIER,Perrignier,Perrignier,COM,74210,0,PERRIGNIER,Perrignier,Perrignier +10,2001-02-04,COM,5014,0,BARRET LE BAS,Barret-le-Bas,Barret-le-Bas,COM,5014,0,BARRET SUR MEOUGE,Barret-sur-Méouge,Barret-sur-Méouge +10,2001-02-04,COM,6114,0,SAINT ANDRE,Saint-André,Saint-André,COM,6114,0,SAINT ANDRE DE LA ROCHE,Saint-André-de-la-Roche,Saint-André-de-la-Roche 10,2001-02-04,COM,24028,0,BEAUMONT,Beaumont,Beaumont,COM,24028,0,BEAUMONT DU PERIGORD,Beaumont-du-Périgord,Beaumont-du-Périgord 10,2001-02-04,COM,29145,0,MEILARS,Meilars,Meilars,COM,29145,0,CONFORT MEILARS,Confort-Meilars,Confort-Meilars 10,2001-02-04,COM,29165,0,PLOBANNALEC,Plobannalec,Plobannalec,COM,29165,0,PLOBANNALEC LESCONIL,Plobannalec-Lesconil,Plobannalec-Lesconil @@ -6576,8 +6165,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,2001-02-04,COM,45145,0,FERRIERES,Ferrières,Ferrières,COM,45145,0,FERRIERES EN GATINAIS,Ferrières-en-Gâtinais,Ferrières-en-Gâtinais 10,2001-02-04,COM,58248,0,SAINT LAURENT,Saint-Laurent,Saint-Laurent,COM,58248,0,SAINT LAURENT L ABBAYE,Saint-Laurent-l'Abbaye,Saint-Laurent-l'Abbaye 10,2001-02-04,COM,79328,0,THORIGNY,Thorigny,Thorigny,COM,79328,0,THORIGNY SUR LE MIGNON,Thorigny-sur-le-Mignon,Thorigny-sur-le-Mignon -10,2001-01-01,COM,07006,1,ALBON,Albon,Albon,COM,07006,1,ALBON D ARDECHE,Albon-d'Ardèche,Albon-d'Ardèche -10,2001-01-01,COM,07083,0,DUNIERES SUR EYRIEUX,Dunières-sur-Eyrieux,Dunières-sur-Eyrieux,COM,07083,0,DUNIERE SUR EYRIEUX,Dunière-sur-Eyrieux,Dunière-sur-Eyrieux +10,2001-01-01,COM,7006,1,ALBON,Albon,Albon,COM,7006,1,ALBON D ARDECHE,Albon-d'Ardèche,Albon-d'Ardèche +10,2001-01-01,COM,7083,0,DUNIERES SUR EYRIEUX,Dunières-sur-Eyrieux,Dunières-sur-Eyrieux,COM,7083,0,DUNIERE SUR EYRIEUX,Dunière-sur-Eyrieux,Dunière-sur-Eyrieux 10,2001-01-01,COM,21381,0,MARCILLY LES VITTEAUX,Marcilly-lès-Vitteaux,Marcilly-lès-Vitteaux,COM,21381,0,MARCILLY ET DRACY,Marcilly-et-Dracy,Marcilly-et-Dracy 10,2001-01-01,COM,24516,0,SALIGNAC EYVIGNES,Salignac-Eyvignes,Salignac-Eyvignes,COM,24516,0,SALIGNAC EYVIGUES,Salignac-Eyvigues,Salignac-Eyvigues 10,2001-01-01,COM,2A215,0,PIANOTOLLI CALDARELLO,Pianotolli-Caldarello,Pianotolli-Caldarello,COM,2A215,0,PIANOTTOLI CALDARELLO,Pianottoli-Caldarello,Pianottoli-Caldarello @@ -6590,28 +6179,26 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,2000-02-29,COM,49210,0,MONTIGNE SUR MOINE,Montigné-sur-Moine,Montigné-sur-Moine,COM,49206,0,MONTFAUCON MONTIGNE,Montfaucon-Montigné,Montfaucon-Montigné 31,2000-02-28,COM,50129,0,CHERBOURG,Cherbourg,Cherbourg,COM,50129,0,CHERBOURG OCTEVILLE,Cherbourg-Octeville,Cherbourg-Octeville 31,2000-02-28,COM,50383,1,OCTEVILLE,Octeville,Octeville,COM,50129,0,CHERBOURG OCTEVILLE,Cherbourg-Octeville,Cherbourg-Octeville -33,2000-02-27,COMA,59298,1,HELLEMMES LILLE,Hellemmes-Lille,Hellemmes-Lille,COMA,59298,1,HELLEMMES LILLE,Hellemmes-Lille,Hellemmes-Lille -33,2000-02-27,COMA,59298,1,HELLEMMES LILLE,Hellemmes-Lille,Hellemmes-Lille,COM,59350,0,LILLE,Lille,Lille 33,2000-02-27,COM,59350,0,LILLE,Lille,Lille,COM,59350,0,LILLE,Lille,Lille -33,2000-02-27,COM,59355,0,LOMME,Lomme,Lomme,COMA,59355,0,LOMME,Lomme,Lomme 33,2000-02-27,COM,59355,0,LOMME,Lomme,Lomme,COM,59350,0,LILLE,Lille,Lille -34,2000-01-01,COMA,01048,0,BOHAS,Bohas,Bohas,COM,01245,0,BOHAS MEYRIAT RIGNAT,Bohas-Meyriat-Rignat,Bohas-Meyriat-Rignat -34,2000-01-01,COM,01245,0,BOHAS MEYRIAT RIGNAT,Bohas-Meyriat-Rignat,Bohas-Meyriat-Rignat,COMA,01324,0,RIGNAT,Rignat,Rignat -34,2000-01-01,COM,01245,0,BOHAS MEYRIAT RIGNAT,Bohas-Meyriat-Rignat,Bohas-Meyriat-Rignat,COM,01245,0,BOHAS MEYRIAT RIGNAT,Bohas-Meyriat-Rignat,Bohas-Meyriat-Rignat -34,2000-01-01,COMA,01324,0,RIGNAT,Rignat,Rignat,COM,01245,0,BOHAS MEYRIAT RIGNAT,Bohas-Meyriat-Rignat,Bohas-Meyriat-Rignat -34,2000-01-01,COMA,01324,0,RIGNAT,Rignat,Rignat,COMA,01324,0,RIGNAT,Rignat,Rignat +33,2000-02-27,COM,59355,0,LOMME,Lomme,Lomme,COMA,59355,0,LOMME,Lomme,Lomme +34,2000-01-01,COMA,1048,0,BOHAS,Bohas,Bohas,COM,1245,0,BOHAS MEYRIAT RIGNAT,Bohas-Meyriat-Rignat,Bohas-Meyriat-Rignat +34,2000-01-01,COM,1245,0,BOHAS MEYRIAT RIGNAT,Bohas-Meyriat-Rignat,Bohas-Meyriat-Rignat,COM,1245,0,BOHAS MEYRIAT RIGNAT,Bohas-Meyriat-Rignat,Bohas-Meyriat-Rignat 21,2000-01-01,COMA,10038,0,BERCENAY LE HAYER,Bercenay-le-Hayer,Bercenay-le-Hayer,COM,10038,0,BERCENAY LE HAYER,Bercenay-le-Hayer,Bercenay-le-Hayer +34,2000-01-01,COMA,10038,0,BERCENAY LE HAYER,Bercenay-le-Hayer,Bercenay-le-Hayer,COM,10054,0,BOURDENAY,Bourdenay,Bourdenay +34,2000-01-01,COMA,10038,0,BERCENAY LE HAYER,Bercenay-le-Hayer,Bercenay-le-Hayer,COM,10383,0,TRANCAULT,Trancault,Trancault 21,2000-01-01,COM,10054,0,VAL D ORVIN,Val-d'Orvin,Val-d'Orvin,COM,10038,0,BERCENAY LE HAYER,Bercenay-le-Hayer,Bercenay-le-Hayer -21,2000-01-01,COM,10054,0,VAL D ORVIN,Val-d'Orvin,Val-d'Orvin,COM,10383,0,TRANCAULT,Trancault,Trancault 21,2000-01-01,COM,10054,0,VAL D ORVIN,Val-d'Orvin,Val-d'Orvin,COM,10054,0,BOURDENAY,Bourdenay,Bourdenay +21,2000-01-01,COM,10054,0,VAL D ORVIN,Val-d'Orvin,Val-d'Orvin,COM,10383,0,TRANCAULT,Trancault,Trancault +34,2000-01-01,COMA,10383,0,TRANCAULT,Trancault,Trancault,COM,10038,0,BERCENAY LE HAYER,Bercenay-le-Hayer,Bercenay-le-Hayer +34,2000-01-01,COMA,10383,0,TRANCAULT,Trancault,Trancault,COM,10054,0,BOURDENAY,Bourdenay,Bourdenay 21,2000-01-01,COMA,10383,0,TRANCAULT,Trancault,Trancault,COM,10383,0,TRANCAULT,Trancault,Trancault 34,2000-01-01,COMA,14133,0,CANON,Canon,Canon,COM,14431,0,MEZIDON CANON,Mézidon-Canon,Mézidon-Canon 34,2000-01-01,COM,14431,0,MEZIDON CANON,Mézidon-Canon,Mézidon-Canon,COM,14431,0,MEZIDON CANON,Mézidon-Canon,Mézidon-Canon -21,2000-01-01,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville,COMA,50526,0,SAINT MICHEL DES LOUPS,Saint-Michel-des-Loups,Saint-Michel-des-Loups 21,2000-01-01,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville 21,2000-01-01,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville,COM,50102,0,CAROLLES,Carolles,Carolles +34,2000-01-01,COMA,50102,0,CAROLLES,Carolles,Carolles,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville 21,2000-01-01,COMA,50102,0,CAROLLES,Carolles,Carolles,COM,50102,0,CAROLLES,Carolles,Carolles -21,2000-01-01,COMA,50526,0,SAINT MICHEL DES LOUPS,Saint-Michel-des-Loups,Saint-Michel-des-Loups,COMA,50526,0,SAINT MICHEL DES LOUPS,Saint-Michel-des-Loups,Saint-Michel-des-Loups 34,2000-01-01,COM,53103,2,GENEST SAINT ISLE,Genest-Saint-Isle,Le Genest-Saint-Isle,COM,53103,2,GENEST SAINT ISLE,Genest-Saint-Isle,Le Genest-Saint-Isle 34,2000-01-01,COMA,53227,0,SAINT ISLE,Saint-Isle,Saint-Isle,COM,53103,2,GENEST SAINT ISLE,Genest-Saint-Isle,Le Genest-Saint-Isle 10,2000-01-01,COM,55118,0,CLERY GRAND,Cléry-Grand,Cléry-Grand,COM,55118,0,CLERY LE GRAND,Cléry-le-Grand,Cléry-le-Grand @@ -6628,10 +6215,6 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1999-12-29,COM,22391,1,YVIGNAC,Yvignac,Yvignac,COM,22391,1,YVIGNAC LA TOUR,Yvignac-la-Tour,Yvignac-la-Tour 10,1999-12-29,COM,39238,0,FRASNE,Frasne,Frasne,COM,39238,0,FRASNE LES MEULIERES,Frasne-les-Meulières,Frasne-les-Meulières 10,1999-12-29,COM,51599,0,VAUDEMANGES,Vaudemanges,Vaudemanges,COM,51599,0,VAUDEMANGE,Vaudemange,Vaudemange -10,1999-12-29,COMA,52077,0,BRONCOURT,Broncourt,Broncourt,COM,52197,0,FAYL BILLOT,Fayl-Billot,Fayl-Billot -10,1999-12-29,COMA,52112,0,CHARMOY,Charmoy,Charmoy,COM,52197,0,FAYL BILLOT,Fayl-Billot,Fayl-Billot -10,1999-12-29,COM,52197,0,FAYL LA FORET,Fayl-la-Forêt,Fayl-la-Forêt,COMA,52112,0,CHARMOY,Charmoy,Charmoy -10,1999-12-29,COM,52197,0,FAYL LA FORET,Fayl-la-Forêt,Fayl-la-Forêt,COMA,52077,0,BRONCOURT,Broncourt,Broncourt 10,1999-12-29,COM,52197,0,FAYL LA FORET,Fayl-la-Forêt,Fayl-la-Forêt,COM,52197,0,FAYL BILLOT,Fayl-Billot,Fayl-Billot 10,1999-12-29,COM,57679,0,TRITTELING,Tritteling,Tritteling,COM,57679,0,TRITTELING REDLACH,Tritteling-Redlach,Tritteling-Redlach 10,1999-12-29,COM,60150,0,CHIRY OURSCAMPS,Chiry-Ourscamps,Chiry-Ourscamps,COM,60150,0,CHIRY OURSCAMP,Chiry-Ourscamp,Chiry-Ourscamp @@ -6639,18 +6222,16 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1999-12-29,COM,88413,0,SAINT DIE,Saint-Dié,Saint-Dié,COM,88413,0,SAINT DIE DES VOSGES,Saint-Dié-des-Vosges,Saint-Dié-des-Vosges 34,1999-08-01,COM,47112,0,GRATELOUP,Grateloup,Grateloup,COM,47112,0,GRATELOUP,Grateloup,Grateloup 34,1999-08-01,COMA,47243,0,SAINT GAYRAND,Saint-Gayrand,Saint-Gayrand,COM,47112,0,GRATELOUP,Grateloup,Grateloup -34,1999-07-01,COM,77175,1,EVRY GREGY SUR YERRE,Évry-Grégy-sur-Yerre,Évry-Grégy-sur-Yerre,COM,77175,1,EVRY GREGY SUR YERRE,Évry-Grégy-sur-Yerre,Évry-Grégy-sur-Yerre 34,1999-07-01,COMA,77213,0,GREGY SUR YERRE,Grégy-sur-Yerre,Grégy-sur-Yerre,COM,77175,1,EVRY GREGY SUR YERRE,Évry-Grégy-sur-Yerre,Évry-Grégy-sur-Yerre 21,1999-01-01,COMA,89325,0,RONCHERES,Ronchères,Ronchères,COM,89325,0,RONCHERES,Ronchères,Ronchères +34,1999-01-01,COMA,89325,0,RONCHERES,Ronchères,Ronchères,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau 21,1999-01-01,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau,COM,89325,0,RONCHERES,Ronchères,Ronchères 21,1999-01-01,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau -21,1999-01-01,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau,COMA,89389,0,SEPTFONDS,Septfonds,Septfonds -21,1999-01-01,COMA,89389,0,SEPTFONDS,Septfonds,Septfonds,COMA,89389,0,SEPTFONDS,Septfonds,Septfonds -10,1998-12-09,COM,01165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins,COM,01165,0,FRANCHELEINS,Francheleins,Francheleins -10,1998-12-09,COM,04193,0,SAINT PAUL,Saint-Paul,Saint-Paul,COM,04193,0,SAINT PAUL SUR UBAYE,Saint-Paul-sur-Ubaye,Saint-Paul-sur-Ubaye +10,1998-12-09,COM,1165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins,COM,1165,0,FRANCHELEINS,Francheleins,Francheleins +10,1998-12-09,COM,4193,0,SAINT PAUL,Saint-Paul,Saint-Paul,COM,4193,0,SAINT PAUL SUR UBAYE,Saint-Paul-sur-Ubaye,Saint-Paul-sur-Ubaye 10,1998-12-09,COM,30008,1,ALLEGRE,Allègre,Allègre,COM,30008,1,ALLEGRE LES FUMADES,Allègre-les-Fumades,Allègre-les-Fumades 10,1998-12-09,COM,63022,1,AUZAT SUR ALLIER,Auzat-sur-Allier,Auzat-sur-Allier,COM,63022,1,AUZAT LA COMBELLE,Auzat-la-Combelle,Auzat-la-Combelle -10,1998-11-19,COM,02374,2,HAUCOURT,Haucourt,Le Haucourt,COM,02374,0,LEHAUCOURT,Lehaucourt,Lehaucourt +10,1998-11-19,COM,2374,2,HAUCOURT,Haucourt,Le Haucourt,COM,2374,0,LEHAUCOURT,Lehaucourt,Lehaucourt 10,1998-11-19,COM,41063,0,COUFFI,Couffi,Couffi,COM,41063,0,COUFFY,Couffy,Couffy 10,1998-11-19,COM,45083,0,CHATEAURENARD,Châteaurenard,Châteaurenard,COM,45083,0,CHATEAU RENARD,Château-Renard,Château-Renard 10,1998-11-19,COM,50033,0,BEAUBIGNY,Beaubigny,Beaubigny,COM,50033,0,BAUBIGNY,Baubigny,Baubigny @@ -6658,16 +6239,26 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1998-11-19,COM,76745,0,VILLY LE BAS,Villy-le-Bas,Villy-le-Bas,COM,76745,0,VILLY SUR YERES,Villy-sur-Yères,Villy-sur-Yères 10,1998-01-04,COM,51108,0,CHALONS SUR MARNE,Châlons-sur-Marne,Châlons-sur-Marne,COM,51108,0,CHALONS EN CHAMPAGNE,Châlons-en-Champagne,Châlons-en-Champagne 21,1998-01-01,COM,57011,1,ALBESTROFF,Albestroff,Albestroff,COM,57011,1,ALBESTROFF,Albestroff,Albestroff -21,1998-01-01,COM,57011,1,ALBESTROFF,Albestroff,Albestroff,COM,57675,0,TORCHEVILLE,Torcheville,Torcheville 21,1998-01-01,COM,57011,1,ALBESTROFF,Albestroff,Albestroff,COM,57248,0,GIVRYCOURT,Givrycourt,Givrycourt 21,1998-01-01,COM,57011,1,ALBESTROFF,Albestroff,Albestroff,COM,57573,0,RENING,Réning,Réning +21,1998-01-01,COM,57011,1,ALBESTROFF,Albestroff,Albestroff,COM,57675,0,TORCHEVILLE,Torcheville,Torcheville +34,1998-01-01,COMA,57248,0,GIVRYCOURT,Givrycourt,Givrycourt,COM,57011,1,ALBESTROFF,Albestroff,Albestroff 21,1998-01-01,COMA,57248,0,GIVRYCOURT,Givrycourt,Givrycourt,COM,57248,0,GIVRYCOURT,Givrycourt,Givrycourt +34,1998-01-01,COMA,57248,0,GIVRYCOURT,Givrycourt,Givrycourt,COM,57573,0,RENING,Réning,Réning +34,1998-01-01,COMA,57248,0,GIVRYCOURT,Givrycourt,Givrycourt,COM,57675,0,TORCHEVILLE,Torcheville,Torcheville +34,1998-01-01,COMA,57573,0,RENING,Réning,Réning,COM,57011,1,ALBESTROFF,Albestroff,Albestroff +34,1998-01-01,COMA,57573,0,RENING,Réning,Réning,COM,57248,0,GIVRYCOURT,Givrycourt,Givrycourt 21,1998-01-01,COMA,57573,0,RENING,Réning,Réning,COM,57573,0,RENING,Réning,Réning +34,1998-01-01,COMA,57573,0,RENING,Réning,Réning,COM,57675,0,TORCHEVILLE,Torcheville,Torcheville +34,1998-01-01,COMA,57675,0,TORCHEVILLE,Torcheville,Torcheville,COM,57011,1,ALBESTROFF,Albestroff,Albestroff +34,1998-01-01,COMA,57675,0,TORCHEVILLE,Torcheville,Torcheville,COM,57248,0,GIVRYCOURT,Givrycourt,Givrycourt +34,1998-01-01,COMA,57675,0,TORCHEVILLE,Torcheville,Torcheville,COM,57573,0,RENING,Réning,Réning 21,1998-01-01,COMA,57675,0,TORCHEVILLE,Torcheville,Torcheville,COM,57675,0,TORCHEVILLE,Torcheville,Torcheville 21,1998-01-01,COMA,89315,0,PREHY,Préhy,Préhy,COM,89315,0,PREHY,Préhy,Préhy -21,1998-01-01,COM,89341,0,SAINT CYR LES COLONS,Saint-Cyr-les-Colons,Saint-Cyr-les-Colons,COM,89341,0,SAINT CYR LES COLONS,Saint-Cyr-les-Colons,Saint-Cyr-les-Colons +34,1998-01-01,COMA,89315,0,PREHY,Préhy,Préhy,COM,89341,0,SAINT CYR LES COLONS,Saint-Cyr-les-Colons,Saint-Cyr-les-Colons 21,1998-01-01,COM,89341,0,SAINT CYR LES COLONS,Saint-Cyr-les-Colons,Saint-Cyr-les-Colons,COM,89315,0,PREHY,Préhy,Préhy -10,1997-12-25,COM,06015,0,BERRE DES ALPES,Berre-des-Alpes,Berre-des-Alpes,COM,06015,0,BERRE LES ALPES,Berre-les-Alpes,Berre-les-Alpes +21,1998-01-01,COM,89341,0,SAINT CYR LES COLONS,Saint-Cyr-les-Colons,Saint-Cyr-les-Colons,COM,89341,0,SAINT CYR LES COLONS,Saint-Cyr-les-Colons,Saint-Cyr-les-Colons +10,1997-12-25,COM,6015,0,BERRE DES ALPES,Berre-des-Alpes,Berre-des-Alpes,COM,6015,0,BERRE LES ALPES,Berre-les-Alpes,Berre-les-Alpes 10,1997-12-25,COM,21419,0,MOLESMES,Molesmes,Molesmes,COM,21419,0,MOLESME,Molesme,Molesme 10,1997-12-25,COM,22317,0,SAINT MELOIR,Saint-Méloir,Saint-Méloir,COM,22317,0,SAINT MELOIR DES BOIS,Saint-Méloir-des-Bois,Saint-Méloir-des-Bois 10,1997-12-25,COM,22349,0,TREDREZ,Trédrez,Trédrez,COM,22349,0,TREDREZ LOCQUEMEAU,Trédrez-Locquémeau,Trédrez-Locquémeau @@ -6676,39 +6267,38 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1997-12-25,COM,62180,0,BRYAS,Bryas,Bryas,COM,62180,0,BRIAS,Brias,Brias 10,1997-12-25,COM,62527,0,LONGVILLERS,Longvillers,Longvillers,COM,62527,0,LONGVILLIERS,Longvilliers,Longvilliers 10,1997-12-25,COM,78329,0,LAINVILLE,Lainville,Lainville,COM,78329,0,LAINVILLE EN VEXIN,Lainville-en-Vexin,Lainville-en-Vexin -34,1997-12-01,COM,01036,0,BELMONT LUTHEZIEU,Belmont-Luthézieu,Belmont-Luthézieu,COM,01036,0,BELMONT LUTHEZIEU,Belmont-Luthézieu,Belmont-Luthézieu -34,1997-12-01,COMA,01226,0,LUTHEZIEU,Luthézieu,Luthézieu,COM,01036,0,BELMONT LUTHEZIEU,Belmont-Luthézieu,Belmont-Luthézieu -21,1997-11-20,COM,62119,0,BETHUNE,Béthune,Béthune,COMA,62847,0,VERQUIGNEUL,Verquigneul,Verquigneul -21,1997-11-20,COM,62119,0,BETHUNE,Béthune,Béthune,COM,62126,0,BEUVRY,Beuvry,Beuvry +34,1997-12-01,COM,1036,0,BELMONT LUTHEZIEU,Belmont-Luthézieu,Belmont-Luthézieu,COM,1036,0,BELMONT LUTHEZIEU,Belmont-Luthézieu,Belmont-Luthézieu +34,1997-12-01,COMA,1226,0,LUTHEZIEU,Luthézieu,Luthézieu,COM,1036,0,BELMONT LUTHEZIEU,Belmont-Luthézieu,Belmont-Luthézieu 21,1997-11-20,COM,62119,0,BETHUNE,Béthune,Béthune,COM,62119,0,BETHUNE,Béthune,Béthune +21,1997-11-20,COM,62119,0,BETHUNE,Béthune,Béthune,COM,62126,0,BEUVRY,Beuvry,Beuvry +34,1997-11-20,COMA,62126,0,BEUVRY,Beuvry,Beuvry,COM,62119,0,BETHUNE,Béthune,Béthune 21,1997-11-20,COMA,62126,0,BEUVRY,Beuvry,Beuvry,COM,62126,0,BEUVRY,Beuvry,Beuvry -21,1997-11-20,COMA,62847,0,VERQUIGNEUL,Verquigneul,Verquigneul,COMA,62847,0,VERQUIGNEUL,Verquigneul,Verquigneul -34,1997-08-01,COM,01184,1,HAUTECOURT ROMANECHE,Hautecourt-Romanèche,Hautecourt-Romanèche,COM,01184,1,HAUTECOURT ROMANECHE,Hautecourt-Romanèche,Hautecourt-Romanèche -34,1997-08-01,COMA,01327,0,ROMANECHE,Romanèche,Romanèche,COM,01184,1,HAUTECOURT ROMANECHE,Hautecourt-Romanèche,Hautecourt-Romanèche +34,1997-08-01,COM,1184,1,HAUTECOURT ROMANECHE,Hautecourt-Romanèche,Hautecourt-Romanèche,COM,1184,1,HAUTECOURT ROMANECHE,Hautecourt-Romanèche,Hautecourt-Romanèche +34,1997-08-01,COMA,1327,0,ROMANECHE,Romanèche,Romanèche,COM,1184,1,HAUTECOURT ROMANECHE,Hautecourt-Romanèche,Hautecourt-Romanèche 34,1997-07-01,COMA,74028,0,BALMONT,Balmont,Balmont,COM,74268,0,SEYNOD,Seynod,Seynod 34,1997-07-01,COM,74268,0,SEYNOD,Seynod,Seynod,COM,74268,0,SEYNOD,Seynod,Seynod -34,1997-05-01,COMA,70173,0,CORCELLES,Corcelles,Corcelles,COMA,70173,0,CORCELLES,Corcelles,Corcelles -34,1997-05-01,COMA,70173,0,CORCELLES,Corcelles,Corcelles,COM,70477,0,SAULNOT,Saulnot,Saulnot 34,1997-05-01,COMA,70270,0,GONVILLARS,Gonvillars,Gonvillars,COM,70477,0,SAULNOT,Saulnot,Saulnot 34,1997-05-01,COM,70477,0,SAULNOT,Saulnot,Saulnot,COM,70477,0,SAULNOT,Saulnot,Saulnot -34,1997-05-01,COM,70477,0,SAULNOT,Saulnot,Saulnot,COMA,70173,0,CORCELLES,Corcelles,Corcelles 21,1997-03-01,COMA,59287,1,HAUCOURT EN CAMBRESIS,Haucourt-en-Cambrésis,Haucourt-en-Cambrésis,COM,59287,1,HAUCOURT EN CAMBRESIS,Haucourt-en-Cambrésis,Haucourt-en-Cambrésis -21,1997-03-01,COM,59349,0,LIGNY HAUCOURT,Ligny-Haucourt,Ligny-Haucourt,COM,59349,0,LIGNY EN CAMBRESIS,Ligny-en-Cambrésis,Ligny-en-Cambrésis +34,1997-03-01,COMA,59287,1,HAUCOURT EN CAMBRESIS,Haucourt-en-Cambrésis,Haucourt-en-Cambrésis,COM,59349,0,LIGNY EN CAMBRESIS,Ligny-en-Cambrésis,Ligny-en-Cambrésis 21,1997-03-01,COM,59349,0,LIGNY HAUCOURT,Ligny-Haucourt,Ligny-Haucourt,COM,59287,1,HAUCOURT EN CAMBRESIS,Haucourt-en-Cambrésis,Haucourt-en-Cambrésis -34,1997-01-01,COM,01079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey,COM,01079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey -34,1997-01-01,COMA,01217,0,LILIGNOD,Lilignod,Lilignod,COM,01079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey -34,1997-01-01,COMA,01287,0,PASSIN,Passin,Passin,COM,01079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey +21,1997-03-01,COM,59349,0,LIGNY HAUCOURT,Ligny-Haucourt,Ligny-Haucourt,COM,59349,0,LIGNY EN CAMBRESIS,Ligny-en-Cambrésis,Ligny-en-Cambrésis +34,1997-01-01,COM,1079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey,COM,1079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey +34,1997-01-01,COMA,1217,0,LILIGNOD,Lilignod,Lilignod,COM,1079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey +34,1997-01-01,COMA,1287,0,PASSIN,Passin,Passin,COM,1079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey 31,1997-01-01,COM,16159,0,GRAVES,Graves,Graves,COM,16297,0,GRAVES SAINT AMANT,Graves-Saint-Amant,Graves-Saint-Amant 31,1997-01-01,COM,16297,0,SAINT AMANT DE GRAVES,Saint-Amant-de-Graves,Saint-Amant-de-Graves,COM,16297,0,GRAVES SAINT AMANT,Graves-Saint-Amant,Graves-Saint-Amant 10,1997-01-01,COM,18139,0,MARSEILLE LES AUBIGNY,Marseille-lès-Aubigny,Marseille-lès-Aubigny,COM,18139,0,MARSEILLES LES AUBIGNY,Marseilles-lès-Aubigny,Marseilles-lès-Aubigny 10,1997-01-01,COM,28059,0,BREZOLLES,Brézolles,Brézolles,COM,28059,0,BREZOLLES,Brezolles,Brezolles 34,1997-01-01,COMA,43209,0,SAINTE MARIE DES CHAZES,Sainte-Marie-des-Chazes,Sainte-Marie-des-Chazes,COM,43239,0,SIAUGUES SAINTE MARIE,Siaugues-Sainte-Marie,Siaugues-Sainte-Marie 34,1997-01-01,COM,43239,0,SIAUGUES SAINTE MARIE,Siaugues-Sainte-Marie,Siaugues-Sainte-Marie,COM,43239,0,SIAUGUES SAINTE MARIE,Siaugues-Sainte-Marie,Siaugues-Sainte-Marie -21,1997-01-01,COM,52444,0,SAINT BLIN SEMILLY,Saint-Blin-Semilly,Saint-Blin-Semilly,COM,52468,0,SEMILLY,Semilly,Semilly 21,1997-01-01,COM,52444,0,SAINT BLIN SEMILLY,Saint-Blin-Semilly,Saint-Blin-Semilly,COM,52444,0,SAINT BLIN,Saint-Blin,Saint-Blin +21,1997-01-01,COM,52444,0,SAINT BLIN SEMILLY,Saint-Blin-Semilly,Saint-Blin-Semilly,COM,52468,0,SEMILLY,Semilly,Semilly +34,1997-01-01,COMA,52468,0,SEMILLY,Semilly,Semilly,COM,52444,0,SAINT BLIN,Saint-Blin,Saint-Blin 21,1997-01-01,COMA,52468,0,SEMILLY,Semilly,Semilly,COM,52468,0,SEMILLY,Semilly,Semilly 41,1997-01-01,COM,55227,0,HAN DEVANT PIERREPONT,Han-devant-Pierrepont,Han-devant-Pierrepont,COM,54602,0,HAN DEVANT PIERREPONT,Han-devant-Pierrepont,Han-devant-Pierrepont 21,1997-01-01,COMA,64145,0,BOURDETTES,Bourdettes,Bourdettes,COM,64145,0,BOURDETTES,Bourdettes,Bourdettes +34,1997-01-01,COMA,64145,0,BOURDETTES,Bourdettes,Bourdettes,COM,64417,0,NAY,Nay,Nay 21,1997-01-01,COM,64417,0,NAY BOURDETTES,Nay-Bourdettes,Nay-Bourdettes,COM,64145,0,BOURDETTES,Bourdettes,Bourdettes 21,1997-01-01,COM,64417,0,NAY BOURDETTES,Nay-Bourdettes,Nay-Bourdettes,COM,64417,0,NAY,Nay,Nay 21,1997-01-01,COM,64493,0,SAINT PALAIS,Saint-Palais,Saint-Palais,COM,64235,0,GARRIS,Garris,Garris @@ -6719,8 +6309,9 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1997-01-01,COM,71560,0,VARENNE SUR LE DOUBS,Varenne-sur-le-Doubs,Varenne-sur-le-Doubs,COM,71101,0,CHARETTE VARENNES,Charette-Varennes,Charette-Varennes 21,1997-01-01,COM,90068,0,MEROUX MOVAL,Meroux-Moval,Meroux-Moval,COM,90068,0,MEROUX,Meroux,Meroux 21,1997-01-01,COM,90068,0,MEROUX MOVAL,Meroux-Moval,Meroux-Moval,COM,90073,0,MOVAL,Moval,Moval +34,1997-01-01,COMA,90073,0,MOVAL,Moval,Moval,COM,90068,0,MEROUX,Meroux,Meroux 21,1997-01-01,COMA,90073,0,MOVAL,Moval,Moval,COM,90073,0,MOVAL,Moval,Moval -10,1996-08-11,COM,05036,0,CHATEAUROUX,Châteauroux,Châteauroux,COM,05036,0,CHATEAUROUX LES ALPES,Châteauroux-les-Alpes,Châteauroux-les-Alpes +10,1996-08-11,COM,5036,0,CHATEAUROUX,Châteauroux,Châteauroux,COM,5036,0,CHATEAUROUX LES ALPES,Châteauroux-les-Alpes,Châteauroux-les-Alpes 10,1996-08-11,COM,12093,1,ENGUIALES,Enguialès,Enguialès,COM,12093,2,FEL,Fel,Le Fel 10,1996-08-11,COM,17437,0,TALMONT,Talmont,Talmont,COM,17437,0,TALMONT SUR GIRONDE,Talmont-sur-Gironde,Talmont-sur-Gironde 10,1996-08-11,COM,23257,0,VALLIERES,Vallières,Vallières,COM,23257,0,VALLIERE,Vallière,Vallière @@ -6730,21 +6321,19 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1996-08-11,COM,49058,4,CERQUEUX DE MAULEVRIER,Cerqueux-de-Maulévrier,Les Cerqueux-de-Maulévrier,COM,49058,4,CERQUEUX,Cerqueux,Les Cerqueux 10,1996-08-11,COM,77181,0,FERRIERES,Ferrières,Ferrières,COM,77181,0,FERRIERES EN BRIE,Ferrières-en-Brie,Ferrières-en-Brie 10,1996-08-11,COM,84151,0,VITROLLES,Vitrolles,Vitrolles,COM,84151,0,VITROLLES EN LUBERON,Vitrolles-en-Lubéron,Vitrolles-en-Lubéron -34,1996-08-01,COMA,01070,0,CESSEINS,Cesseins,Cesseins,COM,01165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins -34,1996-08-01,COM,01165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins,COM,01165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins -10,1996-01-01,COM,02767,0,VAUREZIS,Vaurezis,Vaurezis,COM,02767,0,VAUXREZIS,Vauxrezis,Vauxrezis -33,1996-01-01,COM,62110,0,BERGUETTE,Berguette,Berguette,COM,62473,1,ISBERGUES,Isbergues,Isbergues +34,1996-08-01,COMA,1070,0,CESSEINS,Cesseins,Cesseins,COM,1165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins +34,1996-08-01,COM,1165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins,COM,1165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins +10,1996-01-01,COM,2767,0,VAUREZIS,Vaurezis,Vaurezis,COM,2767,0,VAUXREZIS,Vauxrezis,Vauxrezis 33,1996-01-01,COM,62110,0,BERGUETTE,Berguette,Berguette,COMA,62110,0,BERGUETTE,Berguette,Berguette +33,1996-01-01,COM,62110,0,BERGUETTE,Berguette,Berguette,COM,62473,1,ISBERGUES,Isbergues,Isbergues 33,1996-01-01,COM,62473,1,ISBERGUES,Isbergues,Isbergues,COM,62473,1,ISBERGUES,Isbergues,Isbergues 33,1996-01-01,COM,62575,0,MOLINGHEM,Molinghem,Molinghem,COM,62473,1,ISBERGUES,Isbergues,Isbergues 33,1996-01-01,COM,62575,0,MOLINGHEM,Molinghem,Molinghem,COMA,62575,0,MOLINGHEM,Molinghem,Molinghem -10,1996-01-01,COM,68350,0,VOEGTLINSHOFEN,Vœgtlinshofen,Vœgtlinshofen,COM,68350,0,VOEGTLINSHOFFEN,Vœgtlinshoffen,Vœgtlinshoffen -10,1995-11-17,COM,07216,0,SAINT BARTHELEMY LE PIN,Saint-Barthélemy-le-Pin,Saint-Barthélemy-le-Pin,COM,07216,0,SAINT BARTHELEMY GROZON,Saint-Barthélemy-Grozon,Saint-Barthélemy-Grozon +10,1996-01-01,COM,68350,0,VOGTLINSHOFEN,Vœgtlinshofen,Vœgtlinshofen,COM,68350,0,VOGTLINSHOFFEN,Vœgtlinshoffen,Vœgtlinshoffen +10,1995-11-17,COM,7216,0,SAINT BARTHELEMY LE PIN,Saint-Barthélemy-le-Pin,Saint-Barthélemy-le-Pin,COM,7216,0,SAINT BARTHELEMY GROZON,Saint-Barthélemy-Grozon,Saint-Barthélemy-Grozon 10,1995-11-17,COM,11188,0,LAPALME,Lapalme,Lapalme,COM,11188,3,PALME,Palme,La Palme 10,1995-11-17,COM,14041,0,BARNEVILLE,Barneville,Barneville,COM,14041,0,BARNEVILLE LA BERTRAN,Barneville-la-Bertran,Barneville-la-Bertran -10,1995-11-17,COM,25187,0,MAMBELIN,Mambelin,Mambelin,COMA,25363,0,MAMBOUHANS,Mambouhans,Mambouhans 10,1995-11-17,COM,25187,0,MAMBELIN,Mambelin,Mambelin,COM,25187,0,DAMBELIN,Dambelin,Dambelin -10,1995-11-17,COMA,25363,0,MAMBOUHANS,Mambouhans,Mambouhans,COM,25187,0,DAMBELIN,Dambelin,Dambelin 10,1995-11-17,COM,35184,0,MONTAUBAN,Montauban,Montauban,COM,35184,0,MONTAUBAN DE BRETAGNE,Montauban-de-Bretagne,Montauban-de-Bretagne 10,1995-11-17,COM,40315,0,THETIEU,Thétieu,Thétieu,COM,40315,0,TETHIEU,Téthieu,Téthieu 10,1995-11-17,COM,46232,4,QUATRE ROUTES,Quatre-Routes,Les Quatre-Routes,COM,46232,4,QUATRE ROUTES DU LOT,Quatre-Routes-du-Lot,Les Quatre-Routes-du-Lot @@ -6760,43 +6349,42 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 34,1995-06-01,COM,74014,1,ARACHES,Arâches,Arâches,COM,74014,1,ARACHES,Arâches,Arâches 34,1995-06-01,COMA,74132,3,FRASSE,Frasse,La Frasse,COM,74014,1,ARACHES,Arâches,Arâches 21,1995-05-25,COMA,74166,0,MARIN,Marin,Marin,COM,74166,0,MARIN,Marin,Marin +34,1995-05-25,COMA,74166,0,MARIN,Marin,Marin,COM,74281,0,THONON LES BAINS,Thonon-les-Bains,Thonon-les-Bains 21,1995-05-25,COM,74281,0,THONON LES BAINS,Thonon-les-Bains,Thonon-les-Bains,COM,74166,0,MARIN,Marin,Marin 21,1995-05-25,COM,74281,0,THONON LES BAINS,Thonon-les-Bains,Thonon-les-Bains,COM,74281,0,THONON LES BAINS,Thonon-les-Bains,Thonon-les-Bains 34,1995-02-23,COM,39188,0,DAMMARTIN MARPAIN,Dammartin-Marpain,Dammartin-Marpain,COM,39188,0,DAMMARTIN MARPAIN,Dammartin-Marpain,Dammartin-Marpain 34,1995-02-23,COMA,39316,0,MARPAIN,Marpain,Marpain,COM,39188,0,DAMMARTIN MARPAIN,Dammartin-Marpain,Dammartin-Marpain -34,1995-01-01,COMA,01223,0,LOYES,Loyes,Loyes,COM,01450,0,VILLIEU LOYES MOLLON,Villieu-Loyes-Mollon,Villieu-Loyes-Mollon -34,1995-01-01,COMA,01253,0,MOLLON,Mollon,Mollon,COM,01450,0,VILLIEU LOYES MOLLON,Villieu-Loyes-Mollon,Villieu-Loyes-Mollon -34,1995-01-01,COM,01450,0,VILLIEU LOYES MOLLON,Villieu-Loyes-Mollon,Villieu-Loyes-Mollon,COM,01450,0,VILLIEU LOYES MOLLON,Villieu-Loyes-Mollon,Villieu-Loyes-Mollon +34,1995-01-01,COMA,1223,0,LOYES,Loyes,Loyes,COM,1450,0,VILLIEU LOYES MOLLON,Villieu-Loyes-Mollon,Villieu-Loyes-Mollon +34,1995-01-01,COMA,1253,0,MOLLON,Mollon,Mollon,COM,1450,0,VILLIEU LOYES MOLLON,Villieu-Loyes-Mollon,Villieu-Loyes-Mollon +34,1995-01-01,COM,1450,0,VILLIEU LOYES MOLLON,Villieu-Loyes-Mollon,Villieu-Loyes-Mollon,COM,1450,0,VILLIEU LOYES MOLLON,Villieu-Loyes-Mollon,Villieu-Loyes-Mollon 10,1995-01-01,COM,16204,0,MALLAVILLE,Mallaville,Mallaville,COM,16204,0,MALAVILLE,Malaville,Malaville 10,1995-01-01,COM,16338,0,SAINT MEDARD(CANTON DE BARBEZIEUX SAINT HILAIRE),Saint-Médard(Canton de Barbezieux-Saint-Hilaire),Saint-Médard(Canton de Barbezieux-Saint-Hilaire),COM,16338,0,SAINT MEDARD,Saint-Médard,Saint-Médard 10,1995-01-01,COM,21173,0,CHOREY,Chorey,Chorey,COM,21173,0,CHOREY LES BEAUNE,Chorey-les-Beaune,Chorey-les-Beaune -34,1994-08-12,COM,38139,0,CREYS MEPIEU,Creys-Mépieu,Creys-Mépieu,COM,38139,0,CREYS MEPIEU,Creys-Mépieu,Creys-Mépieu 34,1994-08-12,COMA,38227,0,MEPIEU,Mépieu,Mépieu,COM,38139,0,CREYS MEPIEU,Creys-Mépieu,Creys-Mépieu 34,1994-07-01,COM,56198,0,ROHAN,Rohan,Rohan,COM,56198,0,ROHAN,Rohan,Rohan 34,1994-07-01,COMA,56217,0,SAINT GOUVRY,Saint-Gouvry,Saint-Gouvry,COM,56198,0,ROHAN,Rohan,Rohan 34,1994-07-01,COMA,56235,0,SAINT SAMSON,Saint-Samson,Saint-Samson,COM,56198,0,ROHAN,Rohan,Rohan 10,1994-07-01,COM,57181,0,DOMNON LES DIEUZE,Domnon-lès-Dieuze,Domnon-lès-Dieuze,COM,57181,0,DOMNOM LES DIEUZE,Domnom-lès-Dieuze,Domnom-lès-Dieuze -10,1994-06-13,COM,01408,0,SIMANDRE,Simandre,Simandre,COM,01408,0,SIMANDRE SUR SURAN,Simandre-sur-Suran,Simandre-sur-Suran +10,1994-06-13,COM,1408,0,SIMANDRE,Simandre,Simandre,COM,1408,0,SIMANDRE SUR SURAN,Simandre-sur-Suran,Simandre-sur-Suran 10,1994-06-13,COM,15218,0,SAINT VINCENT,Saint-Vincent,Saint-Vincent,COM,15218,0,SAINT VINCENT DE SALERS,Saint-Vincent-de-Salers,Saint-Vincent-de-Salers 10,1994-06-13,COM,33529,3,TESTE,Teste,La Teste,COM,33529,3,TESTE DE BUCH,Teste-de-Buch,La Teste-de-Buch 10,1994-06-13,COM,49012,1,AUBIGNE,Aubigné,Aubigné,COM,49012,1,AUBIGNE SUR LAYON,Aubigné-sur-Layon,Aubigné-sur-Layon 10,1994-06-13,COM,59219,1,ETRUN,Étrun,Étrun,COM,59219,1,ESTRUN,Estrun,Estrun 10,1994-06-13,COM,60532,0,RESSONS,Ressons,Ressons,COM,60532,0,RESSONS L ABBAYE,Ressons-l'Abbaye,Ressons-l'Abbaye -34,1994-02-01,COMA,01086,0,CHARANCIN,Charancin,Charancin,COM,01414,0,SUTRIEU,Sutrieu,Sutrieu -34,1994-02-01,COMA,01161,0,FITIGNIEU,Fitignieu,Fitignieu,COM,01414,0,SUTRIEU,Sutrieu,Sutrieu -34,1994-02-01,COM,01414,0,SUTRIEU,Sutrieu,Sutrieu,COM,01414,0,SUTRIEU,Sutrieu,Sutrieu +34,1994-02-01,COMA,1086,0,CHARANCIN,Charancin,Charancin,COM,1414,0,SUTRIEU,Sutrieu,Sutrieu +34,1994-02-01,COMA,1161,0,FITIGNIEU,Fitignieu,Fitignieu,COM,1414,0,SUTRIEU,Sutrieu,Sutrieu +34,1994-02-01,COM,1414,0,SUTRIEU,Sutrieu,Sutrieu,COM,1414,0,SUTRIEU,Sutrieu,Sutrieu 34,1994-02-01,COM,62008,1,ACQUIN WESTBECOURT,Acquin-Westbécourt,Acquin-Westbécourt,COM,62008,1,ACQUIN WESTBECOURT,Acquin-Westbécourt,Acquin-Westbécourt 34,1994-02-01,COMA,62884,0,WESTBECOURT,Westbécourt,Westbécourt,COM,62008,1,ACQUIN WESTBECOURT,Acquin-Westbécourt,Acquin-Westbécourt 31,1994-01-01,COM,16022,1,AUGE,Auge,Auge,COM,16339,1,AUGE SAINT MEDARD,Auge-Saint-Médard,Auge-Saint-Médard 31,1994-01-01,COM,16339,0,SAINT MEDARD,Saint-Médard,Saint-Médard,COM,16339,1,AUGE SAINT MEDARD,Auge-Saint-Médard,Auge-Saint-Médard 21,1994-01-01,COM,32045,0,BERDOUES PONSAMPERE,Berdoues-Ponsampère,Berdoues-Ponsampère,COM,32045,0,BERDOUES,Berdoues,Berdoues 21,1994-01-01,COM,32045,0,BERDOUES PONSAMPERE,Berdoues-Ponsampère,Berdoues-Ponsampère,COM,32323,0,PONSAMPERE,Ponsampère,Ponsampère +34,1994-01-01,COMA,32323,0,PONSAMPERE,Ponsampère,Ponsampère,COM,32045,0,BERDOUES,Berdoues,Berdoues 21,1994-01-01,COMA,32323,0,PONSAMPERE,Ponsampère,Ponsampère,COM,32323,0,PONSAMPERE,Ponsampère,Ponsampère 33,1994-01-01,COM,62119,0,BETHUNE,Béthune,Béthune,COM,62119,0,BETHUNE,Béthune,Béthune 33,1994-01-01,COM,62126,0,BEUVRY,Beuvry,Beuvry,COM,62119,0,BETHUNE,Béthune,Béthune 33,1994-01-01,COM,62126,0,BEUVRY,Beuvry,Beuvry,COMA,62126,0,BEUVRY,Beuvry,Beuvry -33,1994-01-01,COMA,62847,0,VERQUIGNEUL,Verquigneul,Verquigneul,COM,62119,0,BETHUNE,Béthune,Béthune -33,1994-01-01,COMA,62847,0,VERQUIGNEUL,Verquigneul,Verquigneul,COMA,62847,0,VERQUIGNEUL,Verquigneul,Verquigneul 31,1994-01-01,COM,70004,1,ADELANS,Adelans,Adelans,COM,70004,1,ADELANS ET LE VAL DE BITHAINE,Adelans-et-le-Val-de-Bithaine,Adelans-et-le-Val-de-Bithaine 31,1994-01-01,COM,70073,0,BITHAINE ET LE VAL,Bithaine-et-le-Val,Bithaine-et-le-Val,COM,70004,1,ADELANS ET LE VAL DE BITHAINE,Adelans-et-le-Val-de-Bithaine,Adelans-et-le-Val-de-Bithaine 34,1994-01-01,COM,79137,0,GRANZAY GRIPT,Granzay-Gript,Granzay-Gript,COM,79137,0,GRANZAY GRIPT,Granzay-Gript,Granzay-Gript @@ -6804,12 +6392,13 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1993-11-01,COM,24490,0,SAINT PRIVAT,Saint-Privat,Saint-Privat,COM,24490,0,SAINT PRIVAT DES PRES,Saint-Privat-des-Prés,Saint-Privat-des-Prés 10,1993-11-01,COM,35188,0,MONTFORT,Montfort,Montfort,COM,35188,0,MONTFORT SUR MEU,Montfort-sur-Meu,Montfort-sur-Meu 10,1993-11-01,COM,84043,1,ENTRAIGUES SUR SORGUES,Entraigues-sur-Sorgues,Entraigues-sur-Sorgues,COM,84043,1,ENTRAIGUES SUR LA SORGUE,Entraigues-sur-la-Sorgue,Entraigues-sur-la-Sorgue -21,1993-10-01,COM,16029,0,BRIE BARDENAC,Brie-Bardenac,Brie-Bardenac,COM,16063,0,BRIE SOUS CHALAIS,Brie-sous-Chalais,Brie-sous-Chalais 21,1993-10-01,COM,16029,0,BRIE BARDENAC,Brie-Bardenac,Brie-Bardenac,COM,16029,0,BARDENAC,Bardenac,Bardenac +21,1993-10-01,COM,16029,0,BRIE BARDENAC,Brie-Bardenac,Brie-Bardenac,COM,16063,0,BRIE SOUS CHALAIS,Brie-sous-Chalais,Brie-sous-Chalais +34,1993-10-01,COMA,16063,0,BRIE SOUS CHALAIS,Brie-sous-Chalais,Brie-sous-Chalais,COM,16029,0,BARDENAC,Bardenac,Bardenac 21,1993-10-01,COMA,16063,0,BRIE SOUS CHALAIS,Brie-sous-Chalais,Brie-sous-Chalais,COM,16063,0,BRIE SOUS CHALAIS,Brie-sous-Chalais,Brie-sous-Chalais 34,1993-07-01,COM,14312,0,GRANDCAMP MAISY,Grandcamp-Maisy,Grandcamp-Maisy,COM,14312,0,GRANDCAMP MAISY,Grandcamp-Maisy,Grandcamp-Maisy 34,1993-07-01,COMA,14392,0,MAISY,Maisy,Maisy,COM,14312,0,GRANDCAMP MAISY,Grandcamp-Maisy,Grandcamp-Maisy -10,1993-04-01,COM,07112,0,LABASTIDE DE JUVINAS,Labastide-de-Juvinas,Labastide-de-Juvinas,COM,07112,0,LABASTIDE SUR BESORGUES,Labastide-sur-Bésorgues,Labastide-sur-Bésorgues +10,1993-04-01,COM,7112,0,LABASTIDE DE JUVINAS,Labastide-de-Juvinas,Labastide-de-Juvinas,COM,7112,0,LABASTIDE SUR BESORGUES,Labastide-sur-Bésorgues,Labastide-sur-Bésorgues 10,1993-04-01,COM,11190,0,LAREDORTE,Laredorte,Laredorte,COM,11190,3,REDORTE,Redorte,La Redorte 10,1993-04-01,COM,12004,1,ALMON LES JUNIES,Almon-les-Junies,Almon-les-Junies,COM,12004,1,ALMONT LES JUNIES,Almont-les-Junies,Almont-les-Junies 10,1993-04-01,COM,21416,0,MIREBEAU,Mirebeau,Mirebeau,COM,21416,0,MIREBEAU SUR BEZE,Mirebeau-sur-Bèze,Mirebeau-sur-Bèze @@ -6826,19 +6415,16 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1993-04-01,COM,89273,0,MOUTIERS,Moutiers,Moutiers,COM,89273,0,MOUTIERS EN PUISAYE,Moutiers-en-Puisaye,Moutiers-en-Puisaye 31,1993-01-01,COM,35073,0,CHATILLON SUR SEICHE,Châtillon-sur-Seiche,Châtillon-sur-Seiche,COM,35206,0,NOYAL CHATILLON SUR SEICHE,Noyal-Châtillon-sur-Seiche,Noyal-Châtillon-sur-Seiche 31,1993-01-01,COM,35206,0,NOYAL SUR SEICHE,Noyal-sur-Seiche,Noyal-sur-Seiche,COM,35206,0,NOYAL CHATILLON SUR SEICHE,Noyal-Châtillon-sur-Seiche,Noyal-Châtillon-sur-Seiche -21,1993-01-01,COM,97357,0,GRAND SANTI,Grand-Santi,Grand-Santi,COM,97362,0,PAPAICHTON,Papaichton,Papaichton -21,1993-01-01,COM,97357,0,GRAND SANTI,Grand-Santi,Grand-Santi,COM,97357,0,GRAND SANTI,Grand-Santi,Grand-Santi +20,1993-01-01,COM,97357,0,GRAND SANTI,Grand-Santi,Grand-Santi,COM,97357,0,GRAND SANTI,Grand-Santi,Grand-Santi +20,1993-01-01,COM,97357,0,GRAND SANTI,Grand-Santi,Grand-Santi,COM,97362,0,PAPAICHTON,Papaichton,Papaichton 21,1992-12-31,COM,67340,1,OBERBRONN ZINSWILLER,Oberbronn-Zinswiller,Oberbronn-Zinswiller,COM,67340,1,OBERBRONN,Oberbronn,Oberbronn 21,1992-12-31,COM,67340,1,OBERBRONN ZINSWILLER,Oberbronn-Zinswiller,Oberbronn-Zinswiller,COM,67558,0,ZINSWILLER,Zinswiller,Zinswiller +34,1992-12-31,COMA,67558,0,ZINSWILLER,Zinswiller,Zinswiller,COM,67340,1,OBERBRONN,Oberbronn,Oberbronn 21,1992-12-31,COMA,67558,0,ZINSWILLER,Zinswiller,Zinswiller,COM,67558,0,ZINSWILLER,Zinswiller,Zinswiller 10,1992-11-01,COM,31445,0,QUINT,Quint,Quint,COM,31445,0,QUINT FONSEGRIVES,Quint-Fonsegrives,Quint-Fonsegrives 10,1992-11-01,COM,52178,0,BLAISERIVES,Blaiserives,Blaiserives,COM,52178,0,DOULEVANT LE CHATEAU,Doulevant-le-Château,Doulevant-le-Château -10,1992-11-01,COM,52178,0,BLAISERIVES,Blaiserives,Blaiserives,COMA,52533,0,VILLIERS AUX CHENES,Villiers-aux-Chênes,Villiers-aux-Chênes -10,1992-11-01,COMA,52533,0,VILLIERS AUX CHENES,Villiers-aux-Chênes,Villiers-aux-Chênes,COM,52178,0,DOULEVANT LE CHATEAU,Doulevant-le-Château,Doulevant-le-Château -10,1992-09-01,COM,06039,0,CHATEAUNEUF DE CONTES,Châteauneuf-de-Contes,Châteauneuf-de-Contes,COM,06039,0,CHATEAUNEUF VILLEVIEILLE,Châteauneuf-Villevieille,Châteauneuf-Villevieille -10,1992-09-01,COMA,09248,0,ROGALLE,Rogalle,Rogalle,COM,09299,0,SOUEIX ROGALLE,Soueix-Rogalle,Soueix-Rogalle -10,1992-09-01,COM,09299,0,SOUEIX,Soueix,Soueix,COM,09299,0,SOUEIX ROGALLE,Soueix-Rogalle,Soueix-Rogalle -10,1992-09-01,COM,09299,0,SOUEIX,Soueix,Soueix,COMA,09248,0,ROGALLE,Rogalle,Rogalle +10,1992-09-01,COM,6039,0,CHATEAUNEUF DE CONTES,Châteauneuf-de-Contes,Châteauneuf-de-Contes,COM,6039,0,CHATEAUNEUF VILLEVIEILLE,Châteauneuf-Villevieille,Châteauneuf-Villevieille +10,1992-09-01,COM,9299,0,SOUEIX,Soueix,Soueix,COM,9299,0,SOUEIX ROGALLE,Soueix-Rogalle,Soueix-Rogalle 10,1992-09-01,COM,13061,0,MEZOARGUES,Mézoargues,Mézoargues,COM,13061,0,SAINT PIERRE DE MEZOARGUES,Saint-Pierre-de-Mézoargues,Saint-Pierre-de-Mézoargues 10,1992-09-01,COM,21139,0,CHAMPEAU,Champeau,Champeau,COM,21139,0,CHAMPEAU EN MORVAN,Champeau-en-Morvan,Champeau-en-Morvan 10,1992-09-01,COM,23137,0,MOURIOUX,Mourioux,Mourioux,COM,23137,0,MOURIOUX VIEILLEVILLE,Mourioux-Vieilleville,Mourioux-Vieilleville @@ -6854,47 +6440,57 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 34,1992-08-25,COMA,48113,0,PIN MORIES,Pin-Moriès,Pin-Moriès,COM,48099,2,MONASTIER PIN MORIES,Monastier-Pin-Moriès,Le Monastier-Pin-Moriès 31,1992-05-01,COM,26020,1,AURIPLES,Auriples,Auriples,COM,26020,3,REPARA AURIPLES,Répara-Auriples,La Répara-Auriples 31,1992-05-01,COM,26265,3,REPARA,Répara,La Répara,COM,26020,3,REPARA AURIPLES,Répara-Auriples,La Répara-Auriples -33,1992-01-01,COMA,02300,0,FARGNIERS,Fargniers,Fargniers,COMA,02300,0,FARGNIERS,Fargniers,Fargniers -33,1992-01-01,COMA,02300,0,FARGNIERS,Fargniers,Fargniers,COM,02738,0,TERGNIER,Tergnier,Tergnier -33,1992-01-01,COM,02630,0,QUESSY,Quessy,Quessy,COM,02738,0,TERGNIER,Tergnier,Tergnier -33,1992-01-01,COM,02630,0,QUESSY,Quessy,Quessy,COMA,02630,0,QUESSY,Quessy,Quessy -33,1992-01-01,COM,02738,0,TERGNIER,Tergnier,Tergnier,COM,02738,0,TERGNIER,Tergnier,Tergnier -33,1992-01-01,COMA,02825,0,VOUEL,Vouël,Vouël,COM,02738,0,TERGNIER,Tergnier,Tergnier -33,1992-01-01,COMA,02825,0,VOUEL,Vouël,Vouël,COMA,02825,0,VOUEL,Vouël,Vouël +33,1992-01-01,COM,2630,0,QUESSY,Quessy,Quessy,COMA,2630,0,QUESSY,Quessy,Quessy +33,1992-01-01,COM,2630,0,QUESSY,Quessy,Quessy,COM,2738,0,TERGNIER,Tergnier,Tergnier +33,1992-01-01,COM,2738,0,TERGNIER,Tergnier,Tergnier,COM,2738,0,TERGNIER,Tergnier,Tergnier 21,1992-01-01,COMA,52240,1,HEUILLEY LE GRAND,Heuilley-le-Grand,Heuilley-le-Grand,COM,52240,1,HEUILLEY LE GRAND,Heuilley-le-Grand,Heuilley-le-Grand +34,1992-01-01,COMA,52240,1,HEUILLEY LE GRAND,Heuilley-le-Grand,Heuilley-le-Grand,COM,52354,0,NOIDANT CHATENOY,Noidant-Chatenoy,Noidant-Chatenoy +34,1992-01-01,COMA,52240,1,HEUILLEY LE GRAND,Heuilley-le-Grand,Heuilley-le-Grand,COM,52374,2,PAILLY,Pailly,Le Pailly +34,1992-01-01,COMA,52240,1,HEUILLEY LE GRAND,Heuilley-le-Grand,Heuilley-le-Grand,COM,52375,0,PALAISEUL,Palaiseul,Palaiseul +34,1992-01-01,COMA,52240,1,HEUILLEY LE GRAND,Heuilley-le-Grand,Heuilley-le-Grand,COM,52539,0,VIOLOT,Violot,Violot +34,1992-01-01,COMA,52354,0,NOIDANT CHATENOY,Noidant-Chatenoy,Noidant-Chatenoy,COM,52240,1,HEUILLEY LE GRAND,Heuilley-le-Grand,Heuilley-le-Grand 21,1992-01-01,COMA,52354,0,NOIDANT CHATENOY,Noidant-Chatenoy,Noidant-Chatenoy,COM,52354,0,NOIDANT CHATENOY,Noidant-Chatenoy,Noidant-Chatenoy +34,1992-01-01,COMA,52354,0,NOIDANT CHATENOY,Noidant-Chatenoy,Noidant-Chatenoy,COM,52374,2,PAILLY,Pailly,Le Pailly +34,1992-01-01,COMA,52354,0,NOIDANT CHATENOY,Noidant-Chatenoy,Noidant-Chatenoy,COM,52375,0,PALAISEUL,Palaiseul,Palaiseul +34,1992-01-01,COMA,52354,0,NOIDANT CHATENOY,Noidant-Chatenoy,Noidant-Chatenoy,COM,52539,0,VIOLOT,Violot,Violot +21,1992-01-01,COM,52374,0,HAUTS VALS SOUS NOUROY,Hauts-Vals-sous-Nouroy,Hauts-Vals-sous-Nouroy,COM,52240,1,HEUILLEY LE GRAND,Heuilley-le-Grand,Heuilley-le-Grand +21,1992-01-01,COM,52374,0,HAUTS VALS SOUS NOUROY,Hauts-Vals-sous-Nouroy,Hauts-Vals-sous-Nouroy,COM,52354,0,NOIDANT CHATENOY,Noidant-Chatenoy,Noidant-Chatenoy 21,1992-01-01,COM,52374,0,HAUTS VALS SOUS NOUROY,Hauts-Vals-sous-Nouroy,Hauts-Vals-sous-Nouroy,COM,52374,2,PAILLY,Pailly,Le Pailly 21,1992-01-01,COM,52374,0,HAUTS VALS SOUS NOUROY,Hauts-Vals-sous-Nouroy,Hauts-Vals-sous-Nouroy,COM,52375,0,PALAISEUL,Palaiseul,Palaiseul -21,1992-01-01,COM,52374,0,HAUTS VALS SOUS NOUROY,Hauts-Vals-sous-Nouroy,Hauts-Vals-sous-Nouroy,COM,52354,0,NOIDANT CHATENOY,Noidant-Chatenoy,Noidant-Chatenoy 21,1992-01-01,COM,52374,0,HAUTS VALS SOUS NOUROY,Hauts-Vals-sous-Nouroy,Hauts-Vals-sous-Nouroy,COM,52539,0,VIOLOT,Violot,Violot -21,1992-01-01,COM,52374,0,HAUTS VALS SOUS NOUROY,Hauts-Vals-sous-Nouroy,Hauts-Vals-sous-Nouroy,COM,52240,1,HEUILLEY LE GRAND,Heuilley-le-Grand,Heuilley-le-Grand +34,1992-01-01,COMA,52375,0,PALAISEUL,Palaiseul,Palaiseul,COM,52240,1,HEUILLEY LE GRAND,Heuilley-le-Grand,Heuilley-le-Grand +34,1992-01-01,COMA,52375,0,PALAISEUL,Palaiseul,Palaiseul,COM,52354,0,NOIDANT CHATENOY,Noidant-Chatenoy,Noidant-Chatenoy +34,1992-01-01,COMA,52375,0,PALAISEUL,Palaiseul,Palaiseul,COM,52374,2,PAILLY,Pailly,Le Pailly 21,1992-01-01,COMA,52375,0,PALAISEUL,Palaiseul,Palaiseul,COM,52375,0,PALAISEUL,Palaiseul,Palaiseul +34,1992-01-01,COMA,52375,0,PALAISEUL,Palaiseul,Palaiseul,COM,52539,0,VIOLOT,Violot,Violot +34,1992-01-01,COMA,52539,0,VIOLOT,Violot,Violot,COM,52240,1,HEUILLEY LE GRAND,Heuilley-le-Grand,Heuilley-le-Grand +34,1992-01-01,COMA,52539,0,VIOLOT,Violot,Violot,COM,52354,0,NOIDANT CHATENOY,Noidant-Chatenoy,Noidant-Chatenoy +34,1992-01-01,COMA,52539,0,VIOLOT,Violot,Violot,COM,52374,2,PAILLY,Pailly,Le Pailly +34,1992-01-01,COMA,52539,0,VIOLOT,Violot,Violot,COM,52375,0,PALAISEUL,Palaiseul,Palaiseul 21,1992-01-01,COMA,52539,0,VIOLOT,Violot,Violot,COM,52539,0,VIOLOT,Violot,Violot 21,1992-01-01,COMA,67026,0,BELLEFOSSE,Bellefosse,Bellefosse,COM,67026,0,BELLEFOSSE,Bellefosse,Bellefosse +34,1992-01-01,COMA,67026,0,BELLEFOSSE,Bellefosse,Bellefosse,COM,67027,0,BELMONT,Belmont,Belmont +34,1992-01-01,COMA,67026,0,BELLEFOSSE,Bellefosse,Bellefosse,COM,67144,0,FOUDAY,Fouday,Fouday +34,1992-01-01,COMA,67026,0,BELLEFOSSE,Bellefosse,Bellefosse,COM,67513,0,WALDERSBACH,Waldersbach,Waldersbach +34,1992-01-01,COMA,67027,0,BELMONT,Belmont,Belmont,COM,67026,0,BELLEFOSSE,Bellefosse,Bellefosse 21,1992-01-01,COMA,67027,0,BELMONT,Belmont,Belmont,COM,67027,0,BELMONT,Belmont,Belmont +34,1992-01-01,COMA,67027,0,BELMONT,Belmont,Belmont,COM,67144,0,FOUDAY,Fouday,Fouday +34,1992-01-01,COMA,67027,0,BELMONT,Belmont,Belmont,COM,67513,0,WALDERSBACH,Waldersbach,Waldersbach +34,1992-01-01,COMA,67144,0,FOUDAY,Fouday,Fouday,COM,67026,0,BELLEFOSSE,Bellefosse,Bellefosse +34,1992-01-01,COMA,67144,0,FOUDAY,Fouday,Fouday,COM,67027,0,BELMONT,Belmont,Belmont 21,1992-01-01,COMA,67144,0,FOUDAY,Fouday,Fouday,COM,67144,0,FOUDAY,Fouday,Fouday +34,1992-01-01,COMA,67144,0,FOUDAY,Fouday,Fouday,COM,67513,0,WALDERSBACH,Waldersbach,Waldersbach 21,1992-01-01,COM,67513,2,BAN DE LA ROCHE,Ban-de-la-Roche,Le Ban-de-la-Roche,COM,67026,0,BELLEFOSSE,Bellefosse,Bellefosse +21,1992-01-01,COM,67513,2,BAN DE LA ROCHE,Ban-de-la-Roche,Le Ban-de-la-Roche,COM,67027,0,BELMONT,Belmont,Belmont 21,1992-01-01,COM,67513,2,BAN DE LA ROCHE,Ban-de-la-Roche,Le Ban-de-la-Roche,COM,67144,0,FOUDAY,Fouday,Fouday 21,1992-01-01,COM,67513,2,BAN DE LA ROCHE,Ban-de-la-Roche,Le Ban-de-la-Roche,COM,67513,0,WALDERSBACH,Waldersbach,Waldersbach -21,1992-01-01,COM,67513,2,BAN DE LA ROCHE,Ban-de-la-Roche,Le Ban-de-la-Roche,COM,67027,0,BELMONT,Belmont,Belmont -21,1992-01-01,COMA,79073,3,CHAPELLE LARGEAU,Chapelle-Largeau,La Chapelle-Largeau,COMA,79073,3,CHAPELLE LARGEAU,Chapelle-Largeau,La Chapelle-Largeau -21,1992-01-01,COM,79079,0,MAULEON,Mauléon,Mauléon,COMA,79233,0,RORTHAIS,Rorthais,Rorthais 21,1992-01-01,COM,79079,0,MAULEON,Mauléon,Mauléon,COM,79079,0,MAULEON,Mauléon,Mauléon 21,1992-01-01,COM,79079,0,MAULEON,Mauléon,Mauléon,COM,79235,0,SAINT AMAND SUR SEVRE,Saint-Amand-sur-Sèvre,Saint-Amand-sur-Sèvre -21,1992-01-01,COM,79079,0,MAULEON,Mauléon,Mauléon,COMA,79073,3,CHAPELLE LARGEAU,Chapelle-Largeau,La Chapelle-Largeau -21,1992-01-01,COM,79079,0,MAULEON,Mauléon,Mauléon,COMA,79155,0,LOUBLANDE,Loublande,Loublande -21,1992-01-01,COM,79079,0,MAULEON,Mauléon,Mauléon,COMA,79323,2,TEMPLE,Temple,Le Temple -21,1992-01-01,COM,79079,0,MAULEON,Mauléon,Mauléon,COMA,79186,0,MOULINS,Moulins,Moulins -21,1992-01-01,COM,79079,0,MAULEON,Mauléon,Mauléon,COMA,79237,0,SAINT AUBIN DE BAUBIGNE,Saint-Aubin-de-Baubigné,Saint-Aubin-de-Baubigné -21,1992-01-01,COMA,79155,0,LOUBLANDE,Loublande,Loublande,COMA,79155,0,LOUBLANDE,Loublande,Loublande -21,1992-01-01,COMA,79186,0,MOULINS,Moulins,Moulins,COMA,79186,0,MOULINS,Moulins,Moulins -21,1992-01-01,COMA,79233,0,RORTHAIS,Rorthais,Rorthais,COMA,79233,0,RORTHAIS,Rorthais,Rorthais +34,1992-01-01,COMA,79235,0,SAINT AMAND SUR SEVRE,Saint-Amand-sur-Sèvre,Saint-Amand-sur-Sèvre,COM,79079,0,MAULEON,Mauléon,Mauléon 21,1992-01-01,COMA,79235,0,SAINT AMAND SUR SEVRE,Saint-Amand-sur-Sèvre,Saint-Amand-sur-Sèvre,COM,79235,0,SAINT AMAND SUR SEVRE,Saint-Amand-sur-Sèvre,Saint-Amand-sur-Sèvre -21,1992-01-01,COMA,79237,0,SAINT AUBIN DE BAUBIGNE,Saint-Aubin-de-Baubigné,Saint-Aubin-de-Baubigné,COMA,79237,0,SAINT AUBIN DE BAUBIGNE,Saint-Aubin-de-Baubigné,Saint-Aubin-de-Baubigné -21,1992-01-01,COMA,79323,2,TEMPLE,Temple,Le Temple,COMA,79323,2,TEMPLE,Temple,Le Temple -10,1991-12-20,COM,04049,0,CHATEAU ARNOUX,Château-Arnoux,Château-Arnoux,COM,04049,0,CHATEAU ARNOUX SAINT AUBAN,Château-Arnoux-Saint-Auban,Château-Arnoux-Saint-Auban -10,1991-12-20,COM,05163,2,SAUZE,Sauze,Le Sauze,COM,05163,2,SAUZE DU LAC,Sauze-du-Lac,Le Sauze-du-Lac -10,1991-12-20,COM,07102,0,GUILHERAND,Guilherand,Guilherand,COM,07102,0,GUILHERAND GRANGES,Guilherand-Granges,Guilherand-Granges +10,1991-12-20,COM,4049,0,CHATEAU ARNOUX,Château-Arnoux,Château-Arnoux,COM,4049,0,CHATEAU ARNOUX SAINT AUBAN,Château-Arnoux-Saint-Auban,Château-Arnoux-Saint-Auban +10,1991-12-20,COM,5163,2,SAUZE,Sauze,Le Sauze,COM,5163,2,SAUZE DU LAC,Sauze-du-Lac,Le Sauze-du-Lac +10,1991-12-20,COM,7102,0,GUILHERAND,Guilherand,Guilherand,COM,7102,0,GUILHERAND GRANGES,Guilherand-Granges,Guilherand-Granges 10,1991-12-20,COM,34287,0,SAINT SATURNIN,Saint-Saturnin,Saint-Saturnin,COM,34287,0,SAINT SATURNIN DE LUCIAN,Saint-Saturnin-de-Lucian,Saint-Saturnin-de-Lucian 10,1991-12-20,COM,38359,0,SAINT ANTOINE,Saint-Antoine,Saint-Antoine,COM,38359,0,SAINT ANTOINE L ABBAYE,Saint-Antoine-l'Abbaye,Saint-Antoine-l'Abbaye 10,1991-12-20,COM,50041,0,BEAUMONT,Beaumont,Beaumont,COM,50041,0,BEAUMONT HAGUE,Beaumont-Hague,Beaumont-Hague @@ -6904,14 +6500,15 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 34,1991-06-01,COMA,88217,0,GRANGES DE PLOMBIERES,Granges-de-Plombières,Granges-de-Plombières,COM,88351,0,PLOMBIERES LES BAINS,Plombières-les-Bains,Plombières-les-Bains 34,1991-06-01,COM,88351,0,PLOMBIERES LES BAINS,Plombières-les-Bains,Plombières-les-Bains,COM,88351,0,PLOMBIERES LES BAINS,Plombières-les-Bains,Plombières-les-Bains 34,1991-06-01,COMA,88405,0,RUAUX,Ruaux,Ruaux,COM,88351,0,PLOMBIERES LES BAINS,Plombières-les-Bains,Plombières-les-Bains -10,1991-03-21,COM,01088,0,CHARNOZ,Charnoz,Charnoz,COM,01088,0,CHARNOZ SUR AIN,Charnoz-sur-Ain,Charnoz-sur-Ain -10,1991-03-21,COM,01449,0,VILLETTE,Villette,Villette,COM,01449,0,VILLETTE SUR AIN,Villette-sur-Ain,Villette-sur-Ain +10,1991-03-21,COM,1088,0,CHARNOZ,Charnoz,Charnoz,COM,1088,0,CHARNOZ SUR AIN,Charnoz-sur-Ain,Charnoz-sur-Ain +10,1991-03-21,COM,1449,0,VILLETTE,Villette,Villette,COM,1449,0,VILLETTE SUR AIN,Villette-sur-Ain,Villette-sur-Ain 10,1991-03-21,COM,25151,0,CHEVIGNEY,Chevigney,Chevigney,COM,25151,0,CHEVIGNEY LES VERCEL,Chevigney-lès-Vercel,Chevigney-lès-Vercel 10,1991-03-21,COM,27604,0,SAINT SULPICE DE GRAIMBOUVILLE,Saint-Sulpice-de-Graimbouville,Saint-Sulpice-de-Graimbouville,COM,27604,0,SAINT SULPICE DE GRIMBOUVILLE,Saint-Sulpice-de-Grimbouville,Saint-Sulpice-de-Grimbouville 10,1991-03-21,COM,33127,0,CIVRAC DE DORDOGNE,Civrac-de-Dordogne,Civrac-de-Dordogne,COM,33127,0,CIVRAC SUR DORDOGNE,Civrac-sur-Dordogne,Civrac-sur-Dordogne -21,1991-01-01,COMA,08047,0,BARBAISE,Barbaise,Barbaise,COM,08047,0,BARBAISE,Barbaise,Barbaise -21,1991-01-01,COM,08352,0,RAILLICOURT BARBAISE,Raillicourt-Barbaise,Raillicourt-Barbaise,COM,08352,0,RAILLICOURT,Raillicourt,Raillicourt -21,1991-01-01,COM,08352,0,RAILLICOURT BARBAISE,Raillicourt-Barbaise,Raillicourt-Barbaise,COM,08047,0,BARBAISE,Barbaise,Barbaise +21,1991-01-01,COMA,8047,0,BARBAISE,Barbaise,Barbaise,COM,8047,0,BARBAISE,Barbaise,Barbaise +34,1991-01-01,COMA,8047,0,BARBAISE,Barbaise,Barbaise,COM,8352,0,RAILLICOURT,Raillicourt,Raillicourt +21,1991-01-01,COM,8352,0,RAILLICOURT BARBAISE,Raillicourt-Barbaise,Raillicourt-Barbaise,COM,8047,0,BARBAISE,Barbaise,Barbaise +21,1991-01-01,COM,8352,0,RAILLICOURT BARBAISE,Raillicourt-Barbaise,Raillicourt-Barbaise,COM,8352,0,RAILLICOURT,Raillicourt,Raillicourt 33,1990-12-10,COM,62119,0,BETHUNE,Béthune,Béthune,COM,62119,0,BETHUNE,Béthune,Béthune 33,1990-12-10,COM,62847,0,VERQUIGNEUL,Verquigneul,Verquigneul,COM,62119,0,BETHUNE,Béthune,Béthune 33,1990-12-10,COM,62847,0,VERQUIGNEUL,Verquigneul,Verquigneul,COMA,62847,0,VERQUIGNEUL,Verquigneul,Verquigneul @@ -6922,62 +6519,52 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 34,1990-07-01,COMA,43161,0,REILHAC,Reilhac,Reilhac,COM,43132,0,MAZEYRAT D ALLIER,Mazeyrat-d'Allier,Mazeyrat-d'Allier 34,1990-07-01,COMA,43179,0,SAINT EBLE,Saint-Eble,Saint-Eble,COM,43132,0,MAZEYRAT D ALLIER,Mazeyrat-d'Allier,Mazeyrat-d'Allier 21,1990-07-01,COM,52113,0,CHASSIGNY AISEY,Chassigny-Aisey,Chassigny-Aisey,COM,52113,0,CHASSIGNY,Chassigny,Chassigny -21,1990-07-01,COM,52113,0,CHASSIGNY AISEY,Chassigny-Aisey,Chassigny-Aisey,COM,52228,0,GRANDCHAMP,Grandchamp,Grandchamp -21,1990-07-01,COM,52113,0,CHASSIGNY AISEY,Chassigny-Aisey,Chassigny-Aisey,COM,52170,0,DOMMARIEN,Dommarien,Dommarien 21,1990-07-01,COM,52113,0,CHASSIGNY AISEY,Chassigny-Aisey,Chassigny-Aisey,COM,52145,0,COUBLANC,Coublanc,Coublanc +21,1990-07-01,COM,52113,0,CHASSIGNY AISEY,Chassigny-Aisey,Chassigny-Aisey,COM,52170,0,DOMMARIEN,Dommarien,Dommarien +21,1990-07-01,COM,52113,0,CHASSIGNY AISEY,Chassigny-Aisey,Chassigny-Aisey,COM,52228,0,GRANDCHAMP,Grandchamp,Grandchamp +34,1990-07-01,COMA,52145,0,COUBLANC,Coublanc,Coublanc,COM,52113,0,CHASSIGNY,Chassigny,Chassigny 21,1990-07-01,COMA,52145,0,COUBLANC,Coublanc,Coublanc,COM,52145,0,COUBLANC,Coublanc,Coublanc +34,1990-07-01,COMA,52145,0,COUBLANC,Coublanc,Coublanc,COM,52170,0,DOMMARIEN,Dommarien,Dommarien +34,1990-07-01,COMA,52145,0,COUBLANC,Coublanc,Coublanc,COM,52228,0,GRANDCHAMP,Grandchamp,Grandchamp +34,1990-07-01,COMA,52170,0,DOMMARIEN,Dommarien,Dommarien,COM,52113,0,CHASSIGNY,Chassigny,Chassigny +34,1990-07-01,COMA,52170,0,DOMMARIEN,Dommarien,Dommarien,COM,52145,0,COUBLANC,Coublanc,Coublanc 21,1990-07-01,COMA,52170,0,DOMMARIEN,Dommarien,Dommarien,COM,52170,0,DOMMARIEN,Dommarien,Dommarien +34,1990-07-01,COMA,52170,0,DOMMARIEN,Dommarien,Dommarien,COM,52228,0,GRANDCHAMP,Grandchamp,Grandchamp +34,1990-07-01,COMA,52228,0,GRANDCHAMP,Grandchamp,Grandchamp,COM,52113,0,CHASSIGNY,Chassigny,Chassigny +34,1990-07-01,COMA,52228,0,GRANDCHAMP,Grandchamp,Grandchamp,COM,52145,0,COUBLANC,Coublanc,Coublanc +34,1990-07-01,COMA,52228,0,GRANDCHAMP,Grandchamp,Grandchamp,COM,52170,0,DOMMARIEN,Dommarien,Dommarien 21,1990-07-01,COMA,52228,0,GRANDCHAMP,Grandchamp,Grandchamp,COM,52228,0,GRANDCHAMP,Grandchamp,Grandchamp -34,1990-04-01,COMA,70068,0,BETONCOURT LES MENETRIERS,Betoncourt-les-Ménétriers,Betoncourt-les-Ménétriers,COM,70373,3,ROCHE MOREY,Roche-Morey,La Roche-Morey -34,1990-04-01,COMA,70068,0,BETONCOURT LES MENETRIERS,Betoncourt-les-Ménétriers,Betoncourt-les-Ménétriers,COMA,70068,0,BETONCOURT LES MENETRIERS,Betoncourt-les-Ménétriers,Betoncourt-les-Ménétriers -34,1990-04-01,COM,70373,3,ROCHE MOREY,Roche-Morey,La Roche-Morey,COMA,70068,0,BETONCOURT LES MENETRIERS,Betoncourt-les-Ménétriers,Betoncourt-les-Ménétriers 34,1990-04-01,COM,70373,3,ROCHE MOREY,Roche-Morey,La Roche-Morey,COM,70373,3,ROCHE MOREY,Roche-Morey,La Roche-Morey -34,1990-04-01,COM,70373,3,ROCHE MOREY,Roche-Morey,La Roche-Morey,COMA,70465,0,SAINT JULIEN,Saint-Julien,Saint-Julien -34,1990-04-01,COMA,70465,0,SAINT JULIEN,Saint-Julien,Saint-Julien,COMA,70465,0,SAINT JULIEN,Saint-Julien,Saint-Julien -34,1990-04-01,COMA,70465,0,SAINT JULIEN,Saint-Julien,Saint-Julien,COM,70373,3,ROCHE MOREY,Roche-Morey,La Roche-Morey 34,1990-04-01,COMA,70495,0,SUAUCOURT ET PISSELOUP,Suaucourt-et-Pisseloup,Suaucourt-et-Pisseloup,COM,70373,3,ROCHE MOREY,Roche-Morey,La Roche-Morey 34,1990-03-01,COMA,52048,0,BIENVILLE,Bienville,Bienville,COM,52194,1,EURVILLE BIENVILLE,Eurville-Bienville,Eurville-Bienville 34,1990-03-01,COM,52194,1,EURVILLE BIENVILLE,Eurville-Bienville,Eurville-Bienville,COM,52194,1,EURVILLE BIENVILLE,Eurville-Bienville,Eurville-Bienville -50,1990-02-01,COMA,14010,1,AMMEVILLE,Ammeville,Ammeville,COMA,14010,1,AMMEVILLE,Ammeville,Ammeville -50,1990-02-01,COMA,14010,1,AMMEVILLE,Ammeville,Ammeville,COM,14697,5,OUDON,Oudon,L'Oudon -50,1990-02-01,COMA,14067,0,BERVILLE,Berville,Berville,COM,14697,5,OUDON,Oudon,L'Oudon -50,1990-02-01,COMA,14067,0,BERVILLE,Berville,Berville,COMA,14067,0,BERVILLE,Berville,Berville -50,1990-02-01,COMA,14234,1,ECOTS,Écots,Écots,COM,14697,5,OUDON,Oudon,L'Oudon -50,1990-02-01,COMA,14234,1,ECOTS,Écots,Écots,COMA,14234,1,ECOTS,Écots,Écots -50,1990-02-01,COMA,14295,0,GARNETOT,Garnetot,Garnetot,COM,14697,5,OUDON,Oudon,L'Oudon -50,1990-02-01,COMA,14295,0,GARNETOT,Garnetot,Garnetot,COMA,14295,0,GARNETOT,Garnetot,Garnetot -50,1990-02-01,COMA,14314,0,GRANDMESNIL,Grandmesnil,Grandmesnil,COM,14697,5,OUDON,Oudon,L'Oudon -50,1990-02-01,COMA,14314,0,GRANDMESNIL,Grandmesnil,Grandmesnil,COMA,14314,0,GRANDMESNIL,Grandmesnil,Grandmesnil -50,1990-02-01,COMA,14363,0,LIEURY,Lieury,Lieury,COM,14697,5,OUDON,Oudon,L'Oudon -50,1990-02-01,COMA,14363,0,LIEURY,Lieury,Lieury,COMA,14363,0,LIEURY,Lieury,Lieury -50,1990-02-01,COMA,14447,0,MONTPINCON,Montpinçon,Montpinçon,COM,14697,5,OUDON,Oudon,L'Oudon -50,1990-02-01,COMA,14447,0,MONTPINCON,Montpinçon,Montpinçon,COMA,14447,0,MONTPINCON,Montpinçon,Montpinçon -50,1990-02-01,COMA,14472,0,NOTRE DAME DE FRESNAY,Notre-Dame-de-Fresnay,Notre-Dame-de-Fresnay,COM,14697,5,OUDON,Oudon,L'Oudon -50,1990-02-01,COMA,14472,0,NOTRE DAME DE FRESNAY,Notre-Dame-de-Fresnay,Notre-Dame-de-Fresnay,COMA,14472,0,NOTRE DAME DE FRESNAY,Notre-Dame-de-Fresnay,Notre-Dame-de-Fresnay -50,1990-02-01,COM,14624,5,OUDON,Oudon,L'Oudon,COMA,14624,0,SAINT MARTIN DE FRESNAY,Saint-Martin-de-Fresnay,Saint-Martin-de-Fresnay 50,1990-02-01,COM,14624,5,OUDON,Oudon,L'Oudon,COM,14697,5,OUDON,Oudon,L'Oudon -50,1990-02-01,COMA,14697,0,TOTES,Tôtes,Tôtes,COM,14697,5,OUDON,Oudon,L'Oudon +50,1990-02-01,COMA,14697,0,TOTES,Tôtes,Tôtes,COMA,14624,0,SAINT MARTIN DE FRESNAY,Saint-Martin-de-Fresnay,Saint-Martin-de-Fresnay 21,1990-01-01,COMA,10043,0,BESSY,Bessy,Bessy,COM,10043,0,BESSY,Bessy,Bessy -21,1990-01-01,COM,10316,0,RHEGES BESSY,Rhèges-Bessy,Rhèges-Bessy,COM,10316,0,RHEGES,Rhèges,Rhèges +34,1990-01-01,COMA,10043,0,BESSY,Bessy,Bessy,COM,10316,0,RHEGES,Rhèges,Rhèges 21,1990-01-01,COM,10316,0,RHEGES BESSY,Rhèges-Bessy,Rhèges-Bessy,COM,10043,0,BESSY,Bessy,Bessy +21,1990-01-01,COM,10316,0,RHEGES BESSY,Rhèges-Bessy,Rhèges-Bessy,COM,10316,0,RHEGES,Rhèges,Rhèges 33,1990-01-01,COM,53024,0,BAZOUGES,Bazouges,Bazouges,COMA,53024,0,BAZOUGES,Bazouges,Bazouges 33,1990-01-01,COM,53024,0,BAZOUGES,Bazouges,Bazouges,COM,53062,0,CHATEAU GONTIER,Château-Gontier,Château-Gontier 33,1990-01-01,COM,53062,0,CHATEAU GONTIER,Château-Gontier,Château-Gontier,COM,53062,0,CHATEAU GONTIER,Château-Gontier,Château-Gontier 21,1990-01-01,COMA,55409,0,PRETZ,Pretz,Pretz,COM,55409,0,PRETZ EN ARGONNE,Pretz-en-Argonne,Pretz-en-Argonne -21,1990-01-01,COMA,55480,0,SENARD,Senard,Senard,COMA,55480,0,SENARD,Senard,Senard +34,1990-01-01,COMA,55409,0,PRETZ,Pretz,Pretz,COM,55517,0,SEUIL D ARGONNE,Seuil-d'Argonne,Seuil-d'Argonne 21,1990-01-01,COM,55517,0,SEUIL D ARGONNE,Seuil-d'Argonne,Seuil-d'Argonne,COM,55409,0,PRETZ EN ARGONNE,Pretz-en-Argonne,Pretz-en-Argonne -21,1990-01-01,COM,55517,0,SEUIL D ARGONNE,Seuil-d'Argonne,Seuil-d'Argonne,COMA,55480,0,SENARD,Senard,Senard 21,1990-01-01,COM,55517,0,SEUIL D ARGONNE,Seuil-d'Argonne,Seuil-d'Argonne,COM,55517,0,SEUIL D ARGONNE,Seuil-d'Argonne,Seuil-d'Argonne 33,1989-09-30,COM,38139,0,CREYS ET PUSIGNIEU,Creys-et-Pusignieu,Creys-et-Pusignieu,COM,38139,0,CREYS MEPIEU,Creys-Mépieu,Creys-Mépieu 33,1989-09-30,COM,38227,0,MEPIEU,Mépieu,Mépieu,COM,38139,0,CREYS MEPIEU,Creys-Mépieu,Creys-Mépieu 33,1989-09-30,COM,38227,0,MEPIEU,Mépieu,Mépieu,COMA,38227,0,MEPIEU,Mépieu,Mépieu 21,1989-09-30,COMA,66099,0,LLAURO,Llauro,Llauro,COM,66099,0,LLAURO,Llauro,Llauro +34,1989-09-30,COMA,66099,0,LLAURO,Llauro,Llauro,COM,66134,0,PASSA,Passa,Passa +34,1989-09-30,COMA,66099,0,LLAURO,Llauro,Llauro,COM,66211,0,TORDERES,Tordères,Tordères 21,1989-09-30,COM,66134,0,PASSA LLAURO TORDERES,Passa-Llauro-Tordères,Passa-Llauro-Tordères,COM,66099,0,LLAURO,Llauro,Llauro -21,1989-09-30,COM,66134,0,PASSA LLAURO TORDERES,Passa-Llauro-Tordères,Passa-Llauro-Tordères,COM,66211,0,TORDERES,Tordères,Tordères 21,1989-09-30,COM,66134,0,PASSA LLAURO TORDERES,Passa-Llauro-Tordères,Passa-Llauro-Tordères,COM,66134,0,PASSA,Passa,Passa +21,1989-09-30,COM,66134,0,PASSA LLAURO TORDERES,Passa-Llauro-Tordères,Passa-Llauro-Tordères,COM,66211,0,TORDERES,Tordères,Tordères +34,1989-09-30,COMA,66211,0,TORDERES,Tordères,Tordères,COM,66099,0,LLAURO,Llauro,Llauro +34,1989-09-30,COMA,66211,0,TORDERES,Tordères,Tordères,COM,66134,0,PASSA,Passa,Passa 21,1989-09-30,COMA,66211,0,TORDERES,Tordères,Tordères,COM,66211,0,TORDERES,Tordères,Tordères -10,1989-08-20,COM,05134,0,SAINT CLEMENT,Saint-Clément,Saint-Clément,COM,05134,0,SAINT CLEMENT SUR DURANCE,Saint-Clément-sur-Durance,Saint-Clément-sur-Durance -10,1989-08-20,COM,07011,1,ANTRAIGUES,Antraigues,Antraigues,COM,07011,1,ANTRAIGUES SUR VOLANE,Antraigues-sur-Volane,Antraigues-sur-Volane +10,1989-08-20,COM,5134,0,SAINT CLEMENT,Saint-Clément,Saint-Clément,COM,5134,0,SAINT CLEMENT SUR DURANCE,Saint-Clément-sur-Durance,Saint-Clément-sur-Durance +10,1989-08-20,COM,7011,1,ANTRAIGUES,Antraigues,Antraigues,COM,7011,1,ANTRAIGUES SUR VOLANE,Antraigues-sur-Volane,Antraigues-sur-Volane 10,1989-08-20,COM,34335,0,VILLEMAGNE,Villemagne,Villemagne,COM,34335,0,VILLEMAGNE L ARGENTIERE,Villemagne-l'Argentière,Villemagne-l'Argentière 10,1989-08-20,COM,35242,0,RIMOUX,Rimoux,Rimoux,COM,35242,0,RIMOU,Rimou,Rimou 10,1989-08-20,COM,55346,0,MONTFAUCON,Montfaucon,Montfaucon,COM,55346,0,MONTFAUCON D ARGONNE,Montfaucon-d'Argonne,Montfaucon-d'Argonne @@ -6987,83 +6574,64 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1989-08-20,COM,68250,1,ORSCHWIR,Orschwir,Orschwir,COM,68250,1,ORSCHWIHR,Orschwihr,Orschwihr 10,1989-08-20,COM,93073,0,TREMBLAY LES GONESSE,Tremblay-lès-Gonesse,Tremblay-lès-Gonesse,COM,93073,0,TREMBLAY EN FRANCE,Tremblay-en-France,Tremblay-en-France 21,1989-02-15,COM,24068,2,BUISSON DE CADOUIN,Buisson-de-Cadouin,Le Buisson-de-Cadouin,COM,24068,2,BUISSON DE CADOUIN,Buisson-de-Cadouin,Le Buisson-de-Cadouin -21,1989-02-15,COM,24068,2,BUISSON DE CADOUIN,Buisson-de-Cadouin,Le Buisson-de-Cadouin,COMA,24315,0,PALEYRAC,Paleyrac,Paleyrac -21,1989-02-15,COM,24068,2,BUISSON DE CADOUIN,Buisson-de-Cadouin,Le Buisson-de-Cadouin,COMA,24072,0,CADOUIN,Cadouin,Cadouin 21,1989-02-15,COM,24068,2,BUISSON DE CADOUIN,Buisson-de-Cadouin,Le Buisson-de-Cadouin,COM,24560,1,URVAL,Urval,Urval -21,1989-02-15,COMA,24072,0,CADOUIN,Cadouin,Cadouin,COMA,24072,0,CADOUIN,Cadouin,Cadouin -21,1989-02-15,COMA,24315,0,PALEYRAC,Paleyrac,Paleyrac,COMA,24315,0,PALEYRAC,Paleyrac,Paleyrac +34,1989-02-15,COMA,24560,1,URVAL,Urval,Urval,COM,24068,2,BUISSON DE CADOUIN,Buisson-de-Cadouin,Le Buisson-de-Cadouin 21,1989-02-15,COMA,24560,1,URVAL,Urval,Urval,COM,24560,1,URVAL,Urval,Urval 20,1989-02-15,COM,38422,0,SAINT MARTIN D URIAGE,Saint-Martin-d'Uriage,Saint-Martin-d'Uriage,COM,38422,0,SAINT MARTIN D URIAGE,Saint-Martin-d'Uriage,Saint-Martin-d'Uriage 20,1989-02-15,COM,38422,0,SAINT MARTIN D URIAGE,Saint-Martin-d'Uriage,Saint-Martin-d'Uriage,COM,38567,0,CHAMROUSSE,Chamrousse,Chamrousse 20,1989-02-15,COM,38478,0,SECHILIENNE,Séchilienne,Séchilienne,COM,38478,0,SECHILIENNE,Séchilienne,Séchilienne 20,1989-02-15,COM,38478,0,SECHILIENNE,Séchilienne,Séchilienne,COM,38567,0,CHAMROUSSE,Chamrousse,Chamrousse -20,1989-02-15,COM,38529,0,VAULNAVEYS LE HAUT,Vaulnaveys-le-Haut,Vaulnaveys-le-Haut,COM,38567,0,CHAMROUSSE,Chamrousse,Chamrousse 20,1989-02-15,COM,38529,0,VAULNAVEYS LE HAUT,Vaulnaveys-le-Haut,Vaulnaveys-le-Haut,COM,38529,0,VAULNAVEYS LE HAUT,Vaulnaveys-le-Haut,Vaulnaveys-le-Haut +20,1989-02-15,COM,38529,0,VAULNAVEYS LE HAUT,Vaulnaveys-le-Haut,Vaulnaveys-le-Haut,COM,38567,0,CHAMROUSSE,Chamrousse,Chamrousse 21,1989-02-15,COMA,52042,0,BEAUCHEMIN,Beauchemin,Beauchemin,COM,52042,0,BEAUCHEMIN,Beauchemin,Beauchemin -21,1989-02-15,COMA,52111,0,CHARMOILLES,Charmoilles,Charmoilles,COMA,52111,0,CHARMOILLES,Charmoilles,Charmoilles -21,1989-02-15,COMA,52270,0,LANNES,Lannes,Lannes,COMA,52270,0,LANNES,Lannes,Lannes -21,1989-02-15,COM,52432,0,ROLAMPONT,Rolampont,Rolampont,COMA,52270,0,LANNES,Lannes,Lannes -21,1989-02-15,COM,52432,0,ROLAMPONT,Rolampont,Rolampont,COM,52432,0,ROLAMPONT,Rolampont,Rolampont -21,1989-02-15,COM,52432,0,ROLAMPONT,Rolampont,Rolampont,COMA,52498,0,TRONCHOY,Tronchoy,Tronchoy +34,1989-02-15,COMA,52042,0,BEAUCHEMIN,Beauchemin,Beauchemin,COM,52432,0,ROLAMPONT,Rolampont,Rolampont 21,1989-02-15,COM,52432,0,ROLAMPONT,Rolampont,Rolampont,COM,52042,0,BEAUCHEMIN,Beauchemin,Beauchemin -21,1989-02-15,COM,52432,0,ROLAMPONT,Rolampont,Rolampont,COMA,52111,0,CHARMOILLES,Charmoilles,Charmoilles -21,1989-02-15,COMA,52498,0,TRONCHOY,Tronchoy,Tronchoy,COMA,52498,0,TRONCHOY,Tronchoy,Tronchoy -21,1989-01-01,COM,05023,0,BRIANCON,Briançon,Briançon,COM,05023,0,BRIANCON,Briançon,Briançon -21,1989-01-01,COM,05023,0,BRIANCON,Briançon,Briançon,COM,05109,0,PUY SAINT PIERRE,Puy-Saint-Pierre,Puy-Saint-Pierre -21,1989-01-01,COMA,05109,0,PUY SAINT PIERRE,Puy-Saint-Pierre,Puy-Saint-Pierre,COM,05109,0,PUY SAINT PIERRE,Puy-Saint-Pierre,Puy-Saint-Pierre -21,1989-01-01,COM,07132,0,LARGENTIERE,Largentière,Largentière,COM,07132,0,LARGENTIERE,Largentière,Largentière -21,1989-01-01,COM,07132,0,LARGENTIERE,Largentière,Largentière,COM,07318,0,TAURIERS,Tauriers,Tauriers -21,1989-01-01,COMA,07318,0,TAURIERS,Tauriers,Tauriers,COM,07318,0,TAURIERS,Tauriers,Tauriers -21,1989-01-01,COM,08125,0,MONTCORNET EN ARDENNE,Montcornet-en-Ardenne,Montcornet-en-Ardenne,COM,08297,0,MONTCORNET,Montcornet,Montcornet -21,1989-01-01,COM,08125,0,MONTCORNET EN ARDENNE,Montcornet-en-Ardenne,Montcornet-en-Ardenne,COM,08125,0,CLIRON,Cliron,Cliron -21,1989-01-01,COMA,08297,0,MONTCORNET,Montcornet,Montcornet,COM,08297,0,MONTCORNET,Montcornet,Montcornet -21,1989-01-01,COM,11195,0,LAURABUC ET MIREVAL,Laurabuc-et-Mireval,Laurabuc-et-Mireval,COM,11234,0,MIREVAL LAURAGAIS,Mireval-Lauragais,Mireval-Lauragais +21,1989-02-15,COM,52432,0,ROLAMPONT,Rolampont,Rolampont,COM,52432,0,ROLAMPONT,Rolampont,Rolampont +21,1989-01-01,COM,5023,0,BRIANCON,Briançon,Briançon,COM,5023,0,BRIANCON,Briançon,Briançon +21,1989-01-01,COM,5023,0,BRIANCON,Briançon,Briançon,COM,5109,0,PUY SAINT PIERRE,Puy-Saint-Pierre,Puy-Saint-Pierre +34,1989-01-01,COMA,5109,0,PUY SAINT PIERRE,Puy-Saint-Pierre,Puy-Saint-Pierre,COM,5023,0,BRIANCON,Briançon,Briançon +21,1989-01-01,COMA,5109,0,PUY SAINT PIERRE,Puy-Saint-Pierre,Puy-Saint-Pierre,COM,5109,0,PUY SAINT PIERRE,Puy-Saint-Pierre,Puy-Saint-Pierre +21,1989-01-01,COM,7132,0,LARGENTIERE,Largentière,Largentière,COM,7132,0,LARGENTIERE,Largentière,Largentière +21,1989-01-01,COM,7132,0,LARGENTIERE,Largentière,Largentière,COM,7318,0,TAURIERS,Tauriers,Tauriers +34,1989-01-01,COMA,7318,0,TAURIERS,Tauriers,Tauriers,COM,7132,0,LARGENTIERE,Largentière,Largentière +21,1989-01-01,COMA,7318,0,TAURIERS,Tauriers,Tauriers,COM,7318,0,TAURIERS,Tauriers,Tauriers +21,1989-01-01,COM,8125,0,MONTCORNET EN ARDENNE,Montcornet-en-Ardenne,Montcornet-en-Ardenne,COM,8125,0,CLIRON,Cliron,Cliron +21,1989-01-01,COM,8125,0,MONTCORNET EN ARDENNE,Montcornet-en-Ardenne,Montcornet-en-Ardenne,COM,8297,0,MONTCORNET,Montcornet,Montcornet +34,1989-01-01,COMA,8297,0,MONTCORNET,Montcornet,Montcornet,COM,8125,0,CLIRON,Cliron,Cliron +21,1989-01-01,COMA,8297,0,MONTCORNET,Montcornet,Montcornet,COM,8297,0,MONTCORNET,Montcornet,Montcornet 21,1989-01-01,COM,11195,0,LAURABUC ET MIREVAL,Laurabuc-et-Mireval,Laurabuc-et-Mireval,COM,11195,0,LAURABUC,Laurabuc,Laurabuc +21,1989-01-01,COM,11195,0,LAURABUC ET MIREVAL,Laurabuc-et-Mireval,Laurabuc-et-Mireval,COM,11234,0,MIREVAL LAURAGAIS,Mireval-Lauragais,Mireval-Lauragais +34,1989-01-01,COMA,11234,0,MIREVAL LAURAGAIS,Mireval-Lauragais,Mireval-Lauragais,COM,11195,0,LAURABUC,Laurabuc,Laurabuc 21,1989-01-01,COMA,11234,0,MIREVAL LAURAGAIS,Mireval-Lauragais,Mireval-Lauragais,COM,11234,0,MIREVAL LAURAGAIS,Mireval-Lauragais,Mireval-Lauragais 31,1989-01-01,COM,33286,0,MONBADON,Monbadon,Monbadon,COM,33342,0,PUISSEGUIN,Puisseguin,Puisseguin 31,1989-01-01,COM,33342,0,PUISSEGUIN,Puisseguin,Puisseguin,COM,33342,0,PUISSEGUIN,Puisseguin,Puisseguin -21,1989-01-01,COMA,50017,1,ARDEVON,Ardevon,Ardevon,COMA,50017,1,ARDEVON,Ardevon,Ardevon 21,1989-01-01,COMA,50042,0,BEAUVOIR,Beauvoir,Beauvoir,COM,50042,0,BEAUVOIR,Beauvoir,Beauvoir -21,1989-01-01,COMA,50065,0,BOUCEY,Boucey,Boucey,COMA,50065,0,BOUCEY,Boucey,Boucey -21,1989-01-01,COMA,50141,0,CORMERAY,Cormeray,Cormeray,COMA,50141,0,CORMERAY,Cormeray,Cormeray -21,1989-01-01,COMA,50157,0,CUREY,Curey,Curey,COMA,50157,0,CUREY,Curey,Curey -21,1989-01-01,COMA,50331,0,MOIDREY,Moidrey,Moidrey,COMA,50331,0,MOIDREY,Moidrey,Moidrey -21,1989-01-01,COMA,50392,4,PAS,Pas,Les Pas,COMA,50392,4,PAS,Pas,Les Pas -21,1989-01-01,COM,50410,0,PONTORSON,Pontorson,Pontorson,COM,50410,0,PONTORSON,Pontorson,Pontorson +34,1989-01-01,COMA,50042,0,BEAUVOIR,Beauvoir,Beauvoir,COM,50410,0,PONTORSON,Pontorson,Pontorson 21,1989-01-01,COM,50410,0,PONTORSON,Pontorson,Pontorson,COM,50042,0,BEAUVOIR,Beauvoir,Beauvoir -21,1989-01-01,COM,50410,0,PONTORSON,Pontorson,Pontorson,COMA,50017,1,ARDEVON,Ardevon,Ardevon -21,1989-01-01,COM,50410,0,PONTORSON,Pontorson,Pontorson,COMA,50065,0,BOUCEY,Boucey,Boucey -21,1989-01-01,COM,50410,0,PONTORSON,Pontorson,Pontorson,COMA,50141,0,CORMERAY,Cormeray,Cormeray -21,1989-01-01,COM,50410,0,PONTORSON,Pontorson,Pontorson,COMA,50157,0,CUREY,Curey,Curey -21,1989-01-01,COM,50410,0,PONTORSON,Pontorson,Pontorson,COMA,50331,0,MOIDREY,Moidrey,Moidrey -21,1989-01-01,COM,50410,0,PONTORSON,Pontorson,Pontorson,COMA,50392,4,PAS,Pas,Les Pas -21,1989-01-01,COM,57372,0,KUNTZIG,Kuntzig,Kuntzig,COM,57767,0,STUCKANGE,Stuckange,Stuckange -21,1989-01-01,COM,57372,0,KUNTZIG,Kuntzig,Kuntzig,COM,57372,0,KUNTZIG,Kuntzig,Kuntzig -21,1989-01-01,COM,64269,1,IDRON LEE OUSSE SENDETS,Idron-Lée-Ousse-Sendets,Idron-Lée-Ousse-Sendets,COM,64329,0,LEE,Lée,Lée -21,1989-01-01,COM,64269,1,IDRON LEE OUSSE SENDETS,Idron-Lée-Ousse-Sendets,Idron-Lée-Ousse-Sendets,COMA,64518,0,SENDETS,Sendets,Sendets -21,1989-01-01,COM,64269,1,IDRON LEE OUSSE SENDETS,Idron-Lée-Ousse-Sendets,Idron-Lée-Ousse-Sendets,COMA,64439,1,OUSSE,Ousse,Ousse +21,1989-01-01,COM,50410,0,PONTORSON,Pontorson,Pontorson,COM,50410,0,PONTORSON,Pontorson,Pontorson +20,1989-01-01,COM,57372,0,KUNTZIG,Kuntzig,Kuntzig,COM,57372,0,KUNTZIG,Kuntzig,Kuntzig +20,1989-01-01,COM,57372,0,KUNTZIG,Kuntzig,Kuntzig,COM,57767,0,STUCKANGE,Stuckange,Stuckange 21,1989-01-01,COM,64269,1,IDRON LEE OUSSE SENDETS,Idron-Lée-Ousse-Sendets,Idron-Lée-Ousse-Sendets,COM,64269,1,IDRON OUSSE SENDETS,Idron-Ousse-Sendets,Idron-Ousse-Sendets +21,1989-01-01,COM,64269,1,IDRON LEE OUSSE SENDETS,Idron-Lée-Ousse-Sendets,Idron-Lée-Ousse-Sendets,COM,64329,0,LEE,Lée,Lée +34,1989-01-01,COMA,64329,0,LEE,Lée,Lée,COM,64269,1,IDRON OUSSE SENDETS,Idron-Ousse-Sendets,Idron-Ousse-Sendets 21,1989-01-01,COMA,64329,0,LEE,Lée,Lée,COM,64329,0,LEE,Lée,Lée -21,1989-01-01,COMA,64439,1,OUSSE,Ousse,Ousse,COMA,64439,1,OUSSE,Ousse,Ousse -21,1989-01-01,COMA,64518,0,SENDETS,Sendets,Sendets,COMA,64518,0,SENDETS,Sendets,Sendets -21,1989-01-01,COMA,67349,1,OBERROEDERN,Oberrœdern,Oberrœdern,COM,67349,1,OBERROEDERN,Oberrœdern,Oberrœdern -21,1989-01-01,COM,67484,0,STUNDWILLER,Stundwiller,Stundwiller,COM,67349,1,OBERROEDERN,Oberrœdern,Oberrœdern +21,1989-01-01,COMA,67349,1,OBERRODERN,Oberrœdern,Oberrœdern,COM,67349,1,OBERRODERN,Oberrœdern,Oberrœdern +34,1989-01-01,COMA,67349,1,OBERRODERN,Oberrœdern,Oberrœdern,COM,67484,0,STUNDWILLER,Stundwiller,Stundwiller +21,1989-01-01,COM,67484,0,STUNDWILLER,Stundwiller,Stundwiller,COM,67349,1,OBERRODERN,Oberrœdern,Oberrœdern 21,1989-01-01,COM,67484,0,STUNDWILLER,Stundwiller,Stundwiller,COM,67484,0,STUNDWILLER,Stundwiller,Stundwiller 21,1989-01-01,COM,70117,0,CHALONVILLARS MANDREVILLARS,Châlonvillars-Mandrevillars,Châlonvillars-Mandrevillars,COM,70117,0,CHALONVILLARS,Châlonvillars,Châlonvillars 21,1989-01-01,COM,70117,0,CHALONVILLARS MANDREVILLARS,Châlonvillars-Mandrevillars,Châlonvillars-Mandrevillars,COM,70330,0,MANDREVILLARS,Mandrevillars,Mandrevillars +34,1989-01-01,COMA,70330,0,MANDREVILLARS,Mandrevillars,Mandrevillars,COM,70117,0,CHALONVILLARS,Châlonvillars,Châlonvillars 21,1989-01-01,COMA,70330,0,MANDREVILLARS,Mandrevillars,Mandrevillars,COM,70330,0,MANDREVILLARS,Mandrevillars,Mandrevillars -21,1989-01-01,COM,97306,0,MANA,Mana,Mana,COM,97306,0,MANA,Mana,Mana -21,1989-01-01,COM,97306,0,MANA,Mana,Mana,COM,97361,1,AWALA YALIMAPO,Awala-Yalimapo,Awala-Yalimapo +20,1989-01-01,COM,97306,0,MANA,Mana,Mana,COM,97306,0,MANA,Mana,Mana +20,1989-01-01,COM,97306,0,MANA,Mana,Mana,COM,97361,1,AWALA YALIMAPO,Awala-Yalimapo,Awala-Yalimapo 34,1988-12-01,COM,53186,0,QUELAINES SAINT GAULT,Quelaines-Saint-Gault,Quelaines-Saint-Gault,COM,53186,0,QUELAINES SAINT GAULT,Quelaines-Saint-Gault,Quelaines-Saint-Gault 34,1988-12-01,COMA,53217,0,SAINT GAULT,Saint-Gault,Saint-Gault,COM,53186,0,QUELAINES SAINT GAULT,Quelaines-Saint-Gault,Quelaines-Saint-Gault 34,1988-08-01,COM,50197,0,GAVRAY,Gavray,Gavray,COM,50197,0,GAVRAY,Gavray,Gavray -34,1988-08-01,COM,50197,0,GAVRAY,Gavray,Gavray,COMA,50314,2,MESNIL HUE,Mesnil-Hue,Le Mesnil-Hue 34,1988-08-01,COMA,50307,2,MESNIL BONANT,Mesnil-Bonant,Le Mesnil-Bonant,COM,50197,0,GAVRAY,Gavray,Gavray -34,1988-08-01,COMA,50314,2,MESNIL HUE,Mesnil-Hue,Le Mesnil-Hue,COMA,50314,2,MESNIL HUE,Mesnil-Hue,Le Mesnil-Hue -34,1988-08-01,COMA,50314,2,MESNIL HUE,Mesnil-Hue,Le Mesnil-Hue,COM,50197,0,GAVRAY,Gavray,Gavray -10,1988-06-25,COM,04070,0,DIGNE,Digne,Digne,COM,04070,0,DIGNE LES BAINS,Digne-les-Bains,Digne-les-Bains -10,1988-06-25,COM,04134,3,MOTTE,Motte,La Motte,COM,04134,3,MOTTE DU CAIRE,Motte-du-Caire,La Motte-du-Caire -10,1988-06-25,COM,04178,0,SAINT ETIENNE,Saint-Étienne,Saint-Étienne,COM,04178,0,SAINT ETIENNE LES ORGUES,Saint-Étienne-les-Orgues,Saint-Étienne-les-Orgues +10,1988-06-25,COM,4070,0,DIGNE,Digne,Digne,COM,4070,0,DIGNE LES BAINS,Digne-les-Bains,Digne-les-Bains +10,1988-06-25,COM,4134,3,MOTTE,Motte,La Motte,COM,4134,3,MOTTE DU CAIRE,Motte-du-Caire,La Motte-du-Caire +10,1988-06-25,COM,4178,0,SAINT ETIENNE,Saint-Étienne,Saint-Étienne,COM,4178,0,SAINT ETIENNE LES ORGUES,Saint-Étienne-les-Orgues,Saint-Étienne-les-Orgues 10,1988-06-25,COM,21606,0,SERRIGNY,Serrigny,Serrigny,COM,21606,0,LADOIX SERRIGNY,Ladoix-Serrigny,Ladoix-Serrigny 10,1988-06-25,COM,34258,0,SAINT GENIES LE BAS,Saint-Geniès-le-Bas,Saint-Geniès-le-Bas,COM,34258,0,SAINT GENIES DE FONTEDIT,Saint-Geniès-de-Fontedit,Saint-Geniès-de-Fontedit 10,1988-06-25,COM,51416,1,ORBAIS,Orbais,Orbais,COM,51416,1,ORBAIS L ABBAYE,Orbais-l'Abbaye,Orbais-l'Abbaye @@ -7075,50 +6643,66 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 34,1988-05-01,COM,62137,0,BLANGERVAL BLANGERMONT,Blangerval-Blangermont,Blangerval-Blangermont,COM,62137,0,BLANGERVAL BLANGERMONT,Blangerval-Blangermont,Blangerval-Blangermont 34,1988-05-01,COMA,62417,0,HAUTECOTE,Hautecôte,Hautecôte,COM,62631,0,NUNCQ HAUTECOTE,Nuncq-Hautecôte,Nuncq-Hautecôte 34,1988-05-01,COM,62631,0,NUNCQ HAUTECOTE,Nuncq-Hautecôte,Nuncq-Hautecôte,COM,62631,0,NUNCQ HAUTECOTE,Nuncq-Hautecôte,Nuncq-Hautecôte -10,1988-03-18,COM,02430,0,LIESSE,Liesse,Liesse,COM,02430,0,LIESSE NOTRE DAME,Liesse-Notre-Dame,Liesse-Notre-Dame -10,1988-03-18,COM,05132,0,SAINT BONNET,Saint-Bonnet,Saint-Bonnet,COM,05132,0,SAINT BONNET EN CHAMPSAUR,Saint-Bonnet-en-Champsaur,Saint-Bonnet-en-Champsaur -10,1988-03-18,COM,06159,0,VILLEFRANCHE,Villefranche,Villefranche,COM,06159,0,VILLEFRANCHE SUR MER,Villefranche-sur-Mer,Villefranche-sur-Mer -10,1988-03-18,COM,07324,0,TOURNON,Tournon,Tournon,COM,07324,0,TOURNON SUR RHONE,Tournon-sur-Rhône,Tournon-sur-Rhône +10,1988-03-18,COM,2430,0,LIESSE,Liesse,Liesse,COM,2430,0,LIESSE NOTRE DAME,Liesse-Notre-Dame,Liesse-Notre-Dame +10,1988-03-18,COM,5132,0,SAINT BONNET,Saint-Bonnet,Saint-Bonnet,COM,5132,0,SAINT BONNET EN CHAMPSAUR,Saint-Bonnet-en-Champsaur,Saint-Bonnet-en-Champsaur +10,1988-03-18,COM,6159,0,VILLEFRANCHE,Villefranche,Villefranche,COM,6159,0,VILLEFRANCHE SUR MER,Villefranche-sur-Mer,Villefranche-sur-Mer +10,1988-03-18,COM,7324,0,TOURNON,Tournon,Tournon,COM,7324,0,TOURNON SUR RHONE,Tournon-sur-Rhône,Tournon-sur-Rhône 10,1988-03-18,COM,43157,2,PUY,Puy,Le Puy,COM,43157,2,PUY EN VELAY,Puy-en-Velay,Le Puy-en-Velay 10,1988-03-18,COM,45029,0,BEAULIEU,Beaulieu,Beaulieu,COM,45029,0,BEAULIEU SUR LOIRE,Beaulieu-sur-Loire,Beaulieu-sur-Loire 34,1988-01-01,COM,17474,0,VILLENEUVE LA COMTESSE,Villeneuve-la-Comtesse,Villeneuve-la-Comtesse,COM,17474,0,VILLENEUVE LA COMTESSE,Villeneuve-la-Comtesse,Villeneuve-la-Comtesse 34,1988-01-01,COMA,17475,0,VILLENOUVELLE,Villenouvelle,Villenouvelle,COM,17474,0,VILLENEUVE LA COMTESSE,Villeneuve-la-Comtesse,Villeneuve-la-Comtesse -21,1988-01-01,COM,52311,0,MARCILLY PLESNOY,Marcilly-Plesnoy,Marcilly-Plesnoy,COM,52392,0,PLESNOY,Plesnoy,Plesnoy 21,1988-01-01,COM,52311,0,MARCILLY PLESNOY,Marcilly-Plesnoy,Marcilly-Plesnoy,COM,52311,0,MARCILLY EN BASSIGNY,Marcilly-en-Bassigny,Marcilly-en-Bassigny +21,1988-01-01,COM,52311,0,MARCILLY PLESNOY,Marcilly-Plesnoy,Marcilly-Plesnoy,COM,52392,0,PLESNOY,Plesnoy,Plesnoy +34,1988-01-01,COMA,52392,0,PLESNOY,Plesnoy,Plesnoy,COM,52311,0,MARCILLY EN BASSIGNY,Marcilly-en-Bassigny,Marcilly-en-Bassigny 21,1988-01-01,COMA,52392,0,PLESNOY,Plesnoy,Plesnoy,COM,52392,0,PLESNOY,Plesnoy,Plesnoy 21,1988-01-01,COMA,55044,0,BELRAIN,Belrain,Belrain,COM,55044,0,BELRAIN,Belrain,Belrain +34,1988-01-01,COMA,55044,0,BELRAIN,Belrain,Belrain,COM,55210,0,GIMECOURT,Gimécourt,Gimécourt +34,1988-01-01,COMA,55044,0,BELRAIN,Belrain,Belrain,COM,55448,0,RUPT DEVANT SAINT MIHIEL,Rupt-devant-Saint-Mihiel,Rupt-devant-Saint-Mihiel +34,1988-01-01,COMA,55044,0,BELRAIN,Belrain,Belrain,COM,55555,0,VILLE DEVANT BELRAIN,Ville-devant-Belrain,Ville-devant-Belrain +34,1988-01-01,COMA,55044,0,BELRAIN,Belrain,Belrain,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire 21,1988-01-01,COM,55183,1,ETRAYE WAVRILLE,Étraye-Wavrille,Étraye-Wavrille,COM,55183,1,ETRAYE,Étraye,Étraye 21,1988-01-01,COM,55183,1,ETRAYE WAVRILLE,Étraye-Wavrille,Étraye-Wavrille,COM,55580,0,WAVRILLE,Wavrille,Wavrille +34,1988-01-01,COMA,55210,0,GIMECOURT,Gimécourt,Gimécourt,COM,55044,0,BELRAIN,Belrain,Belrain 21,1988-01-01,COMA,55210,0,GIMECOURT,Gimécourt,Gimécourt,COM,55210,0,GIMECOURT,Gimécourt,Gimécourt +34,1988-01-01,COMA,55210,0,GIMECOURT,Gimécourt,Gimécourt,COM,55448,0,RUPT DEVANT SAINT MIHIEL,Rupt-devant-Saint-Mihiel,Rupt-devant-Saint-Mihiel +34,1988-01-01,COMA,55210,0,GIMECOURT,Gimécourt,Gimécourt,COM,55555,0,VILLE DEVANT BELRAIN,Ville-devant-Belrain,Ville-devant-Belrain +34,1988-01-01,COMA,55210,0,GIMECOURT,Gimécourt,Gimécourt,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire +34,1988-01-01,COMA,55448,0,RUPT DEVANT SAINT MIHIEL,Rupt-devant-Saint-Mihiel,Rupt-devant-Saint-Mihiel,COM,55044,0,BELRAIN,Belrain,Belrain +34,1988-01-01,COMA,55448,0,RUPT DEVANT SAINT MIHIEL,Rupt-devant-Saint-Mihiel,Rupt-devant-Saint-Mihiel,COM,55210,0,GIMECOURT,Gimécourt,Gimécourt 21,1988-01-01,COMA,55448,0,RUPT DEVANT SAINT MIHIEL,Rupt-devant-Saint-Mihiel,Rupt-devant-Saint-Mihiel,COM,55448,0,RUPT DEVANT SAINT MIHIEL,Rupt-devant-Saint-Mihiel,Rupt-devant-Saint-Mihiel +34,1988-01-01,COMA,55448,0,RUPT DEVANT SAINT MIHIEL,Rupt-devant-Saint-Mihiel,Rupt-devant-Saint-Mihiel,COM,55555,0,VILLE DEVANT BELRAIN,Ville-devant-Belrain,Ville-devant-Belrain +34,1988-01-01,COMA,55448,0,RUPT DEVANT SAINT MIHIEL,Rupt-devant-Saint-Mihiel,Rupt-devant-Saint-Mihiel,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire +34,1988-01-01,COMA,55555,0,VILLE DEVANT BELRAIN,Ville-devant-Belrain,Ville-devant-Belrain,COM,55044,0,BELRAIN,Belrain,Belrain +34,1988-01-01,COMA,55555,0,VILLE DEVANT BELRAIN,Ville-devant-Belrain,Ville-devant-Belrain,COM,55210,0,GIMECOURT,Gimécourt,Gimécourt +34,1988-01-01,COMA,55555,0,VILLE DEVANT BELRAIN,Ville-devant-Belrain,Ville-devant-Belrain,COM,55448,0,RUPT DEVANT SAINT MIHIEL,Rupt-devant-Saint-Mihiel,Rupt-devant-Saint-Mihiel 21,1988-01-01,COMA,55555,0,VILLE DEVANT BELRAIN,Ville-devant-Belrain,Ville-devant-Belrain,COM,55555,0,VILLE DEVANT BELRAIN,Ville-devant-Belrain,Ville-devant-Belrain +34,1988-01-01,COMA,55555,0,VILLE DEVANT BELRAIN,Ville-devant-Belrain,Ville-devant-Belrain,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire +21,1988-01-01,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire,COM,55044,0,BELRAIN,Belrain,Belrain +21,1988-01-01,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire,COM,55210,0,GIMECOURT,Gimécourt,Gimécourt +21,1988-01-01,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire,COM,55448,0,RUPT DEVANT SAINT MIHIEL,Rupt-devant-Saint-Mihiel,Rupt-devant-Saint-Mihiel 21,1988-01-01,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire,COM,55555,0,VILLE DEVANT BELRAIN,Ville-devant-Belrain,Ville-devant-Belrain 21,1988-01-01,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire -21,1988-01-01,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire,COM,55448,0,RUPT DEVANT SAINT MIHIEL,Rupt-devant-Saint-Mihiel,Rupt-devant-Saint-Mihiel -21,1988-01-01,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire,COM,55210,0,GIMECOURT,Gimécourt,Gimécourt -21,1988-01-01,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire,COM,55044,0,BELRAIN,Belrain,Belrain +34,1988-01-01,COMA,55580,0,WAVRILLE,Wavrille,Wavrille,COM,55183,1,ETRAYE,Étraye,Étraye 21,1988-01-01,COMA,55580,0,WAVRILLE,Wavrille,Wavrille,COM,55580,0,WAVRILLE,Wavrille,Wavrille 33,1988-01-01,COM,65003,1,ADERVIELLE,Adervielle,Adervielle,COM,65003,1,ADERVIELLE POUCHERGUES,Adervielle-Pouchergues,Adervielle-Pouchergues -33,1988-01-01,COM,65365,0,POUCHERGUES,Pouchergues,Pouchergues,COMA,65365,0,POUCHERGUES,Pouchergues,Pouchergues 33,1988-01-01,COM,65365,0,POUCHERGUES,Pouchergues,Pouchergues,COM,65003,1,ADERVIELLE POUCHERGUES,Adervielle-Pouchergues,Adervielle-Pouchergues +33,1988-01-01,COM,65365,0,POUCHERGUES,Pouchergues,Pouchergues,COMA,65365,0,POUCHERGUES,Pouchergues,Pouchergues 21,1988-01-01,COMA,67012,1,ASCHBACH,Aschbach,Aschbach,COM,67012,1,ASCHBACH,Aschbach,Aschbach -21,1988-01-01,COMA,67349,1,OBERROEDERN,Oberrœdern,Oberrœdern,COMA,67349,1,OBERROEDERN,Oberrœdern,Oberrœdern +34,1988-01-01,COMA,67012,1,ASCHBACH,Aschbach,Aschbach,COM,67484,0,STUNDWILLER,Stundwiller,Stundwiller 21,1988-01-01,COM,67484,0,STUNDWILLER,Stundwiller,Stundwiller,COM,67012,1,ASCHBACH,Aschbach,Aschbach 21,1988-01-01,COM,67484,0,STUNDWILLER,Stundwiller,Stundwiller,COM,67484,0,STUNDWILLER,Stundwiller,Stundwiller -21,1988-01-01,COM,67484,0,STUNDWILLER,Stundwiller,Stundwiller,COMA,67349,1,OBERROEDERN,Oberrœdern,Oberrœdern -21,1988-01-01,COM,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche,COM,73024,4,AVANCHERS VALMOREL,Avanchers-Valmorel,Les Avanchers-Valmorel 21,1988-01-01,COM,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche,COM,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche +21,1988-01-01,COM,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche,COM,73024,4,AVANCHERS VALMOREL,Avanchers-Valmorel,Les Avanchers-Valmorel +34,1988-01-01,COMA,73024,4,AVANCHERS,Avanchers,Les Avanchers,COM,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche 21,1988-01-01,COMA,73024,4,AVANCHERS,Avanchers,Les Avanchers,COM,73024,4,AVANCHERS VALMOREL,Avanchers-Valmorel,Les Avanchers-Valmorel 34,1987-11-01,COMA,14094,0,BRAY LA CAMPAGNE,Bray-la-Campagne,Bray-la-Campagne,COM,14268,0,FIERVILLE BRAY,Fierville-Bray,Fierville-Bray 34,1987-11-01,COM,14268,0,FIERVILLE BRAY,Fierville-Bray,Fierville-Bray,COM,14268,0,FIERVILLE BRAY,Fierville-Bray,Fierville-Bray 21,1987-10-01,COMA,47095,0,FAUILLET,Fauillet,Fauillet,COM,47095,0,FAUILLET,Fauillet,Fauillet -21,1987-10-01,COM,47310,0,TONNEINS,Tonneins,Tonneins,COM,47310,0,TONNEINS,Tonneins,Tonneins +34,1987-10-01,COMA,47095,0,FAUILLET,Fauillet,Fauillet,COM,47310,0,TONNEINS,Tonneins,Tonneins 21,1987-10-01,COM,47310,0,TONNEINS,Tonneins,Tonneins,COM,47095,0,FAUILLET,Fauillet,Fauillet +21,1987-10-01,COM,47310,0,TONNEINS,Tonneins,Tonneins,COM,47310,0,TONNEINS,Tonneins,Tonneins 34,1987-09-08,COMA,44042,2,CLION SUR MER,Clion-sur-Mer,Le Clion-sur-Mer,COM,44131,0,PORNIC,Pornic,Pornic 34,1987-09-08,COM,44131,0,PORNIC,Pornic,Pornic,COM,44131,0,PORNIC,Pornic,Pornic -34,1987-09-08,COM,44131,0,PORNIC,Pornic,Pornic,COMA,44177,0,SAINTE MARIE,Sainte-Marie,Sainte-Marie -34,1987-09-08,COMA,44177,0,SAINTE MARIE,Sainte-Marie,Sainte-Marie,COMA,44177,0,SAINTE MARIE,Sainte-Marie,Sainte-Marie -34,1987-09-08,COMA,44177,0,SAINTE MARIE,Sainte-Marie,Sainte-Marie,COM,44131,0,PORNIC,Pornic,Pornic 34,1987-08-01,COM,53133,0,LIGNIERES ORGERES,Lignières-Orgères,Lignières-Orgères,COM,53133,0,LIGNIERES ORGERES,Lignières-Orgères,Lignières-Orgères 34,1987-08-01,COMA,53171,1,ORGERES LA ROCHE,Orgères-la-Roche,Orgères-la-Roche,COM,53133,0,LIGNIERES ORGERES,Lignières-Orgères,Lignières-Orgères 10,1987-07-06,COM,12155,0,MONTPAON,Montpaon,Montpaon,COM,12155,0,FONDAMENTE,Fondamente,Fondamente @@ -7127,57 +6711,67 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1987-07-06,COM,33213,0,LABREDE,Labrède,Labrède,COM,33213,3,BREDE,Brède,La Brède 10,1987-07-06,COM,62238,0,CONTEVILLE,Conteville,Conteville,COM,62238,0,CONTEVILLE EN TERNOIS,Conteville-en-Ternois,Conteville-en-Ternois 10,1987-07-06,COM,84118,0,SAINT SATURNIN D APT,Saint-Saturnin-d'Apt,Saint-Saturnin-d'Apt,COM,84118,0,SAINT SATURNIN LES APT,Saint-Saturnin-lès-Apt,Saint-Saturnin-lès-Apt -34,1987-05-01,COMA,04029,0,BLEGIERS,Blégiers,Blégiers,COM,04155,0,PRADS HAUTE BLEONE,Prads-Haute-Bléone,Prads-Haute-Bléone -34,1987-05-01,COMA,04029,0,BLEGIERS,Blégiers,Blégiers,COMA,04029,0,BLEGIERS,Blégiers,Blégiers -34,1987-05-01,COMA,04114,0,MARIAUD,Mariaud,Mariaud,COM,04155,0,PRADS HAUTE BLEONE,Prads-Haute-Bléone,Prads-Haute-Bléone -34,1987-05-01,COM,04155,0,PRADS HAUTE BLEONE,Prads-Haute-Bléone,Prads-Haute-Bléone,COM,04155,0,PRADS HAUTE BLEONE,Prads-Haute-Bléone,Prads-Haute-Bléone -34,1987-05-01,COM,04155,0,PRADS HAUTE BLEONE,Prads-Haute-Bléone,Prads-Haute-Bléone,COMA,04029,0,BLEGIERS,Blégiers,Blégiers -21,1987-04-08,COM,54142,4,MESNILS SUR MADON,Mesnils-sur-Madon,Les Mesnils-sur-Madon,COM,54554,0,VAUDIGNY,Vaudigny,Vaudigny +34,1987-05-01,COMA,4114,0,MARIAUD,Mariaud,Mariaud,COM,4155,0,PRADS HAUTE BLEONE,Prads-Haute-Bléone,Prads-Haute-Bléone +34,1987-05-01,COM,4155,0,PRADS HAUTE BLEONE,Prads-Haute-Bléone,Prads-Haute-Bléone,COM,4155,0,PRADS HAUTE BLEONE,Prads-Haute-Bléone,Prads-Haute-Bléone 21,1987-04-08,COM,54142,4,MESNILS SUR MADON,Mesnils-sur-Madon,Les Mesnils-sur-Madon,COM,54142,0,CRANTENOY,Crantenoy,Crantenoy 21,1987-04-08,COM,54142,4,MESNILS SUR MADON,Mesnils-sur-Madon,Les Mesnils-sur-Madon,COM,54411,1,ORMES ET VILLE,Ormes-et-Ville,Ormes-et-Ville +21,1987-04-08,COM,54142,4,MESNILS SUR MADON,Mesnils-sur-Madon,Les Mesnils-sur-Madon,COM,54554,0,VAUDIGNY,Vaudigny,Vaudigny 21,1987-03-01,COMA,39259,0,GRANGE DE VAIVRE,Grange-de-Vaivre,Grange-de-Vaivre,COM,39259,0,GRANGE DE VAIVRE,Grange-de-Vaivre,Grange-de-Vaivre -21,1987-03-01,COM,39439,0,PORT LESNEY GRANGE DE VAIVRE,Port-Lesney-Grange-de-Vaivre,Port-Lesney-Grange-de-Vaivre,COM,39439,0,PORT LESNEY,Port-Lesney,Port-Lesney +34,1987-03-01,COMA,39259,0,GRANGE DE VAIVRE,Grange-de-Vaivre,Grange-de-Vaivre,COM,39439,0,PORT LESNEY,Port-Lesney,Port-Lesney 21,1987-03-01,COM,39439,0,PORT LESNEY GRANGE DE VAIVRE,Port-Lesney-Grange-de-Vaivre,Port-Lesney-Grange-de-Vaivre,COM,39259,0,GRANGE DE VAIVRE,Grange-de-Vaivre,Grange-de-Vaivre -21,1987-02-17,COM,57306,1,HAYANGE,Hayange,Hayange,COM,57562,0,RANGUEVAUX,Ranguevaux,Ranguevaux +21,1987-03-01,COM,39439,0,PORT LESNEY GRANGE DE VAIVRE,Port-Lesney-Grange-de-Vaivre,Port-Lesney-Grange-de-Vaivre,COM,39439,0,PORT LESNEY,Port-Lesney,Port-Lesney 21,1987-02-17,COM,57306,1,HAYANGE,Hayange,Hayange,COM,57306,1,HAYANGE,Hayange,Hayange +21,1987-02-17,COM,57306,1,HAYANGE,Hayange,Hayange,COM,57562,0,RANGUEVAUX,Ranguevaux,Ranguevaux 33,1987-02-09,COM,62178,0,BRUAY EN ARTOIS,Bruay-en-Artois,Bruay-en-Artois,COM,62178,0,BRUAY LA BUISSIERE,Bruay-la-Buissière,Bruay-la-Buissière -33,1987-02-09,COM,62482,0,LABUISSIERE,Labuissière,Labuissière,COMA,62482,0,LABUISSIERE,Labuissière,Labuissière 33,1987-02-09,COM,62482,0,LABUISSIERE,Labuissière,Labuissière,COM,62178,0,BRUAY LA BUISSIERE,Bruay-la-Buissière,Bruay-la-Buissière -10,1987-02-06,COM,05161,3,SALLE,Salle,La Salle,COM,05161,3,SALLE LES ALPES,Salle-les-Alpes,La Salle-les-Alpes -10,1987-02-06,COM,09142,1,ILLAT,Illat,Illat,COM,09142,1,ILHAT,Ilhat,Ilhat +33,1987-02-09,COM,62482,0,LABUISSIERE,Labuissière,Labuissière,COMA,62482,0,LABUISSIERE,Labuissière,Labuissière +10,1987-02-06,COM,5161,3,SALLE,Salle,La Salle,COM,5161,3,SALLE LES ALPES,Salle-les-Alpes,La Salle-les-Alpes +10,1987-02-06,COM,9142,1,ILLAT,Illat,Illat,COM,9142,1,ILHAT,Ilhat,Ilhat 10,1987-02-06,COM,28387,0,THIRON,Thiron,Thiron,COM,28387,0,THIRON GARDAIS,Thiron-Gardais,Thiron-Gardais 10,1987-02-06,COM,37005,1,ANTOGNY,Antogny,Antogny,COM,37005,1,ANTOGNY LE TILLAC,Antogny-le-Tillac,Antogny-le-Tillac 10,1987-02-06,COM,37169,0,NEUVILLE,Neuville,Neuville,COM,37169,0,NEUVILLE SUR BRENNE,Neuville-sur-Brenne,Neuville-sur-Brenne 10,1987-02-06,COM,71585,0,VIREY,Virey,Virey,COM,71585,0,VIREY LE GRAND,Virey-le-Grand,Virey-le-Grand 10,1987-02-06,COM,73116,0,FONTCOUVERTE,Fontcouverte,Fontcouverte,COM,73116,0,FONTCOUVERTE LA TOUSSUIRE,Fontcouverte-la-Toussuire,Fontcouverte-la-Toussuire 10,1987-02-06,COM,77085,0,CHANTELOUP,Chanteloup,Chanteloup,COM,77085,0,CHANTELOUP EN BRIE,Chanteloup-en-Brie,Chanteloup-en-Brie -21,1987-01-01,COM,28159,3,FRAMBOISIERE LA SAUCELLE,Framboisière-la-Saucelle,La Framboisière-la-Saucelle,COM,28368,3,SAUCELLE,Saucelle,La Saucelle 21,1987-01-01,COM,28159,3,FRAMBOISIERE LA SAUCELLE,Framboisière-la-Saucelle,La Framboisière-la-Saucelle,COM,28159,3,FRAMBOISIERE,Framboisière,La Framboisière +21,1987-01-01,COM,28159,3,FRAMBOISIERE LA SAUCELLE,Framboisière-la-Saucelle,La Framboisière-la-Saucelle,COM,28368,3,SAUCELLE,Saucelle,La Saucelle +34,1987-01-01,COMA,28368,3,SAUCELLE,Saucelle,La Saucelle,COM,28159,3,FRAMBOISIERE,Framboisière,La Framboisière 21,1987-01-01,COMA,28368,3,SAUCELLE,Saucelle,La Saucelle,COM,28368,3,SAUCELLE,Saucelle,La Saucelle -21,1987-01-01,COM,53003,1,AMBRIERES LES VALLEES,Ambrières-les-Vallées,Ambrières-les-Vallées,COM,53111,3,HAIE TRAVERSAINE,Haie-Traversaine,La Haie-Traversaine -21,1987-01-01,COM,53003,1,AMBRIERES LES VALLEES,Ambrières-les-Vallées,Ambrières-les-Vallées,COMA,53070,0,CIGNE,Cigné,Cigné 21,1987-01-01,COM,53003,1,AMBRIERES LES VALLEES,Ambrières-les-Vallées,Ambrières-les-Vallées,COM,53003,1,AMBRIERES LES VALLEES,Ambrières-les-Vallées,Ambrières-les-Vallées -21,1987-01-01,COMA,53070,0,CIGNE,Cigné,Cigné,COMA,53070,0,CIGNE,Cigné,Cigné +21,1987-01-01,COM,53003,1,AMBRIERES LES VALLEES,Ambrières-les-Vallées,Ambrières-les-Vallées,COM,53111,3,HAIE TRAVERSAINE,Haie-Traversaine,La Haie-Traversaine +34,1987-01-01,COMA,53111,3,HAIE TRAVERSAINE,Haie-Traversaine,La Haie-Traversaine,COM,53003,1,AMBRIERES LES VALLEES,Ambrières-les-Vallées,Ambrières-les-Vallées 21,1987-01-01,COMA,53111,3,HAIE TRAVERSAINE,Haie-Traversaine,La Haie-Traversaine,COM,53111,3,HAIE TRAVERSAINE,Haie-Traversaine,La Haie-Traversaine 21,1987-01-01,COMA,54133,0,COINCOURT,Coincourt,Coincourt,COM,54133,0,COINCOURT,Coincourt,Coincourt +34,1987-01-01,COMA,54133,0,COINCOURT,Coincourt,Coincourt,COM,54388,0,MOUACOURT,Mouacourt,Mouacourt +34,1987-01-01,COMA,54133,0,COINCOURT,Coincourt,Coincourt,COM,54418,0,PARROY,Parroy,Parroy +34,1987-01-01,COMA,54133,0,COINCOURT,Coincourt,Coincourt,COM,54601,0,XURES,Xures,Xures +34,1987-01-01,COMA,54388,0,MOUACOURT,Mouacourt,Mouacourt,COM,54133,0,COINCOURT,Coincourt,Coincourt 21,1987-01-01,COMA,54388,0,MOUACOURT,Mouacourt,Mouacourt,COM,54388,0,MOUACOURT,Mouacourt,Mouacourt -21,1987-01-01,COM,54405,1,OCHEY THUILLEY,Ochey-Thuilley,Ochey-Thuilley,COM,54523,0,THUILLEY AUX GROSEILLES,Thuilley-aux-Groseilles,Thuilley-aux-Groseilles +34,1987-01-01,COMA,54388,0,MOUACOURT,Mouacourt,Mouacourt,COM,54418,0,PARROY,Parroy,Parroy +34,1987-01-01,COMA,54388,0,MOUACOURT,Mouacourt,Mouacourt,COM,54601,0,XURES,Xures,Xures 21,1987-01-01,COM,54405,1,OCHEY THUILLEY,Ochey-Thuilley,Ochey-Thuilley,COM,54405,1,OCHEY,Ochey,Ochey +21,1987-01-01,COM,54405,1,OCHEY THUILLEY,Ochey-Thuilley,Ochey-Thuilley,COM,54523,0,THUILLEY AUX GROSEILLES,Thuilley-aux-Groseilles,Thuilley-aux-Groseilles +21,1987-01-01,COM,54418,0,PARROY,Parroy,Parroy,COM,54133,0,COINCOURT,Coincourt,Coincourt 21,1987-01-01,COM,54418,0,PARROY,Parroy,Parroy,COM,54388,0,MOUACOURT,Mouacourt,Mouacourt -21,1987-01-01,COM,54418,0,PARROY,Parroy,Parroy,COM,54601,0,XURES,Xures,Xures 21,1987-01-01,COM,54418,0,PARROY,Parroy,Parroy,COM,54418,0,PARROY,Parroy,Parroy -21,1987-01-01,COM,54418,0,PARROY,Parroy,Parroy,COM,54133,0,COINCOURT,Coincourt,Coincourt +21,1987-01-01,COM,54418,0,PARROY,Parroy,Parroy,COM,54601,0,XURES,Xures,Xures +34,1987-01-01,COMA,54523,0,THUILLEY AUX GROSEILLES,Thuilley-aux-Groseilles,Thuilley-aux-Groseilles,COM,54405,1,OCHEY,Ochey,Ochey 21,1987-01-01,COMA,54523,0,THUILLEY AUX GROSEILLES,Thuilley-aux-Groseilles,Thuilley-aux-Groseilles,COM,54523,0,THUILLEY AUX GROSEILLES,Thuilley-aux-Groseilles,Thuilley-aux-Groseilles +34,1987-01-01,COMA,54601,0,XURES,Xures,Xures,COM,54133,0,COINCOURT,Coincourt,Coincourt +34,1987-01-01,COMA,54601,0,XURES,Xures,Xures,COM,54388,0,MOUACOURT,Mouacourt,Mouacourt +34,1987-01-01,COMA,54601,0,XURES,Xures,Xures,COM,54418,0,PARROY,Parroy,Parroy 21,1987-01-01,COMA,54601,0,XURES,Xures,Xures,COM,54601,0,XURES,Xures,Xures 21,1987-01-01,COMA,55208,0,GESNES EN ARGONNE,Gesnes-en-Argonne,Gesnes-en-Argonne,COM,55208,0,GESNES EN ARGONNE,Gesnes-en-Argonne,Gesnes-en-Argonne -21,1987-01-01,COM,55438,0,ROMAGNE GESNES,Romagne-Gesnes,Romagne-Gesnes,COM,55438,0,ROMAGNE SOUS MONTFAUCON,Romagne-sous-Montfaucon,Romagne-sous-Montfaucon +34,1987-01-01,COMA,55208,0,GESNES EN ARGONNE,Gesnes-en-Argonne,Gesnes-en-Argonne,COM,55438,0,ROMAGNE SOUS MONTFAUCON,Romagne-sous-Montfaucon,Romagne-sous-Montfaucon 21,1987-01-01,COM,55438,0,ROMAGNE GESNES,Romagne-Gesnes,Romagne-Gesnes,COM,55208,0,GESNES EN ARGONNE,Gesnes-en-Argonne,Gesnes-en-Argonne +21,1987-01-01,COM,55438,0,ROMAGNE GESNES,Romagne-Gesnes,Romagne-Gesnes,COM,55438,0,ROMAGNE SOUS MONTFAUCON,Romagne-sous-Montfaucon,Romagne-sous-Montfaucon 34,1987-01-01,COM,85046,3,CHAIZE LE VICOMTE,Chaize-le-Vicomte,La Chaize-le-Vicomte,COM,85046,3,CHAIZE LE VICOMTE,Chaize-le-Vicomte,La Chaize-le-Vicomte 34,1987-01-01,COMA,85124,3,LIMOUZINIERE,Limouzinière,La Limouzinière,COM,85046,3,CHAIZE LE VICOMTE,Chaize-le-Vicomte,La Chaize-le-Vicomte 21,1986-09-01,COM,22204,0,PLOEZAL RUNAN,Ploëzal-Runan,Ploëzal-Runan,COM,22204,0,PLOEZAL,Ploëzal,Ploëzal 21,1986-09-01,COM,22204,0,PLOEZAL RUNAN,Ploëzal-Runan,Ploëzal-Runan,COM,22269,0,RUNAN,Runan,Runan +34,1986-09-01,COMA,22269,0,RUNAN,Runan,Runan,COM,22204,0,PLOEZAL,Ploëzal,Ploëzal 21,1986-09-01,COMA,22269,0,RUNAN,Runan,Runan,COM,22269,0,RUNAN,Runan,Runan -10,1986-06-06,COM,07005,1,ALBA,Alba,Alba,COM,07005,1,ALBA LA ROMAINE,Alba-la-Romaine,Alba-la-Romaine +10,1986-06-06,COM,7005,1,ALBA,Alba,Alba,COM,7005,1,ALBA LA ROMAINE,Alba-la-Romaine,Alba-la-Romaine 10,1986-06-06,COM,16291,0,RUELLE,Ruelle,Ruelle,COM,16291,0,RUELLE SUR TOUVRE,Ruelle-sur-Touvre,Ruelle-sur-Touvre 10,1986-06-06,COM,28173,0,GASVILLE,Gasville,Gasville,COM,28173,0,GASVILLE OISEME,Gasville-Oisème,Gasville-Oisème 10,1986-06-06,COM,33424,0,SAINT LAURENT ET BENON,Saint-Laurent-et-Benon,Saint-Laurent-et-Benon,COM,33424,0,SAINT LAURENT MEDOC,Saint-Laurent-Médoc,Saint-Laurent-Médoc @@ -7187,67 +6781,112 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1986-06-06,COM,66190,0,SALSES,Salses,Salses,COM,66190,0,SALSES LE CHATEAU,Salses-le-Château,Salses-le-Château 10,1986-06-06,COM,76536,0,RONCHEROLLES,Roncherolles,Roncherolles,COM,76536,0,RONCHEROLLES SUR LE VIVIER,Roncherolles-sur-le-Vivier,Roncherolles-sur-le-Vivier 10,1986-06-06,COM,84109,0,SAINT HIPPOLYTE LE GRAVERON,Saint-Hippolyte-le-Graveron,Saint-Hippolyte-le-Graveron,COM,84109,0,SAINT HIPPOLYTE LE GRAVEYRON,Saint-Hippolyte-le-Graveyron,Saint-Hippolyte-le-Graveyron -21,1986-01-01,COM,08119,0,CHEVEUGES SAINT AIGNAN,Cheveuges-Saint-Aignan,Cheveuges-Saint-Aignan,COM,08377,0,SAINT AIGNAN,Saint-Aignan,Saint-Aignan -21,1986-01-01,COM,08119,0,CHEVEUGES SAINT AIGNAN,Cheveuges-Saint-Aignan,Cheveuges-Saint-Aignan,COM,08119,0,CHEVEUGES,Cheveuges,Cheveuges -21,1986-01-01,COM,25317,0,JALLERANGE,Jallerange,Jallerange,COM,25414,2,MOUTHEROT,Moutherot,Le Moutherot +21,1986-01-01,COM,8119,0,CHEVEUGES SAINT AIGNAN,Cheveuges-Saint-Aignan,Cheveuges-Saint-Aignan,COM,8119,0,CHEVEUGES,Cheveuges,Cheveuges +21,1986-01-01,COM,8119,0,CHEVEUGES SAINT AIGNAN,Cheveuges-Saint-Aignan,Cheveuges-Saint-Aignan,COM,8377,0,SAINT AIGNAN,Saint-Aignan,Saint-Aignan 21,1986-01-01,COM,25317,0,JALLERANGE,Jallerange,Jallerange,COM,25317,0,JALLERANGE,Jallerange,Jallerange +21,1986-01-01,COM,25317,0,JALLERANGE,Jallerange,Jallerange,COM,25414,2,MOUTHEROT,Moutherot,Le Moutherot +34,1986-01-01,COMA,25414,2,MOUTHEROT,Moutherot,Le Moutherot,COM,25317,0,JALLERANGE,Jallerange,Jallerange 21,1986-01-01,COMA,25414,2,MOUTHEROT,Moutherot,Le Moutherot,COM,25414,2,MOUTHEROT,Moutherot,Le Moutherot -21,1986-01-01,COM,35266,0,SAINT ERBLON,Saint-Erblon,Saint-Erblon,COM,35363,0,PONT PEAN,Pont-Péan,Pont-Péan -21,1986-01-01,COM,35266,0,SAINT ERBLON,Saint-Erblon,Saint-Erblon,COM,35266,0,SAINT ERBLON,Saint-Erblon,Saint-Erblon +20,1986-01-01,COM,35266,0,SAINT ERBLON,Saint-Erblon,Saint-Erblon,COM,35266,0,SAINT ERBLON,Saint-Erblon,Saint-Erblon +20,1986-01-01,COM,35266,0,SAINT ERBLON,Saint-Erblon,Saint-Erblon,COM,35363,0,PONT PEAN,Pont-Péan,Pont-Péan 21,1986-01-01,COMA,52103,0,CHAMPIGNY SOUS VARENNES,Champigny-sous-Varennes,Champigny-sous-Varennes,COM,52103,0,CHAMPIGNY SOUS VARENNES,Champigny-sous-Varennes,Champigny-sous-Varennes -21,1986-01-01,COMA,52124,0,CHEZEAUX,Chézeaux,Chézeaux,COMA,52124,0,CHEZEAUX,Chézeaux,Chézeaux +34,1986-01-01,COMA,52103,0,CHAMPIGNY SOUS VARENNES,Champigny-sous-Varennes,Champigny-sous-Varennes,COM,52504,0,TERRE NATALE,Terre-Natale,Terre-Natale 21,1986-01-01,COMA,52223,0,GILLEY,Gilley,Gilley,COM,52223,0,GILLEY,Gilley,Gilley +34,1986-01-01,COMA,52223,0,GILLEY,Gilley,Gilley,COM,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl +34,1986-01-01,COMA,52223,0,GILLEY,Gilley,Gilley,COM,52406,0,PRESSIGNY,Pressigny,Pressigny +34,1986-01-01,COMA,52223,0,GILLEY,Gilley,Gilley,COM,52467,0,SAVIGNY,Savigny,Savigny +34,1986-01-01,COMA,52223,0,GILLEY,Gilley,Gilley,COM,52493,0,TORNAY,Tornay,Tornay +34,1986-01-01,COMA,52223,0,GILLEY,Gilley,Gilley,COM,52503,0,VALLEROY,Valleroy,Valleroy +34,1986-01-01,COMA,52223,0,GILLEY,Gilley,Gilley,COM,52546,0,VONCOURT,Voncourt,Voncourt +34,1986-01-01,COMA,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl,COM,52223,0,GILLEY,Gilley,Gilley 21,1986-01-01,COMA,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl,COM,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl +34,1986-01-01,COMA,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl,COM,52406,0,PRESSIGNY,Pressigny,Pressigny +34,1986-01-01,COMA,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl,COM,52467,0,SAVIGNY,Savigny,Savigny +34,1986-01-01,COMA,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl,COM,52493,0,TORNAY,Tornay,Tornay +34,1986-01-01,COMA,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl,COM,52503,0,VALLEROY,Valleroy,Valleroy +34,1986-01-01,COMA,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl,COM,52546,0,VONCOURT,Voncourt,Voncourt +21,1986-01-01,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon,COM,52223,0,GILLEY,Gilley,Gilley +21,1986-01-01,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon,COM,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl +21,1986-01-01,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon,COM,52406,0,PRESSIGNY,Pressigny,Pressigny +21,1986-01-01,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon,COM,52467,0,SAVIGNY,Savigny,Savigny 21,1986-01-01,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon,COM,52493,0,TORNAY,Tornay,Tornay -21,1986-01-01,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon,COM,52546,0,VONCOURT,Voncourt,Voncourt 21,1986-01-01,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon,COM,52503,0,VALLEROY,Valleroy,Valleroy -21,1986-01-01,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon,COM,52467,0,SAVIGNY,Savigny,Savigny -21,1986-01-01,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon,COM,52406,0,PRESSIGNY,Pressigny,Pressigny -21,1986-01-01,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon,COM,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl -21,1986-01-01,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon,COM,52223,0,GILLEY,Gilley,Gilley +21,1986-01-01,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon,COM,52546,0,VONCOURT,Voncourt,Voncourt +34,1986-01-01,COMA,52467,0,SAVIGNY,Savigny,Savigny,COM,52223,0,GILLEY,Gilley,Gilley +34,1986-01-01,COMA,52467,0,SAVIGNY,Savigny,Savigny,COM,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl +34,1986-01-01,COMA,52467,0,SAVIGNY,Savigny,Savigny,COM,52406,0,PRESSIGNY,Pressigny,Pressigny 21,1986-01-01,COMA,52467,0,SAVIGNY,Savigny,Savigny,COM,52467,0,SAVIGNY,Savigny,Savigny +34,1986-01-01,COMA,52467,0,SAVIGNY,Savigny,Savigny,COM,52493,0,TORNAY,Tornay,Tornay +34,1986-01-01,COMA,52467,0,SAVIGNY,Savigny,Savigny,COM,52503,0,VALLEROY,Valleroy,Valleroy +34,1986-01-01,COMA,52467,0,SAVIGNY,Savigny,Savigny,COM,52546,0,VONCOURT,Voncourt,Voncourt +34,1986-01-01,COMA,52493,0,TORNAY,Tornay,Tornay,COM,52223,0,GILLEY,Gilley,Gilley +34,1986-01-01,COMA,52493,0,TORNAY,Tornay,Tornay,COM,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl +34,1986-01-01,COMA,52493,0,TORNAY,Tornay,Tornay,COM,52406,0,PRESSIGNY,Pressigny,Pressigny +34,1986-01-01,COMA,52493,0,TORNAY,Tornay,Tornay,COM,52467,0,SAVIGNY,Savigny,Savigny 21,1986-01-01,COMA,52493,0,TORNAY,Tornay,Tornay,COM,52493,0,TORNAY,Tornay,Tornay +34,1986-01-01,COMA,52493,0,TORNAY,Tornay,Tornay,COM,52503,0,VALLEROY,Valleroy,Valleroy +34,1986-01-01,COMA,52493,0,TORNAY,Tornay,Tornay,COM,52546,0,VONCOURT,Voncourt,Voncourt +34,1986-01-01,COMA,52503,0,VALLEROY,Valleroy,Valleroy,COM,52223,0,GILLEY,Gilley,Gilley +34,1986-01-01,COMA,52503,0,VALLEROY,Valleroy,Valleroy,COM,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl +34,1986-01-01,COMA,52503,0,VALLEROY,Valleroy,Valleroy,COM,52406,0,PRESSIGNY,Pressigny,Pressigny +34,1986-01-01,COMA,52503,0,VALLEROY,Valleroy,Valleroy,COM,52467,0,SAVIGNY,Savigny,Savigny +34,1986-01-01,COMA,52503,0,VALLEROY,Valleroy,Valleroy,COM,52493,0,TORNAY,Tornay,Tornay 21,1986-01-01,COMA,52503,0,VALLEROY,Valleroy,Valleroy,COM,52503,0,VALLEROY,Valleroy,Valleroy +34,1986-01-01,COMA,52503,0,VALLEROY,Valleroy,Valleroy,COM,52546,0,VONCOURT,Voncourt,Voncourt 21,1986-01-01,COM,52504,0,TERRE NATALE,Terre-Natale,Terre-Natale,COM,52103,0,CHAMPIGNY SOUS VARENNES,Champigny-sous-Varennes,Champigny-sous-Varennes 21,1986-01-01,COM,52504,0,TERRE NATALE,Terre-Natale,Terre-Natale,COM,52504,0,TERRE NATALE,Terre-Natale,Terre-Natale -21,1986-01-01,COM,52504,0,TERRE NATALE,Terre-Natale,Terre-Natale,COMA,52124,0,CHEZEAUX,Chézeaux,Chézeaux +34,1986-01-01,COMA,52546,0,VONCOURT,Voncourt,Voncourt,COM,52223,0,GILLEY,Gilley,Gilley +34,1986-01-01,COMA,52546,0,VONCOURT,Voncourt,Voncourt,COM,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl +34,1986-01-01,COMA,52546,0,VONCOURT,Voncourt,Voncourt,COM,52406,0,PRESSIGNY,Pressigny,Pressigny +34,1986-01-01,COMA,52546,0,VONCOURT,Voncourt,Voncourt,COM,52467,0,SAVIGNY,Savigny,Savigny +34,1986-01-01,COMA,52546,0,VONCOURT,Voncourt,Voncourt,COM,52493,0,TORNAY,Tornay,Tornay +34,1986-01-01,COMA,52546,0,VONCOURT,Voncourt,Voncourt,COM,52503,0,VALLEROY,Valleroy,Valleroy 21,1986-01-01,COMA,52546,0,VONCOURT,Voncourt,Voncourt,COM,52546,0,VONCOURT,Voncourt,Voncourt -21,1986-01-01,COM,55033,0,BAULNY CHARPENTRY,Baulny-Charpentry,Baulny-Charpentry,COM,55103,0,CHARPENTRY,Charpentry,Charpentry 21,1986-01-01,COM,55033,0,BAULNY CHARPENTRY,Baulny-Charpentry,Baulny-Charpentry,COM,55033,0,BAULNY,Baulny,Baulny +21,1986-01-01,COM,55033,0,BAULNY CHARPENTRY,Baulny-Charpentry,Baulny-Charpentry,COM,55103,0,CHARPENTRY,Charpentry,Charpentry +34,1986-01-01,COMA,55103,0,CHARPENTRY,Charpentry,Charpentry,COM,55033,0,BAULNY,Baulny,Baulny 21,1986-01-01,COMA,55103,0,CHARPENTRY,Charpentry,Charpentry,COM,55103,0,CHARPENTRY,Charpentry,Charpentry 21,1986-01-01,COMA,55295,0,LISLE EN BARROIS,Lisle-en-Barrois,Lisle-en-Barrois,COM,55295,0,LISLE EN BARROIS,Lisle-en-Barrois,Lisle-en-Barrois -21,1986-01-01,COM,55569,0,VILISLE,Vilisle,Vilisle,COM,55569,0,VILLOTTE DEVANT LOUPPY,Villotte-devant-Louppy,Villotte-devant-Louppy +34,1986-01-01,COMA,55295,0,LISLE EN BARROIS,Lisle-en-Barrois,Lisle-en-Barrois,COM,55569,0,VILLOTTE DEVANT LOUPPY,Villotte-devant-Louppy,Villotte-devant-Louppy 21,1986-01-01,COM,55569,0,VILISLE,Vilisle,Vilisle,COM,55295,0,LISLE EN BARROIS,Lisle-en-Barrois,Lisle-en-Barrois -21,1986-01-01,COMA,57023,1,ANGVILLER LES BISPING,Angviller-lès-Bisping,Angviller-lès-Bisping,COMA,57023,1,ANGVILLER LES BISPING,Angviller-lès-Bisping,Angviller-lès-Bisping -21,1986-01-01,COM,57086,0,BELLES FORETS,Belles-Forêts,Belles-Forêts,COM,57173,0,DESSELING,Desseling,Desseling -21,1986-01-01,COM,57086,0,BELLES FORETS,Belles-Forêts,Belles-Forêts,COMA,57023,1,ANGVILLER LES BISPING,Angviller-lès-Bisping,Angviller-lès-Bisping +21,1986-01-01,COM,55569,0,VILISLE,Vilisle,Vilisle,COM,55569,0,VILLOTTE DEVANT LOUPPY,Villotte-devant-Louppy,Villotte-devant-Louppy 21,1986-01-01,COM,57086,0,BELLES FORETS,Belles-Forêts,Belles-Forêts,COM,57086,0,BELLES FORETS,Belles-Forêts,Belles-Forêts +21,1986-01-01,COM,57086,0,BELLES FORETS,Belles-Forêts,Belles-Forêts,COM,57173,0,DESSELING,Desseling,Desseling +34,1986-01-01,COMA,57173,0,DESSELING,Desseling,Desseling,COM,57086,0,BELLES FORETS,Belles-Forêts,Belles-Forêts 21,1986-01-01,COMA,57173,0,DESSELING,Desseling,Desseling,COM,57173,0,DESSELING,Desseling,Desseling -21,1986-01-01,COM,67163,0,GOUGENHEIM,Gougenheim,Gougenheim,COM,67406,0,ROHR,Rohr,Rohr 21,1986-01-01,COM,67163,0,GOUGENHEIM,Gougenheim,Gougenheim,COM,67163,0,GOUGENHEIM,Gougenheim,Gougenheim +21,1986-01-01,COM,67163,0,GOUGENHEIM,Gougenheim,Gougenheim,COM,67406,0,ROHR,Rohr,Rohr +34,1986-01-01,COMA,67406,0,ROHR,Rohr,Rohr,COM,67163,0,GOUGENHEIM,Gougenheim,Gougenheim 21,1986-01-01,COMA,67406,0,ROHR,Rohr,Rohr,COM,67406,0,ROHR,Rohr,Rohr -21,1986-01-01,COM,80163,0,CAMBRON,Cambron,Cambron,COM,80836,1,YONVAL,Yonval,Yonval -21,1986-01-01,COM,80163,0,CAMBRON,Cambron,Cambron,COM,80163,0,CAMBRON,Cambron,Cambron +20,1986-01-01,COM,80163,0,CAMBRON,Cambron,Cambron,COM,80163,0,CAMBRON,Cambron,Cambron +20,1986-01-01,COM,80163,0,CAMBRON,Cambron,Cambron,COM,80836,1,YONVAL,Yonval,Yonval 31,1985-11-01,COM,72206,0,MONTFORT LE ROTROU,Montfort-le-Rotrou,Montfort-le-Rotrou,COM,72241,0,MONTFORT LE GESNOIS,Montfort-le-Gesnois,Montfort-le-Gesnois 31,1985-11-01,COM,72241,0,PONT DE GENNES,Pont-de-Gennes,Pont-de-Gennes,COM,72241,0,MONTFORT LE GESNOIS,Montfort-le-Gesnois,Montfort-le-Gesnois 21,1985-10-01,COM,15003,1,ALLY,Ally,Ally,COM,15003,1,ALLY,Ally,Ally 21,1985-10-01,COM,15003,1,ALLY,Ally,Ally,COM,15024,0,BRAGEAC,Brageac,Brageac -21,1985-10-01,COM,15003,1,ALLY,Ally,Ally,COMA,15062,0,DRIGNAC,Drignac,Drignac +34,1985-10-01,COMA,15024,0,BRAGEAC,Brageac,Brageac,COM,15003,1,ALLY,Ally,Ally 21,1985-10-01,COMA,15024,0,BRAGEAC,Brageac,Brageac,COM,15024,0,BRAGEAC,Brageac,Brageac -21,1985-10-01,COMA,15062,0,DRIGNAC,Drignac,Drignac,COMA,15062,0,DRIGNAC,Drignac,Drignac -21,1985-10-01,COM,71014,1,AUTUN,Autun,Autun,COMA,71467,0,SAINT PANTALEON,Saint-Pantaléon,Saint-Pantaléon -21,1985-10-01,COM,71014,1,AUTUN,Autun,Autun,COM,71414,0,SAINT FORGEOT,Saint-Forgeot,Saint-Forgeot 21,1985-10-01,COM,71014,1,AUTUN,Autun,Autun,COM,71014,1,AUTUN,Autun,Autun +21,1985-10-01,COM,71014,1,AUTUN,Autun,Autun,COM,71414,0,SAINT FORGEOT,Saint-Forgeot,Saint-Forgeot +34,1985-10-01,COMA,71414,0,SAINT FORGEOT,Saint-Forgeot,Saint-Forgeot,COM,71014,1,AUTUN,Autun,Autun 21,1985-10-01,COMA,71414,0,SAINT FORGEOT,Saint-Forgeot,Saint-Forgeot,COM,71414,0,SAINT FORGEOT,Saint-Forgeot,Saint-Forgeot -21,1985-10-01,COMA,71467,0,SAINT PANTALEON,Saint-Pantaléon,Saint-Pantaléon,COMA,71467,0,SAINT PANTALEON,Saint-Pantaléon,Saint-Pantaléon 21,1985-08-04,COMA,57027,1,ARRAINCOURT,Arraincourt,Arraincourt,COM,57027,1,ARRAINCOURT,Arraincourt,Arraincourt +34,1985-08-04,COMA,57027,1,ARRAINCOURT,Arraincourt,Arraincourt,COM,57115,0,BRULANGE,Brulange,Brulange +34,1985-08-04,COMA,57027,1,ARRAINCOURT,Arraincourt,Arraincourt,COM,57328,1,HOLACOURT,Holacourt,Holacourt +34,1985-08-04,COMA,57027,1,ARRAINCOURT,Arraincourt,Arraincourt,COM,57673,0,THONVILLE,Thonville,Thonville +21,1985-08-04,COM,57115,0,BRULANGE,Brulange,Brulange,COM,57027,1,ARRAINCOURT,Arraincourt,Arraincourt +21,1985-08-04,COM,57115,0,BRULANGE,Brulange,Brulange,COM,57115,0,BRULANGE,Brulange,Brulange 21,1985-08-04,COM,57115,0,BRULANGE,Brulange,Brulange,COM,57328,1,HOLACOURT,Holacourt,Holacourt 21,1985-08-04,COM,57115,0,BRULANGE,Brulange,Brulange,COM,57673,0,THONVILLE,Thonville,Thonville -21,1985-08-04,COM,57115,0,BRULANGE,Brulange,Brulange,COM,57115,0,BRULANGE,Brulange,Brulange -21,1985-08-04,COM,57115,0,BRULANGE,Brulange,Brulange,COM,57027,1,ARRAINCOURT,Arraincourt,Arraincourt +34,1985-08-04,COMA,57328,1,HOLACOURT,Holacourt,Holacourt,COM,57027,1,ARRAINCOURT,Arraincourt,Arraincourt +34,1985-08-04,COMA,57328,1,HOLACOURT,Holacourt,Holacourt,COM,57115,0,BRULANGE,Brulange,Brulange 21,1985-08-04,COMA,57328,1,HOLACOURT,Holacourt,Holacourt,COM,57328,1,HOLACOURT,Holacourt,Holacourt +34,1985-08-04,COMA,57328,1,HOLACOURT,Holacourt,Holacourt,COM,57673,0,THONVILLE,Thonville,Thonville +34,1985-08-04,COMA,57673,0,THONVILLE,Thonville,Thonville,COM,57027,1,ARRAINCOURT,Arraincourt,Arraincourt +34,1985-08-04,COMA,57673,0,THONVILLE,Thonville,Thonville,COM,57115,0,BRULANGE,Brulange,Brulange +34,1985-08-04,COMA,57673,0,THONVILLE,Thonville,Thonville,COM,57328,1,HOLACOURT,Holacourt,Holacourt 21,1985-08-04,COMA,57673,0,THONVILLE,Thonville,Thonville,COM,57673,0,THONVILLE,Thonville,Thonville -10,1985-05-05,COM,06106,0,ROQUESTERON PUGET,Roquestéron-Puget,Roquestéron-Puget,COM,06106,0,ROQUESTERON,Roquestéron,Roquestéron +10,1985-05-05,COM,6106,0,ROQUESTERON PUGET,Roquestéron-Puget,Roquestéron-Puget,COM,6106,0,ROQUESTERON,Roquestéron,Roquestéron 10,1985-05-05,COM,16024,1,AUSSAC,Aussac,Aussac,COM,16024,1,AUSSAC VADALLE,Aussac-Vadalle,Aussac-Vadalle 10,1985-05-05,COM,24132,0,CONNE DE LA BARDE,Conne-de-la-Barde,Conne-de-la-Barde,COM,24132,0,CONNE DE LABARDE,Conne-de-Labarde,Conne-de-Labarde 10,1985-05-05,COM,24293,0,MONTPLAISANT,Montplaisant,Montplaisant,COM,24293,0,MONPLAISANT,Monplaisant,Monplaisant @@ -7257,68 +6896,79 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1985-05-05,COM,56037,3,CHAPELLE,Chapelle,La Chapelle,COM,56037,3,CHAPELLE CARO,Chapelle-Caro,La Chapelle-Caro 10,1985-05-05,COM,70206,1,ECHENANS,Échenans,Échenans,COM,70206,1,ECHENANS SOUS MONT VAUDOIS,Échenans-sous-Mont-Vaudois,Échenans-sous-Mont-Vaudois 21,1985-02-08,COMA,89002,1,AIGREMONT,Aigremont,Aigremont,COM,89002,1,AIGREMONT,Aigremont,Aigremont +34,1985-02-08,COMA,89002,1,AIGREMONT,Aigremont,Aigremont,COM,89224,0,LICHERES PRES AIGREMONT,Lichères-près-Aigremont,Lichères-près-Aigremont 21,1985-02-08,COM,89224,0,LICHERES AIGREMONT,Lichères-Aigremont,Lichères-Aigremont,COM,89002,1,AIGREMONT,Aigremont,Aigremont 21,1985-02-08,COM,89224,0,LICHERES AIGREMONT,Lichères-Aigremont,Lichères-Aigremont,COM,89224,0,LICHERES PRES AIGREMONT,Lichères-près-Aigremont,Lichères-près-Aigremont -34,1985-02-01,COM,01091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille,COM,01091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille -34,1985-02-01,COMA,01278,1,OCHIAZ,Ochiaz,Ochiaz,COM,01091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille -34,1985-02-01,COMA,01458,0,VOUVRAY,Vouvray,Vouvray,COM,01091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille -10,1985-01-19,COM,07039,0,BOSAS,Bosas,Bosas,COM,07039,0,BOZAS,Bozas,Bozas +34,1985-02-01,COM,1091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille,COM,1091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille +34,1985-02-01,COMA,1278,1,OCHIAZ,Ochiaz,Ochiaz,COM,1091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille +34,1985-02-01,COMA,1458,0,VOUVRAY,Vouvray,Vouvray,COM,1091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille +10,1985-01-19,COM,7039,0,BOSAS,Bosas,Bosas,COM,7039,0,BOZAS,Bozas,Bozas 10,1985-01-19,COM,21149,0,CHARREY,Charrey,Charrey,COM,21149,0,CHARREY SUR SEINE,Charrey-sur-Seine,Charrey-sur-Seine 10,1985-01-19,COM,2A269,0,SARI DI PORTO VECCHIO,Sari-di-Porto-Vecchio,Sari-di-Porto-Vecchio,COM,2A269,0,SARI SOLENZARA,Sari-Solenzara,Sari-Solenzara 10,1985-01-19,COM,34074,0,CESSENON,Cessenon,Cessenon,COM,34074,0,CESSENON SUR ORB,Cessenon-sur-Orb,Cessenon-sur-Orb 10,1985-01-19,COM,34247,0,SAINT CLEMENT,Saint-Clément,Saint-Clément,COM,34247,0,SAINT CLEMENT DE RIVIERE,Saint-Clément-de-Rivière,Saint-Clément-de-Rivière 10,1985-01-19,COM,35056,3,CHAPELLE AUX FILZMEENS,Chapelle-aux-Filzméens,La Chapelle-aux-Filzméens,COM,35056,3,CHAPELLE AUX FILTZMEENS,Chapelle-aux-Filtzméens,La Chapelle-aux-Filtzméens -10,1985-01-01,COM,05058,0,FRESSINIERES,Fressinières,Fressinières,COM,05058,0,FREISSINIERES,Freissinières,Freissinières -21,1985-01-01,COMA,08233,1,IMECOURT,Imécourt,Imécourt,COM,08233,1,IMECOURT,Imécourt,Imécourt -21,1985-01-01,COM,08470,0,VERPEL,Verpel,Verpel,COM,08470,0,VERPEL,Verpel,Verpel -21,1985-01-01,COM,08470,0,VERPEL,Verpel,Verpel,COM,08233,1,IMECOURT,Imécourt,Imécourt +10,1985-01-01,COM,5058,0,FRESSINIERES,Fressinières,Fressinières,COM,5058,0,FREISSINIERES,Freissinières,Freissinières +21,1985-01-01,COMA,8233,1,IMECOURT,Imécourt,Imécourt,COM,8233,1,IMECOURT,Imécourt,Imécourt +34,1985-01-01,COMA,8233,1,IMECOURT,Imécourt,Imécourt,COM,8470,0,VERPEL,Verpel,Verpel +21,1985-01-01,COM,8470,0,VERPEL,Verpel,Verpel,COM,8233,1,IMECOURT,Imécourt,Imécourt +21,1985-01-01,COM,8470,0,VERPEL,Verpel,Verpel,COM,8470,0,VERPEL,Verpel,Verpel 21,1985-01-01,COMA,25362,0,MALPAS,Malpas,Malpas,COM,25362,0,MALPAS,Malpas,Malpas +34,1985-01-01,COMA,25362,0,MALPAS,Malpas,Malpas,COM,25592,0,VAUX ET CHANTEGRUE,Vaux-et-Chantegrue,Vaux-et-Chantegrue 21,1985-01-01,COM,25592,0,VAUX ET CHANTEGRUE MALPAS,Vaux-et-Chantegrue-Malpas,Vaux-et-Chantegrue-Malpas,COM,25362,0,MALPAS,Malpas,Malpas 21,1985-01-01,COM,25592,0,VAUX ET CHANTEGRUE MALPAS,Vaux-et-Chantegrue-Malpas,Vaux-et-Chantegrue-Malpas,COM,25592,0,VAUX ET CHANTEGRUE,Vaux-et-Chantegrue,Vaux-et-Chantegrue 21,1985-01-01,COM,39302,0,LOUVATANGE LE PETIT MERCEY,Louvatange-le-Petit-Mercey,Louvatange-le-Petit-Mercey,COM,39302,0,LOUVATANGE,Louvatange,Louvatange 21,1985-01-01,COM,39302,0,LOUVATANGE LE PETIT MERCEY,Louvatange-le-Petit-Mercey,Louvatange-le-Petit-Mercey,COM,39414,2,PETIT MERCEY,Petit-Mercey,Le Petit-Mercey +34,1985-01-01,COMA,39414,2,PETIT MERCEY,Petit-Mercey,Le Petit-Mercey,COM,39302,0,LOUVATANGE,Louvatange,Louvatange 21,1985-01-01,COMA,39414,2,PETIT MERCEY,Petit-Mercey,Le Petit-Mercey,COM,39414,2,PETIT MERCEY,Petit-Mercey,Le Petit-Mercey 10,1985-01-01,COM,49140,0,FONTEVRAULT L ABBAYE,Fontevrault-l'Abbaye,Fontevrault-l'Abbaye,COM,49140,0,FONTEVRAUD L ABBAYE,Fontevraud-l'Abbaye,Fontevraud-l'Abbaye -21,1985-01-01,COMA,50067,3,BOULOUZE,Boulouze,La Boulouze,COMA,50067,3,BOULOUZE,Boulouze,La Boulouze 21,1985-01-01,COMA,50317,2,MESNIL OZENNE,Mesnil-Ozenne,Le Mesnil-Ozenne,COM,50317,2,MESNIL OZENNE,Mesnil-Ozenne,Le Mesnil-Ozenne -21,1985-01-01,COM,50531,0,SAINT OVIN,Saint-Ovin,Saint-Ovin,COM,50531,0,SAINT OVIN,Saint-Ovin,Saint-Ovin +34,1985-01-01,COMA,50317,2,MESNIL OZENNE,Mesnil-Ozenne,Le Mesnil-Ozenne,COM,50531,0,SAINT OVIN,Saint-Ovin,Saint-Ovin 21,1985-01-01,COM,50531,0,SAINT OVIN,Saint-Ovin,Saint-Ovin,COM,50317,2,MESNIL OZENNE,Mesnil-Ozenne,Le Mesnil-Ozenne -21,1985-01-01,COM,50531,0,SAINT OVIN,Saint-Ovin,Saint-Ovin,COMA,50067,3,BOULOUZE,Boulouze,La Boulouze +21,1985-01-01,COM,50531,0,SAINT OVIN,Saint-Ovin,Saint-Ovin,COM,50531,0,SAINT OVIN,Saint-Ovin,Saint-Ovin 21,1985-01-01,COMA,52016,1,ARBOT,Arbot,Arbot,COM,52016,1,ARBOT,Arbot,Arbot +34,1985-01-01,COMA,52016,1,ARBOT,Arbot,Arbot,COM,52439,0,ROUVRES SUR AUBE,Rouvres-sur-Aube,Rouvres-sur-Aube 21,1985-01-01,COMA,52030,1,AUTIGNY LE PETIT,Autigny-le-Petit,Autigny-le-Petit,COM,52030,1,AUTIGNY LE PETIT,Autigny-le-Petit,Autigny-le-Petit -21,1985-01-01,COM,52035,0,HAUTS DE VINGEANNE,Hauts-de-Vingeanne,Hauts-de-Vingeanne,COM,52285,0,LEUCHEY,Leuchey,Leuchey +34,1985-01-01,COMA,52030,1,AUTIGNY LE PETIT,Autigny-le-Petit,Autigny-le-Petit,COM,52156,0,CUREL,Curel,Curel 21,1985-01-01,COM,52035,0,HAUTS DE VINGEANNE,Hauts-de-Vingeanne,Hauts-de-Vingeanne,COM,52035,0,BAISSEY,Baissey,Baissey -21,1985-01-01,COM,52156,0,CUREL AUTIGNY,Curel-Autigny,Curel-Autigny,COM,52156,0,CUREL,Curel,Curel +21,1985-01-01,COM,52035,0,HAUTS DE VINGEANNE,Hauts-de-Vingeanne,Hauts-de-Vingeanne,COM,52285,0,LEUCHEY,Leuchey,Leuchey 21,1985-01-01,COM,52156,0,CUREL AUTIGNY,Curel-Autigny,Curel-Autigny,COM,52030,1,AUTIGNY LE PETIT,Autigny-le-Petit,Autigny-le-Petit +21,1985-01-01,COM,52156,0,CUREL AUTIGNY,Curel-Autigny,Curel-Autigny,COM,52156,0,CUREL,Curel,Curel 21,1985-01-01,COM,52257,0,LAFERTE SUR AMANCE,Laferté-sur-Amance,Laferté-sur-Amance,COM,52257,0,LAFERTE SUR AMANCE,Laferté-sur-Amance,Laferté-sur-Amance -21,1985-01-01,COM,52257,0,LAFERTE SUR AMANCE,Laferté-sur-Amance,Laferté-sur-Amance,COM,52513,0,VELLES,Velles,Velles 21,1985-01-01,COM,52257,0,LAFERTE SUR AMANCE,Laferté-sur-Amance,Laferté-sur-Amance,COM,52390,0,PISSELOUP,Pisseloup,Pisseloup +21,1985-01-01,COM,52257,0,LAFERTE SUR AMANCE,Laferté-sur-Amance,Laferté-sur-Amance,COM,52513,0,VELLES,Velles,Velles +34,1985-01-01,COMA,52285,0,LEUCHEY,Leuchey,Leuchey,COM,52035,0,BAISSEY,Baissey,Baissey 21,1985-01-01,COMA,52285,0,LEUCHEY,Leuchey,Leuchey,COM,52285,0,LEUCHEY,Leuchey,Leuchey +34,1985-01-01,COMA,52390,0,PISSELOUP,Pisseloup,Pisseloup,COM,52257,0,LAFERTE SUR AMANCE,Laferté-sur-Amance,Laferté-sur-Amance 21,1985-01-01,COMA,52390,0,PISSELOUP,Pisseloup,Pisseloup,COM,52390,0,PISSELOUP,Pisseloup,Pisseloup +34,1985-01-01,COMA,52390,0,PISSELOUP,Pisseloup,Pisseloup,COM,52513,0,VELLES,Velles,Velles 21,1985-01-01,COM,52439,0,ROUVRES ARBOT,Rouvres-Arbot,Rouvres-Arbot,COM,52016,1,ARBOT,Arbot,Arbot 21,1985-01-01,COM,52439,0,ROUVRES ARBOT,Rouvres-Arbot,Rouvres-Arbot,COM,52439,0,ROUVRES SUR AUBE,Rouvres-sur-Aube,Rouvres-sur-Aube +34,1985-01-01,COMA,52513,0,VELLES,Velles,Velles,COM,52257,0,LAFERTE SUR AMANCE,Laferté-sur-Amance,Laferté-sur-Amance +34,1985-01-01,COMA,52513,0,VELLES,Velles,Velles,COM,52390,0,PISSELOUP,Pisseloup,Pisseloup 21,1985-01-01,COMA,52513,0,VELLES,Velles,Velles,COM,52513,0,VELLES,Velles,Velles 21,1985-01-01,COM,55154,0,DIEUE,Dieue,Dieue,COM,55154,0,DIEUE SUR MEUSE,Dieue-sur-Meuse,Dieue-sur-Meuse 21,1985-01-01,COM,55154,0,DIEUE,Dieue,Dieue,COM,55204,0,GENICOURT SUR MEUSE,Génicourt-sur-Meuse,Génicourt-sur-Meuse +34,1985-01-01,COMA,55204,0,GENICOURT SUR MEUSE,Génicourt-sur-Meuse,Génicourt-sur-Meuse,COM,55154,0,DIEUE SUR MEUSE,Dieue-sur-Meuse,Dieue-sur-Meuse 21,1985-01-01,COMA,55204,0,GENICOURT SUR MEUSE,Génicourt-sur-Meuse,Génicourt-sur-Meuse,COM,55204,0,GENICOURT SUR MEUSE,Génicourt-sur-Meuse,Génicourt-sur-Meuse -21,1985-01-01,COM,57175,0,DIANE ET KERPRICH,Diane-et-Kerprich,Diane-et-Kerprich,COM,57362,0,KERPRICH AUX BOIS,Kerprich-aux-Bois,Kerprich-aux-Bois 21,1985-01-01,COM,57175,0,DIANE ET KERPRICH,Diane-et-Kerprich,Diane-et-Kerprich,COM,57175,0,DIANE CAPELLE,Diane-Capelle,Diane-Capelle +21,1985-01-01,COM,57175,0,DIANE ET KERPRICH,Diane-et-Kerprich,Diane-et-Kerprich,COM,57362,0,KERPRICH AUX BOIS,Kerprich-aux-Bois,Kerprich-aux-Bois +34,1985-01-01,COMA,57362,0,KERPRICH AUX BOIS,Kerprich-aux-Bois,Kerprich-aux-Bois,COM,57175,0,DIANE CAPELLE,Diane-Capelle,Diane-Capelle 21,1985-01-01,COMA,57362,0,KERPRICH AUX BOIS,Kerprich-aux-Bois,Kerprich-aux-Bois,COM,57362,0,KERPRICH AUX BOIS,Kerprich-aux-Bois,Kerprich-aux-Bois 10,1985-01-01,COM,61277,3,MENIERE,Ménière,La Ménière,COM,61277,3,MESNIERE,Mesnière,La Mesnière 21,1985-01-01,COM,66130,1,OSSEJA,Osséja,Osséja,COM,66130,1,OSSEJA,Osséja,Osséja 21,1985-01-01,COM,66130,1,OSSEJA,Osséja,Osséja,COM,66220,0,VALCEBOLLERE,Valcebollère,Valcebollère +34,1985-01-01,COMA,66220,0,VALCEBOLLERE,Valcebollère,Valcebollère,COM,66130,1,OSSEJA,Osséja,Osséja 21,1985-01-01,COMA,66220,0,VALCEBOLLERE,Valcebollère,Valcebollère,COM,66220,0,VALCEBOLLERE,Valcebollère,Valcebollère -21,1985-01-01,COM,79005,1,AIRVAULT,Airvault,Airvault,COM,79047,0,BOUSSAIS,Boussais,Boussais 21,1985-01-01,COM,79005,1,AIRVAULT,Airvault,Airvault,COM,79005,1,AIRVAULT,Airvault,Airvault -21,1985-01-01,COM,79005,1,AIRVAULT,Airvault,Airvault,COMA,79041,0,BORCQ SUR AIRVAULT,Borcq-sur-Airvault,Borcq-sur-Airvault -21,1985-01-01,COM,79005,1,AIRVAULT,Airvault,Airvault,COMA,79317,0,SOULIEVRES,Soulièvres,Soulièvres -21,1985-01-01,COMA,79041,0,BORCQ SUR AIRVAULT,Borcq-sur-Airvault,Borcq-sur-Airvault,COMA,79041,0,BORCQ SUR AIRVAULT,Borcq-sur-Airvault,Borcq-sur-Airvault +21,1985-01-01,COM,79005,1,AIRVAULT,Airvault,Airvault,COM,79047,0,BOUSSAIS,Boussais,Boussais +34,1985-01-01,COMA,79047,0,BOUSSAIS,Boussais,Boussais,COM,79005,1,AIRVAULT,Airvault,Airvault 21,1985-01-01,COMA,79047,0,BOUSSAIS,Boussais,Boussais,COM,79047,0,BOUSSAIS,Boussais,Boussais -21,1985-01-01,COMA,79317,0,SOULIEVRES,Soulièvres,Soulièvres,COMA,79317,0,SOULIEVRES,Soulièvres,Soulièvres 31,1985-01-01,COM,80086,0,BERNAVILLE,Bernaville,Bernaville,COM,80086,0,BERNAVILLE,Bernaville,Bernaville 31,1985-01-01,COM,80772,0,VACQUERIE,Vacquerie,Vacquerie,COM,80086,0,BERNAVILLE,Bernaville,Bernaville 21,1985-01-01,COM,85002,5,AIGUILLON LA CHAIZE,Aiguillon-la-Chaize,L'Aiguillon-la-Chaize,COM,85002,5,AIGUILLON SUR VIE,Aiguillon-sur-Vie,L'Aiguillon-sur-Vie 21,1985-01-01,COM,85002,5,AIGUILLON LA CHAIZE,Aiguillon-la-Chaize,L'Aiguillon-la-Chaize,COM,85045,3,CHAIZE GIRAUD,Chaize-Giraud,La Chaize-Giraud +34,1985-01-01,COMA,85045,3,CHAIZE GIRAUD,Chaize-Giraud,La Chaize-Giraud,COM,85002,5,AIGUILLON SUR VIE,Aiguillon-sur-Vie,L'Aiguillon-sur-Vie 21,1985-01-01,COMA,85045,3,CHAIZE GIRAUD,Chaize-Giraud,La Chaize-Giraud,COM,85045,3,CHAIZE GIRAUD,Chaize-Giraud,La Chaize-Giraud 10,1984-11-19,COM,17073,0,BUSSAC,Bussac,Bussac,COM,17073,0,BUSSAC SUR CHARENTE,Bussac-sur-Charente,Bussac-sur-Charente 10,1984-11-19,COM,27701,0,VAUDREUIL EX ENSEMBLE URBAIN,Vaudreuil-Ex-Ensemble Urbain,Vaudreuil-Ex-Ensemble Urbain,COM,27701,0,VAL DE REUIL,Val-de-Reuil,Val-de-Reuil @@ -7326,244 +6976,386 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1984-11-19,COM,53146,0,MARTIGNE,Martigné,Martigné,COM,53146,0,MARTIGNE SUR MAYENNE,Martigné-sur-Mayenne,Martigné-sur-Mayenne 10,1984-11-19,COM,63242,0,MAURIAT,Mauriat,Mauriat,COM,63242,0,MORIAT,Moriat,Moriat 10,1984-11-19,COM,64010,1,AICIRITS,Aïcirits,Aïcirits,COM,64010,1,AICIRITS CAMOU SUHAST,Aïcirits-Camou-Suhast,Aïcirits-Camou-Suhast -10,1984-11-19,COM,64010,1,AICIRITS,Aïcirits,Aïcirits,COMA,64163,0,CAMOU MIXE SUHAST,Camou-Mixe-Suhast,Camou-Mixe-Suhast -10,1984-11-19,COMA,64163,0,CAMOU MIXE SUHAST,Camou-Mixe-Suhast,Camou-Mixe-Suhast,COM,64010,1,AICIRITS CAMOU SUHAST,Aïcirits-Camou-Suhast,Aïcirits-Camou-Suhast 10,1984-11-19,COM,66063,5,ECLUSE,Écluse,L'Écluse,COM,66063,4,CLUSES,Cluses,Les Cluses 10,1984-11-19,COM,74061,0,CHAPERY,Chapéry,Chapéry,COM,74061,0,CHAPEIRY,Chapeiry,Chapeiry 10,1984-11-19,COM,76497,2,PETIT COURONNE,Petit-Couronne,Le Petit-Couronne,COM,76497,0,PETIT COURONNE,Petit-Couronne,Petit-Couronne 21,1984-07-05,COMA,22165,0,PENGUILY,Penguily,Penguily,COM,22165,0,PENGUILY,Penguily,Penguily -21,1984-07-05,COM,22296,0,SAINT GLEN PENGUILY,Saint-Glen-Penguily,Saint-Glen-Penguily,COM,22296,0,SAINT GLEN,Saint-Glen,Saint-Glen +34,1984-07-05,COMA,22165,0,PENGUILY,Penguily,Penguily,COM,22296,0,SAINT GLEN,Saint-Glen,Saint-Glen 21,1984-07-05,COM,22296,0,SAINT GLEN PENGUILY,Saint-Glen-Penguily,Saint-Glen-Penguily,COM,22165,0,PENGUILY,Penguily,Penguily +21,1984-07-05,COM,22296,0,SAINT GLEN PENGUILY,Saint-Glen-Penguily,Saint-Glen-Penguily,COM,22296,0,SAINT GLEN,Saint-Glen,Saint-Glen 21,1984-03-28,COMA,66100,0,LLO,Llo,Llo,COM,66100,0,LLO,Llo,Llo -21,1984-03-28,COM,66167,0,SAILLAGOUSE LLO,Saillagouse-Llo,Saillagouse-Llo,COM,66167,0,SAILLAGOUSE,Saillagouse,Saillagouse +34,1984-03-28,COMA,66100,0,LLO,Llo,Llo,COM,66167,0,SAILLAGOUSE,Saillagouse,Saillagouse 21,1984-03-28,COM,66167,0,SAILLAGOUSE LLO,Saillagouse-Llo,Saillagouse-Llo,COM,66100,0,LLO,Llo,Llo +21,1984-03-28,COM,66167,0,SAILLAGOUSE LLO,Saillagouse-Llo,Saillagouse-Llo,COM,66167,0,SAILLAGOUSE,Saillagouse,Saillagouse 21,1984-01-01,COMA,22103,0,LANGROLAY SUR RANCE,Langrolay-sur-Rance,Langrolay-sur-Rance,COM,22103,0,LANGROLAY SUR RANCE,Langrolay-sur-Rance,Langrolay-sur-Rance +34,1984-01-01,COMA,22103,0,LANGROLAY SUR RANCE,Langrolay-sur-Rance,Langrolay-sur-Rance,COM,22213,0,PLOUER SUR RANCE,Plouër-sur-Rance,Plouër-sur-Rance 21,1984-01-01,COM,22213,0,PLOUER LANGROLAY SUR RANCE,Plouër-Langrolay-sur-Rance,Plouër-Langrolay-sur-Rance,COM,22103,0,LANGROLAY SUR RANCE,Langrolay-sur-Rance,Langrolay-sur-Rance 21,1984-01-01,COM,22213,0,PLOUER LANGROLAY SUR RANCE,Plouër-Langrolay-sur-Rance,Plouër-Langrolay-sur-Rance,COM,22213,0,PLOUER SUR RANCE,Plouër-sur-Rance,Plouër-sur-Rance 21,1984-01-01,COMA,24375,0,SAINT AUBIN DE NABIRAT,Saint-Aubin-de-Nabirat,Saint-Aubin-de-Nabirat,COM,24375,0,SAINT AUBIN DE NABIRAT,Saint-Aubin-de-Nabirat,Saint-Aubin-de-Nabirat +34,1984-01-01,COMA,24375,0,SAINT AUBIN DE NABIRAT,Saint-Aubin-de-Nabirat,Saint-Aubin-de-Nabirat,COM,24450,0,SAINT MARTIAL DE NABIRAT,Saint-Martial-de-Nabirat,Saint-Martial-de-Nabirat 21,1984-01-01,COM,24450,0,SAINT MARTIAL ET SAINT AUBIN DE NABIRAT,Saint-Martial-et-Saint-Aubin-de-Nabirat,Saint-Martial-et-Saint-Aubin-de-Nabirat,COM,24375,0,SAINT AUBIN DE NABIRAT,Saint-Aubin-de-Nabirat,Saint-Aubin-de-Nabirat 21,1984-01-01,COM,24450,0,SAINT MARTIAL ET SAINT AUBIN DE NABIRAT,Saint-Martial-et-Saint-Aubin-de-Nabirat,Saint-Martial-et-Saint-Aubin-de-Nabirat,COM,24450,0,SAINT MARTIAL DE NABIRAT,Saint-Martial-de-Nabirat,Saint-Martial-de-Nabirat 21,1984-01-01,COMA,38418,0,SAINTE MARIE DU MONT,Sainte-Marie-du-Mont,Sainte-Marie-du-Mont,COM,38418,0,SAINTE MARIE DU MONT,Sainte-Marie-du-Mont,Sainte-Marie-du-Mont +34,1984-01-01,COMA,38418,0,SAINTE MARIE DU MONT,Sainte-Marie-du-Mont,Sainte-Marie-du-Mont,COM,38466,0,SAINT VINCENT DE MERCUZE,Saint-Vincent-de-Mercuze,Saint-Vincent-de-Mercuze 21,1984-01-01,COM,38466,0,SAINT VINCENT DE MERCUZE SAINTE MARIE DU MONT,Saint-Vincent-de-Mercuze-Sainte-Marie-du-Mont,Saint-Vincent-de-Mercuze-Sainte-Marie-du-Mont,COM,38418,0,SAINTE MARIE DU MONT,Sainte-Marie-du-Mont,Sainte-Marie-du-Mont 21,1984-01-01,COM,38466,0,SAINT VINCENT DE MERCUZE SAINTE MARIE DU MONT,Saint-Vincent-de-Mercuze-Sainte-Marie-du-Mont,Saint-Vincent-de-Mercuze-Sainte-Marie-du-Mont,COM,38466,0,SAINT VINCENT DE MERCUZE,Saint-Vincent-de-Mercuze,Saint-Vincent-de-Mercuze 21,1984-01-01,COMA,50221,0,GRIMESNIL,Grimesnil,Grimesnil,COM,50221,0,GRIMESNIL,Grimesnil,Grimesnil -21,1984-01-01,COM,50463,0,SAINT DENIS LE GAST,Saint-Denis-le-Gast,Saint-Denis-le-Gast,COM,50463,0,SAINT DENIS LE GAST,Saint-Denis-le-Gast,Saint-Denis-le-Gast +34,1984-01-01,COMA,50221,0,GRIMESNIL,Grimesnil,Grimesnil,COM,50463,0,SAINT DENIS LE GAST,Saint-Denis-le-Gast,Saint-Denis-le-Gast 21,1984-01-01,COM,50463,0,SAINT DENIS LE GAST,Saint-Denis-le-Gast,Saint-Denis-le-Gast,COM,50221,0,GRIMESNIL,Grimesnil,Grimesnil +21,1984-01-01,COM,50463,0,SAINT DENIS LE GAST,Saint-Denis-le-Gast,Saint-Denis-le-Gast,COM,50463,0,SAINT DENIS LE GAST,Saint-Denis-le-Gast,Saint-Denis-le-Gast 21,1984-01-01,COMA,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny,COM,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny +34,1984-01-01,COMA,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny,COM,52037,0,BANNES,Bannes,Bannes +34,1984-01-01,COMA,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny,COM,52059,0,BONNECOURT,Bonnecourt,Bonnecourt +34,1984-01-01,COMA,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny,COM,52105,0,CHANGEY,Changey,Changey +34,1984-01-01,COMA,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny,COM,52108,0,CHARMES,Charmes,Charmes +34,1984-01-01,COMA,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny,COM,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin +34,1984-01-01,COMA,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny,COM,52163,0,DAMPIERRE,Dampierre,Dampierre +34,1984-01-01,COMA,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny,COM,52207,0,FRECOURT,Frécourt,Frécourt +34,1984-01-01,COMA,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny,COM,52280,0,LECEY,Lecey,Lecey +34,1984-01-01,COMA,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny,COM,52348,0,NEUILLY L EVEQUE,Neuilly-l'Évêque,Neuilly-l'Évêque +34,1984-01-01,COMA,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny,COM,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val +34,1984-01-01,COMA,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny,COM,52397,0,POISEUL,Poiseul,Poiseul +34,1984-01-01,COMA,52037,0,BANNES,Bannes,Bannes,COM,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny 21,1984-01-01,COMA,52037,0,BANNES,Bannes,Bannes,COM,52037,0,BANNES,Bannes,Bannes +34,1984-01-01,COMA,52037,0,BANNES,Bannes,Bannes,COM,52059,0,BONNECOURT,Bonnecourt,Bonnecourt +34,1984-01-01,COMA,52037,0,BANNES,Bannes,Bannes,COM,52105,0,CHANGEY,Changey,Changey +34,1984-01-01,COMA,52037,0,BANNES,Bannes,Bannes,COM,52108,0,CHARMES,Charmes,Charmes +34,1984-01-01,COMA,52037,0,BANNES,Bannes,Bannes,COM,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin +34,1984-01-01,COMA,52037,0,BANNES,Bannes,Bannes,COM,52163,0,DAMPIERRE,Dampierre,Dampierre +34,1984-01-01,COMA,52037,0,BANNES,Bannes,Bannes,COM,52207,0,FRECOURT,Frécourt,Frécourt +34,1984-01-01,COMA,52037,0,BANNES,Bannes,Bannes,COM,52280,0,LECEY,Lecey,Lecey +34,1984-01-01,COMA,52037,0,BANNES,Bannes,Bannes,COM,52348,0,NEUILLY L EVEQUE,Neuilly-l'Évêque,Neuilly-l'Évêque +34,1984-01-01,COMA,52037,0,BANNES,Bannes,Bannes,COM,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val +34,1984-01-01,COMA,52037,0,BANNES,Bannes,Bannes,COM,52397,0,POISEUL,Poiseul,Poiseul +34,1984-01-01,COMA,52059,0,BONNECOURT,Bonnecourt,Bonnecourt,COM,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny +34,1984-01-01,COMA,52059,0,BONNECOURT,Bonnecourt,Bonnecourt,COM,52037,0,BANNES,Bannes,Bannes 21,1984-01-01,COMA,52059,0,BONNECOURT,Bonnecourt,Bonnecourt,COM,52059,0,BONNECOURT,Bonnecourt,Bonnecourt +34,1984-01-01,COMA,52059,0,BONNECOURT,Bonnecourt,Bonnecourt,COM,52105,0,CHANGEY,Changey,Changey +34,1984-01-01,COMA,52059,0,BONNECOURT,Bonnecourt,Bonnecourt,COM,52108,0,CHARMES,Charmes,Charmes +34,1984-01-01,COMA,52059,0,BONNECOURT,Bonnecourt,Bonnecourt,COM,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin +34,1984-01-01,COMA,52059,0,BONNECOURT,Bonnecourt,Bonnecourt,COM,52163,0,DAMPIERRE,Dampierre,Dampierre +34,1984-01-01,COMA,52059,0,BONNECOURT,Bonnecourt,Bonnecourt,COM,52207,0,FRECOURT,Frécourt,Frécourt +34,1984-01-01,COMA,52059,0,BONNECOURT,Bonnecourt,Bonnecourt,COM,52280,0,LECEY,Lecey,Lecey +34,1984-01-01,COMA,52059,0,BONNECOURT,Bonnecourt,Bonnecourt,COM,52348,0,NEUILLY L EVEQUE,Neuilly-l'Évêque,Neuilly-l'Évêque +34,1984-01-01,COMA,52059,0,BONNECOURT,Bonnecourt,Bonnecourt,COM,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val +34,1984-01-01,COMA,52059,0,BONNECOURT,Bonnecourt,Bonnecourt,COM,52397,0,POISEUL,Poiseul,Poiseul +34,1984-01-01,COMA,52105,0,CHANGEY,Changey,Changey,COM,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny +34,1984-01-01,COMA,52105,0,CHANGEY,Changey,Changey,COM,52037,0,BANNES,Bannes,Bannes +34,1984-01-01,COMA,52105,0,CHANGEY,Changey,Changey,COM,52059,0,BONNECOURT,Bonnecourt,Bonnecourt 21,1984-01-01,COMA,52105,0,CHANGEY,Changey,Changey,COM,52105,0,CHANGEY,Changey,Changey +34,1984-01-01,COMA,52105,0,CHANGEY,Changey,Changey,COM,52108,0,CHARMES,Charmes,Charmes +34,1984-01-01,COMA,52105,0,CHANGEY,Changey,Changey,COM,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin +34,1984-01-01,COMA,52105,0,CHANGEY,Changey,Changey,COM,52163,0,DAMPIERRE,Dampierre,Dampierre +34,1984-01-01,COMA,52105,0,CHANGEY,Changey,Changey,COM,52207,0,FRECOURT,Frécourt,Frécourt +34,1984-01-01,COMA,52105,0,CHANGEY,Changey,Changey,COM,52280,0,LECEY,Lecey,Lecey +34,1984-01-01,COMA,52105,0,CHANGEY,Changey,Changey,COM,52348,0,NEUILLY L EVEQUE,Neuilly-l'Évêque,Neuilly-l'Évêque +34,1984-01-01,COMA,52105,0,CHANGEY,Changey,Changey,COM,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val +34,1984-01-01,COMA,52105,0,CHANGEY,Changey,Changey,COM,52397,0,POISEUL,Poiseul,Poiseul +34,1984-01-01,COMA,52108,0,CHARMES,Charmes,Charmes,COM,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny +34,1984-01-01,COMA,52108,0,CHARMES,Charmes,Charmes,COM,52037,0,BANNES,Bannes,Bannes +34,1984-01-01,COMA,52108,0,CHARMES,Charmes,Charmes,COM,52059,0,BONNECOURT,Bonnecourt,Bonnecourt +34,1984-01-01,COMA,52108,0,CHARMES,Charmes,Charmes,COM,52105,0,CHANGEY,Changey,Changey 21,1984-01-01,COMA,52108,0,CHARMES,Charmes,Charmes,COM,52108,0,CHARMES,Charmes,Charmes +34,1984-01-01,COMA,52108,0,CHARMES,Charmes,Charmes,COM,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin +34,1984-01-01,COMA,52108,0,CHARMES,Charmes,Charmes,COM,52163,0,DAMPIERRE,Dampierre,Dampierre +34,1984-01-01,COMA,52108,0,CHARMES,Charmes,Charmes,COM,52207,0,FRECOURT,Frécourt,Frécourt +34,1984-01-01,COMA,52108,0,CHARMES,Charmes,Charmes,COM,52280,0,LECEY,Lecey,Lecey +34,1984-01-01,COMA,52108,0,CHARMES,Charmes,Charmes,COM,52348,0,NEUILLY L EVEQUE,Neuilly-l'Évêque,Neuilly-l'Évêque +34,1984-01-01,COMA,52108,0,CHARMES,Charmes,Charmes,COM,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val +34,1984-01-01,COMA,52108,0,CHARMES,Charmes,Charmes,COM,52397,0,POISEUL,Poiseul,Poiseul +34,1984-01-01,COMA,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin,COM,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny +34,1984-01-01,COMA,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin,COM,52037,0,BANNES,Bannes,Bannes +34,1984-01-01,COMA,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin,COM,52059,0,BONNECOURT,Bonnecourt,Bonnecourt +34,1984-01-01,COMA,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin,COM,52105,0,CHANGEY,Changey,Changey +34,1984-01-01,COMA,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin,COM,52108,0,CHARMES,Charmes,Charmes 21,1984-01-01,COMA,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin,COM,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin +34,1984-01-01,COMA,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin,COM,52163,0,DAMPIERRE,Dampierre,Dampierre +34,1984-01-01,COMA,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin,COM,52207,0,FRECOURT,Frécourt,Frécourt +34,1984-01-01,COMA,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin,COM,52280,0,LECEY,Lecey,Lecey +34,1984-01-01,COMA,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin,COM,52348,0,NEUILLY L EVEQUE,Neuilly-l'Évêque,Neuilly-l'Évêque +34,1984-01-01,COMA,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin,COM,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val +34,1984-01-01,COMA,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin,COM,52397,0,POISEUL,Poiseul,Poiseul +34,1984-01-01,COMA,52163,0,DAMPIERRE,Dampierre,Dampierre,COM,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny +34,1984-01-01,COMA,52163,0,DAMPIERRE,Dampierre,Dampierre,COM,52037,0,BANNES,Bannes,Bannes +34,1984-01-01,COMA,52163,0,DAMPIERRE,Dampierre,Dampierre,COM,52059,0,BONNECOURT,Bonnecourt,Bonnecourt +34,1984-01-01,COMA,52163,0,DAMPIERRE,Dampierre,Dampierre,COM,52105,0,CHANGEY,Changey,Changey +34,1984-01-01,COMA,52163,0,DAMPIERRE,Dampierre,Dampierre,COM,52108,0,CHARMES,Charmes,Charmes +34,1984-01-01,COMA,52163,0,DAMPIERRE,Dampierre,Dampierre,COM,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin 21,1984-01-01,COMA,52163,0,DAMPIERRE,Dampierre,Dampierre,COM,52163,0,DAMPIERRE,Dampierre,Dampierre +34,1984-01-01,COMA,52163,0,DAMPIERRE,Dampierre,Dampierre,COM,52207,0,FRECOURT,Frécourt,Frécourt +34,1984-01-01,COMA,52163,0,DAMPIERRE,Dampierre,Dampierre,COM,52280,0,LECEY,Lecey,Lecey +34,1984-01-01,COMA,52163,0,DAMPIERRE,Dampierre,Dampierre,COM,52348,0,NEUILLY L EVEQUE,Neuilly-l'Évêque,Neuilly-l'Évêque +34,1984-01-01,COMA,52163,0,DAMPIERRE,Dampierre,Dampierre,COM,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val +34,1984-01-01,COMA,52163,0,DAMPIERRE,Dampierre,Dampierre,COM,52397,0,POISEUL,Poiseul,Poiseul +34,1984-01-01,COMA,52207,0,FRECOURT,Frécourt,Frécourt,COM,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny +34,1984-01-01,COMA,52207,0,FRECOURT,Frécourt,Frécourt,COM,52037,0,BANNES,Bannes,Bannes +34,1984-01-01,COMA,52207,0,FRECOURT,Frécourt,Frécourt,COM,52059,0,BONNECOURT,Bonnecourt,Bonnecourt +34,1984-01-01,COMA,52207,0,FRECOURT,Frécourt,Frécourt,COM,52105,0,CHANGEY,Changey,Changey +34,1984-01-01,COMA,52207,0,FRECOURT,Frécourt,Frécourt,COM,52108,0,CHARMES,Charmes,Charmes +34,1984-01-01,COMA,52207,0,FRECOURT,Frécourt,Frécourt,COM,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin +34,1984-01-01,COMA,52207,0,FRECOURT,Frécourt,Frécourt,COM,52163,0,DAMPIERRE,Dampierre,Dampierre 21,1984-01-01,COMA,52207,0,FRECOURT,Frécourt,Frécourt,COM,52207,0,FRECOURT,Frécourt,Frécourt +34,1984-01-01,COMA,52207,0,FRECOURT,Frécourt,Frécourt,COM,52280,0,LECEY,Lecey,Lecey +34,1984-01-01,COMA,52207,0,FRECOURT,Frécourt,Frécourt,COM,52348,0,NEUILLY L EVEQUE,Neuilly-l'Évêque,Neuilly-l'Évêque +34,1984-01-01,COMA,52207,0,FRECOURT,Frécourt,Frécourt,COM,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val +34,1984-01-01,COMA,52207,0,FRECOURT,Frécourt,Frécourt,COM,52397,0,POISEUL,Poiseul,Poiseul +34,1984-01-01,COMA,52280,0,LECEY,Lecey,Lecey,COM,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny +34,1984-01-01,COMA,52280,0,LECEY,Lecey,Lecey,COM,52037,0,BANNES,Bannes,Bannes +34,1984-01-01,COMA,52280,0,LECEY,Lecey,Lecey,COM,52059,0,BONNECOURT,Bonnecourt,Bonnecourt +34,1984-01-01,COMA,52280,0,LECEY,Lecey,Lecey,COM,52105,0,CHANGEY,Changey,Changey +34,1984-01-01,COMA,52280,0,LECEY,Lecey,Lecey,COM,52108,0,CHARMES,Charmes,Charmes +34,1984-01-01,COMA,52280,0,LECEY,Lecey,Lecey,COM,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin +34,1984-01-01,COMA,52280,0,LECEY,Lecey,Lecey,COM,52163,0,DAMPIERRE,Dampierre,Dampierre +34,1984-01-01,COMA,52280,0,LECEY,Lecey,Lecey,COM,52207,0,FRECOURT,Frécourt,Frécourt 21,1984-01-01,COMA,52280,0,LECEY,Lecey,Lecey,COM,52280,0,LECEY,Lecey,Lecey +34,1984-01-01,COMA,52280,0,LECEY,Lecey,Lecey,COM,52348,0,NEUILLY L EVEQUE,Neuilly-l'Évêque,Neuilly-l'Évêque +34,1984-01-01,COMA,52280,0,LECEY,Lecey,Lecey,COM,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val +34,1984-01-01,COMA,52280,0,LECEY,Lecey,Lecey,COM,52397,0,POISEUL,Poiseul,Poiseul +21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny +21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52037,0,BANNES,Bannes,Bannes +21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52059,0,BONNECOURT,Bonnecourt,Bonnecourt +21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52105,0,CHANGEY,Changey,Changey +21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52108,0,CHARMES,Charmes,Charmes +21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin 21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52163,0,DAMPIERRE,Dampierre,Dampierre 21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52207,0,FRECOURT,Frécourt,Frécourt -21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin -21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52108,0,CHARMES,Charmes,Charmes 21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52280,0,LECEY,Lecey,Lecey 21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52348,0,NEUILLY L EVEQUE,Neuilly-l'Évêque,Neuilly-l'Évêque 21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val 21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52397,0,POISEUL,Poiseul,Poiseul -21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52105,0,CHANGEY,Changey,Changey -21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52059,0,BONNECOURT,Bonnecourt,Bonnecourt -21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52037,0,BANNES,Bannes,Bannes -21,1984-01-01,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris,COM,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny +34,1984-01-01,COMA,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val,COM,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny +34,1984-01-01,COMA,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val,COM,52037,0,BANNES,Bannes,Bannes +34,1984-01-01,COMA,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val,COM,52059,0,BONNECOURT,Bonnecourt,Bonnecourt +34,1984-01-01,COMA,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val,COM,52105,0,CHANGEY,Changey,Changey +34,1984-01-01,COMA,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val,COM,52108,0,CHARMES,Charmes,Charmes +34,1984-01-01,COMA,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val,COM,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin +34,1984-01-01,COMA,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val,COM,52163,0,DAMPIERRE,Dampierre,Dampierre +34,1984-01-01,COMA,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val,COM,52207,0,FRECOURT,Frécourt,Frécourt +34,1984-01-01,COMA,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val,COM,52280,0,LECEY,Lecey,Lecey +34,1984-01-01,COMA,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val,COM,52348,0,NEUILLY L EVEQUE,Neuilly-l'Évêque,Neuilly-l'Évêque 21,1984-01-01,COMA,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val,COM,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val +34,1984-01-01,COMA,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val,COM,52397,0,POISEUL,Poiseul,Poiseul +34,1984-01-01,COMA,52397,0,POISEUL,Poiseul,Poiseul,COM,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny +34,1984-01-01,COMA,52397,0,POISEUL,Poiseul,Poiseul,COM,52037,0,BANNES,Bannes,Bannes +34,1984-01-01,COMA,52397,0,POISEUL,Poiseul,Poiseul,COM,52059,0,BONNECOURT,Bonnecourt,Bonnecourt +34,1984-01-01,COMA,52397,0,POISEUL,Poiseul,Poiseul,COM,52105,0,CHANGEY,Changey,Changey +34,1984-01-01,COMA,52397,0,POISEUL,Poiseul,Poiseul,COM,52108,0,CHARMES,Charmes,Charmes +34,1984-01-01,COMA,52397,0,POISEUL,Poiseul,Poiseul,COM,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin +34,1984-01-01,COMA,52397,0,POISEUL,Poiseul,Poiseul,COM,52163,0,DAMPIERRE,Dampierre,Dampierre +34,1984-01-01,COMA,52397,0,POISEUL,Poiseul,Poiseul,COM,52207,0,FRECOURT,Frécourt,Frécourt +34,1984-01-01,COMA,52397,0,POISEUL,Poiseul,Poiseul,COM,52280,0,LECEY,Lecey,Lecey +34,1984-01-01,COMA,52397,0,POISEUL,Poiseul,Poiseul,COM,52348,0,NEUILLY L EVEQUE,Neuilly-l'Évêque,Neuilly-l'Évêque +34,1984-01-01,COMA,52397,0,POISEUL,Poiseul,Poiseul,COM,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val 21,1984-01-01,COMA,52397,0,POISEUL,Poiseul,Poiseul,COM,52397,0,POISEUL,Poiseul,Poiseul 21,1984-01-01,COM,55035,0,BAZINCOURT MONTPLONNE,Bazincourt-Montplonne,Bazincourt-Montplonne,COM,55035,0,BAZINCOURT SUR SAULX,Bazincourt-sur-Saulx,Bazincourt-sur-Saulx 21,1984-01-01,COM,55035,0,BAZINCOURT MONTPLONNE,Bazincourt-Montplonne,Bazincourt-Montplonne,COM,55352,0,MONTPLONNE,Montplonne,Montplonne -21,1984-01-01,COM,55286,4,QUATRE VENTS,Quatre-Vents,Les Quatre-Vents,COM,55395,1,OSCHES,Osches,Osches 21,1984-01-01,COM,55286,4,QUATRE VENTS,Quatre-Vents,Les Quatre-Vents,COM,55286,0,LEMMES,Lemmes,Lemmes +21,1984-01-01,COM,55286,4,QUATRE VENTS,Quatre-Vents,Les Quatre-Vents,COM,55395,1,OSCHES,Osches,Osches 21,1984-01-01,COM,55286,4,QUATRE VENTS,Quatre-Vents,Les Quatre-Vents,COM,55482,0,SENONCOURT LES MAUJOUY,Senoncourt-les-Maujouy,Senoncourt-les-Maujouy 21,1984-01-01,COM,55286,4,QUATRE VENTS,Quatre-Vents,Les Quatre-Vents,COM,55525,0,VADELAINCOURT,Vadelaincourt,Vadelaincourt +34,1984-01-01,COMA,55352,0,MONTPLONNE,Montplonne,Montplonne,COM,55035,0,BAZINCOURT SUR SAULX,Bazincourt-sur-Saulx,Bazincourt-sur-Saulx 21,1984-01-01,COMA,55352,0,MONTPLONNE,Montplonne,Montplonne,COM,55352,0,MONTPLONNE,Montplonne,Montplonne +34,1984-01-01,COMA,55395,1,OSCHES,Osches,Osches,COM,55286,0,LEMMES,Lemmes,Lemmes 21,1984-01-01,COMA,55395,1,OSCHES,Osches,Osches,COM,55395,1,OSCHES,Osches,Osches +34,1984-01-01,COMA,55395,1,OSCHES,Osches,Osches,COM,55482,0,SENONCOURT LES MAUJOUY,Senoncourt-les-Maujouy,Senoncourt-les-Maujouy +34,1984-01-01,COMA,55395,1,OSCHES,Osches,Osches,COM,55525,0,VADELAINCOURT,Vadelaincourt,Vadelaincourt +34,1984-01-01,COMA,55482,0,SENONCOURT LES MAUJOUY,Senoncourt-les-Maujouy,Senoncourt-les-Maujouy,COM,55286,0,LEMMES,Lemmes,Lemmes +34,1984-01-01,COMA,55482,0,SENONCOURT LES MAUJOUY,Senoncourt-les-Maujouy,Senoncourt-les-Maujouy,COM,55395,1,OSCHES,Osches,Osches 21,1984-01-01,COMA,55482,0,SENONCOURT LES MAUJOUY,Senoncourt-les-Maujouy,Senoncourt-les-Maujouy,COM,55482,0,SENONCOURT LES MAUJOUY,Senoncourt-les-Maujouy,Senoncourt-les-Maujouy +34,1984-01-01,COMA,55482,0,SENONCOURT LES MAUJOUY,Senoncourt-les-Maujouy,Senoncourt-les-Maujouy,COM,55525,0,VADELAINCOURT,Vadelaincourt,Vadelaincourt +34,1984-01-01,COMA,55525,0,VADELAINCOURT,Vadelaincourt,Vadelaincourt,COM,55286,0,LEMMES,Lemmes,Lemmes +34,1984-01-01,COMA,55525,0,VADELAINCOURT,Vadelaincourt,Vadelaincourt,COM,55395,1,OSCHES,Osches,Osches +34,1984-01-01,COMA,55525,0,VADELAINCOURT,Vadelaincourt,Vadelaincourt,COM,55482,0,SENONCOURT LES MAUJOUY,Senoncourt-les-Maujouy,Senoncourt-les-Maujouy 21,1984-01-01,COMA,55525,0,VADELAINCOURT,Vadelaincourt,Vadelaincourt,COM,55525,0,VADELAINCOURT,Vadelaincourt,Vadelaincourt 21,1984-01-01,COM,57011,1,ALBESTROFF,Albestroff,Albestroff,COM,57011,1,ALBESTROFF,Albestroff,Albestroff -21,1984-01-01,COM,57011,1,ALBESTROFF,Albestroff,Albestroff,COMA,57675,0,TORCHEVILLE,Torcheville,Torcheville -21,1984-01-01,COM,57011,1,ALBESTROFF,Albestroff,Albestroff,COMA,57573,0,RENING,Réning,Réning -21,1984-01-01,COM,57011,1,ALBESTROFF,Albestroff,Albestroff,COMA,57248,0,GIVRYCOURT,Givrycourt,Givrycourt 21,1984-01-01,COM,57011,1,ALBESTROFF,Albestroff,Albestroff,COM,57346,1,INSMING,Insming,Insming -21,1984-01-01,COMA,57248,0,GIVRYCOURT,Givrycourt,Givrycourt,COMA,57248,0,GIVRYCOURT,Givrycourt,Givrycourt +34,1984-01-01,COMA,57346,1,INSMING,Insming,Insming,COM,57011,1,ALBESTROFF,Albestroff,Albestroff 21,1984-01-01,COMA,57346,1,INSMING,Insming,Insming,COM,57346,1,INSMING,Insming,Insming -21,1984-01-01,COMA,57573,0,RENING,Réning,Réning,COMA,57573,0,RENING,Réning,Réning -21,1984-01-01,COMA,57675,0,TORCHEVILLE,Torcheville,Torcheville,COMA,57675,0,TORCHEVILLE,Torcheville,Torcheville 21,1984-01-01,COMA,64108,0,BELLOCQ,Bellocq,Bellocq,COM,64108,0,BELLOCQ,Bellocq,Bellocq +34,1984-01-01,COMA,64108,0,BELLOCQ,Bellocq,Bellocq,COM,64461,0,PUYOO,Puyoô,Puyoô +34,1984-01-01,COMA,64108,0,BELLOCQ,Bellocq,Bellocq,COM,64462,0,RAMOUS,Ramous,Ramous 21,1984-01-01,COM,64461,0,PUYO BELLOCQ RAMOUS,Puyo-Bellocq-Ramous,Puyo-Bellocq-Ramous,COM,64108,0,BELLOCQ,Bellocq,Bellocq 21,1984-01-01,COM,64461,0,PUYO BELLOCQ RAMOUS,Puyo-Bellocq-Ramous,Puyo-Bellocq-Ramous,COM,64461,0,PUYOO,Puyoô,Puyoô 21,1984-01-01,COM,64461,0,PUYO BELLOCQ RAMOUS,Puyo-Bellocq-Ramous,Puyo-Bellocq-Ramous,COM,64462,0,RAMOUS,Ramous,Ramous +34,1984-01-01,COMA,64462,0,RAMOUS,Ramous,Ramous,COM,64108,0,BELLOCQ,Bellocq,Bellocq +34,1984-01-01,COMA,64462,0,RAMOUS,Ramous,Ramous,COM,64461,0,PUYOO,Puyoô,Puyoô 21,1984-01-01,COMA,64462,0,RAMOUS,Ramous,Ramous,COM,64462,0,RAMOUS,Ramous,Ramous 21,1983-11-24,COMA,47019,0,BAJAMONT,Bajamont,Bajamont,COM,47019,0,BAJAMONT,Bajamont,Bajamont +34,1983-11-24,COMA,47019,0,BAJAMONT,Bajamont,Bajamont,COM,47209,0,PONT DU CASSE,Pont-du-Casse,Pont-du-Casse 21,1983-11-24,COMA,47058,0,CAUBEYRES,Caubeyres,Caubeyres,COM,47058,0,CAUBEYRES,Caubeyres,Caubeyres -21,1983-11-24,COM,47093,0,FARGUES SUR OURBISE,Fargues-sur-Ourbise,Fargues-sur-Ourbise,COM,47093,0,FARGUES SUR OURBISE,Fargues-sur-Ourbise,Fargues-sur-Ourbise +34,1983-11-24,COMA,47058,0,CAUBEYRES,Caubeyres,Caubeyres,COM,47093,0,FARGUES SUR OURBISE,Fargues-sur-Ourbise,Fargues-sur-Ourbise 21,1983-11-24,COM,47093,0,FARGUES SUR OURBISE,Fargues-sur-Ourbise,Fargues-sur-Ourbise,COM,47058,0,CAUBEYRES,Caubeyres,Caubeyres +21,1983-11-24,COM,47093,0,FARGUES SUR OURBISE,Fargues-sur-Ourbise,Fargues-sur-Ourbise,COM,47093,0,FARGUES SUR OURBISE,Fargues-sur-Ourbise,Fargues-sur-Ourbise 21,1983-11-24,COM,47209,0,PONT DU CASSE,Pont-du-Casse,Pont-du-Casse,COM,47019,0,BAJAMONT,Bajamont,Bajamont 21,1983-11-24,COM,47209,0,PONT DU CASSE,Pont-du-Casse,Pont-du-Casse,COM,47209,0,PONT DU CASSE,Pont-du-Casse,Pont-du-Casse -21,1983-11-15,COM,66037,0,CANET EN ROUSSILLON SAINT NAZAIRE,Canet-en-Roussillon-Saint-Nazaire,Canet-en-Roussillon-Saint-Nazaire,COM,66186,0,SAINT NAZAIRE,Saint-Nazaire,Saint-Nazaire 21,1983-11-15,COM,66037,0,CANET EN ROUSSILLON SAINT NAZAIRE,Canet-en-Roussillon-Saint-Nazaire,Canet-en-Roussillon-Saint-Nazaire,COM,66037,0,CANET EN ROUSSILLON,Canet-en-Roussillon,Canet-en-Roussillon +21,1983-11-15,COM,66037,0,CANET EN ROUSSILLON SAINT NAZAIRE,Canet-en-Roussillon-Saint-Nazaire,Canet-en-Roussillon-Saint-Nazaire,COM,66186,0,SAINT NAZAIRE,Saint-Nazaire,Saint-Nazaire +34,1983-11-15,COMA,66186,0,SAINT NAZAIRE,Saint-Nazaire,Saint-Nazaire,COM,66037,0,CANET EN ROUSSILLON,Canet-en-Roussillon,Canet-en-Roussillon 21,1983-11-15,COMA,66186,0,SAINT NAZAIRE,Saint-Nazaire,Saint-Nazaire,COM,66186,0,SAINT NAZAIRE,Saint-Nazaire,Saint-Nazaire -34,1983-11-10,COM,04075,1,ENTREPIERRES,Entrepierres,Entrepierres,COM,04075,1,ENTREPIERRES,Entrepierres,Entrepierres -34,1983-11-10,COMA,04238,0,VILHOSC,Vilhosc,Vilhosc,COM,04075,1,ENTREPIERRES,Entrepierres,Entrepierres -34,1983-06-01,COM,04043,0,VAL DE CHALVAGNE,Val-de-Chalvagne,Val-de-Chalvagne,COM,04043,0,VAL DE CHALVAGNE,Val-de-Chalvagne,Val-de-Chalvagne -34,1983-06-01,COMA,04125,0,MONTBLANC,Montblanc,Montblanc,COM,04043,0,VAL DE CHALVAGNE,Val-de-Chalvagne,Val-de-Chalvagne -34,1983-06-01,COMA,04243,0,VILLEVIEILLE,Villevieille,Villevieille,COM,04043,0,VAL DE CHALVAGNE,Val-de-Chalvagne,Val-de-Chalvagne -10,1983-04-17,COM,09235,0,PRAT ET BONREPAUX,Prat-et-Bonrepaux,Prat-et-Bonrepaux,COM,09235,0,PRAT BONREPAUX,Prat-Bonrepaux,Prat-Bonrepaux +34,1983-11-10,COM,4075,1,ENTREPIERRES,Entrepierres,Entrepierres,COM,4075,1,ENTREPIERRES,Entrepierres,Entrepierres +34,1983-11-10,COMA,4238,0,VILHOSC,Vilhosc,Vilhosc,COM,4075,1,ENTREPIERRES,Entrepierres,Entrepierres +34,1983-06-01,COM,4043,0,VAL DE CHALVAGNE,Val-de-Chalvagne,Val-de-Chalvagne,COM,4043,0,VAL DE CHALVAGNE,Val-de-Chalvagne,Val-de-Chalvagne +34,1983-06-01,COMA,4125,0,MONTBLANC,Montblanc,Montblanc,COM,4043,0,VAL DE CHALVAGNE,Val-de-Chalvagne,Val-de-Chalvagne +34,1983-06-01,COMA,4243,0,VILLEVIEILLE,Villevieille,Villevieille,COM,4043,0,VAL DE CHALVAGNE,Val-de-Chalvagne,Val-de-Chalvagne +10,1983-04-17,COM,9235,0,PRAT ET BONREPAUX,Prat-et-Bonrepaux,Prat-et-Bonrepaux,COM,9235,0,PRAT BONREPAUX,Prat-Bonrepaux,Prat-Bonrepaux 10,1983-04-17,COM,16075,0,CHAMPAGNE DE BLANZAC,Champagne-de-Blanzac,Champagne-de-Blanzac,COM,16075,0,CHAMPAGNE VIGNY,Champagne-Vigny,Champagne-Vigny 10,1983-04-17,COM,17260,0,NEUVICQ MONTGUYON,Neuvicq-Montguyon,Neuvicq-Montguyon,COM,17260,0,NEUVICQ,Neuvicq,Neuvicq 10,1983-04-17,COM,23248,0,SAINT VICTOR,Saint-Victor,Saint-Victor,COM,23248,0,SAINT VICTOR EN MARCHE,Saint-Victor-en-Marche,Saint-Victor-en-Marche 10,1983-04-17,COM,30216,0,ROBIAC,Robiac,Robiac,COM,30216,0,ROBIAC ROCHESSADOULE,Robiac-Rochessadoule,Robiac-Rochessadoule 10,1983-04-17,COM,40039,0,BETBEZER,Betbezer,Betbezer,COM,40039,0,BETBEZER D ARMAGNAC,Betbezer-d'Armagnac,Betbezer-d'Armagnac -10,1983-04-17,COM,52292,0,VALLINOT,Vallinot,Vallinot,COMA,52381,0,PERCEY LE PAUTEL,Percey-le-Pautel,Percey-le-Pautel 10,1983-04-17,COM,52292,0,VALLINOT,Vallinot,Vallinot,COM,52292,0,LONGEAU PERCEY,Longeau-Percey,Longeau-Percey -10,1983-04-17,COMA,52381,0,PERCEY LE PAUTEL,Percey-le-Pautel,Percey-le-Pautel,COM,52292,0,LONGEAU PERCEY,Longeau-Percey,Longeau-Percey 10,1983-04-17,COM,67347,0,MODERN,Modern,Modern,COM,67347,1,OBERMODERN ZUTZENDORF,Obermodern-Zutzendorf,Obermodern-Zutzendorf -10,1983-04-17,COM,67347,0,MODERN,Modern,Modern,COMA,67562,0,ZUTZENDORF,Zutzendorf,Zutzendorf -10,1983-04-17,COMA,67562,0,ZUTZENDORF,Zutzendorf,Zutzendorf,COM,67347,1,OBERMODERN ZUTZENDORF,Obermodern-Zutzendorf,Obermodern-Zutzendorf 10,1983-04-17,COM,70140,0,CHATENAY,Châtenay,Châtenay,COM,70140,0,CHATENEY,Châteney,Châteney 10,1983-04-17,COM,70309,0,LOULANS LES FORGES,Loulans-les-Forges,Loulans-les-Forges,COM,70309,0,LOULANS VERCHAMP,Loulans-Verchamp,Loulans-Verchamp 10,1983-04-17,COM,85127,0,LONGEVILLE,Longeville,Longeville,COM,85127,0,LONGEVILLE SUR MER,Longeville-sur-Mer,Longeville-sur-Mer -21,1983-03-01,COM,57011,1,ALBESTROFF,Albestroff,Albestroff,COMA,57675,0,TORCHEVILLE,Torcheville,Torcheville -21,1983-03-01,COM,57011,1,ALBESTROFF,Albestroff,Albestroff,COMA,57248,0,GIVRYCOURT,Givrycourt,Givrycourt -21,1983-03-01,COM,57011,1,ALBESTROFF,Albestroff,Albestroff,COMA,57573,0,RENING,Réning,Réning 21,1983-03-01,COM,57011,1,ALBESTROFF,Albestroff,Albestroff,COM,57011,1,ALBESTROFF,Albestroff,Albestroff 21,1983-03-01,COM,57011,1,ALBESTROFF,Albestroff,Albestroff,COM,57494,0,MUNSTER,Munster,Munster -21,1983-03-01,COM,57011,1,ALBESTROFF,Albestroff,Albestroff,COMA,57346,1,INSMING,Insming,Insming -21,1983-03-01,COMA,57248,0,GIVRYCOURT,Givrycourt,Givrycourt,COMA,57248,0,GIVRYCOURT,Givrycourt,Givrycourt -21,1983-03-01,COMA,57346,1,INSMING,Insming,Insming,COMA,57346,1,INSMING,Insming,Insming +34,1983-03-01,COMA,57494,0,MUNSTER,Munster,Munster,COM,57011,1,ALBESTROFF,Albestroff,Albestroff 21,1983-03-01,COMA,57494,0,MUNSTER,Munster,Munster,COM,57494,0,MUNSTER,Munster,Munster -21,1983-03-01,COMA,57573,0,RENING,Réning,Réning,COMA,57573,0,RENING,Réning,Réning -21,1983-03-01,COMA,57675,0,TORCHEVILLE,Torcheville,Torcheville,COMA,57675,0,TORCHEVILLE,Torcheville,Torcheville 34,1983-03-01,COM,66005,1,ANGOUSTRINE VILLENEUVE DES ESCALDES,Angoustrine-Villeneuve-des-Escaldes,Angoustrine-Villeneuve-des-Escaldes,COM,66005,1,ANGOUSTRINE VILLENEUVE DES ESCALDES,Angoustrine-Villeneuve-des-Escaldes,Angoustrine-Villeneuve-des-Escaldes 34,1983-03-01,COMA,66229,0,VILLENEUVE DES ESCALDES,Villeneuve-des-Escaldes,Villeneuve-des-Escaldes,COM,66005,1,ANGOUSTRINE VILLENEUVE DES ESCALDES,Angoustrine-Villeneuve-des-Escaldes,Angoustrine-Villeneuve-des-Escaldes 21,1983-02-21,COM,66161,0,RIA SIRACH URBANYA,Ria-Sirach-Urbanya,Ria-Sirach-Urbanya,COM,66161,0,RIA SIRACH,Ria-Sirach,Ria-Sirach 21,1983-02-21,COM,66161,0,RIA SIRACH URBANYA,Ria-Sirach-Urbanya,Ria-Sirach-Urbanya,COM,66219,1,URBANYA,Urbanya,Urbanya -21,1983-02-15,COMA,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire,COMA,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire 21,1983-02-15,COMA,79038,0,BOISME,Boismé,Boismé,COM,79038,0,BOISME,Boismé,Boismé -21,1983-02-15,COM,79049,0,BRESSUIRE,Bressuire,Bressuire,COMA,79093,0,CLAZAY,Clazay,Clazay -21,1983-02-15,COM,79049,0,BRESSUIRE,Bressuire,Bressuire,COMA,79193,0,NOIRTERRE,Noirterre,Noirterre -21,1983-02-15,COM,79049,0,BRESSUIRE,Bressuire,Bressuire,COMA,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur -21,1983-02-15,COM,79049,0,BRESSUIRE,Bressuire,Bressuire,COMA,79324,0,TERVES,Terves,Terves -21,1983-02-15,COM,79049,0,BRESSUIRE,Bressuire,Bressuire,COMA,79065,0,CHAMBROUTET,Chambroutet,Chambroutet -21,1983-02-15,COM,79049,0,BRESSUIRE,Bressuire,Bressuire,COMA,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée -21,1983-02-15,COM,79049,0,BRESSUIRE,Bressuire,Bressuire,COMA,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire -21,1983-02-15,COM,79049,0,BRESSUIRE,Bressuire,Bressuire,COM,79049,0,BRESSUIRE,Bressuire,Bressuire +34,1983-02-15,COMA,79038,0,BOISME,Boismé,Boismé,COM,79049,0,BRESSUIRE,Bressuire,Bressuire 21,1983-02-15,COM,79049,0,BRESSUIRE,Bressuire,Bressuire,COM,79038,0,BOISME,Boismé,Boismé -21,1983-02-15,COM,79049,0,BRESSUIRE,Bressuire,Bressuire,COMA,79192,0,NOIRLIEU,Noirlieu,Noirlieu -21,1983-02-15,COMA,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée,COMA,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée +21,1983-02-15,COM,79049,0,BRESSUIRE,Bressuire,Bressuire,COM,79049,0,BRESSUIRE,Bressuire,Bressuire 21,1983-02-15,COMA,79056,0,BRION PRES THOUET,Brion-près-Thouet,Brion-près-Thouet,COM,79056,0,BRION PRES THOUET,Brion-près-Thouet,Brion-près-Thouet -21,1983-02-15,COMA,79065,0,CHAMBROUTET,Chambroutet,Chambroutet,COMA,79065,0,CHAMBROUTET,Chambroutet,Chambroutet -21,1983-02-15,COMA,79093,0,CLAZAY,Clazay,Clazay,COMA,79093,0,CLAZAY,Clazay,Clazay -21,1983-02-15,COMA,79192,0,NOIRLIEU,Noirlieu,Noirlieu,COMA,79192,0,NOIRLIEU,Noirlieu,Noirlieu -21,1983-02-15,COMA,79193,0,NOIRTERRE,Noirterre,Noirterre,COMA,79193,0,NOIRTERRE,Noirterre,Noirterre -21,1983-02-15,COM,79277,0,SAINT MARTIN DE SANZAY,Saint-Martin-de-Sanzay,Saint-Martin-de-Sanzay,COM,79277,0,SAINT MARTIN DE SANZAY,Saint-Martin-de-Sanzay,Saint-Martin-de-Sanzay +34,1983-02-15,COMA,79056,0,BRION PRES THOUET,Brion-près-Thouet,Brion-près-Thouet,COM,79277,0,SAINT MARTIN DE SANZAY,Saint-Martin-de-Sanzay,Saint-Martin-de-Sanzay 21,1983-02-15,COM,79277,0,SAINT MARTIN DE SANZAY,Saint-Martin-de-Sanzay,Saint-Martin-de-Sanzay,COM,79056,0,BRION PRES THOUET,Brion-près-Thouet,Brion-près-Thouet -21,1983-02-15,COMA,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,COMA,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur -21,1983-02-15,COMA,79324,0,TERVES,Terves,Terves,COMA,79324,0,TERVES,Terves,Terves -21,1983-02-14,COMA,05112,0,RABOU,Rabou,Rabou,COM,05112,0,RABOU,Rabou,Rabou -21,1983-02-14,COM,05123,3,ROCHE DES ARNAUDS,Roche-des-Arnauds,La Roche-des-Arnauds,COM,05112,0,RABOU,Rabou,Rabou -21,1983-02-14,COM,05123,3,ROCHE DES ARNAUDS,Roche-des-Arnauds,La Roche-des-Arnauds,COM,05123,3,ROCHE DES ARNAUDS,Roche-des-Arnauds,La Roche-des-Arnauds -21,1983-02-14,COMA,79036,0,BILAZAIS,Bilazais,Bilazais,COMA,79036,0,BILAZAIS,Bilazais,Bilazais +21,1983-02-15,COM,79277,0,SAINT MARTIN DE SANZAY,Saint-Martin-de-Sanzay,Saint-Martin-de-Sanzay,COM,79277,0,SAINT MARTIN DE SANZAY,Saint-Martin-de-Sanzay,Saint-Martin-de-Sanzay +21,1983-02-14,COMA,5112,0,RABOU,Rabou,Rabou,COM,5112,0,RABOU,Rabou,Rabou +34,1983-02-14,COMA,5112,0,RABOU,Rabou,Rabou,COM,5123,3,ROCHE DES ARNAUDS,Roche-des-Arnauds,La Roche-des-Arnauds +21,1983-02-14,COM,5123,3,ROCHE DES ARNAUDS,Roche-des-Arnauds,La Roche-des-Arnauds,COM,5112,0,RABOU,Rabou,Rabou +21,1983-02-14,COM,5123,3,ROCHE DES ARNAUDS,Roche-des-Arnauds,La Roche-des-Arnauds,COM,5123,3,ROCHE DES ARNAUDS,Roche-des-Arnauds,La Roche-des-Arnauds 21,1983-02-14,COMA,79054,0,BRIE,Brie,Brie,COM,79054,0,BRIE,Brie,Brie -21,1983-02-14,COMA,79194,0,NOIZE,Noizé,Noizé,COMA,79194,0,NOIZE,Noizé,Noizé +34,1983-02-14,COMA,79054,0,BRIE,Brie,Brie,COM,79196,1,OIRON,Oiron,Oiron 21,1983-02-14,COM,79196,1,OIRON,Oiron,Oiron,COM,79054,0,BRIE,Brie,Brie 21,1983-02-14,COM,79196,1,OIRON,Oiron,Oiron,COM,79196,1,OIRON,Oiron,Oiron -21,1983-02-14,COM,79196,1,OIRON,Oiron,Oiron,COMA,79036,0,BILAZAIS,Bilazais,Bilazais -21,1983-02-14,COM,79196,1,OIRON,Oiron,Oiron,COMA,79194,0,NOIZE,Noizé,Noizé 21,1983-02-01,COM,31144,0,CIERP GAUD SIGNAC,Cierp-Gaud-Signac,Cierp-Gaud-Signac,COM,31144,0,CIERP GAUD,Cierp-Gaud,Cierp-Gaud 21,1983-02-01,COM,31144,0,CIERP GAUD SIGNAC,Cierp-Gaud-Signac,Cierp-Gaud-Signac,COM,31548,0,SIGNAC,Signac,Signac +34,1983-02-01,COMA,31548,0,SIGNAC,Signac,Signac,COM,31144,0,CIERP GAUD,Cierp-Gaud,Cierp-Gaud 21,1983-02-01,COMA,31548,0,SIGNAC,Signac,Signac,COM,31548,0,SIGNAC,Signac,Signac 34,1983-02-01,COMA,55135,0,CREPION,Crépion,Crépion,COM,55341,0,MOIREY FLABAS CREPION,Moirey-Flabas-Crépion,Moirey-Flabas-Crépion 34,1983-02-01,COMA,55187,0,FLABAS,Flabas,Flabas,COM,55341,0,MOIREY FLABAS CREPION,Moirey-Flabas-Crépion,Moirey-Flabas-Crépion 34,1983-02-01,COM,55341,0,MOIREY FLABAS CREPION,Moirey-Flabas-Crépion,Moirey-Flabas-Crépion,COM,55341,0,MOIREY FLABAS CREPION,Moirey-Flabas-Crépion,Moirey-Flabas-Crépion -10,1983-01-14,COM,01243,0,MESSIMY,Messimy,Messimy,COM,01243,0,MESSIMY SUR SAONE,Messimy-sur-Saône,Messimy-sur-Saône +10,1983-01-14,COM,1243,0,MESSIMY,Messimy,Messimy,COM,1243,0,MESSIMY SUR SAONE,Messimy-sur-Saône,Messimy-sur-Saône 10,1983-01-14,COM,28330,0,SAINT CLOUD,Saint-Cloud,Saint-Cloud,COM,28330,0,SAINT CLOUD EN DUNOIS,Saint-Cloud-en-Dunois,Saint-Cloud-en-Dunois 10,1983-01-14,COM,41185,0,PRUNIERS,Pruniers,Pruniers,COM,41185,0,PRUNIERS EN SOLOGNE,Pruniers-en-Sologne,Pruniers-en-Sologne 10,1983-01-14,COM,62014,1,AIRE,Aire,Aire,COM,62014,1,AIRE SUR LA LYS,Aire-sur-la-Lys,Aire-sur-la-Lys 10,1983-01-14,COM,66047,0,CAUDIES,Caudiès,Caudiès,COM,66047,0,CAUDIES DE CONFLENT,Caudiès-de-Conflent,Caudiès-de-Conflent 10,1983-01-14,COM,76727,0,VATTEVILLE,Vatteville,Vatteville,COM,76727,0,VATTEVILLE LA RUE,Vatteville-la-Rue,Vatteville-la-Rue -34,1983-01-01,COMA,01003,1,AMAREINS,Amareins,Amareins,COM,01165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins -34,1983-01-01,COMA,01070,0,CESSEINS,Cesseins,Cesseins,COMA,01070,0,CESSEINS,Cesseins,Cesseins -34,1983-01-01,COMA,01070,0,CESSEINS,Cesseins,Cesseins,COM,01165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins -34,1983-01-01,COM,01165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins,COM,01165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins -34,1983-01-01,COM,01165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins,COMA,01070,0,CESSEINS,Cesseins,Cesseins -21,1983-01-01,COM,14336,0,HOTTOT LONGRAYE,Hottot-Longraye,Hottot-Longraye,COM,14376,0,LONGRAYE,Longraye,Longraye +34,1983-01-01,COMA,1003,1,AMAREINS,Amareins,Amareins,COM,1165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins +34,1983-01-01,COM,1165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins,COM,1165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins 21,1983-01-01,COM,14336,0,HOTTOT LONGRAYE,Hottot-Longraye,Hottot-Longraye,COM,14336,0,HOTTOT LES BAGUES,Hottot-les-Bagues,Hottot-les-Bagues +21,1983-01-01,COM,14336,0,HOTTOT LONGRAYE,Hottot-Longraye,Hottot-Longraye,COM,14376,0,LONGRAYE,Longraye,Longraye +34,1983-01-01,COMA,14376,0,LONGRAYE,Longraye,Longraye,COM,14336,0,HOTTOT LES BAGUES,Hottot-les-Bagues,Hottot-les-Bagues 21,1983-01-01,COMA,14376,0,LONGRAYE,Longraye,Longraye,COM,14376,0,LONGRAYE,Longraye,Longraye -21,1983-01-01,COM,15140,0,NAUCELLES REILHAC,Naucelles-Reilhac,Naucelles-Reilhac,COM,15160,0,REILHAC,Reilhac,Reilhac 21,1983-01-01,COM,15140,0,NAUCELLES REILHAC,Naucelles-Reilhac,Naucelles-Reilhac,COM,15140,0,NAUCELLES,Naucelles,Naucelles +21,1983-01-01,COM,15140,0,NAUCELLES REILHAC,Naucelles-Reilhac,Naucelles-Reilhac,COM,15160,0,REILHAC,Reilhac,Reilhac +34,1983-01-01,COMA,15160,0,REILHAC,Reilhac,Reilhac,COM,15140,0,NAUCELLES,Naucelles,Naucelles 21,1983-01-01,COMA,15160,0,REILHAC,Reilhac,Reilhac,COM,15160,0,REILHAC,Reilhac,Reilhac 21,1983-01-01,COMA,21074,0,BILLEY,Billey,Billey,COM,21074,0,BILLEY,Billey,Billey +34,1983-01-01,COMA,21074,0,BILLEY,Billey,Billey,COM,21268,0,FLAGEY LES AUXONNE,Flagey-lès-Auxonne,Flagey-lès-Auxonne +34,1983-01-01,COMA,21074,0,BILLEY,Billey,Billey,COM,21331,0,LABERGEMENT LES AUXONNE,Labergement-lès-Auxonne,Labergement-lès-Auxonne +34,1983-01-01,COMA,21268,0,FLAGEY LES AUXONNE,Flagey-lès-Auxonne,Flagey-lès-Auxonne,COM,21074,0,BILLEY,Billey,Billey 21,1983-01-01,COMA,21268,0,FLAGEY LES AUXONNE,Flagey-lès-Auxonne,Flagey-lès-Auxonne,COM,21268,0,FLAGEY LES AUXONNE,Flagey-lès-Auxonne,Flagey-lès-Auxonne +34,1983-01-01,COMA,21268,0,FLAGEY LES AUXONNE,Flagey-lès-Auxonne,Flagey-lès-Auxonne,COM,21331,0,LABERGEMENT LES AUXONNE,Labergement-lès-Auxonne,Labergement-lès-Auxonne +21,1983-01-01,COM,21331,0,LABERGEMENT LES AUXONNE BILLEY FLAGEY,Labergement-lès-Auxonne-Billey-Flagey,Labergement-lès-Auxonne-Billey-Flagey,COM,21074,0,BILLEY,Billey,Billey 21,1983-01-01,COM,21331,0,LABERGEMENT LES AUXONNE BILLEY FLAGEY,Labergement-lès-Auxonne-Billey-Flagey,Labergement-lès-Auxonne-Billey-Flagey,COM,21268,0,FLAGEY LES AUXONNE,Flagey-lès-Auxonne,Flagey-lès-Auxonne 21,1983-01-01,COM,21331,0,LABERGEMENT LES AUXONNE BILLEY FLAGEY,Labergement-lès-Auxonne-Billey-Flagey,Labergement-lès-Auxonne-Billey-Flagey,COM,21331,0,LABERGEMENT LES AUXONNE,Labergement-lès-Auxonne,Labergement-lès-Auxonne -21,1983-01-01,COM,21331,0,LABERGEMENT LES AUXONNE BILLEY FLAGEY,Labergement-lès-Auxonne-Billey-Flagey,Labergement-lès-Auxonne-Billey-Flagey,COM,21074,0,BILLEY,Billey,Billey 34,1983-01-01,COM,43013,0,VISSAC AUTEYRAC,Vissac-Auteyrac,Vissac-Auteyrac,COM,43013,0,VISSAC AUTEYRAC,Vissac-Auteyrac,Vissac-Auteyrac 34,1983-01-01,COMA,43266,0,VISSAC,Vissac,Vissac,COM,43013,0,VISSAC AUTEYRAC,Vissac-Auteyrac,Vissac-Auteyrac 21,1983-01-01,COMA,47223,0,RIVES,Rives,Rives,COM,47223,0,RIVES,Rives,Rives +34,1983-01-01,COMA,47223,0,RIVES,Rives,Rives,COM,47324,0,VILLEREAL,Villeréal,Villeréal 21,1983-01-01,COM,47324,0,VILLEREAL,Villeréal,Villeréal,COM,47223,0,RIVES,Rives,Rives 21,1983-01-01,COM,47324,0,VILLEREAL,Villeréal,Villeréal,COM,47324,0,VILLEREAL,Villeréal,Villeréal 21,1983-01-01,COMA,50063,0,BOLLEVILLE,Bolleville,Bolleville,COM,50063,0,BOLLEVILLE,Bolleville,Bolleville -21,1983-01-01,COM,50528,0,PIERREPONT EN COTENTIN,Pierrepont-en-Cotentin,Pierrepont-en-Cotentin,COM,50548,0,SAINT SAUVEUR DE PIERREPONT,Saint-Sauveur-de-Pierrepont,Saint-Sauveur-de-Pierrepont -21,1983-01-01,COM,50528,0,PIERREPONT EN COTENTIN,Pierrepont-en-Cotentin,Pierrepont-en-Cotentin,COM,50528,0,SAINT NICOLAS DE PIERREPONT,Saint-Nicolas-de-Pierrepont,Saint-Nicolas-de-Pierrepont +34,1983-01-01,COMA,50063,0,BOLLEVILLE,Bolleville,Bolleville,COM,50528,0,SAINT NICOLAS DE PIERREPONT,Saint-Nicolas-de-Pierrepont,Saint-Nicolas-de-Pierrepont +34,1983-01-01,COMA,50063,0,BOLLEVILLE,Bolleville,Bolleville,COM,50548,0,SAINT SAUVEUR DE PIERREPONT,Saint-Sauveur-de-Pierrepont,Saint-Sauveur-de-Pierrepont 21,1983-01-01,COM,50528,0,PIERREPONT EN COTENTIN,Pierrepont-en-Cotentin,Pierrepont-en-Cotentin,COM,50063,0,BOLLEVILLE,Bolleville,Bolleville +21,1983-01-01,COM,50528,0,PIERREPONT EN COTENTIN,Pierrepont-en-Cotentin,Pierrepont-en-Cotentin,COM,50528,0,SAINT NICOLAS DE PIERREPONT,Saint-Nicolas-de-Pierrepont,Saint-Nicolas-de-Pierrepont +21,1983-01-01,COM,50528,0,PIERREPONT EN COTENTIN,Pierrepont-en-Cotentin,Pierrepont-en-Cotentin,COM,50548,0,SAINT SAUVEUR DE PIERREPONT,Saint-Sauveur-de-Pierrepont,Saint-Sauveur-de-Pierrepont +34,1983-01-01,COMA,50548,0,SAINT SAUVEUR DE PIERREPONT,Saint-Sauveur-de-Pierrepont,Saint-Sauveur-de-Pierrepont,COM,50063,0,BOLLEVILLE,Bolleville,Bolleville +34,1983-01-01,COMA,50548,0,SAINT SAUVEUR DE PIERREPONT,Saint-Sauveur-de-Pierrepont,Saint-Sauveur-de-Pierrepont,COM,50528,0,SAINT NICOLAS DE PIERREPONT,Saint-Nicolas-de-Pierrepont,Saint-Nicolas-de-Pierrepont 21,1983-01-01,COMA,50548,0,SAINT SAUVEUR DE PIERREPONT,Saint-Sauveur-de-Pierrepont,Saint-Sauveur-de-Pierrepont,COM,50548,0,SAINT SAUVEUR DE PIERREPONT,Saint-Sauveur-de-Pierrepont,Saint-Sauveur-de-Pierrepont 21,1983-01-01,COMA,51300,1,ISLE SUR MARNE,Isle-sur-Marne,Isle-sur-Marne,COM,51300,1,ISLE SUR MARNE,Isle-sur-Marne,Isle-sur-Marne +34,1983-01-01,COMA,51300,1,ISLE SUR MARNE,Isle-sur-Marne,Isle-sur-Marne,COM,51316,0,LARZICOURT,Larzicourt,Larzicourt 21,1983-01-01,COM,51316,0,LARZICOURT ISLE SUR MARNE,Larzicourt-Isle-sur-Marne,Larzicourt-Isle-sur-Marne,COM,51300,1,ISLE SUR MARNE,Isle-sur-Marne,Isle-sur-Marne 21,1983-01-01,COM,51316,0,LARZICOURT ISLE SUR MARNE,Larzicourt-Isle-sur-Marne,Larzicourt-Isle-sur-Marne,COM,51316,0,LARZICOURT,Larzicourt,Larzicourt -21,1983-01-01,COM,52017,1,ARC EN BARROIS,Arc-en-Barrois,Arc-en-Barrois,COM,52022,1,AUBEPIERRE SUR AUBE,Aubepierre-sur-Aube,Aubepierre-sur-Aube 21,1983-01-01,COM,52017,1,ARC EN BARROIS,Arc-en-Barrois,Arc-en-Barrois,COM,52017,1,ARC EN BARROIS,Arc-en-Barrois,Arc-en-Barrois +21,1983-01-01,COM,52017,1,ARC EN BARROIS,Arc-en-Barrois,Arc-en-Barrois,COM,52022,1,AUBEPIERRE SUR AUBE,Aubepierre-sur-Aube,Aubepierre-sur-Aube +34,1983-01-01,COMA,52022,1,AUBEPIERRE SUR AUBE,Aubepierre-sur-Aube,Aubepierre-sur-Aube,COM,52017,1,ARC EN BARROIS,Arc-en-Barrois,Arc-en-Barrois 21,1983-01-01,COMA,52022,1,AUBEPIERRE SUR AUBE,Aubepierre-sur-Aube,Aubepierre-sur-Aube,COM,52022,1,AUBEPIERRE SUR AUBE,Aubepierre-sur-Aube,Aubepierre-sur-Aube 21,1983-01-01,COMA,52335,0,MONTOT SUR ROGNON,Montot-sur-Rognon,Montot-sur-Rognon,COM,52335,0,MONTOT SUR ROGNON,Montot-sur-Rognon,Montot-sur-Rognon -21,1983-01-01,COM,52420,0,REYNEL,Reynel,Reynel,COM,52420,0,REYNEL,Reynel,Reynel -21,1983-01-01,COM,52420,0,REYNEL,Reynel,Reynel,COM,52523,0,VIGNES LA COTE,Vignes-la-Côte,Vignes-la-Côte +34,1983-01-01,COMA,52335,0,MONTOT SUR ROGNON,Montot-sur-Rognon,Montot-sur-Rognon,COM,52420,0,REYNEL,Reynel,Reynel +34,1983-01-01,COMA,52335,0,MONTOT SUR ROGNON,Montot-sur-Rognon,Montot-sur-Rognon,COM,52473,0,SIGNEVILLE,Signéville,Signéville +34,1983-01-01,COMA,52335,0,MONTOT SUR ROGNON,Montot-sur-Rognon,Montot-sur-Rognon,COM,52523,0,VIGNES LA COTE,Vignes-la-Côte,Vignes-la-Côte 21,1983-01-01,COM,52420,0,REYNEL,Reynel,Reynel,COM,52335,0,MONTOT SUR ROGNON,Montot-sur-Rognon,Montot-sur-Rognon +21,1983-01-01,COM,52420,0,REYNEL,Reynel,Reynel,COM,52420,0,REYNEL,Reynel,Reynel 21,1983-01-01,COM,52420,0,REYNEL,Reynel,Reynel,COM,52473,0,SIGNEVILLE,Signéville,Signéville +21,1983-01-01,COM,52420,0,REYNEL,Reynel,Reynel,COM,52523,0,VIGNES LA COTE,Vignes-la-Côte,Vignes-la-Côte +34,1983-01-01,COMA,52473,0,SIGNEVILLE,Signéville,Signéville,COM,52335,0,MONTOT SUR ROGNON,Montot-sur-Rognon,Montot-sur-Rognon +34,1983-01-01,COMA,52473,0,SIGNEVILLE,Signéville,Signéville,COM,52420,0,REYNEL,Reynel,Reynel 21,1983-01-01,COMA,52473,0,SIGNEVILLE,Signéville,Signéville,COM,52473,0,SIGNEVILLE,Signéville,Signéville +34,1983-01-01,COMA,52473,0,SIGNEVILLE,Signéville,Signéville,COM,52523,0,VIGNES LA COTE,Vignes-la-Côte,Vignes-la-Côte +34,1983-01-01,COMA,52523,0,VIGNES LA COTE,Vignes-la-Côte,Vignes-la-Côte,COM,52335,0,MONTOT SUR ROGNON,Montot-sur-Rognon,Montot-sur-Rognon +34,1983-01-01,COMA,52523,0,VIGNES LA COTE,Vignes-la-Côte,Vignes-la-Côte,COM,52420,0,REYNEL,Reynel,Reynel +34,1983-01-01,COMA,52523,0,VIGNES LA COTE,Vignes-la-Côte,Vignes-la-Côte,COM,52473,0,SIGNEVILLE,Signéville,Signéville 21,1983-01-01,COMA,52523,0,VIGNES LA COTE,Vignes-la-Côte,Vignes-la-Côte,COM,52523,0,VIGNES LA COTE,Vignes-la-Côte,Vignes-la-Côte 21,1983-01-01,COM,53181,0,PONTMAIN,Pontmain,Pontmain,COM,53181,0,PONTMAIN,Pontmain,Pontmain 21,1983-01-01,COM,53181,0,PONTMAIN,Pontmain,Pontmain,COM,53213,0,SAINT ELLIER DU MAINE,Saint-Ellier-du-Maine,Saint-Ellier-du-Maine 21,1983-01-01,COM,53181,0,PONTMAIN,Pontmain,Pontmain,COM,53238,0,SAINT MARS SUR LA FUTAIE,Saint-Mars-sur-la-Futaie,Saint-Mars-sur-la-Futaie +34,1983-01-01,COMA,53213,0,SAINT ELLIER DU MAINE,Saint-Ellier-du-Maine,Saint-Ellier-du-Maine,COM,53181,0,PONTMAIN,Pontmain,Pontmain 21,1983-01-01,COMA,53213,0,SAINT ELLIER DU MAINE,Saint-Ellier-du-Maine,Saint-Ellier-du-Maine,COM,53213,0,SAINT ELLIER DU MAINE,Saint-Ellier-du-Maine,Saint-Ellier-du-Maine +34,1983-01-01,COMA,53213,0,SAINT ELLIER DU MAINE,Saint-Ellier-du-Maine,Saint-Ellier-du-Maine,COM,53238,0,SAINT MARS SUR LA FUTAIE,Saint-Mars-sur-la-Futaie,Saint-Mars-sur-la-Futaie +34,1983-01-01,COMA,53238,0,SAINT MARS SUR LA FUTAIE,Saint-Mars-sur-la-Futaie,Saint-Mars-sur-la-Futaie,COM,53181,0,PONTMAIN,Pontmain,Pontmain +34,1983-01-01,COMA,53238,0,SAINT MARS SUR LA FUTAIE,Saint-Mars-sur-la-Futaie,Saint-Mars-sur-la-Futaie,COM,53213,0,SAINT ELLIER DU MAINE,Saint-Ellier-du-Maine,Saint-Ellier-du-Maine 21,1983-01-01,COMA,53238,0,SAINT MARS SUR LA FUTAIE,Saint-Mars-sur-la-Futaie,Saint-Mars-sur-la-Futaie,COM,53238,0,SAINT MARS SUR LA FUTAIE,Saint-Mars-sur-la-Futaie,Saint-Mars-sur-la-Futaie 21,1983-01-01,COMA,55118,0,CLERY GRAND,Cléry-Grand,Cléry-Grand,COM,55118,0,CLERY GRAND,Cléry-Grand,Cléry-Grand -21,1983-01-01,COM,55119,0,CLERY,Cléry,Cléry,COM,55119,0,CLERY PETIT,Cléry-Petit,Cléry-Petit +34,1983-01-01,COMA,55118,0,CLERY GRAND,Cléry-Grand,Cléry-Grand,COM,55119,0,CLERY PETIT,Cléry-Petit,Cléry-Petit 21,1983-01-01,COM,55119,0,CLERY,Cléry,Cléry,COM,55118,0,CLERY GRAND,Cléry-Grand,Cléry-Grand -21,1983-01-01,COM,55245,0,MADINE,Madine,Madine,COM,55273,0,LAMARCHE EN WOEVRE,Lamarche-en-Woëvre,Lamarche-en-Woëvre +21,1983-01-01,COM,55119,0,CLERY,Cléry,Cléry,COM,55119,0,CLERY PETIT,Cléry-Petit,Cléry-Petit 21,1983-01-01,COM,55245,0,MADINE,Madine,Madine,COM,55245,0,HEUDICOURT SOUS LES COTES,Heudicourt-sous-les-Côtes,Heudicourt-sous-les-Côtes +21,1983-01-01,COM,55245,0,MADINE,Madine,Madine,COM,55273,0,LAMARCHE EN WOEVRE,Lamarche-en-Woëvre,Lamarche-en-Woëvre 21,1983-01-01,COM,55245,0,MADINE,Madine,Madine,COM,55386,0,NONSARD,Nonsard,Nonsard +34,1983-01-01,COMA,55273,0,LAMARCHE EN WOEVRE,Lamarche-en-Woëvre,Lamarche-en-Woëvre,COM,55245,0,HEUDICOURT SOUS LES COTES,Heudicourt-sous-les-Côtes,Heudicourt-sous-les-Côtes 33,1983-01-01,COM,55273,0,LAMARCHE EN WOEVRE,Lamarche-en-Woëvre,Lamarche-en-Woëvre,COMA,55273,0,LAMARCHE EN WOEVRE,Lamarche-en-Woëvre,Lamarche-en-Woëvre -33,1983-01-01,COM,55273,0,LAMARCHE EN WOEVRE,Lamarche-en-Woëvre,Lamarche-en-Woëvre,COM,55386,0,NONSARD LAMARCHE,Nonsard-Lamarche,Nonsard-Lamarche 21,1983-01-01,COMA,55273,0,LAMARCHE EN WOEVRE,Lamarche-en-Woëvre,Lamarche-en-Woëvre,COM,55273,0,LAMARCHE EN WOEVRE,Lamarche-en-Woëvre,Lamarche-en-Woëvre +33,1983-01-01,COM,55273,0,LAMARCHE EN WOEVRE,Lamarche-en-Woëvre,Lamarche-en-Woëvre,COM,55386,0,NONSARD LAMARCHE,Nonsard-Lamarche,Nonsard-Lamarche +34,1983-01-01,COMA,55273,0,LAMARCHE EN WOEVRE,Lamarche-en-Woëvre,Lamarche-en-Woëvre,COM,55386,0,NONSARD,Nonsard,Nonsard +34,1983-01-01,COMA,55386,0,NONSARD,Nonsard,Nonsard,COM,55245,0,HEUDICOURT SOUS LES COTES,Heudicourt-sous-les-Côtes,Heudicourt-sous-les-Côtes +34,1983-01-01,COMA,55386,0,NONSARD,Nonsard,Nonsard,COM,55273,0,LAMARCHE EN WOEVRE,Lamarche-en-Woëvre,Lamarche-en-Woëvre 33,1983-01-01,COM,55386,0,NONSARD,Nonsard,Nonsard,COM,55386,0,NONSARD LAMARCHE,Nonsard-Lamarche,Nonsard-Lamarche 21,1983-01-01,COMA,55386,0,NONSARD,Nonsard,Nonsard,COM,55386,0,NONSARD,Nonsard,Nonsard 21,1983-01-01,COM,55487,0,SEUZEY VAUX,Seuzey-Vaux,Seuzey-Vaux,COM,55487,0,SEUZEY,Seuzey,Seuzey 21,1983-01-01,COM,55487,0,SEUZEY VAUX,Seuzey-Vaux,Seuzey-Vaux,COM,55540,0,VAUX LES PALAMEIX,Vaux-lès-Palameix,Vaux-lès-Palameix +34,1983-01-01,COMA,55540,0,VAUX LES PALAMEIX,Vaux-lès-Palameix,Vaux-lès-Palameix,COM,55487,0,SEUZEY,Seuzey,Seuzey 21,1983-01-01,COMA,55540,0,VAUX LES PALAMEIX,Vaux-lès-Palameix,Vaux-lès-Palameix,COM,55540,0,VAUX LES PALAMEIX,Vaux-lès-Palameix,Vaux-lès-Palameix 21,1983-01-01,COM,64252,0,VAL DU GAVE D ASPE,Val-du-Gave-d'Aspe,Val-du-Gave-d'Aspe,COM,64007,1,AGNOS,Agnos,Agnos 21,1983-01-01,COM,64252,0,VAL DU GAVE D ASPE,Val-du-Gave-d'Aspe,Val-du-Gave-d'Aspe,COM,64252,0,GURMENCON,Gurmençon,Gurmençon 31,1983-01-01,COM,66010,1,AYGUATEBIA,Ayguatébia,Ayguatébia,COM,66010,1,AYGUATEBIA TALAU,Ayguatébia-Talau,Ayguatébia-Talau 31,1983-01-01,COM,66200,0,TALAU,Talau,Talau,COM,66010,1,AYGUATEBIA TALAU,Ayguatébia-Talau,Ayguatébia-Talau -21,1983-01-01,COM,67108,0,DUPPIGHEIM,Duppigheim,Duppigheim,COM,67247,0,KOLBSHEIM,Kolbsheim,Kolbsheim 21,1983-01-01,COM,67108,0,DUPPIGHEIM,Duppigheim,Duppigheim,COM,67108,0,DUPPIGHEIM,Duppigheim,Duppigheim +21,1983-01-01,COM,67108,0,DUPPIGHEIM,Duppigheim,Duppigheim,COM,67247,0,KOLBSHEIM,Kolbsheim,Kolbsheim +34,1983-01-01,COMA,67247,0,KOLBSHEIM,Kolbsheim,Kolbsheim,COM,67108,0,DUPPIGHEIM,Duppigheim,Duppigheim 21,1983-01-01,COMA,67247,0,KOLBSHEIM,Kolbsheim,Kolbsheim,COM,67247,0,KOLBSHEIM,Kolbsheim,Kolbsheim 21,1983-01-01,COMA,74013,1,ANTHY SUR LEMAN,Anthy-sur-Léman,Anthy-sur-Léman,COM,74013,1,ANTHY SUR LEMAN,Anthy-sur-Léman,Anthy-sur-Léman -21,1983-01-01,COMA,74166,0,MARIN,Marin,Marin,COMA,74166,0,MARIN,Marin,Marin +34,1983-01-01,COMA,74013,1,ANTHY SUR LEMAN,Anthy-sur-Léman,Anthy-sur-Léman,COM,74281,0,THONON LES BAINS,Thonon-les-Bains,Thonon-les-Bains 21,1983-01-01,COMA,74203,0,NOVEL,Novel,Novel,COM,74203,0,NOVEL,Novel,Novel -21,1983-01-01,COM,74237,0,SAINT GINGOLPH,Saint-Gingolph,Saint-Gingolph,COM,74237,0,SAINT GINGOLPH,Saint-Gingolph,Saint-Gingolph +34,1983-01-01,COMA,74203,0,NOVEL,Novel,Novel,COM,74237,0,SAINT GINGOLPH,Saint-Gingolph,Saint-Gingolph 21,1983-01-01,COM,74237,0,SAINT GINGOLPH,Saint-Gingolph,Saint-Gingolph,COM,74203,0,NOVEL,Novel,Novel +21,1983-01-01,COM,74237,0,SAINT GINGOLPH,Saint-Gingolph,Saint-Gingolph,COM,74237,0,SAINT GINGOLPH,Saint-Gingolph,Saint-Gingolph 21,1983-01-01,COM,74281,0,THONON LES BAINS,Thonon-les-Bains,Thonon-les-Bains,COM,74013,1,ANTHY SUR LEMAN,Anthy-sur-Léman,Anthy-sur-Léman -21,1983-01-01,COM,74281,0,THONON LES BAINS,Thonon-les-Bains,Thonon-les-Bains,COMA,74166,0,MARIN,Marin,Marin 21,1983-01-01,COM,74281,0,THONON LES BAINS,Thonon-les-Bains,Thonon-les-Bains,COM,74281,0,THONON LES BAINS,Thonon-les-Bains,Thonon-les-Bains -21,1983-01-01,COM,90033,0,DELLE,Delle,Delle,COM,90056,0,JONCHEREY,Joncherey,Joncherey 21,1983-01-01,COM,90033,0,DELLE,Delle,Delle,COM,90033,0,DELLE,Delle,Delle +21,1983-01-01,COM,90033,0,DELLE,Delle,Delle,COM,90056,0,JONCHEREY,Joncherey,Joncherey +34,1983-01-01,COMA,90056,0,JONCHEREY,Joncherey,Joncherey,COM,90033,0,DELLE,Delle,Delle 21,1983-01-01,COMA,90056,0,JONCHEREY,Joncherey,Joncherey,COM,90056,0,JONCHEREY,Joncherey,Joncherey 34,1982-12-01,COM,49029,0,BLAISON GOHIER,Blaison-Gohier,Blaison-Gohier,COM,49029,0,BLAISON GOHIER,Blaison-Gohier,Blaison-Gohier 34,1982-12-01,COMA,49152,0,GOHIER,Gohier,Gohier,COM,49029,0,BLAISON GOHIER,Blaison-Gohier,Blaison-Gohier -34,1982-11-01,COMA,04119,0,MEOLANS,Méolans,Méolans,COM,04161,0,MEOLANS REVEL,Méolans-Revel,Méolans-Revel -34,1982-11-01,COM,04161,0,MEOLANS REVEL,Méolans-Revel,Méolans-Revel,COM,04161,0,MEOLANS REVEL,Méolans-Revel,Méolans-Revel +34,1982-11-01,COMA,4119,0,MEOLANS,Méolans,Méolans,COM,4161,0,MEOLANS REVEL,Méolans-Revel,Méolans-Revel +34,1982-11-01,COM,4161,0,MEOLANS REVEL,Méolans-Revel,Méolans-Revel,COM,4161,0,MEOLANS REVEL,Méolans-Revel,Méolans-Revel 34,1982-10-01,COM,14068,0,BIEVILLE BEUVILLE,Biéville-Beuville,Biéville-Beuville,COM,14068,0,BIEVILLE BEUVILLE,Biéville-Beuville,Biéville-Beuville 34,1982-10-01,COMA,14072,0,BIEVILLE SUR ORNE,Biéville-sur-Orne,Biéville-sur-Orne,COM,14068,0,BIEVILLE BEUVILLE,Biéville-Beuville,Biéville-Beuville 34,1982-10-01,COM,57133,0,CHATEAU VOUE,Château-Voué,Château-Voué,COM,57133,0,CHATEAU VOUE,Château-Voué,Château-Voué @@ -7575,25 +7367,22 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1982-07-01,COM,67474,0,SOULTZ SOUS FORETS,Soultz-sous-Forêts,Soultz-sous-Forêts,COM,67474,0,SOULTZ SOUS FORETS,Soultz-sous-Forêts,Soultz-sous-Forêts 34,1982-07-01,COM,87014,0,BESSINES SUR GARTEMPE,Bessines-sur-Gartempe,Bessines-sur-Gartempe,COM,87014,0,BESSINES SUR GARTEMPE,Bessines-sur-Gartempe,Bessines-sur-Gartempe 34,1982-07-01,COMA,87102,0,MORTEROLLES SUR SEMME,Morterolles-sur-Semme,Morterolles-sur-Semme,COM,87014,0,BESSINES SUR GARTEMPE,Bessines-sur-Gartempe,Bessines-sur-Gartempe -31,1982-03-03,COM,08169,0,FLAIGNES LES OLIVIERS,Flaignes-les-Oliviers,Flaignes-les-Oliviers,COM,08169,0,FLAIGNES HAVYS,Flaignes-Havys,Flaignes-Havys -31,1982-03-03,COM,08221,0,HAVYS,Havys,Havys,COM,08169,0,FLAIGNES HAVYS,Flaignes-Havys,Flaignes-Havys +31,1982-03-03,COM,8169,0,FLAIGNES LES OLIVIERS,Flaignes-les-Oliviers,Flaignes-les-Oliviers,COM,8169,0,FLAIGNES HAVYS,Flaignes-Havys,Flaignes-Havys +31,1982-03-03,COM,8221,0,HAVYS,Havys,Havys,COM,8169,0,FLAIGNES HAVYS,Flaignes-Havys,Flaignes-Havys 34,1982-03-01,COM,90042,1,EVETTE SALBERT,Évette-Salbert,Évette-Salbert,COM,90042,1,EVETTE SALBERT,Évette-Salbert,Évette-Salbert 34,1982-03-01,COMA,90092,0,SALBERT,Salbert,Salbert,COM,90042,1,EVETTE SALBERT,Évette-Salbert,Évette-Salbert 21,1982-01-01,COMA,19206,0,SAINT GERMAIN LAVOLPS,Saint-Germain-Lavolps,Saint-Germain-Lavolps,COM,19206,0,SAINT GERMAIN LAVOLPS,Saint-Germain-Lavolps,Saint-Germain-Lavolps +34,1982-01-01,COMA,19206,0,SAINT GERMAIN LAVOLPS,Saint-Germain-Lavolps,Saint-Germain-Lavolps,COM,19261,0,SORNAC,Sornac,Sornac 21,1982-01-01,COM,19261,0,SORNAC SAINT GERMAIN LAVOLPS,Sornac-Saint-Germain-Lavolps,Sornac-Saint-Germain-Lavolps,COM,19206,0,SAINT GERMAIN LAVOLPS,Saint-Germain-Lavolps,Saint-Germain-Lavolps 21,1982-01-01,COM,19261,0,SORNAC SAINT GERMAIN LAVOLPS,Sornac-Saint-Germain-Lavolps,Sornac-Saint-Germain-Lavolps,COM,19261,0,SORNAC,Sornac,Sornac 10,1982-01-01,COM,21400,0,LEMEIX,Lemeix,Lemeix,COM,21400,2,MEIX,Meix,Le Meix 21,1982-01-01,COMA,25172,0,COURCHAPON,Courchapon,Courchapon,COM,25172,0,COURCHAPON,Courchapon,Courchapon -21,1982-01-01,COM,25317,0,JALLERANGE,Jallerange,Jallerange,COM,25317,0,JALLERANGE,Jallerange,Jallerange +34,1982-01-01,COMA,25172,0,COURCHAPON,Courchapon,Courchapon,COM,25317,0,JALLERANGE,Jallerange,Jallerange 21,1982-01-01,COM,25317,0,JALLERANGE,Jallerange,Jallerange,COM,25172,0,COURCHAPON,Courchapon,Courchapon -21,1982-01-01,COM,25317,0,JALLERANGE,Jallerange,Jallerange,COMA,25414,2,MOUTHEROT,Moutherot,Le Moutherot -21,1982-01-01,COMA,25414,2,MOUTHEROT,Moutherot,Le Moutherot,COMA,25414,2,MOUTHEROT,Moutherot,Le Moutherot -21,1982-01-01,COMA,28043,0,BLEVY,Blévy,Blévy,COMA,28043,0,BLEVY,Blévy,Blévy -21,1982-01-01,COMA,28125,0,DAMPIERRE SUR BLEVY,Dampierre-sur-Blévy,Dampierre-sur-Blévy,COMA,28125,0,DAMPIERRE SUR BLEVY,Dampierre-sur-Blévy,Dampierre-sur-Blévy -21,1982-01-01,COM,28226,0,MAILLEBOIS,Maillebois,Maillebois,COMA,28125,0,DAMPIERRE SUR BLEVY,Dampierre-sur-Blévy,Dampierre-sur-Blévy -21,1982-01-01,COM,28226,0,MAILLEBOIS,Maillebois,Maillebois,COM,28351,0,SAINT MAIXME HAUTERIVE,Saint-Maixme-Hauterive,Saint-Maixme-Hauterive +21,1982-01-01,COM,25317,0,JALLERANGE,Jallerange,Jallerange,COM,25317,0,JALLERANGE,Jallerange,Jallerange 21,1982-01-01,COM,28226,0,MAILLEBOIS,Maillebois,Maillebois,COM,28226,0,MAILLEBOIS,Maillebois,Maillebois -21,1982-01-01,COM,28226,0,MAILLEBOIS,Maillebois,Maillebois,COMA,28043,0,BLEVY,Blévy,Blévy +21,1982-01-01,COM,28226,0,MAILLEBOIS,Maillebois,Maillebois,COM,28351,0,SAINT MAIXME HAUTERIVE,Saint-Maixme-Hauterive,Saint-Maixme-Hauterive +34,1982-01-01,COMA,28351,0,SAINT MAIXME HAUTERIVE,Saint-Maixme-Hauterive,Saint-Maixme-Hauterive,COM,28226,0,MAILLEBOIS,Maillebois,Maillebois 21,1982-01-01,COMA,28351,0,SAINT MAIXME HAUTERIVE,Saint-Maixme-Hauterive,Saint-Maixme-Hauterive,COM,28351,0,SAINT MAIXME HAUTERIVE,Saint-Maixme-Hauterive,Saint-Maixme-Hauterive 10,1982-01-01,COM,30126,0,GARRIGUES ET SAINTE EULALIE,Garrigues-et-Sainte-Eulalie,Garrigues-et-Sainte-Eulalie,COM,30126,0,GARRIGUES SAINTE EULALIE,Garrigues-Sainte-Eulalie,Garrigues-Sainte-Eulalie 10,1982-01-01,COM,30135,0,JONQUIERES ET SAINT VINCENT,Jonquières-et-Saint-Vincent,Jonquières-et-Saint-Vincent,COM,30135,0,JONQUIERES SAINT VINCENT,Jonquières-Saint-Vincent,Jonquières-Saint-Vincent @@ -7605,161 +7394,233 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 21,1982-01-01,COM,55069,0,BRABANT LES VILLERS,Brabant-lès-Villers,Brabant-lès-Villers,COM,55069,0,BRABANT LE ROI,Brabant-le-Roi,Brabant-le-Roi 21,1982-01-01,COM,55069,0,BRABANT LES VILLERS,Brabant-lès-Villers,Brabant-lès-Villers,COM,55560,0,VILLERS AUX VENTS,Villers-aux-Vents,Villers-aux-Vents 21,1982-01-01,COMA,55216,0,GOURAINCOURT,Gouraincourt,Gouraincourt,COM,55216,0,GOURAINCOURT,Gouraincourt,Gouraincourt +34,1982-01-01,COMA,55216,0,GOURAINCOURT,Gouraincourt,Gouraincourt,COM,55367,0,MUZERAY,Muzeray,Muzeray +34,1982-01-01,COMA,55216,0,GOURAINCOURT,Gouraincourt,Gouraincourt,COM,55535,0,VAUDONCOURT,Vaudoncourt,Vaudoncourt +34,1982-01-01,COMA,55367,0,MUZERAY,Muzeray,Muzeray,COM,55216,0,GOURAINCOURT,Gouraincourt,Gouraincourt 21,1982-01-01,COMA,55367,0,MUZERAY,Muzeray,Muzeray,COM,55367,0,MUZERAY,Muzeray,Muzeray -21,1982-01-01,COM,55535,4,TILLEULS VAUDONCOURT,Tilleuls-Vaudoncourt,Les Tilleuls-Vaudoncourt,COM,55367,0,MUZERAY,Muzeray,Muzeray +34,1982-01-01,COMA,55367,0,MUZERAY,Muzeray,Muzeray,COM,55535,0,VAUDONCOURT,Vaudoncourt,Vaudoncourt 21,1982-01-01,COM,55535,4,TILLEULS VAUDONCOURT,Tilleuls-Vaudoncourt,Les Tilleuls-Vaudoncourt,COM,55216,0,GOURAINCOURT,Gouraincourt,Gouraincourt +21,1982-01-01,COM,55535,4,TILLEULS VAUDONCOURT,Tilleuls-Vaudoncourt,Les Tilleuls-Vaudoncourt,COM,55367,0,MUZERAY,Muzeray,Muzeray 21,1982-01-01,COM,55535,4,TILLEULS VAUDONCOURT,Tilleuls-Vaudoncourt,Les Tilleuls-Vaudoncourt,COM,55535,0,VAUDONCOURT,Vaudoncourt,Vaudoncourt +34,1982-01-01,COMA,55560,0,VILLERS AUX VENTS,Villers-aux-Vents,Villers-aux-Vents,COM,55069,0,BRABANT LE ROI,Brabant-le-Roi,Brabant-le-Roi 21,1982-01-01,COMA,55560,0,VILLERS AUX VENTS,Villers-aux-Vents,Villers-aux-Vents,COM,55560,0,VILLERS AUX VENTS,Villers-aux-Vents,Villers-aux-Vents -21,1982-01-01,COM,57106,0,BOUZONVILLE,Bouzonville,Bouzonville,COM,57110,0,BRETTNACH,Brettnach,Brettnach 21,1982-01-01,COM,57106,0,BOUZONVILLE,Bouzonville,Bouzonville,COM,57106,0,BOUZONVILLE,Bouzonville,Bouzonville +21,1982-01-01,COM,57106,0,BOUZONVILLE,Bouzonville,Bouzonville,COM,57110,0,BRETTNACH,Brettnach,Brettnach +34,1982-01-01,COMA,57110,0,BRETTNACH,Brettnach,Brettnach,COM,57106,0,BOUZONVILLE,Bouzonville,Bouzonville 21,1982-01-01,COMA,57110,0,BRETTNACH,Brettnach,Brettnach,COM,57110,0,BRETTNACH,Brettnach,Brettnach -21,1982-01-01,COM,57465,0,METZERVISSE,Metzervisse,Metzervisse,COM,57733,0,VOLSTROFF,Volstroff,Volstroff 21,1982-01-01,COM,57465,0,METZERVISSE,Metzervisse,Metzervisse,COM,57465,0,METZERVISSE,Metzervisse,Metzervisse +21,1982-01-01,COM,57465,0,METZERVISSE,Metzervisse,Metzervisse,COM,57733,0,VOLSTROFF,Volstroff,Volstroff 10,1982-01-01,COM,59342,0,LES FONTAINE,Lès-Fontaine,Lès-Fontaine,COM,59342,0,LEZ FONTAINE,Lez-Fontaine,Lez-Fontaine 10,1982-01-01,COM,61078,0,CERISI BELLE ETOILE,Cerisi-Belle-Étoile,Cerisi-Belle-Étoile,COM,61078,0,CERISY BELLE ETOILE,Cerisy-Belle-Étoile,Cerisy-Belle-Étoile 10,1982-01-01,COM,70518,2,VAL SAINT ELOY,Val-Saint-Eloy,Le Val-Saint-Eloy,COM,70518,2,VAL SAINT ELOI,Val-Saint-Éloi,Le Val-Saint-Éloi 21,1982-01-01,COMA,77136,0,COURQUETAINE,Courquetaine,Courquetaine,COM,77136,0,COURQUETAINE,Courquetaine,Courquetaine +34,1982-01-01,COMA,77136,0,COURQUETAINE,Courquetaine,Courquetaine,COM,77352,1,OZOUER LE VOULGIS,Ozouer-le-Voulgis,Ozouer-le-Voulgis 21,1982-01-01,COM,77352,1,OZOUER COURQUETAINE,Ozouer-Courquetaine,Ozouer-Courquetaine,COM,77136,0,COURQUETAINE,Courquetaine,Courquetaine 21,1982-01-01,COM,77352,1,OZOUER COURQUETAINE,Ozouer-Courquetaine,Ozouer-Courquetaine,COM,77352,1,OZOUER LE VOULGIS,Ozouer-le-Voulgis,Ozouer-le-Voulgis 21,1982-01-01,COMA,78202,0,DROCOURT,Drocourt,Drocourt,COM,78202,0,DROCOURT,Drocourt,Drocourt -21,1982-01-01,COM,78246,0,FONTENAY SAINT PERE,Fontenay-Saint-Père,Fontenay-Saint-Père,COM,78246,0,FONTENAY SAINT PERE,Fontenay-Saint-Père,Fontenay-Saint-Père +34,1982-01-01,COMA,78202,0,DROCOURT,Drocourt,Drocourt,COM,78246,0,FONTENAY SAINT PERE,Fontenay-Saint-Père,Fontenay-Saint-Père 21,1982-01-01,COM,78246,0,FONTENAY SAINT PERE,Fontenay-Saint-Père,Fontenay-Saint-Père,COM,78202,0,DROCOURT,Drocourt,Drocourt +21,1982-01-01,COM,78246,0,FONTENAY SAINT PERE,Fontenay-Saint-Père,Fontenay-Saint-Père,COM,78246,0,FONTENAY SAINT PERE,Fontenay-Saint-Père,Fontenay-Saint-Père 10,1982-01-01,COM,80779,0,VAUCHELLES,Vauchelles,Vauchelles,COM,80779,0,VAUCHELLES LES QUESNOY,Vauchelles-les-Quesnoy,Vauchelles-les-Quesnoy 21,1982-01-01,COMA,89040,0,BESSY SUR CURE,Bessy-sur-Cure,Bessy-sur-Cure,COM,89040,0,BESSY SUR CURE,Bessy-sur-Cure,Bessy-sur-Cure -21,1982-01-01,COMA,89157,1,ESSERT,Essert,Essert,COMA,89157,1,ESSERT,Essert,Essert +34,1982-01-01,COMA,89040,0,BESSY SUR CURE,Bessy-sur-Cure,Bessy-sur-Cure,COM,89233,0,LUCY SUR CURE,Lucy-sur-Cure,Lucy-sur-Cure 21,1982-01-01,COM,89233,0,LUCY SUR CURE,Lucy-sur-Cure,Lucy-sur-Cure,COM,89040,0,BESSY SUR CURE,Bessy-sur-Cure,Bessy-sur-Cure 21,1982-01-01,COM,89233,0,LUCY SUR CURE,Lucy-sur-Cure,Lucy-sur-Cure,COM,89233,0,LUCY SUR CURE,Lucy-sur-Cure,Lucy-sur-Cure -21,1982-01-01,COM,89233,0,LUCY SUR CURE,Lucy-sur-Cure,Lucy-sur-Cure,COMA,89157,1,ESSERT,Essert,Essert 10,1981-11-06,COM,58128,0,GLUX,Glux,Glux,COM,58128,0,GLUX EN GLENNE,Glux-en-Glenne,Glux-en-Glenne -20,1981-09-28,COM,27351,1,INCARVILLE,Incarville,Incarville,COM,27701,0,VAUDREUIL EX ENSEMBLE URBAIN,Vaudreuil-Ex-Ensemble Urbain,Vaudreuil-Ex-Ensemble Urbain 20,1981-09-28,COM,27351,1,INCARVILLE,Incarville,Incarville,COM,27351,1,INCARVILLE,Incarville,Incarville -20,1981-09-28,COM,27365,0,LERY,Léry,Léry,COM,27701,0,VAUDREUIL EX ENSEMBLE URBAIN,Vaudreuil-Ex-Ensemble Urbain,Vaudreuil-Ex-Ensemble Urbain +20,1981-09-28,COM,27351,1,INCARVILLE,Incarville,Incarville,COM,27701,0,VAUDREUIL EX ENSEMBLE URBAIN,Vaudreuil-Ex-Ensemble Urbain,Vaudreuil-Ex-Ensemble Urbain 20,1981-09-28,COM,27365,0,LERY,Léry,Léry,COM,27365,0,LERY,Léry,Léry +20,1981-09-28,COM,27365,0,LERY,Léry,Léry,COM,27701,0,VAUDREUIL EX ENSEMBLE URBAIN,Vaudreuil-Ex-Ensemble Urbain,Vaudreuil-Ex-Ensemble Urbain 20,1981-09-28,COM,27471,0,PORTE JOIE,Porte-Joie,Porte-Joie,COM,27471,0,PORTE JOIE,Porte-Joie,Porte-Joie 20,1981-09-28,COM,27471,0,PORTE JOIE,Porte-Joie,Porte-Joie,COM,27701,0,VAUDREUIL EX ENSEMBLE URBAIN,Vaudreuil-Ex-Ensemble Urbain,Vaudreuil-Ex-Ensemble Urbain -20,1981-09-28,COM,27474,0,POSES,Poses,Poses,COM,27701,0,VAUDREUIL EX ENSEMBLE URBAIN,Vaudreuil-Ex-Ensemble Urbain,Vaudreuil-Ex-Ensemble Urbain 20,1981-09-28,COM,27474,0,POSES,Poses,Poses,COM,27474,0,POSES,Poses,Poses -20,1981-09-28,COM,27528,2,VAUDREUIL,Vaudreuil,Le Vaudreuil,COM,27701,0,VAUDREUIL EX ENSEMBLE URBAIN,Vaudreuil-Ex-Ensemble Urbain,Vaudreuil-Ex-Ensemble Urbain +20,1981-09-28,COM,27474,0,POSES,Poses,Poses,COM,27701,0,VAUDREUIL EX ENSEMBLE URBAIN,Vaudreuil-Ex-Ensemble Urbain,Vaudreuil-Ex-Ensemble Urbain 20,1981-09-28,COM,27528,2,VAUDREUIL,Vaudreuil,Le Vaudreuil,COM,27528,2,VAUDREUIL,Vaudreuil,Le Vaudreuil +20,1981-09-28,COM,27528,2,VAUDREUIL,Vaudreuil,Le Vaudreuil,COM,27701,0,VAUDREUIL EX ENSEMBLE URBAIN,Vaudreuil-Ex-Ensemble Urbain,Vaudreuil-Ex-Ensemble Urbain 20,1981-09-28,COM,27537,0,SAINT ETIENNE DU VAUVRAY,Saint-Étienne-du-Vauvray,Saint-Étienne-du-Vauvray,COM,27537,0,SAINT ETIENNE DU VAUVRAY,Saint-Étienne-du-Vauvray,Saint-Étienne-du-Vauvray 20,1981-09-28,COM,27537,0,SAINT ETIENNE DU VAUVRAY,Saint-Étienne-du-Vauvray,Saint-Étienne-du-Vauvray,COM,27701,0,VAUDREUIL EX ENSEMBLE URBAIN,Vaudreuil-Ex-Ensemble Urbain,Vaudreuil-Ex-Ensemble Urbain 20,1981-09-28,COM,27598,0,SAINT PIERRE DU VAUVRAY,Saint-Pierre-du-Vauvray,Saint-Pierre-du-Vauvray,COM,27598,0,SAINT PIERRE DU VAUVRAY,Saint-Pierre-du-Vauvray,Saint-Pierre-du-Vauvray 20,1981-09-28,COM,27598,0,SAINT PIERRE DU VAUVRAY,Saint-Pierre-du-Vauvray,Saint-Pierre-du-Vauvray,COM,27701,0,VAUDREUIL EX ENSEMBLE URBAIN,Vaudreuil-Ex-Ensemble Urbain,Vaudreuil-Ex-Ensemble Urbain -20,1981-09-28,COM,27651,0,TOURNEDOS SUR SEINE,Tournedos-sur-Seine,Tournedos-sur-Seine,COM,27701,0,VAUDREUIL EX ENSEMBLE URBAIN,Vaudreuil-Ex-Ensemble Urbain,Vaudreuil-Ex-Ensemble Urbain 20,1981-09-28,COM,27651,0,TOURNEDOS SUR SEINE,Tournedos-sur-Seine,Tournedos-sur-Seine,COM,27651,0,TOURNEDOS SUR SEINE,Tournedos-sur-Seine,Tournedos-sur-Seine +20,1981-09-28,COM,27651,0,TOURNEDOS SUR SEINE,Tournedos-sur-Seine,Tournedos-sur-Seine,COM,27701,0,VAUDREUIL EX ENSEMBLE URBAIN,Vaudreuil-Ex-Ensemble Urbain,Vaudreuil-Ex-Ensemble Urbain 10,1981-03-13,COM,15205,0,SAINT PAUL,Saint-Paul,Saint-Paul,COM,15205,0,SAINT PAUL DE SALERS,Saint-Paul-de-Salers,Saint-Paul-de-Salers 10,1981-03-13,COM,23067,3,COURTINE LE TRUCQ,Courtine-le-Trucq,La Courtine-le-Trucq,COM,23067,3,COURTINE,Courtine,La Courtine 10,1981-03-13,COM,33236,0,LEGE,Lège,Lège,COM,33236,0,LEGE CAP FERRET,Lège-Cap-Ferret,Lège-Cap-Ferret 10,1981-03-13,COM,60028,1,AUMONT,Aumont,Aumont,COM,60028,1,AUMONT EN HALATTE,Aumont-en-Halatte,Aumont-en-Halatte -10,1981-03-13,COMA,64402,0,MONTESTRUCQ,Montestrucq,Montestrucq,COM,64440,1,OZENX MONTESTRUCQ,Ozenx-Montestrucq,Ozenx-Montestrucq -10,1981-03-13,COM,64440,1,OZENX,Ozenx,Ozenx,COMA,64402,0,MONTESTRUCQ,Montestrucq,Montestrucq 10,1981-03-13,COM,64440,1,OZENX,Ozenx,Ozenx,COM,64440,1,OZENX MONTESTRUCQ,Ozenx-Montestrucq,Ozenx-Montestrucq 10,1981-03-13,COM,76605,0,SAINTE MARGUERITE,Sainte-Marguerite,Sainte-Marguerite,COM,76605,0,SAINTE MARGUERITE SUR MER,Sainte-Marguerite-sur-Mer,Sainte-Marguerite-sur-Mer 10,1981-03-13,COM,77300,0,MONTCEAUX,Montceaux,Montceaux,COM,77300,0,MONTCEAUX LES MEAUX,Montceaux-lès-Meaux,Montceaux-lès-Meaux 33,1981-02-01,COM,57133,0,CHATEAU VOUE,Château-Voué,Château-Voué,COM,57133,0,CHATEAU VOUE,Château-Voué,Château-Voué -33,1981-02-01,COM,57170,0,DEDELING,Dédeling,Dédeling,COMA,57170,0,DEDELING,Dédeling,Dédeling 33,1981-02-01,COM,57170,0,DEDELING,Dédeling,Dédeling,COM,57133,0,CHATEAU VOUE,Château-Voué,Château-Voué -21,1981-01-01,COMA,09036,0,BANAT,Banat,Banat,COMA,09036,0,BANAT,Banat,Banat -21,1981-01-01,COMA,09092,0,CAZENAVE SERRES ET ALLENS,Cazenave-Serres-et-Allens,Cazenave-Serres-et-Allens,COM,09092,0,CAZENAVE SERRES ET ALLENS,Cazenave-Serres-et-Allens,Cazenave-Serres-et-Allens -21,1981-01-01,COM,09306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège,COM,09092,0,CAZENAVE SERRES ET ALLENS,Cazenave-Serres-et-Allens,Cazenave-Serres-et-Allens -21,1981-01-01,COM,09306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège,COMA,09036,0,BANAT,Banat,Banat -21,1981-01-01,COM,09306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège,COM,09306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège -21,1981-01-01,COM,25015,1,AMANCEY,Amancey,Amancey,COM,25359,0,MALANS,Malans,Malans +33,1981-02-01,COM,57170,0,DEDELING,Dédeling,Dédeling,COMA,57170,0,DEDELING,Dédeling,Dédeling +21,1981-01-01,COMA,9092,0,CAZENAVE SERRES ET ALLENS,Cazenave-Serres-et-Allens,Cazenave-Serres-et-Allens,COM,9092,0,CAZENAVE SERRES ET ALLENS,Cazenave-Serres-et-Allens,Cazenave-Serres-et-Allens +34,1981-01-01,COMA,9092,0,CAZENAVE SERRES ET ALLENS,Cazenave-Serres-et-Allens,Cazenave-Serres-et-Allens,COM,9306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège +21,1981-01-01,COM,9306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège,COM,9092,0,CAZENAVE SERRES ET ALLENS,Cazenave-Serres-et-Allens,Cazenave-Serres-et-Allens +21,1981-01-01,COM,9306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège,COM,9306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège 21,1981-01-01,COM,25015,1,AMANCEY,Amancey,Amancey,COM,25015,1,AMANCEY,Amancey,Amancey 21,1981-01-01,COM,25015,1,AMANCEY,Amancey,Amancey,COM,25155,0,CLERON,Cléron,Cléron 21,1981-01-01,COM,25015,1,AMANCEY,Amancey,Amancey,COM,25236,0,FERTANS,Fertans,Fertans +21,1981-01-01,COM,25015,1,AMANCEY,Amancey,Amancey,COM,25359,0,MALANS,Malans,Malans +34,1981-01-01,COMA,25155,0,CLERON,Cléron,Cléron,COM,25015,1,AMANCEY,Amancey,Amancey 21,1981-01-01,COMA,25155,0,CLERON,Cléron,Cléron,COM,25155,0,CLERON,Cléron,Cléron +34,1981-01-01,COMA,25155,0,CLERON,Cléron,Cléron,COM,25236,0,FERTANS,Fertans,Fertans +34,1981-01-01,COMA,25155,0,CLERON,Cléron,Cléron,COM,25359,0,MALANS,Malans,Malans +34,1981-01-01,COMA,25236,0,FERTANS,Fertans,Fertans,COM,25015,1,AMANCEY,Amancey,Amancey +34,1981-01-01,COMA,25236,0,FERTANS,Fertans,Fertans,COM,25155,0,CLERON,Cléron,Cléron 21,1981-01-01,COMA,25236,0,FERTANS,Fertans,Fertans,COM,25236,0,FERTANS,Fertans,Fertans +34,1981-01-01,COMA,25236,0,FERTANS,Fertans,Fertans,COM,25359,0,MALANS,Malans,Malans +34,1981-01-01,COMA,25359,0,MALANS,Malans,Malans,COM,25015,1,AMANCEY,Amancey,Amancey +34,1981-01-01,COMA,25359,0,MALANS,Malans,Malans,COM,25155,0,CLERON,Cléron,Cléron +34,1981-01-01,COMA,25359,0,MALANS,Malans,Malans,COM,25236,0,FERTANS,Fertans,Fertans 21,1981-01-01,COMA,25359,0,MALANS,Malans,Malans,COM,25359,0,MALANS,Malans,Malans 34,1981-01-01,COM,32065,2,BROUILH MONBERT,Brouilh-Monbert,Le Brouilh-Monbert,COM,32065,2,BROUILH MONBERT,Brouilh-Monbert,Le Brouilh-Monbert 34,1981-01-01,COMA,32259,0,MONBERT,Monbert,Monbert,COM,32065,2,BROUILH MONBERT,Brouilh-Monbert,Le Brouilh-Monbert 21,1981-01-01,COMA,57069,0,BERVILLER EN MOSELLE,Berviller-en-Moselle,Berviller-en-Moselle,COM,57069,0,BERVILLER EN MOSELLE,Berviller-en-Moselle,Berviller-en-Moselle +34,1981-01-01,COMA,57069,0,BERVILLER EN MOSELLE,Berviller-en-Moselle,Berviller-en-Moselle,COM,57460,0,MERTEN,Merten,Merten +34,1981-01-01,COMA,57069,0,BERVILLER EN MOSELLE,Berviller-en-Moselle,Berviller-en-Moselle,COM,57570,0,REMERING LES HARGARTEN,Rémering-lès-Hargarten,Rémering-lès-Hargarten +34,1981-01-01,COMA,57069,0,BERVILLER EN MOSELLE,Berviller-en-Moselle,Berviller-en-Moselle,COM,57720,0,VILLING,Villing,Villing +21,1981-01-01,COM,57460,0,MERTEN,Merten,Merten,COM,57069,0,BERVILLER EN MOSELLE,Berviller-en-Moselle,Berviller-en-Moselle +21,1981-01-01,COM,57460,0,MERTEN,Merten,Merten,COM,57460,0,MERTEN,Merten,Merten 21,1981-01-01,COM,57460,0,MERTEN,Merten,Merten,COM,57570,0,REMERING LES HARGARTEN,Rémering-lès-Hargarten,Rémering-lès-Hargarten 21,1981-01-01,COM,57460,0,MERTEN,Merten,Merten,COM,57720,0,VILLING,Villing,Villing -21,1981-01-01,COM,57460,0,MERTEN,Merten,Merten,COM,57460,0,MERTEN,Merten,Merten -21,1981-01-01,COM,57460,0,MERTEN,Merten,Merten,COM,57069,0,BERVILLER EN MOSELLE,Berviller-en-Moselle,Berviller-en-Moselle +34,1981-01-01,COMA,57570,0,REMERING LES HARGARTEN,Rémering-lès-Hargarten,Rémering-lès-Hargarten,COM,57069,0,BERVILLER EN MOSELLE,Berviller-en-Moselle,Berviller-en-Moselle +34,1981-01-01,COMA,57570,0,REMERING LES HARGARTEN,Rémering-lès-Hargarten,Rémering-lès-Hargarten,COM,57460,0,MERTEN,Merten,Merten 21,1981-01-01,COMA,57570,0,REMERING LES HARGARTEN,Rémering-lès-Hargarten,Rémering-lès-Hargarten,COM,57570,0,REMERING LES HARGARTEN,Rémering-lès-Hargarten,Rémering-lès-Hargarten +34,1981-01-01,COMA,57570,0,REMERING LES HARGARTEN,Rémering-lès-Hargarten,Rémering-lès-Hargarten,COM,57720,0,VILLING,Villing,Villing +34,1981-01-01,COMA,57720,0,VILLING,Villing,Villing,COM,57069,0,BERVILLER EN MOSELLE,Berviller-en-Moselle,Berviller-en-Moselle +34,1981-01-01,COMA,57720,0,VILLING,Villing,Villing,COM,57460,0,MERTEN,Merten,Merten +34,1981-01-01,COMA,57720,0,VILLING,Villing,Villing,COM,57570,0,REMERING LES HARGARTEN,Rémering-lès-Hargarten,Rémering-lès-Hargarten 21,1981-01-01,COMA,57720,0,VILLING,Villing,Villing,COM,57720,0,VILLING,Villing,Villing 21,1981-01-01,COM,79100,0,COULON SANSAIS,Coulon-Sansais,Coulon-Sansais,COM,79100,0,COULON,Coulon,Coulon 21,1981-01-01,COM,79100,0,COULON SANSAIS,Coulon-Sansais,Coulon-Sansais,COM,79304,0,SANSAIS,Sansais,Sansais +34,1981-01-01,COMA,79304,0,SANSAIS,Sansais,Sansais,COM,79100,0,COULON,Coulon,Coulon 21,1981-01-01,COMA,79304,0,SANSAIS,Sansais,Sansais,COM,79304,0,SANSAIS,Sansais,Sansais 34,1980-07-01,COMA,53167,0,NUILLE SUR OUETTE,Nuillé-sur-Ouette,Nuillé-sur-Ouette,COM,53262,0,SOULGE SUR OUETTE,Soulgé-sur-Ouette,Soulgé-sur-Ouette 34,1980-07-01,COM,53262,0,SOULGE SUR OUETTE,Soulgé-sur-Ouette,Soulgé-sur-Ouette,COM,53262,0,SOULGE SUR OUETTE,Soulgé-sur-Ouette,Soulgé-sur-Ouette -21,1980-06-12,COM,04112,0,MANOSQUE,Manosque,Manosque,COM,04190,0,SAINT MARTIN LES EAUX,Saint-Martin-les-Eaux,Saint-Martin-les-Eaux -21,1980-06-12,COM,04112,0,MANOSQUE,Manosque,Manosque,COM,04112,0,MANOSQUE,Manosque,Manosque -21,1980-06-12,COMA,04190,0,SAINT MARTIN LES EAUX,Saint-Martin-les-Eaux,Saint-Martin-les-Eaux,COM,04190,0,SAINT MARTIN LES EAUX,Saint-Martin-les-Eaux,Saint-Martin-les-Eaux -21,1980-01-01,COMA,04009,1,ARCHAIL,Archail,Archail,COM,04009,1,ARCHAIL,Archail,Archail -21,1980-01-01,COM,04072,1,ARCHAIL DRAIX,Archail-Draix,Archail-Draix,COM,04072,0,DRAIX,Draix,Draix -21,1980-01-01,COM,04072,1,ARCHAIL DRAIX,Archail-Draix,Archail-Draix,COM,04009,1,ARCHAIL,Archail,Archail +21,1980-06-12,COM,4112,0,MANOSQUE,Manosque,Manosque,COM,4112,0,MANOSQUE,Manosque,Manosque +21,1980-06-12,COM,4112,0,MANOSQUE,Manosque,Manosque,COM,4190,0,SAINT MARTIN LES EAUX,Saint-Martin-les-Eaux,Saint-Martin-les-Eaux +34,1980-06-12,COMA,4190,0,SAINT MARTIN LES EAUX,Saint-Martin-les-Eaux,Saint-Martin-les-Eaux,COM,4112,0,MANOSQUE,Manosque,Manosque +21,1980-06-12,COMA,4190,0,SAINT MARTIN LES EAUX,Saint-Martin-les-Eaux,Saint-Martin-les-Eaux,COM,4190,0,SAINT MARTIN LES EAUX,Saint-Martin-les-Eaux,Saint-Martin-les-Eaux +21,1980-01-01,COMA,4009,1,ARCHAIL,Archail,Archail,COM,4009,1,ARCHAIL,Archail,Archail +34,1980-01-01,COMA,4009,1,ARCHAIL,Archail,Archail,COM,4072,0,DRAIX,Draix,Draix +21,1980-01-01,COM,4072,1,ARCHAIL DRAIX,Archail-Draix,Archail-Draix,COM,4009,1,ARCHAIL,Archail,Archail +21,1980-01-01,COM,4072,1,ARCHAIL DRAIX,Archail-Draix,Archail-Draix,COM,4072,0,DRAIX,Draix,Draix 21,1980-01-01,COMA,50035,0,BAUDREVILLE,Baudreville,Baudreville,COM,50035,0,BAUDREVILLE,Baudreville,Baudreville -21,1980-01-01,COMA,50063,0,BOLLEVILLE,Bolleville,Bolleville,COMA,50063,0,BOLLEVILLE,Bolleville,Bolleville +34,1980-01-01,COMA,50035,0,BAUDREVILLE,Baudreville,Baudreville,COM,50528,0,PIERREPONT EN COTENTIN,Pierrepont-en-Cotentin,Pierrepont-en-Cotentin 21,1980-01-01,COMA,50097,0,CANVILLE LA ROCQUE,Canville-la-Rocque,Canville-la-Rocque,COM,50097,0,CANVILLE LA ROCQUE,Canville-la-Rocque,Canville-la-Rocque +34,1980-01-01,COMA,50097,0,CANVILLE LA ROCQUE,Canville-la-Rocque,Canville-la-Rocque,COM,50160,0,DENNEVILLE,Denneville,Denneville 21,1980-01-01,COM,50160,0,DENNEVILLE,Denneville,Denneville,COM,50097,0,CANVILLE LA ROCQUE,Canville-la-Rocque,Canville-la-Rocque 21,1980-01-01,COM,50160,0,DENNEVILLE,Denneville,Denneville,COM,50160,0,DENNEVILLE,Denneville,Denneville 21,1980-01-01,COMA,50170,1,ECOQUENEAUVILLE,Écoquenéauville,Écoquenéauville,COM,50170,1,ECOQUENEAUVILLE,Écoquenéauville,Écoquenéauville +34,1980-01-01,COMA,50170,1,ECOQUENEAUVILLE,Écoquenéauville,Écoquenéauville,COM,50571,0,SEBEVILLE,Sébeville,Sébeville +34,1980-01-01,COMA,50170,1,ECOQUENEAUVILLE,Écoquenéauville,Écoquenéauville,COM,50609,0,TURQUEVILLE,Turqueville,Turqueville 21,1980-01-01,COMA,50284,0,MACEY,Macey,Macey,COM,50284,0,MACEY,Macey,Macey -34,1980-01-01,COM,50415,0,PRETOT,Prétot,Prétot,COM,50415,0,PRETOT SAINTE SUZANNE,Prétot-Sainte-Suzanne,Prétot-Sainte-Suzanne -21,1980-01-01,COM,50528,0,PIERREPONT EN COTENTIN,Pierrepont-en-Cotentin,Pierrepont-en-Cotentin,COMA,50548,0,SAINT SAUVEUR DE PIERREPONT,Saint-Sauveur-de-Pierrepont,Saint-Sauveur-de-Pierrepont -21,1980-01-01,COM,50528,0,PIERREPONT EN COTENTIN,Pierrepont-en-Cotentin,Pierrepont-en-Cotentin,COMA,50063,0,BOLLEVILLE,Bolleville,Bolleville +34,1980-01-01,COMA,50284,0,MACEY,Macey,Macey,COM,50630,0,VESSEY,Vessey,Vessey +10,1980-01-01,COM,50415,0,PRETOT,Prétot,Prétot,COM,50415,0,PRETOT SAINTE SUZANNE,Prétot-Sainte-Suzanne,Prétot-Sainte-Suzanne 21,1980-01-01,COM,50528,0,PIERREPONT EN COTENTIN,Pierrepont-en-Cotentin,Pierrepont-en-Cotentin,COM,50035,0,BAUDREVILLE,Baudreville,Baudreville 21,1980-01-01,COM,50528,0,PIERREPONT EN COTENTIN,Pierrepont-en-Cotentin,Pierrepont-en-Cotentin,COM,50528,0,PIERREPONT EN COTENTIN,Pierrepont-en-Cotentin,Pierrepont-en-Cotentin -21,1980-01-01,COMA,50548,0,SAINT SAUVEUR DE PIERREPONT,Saint-Sauveur-de-Pierrepont,Saint-Sauveur-de-Pierrepont,COMA,50548,0,SAINT SAUVEUR DE PIERREPONT,Saint-Sauveur-de-Pierrepont,Saint-Sauveur-de-Pierrepont -34,1980-01-01,COMA,50555,0,SAINTE SUZANNE EN BAUPTOIS,Sainte-Suzanne-en-Bauptois,Sainte-Suzanne-en-Bauptois,COM,50415,0,PRETOT SAINTE SUZANNE,Prétot-Sainte-Suzanne,Prétot-Sainte-Suzanne +34,1980-01-01,COMA,50555,0,SAINTE SUZANNE EN BAUPTOIS,Sainte-Suzanne-en-Bauptois,Sainte-Suzanne-en-Bauptois,COM,50415,0,PRETOT,Prétot,Prétot +34,1980-01-01,COMA,50571,0,SEBEVILLE,Sébeville,Sébeville,COM,50170,1,ECOQUENEAUVILLE,Écoquenéauville,Écoquenéauville 21,1980-01-01,COMA,50571,0,SEBEVILLE,Sébeville,Sébeville,COM,50571,0,SEBEVILLE,Sébeville,Sébeville -21,1980-01-01,COM,50609,0,CRIQUEVILLE AU PLAIN,Criqueville-au-Plain,Criqueville-au-Plain,COM,50609,0,TURQUEVILLE,Turqueville,Turqueville +34,1980-01-01,COMA,50571,0,SEBEVILLE,Sébeville,Sébeville,COM,50609,0,TURQUEVILLE,Turqueville,Turqueville 21,1980-01-01,COM,50609,0,CRIQUEVILLE AU PLAIN,Criqueville-au-Plain,Criqueville-au-Plain,COM,50170,1,ECOQUENEAUVILLE,Écoquenéauville,Écoquenéauville 21,1980-01-01,COM,50609,0,CRIQUEVILLE AU PLAIN,Criqueville-au-Plain,Criqueville-au-Plain,COM,50571,0,SEBEVILLE,Sébeville,Sébeville +21,1980-01-01,COM,50609,0,CRIQUEVILLE AU PLAIN,Criqueville-au-Plain,Criqueville-au-Plain,COM,50609,0,TURQUEVILLE,Turqueville,Turqueville 21,1980-01-01,COM,50630,0,VESSEY,Vessey,Vessey,COM,50284,0,MACEY,Macey,Macey 21,1980-01-01,COM,50630,0,VESSEY,Vessey,Vessey,COM,50630,0,VESSEY,Vessey,Vessey 33,1980-01-01,COM,59183,0,DUNKERQUE,Dunkerque,Dunkerque,COM,59183,0,DUNKERQUE,Dunkerque,Dunkerque -33,1980-01-01,COM,59380,0,MARDYCK,Mardyck,Mardyck,COMA,59380,0,MARDYCK,Mardyck,Mardyck 33,1980-01-01,COM,59380,0,MARDYCK,Mardyck,Mardyck,COM,59183,0,DUNKERQUE,Dunkerque,Dunkerque +33,1980-01-01,COM,59380,0,MARDYCK,Mardyck,Mardyck,COMA,59380,0,MARDYCK,Mardyck,Mardyck 21,1980-01-01,COM,76025,1,ARGUEIL FRY,Argueil-Fry,Argueil-Fry,COM,76025,1,ARGUEIL,Argueil,Argueil 21,1980-01-01,COM,76025,1,ARGUEIL FRY,Argueil-Fry,Argueil-Fry,COM,76292,0,FRY,Fry,Fry 33,1980-01-01,COM,76217,0,DIEPPE,Dieppe,Dieppe,COM,76217,0,DIEPPE,Dieppe,Dieppe 33,1980-01-01,COM,76466,0,NEUVILLE LES DIEPPE,Neuville-lès-Dieppe,Neuville-lès-Dieppe,COM,76217,0,DIEPPE,Dieppe,Dieppe 33,1980-01-01,COM,76466,0,NEUVILLE LES DIEPPE,Neuville-lès-Dieppe,Neuville-lès-Dieppe,COMA,76466,0,NEUVILLE LES DIEPPE,Neuville-lès-Dieppe,Neuville-lès-Dieppe 21,1980-01-01,COMA,86002,1,AMBERRE,Amberre,Amberre,COM,86002,1,AMBERRE,Amberre,Amberre +34,1980-01-01,COMA,86002,1,AMBERRE,Amberre,Amberre,COM,86073,0,CHERVES,Cherves,Cherves +34,1980-01-01,COMA,86002,1,AMBERRE,Amberre,Amberre,COM,86089,0,CUHON,Cuhon,Cuhon +34,1980-01-01,COMA,86002,1,AMBERRE,Amberre,Amberre,COM,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve +34,1980-01-01,COMA,86002,1,AMBERRE,Amberre,Amberre,COM,86150,0,MASSOGNES,Massognes,Massognes +34,1980-01-01,COMA,86002,1,AMBERRE,Amberre,Amberre,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau +34,1980-01-01,COMA,86002,1,AMBERRE,Amberre,Amberre,COM,86277,0,VARENNES,Varennes,Varennes +34,1980-01-01,COMA,86002,1,AMBERRE,Amberre,Amberre,COM,86299,0,VOUZAILLES,Vouzailles,Vouzailles +34,1980-01-01,COMA,86073,0,CHERVES,Cherves,Cherves,COM,86002,1,AMBERRE,Amberre,Amberre 21,1980-01-01,COMA,86073,0,CHERVES,Cherves,Cherves,COM,86073,0,CHERVES,Cherves,Cherves +34,1980-01-01,COMA,86073,0,CHERVES,Cherves,Cherves,COM,86089,0,CUHON,Cuhon,Cuhon +34,1980-01-01,COMA,86073,0,CHERVES,Cherves,Cherves,COM,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve +34,1980-01-01,COMA,86073,0,CHERVES,Cherves,Cherves,COM,86150,0,MASSOGNES,Massognes,Massognes +34,1980-01-01,COMA,86073,0,CHERVES,Cherves,Cherves,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau +34,1980-01-01,COMA,86073,0,CHERVES,Cherves,Cherves,COM,86277,0,VARENNES,Varennes,Varennes +34,1980-01-01,COMA,86073,0,CHERVES,Cherves,Cherves,COM,86299,0,VOUZAILLES,Vouzailles,Vouzailles +34,1980-01-01,COMA,86089,0,CUHON,Cuhon,Cuhon,COM,86002,1,AMBERRE,Amberre,Amberre +34,1980-01-01,COMA,86089,0,CUHON,Cuhon,Cuhon,COM,86073,0,CHERVES,Cherves,Cherves 21,1980-01-01,COMA,86089,0,CUHON,Cuhon,Cuhon,COM,86089,0,CUHON,Cuhon,Cuhon +34,1980-01-01,COMA,86089,0,CUHON,Cuhon,Cuhon,COM,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve +34,1980-01-01,COMA,86089,0,CUHON,Cuhon,Cuhon,COM,86150,0,MASSOGNES,Massognes,Massognes +34,1980-01-01,COMA,86089,0,CUHON,Cuhon,Cuhon,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau +34,1980-01-01,COMA,86089,0,CUHON,Cuhon,Cuhon,COM,86277,0,VARENNES,Varennes,Varennes +34,1980-01-01,COMA,86089,0,CUHON,Cuhon,Cuhon,COM,86299,0,VOUZAILLES,Vouzailles,Vouzailles +34,1980-01-01,COMA,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve,COM,86002,1,AMBERRE,Amberre,Amberre +34,1980-01-01,COMA,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve,COM,86073,0,CHERVES,Cherves,Cherves +34,1980-01-01,COMA,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve,COM,86089,0,CUHON,Cuhon,Cuhon 21,1980-01-01,COMA,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve,COM,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve +34,1980-01-01,COMA,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve,COM,86150,0,MASSOGNES,Massognes,Massognes +34,1980-01-01,COMA,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau +34,1980-01-01,COMA,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve,COM,86277,0,VARENNES,Varennes,Varennes +34,1980-01-01,COMA,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve,COM,86299,0,VOUZAILLES,Vouzailles,Vouzailles +34,1980-01-01,COMA,86150,0,MASSOGNES,Massognes,Massognes,COM,86002,1,AMBERRE,Amberre,Amberre +34,1980-01-01,COMA,86150,0,MASSOGNES,Massognes,Massognes,COM,86073,0,CHERVES,Cherves,Cherves +34,1980-01-01,COMA,86150,0,MASSOGNES,Massognes,Massognes,COM,86089,0,CUHON,Cuhon,Cuhon +34,1980-01-01,COMA,86150,0,MASSOGNES,Massognes,Massognes,COM,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve 21,1980-01-01,COMA,86150,0,MASSOGNES,Massognes,Massognes,COM,86150,0,MASSOGNES,Massognes,Massognes +34,1980-01-01,COMA,86150,0,MASSOGNES,Massognes,Massognes,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau +34,1980-01-01,COMA,86150,0,MASSOGNES,Massognes,Massognes,COM,86277,0,VARENNES,Varennes,Varennes +34,1980-01-01,COMA,86150,0,MASSOGNES,Massognes,Massognes,COM,86299,0,VOUZAILLES,Vouzailles,Vouzailles +21,1980-01-01,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau,COM,86002,1,AMBERRE,Amberre,Amberre +21,1980-01-01,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau,COM,86073,0,CHERVES,Cherves,Cherves +21,1980-01-01,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau,COM,86089,0,CUHON,Cuhon,Cuhon +21,1980-01-01,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau,COM,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve 21,1980-01-01,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau,COM,86150,0,MASSOGNES,Massognes,Massognes -21,1980-01-01,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau,COM,86299,0,VOUZAILLES,Vouzailles,Vouzailles -21,1980-01-01,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau,COM,86277,0,VARENNES,Varennes,Varennes 21,1980-01-01,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau -21,1980-01-01,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau,COM,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve -21,1980-01-01,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau,COM,86089,0,CUHON,Cuhon,Cuhon -21,1980-01-01,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau,COM,86073,0,CHERVES,Cherves,Cherves -21,1980-01-01,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau,COM,86002,1,AMBERRE,Amberre,Amberre +21,1980-01-01,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau,COM,86277,0,VARENNES,Varennes,Varennes +21,1980-01-01,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau,COM,86299,0,VOUZAILLES,Vouzailles,Vouzailles +34,1980-01-01,COMA,86277,0,VARENNES,Varennes,Varennes,COM,86002,1,AMBERRE,Amberre,Amberre +34,1980-01-01,COMA,86277,0,VARENNES,Varennes,Varennes,COM,86073,0,CHERVES,Cherves,Cherves +34,1980-01-01,COMA,86277,0,VARENNES,Varennes,Varennes,COM,86089,0,CUHON,Cuhon,Cuhon +34,1980-01-01,COMA,86277,0,VARENNES,Varennes,Varennes,COM,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve +34,1980-01-01,COMA,86277,0,VARENNES,Varennes,Varennes,COM,86150,0,MASSOGNES,Massognes,Massognes +34,1980-01-01,COMA,86277,0,VARENNES,Varennes,Varennes,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau 21,1980-01-01,COMA,86277,0,VARENNES,Varennes,Varennes,COM,86277,0,VARENNES,Varennes,Varennes +34,1980-01-01,COMA,86277,0,VARENNES,Varennes,Varennes,COM,86299,0,VOUZAILLES,Vouzailles,Vouzailles +34,1980-01-01,COMA,86299,0,VOUZAILLES,Vouzailles,Vouzailles,COM,86002,1,AMBERRE,Amberre,Amberre +34,1980-01-01,COMA,86299,0,VOUZAILLES,Vouzailles,Vouzailles,COM,86073,0,CHERVES,Cherves,Cherves +34,1980-01-01,COMA,86299,0,VOUZAILLES,Vouzailles,Vouzailles,COM,86089,0,CUHON,Cuhon,Cuhon +34,1980-01-01,COMA,86299,0,VOUZAILLES,Vouzailles,Vouzailles,COM,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve +34,1980-01-01,COMA,86299,0,VOUZAILLES,Vouzailles,Vouzailles,COM,86150,0,MASSOGNES,Massognes,Massognes +34,1980-01-01,COMA,86299,0,VOUZAILLES,Vouzailles,Vouzailles,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau +34,1980-01-01,COMA,86299,0,VOUZAILLES,Vouzailles,Vouzailles,COM,86277,0,VARENNES,Varennes,Varennes 21,1980-01-01,COMA,86299,0,VOUZAILLES,Vouzailles,Vouzailles,COM,86299,0,VOUZAILLES,Vouzailles,Vouzailles -21,1980-01-01,COMA,89090,0,CHASTENAY,Chastenay,Chastenay,COMA,89090,0,CHASTENAY,Chastenay,Chastenay 21,1980-01-01,COMA,89252,0,MERRY SEC,Merry-Sec,Merry-Sec,COM,89252,0,MERRY SEC,Merry-Sec,Merry-Sec +34,1980-01-01,COMA,89252,0,MERRY SEC,Merry-Sec,Merry-Sec,COM,89283,1,OUANNE,Ouanne,Ouanne 21,1980-01-01,COM,89283,1,OUANNE,Ouanne,Ouanne,COM,89252,0,MERRY SEC,Merry-Sec,Merry-Sec -21,1980-01-01,COM,89283,1,OUANNE,Ouanne,Ouanne,COMA,89090,0,CHASTENAY,Chastenay,Chastenay 21,1980-01-01,COM,89283,1,OUANNE,Ouanne,Ouanne,COM,89283,1,OUANNE,Ouanne,Ouanne -21,1980-01-01,COM,90033,0,DELLE,Delle,Delle,COM,90063,0,LEBETAIN,Lebetain,Lebetain -21,1980-01-01,COM,90033,0,DELLE,Delle,Delle,COMA,90056,0,JONCHEREY,Joncherey,Joncherey 21,1980-01-01,COM,90033,0,DELLE,Delle,Delle,COM,90033,0,DELLE,Delle,Delle -21,1980-01-01,COMA,90056,0,JONCHEREY,Joncherey,Joncherey,COMA,90056,0,JONCHEREY,Joncherey,Joncherey +21,1980-01-01,COM,90033,0,DELLE,Delle,Delle,COM,90063,0,LEBETAIN,Lebetain,Lebetain +34,1980-01-01,COMA,90063,0,LEBETAIN,Lebetain,Lebetain,COM,90033,0,DELLE,Delle,Delle 21,1980-01-01,COMA,90063,0,LEBETAIN,Lebetain,Lebetain,COM,90063,0,LEBETAIN,Lebetain,Lebetain -10,1979-12-31,COM,01265,0,MONTREAL,Montréal,Montréal,COM,01265,0,MONTREAL LA CLUSE,Montréal-la-Cluse,Montréal-la-Cluse +10,1979-12-31,COM,1265,0,MONTREAL,Montréal,Montréal,COM,1265,0,MONTREAL LA CLUSE,Montréal-la-Cluse,Montréal-la-Cluse 10,1979-12-31,COM,33088,0,CAMPS,Camps,Camps,COM,33088,0,CAMPS SUR L ISLE,Camps-sur-l'Isle,Camps-sur-l'Isle 10,1979-12-31,COM,44152,0,SAINTE ANNE,Sainte-Anne,Sainte-Anne,COM,44152,0,SAINTE ANNE SUR BRIVET,Sainte-Anne-sur-Brivet,Sainte-Anne-sur-Brivet -10,1979-12-31,COMA,47149,0,LISSE,Lisse,Lisse,COM,47221,0,REAUP LISSE,Réaup-Lisse,Réaup-Lisse 10,1979-12-31,COM,47221,0,REAUP,Réaup,Réaup,COM,47221,0,REAUP LISSE,Réaup-Lisse,Réaup-Lisse -10,1979-12-31,COM,47221,0,REAUP,Réaup,Réaup,COMA,47149,0,LISSE,Lisse,Lisse 10,1979-12-31,COM,50167,0,DRAGEY,Dragey,Dragey,COM,50167,0,DRAGEY RONTHON,Dragey-Ronthon,Dragey-Ronthon -10,1979-12-31,COM,50167,0,DRAGEY,Dragey,Dragey,COMA,50439,0,RONTHON,Ronthon,Ronthon -10,1979-12-31,COMA,50439,0,RONTHON,Ronthon,Ronthon,COM,50167,0,DRAGEY RONTHON,Dragey-Ronthon,Dragey-Ronthon 10,1979-12-31,COM,71234,1,HUILLY,Huilly,Huilly,COM,71234,1,HUILLY SUR SEILLE,Huilly-sur-Seille,Huilly-sur-Seille 10,1979-11-22,COM,87046,0,COGNAC LE FROID,Cognac-le-Froid,Cognac-le-Froid,COM,87046,0,COGNAC LA FORET,Cognac-la-Forêt,Cognac-la-Forêt -21,1979-10-01,COM,39465,0,ROMANGE LES VRIANGE,Romange-lès-Vriange,Romange-lès-Vriange,COM,39584,0,VRIANGE,Vriange,Vriange 21,1979-10-01,COM,39465,0,ROMANGE LES VRIANGE,Romange-lès-Vriange,Romange-lès-Vriange,COM,39465,0,ROMANGE,Romange,Romange +21,1979-10-01,COM,39465,0,ROMANGE LES VRIANGE,Romange-lès-Vriange,Romange-lès-Vriange,COM,39584,0,VRIANGE,Vriange,Vriange +34,1979-10-01,COMA,39584,0,VRIANGE,Vriange,Vriange,COM,39465,0,ROMANGE,Romange,Romange 21,1979-10-01,COMA,39584,0,VRIANGE,Vriange,Vriange,COM,39584,0,VRIANGE,Vriange,Vriange -10,1979-06-15,COM,02032,1,AUBIGNY,Aubigny,Aubigny,COM,02032,1,AUBIGNY AUX KAISNES,Aubigny-aux-Kaisnes,Aubigny-aux-Kaisnes -10,1979-06-15,COM,02524,0,CHARMONT SUR MARNE,Charmont-sur-Marne,Charmont-sur-Marne,COM,02524,0,MONT SAINT PERE,Mont-Saint-Père,Mont-Saint-Père +10,1979-06-15,COM,2032,1,AUBIGNY,Aubigny,Aubigny,COM,2032,1,AUBIGNY AUX KAISNES,Aubigny-aux-Kaisnes,Aubigny-aux-Kaisnes +10,1979-06-15,COM,2524,0,CHARMONT SUR MARNE,Charmont-sur-Marne,Charmont-sur-Marne,COM,2524,0,MONT SAINT PERE,Mont-Saint-Père,Mont-Saint-Père 10,1979-06-15,COM,17286,4,PORTES,Portes,Les Portes,COM,17286,4,PORTES EN RE,Portes-en-Ré,Les Portes-en-Ré 10,1979-06-15,COM,29237,3,ROCHE,Roche,La Roche,COM,29237,3,ROCHE MAURICE,Roche-Maurice,La Roche-Maurice 10,1979-06-15,COM,34284,0,SAINT PONS,Saint-Pons,Saint-Pons,COM,34284,0,SAINT PONS DE THOMIERES,Saint-Pons-de-Thomières,Saint-Pons-de-Thomières @@ -7768,82 +7629,100 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1979-06-01,COM,57150,0,CONDE NORTHEN,Condé-Northen,Condé-Northen,COM,57150,0,CONDE NORTHEN,Condé-Northen,Condé-Northen 33,1979-06-01,COM,57420,0,LOUTREMANGE,Loutremange,Loutremange,COM,57150,0,CONDE NORTHEN,Condé-Northen,Condé-Northen 33,1979-06-01,COM,57420,0,LOUTREMANGE,Loutremange,Loutremange,COMA,57420,0,LOUTREMANGE,Loutremange,Loutremange -21,1979-05-31,COM,85003,1,AIZENAY,Aizenay,Aizenay,COM,85055,3,CHAPELLE PALLUAU,Chapelle-Palluau,La Chapelle-Palluau 21,1979-05-31,COM,85003,1,AIZENAY,Aizenay,Aizenay,COM,85003,1,AIZENAY,Aizenay,Aizenay +21,1979-05-31,COM,85003,1,AIZENAY,Aizenay,Aizenay,COM,85055,3,CHAPELLE PALLUAU,Chapelle-Palluau,La Chapelle-Palluau +34,1979-05-31,COMA,85055,3,CHAPELLE PALLUAU,Chapelle-Palluau,La Chapelle-Palluau,COM,85003,1,AIZENAY,Aizenay,Aizenay 21,1979-05-31,COMA,85055,3,CHAPELLE PALLUAU,Chapelle-Palluau,La Chapelle-Palluau,COM,85055,3,CHAPELLE PALLUAU,Chapelle-Palluau,La Chapelle-Palluau 21,1979-04-16,COMA,47033,0,BOUDY DE BEAUREGARD,Boudy-de-Beauregard,Boudy-de-Beauregard,COM,47033,0,BOUDY DE BEAUREGARD,Boudy-de-Beauregard,Boudy-de-Beauregard -21,1979-04-16,COM,47048,0,CANCON,Cancon,Cancon,COM,47048,0,CANCON,Cancon,Cancon +34,1979-04-16,COMA,47033,0,BOUDY DE BEAUREGARD,Boudy-de-Beauregard,Boudy-de-Beauregard,COM,47048,0,CANCON,Cancon,Cancon +34,1979-04-16,COMA,47033,0,BOUDY DE BEAUREGARD,Boudy-de-Beauregard,Boudy-de-Beauregard,COM,47259,0,SAINT MAURICE DE LESTAPEL,Saint-Maurice-de-Lestapel,Saint-Maurice-de-Lestapel 21,1979-04-16,COM,47048,0,CANCON,Cancon,Cancon,COM,47033,0,BOUDY DE BEAUREGARD,Boudy-de-Beauregard,Boudy-de-Beauregard +21,1979-04-16,COM,47048,0,CANCON,Cancon,Cancon,COM,47048,0,CANCON,Cancon,Cancon 21,1979-04-16,COM,47048,0,CANCON,Cancon,Cancon,COM,47259,0,SAINT MAURICE DE LESTAPEL,Saint-Maurice-de-Lestapel,Saint-Maurice-de-Lestapel +34,1979-04-16,COMA,47259,0,SAINT MAURICE DE LESTAPEL,Saint-Maurice-de-Lestapel,Saint-Maurice-de-Lestapel,COM,47033,0,BOUDY DE BEAUREGARD,Boudy-de-Beauregard,Boudy-de-Beauregard +34,1979-04-16,COMA,47259,0,SAINT MAURICE DE LESTAPEL,Saint-Maurice-de-Lestapel,Saint-Maurice-de-Lestapel,COM,47048,0,CANCON,Cancon,Cancon 21,1979-04-16,COMA,47259,0,SAINT MAURICE DE LESTAPEL,Saint-Maurice-de-Lestapel,Saint-Maurice-de-Lestapel,COM,47259,0,SAINT MAURICE DE LESTAPEL,Saint-Maurice-de-Lestapel,Saint-Maurice-de-Lestapel 10,1979-03-09,COM,33046,0,BERNOS,Bernos,Bernos,COM,33046,0,BERNOS BEAULAC,Bernos-Beaulac,Bernos-Beaulac 10,1979-03-09,COM,71444,0,SAINT LOUP DE VARENNE,Saint-Loup-de-Varenne,Saint-Loup-de-Varenne,COM,71444,0,SAINT LOUP DE VARENNES,Saint-Loup-de-Varennes,Saint-Loup-de-Varennes 21,1979-03-01,COMA,71056,0,BRANGES,Branges,Branges,COM,71056,0,BRANGES,Branges,Branges -21,1979-03-01,COMA,71114,0,CHATEAURENAUD,Châteaurenaud,Châteaurenaud,COMA,71114,0,CHATEAURENAUD,Châteaurenaud,Châteaurenaud +34,1979-03-01,COMA,71056,0,BRANGES,Branges,Branges,COM,71263,0,LOUHANS,Louhans,Louhans +34,1979-03-01,COMA,71056,0,BRANGES,Branges,Branges,COM,71528,0,SORNAY,Sornay,Sornay 21,1979-03-01,COM,71263,0,LOUHANS,Louhans,Louhans,COM,71056,0,BRANGES,Branges,Branges 21,1979-03-01,COM,71263,0,LOUHANS,Louhans,Louhans,COM,71263,0,LOUHANS,Louhans,Louhans 21,1979-03-01,COM,71263,0,LOUHANS,Louhans,Louhans,COM,71528,0,SORNAY,Sornay,Sornay -21,1979-03-01,COM,71263,0,LOUHANS,Louhans,Louhans,COMA,71114,0,CHATEAURENAUD,Châteaurenaud,Châteaurenaud +34,1979-03-01,COMA,71528,0,SORNAY,Sornay,Sornay,COM,71056,0,BRANGES,Branges,Branges +34,1979-03-01,COMA,71528,0,SORNAY,Sornay,Sornay,COM,71263,0,LOUHANS,Louhans,Louhans 21,1979-03-01,COMA,71528,0,SORNAY,Sornay,Sornay,COM,71528,0,SORNAY,Sornay,Sornay -34,1979-03-01,COMA,78187,0,CRACHES,Craches,Craches,COM,78506,0,PRUNAY EN YVELINES,Prunay-en-Yvelines,Prunay-en-Yvelines -34,1979-03-01,COM,78506,0,PRUNAY SOUS ABLIS,Prunay-sous-Ablis,Prunay-sous-Ablis,COM,78506,0,PRUNAY EN YVELINES,Prunay-en-Yvelines,Prunay-en-Yvelines -21,1979-02-01,COMA,52154,0,CRENAY,Crenay,Crenay,COMA,52154,0,CRENAY,Crenay,Crenay +34,1979-03-01,COMA,78187,0,CRACHES,Craches,Craches,COM,78506,0,PRUNAY SOUS ABLIS,Prunay-sous-Ablis,Prunay-sous-Ablis +10,1979-03-01,COM,78506,0,PRUNAY SOUS ABLIS,Prunay-sous-Ablis,Prunay-sous-Ablis,COM,78506,0,PRUNAY EN YVELINES,Prunay-en-Yvelines,Prunay-en-Yvelines 21,1979-02-01,COM,52205,0,FOULAIN,Foulain,Foulain,COM,52205,0,FOULAIN,Foulain,Foulain 21,1979-02-01,COM,52205,0,FOULAIN,Foulain,Foulain,COM,52297,0,LUZY SUR MARNE,Luzy-sur-Marne,Luzy-sur-Marne -21,1979-02-01,COM,52205,0,FOULAIN,Foulain,Foulain,COMA,52154,0,CRENAY,Crenay,Crenay +34,1979-02-01,COMA,52297,0,LUZY SUR MARNE,Luzy-sur-Marne,Luzy-sur-Marne,COM,52205,0,FOULAIN,Foulain,Foulain 21,1979-02-01,COMA,52297,0,LUZY SUR MARNE,Luzy-sur-Marne,Luzy-sur-Marne,COM,52297,0,LUZY SUR MARNE,Luzy-sur-Marne,Luzy-sur-Marne -31,1979-01-01,COM,02559,0,NOUVION ET CATILLON,Nouvion-et-Catillon,Nouvion-et-Catillon,COM,02559,0,NOUVION ET CATILLON,Nouvion-et-Catillon,Nouvion-et-Catillon -31,1979-01-01,COM,02611,0,PONT A BUCY,Pont-à-Bucy,Pont-à-Bucy,COM,02559,0,NOUVION ET CATILLON,Nouvion-et-Catillon,Nouvion-et-Catillon -21,1979-01-01,COM,25015,1,AMANCEY,Amancey,Amancey,COM,25017,1,AMONDANS,Amondans,Amondans -21,1979-01-01,COM,25015,1,AMANCEY,Amancey,Amancey,COMA,25236,0,FERTANS,Fertans,Fertans -21,1979-01-01,COM,25015,1,AMANCEY,Amancey,Amancey,COMA,25359,0,MALANS,Malans,Malans +31,1979-01-01,COM,2559,0,NOUVION ET CATILLON,Nouvion-et-Catillon,Nouvion-et-Catillon,COM,2559,0,NOUVION ET CATILLON,Nouvion-et-Catillon,Nouvion-et-Catillon +31,1979-01-01,COM,2611,0,PONT A BUCY,Pont-à-Bucy,Pont-à-Bucy,COM,2559,0,NOUVION ET CATILLON,Nouvion-et-Catillon,Nouvion-et-Catillon 21,1979-01-01,COM,25015,1,AMANCEY,Amancey,Amancey,COM,25015,1,AMANCEY,Amancey,Amancey -21,1979-01-01,COM,25015,1,AMANCEY,Amancey,Amancey,COMA,25155,0,CLERON,Cléron,Cléron +21,1979-01-01,COM,25015,1,AMANCEY,Amancey,Amancey,COM,25017,1,AMONDANS,Amondans,Amondans +34,1979-01-01,COMA,25017,1,AMONDANS,Amondans,Amondans,COM,25015,1,AMANCEY,Amancey,Amancey 21,1979-01-01,COMA,25017,1,AMONDANS,Amondans,Amondans,COM,25017,1,AMONDANS,Amondans,Amondans -21,1979-01-01,COMA,25155,0,CLERON,Cléron,Cléron,COMA,25155,0,CLERON,Cléron,Cléron -21,1979-01-01,COMA,25236,0,FERTANS,Fertans,Fertans,COMA,25236,0,FERTANS,Fertans,Fertans -21,1979-01-01,COMA,25359,0,MALANS,Malans,Malans,COMA,25359,0,MALANS,Malans,Malans 21,1979-01-01,COM,50167,0,DRAGEY TOMBELAINE,Dragey-Tombelaine,Dragey-Tombelaine,COM,50167,0,DRAGEY,Dragey,Dragey -21,1979-01-01,COM,50167,0,DRAGEY TOMBELAINE,Dragey-Tombelaine,Dragey-Tombelaine,COMA,50439,0,RONTHON,Ronthon,Ronthon -21,1979-01-01,COM,50167,0,DRAGEY TOMBELAINE,Dragey-Tombelaine,Dragey-Tombelaine,COM,50496,0,SAINT JEAN LE THOMAS,Saint-Jean-le-Thomas,Saint-Jean-le-Thomas 21,1979-01-01,COM,50167,0,DRAGEY TOMBELAINE,Dragey-Tombelaine,Dragey-Tombelaine,COM,50199,0,GENETS,Genêts,Genêts +21,1979-01-01,COM,50167,0,DRAGEY TOMBELAINE,Dragey-Tombelaine,Dragey-Tombelaine,COM,50496,0,SAINT JEAN LE THOMAS,Saint-Jean-le-Thomas,Saint-Jean-le-Thomas +34,1979-01-01,COMA,50199,0,GENETS,Genêts,Genêts,COM,50167,0,DRAGEY,Dragey,Dragey 21,1979-01-01,COMA,50199,0,GENETS,Genêts,Genêts,COM,50199,0,GENETS,Genêts,Genêts -21,1979-01-01,COMA,50439,0,RONTHON,Ronthon,Ronthon,COMA,50439,0,RONTHON,Ronthon,Ronthon +34,1979-01-01,COMA,50199,0,GENETS,Genêts,Genêts,COM,50496,0,SAINT JEAN LE THOMAS,Saint-Jean-le-Thomas,Saint-Jean-le-Thomas +34,1979-01-01,COMA,50496,0,SAINT JEAN LE THOMAS,Saint-Jean-le-Thomas,Saint-Jean-le-Thomas,COM,50167,0,DRAGEY,Dragey,Dragey +34,1979-01-01,COMA,50496,0,SAINT JEAN LE THOMAS,Saint-Jean-le-Thomas,Saint-Jean-le-Thomas,COM,50199,0,GENETS,Genêts,Genêts 21,1979-01-01,COMA,50496,0,SAINT JEAN LE THOMAS,Saint-Jean-le-Thomas,Saint-Jean-le-Thomas,COM,50496,0,SAINT JEAN LE THOMAS,Saint-Jean-le-Thomas,Saint-Jean-le-Thomas 33,1979-01-01,COM,65008,1,ANERAN CAMORS,Anéran-Camors,Anéran-Camors,COMA,65008,1,ANERAN CAMORS,Anéran-Camors,Anéran-Camors 33,1979-01-01,COM,65008,1,ANERAN CAMORS,Anéran-Camors,Anéran-Camors,COM,65141,0,CAZAUX FRECHET ANERAN CAMORS,Cazaux-Fréchet-Anéran-Camors,Cazaux-Fréchet-Anéran-Camors 33,1979-01-01,COM,65141,0,CAZAUX FRECHET,Cazaux-Fréchet,Cazaux-Fréchet,COM,65141,0,CAZAUX FRECHET ANERAN CAMORS,Cazaux-Fréchet-Anéran-Camors,Cazaux-Fréchet-Anéran-Camors 21,1979-01-01,COMA,76386,0,LIMPIVILLE,Limpiville,Limpiville,COM,76386,0,LIMPIVILLE,Limpiville,Limpiville +34,1979-01-01,COMA,76386,0,LIMPIVILLE,Limpiville,Limpiville,COM,76680,0,SORQUAINVILLE,Sorquainville,Sorquainville +34,1979-01-01,COMA,76386,0,LIMPIVILLE,Limpiville,Limpiville,COM,76689,0,THIETREVILLE,Thiétreville,Thiétreville +34,1979-01-01,COMA,76386,0,LIMPIVILLE,Limpiville,Limpiville,COM,76755,1,YPREVILLE BIVILLE,Ypreville-Biville,Ypreville-Biville +34,1979-01-01,COMA,76680,0,SORQUAINVILLE,Sorquainville,Sorquainville,COM,76386,0,LIMPIVILLE,Limpiville,Limpiville 21,1979-01-01,COMA,76680,0,SORQUAINVILLE,Sorquainville,Sorquainville,COM,76680,0,SORQUAINVILLE,Sorquainville,Sorquainville +34,1979-01-01,COMA,76680,0,SORQUAINVILLE,Sorquainville,Sorquainville,COM,76689,0,THIETREVILLE,Thiétreville,Thiétreville +34,1979-01-01,COMA,76680,0,SORQUAINVILLE,Sorquainville,Sorquainville,COM,76755,1,YPREVILLE BIVILLE,Ypreville-Biville,Ypreville-Biville +34,1979-01-01,COMA,76689,0,THIETREVILLE,Thiétreville,Thiétreville,COM,76386,0,LIMPIVILLE,Limpiville,Limpiville +34,1979-01-01,COMA,76689,0,THIETREVILLE,Thiétreville,Thiétreville,COM,76680,0,SORQUAINVILLE,Sorquainville,Sorquainville 21,1979-01-01,COMA,76689,0,THIETREVILLE,Thiétreville,Thiétreville,COM,76689,0,THIETREVILLE,Thiétreville,Thiétreville -21,1979-01-01,COM,76755,0,SAINT MICHEL EN CAUX,Saint-Michel-en-Caux,Saint-Michel-en-Caux,COM,76755,1,YPREVILLE BIVILLE,Ypreville-Biville,Ypreville-Biville +34,1979-01-01,COMA,76689,0,THIETREVILLE,Thiétreville,Thiétreville,COM,76755,1,YPREVILLE BIVILLE,Ypreville-Biville,Ypreville-Biville 21,1979-01-01,COM,76755,0,SAINT MICHEL EN CAUX,Saint-Michel-en-Caux,Saint-Michel-en-Caux,COM,76386,0,LIMPIVILLE,Limpiville,Limpiville 21,1979-01-01,COM,76755,0,SAINT MICHEL EN CAUX,Saint-Michel-en-Caux,Saint-Michel-en-Caux,COM,76680,0,SORQUAINVILLE,Sorquainville,Sorquainville 21,1979-01-01,COM,76755,0,SAINT MICHEL EN CAUX,Saint-Michel-en-Caux,Saint-Michel-en-Caux,COM,76689,0,THIETREVILLE,Thiétreville,Thiétreville +21,1979-01-01,COM,76755,0,SAINT MICHEL EN CAUX,Saint-Michel-en-Caux,Saint-Michel-en-Caux,COM,76755,1,YPREVILLE BIVILLE,Ypreville-Biville,Ypreville-Biville +21,1979-01-01,COM,89010,1,ANNAY SUR SEREIN,Annay-sur-Serein,Annay-sur-Serein,COM,89010,1,ANNAY SUR SEREIN,Annay-sur-Serein,Annay-sur-Serein 21,1979-01-01,COM,89010,1,ANNAY SUR SEREIN,Annay-sur-Serein,Annay-sur-Serein,COM,89259,0,MOLAY,Môlay,Môlay 21,1979-01-01,COM,89010,1,ANNAY SUR SEREIN,Annay-sur-Serein,Annay-sur-Serein,COM,89371,0,SAINTE VERTU,Sainte-Vertu,Sainte-Vertu -21,1979-01-01,COM,89010,1,ANNAY SUR SEREIN,Annay-sur-Serein,Annay-sur-Serein,COM,89010,1,ANNAY SUR SEREIN,Annay-sur-Serein,Annay-sur-Serein -21,1979-01-01,COM,89069,0,CHAILLEY TURNY,Chailley-Turny,Chailley-Turny,COM,89425,0,TURNY,Turny,Turny 21,1979-01-01,COM,89069,0,CHAILLEY TURNY,Chailley-Turny,Chailley-Turny,COM,89069,0,CHAILLEY,Chailley,Chailley +21,1979-01-01,COM,89069,0,CHAILLEY TURNY,Chailley-Turny,Chailley-Turny,COM,89425,0,TURNY,Turny,Turny 21,1979-01-01,COM,89118,0,COULANGES LA VINEUSE,Coulanges-la-Vineuse,Coulanges-la-Vineuse,COM,89118,0,COULANGES LA VINEUSE,Coulanges-la-Vineuse,Coulanges-la-Vineuse 21,1979-01-01,COM,89118,0,COULANGES LA VINEUSE,Coulanges-la-Vineuse,Coulanges-la-Vineuse,COM,89155,1,ESCOLIVES SAINTE CAMILLE,Escolives-Sainte-Camille,Escolives-Sainte-Camille +34,1979-01-01,COMA,89155,1,ESCOLIVES SAINTE CAMILLE,Escolives-Sainte-Camille,Escolives-Sainte-Camille,COM,89118,0,COULANGES LA VINEUSE,Coulanges-la-Vineuse,Coulanges-la-Vineuse 21,1979-01-01,COMA,89155,1,ESCOLIVES SAINTE CAMILLE,Escolives-Sainte-Camille,Escolives-Sainte-Camille,COM,89155,1,ESCOLIVES SAINTE CAMILLE,Escolives-Sainte-Camille,Escolives-Sainte-Camille +34,1979-01-01,COMA,89259,0,MOLAY,Môlay,Môlay,COM,89010,1,ANNAY SUR SEREIN,Annay-sur-Serein,Annay-sur-Serein 21,1979-01-01,COMA,89259,0,MOLAY,Môlay,Môlay,COM,89259,0,MOLAY,Môlay,Môlay -21,1979-01-01,COM,89275,0,NEUILLY,Neuilly,Neuilly,COM,89457,0,VILLEMER,Villemer,Villemer +34,1979-01-01,COMA,89259,0,MOLAY,Môlay,Môlay,COM,89371,0,SAINTE VERTU,Sainte-Vertu,Sainte-Vertu 21,1979-01-01,COM,89275,0,NEUILLY,Neuilly,Neuilly,COM,89275,0,NEUILLY,Neuilly,Neuilly +21,1979-01-01,COM,89275,0,NEUILLY,Neuilly,Neuilly,COM,89457,0,VILLEMER,Villemer,Villemer +34,1979-01-01,COMA,89371,0,SAINTE VERTU,Sainte-Vertu,Sainte-Vertu,COM,89010,1,ANNAY SUR SEREIN,Annay-sur-Serein,Annay-sur-Serein +34,1979-01-01,COMA,89371,0,SAINTE VERTU,Sainte-Vertu,Sainte-Vertu,COM,89259,0,MOLAY,Môlay,Môlay 21,1979-01-01,COMA,89371,0,SAINTE VERTU,Sainte-Vertu,Sainte-Vertu,COM,89371,0,SAINTE VERTU,Sainte-Vertu,Sainte-Vertu +34,1979-01-01,COMA,89425,0,TURNY,Turny,Turny,COM,89069,0,CHAILLEY,Chailley,Chailley 21,1979-01-01,COMA,89425,0,TURNY,Turny,Turny,COM,89425,0,TURNY,Turny,Turny +34,1979-01-01,COMA,89457,0,VILLEMER,Villemer,Villemer,COM,89275,0,NEUILLY,Neuilly,Neuilly 21,1979-01-01,COMA,89457,0,VILLEMER,Villemer,Villemer,COM,89457,0,VILLEMER,Villemer,Villemer 10,1978-12-21,COM,33222,3,LANDE DE LIBOURNE,Lande-de-Libourne,La Lande-de-Libourne,COM,33222,0,LALANDE DE POMEROL,Lalande-de-Pomerol,Lalande-de-Pomerol 21,1978-12-07,COMA,12003,4,ALBRES,Albres,Les Albres,COM,12003,4,ALBRES,Albres,Les Albres +34,1978-12-07,COMA,12003,4,ALBRES,Albres,Les Albres,COM,12305,0,VIVIEZ,Viviez,Viviez 21,1978-12-07,COM,12305,0,VIVIEZ LES ALBRES,Viviez-les-Albres,Viviez-les-Albres,COM,12003,4,ALBRES,Albres,Les Albres 21,1978-12-07,COM,12305,0,VIVIEZ LES ALBRES,Viviez-les-Albres,Viviez-les-Albres,COM,12305,0,VIVIEZ,Viviez,Viviez 10,1978-08-25,COM,33099,0,CARIGNAN,Carignan,Carignan,COM,33099,0,CARIGNAN DE BORDEAUX,Carignan-de-Bordeaux,Carignan-de-Bordeaux 10,1978-08-25,COM,42191,0,ROIZEY,Roizey,Roizey,COM,42191,0,ROISEY,Roisey,Roisey 10,1978-08-25,COM,64337,0,LESPIELLE GERMENAUD LANNEGRASSE,Lespielle-Germenaud-Lannegrasse,Lespielle-Germenaud-Lannegrasse,COM,64337,0,LESPIELLE,Lespielle,Lespielle -10,1978-08-25,COM,86120,0,LATHUS,Lathus,Lathus,COMA,86240,0,SAINT REMY EN MONTMORILLON,Saint-Rémy-en-Montmorillon,Saint-Rémy-en-Montmorillon 10,1978-08-25,COM,86120,0,LATHUS,Lathus,Lathus,COM,86120,0,LATHUS SAINT REMY,Lathus-Saint-Rémy,Lathus-Saint-Rémy -10,1978-08-25,COMA,86240,0,SAINT REMY EN MONTMORILLON,Saint-Rémy-en-Montmorillon,Saint-Rémy-en-Montmorillon,COM,86120,0,LATHUS SAINT REMY,Lathus-Saint-Rémy,Lathus-Saint-Rémy 10,1978-08-25,COM,89324,0,ROGNY,Rogny,Rogny,COM,89324,0,ROGNY LES SEPT ECLUSES,Rogny-les-Sept-Écluses,Rogny-les-Sept-Écluses 34,1978-07-01,COMA,27080,0,BOISSY SUR DAMVILLE,Boissy-sur-Damville,Boissy-sur-Damville,COM,27416,0,BUIS SUR DAMVILLE,Buis-sur-Damville,Buis-sur-Damville 34,1978-07-01,COMA,27186,0,CRETON,Créton,Créton,COM,27416,0,BUIS SUR DAMVILLE,Buis-sur-Damville,Buis-sur-Damville @@ -7851,60 +7730,55 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 34,1978-03-01,COMA,86033,2,BOUCHET,Bouchet,Le Bouchet,COM,86079,3,ROCHE RIGAULT,Roche-Rigault,La Roche-Rigault 34,1978-03-01,COM,86079,3,ROCHE RIGAULT,Roche-Rigault,La Roche-Rigault,COM,86079,3,ROCHE RIGAULT,Roche-Rigault,La Roche-Rigault 21,1978-01-20,COMA,64179,0,CASTETNER,Castetner,Castetner,COM,64179,0,CASTETNER,Castetner,Castetner +34,1978-01-20,COMA,64179,0,CASTETNER,Castetner,Castetner,COM,64349,0,LOUBIENG,Loubieng,Loubieng +34,1978-01-20,COMA,64179,0,CASTETNER,Castetner,Castetner,COM,64367,0,MASLACQ,Maslacq,Maslacq +34,1978-01-20,COMA,64349,0,LOUBIENG,Loubieng,Loubieng,COM,64179,0,CASTETNER,Castetner,Castetner 21,1978-01-20,COMA,64349,0,LOUBIENG,Loubieng,Loubieng,COM,64349,0,LOUBIENG,Loubieng,Loubieng -21,1978-01-20,COM,64367,0,MASLACQ,Maslacq,Maslacq,COM,64349,0,LOUBIENG,Loubieng,Loubieng +34,1978-01-20,COMA,64349,0,LOUBIENG,Loubieng,Loubieng,COM,64367,0,MASLACQ,Maslacq,Maslacq 21,1978-01-20,COM,64367,0,MASLACQ,Maslacq,Maslacq,COM,64179,0,CASTETNER,Castetner,Castetner +21,1978-01-20,COM,64367,0,MASLACQ,Maslacq,Maslacq,COM,64349,0,LOUBIENG,Loubieng,Loubieng 21,1978-01-20,COM,64367,0,MASLACQ,Maslacq,Maslacq,COM,64367,0,MASLACQ,Maslacq,Maslacq -21,1978-01-01,COMA,02166,0,CHARTEVES,Chartèves,Chartèves,COM,02166,0,CHARTEVES,Chartèves,Chartèves -21,1978-01-01,COM,02524,0,CHARMONT SUR MARNE,Charmont-sur-Marne,Charmont-sur-Marne,COM,02524,0,CHARMONT SUR MARNE,Charmont-sur-Marne,Charmont-sur-Marne -21,1978-01-01,COM,02524,0,CHARMONT SUR MARNE,Charmont-sur-Marne,Charmont-sur-Marne,COM,02166,0,CHARTEVES,Chartèves,Chartèves -33,1978-01-01,COM,04029,0,BLEGIERS,Blégiers,Blégiers,COM,04155,0,PRADS HAUTE BLEONE,Prads-Haute-Bléone,Prads-Haute-Bléone -33,1978-01-01,COM,04029,0,BLEGIERS,Blégiers,Blégiers,COMA,04029,0,BLEGIERS,Blégiers,Blégiers -33,1978-01-01,COMA,04114,0,MARIAUD,Mariaud,Mariaud,COM,04155,0,PRADS HAUTE BLEONE,Prads-Haute-Bléone,Prads-Haute-Bléone -33,1978-01-01,COMA,04114,0,MARIAUD,Mariaud,Mariaud,COMA,04114,0,MARIAUD,Mariaud,Mariaud -33,1978-01-01,COM,04155,0,PRADS,Prads,Prads,COM,04155,0,PRADS HAUTE BLEONE,Prads-Haute-Bléone,Prads-Haute-Bléone +21,1978-01-01,COMA,2166,0,CHARTEVES,Chartèves,Chartèves,COM,2166,0,CHARTEVES,Chartèves,Chartèves +34,1978-01-01,COMA,2166,0,CHARTEVES,Chartèves,Chartèves,COM,2524,0,CHARMONT SUR MARNE,Charmont-sur-Marne,Charmont-sur-Marne +21,1978-01-01,COM,2524,0,CHARMONT SUR MARNE,Charmont-sur-Marne,Charmont-sur-Marne,COM,2166,0,CHARTEVES,Chartèves,Chartèves +21,1978-01-01,COM,2524,0,CHARMONT SUR MARNE,Charmont-sur-Marne,Charmont-sur-Marne,COM,2524,0,CHARMONT SUR MARNE,Charmont-sur-Marne,Charmont-sur-Marne +33,1978-01-01,COM,4029,0,BLEGIERS,Blégiers,Blégiers,COMA,4029,0,BLEGIERS,Blégiers,Blégiers +33,1978-01-01,COM,4029,0,BLEGIERS,Blégiers,Blégiers,COM,4155,0,PRADS HAUTE BLEONE,Prads-Haute-Bléone,Prads-Haute-Bléone +33,1978-01-01,COM,4155,0,PRADS,Prads,Prads,COM,4155,0,PRADS HAUTE BLEONE,Prads-Haute-Bléone,Prads-Haute-Bléone 34,1978-01-01,COMA,14351,3,LANDE VAUMONT,Lande-Vaumont,La Lande-Vaumont,COM,14584,0,SAINT GERMAIN DE TALLEVENDE LA LANDE VAUMONT,Saint-Germain-de-Tallevende-la-Lande-Vaumont,Saint-Germain-de-Tallevende-la-Lande-Vaumont 34,1978-01-01,COM,14584,0,SAINT GERMAIN DE TALLEVENDE LA LANDE VAUMONT,Saint-Germain-de-Tallevende-la-Lande-Vaumont,Saint-Germain-de-Tallevende-la-Lande-Vaumont,COM,14584,0,SAINT GERMAIN DE TALLEVENDE LA LANDE VAUMONT,Saint-Germain-de-Tallevende-la-Lande-Vaumont,Saint-Germain-de-Tallevende-la-Lande-Vaumont -34,1978-01-01,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy,COM,39209,0,VAL D EPY,Val d'Épy,Val d'Épy -34,1978-01-01,COMA,39433,0,POISOUX,Poisoux,Poisoux,COM,39209,0,VAL D EPY,Val d'Épy,Val d'Épy -34,1978-01-01,COM,45065,0,CESARVILLE,Césarville,Césarville,COM,45065,0,CESARVILLE DOSSAINVILLE,Césarville-Dossainville,Césarville-Dossainville -34,1978-01-01,COMA,45128,0,DOSSAINVILLE,Dossainville,Dossainville,COM,45065,0,CESARVILLE DOSSAINVILLE,Césarville-Dossainville,Césarville-Dossainville +10,1978-01-01,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy,COM,39209,0,VAL D EPY,Val d'Épy,Val d'Épy +34,1978-01-01,COMA,39433,0,POISOUX,Poisoux,Poisoux,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy +10,1978-01-01,COM,45065,0,CESARVILLE,Césarville,Césarville,COM,45065,0,CESARVILLE DOSSAINVILLE,Césarville-Dossainville,Césarville-Dossainville +34,1978-01-01,COMA,45128,0,DOSSAINVILLE,Dossainville,Dossainville,COM,45065,0,CESARVILLE,Césarville,Césarville 21,1978-01-01,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville -21,1978-01-01,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville,COMA,50526,0,SAINT MICHEL DES LOUPS,Saint-Michel-des-Loups,Saint-Michel-des-Loups 21,1978-01-01,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville,COM,50532,0,SAINT PAIR SUR MER,Saint-Pair-sur-Mer,Saint-Pair-sur-Mer -21,1978-01-01,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville,COMA,50102,0,CAROLLES,Carolles,Carolles -21,1978-01-01,COMA,50102,0,CAROLLES,Carolles,Carolles,COMA,50102,0,CAROLLES,Carolles,Carolles -21,1978-01-01,COMA,50526,0,SAINT MICHEL DES LOUPS,Saint-Michel-des-Loups,Saint-Michel-des-Loups,COMA,50526,0,SAINT MICHEL DES LOUPS,Saint-Michel-des-Loups,Saint-Michel-des-Loups +34,1978-01-01,COMA,50532,0,SAINT PAIR SUR MER,Saint-Pair-sur-Mer,Saint-Pair-sur-Mer,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville 21,1978-01-01,COMA,50532,0,SAINT PAIR SUR MER,Saint-Pair-sur-Mer,Saint-Pair-sur-Mer,COM,50532,0,SAINT PAIR SUR MER,Saint-Pair-sur-Mer,Saint-Pair-sur-Mer 34,1978-01-01,COM,77026,0,BEAUCHERY SAINT MARTIN,Beauchery-Saint-Martin,Beauchery-Saint-Martin,COM,77026,0,BEAUCHERY SAINT MARTIN,Beauchery-Saint-Martin,Beauchery-Saint-Martin 34,1978-01-01,COMA,77422,0,SAINT MARTIN CHENNETRON,Saint-Martin-Chennetron,Saint-Martin-Chennetron,COM,77026,0,BEAUCHERY SAINT MARTIN,Beauchery-Saint-Martin,Beauchery-Saint-Martin 21,1978-01-01,COMA,88048,0,BELLEFONTAINE,Bellefontaine,Bellefontaine,COM,88048,0,BELLEFONTAINE,Bellefontaine,Bellefontaine -21,1978-01-01,COMA,88217,0,GRANGES DE PLOMBIERES,Granges-de-Plombières,Granges-de-Plombières,COMA,88217,0,GRANGES DE PLOMBIERES,Granges-de-Plombières,Granges-de-Plombières +34,1978-01-01,COMA,88048,0,BELLEFONTAINE,Bellefontaine,Bellefontaine,COM,88351,0,PLOMBIERES LES BAINS,Plombières-les-Bains,Plombières-les-Bains 31,1978-01-01,COM,88227,1,HAGNEVILLE,Hagnéville,Hagnéville,COM,88227,1,HAGNEVILLE ET RONCOURT,Hagnéville-et-Roncourt,Hagnéville-et-Roncourt 21,1978-01-01,COM,88351,0,PLOMBIERES LES BAINS,Plombières-les-Bains,Plombières-les-Bains,COM,88048,0,BELLEFONTAINE,Bellefontaine,Bellefontaine -21,1978-01-01,COM,88351,0,PLOMBIERES LES BAINS,Plombières-les-Bains,Plombières-les-Bains,COMA,88405,0,RUAUX,Ruaux,Ruaux 21,1978-01-01,COM,88351,0,PLOMBIERES LES BAINS,Plombières-les-Bains,Plombières-les-Bains,COM,88351,0,PLOMBIERES LES BAINS,Plombières-les-Bains,Plombières-les-Bains -21,1978-01-01,COM,88351,0,PLOMBIERES LES BAINS,Plombières-les-Bains,Plombières-les-Bains,COMA,88217,0,GRANGES DE PLOMBIERES,Granges-de-Plombières,Granges-de-Plombières 31,1978-01-01,COM,88396,0,RONCOURT,Roncourt,Roncourt,COM,88227,1,HAGNEVILLE ET RONCOURT,Hagnéville-et-Roncourt,Hagnéville-et-Roncourt -21,1978-01-01,COMA,88405,0,RUAUX,Ruaux,Ruaux,COMA,88405,0,RUAUX,Ruaux,Ruaux -21,1978-01-01,COM,90026,0,CHEVREMONT FONTENELLE,Chèvremont-Fontenelle,Chèvremont-Fontenelle,COM,90048,0,FONTENELLE,Fontenelle,Fontenelle 21,1978-01-01,COM,90026,0,CHEVREMONT FONTENELLE,Chèvremont-Fontenelle,Chèvremont-Fontenelle,COM,90026,0,CHEVREMONT,Chèvremont,Chèvremont +21,1978-01-01,COM,90026,0,CHEVREMONT FONTENELLE,Chèvremont-Fontenelle,Chèvremont-Fontenelle,COM,90048,0,FONTENELLE,Fontenelle,Fontenelle +34,1978-01-01,COMA,90048,0,FONTENELLE,Fontenelle,Fontenelle,COM,90026,0,CHEVREMONT,Chèvremont,Chèvremont 21,1978-01-01,COMA,90048,0,FONTENELLE,Fontenelle,Fontenelle,COM,90048,0,FONTENELLE,Fontenelle,Fontenelle 21,1977-11-15,COMA,64031,1,ARANCOU,Arancou,Arancou,COM,64031,1,ARANCOU,Arancou,Arancou +34,1977-11-15,COMA,64031,1,ARANCOU,Arancou,Arancou,COM,64113,0,BERGOUEY VIELLENAVE,Bergouey-Viellenave,Bergouey-Viellenave 21,1977-11-15,COM,64113,0,BERGOUEY ARANCOU VIELLENAVE,Bergouey-Arancou-Viellenave,Bergouey-Arancou-Viellenave,COM,64031,1,ARANCOU,Arancou,Arancou -21,1977-11-15,COM,64113,0,BERGOUEY ARANCOU VIELLENAVE,Bergouey-Arancou-Viellenave,Bergouey-Arancou-Viellenave,COMA,64553,0,VIELLENAVE SUR BIDOUZE,Viellenave-sur-Bidouze,Viellenave-sur-Bidouze 21,1977-11-15,COM,64113,0,BERGOUEY ARANCOU VIELLENAVE,Bergouey-Arancou-Viellenave,Bergouey-Arancou-Viellenave,COM,64113,0,BERGOUEY VIELLENAVE,Bergouey-Viellenave,Bergouey-Viellenave -21,1977-11-15,COMA,64553,0,VIELLENAVE SUR BIDOUZE,Viellenave-sur-Bidouze,Viellenave-sur-Bidouze,COMA,64553,0,VIELLENAVE SUR BIDOUZE,Viellenave-sur-Bidouze,Viellenave-sur-Bidouze -34,1977-10-26,COMA,04089,0,FOURS,Fours,Fours,COM,04226,1,UVERNET FOURS,Uvernet-Fours,Uvernet-Fours -34,1977-10-26,COM,04226,1,UVERNET FOURS,Uvernet-Fours,Uvernet-Fours,COM,04226,1,UVERNET FOURS,Uvernet-Fours,Uvernet-Fours +34,1977-10-26,COMA,4089,0,FOURS,Fours,Fours,COM,4226,1,UVERNET FOURS,Uvernet-Fours,Uvernet-Fours +34,1977-10-26,COM,4226,1,UVERNET FOURS,Uvernet-Fours,Uvernet-Fours,COM,4226,1,UVERNET FOURS,Uvernet-Fours,Uvernet-Fours 10,1977-10-05,COM,10204,0,LONGEVILLE,Longeville,Longeville,COM,10204,0,LONGEVILLE SUR MOGNE,Longeville-sur-Mogne,Longeville-sur-Mogne 10,1977-10-05,COM,18208,0,SAINTE GEMME,Sainte-Gemme,Sainte-Gemme,COM,18208,0,SAINTE GEMME EN SANCERROIS,Sainte-Gemme-en-Sancerrois,Sainte-Gemme-en-Sancerrois 10,1977-10-05,COM,39372,0,MOURNANS,Mournans,Mournans,COM,39372,0,MOURNANS CHARBONNY,Mournans-Charbonny,Mournans-Charbonny 10,1977-10-05,COM,51325,0,LISSE,Lisse,Lisse,COM,51325,0,LISSE EN CHAMPAGNE,Lisse-en-Champagne,Lisse-en-Champagne 10,1977-10-05,COM,56024,0,BREHAN LOUDEAC,Bréhan-Loudéac,Bréhan-Loudéac,COM,56024,0,BREHAN,Bréhan,Bréhan 10,1977-10-05,COM,59136,2,CATEAU,Cateau,Le Cateau,COM,59136,2,CATEAU CAMBRESIS,Cateau-Cambrésis,Le Cateau-Cambrésis -10,1977-10-05,COMA,70033,1,AUBERTANS,Aubertans,Aubertans,COM,70059,0,BEAUMOTTE AUBERTANS,Beaumotte-Aubertans,Beaumotte-Aubertans -10,1977-10-05,COM,70059,0,BEAUMOTTE LES MONTBOZON ET AUBERTANS,Beaumotte-lès-Montbozon-et-Aubertans,Beaumotte-lès-Montbozon-et-Aubertans,COMA,70033,1,AUBERTANS,Aubertans,Aubertans 10,1977-10-05,COM,70059,0,BEAUMOTTE LES MONTBOZON ET AUBERTANS,Beaumotte-lès-Montbozon-et-Aubertans,Beaumotte-lès-Montbozon-et-Aubertans,COM,70059,0,BEAUMOTTE AUBERTANS,Beaumotte-Aubertans,Beaumotte-Aubertans 10,1977-10-05,COM,78261,0,GAILLON,Gaillon,Gaillon,COM,78261,0,GAILLON SUR MONTCIENT,Gaillon-sur-Montcient,Gaillon-sur-Montcient 34,1977-10-01,COM,10084,0,CHARMONT SOUS BARBUISE,Charmont-sous-Barbuise,Charmont-sous-Barbuise,COM,10084,0,CHARMONT SOUS BARBUISE,Charmont-sous-Barbuise,Charmont-sous-Barbuise @@ -7914,29 +7788,25 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 34,1977-07-01,COMA,49166,0,JUIGNE BENE,Juigné-Béné,Juigné-Béné,COM,49214,0,MONTREUIL JUIGNE,Montreuil-Juigné,Montreuil-Juigné 34,1977-07-01,COM,49214,0,MONTREUIL JUIGNE,Montreuil-Juigné,Montreuil-Juigné,COM,49214,0,MONTREUIL JUIGNE,Montreuil-Juigné,Montreuil-Juigné 21,1977-07-01,COMA,70025,1,ARBECEY,Arbecey,Arbecey,COM,70025,1,ARBECEY,Arbecey,Arbecey -21,1977-07-01,COM,70427,0,PURGEROT ARBECEY,Purgerot-Arbecey,Purgerot-Arbecey,COM,70427,0,PURGEROT,Purgerot,Purgerot +34,1977-07-01,COMA,70025,1,ARBECEY,Arbecey,Arbecey,COM,70427,0,PURGEROT,Purgerot,Purgerot 21,1977-07-01,COM,70427,0,PURGEROT ARBECEY,Purgerot-Arbecey,Purgerot-Arbecey,COM,70025,1,ARBECEY,Arbecey,Arbecey +21,1977-07-01,COM,70427,0,PURGEROT ARBECEY,Purgerot-Arbecey,Purgerot-Arbecey,COM,70427,0,PURGEROT,Purgerot,Purgerot 33,1977-04-24,COM,59298,1,HELLEMMES LILLE,Hellemmes-Lille,Hellemmes-Lille,COMA,59298,1,HELLEMMES LILLE,Hellemmes-Lille,Hellemmes-Lille 33,1977-04-24,COM,59298,1,HELLEMMES LILLE,Hellemmes-Lille,Hellemmes-Lille,COM,59350,0,LILLE,Lille,Lille 33,1977-04-24,COM,59350,0,LILLE,Lille,Lille,COM,59350,0,LILLE,Lille,Lille -34,1977-03-01,COM,04075,1,ENTREPIERRES,Entrepierres,Entrepierres,COM,04075,1,ENTREPIERRES,Entrepierres,Entrepierres -34,1977-03-01,COM,04075,1,ENTREPIERRES,Entrepierres,Entrepierres,COMA,04238,0,VILHOSC,Vilhosc,Vilhosc -34,1977-03-01,COMA,04196,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,COM,04075,1,ENTREPIERRES,Entrepierres,Entrepierres -34,1977-03-01,COMA,04238,0,VILHOSC,Vilhosc,Vilhosc,COMA,04238,0,VILHOSC,Vilhosc,Vilhosc -34,1977-03-01,COMA,04238,0,VILHOSC,Vilhosc,Vilhosc,COM,04075,1,ENTREPIERRES,Entrepierres,Entrepierres +34,1977-03-01,COM,4075,1,ENTREPIERRES,Entrepierres,Entrepierres,COM,4075,1,ENTREPIERRES,Entrepierres,Entrepierres +34,1977-03-01,COMA,4196,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,COM,4075,1,ENTREPIERRES,Entrepierres,Entrepierres 34,1977-03-01,COMA,39212,1,ESSAVILLY,Essavilly,Essavilly,COM,39331,0,MIGNOVILLARD,Mignovillard,Mignovillard 34,1977-03-01,COMA,39242,0,FROIDEFONTAINE,Froidefontaine,Froidefontaine,COM,39331,0,MIGNOVILLARD,Mignovillard,Mignovillard 34,1977-03-01,COM,39331,0,MIGNOVILLARD,Mignovillard,Mignovillard,COM,39331,0,MIGNOVILLARD,Mignovillard,Mignovillard -20,1977-02-19,COM,91122,0,BURES SUR YVETTE,Bures-sur-Yvette,Bures-sur-Yvette,COM,91692,4,ULIS,Ulis,Les Ulis 20,1977-02-19,COM,91122,0,BURES SUR YVETTE,Bures-sur-Yvette,Bures-sur-Yvette,COM,91122,0,BURES SUR YVETTE,Bures-sur-Yvette,Bures-sur-Yvette +20,1977-02-19,COM,91122,0,BURES SUR YVETTE,Bures-sur-Yvette,Bures-sur-Yvette,COM,91692,4,ULIS,Ulis,Les Ulis 20,1977-02-19,COM,91471,1,ORSAY,Orsay,Orsay,COM,91471,1,ORSAY,Orsay,Orsay 20,1977-02-19,COM,91471,1,ORSAY,Orsay,Orsay,COM,91692,4,ULIS,Ulis,Les Ulis 31,1977-02-15,COM,74246,0,SAINT MARTIN SUR ARVE,Saint-Martin-sur-Arve,Saint-Martin-sur-Arve,COM,74256,0,SALLANCHES,Sallanches,Sallanches 31,1977-02-15,COM,74256,0,SALLANCHES,Sallanches,Sallanches,COM,74256,0,SALLANCHES,Sallanches,Sallanches 34,1977-02-01,COMA,77064,3,CELLE SUR SEINE,Celle-sur-Seine,La Celle-sur-Seine,COM,77494,0,VERNOU LA CELLE SUR SEINE,Vernou-la-Celle-sur-Seine,Vernou-la-Celle-sur-Seine 34,1977-02-01,COM,77494,0,VERNOU LA CELLE SUR SEINE,Vernou-la-Celle-sur-Seine,Vernou-la-Celle-sur-Seine,COM,77494,0,VERNOU LA CELLE SUR SEINE,Vernou-la-Celle-sur-Seine,Vernou-la-Celle-sur-Seine -33,1977-01-01,COMA,19197,0,SAINT DEZERY,Saint-Dézery,Saint-Dézery,COMA,19197,0,SAINT DEZERY,Saint-Dézery,Saint-Dézery -33,1977-01-01,COMA,19197,0,SAINT DEZERY,Saint-Dézery,Saint-Dézery,COM,19275,1,USSEL,Ussel,Ussel 33,1977-01-01,COM,19267,3,TOURETTE,Tourette,La Tourette,COMA,19267,3,TOURETTE,Tourette,La Tourette 33,1977-01-01,COM,19267,3,TOURETTE,Tourette,La Tourette,COM,19275,1,USSEL,Ussel,Ussel 33,1977-01-01,COM,19275,1,USSEL,Ussel,Ussel,COM,19275,1,USSEL,Ussel,Ussel @@ -7944,43 +7814,50 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1977-01-01,COM,25577,0,VAIVRE,Vaivre,Vaivre,COM,25485,0,REMONDANS VAIVRE,Rémondans-Vaivre,Rémondans-Vaivre 34,1977-01-01,COM,28048,3,BOURDINIERE SAINT LOUP,Bourdinière-Saint-Loup,La Bourdinière-Saint-Loup,COM,28048,3,BOURDINIERE SAINT LOUP,Bourdinière-Saint-Loup,La Bourdinière-Saint-Loup 34,1977-01-01,COMA,28345,0,SAINT LOUP,Saint-Loup,Saint-Loup,COM,28048,3,BOURDINIERE SAINT LOUP,Bourdinière-Saint-Loup,La Bourdinière-Saint-Loup -33,1977-01-01,COM,51021,1,AULNAY AUX PLANCHES,Aulnay-aux-Planches,Aulnay-aux-Planches,COM,51158,0,VAL DES MARAIS,Val-des-Marais,Val-des-Marais 33,1977-01-01,COM,51021,1,AULNAY AUX PLANCHES,Aulnay-aux-Planches,Aulnay-aux-Planches,COMA,51021,1,AULNAY AUX PLANCHES,Aulnay-aux-Planches,Aulnay-aux-Planches -33,1977-01-01,COM,51024,1,AULNIZEUX,Aulnizeux,Aulnizeux,COM,51158,0,VAL DES MARAIS,Val-des-Marais,Val-des-Marais +33,1977-01-01,COM,51021,1,AULNAY AUX PLANCHES,Aulnay-aux-Planches,Aulnay-aux-Planches,COM,51158,0,VAL DES MARAIS,Val-des-Marais,Val-des-Marais 33,1977-01-01,COM,51024,1,AULNIZEUX,Aulnizeux,Aulnizeux,COMA,51024,1,AULNIZEUX,Aulnizeux,Aulnizeux +33,1977-01-01,COM,51024,1,AULNIZEUX,Aulnizeux,Aulnizeux,COM,51158,0,VAL DES MARAIS,Val-des-Marais,Val-des-Marais 33,1977-01-01,COM,51158,0,COLIGNY,Coligny,Coligny,COM,51158,0,VAL DES MARAIS,Val-des-Marais,Val-des-Marais -33,1977-01-01,COM,51383,0,MORAINS,Morains,Morains,COMA,51383,0,MORAINS,Morains,Morains 33,1977-01-01,COM,51383,0,MORAINS,Morains,Morains,COM,51158,0,VAL DES MARAIS,Val-des-Marais,Val-des-Marais +33,1977-01-01,COM,51383,0,MORAINS,Morains,Morains,COMA,51383,0,MORAINS,Morains,Morains 33,1977-01-01,COM,55060,0,BONZEE EN WOEVRE,Bonzée-en-Woëvre,Bonzée-en-Woëvre,COM,55060,0,BONZEE,Bonzée,Bonzée -33,1977-01-01,COM,55337,0,MESNIL SOUS LES COTES,Mesnil-sous-les-Côtes,Mesnil-sous-les-Côtes,COMA,55337,0,MESNIL SOUS LES COTES,Mesnil-sous-les-Côtes,Mesnil-sous-les-Côtes 33,1977-01-01,COM,55337,0,MESNIL SOUS LES COTES,Mesnil-sous-les-Côtes,Mesnil-sous-les-Côtes,COM,55060,0,BONZEE,Bonzée,Bonzée -33,1977-01-01,COM,55354,0,MONT VILLERS,Mont-Villers,Mont-Villers,COMA,55354,0,MONT VILLERS,Mont-Villers,Mont-Villers +33,1977-01-01,COM,55337,0,MESNIL SOUS LES COTES,Mesnil-sous-les-Côtes,Mesnil-sous-les-Côtes,COMA,55337,0,MESNIL SOUS LES COTES,Mesnil-sous-les-Côtes,Mesnil-sous-les-Côtes 33,1977-01-01,COM,55354,0,MONT VILLERS,Mont-Villers,Mont-Villers,COM,55060,0,BONZEE,Bonzée,Bonzée +33,1977-01-01,COM,55354,0,MONT VILLERS,Mont-Villers,Mont-Villers,COMA,55354,0,MONT VILLERS,Mont-Villers,Mont-Villers 34,1977-01-01,COMA,55524,0,VACON,Vacon,Vacon,COM,55573,0,VOID VACON,Void-Vacon,Void-Vacon 34,1977-01-01,COM,55573,0,VOID VACON,Void-Vacon,Void-Vacon,COM,55573,0,VOID VACON,Void-Vacon,Void-Vacon 33,1977-01-01,COM,89014,1,ARCES,Arces,Arces,COM,89014,1,ARCES DILO,Arces-Dilo,Arces-Dilo -33,1977-01-01,COM,89140,0,DILO,Dilo,Dilo,COMA,89140,0,DILO,Dilo,Dilo 33,1977-01-01,COM,89140,0,DILO,Dilo,Dilo,COM,89014,1,ARCES DILO,Arces-Dilo,Arces-Dilo +33,1977-01-01,COM,89140,0,DILO,Dilo,Dilo,COMA,89140,0,DILO,Dilo,Dilo 21,1977-01-01,COMA,89220,0,LAVAU,Lavau,Lavau,COM,89220,0,LAVAU,Lavau,Lavau +34,1977-01-01,COMA,89220,0,LAVAU,Lavau,Lavau,COM,89254,0,MEZILLES,Mézilles,Mézilles +34,1977-01-01,COMA,89220,0,LAVAU,Lavau,Lavau,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau +34,1977-01-01,COMA,89220,0,LAVAU,Lavau,Lavau,COM,89352,0,SAINT MARTIN DES CHAMPS,Saint-Martin-des-Champs,Saint-Martin-des-Champs +34,1977-01-01,COMA,89254,0,MEZILLES,Mézilles,Mézilles,COM,89220,0,LAVAU,Lavau,Lavau 21,1977-01-01,COMA,89254,0,MEZILLES,Mézilles,Mézilles,COM,89254,0,MEZILLES,Mézilles,Mézilles -21,1977-01-01,COMA,89293,0,PERREUSE,Perreuse,Perreuse,COMA,89293,0,PERREUSE,Perreuse,Perreuse +34,1977-01-01,COMA,89254,0,MEZILLES,Mézilles,Mézilles,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau +34,1977-01-01,COMA,89254,0,MEZILLES,Mézilles,Mézilles,COM,89352,0,SAINT MARTIN DES CHAMPS,Saint-Martin-des-Champs,Saint-Martin-des-Champs 21,1977-01-01,COMA,89340,0,SAINTE COLOMBE SUR LOING,Sainte-Colombe-sur-Loing,Sainte-Colombe-sur-Loing,COM,89340,0,SAINTE COLOMBE SUR LOING,Sainte-Colombe-sur-Loing,Sainte-Colombe-sur-Loing -21,1977-01-01,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau +34,1977-01-01,COMA,89340,0,SAINTE COLOMBE SUR LOING,Sainte-Colombe-sur-Loing,Sainte-Colombe-sur-Loing,COM,89420,0,TREIGNY,Treigny,Treigny +21,1977-01-01,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau,COM,89220,0,LAVAU,Lavau,Lavau 21,1977-01-01,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau,COM,89254,0,MEZILLES,Mézilles,Mézilles +21,1977-01-01,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau 21,1977-01-01,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau,COM,89352,0,SAINT MARTIN DES CHAMPS,Saint-Martin-des-Champs,Saint-Martin-des-Champs -21,1977-01-01,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau,COMA,89325,0,RONCHERES,Ronchères,Ronchères -21,1977-01-01,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau,COM,89220,0,LAVAU,Lavau,Lavau -21,1977-01-01,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau,COMA,89389,0,SEPTFONDS,Septfonds,Septfonds +34,1977-01-01,COMA,89352,0,SAINT MARTIN DES CHAMPS,Saint-Martin-des-Champs,Saint-Martin-des-Champs,COM,89220,0,LAVAU,Lavau,Lavau +34,1977-01-01,COMA,89352,0,SAINT MARTIN DES CHAMPS,Saint-Martin-des-Champs,Saint-Martin-des-Champs,COM,89254,0,MEZILLES,Mézilles,Mézilles +34,1977-01-01,COMA,89352,0,SAINT MARTIN DES CHAMPS,Saint-Martin-des-Champs,Saint-Martin-des-Champs,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau 21,1977-01-01,COMA,89352,0,SAINT MARTIN DES CHAMPS,Saint-Martin-des-Champs,Saint-Martin-des-Champs,COM,89352,0,SAINT MARTIN DES CHAMPS,Saint-Martin-des-Champs,Saint-Martin-des-Champs -21,1977-01-01,COM,89420,0,TREIGNY,Treigny,Treigny,COMA,89293,0,PERREUSE,Perreuse,Perreuse -21,1977-01-01,COM,89420,0,TREIGNY,Treigny,Treigny,COM,89420,0,TREIGNY,Treigny,Treigny 21,1977-01-01,COM,89420,0,TREIGNY,Treigny,Treigny,COM,89340,0,SAINTE COLOMBE SUR LOING,Sainte-Colombe-sur-Loing,Sainte-Colombe-sur-Loing -31,1976-12-31,COM,02247,0,CUGNY LES CROUTTES,Cugny-lès-Crouttes,Cugny-lès-Crouttes,COM,02580,1,OULCHY LE CHATEAU,Oulchy-le-Château,Oulchy-le-Château -31,1976-12-31,COM,02580,1,OULCHY LE CHATEAU,Oulchy-le-Château,Oulchy-le-Château,COM,02580,1,OULCHY LE CHATEAU,Oulchy-le-Château,Oulchy-le-Château -21,1976-11-12,COM,97357,0,GRAND SANTI PAPAICHTON,Grand-Santi-Papaichton,Grand-Santi-Papaichton,COM,97357,0,GRAND SANTI,Grand-Santi,Grand-Santi -21,1976-11-12,COM,97357,0,GRAND SANTI PAPAICHTON,Grand-Santi-Papaichton,Grand-Santi-Papaichton,COM,97360,1,APATOU,Apatou,Apatou -21,1976-10-29,COM,76355,0,ROCQUEFORT SUR HERICOURT,Rocquefort-sur-Héricourt,Rocquefort-sur-Héricourt,COM,76531,0,ROCQUEFORT,Rocquefort,Rocquefort +21,1977-01-01,COM,89420,0,TREIGNY,Treigny,Treigny,COM,89420,0,TREIGNY,Treigny,Treigny +31,1976-12-31,COM,2247,0,CUGNY LES CROUTTES,Cugny-lès-Crouttes,Cugny-lès-Crouttes,COM,2580,1,OULCHY LE CHATEAU,Oulchy-le-Château,Oulchy-le-Château +31,1976-12-31,COM,2580,1,OULCHY LE CHATEAU,Oulchy-le-Château,Oulchy-le-Château,COM,2580,1,OULCHY LE CHATEAU,Oulchy-le-Château,Oulchy-le-Château +20,1976-11-12,COM,97357,0,GRAND SANTI PAPAICHTON,Grand-Santi-Papaichton,Grand-Santi-Papaichton,COM,97357,0,GRAND SANTI,Grand-Santi,Grand-Santi +20,1976-11-12,COM,97357,0,GRAND SANTI PAPAICHTON,Grand-Santi-Papaichton,Grand-Santi-Papaichton,COM,97360,1,APATOU,Apatou,Apatou 21,1976-10-29,COM,76355,0,ROCQUEFORT SUR HERICOURT,Rocquefort-sur-Héricourt,Rocquefort-sur-Héricourt,COM,76355,1,HERICOURT EN CAUX,Héricourt-en-Caux,Héricourt-en-Caux +21,1976-10-29,COM,76355,0,ROCQUEFORT SUR HERICOURT,Rocquefort-sur-Héricourt,Rocquefort-sur-Héricourt,COM,76531,0,ROCQUEFORT,Rocquefort,Rocquefort +34,1976-10-29,COMA,76531,0,ROCQUEFORT,Rocquefort,Rocquefort,COM,76355,1,HERICOURT EN CAUX,Héricourt-en-Caux,Héricourt-en-Caux 21,1976-10-29,COMA,76531,0,ROCQUEFORT,Rocquefort,Rocquefort,COM,76531,0,ROCQUEFORT,Rocquefort,Rocquefort 34,1976-07-15,COMA,67357,1,OFFENHEIM,Offenheim,Offenheim,COM,67485,0,STUTZHEIM OFFENHEIM,Stutzheim-Offenheim,Stutzheim-Offenheim 34,1976-07-15,COM,67485,0,STUTZHEIM OFFENHEIM,Stutzheim-Offenheim,Stutzheim-Offenheim,COM,67485,0,STUTZHEIM OFFENHEIM,Stutzheim-Offenheim,Stutzheim-Offenheim @@ -8364,48 +8241,49 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1976-01-01,COM,39005,1,ABERGEMENT SAINT JEAN,Abergement-Saint-Jean,Abergement-Saint-Jean,COMA,39005,1,ABERGEMENT SAINT JEAN,Abergement-Saint-Jean,Abergement-Saint-Jean 33,1976-01-01,COM,39005,1,ABERGEMENT SAINT JEAN,Abergement-Saint-Jean,Abergement-Saint-Jean,COM,39385,0,NEUBLANS ABERGEMENT,Neublans-Abergement,Neublans-Abergement 33,1976-01-01,COM,39385,0,NEUBLANS,Neublans,Neublans,COM,39385,0,NEUBLANS ABERGEMENT,Neublans-Abergement,Neublans-Abergement -33,1976-01-01,COM,63217,3,MAYRAND,Mayrand,La Mayrand,COM,63303,0,ROCHE CHARLES LA MAYRAND,Roche-Charles-la-Mayrand,Roche-Charles-la-Mayrand 33,1976-01-01,COM,63217,3,MAYRAND,Mayrand,La Mayrand,COMA,63217,3,MAYRAND,Mayrand,La Mayrand +33,1976-01-01,COM,63217,3,MAYRAND,Mayrand,La Mayrand,COM,63303,0,ROCHE CHARLES LA MAYRAND,Roche-Charles-la-Mayrand,Roche-Charles-la-Mayrand 33,1976-01-01,COM,63303,0,ROCHE CHARLES,Roche-Charles,Roche-Charles,COM,63303,0,ROCHE CHARLES LA MAYRAND,Roche-Charles-la-Mayrand,Roche-Charles-la-Mayrand 31,1976-01-01,COM,69011,1,ARBUISSONNAS,Arbuissonnas,Arbuissonnas,COM,69172,0,SALLES ARBUISSONNAS EN BEAUJOLAIS,Salles-Arbuissonnas-en-Beaujolais,Salles-Arbuissonnas-en-Beaujolais 31,1976-01-01,COM,69172,0,SALLES,Salles,Salles,COM,69172,0,SALLES ARBUISSONNAS EN BEAUJOLAIS,Salles-Arbuissonnas-en-Beaujolais,Salles-Arbuissonnas-en-Beaujolais -21,1976-01-01,COM,89054,0,BRANNAY SAINT SEROTIN,Brannay-Saint-Sérotin,Brannay-Saint-Sérotin,COM,89369,0,SAINT SEROTIN,Saint-Sérotin,Saint-Sérotin 21,1976-01-01,COM,89054,0,BRANNAY SAINT SEROTIN,Brannay-Saint-Sérotin,Brannay-Saint-Sérotin,COM,89054,0,BRANNAY,Brannay,Brannay +21,1976-01-01,COM,89054,0,BRANNAY SAINT SEROTIN,Brannay-Saint-Sérotin,Brannay-Saint-Sérotin,COM,89369,0,SAINT SEROTIN,Saint-Sérotin,Saint-Sérotin +34,1976-01-01,COMA,89369,0,SAINT SEROTIN,Saint-Sérotin,Saint-Sérotin,COM,89054,0,BRANNAY,Brannay,Brannay 21,1976-01-01,COMA,89369,0,SAINT SEROTIN,Saint-Sérotin,Saint-Sérotin,COM,89369,0,SAINT SEROTIN,Saint-Sérotin,Saint-Sérotin 10,1975-09-26,COM,46014,0,BAGAT,Bagat,Bagat,COM,46014,0,BAGAT EN QUERCY,Bagat-en-Quercy,Bagat-en-Quercy -33,1975-07-01,COM,07031,0,BERRIAS,Berrias,Berrias,COM,07031,0,BERRIAS ET CASTELJAU,Berrias-et-Casteljau,Berrias-et-Casteljau -33,1975-07-01,COM,07046,0,CASTELJAU,Casteljau,Casteljau,COMA,07046,0,CASTELJAU,Casteljau,Casteljau -33,1975-07-01,COM,07046,0,CASTELJAU,Casteljau,Casteljau,COM,07031,0,BERRIAS ET CASTELJAU,Berrias-et-Casteljau,Berrias-et-Casteljau -31,1975-07-01,COM,07125,0,LAFIGERE,Lafigère,Lafigère,COM,07147,0,MALARCE SUR LA THINES,Malarce-sur-la-Thines,Malarce-sur-la-Thines -31,1975-07-01,COM,07147,0,MALARCE,Malarce,Malarce,COM,07147,0,MALARCE SUR LA THINES,Malarce-sur-la-Thines,Malarce-sur-la-Thines -33,1975-07-01,COM,07246,0,SAINT JEAN DE POURCHARESSE,Saint-Jean-de-Pourcharesse,Saint-Jean-de-Pourcharesse,COMA,07246,0,SAINT JEAN DE POURCHARESSE,Saint-Jean-de-Pourcharesse,Saint-Jean-de-Pourcharesse -33,1975-07-01,COM,07246,0,SAINT JEAN DE POURCHARESSE,Saint-Jean-de-Pourcharesse,Saint-Jean-de-Pourcharesse,COM,07284,0,SAINT PIERRE SAINT JEAN,Saint-Pierre-Saint-Jean,Saint-Pierre-Saint-Jean -33,1975-07-01,COM,07284,0,SAINT PIERRE LE DECHAUSSELAT,Saint-Pierre-le-Déchausselat,Saint-Pierre-le-Déchausselat,COM,07284,0,SAINT PIERRE SAINT JEAN,Saint-Pierre-Saint-Jean,Saint-Pierre-Saint-Jean -31,1975-07-01,COM,07320,0,THINES,Thines,Thines,COM,07147,0,MALARCE SUR LA THINES,Malarce-sur-la-Thines,Malarce-sur-la-Thines +33,1975-07-01,COM,7031,0,BERRIAS,Berrias,Berrias,COM,7031,0,BERRIAS ET CASTELJAU,Berrias-et-Casteljau,Berrias-et-Casteljau +33,1975-07-01,COM,7046,0,CASTELJAU,Casteljau,Casteljau,COM,7031,0,BERRIAS ET CASTELJAU,Berrias-et-Casteljau,Berrias-et-Casteljau +33,1975-07-01,COM,7046,0,CASTELJAU,Casteljau,Casteljau,COMA,7046,0,CASTELJAU,Casteljau,Casteljau +31,1975-07-01,COM,7125,0,LAFIGERE,Lafigère,Lafigère,COM,7147,0,MALARCE SUR LA THINES,Malarce-sur-la-Thines,Malarce-sur-la-Thines +31,1975-07-01,COM,7147,0,MALARCE,Malarce,Malarce,COM,7147,0,MALARCE SUR LA THINES,Malarce-sur-la-Thines,Malarce-sur-la-Thines +33,1975-07-01,COM,7246,0,SAINT JEAN DE POURCHARESSE,Saint-Jean-de-Pourcharesse,Saint-Jean-de-Pourcharesse,COMA,7246,0,SAINT JEAN DE POURCHARESSE,Saint-Jean-de-Pourcharesse,Saint-Jean-de-Pourcharesse +33,1975-07-01,COM,7246,0,SAINT JEAN DE POURCHARESSE,Saint-Jean-de-Pourcharesse,Saint-Jean-de-Pourcharesse,COM,7284,0,SAINT PIERRE SAINT JEAN,Saint-Pierre-Saint-Jean,Saint-Pierre-Saint-Jean +33,1975-07-01,COM,7284,0,SAINT PIERRE LE DECHAUSSELAT,Saint-Pierre-le-Déchausselat,Saint-Pierre-le-Déchausselat,COM,7284,0,SAINT PIERRE SAINT JEAN,Saint-Pierre-Saint-Jean,Saint-Pierre-Saint-Jean +31,1975-07-01,COM,7320,0,THINES,Thines,Thines,COM,7147,0,MALARCE SUR LA THINES,Malarce-sur-la-Thines,Malarce-sur-la-Thines 31,1975-07-01,COM,68216,0,MOOS,Moos,Moos,COM,68216,0,MOOSLARGUE,Mooslargue,Mooslargue 31,1975-07-01,COM,68236,0,NIEDERLARG,Niederlarg,Niederlarg,COM,68216,0,MOOSLARGUE,Mooslargue,Mooslargue 33,1975-06-01,COM,57132,0,CHATEAU SALINS,Château-Salins,Château-Salins,COM,57132,0,CHATEAU SALINS,Château-Salins,Château-Salins -33,1975-06-01,COM,57157,0,COUTURES,Coutures,Coutures,COMA,57157,0,COUTURES,Coutures,Coutures 33,1975-06-01,COM,57157,0,COUTURES,Coutures,Coutures,COM,57132,0,CHATEAU SALINS,Château-Salins,Château-Salins -31,1975-01-01,COM,01251,0,MOENS,Moëns,Moëns,COM,01313,0,PREVESSIN MOENS,Prévessin-Moëns,Prévessin-Moëns -31,1975-01-01,COM,01313,0,PREVESSIN,Prévessin,Prévessin,COM,01313,0,PREVESSIN MOENS,Prévessin-Moëns,Prévessin-Moëns -10,1975-01-01,COM,02102,0,BOUCONVILLE VAUCLERC,Bouconville-Vauclerc,Bouconville-Vauclerc,COM,02102,0,BOUCONVILLE VAUCLAIR,Bouconville-Vauclair,Bouconville-Vauclair -33,1975-01-01,COM,04112,0,MANOSQUE,Manosque,Manosque,COM,04112,0,MANOSQUE,Manosque,Manosque -33,1975-01-01,COM,04190,0,SAINT MARTIN LES EAUX,Saint-Martin-les-Eaux,Saint-Martin-les-Eaux,COMA,04190,0,SAINT MARTIN LES EAUX,Saint-Martin-les-Eaux,Saint-Martin-les-Eaux -33,1975-01-01,COM,04190,0,SAINT MARTIN LES EAUX,Saint-Martin-les-Eaux,Saint-Martin-les-Eaux,COM,04112,0,MANOSQUE,Manosque,Manosque -33,1975-01-01,COM,05061,0,GAP,Gap,Gap,COM,05061,0,GAP,Gap,Gap -33,1975-01-01,COM,05125,0,ROMETTE,Romette,Romette,COMA,05125,0,ROMETTE,Romette,Romette -33,1975-01-01,COM,05125,0,ROMETTE,Romette,Romette,COM,05061,0,GAP,Gap,Gap -31,1975-01-01,COM,09264,0,SAINT JEAN DE VERGES,Saint-Jean-de-Verges,Saint-Jean-de-Verges,COM,09264,0,SAINT JEAN DE VERGES,Saint-Jean-de-Verges,Saint-Jean-de-Verges -31,1975-01-01,COM,09337,0,VILLENEUVE DU BOSC,Villeneuve-du-Bosc,Villeneuve-du-Bosc,COM,09264,0,SAINT JEAN DE VERGES,Saint-Jean-de-Verges,Saint-Jean-de-Verges +33,1975-06-01,COM,57157,0,COUTURES,Coutures,Coutures,COMA,57157,0,COUTURES,Coutures,Coutures +31,1975-01-01,COM,1251,0,MOENS,Moëns,Moëns,COM,1313,0,PREVESSIN MOENS,Prévessin-Moëns,Prévessin-Moëns +31,1975-01-01,COM,1313,0,PREVESSIN,Prévessin,Prévessin,COM,1313,0,PREVESSIN MOENS,Prévessin-Moëns,Prévessin-Moëns +10,1975-01-01,COM,2102,0,BOUCONVILLE VAUCLERC,Bouconville-Vauclerc,Bouconville-Vauclerc,COM,2102,0,BOUCONVILLE VAUCLAIR,Bouconville-Vauclair,Bouconville-Vauclair +33,1975-01-01,COM,4112,0,MANOSQUE,Manosque,Manosque,COM,4112,0,MANOSQUE,Manosque,Manosque +33,1975-01-01,COM,4190,0,SAINT MARTIN LES EAUX,Saint-Martin-les-Eaux,Saint-Martin-les-Eaux,COM,4112,0,MANOSQUE,Manosque,Manosque +33,1975-01-01,COM,4190,0,SAINT MARTIN LES EAUX,Saint-Martin-les-Eaux,Saint-Martin-les-Eaux,COMA,4190,0,SAINT MARTIN LES EAUX,Saint-Martin-les-Eaux,Saint-Martin-les-Eaux +33,1975-01-01,COM,5061,0,GAP,Gap,Gap,COM,5061,0,GAP,Gap,Gap +33,1975-01-01,COM,5125,0,ROMETTE,Romette,Romette,COM,5061,0,GAP,Gap,Gap +33,1975-01-01,COM,5125,0,ROMETTE,Romette,Romette,COMA,5125,0,ROMETTE,Romette,Romette +31,1975-01-01,COM,9264,0,SAINT JEAN DE VERGES,Saint-Jean-de-Verges,Saint-Jean-de-Verges,COM,9264,0,SAINT JEAN DE VERGES,Saint-Jean-de-Verges,Saint-Jean-de-Verges +31,1975-01-01,COM,9337,0,VILLENEUVE DU BOSC,Villeneuve-du-Bosc,Villeneuve-du-Bosc,COM,9264,0,SAINT JEAN DE VERGES,Saint-Jean-de-Verges,Saint-Jean-de-Verges 10,1975-01-01,COM,11295,0,PORTEL,Portel,Portel,COM,11295,0,PORTEL DES CORBIERES,Portel-des-Corbières,Portel-des-Corbières 33,1975-01-01,COM,12003,4,ALBRES,Albres,Les Albres,COMA,12003,4,ALBRES,Albres,Les Albres 33,1975-01-01,COM,12003,4,ALBRES,Albres,Les Albres,COM,12305,0,VIVIEZ LES ALBRES,Viviez-les-Albres,Viviez-les-Albres 33,1975-01-01,COM,12305,0,VIVIEZ,Viviez,Viviez,COM,12305,0,VIVIEZ LES ALBRES,Viviez-les-Albres,Viviez-les-Albres 33,1975-01-01,COM,14046,0,BAVENT,Bavent,Bavent,COM,14046,0,BAVENT,Bavent,Bavent 31,1975-01-01,COM,14526,0,QUESNAY GUESNON,Quesnay-Guesnon,Quesnay-Guesnon,COM,14695,0,TORTEVAL QUESNAY,Torteval-Quesnay,Torteval-Quesnay -33,1975-01-01,COM,14537,0,ROBEHOMME,Robehomme,Robehomme,COMA,14537,0,ROBEHOMME,Robehomme,Robehomme 33,1975-01-01,COM,14537,0,ROBEHOMME,Robehomme,Robehomme,COM,14046,0,BAVENT,Bavent,Bavent +33,1975-01-01,COM,14537,0,ROBEHOMME,Robehomme,Robehomme,COMA,14537,0,ROBEHOMME,Robehomme,Robehomme 31,1975-01-01,COM,14695,0,TORTEVAL,Torteval,Torteval,COM,14695,0,TORTEVAL QUESNAY,Torteval-Quesnay,Torteval-Quesnay 31,1975-01-01,COM,17370,0,SAINT MAURICE DE LAURENCANNE,Saint-Maurice-de-Laurençanne,Saint-Maurice-de-Laurençanne,COM,17454,0,TUGERAS SAINT MAURICE,Tugéras-Saint-Maurice,Tugéras-Saint-Maurice 31,1975-01-01,COM,17454,0,TUGERAS,Tugéras,Tugéras,COM,17454,0,TUGERAS SAINT MAURICE,Tugéras-Saint-Maurice,Tugéras-Saint-Maurice @@ -8416,32 +8294,24 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1975-01-01,COM,24362,0,SAINT ALVERE,Saint-Alvère,Saint-Alvère,COM,24362,0,SAINTE ALVERE,Sainte-Alvère,Sainte-Alvère 31,1975-01-01,COM,26055,0,BOULC BONNEVAL,Boulc-Bonneval,Boulc-Bonneval,COM,26055,0,BOULC,Boulc,Boulc 31,1975-01-01,COM,26260,0,RAVEL ET FERRIERS,Ravel-et-Ferriers,Ravel-et-Ferriers,COM,26055,0,BOULC,Boulc,Boulc -10,1975-01-01,COM,27153,0,CHAUVINCOURT,Chauvincourt,Chauvincourt,COMA,27479,0,PROVEMONT,Provemont,Provemont 10,1975-01-01,COM,27153,0,CHAUVINCOURT,Chauvincourt,Chauvincourt,COM,27153,0,CHAUVINCOURT PROVEMONT,Chauvincourt-Provemont,Chauvincourt-Provemont -10,1975-01-01,COMA,27479,0,PROVEMONT,Provemont,Provemont,COM,27153,0,CHAUVINCOURT PROVEMONT,Chauvincourt-Provemont,Chauvincourt-Provemont 33,1975-01-01,COM,43209,0,SAINTE MARIE DES CHAZES,Sainte-Marie-des-Chazes,Sainte-Marie-des-Chazes,COMA,43209,0,SAINTE MARIE DES CHAZES,Sainte-Marie-des-Chazes,Sainte-Marie-des-Chazes 33,1975-01-01,COM,43209,0,SAINTE MARIE DES CHAZES,Sainte-Marie-des-Chazes,Sainte-Marie-des-Chazes,COM,43239,0,SIAUGUES SAINTE MARIE,Siaugues-Sainte-Marie,Siaugues-Sainte-Marie 33,1975-01-01,COM,43239,0,SIAUGUES SAINT ROMAIN,Siaugues-Saint-Romain,Siaugues-Saint-Romain,COM,43239,0,SIAUGUES SAINTE MARIE,Siaugues-Sainte-Marie,Siaugues-Sainte-Marie 10,1975-01-01,COM,44201,0,SUCE,Sucé,Sucé,COM,44201,0,SUCE SUR ERDRE,Sucé-sur-Erdre,Sucé-sur-Erdre 10,1975-01-01,COM,49307,0,SAINT MATHURIN,Saint-Mathurin,Saint-Mathurin,COM,49307,0,SAINT MATHURIN SUR LOIRE,Saint-Mathurin-sur-Loire,Saint-Mathurin-sur-Loire -33,1975-01-01,COM,51494,0,SAINTE LIVIERE,Sainte-Livière,Sainte-Livière,COM,52182,1,ECLARON BRAUCOURT SAINTE LIVIERE,Éclaron-Braucourt-Sainte-Livière,Éclaron-Braucourt-Sainte-Livière 33,1975-01-01,COM,51494,0,SAINTE LIVIERE,Sainte-Livière,Sainte-Livière,COMA,51494,0,SAINTE LIVIERE,Sainte-Livière,Sainte-Livière -33,1975-01-01,COMA,52068,0,BRAUCOURT,Braucourt,Braucourt,COM,52182,1,ECLARON BRAUCOURT SAINTE LIVIERE,Éclaron-Braucourt-Sainte-Livière,Éclaron-Braucourt-Sainte-Livière -33,1975-01-01,COMA,52068,0,BRAUCOURT,Braucourt,Braucourt,COMA,52068,0,BRAUCOURT,Braucourt,Braucourt +33,1975-01-01,COM,51494,0,SAINTE LIVIERE,Sainte-Livière,Sainte-Livière,COM,52182,1,ECLARON BRAUCOURT SAINTE LIVIERE,Éclaron-Braucourt-Sainte-Livière,Éclaron-Braucourt-Sainte-Livière 33,1975-01-01,COM,52182,1,ECLARON BRAUCOURT,Éclaron-Braucourt,Éclaron-Braucourt,COM,52182,1,ECLARON BRAUCOURT SAINTE LIVIERE,Éclaron-Braucourt-Sainte-Livière,Éclaron-Braucourt-Sainte-Livière 10,1975-01-01,COM,58246,0,SAINT HONORE,Saint-Honoré,Saint-Honoré,COM,58246,0,SAINT HONORE LES BAINS,Saint-Honoré-les-Bains,Saint-Honoré-les-Bains 10,1975-01-01,COM,59663,0,WORMHOUDT,Wormhoudt,Wormhoudt,COM,59663,0,WORMHOUT,Wormhout,Wormhout 10,1975-01-01,COM,59666,0,ZEGGERS CAPPEL,Zeggers-Cappel,Zeggers-Cappel,COM,59666,0,ZEGERSCAPPEL,Zegerscappel,Zegerscappel 10,1975-01-01,COM,62576,0,MONCHEAUX,Moncheaux,Moncheaux,COM,62576,0,MONCHEAUX LES FREVENT,Moncheaux-lès-Frévent,Moncheaux-lès-Frévent 10,1975-01-01,COM,63463,0,VISCONTAT,Viscontat,Viscontat,COM,63463,0,VISCOMTAT,Viscomtat,Viscomtat -33,1975-01-01,COM,67007,1,ALTENSTADT,Altenstadt,Altenstadt,COM,67544,0,WISSEMBOURG,Wissembourg,Wissembourg 33,1975-01-01,COM,67007,1,ALTENSTADT,Altenstadt,Altenstadt,COMA,67007,1,ALTENSTADT,Altenstadt,Altenstadt -33,1975-01-01,COMA,67026,0,BELLEFOSSE,Bellefosse,Bellefosse,COM,67513,2,BAN DE LA ROCHE,Ban-de-la-Roche,Le Ban-de-la-Roche -33,1975-01-01,COMA,67026,0,BELLEFOSSE,Bellefosse,Bellefosse,COMA,67026,0,BELLEFOSSE,Bellefosse,Bellefosse -33,1975-01-01,COMA,67027,0,BELMONT,Belmont,Belmont,COMA,67027,0,BELMONT,Belmont,Belmont -33,1975-01-01,COMA,67027,0,BELMONT,Belmont,Belmont,COM,67513,2,BAN DE LA ROCHE,Ban-de-la-Roche,Le Ban-de-la-Roche -33,1975-01-01,COM,67144,0,FOUDAY,Fouday,Fouday,COM,67513,2,BAN DE LA ROCHE,Ban-de-la-Roche,Le Ban-de-la-Roche +33,1975-01-01,COM,67007,1,ALTENSTADT,Altenstadt,Altenstadt,COM,67544,0,WISSEMBOURG,Wissembourg,Wissembourg 33,1975-01-01,COM,67144,0,FOUDAY,Fouday,Fouday,COMA,67144,0,FOUDAY,Fouday,Fouday +33,1975-01-01,COM,67144,0,FOUDAY,Fouday,Fouday,COM,67513,2,BAN DE LA ROCHE,Ban-de-la-Roche,Le Ban-de-la-Roche 33,1975-01-01,COM,67193,0,HERMERSWILLER,Hermerswiller,Hermerswiller,COMA,67193,0,HERMERSWILLER,Hermerswiller,Hermerswiller 33,1975-01-01,COM,67193,0,HERMERSWILLER,Hermerswiller,Hermerswiller,COM,67206,0,HOFFEN,Hoffen,Hoffen 33,1975-01-01,COM,67206,0,HOFFEN,Hoffen,Hoffen,COM,67206,0,HOFFEN,Hoffen,Hoffen @@ -8452,8 +8322,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1975-01-01,COM,67442,0,SCHARRACHBERGHEIM,Scharrachbergheim,Scharrachbergheim,COM,67442,0,SCHARRACHBERGHEIM IRMSTETT,Scharrachbergheim-Irmstett,Scharrachbergheim-Irmstett 33,1975-01-01,COM,67513,2,BAN DE LA ROCHE,Ban-de-la-Roche,Le Ban-de-la-Roche,COM,67513,2,BAN DE LA ROCHE,Ban-de-la-Roche,Le Ban-de-la-Roche 33,1975-01-01,COM,67544,0,WISSEMBOURG,Wissembourg,Wissembourg,COM,67544,0,WISSEMBOURG,Wissembourg,Wissembourg -33,1975-01-01,COM,71476,0,SAINT ROMAIN DES ILES,Saint-Romain-des-Îles,Saint-Romain-des-Îles,COM,71481,0,SAINT SYMPHORIEN D ANCELLES,Saint-Symphorien-d'Ancelles,Saint-Symphorien-d'Ancelles 33,1975-01-01,COM,71476,0,SAINT ROMAIN DES ILES,Saint-Romain-des-Îles,Saint-Romain-des-Îles,COMA,71476,0,SAINT ROMAIN DES ILES,Saint-Romain-des-Îles,Saint-Romain-des-Îles +33,1975-01-01,COM,71476,0,SAINT ROMAIN DES ILES,Saint-Romain-des-Îles,Saint-Romain-des-Îles,COM,71481,0,SAINT SYMPHORIEN D ANCELLES,Saint-Symphorien-d'Ancelles,Saint-Symphorien-d'Ancelles 33,1975-01-01,COM,71481,0,SAINT SYMPHORIEN D ANCELLES,Saint-Symphorien-d'Ancelles,Saint-Symphorien-d'Ancelles,COM,71481,0,SAINT SYMPHORIEN D ANCELLES,Saint-Symphorien-d'Ancelles,Saint-Symphorien-d'Ancelles 33,1975-01-01,COM,76003,1,AMBOURVILLE,Ambourville,Ambourville,COMA,76003,1,AMBOURVILLE,Ambourville,Ambourville 33,1975-01-01,COM,76003,1,AMBOURVILLE,Ambourville,Ambourville,COM,76020,1,ANNEVILLE AMBOURVILLE,Anneville-Ambourville,Anneville-Ambourville @@ -8465,52 +8335,48 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1975-01-01,COM,80566,0,MONTRELET,Montrelet,Montrelet,COM,80566,0,FIEFFES MONTRELET,Fieffes-Montrelet,Fieffes-Montrelet 10,1975-01-01,COM,83129,0,SIX FOURS LA PLAGE,Six-Fours-la-Plage,Six-Fours-la-Plage,COM,83129,0,SIX FOURS LES PLAGES,Six-Fours-les-Plages,Six-Fours-les-Plages 33,1975-01-01,COM,85040,3,CAILLERE,Caillère,La Caillère,COM,85040,3,CAILLERE SAINT HILAIRE,Caillère-Saint-Hilaire,La Caillère-Saint-Hilaire -33,1975-01-01,COM,85230,0,SAINT HILAIRE DU BOIS,Saint-Hilaire-du-Bois,Saint-Hilaire-du-Bois,COMA,85230,0,SAINT HILAIRE DU BOIS,Saint-Hilaire-du-Bois,Saint-Hilaire-du-Bois 33,1975-01-01,COM,85230,0,SAINT HILAIRE DU BOIS,Saint-Hilaire-du-Bois,Saint-Hilaire-du-Bois,COM,85040,3,CAILLERE SAINT HILAIRE,Caillère-Saint-Hilaire,La Caillère-Saint-Hilaire -33,1974-12-29,COM,08047,0,BARBAISE,Barbaise,Barbaise,COMA,08047,0,BARBAISE,Barbaise,Barbaise -33,1974-12-29,COM,08047,0,BARBAISE,Barbaise,Barbaise,COM,08352,0,RAILLICOURT BARBAISE,Raillicourt-Barbaise,Raillicourt-Barbaise -33,1974-12-29,COM,08057,0,BELLEVILLE SUR BAR,Belleville-sur-Bar,Belleville-sur-Bar,COM,08057,0,BELLEVILLE ET CHATILLON SUR BAR,Belleville-et-Châtillon-sur-Bar,Belleville-et-Châtillon-sur-Bar -33,1974-12-29,COM,08112,0,CHATILLON SUR BAR,Châtillon-sur-Bar,Châtillon-sur-Bar,COM,08057,0,BELLEVILLE ET CHATILLON SUR BAR,Belleville-et-Châtillon-sur-Bar,Belleville-et-Châtillon-sur-Bar -33,1974-12-29,COM,08112,0,CHATILLON SUR BAR,Châtillon-sur-Bar,Châtillon-sur-Bar,COMA,08112,0,CHATILLON SUR BAR,Châtillon-sur-Bar,Châtillon-sur-Bar -33,1974-12-29,COM,08333,1,OLIZY,Olizy,Olizy,COM,08333,1,OLIZY PRIMAT,Olizy-Primat,Olizy-Primat -33,1974-12-29,COM,08345,0,PRIMAT,Primat,Primat,COMA,08345,0,PRIMAT,Primat,Primat -33,1974-12-29,COM,08345,0,PRIMAT,Primat,Primat,COM,08333,1,OLIZY PRIMAT,Olizy-Primat,Olizy-Primat -33,1974-12-29,COM,08352,0,RAILLICOURT,Raillicourt,Raillicourt,COM,08352,0,RAILLICOURT BARBAISE,Raillicourt-Barbaise,Raillicourt-Barbaise +33,1975-01-01,COM,85230,0,SAINT HILAIRE DU BOIS,Saint-Hilaire-du-Bois,Saint-Hilaire-du-Bois,COMA,85230,0,SAINT HILAIRE DU BOIS,Saint-Hilaire-du-Bois,Saint-Hilaire-du-Bois +33,1974-12-29,COM,8047,0,BARBAISE,Barbaise,Barbaise,COMA,8047,0,BARBAISE,Barbaise,Barbaise +33,1974-12-29,COM,8047,0,BARBAISE,Barbaise,Barbaise,COM,8352,0,RAILLICOURT BARBAISE,Raillicourt-Barbaise,Raillicourt-Barbaise +33,1974-12-29,COM,8057,0,BELLEVILLE SUR BAR,Belleville-sur-Bar,Belleville-sur-Bar,COM,8057,0,BELLEVILLE ET CHATILLON SUR BAR,Belleville-et-Châtillon-sur-Bar,Belleville-et-Châtillon-sur-Bar +33,1974-12-29,COM,8112,0,CHATILLON SUR BAR,Châtillon-sur-Bar,Châtillon-sur-Bar,COM,8057,0,BELLEVILLE ET CHATILLON SUR BAR,Belleville-et-Châtillon-sur-Bar,Belleville-et-Châtillon-sur-Bar +33,1974-12-29,COM,8112,0,CHATILLON SUR BAR,Châtillon-sur-Bar,Châtillon-sur-Bar,COMA,8112,0,CHATILLON SUR BAR,Châtillon-sur-Bar,Châtillon-sur-Bar +33,1974-12-29,COM,8333,1,OLIZY,Olizy,Olizy,COM,8333,1,OLIZY PRIMAT,Olizy-Primat,Olizy-Primat +33,1974-12-29,COM,8345,0,PRIMAT,Primat,Primat,COM,8333,1,OLIZY PRIMAT,Olizy-Primat,Olizy-Primat +33,1974-12-29,COM,8345,0,PRIMAT,Primat,Primat,COMA,8345,0,PRIMAT,Primat,Primat +33,1974-12-29,COM,8352,0,RAILLICOURT,Raillicourt,Raillicourt,COM,8352,0,RAILLICOURT BARBAISE,Raillicourt-Barbaise,Raillicourt-Barbaise 34,1974-12-05,COMA,41162,0,NOUAN SUR LOIRE,Nouan-sur-Loire,Nouan-sur-Loire,COM,41220,0,SAINT LAURENT NOUAN,Saint-Laurent-Nouan,Saint-Laurent-Nouan 34,1974-12-05,COM,41220,0,SAINT LAURENT NOUAN,Saint-Laurent-Nouan,Saint-Laurent-Nouan,COM,41220,0,SAINT LAURENT NOUAN,Saint-Laurent-Nouan,Saint-Laurent-Nouan -33,1974-12-01,COM,07132,0,LARGENTIERE,Largentière,Largentière,COM,07132,0,LARGENTIERE,Largentière,Largentière -33,1974-12-01,COM,07318,0,TAURIERS,Tauriers,Tauriers,COM,07132,0,LARGENTIERE,Largentière,Largentière -33,1974-12-01,COM,07318,0,TAURIERS,Tauriers,Tauriers,COMA,07318,0,TAURIERS,Tauriers,Tauriers +33,1974-12-01,COM,7132,0,LARGENTIERE,Largentière,Largentière,COM,7132,0,LARGENTIERE,Largentière,Largentière +33,1974-12-01,COM,7318,0,TAURIERS,Tauriers,Tauriers,COM,7132,0,LARGENTIERE,Largentière,Largentière +33,1974-12-01,COM,7318,0,TAURIERS,Tauriers,Tauriers,COMA,7318,0,TAURIERS,Tauriers,Tauriers 33,1974-12-01,COM,52211,0,FRONCLES BUXIERES,Froncles-Buxières,Froncles-Buxières,COM,52211,0,FRONCLES,Froncles,Froncles -33,1974-12-01,COM,52409,0,PROVENCHERES SUR MARNE,Provenchères-sur-Marne,Provenchères-sur-Marne,COMA,52409,0,PROVENCHERES SUR MARNE,Provenchères-sur-Marne,Provenchères-sur-Marne 33,1974-12-01,COM,52409,0,PROVENCHERES SUR MARNE,Provenchères-sur-Marne,Provenchères-sur-Marne,COM,52211,0,FRONCLES,Froncles,Froncles -33,1974-11-01,COM,01036,0,BELMONT,Belmont,Belmont,COM,01036,0,BELMONT LUTHEZIEU,Belmont-Luthézieu,Belmont-Luthézieu -33,1974-11-01,COM,01226,0,LUTHEZIEU,Luthézieu,Luthézieu,COM,01036,0,BELMONT LUTHEZIEU,Belmont-Luthézieu,Belmont-Luthézieu -33,1974-11-01,COM,01226,0,LUTHEZIEU,Luthézieu,Luthézieu,COMA,01226,0,LUTHEZIEU,Luthézieu,Luthézieu +33,1974-12-01,COM,52409,0,PROVENCHERES SUR MARNE,Provenchères-sur-Marne,Provenchères-sur-Marne,COMA,52409,0,PROVENCHERES SUR MARNE,Provenchères-sur-Marne,Provenchères-sur-Marne +33,1974-11-01,COM,1036,0,BELMONT,Belmont,Belmont,COM,1036,0,BELMONT LUTHEZIEU,Belmont-Luthézieu,Belmont-Luthézieu +33,1974-11-01,COM,1226,0,LUTHEZIEU,Luthézieu,Luthézieu,COM,1036,0,BELMONT LUTHEZIEU,Belmont-Luthézieu,Belmont-Luthézieu +33,1974-11-01,COM,1226,0,LUTHEZIEU,Luthézieu,Luthézieu,COMA,1226,0,LUTHEZIEU,Luthézieu,Luthézieu 31,1974-11-01,COM,28131,0,DOMMERVILLE,Dommerville,Dommerville,COM,91016,1,ANGERVILLE,Angerville,Angerville -33,1974-11-01,COM,67122,0,ENGENTHAL,Engenthal,Engenthal,COM,67122,0,WANGENBOURG ENGENTHAL,Wangenbourg-Engenthal,Wangenbourg-Engenthal +33,1974-11-01,COM,67122,1,ENGENTHAL,Engenthal,Engenthal,COM,67122,0,WANGENBOURG ENGENTHAL,Wangenbourg-Engenthal,Wangenbourg-Engenthal 33,1974-11-01,COM,67332,0,NIEDERSEEBACH,Niederseebach,Niederseebach,COMA,67332,0,NIEDERSEEBACH,Niederseebach,Niederseebach 33,1974-11-01,COM,67332,0,NIEDERSEEBACH,Niederseebach,Niederseebach,COM,67351,0,SEEBACH,Seebach,Seebach -33,1974-11-01,COM,67351,0,OBERSEEBACH,Oberseebach,Oberseebach,COM,67351,0,SEEBACH,Seebach,Seebach -33,1974-11-01,COM,67518,0,WANGENBOURG,Wangenbourg,Wangenbourg,COMA,67518,0,WANGENBOURG,Wangenbourg,Wangenbourg +33,1974-11-01,COM,67351,1,OBERSEEBACH,Oberseebach,Oberseebach,COM,67351,0,SEEBACH,Seebach,Seebach 33,1974-11-01,COM,67518,0,WANGENBOURG,Wangenbourg,Wangenbourg,COM,67122,0,WANGENBOURG ENGENTHAL,Wangenbourg-Engenthal,Wangenbourg-Engenthal +33,1974-11-01,COM,67518,0,WANGENBOURG,Wangenbourg,Wangenbourg,COMA,67518,0,WANGENBOURG,Wangenbourg,Wangenbourg 31,1974-11-01,COM,91016,1,ANGERVILLE,Angerville,Angerville,COM,91016,1,ANGERVILLE,Angerville,Angerville 33,1974-10-08,COM,66100,0,LLO,Llo,Llo,COMA,66100,0,LLO,Llo,Llo 33,1974-10-08,COM,66100,0,LLO,Llo,Llo,COM,66167,0,SAILLAGOUSE LLO,Saillagouse-Llo,Saillagouse-Llo 33,1974-10-08,COM,66167,0,SAILLAGOUSE,Saillagouse,Saillagouse,COM,66167,0,SAILLAGOUSE LLO,Saillagouse-Llo,Saillagouse-Llo -33,1974-10-01,COM,02166,0,CHARTEVES,Chartèves,Chartèves,COM,02524,0,CHARMONT SUR MARNE,Charmont-sur-Marne,Charmont-sur-Marne -33,1974-10-01,COM,02166,0,CHARTEVES,Chartèves,Chartèves,COMA,02166,0,CHARTEVES,Chartèves,Chartèves -33,1974-10-01,COM,02524,0,MONT SAINT PERE,Mont-Saint-Père,Mont-Saint-Père,COM,02524,0,CHARMONT SUR MARNE,Charmont-sur-Marne,Charmont-sur-Marne -33,1974-10-01,COM,07270,0,SAINT MARTIN LE SUPERIEUR,Saint-Martin-le-Supérieur,Saint-Martin-le-Supérieur,COM,07270,0,SAINT MARTIN SUR LAVEZON,Saint-Martin-sur-Lavezon,Saint-Martin-sur-Lavezon -33,1974-10-01,COM,07271,0,SAINT MARTIN L INFERIEUR,Saint-Martin-l'Inférieur,Saint-Martin-l'Inférieur,COM,07270,0,SAINT MARTIN SUR LAVEZON,Saint-Martin-sur-Lavezon,Saint-Martin-sur-Lavezon -33,1974-10-01,COM,07271,0,SAINT MARTIN L INFERIEUR,Saint-Martin-l'Inférieur,Saint-Martin-l'Inférieur,COMA,07271,0,SAINT MARTIN L INFERIEUR,Saint-Martin-l'Inférieur,Saint-Martin-l'Inférieur -21,1974-10-01,COM,34154,0,MAUGUIO,Mauguio,Mauguio,COM,34154,0,MAUGUIO,Mauguio,Mauguio -21,1974-10-01,COM,34154,0,MAUGUIO,Mauguio,Mauguio,COM,34344,3,GRANDE MOTTE,Grande-Motte,La Grande-Motte -33,1974-10-01,COMA,53020,3,BAROCHE GONDOUIN,Baroche-Gondouin,La Baroche-Gondouin,COM,53127,0,LASSAY LES CHATEAUX,Lassay-les-Châteaux,Lassay-les-Châteaux -33,1974-10-01,COMA,53020,3,BAROCHE GONDOUIN,Baroche-Gondouin,La Baroche-Gondouin,COMA,53020,3,BAROCHE GONDOUIN,Baroche-Gondouin,La Baroche-Gondouin +33,1974-10-01,COM,2166,0,CHARTEVES,Chartèves,Chartèves,COMA,2166,0,CHARTEVES,Chartèves,Chartèves +33,1974-10-01,COM,2166,0,CHARTEVES,Chartèves,Chartèves,COM,2524,0,CHARMONT SUR MARNE,Charmont-sur-Marne,Charmont-sur-Marne +33,1974-10-01,COM,2524,0,MONT SAINT PERE,Mont-Saint-Père,Mont-Saint-Père,COM,2524,0,CHARMONT SUR MARNE,Charmont-sur-Marne,Charmont-sur-Marne +33,1974-10-01,COM,7270,0,SAINT MARTIN LE SUPERIEUR,Saint-Martin-le-Supérieur,Saint-Martin-le-Supérieur,COM,7270,0,SAINT MARTIN SUR LAVEZON,Saint-Martin-sur-Lavezon,Saint-Martin-sur-Lavezon +33,1974-10-01,COM,7271,0,SAINT MARTIN L INFERIEUR,Saint-Martin-l'Inférieur,Saint-Martin-l'Inférieur,COM,7270,0,SAINT MARTIN SUR LAVEZON,Saint-Martin-sur-Lavezon,Saint-Martin-sur-Lavezon +33,1974-10-01,COM,7271,0,SAINT MARTIN L INFERIEUR,Saint-Martin-l'Inférieur,Saint-Martin-l'Inférieur,COMA,7271,0,SAINT MARTIN L INFERIEUR,Saint-Martin-l'Inférieur,Saint-Martin-l'Inférieur +20,1974-10-01,COM,34154,0,MAUGUIO,Mauguio,Mauguio,COM,34154,0,MAUGUIO,Mauguio,Mauguio +20,1974-10-01,COM,34154,0,MAUGUIO,Mauguio,Mauguio,COM,34344,3,GRANDE MOTTE,Grande-Motte,La Grande-Motte 33,1974-10-01,COM,53127,0,LASSAY LES CHATEAUX,Lassay-les-Châteaux,Lassay-les-Châteaux,COM,53127,0,LASSAY LES CHATEAUX,Lassay-les-Châteaux,Lassay-les-Châteaux -33,1974-10-01,COMA,53149,0,MELLERAY LA VALLEE,Melleray-la-Vallée,Melleray-la-Vallée,COMA,53149,0,MELLERAY LA VALLEE,Melleray-la-Vallée,Melleray-la-Vallée -33,1974-10-01,COMA,53149,0,MELLERAY LA VALLEE,Melleray-la-Vallée,Melleray-la-Vallée,COM,53127,0,LASSAY LES CHATEAUX,Lassay-les-Châteaux,Lassay-les-Châteaux 33,1974-10-01,COM,53166,0,NIORT LA FONTAINE,Niort-la-Fontaine,Niort-la-Fontaine,COM,53127,0,LASSAY LES CHATEAUX,Lassay-les-Châteaux,Lassay-les-Châteaux 33,1974-10-01,COM,53166,0,NIORT LA FONTAINE,Niort-la-Fontaine,Niort-la-Fontaine,COMA,53166,0,NIORT LA FONTAINE,Niort-la-Fontaine,Niort-la-Fontaine 31,1974-09-01,COM,33041,0,BELIET,Béliet,Béliet,COM,33042,0,BELIN BELIET,Belin-Béliet,Belin-Béliet @@ -8521,8 +8387,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1974-08-01,COM,31154,0,COULEDOUX,Couledoux,Couledoux,COM,31085,0,BOUTX,Boutx,Boutx 33,1974-08-01,COM,31154,0,COULEDOUX,Couledoux,Couledoux,COMA,31154,0,COULEDOUX,Couledoux,Couledoux 33,1974-08-01,COM,32065,2,BROUILH,Brouilh,Le Brouilh,COM,32065,2,BROUILH MONBERT,Brouilh-Monbert,Le Brouilh-Monbert -33,1974-08-01,COM,32259,0,MONBERT,Monbert,Monbert,COMA,32259,0,MONBERT,Monbert,Monbert 33,1974-08-01,COM,32259,0,MONBERT,Monbert,Monbert,COM,32065,2,BROUILH MONBERT,Brouilh-Monbert,Le Brouilh-Monbert +33,1974-08-01,COM,32259,0,MONBERT,Monbert,Monbert,COMA,32259,0,MONBERT,Monbert,Monbert 31,1974-08-01,COM,76150,0,BUTOT EN CAUX,Butot-en-Caux,Butot-en-Caux,COM,76732,0,BUTOT VENESVILLE,Butot-Vénesville,Butot-Vénesville 31,1974-08-01,COM,76732,0,VENESVILLE,Vénesville,Vénesville,COM,76732,0,BUTOT VENESVILLE,Butot-Vénesville,Butot-Vénesville 33,1974-07-15,COM,67024,0,BEHLENHEIM,Behlenheim,Behlenheim,COMA,67024,0,BEHLENHEIM,Behlenheim,Behlenheim @@ -8537,41 +8403,27 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1974-07-01,COM,36070,1,EGUZON,Éguzon,Éguzon,COM,36070,1,EGUZON CHANTOME,Éguzon-Chantôme,Éguzon-Chantôme 33,1974-07-01,COM,52210,0,FRETTES,Frettes,Frettes,COMA,52210,0,FRETTES,Frettes,Frettes 33,1974-07-01,COM,52210,0,FRETTES,Frettes,Frettes,COM,70122,0,CHAMPLITTE,Champlitte,Champlitte -33,1974-07-01,COM,67012,1,ASCHBACH,Aschbach,Aschbach,COM,67484,0,STUNDWILLER,Stundwiller,Stundwiller 33,1974-07-01,COM,67012,1,ASCHBACH,Aschbach,Aschbach,COMA,67012,1,ASCHBACH,Aschbach,Aschbach -33,1974-07-01,COM,67349,1,OBERROEDERN,Oberrœdern,Oberrœdern,COM,67484,0,STUNDWILLER,Stundwiller,Stundwiller -33,1974-07-01,COM,67349,1,OBERROEDERN,Oberrœdern,Oberrœdern,COMA,67349,1,OBERROEDERN,Oberrœdern,Oberrœdern +33,1974-07-01,COM,67012,1,ASCHBACH,Aschbach,Aschbach,COM,67484,0,STUNDWILLER,Stundwiller,Stundwiller +33,1974-07-01,COM,67349,1,OBERRODERN,Oberrœdern,Oberrœdern,COMA,67349,1,OBERRODERN,Oberrœdern,Oberrœdern +33,1974-07-01,COM,67349,1,OBERRODERN,Oberrœdern,Oberrœdern,COM,67484,0,STUNDWILLER,Stundwiller,Stundwiller 33,1974-07-01,COM,67484,0,STUNDWILLER,Stundwiller,Stundwiller,COM,67484,0,STUNDWILLER,Stundwiller,Stundwiller 33,1974-07-01,COM,70122,0,CHAMPLITTE,Champlitte,Champlitte,COM,70122,0,CHAMPLITTE,Champlitte,Champlitte -33,1974-07-01,COMA,70123,0,CHAMPLITTE LA VILLE,Champlitte-la-Ville,Champlitte-la-Ville,COMA,70123,0,CHAMPLITTE LA VILLE,Champlitte-la-Ville,Champlitte-la-Ville -33,1974-07-01,COMA,70123,0,CHAMPLITTE LA VILLE,Champlitte-la-Ville,Champlitte-la-Ville,COM,70122,0,CHAMPLITTE,Champlitte,Champlitte -33,1974-07-01,COMA,70300,0,LEFFOND,Leffond,Leffond,COMA,70300,0,LEFFOND,Leffond,Leffond -33,1974-07-01,COMA,70300,0,LEFFOND,Leffond,Leffond,COM,70122,0,CHAMPLITTE,Champlitte,Champlitte -33,1974-07-01,COMA,70333,0,MARGILLEY,Margilley,Margilley,COM,70122,0,CHAMPLITTE,Champlitte,Champlitte -33,1974-07-01,COMA,70333,0,MARGILLEY,Margilley,Margilley,COMA,70333,0,MARGILLEY,Margilley,Margilley -33,1974-07-01,COMA,70354,0,MONTARLOT LES CHAMPLITTE,Montarlot-lès-Champlitte,Montarlot-lès-Champlitte,COM,70122,0,CHAMPLITTE,Champlitte,Champlitte -33,1974-07-01,COMA,70354,0,MONTARLOT LES CHAMPLITTE,Montarlot-lès-Champlitte,Montarlot-lès-Champlitte,COMA,70354,0,MONTARLOT LES CHAMPLITTE,Montarlot-lès-Champlitte,Montarlot-lès-Champlitte -33,1974-07-01,COMA,70382,0,NEUVELLE LES CHAMPLITTE,Neuvelle-lès-Champlitte,Neuvelle-lès-Champlitte,COMA,70382,0,NEUVELLE LES CHAMPLITTE,Neuvelle-lès-Champlitte,Neuvelle-lès-Champlitte -33,1974-07-01,COMA,70382,0,NEUVELLE LES CHAMPLITTE,Neuvelle-lès-Champlitte,Neuvelle-lès-Champlitte,COM,70122,0,CHAMPLITTE,Champlitte,Champlitte 33,1974-07-01,COM,78193,0,DAMPIERRE,Dampierre,Dampierre,COM,78193,0,DAMPIERRE EN YVELINES,Dampierre-en-Yvelines,Dampierre-en-Yvelines -33,1974-07-01,COM,78357,0,MAINCOURT SUR YVETTE,Maincourt-sur-Yvette,Maincourt-sur-Yvette,COMA,78357,0,MAINCOURT SUR YVETTE,Maincourt-sur-Yvette,Maincourt-sur-Yvette 33,1974-07-01,COM,78357,0,MAINCOURT SUR YVETTE,Maincourt-sur-Yvette,Maincourt-sur-Yvette,COM,78193,0,DAMPIERRE EN YVELINES,Dampierre-en-Yvelines,Dampierre-en-Yvelines +33,1974-07-01,COM,78357,0,MAINCOURT SUR YVETTE,Maincourt-sur-Yvette,Maincourt-sur-Yvette,COMA,78357,0,MAINCOURT SUR YVETTE,Maincourt-sur-Yvette,Maincourt-sur-Yvette 33,1974-07-01,COM,86057,0,CHAPELLE MORTHEMER,Chapelle-Morthemer,Chapelle-Morthemer,COMA,86057,0,CHAPELLE MORTHEMER,Chapelle-Morthemer,Chapelle-Morthemer 33,1974-07-01,COM,86057,0,CHAPELLE MORTHEMER,Chapelle-Morthemer,Chapelle-Morthemer,COM,86233,0,VALDIVIENNE,Valdivienne,Valdivienne 33,1974-07-01,COM,86233,0,VALDIVIENNE,Valdivienne,Valdivienne,COM,86233,0,VALDIVIENNE,Valdivienne,Valdivienne -10,1974-06-07,COM,24354,3,ROCHE DE SAINT MICHEL,Roche-de-Saint-Michel,La Roche-de-Saint-Michel,COMA,24467,0,SAINT MICHEL DE RIVIERE,Saint-Michel-de-Rivière,Saint-Michel-de-Rivière 10,1974-06-07,COM,24354,3,ROCHE DE SAINT MICHEL,Roche-de-Saint-Michel,La Roche-de-Saint-Michel,COM,24354,3,ROCHE CHALAIS,Roche-Chalais,La Roche-Chalais -10,1974-06-07,COM,24354,3,ROCHE DE SAINT MICHEL,Roche-de-Saint-Michel,La Roche-de-Saint-Michel,COMA,24469,0,SAINT MICHEL L ECLUSE ET LEPARON,Saint-Michel-l'Écluse-et-Léparon,Saint-Michel-l'Écluse-et-Léparon -10,1974-06-07,COMA,24467,0,SAINT MICHEL DE RIVIERE,Saint-Michel-de-Rivière,Saint-Michel-de-Rivière,COM,24354,3,ROCHE CHALAIS,Roche-Chalais,La Roche-Chalais -10,1974-06-07,COMA,24469,0,SAINT MICHEL L ECLUSE ET LEPARON,Saint-Michel-l'Écluse-et-Léparon,Saint-Michel-l'Écluse-et-Léparon,COM,24354,3,ROCHE CHALAIS,Roche-Chalais,La Roche-Chalais -33,1974-06-01,COM,05023,0,BRIANCON,Briançon,Briançon,COM,05023,0,BRIANCON,Briançon,Briançon -33,1974-06-01,COM,05109,0,PUY SAINT PIERRE,Puy-Saint-Pierre,Puy-Saint-Pierre,COM,05023,0,BRIANCON,Briançon,Briançon -33,1974-06-01,COM,05109,0,PUY SAINT PIERRE,Puy-Saint-Pierre,Puy-Saint-Pierre,COMA,05109,0,PUY SAINT PIERRE,Puy-Saint-Pierre,Puy-Saint-Pierre -33,1974-06-01,COM,08285,0,MEILLIER FONTAINE,Meillier-Fontaine,Meillier-Fontaine,COMA,08285,0,MEILLIER FONTAINE,Meillier-Fontaine,Meillier-Fontaine -33,1974-06-01,COM,08285,0,MEILLIER FONTAINE,Meillier-Fontaine,Meillier-Fontaine,COM,08328,0,NOUZONVILLE,Nouzonville,Nouzonville -33,1974-06-01,COM,08328,0,NOUZONVILLE,Nouzonville,Nouzonville,COM,08328,0,NOUZONVILLE,Nouzonville,Nouzonville -33,1974-06-01,COM,25337,0,LIEVREMONT,Lièvremont,Lièvremont,COM,25357,0,MAISONS DU BOIS LIEVREMONT,Maisons-du-Bois-Lièvremont,Maisons-du-Bois-Lièvremont +33,1974-06-01,COM,5023,0,BRIANCON,Briançon,Briançon,COM,5023,0,BRIANCON,Briançon,Briançon +33,1974-06-01,COM,5109,0,PUY SAINT PIERRE,Puy-Saint-Pierre,Puy-Saint-Pierre,COM,5023,0,BRIANCON,Briançon,Briançon +33,1974-06-01,COM,5109,0,PUY SAINT PIERRE,Puy-Saint-Pierre,Puy-Saint-Pierre,COMA,5109,0,PUY SAINT PIERRE,Puy-Saint-Pierre,Puy-Saint-Pierre +33,1974-06-01,COM,8285,0,MEILLIER FONTAINE,Meillier-Fontaine,Meillier-Fontaine,COMA,8285,0,MEILLIER FONTAINE,Meillier-Fontaine,Meillier-Fontaine +33,1974-06-01,COM,8285,0,MEILLIER FONTAINE,Meillier-Fontaine,Meillier-Fontaine,COM,8328,0,NOUZONVILLE,Nouzonville,Nouzonville +33,1974-06-01,COM,8328,0,NOUZONVILLE,Nouzonville,Nouzonville,COM,8328,0,NOUZONVILLE,Nouzonville,Nouzonville 33,1974-06-01,COM,25337,0,LIEVREMONT,Lièvremont,Lièvremont,COMA,25337,0,LIEVREMONT,Lièvremont,Lièvremont +33,1974-06-01,COM,25337,0,LIEVREMONT,Lièvremont,Lièvremont,COM,25357,0,MAISONS DU BOIS LIEVREMONT,Maisons-du-Bois-Lièvremont,Maisons-du-Bois-Lièvremont 33,1974-06-01,COM,25357,0,MAISONS DU BOIS,Maisons-du-Bois,Maisons-du-Bois,COM,25357,0,MAISONS DU BOIS LIEVREMONT,Maisons-du-Bois-Lièvremont,Maisons-du-Bois-Lièvremont 33,1974-06-01,COM,25527,0,SAINT VIT,Saint-Vit,Saint-Vit,COM,25527,0,SAINT VIT,Saint-Vit,Saint-Vit 33,1974-06-01,COM,39012,1,ANTORPE,Antorpe,Antorpe,COM,25527,0,SAINT VIT,Saint-Vit,Saint-Vit @@ -8580,25 +8432,23 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1974-06-01,COM,45090,0,CHEMAULT,Chemault,Chemault,COM,45035,0,BOISCOMMUN,Boiscommun,Boiscommun 33,1974-06-01,COM,45090,0,CHEMAULT,Chemault,Chemault,COMA,45090,0,CHEMAULT,Chemault,Chemault 33,1974-06-01,COM,56198,0,ROHAN,Rohan,Rohan,COM,56198,0,ROHAN,Rohan,Rohan -33,1974-06-01,COM,56217,0,SAINT GOUVRY,Saint-Gouvry,Saint-Gouvry,COMA,56217,0,SAINT GOUVRY,Saint-Gouvry,Saint-Gouvry 33,1974-06-01,COM,56217,0,SAINT GOUVRY,Saint-Gouvry,Saint-Gouvry,COM,56198,0,ROHAN,Rohan,Rohan -33,1974-06-01,COM,56235,0,SAINT SAMSON,Saint-Samson,Saint-Samson,COMA,56235,0,SAINT SAMSON,Saint-Samson,Saint-Samson +33,1974-06-01,COM,56217,0,SAINT GOUVRY,Saint-Gouvry,Saint-Gouvry,COMA,56217,0,SAINT GOUVRY,Saint-Gouvry,Saint-Gouvry 33,1974-06-01,COM,56235,0,SAINT SAMSON,Saint-Samson,Saint-Samson,COM,56198,0,ROHAN,Rohan,Rohan +33,1974-06-01,COM,56235,0,SAINT SAMSON,Saint-Samson,Saint-Samson,COMA,56235,0,SAINT SAMSON,Saint-Samson,Saint-Samson 33,1974-06-01,COM,67108,0,DUPPIGHEIM,Duppigheim,Duppigheim,COM,67108,0,DUPPIGHEIM,Duppigheim,Duppigheim 33,1974-06-01,COM,67247,0,KOLBSHEIM,Kolbsheim,Kolbsheim,COM,67108,0,DUPPIGHEIM,Duppigheim,Duppigheim 33,1974-06-01,COM,67247,0,KOLBSHEIM,Kolbsheim,Kolbsheim,COMA,67247,0,KOLBSHEIM,Kolbsheim,Kolbsheim -33,1974-05-01,COM,08113,0,CHAUMONT PORCIEN,Chaumont-Porcien,Chaumont-Porcien,COM,08113,0,CHAUMONT PORCIEN,Chaumont-Porcien,Chaumont-Porcien -33,1974-05-01,COMA,08213,3,HARDOYE,Hardoye,La Hardoye,COM,08366,0,ROCQUIGNY,Rocquigny,Rocquigny -33,1974-05-01,COMA,08213,3,HARDOYE,Hardoye,La Hardoye,COMA,08213,3,HARDOYE,Hardoye,La Hardoye -33,1974-05-01,COM,08258,0,LOGNY LES CHAUMONT,Logny-lès-Chaumont,Logny-lès-Chaumont,COM,08113,0,CHAUMONT PORCIEN,Chaumont-Porcien,Chaumont-Porcien -33,1974-05-01,COM,08258,0,LOGNY LES CHAUMONT,Logny-lès-Chaumont,Logny-lès-Chaumont,COMA,08258,0,LOGNY LES CHAUMONT,Logny-lès-Chaumont,Logny-lès-Chaumont -33,1974-05-01,COM,08265,0,MAINBRESSON,Mainbresson,Mainbresson,COMA,08265,0,MAINBRESSON,Mainbresson,Mainbresson -33,1974-05-01,COM,08265,0,MAINBRESSON,Mainbresson,Mainbresson,COM,08366,0,ROCQUIGNY,Rocquigny,Rocquigny -33,1974-05-01,COM,08266,0,MAINBRESSY,Mainbressy,Mainbressy,COMA,08266,0,MAINBRESSY,Mainbressy,Mainbressy -33,1974-05-01,COM,08266,0,MAINBRESSY,Mainbressy,Mainbressy,COM,08366,0,ROCQUIGNY,Rocquigny,Rocquigny -33,1974-05-01,COM,08366,0,ROCQUIGNY LA HARDOYE,Rocquigny-la-Hardoye,Rocquigny-la-Hardoye,COM,08366,0,ROCQUIGNY,Rocquigny,Rocquigny -33,1974-05-01,COM,08495,0,WADIMONT,Wadimont,Wadimont,COMA,08495,0,WADIMONT,Wadimont,Wadimont -33,1974-05-01,COM,08495,0,WADIMONT,Wadimont,Wadimont,COM,08113,0,CHAUMONT PORCIEN,Chaumont-Porcien,Chaumont-Porcien +33,1974-05-01,COM,8113,0,CHAUMONT PORCIEN,Chaumont-Porcien,Chaumont-Porcien,COM,8113,0,CHAUMONT PORCIEN,Chaumont-Porcien,Chaumont-Porcien +33,1974-05-01,COM,8258,0,LOGNY LES CHAUMONT,Logny-lès-Chaumont,Logny-lès-Chaumont,COM,8113,0,CHAUMONT PORCIEN,Chaumont-Porcien,Chaumont-Porcien +33,1974-05-01,COM,8258,0,LOGNY LES CHAUMONT,Logny-lès-Chaumont,Logny-lès-Chaumont,COMA,8258,0,LOGNY LES CHAUMONT,Logny-lès-Chaumont,Logny-lès-Chaumont +33,1974-05-01,COM,8265,0,MAINBRESSON,Mainbresson,Mainbresson,COMA,8265,0,MAINBRESSON,Mainbresson,Mainbresson +33,1974-05-01,COM,8265,0,MAINBRESSON,Mainbresson,Mainbresson,COM,8366,0,ROCQUIGNY,Rocquigny,Rocquigny +33,1974-05-01,COM,8266,0,MAINBRESSY,Mainbressy,Mainbressy,COMA,8266,0,MAINBRESSY,Mainbressy,Mainbressy +33,1974-05-01,COM,8266,0,MAINBRESSY,Mainbressy,Mainbressy,COM,8366,0,ROCQUIGNY,Rocquigny,Rocquigny +33,1974-05-01,COM,8366,0,ROCQUIGNY LA HARDOYE,Rocquigny-la-Hardoye,Rocquigny-la-Hardoye,COM,8366,0,ROCQUIGNY,Rocquigny,Rocquigny +33,1974-05-01,COM,8495,0,WADIMONT,Wadimont,Wadimont,COM,8113,0,CHAUMONT PORCIEN,Chaumont-Porcien,Chaumont-Porcien +33,1974-05-01,COM,8495,0,WADIMONT,Wadimont,Wadimont,COMA,8495,0,WADIMONT,Wadimont,Wadimont 33,1974-05-01,COM,57106,0,BOUZONVILLE,Bouzonville,Bouzonville,COM,57106,0,BOUZONVILLE,Bouzonville,Bouzonville 33,1974-05-01,COM,57110,0,BRETTNACH,Brettnach,Brettnach,COM,57106,0,BOUZONVILLE,Bouzonville,Bouzonville 33,1974-05-01,COM,57110,0,BRETTNACH,Brettnach,Brettnach,COMA,57110,0,BRETTNACH,Brettnach,Brettnach @@ -8606,18 +8456,18 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1974-05-01,COM,77497,0,VIEUX MAISONS,Vieux-Maisons,Vieux-Maisons,COM,77421,0,SAINT MARS VIEUX MAISONS,Saint-Mars-Vieux-Maisons,Saint-Mars-Vieux-Maisons 33,1974-05-01,COM,77497,0,VIEUX MAISONS,Vieux-Maisons,Vieux-Maisons,COMA,77497,0,VIEUX MAISONS,Vieux-Maisons,Vieux-Maisons 33,1974-04-15,COM,89069,0,CHAILLEY,Chailley,Chailley,COM,89069,0,CHAILLEY TURNY,Chailley-Turny,Chailley-Turny -33,1974-04-15,COM,89425,0,TURNY,Turny,Turny,COMA,89425,0,TURNY,Turny,Turny 33,1974-04-15,COM,89425,0,TURNY,Turny,Turny,COM,89069,0,CHAILLEY TURNY,Chailley-Turny,Chailley-Turny +33,1974-04-15,COM,89425,0,TURNY,Turny,Turny,COMA,89425,0,TURNY,Turny,Turny 31,1974-04-01,COM,20249,0,PROPRIANO,Propriano,Propriano,COM,20249,0,PROPRIANO,Propriano,Propriano 31,1974-04-01,COM,20325,0,TIVOLAGGIO,Tivolaggio,Tivolaggio,COM,20249,0,PROPRIANO,Propriano,Propriano 31,1974-04-01,COM,25023,1,ARCIER,Arcier,Arcier,COM,25575,0,VAIRE ARCIER,Vaire-Arcier,Vaire-Arcier -33,1974-04-01,COM,25292,0,GRANGES MAILLOT,Granges-Maillot,Granges-Maillot,COM,25334,0,LEVIER,Levier,Levier 33,1974-04-01,COM,25292,0,GRANGES MAILLOT,Granges-Maillot,Granges-Maillot,COMA,25292,0,GRANGES MAILLOT,Granges-Maillot,Granges-Maillot +33,1974-04-01,COM,25292,0,GRANGES MAILLOT,Granges-Maillot,Granges-Maillot,COM,25334,0,LEVIER,Levier,Levier 33,1974-04-01,COM,25334,0,LEVIER,Levier,Levier,COM,25334,0,LEVIER,Levier,Levier 31,1974-04-01,COM,25575,0,VAIRE LE GRAND,Vaire-le-Grand,Vaire-le-Grand,COM,25575,0,VAIRE ARCIER,Vaire-Arcier,Vaire-Arcier 33,1974-04-01,COM,42239,0,SAINT JEAN LE PUY,Saint-Jean-le-Puy,Saint-Jean-le-Puy,COM,42239,0,SAINT JEAN SAINT MAURICE SUR LOIRE,Saint-Jean-Saint-Maurice-sur-Loire,Saint-Jean-Saint-Maurice-sur-Loire -33,1974-04-01,COM,42263,0,SAINT MAURICE SUR LOIRE,Saint-Maurice-sur-Loire,Saint-Maurice-sur-Loire,COMA,42263,0,SAINT MAURICE SUR LOIRE,Saint-Maurice-sur-Loire,Saint-Maurice-sur-Loire 33,1974-04-01,COM,42263,0,SAINT MAURICE SUR LOIRE,Saint-Maurice-sur-Loire,Saint-Maurice-sur-Loire,COM,42239,0,SAINT JEAN SAINT MAURICE SUR LOIRE,Saint-Jean-Saint-Maurice-sur-Loire,Saint-Jean-Saint-Maurice-sur-Loire +33,1974-04-01,COM,42263,0,SAINT MAURICE SUR LOIRE,Saint-Maurice-sur-Loire,Saint-Maurice-sur-Loire,COMA,42263,0,SAINT MAURICE SUR LOIRE,Saint-Maurice-sur-Loire,Saint-Maurice-sur-Loire 33,1974-04-01,COM,67026,0,BELLEFOSSE,Bellefosse,Bellefosse,COMA,67026,0,BELLEFOSSE,Bellefosse,Bellefosse 33,1974-04-01,COM,67026,0,BELLEFOSSE,Bellefosse,Bellefosse,COM,67513,2,BAN DE LA ROCHE,Ban-de-la-Roche,Le Ban-de-la-Roche 33,1974-04-01,COM,67027,0,BELMONT,Belmont,Belmont,COMA,67027,0,BELMONT,Belmont,Belmont @@ -8627,150 +8477,126 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1974-04-01,COM,80457,0,LAHAYE SAINT ROMAIN,Lahaye-Saint-Romain,Lahaye-Saint-Romain,COM,80630,0,POIX DE PICARDIE,Poix-de-Picardie,Poix-de-Picardie 33,1974-04-01,COM,80630,0,POIX DE PICARDIE,Poix-de-Picardie,Poix-de-Picardie,COM,80630,0,POIX DE PICARDIE,Poix-de-Picardie,Poix-de-Picardie 33,1974-04-01,COM,85002,5,AIGUILLON SUR VIE,Aiguillon-sur-Vie,L'Aiguillon-sur-Vie,COM,85002,5,AIGUILLON LA CHAIZE,Aiguillon-la-Chaize,L'Aiguillon-la-Chaize -33,1974-04-01,COM,85045,3,CHAIZE GIRAUD,Chaize-Giraud,La Chaize-Giraud,COMA,85045,3,CHAIZE GIRAUD,Chaize-Giraud,La Chaize-Giraud 33,1974-04-01,COM,85045,3,CHAIZE GIRAUD,Chaize-Giraud,La Chaize-Giraud,COM,85002,5,AIGUILLON LA CHAIZE,Aiguillon-la-Chaize,L'Aiguillon-la-Chaize -33,1974-03-09,COMA,52033,1,AVRECOURT,Avrecourt,Avrecourt,COMA,52033,1,AVRECOURT,Avrecourt,Avrecourt -33,1974-03-09,COMA,52033,1,AVRECOURT,Avrecourt,Avrecourt,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse -33,1974-03-09,COMA,52186,1,EPINANT,Épinant,Épinant,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse -33,1974-03-09,COMA,52186,1,EPINANT,Épinant,Épinant,COMA,52186,1,EPINANT,Épinant,Épinant -33,1974-03-09,COMA,52281,0,LECOURT,Lécourt,Lécourt,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse -33,1974-03-09,COMA,52281,0,LECOURT,Lécourt,Lécourt,COMA,52281,0,LECOURT,Lécourt,Lécourt +33,1974-04-01,COM,85045,3,CHAIZE GIRAUD,Chaize-Giraud,La Chaize-Giraud,COMA,85045,3,CHAIZE GIRAUD,Chaize-Giraud,La Chaize-Giraud 33,1974-03-09,COM,52283,0,LENIZEUL,Lénizeul,Lénizeul,COMA,52283,0,LENIZEUL,Lénizeul,Lénizeul 33,1974-03-09,COM,52283,0,LENIZEUL,Lénizeul,Lénizeul,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse -33,1974-03-09,COMA,52317,0,MAULAIN,Maulain,Maulain,COMA,52317,0,MAULAIN,Maulain,Maulain -33,1974-03-09,COMA,52317,0,MAULAIN,Maulain,Maulain,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse 33,1974-03-09,COM,52332,2,VAL DE MEUSE,Val-de-Meuse,Le Val-de-Meuse,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse -33,1974-03-09,COMA,52410,0,PROVENCHERES SUR MEUSE,Provenchères-sur-Meuse,Provenchères-sur-Meuse,COMA,52410,0,PROVENCHERES SUR MEUSE,Provenchères-sur-Meuse,Provenchères-sur-Meuse -33,1974-03-09,COMA,52410,0,PROVENCHERES SUR MEUSE,Provenchères-sur-Meuse,Provenchères-sur-Meuse,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse -33,1974-03-09,COMA,52417,0,RAVENNEFONTAINES,Ravennefontaines,Ravennefontaines,COMA,52417,0,RAVENNEFONTAINES,Ravennefontaines,Ravennefontaines -33,1974-03-09,COMA,52417,0,RAVENNEFONTAINES,Ravennefontaines,Ravennefontaines,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse -33,1974-03-09,COMA,52418,0,RECOURT,Récourt,Récourt,COMA,52418,0,RECOURT,Récourt,Récourt -33,1974-03-09,COMA,52418,0,RECOURT,Récourt,Récourt,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse -33,1974-03-09,COMA,52465,0,SAULXURES,Saulxures,Saulxures,COMA,52465,0,SAULXURES,Saulxures,Saulxures -33,1974-03-09,COMA,52465,0,SAULXURES,Saulxures,Saulxures,COM,52332,0,VAL DE MEUSE,Val-de-Meuse,Val-de-Meuse -33,1974-03-01,COM,04038,0,CARNIOL,Carniol,Carniol,COMA,04038,0,CARNIOL,Carniol,Carniol -33,1974-03-01,COM,04038,0,CARNIOL,Carniol,Carniol,COM,04208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde -33,1974-03-01,COM,04052,0,CHATEAUNEUF LES MOUSTIERS,Châteauneuf-lès-Moustiers,Châteauneuf-lès-Moustiers,COM,04144,3,PALUD SUR VERDON,Palud-sur-Verdon,La Palud-sur-Verdon -33,1974-03-01,COM,04052,0,CHATEAUNEUF LES MOUSTIERS,Châteauneuf-lès-Moustiers,Châteauneuf-lès-Moustiers,COMA,04052,0,CHATEAUNEUF LES MOUSTIERS,Châteauneuf-lès-Moustiers,Châteauneuf-lès-Moustiers -31,1974-03-01,COM,04060,0,SAINT MICHEL PEYRESQ,Saint-Michel-Peyresq,Saint-Michel-Peyresq,COM,04219,0,THORAME HAUTE,Thorame-Haute,Thorame-Haute -31,1974-03-01,COM,04070,0,DIGNE,Digne,Digne,COM,04070,0,DIGNE,Digne,Digne -31,1974-03-01,COM,04071,4,DOURBES,Dourbes,Les Dourbes,COM,04070,0,DIGNE,Digne,Digne -33,1974-03-01,COM,04144,3,PALUD SUR VERDON,Palud-sur-Verdon,La Palud-sur-Verdon,COM,04144,3,PALUD SUR VERDON,Palud-sur-Verdon,La Palud-sur-Verdon -33,1974-03-01,COM,04208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde,COM,04208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde -31,1974-03-01,COM,04219,0,THORAME HAUTE,Thorame-Haute,Thorame-Haute,COM,04219,0,THORAME HAUTE,Thorame-Haute,Thorame-Haute -33,1974-03-01,COM,04232,0,VALSAINTES,Valsaintes,Valsaintes,COM,04208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde -33,1974-03-01,COM,04232,0,VALSAINTES,Valsaintes,Valsaintes,COMA,04232,0,VALSAINTES,Valsaintes,Valsaintes +33,1974-03-01,COM,4038,0,CARNIOL,Carniol,Carniol,COMA,4038,0,CARNIOL,Carniol,Carniol +33,1974-03-01,COM,4038,0,CARNIOL,Carniol,Carniol,COM,4208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde +33,1974-03-01,COM,4052,0,CHATEAUNEUF LES MOUSTIERS,Châteauneuf-lès-Moustiers,Châteauneuf-lès-Moustiers,COMA,4052,0,CHATEAUNEUF LES MOUSTIERS,Châteauneuf-lès-Moustiers,Châteauneuf-lès-Moustiers +33,1974-03-01,COM,4052,0,CHATEAUNEUF LES MOUSTIERS,Châteauneuf-lès-Moustiers,Châteauneuf-lès-Moustiers,COM,4144,3,PALUD SUR VERDON,Palud-sur-Verdon,La Palud-sur-Verdon +31,1974-03-01,COM,4060,0,SAINT MICHEL PEYRESQ,Saint-Michel-Peyresq,Saint-Michel-Peyresq,COM,4219,0,THORAME HAUTE,Thorame-Haute,Thorame-Haute +31,1974-03-01,COM,4070,0,DIGNE,Digne,Digne,COM,4070,0,DIGNE,Digne,Digne +31,1974-03-01,COM,4071,4,DOURBES,Dourbes,Les Dourbes,COM,4070,0,DIGNE,Digne,Digne +33,1974-03-01,COM,4144,3,PALUD SUR VERDON,Palud-sur-Verdon,La Palud-sur-Verdon,COM,4144,3,PALUD SUR VERDON,Palud-sur-Verdon,La Palud-sur-Verdon +33,1974-03-01,COM,4208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde,COM,4208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde +31,1974-03-01,COM,4219,0,THORAME HAUTE,Thorame-Haute,Thorame-Haute,COM,4219,0,THORAME HAUTE,Thorame-Haute,Thorame-Haute +33,1974-03-01,COM,4232,0,VALSAINTES,Valsaintes,Valsaintes,COM,4208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde +33,1974-03-01,COM,4232,0,VALSAINTES,Valsaintes,Valsaintes,COMA,4232,0,VALSAINTES,Valsaintes,Valsaintes 33,1974-03-01,COM,48099,2,MONASTIER,Monastier,Le Monastier,COM,48099,2,MONASTIER PIN MORIES,Monastier-Pin-Moriès,Le Monastier-Pin-Moriès -33,1974-03-01,COM,48113,0,PIN MORIES,Pin-Moriès,Pin-Moriès,COMA,48113,0,PIN MORIES,Pin-Moriès,Pin-Moriès 33,1974-03-01,COM,48113,0,PIN MORIES,Pin-Moriès,Pin-Moriès,COM,48099,2,MONASTIER PIN MORIES,Monastier-Pin-Moriès,Le Monastier-Pin-Moriès +33,1974-03-01,COM,48113,0,PIN MORIES,Pin-Moriès,Pin-Moriès,COMA,48113,0,PIN MORIES,Pin-Moriès,Pin-Moriès 33,1974-03-01,COM,49029,0,BLAISON,Blaison,Blaison,COM,49029,0,BLAISON GOHIER,Blaison-Gohier,Blaison-Gohier -33,1974-03-01,COM,49152,0,GOHIER,Gohier,Gohier,COMA,49152,0,GOHIER,Gohier,Gohier 33,1974-03-01,COM,49152,0,GOHIER,Gohier,Gohier,COM,49029,0,BLAISON GOHIER,Blaison-Gohier,Blaison-Gohier -33,1974-03-01,COM,67057,0,BOSSELSHAUSEN,Bosselshausen,Bosselshausen,COM,67242,0,KIRRWILLER BOSSELSHAUSEN,Kirrwiller-Bosselshausen,Kirrwiller-Bosselshausen +33,1974-03-01,COM,49152,0,GOHIER,Gohier,Gohier,COMA,49152,0,GOHIER,Gohier,Gohier 33,1974-03-01,COM,67057,0,BOSSELSHAUSEN,Bosselshausen,Bosselshausen,COMA,67057,0,BOSSELSHAUSEN,Bosselshausen,Bosselshausen +33,1974-03-01,COM,67057,0,BOSSELSHAUSEN,Bosselshausen,Bosselshausen,COM,67242,0,KIRRWILLER BOSSELSHAUSEN,Kirrwiller-Bosselshausen,Kirrwiller-Bosselshausen 33,1974-03-01,COM,67242,0,KIRRWILLER,Kirrwiller,Kirrwiller,COM,67242,0,KIRRWILLER BOSSELSHAUSEN,Kirrwiller-Bosselshausen,Kirrwiller-Bosselshausen 33,1974-03-01,COM,69066,0,COURS,Cours,Cours,COM,69066,0,COURS LA VILLE,Cours-la-Ville,Cours-la-Ville -33,1974-03-01,COM,69262,3,VILLE,Ville,La Ville,COMA,69262,3,VILLE,Ville,La Ville 33,1974-03-01,COM,69262,3,VILLE,Ville,La Ville,COM,69066,0,COURS LA VILLE,Cours-la-Ville,Cours-la-Ville +33,1974-03-01,COM,69262,3,VILLE,Ville,La Ville,COMA,69262,3,VILLE,Ville,La Ville 10,1974-02-13,COM,18026,0,BELLEVILLE,Belleville,Belleville,COM,18026,0,BELLEVILLE SUR LOIRE,Belleville-sur-Loire,Belleville-sur-Loire 10,1974-02-13,COM,19085,0,GIMEL,Gimel,Gimel,COM,19085,0,GIMEL LES CASCADES,Gimel-les-Cascades,Gimel-les-Cascades 10,1974-02-13,COM,51393,0,NANTEUIL LA FOSSE,Nanteuil-la-Fosse,Nanteuil-la-Fosse,COM,51393,0,NANTEUIL LA FORET,Nanteuil-la-Forêt,Nanteuil-la-Forêt 10,1974-02-13,COM,59488,0,RAILLENCOURT,Raillencourt,Raillencourt,COM,59488,0,RAILLENCOURT SAINTE OLLE,Raillencourt-Sainte-Olle,Raillencourt-Sainte-Olle -10,1974-02-13,COMA,70034,1,AUBIGNEY,Aubigney,Aubigney,COM,70101,0,BROYE AUBIGNEY MONTSEUGNY,Broye-Aubigney-Montseugny,Broye-Aubigney-Montseugny -10,1974-02-13,COM,70101,0,BROYE LES PESMES AUBIGNEY MONTSEUGNY,Broye-lès-Pesmes-Aubigney-Montseugny,Broye-lès-Pesmes-Aubigney-Montseugny,COMA,70370,0,MONTSEUGNY,Montseugny,Montseugny 10,1974-02-13,COM,70101,0,BROYE LES PESMES AUBIGNEY MONTSEUGNY,Broye-lès-Pesmes-Aubigney-Montseugny,Broye-lès-Pesmes-Aubigney-Montseugny,COM,70101,0,BROYE AUBIGNEY MONTSEUGNY,Broye-Aubigney-Montseugny,Broye-Aubigney-Montseugny -10,1974-02-13,COM,70101,0,BROYE LES PESMES AUBIGNEY MONTSEUGNY,Broye-lès-Pesmes-Aubigney-Montseugny,Broye-lès-Pesmes-Aubigney-Montseugny,COMA,70034,1,AUBIGNEY,Aubigney,Aubigney 10,1974-02-13,COM,70176,0,PLAIN DE CORRAVILLERS,Plain-de-Corravillers,Plain-de-Corravillers,COM,70176,0,CORRAVILLERS,Corravillers,Corravillers -10,1974-02-13,COMA,70370,0,MONTSEUGNY,Montseugny,Montseugny,COM,70101,0,BROYE AUBIGNEY MONTSEUGNY,Broye-Aubigney-Montseugny,Broye-Aubigney-Montseugny 10,1974-02-13,COM,77006,1,ARBONNE,Arbonne,Arbonne,COM,77006,1,ARBONNE LA FORET,Arbonne-la-Forêt,Arbonne-la-Forêt 10,1974-02-13,COM,77126,0,CONGIS,Congis,Congis,COM,77126,0,CONGIS SUR THEROUANNE,Congis-sur-Thérouanne,Congis-sur-Thérouanne 33,1974-02-01,COM,52113,0,CHASSIGNY AISEY,Chassigny-Aisey,Chassigny-Aisey,COM,52113,0,CHASSIGNY AISEY,Chassigny-Aisey,Chassigny-Aisey -33,1974-02-01,COMA,52145,0,COUBLANC,Coublanc,Coublanc,COM,52113,0,CHASSIGNY AISEY,Chassigny-Aisey,Chassigny-Aisey -33,1974-02-01,COMA,52145,0,COUBLANC,Coublanc,Coublanc,COMA,52145,0,COUBLANC,Coublanc,Coublanc -33,1974-02-01,COMA,52170,0,DOMMARIEN,Dommarien,Dommarien,COM,52113,0,CHASSIGNY AISEY,Chassigny-Aisey,Chassigny-Aisey -33,1974-02-01,COMA,52170,0,DOMMARIEN,Dommarien,Dommarien,COMA,52170,0,DOMMARIEN,Dommarien,Dommarien -33,1974-02-01,COM,52228,0,GRANDCHAMP,Grandchamp,Grandchamp,COMA,52228,0,GRANDCHAMP,Grandchamp,Grandchamp 33,1974-02-01,COM,52228,0,GRANDCHAMP,Grandchamp,Grandchamp,COM,52113,0,CHASSIGNY AISEY,Chassigny-Aisey,Chassigny-Aisey +33,1974-02-01,COM,52228,0,GRANDCHAMP,Grandchamp,Grandchamp,COMA,52228,0,GRANDCHAMP,Grandchamp,Grandchamp 33,1974-02-01,COM,67340,1,OBERBRONN,Oberbronn,Oberbronn,COM,67340,1,OBERBRONN ZINSWILLER,Oberbronn-Zinswiller,Oberbronn-Zinswiller 33,1974-02-01,COM,67558,0,ZINSWILLER,Zinswiller,Zinswiller,COM,67340,1,OBERBRONN ZINSWILLER,Oberbronn-Zinswiller,Oberbronn-Zinswiller 33,1974-02-01,COM,67558,0,ZINSWILLER,Zinswiller,Zinswiller,COMA,67558,0,ZINSWILLER,Zinswiller,Zinswiller -33,1974-01-01,COM,01003,1,AMAREINS,Amareins,Amareins,COM,01165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins -33,1974-01-01,COM,01003,1,AMAREINS,Amareins,Amareins,COMA,01003,1,AMAREINS,Amareins,Amareins -33,1974-01-01,COM,01048,0,BOHAS,Bohas,Bohas,COMA,01048,0,BOHAS,Bohas,Bohas -33,1974-01-01,COM,01048,0,BOHAS,Bohas,Bohas,COM,01245,0,BOHAS MEYRIAT RIGNAT,Bohas-Meyriat-Rignat,Bohas-Meyriat-Rignat -33,1974-01-01,COM,01070,0,CESSEINS,Cesseins,Cesseins,COMA,01070,0,CESSEINS,Cesseins,Cesseins -33,1974-01-01,COM,01070,0,CESSEINS,Cesseins,Cesseins,COM,01165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins -33,1974-01-01,COM,01086,0,CHARANCIN,Charancin,Charancin,COMA,01086,0,CHARANCIN,Charancin,Charancin -33,1974-01-01,COM,01086,0,CHARANCIN,Charancin,Charancin,COM,01414,0,SUTRIEU,Sutrieu,Sutrieu -33,1974-01-01,COM,01161,0,FITIGNIEU,Fitignieu,Fitignieu,COMA,01161,0,FITIGNIEU,Fitignieu,Fitignieu -33,1974-01-01,COM,01161,0,FITIGNIEU,Fitignieu,Fitignieu,COM,01414,0,SUTRIEU,Sutrieu,Sutrieu -33,1974-01-01,COM,01165,0,FRANCHELEINS,Francheleins,Francheleins,COM,01165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins -33,1974-01-01,COM,01223,0,LOYES,Loyes,Loyes,COMA,01223,0,LOYES,Loyes,Loyes -33,1974-01-01,COM,01223,0,LOYES,Loyes,Loyes,COM,01450,0,VILLIEU LOYES MOLLON,Villieu-Loyes-Mollon,Villieu-Loyes-Mollon -33,1974-01-01,COM,01245,0,MEYRIAT,Meyriat,Meyriat,COM,01245,0,BOHAS MEYRIAT RIGNAT,Bohas-Meyriat-Rignat,Bohas-Meyriat-Rignat -33,1974-01-01,COM,01253,0,MOLLON,Mollon,Mollon,COM,01450,0,VILLIEU LOYES MOLLON,Villieu-Loyes-Mollon,Villieu-Loyes-Mollon -33,1974-01-01,COM,01253,0,MOLLON,Mollon,Mollon,COMA,01253,0,MOLLON,Mollon,Mollon -31,1974-01-01,COM,01270,0,NAPT,Napt,Napt,COM,01410,0,SONTHONNAX LA MONTAGNE,Sonthonnax-la-Montagne,Sonthonnax-la-Montagne -33,1974-01-01,COM,01324,0,RIGNAT,Rignat,Rignat,COMA,01324,0,RIGNAT,Rignat,Rignat -33,1974-01-01,COM,01324,0,RIGNAT,Rignat,Rignat,COM,01245,0,BOHAS MEYRIAT RIGNAT,Bohas-Meyriat-Rignat,Bohas-Meyriat-Rignat -31,1974-01-01,COM,01410,0,SONTHONNAX LA MONTAGNE,Sonthonnax-la-Montagne,Sonthonnax-la-Montagne,COM,01410,0,SONTHONNAX LA MONTAGNE,Sonthonnax-la-Montagne,Sonthonnax-la-Montagne -33,1974-01-01,COM,01414,0,SUTRIEU,Sutrieu,Sutrieu,COM,01414,0,SUTRIEU,Sutrieu,Sutrieu -33,1974-01-01,COM,01450,0,VILLIEU,Villieu,Villieu,COM,01450,0,VILLIEU LOYES MOLLON,Villieu-Loyes-Mollon,Villieu-Loyes-Mollon -33,1974-01-01,COM,02300,0,FARGNIERS,Fargniers,Fargniers,COMA,02300,0,FARGNIERS,Fargniers,Fargniers -33,1974-01-01,COM,02300,0,FARGNIERS,Fargniers,Fargniers,COM,02738,0,TERGNIER,Tergnier,Tergnier -33,1974-01-01,COM,02738,0,TERGNIER,Tergnier,Tergnier,COM,02738,0,TERGNIER,Tergnier,Tergnier -33,1974-01-01,COM,02825,0,VOUEL,Vouël,Vouël,COM,02738,0,TERGNIER,Tergnier,Tergnier -33,1974-01-01,COM,02825,0,VOUEL,Vouël,Vouël,COMA,02825,0,VOUEL,Vouël,Vouël -33,1974-01-01,COM,04010,1,ARGENS,Argens,Argens,COM,04136,3,MURE ARGENS,Mure-Argens,La Mure-Argens -33,1974-01-01,COM,04010,1,ARGENS,Argens,Argens,COMA,04010,1,ARGENS,Argens,Argens -33,1974-01-01,COM,04014,1,AUGES,Augès,Augès,COMA,04014,1,AUGES,Augès,Augès -33,1974-01-01,COM,04014,1,AUGES,Augès,Augès,COM,04109,0,MALLEFOUGASSE AUGES,Mallefougasse-Augès,Mallefougasse-Augès -33,1974-01-01,COM,04043,0,CASTELLET SAINT CASSIEN,Castellet-Saint-Cassien,Castellet-Saint-Cassien,COM,04043,0,VAL DE CHALVAGNE,Val-de-Chalvagne,Val-de-Chalvagne -31,1974-01-01,COM,04056,0,CHENERILLES,Chénerilles,Chénerilles,COM,04108,0,MALIJAI,Malijai,Malijai -33,1974-01-01,COM,04075,1,ENTREPIERRES,Entrepierres,Entrepierres,COM,04075,1,ENTREPIERRES,Entrepierres,Entrepierres -33,1974-01-01,COM,04105,0,LINCEL,Lincel,Lincel,COM,04192,0,SAINT MICHEL L OBSERVATOIRE,Saint-Michel-l'Observatoire,Saint-Michel-l'Observatoire -33,1974-01-01,COM,04105,0,LINCEL,Lincel,Lincel,COMA,04105,0,LINCEL,Lincel,Lincel -31,1974-01-01,COM,04108,0,MALIJAI,Malijai,Malijai,COM,04108,0,MALIJAI,Malijai,Malijai -33,1974-01-01,COM,04109,0,MALLEFOUGASSE,Mallefougasse,Mallefougasse,COM,04109,0,MALLEFOUGASSE AUGES,Mallefougasse-Augès,Mallefougasse-Augès -33,1974-01-01,COM,04124,0,MONTAGNAC,Montagnac,Montagnac,COM,04124,0,MONTAGNAC MONTPEZAT,Montagnac-Montpezat,Montagnac-Montpezat -33,1974-01-01,COM,04125,0,MONTBLANC,Montblanc,Montblanc,COM,04043,0,VAL DE CHALVAGNE,Val-de-Chalvagne,Val-de-Chalvagne -33,1974-01-01,COM,04125,0,MONTBLANC,Montblanc,Montblanc,COMA,04125,0,MONTBLANC,Montblanc,Montblanc -33,1974-01-01,COM,04131,0,MONTPEZAT,Montpezat,Montpezat,COM,04124,0,MONTAGNAC MONTPEZAT,Montagnac-Montpezat,Montagnac-Montpezat -33,1974-01-01,COM,04131,0,MONTPEZAT,Montpezat,Montpezat,COMA,04131,0,MONTPEZAT,Montpezat,Montpezat -33,1974-01-01,COM,04136,3,MURE,Mure,La Mure,COM,04136,3,MURE ARGENS,Mure-Argens,La Mure-Argens -31,1974-01-01,COM,04146,3,PERUSSE,Pérusse,La Pérusse,COM,04217,0,THOARD,Thoard,Thoard -33,1974-01-01,COM,04153,2,POIL,Poil,Le Poil,COM,04204,0,SENEZ,Senez,Senez -33,1974-01-01,COM,04153,2,POIL,Poil,Le Poil,COMA,04153,2,POIL,Poil,Le Poil -33,1974-01-01,COM,04192,0,SAINT MICHEL L OBSERVATOIRE,Saint-Michel-l'Observatoire,Saint-Michel-l'Observatoire,COM,04192,0,SAINT MICHEL L OBSERVATOIRE,Saint-Michel-l'Observatoire,Saint-Michel-l'Observatoire -33,1974-01-01,COM,04196,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,COMA,04196,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien -33,1974-01-01,COM,04196,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,COM,04075,1,ENTREPIERRES,Entrepierres,Entrepierres -33,1974-01-01,COM,04204,0,SENEZ,Senez,Senez,COM,04204,0,SENEZ,Senez,Senez -31,1974-01-01,COM,04217,0,THOARD,Thoard,Thoard,COM,04217,0,THOARD,Thoard,Thoard -33,1974-01-01,COM,04238,0,VILHOSC,Vilhosc,Vilhosc,COMA,04238,0,VILHOSC,Vilhosc,Vilhosc -33,1974-01-01,COM,04238,0,VILHOSC,Vilhosc,Vilhosc,COM,04075,1,ENTREPIERRES,Entrepierres,Entrepierres -33,1974-01-01,COM,04243,0,VILLEVIEILLE,Villevieille,Villevieille,COM,04043,0,VAL DE CHALVAGNE,Val-de-Chalvagne,Val-de-Chalvagne -33,1974-01-01,COM,04243,0,VILLEVIEILLE,Villevieille,Villevieille,COMA,04243,0,VILLEVIEILLE,Villevieille,Villevieille +33,1974-01-01,COM,1003,1,AMAREINS,Amareins,Amareins,COMA,1003,1,AMAREINS,Amareins,Amareins +33,1974-01-01,COM,1003,1,AMAREINS,Amareins,Amareins,COM,1165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins +33,1974-01-01,COM,1048,0,BOHAS,Bohas,Bohas,COMA,1048,0,BOHAS,Bohas,Bohas +33,1974-01-01,COM,1048,0,BOHAS,Bohas,Bohas,COM,1245,0,BOHAS MEYRIAT RIGNAT,Bohas-Meyriat-Rignat,Bohas-Meyriat-Rignat +33,1974-01-01,COM,1070,0,CESSEINS,Cesseins,Cesseins,COMA,1070,0,CESSEINS,Cesseins,Cesseins +33,1974-01-01,COM,1070,0,CESSEINS,Cesseins,Cesseins,COM,1165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins +33,1974-01-01,COM,1086,0,CHARANCIN,Charancin,Charancin,COMA,1086,0,CHARANCIN,Charancin,Charancin +33,1974-01-01,COM,1086,0,CHARANCIN,Charancin,Charancin,COM,1414,0,SUTRIEU,Sutrieu,Sutrieu +33,1974-01-01,COM,1161,0,FITIGNIEU,Fitignieu,Fitignieu,COMA,1161,0,FITIGNIEU,Fitignieu,Fitignieu +33,1974-01-01,COM,1161,0,FITIGNIEU,Fitignieu,Fitignieu,COM,1414,0,SUTRIEU,Sutrieu,Sutrieu +33,1974-01-01,COM,1165,0,FRANCHELEINS,Francheleins,Francheleins,COM,1165,1,AMAREINS FRANCHELEINS CESSEINS,Amareins-Francheleins-Cesseins,Amareins-Francheleins-Cesseins +33,1974-01-01,COM,1223,0,LOYES,Loyes,Loyes,COMA,1223,0,LOYES,Loyes,Loyes +33,1974-01-01,COM,1223,0,LOYES,Loyes,Loyes,COM,1450,0,VILLIEU LOYES MOLLON,Villieu-Loyes-Mollon,Villieu-Loyes-Mollon +33,1974-01-01,COM,1245,0,MEYRIAT,Meyriat,Meyriat,COM,1245,0,BOHAS MEYRIAT RIGNAT,Bohas-Meyriat-Rignat,Bohas-Meyriat-Rignat +33,1974-01-01,COM,1253,0,MOLLON,Mollon,Mollon,COMA,1253,0,MOLLON,Mollon,Mollon +33,1974-01-01,COM,1253,0,MOLLON,Mollon,Mollon,COM,1450,0,VILLIEU LOYES MOLLON,Villieu-Loyes-Mollon,Villieu-Loyes-Mollon +31,1974-01-01,COM,1270,0,NAPT,Napt,Napt,COM,1410,0,SONTHONNAX LA MONTAGNE,Sonthonnax-la-Montagne,Sonthonnax-la-Montagne +33,1974-01-01,COM,1324,0,RIGNAT,Rignat,Rignat,COM,1245,0,BOHAS MEYRIAT RIGNAT,Bohas-Meyriat-Rignat,Bohas-Meyriat-Rignat +33,1974-01-01,COM,1324,0,RIGNAT,Rignat,Rignat,COMA,1324,0,RIGNAT,Rignat,Rignat +31,1974-01-01,COM,1410,0,SONTHONNAX LA MONTAGNE,Sonthonnax-la-Montagne,Sonthonnax-la-Montagne,COM,1410,0,SONTHONNAX LA MONTAGNE,Sonthonnax-la-Montagne,Sonthonnax-la-Montagne +33,1974-01-01,COM,1414,0,SUTRIEU,Sutrieu,Sutrieu,COM,1414,0,SUTRIEU,Sutrieu,Sutrieu +33,1974-01-01,COM,1450,0,VILLIEU,Villieu,Villieu,COM,1450,0,VILLIEU LOYES MOLLON,Villieu-Loyes-Mollon,Villieu-Loyes-Mollon +33,1974-01-01,COM,2300,0,FARGNIERS,Fargniers,Fargniers,COMA,2300,0,FARGNIERS,Fargniers,Fargniers +33,1974-01-01,COM,2300,0,FARGNIERS,Fargniers,Fargniers,COM,2738,0,TERGNIER,Tergnier,Tergnier +33,1974-01-01,COM,2738,0,TERGNIER,Tergnier,Tergnier,COM,2738,0,TERGNIER,Tergnier,Tergnier +33,1974-01-01,COM,2825,0,VOUEL,Vouël,Vouël,COM,2738,0,TERGNIER,Tergnier,Tergnier +33,1974-01-01,COM,2825,0,VOUEL,Vouël,Vouël,COMA,2825,0,VOUEL,Vouël,Vouël +33,1974-01-01,COM,4010,1,ARGENS,Argens,Argens,COMA,4010,1,ARGENS,Argens,Argens +33,1974-01-01,COM,4010,1,ARGENS,Argens,Argens,COM,4136,3,MURE ARGENS,Mure-Argens,La Mure-Argens +33,1974-01-01,COM,4014,1,AUGES,Augès,Augès,COMA,4014,1,AUGES,Augès,Augès +33,1974-01-01,COM,4014,1,AUGES,Augès,Augès,COM,4109,0,MALLEFOUGASSE AUGES,Mallefougasse-Augès,Mallefougasse-Augès +33,1974-01-01,COM,4043,0,CASTELLET SAINT CASSIEN,Castellet-Saint-Cassien,Castellet-Saint-Cassien,COM,4043,0,VAL DE CHALVAGNE,Val-de-Chalvagne,Val-de-Chalvagne +31,1974-01-01,COM,4056,0,CHENERILLES,Chénerilles,Chénerilles,COM,4108,0,MALIJAI,Malijai,Malijai +33,1974-01-01,COM,4075,1,ENTREPIERRES,Entrepierres,Entrepierres,COM,4075,1,ENTREPIERRES,Entrepierres,Entrepierres +33,1974-01-01,COM,4105,0,LINCEL,Lincel,Lincel,COMA,4105,0,LINCEL,Lincel,Lincel +33,1974-01-01,COM,4105,0,LINCEL,Lincel,Lincel,COM,4192,0,SAINT MICHEL L OBSERVATOIRE,Saint-Michel-l'Observatoire,Saint-Michel-l'Observatoire +31,1974-01-01,COM,4108,0,MALIJAI,Malijai,Malijai,COM,4108,0,MALIJAI,Malijai,Malijai +33,1974-01-01,COM,4109,0,MALLEFOUGASSE,Mallefougasse,Mallefougasse,COM,4109,0,MALLEFOUGASSE AUGES,Mallefougasse-Augès,Mallefougasse-Augès +33,1974-01-01,COM,4124,0,MONTAGNAC,Montagnac,Montagnac,COM,4124,0,MONTAGNAC MONTPEZAT,Montagnac-Montpezat,Montagnac-Montpezat +33,1974-01-01,COM,4125,0,MONTBLANC,Montblanc,Montblanc,COM,4043,0,VAL DE CHALVAGNE,Val-de-Chalvagne,Val-de-Chalvagne +33,1974-01-01,COM,4125,0,MONTBLANC,Montblanc,Montblanc,COMA,4125,0,MONTBLANC,Montblanc,Montblanc +33,1974-01-01,COM,4131,0,MONTPEZAT,Montpezat,Montpezat,COM,4124,0,MONTAGNAC MONTPEZAT,Montagnac-Montpezat,Montagnac-Montpezat +33,1974-01-01,COM,4131,0,MONTPEZAT,Montpezat,Montpezat,COMA,4131,0,MONTPEZAT,Montpezat,Montpezat +33,1974-01-01,COM,4136,3,MURE,Mure,La Mure,COM,4136,3,MURE ARGENS,Mure-Argens,La Mure-Argens +31,1974-01-01,COM,4146,3,PERUSSE,Pérusse,La Pérusse,COM,4217,0,THOARD,Thoard,Thoard +33,1974-01-01,COM,4153,2,POIL,Poil,Le Poil,COMA,4153,2,POIL,Poil,Le Poil +33,1974-01-01,COM,4153,2,POIL,Poil,Le Poil,COM,4204,0,SENEZ,Senez,Senez +33,1974-01-01,COM,4192,0,SAINT MICHEL L OBSERVATOIRE,Saint-Michel-l'Observatoire,Saint-Michel-l'Observatoire,COM,4192,0,SAINT MICHEL L OBSERVATOIRE,Saint-Michel-l'Observatoire,Saint-Michel-l'Observatoire +33,1974-01-01,COM,4196,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,COM,4075,1,ENTREPIERRES,Entrepierres,Entrepierres +33,1974-01-01,COM,4196,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,COMA,4196,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien +33,1974-01-01,COM,4204,0,SENEZ,Senez,Senez,COM,4204,0,SENEZ,Senez,Senez +31,1974-01-01,COM,4217,0,THOARD,Thoard,Thoard,COM,4217,0,THOARD,Thoard,Thoard +33,1974-01-01,COM,4238,0,VILHOSC,Vilhosc,Vilhosc,COM,4075,1,ENTREPIERRES,Entrepierres,Entrepierres +33,1974-01-01,COM,4238,0,VILHOSC,Vilhosc,Vilhosc,COMA,4238,0,VILHOSC,Vilhosc,Vilhosc +33,1974-01-01,COM,4243,0,VILLEVIEILLE,Villevieille,Villevieille,COM,4043,0,VAL DE CHALVAGNE,Val-de-Chalvagne,Val-de-Chalvagne +33,1974-01-01,COM,4243,0,VILLEVIEILLE,Villevieille,Villevieille,COMA,4243,0,VILLEVIEILLE,Villevieille,Villevieille 33,1974-01-01,COM,16126,1,EMBOURIE,Embourie,Embourie,COMA,16126,1,EMBOURIE,Embourie,Embourie 33,1974-01-01,COM,16126,1,EMBOURIE,Embourie,Embourie,COM,16253,0,PAIZAY NAUDOUIN EMBOURIE,Paizay-Naudouin-Embourie,Paizay-Naudouin-Embourie 33,1974-01-01,COM,16253,0,PAIZAY NAUDOUIN,Paizay-Naudouin,Paizay-Naudouin,COM,16253,0,PAIZAY NAUDOUIN EMBOURIE,Paizay-Naudouin-Embourie,Paizay-Naudouin-Embourie 33,1974-01-01,COM,17013,1,ANTEZANT,Antezant,Antezant,COM,17013,1,ANTEZANT LA CHAPELLE,Antezant-la-Chapelle,Antezant-la-Chapelle -33,1974-01-01,COM,17014,1,ANTIGNAC,Antignac,Antignac,COM,17332,0,SAINT GEORGES ANTIGNAC,Saint-Georges-Antignac,Saint-Georges-Antignac 33,1974-01-01,COM,17014,1,ANTIGNAC,Antignac,Antignac,COMA,17014,1,ANTIGNAC,Antignac,Antignac +33,1974-01-01,COM,17014,1,ANTIGNAC,Antignac,Antignac,COM,17332,0,SAINT GEORGES ANTIGNAC,Saint-Georges-Antignac,Saint-Georges-Antignac 33,1974-01-01,COM,17088,3,CHAPELLE BATON,Chapelle-Bâton,La Chapelle-Bâton,COM,17013,1,ANTEZANT LA CHAPELLE,Antezant-la-Chapelle,Antezant-la-Chapelle 33,1974-01-01,COM,17088,3,CHAPELLE BATON,Chapelle-Bâton,La Chapelle-Bâton,COMA,17088,3,CHAPELLE BATON,Chapelle-Bâton,La Chapelle-Bâton 31,1974-01-01,COM,17251,0,MOULONS,Moulons,Moulons,COM,17282,0,POMMIERS MOULONS,Pommiers-Moulons,Pommiers-Moulons 31,1974-01-01,COM,17282,0,POMMIERS,Pommiers,Pommiers,COM,17282,0,POMMIERS MOULONS,Pommiers-Moulons,Pommiers-Moulons 33,1974-01-01,COM,17332,0,SAINT GEORGES DE CUBILLAC,Saint-Georges-de-Cubillac,Saint-Georges-de-Cubillac,COM,17332,0,SAINT GEORGES ANTIGNAC,Saint-Georges-Antignac,Saint-Georges-Antignac -33,1974-01-01,COM,24049,0,BORN DE CHAMPS,Born-de-Champs,Born-de-Champs,COM,24497,0,SAINTE SABINE BORN,Sainte-Sabine-Born,Sainte-Sabine-Born 33,1974-01-01,COM,24049,0,BORN DE CHAMPS,Born-de-Champs,Born-de-Champs,COMA,24049,0,BORN DE CHAMPS,Born-de-Champs,Born-de-Champs +33,1974-01-01,COM,24049,0,BORN DE CHAMPS,Born-de-Champs,Born-de-Champs,COM,24497,0,SAINTE SABINE BORN,Sainte-Sabine-Born,Sainte-Sabine-Born 33,1974-01-01,COM,24068,2,BUISSON CUSSAC,Buisson-Cussac,Le Buisson-Cussac,COM,24068,2,BUISSON DE CADOUIN,Buisson-de-Cadouin,Le Buisson-de-Cadouin 33,1974-01-01,COM,24072,0,CADOUIN,Cadouin,Cadouin,COM,24068,2,BUISSON DE CADOUIN,Buisson-de-Cadouin,Le Buisson-de-Cadouin 33,1974-01-01,COM,24072,0,CADOUIN,Cadouin,Cadouin,COMA,24072,0,CADOUIN,Cadouin,Cadouin -33,1974-01-01,COM,24315,0,PALEYRAC,Paleyrac,Paleyrac,COMA,24315,0,PALEYRAC,Paleyrac,Paleyrac 33,1974-01-01,COM,24315,0,PALEYRAC,Paleyrac,Paleyrac,COM,24068,2,BUISSON DE CADOUIN,Buisson-de-Cadouin,Le Buisson-de-Cadouin +33,1974-01-01,COM,24315,0,PALEYRAC,Paleyrac,Paleyrac,COMA,24315,0,PALEYRAC,Paleyrac,Paleyrac 33,1974-01-01,COM,24497,0,SAINTE SABINE,Sainte-Sabine,Sainte-Sabine,COM,24497,0,SAINTE SABINE BORN,Sainte-Sabine-Born,Sainte-Sabine-Born -33,1974-01-01,COM,24560,1,URVAL,Urval,Urval,COMA,24560,1,URVAL,Urval,Urval 33,1974-01-01,COM,24560,1,URVAL,Urval,Urval,COM,24068,2,BUISSON DE CADOUIN,Buisson-de-Cadouin,Le Buisson-de-Cadouin +33,1974-01-01,COM,24560,1,URVAL,Urval,Urval,COMA,24560,1,URVAL,Urval,Urval 33,1974-01-01,COM,25362,0,MALPAS,Malpas,Malpas,COMA,25362,0,MALPAS,Malpas,Malpas 33,1974-01-01,COM,25362,0,MALPAS,Malpas,Malpas,COM,25592,0,VAUX ET CHANTEGRUE MALPAS,Vaux-et-Chantegrue-Malpas,Vaux-et-Chantegrue-Malpas 33,1974-01-01,COM,25592,0,VAUX ET CHANTEGRUE,Vaux-et-Chantegrue,Vaux-et-Chantegrue,COM,25592,0,VAUX ET CHANTEGRUE MALPAS,Vaux-et-Chantegrue-Malpas,Vaux-et-Chantegrue-Malpas @@ -8787,8 +8613,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1974-01-01,COM,31483,0,SAINT GAUDENS,Saint-Gaudens,Saint-Gaudens,COM,31483,0,SAINT GAUDENS,Saint-Gaudens,Saint-Gaudens 33,1974-01-01,COM,31548,0,SIGNAC,Signac,Signac,COM,31144,0,CIERP GAUD SIGNAC,Cierp-Gaud-Signac,Cierp-Gaud-Signac 33,1974-01-01,COM,31548,0,SIGNAC,Signac,Signac,COMA,31548,0,SIGNAC,Signac,Signac -33,1974-01-01,COM,35074,0,CHAUMERE,Chaumeré,Chaumeré,COM,35096,0,DOMAGNE,Domagné,Domagné 33,1974-01-01,COM,35074,0,CHAUMERE,Chaumeré,Chaumeré,COMA,35074,0,CHAUMERE,Chaumeré,Chaumeré +33,1974-01-01,COM,35074,0,CHAUMERE,Chaumeré,Chaumeré,COM,35096,0,DOMAGNE,Domagné,Domagné 33,1974-01-01,COM,35096,0,DOMAGNE,Domagné,Domagné,COM,35096,0,DOMAGNE,Domagné,Domagné 31,1974-01-01,COM,39125,0,CHAUMONT,Chaumont,Chaumont,COM,39478,0,SAINT CLAUDE,Saint-Claude,Saint-Claude 31,1974-01-01,COM,39144,0,CHEVRY,Chevry,Chevry,COM,39478,0,SAINT CLAUDE,Saint-Claude,Saint-Claude @@ -8807,8 +8633,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1974-01-01,COM,49164,0,JOUE ETIAU,Joué-Étiau,Joué-Étiau,COM,49153,0,VALANJOU,Valanjou,Valanjou 33,1974-01-01,COM,49286,0,SAINT HILAIRE DU BOIS,Saint-Hilaire-du-Bois,Saint-Hilaire-du-Bois,COMA,49286,0,SAINT HILAIRE DU BOIS,Saint-Hilaire-du-Bois,Saint-Hilaire-du-Bois 33,1974-01-01,COM,49286,0,SAINT HILAIRE DU BOIS,Saint-Hilaire-du-Bois,Saint-Hilaire-du-Bois,COM,49373,0,VIHIERS,Vihiers,Vihiers -33,1974-01-01,COM,49357,0,TREVES CUNAULT,Trèves-Cunault,Trèves-Cunault,COMA,49357,0,TREVES CUNAULT,Trèves-Cunault,Trèves-Cunault 33,1974-01-01,COM,49357,0,TREVES CUNAULT,Trèves-Cunault,Trèves-Cunault,COM,49094,0,CHENEHUTTE TREVES CUNAULT,Chênehutte-Trèves-Cunault,Chênehutte-Trèves-Cunault +33,1974-01-01,COM,49357,0,TREVES CUNAULT,Trèves-Cunault,Trèves-Cunault,COMA,49357,0,TREVES CUNAULT,Trèves-Cunault,Trèves-Cunault 33,1974-01-01,COM,49373,0,VIHIERS,Vihiers,Vihiers,COM,49373,0,VIHIERS,Vihiers,Vihiers 33,1974-01-01,COM,49379,2,VOIDE,Voide,Le Voide,COM,49373,0,VIHIERS,Vihiers,Vihiers 33,1974-01-01,COM,49379,2,VOIDE,Voide,Le Voide,COMA,49379,2,VOIDE,Voide,Le Voide @@ -8818,21 +8644,17 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1974-01-01,COM,53265,0,TORCE EN CHARNIE,Torcé-en-Charnie,Torcé-en-Charnie,COM,53265,0,TORCE VIVIERS EN CHARNIE,Torcé-Viviers-en-Charnie,Torcé-Viviers-en-Charnie 31,1974-01-01,COM,53275,0,VIVIERS,Viviers,Viviers,COM,53265,0,TORCE VIVIERS EN CHARNIE,Torcé-Viviers-en-Charnie,Torcé-Viviers-en-Charnie 31,1974-01-01,COM,57019,1,AMNEVILLE,Amnéville,Amnéville,COM,57019,1,AMNEVILLE,Amnéville,Amnéville -33,1974-01-01,COMA,57069,0,BERVILLER EN MOSELLE,Berviller-en-Moselle,Berviller-en-Moselle,COM,57460,0,MERTEN,Merten,Merten -33,1974-01-01,COMA,57069,0,BERVILLER EN MOSELLE,Berviller-en-Moselle,Berviller-en-Moselle,COMA,57069,0,BERVILLER EN MOSELLE,Berviller-en-Moselle,Berviller-en-Moselle 31,1974-01-01,COM,57204,0,FAILLY,Failly,Failly,COM,57204,0,FAILLY,Failly,Failly 31,1974-01-01,COM,57435,0,MALANCOURT LA MONTAGNE,Malancourt-la-Montagne,Malancourt-la-Montagne,COM,57019,1,AMNEVILLE,Amnéville,Amnéville 33,1974-01-01,COM,57460,0,MERTEN,Merten,Merten,COM,57460,0,MERTEN,Merten,Merten -33,1974-01-01,COMA,57570,0,REMERING LES HARGARTEN,Rémering-lès-Hargarten,Rémering-lès-Hargarten,COM,57460,0,MERTEN,Merten,Merten -33,1974-01-01,COMA,57570,0,REMERING LES HARGARTEN,Rémering-lès-Hargarten,Rémering-lès-Hargarten,COMA,57570,0,REMERING LES HARGARTEN,Rémering-lès-Hargarten,Rémering-lès-Hargarten -33,1974-01-01,COM,57720,0,VILLING,Villing,Villing,COMA,57720,0,VILLING,Villing,Villing 33,1974-01-01,COM,57720,0,VILLING,Villing,Villing,COM,57460,0,MERTEN,Merten,Merten +33,1974-01-01,COM,57720,0,VILLING,Villing,Villing,COMA,57720,0,VILLING,Villing,Villing 31,1974-01-01,COM,57735,0,VREMY,Vrémy,Vrémy,COM,57204,0,FAILLY,Failly,Failly 33,1974-01-01,COM,62008,1,ACQUIN,Acquin,Acquin,COM,62008,1,ACQUIN WESTBECOURT,Acquin-Westbécourt,Acquin-Westbécourt 31,1974-01-01,COM,62881,0,WAVANS SUR L AUTHIE,Wavans-sur-l'Authie,Wavans-sur-l'Authie,COM,62881,0,BEAUVOIR WAVANS,Beauvoir-Wavans,Beauvoir-Wavans 33,1974-01-01,COM,62884,0,WESTBECOURT,Westbécourt,Westbécourt,COM,62008,1,ACQUIN WESTBECOURT,Acquin-Westbécourt,Acquin-Westbécourt 33,1974-01-01,COM,62884,0,WESTBECOURT,Westbécourt,Westbécourt,COMA,62884,0,WESTBECOURT,Westbécourt,Westbécourt -33,1974-01-01,COM,67347,0,OBERMODERN,Obermodern,Obermodern,COM,67347,0,MODERN,Modern,Modern +33,1974-01-01,COM,67347,1,OBERMODERN,Obermodern,Obermodern,COM,67347,0,MODERN,Modern,Modern 33,1974-01-01,COM,67562,0,ZUTZENDORF,Zutzendorf,Zutzendorf,COM,67347,0,MODERN,Modern,Modern 33,1974-01-01,COM,67562,0,ZUTZENDORF,Zutzendorf,Zutzendorf,COMA,67562,0,ZUTZENDORF,Zutzendorf,Zutzendorf 33,1974-01-01,COM,74013,1,ANTHY SUR LEMAN,Anthy-sur-Léman,Anthy-sur-Léman,COMA,74013,1,ANTHY SUR LEMAN,Anthy-sur-Léman,Anthy-sur-Léman @@ -8845,14 +8667,12 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1974-01-01,COM,74095,0,CREMPIGNY,Crempigny,Crempigny,COM,74095,0,CREMPIGNY BONNEGUETE,Crempigny-Bonneguête,Crempigny-Bonneguête 33,1974-01-01,COM,74106,0,DRAILLANT,Draillant,Draillant,COMA,74106,0,DRAILLANT,Draillant,Draillant 33,1974-01-01,COM,74106,0,DRAILLANT,Draillant,Draillant,COM,74210,0,PERRIGNIER,Perrignier,Perrignier -33,1974-01-01,COM,74113,1,ESERY,Ésery,Ésery,COM,74220,0,REIGNIER,Reignier,Reignier 33,1974-01-01,COM,74113,1,ESERY,Ésery,Ésery,COMA,74113,1,ESERY,Ésery,Ésery +33,1974-01-01,COM,74113,1,ESERY,Ésery,Ésery,COM,74220,0,REIGNIER,Reignier,Reignier 33,1974-01-01,COM,74115,1,ESSERTS SALEVE,Esserts-Salève,Esserts-Salève,COMA,74115,1,ESSERTS SALEVE,Esserts-Salève,Esserts-Salève 33,1974-01-01,COM,74115,1,ESSERTS SALEVE,Esserts-Salève,Esserts-Salève,COM,74185,0,MONNETIER MORNEX,Monnetier-Mornex,Monnetier-Mornex 33,1974-01-01,COM,74132,3,FRASSE,Frasse,La Frasse,COM,74014,1,ARACHES,Arâches,Arâches 33,1974-01-01,COM,74132,3,FRASSE,Frasse,La Frasse,COMA,74132,3,FRASSE,Frasse,La Frasse -33,1974-01-01,COMA,74166,0,MARIN,Marin,Marin,COMA,74166,0,MARIN,Marin,Marin -33,1974-01-01,COMA,74166,0,MARIN,Marin,Marin,COM,74281,0,THONON LES BAINS,Thonon-les-Bains,Thonon-les-Bains 33,1974-01-01,COM,74185,0,MONNETIER MORNEX,Monnetier-Mornex,Monnetier-Mornex,COM,74185,0,MONNETIER MORNEX,Monnetier-Mornex,Monnetier-Mornex 33,1974-01-01,COM,74203,0,NOVEL,Novel,Novel,COMA,74203,0,NOVEL,Novel,Novel 33,1974-01-01,COM,74203,0,NOVEL,Novel,Novel,COM,74237,0,SAINT GINGOLPH,Saint-Gingolph,Saint-Gingolph @@ -8869,36 +8689,36 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1974-01-01,COM,80072,0,BEAUVOIR RIVIERE,Beauvoir-Rivière,Beauvoir-Rivière,COM,62881,0,BEAUVOIR WAVANS,Beauvoir-Wavans,Beauvoir-Wavans 31,1974-01-01,COM,80463,0,LAMOTTE EN SANTERRE,Lamotte-en-Santerre,Lamotte-en-Santerre,COM,80463,0,LAMOTTE WARFUSEE,Lamotte-Warfusée,Lamotte-Warfusée 31,1974-01-01,COM,80818,0,WARFUSEE ABANCOURT,Warfusée-Abancourt,Warfusée-Abancourt,COM,80463,0,LAMOTTE WARFUSEE,Lamotte-Warfusée,Lamotte-Warfusée -33,1974-01-01,COM,85079,0,DISSAIS,Dissais,Dissais,COM,85135,0,MAREUIL SUR LAY DISSAIS,Mareuil-sur-Lay-Dissais,Mareuil-sur-Lay-Dissais 33,1974-01-01,COM,85079,0,DISSAIS,Dissais,Dissais,COMA,85079,0,DISSAIS,Dissais,Dissais +33,1974-01-01,COM,85079,0,DISSAIS,Dissais,Dissais,COM,85135,0,MAREUIL SUR LAY DISSAIS,Mareuil-sur-Lay-Dissais,Mareuil-sur-Lay-Dissais 33,1974-01-01,COM,85135,0,MAREUIL SUR LAY,Mareuil-sur-Lay,Mareuil-sur-Lay,COM,85135,0,MAREUIL SUR LAY DISSAIS,Mareuil-sur-Lay-Dissais,Mareuil-sur-Lay-Dissais 31,1974-01-01,COM,85228,0,SAINT HILAIRE DE TALMONT,Saint-Hilaire-de-Talmont,Saint-Hilaire-de-Talmont,COM,85288,0,TALMONT SAINT HILAIRE,Talmont-Saint-Hilaire,Talmont-Saint-Hilaire 33,1974-01-01,COM,85243,0,SAINT MARTIN DE BREM,Saint-Martin-de-Brem,Saint-Martin-de-Brem,COM,85243,0,BREM SUR MER,Brem-sur-Mer,Brem-sur-Mer 33,1974-01-01,COM,85258,0,SAINT NICOLAS DE BREM,Saint-Nicolas-de-Brem,Saint-Nicolas-de-Brem,COM,85243,0,BREM SUR MER,Brem-sur-Mer,Brem-sur-Mer 33,1974-01-01,COM,85258,0,SAINT NICOLAS DE BREM,Saint-Nicolas-de-Brem,Saint-Nicolas-de-Brem,COMA,85258,0,SAINT NICOLAS DE BREM,Saint-Nicolas-de-Brem,Saint-Nicolas-de-Brem -33,1974-01-01,COM,85270,0,SAINT SORNIN,Saint-Sornin,Saint-Sornin,COM,85277,0,SAINT VINCENT SUR GRAON,Saint-Vincent-sur-Graon,Saint-Vincent-sur-Graon 33,1974-01-01,COM,85270,0,SAINT SORNIN,Saint-Sornin,Saint-Sornin,COMA,85270,0,SAINT SORNIN,Saint-Sornin,Saint-Sornin +33,1974-01-01,COM,85270,0,SAINT SORNIN,Saint-Sornin,Saint-Sornin,COM,85277,0,SAINT VINCENT SUR GRAON,Saint-Vincent-sur-Graon,Saint-Vincent-sur-Graon 33,1974-01-01,COM,85277,0,SAINT VINCENT SUR GRAON,Saint-Vincent-sur-Graon,Saint-Vincent-sur-Graon,COM,85277,0,SAINT VINCENT SUR GRAON,Saint-Vincent-sur-Graon,Saint-Vincent-sur-Graon 31,1974-01-01,COM,85288,0,TALMONT,Talmont,Talmont,COM,85288,0,TALMONT SAINT HILAIRE,Talmont-Saint-Hilaire,Talmont-Saint-Hilaire 33,1974-01-01,COM,87027,0,BUSSIERE GALANT,Bussière-Galant,Bussière-Galant,COM,87027,0,BUSSIERE GALANT,Bussière-Galant,Bussière-Galant -33,1974-01-01,COM,87171,0,SAINT NICOLAS COURBEFY,Saint-Nicolas-Courbefy,Saint-Nicolas-Courbefy,COMA,87171,0,SAINT NICOLAS COURBEFY,Saint-Nicolas-Courbefy,Saint-Nicolas-Courbefy 33,1974-01-01,COM,87171,0,SAINT NICOLAS COURBEFY,Saint-Nicolas-Courbefy,Saint-Nicolas-Courbefy,COM,87027,0,BUSSIERE GALANT,Bussière-Galant,Bussière-Galant +33,1974-01-01,COM,87171,0,SAINT NICOLAS COURBEFY,Saint-Nicolas-Courbefy,Saint-Nicolas-Courbefy,COMA,87171,0,SAINT NICOLAS COURBEFY,Saint-Nicolas-Courbefy,Saint-Nicolas-Courbefy 31,1974-01-01,COM,91173,0,CONGERVILLE,Congerville,Congerville,COM,91613,0,CONGERVILLE THIONVILLE,Congerville-Thionville,Congerville-Thionville 31,1974-01-01,COM,91613,0,THIONVILLE,Thionville,Thionville,COM,91613,0,CONGERVILLE THIONVILLE,Congerville-Thionville,Congerville-Thionville -33,1973-12-29,COM,08051,0,BAY,Bay,Bay,COMA,08051,0,BAY,Bay,Bay -33,1973-12-29,COM,08051,0,BAY,Bay,Bay,COM,08069,0,BLANCHEFOSSE ET BAY,Blanchefosse-et-Bay,Blanchefosse-et-Bay -33,1973-12-29,COM,08069,0,BLANCHEFOSSE,Blanchefosse,Blanchefosse,COM,08069,0,BLANCHEFOSSE ET BAY,Blanchefosse-et-Bay,Blanchefosse-et-Bay -31,1973-12-29,COM,08089,0,BUZANCY,Buzancy,Buzancy,COM,08089,0,BUZANCY,Buzancy,Buzancy -33,1973-12-29,COM,08213,3,HARDOYE,Hardoye,La Hardoye,COMA,08213,3,HARDOYE,Hardoye,La Hardoye -33,1973-12-29,COM,08213,3,HARDOYE,Hardoye,La Hardoye,COM,08366,0,ROCQUIGNY LA HARDOYE,Rocquigny-la-Hardoye,Rocquigny-la-Hardoye -33,1973-12-29,COM,08233,1,IMECOURT,Imécourt,Imécourt,COM,08470,0,VERPEL,Verpel,Verpel -33,1973-12-29,COM,08233,1,IMECOURT,Imécourt,Imécourt,COMA,08233,1,IMECOURT,Imécourt,Imécourt -33,1973-12-29,COM,08337,0,PARGNY RESSON,Pargny-Resson,Pargny-Resson,COM,08362,0,RETHEL,Rethel,Rethel -33,1973-12-29,COM,08337,0,PARGNY RESSON,Pargny-Resson,Pargny-Resson,COMA,08337,0,PARGNY RESSON,Pargny-Resson,Pargny-Resson -33,1973-12-29,COM,08362,0,RETHEL,Rethel,Rethel,COM,08362,0,RETHEL,Rethel,Rethel -33,1973-12-29,COM,08366,0,ROCQUIGNY,Rocquigny,Rocquigny,COM,08366,0,ROCQUIGNY LA HARDOYE,Rocquigny-la-Hardoye,Rocquigny-la-Hardoye -31,1973-12-29,COM,08423,0,SIVRY LES BUZANCY,Sivry-lès-Buzancy,Sivry-lès-Buzancy,COM,08089,0,BUZANCY,Buzancy,Buzancy -33,1973-12-29,COM,08470,0,VERPEL,Verpel,Verpel,COM,08470,0,VERPEL,Verpel,Verpel +33,1973-12-29,COM,8051,0,BAY,Bay,Bay,COMA,8051,0,BAY,Bay,Bay +33,1973-12-29,COM,8051,0,BAY,Bay,Bay,COM,8069,0,BLANCHEFOSSE ET BAY,Blanchefosse-et-Bay,Blanchefosse-et-Bay +33,1973-12-29,COM,8069,0,BLANCHEFOSSE,Blanchefosse,Blanchefosse,COM,8069,0,BLANCHEFOSSE ET BAY,Blanchefosse-et-Bay,Blanchefosse-et-Bay +31,1973-12-29,COM,8089,0,BUZANCY,Buzancy,Buzancy,COM,8089,0,BUZANCY,Buzancy,Buzancy +33,1973-12-29,COM,8213,3,HARDOYE,Hardoye,La Hardoye,COMA,8213,3,HARDOYE,Hardoye,La Hardoye +33,1973-12-29,COM,8213,3,HARDOYE,Hardoye,La Hardoye,COM,8366,0,ROCQUIGNY LA HARDOYE,Rocquigny-la-Hardoye,Rocquigny-la-Hardoye +33,1973-12-29,COM,8233,1,IMECOURT,Imécourt,Imécourt,COMA,8233,1,IMECOURT,Imécourt,Imécourt +33,1973-12-29,COM,8233,1,IMECOURT,Imécourt,Imécourt,COM,8470,0,VERPEL,Verpel,Verpel +33,1973-12-29,COM,8337,0,PARGNY RESSON,Pargny-Resson,Pargny-Resson,COMA,8337,0,PARGNY RESSON,Pargny-Resson,Pargny-Resson +33,1973-12-29,COM,8337,0,PARGNY RESSON,Pargny-Resson,Pargny-Resson,COM,8362,0,RETHEL,Rethel,Rethel +33,1973-12-29,COM,8362,0,RETHEL,Rethel,Rethel,COM,8362,0,RETHEL,Rethel,Rethel +33,1973-12-29,COM,8366,0,ROCQUIGNY,Rocquigny,Rocquigny,COM,8366,0,ROCQUIGNY LA HARDOYE,Rocquigny-la-Hardoye,Rocquigny-la-Hardoye +31,1973-12-29,COM,8423,0,SIVRY LES BUZANCY,Sivry-lès-Buzancy,Sivry-lès-Buzancy,COM,8089,0,BUZANCY,Buzancy,Buzancy +33,1973-12-29,COM,8470,0,VERPEL,Verpel,Verpel,COM,8470,0,VERPEL,Verpel,Verpel 33,1973-12-01,COM,57027,1,ARRAINCOURT,Arraincourt,Arraincourt,COMA,57027,1,ARRAINCOURT,Arraincourt,Arraincourt 33,1973-12-01,COM,57027,1,ARRAINCOURT,Arraincourt,Arraincourt,COM,57115,0,BRULANGE,Brulange,Brulange 33,1973-12-01,COM,57115,0,BRULANGE,Brulange,Brulange,COM,57115,0,BRULANGE,Brulange,Brulange @@ -8907,16 +8727,16 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-12-01,COM,57542,0,PIBLANGE,Piblange,Piblange,COM,57542,0,PIBLANGE,Piblange,Piblange 33,1973-12-01,COM,57608,0,SAINT BERNARD,Saint-Bernard,Saint-Bernard,COM,57542,0,PIBLANGE,Piblange,Piblange 33,1973-12-01,COM,57608,0,SAINT BERNARD,Saint-Bernard,Saint-Bernard,COMA,57608,0,SAINT BERNARD,Saint-Bernard,Saint-Bernard -33,1973-12-01,COM,57673,0,THONVILLE,Thonville,Thonville,COMA,57673,0,THONVILLE,Thonville,Thonville 33,1973-12-01,COM,57673,0,THONVILLE,Thonville,Thonville,COM,57115,0,BRULANGE,Brulange,Brulange +33,1973-12-01,COM,57673,0,THONVILLE,Thonville,Thonville,COMA,57673,0,THONVILLE,Thonville,Thonville 33,1973-12-01,COM,57695,0,VARIZE,Varize,Varize,COM,57695,0,VARIZE,Varize,Varize 33,1973-12-01,COM,57699,0,VAUDONCOURT,Vaudoncourt,Vaudoncourt,COM,57695,0,VARIZE,Varize,Varize 33,1973-12-01,COM,57699,0,VAUDONCOURT,Vaudoncourt,Vaudoncourt,COMA,57699,0,VAUDONCOURT,Vaudoncourt,Vaudoncourt -33,1973-11-01,COM,01091,0,CHATILLON DE MICHAILLE,Châtillon-de-Michaille,Châtillon-de-Michaille,COM,01091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille -33,1973-11-01,COM,01278,1,OCHIAZ,Ochiaz,Ochiaz,COM,01091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille -33,1973-11-01,COM,01278,1,OCHIAZ,Ochiaz,Ochiaz,COMA,01278,1,OCHIAZ,Ochiaz,Ochiaz -33,1973-11-01,COM,01458,0,VOUVRAY,Vouvray,Vouvray,COMA,01458,0,VOUVRAY,Vouvray,Vouvray -33,1973-11-01,COM,01458,0,VOUVRAY,Vouvray,Vouvray,COM,01091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille +33,1973-11-01,COM,1091,0,CHATILLON DE MICHAILLE,Châtillon-de-Michaille,Châtillon-de-Michaille,COM,1091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille +33,1973-11-01,COM,1278,1,OCHIAZ,Ochiaz,Ochiaz,COM,1091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille +33,1973-11-01,COM,1278,1,OCHIAZ,Ochiaz,Ochiaz,COMA,1278,1,OCHIAZ,Ochiaz,Ochiaz +33,1973-11-01,COM,1458,0,VOUVRAY,Vouvray,Vouvray,COM,1091,0,CHATILLON EN MICHAILLE,Châtillon-en-Michaille,Châtillon-en-Michaille +33,1973-11-01,COM,1458,0,VOUVRAY,Vouvray,Vouvray,COMA,1458,0,VOUVRAY,Vouvray,Vouvray 33,1973-11-01,COM,12132,0,LOUPIAC,Loupiac,Loupiac,COMA,12132,0,LOUPIAC,Loupiac,Loupiac 33,1973-11-01,COM,12132,0,LOUPIAC,Loupiac,Loupiac,COM,12257,0,CAUSSE ET DIEGE,Causse-et-Diège,Causse-et-Diège 33,1973-11-01,COM,12257,0,SALVAGNAC SAINT LOUP,Salvagnac-Saint-Loup,Salvagnac-Saint-Loup,COM,12257,0,CAUSSE ET DIEGE,Causse-et-Diège,Causse-et-Diège @@ -8924,79 +8744,79 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-10-01,COM,52054,0,BLANCHEVILLE,Blancheville,Blancheville,COM,52008,1,ANDELOT BLANCHEVILLE,Andelot-Blancheville,Andelot-Blancheville 33,1973-10-01,COM,52054,0,BLANCHEVILLE,Blancheville,Blancheville,COMA,52054,0,BLANCHEVILLE,Blancheville,Blancheville 33,1973-10-01,COM,87092,0,MARVAL,Marval,Marval,COM,87092,0,MARVAL,Marval,Marval -33,1973-10-01,COM,87098,0,MILHAGUET,Milhaguet,Milhaguet,COMA,87098,0,MILHAGUET,Milhaguet,Milhaguet 33,1973-10-01,COM,87098,0,MILHAGUET,Milhaguet,Milhaguet,COM,87092,0,MARVAL,Marval,Marval -33,1973-09-09,COM,57023,1,ANGVILLER LES BISPING,Angviller-lès-Bisping,Angviller-lès-Bisping,COM,57086,0,BELLES FORETS,Belles-Forêts,Belles-Forêts +33,1973-10-01,COM,87098,0,MILHAGUET,Milhaguet,Milhaguet,COMA,87098,0,MILHAGUET,Milhaguet,Milhaguet 33,1973-09-09,COM,57023,1,ANGVILLER LES BISPING,Angviller-lès-Bisping,Angviller-lès-Bisping,COMA,57023,1,ANGVILLER LES BISPING,Angviller-lès-Bisping,Angviller-lès-Bisping +33,1973-09-09,COM,57023,1,ANGVILLER LES BISPING,Angviller-lès-Bisping,Angviller-lès-Bisping,COM,57086,0,BELLES FORETS,Belles-Forêts,Belles-Forêts 33,1973-09-09,COM,57086,0,BISPING,Bisping,Bisping,COM,57086,0,BELLES FORETS,Belles-Forêts,Belles-Forêts 33,1973-09-09,COM,57173,0,DESSELING,Desseling,Desseling,COM,57086,0,BELLES FORETS,Belles-Forêts,Belles-Forêts 33,1973-09-09,COM,57173,0,DESSELING,Desseling,Desseling,COMA,57173,0,DESSELING,Desseling,Desseling -33,1973-09-01,COM,02285,1,ESCAUFOURT,Escaufourt,Escaufourt,COM,59545,0,SAINT SOUPLET,Saint-Souplet,Saint-Souplet -33,1973-09-01,COM,02285,1,ESCAUFOURT,Escaufourt,Escaufourt,COMA,02285,1,ESCAUFOURT,Escaufourt,Escaufourt -31,1973-09-01,COM,04015,1,AURIBEAU,Auribeau,Auribeau,COM,04177,0,HAUTES DUYES,Hautes-Duyes,Hautes-Duyes -31,1973-09-01,COM,04046,2,CHAFFAUT SAINT JURSON,Chaffaut-Saint-Jurson,Le Chaffaut-Saint-Jurson,COM,04046,2,CHAFFAUT SAINT JURSON,Chaffaut-Saint-Jurson,Le Chaffaut-Saint-Jurson -31,1973-09-01,COM,04083,1,ESPINOUSE,Espinouse,Espinouse,COM,04046,2,CHAFFAUT SAINT JURSON,Chaffaut-Saint-Jurson,Le Chaffaut-Saint-Jurson -31,1973-09-01,COM,04177,0,SAINT ESTEVE,Saint-Estève,Saint-Estève,COM,04177,0,HAUTES DUYES,Hautes-Duyes,Hautes-Duyes -33,1973-09-01,COM,08093,3,CERLEAU,Cerleau,La Cerleau,COMA,08093,3,CERLEAU,Cerleau,La Cerleau -33,1973-09-01,COM,08093,3,CERLEAU,Cerleau,La Cerleau,COM,08344,0,PREZ,Prez,Prez -33,1973-09-01,COM,08125,0,CLIRON,Cliron,Cliron,COM,08125,0,MONTCORNET EN ARDENNE,Montcornet-en-Ardenne,Montcornet-en-Ardenne -33,1973-09-01,COM,08177,0,FOULZY,Foulzy,Foulzy,COM,08189,0,GIRONDELLE,Girondelle,Girondelle -33,1973-09-01,COM,08177,0,FOULZY,Foulzy,Foulzy,COMA,08177,0,FOULZY,Foulzy,Foulzy -33,1973-09-01,COM,08189,0,GIRONDELLE,Girondelle,Girondelle,COM,08189,0,GIRONDELLE,Girondelle,Girondelle -33,1973-09-01,COM,08297,0,MONTCORNET,Montcornet,Montcornet,COMA,08297,0,MONTCORNET,Montcornet,Montcornet -33,1973-09-01,COM,08297,0,MONTCORNET,Montcornet,Montcornet,COM,08125,0,MONTCORNET EN ARDENNE,Montcornet-en-Ardenne,Montcornet-en-Ardenne -33,1973-09-01,COM,08344,0,PREZ,Prez,Prez,COM,08344,0,PREZ,Prez,Prez -33,1973-09-01,COM,51332,0,LUCY,Lucy,Lucy,COM,51381,0,MONTMORT LUCY,Montmort-Lucy,Montmort-Lucy +33,1973-09-01,COM,2285,1,ESCAUFOURT,Escaufourt,Escaufourt,COMA,2285,1,ESCAUFOURT,Escaufourt,Escaufourt +33,1973-09-01,COM,2285,1,ESCAUFOURT,Escaufourt,Escaufourt,COM,59545,0,SAINT SOUPLET,Saint-Souplet,Saint-Souplet +31,1973-09-01,COM,4015,1,AURIBEAU,Auribeau,Auribeau,COM,4177,0,HAUTES DUYES,Hautes-Duyes,Hautes-Duyes +31,1973-09-01,COM,4046,2,CHAFFAUT SAINT JURSON,Chaffaut-Saint-Jurson,Le Chaffaut-Saint-Jurson,COM,4046,2,CHAFFAUT SAINT JURSON,Chaffaut-Saint-Jurson,Le Chaffaut-Saint-Jurson +31,1973-09-01,COM,4083,1,ESPINOUSE,Espinouse,Espinouse,COM,4046,2,CHAFFAUT SAINT JURSON,Chaffaut-Saint-Jurson,Le Chaffaut-Saint-Jurson +31,1973-09-01,COM,4177,0,SAINT ESTEVE,Saint-Estève,Saint-Estève,COM,4177,0,HAUTES DUYES,Hautes-Duyes,Hautes-Duyes +33,1973-09-01,COM,8093,3,CERLEAU,Cerleau,La Cerleau,COMA,8093,3,CERLEAU,Cerleau,La Cerleau +33,1973-09-01,COM,8093,3,CERLEAU,Cerleau,La Cerleau,COM,8344,0,PREZ,Prez,Prez +33,1973-09-01,COM,8125,0,CLIRON,Cliron,Cliron,COM,8125,0,MONTCORNET EN ARDENNE,Montcornet-en-Ardenne,Montcornet-en-Ardenne +33,1973-09-01,COM,8177,0,FOULZY,Foulzy,Foulzy,COMA,8177,0,FOULZY,Foulzy,Foulzy +33,1973-09-01,COM,8177,0,FOULZY,Foulzy,Foulzy,COM,8189,0,GIRONDELLE,Girondelle,Girondelle +33,1973-09-01,COM,8189,0,GIRONDELLE,Girondelle,Girondelle,COM,8189,0,GIRONDELLE,Girondelle,Girondelle +33,1973-09-01,COM,8297,0,MONTCORNET,Montcornet,Montcornet,COM,8125,0,MONTCORNET EN ARDENNE,Montcornet-en-Ardenne,Montcornet-en-Ardenne +33,1973-09-01,COM,8297,0,MONTCORNET,Montcornet,Montcornet,COMA,8297,0,MONTCORNET,Montcornet,Montcornet +33,1973-09-01,COM,8344,0,PREZ,Prez,Prez,COM,8344,0,PREZ,Prez,Prez +33,1973-09-01,COM,49099,0,CHOLET,Cholet,Cholet,COM,49099,0,CHOLET,Cholet,Cholet 33,1973-09-01,COM,51332,0,LUCY,Lucy,Lucy,COMA,51332,0,LUCY,Lucy,Lucy +33,1973-09-01,COM,51332,0,LUCY,Lucy,Lucy,COM,51381,0,MONTMORT LUCY,Montmort-Lucy,Montmort-Lucy 33,1973-09-01,COM,51381,0,MONTMORT,Montmort,Montmort,COM,51381,0,MONTMORT LUCY,Montmort-Lucy,Montmort-Lucy 33,1973-09-01,COM,51575,0,TOULON LA MONTAGNE,Toulon-la-Montagne,Toulon-la-Montagne,COMA,51575,0,TOULON LA MONTAGNE,Toulon-la-Montagne,Toulon-la-Montagne 33,1973-09-01,COM,51575,0,TOULON LA MONTAGNE,Toulon-la-Montagne,Toulon-la-Montagne,COM,51611,0,VERT TOULON,Vert-Toulon,Vert-Toulon 33,1973-09-01,COM,51611,0,VERT LA GRAVELLE,Vert-la-Gravelle,Vert-la-Gravelle,COM,51611,0,VERT TOULON,Vert-Toulon,Vert-Toulon -33,1973-09-01,COM,52020,1,ARNONCOURT SUR APANCE,Arnoncourt-sur-Apance,Arnoncourt-sur-Apance,COM,52273,0,LARIVIERE ARNONCOURT,Larivière-Arnoncourt,Larivière-Arnoncourt 33,1973-09-01,COM,52020,1,ARNONCOURT SUR APANCE,Arnoncourt-sur-Apance,Arnoncourt-sur-Apance,COMA,52020,1,ARNONCOURT SUR APANCE,Arnoncourt-sur-Apance,Arnoncourt-sur-Apance +33,1973-09-01,COM,52020,1,ARNONCOURT SUR APANCE,Arnoncourt-sur-Apance,Arnoncourt-sur-Apance,COM,52273,0,LARIVIERE ARNONCOURT,Larivière-Arnoncourt,Larivière-Arnoncourt 33,1973-09-01,COM,52273,0,LARIVIERE SUR APANCE,Larivière-sur-Apance,Larivière-sur-Apance,COM,52273,0,LARIVIERE ARNONCOURT,Larivière-Arnoncourt,Larivière-Arnoncourt 33,1973-09-01,COM,59545,0,SAINT SOUPLET,Saint-Souplet,Saint-Souplet,COM,59545,0,SAINT SOUPLET,Saint-Souplet,Saint-Souplet -33,1973-09-01,COM,67114,1,EBERBACH WOERTH,Eberbach-Wœrth,Eberbach-Wœrth,COM,67176,0,GUNDERSHOFFEN,Gundershoffen,Gundershoffen -33,1973-09-01,COM,67114,1,EBERBACH WOERTH,Eberbach-Wœrth,Eberbach-Wœrth,COMA,67114,1,EBERBACH WOERTH,Eberbach-Wœrth,Eberbach-Wœrth +33,1973-09-01,COM,67114,1,EBERBACH WORTH,Eberbach-Wœrth,Eberbach-Wœrth,COMA,67114,1,EBERBACH WORTH,Eberbach-Wœrth,Eberbach-Wœrth +33,1973-09-01,COM,67114,1,EBERBACH WORTH,Eberbach-Wœrth,Eberbach-Wœrth,COM,67176,0,GUNDERSHOFFEN,Gundershoffen,Gundershoffen 33,1973-09-01,COM,67170,0,GRIESBACH,Griesbach,Griesbach,COMA,67170,0,GRIESBACH,Griesbach,Griesbach 33,1973-09-01,COM,67170,0,GRIESBACH,Griesbach,Griesbach,COM,67176,0,GUNDERSHOFFEN,Gundershoffen,Gundershoffen 33,1973-09-01,COM,67176,0,GUNDERSHOFFEN,Gundershoffen,Gundershoffen,COM,67176,0,GUNDERSHOFFEN,Gundershoffen,Gundershoffen -33,1973-08-03,COM,49099,0,CHOLET,Cholet,Cholet,COM,49099,0,CHOLET,Cholet,Cholet -33,1973-08-03,COM,79224,2,PUY SAINT BONNET,Puy-Saint-Bonnet,Le Puy-Saint-Bonnet,COMA,79224,2,PUY SAINT BONNET,Puy-Saint-Bonnet,Le Puy-Saint-Bonnet -33,1973-08-03,COM,79224,2,PUY SAINT BONNET,Puy-Saint-Bonnet,Le Puy-Saint-Bonnet,COM,49099,0,CHOLET,Cholet,Cholet -33,1973-08-01,COM,52071,0,BRESSONCOURT,Bressoncourt,Bressoncourt,COM,52491,0,THONNANCE LES MOULINS,Thonnance-les-Moulins,Thonnance-les-Moulins +33,1973-09-01,COM,79224,2,PUY SAINT BONNET,Puy-Saint-Bonnet,Le Puy-Saint-Bonnet,COM,49099,0,CHOLET,Cholet,Cholet +33,1973-09-01,COM,79224,2,PUY SAINT BONNET,Puy-Saint-Bonnet,Le Puy-Saint-Bonnet,COMA,79224,2,PUY SAINT BONNET,Puy-Saint-Bonnet,Le Puy-Saint-Bonnet 33,1973-08-01,COM,52071,0,BRESSONCOURT,Bressoncourt,Bressoncourt,COMA,52071,0,BRESSONCOURT,Bressoncourt,Bressoncourt -33,1973-08-01,COM,52080,0,BROUTHIERES,Brouthières,Brouthières,COM,52491,0,THONNANCE LES MOULINS,Thonnance-les-Moulins,Thonnance-les-Moulins +33,1973-08-01,COM,52071,0,BRESSONCOURT,Bressoncourt,Bressoncourt,COM,52491,0,THONNANCE LES MOULINS,Thonnance-les-Moulins,Thonnance-les-Moulins 33,1973-08-01,COM,52080,0,BROUTHIERES,Brouthières,Brouthières,COMA,52080,0,BROUTHIERES,Brouthières,Brouthières +33,1973-08-01,COM,52080,0,BROUTHIERES,Brouthières,Brouthières,COM,52491,0,THONNANCE LES MOULINS,Thonnance-les-Moulins,Thonnance-les-Moulins 33,1973-08-01,COM,52481,0,SOULAINCOURT,Soulaincourt,Soulaincourt,COMA,52481,0,SOULAINCOURT,Soulaincourt,Soulaincourt 33,1973-08-01,COM,52481,0,SOULAINCOURT,Soulaincourt,Soulaincourt,COM,52491,0,THONNANCE LES MOULINS,Thonnance-les-Moulins,Thonnance-les-Moulins 33,1973-08-01,COM,52491,0,THONNANCE LES MOULINS,Thonnance-les-Moulins,Thonnance-les-Moulins,COM,52491,0,THONNANCE LES MOULINS,Thonnance-les-Moulins,Thonnance-les-Moulins 33,1973-08-01,COM,64049,1,AROUE,Aroue,Aroue,COM,64049,1,AROUE ITHOROTS OLHAIBY,Aroue-Ithorots-Olhaïby,Aroue-Ithorots-Olhaïby -33,1973-08-01,COM,64278,1,ITHOROTS OLHAIBY,Ithorots-Olhaïby,Ithorots-Olhaïby,COMA,64278,1,ITHOROTS OLHAIBY,Ithorots-Olhaïby,Ithorots-Olhaïby 33,1973-08-01,COM,64278,1,ITHOROTS OLHAIBY,Ithorots-Olhaïby,Ithorots-Olhaïby,COM,64049,1,AROUE ITHOROTS OLHAIBY,Aroue-Ithorots-Olhaïby,Aroue-Ithorots-Olhaïby +33,1973-08-01,COM,64278,1,ITHOROTS OLHAIBY,Ithorots-Olhaïby,Ithorots-Olhaïby,COMA,64278,1,ITHOROTS OLHAIBY,Ithorots-Olhaïby,Ithorots-Olhaïby 33,1973-07-15,COM,71014,1,AUTUN,Autun,Autun,COM,71014,1,AUTUN,Autun,Autun -33,1973-07-15,COM,71414,0,SAINT FORGEOT,Saint-Forgeot,Saint-Forgeot,COMA,71414,0,SAINT FORGEOT,Saint-Forgeot,Saint-Forgeot 33,1973-07-15,COM,71414,0,SAINT FORGEOT,Saint-Forgeot,Saint-Forgeot,COM,71014,1,AUTUN,Autun,Autun -33,1973-07-15,COM,71467,0,SAINT PANTALEON,Saint-Pantaléon,Saint-Pantaléon,COMA,71467,0,SAINT PANTALEON,Saint-Pantaléon,Saint-Pantaléon +33,1973-07-15,COM,71414,0,SAINT FORGEOT,Saint-Forgeot,Saint-Forgeot,COMA,71414,0,SAINT FORGEOT,Saint-Forgeot,Saint-Forgeot 33,1973-07-15,COM,71467,0,SAINT PANTALEON,Saint-Pantaléon,Saint-Pantaléon,COM,71014,1,AUTUN,Autun,Autun -33,1973-07-01,COM,04009,1,ARCHAIL,Archail,Archail,COM,04072,1,ARCHAIL DRAIX,Archail-Draix,Archail-Draix -33,1973-07-01,COM,04009,1,ARCHAIL,Archail,Archail,COMA,04009,1,ARCHAIL,Archail,Archail -31,1973-07-01,COM,04039,0,CASTELLANE,Castellane,Castellane,COM,04039,0,CASTELLANE,Castellane,Castellane -31,1973-07-01,COM,04048,0,CHASTEUIL,Chasteuil,Chasteuil,COM,04039,0,CASTELLANE,Castellane,Castellane -33,1973-07-01,COM,04072,0,DRAIX,Draix,Draix,COM,04072,1,ARCHAIL DRAIX,Archail-Draix,Archail-Draix -31,1973-07-01,COM,04078,1,EOULX,Eoulx,Eoulx,COM,04039,0,CASTELLANE,Castellane,Castellane -31,1973-07-01,COM,04168,0,ROBION,Robion,Robion,COM,04039,0,CASTELLANE,Castellane,Castellane -31,1973-07-01,COM,04212,0,TALOIRE,Taloire,Taloire,COM,04039,0,CASTELLANE,Castellane,Castellane -31,1973-07-01,COM,04215,0,TAULANNE,Taulanne,Taulanne,COM,04039,0,CASTELLANE,Castellane,Castellane -33,1973-07-01,COM,07043,0,BRAHIC,Brahic,Brahic,COM,07334,4,VANS,Vans,Les Vans -33,1973-07-01,COM,07043,0,BRAHIC,Brahic,Brahic,COMA,07043,0,BRAHIC,Brahic,Brahic -33,1973-07-01,COM,07057,0,CHASSAGNES,Chassagnes,Chassagnes,COM,07334,4,VANS,Vans,Les Vans -33,1973-07-01,COM,07057,0,CHASSAGNES,Chassagnes,Chassagnes,COMA,07057,0,CHASSAGNES,Chassagnes,Chassagnes -33,1973-07-01,COM,07164,0,NAVES,Naves,Naves,COMA,07164,0,NAVES,Naves,Naves -33,1973-07-01,COM,07164,0,NAVES,Naves,Naves,COM,07334,4,VANS,Vans,Les Vans -31,1973-07-01,COM,07180,2,POUZAT,Pouzat,Le Pouzat,COM,07204,0,SAINT AGREVE,Saint-Agrève,Saint-Agrève -31,1973-07-01,COM,07204,0,SAINT AGREVE,Saint-Agrève,Saint-Agrève,COM,07204,0,SAINT AGREVE,Saint-Agrève,Saint-Agrève -33,1973-07-01,COM,07334,4,VANS,Vans,Les Vans,COM,07334,4,VANS,Vans,Les Vans +33,1973-07-15,COM,71467,0,SAINT PANTALEON,Saint-Pantaléon,Saint-Pantaléon,COMA,71467,0,SAINT PANTALEON,Saint-Pantaléon,Saint-Pantaléon +33,1973-07-01,COM,4009,1,ARCHAIL,Archail,Archail,COMA,4009,1,ARCHAIL,Archail,Archail +33,1973-07-01,COM,4009,1,ARCHAIL,Archail,Archail,COM,4072,1,ARCHAIL DRAIX,Archail-Draix,Archail-Draix +31,1973-07-01,COM,4039,0,CASTELLANE,Castellane,Castellane,COM,4039,0,CASTELLANE,Castellane,Castellane +31,1973-07-01,COM,4048,0,CHASTEUIL,Chasteuil,Chasteuil,COM,4039,0,CASTELLANE,Castellane,Castellane +33,1973-07-01,COM,4072,0,DRAIX,Draix,Draix,COM,4072,1,ARCHAIL DRAIX,Archail-Draix,Archail-Draix +31,1973-07-01,COM,4078,1,EOULX,Eoulx,Eoulx,COM,4039,0,CASTELLANE,Castellane,Castellane +31,1973-07-01,COM,4168,0,ROBION,Robion,Robion,COM,4039,0,CASTELLANE,Castellane,Castellane +31,1973-07-01,COM,4212,0,TALOIRE,Taloire,Taloire,COM,4039,0,CASTELLANE,Castellane,Castellane +31,1973-07-01,COM,4215,0,TAULANNE,Taulanne,Taulanne,COM,4039,0,CASTELLANE,Castellane,Castellane +33,1973-07-01,COM,7043,0,BRAHIC,Brahic,Brahic,COMA,7043,0,BRAHIC,Brahic,Brahic +33,1973-07-01,COM,7043,0,BRAHIC,Brahic,Brahic,COM,7334,4,VANS,Vans,Les Vans +33,1973-07-01,COM,7057,0,CHASSAGNES,Chassagnes,Chassagnes,COMA,7057,0,CHASSAGNES,Chassagnes,Chassagnes +33,1973-07-01,COM,7057,0,CHASSAGNES,Chassagnes,Chassagnes,COM,7334,4,VANS,Vans,Les Vans +33,1973-07-01,COM,7164,0,NAVES,Naves,Naves,COMA,7164,0,NAVES,Naves,Naves +33,1973-07-01,COM,7164,0,NAVES,Naves,Naves,COM,7334,4,VANS,Vans,Les Vans +31,1973-07-01,COM,7180,2,POUZAT,Pouzat,Le Pouzat,COM,7204,0,SAINT AGREVE,Saint-Agrève,Saint-Agrève +31,1973-07-01,COM,7204,0,SAINT AGREVE,Saint-Agrève,Saint-Agrève,COM,7204,0,SAINT AGREVE,Saint-Agrève,Saint-Agrève +33,1973-07-01,COM,7334,4,VANS,Vans,Les Vans,COM,7334,4,VANS,Vans,Les Vans 31,1973-07-01,COM,10314,0,RAMERUPT,Ramerupt,Ramerupt,COM,10314,0,RAMERUPT,Ramerupt,Ramerupt 31,1973-07-01,COM,10322,0,ROMAINES,Romaines,Romaines,COM,10314,0,RAMERUPT,Ramerupt,Ramerupt 33,1973-07-01,COM,25010,1,ALAISE,Alaise,Alaise,COMA,25010,1,ALAISE,Alaise,Alaise @@ -9005,57 +8825,55 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-07-01,COM,25144,0,CHAZELOT,Chazelot,Chazelot,COM,25505,0,ROUGEMONT,Rougemont,Rougemont 33,1973-07-01,COM,25167,0,COTTIER,Cottier,Cottier,COMA,25167,0,COTTIER,Cottier,Cottier 33,1973-07-01,COM,25167,0,COTTIER,Cottier,Cottier,COM,25374,0,MERCEY LE GRAND,Mercey-le-Grand,Mercey-le-Grand -33,1973-07-01,COM,25168,0,COULANS SUR LIZON,Coulans-sur-Lizon,Coulans-sur-Lizon,COM,25223,1,ETERNOZ,Éternoz,Éternoz 33,1973-07-01,COM,25168,0,COULANS SUR LIZON,Coulans-sur-Lizon,Coulans-sur-Lizon,COMA,25168,0,COULANS SUR LIZON,Coulans-sur-Lizon,Coulans-sur-Lizon +33,1973-07-01,COM,25168,0,COULANS SUR LIZON,Coulans-sur-Lizon,Coulans-sur-Lizon,COM,25223,1,ETERNOZ,Éternoz,Éternoz 33,1973-07-01,COM,25205,0,DOULAIZE,Doulaize,Doulaize,COMA,25205,0,DOULAIZE,Doulaize,Doulaize 33,1973-07-01,COM,25205,0,DOULAIZE,Doulaize,Doulaize,COM,25223,1,ETERNOZ,Éternoz,Éternoz 33,1973-07-01,COM,25223,1,ETERNOZ,Éternoz,Éternoz,COM,25223,1,ETERNOZ,Éternoz,Éternoz 33,1973-07-01,COM,25275,0,GLERE,Glère,Glère,COM,25275,0,GLERE,Glère,Glère 33,1973-07-01,COM,25374,0,MERCEY LE GRAND,Mercey-le-Grand,Mercey-le-Grand,COM,25374,0,MERCEY LE GRAND,Mercey-le-Grand,Mercey-le-Grand 33,1973-07-01,COM,25385,0,MONTAGNEY,Montagney,Montagney,COM,25385,0,MONTAGNEY SERVIGNEY,Montagney-Servigney,Montagney-Servigney -33,1973-07-01,COM,25396,0,MONTFERNEY,Montferney,Montferney,COM,25505,0,ROUGEMONT,Rougemont,Rougemont 33,1973-07-01,COM,25396,0,MONTFERNEY,Montferney,Montferney,COMA,25396,0,MONTFERNEY,Montferney,Montferney -33,1973-07-01,COM,25407,0,MONTURSIN,Montursin,Montursin,COMA,25407,0,MONTURSIN,Montursin,Montursin +33,1973-07-01,COM,25396,0,MONTFERNEY,Montferney,Montferney,COM,25505,0,ROUGEMONT,Rougemont,Rougemont 33,1973-07-01,COM,25407,0,MONTURSIN,Montursin,Montursin,COM,25275,0,GLERE,Glère,Glère -33,1973-07-01,COM,25409,0,MORCHAMPS,Morchamps,Morchamps,COM,25505,0,ROUGEMONT,Rougemont,Rougemont +33,1973-07-01,COM,25407,0,MONTURSIN,Montursin,Montursin,COMA,25407,0,MONTURSIN,Montursin,Montursin 33,1973-07-01,COM,25409,0,MORCHAMPS,Morchamps,Morchamps,COMA,25409,0,MORCHAMPS,Morchamps,Morchamps +33,1973-07-01,COM,25409,0,MORCHAMPS,Morchamps,Morchamps,COM,25505,0,ROUGEMONT,Rougemont,Rougemont 33,1973-07-01,COM,25484,0,REFRANCHE,Refranche,Refranche,COM,25223,1,ETERNOZ,Éternoz,Éternoz 33,1973-07-01,COM,25484,0,REFRANCHE,Refranche,Refranche,COMA,25484,0,REFRANCHE,Refranche,Refranche 33,1973-07-01,COM,25505,0,ROUGEMONT,Rougemont,Rougemont,COM,25505,0,ROUGEMONT,Rougemont,Rougemont -33,1973-07-01,COM,25543,0,SERVIGNEY,Servigney,Servigney,COMA,25543,0,SERVIGNEY,Servigney,Servigney 33,1973-07-01,COM,25543,0,SERVIGNEY,Servigney,Servigney,COM,25385,0,MONTAGNEY SERVIGNEY,Montagney-Servigney,Montagney-Servigney +33,1973-07-01,COM,25543,0,SERVIGNEY,Servigney,Servigney,COMA,25543,0,SERVIGNEY,Servigney,Servigney 33,1973-07-01,COM,25606,0,VERNOIS LE FOL,Vernois-le-Fol,Vernois-le-Fol,COM,25275,0,GLERE,Glère,Glère 33,1973-07-01,COM,25606,0,VERNOIS LE FOL,Vernois-le-Fol,Vernois-le-Fol,COMA,25606,0,VERNOIS LE FOL,Vernois-le-Fol,Vernois-le-Fol -33,1973-07-01,COM,35020,0,BAZOUGES SOUS HEDE,Bazouges-sous-Hédé,Bazouges-sous-Hédé,COM,35130,0,HEDE,Hédé,Hédé 33,1973-07-01,COM,35020,0,BAZOUGES SOUS HEDE,Bazouges-sous-Hédé,Bazouges-sous-Hédé,COMA,35020,0,BAZOUGES SOUS HEDE,Bazouges-sous-Hédé,Bazouges-sous-Hédé +33,1973-07-01,COM,35020,0,BAZOUGES SOUS HEDE,Bazouges-sous-Hédé,Bazouges-sous-Hédé,COM,35130,0,HEDE,Hédé,Hédé 33,1973-07-01,COM,35130,0,HEDE,Hédé,Hédé,COM,35130,0,HEDE,Hédé,Hédé -33,1973-07-01,COM,35317,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,COMA,35317,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien 33,1973-07-01,COM,35317,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,COM,35130,0,HEDE,Hédé,Hédé +33,1973-07-01,COM,35317,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,COMA,35317,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien 33,1973-07-01,COM,39022,1,ASNANS,Asnans,Asnans,COM,39022,1,ASNANS BEAUVOISIN,Asnans-Beauvoisin,Asnans-Beauvoisin -33,1973-07-01,COM,39044,0,BEAUVOISIN,Beauvoisin,Beauvoisin,COMA,39044,0,BEAUVOISIN,Beauvoisin,Beauvoisin 33,1973-07-01,COM,39044,0,BEAUVOISIN,Beauvoisin,Beauvoisin,COM,39022,1,ASNANS BEAUVOISIN,Asnans-Beauvoisin,Asnans-Beauvoisin +33,1973-07-01,COM,39044,0,BEAUVOISIN,Beauvoisin,Beauvoisin,COMA,39044,0,BEAUVOISIN,Beauvoisin,Beauvoisin 33,1973-07-01,COM,48039,0,CHANAC,Chanac,Chanac,COM,48039,0,CHANAC,Chanac,Chanac -33,1973-07-01,COM,48196,2,VILLARD,Villard,Le Villard,COMA,48196,2,VILLARD,Villard,Le Villard 33,1973-07-01,COM,48196,2,VILLARD,Villard,Le Villard,COM,48039,0,CHANAC,Chanac,Chanac +33,1973-07-01,COM,48196,2,VILLARD,Villard,Le Villard,COMA,48196,2,VILLARD,Villard,Le Villard 31,1973-07-01,COM,51017,1,ARZILLIERES,Arzillières,Arzillières,COM,51017,1,ARZILLIERES NEUVILLE,Arzillières-Neuville,Arzillières-Neuville 33,1973-07-01,COM,51136,0,CHATILLON SUR MARNE,Châtillon-sur-Marne,Châtillon-sur-Marne,COM,51136,0,CHATILLON SUR MARNE,Châtillon-sur-Marne,Châtillon-sur-Marne -33,1973-07-01,COM,51201,0,CUISLES,Cuisles,Cuisles,COMA,51201,0,CUISLES,Cuisles,Cuisles 33,1973-07-01,COM,51201,0,CUISLES,Cuisles,Cuisles,COM,51136,0,CHATILLON SUR MARNE,Châtillon-sur-Marne,Châtillon-sur-Marne +33,1973-07-01,COM,51201,0,CUISLES,Cuisles,Cuisles,COMA,51201,0,CUISLES,Cuisles,Cuisles 31,1973-07-01,COM,51400,0,NEUVILLE SOUS ARZILLIERES,Neuville-sous-Arzillières,Neuville-sous-Arzillières,COM,51017,1,ARZILLIERES NEUVILLE,Arzillières-Neuville,Arzillières-Neuville 33,1973-07-01,COM,54405,1,OCHEY,Ochey,Ochey,COM,54405,1,OCHEY THUILLEY,Ochey-Thuilley,Ochey-Thuilley -33,1973-07-01,COM,54523,0,THUILLEY AUX GROSEILLES,Thuilley-aux-Groseilles,Thuilley-aux-Groseilles,COMA,54523,0,THUILLEY AUX GROSEILLES,Thuilley-aux-Groseilles,Thuilley-aux-Groseilles 33,1973-07-01,COM,54523,0,THUILLEY AUX GROSEILLES,Thuilley-aux-Groseilles,Thuilley-aux-Groseilles,COM,54405,1,OCHEY THUILLEY,Ochey-Thuilley,Ochey-Thuilley -33,1973-07-01,COMA,55020,1,AUZEVILLE EN ARGONNE,Auzéville-en-Argonne,Auzéville-en-Argonne,COM,55117,0,CLERMONT EN ARGONNE,Clermont-en-Argonne,Clermont-en-Argonne -33,1973-07-01,COMA,55020,1,AUZEVILLE EN ARGONNE,Auzéville-en-Argonne,Auzéville-en-Argonne,COMA,55020,1,AUZEVILLE EN ARGONNE,Auzéville-en-Argonne,Auzéville-en-Argonne +33,1973-07-01,COM,54523,0,THUILLEY AUX GROSEILLES,Thuilley-aux-Groseilles,Thuilley-aux-Groseilles,COMA,54523,0,THUILLEY AUX GROSEILLES,Thuilley-aux-Groseilles,Thuilley-aux-Groseilles 33,1973-07-01,COM,55117,0,CLERMONT EN ARGONNE,Clermont-en-Argonne,Clermont-en-Argonne,COM,55117,0,CLERMONT EN ARGONNE,Clermont-en-Argonne,Clermont-en-Argonne -33,1973-07-01,COM,55208,0,GESNES EN ARGONNE,Gesnes-en-Argonne,Gesnes-en-Argonne,COM,55438,0,ROMAGNE GESNES,Romagne-Gesnes,Romagne-Gesnes 33,1973-07-01,COM,55208,0,GESNES EN ARGONNE,Gesnes-en-Argonne,Gesnes-en-Argonne,COMA,55208,0,GESNES EN ARGONNE,Gesnes-en-Argonne,Gesnes-en-Argonne -33,1973-07-01,COM,55259,0,JUBECOURT,Jubécourt,Jubécourt,COMA,55259,0,JUBECOURT,Jubécourt,Jubécourt +33,1973-07-01,COM,55208,0,GESNES EN ARGONNE,Gesnes-en-Argonne,Gesnes-en-Argonne,COM,55438,0,ROMAGNE GESNES,Romagne-Gesnes,Romagne-Gesnes 33,1973-07-01,COM,55259,0,JUBECOURT,Jubécourt,Jubécourt,COM,55117,0,CLERMONT EN ARGONNE,Clermont-en-Argonne,Clermont-en-Argonne -33,1973-07-01,COM,55402,0,PAROIS,Parois,Parois,COMA,55402,0,PAROIS,Parois,Parois +33,1973-07-01,COM,55259,0,JUBECOURT,Jubécourt,Jubécourt,COMA,55259,0,JUBECOURT,Jubécourt,Jubécourt 33,1973-07-01,COM,55402,0,PAROIS,Parois,Parois,COM,55117,0,CLERMONT EN ARGONNE,Clermont-en-Argonne,Clermont-en-Argonne -33,1973-07-01,COM,55413,0,RAMPONT,Rampont,Rampont,COM,55497,4,SOUHESMES RAMPONT,Souhesmes-Rampont,Les Souhesmes-Rampont +33,1973-07-01,COM,55402,0,PAROIS,Parois,Parois,COMA,55402,0,PAROIS,Parois,Parois 33,1973-07-01,COM,55413,0,RAMPONT,Rampont,Rampont,COMA,55413,0,RAMPONT,Rampont,Rampont +33,1973-07-01,COM,55413,0,RAMPONT,Rampont,Rampont,COM,55497,4,SOUHESMES RAMPONT,Souhesmes-Rampont,Les Souhesmes-Rampont 33,1973-07-01,COM,55438,0,ROMAGNE SOUS MONTFAUCON,Romagne-sous-Montfaucon,Romagne-sous-Montfaucon,COM,55438,0,ROMAGNE GESNES,Romagne-Gesnes,Romagne-Gesnes 33,1973-07-01,COM,55497,4,SOUHESMES,Souhesmes,Les Souhesmes,COM,55497,4,SOUHESMES RAMPONT,Souhesmes-Rampont,Les Souhesmes-Rampont 33,1973-07-01,COM,57011,1,ALBESTROFF,Albestroff,Albestroff,COM,57011,1,ALBESTROFF,Albestroff,Albestroff @@ -9063,39 +8881,39 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-07-01,COM,57248,0,GIVRYCOURT,Givrycourt,Givrycourt,COMA,57248,0,GIVRYCOURT,Givrycourt,Givrycourt 33,1973-07-01,COM,57346,1,INSMING,Insming,Insming,COM,57011,1,ALBESTROFF,Albestroff,Albestroff 33,1973-07-01,COM,57346,1,INSMING,Insming,Insming,COMA,57346,1,INSMING,Insming,Insming -33,1973-07-01,COM,57494,0,MUNSTER,Munster,Munster,COMA,57494,0,MUNSTER,Munster,Munster 33,1973-07-01,COM,57494,0,MUNSTER,Munster,Munster,COM,57011,1,ALBESTROFF,Albestroff,Albestroff +33,1973-07-01,COM,57494,0,MUNSTER,Munster,Munster,COMA,57494,0,MUNSTER,Munster,Munster 33,1973-07-01,COM,57573,0,RENING,Réning,Réning,COM,57011,1,ALBESTROFF,Albestroff,Albestroff 33,1973-07-01,COM,57573,0,RENING,Réning,Réning,COMA,57573,0,RENING,Réning,Réning -33,1973-07-01,COM,57675,0,TORCHEVILLE,Torcheville,Torcheville,COMA,57675,0,TORCHEVILLE,Torcheville,Torcheville 33,1973-07-01,COM,57675,0,TORCHEVILLE,Torcheville,Torcheville,COM,57011,1,ALBESTROFF,Albestroff,Albestroff +33,1973-07-01,COM,57675,0,TORCHEVILLE,Torcheville,Torcheville,COMA,57675,0,TORCHEVILLE,Torcheville,Torcheville 33,1973-07-01,COM,63038,0,BESSE EN CHANDESSE,Besse-en-Chandesse,Besse-en-Chandesse,COM,63038,0,BESSE ET SAINT ANASTAISE,Besse-et-Saint-Anastaise,Besse-et-Saint-Anastaise 33,1973-07-01,COM,63316,0,SAINT ANASTAISE,Saint-Anastaise,Saint-Anastaise,COM,63038,0,BESSE ET SAINT ANASTAISE,Besse-et-Saint-Anastaise,Besse-et-Saint-Anastaise 33,1973-07-01,COM,63316,0,SAINT ANASTAISE,Saint-Anastaise,Saint-Anastaise,COMA,63316,0,SAINT ANASTAISE,Saint-Anastaise,Saint-Anastaise -33,1973-07-01,COM,70246,0,FOUVENT LE BAS,Fouvent-le-Bas,Fouvent-le-Bas,COM,70247,0,FOUVENT SAINT ANDOCHE,Fouvent-Saint-Andoche,Fouvent-Saint-Andoche 33,1973-07-01,COM,70246,0,FOUVENT LE BAS,Fouvent-le-Bas,Fouvent-le-Bas,COMA,70246,0,FOUVENT LE BAS,Fouvent-le-Bas,Fouvent-le-Bas +33,1973-07-01,COM,70246,0,FOUVENT LE BAS,Fouvent-le-Bas,Fouvent-le-Bas,COM,70247,0,FOUVENT SAINT ANDOCHE,Fouvent-Saint-Andoche,Fouvent-Saint-Andoche 33,1973-07-01,COM,70247,0,FOUVENT LE HAUT,Fouvent-le-Haut,Fouvent-le-Haut,COM,70247,0,FOUVENT SAINT ANDOCHE,Fouvent-Saint-Andoche,Fouvent-Saint-Andoche -33,1973-07-01,COM,70458,0,SAINT ANDOCHE,Saint-Andoche,Saint-Andoche,COMA,70458,0,SAINT ANDOCHE,Saint-Andoche,Saint-Andoche 33,1973-07-01,COM,70458,0,SAINT ANDOCHE,Saint-Andoche,Saint-Andoche,COM,70247,0,FOUVENT SAINT ANDOCHE,Fouvent-Saint-Andoche,Fouvent-Saint-Andoche +33,1973-07-01,COM,70458,0,SAINT ANDOCHE,Saint-Andoche,Saint-Andoche,COMA,70458,0,SAINT ANDOCHE,Saint-Andoche,Saint-Andoche 33,1973-07-01,COM,71056,0,BRANGES,Branges,Branges,COMA,71056,0,BRANGES,Branges,Branges 33,1973-07-01,COM,71056,0,BRANGES,Branges,Branges,COM,71263,0,LOUHANS,Louhans,Louhans 33,1973-07-01,COM,71114,0,CHATEAURENAUD,Châteaurenaud,Châteaurenaud,COMA,71114,0,CHATEAURENAUD,Châteaurenaud,Châteaurenaud 33,1973-07-01,COM,71114,0,CHATEAURENAUD,Châteaurenaud,Châteaurenaud,COM,71263,0,LOUHANS,Louhans,Louhans 33,1973-07-01,COM,71263,0,LOUHANS,Louhans,Louhans,COM,71263,0,LOUHANS,Louhans,Louhans -33,1973-07-01,COM,71528,0,SORNAY,Sornay,Sornay,COMA,71528,0,SORNAY,Sornay,Sornay 33,1973-07-01,COM,71528,0,SORNAY,Sornay,Sornay,COM,71263,0,LOUHANS,Louhans,Louhans +33,1973-07-01,COM,71528,0,SORNAY,Sornay,Sornay,COMA,71528,0,SORNAY,Sornay,Sornay 33,1973-07-01,COM,80211,0,CONTY,Conty,Conty,COM,80211,0,CONTY,Conty,Conty -33,1973-07-01,COM,80816,0,WAILLY,Wailly,Wailly,COMA,80816,0,WAILLY,Wailly,Wailly 33,1973-07-01,COM,80816,0,WAILLY,Wailly,Wailly,COM,80211,0,CONTY,Conty,Conty +33,1973-07-01,COM,80816,0,WAILLY,Wailly,Wailly,COMA,80816,0,WAILLY,Wailly,Wailly 31,1973-07-01,COM,90040,1,ETUEFFONT BAS,Étueffont-Bas,Étueffont-Bas,COM,90041,1,ETUEFFONT,Étueffont,Étueffont 31,1973-07-01,COM,90041,1,ETUEFFONT HAUT,Étueffont-Haut,Étueffont-Haut,COM,90041,1,ETUEFFONT,Étueffont,Étueffont 33,1973-06-01,COM,21074,0,BILLEY,Billey,Billey,COMA,21074,0,BILLEY,Billey,Billey 33,1973-06-01,COM,21074,0,BILLEY,Billey,Billey,COM,21331,0,LABERGEMENT LES AUXONNE BILLEY FLAGEY,Labergement-lès-Auxonne-Billey-Flagey,Labergement-lès-Auxonne-Billey-Flagey -33,1973-06-01,COM,21268,0,FLAGEY LES AUXONNE,Flagey-lès-Auxonne,Flagey-lès-Auxonne,COM,21331,0,LABERGEMENT LES AUXONNE BILLEY FLAGEY,Labergement-lès-Auxonne-Billey-Flagey,Labergement-lès-Auxonne-Billey-Flagey 33,1973-06-01,COM,21268,0,FLAGEY LES AUXONNE,Flagey-lès-Auxonne,Flagey-lès-Auxonne,COMA,21268,0,FLAGEY LES AUXONNE,Flagey-lès-Auxonne,Flagey-lès-Auxonne +33,1973-06-01,COM,21268,0,FLAGEY LES AUXONNE,Flagey-lès-Auxonne,Flagey-lès-Auxonne,COM,21331,0,LABERGEMENT LES AUXONNE BILLEY FLAGEY,Labergement-lès-Auxonne-Billey-Flagey,Labergement-lès-Auxonne-Billey-Flagey 33,1973-06-01,COM,21331,0,LABERGEMENT LES AUXONNE,Labergement-lès-Auxonne,Labergement-lès-Auxonne,COM,21331,0,LABERGEMENT LES AUXONNE BILLEY FLAGEY,Labergement-lès-Auxonne-Billey-Flagey,Labergement-lès-Auxonne-Billey-Flagey -33,1973-06-01,COM,42080,3,CULA,Cula,La Cula,COM,42225,0,GENILAC,Genilac,Genilac 33,1973-06-01,COM,42080,3,CULA,Cula,La Cula,COMA,42080,3,CULA,Cula,La Cula +33,1973-06-01,COM,42080,3,CULA,Cula,La Cula,COM,42225,0,GENILAC,Genilac,Genilac 33,1973-06-01,COM,42225,0,SAINT GENIS TERRENOIRE,Saint-Genis-Terrenoire,Saint-Genis-Terrenoire,COM,42225,0,GENILAC,Genilac,Genilac 33,1973-06-01,COM,44042,2,CLION SUR MER,Clion-sur-Mer,Le Clion-sur-Mer,COMA,44042,2,CLION SUR MER,Clion-sur-Mer,Le Clion-sur-Mer 33,1973-06-01,COM,44042,2,CLION SUR MER,Clion-sur-Mer,Le Clion-sur-Mer,COM,44131,0,PORNIC,Pornic,Pornic @@ -9103,8 +8921,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-06-01,COM,44177,0,SAINTE MARIE,Sainte-Marie,Sainte-Marie,COM,44131,0,PORNIC,Pornic,Pornic 33,1973-06-01,COM,44177,0,SAINTE MARIE,Sainte-Marie,Sainte-Marie,COMA,44177,0,SAINTE MARIE,Sainte-Marie,Sainte-Marie 33,1973-06-01,COM,45348,1,YEVRE LA VILLE,Yèvre-la-Ville,Yèvre-la-Ville,COM,45348,1,YEVRE LA VILLE,Yèvre-la-Ville,Yèvre-la-Ville -33,1973-06-01,COM,45349,1,YEVRE LE CHATEL,Yèvre-le-Châtel,Yèvre-le-Châtel,COMA,45349,1,YEVRE LE CHATEL,Yèvre-le-Châtel,Yèvre-le-Châtel 33,1973-06-01,COM,45349,1,YEVRE LE CHATEL,Yèvre-le-Châtel,Yèvre-le-Châtel,COM,45348,1,YEVRE LA VILLE,Yèvre-la-Ville,Yèvre-la-Ville +33,1973-06-01,COM,45349,1,YEVRE LE CHATEL,Yèvre-le-Châtel,Yèvre-le-Châtel,COMA,45349,1,YEVRE LE CHATEL,Yèvre-le-Châtel,Yèvre-le-Châtel 33,1973-06-01,COM,52078,0,BROTTES,Brottes,Brottes,COMA,52078,0,BROTTES,Brottes,Brottes 33,1973-06-01,COM,52078,0,BROTTES,Brottes,Brottes,COM,52121,0,CHAUMONT,Chaumont,Chaumont 33,1973-06-01,COM,52121,0,CHAUMONT,Chaumont,Chaumont,COM,52121,0,CHAUMONT,Chaumont,Chaumont @@ -9116,69 +8934,69 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-06-01,COM,76601,0,SAINT LUCIEN,Saint-Lucien,Saint-Lucien,COMA,76601,0,SAINT LUCIEN,Saint-Lucien,Saint-Lucien 33,1973-06-01,COM,76601,0,SAINT LUCIEN,Saint-Lucien,Saint-Lucien,COM,76676,0,SIGY EN BRAY,Sigy-en-Bray,Sigy-en-Bray 33,1973-06-01,COM,76676,0,SIGY EN BRAY,Sigy-en-Bray,Sigy-en-Bray,COM,76676,0,SIGY EN BRAY,Sigy-en-Bray,Sigy-en-Bray -33,1973-05-15,COM,04119,0,MEOLANS,Méolans,Méolans,COMA,04119,0,MEOLANS,Méolans,Méolans -33,1973-05-15,COM,04119,0,MEOLANS,Méolans,Méolans,COM,04161,0,MEOLANS REVEL,Méolans-Revel,Méolans-Revel -33,1973-05-15,COM,04161,0,REVEL,Revel,Revel,COM,04161,0,MEOLANS REVEL,Méolans-Revel,Méolans-Revel -33,1973-05-01,COM,10036,0,BEAUVOIR SUR SARCE,Beauvoir-sur-Sarce,Beauvoir-sur-Sarce,COM,10058,0,BRAGELOGNE BEAUVOIR,Bragelogne-Beauvoir,Bragelogne-Beauvoir +33,1973-05-15,COM,4119,0,MEOLANS,Méolans,Méolans,COMA,4119,0,MEOLANS,Méolans,Méolans +33,1973-05-15,COM,4119,0,MEOLANS,Méolans,Méolans,COM,4161,0,MEOLANS REVEL,Méolans-Revel,Méolans-Revel +33,1973-05-15,COM,4161,0,REVEL,Revel,Revel,COM,4161,0,MEOLANS REVEL,Méolans-Revel,Méolans-Revel 33,1973-05-01,COM,10036,0,BEAUVOIR SUR SARCE,Beauvoir-sur-Sarce,Beauvoir-sur-Sarce,COMA,10036,0,BEAUVOIR SUR SARCE,Beauvoir-sur-Sarce,Beauvoir-sur-Sarce +33,1973-05-01,COM,10036,0,BEAUVOIR SUR SARCE,Beauvoir-sur-Sarce,Beauvoir-sur-Sarce,COM,10058,0,BRAGELOGNE BEAUVOIR,Bragelogne-Beauvoir,Bragelogne-Beauvoir 33,1973-05-01,COM,10058,0,BRAGELOGNE,Bragelogne,Bragelogne,COM,10058,0,BRAGELOGNE BEAUVOIR,Bragelogne-Beauvoir,Bragelogne-Beauvoir -33,1973-05-01,COM,14507,0,PLEINES OEUVRES,Pleines-Œuvres,Pleines-Œuvres,COM,14513,0,PONT FARCY,Pont-Farcy,Pont-Farcy -33,1973-05-01,COM,14507,0,PLEINES OEUVRES,Pleines-Œuvres,Pleines-Œuvres,COMA,14507,0,PLEINES OEUVRES,Pleines-Œuvres,Pleines-Œuvres +33,1973-05-01,COM,14507,0,PLEINES OUVRES,Pleines-Œuvres,Pleines-Œuvres,COMA,14507,0,PLEINES OUVRES,Pleines-Œuvres,Pleines-Œuvres +33,1973-05-01,COM,14507,0,PLEINES OUVRES,Pleines-Œuvres,Pleines-Œuvres,COM,14513,0,PONT FARCY,Pont-Farcy,Pont-Farcy 33,1973-05-01,COM,14513,0,PONT FARCY,Pont-Farcy,Pont-Farcy,COM,14513,0,PONT FARCY,Pont-Farcy,Pont-Farcy 33,1973-05-01,COM,25036,1,AVANNE,Avanne,Avanne,COM,25036,1,AVANNE AVENEY,Avanne-Aveney,Avanne-Aveney -33,1973-05-01,COM,25037,1,AVENEY,Aveney,Aveney,COMA,25037,1,AVENEY,Aveney,Aveney 33,1973-05-01,COM,25037,1,AVENEY,Aveney,Aveney,COM,25036,1,AVANNE AVENEY,Avanne-Aveney,Avanne-Aveney +33,1973-05-01,COM,25037,1,AVENEY,Aveney,Aveney,COMA,25037,1,AVENEY,Aveney,Aveney 31,1973-05-01,COM,27105,0,BOURGTHEROULDE,Bourgtheroulde,Bourgtheroulde,COM,27105,0,BOURGTHEROULDE INFREVILLE,Bourgtheroulde-Infreville,Bourgtheroulde-Infreville 31,1973-05-01,COM,27352,1,INFREVILLE,Infreville,Infreville,COM,27105,0,BOURGTHEROULDE INFREVILLE,Bourgtheroulde-Infreville,Bourgtheroulde-Infreville 33,1973-05-01,COM,55002,1,ABAUCOURT LES SOUPPLEVILLE,Abaucourt-lès-Souppleville,Abaucourt-lès-Souppleville,COM,55002,1,ABAUCOURT HAUTECOURT,Abaucourt-Hautecourt,Abaucourt-Hautecourt 33,1973-05-01,COM,55085,0,BROUSSEY EN WOEVRE,Broussey-en-Woëvre,Broussey-en-Woëvre,COM,55085,0,BROUSSEY RAULECOURT,Broussey-Raulecourt,Broussey-Raulecourt -33,1973-05-01,COM,55240,1,HAUTECOURT LES BROVILLE,Hautecourt-lès-Broville,Hautecourt-lès-Broville,COMA,55240,1,HAUTECOURT LES BROVILLE,Hautecourt-lès-Broville,Hautecourt-lès-Broville 33,1973-05-01,COM,55240,1,HAUTECOURT LES BROVILLE,Hautecourt-lès-Broville,Hautecourt-lès-Broville,COM,55002,1,ABAUCOURT HAUTECOURT,Abaucourt-Hautecourt,Abaucourt-Hautecourt -33,1973-05-01,COM,55417,0,RAULECOURT,Raulecourt,Raulecourt,COMA,55417,0,RAULECOURT,Raulecourt,Raulecourt +33,1973-05-01,COM,55240,1,HAUTECOURT LES BROVILLE,Hautecourt-lès-Broville,Hautecourt-lès-Broville,COMA,55240,1,HAUTECOURT LES BROVILLE,Hautecourt-lès-Broville,Hautecourt-lès-Broville 33,1973-05-01,COM,55417,0,RAULECOURT,Raulecourt,Raulecourt,COM,55085,0,BROUSSEY RAULECOURT,Broussey-Raulecourt,Broussey-Raulecourt -33,1973-05-01,COM,57135,0,CHEMERY,Chémery,Chémery,COM,57209,0,FAULQUEMONT,Faulquemont,Faulquemont +33,1973-05-01,COM,55417,0,RAULECOURT,Raulecourt,Raulecourt,COMA,55417,0,RAULECOURT,Raulecourt,Raulecourt 33,1973-05-01,COM,57135,0,CHEMERY,Chémery,Chémery,COMA,57135,0,CHEMERY,Chémery,Chémery +33,1973-05-01,COM,57135,0,CHEMERY,Chémery,Chémery,COM,57209,0,FAULQUEMONT,Faulquemont,Faulquemont 33,1973-05-01,COM,57209,0,FAULQUEMONT,Faulquemont,Faulquemont,COM,57209,0,FAULQUEMONT,Faulquemont,Faulquemont -33,1973-04-15,COM,04003,1,ALBIOSC,Albiosc,Albiosc,COM,04081,1,ESPARRON DE VERDON,Esparron-de-Verdon,Esparron-de-Verdon -33,1973-04-15,COM,04003,1,ALBIOSC,Albiosc,Albiosc,COMA,04003,1,ALBIOSC,Albiosc,Albiosc -33,1973-04-15,COM,04081,1,ESPARRON DE VERDON,Esparron-de-Verdon,Esparron-de-Verdon,COM,04081,1,ESPARRON DE VERDON,Esparron-de-Verdon,Esparron-de-Verdon -31,1973-04-15,COM,04084,1,ESTOUBLON,Estoublon,Estoublon,COM,04084,1,ESTOUBLON,Estoublon,Estoublon -31,1973-04-15,COM,04221,0,TREVANS,Trévans,Trévans,COM,04084,1,ESTOUBLON,Estoublon,Estoublon +33,1973-04-15,COM,4003,1,ALBIOSC,Albiosc,Albiosc,COMA,4003,1,ALBIOSC,Albiosc,Albiosc +33,1973-04-15,COM,4003,1,ALBIOSC,Albiosc,Albiosc,COM,4081,1,ESPARRON DE VERDON,Esparron-de-Verdon,Esparron-de-Verdon +33,1973-04-15,COM,4081,1,ESPARRON DE VERDON,Esparron-de-Verdon,Esparron-de-Verdon,COM,4081,1,ESPARRON DE VERDON,Esparron-de-Verdon,Esparron-de-Verdon +31,1973-04-15,COM,4084,1,ESTOUBLON,Estoublon,Estoublon,COM,4084,1,ESTOUBLON,Estoublon,Estoublon +31,1973-04-15,COM,4221,0,TREVANS,Trévans,Trévans,COM,4084,1,ESTOUBLON,Estoublon,Estoublon 33,1973-04-10,COM,76355,0,HERICOURT EN CAUX,Héricourt-en-Caux,Héricourt-en-Caux,COM,76355,0,ROCQUEFORT SUR HERICOURT,Rocquefort-sur-Héricourt,Rocquefort-sur-Héricourt 33,1973-04-10,COM,76531,0,ROCQUEFORT,Rocquefort,Rocquefort,COM,76355,0,ROCQUEFORT SUR HERICOURT,Rocquefort-sur-Héricourt,Rocquefort-sur-Héricourt 33,1973-04-10,COM,76531,0,ROCQUEFORT,Rocquefort,Rocquefort,COMA,76531,0,ROCQUEFORT,Rocquefort,Rocquefort 31,1973-04-04,COM,76122,0,BOSC GEFFROY,Bosc-Geffroy,Bosc-Geffroy,COM,76122,0,CALLENGEVILLE,Callengeville,Callengeville 31,1973-04-04,COM,76246,4,ESSARTS VARIMPRE,Essarts-Varimpré,Les Essarts-Varimpré,COM,76122,0,CALLENGEVILLE,Callengeville,Callengeville 33,1973-04-04,COM,76351,2,HAVRE,Havre,Le Havre,COM,76351,2,HAVRE,Havre,Le Havre -33,1973-04-04,COM,76539,0,ROUELLES,Rouelles,Rouelles,COMA,76539,0,ROUELLES,Rouelles,Rouelles 33,1973-04-04,COM,76539,0,ROUELLES,Rouelles,Rouelles,COM,76351,2,HAVRE,Havre,Le Havre -31,1973-04-01,COM,04002,1,AINAC,Ainac,Ainac,COM,04167,3,ROBINE SUR GALABRE,Robine-sur-Galabre,La Robine-sur-Galabre -33,1973-04-01,COM,04011,1,ASTOIN,Astoin,Astoin,COM,04023,0,BAYONS,Bayons,Bayons -33,1973-04-01,COM,04011,1,ASTOIN,Astoin,Astoin,COMA,04011,1,ASTOIN,Astoin,Astoin -33,1973-04-01,COM,04023,0,BAYONS,Bayons,Bayons,COM,04023,0,BAYONS,Bayons,Bayons -33,1973-04-01,COM,04040,2,CASTELLARD,Castellard,Le Castellard,COM,04040,2,CASTELLARD MELAN,Castellard-Melan,Le Castellard-Melan -31,1973-04-01,COM,04080,1,ESCLANGON,Esclangon,Esclangon,COM,04097,3,JAVIE,Javie,La Javie -33,1973-04-01,COM,04082,1,ESPARRON LA BATIE,Esparron-la-Bâtie,Esparron-la-Bâtie,COMA,04082,1,ESPARRON LA BATIE,Esparron-la-Bâtie,Esparron-la-Bâtie -33,1973-04-01,COM,04082,1,ESPARRON LA BATIE,Esparron-la-Bâtie,Esparron-la-Bâtie,COM,04023,0,BAYONS,Bayons,Bayons -33,1973-04-01,COM,04089,0,FOURS,Fours,Fours,COM,04226,1,UVERNET FOURS,Uvernet-Fours,Uvernet-Fours -33,1973-04-01,COM,04089,0,FOURS,Fours,Fours,COMA,04089,0,FOURS,Fours,Fours -31,1973-04-01,COM,04097,3,JAVIE,Javie,La Javie,COM,04097,3,JAVIE,Javie,La Javie -31,1973-04-01,COM,04098,0,LAMBERT,Lambert,Lambert,COM,04167,3,ROBINE SUR GALABRE,Robine-sur-Galabre,La Robine-sur-Galabre -33,1973-04-01,COM,04114,0,MARIAUD,Mariaud,Mariaud,COM,04155,0,PRADS,Prads,Prads -33,1973-04-01,COM,04114,0,MARIAUD,Mariaud,Mariaud,COMA,04114,0,MARIAUD,Mariaud,Mariaud -33,1973-04-01,COM,04117,0,MELAN,Melan,Melan,COMA,04117,0,MELAN,Melan,Melan -33,1973-04-01,COM,04117,0,MELAN,Melan,Melan,COM,04040,2,CASTELLARD MELAN,Castellard-Melan,Le Castellard-Melan -33,1973-04-01,COM,04155,0,PRADS,Prads,Prads,COM,04155,0,PRADS,Prads,Prads -33,1973-04-01,COM,04165,0,REYNIER,Reynier,Reynier,COMA,04165,0,REYNIER,Reynier,Reynier -33,1973-04-01,COM,04165,0,REYNIER,Reynier,Reynier,COM,04023,0,BAYONS,Bayons,Bayons -31,1973-04-01,COM,04167,3,ROBINE,Robine,La Robine,COM,04167,3,ROBINE SUR GALABRE,Robine-sur-Galabre,La Robine-sur-Galabre -31,1973-04-01,COM,04213,0,TANARON,Tanaron,Tanaron,COM,04167,3,ROBINE SUR GALABRE,Robine-sur-Galabre,La Robine-sur-Galabre -33,1973-04-01,COM,04226,1,UVERNET,Uvernet,Uvernet,COM,04226,1,UVERNET FOURS,Uvernet-Fours,Uvernet-Fours -33,1973-04-01,COM,09036,0,BANAT,Banat,Banat,COMA,09036,0,BANAT,Banat,Banat -33,1973-04-01,COM,09036,0,BANAT,Banat,Banat,COM,09306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège -33,1973-04-01,COM,09092,0,CAZENAVE SERRES ET ALLENS,Cazenave-Serres-et-Allens,Cazenave-Serres-et-Allens,COMA,09092,0,CAZENAVE SERRES ET ALLENS,Cazenave-Serres-et-Allens,Cazenave-Serres-et-Allens -33,1973-04-01,COM,09092,0,CAZENAVE SERRES ET ALLENS,Cazenave-Serres-et-Allens,Cazenave-Serres-et-Allens,COM,09306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège -33,1973-04-01,COM,09306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège,COM,09306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège +33,1973-04-04,COM,76539,0,ROUELLES,Rouelles,Rouelles,COMA,76539,0,ROUELLES,Rouelles,Rouelles +31,1973-04-01,COM,4002,1,AINAC,Ainac,Ainac,COM,4167,3,ROBINE SUR GALABRE,Robine-sur-Galabre,La Robine-sur-Galabre +33,1973-04-01,COM,4011,1,ASTOIN,Astoin,Astoin,COMA,4011,1,ASTOIN,Astoin,Astoin +33,1973-04-01,COM,4011,1,ASTOIN,Astoin,Astoin,COM,4023,0,BAYONS,Bayons,Bayons +33,1973-04-01,COM,4023,0,BAYONS,Bayons,Bayons,COM,4023,0,BAYONS,Bayons,Bayons +33,1973-04-01,COM,4040,2,CASTELLARD,Castellard,Le Castellard,COM,4040,2,CASTELLARD MELAN,Castellard-Melan,Le Castellard-Melan +31,1973-04-01,COM,4080,1,ESCLANGON,Esclangon,Esclangon,COM,4097,3,JAVIE,Javie,La Javie +33,1973-04-01,COM,4082,1,ESPARRON LA BATIE,Esparron-la-Bâtie,Esparron-la-Bâtie,COM,4023,0,BAYONS,Bayons,Bayons +33,1973-04-01,COM,4082,1,ESPARRON LA BATIE,Esparron-la-Bâtie,Esparron-la-Bâtie,COMA,4082,1,ESPARRON LA BATIE,Esparron-la-Bâtie,Esparron-la-Bâtie +33,1973-04-01,COM,4089,0,FOURS,Fours,Fours,COMA,4089,0,FOURS,Fours,Fours +33,1973-04-01,COM,4089,0,FOURS,Fours,Fours,COM,4226,1,UVERNET FOURS,Uvernet-Fours,Uvernet-Fours +31,1973-04-01,COM,4097,3,JAVIE,Javie,La Javie,COM,4097,3,JAVIE,Javie,La Javie +31,1973-04-01,COM,4098,0,LAMBERT,Lambert,Lambert,COM,4167,3,ROBINE SUR GALABRE,Robine-sur-Galabre,La Robine-sur-Galabre +33,1973-04-01,COM,4114,0,MARIAUD,Mariaud,Mariaud,COMA,4114,0,MARIAUD,Mariaud,Mariaud +33,1973-04-01,COM,4114,0,MARIAUD,Mariaud,Mariaud,COM,4155,0,PRADS,Prads,Prads +33,1973-04-01,COM,4117,0,MELAN,Melan,Melan,COM,4040,2,CASTELLARD MELAN,Castellard-Melan,Le Castellard-Melan +33,1973-04-01,COM,4117,0,MELAN,Melan,Melan,COMA,4117,0,MELAN,Melan,Melan +33,1973-04-01,COM,4155,0,PRADS,Prads,Prads,COM,4155,0,PRADS,Prads,Prads +33,1973-04-01,COM,4165,0,REYNIER,Reynier,Reynier,COM,4023,0,BAYONS,Bayons,Bayons +33,1973-04-01,COM,4165,0,REYNIER,Reynier,Reynier,COMA,4165,0,REYNIER,Reynier,Reynier +31,1973-04-01,COM,4167,3,ROBINE,Robine,La Robine,COM,4167,3,ROBINE SUR GALABRE,Robine-sur-Galabre,La Robine-sur-Galabre +31,1973-04-01,COM,4213,0,TANARON,Tanaron,Tanaron,COM,4167,3,ROBINE SUR GALABRE,Robine-sur-Galabre,La Robine-sur-Galabre +33,1973-04-01,COM,4226,1,UVERNET,Uvernet,Uvernet,COM,4226,1,UVERNET FOURS,Uvernet-Fours,Uvernet-Fours +33,1973-04-01,COM,9036,0,BANAT,Banat,Banat,COMA,9036,0,BANAT,Banat,Banat +33,1973-04-01,COM,9036,0,BANAT,Banat,Banat,COM,9306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège +33,1973-04-01,COM,9092,0,CAZENAVE SERRES ET ALLENS,Cazenave-Serres-et-Allens,Cazenave-Serres-et-Allens,COMA,9092,0,CAZENAVE SERRES ET ALLENS,Cazenave-Serres-et-Allens,Cazenave-Serres-et-Allens +33,1973-04-01,COM,9092,0,CAZENAVE SERRES ET ALLENS,Cazenave-Serres-et-Allens,Cazenave-Serres-et-Allens,COM,9306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège +33,1973-04-01,COM,9306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège,COM,9306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège 31,1973-04-01,COM,14071,0,BIEVILLE EN AUGE,Biéville-en-Auge,Biéville-en-Auge,COM,14527,0,BIEVILLE QUETIEVILLE,Biéville-Quétiéville,Biéville-Quétiéville 33,1973-04-01,COM,14333,0,HONFLEUR,Honfleur,Honfleur,COM,14333,0,HONFLEUR,Honfleur,Honfleur 31,1973-04-01,COM,14527,0,QUETIEVILLE,Quétiéville,Quétiéville,COM,14527,0,BIEVILLE QUETIEVILLE,Biéville-Quétiéville,Biéville-Quétiéville @@ -9188,28 +9006,28 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1973-04-01,COM,21461,0,NOLAY,Nolay,Nolay,COM,21461,0,NOLAY,Nolay,Nolay 31,1973-04-01,COM,22084,0,JUGON,Jugon,Jugon,COM,22084,0,JUGON LES LACS,Jugon-les-Lacs,Jugon-les-Lacs 31,1973-04-01,COM,22125,0,LESCOUET JUGON,Lescouët-Jugon,Lescouët-Jugon,COM,22084,0,JUGON LES LACS,Jugon-les-Lacs,Jugon-les-Lacs -33,1973-04-01,COM,22165,0,PENGUILY,Penguily,Penguily,COM,22296,0,SAINT GLEN PENGUILY,Saint-Glen-Penguily,Saint-Glen-Penguily 33,1973-04-01,COM,22165,0,PENGUILY,Penguily,Penguily,COMA,22165,0,PENGUILY,Penguily,Penguily +33,1973-04-01,COM,22165,0,PENGUILY,Penguily,Penguily,COM,22296,0,SAINT GLEN PENGUILY,Saint-Glen-Penguily,Saint-Glen-Penguily 33,1973-04-01,COM,22204,0,PLOEZAL,Ploëzal,Ploëzal,COM,22204,0,PLOEZAL RUNAN,Ploëzal-Runan,Ploëzal-Runan -33,1973-04-01,COM,22269,0,RUNAN,Runan,Runan,COMA,22269,0,RUNAN,Runan,Runan 33,1973-04-01,COM,22269,0,RUNAN,Runan,Runan,COM,22204,0,PLOEZAL RUNAN,Ploëzal-Runan,Ploëzal-Runan +33,1973-04-01,COM,22269,0,RUNAN,Runan,Runan,COMA,22269,0,RUNAN,Runan,Runan 33,1973-04-01,COM,22296,0,SAINT GLEN,Saint-Glen,Saint-Glen,COM,22296,0,SAINT GLEN PENGUILY,Saint-Glen-Penguily,Saint-Glen-Penguily 31,1973-04-01,COM,22301,0,SAINT IGNEUC,Saint-Igneuc,Saint-Igneuc,COM,22084,0,JUGON LES LACS,Jugon-les-Lacs,Jugon-les-Lacs 31,1973-04-01,COM,27024,1,AUTHENAY,Authenay,Authenay,COM,27024,2,RONCENAY AUTHENAY,Roncenay-Authenay,Le Roncenay-Authenay 31,1973-04-01,COM,27494,2,RONCENAY,Roncenay,Le Roncenay,COM,27024,2,RONCENAY AUTHENAY,Roncenay-Authenay,Le Roncenay-Authenay -33,1973-04-01,COM,35043,0,BROONS SUR VILAINE,Broons-sur-Vilaine,Broons-sur-Vilaine,COM,35068,0,CHATEAUBOURG,Châteaubourg,Châteaubourg 33,1973-04-01,COM,35043,0,BROONS SUR VILAINE,Broons-sur-Vilaine,Broons-sur-Vilaine,COMA,35043,0,BROONS SUR VILAINE,Broons-sur-Vilaine,Broons-sur-Vilaine +33,1973-04-01,COM,35043,0,BROONS SUR VILAINE,Broons-sur-Vilaine,Broons-sur-Vilaine,COM,35068,0,CHATEAUBOURG,Châteaubourg,Châteaubourg 33,1973-04-01,COM,35068,0,CHATEAUBOURG,Châteaubourg,Châteaubourg,COM,35068,0,CHATEAUBOURG,Châteaubourg,Châteaubourg 33,1973-04-01,COM,35298,0,SAINT MELAINE,Saint-Melaine,Saint-Melaine,COM,35068,0,CHATEAUBOURG,Châteaubourg,Châteaubourg 33,1973-04-01,COM,35298,0,SAINT MELAINE,Saint-Melaine,Saint-Melaine,COMA,35298,0,SAINT MELAINE,Saint-Melaine,Saint-Melaine -33,1973-04-01,COM,50011,1,ANGOVILLE EN SAIRE,Angoville-en-Saire,Angoville-en-Saire,COM,50142,0,COSQUEVILLE,Cosqueville,Cosqueville 33,1973-04-01,COM,50011,1,ANGOVILLE EN SAIRE,Angoville-en-Saire,Angoville-en-Saire,COMA,50011,1,ANGOVILLE EN SAIRE,Angoville-en-Saire,Angoville-en-Saire +33,1973-04-01,COM,50011,1,ANGOVILLE EN SAIRE,Angoville-en-Saire,Angoville-en-Saire,COM,50142,0,COSQUEVILLE,Cosqueville,Cosqueville 33,1973-04-01,COM,50142,0,COSQUEVILLE,Cosqueville,Cosqueville,COM,50142,0,COSQUEVILLE,Cosqueville,Cosqueville -33,1973-04-01,COM,50645,0,VRASVILLE,Vrasville,Vrasville,COMA,50645,0,VRASVILLE,Vrasville,Vrasville 33,1973-04-01,COM,50645,0,VRASVILLE,Vrasville,Vrasville,COM,50142,0,COSQUEVILLE,Cosqueville,Cosqueville +33,1973-04-01,COM,50645,0,VRASVILLE,Vrasville,Vrasville,COMA,50645,0,VRASVILLE,Vrasville,Vrasville 31,1973-04-01,COM,52026,1,AUGEVILLE,Augeville,Augeville,COM,52379,0,PAUTAINES AUGEVILLE,Pautaines-Augeville,Pautaines-Augeville -33,1973-04-01,COM,52041,0,BEAUCHARMOY,Beaucharmoy,Beaucharmoy,COM,52400,2,CHATELET SUR MEUSE,Châtelet-sur-Meuse,Le Châtelet-sur-Meuse 33,1973-04-01,COM,52041,0,BEAUCHARMOY,Beaucharmoy,Beaucharmoy,COMA,52041,0,BEAUCHARMOY,Beaucharmoy,Beaucharmoy +33,1973-04-01,COM,52041,0,BEAUCHARMOY,Beaucharmoy,Beaucharmoy,COM,52400,2,CHATELET SUR MEUSE,Châtelet-sur-Meuse,Le Châtelet-sur-Meuse 33,1973-04-01,COM,52094,0,CHALMESSIN,Chalmessin,Chalmessin,COM,52094,0,VALS DES TILLES,Vals-des-Tilles,Vals-des-Tilles 33,1973-04-01,COM,52209,0,FRESNOY EN BASSIGNY,Fresnoy-en-Bassigny,Fresnoy-en-Bassigny,COMA,52209,0,FRESNOY EN BASSIGNY,Fresnoy-en-Bassigny,Fresnoy-en-Bassigny 33,1973-04-01,COM,52209,0,FRESNOY EN BASSIGNY,Fresnoy-en-Bassigny,Fresnoy-en-Bassigny,COM,52377,0,PARNOY EN BASSIGNY,Parnoy-en-Bassigny,Parnoy-en-Bassigny @@ -9220,10 +9038,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-04-01,COM,52377,0,PARNOT,Parnot,Parnot,COM,52377,0,PARNOY EN BASSIGNY,Parnoy-en-Bassigny,Parnoy-en-Bassigny 31,1973-04-01,COM,52379,0,PAUTAINES,Pautaines,Pautaines,COM,52379,0,PAUTAINES AUGEVILLE,Pautaines-Augeville,Pautaines-Augeville 33,1973-04-01,COM,52400,0,POUILLY EN BASSIGNY,Pouilly-en-Bassigny,Pouilly-en-Bassigny,COM,52400,2,CHATELET SUR MEUSE,Châtelet-sur-Meuse,Le Châtelet-sur-Meuse -33,1973-04-01,COMA,52530,0,VILLEMERVRY,Villemervry,Villemervry,COM,52094,0,VALS DES TILLES,Vals-des-Tilles,Vals-des-Tilles -33,1973-04-01,COMA,52530,0,VILLEMERVRY,Villemervry,Villemervry,COMA,52530,0,VILLEMERVRY,Villemervry,Villemervry -33,1973-04-01,COM,52531,0,VILLEMORON,Villemoron,Villemoron,COMA,52531,0,VILLEMORON,Villemoron,Villemoron 33,1973-04-01,COM,52531,0,VILLEMORON,Villemoron,Villemoron,COM,52094,0,VALS DES TILLES,Vals-des-Tilles,Vals-des-Tilles +33,1973-04-01,COM,52531,0,VILLEMORON,Villemoron,Villemoron,COMA,52531,0,VILLEMORON,Villemoron,Villemoron 33,1973-04-01,COM,70209,1,ECHEVANNE,Échevanne,Échevanne,COMA,70209,1,ECHEVANNE,Échevanne,Échevanne 33,1973-04-01,COM,70209,1,ECHEVANNE,Échevanne,Échevanne,COM,70528,0,VELESMES ECHEVANNE,Velesmes-Échevanne,Velesmes-Échevanne 33,1973-04-01,COM,70528,0,VELESMES,Velesmes,Velesmes,COM,70528,0,VELESMES ECHEVANNE,Velesmes-Échevanne,Velesmes-Échevanne @@ -9240,34 +9056,34 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-03-20,COM,76680,0,SORQUAINVILLE,Sorquainville,Sorquainville,COM,76755,0,SAINT MICHEL EN CAUX,Saint-Michel-en-Caux,Saint-Michel-en-Caux 33,1973-03-20,COM,76689,0,THIETREVILLE,Thiétreville,Thiétreville,COMA,76689,0,THIETREVILLE,Thiétreville,Thiétreville 33,1973-03-20,COM,76689,0,THIETREVILLE,Thiétreville,Thiétreville,COM,76755,0,SAINT MICHEL EN CAUX,Saint-Michel-en-Caux,Saint-Michel-en-Caux -33,1973-03-20,COM,76755,0,YPREVILLE BIVILLE,Ypreville-Biville,Ypreville-Biville,COM,76755,0,SAINT MICHEL EN CAUX,Saint-Michel-en-Caux,Saint-Michel-en-Caux -10,1973-03-16,COM,02242,0,CROUTTES,Crouttes,Crouttes,COM,02242,0,CROUTTES SUR MARNE,Crouttes-sur-Marne,Crouttes-sur-Marne +33,1973-03-20,COM,76755,1,YPREVILLE BIVILLE,Ypreville-Biville,Ypreville-Biville,COM,76755,0,SAINT MICHEL EN CAUX,Saint-Michel-en-Caux,Saint-Michel-en-Caux +10,1973-03-16,COM,2242,0,CROUTTES,Crouttes,Crouttes,COM,2242,0,CROUTTES SUR MARNE,Crouttes-sur-Marne,Crouttes-sur-Marne 10,1973-03-16,COM,47067,0,CLERMONT DESSUS,Clermont-Dessus,Clermont-Dessus,COM,47067,0,CLERMONT SOUBIRAN,Clermont-Soubiran,Clermont-Soubiran 10,1973-03-16,COM,83014,0,BAUDINARD,Baudinard,Baudinard,COM,83014,0,BAUDINARD SUR VERDON,Baudinard-sur-Verdon,Baudinard-sur-Verdon -33,1973-03-15,COM,22103,0,LANGROLAY SUR RANCE,Langrolay-sur-Rance,Langrolay-sur-Rance,COM,22213,0,PLOUER LANGROLAY SUR RANCE,Plouër-Langrolay-sur-Rance,Plouër-Langrolay-sur-Rance 33,1973-03-15,COM,22103,0,LANGROLAY SUR RANCE,Langrolay-sur-Rance,Langrolay-sur-Rance,COMA,22103,0,LANGROLAY SUR RANCE,Langrolay-sur-Rance,Langrolay-sur-Rance +33,1973-03-15,COM,22103,0,LANGROLAY SUR RANCE,Langrolay-sur-Rance,Langrolay-sur-Rance,COM,22213,0,PLOUER LANGROLAY SUR RANCE,Plouër-Langrolay-sur-Rance,Plouër-Langrolay-sur-Rance 33,1973-03-15,COM,22213,0,PLOUER SUR RANCE,Plouër-sur-Rance,Plouër-sur-Rance,COM,22213,0,PLOUER LANGROLAY SUR RANCE,Plouër-Langrolay-sur-Rance,Plouër-Langrolay-sur-Rance -33,1973-03-15,COM,50053,4,BIARDS,Biards,Les Biards,COM,50256,1,ISIGNY LE BUAT,Isigny-le-Buat,Isigny-le-Buat 33,1973-03-15,COM,50053,4,BIARDS,Biards,Les Biards,COMA,50053,4,BIARDS,Biards,Les Biards +33,1973-03-15,COM,50053,4,BIARDS,Biards,Les Biards,COM,50256,1,ISIGNY LE BUAT,Isigny-le-Buat,Isigny-le-Buat 33,1973-03-15,COM,50113,0,CHALANDREY,Chalandrey,Chalandrey,COMA,50113,0,CHALANDREY,Chalandrey,Chalandrey 33,1973-03-15,COM,50113,0,CHALANDREY,Chalandrey,Chalandrey,COM,50256,1,ISIGNY LE BUAT,Isigny-le-Buat,Isigny-le-Buat 33,1973-03-15,COM,50256,1,ISIGNY LE BUAT,Isigny-le-Buat,Isigny-le-Buat,COM,50256,1,ISIGNY LE BUAT,Isigny-le-Buat,Isigny-le-Buat -33,1973-03-15,COM,50286,3,MANCELLIERE,Mancellière,La Mancellière,COMA,50286,3,MANCELLIERE,Mancellière,La Mancellière 33,1973-03-15,COM,50286,3,MANCELLIERE,Mancellière,La Mancellière,COM,50256,1,ISIGNY LE BUAT,Isigny-le-Buat,Isigny-le-Buat -33,1973-03-15,COM,50306,2,MESNIL BOEUFS,Mesnil-Bœufs,Le Mesnil-Bœufs,COMA,50306,2,MESNIL BOEUFS,Mesnil-Bœufs,Le Mesnil-Bœufs -33,1973-03-15,COM,50306,2,MESNIL BOEUFS,Mesnil-Bœufs,Le Mesnil-Bœufs,COM,50256,1,ISIGNY LE BUAT,Isigny-le-Buat,Isigny-le-Buat -33,1973-03-15,COM,50322,2,MESNIL THEBAULT,Mesnil-Thébault,Le Mesnil-Thébault,COMA,50322,2,MESNIL THEBAULT,Mesnil-Thébault,Le Mesnil-Thébault +33,1973-03-15,COM,50286,3,MANCELLIERE,Mancellière,La Mancellière,COMA,50286,3,MANCELLIERE,Mancellière,La Mancellière +33,1973-03-15,COM,50306,2,MESNIL BOUFS,Mesnil-Bœufs,Le Mesnil-Bœufs,COM,50256,1,ISIGNY LE BUAT,Isigny-le-Buat,Isigny-le-Buat +33,1973-03-15,COM,50306,2,MESNIL BOUFS,Mesnil-Bœufs,Le Mesnil-Bœufs,COMA,50306,2,MESNIL BOUFS,Mesnil-Bœufs,Le Mesnil-Bœufs 33,1973-03-15,COM,50322,2,MESNIL THEBAULT,Mesnil-Thébault,Le Mesnil-Thébault,COM,50256,1,ISIGNY LE BUAT,Isigny-le-Buat,Isigny-le-Buat +33,1973-03-15,COM,50322,2,MESNIL THEBAULT,Mesnil-Thébault,Le Mesnil-Thébault,COMA,50322,2,MESNIL THEBAULT,Mesnil-Thébault,Le Mesnil-Thébault 33,1973-03-15,COM,50344,0,MONTGOTHIER,Montgothier,Montgothier,COM,50256,1,ISIGNY LE BUAT,Isigny-le-Buat,Isigny-le-Buat 33,1973-03-15,COM,50344,0,MONTGOTHIER,Montgothier,Montgothier,COMA,50344,0,MONTGOTHIER,Montgothier,Montgothier -33,1973-03-15,COM,50346,0,MONTIGNY,Montigny,Montigny,COMA,50346,0,MONTIGNY,Montigny,Montigny 33,1973-03-15,COM,50346,0,MONTIGNY,Montigny,Montigny,COM,50256,1,ISIGNY LE BUAT,Isigny-le-Buat,Isigny-le-Buat -33,1973-03-15,COM,50367,0,NAFTEL,Naftel,Naftel,COMA,50367,0,NAFTEL,Naftel,Naftel +33,1973-03-15,COM,50346,0,MONTIGNY,Montigny,Montigny,COMA,50346,0,MONTIGNY,Montigny,Montigny 33,1973-03-15,COM,50367,0,NAFTEL,Naftel,Naftel,COM,50256,1,ISIGNY LE BUAT,Isigny-le-Buat,Isigny-le-Buat +33,1973-03-15,COM,50367,0,NAFTEL,Naftel,Naftel,COMA,50367,0,NAFTEL,Naftel,Naftel 33,1973-03-15,COM,50632,0,VEZINS,Vezins,Vezins,COM,50256,1,ISIGNY LE BUAT,Isigny-le-Buat,Isigny-le-Buat 33,1973-03-15,COM,50632,0,VEZINS,Vezins,Vezins,COMA,50632,0,VEZINS,Vezins,Vezins -31,1973-03-01,COM,01267,0,MORNAY,Mornay,Mornay,COM,01267,0,NURIEUX VOLOGNAT,Nurieux-Volognat,Nurieux-Volognat -31,1973-03-01,COM,01455,0,VOLOGNAT,Volognat,Volognat,COM,01267,0,NURIEUX VOLOGNAT,Nurieux-Volognat,Nurieux-Volognat +31,1973-03-01,COM,1267,0,MORNAY,Mornay,Mornay,COM,1267,0,NURIEUX VOLOGNAT,Nurieux-Volognat,Nurieux-Volognat +31,1973-03-01,COM,1455,0,VOLOGNAT,Volognat,Volognat,COM,1267,0,NURIEUX VOLOGNAT,Nurieux-Volognat,Nurieux-Volognat 31,1973-03-01,COM,33290,0,MONTAGNE,Montagne,Montagne,COM,33290,0,MONTAGNE,Montagne,Montagne 31,1973-03-01,COM,33313,0,PARSAC,Parsac,Parsac,COM,33290,0,MONTAGNE,Montagne,Montagne 31,1973-03-01,COM,33378,0,SAINT AVIT DU MOIRON,Saint-Avit-du-Moiron,Saint-Avit-du-Moiron,COM,33378,0,SAINT AVIT SAINT NAZAIRE,Saint-Avit-Saint-Nazaire,Saint-Avit-Saint-Nazaire @@ -9275,19 +9091,19 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1973-03-01,COM,33455,0,SAINT NAZAIRE,Saint-Nazaire,Saint-Nazaire,COM,33378,0,SAINT AVIT SAINT NAZAIRE,Saint-Avit-Saint-Nazaire,Saint-Avit-Saint-Nazaire 33,1973-03-01,COM,39205,1,ECLANS,Éclans,Éclans,COM,39205,1,ECLANS NENON,Éclans-Nenon,Éclans-Nenon 31,1973-03-01,COM,39258,0,GRANDE RIVIERE,Grande-Rivière,Grande-Rivière,COM,39258,0,GRANDE RIVIERE,Grande-Rivière,Grande-Rivière -33,1973-03-01,COM,39383,0,NENON,Nenon,Nenon,COMA,39383,0,NENON,Nenon,Nenon 33,1973-03-01,COM,39383,0,NENON,Nenon,Nenon,COM,39205,1,ECLANS NENON,Éclans-Nenon,Éclans-Nenon +33,1973-03-01,COM,39383,0,NENON,Nenon,Nenon,COMA,39383,0,NENON,Nenon,Nenon 31,1973-03-01,COM,39459,0,RIVIERE DEVANT,Rivière-Devant,Rivière-Devant,COM,39258,0,GRANDE RIVIERE,Grande-Rivière,Grande-Rivière -33,1973-03-01,COM,55052,0,BILLY SOUS LES COTES,Billy-sous-les-Côtes,Billy-sous-les-Côtes,COM,55551,0,VIGNEULLES LES HATTONCHATEL,Vigneulles-lès-Hattonchâtel,Vigneulles-lès-Hattonchâtel 33,1973-03-01,COM,55052,0,BILLY SOUS LES COTES,Billy-sous-les-Côtes,Billy-sous-les-Côtes,COMA,55052,0,BILLY SOUS LES COTES,Billy-sous-les-Côtes,Billy-sous-les-Côtes +33,1973-03-01,COM,55052,0,BILLY SOUS LES COTES,Billy-sous-les-Côtes,Billy-sous-les-Côtes,COM,55551,0,VIGNEULLES LES HATTONCHATEL,Vigneulles-lès-Hattonchâtel,Vigneulles-lès-Hattonchâtel 33,1973-03-01,COM,55136,0,CREUE,Creuë,Creuë,COMA,55136,0,CREUE,Creuë,Creuë 33,1973-03-01,COM,55136,0,CREUE,Creuë,Creuë,COM,55551,0,VIGNEULLES LES HATTONCHATEL,Vigneulles-lès-Hattonchâtel,Vigneulles-lès-Hattonchâtel 33,1973-03-01,COM,55233,1,HATTONCHATEL,Hattonchâtel,Hattonchâtel,COMA,55233,1,HATTONCHATEL,Hattonchâtel,Hattonchâtel 33,1973-03-01,COM,55233,1,HATTONCHATEL,Hattonchâtel,Hattonchâtel,COM,55551,0,VIGNEULLES LES HATTONCHATEL,Vigneulles-lès-Hattonchâtel,Vigneulles-lès-Hattonchâtel -33,1973-03-01,COM,55234,1,HATTONVILLE,Hattonville,Hattonville,COM,55551,0,VIGNEULLES LES HATTONCHATEL,Vigneulles-lès-Hattonchâtel,Vigneulles-lès-Hattonchâtel 33,1973-03-01,COM,55234,1,HATTONVILLE,Hattonville,Hattonville,COMA,55234,1,HATTONVILLE,Hattonville,Hattonville -33,1973-03-01,COM,55235,1,HAUCOURT LA RIGOLE,Haucourt-la-Rigole,Haucourt-la-Rigole,COM,55500,0,SPINCOURT,Spincourt,Spincourt +33,1973-03-01,COM,55234,1,HATTONVILLE,Hattonville,Hattonville,COM,55551,0,VIGNEULLES LES HATTONCHATEL,Vigneulles-lès-Hattonchâtel,Vigneulles-lès-Hattonchâtel 33,1973-03-01,COM,55235,1,HAUCOURT LA RIGOLE,Haucourt-la-Rigole,Haucourt-la-Rigole,COMA,55235,1,HAUCOURT LA RIGOLE,Haucourt-la-Rigole,Haucourt-la-Rigole +33,1973-03-01,COM,55235,1,HAUCOURT LA RIGOLE,Haucourt-la-Rigole,Haucourt-la-Rigole,COM,55500,0,SPINCOURT,Spincourt,Spincourt 33,1973-03-01,COM,55249,1,HOUDELAUCOURT SUR OTHAIN,Houdelaucourt-sur-Othain,Houdelaucourt-sur-Othain,COMA,55249,1,HOUDELAUCOURT SUR OTHAIN,Houdelaucourt-sur-Othain,Houdelaucourt-sur-Othain 33,1973-03-01,COM,55249,1,HOUDELAUCOURT SUR OTHAIN,Houdelaucourt-sur-Othain,Houdelaucourt-sur-Othain,COM,55500,0,SPINCOURT,Spincourt,Spincourt 33,1973-03-01,COM,55392,1,OLLIERES,Ollières,Ollières,COMA,55392,1,OLLIERES,Ollières,Ollières @@ -9313,44 +9129,40 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-03-01,COM,66211,0,TORDERES,Tordères,Tordères,COM,66134,0,PASSA LLAURO TORDERES,Passa-Llauro-Tordères,Passa-Llauro-Tordères 33,1973-03-01,COM,66211,0,TORDERES,Tordères,Tordères,COMA,66211,0,TORDERES,Tordères,Tordères 31,1973-03-01,COM,66219,1,URBANYA,Urbanya,Urbanya,COM,66161,0,RIA SIRACH URBANYA,Ria-Sirach-Urbanya,Ria-Sirach-Urbanya -33,1973-03-01,COM,66229,0,VILLENEUVE DES ESCALDES,Villeneuve-des-Escaldes,Villeneuve-des-Escaldes,COMA,66229,0,VILLENEUVE DES ESCALDES,Villeneuve-des-Escaldes,Villeneuve-des-Escaldes 33,1973-03-01,COM,66229,0,VILLENEUVE DES ESCALDES,Villeneuve-des-Escaldes,Villeneuve-des-Escaldes,COM,66005,1,ANGOUSTRINE VILLENEUVE DES ESCALDES,Angoustrine-Villeneuve-des-Escaldes,Angoustrine-Villeneuve-des-Escaldes +33,1973-03-01,COM,66229,0,VILLENEUVE DES ESCALDES,Villeneuve-des-Escaldes,Villeneuve-des-Escaldes,COMA,66229,0,VILLENEUVE DES ESCALDES,Villeneuve-des-Escaldes,Villeneuve-des-Escaldes 33,1973-03-01,COM,67061,0,BOUXWILLER,Bouxwiller,Bouxwiller,COM,67061,0,BOUXWILLER,Bouxwiller,Bouxwiller -33,1973-03-01,COM,67171,0,GRIESBACH LE BASTBERG,Griesbach-le-Bastberg,Griesbach-le-Bastberg,COMA,67171,0,GRIESBACH LE BASTBERG,Griesbach-le-Bastberg,Griesbach-le-Bastberg 33,1973-03-01,COM,67171,0,GRIESBACH LE BASTBERG,Griesbach-le-Bastberg,Griesbach-le-Bastberg,COM,67061,0,BOUXWILLER,Bouxwiller,Bouxwiller -33,1973-03-01,COM,67219,1,IMBSHEIM,Imbsheim,Imbsheim,COMA,67219,1,IMBSHEIM,Imbsheim,Imbsheim +33,1973-03-01,COM,67171,0,GRIESBACH LE BASTBERG,Griesbach-le-Bastberg,Griesbach-le-Bastberg,COMA,67171,0,GRIESBACH LE BASTBERG,Griesbach-le-Bastberg,Griesbach-le-Bastberg 33,1973-03-01,COM,67219,1,IMBSHEIM,Imbsheim,Imbsheim,COM,67061,0,BOUXWILLER,Bouxwiller,Bouxwiller +33,1973-03-01,COM,67219,1,IMBSHEIM,Imbsheim,Imbsheim,COMA,67219,1,IMBSHEIM,Imbsheim,Imbsheim 33,1973-03-01,COM,67399,0,RIEDHEIM,Riedheim,Riedheim,COM,67061,0,BOUXWILLER,Bouxwiller,Bouxwiller 33,1973-03-01,COM,67399,0,RIEDHEIM,Riedheim,Riedheim,COMA,67399,0,RIEDHEIM,Riedheim,Riedheim -33,1973-03-01,COM,77189,0,FONTAINE SOUS MONTAIGUILLON,Fontaine-sous-Montaiguillon,Fontaine-sous-Montaiguillon,COM,77262,0,LOUAN VILLEGRUIS FONTAINE,Louan-Villegruis-Fontaine,Louan-Villegruis-Fontaine 33,1973-03-01,COM,77189,0,FONTAINE SOUS MONTAIGUILLON,Fontaine-sous-Montaiguillon,Fontaine-sous-Montaiguillon,COMA,77189,0,FONTAINE SOUS MONTAIGUILLON,Fontaine-sous-Montaiguillon,Fontaine-sous-Montaiguillon +33,1973-03-01,COM,77189,0,FONTAINE SOUS MONTAIGUILLON,Fontaine-sous-Montaiguillon,Fontaine-sous-Montaiguillon,COM,77262,0,LOUAN VILLEGRUIS FONTAINE,Louan-Villegruis-Fontaine,Louan-Villegruis-Fontaine 33,1973-03-01,COM,77262,0,LOUAN,Louan,Louan,COM,77262,0,LOUAN VILLEGRUIS FONTAINE,Louan-Villegruis-Fontaine,Louan-Villegruis-Fontaine -33,1973-03-01,COM,77503,0,VILLEGRUIS,Villegruis,Villegruis,COMA,77503,0,VILLEGRUIS,Villegruis,Villegruis 33,1973-03-01,COM,77503,0,VILLEGRUIS,Villegruis,Villegruis,COM,77262,0,LOUAN VILLEGRUIS FONTAINE,Louan-Villegruis-Fontaine,Louan-Villegruis-Fontaine +33,1973-03-01,COM,77503,0,VILLEGRUIS,Villegruis,Villegruis,COMA,77503,0,VILLEGRUIS,Villegruis,Villegruis 33,1973-03-01,COM,79100,0,COULON,Coulon,Coulon,COM,79100,0,COULON SANSAIS,Coulon-Sansais,Coulon-Sansais 33,1973-03-01,COM,79304,0,SANSAIS,Sansais,Sansais,COM,79100,0,COULON SANSAIS,Coulon-Sansais,Coulon-Sansais 33,1973-03-01,COM,79304,0,SANSAIS,Sansais,Sansais,COMA,79304,0,SANSAIS,Sansais,Sansais -33,1973-02-15,COM,50122,3,CHAPELLE DU FEST,Chapelle-du-Fest,La Chapelle-du-Fest,COM,50444,0,SAINT AMAND,Saint-Amand,Saint-Amand 33,1973-02-15,COM,50122,3,CHAPELLE DU FEST,Chapelle-du-Fest,La Chapelle-du-Fest,COMA,50122,3,CHAPELLE DU FEST,Chapelle-du-Fest,La Chapelle-du-Fest +33,1973-02-15,COM,50122,3,CHAPELLE DU FEST,Chapelle-du-Fest,La Chapelle-du-Fest,COM,50444,0,SAINT AMAND,Saint-Amand,Saint-Amand 33,1973-02-15,COM,50444,0,SAINT AMAND,Saint-Amand,Saint-Amand,COM,50444,0,SAINT AMAND,Saint-Amand,Saint-Amand -33,1973-02-15,COM,50559,0,SAINT SYMPHORIEN LES BUTTES,Saint-Symphorien-les-Buttes,Saint-Symphorien-les-Buttes,COMA,50559,0,SAINT SYMPHORIEN LES BUTTES,Saint-Symphorien-les-Buttes,Saint-Symphorien-les-Buttes 33,1973-02-15,COM,50559,0,SAINT SYMPHORIEN LES BUTTES,Saint-Symphorien-les-Buttes,Saint-Symphorien-les-Buttes,COM,50444,0,SAINT AMAND,Saint-Amand,Saint-Amand +33,1973-02-15,COM,50559,0,SAINT SYMPHORIEN LES BUTTES,Saint-Symphorien-les-Buttes,Saint-Symphorien-les-Buttes,COMA,50559,0,SAINT SYMPHORIEN LES BUTTES,Saint-Symphorien-les-Buttes,Saint-Symphorien-les-Buttes 33,1973-02-12,COM,73006,1,AIME,Aime,Aime,COM,73006,1,AIME,Aime,Aime -33,1973-02-12,COM,73148,0,LONGEFOY,Longefoy,Longefoy,COMA,73148,0,LONGEFOY,Longefoy,Longefoy 33,1973-02-12,COM,73148,0,LONGEFOY,Longefoy,Longefoy,COM,73006,1,AIME,Aime,Aime -33,1973-02-12,COMA,73291,0,TESSENS,Tessens,Tessens,COM,73006,1,AIME,Aime,Aime -33,1973-02-12,COMA,73291,0,TESSENS,Tessens,Tessens,COMA,73291,0,TESSENS,Tessens,Tessens -33,1973-02-12,COMA,73325,0,VILLETTE,Villette,Villette,COMA,73325,0,VILLETTE,Villette,Villette -33,1973-02-12,COMA,73325,0,VILLETTE,Villette,Villette,COM,73006,1,AIME,Aime,Aime -33,1973-02-01,COM,49016,0,BAGNEUX,Bagneux,Bagneux,COM,49328,0,SAUMUR,Saumur,Saumur +33,1973-02-12,COM,73148,0,LONGEFOY,Longefoy,Longefoy,COMA,73148,0,LONGEFOY,Longefoy,Longefoy 33,1973-02-01,COM,49016,0,BAGNEUX,Bagneux,Bagneux,COMA,49016,0,BAGNEUX,Bagneux,Bagneux +33,1973-02-01,COM,49016,0,BAGNEUX,Bagneux,Bagneux,COM,49328,0,SAUMUR,Saumur,Saumur 33,1973-02-01,COM,49118,0,DAMPIERRE SUR LOIRE,Dampierre-sur-Loire,Dampierre-sur-Loire,COMA,49118,0,DAMPIERRE SUR LOIRE,Dampierre-sur-Loire,Dampierre-sur-Loire 33,1973-02-01,COM,49118,0,DAMPIERRE SUR LOIRE,Dampierre-sur-Loire,Dampierre-sur-Loire,COM,49328,0,SAUMUR,Saumur,Saumur -33,1973-02-01,COM,49166,0,JUIGNE BENE,Juigné-Béné,Juigné-Béné,COM,49214,0,MONTREUIL JUIGNE,Montreuil-Juigné,Montreuil-Juigné 33,1973-02-01,COM,49166,0,JUIGNE BENE,Juigné-Béné,Juigné-Béné,COMA,49166,0,JUIGNE BENE,Juigné-Béné,Juigné-Béné +33,1973-02-01,COM,49166,0,JUIGNE BENE,Juigné-Béné,Juigné-Béné,COM,49214,0,MONTREUIL JUIGNE,Montreuil-Juigné,Montreuil-Juigné 33,1973-02-01,COM,49214,0,MONTREUIL BELFROY,Montreuil-Belfroy,Montreuil-Belfroy,COM,49214,0,MONTREUIL JUIGNE,Montreuil-Juigné,Montreuil-Juigné -33,1973-02-01,COM,49287,0,SAINT HILAIRE SAINT FLORENT,Saint-Hilaire-Saint-Florent,Saint-Hilaire-Saint-Florent,COM,49328,0,SAUMUR,Saumur,Saumur 33,1973-02-01,COM,49287,0,SAINT HILAIRE SAINT FLORENT,Saint-Hilaire-Saint-Florent,Saint-Hilaire-Saint-Florent,COMA,49287,0,SAINT HILAIRE SAINT FLORENT,Saint-Hilaire-Saint-Florent,Saint-Hilaire-Saint-Florent +33,1973-02-01,COM,49287,0,SAINT HILAIRE SAINT FLORENT,Saint-Hilaire-Saint-Florent,Saint-Hilaire-Saint-Florent,COM,49328,0,SAUMUR,Saumur,Saumur 33,1973-02-01,COM,49293,0,SAINT LAMBERT DES LEVEES,Saint-Lambert-des-Levées,Saint-Lambert-des-Levées,COMA,49293,0,SAINT LAMBERT DES LEVEES,Saint-Lambert-des-Levées,Saint-Lambert-des-Levées 33,1973-02-01,COM,49293,0,SAINT LAMBERT DES LEVEES,Saint-Lambert-des-Levées,Saint-Lambert-des-Levées,COM,49328,0,SAUMUR,Saumur,Saumur 33,1973-02-01,COM,49328,0,SAUMUR,Saumur,Saumur,COM,49328,0,SAUMUR,Saumur,Saumur @@ -9366,25 +9178,25 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-02-01,COM,52081,0,BUCHEY,Buchey,Buchey,COM,52426,0,RIZAUCOURT BUCHEY,Rizaucourt-Buchey,Rizaucourt-Buchey 33,1973-02-01,COM,52123,0,CHEVILLON,Chevillon,Chevillon,COM,52123,0,CHEVILLON,Chevillon,Chevillon 33,1973-02-01,COM,52126,0,CHOILLEY,Choilley,Choilley,COM,52126,0,CHOILLEY DARDENAY,Choilley-Dardenay,Choilley-Dardenay -33,1973-02-01,COM,52166,0,DARDENAY,Dardenay,Dardenay,COMA,52166,0,DARDENAY,Dardenay,Dardenay 33,1973-02-01,COM,52166,0,DARDENAY,Dardenay,Dardenay,COM,52126,0,CHOILLEY DARDENAY,Choilley-Dardenay,Choilley-Dardenay -33,1973-02-01,COM,52224,0,GONAINCOURT,Gonaincourt,Gonaincourt,COMA,52224,0,GONAINCOURT,Gonaincourt,Gonaincourt +33,1973-02-01,COM,52166,0,DARDENAY,Dardenay,Dardenay,COMA,52166,0,DARDENAY,Dardenay,Dardenay 33,1973-02-01,COM,52224,0,GONAINCOURT,Gonaincourt,Gonaincourt,COM,52064,0,BOURMONT,Bourmont,Bourmont +33,1973-02-01,COM,52224,0,GONAINCOURT,Gonaincourt,Gonaincourt,COMA,52224,0,GONAINCOURT,Gonaincourt,Gonaincourt 33,1973-02-01,COM,52246,0,HUMES,Humes,Humes,COM,52246,0,HUMES JORQUENAY,Humes-Jorquenay,Humes-Jorquenay 33,1973-02-01,COM,52252,0,JORQUENAY,Jorquenay,Jorquenay,COM,52246,0,HUMES JORQUENAY,Humes-Jorquenay,Humes-Jorquenay 33,1973-02-01,COM,52252,0,JORQUENAY,Jorquenay,Jorquenay,COMA,52252,0,JORQUENAY,Jorquenay,Jorquenay -33,1973-02-01,COM,52309,0,MARAULT,Marault,Marault,COMA,52309,0,MARAULT,Marault,Marault 33,1973-02-01,COM,52309,0,MARAULT,Marault,Marault,COM,52058,0,BOLOGNE,Bologne,Bologne +33,1973-02-01,COM,52309,0,MARAULT,Marault,Marault,COMA,52309,0,MARAULT,Marault,Marault 33,1973-02-01,COM,52383,0,PERRANCEY,Perrancey,Perrancey,COM,52383,0,PERRANCEY LES VIEUX MOULINS,Perrancey-les-Vieux-Moulins,Perrancey-les-Vieux-Moulins 33,1973-02-01,COM,52426,0,RIZAUCOURT,Rizaucourt,Rizaucourt,COM,52426,0,RIZAUCOURT BUCHEY,Rizaucourt-Buchey,Rizaucourt-Buchey 33,1973-02-01,COM,52430,0,ROCHES SUR ROGNON,Roches-sur-Rognon,Roches-sur-Rognon,COM,52044,0,ROCHES BETTAINCOURT,Roches-Bettaincourt,Roches-Bettaincourt 33,1973-02-01,COM,52430,0,ROCHES SUR ROGNON,Roches-sur-Rognon,Roches-sur-Rognon,COMA,52430,0,ROCHES SUR ROGNON,Roches-sur-Rognon,Roches-sur-Rognon -33,1973-02-01,COM,52434,0,ROOCOURT LA COTE,Roôcourt-la-Côte,Roôcourt-la-Côte,COMA,52434,0,ROOCOURT LA COTE,Roôcourt-la-Côte,Roôcourt-la-Côte 33,1973-02-01,COM,52434,0,ROOCOURT LA COTE,Roôcourt-la-Côte,Roôcourt-la-Côte,COM,52058,0,BOLOGNE,Bologne,Bologne -33,1973-02-01,COM,52478,0,SOMMEVILLE,Sommeville,Sommeville,COMA,52478,0,SOMMEVILLE,Sommeville,Sommeville +33,1973-02-01,COM,52434,0,ROOCOURT LA COTE,Roôcourt-la-Côte,Roôcourt-la-Côte,COMA,52434,0,ROOCOURT LA COTE,Roôcourt-la-Côte,Roôcourt-la-Côte 33,1973-02-01,COM,52478,0,SOMMEVILLE,Sommeville,Sommeville,COM,52123,0,CHEVILLON,Chevillon,Chevillon -33,1973-02-01,COM,52521,0,VIEUX MOULINS,Vieux-Moulins,Vieux-Moulins,COMA,52521,0,VIEUX MOULINS,Vieux-Moulins,Vieux-Moulins +33,1973-02-01,COM,52478,0,SOMMEVILLE,Sommeville,Sommeville,COMA,52478,0,SOMMEVILLE,Sommeville,Sommeville 33,1973-02-01,COM,52521,0,VIEUX MOULINS,Vieux-Moulins,Vieux-Moulins,COM,52383,0,PERRANCEY LES VIEUX MOULINS,Perrancey-les-Vieux-Moulins,Perrancey-les-Vieux-Moulins +33,1973-02-01,COM,52521,0,VIEUX MOULINS,Vieux-Moulins,Vieux-Moulins,COMA,52521,0,VIEUX MOULINS,Vieux-Moulins,Vieux-Moulins 33,1973-02-01,COM,55118,0,CLERY GRAND,Cléry-Grand,Cléry-Grand,COMA,55118,0,CLERY GRAND,Cléry-Grand,Cléry-Grand 33,1973-02-01,COM,55118,0,CLERY GRAND,Cléry-Grand,Cléry-Grand,COM,55119,0,CLERY,Cléry,Cléry 33,1973-02-01,COM,55119,0,CLERY PETIT,Cléry-Petit,Cléry-Petit,COM,55119,0,CLERY,Cléry,Cléry @@ -9397,59 +9209,59 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-02-01,COM,79143,4,JUMEAUX,Jumeaux,Les Jumeaux,COM,79016,1,ASSAIS LES JUMEAUX,Assais-les-Jumeaux,Assais-les-Jumeaux 33,1973-02-01,COM,79143,4,JUMEAUX,Jumeaux,Les Jumeaux,COMA,79143,4,JUMEAUX,Jumeaux,Les Jumeaux 33,1973-02-01,COM,86070,0,CHAUVIGNY,Chauvigny,Chauvigny,COM,86070,0,CHAUVIGNY,Chauvigny,Chauvigny -33,1973-02-01,COM,86199,0,POUZIOUX,Pouzioux,Pouzioux,COMA,86199,0,POUZIOUX,Pouzioux,Pouzioux 33,1973-02-01,COM,86199,0,POUZIOUX,Pouzioux,Pouzioux,COM,86070,0,CHAUVIGNY,Chauvigny,Chauvigny -33,1973-01-01,COM,01055,0,BOUVENT,Bouvent,Bouvent,COM,01283,1,OYONNAX,Oyonnax,Oyonnax -33,1973-01-01,COM,01079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey,COM,01079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey -33,1973-01-01,COM,01120,0,CORDIEUX,Cordieux,Cordieux,COMA,01120,0,CORDIEUX,Cordieux,Cordieux -33,1973-01-01,COM,01120,0,CORDIEUX,Cordieux,Cordieux,COM,01262,0,MONTLUEL,Montluel,Montluel -31,1973-01-01,COM,01131,0,CRAZ,Craz,Craz,COM,01189,1,INJOUX GENISSIAT,Injoux-Génissiat,Injoux-Génissiat -31,1973-01-01,COM,01178,0,GRANGES,Granges,Granges,COM,01240,0,MATAFELON GRANGES,Matafelon-Granges,Matafelon-Granges -33,1973-01-01,COM,01184,1,HAUTECOURT,Hautecourt,Hautecourt,COM,01184,1,HAUTECOURT ROMANECHE,Hautecourt-Romanèche,Hautecourt-Romanèche -31,1973-01-01,COM,01189,1,INJOUX,Injoux,Injoux,COM,01189,1,INJOUX GENISSIAT,Injoux-Génissiat,Injoux-Génissiat -33,1973-01-01,COM,01217,0,LILIGNOD,Lilignod,Lilignod,COMA,01217,0,LILIGNOD,Lilignod,Lilignod -33,1973-01-01,COM,01217,0,LILIGNOD,Lilignod,Lilignod,COM,01079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey -31,1973-01-01,COM,01240,0,MATAFELON,Matafelon,Matafelon,COM,01240,0,MATAFELON GRANGES,Matafelon-Granges,Matafelon-Granges -33,1973-01-01,COM,01262,0,MONTLUEL,Montluel,Montluel,COM,01262,0,MONTLUEL,Montluel,Montluel -33,1973-01-01,COM,01283,1,OYONNAX,Oyonnax,Oyonnax,COM,01283,1,OYONNAX,Oyonnax,Oyonnax -33,1973-01-01,COM,01287,0,PASSIN,Passin,Passin,COMA,01287,0,PASSIN,Passin,Passin -33,1973-01-01,COM,01287,0,PASSIN,Passin,Passin,COM,01079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey -33,1973-01-01,COM,01327,0,ROMANECHE,Romanèche,Romanèche,COMA,01327,0,ROMANECHE,Romanèche,Romanèche -33,1973-01-01,COM,01327,0,ROMANECHE,Romanèche,Romanèche,COM,01184,1,HAUTECOURT ROMANECHE,Hautecourt-Romanèche,Hautecourt-Romanèche -33,1973-01-01,COM,01440,0,VEYZIAT,Veyziat,Veyziat,COM,01283,1,OYONNAX,Oyonnax,Oyonnax -33,1973-01-01,COM,01440,0,VEYZIAT,Veyziat,Veyziat,COMA,01440,0,VEYZIAT,Veyziat,Veyziat -31,1973-01-01,COM,02022,1,ARCY SAINTE RESTITUE,Arcy-Sainte-Restitue,Arcy-Sainte-Restitue,COM,02022,1,ARCY SAINTE RESTITUE,Arcy-Sainte-Restitue,Arcy-Sainte-Restitue -31,1973-01-01,COM,02113,0,BRANGES,Branges,Branges,COM,02022,1,ARCY SAINTE RESTITUE,Arcy-Sainte-Restitue,Arcy-Sainte-Restitue -33,1973-01-01,COM,05112,0,RABOU,Rabou,Rabou,COM,05123,3,ROCHE DES ARNAUDS,Roche-des-Arnauds,La Roche-des-Arnauds -33,1973-01-01,COM,05112,0,RABOU,Rabou,Rabou,COMA,05112,0,RABOU,Rabou,Rabou -33,1973-01-01,COM,05123,3,ROCHE DES ARNAUDS,Roche-des-Arnauds,La Roche-des-Arnauds,COM,05123,3,ROCHE DES ARNAUDS,Roche-des-Arnauds,La Roche-des-Arnauds -33,1973-01-01,COM,08012,1,ANDEVANNE,Andevanne,Andevanne,COMA,08012,1,ANDEVANNE,Andevanne,Andevanne -33,1973-01-01,COM,08012,1,ANDEVANNE,Andevanne,Andevanne,COM,08437,0,TAILLY,Tailly,Tailly -33,1973-01-01,COM,08050,0,BARRICOURT,Barricourt,Barricourt,COMA,08050,0,BARRICOURT,Barricourt,Barricourt -33,1973-01-01,COM,08050,0,BARRICOURT,Barricourt,Barricourt,COM,08437,0,TAILLY,Tailly,Tailly -33,1973-01-01,COM,08054,0,BEAULIEU,Beaulieu,Beaulieu,COMA,08054,0,BEAULIEU,Beaulieu,Beaulieu -33,1973-01-01,COM,08054,0,BEAULIEU,Beaulieu,Beaulieu,COM,08319,0,NEUVILLE LEZ BEAULIEU,Neuville-lez-Beaulieu,Neuville-lez-Beaulieu -33,1973-01-01,COM,08068,0,BLAISE,Blaise,Blaise,COMA,08068,0,BLAISE,Blaise,Blaise -33,1973-01-01,COM,08068,0,BLAISE,Blaise,Blaise,COM,08490,0,VOUZIERS,Vouziers,Vouziers -33,1973-01-01,COM,08319,0,NEUVILLE AUX TOURNEURS,Neuville-aux-Tourneurs,Neuville-aux-Tourneurs,COM,08319,0,NEUVILLE LEZ BEAULIEU,Neuville-lez-Beaulieu,Neuville-lez-Beaulieu -33,1973-01-01,COM,08359,0,REMONVILLE,Rémonville,Rémonville,COM,08437,0,TAILLY,Tailly,Tailly -33,1973-01-01,COM,08359,0,REMONVILLE,Rémonville,Rémonville,COMA,08359,0,REMONVILLE,Rémonville,Rémonville -33,1973-01-01,COM,08437,0,TAILLY,Tailly,Tailly,COM,08437,0,TAILLY,Tailly,Tailly -33,1973-01-01,COM,08490,0,VOUZIERS,Vouziers,Vouziers,COM,08490,0,VOUZIERS,Vouziers,Vouziers -33,1973-01-01,COM,09107,0,DUN,Dun,Dun,COM,09107,0,DUN,Dun,Dun -33,1973-01-01,COM,09112,1,ENGRAVIES,Engraviès,Engraviès,COM,09107,0,DUN,Dun,Dun -33,1973-01-01,COM,09112,1,ENGRAVIES,Engraviès,Engraviès,COMA,09112,1,ENGRAVIES,Engraviès,Engraviès -33,1973-01-01,COM,09191,0,MERVIEL,Merviel,Merviel,COM,09107,0,DUN,Dun,Dun -33,1973-01-01,COM,09191,0,MERVIEL,Merviel,Merviel,COMA,09191,0,MERVIEL,Merviel,Merviel -33,1973-01-01,COM,09248,0,ROGALLE,Rogalle,Rogalle,COM,09299,0,SOUEIX,Soueix,Soueix -33,1973-01-01,COM,09248,0,ROGALLE,Rogalle,Rogalle,COMA,09248,0,ROGALLE,Rogalle,Rogalle -33,1973-01-01,COM,09288,0,SENESSE DE SENABUGUE,Senesse-de-Senabugue,Senesse-de-Senabugue,COMA,09288,0,SENESSE DE SENABUGUE,Senesse-de-Senabugue,Senesse-de-Senabugue -33,1973-01-01,COM,09288,0,SENESSE DE SENABUGUE,Senesse-de-Senabugue,Senesse-de-Senabugue,COM,09107,0,DUN,Dun,Dun -33,1973-01-01,COM,09299,0,SOUEIX,Soueix,Soueix,COM,09299,0,SOUEIX,Soueix,Soueix +33,1973-02-01,COM,86199,0,POUZIOUX,Pouzioux,Pouzioux,COMA,86199,0,POUZIOUX,Pouzioux,Pouzioux +33,1973-01-01,COM,1055,0,BOUVENT,Bouvent,Bouvent,COM,1283,1,OYONNAX,Oyonnax,Oyonnax +33,1973-01-01,COM,1079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey,COM,1079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey +33,1973-01-01,COM,1120,0,CORDIEUX,Cordieux,Cordieux,COMA,1120,0,CORDIEUX,Cordieux,Cordieux +33,1973-01-01,COM,1120,0,CORDIEUX,Cordieux,Cordieux,COM,1262,0,MONTLUEL,Montluel,Montluel +31,1973-01-01,COM,1131,0,CRAZ,Craz,Craz,COM,1189,1,INJOUX GENISSIAT,Injoux-Génissiat,Injoux-Génissiat +31,1973-01-01,COM,1178,0,GRANGES,Granges,Granges,COM,1240,0,MATAFELON GRANGES,Matafelon-Granges,Matafelon-Granges +33,1973-01-01,COM,1184,1,HAUTECOURT,Hautecourt,Hautecourt,COM,1184,1,HAUTECOURT ROMANECHE,Hautecourt-Romanèche,Hautecourt-Romanèche +31,1973-01-01,COM,1189,1,INJOUX,Injoux,Injoux,COM,1189,1,INJOUX GENISSIAT,Injoux-Génissiat,Injoux-Génissiat +33,1973-01-01,COM,1217,0,LILIGNOD,Lilignod,Lilignod,COM,1079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey +33,1973-01-01,COM,1217,0,LILIGNOD,Lilignod,Lilignod,COMA,1217,0,LILIGNOD,Lilignod,Lilignod +31,1973-01-01,COM,1240,0,MATAFELON,Matafelon,Matafelon,COM,1240,0,MATAFELON GRANGES,Matafelon-Granges,Matafelon-Granges +33,1973-01-01,COM,1262,0,MONTLUEL,Montluel,Montluel,COM,1262,0,MONTLUEL,Montluel,Montluel +33,1973-01-01,COM,1283,1,OYONNAX,Oyonnax,Oyonnax,COM,1283,1,OYONNAX,Oyonnax,Oyonnax +33,1973-01-01,COM,1287,0,PASSIN,Passin,Passin,COM,1079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey +33,1973-01-01,COM,1287,0,PASSIN,Passin,Passin,COMA,1287,0,PASSIN,Passin,Passin +33,1973-01-01,COM,1327,0,ROMANECHE,Romanèche,Romanèche,COM,1184,1,HAUTECOURT ROMANECHE,Hautecourt-Romanèche,Hautecourt-Romanèche +33,1973-01-01,COM,1327,0,ROMANECHE,Romanèche,Romanèche,COMA,1327,0,ROMANECHE,Romanèche,Romanèche +33,1973-01-01,COM,1440,0,VEYZIAT,Veyziat,Veyziat,COM,1283,1,OYONNAX,Oyonnax,Oyonnax +33,1973-01-01,COM,1440,0,VEYZIAT,Veyziat,Veyziat,COMA,1440,0,VEYZIAT,Veyziat,Veyziat +31,1973-01-01,COM,2022,1,ARCY SAINTE RESTITUE,Arcy-Sainte-Restitue,Arcy-Sainte-Restitue,COM,2022,1,ARCY SAINTE RESTITUE,Arcy-Sainte-Restitue,Arcy-Sainte-Restitue +31,1973-01-01,COM,2113,0,BRANGES,Branges,Branges,COM,2022,1,ARCY SAINTE RESTITUE,Arcy-Sainte-Restitue,Arcy-Sainte-Restitue +33,1973-01-01,COM,5112,0,RABOU,Rabou,Rabou,COMA,5112,0,RABOU,Rabou,Rabou +33,1973-01-01,COM,5112,0,RABOU,Rabou,Rabou,COM,5123,3,ROCHE DES ARNAUDS,Roche-des-Arnauds,La Roche-des-Arnauds +33,1973-01-01,COM,5123,3,ROCHE DES ARNAUDS,Roche-des-Arnauds,La Roche-des-Arnauds,COM,5123,3,ROCHE DES ARNAUDS,Roche-des-Arnauds,La Roche-des-Arnauds +33,1973-01-01,COM,8012,1,ANDEVANNE,Andevanne,Andevanne,COMA,8012,1,ANDEVANNE,Andevanne,Andevanne +33,1973-01-01,COM,8012,1,ANDEVANNE,Andevanne,Andevanne,COM,8437,0,TAILLY,Tailly,Tailly +33,1973-01-01,COM,8050,0,BARRICOURT,Barricourt,Barricourt,COMA,8050,0,BARRICOURT,Barricourt,Barricourt +33,1973-01-01,COM,8050,0,BARRICOURT,Barricourt,Barricourt,COM,8437,0,TAILLY,Tailly,Tailly +33,1973-01-01,COM,8054,0,BEAULIEU,Beaulieu,Beaulieu,COMA,8054,0,BEAULIEU,Beaulieu,Beaulieu +33,1973-01-01,COM,8054,0,BEAULIEU,Beaulieu,Beaulieu,COM,8319,0,NEUVILLE LEZ BEAULIEU,Neuville-lez-Beaulieu,Neuville-lez-Beaulieu +33,1973-01-01,COM,8068,0,BLAISE,Blaise,Blaise,COMA,8068,0,BLAISE,Blaise,Blaise +33,1973-01-01,COM,8068,0,BLAISE,Blaise,Blaise,COM,8490,0,VOUZIERS,Vouziers,Vouziers +33,1973-01-01,COM,8319,0,NEUVILLE AUX TOURNEURS,Neuville-aux-Tourneurs,Neuville-aux-Tourneurs,COM,8319,0,NEUVILLE LEZ BEAULIEU,Neuville-lez-Beaulieu,Neuville-lez-Beaulieu +33,1973-01-01,COM,8359,0,REMONVILLE,Rémonville,Rémonville,COMA,8359,0,REMONVILLE,Rémonville,Rémonville +33,1973-01-01,COM,8359,0,REMONVILLE,Rémonville,Rémonville,COM,8437,0,TAILLY,Tailly,Tailly +33,1973-01-01,COM,8437,0,TAILLY,Tailly,Tailly,COM,8437,0,TAILLY,Tailly,Tailly +33,1973-01-01,COM,8490,0,VOUZIERS,Vouziers,Vouziers,COM,8490,0,VOUZIERS,Vouziers,Vouziers +33,1973-01-01,COM,9107,0,DUN,Dun,Dun,COM,9107,0,DUN,Dun,Dun +33,1973-01-01,COM,9112,1,ENGRAVIES,Engraviès,Engraviès,COM,9107,0,DUN,Dun,Dun +33,1973-01-01,COM,9112,1,ENGRAVIES,Engraviès,Engraviès,COMA,9112,1,ENGRAVIES,Engraviès,Engraviès +33,1973-01-01,COM,9191,0,MERVIEL,Merviel,Merviel,COM,9107,0,DUN,Dun,Dun +33,1973-01-01,COM,9191,0,MERVIEL,Merviel,Merviel,COMA,9191,0,MERVIEL,Merviel,Merviel +33,1973-01-01,COM,9248,0,ROGALLE,Rogalle,Rogalle,COMA,9248,0,ROGALLE,Rogalle,Rogalle +33,1973-01-01,COM,9248,0,ROGALLE,Rogalle,Rogalle,COM,9299,0,SOUEIX,Soueix,Soueix +33,1973-01-01,COM,9288,0,SENESSE DE SENABUGUE,Senesse-de-Senabugue,Senesse-de-Senabugue,COM,9107,0,DUN,Dun,Dun +33,1973-01-01,COM,9288,0,SENESSE DE SENABUGUE,Senesse-de-Senabugue,Senesse-de-Senabugue,COMA,9288,0,SENESSE DE SENABUGUE,Senesse-de-Senabugue,Senesse-de-Senabugue +33,1973-01-01,COM,9299,0,SOUEIX,Soueix,Soueix,COM,9299,0,SOUEIX,Soueix,Soueix 33,1973-01-01,COM,10038,0,BERCENAY LE HAYER,Bercenay-le-Hayer,Bercenay-le-Hayer,COMA,10038,0,BERCENAY LE HAYER,Bercenay-le-Hayer,Bercenay-le-Hayer 33,1973-01-01,COM,10038,0,BERCENAY LE HAYER,Bercenay-le-Hayer,Bercenay-le-Hayer,COM,10054,0,VAL D ORVIN,Val-d'Orvin,Val-d'Orvin -33,1973-01-01,COM,10043,0,BESSY,Bessy,Bessy,COM,10316,0,RHEGES BESSY,Rhèges-Bessy,Rhèges-Bessy 33,1973-01-01,COM,10043,0,BESSY,Bessy,Bessy,COMA,10043,0,BESSY,Bessy,Bessy +33,1973-01-01,COM,10043,0,BESSY,Bessy,Bessy,COM,10316,0,RHEGES BESSY,Rhèges-Bessy,Rhèges-Bessy 33,1973-01-01,COM,10054,0,BOURDENAY,Bourdenay,Bourdenay,COM,10054,0,VAL D ORVIN,Val-d'Orvin,Val-d'Orvin 33,1973-01-01,COM,10084,0,CHARMONT SOUS BARBUISE,Charmont-sous-Barbuise,Charmont-sous-Barbuise,COM,10084,0,CHARMONT SOUS BARBUISE,Charmont-sous-Barbuise,Charmont-sous-Barbuise 33,1973-01-01,COM,10148,0,FERREUX,Ferreux,Ferreux,COM,10148,0,FERREUX QUINCEY,Ferreux-Quincey,Ferreux-Quincey @@ -9464,15 +9276,15 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1973-01-01,COM,10386,0,TROUAN LE PETIT,Trouan-le-Petit,Trouan-le-Petit,COM,10386,0,TROUANS,Trouans,Trouans 31,1973-01-01,COM,12056,0,CARCENAC PEYRALES,Carcenac-Peyralès,Carcenac-Peyralès,COM,12056,0,BARAQUEVILLE,Baraqueville,Baraqueville 31,1973-01-01,COM,12306,0,VORS,Vors,Vors,COM,12056,0,BARAQUEVILLE,Baraqueville,Baraqueville -33,1973-01-01,COM,14010,1,AMMEVILLE,Ammeville,Ammeville,COM,14624,5,OUDON,Oudon,L'Oudon 33,1973-01-01,COM,14010,1,AMMEVILLE,Ammeville,Ammeville,COMA,14010,1,AMMEVILLE,Ammeville,Ammeville +33,1973-01-01,COM,14010,1,AMMEVILLE,Ammeville,Ammeville,COM,14624,5,OUDON,Oudon,L'Oudon 33,1973-01-01,COM,14011,1,ANCTOVILLE,Anctoville,Anctoville,COM,14011,1,ANCTOVILLE,Anctoville,Anctoville 33,1973-01-01,COM,14017,1,ANNEBECQ,Annebecq,Annebecq,COMA,14017,1,ANNEBECQ,Annebecq,Annebecq 33,1973-01-01,COM,14017,1,ANNEBECQ,Annebecq,Annebecq,COM,14352,0,LANDELLES ET COUPIGNY,Landelles-et-Coupigny,Landelles-et-Coupigny 33,1973-01-01,COM,14051,0,BEAUFOUR,Beaufour,Beaufour,COMA,14051,0,BEAUFOUR,Beaufour,Beaufour 33,1973-01-01,COM,14051,0,BEAUFOUR,Beaufour,Beaufour,COM,14231,0,BEAUFOUR DRUVAL,Beaufour-Druval,Beaufour-Druval -33,1973-01-01,COM,14067,0,BERVILLE,Berville,Berville,COM,14624,5,OUDON,Oudon,L'Oudon 33,1973-01-01,COM,14067,0,BERVILLE,Berville,Berville,COMA,14067,0,BERVILLE,Berville,Berville +33,1973-01-01,COM,14067,0,BERVILLE,Berville,Berville,COM,14624,5,OUDON,Oudon,L'Oudon 33,1973-01-01,COM,14094,0,BRAY LA CAMPAGNE,Bray-la-Campagne,Bray-la-Campagne,COMA,14094,0,BRAY LA CAMPAGNE,Bray-la-Campagne,Bray-la-Campagne 33,1973-01-01,COM,14094,0,BRAY LA CAMPAGNE,Bray-la-Campagne,Bray-la-Campagne,COM,14268,0,FIERVILLE BRAY,Fierville-Bray,Fierville-Bray 31,1973-01-01,COM,14108,0,BROCOTTES,Brocottes,Brocottes,COM,14335,0,HOTOT EN AUGE,Hotot-en-Auge,Hotot-en-Auge @@ -9485,45 +9297,45 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,14219,0,DANVOU,Danvou,Danvou,COM,14219,0,DANVOU LA FERRIERE,Danvou-la-Ferrière,Danvou-la-Ferrière 33,1973-01-01,COM,14228,0,DOUVRES LA DELIVRANDE,Douvres-la-Délivrande,Douvres-la-Délivrande,COM,14228,0,DOUVRES LA DELIVRANDE,Douvres-la-Délivrande,Douvres-la-Délivrande 33,1973-01-01,COM,14231,0,DRUVAL,Druval,Druval,COM,14231,0,BEAUFOUR DRUVAL,Beaufour-Druval,Beaufour-Druval -33,1973-01-01,COM,14233,1,ECAJEUL,Écajeul,Écajeul,COM,14422,2,MESNIL MAUGER,Mesnil-Mauger,Le Mesnil-Mauger 33,1973-01-01,COM,14233,1,ECAJEUL,Écajeul,Écajeul,COMA,14233,1,ECAJEUL,Écajeul,Écajeul -33,1973-01-01,COM,14234,1,ECOTS,Écots,Écots,COM,14624,5,OUDON,Oudon,L'Oudon +33,1973-01-01,COM,14233,1,ECAJEUL,Écajeul,Écajeul,COM,14422,2,MESNIL MAUGER,Mesnil-Mauger,Le Mesnil-Mauger 33,1973-01-01,COM,14234,1,ECOTS,Écots,Écots,COMA,14234,1,ECOTS,Écots,Écots -33,1973-01-01,COM,14247,1,ESCURES SUR FAVIERES,Escures-sur-Favières,Escures-sur-Favières,COM,14735,0,VENDEUVRE,Vendeuvre,Vendeuvre +33,1973-01-01,COM,14234,1,ECOTS,Écots,Écots,COM,14624,5,OUDON,Oudon,L'Oudon 33,1973-01-01,COM,14247,1,ESCURES SUR FAVIERES,Escures-sur-Favières,Escures-sur-Favières,COMA,14247,1,ESCURES SUR FAVIERES,Escures-sur-Favières,Escures-sur-Favières +33,1973-01-01,COM,14247,1,ESCURES SUR FAVIERES,Escures-sur-Favières,Escures-sur-Favières,COM,14735,0,VENDEUVRE,Vendeuvre,Vendeuvre 33,1973-01-01,COM,14262,3,FERRIERE AU DOYEN,Ferrière-au-Doyen,La Ferrière-au-Doyen,COMA,14262,3,FERRIERE AU DOYEN,Ferrière-au-Doyen,La Ferrière-au-Doyen 33,1973-01-01,COM,14262,3,FERRIERE AU DOYEN,Ferrière-au-Doyen,La Ferrière-au-Doyen,COM,14629,0,SAINT MARTIN DES BESACES,Saint-Martin-des-Besaces,Saint-Martin-des-Besaces -33,1973-01-01,COM,14263,3,FERRIERE DUVAL,Ferrière-Duval,La Ferrière-Duval,COMA,14263,3,FERRIERE DUVAL,Ferrière-Duval,La Ferrière-Duval 33,1973-01-01,COM,14263,3,FERRIERE DUVAL,Ferrière-Duval,La Ferrière-Duval,COM,14219,0,DANVOU LA FERRIERE,Danvou-la-Ferrière,Danvou-la-Ferrière +33,1973-01-01,COM,14263,3,FERRIERE DUVAL,Ferrière-Duval,La Ferrière-Duval,COMA,14263,3,FERRIERE DUVAL,Ferrière-Duval,La Ferrière-Duval 33,1973-01-01,COM,14266,0,FEUGUEROLLES SUR ORNE,Feuguerolles-sur-Orne,Feuguerolles-sur-Orne,COM,14266,0,FEUGUEROLLES BULLY,Feuguerolles-Bully,Feuguerolles-Bully -33,1973-01-01,COM,14267,0,FEUGUEROLLES SUR SEULLES,Feuguerolles-sur-Seulles,Feuguerolles-sur-Seulles,COMA,14267,0,FEUGUEROLLES SUR SEULLES,Feuguerolles-sur-Seulles,Feuguerolles-sur-Seulles 33,1973-01-01,COM,14267,0,FEUGUEROLLES SUR SEULLES,Feuguerolles-sur-Seulles,Feuguerolles-sur-Seulles,COM,14011,1,ANCTOVILLE,Anctoville,Anctoville +33,1973-01-01,COM,14267,0,FEUGUEROLLES SUR SEULLES,Feuguerolles-sur-Seulles,Feuguerolles-sur-Seulles,COMA,14267,0,FEUGUEROLLES SUR SEULLES,Feuguerolles-sur-Seulles,Feuguerolles-sur-Seulles 33,1973-01-01,COM,14268,0,FIERVILLE LA CAMPAGNE,Fierville-la-Campagne,Fierville-la-Campagne,COM,14268,0,FIERVILLE BRAY,Fierville-Bray,Fierville-Bray -33,1973-01-01,COM,14295,0,GARNETOT,Garnetot,Garnetot,COM,14624,5,OUDON,Oudon,L'Oudon 33,1973-01-01,COM,14295,0,GARNETOT,Garnetot,Garnetot,COMA,14295,0,GARNETOT,Garnetot,Garnetot -33,1973-01-01,COM,14314,0,GRANDMESNIL,Grandmesnil,Grandmesnil,COM,14624,5,OUDON,Oudon,L'Oudon +33,1973-01-01,COM,14295,0,GARNETOT,Garnetot,Garnetot,COM,14624,5,OUDON,Oudon,L'Oudon 33,1973-01-01,COM,14314,0,GRANDMESNIL,Grandmesnil,Grandmesnil,COMA,14314,0,GRANDMESNIL,Grandmesnil,Grandmesnil -33,1973-01-01,COM,14315,0,GRANDOUET,Grandouet,Grandouet,COMA,14315,0,GRANDOUET,Grandouet,Grandouet +33,1973-01-01,COM,14314,0,GRANDMESNIL,Grandmesnil,Grandmesnil,COM,14624,5,OUDON,Oudon,L'Oudon 33,1973-01-01,COM,14315,0,GRANDOUET,Grandouet,Grandouet,COM,14126,0,CAMBREMER,Cambremer,Cambremer +33,1973-01-01,COM,14315,0,GRANDOUET,Grandouet,Grandouet,COMA,14315,0,GRANDOUET,Grandouet,Grandouet 33,1973-01-01,COM,14321,0,GRISY,Grisy,Grisy,COMA,14321,0,GRISY,Grisy,Grisy 33,1973-01-01,COM,14321,0,GRISY,Grisy,Grisy,COM,14735,0,VENDEUVRE,Vendeuvre,Vendeuvre 31,1973-01-01,COM,14323,2,HAM,Ham,Le Ham,COM,14335,0,HOTOT EN AUGE,Hotot-en-Auge,Hotot-en-Auge 31,1973-01-01,COM,14335,0,HOTOT EN AUGE,Hotot-en-Auge,Hotot-en-Auge,COM,14335,0,HOTOT EN AUGE,Hotot-en-Auge,Hotot-en-Auge -33,1973-01-01,COM,14351,3,LANDE VAUMONT,Lande-Vaumont,La Lande-Vaumont,COM,14584,0,SAINT GERMAIN DE TALLEVENDE LA LANDE VAUMONT,Saint-Germain-de-Tallevende-la-Lande-Vaumont,Saint-Germain-de-Tallevende-la-Lande-Vaumont 33,1973-01-01,COM,14351,3,LANDE VAUMONT,Lande-Vaumont,La Lande-Vaumont,COMA,14351,3,LANDE VAUMONT,Lande-Vaumont,La Lande-Vaumont +33,1973-01-01,COM,14351,3,LANDE VAUMONT,Lande-Vaumont,La Lande-Vaumont,COM,14584,0,SAINT GERMAIN DE TALLEVENDE LA LANDE VAUMONT,Saint-Germain-de-Tallevende-la-Lande-Vaumont,Saint-Germain-de-Tallevende-la-Lande-Vaumont 33,1973-01-01,COM,14352,0,LANDELLES ET COUPIGNY,Landelles-et-Coupigny,Landelles-et-Coupigny,COM,14352,0,LANDELLES ET COUPIGNY,Landelles-et-Coupigny,Landelles-et-Coupigny -33,1973-01-01,COM,14363,0,LIEURY,Lieury,Lieury,COM,14624,5,OUDON,Oudon,L'Oudon 33,1973-01-01,COM,14363,0,LIEURY,Lieury,Lieury,COMA,14363,0,LIEURY,Lieury,Lieury +33,1973-01-01,COM,14363,0,LIEURY,Lieury,Lieury,COM,14624,5,OUDON,Oudon,L'Oudon 33,1973-01-01,COM,14372,0,LIVRY,Livry,Livry,COM,14372,0,LIVRY,Livry,Livry 33,1973-01-01,COM,14422,2,MESNIL MAUGER,Mesnil-Mauger,Le Mesnil-Mauger,COM,14422,2,MESNIL MAUGER,Mesnil-Mauger,Le Mesnil-Mauger -33,1973-01-01,COM,14447,0,MONTPINCON,Montpinçon,Montpinçon,COM,14624,5,OUDON,Oudon,L'Oudon 33,1973-01-01,COM,14447,0,MONTPINCON,Montpinçon,Montpinçon,COMA,14447,0,MONTPINCON,Montpinçon,Montpinçon +33,1973-01-01,COM,14447,0,MONTPINCON,Montpinçon,Montpinçon,COM,14624,5,OUDON,Oudon,L'Oudon 33,1973-01-01,COM,14472,0,NOTRE DAME DE FRESNAY,Notre-Dame-de-Fresnay,Notre-Dame-de-Fresnay,COMA,14472,0,NOTRE DAME DE FRESNAY,Notre-Dame-de-Fresnay,Notre-Dame-de-Fresnay 33,1973-01-01,COM,14472,0,NOTRE DAME DE FRESNAY,Notre-Dame-de-Fresnay,Notre-Dame-de-Fresnay,COM,14624,5,OUDON,Oudon,L'Oudon -33,1973-01-01,COM,14479,1,ORBOIS,Orbois,Orbois,COMA,14479,1,ORBOIS,Orbois,Orbois 33,1973-01-01,COM,14479,1,ORBOIS,Orbois,Orbois,COM,14011,1,ANCTOVILLE,Anctoville,Anctoville -33,1973-01-01,COM,14490,0,PARFOURU L ECLIN,Parfouru-l'Éclin,Parfouru-l'Éclin,COMA,14490,0,PARFOURU L ECLIN,Parfouru-l'Éclin,Parfouru-l'Éclin +33,1973-01-01,COM,14479,1,ORBOIS,Orbois,Orbois,COMA,14479,1,ORBOIS,Orbois,Orbois 33,1973-01-01,COM,14490,0,PARFOURU L ECLIN,Parfouru-l'Éclin,Parfouru-l'Éclin,COM,14372,0,LIVRY,Livry,Livry +33,1973-01-01,COM,14490,0,PARFOURU L ECLIN,Parfouru-l'Éclin,Parfouru-l'Éclin,COMA,14490,0,PARFOURU L ECLIN,Parfouru-l'Éclin,Parfouru-l'Éclin 33,1973-01-01,COM,14560,0,SAINT AUBIN LEBIZAY,Saint-Aubin-Lébizay,Saint-Aubin-Lébizay,COM,14231,0,BEAUFOUR DRUVAL,Beaufour-Druval,Beaufour-Druval 33,1973-01-01,COM,14560,0,SAINT AUBIN LEBIZAY,Saint-Aubin-Lébizay,Saint-Aubin-Lébizay,COMA,14560,0,SAINT AUBIN LEBIZAY,Saint-Aubin-Lébizay,Saint-Aubin-Lébizay 33,1973-01-01,COM,14561,0,SAINT AUBIN SUR ALGOT,Saint-Aubin-sur-Algot,Saint-Aubin-sur-Algot,COM,14126,0,CAMBREMER,Cambremer,Cambremer @@ -9531,8 +9343,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,14567,0,SAINT CRESPIN,Saint-Crespin,Saint-Crespin,COM,14422,2,MESNIL MAUGER,Mesnil-Mauger,Le Mesnil-Mauger 33,1973-01-01,COM,14567,0,SAINT CRESPIN,Saint-Crespin,Saint-Crespin,COMA,14567,0,SAINT CRESPIN,Saint-Crespin,Saint-Crespin 33,1973-01-01,COM,14584,0,SAINT GERMAIN DE TALLEVENDE,Saint-Germain-de-Tallevende,Saint-Germain-de-Tallevende,COM,14584,0,SAINT GERMAIN DE TALLEVENDE LA LANDE VAUMONT,Saint-Germain-de-Tallevende-la-Lande-Vaumont,Saint-Germain-de-Tallevende-la-Lande-Vaumont -33,1973-01-01,COM,14617,0,SAINTE MARIE AUX ANGLAIS,Sainte-Marie-aux-Anglais,Sainte-Marie-aux-Anglais,COMA,14617,0,SAINTE MARIE AUX ANGLAIS,Sainte-Marie-aux-Anglais,Sainte-Marie-aux-Anglais 33,1973-01-01,COM,14617,0,SAINTE MARIE AUX ANGLAIS,Sainte-Marie-aux-Anglais,Sainte-Marie-aux-Anglais,COM,14422,2,MESNIL MAUGER,Mesnil-Mauger,Le Mesnil-Mauger +33,1973-01-01,COM,14617,0,SAINTE MARIE AUX ANGLAIS,Sainte-Marie-aux-Anglais,Sainte-Marie-aux-Anglais,COMA,14617,0,SAINTE MARIE AUX ANGLAIS,Sainte-Marie-aux-Anglais,Sainte-Marie-aux-Anglais 33,1973-01-01,COM,14621,0,SAINT MARTIN DE BIENFAITE,Saint-Martin-de-Bienfaite,Saint-Martin-de-Bienfaite,COM,14621,0,SAINT MARTIN DE BIENFAITE LA CRESSONNIERE,Saint-Martin-de-Bienfaite-la-Cressonnière,Saint-Martin-de-Bienfaite-la-Cressonnière 33,1973-01-01,COM,14624,0,SAINT MARTIN DE FRESNAY,Saint-Martin-de-Fresnay,Saint-Martin-de-Fresnay,COM,14624,5,OUDON,Oudon,L'Oudon 33,1973-01-01,COM,14629,0,SAINT MARTIN DES BESACES,Saint-Martin-des-Besaces,Saint-Martin-des-Besaces,COM,14629,0,SAINT MARTIN DES BESACES,Saint-Martin-des-Besaces,Saint-Martin-des-Besaces @@ -9548,45 +9360,45 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,14697,0,TOTES,Tôtes,Tôtes,COMA,14697,0,TOTES,Tôtes,Tôtes 33,1973-01-01,COM,14735,0,VENDEUVRE,Vendeuvre,Vendeuvre,COM,14735,0,VENDEUVRE,Vendeuvre,Vendeuvre 33,1973-01-01,COM,15003,1,ALLY,Ally,Ally,COM,15003,1,ALLY,Ally,Ally -33,1973-01-01,COM,15023,0,BOURNONCLES,Bournoncles,Bournoncles,COM,15108,0,LOUBARESSE,Loubaresse,Loubaresse 33,1973-01-01,COM,15023,0,BOURNONCLES,Bournoncles,Bournoncles,COMA,15023,0,BOURNONCLES,Bournoncles,Bournoncles +33,1973-01-01,COM,15023,0,BOURNONCLES,Bournoncles,Bournoncles,COM,15108,0,LOUBARESSE,Loubaresse,Loubaresse 33,1973-01-01,COM,15024,0,BRAGEAC,Brageac,Brageac,COM,15003,1,ALLY,Ally,Ally 33,1973-01-01,COM,15024,0,BRAGEAC,Brageac,Brageac,COMA,15024,0,BRAGEAC,Brageac,Brageac -33,1973-01-01,COM,15062,0,DRIGNAC,Drignac,Drignac,COMA,15062,0,DRIGNAC,Drignac,Drignac 33,1973-01-01,COM,15062,0,DRIGNAC,Drignac,Drignac,COM,15003,1,ALLY,Ally,Ally +33,1973-01-01,COM,15062,0,DRIGNAC,Drignac,Drignac,COMA,15062,0,DRIGNAC,Drignac,Drignac 33,1973-01-01,COM,15108,0,LOUBARESSE,Loubaresse,Loubaresse,COM,15108,0,LOUBARESSE,Loubaresse,Loubaresse -33,1973-01-01,COM,15109,0,LOUPIAC,Loupiac,Loupiac,COM,15153,0,PLEAUX,Pleaux,Pleaux 33,1973-01-01,COM,15109,0,LOUPIAC,Loupiac,Loupiac,COMA,15109,0,LOUPIAC,Loupiac,Loupiac +33,1973-01-01,COM,15109,0,LOUPIAC,Loupiac,Loupiac,COM,15153,0,PLEAUX,Pleaux,Pleaux 33,1973-01-01,COM,15153,0,PLEAUX,Pleaux,Pleaux,COM,15153,0,PLEAUX,Pleaux,Pleaux 33,1973-01-01,COM,15177,0,SAINT CHRISTOPHE LES GORGES,Saint-Christophe-les-Gorges,Saint-Christophe-les-Gorges,COM,15153,0,PLEAUX,Pleaux,Pleaux 33,1973-01-01,COM,15177,0,SAINT CHRISTOPHE LES GORGES,Saint-Christophe-les-Gorges,Saint-Christophe-les-Gorges,COMA,15177,0,SAINT CHRISTOPHE LES GORGES,Saint-Christophe-les-Gorges,Saint-Christophe-les-Gorges 33,1973-01-01,COM,15202,0,SAINT MARTIN VALMEROUX,Saint-Martin-Valmeroux,Saint-Martin-Valmeroux,COM,15202,0,SAINT MARTIN VALMEROUX,Saint-Martin-Valmeroux,Saint-Martin-Valmeroux -33,1973-01-01,COM,15210,0,SAINT REMY DE SALERS,Saint-Rémy-de-Salers,Saint-Rémy-de-Salers,COMA,15210,0,SAINT REMY DE SALERS,Saint-Rémy-de-Salers,Saint-Rémy-de-Salers 33,1973-01-01,COM,15210,0,SAINT REMY DE SALERS,Saint-Rémy-de-Salers,Saint-Rémy-de-Salers,COM,15202,0,SAINT MARTIN VALMEROUX,Saint-Martin-Valmeroux,Saint-Martin-Valmeroux -33,1973-01-01,COM,15239,0,TOURNIAC,Tourniac,Tourniac,COMA,15239,0,TOURNIAC,Tourniac,Tourniac +33,1973-01-01,COM,15210,0,SAINT REMY DE SALERS,Saint-Rémy-de-Salers,Saint-Rémy-de-Salers,COMA,15210,0,SAINT REMY DE SALERS,Saint-Rémy-de-Salers,Saint-Rémy-de-Salers 33,1973-01-01,COM,15239,0,TOURNIAC,Tourniac,Tourniac,COM,15153,0,PLEAUX,Pleaux,Pleaux -33,1973-01-01,COM,16006,1,AIZECQ,Aizecq,Aizecq,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée +33,1973-01-01,COM,15239,0,TOURNIAC,Tourniac,Tourniac,COMA,15239,0,TOURNIAC,Tourniac,Tourniac 33,1973-01-01,COM,16006,1,AIZECQ,Aizecq,Aizecq,COMA,16006,1,AIZECQ,Aizecq,Aizecq +33,1973-01-01,COM,16006,1,AIZECQ,Aizecq,Aizecq,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée 33,1973-01-01,COM,16028,0,BARBEZIEUX,Barbezieux,Barbezieux,COM,16028,0,BARBEZIEUX SAINT HILAIRE,Barbezieux-Saint-Hilaire,Barbezieux-Saint-Hilaire 33,1973-01-01,COM,16029,0,BARDENAC,Bardenac,Bardenac,COM,16029,0,BRIE BARDENAC,Brie-Bardenac,Brie-Bardenac 33,1973-01-01,COM,16046,0,BLANZAC,Blanzac,Blanzac,COM,16046,0,BLANZAC PORCHERESSE,Blanzac-Porcheresse,Blanzac-Porcheresse -33,1973-01-01,COM,16063,0,BRIE SOUS CHALAIS,Brie-sous-Chalais,Brie-sous-Chalais,COMA,16063,0,BRIE SOUS CHALAIS,Brie-sous-Chalais,Brie-sous-Chalais 33,1973-01-01,COM,16063,0,BRIE SOUS CHALAIS,Brie-sous-Chalais,Brie-sous-Chalais,COM,16029,0,BRIE BARDENAC,Brie-Bardenac,Brie-Bardenac +33,1973-01-01,COM,16063,0,BRIE SOUS CHALAIS,Brie-sous-Chalais,Brie-sous-Chalais,COMA,16063,0,BRIE SOUS CHALAIS,Brie-sous-Chalais,Brie-sous-Chalais 31,1973-01-01,COM,16073,0,CHALAIS,Chalais,Chalais,COM,16073,0,CHALAIS,Chalais,Chalais 33,1973-01-01,COM,16097,0,CHERVES DE COGNAC,Cherves-de-Cognac,Cherves-de-Cognac,COM,16097,0,CHERVES RICHEMONT,Cherves-Richemont,Cherves-Richemont 31,1973-01-01,COM,16115,0,CRESSAC,Cressac,Cressac,COM,16115,0,CRESSAC SAINT GENIS,Cressac-Saint-Genis,Cressac-Saint-Genis 33,1973-01-01,COM,16193,0,LOUZAC,Louzac,Louzac,COM,16193,0,LOUZAC SAINT ANDRE,Louzac-Saint-André,Louzac-Saint-André -33,1973-01-01,COM,16219,0,MESSEUX,Messeux,Messeux,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée 33,1973-01-01,COM,16219,0,MESSEUX,Messeux,Messeux,COMA,16219,0,MESSEUX,Messeux,Messeux -33,1973-01-01,COM,16235,0,MOUTARDON,Moutardon,Moutardon,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée +33,1973-01-01,COM,16219,0,MESSEUX,Messeux,Messeux,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée 33,1973-01-01,COM,16235,0,MOUTARDON,Moutardon,Moutardon,COMA,16235,0,MOUTARDON,Moutardon,Moutardon +33,1973-01-01,COM,16235,0,MOUTARDON,Moutardon,Moutardon,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée 33,1973-01-01,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée -33,1973-01-01,COM,16265,0,PORCHERESSE,Porcheresse,Porcheresse,COMA,16265,0,PORCHERESSE,Porcheresse,Porcheresse 33,1973-01-01,COM,16265,0,PORCHERESSE,Porcheresse,Porcheresse,COM,16046,0,BLANZAC PORCHERESSE,Blanzac-Porcheresse,Blanzac-Porcheresse -33,1973-01-01,COM,16266,0,POUGNE,Pougné,Pougné,COMA,16266,0,POUGNE,Pougné,Pougné +33,1973-01-01,COM,16265,0,PORCHERESSE,Porcheresse,Porcheresse,COMA,16265,0,PORCHERESSE,Porcheresse,Porcheresse 33,1973-01-01,COM,16266,0,POUGNE,Pougné,Pougné,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée -33,1973-01-01,COM,16278,0,RICHEMONT,Richemont,Richemont,COMA,16278,0,RICHEMONT,Richemont,Richemont +33,1973-01-01,COM,16266,0,POUGNE,Pougné,Pougné,COMA,16266,0,POUGNE,Pougné,Pougné 33,1973-01-01,COM,16278,0,RICHEMONT,Richemont,Richemont,COM,16097,0,CHERVES RICHEMONT,Cherves-Richemont,Cherves-Richemont +33,1973-01-01,COM,16278,0,RICHEMONT,Richemont,Richemont,COMA,16278,0,RICHEMONT,Richemont,Richemont 33,1973-01-01,COM,16287,0,ROULLET,Roullet,Roullet,COM,16287,0,ROULLET SAINT ESTEPHE,Roullet-Saint-Estèphe,Roullet-Saint-Estèphe 33,1973-01-01,COM,16299,0,SAINT ANDRE,Saint-André,Saint-André,COM,16193,0,LOUZAC SAINT ANDRE,Louzac-Saint-André,Louzac-Saint-André 33,1973-01-01,COM,16299,0,SAINT ANDRE,Saint-André,Saint-André,COMA,16299,0,SAINT ANDRE,Saint-André,Saint-André @@ -9595,8 +9407,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1973-01-01,COM,16319,0,SAINT GENIS DE BLANZAC,Saint-Genis-de-Blanzac,Saint-Genis-de-Blanzac,COM,16115,0,CRESSAC SAINT GENIS,Cressac-Saint-Genis,Cressac-Saint-Genis 33,1973-01-01,COM,16324,0,SAINT GERVAIS,Saint-Gervais,Saint-Gervais,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée 33,1973-01-01,COM,16324,0,SAINT GERVAIS,Saint-Gervais,Saint-Gervais,COMA,16324,0,SAINT GERVAIS,Saint-Gervais,Saint-Gervais -33,1973-01-01,COM,16327,0,SAINT HILAIRE,Saint-Hilaire,Saint-Hilaire,COMA,16327,0,SAINT HILAIRE,Saint-Hilaire,Saint-Hilaire 33,1973-01-01,COM,16327,0,SAINT HILAIRE,Saint-Hilaire,Saint-Hilaire,COM,16028,0,BARBEZIEUX SAINT HILAIRE,Barbezieux-Saint-Hilaire,Barbezieux-Saint-Hilaire +33,1973-01-01,COM,16327,0,SAINT HILAIRE,Saint-Hilaire,Saint-Hilaire,COMA,16327,0,SAINT HILAIRE,Saint-Hilaire,Saint-Hilaire 31,1973-01-01,COM,16333,0,SAINTE MARIE,Sainte-Marie,Sainte-Marie,COM,16073,0,CHALAIS,Chalais,Chalais 31,1973-01-01,COM,16367,0,SERIGNAC,Sérignac,Sérignac,COM,16073,0,CHALAIS,Chalais,Chalais 33,1973-01-01,COM,17001,1,AGONNAY,Agonnay,Agonnay,COMA,17001,1,AGONNAY,Agonnay,Agonnay @@ -9604,15 +9416,15 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1973-01-01,COM,17024,1,AULNAY,Aulnay,Aulnay,COM,17024,1,AULNAY,Aulnay,Aulnay 33,1973-01-01,COM,17026,1,AUTHON,Authon,Authon,COM,17026,1,AUTHON EBEON,Authon-Ébéon,Authon-Ébéon 33,1973-01-01,COM,17043,0,BERNAY,Bernay,Bernay,COM,17043,0,BERNAY SAINT MARTIN,Bernay-Saint-Martin,Bernay-Saint-Martin -33,1973-01-01,COM,17090,0,CHARDES,Chardes,Chardes,COM,17240,0,MONTENDRE,Montendre,Montendre 33,1973-01-01,COM,17090,0,CHARDES,Chardes,Chardes,COMA,17090,0,CHARDES,Chardes,Chardes -33,1973-01-01,COM,17123,0,COULONGE SUR CHARENTE,Coulonge-sur-Charente,Coulonge-sur-Charente,COM,17397,0,SAINT SAVINIEN,Saint-Savinien,Saint-Savinien +33,1973-01-01,COM,17090,0,CHARDES,Chardes,Chardes,COM,17240,0,MONTENDRE,Montendre,Montendre 33,1973-01-01,COM,17123,0,COULONGE SUR CHARENTE,Coulonge-sur-Charente,Coulonge-sur-Charente,COMA,17123,0,COULONGE SUR CHARENTE,Coulonge-sur-Charente,Coulonge-sur-Charente -33,1973-01-01,COM,17144,1,EBEON,Ébéon,Ébéon,COMA,17144,1,EBEON,Ébéon,Ébéon +33,1973-01-01,COM,17123,0,COULONGE SUR CHARENTE,Coulonge-sur-Charente,Coulonge-sur-Charente,COM,17397,0,SAINT SAVINIEN,Saint-Savinien,Saint-Savinien 33,1973-01-01,COM,17144,1,EBEON,Ébéon,Ébéon,COM,17026,1,AUTHON EBEON,Authon-Ébéon,Authon-Ébéon +33,1973-01-01,COM,17144,1,EBEON,Ébéon,Ébéon,COMA,17144,1,EBEON,Ébéon,Ébéon 33,1973-01-01,COM,17240,0,MONTENDRE,Montendre,Montendre,COM,17240,0,MONTENDRE,Montendre,Montendre -33,1973-01-01,COM,17368,0,SAINT MARTIN DE LA COUDRE,Saint-Martin-de-la-Coudre,Saint-Martin-de-la-Coudre,COMA,17368,0,SAINT MARTIN DE LA COUDRE,Saint-Martin-de-la-Coudre,Saint-Martin-de-la-Coudre 33,1973-01-01,COM,17368,0,SAINT MARTIN DE LA COUDRE,Saint-Martin-de-la-Coudre,Saint-Martin-de-la-Coudre,COM,17043,0,BERNAY SAINT MARTIN,Bernay-Saint-Martin,Bernay-Saint-Martin +33,1973-01-01,COM,17368,0,SAINT MARTIN DE LA COUDRE,Saint-Martin-de-la-Coudre,Saint-Martin-de-la-Coudre,COMA,17368,0,SAINT MARTIN DE LA COUDRE,Saint-Martin-de-la-Coudre,Saint-Martin-de-la-Coudre 33,1973-01-01,COM,17397,0,SAINT SAVINIEN,Saint-Savinien,Saint-Savinien,COM,17397,0,SAINT SAVINIEN,Saint-Savinien,Saint-Savinien 31,1973-01-01,COM,17419,0,SALLES LES AULNAY,Salles-lès-Aulnay,Salles-lès-Aulnay,COM,17024,1,AULNAY,Aulnay,Aulnay 33,1973-01-01,COM,17456,0,VALLET,Vallet,Vallet,COM,17240,0,MONTENDRE,Montendre,Montendre @@ -9630,24 +9442,24 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1973-01-01,COM,20167,0,SAINT RAINIER DE BALAGNE,Saint-Rainier-de-Balagne,Saint-Rainier-de-Balagne,COM,20167,0,MONTEGROSSO,Montegrosso,Montegrosso 33,1973-01-01,COM,22093,0,LAMBALLE,Lamballe,Lamballe,COM,22093,0,LAMBALLE,Lamballe,Lamballe 33,1973-01-01,COM,22118,0,LANVALLAY,Lanvallay,Lanvallay,COM,22118,0,LANVALLAY,Lanvallay,Lanvallay -33,1973-01-01,COM,22142,0,MAROUE,Maroué,Maroué,COMA,22142,0,MAROUE,Maroué,Maroué 33,1973-01-01,COM,22142,0,MAROUE,Maroué,Maroué,COM,22093,0,LAMBALLE,Lamballe,Lamballe +33,1973-01-01,COM,22142,0,MAROUE,Maroué,Maroué,COMA,22142,0,MAROUE,Maroué,Maroué 33,1973-01-01,COM,22179,0,PLEHEREL,Pléhérel,Pléhérel,COM,22179,0,FREHEL,Fréhel,Fréhel 33,1973-01-01,COM,22190,0,PLESLIN,Pleslin,Pleslin,COM,22190,0,PLESLIN TRIGAVOU,Pleslin-Trigavou,Pleslin-Trigavou 33,1973-01-01,COM,22201,0,PLEVENON,Plévenon,Plévenon,COM,22179,0,FREHEL,Fréhel,Fréhel 33,1973-01-01,COM,22201,0,PLEVENON,Plévenon,Plévenon,COMA,22201,0,PLEVENON,Plévenon,Plévenon -33,1973-01-01,COM,22252,3,POTERIE,Poterie,La Poterie,COMA,22252,3,POTERIE,Poterie,La Poterie 33,1973-01-01,COM,22252,3,POTERIE,Poterie,La Poterie,COM,22093,0,LAMBALLE,Lamballe,Lamballe -33,1973-01-01,COM,22270,0,SAINT AARON,Saint-Aaron,Saint-Aaron,COMA,22270,0,SAINT AARON,Saint-Aaron,Saint-Aaron +33,1973-01-01,COM,22252,3,POTERIE,Poterie,La Poterie,COMA,22252,3,POTERIE,Poterie,La Poterie 33,1973-01-01,COM,22270,0,SAINT AARON,Saint-Aaron,Saint-Aaron,COM,22093,0,LAMBALLE,Lamballe,Lamballe +33,1973-01-01,COM,22270,0,SAINT AARON,Saint-Aaron,Saint-Aaron,COMA,22270,0,SAINT AARON,Saint-Aaron,Saint-Aaron 33,1973-01-01,COM,22329,0,SAINT SOLEN,Saint-Solen,Saint-Solen,COM,22118,0,LANVALLAY,Lanvallay,Lanvallay 33,1973-01-01,COM,22329,0,SAINT SOLEN,Saint-Solen,Saint-Solen,COMA,22329,0,SAINT SOLEN,Saint-Solen,Saint-Solen 33,1973-01-01,COM,22355,0,TREGOMAR,Trégomar,Trégomar,COM,22093,0,LAMBALLE,Lamballe,Lamballe 33,1973-01-01,COM,22355,0,TREGOMAR,Trégomar,Trégomar,COMA,22355,0,TREGOMAR,Trégomar,Trégomar -33,1973-01-01,COM,22374,0,TRESSAINT,Tressaint,Tressaint,COMA,22374,0,TRESSAINT,Tressaint,Tressaint 33,1973-01-01,COM,22374,0,TRESSAINT,Tressaint,Tressaint,COM,22118,0,LANVALLAY,Lanvallay,Lanvallay -33,1973-01-01,COM,22382,0,TRIGAVOU,Trigavou,Trigavou,COMA,22382,0,TRIGAVOU,Trigavou,Trigavou +33,1973-01-01,COM,22374,0,TRESSAINT,Tressaint,Tressaint,COMA,22374,0,TRESSAINT,Tressaint,Tressaint 33,1973-01-01,COM,22382,0,TRIGAVOU,Trigavou,Trigavou,COM,22190,0,PLESLIN TRIGAVOU,Pleslin-Trigavou,Pleslin-Trigavou +33,1973-01-01,COM,22382,0,TRIGAVOU,Trigavou,Trigavou,COMA,22382,0,TRIGAVOU,Trigavou,Trigavou 31,1973-01-01,COM,24017,1,AURIAC DE BOURZAC,Auriac-de-Bourzac,Auriac-de-Bourzac,COM,24303,0,NANTEUIL AURIAC DE BOURZAC,Nanteuil-Auriac-de-Bourzac,Nanteuil-Auriac-de-Bourzac 33,1973-01-01,COM,24035,0,BELVES,Belvès,Belvès,COM,24035,0,BELVES,Belvès,Belvès 33,1973-01-01,COM,24086,0,CASTELNAUD FAYRAC,Castelnaud-Fayrac,Castelnaud-Fayrac,COM,24086,0,CASTELNAUD LA CHAPELLE,Castelnaud-la-Chapelle,Castelnaud-la-Chapelle @@ -9659,16 +9471,16 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,24173,0,FALGUEYRAT,Falgueyrat,Falgueyrat,COMA,24173,0,FALGUEYRAT,Falgueyrat,Falgueyrat 33,1973-01-01,COM,24185,0,FONGALOP,Fongalop,Fongalop,COM,24035,0,BELVES,Belvès,Belvès 33,1973-01-01,COM,24185,0,FONGALOP,Fongalop,Fongalop,COMA,24185,0,FONGALOP,Fongalop,Fongalop -33,1973-01-01,COM,24201,0,GRAND CASTANG,Grand-Castang,Grand-Castang,COM,24260,0,MAUZAC ET GRAND CASTANG,Mauzac-et-Grand-Castang,Mauzac-et-Grand-Castang 33,1973-01-01,COM,24201,0,GRAND CASTANG,Grand-Castang,Grand-Castang,COMA,24201,0,GRAND CASTANG,Grand-Castang,Grand-Castang -33,1973-01-01,COM,24250,0,MANDACOU,Mandacou,Mandacou,COMA,24250,0,MANDACOU,Mandacou,Mandacou +33,1973-01-01,COM,24201,0,GRAND CASTANG,Grand-Castang,Grand-Castang,COM,24260,0,MAUZAC ET GRAND CASTANG,Mauzac-et-Grand-Castang,Mauzac-et-Grand-Castang 33,1973-01-01,COM,24250,0,MANDACOU,Mandacou,Mandacou,COM,24168,0,PLAISANCE,Plaisance,Plaisance +33,1973-01-01,COM,24250,0,MANDACOU,Mandacou,Mandacou,COMA,24250,0,MANDACOU,Mandacou,Mandacou 33,1973-01-01,COM,24260,0,MAUZAC ET SAINT MEYME DE ROZENS,Mauzac-et-Saint-Meyme-de-Rozens,Mauzac-et-Saint-Meyme-de-Rozens,COM,24260,0,MAUZAC ET GRAND CASTANG,Mauzac-et-Grand-Castang,Mauzac-et-Grand-Castang 33,1973-01-01,COM,24275,0,MONBOS,Monbos,Monbos,COMA,24275,0,MONBOS,Monbos,Monbos 33,1973-01-01,COM,24275,0,MONBOS,Monbos,Monbos,COM,24549,0,THENAC,Thénac,Thénac 31,1973-01-01,COM,24303,0,NANTEUIL DE BOURZAC,Nanteuil-de-Bourzac,Nanteuil-de-Bourzac,COM,24303,0,NANTEUIL AURIAC DE BOURZAC,Nanteuil-Auriac-de-Bourzac,Nanteuil-Auriac-de-Bourzac -33,1973-01-01,COM,24342,0,PUYGUILHEM,Puyguilhem,Puyguilhem,COM,24549,0,THENAC,Thénac,Thénac 33,1973-01-01,COM,24342,0,PUYGUILHEM,Puyguilhem,Puyguilhem,COMA,24342,0,PUYGUILHEM,Puyguilhem,Puyguilhem +33,1973-01-01,COM,24342,0,PUYGUILHEM,Puyguilhem,Puyguilhem,COM,24549,0,THENAC,Thénac,Thénac 33,1973-01-01,COM,24354,3,ROCHE CHALAIS,Roche-Chalais,La Roche-Chalais,COM,24354,3,ROCHE DE SAINT MICHEL,Roche-de-Saint-Michel,La Roche-de-Saint-Michel 33,1973-01-01,COM,24356,0,ROUFFIGNAC,Rouffignac,Rouffignac,COM,24356,0,ROUFFIGNAC SAINT CERNIN DE REILHAC,Rouffignac-Saint-Cernin-de-Reilhac,Rouffignac-Saint-Cernin-de-Reilhac 33,1973-01-01,COM,24375,0,SAINT AUBIN DE NABIRAT,Saint-Aubin-de-Nabirat,Saint-Aubin-de-Nabirat,COMA,24375,0,SAINT AUBIN DE NABIRAT,Saint-Aubin-de-Nabirat,Saint-Aubin-de-Nabirat @@ -9678,8 +9490,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,24450,0,SAINT MARTIAL DE NABIRAT,Saint-Martial-de-Nabirat,Saint-Martial-de-Nabirat,COM,24450,0,SAINT MARTIAL ET SAINT AUBIN DE NABIRAT,Saint-Martial-et-Saint-Aubin-de-Nabirat,Saint-Martial-et-Saint-Aubin-de-Nabirat 33,1973-01-01,COM,24467,0,SAINT MICHEL DE RIVIERE,Saint-Michel-de-Rivière,Saint-Michel-de-Rivière,COM,24354,3,ROCHE DE SAINT MICHEL,Roche-de-Saint-Michel,La Roche-de-Saint-Michel 33,1973-01-01,COM,24467,0,SAINT MICHEL DE RIVIERE,Saint-Michel-de-Rivière,Saint-Michel-de-Rivière,COMA,24467,0,SAINT MICHEL DE RIVIERE,Saint-Michel-de-Rivière,Saint-Michel-de-Rivière -33,1973-01-01,COM,24469,0,SAINT MICHEL L ECLUSE ET LEPARON,Saint-Michel-l'Écluse-et-Léparon,Saint-Michel-l'Écluse-et-Léparon,COMA,24469,0,SAINT MICHEL L ECLUSE ET LEPARON,Saint-Michel-l'Écluse-et-Léparon,Saint-Michel-l'Écluse-et-Léparon 33,1973-01-01,COM,24469,0,SAINT MICHEL L ECLUSE ET LEPARON,Saint-Michel-l'Écluse-et-Léparon,Saint-Michel-l'Écluse-et-Léparon,COM,24354,3,ROCHE DE SAINT MICHEL,Roche-de-Saint-Michel,La Roche-de-Saint-Michel +33,1973-01-01,COM,24469,0,SAINT MICHEL L ECLUSE ET LEPARON,Saint-Michel-l'Écluse-et-Léparon,Saint-Michel-l'Écluse-et-Léparon,COMA,24469,0,SAINT MICHEL L ECLUSE ET LEPARON,Saint-Michel-l'Écluse-et-Léparon,Saint-Michel-l'Écluse-et-Léparon 33,1973-01-01,COM,24539,0,SIREUIL,Sireuil,Sireuil,COM,24172,4,EYZIES DE TAYAC SIREUIL,Eyzies-de-Tayac-Sireuil,Les Eyzies-de-Tayac-Sireuil 33,1973-01-01,COM,24539,0,SIREUIL,Sireuil,Sireuil,COMA,24539,0,SIREUIL,Sireuil,Sireuil 33,1973-01-01,COM,24549,0,THENAC,Thénac,Thénac,COM,24549,0,THENAC,Thénac,Thénac @@ -9692,30 +9504,30 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,25064,0,BLANCHEFONTAINE,Blanchefontaine,Blanchefontaine,COMA,25064,0,BLANCHEFONTAINE,Blanchefontaine,Blanchefontaine 33,1973-01-01,COM,25064,0,BLANCHEFONTAINE,Blanchefontaine,Blanchefontaine,COM,25433,1,ORGEANS BLANCHEFONTAINE,Orgeans-Blanchefontaine,Orgeans-Blanchefontaine 31,1973-01-01,COM,25068,0,BOIS LA VILLE,Bois-la-Ville,Bois-la-Ville,COM,25313,1,HYEVRE PAROISSE,Hyèvre-Paroisse,Hyèvre-Paroisse -33,1973-01-01,COM,25080,0,BOUJEONS,Boujeons,Boujeons,COM,25486,0,REMORAY BOUJEONS,Remoray-Boujeons,Remoray-Boujeons 33,1973-01-01,COM,25080,0,BOUJEONS,Boujeons,Boujeons,COMA,25080,0,BOUJEONS,Boujeons,Boujeons +33,1973-01-01,COM,25080,0,BOUJEONS,Boujeons,Boujeons,COM,25486,0,REMORAY BOUJEONS,Remoray-Boujeons,Remoray-Boujeons 31,1973-01-01,COM,25081,2,BOULOIS,Boulois,Le Boulois,COM,25127,0,CHARQUEMONT,Charquemont,Charquemont 33,1973-01-01,COM,25101,0,BURGILLE,Burgille,Burgille,COM,25101,0,BURGILLE,Burgille,Burgille 31,1973-01-01,COM,25118,0,CHAMPVANS LES BAUME,Champvans-les-Baume,Champvans-les-Baume,COM,25047,0,BAUME LES DAMES,Baume-les-Dames,Baume-les-Dames 31,1973-01-01,COM,25127,0,CHARQUEMONT,Charquemont,Charquemont,COM,25127,0,CHARQUEMONT,Charquemont,Charquemont -33,1973-01-01,COM,25146,0,CHAZOY,Chazoy,Chazoy,COMA,25146,0,CHAZOY,Chazoy,Chazoy 33,1973-01-01,COM,25146,0,CHAZOY,Chazoy,Chazoy,COM,25101,0,BURGILLE,Burgille,Burgille -33,1973-01-01,COM,25155,0,CLERON,Cléron,Cléron,COMA,25155,0,CLERON,Cléron,Cléron +33,1973-01-01,COM,25146,0,CHAZOY,Chazoy,Chazoy,COMA,25146,0,CHAZOY,Chazoy,Chazoy 33,1973-01-01,COM,25155,0,CLERON,Cléron,Cléron,COM,25015,1,AMANCEY,Amancey,Amancey -33,1973-01-01,COM,25158,0,COLOMBIER CHATELOT,Colombier-Châtelot,Colombier-Châtelot,COM,25524,0,SAINT MAURICE COLOMBIER,Saint-Maurice-Colombier,Saint-Maurice-Colombier +33,1973-01-01,COM,25155,0,CLERON,Cléron,Cléron,COMA,25155,0,CLERON,Cléron,Cléron 33,1973-01-01,COM,25158,0,COLOMBIER CHATELOT,Colombier-Châtelot,Colombier-Châtelot,COMA,25158,0,COLOMBIER CHATELOT,Colombier-Châtelot,Colombier-Châtelot -33,1973-01-01,COM,25165,0,CORDIRON,Cordiron,Cordiron,COMA,25165,0,CORDIRON,Cordiron,Cordiron +33,1973-01-01,COM,25158,0,COLOMBIER CHATELOT,Colombier-Châtelot,Colombier-Châtelot,COM,25524,0,SAINT MAURICE COLOMBIER,Saint-Maurice-Colombier,Saint-Maurice-Colombier 33,1973-01-01,COM,25165,0,CORDIRON,Cordiron,Cordiron,COM,25101,0,BURGILLE,Burgille,Burgille -33,1973-01-01,COM,25172,0,COURCHAPON,Courchapon,Courchapon,COM,25317,0,JALLERANGE,Jallerange,Jallerange +33,1973-01-01,COM,25165,0,CORDIRON,Cordiron,Cordiron,COMA,25165,0,CORDIRON,Cordiron,Cordiron 33,1973-01-01,COM,25172,0,COURCHAPON,Courchapon,Courchapon,COMA,25172,0,COURCHAPON,Courchapon,Courchapon +33,1973-01-01,COM,25172,0,COURCHAPON,Courchapon,Courchapon,COM,25317,0,JALLERANGE,Jallerange,Jallerange 33,1973-01-01,COM,25187,0,DAMBELIN,Dambelin,Dambelin,COM,25187,0,MAMBELIN,Mambelin,Mambelin 31,1973-01-01,COM,25206,0,DROITFONTAINE,Droitfontaine,Droitfontaine,COM,25051,0,BELLEHERBE,Belleherbe,Belleherbe 33,1973-01-01,COM,25212,1,ECOLE,École,École,COM,25212,1,ECOLE VALENTIN,École-Valentin,École-Valentin 33,1973-01-01,COM,25236,0,FERTANS,Fertans,Fertans,COM,25015,1,AMANCEY,Amancey,Amancey 33,1973-01-01,COM,25236,0,FERTANS,Fertans,Fertans,COMA,25236,0,FERTANS,Fertans,Fertans 31,1973-01-01,COM,25260,2,FRIOLAIS,Friolais,Le Friolais,COM,25392,0,MONT DE VOUGNEY,Mont-de-Vougney,Mont-de-Vougney -33,1973-01-01,COM,25272,0,GLAINANS,Glainans,Glainans,COMA,25272,0,GLAINANS,Glainans,Glainans 33,1973-01-01,COM,25272,0,GLAINANS,Glainans,Glainans,COM,25018,1,ANTEUIL,Anteuil,Anteuil +33,1973-01-01,COM,25272,0,GLAINANS,Glainans,Glainans,COMA,25272,0,GLAINANS,Glainans,Glainans 33,1973-01-01,COM,25288,0,GRANDFONTAINE FOURNETS,Grandfontaine-Fournets,Grandfontaine-Fournets,COM,25288,0,FOURNETS LUISANS,Fournets-Luisans,Fournets-Luisans 33,1973-01-01,COM,25291,0,GRANGES DE VIENNEY,Granges-de-Vienney,Granges-de-Vienney,COMA,25291,0,GRANGES DE VIENNEY,Granges-de-Vienney,Granges-de-Vienney 33,1973-01-01,COM,25291,0,GRANGES DE VIENNEY,Granges-de-Vienney,Granges-de-Vienney,COM,25417,0,NAISEY LES GRANGES,Naisey-les-Granges,Naisey-les-Granges @@ -9723,16 +9535,16 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1973-01-01,COM,25313,1,HYEVRE PAROISSE,Hyèvre-Paroisse,Hyèvre-Paroisse,COM,25313,1,HYEVRE PAROISSE,Hyèvre-Paroisse,Hyèvre-Paroisse 33,1973-01-01,COM,25317,0,JALLERANGE,Jallerange,Jallerange,COM,25317,0,JALLERANGE,Jallerange,Jallerange 31,1973-01-01,COM,25320,0,LABERGEMENT SAINTE MARIE,Labergement-Sainte-Marie,Labergement-Sainte-Marie,COM,25320,0,LABERGEMENT SAINTE MARIE,Labergement-Sainte-Marie,Labergement-Sainte-Marie -33,1973-01-01,COM,25352,0,LUISANS,Luisans,Luisans,COMA,25352,0,LUISANS,Luisans,Luisans 33,1973-01-01,COM,25352,0,LUISANS,Luisans,Luisans,COM,25288,0,FOURNETS LUISANS,Fournets-Luisans,Fournets-Luisans -33,1973-01-01,COM,25353,0,LUSANS,Lusans,Lusans,COM,25468,0,POULIGNEY LUSANS,Pouligney-Lusans,Pouligney-Lusans +33,1973-01-01,COM,25352,0,LUISANS,Luisans,Luisans,COMA,25352,0,LUISANS,Luisans,Luisans 33,1973-01-01,COM,25353,0,LUSANS,Lusans,Lusans,COMA,25353,0,LUSANS,Lusans,Lusans +33,1973-01-01,COM,25353,0,LUSANS,Lusans,Lusans,COM,25468,0,POULIGNEY LUSANS,Pouligney-Lusans,Pouligney-Lusans 33,1973-01-01,COM,25358,0,MAISIERES NOTRE DAME,Maisières-Notre-Dame,Maisières-Notre-Dame,COMA,25358,0,MAISIERES NOTRE DAME,Maisières-Notre-Dame,Maisières-Notre-Dame 33,1973-01-01,COM,25358,0,MAISIERES NOTRE DAME,Maisières-Notre-Dame,Maisières-Notre-Dame,COM,25537,0,SCEY MAISIERES,Scey-Maisières,Scey-Maisières -33,1973-01-01,COM,25359,0,MALANS,Malans,Malans,COMA,25359,0,MALANS,Malans,Malans 33,1973-01-01,COM,25359,0,MALANS,Malans,Malans,COM,25015,1,AMANCEY,Amancey,Amancey -33,1973-01-01,COM,25363,0,MAMBOUHANS,Mambouhans,Mambouhans,COMA,25363,0,MAMBOUHANS,Mambouhans,Mambouhans +33,1973-01-01,COM,25359,0,MALANS,Malans,Malans,COMA,25359,0,MALANS,Malans,Malans 33,1973-01-01,COM,25363,0,MAMBOUHANS,Mambouhans,Mambouhans,COM,25187,0,MAMBELIN,Mambelin,Mambelin +33,1973-01-01,COM,25363,0,MAMBOUHANS,Mambouhans,Mambouhans,COMA,25363,0,MAMBOUHANS,Mambouhans,Mambouhans 31,1973-01-01,COM,25392,0,MONT DE VOUGNEY,Mont-de-Vougney,Mont-de-Vougney,COM,25392,0,MONT DE VOUGNEY,Mont-de-Vougney,Mont-de-Vougney 31,1973-01-01,COM,25412,0,MOUILLEVILLERS,Mouillevillers,Mouillevillers,COM,25519,0,SAINT HIPPOLYTE,Saint-Hippolyte,Saint-Hippolyte 33,1973-01-01,COM,25414,2,MOUTHEROT,Moutherot,Le Moutherot,COM,25317,0,JALLERANGE,Jallerange,Jallerange @@ -9754,12 +9566,12 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1973-01-01,COM,26044,0,BECONNE,Béconne,Béconne,COM,26276,0,ROCHE SAINT SECRET BECONNE,Roche-Saint-Secret-Béconne,Roche-Saint-Secret-Béconne 31,1973-01-01,COM,26276,0,ROCHE SAINT SECRET,Roche-Saint-Secret,Roche-Saint-Secret,COM,26276,0,ROCHE SAINT SECRET BECONNE,Roche-Saint-Secret-Béconne,Roche-Saint-Secret-Béconne 33,1973-01-01,COM,27153,0,CHAUVINCOURT,Chauvincourt,Chauvincourt,COM,27153,0,CHAUVINCOURT,Chauvincourt,Chauvincourt -33,1973-01-01,COM,27479,0,PROVEMONT,Provemont,Provemont,COMA,27479,0,PROVEMONT,Provemont,Provemont 33,1973-01-01,COM,27479,0,PROVEMONT,Provemont,Provemont,COM,27153,0,CHAUVINCOURT,Chauvincourt,Chauvincourt +33,1973-01-01,COM,27479,0,PROVEMONT,Provemont,Provemont,COMA,27479,0,PROVEMONT,Provemont,Provemont 31,1973-01-01,COM,27533,0,SAINT DENIS LE FERMENT,Saint-Denis-le-Ferment,Saint-Denis-le-Ferment,COM,27533,0,SAINT DENIS LE FERMENT,Saint-Denis-le-Ferment,Saint-Denis-le-Ferment 31,1973-01-01,COM,27583,0,SAINT PAER,Saint-Paër,Saint-Paër,COM,27533,0,SAINT DENIS LE FERMENT,Saint-Denis-le-Ferment,Saint-Denis-le-Ferment -33,1973-01-01,COM,32011,1,ARTIGUEDIEU,Artiguedieu,Artiguedieu,COM,32426,0,SEISSAN,Seissan,Seissan 33,1973-01-01,COM,32011,1,ARTIGUEDIEU,Artiguedieu,Artiguedieu,COMA,32011,1,ARTIGUEDIEU,Artiguedieu,Artiguedieu +33,1973-01-01,COM,32011,1,ARTIGUEDIEU,Artiguedieu,Artiguedieu,COM,32426,0,SEISSAN,Seissan,Seissan 33,1973-01-01,COM,32045,0,BERDOUES,Berdoues,Berdoues,COM,32045,0,BERDOUES PONSAMPERE,Berdoues-Ponsampère,Berdoues-Ponsampère 33,1973-01-01,COM,32179,0,LAGRAULAS,Lagraulas,Lagraulas,COMA,32179,0,LAGRAULAS,Lagraulas,Lagraulas 33,1973-01-01,COM,32179,0,LAGRAULAS,Lagraulas,Lagraulas,COM,32462,0,VIC FEZENSAC,Vic-Fezensac,Vic-Fezensac @@ -9773,11 +9585,11 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,38251,0,MONTCEAU,Montceau,Montceau,COM,38348,0,RUY,Ruy,Ruy 33,1973-01-01,COM,38348,0,RUY,Ruy,Ruy,COM,38348,0,RUY,Ruy,Ruy 31,1973-01-01,COM,38385,0,SAINT GENIS,Saint-Genis,Saint-Genis,COM,38226,0,MENS,Mens,Mens -33,1973-01-01,COM,38418,0,SAINTE MARIE DU MONT,Sainte-Marie-du-Mont,Sainte-Marie-du-Mont,COM,38466,0,SAINT VINCENT DE MERCUZE SAINTE MARIE DU MONT,Saint-Vincent-de-Mercuze-Sainte-Marie-du-Mont,Saint-Vincent-de-Mercuze-Sainte-Marie-du-Mont 33,1973-01-01,COM,38418,0,SAINTE MARIE DU MONT,Sainte-Marie-du-Mont,Sainte-Marie-du-Mont,COMA,38418,0,SAINTE MARIE DU MONT,Sainte-Marie-du-Mont,Sainte-Marie-du-Mont +33,1973-01-01,COM,38418,0,SAINTE MARIE DU MONT,Sainte-Marie-du-Mont,Sainte-Marie-du-Mont,COM,38466,0,SAINT VINCENT DE MERCUZE SAINTE MARIE DU MONT,Saint-Vincent-de-Mercuze-Sainte-Marie-du-Mont,Saint-Vincent-de-Mercuze-Sainte-Marie-du-Mont 33,1973-01-01,COM,38466,0,SAINT VINCENT DE MERCUZE,Saint-Vincent-de-Mercuze,Saint-Vincent-de-Mercuze,COM,38466,0,SAINT VINCENT DE MERCUZE SAINTE MARIE DU MONT,Saint-Vincent-de-Mercuze-Sainte-Marie-du-Mont,Saint-Vincent-de-Mercuze-Sainte-Marie-du-Mont -33,1973-01-01,COM,38506,0,THUELLIN,Thuellin,Thuellin,COM,38541,0,VEYRINS THUELLIN,Veyrins-Thuellin,Veyrins-Thuellin 33,1973-01-01,COM,38506,0,THUELLIN,Thuellin,Thuellin,COMA,38506,0,THUELLIN,Thuellin,Thuellin +33,1973-01-01,COM,38506,0,THUELLIN,Thuellin,Thuellin,COM,38541,0,VEYRINS THUELLIN,Veyrins-Thuellin,Veyrins-Thuellin 33,1973-01-01,COM,38541,0,VEYRINS,Veyrins,Veyrins,COM,38541,0,VEYRINS THUELLIN,Veyrins-Thuellin,Veyrins-Thuellin 31,1973-01-01,COM,38543,0,VEZERONCE,Vézeronce,Vézeronce,COM,38543,0,VEZERONCE CURTIN,Vézeronce-Curtin,Vézeronce-Curtin 33,1973-01-01,COM,39010,1,ANDELOT LES SAINT AMOUR,Andelot-lès-Saint-Amour,Andelot-lès-Saint-Amour,COM,39010,1,ANDELOT MORVAL,Andelot-Morval,Andelot-Morval @@ -9791,15 +9603,15 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1973-01-01,COM,39133,0,CHAUX SUR CHAMPAGNY,Chaux-sur-Champagny,Chaux-sur-Champagny,COM,39133,0,CHAUX CHAMPAGNY,Chaux-Champagny,Chaux-Champagny 31,1973-01-01,COM,39181,0,CRILLAT,Crillat,Crillat,COM,39493,0,SAINT MAURICE CRILLAT,Saint-Maurice-Crillat,Saint-Maurice-Crillat 33,1973-01-01,COM,39188,0,DAMMARTIN,Dammartin,Dammartin,COM,39188,0,DAMMARTIN MARPAIN,Dammartin-Marpain,Dammartin-Marpain -33,1973-01-01,COM,39209,0,EPY LANERIA,Épy-Lanéria,Épy-Lanéria,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy -33,1973-01-01,COM,39212,1,ESSAVILLY,Essavilly,Essavilly,COM,39331,0,MIGNOVILLARD,Mignovillard,Mignovillard +33,1973-01-01,COM,39209,1,EPY LANERIA,Épy-Lanéria,Épy-Lanéria,COM,39209,0,VAL D EPY,Val-d'Épy,Val-d'Épy 33,1973-01-01,COM,39212,1,ESSAVILLY,Essavilly,Essavilly,COMA,39212,1,ESSAVILLY,Essavilly,Essavilly -33,1973-01-01,COM,39231,0,FONTENY,Fonteny,Fonteny,COM,39436,0,PONT D HERY,Pont-d'Héry,Pont-d'Héry +33,1973-01-01,COM,39212,1,ESSAVILLY,Essavilly,Essavilly,COM,39331,0,MIGNOVILLARD,Mignovillard,Mignovillard 33,1973-01-01,COM,39231,0,FONTENY,Fonteny,Fonteny,COMA,39231,0,FONTENY,Fonteny,Fonteny -33,1973-01-01,COM,39242,0,FROIDEFONTAINE,Froidefontaine,Froidefontaine,COM,39331,0,MIGNOVILLARD,Mignovillard,Mignovillard +33,1973-01-01,COM,39231,0,FONTENY,Fonteny,Fonteny,COM,39436,0,PONT D HERY,Pont-d'Héry,Pont-d'Héry 33,1973-01-01,COM,39242,0,FROIDEFONTAINE,Froidefontaine,Froidefontaine,COMA,39242,0,FROIDEFONTAINE,Froidefontaine,Froidefontaine -33,1973-01-01,COM,39259,0,GRANGE DE VAIVRE,Grange-de-Vaivre,Grange-de-Vaivre,COM,39439,0,PORT LESNEY GRANGE DE VAIVRE,Port-Lesney-Grange-de-Vaivre,Port-Lesney-Grange-de-Vaivre +33,1973-01-01,COM,39242,0,FROIDEFONTAINE,Froidefontaine,Froidefontaine,COM,39331,0,MIGNOVILLARD,Mignovillard,Mignovillard 33,1973-01-01,COM,39259,0,GRANGE DE VAIVRE,Grange-de-Vaivre,Grange-de-Vaivre,COMA,39259,0,GRANGE DE VAIVRE,Grange-de-Vaivre,Grange-de-Vaivre +33,1973-01-01,COM,39259,0,GRANGE DE VAIVRE,Grange-de-Vaivre,Grange-de-Vaivre,COM,39439,0,PORT LESNEY GRANGE DE VAIVRE,Port-Lesney-Grange-de-Vaivre,Port-Lesney-Grange-de-Vaivre 33,1973-01-01,COM,39302,0,LOUVATANGE,Louvatange,Louvatange,COM,39302,0,LOUVATANGE LE PETIT MERCEY,Louvatange-le-Petit-Mercey,Louvatange-le-Petit-Mercey 33,1973-01-01,COM,39316,0,MARPAIN,Marpain,Marpain,COM,39188,0,DAMMARTIN MARPAIN,Dammartin-Marpain,Dammartin-Marpain 33,1973-01-01,COM,39316,0,MARPAIN,Marpain,Marpain,COMA,39316,0,MARPAIN,Marpain,Marpain @@ -9825,31 +9637,31 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1973-01-01,COM,39515,0,SEZERIA,Sézéria,Sézéria,COM,39397,1,ORGELET,Orgelet,Orgelet 31,1973-01-01,COM,39517,0,SIROD,Sirod,Sirod,COM,39517,0,SIROD,Sirod,Sirod 31,1973-01-01,COM,39536,0,TREFFAY,Treffay,Treffay,COM,39517,0,SIROD,Sirod,Sirod -33,1973-01-01,COM,39578,0,VIREMONT,Viremont,Viremont,COMA,39578,0,VIREMONT,Viremont,Viremont 33,1973-01-01,COM,39578,0,VIREMONT,Viremont,Viremont,COM,39086,0,CERNON,Cernon,Cernon -33,1973-01-01,COM,39580,2,VISENEY,Viseney,Le Viseney,COMA,39580,2,VISENEY,Viseney,Le Viseney +33,1973-01-01,COM,39578,0,VIREMONT,Viremont,Viremont,COMA,39578,0,VIREMONT,Viremont,Viremont 33,1973-01-01,COM,39580,2,VISENEY,Viseney,Le Viseney,COM,39049,0,BERSAILLIN,Bersaillin,Bersaillin -33,1973-01-01,COM,39584,0,VRIANGE,Vriange,Vriange,COMA,39584,0,VRIANGE,Vriange,Vriange +33,1973-01-01,COM,39580,2,VISENEY,Viseney,Le Viseney,COMA,39580,2,VISENEY,Viseney,Le Viseney 33,1973-01-01,COM,39584,0,VRIANGE,Vriange,Vriange,COM,39465,0,ROMANGE LES VRIANGE,Romange-lès-Vriange,Romange-lès-Vriange +33,1973-01-01,COM,39584,0,VRIANGE,Vriange,Vriange,COMA,39584,0,VRIANGE,Vriange,Vriange 33,1973-01-01,COM,41149,0,MONTOIRE SUR LE LOIR,Montoire-sur-le-Loir,Montoire-sur-le-Loir,COM,41149,0,MONTOIRE SUR LE LOIR,Montoire-sur-le-Loir,Montoire-sur-le-Loir -33,1973-01-01,COM,41227,0,SAINT QUENTIN LES TROO,Saint-Quentin-lès-Troo,Saint-Quentin-lès-Troo,COMA,41227,0,SAINT QUENTIN LES TROO,Saint-Quentin-lès-Troo,Saint-Quentin-lès-Troo 33,1973-01-01,COM,41227,0,SAINT QUENTIN LES TROO,Saint-Quentin-lès-Troo,Saint-Quentin-lès-Troo,COM,41149,0,MONTOIRE SUR LE LOIR,Montoire-sur-le-Loir,Montoire-sur-le-Loir +33,1973-01-01,COM,41227,0,SAINT QUENTIN LES TROO,Saint-Quentin-lès-Troo,Saint-Quentin-lès-Troo,COMA,41227,0,SAINT QUENTIN LES TROO,Saint-Quentin-lès-Troo,Saint-Quentin-lès-Troo 33,1973-01-01,COM,42144,0,MOINGT,Moingt,Moingt,COMA,42144,0,MOINGT,Moingt,Moingt 33,1973-01-01,COM,42144,0,MOINGT,Moingt,Moingt,COM,42147,0,MONTBRISON,Montbrison,Montbrison 33,1973-01-01,COM,42147,0,MONTBRISON,Montbrison,Montbrison,COM,42147,0,MONTBRISON,Montbrison,Montbrison 33,1973-01-01,COM,42190,0,ROCHETAILLEE,Rochetaillée,Rochetaillée,COMA,42190,0,ROCHETAILLEE,Rochetaillée,Rochetaillée 33,1973-01-01,COM,42190,0,ROCHETAILLEE,Rochetaillée,Rochetaillée,COM,42218,0,SAINT ETIENNE,Saint-Étienne,Saint-Étienne 33,1973-01-01,COM,42218,0,SAINT ETIENNE,Saint-Étienne,Saint-Étienne,COM,42218,0,SAINT ETIENNE,Saint-Étienne,Saint-Étienne -33,1973-01-01,COM,42250,0,SAINT JUST SUR LOIRE,Saint-Just-sur-Loire,Saint-Just-sur-Loire,COM,42279,0,SAINT JUST SAINT RAMBERT,Saint-Just-Saint-Rambert,Saint-Just-Saint-Rambert 33,1973-01-01,COM,42250,0,SAINT JUST SUR LOIRE,Saint-Just-sur-Loire,Saint-Just-sur-Loire,COMA,42250,0,SAINT JUST SUR LOIRE,Saint-Just-sur-Loire,Saint-Just-sur-Loire +33,1973-01-01,COM,42250,0,SAINT JUST SUR LOIRE,Saint-Just-sur-Loire,Saint-Just-sur-Loire,COM,42279,0,SAINT JUST SAINT RAMBERT,Saint-Just-Saint-Rambert,Saint-Just-Saint-Rambert 33,1973-01-01,COM,42279,0,SAINT RAMBERT SUR LOIRE,Saint-Rambert-sur-Loire,Saint-Rambert-sur-Loire,COM,42279,0,SAINT JUST SAINT RAMBERT,Saint-Just-Saint-Rambert,Saint-Just-Saint-Rambert 33,1973-01-01,COM,43132,0,MAZEYRAT CRISPINHAC,Mazeyrat-Crispinhac,Mazeyrat-Crispinhac,COM,43132,0,MAZEYRAT D ALLIER,Mazeyrat-d'Allier,Mazeyrat-d'Allier -33,1973-01-01,COM,43161,0,REILHAC,Reilhac,Reilhac,COMA,43161,0,REILHAC,Reilhac,Reilhac 33,1973-01-01,COM,43161,0,REILHAC,Reilhac,Reilhac,COM,43132,0,MAZEYRAT D ALLIER,Mazeyrat-d'Allier,Mazeyrat-d'Allier -33,1973-01-01,COM,43179,0,SAINT EBLE,Saint-Eble,Saint-Eble,COMA,43179,0,SAINT EBLE,Saint-Eble,Saint-Eble +33,1973-01-01,COM,43161,0,REILHAC,Reilhac,Reilhac,COMA,43161,0,REILHAC,Reilhac,Reilhac 33,1973-01-01,COM,43179,0,SAINT EBLE,Saint-Eble,Saint-Eble,COM,43132,0,MAZEYRAT D ALLIER,Mazeyrat-d'Allier,Mazeyrat-d'Allier -33,1973-01-01,COM,45003,1,ALLAINVILLE EN BEAUCE,Allainville-en-Beauce,Allainville-en-Beauce,COM,45240,1,OUTARVILLE,Outarville,Outarville +33,1973-01-01,COM,43179,0,SAINT EBLE,Saint-Eble,Saint-Eble,COMA,43179,0,SAINT EBLE,Saint-Eble,Saint-Eble 33,1973-01-01,COM,45003,1,ALLAINVILLE EN BEAUCE,Allainville-en-Beauce,Allainville-en-Beauce,COMA,45003,1,ALLAINVILLE EN BEAUCE,Allainville-en-Beauce,Allainville-en-Beauce +33,1973-01-01,COM,45003,1,ALLAINVILLE EN BEAUCE,Allainville-en-Beauce,Allainville-en-Beauce,COM,45240,1,OUTARVILLE,Outarville,Outarville 33,1973-01-01,COM,45007,1,ARRABLOY,Arrabloy,Arrabloy,COMA,45007,1,ARRABLOY,Arrabloy,Arrabloy 33,1973-01-01,COM,45007,1,ARRABLOY,Arrabloy,Arrabloy,COM,45155,0,GIEN,Gien,Gien 33,1973-01-01,COM,45025,0,BAZOCHES LES GALLERANDES,Bazoches-les-Gallerandes,Bazoches-les-Gallerandes,COM,45025,0,BAZOCHES LES GALLERANDES,Bazoches-les-Gallerandes,Bazoches-les-Gallerandes @@ -9857,8 +9669,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,45118,0,CROTTES EN PITHIVERAIS,Crottes-en-Pithiverais,Crottes-en-Pithiverais,COM,45118,0,CROTTES EN PITHIVERAIS,Crottes-en-Pithiverais,Crottes-en-Pithiverais 33,1973-01-01,COM,45128,0,DOSSAINVILLE,Dossainville,Dossainville,COM,45065,0,CESARVILLE,Césarville,Césarville 33,1973-01-01,COM,45128,0,DOSSAINVILLE,Dossainville,Dossainville,COMA,45128,0,DOSSAINVILLE,Dossainville,Dossainville -33,1973-01-01,COM,45140,0,FARONVILLE,Faronville,Faronville,COM,45240,1,OUTARVILLE,Outarville,Outarville 33,1973-01-01,COM,45140,0,FARONVILLE,Faronville,Faronville,COMA,45140,0,FARONVILLE,Faronville,Faronville +33,1973-01-01,COM,45140,0,FARONVILLE,Faronville,Faronville,COM,45240,1,OUTARVILLE,Outarville,Outarville 33,1973-01-01,COM,45155,0,GIEN,Gien,Gien,COM,45155,0,GIEN,Gien,Gien 33,1973-01-01,COM,45160,0,GRENEVILLE EN BEAUCE,Greneville-en-Beauce,Greneville-en-Beauce,COM,45160,0,GRENEVILLE EN BEAUCE,Greneville-en-Beauce,Greneville-en-Beauce 33,1973-01-01,COM,45162,0,GUIGNEVILLE,Guigneville,Guigneville,COM,45162,0,GUIGNEVILLE,Guigneville,Guigneville @@ -9867,27 +9679,27 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,45172,1,IZY,Izy,Izy,COM,45025,0,BAZOCHES LES GALLERANDES,Bazoches-les-Gallerandes,Bazoches-les-Gallerandes 33,1973-01-01,COM,45172,1,IZY,Izy,Izy,COMA,45172,1,IZY,Izy,Izy 33,1973-01-01,COM,45240,1,OUTARVILLE,Outarville,Outarville,COM,45240,1,OUTARVILLE,Outarville,Outarville -33,1973-01-01,COM,45295,0,SAINT PERAVY EPREUX,Saint-Péravy-Épreux,Saint-Péravy-Épreux,COMA,45295,0,SAINT PERAVY EPREUX,Saint-Péravy-Épreux,Saint-Péravy-Épreux 33,1973-01-01,COM,45295,0,SAINT PERAVY EPREUX,Saint-Péravy-Épreux,Saint-Péravy-Épreux,COM,45240,1,OUTARVILLE,Outarville,Outarville -33,1973-01-01,COM,45304,0,SEBOUVILLE,Sébouville,Sébouville,COMA,45304,0,SEBOUVILLE,Sébouville,Sébouville +33,1973-01-01,COM,45295,0,SAINT PERAVY EPREUX,Saint-Péravy-Épreux,Saint-Péravy-Épreux,COMA,45295,0,SAINT PERAVY EPREUX,Saint-Péravy-Épreux,Saint-Péravy-Épreux 33,1973-01-01,COM,45304,0,SEBOUVILLE,Sébouville,Sébouville,COM,45162,0,GUIGNEVILLE,Guigneville,Guigneville +33,1973-01-01,COM,45304,0,SEBOUVILLE,Sébouville,Sébouville,COMA,45304,0,SEBOUVILLE,Sébouville,Sébouville 33,1973-01-01,COM,45318,0,TEILLAY LE GAUDIN,Teillay-le-Gaudin,Teillay-le-Gaudin,COM,45240,1,OUTARVILLE,Outarville,Outarville 33,1973-01-01,COM,45318,0,TEILLAY LE GAUDIN,Teillay-le-Gaudin,Teillay-le-Gaudin,COMA,45318,0,TEILLAY LE GAUDIN,Teillay-le-Gaudin,Teillay-le-Gaudin -33,1973-01-01,COM,45319,0,TEILLAY SAINT BENOIT,Teillay-Saint-Benoît,Teillay-Saint-Benoît,COMA,45319,0,TEILLAY SAINT BENOIT,Teillay-Saint-Benoît,Teillay-Saint-Benoît 33,1973-01-01,COM,45319,0,TEILLAY SAINT BENOIT,Teillay-Saint-Benoît,Teillay-Saint-Benoît,COM,45118,0,CROTTES EN PITHIVERAIS,Crottes-en-Pithiverais,Crottes-en-Pithiverais +33,1973-01-01,COM,45319,0,TEILLAY SAINT BENOIT,Teillay-Saint-Benoît,Teillay-Saint-Benoît,COMA,45319,0,TEILLAY SAINT BENOIT,Teillay-Saint-Benoît,Teillay-Saint-Benoît 33,1973-01-01,COM,47010,1,ANTAGNAC,Antagnac,Antagnac,COM,47010,1,ANTAGNAC,Antagnac,Antagnac 33,1973-01-01,COM,47095,0,FAUILLET,Fauillet,Fauillet,COMA,47095,0,FAUILLET,Fauillet,Fauillet 33,1973-01-01,COM,47095,0,FAUILLET,Fauillet,Fauillet,COM,47310,0,TONNEINS,Tonneins,Tonneins 33,1973-01-01,COM,47227,0,RUFFIAC,Ruffiac,Ruffiac,COM,47010,1,ANTAGNAC,Antagnac,Antagnac 33,1973-01-01,COM,47227,0,RUFFIAC,Ruffiac,Ruffiac,COMA,47227,0,RUFFIAC,Ruffiac,Ruffiac 33,1973-01-01,COM,47310,0,TONNEINS,Tonneins,Tonneins,COM,47310,0,TONNEINS,Tonneins,Tonneins -33,1973-01-01,COM,48006,1,ARCOMIE,Arcomie,Arcomie,COM,48012,4,MONTS VERTS,Monts-Verts,Les Monts-Verts 33,1973-01-01,COM,48006,1,ARCOMIE,Arcomie,Arcomie,COMA,48006,1,ARCOMIE,Arcomie,Arcomie -33,1973-01-01,COM,48011,1,AUXILLAC,Auxillac,Auxillac,COM,48034,3,CANOURGUE,Canourgue,La Canourgue +33,1973-01-01,COM,48006,1,ARCOMIE,Arcomie,Arcomie,COM,48012,4,MONTS VERTS,Monts-Verts,Les Monts-Verts 33,1973-01-01,COM,48011,1,AUXILLAC,Auxillac,Auxillac,COMA,48011,1,AUXILLAC,Auxillac,Auxillac +33,1973-01-01,COM,48011,1,AUXILLAC,Auxillac,Auxillac,COM,48034,3,CANOURGUE,Canourgue,La Canourgue 33,1973-01-01,COM,48012,2,BACON,Bacon,Le Bacon,COM,48012,4,MONTS VERTS,Monts-Verts,Les Monts-Verts -33,1973-01-01,COM,48024,0,BERC,Berc,Berc,COMA,48024,0,BERC,Berc,Berc 33,1973-01-01,COM,48024,0,BERC,Berc,Berc,COM,48012,4,MONTS VERTS,Monts-Verts,Les Monts-Verts +33,1973-01-01,COM,48024,0,BERC,Berc,Berc,COMA,48024,0,BERC,Berc,Berc 33,1973-01-01,COM,48034,3,CANOURGUE,Canourgue,La Canourgue,COM,48034,3,CANOURGUE,Canourgue,La Canourgue 33,1973-01-01,COM,48035,3,CAPELLE,Capelle,La Capelle,COM,48034,3,CANOURGUE,Canourgue,La Canourgue 33,1973-01-01,COM,48035,3,CAPELLE,Capelle,La Capelle,COMA,48035,3,CAPELLE,Capelle,La Capelle @@ -9901,18 +9713,18 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,49180,0,LONGUE,Longué,Longué,COM,49180,0,LONGUE JUMELLES,Longué-Jumelles,Longué-Jumelles 31,1973-01-01,COM,49275,0,SAINT ELLIER,Saint-Ellier,Saint-Ellier,COM,49078,0,CHARCE SAINT ELLIER SUR AUBANCE,Charcé-Saint-Ellier-sur-Aubance,Charcé-Saint-Ellier-sur-Aubance 33,1973-01-01,COM,49281,0,SAINT GEORGES DU PUY DE LA GARDE,Saint-Georges-du-Puy-de-la-Garde,Saint-Georges-du-Puy-de-la-Garde,COM,49281,0,SAINT GEORGES DES GARDES,Saint-Georges-des-Gardes,Saint-Georges-des-Gardes -33,1973-01-01,COM,50017,1,ARDEVON,Ardevon,Ardevon,COM,50410,0,PONTORSON,Pontorson,Pontorson 33,1973-01-01,COM,50017,1,ARDEVON,Ardevon,Ardevon,COMA,50017,1,ARDEVON,Ardevon,Ardevon -33,1973-01-01,COM,50035,0,BAUDREVILLE,Baudreville,Baudreville,COM,50528,0,PIERREPONT EN COTENTIN,Pierrepont-en-Cotentin,Pierrepont-en-Cotentin +33,1973-01-01,COM,50017,1,ARDEVON,Ardevon,Ardevon,COM,50410,0,PONTORSON,Pontorson,Pontorson 33,1973-01-01,COM,50035,0,BAUDREVILLE,Baudreville,Baudreville,COMA,50035,0,BAUDREVILLE,Baudreville,Baudreville -33,1973-01-01,COM,50042,0,BEAUVOIR,Beauvoir,Beauvoir,COM,50410,0,PONTORSON,Pontorson,Pontorson +33,1973-01-01,COM,50035,0,BAUDREVILLE,Baudreville,Baudreville,COM,50528,0,PIERREPONT EN COTENTIN,Pierrepont-en-Cotentin,Pierrepont-en-Cotentin 33,1973-01-01,COM,50042,0,BEAUVOIR,Beauvoir,Beauvoir,COMA,50042,0,BEAUVOIR,Beauvoir,Beauvoir -33,1973-01-01,COM,50047,3,BESLIERE,Beslière,La Beslière,COM,50188,0,FOLLIGNY,Folligny,Folligny +33,1973-01-01,COM,50042,0,BEAUVOIR,Beauvoir,Beauvoir,COM,50410,0,PONTORSON,Pontorson,Pontorson 33,1973-01-01,COM,50047,3,BESLIERE,Beslière,La Beslière,COMA,50047,3,BESLIERE,Beslière,La Beslière -33,1973-01-01,COM,50063,0,BOLLEVILLE,Bolleville,Bolleville,COM,50528,0,PIERREPONT EN COTENTIN,Pierrepont-en-Cotentin,Pierrepont-en-Cotentin +33,1973-01-01,COM,50047,3,BESLIERE,Beslière,La Beslière,COM,50188,0,FOLLIGNY,Folligny,Folligny 33,1973-01-01,COM,50063,0,BOLLEVILLE,Bolleville,Bolleville,COMA,50063,0,BOLLEVILLE,Bolleville,Bolleville -33,1973-01-01,COM,50065,0,BOUCEY,Boucey,Boucey,COM,50410,0,PONTORSON,Pontorson,Pontorson +33,1973-01-01,COM,50063,0,BOLLEVILLE,Bolleville,Bolleville,COM,50528,0,PIERREPONT EN COTENTIN,Pierrepont-en-Cotentin,Pierrepont-en-Cotentin 33,1973-01-01,COM,50065,0,BOUCEY,Boucey,Boucey,COMA,50065,0,BOUCEY,Boucey,Boucey +33,1973-01-01,COM,50065,0,BOUCEY,Boucey,Boucey,COM,50410,0,PONTORSON,Pontorson,Pontorson 33,1973-01-01,COM,50066,0,BOUILLON,Bouillon,Bouillon,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville 33,1973-01-01,COM,50067,3,BOULOUZE,Boulouze,La Boulouze,COMA,50067,3,BOULOUZE,Boulouze,La Boulouze 33,1973-01-01,COM,50067,3,BOULOUZE,Boulouze,La Boulouze,COM,50531,0,SAINT OVIN,Saint-Ovin,Saint-Ovin @@ -9920,10 +9732,10 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,50097,0,CANVILLE LA ROCQUE,Canville-la-Rocque,Canville-la-Rocque,COM,50160,0,DENNEVILLE,Denneville,Denneville 33,1973-01-01,COM,50102,0,CAROLLES,Carolles,Carolles,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville 33,1973-01-01,COM,50102,0,CAROLLES,Carolles,Carolles,COMA,50102,0,CAROLLES,Carolles,Carolles -33,1973-01-01,COM,50141,0,CORMERAY,Cormeray,Cormeray,COM,50410,0,PONTORSON,Pontorson,Pontorson 33,1973-01-01,COM,50141,0,CORMERAY,Cormeray,Cormeray,COMA,50141,0,CORMERAY,Cormeray,Cormeray -33,1973-01-01,COM,50157,0,CUREY,Curey,Curey,COM,50410,0,PONTORSON,Pontorson,Pontorson +33,1973-01-01,COM,50141,0,CORMERAY,Cormeray,Cormeray,COM,50410,0,PONTORSON,Pontorson,Pontorson 33,1973-01-01,COM,50157,0,CUREY,Curey,Curey,COMA,50157,0,CUREY,Curey,Curey +33,1973-01-01,COM,50157,0,CUREY,Curey,Curey,COM,50410,0,PONTORSON,Pontorson,Pontorson 33,1973-01-01,COM,50160,0,DENNEVILLE,Denneville,Denneville,COM,50160,0,DENNEVILLE,Denneville,Denneville 33,1973-01-01,COM,50167,0,DRAGEY,Dragey,Dragey,COM,50167,0,DRAGEY TOMBELAINE,Dragey-Tombelaine,Dragey-Tombelaine 33,1973-01-01,COM,50170,1,ECOQUENEAUVILLE,Écoquenéauville,Écoquenéauville,COMA,50170,1,ECOQUENEAUVILLE,Écoquenéauville,Écoquenéauville @@ -9932,20 +9744,20 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,50197,0,GAVRAY,Gavray,Gavray,COM,50197,0,GAVRAY,Gavray,Gavray 33,1973-01-01,COM,50199,0,GENETS,Genêts,Genêts,COM,50167,0,DRAGEY TOMBELAINE,Dragey-Tombelaine,Dragey-Tombelaine 33,1973-01-01,COM,50199,0,GENETS,Genêts,Genêts,COMA,50199,0,GENETS,Genêts,Genêts -33,1973-01-01,COM,50201,0,GERVILLE LA FORET,Gerville-la-Forêt,Gerville-la-Forêt,COM,50629,0,VESLY,Vesly,Vesly 33,1973-01-01,COM,50201,0,GERVILLE LA FORET,Gerville-la-Forêt,Gerville-la-Forêt,COMA,50201,0,GERVILLE LA FORET,Gerville-la-Forêt,Gerville-la-Forêt -33,1973-01-01,COM,50284,0,MACEY,Macey,Macey,COM,50630,0,VESSEY,Vessey,Vessey +33,1973-01-01,COM,50201,0,GERVILLE LA FORET,Gerville-la-Forêt,Gerville-la-Forêt,COM,50629,0,VESLY,Vesly,Vesly 33,1973-01-01,COM,50284,0,MACEY,Macey,Macey,COMA,50284,0,MACEY,Macey,Macey -33,1973-01-01,COM,50307,2,MESNIL BONANT,Mesnil-Bonant,Le Mesnil-Bonant,COMA,50307,2,MESNIL BONANT,Mesnil-Bonant,Le Mesnil-Bonant +33,1973-01-01,COM,50284,0,MACEY,Macey,Macey,COM,50630,0,VESSEY,Vessey,Vessey 33,1973-01-01,COM,50307,2,MESNIL BONANT,Mesnil-Bonant,Le Mesnil-Bonant,COM,50197,0,GAVRAY,Gavray,Gavray -33,1973-01-01,COM,50309,2,MESNIL DREY,Mesnil-Drey,Le Mesnil-Drey,COMA,50309,2,MESNIL DREY,Mesnil-Drey,Le Mesnil-Drey +33,1973-01-01,COM,50307,2,MESNIL BONANT,Mesnil-Bonant,Le Mesnil-Bonant,COMA,50307,2,MESNIL BONANT,Mesnil-Bonant,Le Mesnil-Bonant 33,1973-01-01,COM,50309,2,MESNIL DREY,Mesnil-Drey,Le Mesnil-Drey,COM,50188,0,FOLLIGNY,Folligny,Folligny +33,1973-01-01,COM,50309,2,MESNIL DREY,Mesnil-Drey,Le Mesnil-Drey,COMA,50309,2,MESNIL DREY,Mesnil-Drey,Le Mesnil-Drey 33,1973-01-01,COM,50314,2,MESNIL HUE,Mesnil-Hue,Le Mesnil-Hue,COM,50197,0,GAVRAY,Gavray,Gavray 33,1973-01-01,COM,50314,2,MESNIL HUE,Mesnil-Hue,Le Mesnil-Hue,COMA,50314,2,MESNIL HUE,Mesnil-Hue,Le Mesnil-Hue 33,1973-01-01,COM,50317,2,MESNIL OZENNE,Mesnil-Ozenne,Le Mesnil-Ozenne,COMA,50317,2,MESNIL OZENNE,Mesnil-Ozenne,Le Mesnil-Ozenne 33,1973-01-01,COM,50317,2,MESNIL OZENNE,Mesnil-Ozenne,Le Mesnil-Ozenne,COM,50531,0,SAINT OVIN,Saint-Ovin,Saint-Ovin -33,1973-01-01,COM,50331,0,MOIDREY,Moidrey,Moidrey,COM,50410,0,PONTORSON,Pontorson,Pontorson 33,1973-01-01,COM,50331,0,MOIDREY,Moidrey,Moidrey,COMA,50331,0,MOIDREY,Moidrey,Moidrey +33,1973-01-01,COM,50331,0,MOIDREY,Moidrey,Moidrey,COM,50410,0,PONTORSON,Pontorson,Pontorson 33,1973-01-01,COM,50377,0,NOIRPALU,Noirpalu,Noirpalu,COMA,50377,0,NOIRPALU,Noirpalu,Noirpalu 33,1973-01-01,COM,50377,0,NOIRPALU,Noirpalu,Noirpalu,COM,50590,2,TANU,Tanu,Le Tanu 33,1973-01-01,COM,50392,4,PAS,Pas,Les Pas,COMA,50392,4,PAS,Pas,Les Pas @@ -9964,21 +9776,21 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,50501,0,SAINT LEGER,Saint-Léger,Saint-Léger,COM,50493,0,SAINT JEAN DES CHAMPS,Saint-Jean-des-Champs,Saint-Jean-des-Champs 33,1973-01-01,COM,50501,0,SAINT LEGER,Saint-Léger,Saint-Léger,COMA,50501,0,SAINT LEGER,Saint-Léger,Saint-Léger 31,1973-01-01,COM,50514,0,SAINT MARTIN DE CHAULIEU,Saint-Martin-de-Chaulieu,Saint-Martin-de-Chaulieu,COM,50514,0,CHAULIEU,Chaulieu,Chaulieu -33,1973-01-01,COM,50526,0,SAINT MICHEL DES LOUPS,Saint-Michel-des-Loups,Saint-Michel-des-Loups,COMA,50526,0,SAINT MICHEL DES LOUPS,Saint-Michel-des-Loups,Saint-Michel-des-Loups 33,1973-01-01,COM,50526,0,SAINT MICHEL DES LOUPS,Saint-Michel-des-Loups,Saint-Michel-des-Loups,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville +33,1973-01-01,COM,50526,0,SAINT MICHEL DES LOUPS,Saint-Michel-des-Loups,Saint-Michel-des-Loups,COMA,50526,0,SAINT MICHEL DES LOUPS,Saint-Michel-des-Loups,Saint-Michel-des-Loups 33,1973-01-01,COM,50528,0,SAINT NICOLAS DE PIERREPONT,Saint-Nicolas-de-Pierrepont,Saint-Nicolas-de-Pierrepont,COM,50528,0,PIERREPONT EN COTENTIN,Pierrepont-en-Cotentin,Pierrepont-en-Cotentin 33,1973-01-01,COM,50531,0,SAINT OSVIN,Saint-Osvin,Saint-Osvin,COM,50531,0,SAINT OVIN,Saint-Ovin,Saint-Ovin 33,1973-01-01,COM,50532,0,SAINT PAIR SUR MER,Saint-Pair-sur-Mer,Saint-Pair-sur-Mer,COM,50066,0,JULLOUVILLE,Jullouville,Jullouville 33,1973-01-01,COM,50532,0,SAINT PAIR SUR MER,Saint-Pair-sur-Mer,Saint-Pair-sur-Mer,COMA,50532,0,SAINT PAIR SUR MER,Saint-Pair-sur-Mer,Saint-Pair-sur-Mer 31,1973-01-01,COM,50547,0,SAINT SAUVEUR DE CHAULIEU,Saint-Sauveur-de-Chaulieu,Saint-Sauveur-de-Chaulieu,COM,50514,0,CHAULIEU,Chaulieu,Chaulieu -33,1973-01-01,COM,50548,0,SAINT SAUVEUR DE PIERREPONT,Saint-Sauveur-de-Pierrepont,Saint-Sauveur-de-Pierrepont,COMA,50548,0,SAINT SAUVEUR DE PIERREPONT,Saint-Sauveur-de-Pierrepont,Saint-Sauveur-de-Pierrepont 33,1973-01-01,COM,50548,0,SAINT SAUVEUR DE PIERREPONT,Saint-Sauveur-de-Pierrepont,Saint-Sauveur-de-Pierrepont,COM,50528,0,PIERREPONT EN COTENTIN,Pierrepont-en-Cotentin,Pierrepont-en-Cotentin +33,1973-01-01,COM,50548,0,SAINT SAUVEUR DE PIERREPONT,Saint-Sauveur-de-Pierrepont,Saint-Sauveur-de-Pierrepont,COMA,50548,0,SAINT SAUVEUR DE PIERREPONT,Saint-Sauveur-de-Pierrepont,Saint-Sauveur-de-Pierrepont 33,1973-01-01,COM,50555,0,SAINTE SUZANNE EN BAUPTOIS,Sainte-Suzanne-en-Bauptois,Sainte-Suzanne-en-Bauptois,COM,50415,0,PRETOT,Prétot,Prétot 33,1973-01-01,COM,50555,0,SAINTE SUZANNE EN BAUPTOIS,Sainte-Suzanne-en-Bauptois,Sainte-Suzanne-en-Bauptois,COMA,50555,0,SAINTE SUZANNE EN BAUPTOIS,Sainte-Suzanne-en-Bauptois,Sainte-Suzanne-en-Bauptois -33,1973-01-01,COM,50561,0,SAINT URSIN,Saint-Ursin,Saint-Ursin,COMA,50561,0,SAINT URSIN,Saint-Ursin,Saint-Ursin 33,1973-01-01,COM,50561,0,SAINT URSIN,Saint-Ursin,Saint-Ursin,COM,50493,0,SAINT JEAN DES CHAMPS,Saint-Jean-des-Champs,Saint-Jean-des-Champs -33,1973-01-01,COM,50571,0,SEBEVILLE,Sébeville,Sébeville,COM,50609,0,CRIQUEVILLE AU PLAIN,Criqueville-au-Plain,Criqueville-au-Plain +33,1973-01-01,COM,50561,0,SAINT URSIN,Saint-Ursin,Saint-Ursin,COMA,50561,0,SAINT URSIN,Saint-Ursin,Saint-Ursin 33,1973-01-01,COM,50571,0,SEBEVILLE,Sébeville,Sébeville,COMA,50571,0,SEBEVILLE,Sébeville,Sébeville +33,1973-01-01,COM,50571,0,SEBEVILLE,Sébeville,Sébeville,COM,50609,0,CRIQUEVILLE AU PLAIN,Criqueville-au-Plain,Criqueville-au-Plain 33,1973-01-01,COM,50590,2,TANU,Tanu,Le Tanu,COM,50590,2,TANU,Tanu,Le Tanu 31,1973-01-01,COM,50597,0,TIREPIED,Tirepied,Tirepied,COM,50597,0,TIREPIED,Tirepied,Tirepied 33,1973-01-01,COM,50609,0,TURQUEVILLE,Turqueville,Turqueville,COM,50609,0,CRIQUEVILLE AU PLAIN,Criqueville-au-Plain,Criqueville-au-Plain @@ -9989,39 +9801,39 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1973-01-01,COM,51380,0,MONTMIRAIL,Montmirail,Montmirail,COM,51380,0,MONTMIRAIL,Montmirail,Montmirail 33,1973-01-01,COM,51405,0,NORMEE,Normée,Normée,COM,51248,0,FERE CHAMPENOISE,Fère-Champenoise,Fère-Champenoise 33,1973-01-01,COM,51405,0,NORMEE,Normée,Normée,COMA,51405,0,NORMEE,Normée,Normée -33,1973-01-01,COM,52018,1,ARGENTOLLES,Argentolles,Argentolles,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey-les-Deux-Églises,Colombey-les-Deux-Églises 33,1973-01-01,COM,52018,1,ARGENTOLLES,Argentolles,Argentolles,COMA,52018,1,ARGENTOLLES,Argentolles,Argentolles +33,1973-01-01,COM,52018,1,ARGENTOLLES,Argentolles,Argentolles,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey-les-Deux-Églises,Colombey-les-Deux-Églises 33,1973-01-01,COM,52049,0,BIERNES,Biernes,Biernes,COMA,52049,0,BIERNES,Biernes,Biernes 33,1973-01-01,COM,52049,0,BIERNES,Biernes,Biernes,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey-les-Deux-Églises,Colombey-les-Deux-Églises 33,1973-01-01,COM,52052,0,BLAISE,Blaise,Blaise,COMA,52052,0,BLAISE,Blaise,Blaise 33,1973-01-01,COM,52052,0,BLAISE,Blaise,Blaise,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey-les-Deux-Églises,Colombey-les-Deux-Églises -33,1973-01-01,COM,52096,0,CHAMARANDES,Chamarandes,Chamarandes,COM,52125,0,CHAMARANDES CHOIGNES,Chamarandes-Choignes,Chamarandes-Choignes 33,1973-01-01,COM,52096,0,CHAMARANDES,Chamarandes,Chamarandes,COMA,52096,0,CHAMARANDES,Chamarandes,Chamarandes -33,1973-01-01,COM,52100,0,CHAMPCOURT,Champcourt,Champcourt,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey-les-Deux-Églises,Colombey-les-Deux-Églises +33,1973-01-01,COM,52096,0,CHAMARANDES,Chamarandes,Chamarandes,COM,52125,0,CHAMARANDES CHOIGNES,Chamarandes-Choignes,Chamarandes-Choignes 33,1973-01-01,COM,52100,0,CHAMPCOURT,Champcourt,Champcourt,COMA,52100,0,CHAMPCOURT,Champcourt,Champcourt +33,1973-01-01,COM,52100,0,CHAMPCOURT,Champcourt,Champcourt,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey-les-Deux-Églises,Colombey-les-Deux-Églises 33,1973-01-01,COM,52125,0,CHOIGNES,Choignes,Choignes,COM,52125,0,CHAMARANDES CHOIGNES,Chamarandes-Choignes,Chamarandes-Choignes 33,1973-01-01,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey-les-Deux-Églises,Colombey-les-Deux-Églises,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey-les-Deux-Églises,Colombey-les-Deux-Églises -33,1973-01-01,COM,52226,0,GOURZON,Gourzon,Gourzon,COM,52265,0,BAYARD SUR MARNE,Bayard-sur-Marne,Bayard-sur-Marne 33,1973-01-01,COM,52226,0,GOURZON,Gourzon,Gourzon,COMA,52226,0,GOURZON,Gourzon,Gourzon -33,1973-01-01,COM,52238,1,HARRICOURT,Harricourt,Harricourt,COMA,52238,1,HARRICOURT,Harricourt,Harricourt +33,1973-01-01,COM,52226,0,GOURZON,Gourzon,Gourzon,COM,52265,0,BAYARD SUR MARNE,Bayard-sur-Marne,Bayard-sur-Marne 33,1973-01-01,COM,52238,1,HARRICOURT,Harricourt,Harricourt,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey-les-Deux-Églises,Colombey-les-Deux-Églises +33,1973-01-01,COM,52238,1,HARRICOURT,Harricourt,Harricourt,COMA,52238,1,HARRICOURT,Harricourt,Harricourt 33,1973-01-01,COM,52251,0,JONCHERY,Jonchery,Jonchery,COM,52251,0,JONCHERY,Jonchery,Jonchery -33,1973-01-01,COM,52259,0,LAHARMAND,Laharmand,Laharmand,COMA,52259,0,LAHARMAND,Laharmand,Laharmand 33,1973-01-01,COM,52259,0,LAHARMAND,Laharmand,Laharmand,COM,52251,0,JONCHERY,Jonchery,Jonchery +33,1973-01-01,COM,52259,0,LAHARMAND,Laharmand,Laharmand,COMA,52259,0,LAHARMAND,Laharmand,Laharmand 33,1973-01-01,COM,52265,0,LANEUVILLE A BAYARD,Laneuville-à-Bayard,Laneuville-à-Bayard,COM,52265,0,BAYARD SUR MARNE,Bayard-sur-Marne,Bayard-sur-Marne 33,1973-01-01,COM,52279,0,LAVILLENEUVE AUX FRESNES,Lavilleneuve-aux-Fresnes,Lavilleneuve-aux-Fresnes,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey-les-Deux-Églises,Colombey-les-Deux-Églises 33,1973-01-01,COM,52279,0,LAVILLENEUVE AUX FRESNES,Lavilleneuve-aux-Fresnes,Lavilleneuve-aux-Fresnes,COMA,52279,0,LAVILLENEUVE AUX FRESNES,Lavilleneuve-aux-Fresnes,Lavilleneuve-aux-Fresnes 33,1973-01-01,COM,52311,0,MARCILLY EN BASSIGNY,Marcilly-en-Bassigny,Marcilly-en-Bassigny,COM,52311,0,MARCILLY PLESNOY,Marcilly-Plesnoy,Marcilly-Plesnoy -33,1973-01-01,COM,52392,0,PLESNOY,Plesnoy,Plesnoy,COMA,52392,0,PLESNOY,Plesnoy,Plesnoy 33,1973-01-01,COM,52392,0,PLESNOY,Plesnoy,Plesnoy,COM,52311,0,MARCILLY PLESNOY,Marcilly-Plesnoy,Marcilly-Plesnoy +33,1973-01-01,COM,52392,0,PLESNOY,Plesnoy,Plesnoy,COMA,52392,0,PLESNOY,Plesnoy,Plesnoy 33,1973-01-01,COM,52404,0,PRATZ,Pratz,Pratz,COM,52140,0,COLOMBEY LES DEUX EGLISES,Colombey-les-Deux-Églises,Colombey-les-Deux-Églises 33,1973-01-01,COM,52404,0,PRATZ,Pratz,Pratz,COMA,52404,0,PRATZ,Pratz,Pratz -33,1973-01-01,COM,52408,0,PREZ SUR MARNE,Prez-sur-Marne,Prez-sur-Marne,COMA,52408,0,PREZ SUR MARNE,Prez-sur-Marne,Prez-sur-Marne 33,1973-01-01,COM,52408,0,PREZ SUR MARNE,Prez-sur-Marne,Prez-sur-Marne,COM,52265,0,BAYARD SUR MARNE,Bayard-sur-Marne,Bayard-sur-Marne -33,1973-01-01,COM,52460,0,SARCICOURT,Sarcicourt,Sarcicourt,COMA,52460,0,SARCICOURT,Sarcicourt,Sarcicourt +33,1973-01-01,COM,52408,0,PREZ SUR MARNE,Prez-sur-Marne,Prez-sur-Marne,COMA,52408,0,PREZ SUR MARNE,Prez-sur-Marne,Prez-sur-Marne 33,1973-01-01,COM,52460,0,SARCICOURT,Sarcicourt,Sarcicourt,COM,52251,0,JONCHERY,Jonchery,Jonchery -33,1973-01-01,COM,53020,3,BAROCHE GONDOUIN,Baroche-Gondouin,La Baroche-Gondouin,COM,53127,0,LASSAY LES CHATEAUX,Lassay-les-Châteaux,Lassay-les-Châteaux +33,1973-01-01,COM,52460,0,SARCICOURT,Sarcicourt,Sarcicourt,COMA,52460,0,SARCICOURT,Sarcicourt,Sarcicourt 33,1973-01-01,COM,53020,3,BAROCHE GONDOUIN,Baroche-Gondouin,La Baroche-Gondouin,COMA,53020,3,BAROCHE GONDOUIN,Baroche-Gondouin,La Baroche-Gondouin +33,1973-01-01,COM,53020,3,BAROCHE GONDOUIN,Baroche-Gondouin,La Baroche-Gondouin,COM,53127,0,LASSAY LES CHATEAUX,Lassay-les-Châteaux,Lassay-les-Châteaux 33,1973-01-01,COM,53060,4,CHAPELLES,Chapelles,Les Chapelles,COMA,53060,4,CHAPELLES,Chapelles,Les Chapelles 33,1973-01-01,COM,53060,4,CHAPELLES,Chapelles,Les Chapelles,COM,53121,0,JAVRON LES CHAPELLES,Javron-les-Chapelles,Javron-les-Chapelles 33,1973-01-01,COM,53079,0,COUESMES EN FROULAY,Couesmes-en-Froulay,Couesmes-en-Froulay,COM,53079,0,COUESMES VAUCE,Couesmes-Vaucé,Couesmes-Vaucé @@ -10032,8 +9844,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,53167,0,NUILLE SUR OUETTE,Nuillé-sur-Ouette,Nuillé-sur-Ouette,COMA,53167,0,NUILLE SUR OUETTE,Nuillé-sur-Ouette,Nuillé-sur-Ouette 33,1973-01-01,COM,53167,0,NUILLE SUR OUETTE,Nuillé-sur-Ouette,Nuillé-sur-Ouette,COM,53262,0,SOULGE SUR OUETTE,Soulgé-sur-Ouette,Soulgé-sur-Ouette 33,1973-01-01,COM,53186,0,QUELAINES,Quelaines,Quelaines,COM,53186,0,QUELAINES SAINT GAULT,Quelaines-Saint-Gault,Quelaines-Saint-Gault -33,1973-01-01,COM,53217,0,SAINT GAULT,Saint-Gault,Saint-Gault,COMA,53217,0,SAINT GAULT,Saint-Gault,Saint-Gault 33,1973-01-01,COM,53217,0,SAINT GAULT,Saint-Gault,Saint-Gault,COM,53186,0,QUELAINES SAINT GAULT,Quelaines-Saint-Gault,Quelaines-Saint-Gault +33,1973-01-01,COM,53217,0,SAINT GAULT,Saint-Gault,Saint-Gault,COMA,53217,0,SAINT GAULT,Saint-Gault,Saint-Gault 33,1973-01-01,COM,53262,0,SOULGE LE BRUANT,Soulgé-le-Bruant,Soulgé-le-Bruant,COM,53262,0,SOULGE SUR OUETTE,Soulgé-sur-Ouette,Soulgé-sur-Ouette 33,1973-01-01,COM,53268,0,VAUCE,Vaucé,Vaucé,COM,53079,0,COUESMES VAUCE,Couesmes-Vaucé,Couesmes-Vaucé 33,1973-01-01,COM,53268,0,VAUCE,Vaucé,Vaucé,COMA,53268,0,VAUCE,Vaucé,Vaucé @@ -10051,8 +9863,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,55012,1,APREMONT LA FORET,Apremont-la-Forêt,Apremont-la-Forêt,COM,55012,1,APREMONT LA FORET,Apremont-la-Forêt,Apremont-la-Forêt 33,1973-01-01,COM,55016,1,AULNOIS SOUS VERTUZEY,Aulnois-sous-Vertuzey,Aulnois-sous-Vertuzey,COMA,55016,1,AULNOIS SOUS VERTUZEY,Aulnois-sous-Vertuzey,Aulnois-sous-Vertuzey 33,1973-01-01,COM,55016,1,AULNOIS SOUS VERTUZEY,Aulnois-sous-Vertuzey,Aulnois-sous-Vertuzey,COM,55184,1,EUVILLE,Euville,Euville -33,1973-01-01,COM,55020,1,AUZEVILLE EN ARGONNE,Auzéville-en-Argonne,Auzéville-en-Argonne,COM,55117,0,CLERMONT EN ARGONNE,Clermont-en-Argonne,Clermont-en-Argonne 33,1973-01-01,COM,55020,1,AUZEVILLE EN ARGONNE,Auzéville-en-Argonne,Auzéville-en-Argonne,COMA,55020,1,AUZEVILLE EN ARGONNE,Auzéville-en-Argonne,Auzéville-en-Argonne +33,1973-01-01,COM,55020,1,AUZEVILLE EN ARGONNE,Auzéville-en-Argonne,Auzéville-en-Argonne,COM,55117,0,CLERMONT EN ARGONNE,Clermont-en-Argonne,Clermont-en-Argonne 33,1973-01-01,COM,55026,0,BADONVILLIERS,Badonvilliers,Badonvilliers,COM,55026,0,BADONVILLIERS GERAUVILLIERS,Badonvilliers-Gérauvilliers,Badonvilliers-Gérauvilliers 33,1973-01-01,COM,55033,0,BAULNY,Baulny,Baulny,COM,55033,0,BAULNY CHARPENTRY,Baulny-Charpentry,Baulny-Charpentry 33,1973-01-01,COM,55040,0,BEAUZEE SUR AIRE,Beauzée-sur-Aire,Beauzée-sur-Aire,COM,55040,0,BEAUSITE,Beausite,Beausite @@ -10063,8 +9875,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,55068,0,BRABANT EN ARGONNE,Brabant-en-Argonne,Brabant-en-Argonne,COMA,55068,0,BRABANT EN ARGONNE,Brabant-en-Argonne,Brabant-en-Argonne 33,1973-01-01,COM,55068,0,BRABANT EN ARGONNE,Brabant-en-Argonne,Brabant-en-Argonne,COM,55419,0,RECICOURT,Récicourt,Récicourt 33,1973-01-01,COM,55069,0,BRABANT LE ROI,Brabant-le-Roi,Brabant-le-Roi,COM,55069,0,BRABANT LES VILLERS,Brabant-lès-Villers,Brabant-lès-Villers -33,1973-01-01,COM,55074,0,BRASSEITTE,Brasseitte,Brasseitte,COM,55229,0,HAN SUR MEUSE,Han-sur-Meuse,Han-sur-Meuse 33,1973-01-01,COM,55074,0,BRASSEITTE,Brasseitte,Brasseitte,COMA,55074,0,BRASSEITTE,Brasseitte,Brasseitte +33,1973-01-01,COM,55074,0,BRASSEITTE,Brasseitte,Brasseitte,COM,55229,0,HAN SUR MEUSE,Han-sur-Meuse,Han-sur-Meuse 33,1973-01-01,COM,55082,0,BROCOURT EN ARGONNE,Brocourt-en-Argonne,Brocourt-en-Argonne,COMA,55082,0,BROCOURT EN ARGONNE,Brocourt-en-Argonne,Brocourt-en-Argonne 33,1973-01-01,COM,55082,0,BROCOURT EN ARGONNE,Brocourt-en-Argonne,Brocourt-en-Argonne,COM,55419,0,RECICOURT,Récicourt,Récicourt 33,1973-01-01,COM,55086,0,BULAINVILLE,Bulainville,Bulainville,COMA,55086,0,BULAINVILLE,Bulainville,Bulainville @@ -10073,78 +9885,78 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,55090,0,BUSSY LA COTE,Bussy-la-Côte,Bussy-la-Côte,COM,55366,0,VAL D ORNAIN,Val-d'Ornain,Val-d'Ornain 33,1973-01-01,COM,55091,0,BUTGNEVILLE,Butgnéville,Butgnéville,COMA,55091,0,BUTGNEVILLE,Butgnéville,Butgnéville 33,1973-01-01,COM,55091,0,BUTGNEVILLE,Butgnéville,Butgnéville,COM,55457,0,SAINT HILAIRE EN WOEVRE,Saint-Hilaire-en-Woëvre,Saint-Hilaire-en-Woëvre -33,1973-01-01,COM,55092,0,BUXERULLES,Buxerulles,Buxerulles,COM,55093,0,BUXIERES SOUS LES COTES,Buxières-sous-les-Côtes,Buxières-sous-les-Côtes 33,1973-01-01,COM,55092,0,BUXERULLES,Buxerulles,Buxerulles,COMA,55092,0,BUXERULLES,Buxerulles,Buxerulles +33,1973-01-01,COM,55092,0,BUXERULLES,Buxerulles,Buxerulles,COM,55093,0,BUXIERES SOUS LES COTES,Buxières-sous-les-Côtes,Buxières-sous-les-Côtes 33,1973-01-01,COM,55093,0,BUXIERES SOUS LES COTES,Buxières-sous-les-Côtes,Buxières-sous-les-Côtes,COM,55093,0,BUXIERES SOUS LES COTES,Buxières-sous-les-Côtes,Buxières-sous-les-Côtes 33,1973-01-01,COM,55094,0,BUZY,Buzy,Buzy,COM,55094,0,BUZY DARMONT,Buzy-Darmont,Buzy-Darmont -33,1973-01-01,COM,55098,0,CHAMPLON,Champlon,Champlon,COM,55473,0,SAULX LES CHAMPLON,Saulx-lès-Champlon,Saulx-lès-Champlon 33,1973-01-01,COM,55098,0,CHAMPLON,Champlon,Champlon,COMA,55098,0,CHAMPLON,Champlon,Champlon -33,1973-01-01,COM,55103,0,CHARPENTRY,Charpentry,Charpentry,COMA,55103,0,CHARPENTRY,Charpentry,Charpentry +33,1973-01-01,COM,55098,0,CHAMPLON,Champlon,Champlon,COM,55473,0,SAULX LES CHAMPLON,Saulx-lès-Champlon,Saulx-lès-Champlon 33,1973-01-01,COM,55103,0,CHARPENTRY,Charpentry,Charpentry,COM,55033,0,BAULNY CHARPENTRY,Baulny-Charpentry,Baulny-Charpentry +33,1973-01-01,COM,55103,0,CHARPENTRY,Charpentry,Charpentry,COMA,55103,0,CHARPENTRY,Charpentry,Charpentry 33,1973-01-01,COM,55112,0,CHENNEVIERES,Chennevières,Chennevières,COMA,55112,0,CHENNEVIERES,Chennevières,Chennevières 33,1973-01-01,COM,55112,0,CHENNEVIERES,Chennevières,Chennevières,COM,55358,0,CHANTERAINE,Chanteraine,Chanteraine 33,1973-01-01,COM,55114,0,CHONVILLE,Chonville,Chonville,COM,55114,0,CHONVILLE MALAUMONT,Chonville-Malaumont,Chonville-Malaumont 33,1973-01-01,COM,55117,0,CLERMONT EN ARGONNE,Clermont-en-Argonne,Clermont-en-Argonne,COM,55117,0,CLERMONT EN ARGONNE,Clermont-en-Argonne,Clermont-en-Argonne 33,1973-01-01,COM,55126,0,CORNIEVILLE,Corniéville,Corniéville,COMA,55126,0,CORNIEVILLE,Corniéville,Corniéville 33,1973-01-01,COM,55126,0,CORNIEVILLE,Corniéville,Corniéville,COM,55258,0,GEVILLE,Geville,Geville -33,1973-01-01,COM,55131,0,COUSANCES AU BOIS,Cousances-au-Bois,Cousances-au-Bois,COM,55518,0,COUSANCES LES TRICONVILLE,Cousances-lès-Triconville,Cousances-lès-Triconville 33,1973-01-01,COM,55131,0,COUSANCES AU BOIS,Cousances-au-Bois,Cousances-au-Bois,COMA,55131,0,COUSANCES AU BOIS,Cousances-au-Bois,Cousances-au-Bois -33,1973-01-01,COM,55135,0,CREPION,Crépion,Crépion,COM,55341,0,MOIREY FLABAS CREPION,Moirey-Flabas-Crépion,Moirey-Flabas-Crépion +33,1973-01-01,COM,55131,0,COUSANCES AU BOIS,Cousances-au-Bois,Cousances-au-Bois,COM,55518,0,COUSANCES LES TRICONVILLE,Cousances-lès-Triconville,Cousances-lès-Triconville 33,1973-01-01,COM,55135,0,CREPION,Crépion,Crépion,COMA,55135,0,CREPION,Crépion,Crépion +33,1973-01-01,COM,55135,0,CREPION,Crépion,Crépion,COM,55341,0,MOIREY FLABAS CREPION,Moirey-Flabas-Crépion,Moirey-Flabas-Crépion 31,1973-01-01,COM,55138,0,CULEY,Culey,Culey,COM,55298,0,LOISEY CULEY,Loisey-Culey,Loisey-Culey -33,1973-01-01,COM,55147,0,DARMONT,Darmont,Darmont,COMA,55147,0,DARMONT,Darmont,Darmont 33,1973-01-01,COM,55147,0,DARMONT,Darmont,Darmont,COM,55094,0,BUZY DARMONT,Buzy-Darmont,Buzy-Darmont +33,1973-01-01,COM,55147,0,DARMONT,Darmont,Darmont,COMA,55147,0,DARMONT,Darmont,Darmont 33,1973-01-01,COM,55148,0,DELOUZE,Delouze,Delouze,COM,55148,0,DELOUZE ROSIERES,Delouze-Rosières,Delouze-Rosières -33,1973-01-01,COM,55151,0,DEUXNOUDS AUX BOIS,Deuxnouds-aux-Bois,Deuxnouds-aux-Bois,COM,55274,0,LAMORVILLE,Lamorville,Lamorville 33,1973-01-01,COM,55151,0,DEUXNOUDS AUX BOIS,Deuxnouds-aux-Bois,Deuxnouds-aux-Bois,COMA,55151,0,DEUXNOUDS AUX BOIS,Deuxnouds-aux-Bois,Deuxnouds-aux-Bois -33,1973-01-01,COM,55152,0,DEUXNOUDS DEVANT BEAUZEE,Deuxnouds-devant-Beauzée,Deuxnouds-devant-Beauzée,COMA,55152,0,DEUXNOUDS DEVANT BEAUZEE,Deuxnouds-devant-Beauzée,Deuxnouds-devant-Beauzée +33,1973-01-01,COM,55151,0,DEUXNOUDS AUX BOIS,Deuxnouds-aux-Bois,Deuxnouds-aux-Bois,COM,55274,0,LAMORVILLE,Lamorville,Lamorville 33,1973-01-01,COM,55152,0,DEUXNOUDS DEVANT BEAUZEE,Deuxnouds-devant-Beauzée,Deuxnouds-devant-Beauzée,COM,55040,0,BEAUSITE,Beausite,Beausite -33,1973-01-01,COM,55161,0,DOMREMY AUX BOIS,Domremy-aux-Bois,Domremy-aux-Bois,COM,55179,1,ERNEVILLE AUX BOIS,Erneville-aux-Bois,Erneville-aux-Bois +33,1973-01-01,COM,55152,0,DEUXNOUDS DEVANT BEAUZEE,Deuxnouds-devant-Beauzée,Deuxnouds-devant-Beauzée,COMA,55152,0,DEUXNOUDS DEVANT BEAUZEE,Deuxnouds-devant-Beauzée,Deuxnouds-devant-Beauzée 33,1973-01-01,COM,55161,0,DOMREMY AUX BOIS,Domremy-aux-Bois,Domremy-aux-Bois,COMA,55161,0,DOMREMY AUX BOIS,Domremy-aux-Bois,Domremy-aux-Bois -33,1973-01-01,COM,55176,1,ERIZE LA GRANDE,Érize-la-Grande,Érize-la-Grande,COM,55442,0,RAIVAL,Raival,Raival +33,1973-01-01,COM,55161,0,DOMREMY AUX BOIS,Domremy-aux-Bois,Domremy-aux-Bois,COM,55179,1,ERNEVILLE AUX BOIS,Erneville-aux-Bois,Erneville-aux-Bois 33,1973-01-01,COM,55176,1,ERIZE LA GRANDE,Érize-la-Grande,Érize-la-Grande,COMA,55176,1,ERIZE LA GRANDE,Érize-la-Grande,Érize-la-Grande +33,1973-01-01,COM,55176,1,ERIZE LA GRANDE,Érize-la-Grande,Érize-la-Grande,COM,55442,0,RAIVAL,Raival,Raival 33,1973-01-01,COM,55179,1,ERNECOURT,Ernecourt,Ernecourt,COM,55179,1,ERNEVILLE AUX BOIS,Erneville-aux-Bois,Erneville-aux-Bois 33,1973-01-01,COM,55183,1,ETRAYE,Étraye,Étraye,COM,55183,1,ETRAYE WAVRILLE,Étraye-Wavrille,Étraye-Wavrille 33,1973-01-01,COM,55184,1,EUVILLE,Euville,Euville,COM,55184,1,EUVILLE,Euville,Euville 33,1973-01-01,COM,55186,0,FAINS LES SOURCES,Fains-les-Sources,Fains-les-Sources,COM,55186,0,FAINS VEEL,Fains-Véel,Fains-Véel -33,1973-01-01,COM,55187,0,FLABAS,Flabas,Flabas,COM,55341,0,MOIREY FLABAS CREPION,Moirey-Flabas-Crépion,Moirey-Flabas-Crépion 33,1973-01-01,COM,55187,0,FLABAS,Flabas,Flabas,COMA,55187,0,FLABAS,Flabas,Flabas -33,1973-01-01,COM,55190,0,FLEURY SUR AIRE,Fleury-sur-Aire,Fleury-sur-Aire,COM,55389,0,NUBECOURT,Nubécourt,Nubécourt +33,1973-01-01,COM,55187,0,FLABAS,Flabas,Flabas,COM,55341,0,MOIREY FLABAS CREPION,Moirey-Flabas-Crépion,Moirey-Flabas-Crépion 33,1973-01-01,COM,55190,0,FLEURY SUR AIRE,Fleury-sur-Aire,Fleury-sur-Aire,COMA,55190,0,FLEURY SUR AIRE,Fleury-sur-Aire,Fleury-sur-Aire +33,1973-01-01,COM,55190,0,FLEURY SUR AIRE,Fleury-sur-Aire,Fleury-sur-Aire,COM,55389,0,NUBECOURT,Nubécourt,Nubécourt 33,1973-01-01,COM,55191,0,FOAMEIX,Foameix,Foameix,COM,55191,0,FOAMEIX ORNEL,Foameix-Ornel,Foameix-Ornel -33,1973-01-01,COM,55205,0,GERAUVILLIERS,Gérauvilliers,Gérauvilliers,COMA,55205,0,GERAUVILLIERS,Gérauvilliers,Gérauvilliers 33,1973-01-01,COM,55205,0,GERAUVILLIERS,Gérauvilliers,Gérauvilliers,COM,55026,0,BADONVILLIERS GERAUVILLIERS,Badonvilliers-Gérauvilliers,Badonvilliers-Gérauvilliers -33,1973-01-01,COM,55210,0,GIMECOURT,Gimécourt,Gimécourt,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire +33,1973-01-01,COM,55205,0,GERAUVILLIERS,Gérauvilliers,Gérauvilliers,COMA,55205,0,GERAUVILLIERS,Gérauvilliers,Gérauvilliers 33,1973-01-01,COM,55210,0,GIMECOURT,Gimécourt,Gimécourt,COMA,55210,0,GIMECOURT,Gimécourt,Gimécourt -33,1973-01-01,COM,55213,0,GIRONVILLE SOUS LES COTES,Gironville-sous-les-Côtes,Gironville-sous-les-Côtes,COM,55258,0,GEVILLE,Geville,Geville +33,1973-01-01,COM,55210,0,GIMECOURT,Gimécourt,Gimécourt,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire 33,1973-01-01,COM,55213,0,GIRONVILLE SOUS LES COTES,Gironville-sous-les-Côtes,Gironville-sous-les-Côtes,COMA,55213,0,GIRONVILLE SOUS LES COTES,Gironville-sous-les-Côtes,Gironville-sous-les-Côtes +33,1973-01-01,COM,55213,0,GIRONVILLE SOUS LES COTES,Gironville-sous-les-Côtes,Gironville-sous-les-Côtes,COM,55258,0,GEVILLE,Geville,Geville 33,1973-01-01,COM,55215,0,GONDRECOURT LE CHATEAU,Gondrecourt-le-Château,Gondrecourt-le-Château,COM,55215,0,GONDRECOURT LE CHATEAU,Gondrecourt-le-Château,Gondrecourt-le-Château 33,1973-01-01,COM,55216,0,GOURAINCOURT,Gouraincourt,Gouraincourt,COMA,55216,0,GOURAINCOURT,Gouraincourt,Gouraincourt 33,1973-01-01,COM,55216,0,GOURAINCOURT,Gouraincourt,Gouraincourt,COM,55535,4,TILLEULS VAUDONCOURT,Tilleuls-Vaudoncourt,Les Tilleuls-Vaudoncourt -33,1973-01-01,COM,55223,1,HADONVILLE LES LACHAUSSEE,Hadonville-lès-Lachaussée,Hadonville-lès-Lachaussée,COM,55267,0,LACHAUSSEE,Lachaussée,Lachaussée 33,1973-01-01,COM,55223,1,HADONVILLE LES LACHAUSSEE,Hadonville-lès-Lachaussée,Hadonville-lès-Lachaussée,COMA,55223,1,HADONVILLE LES LACHAUSSEE,Hadonville-lès-Lachaussée,Hadonville-lès-Lachaussée +33,1973-01-01,COM,55223,1,HADONVILLE LES LACHAUSSEE,Hadonville-lès-Lachaussée,Hadonville-lès-Lachaussée,COM,55267,0,LACHAUSSEE,Lachaussée,Lachaussée 33,1973-01-01,COM,55229,0,HAN SUR MEUSE,Han-sur-Meuse,Han-sur-Meuse,COM,55229,0,HAN SUR MEUSE,Han-sur-Meuse,Han-sur-Meuse -33,1973-01-01,COM,55230,0,HARAUMONT,Haraumont,Haraumont,COM,55571,0,VILOSNES HARAUMONT,Vilosnes-Haraumont,Vilosnes-Haraumont 33,1973-01-01,COM,55230,0,HARAUMONT,Haraumont,Haraumont,COMA,55230,0,HARAUMONT,Haraumont,Haraumont +33,1973-01-01,COM,55230,0,HARAUMONT,Haraumont,Haraumont,COM,55571,0,VILOSNES HARAUMONT,Vilosnes-Haraumont,Vilosnes-Haraumont 33,1973-01-01,COM,55238,1,HAUMONT LES LACHAUSSEE,Haumont-lès-Lachaussée,Haumont-lès-Lachaussée,COMA,55238,1,HAUMONT LES LACHAUSSEE,Haumont-lès-Lachaussée,Haumont-lès-Lachaussée 33,1973-01-01,COM,55238,1,HAUMONT LES LACHAUSSEE,Haumont-lès-Lachaussée,Haumont-lès-Lachaussée,COM,55267,0,LACHAUSSEE,Lachaussée,Lachaussée 33,1973-01-01,COM,55245,0,HEUDICOURT SOUS LES COTES,Heudicourt-sous-les-Côtes,Heudicourt-sous-les-Côtes,COM,55245,0,MADINE,Madine,Madine -33,1973-01-01,COM,55254,0,ISSONCOURT,Issoncourt,Issoncourt,COM,55254,4,TROIS DOMAINES,Trois-Domaines,Les Trois-Domaines +33,1973-01-01,COM,55254,1,ISSONCOURT,Issoncourt,Issoncourt,COM,55254,4,TROIS DOMAINES,Trois-Domaines,Les Trois-Domaines 33,1973-01-01,COM,55258,0,JOUY SOUS LES COTES,Jouy-sous-les-Côtes,Jouy-sous-les-Côtes,COM,55258,0,GEVILLE,Geville,Geville 33,1973-01-01,COM,55267,0,LACHAUSSEE,Lachaussée,Lachaussée,COM,55267,0,LACHAUSSEE,Lachaussée,Lachaussée 33,1973-01-01,COM,55273,0,LAMARCHE EN WOEVRE,Lamarche-en-Woëvre,Lamarche-en-Woëvre,COM,55245,0,MADINE,Madine,Madine 33,1973-01-01,COM,55273,0,LAMARCHE EN WOEVRE,Lamarche-en-Woëvre,Lamarche-en-Woëvre,COMA,55273,0,LAMARCHE EN WOEVRE,Lamarche-en-Woëvre,Lamarche-en-Woëvre 33,1973-01-01,COM,55274,0,LAMORVILLE,Lamorville,Lamorville,COM,55274,0,LAMORVILLE,Lamorville,Lamorville -33,1973-01-01,COM,55283,0,LAVIGNEVILLE,Lavignéville,Lavignéville,COMA,55283,0,LAVIGNEVILLE,Lavignéville,Lavignéville 33,1973-01-01,COM,55283,0,LAVIGNEVILLE,Lavignéville,Lavignéville,COM,55274,0,LAMORVILLE,Lamorville,Lamorville +33,1973-01-01,COM,55283,0,LAVIGNEVILLE,Lavignéville,Lavignéville,COMA,55283,0,LAVIGNEVILLE,Lavignéville,Lavignéville 33,1973-01-01,COM,55286,0,LEMMES,Lemmes,Lemmes,COM,55286,4,QUATRE VENTS,Quatre-Vents,Les Quatre-Vents -33,1973-01-01,COM,55294,0,LIOUVILLE,Liouville,Liouville,COMA,55294,0,LIOUVILLE,Liouville,Liouville 33,1973-01-01,COM,55294,0,LIOUVILLE,Liouville,Liouville,COM,55012,1,APREMONT LA FORET,Apremont-la-Forêt,Apremont-la-Forêt +33,1973-01-01,COM,55294,0,LIOUVILLE,Liouville,Liouville,COMA,55294,0,LIOUVILLE,Liouville,Liouville 33,1973-01-01,COM,55295,0,LISLE EN BARROIS,Lisle-en-Barrois,Lisle-en-Barrois,COMA,55295,0,LISLE EN BARROIS,Lisle-en-Barrois,Lisle-en-Barrois 33,1973-01-01,COM,55295,0,LISLE EN BARROIS,Lisle-en-Barrois,Lisle-en-Barrois,COM,55569,0,VILISLE,Vilisle,Vilisle 31,1973-01-01,COM,55298,0,LOISEY,Loisey,Loisey,COM,55298,0,LOISEY CULEY,Loisey-Culey,Loisey-Culey -33,1973-01-01,COM,55308,0,LOXEVILLE,Loxéville,Loxéville,COMA,55308,0,LOXEVILLE,Loxéville,Loxéville 33,1973-01-01,COM,55308,0,LOXEVILLE,Loxéville,Loxéville,COM,55179,1,ERNEVILLE AUX BOIS,Erneville-aux-Bois,Erneville-aux-Bois +33,1973-01-01,COM,55308,0,LOXEVILLE,Loxéville,Loxéville,COMA,55308,0,LOXEVILLE,Loxéville,Loxéville 33,1973-01-01,COM,55309,0,LUMEVILLE EN ORNOIS,Luméville-en-Ornois,Luméville-en-Ornois,COM,55215,0,GONDRECOURT LE CHATEAU,Gondrecourt-le-Château,Gondrecourt-le-Château 33,1973-01-01,COM,55309,0,LUMEVILLE EN ORNOIS,Luméville-en-Ornois,Luméville-en-Ornois,COMA,55309,0,LUMEVILLE EN ORNOIS,Luméville-en-Ornois,Luméville-en-Ornois 33,1973-01-01,COM,55314,0,MALAUMONT,Malaumont,Malaumont,COM,55114,0,CHONVILLE MALAUMONT,Chonville-Malaumont,Chonville-Malaumont @@ -10163,58 +9975,58 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,55386,0,NONSARD,Nonsard,Nonsard,COM,55245,0,MADINE,Madine,Madine 33,1973-01-01,COM,55386,0,NONSARD,Nonsard,Nonsard,COMA,55386,0,NONSARD,Nonsard,Nonsard 33,1973-01-01,COM,55389,0,NUBECOURT,Nubécourt,Nubécourt,COM,55389,0,NUBECOURT,Nubécourt,Nubécourt -33,1973-01-01,COM,55390,1,OEY,Oëy,Oëy,COMA,55390,1,OEY,Oëy,Oëy 33,1973-01-01,COM,55390,1,OEY,Oëy,Oëy,COM,55358,0,CHANTERAINE,Chanteraine,Chanteraine -33,1973-01-01,COM,55393,1,ORNEL,Ornel,Ornel,COMA,55393,1,ORNEL,Ornel,Ornel +33,1973-01-01,COM,55390,1,OEY,Oëy,Oëy,COMA,55390,1,OEY,Oëy,Oëy 33,1973-01-01,COM,55393,1,ORNEL,Ornel,Ornel,COM,55191,0,FOAMEIX ORNEL,Foameix-Ornel,Foameix-Ornel +33,1973-01-01,COM,55393,1,ORNEL,Ornel,Ornel,COMA,55393,1,ORNEL,Ornel,Ornel 33,1973-01-01,COM,55395,1,OSCHES,Osches,Osches,COM,55286,4,QUATRE VENTS,Quatre-Vents,Les Quatre-Vents 33,1973-01-01,COM,55395,1,OSCHES,Osches,Osches,COMA,55395,1,OSCHES,Osches,Osches 33,1973-01-01,COM,55409,0,PRETZ,Pretz,Pretz,COMA,55409,0,PRETZ,Pretz,Pretz 33,1973-01-01,COM,55409,0,PRETZ,Pretz,Pretz,COM,55517,0,SEUIL D ARGONNE,Seuil-d'Argonne,Seuil-d'Argonne 33,1973-01-01,COM,55419,0,RECICOURT,Récicourt,Récicourt,COM,55419,0,RECICOURT,Récicourt,Récicourt 33,1973-01-01,COM,55423,0,REMBERCOURT AUX POTS,Rembercourt-aux-Pots,Rembercourt-aux-Pots,COM,55423,0,REMBERCOURT SOMMAISNE,Rembercourt-Sommaisne,Rembercourt-Sommaisne -33,1973-01-01,COM,55432,0,RIGNAUCOURT,Rignaucourt,Rignaucourt,COMA,55432,0,RIGNAUCOURT,Rignaucourt,Rignaucourt 33,1973-01-01,COM,55432,0,RIGNAUCOURT,Rignaucourt,Rignaucourt,COM,55254,4,TROIS DOMAINES,Trois-Domaines,Les Trois-Domaines -33,1973-01-01,COM,55440,0,ROSIERES DEVANT BAR,Rosières-devant-Bar,Rosières-devant-Bar,COMA,55440,0,ROSIERES DEVANT BAR,Rosières-devant-Bar,Rosières-devant-Bar +33,1973-01-01,COM,55432,0,RIGNAUCOURT,Rignaucourt,Rignaucourt,COMA,55432,0,RIGNAUCOURT,Rignaucourt,Rignaucourt 33,1973-01-01,COM,55440,0,ROSIERES DEVANT BAR,Rosières-devant-Bar,Rosières-devant-Bar,COM,55369,0,NAIVES ROSIERES,Naives-Rosières,Naives-Rosières +33,1973-01-01,COM,55440,0,ROSIERES DEVANT BAR,Rosières-devant-Bar,Rosières-devant-Bar,COMA,55440,0,ROSIERES DEVANT BAR,Rosières-devant-Bar,Rosières-devant-Bar 33,1973-01-01,COM,55441,0,ROSIERES EN BLOIS,Rosières-en-Blois,Rosières-en-Blois,COM,55148,0,DELOUZE ROSIERES,Delouze-Rosières,Delouze-Rosières 33,1973-01-01,COM,55441,0,ROSIERES EN BLOIS,Rosières-en-Blois,Rosières-en-Blois,COMA,55441,0,ROSIERES EN BLOIS,Rosières-en-Blois,Rosières-en-Blois 33,1973-01-01,COM,55442,0,ROSNES,Rosnes,Rosnes,COM,55442,0,RAIVAL,Raival,Raival -33,1973-01-01,COM,55448,0,RUPT DEVANT SAINT MIHIEL,Rupt-devant-Saint-Mihiel,Rupt-devant-Saint-Mihiel,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire 33,1973-01-01,COM,55448,0,RUPT DEVANT SAINT MIHIEL,Rupt-devant-Saint-Mihiel,Rupt-devant-Saint-Mihiel,COMA,55448,0,RUPT DEVANT SAINT MIHIEL,Rupt-devant-Saint-Mihiel,Rupt-devant-Saint-Mihiel -33,1973-01-01,COM,55451,0,SAINT AGNANT SOUS LES COTES,Saint-Agnant-sous-les-Côtes,Saint-Agnant-sous-les-Côtes,COMA,55451,0,SAINT AGNANT SOUS LES COTES,Saint-Agnant-sous-les-Côtes,Saint-Agnant-sous-les-Côtes +33,1973-01-01,COM,55448,0,RUPT DEVANT SAINT MIHIEL,Rupt-devant-Saint-Mihiel,Rupt-devant-Saint-Mihiel,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire 33,1973-01-01,COM,55451,0,SAINT AGNANT SOUS LES COTES,Saint-Agnant-sous-les-Côtes,Saint-Agnant-sous-les-Côtes,COM,55012,1,APREMONT LA FORET,Apremont-la-Forêt,Apremont-la-Forêt +33,1973-01-01,COM,55451,0,SAINT AGNANT SOUS LES COTES,Saint-Agnant-sous-les-Côtes,Saint-Agnant-sous-les-Côtes,COMA,55451,0,SAINT AGNANT SOUS LES COTES,Saint-Agnant-sous-les-Côtes,Saint-Agnant-sous-les-Côtes 33,1973-01-01,COM,55457,0,SAINT HILAIRE EN WOEVRE,Saint-Hilaire-en-Woëvre,Saint-Hilaire-en-Woëvre,COM,55457,0,SAINT HILAIRE EN WOEVRE,Saint-Hilaire-en-Woëvre,Saint-Hilaire-en-Woëvre 33,1973-01-01,COM,55472,0,SAULX EN BARROIS,Saulx-en-Barrois,Saulx-en-Barrois,COM,55472,0,SAULVAUX,Saulvaux,Saulvaux 33,1973-01-01,COM,55473,0,SAULX EN WOEVRE,Saulx-en-Woëvre,Saulx-en-Woëvre,COM,55473,0,SAULX LES CHAMPLON,Saulx-lès-Champlon,Saulx-lès-Champlon -33,1973-01-01,COM,55478,0,SAVONNIERES EN WOEVRE,Savonnières-en-Woëvre,Savonnières-en-Woëvre,COM,55530,0,VALBOIS,Valbois,Valbois 33,1973-01-01,COM,55478,0,SAVONNIERES EN WOEVRE,Savonnières-en-Woëvre,Savonnières-en-Woëvre,COMA,55478,0,SAVONNIERES EN WOEVRE,Savonnières-en-Woëvre,Savonnières-en-Woëvre +33,1973-01-01,COM,55478,0,SAVONNIERES EN WOEVRE,Savonnières-en-Woëvre,Savonnières-en-Woëvre,COM,55530,0,VALBOIS,Valbois,Valbois 33,1973-01-01,COM,55480,0,SENARD,Senard,Senard,COMA,55480,0,SENARD,Senard,Senard 33,1973-01-01,COM,55480,0,SENARD,Senard,Senard,COM,55517,0,SEUIL D ARGONNE,Seuil-d'Argonne,Seuil-d'Argonne -33,1973-01-01,COM,55482,0,SENONCOURT LES MAUJOUY,Senoncourt-les-Maujouy,Senoncourt-les-Maujouy,COMA,55482,0,SENONCOURT LES MAUJOUY,Senoncourt-les-Maujouy,Senoncourt-les-Maujouy 33,1973-01-01,COM,55482,0,SENONCOURT LES MAUJOUY,Senoncourt-les-Maujouy,Senoncourt-les-Maujouy,COM,55286,4,QUATRE VENTS,Quatre-Vents,Les Quatre-Vents +33,1973-01-01,COM,55482,0,SENONCOURT LES MAUJOUY,Senoncourt-les-Maujouy,Senoncourt-les-Maujouy,COMA,55482,0,SENONCOURT LES MAUJOUY,Senoncourt-les-Maujouy,Senoncourt-les-Maujouy 33,1973-01-01,COM,55483,0,SENONVILLE,Senonville,Senonville,COMA,55483,0,SENONVILLE,Senonville,Senonville 33,1973-01-01,COM,55483,0,SENONVILLE,Senonville,Senonville,COM,55530,0,VALBOIS,Valbois,Valbois 33,1973-01-01,COM,55486,0,SERAUCOURT,Seraucourt,Seraucourt,COM,55040,0,BEAUSITE,Beausite,Beausite 33,1973-01-01,COM,55486,0,SERAUCOURT,Seraucourt,Seraucourt,COMA,55486,0,SERAUCOURT,Seraucourt,Seraucourt 33,1973-01-01,COM,55491,0,SOMMAISNE,Sommaisne,Sommaisne,COM,55423,0,REMBERCOURT SOMMAISNE,Rembercourt-Sommaisne,Rembercourt-Sommaisne 33,1973-01-01,COM,55491,0,SOMMAISNE,Sommaisne,Sommaisne,COMA,55491,0,SOMMAISNE,Sommaisne,Sommaisne -33,1973-01-01,COM,55499,0,SPADA,Spada,Spada,COMA,55499,0,SPADA,Spada,Spada 33,1973-01-01,COM,55499,0,SPADA,Spada,Spada,COM,55274,0,LAMORVILLE,Lamorville,Lamorville +33,1973-01-01,COM,55499,0,SPADA,Spada,Spada,COMA,55499,0,SPADA,Spada,Spada 33,1973-01-01,COM,55513,0,TOURAILLES SOUS BOIS,Tourailles-sous-Bois,Tourailles-sous-Bois,COM,55215,0,GONDRECOURT LE CHATEAU,Gondrecourt-le-Château,Gondrecourt-le-Château 33,1973-01-01,COM,55513,0,TOURAILLES SOUS BOIS,Tourailles-sous-Bois,Tourailles-sous-Bois,COMA,55513,0,TOURAILLES SOUS BOIS,Tourailles-sous-Bois,Tourailles-sous-Bois 33,1973-01-01,COM,55517,0,TRIAUCOURT EN ARGONNE,Triaucourt-en-Argonne,Triaucourt-en-Argonne,COM,55517,0,SEUIL D ARGONNE,Seuil-d'Argonne,Seuil-d'Argonne 33,1973-01-01,COM,55518,0,TRICONVILLE,Triconville,Triconville,COM,55518,0,COUSANCES LES TRICONVILLE,Cousances-lès-Triconville,Cousances-lès-Triconville -33,1973-01-01,COM,55525,0,VADELAINCOURT,Vadelaincourt,Vadelaincourt,COMA,55525,0,VADELAINCOURT,Vadelaincourt,Vadelaincourt 33,1973-01-01,COM,55525,0,VADELAINCOURT,Vadelaincourt,Vadelaincourt,COM,55286,4,QUATRE VENTS,Quatre-Vents,Les Quatre-Vents +33,1973-01-01,COM,55525,0,VADELAINCOURT,Vadelaincourt,Vadelaincourt,COMA,55525,0,VADELAINCOURT,Vadelaincourt,Vadelaincourt 33,1973-01-01,COM,55529,0,VARNEY,Varney,Varney,COM,55366,0,VAL D ORNAIN,Val-d'Ornain,Val-d'Ornain 33,1973-01-01,COM,55529,0,VARNEY,Varney,Varney,COMA,55529,0,VARNEY,Varney,Varney 33,1973-01-01,COM,55530,0,VARVINAY,Varvinay,Varvinay,COM,55530,0,VALBOIS,Valbois,Valbois 33,1973-01-01,COM,55535,0,VAUDONCOURT,Vaudoncourt,Vaudoncourt,COM,55535,4,TILLEULS VAUDONCOURT,Tilleuls-Vaudoncourt,Les Tilleuls-Vaudoncourt -33,1973-01-01,COM,55538,0,VAUX LA GRANDE,Vaux-la-Grande,Vaux-la-Grande,COMA,55538,0,VAUX LA GRANDE,Vaux-la-Grande,Vaux-la-Grande 33,1973-01-01,COM,55538,0,VAUX LA GRANDE,Vaux-la-Grande,Vaux-la-Grande,COM,55472,0,SAULVAUX,Saulvaux,Saulvaux -33,1973-01-01,COM,55539,0,VAUX LA PETITE,Vaux-la-Petite,Vaux-la-Petite,COMA,55539,0,VAUX LA PETITE,Vaux-la-Petite,Vaux-la-Petite +33,1973-01-01,COM,55538,0,VAUX LA GRANDE,Vaux-la-Grande,Vaux-la-Grande,COMA,55538,0,VAUX LA GRANDE,Vaux-la-Grande,Vaux-la-Grande 33,1973-01-01,COM,55539,0,VAUX LA PETITE,Vaux-la-Petite,Vaux-la-Petite,COM,55472,0,SAULVAUX,Saulvaux,Saulvaux +33,1973-01-01,COM,55539,0,VAUX LA PETITE,Vaux-la-Petite,Vaux-la-Petite,COMA,55539,0,VAUX LA PETITE,Vaux-la-Petite,Vaux-la-Petite 33,1973-01-01,COM,55542,0,VEEL,Véel,Véel,COM,55186,0,FAINS VEEL,Fains-Véel,Fains-Véel 33,1973-01-01,COM,55542,0,VEEL,Véel,Véel,COMA,55542,0,VEEL,Véel,Véel 33,1973-01-01,COM,55548,0,VERTUZEY,Vertuzey,Vertuzey,COM,55184,1,EUVILLE,Euville,Euville @@ -10223,8 +10035,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,55555,0,VILLE DEVANT BELRAIN,Ville-devant-Belrain,Ville-devant-Belrain,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire 33,1973-01-01,COM,55558,0,VILLE ISSEY,Ville-Issey,Ville-Issey,COM,55184,1,EUVILLE,Euville,Euville 33,1973-01-01,COM,55558,0,VILLE ISSEY,Ville-Issey,Ville-Issey,COMA,55558,0,VILLE ISSEY,Ville-Issey,Ville-Issey -33,1973-01-01,COM,55560,0,VILLERS AUX VENTS,Villers-aux-Vents,Villers-aux-Vents,COMA,55560,0,VILLERS AUX VENTS,Villers-aux-Vents,Villers-aux-Vents 33,1973-01-01,COM,55560,0,VILLERS AUX VENTS,Villers-aux-Vents,Villers-aux-Vents,COM,55069,0,BRABANT LES VILLERS,Brabant-lès-Villers,Brabant-lès-Villers +33,1973-01-01,COM,55560,0,VILLERS AUX VENTS,Villers-aux-Vents,Villers-aux-Vents,COMA,55560,0,VILLERS AUX VENTS,Villers-aux-Vents,Villers-aux-Vents 33,1973-01-01,COM,55569,0,VILLOTTE DEVANT LOUPPY,Villotte-devant-Louppy,Villotte-devant-Louppy,COM,55569,0,VILISLE,Vilisle,Vilisle 33,1973-01-01,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire,COM,55570,0,VILLOTTE SUR AIRE,Villotte-sur-Aire,Villotte-sur-Aire 33,1973-01-01,COM,55571,0,VILOSNES,Vilosnes,Vilosnes,COM,55571,0,VILOSNES HARAUMONT,Vilosnes-Haraumont,Vilosnes-Haraumont @@ -10234,104 +10046,104 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,55580,0,WAVRILLE,Wavrille,Wavrille,COMA,55580,0,WAVRILLE,Wavrille,Wavrille 33,1973-01-01,COM,55585,0,WOINVILLE,Woinville,Woinville,COM,55093,0,BUXIERES SOUS LES COTES,Buxières-sous-les-Côtes,Buxières-sous-les-Côtes 33,1973-01-01,COM,55585,0,WOINVILLE,Woinville,Woinville,COMA,55585,0,WOINVILLE,Woinville,Woinville -33,1973-01-01,COM,57069,0,BERVILLER EN MOSELLE,Berviller-en-Moselle,Berviller-en-Moselle,COM,57460,0,MERTEN,Merten,Merten 33,1973-01-01,COM,57069,0,BERVILLER EN MOSELLE,Berviller-en-Moselle,Berviller-en-Moselle,COMA,57069,0,BERVILLER EN MOSELLE,Berviller-en-Moselle,Berviller-en-Moselle +33,1973-01-01,COM,57069,0,BERVILLER EN MOSELLE,Berviller-en-Moselle,Berviller-en-Moselle,COM,57460,0,MERTEN,Merten,Merten 33,1973-01-01,COM,57097,0,BOULAY MOSELLE,Boulay-Moselle,Boulay-Moselle,COM,57097,0,BOULAY MOSELLE,Boulay-Moselle,Boulay-Moselle 33,1973-01-01,COM,57155,0,COURCELLES CHAUSSY,Courcelles-Chaussy,Courcelles-Chaussy,COM,57155,0,COURCELLES CHAUSSY,Courcelles-Chaussy,Courcelles-Chaussy -33,1973-01-01,COM,57285,1,HALLING LES BOULAY,Halling-lès-Boulay,Halling-lès-Boulay,COMA,57285,1,HALLING LES BOULAY,Halling-lès-Boulay,Halling-lès-Boulay 33,1973-01-01,COM,57285,1,HALLING LES BOULAY,Halling-lès-Boulay,Halling-lès-Boulay,COM,57097,0,BOULAY MOSELLE,Boulay-Moselle,Boulay-Moselle -33,1973-01-01,COM,57378,0,LANDONVILLERS,Landonvillers,Landonvillers,COMA,57378,0,LANDONVILLERS,Landonvillers,Landonvillers +33,1973-01-01,COM,57285,1,HALLING LES BOULAY,Halling-lès-Boulay,Halling-lès-Boulay,COMA,57285,1,HALLING LES BOULAY,Halling-lès-Boulay,Halling-lès-Boulay 33,1973-01-01,COM,57378,0,LANDONVILLERS,Landonvillers,Landonvillers,COM,57155,0,COURCELLES CHAUSSY,Courcelles-Chaussy,Courcelles-Chaussy +33,1973-01-01,COM,57378,0,LANDONVILLERS,Landonvillers,Landonvillers,COMA,57378,0,LANDONVILLERS,Landonvillers,Landonvillers 33,1973-01-01,COM,57460,0,MERTEN,Merten,Merten,COM,57460,0,MERTEN,Merten,Merten 33,1973-01-01,COM,57570,0,REMERING LES HARGARTEN,Rémering-lès-Hargarten,Rémering-lès-Hargarten,COM,57460,0,MERTEN,Merten,Merten 33,1973-01-01,COM,57570,0,REMERING LES HARGARTEN,Rémering-lès-Hargarten,Rémering-lès-Hargarten,COMA,57570,0,REMERING LES HARGARTEN,Rémering-lès-Hargarten,Rémering-lès-Hargarten 33,1973-01-01,COM,58086,0,COSNE SUR LOIRE,Cosne-sur-Loire,Cosne-sur-Loire,COM,58086,0,COSNE COURS SUR LOIRE,Cosne-Cours-sur-Loire,Cosne-Cours-sur-Loire -33,1973-01-01,COM,58091,0,COURS,Cours,Cours,COMA,58091,0,COURS,Cours,Cours 33,1973-01-01,COM,58091,0,COURS,Cours,Cours,COM,58086,0,COSNE COURS SUR LOIRE,Cosne-Cours-sur-Loire,Cosne-Cours-sur-Loire -33,1973-01-01,COM,59287,1,HAUCOURT EN CAMBRESIS,Haucourt-en-Cambrésis,Haucourt-en-Cambrésis,COM,59349,0,LIGNY HAUCOURT,Ligny-Haucourt,Ligny-Haucourt +33,1973-01-01,COM,58091,0,COURS,Cours,Cours,COMA,58091,0,COURS,Cours,Cours 33,1973-01-01,COM,59287,1,HAUCOURT EN CAMBRESIS,Haucourt-en-Cambrésis,Haucourt-en-Cambrésis,COMA,59287,1,HAUCOURT EN CAMBRESIS,Haucourt-en-Cambrésis,Haucourt-en-Cambrésis +33,1973-01-01,COM,59287,1,HAUCOURT EN CAMBRESIS,Haucourt-en-Cambrésis,Haucourt-en-Cambrésis,COM,59349,0,LIGNY HAUCOURT,Ligny-Haucourt,Ligny-Haucourt 33,1973-01-01,COM,59349,0,LIGNY EN CAMBRESIS,Ligny-en-Cambrésis,Ligny-en-Cambrésis,COM,59349,0,LIGNY HAUCOURT,Ligny-Haucourt,Ligny-Haucourt 33,1973-01-01,COM,59561,0,SELVIGNY,Selvigny,Selvigny,COMA,59561,0,SELVIGNY,Selvigny,Selvigny 33,1973-01-01,COM,59561,0,SELVIGNY,Selvigny,Selvigny,COM,59631,0,WALINCOURT SELVIGNY,Walincourt-Selvigny,Walincourt-Selvigny 33,1973-01-01,COM,59631,0,WALINCOURT,Walincourt,Walincourt,COM,59631,0,WALINCOURT SELVIGNY,Walincourt-Selvigny,Walincourt-Selvigny -33,1973-01-01,COM,60202,0,DRESLINCOURT,Dreslincourt,Dreslincourt,COM,60537,0,RIBECOURT DRESLINCOURT,Ribécourt-Dreslincourt,Ribécourt-Dreslincourt 33,1973-01-01,COM,60202,0,DRESLINCOURT,Dreslincourt,Dreslincourt,COMA,60202,0,DRESLINCOURT,Dreslincourt,Dreslincourt +33,1973-01-01,COM,60202,0,DRESLINCOURT,Dreslincourt,Dreslincourt,COM,60537,0,RIBECOURT DRESLINCOURT,Ribécourt-Dreslincourt,Ribécourt-Dreslincourt 33,1973-01-01,COM,60537,0,RIBECOURT,Ribécourt,Ribécourt,COM,60537,0,RIBECOURT DRESLINCOURT,Ribécourt-Dreslincourt,Ribécourt-Dreslincourt -33,1973-01-01,COM,60607,0,SAUQUEUSE SAINT LUCIEN,Sauqueuse-Saint-Lucien,Sauqueuse-Saint-Lucien,COM,60668,0,VERDEREL LES SAUQUEUSE,Verderel-lès-Sauqueuse,Verderel-lès-Sauqueuse 33,1973-01-01,COM,60607,0,SAUQUEUSE SAINT LUCIEN,Sauqueuse-Saint-Lucien,Sauqueuse-Saint-Lucien,COMA,60607,0,SAUQUEUSE SAINT LUCIEN,Sauqueuse-Saint-Lucien,Sauqueuse-Saint-Lucien +33,1973-01-01,COM,60607,0,SAUQUEUSE SAINT LUCIEN,Sauqueuse-Saint-Lucien,Sauqueuse-Saint-Lucien,COM,60668,0,VERDEREL LES SAUQUEUSE,Verderel-lès-Sauqueuse,Verderel-lès-Sauqueuse 33,1973-01-01,COM,60668,0,VERDEREL,Verderel,Verderel,COM,60668,0,VERDEREL LES SAUQUEUSE,Verderel-lès-Sauqueuse,Verderel-lès-Sauqueuse 33,1973-01-01,COM,63103,0,CHATELGUYON,Châtelguyon,Châtelguyon,COM,63103,0,CHATELGUYON,Châtelguyon,Châtelguyon 33,1973-01-01,COM,63361,0,SAINT HIPPOLYTE,Saint-Hippolyte,Saint-Hippolyte,COM,63103,0,CHATELGUYON,Châtelguyon,Châtelguyon 33,1973-01-01,COM,63361,0,SAINT HIPPOLYTE,Saint-Hippolyte,Saint-Hippolyte,COMA,63361,0,SAINT HIPPOLYTE,Saint-Hippolyte,Saint-Hippolyte 33,1973-01-01,COM,64031,1,ARANCOU,Arancou,Arancou,COMA,64031,1,ARANCOU,Arancou,Arancou 33,1973-01-01,COM,64031,1,ARANCOU,Arancou,Arancou,COM,64113,0,BERGOUEY ARANCOU VIELLENAVE,Bergouey-Arancou-Viellenave,Bergouey-Arancou-Viellenave -33,1973-01-01,COM,64055,1,ARROS D OLORON,Arros-d'Oloron,Arros-d'Oloron,COM,64064,1,ASASP ARROS,Asasp-Arros,Asasp-Arros 33,1973-01-01,COM,64055,1,ARROS D OLORON,Arros-d'Oloron,Arros-d'Oloron,COMA,64055,1,ARROS D OLORON,Arros-d'Oloron,Arros-d'Oloron +33,1973-01-01,COM,64055,1,ARROS D OLORON,Arros-d'Oloron,Arros-d'Oloron,COM,64064,1,ASASP ARROS,Asasp-Arros,Asasp-Arros 33,1973-01-01,COM,64064,1,ASASP,Asasp,Asasp,COM,64064,1,ASASP ARROS,Asasp-Arros,Asasp-Arros 33,1973-01-01,COM,64108,0,BELLOCQ,Bellocq,Bellocq,COMA,64108,0,BELLOCQ,Bellocq,Bellocq 33,1973-01-01,COM,64108,0,BELLOCQ,Bellocq,Bellocq,COM,64461,0,PUYO BELLOCQ RAMOUS,Puyo-Bellocq-Ramous,Puyo-Bellocq-Ramous 33,1973-01-01,COM,64113,0,BERGOUEY,Bergouey,Bergouey,COM,64113,0,BERGOUEY ARANCOU VIELLENAVE,Bergouey-Arancou-Viellenave,Bergouey-Arancou-Viellenave -33,1973-01-01,COM,64145,0,BOURDETTES,Bourdettes,Bourdettes,COM,64417,0,NAY BOURDETTES,Nay-Bourdettes,Nay-Bourdettes 33,1973-01-01,COM,64145,0,BOURDETTES,Bourdettes,Bourdettes,COMA,64145,0,BOURDETTES,Bourdettes,Bourdettes +33,1973-01-01,COM,64145,0,BOURDETTES,Bourdettes,Bourdettes,COM,64417,0,NAY BOURDETTES,Nay-Bourdettes,Nay-Bourdettes 33,1973-01-01,COM,64148,0,BRUGES,Bruges,Bruges,COM,64148,0,BRUGES CAPBIS MIFAGET,Bruges-Capbis-Mifaget,Bruges-Capbis-Mifaget -33,1973-01-01,COM,64164,0,CAPBIS,Capbis,Capbis,COMA,64164,0,CAPBIS,Capbis,Capbis 33,1973-01-01,COM,64164,0,CAPBIS,Capbis,Capbis,COM,64148,0,BRUGES CAPBIS MIFAGET,Bruges-Capbis-Mifaget,Bruges-Capbis-Mifaget +33,1973-01-01,COM,64164,0,CAPBIS,Capbis,Capbis,COMA,64164,0,CAPBIS,Capbis,Capbis 33,1973-01-01,COM,64168,0,CARRESSE,Carresse,Carresse,COM,64168,0,CARRESSE CASSABER,Carresse-Cassaber,Carresse-Cassaber -33,1973-01-01,COM,64169,0,CASSABER,Cassaber,Cassaber,COMA,64169,0,CASSABER,Cassaber,Cassaber 33,1973-01-01,COM,64169,0,CASSABER,Cassaber,Cassaber,COM,64168,0,CARRESSE CASSABER,Carresse-Cassaber,Carresse-Cassaber -33,1973-01-01,COM,64179,0,CASTETNER,Castetner,Castetner,COM,64367,0,MASLACQ,Maslacq,Maslacq +33,1973-01-01,COM,64169,0,CASSABER,Cassaber,Cassaber,COMA,64169,0,CASSABER,Cassaber,Cassaber 33,1973-01-01,COM,64179,0,CASTETNER,Castetner,Castetner,COMA,64179,0,CASTETNER,Castetner,Castetner +33,1973-01-01,COM,64179,0,CASTETNER,Castetner,Castetner,COM,64367,0,MASLACQ,Maslacq,Maslacq 33,1973-01-01,COM,64269,1,IDRON,Idron,Idron,COM,64269,1,IDRON LEE OUSSE SENDETS,Idron-Lée-Ousse-Sendets,Idron-Lée-Ousse-Sendets -33,1973-01-01,COM,64329,0,LEE,Lée,Lée,COMA,64329,0,LEE,Lée,Lée 33,1973-01-01,COM,64329,0,LEE,Lée,Lée,COM,64269,1,IDRON LEE OUSSE SENDETS,Idron-Lée-Ousse-Sendets,Idron-Lée-Ousse-Sendets -33,1973-01-01,COM,64349,0,LOUBIENG,Loubieng,Loubieng,COM,64367,0,MASLACQ,Maslacq,Maslacq +33,1973-01-01,COM,64329,0,LEE,Lée,Lée,COMA,64329,0,LEE,Lée,Lée 33,1973-01-01,COM,64349,0,LOUBIENG,Loubieng,Loubieng,COMA,64349,0,LOUBIENG,Loubieng,Loubieng +33,1973-01-01,COM,64349,0,LOUBIENG,Loubieng,Loubieng,COM,64367,0,MASLACQ,Maslacq,Maslacq 33,1973-01-01,COM,64367,0,MASLACQ,Maslacq,Maslacq,COM,64367,0,MASLACQ,Maslacq,Maslacq -33,1973-01-01,COM,64384,0,MIFAGET,Mifaget,Mifaget,COMA,64384,0,MIFAGET,Mifaget,Mifaget 33,1973-01-01,COM,64384,0,MIFAGET,Mifaget,Mifaget,COM,64148,0,BRUGES CAPBIS MIFAGET,Bruges-Capbis-Mifaget,Bruges-Capbis-Mifaget -33,1973-01-01,COM,64402,0,MONTESTRUCQ,Montestrucq,Montestrucq,COM,64440,1,OZENX,Ozenx,Ozenx +33,1973-01-01,COM,64384,0,MIFAGET,Mifaget,Mifaget,COMA,64384,0,MIFAGET,Mifaget,Mifaget 33,1973-01-01,COM,64402,0,MONTESTRUCQ,Montestrucq,Montestrucq,COMA,64402,0,MONTESTRUCQ,Montestrucq,Montestrucq +33,1973-01-01,COM,64402,0,MONTESTRUCQ,Montestrucq,Montestrucq,COM,64440,1,OZENX,Ozenx,Ozenx 33,1973-01-01,COM,64417,0,NAY,Nay,Nay,COM,64417,0,NAY BOURDETTES,Nay-Bourdettes,Nay-Bourdettes 33,1973-01-01,COM,64430,1,ORTHEZ,Orthez,Orthez,COM,64430,1,ORTHEZ,Orthez,Orthez -33,1973-01-01,COM,64439,1,OUSSE,Ousse,Ousse,COMA,64439,1,OUSSE,Ousse,Ousse 33,1973-01-01,COM,64439,1,OUSSE,Ousse,Ousse,COM,64269,1,IDRON LEE OUSSE SENDETS,Idron-Lée-Ousse-Sendets,Idron-Lée-Ousse-Sendets -33,1973-01-01,COM,64440,0,OZENX,Ozenx,Ozenx,COM,64440,1,OZENX,Ozenx,Ozenx +33,1973-01-01,COM,64439,1,OUSSE,Ousse,Ousse,COMA,64439,1,OUSSE,Ousse,Ousse +33,1973-01-01,COM,64440,1,OZENX,Ozenx,Ozenx,COM,64440,1,OZENX,Ozenx,Ozenx 33,1973-01-01,COM,64461,0,PUYOO,Puyoô,Puyoô,COM,64461,0,PUYO BELLOCQ RAMOUS,Puyo-Bellocq-Ramous,Puyo-Bellocq-Ramous 33,1973-01-01,COM,64462,0,RAMOUS,Ramous,Ramous,COM,64461,0,PUYO BELLOCQ RAMOUS,Puyo-Bellocq-Ramous,Puyo-Bellocq-Ramous 33,1973-01-01,COM,64462,0,RAMOUS,Ramous,Ramous,COMA,64462,0,RAMOUS,Ramous,Ramous -33,1973-01-01,COM,64497,0,SAINTE SUZANNE,Sainte-Suzanne,Sainte-Suzanne,COMA,64497,0,SAINTE SUZANNE,Sainte-Suzanne,Sainte-Suzanne 33,1973-01-01,COM,64497,0,SAINTE SUZANNE,Sainte-Suzanne,Sainte-Suzanne,COM,64430,1,ORTHEZ,Orthez,Orthez +33,1973-01-01,COM,64497,0,SAINTE SUZANNE,Sainte-Suzanne,Sainte-Suzanne,COMA,64497,0,SAINTE SUZANNE,Sainte-Suzanne,Sainte-Suzanne 33,1973-01-01,COM,64518,0,SENDETS,Sendets,Sendets,COM,64269,1,IDRON LEE OUSSE SENDETS,Idron-Lée-Ousse-Sendets,Idron-Lée-Ousse-Sendets 33,1973-01-01,COM,64518,0,SENDETS,Sendets,Sendets,COMA,64518,0,SENDETS,Sendets,Sendets -33,1973-01-01,COM,64553,0,VIELLENAVE SUR BIDOUZE,Viellenave-sur-Bidouze,Viellenave-sur-Bidouze,COMA,64553,0,VIELLENAVE SUR BIDOUZE,Viellenave-sur-Bidouze,Viellenave-sur-Bidouze 33,1973-01-01,COM,64553,0,VIELLENAVE SUR BIDOUZE,Viellenave-sur-Bidouze,Viellenave-sur-Bidouze,COM,64113,0,BERGOUEY ARANCOU VIELLENAVE,Bergouey-Arancou-Viellenave,Bergouey-Arancou-Viellenave +33,1973-01-01,COM,64553,0,VIELLENAVE SUR BIDOUZE,Viellenave-sur-Bidouze,Viellenave-sur-Bidouze,COMA,64553,0,VIELLENAVE SUR BIDOUZE,Viellenave-sur-Bidouze,Viellenave-sur-Bidouze 31,1973-01-01,COM,65032,1,ARRENS,Arrens,Arrens,COM,65032,1,ARRENS MARSOUS,Arrens-Marsous,Arrens-Marsous 33,1973-01-01,COM,65054,1,AVEZAC PRAT,Avezac-Prat,Avezac-Prat,COM,65054,1,AVEZAC PRAT LAHITTE,Avezac-Prat-Lahitte,Avezac-Prat-Lahitte 33,1973-01-01,COM,65099,0,BORDERES LOURON,Bordères-Louron,Bordères-Louron,COM,65099,0,BORDERES LOURON,Bordères-Louron,Bordères-Louron -33,1973-01-01,COM,65227,1,ILHAN,Ilhan,Ilhan,COMA,65227,1,ILHAN,Ilhan,Ilhan 33,1973-01-01,COM,65227,1,ILHAN,Ilhan,Ilhan,COM,65099,0,BORDERES LOURON,Bordères-Louron,Bordères-Louron +33,1973-01-01,COM,65227,1,ILHAN,Ilhan,Ilhan,COMA,65227,1,ILHAN,Ilhan,Ilhan 33,1973-01-01,COM,65246,0,LAHITTE,Lahitte,Lahitte,COM,65054,1,AVEZAC PRAT LAHITTE,Avezac-Prat-Lahitte,Avezac-Prat-Lahitte 33,1973-01-01,COM,65246,0,LAHITTE,Lahitte,Lahitte,COMA,65246,0,LAHITTE,Lahitte,Lahitte 31,1973-01-01,COM,65302,0,MARSOUS,Marsous,Marsous,COM,65032,1,ARRENS MARSOUS,Arrens-Marsous,Arrens-Marsous -33,1973-01-01,COM,67064,0,BREMMELBACH,Bremmelbach,Bremmelbach,COM,67074,0,CLEEBOURG,Cleebourg,Cleebourg 33,1973-01-01,COM,67064,0,BREMMELBACH,Bremmelbach,Bremmelbach,COMA,67064,0,BREMMELBACH,Bremmelbach,Bremmelbach +33,1973-01-01,COM,67064,0,BREMMELBACH,Bremmelbach,Bremmelbach,COM,67074,0,CLEEBOURG,Cleebourg,Cleebourg 33,1973-01-01,COM,67074,0,CLEEBOURG,Cleebourg,Cleebourg,COM,67074,0,CLEEBOURG,Cleebourg,Cleebourg -33,1973-01-01,COM,67160,0,GOERSDORF,Gœrsdorf,Gœrsdorf,COM,67160,0,GOERSDORF,Gœrsdorf,Gœrsdorf -31,1973-01-01,COM,67228,0,ITTLENHEIM,Ittlenheim,Ittlenheim,COM,67228,0,NEUGARTHEIM ITTLENHEIM,Neugartheim-Ittlenheim,Neugartheim-Ittlenheim -33,1973-01-01,COM,67294,0,MITSCHDORF,Mitschdorf,Mitschdorf,COM,67160,0,GOERSDORF,Gœrsdorf,Gœrsdorf +33,1973-01-01,COM,67160,0,GORSDORF,Gœrsdorf,Gœrsdorf,COM,67160,0,GORSDORF,Gœrsdorf,Gœrsdorf +31,1973-01-01,COM,67228,1,ITTLENHEIM,Ittlenheim,Ittlenheim,COM,67228,0,NEUGARTHEIM ITTLENHEIM,Neugartheim-Ittlenheim,Neugartheim-Ittlenheim +33,1973-01-01,COM,67294,0,MITSCHDORF,Mitschdorf,Mitschdorf,COM,67160,0,GORSDORF,Gœrsdorf,Gœrsdorf 33,1973-01-01,COM,67294,0,MITSCHDORF,Mitschdorf,Mitschdorf,COMA,67294,0,MITSCHDORF,Mitschdorf,Mitschdorf 31,1973-01-01,COM,67318,0,NEUGARTHEIM,Neugartheim,Neugartheim,COM,67228,0,NEUGARTHEIM ITTLENHEIM,Neugartheim-Ittlenheim,Neugartheim-Ittlenheim 33,1973-01-01,COM,67530,0,WICKERSHEIM,Wickersheim,Wickersheim,COM,67530,0,WICKERSHEIM WILSHAUSEN,Wickersheim-Wilshausen,Wickersheim-Wilshausen 33,1973-01-01,COM,67533,0,WILSHAUSEN,Wilshausen,Wilshausen,COM,67530,0,WICKERSHEIM WILSHAUSEN,Wickersheim-Wilshausen,Wickersheim-Wilshausen 33,1973-01-01,COM,67533,0,WILSHAUSEN,Wilshausen,Wilshausen,COMA,67533,0,WILSHAUSEN,Wilshausen,Wilshausen -33,1973-01-01,COM,68003,1,ALTENBACH,Altenbach,Altenbach,COM,68106,0,GOLDBACH ALTENBACH,Goldbach-Altenbach,Goldbach-Altenbach 33,1973-01-01,COM,68003,1,ALTENBACH,Altenbach,Altenbach,COMA,68003,1,ALTENBACH,Altenbach,Altenbach +33,1973-01-01,COM,68003,1,ALTENBACH,Altenbach,Altenbach,COM,68106,0,GOLDBACH ALTENBACH,Goldbach-Altenbach,Goldbach-Altenbach 33,1973-01-01,COM,68106,0,GOLDBACH,Goldbach,Goldbach,COM,68106,0,GOLDBACH ALTENBACH,Goldbach-Altenbach,Goldbach-Altenbach 33,1973-01-01,COM,68145,1,HORBOURG,Horbourg,Horbourg,COM,68145,0,HORBOURG WIHR,Horbourg-Wihr,Horbourg-Wihr 31,1973-01-01,COM,68192,0,LUTRAN,Lutran,Lutran,COM,68192,0,VALDIEU LUTRAN,Valdieu-Lutran,Valdieu-Lutran 31,1973-01-01,COM,68346,0,VALDIEU,Valdieu,Valdieu,COM,68192,0,VALDIEU LUTRAN,Valdieu-Lutran,Valdieu-Lutran -33,1973-01-01,COM,68369,0,WIHR EN PLAINE,Wihr-en-Plaine,Wihr-en-Plaine,COMA,68369,0,WIHR EN PLAINE,Wihr-en-Plaine,Wihr-en-Plaine 33,1973-01-01,COM,68369,0,WIHR EN PLAINE,Wihr-en-Plaine,Wihr-en-Plaine,COM,68145,0,HORBOURG WIHR,Horbourg-Wihr,Horbourg-Wihr +33,1973-01-01,COM,68369,0,WIHR EN PLAINE,Wihr-en-Plaine,Wihr-en-Plaine,COMA,68369,0,WIHR EN PLAINE,Wihr-en-Plaine,Wihr-en-Plaine 31,1973-01-01,COM,69079,0,DURETTE,Durette,Durette,COM,69165,0,REGNIE DURETTE,Régnié-Durette,Régnié-Durette 31,1973-01-01,COM,69165,0,REGNIE,Régnié,Régnié,COM,69165,0,REGNIE DURETTE,Régnié-Durette,Régnié-Durette 31,1973-01-01,COM,71351,0,PIERRE DE BRESSE,Pierre-de-Bresse,Pierre-de-Bresse,COM,71351,0,PIERRE DE BRESSE,Pierre-de-Bresse,Pierre-de-Bresse @@ -10346,11 +10158,11 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,74028,0,BALMONT,Balmont,Balmont,COMA,74028,0,BALMONT,Balmont,Balmont 33,1973-01-01,COM,74028,0,BALMONT,Balmont,Balmont,COM,74268,0,SEYNOD,Seynod,Seynod 31,1973-01-01,COM,74040,0,BONNE,Bonne,Bonne,COM,74040,0,BONNE,Bonne,Bonne -33,1973-01-01,COM,74125,0,FERRIERES,Ferrières,Ferrières,COM,74217,0,PRINGY,Pringy,Pringy 33,1973-01-01,COM,74125,0,FERRIERES,Ferrières,Ferrières,COMA,74125,0,FERRIERES,Ferrières,Ferrières +33,1973-01-01,COM,74125,0,FERRIERES,Ferrières,Ferrières,COM,74217,0,PRINGY,Pringy,Pringy 31,1973-01-01,COM,74149,0,LOEX,Loëx,Loëx,COM,74040,0,BONNE,Bonne,Bonne -33,1973-01-01,COM,74166,0,MARIN,Marin,Marin,COM,74281,0,THONON LES BAINS,Thonon-les-Bains,Thonon-les-Bains 33,1973-01-01,COM,74166,0,MARIN,Marin,Marin,COMA,74166,0,MARIN,Marin,Marin +33,1973-01-01,COM,74166,0,MARIN,Marin,Marin,COM,74281,0,THONON LES BAINS,Thonon-les-Bains,Thonon-les-Bains 33,1973-01-01,COM,74217,0,PRINGY,Pringy,Pringy,COM,74217,0,PRINGY,Pringy,Pringy 33,1973-01-01,COM,74268,0,SEYNOD,Seynod,Seynod,COM,74268,0,SEYNOD,Seynod,Seynod 33,1973-01-01,COM,74281,0,THONON LES BAINS,Thonon-les-Bains,Thonon-les-Bains,COM,74281,0,THONON LES BAINS,Thonon-les-Bains,Thonon-les-Bains @@ -10364,8 +10176,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,77136,0,COURQUETAINE,Courquetaine,Courquetaine,COM,77352,1,OZOUER COURQUETAINE,Ozouer-Courquetaine,Ozouer-Courquetaine 33,1973-01-01,COM,77175,1,EVRY LES CHATEAUX,Évry-les-Châteaux,Évry-les-Châteaux,COM,77175,1,EVRY GREGY SUR YERRE,Évry-Grégy-sur-Yerre,Évry-Grégy-sur-Yerre 33,1973-01-01,COM,77211,0,GRANDPUITS,Grandpuits,Grandpuits,COM,77211,0,GRANDPUITS BAILLY CARROIS,Grandpuits-Bailly-Carrois,Grandpuits-Bailly-Carrois -33,1973-01-01,COM,77213,0,GREGY SUR YERRE,Grégy-sur-Yerre,Grégy-sur-Yerre,COMA,77213,0,GREGY SUR YERRE,Grégy-sur-Yerre,Grégy-sur-Yerre 33,1973-01-01,COM,77213,0,GREGY SUR YERRE,Grégy-sur-Yerre,Grégy-sur-Yerre,COM,77175,1,EVRY GREGY SUR YERRE,Évry-Grégy-sur-Yerre,Évry-Grégy-sur-Yerre +33,1973-01-01,COM,77213,0,GREGY SUR YERRE,Grégy-sur-Yerre,Grégy-sur-Yerre,COMA,77213,0,GREGY SUR YERRE,Grégy-sur-Yerre,Grégy-sur-Yerre 33,1973-01-01,COM,77261,0,LORREZ LE BOCAGE,Lorrez-le-Bocage,Lorrez-le-Bocage,COM,77261,0,LORREZ LE BOCAGE PREAUX,Lorrez-le-Bocage-Préaux,Lorrez-le-Bocage-Préaux 33,1973-01-01,COM,77264,0,LUMIGNY,Lumigny,Lumigny,COM,77264,0,LUMIGNY NESLES ORMEAUX,Lumigny-Nesles-Ormeaux,Lumigny-Nesles-Ormeaux 33,1973-01-01,COM,77324,0,MOUTILS,Moutils,Moutils,COM,77093,3,CHAPELLE MOUTILS,Chapelle-Moutils,La Chapelle-Moutils @@ -10379,19 +10191,19 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,77352,1,OZOUER LE VOULGIS,Ozouer-le-Voulgis,Ozouer-le-Voulgis,COM,77352,1,OZOUER COURQUETAINE,Ozouer-Courquetaine,Ozouer-Courquetaine 33,1973-01-01,COM,77375,0,PREAUX,Préaux,Préaux,COM,77261,0,LORREZ LE BOCAGE PREAUX,Lorrez-le-Bocage-Préaux,Lorrez-le-Bocage-Préaux 33,1973-01-01,COM,77375,0,PREAUX,Préaux,Préaux,COMA,77375,0,PREAUX,Préaux,Préaux -33,1973-01-01,COM,77422,0,SAINT MARTIN CHENNETRON,Saint-Martin-Chennetron,Saint-Martin-Chennetron,COMA,77422,0,SAINT MARTIN CHENNETRON,Saint-Martin-Chennetron,Saint-Martin-Chennetron 33,1973-01-01,COM,77422,0,SAINT MARTIN CHENNETRON,Saint-Martin-Chennetron,Saint-Martin-Chennetron,COM,77026,0,BEAUCHERY SAINT MARTIN,Beauchery-Saint-Martin,Beauchery-Saint-Martin +33,1973-01-01,COM,77422,0,SAINT MARTIN CHENNETRON,Saint-Martin-Chennetron,Saint-Martin-Chennetron,COMA,77422,0,SAINT MARTIN CHENNETRON,Saint-Martin-Chennetron,Saint-Martin-Chennetron 33,1973-01-01,COM,77502,0,VILLEGAGNON,Villegagnon,Villegagnon,COM,77020,0,BANNOST VILLEGAGNON,Bannost-Villegagnon,Bannost-Villegagnon 33,1973-01-01,COM,77502,0,VILLEGAGNON,Villegagnon,Villegagnon,COMA,77502,0,VILLEGAGNON,Villegagnon,Villegagnon -33,1973-01-01,COM,78202,0,DROCOURT,Drocourt,Drocourt,COM,78246,0,FONTENAY SAINT PERE,Fontenay-Saint-Père,Fontenay-Saint-Père 33,1973-01-01,COM,78202,0,DROCOURT,Drocourt,Drocourt,COMA,78202,0,DROCOURT,Drocourt,Drocourt +33,1973-01-01,COM,78202,0,DROCOURT,Drocourt,Drocourt,COM,78246,0,FONTENAY SAINT PERE,Fontenay-Saint-Père,Fontenay-Saint-Père 33,1973-01-01,COM,78246,0,FONTENAY SAINT PERE,Fontenay-Saint-Père,Fontenay-Saint-Père,COM,78246,0,FONTENAY SAINT PERE,Fontenay-Saint-Père,Fontenay-Saint-Père 33,1973-01-01,COM,79005,1,AIRVAULT,Airvault,Airvault,COM,79005,1,AIRVAULT,Airvault,Airvault 33,1973-01-01,COM,79014,1,ARGENTON L EGLISE,Argenton-l'Église,Argenton-l'Église,COM,79014,1,ARGENTON L EGLISE,Argenton-l'Église,Argenton-l'Église -33,1973-01-01,COM,79021,1,AVAILLES SUR CHIZE,Availles-sur-Chizé,Availles-sur-Chizé,COM,79090,0,CHIZE,Chizé,Chizé 33,1973-01-01,COM,79021,1,AVAILLES SUR CHIZE,Availles-sur-Chizé,Availles-sur-Chizé,COMA,79021,1,AVAILLES SUR CHIZE,Availles-sur-Chizé,Availles-sur-Chizé -33,1973-01-01,COM,79026,0,BAGNEUX,Bagneux,Bagneux,COMA,79026,0,BAGNEUX,Bagneux,Bagneux +33,1973-01-01,COM,79021,1,AVAILLES SUR CHIZE,Availles-sur-Chizé,Availles-sur-Chizé,COM,79090,0,CHIZE,Chizé,Chizé 33,1973-01-01,COM,79026,0,BAGNEUX,Bagneux,Bagneux,COM,79014,1,ARGENTON L EGLISE,Argenton-l'Église,Argenton-l'Église +33,1973-01-01,COM,79026,0,BAGNEUX,Bagneux,Bagneux,COMA,79026,0,BAGNEUX,Bagneux,Bagneux 33,1973-01-01,COM,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire,COMA,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire 33,1973-01-01,COM,79028,0,BEAULIEU SOUS BRESSUIRE,Beaulieu-sous-Bressuire,Beaulieu-sous-Bressuire,COM,79049,0,BRESSUIRE,Bressuire,Bressuire 33,1973-01-01,COM,79031,0,BEAUVOIR SUR NIORT,Beauvoir-sur-Niort,Beauvoir-sur-Niort,COM,79031,0,BEAUVOIR SUR NIORT,Beauvoir-sur-Niort,Beauvoir-sur-Niort @@ -10399,21 +10211,21 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,79036,0,BILAZAIS,Bilazais,Bilazais,COM,79196,1,OIRON,Oiron,Oiron 33,1973-01-01,COM,79038,0,BOISME,Boismé,Boismé,COMA,79038,0,BOISME,Boismé,Boismé 33,1973-01-01,COM,79038,0,BOISME,Boismé,Boismé,COM,79049,0,BRESSUIRE,Bressuire,Bressuire -33,1973-01-01,COM,79041,0,BORCQ SUR AIRVAULT,Borcq-sur-Airvault,Borcq-sur-Airvault,COMA,79041,0,BORCQ SUR AIRVAULT,Borcq-sur-Airvault,Borcq-sur-Airvault 33,1973-01-01,COM,79041,0,BORCQ SUR AIRVAULT,Borcq-sur-Airvault,Borcq-sur-Airvault,COM,79005,1,AIRVAULT,Airvault,Airvault +33,1973-01-01,COM,79041,0,BORCQ SUR AIRVAULT,Borcq-sur-Airvault,Borcq-sur-Airvault,COMA,79041,0,BORCQ SUR AIRVAULT,Borcq-sur-Airvault,Borcq-sur-Airvault 33,1973-01-01,COM,79047,0,BOUSSAIS,Boussais,Boussais,COM,79005,1,AIRVAULT,Airvault,Airvault 33,1973-01-01,COM,79047,0,BOUSSAIS,Boussais,Boussais,COMA,79047,0,BOUSSAIS,Boussais,Boussais 33,1973-01-01,COM,79049,0,BRESSUIRE,Bressuire,Bressuire,COM,79049,0,BRESSUIRE,Bressuire,Bressuire -33,1973-01-01,COM,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée,COMA,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée 33,1973-01-01,COM,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée,COM,79049,0,BRESSUIRE,Bressuire,Bressuire -33,1973-01-01,COM,79054,0,BRIE,Brie,Brie,COM,79196,1,OIRON,Oiron,Oiron +33,1973-01-01,COM,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée,COMA,79052,0,BREUIL CHAUSSEE,Breuil-Chaussée,Breuil-Chaussée 33,1973-01-01,COM,79054,0,BRIE,Brie,Brie,COMA,79054,0,BRIE,Brie,Brie +33,1973-01-01,COM,79054,0,BRIE,Brie,Brie,COM,79196,1,OIRON,Oiron,Oiron 33,1973-01-01,COM,79056,0,BRION PRES THOUET,Brion-près-Thouet,Brion-près-Thouet,COMA,79056,0,BRION PRES THOUET,Brion-près-Thouet,Brion-près-Thouet 33,1973-01-01,COM,79056,0,BRION PRES THOUET,Brion-près-Thouet,Brion-près-Thouet,COM,79277,0,SAINT MARTIN DE SANZAY,Saint-Martin-de-Sanzay,Saint-Martin-de-Sanzay 33,1973-01-01,COM,79061,0,CELLES SUR BELLE,Celles-sur-Belle,Celles-sur-Belle,COM,79061,0,CELLES SUR BELLE,Celles-sur-Belle,Celles-sur-Belle 33,1973-01-01,COM,79063,0,CERSAY,Cersay,Cersay,COM,79063,0,CERSAY,Cersay,Cersay -33,1973-01-01,COM,79065,0,CHAMBROUTET,Chambroutet,Chambroutet,COMA,79065,0,CHAMBROUTET,Chambroutet,Chambroutet 33,1973-01-01,COM,79065,0,CHAMBROUTET,Chambroutet,Chambroutet,COM,79049,0,BRESSUIRE,Bressuire,Bressuire +33,1973-01-01,COM,79065,0,CHAMBROUTET,Chambroutet,Chambroutet,COMA,79065,0,CHAMBROUTET,Chambroutet,Chambroutet 33,1973-01-01,COM,79066,0,CHAMPDENIERS,Champdeniers,Champdeniers,COM,79066,0,CHAMPDENIERS SAINT DENIS,Champdeniers-Saint-Denis,Champdeniers-Saint-Denis 33,1973-01-01,COM,79067,0,CHAMPEAUX,Champeaux,Champeaux,COM,79066,0,CHAMPDENIERS SAINT DENIS,Champdeniers-Saint-Denis,Champdeniers-Saint-Denis 33,1973-01-01,COM,79067,0,CHAMPEAUX,Champeaux,Champeaux,COMA,79067,0,CHAMPEAUX,Champeaux,Champeaux @@ -10421,8 +10233,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,79073,3,CHAPELLE LARGEAU,Chapelle-Largeau,La Chapelle-Largeau,COM,79079,0,MAULEON,Mauléon,Mauléon 33,1973-01-01,COM,79079,0,MAULEON,Mauléon,Mauléon,COM,79079,0,MAULEON,Mauléon,Mauléon 33,1973-01-01,COM,79090,0,CHIZE,Chizé,Chizé,COM,79090,0,CHIZE,Chizé,Chizé -33,1973-01-01,COM,79093,0,CLAZAY,Clazay,Clazay,COMA,79093,0,CLAZAY,Clazay,Clazay 33,1973-01-01,COM,79093,0,CLAZAY,Clazay,Clazay,COM,79049,0,BRESSUIRE,Bressuire,Bressuire +33,1973-01-01,COM,79093,0,CLAZAY,Clazay,Clazay,COMA,79093,0,CLAZAY,Clazay,Clazay 33,1973-01-01,COM,79097,2,CORMENIER,Cormenier,Le Cormenier,COM,79031,0,BEAUVOIR SUR NIORT,Beauvoir-sur-Niort,Beauvoir-sur-Niort 33,1973-01-01,COM,79097,2,CORMENIER,Cormenier,Le Cormenier,COMA,79097,2,CORMENIER,Cormenier,Le Cormenier 31,1973-01-01,COM,79110,5,ENCLAVE DE LA MARTINIERE,Enclave-de-la-Martinière,L'Enclave-de-la-Martinière,COM,79264,0,SAINT LEGER DE LA MARTINIERE,Saint-Léger-de-la-Martinière,Saint-Léger-de-la-Martinière @@ -10431,61 +10243,61 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1973-01-01,COM,79133,0,GERMOND,Germond,Germond,COM,79133,0,GERMOND ROUVRE,Germond-Rouvre,Germond-Rouvre 33,1973-01-01,COM,79136,0,GOURNAY,Gournay,Gournay,COM,79136,0,GOURNAY LOIZE,Gournay-Loizé,Gournay-Loizé 33,1973-01-01,COM,79137,0,GRANZAY,Granzay,Granzay,COM,79137,0,GRANZAY GRIPT,Granzay-Gript,Granzay-Gript -33,1973-01-01,COM,79138,0,GRIPT,Gript,Gript,COMA,79138,0,GRIPT,Gript,Gript 33,1973-01-01,COM,79138,0,GRIPT,Gript,Gript,COM,79137,0,GRANZAY GRIPT,Granzay-Gript,Granzay-Gript -33,1973-01-01,COM,79151,0,LOIZE,Loizé,Loizé,COMA,79151,0,LOIZE,Loizé,Loizé +33,1973-01-01,COM,79138,0,GRIPT,Gript,Gript,COMA,79138,0,GRIPT,Gript,Gript 33,1973-01-01,COM,79151,0,LOIZE,Loizé,Loizé,COM,79136,0,GOURNAY LOIZE,Gournay-Loizé,Gournay-Loizé +33,1973-01-01,COM,79151,0,LOIZE,Loizé,Loizé,COMA,79151,0,LOIZE,Loizé,Loizé 33,1973-01-01,COM,79155,0,LOUBLANDE,Loublande,Loublande,COM,79079,0,MAULEON,Mauléon,Mauléon 33,1973-01-01,COM,79155,0,LOUBLANDE,Loublande,Loublande,COMA,79155,0,LOUBLANDE,Loublande,Loublande -33,1973-01-01,COM,79169,0,MAULAIS,Maulais,Maulais,COM,79321,0,TAIZE,Taizé,Taizé 33,1973-01-01,COM,79169,0,MAULAIS,Maulais,Maulais,COMA,79169,0,MAULAIS,Maulais,Maulais +33,1973-01-01,COM,79169,0,MAULAIS,Maulais,Maulais,COM,79321,0,TAIZE,Taizé,Taizé 33,1973-01-01,COM,79171,0,MAUZE THOUARSAIS,Mauzé-Thouarsais,Mauzé-Thouarsais,COM,79171,0,MAUZE THOUARSAIS,Mauzé-Thouarsais,Mauzé-Thouarsais 33,1973-01-01,COM,79181,0,MONTIGNE,Montigné,Montigné,COM,79061,0,CELLES SUR BELLE,Celles-sur-Belle,Celles-sur-Belle 33,1973-01-01,COM,79181,0,MONTIGNE,Montigné,Montigné,COMA,79181,0,MONTIGNE,Montigné,Montigné 33,1973-01-01,COM,79182,0,MONTIGNY,Montigny,Montigny,COM,79123,3,FORET SUR SEVRE,Forêt-sur-Sèvre,La Forêt-sur-Sèvre 33,1973-01-01,COM,79182,0,MONTIGNY,Montigny,Montigny,COMA,79182,0,MONTIGNY,Montigny,Montigny -33,1973-01-01,COM,79186,0,MOULINS,Moulins,Moulins,COMA,79186,0,MOULINS,Moulins,Moulins 33,1973-01-01,COM,79186,0,MOULINS,Moulins,Moulins,COM,79079,0,MAULEON,Mauléon,Mauléon -33,1973-01-01,COM,79192,0,NOIRLIEU,Noirlieu,Noirlieu,COMA,79192,0,NOIRLIEU,Noirlieu,Noirlieu +33,1973-01-01,COM,79186,0,MOULINS,Moulins,Moulins,COMA,79186,0,MOULINS,Moulins,Moulins 33,1973-01-01,COM,79192,0,NOIRLIEU,Noirlieu,Noirlieu,COM,79049,0,BRESSUIRE,Bressuire,Bressuire +33,1973-01-01,COM,79192,0,NOIRLIEU,Noirlieu,Noirlieu,COMA,79192,0,NOIRLIEU,Noirlieu,Noirlieu 33,1973-01-01,COM,79193,0,NOIRTERRE,Noirterre,Noirterre,COM,79049,0,BRESSUIRE,Bressuire,Bressuire 33,1973-01-01,COM,79193,0,NOIRTERRE,Noirterre,Noirterre,COMA,79193,0,NOIRTERRE,Noirterre,Noirterre 33,1973-01-01,COM,79194,0,NOIZE,Noizé,Noizé,COMA,79194,0,NOIZE,Noizé,Noizé 33,1973-01-01,COM,79194,0,NOIZE,Noizé,Noizé,COM,79196,1,OIRON,Oiron,Oiron 33,1973-01-01,COM,79196,1,OIRON,Oiron,Oiron,COM,79196,1,OIRON,Oiron,Oiron -33,1973-01-01,COM,79227,3,REVETIZON,Revêtizon,La Revêtizon,COMA,79227,3,REVETIZON,Revêtizon,La Revêtizon 33,1973-01-01,COM,79227,3,REVETIZON,Revêtizon,La Revêtizon,COM,79031,0,BEAUVOIR SUR NIORT,Beauvoir-sur-Niort,Beauvoir-sur-Niort -33,1973-01-01,COM,79228,0,RIGNE,Rigné,Rigné,COMA,79228,0,RIGNE,Rigné,Rigné +33,1973-01-01,COM,79227,3,REVETIZON,Revêtizon,La Revêtizon,COMA,79227,3,REVETIZON,Revêtizon,La Revêtizon 33,1973-01-01,COM,79228,0,RIGNE,Rigné,Rigné,COM,79171,0,MAUZE THOUARSAIS,Mauzé-Thouarsais,Mauzé-Thouarsais -33,1973-01-01,COM,79232,3,RONDE,Ronde,La Ronde,COMA,79232,3,RONDE,Ronde,La Ronde +33,1973-01-01,COM,79228,0,RIGNE,Rigné,Rigné,COMA,79228,0,RIGNE,Rigné,Rigné 33,1973-01-01,COM,79232,3,RONDE,Ronde,La Ronde,COM,79123,3,FORET SUR SEVRE,Forêt-sur-Sèvre,La Forêt-sur-Sèvre +33,1973-01-01,COM,79232,3,RONDE,Ronde,La Ronde,COMA,79232,3,RONDE,Ronde,La Ronde 33,1973-01-01,COM,79233,0,RORTHAIS,Rorthais,Rorthais,COM,79079,0,MAULEON,Mauléon,Mauléon 33,1973-01-01,COM,79233,0,RORTHAIS,Rorthais,Rorthais,COMA,79233,0,RORTHAIS,Rorthais,Rorthais 31,1973-01-01,COM,79234,0,ROUVRE,Rouvre,Rouvre,COM,79133,0,GERMOND ROUVRE,Germond-Rouvre,Germond-Rouvre -33,1973-01-01,COM,79235,0,SAINT AMAND SUR SEVRE,Saint-Amand-sur-Sèvre,Saint-Amand-sur-Sèvre,COMA,79235,0,SAINT AMAND SUR SEVRE,Saint-Amand-sur-Sèvre,Saint-Amand-sur-Sèvre 33,1973-01-01,COM,79235,0,SAINT AMAND SUR SEVRE,Saint-Amand-sur-Sèvre,Saint-Amand-sur-Sèvre,COM,79079,0,MAULEON,Mauléon,Mauléon +33,1973-01-01,COM,79235,0,SAINT AMAND SUR SEVRE,Saint-Amand-sur-Sèvre,Saint-Amand-sur-Sèvre,COMA,79235,0,SAINT AMAND SUR SEVRE,Saint-Amand-sur-Sèvre,Saint-Amand-sur-Sèvre 33,1973-01-01,COM,79237,0,SAINT AUBIN DE BAUBIGNE,Saint-Aubin-de-Baubigné,Saint-Aubin-de-Baubigné,COM,79079,0,MAULEON,Mauléon,Mauléon 33,1973-01-01,COM,79237,0,SAINT AUBIN DE BAUBIGNE,Saint-Aubin-de-Baubigné,Saint-Aubin-de-Baubigné,COMA,79237,0,SAINT AUBIN DE BAUBIGNE,Saint-Aubin-de-Baubigné,Saint-Aubin-de-Baubigné 33,1973-01-01,COM,79245,0,SAINT DENIS,Saint-Denis,Saint-Denis,COM,79066,0,CHAMPDENIERS SAINT DENIS,Champdeniers-Saint-Denis,Champdeniers-Saint-Denis 31,1973-01-01,COM,79264,0,SAINT LEGER LES MELLE,Saint-Léger-lès-Melle,Saint-Léger-lès-Melle,COM,79264,0,SAINT LEGER DE LA MARTINIERE,Saint-Léger-de-la-Martinière,Saint-Léger-de-la-Martinière -33,1973-01-01,COM,79272,0,SAINT MARSAULT,Saint-Marsault,Saint-Marsault,COMA,79272,0,SAINT MARSAULT,Saint-Marsault,Saint-Marsault 33,1973-01-01,COM,79272,0,SAINT MARSAULT,Saint-Marsault,Saint-Marsault,COM,79123,3,FORET SUR SEVRE,Forêt-sur-Sèvre,La Forêt-sur-Sèvre -33,1973-01-01,COM,79275,0,SAINT MARTIN D ENTRAIGUES,Saint-Martin-d'Entraigues,Saint-Martin-d'Entraigues,COMA,79275,0,SAINT MARTIN D ENTRAIGUES,Saint-Martin-d'Entraigues,Saint-Martin-d'Entraigues +33,1973-01-01,COM,79272,0,SAINT MARSAULT,Saint-Marsault,Saint-Marsault,COMA,79272,0,SAINT MARSAULT,Saint-Marsault,Saint-Marsault 33,1973-01-01,COM,79275,0,SAINT MARTIN D ENTRAIGUES,Saint-Martin-d'Entraigues,Saint-Martin-d'Entraigues,COM,79122,0,FONTENILLE SAINT MARTIN D ENTRAIGUES,Fontenille-Saint-Martin-d'Entraigues,Fontenille-Saint-Martin-d'Entraigues +33,1973-01-01,COM,79275,0,SAINT MARTIN D ENTRAIGUES,Saint-Martin-d'Entraigues,Saint-Martin-d'Entraigues,COMA,79275,0,SAINT MARTIN D ENTRAIGUES,Saint-Martin-d'Entraigues,Saint-Martin-d'Entraigues 33,1973-01-01,COM,79277,0,SAINT MARTIN DE SANZAY,Saint-Martin-de-Sanzay,Saint-Martin-de-Sanzay,COM,79277,0,SAINT MARTIN DE SANZAY,Saint-Martin-de-Sanzay,Saint-Martin-de-Sanzay -33,1973-01-01,COM,79288,0,SAINT PIERRE A CHAMP,Saint-Pierre-à-Champ,Saint-Pierre-à-Champ,COMA,79288,0,SAINT PIERRE A CHAMP,Saint-Pierre-à-Champ,Saint-Pierre-à-Champ 33,1973-01-01,COM,79288,0,SAINT PIERRE A CHAMP,Saint-Pierre-à-Champ,Saint-Pierre-à-Champ,COM,79063,0,CERSAY,Cersay,Cersay -33,1973-01-01,COM,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,COMA,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur +33,1973-01-01,COM,79288,0,SAINT PIERRE A CHAMP,Saint-Pierre-à-Champ,Saint-Pierre-à-Champ,COMA,79288,0,SAINT PIERRE A CHAMP,Saint-Pierre-à-Champ,Saint-Pierre-à-Champ 33,1973-01-01,COM,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,COM,79049,0,BRESSUIRE,Bressuire,Bressuire -33,1973-01-01,COM,79317,0,SOULIEVRES,Soulièvres,Soulièvres,COMA,79317,0,SOULIEVRES,Soulièvres,Soulièvres +33,1973-01-01,COM,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,COMA,79296,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur 33,1973-01-01,COM,79317,0,SOULIEVRES,Soulièvres,Soulièvres,COM,79005,1,AIRVAULT,Airvault,Airvault +33,1973-01-01,COM,79317,0,SOULIEVRES,Soulièvres,Soulièvres,COMA,79317,0,SOULIEVRES,Soulièvres,Soulièvres 33,1973-01-01,COM,79321,0,TAIZE,Taizé,Taizé,COM,79321,0,TAIZE,Taizé,Taizé -33,1973-01-01,COM,79323,2,TEMPLE,Temple,Le Temple,COMA,79323,2,TEMPLE,Temple,Le Temple 33,1973-01-01,COM,79323,2,TEMPLE,Temple,Le Temple,COM,79079,0,MAULEON,Mauléon,Mauléon -33,1973-01-01,COM,79324,0,TERVES,Terves,Terves,COMA,79324,0,TERVES,Terves,Terves +33,1973-01-01,COM,79323,2,TEMPLE,Temple,Le Temple,COMA,79323,2,TEMPLE,Temple,Le Temple 33,1973-01-01,COM,79324,0,TERVES,Terves,Terves,COM,79049,0,BRESSUIRE,Bressuire,Bressuire -33,1973-01-01,COM,79344,0,VERRINES SOUS CELLES,Verrines-sous-Celles,Verrines-sous-Celles,COMA,79344,0,VERRINES SOUS CELLES,Verrines-sous-Celles,Verrines-sous-Celles +33,1973-01-01,COM,79324,0,TERVES,Terves,Terves,COMA,79324,0,TERVES,Terves,Terves 33,1973-01-01,COM,79344,0,VERRINES SOUS CELLES,Verrines-sous-Celles,Verrines-sous-Celles,COM,79061,0,CELLES SUR BELLE,Celles-sur-Belle,Celles-sur-Belle +33,1973-01-01,COM,79344,0,VERRINES SOUS CELLES,Verrines-sous-Celles,Verrines-sous-Celles,COMA,79344,0,VERRINES SOUS CELLES,Verrines-sous-Celles,Verrines-sous-Celles 33,1973-01-01,COM,80222,0,CRECY EN PONTHIEU,Crécy-en-Ponthieu,Crécy-en-Ponthieu,COM,80222,0,CRECY EN PONTHIEU,Crécy-en-Ponthieu,Crécy-en-Ponthieu 31,1973-01-01,COM,80230,0,CURCHY DRESLINCOURT,Curchy-Dreslincourt,Curchy-Dreslincourt,COM,80230,0,CURCHY,Curchy,Curchy 31,1973-01-01,COM,80276,1,EQUENNES,Équennes,Équennes,COM,80276,1,EQUENNES ERAMECOURT,Équennes-Éramecourt,Équennes-Éramecourt @@ -10505,16 +10317,16 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1973-01-01,COM,81245,0,SAINT CHRISTOPHE,Saint-Christophe,Saint-Christophe,COM,81245,0,SAINT CHRISTOPHE,Saint-Christophe,Saint-Christophe 33,1973-01-01,COM,81262,0,SAINT MARCEL,Saint-Marcel,Saint-Marcel,COM,81262,0,SAINT MARCEL CAMPES,Saint-Marcel-Campes,Saint-Marcel-Campes 33,1973-01-01,COM,85020,0,BENET,Benet,Benet,COM,85020,0,BENET,Benet,Benet -33,1973-01-01,COM,85122,0,LESSON,Lesson,Lesson,COMA,85122,0,LESSON,Lesson,Lesson 33,1973-01-01,COM,85122,0,LESSON,Lesson,Lesson,COM,85020,0,BENET,Benet,Benet -33,1973-01-01,COM,85203,0,SAINTE CHRISTINE,Sainte-Christine,Sainte-Christine,COMA,85203,0,SAINTE CHRISTINE,Sainte-Christine,Sainte-Christine +33,1973-01-01,COM,85122,0,LESSON,Lesson,Lesson,COMA,85122,0,LESSON,Lesson,Lesson 33,1973-01-01,COM,85203,0,SAINTE CHRISTINE,Sainte-Christine,Sainte-Christine,COM,85020,0,BENET,Benet,Benet +33,1973-01-01,COM,85203,0,SAINTE CHRISTINE,Sainte-Christine,Sainte-Christine,COMA,85203,0,SAINTE CHRISTINE,Sainte-Christine,Sainte-Christine 33,1973-01-01,COM,86002,1,AMBERRE,Amberre,Amberre,COMA,86002,1,AMBERRE,Amberre,Amberre 33,1973-01-01,COM,86002,1,AMBERRE,Amberre,Amberre,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau -33,1973-01-01,COM,86073,0,CHERVES,Cherves,Cherves,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau 33,1973-01-01,COM,86073,0,CHERVES,Cherves,Cherves,COMA,86073,0,CHERVES,Cherves,Cherves -33,1973-01-01,COM,86089,0,CUHON,Cuhon,Cuhon,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau +33,1973-01-01,COM,86073,0,CHERVES,Cherves,Cherves,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau 33,1973-01-01,COM,86089,0,CUHON,Cuhon,Cuhon,COMA,86089,0,CUHON,Cuhon,Cuhon +33,1973-01-01,COM,86089,0,CUHON,Cuhon,Cuhon,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau 33,1973-01-01,COM,86101,0,FRONTENAY SUR DIVE,Frontenay-sur-Dive,Frontenay-sur-Dive,COMA,86101,0,FRONTENAY SUR DIVE,Frontenay-sur-Dive,Frontenay-sur-Dive 33,1973-01-01,COM,86101,0,FRONTENAY SUR DIVE,Frontenay-sur-Dive,Frontenay-sur-Dive,COM,86225,0,SAINT JEAN DE SAUVES,Saint-Jean-de-Sauves,Saint-Jean-de-Sauves 33,1973-01-01,COM,86108,3,GRIMAUDIERE,Grimaudière,La Grimaudière,COM,86108,3,GRIMAUDIERE,Grimaudière,La Grimaudière @@ -10523,72 +10335,68 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,86144,0,MAISONNEUVE,Maisonneuve,Maisonneuve,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau 33,1973-01-01,COM,86150,0,MASSOGNES,Massognes,Massognes,COMA,86150,0,MASSOGNES,Massognes,Massognes 33,1973-01-01,COM,86150,0,MASSOGNES,Massognes,Massognes,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau -33,1973-01-01,COMA,86155,0,MESSAIS,Messais,Messais,COMA,86155,0,MESSAIS,Messais,Messais -33,1973-01-01,COMA,86155,0,MESSAIS,Messais,Messais,COM,86161,0,MONCONTOUR,Moncontour,Moncontour -33,1973-01-01,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau 33,1973-01-01,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau 33,1973-01-01,COM,86161,0,MONCONTOUR,Moncontour,Moncontour,COM,86161,0,MONCONTOUR,Moncontour,Moncontour -33,1973-01-01,COM,86179,0,NOTRE DAME D OR,Notre-Dame-d'Or,Notre-Dame-d'Or,COMA,86179,0,NOTRE DAME D OR,Notre-Dame-d'Or,Notre-Dame-d'Or 33,1973-01-01,COM,86179,0,NOTRE DAME D OR,Notre-Dame-d'Or,Notre-Dame-d'Or,COM,86108,3,GRIMAUDIERE,Grimaudière,La Grimaudière +33,1973-01-01,COM,86179,0,NOTRE DAME D OR,Notre-Dame-d'Or,Notre-Dame-d'Or,COMA,86179,0,NOTRE DAME D OR,Notre-Dame-d'Or,Notre-Dame-d'Or 33,1973-01-01,COM,86185,1,OUZILLY VIGNOLLES,Ouzilly-Vignolles,Ouzilly-Vignolles,COM,86161,0,MONCONTOUR,Moncontour,Moncontour 33,1973-01-01,COM,86185,1,OUZILLY VIGNOLLES,Ouzilly-Vignolles,Ouzilly-Vignolles,COMA,86185,1,OUZILLY VIGNOLLES,Ouzilly-Vignolles,Ouzilly-Vignolles -33,1973-01-01,COM,86216,0,SAINT CHARTRES,Saint-Chartres,Saint-Chartres,COMA,86216,0,SAINT CHARTRES,Saint-Chartres,Saint-Chartres 33,1973-01-01,COM,86216,0,SAINT CHARTRES,Saint-Chartres,Saint-Chartres,COM,86161,0,MONCONTOUR,Moncontour,Moncontour +33,1973-01-01,COM,86216,0,SAINT CHARTRES,Saint-Chartres,Saint-Chartres,COMA,86216,0,SAINT CHARTRES,Saint-Chartres,Saint-Chartres 33,1973-01-01,COM,86225,0,SAINT JEAN DE SAUVES,Saint-Jean-de-Sauves,Saint-Jean-de-Sauves,COM,86225,0,SAINT JEAN DE SAUVES,Saint-Jean-de-Sauves,Saint-Jean-de-Sauves -33,1973-01-01,COM,86240,0,SAINT REMY EN MONTMORILLON,Saint-Rémy-en-Montmorillon,Saint-Rémy-en-Montmorillon,COMA,86240,0,SAINT REMY EN MONTMORILLON,Saint-Rémy-en-Montmorillon,Saint-Rémy-en-Montmorillon 33,1973-01-01,COM,86240,0,SAINT REMY EN MONTMORILLON,Saint-Rémy-en-Montmorillon,Saint-Rémy-en-Montmorillon,COM,86120,0,LATHUS,Lathus,Lathus -33,1973-01-01,COM,86277,0,VARENNES,Varennes,Varennes,COMA,86277,0,VARENNES,Varennes,Varennes +33,1973-01-01,COM,86240,0,SAINT REMY EN MONTMORILLON,Saint-Rémy-en-Montmorillon,Saint-Rémy-en-Montmorillon,COMA,86240,0,SAINT REMY EN MONTMORILLON,Saint-Rémy-en-Montmorillon,Saint-Rémy-en-Montmorillon 33,1973-01-01,COM,86277,0,VARENNES,Varennes,Varennes,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau +33,1973-01-01,COM,86277,0,VARENNES,Varennes,Varennes,COMA,86277,0,VARENNES,Varennes,Varennes 33,1973-01-01,COM,86283,0,VERGER SUR DIVE,Verger-sur-Dive,Verger-sur-Dive,COM,86108,3,GRIMAUDIERE,Grimaudière,La Grimaudière 33,1973-01-01,COM,86283,0,VERGER SUR DIVE,Verger-sur-Dive,Verger-sur-Dive,COMA,86283,0,VERGER SUR DIVE,Verger-sur-Dive,Verger-sur-Dive -33,1973-01-01,COM,86299,0,VOUZAILLES,Vouzailles,Vouzailles,COMA,86299,0,VOUZAILLES,Vouzailles,Vouzailles 33,1973-01-01,COM,86299,0,VOUZAILLES,Vouzailles,Vouzailles,COM,86160,0,MIREBEAU,Mirebeau,Mirebeau +33,1973-01-01,COM,86299,0,VOUZAILLES,Vouzailles,Vouzailles,COMA,86299,0,VOUZAILLES,Vouzailles,Vouzailles 33,1973-01-01,COM,87014,0,BESSINES SUR GARTEMPE,Bessines-sur-Gartempe,Bessines-sur-Gartempe,COM,87014,0,BESSINES SUR GARTEMPE,Bessines-sur-Gartempe,Bessines-sur-Gartempe -33,1973-01-01,COM,87102,0,MORTEROLLES SUR SEMME,Morterolles-sur-Semme,Morterolles-sur-Semme,COMA,87102,0,MORTEROLLES SUR SEMME,Morterolles-sur-Semme,Morterolles-sur-Semme 33,1973-01-01,COM,87102,0,MORTEROLLES SUR SEMME,Morterolles-sur-Semme,Morterolles-sur-Semme,COM,87014,0,BESSINES SUR GARTEMPE,Bessines-sur-Gartempe,Bessines-sur-Gartempe -33,1973-01-01,COM,87175,0,SAINT PRIEST LE BETOUX,Saint-Priest-le-Betoux,Saint-Priest-le-Betoux,COM,87180,0,SAINT SORNIN LEULAC,Saint-Sornin-Leulac,Saint-Sornin-Leulac +33,1973-01-01,COM,87102,0,MORTEROLLES SUR SEMME,Morterolles-sur-Semme,Morterolles-sur-Semme,COMA,87102,0,MORTEROLLES SUR SEMME,Morterolles-sur-Semme,Morterolles-sur-Semme 33,1973-01-01,COM,87175,0,SAINT PRIEST LE BETOUX,Saint-Priest-le-Betoux,Saint-Priest-le-Betoux,COMA,87175,0,SAINT PRIEST LE BETOUX,Saint-Priest-le-Betoux,Saint-Priest-le-Betoux +33,1973-01-01,COM,87175,0,SAINT PRIEST LE BETOUX,Saint-Priest-le-Betoux,Saint-Priest-le-Betoux,COM,87180,0,SAINT SORNIN LEULAC,Saint-Sornin-Leulac,Saint-Sornin-Leulac 33,1973-01-01,COM,87180,0,SAINT SORNIN LEULAC,Saint-Sornin-Leulac,Saint-Sornin-Leulac,COM,87180,0,SAINT SORNIN LEULAC,Saint-Sornin-Leulac,Saint-Sornin-Leulac -33,1973-01-01,COM,88048,0,BELLEFONTAINE,Bellefontaine,Bellefontaine,COM,88351,0,PLOMBIERES LES BAINS,Plombières-les-Bains,Plombières-les-Bains 33,1973-01-01,COM,88048,0,BELLEFONTAINE,Bellefontaine,Bellefontaine,COMA,88048,0,BELLEFONTAINE,Bellefontaine,Bellefontaine -33,1973-01-01,COM,88067,2,BOULAY,Boulay,Le Boulay,COM,88322,3,NEUVEVILLE DEVANT LEPANGES,Neuveville-devant-Lépanges,La Neuveville-devant-Lépanges +33,1973-01-01,COM,88048,0,BELLEFONTAINE,Bellefontaine,Bellefontaine,COM,88351,0,PLOMBIERES LES BAINS,Plombières-les-Bains,Plombières-les-Bains 33,1973-01-01,COM,88067,2,BOULAY,Boulay,Le Boulay,COMA,88067,2,BOULAY,Boulay,Le Boulay +33,1973-01-01,COM,88067,2,BOULAY,Boulay,Le Boulay,COM,88322,3,NEUVEVILLE DEVANT LEPANGES,Neuveville-devant-Lépanges,La Neuveville-devant-Lépanges 31,1973-01-01,COM,88146,0,DOMJULIEN,Domjulien,Domjulien,COM,88146,0,DOMJULIEN,Domjulien,Domjulien 31,1973-01-01,COM,88207,0,GIROVILLERS SOUS MONTFORT,Girovillers-sous-Montfort,Girovillers-sous-Montfort,COM,88146,0,DOMJULIEN,Domjulien,Domjulien 33,1973-01-01,COM,88217,0,GRANGES DE PLOMBIERES,Granges-de-Plombières,Granges-de-Plombières,COMA,88217,0,GRANGES DE PLOMBIERES,Granges-de-Plombières,Granges-de-Plombières 33,1973-01-01,COM,88217,0,GRANGES DE PLOMBIERES,Granges-de-Plombières,Granges-de-Plombières,COM,88351,0,PLOMBIERES LES BAINS,Plombières-les-Bains,Plombières-les-Bains 33,1973-01-01,COM,88322,3,NEUVEVILLE DEVANT LEPANGES,Neuveville-devant-Lépanges,La Neuveville-devant-Lépanges,COM,88322,3,NEUVEVILLE DEVANT LEPANGES,Neuveville-devant-Lépanges,La Neuveville-devant-Lépanges 33,1973-01-01,COM,88351,0,PLOMBIERES LES BAINS,Plombières-les-Bains,Plombières-les-Bains,COM,88351,0,PLOMBIERES LES BAINS,Plombières-les-Bains,Plombières-les-Bains -33,1973-01-01,COM,88405,0,RUAUX,Ruaux,Ruaux,COMA,88405,0,RUAUX,Ruaux,Ruaux 33,1973-01-01,COM,88405,0,RUAUX,Ruaux,Ruaux,COM,88351,0,PLOMBIERES LES BAINS,Plombières-les-Bains,Plombières-les-Bains -33,1973-01-01,COM,88420,0,SAINT JEAN DU MARCHE,Saint-Jean-du-Marché,Saint-Jean-du-Marché,COMA,88420,0,SAINT JEAN DU MARCHE,Saint-Jean-du-Marché,Saint-Jean-du-Marché +33,1973-01-01,COM,88405,0,RUAUX,Ruaux,Ruaux,COMA,88405,0,RUAUX,Ruaux,Ruaux 33,1973-01-01,COM,88420,0,SAINT JEAN DU MARCHE,Saint-Jean-du-Marché,Saint-Jean-du-Marché,COM,88322,3,NEUVEVILLE DEVANT LEPANGES,Neuveville-devant-Lépanges,La Neuveville-devant-Lépanges +33,1973-01-01,COM,88420,0,SAINT JEAN DU MARCHE,Saint-Jean-du-Marché,Saint-Jean-du-Marché,COMA,88420,0,SAINT JEAN DU MARCHE,Saint-Jean-du-Marché,Saint-Jean-du-Marché 33,1973-01-01,COM,89002,1,AIGREMONT,Aigremont,Aigremont,COMA,89002,1,AIGREMONT,Aigremont,Aigremont 33,1973-01-01,COM,89002,1,AIGREMONT,Aigremont,Aigremont,COM,89224,0,LICHERES AIGREMONT,Lichères-Aigremont,Lichères-Aigremont 33,1973-01-01,COM,89005,1,ANCY LE FRANC,Ancy-le-Franc,Ancy-le-Franc,COM,89005,1,ANCY LE FRANC,Ancy-le-Franc,Ancy-le-Franc 33,1973-01-01,COM,89010,1,ANNAY SUR SEREIN,Annay-sur-Serein,Annay-sur-Serein,COM,89010,1,ANNAY SUR SEREIN,Annay-sur-Serein,Annay-sur-Serein 33,1973-01-01,COM,89040,0,BESSY SUR CURE,Bessy-sur-Cure,Bessy-sur-Cure,COMA,89040,0,BESSY SUR CURE,Bessy-sur-Cure,Bessy-sur-Cure 33,1973-01-01,COM,89040,0,BESSY SUR CURE,Bessy-sur-Cure,Bessy-sur-Cure,COM,89233,0,LUCY SUR CURE,Lucy-sur-Cure,Lucy-sur-Cure -33,1973-01-01,COM,89047,0,BLIGNY EN OTHE,Bligny-en-Othe,Bligny-en-Othe,COM,89055,0,BRIENON SUR ARMANCON,Brienon-sur-Armançon,Brienon-sur-Armançon 33,1973-01-01,COM,89047,0,BLIGNY EN OTHE,Bligny-en-Othe,Bligny-en-Othe,COMA,89047,0,BLIGNY EN OTHE,Bligny-en-Othe,Bligny-en-Othe -33,1973-01-01,COM,89052,0,BOUILLY,Bouilly,Bouilly,COM,89439,0,VERGIGNY,Vergigny,Vergigny +33,1973-01-01,COM,89047,0,BLIGNY EN OTHE,Bligny-en-Othe,Bligny-en-Othe,COM,89055,0,BRIENON SUR ARMANCON,Brienon-sur-Armançon,Brienon-sur-Armançon 33,1973-01-01,COM,89052,0,BOUILLY,Bouilly,Bouilly,COMA,89052,0,BOUILLY,Bouilly,Bouilly +33,1973-01-01,COM,89052,0,BOUILLY,Bouilly,Bouilly,COM,89439,0,VERGIGNY,Vergigny,Vergigny 33,1973-01-01,COM,89055,0,BRIENON SUR ARMANCON,Brienon-sur-Armançon,Brienon-sur-Armançon,COM,89055,0,BRIENON SUR ARMANCON,Brienon-sur-Armançon,Brienon-sur-Armançon 31,1973-01-01,COM,89068,0,CHABLIS,Chablis,Chablis,COM,89068,0,CHABLIS,Chablis,Chablis -31,1973-01-01,COM,89068,0,CHABLIS,Chablis,Chablis,COM,89068,0,CHABLIS,Chablis,Chablis 33,1973-01-01,COM,89073,0,CHAMPIGNELLES,Champignelles,Champignelles,COM,89073,0,CHAMPIGNELLES,Champignelles,Champignelles 33,1973-01-01,COM,89114,0,COMMISSEY,Commissey,Commissey,COMA,89114,0,COMMISSEY,Commissey,Commissey 33,1973-01-01,COM,89114,0,COMMISSEY,Commissey,Commissey,COM,89407,0,TANLAY,Tanlay,Tanlay -33,1973-01-01,COM,89135,0,CUSY,Cusy,Cusy,COMA,89135,0,CUSY,Cusy,Cusy 33,1973-01-01,COM,89135,0,CUSY,Cusy,Cusy,COM,89005,1,ANCY LE FRANC,Ancy-le-Franc,Ancy-le-Franc +33,1973-01-01,COM,89135,0,CUSY,Cusy,Cusy,COMA,89135,0,CUSY,Cusy,Cusy 33,1973-01-01,COM,89157,1,ESSERT,Essert,Essert,COMA,89157,1,ESSERT,Essert,Essert 33,1973-01-01,COM,89157,1,ESSERT,Essert,Essert,COM,89233,0,LUCY SUR CURE,Lucy-sur-Cure,Lucy-sur-Cure -33,1973-01-01,COM,89166,0,FLEURIGNY,Fleurigny,Fleurigny,COM,89414,0,THORIGNY SUR OREUSE,Thorigny-sur-Oreuse,Thorigny-sur-Oreuse 33,1973-01-01,COM,89166,0,FLEURIGNY,Fleurigny,Fleurigny,COMA,89166,0,FLEURIGNY,Fleurigny,Fleurigny +33,1973-01-01,COM,89166,0,FLEURIGNY,Fleurigny,Fleurigny,COM,89414,0,THORIGNY SUR OREUSE,Thorigny-sur-Oreuse,Thorigny-sur-Oreuse 31,1973-01-01,COM,89185,0,FYE,Fyé,Fyé,COM,89068,0,CHABLIS,Chablis,Chablis 33,1973-01-01,COM,89224,0,LICHERES PRES AIGREMONT,Lichères-près-Aigremont,Lichères-près-Aigremont,COM,89224,0,LICHERES AIGREMONT,Lichères-Aigremont,Lichères-Aigremont -33,1973-01-01,COM,89231,0,LOUESME,Louesme,Louesme,COMA,89231,0,LOUESME,Louesme,Louesme 33,1973-01-01,COM,89231,0,LOUESME,Louesme,Louesme,COM,89073,0,CHAMPIGNELLES,Champignelles,Champignelles +33,1973-01-01,COM,89231,0,LOUESME,Louesme,Louesme,COMA,89231,0,LOUESME,Louesme,Louesme 33,1973-01-01,COM,89233,0,LUCY SUR CURE,Lucy-sur-Cure,Lucy-sur-Cure,COM,89233,0,LUCY SUR CURE,Lucy-sur-Cure,Lucy-sur-Cure 31,1973-01-01,COM,89258,0,MILLY,Milly,Milly,COM,89068,0,CHABLIS,Chablis,Chablis 33,1973-01-01,COM,89259,0,MOLAY,Môlay,Môlay,COM,89010,1,ANNAY SUR SEREIN,Annay-sur-Serein,Annay-sur-Serein @@ -10596,20 +10404,20 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,89275,0,NEUILLY,Neuilly,Neuilly,COM,89275,0,NEUILLY,Neuilly,Neuilly 33,1973-01-01,COM,89288,0,PAROY EN OTHE,Paroy-en-Othe,Paroy-en-Othe,COM,89055,0,BRIENON SUR ARMANCON,Brienon-sur-Armançon,Brienon-sur-Armançon 33,1973-01-01,COM,89288,0,PAROY EN OTHE,Paroy-en-Othe,Paroy-en-Othe,COMA,89288,0,PAROY EN OTHE,Paroy-en-Othe,Paroy-en-Othe -33,1973-01-01,COM,89293,0,PERREUSE,Perreuse,Perreuse,COM,89420,0,TREIGNY,Treigny,Treigny 33,1973-01-01,COM,89293,0,PERREUSE,Perreuse,Perreuse,COMA,89293,0,PERREUSE,Perreuse,Perreuse +33,1973-01-01,COM,89293,0,PERREUSE,Perreuse,Perreuse,COM,89420,0,TREIGNY,Treigny,Treigny 31,1973-01-01,COM,89305,0,POINCHY,Poinchy,Poinchy,COM,89068,0,CHABLIS,Chablis,Chablis 33,1973-01-01,COM,89315,0,PREHY,Préhy,Préhy,COMA,89315,0,PREHY,Préhy,Préhy 33,1973-01-01,COM,89315,0,PREHY,Préhy,Préhy,COM,89341,0,SAINT CYR LES COLONS,Saint-Cyr-les-Colons,Saint-Cyr-les-Colons -33,1973-01-01,COM,89322,0,REBOURSEAUX,Rebourseaux,Rebourseaux,COM,89439,0,VERGIGNY,Vergigny,Vergigny 33,1973-01-01,COM,89322,0,REBOURSEAUX,Rebourseaux,Rebourseaux,COMA,89322,0,REBOURSEAUX,Rebourseaux,Rebourseaux -33,1973-01-01,COM,89326,0,ROSOY,Rosoy,Rosoy,COM,89387,0,SENS,Sens,Sens +33,1973-01-01,COM,89322,0,REBOURSEAUX,Rebourseaux,Rebourseaux,COM,89439,0,VERGIGNY,Vergigny,Vergigny 33,1973-01-01,COM,89326,0,ROSOY,Rosoy,Rosoy,COMA,89326,0,ROSOY,Rosoy,Rosoy -33,1973-01-01,COM,89340,0,SAINTE COLOMBE SUR LOING,Sainte-Colombe-sur-Loing,Sainte-Colombe-sur-Loing,COM,89420,0,TREIGNY,Treigny,Treigny +33,1973-01-01,COM,89326,0,ROSOY,Rosoy,Rosoy,COM,89387,0,SENS,Sens,Sens 33,1973-01-01,COM,89340,0,SAINTE COLOMBE SUR LOING,Sainte-Colombe-sur-Loing,Sainte-Colombe-sur-Loing,COMA,89340,0,SAINTE COLOMBE SUR LOING,Sainte-Colombe-sur-Loing,Sainte-Colombe-sur-Loing +33,1973-01-01,COM,89340,0,SAINTE COLOMBE SUR LOING,Sainte-Colombe-sur-Loing,Sainte-Colombe-sur-Loing,COM,89420,0,TREIGNY,Treigny,Treigny 33,1973-01-01,COM,89341,0,SAINT CYR LES COLONS,Saint-Cyr-les-Colons,Saint-Cyr-les-Colons,COM,89341,0,SAINT CYR LES COLONS,Saint-Cyr-les-Colons,Saint-Cyr-les-Colons -33,1973-01-01,COM,89357,0,SAINT MARTIN SUR OREUSE,Saint-Martin-sur-Oreuse,Saint-Martin-sur-Oreuse,COM,89414,0,THORIGNY SUR OREUSE,Thorigny-sur-Oreuse,Thorigny-sur-Oreuse 33,1973-01-01,COM,89357,0,SAINT MARTIN SUR OREUSE,Saint-Martin-sur-Oreuse,Saint-Martin-sur-Oreuse,COMA,89357,0,SAINT MARTIN SUR OREUSE,Saint-Martin-sur-Oreuse,Saint-Martin-sur-Oreuse +33,1973-01-01,COM,89357,0,SAINT MARTIN SUR OREUSE,Saint-Martin-sur-Oreuse,Saint-Martin-sur-Oreuse,COM,89414,0,THORIGNY SUR OREUSE,Thorigny-sur-Oreuse,Thorigny-sur-Oreuse 33,1973-01-01,COM,89371,0,SAINTE VERTU,Sainte-Vertu,Sainte-Vertu,COM,89010,1,ANNAY SUR SEREIN,Annay-sur-Serein,Annay-sur-Serein 33,1973-01-01,COM,89371,0,SAINTE VERTU,Sainte-Vertu,Sainte-Vertu,COMA,89371,0,SAINTE VERTU,Sainte-Vertu,Sainte-Vertu 33,1973-01-01,COM,89372,0,SAINT VINNEMER,Saint-Vinnemer,Saint-Vinnemer,COMA,89372,0,SAINT VINNEMER,Saint-Vinnemer,Saint-Vinnemer @@ -10619,93 +10427,93 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1973-01-01,COM,89414,0,THORIGNY SUR OREUSE,Thorigny-sur-Oreuse,Thorigny-sur-Oreuse,COM,89414,0,THORIGNY SUR OREUSE,Thorigny-sur-Oreuse,Thorigny-sur-Oreuse 33,1973-01-01,COM,89420,0,TREIGNY,Treigny,Treigny,COM,89420,0,TREIGNY,Treigny,Treigny 33,1973-01-01,COM,89439,0,VERGIGNY,Vergigny,Vergigny,COM,89439,0,VERGIGNY,Vergigny,Vergigny -33,1973-01-01,COM,89457,0,VILLEMER,Villemer,Villemer,COMA,89457,0,VILLEMER,Villemer,Villemer 33,1973-01-01,COM,89457,0,VILLEMER,Villemer,Villemer,COM,89275,0,NEUILLY,Neuilly,Neuilly +33,1973-01-01,COM,89457,0,VILLEMER,Villemer,Villemer,COMA,89457,0,VILLEMER,Villemer,Villemer 31,1973-01-01,COM,90038,1,ESCHENE AUTRAGE,Eschêne-Autrage,Eschêne-Autrage,COM,90082,1,AUTRECHENE,Autrechêne,Autrechêne 31,1973-01-01,COM,90082,0,RECHOTTE,Rechotte,Rechotte,COM,90082,1,AUTRECHENE,Autrechêne,Autrechêne 33,1972-12-31,COM,21304,0,GRANCEY LE CHATEAU,Grancey-le-Château,Grancey-le-Château,COM,21304,0,GRANCEY LE CHATEAU NEUVELLE,Grancey-le-Château-Neuvelle,Grancey-le-Château-Neuvelle 33,1972-12-31,COM,21433,0,MONTIGNY SUR VINGEANNE,Montigny-sur-Vingeanne,Montigny-sur-Vingeanne,COM,21433,0,MONTIGNY MORNAY VILLENEUVE SUR VINGEANNE,Montigny-Mornay-Villeneuve-sur-Vingeanne,Montigny-Mornay-Villeneuve-sur-Vingeanne 33,1972-12-31,COM,21443,0,MORNAY,Mornay,Mornay,COM,21433,0,MONTIGNY MORNAY VILLENEUVE SUR VINGEANNE,Montigny-Mornay-Villeneuve-sur-Vingeanne,Montigny-Mornay-Villeneuve-sur-Vingeanne 33,1972-12-31,COM,21443,0,MORNAY,Mornay,Mornay,COMA,21443,0,MORNAY,Mornay,Mornay -33,1972-12-31,COM,21453,0,NEUVELLE LES GRANCEY,Neuvelle-lès-Grancey,Neuvelle-lès-Grancey,COMA,21453,0,NEUVELLE LES GRANCEY,Neuvelle-lès-Grancey,Neuvelle-lès-Grancey 33,1972-12-31,COM,21453,0,NEUVELLE LES GRANCEY,Neuvelle-lès-Grancey,Neuvelle-lès-Grancey,COM,21304,0,GRANCEY LE CHATEAU NEUVELLE,Grancey-le-Château-Neuvelle,Grancey-le-Château-Neuvelle +33,1972-12-31,COM,21453,0,NEUVELLE LES GRANCEY,Neuvelle-lès-Grancey,Neuvelle-lès-Grancey,COMA,21453,0,NEUVELLE LES GRANCEY,Neuvelle-lès-Grancey,Neuvelle-lès-Grancey 31,1972-12-31,COM,21506,0,PREMEAUX,Premeaux,Premeaux,COM,21506,0,PREMEAUX PRISSEY,Premeaux-Prissey,Premeaux-Prissey 31,1972-12-31,COM,21509,0,PRISSEY,Prissey,Prissey,COM,21506,0,PREMEAUX PRISSEY,Premeaux-Prissey,Premeaux-Prissey 33,1972-12-31,COM,21667,0,VERONNES LES GRANDES,Véronnes-les-Grandes,Véronnes-les-Grandes,COM,21667,0,VERONNES,Véronnes,Véronnes -33,1972-12-31,COM,21668,0,VERONNES LES PETITES,Véronnes-les-Petites,Véronnes-les-Petites,COMA,21668,0,VERONNES LES PETITES,Véronnes-les-Petites,Véronnes-les-Petites 33,1972-12-31,COM,21668,0,VERONNES LES PETITES,Véronnes-les-Petites,Véronnes-les-Petites,COM,21667,0,VERONNES,Véronnes,Véronnes -33,1972-12-31,COM,21697,3,VILLENEUVE SUR VINGEANNE,Villeneuve-sur-Vingeanne,La Villeneuve-sur-Vingeanne,COMA,21697,3,VILLENEUVE SUR VINGEANNE,Villeneuve-sur-Vingeanne,La Villeneuve-sur-Vingeanne +33,1972-12-31,COM,21668,0,VERONNES LES PETITES,Véronnes-les-Petites,Véronnes-les-Petites,COMA,21668,0,VERONNES LES PETITES,Véronnes-les-Petites,Véronnes-les-Petites 33,1972-12-31,COM,21697,3,VILLENEUVE SUR VINGEANNE,Villeneuve-sur-Vingeanne,La Villeneuve-sur-Vingeanne,COM,21433,0,MONTIGNY MORNAY VILLENEUVE SUR VINGEANNE,Montigny-Mornay-Villeneuve-sur-Vingeanne,Montigny-Mornay-Villeneuve-sur-Vingeanne -33,1972-12-31,COM,52068,0,BRAUCOURT,Braucourt,Braucourt,COM,52182,1,ECLARON BRAUCOURT,Éclaron-Braucourt,Éclaron-Braucourt +33,1972-12-31,COM,21697,3,VILLENEUVE SUR VINGEANNE,Villeneuve-sur-Vingeanne,La Villeneuve-sur-Vingeanne,COMA,21697,3,VILLENEUVE SUR VINGEANNE,Villeneuve-sur-Vingeanne,La Villeneuve-sur-Vingeanne 33,1972-12-31,COM,52068,0,BRAUCOURT,Braucourt,Braucourt,COMA,52068,0,BRAUCOURT,Braucourt,Braucourt +33,1972-12-31,COM,52068,0,BRAUCOURT,Braucourt,Braucourt,COM,52182,1,ECLARON BRAUCOURT,Éclaron-Braucourt,Éclaron-Braucourt 33,1972-12-31,COM,52182,1,ECLARON,Éclaron,Éclaron,COM,52182,1,ECLARON BRAUCOURT,Éclaron-Braucourt,Éclaron-Braucourt -33,1972-12-31,COM,70025,1,ARBECEY,Arbecey,Arbecey,COM,70427,0,PURGEROT ARBECEY,Purgerot-Arbecey,Purgerot-Arbecey 33,1972-12-31,COM,70025,1,ARBECEY,Arbecey,Arbecey,COMA,70025,1,ARBECEY,Arbecey,Arbecey +33,1972-12-31,COM,70025,1,ARBECEY,Arbecey,Arbecey,COM,70427,0,PURGEROT ARBECEY,Purgerot-Arbecey,Purgerot-Arbecey 33,1972-12-31,COM,70031,1,ATHESANS,Athesans,Athesans,COM,70031,1,ATHESANS ETROITEFONTAINE,Athesans-Étroitefontaine,Athesans-Étroitefontaine -33,1972-12-31,COM,70033,1,AUBERTANS,Aubertans,Aubertans,COM,70059,0,BEAUMOTTE LES MONTBOZON ET AUBERTANS,Beaumotte-lès-Montbozon-et-Aubertans,Beaumotte-lès-Montbozon-et-Aubertans 33,1972-12-31,COM,70033,1,AUBERTANS,Aubertans,Aubertans,COMA,70033,1,AUBERTANS,Aubertans,Aubertans +33,1972-12-31,COM,70033,1,AUBERTANS,Aubertans,Aubertans,COM,70059,0,BEAUMOTTE LES MONTBOZON ET AUBERTANS,Beaumotte-lès-Montbozon-et-Aubertans,Beaumotte-lès-Montbozon-et-Aubertans 33,1972-12-31,COM,70034,1,AUBIGNEY,Aubigney,Aubigney,COMA,70034,1,AUBIGNEY,Aubigney,Aubigney 33,1972-12-31,COM,70034,1,AUBIGNEY,Aubigney,Aubigney,COM,70101,0,BROYE LES PESMES AUBIGNEY MONTSEUGNY,Broye-lès-Pesmes-Aubigney-Montseugny,Broye-lès-Pesmes-Aubigney-Montseugny 33,1972-12-31,COM,70045,1,AVRIGNEY,Avrigney,Avrigney,COM,70045,1,AVRIGNEY VIREY,Avrigney-Virey,Avrigney-Virey 33,1972-12-31,COM,70058,0,BEAUJEU SAINT VALLIER ET PIERREJUX,Beaujeu-Saint-Vallier-et-Pierrejux,Beaujeu-Saint-Vallier-et-Pierrejux,COM,70058,0,BEAUJEU SAINT VALLIER PIERREJUX ET QUITTEUR,Beaujeu-Saint-Vallier-Pierrejux-et-Quitteur,Beaujeu-Saint-Vallier-Pierrejux-et-Quitteur 33,1972-12-31,COM,70059,0,BEAUMOTTE LES MONTBOZON,Beaumotte-lès-Montbozon,Beaumotte-lès-Montbozon,COM,70059,0,BEAUMOTTE LES MONTBOZON ET AUBERTANS,Beaumotte-lès-Montbozon-et-Aubertans,Beaumotte-lès-Montbozon-et-Aubertans -33,1972-12-31,COM,70068,0,BETONCOURT LES MENETRIERS,Betoncourt-les-Ménétriers,Betoncourt-les-Ménétriers,COM,70373,3,ROCHE MOREY,Roche-Morey,La Roche-Morey 33,1972-12-31,COM,70068,0,BETONCOURT LES MENETRIERS,Betoncourt-les-Ménétriers,Betoncourt-les-Ménétriers,COMA,70068,0,BETONCOURT LES MENETRIERS,Betoncourt-les-Ménétriers,Betoncourt-les-Ménétriers +33,1972-12-31,COM,70068,0,BETONCOURT LES MENETRIERS,Betoncourt-les-Ménétriers,Betoncourt-les-Ménétriers,COM,70373,3,ROCHE MOREY,Roche-Morey,La Roche-Morey 33,1972-12-31,COM,70101,0,BROYE LES PESMES,Broye-lès-Pesmes,Broye-lès-Pesmes,COM,70101,0,BROYE LES PESMES AUBIGNEY MONTSEUGNY,Broye-lès-Pesmes-Aubigney-Montseugny,Broye-lès-Pesmes-Aubigney-Montseugny -33,1972-12-31,COM,70108,0,BUSSUREL,Bussurel,Bussurel,COM,70285,1,HERICOURT,Héricourt,Héricourt 33,1972-12-31,COM,70108,0,BUSSUREL,Bussurel,Bussurel,COMA,70108,0,BUSSUREL,Bussurel,Bussurel +33,1972-12-31,COM,70108,0,BUSSUREL,Bussurel,Bussurel,COM,70285,1,HERICOURT,Héricourt,Héricourt 33,1972-12-31,COM,70110,0,BYANS,Byans,Byans,COM,70285,1,HERICOURT,Héricourt,Héricourt 33,1972-12-31,COM,70117,0,CHALONVILLARS,Châlonvillars,Châlonvillars,COM,70117,0,CHALONVILLARS MANDREVILLARS,Châlonvillars-Mandrevillars,Châlonvillars-Mandrevillars 33,1972-12-31,COM,70122,0,CHAMPLITTE ET LE PRELOT,Champlitte-et-le-Prélot,Champlitte-et-le-Prélot,COM,70122,0,CHAMPLITTE,Champlitte,Champlitte -33,1972-12-31,COM,70123,0,CHAMPLITTE LA VILLE,Champlitte-la-Ville,Champlitte-la-Ville,COMA,70123,0,CHAMPLITTE LA VILLE,Champlitte-la-Ville,Champlitte-la-Ville 33,1972-12-31,COM,70123,0,CHAMPLITTE LA VILLE,Champlitte-la-Ville,Champlitte-la-Ville,COM,70122,0,CHAMPLITTE,Champlitte,Champlitte -33,1972-12-31,COM,70131,0,CHARENTENAY,Charentenay,Charentenay,COM,70492,0,SOING CUBRY CHARENTENAY,Soing-Cubry-Charentenay,Soing-Cubry-Charentenay +33,1972-12-31,COM,70123,0,CHAMPLITTE LA VILLE,Champlitte-la-Ville,Champlitte-la-Ville,COMA,70123,0,CHAMPLITTE LA VILLE,Champlitte-la-Ville,Champlitte-la-Ville 33,1972-12-31,COM,70131,0,CHARENTENAY,Charentenay,Charentenay,COMA,70131,0,CHARENTENAY,Charentenay,Charentenay -33,1972-12-31,COM,70139,0,CHATEAU LAMBERT,Château-Lambert,Château-Lambert,COM,70283,0,HAUT DU THEM CHATEAU LAMBERT,Haut-du-Them-Château-Lambert,Haut-du-Them-Château-Lambert +33,1972-12-31,COM,70131,0,CHARENTENAY,Charentenay,Charentenay,COM,70492,0,SOING CUBRY CHARENTENAY,Soing-Cubry-Charentenay,Soing-Cubry-Charentenay 33,1972-12-31,COM,70139,0,CHATEAU LAMBERT,Château-Lambert,Château-Lambert,COMA,70139,0,CHATEAU LAMBERT,Château-Lambert,Château-Lambert +33,1972-12-31,COM,70139,0,CHATEAU LAMBERT,Château-Lambert,Château-Lambert,COM,70283,0,HAUT DU THEM CHATEAU LAMBERT,Haut-du-Them-Château-Lambert,Haut-du-Them-Château-Lambert 31,1972-12-31,COM,70161,0,COLOMBE LES BITHAINE,Colombe-lès-Bithaine,Colombe-lès-Bithaine,COM,70195,0,DAMBENOIT LES COLOMBE,Dambenoît-lès-Colombe,Dambenoît-lès-Colombe -33,1972-12-31,COM,70173,0,CORCELLES,Corcelles,Corcelles,COM,70477,0,SAULNOT,Saulnot,Saulnot 33,1972-12-31,COM,70173,0,CORCELLES,Corcelles,Corcelles,COMA,70173,0,CORCELLES,Corcelles,Corcelles +33,1972-12-31,COM,70173,0,CORCELLES,Corcelles,Corcelles,COM,70477,0,SAULNOT,Saulnot,Saulnot 33,1972-12-31,COM,70191,0,CUBRY LES SOING,Cubry-lès-Soing,Cubry-lès-Soing,COMA,70191,0,CUBRY LES SOING,Cubry-lès-Soing,Cubry-lès-Soing 33,1972-12-31,COM,70191,0,CUBRY LES SOING,Cubry-lès-Soing,Cubry-lès-Soing,COM,70492,0,SOING CUBRY CHARENTENAY,Soing-Cubry-Charentenay,Soing-Cubry-Charentenay 31,1972-12-31,COM,70195,0,DAMBENOIT,Dambenoît,Dambenoît,COM,70195,0,DAMBENOIT LES COLOMBE,Dambenoît-lès-Colombe,Dambenoît-lès-Colombe 31,1972-12-31,COM,70197,0,DAMPIERRE SUR LINOTTE,Dampierre-sur-Linotte,Dampierre-sur-Linotte,COM,70197,0,DAMPIERRE SUR LINOTTE,Dampierre-sur-Linotte,Dampierre-sur-Linotte 33,1972-12-31,COM,70223,1,ETROITEFONTAINE,Étroitefontaine,Étroitefontaine,COM,70031,1,ATHESANS ETROITEFONTAINE,Athesans-Étroitefontaine,Athesans-Étroitefontaine 33,1972-12-31,COM,70223,1,ETROITEFONTAINE,Étroitefontaine,Étroitefontaine,COMA,70223,1,ETROITEFONTAINE,Étroitefontaine,Étroitefontaine -33,1972-12-31,COM,70241,4,FONTENIS,Fontenis,Les Fontenis,COM,70447,0,RIOZ,Rioz,Rioz 33,1972-12-31,COM,70241,4,FONTENIS,Fontenis,Les Fontenis,COMA,70241,4,FONTENIS,Fontenis,Les Fontenis +33,1972-12-31,COM,70241,4,FONTENIS,Fontenis,Les Fontenis,COM,70447,0,RIOZ,Rioz,Rioz 31,1972-12-31,COM,70252,0,FRANOIS,Frânois,Frânois,COM,70252,0,FRAMONT,Framont,Framont -33,1972-12-31,COM,70270,0,GONVILLARS,Gonvillars,Gonvillars,COM,70477,0,SAULNOT,Saulnot,Saulnot 33,1972-12-31,COM,70270,0,GONVILLARS,Gonvillars,Gonvillars,COMA,70270,0,GONVILLARS,Gonvillars,Gonvillars +33,1972-12-31,COM,70270,0,GONVILLARS,Gonvillars,Gonvillars,COM,70477,0,SAULNOT,Saulnot,Saulnot 33,1972-12-31,COM,70283,0,HAUT DU THEM,Haut-du-Them,Haut-du-Them,COM,70283,0,HAUT DU THEM CHATEAU LAMBERT,Haut-du-Them-Château-Lambert,Haut-du-Them-Château-Lambert 33,1972-12-31,COM,70285,1,HERICOURT,Héricourt,Héricourt,COM,70285,1,HERICOURT,Héricourt,Héricourt 33,1972-12-31,COM,70292,0,JUSSEY,Jussey,Jussey,COM,70292,0,JUSSEY,Jussey,Jussey -33,1972-12-31,COM,70300,0,LEFFOND,Leffond,Leffond,COMA,70300,0,LEFFOND,Leffond,Leffond 33,1972-12-31,COM,70300,0,LEFFOND,Leffond,Leffond,COM,70122,0,CHAMPLITTE,Champlitte,Champlitte +33,1972-12-31,COM,70300,0,LEFFOND,Leffond,Leffond,COMA,70300,0,LEFFOND,Leffond,Leffond 33,1972-12-31,COM,70330,0,MANDREVILLARS,Mandrevillars,Mandrevillars,COM,70117,0,CHALONVILLARS MANDREVILLARS,Châlonvillars-Mandrevillars,Châlonvillars-Mandrevillars 33,1972-12-31,COM,70330,0,MANDREVILLARS,Mandrevillars,Mandrevillars,COMA,70330,0,MANDREVILLARS,Mandrevillars,Mandrevillars 33,1972-12-31,COM,70333,0,MARGILLEY,Margilley,Margilley,COM,70122,0,CHAMPLITTE,Champlitte,Champlitte 33,1972-12-31,COM,70333,0,MARGILLEY,Margilley,Margilley,COMA,70333,0,MARGILLEY,Margilley,Margilley 33,1972-12-31,COM,70346,0,MIGNAFANS,Mignafans,Mignafans,COMA,70346,0,MIGNAFANS,Mignafans,Mignafans 33,1972-12-31,COM,70346,0,MIGNAFANS,Mignafans,Mignafans,COM,70487,0,SENARGENT MIGNAFANS,Senargent-Mignafans,Senargent-Mignafans -33,1972-12-31,COM,70354,0,MONTARLOT LES CHAMPLITTE,Montarlot-lès-Champlitte,Montarlot-lès-Champlitte,COMA,70354,0,MONTARLOT LES CHAMPLITTE,Montarlot-lès-Champlitte,Montarlot-lès-Champlitte 33,1972-12-31,COM,70354,0,MONTARLOT LES CHAMPLITTE,Montarlot-lès-Champlitte,Montarlot-lès-Champlitte,COM,70122,0,CHAMPLITTE,Champlitte,Champlitte +33,1972-12-31,COM,70354,0,MONTARLOT LES CHAMPLITTE,Montarlot-lès-Champlitte,Montarlot-lès-Champlitte,COMA,70354,0,MONTARLOT LES CHAMPLITTE,Montarlot-lès-Champlitte,Montarlot-lès-Champlitte 31,1972-12-31,COM,70365,0,MONT LE FRANOIS,Mont-le-Frânois,Mont-le-Frânois,COM,70252,0,FRAMONT,Framont,Framont 33,1972-12-31,COM,70370,0,MONTSEUGNY,Montseugny,Montseugny,COM,70101,0,BROYE LES PESMES AUBIGNEY MONTSEUGNY,Broye-lès-Pesmes-Aubigney-Montseugny,Broye-lès-Pesmes-Aubigney-Montseugny 33,1972-12-31,COM,70370,0,MONTSEUGNY,Montseugny,Montseugny,COMA,70370,0,MONTSEUGNY,Montseugny,Montseugny 33,1972-12-31,COM,70373,0,MOREY,Morey,Morey,COM,70373,3,ROCHE MOREY,Roche-Morey,La Roche-Morey 31,1972-12-31,COM,70377,0,NANTOUARD,Nantouard,Nantouard,COM,70466,0,SAINT LOUP NANTOUARD,Saint-Loup-Nantouard,Saint-Loup-Nantouard -33,1972-12-31,COM,70382,0,NEUVELLE LES CHAMPLITTE,Neuvelle-lès-Champlitte,Neuvelle-lès-Champlitte,COMA,70382,0,NEUVELLE LES CHAMPLITTE,Neuvelle-lès-Champlitte,Neuvelle-lès-Champlitte 33,1972-12-31,COM,70382,0,NEUVELLE LES CHAMPLITTE,Neuvelle-lès-Champlitte,Neuvelle-lès-Champlitte,COM,70122,0,CHAMPLITTE,Champlitte,Champlitte -33,1972-12-31,COM,70391,0,NOROY LES JUSSEY,Noroy-lès-Jussey,Noroy-lès-Jussey,COMA,70391,0,NOROY LES JUSSEY,Noroy-lès-Jussey,Noroy-lès-Jussey +33,1972-12-31,COM,70382,0,NEUVELLE LES CHAMPLITTE,Neuvelle-lès-Champlitte,Neuvelle-lès-Champlitte,COMA,70382,0,NEUVELLE LES CHAMPLITTE,Neuvelle-lès-Champlitte,Neuvelle-lès-Champlitte 33,1972-12-31,COM,70391,0,NOROY LES JUSSEY,Noroy-lès-Jussey,Noroy-lès-Jussey,COM,70292,0,JUSSEY,Jussey,Jussey +33,1972-12-31,COM,70391,0,NOROY LES JUSSEY,Noroy-lès-Jussey,Noroy-lès-Jussey,COMA,70391,0,NOROY LES JUSSEY,Noroy-lès-Jussey,Noroy-lès-Jussey 31,1972-12-31,COM,70424,0,PRESLE,Presle,Presle,COM,70197,0,DAMPIERRE SUR LINOTTE,Dampierre-sur-Linotte,Dampierre-sur-Linotte 33,1972-12-31,COM,70427,0,PURGEROT,Purgerot,Purgerot,COM,70427,0,PURGEROT ARBECEY,Purgerot-Arbecey,Purgerot-Arbecey 33,1972-12-31,COM,70434,0,QUITTEUR,Quitteur,Quitteur,COM,70058,0,BEAUJEU SAINT VALLIER PIERREJUX ET QUITTEUR,Beaujeu-Saint-Vallier-Pierrejux-et-Quitteur,Beaujeu-Saint-Vallier-Pierrejux-et-Quitteur 33,1972-12-31,COM,70434,0,QUITTEUR,Quitteur,Quitteur,COMA,70434,0,QUITTEUR,Quitteur,Quitteur 33,1972-12-31,COM,70447,0,RIOZ,Rioz,Rioz,COM,70447,0,RIOZ,Rioz,Rioz -33,1972-12-31,COM,70465,0,SAINT JULIEN,Saint-Julien,Saint-Julien,COMA,70465,0,SAINT JULIEN,Saint-Julien,Saint-Julien 33,1972-12-31,COM,70465,0,SAINT JULIEN,Saint-Julien,Saint-Julien,COM,70373,3,ROCHE MOREY,Roche-Morey,La Roche-Morey +33,1972-12-31,COM,70465,0,SAINT JULIEN,Saint-Julien,Saint-Julien,COMA,70465,0,SAINT JULIEN,Saint-Julien,Saint-Julien 31,1972-12-31,COM,70466,0,SAINT LOUP LES GRAY,Saint-Loup-lès-Gray,Saint-Loup-lès-Gray,COM,70466,0,SAINT LOUP NANTOUARD,Saint-Loup-Nantouard,Saint-Loup-Nantouard 33,1972-12-31,COM,70477,0,SAULNOT,Saulnot,Saulnot,COM,70477,0,SAULNOT,Saulnot,Saulnot 33,1972-12-31,COM,70487,0,SENARGENT,Senargent,Senargent,COM,70487,0,SENARGENT MIGNAFANS,Senargent-Mignafans,Senargent-Mignafans @@ -10713,49 +10521,49 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-12-31,COM,70495,0,SUAUCOURT ET PISSELOUP,Suaucourt-et-Pisseloup,Suaucourt-et-Pisseloup,COM,70373,3,ROCHE MOREY,Roche-Morey,La Roche-Morey 33,1972-12-31,COM,70495,0,SUAUCOURT ET PISSELOUP,Suaucourt-et-Pisseloup,Suaucourt-et-Pisseloup,COMA,70495,0,SUAUCOURT ET PISSELOUP,Suaucourt-et-Pisseloup,Suaucourt-et-Pisseloup 31,1972-12-31,COM,70508,0,TREVEY,Trevey,Trevey,COM,70197,0,DAMPIERRE SUR LINOTTE,Dampierre-sur-Linotte,Dampierre-sur-Linotte -33,1972-12-31,COM,70570,0,VIREY,Virey,Virey,COMA,70570,0,VIREY,Virey,Virey 33,1972-12-31,COM,70570,0,VIREY,Virey,Virey,COM,70045,1,AVRIGNEY VIREY,Avrigney-Virey,Avrigney-Virey +33,1972-12-31,COM,70570,0,VIREY,Virey,Virey,COMA,70570,0,VIREY,Virey,Virey 33,1972-12-29,COM,28056,0,BOUTIGNY SUR OPTON,Boutigny-sur-Opton,Boutigny-sur-Opton,COM,28056,0,BOUTIGNY PROUAIS,Boutigny-Prouais,Boutigny-Prouais 33,1972-12-29,COM,28307,0,PROUAIS,Prouais,Prouais,COM,28056,0,BOUTIGNY PROUAIS,Boutigny-Prouais,Boutigny-Prouais 33,1972-12-29,COM,28307,0,PROUAIS,Prouais,Prouais,COMA,28307,0,PROUAIS,Prouais,Prouais 33,1972-12-28,COM,28002,1,ALLAINES,Allaines,Allaines,COM,28002,1,ALLAINES MERVILLIERS,Allaines-Mervilliers,Allaines-Mervilliers -33,1972-12-28,COM,28244,0,MERVILLIERS,Mervilliers,Mervilliers,COMA,28244,0,MERVILLIERS,Mervilliers,Mervilliers 33,1972-12-28,COM,28244,0,MERVILLIERS,Mervilliers,Mervilliers,COM,28002,1,ALLAINES MERVILLIERS,Allaines-Mervilliers,Allaines-Mervilliers +33,1972-12-28,COM,28244,0,MERVILLIERS,Mervilliers,Mervilliers,COMA,28244,0,MERVILLIERS,Mervilliers,Mervilliers 33,1972-12-28,COM,52060,0,BOURBONNE LES BAINS,Bourbonne-les-Bains,Bourbonne-les-Bains,COM,52060,0,BOURBONNE LES BAINS,Bourbonne-les-Bains,Bourbonne-les-Bains 33,1972-12-28,COM,52215,0,GENRUPT,Genrupt,Genrupt,COM,52060,0,BOURBONNE LES BAINS,Bourbonne-les-Bains,Bourbonne-les-Bains 33,1972-12-28,COM,52215,0,GENRUPT,Genrupt,Genrupt,COMA,52215,0,GENRUPT,Genrupt,Genrupt 33,1972-12-28,COM,52527,0,VILLARS SAINT MARCELLIN,Villars-Saint-Marcellin,Villars-Saint-Marcellin,COM,52060,0,BOURBONNE LES BAINS,Bourbonne-les-Bains,Bourbonne-les-Bains 33,1972-12-28,COM,52527,0,VILLARS SAINT MARCELLIN,Villars-Saint-Marcellin,Villars-Saint-Marcellin,COMA,52527,0,VILLARS SAINT MARCELLIN,Villars-Saint-Marcellin,Villars-Saint-Marcellin -33,1972-12-28,COM,80581,0,NAMPS AU MONT,Namps-au-Mont,Namps-au-Mont,COM,80582,0,NAMPS MAISNIL,Namps-Maisnil,Namps-Maisnil 33,1972-12-28,COM,80581,0,NAMPS AU MONT,Namps-au-Mont,Namps-au-Mont,COMA,80581,0,NAMPS AU MONT,Namps-au-Mont,Namps-au-Mont +33,1972-12-28,COM,80581,0,NAMPS AU MONT,Namps-au-Mont,Namps-au-Mont,COM,80582,0,NAMPS MAISNIL,Namps-Maisnil,Namps-Maisnil 33,1972-12-28,COM,80582,0,NAMPS AU VAL,Namps-au-Val,Namps-au-Val,COM,80582,0,NAMPS MAISNIL,Namps-Maisnil,Namps-Maisnil 33,1972-12-28,COM,80689,0,RUMAISNIL,Rumaisnil,Rumaisnil,COM,80582,0,NAMPS MAISNIL,Namps-Maisnil,Namps-Maisnil 33,1972-12-28,COM,80689,0,RUMAISNIL,Rumaisnil,Rumaisnil,COMA,80689,0,RUMAISNIL,Rumaisnil,Rumaisnil 33,1972-12-28,COM,80745,0,TAISNIL,Taisnil,Taisnil,COM,80582,0,NAMPS MAISNIL,Namps-Maisnil,Namps-Maisnil 33,1972-12-28,COM,80745,0,TAISNIL,Taisnil,Taisnil,COMA,80745,0,TAISNIL,Taisnil,Taisnil 33,1972-12-27,COM,28279,0,NOGENT LE ROI,Nogent-le-Roi,Nogent-le-Roi,COM,28279,0,NOGENT LE ROI,Nogent-le-Roi,Nogent-le-Roi -33,1972-12-27,COM,28399,0,VACHERESSES LES BASSES,Vacheresses-les-Basses,Vacheresses-les-Basses,COMA,28399,0,VACHERESSES LES BASSES,Vacheresses-les-Basses,Vacheresses-les-Basses 33,1972-12-27,COM,28399,0,VACHERESSES LES BASSES,Vacheresses-les-Basses,Vacheresses-les-Basses,COM,28279,0,NOGENT LE ROI,Nogent-le-Roi,Nogent-le-Roi -33,1972-12-26,COM,28043,0,BLEVY,Blévy,Blévy,COM,28226,0,MAILLEBOIS,Maillebois,Maillebois +33,1972-12-27,COM,28399,0,VACHERESSES LES BASSES,Vacheresses-les-Basses,Vacheresses-les-Basses,COMA,28399,0,VACHERESSES LES BASSES,Vacheresses-les-Basses,Vacheresses-les-Basses 33,1972-12-26,COM,28043,0,BLEVY,Blévy,Blévy,COMA,28043,0,BLEVY,Blévy,Blévy +33,1972-12-26,COM,28043,0,BLEVY,Blévy,Blévy,COM,28226,0,MAILLEBOIS,Maillebois,Maillebois 33,1972-12-26,COM,28125,0,DAMPIERRE SUR BLEVY,Dampierre-sur-Blévy,Dampierre-sur-Blévy,COMA,28125,0,DAMPIERRE SUR BLEVY,Dampierre-sur-Blévy,Dampierre-sur-Blévy 33,1972-12-26,COM,28125,0,DAMPIERRE SUR BLEVY,Dampierre-sur-Blévy,Dampierre-sur-Blévy,COM,28226,0,MAILLEBOIS,Maillebois,Maillebois 33,1972-12-26,COM,28226,0,MAILLEBOIS,Maillebois,Maillebois,COM,28226,0,MAILLEBOIS,Maillebois,Maillebois -33,1972-12-26,COM,28351,0,SAINT MAIXME HAUTERIVE,Saint-Maixme-Hauterive,Saint-Maixme-Hauterive,COMA,28351,0,SAINT MAIXME HAUTERIVE,Saint-Maixme-Hauterive,Saint-Maixme-Hauterive 33,1972-12-26,COM,28351,0,SAINT MAIXME HAUTERIVE,Saint-Maixme-Hauterive,Saint-Maixme-Hauterive,COM,28226,0,MAILLEBOIS,Maillebois,Maillebois +33,1972-12-26,COM,28351,0,SAINT MAIXME HAUTERIVE,Saint-Maixme-Hauterive,Saint-Maixme-Hauterive,COMA,28351,0,SAINT MAIXME HAUTERIVE,Saint-Maixme-Hauterive,Saint-Maixme-Hauterive 33,1972-12-22,COM,28120,0,CRUCEY,Crucey,Crucey,COM,28120,0,CRUCEY VILLAGES,Crucey-Villages,Crucey-Villages 33,1972-12-22,COM,28159,3,FRAMBOISIERE,Framboisière,La Framboisière,COM,28159,3,FRAMBOISIERE LA SAUCELLE,Framboisière-la-Saucelle,La Framboisière-la-Saucelle -33,1972-12-22,COM,28228,0,MAINTERNE,Mainterne,Mainterne,COMA,28228,0,MAINTERNE,Mainterne,Mainterne 33,1972-12-22,COM,28228,0,MAINTERNE,Mainterne,Mainterne,COM,28120,0,CRUCEY VILLAGES,Crucey-Villages,Crucey-Villages -33,1972-12-22,COM,28368,3,SAUCELLE,Saucelle,La Saucelle,COMA,28368,3,SAUCELLE,Saucelle,La Saucelle +33,1972-12-22,COM,28228,0,MAINTERNE,Mainterne,Mainterne,COMA,28228,0,MAINTERNE,Mainterne,Mainterne 33,1972-12-22,COM,28368,3,SAUCELLE,Saucelle,La Saucelle,COM,28159,3,FRAMBOISIERE LA SAUCELLE,Framboisière-la-Saucelle,La Framboisière-la-Saucelle +33,1972-12-22,COM,28368,3,SAUCELLE,Saucelle,La Saucelle,COMA,28368,3,SAUCELLE,Saucelle,La Saucelle 33,1972-12-22,COM,28373,0,SENONCHES,Senonches,Senonches,COM,28373,0,SENONCHES,Senonches,Senonches -33,1972-12-22,COM,28381,0,TARDAIS,Tardais,Tardais,COMA,28381,0,TARDAIS,Tardais,Tardais 33,1972-12-22,COM,28381,0,TARDAIS,Tardais,Tardais,COM,28373,0,SENONCHES,Senonches,Senonches -33,1972-12-22,COM,28413,3,VILLE AUX NONAINS,Ville-aux-Nonains,La Ville-aux-Nonains,COMA,28413,3,VILLE AUX NONAINS,Ville-aux-Nonains,La Ville-aux-Nonains +33,1972-12-22,COM,28381,0,TARDAIS,Tardais,Tardais,COMA,28381,0,TARDAIS,Tardais,Tardais 33,1972-12-22,COM,28413,3,VILLE AUX NONAINS,Ville-aux-Nonains,La Ville-aux-Nonains,COM,28373,0,SENONCHES,Senonches,Senonches -33,1972-12-22,COM,28420,0,VITRAY SOUS BREZOLLES,Vitray-sous-Brézolles,Vitray-sous-Brézolles,COMA,28420,0,VITRAY SOUS BREZOLLES,Vitray-sous-Brézolles,Vitray-sous-Brézolles +33,1972-12-22,COM,28413,3,VILLE AUX NONAINS,Ville-aux-Nonains,La Ville-aux-Nonains,COMA,28413,3,VILLE AUX NONAINS,Ville-aux-Nonains,La Ville-aux-Nonains 33,1972-12-22,COM,28420,0,VITRAY SOUS BREZOLLES,Vitray-sous-Brézolles,Vitray-sous-Brézolles,COM,28120,0,CRUCEY VILLAGES,Crucey-Villages,Crucey-Villages +33,1972-12-22,COM,28420,0,VITRAY SOUS BREZOLLES,Vitray-sous-Brézolles,Vitray-sous-Brézolles,COMA,28420,0,VITRAY SOUS BREZOLLES,Vitray-sous-Brézolles,Vitray-sous-Brézolles 33,1972-12-20,COM,28238,0,MARVILLE LES BOIS,Marville-les-Bois,Marville-les-Bois,COMA,28238,0,MARVILLE LES BOIS,Marville-les-Bois,Marville-les-Bois 33,1972-12-20,COM,28238,0,MARVILLE LES BOIS,Marville-les-Bois,Marville-les-Bois,COM,28360,0,SAINT SAUVEUR MARVILLE,Saint-Sauveur-Marville,Saint-Sauveur-Marville 33,1972-12-20,COM,28360,0,SAINT SAUVEUR LEVASVILLE,Saint-Sauveur-Levasville,Saint-Sauveur-Levasville,COM,28360,0,SAINT SAUVEUR MARVILLE,Saint-Sauveur-Marville,Saint-Sauveur-Marville @@ -10766,88 +10574,88 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1972-12-15,COM,69274,0,CREPIEUX LA PAPE,Crépieux-la-Pape,Crépieux-la-Pape,COM,69286,0,RILLIEUX LA PAPE,Rillieux-la-Pape,Rillieux-la-Pape 31,1972-12-15,COM,69286,0,RILLIEUX,Rillieux,Rillieux,COM,69286,0,RILLIEUX LA PAPE,Rillieux-la-Pape,Rillieux-la-Pape 33,1972-12-14,COM,28034,0,BERCHERES LA MAINGOT,Berchères-la-Maingot,Berchères-la-Maingot,COM,28034,0,BERCHERES SAINT GERMAIN,Berchères-Saint-Germain,Berchères-Saint-Germain -33,1972-12-14,COM,28338,0,SAINT GERMAIN LA GATINE,Saint-Germain-la-Gâtine,Saint-Germain-la-Gâtine,COMA,28338,0,SAINT GERMAIN LA GATINE,Saint-Germain-la-Gâtine,Saint-Germain-la-Gâtine 33,1972-12-14,COM,28338,0,SAINT GERMAIN LA GATINE,Saint-Germain-la-Gâtine,Saint-Germain-la-Gâtine,COM,28034,0,BERCHERES SAINT GERMAIN,Berchères-Saint-Germain,Berchères-Saint-Germain +33,1972-12-14,COM,28338,0,SAINT GERMAIN LA GATINE,Saint-Germain-la-Gâtine,Saint-Germain-la-Gâtine,COMA,28338,0,SAINT GERMAIN LA GATINE,Saint-Germain-la-Gâtine,Saint-Germain-la-Gâtine 33,1972-12-13,COM,28168,0,GALLARDON,Gallardon,Gallardon,COM,28168,0,GALLARDON,Gallardon,Gallardon -33,1972-12-13,COM,28266,0,MONTLOUET,Montlouet,Montlouet,COMA,28266,0,MONTLOUET,Montlouet,Montlouet 33,1972-12-13,COM,28266,0,MONTLOUET,Montlouet,Montlouet,COM,28168,0,GALLARDON,Gallardon,Gallardon +33,1972-12-13,COM,28266,0,MONTLOUET,Montlouet,Montlouet,COMA,28266,0,MONTLOUET,Montlouet,Montlouet 33,1972-12-11,COM,89118,0,COULANGES LA VINEUSE,Coulanges-la-Vineuse,Coulanges-la-Vineuse,COM,89118,0,COULANGES LA VINEUSE,Coulanges-la-Vineuse,Coulanges-la-Vineuse -33,1972-12-11,COM,89155,1,ESCOLIVES SAINTE CAMILLE,Escolives-Sainte-Camille,Escolives-Sainte-Camille,COMA,89155,1,ESCOLIVES SAINTE CAMILLE,Escolives-Sainte-Camille,Escolives-Sainte-Camille 33,1972-12-11,COM,89155,1,ESCOLIVES SAINTE CAMILLE,Escolives-Sainte-Camille,Escolives-Sainte-Camille,COM,89118,0,COULANGES LA VINEUSE,Coulanges-la-Vineuse,Coulanges-la-Vineuse +33,1972-12-11,COM,89155,1,ESCOLIVES SAINTE CAMILLE,Escolives-Sainte-Camille,Escolives-Sainte-Camille,COMA,89155,1,ESCOLIVES SAINTE CAMILLE,Escolives-Sainte-Camille,Escolives-Sainte-Camille 33,1972-12-07,COM,28011,1,ARMENONVILLE LES GATINEAUX,Armenonville-les-Gâtineaux,Armenonville-les-Gâtineaux,COMA,28011,1,ARMENONVILLE LES GATINEAUX,Armenonville-les-Gâtineaux,Armenonville-les-Gâtineaux 33,1972-12-07,COM,28011,1,ARMENONVILLE LES GATINEAUX,Armenonville-les-Gâtineaux,Armenonville-les-Gâtineaux,COM,28023,0,BAILLEAU ARMENONVILLE,Bailleau-Armenonville,Bailleau-Armenonville 33,1972-12-07,COM,28023,0,BAILLEAU SOUS GALLARDON,Bailleau-sous-Gallardon,Bailleau-sous-Gallardon,COM,28023,0,BAILLEAU ARMENONVILLE,Bailleau-Armenonville,Bailleau-Armenonville 33,1972-12-06,COM,73006,1,AIME,Aime,Aime,COM,73006,1,AIME,Aime,Aime -33,1972-12-06,COM,73291,0,TESSENS,Tessens,Tessens,COMA,73291,0,TESSENS,Tessens,Tessens 33,1972-12-06,COM,73291,0,TESSENS,Tessens,Tessens,COM,73006,1,AIME,Aime,Aime -33,1972-12-06,COM,73325,0,VILLETTE,Villette,Villette,COMA,73325,0,VILLETTE,Villette,Villette +33,1972-12-06,COM,73291,0,TESSENS,Tessens,Tessens,COMA,73291,0,TESSENS,Tessens,Tessens 33,1972-12-06,COM,73325,0,VILLETTE,Villette,Villette,COM,73006,1,AIME,Aime,Aime -33,1972-12-01,COM,01137,0,CUISIAT,Cuisiat,Cuisiat,COMA,01137,0,CUISIAT,Cuisiat,Cuisiat -33,1972-12-01,COM,01137,0,CUISIAT,Cuisiat,Cuisiat,COM,01426,0,TREFFORT CUISIAT,Treffort-Cuisiat,Treffort-Cuisiat -33,1972-12-01,COM,01426,0,TREFFORT,Treffort,Treffort,COM,01426,0,TREFFORT CUISIAT,Treffort-Cuisiat,Treffort-Cuisiat +33,1972-12-06,COM,73325,0,VILLETTE,Villette,Villette,COMA,73325,0,VILLETTE,Villette,Villette +33,1972-12-01,COM,1137,0,CUISIAT,Cuisiat,Cuisiat,COMA,1137,0,CUISIAT,Cuisiat,Cuisiat +33,1972-12-01,COM,1137,0,CUISIAT,Cuisiat,Cuisiat,COM,1426,0,TREFFORT CUISIAT,Treffort-Cuisiat,Treffort-Cuisiat +33,1972-12-01,COM,1426,0,TREFFORT,Treffort,Treffort,COM,1426,0,TREFFORT CUISIAT,Treffort-Cuisiat,Treffort-Cuisiat 33,1972-12-01,COM,14336,0,HOTTOT LES BAGUES,Hottot-les-Bagues,Hottot-les-Bagues,COM,14336,0,HOTTOT LONGRAYE,Hottot-Longraye,Hottot-Longraye -33,1972-12-01,COM,14376,0,LONGRAYE,Longraye,Longraye,COMA,14376,0,LONGRAYE,Longraye,Longraye 33,1972-12-01,COM,14376,0,LONGRAYE,Longraye,Longraye,COM,14336,0,HOTTOT LONGRAYE,Hottot-Longraye,Hottot-Longraye +33,1972-12-01,COM,14376,0,LONGRAYE,Longraye,Longraye,COMA,14376,0,LONGRAYE,Longraye,Longraye 31,1972-12-01,COM,15113,0,MANDAILLES,Mandailles,Mandailles,COM,15113,0,MANDAILLES SAINT JULIEN,Mandailles-Saint-Julien,Mandailles-Saint-Julien 33,1972-12-01,COM,15140,0,NAUCELLES,Naucelles,Naucelles,COM,15140,0,NAUCELLES REILHAC,Naucelles-Reilhac,Naucelles-Reilhac -33,1972-12-01,COM,15160,0,REILHAC,Reilhac,Reilhac,COMA,15160,0,REILHAC,Reilhac,Reilhac 33,1972-12-01,COM,15160,0,REILHAC,Reilhac,Reilhac,COM,15140,0,NAUCELLES REILHAC,Naucelles-Reilhac,Naucelles-Reilhac +33,1972-12-01,COM,15160,0,REILHAC,Reilhac,Reilhac,COMA,15160,0,REILHAC,Reilhac,Reilhac 31,1972-12-01,COM,15193,0,SAINT JULIEN DE JORDANNE,Saint-Julien-de-Jordanne,Saint-Julien-de-Jordanne,COM,15113,0,MANDAILLES SAINT JULIEN,Mandailles-Saint-Julien,Mandailles-Saint-Julien 33,1972-12-01,COM,19206,0,SAINT GERMAIN LAVOLPS,Saint-Germain-Lavolps,Saint-Germain-Lavolps,COMA,19206,0,SAINT GERMAIN LAVOLPS,Saint-Germain-Lavolps,Saint-Germain-Lavolps 33,1972-12-01,COM,19206,0,SAINT GERMAIN LAVOLPS,Saint-Germain-Lavolps,Saint-Germain-Lavolps,COM,19261,0,SORNAC SAINT GERMAIN LAVOLPS,Sornac-Saint-Germain-Lavolps,Sornac-Saint-Germain-Lavolps 33,1972-12-01,COM,19261,0,SORNAC,Sornac,Sornac,COM,19261,0,SORNAC SAINT GERMAIN LAVOLPS,Sornac-Saint-Germain-Lavolps,Sornac-Saint-Germain-Lavolps -33,1972-12-01,COM,28097,0,CHENE CHENU,Chêne-Chenu,Chêne-Chenu,COM,28393,0,TREMBLAY LES VILLAGES,Tremblay-les-Villages,Tremblay-les-Villages 33,1972-12-01,COM,28097,0,CHENE CHENU,Chêne-Chenu,Chêne-Chenu,COMA,28097,0,CHENE CHENU,Chêne-Chenu,Chêne-Chenu +33,1972-12-01,COM,28097,0,CHENE CHENU,Chêne-Chenu,Chêne-Chenu,COM,28393,0,TREMBLAY LES VILLAGES,Tremblay-les-Villages,Tremblay-les-Villages 33,1972-12-01,COM,28138,1,ECUBLE,Écublé,Écublé,COMA,28138,1,ECUBLE,Écublé,Écublé 33,1972-12-01,COM,28138,1,ECUBLE,Écublé,Écublé,COM,28393,0,TREMBLAY LES VILLAGES,Tremblay-les-Villages,Tremblay-les-Villages 33,1972-12-01,COM,28174,0,GATELLES,Gâtelles,Gâtelles,COMA,28174,0,GATELLES,Gâtelles,Gâtelles 33,1972-12-01,COM,28174,0,GATELLES,Gâtelles,Gâtelles,COM,28386,0,THIMERT GATELLES,Thimert-Gâtelles,Thimert-Gâtelles 33,1972-12-01,COM,28181,0,GIRONVILLE ET NEUVILLE,Gironville-et-Neuville,Gironville-et-Neuville,COMA,28181,0,GIRONVILLE ET NEUVILLE,Gironville-et-Neuville,Gironville-et-Neuville 33,1972-12-01,COM,28181,0,GIRONVILLE ET NEUVILLE,Gironville-et-Neuville,Gironville-et-Neuville,COM,28393,0,TREMBLAY LES VILLAGES,Tremblay-les-Villages,Tremblay-les-Villages -33,1972-12-01,COM,28328,0,SAINT CHERON DES CHAMPS,Saint-Chéron-des-Champs,Saint-Chéron-des-Champs,COM,28393,0,TREMBLAY LES VILLAGES,Tremblay-les-Villages,Tremblay-les-Villages 33,1972-12-01,COM,28328,0,SAINT CHERON DES CHAMPS,Saint-Chéron-des-Champs,Saint-Chéron-des-Champs,COMA,28328,0,SAINT CHERON DES CHAMPS,Saint-Chéron-des-Champs,Saint-Chéron-des-Champs +33,1972-12-01,COM,28328,0,SAINT CHERON DES CHAMPS,Saint-Chéron-des-Champs,Saint-Chéron-des-Champs,COM,28393,0,TREMBLAY LES VILLAGES,Tremblay-les-Villages,Tremblay-les-Villages 33,1972-12-01,COM,28384,0,THEUVY ACHERES,Theuvy-Achères,Theuvy-Achères,COMA,28384,0,THEUVY ACHERES,Theuvy-Achères,Theuvy-Achères 33,1972-12-01,COM,28384,0,THEUVY ACHERES,Theuvy-Achères,Theuvy-Achères,COM,28393,0,TREMBLAY LES VILLAGES,Tremblay-les-Villages,Tremblay-les-Villages 33,1972-12-01,COM,28386,0,THIMERT,Thimert,Thimert,COM,28386,0,THIMERT GATELLES,Thimert-Gâtelles,Thimert-Gâtelles 33,1972-12-01,COM,28393,0,TREMBLAY LE VICOMTE,Tremblay-le-Vicomte,Tremblay-le-Vicomte,COM,28393,0,TREMBLAY LES VILLAGES,Tremblay-les-Villages,Tremblay-les-Villages 33,1972-12-01,COM,52173,0,DOMREMY EN ORNOIS,Domremy-en-Ornois,Domremy-en-Ornois,COM,52173,0,DOMREMY LANDEVILLE,Domremy-Landéville,Domremy-Landéville -33,1972-12-01,COM,52263,0,LANDEVILLE,Landéville,Landéville,COMA,52263,0,LANDEVILLE,Landéville,Landéville 33,1972-12-01,COM,52263,0,LANDEVILLE,Landéville,Landéville,COM,52173,0,DOMREMY LANDEVILLE,Domremy-Landéville,Domremy-Landéville -33,1972-12-01,COM,52299,0,MACONCOURT,Maconcourt,Maconcourt,COM,52456,0,SAINT URBAIN MACONCOURT,Saint-Urbain-Maconcourt,Saint-Urbain-Maconcourt +33,1972-12-01,COM,52263,0,LANDEVILLE,Landéville,Landéville,COMA,52263,0,LANDEVILLE,Landéville,Landéville 33,1972-12-01,COM,52299,0,MACONCOURT,Maconcourt,Maconcourt,COMA,52299,0,MACONCOURT,Maconcourt,Maconcourt +33,1972-12-01,COM,52299,0,MACONCOURT,Maconcourt,Maconcourt,COM,52456,0,SAINT URBAIN MACONCOURT,Saint-Urbain-Maconcourt,Saint-Urbain-Maconcourt 33,1972-12-01,COM,52359,0,NULLY,Nully,Nully,COM,52359,0,NULLY TREMILLY,Nully-Trémilly,Nully-Trémilly 33,1972-12-01,COM,52456,0,SAINT URBAIN SUR MARNE,Saint-Urbain-sur-Marne,Saint-Urbain-sur-Marne,COM,52456,0,SAINT URBAIN MACONCOURT,Saint-Urbain-Maconcourt,Saint-Urbain-Maconcourt -33,1972-12-01,COM,52495,0,TREMILLY,Trémilly,Trémilly,COMA,52495,0,TREMILLY,Trémilly,Trémilly 33,1972-12-01,COM,52495,0,TREMILLY,Trémilly,Trémilly,COM,52359,0,NULLY TREMILLY,Nully-Trémilly,Nully-Trémilly -33,1972-12-01,COM,62136,0,BLANGERMONT,Blangermont,Blangermont,COM,62137,0,BLANGERVAL BLANGERMONT,Blangerval-Blangermont,Blangerval-Blangermont +33,1972-12-01,COM,52495,0,TREMILLY,Trémilly,Trémilly,COMA,52495,0,TREMILLY,Trémilly,Trémilly 33,1972-12-01,COM,62136,0,BLANGERMONT,Blangermont,Blangermont,COMA,62136,0,BLANGERMONT,Blangermont,Blangermont +33,1972-12-01,COM,62136,0,BLANGERMONT,Blangermont,Blangermont,COM,62137,0,BLANGERVAL BLANGERMONT,Blangerval-Blangermont,Blangerval-Blangermont 33,1972-12-01,COM,62137,0,BLANGERVAL,Blangerval,Blangerval,COM,62137,0,BLANGERVAL BLANGERMONT,Blangerval-Blangermont,Blangerval-Blangermont 31,1972-12-01,COM,62305,1,ERQUIERES,Erquières,Erquières,COM,62834,0,VACQUERIETTE ERQUIERES,Vacqueriette-Erquières,Vacqueriette-Erquières -33,1972-12-01,COM,62417,0,HAUTECOTE,Hautecôte,Hautecôte,COM,62631,0,NUNCQ HAUTECOTE,Nuncq-Hautecôte,Nuncq-Hautecôte 33,1972-12-01,COM,62417,0,HAUTECOTE,Hautecôte,Hautecôte,COMA,62417,0,HAUTECOTE,Hautecôte,Hautecôte -31,1972-12-01,COM,62420,0,HAUT MAINIL,Haut-Maînil,Haut-Maînil,COM,62683,0,QUOEUX HAUT MAINIL,Quœux-Haut-Maînil,Quœux-Haut-Maînil +33,1972-12-01,COM,62417,0,HAUTECOTE,Hautecôte,Hautecôte,COM,62631,0,NUNCQ HAUTECOTE,Nuncq-Hautecôte,Nuncq-Hautecôte +31,1972-12-01,COM,62420,0,HAUT MAINIL,Haut-Maînil,Haut-Maînil,COM,62683,0,QUOUX HAUT MAINIL,Quœux-Haut-Maînil,Quœux-Haut-Maînil 33,1972-12-01,COM,62631,0,NUNCQ,Nuncq,Nuncq,COM,62631,0,NUNCQ HAUTECOTE,Nuncq-Hautecôte,Nuncq-Hautecôte -31,1972-12-01,COM,62683,0,QUOEUX,Quœux,Quœux,COM,62683,0,QUOEUX HAUT MAINIL,Quœux-Haut-Maînil,Quœux-Haut-Maînil +31,1972-12-01,COM,62683,0,QUOUX,Quœux,Quœux,COM,62683,0,QUOUX HAUT MAINIL,Quœux-Haut-Maînil,Quœux-Haut-Maînil 31,1972-12-01,COM,62834,0,VACQUERIETTE,Vacqueriette,Vacqueriette,COM,62834,0,VACQUERIETTE ERQUIERES,Vacqueriette-Erquières,Vacqueriette-Erquières -33,1972-12-01,COM,89090,0,CHASTENAY,Chastenay,Chastenay,COM,89283,1,OUANNE,Ouanne,Ouanne 33,1972-12-01,COM,89090,0,CHASTENAY,Chastenay,Chastenay,COMA,89090,0,CHASTENAY,Chastenay,Chastenay +33,1972-12-01,COM,89090,0,CHASTENAY,Chastenay,Chastenay,COM,89283,1,OUANNE,Ouanne,Ouanne 33,1972-12-01,COM,89220,0,LAVAU,Lavau,Lavau,COMA,89220,0,LAVAU,Lavau,Lavau 33,1972-12-01,COM,89220,0,LAVAU,Lavau,Lavau,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau -33,1972-12-01,COM,89252,0,MERRY SEC,Merry-Sec,Merry-Sec,COM,89283,1,OUANNE,Ouanne,Ouanne 33,1972-12-01,COM,89252,0,MERRY SEC,Merry-Sec,Merry-Sec,COMA,89252,0,MERRY SEC,Merry-Sec,Merry-Sec -33,1972-12-01,COM,89254,0,MEZILLES,Mézilles,Mézilles,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau +33,1972-12-01,COM,89252,0,MERRY SEC,Merry-Sec,Merry-Sec,COM,89283,1,OUANNE,Ouanne,Ouanne 33,1972-12-01,COM,89254,0,MEZILLES,Mézilles,Mézilles,COMA,89254,0,MEZILLES,Mézilles,Mézilles +33,1972-12-01,COM,89254,0,MEZILLES,Mézilles,Mézilles,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau 33,1972-12-01,COM,89263,0,MONETEAU,Monéteau,Monéteau,COM,89263,0,MONETEAU,Monéteau,Monéteau 33,1972-12-01,COM,89283,1,OUANNE,Ouanne,Ouanne,COM,89283,1,OUANNE,Ouanne,Ouanne -33,1972-12-01,COM,89325,0,RONCHERES,Ronchères,Ronchères,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau 33,1972-12-01,COM,89325,0,RONCHERES,Ronchères,Ronchères,COMA,89325,0,RONCHERES,Ronchères,Ronchères +33,1972-12-01,COM,89325,0,RONCHERES,Ronchères,Ronchères,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau 33,1972-12-01,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau -33,1972-12-01,COM,89352,0,SAINT MARTIN DES CHAMPS,Saint-Martin-des-Champs,Saint-Martin-des-Champs,COMA,89352,0,SAINT MARTIN DES CHAMPS,Saint-Martin-des-Champs,Saint-Martin-des-Champs 33,1972-12-01,COM,89352,0,SAINT MARTIN DES CHAMPS,Saint-Martin-des-Champs,Saint-Martin-des-Champs,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau +33,1972-12-01,COM,89352,0,SAINT MARTIN DES CHAMPS,Saint-Martin-des-Champs,Saint-Martin-des-Champs,COMA,89352,0,SAINT MARTIN DES CHAMPS,Saint-Martin-des-Champs,Saint-Martin-des-Champs 33,1972-12-01,COM,89389,0,SEPTFONDS,Septfonds,Septfonds,COM,89344,0,SAINT FARGEAU,Saint-Fargeau,Saint-Fargeau 33,1972-12-01,COM,89389,0,SEPTFONDS,Septfonds,Septfonds,COMA,89389,0,SEPTFONDS,Septfonds,Septfonds -33,1972-12-01,COM,89401,0,SOUGERES SUR SINOTTE,Sougères-sur-Sinotte,Sougères-sur-Sinotte,COMA,89401,0,SOUGERES SUR SINOTTE,Sougères-sur-Sinotte,Sougères-sur-Sinotte 33,1972-12-01,COM,89401,0,SOUGERES SUR SINOTTE,Sougères-sur-Sinotte,Sougères-sur-Sinotte,COM,89263,0,MONETEAU,Monéteau,Monéteau +33,1972-12-01,COM,89401,0,SOUGERES SUR SINOTTE,Sougères-sur-Sinotte,Sougères-sur-Sinotte,COMA,89401,0,SOUGERES SUR SINOTTE,Sougères-sur-Sinotte,Sougères-sur-Sinotte 33,1972-12-01,COM,90042,1,EVETTE,Évette,Évette,COM,90042,1,EVETTE SALBERT,Évette-Salbert,Évette-Salbert 33,1972-12-01,COM,90092,0,SALBERT,Salbert,Salbert,COM,90042,1,EVETTE SALBERT,Évette-Salbert,Évette-Salbert 33,1972-12-01,COM,90092,0,SALBERT,Salbert,Salbert,COMA,90092,0,SALBERT,Salbert,Salbert @@ -10869,14 +10677,14 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-11-01,COM,23094,0,GOUZOUGNAT,Gouzougnat,Gouzougnat,COM,23093,0,GOUZON,Gouzon,Gouzon 33,1972-11-01,COM,23094,0,GOUZOUGNAT,Gouzougnat,Gouzougnat,COMA,23094,0,GOUZOUGNAT,Gouzougnat,Gouzougnat 33,1972-11-01,COM,47157,0,MARMANDE,Marmande,Marmande,COM,47157,0,MARMANDE,Marmande,Marmande -33,1972-11-01,COM,47163,0,MAUVEZIN SUR GUPIE,Mauvezin-sur-Gupie,Mauvezin-sur-Gupie,COMA,47163,0,MAUVEZIN SUR GUPIE,Mauvezin-sur-Gupie,Mauvezin-sur-Gupie 33,1972-11-01,COM,47163,0,MAUVEZIN SUR GUPIE,Mauvezin-sur-Gupie,Mauvezin-sur-Gupie,COM,47157,0,MARMANDE,Marmande,Marmande +33,1972-11-01,COM,47163,0,MAUVEZIN SUR GUPIE,Mauvezin-sur-Gupie,Mauvezin-sur-Gupie,COMA,47163,0,MAUVEZIN SUR GUPIE,Mauvezin-sur-Gupie,Mauvezin-sur-Gupie 33,1972-11-01,COM,52074,0,BREUVANNES,Breuvannes,Breuvannes,COM,52074,0,BREUVANNES EN BASSIGNY,Breuvannes-en-Bassigny,Breuvannes-en-Bassigny 31,1972-11-01,COM,52086,0,BUXIERES LES FRONCLES,Buxières-lès-Froncles,Buxières-lès-Froncles,COM,52211,0,FRONCLES BUXIERES,Froncles-Buxières,Froncles-Buxières -33,1972-11-01,COM,52139,0,COLOMBEY LES CHOISEUL,Colombey-lès-Choiseul,Colombey-lès-Choiseul,COMA,52139,0,COLOMBEY LES CHOISEUL,Colombey-lès-Choiseul,Colombey-lès-Choiseul 33,1972-11-01,COM,52139,0,COLOMBEY LES CHOISEUL,Colombey-lès-Choiseul,Colombey-lès-Choiseul,COM,52074,0,BREUVANNES EN BASSIGNY,Breuvannes-en-Bassigny,Breuvannes-en-Bassigny -33,1972-11-01,COM,52154,0,CRENAY,Crenay,Crenay,COM,52205,0,FOULAIN,Foulain,Foulain +33,1972-11-01,COM,52139,0,COLOMBEY LES CHOISEUL,Colombey-lès-Choiseul,Colombey-lès-Choiseul,COMA,52139,0,COLOMBEY LES CHOISEUL,Colombey-lès-Choiseul,Colombey-lès-Choiseul 33,1972-11-01,COM,52154,0,CRENAY,Crenay,Crenay,COMA,52154,0,CRENAY,Crenay,Crenay +33,1972-11-01,COM,52154,0,CRENAY,Crenay,Crenay,COM,52205,0,FOULAIN,Foulain,Foulain 33,1972-11-01,COM,52205,0,FOULAIN,Foulain,Foulain,COM,52205,0,FOULAIN,Foulain,Foulain 31,1972-11-01,COM,52211,0,FRONCLES,Froncles,Froncles,COM,52211,0,FRONCLES BUXIERES,Froncles-Buxières,Froncles-Buxières 33,1972-11-01,COM,52242,0,HAUTE AMANCE,Haute-Amance,Haute-Amance,COM,52242,0,HAUTE AMANCE,Haute-Amance,Haute-Amance @@ -10885,30 +10693,26 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-11-01,COM,52297,0,LUZY SUR MARNE,Luzy-sur-Marne,Luzy-sur-Marne,COMA,52297,0,LUZY SUR MARNE,Luzy-sur-Marne,Luzy-sur-Marne 33,1972-11-01,COM,52324,0,MEUVY,Meuvy,Meuvy,COM,52074,0,BREUVANNES EN BASSIGNY,Breuvannes-en-Bassigny,Breuvannes-en-Bassigny 33,1972-11-01,COM,52324,0,MEUVY,Meuvy,Meuvy,COMA,52324,0,MEUVY,Meuvy,Meuvy -33,1972-11-01,COMA,52333,0,MONTLANDON,Montlandon,Montlandon,COMA,52333,0,MONTLANDON,Montlandon,Montlandon -33,1972-11-01,COMA,52333,0,MONTLANDON,Montlandon,Montlandon,COM,52242,0,HAUTE AMANCE,Haute-Amance,Haute-Amance -33,1972-11-01,COM,52368,1,ORMOY SUR AUBE,Ormoy-sur-Aube,Ormoy-sur-Aube,COMA,52368,1,ORMOY SUR AUBE,Ormoy-sur-Aube,Ormoy-sur-Aube 33,1972-11-01,COM,52368,1,ORMOY SUR AUBE,Ormoy-sur-Aube,Ormoy-sur-Aube,COM,52274,0,LATRECEY ORMOY SUR AUBE,Latrecey-Ormoy-sur-Aube,Latrecey-Ormoy-sur-Aube -33,1972-11-01,COM,52435,0,ROSOY SUR AMANCE,Rosoy-sur-Amance,Rosoy-sur-Amance,COMA,52435,0,ROSOY SUR AMANCE,Rosoy-sur-Amance,Rosoy-sur-Amance +33,1972-11-01,COM,52368,1,ORMOY SUR AUBE,Ormoy-sur-Aube,Ormoy-sur-Aube,COMA,52368,1,ORMOY SUR AUBE,Ormoy-sur-Aube,Ormoy-sur-Aube 33,1972-11-01,COM,52435,0,ROSOY SUR AMANCE,Rosoy-sur-Amance,Rosoy-sur-Amance,COM,52242,0,HAUTE AMANCE,Haute-Amance,Haute-Amance -33,1972-11-01,COMA,52496,0,TROISCHAMPS,Troischamps,Troischamps,COM,52242,0,HAUTE AMANCE,Haute-Amance,Haute-Amance -33,1972-11-01,COMA,52496,0,TROISCHAMPS,Troischamps,Troischamps,COMA,52496,0,TROISCHAMPS,Troischamps,Troischamps -33,1972-11-01,COM,67316,0,NEHWILLER PRES WOERTH,Nehwiller-près-Wœrth,Nehwiller-près-Wœrth,COM,67388,0,REICHSHOFFEN,Reichshoffen,Reichshoffen -33,1972-11-01,COM,67316,0,NEHWILLER PRES WOERTH,Nehwiller-près-Wœrth,Nehwiller-près-Wœrth,COMA,67316,0,NEHWILLER PRES WOERTH,Nehwiller-près-Wœrth,Nehwiller-près-Wœrth +33,1972-11-01,COM,52435,0,ROSOY SUR AMANCE,Rosoy-sur-Amance,Rosoy-sur-Amance,COMA,52435,0,ROSOY SUR AMANCE,Rosoy-sur-Amance,Rosoy-sur-Amance +33,1972-11-01,COM,67316,0,NEHWILLER PRES WORTH,Nehwiller-près-Wœrth,Nehwiller-près-Wœrth,COMA,67316,0,NEHWILLER PRES WORTH,Nehwiller-près-Wœrth,Nehwiller-près-Wœrth +33,1972-11-01,COM,67316,0,NEHWILLER PRES WORTH,Nehwiller-près-Wœrth,Nehwiller-près-Wœrth,COM,67388,0,REICHSHOFFEN,Reichshoffen,Reichshoffen 33,1972-11-01,COM,67388,0,REICHSHOFFEN,Reichshoffen,Reichshoffen,COM,67388,0,REICHSHOFFEN,Reichshoffen,Reichshoffen -33,1972-11-01,COM,80007,1,AGNIERES,Agnières,Agnières,COM,80436,0,HESCAMPS,Hescamps,Hescamps 33,1972-11-01,COM,80007,1,AGNIERES,Agnières,Agnières,COMA,80007,1,AGNIERES,Agnières,Agnières -33,1972-11-01,COM,80363,0,FRETTEMOLLE,Frettemolle,Frettemolle,COM,80436,0,HESCAMPS,Hescamps,Hescamps +33,1972-11-01,COM,80007,1,AGNIERES,Agnières,Agnières,COM,80436,0,HESCAMPS,Hescamps,Hescamps 33,1972-11-01,COM,80363,0,FRETTEMOLLE,Frettemolle,Frettemolle,COMA,80363,0,FRETTEMOLLE,Frettemolle,Frettemolle +33,1972-11-01,COM,80363,0,FRETTEMOLLE,Frettemolle,Frettemolle,COM,80436,0,HESCAMPS,Hescamps,Hescamps 33,1972-11-01,COM,80436,1,HESCAMPS SAINT CLAIR,Hescamps-Saint-Clair,Hescamps-Saint-Clair,COM,80436,0,HESCAMPS,Hescamps,Hescamps -33,1972-11-01,COM,80739,0,SOUPLICOURT,Souplicourt,Souplicourt,COMA,80739,0,SOUPLICOURT,Souplicourt,Souplicourt 33,1972-11-01,COM,80739,0,SOUPLICOURT,Souplicourt,Souplicourt,COM,80436,0,HESCAMPS,Hescamps,Hescamps -33,1972-10-01,COM,07021,1,AURIOLLES,Auriolles,Auriolles,COMA,07021,1,AURIOLLES,Auriolles,Auriolles -33,1972-10-01,COM,07021,1,AURIOLLES,Auriolles,Auriolles,COM,07207,0,SAINT ALBAN AURIOLLES,Saint-Alban-Auriolles,Saint-Alban-Auriolles -33,1972-10-01,COM,07207,0,SAINT ALBAN SOUS SAMPZON,Saint-Alban-sous-Sampzon,Saint-Alban-sous-Sampzon,COM,07207,0,SAINT ALBAN AURIOLLES,Saint-Alban-Auriolles,Saint-Alban-Auriolles +33,1972-11-01,COM,80739,0,SOUPLICOURT,Souplicourt,Souplicourt,COMA,80739,0,SOUPLICOURT,Souplicourt,Souplicourt +33,1972-10-01,COM,7021,1,AURIOLLES,Auriolles,Auriolles,COMA,7021,1,AURIOLLES,Auriolles,Auriolles +33,1972-10-01,COM,7021,1,AURIOLLES,Auriolles,Auriolles,COM,7207,0,SAINT ALBAN AURIOLLES,Saint-Alban-Auriolles,Saint-Alban-Auriolles +33,1972-10-01,COM,7207,0,SAINT ALBAN SOUS SAMPZON,Saint-Alban-sous-Sampzon,Saint-Alban-sous-Sampzon,COM,7207,0,SAINT ALBAN AURIOLLES,Saint-Alban-Auriolles,Saint-Alban-Auriolles 33,1972-10-01,COM,14068,0,BEUVILLE,Beuville,Beuville,COM,14068,0,BIEVILLE BEUVILLE,Biéville-Beuville,Biéville-Beuville -33,1972-10-01,COM,14072,0,BIEVILLE SUR ORNE,Biéville-sur-Orne,Biéville-sur-Orne,COMA,14072,0,BIEVILLE SUR ORNE,Biéville-sur-Orne,Biéville-sur-Orne 33,1972-10-01,COM,14072,0,BIEVILLE SUR ORNE,Biéville-sur-Orne,Biéville-sur-Orne,COM,14068,0,BIEVILLE BEUVILLE,Biéville-Beuville,Biéville-Beuville +33,1972-10-01,COM,14072,0,BIEVILLE SUR ORNE,Biéville-sur-Orne,Biéville-sur-Orne,COMA,14072,0,BIEVILLE SUR ORNE,Biéville-sur-Orne,Biéville-sur-Orne 33,1972-10-01,COM,14340,1,HUPPAIN,Huppain,Huppain,COMA,14340,1,HUPPAIN,Huppain,Huppain 33,1972-10-01,COM,14340,1,HUPPAIN,Huppain,Huppain,COM,14515,0,PORT EN BESSIN HUPPAIN,Port-en-Bessin-Huppain,Port-en-Bessin-Huppain 33,1972-10-01,COM,14515,0,PORT EN BESSIN,Port-en-Bessin,Port-en-Bessin,COM,14515,0,PORT EN BESSIN HUPPAIN,Port-en-Bessin-Huppain,Port-en-Bessin-Huppain @@ -10916,8 +10720,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1972-10-01,COM,27693,0,VILLEZ CHAMP DOMINEL,Villez-Champ-Dominel,Villez-Champ-Dominel,COM,27693,0,SYLVAINS LES MOULINS,Sylvains-les-Moulins,Sylvains-les-Moulins 31,1972-10-01,COM,48118,0,PRADES,Prades,Prades,COM,48146,0,SAINTE ENIMIE,Sainte-Enimie,Sainte-Enimie 31,1972-10-01,COM,48146,0,SAINTE ENIMIE,Sainte-Enimie,Sainte-Enimie,COM,48146,0,SAINTE ENIMIE,Sainte-Enimie,Sainte-Enimie -33,1972-10-01,COM,52030,1,AUTIGNY LE PETIT,Autigny-le-Petit,Autigny-le-Petit,COM,52156,0,CUREL AUTIGNY,Curel-Autigny,Curel-Autigny 33,1972-10-01,COM,52030,1,AUTIGNY LE PETIT,Autigny-le-Petit,Autigny-le-Petit,COMA,52030,1,AUTIGNY LE PETIT,Autigny-le-Petit,Autigny-le-Petit +33,1972-10-01,COM,52030,1,AUTIGNY LE PETIT,Autigny-le-Petit,Autigny-le-Petit,COM,52156,0,CUREL AUTIGNY,Curel-Autigny,Curel-Autigny 33,1972-10-01,COM,52050,0,BIESLES,Biesles,Biesles,COM,52050,0,BIESLES,Biesles,Biesles 33,1972-10-01,COM,52083,0,BUSSIERES LES BELMONT,Bussières-lès-Belmont,Bussières-lès-Belmont,COM,52083,0,CHAMPSEVRAINE,Champsevraine,Champsevraine 33,1972-10-01,COM,52143,0,CORGIRNON,Corgirnon,Corgirnon,COM,52083,0,CHAMPSEVRAINE,Champsevraine,Champsevraine @@ -10926,13 +10730,13 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-10-01,COM,52257,0,LAFERTE SUR AMANCE,Laferté-sur-Amance,Laferté-sur-Amance,COM,52257,0,LAFERTE SUR AMANCE,Laferté-sur-Amance,Laferté-sur-Amance 33,1972-10-01,COM,52390,0,PISSELOUP,Pisseloup,Pisseloup,COM,52257,0,LAFERTE SUR AMANCE,Laferté-sur-Amance,Laferté-sur-Amance 33,1972-10-01,COM,52390,0,PISSELOUP,Pisseloup,Pisseloup,COMA,52390,0,PISSELOUP,Pisseloup,Pisseloup -33,1972-10-01,COM,52412,2,PUITS DES MEZES,Puits-des-Mèzes,Le Puits-des-Mèzes,COMA,52412,2,PUITS DES MEZES,Puits-des-Mèzes,Le Puits-des-Mèzes 33,1972-10-01,COM,52412,2,PUITS DES MEZES,Puits-des-Mèzes,Le Puits-des-Mèzes,COM,52050,0,BIESLES,Biesles,Biesles -33,1972-10-01,COM,52513,0,VELLES,Velles,Velles,COMA,52513,0,VELLES,Velles,Velles +33,1972-10-01,COM,52412,2,PUITS DES MEZES,Puits-des-Mèzes,Le Puits-des-Mèzes,COMA,52412,2,PUITS DES MEZES,Puits-des-Mèzes,Le Puits-des-Mèzes 33,1972-10-01,COM,52513,0,VELLES,Velles,Velles,COM,52257,0,LAFERTE SUR AMANCE,Laferté-sur-Amance,Laferté-sur-Amance +33,1972-10-01,COM,52513,0,VELLES,Velles,Velles,COMA,52513,0,VELLES,Velles,Velles 33,1972-10-01,COM,57175,0,DIANE CAPELLE,Diane-Capelle,Diane-Capelle,COM,57175,0,DIANE ET KERPRICH,Diane-et-Kerprich,Diane-et-Kerprich -33,1972-10-01,COM,57362,0,KERPRICH AUX BOIS,Kerprich-aux-Bois,Kerprich-aux-Bois,COMA,57362,0,KERPRICH AUX BOIS,Kerprich-aux-Bois,Kerprich-aux-Bois 33,1972-10-01,COM,57362,0,KERPRICH AUX BOIS,Kerprich-aux-Bois,Kerprich-aux-Bois,COM,57175,0,DIANE ET KERPRICH,Diane-et-Kerprich,Diane-et-Kerprich +33,1972-10-01,COM,57362,0,KERPRICH AUX BOIS,Kerprich-aux-Bois,Kerprich-aux-Bois,COMA,57362,0,KERPRICH AUX BOIS,Kerprich-aux-Bois,Kerprich-aux-Bois 31,1972-10-01,COM,68018,0,BALSCHWILLER,Balschwiller,Balschwiller,COM,68018,0,BALSCHWILLER,Balschwiller,Balschwiller 31,1972-10-01,COM,68339,1,UEBERKUMEN,Ueberkumen,Ueberkumen,COM,68018,0,BALSCHWILLER,Balschwiller,Balschwiller 31,1972-10-01,COM,77092,3,CHAPELLE SUR CRECY,Chapelle-sur-Crécy,La Chapelle-sur-Crécy,COM,77142,0,CRECY LA CHAPELLE,Crécy-la-Chapelle,Crécy-la-Chapelle @@ -10942,15 +10746,15 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-10-01,COM,80245,0,DOMLEGER,Domléger,Domléger,COM,80245,0,DOMLEGER LONGVILLERS,Domléger-Longvillers,Domléger-Longvillers 31,1972-10-01,COM,80255,0,DREUIL HAMEL,Dreuil-Hamel,Dreuil-Hamel,COM,80013,1,AIRAINES,Airaines,Airaines 33,1972-10-01,COM,80406,1,HALLENCOURT,Hallencourt,Hallencourt,COM,80406,1,HALLENCOURT,Hallencourt,Hallencourt -33,1972-10-01,COM,80441,1,HOCQUINCOURT,Hocquincourt,Hocquincourt,COMA,80441,1,HOCQUINCOURT,Hocquincourt,Hocquincourt 33,1972-10-01,COM,80441,1,HOCQUINCOURT,Hocquincourt,Hocquincourt,COM,80406,1,HALLENCOURT,Hallencourt,Hallencourt +33,1972-10-01,COM,80441,1,HOCQUINCOURT,Hocquincourt,Hocquincourt,COMA,80441,1,HOCQUINCOURT,Hocquincourt,Hocquincourt 33,1972-10-01,COM,80492,0,LONGVILLERS,Longvillers,Longvillers,COM,80245,0,DOMLEGER LONGVILLERS,Domléger-Longvillers,Domléger-Longvillers 33,1972-10-01,COM,80492,0,LONGVILLERS,Longvillers,Longvillers,COMA,80492,0,LONGVILLERS,Longvillers,Longvillers -33,1972-10-01,COM,80610,1,ONVILLERS,Onvillers,Onvillers,COM,80623,0,PIENNES ONVILLERS,Piennes-Onvillers,Piennes-Onvillers 33,1972-10-01,COM,80610,1,ONVILLERS,Onvillers,Onvillers,COMA,80610,1,ONVILLERS,Onvillers,Onvillers +33,1972-10-01,COM,80610,1,ONVILLERS,Onvillers,Onvillers,COM,80623,0,PIENNES ONVILLERS,Piennes-Onvillers,Piennes-Onvillers 33,1972-10-01,COM,80623,0,PIENNES,Piennes,Piennes,COM,80623,0,PIENNES ONVILLERS,Piennes-Onvillers,Piennes-Onvillers -33,1972-10-01,COM,80712,0,SAINT PIERRE A GOUY,Saint-Pierre-à-Gouy,Saint-Pierre-à-Gouy,COMA,80712,0,SAINT PIERRE A GOUY,Saint-Pierre-à-Gouy,Saint-Pierre-à-Gouy 33,1972-10-01,COM,80712,0,SAINT PIERRE A GOUY,Saint-Pierre-à-Gouy,Saint-Pierre-à-Gouy,COM,80229,0,CROUY SAINT PIERRE,Crouy-Saint-Pierre,Crouy-Saint-Pierre +33,1972-10-01,COM,80712,0,SAINT PIERRE A GOUY,Saint-Pierre-à-Gouy,Saint-Pierre-à-Gouy,COMA,80712,0,SAINT PIERRE A GOUY,Saint-Pierre-à-Gouy,Saint-Pierre-à-Gouy 33,1972-10-01,COM,80817,0,WANEL,Wanel,Wanel,COM,80406,1,HALLENCOURT,Hallencourt,Hallencourt 33,1972-10-01,COM,80817,0,WANEL,Wanel,Wanel,COMA,80817,0,WANEL,Wanel,Wanel 33,1972-10-01,COM,85034,0,BOURNEZEAU,Bournezeau,Bournezeau,COM,85034,0,BOURNEZEAU,Bournezeau,Bournezeau @@ -10968,13 +10772,13 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-09-29,COM,73016,1,ANSIGNY,Ansigny,Ansigny,COM,73010,1,ALBENS,Albens,Albens 33,1972-09-29,COM,73016,1,ANSIGNY,Ansigny,Ansigny,COMA,73016,1,ANSIGNY,Ansigny,Ansigny 33,1972-09-20,COM,73013,1,ALBIEZ LE VIEUX,Albiez-le-Vieux,Albiez-le-Vieux,COM,73013,1,ALBIEZ MONTROND,Albiez-Montrond,Albiez-Montrond -33,1972-09-20,COM,73174,0,MONTROND,Montrond,Montrond,COMA,73174,0,MONTROND,Montrond,Montrond 33,1972-09-20,COM,73174,0,MONTROND,Montrond,Montrond,COM,73013,1,ALBIEZ MONTROND,Albiez-Montrond,Albiez-Montrond +33,1972-09-20,COM,73174,0,MONTROND,Montrond,Montrond,COMA,73174,0,MONTROND,Montrond,Montrond 33,1972-09-13,COM,73035,0,BEAUNE,Beaune,Beaune,COMA,73035,0,BEAUNE,Beaune,Beaune 33,1972-09-13,COM,73035,0,BEAUNE,Beaune,Beaune,COM,73261,0,SAINT MICHEL DE MAURIENNE,Saint-Michel-de-Maurienne,Saint-Michel-de-Maurienne 33,1972-09-13,COM,73261,0,SAINT MICHEL DE MAURIENNE,Saint-Michel-de-Maurienne,Saint-Michel-de-Maurienne,COM,73261,0,SAINT MICHEL DE MAURIENNE,Saint-Michel-de-Maurienne,Saint-Michel-de-Maurienne -33,1972-09-13,COM,73295,0,THYL,Thyl,Thyl,COMA,73295,0,THYL,Thyl,Thyl 33,1972-09-13,COM,73295,0,THYL,Thyl,Thyl,COM,73261,0,SAINT MICHEL DE MAURIENNE,Saint-Michel-de-Maurienne,Saint-Michel-de-Maurienne +33,1972-09-13,COM,73295,0,THYL,Thyl,Thyl,COMA,73295,0,THYL,Thyl,Thyl 33,1972-09-01,COM,14133,0,CANON,Canon,Canon,COMA,14133,0,CANON,Canon,Canon 33,1972-09-01,COM,14133,0,CANON,Canon,Canon,COM,14431,0,MEZIDON CANON,Mézidon-Canon,Mézidon-Canon 33,1972-09-01,COM,14431,0,MEZIDON,Mézidon,Mézidon,COM,14431,0,MEZIDON CANON,Mézidon-Canon,Mézidon-Canon @@ -10987,7 +10791,7 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-09-01,COM,23163,3,ROCHETTE,Rochette,La Rochette,COMA,23163,3,ROCHETTE,Rochette,La Rochette 33,1972-09-01,COM,23163,3,ROCHETTE,Rochette,La Rochette,COM,23220,0,SAINT MEDARD LA ROCHETTE,Saint-Médard-la-Rochette,Saint-Médard-la-Rochette 33,1972-09-01,COM,23220,0,SAINT MEDARD,Saint-Médard,Saint-Médard,COM,23220,0,SAINT MEDARD LA ROCHETTE,Saint-Médard-la-Rochette,Saint-Médard-la-Rochette -33,1972-09-01,COM,43013,0,AUTEYRAC,Auteyrac,Auteyrac,COM,43013,0,VISSAC AUTEYRAC,Vissac-Auteyrac,Vissac-Auteyrac +33,1972-09-01,COM,43013,1,AUTEYRAC,Auteyrac,Auteyrac,COM,43013,0,VISSAC AUTEYRAC,Vissac-Auteyrac,Vissac-Auteyrac 33,1972-09-01,COM,43266,0,VISSAC,Vissac,Vissac,COM,43013,0,VISSAC AUTEYRAC,Vissac-Auteyrac,Vissac-Auteyrac 33,1972-09-01,COM,43266,0,VISSAC,Vissac,Vissac,COMA,43266,0,VISSAC,Vissac,Vissac 33,1972-09-01,COM,45048,0,BOUZONVILLE EN BEAUCE,Bouzonville-en-Beauce,Bouzonville-en-Beauce,COMA,45048,0,BOUZONVILLE EN BEAUCE,Bouzonville-en-Beauce,Bouzonville-en-Beauce @@ -10998,25 +10802,25 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-09-01,COM,47166,0,MEYLAN,Meylan,Meylan,COMA,47166,0,MEYLAN,Meylan,Meylan 33,1972-09-01,COM,47166,0,MEYLAN,Meylan,Meylan,COM,47302,0,SOS,Sos,Sos 33,1972-09-01,COM,47302,0,SOS,Sos,Sos,COM,47302,0,SOS,Sos,Sos -33,1972-09-01,COM,52010,1,ANGLUS,Anglus,Anglus,COM,52088,0,CEFFONDS,Ceffonds,Ceffonds 33,1972-09-01,COM,52010,1,ANGLUS,Anglus,Anglus,COMA,52010,1,ANGLUS,Anglus,Anglus +33,1972-09-01,COM,52010,1,ANGLUS,Anglus,Anglus,COM,52088,0,CEFFONDS,Ceffonds,Ceffonds 33,1972-09-01,COM,52017,1,ARC EN BARROIS,Arc-en-Barrois,Arc-en-Barrois,COM,52017,1,ARC EN BARROIS,Arc-en-Barrois,Arc-en-Barrois 33,1972-09-01,COM,52022,1,AUBEPIERRE SUR AUBE,Aubepierre-sur-Aube,Aubepierre-sur-Aube,COM,52017,1,ARC EN BARROIS,Arc-en-Barrois,Arc-en-Barrois 33,1972-09-01,COM,52022,1,AUBEPIERRE SUR AUBE,Aubepierre-sur-Aube,Aubepierre-sur-Aube,COMA,52022,1,AUBEPIERRE SUR AUBE,Aubepierre-sur-Aube,Aubepierre-sur-Aube 33,1972-09-01,COM,52088,0,CEFFONDS,Ceffonds,Ceffonds,COM,52088,0,CEFFONDS,Ceffonds,Ceffonds -33,1972-09-01,COM,52144,0,CORLEE,Corlée,Corlée,COM,52269,0,LANGRES,Langres,Langres 33,1972-09-01,COM,52144,0,CORLEE,Corlée,Corlée,COMA,52144,0,CORLEE,Corlée,Corlée +33,1972-09-01,COM,52144,0,CORLEE,Corlée,Corlée,COM,52269,0,LANGRES,Langres,Langres 33,1972-09-01,COM,52230,0,GUDMONT,Gudmont,Gudmont,COM,52230,0,GUDMONT VILLIERS,Gudmont-Villiers,Gudmont-Villiers -33,1972-09-01,COM,52236,1,HARMEVILLE,Harméville,Harméville,COM,52288,0,LEZEVILLE,Lezéville,Lezéville 33,1972-09-01,COM,52236,1,HARMEVILLE,Harméville,Harméville,COMA,52236,1,HARMEVILLE,Harméville,Harméville +33,1972-09-01,COM,52236,1,HARMEVILLE,Harméville,Harméville,COM,52288,0,LEZEVILLE,Lezéville,Lezéville 33,1972-09-01,COM,52266,0,LANEUVILLE A REMY,Laneuville-à-Rémy,Laneuville-à-Rémy,COMA,52266,0,LANEUVILLE A REMY,Laneuville-à-Rémy,Laneuville-à-Rémy 33,1972-09-01,COM,52266,0,LANEUVILLE A REMY,Laneuville-à-Rémy,Laneuville-à-Rémy,COM,52427,0,ROBERT MAGNY LANEUVILLE A REMY,Robert-Magny-Laneuville-à-Rémy,Robert-Magny-Laneuville-à-Rémy 33,1972-09-01,COM,52268,0,LANEUVILLE AU BOIS,Laneuville-au-Bois,Laneuville-au-Bois,COMA,52268,0,LANEUVILLE AU BOIS,Laneuville-au-Bois,Laneuville-au-Bois 33,1972-09-01,COM,52268,0,LANEUVILLE AU BOIS,Laneuville-au-Bois,Laneuville-au-Bois,COM,52288,0,LEZEVILLE,Lezéville,Lezéville 33,1972-09-01,COM,52269,0,LANGRES,Langres,Langres,COM,52269,0,LANGRES,Langres,Langres 33,1972-09-01,COM,52288,0,LEZEVILLE,Lezéville,Lezéville,COM,52288,0,LEZEVILLE,Lezéville,Lezéville -33,1972-09-01,COM,52329,0,MONTESSON,Montesson,Montesson,COM,52388,0,PIERREMONT SUR AMANCE,Pierremont-sur-Amance,Pierremont-sur-Amance 33,1972-09-01,COM,52329,0,MONTESSON,Montesson,Montesson,COMA,52329,0,MONTESSON,Montesson,Montesson +33,1972-09-01,COM,52329,0,MONTESSON,Montesson,Montesson,COM,52388,0,PIERREMONT SUR AMANCE,Pierremont-sur-Amance,Pierremont-sur-Amance 33,1972-09-01,COM,52384,0,PERROGNEY,Perrogney,Perrogney,COM,52384,0,PERROGNEY LES FONTAINES,Perrogney-les-Fontaines,Perrogney-les-Fontaines 33,1972-09-01,COM,52388,0,PIERREFAITES,Pierrefaites,Pierrefaites,COM,52388,0,PIERREMONT SUR AMANCE,Pierremont-sur-Amance,Pierremont-sur-Amance 33,1972-09-01,COM,52389,0,PIERREFONTAINES,Pierrefontaines,Pierrefontaines,COM,52384,0,PERROGNEY LES FONTAINES,Perrogney-les-Fontaines,Perrogney-les-Fontaines @@ -11027,16 +10831,16 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-09-01,COM,52466,0,SAUVAGE MAGNY,Sauvage-Magny,Sauvage-Magny,COM,52088,0,CEFFONDS,Ceffonds,Ceffonds 33,1972-09-01,COM,52466,0,SAUVAGE MAGNY,Sauvage-Magny,Sauvage-Magny,COMA,52466,0,SAUVAGE MAGNY,Sauvage-Magny,Sauvage-Magny 33,1972-09-01,COM,52479,0,SOMMEVOIRE,Sommevoire,Sommevoire,COM,52479,0,SOMMEVOIRE,Sommevoire,Sommevoire -33,1972-09-01,COM,52537,0,VILLIERS SUR MARNE,Villiers-sur-Marne,Villiers-sur-Marne,COMA,52537,0,VILLIERS SUR MARNE,Villiers-sur-Marne,Villiers-sur-Marne 33,1972-09-01,COM,52537,0,VILLIERS SUR MARNE,Villiers-sur-Marne,Villiers-sur-Marne,COM,52230,0,GUDMONT VILLIERS,Gudmont-Villiers,Gudmont-Villiers -33,1972-09-01,COM,53044,0,BRETIGNOLLES LE MOULIN,Brétignolles-le-Moulin,Brétignolles-le-Moulin,COM,53118,2,HOUSSEAU BRETIGNOLLES,Housseau-Brétignolles,Le Housseau-Brétignolles +33,1972-09-01,COM,52537,0,VILLIERS SUR MARNE,Villiers-sur-Marne,Villiers-sur-Marne,COMA,52537,0,VILLIERS SUR MARNE,Villiers-sur-Marne,Villiers-sur-Marne 33,1972-09-01,COM,53044,0,BRETIGNOLLES LE MOULIN,Brétignolles-le-Moulin,Brétignolles-le-Moulin,COMA,53044,0,BRETIGNOLLES LE MOULIN,Brétignolles-le-Moulin,Brétignolles-le-Moulin +33,1972-09-01,COM,53044,0,BRETIGNOLLES LE MOULIN,Brétignolles-le-Moulin,Brétignolles-le-Moulin,COM,53118,2,HOUSSEAU BRETIGNOLLES,Housseau-Brétignolles,Le Housseau-Brétignolles 33,1972-09-01,COM,53118,2,HOUSSEAU,Housseau,Le Housseau,COM,53118,2,HOUSSEAU BRETIGNOLLES,Housseau-Brétignolles,Le Housseau-Brétignolles 33,1972-09-01,COM,55276,0,LANDRECOURT,Landrecourt,Landrecourt,COM,55276,0,LANDRECOURT LEMPIRE,Landrecourt-Lempire,Landrecourt-Lempire 33,1972-09-01,COM,55287,0,LEMPIRE AUX BOIS,Lempire-aux-Bois,Lempire-aux-Bois,COM,55276,0,LANDRECOURT LEMPIRE,Landrecourt-Lempire,Landrecourt-Lempire 33,1972-09-01,COM,55287,0,LEMPIRE AUX BOIS,Lempire-aux-Bois,Lempire-aux-Bois,COMA,55287,0,LEMPIRE AUX BOIS,Lempire-aux-Bois,Lempire-aux-Bois -33,1972-09-01,COM,64076,1,AUDEJOS,Audéjos,Audéjos,COM,64300,0,LACQ,Lacq,Lacq 33,1972-09-01,COM,64076,1,AUDEJOS,Audéjos,Audéjos,COMA,64076,1,AUDEJOS,Audéjos,Audéjos +33,1972-09-01,COM,64076,1,AUDEJOS,Audéjos,Audéjos,COM,64300,0,LACQ,Lacq,Lacq 33,1972-09-01,COM,64300,0,LACQ,Lacq,Lacq,COM,64300,0,LACQ,Lacq,Lacq 33,1972-09-01,COM,67263,0,LEMBACH,Lembach,Lembach,COM,67263,0,LEMBACH,Lembach,Lembach 33,1972-09-01,COM,67284,0,MATTSTALL,Mattstall,Mattstall,COM,67263,0,LEMBACH,Lembach,Lembach @@ -11044,8 +10848,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1972-09-01,COM,68220,0,MOYEN MUESPACH,Moyen-Muespach,Moyen-Muespach,COM,68221,0,MUESPACH,Muespach,Muespach 31,1972-09-01,COM,68221,0,MUESPACH LE BAS,Muespach-le-Bas,Muespach-le-Bas,COM,68221,0,MUESPACH,Muespach,Muespach 33,1972-09-01,COM,85003,1,AIZENAY,Aizenay,Aizenay,COM,85003,1,AIZENAY,Aizenay,Aizenay -33,1972-09-01,COM,85055,3,CHAPELLE PALLUAU,Chapelle-Palluau,La Chapelle-Palluau,COMA,85055,3,CHAPELLE PALLUAU,Chapelle-Palluau,La Chapelle-Palluau 33,1972-09-01,COM,85055,3,CHAPELLE PALLUAU,Chapelle-Palluau,La Chapelle-Palluau,COM,85003,1,AIZENAY,Aizenay,Aizenay +33,1972-09-01,COM,85055,3,CHAPELLE PALLUAU,Chapelle-Palluau,La Chapelle-Palluau,COMA,85055,3,CHAPELLE PALLUAU,Chapelle-Palluau,La Chapelle-Palluau 10,1972-08-07,COM,17060,0,BOUTENAC,Boutenac,Boutenac,COM,17060,0,BOUTENAC TOUVENT,Boutenac-Touvent,Boutenac-Touvent 10,1972-08-07,COM,54110,0,CERCUEIL,Cercueil,Cercueil,COM,54110,0,CERVILLE,Cerville,Cerville 10,1972-08-07,COM,82051,0,DURFORT,Durfort,Durfort,COM,82051,0,DURFORT LACAPELETTE,Durfort-Lacapelette,Durfort-Lacapelette @@ -11054,49 +10858,49 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-08-04,COM,47048,0,CANCON,Cancon,Cancon,COM,47048,0,CANCON,Cancon,Cancon 33,1972-08-04,COM,47223,0,RIVES,Rives,Rives,COMA,47223,0,RIVES,Rives,Rives 33,1972-08-04,COM,47223,0,RIVES,Rives,Rives,COM,47324,0,VILLEREAL,Villeréal,Villeréal -33,1972-08-04,COM,47259,0,SAINT MAURICE DE LESTAPEL,Saint-Maurice-de-Lestapel,Saint-Maurice-de-Lestapel,COMA,47259,0,SAINT MAURICE DE LESTAPEL,Saint-Maurice-de-Lestapel,Saint-Maurice-de-Lestapel 33,1972-08-04,COM,47259,0,SAINT MAURICE DE LESTAPEL,Saint-Maurice-de-Lestapel,Saint-Maurice-de-Lestapel,COM,47048,0,CANCON,Cancon,Cancon +33,1972-08-04,COM,47259,0,SAINT MAURICE DE LESTAPEL,Saint-Maurice-de-Lestapel,Saint-Maurice-de-Lestapel,COMA,47259,0,SAINT MAURICE DE LESTAPEL,Saint-Maurice-de-Lestapel,Saint-Maurice-de-Lestapel 33,1972-08-04,COM,47324,0,VILLEREAL,Villeréal,Villeréal,COM,47324,0,VILLEREAL,Villeréal,Villeréal 33,1972-08-03,COM,47206,0,PINEL HAUTERIVE,Pinel-Hauterive,Pinel-Hauterive,COM,47206,0,PINEL HAUTERIVE,Pinel-Hauterive,Pinel-Hauterive -33,1972-08-03,COM,47268,0,SAINT PIERRE DE CAUBEL,Saint-Pierre-de-Caubel,Saint-Pierre-de-Caubel,COMA,47268,0,SAINT PIERRE DE CAUBEL,Saint-Pierre-de-Caubel,Saint-Pierre-de-Caubel 33,1972-08-03,COM,47268,0,SAINT PIERRE DE CAUBEL,Saint-Pierre-de-Caubel,Saint-Pierre-de-Caubel,COM,47206,0,PINEL HAUTERIVE,Pinel-Hauterive,Pinel-Hauterive +33,1972-08-03,COM,47268,0,SAINT PIERRE DE CAUBEL,Saint-Pierre-de-Caubel,Saint-Pierre-de-Caubel,COMA,47268,0,SAINT PIERRE DE CAUBEL,Saint-Pierre-de-Caubel,Saint-Pierre-de-Caubel 31,1972-08-01,COM,26029,3,BATIE CREMEZIN,Bâtie-Crémezin,La Bâtie-Crémezin,COM,26136,0,VAL MARAVEL,Val-Maravel,Val-Maravel 31,1972-08-01,COM,26136,0,FOURCINET,Fourcinet,Fourcinet,COM,26136,0,VAL MARAVEL,Val-Maravel,Val-Maravel 31,1972-08-01,COM,26237,2,PILHON,Pilhon,Le Pilhon,COM,26136,0,VAL MARAVEL,Val-Maravel,Val-Maravel -33,1972-08-01,COM,47058,0,CAUBEYRES,Caubeyres,Caubeyres,COM,47093,0,FARGUES SUR OURBISE,Fargues-sur-Ourbise,Fargues-sur-Ourbise 33,1972-08-01,COM,47058,0,CAUBEYRES,Caubeyres,Caubeyres,COMA,47058,0,CAUBEYRES,Caubeyres,Caubeyres +33,1972-08-01,COM,47058,0,CAUBEYRES,Caubeyres,Caubeyres,COM,47093,0,FARGUES SUR OURBISE,Fargues-sur-Ourbise,Fargues-sur-Ourbise 33,1972-08-01,COM,47093,0,FARGUES SUR OURBISE,Fargues-sur-Ourbise,Fargues-sur-Ourbise,COM,47093,0,FARGUES SUR OURBISE,Fargues-sur-Ourbise,Fargues-sur-Ourbise 33,1972-08-01,COM,47112,0,GRATELOUP,Grateloup,Grateloup,COM,47112,0,GRATELOUP,Grateloup,Grateloup -33,1972-08-01,COM,47243,0,SAINT GAYRAND,Saint-Gayrand,Saint-Gayrand,COMA,47243,0,SAINT GAYRAND,Saint-Gayrand,Saint-Gayrand 33,1972-08-01,COM,47243,0,SAINT GAYRAND,Saint-Gayrand,Saint-Gayrand,COM,47112,0,GRATELOUP,Grateloup,Grateloup -33,1972-08-01,COM,52032,1,AVRAINVILLE,Avrainville,Avrainville,COM,52497,0,TROISFONTAINES LA VILLE,Troisfontaines-la-Ville,Troisfontaines-la-Ville +33,1972-08-01,COM,47243,0,SAINT GAYRAND,Saint-Gayrand,Saint-Gayrand,COMA,47243,0,SAINT GAYRAND,Saint-Gayrand,Saint-Gayrand 33,1972-08-01,COM,52032,1,AVRAINVILLE,Avrainville,Avrainville,COMA,52032,1,AVRAINVILLE,Avrainville,Avrainville +33,1972-08-01,COM,52032,1,AVRAINVILLE,Avrainville,Avrainville,COM,52497,0,TROISFONTAINES LA VILLE,Troisfontaines-la-Ville,Troisfontaines-la-Ville 33,1972-08-01,COM,52035,0,BAISSEY,Baissey,Baissey,COM,52035,0,HAUTS DE VINGEANNE,Hauts-de-Vingeanne,Hauts-de-Vingeanne -33,1972-08-01,COM,52042,0,BEAUCHEMIN,Beauchemin,Beauchemin,COM,52432,0,ROLAMPONT,Rolampont,Rolampont 33,1972-08-01,COM,52042,0,BEAUCHEMIN,Beauchemin,Beauchemin,COMA,52042,0,BEAUCHEMIN,Beauchemin,Beauchemin +33,1972-08-01,COM,52042,0,BEAUCHEMIN,Beauchemin,Beauchemin,COM,52432,0,ROLAMPONT,Rolampont,Rolampont 31,1972-08-01,COM,52098,0,CHAMEROY,Chameroy,Chameroy,COM,52431,0,ROCHETAILLEE,Rochetaillée,Rochetaillée 33,1972-08-01,COM,52103,0,CHAMPIGNY SOUS VARENNES,Champigny-sous-Varennes,Champigny-sous-Varennes,COMA,52103,0,CHAMPIGNY SOUS VARENNES,Champigny-sous-Varennes,Champigny-sous-Varennes 33,1972-08-01,COM,52103,0,CHAMPIGNY SOUS VARENNES,Champigny-sous-Varennes,Champigny-sous-Varennes,COM,52504,0,TERRE NATALE,Terre-Natale,Terre-Natale -33,1972-08-01,COM,52111,0,CHARMOILLES,Charmoilles,Charmoilles,COM,52432,0,ROLAMPONT,Rolampont,Rolampont 33,1972-08-01,COM,52111,0,CHARMOILLES,Charmoilles,Charmoilles,COMA,52111,0,CHARMOILLES,Charmoilles,Charmoilles -33,1972-08-01,COM,52124,0,CHEZEAUX,Chézeaux,Chézeaux,COM,52504,0,TERRE NATALE,Terre-Natale,Terre-Natale +33,1972-08-01,COM,52111,0,CHARMOILLES,Charmoilles,Charmoilles,COM,52432,0,ROLAMPONT,Rolampont,Rolampont 33,1972-08-01,COM,52124,0,CHEZEAUX,Chézeaux,Chézeaux,COMA,52124,0,CHEZEAUX,Chézeaux,Chézeaux +33,1972-08-01,COM,52124,0,CHEZEAUX,Chézeaux,Chézeaux,COM,52504,0,TERRE NATALE,Terre-Natale,Terre-Natale 31,1972-08-01,COM,52148,0,COURCELLES SUR AUJON,Courcelles-sur-Aujon,Courcelles-sur-Aujon,COM,52450,0,SAINT LOUP SUR AUJON,Saint-Loup-sur-Aujon,Saint-Loup-sur-Aujon 31,1972-08-01,COM,52188,1,ERISEUL,Ériseul,Ériseul,COM,52450,0,SAINT LOUP SUR AUJON,Saint-Loup-sur-Aujon,Saint-Loup-sur-Aujon 33,1972-08-01,COM,52202,0,FLORNOY,Flornoy,Flornoy,COMA,52202,0,FLORNOY,Flornoy,Flornoy 33,1972-08-01,COM,52202,0,FLORNOY,Flornoy,Flornoy,COM,52497,0,TROISFONTAINES LA VILLE,Troisfontaines-la-Ville,Troisfontaines-la-Ville 33,1972-08-01,COM,52223,0,GILLEY,Gilley,Gilley,COMA,52223,0,GILLEY,Gilley,Gilley 33,1972-08-01,COM,52223,0,GILLEY,Gilley,Gilley,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon -33,1972-08-01,COM,52270,0,LANNES,Lannes,Lannes,COM,52432,0,ROLAMPONT,Rolampont,Rolampont 33,1972-08-01,COM,52270,0,LANNES,Lannes,Lannes,COMA,52270,0,LANNES,Lannes,Lannes +33,1972-08-01,COM,52270,0,LANNES,Lannes,Lannes,COM,52432,0,ROLAMPONT,Rolampont,Rolampont 33,1972-08-01,COM,52285,0,LEUCHEY,Leuchey,Leuchey,COM,52035,0,HAUTS DE VINGEANNE,Hauts-de-Vingeanne,Hauts-de-Vingeanne 33,1972-08-01,COM,52285,0,LEUCHEY,Leuchey,Leuchey,COMA,52285,0,LEUCHEY,Leuchey,Leuchey 33,1972-08-01,COM,52387,0,PIEPAPE,Piépape,Piépape,COMA,52387,0,PIEPAPE,Piépape,Piépape 33,1972-08-01,COM,52387,0,PIEPAPE,Piépape,Piépape,COM,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac 33,1972-08-01,COM,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl,COMA,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl 33,1972-08-01,COM,52394,0,POINSON LES FAYL,Poinson-lès-Fayl,Poinson-lès-Fayl,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon -33,1972-08-01,COM,52402,0,PRANGEY,Prangey,Prangey,COM,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac 33,1972-08-01,COM,52402,0,PRANGEY,Prangey,Prangey,COMA,52402,0,PRANGEY,Prangey,Prangey +33,1972-08-01,COM,52402,0,PRANGEY,Prangey,Prangey,COM,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac 33,1972-08-01,COM,52406,0,PRESSIGNY,Pressigny,Pressigny,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon 31,1972-08-01,COM,52431,0,ROCHETAILLEE SUR AUJON,Rochetaillée-sur-Aujon,Rochetaillée-sur-Aujon,COM,52431,0,ROCHETAILLEE,Rochetaillée,Rochetaillée 33,1972-08-01,COM,52432,0,ROLAMPONT,Rolampont,Rolampont,COM,52432,0,ROLAMPONT,Rolampont,Rolampont @@ -11106,21 +10910,21 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-08-01,COM,52454,0,SAINT MICHEL,Saint-Michel,Saint-Michel,COM,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac 33,1972-08-01,COM,52467,0,SAVIGNY,Savigny,Savigny,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon 33,1972-08-01,COM,52467,0,SAVIGNY,Savigny,Savigny,COMA,52467,0,SAVIGNY,Savigny,Savigny -33,1972-08-01,COM,52468,0,SEMILLY,Semilly,Semilly,COMA,52468,0,SEMILLY,Semilly,Semilly 33,1972-08-01,COM,52468,0,SEMILLY,Semilly,Semilly,COM,52444,0,SAINT BLIN SEMILLY,Saint-Blin-Semilly,Saint-Blin-Semilly +33,1972-08-01,COM,52468,0,SEMILLY,Semilly,Semilly,COMA,52468,0,SEMILLY,Semilly,Semilly 33,1972-08-01,COM,52493,0,TORNAY,Tornay,Tornay,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon 33,1972-08-01,COM,52493,0,TORNAY,Tornay,Tornay,COMA,52493,0,TORNAY,Tornay,Tornay 33,1972-08-01,COM,52497,0,TROISFONTAINES,Troisfontaines,Troisfontaines,COM,52497,0,TROISFONTAINES LA VILLE,Troisfontaines-la-Ville,Troisfontaines-la-Ville 33,1972-08-01,COM,52498,0,TRONCHOY,Tronchoy,Tronchoy,COM,52432,0,ROLAMPONT,Rolampont,Rolampont 33,1972-08-01,COM,52498,0,TRONCHOY,Tronchoy,Tronchoy,COMA,52498,0,TRONCHOY,Tronchoy,Tronchoy -33,1972-08-01,COM,52503,0,VALLEROY,Valleroy,Valleroy,COMA,52503,0,VALLEROY,Valleroy,Valleroy 33,1972-08-01,COM,52503,0,VALLEROY,Valleroy,Valleroy,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon +33,1972-08-01,COM,52503,0,VALLEROY,Valleroy,Valleroy,COMA,52503,0,VALLEROY,Valleroy,Valleroy 33,1972-08-01,COM,52504,0,VARENNES SUR AMANCE,Varennes-sur-Amance,Varennes-sur-Amance,COM,52504,0,TERRE NATALE,Terre-Natale,Terre-Natale 33,1972-08-01,COM,52508,0,VAUX LA DOUCE,Vaux-la-Douce,Vaux-la-Douce,COMA,52508,0,VAUX LA DOUCE,Vaux-la-Douce,Vaux-la-Douce 33,1972-08-01,COM,52508,0,VAUX LA DOUCE,Vaux-la-Douce,Vaux-la-Douce,COM,52544,0,VOISEY,Voisey,Voisey 33,1972-08-01,COM,52529,0,VILLEGUSIEN,Villegusien,Villegusien,COM,52529,0,VILLEGUSIEN LE LAC,Villegusien-le-Lac,Villegusien-le-Lac -33,1972-08-01,COM,52532,0,VILLIERS AUX BOIS,Villiers-aux-Bois,Villiers-aux-Bois,COMA,52532,0,VILLIERS AUX BOIS,Villiers-aux-Bois,Villiers-aux-Bois 33,1972-08-01,COM,52532,0,VILLIERS AUX BOIS,Villiers-aux-Bois,Villiers-aux-Bois,COM,52497,0,TROISFONTAINES LA VILLE,Troisfontaines-la-Ville,Troisfontaines-la-Ville +33,1972-08-01,COM,52532,0,VILLIERS AUX BOIS,Villiers-aux-Bois,Villiers-aux-Bois,COMA,52532,0,VILLIERS AUX BOIS,Villiers-aux-Bois,Villiers-aux-Bois 33,1972-08-01,COM,52544,0,VOISEY,Voisey,Voisey,COM,52544,0,VOISEY,Voisey,Voisey 33,1972-08-01,COM,52546,0,VONCOURT,Voncourt,Voncourt,COM,52406,0,SAINT PEREGRIN SUR VANNON,Saint-Pérégrin-sur-Vannon,Saint-Pérégrin-sur-Vannon 33,1972-08-01,COM,52546,0,VONCOURT,Voncourt,Voncourt,COMA,52546,0,VONCOURT,Voncourt,Voncourt @@ -11128,27 +10932,27 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-08-01,COM,67042,0,BIRLENBACH,Birlenbach,Birlenbach,COM,67104,0,DRACHENBRONN BIRLENBACH,Drachenbronn-Birlenbach,Drachenbronn-Birlenbach 33,1972-08-01,COM,67104,0,DRACHENBRONN,Drachenbronn,Drachenbronn,COM,67104,0,DRACHENBRONN BIRLENBACH,Drachenbronn-Birlenbach,Drachenbronn-Birlenbach 31,1972-08-01,COM,68053,0,BRINIGHOFFEN,Brinighoffen,Brinighoffen,COM,68081,0,SAINT BERNARD,Saint-Bernard,Saint-Bernard -31,1972-08-01,COM,68081,0,ENSCHINGEN,Enschingen,Enschingen,COM,68081,0,SAINT BERNARD,Saint-Bernard,Saint-Bernard -33,1972-08-01,COM,78187,0,CRACHES,Craches,Craches,COM,78506,0,PRUNAY SOUS ABLIS,Prunay-sous-Ablis,Prunay-sous-Ablis +31,1972-08-01,COM,68081,1,ENSCHINGEN,Enschingen,Enschingen,COM,68081,0,SAINT BERNARD,Saint-Bernard,Saint-Bernard 33,1972-08-01,COM,78187,0,CRACHES,Craches,Craches,COMA,78187,0,CRACHES,Craches,Craches +33,1972-08-01,COM,78187,0,CRACHES,Craches,Craches,COM,78506,0,PRUNAY SOUS ABLIS,Prunay-sous-Ablis,Prunay-sous-Ablis 33,1972-08-01,COM,78506,0,PRUNAY SOUS ABLIS,Prunay-sous-Ablis,Prunay-sous-Ablis,COM,78506,0,PRUNAY SOUS ABLIS,Prunay-sous-Ablis,Prunay-sous-Ablis -33,1972-08-01,COM,80257,0,DREUIL LES MOLLIENS,Dreuil-lès-Molliens,Dreuil-lès-Molliens,COM,80554,0,MOLLIENS DREUIL,Molliens-Dreuil,Molliens-Dreuil 33,1972-08-01,COM,80257,0,DREUIL LES MOLLIENS,Dreuil-lès-Molliens,Dreuil-lès-Molliens,COMA,80257,0,DREUIL LES MOLLIENS,Dreuil-lès-Molliens,Dreuil-lès-Molliens +33,1972-08-01,COM,80257,0,DREUIL LES MOLLIENS,Dreuil-lès-Molliens,Dreuil-lès-Molliens,COM,80554,0,MOLLIENS DREUIL,Molliens-Dreuil,Molliens-Dreuil 33,1972-08-01,COM,80554,0,MOLLIENS VIDAME,Molliens-Vidame,Molliens-Vidame,COM,80554,0,MOLLIENS DREUIL,Molliens-Dreuil,Molliens-Dreuil 33,1972-07-18,COM,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche,COM,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche -33,1972-07-18,COM,73024,4,AVANCHERS,Avanchers,Les Avanchers,COMA,73024,4,AVANCHERS,Avanchers,Les Avanchers 33,1972-07-18,COM,73024,4,AVANCHERS,Avanchers,Les Avanchers,COM,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche +33,1972-07-18,COM,73024,4,AVANCHERS,Avanchers,Les Avanchers,COMA,73024,4,AVANCHERS,Avanchers,Les Avanchers 33,1972-07-15,COM,90068,0,MEROUX,Meroux,Meroux,COM,90068,0,MEROUX MOVAL,Meroux-Moval,Meroux-Moval 33,1972-07-15,COM,90073,0,MOVAL,Moval,Moval,COM,90068,0,MEROUX MOVAL,Meroux-Moval,Meroux-Moval 33,1972-07-15,COM,90073,0,MOVAL,Moval,Moval,COMA,90073,0,MOVAL,Moval,Moval 31,1972-07-01,COM,10289,0,PLANCY L ABBAYE,Plancy-l'Abbaye,Plancy-l'Abbaye,COM,10289,0,PLANCY L ABBAYE,Plancy-l'Abbaye,Plancy-l'Abbaye 31,1972-07-01,COM,10407,0,VIAPRES LE GRAND,Viâpres-le-Grand,Viâpres-le-Grand,COM,10289,0,PLANCY L ABBAYE,Plancy-l'Abbaye,Plancy-l'Abbaye -33,1972-07-01,COM,14114,0,BURES SUR DIVES,Bures-sur-Dives,Bures-sur-Dives,COM,14712,0,TROARN,Troarn,Troarn 33,1972-07-01,COM,14114,0,BURES SUR DIVES,Bures-sur-Dives,Bures-sur-Dives,COMA,14114,0,BURES SUR DIVES,Bures-sur-Dives,Bures-sur-Dives +33,1972-07-01,COM,14114,0,BURES SUR DIVES,Bures-sur-Dives,Bures-sur-Dives,COM,14712,0,TROARN,Troarn,Troarn 31,1972-07-01,COM,14470,0,NORREY EN BESSIN,Norrey-en-Bessin,Norrey-en-Bessin,COM,14610,0,SAINT MANVIEU NORREY,Saint-Manvieu-Norrey,Saint-Manvieu-Norrey 31,1972-07-01,COM,14610,0,SAINT MANVIEU,Saint-Manvieu,Saint-Manvieu,COM,14610,0,SAINT MANVIEU NORREY,Saint-Manvieu-Norrey,Saint-Manvieu-Norrey -33,1972-07-01,COM,14631,0,SAINT MARTIN DE TALLEVENDE,Saint-Martin-de-Tallevende,Saint-Martin-de-Tallevende,COM,14762,0,VIRE,Vire,Vire 33,1972-07-01,COM,14631,0,SAINT MARTIN DE TALLEVENDE,Saint-Martin-de-Tallevende,Saint-Martin-de-Tallevende,COMA,14631,0,SAINT MARTIN DE TALLEVENDE,Saint-Martin-de-Tallevende,Saint-Martin-de-Tallevende +33,1972-07-01,COM,14631,0,SAINT MARTIN DE TALLEVENDE,Saint-Martin-de-Tallevende,Saint-Martin-de-Tallevende,COM,14762,0,VIRE,Vire,Vire 33,1972-07-01,COM,14712,0,TROARN,Troarn,Troarn,COM,14712,0,TROARN,Troarn,Troarn 33,1972-07-01,COM,14762,0,VIRE,Vire,Vire,COM,14762,0,VIRE,Vire,Vire 31,1972-07-01,COM,26109,0,CREYERS,Creyers,Creyers,COM,26354,0,TRESCHENU CREYERS,Treschenu-Creyers,Treschenu-Creyers @@ -11156,10 +10960,10 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1972-07-01,COM,30037,0,BESSEGES,Bessèges,Bessèges,COM,30037,0,BESSEGES,Bessèges,Bessèges 31,1972-07-01,COM,30118,0,FOUSSIGNARGUES,Foussignargues,Foussignargues,COM,30037,0,BESSEGES,Bessèges,Bessèges 33,1972-07-01,COM,53181,0,PONTMAIN,Pontmain,Pontmain,COM,53181,0,PONTMAIN,Pontmain,Pontmain -33,1972-07-01,COM,53213,0,SAINT ELLIER DU MAINE,Saint-Ellier-du-Maine,Saint-Ellier-du-Maine,COMA,53213,0,SAINT ELLIER DU MAINE,Saint-Ellier-du-Maine,Saint-Ellier-du-Maine 33,1972-07-01,COM,53213,0,SAINT ELLIER DU MAINE,Saint-Ellier-du-Maine,Saint-Ellier-du-Maine,COM,53181,0,PONTMAIN,Pontmain,Pontmain -33,1972-07-01,COM,53238,0,SAINT MARS SUR LA FUTAIE,Saint-Mars-sur-la-Futaie,Saint-Mars-sur-la-Futaie,COMA,53238,0,SAINT MARS SUR LA FUTAIE,Saint-Mars-sur-la-Futaie,Saint-Mars-sur-la-Futaie +33,1972-07-01,COM,53213,0,SAINT ELLIER DU MAINE,Saint-Ellier-du-Maine,Saint-Ellier-du-Maine,COMA,53213,0,SAINT ELLIER DU MAINE,Saint-Ellier-du-Maine,Saint-Ellier-du-Maine 33,1972-07-01,COM,53238,0,SAINT MARS SUR LA FUTAIE,Saint-Mars-sur-la-Futaie,Saint-Mars-sur-la-Futaie,COM,53181,0,PONTMAIN,Pontmain,Pontmain +33,1972-07-01,COM,53238,0,SAINT MARS SUR LA FUTAIE,Saint-Mars-sur-la-Futaie,Saint-Mars-sur-la-Futaie,COMA,53238,0,SAINT MARS SUR LA FUTAIE,Saint-Mars-sur-la-Futaie,Saint-Mars-sur-la-Futaie 33,1972-07-01,COM,55019,1,AUZECOURT,Auzécourt,Auzécourt,COMA,55019,1,AUZECOURT,Auzécourt,Auzécourt 33,1972-07-01,COM,55019,1,AUZECOURT,Auzécourt,Auzécourt,COM,55388,0,NOYERS AUZECOURT,Noyers-Auzécourt,Noyers-Auzécourt 33,1972-07-01,COM,55123,0,CONDE EN BARROIS,Condé-en-Barrois,Condé-en-Barrois,COM,55123,4,HAUTS DE CHEE,Hauts-de-Chée,Les Hauts-de-Chée @@ -11167,10 +10971,10 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-07-01,COM,55203,0,GENICOURT SOUS CONDE,Génicourt-sous-Condé,Génicourt-sous-Condé,COMA,55203,0,GENICOURT SOUS CONDE,Génicourt-sous-Condé,Génicourt-sous-Condé 33,1972-07-01,COM,55231,0,HARGEVILLE SUR CHEE,Hargeville-sur-Chée,Hargeville-sur-Chée,COM,55123,4,HAUTS DE CHEE,Hauts-de-Chée,Les Hauts-de-Chée 33,1972-07-01,COM,55231,0,HARGEVILLE SUR CHEE,Hargeville-sur-Chée,Hargeville-sur-Chée,COMA,55231,0,HARGEVILLE SUR CHEE,Hargeville-sur-Chée,Hargeville-sur-Chée -33,1972-07-01,COM,55305,0,LOUPPY SUR CHEE,Louppy-sur-Chée,Louppy-sur-Chée,COMA,55305,0,LOUPPY SUR CHEE,Louppy-sur-Chée,Louppy-sur-Chée 33,1972-07-01,COM,55305,0,LOUPPY SUR CHEE,Louppy-sur-Chée,Louppy-sur-Chée,COM,55123,4,HAUTS DE CHEE,Hauts-de-Chée,Les Hauts-de-Chée -33,1972-07-01,COM,55318,4,MARATS,Marats,Les Marats,COMA,55318,4,MARATS,Marats,Les Marats +33,1972-07-01,COM,55305,0,LOUPPY SUR CHEE,Louppy-sur-Chée,Louppy-sur-Chée,COMA,55305,0,LOUPPY SUR CHEE,Louppy-sur-Chée,Louppy-sur-Chée 33,1972-07-01,COM,55318,4,MARATS,Marats,Les Marats,COM,55123,4,HAUTS DE CHEE,Hauts-de-Chée,Les Hauts-de-Chée +33,1972-07-01,COM,55318,4,MARATS,Marats,Les Marats,COMA,55318,4,MARATS,Marats,Les Marats 33,1972-07-01,COM,55388,0,NOYERS LE VAL,Noyers-le-Val,Noyers-le-Val,COM,55388,0,NOYERS AUZECOURT,Noyers-Auzécourt,Noyers-Auzécourt 33,1972-07-01,COM,67251,0,KUHLENDORF,Kuhlendorf,Kuhlendorf,COMA,67251,0,KUHLENDORF,Kuhlendorf,Kuhlendorf 33,1972-07-01,COM,67251,0,KUHLENDORF,Kuhlendorf,Kuhlendorf,COM,67339,0,BETSCHDORF,Betschdorf,Betschdorf @@ -11180,35 +10984,31 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-07-01,COM,67457,0,SCHWABWILLER,Schwabwiller,Schwabwiller,COM,67339,0,BETSCHDORF,Betschdorf,Betschdorf 33,1972-07-01,COM,67457,0,SCHWABWILLER,Schwabwiller,Schwabwiller,COMA,67457,0,SCHWABWILLER,Schwabwiller,Schwabwiller 33,1972-07-01,COM,67532,0,WILLGOTTHEIM,Willgottheim,Willgottheim,COM,67532,0,WILLGOTTHEIM,Willgottheim,Willgottheim -33,1972-07-01,COM,67549,0,WOELLENHEIM,Wœllenheim,Wœllenheim,COMA,67549,0,WOELLENHEIM,Wœllenheim,Wœllenheim -33,1972-07-01,COM,67549,0,WOELLENHEIM,Wœllenheim,Wœllenheim,COM,67532,0,WILLGOTTHEIM,Willgottheim,Willgottheim -33,1972-07-01,COM,71260,0,LOCHE,Loché,Loché,COM,71270,0,MACON,Mâcon,Mâcon +33,1972-07-01,COM,67549,0,WOLLENHEIM,Wœllenheim,Wœllenheim,COM,67532,0,WILLGOTTHEIM,Willgottheim,Willgottheim +33,1972-07-01,COM,67549,0,WOLLENHEIM,Wœllenheim,Wœllenheim,COMA,67549,0,WOLLENHEIM,Wœllenheim,Wœllenheim 33,1972-07-01,COM,71260,0,LOCHE,Loché,Loché,COMA,71260,0,LOCHE,Loché,Loché +33,1972-07-01,COM,71260,0,LOCHE,Loché,Loché,COM,71270,0,MACON,Mâcon,Mâcon 33,1972-07-01,COM,71270,0,MACON,Mâcon,Mâcon,COM,71270,0,MACON,Mâcon,Mâcon -33,1972-07-01,COMA,71432,0,SAINT JEAN LE PRICHE,Saint-Jean-le-Priche,Saint-Jean-le-Priche,COMA,71432,0,SAINT JEAN LE PRICHE,Saint-Jean-le-Priche,Saint-Jean-le-Priche -33,1972-07-01,COMA,71432,0,SAINT JEAN LE PRICHE,Saint-Jean-le-Priche,Saint-Jean-le-Priche,COM,71270,0,MACON,Mâcon,Mâcon -33,1972-07-01,COMA,71511,0,SENNECE LES MACON,Sennecé-lès-Mâcon,Sennecé-lès-Mâcon,COMA,71511,0,SENNECE LES MACON,Sennecé-lès-Mâcon,Sennecé-lès-Mâcon -33,1972-07-01,COMA,71511,0,SENNECE LES MACON,Sennecé-lès-Mâcon,Sennecé-lès-Mâcon,COM,71270,0,MACON,Mâcon,Mâcon 31,1972-07-01,COM,80084,0,BERNAPRE,Bernapré,Bernapré,COM,80084,0,BERMESNIL,Bermesnil,Bermesnil -33,1972-07-01,COM,80111,0,BOISRAULT,Boisrault,Boisrault,COM,80443,0,HORNOY LE BOURG,Hornoy-le-Bourg,Hornoy-le-Bourg 33,1972-07-01,COM,80111,0,BOISRAULT,Boisrault,Boisrault,COMA,80111,0,BOISRAULT,Boisrault,Boisrault -33,1972-07-01,COM,80382,0,GOUY L HOPITAL,Gouy-l'Hôpital,Gouy-l'Hôpital,COM,80443,0,HORNOY LE BOURG,Hornoy-le-Bourg,Hornoy-le-Bourg +33,1972-07-01,COM,80111,0,BOISRAULT,Boisrault,Boisrault,COM,80443,0,HORNOY LE BOURG,Hornoy-le-Bourg,Hornoy-le-Bourg 33,1972-07-01,COM,80382,0,GOUY L HOPITAL,Gouy-l'Hôpital,Gouy-l'Hôpital,COMA,80382,0,GOUY L HOPITAL,Gouy-l'Hôpital,Gouy-l'Hôpital +33,1972-07-01,COM,80382,0,GOUY L HOPITAL,Gouy-l'Hôpital,Gouy-l'Hôpital,COM,80443,0,HORNOY LE BOURG,Hornoy-le-Bourg,Hornoy-le-Bourg 33,1972-07-01,COM,80398,0,GUIBERMESNIL,Guibermesnil,Guibermesnil,COMA,80398,0,GUIBERMESNIL,Guibermesnil,Guibermesnil 33,1972-07-01,COM,80398,0,GUIBERMESNIL,Guibermesnil,Guibermesnil,COM,80456,0,LAFRESGUIMONT SAINT MARTIN,Lafresguimont-Saint-Martin,Lafresguimont-Saint-Martin 33,1972-07-01,COM,80443,0,HORNOY,Hornoy,Hornoy,COM,80443,0,HORNOY LE BOURG,Hornoy-le-Bourg,Hornoy-le-Bourg -33,1972-07-01,COM,80454,0,LABOISSIERE SAINT MARTIN,Laboissière-Saint-Martin,Laboissière-Saint-Martin,COM,80456,0,LAFRESGUIMONT SAINT MARTIN,Lafresguimont-Saint-Martin,Lafresguimont-Saint-Martin 33,1972-07-01,COM,80454,0,LABOISSIERE SAINT MARTIN,Laboissière-Saint-Martin,Laboissière-Saint-Martin,COMA,80454,0,LABOISSIERE SAINT MARTIN,Laboissière-Saint-Martin,Laboissière-Saint-Martin +33,1972-07-01,COM,80454,0,LABOISSIERE SAINT MARTIN,Laboissière-Saint-Martin,Laboissière-Saint-Martin,COM,80456,0,LAFRESGUIMONT SAINT MARTIN,Lafresguimont-Saint-Martin,Lafresguimont-Saint-Martin 33,1972-07-01,COM,80456,0,LAFRESNOYE,Lafresnoye,Lafresnoye,COM,80456,0,LAFRESGUIMONT SAINT MARTIN,Lafresguimont-Saint-Martin,Lafresguimont-Saint-Martin 33,1972-07-01,COM,80483,0,LINCHEUX HALLIVILLERS,Lincheux-Hallivillers,Lincheux-Hallivillers,COM,80443,0,HORNOY LE BOURG,Hornoy-le-Bourg,Hornoy-le-Bourg 33,1972-07-01,COM,80483,0,LINCHEUX HALLIVILLERS,Lincheux-Hallivillers,Lincheux-Hallivillers,COMA,80483,0,LINCHEUX HALLIVILLERS,Lincheux-Hallivillers,Lincheux-Hallivillers 31,1972-07-01,COM,80539,0,MESNIL EUDIN,Mesnil-Eudin,Mesnil-Eudin,COM,80084,0,BERMESNIL,Bermesnil,Bermesnil -33,1972-07-01,COM,80564,0,MONTMARQUET,Montmarquet,Montmarquet,COMA,80564,0,MONTMARQUET,Montmarquet,Montmarquet 33,1972-07-01,COM,80564,0,MONTMARQUET,Montmarquet,Montmarquet,COM,80456,0,LAFRESGUIMONT SAINT MARTIN,Lafresguimont-Saint-Martin,Lafresguimont-Saint-Martin -33,1972-07-01,COM,80612,1,ORIVAL,Orival,Orival,COMA,80612,1,ORIVAL,Orival,Orival +33,1972-07-01,COM,80564,0,MONTMARQUET,Montmarquet,Montmarquet,COMA,80564,0,MONTMARQUET,Montmarquet,Montmarquet 33,1972-07-01,COM,80612,1,ORIVAL,Orival,Orival,COM,80443,0,HORNOY LE BOURG,Hornoy-le-Bourg,Hornoy-le-Bourg -33,1972-07-01,COM,80731,0,SELINCOURT,Selincourt,Selincourt,COMA,80731,0,SELINCOURT,Selincourt,Selincourt +33,1972-07-01,COM,80612,1,ORIVAL,Orival,Orival,COMA,80612,1,ORIVAL,Orival,Orival 33,1972-07-01,COM,80731,0,SELINCOURT,Selincourt,Selincourt,COM,80443,0,HORNOY LE BOURG,Hornoy-le-Bourg,Hornoy-le-Bourg +33,1972-07-01,COM,80731,0,SELINCOURT,Selincourt,Selincourt,COMA,80731,0,SELINCOURT,Selincourt,Selincourt 33,1972-07-01,COM,80768,0,TRONCHOY,Tronchoy,Tronchoy,COM,80443,0,HORNOY LE BOURG,Hornoy-le-Bourg,Hornoy-le-Bourg 33,1972-07-01,COM,80768,0,TRONCHOY,Tronchoy,Tronchoy,COMA,80768,0,TRONCHOY,Tronchoy,Tronchoy 33,1972-07-01,COM,85051,0,CHANTONNAY,Chantonnay,Chantonnay,COM,85051,0,CHANTONNAY,Chantonnay,Chantonnay @@ -11228,35 +11028,35 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-07-01,COM,89476,3,VILLOTTE,Villotte,La Villotte,COMA,89476,3,VILLOTTE,Villotte,La Villotte 31,1972-07-01,COM,90097,0,TRETUDANS,Trétudans,Trétudans,COM,90097,0,TREVENANS,Trévenans,Trévenans 31,1972-07-01,COM,90106,0,VOURVENANS,Vourvenans,Vourvenans,COM,90097,0,TREVENANS,Trévenans,Trévenans -33,1972-06-30,COM,73060,0,CELLIERS,Celliers,Celliers,COM,73187,3,LECHERE,Léchère,La Léchère 33,1972-06-30,COM,73060,0,CELLIERS,Celliers,Celliers,COMA,73060,0,CELLIERS,Celliers,Celliers -33,1972-06-30,COM,73102,0,DOUCY,Doucy,Doucy,COM,73187,3,LECHERE,Léchère,La Léchère +33,1972-06-30,COM,73060,0,CELLIERS,Celliers,Celliers,COM,73187,3,LECHERE,Léchère,La Léchère 33,1972-06-30,COM,73102,0,DOUCY,Doucy,Doucy,COMA,73102,0,DOUCY,Doucy,Doucy +33,1972-06-30,COM,73102,0,DOUCY,Doucy,Doucy,COM,73187,3,LECHERE,Léchère,La Léchère 33,1972-06-30,COM,73185,0,NAVES,Naves,Naves,COMA,73185,0,NAVES,Naves,Naves 33,1972-06-30,COM,73185,0,NAVES,Naves,Naves,COM,73187,3,LECHERE,Léchère,La Léchère 33,1972-06-30,COM,73187,0,NOTRE DAME DE BRIANCON,Notre-Dame-de-Briançon,Notre-Dame-de-Briançon,COM,73187,3,LECHERE,Léchère,La Léchère -33,1972-06-30,COM,73199,0,PETIT COEUR,Petit-Cœur,Petit-Cœur,COMA,73199,0,PETIT COEUR,Petit-Cœur,Petit-Cœur -33,1972-06-30,COM,73199,0,PETIT COEUR,Petit-Cœur,Petit-Cœur,COM,73187,3,LECHERE,Léchère,La Léchère -33,1972-06-30,COM,73209,0,PUSSY,Pussy,Pussy,COMA,73209,0,PUSSY,Pussy,Pussy +33,1972-06-30,COM,73199,0,PETIT COUR,Petit-Cœur,Petit-Cœur,COM,73187,3,LECHERE,Léchère,La Léchère +33,1972-06-30,COM,73199,0,PETIT COUR,Petit-Cœur,Petit-Cœur,COMA,73199,0,PETIT COUR,Petit-Cœur,Petit-Cœur 33,1972-06-30,COM,73209,0,PUSSY,Pussy,Pussy,COM,73187,3,LECHERE,Léchère,La Léchère +33,1972-06-30,COM,73209,0,PUSSY,Pussy,Pussy,COMA,73209,0,PUSSY,Pussy,Pussy 33,1972-06-27,COM,52339,0,MONTSAON,Montsaon,Montsaon,COMA,52339,0,MONTSAON,Montsaon,Montsaon 33,1972-06-27,COM,52339,0,MONTSAON,Montsaon,Montsaon,COM,52469,0,SEMOUTIERS MONTSAON,Semoutiers-Montsaon,Semoutiers-Montsaon 33,1972-06-27,COM,52469,0,SEMOUTIERS,Semoutiers,Semoutiers,COM,52469,0,SEMOUTIERS MONTSAON,Semoutiers-Montsaon,Semoutiers-Montsaon -33,1972-06-22,COM,52077,0,BRONCOURT,Broncourt,Broncourt,COM,52197,0,FAYL LA FORET,Fayl-la-Forêt,Fayl-la-Forêt 33,1972-06-22,COM,52077,0,BRONCOURT,Broncourt,Broncourt,COMA,52077,0,BRONCOURT,Broncourt,Broncourt +33,1972-06-22,COM,52077,0,BRONCOURT,Broncourt,Broncourt,COM,52197,0,FAYL LA FORET,Fayl-la-Forêt,Fayl-la-Forêt 33,1972-06-22,COM,52112,0,CHARMOY,Charmoy,Charmoy,COMA,52112,0,CHARMOY,Charmoy,Charmoy 33,1972-06-22,COM,52112,0,CHARMOY,Charmoy,Charmoy,COM,52197,0,FAYL LA FORET,Fayl-la-Forêt,Fayl-la-Forêt 33,1972-06-22,COM,52197,0,FAYL BILLOT,Fayl-Billot,Fayl-Billot,COM,52197,0,FAYL LA FORET,Fayl-la-Forêt,Fayl-la-Forêt 33,1972-06-20,COM,52178,0,DOULEVANT LE CHATEAU,Doulevant-le-Château,Doulevant-le-Château,COM,52178,0,BLAISERIVES,Blaiserives,Blaiserives -33,1972-06-20,COM,52533,0,VILLIERS AUX CHENES,Villiers-aux-Chênes,Villiers-aux-Chênes,COMA,52533,0,VILLIERS AUX CHENES,Villiers-aux-Chênes,Villiers-aux-Chênes 33,1972-06-20,COM,52533,0,VILLIERS AUX CHENES,Villiers-aux-Chênes,Villiers-aux-Chênes,COM,52178,0,BLAISERIVES,Blaiserives,Blaiserives +33,1972-06-20,COM,52533,0,VILLIERS AUX CHENES,Villiers-aux-Chênes,Villiers-aux-Chênes,COMA,52533,0,VILLIERS AUX CHENES,Villiers-aux-Chênes,Villiers-aux-Chênes 31,1972-06-20,COM,66087,7,ILLAS,Illas,Las Illas,COM,66106,0,MAUREILLAS LAS ILLAS,Maureillas-las-Illas,Maureillas-las-Illas 31,1972-06-20,COM,66106,0,MAUREILLAS,Maureillas,Maureillas,COM,66106,0,MAUREILLAS LAS ILLAS,Maureillas-las-Illas,Maureillas-las-Illas 31,1972-06-20,COM,66163,0,RIUNOGUES,Riunoguès,Riunoguès,COM,66106,0,MAUREILLAS LAS ILLAS,Maureillas-las-Illas,Maureillas-las-Illas 31,1972-06-15,COM,85092,0,FONTENAY LE COMTE,Fontenay-le-Comte,Fontenay-le-Comte,COM,85092,0,FONTENAY LE COMTE,Fontenay-le-Comte,Fontenay-le-Comte 31,1972-06-15,COM,85253,0,SAINT MEDARD DES PRES,Saint-Médard-des-Prés,Saint-Médard-des-Prés,COM,85092,0,FONTENAY LE COMTE,Fontenay-le-Comte,Fontenay-le-Comte -33,1972-06-09,COM,52046,0,BETTONCOURT LE HAUT,Bettoncourt-le-Haut,Bettoncourt-le-Haut,COM,52187,1,EPIZON,Épizon,Épizon 33,1972-06-09,COM,52046,0,BETTONCOURT LE HAUT,Bettoncourt-le-Haut,Bettoncourt-le-Haut,COMA,52046,0,BETTONCOURT LE HAUT,Bettoncourt-le-Haut,Bettoncourt-le-Haut +33,1972-06-09,COM,52046,0,BETTONCOURT LE HAUT,Bettoncourt-le-Haut,Bettoncourt-le-Haut,COM,52187,1,EPIZON,Épizon,Épizon 33,1972-06-09,COM,52187,1,EPIZON,Épizon,Épizon,COM,52187,1,EPIZON,Épizon,Épizon 33,1972-06-08,COM,52118,0,CHATONRUPT,Chatonrupt,Chatonrupt,COM,52118,0,CHATONRUPT SOMMERMONT,Chatonrupt-Sommermont,Chatonrupt-Sommermont 33,1972-06-08,COM,52477,0,SOMMERMONT,Sommermont,Sommermont,COM,52118,0,CHATONRUPT SOMMERMONT,Chatonrupt-Sommermont,Chatonrupt-Sommermont @@ -11280,52 +11080,52 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1972-06-02,COM,44155,0,SAINT COLOMBIN,Saint-Colombin,Saint-Colombin,COM,44155,0,SAINT COLOMBAN,Saint-Colomban,Saint-Colomban 10,1972-06-02,COM,46336,0,VIRE,Vire,Vire,COM,46336,0,VIRE SUR LOT,Vire-sur-Lot,Vire-sur-Lot 10,1972-06-02,COM,48047,3,CHAZE,Chaze,La Chaze,COM,48047,3,CHAZE DE PEYRE,Chaze-de-Peyre,La Chaze-de-Peyre -33,1972-06-02,COM,52033,1,AVRECOURT,Avrecourt,Avrecourt,COM,52332,2,VAL DE MEUSE,Val-de-Meuse,Le Val-de-Meuse 33,1972-06-02,COM,52033,1,AVRECOURT,Avrecourt,Avrecourt,COMA,52033,1,AVRECOURT,Avrecourt,Avrecourt -33,1972-06-02,COM,52186,1,EPINANT,Épinant,Épinant,COM,52332,2,VAL DE MEUSE,Val-de-Meuse,Le Val-de-Meuse +33,1972-06-02,COM,52033,1,AVRECOURT,Avrecourt,Avrecourt,COM,52332,2,VAL DE MEUSE,Val-de-Meuse,Le Val-de-Meuse 33,1972-06-02,COM,52186,1,EPINANT,Épinant,Épinant,COMA,52186,1,EPINANT,Épinant,Épinant -33,1972-06-02,COM,52281,0,LECOURT,Lécourt,Lécourt,COM,52332,2,VAL DE MEUSE,Val-de-Meuse,Le Val-de-Meuse +33,1972-06-02,COM,52186,1,EPINANT,Épinant,Épinant,COM,52332,2,VAL DE MEUSE,Val-de-Meuse,Le Val-de-Meuse 33,1972-06-02,COM,52281,0,LECOURT,Lécourt,Lécourt,COMA,52281,0,LECOURT,Lécourt,Lécourt -33,1972-06-02,COM,52317,0,MAULAIN,Maulain,Maulain,COM,52332,2,VAL DE MEUSE,Val-de-Meuse,Le Val-de-Meuse +33,1972-06-02,COM,52281,0,LECOURT,Lécourt,Lécourt,COM,52332,2,VAL DE MEUSE,Val-de-Meuse,Le Val-de-Meuse 33,1972-06-02,COM,52317,0,MAULAIN,Maulain,Maulain,COMA,52317,0,MAULAIN,Maulain,Maulain +33,1972-06-02,COM,52317,0,MAULAIN,Maulain,Maulain,COM,52332,2,VAL DE MEUSE,Val-de-Meuse,Le Val-de-Meuse 33,1972-06-02,COM,52332,0,MONTIGNY LE ROI,Montigny-le-Roi,Montigny-le-Roi,COM,52332,2,VAL DE MEUSE,Val-de-Meuse,Le Val-de-Meuse -33,1972-06-02,COM,52410,0,PROVENCHERES SUR MEUSE,Provenchères-sur-Meuse,Provenchères-sur-Meuse,COMA,52410,0,PROVENCHERES SUR MEUSE,Provenchères-sur-Meuse,Provenchères-sur-Meuse 33,1972-06-02,COM,52410,0,PROVENCHERES SUR MEUSE,Provenchères-sur-Meuse,Provenchères-sur-Meuse,COM,52332,2,VAL DE MEUSE,Val-de-Meuse,Le Val-de-Meuse +33,1972-06-02,COM,52410,0,PROVENCHERES SUR MEUSE,Provenchères-sur-Meuse,Provenchères-sur-Meuse,COMA,52410,0,PROVENCHERES SUR MEUSE,Provenchères-sur-Meuse,Provenchères-sur-Meuse 33,1972-06-02,COM,52417,0,RAVENNEFONTAINES,Ravennefontaines,Ravennefontaines,COM,52332,2,VAL DE MEUSE,Val-de-Meuse,Le Val-de-Meuse 33,1972-06-02,COM,52417,0,RAVENNEFONTAINES,Ravennefontaines,Ravennefontaines,COMA,52417,0,RAVENNEFONTAINES,Ravennefontaines,Ravennefontaines -33,1972-06-02,COM,52418,0,RECOURT,Récourt,Récourt,COMA,52418,0,RECOURT,Récourt,Récourt 33,1972-06-02,COM,52418,0,RECOURT,Récourt,Récourt,COM,52332,2,VAL DE MEUSE,Val-de-Meuse,Le Val-de-Meuse +33,1972-06-02,COM,52418,0,RECOURT,Récourt,Récourt,COMA,52418,0,RECOURT,Récourt,Récourt 33,1972-06-02,COM,52465,0,SAULXURES,Saulxures,Saulxures,COM,52332,2,VAL DE MEUSE,Val-de-Meuse,Le Val-de-Meuse 33,1972-06-02,COM,52465,0,SAULXURES,Saulxures,Saulxures,COMA,52465,0,SAULXURES,Saulxures,Saulxures 31,1972-06-01,COM,26280,3,ROCHETTE SUR CREST,Rochette-sur-Crest,La Rochette-sur-Crest,COM,26365,0,VAUNAVEYS LA ROCHETTE,Vaunaveys-la-Rochette,Vaunaveys-la-Rochette 31,1972-06-01,COM,26365,0,VAUNAVEYS,Vaunaveys,Vaunaveys,COM,26365,0,VAUNAVEYS LA ROCHETTE,Vaunaveys-la-Rochette,Vaunaveys-la-Rochette 10,1972-06-01,COM,48141,0,SAINT CHELY DU TARN,Saint-Chély-du-Tarn,Saint-Chély-du-Tarn,COM,48141,0,MAS SAINT CHELY,Mas-Saint-Chély,Mas-Saint-Chély -33,1972-06-01,COM,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris 33,1972-06-01,COM,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny,COMA,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny +33,1972-06-01,COM,52009,1,ANDILLY EN BASSIGNY,Andilly-en-Bassigny,Andilly-en-Bassigny,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris 33,1972-06-01,COM,52031,1,AUTREVILLE SUR LA RENNE,Autreville-sur-la-Renne,Autreville-sur-la-Renne,COM,52031,1,AUTREVILLE SUR LA RENNE,Autreville-sur-la-Renne,Autreville-sur-la-Renne -33,1972-06-01,COM,52037,0,BANNES,Bannes,Bannes,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris 33,1972-06-01,COM,52037,0,BANNES,Bannes,Bannes,COMA,52037,0,BANNES,Bannes,Bannes -33,1972-06-01,COM,52059,0,BONNECOURT,Bonnecourt,Bonnecourt,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris +33,1972-06-01,COM,52037,0,BANNES,Bannes,Bannes,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris 33,1972-06-01,COM,52059,0,BONNECOURT,Bonnecourt,Bonnecourt,COMA,52059,0,BONNECOURT,Bonnecourt,Bonnecourt -33,1972-06-01,COM,52105,0,CHANGEY,Changey,Changey,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris +33,1972-06-01,COM,52059,0,BONNECOURT,Bonnecourt,Bonnecourt,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris 33,1972-06-01,COM,52105,0,CHANGEY,Changey,Changey,COMA,52105,0,CHANGEY,Changey,Changey +33,1972-06-01,COM,52105,0,CHANGEY,Changey,Changey,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris 33,1972-06-01,COM,52108,0,CHARMES,Charmes,Charmes,COMA,52108,0,CHARMES,Charmes,Charmes 33,1972-06-01,COM,52108,0,CHARMES,Charmes,Charmes,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris 33,1972-06-01,COM,52113,0,CHASSIGNY,Chassigny,Chassigny,COM,52113,0,CHASSIGNY AISEY,Chassigny-Aisey,Chassigny-Aisey -33,1972-06-01,COM,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris 33,1972-06-01,COM,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin,COMA,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin +33,1972-06-01,COM,52116,0,CHATENAY VAUDIN,Chatenay-Vaudin,Chatenay-Vaudin,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris 33,1972-06-01,COM,52145,0,COUBLANC,Coublanc,Coublanc,COM,52113,0,CHASSIGNY AISEY,Chassigny-Aisey,Chassigny-Aisey 33,1972-06-01,COM,52145,0,COUBLANC,Coublanc,Coublanc,COMA,52145,0,COUBLANC,Coublanc,Coublanc -33,1972-06-01,COM,52163,0,DAMPIERRE,Dampierre,Dampierre,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris 33,1972-06-01,COM,52163,0,DAMPIERRE,Dampierre,Dampierre,COMA,52163,0,DAMPIERRE,Dampierre,Dampierre +33,1972-06-01,COM,52163,0,DAMPIERRE,Dampierre,Dampierre,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris 33,1972-06-01,COM,52170,0,DOMMARIEN,Dommarien,Dommarien,COM,52113,0,CHASSIGNY AISEY,Chassigny-Aisey,Chassigny-Aisey 33,1972-06-01,COM,52170,0,DOMMARIEN,Dommarien,Dommarien,COMA,52170,0,DOMMARIEN,Dommarien,Dommarien 33,1972-06-01,COM,52176,0,DONNEMARIE,Donnemarie,Donnemarie,COMA,52176,0,DONNEMARIE,Donnemarie,Donnemarie 33,1972-06-01,COM,52176,0,DONNEMARIE,Donnemarie,Donnemarie,COM,52353,0,NOGENT,Nogent,Nogent -33,1972-06-01,COM,52191,1,ESSEY LES EAUX,Essey-les-Eaux,Essey-les-Eaux,COM,52353,0,NOGENT,Nogent,Nogent 33,1972-06-01,COM,52191,1,ESSEY LES EAUX,Essey-les-Eaux,Essey-les-Eaux,COMA,52191,1,ESSEY LES EAUX,Essey-les-Eaux,Essey-les-Eaux -33,1972-06-01,COM,52207,0,FRECOURT,Frécourt,Frécourt,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris +33,1972-06-01,COM,52191,1,ESSEY LES EAUX,Essey-les-Eaux,Essey-les-Eaux,COM,52353,0,NOGENT,Nogent,Nogent 33,1972-06-01,COM,52207,0,FRECOURT,Frécourt,Frécourt,COMA,52207,0,FRECOURT,Frécourt,Frécourt +33,1972-06-01,COM,52207,0,FRECOURT,Frécourt,Frécourt,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris 33,1972-06-01,COM,52278,0,LAVILLENEUVE AU ROI,Lavilleneuve-au-Roi,Lavilleneuve-au-Roi,COM,52031,1,AUTREVILLE SUR LA RENNE,Autreville-sur-la-Renne,Autreville-sur-la-Renne 33,1972-06-01,COM,52278,0,LAVILLENEUVE AU ROI,Lavilleneuve-au-Roi,Lavilleneuve-au-Roi,COMA,52278,0,LAVILLENEUVE AU ROI,Lavilleneuve-au-Roi,Lavilleneuve-au-Roi 33,1972-06-01,COM,52280,0,LECEY,Lecey,Lecey,COMA,52280,0,LECEY,Lecey,Lecey @@ -11334,10 +11134,10 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-06-01,COM,52353,0,NOGENT EN BASSIGNY,Nogent-en-Bassigny,Nogent-en-Bassigny,COM,52353,0,NOGENT,Nogent,Nogent 33,1972-06-01,COM,52361,1,ODIVAL,Odival,Odival,COM,52353,0,NOGENT,Nogent,Nogent 33,1972-06-01,COM,52361,1,ODIVAL,Odival,Odival,COMA,52361,1,ODIVAL,Odival,Odival -33,1972-06-01,COM,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val,COMA,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val 33,1972-06-01,COM,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris -33,1972-06-01,COM,52397,0,POISEUL,Poiseul,Poiseul,COMA,52397,0,POISEUL,Poiseul,Poiseul +33,1972-06-01,COM,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val,COMA,52363,1,ORBIGNY AU VAL,Orbigny-au-Val,Orbigny-au-Val 33,1972-06-01,COM,52397,0,POISEUL,Poiseul,Poiseul,COM,52348,0,VAL DE GRIS,Val-de-Gris,Val-de-Gris +33,1972-06-01,COM,52397,0,POISEUL,Poiseul,Poiseul,COMA,52397,0,POISEUL,Poiseul,Poiseul 33,1972-06-01,COM,52451,0,SAINT MARTIN SUR LA RENNE,Saint-Martin-sur-la-Renne,Saint-Martin-sur-la-Renne,COM,52031,1,AUTREVILLE SUR LA RENNE,Autreville-sur-la-Renne,Autreville-sur-la-Renne 33,1972-06-01,COM,52451,0,SAINT MARTIN SUR LA RENNE,Saint-Martin-sur-la-Renne,Saint-Martin-sur-la-Renne,COMA,52451,0,SAINT MARTIN SUR LA RENNE,Saint-Martin-sur-la-Renne,Saint-Martin-sur-la-Renne 33,1972-06-01,COM,52501,0,VALDELANCOURT,Valdelancourt,Valdelancourt,COM,52031,1,AUTREVILLE SUR LA RENNE,Autreville-sur-la-Renne,Autreville-sur-la-Renne @@ -11350,10 +11150,10 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-06-01,COM,86267,0,TARGE,Targé,Targé,COMA,86267,0,TARGE,Targé,Targé 33,1972-05-18,COM,52240,1,HEUILLEY LE GRAND,Heuilley-le-Grand,Heuilley-le-Grand,COMA,52240,1,HEUILLEY LE GRAND,Heuilley-le-Grand,Heuilley-le-Grand 33,1972-05-18,COM,52240,1,HEUILLEY LE GRAND,Heuilley-le-Grand,Heuilley-le-Grand,COM,52374,0,HAUTS VALS SOUS NOUROY,Hauts-Vals-sous-Nouroy,Hauts-Vals-sous-Nouroy -33,1972-05-18,COM,52335,0,MONTOT SUR ROGNON,Montot-sur-Rognon,Montot-sur-Rognon,COM,52420,0,REYNEL,Reynel,Reynel 33,1972-05-18,COM,52335,0,MONTOT SUR ROGNON,Montot-sur-Rognon,Montot-sur-Rognon,COMA,52335,0,MONTOT SUR ROGNON,Montot-sur-Rognon,Montot-sur-Rognon -33,1972-05-18,COM,52354,0,NOIDANT CHATENOY,Noidant-Chatenoy,Noidant-Chatenoy,COM,52374,0,HAUTS VALS SOUS NOUROY,Hauts-Vals-sous-Nouroy,Hauts-Vals-sous-Nouroy +33,1972-05-18,COM,52335,0,MONTOT SUR ROGNON,Montot-sur-Rognon,Montot-sur-Rognon,COM,52420,0,REYNEL,Reynel,Reynel 33,1972-05-18,COM,52354,0,NOIDANT CHATENOY,Noidant-Chatenoy,Noidant-Chatenoy,COMA,52354,0,NOIDANT CHATENOY,Noidant-Chatenoy,Noidant-Chatenoy +33,1972-05-18,COM,52354,0,NOIDANT CHATENOY,Noidant-Chatenoy,Noidant-Chatenoy,COM,52374,0,HAUTS VALS SOUS NOUROY,Hauts-Vals-sous-Nouroy,Hauts-Vals-sous-Nouroy 33,1972-05-18,COM,52374,2,PAILLY,Pailly,Le Pailly,COM,52374,0,HAUTS VALS SOUS NOUROY,Hauts-Vals-sous-Nouroy,Hauts-Vals-sous-Nouroy 33,1972-05-18,COM,52375,0,PALAISEUL,Palaiseul,Palaiseul,COM,52374,0,HAUTS VALS SOUS NOUROY,Hauts-Vals-sous-Nouroy,Hauts-Vals-sous-Nouroy 33,1972-05-18,COM,52375,0,PALAISEUL,Palaiseul,Palaiseul,COMA,52375,0,PALAISEUL,Palaiseul,Palaiseul @@ -11362,66 +11162,66 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-05-18,COM,52473,0,SIGNEVILLE,Signéville,Signéville,COMA,52473,0,SIGNEVILLE,Signéville,Signéville 33,1972-05-18,COM,52523,0,VIGNES LA COTE,Vignes-la-Côte,Vignes-la-Côte,COM,52420,0,REYNEL,Reynel,Reynel 33,1972-05-18,COM,52523,0,VIGNES LA COTE,Vignes-la-Côte,Vignes-la-Côte,COMA,52523,0,VIGNES LA COTE,Vignes-la-Côte,Vignes-la-Côte -33,1972-05-18,COM,52539,0,VIOLOT,Violot,Violot,COMA,52539,0,VIOLOT,Violot,Violot 33,1972-05-18,COM,52539,0,VIOLOT,Violot,Violot,COM,52374,0,HAUTS VALS SOUS NOUROY,Hauts-Vals-sous-Nouroy,Hauts-Vals-sous-Nouroy +33,1972-05-18,COM,52539,0,VIOLOT,Violot,Violot,COMA,52539,0,VIOLOT,Violot,Violot 33,1972-05-17,COM,52242,0,HORTES,Hortes,Hortes,COM,52242,0,HAUTE AMANCE,Haute-Amance,Haute-Amance -33,1972-05-17,COM,52333,0,MONTLANDON,Montlandon,Montlandon,COMA,52333,0,MONTLANDON,Montlandon,Montlandon 33,1972-05-17,COM,52333,0,MONTLANDON,Montlandon,Montlandon,COM,52242,0,HAUTE AMANCE,Haute-Amance,Haute-Amance +33,1972-05-17,COM,52333,0,MONTLANDON,Montlandon,Montlandon,COMA,52333,0,MONTLANDON,Montlandon,Montlandon 33,1972-05-17,COM,52496,0,TROISCHAMPS,Troischamps,Troischamps,COM,52242,0,HAUTE AMANCE,Haute-Amance,Haute-Amance 33,1972-05-17,COM,52496,0,TROISCHAMPS,Troischamps,Troischamps,COMA,52496,0,TROISCHAMPS,Troischamps,Troischamps -33,1972-05-15,COM,52016,1,ARBOT,Arbot,Arbot,COM,52439,0,ROUVRES ARBOT,Rouvres-Arbot,Rouvres-Arbot 33,1972-05-15,COM,52016,1,ARBOT,Arbot,Arbot,COMA,52016,1,ARBOT,Arbot,Arbot -33,1972-05-15,COM,52117,0,CHATOILLENOT,Chatoillenot,Chatoillenot,COM,52189,2,VAL D ESNOMS,Val-d'Esnoms,Le Val-d'Esnoms +33,1972-05-15,COM,52016,1,ARBOT,Arbot,Arbot,COM,52439,0,ROUVRES ARBOT,Rouvres-Arbot,Rouvres-Arbot 33,1972-05-15,COM,52117,0,CHATOILLENOT,Chatoillenot,Chatoillenot,COMA,52117,0,CHATOILLENOT,Chatoillenot,Chatoillenot +33,1972-05-15,COM,52117,0,CHATOILLENOT,Chatoillenot,Chatoillenot,COM,52189,2,VAL D ESNOMS,Val-d'Esnoms,Le Val-d'Esnoms 33,1972-05-15,COM,52150,0,COURCELLES VAL D ESNOMS,Courcelles-Val-d'Esnoms,Courcelles-Val-d'Esnoms,COMA,52150,0,COURCELLES VAL D ESNOMS,Courcelles-Val-d'Esnoms,Courcelles-Val-d'Esnoms 33,1972-05-15,COM,52150,0,COURCELLES VAL D ESNOMS,Courcelles-Val-d'Esnoms,Courcelles-Val-d'Esnoms,COM,52189,2,VAL D ESNOMS,Val-d'Esnoms,Le Val-d'Esnoms 33,1972-05-15,COM,52189,1,ESNOMS AU VAL,Esnoms-au-Val,Esnoms-au-Val,COM,52189,2,VAL D ESNOMS,Val-d'Esnoms,Le Val-d'Esnoms 33,1972-05-15,COM,52439,0,ROUVRES SUR AUBE,Rouvres-sur-Aube,Rouvres-sur-Aube,COM,52439,0,ROUVRES ARBOT,Rouvres-Arbot,Rouvres-Arbot -31,1972-05-01,COM,02308,0,FESMY,Fesmy,Fesmy,COM,02308,0,FESMY LE SART,Fesmy-le-Sart,Fesmy-le-Sart -31,1972-05-01,COM,02700,2,SART,Sart,Le Sart,COM,02308,0,FESMY LE SART,Fesmy-le-Sart,Fesmy-le-Sart +31,1972-05-01,COM,2308,0,FESMY,Fesmy,Fesmy,COM,2308,0,FESMY LE SART,Fesmy-le-Sart,Fesmy-le-Sart +31,1972-05-01,COM,2700,2,SART,Sart,Le Sart,COM,2308,0,FESMY LE SART,Fesmy-le-Sart,Fesmy-le-Sart 31,1972-05-01,COM,10019,1,AUZON LES MARAIS,Auzon-les-Marais,Auzon-les-Marais,COM,10019,0,VAL D AUZON,Val-d'Auzon,Val-d'Auzon 31,1972-05-01,COM,10244,0,MONTANGON,Montangon,Montangon,COM,10019,0,VAL D AUZON,Val-d'Auzon,Val-d'Auzon 31,1972-05-01,COM,10413,0,VILLEHARDOUIN,Villehardouin,Villehardouin,COM,10019,0,VAL D AUZON,Val-d'Auzon,Val-d'Auzon -33,1972-05-01,COM,52048,0,BIENVILLE,Bienville,Bienville,COM,52194,1,EURVILLE BIENVILLE,Eurville-Bienville,Eurville-Bienville 33,1972-05-01,COM,52048,0,BIENVILLE,Bienville,Bienville,COMA,52048,0,BIENVILLE,Bienville,Bienville +33,1972-05-01,COM,52048,0,BIENVILLE,Bienville,Bienville,COM,52194,1,EURVILLE BIENVILLE,Eurville-Bienville,Eurville-Bienville 33,1972-05-01,COM,52094,0,CHALMESSIN,Chalmessin,Chalmessin,COM,52094,0,CHALMESSIN,Chalmessin,Chalmessin 33,1972-05-01,COM,52158,0,CUSEY,Cusey,Cusey,COM,52158,0,CUSEY,Cusey,Cusey 33,1972-05-01,COM,52177,0,DOULAINCOURT,Doulaincourt,Doulaincourt,COM,52177,0,DOULAINCOURT SAUCOURT,Doulaincourt-Saucourt,Doulaincourt-Saucourt 33,1972-05-01,COM,52194,1,EURVILLE,Eurville,Eurville,COM,52194,1,EURVILLE BIENVILLE,Eurville-Bienville,Eurville-Bienville -33,1972-05-01,COM,52382,0,PERCEY SOUS MONTORMENTIER,Percey-sous-Montormentier,Percey-sous-Montormentier,COMA,52382,0,PERCEY SOUS MONTORMENTIER,Percey-sous-Montormentier,Percey-sous-Montormentier 33,1972-05-01,COM,52382,0,PERCEY SOUS MONTORMENTIER,Percey-sous-Montormentier,Percey-sous-Montormentier,COM,52158,0,CUSEY,Cusey,Cusey -33,1972-05-01,COM,52462,0,SAUCOURT SUR ROGNON,Saucourt-sur-Rognon,Saucourt-sur-Rognon,COMA,52462,0,SAUCOURT SUR ROGNON,Saucourt-sur-Rognon,Saucourt-sur-Rognon +33,1972-05-01,COM,52382,0,PERCEY SOUS MONTORMENTIER,Percey-sous-Montormentier,Percey-sous-Montormentier,COMA,52382,0,PERCEY SOUS MONTORMENTIER,Percey-sous-Montormentier,Percey-sous-Montormentier 33,1972-05-01,COM,52462,0,SAUCOURT SUR ROGNON,Saucourt-sur-Rognon,Saucourt-sur-Rognon,COM,52177,0,DOULAINCOURT SAUCOURT,Doulaincourt-Saucourt,Doulaincourt-Saucourt +33,1972-05-01,COM,52462,0,SAUCOURT SUR ROGNON,Saucourt-sur-Rognon,Saucourt-sur-Rognon,COMA,52462,0,SAUCOURT SUR ROGNON,Saucourt-sur-Rognon,Saucourt-sur-Rognon 33,1972-05-01,COM,52530,0,VILLEMERVRY,Villemervry,Villemervry,COM,52094,0,CHALMESSIN,Chalmessin,Chalmessin 33,1972-05-01,COM,52530,0,VILLEMERVRY,Villemervry,Villemervry,COMA,52530,0,VILLEMERVRY,Villemervry,Villemervry 33,1972-05-01,COM,64010,1,AICIRITS,Aïcirits,Aïcirits,COM,64010,1,AICIRITS,Aïcirits,Aïcirits -33,1972-05-01,COM,64163,0,CAMOU MIXE SUHAST,Camou-Mixe-Suhast,Camou-Mixe-Suhast,COMA,64163,0,CAMOU MIXE SUHAST,Camou-Mixe-Suhast,Camou-Mixe-Suhast 33,1972-05-01,COM,64163,0,CAMOU MIXE SUHAST,Camou-Mixe-Suhast,Camou-Mixe-Suhast,COM,64010,1,AICIRITS,Aïcirits,Aïcirits -33,1972-05-01,COM,67015,1,AVENHEIM,Avenheim,Avenheim,COM,67452,0,SCHNERSHEIM,Schnersheim,Schnersheim +33,1972-05-01,COM,64163,0,CAMOU MIXE SUHAST,Camou-Mixe-Suhast,Camou-Mixe-Suhast,COMA,64163,0,CAMOU MIXE SUHAST,Camou-Mixe-Suhast,Camou-Mixe-Suhast 33,1972-05-01,COM,67015,1,AVENHEIM,Avenheim,Avenheim,COMA,67015,1,AVENHEIM,Avenheim,Avenheim -33,1972-05-01,COM,67243,0,KLEINFRANKENHEIM,Kleinfrankenheim,Kleinfrankenheim,COM,67452,0,SCHNERSHEIM,Schnersheim,Schnersheim +33,1972-05-01,COM,67015,1,AVENHEIM,Avenheim,Avenheim,COM,67452,0,SCHNERSHEIM,Schnersheim,Schnersheim 33,1972-05-01,COM,67243,0,KLEINFRANKENHEIM,Kleinfrankenheim,Kleinfrankenheim,COMA,67243,0,KLEINFRANKENHEIM,Kleinfrankenheim,Kleinfrankenheim -33,1972-05-01,COM,67357,1,OFFENHEIM,Offenheim,Offenheim,COM,67485,0,STUTZHEIM OFFENHEIM,Stutzheim-Offenheim,Stutzheim-Offenheim +33,1972-05-01,COM,67243,0,KLEINFRANKENHEIM,Kleinfrankenheim,Kleinfrankenheim,COM,67452,0,SCHNERSHEIM,Schnersheim,Schnersheim 33,1972-05-01,COM,67357,1,OFFENHEIM,Offenheim,Offenheim,COMA,67357,1,OFFENHEIM,Offenheim,Offenheim +33,1972-05-01,COM,67357,1,OFFENHEIM,Offenheim,Offenheim,COM,67485,0,STUTZHEIM OFFENHEIM,Stutzheim-Offenheim,Stutzheim-Offenheim 33,1972-05-01,COM,67452,0,SCHNERSHEIM,Schnersheim,Schnersheim,COM,67452,0,SCHNERSHEIM,Schnersheim,Schnersheim 33,1972-05-01,COM,67485,0,STUTZHEIM,Stutzheim,Stutzheim,COM,67485,0,STUTZHEIM OFFENHEIM,Stutzheim-Offenheim,Stutzheim-Offenheim 33,1972-05-01,COM,86155,0,MESSAIS,Messais,Messais,COMA,86155,0,MESSAIS,Messais,Messais 33,1972-05-01,COM,86155,0,MESSAIS,Messais,Messais,COM,86161,0,MONCONTOUR,Moncontour,Moncontour 33,1972-05-01,COM,86161,0,MONCONTOUR,Moncontour,Moncontour,COM,86161,0,MONCONTOUR,Moncontour,Moncontour 33,1972-04-24,COM,66130,1,OSSEJA,Osséja,Osséja,COM,66130,1,OSSEJA,Osséja,Osséja -33,1972-04-24,COM,66220,0,VALCEBOLLERE,Valcebollère,Valcebollère,COMA,66220,0,VALCEBOLLERE,Valcebollère,Valcebollère 33,1972-04-24,COM,66220,0,VALCEBOLLERE,Valcebollère,Valcebollère,COM,66130,1,OSSEJA,Osséja,Osséja +33,1972-04-24,COM,66220,0,VALCEBOLLERE,Valcebollère,Valcebollère,COMA,66220,0,VALCEBOLLERE,Valcebollère,Valcebollère 33,1972-04-14,COM,47134,0,LANNES,Lannes,Lannes,COM,47134,0,LANNES,Lannes,Lannes 33,1972-04-14,COM,47149,0,LISSE,Lisse,Lisse,COMA,47149,0,LISSE,Lisse,Lisse 33,1972-04-14,COM,47149,0,LISSE,Lisse,Lisse,COM,47221,0,REAUP,Réaup,Réaup 33,1972-04-14,COM,47221,0,REAUP,Réaup,Réaup,COM,47221,0,REAUP,Réaup,Réaup -33,1972-04-14,COM,47322,0,VILLENEUVE DE MEZIN,Villeneuve-de-Mézin,Villeneuve-de-Mézin,COMA,47322,0,VILLENEUVE DE MEZIN,Villeneuve-de-Mézin,Villeneuve-de-Mézin 33,1972-04-14,COM,47322,0,VILLENEUVE DE MEZIN,Villeneuve-de-Mézin,Villeneuve-de-Mézin,COM,47134,0,LANNES,Lannes,Lannes +33,1972-04-14,COM,47322,0,VILLENEUVE DE MEZIN,Villeneuve-de-Mézin,Villeneuve-de-Mézin,COMA,47322,0,VILLENEUVE DE MEZIN,Villeneuve-de-Mézin,Villeneuve-de-Mézin 33,1972-04-08,COM,11128,1,ESCUEILLENS,Escueillens,Escueillens,COM,11128,1,ESCUEILLENS ET SAINT JUST DE BELENGARD,Escueillens-et-Saint-Just-de-Bélengard,Escueillens-et-Saint-Just-de-Bélengard 33,1972-04-08,COM,11349,0,SAINT JUST DE BELENGARD,Saint-Just-de-Bélengard,Saint-Just-de-Bélengard,COM,11128,1,ESCUEILLENS ET SAINT JUST DE BELENGARD,Escueillens-et-Saint-Just-de-Bélengard,Escueillens-et-Saint-Just-de-Bélengard 33,1972-04-08,COM,11349,0,SAINT JUST DE BELENGARD,Saint-Just-de-Bélengard,Saint-Just-de-Bélengard,COMA,11349,0,SAINT JUST DE BELENGARD,Saint-Just-de-Bélengard,Saint-Just-de-Bélengard -33,1972-04-01,COM,14463,0,NEUILLY LE MALHERBE,Neuilly-le-Malherbe,Neuilly-le-Malherbe,COM,14721,0,VACOGNES NEUILLY,Vacognes-Neuilly,Vacognes-Neuilly 33,1972-04-01,COM,14463,0,NEUILLY LE MALHERBE,Neuilly-le-Malherbe,Neuilly-le-Malherbe,COMA,14463,0,NEUILLY LE MALHERBE,Neuilly-le-Malherbe,Neuilly-le-Malherbe +33,1972-04-01,COM,14463,0,NEUILLY LE MALHERBE,Neuilly-le-Malherbe,Neuilly-le-Malherbe,COM,14721,0,VACOGNES NEUILLY,Vacognes-Neuilly,Vacognes-Neuilly 33,1972-04-01,COM,14721,0,VACOGNES,Vacognes,Vacognes,COM,14721,0,VACOGNES NEUILLY,Vacognes-Neuilly,Vacognes-Neuilly 33,1972-04-01,COM,55035,0,BAZINCOURT SUR SAULX,Bazincourt-sur-Saulx,Bazincourt-sur-Saulx,COM,55035,0,BAZINCOURT MONTPLONNE,Bazincourt-Montplonne,Bazincourt-Montplonne 33,1972-04-01,COM,55352,0,MONTPLONNE,Montplonne,Montplonne,COM,55035,0,BAZINCOURT MONTPLONNE,Bazincourt-Montplonne,Bazincourt-Montplonne @@ -11437,42 +11237,42 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-04-01,COM,86033,2,BOUCHET,Bouchet,Le Bouchet,COM,86079,3,ROCHE RIGAULT,Roche-Rigault,La Roche-Rigault 33,1972-04-01,COM,86079,0,CLAUNAY EN LOUDUN,Claunay-en-Loudun,Claunay-en-Loudun,COM,86079,3,ROCHE RIGAULT,Roche-Rigault,La Roche-Rigault 33,1972-03-28,COM,52114,0,CHATEAUVILLAIN,Châteauvillain,Châteauvillain,COM,52114,0,CHATEAUVILLAIN,Châteauvillain,Châteauvillain -33,1972-03-28,COM,52153,0,CREANCEY,Créancey,Créancey,COMA,52153,0,CREANCEY,Créancey,Créancey 33,1972-03-28,COM,52153,0,CREANCEY,Créancey,Créancey,COM,52114,0,CHATEAUVILLAIN,Châteauvillain,Châteauvillain -33,1972-03-28,COM,52192,1,ESSEY LES PONTS,Essey-les-Ponts,Essey-les-Ponts,COMA,52192,1,ESSEY LES PONTS,Essey-les-Ponts,Essey-les-Ponts +33,1972-03-28,COM,52153,0,CREANCEY,Créancey,Créancey,COMA,52153,0,CREANCEY,Créancey,Créancey 33,1972-03-28,COM,52192,1,ESSEY LES PONTS,Essey-les-Ponts,Essey-les-Ponts,COM,52114,0,CHATEAUVILLAIN,Châteauvillain,Châteauvillain +33,1972-03-28,COM,52192,1,ESSEY LES PONTS,Essey-les-Ponts,Essey-les-Ponts,COMA,52192,1,ESSEY LES PONTS,Essey-les-Ponts,Essey-les-Ponts 33,1972-03-28,COM,52314,0,MARMESSE,Marmesse,Marmesse,COM,52114,0,CHATEAUVILLAIN,Châteauvillain,Châteauvillain 33,1972-03-28,COM,52314,0,MARMESSE,Marmesse,Marmesse,COMA,52314,0,MARMESSE,Marmesse,Marmesse 31,1972-03-21,COM,31144,0,CIERP,Cierp,Cierp,COM,31144,0,CIERP GAUD,Cierp-Gaud,Cierp-Gaud 31,1972-03-21,COM,31214,0,GAUD,Gaud,Gaud,COM,31144,0,CIERP GAUD,Cierp-Gaud,Cierp-Gaud -31,1972-03-01,COM,03199,0,NEUVILLE,Neuville,Neuville,COM,03315,0,VILLEFRANCHE D ALLIER,Villefranche-d'Allier,Villefranche-d'Allier -31,1972-03-01,COM,03315,0,VILLEFRANCHE,Villefranche,Villefranche,COM,03315,0,VILLEFRANCHE D ALLIER,Villefranche-d'Allier,Villefranche-d'Allier +31,1972-03-01,COM,3199,0,NEUVILLE,Neuville,Neuville,COM,3315,0,VILLEFRANCHE D ALLIER,Villefranche-d'Allier,Villefranche-d'Allier +31,1972-03-01,COM,3315,0,VILLEFRANCHE,Villefranche,Villefranche,COM,3315,0,VILLEFRANCHE D ALLIER,Villefranche-d'Allier,Villefranche-d'Allier 31,1972-03-01,COM,27129,0,CAORCHES,Caorches,Caorches,COM,27129,0,CAORCHES SAINT NICOLAS,Caorches-Saint-Nicolas,Caorches-Saint-Nicolas 31,1972-03-01,COM,27575,0,SAINT NICOLAS DU BOSC L ABBE,Saint-Nicolas-du-Bosc-l'Abbé,Saint-Nicolas-du-Bosc-l'Abbé,COM,27129,0,CAORCHES SAINT NICOLAS,Caorches-Saint-Nicolas,Caorches-Saint-Nicolas 33,1972-03-01,COM,67376,0,BISCHTROFF SUR SARRE,Bischtroff-sur-Sarre,Bischtroff-sur-Sarre,COMA,67376,0,BISCHTROFF SUR SARRE,Bischtroff-sur-Sarre,Bischtroff-sur-Sarre 33,1972-03-01,COM,67376,0,BISCHTROFF SUR SARRE,Bischtroff-sur-Sarre,Bischtroff-sur-Sarre,COM,67435,0,SARREWERDEN,Sarrewerden,Sarrewerden 33,1972-03-01,COM,67435,0,SARREWERDEN,Sarrewerden,Sarrewerden,COM,67435,0,SARREWERDEN,Sarrewerden,Sarrewerden -33,1972-03-01,COM,67561,0,ZOLLINGEN,Zollingen,Zollingen,COMA,67561,0,ZOLLINGEN,Zollingen,Zollingen 33,1972-03-01,COM,67561,0,ZOLLINGEN,Zollingen,Zollingen,COM,67435,0,SARREWERDEN,Sarrewerden,Sarrewerden +33,1972-03-01,COM,67561,0,ZOLLINGEN,Zollingen,Zollingen,COMA,67561,0,ZOLLINGEN,Zollingen,Zollingen 31,1972-03-01,COM,79078,0,CHARRIERE,Charrière,Charrière,COM,79078,0,PRISSE LA CHARRIERE,Prissé-la-Charrière,Prissé-la-Charrière 31,1972-03-01,COM,79221,0,PRISSE,Prissé,Prissé,COM,79078,0,PRISSE LA CHARRIERE,Prissé-la-Charrière,Prissé-la-Charrière 33,1972-03-01,COM,86137,0,LOUDUN,Loudun,Loudun,COM,86137,0,LOUDUN,Loudun,Loudun -33,1972-03-01,COM,86212,0,ROSSAY,Rossay,Rossay,COMA,86212,0,ROSSAY,Rossay,Rossay 33,1972-03-01,COM,86212,0,ROSSAY,Rossay,Rossay,COM,86137,0,LOUDUN,Loudun,Loudun +33,1972-03-01,COM,86212,0,ROSSAY,Rossay,Rossay,COMA,86212,0,ROSSAY,Rossay,Rossay 33,1972-02-14,COM,77031,0,BERNAY EN BRIE,Bernay-en-Brie,Bernay-en-Brie,COM,77031,0,BERNAY VILBERT,Bernay-Vilbert,Bernay-Vilbert -33,1972-02-14,COM,77499,0,VILBERT,Vilbert,Vilbert,COMA,77499,0,VILBERT,Vilbert,Vilbert 33,1972-02-14,COM,77499,0,VILBERT,Vilbert,Vilbert,COM,77031,0,BERNAY VILBERT,Bernay-Vilbert,Bernay-Vilbert +33,1972-02-14,COM,77499,0,VILBERT,Vilbert,Vilbert,COMA,77499,0,VILBERT,Vilbert,Vilbert 33,1972-01-01,COM,14149,0,CESNY AUX VIGNES,Cesny-aux-Vignes,Cesny-aux-Vignes,COM,14149,0,CESNY AUX VIGNES OUEZY,Cesny-aux-Vignes-Ouézy,Cesny-aux-Vignes-Ouézy -33,1972-01-01,COM,14482,1,OUEZY,Ouézy,Ouézy,COMA,14482,1,OUEZY,Ouézy,Ouézy 33,1972-01-01,COM,14482,1,OUEZY,Ouézy,Ouézy,COM,14149,0,CESNY AUX VIGNES OUEZY,Cesny-aux-Vignes-Ouézy,Cesny-aux-Vignes-Ouézy +33,1972-01-01,COM,14482,1,OUEZY,Ouézy,Ouézy,COMA,14482,1,OUEZY,Ouézy,Ouézy 31,1972-01-01,COM,20044,0,BRUSTICO,Brustico,Brustico,COM,20063,0,CARCHETO BRUSTICO,Carcheto-Brustico,Carcheto-Brustico 31,1972-01-01,COM,20063,0,CARCHETO,Carcheto,Carcheto,COM,20063,0,CARCHETO BRUSTICO,Carcheto-Brustico,Carcheto-Brustico 31,1972-01-01,COM,20151,0,LUNGHIGNANO,Lunghignano,Lunghignano,COM,20167,0,SAINT RAINIER DE BALAGNE,Saint-Rainier-de-Balagne,Saint-Rainier-de-Balagne 31,1972-01-01,COM,20167,0,MONTEMAGGIORE,Montemaggiore,Montemaggiore,COM,20167,0,SAINT RAINIER DE BALAGNE,Saint-Rainier-de-Balagne,Saint-Rainier-de-Balagne 31,1972-01-01,COM,22159,0,NOTRE DAME DU GUILDO,Notre-Dame-du-Guildo,Notre-Dame-du-Guildo,COM,22282,0,SAINT CAST LE GUILDO,Saint-Cast-le-Guildo,Saint-Cast-le-Guildo 31,1972-01-01,COM,22282,0,SAINT CAST,Saint-Cast,Saint-Cast,COM,22282,0,SAINT CAST LE GUILDO,Saint-Cast-le-Guildo,Saint-Cast-le-Guildo -33,1972-01-01,COM,27080,0,BOISSY SUR DAMVILLE,Boissy-sur-Damville,Boissy-sur-Damville,COM,27416,0,BUIS SUR DAMVILLE,Buis-sur-Damville,Buis-sur-Damville 33,1972-01-01,COM,27080,0,BOISSY SUR DAMVILLE,Boissy-sur-Damville,Boissy-sur-Damville,COMA,27080,0,BOISSY SUR DAMVILLE,Boissy-sur-Damville,Boissy-sur-Damville +33,1972-01-01,COM,27080,0,BOISSY SUR DAMVILLE,Boissy-sur-Damville,Boissy-sur-Damville,COM,27416,0,BUIS SUR DAMVILLE,Buis-sur-Damville,Buis-sur-Damville 33,1972-01-01,COM,27186,0,CRETON,Créton,Créton,COMA,27186,0,CRETON,Créton,Créton 33,1972-01-01,COM,27186,0,CRETON,Créton,Créton,COM,27416,0,BUIS SUR DAMVILLE,Buis-sur-Damville,Buis-sur-Damville 33,1972-01-01,COM,27416,0,MORAINVILLE SUR DAMVILLE,Morainville-sur-Damville,Morainville-sur-Damville,COM,27416,0,BUIS SUR DAMVILLE,Buis-sur-Damville,Buis-sur-Damville @@ -11480,22 +11280,22 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-01-01,COM,41021,3,BOSSE,Bosse,La Bosse,COM,41273,0,VIEVY LE RAYE,Vievy-le-Rayé,Vievy-le-Rayé 33,1972-01-01,COM,41076,1,ECOMAN,Écoman,Écoman,COMA,41076,1,ECOMAN,Écoman,Écoman 33,1972-01-01,COM,41076,1,ECOMAN,Écoman,Écoman,COM,41273,0,VIEVY LE RAYE,Vievy-le-Rayé,Vievy-le-Rayé -33,1972-01-01,COM,41162,0,NOUAN SUR LOIRE,Nouan-sur-Loire,Nouan-sur-Loire,COM,41220,0,SAINT LAURENT NOUAN,Saint-Laurent-Nouan,Saint-Laurent-Nouan 33,1972-01-01,COM,41162,0,NOUAN SUR LOIRE,Nouan-sur-Loire,Nouan-sur-Loire,COMA,41162,0,NOUAN SUR LOIRE,Nouan-sur-Loire,Nouan-sur-Loire +33,1972-01-01,COM,41162,0,NOUAN SUR LOIRE,Nouan-sur-Loire,Nouan-sur-Loire,COM,41220,0,SAINT LAURENT NOUAN,Saint-Laurent-Nouan,Saint-Laurent-Nouan 33,1972-01-01,COM,41220,0,SAINT LAURENT DES EAUX,Saint-Laurent-des-Eaux,Saint-Laurent-des-Eaux,COM,41220,0,SAINT LAURENT NOUAN,Saint-Laurent-Nouan,Saint-Laurent-Nouan 33,1972-01-01,COM,41273,0,VIEVY LE RAYE,Vievy-le-Rayé,Vievy-le-Rayé,COM,41273,0,VIEVY LE RAYE,Vievy-le-Rayé,Vievy-le-Rayé 33,1972-01-01,COM,53003,1,AMBRIERES LE GRAND,Ambrières-le-Grand,Ambrières-le-Grand,COM,53003,1,AMBRIERES LES VALLEES,Ambrières-les-Vallées,Ambrières-les-Vallées -33,1972-01-01,COM,53070,0,CIGNE,Cigné,Cigné,COMA,53070,0,CIGNE,Cigné,Cigné 33,1972-01-01,COM,53070,0,CIGNE,Cigné,Cigné,COM,53003,1,AMBRIERES LES VALLEES,Ambrières-les-Vallées,Ambrières-les-Vallées +33,1972-01-01,COM,53070,0,CIGNE,Cigné,Cigné,COMA,53070,0,CIGNE,Cigné,Cigné 33,1972-01-01,COM,53103,2,GENEST,Genest,Le Genest,COM,53103,2,GENEST SAINT ISLE,Genest-Saint-Isle,Le Genest-Saint-Isle 33,1972-01-01,COM,53111,3,HAIE TRAVERSAINE,Haie-Traversaine,La Haie-Traversaine,COM,53003,1,AMBRIERES LES VALLEES,Ambrières-les-Vallées,Ambrières-les-Vallées 33,1972-01-01,COM,53111,3,HAIE TRAVERSAINE,Haie-Traversaine,La Haie-Traversaine,COMA,53111,3,HAIE TRAVERSAINE,Haie-Traversaine,La Haie-Traversaine 33,1972-01-01,COM,53133,0,LIGNIERES LA DOUCELLE,Lignières-la-Doucelle,Lignières-la-Doucelle,COM,53133,0,LIGNIERES ORGERES,Lignières-Orgères,Lignières-Orgères 33,1972-01-01,COM,53160,0,MONTREUIL,Montreuil,Montreuil,COM,53160,0,MONTREUIL POULAY,Montreuil-Poulay,Montreuil-Poulay -33,1972-01-01,COM,53171,1,ORGERES LA ROCHE,Orgères-la-Roche,Orgères-la-Roche,COMA,53171,1,ORGERES LA ROCHE,Orgères-la-Roche,Orgères-la-Roche 33,1972-01-01,COM,53171,1,ORGERES LA ROCHE,Orgères-la-Roche,Orgères-la-Roche,COM,53133,0,LIGNIERES ORGERES,Lignières-Orgères,Lignières-Orgères -33,1972-01-01,COM,53183,0,POULAY,Poulay,Poulay,COMA,53183,0,POULAY,Poulay,Poulay +33,1972-01-01,COM,53171,1,ORGERES LA ROCHE,Orgères-la-Roche,Orgères-la-Roche,COMA,53171,1,ORGERES LA ROCHE,Orgères-la-Roche,Orgères-la-Roche 33,1972-01-01,COM,53183,0,POULAY,Poulay,Poulay,COM,53160,0,MONTREUIL POULAY,Montreuil-Poulay,Montreuil-Poulay +33,1972-01-01,COM,53183,0,POULAY,Poulay,Poulay,COMA,53183,0,POULAY,Poulay,Poulay 33,1972-01-01,COM,53227,0,SAINT ISLE,Saint-Isle,Saint-Isle,COM,53103,2,GENEST SAINT ISLE,Genest-Saint-Isle,Le Genest-Saint-Isle 33,1972-01-01,COM,53227,0,SAINT ISLE,Saint-Isle,Saint-Isle,COMA,53227,0,SAINT ISLE,Saint-Isle,Saint-Isle 31,1972-01-01,COM,57306,1,HAYANGE,Hayange,Hayange,COM,57306,1,HAYANGE,Hayange,Hayange @@ -11513,8 +11313,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-01-01,COM,66037,0,CANET,Canet,Canet,COM,66037,0,CANET EN ROUSSILLON SAINT NAZAIRE,Canet-en-Roussillon-Saint-Nazaire,Canet-en-Roussillon-Saint-Nazaire 31,1972-01-01,COM,66127,1,OPOUL,Opoul,Opoul,COM,66127,1,OPOUL PERILLOS,Opoul-Périllos,Opoul-Périllos 31,1972-01-01,COM,66135,0,PERILLOS,Périllos,Périllos,COM,66127,1,OPOUL PERILLOS,Opoul-Périllos,Opoul-Périllos -33,1972-01-01,COM,66186,0,SAINT NAZAIRE,Saint-Nazaire,Saint-Nazaire,COMA,66186,0,SAINT NAZAIRE,Saint-Nazaire,Saint-Nazaire 33,1972-01-01,COM,66186,0,SAINT NAZAIRE,Saint-Nazaire,Saint-Nazaire,COM,66037,0,CANET EN ROUSSILLON SAINT NAZAIRE,Canet-en-Roussillon-Saint-Nazaire,Canet-en-Roussillon-Saint-Nazaire +33,1972-01-01,COM,66186,0,SAINT NAZAIRE,Saint-Nazaire,Saint-Nazaire,COMA,66186,0,SAINT NAZAIRE,Saint-Nazaire,Saint-Nazaire 31,1972-01-01,COM,71053,0,BRAGNY EN CHAROLLAIS,Bragny-en-Charollais,Bragny-en-Charollais,COM,71490,0,SAINT VINCENT BRAGNY,Saint-Vincent-Bragny,Saint-Vincent-Bragny 33,1972-01-01,COM,71270,0,MACON,Mâcon,Mâcon,COM,71270,0,MACON,Mâcon,Mâcon 33,1972-01-01,COM,71432,0,SAINT JEAN LE PRICHE,Saint-Jean-le-Priche,Saint-Jean-le-Priche,COM,71270,0,MACON,Mâcon,Mâcon @@ -11531,7 +11331,7 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 33,1972-01-01,COM,77494,0,VERNOU SUR SEINE,Vernou-sur-Seine,Vernou-sur-Seine,COM,77494,0,VERNOU LA CELLE SUR SEINE,Vernou-la-Celle-sur-Seine,Vernou-la-Celle-sur-Seine 31,1972-01-01,COM,79191,0,NIORT,Niort,Niort,COM,79191,0,NIORT,Niort,Niort 31,1972-01-01,COM,79266,0,SAINT LIGUAIRE,Saint-Liguaire,Saint-Liguaire,COM,79191,0,NIORT,Niort,Niort -10,1971-08-12,COM,09289,0,SENTARAILLE,Sentaraille,Sentaraille,COM,09289,0,LORP SENTARAILLE,Lorp-Sentaraille,Lorp-Sentaraille +10,1971-08-12,COM,9289,0,SENTARAILLE,Sentaraille,Sentaraille,COM,9289,0,LORP SENTARAILLE,Lorp-Sentaraille,Lorp-Sentaraille 10,1971-08-12,COM,30346,0,VERS,Vers,Vers,COM,30346,0,VERS PONT DU GARD,Vers-Pont-du-Gard,Vers-Pont-du-Gard 10,1971-08-12,COM,33146,0,CUSSAC,Cussac,Cussac,COM,33146,0,CUSSAC FORT MEDOC,Cussac-Fort-Médoc,Cussac-Fort-Médoc 10,1971-08-12,COM,39149,0,CHISSEY,Chissey,Chissey,COM,39149,0,CHISSEY SUR LOUE,Chissey-sur-Loue,Chissey-sur-Loue @@ -11540,12 +11340,12 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1971-08-12,COM,80630,0,POIX,Poix,Poix,COM,80630,0,POIX DE PICARDIE,Poix-de-Picardie,Poix-de-Picardie 10,1971-08-12,COM,91408,0,MOIGNY,Moigny,Moigny,COM,91408,0,MOIGNY SUR ECOLE,Moigny-sur-École,Moigny-sur-École 10,1971-07-17,COM,78403,0,MEZY,Mézy,Mézy,COM,78403,0,MEZY SUR SEINE,Mézy-sur-Seine,Mézy-sur-Seine -31,1971-07-01,COM,02140,0,CAMELIN ET LE FRESNE,Camelin-et-le-Fresne,Camelin-et-le-Fresne,COM,02140,0,CAMELIN,Camelin,Camelin -31,1971-07-01,COM,02436,0,LOMBRAY,Lombray,Lombray,COM,02140,0,CAMELIN,Camelin,Camelin -31,1971-07-01,COM,02603,0,PISSELEUX,Pisseleux,Pisseleux,COM,02810,0,VILLERS COTTERETS,Villers-Cotterêts,Villers-Cotterêts -31,1971-07-01,COM,02810,0,VILLERS COTTERETS,Villers-Cotterêts,Villers-Cotterêts,COM,02810,0,VILLERS COTTERETS,Villers-Cotterêts,Villers-Cotterêts -31,1971-07-01,COM,08194,0,GLAIRE ET VILLETTE,Glaire-et-Villette,Glaire-et-Villette,COM,08194,0,GLAIRE,Glaire,Glaire -31,1971-07-01,COM,08231,1,IGES,Iges,Iges,COM,08194,0,GLAIRE,Glaire,Glaire +31,1971-07-01,COM,2140,0,CAMELIN ET LE FRESNE,Camelin-et-le-Fresne,Camelin-et-le-Fresne,COM,2140,0,CAMELIN,Camelin,Camelin +31,1971-07-01,COM,2436,0,LOMBRAY,Lombray,Lombray,COM,2140,0,CAMELIN,Camelin,Camelin +31,1971-07-01,COM,2603,0,PISSELEUX,Pisseleux,Pisseleux,COM,2810,0,VILLERS COTTERETS,Villers-Cotterêts,Villers-Cotterêts +31,1971-07-01,COM,2810,0,VILLERS COTTERETS,Villers-Cotterêts,Villers-Cotterêts,COM,2810,0,VILLERS COTTERETS,Villers-Cotterêts,Villers-Cotterêts +31,1971-07-01,COM,8194,0,GLAIRE ET VILLETTE,Glaire-et-Villette,Glaire-et-Villette,COM,8194,0,GLAIRE,Glaire,Glaire +31,1971-07-01,COM,8231,1,IGES,Iges,Iges,COM,8194,0,GLAIRE,Glaire,Glaire 31,1971-07-01,COM,37163,0,NAZELLES,Nazelles,Nazelles,COM,37163,0,NAZELLES NEGRON,Nazelles-Négron,Nazelles-Négron 31,1971-07-01,COM,37164,0,NEGRON,Négron,Négron,COM,37163,0,NAZELLES NEGRON,Nazelles-Négron,Nazelles-Négron 31,1971-07-01,COM,62687,0,RANCHICOURT,Ranchicourt,Ranchicourt,COM,62693,0,REBREUVE RANCHICOURT,Rebreuve-Ranchicourt,Rebreuve-Ranchicourt @@ -11555,7 +11355,7 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1971-05-17,COM,11353,0,SAINT MARCEL,Saint-Marcel,Saint-Marcel,COM,11353,0,SAINT MARCEL SUR AUDE,Saint-Marcel-sur-Aude,Saint-Marcel-sur-Aude 31,1971-04-22,COM,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche,COM,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche 31,1971-04-22,COM,73037,0,BELLECOMBE,Bellecombe,Bellecombe,COM,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche -31,1971-04-22,COM,73125,0,GRAND COEUR,Grand-Cœur,Grand-Cœur,COM,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche +31,1971-04-22,COM,73125,0,GRAND COUR,Grand-Cœur,Grand-Cœur,COM,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche 31,1971-04-22,COM,73319,0,VILLARGEREL,Villargerel,Villargerel,COM,73003,1,AIGUEBLANCHE,Aigueblanche,Aigueblanche 10,1971-04-08,COM,28196,1,ILLIERS,Illiers,Illiers,COM,28196,1,ILLIERS COMBRAY,Illiers-Combray,Illiers-Combray 41,1971-04-01,COM,38119,0,COLOMBIER SAUGNIEU,Colombier-Saugnieu,Colombier-Saugnieu,COM,69299,0,COLOMBIER SAUGNIEU,Colombier-Saugnieu,Colombier-Saugnieu @@ -11571,29 +11371,29 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1971-03-24,COM,77243,0,LAGNY,Lagny,Lagny,COM,77243,0,LAGNY SUR MARNE,Lagny-sur-Marne,Lagny-sur-Marne 10,1971-03-17,COM,50576,0,SIOUVILLE,Siouville,Siouville,COM,50576,0,SIOUVILLE HAGUE,Siouville-Hague,Siouville-Hague 31,1971-03-14,COM,67323,0,NIEDERBETSCHDORF,Niederbetschdorf,Niederbetschdorf,COM,67339,0,BETSCHDORF,Betschdorf,Betschdorf -31,1971-03-14,COM,67339,0,OBERBETSCHDORF,Oberbetschdorf,Oberbetschdorf,COM,67339,0,BETSCHDORF,Betschdorf,Betschdorf +31,1971-03-14,COM,67339,1,OBERBETSCHDORF,Oberbetschdorf,Oberbetschdorf,COM,67339,0,BETSCHDORF,Betschdorf,Betschdorf 31,1971-03-13,COM,57306,1,HAYANGE,Hayange,Hayange,COM,57306,1,HAYANGE,Hayange,Hayange 31,1971-03-13,COM,57450,0,MARSPICH,Marspich,Marspich,COM,57306,1,HAYANGE,Hayange,Hayange 31,1971-03-13,COM,89082,3,CHAPELLE VIEILLE FORET,Chapelle-Vieille-Forêt,La Chapelle-Vieille-Forêt,COM,89169,0,FLOGNY LA CHAPELLE,Flogny-la-Chapelle,Flogny-la-Chapelle 31,1971-03-13,COM,89169,0,FLOGNY,Flogny,Flogny,COM,89169,0,FLOGNY LA CHAPELLE,Flogny-la-Chapelle,Flogny-la-Chapelle 31,1971-03-04,COM,54010,1,ALLAMPS,Allamps,Allamps,COM,54010,1,ALLAMPS,Allamps,Allamps 31,1971-03-04,COM,54267,1,HOUSSELMONT,Housselmont,Housselmont,COM,54010,1,ALLAMPS,Allamps,Allamps -31,1971-03-01,COM,08002,1,ADON,Adon,Adon,COM,08113,0,CHAUMONT PORCIEN,Chaumont-Porcien,Chaumont-Porcien -31,1971-03-01,COM,08113,0,CHAUMONT PORCIEN,Chaumont-Porcien,Chaumont-Porcien,COM,08113,0,CHAUMONT PORCIEN,Chaumont-Porcien,Chaumont-Porcien +31,1971-03-01,COM,8002,1,ADON,Adon,Adon,COM,8113,0,CHAUMONT PORCIEN,Chaumont-Porcien,Chaumont-Porcien +31,1971-03-01,COM,8113,0,CHAUMONT PORCIEN,Chaumont-Porcien,Chaumont-Porcien,COM,8113,0,CHAUMONT PORCIEN,Chaumont-Porcien,Chaumont-Porcien 31,1971-03-01,COM,27025,1,AUTHEUIL,Autheuil,Autheuil,COM,27025,1,AUTHEUIL AUTHOUILLET,Autheuil-Authouillet,Autheuil-Authouillet 31,1971-03-01,COM,27029,1,AUTHOUILLET,Authouillet,Authouillet,COM,27025,1,AUTHEUIL AUTHOUILLET,Autheuil-Authouillet,Autheuil-Authouillet 31,1971-03-01,COM,35069,0,CHATEAUGIRON,Châteaugiron,Châteaugiron,COM,35069,0,CHATEAUGIRON,Châteaugiron,Châteaugiron 31,1971-03-01,COM,35349,0,VENEFFLES,Veneffles,Veneffles,COM,35069,0,CHATEAUGIRON,Châteaugiron,Châteaugiron -31,1971-03-01,COM,39209,1,EPY,Épy,Épy,COM,39209,0,EPY LANERIA,Épy-Lanéria,Épy-Lanéria -31,1971-03-01,COM,39276,0,LANERIA,Lanéria,Lanéria,COM,39209,0,EPY LANERIA,Épy-Lanéria,Épy-Lanéria +31,1971-03-01,COM,39209,1,EPY,Épy,Épy,COM,39209,1,EPY LANERIA,Épy-Lanéria,Épy-Lanéria +31,1971-03-01,COM,39276,0,LANERIA,Lanéria,Lanéria,COM,39209,1,EPY LANERIA,Épy-Lanéria,Épy-Lanéria 31,1971-03-01,COM,44156,0,SAINT ETIENNE DE CORCOUE,Saint-Étienne-de-Corcoué,Saint-Étienne-de-Corcoué,COM,44156,0,CORCOUE SUR LOGNE,Corcoué-sur-Logne,Corcoué-sur-Logne 31,1971-03-01,COM,44167,0,SAINT JEAN DE CORCOUE,Saint-Jean-de-Corcoué,Saint-Jean-de-Corcoué,COM,44156,0,CORCOUE SUR LOGNE,Corcoué-sur-Logne,Corcoué-sur-Logne 31,1971-03-01,COM,60374,0,MAIGNELAY,Maignelay,Maignelay,COM,60374,0,MAIGNELAY MONTIGNY,Maignelay-Montigny,Maignelay-Montigny 31,1971-03-01,COM,60419,0,MONTIGNY,Montigny,Montigny,COM,60374,0,MAIGNELAY MONTIGNY,Maignelay-Montigny,Maignelay-Montigny 31,1971-03-01,COM,80233,0,DANCOURT,Dancourt,Dancourt,COM,80233,0,DANCOURT POPINCOURT,Dancourt-Popincourt,Dancourt-Popincourt 31,1971-03-01,COM,80636,0,POPINCOURT,Popincourt,Popincourt,COM,80233,0,DANCOURT POPINCOURT,Dancourt-Popincourt,Dancourt-Popincourt -31,1971-02-25,COM,02008,1,AIZY,Aizy,Aizy,COM,02008,1,AIZY JOUY,Aizy-Jouy,Aizy-Jouy -31,1971-02-25,COM,02394,0,JOUY,Jouy,Jouy,COM,02008,1,AIZY JOUY,Aizy-Jouy,Aizy-Jouy +31,1971-02-25,COM,2008,1,AIZY,Aizy,Aizy,COM,2008,1,AIZY JOUY,Aizy-Jouy,Aizy-Jouy +31,1971-02-25,COM,2394,0,JOUY,Jouy,Jouy,COM,2008,1,AIZY JOUY,Aizy-Jouy,Aizy-Jouy 31,1971-02-25,COM,52334,0,MONTORMENTIER,Montormentier,Montormentier,COM,52382,0,PERCEY SOUS MONTORMENTIER,Percey-sous-Montormentier,Percey-sous-Montormentier 31,1971-02-25,COM,52382,0,PERCEY LE PETIT,Percey-le-Petit,Percey-le-Petit,COM,52382,0,PERCEY SOUS MONTORMENTIER,Percey-sous-Montormentier,Percey-sous-Montormentier 31,1971-02-21,COM,62706,0,RICHEBOURG L AVOUE,Richebourg-l'Avoué,Richebourg-l'Avoué,COM,62706,0,RICHEBOURG,Richebourg,Richebourg @@ -11622,18 +11422,18 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1971-02-01,COM,71294,0,MERCUREY,Mercurey,Mercurey,COM,71294,0,MERCUREY,Mercurey,Mercurey 31,1971-01-10,COM,85223,0,SAINTE HERMINE,Sainte-Hermine,Sainte-Hermine,COM,85223,0,SAINTE HERMINE,Sainte-Hermine,Sainte-Hermine 31,1971-01-10,COM,85283,0,SIMON LA VINEUSE,Simon-la-Vineuse,Simon-la-Vineuse,COM,85223,0,SAINTE HERMINE,Sainte-Hermine,Sainte-Hermine -31,1971-01-01,COM,01018,1,ARLOD,Arlod,Arlod,COM,01033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine -31,1971-01-01,COM,01033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine,COM,01033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine -31,1971-01-01,COM,02045,0,BARBONVAL,Barbonval,Barbonval,COM,02439,0,LONGUEVAL BARBONVAL,Longueval-Barbonval,Longueval-Barbonval -31,1971-01-01,COM,02202,0,COHAN,Cohan,Cohan,COM,02220,0,COULONGES COHAN,Coulonges-Cohan,Coulonges-Cohan -31,1971-01-01,COM,02220,0,COULONGES EN TARDENOIS,Coulonges-en-Tardenois,Coulonges-en-Tardenois,COM,02220,0,COULONGES COHAN,Coulonges-Cohan,Coulonges-Cohan -31,1971-01-01,COM,02437,0,LONGCHAMPS,Longchamps,Longchamps,COM,02757,0,VADENCOURT,Vadencourt,Vadencourt -31,1971-01-01,COM,02439,0,LONGUEVAL,Longueval,Longueval,COM,02439,0,LONGUEVAL BARBONVAL,Longueval-Barbonval,Longueval-Barbonval -31,1971-01-01,COM,02757,0,VADENCOURT ET BOHERIES,Vadencourt-et-Bohéries,Vadencourt-et-Bohéries,COM,02757,0,VADENCOURT,Vadencourt,Vadencourt -31,1971-01-01,COM,08024,1,ASFELD,Asfeld,Asfeld,COM,08024,1,ASFELD,Asfeld,Asfeld -31,1971-01-01,COM,08241,0,JUZANCOURT,Juzancourt,Juzancourt,COM,08024,1,ASFELD,Asfeld,Asfeld -31,1971-01-01,COM,09059,0,BONAC,Bonac,Bonac,COM,09059,0,BONAC IRAZEIN,Bonac-Irazein,Bonac-Irazein -31,1971-01-01,COM,09144,1,IRAZEIN,Irazein,Irazein,COM,09059,0,BONAC IRAZEIN,Bonac-Irazein,Bonac-Irazein +31,1971-01-01,COM,1018,1,ARLOD,Arlod,Arlod,COM,1033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine +31,1971-01-01,COM,1033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine,COM,1033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine +31,1971-01-01,COM,2045,0,BARBONVAL,Barbonval,Barbonval,COM,2439,0,LONGUEVAL BARBONVAL,Longueval-Barbonval,Longueval-Barbonval +31,1971-01-01,COM,2202,0,COHAN,Cohan,Cohan,COM,2220,0,COULONGES COHAN,Coulonges-Cohan,Coulonges-Cohan +31,1971-01-01,COM,2220,0,COULONGES EN TARDENOIS,Coulonges-en-Tardenois,Coulonges-en-Tardenois,COM,2220,0,COULONGES COHAN,Coulonges-Cohan,Coulonges-Cohan +31,1971-01-01,COM,2437,0,LONGCHAMPS,Longchamps,Longchamps,COM,2757,0,VADENCOURT,Vadencourt,Vadencourt +31,1971-01-01,COM,2439,0,LONGUEVAL,Longueval,Longueval,COM,2439,0,LONGUEVAL BARBONVAL,Longueval-Barbonval,Longueval-Barbonval +31,1971-01-01,COM,2757,0,VADENCOURT ET BOHERIES,Vadencourt-et-Bohéries,Vadencourt-et-Bohéries,COM,2757,0,VADENCOURT,Vadencourt,Vadencourt +31,1971-01-01,COM,8024,1,ASFELD,Asfeld,Asfeld,COM,8024,1,ASFELD,Asfeld,Asfeld +31,1971-01-01,COM,8241,0,JUZANCOURT,Juzancourt,Juzancourt,COM,8024,1,ASFELD,Asfeld,Asfeld +31,1971-01-01,COM,9059,0,BONAC,Bonac,Bonac,COM,9059,0,BONAC IRAZEIN,Bonac-Irazein,Bonac-Irazein +31,1971-01-01,COM,9144,1,IRAZEIN,Irazein,Irazein,COM,9059,0,BONAC IRAZEIN,Bonac-Irazein,Bonac-Irazein 31,1971-01-01,COM,16080,0,CHANTREZAC,Chantrezac,Chantrezac,COM,16192,0,ROUMAZIERES LOUBERT,Roumazières-Loubert,Roumazières-Loubert 31,1971-01-01,COM,16192,0,LOUBERT MADIEU,Loubert-Madieu,Loubert-Madieu,COM,16192,0,ROUMAZIERES LOUBERT,Roumazières-Loubert,Roumazières-Loubert 31,1971-01-01,COM,16198,0,MAGNAC LAVALETTE,Magnac-Lavalette,Magnac-Lavalette,COM,16198,0,MAGNAC LAVALETTE VILLARS,Magnac-Lavalette-Villars,Magnac-Lavalette-Villars @@ -11676,10 +11476,10 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 41,1971-01-01,COM,80831,1,YTRES,Ytres,Ytres,COM,62909,1,YTRES,Ytres,Ytres 31,1971-01-01,COM,89026,1,AVROLLES,Avrolles,Avrolles,COM,89345,0,SAINT FLORENTIN,Saint-Florentin,Saint-Florentin 31,1971-01-01,COM,89345,0,SAINT FLORENTIN,Saint-Florentin,Saint-Florentin,COM,89345,0,SAINT FLORENTIN,Saint-Florentin,Saint-Florentin -10,1970-12-30,COM,05045,4,CROTTES,Crottes,Les Crottes,COM,05045,0,CROTS,Crots,Crots +10,1970-12-30,COM,5045,4,CROTTES,Crottes,Les Crottes,COM,5045,0,CROTS,Crots,Crots 31,1970-12-30,COM,51401,3,NEUVILLETTE,Neuvillette,La Neuvillette,COM,51454,0,REIMS,Reims,Reims 31,1970-12-30,COM,51454,0,REIMS,Reims,Reims,COM,51454,0,REIMS,Reims,Reims -10,1970-12-07,COM,06079,0,MANDELIEU,Mandelieu,Mandelieu,COM,06079,0,MANDELIEU LA NAPOULE,Mandelieu-la-Napoule,Mandelieu-la-Napoule +10,1970-12-07,COM,6079,0,MANDELIEU,Mandelieu,Mandelieu,COM,6079,0,MANDELIEU LA NAPOULE,Mandelieu-la-Napoule,Mandelieu-la-Napoule 10,1970-12-07,COM,11215,0,MALVES,Malves,Malves,COM,11215,0,MALVES EN MINERVOIS,Malves-en-Minervois,Malves-en-Minervois 10,1970-12-07,COM,11255,0,MONTREDON,Montredon,Montredon,COM,11255,0,MONTREDON DES CORBIERES,Montredon-des-Corbières,Montredon-des-Corbières 10,1970-12-07,COM,11390,0,THEZAN,Thézan,Thézan,COM,11390,0,THEZAN DES CORBIERES,Thézan-des-Corbières,Thézan-des-Corbières @@ -11713,22 +11513,22 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1970-07-08,COM,22010,0,BONEN,Bonen,Bonen,COM,22266,0,ROSTRENEN,Rostrenen,Rostrenen 31,1970-07-08,COM,22266,0,ROSTRENEN,Rostrenen,Rostrenen,COM,22266,0,ROSTRENEN,Rostrenen,Rostrenen 31,1970-07-01,COM,57243,0,GARCHE,Garche,Garche,COM,57672,0,THIONVILLE,Thionville,Thionville -31,1970-07-01,COM,57369,0,KOEKING,Kœking,Kœking,COM,57672,0,THIONVILLE,Thionville,Thionville -31,1970-07-01,COM,57522,1,OEUTRANGE,Œutrange,Œutrange,COM,57672,0,THIONVILLE,Thionville,Thionville +31,1970-07-01,COM,57369,0,KOKING,Kœking,Kœking,COM,57672,0,THIONVILLE,Thionville,Thionville +31,1970-07-01,COM,57522,1,OUTRANGE,Œutrange,Œutrange,COM,57672,0,THIONVILLE,Thionville,Thionville 31,1970-07-01,COM,57672,0,THIONVILLE,Thionville,Thionville,COM,57672,0,THIONVILLE,Thionville,Thionville 10,1970-05-29,COM,46173,0,LIMOGNE,Limogne,Limogne,COM,46173,0,LIMOGNE EN QUERCY,Limogne-en-Quercy,Limogne-en-Quercy -31,1970-05-01,COM,21188,0,CONCOEUR ET CORBOIN,Concœur-et-Corboin,Concœur-et-Corboin,COM,21464,0,NUITS SAINT GEORGES,Nuits-Saint-Georges,Nuits-Saint-Georges +31,1970-05-01,COM,21188,0,CONCOUR ET CORBOIN,Concœur-et-Corboin,Concœur-et-Corboin,COM,21464,0,NUITS SAINT GEORGES,Nuits-Saint-Georges,Nuits-Saint-Georges 31,1970-05-01,COM,21464,0,NUITS SAINT GEORGES,Nuits-Saint-Georges,Nuits-Saint-Georges,COM,21464,0,NUITS SAINT GEORGES,Nuits-Saint-Georges,Nuits-Saint-Georges -10,1970-04-13,COM,02818,0,VILLIERS SUR MARNE,Villiers-sur-Marne,Villiers-sur-Marne,COM,02818,0,VILLIERS SAINT DENIS,Villiers-Saint-Denis,Villiers-Saint-Denis +10,1970-04-13,COM,2818,0,VILLIERS SUR MARNE,Villiers-sur-Marne,Villiers-sur-Marne,COM,2818,0,VILLIERS SAINT DENIS,Villiers-Saint-Denis,Villiers-Saint-Denis 10,1970-04-13,COM,27204,0,DOUDEAUVILLE,Doudeauville,Doudeauville,COM,27204,0,DOUDEAUVILLE EN VEXIN,Doudeauville-en-Vexin,Doudeauville-en-Vexin 10,1970-04-13,COM,58172,0,MONTAMBERT TANNAY,Montambert-Tannay,Montambert-Tannay,COM,58172,0,MONTAMBERT,Montambert,Montambert -31,1970-03-25,COM,59009,0,ANNAPPES,Annappes,Annappes,COM,59009,0,VILLENEUVE D ASCQ,Villeneuve-d'Ascq,Villeneuve-d'Ascq +31,1970-03-25,COM,59009,1,ANNAPPES,Annappes,Annappes,COM,59009,0,VILLENEUVE D ASCQ,Villeneuve-d'Ascq,Villeneuve-d'Ascq 31,1970-03-25,COM,59020,1,ASCQ,Ascq,Ascq,COM,59009,0,VILLENEUVE D ASCQ,Villeneuve-d'Ascq,Villeneuve-d'Ascq 31,1970-03-25,COM,59235,0,FLERS LEZ LILLE,Flers-lez-Lille,Flers-lez-Lille,COM,59009,0,VILLENEUVE D ASCQ,Villeneuve-d'Ascq,Villeneuve-d'Ascq 31,1970-01-28,COM,70379,0,NERVEZAIN,Nervezain,Nervezain,COM,70525,0,VAUCONCOURT NERVEZAIN,Vauconcourt-Nervezain,Vauconcourt-Nervezain 31,1970-01-28,COM,70525,0,VAUCONCOURT,Vauconcourt,Vauconcourt,COM,70525,0,VAUCONCOURT NERVEZAIN,Vauconcourt-Nervezain,Vauconcourt-Nervezain -31,1970-01-01,COM,08091,3,CASSINE,Cassine,La Cassine,COM,08469,0,VENDRESSE,Vendresse,Vendresse -31,1970-01-01,COM,08469,0,VENDRESSE,Vendresse,Vendresse,COM,08469,0,VENDRESSE,Vendresse,Vendresse +31,1970-01-01,COM,8091,3,CASSINE,Cassine,La Cassine,COM,8469,0,VENDRESSE,Vendresse,Vendresse +31,1970-01-01,COM,8469,0,VENDRESSE,Vendresse,Vendresse,COM,8469,0,VENDRESSE,Vendresse,Vendresse 31,1970-01-01,COM,10001,5,ABBAYE SOUS PLANCY,Abbaye-sous-Plancy,L'Abbaye-sous-Plancy,COM,10289,0,PLANCY L ABBAYE,Plancy-l'Abbaye,Plancy-l'Abbaye 31,1970-01-01,COM,10208,3,LOUPTIERE THENARD,Louptière-Thénard,La Louptière-Thénard,COM,10208,3,LOUPTIERE THENARD,Louptière-Thénard,La Louptière-Thénard 31,1970-01-01,COM,10289,0,PLANCY,Plancy,Plancy,COM,10289,0,PLANCY L ABBAYE,Plancy-l'Abbaye,Plancy-l'Abbaye @@ -11763,8 +11563,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1969-09-05,COM,73235,0,SAINT FRANCOIS SUR BUGEON,Saint-François-sur-Bugeon,Saint-François-sur-Bugeon,COM,73235,0,SAINT FRANCOIS LONGCHAMP,Saint-François-Longchamp,Saint-François-Longchamp 10,1969-09-05,COM,76029,1,AUBERMESNIL,Aubermesnil,Aubermesnil,COM,76029,1,AUBERMESNIL AUX ERABLES,Aubermesnil-aux-Érables,Aubermesnil-aux-Érables 10,1969-09-05,COM,91463,1,ONCY,Oncy,Oncy,COM,91463,1,ONCY SUR ECOLE,Oncy-sur-École,Oncy-sur-École -31,1969-07-15,COM,09223,1,OUST,Oust,Oust,COM,09223,1,OUST,Oust,Oust -31,1969-07-15,COM,09333,0,VIC,Vic,Vic,COM,09223,1,OUST,Oust,Oust +31,1969-07-15,COM,9223,1,OUST,Oust,Oust,COM,9223,1,OUST,Oust,Oust +31,1969-07-15,COM,9333,0,VIC,Vic,Vic,COM,9223,1,OUST,Oust,Oust 31,1969-07-10,COM,86168,0,MORTHEMER,Morthemer,Morthemer,COM,86233,0,VALDIVIENNE,Valdivienne,Valdivienne 31,1969-07-10,COM,86233,0,SAINT MARTIN LA RIVIERE,Saint-Martin-la-Rivière,Saint-Martin-la-Rivière,COM,86233,0,VALDIVIENNE,Valdivienne,Valdivienne 31,1969-07-10,COM,86251,0,SALLES EN TOULON,Salles-en-Toulon,Salles-en-Toulon,COM,86233,0,VALDIVIENNE,Valdivienne,Valdivienne @@ -11782,7 +11582,7 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1969-03-27,COM,97352,1,HAUTE MANA ET HAUT APPROUAGUE (CHEF LIEU SAUL),Haute-Mana et Haut-Approuague (chef-lieu Saül),Haute-Mana et Haut-Approuague (chef-lieu Saül),COM,97352,0,SAUL,Saül,Saül 31,1969-03-27,COM,97354,0,SAMSON (CHEF LIEU DEGRAD SAMSON),Samson (chef-lieu Dégrad-Samson),Samson (chef-lieu Dégrad-Samson),COM,97352,0,SAUL,Saül,Saül 31,1969-03-27,COM,97355,0,MOYENNE MANA (CHEF LIEU MANA),Moyenne-Mana (chef-lieu Mana),Moyenne-Mana (chef-lieu Mana),COM,97306,0,MANA,Mana,Mana -10,1969-03-27,COM,97356,0,OYAPOC (CHEF LIEU CAMOPI),Oyapoc (chef-lieu Camopi),Oyapoc (chef-lieu Camopi),COM,97356,0,CAMOPI,Camopi,Camopi +10,1969-03-27,COM,97356,1,OYAPOC (CHEF LIEU CAMOPI),Oyapoc (chef-lieu Camopi),Oyapoc (chef-lieu Camopi),COM,97356,0,CAMOPI,Camopi,Camopi 10,1969-03-27,COM,97357,0,GRAND SANTI,Grand-Santi,Grand-Santi,COM,97357,0,GRAND SANTI PAPAICHTON,Grand-Santi-Papaichton,Grand-Santi-Papaichton 10,1969-03-27,COM,97358,0,CENTRE (CHEF LIEU SINNAMARY),Centre (chef-lieu Sinnamary),Centre (chef-lieu Sinnamary),COM,97358,0,SAINT ELIE,Saint-Élie,Saint-Élie 31,1969-03-27,COM,97359,3,COMTE (CHEF LIEU DEGRAD EDMOND),Comté (chef-lieu Dégrad-Edmond),La Comté (chef-lieu Dégrad-Edmond),COM,97310,0,ROURA,Roura,Roura @@ -11799,10 +11599,10 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1969-01-06,COM,56090,1,INZINZAC,Inzinzac,Inzinzac,COM,56090,1,INZINZAC LOCHRIST,Inzinzac-Lochrist,Inzinzac-Lochrist 10,1969-01-06,COM,69118,0,LOIRE,Loire,Loire,COM,69118,0,LOIRE SUR RHONE,Loire-sur-Rhône,Loire-sur-Rhône 10,1969-01-06,COM,77133,0,COURCELLES,Courcelles,Courcelles,COM,77133,0,COURCELLES EN BASSEE,Courcelles-en-Bassée,Courcelles-en-Bassée -31,1969-01-01,COM,02092,0,BLERANCOURDELLE,Blérancourdelle,Blérancourdelle,COM,02093,0,BLERANCOURT,Blérancourt,Blérancourt -31,1969-01-01,COM,02093,0,BLERANCOURT,Blérancourt,Blérancourt,COM,02093,0,BLERANCOURT,Blérancourt,Blérancourt -31,1969-01-01,COM,05051,1,ETOILE LE CHATEAU,Étoile-le-Château,Étoile-le-Château,COM,05051,1,ETOILE SAINT CYRICE,Étoile-Saint-Cyrice,Étoile-Saint-Cyrice -31,1969-01-01,COM,05137,0,SAINT CYRICE,Saint-Cyrice,Saint-Cyrice,COM,05051,1,ETOILE SAINT CYRICE,Étoile-Saint-Cyrice,Étoile-Saint-Cyrice +31,1969-01-01,COM,2092,0,BLERANCOURDELLE,Blérancourdelle,Blérancourdelle,COM,2093,0,BLERANCOURT,Blérancourt,Blérancourt +31,1969-01-01,COM,2093,0,BLERANCOURT,Blérancourt,Blérancourt,COM,2093,0,BLERANCOURT,Blérancourt,Blérancourt +31,1969-01-01,COM,5051,1,ETOILE LE CHATEAU,Étoile-le-Château,Étoile-le-Château,COM,5051,1,ETOILE SAINT CYRICE,Étoile-Saint-Cyrice,Étoile-Saint-Cyrice +31,1969-01-01,COM,5137,0,SAINT CYRICE,Saint-Cyrice,Saint-Cyrice,COM,5051,1,ETOILE SAINT CYRICE,Étoile-Saint-Cyrice,Étoile-Saint-Cyrice 31,1969-01-01,COM,30058,3,CADIERE,Cadière,La Cadière,COM,30058,3,CADIERE ET CAMBO,Cadière-et-Cambo,La Cadière-et-Cambo 31,1969-01-01,COM,30063,0,CAMBO,Cambo,Cambo,COM,30058,3,CADIERE ET CAMBO,Cadière-et-Cambo,La Cadière-et-Cambo 31,1969-01-01,COM,50091,2,BUAT,Buat,Le Buat,COM,50256,1,ISIGNY LE BUAT,Isigny-le-Buat,Isigny-le-Buat @@ -11827,11 +11627,11 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1969-01-01,COM,80653,2,QUESNOY,Quesnoy,Le Quesnoy,COM,80617,0,PARVILLERS LE QUESNOY,Parvillers-le-Quesnoy,Parvillers-le-Quesnoy 31,1968-09-18,COM,25069,0,BOISMURIE,Boismurie,Boismurie,COM,25527,0,SAINT VIT,Saint-Vit,Saint-Vit 31,1968-09-18,COM,25527,0,SAINT VIT,Saint-Vit,Saint-Vit,COM,25527,0,SAINT VIT,Saint-Vit,Saint-Vit -30,1968-03-02,COM,08203,0,GUIGNICOURT SUR VENCE,Guignicourt-sur-Vence,Guignicourt-sur-Vence,COM,08203,0,GUIGNICOURT SUR VENCE,Guignicourt-sur-Vence,Guignicourt-sur-Vence -30,1968-03-02,COM,08227,1,HOCMONT,Hocmont,Hocmont,COM,08454,0,TOULIGNY,Touligny,Touligny -30,1968-03-02,COM,08227,1,HOCMONT,Hocmont,Hocmont,COM,08203,0,GUIGNICOURT SUR VENCE,Guignicourt-sur-Vence,Guignicourt-sur-Vence -30,1968-03-02,COM,08454,0,TOULIGNY,Touligny,Touligny,COM,08454,0,TOULIGNY,Touligny,Touligny -10,1968-02-15,COM,07095,0,GILHOC,Gilhoc,Gilhoc,COM,07095,0,GILHOC SUR ORMEZE,Gilhoc-sur-Ormèze,Gilhoc-sur-Ormèze +30,1968-03-02,COM,8203,0,GUIGNICOURT SUR VENCE,Guignicourt-sur-Vence,Guignicourt-sur-Vence,COM,8203,0,GUIGNICOURT SUR VENCE,Guignicourt-sur-Vence,Guignicourt-sur-Vence +30,1968-03-02,COM,8227,1,HOCMONT,Hocmont,Hocmont,COM,8203,0,GUIGNICOURT SUR VENCE,Guignicourt-sur-Vence,Guignicourt-sur-Vence +30,1968-03-02,COM,8227,1,HOCMONT,Hocmont,Hocmont,COM,8454,0,TOULIGNY,Touligny,Touligny +30,1968-03-02,COM,8454,0,TOULIGNY,Touligny,Touligny,COM,8454,0,TOULIGNY,Touligny,Touligny +10,1968-02-15,COM,7095,0,GILHOC,Gilhoc,Gilhoc,COM,7095,0,GILHOC SUR ORMEZE,Gilhoc-sur-Ormèze,Gilhoc-sur-Ormèze 10,1968-02-15,COM,13058,0,MAUSSANE,Maussane,Maussane,COM,13058,0,MAUSSANE LES ALPILLES,Maussane-les-Alpilles,Maussane-les-Alpilles 10,1968-02-15,COM,17140,0,DOLUS,Dolus,Dolus,COM,17140,0,DOLUS D OLERON,Dolus-d'Oléron,Dolus-d'Oléron 10,1968-02-15,COM,21717,0,VOULAINES,Voulaines,Voulaines,COM,21717,0,VOULAINES LES TEMPLIERS,Voulaines-les-Templiers,Voulaines-les-Templiers @@ -12360,12 +12160,12 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 41,1968-01-01,COM,78690,0,WY DIT JOLI VILLAGE,Wy-dit-Joli-Village,Wy-dit-Joli-Village,COM,95690,0,WY DIT JOLI VILLAGE,Wy-dit-Joli-Village,Wy-dit-Joli-Village 41,1968-01-01,COM,78691,1,YERRES,Yerres,Yerres,COM,91691,1,YERRES,Yerres,Yerres 41,1968-01-01,COM,78692,0,BUTRY SUR OISE,Butry-sur-Oise,Butry-sur-Oise,COM,95120,0,BUTRY SUR OISE,Butry-sur-Oise,Butry-sur-Oise -41,1967-12-31,COM,01132,0,CREPIEUX LA PAPE,Crépieux-la-Pape,Crépieux-la-Pape,COM,69274,0,CREPIEUX LA PAPE,Crépieux-la-Pape,Crépieux-la-Pape -41,1967-12-31,COM,01168,0,GENAY,Genay,Genay,COM,69278,0,GENAY,Genay,Genay -41,1967-12-31,COM,01256,0,MONTANAY,Montanay,Montanay,COM,69284,0,MONTANAY,Montanay,Montanay -41,1967-12-31,COM,01326,0,RILLIEUX,Rillieux,Rillieux,COM,69286,0,RILLIEUX,Rillieux,Rillieux -41,1967-12-31,COM,01394,0,SATHONAY CAMP,Sathonay-Camp,Sathonay-Camp,COM,69292,0,SATHONAY CAMP,Sathonay-Camp,Sathonay-Camp -41,1967-12-31,COM,01395,0,SATHONAY VILLAGE,Sathonay-Village,Sathonay-Village,COM,69293,0,SATHONAY VILLAGE,Sathonay-Village,Sathonay-Village +41,1967-12-31,COM,1132,0,CREPIEUX LA PAPE,Crépieux-la-Pape,Crépieux-la-Pape,COM,69274,0,CREPIEUX LA PAPE,Crépieux-la-Pape,Crépieux-la-Pape +41,1967-12-31,COM,1168,0,GENAY,Genay,Genay,COM,69278,0,GENAY,Genay,Genay +41,1967-12-31,COM,1256,0,MONTANAY,Montanay,Montanay,COM,69284,0,MONTANAY,Montanay,Montanay +41,1967-12-31,COM,1326,0,RILLIEUX,Rillieux,Rillieux,COM,69286,0,RILLIEUX,Rillieux,Rillieux +41,1967-12-31,COM,1394,0,SATHONAY CAMP,Sathonay-Camp,Sathonay-Camp,COM,69292,0,SATHONAY CAMP,Sathonay-Camp,Sathonay-Camp +41,1967-12-31,COM,1395,0,SATHONAY VILLAGE,Sathonay-Village,Sathonay-Village,COM,69293,0,SATHONAY VILLAGE,Sathonay-Village,Sathonay-Village 41,1967-12-31,COM,38079,0,CHAPONNAY,Chaponnay,Chaponnay,COM,69270,0,CHAPONNAY,Chaponnay,Chaponnay 41,1967-12-31,COM,38088,0,CHASSIEU,Chassieu,Chassieu,COM,69271,0,CHASSIEU,Chassieu,Chassieu 41,1967-12-31,COM,38122,0,COMMUNAY,Communay,Communay,COM,69272,0,COMMUNAY,Communay,Communay @@ -12393,19 +12193,19 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1967-12-30,COM,57680,0,TROIS FONTAINES,Trois-Fontaines,Trois-Fontaines,COM,57680,0,TROISFONTAINES,Troisfontaines,Troisfontaines 31,1967-12-21,COM,78025,1,ARTHIEUL,Arthieul,Arthieul,COM,78355,0,MAGNY EN VEXIN,Magny-en-Vexin,Magny-en-Vexin 31,1967-12-21,COM,78355,0,MAGNY EN VEXIN,Magny-en-Vexin,Magny-en-Vexin,COM,78355,0,MAGNY EN VEXIN,Magny-en-Vexin,Magny-en-Vexin -10,1967-12-03,COM,03134,0,LAFELINE,Lafeline,Lafeline,COM,03134,0,LAFELINE,Laféline,Laféline +10,1967-12-03,COM,3134,0,LAFELINE,Lafeline,Lafeline,COM,3134,0,LAFELINE,Laféline,Laféline 10,1967-12-03,COM,24242,0,LIORAC,Liorac,Liorac,COM,24242,0,LIORAC SUR LOUYRE,Liorac-sur-Louyre,Liorac-sur-Louyre 10,1967-12-03,COM,27427,0,NEAUFLES SUR RISLE,Neaufles-sur-Risle,Neaufles-sur-Risle,COM,27427,0,NEAUFLES AUVERGNY,Neaufles-Auvergny,Neaufles-Auvergny 10,1967-12-03,COM,35322,2,SEL,Sel,Le Sel,COM,35322,2,SEL DE BRETAGNE,Sel-de-Bretagne,Le Sel-de-Bretagne -10,1967-11-20,COM,03132,0,JALIGNY,Jaligny,Jaligny,COM,03132,0,JALIGNY SUR BESBRE,Jaligny-sur-Besbre,Jaligny-sur-Besbre +10,1967-11-20,COM,3132,0,JALIGNY,Jaligny,Jaligny,COM,3132,0,JALIGNY SUR BESBRE,Jaligny-sur-Besbre,Jaligny-sur-Besbre 10,1967-11-20,COM,21326,0,JOURS,Jours,Jours,COM,21326,0,JOURS LES BAIGNEUX,Jours-lès-Baigneux,Jours-lès-Baigneux 10,1967-11-20,COM,38231,0,MEYRIEU,Meyrieu,Meyrieu,COM,38231,0,MEYRIEU LES ETANGS,Meyrieu-les-Étangs,Meyrieu-les-Étangs 10,1967-11-20,COM,71026,0,BEAUMONT,Beaumont,Beaumont,COM,71026,0,BEAUMONT SUR GROSNE,Beaumont-sur-Grosne,Beaumont-sur-Grosne 10,1967-11-20,COM,85179,2,POIROUX,Poiroux,Le Poiroux,COM,85179,0,POIROUX,Poiroux,Poiroux 10,1967-11-20,COM,86014,1,AVAILLES,Availles,Availles,COM,86014,1,AVAILLES EN CHATELLERAULT,Availles-en-Châtellerault,Availles-en-Châtellerault 10,1967-11-20,COM,86079,0,CLAUNAY,Claunay,Claunay,COM,86079,0,CLAUNAY EN LOUDUN,Claunay-en-Loudun,Claunay-en-Loudun -31,1967-11-01,COM,08370,0,ROUVROY SUR AUDRY,Rouvroy-sur-Audry,Rouvroy-sur-Audry,COM,08370,0,ROUVROY SUR AUDRY,Rouvroy-sur-Audry,Rouvroy-sur-Audry -31,1967-11-01,COM,08414,0,SERVION,Servion,Servion,COM,08370,0,ROUVROY SUR AUDRY,Rouvroy-sur-Audry,Rouvroy-sur-Audry +31,1967-11-01,COM,8370,0,ROUVROY SUR AUDRY,Rouvroy-sur-Audry,Rouvroy-sur-Audry,COM,8370,0,ROUVROY SUR AUDRY,Rouvroy-sur-Audry,Rouvroy-sur-Audry +31,1967-11-01,COM,8414,0,SERVION,Servion,Servion,COM,8370,0,ROUVROY SUR AUDRY,Rouvroy-sur-Audry,Rouvroy-sur-Audry 31,1967-10-30,COM,35213,0,PARAME,Paramé,Paramé,COM,35288,0,SAINT MALO,Saint-Malo,Saint-Malo 31,1967-10-30,COM,35288,0,SAINT MALO,Saint-Malo,Saint-Malo,COM,35288,0,SAINT MALO,Saint-Malo,Saint-Malo 31,1967-10-30,COM,35313,0,SAINT SERVAN SUR MER,Saint-Servan-sur-Mer,Saint-Servan-sur-Mer,COM,35288,0,SAINT MALO,Saint-Malo,Saint-Malo @@ -12431,9 +12231,9 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1967-02-23,COM,51380,0,MONTMIRAIL,Montmirail,Montmirail,COM,51380,0,MONTMIRAIL,Montmirail,Montmirail 31,1967-01-23,COM,85075,0,CROIX DE VIE,Croix-de-Vie,Croix-de-Vie,COM,85222,0,SAINT GILLES CROIX DE VIE,Saint-Gilles-Croix-de-Vie,Saint-Gilles-Croix-de-Vie 31,1967-01-23,COM,85222,0,SAINT GILLES SUR VIE,Saint-Gilles-sur-Vie,Saint-Gilles-sur-Vie,COM,85222,0,SAINT GILLES CROIX DE VIE,Saint-Gilles-Croix-de-Vie,Saint-Gilles-Croix-de-Vie -31,1967-01-01,COM,08081,0,BRAUX,Braux,Braux,COM,08081,0,BOGNY SUR MEUSE,Bogny-sur-Meuse,Bogny-sur-Meuse -31,1967-01-01,COM,08108,0,CHATEAU REGNAULT BOGNY,Château-Regnault-Bogny,Château-Regnault-Bogny,COM,08081,0,BOGNY SUR MEUSE,Bogny-sur-Meuse,Bogny-sur-Meuse -31,1967-01-01,COM,08253,0,LEVREZY,Levrézy,Levrézy,COM,08081,0,BOGNY SUR MEUSE,Bogny-sur-Meuse,Bogny-sur-Meuse +31,1967-01-01,COM,8081,0,BRAUX,Braux,Braux,COM,8081,0,BOGNY SUR MEUSE,Bogny-sur-Meuse,Bogny-sur-Meuse +31,1967-01-01,COM,8108,0,CHATEAU REGNAULT BOGNY,Château-Regnault-Bogny,Château-Regnault-Bogny,COM,8081,0,BOGNY SUR MEUSE,Bogny-sur-Meuse,Bogny-sur-Meuse +31,1967-01-01,COM,8253,0,LEVREZY,Levrézy,Levrézy,COM,8081,0,BOGNY SUR MEUSE,Bogny-sur-Meuse,Bogny-sur-Meuse 31,1967-01-01,COM,37017,0,BALESMES,Balesmes,Balesmes,COM,37115,0,DESCARTES,Descartes,Descartes 31,1967-01-01,COM,37115,0,HAYE DESCARTES,Haye-Descartes,Haye-Descartes,COM,37115,0,DESCARTES,Descartes,Descartes 31,1967-01-01,COM,38053,0,BOURGOIN,Bourgoin,Bourgoin,COM,38053,0,BOURGOIN JALLIEU,Bourgoin-Jallieu,Bourgoin-Jallieu @@ -12452,28 +12252,28 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1967-01-01,COM,85092,0,FONTENAY LE COMTE,Fontenay-le-Comte,Fontenay-le-Comte,COM,85092,0,FONTENAY LE COMTE,Fontenay-le-Comte,Fontenay-le-Comte 30,1966-12-12,COM,51235,4,ESSARTS LES SEZANNE,Essarts-lès-Sézanne,Les Essarts-lès-Sézanne,COM,51235,4,ESSARTS LES SEZANNE,Essarts-lès-Sézanne,Les Essarts-lès-Sézanne 30,1966-12-12,COM,51313,0,LACHY,Lachy,Lachy,COM,51313,0,LACHY,Lachy,Lachy -10,1966-12-12,COM,51369,0,MOEURS,Mœurs,Mœurs,COM,51369,0,MOEURS VERDEY,Mœurs-Verdey,Mœurs-Verdey -30,1966-12-12,COM,51369,0,MOEURS VERDEY,Mœurs-Verdey,Mœurs-Verdey,COM,51369,0,MOEURS VERDEY,Mœurs-Verdey,Mœurs-Verdey -30,1966-12-12,COM,51606,0,VERDEY,Verdey,Verdey,COM,51313,0,LACHY,Lachy,Lachy +10,1966-12-12,COM,51369,0,MOURS,Mœurs,Mœurs,COM,51369,0,MOURS VERDEY,Mœurs-Verdey,Mœurs-Verdey +30,1966-12-12,COM,51369,0,MOURS VERDEY,Mœurs-Verdey,Mœurs-Verdey,COM,51369,0,MOURS VERDEY,Mœurs-Verdey,Mœurs-Verdey 30,1966-12-12,COM,51606,0,VERDEY,Verdey,Verdey,COM,51235,4,ESSARTS LES SEZANNE,Essarts-lès-Sézanne,Les Essarts-lès-Sézanne -30,1966-12-12,COM,51606,0,VERDEY,Verdey,Verdey,COM,51369,0,MOEURS VERDEY,Mœurs-Verdey,Mœurs-Verdey -31,1966-10-01,COM,08105,0,CHARLEVILLE,Charleville,Charleville,COM,08105,0,CHARLEVILLE MEZIERES,Charleville-Mézières,Charleville-Mézières -31,1966-10-01,COM,08157,1,ETION,Étion,Étion,COM,08105,0,CHARLEVILLE MEZIERES,Charleville-Mézières,Charleville-Mézières -31,1966-10-01,COM,08290,0,MEZIERES,Mézières,Mézières,COM,08105,0,CHARLEVILLE MEZIERES,Charleville-Mézières,Charleville-Mézières -31,1966-10-01,COM,08292,0,MOHON,Mohon,Mohon,COM,08105,0,CHARLEVILLE MEZIERES,Charleville-Mézières,Charleville-Mézières -31,1966-10-01,COM,08299,0,MONTCY SAINT PIERRE,Montcy-Saint-Pierre,Montcy-Saint-Pierre,COM,08105,0,CHARLEVILLE MEZIERES,Charleville-Mézières,Charleville-Mézières +30,1966-12-12,COM,51606,0,VERDEY,Verdey,Verdey,COM,51313,0,LACHY,Lachy,Lachy +30,1966-12-12,COM,51606,0,VERDEY,Verdey,Verdey,COM,51369,0,MOURS VERDEY,Mœurs-Verdey,Mœurs-Verdey +31,1966-10-01,COM,8105,0,CHARLEVILLE,Charleville,Charleville,COM,8105,0,CHARLEVILLE MEZIERES,Charleville-Mézières,Charleville-Mézières +31,1966-10-01,COM,8157,1,ETION,Étion,Étion,COM,8105,0,CHARLEVILLE MEZIERES,Charleville-Mézières,Charleville-Mézières +31,1966-10-01,COM,8290,0,MEZIERES,Mézières,Mézières,COM,8105,0,CHARLEVILLE MEZIERES,Charleville-Mézières,Charleville-Mézières +31,1966-10-01,COM,8292,0,MOHON,Mohon,Mohon,COM,8105,0,CHARLEVILLE MEZIERES,Charleville-Mézières,Charleville-Mézières +31,1966-10-01,COM,8299,0,MONTCY SAINT PIERRE,Montcy-Saint-Pierre,Montcy-Saint-Pierre,COM,8105,0,CHARLEVILLE MEZIERES,Charleville-Mézières,Charleville-Mézières 31,1966-09-16,COM,52061,0,BOURDONS SUR ROGNON,Bourdons-sur-Rognon,Bourdons-sur-Rognon,COM,52061,0,BOURDONS SUR ROGNON,Bourdons-sur-Rognon,Bourdons-sur-Rognon 31,1966-09-16,COM,52255,0,LACRETE,Lacrète,Lacrète,COM,52061,0,BOURDONS SUR ROGNON,Bourdons-sur-Rognon,Bourdons-sur-Rognon -31,1966-09-05,COM,04064,0,COURCHONS,Courchons,Courchons,COM,04173,0,SAINT ANDRE LES ALPES,Saint-André-les-Alpes,Saint-André-les-Alpes -31,1966-09-05,COM,04173,0,SAINT ANDRE LES ALPES,Saint-André-les-Alpes,Saint-André-les-Alpes,COM,04173,0,SAINT ANDRE LES ALPES,Saint-André-les-Alpes,Saint-André-les-Alpes +31,1966-09-05,COM,4064,0,COURCHONS,Courchons,Courchons,COM,4173,0,SAINT ANDRE LES ALPES,Saint-André-les-Alpes,Saint-André-les-Alpes +31,1966-09-05,COM,4173,0,SAINT ANDRE LES ALPES,Saint-André-les-Alpes,Saint-André-les-Alpes,COM,4173,0,SAINT ANDRE LES ALPES,Saint-André-les-Alpes,Saint-André-les-Alpes 31,1966-09-05,COM,26230,0,PETIT PARIS,Petit-Paris,Petit-Paris,COM,26321,0,SAINT NAZAIRE LE DESERT,Saint-Nazaire-le-Désert,Saint-Nazaire-le-Désert 31,1966-09-05,COM,26321,0,SAINT NAZAIRE LE DESERT,Saint-Nazaire-le-Désert,Saint-Nazaire-le-Désert,COM,26321,0,SAINT NAZAIRE LE DESERT,Saint-Nazaire-le-Désert,Saint-Nazaire-le-Désert 31,1966-09-01,COM,52323,0,MEUSE,Meuse,Meuse,COM,52332,0,MONTIGNY LE ROI,Montigny-le-Roi,Montigny-le-Roi 31,1966-09-01,COM,52332,0,MONTIGNY LE ROI,Montigny-le-Roi,Montigny-le-Roi,COM,52332,0,MONTIGNY LE ROI,Montigny-le-Roi,Montigny-le-Roi -21,1966-08-29,COM,13085,0,ROQUEFORT LA BEDOULE,Roquefort-la-Bédoule,Roquefort-la-Bédoule,COM,13119,0,CARNOUX EN PROVENCE,Carnoux-en-Provence,Carnoux-en-Provence -21,1966-08-29,COM,13085,0,ROQUEFORT LA BEDOULE,Roquefort-la-Bédoule,Roquefort-la-Bédoule,COM,13085,0,ROQUEFORT LA BEDOULE,Roquefort-la-Bédoule,Roquefort-la-Bédoule -31,1966-08-07,COM,08115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar,COM,08115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar -31,1966-08-07,COM,08270,0,MALMY,Malmy,Malmy,COM,08115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar +20,1966-08-29,COM,13085,0,ROQUEFORT LA BEDOULE,Roquefort-la-Bédoule,Roquefort-la-Bédoule,COM,13085,0,ROQUEFORT LA BEDOULE,Roquefort-la-Bédoule,Roquefort-la-Bédoule +20,1966-08-29,COM,13085,0,ROQUEFORT LA BEDOULE,Roquefort-la-Bédoule,Roquefort-la-Bédoule,COM,13119,0,CARNOUX EN PROVENCE,Carnoux-en-Provence,Carnoux-en-Provence +31,1966-08-07,COM,8115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar,COM,8115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar +31,1966-08-07,COM,8270,0,MALMY,Malmy,Malmy,COM,8115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar 31,1966-07-01,COM,51071,0,BOUCHY LE REPOS,Bouchy-le-Repos,Bouchy-le-Repos,COM,51071,0,BOUCHY SAINT GENEST,Bouchy-Saint-Genest,Bouchy-Saint-Genest 31,1966-07-01,COM,51481,0,SAINT GENEST,Saint-Genest,Saint-Genest,COM,51071,0,BOUCHY SAINT GENEST,Bouchy-Saint-Genest,Bouchy-Saint-Genest 31,1966-07-01,COM,74043,0,BONS,Bons,Bons,COM,74043,0,BONS EN CHABLAIS,Bons-en-Chablais,Bons-en-Chablais @@ -12485,17 +12285,17 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1966-06-01,COM,52338,0,MONTRIBOURG,Montribourg,Montribourg,COM,52114,0,CHATEAUVILLAIN,Châteauvillain,Châteauvillain 31,1966-05-20,COM,16230,0,MONTMOREAU,Montmoreau,Montmoreau,COM,16230,0,MONTMOREAU SAINT CYBARD,Montmoreau-Saint-Cybard,Montmoreau-Saint-Cybard 31,1966-05-20,COM,16311,0,SAINT CYBARD,Saint-Cybard,Saint-Cybard,COM,16230,0,MONTMOREAU SAINT CYBARD,Montmoreau-Saint-Cybard,Montmoreau-Saint-Cybard -10,1966-05-07,COM,02748,0,TRELOUP,Tréloup,Tréloup,COM,02748,0,TRELOU SUR MARNE,Trélou-sur-Marne,Trélou-sur-Marne +10,1966-05-07,COM,2748,0,TRELOUP,Tréloup,Tréloup,COM,2748,0,TRELOU SUR MARNE,Trélou-sur-Marne,Trélou-sur-Marne 10,1966-05-07,COM,11405,0,VENTENAC D AUDE,Ventenac-d'Aude,Ventenac-d'Aude,COM,11405,0,VENTENAC EN MINERVOIS,Ventenac-en-Minervois,Ventenac-en-Minervois 10,1966-05-07,COM,13057,0,MAS BLANC,Mas-Blanc,Mas-Blanc,COM,13057,0,MAS BLANC DES ALPILLES,Mas-Blanc-des-Alpilles,Mas-Blanc-des-Alpilles 10,1966-05-07,COM,57049,0,BAN SAINT MARTIN,Ban-Saint-Martin,Ban-Saint-Martin,COM,57049,2,BAN SAINT MARTIN,Ban-Saint-Martin,Le Ban-Saint-Martin 10,1966-05-07,COM,59027,1,AUBRY,Aubry,Aubry,COM,59027,1,AUBRY DU HAINAUT,Aubry-du-Hainaut,Aubry-du-Hainaut 10,1966-05-07,COM,61255,0,MAUVES,Mauves,Mauves,COM,61255,0,MAUVES SUR HUISNE,Mauves-sur-Huisne,Mauves-sur-Huisne 10,1966-05-07,COM,65452,0,TRIE,Trie,Trie,COM,65452,0,TRIE SUR BAISE,Trie-sur-Baïse,Trie-sur-Baïse -31,1966-03-23,COM,01033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine,COM,01033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine -31,1966-03-23,COM,01126,0,COUPY,Coupy,Coupy,COM,01033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine -31,1966-01-01,COM,02314,0,FLAVIGNY LE PETIT,Flavigny-le-Petit,Flavigny-le-Petit,COM,02361,0,GUISE,Guise,Guise -31,1966-01-01,COM,02361,0,GUISE,Guise,Guise,COM,02361,0,GUISE,Guise,Guise +31,1966-03-23,COM,1033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine,COM,1033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine +31,1966-03-23,COM,1126,0,COUPY,Coupy,Coupy,COM,1033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine +31,1966-01-01,COM,2314,0,FLAVIGNY LE PETIT,Flavigny-le-Petit,Flavigny-le-Petit,COM,2361,0,GUISE,Guise,Guise +31,1966-01-01,COM,2361,0,GUISE,Guise,Guise,COM,2361,0,GUISE,Guise,Guise 31,1966-01-01,COM,39331,0,MIGNOVILLARD,Mignovillard,Mignovillard,COM,39331,0,MIGNOVILLARD PETIT VILLARD,Mignovillard-Petit-Villard,Mignovillard-Petit-Villard 31,1966-01-01,COM,39416,0,PETIT VILLARD,Petit-Villard,Petit-Villard,COM,39331,0,MIGNOVILLARD PETIT VILLARD,Mignovillard-Petit-Villard,Mignovillard-Petit-Villard 31,1966-01-01,COM,43005,1,ALLEYRAS,Alleyras,Alleyras,COM,43005,1,ALLEYRAS,Alleyras,Alleyras @@ -12520,8 +12320,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1965-10-04,COM,76579,0,SAINTE GENEVIEVE EN CAUX,Sainte-Geneviève-en-Caux,Sainte-Geneviève-en-Caux,COM,76063,0,BEAUVAL EN CAUX,Beauval-en-Caux,Beauval-en-Caux 31,1965-09-23,COM,79048,0,BRELOUX LA CRECHE,Breloux-la-Crèche,Breloux-la-Crèche,COM,79048,3,CRECHE,Crèche,La Crèche 31,1965-09-23,COM,79082,0,CHAVAGNE,Chavagné,Chavagné,COM,79048,3,CRECHE,Crèche,La Crèche -31,1965-07-01,COM,08442,0,TERRON LES VENDRESSE,Terron-lès-Vendresse,Terron-lès-Vendresse,COM,08469,0,VENDRESSE,Vendresse,Vendresse -31,1965-07-01,COM,08469,0,VENDRESSE,Vendresse,Vendresse,COM,08469,0,VENDRESSE,Vendresse,Vendresse +31,1965-07-01,COM,8442,0,TERRON LES VENDRESSE,Terron-lès-Vendresse,Terron-lès-Vendresse,COM,8469,0,VENDRESSE,Vendresse,Vendresse +31,1965-07-01,COM,8469,0,VENDRESSE,Vendresse,Vendresse,COM,8469,0,VENDRESSE,Vendresse,Vendresse 10,1965-06-30,COM,78228,1,EVRY PETIT BOURG,Évry-Petit-Bourg,Évry-Petit-Bourg,COM,78228,1,EVRY,Évry,Évry 31,1965-06-15,COM,10016,1,AUBIGNY,Aubigny,Aubigny,COM,10174,1,ISLE AUBIGNY,Isle-Aubigny,Isle-Aubigny 31,1965-06-15,COM,10174,1,ISLE SOUS RAMERUPT,Isle-sous-Ramerupt,Isle-sous-Ramerupt,COM,10174,1,ISLE AUBIGNY,Isle-Aubigny,Isle-Aubigny @@ -12530,7 +12330,7 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1965-06-13,COM,80178,0,CASTEL,Castel,Castel,COM,80570,0,MOREUIL,Moreuil,Moreuil 31,1965-06-13,COM,80570,0,MOREUIL,Moreuil,Moreuil,COM,80570,0,MOREUIL,Moreuil,Moreuil 10,1965-06-12,COM,17351,0,SAINT JUST,Saint-Just,Saint-Just,COM,17351,0,SAINT JUST LUZAC,Saint-Just-Luzac,Saint-Just-Luzac -10,1965-06-12,COM,22203,0,PLOEUC,Plœuc,Plœuc,COM,22203,0,PLOEUC SUR LIE,Plœuc-sur-Lié,Plœuc-sur-Lié +10,1965-06-12,COM,22203,0,PLOUC,Plœuc,Plœuc,COM,22203,0,PLOUC SUR LIE,Plœuc-sur-Lié,Plœuc-sur-Lié 10,1965-06-12,COM,32070,0,CAHUZAC,Cahuzac,Cahuzac,COM,32070,0,CAHUZAC SUR ADOUR,Cahuzac-sur-Adour,Cahuzac-sur-Adour 10,1965-06-12,COM,35038,0,BREAL,Bréal,Bréal,COM,35038,0,BREAL SOUS VITRE,Bréal-sous-Vitré,Bréal-sous-Vitré 10,1965-06-12,COM,50003,1,AGON,Agon,Agon,COM,50003,1,AGON COUTAINVILLE,Agon-Coutainville,Agon-Coutainville @@ -12539,7 +12339,7 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1965-06-10,COM,10094,0,CHAVANGES,Chavanges,Chavanges,COM,10094,0,CHAVANGES,Chavanges,Chavanges 31,1965-06-01,COM,72140,0,GASTINES SUR ERVE,Gastines-sur-Erve,Gastines-sur-Erve,COM,72264,0,SABLE SUR SARTHE,Sablé-sur-Sarthe,Sablé-sur-Sarthe 31,1965-06-01,COM,72264,0,SABLE SUR SARTHE,Sablé-sur-Sarthe,Sablé-sur-Sarthe,COM,72264,0,SABLE SUR SARTHE,Sablé-sur-Sarthe,Sablé-sur-Sarthe -10,1965-05-21,COM,09135,0,GOULIER ET OLBIER,Goulier-et-Olbier,Goulier-et-Olbier,COM,09135,0,GOULIER,Goulier,Goulier +10,1965-05-21,COM,9135,0,GOULIER ET OLBIER,Goulier-et-Olbier,Goulier-et-Olbier,COM,9135,0,GOULIER,Goulier,Goulier 31,1965-05-01,COM,33340,2,PUCH,Puch,Le Puch,COM,33506,0,SAUVETERRE DE GUYENNE,Sauveterre-de-Guyenne,Sauveterre-de-Guyenne 31,1965-05-01,COM,33430,0,SAINT LEGER DE VIGNAGUE,Saint-Léger-de-Vignague,Saint-Léger-de-Vignague,COM,33506,0,SAUVETERRE DE GUYENNE,Sauveterre-de-Guyenne,Sauveterre-de-Guyenne 31,1965-05-01,COM,33469,0,SAINT ROMAIN DE VIGNAGUE,Saint-Romain-de-Vignague,Saint-Romain-de-Vignague,COM,33506,0,SAUVETERRE DE GUYENNE,Sauveterre-de-Guyenne,Sauveterre-de-Guyenne @@ -12555,8 +12355,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1965-03-08,COM,74300,0,VIEUGY,Vieugy,Vieugy,COM,74268,0,SEYNOD,Seynod,Seynod 31,1965-03-06,COM,74243,0,SAINT JULIEN EN GENEVOIS,Saint-Julien-en-Genevois,Saint-Julien-en-Genevois,COM,74243,0,SAINT JULIEN EN GENEVOIS,Saint-Julien-en-Genevois,Saint-Julien-en-Genevois 31,1965-03-06,COM,74277,0,THAIRY,Thairy,Thairy,COM,74243,0,SAINT JULIEN EN GENEVOIS,Saint-Julien-en-Genevois,Saint-Julien-en-Genevois -31,1965-03-01,COM,08311,0,MOUZON,Mouzon,Mouzon,COM,08311,0,MOUZON,Mouzon,Mouzon -31,1965-03-01,COM,08474,0,VILLEMONTRY,Villemontry,Villemontry,COM,08311,0,MOUZON,Mouzon,Mouzon +31,1965-03-01,COM,8311,0,MOUZON,Mouzon,Mouzon,COM,8311,0,MOUZON,Mouzon,Mouzon +31,1965-03-01,COM,8474,0,VILLEMONTRY,Villemontry,Villemontry,COM,8311,0,MOUZON,Mouzon,Mouzon 31,1965-03-01,COM,11183,0,LADERN SUR LAUQUET,Ladern-sur-Lauquet,Ladern-sur-Lauquet,COM,11183,0,LADERN SUR LAUQUET,Ladern-sur-Lauquet,Ladern-sur-Lauquet 31,1965-03-01,COM,11237,0,MOLIERES SUR L ALBERTE,Molières-sur-l'Alberte,Molières-sur-l'Alberte,COM,11183,0,LADERN SUR LAUQUET,Ladern-sur-Lauquet,Ladern-sur-Lauquet 31,1965-03-01,COM,23067,3,COURTINE,Courtine,La Courtine,COM,23067,3,COURTINE LE TRUCQ,Courtine-le-Trucq,La Courtine-le-Trucq @@ -12594,16 +12394,16 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1965-02-27,COM,61132,0,COURTEILLES,Courteilles,Courteilles,COM,61189,0,GIEL COURTEILLES,Giel-Courteilles,Giel-Courteilles 31,1965-02-27,COM,61134,0,COURTOULIN,Courtoulin,Courtoulin,COM,61029,0,BAZOCHES SUR HOENE,Bazoches-sur-Hoëne,Bazoches-sur-Hoëne 31,1965-02-27,COM,61189,0,GIEL,Giel,Giel,COM,61189,0,GIEL COURTEILLES,Giel-Courteilles,Giel-Courteilles -31,1965-02-27,COM,61432,0,SAINT MICHEL LA FORET,Saint-Michel-la-Forêt,Saint-Michel-la-Forêt,COM,61432,0,SAINT MICHEL TUBOEUF,Saint-Michel-Tubœuf,Saint-Michel-Tubœuf -31,1965-02-27,COM,61495,0,TUBOEUF,Tubœuf,Tubœuf,COM,61432,0,SAINT MICHEL TUBOEUF,Saint-Michel-Tubœuf,Saint-Michel-Tubœuf +31,1965-02-27,COM,61432,0,SAINT MICHEL LA FORET,Saint-Michel-la-Forêt,Saint-Michel-la-Forêt,COM,61432,0,SAINT MICHEL TUBOUF,Saint-Michel-Tubœuf,Saint-Michel-Tubœuf +31,1965-02-27,COM,61495,0,TUBOUF,Tubœuf,Tubœuf,COM,61432,0,SAINT MICHEL TUBOUF,Saint-Michel-Tubœuf,Saint-Michel-Tubœuf 31,1965-02-27,COM,71176,0,DIGOIN,Digoin,Digoin,COM,71176,0,DIGOIN,Digoin,Digoin 31,1965-02-27,COM,71575,0,VIGNY LES PARAY,Vigny-lès-Paray,Vigny-lès-Paray,COM,71176,0,DIGOIN,Digoin,Digoin 31,1965-02-26,COM,12167,0,NAJAC,Najac,Najac,COM,12167,0,NAJAC,Najac,Najac 31,1965-02-26,COM,12302,0,VILLEVAYRE,Villevayre,Villevayre,COM,12167,0,NAJAC,Najac,Najac 31,1965-02-26,COM,14451,0,MORIERES,Morières,Morières,COM,14735,0,VENDEUVRE,Vendeuvre,Vendeuvre 31,1965-02-26,COM,14735,0,VENDEUVRE,Vendeuvre,Vendeuvre,COM,14735,0,VENDEUVRE,Vendeuvre,Vendeuvre -31,1965-02-25,COM,02124,0,BRISSY,Brissy,Brissy,COM,02124,0,BRISSY HAMEGICOURT,Brissy-Hamégicourt,Brissy-Hamégicourt -31,1965-02-25,COM,02365,1,HAMEGICOURT,Hamégicourt,Hamégicourt,COM,02124,0,BRISSY HAMEGICOURT,Brissy-Hamégicourt,Brissy-Hamégicourt +31,1965-02-25,COM,2124,0,BRISSY,Brissy,Brissy,COM,2124,0,BRISSY HAMEGICOURT,Brissy-Hamégicourt,Brissy-Hamégicourt +31,1965-02-25,COM,2365,1,HAMEGICOURT,Hamégicourt,Hamégicourt,COM,2124,0,BRISSY HAMEGICOURT,Brissy-Hamégicourt,Brissy-Hamégicourt 31,1965-02-25,COM,40010,1,AROUILLE,Arouille,Arouille,COM,40267,0,SAINT JUSTIN,Saint-Justin,Saint-Justin 31,1965-02-25,COM,40045,0,BIGANON,Biganon,Biganon,COM,40200,0,MOUSTEY,Moustey,Moustey 31,1965-02-25,COM,40200,0,MOUSTEY,Moustey,Moustey,COM,40200,0,MOUSTEY,Moustey,Moustey @@ -12624,12 +12424,12 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1965-02-20,COM,32268,0,MONFERRAN SAVES,Monferran-Savès,Monferran-Savès,COM,32268,0,MONFERRAN SAVES,Monferran-Savès,Monferran-Savès 31,1965-02-20,COM,43157,2,PUY,Puy,Le Puy,COM,43157,2,PUY,Puy,Le Puy 31,1965-02-20,COM,43243,0,TAULHAC PRES LE PUY,Taulhac-près-le-Puy,Taulhac-près-le-Puy,COM,43157,2,PUY,Puy,Le Puy -31,1965-02-15,COM,01143,0,DIVONNE LES BAINS,Divonne-les-Bains,Divonne-les-Bains,COM,01143,0,DIVONNE LES BAINS,Divonne-les-Bains,Divonne-les-Bains -31,1965-02-15,COM,01438,0,VESENEX CRASSY,Vésenex-Crassy,Vésenex-Crassy,COM,01143,0,DIVONNE LES BAINS,Divonne-les-Bains,Divonne-les-Bains -31,1965-02-15,COM,08224,1,HERBIGNY,Herbigny,Herbigny,COM,08240,0,JUSTINE HERBIGNY,Justine-Herbigny,Justine-Herbigny -31,1965-02-15,COM,08240,0,JUSTINE,Justine,Justine,COM,08240,0,JUSTINE HERBIGNY,Justine-Herbigny,Justine-Herbigny -31,1965-02-15,COM,09010,1,AMPLAING,Amplaing,Amplaing,COM,09188,0,MERCUS GARRABET,Mercus-Garrabet,Mercus-Garrabet -31,1965-02-15,COM,09188,0,MERCUS GARRABET,Mercus-Garrabet,Mercus-Garrabet,COM,09188,0,MERCUS GARRABET,Mercus-Garrabet,Mercus-Garrabet +31,1965-02-15,COM,1143,0,DIVONNE LES BAINS,Divonne-les-Bains,Divonne-les-Bains,COM,1143,0,DIVONNE LES BAINS,Divonne-les-Bains,Divonne-les-Bains +31,1965-02-15,COM,1438,0,VESENEX CRASSY,Vésenex-Crassy,Vésenex-Crassy,COM,1143,0,DIVONNE LES BAINS,Divonne-les-Bains,Divonne-les-Bains +31,1965-02-15,COM,8224,1,HERBIGNY,Herbigny,Herbigny,COM,8240,0,JUSTINE HERBIGNY,Justine-Herbigny,Justine-Herbigny +31,1965-02-15,COM,8240,0,JUSTINE,Justine,Justine,COM,8240,0,JUSTINE HERBIGNY,Justine-Herbigny,Justine-Herbigny +31,1965-02-15,COM,9010,1,AMPLAING,Amplaing,Amplaing,COM,9188,0,MERCUS GARRABET,Mercus-Garrabet,Mercus-Garrabet +31,1965-02-15,COM,9188,0,MERCUS GARRABET,Mercus-Garrabet,Mercus-Garrabet,COM,9188,0,MERCUS GARRABET,Mercus-Garrabet,Mercus-Garrabet 31,1965-02-15,COM,14142,0,CASTILLY,Castilly,Castilly,COM,14142,0,CASTILLY,Castilly,Castilly 31,1965-02-15,COM,14428,0,MESTRY,Mestry,Mestry,COM,14142,0,CASTILLY,Castilly,Castilly 31,1965-02-15,COM,17170,3,GARDE,Garde,La Garde,COM,17243,0,MONTLIEU LA GARDE,Montlieu-la-Garde,Montlieu-la-Garde @@ -12640,8 +12440,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1965-02-15,COM,79262,0,SAINT JOUIN SOUS CHATILLON,Saint-Jouin-sous-Châtillon,Saint-Jouin-sous-Châtillon,COM,79079,0,MAULEON,Mauléon,Mauléon 31,1965-02-13,COM,72014,1,AULAINES,Aulaines,Aulaines,COM,72039,0,BONNETABLE,Bonnétable,Bonnétable 31,1965-02-13,COM,72039,0,BONNETABLE,Bonnétable,Bonnétable,COM,72039,0,BONNETABLE,Bonnétable,Bonnétable -21,1965-02-05,COM,97414,0,SAINT LOUIS,Saint-Louis,Saint-Louis,COM,97414,0,SAINT LOUIS,Saint-Louis,Saint-Louis -21,1965-02-05,COM,97414,0,SAINT LOUIS,Saint-Louis,Saint-Louis,COM,97424,0,CILAOS,Cilaos,Cilaos +20,1965-02-05,COM,97414,0,SAINT LOUIS,Saint-Louis,Saint-Louis,COM,97414,0,SAINT LOUIS,Saint-Louis,Saint-Louis +20,1965-02-05,COM,97414,0,SAINT LOUIS,Saint-Louis,Saint-Louis,COM,97424,0,CILAOS,Cilaos,Cilaos 31,1965-02-01,COM,11206,0,LIMOUX,Limoux,Limoux,COM,11206,0,LIMOUX,Limoux,Limoux 31,1965-02-01,COM,11403,0,VENDEMIES,Vendémies,Vendémies,COM,11206,0,LIMOUX,Limoux,Limoux 31,1965-02-01,COM,14048,0,BAYNES,Baynes,Baynes,COM,14614,0,SAINTE MARGUERITE D ELLE,Sainte-Marguerite-d'Elle,Sainte-Marguerite-d'Elle @@ -12654,8 +12454,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1965-02-01,COM,48070,0,GRANDRIEU,Grandrieu,Grandrieu,COM,48070,0,GRANDRIEU,Grandrieu,Grandrieu 31,1965-02-01,COM,48143,0,SAINTE COLOMBE DE MONTAUROUX,Sainte-Colombe-de-Montauroux,Sainte-Colombe-de-Montauroux,COM,48070,0,GRANDRIEU,Grandrieu,Grandrieu 31,1965-02-01,COM,51209,0,DAUCOURT,Daucourt,Daucourt,COM,51228,1,ELISE DAUCOURT,Élise-Daucourt,Élise-Daucourt -21,1965-02-01,COM,51210,0,DIZY MAGENTA,Dizy-Magenta,Dizy-Magenta,COM,51663,0,MAGENTA,Magenta,Magenta -21,1965-02-01,COM,51210,0,DIZY MAGENTA,Dizy-Magenta,Dizy-Magenta,COM,51210,0,DIZY,Dizy,Dizy +20,1965-02-01,COM,51210,0,DIZY MAGENTA,Dizy-Magenta,Dizy-Magenta,COM,51210,0,DIZY,Dizy,Dizy +20,1965-02-01,COM,51210,0,DIZY MAGENTA,Dizy-Magenta,Dizy-Magenta,COM,51663,0,MAGENTA,Magenta,Magenta 31,1965-02-01,COM,51214,0,DOMMARTIN SUR YEVRE,Dommartin-sur-Yèvre,Dommartin-sur-Yèvre,COM,51214,0,DOMMARTIN VARIMONT,Dommartin-Varimont,Dommartin-Varimont 31,1965-02-01,COM,51228,1,ELISE,Élise,Élise,COM,51228,1,ELISE DAUCOURT,Élise-Daucourt,Élise-Daucourt 31,1965-02-01,COM,51554,0,SOUDE NOTRE DAME OU LE PETIT,Soudé-Notre-Dame-ou-le-Petit,Soudé-Notre-Dame-ou-le-Petit,COM,51555,0,SOUDE,Soudé,Soudé @@ -12670,8 +12470,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1965-02-01,COM,80727,0,SAULCHOY SUR DAVENESCOURT,Saulchoy-sur-Davenescourt,Saulchoy-sur-Davenescourt,COM,80031,1,ARVILLERS,Arvillers,Arvillers 31,1965-01-23,COM,42005,1,ANDREZIEUX,Andrézieux,Andrézieux,COM,42005,1,ANDREZIEUX BOUTHEON,Andrézieux-Bouthéon,Andrézieux-Bouthéon 31,1965-01-23,COM,42024,0,BOUTHEON,Bouthéon,Bouthéon,COM,42005,1,ANDREZIEUX BOUTHEON,Andrézieux-Bouthéon,Andrézieux-Bouthéon -31,1965-01-10,COM,01202,0,LAGNIEU,Lagnieu,Lagnieu,COM,01202,0,LAGNIEU,Lagnieu,Lagnieu -31,1965-01-10,COM,01315,0,PROULIEU,Proulieu,Proulieu,COM,01202,0,LAGNIEU,Lagnieu,Lagnieu +31,1965-01-10,COM,1202,0,LAGNIEU,Lagnieu,Lagnieu,COM,1202,0,LAGNIEU,Lagnieu,Lagnieu +31,1965-01-10,COM,1315,0,PROULIEU,Proulieu,Proulieu,COM,1202,0,LAGNIEU,Lagnieu,Lagnieu 10,1965-01-10,COM,14306,0,GONNEVILLE SUR MERVILLE,Gonneville-sur-Merville,Gonneville-sur-Merville,COM,14306,0,GONNEVILLE EN AUGE,Gonneville-en-Auge,Gonneville-en-Auge 10,1965-01-10,COM,22186,0,PLENEUF,Pléneuf,Pléneuf,COM,22186,0,PLENEUF VAL ANDRE,Pléneuf-Val-André,Pléneuf-Val-André 10,1965-01-10,COM,26302,0,SAINTE EULALIE,Sainte-Eulalie,Sainte-Eulalie,COM,26302,0,SAINTE EULALIE EN ROYANS,Sainte-Eulalie-en-Royans,Sainte-Eulalie-en-Royans @@ -12688,12 +12488,12 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1965-01-10,COM,89077,0,CHAMPS,Champs,Champs,COM,89077,0,CHAMPS SUR YONNE,Champs-sur-Yonne,Champs-sur-Yonne 31,1965-01-09,COM,78065,0,BLAMECOURT,Blamécourt,Blamécourt,COM,78355,0,MAGNY EN VEXIN,Magny-en-Vexin,Magny-en-Vexin 31,1965-01-09,COM,78355,0,MAGNY EN VEXIN,Magny-en-Vexin,Magny-en-Vexin,COM,78355,0,MAGNY EN VEXIN,Magny-en-Vexin,Magny-en-Vexin -31,1965-01-01,COM,08181,0,FRENOIS,Frénois,Frénois,COM,08409,0,SEDAN,Sedan,Sedan -31,1965-01-01,COM,08290,0,MEZIERES,Mézières,Mézières,COM,08290,0,MEZIERES,Mézières,Mézières -31,1965-01-01,COM,08409,0,SEDAN,Sedan,Sedan,COM,08409,0,SEDAN,Sedan,Sedan -31,1965-01-01,COM,08447,2,THEUX,Theux,Le Theux,COM,08290,0,MEZIERES,Mézières,Mézières -31,1965-01-01,COM,09030,1,AUZAT,Auzat,Auzat,COM,09030,1,AUZAT,Auzat,Auzat -31,1965-01-01,COM,09278,0,SALEIX,Saleix,Saleix,COM,09030,1,AUZAT,Auzat,Auzat +31,1965-01-01,COM,8181,0,FRENOIS,Frénois,Frénois,COM,8409,0,SEDAN,Sedan,Sedan +31,1965-01-01,COM,8290,0,MEZIERES,Mézières,Mézières,COM,8290,0,MEZIERES,Mézières,Mézières +31,1965-01-01,COM,8409,0,SEDAN,Sedan,Sedan,COM,8409,0,SEDAN,Sedan,Sedan +31,1965-01-01,COM,8447,2,THEUX,Theux,Le Theux,COM,8290,0,MEZIERES,Mézières,Mézières +31,1965-01-01,COM,9030,1,AUZAT,Auzat,Auzat,COM,9030,1,AUZAT,Auzat,Auzat +31,1965-01-01,COM,9278,0,SALEIX,Saleix,Saleix,COM,9030,1,AUZAT,Auzat,Auzat 31,1965-01-01,COM,14095,0,BRECY,Brécy,Brécy,COM,14577,0,SAINT GABRIEL BRECY,Saint-Gabriel-Brécy,Saint-Gabriel-Brécy 31,1965-01-01,COM,14577,0,SAINT GABRIEL,Saint-Gabriel,Saint-Gabriel,COM,14577,0,SAINT GABRIEL BRECY,Saint-Gabriel-Brécy,Saint-Gabriel-Brécy 31,1965-01-01,COM,20237,0,POGGIO DI TALLANO,Poggio-di-Tallano,Poggio-di-Tallano,COM,20308,0,SAINTE LUCIE DE TALLANO,Sainte-Lucie-de-Tallano,Sainte-Lucie-de-Tallano @@ -12718,8 +12518,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1965-01-01,COM,34186,1,OCTON,Octon,Octon,COM,34186,1,OCTON,Octon,Octon 31,1965-01-01,COM,34275,0,SAINT MARTIN DES COMBES,Saint-Martin-des-Combes,Saint-Martin-des-Combes,COM,34186,1,OCTON,Octon,Octon 30,1965-01-01,COM,45093,0,CHEVILLY,Chevilly,Chevilly,COM,45093,0,CHEVILLY,Chevilly,Chevilly -30,1965-01-01,COM,45117,0,CREUSY,Creusy,Creusy,COM,45313,0,SOUGY,Sougy,Sougy 30,1965-01-01,COM,45117,0,CREUSY,Creusy,Creusy,COM,45093,0,CHEVILLY,Chevilly,Chevilly +30,1965-01-01,COM,45117,0,CREUSY,Creusy,Creusy,COM,45313,0,SOUGY,Sougy,Sougy 30,1965-01-01,COM,45313,0,SOUGY,Sougy,Sougy,COM,45313,0,SOUGY,Sougy,Sougy 31,1965-01-01,COM,47142,0,LAUZUN,Lauzun,Lauzun,COM,47142,0,LAUZUN,Lauzun,Lauzun 31,1965-01-01,COM,47261,0,SAINT NAZAIRE,Saint-Nazaire,Saint-Nazaire,COM,47142,0,LAUZUN,Lauzun,Lauzun @@ -12784,10 +12584,10 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1965-01-01,COM,89455,0,VILLEGARDIN,Villegardin,Villegardin,COM,89264,0,MONTACHER VILLEGARDIN,Montacher-Villegardin,Montacher-Villegardin 31,1964-12-17,COM,74042,0,BONNEVILLE,Bonneville,Bonneville,COM,74042,0,BONNEVILLE,Bonneville,Bonneville 31,1964-12-17,COM,74092,3,COTE D HYOT,Côte-d'Hyot,La Côte-d'Hyot,COM,74042,0,BONNEVILLE,Bonneville,Bonneville -31,1964-11-01,COM,04060,0,COLLE SAINT MICHEL,Colle-Saint-Michel,Colle-Saint-Michel,COM,04060,0,SAINT MICHEL PEYRESQ,Saint-Michel-Peyresq,Saint-Michel-Peyresq -31,1964-11-01,COM,04147,0,PEYRESQ,Peyresq,Peyresq,COM,04060,0,SAINT MICHEL PEYRESQ,Saint-Michel-Peyresq,Saint-Michel-Peyresq -31,1964-11-01,COM,08115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar,COM,08115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar -31,1964-11-01,COM,08129,0,CONNAGE,Connage,Connage,COM,08115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar +31,1964-11-01,COM,4060,0,COLLE SAINT MICHEL,Colle-Saint-Michel,Colle-Saint-Michel,COM,4060,0,SAINT MICHEL PEYRESQ,Saint-Michel-Peyresq,Saint-Michel-Peyresq +31,1964-11-01,COM,4147,0,PEYRESQ,Peyresq,Peyresq,COM,4060,0,SAINT MICHEL PEYRESQ,Saint-Michel-Peyresq,Saint-Michel-Peyresq +31,1964-11-01,COM,8115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar,COM,8115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar +31,1964-11-01,COM,8129,0,CONNAGE,Connage,Connage,COM,8115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar 31,1964-11-01,COM,48004,1,ALTIER,Altier,Altier,COM,48004,1,ALTIER,Altier,Altier 31,1964-11-01,COM,48015,0,BALMELLES,Balmelles,Balmelles,COM,48015,0,PIED DE BORNE,Pied-de-Borne,Pied-de-Borne 31,1964-11-01,COM,48052,0,COMBRET,Combret,Combret,COM,48004,1,ALTIER,Altier,Altier @@ -12799,20 +12599,20 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1964-10-15,COM,77488,0,VAUX SOUS COULOMBS,Vaux-sous-Coulombs,Vaux-sous-Coulombs,COM,77129,0,COULOMBS EN VALOIS,Coulombs-en-Valois,Coulombs-en-Valois 31,1964-10-10,COM,79049,0,BRESSUIRE,Bressuire,Bressuire,COM,79049,0,BRESSUIRE,Bressuire,Bressuire 31,1964-10-10,COM,79291,0,SAINT PORCHAIRE,Saint-Porchaire,Saint-Porchaire,COM,79049,0,BRESSUIRE,Bressuire,Bressuire -31,1964-10-01,COM,08119,0,CHEVEUGES,Cheveuges,Cheveuges,COM,08119,0,CHEVEUGES SAINT AIGNAN,Cheveuges-Saint-Aignan,Cheveuges-Saint-Aignan -31,1964-10-01,COM,08377,0,SAINT AIGNAN,Saint-Aignan,Saint-Aignan,COM,08119,0,CHEVEUGES SAINT AIGNAN,Cheveuges-Saint-Aignan,Cheveuges-Saint-Aignan +31,1964-10-01,COM,8119,0,CHEVEUGES,Cheveuges,Cheveuges,COM,8119,0,CHEVEUGES SAINT AIGNAN,Cheveuges-Saint-Aignan,Cheveuges-Saint-Aignan +31,1964-10-01,COM,8377,0,SAINT AIGNAN,Saint-Aignan,Saint-Aignan,COM,8119,0,CHEVEUGES SAINT AIGNAN,Cheveuges-Saint-Aignan,Cheveuges-Saint-Aignan 31,1964-10-01,COM,49124,0,DOUCES,Douces,Douces,COM,49125,0,DOUE LA FONTAINE,Doué-la-Fontaine,Doué-la-Fontaine 31,1964-10-01,COM,49125,0,DOUE LA FONTAINE,Doué-la-Fontaine,Doué-la-Fontaine,COM,49125,0,DOUE LA FONTAINE,Doué-la-Fontaine,Doué-la-Fontaine 31,1964-10-01,COM,49340,0,SOULANGER,Soulanger,Soulanger,COM,49125,0,DOUE LA FONTAINE,Doué-la-Fontaine,Doué-la-Fontaine 31,1964-10-01,COM,59245,0,FORENVILLE,Forenville,Forenville,COM,59567,0,SERANVILLERS FORENVILLE,Séranvillers-Forenville,Séranvillers-Forenville 31,1964-10-01,COM,59567,0,SERANVILLERS,Séranvillers,Séranvillers,COM,59567,0,SERANVILLERS FORENVILLE,Séranvillers-Forenville,Séranvillers-Forenville -31,1964-09-01,COM,01185,1,HAUTEVILLE LOMPNES,Hauteville-Lompnes,Hauteville-Lompnes,COM,01185,1,HAUTEVILLE LOMPNES,Hauteville-Lompnes,Hauteville-Lompnes -31,1964-09-01,COM,01201,0,LACOUX,Lacoux,Lacoux,COM,01185,1,HAUTEVILLE LOMPNES,Hauteville-Lompnes,Hauteville-Lompnes -31,1964-09-01,COM,01222,0,LONGECOMBE,Longecombe,Longecombe,COM,01185,1,HAUTEVILLE LOMPNES,Hauteville-Lompnes,Hauteville-Lompnes +31,1964-09-01,COM,1185,1,HAUTEVILLE LOMPNES,Hauteville-Lompnes,Hauteville-Lompnes,COM,1185,1,HAUTEVILLE LOMPNES,Hauteville-Lompnes,Hauteville-Lompnes +31,1964-09-01,COM,1201,0,LACOUX,Lacoux,Lacoux,COM,1185,1,HAUTEVILLE LOMPNES,Hauteville-Lompnes,Hauteville-Lompnes +31,1964-09-01,COM,1222,0,LONGECOMBE,Longecombe,Longecombe,COM,1185,1,HAUTEVILLE LOMPNES,Hauteville-Lompnes,Hauteville-Lompnes 31,1964-08-27,COM,50566,0,SAULTCHEVREUIL DU TRONCHET,Saultchevreuil-du-Tronchet,Saultchevreuil-du-Tronchet,COM,50639,0,VILLEDIEU LES POELES,Villedieu-les-Poêles,Villedieu-les-Poêles 31,1964-08-27,COM,50639,0,VILLEDIEU LES POELES,Villedieu-les-Poêles,Villedieu-les-Poêles,COM,50639,0,VILLEDIEU LES POELES,Villedieu-les-Poêles,Villedieu-les-Poêles -21,1964-08-12,ARM,69385,0,LYON 5E ARRONDISSEMENT,Lyon 5e Arrondissement,Lyon 5e Arrondissement,ARM,69385,0,LYON 5E ARRONDISSEMENT,Lyon 5e Arrondissement,Lyon 5e Arrondissement -21,1964-08-12,ARM,69385,0,LYON 5E ARRONDISSEMENT,Lyon 5e Arrondissement,Lyon 5e Arrondissement,ARM,69389,0,LYON 9E ARRONDISSEMENT,Lyon 9e Arrondissement,Lyon 9e Arrondissement +20,1964-08-12,ARM,69385,0,LYON 5E ARRONDISSEMENT,Lyon 5e Arrondissement,Lyon 5e Arrondissement,ARM,69385,0,LYON 5E ARRONDISSEMENT,Lyon 5e Arrondissement,Lyon 5e Arrondissement +20,1964-08-12,ARM,69385,0,LYON 5E ARRONDISSEMENT,Lyon 5e Arrondissement,Lyon 5e Arrondissement,ARM,69389,0,LYON 9E ARRONDISSEMENT,Lyon 9e Arrondissement,Lyon 9e Arrondissement 31,1964-08-06,COM,70212,1,EGUILLEY,Éguilley,Éguilley,COM,70441,0,RECOLOGNE LES RIOZ,Recologne-lès-Rioz,Recologne-lès-Rioz 31,1964-08-06,COM,70441,0,RECOLOGNE LES RIOZ,Recologne-lès-Rioz,Recologne-lès-Rioz,COM,70441,0,RECOLOGNE LES RIOZ,Recologne-lès-Rioz,Recologne-lès-Rioz 31,1964-07-11,COM,85032,0,BOURG SOUS LA ROCHE SUR YON,Bourg-sous-la-Roche-sur-Yon,Bourg-sous-la-Roche-sur-Yon,COM,85191,3,ROCHE SUR YON,Roche-sur-Yon,La Roche-sur-Yon @@ -12840,10 +12640,10 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1964-07-01,COM,88460,0,SOULOSSE,Soulosse,Soulosse,COM,88460,0,SOULOSSE SOUS SAINT ELOPHE,Soulosse-sous-Saint-Élophe,Soulosse-sous-Saint-Élophe 31,1964-06-21,COM,79191,0,NIORT,Niort,Niort,COM,79191,0,NIORT,Niort,Niort 31,1964-06-21,COM,79315,0,SOUCHE,Souché,Souché,COM,79191,0,NIORT,Niort,Niort -31,1964-06-04,COM,01020,1,ARNANS,Arnans,Arnans,COM,01125,0,CORVEISSIAT,Corveissiat,Corveissiat -31,1964-06-04,COM,01125,0,CORVEISSIAT,Corveissiat,Corveissiat,COM,01125,0,CORVEISSIAT,Corveissiat,Corveissiat -31,1964-06-01,COM,04039,0,CASTELLANE,Castellane,Castellane,COM,04039,0,CASTELLANE,Castellane,Castellane -31,1964-06-01,COM,04239,0,VILLARS BRANDIS,Villars-Brandis,Villars-Brandis,COM,04039,0,CASTELLANE,Castellane,Castellane +31,1964-06-04,COM,1020,1,ARNANS,Arnans,Arnans,COM,1125,0,CORVEISSIAT,Corveissiat,Corveissiat +31,1964-06-04,COM,1125,0,CORVEISSIAT,Corveissiat,Corveissiat,COM,1125,0,CORVEISSIAT,Corveissiat,Corveissiat +31,1964-06-01,COM,4039,0,CASTELLANE,Castellane,Castellane,COM,4039,0,CASTELLANE,Castellane,Castellane +31,1964-06-01,COM,4239,0,VILLARS BRANDIS,Villars-Brandis,Villars-Brandis,COM,4039,0,CASTELLANE,Castellane,Castellane 31,1964-06-01,COM,37235,0,SAINTE RADEGONDE EN TOURAINE,Sainte-Radegonde-en-Touraine,Sainte-Radegonde-en-Touraine,COM,37261,0,TOURS,Tours,Tours 31,1964-06-01,COM,37239,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,COM,37261,0,TOURS,Tours,Tours 31,1964-06-01,COM,37261,0,TOURS,Tours,Tours,COM,37261,0,TOURS,Tours,Tours @@ -12863,8 +12663,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1964-04-24,COM,70266,0,GESINCOURT,Gesincourt,Gesincourt,COM,70002,1,ABONCOURT GESINCOURT,Aboncourt-Gesincourt,Aboncourt-Gesincourt 31,1964-04-23,COM,31257,0,LACASSE,Lacasse,Lacasse,COM,31287,0,LAVERNOSE LACASSE,Lavernose-Lacasse,Lavernose-Lacasse 31,1964-04-23,COM,31287,0,LAVERNOSE,Lavernose,Lavernose,COM,31287,0,LAVERNOSE LACASSE,Lavernose-Lacasse,Lavernose-Lacasse -31,1964-04-01,COM,08118,0,CHESTRES,Chestres,Chestres,COM,08490,0,VOUZIERS,Vouziers,Vouziers -31,1964-04-01,COM,08490,0,VOUZIERS,Vouziers,Vouziers,COM,08490,0,VOUZIERS,Vouziers,Vouziers +31,1964-04-01,COM,8118,0,CHESTRES,Chestres,Chestres,COM,8490,0,VOUZIERS,Vouziers,Vouziers +31,1964-04-01,COM,8490,0,VOUZIERS,Vouziers,Vouziers,COM,8490,0,VOUZIERS,Vouziers,Vouziers 31,1964-03-14,COM,42111,1,IZIEUX,Izieux,Izieux,COM,42207,0,SAINT CHAMOND,Saint-Chamond,Saint-Chamond 31,1964-03-14,COM,42207,0,SAINT CHAMOND,Saint-Chamond,Saint-Chamond,COM,42207,0,SAINT CHAMOND,Saint-Chamond,Saint-Chamond 31,1964-03-14,COM,42244,0,SAINT JULIEN EN JAREZ,Saint-Julien-en-Jarez,Saint-Julien-en-Jarez,COM,42207,0,SAINT CHAMOND,Saint-Chamond,Saint-Chamond @@ -12875,7 +12675,7 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1964-03-01,COM,50560,0,SAINT THOMAS DE SAINT LO,Saint-Thomas-de-Saint-Lô,Saint-Thomas-de-Saint-Lô,COM,50502,0,SAINT LO,Saint-Lô,Saint-Lô 31,1964-02-17,COM,14018,1,ARCLAIS,Arclais,Arclais,COM,14655,0,SAINT PIERRE TARENTAINE,Saint-Pierre-Tarentaine,Saint-Pierre-Tarentaine 31,1964-02-17,COM,14655,0,SAINT PIERRE TARENTAINE,Saint-Pierre-Tarentaine,Saint-Pierre-Tarentaine,COM,14655,0,SAINT PIERRE TARENTAINE,Saint-Pierre-Tarentaine,Saint-Pierre-Tarentaine -31,1964-02-17,COM,76018,0,ANGLESQUEVILLE SUR SAANE,Anglesqueville-sur-Saâne,Anglesqueville-sur-Saâne,COM,76018,0,VAL DE SAANE,Val-de-Saâne,Val-de-Saâne +31,1964-02-17,COM,76018,1,ANGLESQUEVILLE SUR SAANE,Anglesqueville-sur-Saâne,Anglesqueville-sur-Saâne,COM,76018,0,VAL DE SAANE,Val-de-Saâne,Val-de-Saâne 31,1964-02-17,COM,76256,1,EURVILLE,Eurville,Eurville,COM,76018,0,VAL DE SAANE,Val-de-Saâne,Val-de-Saâne 31,1964-02-17,COM,76722,0,VARVANNES,Varvannes,Varvannes,COM,76018,0,VAL DE SAANE,Val-de-Saâne,Val-de-Saâne 31,1964-02-10,COM,73195,1,OUTRECHAISE,Outrechaise,Outrechaise,COM,73303,1,UGINE,Ugine,Ugine @@ -12899,14 +12699,14 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1964-01-01,COM,80660,0,RAINECOURT,Rainecourt,Rainecourt,COM,80342,0,FRAMERVILLE RAINECOURT,Framerville-Rainecourt,Framerville-Rainecourt 31,1964-01-01,COM,86137,0,LOUDUN,Loudun,Loudun,COM,86137,0,LOUDUN,Loudun,Loudun 31,1964-01-01,COM,86282,0,VENIERS,Véniers,Véniers,COM,86137,0,LOUDUN,Loudun,Loudun -31,1963-10-05,COM,05030,0,CHABOTTONNES,Chabottonnes,Chabottonnes,COM,05145,0,SAINT JEAN SAINT NICOLAS,Saint-Jean-Saint-Nicolas,Saint-Jean-Saint-Nicolas -31,1963-10-05,COM,05145,0,SAINT JEAN SAINT NICOLAS,Saint-Jean-Saint-Nicolas,Saint-Jean-Saint-Nicolas,COM,05145,0,SAINT JEAN SAINT NICOLAS,Saint-Jean-Saint-Nicolas,Saint-Jean-Saint-Nicolas -31,1963-10-01,COM,04225,1,URTIS,Urtis,Urtis,COM,04234,0,VENTEROL,Venterol,Venterol -31,1963-10-01,COM,04234,0,VENTEROL,Venterol,Venterol,COM,04234,0,VENTEROL,Venterol,Venterol +31,1963-10-05,COM,5030,0,CHABOTTONNES,Chabottonnes,Chabottonnes,COM,5145,0,SAINT JEAN SAINT NICOLAS,Saint-Jean-Saint-Nicolas,Saint-Jean-Saint-Nicolas +31,1963-10-05,COM,5145,0,SAINT JEAN SAINT NICOLAS,Saint-Jean-Saint-Nicolas,Saint-Jean-Saint-Nicolas,COM,5145,0,SAINT JEAN SAINT NICOLAS,Saint-Jean-Saint-Nicolas,Saint-Jean-Saint-Nicolas +31,1963-10-01,COM,4225,1,URTIS,Urtis,Urtis,COM,4234,0,VENTEROL,Venterol,Venterol +31,1963-10-01,COM,4234,0,VENTEROL,Venterol,Venterol,COM,4234,0,VENTEROL,Venterol,Venterol 31,1963-08-07,COM,69123,0,LYON,Lyon,Lyon,COM,69123,0,LYON,Lyon,Lyon 31,1963-08-07,COM,69232,0,SAINT RAMBERT L ILE BARBE,Saint-Rambert-l'Île-Barbe,Saint-Rambert-l'Île-Barbe,COM,69123,0,LYON,Lyon,Lyon -31,1963-01-01,COM,05041,0,CLEMENCE D AMBEL,Clémence-d'Ambel,Clémence-d'Ambel,COM,05064,3,CHAPELLE EN VALGAUDEMAR,Chapelle-en-Valgaudémar,La Chapelle-en-Valgaudémar -31,1963-01-01,COM,05064,0,GUILLAUME PEYROUSE,Guillaume-Peyrouse,Guillaume-Peyrouse,COM,05064,3,CHAPELLE EN VALGAUDEMAR,Chapelle-en-Valgaudémar,La Chapelle-en-Valgaudémar +31,1963-01-01,COM,5041,0,CLEMENCE D AMBEL,Clémence-d'Ambel,Clémence-d'Ambel,COM,5064,3,CHAPELLE EN VALGAUDEMAR,Chapelle-en-Valgaudémar,La Chapelle-en-Valgaudémar +31,1963-01-01,COM,5064,0,GUILLAUME PEYROUSE,Guillaume-Peyrouse,Guillaume-Peyrouse,COM,5064,3,CHAPELLE EN VALGAUDEMAR,Chapelle-en-Valgaudémar,La Chapelle-en-Valgaudémar 31,1963-01-01,COM,24547,0,TERRASSON,Terrasson,Terrasson,COM,24547,0,TERRASSON LA VILLEDIEU,Terrasson-la-Villedieu,Terrasson-la-Villedieu 31,1963-01-01,COM,24583,3,VILLEDIEU,Villedieu,La Villedieu,COM,24547,0,TERRASSON LA VILLEDIEU,Terrasson-la-Villedieu,Terrasson-la-Villedieu 31,1963-01-01,COM,27467,0,PONT AUDEMER,Pont-Audemer,Pont-Audemer,COM,27467,0,PONT AUDEMER,Pont-Audemer,Pont-Audemer @@ -12917,12 +12717,12 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1963-01-01,COM,88384,0,REMOIS,Rémois,Rémois,COM,88274,0,LONGCHAMP SOUS CHATENOIS,Longchamp-sous-Châtenois,Longchamp-sous-Châtenois 10,1962-12-22,COM,54316,0,LIMEY,Limey,Limey,COM,54316,0,LIMEY REMENAUVILLE,Limey-Remenauville,Limey-Remenauville 10,1962-12-22,COM,54518,0,THIAUCOURT,Thiaucourt,Thiaucourt,COM,54518,0,THIAUCOURT REGNIEVILLE,Thiaucourt-Regniéville,Thiaucourt-Regniéville -31,1962-12-20,COM,04046,2,CHAFFAUT LAGREMUSE,Chaffaut-Lagremuse,Le Chaffaut-Lagremuse,COM,04046,2,CHAFFAUT SAINT JURSON,Chaffaut-Saint-Jurson,Le Chaffaut-Saint-Jurson -31,1962-12-20,COM,04185,0,SAINT JURSON,Saint-Jurson,Saint-Jurson,COM,04046,2,CHAFFAUT SAINT JURSON,Chaffaut-Saint-Jurson,Le Chaffaut-Saint-Jurson +31,1962-12-20,COM,4046,2,CHAFFAUT LAGREMUSE,Chaffaut-Lagremuse,Le Chaffaut-Lagremuse,COM,4046,2,CHAFFAUT SAINT JURSON,Chaffaut-Saint-Jurson,Le Chaffaut-Saint-Jurson +31,1962-12-20,COM,4185,0,SAINT JURSON,Saint-Jurson,Saint-Jurson,COM,4046,2,CHAFFAUT SAINT JURSON,Chaffaut-Saint-Jurson,Le Chaffaut-Saint-Jurson 31,1962-11-10,COM,87010,0,BEAUNE LES MINES,Beaune-les-Mines,Beaune-les-Mines,COM,87085,0,LIMOGES,Limoges,Limoges 31,1962-11-10,COM,87085,0,LIMOGES,Limoges,Limoges,COM,87085,0,LIMOGES,Limoges,Limoges -31,1962-08-27,COM,01104,0,CHEZERY,Chézery,Chézery,COM,01104,0,CHEZERY FORENS,Chézery-Forens,Chézery-Forens -31,1962-08-27,COM,01164,0,FORENS,Forens,Forens,COM,01104,0,CHEZERY FORENS,Chézery-Forens,Chézery-Forens +31,1962-08-27,COM,1104,0,CHEZERY,Chézery,Chézery,COM,1104,0,CHEZERY FORENS,Chézery-Forens,Chézery-Forens +31,1962-08-27,COM,1164,0,FORENS,Forens,Forens,COM,1104,0,CHEZERY FORENS,Chézery-Forens,Chézery-Forens 31,1962-08-20,COM,25601,0,VERCEL,Vercel,Vercel,COM,25601,0,VERCEL VILLEDIEU LE CAMP,Vercel-Villedieu-le-Camp,Vercel-Villedieu-le-Camp 31,1962-08-20,COM,25636,0,VILLEDIEU LE CAMP,Villedieu-le-Camp,Villedieu-le-Camp,COM,25601,0,VERCEL VILLEDIEU LE CAMP,Vercel-Villedieu-le-Camp,Vercel-Villedieu-le-Camp 10,1962-07-25,COM,22327,0,SAINT SAMSON,Saint-Samson,Saint-Samson,COM,22327,0,SAINT SAMSON SUR RANCE,Saint-Samson-sur-Rance,Saint-Samson-sur-Rance @@ -12933,8 +12733,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1962-07-25,COM,70572,0,VITREY,Vitrey,Vitrey,COM,70572,0,VITREY SUR MANCE,Vitrey-sur-Mance,Vitrey-sur-Mance 10,1962-07-25,COM,82146,0,PUYGAILLARD,Puygaillard,Puygaillard,COM,82146,0,PUYGAILLARD DE LOMAGNE,Puygaillard-de-Lomagne,Puygaillard-de-Lomagne 10,1962-07-12,COM,73173,0,MONTRICHER,Montricher,Montricher,COM,73173,0,MONTRICHER LE BOCHET,Montricher-le-Bochet,Montricher-le-Bochet -10,1962-05-16,COM,01263,0,MONTMERLE,Montmerle,Montmerle,COM,01263,0,MONTMERLE SUR SAONE,Montmerle-sur-Saône,Montmerle-sur-Saône -10,1962-05-16,COM,09201,0,MONTEGUT,Montégut,Montégut,COM,09201,0,MONTEGUT EN COUSERANS,Montégut-en-Couserans,Montégut-en-Couserans +10,1962-05-16,COM,1263,0,MONTMERLE,Montmerle,Montmerle,COM,1263,0,MONTMERLE SUR SAONE,Montmerle-sur-Saône,Montmerle-sur-Saône +10,1962-05-16,COM,9201,0,MONTEGUT,Montégut,Montégut,COM,9201,0,MONTEGUT EN COUSERANS,Montégut-en-Couserans,Montégut-en-Couserans 10,1962-05-16,COM,11016,1,ARQUETTES,Arquettes,Arquettes,COM,11016,1,ARQUETTES EN VAL,Arquettes-en-Val,Arquettes-en-Val 10,1962-05-16,COM,11099,0,CONQUES,Conques,Conques,COM,11099,0,CONQUES SUR ORBIEL,Conques-sur-Orbiel,Conques-sur-Orbiel 10,1962-05-16,COM,11137,0,FELINES,Félines,Félines,COM,11137,0,FELINES TERMENES,Félines-Termenès,Félines-Termenès @@ -12947,7 +12747,7 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1962-05-16,COM,30236,0,SAINT BONNET,Saint-Bonnet,Saint-Bonnet,COM,30236,0,SAINT BONNET DE SALENDRINQUE,Saint-Bonnet-de-Salendrinque,Saint-Bonnet-de-Salendrinque 10,1962-05-16,COM,36023,0,BOUGES,Bouges,Bouges,COM,36023,0,BOUGES LE CHATEAU,Bouges-le-Château,Bouges-le-Château 10,1962-05-16,COM,44016,3,BOISSIERE,Boissière,La Boissière,COM,44016,3,BOISSIERE DU DORE,Boissière-du-Doré,La Boissière-du-Doré -10,1962-05-16,COM,44055,0,ESCOUBLAC,Escoublac,Escoublac,COM,44055,3,BAULE ESCOUBLAC,Baule-Escoublac,La Baule-Escoublac +10,1962-05-16,COM,44055,1,ESCOUBLAC,Escoublac,Escoublac,COM,44055,3,BAULE ESCOUBLAC,Baule-Escoublac,La Baule-Escoublac 10,1962-05-16,COM,50031,0,BARNEVILLE,Barneville,Barneville,COM,50031,0,BARNEVILLE SUR MER,Barneville-sur-Mer,Barneville-sur-Mer 10,1962-05-16,COM,50073,0,BRANVILLE,Branville,Branville,COM,50073,0,BRANVILLE HAGUE,Branville-Hague,Branville-Hague 10,1962-05-16,COM,50256,1,ISIGNY,Isigny,Isigny,COM,50256,1,ISIGNY LE BUAT,Isigny-le-Buat,Isigny-le-Buat @@ -12976,8 +12776,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1962-05-16,COM,73278,0,SAINT REMY,Saint-Rémy,Saint-Rémy,COM,73278,0,SAINT REMY DE MAURIENNE,Saint-Rémy-de-Maurienne,Saint-Rémy-de-Maurienne 31,1962-04-29,COM,50218,0,GRANVILLE,Granville,Granville,COM,50218,0,GRANVILLE,Granville,Granville 31,1962-04-29,COM,50530,0,SAINT NICOLAS PRES GRANVILLE,Saint-Nicolas-près-Granville,Saint-Nicolas-près-Granville,COM,50218,0,GRANVILLE,Granville,Granville -10,1962-04-09,COM,08001,1,ACY,Acy,Acy,COM,08001,1,ACY ROMANCE,Acy-Romance,Acy-Romance -10,1962-04-09,COM,08026,1,AUBIGNY,Aubigny,Aubigny,COM,08026,1,AUBIGNY LES POTHEES,Aubigny-les-Pothées,Aubigny-les-Pothées +10,1962-04-09,COM,8001,1,ACY,Acy,Acy,COM,8001,1,ACY ROMANCE,Acy-Romance,Acy-Romance +10,1962-04-09,COM,8026,1,AUBIGNY,Aubigny,Aubigny,COM,8026,1,AUBIGNY LES POTHEES,Aubigny-les-Pothées,Aubigny-les-Pothées 10,1962-04-09,COM,12262,0,SAUVETERRE,Sauveterre,Sauveterre,COM,12262,0,SAUVETERRE DE ROUERGUE,Sauveterre-de-Rouergue,Sauveterre-de-Rouergue 10,1962-04-09,COM,40001,1,AIRE,Aire,Aire,COM,40001,1,AIRE SUR L ADOUR,Aire-sur-l'Adour,Aire-sur-l'Adour 10,1962-04-09,COM,40100,0,FRECHE,Frêche,Frêche,COM,40100,2,FRECHE,Frêche,Le Frêche @@ -13012,7 +12812,7 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1962-04-09,COM,77083,0,CHAMPS,Champs,Champs,COM,77083,0,CHAMPS SUR MARNE,Champs-sur-Marne,Champs-sur-Marne 10,1962-04-09,COM,87009,0,BEAUMONT,Beaumont,Beaumont,COM,87009,0,BEAUMONT DU LAC,Beaumont-du-Lac,Beaumont-du-Lac 10,1962-04-09,COM,90078,3,PETITE FONTAINE,Petite-Fontaine,La Petite-Fontaine,COM,90078,0,PETITEFONTAINE,Petitefontaine,Petitefontaine -10,1962-03-08,COM,02624,0,PROIZY,Proizy,Proizy,COM,02624,0,PROISY,Proisy,Proisy +10,1962-03-08,COM,2624,0,PROIZY,Proizy,Proizy,COM,2624,0,PROISY,Proisy,Proisy 10,1962-03-08,COM,16020,1,AUBETERRE,Aubeterre,Aubeterre,COM,16020,1,AUBETERRE SUR DRONNE,Aubeterre-sur-Dronne,Aubeterre-sur-Dronne 10,1962-03-08,COM,16242,0,NANTEUIL,Nanteuil,Nanteuil,COM,16242,0,NANTEUIL EN VALLEE,Nanteuil-en-Vallée,Nanteuil-en-Vallée 10,1962-03-08,COM,16307,0,SAINT CIERS,Saint-Ciers,Saint-Ciers,COM,16307,0,SAINT CIERS SUR BONNIEURE,Saint-Ciers-sur-Bonnieure,Saint-Ciers-sur-Bonnieure @@ -13042,7 +12842,7 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1962-03-08,COM,72379,0,VIRE,Viré,Viré,COM,72379,0,VIRE EN CHAMPAGNE,Viré-en-Champagne,Viré-en-Champagne 10,1962-03-08,COM,82155,0,SAINT ANTONIN,Saint-Antonin,Saint-Antonin,COM,82155,0,SAINT ANTONIN NOBLE VAL,Saint-Antonin-Noble-Val,Saint-Antonin-Noble-Val 10,1962-03-08,COM,83001,4,ADRETS DE FREJUS,Adrets-de-Fréjus,Les Adrets-de-Fréjus,COM,83001,4,ADRETS DE L ESTEREL,Adrets-de-l'Estérel,Les Adrets-de-l'Estérel -10,1962-01-28,COM,06109,3,ROQUETTE,Roquette,La Roquette,COM,06109,3,ROQUETTE SUR VAR,Roquette-sur-Var,La Roquette-sur-Var +10,1962-01-28,COM,6109,3,ROQUETTE,Roquette,La Roquette,COM,6109,3,ROQUETTE SUR VAR,Roquette-sur-Var,La Roquette-sur-Var 10,1962-01-28,COM,25415,0,MOUTHIER,Mouthier,Mouthier,COM,25415,0,MOUTHIER HAUTE PIERRE,Mouthier-Haute-Pierre,Mouthier-Haute-Pierre 10,1962-01-28,COM,25452,0,PIERREFONTAINE,Pierrefontaine,Pierrefontaine,COM,25452,0,PIERREFONTAINE LES BLAMONT,Pierrefontaine-lès-Blamont,Pierrefontaine-lès-Blamont 10,1962-01-28,COM,25453,0,PIERREFONTAINE,Pierrefontaine,Pierrefontaine,COM,25453,0,PIERREFONTAINE LES VARANS,Pierrefontaine-les-Varans,Pierrefontaine-les-Varans @@ -13060,7 +12860,7 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1962-01-28,COM,59597,0,TILLOY,Tilloy,Tilloy,COM,59597,0,TILLOY LEZ CAMBRAI,Tilloy-lez-Cambrai,Tilloy-lez-Cambrai 31,1962-01-01,COM,57005,1,ACHATEL,Achâtel,Achâtel,COM,57605,0,SAILLY ACHATEL,Sailly-Achâtel,Sailly-Achâtel 31,1962-01-01,COM,57605,0,SAILLY,Sailly,Sailly,COM,57605,0,SAILLY ACHATEL,Sailly-Achâtel,Sailly-Achâtel -10,1961-12-28,COM,05164,0,SAVINES,Savines,Savines,COM,05164,0,SAVINES LE LAC,Savines-le-Lac,Savines-le-Lac +10,1961-12-28,COM,5164,0,SAVINES,Savines,Savines,COM,5164,0,SAVINES LE LAC,Savines-le-Lac,Savines-le-Lac 10,1961-12-28,COM,21318,1,IVRY,Ivry,Ivry,COM,21318,1,IVRY EN MONTAGNE,Ivry-en-Montagne,Ivry-en-Montagne 10,1961-12-28,COM,21353,0,LONGECOURT,Longecourt,Longecourt,COM,21353,0,LONGECOURT EN PLAINE,Longecourt-en-Plaine,Longecourt-en-Plaine 10,1961-12-28,COM,21663,0,VENAREY,Venarey,Venarey,COM,21663,0,VENAREY LES LAUMES,Venarey-les-Laumes,Venarey-les-Laumes @@ -13083,17 +12883,17 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1961-12-09,COM,57429,0,MAGNY,Magny,Magny,COM,57463,0,METZ,Metz,Metz 31,1961-12-09,COM,57463,0,METZ,Metz,Metz,COM,57463,0,METZ,Metz,Metz 31,1961-12-09,COM,57688,0,VALLIERES LES METZ,Vallières-lès-Metz,Vallières-lès-Metz,COM,57463,0,METZ,Metz,Metz -10,1961-11-16,COM,03227,0,SAINT DIDIER EN ROLLAT,Saint-Didier-en-Rollat,Saint-Didier-en-Rollat,COM,03227,0,SAINT DIDIER LA FORET,Saint-Didier-la-Forêt,Saint-Didier-la-Forêt -10,1961-11-16,COM,06039,0,CHATEAUNEUF,Châteauneuf,Châteauneuf,COM,06039,0,CHATEAUNEUF DE CONTES,Châteauneuf-de-Contes,Châteauneuf-de-Contes +10,1961-11-16,COM,3227,0,SAINT DIDIER EN ROLLAT,Saint-Didier-en-Rollat,Saint-Didier-en-Rollat,COM,3227,0,SAINT DIDIER LA FORET,Saint-Didier-la-Forêt,Saint-Didier-la-Forêt +10,1961-11-16,COM,6039,0,CHATEAUNEUF,Châteauneuf,Châteauneuf,COM,6039,0,CHATEAUNEUF DE CONTES,Châteauneuf-de-Contes,Châteauneuf-de-Contes 10,1961-11-16,COM,37010,1,AUZOUER,Auzouer,Auzouer,COM,37010,1,AUZOUER EN TOURAINE,Auzouer-en-Touraine,Auzouer-en-Touraine 10,1961-11-16,COM,61096,3,CHAPELLE MOCHE,Chapelle-Moche,La Chapelle-Moche,COM,61096,3,CHAPELLE D ANDAINE,Chapelle-d'Andaine,La Chapelle-d'Andaine 10,1961-11-16,COM,80087,0,BERNAY,Bernay,Bernay,COM,80087,0,BERNAY EN PONTHIEU,Bernay-en-Ponthieu,Bernay-en-Ponthieu 10,1961-11-16,COM,80559,0,MONTAGNE,Montagne,Montagne,COM,80559,0,MONTAGNE FAYEL,Montagne-Fayel,Montagne-Fayel 10,1961-11-16,COM,80625,0,PIERREPONT,Pierrepont,Pierrepont,COM,80625,0,PIERREPONT SUR AVRE,Pierrepont-sur-Avre,Pierrepont-sur-Avre 10,1961-11-16,COM,80672,0,RIBEMONT,Ribemont,Ribemont,COM,80672,0,RIBEMONT SUR ANCRE,Ribemont-sur-Ancre,Ribemont-sur-Ancre -21,1961-09-20,COM,30047,0,BOUILLARGUES,Bouillargues,Bouillargues,COM,30047,0,BOUILLARGUES,Bouillargues,Bouillargues -21,1961-09-20,COM,30047,0,BOUILLARGUES,Bouillargues,Bouillargues,COM,30356,0,RODILHAN,Rodilhan,Rodilhan -10,1961-08-26,COM,03038,0,BRANSSAT,Branssat,Branssat,COM,03038,0,BRANSAT,Bransat,Bransat +20,1961-09-20,COM,30047,0,BOUILLARGUES,Bouillargues,Bouillargues,COM,30047,0,BOUILLARGUES,Bouillargues,Bouillargues +20,1961-09-20,COM,30047,0,BOUILLARGUES,Bouillargues,Bouillargues,COM,30356,0,RODILHAN,Rodilhan,Rodilhan +10,1961-08-26,COM,3038,0,BRANSSAT,Branssat,Branssat,COM,3038,0,BRANSAT,Bransat,Bransat 10,1961-08-26,COM,16192,0,LOUBERT,Loubert,Loubert,COM,16192,0,LOUBERT MADIEU,Loubert-Madieu,Loubert-Madieu 10,1961-08-26,COM,24256,0,MARSAC,Marsac,Marsac,COM,24256,0,MARSAC SUR L ISLE,Marsac-sur-l'Isle,Marsac-sur-l'Isle 10,1961-08-26,COM,24320,0,PAYZAC DE LANOUAILLE,Payzac-de-Lanouaille,Payzac-de-Lanouaille,COM,24320,0,PAYZAC,Payzac,Payzac @@ -13122,7 +12922,7 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1961-08-26,COM,90064,0,LEPUIX,Lepuix,Lepuix,COM,90064,0,LEPUIX NEUF,Lepuix-Neuf,Lepuix-Neuf 31,1961-08-07,COM,74042,0,BONNEVILLE,Bonneville,Bonneville,COM,74042,0,BONNEVILLE,Bonneville,Bonneville 31,1961-08-07,COM,74214,0,PONTCHY,Pontchy,Pontchy,COM,74042,0,BONNEVILLE,Bonneville,Bonneville -10,1961-07-30,COM,04144,3,PALUD,Palud,La Palud,COM,04144,3,PALUD SUR VERDON,Palud-sur-Verdon,La Palud-sur-Verdon +10,1961-07-30,COM,4144,3,PALUD,Palud,La Palud,COM,4144,3,PALUD SUR VERDON,Palud-sur-Verdon,La Palud-sur-Verdon 10,1961-07-30,COM,14227,0,DOUVILLE,Douville,Douville,COM,14227,0,DOUVILLE EN AUGE,Douville-en-Auge,Douville-en-Auge 10,1961-07-30,COM,24083,0,CARSAC DE VILLEFRANCHE,Carsac-de-Villefranche,Carsac-de-Villefranche,COM,24083,0,CARSAC DE GURSON,Carsac-de-Gurson,Carsac-de-Gurson 10,1961-07-30,COM,37234,0,SAINT QUENTIN,Saint-Quentin,Saint-Quentin,COM,37234,0,SAINT QUENTIN SUR INDROIS,Saint-Quentin-sur-Indrois,Saint-Quentin-sur-Indrois @@ -13135,8 +12935,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1961-07-30,COM,78164,0,CLAIREFONTAINE,Clairefontaine,Clairefontaine,COM,78164,0,CLAIREFONTAINE EN YVELINES,Clairefontaine-en-Yvelines,Clairefontaine-en-Yvelines 10,1961-07-30,COM,88089,3,CHAPELLE,Chapelle,La Chapelle,COM,88089,3,CHAPELLE DEVANT BRUYERES,Chapelle-devant-Bruyères,La Chapelle-devant-Bruyères 10,1961-07-30,COM,88522,0,VOMECOURT,Vomécourt,Vomécourt,COM,88522,0,VOMECOURT SUR MADON,Vomécourt-sur-Madon,Vomécourt-sur-Madon -10,1961-06-22,COM,02060,0,BEAUVOIS,Beauvois,Beauvois,COM,02060,0,BEAUVOIS EN VERMANDOIS,Beauvois-en-Vermandois,Beauvois-en-Vermandois -10,1961-06-22,COM,02759,3,VALLEE AUX BLEDS,Vallée-aux-Bleds,La Vallée-aux-Bleds,COM,02759,3,VALLEE AU BLE,Vallée-au-Blé,La Vallée-au-Blé +10,1961-06-22,COM,2060,0,BEAUVOIS,Beauvois,Beauvois,COM,2060,0,BEAUVOIS EN VERMANDOIS,Beauvois-en-Vermandois,Beauvois-en-Vermandois +10,1961-06-22,COM,2759,3,VALLEE AUX BLEDS,Vallée-aux-Bleds,La Vallée-aux-Bleds,COM,2759,3,VALLEE AU BLE,Vallée-au-Blé,La Vallée-au-Blé 10,1961-06-22,COM,11008,1,ALET,Alet,Alet,COM,11008,1,ALET LES BAINS,Alet-les-Bains,Alet-les-Bains 10,1961-06-22,COM,33058,0,BLAYE ET SAINTE LUCE,Blaye-et-Sainte-Luce,Blaye-et-Sainte-Luce,COM,33058,0,BLAYE,Blaye,Blaye 10,1961-06-22,COM,37158,0,MONTREUIL,Montreuil,Montreuil,COM,37158,0,MONTREUIL EN TOURAINE,Montreuil-en-Touraine,Montreuil-en-Touraine @@ -13160,8 +12960,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1961-04-27,COM,22113,0,LANNION,Lannion,Lannion,COM,22113,0,LANNION,Lannion,Lannion 31,1961-04-27,COM,22130,0,LOGUIVY LES LANNION,Loguivy-lès-Lannion,Loguivy-lès-Lannion,COM,22113,0,LANNION,Lannion,Lannion 31,1961-04-27,COM,22336,0,SERVEL,Servel,Servel,COM,22113,0,LANNION,Lannion,Lannion -10,1961-04-02,COM,06010,2,BAR,Bar,Le Bar,COM,06010,2,BAR SUR LOUP,Bar-sur-Loup,Le Bar-sur-Loup -10,1961-04-02,COM,07134,0,LAURAC,Laurac,Laurac,COM,07134,0,LAURAC EN VIVARAIS,Laurac-en-Vivarais,Laurac-en-Vivarais +10,1961-04-02,COM,6010,2,BAR,Bar,Le Bar,COM,6010,2,BAR SUR LOUP,Bar-sur-Loup,Le Bar-sur-Loup +10,1961-04-02,COM,7134,0,LAURAC,Laurac,Laurac,COM,7134,0,LAURAC EN VIVARAIS,Laurac-en-Vivarais,Laurac-en-Vivarais 10,1961-04-02,COM,14686,2,THEIL,Theil,Le Theil,COM,14686,2,THEIL BOCAGE,Theil-Bocage,Le Theil-Bocage 10,1961-04-02,COM,23076,1,EVAUX,Évaux,Évaux,COM,23076,1,EVAUX LES BAINS,Évaux-les-Bains,Évaux-les-Bains 10,1961-04-02,COM,32254,0,MIRAMONT,Miramont,Miramont,COM,32254,0,MIRAMONT D ASTARAC,Miramont-d'Astarac,Miramont-d'Astarac @@ -13214,12 +13014,12 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1961-03-05,COM,74224,3,ROCHE,Roche,La Roche,COM,74224,3,ROCHE SUR FORON,Roche-sur-Foron,La Roche-sur-Foron 10,1961-03-05,COM,86222,0,SAINT GEORGES,Saint-Georges,Saint-Georges,COM,86222,0,SAINT GEORGES LES BAILLARGEAUX,Saint-Georges-lès-Baillargeaux,Saint-Georges-lès-Baillargeaux 10,1961-03-05,COM,86290,3,VILLEDIEU,Villedieu,La Villedieu,COM,86290,3,VILLEDIEU DU CLAIN,Villedieu-du-Clain,La Villedieu-du-Clain -31,1961-03-01,COM,08127,0,CONDE LES VOUZIERS,Condé-lès-Vouziers,Condé-lès-Vouziers,COM,08490,0,VOUZIERS,Vouziers,Vouziers -31,1961-03-01,COM,08490,0,VOUZIERS,Vouziers,Vouziers,COM,08490,0,VOUZIERS,Vouziers,Vouziers -10,1961-01-01,COM,02333,0,FRESNES SOUS COUCY,Fresnes-sous-Coucy,Fresnes-sous-Coucy,COM,02333,0,FRESNES,Fresnes,Fresnes -10,1961-01-01,COM,02665,0,ROZOY GRAND,Rozoy-Grand,Rozoy-Grand,COM,02665,0,GRAND ROZOY,Grand-Rozoy,Grand-Rozoy -10,1961-01-01,COM,02783,0,VERLY GRAND,Verly-Grand,Verly-Grand,COM,02783,0,GRAND VERLY,Grand-Verly,Grand-Verly -10,1961-01-01,COM,02784,0,VERLY PETIT,Verly-Petit,Verly-Petit,COM,02784,0,PETIT VERLY,Petit-Verly,Petit-Verly +31,1961-03-01,COM,8127,0,CONDE LES VOUZIERS,Condé-lès-Vouziers,Condé-lès-Vouziers,COM,8490,0,VOUZIERS,Vouziers,Vouziers +31,1961-03-01,COM,8490,0,VOUZIERS,Vouziers,Vouziers,COM,8490,0,VOUZIERS,Vouziers,Vouziers +10,1961-01-01,COM,2333,0,FRESNES SOUS COUCY,Fresnes-sous-Coucy,Fresnes-sous-Coucy,COM,2333,0,FRESNES,Fresnes,Fresnes +10,1961-01-01,COM,2665,0,ROZOY GRAND,Rozoy-Grand,Rozoy-Grand,COM,2665,0,GRAND ROZOY,Grand-Rozoy,Grand-Rozoy +10,1961-01-01,COM,2783,0,VERLY GRAND,Verly-Grand,Verly-Grand,COM,2783,0,GRAND VERLY,Grand-Verly,Grand-Verly +10,1961-01-01,COM,2784,0,VERLY PETIT,Verly-Petit,Verly-Petit,COM,2784,0,PETIT VERLY,Petit-Verly,Petit-Verly 31,1961-01-01,COM,24003,1,AILLAC,Aillac,Aillac,COM,24082,0,CARSAC AILLAC,Carsac-Aillac,Carsac-Aillac 31,1961-01-01,COM,24082,0,CARSAC DE CARLUX,Carsac-de-Carlux,Carsac-de-Carlux,COM,24082,0,CARSAC AILLAC,Carsac-Aillac,Carsac-Aillac 31,1961-01-01,COM,24187,0,FONTENILLES D AIGUEPARSE,Fontenilles-d'Aigueparse,Fontenilles-d'Aigueparse,COM,24263,0,MAZEYROLLES,Mazeyrolles,Mazeyrolles @@ -13239,8 +13039,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1960-08-07,COM,60266,0,FUMECHON,Fumechon,Fumechon,COM,60133,0,CATILLON FUMECHON,Catillon-Fumechon,Catillon-Fumechon 31,1960-04-16,COM,65152,0,COTDOUSSAN,Cotdoussan,Cotdoussan,COM,65348,1,OURDIS COTDOUSSAN,Ourdis-Cotdoussan,Ourdis-Cotdoussan 31,1960-04-16,COM,65348,1,OURDIS,Ourdis,Ourdis,COM,65348,1,OURDIS COTDOUSSAN,Ourdis-Cotdoussan,Ourdis-Cotdoussan -31,1960-04-01,COM,02307,3,FERTE MILON,Ferté-Milon,La Ferté-Milon,COM,02307,3,FERTE MILON,Ferté-Milon,La Ferté-Milon -31,1960-04-01,COM,02692,0,SAINT QUENTIN SUR ALLAN,Saint-Quentin-sur-Allan,Saint-Quentin-sur-Allan,COM,02307,3,FERTE MILON,Ferté-Milon,La Ferté-Milon +31,1960-04-01,COM,2307,3,FERTE MILON,Ferté-Milon,La Ferté-Milon,COM,2307,3,FERTE MILON,Ferté-Milon,La Ferté-Milon +31,1960-04-01,COM,2692,0,SAINT QUENTIN SUR ALLAN,Saint-Quentin-sur-Allan,Saint-Quentin-sur-Allan,COM,2307,3,FERTE MILON,Ferté-Milon,La Ferté-Milon 31,1960-02-13,COM,29050,1,ERGUE ARMEL,Ergué-Armel,Ergué-Armel,COM,29232,0,QUIMPER,Quimper,Quimper 31,1960-02-13,COM,29088,0,KERFEUNTEUN,Kerfeunteun,Kerfeunteun,COM,29232,0,QUIMPER,Quimper,Quimper 31,1960-02-13,COM,29157,0,PENHARS,Penhars,Penhars,COM,29232,0,QUIMPER,Quimper,Quimper @@ -13255,22 +13055,22 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1960-01-01,COM,57262,0,GROSTENQUIN,Grostenquin,Grostenquin,COM,57262,0,GROSTENQUIN,Grostenquin,Grostenquin 31,1959-10-01,COM,61312,0,NOTRE DAME D ASPRES,Notre-Dame-d'Aspres,Notre-Dame-d'Aspres,COM,61422,4,ASPRES,Aspres,Les Aspres 31,1959-10-01,COM,61422,0,SAINT MARTIN D ASPRES,Saint-Martin-d'Aspres,Saint-Martin-d'Aspres,COM,61422,4,ASPRES,Aspres,Les Aspres -31,1959-05-16,COM,04102,2,LAUZET,Lauzet,Le Lauzet,COM,04102,2,LAUZET UBAYE,Lauzet-Ubaye,Le Lauzet-Ubaye -31,1959-05-16,COM,04223,1,UBAYE,Ubaye,Ubaye,COM,04102,2,LAUZET UBAYE,Lauzet-Ubaye,Le Lauzet-Ubaye -10,1959-04-27,COM,08248,0,LAUNOIS,Launois,Launois,COM,08248,0,LAUNOIS SUR VENCE,Launois-sur-Vence,Launois-sur-Vence -10,1959-04-27,COM,08378,0,SAINT CLEMENT,Saint-Clément,Saint-Clément,COM,08378,0,SAINT CLEMENT A ARNES,Saint-Clément-à-Arnes,Saint-Clément-à-Arnes -10,1959-04-27,COM,08399,0,SAPOGNE,Sapogne,Sapogne,COM,08399,0,SAPOGNE SUR MARCHE,Sapogne-sur-Marche,Sapogne-sur-Marche -10,1959-04-27,COM,08459,0,TREMBLOIS,Tremblois,Tremblois,COM,08459,0,TREMBLOIS LES CARIGNAN,Tremblois-lès-Carignan,Tremblois-lès-Carignan +31,1959-05-16,COM,4102,2,LAUZET,Lauzet,Le Lauzet,COM,4102,2,LAUZET UBAYE,Lauzet-Ubaye,Le Lauzet-Ubaye +31,1959-05-16,COM,4223,1,UBAYE,Ubaye,Ubaye,COM,4102,2,LAUZET UBAYE,Lauzet-Ubaye,Le Lauzet-Ubaye +10,1959-04-27,COM,8248,0,LAUNOIS,Launois,Launois,COM,8248,0,LAUNOIS SUR VENCE,Launois-sur-Vence,Launois-sur-Vence +10,1959-04-27,COM,8378,0,SAINT CLEMENT,Saint-Clément,Saint-Clément,COM,8378,0,SAINT CLEMENT A ARNES,Saint-Clément-à-Arnes,Saint-Clément-à-Arnes +10,1959-04-27,COM,8399,0,SAPOGNE,Sapogne,Sapogne,COM,8399,0,SAPOGNE SUR MARCHE,Sapogne-sur-Marche,Sapogne-sur-Marche +10,1959-04-27,COM,8459,0,TREMBLOIS,Tremblois,Tremblois,COM,8459,0,TREMBLOIS LES CARIGNAN,Tremblois-lès-Carignan,Tremblois-lès-Carignan 10,1959-04-27,COM,37207,0,SAINT AUBIN,Saint-Aubin,Saint-Aubin,COM,37207,0,SAINT AUBIN LE DEPEINT,Saint-Aubin-le-Dépeint,Saint-Aubin-le-Dépeint 10,1959-04-27,COM,37226,0,SAINTE MAURE,Sainte-Maure,Sainte-Maure,COM,37226,0,SAINTE MAURE DE TOURAINE,Sainte-Maure-de-Touraine,Sainte-Maure-de-Touraine 10,1959-04-27,COM,37270,0,VERNOU,Vernou,Vernou,COM,37270,0,VERNOU SUR BRENNE,Vernou-sur-Brenne,Vernou-sur-Brenne -10,1959-04-26,COM,08049,0,BAR,Bar,Bar,COM,08049,0,BAR LES BUZANCY,Bar-lès-Buzancy,Bar-lès-Buzancy -10,1959-04-26,COM,08057,0,BELLEVILLE,Belleville,Belleville,COM,08057,0,BELLEVILLE SUR BAR,Belleville-sur-Bar,Belleville-sur-Bar -10,1959-04-26,COM,08110,2,CHATELET,Châtelet,Le Châtelet,COM,08110,2,CHATELET SUR SORMONNE,Châtelet-sur-Sormonne,Le Châtelet-sur-Sormonne -10,1959-04-26,COM,08115,0,CHEMERY,Chémery,Chémery,COM,08115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar -10,1959-04-26,COM,08168,3,FERTE,Ferté,La Ferté,COM,08168,3,FERTE SUR CHIERS,Ferté-sur-Chiers,La Ferté-sur-Chiers -10,1959-04-26,COM,08210,0,HANNOGNE,Hannogne,Hannogne,COM,08210,0,HANNOGNE SAINT REMY,Hannogne-Saint-Rémy,Hannogne-Saint-Rémy -10,1959-04-26,COM,08237,0,JOIGNY,Joigny,Joigny,COM,08237,0,JOIGNY SUR MEUSE,Joigny-sur-Meuse,Joigny-sur-Meuse +10,1959-04-26,COM,8049,0,BAR,Bar,Bar,COM,8049,0,BAR LES BUZANCY,Bar-lès-Buzancy,Bar-lès-Buzancy +10,1959-04-26,COM,8057,0,BELLEVILLE,Belleville,Belleville,COM,8057,0,BELLEVILLE SUR BAR,Belleville-sur-Bar,Belleville-sur-Bar +10,1959-04-26,COM,8110,2,CHATELET,Châtelet,Le Châtelet,COM,8110,2,CHATELET SUR SORMONNE,Châtelet-sur-Sormonne,Le Châtelet-sur-Sormonne +10,1959-04-26,COM,8115,0,CHEMERY,Chémery,Chémery,COM,8115,0,CHEMERY SUR BAR,Chémery-sur-Bar,Chémery-sur-Bar +10,1959-04-26,COM,8168,3,FERTE,Ferté,La Ferté,COM,8168,3,FERTE SUR CHIERS,Ferté-sur-Chiers,La Ferté-sur-Chiers +10,1959-04-26,COM,8210,0,HANNOGNE,Hannogne,Hannogne,COM,8210,0,HANNOGNE SAINT REMY,Hannogne-Saint-Rémy,Hannogne-Saint-Rémy +10,1959-04-26,COM,8237,0,JOIGNY,Joigny,Joigny,COM,8237,0,JOIGNY SUR MEUSE,Joigny-sur-Meuse,Joigny-sur-Meuse 31,1959-03-28,COM,61112,0,COLONARD LE BUISSON,Colonard-le-Buisson,Colonard-le-Buisson,COM,61112,0,COLONARD CORUBERT,Colonard-Corubert,Colonard-Corubert 31,1959-03-28,COM,61119,0,CORUBERT,Corubert,Corubert,COM,61112,0,COLONARD CORUBERT,Colonard-Corubert,Colonard-Corubert 31,1959-03-01,COM,42057,0,CHAZEAU,Chazeau,Chazeau,COM,42095,0,FIRMINY,Firminy,Firminy @@ -13285,10 +13085,10 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1959-02-22,COM,52509,0,VAUX SOUS AUBIGNY,Vaux-sous-Aubigny,Vaux-sous-Aubigny,COM,52509,0,VAUX SOUS AUBIGNY,Vaux-sous-Aubigny,Vaux-sous-Aubigny 31,1959-02-21,COM,30078,0,CEZAS,Cézas,Cézas,COM,30325,0,SUMENE,Sumène,Sumène 31,1959-02-21,COM,30325,0,SUMENE,Sumène,Sumène,COM,30325,0,SUMENE,Sumène,Sumène -21,1959-02-08,ARM,69387,0,LYON 7E ARRONDISSEMENT,Lyon 7e Arrondissement,Lyon 7e Arrondissement,ARM,69387,0,LYON 7E ARRONDISSEMENT,Lyon 7e Arrondissement,Lyon 7e Arrondissement -21,1959-02-08,ARM,69387,0,LYON 7E ARRONDISSEMENT,Lyon 7e Arrondissement,Lyon 7e Arrondissement,ARM,69388,0,LYON 8E ARRONDISSEMENT,Lyon 8e Arrondissement,Lyon 8e Arrondissement -21,1959-01-01,COM,44214,0,VAY,Vay,Vay,COM,44224,3,GRIGONNAIS,Grigonnais,La Grigonnais -21,1959-01-01,COM,44214,0,VAY,Vay,Vay,COM,44214,0,VAY,Vay,Vay +20,1959-02-08,ARM,69387,0,LYON 7E ARRONDISSEMENT,Lyon 7e Arrondissement,Lyon 7e Arrondissement,ARM,69387,0,LYON 7E ARRONDISSEMENT,Lyon 7e Arrondissement,Lyon 7e Arrondissement +20,1959-02-08,ARM,69387,0,LYON 7E ARRONDISSEMENT,Lyon 7e Arrondissement,Lyon 7e Arrondissement,ARM,69388,0,LYON 8E ARRONDISSEMENT,Lyon 8e Arrondissement,Lyon 8e Arrondissement +20,1959-01-01,COM,44214,0,VAY,Vay,Vay,COM,44214,0,VAY,Vay,Vay +20,1959-01-01,COM,44214,0,VAY,Vay,Vay,COM,44224,3,GRIGONNAIS,Grigonnais,La Grigonnais 10,1958-12-21,COM,24138,0,COULOUNIEIX,Coulounieix,Coulounieix,COM,24138,0,COULOUNIEIX CHAMIERS,Coulounieix-Chamiers,Coulounieix-Chamiers 10,1958-12-21,COM,26292,0,SAINT AUBAN,Saint-Auban,Saint-Auban,COM,26292,0,SAINT AUBAN SUR L OUVEZE,Saint-Auban-sur-l'Ouvèze,Saint-Auban-sur-l'Ouvèze 10,1958-12-21,COM,47179,0,MONSEMPRON,Monsempron,Monsempron,COM,47179,0,MONSEMPRON LIBOS,Monsempron-Libos,Monsempron-Libos @@ -13302,19 +13102,19 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1958-12-20,COM,32392,0,SAINT MARTIN,Saint-Martin,Saint-Martin,COM,32392,0,SAINT MARTIN GIMOIS,Saint-Martin-Gimois,Saint-Martin-Gimois 10,1958-12-20,COM,32459,0,VALENCE,Valence,Valence,COM,32459,0,VALENCE SUR BAISE,Valence-sur-Baïse,Valence-sur-Baïse 10,1958-12-20,COM,32464,0,VILLECOMTAL,Villecomtal,Villecomtal,COM,32464,0,VILLECOMTAL SUR ARROS,Villecomtal-sur-Arros,Villecomtal-sur-Arros -10,1958-12-19,COM,01370,0,SAINT LAURENT,Saint-Laurent,Saint-Laurent,COM,01370,0,SAINT LAURENT SUR SAONE,Saint-Laurent-sur-Saône,Saint-Laurent-sur-Saône -10,1958-12-19,COM,02653,0,ROMENY,Romeny,Romeny,COM,02653,0,ROMENY SUR MARNE,Romeny-sur-Marne,Romeny-sur-Marne +10,1958-12-19,COM,1370,0,SAINT LAURENT,Saint-Laurent,Saint-Laurent,COM,1370,0,SAINT LAURENT SUR SAONE,Saint-Laurent-sur-Saône,Saint-Laurent-sur-Saône +10,1958-12-19,COM,2653,0,ROMENY,Romeny,Romeny,COM,2653,0,ROMENY SUR MARNE,Romeny-sur-Marne,Romeny-sur-Marne 10,1958-12-19,COM,43012,1,AUREC,Aurec,Aurec,COM,43012,1,AUREC SUR LOIRE,Aurec-sur-Loire,Aurec-sur-Loire 10,1958-12-19,COM,43020,0,BAS,Bas,Bas,COM,43020,0,BAS EN BASSET,Bas-en-Basset,Bas-en-Basset 10,1958-12-19,COM,43037,2,BOUCHET,Bouchet,Le Bouchet,COM,43037,2,BOUCHET SAINT NICOLAS,Bouchet-Saint-Nicolas,Le Bouchet-Saint-Nicolas 10,1958-12-19,COM,43052,0,CHAMPAGNAC,Champagnac,Champagnac,COM,43052,0,CHAMPAGNAC LE VIEUX,Champagnac-le-Vieux,Champagnac-le-Vieux 10,1958-12-19,COM,43141,0,MONTFAUCON,Montfaucon,Montfaucon,COM,43141,0,MONTFAUCON EN VELAY,Montfaucon-en-Velay,Montfaucon-en-Velay -10,1958-10-22,COM,09085,0,CASTILLON,Castillon,Castillon,COM,09085,0,CASTILLON EN COUSERANS,Castillon-en-Couserans,Castillon-en-Couserans -10,1958-10-22,COM,09105,0,DAUMAZAN,Daumazan,Daumazan,COM,09105,0,DAUMAZAN SUR ARIZE,Daumazan-sur-Arize,Daumazan-sur-Arize -10,1958-10-22,COM,09167,0,LEZAT,Lézat,Lézat,COM,09167,0,LEZAT SUR LEZE,Lézat-sur-Lèze,Lézat-sur-Lèze -10,1958-10-22,COM,09257,0,SAINTE CROIX,Sainte-Croix,Sainte-Croix,COM,09257,0,SAINTE CROIX VOLVESTRE,Sainte-Croix-Volvestre,Sainte-Croix-Volvestre -10,1958-10-22,COM,09293,0,SERRES,Serres,Serres,COM,09293,0,SERRES SUR ARGET,Serres-sur-Arget,Serres-sur-Arget -10,1958-10-22,COM,09306,0,TARASCON,Tarascon,Tarascon,COM,09306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège +10,1958-10-22,COM,9085,0,CASTILLON,Castillon,Castillon,COM,9085,0,CASTILLON EN COUSERANS,Castillon-en-Couserans,Castillon-en-Couserans +10,1958-10-22,COM,9105,0,DAUMAZAN,Daumazan,Daumazan,COM,9105,0,DAUMAZAN SUR ARIZE,Daumazan-sur-Arize,Daumazan-sur-Arize +10,1958-10-22,COM,9167,0,LEZAT,Lézat,Lézat,COM,9167,0,LEZAT SUR LEZE,Lézat-sur-Lèze,Lézat-sur-Lèze +10,1958-10-22,COM,9257,0,SAINTE CROIX,Sainte-Croix,Sainte-Croix,COM,9257,0,SAINTE CROIX VOLVESTRE,Sainte-Croix-Volvestre,Sainte-Croix-Volvestre +10,1958-10-22,COM,9293,0,SERRES,Serres,Serres,COM,9293,0,SERRES SUR ARGET,Serres-sur-Arget,Serres-sur-Arget +10,1958-10-22,COM,9306,0,TARASCON,Tarascon,Tarascon,COM,9306,0,TARASCON SUR ARIEGE,Tarascon-sur-Ariège,Tarascon-sur-Ariège 10,1958-10-22,COM,41035,0,CHAMPIGNY,Champigny,Champigny,COM,41035,0,CHAMPIGNY EN BEAUCE,Champigny-en-Beauce,Champigny-en-Beauce 10,1958-10-22,COM,41043,0,CHATILLON,Châtillon,Châtillon,COM,41043,0,CHATILLON SUR CHER,Châtillon-sur-Cher,Châtillon-sur-Cher 10,1958-10-22,COM,41189,0,RILLY,Rilly,Rilly,COM,41189,0,RILLY SUR LOIRE,Rilly-sur-Loire,Rilly-sur-Loire @@ -13331,7 +13131,7 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1958-10-15,COM,86221,0,SAINT GENEST,Saint-Genest,Saint-Genest,COM,86221,0,SAINT GENEST D AMBIERE,Saint-Genest-d'Ambière,Saint-Genest-d'Ambière 10,1958-10-15,COM,86241,0,SAINT REMY,Saint-Rémy,Saint-Rémy,COM,86241,0,SAINT REMY SUR CREUSE,Saint-Rémy-sur-Creuse,Saint-Rémy-sur-Creuse 10,1958-10-15,COM,86257,0,SAVIGNY,Savigny,Savigny,COM,86257,0,SAVIGNY SOUS FAYE,Savigny-sous-Faye,Savigny-sous-Faye -10,1958-10-13,COM,03155,0,LURCY LEVY,Lurcy-Lévy,Lurcy-Lévy,COM,03155,0,LURCY LEVIS,Lurcy-Lévis,Lurcy-Lévis +10,1958-10-13,COM,3155,0,LURCY LEVY,Lurcy-Lévy,Lurcy-Lévy,COM,3155,0,LURCY LEVIS,Lurcy-Lévis,Lurcy-Lévis 10,1958-10-13,COM,14076,0,BLAINVILLE,Blainville,Blainville,COM,14076,0,BLAINVILLE SUR ORNE,Blainville-sur-Orne,Blainville-sur-Orne 10,1958-10-13,COM,14475,0,NOYERS,Noyers,Noyers,COM,14475,0,NOYERS BOCAGE,Noyers-Bocage,Noyers-Bocage 10,1958-10-13,COM,14493,0,PERCY,Percy,Percy,COM,14493,0,PERCY EN AUGE,Percy-en-Auge,Percy-en-Auge @@ -13367,10 +13167,10 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1958-06-23,COM,31472,0,SAINT BERTRAND,Saint-Bertrand,Saint-Bertrand,COM,31472,0,SAINT BERTRAND DE COMMINGES,Saint-Bertrand-de-Comminges,Saint-Bertrand-de-Comminges 10,1958-06-23,COM,31523,0,SALIES,Salies,Salies,COM,31523,0,SALIES DU SALAT,Salies-du-Salat,Salies-du-Salat 10,1958-06-23,COM,31582,0,VILLEFRANCHE,Villefranche,Villefranche,COM,31582,0,VILLEFRANCHE DE LAURAGAIS,Villefranche-de-Lauragais,Villefranche-de-Lauragais -21,1958-05-16,COM,65455,0,TUZAGUET,Tuzaguet,Tuzaguet,COM,65455,0,TUZAGUET,Tuzaguet,Tuzaguet -21,1958-05-16,COM,65455,0,TUZAGUET,Tuzaguet,Tuzaguet,COM,65482,0,CANTAOUS,Cantaous,Cantaous -21,1958-03-28,COM,31251,0,LABASTIDE PAUMES,Labastide-Paumès,Labastide-Paumès,COM,31593,0,CAZAC,Cazac,Cazac -21,1958-03-28,COM,31251,0,LABASTIDE PAUMES,Labastide-Paumès,Labastide-Paumès,COM,31251,0,LABASTIDE PAUMES,Labastide-Paumès,Labastide-Paumès +20,1958-05-16,COM,65455,0,TUZAGUET,Tuzaguet,Tuzaguet,COM,65455,0,TUZAGUET,Tuzaguet,Tuzaguet +20,1958-05-16,COM,65455,0,TUZAGUET,Tuzaguet,Tuzaguet,COM,65482,0,CANTAOUS,Cantaous,Cantaous +20,1958-03-28,COM,31251,0,LABASTIDE PAUMES,Labastide-Paumès,Labastide-Paumès,COM,31251,0,LABASTIDE PAUMES,Labastide-Paumès,Labastide-Paumès +20,1958-03-28,COM,31251,0,LABASTIDE PAUMES,Labastide-Paumès,Labastide-Paumès,COM,31593,0,CAZAC,Cazac,Cazac 10,1958-03-13,COM,49045,3,BREILLE,Breille,La Breille,COM,49045,3,BREILLE LES PINS,Breille-les-Pins,La Breille-les-Pins 10,1958-03-02,COM,12066,0,CLAIRVAUX,Clairvaux,Clairvaux,COM,12066,0,CLAIRVAUX D AVEYRON,Clairvaux-d'Aveyron,Clairvaux-d'Aveyron 10,1958-03-02,COM,12094,1,ENTRAYGUES,Entraygues,Entraygues,COM,12094,1,ENTRAYGUES SUR TRUYERE,Entraygues-sur-Truyère,Entraygues-sur-Truyère @@ -13384,17 +13184,17 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1958-01-13,COM,46117,0,GAGNAC,Gagnac,Gagnac,COM,46117,0,GAGNAC SUR CERE,Gagnac-sur-Cère,Gagnac-sur-Cère 20,1958-01-01,COM,57206,0,FAMECK,Fameck,Fameck,COM,57206,0,FAMECK,Fameck,Fameck 20,1958-01-01,COM,57206,0,FAMECK,Fameck,Fameck,COM,57766,0,SAINT NICOLAS EN FORET,Saint-Nicolas-en-Forêt,Saint-Nicolas-en-Forêt -20,1958-01-01,COM,57562,0,RANGUEVAUX,Ranguevaux,Ranguevaux,COM,57766,0,SAINT NICOLAS EN FORET,Saint-Nicolas-en-Forêt,Saint-Nicolas-en-Forêt 20,1958-01-01,COM,57562,0,RANGUEVAUX,Ranguevaux,Ranguevaux,COM,57562,0,RANGUEVAUX,Ranguevaux,Ranguevaux +20,1958-01-01,COM,57562,0,RANGUEVAUX,Ranguevaux,Ranguevaux,COM,57766,0,SAINT NICOLAS EN FORET,Saint-Nicolas-en-Forêt,Saint-Nicolas-en-Forêt 10,1957-12-02,COM,65039,1,ASPIN,Aspin,Aspin,COM,65039,1,ASPIN AURE,Aspin-Aure,Aspin-Aure 10,1957-12-02,COM,65247,0,LAHITTE,Lahitte,Lahitte,COM,65247,0,LAHITTE EZ ANGLES,Lahitte-ez-Angles,Lahitte-ez-Angles 10,1957-12-02,COM,65329,0,NISTOS HAUT ET BAS,Nistos-Haut-et-Bas,Nistos-Haut-et-Bas,COM,65329,0,NISTOS,Nistos,Nistos -10,1957-08-22,COM,01031,0,BELIGNAT,Bélignat,Bélignat,COM,01031,0,BELLIGNAT,Bellignat,Bellignat +10,1957-08-22,COM,1031,0,BELIGNAT,Bélignat,Bélignat,COM,1031,0,BELLIGNAT,Bellignat,Bellignat 10,1957-07-13,COM,33103,0,CASTELMORON,Castelmoron,Castelmoron,COM,33103,0,CASTELMORON D ALBRET,Castelmoron-d'Albret,Castelmoron-d'Albret 10,1957-07-13,COM,33104,0,CASTELNAU,Castelnau,Castelnau,COM,33104,0,CASTELNAU DE MEDOC,Castelnau-de-Médoc,Castelnau-de-Médoc 10,1957-07-13,COM,33106,0,CASTETS,Castets,Castets,COM,33106,0,CASTETS EN DORTHE,Castets-en-Dorthe,Castets-en-Dorthe -10,1957-05-23,COM,06129,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,COM,06129,0,SAINT SAUVEUR SUR TINEE,Saint-Sauveur-sur-Tinée,Saint-Sauveur-sur-Tinée -10,1957-05-23,COM,06130,0,SAINT VALLIER,Saint-Vallier,Saint-Vallier,COM,06130,0,SAINT VALLIER DE THIEY,Saint-Vallier-de-Thiey,Saint-Vallier-de-Thiey +10,1957-05-23,COM,6129,0,SAINT SAUVEUR,Saint-Sauveur,Saint-Sauveur,COM,6129,0,SAINT SAUVEUR SUR TINEE,Saint-Sauveur-sur-Tinée,Saint-Sauveur-sur-Tinée +10,1957-05-23,COM,6130,0,SAINT VALLIER,Saint-Vallier,Saint-Vallier,COM,6130,0,SAINT VALLIER DE THIEY,Saint-Vallier-de-Thiey,Saint-Vallier-de-Thiey 10,1957-04-13,COM,14327,1,HEROUVILLE,Hérouville,Hérouville,COM,14327,1,HEROUVILLE SAINT CLAIR,Hérouville-Saint-Clair,Hérouville-Saint-Clair 10,1957-04-13,COM,14354,0,LANGRUNE,Langrune,Langrune,COM,14354,0,LANGRUNE SUR MER,Langrune-sur-Mer,Langrune-sur-Mer 10,1957-04-13,COM,14449,0,MONTS,Monts,Monts,COM,14449,0,MONTS EN BESSIN,Monts-en-Bessin,Monts-en-Bessin @@ -13413,7 +13213,7 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1957-01-13,COM,10326,0,ROSNAY,Rosnay,Rosnay,COM,10326,0,ROSNAY L HOPITAL,Rosnay-l'Hôpital,Rosnay-l'Hôpital 10,1957-01-13,COM,10411,0,VILLE AUX BOIS,Ville-aux-Bois,Ville-aux-Bois,COM,10411,3,VILLE AUX BOIS,Ville-aux-Bois,La Ville-aux-Bois 10,1957-01-13,COM,10420,0,VILLENAUXE,Villenauxe,Villenauxe,COM,10420,0,VILLENAUXE LA GRANDE,Villenauxe-la-Grande,Villenauxe-la-Grande -10,1957-01-11,COM,66124,0,ODEILLO VIA,Odeillo-Via,Odeillo-Via,COM,66124,0,FONT ROMEU ODEILLO VIA,Font-Romeu-Odeillo-Via,Font-Romeu-Odeillo-Via +10,1957-01-11,COM,66124,1,ODEILLO VIA,Odeillo-Via,Odeillo-Via,COM,66124,0,FONT ROMEU ODEILLO VIA,Font-Romeu-Odeillo-Via,Font-Romeu-Odeillo-Via 31,1957-01-01,COM,29024,0,CARHAIX,Carhaix,Carhaix,COM,29024,0,CARHAIX PLOUGUER,Carhaix-Plouguer,Carhaix-Plouguer 31,1957-01-01,COM,29194,0,PLOUGUER,Plouguer,Plouguer,COM,29024,0,CARHAIX PLOUGUER,Carhaix-Plouguer,Carhaix-Plouguer 10,1956-12-27,COM,45238,1,OUSSON,Ousson,Ousson,COM,45238,1,OUSSON SUR LOIRE,Ousson-sur-Loire,Ousson-sur-Loire @@ -13430,27 +13230,27 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1956-12-27,COM,85163,0,NOIRMOUTIER,Noirmoutier,Noirmoutier,COM,85163,0,NOIRMOUTIER EN L ILE,Noirmoutier-en-l'Île,Noirmoutier-en-l'Île 10,1956-12-27,COM,85180,3,POMMERAIE,Pommeraie,La Pommeraie,COM,85180,3,POMMERAIE SUR SEVRE,Pommeraie-sur-Sèvre,La Pommeraie-sur-Sèvre 10,1956-12-27,COM,85189,0,RIEZ,Riez,Riez,COM,85189,0,NOTRE DAME DE RIEZ,Notre-Dame-de-Riez,Notre-Dame-de-Riez -10,1956-10-19,COM,01021,1,ARS,Ars,Ars,COM,01021,1,ARS SUR FORMANS,Ars-sur-Formans,Ars-sur-Formans -10,1956-10-19,COM,01033,0,BELLEGARDE,Bellegarde,Bellegarde,COM,01033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine -10,1956-10-19,COM,01079,0,CHAMPAGNE,Champagne,Champagne,COM,01079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey -10,1956-10-19,COM,01384,0,SAINT RAMBERT,Saint-Rambert,Saint-Rambert,COM,01384,0,SAINT RAMBERT EN BUGEY,Saint-Rambert-en-Bugey,Saint-Rambert-en-Bugey -10,1956-10-19,COM,01443,0,VILLARS,Villars,Villars,COM,01443,0,VILLARS LES DOMBES,Villars-les-Dombes,Villars-les-Dombes -10,1956-10-19,COM,02321,0,FONTAINE,Fontaine,Fontaine,COM,02321,0,FONTAINE LES VERVINS,Fontaine-lès-Vervins,Fontaine-lès-Vervins -10,1956-08-29,COM,02574,1,ORIGNY,Origny,Origny,COM,02574,1,ORIGNY EN THIERACHE,Origny-en-Thiérache,Origny-en-Thiérache +10,1956-10-19,COM,1021,1,ARS,Ars,Ars,COM,1021,1,ARS SUR FORMANS,Ars-sur-Formans,Ars-sur-Formans +10,1956-10-19,COM,1033,0,BELLEGARDE,Bellegarde,Bellegarde,COM,1033,0,BELLEGARDE SUR VALSERINE,Bellegarde-sur-Valserine,Bellegarde-sur-Valserine +10,1956-10-19,COM,1079,0,CHAMPAGNE,Champagne,Champagne,COM,1079,0,CHAMPAGNE EN VALROMEY,Champagne-en-Valromey,Champagne-en-Valromey +10,1956-10-19,COM,1384,0,SAINT RAMBERT,Saint-Rambert,Saint-Rambert,COM,1384,0,SAINT RAMBERT EN BUGEY,Saint-Rambert-en-Bugey,Saint-Rambert-en-Bugey +10,1956-10-19,COM,1443,0,VILLARS,Villars,Villars,COM,1443,0,VILLARS LES DOMBES,Villars-les-Dombes,Villars-les-Dombes +10,1956-10-19,COM,2321,0,FONTAINE,Fontaine,Fontaine,COM,2321,0,FONTAINE LES VERVINS,Fontaine-lès-Vervins,Fontaine-lès-Vervins +10,1956-08-29,COM,2574,1,ORIGNY,Origny,Origny,COM,2574,1,ORIGNY EN THIERACHE,Origny-en-Thiérache,Origny-en-Thiérache 10,1956-08-29,COM,49212,0,MONTJEAN,Montjean,Montjean,COM,49212,0,MONTJEAN SUR LOIRE,Montjean-sur-Loire,Montjean-sur-Loire 10,1956-08-29,COM,50243,0,HEUGUEVILLE,Heugueville,Heugueville,COM,50243,0,HEUGUEVILLE SUR SIENNE,Heugueville-sur-Sienne,Heugueville-sur-Sienne -10,1956-08-08,COM,07161,0,MONTPEZAT,Montpezat,Montpezat,COM,07161,0,MONTPEZAT SOUS BAUZON,Montpezat-sous-Bauzon,Montpezat-sous-Bauzon -10,1956-08-08,COM,07326,1,USCLADES,Usclades,Usclades,COM,07326,1,USCLADES ET RIEUTORD,Usclades-et-Rieutord,Usclades-et-Rieutord -10,1956-08-08,COM,07338,0,VERNOUX,Vernoux,Vernoux,COM,07338,0,VERNOUX EN VIVARAIS,Vernoux-en-Vivarais,Vernoux-en-Vivarais +10,1956-08-08,COM,7161,0,MONTPEZAT,Montpezat,Montpezat,COM,7161,0,MONTPEZAT SOUS BAUZON,Montpezat-sous-Bauzon,Montpezat-sous-Bauzon +10,1956-08-08,COM,7326,1,USCLADES,Usclades,Usclades,COM,7326,1,USCLADES ET RIEUTORD,Usclades-et-Rieutord,Usclades-et-Rieutord +10,1956-08-08,COM,7338,0,VERNOUX,Vernoux,Vernoux,COM,7338,0,VERNOUX EN VIVARAIS,Vernoux-en-Vivarais,Vernoux-en-Vivarais 10,1956-08-02,COM,60670,0,VERNEUIL,Verneuil,Verneuil,COM,60670,0,VERNEUIL EN HALATTE,Verneuil-en-Halatte,Verneuil-en-Halatte 10,1956-07-13,COM,57275,0,GUESSLING,Guessling,Guessling,COM,57275,0,GUESSLING HEMERING,Guessling-Hémering,Guessling-Hémering 10,1956-07-13,COM,86090,0,CURCAY,Curçay,Curçay,COM,86090,0,CURCAY SUR DIVE,Curçay-sur-Dive,Curçay-sur-Dive 10,1956-06-10,COM,66150,0,PRATS DE MOLLO,Prats-de-Mollo,Prats-de-Mollo,COM,66150,0,PRATS DE MOLLO LA PRESTE,Prats-de-Mollo-la-Preste,Prats-de-Mollo-la-Preste -10,1956-06-08,COM,02095,0,BOHAIN,Bohain,Bohain,COM,02095,0,BOHAIN EN VERMANDOIS,Bohain-en-Vermandois,Bohain-en-Vermandois -10,1956-06-08,COM,02200,0,CLERMONT,Clermont,Clermont,COM,02200,0,CLERMONT LES FERMES,Clermont-les-Fermes,Clermont-les-Fermes -10,1956-06-08,COM,02220,0,COULONGES,Coulonges,Coulonges,COM,02220,0,COULONGES EN TARDENOIS,Coulonges-en-Tardenois,Coulonges-en-Tardenois -10,1956-06-08,COM,02423,0,LEUILLY,Leuilly,Leuilly,COM,02423,0,LEUILLY SOUS COUCY,Leuilly-sous-Coucy,Leuilly-sous-Coucy -10,1956-06-08,COM,02758,0,VAILLY,Vailly,Vailly,COM,02758,0,VAILLY SUR AISNE,Vailly-sur-Aisne,Vailly-sur-Aisne +10,1956-06-08,COM,2095,0,BOHAIN,Bohain,Bohain,COM,2095,0,BOHAIN EN VERMANDOIS,Bohain-en-Vermandois,Bohain-en-Vermandois +10,1956-06-08,COM,2200,0,CLERMONT,Clermont,Clermont,COM,2200,0,CLERMONT LES FERMES,Clermont-les-Fermes,Clermont-les-Fermes +10,1956-06-08,COM,2220,0,COULONGES,Coulonges,Coulonges,COM,2220,0,COULONGES EN TARDENOIS,Coulonges-en-Tardenois,Coulonges-en-Tardenois +10,1956-06-08,COM,2423,0,LEUILLY,Leuilly,Leuilly,COM,2423,0,LEUILLY SOUS COUCY,Leuilly-sous-Coucy,Leuilly-sous-Coucy +10,1956-06-08,COM,2758,0,VAILLY,Vailly,Vailly,COM,2758,0,VAILLY SUR AISNE,Vailly-sur-Aisne,Vailly-sur-Aisne 10,1956-05-05,COM,17392,0,SAINT ROMAIN DE BEAUMONT,Saint-Romain-de-Beaumont,Saint-Romain-de-Beaumont,COM,17392,0,SAINT ROMAIN SUR GIRONDE,Saint-Romain-sur-Gironde,Saint-Romain-sur-Gironde 10,1956-05-05,COM,30051,0,BRANOUX,Branoux,Branoux,COM,30051,0,BRANOUX LES TAILLADES,Branoux-les-Taillades,Branoux-les-Taillades 10,1956-05-05,COM,46183,0,MARCILHAC,Marcilhac,Marcilhac,COM,46183,0,MARCILHAC SUR CELE,Marcilhac-sur-Célé,Marcilhac-sur-Célé @@ -13468,11 +13268,11 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1956-03-10,COM,64555,0,VIELLENAVE,Viellenave,Viellenave,COM,64555,0,VIELLENAVE DE NAVARRENX,Viellenave-de-Navarrenx,Viellenave-de-Navarrenx 10,1956-03-08,COM,80707,0,SAINT LEGER LE PAUVRE,Saint-Léger-le-Pauvre,Saint-Léger-le-Pauvre,COM,80707,0,SAINT LEGER SUR BRESLE,Saint-Léger-sur-Bresle,Saint-Léger-sur-Bresle 10,1956-03-07,COM,46015,0,BAGNAC,Bagnac,Bagnac,COM,46015,0,BAGNAC SUR CELE,Bagnac-sur-Célé,Bagnac-sur-Célé -10,1956-02-24,COM,02050,0,BARZY,Barzy,Barzy,COM,02050,0,BARZY EN THIERACHE,Barzy-en-Thiérache,Barzy-en-Thiérache -10,1956-02-24,COM,02116,0,BRAYE,Braye,Braye,COM,02116,0,BRAYE EN THIERACHE,Braye-en-Thiérache,Braye-en-Thiérache -10,1956-02-24,COM,02127,0,BRUYERES,Bruyères,Bruyères,COM,02127,0,BRUYERES SUR FERE,Bruyères-sur-Fère,Bruyères-sur-Fère -10,1956-02-24,COM,02332,0,FRESNES,Fresnes,Fresnes,COM,02332,0,FRESNES EN TARDENOIS,Fresnes-en-Tardenois,Fresnes-en-Tardenois -10,1956-02-24,COM,02558,2,NOUVION,Nouvion,Le Nouvion,COM,02558,2,NOUVION EN THIERACHE,Nouvion-en-Thiérache,Le Nouvion-en-Thiérache +10,1956-02-24,COM,2050,0,BARZY,Barzy,Barzy,COM,2050,0,BARZY EN THIERACHE,Barzy-en-Thiérache,Barzy-en-Thiérache +10,1956-02-24,COM,2116,0,BRAYE,Braye,Braye,COM,2116,0,BRAYE EN THIERACHE,Braye-en-Thiérache,Braye-en-Thiérache +10,1956-02-24,COM,2127,0,BRUYERES,Bruyères,Bruyères,COM,2127,0,BRUYERES SUR FERE,Bruyères-sur-Fère,Bruyères-sur-Fère +10,1956-02-24,COM,2332,0,FRESNES,Fresnes,Fresnes,COM,2332,0,FRESNES EN TARDENOIS,Fresnes-en-Tardenois,Fresnes-en-Tardenois +10,1956-02-24,COM,2558,2,NOUVION,Nouvion,Le Nouvion,COM,2558,2,NOUVION EN THIERACHE,Nouvion-en-Thiérache,Le Nouvion-en-Thiérache 10,1956-02-24,COM,16075,0,CHAMPAGNE,Champagne,Champagne,COM,16075,0,CHAMPAGNE DE BLANZAC,Champagne-de-Blanzac,Champagne-de-Blanzac 10,1956-02-24,COM,16097,0,CHERVES,Cherves,Cherves,COM,16097,0,CHERVES DE COGNAC,Cherves-de-Cognac,Cherves-de-Cognac 10,1956-02-24,COM,16319,0,SAINT GENIS,Saint-Genis,Saint-Genis,COM,16319,0,SAINT GENIS DE BLANZAC,Saint-Genis-de-Blanzac,Saint-Genis-de-Blanzac @@ -13490,8 +13290,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1956-01-27,COM,33441,0,SAINT MARTIN,Saint-Martin,Saint-Martin,COM,33441,0,SAINT MARTIN LACAUSSADE,Saint-Martin-Lacaussade,Saint-Martin-Lacaussade 10,1956-01-27,COM,33453,0,SAINT MICHEL,Saint-Michel,Saint-Michel,COM,33453,0,SAINT MICHEL DE LAPUJADE,Saint-Michel-de-Lapujade,Saint-Michel-de-Lapujade 10,1956-01-27,COM,33475,0,SAINT SEURIN,Saint-Seurin,Saint-Seurin,COM,33475,0,SAINT SEURIN DE BOURG,Saint-Seurin-de-Bourg,Saint-Seurin-de-Bourg -10,1956-01-23,COM,07112,0,LABASTIDE,Labastide,Labastide,COM,07112,0,LABASTIDE DE JUVINAS,Labastide-de-Juvinas,Labastide-de-Juvinas -10,1956-01-23,COM,07298,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,COM,07298,0,SAINT SYMPHORIEN SOUS CHOMERAC,Saint-Symphorien-sous-Chomérac,Saint-Symphorien-sous-Chomérac +10,1956-01-23,COM,7112,0,LABASTIDE,Labastide,Labastide,COM,7112,0,LABASTIDE DE JUVINAS,Labastide-de-Juvinas,Labastide-de-Juvinas +10,1956-01-23,COM,7298,0,SAINT SYMPHORIEN,Saint-Symphorien,Saint-Symphorien,COM,7298,0,SAINT SYMPHORIEN SOUS CHOMERAC,Saint-Symphorien-sous-Chomérac,Saint-Symphorien-sous-Chomérac 10,1956-01-23,COM,80080,0,BELLOY,Belloy,Belloy,COM,80080,0,BELLOY EN SANTERRE,Belloy-en-Santerre,Belloy-en-Santerre 10,1956-01-23,COM,80090,0,BERNY,Berny,Berny,COM,80090,0,BERNY EN SANTERRE,Berny-en-Santerre,Berny-en-Santerre 10,1956-01-23,COM,80091,0,BERNY,Berny,Berny,COM,80091,0,BERNY SUR NOYE,Berny-sur-Noye,Berny-sur-Noye @@ -13544,7 +13344,7 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1955-08-15,COM,37242,0,SAVIGNY,Savigny,Savigny,COM,37242,0,SAVIGNY EN VERON,Savigny-en-Véron,Savigny-en-Véron 10,1955-08-15,COM,49349,0,TILLIERS,Tilliers,Tilliers,COM,49349,0,TILLIERES,Tillières,Tillières 10,1955-08-15,COM,56221,0,SAINT JACUT,Saint-Jacut,Saint-Jacut,COM,56221,0,SAINT JACUT LES PINS,Saint-Jacut-les-Pins,Saint-Jacut-les-Pins -10,1955-08-10,COM,03025,0,BESSAY,Bessay,Bessay,COM,03025,0,BESSAY SUR ALLIER,Bessay-sur-Allier,Bessay-sur-Allier +10,1955-08-10,COM,3025,0,BESSAY,Bessay,Bessay,COM,3025,0,BESSAY SUR ALLIER,Bessay-sur-Allier,Bessay-sur-Allier 10,1955-08-10,COM,12286,0,VABRES,Vabres,Vabres,COM,12286,0,VABRES L ABBAYE,Vabres-l'Abbaye,Vabres-l'Abbaye 10,1955-08-10,COM,15025,0,BREDONS,Bredons,Bredons,COM,15025,1,ALBEPIERRE BREDONS,Albepierre-Bredons,Albepierre-Bredons 10,1955-08-10,COM,31493,0,SAINT LARY BONJEAN,Saint-Lary-Bonjean,Saint-Lary-Bonjean,COM,31493,0,SAINT LARY BOUJEAN,Saint-Lary-Boujean,Saint-Lary-Boujean @@ -13553,23 +13353,23 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1955-08-05,COM,46244,0,SABADEL,Sabadel,Sabadel,COM,46244,0,SABADEL LATRONQUIERE,Sabadel-Latronquière,Sabadel-Latronquière 31,1955-07-01,COM,38007,1,ALLIERES ET RISSET,Allières-et-Risset,Allières-et-Risset,COM,38524,0,VARCES ALLIERES ET RISSET,Varces-Allières-et-Risset,Varces-Allières-et-Risset 31,1955-07-01,COM,38524,0,VARCES,Varces,Varces,COM,38524,0,VARCES ALLIERES ET RISSET,Varces-Allières-et-Risset,Varces-Allières-et-Risset -21,1955-06-20,COM,31232,0,GRENADE,Grenade,Grenade,COM,31592,0,LARRA,Larra,Larra -21,1955-06-20,COM,31232,0,GRENADE,Grenade,Grenade,COM,31232,0,GRENADE,Grenade,Grenade -21,1955-06-11,COM,56210,0,SAINT CARADEC TREGOMEL,Saint-Caradec-Trégomel,Saint-Caradec-Trégomel,COM,56210,0,SAINT CARADEC TREGOMEL,Saint-Caradec-Trégomel,Saint-Caradec-Trégomel -21,1955-06-11,COM,56210,0,SAINT CARADEC TREGOMEL,Saint-Caradec-Trégomel,Saint-Caradec-Trégomel,COM,56264,0,KERNASCLEDEN,Kernascléden,Kernascléden +20,1955-06-20,COM,31232,0,GRENADE,Grenade,Grenade,COM,31232,0,GRENADE,Grenade,Grenade +20,1955-06-20,COM,31232,0,GRENADE,Grenade,Grenade,COM,31592,0,LARRA,Larra,Larra +20,1955-06-11,COM,56210,0,SAINT CARADEC TREGOMEL,Saint-Caradec-Trégomel,Saint-Caradec-Trégomel,COM,56210,0,SAINT CARADEC TREGOMEL,Saint-Caradec-Trégomel,Saint-Caradec-Trégomel +20,1955-06-11,COM,56210,0,SAINT CARADEC TREGOMEL,Saint-Caradec-Trégomel,Saint-Caradec-Trégomel,COM,56264,0,KERNASCLEDEN,Kernascléden,Kernascléden 10,1955-06-03,COM,29033,2,CLOITRE,Cloître,Le Cloître,COM,29033,2,CLOITRE PLEYBEN,Cloître-Pleyben,Le Cloître-Pleyben 10,1955-06-03,COM,29034,2,CLOITRE,Cloître,Le Cloître,COM,29034,2,CLOITRE SAINT THEGONNEC,Cloître-Saint-Thégonnec,Le Cloître-Saint-Thégonnec 10,1955-06-03,COM,29056,3,FOREST,Forest,La Forest,COM,29056,3,FOREST LANDERNEAU,Forest-Landerneau,La Forest-Landerneau 10,1955-06-03,COM,29057,3,FORET,Forêt,La Forêt,COM,29057,3,FORET FOUESNANT,Forêt-Fouesnant,La Forêt-Fouesnant 10,1955-06-03,COM,29127,0,LOC EGUINER,Loc-Eguiner,Loc-Eguiner,COM,29127,0,LOC EGUINER SAINT THEGONNEC,Loc-Eguiner-Saint-Thégonnec,Loc-Eguiner-Saint-Thégonnec 10,1955-06-03,COM,29129,0,LOCMARIA,Locmaria,Locmaria,COM,29129,0,LOCMARIA BERRIEN,Locmaria-Berrien,Locmaria-Berrien -10,1955-05-28,COM,04183,0,SAINT JULIEN,Saint-Julien,Saint-Julien,COM,04183,0,SAINT JULIEN DU VERDON,Saint-Julien-du-Verdon,Saint-Julien-du-Verdon +10,1955-05-28,COM,4183,0,SAINT JULIEN,Saint-Julien,Saint-Julien,COM,4183,0,SAINT JULIEN DU VERDON,Saint-Julien-du-Verdon,Saint-Julien-du-Verdon 10,1955-05-14,COM,10280,0,PARS,Pars,Pars,COM,10280,0,PARS LES ROMILLY,Pars-lès-Romilly,Pars-lès-Romilly 10,1955-05-14,COM,33462,0,SAINT PHILIPPE DE SEIGNAC,Saint-Philippe-de-Seignac,Saint-Philippe-de-Seignac,COM,33462,0,SAINT PHILIPPE DU SEIGNAL,Saint-Philippe-du-Seignal,Saint-Philippe-du-Seignal 10,1955-04-15,COM,46302,0,SENAILLAC,Senaillac,Senaillac,COM,46302,0,SENAILLAC LATRONQUIERE,Sénaillac-Latronquière,Sénaillac-Latronquière -10,1955-03-31,COM,01004,1,AMBERIEU,Ambérieu,Ambérieu,COM,01004,1,AMBERIEU EN BUGEY,Ambérieu-en-Bugey,Ambérieu-en-Bugey -10,1955-03-31,COM,01053,0,BOURG,Bourg,Bourg,COM,01053,0,BOURG EN BRESSE,Bourg-en-Bresse,Bourg-en-Bresse -10,1955-03-31,COM,01403,0,SERRIERES,Serrières,Serrières,COM,01403,0,SERRIERES DE BRIORD,Serrières-de-Briord,Serrières-de-Briord +10,1955-03-31,COM,1004,1,AMBERIEU,Ambérieu,Ambérieu,COM,1004,1,AMBERIEU EN BUGEY,Ambérieu-en-Bugey,Ambérieu-en-Bugey +10,1955-03-31,COM,1053,0,BOURG,Bourg,Bourg,COM,1053,0,BOURG EN BRESSE,Bourg-en-Bresse,Bourg-en-Bresse +10,1955-03-31,COM,1403,0,SERRIERES,Serrières,Serrières,COM,1403,0,SERRIERES DE BRIORD,Serrières-de-Briord,Serrières-de-Briord 10,1955-03-27,COM,34155,0,MAUREILHAN ET RAMEJEAN,Maureilhan-et-Raméjean,Maureilhan-et-Raméjean,COM,34155,0,MAUREILHAN,Maureilhan,Maureilhan 10,1955-03-27,COM,34178,0,MURVIEL,Murviel,Murviel,COM,34178,0,MURVIEL LES BEZIERS,Murviel-lès-Béziers,Murviel-lès-Béziers 10,1955-03-27,COM,34291,0,SAINT VINCENT,Saint-Vincent,Saint-Vincent,COM,34291,0,SAINT VINCENT D OLARGUES,Saint-Vincent-d'Olargues,Saint-Vincent-d'Olargues @@ -13578,35 +13378,35 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1955-03-12,COM,38375,0,SAINT CHRISTOPHE,Saint-Christophe,Saint-Christophe,COM,38375,0,SAINT CHRISTOPHE EN OISANS,Saint-Christophe-en-Oisans,Saint-Christophe-en-Oisans 10,1955-03-12,COM,38459,0,SAINT SORLIN,Saint-Sorlin,Saint-Sorlin,COM,38459,0,SAINT SORLIN DE VIENNE,Saint-Sorlin-de-Vienne,Saint-Sorlin-de-Vienne 10,1955-02-14,COM,26036,0,BEAUMONT,Beaumont,Beaumont,COM,26036,0,BEAUMONT EN DIOIS,Beaumont-en-Diois,Beaumont-en-Diois -10,1955-01-29,COM,01266,0,MONTREVEL,Montrevel,Montrevel,COM,01266,0,MONTREVEL EN BRESSE,Montrevel-en-Bresse,Montrevel-en-Bresse +10,1955-01-29,COM,1266,0,MONTREVEL,Montrevel,Montrevel,COM,1266,0,MONTREVEL EN BRESSE,Montrevel-en-Bresse,Montrevel-en-Bresse 10,1955-01-29,COM,28332,0,SAINT DENIS DE MORONVAL,Saint-Denis-de-Moronval,Saint-Denis-de-Moronval,COM,28332,0,SAINTE GEMME MORONVAL,Sainte-Gemme-Moronval,Sainte-Gemme-Moronval 10,1955-01-29,COM,40325,0,VIELLE,Vielle,Vielle,COM,40325,0,VIELLE TURSAN,Vielle-Tursan,Vielle-Tursan 31,1955-01-28,COM,29154,0,NIZON,Nizon,Nizon,COM,29217,0,PONT AVEN,Pont-Aven,Pont-Aven 31,1955-01-28,COM,29217,0,PONT AVEN,Pont-Aven,Pont-Aven,COM,29217,0,PONT AVEN,Pont-Aven,Pont-Aven -10,1955-01-17,COM,03161,0,MARCILLAT,Marcillat,Marcillat,COM,03161,0,MARCILLAT EN COMBRAILLE,Marcillat-en-Combraille,Marcillat-en-Combraille -10,1955-01-16,COM,03096,0,DENEUILLE,Deneuille,Deneuille,COM,03096,0,DENEUILLE LES CHANTELLE,Deneuille-lès-Chantelle,Deneuille-lès-Chantelle +10,1955-01-17,COM,3161,0,MARCILLAT,Marcillat,Marcillat,COM,3161,0,MARCILLAT EN COMBRAILLE,Marcillat-en-Combraille,Marcillat-en-Combraille +10,1955-01-16,COM,3096,0,DENEUILLE,Deneuille,Deneuille,COM,3096,0,DENEUILLE LES CHANTELLE,Deneuille-lès-Chantelle,Deneuille-lès-Chantelle 10,1955-01-10,COM,67252,0,KURTZENHAUSEN,Kurtzenhausen,Kurtzenhausen,COM,67252,0,KURTZENHOUSE,Kurtzenhouse,Kurtzenhouse 10,1954-12-24,COM,37079,0,CIVRAY SUR CHER,Civray-sur-Cher,Civray-sur-Cher,COM,37079,0,CIVRAY DE TOURAINE,Civray-de-Touraine,Civray-de-Touraine 10,1954-12-24,COM,62604,0,NEUFCHATEL,Neufchâtel,Neufchâtel,COM,62604,0,NEUFCHATEL HARDELOT,Neufchâtel-Hardelot,Neufchâtel-Hardelot -21,1954-12-18,COM,26079,0,CHARPEY,Charpey,Charpey,COM,26382,0,SAINT VINCENT LA COMMANDERIE,Saint-Vincent-la-Commanderie,Saint-Vincent-la-Commanderie -21,1954-12-18,COM,26079,0,CHARPEY,Charpey,Charpey,COM,26079,0,CHARPEY,Charpey,Charpey +20,1954-12-18,COM,26079,0,CHARPEY,Charpey,Charpey,COM,26079,0,CHARPEY,Charpey,Charpey +20,1954-12-18,COM,26079,0,CHARPEY,Charpey,Charpey,COM,26382,0,SAINT VINCENT LA COMMANDERIE,Saint-Vincent-la-Commanderie,Saint-Vincent-la-Commanderie 10,1954-11-11,COM,23122,0,MANSAT,Mansat,Mansat,COM,23122,0,MANSAT LA COURRIERE,Mansat-la-Courrière,Mansat-la-Courrière -10,1954-09-11,COM,01145,0,DOMPIERRE,Dompierre,Dompierre,COM,01145,0,DOMPIERRE SUR VEYLE,Dompierre-sur-Veyle,Dompierre-sur-Veyle +10,1954-09-11,COM,1145,0,DOMPIERRE,Dompierre,Dompierre,COM,1145,0,DOMPIERRE SUR VEYLE,Dompierre-sur-Veyle,Dompierre-sur-Veyle 10,1954-09-11,COM,12061,0,CASTELNAU,Castelnau,Castelnau,COM,12061,0,CASTELNAU DE MANDAILLES,Castelnau-de-Mandailles,Castelnau-de-Mandailles 10,1954-09-11,COM,12210,0,SAINT ANDRE,Saint-André,Saint-André,COM,12210,0,SAINT ANDRE DE NAJAC,Saint-André-de-Najac,Saint-André-de-Najac 10,1954-09-11,COM,12219,0,SAINTE EULALIE,Sainte-Eulalie,Sainte-Eulalie,COM,12219,0,SAINTE EULALIE D OLT,Sainte-Eulalie-d'Olt,Sainte-Eulalie-d'Olt 10,1954-09-11,COM,12285,0,VABRE,Vabre,Vabre,COM,12285,0,VABRE TIZAC,Vabre-Tizac,Vabre-Tizac 10,1954-09-11,COM,18257,0,SURY EN LERE,Sury-en-Léré,Sury-en-Léré,COM,18257,0,SURY PRES LERE,Sury-près-Léré,Sury-près-Léré -21,1954-09-06,COM,44102,0,MONTBERT,Montbert,Montbert,COM,44223,0,GENESTON,Geneston,Geneston -21,1954-09-06,COM,44102,0,MONTBERT,Montbert,Montbert,COM,44102,0,MONTBERT,Montbert,Montbert -21,1954-08-30,COM,83051,1,ENTRECASTEAUX,Entrecasteaux,Entrecasteaux,COM,83051,1,ENTRECASTEAUX,Entrecasteaux,Entrecasteaux -21,1954-08-30,COM,83051,1,ENTRECASTEAUX,Entrecasteaux,Entrecasteaux,COM,83154,0,SAINT ANTONIN DU VAR,Saint-Antonin-du-Var,Saint-Antonin-du-Var +20,1954-09-06,COM,44102,0,MONTBERT,Montbert,Montbert,COM,44102,0,MONTBERT,Montbert,Montbert +20,1954-09-06,COM,44102,0,MONTBERT,Montbert,Montbert,COM,44223,0,GENESTON,Geneston,Geneston +20,1954-08-30,COM,83051,1,ENTRECASTEAUX,Entrecasteaux,Entrecasteaux,COM,83051,1,ENTRECASTEAUX,Entrecasteaux,Entrecasteaux +20,1954-08-30,COM,83051,1,ENTRECASTEAUX,Entrecasteaux,Entrecasteaux,COM,83154,0,SAINT ANTONIN DU VAR,Saint-Antonin-du-Var,Saint-Antonin-du-Var 10,1954-08-08,COM,78273,0,GIRONVILLE,Gironville,Gironville,COM,78273,0,GIRONVILLE SUR ESSONNE,Gironville-sur-Essonne,Gironville-sur-Essonne 10,1954-06-21,COM,60219,1,ESCLES,Escles,Escles,COM,60219,1,ESCLES SAINT PIERRE,Escles-Saint-Pierre,Escles-Saint-Pierre 10,1954-06-21,COM,66147,0,PORTE,Porté,Porté,COM,66147,0,PORTE PUYMORENS,Porté-Puymorens,Porté-Puymorens 10,1954-06-21,COM,69160,0,POULE,Poule,Poule,COM,69160,0,POULE LES ECHARMEAUX,Poule-les-Écharmeaux,Poule-les-Écharmeaux -10,1954-05-30,COM,04208,0,SIMIANE,Simiane,Simiane,COM,04208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde -10,1954-05-30,COM,07154,0,MAZAN,Mazan,Mazan,COM,07154,0,MAZAN L ABBAYE,Mazan-l'Abbaye,Mazan-l'Abbaye +10,1954-05-30,COM,4208,0,SIMIANE,Simiane,Simiane,COM,4208,0,SIMIANE LA ROTONDE,Simiane-la-Rotonde,Simiane-la-Rotonde +10,1954-05-30,COM,7154,0,MAZAN,Mazan,Mazan,COM,7154,0,MAZAN L ABBAYE,Mazan-l'Abbaye,Mazan-l'Abbaye 10,1954-05-30,COM,28224,0,LUTZ,Lutz,Lutz,COM,28224,0,LUTZ EN DUNOIS,Lutz-en-Dunois,Lutz-en-Dunois 10,1954-05-30,COM,74070,0,CHENS,Chens,Chens,COM,74070,0,CHENS SUR LEMAN,Chens-sur-Léman,Chens-sur-Léman 10,1954-05-14,COM,17277,0,PIN SAINT DENIS,Pin-Saint-Denis,Pin-Saint-Denis,COM,17277,0,SAINT DENIS DU PIN,Saint-Denis-du-Pin,Saint-Denis-du-Pin @@ -13618,33 +13418,33 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1954-01-29,COM,38186,0,GRESSE,Gresse,Gresse,COM,38186,0,GRESSE EN VERCORS,Gresse-en-Vercors,Gresse-en-Vercors 31,1954-01-16,COM,71076,0,CHALON SUR SAONE,Chalon-sur-Saône,Chalon-sur-Saône,COM,71076,0,CHALON SUR SAONE,Chalon-sur-Saône,Chalon-sur-Saône 31,1954-01-16,COM,71429,0,SAINT JEAN DES VIGNES,Saint-Jean-des-Vignes,Saint-Jean-des-Vignes,COM,71076,0,CHALON SUR SAONE,Chalon-sur-Saône,Chalon-sur-Saône -21,1954-01-15,COM,60586,0,SAINT MARTIN LE NOEUD,Saint-Martin-le-Nœud,Saint-Martin-le-Nœud,COM,60586,0,SAINT MARTIN LE NOEUD,Saint-Martin-le-Nœud,Saint-Martin-le-Nœud -21,1954-01-15,COM,60586,0,SAINT MARTIN LE NOEUD,Saint-Martin-le-Nœud,Saint-Martin-le-Nœud,COM,60703,6,MARAIS,Marais,Aux Marais -21,1954-01-15,COM,85294,3,TRANCHE SUR MER,Tranche-sur-Mer,La Tranche-sur-Mer,COM,85294,3,TRANCHE SUR MER,Tranche-sur-Mer,La Tranche-sur-Mer -21,1954-01-15,COM,85294,3,TRANCHE SUR MER,Tranche-sur-Mer,La Tranche-sur-Mer,COM,85307,3,FAUTE SUR MER,Faute-sur-Mer,La Faute-sur-Mer -21,1954-01-01,COM,57550,0,PORCELETTE,Porcelette,Porcelette,COM,57765,0,DIESEN,Diesen,Diesen -21,1954-01-01,COM,57550,0,PORCELETTE,Porcelette,Porcelette,COM,57550,0,PORCELETTE,Porcelette,Porcelette +20,1954-01-15,COM,60586,0,SAINT MARTIN LE NOUD,Saint-Martin-le-Nœud,Saint-Martin-le-Nœud,COM,60586,0,SAINT MARTIN LE NOUD,Saint-Martin-le-Nœud,Saint-Martin-le-Nœud +20,1954-01-15,COM,60586,0,SAINT MARTIN LE NOUD,Saint-Martin-le-Nœud,Saint-Martin-le-Nœud,COM,60703,6,MARAIS,Marais,Aux Marais +20,1954-01-15,COM,85294,3,TRANCHE SUR MER,Tranche-sur-Mer,La Tranche-sur-Mer,COM,85294,3,TRANCHE SUR MER,Tranche-sur-Mer,La Tranche-sur-Mer +20,1954-01-15,COM,85294,3,TRANCHE SUR MER,Tranche-sur-Mer,La Tranche-sur-Mer,COM,85307,3,FAUTE SUR MER,Faute-sur-Mer,La Faute-sur-Mer +20,1954-01-01,COM,57550,0,PORCELETTE,Porcelette,Porcelette,COM,57550,0,PORCELETTE,Porcelette,Porcelette +20,1954-01-01,COM,57550,0,PORCELETTE,Porcelette,Porcelette,COM,57765,0,DIESEN,Diesen,Diesen 10,1953-12-31,COM,63247,0,MUROLS,Murols,Murols,COM,63247,0,MUROL,Murol,Murol 10,1953-12-31,COM,84014,0,BEAUMONT,Beaumont,Beaumont,COM,84014,0,BEAUMONT DE PERTUIS,Beaumont-de-Pertuis,Beaumont-de-Pertuis 10,1953-12-05,COM,33108,0,CASTILLON ET CAPITOURLAN,Castillon-et-Capitourlan,Castillon-et-Capitourlan,COM,33108,0,CASTILLON LA BATAILLE,Castillon-la-Bataille,Castillon-la-Bataille 10,1953-12-05,COM,84015,0,BEAUMONT,Beaumont,Beaumont,COM,84015,0,BEAUMONT DU VENTOUX,Beaumont-du-Ventoux,Beaumont-du-Ventoux 10,1953-12-05,COM,84034,0,CAUMONT,Caumont,Caumont,COM,84034,0,CAUMONT SUR DURANCE,Caumont-sur-Durance,Caumont-sur-Durance 10,1953-12-05,COM,84060,0,LAGARDE,Lagarde,Lagarde,COM,84060,0,LAGARDE D APT,Lagarde-d'Apt,Lagarde-d'Apt -10,1953-10-22,COM,04004,1,ALLEMAGNE,Allemagne,Allemagne,COM,04004,1,ALLEMAGNE EN PROVENCE,Allemagne-en-Provence,Allemagne-en-Provence +10,1953-10-22,COM,4004,1,ALLEMAGNE,Allemagne,Allemagne,COM,4004,1,ALLEMAGNE EN PROVENCE,Allemagne-en-Provence,Allemagne-en-Provence 10,1953-10-22,COM,11266,0,NOUVELLE,Nouvelle,Nouvelle,COM,11266,0,PORT LA NOUVELLE,Port-la-Nouvelle,Port-la-Nouvelle 10,1953-10-22,COM,76124,0,BOSCHYONS,Boschyons,Boschyons,COM,76124,0,BOSC HYONS,Bosc-Hyons,Bosc-Hyons -10,1953-08-13,COM,05171,0,THEUS,Theus,Theus,COM,05171,0,THEUS,Théus,Théus +10,1953-08-13,COM,5171,0,THEUS,Theus,Theus,COM,5171,0,THEUS,Théus,Théus 10,1953-08-13,COM,24584,0,VILLEFRANCHE DE LONGCHAPT,Villefranche-de-Longchapt,Villefranche-de-Longchapt,COM,24584,0,VILLEFRANCHE DE LONCHAT,Villefranche-de-Lonchat,Villefranche-de-Lonchat 10,1953-08-13,COM,49223,0,MURS,Mûrs,Mûrs,COM,49223,0,MURS ERIGNE,Mûrs-Erigné,Mûrs-Erigné 10,1953-08-13,COM,87131,0,SAILLAT,Saillat,Saillat,COM,87131,0,SAILLAT SUR VIENNE,Saillat-sur-Vienne,Saillat-sur-Vienne -10,1953-08-07,COM,05035,0,CHATEAU NEUF D OZE,Château-Neuf-d'Oze,Château-Neuf-d'Oze,COM,05035,0,CHATEAUNEUF D OZE,Châteauneuf-d'Oze,Châteauneuf-d'Oze +10,1953-08-07,COM,5035,0,CHATEAU NEUF D OZE,Château-Neuf-d'Oze,Château-Neuf-d'Oze,COM,5035,0,CHATEAUNEUF D OZE,Châteauneuf-d'Oze,Châteauneuf-d'Oze 10,1953-08-07,COM,41080,0,FAVEROLLES,Faverolles,Faverolles,COM,41080,0,FAVEROLLES SUR CHER,Faverolles-sur-Cher,Faverolles-sur-Cher 10,1953-07-19,COM,27658,2,TREMBLAY,Tremblay,Le Tremblay,COM,27658,2,TREMBLAY OMONVILLE,Tremblay-Omonville,Le Tremblay-Omonville 10,1953-07-19,COM,49364,0,VAUDELENAY,Vaudelenay,Vaudelenay,COM,49364,0,VAUDELNAY,Vaudelnay,Vaudelnay 10,1953-07-19,COM,67459,0,SCHWEINHEIM,Schweinheim,Schweinheim,COM,67459,0,SCHWENHEIM,Schwenheim,Schwenheim 10,1953-07-19,COM,84110,0,SAINT LEGER D ORANGE,Saint-Léger-d'Orange,Saint-Léger-d'Orange,COM,84110,0,SAINT LEGER DU VENTOUX,Saint-Léger-du-Ventoux,Saint-Léger-du-Ventoux -21,1953-07-05,COM,35224,0,PLERGUER,Plerguer,Plerguer,COM,35362,2,TRONCHET,Tronchet,Le Tronchet -21,1953-07-05,COM,35224,0,PLERGUER,Plerguer,Plerguer,COM,35224,0,PLERGUER,Plerguer,Plerguer +20,1953-07-05,COM,35224,0,PLERGUER,Plerguer,Plerguer,COM,35224,0,PLERGUER,Plerguer,Plerguer +20,1953-07-05,COM,35224,0,PLERGUER,Plerguer,Plerguer,COM,35362,2,TRONCHET,Tronchet,Le Tronchet 10,1953-05-20,COM,73051,2,BOURGET,Bourget,Le Bourget,COM,73051,2,BOURGET DU LAC,Bourget-du-Lac,Le Bourget-du-Lac 10,1953-05-20,COM,73261,0,SAINT MICHEL,Saint-Michel,Saint-Michel,COM,73261,0,SAINT MICHEL DE MAURIENNE,Saint-Michel-de-Maurienne,Saint-Michel-de-Maurienne 10,1953-05-07,COM,78361,0,MANTES GASSICOURT,Mantes-Gassicourt,Mantes-Gassicourt,COM,78361,0,MANTES LA JOLIE,Mantes-la-Jolie,Mantes-la-Jolie @@ -13666,59 +13466,59 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1953-03-12,COM,66093,0,LAROQUE,Laroque,Laroque,COM,66093,0,LAROQUE DES ALBERES,Laroque-des-Albères,Laroque-des-Albères 10,1953-03-12,COM,66187,0,SAINT PAUL,Saint-Paul,Saint-Paul,COM,66187,0,SAINT PAUL DE FENOUILLET,Saint-Paul-de-Fenouillet,Saint-Paul-de-Fenouillet 10,1953-03-12,COM,66222,0,VERNET,Vernet,Vernet,COM,66222,0,VERNET LES BAINS,Vernet-les-Bains,Vernet-les-Bains -21,1953-03-07,COM,15179,0,SAINT CIRGUES DE MALBERT,Saint-Cirgues-de-Malbert,Saint-Cirgues-de-Malbert,COM,15269,0,BESSE,Besse,Besse -21,1953-03-07,COM,15179,0,SAINT CIRGUES DE MALBERT,Saint-Cirgues-de-Malbert,Saint-Cirgues-de-Malbert,COM,15179,0,SAINT CIRGUES DE MALBERT,Saint-Cirgues-de-Malbert,Saint-Cirgues-de-Malbert +20,1953-03-07,COM,15179,0,SAINT CIRGUES DE MALBERT,Saint-Cirgues-de-Malbert,Saint-Cirgues-de-Malbert,COM,15179,0,SAINT CIRGUES DE MALBERT,Saint-Cirgues-de-Malbert,Saint-Cirgues-de-Malbert +20,1953-03-07,COM,15179,0,SAINT CIRGUES DE MALBERT,Saint-Cirgues-de-Malbert,Saint-Cirgues-de-Malbert,COM,15269,0,BESSE,Besse,Besse 10,1953-03-07,COM,76606,0,SAINTE MARGUERITE LES AUMALE,Sainte-Marguerite-lès-Aumale,Sainte-Marguerite-lès-Aumale,COM,76606,0,MORIENNE,Morienne,Morienne 31,1953-03-01,COM,68047,0,BOURGFELDEN,Bourgfelden,Bourgfelden,COM,68297,0,SAINT LOUIS,Saint-Louis,Saint-Louis 31,1953-03-01,COM,68297,0,SAINT LOUIS,Saint-Louis,Saint-Louis,COM,68297,0,SAINT LOUIS,Saint-Louis,Saint-Louis -21,1953-02-12,COM,31059,0,BELBEZE ESCOULIS,Belbèze-Escoulis,Belbèze-Escoulis,COM,31591,1,ESCOULIS,Escoulis,Escoulis -21,1953-02-12,COM,31059,0,BELBEZE ESCOULIS,Belbèze-Escoulis,Belbèze-Escoulis,COM,31059,0,BELBEZE,Belbèze,Belbèze +20,1953-02-12,COM,31059,0,BELBEZE ESCOULIS,Belbèze-Escoulis,Belbèze-Escoulis,COM,31059,0,BELBEZE,Belbèze,Belbèze +20,1953-02-12,COM,31059,0,BELBEZE ESCOULIS,Belbèze-Escoulis,Belbèze-Escoulis,COM,31591,1,ESCOULIS,Escoulis,Escoulis 10,1953-01-31,COM,40164,0,LUGAUT RETJONS,Lugaut-Retjons,Lugaut-Retjons,COM,40164,0,RETJONS,Retjons,Retjons 10,1953-01-31,COM,65307,0,MAZERES,Mazères,Mazères,COM,65307,0,MAZERES DE NESTE,Mazères-de-Neste,Mazères-de-Neste 10,1953-01-31,COM,71514,0,SENS,Sens,Sens,COM,71514,0,SENS SUR SEILLE,Sens-sur-Seille,Sens-sur-Seille -21,1953-01-01,COM,97310,0,ROURA,Roura,Roura,COM,97310,0,ROURA,Roura,Roura -21,1953-01-01,COM,97310,0,ROURA,Roura,Roura,COM,97359,3,COMTE (CHEF LIEU DEGRAD EDMOND),Comté (chef-lieu Dégrad-Edmond),La Comté (chef-lieu Dégrad-Edmond) -21,1953-01-01,COM,97312,0,SINNAMARY,Sinnamary,Sinnamary,COM,97312,0,SINNAMARY,Sinnamary,Sinnamary -21,1953-01-01,COM,97312,0,SINNAMARY,Sinnamary,Sinnamary,COM,97358,0,CENTRE (CHEF LIEU SINNAMARY),Centre (chef-lieu Sinnamary),Centre (chef-lieu Sinnamary) +20,1953-01-01,COM,97310,0,ROURA,Roura,Roura,COM,97310,0,ROURA,Roura,Roura +20,1953-01-01,COM,97310,0,ROURA,Roura,Roura,COM,97359,3,COMTE (CHEF LIEU DEGRAD EDMOND),Comté (chef-lieu Dégrad-Edmond),La Comté (chef-lieu Dégrad-Edmond) +20,1953-01-01,COM,97312,0,SINNAMARY,Sinnamary,Sinnamary,COM,97312,0,SINNAMARY,Sinnamary,Sinnamary +20,1953-01-01,COM,97312,0,SINNAMARY,Sinnamary,Sinnamary,COM,97358,0,CENTRE (CHEF LIEU SINNAMARY),Centre (chef-lieu Sinnamary),Centre (chef-lieu Sinnamary) 10,1953-01-01,COM,97351,0,CENTRE APPROUAGUE,Centre-Approuague,Centre-Approuague,COM,97351,1,APPROUAGUE (CHEF LIEU REGINA),Approuague (chef-lieu Régina),Approuague (chef-lieu Régina) 10,1953-01-01,COM,97352,1,HAUT APPROUAGUE,Haut-Approuague,Haut-Approuague,COM,97352,1,HAUTE MANA ET HAUT APPROUAGUE (CHEF LIEU SAUL),Haute-Mana et Haut-Approuague (chef-lieu Saül),Haute-Mana et Haut-Approuague (chef-lieu Saül) -21,1953-01-01,COM,97353,1,HAUT MARONI,Haut-Maroni,Haut-Maroni,COM,97353,0,MARIPASOULA,Maripasoula,Maripasoula -21,1953-01-01,COM,97353,1,HAUT MARONI,Haut-Maroni,Haut-Maroni,COM,97357,0,GRAND SANTI,Grand-Santi,Grand-Santi +20,1953-01-01,COM,97353,1,HAUT MARONI,Haut-Maroni,Haut-Maroni,COM,97353,0,MARIPASOULA,Maripasoula,Maripasoula +20,1953-01-01,COM,97353,1,HAUT MARONI,Haut-Maroni,Haut-Maroni,COM,97357,0,GRAND SANTI,Grand-Santi,Grand-Santi 10,1953-01-01,COM,97354,1,HAUTE MANA,Haute-Mana,Haute-Mana,COM,97354,0,SAMSON (CHEF LIEU DEGRAD SAMSON),Samson (chef-lieu Dégrad-Samson),Samson (chef-lieu Dégrad-Samson) 10,1953-01-01,COM,97355,0,MANA,Mana,Mana,COM,97355,0,MOYENNE MANA (CHEF LIEU MANA),Moyenne-Mana (chef-lieu Mana),Moyenne-Mana (chef-lieu Mana) -10,1953-01-01,COM,97356,1,OYAPOC,Oyapoc,Oyapoc,COM,97356,0,OYAPOC (CHEF LIEU CAMOPI),Oyapoc (chef-lieu Camopi),Oyapoc (chef-lieu Camopi) +10,1953-01-01,COM,97356,1,OYAPOC,Oyapoc,Oyapoc,COM,97356,1,OYAPOC (CHEF LIEU CAMOPI),Oyapoc (chef-lieu Camopi),Oyapoc (chef-lieu Camopi) 10,1952-12-31,COM,23075,0,DUN LE PALLETEAU,Dun-le-Palleteau,Dun-le-Palleteau,COM,23075,0,DUN LE PALESTEL,Dun-le-Palestel,Dun-le-Palestel 10,1952-12-07,COM,73303,1,UGINES,Ugines,Ugines,COM,73303,1,UGINE,Ugine,Ugine 10,1952-12-07,COM,78197,0,DEUIL,Deuil,Deuil,COM,78197,0,DEUIL LA BARRE,Deuil-la-Barre,Deuil-la-Barre -21,1952-12-03,COM,12253,0,SALLES CURAN,Salles-Curan,Salles-Curan,COM,12307,0,CURAN,Curan,Curan -21,1952-12-03,COM,12253,0,SALLES CURAN,Salles-Curan,Salles-Curan,COM,12253,0,SALLES CURAN,Salles-Curan,Salles-Curan +20,1952-12-03,COM,12253,0,SALLES CURAN,Salles-Curan,Salles-Curan,COM,12253,0,SALLES CURAN,Salles-Curan,Salles-Curan +20,1952-12-03,COM,12253,0,SALLES CURAN,Salles-Curan,Salles-Curan,COM,12307,0,CURAN,Curan,Curan 10,1952-11-14,COM,54084,0,BONVILLERS MONT,Bonvillers-Mont,Bonvillers-Mont,COM,54084,0,MONT BONVILLERS,Mont-Bonvillers,Mont-Bonvillers 10,1952-10-23,COM,21061,0,BELLENOD SOUS ORIGNY,Bellenod-sous-Origny,Bellenod-sous-Origny,COM,21061,0,BELLENOD SUR SEINE,Bellenod-sur-Seine,Bellenod-sur-Seine 10,1952-10-23,COM,41155,0,MUIDES,Muides,Muides,COM,41155,0,MUIDES SUR LOIRE,Muides-sur-Loire,Muides-sur-Loire 10,1952-10-23,COM,71205,0,FRANGY,Frangy,Frangy,COM,71205,0,FRANGY EN BRESSE,Frangy-en-Bresse,Frangy-en-Bresse 10,1952-10-23,COM,72284,0,SAINT GERMAIN DE LA COUDRE,Saint-Germain-de-la-Coudre,Saint-Germain-de-la-Coudre,COM,72284,0,SAINT GERMAIN SUR SARTHE,Saint-Germain-sur-Sarthe,Saint-Germain-sur-Sarthe 10,1952-10-23,COM,78615,0,THIVERVAL,Thiverval,Thiverval,COM,78615,0,THIVERVAL GRIGNON,Thiverval-Grignon,Thiverval-Grignon -10,1952-10-17,COM,51002,0,ABLOIS,Ablois,Ablois,COM,51002,0,SAINT MARTIN D ABLOIS,Saint-Martin-d'Ablois,Saint-Martin-d'Ablois +10,1952-10-17,COM,51002,1,ABLOIS,Ablois,Ablois,COM,51002,0,SAINT MARTIN D ABLOIS,Saint-Martin-d'Ablois,Saint-Martin-d'Ablois 10,1952-07-06,COM,24022,0,BADEFOLS DE CADOUIN,Badefols-de-Cadouin,Badefols-de-Cadouin,COM,24022,0,BADEFOLS SUR DORDOGNE,Badefols-sur-Dordogne,Badefols-sur-Dordogne 10,1952-07-06,COM,58086,0,COSNE,Cosne,Cosne,COM,58086,0,COSNE SUR LOIRE,Cosne-sur-Loire,Cosne-sur-Loire 10,1952-06-18,COM,38129,0,CORRENCON,Corrençon,Corrençon,COM,38129,0,CORRENCON EN VERCORS,Corrençon-en-Vercors,Corrençon-en-Vercors -21,1952-06-18,COM,71569,0,VERIZET FLEURVILLE,Vérizet-Fleurville,Vérizet-Fleurville,COM,71591,0,FLEURVILLE,Fleurville,Fleurville -21,1952-06-18,COM,71569,0,VERIZET FLEURVILLE,Vérizet-Fleurville,Vérizet-Fleurville,COM,71569,0,VERIZET,Vérizet,Vérizet +20,1952-06-18,COM,71569,0,VERIZET FLEURVILLE,Vérizet-Fleurville,Vérizet-Fleurville,COM,71569,0,VERIZET,Vérizet,Vérizet +20,1952-06-18,COM,71569,0,VERIZET FLEURVILLE,Vérizet-Fleurville,Vérizet-Fleurville,COM,71591,0,FLEURVILLE,Fleurville,Fleurville 31,1952-06-05,COM,14118,0,CAEN,Caen,Caen,COM,14118,0,CAEN,Caen,Caen 31,1952-06-05,COM,14736,0,VENOIX,Venoix,Venoix,COM,14118,0,CAEN,Caen,Caen 10,1952-05-16,COM,17418,0,SALIGNAC DE PONS,Salignac-de-Pons,Salignac-de-Pons,COM,17418,0,SALIGNAC SUR CHARENTE,Salignac-sur-Charente,Salignac-sur-Charente 31,1952-03-20,COM,52241,1,HOERICOURT,Hoëricourt,Hoëricourt,COM,52448,0,SAINT DIZIER,Saint-Dizier,Saint-Dizier 31,1952-03-20,COM,52448,0,SAINT DIZIER,Saint-Dizier,Saint-Dizier,COM,52448,0,SAINT DIZIER,Saint-Dizier,Saint-Dizier 10,1952-02-21,COM,67376,0,PISDORF,Pisdorf,Pisdorf,COM,67376,0,BISCHTROFF SUR SARRE,Bischtroff-sur-Sarre,Bischtroff-sur-Sarre -21,1951-12-12,COM,17337,0,SAINT GEORGES,Saint-Georges,Saint-Georges,COM,17486,3,BREE LES BAINS,Brée-les-Bains,La Brée-les-Bains -21,1951-12-12,COM,17337,0,SAINT GEORGES,Saint-Georges,Saint-Georges,COM,17337,0,SAINT GEORGES,Saint-Georges,Saint-Georges +20,1951-12-12,COM,17337,0,SAINT GEORGES,Saint-Georges,Saint-Georges,COM,17337,0,SAINT GEORGES,Saint-Georges,Saint-Georges +20,1951-12-12,COM,17337,0,SAINT GEORGES,Saint-Georges,Saint-Georges,COM,17486,3,BREE LES BAINS,Brée-les-Bains,La Brée-les-Bains 31,1951-08-10,COM,78174,0,CORBEIL,Corbeil,Corbeil,COM,78174,0,CORBEIL ESSONNES,Corbeil-Essonnes,Corbeil-Essonnes 31,1951-08-10,COM,78221,1,ESSONNES,Essonnes,Essonnes,COM,78174,0,CORBEIL ESSONNES,Corbeil-Essonnes,Corbeil-Essonnes 10,1951-07-19,COM,78347,0,LONGPONT,Longpont,Longpont,COM,78347,0,LONGPONT SUR ORGE,Longpont-sur-Orge,Longpont-sur-Orge 30,1951-07-09,COM,60509,0,PONT SAINTE MAXENCE,Pont-Sainte-Maxence,Pont-Sainte-Maxence,COM,60509,0,PONT SAINTE MAXENCE,Pont-Sainte-Maxence,Pont-Sainte-Maxence 30,1951-07-09,COM,60587,0,SAINT MARTIN LONGUEAU,Saint-Martin-Longueau,Saint-Martin-Longueau,COM,60587,0,SAINT MARTIN LONGUEAU,Saint-Martin-Longueau,Saint-Martin-Longueau -30,1951-07-09,COM,60606,0,SARRON,Sarron,Sarron,COM,60587,0,SAINT MARTIN LONGUEAU,Saint-Martin-Longueau,Saint-Martin-Longueau 30,1951-07-09,COM,60606,0,SARRON,Sarron,Sarron,COM,60509,0,PONT SAINTE MAXENCE,Pont-Sainte-Maxence,Pont-Sainte-Maxence +30,1951-07-09,COM,60606,0,SARRON,Sarron,Sarron,COM,60587,0,SAINT MARTIN LONGUEAU,Saint-Martin-Longueau,Saint-Martin-Longueau 10,1951-05-31,COM,51028,1,AVENAY,Avenay,Avenay,COM,51028,1,AVENAY VAL D OR,Avenay-Val-d'Or,Avenay-Val-d'Or 10,1951-05-23,COM,11071,0,CASCASTEL,Cascastel,Cascastel,COM,11071,0,CASCASTEL DES CORBIERES,Cascastel-des-Corbières,Cascastel-des-Corbières 10,1951-05-23,COM,73143,0,LANSLEBOURG,Lanslebourg,Lanslebourg,COM,73143,0,LANSLEBOURG MONT CENIS,Lanslebourg-Mont-Cenis,Lanslebourg-Mont-Cenis @@ -13726,26 +13526,26 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1951-03-24,COM,27424,0,NAGEL,Nagel,Nagel,COM,27424,0,NAGEL SEEZ MESNIL,Nagel-Séez-Mesnil,Nagel-Séez-Mesnil 31,1951-03-24,COM,27619,0,SEEZ MESNIL,Séez-Mesnil,Séez-Mesnil,COM,27424,0,NAGEL SEEZ MESNIL,Nagel-Séez-Mesnil,Nagel-Séez-Mesnil 10,1951-02-18,COM,42077,0,CROIZET,Croizet,Croizet,COM,42077,0,CROIZET SUR GAND,Croizet-sur-Gand,Croizet-sur-Gand -31,1951-01-26,COM,04103,0,LEVENS,Levens,Levens,COM,04107,0,MAJASTRES,Majastres,Majastres -31,1951-01-26,COM,04107,0,MAJASTRES,Majastres,Majastres,COM,04107,0,MAJASTRES,Majastres,Majastres -21,1951-01-03,COM,46188,0,MAXOU,Maxou,Maxou,COM,46340,0,SAINT PIERRE LAFEUILLE,Saint-Pierre-Lafeuille,Saint-Pierre-Lafeuille -21,1951-01-03,COM,46188,0,MAXOU,Maxou,Maxou,COM,46188,0,MAXOU,Maxou,Maxou +31,1951-01-26,COM,4103,0,LEVENS,Levens,Levens,COM,4107,0,MAJASTRES,Majastres,Majastres +31,1951-01-26,COM,4107,0,MAJASTRES,Majastres,Majastres,COM,4107,0,MAJASTRES,Majastres,Majastres +20,1951-01-03,COM,46188,0,MAXOU,Maxou,Maxou,COM,46188,0,MAXOU,Maxou,Maxou +20,1951-01-03,COM,46188,0,MAXOU,Maxou,Maxou,COM,46340,0,SAINT PIERRE LAFEUILLE,Saint-Pierre-Lafeuille,Saint-Pierre-Lafeuille 10,1950-12-27,COM,19167,0,PORT DIEU,Port-Dieu,Port-Dieu,COM,19167,0,CONFOLENT PORT DIEU,Confolent-Port-Dieu,Confolent-Port-Dieu -21,1950-11-11,COM,39374,0,MOUTAINE ARESCHES,Moutaine-Aresches,Moutaine-Aresches,COM,39374,0,MOUTAINE,Moutaine,Moutaine -21,1950-11-11,COM,39374,0,MOUTAINE ARESCHES,Moutaine-Aresches,Moutaine-Aresches,COM,39586,1,ARESCHES,Aresches,Aresches +20,1950-11-11,COM,39374,0,MOUTAINE ARESCHES,Moutaine-Aresches,Moutaine-Aresches,COM,39374,0,MOUTAINE,Moutaine,Moutaine +20,1950-11-11,COM,39374,0,MOUTAINE ARESCHES,Moutaine-Aresches,Moutaine-Aresches,COM,39586,1,ARESCHES,Aresches,Aresches 10,1950-10-25,COM,24221,0,LADOSSE,Ladosse,Ladosse,COM,24221,0,RUDEAU LADOSSE,Rudeau-Ladosse,Rudeau-Ladosse 10,1950-10-25,COM,59316,1,HOUPLIN,Houplin,Houplin,COM,59316,1,HOUPLIN ANCOISNE,Houplin-Ancoisne,Houplin-Ancoisne 10,1950-10-25,COM,76544,0,ROUVRAY,Rouvray,Rouvray,COM,76544,0,ROUVRAY CATILLON,Rouvray-Catillon,Rouvray-Catillon 10,1950-10-25,COM,77215,0,GRETZ,Gretz,Gretz,COM,77215,0,GRETZ ARMAINVILLIERS,Gretz-Armainvilliers,Gretz-Armainvilliers 10,1950-10-22,COM,77428,0,SAINT OUEN,Saint-Ouen,Saint-Ouen,COM,77428,0,SAINT OUEN EN BRIE,Saint-Ouen-en-Brie,Saint-Ouen-en-Brie -21,1950-10-11,COM,44163,0,SAINT HERBLON,Saint-Herblon,Saint-Herblon,COM,44222,3,ROCHE BLANCHE,Roche-Blanche,La Roche-Blanche -21,1950-10-11,COM,44163,0,SAINT HERBLON,Saint-Herblon,Saint-Herblon,COM,44163,0,SAINT HERBLON,Saint-Herblon,Saint-Herblon +20,1950-10-11,COM,44163,0,SAINT HERBLON,Saint-Herblon,Saint-Herblon,COM,44163,0,SAINT HERBLON,Saint-Herblon,Saint-Herblon +20,1950-10-11,COM,44163,0,SAINT HERBLON,Saint-Herblon,Saint-Herblon,COM,44222,3,ROCHE BLANCHE,Roche-Blanche,La Roche-Blanche 10,1950-08-31,COM,39283,0,LAVANCIA,Lavancia,Lavancia,COM,39283,0,LAVANCIA EPERCY,Lavancia-Epercy,Lavancia-Epercy 10,1950-08-28,COM,34183,0,NISSAN,Nissan,Nissan,COM,34183,0,NISSAN LEZ ENSERUNE,Nissan-lez-Enserune,Nissan-lez-Enserune 10,1950-08-28,COM,60490,0,PIERREFITTE,Pierrefitte,Pierrefitte,COM,60490,0,PIERREFITTE EN BEAUVAISIS,Pierrefitte-en-Beauvaisis,Pierrefitte-en-Beauvaisis 10,1950-08-28,COM,78042,0,BAILLET,Baillet,Baillet,COM,78042,0,BAILLET EN FRANCE,Baillet-en-France,Baillet-en-France -21,1950-08-26,COM,97205,0,CASE PILOTE,Case-Pilote,Case-Pilote,COM,97234,0,BELLEFONTAINE,Bellefontaine,Bellefontaine -21,1950-08-26,COM,97205,0,CASE PILOTE,Case-Pilote,Case-Pilote,COM,97205,0,CASE PILOTE,Case-Pilote,Case-Pilote +20,1950-08-26,COM,97205,0,CASE PILOTE,Case-Pilote,Case-Pilote,COM,97205,0,CASE PILOTE,Case-Pilote,Case-Pilote +20,1950-08-26,COM,97205,0,CASE PILOTE,Case-Pilote,Case-Pilote,COM,97234,0,BELLEFONTAINE,Bellefontaine,Bellefontaine 31,1950-08-13,COM,32006,1,ARCAMONT,Arcamont,Arcamont,COM,32348,0,ROQUELAURE,Roquelaure,Roquelaure 31,1950-08-13,COM,32348,0,ROQUELAURE,Roquelaure,Roquelaure,COM,32348,0,ROQUELAURE,Roquelaure,Roquelaure 10,1950-08-13,COM,57129,0,CHARLY,Charly,Charly,COM,57129,0,CHARLY ORADOUR,Charly-Oradour,Charly-Oradour @@ -13754,13 +13554,13 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1950-06-17,COM,51297,0,HURLUS,Hurlus,Hurlus,COM,51659,0,WARGEMOULIN HURLUS,Wargemoulin-Hurlus,Wargemoulin-Hurlus 31,1950-06-17,COM,51366,2,MESNIL LES HURLUS,Mesnil-lès-Hurlus,Le Mesnil-lès-Hurlus,COM,51368,0,MINAUCOURT LE MESNIL LES HURLUS,Minaucourt-le-Mesnil-lès-Hurlus,Minaucourt-le-Mesnil-lès-Hurlus 31,1950-06-17,COM,51368,0,MINAUCOURT,Minaucourt,Minaucourt,COM,51368,0,MINAUCOURT LE MESNIL LES HURLUS,Minaucourt-le-Mesnil-lès-Hurlus,Minaucourt-le-Mesnil-lès-Hurlus -30,1950-06-17,COM,51385,0,MORONVILLIERS,Moronvilliers,Moronvilliers,COM,51503,0,SAINT MARTIN L HEUREUX,Saint-Martin-l'Heureux,Saint-Martin-l'Heureux -30,1950-06-17,COM,51385,0,MORONVILLIERS,Moronvilliers,Moronvilliers,COM,51487,0,SAINT HILAIRE LE PETIT,Saint-Hilaire-le-Petit,Saint-Hilaire-le-Petit 30,1950-06-17,COM,51385,0,MORONVILLIERS,Moronvilliers,Moronvilliers,COM,51440,0,PONTFAVERGER MORONVILLIERS,Pontfaverger-Moronvilliers,Pontfaverger-Moronvilliers +30,1950-06-17,COM,51385,0,MORONVILLIERS,Moronvilliers,Moronvilliers,COM,51487,0,SAINT HILAIRE LE PETIT,Saint-Hilaire-le-Petit,Saint-Hilaire-le-Petit +30,1950-06-17,COM,51385,0,MORONVILLIERS,Moronvilliers,Moronvilliers,COM,51503,0,SAINT MARTIN L HEUREUX,Saint-Martin-l'Heureux,Saint-Martin-l'Heureux 31,1950-06-17,COM,51394,0,NAUROY,Nauroy,Nauroy,COM,51046,0,BEINE NAUROY,Beine-Nauroy,Beine-Nauroy 31,1950-06-17,COM,51427,0,PERTHES LES HURLUS,Perthes-lès-Hurlus,Perthes-lès-Hurlus,COM,51553,0,SOUAIN PERTHES LES HURLUS,Souain-Perthes-lès-Hurlus,Souain-Perthes-lès-Hurlus -30,1950-06-17,COM,51440,0,PONTFAVERGER MORONVILLIERS,Pontfaverger-Moronvilliers,Pontfaverger-Moronvilliers,COM,51440,0,PONTFAVERGER MORONVILLIERS,Pontfaverger-Moronvilliers,Pontfaverger-Moronvilliers 10,1950-06-17,COM,51440,0,PONTFAVERGER,Pontfaverger,Pontfaverger,COM,51440,0,PONTFAVERGER MORONVILLIERS,Pontfaverger-Moronvilliers,Pontfaverger-Moronvilliers +30,1950-06-17,COM,51440,0,PONTFAVERGER MORONVILLIERS,Pontfaverger-Moronvilliers,Pontfaverger-Moronvilliers,COM,51440,0,PONTFAVERGER MORONVILLIERS,Pontfaverger-Moronvilliers,Pontfaverger-Moronvilliers 31,1950-06-17,COM,51462,0,RIPONT,Ripont,Ripont,COM,51470,0,ROUVROY RIPONT,Rouvroy-Ripont,Rouvroy-Ripont 31,1950-06-17,COM,51470,0,ROUVROY,Rouvroy,Rouvroy,COM,51470,0,ROUVROY RIPONT,Rouvroy-Ripont,Rouvroy-Ripont 30,1950-06-17,COM,51487,0,SAINT HILAIRE LE PETIT,Saint-Hilaire-le-Petit,Saint-Hilaire-le-Petit,COM,51487,0,SAINT HILAIRE LE PETIT,Saint-Hilaire-le-Petit,Saint-Hilaire-le-Petit @@ -13769,36 +13569,37 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1950-06-17,COM,51553,0,SOUAIN,Souain,Souain,COM,51553,0,SOUAIN PERTHES LES HURLUS,Souain-Perthes-lès-Hurlus,Souain-Perthes-lès-Hurlus 31,1950-06-17,COM,51561,0,TAHURE,Tahure,Tahure,COM,51544,0,SOMMEPY TAHURE,Sommepy-Tahure,Sommepy-Tahure 31,1950-06-17,COM,51659,0,WARGEMOULIN,Wargemoulin,Wargemoulin,COM,51659,0,WARGEMOULIN HURLUS,Wargemoulin-Hurlus,Wargemoulin-Hurlus -21,1950-05-12,COM,13114,0,VENTABREN,Ventabren,Ventabren,COM,13114,0,VENTABREN,Ventabren,Ventabren -21,1950-05-12,COM,13114,0,VENTABREN,Ventabren,Ventabren,COM,13118,0,COUDOUX,Coudoux,Coudoux -21,1950-05-12,COM,81063,0,CASTELNAU DE LEVIS,Castelnau-de-Lévis,Castelnau-de-Lévis,COM,81326,0,SAINTE CROIX,Sainte-Croix,Sainte-Croix -21,1950-05-12,COM,81063,0,CASTELNAU DE LEVIS,Castelnau-de-Lévis,Castelnau-de-Lévis,COM,81063,0,CASTELNAU DE LEVIS,Castelnau-de-Lévis,Castelnau-de-Lévis -21,1950-04-24,COM,83126,3,SEYNE SUR MER,Seyne-sur-Mer,La Seyne-sur-Mer,COM,83126,3,SEYNE SUR MER,Seyne-sur-Mer,La Seyne-sur-Mer -21,1950-04-24,COM,83126,3,SEYNE SUR MER,Seyne-sur-Mer,La Seyne-sur-Mer,COM,83153,0,SAINT MANDRIER,Saint-Mandrier,Saint-Mandrier +20,1950-05-12,COM,13114,0,VENTABREN,Ventabren,Ventabren,COM,13114,0,VENTABREN,Ventabren,Ventabren +20,1950-05-12,COM,13114,0,VENTABREN,Ventabren,Ventabren,COM,13118,0,COUDOUX,Coudoux,Coudoux +20,1950-05-12,COM,81063,0,CASTELNAU DE LEVIS,Castelnau-de-Lévis,Castelnau-de-Lévis,COM,81063,0,CASTELNAU DE LEVIS,Castelnau-de-Lévis,Castelnau-de-Lévis +20,1950-05-12,COM,81063,0,CASTELNAU DE LEVIS,Castelnau-de-Lévis,Castelnau-de-Lévis,COM,81326,0,SAINTE CROIX,Sainte-Croix,Sainte-Croix +20,1950-04-24,COM,83126,3,SEYNE SUR MER,Seyne-sur-Mer,La Seyne-sur-Mer,COM,83126,3,SEYNE SUR MER,Seyne-sur-Mer,La Seyne-sur-Mer +20,1950-04-24,COM,83126,3,SEYNE SUR MER,Seyne-sur-Mer,La Seyne-sur-Mer,COM,83153,0,SAINT MANDRIER,Saint-Mandrier,Saint-Mandrier 10,1950-04-09,COM,14353,0,LANDES,Landes,Landes,COM,14353,0,LANDES SUR AJON,Landes-sur-Ajon,Landes-sur-Ajon 10,1950-04-09,COM,33540,0,VENDAYS,Vendays,Vendays,COM,33540,0,VENDAYS MONTALIVET,Vendays-Montalivet,Vendays-Montalivet 10,1950-04-09,COM,38351,0,SAINT AGNIN,Saint-Agnin,Saint-Agnin,COM,38351,0,SAINT AGNIN SUR BION,Saint-Agnin-sur-Bion,Saint-Agnin-sur-Bion -21,1950-04-07,COM,97308,1,OYAPOC (CHEF LIEU SAINT GEORGES),Oyapoc (chef-lieu Saint-Georges),Oyapoc (chef-lieu Saint-Georges),COM,97308,1,OYAPOC (CHEF LIEU SAINT GEORGES),Oyapoc (chef-lieu Saint-Georges),Oyapoc (chef-lieu Saint-Georges) -21,1950-04-07,COM,97308,1,OYAPOC (CHEF LIEU SAINT GEORGES),Oyapoc (chef-lieu Saint-Georges),Oyapoc (chef-lieu Saint-Georges),COM,97314,1,OUANARY,Ouanary,Ouanary +20,1950-04-07,COM,97308,1,OYAPOC (CHEF LIEU SAINT GEORGES),Oyapoc (chef-lieu Saint-Georges),Oyapoc (chef-lieu Saint-Georges),COM,97308,1,OYAPOC (CHEF LIEU SAINT GEORGES),Oyapoc (chef-lieu Saint-Georges),Oyapoc (chef-lieu Saint-Georges) +20,1950-04-07,COM,97308,1,OYAPOC (CHEF LIEU SAINT GEORGES),Oyapoc (chef-lieu Saint-Georges),Oyapoc (chef-lieu Saint-Georges),COM,97314,1,OUANARY,Ouanary,Ouanary 10,1950-03-30,COM,76148,0,BURES,Bures,Bures,COM,76148,0,BURES EN BRAY,Bures-en-Bray,Bures-en-Bray 10,1950-03-22,COM,12192,0,PROHENCOUX,Prohencoux,Prohencoux,COM,12192,0,MOUNES PROHENCOUX,Mounes-Prohencoux,Mounes-Prohencoux 10,1950-03-22,COM,27045,0,BAZINCOURT,Bazincourt,Bazincourt,COM,27045,0,BAZINCOURT SUR EPTE,Bazincourt-sur-Epte,Bazincourt-sur-Epte -21,1950-02-26,COM,56176,0,PLUNERET,Pluneret,Pluneret,COM,56263,0,SAINTE ANNE D AURAY,Sainte-Anne-d'Auray,Sainte-Anne-d'Auray -21,1950-02-26,COM,56176,0,PLUNERET,Pluneret,Pluneret,COM,56176,0,PLUNERET,Pluneret,Pluneret +20,1950-02-26,COM,56176,0,PLUNERET,Pluneret,Pluneret,COM,56176,0,PLUNERET,Pluneret,Pluneret +20,1950-02-26,COM,56176,0,PLUNERET,Pluneret,Pluneret,COM,56263,0,SAINTE ANNE D AURAY,Sainte-Anne-d'Auray,Sainte-Anne-d'Auray 10,1950-02-25,COM,50603,0,TOURVILLE,Tourville,Tourville,COM,50603,0,TOURVILLE SUR SIENNE,Tourville-sur-Sienne,Tourville-sur-Sienne -21,1950-02-19,COM,26039,0,BEAUREGARD BARET,Beauregard-Baret,Beauregard-Baret,COM,26381,0,JAILLANS,Jaillans,Jaillans -21,1950-02-19,COM,26039,0,BEAUREGARD BARET,Beauregard-Baret,Beauregard-Baret,COM,26039,0,BEAUREGARD BARET,Beauregard-Baret,Beauregard-Baret +20,1950-02-19,COM,26039,0,BEAUREGARD BARET,Beauregard-Baret,Beauregard-Baret,COM,26039,0,BEAUREGARD BARET,Beauregard-Baret,Beauregard-Baret +20,1950-02-19,COM,26039,0,BEAUREGARD BARET,Beauregard-Baret,Beauregard-Baret,COM,26381,0,JAILLANS,Jaillans,Jaillans 10,1950-02-08,COM,78445,0,NERVILLE,Nerville,Nerville,COM,78445,0,NERVILLE LA FORET,Nerville-la-Forêt,Nerville-la-Forêt 10,1950-01-23,COM,39471,0,RUFFEY,Ruffey,Ruffey,COM,39471,0,RUFFEY SUR SEILLE,Ruffey-sur-Seille,Ruffey-sur-Seille 10,1950-01-18,COM,76595,0,SAINT JOUIN SUR MER,Saint-Jouin-sur-Mer,Saint-Jouin-sur-Mer,COM,76595,0,SAINT JOUIN BRUNEVAL,Saint-Jouin-Bruneval,Saint-Jouin-Bruneval 10,1950-01-09,COM,38431,0,SAINT NAZAIRE,Saint-Nazaire,Saint-Nazaire,COM,38431,0,SAINT NAZAIRE LES EYMES,Saint-Nazaire-les-Eymes,Saint-Nazaire-les-Eymes 10,1949-12-16,COM,46054,0,CANIAC,Caniac,Caniac,COM,46054,0,CANIAC DU CAUSSE,Caniac-du-Causse,Caniac-du-Causse -21,1949-12-14,COM,17411,0,SAINT TROJAN LES BAINS,Saint-Trojan-les-Bains,Saint-Trojan-les-Bains,COM,17411,0,SAINT TROJAN LES BAINS,Saint-Trojan-les-Bains,Saint-Trojan-les-Bains -21,1949-12-14,COM,17411,0,SAINT TROJAN LES BAINS,Saint-Trojan-les-Bains,Saint-Trojan-les-Bains,COM,17485,2,GRAND VILLAGE PLAGE,Grand-Village-Plage,Le Grand-Village-Plage +20,1949-12-14,COM,17411,0,SAINT TROJAN LES BAINS,Saint-Trojan-les-Bains,Saint-Trojan-les-Bains,COM,17411,0,SAINT TROJAN LES BAINS,Saint-Trojan-les-Bains,Saint-Trojan-les-Bains +20,1949-12-14,COM,17411,0,SAINT TROJAN LES BAINS,Saint-Trojan-les-Bains,Saint-Trojan-les-Bains,COM,17485,2,GRAND VILLAGE PLAGE,Grand-Village-Plage,Le Grand-Village-Plage 10,1949-12-07,COM,37042,0,CANDES,Candes,Candes,COM,37042,0,CANDES SAINT MARTIN,Candes-Saint-Martin,Candes-Saint-Martin 10,1949-12-07,COM,44012,3,BERNERIE,Bernerie,La Bernerie,COM,44012,3,BERNERIE EN RETZ,Bernerie-en-Retz,La Bernerie-en-Retz -21,1949-11-27,COM,44138,0,PUCEUL,Puceul,Puceul,COM,44138,0,PUCEUL,Puceul,Puceul -21,1949-11-27,COM,44138,0,PUCEUL,Puceul,Puceul,COM,44221,3,CHEVALLERAIS,Chevallerais,La Chevallerais +20,1949-11-27,COM,44138,0,PUCEUL,Puceul,Puceul,COM,44138,0,PUCEUL,Puceul,Puceul +20,1949-11-27,COM,44138,0,PUCEUL,Puceul,Puceul,COM,44221,3,CHEVALLERAIS,Chevallerais,La Chevallerais +20,1949-11-12,,,,,,,COM,97311,0,SAINT LAURENT DU MARONI,Saint-Laurent-du-Maroni,Saint-Laurent-du-Maroni 10,1949-10-30,COM,22213,0,PLOUER,Plouër,Plouër,COM,22213,0,PLOUER SUR RANCE,Plouër-sur-Rance,Plouër-sur-Rance 10,1949-10-30,COM,28056,0,BOUTIGNY,Boutigny,Boutigny,COM,28056,0,BOUTIGNY SUR OPTON,Boutigny-sur-Opton,Boutigny-sur-Opton 10,1949-10-30,COM,37173,0,NOUANS,Nouans,Nouans,COM,37173,0,NOUANS LES FONTAINES,Nouans-les-Fontaines,Nouans-les-Fontaines @@ -13808,98 +13609,100 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1949-09-29,COM,74085,4,CONTAMINES,Contamines,Les Contamines,COM,74085,4,CONTAMINES MONTJOIE,Contamines-Montjoie,Les Contamines-Montjoie 10,1949-09-08,COM,13098,0,SAINT MITRE,Saint-Mitre,Saint-Mitre,COM,13098,0,SAINT MITRE LES REMPARTS,Saint-Mitre-les-Remparts,Saint-Mitre-les-Remparts 10,1949-09-08,COM,67458,0,SCHWEIGHAUSEN,Schweighausen,Schweighausen,COM,67458,0,SCHWEIGHOUSE SUR MODER,Schweighouse-sur-Moder,Schweighouse-sur-Moder -20,1949-08-27,COM,29231,0,QUIMERCH,Quimerch,Quimerch,COM,29302,0,PONT DE BUIS,Pont-de-Buis,Pont-de-Buis 20,1949-08-27,COM,29231,0,QUIMERCH,Quimerch,Quimerch,COM,29231,0,QUIMERCH,Quimerch,Quimerch +20,1949-08-27,COM,29231,0,QUIMERCH,Quimerch,Quimerch,COM,29302,0,PONT DE BUIS,Pont-de-Buis,Pont-de-Buis 20,1949-08-27,COM,29263,0,SAINT SEGAL,Saint-Ségal,Saint-Ségal,COM,29263,0,SAINT SEGAL,Saint-Ségal,Saint-Ségal 20,1949-08-27,COM,29263,0,SAINT SEGAL,Saint-Ségal,Saint-Ségal,COM,29302,0,PONT DE BUIS,Pont-de-Buis,Pont-de-Buis -21,1949-07-25,COM,83079,3,MOLE,Môle,La Môle,COM,83079,3,MOLE,Môle,La Môle -21,1949-07-25,COM,83079,3,MOLE,Môle,La Môle,COM,83152,0,RAYOL CANADEL SUR MER,Rayol-Canadel-sur-Mer,Rayol-Canadel-sur-Mer +20,1949-07-25,COM,83079,3,MOLE,Môle,La Môle,COM,83079,3,MOLE,Môle,La Môle +20,1949-07-25,COM,83079,3,MOLE,Môle,La Môle,COM,83152,0,RAYOL CANADEL SUR MER,Rayol-Canadel-sur-Mer,Rayol-Canadel-sur-Mer 30,1949-07-08,COM,77066,0,CERNEUX,Cerneux,Cerneux,COM,77066,0,CERNEUX,Cerneux,Cerneux 30,1949-07-08,COM,77362,0,PIERRELEZ,Pierrelez,Pierrelez,COM,77066,0,CERNEUX,Cerneux,Cerneux 30,1949-07-08,COM,77362,0,PIERRELEZ,Pierrelez,Pierrelez,COM,77444,0,SANCY LES PROVINS,Sancy-lès-Provins,Sancy-lès-Provins 30,1949-07-08,COM,77444,0,SANCY LES PROVINS,Sancy-lès-Provins,Sancy-lès-Provins,COM,77444,0,SANCY LES PROVINS,Sancy-lès-Provins,Sancy-lès-Provins -21,1949-06-29,COM,62075,0,BAINCTHUN,Baincthun,Baincthun,COM,62075,0,BAINCTHUN,Baincthun,Baincthun -21,1949-06-29,COM,62075,0,BAINCTHUN,Baincthun,Baincthun,COM,62908,3,CAPELLE LES BOULOGNE,Capelle-lès-Boulogne,La Capelle-lès-Boulogne +20,1949-06-29,COM,62075,0,BAINCTHUN,Baincthun,Baincthun,COM,62075,0,BAINCTHUN,Baincthun,Baincthun +20,1949-06-29,COM,62075,0,BAINCTHUN,Baincthun,Baincthun,COM,62908,3,CAPELLE LES BOULOGNE,Capelle-lès-Boulogne,La Capelle-lès-Boulogne 31,1949-05-30,COM,39313,0,MARIGNY,Marigny,Marigny,COM,39313,0,MARIGNY,Marigny,Marigny 31,1949-05-30,COM,39563,0,VILLARD SUR L AIN,Villard-sur-l'Ain,Villard-sur-l'Ain,COM,39313,0,MARIGNY,Marigny,Marigny 10,1949-05-21,COM,22055,1,ETABLES,Étables,Étables,COM,22055,1,ETABLES SUR MER,Étables-sur-Mer,Étables-sur-Mer -21,1949-05-14,COM,32287,0,MONTIES AUSSOS,Monties-Aussos,Monties-Aussos,COM,32287,0,MONTIES,Monties,Monties -21,1949-05-14,COM,32287,0,MONTIES AUSSOS,Monties-Aussos,Monties-Aussos,COM,32468,1,AUSSOS,Aussos,Aussos +20,1949-05-14,COM,32287,0,MONTIES AUSSOS,Monties-Aussos,Monties-Aussos,COM,32287,0,MONTIES,Monties,Monties +20,1949-05-14,COM,32287,0,MONTIES AUSSOS,Monties-Aussos,Monties-Aussos,COM,32468,1,AUSSOS,Aussos,Aussos 10,1949-05-12,COM,78239,0,FOLLAINVILLE,Follainville,Follainville,COM,78239,0,FOLLAINVILLE DENNEMONT,Follainville-Dennemont,Follainville-Dennemont 10,1949-04-18,COM,14213,0,CURCY,Curcy,Curcy,COM,14213,0,CURCY SUR ORNE,Curcy-sur-Orne,Curcy-sur-Orne 10,1949-04-18,COM,21086,0,BLIGNY SOUS BEAUNE,Bligny-sous-Beaune,Bligny-sous-Beaune,COM,21086,0,BLIGNY LES BEAUNE,Bligny-lès-Beaune,Bligny-lès-Beaune 10,1949-04-18,COM,67439,0,SCHAFFHAUSEN,Schaffhausen,Schaffhausen,COM,67439,0,SCHAFFHOUSE SUR ZORN,Schaffhouse-sur-Zorn,Schaffhouse-sur-Zorn -31,1949-03-30,COM,05070,0,LARAGNE,Laragne,Laragne,COM,05070,0,LARAGNE MONTEGLIN,Laragne-Montéglin,Laragne-Montéglin -31,1949-03-30,COM,05083,0,MONTEGLIN,Montéglin,Montéglin,COM,05070,0,LARAGNE MONTEGLIN,Laragne-Montéglin,Laragne-Montéglin -21,1949-03-30,COM,30092,0,CONNAUX,Connaux,Connaux,COM,30092,0,CONNAUX,Connaux,Connaux -21,1949-03-30,COM,30092,0,CONNAUX,Connaux,Connaux,COM,30355,0,SAINT PAUL LES FONTS,Saint-Paul-les-Fonts,Saint-Paul-les-Fonts -21,1949-03-25,COM,97204,2,CARBET,Carbet,Le Carbet,COM,97233,2,MORNE VERT,Morne-Vert,Le Morne-Vert -21,1949-03-25,COM,97204,2,CARBET,Carbet,Le Carbet,COM,97204,2,CARBET,Carbet,Le Carbet +31,1949-03-30,COM,5070,0,LARAGNE,Laragne,Laragne,COM,5070,0,LARAGNE MONTEGLIN,Laragne-Montéglin,Laragne-Montéglin +31,1949-03-30,COM,5083,0,MONTEGLIN,Montéglin,Montéglin,COM,5070,0,LARAGNE MONTEGLIN,Laragne-Montéglin,Laragne-Montéglin +20,1949-03-30,COM,30092,0,CONNAUX,Connaux,Connaux,COM,30092,0,CONNAUX,Connaux,Connaux +20,1949-03-30,COM,30092,0,CONNAUX,Connaux,Connaux,COM,30355,0,SAINT PAUL LES FONTS,Saint-Paul-les-Fonts,Saint-Paul-les-Fonts +20,1949-03-25,COM,97204,2,CARBET,Carbet,Le Carbet,COM,97204,2,CARBET,Carbet,Le Carbet +20,1949-03-25,COM,97204,2,CARBET,Carbet,Le Carbet,COM,97233,2,MORNE VERT,Morne-Vert,Le Morne-Vert 10,1949-03-20,COM,14059,0,BENERVILLE,Benerville,Benerville,COM,14059,0,BENERVILLE SUR MER,Benerville-sur-Mer,Benerville-sur-Mer 10,1949-02-19,COM,15005,1,ANGLARDS,Anglards,Anglards,COM,15005,1,ANGLARDS DE SAINT FLOUR,Anglards-de-Saint-Flour,Anglards-de-Saint-Flour 10,1949-02-19,COM,15208,0,SAINT PROJET,Saint-Projet,Saint-Projet,COM,15208,0,SAINT PROJET DE SALERS,Saint-Projet-de-Salers,Saint-Projet-de-Salers 10,1949-02-19,COM,15225,0,SEGUR,Ségur,Ségur,COM,15225,0,SEGUR LES VILLAS,Ségur-les-Villas,Ségur-les-Villas 10,1949-02-19,COM,78056,0,BELLOY,Belloy,Belloy,COM,78056,0,BELLOY EN FRANCE,Belloy-en-France,Belloy-en-France 10,1949-01-24,COM,31344,0,MIRAMONT,Miramont,Miramont,COM,31344,0,MIRAMONT DE COMMINGES,Miramont-de-Comminges,Miramont-de-Comminges -21,1949-01-08,COM,09277,0,SAINT YBARS,Saint-Ybars,Saint-Ybars,COM,09342,0,SAINTE SUZANNE,Sainte-Suzanne,Sainte-Suzanne -21,1949-01-08,COM,09277,0,SAINT YBARS,Saint-Ybars,Saint-Ybars,COM,09277,0,SAINT YBARS,Saint-Ybars,Saint-Ybars +20,1949-01-08,COM,9277,0,SAINT YBARS,Saint-Ybars,Saint-Ybars,COM,9277,0,SAINT YBARS,Saint-Ybars,Saint-Ybars +20,1949-01-08,COM,9277,0,SAINT YBARS,Saint-Ybars,Saint-Ybars,COM,9342,0,SAINTE SUZANNE,Sainte-Suzanne,Sainte-Suzanne 10,1948-12-10,COM,62881,0,WAVANS,Wavans,Wavans,COM,62881,0,WAVANS SUR L AUTHIE,Wavans-sur-l'Authie,Wavans-sur-l'Authie 10,1948-12-10,COM,78379,0,MAUDETOUR,Maudétour,Maudétour,COM,78379,0,MAUDETOUR EN VEXIN,Maudétour-en-Vexin,Maudétour-en-Vexin 10,1948-10-21,COM,11154,0,FOURNES,Fournes,Fournes,COM,11154,0,FOURNES CABARDES,Fournes-Cabardès,Fournes-Cabardès 10,1948-10-21,COM,38358,0,SAINTE ANNE D ESTRABLIN,Sainte-Anne-d'Estrablin,Sainte-Anne-d'Estrablin,COM,38358,0,SAINTE ANNE SUR GERVONDE,Sainte-Anne-sur-Gervonde,Sainte-Anne-sur-Gervonde -10,1948-09-25,COM,03181,0,MONTCOMBROUX,Montcombroux,Montcombroux,COM,03181,0,MONTCOMBROUX LES MINES,Montcombroux-les-Mines,Montcombroux-les-Mines -10,1948-09-25,COM,03279,0,TEILLET,Teillet,Teillet,COM,03279,0,TEILLET ARGENTY,Teillet-Argenty,Teillet-Argenty -10,1948-09-25,COM,07330,0,VALLON,Vallon,Vallon,COM,07330,0,VALLON PONT D ARC,Vallon-Pont-d'Arc,Vallon-Pont-d'Arc +10,1948-09-25,COM,3181,0,MONTCOMBROUX,Montcombroux,Montcombroux,COM,3181,0,MONTCOMBROUX LES MINES,Montcombroux-les-Mines,Montcombroux-les-Mines +10,1948-09-25,COM,3279,0,TEILLET,Teillet,Teillet,COM,3279,0,TEILLET ARGENTY,Teillet-Argenty,Teillet-Argenty +10,1948-09-25,COM,7330,0,VALLON,Vallon,Vallon,COM,7330,0,VALLON PONT D ARC,Vallon-Pont-d'Arc,Vallon-Pont-d'Arc 10,1948-09-25,COM,27278,0,GARENNES,Garennes,Garennes,COM,27278,0,GARENNES SUR EURE,Garennes-sur-Eure,Garennes-sur-Eure 10,1948-09-25,COM,39272,0,LADOYE,Ladoye,Ladoye,COM,39272,0,LADOYE SUR SEILLE,Ladoye-sur-Seille,Ladoye-sur-Seille 10,1948-08-16,COM,78486,2,PERRAY,Perray,Le Perray,COM,78486,2,PERRAY EN YVELINES,Perray-en-Yvelines,Le Perray-en-Yvelines -21,1948-08-01,COM,78039,1,AUVERS SUR OISE,Auvers-sur-Oise,Auvers-sur-Oise,COM,78692,0,BUTRY SUR OISE,Butry-sur-Oise,Butry-sur-Oise -21,1948-08-01,COM,78039,1,AUVERS SUR OISE,Auvers-sur-Oise,Auvers-sur-Oise,COM,78039,1,AUVERS SUR OISE,Auvers-sur-Oise,Auvers-sur-Oise -21,1948-07-22,COM,31040,0,BACHOS BINOS,Bachos-Binos,Bachos-Binos,COM,31040,0,BACHOS,Bachos,Bachos -21,1948-07-22,COM,31040,0,BACHOS BINOS,Bachos-Binos,Bachos-Binos,COM,31590,0,BINOS,Binos,Binos +20,1948-08-01,COM,78039,1,AUVERS SUR OISE,Auvers-sur-Oise,Auvers-sur-Oise,COM,78039,1,AUVERS SUR OISE,Auvers-sur-Oise,Auvers-sur-Oise +20,1948-08-01,COM,78039,1,AUVERS SUR OISE,Auvers-sur-Oise,Auvers-sur-Oise,COM,78692,0,BUTRY SUR OISE,Butry-sur-Oise,Butry-sur-Oise +20,1948-07-22,COM,31040,0,BACHOS BINOS,Bachos-Binos,Bachos-Binos,COM,31040,0,BACHOS,Bachos,Bachos +20,1948-07-22,COM,31040,0,BACHOS BINOS,Bachos-Binos,Bachos-Binos,COM,31590,0,BINOS,Binos,Binos 10,1948-07-18,COM,57267,0,GUEBLANGE LES SARRALBE,Guéblange-lès-Sarralbe,Guéblange-lès-Sarralbe,COM,57267,2,VAL DE GUEBLANGE,Val-de-Guéblange,Le Val-de-Guéblange -31,1948-07-05,COM,04039,0,CASTELLANE,Castellane,Castellane,COM,04039,0,CASTELLANE,Castellane,Castellane -31,1948-07-05,COM,04044,0,CASTILLON,Castillon,Castillon,COM,04039,0,CASTELLANE,Castellane,Castellane -21,1948-06-24,COM,26119,1,EROME,Érôme,Érôme,COM,26119,1,EROME,Érôme,Érôme -21,1948-06-24,COM,26119,1,EROME,Érôme,Érôme,COM,26380,0,GERVANS,Gervans,Gervans +31,1948-07-05,COM,4039,0,CASTELLANE,Castellane,Castellane,COM,4039,0,CASTELLANE,Castellane,Castellane +31,1948-07-05,COM,4044,0,CASTILLON,Castillon,Castillon,COM,4039,0,CASTELLANE,Castellane,Castellane +20,1948-06-24,COM,26119,1,EROME,Érôme,Érôme,COM,26119,1,EROME,Érôme,Érôme +20,1948-06-24,COM,26119,1,EROME,Érôme,Érôme,COM,26380,0,GERVANS,Gervans,Gervans 20,1948-06-17,COM,46251,0,SAINT CERE,Saint-Céré,Saint-Céré,COM,46251,0,SAINT CERE,Saint-Céré,Saint-Céré 20,1948-06-17,COM,46251,0,SAINT CERE,Saint-Céré,Saint-Céré,COM,46339,0,SAINT JEAN LAGINESTE,Saint-Jean-Lagineste,Saint-Jean-Lagineste 20,1948-06-17,COM,46271,0,SAINT JEAN LESPINASSE,Saint-Jean-Lespinasse,Saint-Jean-Lespinasse,COM,46271,0,SAINT JEAN LESPINASSE,Saint-Jean-Lespinasse,Saint-Jean-Lespinasse 20,1948-06-17,COM,46271,0,SAINT JEAN LESPINASSE,Saint-Jean-Lespinasse,Saint-Jean-Lespinasse,COM,46339,0,SAINT JEAN LAGINESTE,Saint-Jean-Lagineste,Saint-Jean-Lagineste -20,1948-06-17,COM,46281,0,SAINT MEDARD DE PRESQUE,Saint-Médard-de-Presque,Saint-Médard-de-Presque,COM,46339,0,SAINT JEAN LAGINESTE,Saint-Jean-Lagineste,Saint-Jean-Lagineste 20,1948-06-17,COM,46281,0,SAINT MEDARD DE PRESQUE,Saint-Médard-de-Presque,Saint-Médard-de-Presque,COM,46281,0,SAINT MEDARD DE PRESQUE,Saint-Médard-de-Presque,Saint-Médard-de-Presque -20,1948-06-17,COM,46295,0,SAINT VINCENT DU PENDIT,Saint-Vincent-du-Pendit,Saint-Vincent-du-Pendit,COM,46339,0,SAINT JEAN LAGINESTE,Saint-Jean-Lagineste,Saint-Jean-Lagineste +20,1948-06-17,COM,46281,0,SAINT MEDARD DE PRESQUE,Saint-Médard-de-Presque,Saint-Médard-de-Presque,COM,46339,0,SAINT JEAN LAGINESTE,Saint-Jean-Lagineste,Saint-Jean-Lagineste 20,1948-06-17,COM,46295,0,SAINT VINCENT DU PENDIT,Saint-Vincent-du-Pendit,Saint-Vincent-du-Pendit,COM,46295,0,SAINT VINCENT DU PENDIT,Saint-Vincent-du-Pendit,Saint-Vincent-du-Pendit -21,1948-06-06,COM,59011,1,ANNOEULLIN,Annœullin,Annœullin,COM,59011,1,ANNOEULLIN,Annœullin,Annœullin -21,1948-06-06,COM,59011,1,ANNOEULLIN,Annœullin,Annœullin,COM,59670,0,DON,Don,Don +20,1948-06-17,COM,46295,0,SAINT VINCENT DU PENDIT,Saint-Vincent-du-Pendit,Saint-Vincent-du-Pendit,COM,46339,0,SAINT JEAN LAGINESTE,Saint-Jean-Lagineste,Saint-Jean-Lagineste +20,1948-06-06,COM,59011,1,ANNOULLIN,Annœullin,Annœullin,COM,59011,1,ANNOULLIN,Annœullin,Annœullin +20,1948-06-06,COM,59011,1,ANNOULLIN,Annœullin,Annœullin,COM,59670,0,DON,Don,Don 10,1948-04-03,COM,50296,0,MAUPERTUS,Maupertus,Maupertus,COM,50296,0,MAUPERTUS SUR MER,Maupertus-sur-Mer,Maupertus-sur-Mer 10,1948-02-21,COM,67161,0,GOTTENHAUSEN,Gottenhausen,Gottenhausen,COM,67161,0,GOTTENHOUSE,Gottenhouse,Gottenhouse 10,1948-02-11,COM,78405,0,MILLY,Milly,Milly,COM,78405,0,MILLY LA FORET,Milly-la-Forêt,Milly-la-Forêt 10,1948-02-05,COM,25321,0,LAC OU VILLERS,Lac-ou-Villers,Lac-ou-Villers,COM,25321,0,VILLERS LE LAC,Villers-le-Lac,Villers-le-Lac 10,1948-01-14,COM,57668,0,TETING,Teting,Teting,COM,57668,0,TETING SUR NIED,Teting-sur-Nied,Teting-sur-Nied 21,1947-12-19,COM,27078,3,BOISSIERE,Boissière,La Boissière,COM,27078,3,BOISSIERE,Boissière,La Boissière -21,1947-12-19,COM,27078,3,BOISSIERE,Boissière,La Boissière,COM,27621,0,SEREZ,Serez,Serez 21,1947-12-19,COM,27078,3,BOISSIERE,Boissière,La Boissière,COM,27111,0,BRETAGNOLLES,Bretagnolles,Bretagnolles -21,1947-11-09,COM,32165,0,JUILLES,Juilles,Juilles,COM,32467,0,SAINT CAPRAIS,Saint-Caprais,Saint-Caprais -21,1947-11-09,COM,32165,0,JUILLES,Juilles,Juilles,COM,32165,0,JUILLES,Juilles,Juilles +21,1947-12-19,COM,27078,3,BOISSIERE,Boissière,La Boissière,COM,27621,0,SEREZ,Serez,Serez +20,1947-11-09,COM,32165,0,JUILLES,Juilles,Juilles,COM,32165,0,JUILLES,Juilles,Juilles +20,1947-11-09,COM,32165,0,JUILLES,Juilles,Juilles,COM,32467,0,SAINT CAPRAIS,Saint-Caprais,Saint-Caprais 10,1947-10-25,COM,57358,0,KEDANGE,Kédange,Kédange,COM,57358,0,KEDANGE SUR CANNER,Kédange-sur-Canner,Kédange-sur-Canner -21,1947-10-23,COM,46269,0,SAINT HILAIRE BESSONIES,Saint-Hilaire-Bessonies,Saint-Hilaire-Bessonies,COM,46269,0,SAINT HILAIRE,Saint-Hilaire,Saint-Hilaire -21,1947-10-23,COM,46269,0,SAINT HILAIRE BESSONIES,Saint-Hilaire-Bessonies,Saint-Hilaire-Bessonies,COM,46338,0,BESSONIES,Bessonies,Bessonies +20,1947-10-23,COM,46269,0,SAINT HILAIRE BESSONIES,Saint-Hilaire-Bessonies,Saint-Hilaire-Bessonies,COM,46269,0,SAINT HILAIRE,Saint-Hilaire,Saint-Hilaire +20,1947-10-23,COM,46269,0,SAINT HILAIRE BESSONIES,Saint-Hilaire-Bessonies,Saint-Hilaire-Bessonies,COM,46338,0,BESSONIES,Bessonies,Bessonies 31,1947-10-18,COM,89106,0,CHICHY,Chichy,Chichy,COM,89200,1,HAUTERIVE,Hauterive,Hauterive 31,1947-10-18,COM,89200,1,HAUTERIVE,Hauterive,Hauterive,COM,89200,1,HAUTERIVE,Hauterive,Hauterive 10,1947-10-16,COM,63018,1,AULHAT,Aulhat,Aulhat,COM,63018,1,AULHAT SAINT PRIVAT,Aulhat-Saint-Privat,Aulhat-Saint-Privat 10,1947-10-03,COM,38471,2,SAPPEY,Sappey,Le Sappey,COM,38471,2,SAPPEY EN CHARTREUSE,Sappey-en-Chartreuse,Le Sappey-en-Chartreuse -21,1947-10-01,COM,30183,0,MOULEZAN ET MONTAGNAC,Moulézan-et-Montagnac,Moulézan-et-Montagnac,COM,30183,0,MOULEZAN,Moulézan,Moulézan -21,1947-10-01,COM,30183,0,MOULEZAN ET MONTAGNAC,Moulézan-et-Montagnac,Moulézan-et-Montagnac,COM,30354,0,MONTAGNAC,Montagnac,Montagnac +20,1947-10-01,COM,30183,0,MOULEZAN ET MONTAGNAC,Moulézan-et-Montagnac,Moulézan-et-Montagnac,COM,30183,0,MOULEZAN,Moulézan,Moulézan +20,1947-10-01,COM,30183,0,MOULEZAN ET MONTAGNAC,Moulézan-et-Montagnac,Moulézan-et-Montagnac,COM,30354,0,MONTAGNAC,Montagnac,Montagnac 31,1947-10-01,COM,56095,0,KERYADO,Keryado,Keryado,COM,56121,0,LORIENT,Lorient,Lorient 31,1947-10-01,COM,56121,0,LORIENT,Lorient,Lorient,COM,56121,0,LORIENT,Lorient,Lorient -21,1947-10-01,COM,56167,0,PLOUGOUMELEN,Plougoumelen,Plougoumelen,COM,56262,0,BONO,Bono,Bono -21,1947-10-01,COM,56167,0,PLOUGOUMELEN,Plougoumelen,Plougoumelen,COM,56167,0,PLOUGOUMELEN,Plougoumelen,Plougoumelen -21,1947-09-28,COM,62215,0,CARVIN,Carvin,Carvin,COM,62907,0,LIBERCOURT,Libercourt,Libercourt -21,1947-09-28,COM,62215,0,CARVIN,Carvin,Carvin,COM,62215,0,CARVIN,Carvin,Carvin +20,1947-10-01,COM,56167,0,PLOUGOUMELEN,Plougoumelen,Plougoumelen,COM,56167,0,PLOUGOUMELEN,Plougoumelen,Plougoumelen +20,1947-10-01,COM,56167,0,PLOUGOUMELEN,Plougoumelen,Plougoumelen,COM,56262,0,BONO,Bono,Bono +20,1947-09-28,COM,62215,0,CARVIN,Carvin,Carvin,COM,62215,0,CARVIN,Carvin,Carvin +20,1947-09-28,COM,62215,0,CARVIN,Carvin,Carvin,COM,62907,0,LIBERCOURT,Libercourt,Libercourt 10,1947-09-22,COM,37090,0,CRISSAY,Crissay,Crissay,COM,37090,0,CRISSAY SUR MANSE,Crissay-sur-Manse,Crissay-sur-Manse -21,1947-09-19,COM,17375,0,SAINT NAZAIRE SUR CHARENTE,Saint-Nazaire-sur-Charente,Saint-Nazaire-sur-Charente,COM,17375,0,SAINT NAZAIRE SUR CHARENTE,Saint-Nazaire-sur-Charente,Saint-Nazaire-sur-Charente -21,1947-09-19,COM,17375,0,SAINT NAZAIRE SUR CHARENTE,Saint-Nazaire-sur-Charente,Saint-Nazaire-sur-Charente,COM,17484,0,PORT DES BARQUES,Port-des-Barques,Port-des-Barques +20,1947-09-19,COM,17375,0,SAINT NAZAIRE SUR CHARENTE,Saint-Nazaire-sur-Charente,Saint-Nazaire-sur-Charente,COM,17375,0,SAINT NAZAIRE SUR CHARENTE,Saint-Nazaire-sur-Charente,Saint-Nazaire-sur-Charente +20,1947-09-19,COM,17375,0,SAINT NAZAIRE SUR CHARENTE,Saint-Nazaire-sur-Charente,Saint-Nazaire-sur-Charente,COM,17484,0,PORT DES BARQUES,Port-des-Barques,Port-des-Barques +20,1947-09-17,,,,,,,COM,6162,3,BRIGUE,Brigue,La Brigue +20,1947-09-17,,,,,,,COM,6163,0,TENDE,Tende,Tende 31,1947-09-06,COM,68048,0,BOURTZWILLER,Bourtzwiller,Bourtzwiller,COM,68224,0,MULHOUSE,Mulhouse,Mulhouse 31,1947-09-06,COM,68224,0,MULHOUSE,Mulhouse,Mulhouse,COM,68224,0,MULHOUSE,Mulhouse,Mulhouse 31,1947-08-27,COM,14485,1,OUILLY LE BASSET,Ouilly-le-Basset,Ouilly-le-Basset,COM,14764,0,PONT D OUILLY,Pont-d'Ouilly,Pont-d'Ouilly @@ -13912,25 +13715,25 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1947-06-14,COM,57309,1,HEINING,Heining,Heining,COM,57309,1,HEINING LES BOUZONVILLE,Heining-lès-Bouzonville,Heining-lès-Bouzonville 10,1947-06-11,COM,36081,0,GARGILESSE,Gargilesse,Gargilesse,COM,36081,0,GARGILESSE DAMPIERRE,Gargilesse-Dampierre,Gargilesse-Dampierre 10,1947-06-11,COM,50196,0,GATTEVILLE,Gatteville,Gatteville,COM,50196,0,GATTEVILLE LE PHARE,Gatteville-le-Phare,Gatteville-le-Phare -10,1947-05-21,COM,01295,0,PEYZIEUX,Peyzieux,Peyzieux,COM,01295,0,PEYZIEUX SUR SAONE,Peyzieux-sur-Saône,Peyzieux-sur-Saône -10,1947-05-16,COM,02628,0,PUISEUX,Puiseux,Puiseux,COM,02628,0,PUISEUX EN RETZ,Puiseux-en-Retz,Puiseux-en-Retz +10,1947-05-21,COM,1295,0,PEYZIEUX,Peyzieux,Peyzieux,COM,1295,0,PEYZIEUX SUR SAONE,Peyzieux-sur-Saône,Peyzieux-sur-Saône +10,1947-05-16,COM,2628,0,PUISEUX,Puiseux,Puiseux,COM,2628,0,PUISEUX EN RETZ,Puiseux-en-Retz,Puiseux-en-Retz 10,1947-05-09,COM,38205,0,LANS,Lans,Lans,COM,38205,0,LANS EN VERCORS,Lans-en-Vercors,Lans-en-Vercors 10,1947-05-01,COM,36158,0,PIN,Pin,Pin,COM,36158,0,BADECON LE PIN,Badecon-le-Pin,Badecon-le-Pin 10,1947-05-01,COM,50008,1,ANCTOVILLE,Anctoville,Anctoville,COM,50008,1,ANCTOVILLE SUR BOSCQ,Anctoville-sur-Boscq,Anctoville-sur-Boscq -21,1947-04-27,COM,42282,0,SAINT ROMAIN D URFE,Saint-Romain-d'Urfé,Saint-Romain-d'Urfé,COM,42282,0,SAINT ROMAIN D URFE,Saint-Romain-d'Urfé,Saint-Romain-d'Urfé -21,1947-04-27,COM,42282,0,SAINT ROMAIN D URFE,Saint-Romain-d'Urfé,Saint-Romain-d'Urfé,COM,42339,0,CHAUSSETERRE,Chausseterre,Chausseterre +20,1947-04-27,COM,42282,0,SAINT ROMAIN D URFE,Saint-Romain-d'Urfé,Saint-Romain-d'Urfé,COM,42282,0,SAINT ROMAIN D URFE,Saint-Romain-d'Urfé,Saint-Romain-d'Urfé +20,1947-04-27,COM,42282,0,SAINT ROMAIN D URFE,Saint-Romain-d'Urfé,Saint-Romain-d'Urfé,COM,42339,0,CHAUSSETERRE,Chausseterre,Chausseterre 10,1947-04-19,COM,57410,0,LOHR,Lohr,Lohr,COM,57410,0,LHOR,Lhor,Lhor 10,1947-04-19,COM,74212,2,PETIT BORNAND,Petit-Bornand,Le Petit-Bornand,COM,74212,2,PETIT BORNAND LES GLIERES,Petit-Bornand-les-Glières,Le Petit-Bornand-les-Glières 10,1947-04-19,COM,74282,0,THORENS,Thorens,Thorens,COM,74282,0,THORENS GLIERES,Thorens-Glières,Thorens-Glières 10,1947-04-19,COM,78509,0,PUISEUX LES LOUVRES,Puiseux-les-Louvres,Puiseux-les-Louvres,COM,78509,0,PUISEUX EN FRANCE,Puiseux-en-France,Puiseux-en-France -21,1947-04-12,COM,20342,0,VENTISERI,Ventiseri,Ventiseri,COM,20342,0,VENTISERI,Ventiseri,Ventiseri -21,1947-04-12,COM,20342,0,VENTISERI,Ventiseri,Ventiseri,COM,20366,0,CHISA,Chisa,Chisa +20,1947-04-12,COM,20342,0,VENTISERI,Ventiseri,Ventiseri,COM,20342,0,VENTISERI,Ventiseri,Ventiseri +20,1947-04-12,COM,20342,0,VENTISERI,Ventiseri,Ventiseri,COM,20366,0,CHISA,Chisa,Chisa 31,1947-04-12,COM,39257,0,GRAND CHATEL,Grand-Châtel,Grand-Châtel,COM,39561,0,VILLARDS D HERIA,Villards-d'Héria,Villards-d'Héria 31,1947-04-12,COM,39516,0,SIEGES,Sièges,Sièges,COM,39579,0,VIRY,Viry,Viry 31,1947-04-12,COM,39561,0,VILLARDS D HERIA,Villards-d'Héria,Villards-d'Héria,COM,39561,0,VILLARDS D HERIA,Villards-d'Héria,Villards-d'Héria 31,1947-04-12,COM,39579,0,VIRY,Viry,Viry,COM,39579,0,VIRY,Viry,Viry -21,1947-04-12,COM,47283,0,SAINT VITE,Saint-Vite,Saint-Vite,COM,47283,0,SAINT VITE,Saint-Vite,Saint-Vite -21,1947-04-12,COM,47283,0,SAINT VITE,Saint-Vite,Saint-Vite,COM,47328,0,SAINT GEORGES,Saint-Georges,Saint-Georges +20,1947-04-12,COM,47283,0,SAINT VITE,Saint-Vite,Saint-Vite,COM,47283,0,SAINT VITE,Saint-Vite,Saint-Vite +20,1947-04-12,COM,47283,0,SAINT VITE,Saint-Vite,Saint-Vite,COM,47328,0,SAINT GEORGES,Saint-Georges,Saint-Georges 31,1947-04-12,COM,57250,0,GOETZENBRUCK,Goetzenbruck,Goetzenbruck,COM,57250,0,GOETZENBRUCK,Goetzenbruck,Goetzenbruck 31,1947-04-12,COM,57632,0,SARREINSBERG,Sarreinsberg,Sarreinsberg,COM,57250,0,GOETZENBRUCK,Goetzenbruck,Goetzenbruck 31,1947-04-12,COM,59574,0,SOMAIN,Somain,Somain,COM,59574,0,SOMAIN,Somain,Somain @@ -13950,16 +13753,32 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1946-11-01,COM,16305,0,SAINT CHRISTOPHE DE CHALAIS,Saint-Christophe-de-Chalais,Saint-Christophe-de-Chalais,COM,16073,0,CHALAIS,Chalais,Chalais 20,1946-11-01,COM,33051,0,BIGANOS,Biganos,Biganos,COM,33051,0,BIGANOS,Biganos,Biganos 20,1946-11-01,COM,33051,0,BIGANOS,Biganos,Biganos,COM,33555,0,MARCHEPRIME,Marcheprime,Marcheprime -21,1946-10-01,COM,26038,0,BEAUMONT MONTEUX,Beaumont-Monteux,Beaumont-Monteux,COM,26038,0,BEAUMONT MONTEUX,Beaumont-Monteux,Beaumont-Monteux -21,1946-10-01,COM,26038,0,BEAUMONT MONTEUX,Beaumont-Monteux,Beaumont-Monteux,COM,26379,0,GRANGES LES BEAUMONT,Granges-les-Beaumont,Granges-les-Beaumont +20,1946-10-18,COM,13055,0,MARSEILLE,Marseille,Marseille,ARM,13201,0,MARSEILLE 1ER ARRONDISSEMENT,Marseille 1er Arrondissement,Marseille 1er Arrondissement +20,1946-10-18,COM,13055,0,MARSEILLE,Marseille,Marseille,ARM,13202,0,MARSEILLE 2E ARRONDISSEMENT,Marseille 2e Arrondissement,Marseille 2e Arrondissement +20,1946-10-18,COM,13055,0,MARSEILLE,Marseille,Marseille,ARM,13203,0,MARSEILLE 3E ARRONDISSEMENT,Marseille 3e Arrondissement,Marseille 3e Arrondissement +20,1946-10-18,COM,13055,0,MARSEILLE,Marseille,Marseille,ARM,13204,0,MARSEILLE 4E ARRONDISSEMENT,Marseille 4e Arrondissement,Marseille 4e Arrondissement +20,1946-10-18,COM,13055,0,MARSEILLE,Marseille,Marseille,ARM,13205,0,MARSEILLE 5E ARRONDISSEMENT,Marseille 5e Arrondissement,Marseille 5e Arrondissement +20,1946-10-18,COM,13055,0,MARSEILLE,Marseille,Marseille,ARM,13206,0,MARSEILLE 6E ARRONDISSEMENT,Marseille 6e Arrondissement,Marseille 6e Arrondissement +20,1946-10-18,COM,13055,0,MARSEILLE,Marseille,Marseille,ARM,13207,0,MARSEILLE 7E ARRONDISSEMENT,Marseille 7e Arrondissement,Marseille 7e Arrondissement +20,1946-10-18,COM,13055,0,MARSEILLE,Marseille,Marseille,ARM,13208,0,MARSEILLE 8E ARRONDISSEMENT,Marseille 8e Arrondissement,Marseille 8e Arrondissement +20,1946-10-18,COM,13055,0,MARSEILLE,Marseille,Marseille,ARM,13209,0,MARSEILLE 9E ARRONDISSEMENT,Marseille 9e Arrondissement,Marseille 9e Arrondissement +20,1946-10-18,COM,13055,0,MARSEILLE,Marseille,Marseille,ARM,13210,0,MARSEILLE 10E ARRONDISSEMENT,Marseille 10e Arrondissement,Marseille 10e Arrondissement +20,1946-10-18,COM,13055,0,MARSEILLE,Marseille,Marseille,ARM,13211,0,MARSEILLE 11E ARRONDISSEMENT,Marseille 11e Arrondissement,Marseille 11e Arrondissement +20,1946-10-18,COM,13055,0,MARSEILLE,Marseille,Marseille,ARM,13212,0,MARSEILLE 12E ARRONDISSEMENT,Marseille 12e Arrondissement,Marseille 12e Arrondissement +20,1946-10-18,COM,13055,0,MARSEILLE,Marseille,Marseille,ARM,13213,0,MARSEILLE 13E ARRONDISSEMENT,Marseille 13e Arrondissement,Marseille 13e Arrondissement +20,1946-10-18,COM,13055,0,MARSEILLE,Marseille,Marseille,ARM,13214,0,MARSEILLE 14E ARRONDISSEMENT,Marseille 14e Arrondissement,Marseille 14e Arrondissement +20,1946-10-18,COM,13055,0,MARSEILLE,Marseille,Marseille,ARM,13215,0,MARSEILLE 15E ARRONDISSEMENT,Marseille 15e Arrondissement,Marseille 15e Arrondissement +20,1946-10-18,COM,13055,0,MARSEILLE,Marseille,Marseille,ARM,13216,0,MARSEILLE 16E ARRONDISSEMENT,Marseille 16e Arrondissement,Marseille 16e Arrondissement +20,1946-10-01,COM,26038,0,BEAUMONT MONTEUX,Beaumont-Monteux,Beaumont-Monteux,COM,26038,0,BEAUMONT MONTEUX,Beaumont-Monteux,Beaumont-Monteux +20,1946-10-01,COM,26038,0,BEAUMONT MONTEUX,Beaumont-Monteux,Beaumont-Monteux,COM,26379,0,GRANGES LES BEAUMONT,Granges-les-Beaumont,Granges-les-Beaumont 10,1946-09-22,COM,86091,0,CURZAY,Curzay,Curzay,COM,86091,0,CURZAY SUR VONNE,Curzay-sur-Vonne,Curzay-sur-Vonne 10,1946-09-19,COM,14397,0,MANDEVILLE,Mandeville,Mandeville,COM,14397,0,MANDEVILLE EN BESSIN,Mandeville-en-Bessin,Mandeville-en-Bessin 10,1946-09-19,COM,14405,0,MARTIGNY,Martigny,Martigny,COM,14405,0,MARTIGNY SUR L ANTE,Martigny-sur-l'Ante,Martigny-sur-l'Ante 10,1946-09-19,COM,71109,0,CHASSEY,Chassey,Chassey,COM,71109,0,CHASSEY LE CAMP,Chassey-le-Camp,Chassey-le-Camp 31,1946-09-01,COM,51131,0,CHARMONTOIS L ABBE,Charmontois-l'Abbé,Charmontois-l'Abbé,COM,51132,4,CHARMONTOIS,Charmontois,Les Charmontois 31,1946-09-01,COM,51132,0,CHARMONTOIS LE ROI,Charmontois-le-Roi,Charmontois-le-Roi,COM,51132,4,CHARMONTOIS,Charmontois,Les Charmontois -21,1946-08-16,COM,65089,0,BETPOUEY BAREGES,Betpouey-Barèges,Betpouey-Barèges,COM,65481,0,BAREGES,Barèges,Barèges -21,1946-08-16,COM,65089,0,BETPOUEY BAREGES,Betpouey-Barèges,Betpouey-Barèges,COM,65089,0,BETPOUEY,Betpouey,Betpouey +20,1946-08-16,COM,65089,0,BETPOUEY BAREGES,Betpouey-Barèges,Betpouey-Barèges,COM,65089,0,BETPOUEY,Betpouey,Betpouey +20,1946-08-16,COM,65089,0,BETPOUEY BAREGES,Betpouey-Barèges,Betpouey-Barèges,COM,65481,0,BAREGES,Barèges,Barèges 10,1946-08-07,COM,77416,0,SAINT JUST,Saint-Just,Saint-Just,COM,77416,0,SAINT JUST EN BRIE,Saint-Just-en-Brie,Saint-Just-en-Brie 10,1946-07-29,COM,73222,0,SAINT ALBAN,Saint-Alban,Saint-Alban,COM,73222,0,SAINT ALBAN LEYSSE,Saint-Alban-Leysse,Saint-Alban-Leysse 31,1946-07-01,COM,59376,0,MARCHIENNES CAMPAGNE,Marchiennes-Campagne,Marchiennes-Campagne,COM,59501,0,RIEULAY,Rieulay,Rieulay @@ -13970,8 +13789,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 10,1946-06-03,COM,43214,0,SAINT PAL DE MURS,Saint-Pal-de-Murs,Saint-Pal-de-Murs,COM,43214,0,SAINT PAL DE SENOUIRE,Saint-Pal-de-Senouire,Saint-Pal-de-Senouire 31,1946-06-01,COM,37003,1,AMBOISE,Amboise,Amboise,COM,37003,1,AMBOISE,Amboise,Amboise 31,1946-06-01,COM,37215,0,SAINT DENIS HORS,Saint-Denis-Hors,Saint-Denis-Hors,COM,37003,1,AMBOISE,Amboise,Amboise -21,1946-06-01,COM,46293,0,SAINT SOZY,Saint-Sozy,Saint-Sozy,COM,46293,0,SAINT SOZY,Saint-Sozy,Saint-Sozy -21,1946-06-01,COM,46293,0,SAINT SOZY,Saint-Sozy,Saint-Sozy,COM,46337,0,MAYRAC,Mayrac,Mayrac +20,1946-06-01,COM,46293,0,SAINT SOZY,Saint-Sozy,Saint-Sozy,COM,46293,0,SAINT SOZY,Saint-Sozy,Saint-Sozy +20,1946-06-01,COM,46293,0,SAINT SOZY,Saint-Sozy,Saint-Sozy,COM,46337,0,MAYRAC,Mayrac,Mayrac 10,1946-05-31,COM,14759,0,VILLY,Villy,Villy,COM,14759,0,VILLY LEZ FALAISE,Villy-lez-Falaise,Villy-lez-Falaise 10,1946-05-31,COM,27058,0,BERNIERES,Bernières,Bernières,COM,27058,0,BERNIERES SUR SEINE,Bernières-sur-Seine,Bernières-sur-Seine 10,1946-04-19,COM,84139,0,VAUCLUSE,Vaucluse,Vaucluse,COM,84139,0,FONTAINE DE VAUCLUSE,Fontaine-de-Vaucluse,Fontaine-de-Vaucluse @@ -13979,8 +13798,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1946-01-01,COM,59095,0,BOURBOURG CAMPAGNE,Bourbourg-Campagne,Bourbourg-Campagne,COM,59094,0,BOURBOURG,Bourbourg,Bourbourg 31,1945-09-20,COM,29009,0,BEUZEC CONQ,Beuzec-Conq,Beuzec-Conq,COM,29039,0,CONCARNEAU,Concarneau,Concarneau 31,1945-09-20,COM,29039,0,CONCARNEAU,Concarneau,Concarneau,COM,29039,0,CONCARNEAU,Concarneau,Concarneau -21,1945-09-17,COM,15196,0,SAINT MAMET LA SALVETAT,Saint-Mamet-la-Salvetat,Saint-Mamet-la-Salvetat,COM,15268,2,ROUGET,Rouget,Le Rouget -21,1945-09-17,COM,15196,0,SAINT MAMET LA SALVETAT,Saint-Mamet-la-Salvetat,Saint-Mamet-la-Salvetat,COM,15196,0,SAINT MAMET LA SALVETAT,Saint-Mamet-la-Salvetat,Saint-Mamet-la-Salvetat +20,1945-09-17,COM,15196,0,SAINT MAMET LA SALVETAT,Saint-Mamet-la-Salvetat,Saint-Mamet-la-Salvetat,COM,15196,0,SAINT MAMET LA SALVETAT,Saint-Mamet-la-Salvetat,Saint-Mamet-la-Salvetat +20,1945-09-17,COM,15196,0,SAINT MAMET LA SALVETAT,Saint-Mamet-la-Salvetat,Saint-Mamet-la-Salvetat,COM,15268,2,ROUGET,Rouget,Le Rouget 31,1945-09-01,COM,67174,0,GUMBRECHTSHOFFEN NIEDERBRONN,Gumbrechtshoffen-Niederbronn,Gumbrechtshoffen-Niederbronn,COM,67174,0,GUMBRECHTSHOFFEN,Gumbrechtshoffen,Gumbrechtshoffen 31,1945-09-01,COM,67175,0,GUMBRECHTSHOFFEN OBERBRONN,Gumbrechtshoffen-Oberbronn,Gumbrechtshoffen-Oberbronn,COM,67174,0,GUMBRECHTSHOFFEN,Gumbrechtshoffen,Gumbrechtshoffen 31,1945-06-14,COM,29046,0,DOUARNENEZ,Douarnenez,Douarnenez,COM,29046,0,DOUARNENEZ,Douarnenez,Douarnenez @@ -13992,10 +13811,10 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1945-04-29,COM,29253,0,SAINT MARC,Saint-Marc,Saint-Marc,COM,29019,0,BREST,Brest,Brest 31,1945-04-29,COM,29258,0,SAINT PIERRE QUILBIGNON,Saint-Pierre-Quilbignon,Saint-Pierre-Quilbignon,COM,29019,0,BREST,Brest,Brest 10,1944-05-05,COM,31035,1,AUZEVILLE,Auzeville,Auzeville,COM,31035,1,AUZEVILLE TOLOSANE,Auzeville-Tolosane,Auzeville-Tolosane -31,1944-05-01,COM,05014,0,BARRET LE BAS,Barret-le-Bas,Barret-le-Bas,COM,05014,0,BARRET LE BAS,Barret-le-Bas,Barret-le-Bas -31,1944-05-01,COM,05015,0,BARRET LE HAUT,Barret-le-Haut,Barret-le-Haut,COM,05014,0,BARRET LE BAS,Barret-le-Bas,Barret-le-Bas -31,1944-05-01,COM,05034,0,CHATEAUNEUF DE CHABRE,Châteauneuf-de-Chabre,Châteauneuf-de-Chabre,COM,05034,0,CHATEAUNEUF DE CHABRE,Châteauneuf-de-Chabre,Châteauneuf-de-Chabre -31,1944-05-01,COM,05105,0,POMET,Pomet,Pomet,COM,05034,0,CHATEAUNEUF DE CHABRE,Châteauneuf-de-Chabre,Châteauneuf-de-Chabre +31,1944-05-01,COM,5014,0,BARRET LE BAS,Barret-le-Bas,Barret-le-Bas,COM,5014,0,BARRET LE BAS,Barret-le-Bas,Barret-le-Bas +31,1944-05-01,COM,5015,0,BARRET LE HAUT,Barret-le-Haut,Barret-le-Haut,COM,5014,0,BARRET LE BAS,Barret-le-Bas,Barret-le-Bas +31,1944-05-01,COM,5034,0,CHATEAUNEUF DE CHABRE,Châteauneuf-de-Chabre,Châteauneuf-de-Chabre,COM,5034,0,CHATEAUNEUF DE CHABRE,Châteauneuf-de-Chabre,Châteauneuf-de-Chabre +31,1944-05-01,COM,5105,0,POMET,Pomet,Pomet,COM,5034,0,CHATEAUNEUF DE CHABRE,Châteauneuf-de-Chabre,Châteauneuf-de-Chabre 10,1944-04-28,COM,27048,0,BEAUFICEL,Beauficel,Beauficel,COM,27048,0,BEAUFICEL EN LYONS,Beauficel-en-Lyons,Beauficel-en-Lyons 10,1944-04-28,COM,27346,0,HOUVILLE,Houville,Houville,COM,27346,0,HOUVILLE EN VEXIN,Houville-en-Vexin,Houville-en-Vexin 10,1944-01-20,COM,84127,0,SERIGNAN,Sérignan,Sérignan,COM,84127,0,SERIGNAN DU COMTAT,Sérignan-du-Comtat,Sérignan-du-Comtat @@ -14005,8 +13824,8 @@ MOD,DATE_EFF,TYPECOM_AV,COM_AV,TNCC_AV,NCC_AV,NCCENR_AV,LIBELLE_AV,TYPECOM_AP,CO 31,1943-12-01,COM,27111,0,BRETAGNOLLES,Bretagnolles,Bretagnolles,COM,27078,3,BOISSIERE,Boissière,La Boissière 31,1943-12-01,COM,27621,0,SEREZ,Serez,Serez,COM,27078,3,BOISSIERE,Boissière,La Boissière 10,1943-08-12,COM,78334,0,LEVY SAINT NOM,Lévy-Saint-Nom,Lévy-Saint-Nom,COM,78334,0,LEVIS SAINT NOM,Lévis-Saint-Nom,Lévis-Saint-Nom -31,1943-08-01,COM,01125,0,CORVEISSIAT,Corveissiat,Corveissiat,COM,01125,0,CORVEISSIAT,Corveissiat,Corveissiat -31,1943-08-01,COM,01377,0,SAINT MAURICE D ECHAZEAUX,Saint-Maurice-d'Échazeaux,Saint-Maurice-d'Échazeaux,COM,01125,0,CORVEISSIAT,Corveissiat,Corveissiat +31,1943-08-01,COM,1125,0,CORVEISSIAT,Corveissiat,Corveissiat,COM,1125,0,CORVEISSIAT,Corveissiat,Corveissiat +31,1943-08-01,COM,1377,0,SAINT MAURICE D ECHAZEAUX,Saint-Maurice-d'Échazeaux,Saint-Maurice-d'Échazeaux,COM,1125,0,CORVEISSIAT,Corveissiat,Corveissiat 31,1943-03-01,COM,89086,0,CHARNY,Charny,Charny,COM,89086,0,CHARNY,Charny,Charny 31,1943-03-01,COM,89269,3,MOTHE AUX AULNAIES,Mothe-aux-Aulnaies,La Mothe-aux-Aulnaies,COM,89086,0,CHARNY,Charny,Charny 31,1943-02-19,COM,60057,0,BEAUVAIS,Beauvais,Beauvais,COM,60057,0,BEAUVAIS,Beauvais,Beauvais